pax_global_header00006660000000000000000000000064141522633320014513gustar00rootroot0000000000000052 comment=a7de9111d97e687cafbc0709ec3ff7453d658a80 jc-1.17.3/000077500000000000000000000000001415226333200122005ustar00rootroot00000000000000jc-1.17.3/.github/000077500000000000000000000000001415226333200135405ustar00rootroot00000000000000jc-1.17.3/.github/workflows/000077500000000000000000000000001415226333200155755ustar00rootroot00000000000000jc-1.17.3/.github/workflows/pythonapp.yml000066400000000000000000000016451415226333200203500ustar00rootroot00000000000000name: Tests on: push: paths: - "**/*.py" pull_request: paths: - "**/*.py" jobs: build: runs-on: ${{ matrix.os }} strategy: matrix: os: [macos-latest, ubuntu-latest, windows-latest] python-version: [3.7, 3.8, 3.9, 3.10.0] steps: - uses: actions/checkout@v2 - name: "Set up timezone to America/Los_Angeles" uses: szenius/set-timezone@v1.0 with: timezoneLinux: "America/Los_Angeles" timezoneMacos: "America/Los_Angeles" timezoneWindows: "Pacific Standard Time" - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v1 with: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | python -m pip install --upgrade pip pip install -r requirements.txt - name: Test with unittest run: | python -m unittest discover tests jc-1.17.3/.gitignore000077500000000000000000000001111415226333200141640ustar00rootroot00000000000000__pycache__ *.pyc dist/ build/ *.egg-info/ .github/ .vscode/ _config.yml jc-1.17.3/CHANGELOG000066400000000000000000000421451415226333200134200ustar00rootroot00000000000000jc changelog 20211202 v1.17.3 - Update parsers to exit with error if non-string input is detected (raise TypeError) - Update streaming parsers to exit with error if non-iterable input is detected (raise TypeError) - Simplify quiet-checking in parsers - Add iostat parser tested on linux - Add iostat streaming parser tested on linux 20211117 v1.17.2 - Fix ping parser to add Alpine linux support - Fix netstat parser for older versions of netstat on linux - Fix df parser for cases where the filesystem field overflows the column length 20211030 v1.17.1 - Fix file parser for gzip files - Fix uname parser for cases where the 'processor' and/or 'hardware_platform' fields are missing on linux - Fix uname parser on FreeBSD - Add lsusb parser tested on linux - Add CSV file streaming parser - Add testing for Python 3.10.0 20210923 v1.17.0 - Note to Package Maintainers: please see note at 20210720 v1.16.0 - Add wrapping of warning and error messages - Add vmstat parser tested on linux - Add support for streaming parsers - Add ls command streaming parser tested on linux, macOS, and freeBSD - Add ping command streaming parser tested on linux, macOS, and freeBSD - Add vmstat command streaming parser tested on linux - Add -u option to allow unbuffered output 20210830 v1.16.2 - Note to Package Maintainers: please see note at 20210720 v1.16.0 - Update sfdisk parser to support the -F option and newer versions of sfdisk 20210813 v1.16.1 - Note to Package Maintainers: please see note at 20210720 v1.16.0 - Fix issue with process substitution with the magic syntax - Fix issue with globs not including filenames with spaces with magic syntax - Fix stat parser to properly handle filenames with spaces on macOS/BSD 20210720 v1.16.0 - Note to Package Maintainers: TL;DR: `/man/jc.1.gz` and `/jc/man/jc.1.gz` are deprecated and only `/man/jc.1` should be used. The Man page in the PyPi source packages will be moving from `/jc/man/jc.1.gz` to `/man/jc.1` in version 1.17.0. For now the Man pages will be available in both locations, but be aware that the Man page at `/jc/man/jc.1.gz` is now considered deprecated. Also, starting in v1.17.0, the Man page will no longer be compressed in the source package, therefore `/man/jc.1.gz` should also be considered deprecated and will no longer be available after v1.17.0. Please use `/man/jc.1` and compress downstream if you would like. - Include CHANGELOG in source distribution - Fix Man page location in source packages - Add sfdisk command parser tested on linux - Update unit test files to change the timezone when needed (POSIX only) - Binaries and DEB/RPM/MSI packages now include Python 3.9.5 interpreter 20210628 v1.15.6 - Fix issue to only load local plugin parsers that have filenames that end in .py 20210520 v1.15.5 - Fix issue where help and about information would not display if a 3rd party parser library was missing. (e.g. xmltodict) - Add more error message detail when encountering ParseError and LibraryNotFound exceptions 20210517 v1.15.4 - Update ping parser to support error responses in OSX and BSD - Update ping parser to be more resilient against parsing errors for unknown error types - Update dig parser to support `+noall +answer` use case - Update dig parser compatibility to all platforms - Fix colors in Windows terminals (cmd.exe and PowerShell) - Fix epoch calculations when UTC is referenced as "Coordinated Universal Time" - Add Windows time format for systeminfo output - Add exceptions module to standardize parser exceptions - JC no longer swallows exit codes when using the "magic" syntax. See the Exit Codes section of the README and man page for details 20210426 v1.15.3 - Add ufw status command parser tested on linux - Add ufw-appinfo command parser tested on linux - Fix deb package name to conform to standard - Add Caveats section to readme and manpage 20210418 v1.15.2 - Add systeminfo parser tested on Windows - Update dig parser to fix an issue with IPv6 addresses in the server field - Update dig parser to fix an issue when axfr entries contain a semicolon - Update dig parser to add support for Additional Section and Opt Pseudosection - Update dig parser to add query_size field - Use dig parser as the main example in readme, documentation, and man page - Standardize int, float, and boolean conversion rules with functions in jc.utils 20210413 v1.15.1 - New feature to show parser documentation interactively with -h --parser_name for example: $ jc -h --arp - Add man page to pypi package for easier packaging in homebrew - Update rpm-qi parser to add two calculated timestamp fields: install_date_epoch and install_date_epoch_utc - Clean up documentation and autogenerate the Parser Information section from metadata 20210407 v1.15.0 - Add acpi command parser tested on linux - Add upower command parser tested on linux - Add /usr/bin/time command parser tested on linux and macOS - Add dpkg -l command parser tested on linux - Add rpm -qi command parser tested on linux - Add finger command parser tested on linux and macOS - Add dir command parser tested on Windows 10 - Update date parser: complete rewrite (v2.0) providing many enhancements: - Make weekday numbering ISO 8601 compliant - Add a calculated naive timestamp field - Add a calculated UTC timestamp field (only if date output is in UTC) - Add several fields, including: hour_24, utc_offset, day_of_year, week_of_year, iso, and timezone_aware - Update uptime parser to add uptime_days, uptime_hours, uptime_minutes, uptime_total_seconds, time_hour, time_minute, and time_second fields - Update last parser to use new timestamp function - Update stat parser to add access_time_epoch, access_time_epoch_utc, modify_time_epoch, modify_time_epoch_utc, change_time_epoch, change_time_epoch_utc, birth_time_epoch, birth_time_epoch_utc fields - Update timedatectl parser to add epoch_utc field - Update who parser to add epoch field - Update dig parser to add when_epoch and when_epoch_utc fields - Update ls parser to add epoch and epoch_utc fields - Add -h option to display the help text. Piping errors no longer show the help text. - Add -v option to display version information. - Add contributing information to project root - Make all external python library dependencies optional: pygments, ruamel.yaml, xmltodict - JSON output now supports unencoded unicode characters - JSON output is now more compact unless the -p (pretty) option is used - Developer scripts added and enhanced to automate documentation and man page creation - Enhanced man page 20210305 v1.14.4 - Packaging fix only for binaries and RPMs hosted on https://github.com/kellyjonbrazil/jc-packaging. Packages from PyPi and OS repositories are not affected. This fixes an issue that kept the YAML parser from initializing. 20210210 v1.14.3 - Add hciconfig parser tested on linux - Update dig parser to simplify answer data logic 20210205 v1.14.2 - Update dig parser to fix cases where there are spaces in the answer data (e.g. TXT records) 20210106 v1.14.1 - Add iw-scan parser tested on linux (beta) - Update date parser for Ubuntu 20.04 support - Update last parser for last -F support - Update last parser to add convenience fields and augment data for easier parsing - Update man page - Minor documentation updates 20201231 v1.14.0 - Add hashsum parser tested on linux, macos - Add hash parser tested on linux, macos - Add cksum parser tested on linux, macos - Add wc parser tested on linux, macos - Add printenv support under env parser - Add vdir support under ls parser - Add python 3.9 to github automation tests 20200805 v1.13.4 - Update crontab and crontab-u parsers to tighten up variable detection - Update ping parser to tighten linux/bsd detection 20200804 v1.13.3 - Update ping parser for Raspberry Pi compatibility 20200803 v1.13.2 - Add key/value file parser (wrapper for ini parser) - Add date command parser - Update traceroute parser to more gracefully handle missing header row - Update traceroute parser to handle annotations - Update traceroute parser to only return successful probes 20200727 v1.13.1 - Add route -6 tests 20200727 v1.13.0 - Add ping and ping6 command parser tested on linux, macos, and freebsd - Add traceroute and traceroute6 command parser tested on linux, macos, and freebsd - Add tracepath command parser tested on linux - Update ini parser to support files only containing key/value pairs - Update uname parser exception with a hint to use "uname -a" - Update route parser to support IPv6 tables 20200711 v1.12.1 - Fix tests when using older version of pygments library 20200710 v1.12.0 - Add sysctl command parser tested on linux, macOS, and freebsd - Update the cli code to allow older versions of the pygments library (2.3.0) for debian packaging - Code cleanup on the cli - Add tests for the cli - Vendorize cgitb as tracebackplus for verbose debug messages 20200625 v1.11.8 - Add verbose debug option using -dd argument 20200622 v1.11.7 - Fix iptables parser issue which would not output the last chain 20200614 v1.11.6 - Improve and standardize empty data check for all parsers 20200612 v1.11.5 - Update airport_s parser to fix error on parsing empty data - Update arp parser to fix error on parsing empty data - Update blkid parser to fix error on parsing empty data - Update crontab parser to fix error on parsing empty data - Update crontab_u parser to fix error on parsing empty data - Update df parser to fix error on parsing empty data - Update free parser to fix error on parsing empty data - Update lsblk parser to fix error on parsing empty data - Update lsmod parser to fix error on parsing empty data - Update mount parser to fix error on parsing empty data - Update netstat parser to fix error on parsing empty data - Update ntpq parser to fix error on parsing empty data - Update ps parser to fix error on parsing empty data - Update route parser to fix error on parsing empty data - Update systemctl parser to fix error on parsing empty data - Update systemctl_lj parser to fix error on parsing empty data - Update systemctl_ls parser to fix error on parsing empty data - Update systemctl_luf parser to fix error on parsing empty data - Update uptime parser to fix error on parsing empty data - Update w parser to fix error on parsing empty data - Update xml parser to fix error on parsing empty data - Add tests to all parsers for no data condition - Update ss parser to fix integer fields 20200610 v1.11.4 - Update ls parser to fix error on parsing an empty directory 20200609 v1.11.3 - Add local parser plugin feature (contributed by Dean Serenevy) 20200530 v1.11.2 - Update netstat parser to add freebsd support - Update netstat parser to add route_flags_pretty field - Update netstat parser to change osx_inode field name to unix_inode - Update netstat parser to change osx_flags field name to unix_flags - Update netstat parser to strip whitespace from state field - Update route parser to add flags_pretty field - Update arp parser to add permanent field (freebsd and osx) - Update arp parser to add expires field (freebsd) - Update w parser to strip whitespace from what field - Update last parser to fix FreeBSD issues - Update stat parser to change osx_flags field name to unix_flags - Update stat parser to add unix_device field for freebsd and osx - Fix freebsd compatibility message for df, fstab, mount, ntpq, stat, and uname parsers - Fix compatibility message for platforms that include the version number at the end (e.g. freebsd12) 20200523 v1.11.1 - Update stat command parser to change osx_flags field to string 20200522 v1.11.0 - Add dmidecode command parser - Update stat command parser to add OSX support - Update netstat command parser to add OSX support - Update netstat command parser to add -r (route) functionality for linux and OSX - Update netstat command parser to add -i (interface) functionality for linux and OSX 20200511 v1.10.12 - Remove shebang from jc/cli.py for Fedora packaging 20200511 v1.10.11 - Change file permissions for Fedora packaging 20200509 v1.10.10 - Fix ls parser issue where the first file was skipped for ls -R on some platforms - Update last parser to handle 'gone - no logout' condition - Update netstat parser to handle bluetooth section (ignore gracefully for now) 20200508 v1.10.9 - Add license info to vendorized ifconfig-parser class 20200508 v1.10.8 - Add license file to dist for Fedora RPM packaging requirements - Remove tests from package to keep from polluting the global site-packages 20200501 v1.10.7 - Requirements modifications for Fedora RPM packaging requirements 20200420 v1.10.6 - Remove homebrew shim references from du osx tests 20200414 v1.10.5 - Minor change of using sys.exit(0) instead of exit() 20200412 v1.10.4 - Add color customization via JC_COLORS env variable 20200409 v1.10.3 - Fix break on pipe error 20200409 v1.10.2 - Change colors to ansi and match jello colors 20200402 v1.10.1 - Code cleanup 20200402 v1.10.0 - Add color output by default when not piping data to another program - Add -m option for monochrome output 20200326 v1.9.3 - Add axfr support for dig command parser 20200312 v1.9.2 - Updated arp parser to fix OSX detection for some edge cases 20200312 v1.9.1 - Updated file command parser to make filename splitting more robust 20200311 v1.9.0 - Added ntpq command parser - Added timedatectl status command parser - Added airport -I and airport -s command parser - Added file command parser - Optimized history command parser by https://github.com/philippeitis - Magic syntax fix for certain edge cases 20200308 v1.8.1 - CLI optimizations by https://github.com/philippeitis - Refactored magic syntax function and added tests (https://github.com/philippeitis) - Github actions for CI testing on multiple platforms by https://github.com/philippeitis - Updated ls parser to fix parsing error in OSX with -lR when there are empty folders 20200303 v1.8.0 - Added blkid command parser - Added last and lastb command parser - Added who command parser - Added CSV file parser - Added /etc/passwd file parser - Added /etc/shadow file parser - Added /etc/group file parser - Added /etc/gshadow file parser 20200227 v1.7.5 - Updated ls parser to support filenames with newline characters 20200219 v1.7.4 - Updated ls parser to support multiple directories, globbing, and -R (recursive) 20200211 v1.7.3 - Add alternative 'magic' syntax: e.g. `jc ls -al` - Options can now be condensed (e.g. -prq is equivalant to -p -r -q) 20200208 v1.7.2 - Include test fixtures in wheel and sdist 20200205 v1.7.1 - Add YAML file parser - Add INI file parser - Add XML file parser - Add id parser (tested on linux and OSX) - Add crontab file parser with user support (tested on linux) - Add __version__ variable to parser modules - Add exit code on error - Updated history parser to output "line" as an integer - Updated compatibility list for some parsers - Bugfix in crontab file parser: header insertion was clobbering first row - Just-in-time loading of parser modules instead of loading all at start 20191217 v1.6.1 - Add du parser (tested on linux and OSX) - Add crontab parser (tested on linux and OSX) - Add pip list parser (tested on linux and OSX) - Add pip show parser (tested on linux and OSX) - Add OSX support for the ifconfig, arp, df, mount, and uname parsers - Add tests for ls, dig, ps, w, uptime on OSX - Add about option - Add universal parsers to refactor repetitive code - Updated ifconfig parser to output 'state' as an array 20191117 v1.5.1 - Add ss parser - Add stat parser - Add /etc/hosts parser - Add /etc/fstab parser - Add systemctl parser (includes list-jobs, list-sockets, and list-unit-files) - Add -r and raw=True options. By default, jc will now convert numbers and boolean, if possible, and add other semantic information, while the raw output will keep all values as text and provide a more literal JSON output - Add -q and quiet=True options to suppress warnings to stderr - Add -d option to debug parsing issues - Add compatibility warnings to stderr - Add documentation - Updated iptables parser to allow --line-numbers option - Updated lsblk parser to allow parsing of added columns - Updated mount parser: changed 'access' field name to 'options' - Updated netstat parser to allow parsing of unix sockets and raw network connections - Updated w parser to fix unaligned data where blanks are possible - Clean up code and reorganize package 20191031 v1.1.1 - Add arp parser - Add dig parser - Add unit tests - fix netstat parser (remove side effects due to global variable) 20191025 v1.0.1 - Add w parser - Add uptime parser - Add history parser - Flatten env parser output - Remove problematic characters from key names in: df, free, history, lsblk, lsof, and w - Where possible, lowercase all keys (except cases like env where the key is the variable name) - Remove integer values - Handle CTRL-C gracefully 20191023 v0.9.1 - Add jobs parser - Add lsof parser - Add lsmod parser - No blocking if no piped data - Better help text - Clean up iptables parser code 20191022 v0.8.1 - Add env parser - Add df parser - Add free parser - Add lsblk parser - Add mount parser - Add uname parser - Add iptables parser 20191021 v0.6.4 - Flatten netstat parser output - Clean up argument parsing - Fix command help 20191018 v0.5.5 - Fix netstat -p parsing for Ubuntu - Add ps parser - Add route parser - ls parser fixes 20191017 v0.2.0 - ifconfig, ls, and netstat support jc-1.17.3/CONTRIBUTING.md000066400000000000000000000102121415226333200144250ustar00rootroot00000000000000# Contributing to jc We love your input! We want to make contributing to this project as easy and transparent as possible, whether it's: - Reporting a bug - Discussing the current state of the code - Submitting a fix - Proposing new features - Proposing a new parser ## We Develop with Github We use github to host code, to track issues and feature requests, as well as accept pull requests. ## We Use Github Flow, So All Code Changes Happen Through Pull Requests Pull requests are the best way to propose changes to the codebase (we use [Github Flow](https://guides.github.com/introduction/flow/index.html)). We actively welcome your pull requests: 1. Open an issue to discuss the new feature, bug fix, or parser before opening a pull request. For new parsers, it is important to agree upon a schema before developing the parser. 2. Fork the repo and create your branch from `dev`, if available, otherwise `master`. 3. For new parsers: Use the [`jc/parsers/foo.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/foo.py) or [`jc/parsers/foo_s.py (streaming)`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/foo_s.py) parsers as a template to get started. You can even place a new parser python module file in the [parser plugin directory](https://github.com/kellyjonbrazil/jc#custom-parsers) to get started right away with just a standard `jc` installation. 4. If you've added code that should be tested, add tests. All new parsers should have several sample outputs and tests. 5. Documentation is auto-generated from docstrings, so ensure they are clear and accurate. 6. Ensure the test suite passes. (Note: "**America/Los_Angeles**" timezone should be configured on the test system) 7. Make sure your code lints. 8. Issue that pull request! ## Parser Schema Guidelines - Try to keep the schema as flat as possible - typically a list of flat dictionaries - Keys should be lowercase, contain no special characters, and spaces should be converted to underscores - Keys should be static, if possible. If they have to be dynamic, then they should not contain lists or dictionaries This will make it easier to use tools like `jq` without requiring escaping of special characters, encapsulating key names in [""], keeps paths predictable, and makes iterating and searching for values easier. **Examples** Bad: ```json { "Interface 1": [ "192.168.1.1", "172.16.1.1" ], "Wifi Interface 1": [ "10.1.1.1" ] } ``` Good: ```json [ { "interface": "Interface 1", "ip_addresses": [ "192.168.1.1", "172.16.1.1" ] }, { "interface": "Wifi Interface 1", "ip_addresses": [ "10.1.1.1" ] } ] ``` ## Tests It is essential to have good command output sample coverage and tests to keep the `jc` parser quality high. Many parsers include calculated timestamp fields using the `jc.utils.timestamp` class. Naive timestamps created with this class should be generated on a system configured with the "**America/Los_Angeles**" timezone on linux/macOS/unix and "**Pacific Standard Time**" timezone on Windows for tests to pass on the Github Actions CI tests. This timezone should be configured on your local system before running the tests locally, as well. ## Any contributions you make will be under the MIT Software License In short, when you submit code changes, your submissions are understood to be under the same [MIT License](http://choosealicense.com/licenses/mit/) that covers the project. Feel free to contact the maintainers if that's a concern. ## Report bugs using Github's Issues We use GitHub issues to track public bugs. Report a bug by [opening a new issue](https://github.com/kellyjonbrazil/jc/issues); it's that easy! ## Write bug reports with detail, background, and sample code **Great Bug Reports** tend to have: - A quick summary and/or background - Steps to reproduce - Be specific! - Give sample code if you can. - What you expected would happen - What actually happens - Notes (possibly including why you think this might be happening, or stuff you tried that didn't work) ## Use a Consistent Coding Style * 4 spaces for indentation rather than tabs * Use a Python linter that will enforce PEP 8 and other best practices jc-1.17.3/EXAMPLES.md000066400000000000000000002207231415226333200137460ustar00rootroot00000000000000## JC Examples ### acpi ```bash acpi -V | jc --acpi -p # or: jc -p acpi -V ``` ```json [ { "type": "Battery", "id": 0, "state": "Charging", "charge_percent": 71, "until_charged": "00:29:20", "design_capacity_mah": 2110, "last_full_capacity": 2271, "last_full_capacity_percent": 100, "until_charged_hours": 0, "until_charged_minutes": 29, "until_charged_seconds": 20, "until_charged_total_seconds": 1760 }, { "type": "Adapter", "id": 0, "on-line": true }, { "type": "Thermal", "id": 0, "mode": "ok", "temperature": 46.0, "temperature_unit": "C", "trip_points": [ { "id": 0, "switches_to_mode": "critical", "temperature": 127.0, "temperature_unit": "C" }, { "id": 1, "switches_to_mode": "hot", "temperature": 127.0, "temperature_unit": "C" } ] }, { "type": "Cooling", "id": 0, "messages": [ "Processor 0 of 10" ] }, { "type": "Cooling", "id": 1, "messages": [ "Processor 0 of 10" ] }, { "type": "Cooling", "id": 2, "messages": [ "x86_pkg_temp no state information available" ] }, { "type": "Cooling", "id": 3, "messages": [ "Processor 0 of 10" ] }, { "type": "Cooling", "id": 4, "messages": [ "intel_powerclamp no state information available" ] }, { "type": "Cooling", "id": 5, "messages": [ "Processor 0 of 10" ] } ] ``` ### airport -I ```bash airport -I | jc --airport -p # or: jc -p airport -I ``` ```json { "agrctlrssi": -66, "agrextrssi": 0, "agrctlnoise": -90, "agrextnoise": 0, "state": "running", "op_mode": "station", "lasttxrate": 195, "maxrate": 867, "lastassocstatus": 0, "802_11_auth": "open", "link_auth": "wpa2-psk", "bssid": "3c:37:86:15:ad:f9", "ssid": "SnazzleDazzle", "mcs": 0, "channel": "48,80" } ``` ### airport -s ```bash airport -s | jc --airport-s -p # or: jc -p airport -s ``` ```json [ { "ssid": "DIRECT-4A-HP OfficeJet 3830", "bssid": "00:67:eb:2a:a7:3b", "rssi": -90, "channel": "6", "ht": true, "cc": "--", "security": [ "WPA2(PSK/AES/AES)" ] }, { "ssid": "Latitude38", "bssid": "c0:ff:d5:d2:7a:f3", "rssi": -85, "channel": "11", "ht": true, "cc": "US", "security": [ "WPA2(PSK/AES/AES)" ] }, { "ssid": "xfinitywifi", "bssid": "6e:e3:0e:b8:45:99", "rssi": -83, "channel": "11", "ht": true, "cc": "US", "security": [ "NONE" ] } ] ``` ### arp ```bash arp | jc --arp -p # or: jc -p arp ``` ```json [ { "address": "gateway", "hwtype": "ether", "hwaddress": "00:50:56:f7:4a:fc", "flags_mask": "C", "iface": "ens33" }, { "address": "192.168.71.1", "hwtype": "ether", "hwaddress": "00:50:56:c0:00:08", "flags_mask": "C", "iface": "ens33" }, { "address": "192.168.71.254", "hwtype": "ether", "hwaddress": "00:50:56:fe:7a:b4", "flags_mask": "C", "iface": "ens33" } ] ``` ```bash arp -a | jc --arp -p # or: jc -p arp -a ``` ```json [ { "name": null, "address": "192.168.71.1", "hwtype": "ether", "hwaddress": "00:50:56:c0:00:08", "iface": "ens33", "permanent": true }, { "name": null, "address": "192.168.71.254", "hwtype": "ether", "hwaddress": "00:50:56:fe:7a:b4", "iface": "ens33", "permanent": true }, { "name": "_gateway", "address": "192.168.71.2", "hwtype": "ether", "hwaddress": "00:50:56:f7:4a:fc", "iface": "ens33", "permanent": false, "expires": 110 } ] ``` ### blkid ```bash blkid | jc --blkid -p # or: jc -p blkid ``` ```json [ { "device": "/dev/sda1", "uuid": "05d927ab-5875-49e4-ada1-7f46cb32c932", "type": "xfs" }, { "device": "/dev/sda2", "uuid": "3klkIj-w1kk-DkJi-0XBJ-y3i7-i2Ac-vHqWBM", "type": "LVM2_member" }, { "device": "/dev/mapper/centos-root", "uuid": "07d718ff-950c-4e5b-98f0-42a1147c77d9", "type": "xfs" }, { "device": "/dev/mapper/centos-swap", "uuid": "615eb89a-bcbf-46fd-80e3-c483ff5c931f", "type": "swap" } ] ``` ```bash blkid -o udev -ip /dev/sda2 | jc --blkid -p # or: jc -p blkid -o udev -ip /dev/sda2 ``` ```json [ { "id_fs_uuid": "3klkIj-w1kk-DkJi-0XBJ-y3i7-i2Ac-vHqWBM", "id_fs_uuid_enc": "3klkIj-w1kk-DkJi-0XBJ-y3i7-i2Ac-vHqWBM", "id_fs_version": "LVM220001", "id_fs_type": "LVM2_member", "id_fs_usage": "raid", "id_iolimit_minimum_io_size": 512, "id_iolimit_physical_sector_size": 512, "id_iolimit_logical_sector_size": 512, "id_part_entry_scheme": "dos", "id_part_entry_type": "0x8e", "id_part_entry_number": 2, "id_part_entry_offset": 2099200, "id_part_entry_size": 39843840, "id_part_entry_disk": "8:0" } ] ``` ### cksum ```bash cksum * | jc --cksum -p # or: jc -p cksum * ``` ```json [ { "filename": "__init__.py", "checksum": 4294967295, "blocks": 0 }, { "filename": "airport.py", "checksum": 2208551092, "blocks": 3745 }, { "filename": "airport_s.py", "checksum": 1113817598, "blocks": 4572 } ] ``` ### crontab ```bash cat /etc/crontab | jc --crontab -p # or: jc -p crontab -l ``` ```json { "variables": [ { "name": "MAILTO", "value": "root" }, { "name": "PATH", "value": "/sbin:/bin:/usr/sbin:/usr/bin" }, { "name": "SHELL", "value": "/bin/bash" } ], "schedule": [ { "minute": [ "5" ], "hour": [ "10-11", "22" ], "day_of_month": [ "*" ], "month": [ "*" ], "day_of_week": [ "*" ], "command": "/var/www/devdaily.com/bin/mk-new-links.php" }, { "minute": [ "30" ], "hour": [ "4/2" ], "day_of_month": [ "*" ], "month": [ "*" ], "day_of_week": [ "*" ], "command": "/var/www/devdaily.com/bin/create-all-backups.sh" }, { "occurrence": "yearly", "command": "/home/maverick/bin/annual-maintenance" }, { "occurrence": "reboot", "command": "/home/cleanup" }, { "occurrence": "monthly", "command": "/home/maverick/bin/tape-backup" } ] } ``` ### crontab-u (with user support) ```bash cat /etc/crontab | jc --crontab-u -p ``` ```json { "variables": [ { "name": "MAILTO", "value": "root" }, { "name": "PATH", "value": "/sbin:/bin:/usr/sbin:/usr/bin" }, { "name": "SHELL", "value": "/bin/bash" } ], "schedule": [ { "minute": [ "5" ], "hour": [ "10-11", "22" ], "day_of_month": [ "*" ], "month": [ "*" ], "day_of_week": [ "*" ], "user": "root", "command": "/var/www/devdaily.com/bin/mk-new-links.php" }, { "minute": [ "30" ], "hour": [ "4/2" ], "day_of_month": [ "*" ], "month": [ "*" ], "day_of_week": [ "*" ], "user": "root", "command": "/var/www/devdaily.com/bin/create-all-backups.sh" }, { "occurrence": "yearly", "user": "root", "command": "/home/maverick/bin/annual-maintenance" }, { "occurrence": "reboot", "user": "root", "command": "/home/cleanup" }, { "occurrence": "monthly", "user": "root", "command": "/home/maverick/bin/tape-backup" } ] } ``` ### CSV files ```bash cat homes.csv ``` ``` "Sell", "List", "Living", "Rooms", "Beds", "Baths", "Age", "Acres", "Taxes" 142, 160, 28, 10, 5, 3, 60, 0.28, 3167 175, 180, 18, 8, 4, 1, 12, 0.43, 4033 129, 132, 13, 6, 3, 1, 41, 0.33, 1471 ... ``` ```bash cat homes.csv | jc --csv -p ``` ```json [ { "Sell": "142", "List": "160", "Living": "28", "Rooms": "10", "Beds": "5", "Baths": "3", "Age": "60", "Acres": "0.28", "Taxes": "3167" }, { "Sell": "175", "List": "180", "Living": "18", "Rooms": "8", "Beds": "4", "Baths": "1", "Age": "12", "Acres": "0.43", "Taxes": "4033" }, { "Sell": "129", "List": "132", "Living": "13", "Rooms": "6", "Beds": "3", "Baths": "1", "Age": "41", "Acres": "0.33", "Taxes": "1471" } ] ``` ### date ```bash date | jc --date -p # or: jc -p date ``` ```json { "year": 2021, "month": "Mar", "month_num": 3, "day": 25, "weekday": "Thu", "weekday_num": 4, "hour": 2, "hour_24": 2, "minute": 2, "second": 26, "period": "AM", "timezone": "UTC", "utc_offset": "+0000", "day_of_year": 84, "week_of_year": 12, "iso": "2021-03-25T02:02:26+00:00", "epoch": 1616662946, "epoch_utc": 1616637746, "timezone_aware": true } ``` ### df ```bash df | jc --df -p # or: jc -p df ``` ```json [ { "filesystem": "devtmpfs", "1k_blocks": 1918816, "used": 0, "available": 1918816, "use_percent": 0, "mounted_on": "/dev" }, { "filesystem": "tmpfs", "1k_blocks": 1930664, "used": 0, "available": 1930664, "use_percent": 0, "mounted_on": "/dev/shm" } ] ``` ### dig ```bash dig cnn.com www.cnn.com @205.251.194.64 | jc --dig -p # or: jc -p dig cnn.com www.cnn.com @205.251.194.64 ``` ```json [ { "id": 10267, "opcode": "QUERY", "status": "NOERROR", "flags": [ "qr", "rd", "ra" ], "query_num": 1, "answer_num": 4, "authority_num": 0, "additional_num": 1, "opt_pseudosection": { "edns": { "version": 0, "flags": [], "udp": 4096 } }, "question": { "name": "cnn.com.", "class": "IN", "type": "A" }, "answer": [ { "name": "cnn.com.", "class": "IN", "type": "A", "ttl": 17, "data": "151.101.65.67" }, { "name": "cnn.com.", "class": "IN", "type": "A", "ttl": 17, "data": "151.101.129.67" }, { "name": "cnn.com.", "class": "IN", "type": "A", "ttl": 17, "data": "151.101.1.67" }, { "name": "cnn.com.", "class": "IN", "type": "A", "ttl": 17, "data": "151.101.193.67" } ], "query_time": 51, "server": "2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)", "when": "Fri Apr 16 16:24:32 PDT 2021", "rcvd": 100, "when_epoch": 1618615472, "when_epoch_utc": null }, { "id": 56207, "opcode": "QUERY", "status": "NOERROR", "flags": [ "qr", "aa", "rd" ], "query_num": 1, "answer_num": 1, "authority_num": 4, "additional_num": 1, "opt_pseudosection": { "edns": { "version": 0, "flags": [], "udp": 4096 } }, "question": { "name": "www.cnn.com.", "class": "IN", "type": "A" }, "answer": [ { "name": "www.cnn.com.", "class": "IN", "type": "CNAME", "ttl": 300, "data": "turner-tls.map.fastly.net." } ], "authority": [ { "name": "cnn.com.", "class": "IN", "type": "NS", "ttl": 3600, "data": "ns-1086.awsdns-07.org." }, { "name": "cnn.com.", "class": "IN", "type": "NS", "ttl": 3600, "data": "ns-1630.awsdns-11.co.uk." }, { "name": "cnn.com.", "class": "IN", "type": "NS", "ttl": 3600, "data": "ns-47.awsdns-05.com." }, { "name": "cnn.com.", "class": "IN", "type": "NS", "ttl": 3600, "data": "ns-576.awsdns-08.net." } ], "query_time": 22, "server": "205.251.194.64#53(205.251.194.64)", "when": "Fri Apr 16 16:24:32 PDT 2021", "rcvd": 212, "when_epoch": 1618615472, "when_epoch_utc": null } ] ``` ```bash dig -x 1.1.1.1 | jc --dig -p # or: jc -p dig -x 1.1.1.1 ``` ```json [ { "id": 20785, "opcode": "QUERY", "status": "NOERROR", "flags": [ "qr", "rd", "ra" ], "query_num": 1, "answer_num": 1, "authority_num": 0, "additional_num": 1, "opt_pseudosection": { "edns": { "version": 0, "flags": [], "udp": 4096 } }, "question": { "name": "1.1.1.1.in-addr.arpa.", "class": "IN", "type": "PTR" }, "answer": [ { "name": "1.1.1.1.in-addr.arpa.", "class": "IN", "type": "PTR", "ttl": 1800, "data": "one.one.one.one." } ], "query_time": 40, "server": "2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)", "when": "Sat Apr 17 14:50:50 PDT 2021", "rcvd": 78, "when_epoch": 1618696250, "when_epoch_utc": null } ] ``` ### dir ```bash dir | jc --dir -p ``` ```json [ { "date": "03/24/2021", "time": "03:15 PM", "dir": true, "size": null, "filename": ".", "parent": "C:\\Program Files\\Internet Explorer", "epoch": 1616624100 }, { "date": "03/24/2021", "time": "03:15 PM", "dir": true, "size": null, "filename": "..", "parent": "C:\\Program Files\\Internet Explorer", "epoch": 1616624100 }, { "date": "12/07/2019", "time": "02:49 AM", "dir": true, "size": null, "filename": "en-US", "parent": "C:\\Program Files\\Internet Explorer", "epoch": 1575715740 }, { "date": "12/07/2019", "time": "02:09 AM", "dir": false, "size": 54784, "filename": "ExtExport.exe", "parent": "C:\\Program Files\\Internet Explorer", "epoch": 1575713340 } ] ``` ### dmidecode ```bash dmidecode | jc --dmidecode -p # or: jc -p dmidecode ``` ```json [ { "handle": "0x0000", "type": 0, "bytes": 24, "description": "BIOS Information", "values": { "vendor": "Phoenix Technologies LTD", "version": "6.00", "release_date": "04/13/2018", "address": "0xEA490", "runtime_size": "88944 bytes", "rom_size": "64 kB", "characteristics": [ "ISA is supported", "PCI is supported", "PC Card (PCMCIA) is supported", "PNP is supported", "APM is supported", "BIOS is upgradeable", "BIOS shadowing is allowed", "ESCD support is available", "Boot from CD is supported", "Selectable boot is supported", "EDD is supported", "Print screen service is supported (int 5h)", "8042 keyboard services are supported (int 9h)", "Serial services are supported (int 14h)", "Printer services are supported (int 17h)", "CGA/mono video services are supported (int 10h)", "ACPI is supported", "Smart battery is supported", "BIOS boot specification is supported", "Function key-initiated network boot is supported", "Targeted content distribution is supported" ], "bios_revision": "4.6", "firmware_revision": "0.0" } } ] ``` ### dpkg -l ```bash dpkg -l | jc --dpkg-l -p # or: jc -p dpkg -l ``` ```json [ { "codes": "ii", "name": "accountsservice", "version": "0.6.45-1ubuntu1.3", "architecture": "amd64", "description": "query and manipulate user account information", "desired": "install", "status": "installed" }, { "codes": "rc", "name": "acl", "version": "2.2.52-3build1", "architecture": "amd64", "description": "Access control list utilities", "desired": "remove", "status": "config-files" }, { "codes": "uWR", "name": "acpi", "version": "1.7-1.1", "architecture": "amd64", "description": "displays information on ACPI devices", "desired": "unknown", "status": "trigger await", "error": "reinstall required" }, { "codes": "rh", "name": "acpid", "version": "1:2.0.28-1ubuntu1", "architecture": "amd64", "description": "Advanced Configuration and Power Interface event daemon", "desired": "remove", "status": "half installed" }, { "codes": "pn", "name": "adduser", "version": "3.116ubuntu1", "architecture": "all", "description": "add and remove users and groups", "desired": "purge", "status": "not installed" } ] ``` ### du ```bash du /usr | jc --du -p # or: jc -p du /usr ``` ```json [ { "size": 104608, "name": "/usr/bin" }, { "size": 56, "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/_CodeSignature" }, { "size": 0, "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/Resources/Firmware/usr/local/standalone" }, { "size": 0, "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/Resources/Firmware/usr/local" }, { "size": 0, "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/Resources/Firmware/usr" }, { "size": 1008, "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/Resources/Firmware/dfu" } ] ``` ### env ```bash env | jc --env -p # or: jc -p env ``` ```json [ { "name": "XDG_SESSION_ID", "value": "1" }, { "name": "HOSTNAME", "value": "localhost.localdomain" }, { "name": "TERM", "value": "vt220" }, { "name": "SHELL", "value": "/bin/bash" }, { "name": "HISTSIZE", "value": "1000" } ] ``` ### file ```bash file * | jc --file -p # or: jc -p file * ``` ```json [ { "filename": "Applications", "type": "directory" }, { "filename": "another file with spaces", "type": "empty" }, { "filename": "argstest.py", "type": "Python script text executable, ASCII text" }, { "filename": "blkid-p.out", "type": "ASCII text" }, { "filename": "blkid-pi.out", "type": "ASCII text, with very long lines" }, { "filename": "cd_catalog.xml", "type": "XML 1.0 document text, ASCII text, with CRLF line terminators" }, { "filename": "centosserial.sh", "type": "Bourne-Again shell script text executable, UTF-8 Unicode text" } ] ``` ### finger ```bash finger | jc --finger -p # or: jc -p finger ``` ```json [ { "login": "jdoe", "name": "John Doe", "tty": "tty1", "idle": "14d", "login_time": "Mar 22 21:14", "tty_writeable": false, "idle_minutes": 0, "idle_hours": 0, "idle_days": 14, "total_idle_minutes": 20160 }, { "login": "jdoe", "name": "John Doe", "tty": "pts/0", "idle": null, "login_time": "Apr 5 15:33", "details": "(192.168.1.22)", "tty_writeable": true, "idle_minutes": 0, "idle_hours": 0, "idle_days": 0, "total_idle_minutes": 0 } ] ``` ### free ```bash free | jc --free -p # or: jc -p free ``` ```json [ { "type": "Mem", "total": 3861340, "used": 220508, "free": 3381972, "shared": 11800, "buff_cache": 258860, "available": 3397784 }, { "type": "Swap", "total": 2097148, "used": 0, "free": 2097148 } ] ``` ### /etc/fstab file ```bash cat /etc/fstab | jc --fstab -p ``` ```json [ { "fs_spec": "/dev/mapper/centos-root", "fs_file": "/", "fs_vfstype": "xfs", "fs_mntops": "defaults", "fs_freq": 0, "fs_passno": 0 }, { "fs_spec": "UUID=05d927bb-5875-49e3-ada1-7f46cb31c932", "fs_file": "/boot", "fs_vfstype": "xfs", "fs_mntops": "defaults", "fs_freq": 0, "fs_passno": 0 }, { "fs_spec": "/dev/mapper/centos-swap", "fs_file": "swap", "fs_vfstype": "swap", "fs_mntops": "defaults", "fs_freq": 0, "fs_passno": 0 } ] ``` ### /etc/group file ```bash cat /etc/group | jc --group -p ``` ```json [ { "group_name": "nobody", "password": "*", "gid": -2, "members": [] }, { "group_name": "nogroup", "password": "*", "gid": -1, "members": [] }, { "group_name": "wheel", "password": "*", "gid": 0, "members": [ "root" ] }, { "group_name": "certusers", "password": "*", "gid": 29, "members": [ "root", "_jabber", "_postfix", "_cyrus", "_calendar", "_dovecot" ] } ] ``` ### /etc/gshadow file ```bash cat /etc/gshadow | jc --gshadow -p ``` ```json [ { "group_name": "root", "password": "*", "administrators": [], "members": [] }, { "group_name": "adm", "password": "*", "administrators": [], "members": [ "syslog", "joeuser" ] } ] ``` ### hash ```bash hash | jc --hash -p ``` ```json [ { "hits": 2, "command": "/bin/cat" }, { "hits": 1, "command": "/bin/ls" } ] ``` ### hashsum ```bash md5sum * | jc --hashsum -p # or: jc -p md5sum * ``` ```json [ { "filename": "devtoolset-3-gcc-4.9.2-6.el7.x86_64.rpm", "hash": "65fc958c1add637ec23c4b137aecf3d3" }, { "filename": "digout", "hash": "5b9312ee5aff080927753c63a347707d" }, { "filename": "dmidecode.out", "hash": "716fd11c2ac00db109281f7110b8fb9d" }, { "filename": "file with spaces in the name", "hash": "d41d8cd98f00b204e9800998ecf8427e" }, { "filename": "id-centos.out", "hash": "4295be239a14ad77ef3253103de976d2" }, { "filename": "ifcfg.json", "hash": "01fda0d9ba9a75618b072e64ff512b43" } ] ``` ### hciconfig ```bash hciconfig -a | jc --hciconfig -p # or: jc -p hciconfig -a ``` ```json [ { "device": "hci0", "type": "Primary", "bus": "USB", "bd_address": "00:1A:7D:DA:71:13", "acl_mtu": 310, "acl_mtu_packets": 10, "sco_mtu": 64, "sco_mtu_packets": 8, "state": [ "UP", "RUNNING" ], "rx_bytes": 13905869, "rx_acl": 0, "rx_sco": 0, "rx_events": 393300, "rx_errors": 0, "tx_bytes": 62629, "tx_acl": 0, "tx_sco": 0, "tx_commands": 3893, "tx_errors": 0, "features": [ "0xff", "0xff", "0x8f", "0xfe", "0xdb", "0xff", "0x5b", "0x87" ], "packet_type": [ "DM1", "DM3", "DM5", "DH1", "DH3", "DH5", "HV1", "HV2", "HV3" ], "link_policy": [ "RSWITCH", "HOLD", "SNIFF", "PARK" ], "link_mode": [ "SLAVE", "ACCEPT" ], "name": "CSR8510 A10", "class": "0x000000", "service_classes": null, "device_class": "Miscellaneous", "hci_version": "4.0 (0x6)", "hci_revision": "0x22bb", "lmp_version": "4.0 (0x6)", "lmp_subversion": "0x22bb", "manufacturer": "Cambridge Silicon Radio (10)" }, { "device": "hci1", "type": "Primary", "bus": "USB", "bd_address": "00:1A:7D:DA:71:13", "acl_mtu": 310, "acl_mtu_packets": 10, "sco_mtu": 64, "sco_mtu_packets": 8, "state": [ "DOWN" ], "rx_bytes": 4388363, "rx_acl": 0, "rx_sco": 0, "rx_events": 122021, "rx_errors": 0, "tx_bytes": 52350, "tx_acl": 0, "tx_sco": 0, "tx_commands": 3480, "tx_errors": 2, "features": [ "0xff", "0xff", "0x8f", "0xfe", "0xdb", "0xff", "0x5b", "0x87" ], "packet_type": [ "DM1", "DM3", "DM5", "DH1", "DH3", "DH5", "HV1", "HV2", "HV3" ], "link_policy": [ "RSWITCH", "HOLD", "SNIFF", "PARK" ], "link_mode": [ "SLAVE", "ACCEPT" ] } ] ``` ### history ```bash history | jc --history -p ``` ```json [ { "line": 118, "command": "sleep 100" }, { "line": 119, "command": "ls /bin" }, { "line": 120, "command": "echo \"hello\"" }, { "line": 121, "command": "docker images" } ] ``` ### /etc/hosts file ```bash cat /etc/hosts | jc --hosts -p ``` ```json [ { "ip": "127.0.0.1", "hostname": [ "localhost" ] }, { "ip": "127.0.1.1", "hostname": [ "root-ubuntu" ] }, { "ip": "::1", "hostname": [ "ip6-localhost", "ip6-loopback" ] }, { "ip": "fe00::0", "hostname": [ "ip6-localnet" ] }, { "ip": "ff00::0", "hostname": [ "ip6-mcastprefix" ] }, { "ip": "ff02::1", "hostname": [ "ip6-allnodes" ] }, { "ip": "ff02::2", "hostname": [ "ip6-allrouters" ] } ] ``` ### id ```bash id | jc --id -p # or: jc -p id ``` ```json { "uid": { "id": 1000, "name": "joeuser" }, "gid": { "id": 1000, "name": "joeuser" }, "groups": [ { "id": 1000, "name": "joeuser" }, { "id": 10, "name": "wheel" } ], "context": { "user": "unconfined_u", "role": "unconfined_r", "type": "unconfined_t", "level": "s0-s0:c0.c1023" } } ``` ### ifconfig ```bash ifconfig | jc --ifconfig -p # or: jc -p ifconfig ``` ```json [ { "name": "ens33", "flags": 4163, "state": [ "UP", "BROADCAST", "RUNNING", "MULTICAST" ], "mtu": 1500, "ipv4_addr": "192.168.71.137", "ipv4_mask": "255.255.255.0", "ipv4_bcast": "192.168.71.255", "ipv6_addr": "fe80::c1cb:715d:bc3e:b8a0", "ipv6_mask": 64, "ipv6_scope": "0x20", "mac_addr": "00:0c:29:3b:58:0e", "type": "Ethernet", "rx_packets": 8061, "rx_bytes": 1514413, "rx_errors": 0, "rx_dropped": 0, "rx_overruns": 0, "rx_frame": 0, "tx_packets": 4502, "tx_bytes": 866622, "tx_errors": 0, "tx_dropped": 0, "tx_overruns": 0, "tx_carrier": 0, "tx_collisions": 0, "metric": null }, { "name": "lo", "flags": 73, "state": [ "UP", "LOOPBACK", "RUNNING" ], "mtu": 65536, "ipv4_addr": "127.0.0.1", "ipv4_mask": "255.0.0.0", "ipv4_bcast": null, "ipv6_addr": "::1", "ipv6_mask": 128, "ipv6_scope": "0x10", "mac_addr": null, "type": "Local Loopback", "rx_packets": 73, "rx_bytes": 6009, "rx_errors": 0, "rx_dropped": 0, "rx_overruns": 0, "rx_frame": 0, "tx_packets": 73, "tx_bytes": 6009, "tx_errors": 0, "tx_dropped": 0, "tx_overruns": 0, "tx_carrier": 0, "tx_collisions": 0, "metric": null } ] ``` ### INI files ```bash cat example.ini ``` ``` [DEFAULT] ServerAliveInterval = 45 Compression = yes CompressionLevel = 9 ForwardX11 = yes [bitbucket.org] User = hg [topsecret.server.com] Port = 50022 ForwardX11 = no ``` ```bash cat example.ini | jc --ini -p ``` ```json { "bitbucket.org": { "serveraliveinterval": "45", "compression": "yes", "compressionlevel": "9", "forwardx11": "yes", "user": "hg" }, "topsecret.server.com": { "serveraliveinterval": "45", "compression": "yes", "compressionlevel": "9", "forwardx11": "no", "port": "50022" } } ``` ### iostat ```bash $ iostat | jc --iostat -p # or: jc -p iostat ``` ```json [ { "percent_user": 0.15, "percent_nice": 0.0, "percent_system": 0.18, "percent_iowait": 0.0, "percent_steal": 0.0, "percent_idle": 99.67, "type": "cpu" }, { "device": "sda", "tps": 0.29, "kb_read_s": 7.22, "kb_wrtn_s": 1.25, "kb_read": 194341, "kb_wrtn": 33590, "type": "device" }, { "device": "dm-0", "tps": 0.29, "kb_read_s": 5.99, "kb_wrtn_s": 1.17, "kb_read": 161361, "kb_wrtn": 31522, "type": "device" }, { "device": "dm-1", "tps": 0.0, "kb_read_s": 0.08, "kb_wrtn_s": 0.0, "kb_read": 2204, "kb_wrtn": 0, "type": "device" } ] ``` ### iptables ```bash iptables --line-numbers -v -L -t nat | jc --iptables -p # or: jc -p iptables --line-numbers -v -L -t nat ``` ```json [ { "chain": "PREROUTING", "rules": [ { "num": 1, "pkts": 2183, "bytes": 186000, "target": "PREROUTING_direct", "prot": "all", "opt": null, "in": "any", "out": "any", "source": "anywhere", "destination": "anywhere" }, { "num": 2, "pkts": 2183, "bytes": 186000, "target": "PREROUTING_ZONES_SOURCE", "prot": "all", "opt": null, "in": "any", "out": "any", "source": "anywhere", "destination": "anywhere" }, { "num": 3, "pkts": 2183, "bytes": 186000, "target": "PREROUTING_ZONES", "prot": "all", "opt": null, "in": "any", "out": "any", "source": "anywhere", "destination": "anywhere" }, { "num": 4, "pkts": 0, "bytes": 0, "target": "DOCKER", "prot": "all", "opt": null, "in": "any", "out": "any", "source": "anywhere", "destination": "anywhere", "options": "ADDRTYPE match dst-type LOCAL" } ] } ] ``` ### iw dev `device` scan ```bash iw dev wlan0 scan | jc --iw-scan -p # or: jc -p iw dev wlan0 scan ``` ```json [ { "bssid": "71:31:72:65:e1:a2", "interface": "wlan0", "freq": 2462, "capability": "ESS Privacy ShortSlotTime (0x0411)", "ssid": "WLAN-1234", "supported_rates": [ 1.0, 2.0, 5.5, 11.0, 18.0, 24.0, 36.0, 54.0 ], "erp": "", "erp_d4.0": "", "rsn": "Version: 1", "group_cipher": "CCMP", "pairwise_ciphers": "CCMP", "authentication_suites": "PSK", "capabilities": "0x186c", "extended_supported_rates": [ 6.0, 9.0, 12.0, 48.0 ], "ht_rx_mcs_rate_indexes_supported": "0-15", "primary_channel": 11, "secondary_channel_offset": "no secondary", "rifs": 1, "ht_protection": "no", "non-gf_present": 1, "obss_non-gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l-sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "bss_width_channel_transition_delay_factor": 5, "extended_capabilities": "HT Information Exchange Supported", "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "wps": "Version: 1.0", "wi-fi_protected_setup_state": "2 (Configured)", "selected_registrar": "0x0", "response_type": "3 (AP)", "uuid": "00000000-0000-0003-0000-75317074f1a2", "manufacturer": "Corporation", "model": "VGV8539JW", "model_number": "1.47.000", "serial_number": "J144024542", "primary_device_type": "6-0050f204-1", "device_name": "Wireless Router(WFA)", "config_methods": "Label, PBC", "rf_bands": "0x3", "tsf_usec": 212098649788, "sta_channel_width_mhz": 20, "passive_dwell_tus": 20, "active_dwell_tus": 10, "channel_width_trigger_scan_interval_s": 300, "scan_passive_total_per_channel_tus": 200, "scan_active_total_per_channel_tus": 20, "beacon_interval_tus": 100, "signal_dbm": -80.0, "last_seen_ms": 11420, "selected_rates": [ 1.0, 2.0, 5.5, 11.0 ], "obss_scan_activity_threshold_percent": 0.25, "ds_parameter_set_channel": 11, "max_amsdu_length_bytes": 7935, "minimum_rx_ampdu_time_spacing_usec": 16 } ] ``` ### jobs ```bash jobs -l | jc --jobs -p ``` ```json [ { "job_number": 1, "pid": 5283, "status": "Running", "command": "sleep 10000 &" }, { "job_number": 2, "pid": 5284, "status": "Running", "command": "sleep 10100 &" }, { "job_number": 3, "pid": 5285, "history": "previous", "status": "Running", "command": "sleep 10001 &" }, { "job_number": 4, "pid": 5286, "history": "current", "status": "Running", "command": "sleep 10112 &" } ] ``` ### Key/Value files ```bash cat keyvalue.txt ``` ``` # this file contains key/value pairs name = John Doe address=555 California Drive age: 34 ; comments can include # or ; # delimiter can be = or : # quoted values have quotation marks stripped by default # but can be preserved with the -r argument occupation:"Engineer" ``` ```bash cat keyvalue.txt | jc --kv -p ``` ```json { "name": "John Doe", "address": "555 California Drive", "age": "34", "occupation": "Engineer" } ``` ### last and lastb ```bash last -F | jc --last -p # or: jc -p last -F ``` ```json [ { "user": "kbrazil", "tty": "pts/0", "hostname": "kbrazil-mac.attlocal.net", "login": "Tue Jan 5 14:29:24 2021", "logout": "still logged in", "login_epoch": 1609885764 }, { "user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Tue Jan 5 14:28:41 2021", "logout": "still logged in", "login_epoch": 1609885721 }, { "user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Tue Jan 5 14:28:28 2021", "logout": "Tue Jan 5 14:29:36 2021", "duration": "00:01", "login_epoch": 1609885708, "logout_epoch": 1609885776, "duration_seconds": 68 } ] ``` ### ls ```bash $ ls -l /usr/bin | jc --ls -p # or: jc -p ls -l /usr/bin ``` ```json [ { "filename": "apropos", "link_to": "whatis", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 6, "date": "Aug 15 10:53" }, { "filename": "ar", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 62744, "date": "Aug 8 16:14" }, { "filename": "arch", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 33080, "date": "Aug 19 23:25" } ] ``` ### lsblk ```bash lsblk | jc --lsblk -p # or: jc -p lsblk ``` ```json [ { "name": "sda", "maj_min": "8:0", "rm": false, "size": "20G", "ro": false, "type": "disk", "mountpoint": null }, { "name": "sda1", "maj_min": "8:1", "rm": false, "size": "1G", "ro": false, "type": "part", "mountpoint": "/boot" } ] ``` ### lsmod ```bash lsmod | jc --lsmod -p # or: jc -p lsmod ``` ```json [ { "module": "nf_nat", "size": 26583, "used": 3, "by": [ "nf_nat_ipv4", "nf_nat_ipv6", "nf_nat_masquerade_ipv4" ] }, { "module": "iptable_mangle", "size": 12695, "used": 1 }, { "module": "iptable_security", "size": 12705, "used": 1 }, { "module": "iptable_raw", "size": 12678, "used": 1 }, { "module": "nf_conntrack", "size": 139224, "used": 7, "by": [ "nf_nat", "nf_nat_ipv4", "nf_nat_ipv6", "xt_conntrack", "nf_nat_masquerade_ipv4", "nf_conntrack_ipv4", "nf_conntrack_ipv6" ] } ] ``` ### lsof ```bash lsof | jc --lsof -p # or: jc -p lsof ``` ```json [ { "command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/" }, { "command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/" }, { "command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 1624520, "node": 50360451, "name": "/usr/lib/systemd/systemd" } ] ``` ### lsusb ```bash lsusb -v | jc --lsusb -p # or: jc -p lsusb -v ``` ```json [ { "bus": "002", "device": "001", "id": "1d6b:0001", "description": "Linux Foundation 1.1 root hub", "device_descriptor": { "bLength": { "value": "18" }, "bDescriptorType": { "value": "1" }, "bcdUSB": { "value": "1.10" }, ... "bNumConfigurations": { "value": "1" }, "configuration_descriptor": { "bLength": { "value": "9" }, ... "iConfiguration": { "value": "0" }, "bmAttributes": { "value": "0xe0", "attributes": [ "Self Powered", "Remote Wakeup" ] }, "MaxPower": { "description": "0mA" }, "interface_descriptors": [ { "bLength": { "value": "9" }, ... "bInterfaceProtocol": { "value": "0", "description": "Full speed (or root) hub" }, "iInterface": { "value": "0" }, "endpoint_descriptors": [ { "bLength": { "value": "7" }, ... "bmAttributes": { "value": "3", "attributes": [ "Transfer Type Interrupt", "Synch Type None", "Usage Type Data" ] }, "wMaxPacketSize": { "value": "0x0002", "description": "1x 2 bytes" }, "bInterval": { "value": "255" } } ] } ] } }, "hub_descriptor": { "bLength": { "value": "9" }, ... "wHubCharacteristic": { "value": "0x000a", "attributes": [ "No power switching (usb 1.0)", "Per-port overcurrent protection" ] }, ... "hub_port_status": { "Port 1": { "value": "0000.0103", "attributes": [ "power", "enable", "connect" ] }, "Port 2": { "value": "0000.0103", "attributes": [ "power", "enable", "connect" ] } } }, "device_status": { "value": "0x0001", "description": "Self Powered" } } ] ``` ### mount ```bash mount | jc --mount -p # or: jc -p mount ``` ```json [ { "filesystem": "sysfs", "mount_point": "/sys", "type": "sysfs", "options": [ "rw", "nosuid", "nodev", "noexec", "relatime" ] }, { "filesystem": "proc", "mount_point": "/proc", "type": "proc", "options": [ "rw", "nosuid", "nodev", "noexec", "relatime" ] }, { "filesystem": "udev", "mount_point": "/dev", "type": "devtmpfs", "options": [ "rw", "nosuid", "relatime", "size=977500k", "nr_inodes=244375", "mode=755" ] } ] ``` ### netstat ```bash netstat -apee | jc --netstat -p # or: jc -p netstat -apee ``` ```json [ { "proto": "tcp", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "0.0.0.0", "state": "LISTEN", "user": "systemd-resolve", "inode": 26958, "program_name": "systemd-resolve", "kind": "network", "pid": 887, "local_port": "domain", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv4" }, { "proto": "tcp", "recv_q": 0, "send_q": 0, "local_address": "0.0.0.0", "foreign_address": "0.0.0.0", "state": "LISTEN", "user": "root", "inode": 30499, "program_name": "sshd", "kind": "network", "pid": 1186, "local_port": "ssh", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv4" }, { "proto": "tcp", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "localhost", "state": "ESTABLISHED", "user": "root", "inode": 46829, "program_name": "sshd: root", "kind": "network", "pid": 2242, "local_port": "ssh", "foreign_port": "52186", "transport_protocol": "tcp", "network_protocol": "ipv4", "foreign_port_num": 52186 }, { "proto": "tcp", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "localhost", "state": "ESTABLISHED", "user": "root", "inode": 46828, "program_name": "ssh", "kind": "network", "pid": 2241, "local_port": "52186", "foreign_port": "ssh", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 52186 }, { "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "[::]", "foreign_address": "[::]", "state": "LISTEN", "user": "root", "inode": 30510, "program_name": "sshd", "kind": "network", "pid": 1186, "local_port": "ssh", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv6" }, { "proto": "udp", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "0.0.0.0", "state": null, "user": "systemd-resolve", "inode": 26957, "program_name": "systemd-resolve", "kind": "network", "pid": 887, "local_port": "domain", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4" }, { "proto": "raw6", "recv_q": 0, "send_q": 0, "local_address": "[::]", "foreign_address": "[::]", "state": "7", "user": "systemd-network", "inode": 27001, "program_name": "systemd-network", "kind": "network", "pid": 867, "local_port": "ipv6-icmp", "foreign_port": "*", "transport_protocol": null, "network_protocol": "ipv6" }, { "proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 33322, "program_name": "systemd", "path": "/run/user/1000/systemd/notify", "kind": "socket", "pid": 1607 }, { "proto": "unix", "refcnt": 2, "flags": "ACC", "type": "SEQPACKET", "state": "LISTENING", "inode": 20835, "program_name": "init", "path": "/run/udev/control", "kind": "socket", "pid": 1 } ] ``` ```bash netstat -r | jc --netstat -p # or: jc -p netstat -r ``` ```json [ { "destination": "default", "gateway": "gateway", "genmask": "0.0.0.0", "route_flags": "UG", "mss": 0, "window": 0, "irtt": 0, "iface": "ens33", "kind": "route", "route_flags_pretty": [ "UP", "GATEWAY" ] }, { "destination": "172.17.0.0", "gateway": "0.0.0.0", "genmask": "255.255.0.0", "route_flags": "U", "mss": 0, "window": 0, "irtt": 0, "iface": "docker0", "kind": "route", "route_flags_pretty": [ "UP" ] }, { "destination": "192.168.71.0", "gateway": "0.0.0.0", "genmask": "255.255.255.0", "route_flags": "U", "mss": 0, "window": 0, "irtt": 0, "iface": "ens33", "kind": "route", "route_flags_pretty": [ "UP" ] } ] ``` ```bash netstat -i | jc --netstat -p # or: jc -p netstat -i ``` ```json [ { "iface": "ens33", "mtu": 1500, "rx_ok": 476, "rx_err": 0, "rx_drp": 0, "rx_ovr": 0, "tx_ok": 312, "tx_err": 0, "tx_drp": 0, "tx_ovr": 0, "flg": "BMRU", "kind": "interface" }, { "iface": "lo", "mtu": 65536, "rx_ok": 0, "rx_err": 0, "rx_drp": 0, "rx_ovr": 0, "tx_ok": 0, "tx_err": 0, "tx_drp": 0, "tx_ovr": 0, "flg": "LRU", "kind": "interface" } ] ``` ### ntpq ```bash ntpq -p | jc --ntpq -p # or: jc -p ntpq -p ``` ```json [ { "remote": "44.190.6.254", "refid": "127.67.113.92", "st": 2, "t": "u", "when": 1, "poll": 64, "reach": 1, "delay": 23.399, "offset": -2.805, "jitter": 2.131, "state": null }, { "remote": "mirror1.sjc02.s", "refid": "216.218.254.202", "st": 2, "t": "u", "when": 2, "poll": 64, "reach": 1, "delay": 29.325, "offset": 1.044, "jitter": 4.069, "state": null } ] ``` ### /etc/passwd file ```bash cat /etc/passwd | jc --passwd -p ``` ```json [ { "username": "nobody", "password": "*", "uid": -2, "gid": -2, "comment": "Unprivileged User", "home": "/var/empty", "shell": "/usr/bin/false" }, { "username": "root", "password": "*", "uid": 0, "gid": 0, "comment": "System Administrator", "home": "/var/root", "shell": "/bin/sh" }, { "username": "daemon", "password": "*", "uid": 1, "gid": 1, "comment": "System Services", "home": "/var/root", "shell": "/usr/bin/false" } ] ``` ### ping ```bash ping 8.8.8.8 -c 3 | jc --ping -p # or: jc -p ping 8.8.8.8 -c 3 ``` ```json { "destination_ip": "8.8.8.8", "data_bytes": 56, "pattern": null, "destination": "8.8.8.8", "packets_transmitted": 3, "packets_received": 3, "packet_loss_percent": 0.0, "duplicates": 0, "time_ms": 2005.0, "round_trip_ms_min": 23.835, "round_trip_ms_avg": 30.46, "round_trip_ms_max": 34.838, "round_trip_ms_stddev": 4.766, "responses": [ { "type": "reply", "timestamp": null, "bytes": 64, "response_ip": "8.8.8.8", "icmp_seq": 1, "ttl": 118, "time_ms": 23.8, "duplicate": false }, { "type": "reply", "timestamp": null, "bytes": 64, "response_ip": "8.8.8.8", "icmp_seq": 2, "ttl": 118, "time_ms": 34.8, "duplicate": false }, { "type": "reply", "timestamp": null, "bytes": 64, "response_ip": "8.8.8.8", "icmp_seq": 3, "ttl": 118, "time_ms": 32.7, "duplicate": false } ] } ``` ### pip list ```bash pip list | jc --pip-list -p # or: jc -p pip list # or: jc -p pip3 list ``` ```json [ { "package": "ansible", "version": "2.8.5" }, { "package": "antlr4-python3-runtime", "version": "4.7.2" }, { "package": "asn1crypto", "version": "0.24.0" } ] ``` ### pip show ```bash pip show wrapt wheel | jc --pip-show -p # or: jc -p pip show wrapt wheel # or: jc -p pip3 show wrapt wheel ``` ```json [ { "name": "wrapt", "version": "1.11.2", "summary": "Module for decorators, wrappers and monkey patching.", "home_page": "https://github.com/GrahamDumpleton/wrapt", "author": "Graham Dumpleton", "author_email": "Graham.Dumpleton@gmail.com", "license": "BSD", "location": "/usr/local/lib/python3.7/site-packages", "requires": null, "required_by": "astroid" }, { "name": "wheel", "version": "0.33.4", "summary": "A built-package format for Python.", "home_page": "https://github.com/pypa/wheel", "author": "Daniel Holth", "author_email": "dholth@fastmail.fm", "license": "MIT", "location": "/usr/local/lib/python3.7/site-packages", "requires": null, "required_by": null } ] ``` ### ps ```bash ps -ef | jc --ps -p # or: jc -p ps -ef ``` ```json [ { "uid": "root", "pid": 1, "ppid": 0, "c": 0, "stime": "Nov01", "tty": null, "time": "00:00:11", "cmd": "/usr/lib/systemd/systemd --switched-root --system --deserialize 22" }, { "uid": "root", "pid": 2, "ppid": 0, "c": 0, "stime": "Nov01", "tty": null, "time": "00:00:00", "cmd": "[kthreadd]" }, { "uid": "root", "pid": 4, "ppid": 2, "c": 0, "stime": "Nov01", "tty": null, "time": "00:00:00", "cmd": "[kworker/0:0H]" } ] ``` ```bash ps axu | jc --ps -p # or: jc -p ps axu ``` ```json [ { "user": "root", "pid": 1, "cpu_percent": 0.0, "mem_percent": 0.1, "vsz": 128072, "rss": 6784, "tty": null, "stat": "Ss", "start": "Nov09", "time": "0:08", "command": "/usr/lib/systemd/systemd --switched-root --system --deserialize 22" }, { "user": "root", "pid": 2, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Nov09", "time": "0:00", "command": "[kthreadd]" }, { "user": "root", "pid": 4, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Nov09", "time": "0:00", "command": "[kworker/0:0H]" } ] ``` ### route ```bash route -ee | jc --route -p # or: jc -p route -ee ``` ```json [ { "destination": "default", "gateway": "_gateway", "genmask": "0.0.0.0", "flags": "UG", "metric": 202, "ref": 0, "use": 0, "iface": "ens33", "mss": 0, "window": 0, "irtt": 0, "flags_pretty": [ "UP", "GATEWAY" ] }, { "destination": "192.168.71.0", "gateway": "0.0.0.0", "genmask": "255.255.255.0", "flags": "U", "metric": 202, "ref": 0, "use": 0, "iface": "ens33", "mss": 0, "window": 0, "irtt": 0, "flags_pretty": [ "UP" ] } ] ``` ### rpm -qi ```bash rpm_qia | jc --rpm_qi -p # or: jc -p rpm -qia ``` ```json [ { "name": "make", "epoch": 1, "version": "3.82", "release": "24.el7", "architecture": "x86_64", "install_date": "Wed 16 Oct 2019 09:21:42 AM PDT", "group": "Development/Tools", "size": 1160660, "license": "GPLv2+", "signature": "RSA/SHA256, Thu 22 Aug 2019 02:34:59 PM PDT, Key ID 24c6a8a7f4a80eb5", "source_rpm": "make-3.82-24.el7.src.rpm", "build_date": "Thu 08 Aug 2019 05:47:25 PM PDT", "build_host": "x86-01.bsys.centos.org", "relocations": "(not relocatable)", "packager": "CentOS BuildSystem ", "vendor": "CentOS", "url": "http://www.gnu.org/software/make/", "summary": "A GNU tool which simplifies the build process for users", "description": "A GNU tool for controlling the generation of executables and other...", "build_epoch": 1565311645, "build_epoch_utc": null, "install_date_epoch": 1571242902, "install_date_epoch_utc": null }, { "name": "kbd-legacy", "version": "1.15.5", "release": "15.el7", "architecture": "noarch", "install_date": "Thu 15 Aug 2019 10:53:08 AM PDT", "group": "System Environment/Base", "size": 503608, "license": "GPLv2+", "signature": "RSA/SHA256, Mon 12 Nov 2018 07:17:49 AM PST, Key ID 24c6a8a7f4a80eb5", "source_rpm": "kbd-1.15.5-15.el7.src.rpm", "build_date": "Tue 30 Oct 2018 03:40:00 PM PDT", "build_host": "x86-01.bsys.centos.org", "relocations": "(not relocatable)", "packager": "CentOS BuildSystem ", "vendor": "CentOS", "url": "http://ftp.altlinux.org/pub/people/legion/kbd", "summary": "Legacy data for kbd package", "description": "The kbd-legacy package contains original keymaps for kbd package...", "build_epoch": 1540939200, "build_epoch_utc": null, "install_date_epoch": 1565891588, "install_date_epoch_utc": null } ] ``` ### sfdisk ```bash sfdisk -l | jc --sfdisk -p # or jc -p sfdisk -l ``` ```json [ { "disk": "/dev/sda", "cylinders": 2610, "heads": 255, "sectors_per_track": 63, "units": "cylinders of 8225280 bytes, blocks of 1024 bytes, counting from 0", "partitions": [ { "device": "/dev/sda1", "boot": true, "start": 0, "end": 130, "cyls": 131, "blocks": 1048576, "id": "83", "system": "Linux" }, { "device": "/dev/sda2", "boot": false, "start": 130, "end": 2610, "cyls": 2481, "blocks": 19921920, "id": "8e", "system": "Linux LVM" }, { "device": "/dev/sda3", "boot": false, "start": 0, "end": null, "cyls": 0, "blocks": 0, "id": "0", "system": "Empty" }, { "device": "/dev/sda4", "boot": false, "start": 0, "end": null, "cyls": 0, "blocks": 0, "id": "0", "system": "Empty" } ] }, { "disk": "/dev/mapper/centos-root", "cylinders": 2218, "heads": 255, "sectors_per_track": 63 }, { "disk": "/dev/mapper/centos-swap", "cylinders": 261, "heads": 255, "sectors_per_track": 63 } ] ``` ### /etc/shadow file ```bash cat /etc/shadow | jc --shadow -p ``` ```json [ { "username": "root", "password": "*", "last_changed": 18113, "minimum": 0, "maximum": 99999, "warn": 7, "inactive": null, "expire": null }, { "username": "daemon", "password": "*", "last_changed": 18113, "minimum": 0, "maximum": 99999, "warn": 7, "inactive": null, "expire": null }, { "username": "bin", "password": "*", "last_changed": 18113, "minimum": 0, "maximum": 99999, "warn": 7, "inactive": null, "expire": null } ] ``` ### ss ```bash ss -a | jc --ss -p # or: jc -p ss -a ``` ```json [ { "netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "channel": "rtnl:kernel" }, { "netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "pid": 893, "channel": "rtnl:systemd-resolve" }, { "netid": "p_raw", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "link_layer": "LLDP", "interface": "ens33" }, { "netid": "u_dgr", "state": "UNCONN", "recv_q": 0, "send_q": 0, "local_port": "93066", "peer_address": "*", "peer_port": "0", "path": "/run/user/1000/systemd/notify" }, { "netid": "u_seq", "state": "LISTEN", "recv_q": 0, "send_q": 128, "local_port": "20699", "peer_address": "*", "peer_port": "0", "path": "/run/udev/control" }, { "netid": "icmp6", "state": "UNCONN", "recv_q": 0, "send_q": 0, "local_address": "*", "local_port": "ipv6-icmp", "peer_address": "*", "peer_port": "*", "interface": "ens33" }, { "netid": "udp", "state": "UNCONN", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.53", "local_port": "domain", "peer_address": "0.0.0.0", "peer_port": "*", "interface": "lo" }, { "netid": "tcp", "state": "LISTEN", "recv_q": 0, "send_q": 128, "local_address": "127.0.0.53", "local_port": "domain", "peer_address": "0.0.0.0", "peer_port": "*", "interface": "lo" }, { "netid": "tcp", "state": "LISTEN", "recv_q": 0, "send_q": 128, "local_address": "0.0.0.0", "local_port": "ssh", "peer_address": "0.0.0.0", "peer_port": "*" }, { "netid": "tcp", "state": "LISTEN", "recv_q": 0, "send_q": 128, "local_address": "[::]", "local_port": "ssh", "peer_address": "[::]", "peer_port": "*" }, { "netid": "v_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_address": "999900439", "local_port": "1023", "peer_address": "0", "peer_port": "976", "local_port_num": 1023, "peer_port_num": 976 } ] ``` ### stat ```bash stat /bin/* | jc --stat -p # or: jc -p stat /bin/* ``` ```json [ { "file": "/bin/bash", "size": 1113504, "blocks": 2176, "io_blocks": 4096, "type": "regular file", "device": "802h/2050d", "inode": 131099, "links": 1, "access": "0755", "flags": "-rwxr-xr-x", "uid": 0, "user": "root", "gid": 0, "group": "root", "access_time": "2019-11-14 08:18:03.509681766 +0000", "modify_time": "2019-06-06 22:28:15.000000000 +0000", "change_time": "2019-08-12 17:21:29.521945390 +0000", "birth_time": null, "access_time_epoch": 1573748283, "access_time_epoch_utc": 1573719483, "modify_time_epoch": 1559885295, "modify_time_epoch_utc": 1559860095, "change_time_epoch": 1565655689, "change_time_epoch_utc": 1565630489, "birth_time_epoch": null, "birth_time_epoch_utc": null }, { "file": "/bin/btrfs", "size": 716464, "blocks": 1400, "io_blocks": 4096, "type": "regular file", "device": "802h/2050d", "inode": 131100, "links": 1, "access": "0755", "flags": "-rwxr-xr-x", "uid": 0, "user": "root", "gid": 0, "group": "root", "access_time": "2019-11-14 08:18:28.990834276 +0000", "modify_time": "2018-03-12 23:04:27.000000000 +0000", "change_time": "2019-08-12 17:21:29.545944399 +0000", "birth_time": null, "access_time_epoch": 1573748308, "access_time_epoch_utc": 1573719508, "modify_time_epoch": 1520921067, "modify_time_epoch_utc": 1520895867, "change_time_epoch": 1565655689, "change_time_epoch_utc": 1565630489, "birth_time_epoch": null, "birth_time_epoch_utc": null } ] ``` ### sysctl ```bash sysctl -a | jc --sysctl -p # or: jc -p sysctl -a ``` ```json { "user.cs_path": "/usr/bin:/bin:/usr/sbin:/sbin", "user.bc_base_max": 99, "user.bc_dim_max": 2048, "user.bc_scale_max": 99, "user.bc_string_max": 1000, "user.coll_weights_max": 2, "user.expr_nest_max": 32 } ``` ### systemctl ```bash systemctl -a | jc --systemctl -p # or: jc -p systemctl -a ``` ```json [ { "unit": "proc-sys-fs-binfmt_misc.automount", "load": "loaded", "active": "active", "sub": "waiting", "description": "Arbitrary Executable File Formats File System Automount Point" }, { "unit": "dev-block-8:2.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "LVM PV 3klkIj-w1qk-DkJi-0XBJ-y3o7-i2Ac-vHqWBM on /dev/sda2 2" }, { "unit": "dev-cdrom.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "VMware_Virtual_IDE_CDROM_Drive" } ] ``` ### systemctl list-jobs ```bash systemctl list-jobs | jc --systemctl-lj -p # or: jc -p systemctl list-jobs ``` ```json [ { "job": 3543, "unit": "nginxAfterGlusterfs.service", "type": "start", "state": "waiting" }, { "job": 3545, "unit": "glusterReadyForLocalhostMount.service", "type": "start", "state": "running" }, { "job": 3506, "unit": "nginx.service", "type": "start", "state": "waiting" } ] ``` ### systemctl list-sockets ```bash systemctl list-sockets | jc --systemctl-ls -p # or: jc -p systemctl list-sockets ``` ```json [ { "listen": "/dev/log", "unit": "systemd-journald.socket", "activates": "systemd-journald.service" }, { "listen": "/run/dbus/system_bus_socket", "unit": "dbus.socket", "activates": "dbus.service" }, { "listen": "/run/dmeventd-client", "unit": "dm-event.socket", "activates": "dm-event.service" } ] ``` ### systemctl list-unit-files ```bash systemctl list-unit-files | jc --systemctl-luf -p # or: jc -p systemctl list-unit-files ``` ```json [ { "unit_file": "proc-sys-fs-binfmt_misc.automount", "state": "static" }, { "unit_file": "dev-hugepages.mount", "state": "static" }, { "unit_file": "dev-mqueue.mount", "state": "static" } ] ``` ### systeminfo ```bash systeminfo | jc --systeminfo -p # or: jc -p systeminfo ``` ```json { "host_name": "TESTLAPTOP", "os_name": "Microsoft Windows 10 Enterprise", "os_version": "10.0.17134 N/A Build 17134", "os_manufacturer": "Microsoft Corporation", "os_configuration": "Member Workstation", "os_build_type": "Multiprocessor Free", "registered_owner": "Test, Inc.", "registered_organization": "Test, Inc.", "product_id": "11111-11111-11111-AA111", "original_install_date": "3/26/2019, 3:51:30 PM", "system_boot_time": "3/30/2021, 6:13:59 AM", "system_manufacturer": "Dell Inc.", "system_model": "Precision 5530", "system_type": "x64-based PC", "processors": [ "Intel64 Family 6 Model 158 Stepping 10 GenuineIntel ~2592 Mhz" ], "bios_version": "Dell Inc. 1.16.2, 4/21/2020", "windows_directory": "C:\\WINDOWS", "system_directory": "C:\\WINDOWS\\system32", "boot_device": "\\Device\\HarddiskVolume2", "system_locale": "en-us;English (United States)", "input_locale": "en-us;English (United States)", "time_zone": "(UTC+00:00) UTC", "total_physical_memory_mb": 32503, "available_physical_memory_mb": 19743, "virtual_memory_max_size_mb": 37367, "virtual_memory_available_mb": 22266, "virtual_memory_in_use_mb": 15101, "page_file_locations": "C:\\pagefile.sys", "domain": "test.com", "logon_server": "\\\\TESTDC01", "hotfixs": [ "KB2693643", "KB4601054" ], "network_cards": [ { "name": "Intel(R) Wireless-AC 9260 160MHz", "connection_name": "Wi-Fi", "status": null, "dhcp_enabled": true, "dhcp_server": "192.168.2.1", "ip_addresses": [ "192.168.2.219" ] } ], "hyperv_requirements": { "vm_monitor_mode_extensions": true, "virtualization_enabled_in_firmware": true, "second_level_address_translation": false, "data_execution_prevention_available": true }, "original_install_date_epoch": 1553640690, "original_install_date_epoch_utc": 1553615490, "system_boot_time_epoch": 1617110039, "system_boot_time_epoch_utc": 1617084839 } ``` ### /usr/bin/time ```bash /usr/bin/time --verbose -o timefile.out sleep 2.5; cat timefile.out | jc --time -p ``` ```json { "command_being_timed": "sleep 2.5", "user_time": 0.0, "system_time": 0.0, "cpu_percent": 0, "elapsed_time": "0:02.50", "average_shared_text_size": 0, "average_unshared_data_size": 0, "average_stack_size": 0, "average_total_size": 0, "maximum_resident_set_size": 2084, "average_resident_set_size": 0, "major_pagefaults": 0, "minor_pagefaults": 72, "voluntary_context_switches": 2, "involuntary_context_switches": 1, "swaps": 0, "block_input_operations": 0, "block_output_operations": 0, "messages_sent": 0, "messages_received": 0, "signals_delivered": 0, "page_size": 4096, "exit_status": 0, "elapsed_time_hours": 0, "elapsed_time_minutes": 0, "elapsed_time_seconds": 2, "elapsed_time_centiseconds": 50, "elapsed_time_total_seconds": 2.5 } ``` ### timedatectl status ```bash timedatectl | jc --timedatectl -p # or: jc -p timedatectl ``` ```json { "local_time": "Tue 2020-03-10 17:53:21 PDT", "universal_time": "Wed 2020-03-11 00:53:21 UTC", "rtc_time": "Wed 2020-03-11 00:53:21", "time_zone": "America/Los_Angeles (PDT, -0700)", "ntp_enabled": true, "ntp_synchronized": true, "rtc_in_local_tz": false, "dst_active": true, "epoch_utc": 1583888001 } ``` ### tracepath ```bash tracepath6 3ffe:2400:0:109::2 | jc --tracepath -p ``` ```json { "pmtu": 1480, "forward_hops": 2, "return_hops": 2, "hops": [ { "ttl": 1, "guess": true, "host": "[LOCALHOST]", "reply_ms": null, "pmtu": 1500, "asymmetric_difference": null, "reached": false }, { "ttl": 1, "guess": false, "host": "dust.inr.ac.ru", "reply_ms": 0.411, "pmtu": null, "asymmetric_difference": null, "reached": false }, { "ttl": 2, "guess": false, "host": "dust.inr.ac.ru", "reply_ms": 0.39, "pmtu": 1480, "asymmetric_difference": 1, "reached": false }, { "ttl": 2, "guess": false, "host": "3ffe:2400:0:109::2", "reply_ms": 463.514, "pmtu": null, "asymmetric_difference": null, "reached": true } ] } ``` ### traceroute ```bash traceroute -m 3 8.8.8.8 | jc --traceroute -p # or: jc -p traceroute -m 3 8.8.8.8 ``` ```json { "destination_ip": "8.8.8.8", "destination_name": "8.8.8.8", "hops": [ { "hop": 1, "probes": [ { "annotation": null, "asn": null, "ip": "192.168.1.254", "name": "dsldevice.local.net", "rtt": 6.616 }, { "annotation": null, "asn": null, "ip": "192.168.1.254", "name": "dsldevice.local.net", "rtt": 6.413 }, { "annotation": null, "asn": null, "ip": "192.168.1.254", "name": "dsldevice.local.net", "rtt": 6.308 } ] }, { "hop": 2, "probes": [ { "annotation": null, "asn": null, "ip": "76.220.24.1", "name": "76-220-24-1.lightspeed.sntcca.sbcglobal.net", "rtt": 29.367 }, { "annotation": null, "asn": null, "ip": "76.220.24.1", "name": "76-220-24-1.lightspeed.sntcca.sbcglobal.net", "rtt": 40.197 }, { "annotation": null, "asn": null, "ip": "76.220.24.1", "name": "76-220-24-1.lightspeed.sntcca.sbcglobal.net", "rtt": 29.162 } ] }, { "hop": 3, "probes": [] } ] } ``` ### ufw status ```bash ufw status verbose | jc --ufw -p # or jc -p ufw status verbose ``` ```json { "status": "active", "logging": "on", "logging_level": "low", "default": "deny (incoming), allow (outgoing), disabled (routed)", "new_profiles": "skip", "rules": [ { "action": "ALLOW", "action_direction": "IN", "index": null, "network_protocol": "ipv4", "to_interface": "any", "to_transport": "any", "to_service": null, "to_ports": [ 22 ], "to_ip": "0.0.0.0", "to_ip_prefix": 0, "comment": null, "from_ip": "0.0.0.0", "from_ip_prefix": 0, "from_interface": "any", "from_transport": "any", "from_port_ranges": [ { "start": 0, "end": 65535 } ], "from_service": null }, { "action": "ALLOW", "action_direction": "IN", "index": null, "network_protocol": "ipv4", "to_interface": "any", "to_transport": "tcp", "to_service": null, "to_ports": [ 80, 443 ], "to_ip": "0.0.0.0", "to_ip_prefix": 0, "comment": null, "from_ip": "0.0.0.0", "from_ip_prefix": 0, "from_interface": "any", "from_transport": "any", "from_port_ranges": [ { "start": 0, "end": 65535 } ], "from_service": null } ] } ``` ### ufw app info [application] ```bash ufw app info MSN | jc --ufw-appinfo -p # or: jc -p ufw app info MSN ``` ```json [ { "profile": "MSN", "title": "MSN Chat", "description": "MSN chat protocol (with file transfer and voice)", "tcp_list": [ 1863, 6901 ], "udp_list": [ 1863, 6901 ], "tcp_ranges": [ { "start": 6891, "end": 6900 } ], "normalized_tcp_list": [ 1863, 6901 ], "normalized_tcp_ranges": [ { "start": 6891, "end": 6900 } ], "normalized_udp_list": [ 1863, 6901 ] } ] ``` ### uname -a ```bash uname -a | jc --uname -p # or: jc -p uname -a ``` ```json { "kernel_name": "Linux", "node_name": "user-ubuntu", "kernel_release": "4.15.0-65-generic", "operating_system": "GNU/Linux", "hardware_platform": "x86_64", "processor": "x86_64", "machine": "x86_64", "kernel_version": "#74-Ubuntu SMP Tue Sep 17 17:06:04 UTC 2019" } ``` ### upower ```bash upower -i /org/freedesktop/UPower/devices/battery | jc --upower -p # or jc -p upower -i /org/freedesktop/UPower/devices/battery ``` ```json [ { "native_path": "/sys/devices/LNXSYSTM:00/device:00/PNP0C0A:00/power_supply/BAT0", "vendor": "NOTEBOOK", "model": "BAT", "serial": "0001", "power_supply": true, "updated": "Thu 11 Mar 2021 06:28:08 PM UTC", "has_history": true, "has_statistics": true, "detail": { "type": "battery", "present": true, "rechargeable": true, "state": "charging", "energy": 22.3998, "energy_empty": 0.0, "energy_full": 52.6473, "energy_full_design": 62.16, "energy_rate": 31.6905, "voltage": 12.191, "time_to_full": 57.3, "percentage": 42.5469, "capacity": 84.6964, "technology": "lithium-ion", "energy_unit": "Wh", "energy_empty_unit": "Wh", "energy_full_unit": "Wh", "energy_full_design_unit": "Wh", "energy_rate_unit": "W", "voltage_unit": "V", "time_to_full_unit": "minutes" }, "history_charge": [ { "time": 1328809335, "percent_charged": 42.547, "status": "charging" }, { "time": 1328809305, "percent_charged": 42.02, "status": "charging" } ], "history_rate": [ { "time": 1328809335, "percent_charged": 31.691, "status": "charging" } ], "updated_seconds_ago": 441975, "updated_epoch": 1615516088, "updated_epoch_utc": 1615487288 } ] ``` ### uptime ```bash uptime | jc --uptime -p # or: jc -p uptime ``` ```json { "time": "11:35", "uptime": "3 days, 4:03", "users": 5, "load_1m": 1.88, "load_5m": 2.0, "load_15m": 1.94, "time_hour": 11, "time_minute": 35, "time_second": null, "uptime_days": 3, "uptime_hours": 4, "uptime_minutes": 3, "uptime_total_seconds": 273780 } ``` ### w ```bash w | jc --w -p # or: jc -p w ``` ```json [ { "user": "root", "tty": "tty1", "from": null, "login_at": "07:49", "idle": "1:15m", "jcpu": "0.00s", "pcpu": "0.00s", "what": "-bash" }, { "user": "root", "tty": "ttyS0", "from": null, "login_at": "06:24", "idle": "0.00s", "jcpu": "0.43s", "pcpu": "0.00s", "what": "w" }, { "user": "root", "tty": "pts/0", "from": "192.168.71.1", "login_at": "06:29", "idle": "2:35m", "jcpu": "0.00s", "pcpu": "0.00s", "what": "-bash" } ] ``` ### wc ```bash wc * | jc --wc -p # or: jc -p wc * ``` ```json [ { "filename": "airport-I.json", "lines": 1, "words": 30, "characters": 307 }, { "filename": "airport-I.out", "lines": 15, "words": 33, "characters": 348 }, { "filename": "airport-s.json", "lines": 1, "words": 202, "characters": 2152 } ] ``` ### who ```bash who | jc --who -p # or: jc -p who ``` ```json [ { "user": "joeuser", "tty": "ttyS0", "time": "2020-03-02 02:52", "epoch": 1583146320 }, { "user": "joeuser", "tty": "pts/0", "time": "2020-03-02 05:15", "from": "192.168.71.1", "epoch": 1583154900 } ] ``` ```bash who -a | jc --who -p # or: jc -p who -a ``` ```json [ { "event": "reboot", "time": "Feb 7 23:31", "pid": 1, "epoch": null }, { "user": "joeuser", "writeable_tty": "+", "tty": "ttys004", "time": "Mar 1 16:35", "idle": ".", "pid": 15679, "from": "192.168.1.5", "epoch": null } ] ``` ### XML files ```bash cat cd_catalog.xml ``` ```xml Empire Burlesque Bob Dylan USA Columbia 10.90 1985 Hide your heart Bonnie Tyler UK CBS Records 9.90 1988 ... ``` ```bash cat cd_catalog.xml | jc --xml -p ``` ```json { "CATALOG": { "CD": [ { "TITLE": "Empire Burlesque", "ARTIST": "Bob Dylan", "COUNTRY": "USA", "COMPANY": "Columbia", "PRICE": "10.90", "YEAR": "1985" }, { "TITLE": "Hide your heart", "ARTIST": "Bonnie Tyler", "COUNTRY": "UK", "COMPANY": "CBS Records", "PRICE": "9.90", "YEAR": "1988" } ] } } ``` ### YAML files ```bash cat istio.yaml ``` ```yaml apiVersion: "authentication.istio.io/v1alpha1" kind: "Policy" metadata: name: "default" namespace: "default" spec: peers: - mtls: {} --- apiVersion: "networking.istio.io/v1alpha3" kind: "DestinationRule" metadata: name: "default" namespace: "default" spec: host: "*.default.svc.cluster.local" trafficPolicy: tls: mode: ISTIO_MUTUAL ``` ```bash cat istio.yaml | jc --yaml -p ``` ```json [ { "apiVersion": "authentication.istio.io/v1alpha1", "kind": "Policy", "metadata": { "name": "default", "namespace": "default" }, "spec": { "peers": [ { "mtls": {} } ] } }, { "apiVersion": "networking.istio.io/v1alpha3", "kind": "DestinationRule", "metadata": { "name": "default", "namespace": "default" }, "spec": { "host": "*.default.svc.cluster.local", "trafficPolicy": { "tls": { "mode": "ISTIO_MUTUAL" } } } } ] ``` © 2019-2021 Kelly Brazil jc-1.17.3/LICENSE.md000066400000000000000000000020541415226333200136050ustar00rootroot00000000000000MIT License Copyright (c) 2020 Kelly Brazil 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.jc-1.17.3/MANIFEST.in000066400000000000000000000000721415226333200137350ustar00rootroot00000000000000include jc/man/jc.1.gz include man/jc.1 include CHANGELOG jc-1.17.3/README.md000066400000000000000000001124731415226333200134670ustar00rootroot00000000000000![Tests](https://github.com/kellyjonbrazil/jc/workflows/Tests/badge.svg?branch=master) ![Pypi](https://img.shields.io/pypi/v/jc.svg) > Try the `jc` [web demo](https://jc-web-demo.herokuapp.com/) > JC is [now available](https://galaxy.ansible.com/community/general) as an Ansible filter plugin in the `community.general` collection. See this [blog post](https://blog.kellybrazil.com/2020/08/30/parsing-command-output-in-ansible-with-jc/) for an example. # JC JSON CLI output utility `jc` JSONifies the output of many CLI tools and file-types for easier parsing in scripts. See the [**Parsers**](#parsers) section for supported commands and file-types. ```bash dig example.com | jc --dig ``` ```json [{"id":38052,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1, "authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":4096}},"question": {"name":"example.com.","class":"IN","type":"A"},"answer":[{"name":"example.com.","class":"IN","type":"A","ttl": 39049,"data":"93.184.216.34"}],"query_time":49,"server":"2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)","when": "Fri Apr 16 16:09:00 PDT 2021","rcvd":56,"when_epoch":1618614540,"when_epoch_utc":null}] ``` This allows further command-line processing of output with tools like `jq` or [`jello`](https://github.com/kellyjonbrazil/jello) by piping commands: ```bash $ dig example.com | jc --dig | jq -r '.[].answer[].data' 93.184.216.34 ``` or using the alternative "magic" syntax: ```bash $ jc dig example.com | jq -r '.[].answer[].data' 93.184.216.34 ``` The `jc` parsers can also be used as python modules. In this case the output will be a python dictionary, or list of dictionaries, instead of JSON: ```python >>> import subprocess >>> import jc.parsers.dig >>> >>> cmd_output = subprocess.check_output(['dig', 'example.com'], text=True) >>> data = jc.parsers.dig.parse(cmd_output) >>> >>> data [{'id': 64612, 'opcode': 'QUERY', 'status': 'NOERROR', 'flags': ['qr', 'rd', 'ra'], 'query_num': 1, 'answer_num': 1, 'authority_num': 0, 'additional_num': 1, 'opt_pseudosection': {'edns': {'version': 0, 'flags': [], 'udp': 4096}}, 'question': {'name': 'example.com.', 'class': 'IN', 'type': 'A'}, 'answer': [{'name': 'example.com.', 'class': 'IN', 'type': 'A', 'ttl': 29658, 'data': '93.184.216.34'}], 'query_time': 52, 'server': '2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)', 'when': 'Fri Apr 16 16:13:00 PDT 2021', 'rcvd': 56, 'when_epoch': 1618614780, 'when_epoch_utc': None}] ``` Two representations of the data are available. The default representation uses a strict schema per parser and converts known numbers to int/float JSON values. Certain known values of `None` are converted to JSON `null`, known boolean values are converted, and, in some cases, additional semantic context fields are added. To access the raw, pre-processed JSON, use the `-r` cli option or the `raw=True` function parameter in `parse()`. Schemas for each parser can be found at the documentation link beside each [**Parser**](#parsers) below. Release notes can be found [here](https://blog.kellybrazil.com/category/jc-news/). ## Why Would Anyone Do This!? For more information on the motivations for this project, please see my blog post on [Bringing the Unix Philosophy to the 21st Century](https://blog.kellybrazil.com/2019/11/26/bringing-the-unix-philosophy-to-the-21st-century/). See also: - [libxo on FreeBSD](http://juniper.github.io/libxo/libxo-manual.html) - [powershell](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/convertto-json?view=powershell-7) - [blog: linux apps should have a json flag](https://thomashunter.name/posts/2012-06-06-linux-cli-apps-should-have-a-json-flag) - [Hacker News discussion](https://news.ycombinator.com/item?id=28266193) - [Reddit discussion](https://www.reddit.com/r/programming/comments/pa4cbb/bringing_the_unix_philosophy_to_the_21st_century/) Use Cases: - [Bash scripting](https://blog.kellybrazil.com/2021/04/12/practical-json-at-the-command-line/) - [Ansible command output parsing](https://blog.kellybrazil.com/2020/08/30/parsing-command-output-in-ansible-with-jc/) - [Saltstack command output parsing](https://blog.kellybrazil.com/2020/09/15/parsing-command-output-in-saltstack-with-jc/) - [Nornir command output parsing](https://blog.kellybrazil.com/2020/12/09/parsing-command-output-in-nornir-with-jc/) ## Installation There are several ways to get `jc`. You can install via `pip`, OS package repositories, via DEB/RPM/MSI packaged binaries for linux and Windows, or by downloading the correct binary for your architecture and running it anywhere on your filesystem. ### Pip (macOS, linux, unix, Windows) ```bash pip3 install jc ``` ### OS Package Repositories | OS | Command | |-----------------------|-------------------------------------------------------------------------------| | Debian/Ubuntu linux | `apt-get install jc` | | Fedora linux | `dnf install jc` | | openSUSE linux | `zypper install jc` | | Arch linux | `pacman -S jc` | | NixOS linux | `nix-env -iA nixpkgs.jc` or `nix-env -iA nixos.jc` | | Guix System linux | `guix install jc` | | macOS | `brew install jc` | | FreeBSD | `portsnap fetch update && cd /usr/ports/textproc/py-jc && make install clean` | | Ansible filter plugin | `ansible-galaxy collection install community.general` | > For more packages and binaries, see the [jc packaging](https://kellyjonbrazil.github.io/jc-packaging/) site. ## Usage `jc` accepts piped input from `STDIN` and outputs a JSON representation of the previous command's output to `STDOUT`. ```bash COMMAND | jc PARSER [OPTIONS] ``` Alternatively, the "magic" syntax can be used by prepending `jc` to the command to be converted. Options can be passed to `jc` immediately before the command is given. (Note: command aliases and shell builtins are not supported) ```bash jc [OPTIONS] COMMAND ``` The JSON output can be compact (default) or pretty formatted with the `-p` option. ### Parsers - `--acpi` enables the `acpi` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/acpi)) - `--airport` enables the `airport -I` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/airport)) - `--airport-s` enables the `airport -s` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/airport_s)) - `--arp` enables the `arp` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/arp)) - `--blkid` enables the `blkid` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/blkid)) - `--cksum` enables the `cksum` and `sum` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/cksum)) - `--crontab` enables the `crontab` command and file parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/crontab)) - `--crontab-u` enables the `crontab` file parser with user support ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/crontab_u)) - `--csv` enables the CSV file parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/csv)) - `--csv-s` enables the CSV file streaming parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/csv_s)) - `--date` enables the `date` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/date)) - `--df` enables the `df` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/df)) - `--dig` enables the `dig` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/dig)) - `--dir` enables the `dir` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/dir)) - `--dmidecode` enables the `dmidecode` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/dmidecode)) - `--dpkg-l` enables the `dpkg -l` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/dpkg_l)) - `--du` enables the `du` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/du)) - `--env` enables the `env` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/env)) - `--file` enables the `file` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/file)) - `--finger` enables the `finger` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/finger)) - `--free` enables the `free` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/free)) - `--fstab` enables the `/etc/fstab` file parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/fstab)) - `--group` enables the `/etc/group` file parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/group)) - `--gshadow` enables the `/etc/gshadow` file parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/gshadow)) - `--hash` enables the `hash` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/hash)) - `--hashsum` enables the hashsum command parser (`md5sum`, `shasum`, etc.) ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/hashsum)) - `--hciconfig` enables the `hciconfig` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/hciconfig)) - `--history` enables the `history` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/history)) - `--hosts` enables the `/etc/hosts` file parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/hosts)) - `--id` enables the `id` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/id)) - `--ifconfig` enables the `ifconfig` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/ifconfig)) - `--ini` enables the INI file parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/ini)) - `--iostat` enables the `iostat` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/iostat)) - `--iostat-s` enables the `iostat` command streaming parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/iostat_s)) - `--iptables` enables the `iptables` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/iptables)) - `--iw-scan` enables the `iw dev [device] scan` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/iw_scan)) - `--jobs` enables the `jobs` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/jobs)) - `--kv` enables the Key/Value file parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/kv)) - `--last` enables the `last` and `lastb` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/last)) - `--ls` enables the `ls` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/ls)) - `--ls-s` enables the `ls` command streaming parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/ls_s)) - `--lsblk` enables the `lsblk` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/lsblk)) - `--lsmod` enables the `lsmod` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/lsmod)) - `--lsof` enables the `lsof` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/lsof)) - `--lsusb` enables the `lsusb` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/lsusb)) - `--mount` enables the `mount` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/mount)) - `--netstat` enables the `netstat` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/netstat)) - `--ntpq` enables the `ntpq -p` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/ntpq)) - `--passwd` enables the `/etc/passwd` file parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/passwd)) - `--ping` enables the `ping` and `ping6` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/ping)) - `--ping-s` enables the `ping` and `ping6` command streaming parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/ping_s)) - `--pip-list` enables the `pip list` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/pip_list)) - `--pip-show` enables the `pip show` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/pip_show)) - `--ps` enables the `ps` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/ps)) - `--route` enables the `route` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/route)) - `--rpm-qi` enables the `rpm -qi` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/rpm_qi)) - `--sfdisk` enables the `sfdisk` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/sfdisk)) - `--shadow` enables the `/etc/shadow` file parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/shadow)) - `--ss` enables the `ss` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/ss)) - `--stat` enables the `stat` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/stat)) - `--sysctl` enables the `sysctl` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/sysctl)) - `--systemctl` enables the `systemctl` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/systemctl)) - `--systemctl-lj` enables the `systemctl list-jobs` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/systemctl_lj)) - `--systemctl-ls` enables the `systemctl list-sockets` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/systemctl_ls)) - `--systemctl-luf` enables the `systemctl list-unit-files` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/systemctl_luf)) - `--systeminfo` enables the `systeminfo` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/systeminfo)) - `--time` enables the `/usr/bin/time` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/time)) - `--timedatectl` enables the `timedatectl status` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/timedatectl)) - `--tracepath` enables the `tracepath` and `tracepath6` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/tracepath)) - `--traceroute` enables the `traceroute` and `traceroute6` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/traceroute)) - `--ufw` enables the `ufw status` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/ufw)) - `--ufw-appinfo` enables the `ufw app info [application]` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/ufw_appinfo)) - `--uname` enables the `uname -a` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/uname)) - `--upower` enables the `upower` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/upower)) - `--uptime` enables the `uptime` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/uptime)) - `--vmstat` enables the `vmstat` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/vmstat)) - `--vmstat-s` enables the `vmstat` command streaming parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/vmstat_s)) - `--w` enables the `w` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/w)) - `--wc` enables the `wc` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/wc)) - `--who` enables the `who` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/who)) - `--xml` enables the XML file parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/xml)) - `--yaml` enables the YAML file parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/yaml)) ### Options - `-a` about `jc`. Prints information about `jc` and the parsers (in JSON, of course!) - `-d` debug mode. Prints trace messages if parsing issues are encountered (use `-dd` for verbose debugging) - `-h` help. Use `jc -h --parser_name` for parser documentation - `-m` monochrome JSON output - `-p` pretty format the JSON output - `-q` quiet mode. Suppresses parser warning messages (use `-qq` to ignore streaming parser errors) - `-r` raw output. Provides a more literal JSON output, typically with string values and no additional semantic processing - `-u` unbuffer output - `-v` version information ### Exit Codes Any fatal errors within `jc` will generate an exit code of `100`, otherwise the exit code will be `0`. When using the "magic" syntax (e.g. `jc ifconfig eth0`), `jc` will store the exit code of the program being parsed and add it to the `jc` exit code. This way it is easier to determine if an error was from the parsed program or `jc`. Consider the following examples using `ifconfig`: | `ifconfig` exit code | `jc` exit code | Combined exit code | Interpretation | |----------------------|----------------|--------------------|------------------------------------| | `0` | `0` | `0` | No errors | | `1` | `0` | `1` | Error in `ifconfig` | | `0` | `100` | `100` | Error in `jc` | | `1` | `100` | `101` | Error in both `ifconfig` and `jc` | ### Setting Custom Colors via Environment Variable You can specify custom colors via the `JC_COLORS` environment variable. The `JC_COLORS` environment variable takes four comma separated string values in the following format: ```bash JC_COLORS=,,, ``` Where colors are: `black`, `red`, `green`, `yellow`, `blue`, `magenta`, `cyan`, `gray`, `brightblack`, `brightred`, `brightgreen`, `brightyellow`, `brightblue`, `brightmagenta`, `brightcyan`, `white`, or `default` For example, to set to the default colors: ```bash JC_COLORS=blue,brightblack,magenta,green ``` or ```bash JC_COLORS=default,default,default,default ``` ### Streaming Parsers Most parsers load all of the data from STDIN, parse it, then output the entire JSON document serially. There are some streaming parsers (e.g. `ls-s` and `ping-s`) that immediately start processing and outputing the data line-by-line as [JSON Lines](https://jsonlines.org/) (aka [NDJSON](http://ndjson.org/)) while it is being received from STDIN. This can significantly reduce the amount of memory required to parse large amounts of command output (e.g. `ls -lR /`) and can sometimes process the data more quickly. Streaming parsers have slightly different behavior than standard parsers as outlined below. > Note: Streaming parsers cannot be used with the "magic" syntax #### Ignoring Errors You may want to ignore parsing errors when using streaming parsers since these may be used in long-lived processing pipelines and errors can break the pipe. To ignore parsing errors, use the `-qq` cli option or the `ignore_exceptions=True` argument with the `parse()` function. This will add a `_jc_meta` object to the JSON output with a `success` attribute. If `success` is `true`, then there were no issues parsing the line. If `success` is `false`, then a parsing issue was found and `error` and `line` fields will be added to include a short error description and the contents of the unparsable line, respectively: Successfully parsed line with `-qq` option: ```json { "command_data": "data", "_jc_meta": { "success": true } } ``` Unsuccessfully parsed line with `-qq` option: ```json { "_jc_meta": { "success": false, "error": "error message", "line": "original line data" } } ``` #### Unbuffering Output Most operating systems will buffer output that is being piped from process to process. The buffer is usually around 4KB. When viewing the output in the terminal the OS buffer is not engaged so output is immediately displayed on the screen. When piping multiple processes together, though, it may seem as if the output is hanging when the input data is very slow (e.g. `ping`): ``` $ ping 1.1.1.1 | jc --ping-s | jq ``` This is because the OS engages the 4KB buffer between `jc` and `jq` in this example. To display the data on the terminal in realtime, you can disable the buffer with the `-u` (unbuffer) cli option: ``` $ ping 1.1.1.1 | jc --ping-s -u | jq {"type":"reply","pattern":null,"timestamp":null,"bytes":"64","response_ip":"1.1.1.1","icmp_seq":"1","ttl":"128","time_ms":"24.6","duplicate":false} {"type":"reply","pattern":null,"timestamp":null,"bytes":"64","response_ip":"1.1.1.1","icmp_seq":"2","ttl":"128","time_ms":"26.8","duplicate":false} ... ``` > Note: Unbuffered output can be slower for large data streams. #### Using Streaming Parsers as Python Modules Streaming parsers accept any iterable object and return a generator iterator object allowing lazy processing of the data. The input data should iterate on lines of string data. Examples of good input data are `sys.stdin` or `str.splitlines()`. To use the generator object in your code, simply loop through it or use the [next()](https://docs.python.org/3/library/functions.html#next) builtin function: ```python import jc.parsers.ls_s result = jc.parsers.ls_s.parse(ls_command_output.splitlines()) for item in result: print(item["filename"]) ``` ### Custom Parsers Custom local parser plugins may be placed in a `jc/jcparsers` folder in your local **"App data directory"**: - Linux/unix: `$HOME/.local/share/jc/jcparsers` - macOS: `$HOME/Library/Application Support/jc/jcparsers` - Windows: `$LOCALAPPDATA\jc\jc\jcparsers` Local parser plugins are standard python module files. Use the [`jc/parsers/foo.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/foo.py) or [`jc/parsers/foo_s.py (streaming)`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/foo_s.py) parser as a template and simply place a `.py` file in the `jcparsers` subfolder. Local plugin filenames must be valid python module names, therefore must consist entirely of alphanumerics and start with a letter. Local plugins may override default parsers. > Note: The application data directory follows the [XDG Base Directory Specification](https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html) ### Caveats #### Locale For best results set the `LANG` locale environment variable to `C` or `en_US.UTF-8`. For example, either by setting directly on the command-line: ``` $ LANG=C date | jc --date ``` or by exporting to the environment before running commands: ``` $ export LANG=C ``` #### Timezones Some parsers have calculated epoch timestamp fields added to the output. Unless a timestamp field name has a `_utc` suffix it is considered naive. (i.e. based on the local timezone of the system the `jc` parser was run on). If a UTC timezone can be detected in the text of the command output, the timestamp will be timezone aware and have a `_utc` suffix on the key name. (e.g. `epoch_utc`) No other timezones are supported for aware timestamps. ## Compatibility Some parsers like `dig`, `xml`, `csv`, etc. will work on any platform. Other parsers that convert platform-specific output will generate a warning message if they are run on an unsupported platform. To see all parser information, including compatibility, run `jc -ap`. You may still use a parser on an unsupported platform - for example, you may want to parse a file with linux `lsof` output on an macOS or Windows laptop. In that case you can suppress the warning message with the `-q` cli option or the `quiet=True` function parameter in `parse()`: macOS: ```bash cat lsof.out | jc --lsof -q ``` or Windows: ```bash type lsof.out | jc --lsof -q ``` Tested on: - Centos 7.7 - Ubuntu 18.04 - Ubuntu 20.04 - Fedora32 - macOS 10.11.6 - macOS 10.14.6 - NixOS - FreeBSD12 - Windows 10 - Windows 2016 Server - Windows 2019 Server ## Contributions Feel free to add/improve code or parsers! You can use the [`jc/parsers/foo.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/foo.py) or [`jc/parsers/foo_s.py (streaming)`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/foo_s.py) parsers as a template and submit your parser with a pull request. Please see the [Contributing Guidelines](https://github.com/kellyjonbrazil/jc/blob/master/CONTRIBUTING.md) for more information. ## Acknowledgments - Local parser plugin feature contributed by [Dean Serenevy](https://github.com/duelafn) - CI automation and code optimizations by [philippeitis](https://github.com/philippeitis) - [`ifconfig-parser`](https://github.com/KnightWhoSayNi/ifconfig-parser) module by KnightWhoSayNi - [`xmltodict`](https://github.com/martinblech/xmltodict) module by Martín Blech - [`ruamel.yaml`](https://pypi.org/project/ruamel.yaml) module by Anthon van der Neut - [`trparse`](https://github.com/lbenitez000/trparse) module by Luis Benitez - Parsing [code](https://gist.github.com/cahna/43a1a3ff4d075bcd71f9d7120037a501) from Conor Heine adapted for some parsers - Excellent constructive feedback from [Ilya Sher](https://github.com/ilyash-b) ## Examples Here are some examples of `jc` output. For more examples, see [here](https://kellyjonbrazil.github.io/jc/EXAMPLES) or the parser documentation. ### arp ```bash arp | jc --arp -p # or: jc -p arp ``` ```json [ { "address": "gateway", "hwtype": "ether", "hwaddress": "00:50:56:f7:4a:fc", "flags_mask": "C", "iface": "ens33" }, { "address": "192.168.71.1", "hwtype": "ether", "hwaddress": "00:50:56:c0:00:08", "flags_mask": "C", "iface": "ens33" }, { "address": "192.168.71.254", "hwtype": "ether", "hwaddress": "00:50:56:fe:7a:b4", "flags_mask": "C", "iface": "ens33" } ] ``` ### CSV files ```bash cat homes.csv ``` ``` "Sell", "List", "Living", "Rooms", "Beds", "Baths", "Age", "Acres", "Taxes" 142, 160, 28, 10, 5, 3, 60, 0.28, 3167 175, 180, 18, 8, 4, 1, 12, 0.43, 4033 129, 132, 13, 6, 3, 1, 41, 0.33, 1471 ... ``` ```bash cat homes.csv | jc --csv -p ``` ```json [ { "Sell": "142", "List": "160", "Living": "28", "Rooms": "10", "Beds": "5", "Baths": "3", "Age": "60", "Acres": "0.28", "Taxes": "3167" }, { "Sell": "175", "List": "180", "Living": "18", "Rooms": "8", "Beds": "4", "Baths": "1", "Age": "12", "Acres": "0.43", "Taxes": "4033" }, { "Sell": "129", "List": "132", "Living": "13", "Rooms": "6", "Beds": "3", "Baths": "1", "Age": "41", "Acres": "0.33", "Taxes": "1471" } ] ``` ### /etc/hosts file ```bash cat /etc/hosts | jc --hosts -p ``` ```json [ { "ip": "127.0.0.1", "hostname": [ "localhost" ] }, { "ip": "::1", "hostname": [ "ip6-localhost", "ip6-loopback" ] }, { "ip": "fe00::0", "hostname": [ "ip6-localnet" ] } ] ``` ### ifconfig ```bash ifconfig | jc --ifconfig -p # or: jc -p ifconfig ``` ```json [ { "name": "ens33", "flags": 4163, "state": [ "UP", "BROADCAST", "RUNNING", "MULTICAST" ], "mtu": 1500, "ipv4_addr": "192.168.71.137", "ipv4_mask": "255.255.255.0", "ipv4_bcast": "192.168.71.255", "ipv6_addr": "fe80::c1cb:715d:bc3e:b8a0", "ipv6_mask": 64, "ipv6_scope": "0x20", "mac_addr": "00:0c:29:3b:58:0e", "type": "Ethernet", "rx_packets": 8061, "rx_bytes": 1514413, "rx_errors": 0, "rx_dropped": 0, "rx_overruns": 0, "rx_frame": 0, "tx_packets": 4502, "tx_bytes": 866622, "tx_errors": 0, "tx_dropped": 0, "tx_overruns": 0, "tx_carrier": 0, "tx_collisions": 0, "metric": null } ] ``` ### INI files ```bash cat example.ini ``` ``` [DEFAULT] ServerAliveInterval = 45 Compression = yes CompressionLevel = 9 ForwardX11 = yes [bitbucket.org] User = hg [topsecret.server.com] Port = 50022 ForwardX11 = no ``` ```bash cat example.ini | jc --ini -p ``` ```json { "bitbucket.org": { "serveraliveinterval": "45", "compression": "yes", "compressionlevel": "9", "forwardx11": "yes", "user": "hg" }, "topsecret.server.com": { "serveraliveinterval": "45", "compression": "yes", "compressionlevel": "9", "forwardx11": "no", "port": "50022" } } ``` ### ls ```bash $ ls -l /usr/bin | jc --ls -p # or: jc -p ls -l /usr/bin ``` ```json [ { "filename": "apropos", "link_to": "whatis", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 6, "date": "Aug 15 10:53" }, { "filename": "ar", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 62744, "date": "Aug 8 16:14" }, { "filename": "arch", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 33080, "date": "Aug 19 23:25" } ] ``` ### netstat ```bash netstat -apee | jc --netstat -p # or: jc -p netstat -apee ``` ```json [ { "proto": "tcp", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "0.0.0.0", "state": "LISTEN", "user": "systemd-resolve", "inode": 26958, "program_name": "systemd-resolve", "kind": "network", "pid": 887, "local_port": "domain", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv4" }, { "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "[::]", "foreign_address": "[::]", "state": "LISTEN", "user": "root", "inode": 30510, "program_name": "sshd", "kind": "network", "pid": 1186, "local_port": "ssh", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv6" }, { "proto": "udp", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "0.0.0.0", "state": null, "user": "systemd-resolve", "inode": 26957, "program_name": "systemd-resolve", "kind": "network", "pid": 887, "local_port": "domain", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4" }, { "proto": "raw6", "recv_q": 0, "send_q": 0, "local_address": "[::]", "foreign_address": "[::]", "state": "7", "user": "systemd-network", "inode": 27001, "program_name": "systemd-network", "kind": "network", "pid": 867, "local_port": "ipv6-icmp", "foreign_port": "*", "transport_protocol": null, "network_protocol": "ipv6" }, { "proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 33322, "program_name": "systemd", "path": "/run/user/1000/systemd/notify", "kind": "socket", "pid": 1607 } ] ``` ### /etc/passwd file ```bash cat /etc/passwd | jc --passwd -p ``` ```json [ { "username": "root", "password": "*", "uid": 0, "gid": 0, "comment": "System Administrator", "home": "/var/root", "shell": "/bin/sh" }, { "username": "daemon", "password": "*", "uid": 1, "gid": 1, "comment": "System Services", "home": "/var/root", "shell": "/usr/bin/false" } ] ``` ### ping ```bash ping 8.8.8.8 -c 3 | jc --ping -p # or: jc -p ping 8.8.8.8 -c 3 ``` ```json { "destination_ip": "8.8.8.8", "data_bytes": 56, "pattern": null, "destination": "8.8.8.8", "packets_transmitted": 3, "packets_received": 3, "packet_loss_percent": 0.0, "duplicates": 0, "time_ms": 2005.0, "round_trip_ms_min": 23.835, "round_trip_ms_avg": 30.46, "round_trip_ms_max": 34.838, "round_trip_ms_stddev": 4.766, "responses": [ { "type": "reply", "timestamp": null, "bytes": 64, "response_ip": "8.8.8.8", "icmp_seq": 1, "ttl": 118, "time_ms": 23.8, "duplicate": false }, { "type": "reply", "timestamp": null, "bytes": 64, "response_ip": "8.8.8.8", "icmp_seq": 2, "ttl": 118, "time_ms": 34.8, "duplicate": false }, { "type": "reply", "timestamp": null, "bytes": 64, "response_ip": "8.8.8.8", "icmp_seq": 3, "ttl": 118, "time_ms": 32.7, "duplicate": false } ] } ``` ### ps ```bash ps axu | jc --ps -p # or: jc -p ps axu ``` ```json [ { "user": "root", "pid": 1, "cpu_percent": 0.0, "mem_percent": 0.1, "vsz": 128072, "rss": 6784, "tty": null, "stat": "Ss", "start": "Nov09", "time": "0:08", "command": "/usr/lib/systemd/systemd --switched-root --system --deserialize 22" }, { "user": "root", "pid": 2, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Nov09", "time": "0:00", "command": "[kthreadd]" }, { "user": "root", "pid": 4, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Nov09", "time": "0:00", "command": "[kworker/0:0H]" } ] ``` ### traceroute ```bash traceroute -m 2 8.8.8.8 | jc --traceroute -p # or: jc -p traceroute -m 2 8.8.8.8 ``` ```json { "destination_ip": "8.8.8.8", "destination_name": "8.8.8.8", "hops": [ { "hop": 1, "probes": [ { "annotation": null, "asn": null, "ip": "192.168.1.254", "name": "dsldevice.local.net", "rtt": 6.616 }, { "annotation": null, "asn": null, "ip": "192.168.1.254", "name": "dsldevice.local.net", "rtt": 6.413 }, { "annotation": null, "asn": null, "ip": "192.168.1.254", "name": "dsldevice.local.net", "rtt": 6.308 } ] }, { "hop": 2, "probes": [ { "annotation": null, "asn": null, "ip": "76.220.24.1", "name": "76-220-24-1.lightspeed.sntcca.sbcglobal.net", "rtt": 29.367 }, { "annotation": null, "asn": null, "ip": "76.220.24.1", "name": "76-220-24-1.lightspeed.sntcca.sbcglobal.net", "rtt": 40.197 }, { "annotation": null, "asn": null, "ip": "76.220.24.1", "name": "76-220-24-1.lightspeed.sntcca.sbcglobal.net", "rtt": 29.162 } ] } ] } ``` ### uptime ```bash uptime | jc --uptime -p # or: jc -p uptime ``` ```json { "time": "11:35", "uptime": "3 days, 4:03", "users": 5, "load_1m": 1.88, "load_5m": 2.0, "load_15m": 1.94, "time_hour": 11, "time_minute": 35, "time_second": null, "uptime_days": 3, "uptime_hours": 4, "uptime_minutes": 3, "uptime_total_seconds": 273780 } ``` ### XML files ```bash cat cd_catalog.xml ``` ```xml Empire Burlesque Bob Dylan USA Columbia 10.90 1985 Hide your heart Bonnie Tyler UK CBS Records 9.90 1988 ... ``` ```bash cat cd_catalog.xml | jc --xml -p ``` ```json { "CATALOG": { "CD": [ { "TITLE": "Empire Burlesque", "ARTIST": "Bob Dylan", "COUNTRY": "USA", "COMPANY": "Columbia", "PRICE": "10.90", "YEAR": "1985" }, { "TITLE": "Hide your heart", "ARTIST": "Bonnie Tyler", "COUNTRY": "UK", "COMPANY": "CBS Records", "PRICE": "9.90", "YEAR": "1988" } ] } } ``` ### YAML files ```bash cat istio.yaml ``` ```yaml apiVersion: "authentication.istio.io/v1alpha1" kind: "Policy" metadata: name: "default" namespace: "default" spec: peers: - mtls: {} --- apiVersion: "networking.istio.io/v1alpha3" kind: "DestinationRule" metadata: name: "default" namespace: "default" spec: host: "*.default.svc.cluster.local" trafficPolicy: tls: mode: ISTIO_MUTUAL ``` ```bash cat istio.yaml | jc --yaml -p ``` ```json [ { "apiVersion": "authentication.istio.io/v1alpha1", "kind": "Policy", "metadata": { "name": "default", "namespace": "default" }, "spec": { "peers": [ { "mtls": {} } ] } }, { "apiVersion": "networking.istio.io/v1alpha3", "kind": "DestinationRule", "metadata": { "name": "default", "namespace": "default" }, "spec": { "host": "*.default.svc.cluster.local", "trafficPolicy": { "tls": { "mode": "ISTIO_MUTUAL" } } } } ] ``` © 2019-2021 Kelly Braziljc-1.17.3/_config.yml000066400000000000000000000000321415226333200143220ustar00rootroot00000000000000theme: jekyll-theme-caymanjc-1.17.3/build-package.sh000077500000000000000000000001771415226333200152340ustar00rootroot00000000000000#!/bin/bash # build jc PIP package # to install locally, run: pip3 install jc-x.x.tar.gz python3 setup.py sdist bdist_wheel jc-1.17.3/docgen.sh000077500000000000000000000024611415226333200140010ustar00rootroot00000000000000#!/bin/bash # Generate docs.md # requires pydoc-markdown 2.1.0.post1 cd jc echo Building docs for: package pydocmd simple jc+ > ../docs/readme.md echo Building docs for: utils pydocmd simple utils+ > ../docs/utils.md # a bit of inception here... jc is being used to help # automate the generation of its own documentation. :) # pull jc parser objects into a bash array from jq parsers=() while read -r value do parsers+=("$value") done < <(jc -a | jq -c '.parsers[]') # iterate over the bash array for parser in "${parsers[@]}" do parser_name=$(jq -r '.name' <<< "$parser") compatible=$(jq -r '.compatible | join(", ")' <<< "$parser") version=$(jq -r '.version' <<< "$parser") author=$(jq -r '.author' <<< "$parser") author_email=$(jq -r '.author_email' <<< "$parser") echo "Building docs for: ${parser_name}" echo "[Home](https://kellyjonbrazil.github.io/jc/)" > ../docs/parsers/"${parser_name}".md pydocmd simple jc.parsers."${parser_name}"+ >> ../docs/parsers/"${parser_name}".md echo "## Parser Information" >> ../docs/parsers/"${parser_name}".md echo "Compatibility: ${compatible}" >> ../docs/parsers/"${parser_name}".md echo >> ../docs/parsers/"${parser_name}".md echo "Version ${version} by ${author} (${author_email})" >> ../docs/parsers/"${parser_name}".md done jc-1.17.3/docs/000077500000000000000000000000001415226333200131305ustar00rootroot00000000000000jc-1.17.3/docs/_config.yml000066400000000000000000000000321415226333200152520ustar00rootroot00000000000000theme: jekyll-theme-caymanjc-1.17.3/docs/parsers/000077500000000000000000000000001415226333200146075ustar00rootroot00000000000000jc-1.17.3/docs/parsers/acpi.md000066400000000000000000000133671415226333200160570ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.acpi jc - JSON CLI output utility `acpi` command output parser Usage (cli): $ acpi -V | jc --acpi or $ jc acpi -V Usage (module): import jc.parsers.acpi result = jc.parsers.acpi.parse(acpi_command_output) Schema: [ { "type": string, "id": integer, "state": string, "charge_percent": integer, "until_charged": string, "until_charged_hours": integer, "until_charged_minuts": integer, "until_charged_seconds": integer, "until_charged_total_seconds": integer, "charge_remaining": string, "charge_remaining_hours": integer, "charge_remaining_minutes": integer, "charge_remaining_seconds": integer, "charge_remaining_total_seconds": integer, "design_capacity_mah": integer, "last_full_capacity": integer, "last_full_capacity_percent": integer, "on-line": boolean, "mode": string, "temperature": float, "temperature_unit": string, "trip_points": [ { "id": integer, "switches_to_mode": string, "temperature": float, "temperature_unit": string } ], "messages": [ string ] } ] Examples: $ acpi -V | jc --acpi -p [ { "type": "Battery", "id": 0, "state": "Charging", "charge_percent": 71, "until_charged": "00:29:20", "design_capacity_mah": 2110, "last_full_capacity": 2271, "last_full_capacity_percent": 100, "until_charged_hours": 0, "until_charged_minutes": 29, "until_charged_seconds": 20, "until_charged_total_seconds": 1760 }, { "type": "Adapter", "id": 0, "on-line": true }, { "type": "Thermal", "id": 0, "mode": "ok", "temperature": 46.0, "temperature_unit": "C", "trip_points": [ { "id": 0, "switches_to_mode": "critical", "temperature": 127.0, "temperature_unit": "C" }, { "id": 1, "switches_to_mode": "hot", "temperature": 127.0, "temperature_unit": "C" } ] }, { "type": "Cooling", "id": 0, "messages": [ "Processor 0 of 10" ] }, { "type": "Cooling", "id": 1, "messages": [ "Processor 0 of 10" ] }, { "type": "Cooling", "id": 2, "messages": [ "x86_pkg_temp no state information available" ] }, { "type": "Cooling", "id": 3, "messages": [ "Processor 0 of 10" ] }, { "type": "Cooling", "id": 4, "messages": [ "intel_powerclamp no state information available" ] }, { "type": "Cooling", "id": 5, "messages": [ "Processor 0 of 10" ] } ] $ acpi -V | jc --acpi -p -r [ { "type": "Battery", "id": "0", "state": "Charging", "charge_percent": "71", "until_charged": "00:29:20", "design_capacity_mah": "2110", "last_full_capacity": "2271", "last_full_capacity_percent": "100" }, { "type": "Adapter", "id": "0", "on-line": true }, { "type": "Thermal", "id": "0", "mode": "ok", "temperature": "46.0", "temperature_unit": "C", "trip_points": [ { "id": "0", "switches_to_mode": "critical", "temperature": "127.0", "temperature_unit": "C" }, { "id": "1", "switches_to_mode": "hot", "temperature": "127.0", "temperature_unit": "C" } ] }, { "type": "Cooling", "id": "0", "messages": [ "Processor 0 of 10" ] }, { "type": "Cooling", "id": "1", "messages": [ "Processor 0 of 10" ] }, { "type": "Cooling", "id": "2", "messages": [ "x86_pkg_temp no state information available" ] }, { "type": "Cooling", "id": "3", "messages": [ "Processor 0 of 10" ] }, { "type": "Cooling", "id": "4", "messages": [ "intel_powerclamp no state information available" ] }, { "type": "Cooling", "id": "5", "messages": [ "Processor 0 of 10" ] } ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux Version 1.3 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/airport.md000066400000000000000000000045771415226333200166260ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.airport jc - JSON CLI output utility `airport -I` command output parser The `airport` program can be found at `/System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport`. Usage (cli): $ airport -I | jc --airport or $ jc airport -I Usage (module): import jc.parsers.airport result = jc.parsers.airport.parse(airport_command_output) Schema: { "agrctlrssi": integer, "agrextrssi": integer, "agrctlnoise": integer, "agrextnoise": integer, "state": string, "op_mode": string, "lasttxrate": integer, "maxrate": integer, "lastassocstatus": integer, "802_11_auth": string, "link_auth": string, "bssid": string, "ssid": string, "mcs": integer, "channel": string } Examples: $ airport -I | jc --airport -p { "agrctlrssi": -66, "agrextrssi": 0, "agrctlnoise": -90, "agrextnoise": 0, "state": "running", "op_mode": "station", "lasttxrate": 195, "maxrate": 867, "lastassocstatus": 0, "802_11_auth": "open", "link_auth": "wpa2-psk", "bssid": "3c:37:86:15:ad:f9", "ssid": "SnazzleDazzle", "mcs": 0, "channel": "48,80" } $ airport -I | jc --airport -p -r { "agrctlrssi": "-66", "agrextrssi": "0", "agrctlnoise": "-90", "agrextnoise": "0", "state": "running", "op_mode": "station", "lasttxrate": "195", "maxrate": "867", "lastassocstatus": "0", "802_11_auth": "open", "link_auth": "wpa2-psk", "bssid": "3c:37:86:15:ad:f9", "ssid": "SnazzleDazzle", "mcs": "0", "channel": "48,80" } ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: Dictionary. Raw or processed structured data. ## Parser Information Compatibility: darwin Version 1.4 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/airport_s.md000066400000000000000000000054161415226333200171410ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.airport_s jc - JSON CLI output utility `airport -s` command output parser The `airport` program can be found at `/System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport`. Usage (cli): $ airport -s | jc --airport-s or $ jc airport -s Usage (module): import jc.parsers.airport_s result = jc.parsers.airport_s.parse(airport_s_command_output) Schema: [ { "ssid": string, "bssid": string, "rssi": integer, "channel": string, "ht": boolean, "cc": string, "security": [ string, ] } ] Examples: $ airport -s | jc --airport-s -p [ { "ssid": "DIRECT-4A-HP OfficeJet 3830", "bssid": "00:67:eb:2a:a7:3b", "rssi": -90, "channel": "6", "ht": true, "cc": "--", "security": [ "WPA2(PSK/AES/AES)" ] }, { "ssid": "Latitude38", "bssid": "c0:ff:d5:d2:7a:f3", "rssi": -85, "channel": "11", "ht": true, "cc": "US", "security": [ "WPA2(PSK/AES/AES)" ] }, { "ssid": "xfinitywifi", "bssid": "6e:e3:0e:b8:45:99", "rssi": -83, "channel": "11", "ht": true, "cc": "US", "security": [ "NONE" ] }, ... ] $ airport -s | jc --airport -p -r [ { "ssid": "DIRECT-F3-HP ENVY 5660 series", "bssid": "b0:5a:da:6f:0a:d4", "rssi": "-93", "channel": "1", "ht": "Y", "cc": "--", "security": "WPA2(PSK/AES/AES)" }, { "ssid": "YouAreInfected-5", "bssid": "5c:e3:0e:c2:85:da", "rssi": "-85", "channel": "36", "ht": "Y", "cc": "US", "security": "WPA(PSK/AES,TKIP/TKIP) WPA2(PSK/AES,TKIP/TKIP)" }, { "ssid": "YuanFamily", "bssid": "5c:e3:0e:b8:5f:9a", "rssi": "-84", "channel": "11", "ht": "Y", "cc": "US", "security": "WPA(PSK/AES,TKIP/TKIP) WPA2(PSK/AES,TKIP/TKIP)" }, ... ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: darwin Version 1.5 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/arp.md000066400000000000000000000055241415226333200157210ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.arp jc - JSON CLI output utility `arp` command output parser Supports `arp` and `arp -a` output. Usage (cli): $ arp | jc --arp or $ jc arp Usage (module): import jc.parsers.arp result = jc.parsers.arp.parse(arp_command_output) Schema: [ { "name": string, "address": string, "hwtype": string, "hwaddress": string, "flags_mask": string, "iface": string, "permanent": boolean, "expires": integer } ] Examples: $ arp | jc --arp -p [ { "address": "192.168.71.254", "hwtype": "ether", "hwaddress": "00:50:56:f0:98:26", "flags_mask": "C", "iface": "ens33" }, { "address": "gateway", "hwtype": "ether", "hwaddress": "00:50:56:f7:4a:fc", "flags_mask": "C", "iface": "ens33" } ] $ arp | jc --arp -p -r [ { "address": "gateway", "hwtype": "ether", "hwaddress": "00:50:56:f7:4a:fc", "flags_mask": "C", "iface": "ens33" }, { "address": "192.168.71.254", "hwtype": "ether", "hwaddress": "00:50:56:fe:7a:b4", "flags_mask": "C", "iface": "ens33" } ] $ arp -a | jc --arp -p [ { "name": null, "address": "192.168.71.254", "hwtype": "ether", "hwaddress": "00:50:56:f0:98:26", "iface": "ens33" "permanent": false, "expires": 1182 }, { "name": "gateway", "address": "192.168.71.2", "hwtype": "ether", "hwaddress": "00:50:56:f7:4a:fc", "iface": "ens33" "permanent": false, "expires": 110 } ] $ arp -a | jc --arp -p -r [ { "name": "?", "address": "192.168.71.254", "hwtype": "ether", "hwaddress": "00:50:56:fe:7a:b4", "iface": "ens33" "permanent": false, "expires": "1182" }, { "name": "_gateway", "address": "192.168.71.2", "hwtype": "ether", "hwaddress": "00:50:56:f7:4a:fc", "iface": "ens33" "permanent": false, "expires": "110" } ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux, aix, freebsd, darwin Version 1.8 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/blkid.md000066400000000000000000000102511415226333200162150ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.blkid jc - JSON CLI output utility `blkid` command output parser Usage (cli): $ blkid | jc --blkid or $ jc blkid Usage (module): import jc.parsers.blkid result = jc.parsers.blkid.parse(blkid_command_output) Schema: [ { "device": string, "uuid": string, "type": string, "usage": string, "part_entry_scheme": string, "part_entry_type": string, "part_entry_flags": string, "part_entry_number": integer, "part_entry_offset": integer, "part_entry_size": integer, "part_entry_disk": string, "id_fs_uuid": string, "id_fs_uuid_enc": string, "id_fs_version": string, "id_fs_type": string, "id_fs_usage": string, "id_part_entry_scheme": string, "id_part_entry_type": string, "id_part_entry_flags": string, "id_part_entry_number": integer, "id_part_entry_offset": integer, "id_part_entry_size": integer, "id_iolimit_minimum_io_size": integer, "id_iolimit_physical_sector_size": integer, "id_iolimit_logical_sector_size": integer, "id_part_entry_disk": string, "minimum_io_size": integer, "physical_sector_size": integer, "logical_sector_size": integer } ] Examples: $ blkid | jc --blkid -p [ { "device": "/dev/sda1", "uuid": "05d927ab-5875-49e4-ada1-7f46cb32c932", "type": "xfs" }, { "device": "/dev/sda2", "uuid": "3klkIj-w1kk-DkJi-0XBJ-y3i7-i2Ac-vHqWBM", "type": "LVM2_member" }, { "device": "/dev/mapper/centos-root", "uuid": "07d718ff-950c-4e5b-98f0-42a1147c77d9", "type": "xfs" }, { "device": "/dev/mapper/centos-swap", "uuid": "615eb89a-bcbf-46fd-80e3-c483ff5c931f", "type": "swap" } ] $ sudo blkid -o udev -ip /dev/sda2 | jc --blkid -p [ { "id_fs_uuid": "3klkIj-w1kk-DkJi-0XBJ-y3i7-i2Ac-vHqWBM", "id_fs_uuid_enc": "3klkIj-w1kk-DkJi-0XBJ-y3i7-i2Ac-vHqWBM", "id_fs_version": "LVM2\x20001", "id_fs_type": "LVM2_member", "id_fs_usage": "raid", "id_iolimit_minimum_io_size": 512, "id_iolimit_physical_sector_size": 512, "id_iolimit_logical_sector_size": 512, "id_part_entry_scheme": "dos", "id_part_entry_type": "0x8e", "id_part_entry_number": 2, "id_part_entry_offset": 2099200, "id_part_entry_size": 39843840, "id_part_entry_disk": "8:0" } ] $ sudo blkid -ip /dev/sda1 | jc --blkid -p -r [ { "devname": "/dev/sda1", "uuid": "05d927bb-5875-49e3-ada1-7f46cb31c932", "type": "xfs", "usage": "filesystem", "minimum_io_size": "512", "physical_sector_size": "512", "logical_sector_size": "512", "part_entry_scheme": "dos", "part_entry_type": "0x83", "part_entry_flags": "0x80", "part_entry_number": "1", "part_entry_offset": "2048", "part_entry_size": "2097152", "part_entry_disk": "8:0" } ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux Version 1.5 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/cksum.md000066400000000000000000000026721415226333200162620ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.cksum jc - JSON CLI output utility `cksum` command output parser This parser works with the following checksum calculation utilities: - `sum` - `cksum` Usage (cli): $ cksum file.txt | jc --cksum or $ jc cksum file.txt Usage (module): import jc.parsers.cksum result = jc.parsers.cksum.parse(cksum_command_output) Schema: [ { "filename": string, "checksum": integer, "blocks": integer } ] Examples: $ cksum * | jc --cksum -p [ { "filename": "__init__.py", "checksum": 4294967295, "blocks": 0 }, { "filename": "airport.py", "checksum": 2208551092, "blocks": 3745 }, { "filename": "airport_s.py", "checksum": 1113817598, "blocks": 4572 }, ... ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux, darwin, cygwin, aix, freebsd Version 1.3 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/crontab.md000066400000000000000000000100351415226333200165600ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.crontab jc - JSON CLI output utility `crontab -l` command output and crontab file parser Supports `crontab -l` command output and crontab files. Usage (cli): $ crontab -l | jc --crontab or $ jc crontab -l Usage (module): import jc.parsers.crontab result = jc.parsers.crontab.parse(crontab_output) Schema: { "variables": [ "name": string, "value": string ], "schedule": [ { "occurrence" string, "minute": [ string ], "hour": [ string ], "day_of_month": [ string ], "month": [ string ], "day_of_week": [ string ], "occurrence": string, "command": string } ] } Examples: $ crontab -l | jc --crontab -p { "variables": [ { "name": "MAILTO", "value": "root" }, { "name": "PATH", "value": "/sbin:/bin:/usr/sbin:/usr/bin" }, { "name": "SHELL", "value": "/bin/bash" } ], "schedule": [ { "minute": [ "5" ], "hour": [ "10-11", "22" ], "day_of_month": [ "*" ], "month": [ "*" ], "day_of_week": [ "*" ], "command": "/var/www/devdaily.com/bin/mk-new-links.php" }, { "minute": [ "30" ], "hour": [ "4/2" ], "day_of_month": [ "*" ], "month": [ "*" ], "day_of_week": [ "*" ], "command": "/var/www/devdaily.com/bin/create-all-backups.sh" }, { "occurrence": "yearly", "command": "/home/maverick/bin/annual-maintenance" }, { "occurrence": "reboot", "command": "/home/cleanup" }, { "occurrence": "monthly", "command": "/home/maverick/bin/tape-backup" } ] } $ cat /etc/crontab | jc --crontab -p -r { "variables": [ { "name": "MAILTO", "value": "root" }, { "name": "PATH", "value": "/sbin:/bin:/usr/sbin:/usr/bin" }, { "name": "SHELL", "value": "/bin/bash" } ], "schedule": [ { "minute": "5", "hour": "10-11,22", "day_of_month": "*", "month": "*", "day_of_week": "*", "command": "/var/www/devdaily.com/bin/mk-new-links.php" }, { "minute": "30", "hour": "4/2", "day_of_month": "*", "month": "*", "day_of_week": "*", "command": "/var/www/devdaily.com/bin/create-all-backups.sh" }, { "occurrence": "yearly", "command": "/home/maverick/bin/annual-maintenance" }, { "occurrence": "reboot", "command": "/home/cleanup" }, { "occurrence": "monthly", "command": "/home/maverick/bin/tape-backup" } ] } ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: Dictionary. Raw or processed structured data. ## Parser Information Compatibility: linux, darwin, aix, freebsd Version 1.6 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/crontab_u.md000066400000000000000000000104131415226333200171040ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.crontab_u jc - JSON CLI output utility `crontab -l` command output and crontab file parser This version of the `crontab -l` parser supports output that contains user information for processes. Usage (cli): $ crontab -l | jc --crontab-u Usage (module): import jc.parsers.crontab_u result = jc.parsers.crontab_u.parse(crontab_u_output) Schema: { "variables": [ "name": string, "value": string ], "schedule": [ { "occurrence" string, "minute": [ string ], "hour": [ string ], "day_of_month": [ string ], "month": [ string ], "day_of_week": [ string ], "occurrence": string, "user": string, "command": string } ] } Examples: $ cat /etc/crontab | jc --crontab-u -p { "variables": [ { "name": "PATH", "value": "/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin" }, { "name": "SHELL", "value": "/bin/sh" } ], "schedule": [ { "minute": [ "25" ], "hour": [ "6" ], "day_of_month": [ "*" ], "month": [ "*" ], "day_of_week": [ "*" ], "user": "root", "command": "test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )" }, { "minute": [ "47" ], "hour": [ "6" ], "day_of_month": [ "*" ], "month": [ "*" ], "day_of_week": [ "7" ], "user": "root", "command": "test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )" }, { "minute": [ "52" ], "hour": [ "6" ], "day_of_month": [ "1" ], "month": [ "*" ], "day_of_week": [ "*" ], "user": "root", "command": "test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )" } ] } $ cat /etc/crontab | jc --crontab-u -p -r { "variables": [ { "name": "PATH", "value": "/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin" }, { "name": "SHELL", "value": "/bin/sh" } ], "schedule": [ { "minute": "25", "hour": "6", "day_of_month": "*", "month": "*", "day_of_week": "*", "user": "root", "command": "test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )" }, { "minute": "47", "hour": "6", "day_of_month": "*", "month": "*", "day_of_week": "7", "user": "root", "command": "test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )" }, { "minute": "52", "hour": "6", "day_of_month": "1", "month": "*", "day_of_week": "*", "user": "root", "command": "test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )" } ] } ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: Dictionary. Raw or processed structured data. ## Parser Information Compatibility: linux, darwin, aix, freebsd Version 1.7 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/csv.md000066400000000000000000000041651415226333200157320ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.csv jc - JSON CLI output utility `csv` file parser The `csv` parser will attempt to automatically detect the delimiter character. If the delimiter cannot be detected it will default to comma. The first row of the file must be a header row. Usage (cli): $ cat file.csv | jc --csv Usage (module): import jc.parsers.csv result = jc.parsers.csv.parse(csv_output) Schema: csv file converted to a Dictionary: https://docs.python.org/3/library/csv.html [ { "column_name1": string, "column_name2": string } ] Examples: $ cat homes.csv "Sell", "List", "Living", "Rooms", "Beds", "Baths", "Age", "Acres", "Taxes" 142, 160, 28, 10, 5, 3, 60, 0.28, 3167 175, 180, 18, 8, 4, 1, 12, 0.43, 4033 129, 132, 13, 6, 3, 1, 41, 0.33, 1471 ... $ cat homes.csv | jc --csv -p [ { "Sell": "142", "List": "160", "Living": "28", "Rooms": "10", "Beds": "5", "Baths": "3", "Age": "60", "Acres": "0.28", "Taxes": "3167" }, { "Sell": "175", "List": "180", "Living": "18", "Rooms": "8", "Beds": "4", "Baths": "1", "Age": "12", "Acres": "0.43", "Taxes": "4033" }, { "Sell": "129", "List": "132", "Living": "13", "Rooms": "6", "Beds": "3", "Baths": "1", "Age": "41", "Acres": "0.33", "Taxes": "1471" }, ... ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux, darwin, cygwin, win32, aix, freebsd Version 1.3 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/csv_s.md000066400000000000000000000051761415226333200162570ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.csv_s jc - JSON CLI output utility `csv` file streaming parser > This streaming parser outputs JSON Lines The `csv` streaming parser will attempt to automatically detect the delimiter character. If the delimiter cannot be detected it will default to comma. The first row of the file must be a header row. Note: The first 100 rows are read into memory to enable delimiter detection, then the rest of the rows are loaded lazily. Usage (cli): $ cat file.csv | jc --csv-s Usage (module): import jc.parsers.csv_s result = jc.parsers.csv_s.parse(csv_output.splitlines()) # result is an iterable object for item in result: # do something Schema: csv file converted to a Dictionary: https://docs.python.org/3/library/csv.html { "column_name1": string, "column_name2": string, "_jc_meta": # This object only exists if using -qq or ignore_exceptions=True { "success": booean, # true if successfully parsed, false if error "error": string, # exists if "success" is false "line": string # exists if "success" is false } } Examples: $ cat homes.csv "Sell", "List", "Living", "Rooms", "Beds", "Baths", "Age", "Acres", "Taxes" 142, 160, 28, 10, 5, 3, 60, 0.28, 3167 175, 180, 18, 8, 4, 1, 12, 0.43, 4033 129, 132, 13, 6, 3, 1, 41, 0.33, 1471 ... $ cat homes.csv | jc --csv-s {"Sell":"142","List":"160","Living":"28","Rooms":"10","Beds":"5","Baths":"3","Age":"60","Acres":"0.28","Taxes":"3167"} {"Sell":"175","List":"180","Living":"18","Rooms":"8","Beds":"4","Baths":"1","Age":"12","Acres":"0.43","Taxes":"4033"} {"Sell":"129","List":"132","Living":"13","Rooms":"6","Beds":"3","Baths":"1","Age":"41","Acres":"0.33","Taxes":"1471"} ... ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False, ignore_exceptions=False) ``` Main text parsing generator function. Returns an iterator object. Parameters: data: (iterable) line-based text data to parse (e.g. sys.stdin or str.splitlines()) raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True ignore_exceptions: (boolean) ignore parsing exceptions if True Yields: Dictionary. Raw or processed structured data. Returns: Iterator object ## Parser Information Compatibility: linux, darwin, cygwin, win32, aix, freebsd Version 1.1 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/date.md000066400000000000000000000046401415226333200160520ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.date jc - JSON CLI output utility `date` command output parser The `epoch` calculated timestamp field is naive. (i.e. based on the local time of the system the parser is run on) The `epoch_utc` calculated timestamp field is timezone-aware and is only available if the timezone field is UTC. Usage (cli): $ date | jc --date or $ jc date Usage (module): import jc.parsers.date result = jc.parsers.date.parse(date_command_output) Schema: { "year": integer, "month": string, "month_num": integer, "day": integer, "weekday": string, "weekday_num": integer, "hour": integer, "hour_24": integer, "minute": integer, "second": integer, "period": string, "timezone": string, "utc_offset": string, # null if timezone field is not UTC "day_of_year": integer, "week_of_year": integer, "iso": string, "epoch": integer, # naive timestamp "epoch_utc": integer, # timezone-aware timestamp. Only available if timezone field is UTC "timezone_aware": boolean # if true, all fields are correctly based on UTC } Examples: $ date | jc --date -p { "year": 2021, "month": "Mar", "month_num": 3, "day": 25, "weekday": "Thu", "weekday_num": 4, "hour": 2, "hour_24": 2, "minute": 2, "second": 26, "period": "AM", "timezone": "UTC", "utc_offset": "+0000", "day_of_year": 84, "week_of_year": 12, "iso": "2021-03-25T02:02:26+00:00", "epoch": 1616662946, "epoch_utc": 1616637746, "timezone_aware": true } ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: Dictionary. Raw or processed structured data. ## Parser Information Compatibility: linux, darwin, freebsd Version 2.2 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/df.md000066400000000000000000000047551415226333200155350ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.df jc - JSON CLI output utility `df` command output parser Usage (cli): $ df | jc --df or $ jc df Usage (module): import jc.parsers.df result = jc.parsers.df.parse(df_command_output) Schema: [ { "filesystem": string, "size": string, "1k_blocks": integer, "512_blocks": integer, "used": integer, "available": integer, "capacity_percent": integer, "ifree": integer, "iused": integer, "use_percent": integer, "iused_percent": integer, "mounted_on": string } ] Examples: $ df | jc --df -p [ { "filesystem": "devtmpfs", "1k_blocks": 1918820, "used": 0, "available": 1918820, "use_percent": 0, "mounted_on": "/dev" }, { "filesystem": "tmpfs", "1k_blocks": 1930668, "used": 0, "available": 1930668, "use_percent": 0, "mounted_on": "/dev/shm" }, { "filesystem": "tmpfs", "1k_blocks": 1930668, "used": 11800, "available": 1918868, "use_percent": 1, "mounted_on": "/run" }, ... ] $ df | jc --df -p -r [ { "filesystem": "devtmpfs", "1k_blocks": "1918820", "used": "0", "available": "1918820", "use_percent": "0%", "mounted_on": "/dev" }, { "filesystem": "tmpfs", "1k_blocks": "1930668", "used": "0", "available": "1930668", "use_percent": "0%", "mounted_on": "/dev/shm" }, { "filesystem": "tmpfs", "1k_blocks": "1930668", "used": "11800", "available": "1918868", "use_percent": "1%", "mounted_on": "/run" }, ... ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux, darwin, freebsd Version 1.9 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/dig.md000066400000000000000000000203321415226333200156740ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.dig jc - JSON CLI output utility `dig` command output parser Options supported: - `+noall +answer` options are supported in cases where only the answer information is desired. - `+axfr` option is supported on its own The `when_epoch` calculated timestamp field is naive (i.e. based on the local time of the system the parser is run on) The `when_epoch_utc` calculated timestamp field is timezone-aware and is only available if the timezone field is UTC. Usage (cli): $ dig example.com | jc --dig or $ jc dig example.com Usage (module): import jc.parsers.dig result = jc.parsers.dig.parse(dig_command_output) Schema: [ { "id": integer, "opcode": string, "status": string, "flags": [ string ], "query_num": integer, "answer_num": integer, "authority_num": integer, "additional_num": integer, "axfr": [ { "name": string, "class": string, "type": string, "ttl": integer, "data": string } ], "opt_pseudosection": { "edns": { "version": integer, "flags": [ string ], "udp": integer }, "cookie": string }, "question": { "name": string, "class": string, "type": string }, "answer": [ { "name": string, "class": string, "type": string, "ttl": integer, "data": string } ], "additional": [ { "name": string, "class": string, "type": string, "ttl": integer, "data": string } ], "authority": [ { "name": string, "class": string, "type": string, "ttl": integer, "data": string } ], "query_size": integer, "query_time": integer, # in msec "server": string, "when": string, "when_epoch": integer, # naive timestamp if when field is parsable, else null "when_epoch_utc": integer, # timezone aware timestamp availabe for UTC, else null "rcvd": integer "size": string } ] Examples: $ dig example.com | jc --dig -p [ { "id": 2951, "opcode": "QUERY", "status": "NOERROR", "flags": [ "qr", "rd", "ra" ], "query_num": 1, "answer_num": 1, "authority_num": 0, "additional_num": 1, "opt_pseudosection": { "edns": { "version": 0, "flags": [], "udp": 4096 } }, "question": { "name": "example.com.", "class": "IN", "type": "A" }, "answer": [ { "name": "example.com.", "class": "IN", "type": "A", "ttl": 39302, "data": "93.184.216.34" } ], "query_time": 49, "server": "2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)", "when": "Fri Apr 16 16:05:10 PDT 2021", "rcvd": 56, "when_epoch": 1618614310, "when_epoch_utc": null } ] $ dig cnn.com www.cnn.com @205.251.194.64 | jc --dig -p -r [ { "id": "46052", "opcode": "QUERY", "status": "NOERROR", "flags": [ "qr", "rd", "ra" ], "query_num": "1", "answer_num": "1", "authority_num": "0", "additional_num": "1", "opt_pseudosection": { "edns": { "version": "0", "flags": [], "udp": "4096" } }, "question": { "name": "example.com.", "class": "IN", "type": "A" }, "answer": [ { "name": "example.com.", "class": "IN", "type": "A", "ttl": "40426", "data": "93.184.216.34" } ], "query_time": "48 msec", "server": "2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)", "when": "Fri Apr 16 16:06:12 PDT 2021", "rcvd": "56" } ] $ dig -x 1.1.1.1 | jc --dig -p [ { "id": 20785, "opcode": "QUERY", "status": "NOERROR", "flags": [ "qr", "rd", "ra" ], "query_num": 1, "answer_num": 1, "authority_num": 0, "additional_num": 1, "opt_pseudosection": { "edns": { "version": 0, "flags": [], "udp": 4096 } }, "question": { "name": "1.1.1.1.in-addr.arpa.", "class": "IN", "type": "PTR" }, "answer": [ { "name": "1.1.1.1.in-addr.arpa.", "class": "IN", "type": "PTR", "ttl": 1800, "data": "one.one.one.one." } ], "query_time": 40, "server": "2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)", "when": "Sat Apr 17 14:50:50 PDT 2021", "rcvd": 78, "when_epoch": 1618696250, "when_epoch_utc": null } ] $ dig -x 1.1.1.1 | jc --dig -p -r [ { "id": "32644", "opcode": "QUERY", "status": "NOERROR", "flags": [ "qr", "rd", "ra" ], "query_num": "1", "answer_num": "1", "authority_num": "0", "additional_num": "1", "opt_pseudosection": { "edns": { "version": "0", "flags": [], "udp": "4096" } }, "question": { "name": "1.1.1.1.in-addr.arpa.", "class": "IN", "type": "PTR" }, "answer": [ { "name": "1.1.1.1.in-addr.arpa.", "class": "IN", "type": "PTR", "ttl": "1800", "data": "one.one.one.one." } ], "query_time": "52 msec", "server": "2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)", "when": "Sat Apr 17 14:51:46 PDT 2021", "rcvd": "78" } ] $ dig +noall +answer cnn.com | jc --dig -p [ { "answer": [ { "name": "cnn.com.", "class": "IN", "type": "A", "ttl": 60, "data": "151.101.193.67" }, { "name": "cnn.com.", "class": "IN", "type": "A", "ttl": 60, "data": "151.101.65.67" }, { "name": "cnn.com.", "class": "IN", "type": "A", "ttl": 60, "data": "151.101.1.67" }, { "name": "cnn.com.", "class": "IN", "type": "A", "ttl": 60, "data": "151.101.129.67" } ] } ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux, aix, freebsd, darwin, win32, cygwin Version 2.2 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/dir.md000066400000000000000000000061671415226333200157210ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.dir jc - JSON CLI output utility `dir` command output parser Options supported: - `/T timefield` - `/O sortorder` - `/C, /-C` - `/S` The "Magic" syntax is not supported since the `dir` command is a shell builtin. The `epoch` calculated timestamp field is naive (i.e. based on the local time of the system the parser is run on) Usage (cli): C:> dir | jc --dir Usage (module): import jc.parsers.dir result = jc.parsers.dir.parse(dir_command_output) Schema: [ { "date": string, "time": string, "epoch": integer, # naive timestamp "dir": boolean, "size": integer, "filename: string, "parent": string } ] Examples: C:> dir | jc --dir -p [ { "date": "03/24/2021", "time": "03:15 PM", "dir": true, "size": null, "filename": ".", "parent": "C:\Program Files\Internet Explorer", "epoch": 1616624100 }, { "date": "03/24/2021", "time": "03:15 PM", "dir": true, "size": null, "filename": "..", "parent": "C:\Program Files\Internet Explorer", "epoch": 1616624100 }, { "date": "12/07/2019", "time": "02:49 AM", "dir": true, "size": null, "filename": "en-US", "parent": "C:\Program Files\Internet Explorer", "epoch": 1575715740 }, { "date": "12/07/2019", "time": "02:09 AM", "dir": false, "size": 54784, "filename": "ExtExport.exe", "parent": "C:\Program Files\Internet Explorer", "epoch": 1575713340 }, ... ] C:> dir | jc --dir -p -r [ { "date": "03/24/2021", "time": "03:15 PM", "dir": true, "size": null, "filename": ".", "parent": "C:\Program Files\Internet Explorer" }, { "date": "03/24/2021", "time": "03:15 PM", "dir": true, "size": null, "filename": "..", "parent": "C:\Program Files\Internet Explorer" }, { "date": "12/07/2019", "time": "02:49 AM", "dir": true, "size": null, "filename": "en-US", "parent": "C:\Program Files\Internet Explorer" }, { "date": "12/07/2019", "time": "02:09 AM", "dir": false, "size": "54,784", "filename": "ExtExport.exe", "parent": "C:\Program Files\Internet Explorer" }, ... ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: win32 Version 1.4 by Rasheed Elsaleh (rasheed@rebelliondefense.com) jc-1.17.3/docs/parsers/dmidecode.md000066400000000000000000000103271415226333200170510ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.dmidecode jc - JSON CLI output utility `dmidecode` command output parser Usage (cli): $ dmidecode | jc --dmidecode or $ jc dmidecode Usage (module): import jc.parsers.dmidecode result = jc.parsers.dmidecode.parse(dmidecode_command_output) Schema: [ { "handle": string, "type": integer, "bytes": integer, "description": string, "values": { (null if empty) "lowercase_no_spaces_keys": string, "multiline_key_values": [ string, ] } } ] Examples: # dmidecode | jc --dmidecode -p [ { "handle": "0x0000", "type": 0, "bytes": 24, "description": "BIOS Information", "values": { "vendor": "Phoenix Technologies LTD", "version": "6.00", "release_date": "04/13/2018", "address": "0xEA490", "runtime_size": "88944 bytes", "rom_size": "64 kB", "characteristics": [ "ISA is supported", "PCI is supported", "PC Card (PCMCIA) is supported", "PNP is supported", "APM is supported", "BIOS is upgradeable", "BIOS shadowing is allowed", "ESCD support is available", "Boot from CD is supported", "Selectable boot is supported", "EDD is supported", "Print screen service is supported (int 5h)", "8042 keyboard services are supported (int 9h)", "Serial services are supported (int 14h)", "Printer services are supported (int 17h)", "CGA/mono video services are supported (int 10h)", "ACPI is supported", "Smart battery is supported", "BIOS boot specification is supported", "Function key-initiated network boot is supported", "Targeted content distribution is supported" ], "bios_revision": "4.6", "firmware_revision": "0.0" } }, ... ] # dmidecode | jc --dmidecode -p -r [ { "handle": "0x0000", "type": "0", "bytes": "24", "description": "BIOS Information", "values": { "vendor": "Phoenix Technologies LTD", "version": "6.00", "release_date": "04/13/2018", "address": "0xEA490", "runtime_size": "88944 bytes", "rom_size": "64 kB", "characteristics": [ "ISA is supported", "PCI is supported", "PC Card (PCMCIA) is supported", "PNP is supported", "APM is supported", "BIOS is upgradeable", "BIOS shadowing is allowed", "ESCD support is available", "Boot from CD is supported", "Selectable boot is supported", "EDD is supported", "Print screen service is supported (int 5h)", "8042 keyboard services are supported (int 9h)", "Serial services are supported (int 14h)", "Printer services are supported (int 17h)", "CGA/mono video services are supported (int 10h)", "ACPI is supported", "Smart battery is supported", "BIOS boot specification is supported", "Function key-initiated network boot is supported", "Targeted content distribution is supported" ], "bios_revision": "4.6", "firmware_revision": "0.0" } }, ... ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux Version 1.4 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/dpkg_l.md000066400000000000000000000072771415226333200164060ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.dpkg_l jc - JSON CLI output utility `dpkg -l` command output parser Set the `COLUMNS` environment variable to a large value to avoid field truncation. For example: $ COLUMNS=500 dpkg -l | jc --dpkg-l Usage (cli): $ dpkg -l | jc --dpkg-l or $ jc dpkg -l Usage (module): import jc.parsers.dpkg_l result = jc.parsers.dpkg_l.parse(dpkg_command_output) Schema: [ { "codes": string, "name": string, "version": string, "architecture": string, "description": string, "desired": string, "status": string, "error": string } ] Examples: $ dpkg -l | jc --dpkg-l -p [ { "codes": "ii", "name": "accountsservice", "version": "0.6.45-1ubuntu1.3", "architecture": "amd64", "description": "query and manipulate user account information", "desired": "install", "status": "installed" }, { "codes": "rc", "name": "acl", "version": "2.2.52-3build1", "architecture": "amd64", "description": "Access control list utilities", "desired": "remove", "status": "config-files" }, { "codes": "uWR", "name": "acpi", "version": "1.7-1.1", "architecture": "amd64", "description": "displays information on ACPI devices", "desired": "unknown", "status": "trigger await", "error": "reinstall required" }, { "codes": "rh", "name": "acpid", "version": "1:2.0.28-1ubuntu1", "architecture": "amd64", "description": "Advanced Configuration and Power Interface event daemon", "desired": "remove", "status": "half installed" }, { "codes": "pn", "name": "adduser", "version": "3.116ubuntu1", "architecture": "all", "description": "add and remove users and groups", "desired": "purge", "status": "not installed" }, ... ] $ dpkg -l | jc --dpkg-l -p -r [ { "codes": "ii", "name": "accountsservice", "version": "0.6.45-1ubuntu1.3", "architecture": "amd64", "description": "query and manipulate user account information" }, { "codes": "rc", "name": "acl", "version": "2.2.52-3build1", "architecture": "amd64", "description": "Access control list utilities" }, { "codes": "uWR", "name": "acpi", "version": "1.7-1.1", "architecture": "amd64", "description": "displays information on ACPI devices" }, { "codes": "rh", "name": "acpid", "version": "1:2.0.28-1ubuntu1", "architecture": "amd64", "description": "Advanced Configuration and Power Interface event daemon" }, { "codes": "pn", "name": "adduser", "version": "3.116ubuntu1", "architecture": "all", "description": "add and remove users and groups" }, ... ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux Version 1.2 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/du.md000066400000000000000000000050171415226333200155440ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.du jc - JSON CLI output utility `du` command output parser Usage (cli): $ du | jc --du or $ jc du Usage (module): import jc.parsers.du result = jc.parsers.du.parse(du_command_output) Schema: [ { "size": integer, "name": string } ] Examples: $ du /usr | jc --du -p [ { "size": 104608, "name": "/usr/bin" }, { "size": 56, "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/_CodeSignature" }, { "size": 0, "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/Resources/Firmware/usr/local/standalone" }, { "size": 0, "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/Resources/Firmware/usr/local" }, { "size": 0, "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/Resources/Firmware/usr" }, { "size": 1008, "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/Resources/Firmware/dfu" }, ... ] $ du /usr | jc --du -p -r [ { "size": "104608", "name": "/usr/bin" }, { "size": "56", "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/_CodeSignature" }, { "size": "0", "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/Resources/Firmware/usr/local/standalone" }, { "size": "0", "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/Resources/Firmware/usr/local" }, { "size": "0", "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/Resources/Firmware/usr" }, { "size": "1008", "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/Resources/Firmware/dfu" }, ... ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux, darwin, aix, freebsd Version 1.5 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/env.md000066400000000000000000000036171415226333200157300ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.env jc - JSON CLI output utility `env` and `printenv` command output parser This parser will output a list of dictionaries each containing `name` and `value` keys. If you would like a simple dictionary output, then use the `-r` command-line option or the `raw=True` argument in the `parse()` function. Usage (cli): $ env | jc --env or $ jc env Usage (module): import jc.parsers.env result = jc.parsers.env.parse(env_command_output) Schema: [ { "name": string, "value": string } ] Examples: $ env | jc --env -p [ { "name": "XDG_SESSION_ID", "value": "1" }, { "name": "HOSTNAME", "value": "localhost.localdomain" }, { "name": "TERM", "value": "vt220" }, { "name": "SHELL", "value": "/bin/bash" }, { "name": "HISTSIZE", "value": "1000" }, ... ] $ env | jc --env -p -r { "TERM": "xterm-256color", "SHELL": "/bin/bash", "USER": "root", "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", "PWD": "/root", "LANG": "en_US.UTF-8", "HOME": "/root", "LOGNAME": "root", "_": "/usr/bin/env" } ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: Dictionary of raw structured data or List of Dictionaries of processed structured data ## Parser Information Compatibility: linux, darwin, cygwin, win32, aix, freebsd Version 1.4 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/file.md000066400000000000000000000033001415226333200160440ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.file jc - JSON CLI output utility `file` command output parser Usage (cli): $ file * | jc --file or $ jc file * Usage (module): import jc.parsers.file result = jc.parsers.file.parse(file_command_output) Schema: [ { "filename": string, "type ": string } ] Examples: $ file * | jc --file -p [ { "filename": "Applications", "type": "directory" }, { "filename": "another file with spaces", "type": "empty" }, { "filename": "argstest.py", "type": "Python script text executable, ASCII text" }, { "filename": "blkid-p.out", "type": "ASCII text" }, { "filename": "blkid-pi.out", "type": "ASCII text, with very long lines" }, { "filename": "cd_catalog.xml", "type": "XML 1.0 document text, ASCII text, with CRLF line terminators" }, { "filename": "centosserial.sh", "type": "Bourne-Again shell script text executable, UTF-8 Unicode text" }, ... ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux, aix, freebsd, darwin Version 1.5 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/finger.md000066400000000000000000000047201415226333200164060ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.finger jc - JSON CLI output utility `finger` command output parser Supports `-s` output option. Does not support the `-l` detail option. Usage (cli): $ finger | jc --finger or $ jc finger Usage (module): import jc.parsers.finger result = jc.parsers.finger.parse(finger_command_output) Schema: [ { "login": string, "name": string, "tty": string, "idle": string, # null if empty "login_time": string, "details": string, "tty_writeable": boolean, "idle_minutes": integer, "idle_hours": integer, "idle_days": integer, "total_idle_minutes": integer } ] Examples: $ finger | jc --finger -p [ { "login": "jdoe", "name": "John Doe", "tty": "tty1", "idle": "14d", "login_time": "Mar 22 21:14", "tty_writeable": false, "idle_minutes": 0, "idle_hours": 0, "idle_days": 14, "total_idle_minutes": 20160 }, { "login": "jdoe", "name": "John Doe", "tty": "pts/0", "idle": null, "login_time": "Apr 5 15:33", "details": "(192.168.1.22)", "tty_writeable": true, "idle_minutes": 0, "idle_hours": 0, "idle_days": 0, "total_idle_minutes": 0 }, ... ] $ finger | jc --finger -p -r [ { "login": "jdoe", "name": "John Doe", "tty": "*tty1", "idle": "14d", "login_time": "Mar 22 21:14" }, { "login": "jdoe", "name": "John Doe", "tty": "pts/0", "idle": null, "login_time": "Apr 5 15:33", "details": "(192.168.1.22)" }, ... ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux, darwin, cygwin, freebsd Version 1.2 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/free.md000066400000000000000000000034051415226333200160540ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.free jc - JSON CLI output utility `free` command output parser Usage (cli): $ free | jc --free or $ jc free Usage (module): import jc.parsers.free result = jc.parsers.free.parse(free_command_output) Schema: [ { "type": string, "total": integer, "used": integer, "free": integer, "shared": integer, "buff_cache": integer, "available": integer } ] Examples: $ free | jc --free -p [ { "type": "Mem", "total": 3861340, "used": 220508, "free": 3381972, "shared": 11800, "buff_cache": 258860, "available": 3397784 }, { "type": "Swap", "total": 2097148, "used": 0, "free": 2097148 } ] $ free | jc --free -p -r [ { "type": "Mem", "total": "2017300", "used": "213104", "free": "1148452", "shared": "1176", "buff_cache": "655744", "available": "1622204" }, { "type": "Swap", "total": "2097148", "used": "0", "free": "2097148" } ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux Version 1.5 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/fstab.md000066400000000000000000000045001415226333200162270ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.fstab jc - JSON CLI output utility `fstab` file parser Usage (cli): $ cat /etc/fstab | jc --fstab Usage (module): import jc.parsers.fstab result = jc.parsers.fstab.parse(fstab_command_output) Schema: [ { "fs_spec": string, "fs_file": string, "fs_vfstype": string, "fs_mntops": string, "fs_freq": integer, "fs_passno": integer } ] Examples: $ cat /etc/fstab | jc --fstab -p [ { "fs_spec": "/dev/mapper/centos-root", "fs_file": "/", "fs_vfstype": "xfs", "fs_mntops": "defaults", "fs_freq": 0, "fs_passno": 0 }, { "fs_spec": "UUID=05d927bb-5875-49e3-ada1-7f46cb31c932", "fs_file": "/boot", "fs_vfstype": "xfs", "fs_mntops": "defaults", "fs_freq": 0, "fs_passno": 0 }, { "fs_spec": "/dev/mapper/centos-swap", "fs_file": "swap", "fs_vfstype": "swap", "fs_mntops": "defaults", "fs_freq": 0, "fs_passno": 0 } ] $ cat /etc/fstab | jc --fstab -p -r [ { "fs_spec": "/dev/mapper/centos-root", "fs_file": "/", "fs_vfstype": "xfs", "fs_mntops": "defaults", "fs_freq": "0", "fs_passno": "0" }, { "fs_spec": "UUID=05d927bb-5875-49e3-ada1-7f46cb31c932", "fs_file": "/boot", "fs_vfstype": "xfs", "fs_mntops": "defaults", "fs_freq": "0", "fs_passno": "0" }, { "fs_spec": "/dev/mapper/centos-swap", "fs_file": "swap", "fs_vfstype": "swap", "fs_mntops": "defaults", "fs_freq": "0", "fs_passno": "0" } ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux, freebsd Version 1.6 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/group.md000066400000000000000000000046131415226333200162710ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.group jc - JSON CLI output utility `/etc/group` file parser Usage (cli): $ cat /etc/group | jc --group Usage (module): import jc.parsers.group result = jc.parsers.group.parse(group_file_output) Schema: [ { "group_name": string, "password": string, "gid": integer, "members": [ string ] } ] Examples: $ cat /etc/group | jc --group -p [ { "group_name": "nobody", "password": "*", "gid": -2, "members": [] }, { "group_name": "nogroup", "password": "*", "gid": -1, "members": [] }, { "group_name": "wheel", "password": "*", "gid": 0, "members": [ "root" ] }, { "group_name": "certusers", "password": "*", "gid": 29, "members": [ "root", "_jabber", "_postfix", "_cyrus", "_calendar", "_dovecot" ] }, ... ] $ cat /etc/group | jc --group -p -r [ { "group_name": "nobody", "password": "*", "gid": "-2", "members": [ "" ] }, { "group_name": "nogroup", "password": "*", "gid": "-1", "members": [ "" ] }, { "group_name": "wheel", "password": "*", "gid": "0", "members": [ "root" ] }, { "group_name": "certusers", "password": "*", "gid": "29", "members": [ "root", "_jabber", "_postfix", "_cyrus", "_calendar", "_dovecot" ] }, ... ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux, darwin, aix, freebsd Version 1.4 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/gshadow.md000066400000000000000000000035141415226333200165700ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.gshadow jc - JSON CLI output utility `/etc/gshadow` file parser Usage (cli): $ cat /etc/gshadow | jc --gshadow Usage (module): import jc.parsers.gshadow result = jc.parsers.gshadow.parse(gshadow_file_output) Schema: [ { "group_name": string, "password": string, "administrators": [ string ], "members": [ string ] } ] Examples: $ cat /etc/gshadow | jc --gshadow -p [ { "group_name": "root", "password": "*", "administrators": [], "members": [] }, { "group_name": "adm", "password": "*", "administrators": [], "members": [ "syslog", "joeuser" ] }, ... ] $ cat /etc/gshadow | jc --gshadow -p -r [ { "group_name": "root", "password": "*", "administrators": [ "" ], "members": [ "" ] }, { "group_name": "adm", "password": "*", "administrators": [ "" ], "members": [ "syslog", "joeuser" ] }, ... ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux, aix, freebsd Version 1.3 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/hash.md000066400000000000000000000021101415226333200160460ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.hash jc - JSON CLI output utility `hash` command output parser Usage (cli): $ hash | jc --hash Usage (module): import jc.parsers.hash result = jc.parsers.hash.parse(hash_command_output) Schema: [ { "command": string, "hits": integer } ] Examples: $ hash | jc --hash -p [ { "hits": 2, "command": "/bin/cat" }, { "hits": 1, "command": "/bin/ls" } ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux, darwin, cygwin, aix, freebsd Version 1.3 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/hashsum.md000066400000000000000000000035151415226333200166050ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.hashsum jc - JSON CLI output utility `hash sum` command output parser This parser works with the following hash calculation utilities: - `md5` - `md5sum` - `shasum` - `sha1sum` - `sha224sum` - `sha256sum` - `sha384sum` - `sha512sum` Usage (cli): $ md5sum file.txt | jc --hashsum or $ jc md5sum file.txt Usage (module): import jc.parsers.hashsum result = jc.parsers.hashsum.parse(md5sum_command_output) Schema: [ { "filename": string, "hash": string, } ] Examples: $ md5sum * | jc --hashsum -p [ { "filename": "devtoolset-3-gcc-4.9.2-6.el7.x86_64.rpm", "hash": "65fc958c1add637ec23c4b137aecf3d3" }, { "filename": "digout", "hash": "5b9312ee5aff080927753c63a347707d" }, { "filename": "dmidecode.out", "hash": "716fd11c2ac00db109281f7110b8fb9d" }, { "filename": "file with spaces in the name", "hash": "d41d8cd98f00b204e9800998ecf8427e" }, { "filename": "id-centos.out", "hash": "4295be239a14ad77ef3253103de976d2" }, { "filename": "ifcfg.json", "hash": "01fda0d9ba9a75618b072e64ff512b43" }, ... ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux, darwin, cygwin, aix, freebsd Version 1.2 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/hciconfig.md000066400000000000000000000167341415226333200170750ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.hciconfig jc - JSON CLI output utility `hciconfig` command output parser Usage (cli): $ hciconfig | jc --hciconfig or $ jc hciconfig Usage (module): import jc.parsers.hciconfig result = jc.parsers.hciconfig.parse(hciconfig_command_output) Schema: [ { "device": string, "type": string, "bus": string, "bd_address": string, "acl_mtu": integer, "acl_mtu_packets": integer, "sco_mtu": integer, "sco_mtu_packets": integer, "state": [ string ], "rx_bytes": integer, "rx_acl": integer, "rx_sco": integer, "rx_events": integer, "rx_errors": integer, "tx_bytes": integer, "tx_acl": integer, "tx_sco": integer, "tx_commands": integer, "tx_errors": integer, "features": [ string ], "packet_type": [ string ], "link_policy": [ string ], "link_mode": [ string ], "name": string, "class": string, "service_classes": [ string # 'Unspecified' is null ], "device_class": string, "hci_version": string, "hci_revision": string, "lmp_version": string, "lmp_subversion": string, "manufacturer": string } ] Examples: $ hciconfig -a | jc --hciconfig -p [ { "device": "hci0", "type": "Primary", "bus": "USB", "bd_address": "00:1A:7D:DA:71:13", "acl_mtu": 310, "acl_mtu_packets": 10, "sco_mtu": 64, "sco_mtu_packets": 8, "state": [ "UP", "RUNNING" ], "rx_bytes": 13905869, "rx_acl": 0, "rx_sco": 0, "rx_events": 393300, "rx_errors": 0, "tx_bytes": 62629, "tx_acl": 0, "tx_sco": 0, "tx_commands": 3893, "tx_errors": 0, "features": [ "0xff", "0xff", "0x8f", "0xfe", "0xdb", "0xff", "0x5b", "0x87" ], "packet_type": [ "DM1", "DM3", "DM5", "DH1", "DH3", "DH5", "HV1", "HV2", "HV3" ], "link_policy": [ "RSWITCH", "HOLD", "SNIFF", "PARK" ], "link_mode": [ "SLAVE", "ACCEPT" ], "name": "CSR8510 A10", "class": "0x000000", "service_classes": null, "device_class": "Miscellaneous", "hci_version": "4.0 (0x6)", "hci_revision": "0x22bb", "lmp_version": "4.0 (0x6)", "lmp_subversion": "0x22bb", "manufacturer": "Cambridge Silicon Radio (10)" }, { "device": "hci1", "type": "Primary", "bus": "USB", "bd_address": "00:1A:7D:DA:71:13", "acl_mtu": 310, "acl_mtu_packets": 10, "sco_mtu": 64, "sco_mtu_packets": 8, "state": [ "DOWN" ], "rx_bytes": 4388363, "rx_acl": 0, "rx_sco": 0, "rx_events": 122021, "rx_errors": 0, "tx_bytes": 52350, "tx_acl": 0, "tx_sco": 0, "tx_commands": 3480, "tx_errors": 2, "features": [ "0xff", "0xff", "0x8f", "0xfe", "0xdb", "0xff", "0x5b", "0x87" ], "packet_type": [ "DM1", "DM3", "DM5", "DH1", "DH3", "DH5", "HV1", "HV2", "HV3" ], "link_policy": [ "RSWITCH", "HOLD", "SNIFF", "PARK" ], "link_mode": [ "SLAVE", "ACCEPT" ] } ] $ hciconfig -a | jc --hciconfig -p -r [ { "device": "hci0", "type": "Primary", "bus": "USB", "bd_address": "00:1A:7D:DA:71:13", "acl_mtu": "310", "acl_mtu_packets": "10", "sco_mtu": "64", "sco_mtu_packets": "8", "state": [ "UP", "RUNNING" ], "rx_bytes": "13905869", "rx_acl": "0", "rx_sco": "0", "rx_events": "393300", "rx_errors": "0", "tx_bytes": "62629", "tx_acl": "0", "tx_sco": "0", "tx_commands": "3893", "tx_errors": "0", "features": [ "0xff", "0xff", "0x8f", "0xfe", "0xdb", "0xff", "0x5b", "0x87" ], "packet_type": [ "DM1", "DM3", "DM5", "DH1", "DH3", "DH5", "HV1", "HV2", "HV3" ], "link_policy": [ "RSWITCH", "HOLD", "SNIFF", "PARK" ], "link_mode": [ "SLAVE", "ACCEPT" ], "name": "CSR8510 A10", "class": "0x000000", "service_classes": [ "Unspecified" ], "device_class": "Miscellaneous", "hci_version": "4.0 (0x6)", "hci_revision": "0x22bb", "lmp_version": "4.0 (0x6)", "lmp_subversion": "0x22bb", "manufacturer": "Cambridge Silicon Radio (10)" }, { "device": "hci1", "type": "Primary", "bus": "USB", "bd_address": "00:1A:7D:DA:71:13", "acl_mtu": "310", "acl_mtu_packets": "10", "sco_mtu": "64", "sco_mtu_packets": "8", "state": [ "DOWN" ], "rx_bytes": "4388363", "rx_acl": "0", "rx_sco": "0", "rx_events": "122021", "rx_errors": "0", "tx_bytes": "52350", "tx_acl": "0", "tx_sco": "0", "tx_commands": "3480", "tx_errors": "2", "features": [ "0xff", "0xff", "0x8f", "0xfe", "0xdb", "0xff", "0x5b", "0x87" ], "packet_type": [ "DM1", "DM3", "DM5", "DH1", "DH3", "DH5", "HV1", "HV2", "HV3" ], "link_policy": [ "RSWITCH", "HOLD", "SNIFF", "PARK" ], "link_mode": [ "SLAVE", "ACCEPT" ] } ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux Version 1.3 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/history.md000066400000000000000000000033761415226333200166430ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.history jc - JSON CLI output utility `history` command output parser This parser will output a list of dictionaries each containing `line` and `command` keys. If you would like a simple dictionary output, then use the `-r` command-line option or the `raw=True` argument in the `parse()` function. The "Magic" syntax is not supported since the `history` command is a shell builtin. Usage (cli): $ history | jc --history Usage (module): import jc.parsers.history result = jc.parsers.history.parse(history_command_output) Schema: [ { "line": integer, "command": string } ] Examples: $ history | jc --history -p [ { "line": 118, "command": "sleep 100" }, { "line": 119, "command": "ls /bin" }, { "line": 120, "command": "echo "hello"" }, { "line": 121, "command": "docker images" }, ... ] $ history | jc --history -p -r { "118": "sleep 100", "119": "ls /bin", "120": "echo "hello"", "121": "docker images", ... } ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: Dictionary of raw structured data or List of Dictionaries of processed structured data ## Parser Information Compatibility: linux, darwin, cygwin, aix, freebsd Version 1.6 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/hosts.md000066400000000000000000000033151415226333200162730ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.hosts jc - JSON CLI output utility `/etc/hosts` file parser Usage (cli): $ cat /etc/hosts | jc --hosts Usage (module): import jc.parsers.hosts result = jc.parsers.hosts.parse(hosts_file_output) Schema: [ { "ip": string, "hostname": [ string ] } ] Examples: $ cat /etc/hosts | jc --hosts -p [ { "ip": "127.0.0.1", "hostname": [ "localhost" ] }, { "ip": "127.0.1.1", "hostname": [ "root-ubuntu" ] }, { "ip": "::1", "hostname": [ "ip6-localhost", "ip6-loopback" ] }, { "ip": "fe00::0", "hostname": [ "ip6-localnet" ] }, { "ip": "ff00::0", "hostname": [ "ip6-mcastprefix" ] }, { "ip": "ff02::1", "hostname": [ "ip6-allnodes" ] }, { "ip": "ff02::2", "hostname": [ "ip6-allrouters" ] } ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux, darwin, cygwin, win32, aix, freebsd Version 1.4 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/id.md000066400000000000000000000044131415226333200155270ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.id jc - JSON CLI output utility `id` command output parser Usage (cli): $ id | jc --id or $ jc id Usage (module): import jc.parsers.id result = jc.parsers.id.parse(id_command_output) Schema: { "uid": { "id": integer, "name": string }, "gid": { "id": integer, "name": string }, "groups": [ { "id": integer, "name": string }, { "id": integer, "name": string } ], "context": { "user": string, "role": string, "type": string, "level": string } } Examples: $ id | jc --id -p { "uid": { "id": 1000, "name": "joeuser" }, "gid": { "id": 1000, "name": "joeuser" }, "groups": [ { "id": 1000, "name": "joeuser" }, { "id": 10, "name": "wheel" } ], "context": { "user": "unconfined_u", "role": "unconfined_r", "type": "unconfined_t", "level": "s0-s0:c0.c1023" } } $ id | jc --id -p -r { "uid": { "id": "1000", "name": "joeuser" }, "gid": { "id": "1000", "name": "joeuser" }, "groups": [ { "id": "1000", "name": "joeuser" }, { "id": "10", "name": "wheel" } ], "context": { "user": "unconfined_u", "role": "unconfined_r", "type": "unconfined_t", "level": "s0-s0:c0.c1023" } } ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: Dictionary. Raw or processed structured data. ## Parser Information Compatibility: linux, darwin, aix, freebsd Version 1.4 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/ifconfig.md000066400000000000000000000121341415226333200167160ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.ifconfig jc - JSON CLI output utility `ifconfig` command output parser Note: No `ifconfig` options are supported. Usage (cli): $ ifconfig | jc --ifconfig or $ jc ifconfig Usage (module): import jc.parsers.ifconfig result = jc.parsers.ifconfig.parse(ifconfig_command_output) Schema: [ { "name": string, "flags": integer, "state": [ string ], "mtu": integer, "ipv4_addr": string, "ipv4_mask": string, "ipv4_bcast": string, "ipv6_addr": string, "ipv6_mask": integer, "ipv6_scope": string, "mac_addr": string, "type": string, "rx_packets": integer, "rx_bytes": integer, "rx_errors": integer, "rx_dropped": integer, "rx_overruns": integer, "rx_frame": integer, "tx_packets": integer, "tx_bytes": integer, "tx_errors": integer, "tx_dropped": integer, "tx_overruns": integer, "tx_carrier": integer, "tx_collisions": integer, "metric": integer } ] Examples: $ ifconfig | jc --ifconfig -p [ { "name": "ens33", "flags": 4163, "state": [ "UP", "BROADCAST", "RUNNING", "MULTICAST" ], "mtu": 1500, "ipv4_addr": "192.168.71.137", "ipv4_mask": "255.255.255.0", "ipv4_bcast": "192.168.71.255", "ipv6_addr": "fe80::c1cb:715d:bc3e:b8a0", "ipv6_mask": 64, "ipv6_scope": "0x20", "mac_addr": "00:0c:29:3b:58:0e", "type": "Ethernet", "rx_packets": 8061, "rx_bytes": 1514413, "rx_errors": 0, "rx_dropped": 0, "rx_overruns": 0, "rx_frame": 0, "tx_packets": 4502, "tx_bytes": 866622, "tx_errors": 0, "tx_dropped": 0, "tx_overruns": 0, "tx_carrier": 0, "tx_collisions": 0, "metric": null }, { "name": "lo", "flags": 73, "state": [ "UP", "LOOPBACK", "RUNNING" ], "mtu": 65536, "ipv4_addr": "127.0.0.1", "ipv4_mask": "255.0.0.0", "ipv4_bcast": null, "ipv6_addr": "::1", "ipv6_mask": 128, "ipv6_scope": "0x10", "mac_addr": null, "type": "Local Loopback", "rx_packets": 73, "rx_bytes": 6009, "rx_errors": 0, "rx_dropped": 0, "rx_overruns": 0, "rx_frame": 0, "tx_packets": 73, "tx_bytes": 6009, "tx_errors": 0, "tx_dropped": 0, "tx_overruns": 0, "tx_carrier": 0, "tx_collisions": 0, "metric": null } ] $ ifconfig | jc --ifconfig -p -r [ { "name": "ens33", "flags": "4163", "state": "UP,BROADCAST,RUNNING,MULTICAST", "mtu": "1500", "ipv4_addr": "192.168.71.137", "ipv4_mask": "255.255.255.0", "ipv4_bcast": "192.168.71.255", "ipv6_addr": "fe80::c1cb:715d:bc3e:b8a0", "ipv6_mask": "64", "ipv6_scope": "0x20", "mac_addr": "00:0c:29:3b:58:0e", "type": "Ethernet", "rx_packets": "8061", "rx_bytes": "1514413", "rx_errors": "0", "rx_dropped": "0", "rx_overruns": "0", "rx_frame": "0", "tx_packets": "4502", "tx_bytes": "866622", "tx_errors": "0", "tx_dropped": "0", "tx_overruns": "0", "tx_carrier": "0", "tx_collisions": "0", "metric": null }, { "name": "lo", "flags": "73", "state": "UP,LOOPBACK,RUNNING", "mtu": "65536", "ipv4_addr": "127.0.0.1", "ipv4_mask": "255.0.0.0", "ipv4_bcast": null, "ipv6_addr": "::1", "ipv6_mask": "128", "ipv6_scope": "0x10", "mac_addr": null, "type": "Local Loopback", "rx_packets": "73", "rx_bytes": "6009", "rx_errors": "0", "rx_dropped": "0", "rx_overruns": "0", "rx_frame": "0", "tx_packets": "73", "tx_bytes": "6009", "tx_errors": "0", "tx_dropped": "0", "tx_overruns": "0", "tx_carrier": "0", "tx_collisions": "0", "metric": null } ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux, aix, freebsd, darwin Version 1.11 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/ini.md000066400000000000000000000043221415226333200157110ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.ini jc - JSON CLI output utility `INI` file parser Parses standard `INI` files and files containing simple key/value pairs. Delimiter can be `=` or `:`. Missing values are supported. Comment prefix can be `#` or `;`. Comments must be on their own line. Note: Values starting and ending with quotation marks will have the marks removed. If you would like to keep the quotation marks, use the `-r` command-line argument or the `raw=True` argument in `parse()`. Usage (cli): $ cat foo.ini | jc --ini Usage (module): import jc.parsers.ini result = jc.parsers.ini.parse(ini_file_output) Schema: ini or key/value document converted to a dictionary - see configparser standard library documentation for more details. Note: Values starting and ending with quotation marks will have the marks removed. If you would like to keep the quotation marks, use the -r or raw=True argument. { "key1": string, "key2": string } Examples: $ cat example.ini [DEFAULT] ServerAliveInterval = 45 Compression = yes CompressionLevel = 9 ForwardX11 = yes [bitbucket.org] User = hg [topsecret.server.com] Port = 50022 ForwardX11 = no $ cat example.ini | jc --ini -p { "bitbucket.org": { "serveraliveinterval": "45", "compression": "yes", "compressionlevel": "9", "forwardx11": "yes", "user": "hg" }, "topsecret.server.com": { "serveraliveinterval": "45", "compression": "yes", "compressionlevel": "9", "forwardx11": "no", "port": "50022" } } ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: Dictionary representing the ini file ## Parser Information Compatibility: linux, darwin, cygwin, win32, aix, freebsd Version 1.5 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/iostat.md000066400000000000000000000106141415226333200164360ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.iostat jc - JSON CLI output utility `iostat` command output parser Note: `iostat` version 11 and higher include a JSON output option Usage (cli): $ iostat | jc --iostat or $ jc iostat Usage (module): import jc.parsers.iostat result = jc.parsers.iostat.parse(iostat_command_output) Schema: [ { "type": string, "percent_user": float, "percent_nice": float, "percent_system": float, "percent_iowait": float, "percent_steal": float, "percent_idle": float, "device": string, "tps": float, "kb_read_s": float, "mb_read_s": float, "kb_wrtn_s": float, "mb_wrtn_s": float, "kb_read": integer, "mb_read": integer, "kb_wrtn": integer, "mb_wrtn": integer, 'kb_dscd': integer, 'mb_dscd': integer, "rrqm_s": float, "wrqm_s": float, "r_s": float, "w_s": float, "rmb_s": float, "rkb_s": float, "wmb_s": float, "wkb_s": float, "avgrq_sz": float, "avgqu_sz": float, "await": float, "r_await": float, "w_await": float, "svctm": float, "aqu_sz": float, "rareq_sz": float, "wareq_sz": float, "d_s": float, "dkb_s": float, "dmb_s": float, "drqm_s": float, "percent_drqm": float, "d_await": float, "dareq_sz": float, "f_s": float, "f_await": float, "kb_dscd_s": float, "mb_dscd_s": float, "percent_util": float, "percent_rrqm": float, "percent_wrqm": float } ] Examples: $ iostat | jc --iostat -p [ { "percent_user": 0.15, "percent_nice": 0.0, "percent_system": 0.18, "percent_iowait": 0.0, "percent_steal": 0.0, "percent_idle": 99.67, "type": "cpu" }, { "device": "sda", "tps": 0.29, "kb_read_s": 7.22, "kb_wrtn_s": 1.25, "kb_read": 194341, "kb_wrtn": 33590, "type": "device" }, { "device": "dm-0", "tps": 0.29, "kb_read_s": 5.99, "kb_wrtn_s": 1.17, "kb_read": 161361, "kb_wrtn": 31522, "type": "device" }, { "device": "dm-1", "tps": 0.0, "kb_read_s": 0.08, "kb_wrtn_s": 0.0, "kb_read": 2204, "kb_wrtn": 0, "type": "device" } ] $ iostat | jc --iostat -p -r [ { "percent_user": "0.15", "percent_nice": "0.00", "percent_system": "0.18", "percent_iowait": "0.00", "percent_steal": "0.00", "percent_idle": "99.67", "type": "cpu" }, { "device": "sda", "tps": "0.29", "kb_read_s": "7.22", "kb_wrtn_s": "1.25", "kb_read": "194341", "kb_wrtn": "33590", "type": "device" }, { "device": "dm-0", "tps": "0.29", "kb_read_s": "5.99", "kb_wrtn_s": "1.17", "kb_read": "161361", "kb_wrtn": "31522", "type": "device" }, { "device": "dm-1", "tps": "0.00", "kb_read_s": "0.08", "kb_wrtn_s": "0.00", "kb_read": "2204", "kb_wrtn": "0", "type": "device" } ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux Version 1.0 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/iostat_s.md000066400000000000000000000075021415226333200167620ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.iostat_s jc - JSON CLI output utility `iostat` command output streaming parser > This streaming parser outputs JSON Lines Note: `iostat` version 11 and higher include a JSON output option Usage (cli): $ iostat | jc --iostat-s Usage (module): import jc.parsers.iostat_s result = jc.parsers.iostat_s.parse(iostat_command_output.splitlines()) # result is an iterable object for item in result: # do something Schema: { "type": string, "percent_user": float, "percent_nice": float, "percent_system": float, "percent_iowait": float, "percent_steal": float, "percent_idle": float, "device": string, "tps": float, "kb_read_s": float, "mb_read_s": float, "kb_wrtn_s": float, "mb_wrtn_s": float, "kb_read": integer, "mb_read": integer, "kb_wrtn": integer, "mb_wrtn": integer, 'kb_dscd': integer, 'mb_dscd': integer, "rrqm_s": float, "wrqm_s": float, "r_s": float, "w_s": float, "rmb_s": float, "rkb_s": float, "wmb_s": float, "wkb_s": float, "avgrq_sz": float, "avgqu_sz": float, "await": float, "r_await": float, "w_await": float, "svctm": float, "aqu_sz": float, "rareq_sz": float, "wareq_sz": float, "d_s": float, "dkb_s": float, "dmb_s": float, "drqm_s": float, "percent_drqm": float, "d_await": float, "dareq_sz": float, "f_s": float, "f_await": float, "kb_dscd_s": float, "mb_dscd_s": float, "percent_util": float, "percent_rrqm": float, "percent_wrqm": float, "_jc_meta": # This object only exists if using -qq or ignore_exceptions=True { "success": booean, # true if successfully parsed, false if error "error": string, # exists if "success" is false "line": string # exists if "success" is false } } Examples: $ iostat | jc --iostat-s {"percent_user":0.14,"percent_nice":0.0,"percent_system":0.16,"percent_iowait":0.0,"percent_steal":0.0,"percent_idle":99.7,"type":"cpu"} {"device":"sda","tps":0.24,"kb_read_s":5.28,"kb_wrtn_s":1.1,"kb_read":203305,"kb_wrtn":42368,"type":"device"} ... $ iostat | jc --iostat-s -r {"percent_user":"0.14","percent_nice":"0.00","percent_system":"0.16","percent_iowait":"0.00","percent_steal":"0.00","percent_idle":"99.70","type":"cpu"} {"device":"sda","tps":"0.24","kb_read_s":"5.28","kb_wrtn_s":"1.10","kb_read":"203305","kb_wrtn":"42368","type":"device"} ... ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False, ignore_exceptions=False) ``` Main text parsing generator function. Returns an iterator object. Parameters: data: (iterable) line-based text data to parse (e.g. sys.stdin or str.splitlines()) raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True ignore_exceptions: (boolean) ignore parsing exceptions if True Yields: Dictionary. Raw or processed structured data. Returns: Iterator object ## Parser Information Compatibility: linux Version 1.0 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/iptables.md000066400000000000000000000106751415226333200167450ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.iptables jc - JSON CLI output utility `ipables` command output parser Supports `-vLn` and `--line-numbers` for all tables. Usage (cli): $ sudo iptables -L -t nat | jc --iptables or $ jc iptables -L -t nat Usage (module): import jc.parsers.iptables result = jc.parsers.iptables.parse(iptables_command_output) Schema: [ { "chain": string, "rules": [ { "num" integer, "pkts": integer, "bytes": integer, # converted based on suffix "target": string, "prot": string, "opt": string, # "--" = Null "in": string, "out": string, "source": string, "destination": string, "options": string } ] } ] Examples: $ sudo iptables --line-numbers -v -L -t nat | jc --iptables -p [ { "chain": "PREROUTING", "rules": [ { "num": 1, "pkts": 2183, "bytes": 186000, "target": "PREROUTING_direct", "prot": "all", "opt": null, "in": "any", "out": "any", "source": "anywhere", "destination": "anywhere" }, { "num": 2, "pkts": 2183, "bytes": 186000, "target": "PREROUTING_ZONES_SOURCE", "prot": "all", "opt": null, "in": "any", "out": "any", "source": "anywhere", "destination": "anywhere" }, { "num": 3, "pkts": 2183, "bytes": 186000, "target": "PREROUTING_ZONES", "prot": "all", "opt": null, "in": "any", "out": "any", "source": "anywhere", "destination": "anywhere" }, { "num": 4, "pkts": 0, "bytes": 0, "target": "DOCKER", "prot": "all", "opt": null, "in": "any", "out": "any", "source": "anywhere", "destination": "anywhere", "options": "ADDRTYPE match dst-type LOCAL" } ] }, ... ] $ sudo iptables --line-numbers -v -L -t nat | jc --iptables -p -r [ { "chain": "PREROUTING", "rules": [ { "num": "1", "pkts": "2183", "bytes": "186K", "target": "PREROUTING_direct", "prot": "all", "opt": "--", "in": "any", "out": "any", "source": "anywhere", "destination": "anywhere" }, { "num": "2", "pkts": "2183", "bytes": "186K", "target": "PREROUTING_ZONES_SOURCE", "prot": "all", "opt": "--", "in": "any", "out": "any", "source": "anywhere", "destination": "anywhere" }, { "num": "3", "pkts": "2183", "bytes": "186K", "target": "PREROUTING_ZONES", "prot": "all", "opt": "--", "in": "any", "out": "any", "source": "anywhere", "destination": "anywhere" }, { "num": "4", "pkts": "0", "bytes": "0", "target": "DOCKER", "prot": "all", "opt": "--", "in": "any", "out": "any", "source": "anywhere", "destination": "anywhere", "options": "ADDRTYPE match dst-type LOCAL" } ] }, ... ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux Version 1.7 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/iw_scan.md000066400000000000000000000074561415226333200165700ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.iw_scan jc - JSON CLI output utility `iw dev scan` command output parser This parser is considered beta quality. Not all fields are parsed and there are not enough samples to test. Usage (cli): $ iw dev wlan0 scan | jc --iw-scan or $ jc iw dev wlan0 scan Usage (module): import jc.parsers.iw-scan result = jc.parsers.iw-scan.parse(iw-scan_command_output) Schema: [ { "foo": string/integer/float, # best guess based on value "bar": string/integer/float, "baz": string/integer/float } ] Examples: $ iw dev wlan0 scan | jc --iw-scan -p [ { "bssid": "71:31:72:65:e1:a2", "interface": "wlan0", "freq": 2462, "capability": "ESS Privacy ShortSlotTime (0x0411)", "ssid": "WLAN-1234", "supported_rates": [ 1.0, 2.0, 5.5, 11.0, 18.0, 24.0, 36.0, 54.0 ], "erp": "", "erp_d4.0": "", "rsn": "Version: 1", "group_cipher": "CCMP", "pairwise_ciphers": "CCMP", "authentication_suites": "PSK", "capabilities": "0x186c", "extended_supported_rates": [ 6.0, 9.0, 12.0, 48.0 ], "ht_rx_mcs_rate_indexes_supported": "0-15", "primary_channel": 11, "secondary_channel_offset": "no secondary", "rifs": 1, "ht_protection": "no", "non-gf_present": 1, "obss_non-gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l-sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "bss_width_channel_transition_delay_factor": 5, "extended_capabilities": "HT Information Exchange Supported", "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "wps": "Version: 1.0", "wi-fi_protected_setup_state": "2 (Configured)", "selected_registrar": "0x0", "response_type": "3 (AP)", "uuid": "00000000-0000-0003-0000-75317074f1a2", "manufacturer": "Corporation", "model": "VGV8539JW", "model_number": "1.47.000", "serial_number": "J144024542", "primary_device_type": "6-0050f204-1", "device_name": "Wireless Router(WFA)", "config_methods": "Label, PBC", "rf_bands": "0x3", "tsf_usec": 212098649788, "sta_channel_width_mhz": 20, "passive_dwell_tus": 20, "active_dwell_tus": 10, "channel_width_trigger_scan_interval_s": 300, "scan_passive_total_per_channel_tus": 200, "scan_active_total_per_channel_tus": 20, "beacon_interval_tus": 100, "signal_dbm": -80.0, "last_seen_ms": 11420, "selected_rates": [ 1.0, 2.0, 5.5, 11.0 ], "obss_scan_activity_threshold_percent": 0.25, "ds_parameter_set_channel": 11, "max_amsdu_length_bytes": 7935, "minimum_rx_ampdu_time_spacing_usec": 16 }, ... ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux Version 0.7 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/jobs.md000066400000000000000000000045061415226333200160730ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.jobs jc - JSON CLI output utility `jobs` command output parser Also supports the `-l` option. The "Magic" syntax is not supported since the `jobs` command is a shell builtin. Usage (cli): $ jobs | jc --jobs Usage (module): import jc.parsers.jobs result = jc.parsers.jobs.parse(jobs_command_output) Schema: [ { "job_number": integer, "pid": integer, "history": string, "status": string, "command": string } ] Example: $ jobs -l | jc --jobs -p [ { "job_number": 1, "pid": 5283, "status": "Running", "command": "sleep 10000 &" }, { "job_number": 2, "pid": 5284, "status": "Running", "command": "sleep 10100 &" }, { "job_number": 3, "pid": 5285, "history": "previous", "status": "Running", "command": "sleep 10001 &" }, { "job_number": 4, "pid": 5286, "history": "current", "status": "Running", "command": "sleep 10112 &" } ] $ jobs -l | jc --jobs -p -r [ { "job_number": "1", "pid": "19510", "status": "Running", "command": "sleep 1000 &" }, { "job_number": "2", "pid": "19511", "status": "Running", "command": "sleep 1001 &" }, { "job_number": "3", "pid": "19512", "history": "previous", "status": "Running", "command": "sleep 1002 &" }, { "job_number": "4", "pid": "19513", "history": "current", "status": "Running", "command": "sleep 1003 &" } ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux, darwin, cygwin, aix, freebsd Version 1.5 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/kv.md000066400000000000000000000036201415226333200155520ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.kv jc - JSON CLI output utility `Key/Value` file parser Supports files containing simple key/value pairs. Delimiter can be `=` or `:`. Missing values are supported. Comment prefix can be `#` or `;`. Comments must be on their own line. Note: Values starting and ending with quotation marks will have the marks removed. If you would like to keep the quotation marks, use the `-r` command-line argument or the `raw=True` argument in `parse()`. Usage (cli): $ cat foo.txt | jc --kv Usage (module): import jc.parsers.kv result = jc.parsers.kv.parse(kv_file_output) Schema: key/value document converted to a dictionary - see configparser standard library documentation for more details. { "key1": string, "key2": string } Examples: $ cat keyvalue.txt # this file contains key/value pairs name = John Doe address=555 California Drive age: 34 ; comments can include # or ; # delimiter can be = or : # quoted values have quotation marks stripped by default # but can be preserved with the -r argument occupation:"Engineer" $ cat keyvalue.txt | jc --kv -p { "name": "John Doe", "address": "555 California Drive", "age": "34", "occupation": "Engineer" } ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Note: this is just a wrapper for jc.parsers.ini Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: Dictionary representing the key/value file ## Parser Information Compatibility: linux, darwin, cygwin, win32, aix, freebsd Version 1.1 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/last.md000066400000000000000000000056751415226333200161110ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.last jc - JSON CLI output utility `last` and `lastb` command output parser Supports `-w` and `-F` options. Calculated epoch time fields are naive (i.e. based on the local time of the system the parser is run on) since there is no timezone information in the `last` command output. Usage (cli): $ last | jc --last or $ jc last Usage (module): import jc.parsers.last result = jc.parsers.last.parse(last_command_output) Schema: [ { "user": string, "tty": string, "hostname": string, "login": string, "logout": string, "duration": string, "login_epoch": integer, # (naive) available with last -F option "logout_epoch": integer, # (naive) available with last -F option "duration_seconds": integer # available with last -F option } ] Examples: $ last -F | jc --last -p [ { "user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Mon Dec 28 17:24:10 2020", "logout": "still logged in" }, { "user": "kbrazil", "tty": "ttys003", "hostname": null, "login": "Mon Dec 28 17:24:10 2020", "logout": "Mon Dec 28 17:25:01 2020", "duration": "00:00", "login_epoch": 1565891826, "logout_epoch": 1565895404, "duration_seconds": 3578 }, { "user": "kbrazil", "tty": "ttys003", "hostname": null, "login": "Mon Dec 28 17:24:10 2020", "logout": "Mon Dec 28 17:25:01 2020", "duration": "00:00", "login_epoch": 1565891826, "logout_epoch": 1565895404, "duration_seconds": 3578 }, ... ] $ last | jc --last -p -r [ { "user": "kbrazil", "tty": "ttys002", "hostname": "-", "login": "Thu Feb 27 14:31", "logout": "still_logged_in" }, { "user": "kbrazil", "tty": "ttys003", "hostname": "-", "login": "Thu Feb 27 10:38", "logout": "10:38", "duration": "00:00" }, { "user": "kbrazil", "tty": "ttys003", "hostname": "-", "login": "Thu Feb 27 10:18", "logout": "10:18", "duration": "00:00" }, ... ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux, darwin, aix, freebsd Version 1.8 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/ls.md000066400000000000000000000060721415226333200155540ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.ls jc - JSON CLI output utility `ls` and `vdir` command output parser Options supported: - `lbaR1` - `--time-style=full-iso` Note: The `-1`, `-l`, or `-b` option of `ls` should be used to correctly parse filenames that include newline characters. Since `ls` does not encode newlines in filenames when outputting to a pipe it will cause `jc` to see multiple files instead of a single file if `-1`, `-l`, or `-b` is not used. Alternatively, `vdir` can be used, which is the same as running `ls -lb`. The `epoch` calculated timestamp field is naive (i.e. based on the local time of the system the parser is run on) The `epoch_utc` calculated timestamp field is timezone-aware and is only available if the timezone field is UTC. Usage (cli): $ ls | jc --ls or $ jc ls Usage (module): import jc.parsers.ls result = jc.parsers.ls.parse(ls_command_output) Schema: [ { "filename": string, "flags": string, "links": integer, "parent": string, "owner": string, "group": string, "size": integer, "date": string, "epoch": integer, # naive timestamp if date field exists and can be converted "epoch_utc": integer # timezone aware timestamp if date field is in UTC and can be converted } ] Examples: $ ls /usr/bin | jc --ls -p [ { "filename": "apropos" }, { "filename": "arch" }, ... ] $ ls -l /usr/bin | jc --ls -p [ { "filename": "apropos", "link_to": "whatis", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 6, "date": "Aug 15 10:53" }, { "filename": "ar", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 62744, "date": "Aug 8 16:14" }, ... ] $ ls -l /usr/bin | jc --ls -p -r [ { "filename": "apropos", "link_to": "whatis", "flags": "lrwxrwxrwx.", "links": "1", "owner": "root", "group": "root", "size": "6", "date": "Aug 15 10:53" }, { "filename": "arch", "flags": "-rwxr-xr-x.", "links": "1", "owner": "root", "group": "root", "size": "33080", "date": "Aug 19 23:25" }, ... ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux, darwin, cygwin, aix, freebsd Version 1.10 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/ls_s.md000066400000000000000000000067331415226333200161020ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.ls_s jc - JSON CLI output utility `ls` and `vdir` command output streaming parser > This streaming parser outputs JSON Lines Requires the `-l` option to be used on `ls`. If there are newline characters in the filename, then make sure to use the `-b` option on `ls`. The `jc` `-qq` option can be used to ignore parsing errors. (e.g. filenames with newline characters, but `-b` was not used) The `epoch` calculated timestamp field is naive (i.e. based on the local time of the system the parser is run on) The `epoch_utc` calculated timestamp field is timezone-aware and is only available if the timezone field is UTC. Usage (cli): $ ls | jc --ls-s Usage (module): import jc.parsers.ls_s result = jc.parsers.ls_s.parse(ls_command_output.splitlines()) # result is an iterable object for item in result: # do something Schema: { "filename": string, "flags": string, "links": integer, "parent": string, "owner": string, "group": string, "size": integer, "date": string, "epoch": integer, # naive timestamp if date field exists and can be converted "epoch_utc": integer, # timezone aware timestamp if date field is in UTC and can be converted "_jc_meta": # This object only exists if using -qq or ignore_exceptions=True { "success": booean, # true if successfully parsed, false if error "error": string, # exists if "success" is false "line": string # exists if "success" is false } } Examples: $ ls -l /usr/bin | jc --ls-s {"filename":"2to3-","flags":"-rwxr-xr-x","links":4,"owner":"root","group":"wheel","size":925,"date":"Feb 22 2019"} {"filename":"2to3-2.7","link_to":"../../System/Library/Frameworks/Python.framework/Versions/2.7/bin/2to3-2.7","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":74,"date":"May 4 2019"} {"filename":"AssetCacheLocatorUtil","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":55152,"date":"May 3 2019"} ... $ ls -l /usr/bin | jc --ls-s -r {"filename":"2to3-","flags":"-rwxr-xr-x","links":"4","owner":"root","group":"wheel","size":"925","date":"Feb 22 2019"} {"filename":"2to3-2.7","link_to":"../../System/Library/Frameworks/Python.framework/Versions/2.7/bin/2to3-2.7","flags":"lrwxr-xr-x","links":"1","owner":"root","group":"wheel","size":"74","date":"May 4 2019"} {"filename":"AssetCacheLocatorUtil","flags":"-rwxr-xr-x","links":"1","owner":"root","group":"wheel","size":"55152","date":"May 3 2019"} ... ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False, ignore_exceptions=False) ``` Main text parsing generator function. Returns an iterator object. Parameters: data: (iterable) line-based text data to parse (e.g. sys.stdin or str.splitlines()) raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True ignore_exceptions: (boolean) ignore parsing exceptions if True Yields: Dictionary. Raw or processed structured data. Returns: Iterator object ## Parser Information Compatibility: linux, darwin, cygwin, aix, freebsd Version 0.6 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/lsblk.md000066400000000000000000000160131415226333200162410ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.lsblk jc - JSON CLI output utility `lsblk` command output parser Usage (cli): $ lsblk | jc --lsblk or $ jc lsblk Usage (module): import jc.parsers.lsblk result = jc.parsers.lsblk.parse(lsblk_command_output) Schema: [ { "name": string, "maj_min": string, "rm": boolean, "size": string, "ro": boolean, "type": string, "mountpoint": string, "kname": string, "fstype": string, "label": string, "uuid": string, "partlabel": string, "partuuid": string, "ra": integer, "model": string, "serial": string, "state": string, "owner": string, "group": string, "mode": string, "alignment": integer, "min_io": integer, "opt_io": integer, "phy_sec": integer, "log_sec": integer, "rota": boolean, "sched": string, "rq_size": integer, "disc_aln": integer, "disc_gran": string, "disc_max": string, "disc_zero": boolean, "wsame": string, "wwn": string, "rand": boolean, "pkname": string, "hctl": string, "tran": string, "rev": string, "vendor": string } ] Examples: $ lsblk | jc --lsblk -p [ { "name": "sda", "maj_min": "8:0", "rm": false, "size": "20G", "ro": false, "type": "disk", "mountpoint": null }, { "name": "sda1", "maj_min": "8:1", "rm": false, "size": "1G", "ro": false, "type": "part", "mountpoint": "/boot" }, ... ] $ lsblk -o +KNAME,FSTYPE,LABEL,UUID,PARTLABEL,PARTUUID,RA,MODEL,SERIAL,STATE,OWNER,GROUP,MODE,ALIGNMENT,MIN-IO,OPT-IO,PHY-SEC,LOG-SEC,ROTA,SCHED,RQ-SIZE,DISC-ALN,DISC-GRAN,DISC-MAX,DISC-ZERO,WSAME,WWN,RAND,PKNAME,HCTL,TRAN,REV,VENDOR | jc --lsblk -p [ { "name": "sda", "maj_min": "8:0", "rm": false, "size": "20G", "ro": false, "type": "disk", "mountpoint": null, "kname": "sda", "fstype": null, "label": null, "uuid": null, "partlabel": null, "partuuid": null, "ra": 4096, "model": "VMware Virtual S", "serial": null, "state": "running", "owner": "root", "group": "disk", "mode": "brw-rw----", "alignment": 0, "min_io": 512, "opt_io": 0, "phy_sec": 512, "log_sec": 512, "rota": true, "sched": "deadline", "rq_size": 128, "disc_aln": 0, "disc_gran": "0B", "disc_max": "0B", "disc_zero": false, "wsame": "32M", "wwn": null, "rand": true, "pkname": null, "hctl": "0:0:0:0", "tran": "spi", "rev": "1.0", "vendor": "VMware," }, { "name": "sda1", "maj_min": "8:1", "rm": false, "size": "1G", "ro": false, "type": "part", "mountpoint": "/boot", "kname": "sda1", "fstype": "xfs", "label": null, "uuid": "05d927bb-5875-49e3-ada1-7f46cb31c932", "partlabel": null, "partuuid": null, "ra": 4096, "model": null, "serial": null, "state": null, "owner": "root", "group": "disk", "mode": "brw-rw----", "alignment": 0, "min_io": 512, "opt_io": 0, "phy_sec": 512, "log_sec": 512, "rota": true, "sched": "deadline", "rq_size": 128, "disc_aln": 0, "disc_gran": "0B", "disc_max": "0B", "disc_zero": false, "wsame": "32M", "wwn": null, "rand": true, "pkname": "sda", "hctl": null, "tran": null, "rev": null, "vendor": null }, ... ] $ lsblk -o +KNAME,FSTYPE,LABEL,UUID,PARTLABEL,PARTUUID,RA,MODEL,SERIAL,STATE,OWNER,GROUP,MODE,ALIGNMENT,MIN-IO,OPT-IO,PHY-SEC,LOG-SEC,ROTA,SCHED,RQ-SIZE,DISC-ALN,DISC-GRAN,DISC-MAX,DISC-ZERO,WSAME,WWN,RAND,PKNAME,HCTL,TRAN,REV,VENDOR | jc --lsblk -p -r [ { "name": "sda", "maj_min": "8:0", "rm": "0", "size": "20G", "ro": "0", "type": "disk", "mountpoint": null, "kname": "sda", "fstype": null, "label": null, "uuid": null, "partlabel": null, "partuuid": null, "ra": "4096", "model": "VMware Virtual S", "serial": null, "state": "running", "owner": "root", "group": "disk", "mode": "brw-rw----", "alignment": "0", "min_io": "512", "opt_io": "0", "phy_sec": "512", "log_sec": "512", "rota": "1", "sched": "deadline", "rq_size": "128", "disc_aln": "0", "disc_gran": "0B", "disc_max": "0B", "disc_zero": "0", "wsame": "32M", "wwn": null, "rand": "1", "pkname": null, "hctl": "0:0:0:0", "tran": "spi", "rev": "1.0", "vendor": "VMware," }, { "name": "sda1", "maj_min": "8:1", "rm": "0", "size": "1G", "ro": "0", "type": "part", "mountpoint": "/boot", "kname": "sda1", "fstype": "xfs", "label": null, "uuid": "05d927bb-5875-49e3-ada1-7f46cb31c932", "partlabel": null, "partuuid": null, "ra": "4096", "model": null, "serial": null, "state": null, "owner": "root", "group": "disk", "mode": "brw-rw----", "alignment": "0", "min_io": "512", "opt_io": "0", "phy_sec": "512", "log_sec": "512", "rota": "1", "sched": "deadline", "rq_size": "128", "disc_aln": "0", "disc_gran": "0B", "disc_max": "0B", "disc_zero": "0", "wsame": "32M", "wwn": null, "rand": "1", "pkname": "sda", "hctl": null, "tran": null, "rev": null, "vendor": null }, ... ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux Version 1.8 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/lsmod.md000066400000000000000000000052651415226333200162570ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.lsmod jc - JSON CLI output utility `lsmod` command output parser Usage (cli): $ lsmod | jc --lsmod or $ jc lsmod Usage (module): import jc.parsers.lsmod result = jc.parsers.lsmod.parse(lsmod_command_output) Schema: [ { "module": string, "size": integer, "used": integer, "by": [ string ] } ] Examples: $ lsmod | jc --lsmod -p [ ... { "module": "nf_nat", "size": 26583, "used": 3, "by": [ "nf_nat_ipv4", "nf_nat_ipv6", "nf_nat_masquerade_ipv4" ] }, { "module": "iptable_mangle", "size": 12695, "used": 1 }, { "module": "iptable_security", "size": 12705, "used": 1 }, { "module": "iptable_raw", "size": 12678, "used": 1 }, { "module": "nf_conntrack", "size": 139224, "used": 7, "by": [ "nf_nat", "nf_nat_ipv4", "nf_nat_ipv6", "xt_conntrack", "nf_nat_masquerade_ipv4", "nf_conntrack_ipv4", "nf_conntrack_ipv6" ] }, ... ] $ lsmod | jc --lsmod -p -r [ ... { "module": "nf_conntrack", "size": "139224", "used": "7", "by": [ "nf_nat", "nf_nat_ipv4", "nf_nat_ipv6", "xt_conntrack", "nf_nat_masquerade_ipv4", "nf_conntrack_ipv4", "nf_conntrack_ipv6" ] }, { "module": "ip_set", "size": "45799", "used": "0" }, { "module": "nfnetlink", "size": "14519", "used": "1", "by": [ "ip_set" ] }, { "module": "ebtable_filter", "size": "12827", "used": "1" }, { "module": "ebtables", "size": "35009", "used": "2", "by": [ "ebtable_nat", "ebtable_filter" ] }, ... ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux Version 1.6 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/lsof.md000066400000000000000000000054001415226333200160730ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.lsof jc - JSON CLI output utility `lsof` command output parser Usage (cli): $ lsof | jc --lsof or $ jc lsof Usage (module): import jc.parsers.lsof result = jc.parsers.lsof.parse(lsof_command_output) Schema: [ { "command": string, "pid": integer, "tid": integer, "user": string, "fd": string, "type": string, "device": string, "size_off": integer, "node": integer, "name": string } ] Examples: $ sudo lsof | jc --lsof -p [ { "command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/" }, { "command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/" }, { "command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 1624520, "node": 50360451, "name": "/usr/lib/systemd/systemd" }, ... ] $ sudo lsof | jc --lsof -p -r [ { "command": "systemd", "pid": "1", "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": "4096", "node": "2", "name": "/" }, { "command": "systemd", "pid": "1", "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": "4096", "node": "2", "name": "/" }, { "command": "systemd", "pid": "1", "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": "1595792", "node": "668802", "name": "/lib/systemd/systemd" }, ... ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux Version 1.5 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/lsusb.md000066400000000000000000000173251415226333200162710ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.lsusb jc - JSON CLI output utility `lsusb` command output parser Supports the `-v` option or no options. Usage (cli): $ lsusb -v | jc --lsusb or $ jc lsusb -v Usage (module): import jc.parsers.lsusb result = jc.parsers.lsusb.parse(lsusb_command_output) Schema: Note: object keynames are assigned directly from the lsusb output. If there are duplicate names in a section, only the last one is converted. [ { "bus": string, "device": string, "id": string, "description": string, "device_descriptor": { "": { "value": string, "description": string, "attributes": [ string ] }, "configuration_descriptor": { "": { "value": string, "description": string, "attributes": [ string ] }, "interface_association": { "": { "value": string, "description": string, "attributes": [ string ] } }, "interface_descriptors": [ { "": { "value": string, "description": string, "attributes": [ string ] }, "cdc_header": { "": { "value": string, "description": string, "attributes": [ string ] } }, "cdc_call_management": { "": { "value": string, "description": string, "attributes": [ string ] } }, "cdc_acm": { "": { "value": string, "description": string, "attributes": [ string ] } }, "cdc_union": { "": { "value": string, "description": string, "attributes": [ string ] } }, "endpoint_descriptors": [ { "": { "value": string, "description": string, "attributes": [ string ] } } ] } ] } }, "hub_descriptor": { "": { "value": string, "description": string, "attributes": [ string, ] }, "hub_port_status": { "": { "value": string, "attributes": [ string ] } } }, "device_status": { "value": string, "description": string } } ] Examples: $ lsusb -v | jc --lsusb -p [ { "bus": "002", "device": "001", "id": "1d6b:0001", "description": "Linux Foundation 1.1 root hub", "device_descriptor": { "bLength": { "value": "18" }, "bDescriptorType": { "value": "1" }, "bcdUSB": { "value": "1.10" }, ... "bNumConfigurations": { "value": "1" }, "configuration_descriptor": { "bLength": { "value": "9" }, ... "iConfiguration": { "value": "0" }, "bmAttributes": { "value": "0xe0", "attributes": [ "Self Powered", "Remote Wakeup" ] }, "MaxPower": { "description": "0mA" }, "interface_descriptors": [ { "bLength": { "value": "9" }, ... "bInterfaceProtocol": { "value": "0", "description": "Full speed (or root) hub" }, "iInterface": { "value": "0" }, "endpoint_descriptors": [ { "bLength": { "value": "7" }, ... "bmAttributes": { "value": "3", "attributes": [ "Transfer Type Interrupt", "Synch Type None", "Usage Type Data" ] }, "wMaxPacketSize": { "value": "0x0002", "description": "1x 2 bytes" }, "bInterval": { "value": "255" } } ] } ] } }, "hub_descriptor": { "bLength": { "value": "9" }, ... "wHubCharacteristic": { "value": "0x000a", "attributes": [ "No power switching (usb 1.0)", "Per-port overcurrent protection" ] }, ... "hub_port_status": { "Port 1": { "value": "0000.0103", "attributes": [ "power", "enable", "connect" ] }, "Port 2": { "value": "0000.0103", "attributes": [ "power", "enable", "connect" ] } } }, "device_status": { "value": "0x0001", "description": "Self Powered" } } ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux Version 1.1 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/mount.md000066400000000000000000000034501415226333200162750ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.mount jc - JSON CLI output utility `mount` command output parser Usage (cli): $ mount | jc --mount or $ jc mount Usage (module): import jc.parsers.mount result = jc.parsers.mount.parse(mount_command_output) Schema: [ { "filesystem": string, "mount_point": string, "type": string, "access": [ string ] } ] Example: $ mount | jc --mount -p [ { "filesystem": "sysfs", "mount_point": "/sys", "type": "sysfs", "access": [ "rw", "nosuid", "nodev", "noexec", "relatime" ] }, { "filesystem": "proc", "mount_point": "/proc", "type": "proc", "access": [ "rw", "nosuid", "nodev", "noexec", "relatime" ] }, { "filesystem": "udev", "mount_point": "/dev", "type": "devtmpfs", "access": [ "rw", "nosuid", "relatime", "size=977500k", "nr_inodes=244375", "mode=755" ] }, ... ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux, darwin, freebsd Version 1.7 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/netstat.md000066400000000000000000000245661415226333200166300ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.netstat jc - JSON CLI output utility `netstat` command output parser Caveats: - Use of multiple `l` options is not supported on OSX (e.g. `netstat -rlll`) - Use of the `A` option is not supported on OSX when using the `r` option (e.g. `netstat -rA`) Usage (cli): $ netstat | jc --netstat or $ jc netstat Usage (module): import jc.parsers.netstat result = jc.parsers.netstat.parse(netstat_command_output) Schema: [ { "proto": string, "recv_q": integer, "send_q": integer, "transport_protocol" string, "network_protocol": string, "local_address": string, "local_port": string, "local_port_num": integer, "foreign_address": string, "foreign_port": string, "foreign_port_num": integer, "state": string, "program_name": string, "pid": integer, "user": string, "security_context": string, "refcnt": integer, "flags": string, "type": string, "inode": integer, "path": string, "kind": string, "address": string, "unix_inode": string, "conn": string, "refs": string, "nextref": string, "name": string, "unit": integer, "vendor": integer, "class": integer, "subcla": integer, "unix_flags": integer, "pcbcount": integer, "rcvbuf": integer, "sndbuf": integer, "rxbytes": integer, "txbytes": integer, "destination": string, "gateway": string, "route_flags": string, "route_flags_pretty": [ string, ] "route_refs": integer, "use": integer, "mtu": integer, "expire": string, "genmask": string, "mss": integer, "window": integer, "irtt": integer, "iface": string, "metric": integer, "network": string, "address": string, "ipkts": integer, # - = null "ierrs": integer, # - = null "idrop": integer, # - = null "opkts": integer, # - = null "oerrs": integer, # - = null "coll": integer, # - = null "rx_ok": integer, "rx_err": integer, "rx_drp": integer, "rx_ovr": integer, "tx_ok": integer, "tx_err": integer, "tx_drp": integer, "tx_ovr": integer, "flg": string, "ibytes": integer, "obytes": integer, "r_mbuf": integer, "s_mbuf": integer, "r_clus": integer, "s_clus": integer, "r_hiwa": integer, "s_hiwa": integer, "r_lowa": integer, "s_lowa": integer, "r_bcnt": integer, "s_bcnt": integer, "r_bmax": integer, "s_bmax": integer, "rexmit": integer, "ooorcv": integer, "0_win": integer, "rexmt": float, "persist": float, "keep": float, "2msl": float, "delack": float, "rcvtime": float, } ] Examples: # netstat -apee | jc --netstat -p [ { "proto": "tcp", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "0.0.0.0", "state": "LISTEN", "user": "systemd-resolve", "inode": 26958, "program_name": "systemd-resolve", "kind": "network", "pid": 887, "local_port": "domain", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv4" }, { "proto": "tcp", "recv_q": 0, "send_q": 0, "local_address": "0.0.0.0", "foreign_address": "0.0.0.0", "state": "LISTEN", "user": "root", "inode": 30499, "program_name": "sshd", "kind": "network", "pid": 1186, "local_port": "ssh", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv4" }, { "proto": "tcp", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "localhost", "state": "ESTABLISHED", "user": "root", "inode": 46829, "program_name": "sshd: root", "kind": "network", "pid": 2242, "local_port": "ssh", "foreign_port": "52186", "transport_protocol": "tcp", "network_protocol": "ipv4", "foreign_port_num": 52186 }, { "proto": "tcp", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "localhost", "state": "ESTABLISHED", "user": "root", "inode": 46828, "program_name": "ssh", "kind": "network", "pid": 2241, "local_port": "52186", "foreign_port": "ssh", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 52186 }, { "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "[::]", "foreign_address": "[::]", "state": "LISTEN", "user": "root", "inode": 30510, "program_name": "sshd", "kind": "network", "pid": 1186, "local_port": "ssh", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv6" }, { "proto": "udp", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "0.0.0.0", "state": null, "user": "systemd-resolve", "inode": 26957, "program_name": "systemd-resolve", "kind": "network", "pid": 887, "local_port": "domain", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4" }, { "proto": "raw6", "recv_q": 0, "send_q": 0, "local_address": "[::]", "foreign_address": "[::]", "state": "7", "user": "systemd-network", "inode": 27001, "program_name": "systemd-network", "kind": "network", "pid": 867, "local_port": "ipv6-icmp", "foreign_port": "*", "transport_protocol": null, "network_protocol": "ipv6" }, { "proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 33322, "program_name": "systemd", "path": "/run/user/1000/systemd/notify", "kind": "socket", "pid": 1607 }, { "proto": "unix", "refcnt": 2, "flags": "ACC", "type": "SEQPACKET", "state": "LISTENING", "inode": 20835, "program_name": "init", "path": "/run/udev/control", "kind": "socket", "pid": 1 }, ... ] $ netstat -r | jc --netstat -p [ { "destination": "default", "gateway": "gateway", "genmask": "0.0.0.0", "route_flags": "UG", "mss": 0, "window": 0, "irtt": 0, "iface": "ens33", "kind": "route", "route_flags_pretty": [ "UP", "GATEWAY" ] }, { "destination": "172.17.0.0", "gateway": "0.0.0.0", "genmask": "255.255.0.0", "route_flags": "U", "mss": 0, "window": 0, "irtt": 0, "iface": "docker0", "kind": "route", "route_flags_pretty": [ "UP" ] }, { "destination": "192.168.71.0", "gateway": "0.0.0.0", "genmask": "255.255.255.0", "route_flags": "U", "mss": 0, "window": 0, "irtt": 0, "iface": "ens33", "kind": "route", "route_flags_pretty": [ "UP" ] } ] $ netstat -i | jc --netstat -p [ { "iface": "ens33", "mtu": 1500, "rx_ok": 476, "rx_err": 0, "rx_drp": 0, "rx_ovr": 0, "tx_ok": 312, "tx_err": 0, "tx_drp": 0, "tx_ovr": 0, "flg": "BMRU", "kind": "interface" }, { "iface": "lo", "mtu": 65536, "rx_ok": 0, "rx_err": 0, "rx_drp": 0, "rx_ovr": 0, "tx_ok": 0, "tx_err": 0, "tx_drp": 0, "tx_ovr": 0, "flg": "LRU", "kind": "interface" } ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux, darwin, freebsd Version 1.12 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/ntpq.md000066400000000000000000000113441415226333200161160ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.ntpq jc - JSON CLI output utility `ntpq -p` command output parser Usage (cli): $ ntpq -p | jc --ntpq or $ jc ntpq -p Usage (module): import jc.parsers.ntpq result = jc.parsers.ntpq.parse(ntpq_command_output) Schema: [ { "state": string, # space/~ converted to null "remote": string, "refid": string, "st": integer, "t": string, "when": integer, # - converted to null "poll": integer, "reach": integer, "delay": float, "offset": float, "jitter": float }, ] Examples: $ ntpq -p | jc --ntpq -p [ { "remote": "44.190.6.254", "refid": "127.67.113.92", "st": 2, "t": "u", "when": 1, "poll": 64, "reach": 1, "delay": 23.399, "offset": -2.805, "jitter": 2.131, "state": null }, { "remote": "ntp.wdc1.us.lea", "refid": "130.133.1.10", "st": 2, "t": "u", "when": null, "poll": 64, "reach": 1, "delay": 93.053, "offset": -0.807, "jitter": 2.839, "state": null }, { "remote": "clock.team-cymr", "refid": "204.9.54.119", "st": 2, "t": "u", "when": null, "poll": 64, "reach": 1, "delay": 70.337, "offset": -2.909, "jitter": 2.6, "state": null }, { "remote": "mirror1.sjc02.s", "refid": "216.218.254.202", "st": 2, "t": "u", "when": 2, "poll": 64, "reach": 1, "delay": 29.325, "offset": 1.044, "jitter": 4.069, "state": null, } ] $ ntpq -pn| jc --ntpq -p [ { "remote": "44.190.6.254", "refid": "127.67.113.92", "st": 2, "t": "u", "when": 66, "poll": 64, "reach": 377, "delay": 22.69, "offset": -0.392, "jitter": 2.085, "state": "+" }, { "remote": "108.59.2.24", "refid": "130.133.1.10", "st": 2, "t": "u", "when": 63, "poll": 64, "reach": 377, "delay": 90.805, "offset": 2.84, "jitter": 1.908, "state": "-" }, { "remote": "38.229.71.1", "refid": "204.9.54.119", "st": 2, "t": "u", "when": 64, "poll": 64, "reach": 377, "delay": 68.699, "offset": -0.61, "jitter": 2.576, "state": "+" }, { "remote": "72.5.72.15", "refid": "216.218.254.202", "st": 2, "t": "u", "when": 63, "poll": 64, "reach": 377, "delay": 22.654, "offset": 0.231, "jitter": 1.964, "state": "*" } ] $ ntpq -pn| jc --ntpq -p -r [ { "s": "+", "remote": "44.190.6.254", "refid": "127.67.113.92", "st": "2", "t": "u", "when": "66", "poll": "64", "reach": "377", "delay": "22.690", "offset": "-0.392", "jitter": "2.085" }, { "s": "-", "remote": "108.59.2.24", "refid": "130.133.1.10", "st": "2", "t": "u", "when": "63", "poll": "64", "reach": "377", "delay": "90.805", "offset": "2.840", "jitter": "1.908" }, { "s": "+", "remote": "38.229.71.1", "refid": "204.9.54.119", "st": "2", "t": "u", "when": "64", "poll": "64", "reach": "377", "delay": "68.699", "offset": "-0.610", "jitter": "2.576" }, { "s": "*", "remote": "72.5.72.15", "refid": "216.218.254.202", "st": "2", "t": "u", "when": "63", "poll": "64", "reach": "377", "delay": "22.654", "offset": "0.231", "jitter": "1.964" } ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux, freebsd Version 1.6 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/passwd.md000066400000000000000000000046701415226333200164410ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.passwd jc - JSON CLI output utility `/etc/passwd` file Parser Usage (cli): $ cat /etc/passwd | jc --passwd Usage (module): import jc.parsers.passwd result = jc.parsers.passwd.parse(passwd_file_output) Schema: [ { "username": string, "password": string, "uid": integer, "gid": integer, "comment": string, "home": string, "shell": string } ] Examples: $ cat /etc/passwd | jc --passwd -p [ { "username": "nobody", "password": "*", "uid": -2, "gid": -2, "comment": "Unprivileged User", "home": "/var/empty", "shell": "/usr/bin/false" }, { "username": "root", "password": "*", "uid": 0, "gid": 0, "comment": "System Administrator", "home": "/var/root", "shell": "/bin/sh" }, { "username": "daemon", "password": "*", "uid": 1, "gid": 1, "comment": "System Services", "home": "/var/root", "shell": "/usr/bin/false" }, ... ] $ cat /etc/passwd | jc --passwd -p -r [ { "username": "nobody", "password": "*", "uid": "-2", "gid": "-2", "comment": "Unprivileged User", "home": "/var/empty", "shell": "/usr/bin/false" }, { "username": "root", "password": "*", "uid": "0", "gid": "0", "comment": "System Administrator", "home": "/var/root", "shell": "/bin/sh" }, { "username": "daemon", "password": "*", "uid": "1", "gid": "1", "comment": "System Services", "home": "/var/root", "shell": "/usr/bin/false" }, ... ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux, darwin, aix, freebsd Version 1.4 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/ping.md000066400000000000000000000123321415226333200160670ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.ping jc - JSON CLI output utility `ping` command output parser Supports `ping` and `ping6` output. Usage (cli): Note: Use the ping `-c` (count) option, otherwise data will not be piped to `jc`. $ ping -c 3 1.2.3.4 | jc --ping or $ jc ping -c 3 1.2.3.4 Usage (module): import jc.parsers.ping result = jc.parsers.ping.parse(ping_command_output) Schema: { "source_ip": string, "destination_ip": string, "data_bytes": integer, "pattern": string, # (null if not set) "destination": string, "packets_transmitted": integer, "packets_received": integer, "packet_loss_percent": float, "duplicates": integer, "round_trip_ms_min": float, "round_trip_ms_avg": float, "round_trip_ms_max": float, "round_trip_ms_stddev": float, "responses": [ { "type": string, # 'reply', 'timeout', 'unparsable_line', etc. See `_error_type.type_map` for all options "unparsed_line": string, # only if an 'unparsable_line' type "timestamp": float, "bytes": integer, "response_ip": string, "icmp_seq": integer, "ttl": integer, "time_ms": float, "duplicate": boolean, "vr": integer, # hex value converted to decimal "hl": integer, # hex value converted to decimal "tos": integer, # hex value converted to decimal "len": integer, # hex value converted to decimal "id": integer, # hex value converted to decimal "flg": integer, # hex value converted to decimal "off": integer, # hex value converted to decimal "pro": integer, # hex value converted to decimal "cks": ingeger, # hex value converted to decimal "src": string, "dst": string } ] } Examples: $ ping -c 3 -p ff cnn.com | jc --ping -p { "destination_ip": "151.101.1.67", "data_bytes": 56, "pattern": "0xff", "destination": "cnn.com", "packets_transmitted": 3, "packets_received": 3, "packet_loss_percent": 0.0, "duplicates": 0, "round_trip_ms_min": 28.015, "round_trip_ms_avg": 32.848, "round_trip_ms_max": 39.376, "round_trip_ms_stddev": 4.79, "responses": [ { "type": "reply", "bytes": 64, "response_ip": "151.101.1.67", "icmp_seq": 0, "ttl": 59, "time_ms": 28.015, "duplicate": false }, { "type": "reply", "bytes": 64, "response_ip": "151.101.1.67", "icmp_seq": 1, "ttl": 59, "time_ms": 39.376, "duplicate": false }, { "type": "reply", "bytes": 64, "response_ip": "151.101.1.67", "icmp_seq": 2, "ttl": 59, "time_ms": 31.153, "duplicate": false } ] } $ ping -c 3 -p ff cnn.com | jc --ping -p -r { "destination_ip": "151.101.129.67", "data_bytes": "56", "pattern": "0xff", "destination": "cnn.com", "packets_transmitted": "3", "packets_received": "3", "packet_loss_percent": "0.0", "duplicates": "0", "round_trip_ms_min": "25.078", "round_trip_ms_avg": "29.543", "round_trip_ms_max": "32.553", "round_trip_ms_stddev": "3.221", "responses": [ { "type": "reply", "bytes": "64", "response_ip": "151.101.129.67", "icmp_seq": "0", "ttl": "59", "time_ms": "25.078", "duplicate": false }, { "type": "reply", "bytes": "64", "response_ip": "151.101.129.67", "icmp_seq": "1", "ttl": "59", "time_ms": "30.999", "duplicate": false }, { "type": "reply", "bytes": "64", "response_ip": "151.101.129.67", "icmp_seq": "2", "ttl": "59", "time_ms": "32.553", "duplicate": false } ] } ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: Dictionary. Raw or processed structured data. ## Parser Information Compatibility: linux, darwin, freebsd Version 1.7 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/ping_s.md000066400000000000000000000101441415226333200164100ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.ping_s jc - JSON CLI output utility `ping` command output streaming parser > This streaming parser outputs JSON Lines Supports `ping` and `ping6` output. Usage (cli): $ ping | jc --ping-s > Note: When piping `jc` converted `ping` output to other processes it may appear the output is hanging due to the OS pipe buffers. This is because `ping` output is too small to quickly fill up the buffer. Use the `-u` option to unbuffer the `jc` output if you would like immediate output. See the [readme](https://github.com/kellyjonbrazil/jc/tree/master#unbuffering-output) for more information. Usage (module): import jc.parsers.ping_s result = jc.parsers.ping_s.parse(ping_command_output.splitlines()) # result is an iterable object for item in result: # do something Schema: { "type": string, # 'reply', 'timeout', 'summary', etc. See `_error_type.type_map` for all options. "source_ip": string, "destination_ip": string, "sent_bytes": integer, "pattern": string, # (null if not set) "destination": string, "timestamp": float, "response_bytes": integer, "response_ip": string, "icmp_seq": integer, "ttl": integer, "time_ms": float, "duplicate": boolean, "packets_transmitted": integer, "packets_received": integer, "packet_loss_percent": float, "duplicates": integer, "round_trip_ms_min": float, "round_trip_ms_avg": float, "round_trip_ms_max": float, "round_trip_ms_stddev": float, "_jc_meta": # This object only exists if using -qq or ignore_exceptions=True { "success": booean, # true if successfully parsed, false if error "error": string, # exists if "success" is false "line": string # exists if "success" is false } } Examples: $ ping 1.1.1.1 | jc --ping-s {"type":"reply","destination_ip":"1.1.1.1","sent_bytes":56,"pattern":null,"response_bytes":64,"response_ip":"1.1.1.1","icmp_seq":0,"ttl":56,"time_ms":23.703} {"type":"reply","destination_ip":"1.1.1.1","sent_bytes":56,"pattern":null,"response_bytes":64,"response_ip":"1.1.1.1","icmp_seq":1,"ttl":56,"time_ms":22.862} {"type":"reply","destination_ip":"1.1.1.1","sent_bytes":56,"pattern":null,"response_bytes":64,"response_ip":"1.1.1.1","icmp_seq":2,"ttl":56,"time_ms":22.82} ... $ ping 1.1.1.1 | jc --ping-s -r {"type":"reply","destination_ip":"1.1.1.1","sent_bytes":"56","pattern":null,"response_bytes":"64","response_ip":"1.1.1.1","icmp_seq":"0","ttl":"56","time_ms":"23.054"} {"type":"reply","destination_ip":"1.1.1.1","sent_bytes":"56","pattern":null,"response_bytes":"64","response_ip":"1.1.1.1","icmp_seq":"1","ttl":"56","time_ms":"24.739"} {"type":"reply","destination_ip":"1.1.1.1","sent_bytes":"56","pattern":null,"response_bytes":"64","response_ip":"1.1.1.1","icmp_seq":"2","ttl":"56","time_ms":"23.232"} ... ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False, ignore_exceptions=False) ``` Main text parsing generator function. Returns an iterator object. Parameters: data: (iterable) line-based text data to parse (e.g. sys.stdin or str.splitlines()) raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True ignore_exceptions: (boolean) ignore parsing exceptions if True Yields: Dictionary. Raw or processed structured data. Returns: Iterator object ## Parser Information Compatibility: linux, darwin, freebsd Version 0.6 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/pip_list.md000066400000000000000000000024411415226333200167550ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.pip_list jc - JSON CLI output utility `pip-list` command output parser Usage (cli): $ pip list | jc --pip-list or $ jc pip list Usage (module): import jc.parsers.pip_list result = jc.parsers.pip_list.parse(pip_list_command_output) Schema: [ { "package": string, "version": string, "location": string } ] Examples: $ pip list | jc --pip-list -p [ { "package": "ansible", "version": "2.8.5" }, { "package": "antlr4-python3-runtime", "version": "4.7.2" }, { "package": "asn1crypto", "version": "0.24.0" }, ... ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux, darwin, cygwin, win32, aix, freebsd Version 1.5 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/pip_show.md000066400000000000000000000042251415226333200167640ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.pip_show jc - JSON CLI output utility `pip-show` command output parser Usage (cli): $ pip show | jc --pip-show or $ jc pip show Usage (module): import jc.parsers.pip_show result = jc.parsers.pip_show.parse(pip_show_command_output) Schema: [ { "name": string, "version": string, "summary": string, "home_page": string, "author": string, "author_email": string, "license": string, "location": string, "requires": string, "required_by": string } ] Examples: $ pip show wrapt jc wheel | jc --pip-show -p [ { "name": "wrapt", "version": "1.11.2", "summary": "Module for decorators, wrappers and monkey patching.", "home_page": "https://github.com/GrahamDumpleton/wrapt", "author": "Graham Dumpleton", "author_email": "Graham.Dumpleton@gmail.com", "license": "BSD", "location": "/usr/local/lib/python3.7/site-packages", "requires": null, "required_by": "astroid" }, { "name": "wheel", "version": "0.33.4", "summary": "A built-package format for Python.", "home_page": "https://github.com/pypa/wheel", "author": "Daniel Holth", "author_email": "dholth@fastmail.fm", "license": "MIT", "location": "/usr/local/lib/python3.7/site-packages", "requires": null, "required_by": null } ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux, darwin, cygwin, win32, aix, freebsd Version 1.3 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/ps.md000066400000000000000000000113441415226333200155560ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.ps jc - JSON CLI output utility `ps` command output parser `ps` options supported: - `ef` - `axu` Usage (cli): $ ps | jc --ps or $ jc ps Usage (module): import jc.parsers.ps result = jc.parsers.ps.parse(ps_command_output) Schema: [ { "uid": string, "pid": integer, "ppid": integer, "c": integer, "stime": string, "tty": string, # ? or ?? = Null "tt": string, # ?? = Null "time": string, "cmd": string, "user": string, "cpu_percent": float, "mem_percent": float, "vsz": integer, "rss": integer, "stat": string, "start": string, "command": string } ] Examples: $ ps -ef | jc --ps -p [ { "uid": "root", "pid": 1, "ppid": 0, "c": 0, "stime": "Nov01", "tty": null, "time": "00:00:11", "cmd": "/usr/lib/systemd/systemd --switched-root --system --deserialize 22" }, { "uid": "root", "pid": 2, "ppid": 0, "c": 0, "stime": "Nov01", "tty": null, "time": "00:00:00", "cmd": "[kthreadd]" }, { "uid": "root", "pid": 4, "ppid": 2, "c": 0, "stime": "Nov01", "tty": null, "time": "00:00:00", "cmd": "[kworker/0:0H]" }, ... ] $ ps -ef | jc --ps -p -r [ { "uid": "root", "pid": "1", "ppid": "0", "c": "0", "stime": "Nov01", "tty": "?", "time": "00:00:11", "cmd": "/usr/lib/systemd/systemd --switched-root --system --deserialize 22" }, { "uid": "root", "pid": "2", "ppid": "0", "c": "0", "stime": "Nov01", "tty": "?", "time": "00:00:00", "cmd": "[kthreadd]" }, { "uid": "root", "pid": "4", "ppid": "2", "c": "0", "stime": "Nov01", "tty": "?", "time": "00:00:00", "cmd": "[kworker/0:0H]" }, ... ] $ ps axu | jc --ps -p [ { "user": "root", "pid": 1, "cpu_percent": 0.0, "mem_percent": 0.1, "vsz": 128072, "rss": 6784, "tty": null, "stat": "Ss", "start": "Nov09", "time": "0:08", "command": "/usr/lib/systemd/systemd --switched-root --system --deserialize 22" }, { "user": "root", "pid": 2, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Nov09", "time": "0:00", "command": "[kthreadd]" }, { "user": "root", "pid": 4, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Nov09", "time": "0:00", "command": "[kworker/0:0H]" }, ... ] $ ps axu | jc --ps -p -r [ { "user": "root", "pid": "1", "cpu_percent": "0.0", "mem_percent": "0.1", "vsz": "128072", "rss": "6784", "tty": "?", "stat": "Ss", "start": "Nov09", "time": "0:08", "command": "/usr/lib/systemd/systemd --switched-root --system --deserialize 22" }, { "user": "root", "pid": "2", "cpu_percent": "0.0", "mem_percent": "0.0", "vsz": "0", "rss": "0", "tty": "?", "stat": "S", "start": "Nov09", "time": "0:00", "command": "[kthreadd]" }, { "user": "root", "pid": "4", "cpu_percent": "0.0", "mem_percent": "0.0", "vsz": "0", "rss": "0", "tty": "?", "stat": "S<", "start": "Nov09", "time": "0:00", "command": "[kworker/0:0H]" }, ... ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux, darwin, cygwin, aix, freebsd Version 1.6 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/route.md000066400000000000000000000052001415226333200162640ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.route jc - JSON CLI output utility `route` command output parser Usage (cli): $ route | jc --route or $ jc route Usage (module): import jc.parsers.route result = jc.parsers.route.parse(route_command_output) Schema: [ { "destination": string, "gateway": string, "genmask": string, "flags": string, "flags_pretty": [ string ] "metric": integer, "ref": integer, "use": integer, "mss": integer, "window": integer, "irtt": integer, "iface": string } ] Examples: $ route -ee | jc --route -p [ { "destination": "default", "gateway": "_gateway", "genmask": "0.0.0.0", "flags": "UG", "metric": 202, "ref": 0, "use": 0, "iface": "ens33", "mss": 0, "window": 0, "irtt": 0, "flags_pretty": [ "UP", "GATEWAY" ] }, { "destination": "192.168.71.0", "gateway": "0.0.0.0", "genmask": "255.255.255.0", "flags": "U", "metric": 202, "ref": 0, "use": 0, "iface": "ens33", "mss": 0, "window": 0, "irtt": 0, "flags_pretty": [ "UP" ] } ] $ route -ee | jc --route -p -r [ { "destination": "default", "gateway": "_gateway", "genmask": "0.0.0.0", "flags": "UG", "metric": "202", "ref": "0", "use": "0", "iface": "ens33", "mss": "0", "window": "0", "irtt": "0" }, { "destination": "192.168.71.0", "gateway": "0.0.0.0", "genmask": "255.255.255.0", "flags": "U", "metric": "202", "ref": "0", "use": "0", "iface": "ens33", "mss": "0", "window": "0", "irtt": "0" } ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux Version 1.7 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/rpm_qi.md000066400000000000000000000143211415226333200164210ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.rpm_qi jc - JSON CLI output utility `rpm -qi` command output parser Works with `rpm -qi [package]` or `rpm -qia`. The `..._epoch` calculated timestamp fields are naive (i.e. based on the local time of the system the parser is run on) The `..._epoch_utc` calculated timestamp fields are timezone-aware and is only available if the timezone field is UTC. Usage (cli): $ rpm -qia | jc --rpm-qi or $ jc rpm -qia Usage (module): import jc.parsers.rpm_qi result = jc.parsers.rpm_qi.parse(rpm_qi_command_output) Schema: [ { "name": string, "epoch": integer, "version": string, "release": string, "architecture": string, "install_date": string, "install_date_epoch": integer, # naive timestamp "install_date_epoch_utc": integer, # Aware timestamp if timezone is UTC "group": string, "size": integer, "license": string, "signature": string, "source_rpm": string, "build_date": string, "build_epoch": integer, # naive timestamp "build_epoch_utc": integer, # Aware timestamp if timezone is UTC "build_host": string, "relocations": string, "packager": string, "vendor": string, "url": string, "summary": string, "description": string } ] Examples: $ rpm -qia | jc --rpm-qi -p [ { "name": "make", "epoch": 1, "version": "3.82", "release": "24.el7", "architecture": "x86_64", "install_date": "Wed 16 Oct 2019 09:21:42 AM PDT", "group": "Development/Tools", "size": 1160660, "license": "GPLv2+", "signature": "RSA/SHA256, Thu 22 Aug 2019 02:34:59 PM PDT, Key ID 24c6a8a7f4a80eb5", "source_rpm": "make-3.82-24.el7.src.rpm", "build_date": "Thu 08 Aug 2019 05:47:25 PM PDT", "build_host": "x86-01.bsys.centos.org", "relocations": "(not relocatable)", "packager": "CentOS BuildSystem ", "vendor": "CentOS", "url": "http://www.gnu.org/software/make/", "summary": "A GNU tool which simplifies the build process for users", "description": "A GNU tool for controlling the generation of executables and other...", "build_epoch": 1565311645, "build_epoch_utc": null, "install_date_epoch": 1571242902, "install_date_epoch_utc": null }, { "name": "kbd-legacy", "version": "1.15.5", "release": "15.el7", "architecture": "noarch", "install_date": "Thu 15 Aug 2019 10:53:08 AM PDT", "group": "System Environment/Base", "size": 503608, "license": "GPLv2+", "signature": "RSA/SHA256, Mon 12 Nov 2018 07:17:49 AM PST, Key ID 24c6a8a7f4a80eb5", "source_rpm": "kbd-1.15.5-15.el7.src.rpm", "build_date": "Tue 30 Oct 2018 03:40:00 PM PDT", "build_host": "x86-01.bsys.centos.org", "relocations": "(not relocatable)", "packager": "CentOS BuildSystem ", "vendor": "CentOS", "url": "http://ftp.altlinux.org/pub/people/legion/kbd", "summary": "Legacy data for kbd package", "description": "The kbd-legacy package contains original keymaps for kbd package...", "build_epoch": 1540939200, "build_epoch_utc": null, "install_date_epoch": 1565891588, "install_date_epoch_utc": null }, ... ] $ rpm -qia | jc --rpm-qi -p -r [ { "name": "make", "epoch": "1", "version": "3.82", "release": "24.el7", "architecture": "x86_64", "install_date": "Wed 16 Oct 2019 09:21:42 AM PDT", "group": "Development/Tools", "size": "1160660", "license": "GPLv2+", "signature": "RSA/SHA256, Thu 22 Aug 2019 02:34:59 PM PDT, Key ID 24c6a8a7f4a80eb5", "source_rpm": "make-3.82-24.el7.src.rpm", "build_date": "Thu 08 Aug 2019 05:47:25 PM PDT", "build_host": "x86-01.bsys.centos.org", "relocations": "(not relocatable)", "packager": "CentOS BuildSystem ", "vendor": "CentOS", "url": "http://www.gnu.org/software/make/", "summary": "A GNU tool which simplifies the build process for users", "description": "A GNU tool for controlling the generation of executables and other..." }, { "name": "kbd-legacy", "version": "1.15.5", "release": "15.el7", "architecture": "noarch", "install_date": "Thu 15 Aug 2019 10:53:08 AM PDT", "group": "System Environment/Base", "size": "503608", "license": "GPLv2+", "signature": "RSA/SHA256, Mon 12 Nov 2018 07:17:49 AM PST, Key ID 24c6a8a7f4a80eb5", "source_rpm": "kbd-1.15.5-15.el7.src.rpm", "build_date": "Tue 30 Oct 2018 03:40:00 PM PDT", "build_host": "x86-01.bsys.centos.org", "relocations": "(not relocatable)", "packager": "CentOS BuildSystem ", "vendor": "CentOS", "url": "http://ftp.altlinux.org/pub/people/legion/kbd", "summary": "Legacy data for kbd package", "description": "The kbd-legacy package contains original keymaps for kbd package..." }, ... ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux Version 1.4 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/sfdisk.md000066400000000000000000000133201415226333200164130ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.sfdisk jc - JSON CLI output utility `sfdisk` command output parser Supports the following `sfdisk` options: - `-l` - `-F` - `-d` (deprecated - only for older versions of util-linux) - `-uM` (deprecated - only for older versions of util-linux) - `-uC` (deprecated - only for older versions of util-linux) - `-uS` (deprecated - only for older versions of util-linux) - `-uB` (deprecated - only for older versions of util-linux) Usage (cli): # sfdisk -l | jc --sfdisk or # jc sfdisk -l Usage (module): import jc.parsers.sfdisk result = jc.parsers.sfdisk.parse(sfdisk_command_output) Schema: [ { "disk": string, "disk_size": string, "free_disk_size": string, "bytes": integer, "free_bytes": integer, "sectors": integer, "free_sectors": integer, "cylinders": integer, "heads": integer, "sectors_per_track": integer, "units": string, "logical_sector_size": integer, "physical_sector_size": integer, "min_io_size": integer, "optimal_io_size": integer, "disk_label_type": string, "disk_identifier": string, "disk_model": string, "partitions": [ { "device": string, "boot": boolean, "start": integer, "end": integer, "size": string, # Note: will be integer when using deprecated -d sfdisk option "cyls": integer, "mib": integer, "blocks": integer, "sectors": integer, "id": string, "system": string, "type": string } ] } ] Examples: # sfdisk -l | jc --sfdisk -p [ { "disk": "/dev/sda", "cylinders": 2610, "heads": 255, "sectors_per_track": 63, "units": "cylinders of 8225280 bytes, blocks of 1024 bytes, counting from 0", "partitions": [ { "device": "/dev/sda1", "boot": true, "start": 0, "end": 130, "cyls": 131, "blocks": 1048576, "id": "83", "system": "Linux" }, { "device": "/dev/sda2", "boot": false, "start": 130, "end": 2610, "cyls": 2481, "blocks": 19921920, "id": "8e", "system": "Linux LVM" }, { "device": "/dev/sda3", "boot": false, "start": 0, "end": null, "cyls": 0, "blocks": 0, "id": "0", "system": "Empty" }, { "device": "/dev/sda4", "boot": false, "start": 0, "end": null, "cyls": 0, "blocks": 0, "id": "0", "system": "Empty" } ] }, { "disk": "/dev/mapper/centos-root", "cylinders": 2218, "heads": 255, "sectors_per_track": 63 }, { "disk": "/dev/mapper/centos-swap", "cylinders": 261, "heads": 255, "sectors_per_track": 63 } ] # sfdisk -l | jc --sfdisk -p -r [ { "disk": "/dev/sda", "cylinders": "2610", "heads": "255", "sectors_per_track": "63", "units": "cylinders of 8225280 bytes, blocks of 1024 bytes, counting from 0", "partitions": [ { "device": "/dev/sda1", "boot": "*", "start": "0+", "end": "130-", "cyls": "131-", "blocks": "1048576", "id": "83", "system": "Linux" }, { "device": "/dev/sda2", "boot": null, "start": "130+", "end": "2610-", "cyls": "2481-", "blocks": "19921920", "id": "8e", "system": "Linux LVM" }, { "device": "/dev/sda3", "boot": null, "start": "0", "end": "-", "cyls": "0", "blocks": "0", "id": "0", "system": "Empty" }, { "device": "/dev/sda4", "boot": null, "start": "0", "end": "-", "cyls": "0", "blocks": "0", "id": "0", "system": "Empty" } ] }, { "disk": "/dev/mapper/centos-root", "cylinders": "2218", "heads": "255", "sectors_per_track": "63" }, { "disk": "/dev/mapper/centos-swap", "cylinders": "261", "heads": "255", "sectors_per_track": "63" } ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux Version 1.2 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/shadow.md000066400000000000000000000050531415226333200164210ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.shadow jc - JSON CLI output utility `/etc/shadow` file parser Usage (cli): $ sudo cat /etc/shadow | jc --shadow Usage (module): import jc.parsers.shadow result = jc.parsers.shadow.parse(shadow_file_output) Schema: [ { "username": string, "password": string, "last_changed": integer, "minimum": integer, "maximum": integer, "warn": integer, "inactive": integer, "expire": integer } ] Examples: $ sudo cat /etc/shadow | jc --shadow -p [ { "username": "root", "password": "*", "last_changed": 18113, "minimum": 0, "maximum": 99999, "warn": 7, "inactive": null, "expire": null }, { "username": "daemon", "password": "*", "last_changed": 18113, "minimum": 0, "maximum": 99999, "warn": 7, "inactive": null, "expire": null }, { "username": "bin", "password": "*", "last_changed": 18113, "minimum": 0, "maximum": 99999, "warn": 7, "inactive": null, "expire": null }, ... ] $ sudo cat /etc/shadow | jc --shadow -p -r [ { "username": "root", "password": "*", "last_changed": "18113", "minimum": "0", "maximum": "99999", "warn": "7", "inactive": "", "expire": "" }, { "username": "daemon", "password": "*", "last_changed": "18113", "minimum": "0", "maximum": "99999", "warn": "7", "inactive": "", "expire": "" }, { "username": "bin", "password": "*", "last_changed": "18113", "minimum": "0", "maximum": "99999", "warn": "7", "inactive": "", "expire": "" }, ... ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux, darwin, aix, freebsd Version 1.4 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/ss.md000066400000000000000000000163211415226333200155610ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.ss jc - JSON CLI output utility `ss` command output parser Extended information options like -e and -p are not supported and may cause parsing irregularities. Usage (cli): $ ss | jc --ss or $ jc ss Usage (module): import jc.parsers.ss result = jc.parsers.ss.parse(ss_command_output) Schema: Information from https://www.cyberciti.biz/files/ss.html used to define field names [ { "netid": string, "state": string, "recv_q": integer, "send_q": integer, "local_address": string, "local_port": string, "local_port_num": integer, "peer_address": string, "peer_port": string, "peer_port_num": integer, "interface": string, "link_layer" string, "channel": string, "path": string, "pid": integer } ] Examples: $ sudo ss -a | jc --ss -p [ { "netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "channel": "rtnl:kernel" }, { "netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "pid": 893, "channel": "rtnl:systemd-resolve" }, ... { "netid": "p_raw", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "link_layer": "LLDP", "interface": "ens33" }, { "netid": "u_dgr", "state": "UNCONN", "recv_q": 0, "send_q": 0, "local_port": "93066", "peer_address": "*", "peer_port": "0", "path": "/run/user/1000/systemd/notify" }, { "netid": "u_seq", "state": "LISTEN", "recv_q": 0, "send_q": 128, "local_port": "20699", "peer_address": "*", "peer_port": "0", "path": "/run/udev/control" }, ... { "netid": "icmp6", "state": "UNCONN", "recv_q": 0, "send_q": 0, "local_address": "*", "local_port": "ipv6-icmp", "peer_address": "*", "peer_port": "*", "interface": "ens33" }, { "netid": "udp", "state": "UNCONN", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.53", "local_port": "domain", "peer_address": "0.0.0.0", "peer_port": "*", "interface": "lo" }, { "netid": "tcp", "state": "LISTEN", "recv_q": 0, "send_q": 128, "local_address": "127.0.0.53", "local_port": "domain", "peer_address": "0.0.0.0", "peer_port": "*", "interface": "lo" }, { "netid": "tcp", "state": "LISTEN", "recv_q": 0, "send_q": 128, "local_address": "0.0.0.0", "local_port": "ssh", "peer_address": "0.0.0.0", "peer_port": "*" }, { "netid": "tcp", "state": "LISTEN", "recv_q": 0, "send_q": 128, "local_address": "[::]", "local_port": "ssh", "peer_address": "[::]", "peer_port": "*" }, { "netid": "v_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_address": "999900439", "local_port": "1023", "peer_address": "0", "peer_port": "976", "local_port_num": 1023, "peer_port_num": 976 } ] $ sudo ss -a | jc --ss -p -r [ { "netid": "nl", "state": "UNCONN", "recv_q": "0", "send_q": "0", "peer_address": "*", "channel": "rtnl:kernel" }, { "netid": "nl", "state": "UNCONN", "recv_q": "0", "send_q": "0", "peer_address": "*", "pid": "893", "channel": "rtnl:systemd-resolve" }, ... { "netid": "p_raw", "state": "UNCONN", "recv_q": "0", "send_q": "0", "peer_address": "*", "link_layer": "LLDP", "interface": "ens33" }, { "netid": "u_dgr", "state": "UNCONN", "recv_q": "0", "send_q": "0", "local_port": "93066", "peer_address": "*", "peer_port": "0", "path": "/run/user/1000/systemd/notify" }, { "netid": "u_seq", "state": "LISTEN", "recv_q": "0", "send_q": "128", "local_port": "20699", "peer_address": "*", "peer_port": "0", "path": "/run/udev/control" }, ... { "netid": "icmp6", "state": "UNCONN", "recv_q": "0", "send_q": "0", "local_address": "*", "local_port": "ipv6-icmp", "peer_address": "*", "peer_port": "*", "interface": "ens33" }, { "netid": "udp", "state": "UNCONN", "recv_q": "0", "send_q": "0", "local_address": "127.0.0.53", "local_port": "domain", "peer_address": "0.0.0.0", "peer_port": "*", "interface": "lo" }, { "netid": "tcp", "state": "LISTEN", "recv_q": "0", "send_q": "128", "local_address": "127.0.0.53", "local_port": "domain", "peer_address": "0.0.0.0", "peer_port": "*", "interface": "lo" }, { "netid": "tcp", "state": "LISTEN", "recv_q": "0", "send_q": "128", "local_address": "0.0.0.0", "local_port": "ssh", "peer_address": "0.0.0.0", "peer_port": "*" }, { "netid": "tcp", "state": "LISTEN", "recv_q": "0", "send_q": "128", "local_address": "[::]", "local_port": "ssh", "peer_address": "[::]", "peer_port": "*" }, { "netid": "v_str", "state": "ESTAB", "recv_q": "0", "send_q": "0", "local_address": "999900439", "local_port": "1023", "peer_address": "0", "peer_port": "976" } ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux Version 1.5 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/stat.md000066400000000000000000000134121415226333200161050ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.stat jc - JSON CLI output utility `stat` command output parser The `xxx_epoch` calculated timestamp fields are naive (i.e. based on the local time of the system the parser is run on) The `xxx_epoch_utc` calculated timestamp fields are timezone-aware and are only available if the timezone field is UTC. Usage (cli): $ stat * | jc --stat or $ jc stat * Usage (module): import jc.parsers.stat result = jc.parsers.stat.parse(stat_command_output) Schema: [ { "file": string, "link_to" string, "size": integer, "blocks": integer, "io_blocks": integer, "type": string, "device": string, "inode": integer, "links": integer, "access": string, "flags": string, "uid": integer, "user": string, "gid": integer, "group": string, "access_time": string, # - = null "access_time_epoch": integer, # naive timestamp "access_time_epoch_utc": integer, # timezone-aware timestamp "modify_time": string, # - = null "modify_time_epoch": integer, # naive timestamp "modify_time_epoch_utc": integer, # timezone-aware timestamp "change_time": string, # - = null "change_time_epoch": integer, # naive timestamp "change_time_epoch_utc": integer, # timezone-aware timestamp "birth_time": string, # - = null "birth_time_epoch": integer, # naive timestamp "birth_time_epoch_utc": integer, # timezone-aware timestamp "unix_device": integer, "rdev": integer, "block_size": integer, "unix_flags": string } ] Examples: $ stat /bin/* | jc --stat -p [ { "file": "/bin/bash", "size": 1113504, "blocks": 2176, "io_blocks": 4096, "type": "regular file", "device": "802h/2050d", "inode": 131099, "links": 1, "access": "0755", "flags": "-rwxr-xr-x", "uid": 0, "user": "root", "gid": 0, "group": "root", "access_time": "2019-11-14 08:18:03.509681766 +0000", "modify_time": "2019-06-06 22:28:15.000000000 +0000", "change_time": "2019-08-12 17:21:29.521945390 +0000", "birth_time": null, "access_time_epoch": 1573748283, "access_time_epoch_utc": 1573719483, "modify_time_epoch": 1559885295, "modify_time_epoch_utc": 1559860095, "change_time_epoch": 1565655689, "change_time_epoch_utc": 1565630489, "birth_time_epoch": null, "birth_time_epoch_utc": null }, { "file": "/bin/btrfs", "size": 716464, "blocks": 1400, "io_blocks": 4096, "type": "regular file", "device": "802h/2050d", "inode": 131100, "links": 1, "access": "0755", "flags": "-rwxr-xr-x", "uid": 0, "user": "root", "gid": 0, "group": "root", "access_time": "2019-11-14 08:18:28.990834276 +0000", "modify_time": "2018-03-12 23:04:27.000000000 +0000", "change_time": "2019-08-12 17:21:29.545944399 +0000", "birth_time": null, "access_time_epoch": 1573748308, "access_time_epoch_utc": 1573719508, "modify_time_epoch": 1520921067, "modify_time_epoch_utc": 1520895867, "change_time_epoch": 1565655689, "change_time_epoch_utc": 1565630489, "birth_time_epoch": null, "birth_time_epoch_utc": null }, ... ] $ stat /bin/* | jc --stat -p -r [ { "file": "/bin/bash", "size": "1113504", "blocks": "2176", "io_blocks": "4096", "type": "regular file", "device": "802h/2050d", "inode": "131099", "links": "1", "access": "0755", "flags": "-rwxr-xr-x", "uid": "0", "user": "root", "gid": "0", "group": "root", "access_time": "2019-11-14 08:18:03.509681766 +0000", "modify_time": "2019-06-06 22:28:15.000000000 +0000", "change_time": "2019-08-12 17:21:29.521945390 +0000", "birth_time": null }, { "file": "/bin/btrfs", "size": "716464", "blocks": "1400", "io_blocks": "4096", "type": "regular file", "device": "802h/2050d", "inode": "131100", "links": "1", "access": "0755", "flags": "-rwxr-xr-x", "uid": "0", "user": "root", "gid": "0", "group": "root", "access_time": "2019-11-14 08:18:28.990834276 +0000", "modify_time": "2018-03-12 23:04:27.000000000 +0000", "change_time": "2019-08-12 17:21:29.545944399 +0000", "birth_time": null }, ... ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux, darwin, freebsd Version 1.10 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/sysctl.md000066400000000000000000000035711415226333200164600ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.sysctl jc - JSON CLI output utility `sysctl -a` command output parser Note: Since `sysctl` output is not easily parsable only a very simple key/value object will be output. An attempt is made to convert obvious integers and floats. If no conversion is desired, use the `-r` command-line argument or the `raw=True` argument in `parse()`. Usage (cli): $ sysctl -a | jc --sysctl or $ jc sysctl -a Usage (module): import jc.parsers.sysctl result = jc.parsers.sysctl.parse(sysctl_command_output) Schema: { "key1": string/integer/float, # best guess based on value "key2": string/integer/float, "key3": string/integer/float } Examples: $ sysctl -a | jc --sysctl -p { "user.cs_path": "/usr/bin:/bin:/usr/sbin:/sbin", "user.bc_base_max": 99, "user.bc_dim_max": 2048, "user.bc_scale_max": 99, "user.bc_string_max": 1000, "user.coll_weights_max": 2, "user.expr_nest_max": 32 ... } $ sysctl -a | jc --sysctl -p -r { "user.cs_path": "/usr/bin:/bin:/usr/sbin:/sbin", "user.bc_base_max": "99", "user.bc_dim_max": "2048", "user.bc_scale_max": "99", "user.bc_string_max": "1000", "user.coll_weights_max": "2", "user.expr_nest_max": "32", ... } ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: Dictionary. Raw or processed structured data. ## Parser Information Compatibility: linux, darwin, freebsd Version 1.2 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/systemctl.md000066400000000000000000000033511415226333200171620ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.systemctl jc - JSON CLI output utility `systemctl` command output parser Usage (cli): $ systemctl | jc --systemctl or $ jc systemctl Usage (module): import jc.parsers.systemctl result = jc.parsers.systemctl.parse(systemctl_command_output) Schema: [ { "unit": string, "load": string, "active": string, "sub": string, "description": string } ] Examples: $ systemctl -a | jc --systemctl -p [ { "unit": "proc-sys-fs-binfmt_misc.automount", "load": "loaded", "active": "active", "sub": "waiting", "description": "Arbitrary Executable File Formats File System Automount Point" }, { "unit": "dev-block-8:2.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "LVM PV 3klkIj-w1qk-DkJi-0XBJ-y3o7-i2Ac-vHqWBM on /dev/sda2 2" }, { "unit": "dev-cdrom.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "VMware_Virtual_IDE_CDROM_Drive" }, ... ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux Version 1.5 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/systemctl_lj.md000066400000000000000000000037121415226333200176500ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.systemctl_lj jc - JSON CLI output utility `systemctl list-jobs` command output parser Usage (cli): $ systemctl list-jobs | jc --systemctl-lj or $ jc systemctl list-jobs Usage (module): import jc.parsers.systemctl_lj result = jc.parsers.systemctl_lj.parse(systemctl_lj_command_output) Schema: [ { "job": integer, "unit": string, "type": string, "state": string } ] Examples: $ systemctl list-jobs| jc --systemctl-lj -p [ { "job": 3543, "unit": "nginxAfterGlusterfs.service", "type": "start", "state": "waiting" }, { "job": 3545, "unit": "glusterReadyForLocalhostMount.service", "type": "start", "state": "running" }, { "job": 3506, "unit": "nginx.service", "type": "start", "state": "waiting" } ] $ systemctl list-jobs| jc --systemctl-lj -p -r [ { "job": "3543", "unit": "nginxAfterGlusterfs.service", "type": "start", "state": "waiting" }, { "job": "3545", "unit": "glusterReadyForLocalhostMount.service", "type": "start", "state": "running" }, { "job": "3506", "unit": "nginx.service", "type": "start", "state": "waiting" } ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux Version 1.6 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/systemctl_ls.md000066400000000000000000000027631415226333200176660ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.systemctl_ls jc - JSON CLI output utility `systemctl list-sockets` command output parser Usage (cli): $ systemctl list-sockets | jc --systemctl-ls or $ jc systemctl list-sockets Usage (module): import jc.parsers.systemctl_ls result = jc.parsers.systemctl_ls.parse(systemctl_ls_command_output) Schema: [ { "listen": string, "unit": string, "activates": string } ] Examples: $ systemctl list-sockets | jc --systemctl-ls -p [ { "listen": "/dev/log", "unit": "systemd-journald.socket", "activates": "systemd-journald.service" }, { "listen": "/run/dbus/system_bus_socket", "unit": "dbus.socket", "activates": "dbus.service" }, { "listen": "/run/dmeventd-client", "unit": "dm-event.socket", "activates": "dm-event.service" }, ... ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux Version 1.5 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/systemctl_luf.md000066400000000000000000000025361415226333200200340ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.systemctl_luf jc - JSON CLI output utility `systemctl list-unit-files` command output parser Usage (cli): $ systemctl list-unit-files | jc --systemctl-luf or $ jc systemctl list-unit-files Usage (module): import jc.parsers.systemctl_luf result = jc.parsers.systemctl_luf.parse(systemctl_luf_command_output) Schema: [ { "unit_file": string, "state": string } ] Examples: $ systemctl list-unit-files | jc --systemctl-luf -p [ { "unit_file": "proc-sys-fs-binfmt_misc.automount", "state": "static" }, { "unit_file": "dev-hugepages.mount", "state": "static" }, { "unit_file": "dev-mqueue.mount", "state": "static" }, ... ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux Version 1.5 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/systeminfo.md000066400000000000000000000206671415226333200173440ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.systeminfo jc - JSON CLI output utility `systeminfo` command output parser Blank or missing elements are set to `null`. The `original_install_date_epoch` and `system_boot_time_epoch` calculated timestamp fields are naive (i.e. based on the local time of the system the parser is run on) The `original_install_date_epoch_utc` and `system_boot_time_epoch_utc` calculated timestamp fields are timezone-aware and are only available if the timezone field is UTC. Usage (cli): $ systeminfo | jc --systeminfo Usage (module): import jc.parsers.systeminfo result = jc.parsers.systeminfo.parse(systeminfo_command_output) Schema: { "host_name": string, "os_name": string, "os_version": string, "os_manufacturer": string, "os_configuration": string, "os_build_type": string, "registered_owner": string, "registered_organization": string, "product_id": string, "original_install_date": string, "original_install_date_epoch": integer, # naive timestamp "original_install_date_epoch_utc": integer, # timezone-aware timestamp "system_boot_time": string, "system_boot_time_epoch": integer, # naive timestamp "system_boot_time_epoch_utc": integer, # timezone-aware timestamp "system_manufacturer": string, "system_model": string, "system_type": string, "processors": [ string ], "bios_version": string, "windows_directory": string, "system_directory": string, "boot_device": string, "system_locale": string, "input_locale": string, "time_zone": string, "total_physical_memory_mb": string, "available_physical_memory_mb": integer, "virtual_memory_max_size_mb": integer, "virtual_memory_available_mb": integer, "virtual_memory_in_use_mb": integer, "page_file_locations": string, "domain": string, "logon_server": string, "hotfixs": [ string ], "network_cards": [ { "name": string, "connection_name": string, "status": string, "dhcp_enabled": boolean, "dhcp_server": string, "ip_addresses": [ string ] } ], "hyperv_requirements": { "vm_monitor_mode_extensions": boolean, "virtualization_enabled_in_firmware": boolean, "second_level_address_translation": boolean, "data_execution_prevention_available": boolean } } Examples: $ systeminfo | jc --systeminfo -p { "host_name": "TESTLAPTOP", "os_name": "Microsoft Windows 10 Enterprise", "os_version": "10.0.17134 N/A Build 17134", "os_manufacturer": "Microsoft Corporation", "os_configuration": "Member Workstation", "os_build_type": "Multiprocessor Free", "registered_owner": "Test, Inc.", "registered_organization": "Test, Inc.", "product_id": "11111-11111-11111-AA111", "original_install_date": "3/26/2019, 3:51:30 PM", "system_boot_time": "3/30/2021, 6:13:59 AM", "system_manufacturer": "Dell Inc.", "system_model": "Precision 5530", "system_type": "x64-based PC", "processors": [ "Intel64 Family 6 Model 158 Stepping 10 GenuineIntel ~2592 Mhz" ], "bios_version": "Dell Inc. 1.16.2, 4/21/2020", "windows_directory": "C:\WINDOWS", "system_directory": "C:\WINDOWS\system32", "boot_device": "\Device\HarddiskVolume2", "system_locale": "en-us;English (United States)", "input_locale": "en-us;English (United States)", "time_zone": "(UTC+00:00) UTC", "total_physical_memory_mb": 32503, "available_physical_memory_mb": 19743, "virtual_memory_max_size_mb": 37367, "virtual_memory_available_mb": 22266, "virtual_memory_in_use_mb": 15101, "page_file_locations": "C:\pagefile.sys", "domain": "test.com", "logon_server": "\\TESTDC01", "hotfixs": [ "KB2693643", "KB4601054" ], "network_cards": [ { "name": "Intel(R) Wireless-AC 9260 160MHz", "connection_name": "Wi-Fi", "status": null, "dhcp_enabled": true, "dhcp_server": "192.168.2.1", "ip_addresses": [ "192.168.2.219" ] } ], "hyperv_requirements": { "vm_monitor_mode_extensions": true, "virtualization_enabled_in_firmware": true, "second_level_address_translation": false, "data_execution_prevention_available": true }, "original_install_date_epoch": 1553640690, "original_install_date_epoch_utc": 1553615490, "system_boot_time_epoch": 1617110039, "system_boot_time_epoch_utc": 1617084839 } $ systeminfo | jc --systeminfo -p -r { "host_name": "TESTLAPTOP", "os_name": "Microsoft Windows 10 Enterprise", "os_version": "10.0.17134 N/A Build 17134", "os_manufacturer": "Microsoft Corporation", "os_configuration": "Member Workstation", "os_build_type": "Multiprocessor Free", "registered_owner": "Test, Inc.", "registered_organization": "Test, Inc.", "product_id": "11111-11111-11111-AA111", "original_install_date": "3/26/2019, 3:51:30 PM", "system_boot_time": "3/30/2021, 6:13:59 AM", "system_manufacturer": "Dell Inc.", "system_model": "Precision 5530", "system_type": "x64-based PC", "processors": [ "Intel64 Family 6 Model 158 Stepping 10 GenuineIntel ~2592 Mhz" ], "bios_version": "Dell Inc. 1.16.2, 4/21/2020", "windows_directory": "C:\WINDOWS", "system_directory": "C:\WINDOWS\system32", "boot_device": "\Device\HarddiskVolume2", "system_locale": "en-us;English (United States)", "input_locale": "en-us;English (United States)", "time_zone": "(UTC+00:00) UTC", "total_physical_memory_mb": "32,503 MB", "available_physical_memory_mb": "19,743 MB", "virtual_memory_max_size_mb": "37,367 MB", "virtual_memory_available_mb": "22,266 MB", "virtual_memory_in_use_mb": "15,101 MB", "page_file_locations": "C:\pagefile.sys", "domain": "test.com", "logon_server": "\\TESTDC01", "hotfixs": [ "KB2693643", "KB4601054" ], "network_cards": [ { "name": "Intel(R) Wireless-AC 9260 160MHz", "connection_name": "Wi-Fi", "status": "", "dhcp_enabled": "Yes", "dhcp_server": "192.168.2.1", "ip_addresses": [ "192.168.2.219" ] } ], "hyperv_requirements": { "vm_monitor_mode_extensions": "Yes", "virtualization_enabled_in_firmware": "Yes", "second_level_address_translation": "No", "data_execution_prevention_available": "Yes" } } ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: win32 Version 1.1 by Jon Smith (jon@rebelliondefense.com) jc-1.17.3/docs/parsers/time.md000066400000000000000000000117541415226333200160770ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.time jc - JSON CLI output utility `/usr/bin/time` command output parser Output from `/usr/bin/time` is sent to `STDERR`, so the `-o` option can be used to redirect the output to a file that can be read by `jc`. Alternatively, the output from `/usr/bin/time` can be redirected to `STDOUT` so `jc` can receive it. Note: `/usr/bin/time` is similar but different from the Bash builtin `time` command. Usage (cli): $ /usr/bin/time -o timefile.out sleep 2.5; cat timefile.out | jc --time -p Usage (module): import jc.parsers.time result = jc.parsers.time.parse(time_command_output) Schema: Source: https://www.freebsd.org/cgi/man.cgi?query=getrusage https://man7.org/linux/man-pages/man1/time.1.html { "real_time": float, "user_time": float, "system_time": float, "elapsed_time": string, "elapsed_time_hours": integer, "elapsed_time_minutes": integer, "elapsed_time_seconds": integer, "elapsed_time_centiseconds": integer, "elapsed_time_total_seconds": float, "cpu_percent": integer, # null if ? "average_shared_text_size": integer, "average_unshared_data_size": integer, "average_unshared_stack_size": integer, "average_shared_memory_size": integer, "maximum_resident_set_size": integer, "block_input_operations": integer, # aka File system inputs "block_output_operations": integer, # aka File system outputs "major_pagefaults": integer, "minor_pagefaults": integer, "swaps": integer, "page_reclaims": integer, "page_faults": integer, "messages_sent": integer, "messages_received": integer, "signals_received": integer, "voluntary_context_switches": integer, "involuntary_context_switches": integer "command_being_timed": string, "average_stack_size": integer, "average_total_size": integer, "average_resident_set_size": integer, "signals_delivered": integer, "page_size": integer, "exit_status": integer } Examples: $ /usr/bin/time --verbose -o timefile.out sleep 2.5; cat timefile.out | jc --time -p { "command_being_timed": "sleep 2.5", "user_time": 0.0, "system_time": 0.0, "cpu_percent": 0, "elapsed_time": "0:02.50", "average_shared_text_size": 0, "average_unshared_data_size": 0, "average_stack_size": 0, "average_total_size": 0, "maximum_resident_set_size": 2084, "average_resident_set_size": 0, "major_pagefaults": 0, "minor_pagefaults": 72, "voluntary_context_switches": 2, "involuntary_context_switches": 1, "swaps": 0, "block_input_operations": 0, "block_output_operations": 0, "messages_sent": 0, "messages_received": 0, "signals_delivered": 0, "page_size": 4096, "exit_status": 0, "elapsed_time_hours": 0, "elapsed_time_minutes": 0, "elapsed_time_seconds": 2, "elapsed_time_centiseconds": 50, "elapsed_time_total_seconds": 2.5 } $ /usr/bin/time --verbose -o timefile.out sleep 2.5; cat timefile.out | jc --time -p -r { "command_being_timed": ""sleep 2.5"", "user_time": "0.00", "system_time": "0.00", "cpu_percent": "0", "elapsed_time": "0:02.50", "average_shared_text_size": "0", "average_unshared_data_size": "0", "average_stack_size": "0", "average_total_size": "0", "maximum_resident_set_size": "2084", "average_resident_set_size": "0", "major_pagefaults": "0", "minor_pagefaults": "72", "voluntary_context_switches": "2", "involuntary_context_switches": "0", "swaps": "0", "block_input_operations": "0", "block_output_operations": "0", "messages_sent": "0", "messages_received": "0", "signals_delivered": "0", "page_size": "4096", "exit_status": "0" } ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: Dictionary. Raw or processed structured data. ## Parser Information Compatibility: linux, darwin, cygwin, aix, freebsd Version 1.3 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/timedatectl.md000066400000000000000000000045341415226333200174360ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.timedatectl jc - JSON CLI output utility `timedatectl` command output parser The `epoch_utc` calculated timestamp field is timezone-aware and is only available if the `universal_time` field is available. Usage (cli): $ timedatectl | jc --timedatectl or $ jc timedatectl Usage (module): import jc.parsers.timedatectl result = jc.parsers.timedatectl.parse(timedatectl_command_output) Schema: { "local_time": string, "universal_time": string, "epoch_utc": integer, # timezone-aware timestamp "rtc_time": string, "time_zone": string, "ntp_enabled": boolean, "ntp_synchronized": boolean, "system_clock_synchronized": boolean, "systemd-timesyncd.service_active": boolean, "rtc_in_local_tz": boolean, "dst_active": boolean } Examples: $ timedatectl | jc --timedatectl -p { "local_time": "Tue 2020-03-10 17:53:21 PDT", "universal_time": "Wed 2020-03-11 00:53:21 UTC", "rtc_time": "Wed 2020-03-11 00:53:21", "time_zone": "America/Los_Angeles (PDT, -0700)", "ntp_enabled": true, "ntp_synchronized": true, "rtc_in_local_tz": false, "dst_active": true, "epoch_utc": 1583888001 } $ timedatectl | jc --timedatectl -p -r { "local_time": "Tue 2020-03-10 17:53:21 PDT", "universal_time": "Wed 2020-03-11 00:53:21 UTC", "rtc_time": "Wed 2020-03-11 00:53:21", "time_zone": "America/Los_Angeles (PDT, -0700)", "ntp_enabled": "yes", "ntp_synchronized": "yes", "rtc_in_local_tz": "no", "dst_active": "yes" } ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: Dictionary. Raw or processed structured data. ## Parser Information Compatibility: linux Version 1.5 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/tracepath.md000066400000000000000000000067451415226333200171200ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.tracepath jc - JSON CLI output utility `tracepath` command output parser Supports `tracepath` and `tracepath6` output. Usage (cli): $ tracepath 1.2.3.4 | jc --tracepath or $ jc tracepath 1.2.3.4 Usage (module): import jc.parsers.tracepath result = jc.parsers.tracepath.parse(tracepath_command_output) Schema: { "pmtu": integer, "forward_hops": integer, "return_hops": integer, "hops": [ { "ttl": integer, "guess": boolean, "host": string, "reply_ms": float, "pmtu": integer, "asymmetric_difference": integer, "reached": boolean } ] } Examples: $ tracepath6 3ffe:2400:0:109::2 | jc --tracepath -p { "pmtu": 1480, "forward_hops": 2, "return_hops": 2, "hops": [ { "ttl": 1, "guess": true, "host": "[LOCALHOST]", "reply_ms": null, "pmtu": 1500, "asymmetric_difference": null, "reached": false }, { "ttl": 1, "guess": false, "host": "dust.inr.ac.ru", "reply_ms": 0.411, "pmtu": null, "asymmetric_difference": null, "reached": false }, { "ttl": 2, "guess": false, "host": "dust.inr.ac.ru", "reply_ms": 0.39, "pmtu": 1480, "asymmetric_difference": 1, "reached": false }, { "ttl": 2, "guess": false, "host": "3ffe:2400:0:109::2", "reply_ms": 463.514, "pmtu": null, "asymmetric_difference": null, "reached": true } ] } $ tracepath6 3ffe:2400:0:109::2 | jc --tracepath -p -r { "pmtu": "1480", "forward_hops": "2", "return_hops": "2", "hops": [ { "ttl": "1", "guess": true, "host": "[LOCALHOST]", "reply_ms": null, "pmtu": "1500", "asymmetric_difference": null, "reached": false }, { "ttl": "1", "guess": false, "host": "dust.inr.ac.ru", "reply_ms": "0.411", "pmtu": null, "asymmetric_difference": null, "reached": false }, { "ttl": "2", "guess": false, "host": "dust.inr.ac.ru", "reply_ms": "0.390", "pmtu": "1480", "asymmetric_difference": "1", "reached": false }, { "ttl": "2", "guess": false, "host": "3ffe:2400:0:109::2", "reply_ms": "463.514", "pmtu": null, "asymmetric_difference": null, "reached": true } ] } ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: Dictionary. Raw or processed structured data. ## Parser Information Compatibility: linux Version 1.3 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/traceroute.md000066400000000000000000000067171415226333200173210ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.traceroute jc - JSON CLI output utility `traceroute` command output parser Supports `traceroute` and `traceroute6` output. Note: On some operating systems you will need to redirect `STDERR` to `STDOUT` for destination info since the header line is sent to `STDERR`. A warning message will be printed to `STDERR` if the header row is not found. e.g. `$ traceroute 8.8.8.8 2>&1 | jc --traceroute` Usage (cli): $ traceroute 1.2.3.4 | jc --traceroute or $ jc traceroute 1.2.3.4 Usage (module): import jc.parsers.traceroute result = jc.parsers.traceroute.parse(traceroute_command_output) Schema: { "destination_ip": string, "destination_name": string, "hops": [ { "hop": integer, "probes": [ { "annotation": string, "asn": integer, "ip": string, "name": string, "rtt": float } ] } ] } Examples: $ traceroute google.com | jc --traceroute -p { "destination_ip": "216.58.194.46", "destination_name": "google.com", "hops": [ { "hop": 1, "probes": [ { "annotation": null, "asn": null, "ip": "216.230.231.141", "name": "216-230-231-141.static.houston.tx.oplink.net", "rtt": 198.574 }, { "annotation": null, "asn": null, "ip": "216.230.231.141", "name": "216-230-231-141.static.houston.tx.oplink.net", "rtt": null }, { "annotation": null, "asn": null, "ip": "216.230.231.141", "name": "216-230-231-141.static.houston.tx.oplink.net", "rtt": 198.65 } ] }, ... ] } $ traceroute google.com | jc --traceroute -p -r { "destination_ip": "216.58.194.46", "destination_name": "google.com", "hops": [ { "hop": "1", "probes": [ { "annotation": null, "asn": null, "ip": "216.230.231.141", "name": "216-230-231-141.static.houston.tx.oplink.net", "rtt": "198.574" }, { "annotation": null, "asn": null, "ip": "216.230.231.141", "name": "216-230-231-141.static.houston.tx.oplink.net", "rtt": null }, { "annotation": null, "asn": null, "ip": "216.230.231.141", "name": "216-230-231-141.static.houston.tx.oplink.net", "rtt": "198.650" } ] }, ... ] } ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: Dictionary. Raw or processed structured data. ## Parser Information Compatibility: linux, darwin, freebsd Version 1.4 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/ufw.md000066400000000000000000000131221415226333200157310ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.ufw jc - JSON CLI output utility `ufw status` command output parser Usage (cli): $ ufw status | jc --ufw or $ jc ufw status Usage (module): import jc.parsers.ufw result = jc.parsers.ufw.parse(ufw_command_output) Schema: { "status": string, "logging": string, "logging_level": string, "default": string, "new_profiles": string, "rules": [ { "action": string, "action_direction": string, # null if blank "index": integer, # null if blank "network_protocol": string, "to_ip": string, "to_ip_prefix": integer, "to_interface": string, "to_transport": string, "to_ports": [ integer ], "to_port_ranges": [ { "start": integer, "end": integer } ], "to_service": string, # null if any to ports or port_ranges are set "from_ip": string, "from_ip_prefix": integer, "from_interface": string, "from_transport": string, "from_ports": [ integer ], "from_port_ranges": [ { "start": integer, "end": integer } ], "from_service": string, # null if any from ports or port_ranges are set "comment": string # null if no comment } ] } Examples: $ ufw status verbose | jc --ufw -p { "status": "active", "logging": "on", "logging_level": "low", "default": "deny (incoming), allow (outgoing), disabled (routed)", "new_profiles": "skip", "rules": [ { "action": "ALLOW", "action_direction": "IN", "index": null, "network_protocol": "ipv4", "to_interface": "any", "to_transport": "any", "to_service": null, "to_ports": [ 22 ], "to_ip": "0.0.0.0", "to_ip_prefix": 0, "comment": null, "from_ip": "0.0.0.0", "from_ip_prefix": 0, "from_interface": "any", "from_transport": "any", "from_port_ranges": [ { "start": 0, "end": 65535 } ], "from_service": null }, { "action": "ALLOW", "action_direction": "IN", "index": null, "network_protocol": "ipv4", "to_interface": "any", "to_transport": "tcp", "to_service": null, "to_ports": [ 80, 443 ], "to_ip": "0.0.0.0", "to_ip_prefix": 0, "comment": null, "from_ip": "0.0.0.0", "from_ip_prefix": 0, "from_interface": "any", "from_transport": "any", "from_port_ranges": [ { "start": 0, "end": 65535 } ], "from_service": null }, ... ] } $ ufw status verbose | jc --ufw -p -r { "status": "active", "logging": "on", "logging_level": "low", "default": "deny (incoming), allow (outgoing), disabled (routed)", "new_profiles": "skip", "rules": [ { "action": "ALLOW", "action_direction": "IN", "index": null, "network_protocol": "ipv4", "to_interface": "any", "to_transport": "any", "to_service": null, "to_ports": [ "22" ], "to_ip": "0.0.0.0", "to_ip_prefix": "0", "comment": null, "from_ip": "0.0.0.0", "from_ip_prefix": "0", "from_interface": "any", "from_transport": "any", "from_port_ranges": [ { "start": "0", "end": "65535" } ], "from_service": null }, { "action": "ALLOW", "action_direction": "IN", "index": null, "network_protocol": "ipv4", "to_interface": "any", "to_transport": "tcp", "to_service": null, "to_ports": [ "80", "443" ], "to_ip": "0.0.0.0", "to_ip_prefix": "0", "comment": null, "from_ip": "0.0.0.0", "from_ip_prefix": "0", "from_interface": "any", "from_transport": "any", "from_port_ranges": [ { "start": "0", "end": "65535" } ], "from_service": null }, ... ] } ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: Dictionary. Raw or processed structured data. ## Parser Information Compatibility: linux Version 1.1 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/ufw_appinfo.md000066400000000000000000000074221415226333200174530ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.ufw_appinfo jc - JSON CLI output utility `ufw app info [application]` command output parser Supports individual apps via `ufw app info [application]` and all apps list via `ufw app info all`. Because `ufw` application definitions allow overlapping ports and port ranges, this parser preserves that behavior, but also provides `normalized` lists and ranges that remove duplicate ports and merge overlapping ranges. Usage (cli): $ ufw app info OpenSSH | jc --ufw-appinfo or $ jc ufw app info OpenSSH Usage (module): import jc.parsers.ufw_appinfo result = jc.parsers.ufw_appinfo.parse(ufw_appinfo_command_output) Schema: [ { "profile": string, "title": string, "description": string, "tcp_list": [ integer ], "tcp_ranges": [ { "start": integer, # 'any' is converted to start/end: 0/65535 "end": integer } ], "udp_list": [ integer ], "udp_ranges": [ { "start": integer, # 'any' is converted to start/end: 0/65535 "end": integer } ], "normalized_tcp_list": [ integers # duplicates and overlapping are removed ], "normalized_tcp_ranges": [ { "start": integer, # 'any' is converted to start/end: 0/65535 "end": integers # overlapping are merged } ], "normalized_udp_list": [ integers # duplicates and overlapping are removed ], "normalized_udp_ranges": [ { "start": integer, # 'any' is converted to start/end: 0/65535 "end": integers # overlapping are merged } ] } ] Examples: $ ufw app info MSN | jc --ufw-appinfo -p [ { "profile": "MSN", "title": "MSN Chat", "description": "MSN chat protocol (with file transfer and voice)", "tcp_list": [ 1863, 6901 ], "udp_list": [ 1863, 6901 ], "tcp_ranges": [ { "start": 6891, "end": 6900 } ], "normalized_tcp_list": [ 1863, 6901 ], "normalized_tcp_ranges": [ { "start": 6891, "end": 6900 } ], "normalized_udp_list": [ 1863, 6901 ] } ] $ ufw app info MSN | jc --ufw-appinfo -p -r [ { "profile": "MSN", "title": "MSN Chat", "description": "MSN chat protocol (with file transfer and voice)", "tcp_list": [ "1863", "6901" ], "udp_list": [ "1863", "6901" ], "tcp_ranges": [ { "start": "6891", "end": "6900" } ] } ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux Version 1.1 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/uname.md000066400000000000000000000030121415226333200162320ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.uname jc - JSON CLI output utility `uname -a` command output parser Note: Must use `uname -a` Usage (cli): $ uname -a | jc --uname or $ jc uname -a Usage (module): import jc.parsers.uname result = jc.parsers.uname.parse(uname_command_output) Schema: { "kernel_name": string, "node_name": string, "kernel_release": string, "operating_system": string, "hardware_platform": string, "processor": string, "machine": string, "kernel_version": string } Example: $ uname -a | jc --uname -p { "kernel_name": "Linux", "node_name": "user-ubuntu", "kernel_release": "4.15.0-65-generic", "operating_system": "GNU/Linux", "hardware_platform": "x86_64", "processor": "x86_64", "machine": "x86_64", "kernel_version": "#74-Ubuntu SMP Tue Sep 17 17:06:04 UTC 2019" } ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: Dictionary. Raw or processed structured data. ## Parser Information Compatibility: linux, darwin, freebsd Version 1.7 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/upower.md000066400000000000000000000150651415226333200164610ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.upower jc - JSON CLI output utility `upower` command output parser The `updated_epoch` calculated timestamp field is naive (i.e. based on the local time of the system the parser is run on) The `updated_epoch_utc` calculated timestamp field is timezone-aware and is only available if the timezone field is UTC. Usage (cli): $ upower -d | jc --upower or $ jc upower -d Usage (module): import jc.parsers.upower result = jc.parsers.upower.parse(upower_command_output) Schema: [ { "type": string, "device_name": string, "native_path": string, "power_supply": boolean, "updated": string, "updated_epoch": integer, # null if date-time conversion fails "updated_epoch_utc": integer, # null if date-time conversion fails "updated_seconds_ago": integer, "has_history": boolean, "has_statistics": boolean, "detail": { "type": string, "warning_level": string, # null if none "online": boolean, "icon_name": string "present": boolean, "rechargeable": boolean, "state": string, "energy": float, "energy_unit": string, "energy_empty": float, "energy_empty_unit": string, "energy_full": float, "energy_full_unit": string, "energy_full_design": float, "energy_full_design_unit": string, "energy_rate": float, "energy_rate_unit": string, "voltage": float, "voltage_unit": string, "time_to_full": float, "time_to_full_unit": string, "percentage": float, "capacity": float, "technology": string }, "history_charge": [ { "time": integer, "percent_charged": float, "status": string } ], "history_rate":[ { "time": integer, "percent_charged": float, "status": string } ], "daemon_version": string, "on_battery": boolean, "lid_is_closed": boolean, "lid_is_present": boolean, "critical_action": string } ] Examples: $ upower -i /org/freedesktop/UPower/devices/battery | jc --upower -p [ { "native_path": "/sys/devices/LNXSYSTM:00/device:00/PNP0C0A:00/power_supply/BAT0", "vendor": "NOTEBOOK", "model": "BAT", "serial": "0001", "power_supply": true, "updated": "Thu 11 Mar 2021 06:28:08 PM UTC", "has_history": true, "has_statistics": true, "detail": { "type": "battery", "present": true, "rechargeable": true, "state": "charging", "energy": 22.3998, "energy_empty": 0.0, "energy_full": 52.6473, "energy_full_design": 62.16, "energy_rate": 31.6905, "voltage": 12.191, "time_to_full": 57.3, "percentage": 42.5469, "capacity": 84.6964, "technology": "lithium-ion", "energy_unit": "Wh", "energy_empty_unit": "Wh", "energy_full_unit": "Wh", "energy_full_design_unit": "Wh", "energy_rate_unit": "W", "voltage_unit": "V", "time_to_full_unit": "minutes" }, "history_charge": [ { "time": 1328809335, "percent_charged": 42.547, "status": "charging" }, { "time": 1328809305, "percent_charged": 42.02, "status": "charging" } ], "history_rate": [ { "time": 1328809335, "percent_charged": 31.691, "status": "charging" } ], "updated_seconds_ago": 441975, "updated_epoch": 1615516088, "updated_epoch_utc": 1615487288 } ] $ upower -i /org/freedesktop/UPower/devices/battery | jc --upower -p -r [ { "native_path": "/sys/devices/LNXSYSTM:00/device:00/PNP0C0A:00/power_supply/BAT0", "vendor": "NOTEBOOK", "model": "BAT", "serial": "0001", "power_supply": "yes", "updated": "Thu 11 Mar 2021 06:28:08 PM UTC (441975 seconds ago)", "has_history": "yes", "has_statistics": "yes", "detail": { "type": "battery", "present": "yes", "rechargeable": "yes", "state": "charging", "energy": "22.3998 Wh", "energy_empty": "0 Wh", "energy_full": "52.6473 Wh", "energy_full_design": "62.16 Wh", "energy_rate": "31.6905 W", "voltage": "12.191 V", "time_to_full": "57.3 minutes", "percentage": "42.5469%", "capacity": "84.6964%", "technology": "lithium-ion" }, "history_charge": [ { "time": "1328809335", "percent_charged": "42.547", "status": "charging" }, { "time": "1328809305", "percent_charged": "42.020", "status": "charging" } ], "history_rate": [ { "time": "1328809335", "percent_charged": "31.691", "status": "charging" } ] } ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux Version 1.3 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/uptime.md000066400000000000000000000037141415226333200164410ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.uptime jc - JSON CLI output utility `uptime` command output parser Usage (cli): $ uptime | jc --uptime or $ jc uptime Usage (module): import jc.parsers.uptime result = jc.parsers.uptime.parse(uptime_command_output) Schema: { "time": string, "time_hour": integer, "time_minute": integer, "time_second": integer, # null if not displayed "uptime": string, "uptime_days": integer, "uptime_hours": integer, "uptime_minutes": integer, "uptime_total_seconds": integer, "users": integer, "load_1m": float, "load_5m": float, "load_15m": float } Example: $ uptime | jc --uptime -p { "time": "11:35", "uptime": "3 days, 4:03", "users": 5, "load_1m": 1.88, "load_5m": 2.0, "load_15m": 1.94, "time_hour": 11, "time_minute": 35, "time_second": null, "uptime_days": 3, "uptime_hours": 4, "uptime_minutes": 3, "uptime_total_seconds": 273780 } $ uptime | jc --uptime -p -r { "time": "11:36", "uptime": "3 days, 4:04", "users": "5", "load_1m": "1.88", "load_5m": "1.99", "load_15m": "1.94" } ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: Dictionary. Raw or processed structured data ## Parser Information Compatibility: linux, darwin, cygwin, aix, freebsd Version 1.6 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/vmstat.md000066400000000000000000000104411415226333200164470ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.vmstat jc - JSON CLI output utility `vmstat` command output parser Options supported: `-a`, `-w`, `-d`, `-t` The `epoch` calculated timestamp field is naive (i.e. based on the local time of the system the parser is run on) The `epoch_utc` calculated timestamp field is timezone-aware and is only available if the timezone field is UTC. Usage (cli): $ vmstat | jc --vmstat or $ jc vmstat Usage (module): import jc.parsers.vmstat result = jc.parsers.vmstat.parse(vmstat_command_output) Schema: [ { "runnable_procs": integer, "uninterruptible_sleeping_procs": integer, "virtual_mem_used": integer, "free_mem": integer, "buffer_mem": integer, "cache_mem": integer, "inactive_mem": integer, "active_mem": integer, "swap_in": integer, "swap_out": integer, "blocks_in": integer, "blocks_out": integer, "interrupts": integer, "context_switches": integer, "user_time": integer, "system_time": integer, "idle_time": integer, "io_wait_time": integer, "stolen_time": integer, "disk": string, "total_reads": integer, "merged_reads": integer, "sectors_read": integer, "reading_ms": integer, "total_writes": integer, "merged_writes": integer, "sectors_written": integer, "writing_ms": integer, "current_io": integer, "io_seconds": integer, "timestamp": string, "timezone": string, "epoch": integer, # naive timestamp if -t flag is used "epoch_utc": integer # aware timestamp if -t flag is used and UTC TZ } ] Examples: $ vmstat | jc --vmstat -p [ { "runnable_procs": 2, "uninterruptible_sleeping_procs": 0, "virtual_mem_used": 0, "free_mem": 2794468, "buffer_mem": 2108, "cache_mem": 741208, "inactive_mem": null, "active_mem": null, "swap_in": 0, "swap_out": 0, "blocks_in": 1, "blocks_out": 3, "interrupts": 29, "context_switches": 57, "user_time": 0, "system_time": 0, "idle_time": 99, "io_wait_time": 0, "stolen_time": 0, "timestamp": null, "timezone": null } ] $ vmstat | jc --vmstat -p -r [ { "runnable_procs": "2", "uninterruptible_sleeping_procs": "0", "virtual_mem_used": "0", "free_mem": "2794468", "buffer_mem": "2108", "cache_mem": "741208", "inactive_mem": null, "active_mem": null, "swap_in": "0", "swap_out": "0", "blocks_in": "1", "blocks_out": "3", "interrupts": "29", "context_switches": "57", "user_time": "0", "system_time": "0", "idle_time": "99", "io_wait_time": "0", "stolen_time": "0", "timestamp": null, "timezone": null } ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux Version 1.1 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/vmstat_s.md000066400000000000000000000116451415226333200170000ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.vmstat_s jc - JSON CLI output utility `vmstat` command output streaming parser > This streaming parser outputs JSON Lines Options supported: `-a`, `-w`, `-d`, `-t` The `epoch` calculated timestamp field is naive (i.e. based on the local time of the system the parser is run on) The `epoch_utc` calculated timestamp field is timezone-aware and is only available if the timezone field is UTC. Usage (cli): $ vmstat | jc --vmstat-s > Note: When piping `jc` converted `vmstat` output to other processes it may appear the output is hanging due to the OS pipe buffers. This is because `vmstat` output is too small to quickly fill up the buffer. Use the `-u` option to unbuffer the `jc` output if you would like immediate output. See the [readme](https://github.com/kellyjonbrazil/jc/tree/master#unbuffering-output) for more information. Usage (module): import jc.parsers.vmstat_s result = jc.parsers.vmstat_s.parse(vmstat_command_output.splitlines()) # result is an iterable object for item in result: # do something Schema: { "runnable_procs": integer, "uninterruptible_sleeping_procs": integer, "virtual_mem_used": integer, "free_mem": integer, "buffer_mem": integer, "cache_mem": integer, "inactive_mem": integer, "active_mem": integer, "swap_in": integer, "swap_out": integer, "blocks_in": integer, "blocks_out": integer, "interrupts": integer, "context_switches": integer, "user_time": integer, "system_time": integer, "idle_time": integer, "io_wait_time": integer, "stolen_time": integer, "disk": string, "total_reads": integer, "merged_reads": integer, "sectors_read": integer, "reading_ms": integer, "total_writes": integer, "merged_writes": integer, "sectors_written": integer, "writing_ms": integer, "current_io": integer, "io_seconds": integer, "timestamp": string, "timezone": string, "epoch": integer, # naive timestamp if -t flag is used "epoch_utc": integer # aware timestamp if -t flag is used and UTC TZ "_jc_meta": # This object only exists if using -qq or ignore_exceptions=True { "success": booean, # true if successfully parsed, false if error "error": string, # exists if "success" is false "line": string # exists if "success" is false } } Examples: $ vmstat | jc --vmstat-s {"runnable_procs":2,"uninterruptible_sleeping_procs":0,"virtual_mem_used":0,"free_mem":2794468,"buffer_mem":2108,"cache_mem":741208,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":1,"blocks_out":3,"interrupts":29,"context_switches":57,"user_time":0,"system_time":0,"idle_time":99,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null} ... $ vmstat | jc --vmstat-s -r {"runnable_procs":"2","uninterruptible_sleeping_procs":"0","virtual_mem_used":"0","free_mem":"2794468","buffer_mem":"2108","cache_mem":"741208","inactive_mem":null,"active_mem":null,"swap_in":"0","swap_out":"0","blocks_in":"1","blocks_out":"3","interrupts":"29","context_switches":"57","user_time":"0","system_time":"0","idle_time":"99","io_wait_time":"0","stolen_time":"0","timestamp":null,"timezone":null} ... ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False, ignore_exceptions=False) ``` Main text parsing generator function. Returns an iterator object. Parameters: data: (iterable) line-based text data to parse (e.g. sys.stdin or str.splitlines()) raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True ignore_exceptions: (boolean) ignore parsing exceptions if True Yields: Dictionary. Raw or processed structured data. Returns: Iterator object ## Parser Information Compatibility: linux Version 0.6 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/w.md000066400000000000000000000050401415226333200153760ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.w jc - JSON CLI output utility `w` command output parser Usage (cli): $ w | jc --w or $ jc w Usage (module): import jc.parsers.w result = jc.parsers.w.parse(w_command_output) Schema: [ { "user": string, # '-' = null "tty": string, # '-' = null "from": string, # '-' = null "login_at": string, # '-' = null "idle": string, # '-' = null "jcpu": string, "pcpu": string, "what": string # '-' = null } ] Examples: $ w | jc --w -p [ { "user": "root", "tty": "tty1", "from": null, "login_at": "07:49", "idle": "1:15m", "jcpu": "0.00s", "pcpu": "0.00s", "what": "-bash" }, { "user": "root", "tty": "ttyS0", "from": null, "login_at": "06:24", "idle": "0.00s", "jcpu": "0.43s", "pcpu": "0.00s", "what": "w" }, { "user": "root", "tty": "pts/0", "from": "192.168.71.1", "login_at": "06:29", "idle": "2:35m", "jcpu": "0.00s", "pcpu": "0.00s", "what": "-bash" } ] $ w | jc --w -p -r [ { "user": "kbrazil", "tty": "tty1", "from": "-", "login_at": "07:49", "idle": "1:16m", "jcpu": "0.00s", "pcpu": "0.00s", "what": "-bash" }, { "user": "kbrazil", "tty": "ttyS0", "from": "-", "login_at": "06:24", "idle": "2.00s", "jcpu": "0.46s", "pcpu": "0.00s", "what": "w" }, { "user": "kbrazil", "tty": "pts/0", "from": "192.168.71.1", "login_at": "06:29", "idle": "2:36m", "jcpu": "0.00s", "pcpu": "0.00s", "what": "-bash" } ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux, darwin, cygwin, aix, freebsd Version 1.5 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/wc.md000066400000000000000000000026271415226333200155510ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.wc jc - JSON CLI output utility `wc` command output parser Usage (cli): $ wc file.txt | jc --wc or $ jc wc file.txt Usage (module): import jc.parsers.wc result = jc.parsers.wc.parse(wc_command_output) Schema: [ { "filename": string, "lines": integer, "words": integer, "characters": integer } ] Examples: $ wc * | jc --wc -p [ { "filename": "airport-I.json", "lines": 1, "words": 30, "characters": 307 }, { "filename": "airport-I.out", "lines": 15, "words": 33, "characters": 348 }, { "filename": "airport-s.json", "lines": 1, "words": 202, "characters": 2152 }, ... ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux, darwin, cygwin, aix, freebsd Version 1.3 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/who.md000066400000000000000000000064701415226333200157350ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.who jc - JSON CLI output utility `who` command output parser Accepts any of the following who options (or no options): `-aTH` The `epoch` calculated timestamp field is naive (i.e. based on the local time of the system the parser is run on) Usage (cli): $ who | jc --who or $ jc who Usage (module): import jc.parsers.who result = jc.parsers.who.parse(who_command_output) Schema: [ { "user": string, "event": string, "writeable_tty": string, "tty": string, "time": string, "epoch": integer, # naive timestamp. null if time cannot be converted "idle": string, "pid": integer, "from": string, "comment": string } ] Examples: $ who -a | jc --who -p [ { "event": "reboot", "time": "Feb 7 23:31", "pid": 1, "epoch": null }, { "user": "joeuser", "writeable_tty": "-", "tty": "console", "time": "Feb 7 23:32", "idle": "old", "pid": 105, "epoch": null }, { "user": "joeuser", "writeable_tty": "+", "tty": "ttys000", "time": "Feb 13 16:44", "idle": ".", "pid": 51217, "comment": "term=0 exit=0", "epoch": null }, { "user": "joeuser", "writeable_tty": "?", "tty": "ttys003", "time": "Feb 28 08:59", "idle": "01:36", "pid": 41402, "epoch": null }, { "user": "joeuser", "writeable_tty": "+", "tty": "ttys004", "time": "Mar 1 16:35", "idle": ".", "pid": 15679, "from": "192.168.1.5", "epoch": null } ] $ who -a | jc --who -p -r [ { "event": "reboot", "time": "Feb 7 23:31", "pid": "1" }, { "user": "joeuser", "writeable_tty": "-", "tty": "console", "time": "Feb 7 23:32", "idle": "old", "pid": "105" }, { "user": "joeuser", "writeable_tty": "+", "tty": "ttys000", "time": "Feb 13 16:44", "idle": ".", "pid": "51217", "comment": "term=0 exit=0" }, { "user": "joeuser", "writeable_tty": "?", "tty": "ttys003", "time": "Feb 28 08:59", "idle": "01:36", "pid": "41402" }, { "user": "joeuser", "writeable_tty": "+", "tty": "ttys004", "time": "Mar 1 16:35", "idle": ".", "pid": "15679", "from": "192.168.1.5" } ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. ## Parser Information Compatibility: linux, darwin, cygwin, aix, freebsd Version 1.5 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/xml.md000066400000000000000000000040361415226333200157340ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.xml jc - JSON CLI output utility `XML` file parser Usage (cli): $ cat foo.xml | jc --xml Usage (module): import jc.parsers.xml result = jc.parsers.xml.parse(xml_file_output) Schema: XML Document converted to a Dictionary See https://github.com/martinblech/xmltodict for details { "key1": string/object, "key2": string/object } Examples: $ cat cd_catalog.xml Empire Burlesque Bob Dylan USA Columbia 10.90 1985 Hide your heart Bonnie Tyler UK CBS Records 9.90 1988 ... $ cat cd_catalog.xml | jc --xml -p { "CATALOG": { "CD": [ { "TITLE": "Empire Burlesque", "ARTIST": "Bob Dylan", "COUNTRY": "USA", "COMPANY": "Columbia", "PRICE": "10.90", "YEAR": "1985" }, { "TITLE": "Hide your heart", "ARTIST": "Bonnie Tyler", "COUNTRY": "UK", "COMPANY": "CBS Records", "PRICE": "9.90", "YEAR": "1988" }, ... } ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: Dictionary. Raw or processed structured data. ## Parser Information Compatibility: linux, darwin, cygwin, win32, aix, freebsd Version 1.6 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/parsers/yaml.md000066400000000000000000000044271415226333200161020ustar00rootroot00000000000000[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.yaml jc - JSON CLI output utility `YAML` file parser Usage (cli): $ cat foo.yaml | jc --yaml Usage (module): import jc.parsers.yaml result = jc.parsers.yaml.parse(yaml_file_output) Schema: YAML Document converted to a Dictionary See https://pypi.org/project/ruamel.yaml for details [ { "key1": string/int/float/boolean/null/array/object, "key2": string/int/float/boolean/null/array/object } ] Examples: $ cat istio-mtls-permissive.yaml apiVersion: "authentication.istio.io/v1alpha1" kind: "Policy" metadata: name: "default" namespace: "default" spec: peers: - mtls: {} --- apiVersion: "networking.istio.io/v1alpha3" kind: "DestinationRule" metadata: name: "default" namespace: "default" spec: host: "*.default.svc.cluster.local" trafficPolicy: tls: mode: ISTIO_MUTUAL $ cat istio-mtls-permissive.yaml | jc --yaml -p [ { "apiVersion": "authentication.istio.io/v1alpha1", "kind": "Policy", "metadata": { "name": "default", "namespace": "default" }, "spec": { "peers": [ { "mtls": {} } ] } }, { "apiVersion": "networking.istio.io/v1alpha3", "kind": "DestinationRule", "metadata": { "name": "default", "namespace": "default" }, "spec": { "host": "*.default.svc.cluster.local", "trafficPolicy": { "tls": { "mode": "ISTIO_MUTUAL" } } } } ] ## info ```python info() ``` Provides parser metadata (version, author, etc.) ## parse ```python parse(data, raw=False, quiet=False) ``` Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries representing the YAML documents. ## Parser Information Compatibility: linux, darwin, cygwin, win32, aix, freebsd Version 1.6 by Kelly Brazil (kellyjonbrazil@gmail.com) jc-1.17.3/docs/readme.md000066400000000000000000000041731415226333200147140ustar00rootroot00000000000000 # jc JC - JSON CLI output utility * kellyjonbrazil@gmail.com This package serializes the output of many standard unix command line tools to JSON format. For documentation on each parser, see the [documentation site](https://kellyjonbrazil.github.io/jc/). CLI Example: $ dig example.com | jc --dig -p [ { "id": 2951, "opcode": "QUERY", "status": "NOERROR", "flags": [ "qr", "rd", "ra" ], "query_num": 1, "answer_num": 1, "authority_num": 0, "additional_num": 1, "opt_pseudosection": { "edns": { "version": 0, "flags": [], "udp": 4096 } }, "question": { "name": "example.com.", "class": "IN", "type": "A" }, "answer": [ { "name": "example.com.", "class": "IN", "type": "A", "ttl": 39302, "data": "93.184.216.34" } ], "query_time": 49, "server": "2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)", "when": "Fri Apr 16 16:05:10 PDT 2021", "rcvd": 56, "when_epoch": 1618614310, "when_epoch_utc": null } ] Module Example: >>> import jc.parsers.dig >>> >>> import subprocess >>> import jc.parsers.dig >>> >>> cmd_output = subprocess.check_output(['dig', 'example.com'], text=True) >>> data = jc.parsers.dig.parse(cmd_output) >>> >>> data [{'id': 64612, 'opcode': 'QUERY', 'status': 'NOERROR', 'flags': ['qr', 'rd', 'ra'], 'query_num': 1, 'answer_num': 1, 'authority_num': 0, 'additional_num': 1, 'opt_pseudosection': {'edns': {'version': 0, 'flags': [], 'udp': 4096}}, 'question': {'name': 'example.com.', 'class': 'IN', 'type': 'A'}, 'answer': [{'name': 'example.com.', 'class': 'IN', 'type': 'A', 'ttl': 29658, 'data': '93.184.216.34'}], 'query_time': 52, 'server': '2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)', 'when': 'Fri Apr 16 16:13:00 PDT 2021', 'rcvd': 56, 'when_epoch': 1618614780, 'when_epoch_utc': None}] jc-1.17.3/docs/utils.md000066400000000000000000000074641415226333200146250ustar00rootroot00000000000000 # utils jc - JSON CLI output utility utils ## warning_message ```python warning_message(message_lines) ``` Prints warning message for non-fatal issues. The first line is prepended with 'jc: Warning - ' and subsequent lines are indented. Wraps text as needed based on the terminal width. Parameters: message: (list) list of string lines Returns: None - just prints output to STDERR ## error_message ```python error_message(message_lines) ``` Prints an error message for fatal issues. The first line is prepended with 'jc: Error - ' and subsequent lines are indented. Wraps text as needed based on the terminal width. Parameters: message: (list) list of string lines Returns: None - just prints output to STDERR ## compatibility ```python compatibility(mod_name, compatible, quiet=False) ``` Checks for the parser's compatibility with the running OS platform. Parameters: mod_name: (string) __name__ of the calling module compatible: (list) sys.platform name(s) compatible with the parser compatible options: linux, darwin, cygwin, win32, aix, freebsd quiet: (bool) supress compatibility message if True Returns: None - just prints output to STDERR ## has_data ```python has_data(data) ``` Checks if the input contains data. If there are any non-whitespace characters then return True, else return False Parameters: data: (string) input to check whether it contains data Returns: Boolean True if input string (data) contains non-whitespace characters, otherwise False ## convert_to_int ```python convert_to_int(value) ``` Converts string and float input to int. Strips all non-numeric characters from strings. Parameters: value: (string/integer/float) Input value Returns: integer/None Integer if successful conversion, otherwise None ## convert_to_float ```python convert_to_float(value) ``` Converts string and int input to float. Strips all non-numeric characters from strings. Parameters: value: (string) Input value Returns: float/None Float if successful conversion, otherwise None ## convert_to_bool ```python convert_to_bool(value) ``` Converts string, integer, or float input to boolean by checking for 'truthy' values Parameters: value: (string/integer/float) Input value Returns: True/False False unless a 'truthy' number or string is found ('y', 'yes', 'true', '1', 1, -1, etc.) ## stream_success ```python stream_success(output_line, ignore_exceptions) ``` Add `_jc_meta` object to output line if `ignore_exceptions=True` ## stream_error ```python stream_error(e, ignore_exceptions, line) ``` Reraise the stream exception with annotation or print an error `_jc_meta` field if `ignore_exceptions=True` ## input_type_check ```python input_type_check(data) ``` Ensure input data is a string ## streaming_input_type_check ```python streaming_input_type_check(data) ``` Ensure input data is an iterable, but not a string or bytes ## streaming_line_input_type_check ```python streaming_line_input_type_check(line) ``` Ensure each line is a string ## timestamp ```python timestamp(datetime_string) ``` Input a date-time text string of several formats and convert to a naive or timezone-aware epoch timestamp in UTC Parameters: datetime_string: (str) a string representation of a date-time in several supported formats Attributes: string (str) the input datetime string format (int) the format rule that was used to decode the datetime string. None if conversion fails naive (int) timestamp based on locally configured timezone. None if conversion fails utc (int) aware timestamp only if UTC timezone detected in datetime string. None if conversion fails jc-1.17.3/install.sh000077500000000000000000000000561415226333200142060ustar00rootroot00000000000000#!/bin/bash pip3 install --upgrade --user -e .jc-1.17.3/jc/000077500000000000000000000000001415226333200125745ustar00rootroot00000000000000jc-1.17.3/jc/__init__.py000066400000000000000000000042371415226333200147130ustar00rootroot00000000000000"""JC - JSON CLI output utility * kellyjonbrazil@gmail.com This package serializes the output of many standard unix command line tools to JSON format. For documentation on each parser, see the [documentation site](https://kellyjonbrazil.github.io/jc/). CLI Example: $ dig example.com | jc --dig -p [ { "id": 2951, "opcode": "QUERY", "status": "NOERROR", "flags": [ "qr", "rd", "ra" ], "query_num": 1, "answer_num": 1, "authority_num": 0, "additional_num": 1, "opt_pseudosection": { "edns": { "version": 0, "flags": [], "udp": 4096 } }, "question": { "name": "example.com.", "class": "IN", "type": "A" }, "answer": [ { "name": "example.com.", "class": "IN", "type": "A", "ttl": 39302, "data": "93.184.216.34" } ], "query_time": 49, "server": "2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)", "when": "Fri Apr 16 16:05:10 PDT 2021", "rcvd": 56, "when_epoch": 1618614310, "when_epoch_utc": null } ] Module Example: >>> import jc.parsers.dig >>> >>> import subprocess >>> import jc.parsers.dig >>> >>> cmd_output = subprocess.check_output(['dig', 'example.com'], text=True) >>> data = jc.parsers.dig.parse(cmd_output) >>> >>> data [{'id': 64612, 'opcode': 'QUERY', 'status': 'NOERROR', 'flags': ['qr', 'rd', 'ra'], 'query_num': 1, 'answer_num': 1, 'authority_num': 0, 'additional_num': 1, 'opt_pseudosection': {'edns': {'version': 0, 'flags': [], 'udp': 4096}}, 'question': {'name': 'example.com.', 'class': 'IN', 'type': 'A'}, 'answer': [{'name': 'example.com.', 'class': 'IN', 'type': 'A', 'ttl': 29658, 'data': '93.184.216.34'}], 'query_time': 52, 'server': '2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)', 'when': 'Fri Apr 16 16:13:00 PDT 2021', 'rcvd': 56, 'when_epoch': 1618614780, 'when_epoch_utc': None}] """ name = 'jc' __version__ = '1.17.3' jc-1.17.3/jc/appdirs.py000066400000000000000000000610351415226333200146150ustar00rootroot00000000000000# -*- coding: utf-8 -*- # Copyright (c) 2005-2010 ActiveState Software Inc. # Copyright (c) 2013 Eddy Petrișor ''' # This is the MIT license Copyright (c) 2010 ActiveState Software Inc. 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. ''' """Utilities for determining application-specific dirs. See for details and usage. """ # Dev Notes: # - MSDN on where to store app data files: # http://support.microsoft.com/default.aspx?scid=kb;en-us;310294#XSLTH3194121123120121120120 # - Mac OS X: http://developer.apple.com/documentation/MacOSX/Conceptual/BPFileSystem/index.html # - XDG spec for Un*x: https://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html __version__ = "1.4.4" __version_info__ = tuple(int(segment) for segment in __version__.split(".")) import sys import os PY3 = sys.version_info[0] == 3 if PY3: unicode = str if sys.platform.startswith('java'): import platform os_name = platform.java_ver()[3][0] if os_name.startswith('Windows'): # "Windows XP", "Windows 7", etc. system = 'win32' elif os_name.startswith('Mac'): # "Mac OS X", etc. system = 'darwin' else: # "Linux", "SunOS", "FreeBSD", etc. # Setting this to "linux2" is not ideal, but only Windows or Mac # are actually checked for and the rest of the module expects # *sys.platform* style strings. system = 'linux2' else: system = sys.platform def user_data_dir(appname=None, appauthor=None, version=None, roaming=False): r"""Return full path to the user-specific data dir for this application. "appname" is the name of application. If None, just the system directory is returned. "appauthor" (only used on Windows) is the name of the appauthor or distributing body for this application. Typically it is the owning company name. This falls back to appname. You may pass False to disable it. "version" is an optional version path element to append to the path. You might want to use this if you want multiple versions of your app to be able to run independently. If used, this would typically be ".". Only applied when appname is present. "roaming" (boolean, default False) can be set True to use the Windows roaming appdata directory. That means that for users on a Windows network setup for roaming profiles, this user data will be sync'd on login. See for a discussion of issues. Typical user data directories are: Mac OS X: ~/Library/Application Support/ Unix: ~/.local/share/ # or in $XDG_DATA_HOME, if defined Win XP (not roaming): C:\Documents and Settings\\Application Data\\ Win XP (roaming): C:\Documents and Settings\\Local Settings\Application Data\\ Win 7 (not roaming): C:\Users\\AppData\Local\\ Win 7 (roaming): C:\Users\\AppData\Roaming\\ For Unix, we follow the XDG spec and support $XDG_DATA_HOME. That means, by default "~/.local/share/". """ if system == "win32": if appauthor is None: appauthor = appname const = roaming and "CSIDL_APPDATA" or "CSIDL_LOCAL_APPDATA" path = os.path.normpath(_get_win_folder(const)) if appname: if appauthor is not False: path = os.path.join(path, appauthor, appname) else: path = os.path.join(path, appname) elif system == 'darwin': path = os.path.expanduser('~/Library/Application Support/') if appname: path = os.path.join(path, appname) else: path = os.getenv('XDG_DATA_HOME', os.path.expanduser("~/.local/share")) if appname: path = os.path.join(path, appname) if appname and version: path = os.path.join(path, version) return path def site_data_dir(appname=None, appauthor=None, version=None, multipath=False): r"""Return full path to the user-shared data dir for this application. "appname" is the name of application. If None, just the system directory is returned. "appauthor" (only used on Windows) is the name of the appauthor or distributing body for this application. Typically it is the owning company name. This falls back to appname. You may pass False to disable it. "version" is an optional version path element to append to the path. You might want to use this if you want multiple versions of your app to be able to run independently. If used, this would typically be ".". Only applied when appname is present. "multipath" is an optional parameter only applicable to *nix which indicates that the entire list of data dirs should be returned. By default, the first item from XDG_DATA_DIRS is returned, or '/usr/local/share/', if XDG_DATA_DIRS is not set Typical site data directories are: Mac OS X: /Library/Application Support/ Unix: /usr/local/share/ or /usr/share/ Win XP: C:\Documents and Settings\All Users\Application Data\\ Vista: (Fail! "C:\ProgramData" is a hidden *system* directory on Vista.) Win 7: C:\ProgramData\\ # Hidden, but writeable on Win 7. For Unix, this is using the $XDG_DATA_DIRS[0] default. WARNING: Do not use this on Windows. See the Vista-Fail note above for why. """ if system == "win32": if appauthor is None: appauthor = appname path = os.path.normpath(_get_win_folder("CSIDL_COMMON_APPDATA")) if appname: if appauthor is not False: path = os.path.join(path, appauthor, appname) else: path = os.path.join(path, appname) elif system == 'darwin': path = os.path.expanduser('/Library/Application Support') if appname: path = os.path.join(path, appname) else: # XDG default for $XDG_DATA_DIRS # only first, if multipath is False path = os.getenv('XDG_DATA_DIRS', os.pathsep.join(['/usr/local/share', '/usr/share'])) pathlist = [os.path.expanduser(x.rstrip(os.sep)) for x in path.split(os.pathsep)] if appname: if version: appname = os.path.join(appname, version) pathlist = [os.sep.join([x, appname]) for x in pathlist] if multipath: path = os.pathsep.join(pathlist) else: path = pathlist[0] return path if appname and version: path = os.path.join(path, version) return path def user_config_dir(appname=None, appauthor=None, version=None, roaming=False): r"""Return full path to the user-specific config dir for this application. "appname" is the name of application. If None, just the system directory is returned. "appauthor" (only used on Windows) is the name of the appauthor or distributing body for this application. Typically it is the owning company name. This falls back to appname. You may pass False to disable it. "version" is an optional version path element to append to the path. You might want to use this if you want multiple versions of your app to be able to run independently. If used, this would typically be ".". Only applied when appname is present. "roaming" (boolean, default False) can be set True to use the Windows roaming appdata directory. That means that for users on a Windows network setup for roaming profiles, this user data will be sync'd on login. See for a discussion of issues. Typical user config directories are: Mac OS X: ~/Library/Preferences/ Unix: ~/.config/ # or in $XDG_CONFIG_HOME, if defined Win *: same as user_data_dir For Unix, we follow the XDG spec and support $XDG_CONFIG_HOME. That means, by default "~/.config/". """ if system == "win32": path = user_data_dir(appname, appauthor, None, roaming) elif system == 'darwin': path = os.path.expanduser('~/Library/Preferences/') if appname: path = os.path.join(path, appname) else: path = os.getenv('XDG_CONFIG_HOME', os.path.expanduser("~/.config")) if appname: path = os.path.join(path, appname) if appname and version: path = os.path.join(path, version) return path def site_config_dir(appname=None, appauthor=None, version=None, multipath=False): r"""Return full path to the user-shared data dir for this application. "appname" is the name of application. If None, just the system directory is returned. "appauthor" (only used on Windows) is the name of the appauthor or distributing body for this application. Typically it is the owning company name. This falls back to appname. You may pass False to disable it. "version" is an optional version path element to append to the path. You might want to use this if you want multiple versions of your app to be able to run independently. If used, this would typically be ".". Only applied when appname is present. "multipath" is an optional parameter only applicable to *nix which indicates that the entire list of config dirs should be returned. By default, the first item from XDG_CONFIG_DIRS is returned, or '/etc/xdg/', if XDG_CONFIG_DIRS is not set Typical site config directories are: Mac OS X: same as site_data_dir Unix: /etc/xdg/ or $XDG_CONFIG_DIRS[i]/ for each value in $XDG_CONFIG_DIRS Win *: same as site_data_dir Vista: (Fail! "C:\ProgramData" is a hidden *system* directory on Vista.) For Unix, this is using the $XDG_CONFIG_DIRS[0] default, if multipath=False WARNING: Do not use this on Windows. See the Vista-Fail note above for why. """ if system == 'win32': path = site_data_dir(appname, appauthor) if appname and version: path = os.path.join(path, version) elif system == 'darwin': path = os.path.expanduser('/Library/Preferences') if appname: path = os.path.join(path, appname) else: # XDG default for $XDG_CONFIG_DIRS # only first, if multipath is False path = os.getenv('XDG_CONFIG_DIRS', '/etc/xdg') pathlist = [os.path.expanduser(x.rstrip(os.sep)) for x in path.split(os.pathsep)] if appname: if version: appname = os.path.join(appname, version) pathlist = [os.sep.join([x, appname]) for x in pathlist] if multipath: path = os.pathsep.join(pathlist) else: path = pathlist[0] return path def user_cache_dir(appname=None, appauthor=None, version=None, opinion=True): r"""Return full path to the user-specific cache dir for this application. "appname" is the name of application. If None, just the system directory is returned. "appauthor" (only used on Windows) is the name of the appauthor or distributing body for this application. Typically it is the owning company name. This falls back to appname. You may pass False to disable it. "version" is an optional version path element to append to the path. You might want to use this if you want multiple versions of your app to be able to run independently. If used, this would typically be ".". Only applied when appname is present. "opinion" (boolean) can be False to disable the appending of "Cache" to the base app data dir for Windows. See discussion below. Typical user cache directories are: Mac OS X: ~/Library/Caches/ Unix: ~/.cache/ (XDG default) Win XP: C:\Documents and Settings\\Local Settings\Application Data\\\Cache Vista: C:\Users\\AppData\Local\\\Cache On Windows the only suggestion in the MSDN docs is that local settings go in the `CSIDL_LOCAL_APPDATA` directory. This is identical to the non-roaming app data dir (the default returned by `user_data_dir` above). Apps typically put cache data somewhere *under* the given dir here. Some examples: ...\Mozilla\Firefox\Profiles\\Cache ...\Acme\SuperApp\Cache\1.0 OPINION: This function appends "Cache" to the `CSIDL_LOCAL_APPDATA` value. This can be disabled with the `opinion=False` option. """ if system == "win32": if appauthor is None: appauthor = appname path = os.path.normpath(_get_win_folder("CSIDL_LOCAL_APPDATA")) if appname: if appauthor is not False: path = os.path.join(path, appauthor, appname) else: path = os.path.join(path, appname) if opinion: path = os.path.join(path, "Cache") elif system == 'darwin': path = os.path.expanduser('~/Library/Caches') if appname: path = os.path.join(path, appname) else: path = os.getenv('XDG_CACHE_HOME', os.path.expanduser('~/.cache')) if appname: path = os.path.join(path, appname) if appname and version: path = os.path.join(path, version) return path def user_state_dir(appname=None, appauthor=None, version=None, roaming=False): r"""Return full path to the user-specific state dir for this application. "appname" is the name of application. If None, just the system directory is returned. "appauthor" (only used on Windows) is the name of the appauthor or distributing body for this application. Typically it is the owning company name. This falls back to appname. You may pass False to disable it. "version" is an optional version path element to append to the path. You might want to use this if you want multiple versions of your app to be able to run independently. If used, this would typically be ".". Only applied when appname is present. "roaming" (boolean, default False) can be set True to use the Windows roaming appdata directory. That means that for users on a Windows network setup for roaming profiles, this user data will be sync'd on login. See for a discussion of issues. Typical user state directories are: Mac OS X: same as user_data_dir Unix: ~/.local/state/ # or in $XDG_STATE_HOME, if defined Win *: same as user_data_dir For Unix, we follow this Debian proposal to extend the XDG spec and support $XDG_STATE_HOME. That means, by default "~/.local/state/". """ if system in ["win32", "darwin"]: path = user_data_dir(appname, appauthor, None, roaming) else: path = os.getenv('XDG_STATE_HOME', os.path.expanduser("~/.local/state")) if appname: path = os.path.join(path, appname) if appname and version: path = os.path.join(path, version) return path def user_log_dir(appname=None, appauthor=None, version=None, opinion=True): r"""Return full path to the user-specific log dir for this application. "appname" is the name of application. If None, just the system directory is returned. "appauthor" (only used on Windows) is the name of the appauthor or distributing body for this application. Typically it is the owning company name. This falls back to appname. You may pass False to disable it. "version" is an optional version path element to append to the path. You might want to use this if you want multiple versions of your app to be able to run independently. If used, this would typically be ".". Only applied when appname is present. "opinion" (boolean) can be False to disable the appending of "Logs" to the base app data dir for Windows, and "log" to the base cache dir for Unix. See discussion below. Typical user log directories are: Mac OS X: ~/Library/Logs/ Unix: ~/.cache//log # or under $XDG_CACHE_HOME if defined Win XP: C:\Documents and Settings\\Local Settings\Application Data\\\Logs Vista: C:\Users\\AppData\Local\\\Logs On Windows the only suggestion in the MSDN docs is that local settings go in the `CSIDL_LOCAL_APPDATA` directory. (Note: I'm interested in examples of what some windows apps use for a logs dir.) OPINION: This function appends "Logs" to the `CSIDL_LOCAL_APPDATA` value for Windows and appends "log" to the user cache dir for Unix. This can be disabled with the `opinion=False` option. """ if system == "darwin": path = os.path.join( os.path.expanduser('~/Library/Logs'), appname) elif system == "win32": path = user_data_dir(appname, appauthor, version) version = False if opinion: path = os.path.join(path, "Logs") else: path = user_cache_dir(appname, appauthor, version) version = False if opinion: path = os.path.join(path, "log") if appname and version: path = os.path.join(path, version) return path class AppDirs(object): """Convenience wrapper for getting application dirs.""" def __init__(self, appname=None, appauthor=None, version=None, roaming=False, multipath=False): self.appname = appname self.appauthor = appauthor self.version = version self.roaming = roaming self.multipath = multipath @property def user_data_dir(self): return user_data_dir(self.appname, self.appauthor, version=self.version, roaming=self.roaming) @property def site_data_dir(self): return site_data_dir(self.appname, self.appauthor, version=self.version, multipath=self.multipath) @property def user_config_dir(self): return user_config_dir(self.appname, self.appauthor, version=self.version, roaming=self.roaming) @property def site_config_dir(self): return site_config_dir(self.appname, self.appauthor, version=self.version, multipath=self.multipath) @property def user_cache_dir(self): return user_cache_dir(self.appname, self.appauthor, version=self.version) @property def user_state_dir(self): return user_state_dir(self.appname, self.appauthor, version=self.version) @property def user_log_dir(self): return user_log_dir(self.appname, self.appauthor, version=self.version) #---- internal support stuff def _get_win_folder_from_registry(csidl_name): """This is a fallback technique at best. I'm not sure if using the registry for this guarantees us the correct answer for all CSIDL_* names. """ if PY3: import winreg as _winreg else: import _winreg shell_folder_name = { "CSIDL_APPDATA": "AppData", "CSIDL_COMMON_APPDATA": "Common AppData", "CSIDL_LOCAL_APPDATA": "Local AppData", }[csidl_name] key = _winreg.OpenKey( _winreg.HKEY_CURRENT_USER, r"Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" ) dir, type = _winreg.QueryValueEx(key, shell_folder_name) return dir def _get_win_folder_with_ctypes(csidl_name): import ctypes csidl_const = { "CSIDL_APPDATA": 26, "CSIDL_COMMON_APPDATA": 35, "CSIDL_LOCAL_APPDATA": 28, }[csidl_name] buf = ctypes.create_unicode_buffer(1024) ctypes.windll.shell32.SHGetFolderPathW(None, csidl_const, None, 0, buf) # Downgrade to short path name if have highbit chars. See # . has_high_char = False for c in buf: if ord(c) > 255: has_high_char = True break if has_high_char: buf2 = ctypes.create_unicode_buffer(1024) if ctypes.windll.kernel32.GetShortPathNameW(buf.value, buf2, 1024): buf = buf2 return buf.value def _get_win_folder_with_jna(csidl_name): import array from com.sun import jna from com.sun.jna.platform import win32 buf_size = win32.WinDef.MAX_PATH * 2 buf = array.zeros('c', buf_size) shell = win32.Shell32.INSTANCE shell.SHGetFolderPath(None, getattr(win32.ShlObj, csidl_name), None, win32.ShlObj.SHGFP_TYPE_CURRENT, buf) dir = jna.Native.toString(buf.tostring()).rstrip("\0") # Downgrade to short path name if have highbit chars. See # . has_high_char = False for c in dir: if ord(c) > 255: has_high_char = True break if has_high_char: buf = array.zeros('c', buf_size) kernel = win32.Kernel32.INSTANCE if kernel.GetShortPathName(dir, buf, buf_size): dir = jna.Native.toString(buf.tostring()).rstrip("\0") return dir if system == "win32": try: from ctypes import windll except ImportError: try: import com.sun.jna except ImportError: _get_win_folder = _get_win_folder_from_registry else: _get_win_folder = _get_win_folder_with_jna else: _get_win_folder = _get_win_folder_with_ctypes #---- self test code if __name__ == "__main__": appname = "MyApp" appauthor = "MyCompany" props = ("user_data_dir", "user_config_dir", "user_cache_dir", "user_state_dir", "user_log_dir", "site_data_dir", "site_config_dir") print("-- app dirs %s --" % __version__) print("-- app dirs (with optional 'version')") dirs = AppDirs(appname, appauthor, version="1.0") for prop in props: print("%s: %s" % (prop, getattr(dirs, prop))) print("\n-- app dirs (without optional 'version')") dirs = AppDirs(appname, appauthor) for prop in props: print("%s: %s" % (prop, getattr(dirs, prop))) print("\n-- app dirs (without optional 'appauthor')") dirs = AppDirs(appname) for prop in props: print("%s: %s" % (prop, getattr(dirs, prop))) print("\n-- app dirs (with disabled 'appauthor')") dirs = AppDirs(appname, appauthor=False) for prop in props: print("%s: %s" % (prop, getattr(dirs, prop)))jc-1.17.3/jc/cli.py000066400000000000000000000513461415226333200137260ustar00rootroot00000000000000"""jc - JSON CLI output utility JC cli module """ import sys import os import os.path import re import importlib import textwrap import signal import shlex import subprocess import json import jc from jc import appdirs import jc.utils import jc.tracebackplus from jc.exceptions import LibraryNotInstalled, ParseError # make pygments import optional try: import pygments from pygments import highlight from pygments.style import Style from pygments.token import (Name, Number, String, Keyword) from pygments.lexers import JsonLexer from pygments.formatters import Terminal256Formatter PYGMENTS_INSTALLED = True except Exception: PYGMENTS_INSTALLED = False class info(): version = jc.__version__ description = 'JSON CLI output utility' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' website = 'https://github.com/kellyjonbrazil/jc' copyright = '© 2019-2021 Kelly Brazil' license = 'MIT License' __version__ = info.version parsers = [ 'acpi', 'airport', 'airport-s', 'arp', 'blkid', 'cksum', 'crontab', 'crontab-u', 'csv', 'csv-s', 'date', 'df', 'dig', 'dir', 'dmidecode', 'dpkg-l', 'du', 'env', 'file', 'finger', 'free', 'fstab', 'group', 'gshadow', 'hash', 'hashsum', 'hciconfig', 'history', 'hosts', 'id', 'ifconfig', 'ini', 'iostat', 'iostat-s', 'iptables', 'iw-scan', 'jobs', 'kv', 'last', 'ls', 'ls-s', 'lsblk', 'lsmod', 'lsof', 'lsusb', 'mount', 'netstat', 'ntpq', 'passwd', 'ping', 'ping-s', 'pip-list', 'pip-show', 'ps', 'route', 'rpm-qi', 'sfdisk', 'shadow', 'ss', 'stat', 'sysctl', 'systemctl', 'systemctl-lj', 'systemctl-ls', 'systemctl-luf', 'systeminfo', 'time', 'timedatectl', 'tracepath', 'traceroute', 'ufw', 'ufw-appinfo', 'uname', 'upower', 'uptime', 'vmstat', 'vmstat-s', 'w', 'wc', 'who', 'xml', 'yaml' ] JC_ERROR_EXIT = 100 # List of custom or override parsers. # Allow any /jc/jcparsers/*.py local_parsers = [] data_dir = appdirs.user_data_dir('jc', 'jc') local_parsers_dir = os.path.join(data_dir, 'jcparsers') if os.path.isdir(local_parsers_dir): sys.path.append(data_dir) for name in os.listdir(local_parsers_dir): if re.match(r'\w+\.py$', name) and os.path.isfile(os.path.join(local_parsers_dir, name)): plugin_name = name[0:-3] local_parsers.append(plugin_name) if plugin_name not in parsers: parsers.append(plugin_name) # We only support 2.3.0+, pygments changed color names in 2.4.0. # startswith is sufficient and avoids potential exceptions from split and int. if PYGMENTS_INSTALLED: if pygments.__version__.startswith('2.3.'): PYGMENT_COLOR = { 'black': '#ansiblack', 'red': '#ansidarkred', 'green': '#ansidarkgreen', 'yellow': '#ansibrown', 'blue': '#ansidarkblue', 'magenta': '#ansipurple', 'cyan': '#ansiteal', 'gray': '#ansilightgray', 'brightblack': '#ansidarkgray', 'brightred': '#ansired', 'brightgreen': '#ansigreen', 'brightyellow': '#ansiyellow', 'brightblue': '#ansiblue', 'brightmagenta': '#ansifuchsia', 'brightcyan': '#ansiturquoise', 'white': '#ansiwhite', } else: PYGMENT_COLOR = { 'black': 'ansiblack', 'red': 'ansired', 'green': 'ansigreen', 'yellow': 'ansiyellow', 'blue': 'ansiblue', 'magenta': 'ansimagenta', 'cyan': 'ansicyan', 'gray': 'ansigray', 'brightblack': 'ansibrightblack', 'brightred': 'ansibrightred', 'brightgreen': 'ansibrightgreen', 'brightyellow': 'ansibrightyellow', 'brightblue': 'ansibrightblue', 'brightmagenta': 'ansibrightmagenta', 'brightcyan': 'ansibrightcyan', 'white': 'ansiwhite', } def set_env_colors(env_colors=None): """ Return a dictionary to be used in Pygments custom style class. Grab custom colors from JC_COLORS environment variable. JC_COLORS env variable takes 4 comma separated string values and should be in the format of: JC_COLORS=,,, Where colors are: black, red, green, yellow, blue, magenta, cyan, gray, brightblack, brightred, brightgreen, brightyellow, brightblue, brightmagenta, brightcyan, white, default Default colors: JC_COLORS=blue,brightblack,magenta,green or JC_COLORS=default,default,default,default """ input_error = False if env_colors: color_list = env_colors.split(',') else: color_list = ['default', 'default', 'default', 'default'] if len(color_list) != 4: input_error = True for color in color_list: if color != 'default' and color not in PYGMENT_COLOR: input_error = True # if there is an issue with the env variable, just set all colors to default and move on if input_error: jc.utils.warning_message(['Could not parse JC_COLORS environment variable']) color_list = ['default', 'default', 'default', 'default'] # Try the color set in the JC_COLORS env variable first. If it is set to default, then fall back to default colors return { Name.Tag: f'bold {PYGMENT_COLOR[color_list[0]]}' if color_list[0] != 'default' else f"bold {PYGMENT_COLOR['blue']}", # key names Keyword: PYGMENT_COLOR[color_list[1]] if color_list[1] != 'default' else PYGMENT_COLOR['brightblack'], # true, false, null Number: PYGMENT_COLOR[color_list[2]] if color_list[2] != 'default' else PYGMENT_COLOR['magenta'], # numbers String: PYGMENT_COLOR[color_list[3]] if color_list[3] != 'default' else PYGMENT_COLOR['green'] # strings } def piped_output(): """Return False if stdout is a TTY. True if output is being piped to another program""" return not sys.stdout.isatty() def ctrlc(signum, frame): """Exit with error on SIGINT""" sys.exit(JC_ERROR_EXIT) def parser_shortname(parser_arg): """Return short name of the parser with dashes and no -- prefix""" return parser_arg[2:] def parser_argument(parser): """Return short name of the parser with dashes and with -- prefix""" return f'--{parser}' def parser_mod_shortname(parser): """Return short name of the parser's module name (no -- prefix and dashes converted to underscores)""" return parser.replace('--', '').replace('-', '_') def parser_module(parser): """Import the module just in time and return the module object""" shortname = parser_mod_shortname(parser) path = ('jcparsers.' if shortname in local_parsers else 'jc.parsers.') return importlib.import_module(path + shortname) def parsers_text(indent=0, pad=0): """Return the argument and description information from each parser""" ptext = '' for parser in parsers: parser_arg = parser_argument(parser) parser_mod = parser_module(parser) if hasattr(parser_mod, 'info'): parser_desc = parser_mod.info.description padding = pad - len(parser_arg) padding_char = ' ' indent_text = padding_char * indent padding_text = padding_char * padding ptext += indent_text + parser_arg + padding_text + parser_desc + '\n' return ptext def about_jc(): """Return jc info and the contents of each parser.info as a dictionary""" parser_list = [] for parser in parsers: parser_mod = parser_module(parser) if hasattr(parser_mod, 'info'): info_dict = {} info_dict['name'] = parser_mod.__name__.split('.')[-1] info_dict['argument'] = parser_argument(parser) parser_entry = vars(parser_mod.info) for k, v in parser_entry.items(): if not k.startswith('__'): info_dict[k] = v parser_list.append(info_dict) return { 'name': 'jc', 'version': info.version, 'description': info.description, 'author': info.author, 'author_email': info.author_email, 'website': info.website, 'copyright': info.copyright, 'license': info.license, 'parser_count': len(parser_list), 'parsers': parser_list } def helptext(): """Return the help text with the list of parsers""" parsers_string = parsers_text(indent=12, pad=17) helptext_string = f'''\ jc converts the output of many commands and file-types to JSON Usage: COMMAND | jc PARSER [OPTIONS] or magic syntax: jc [OPTIONS] COMMAND Parsers: {parsers_string} Options: -a about jc -d debug (-dd for verbose debug) -h help (-h --parser_name for parser documentation) -m monochrome output -p pretty print output -q quiet - suppress parser warnings (-qq to ignore streaming errors) -r raw JSON output -u unbuffer output -v version info Examples: Standard Syntax: $ dig www.google.com | jc --dig -p Magic Syntax: $ jc -p dig www.google.com Parser Documentation: $ jc -h --dig ''' return textwrap.dedent(helptext_string) def help_doc(options): """ Returns the parser documentation if a parser is found in the arguments, otherwise the general help text is returned. """ for arg in options: parser_name = parser_shortname(arg) if parser_name in parsers: # load parser module just in time so we don't need to load all modules parser = parser_module(arg) compatible = ', '.join(parser.info.compatible) doc_text = \ f'{parser.__doc__}\n'\ f'Compatibility: {compatible}\n\n'\ f'Version {parser.info.version} by {parser.info.author} ({parser.info.author_email})\n' return doc_text return helptext() def versiontext(): """Return the version text""" versiontext_string = f'''\ jc version {info.version} {info.website} {info.copyright}''' return textwrap.dedent(versiontext_string) def json_out(data, pretty=False, env_colors=None, mono=False, piped_out=False): """Return a JSON formatted string. String may include color codes or be pretty printed.""" separators = (',', ':') indent = None if pretty: separators = None indent = 2 if not mono and not piped_out: # set colors class JcStyle(Style): styles = set_env_colors(env_colors) return str(highlight(json.dumps(data, indent=indent, separators=separators, ensure_ascii=False), JsonLexer(), Terminal256Formatter(style=JcStyle))[0:-1]) return json.dumps(data, indent=indent, separators=separators, ensure_ascii=False) def magic_parser(args): """ Parse command arguments for magic syntax: jc -p ls -al Return a tuple: valid_command (bool) is this a valid command? (exists in magic dict) run_command (list) list of the user's command to run. None if no command. jc_parser (str) parser to use for this user's command. jc_options (list) list of jc options """ # bail immediately if there are no args or a parser is defined if len(args) <= 1 or args[1].startswith('--'): return False, None, None, [] args_given = args[1:] options = [] # find the options for arg in list(args_given): # parser found - use standard syntax if arg.startswith('--'): return False, None, None, [] # option found - populate option list if arg.startswith('-'): options.extend(args_given.pop(0)[1:]) # command found if iterator didn't already stop - stop iterating else: break # if -h, -a, or -v found in options, then bail out if 'h' in options or 'a' in options or 'v' in options: return False, None, None, [] # all options popped and no command found - for case like 'jc -x' if len(args_given) == 0: return False, None, None, [] magic_dict = {} parser_info = about_jc()['parsers'] # create a dictionary of magic_commands to their respective parsers. for entry in parser_info: # Update the dict with all of the magic commands for this parser, if they exist. magic_dict.update({mc: entry['argument'] for mc in entry.get('magic_commands', [])}) # find the command and parser one_word_command = args_given[0] two_word_command = ' '.join(args_given[0:2]) # try to get a parser for two_word_command, otherwise get one for one_word_command found_parser = magic_dict.get(two_word_command, magic_dict.get(one_word_command)) return ( bool(found_parser), # was a suitable parser found? args_given, # run_command found_parser, # the parser selected options # jc options to preserve ) def run_user_command(command): """Use subprocess to run the user's command. Returns the STDOUT, STDERR, and the Exit Code as a tuple.""" proc = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, close_fds=False, # Allows inheriting file descriptors. Useful for process substitution universal_newlines=True) stdout, stderr = proc.communicate() return ( stdout or '\n', stderr, proc.returncode ) def combined_exit_code(program_exit=0, jc_exit=0): exit_code = program_exit + jc_exit exit_code = min(exit_code, 255) return exit_code def main(): # break on ctrl-c keyboard interrupt signal.signal(signal.SIGINT, ctrlc) # break on pipe error. need try/except for windows compatibility try: signal.signal(signal.SIGPIPE, signal.SIG_DFL) except AttributeError: pass # enable colors for Windows cmd.exe terminal if sys.platform.startswith('win32'): os.system('') # parse magic syntax first: e.g. jc -p ls -al magic_options = [] valid_command, run_command, magic_found_parser, magic_options = magic_parser(sys.argv) # set colors jc_colors = os.getenv('JC_COLORS') # set options options = [] options.extend(magic_options) # find options if magic_parser did not find a command if not valid_command: for opt in sys.argv: if opt.startswith('-') and not opt.startswith('--'): options.extend(opt[1:]) about = 'a' in options debug = 'd' in options verbose_debug = options.count('d') > 1 mono = 'm' in options help_me = 'h' in options pretty = 'p' in options quiet = 'q' in options ignore_exceptions = options.count('q') > 1 raw = 'r' in options unbuffer = 'u' in options version_info = 'v' in options if verbose_debug: jc.tracebackplus.enable(context=11) if not PYGMENTS_INSTALLED: mono = True if about: print(json_out(about_jc(), pretty=pretty, env_colors=jc_colors, mono=mono, piped_out=piped_output())) sys.exit(0) if help_me: print(help_doc(sys.argv)) sys.exit(0) if version_info: print(versiontext()) sys.exit(0) # if magic syntax used, try to run the command and error if it's not found, etc. magic_stdout, magic_stderr, magic_exit_code = None, None, 0 if run_command: try: run_command_str = shlex.join(run_command) # python 3.8+ except AttributeError: run_command_str = ' '.join(run_command) # older python versions if valid_command: try: magic_stdout, magic_stderr, magic_exit_code = run_user_command(run_command) if magic_stderr: print(magic_stderr[:-1], file=sys.stderr) except FileNotFoundError: if debug: raise jc.utils.error_message([f'"{run_command_str}" command could not be found. For details use the -d or -dd option.']) sys.exit(combined_exit_code(magic_exit_code, JC_ERROR_EXIT)) except OSError: if debug: raise jc.utils.error_message([f'"{run_command_str}" command could not be run due to too many open files. For details use the -d or -dd option.']) sys.exit(combined_exit_code(magic_exit_code, JC_ERROR_EXIT)) except Exception: if debug: raise jc.utils.error_message([f'"{run_command_str}" command could not be run. For details use the -d or -dd option.']) sys.exit(combined_exit_code(magic_exit_code, JC_ERROR_EXIT)) elif run_command is not None: jc.utils.error_message([f'"{run_command_str}" cannot be used with Magic syntax. Use "jc -h" for help.']) sys.exit(combined_exit_code(magic_exit_code, JC_ERROR_EXIT)) # find the correct parser if magic_found_parser: parser = parser_module(magic_found_parser) parser_name = parser_shortname(magic_found_parser) else: found = False for arg in sys.argv: parser_name = parser_shortname(arg) if parser_name in parsers: parser = parser_module(arg) found = True break if not found: jc.utils.error_message(['Missing or incorrect arguments. Use "jc -h" for help.']) sys.exit(combined_exit_code(magic_exit_code, JC_ERROR_EXIT)) # check for input errors (pipe vs magic) if not sys.stdin.isatty() and magic_stdout: jc.utils.error_message(['Piped data and Magic syntax used simultaneously. Use "jc -h" for help.']) sys.exit(combined_exit_code(magic_exit_code, JC_ERROR_EXIT)) elif sys.stdin.isatty() and magic_stdout is None: jc.utils.error_message(['Missing piped data. Use "jc -h" for help.']) sys.exit(combined_exit_code(magic_exit_code, JC_ERROR_EXIT)) # parse and print to stdout try: # differentiate between regular and streaming parsers # streaming if getattr(parser.info, 'streaming', None): result = parser.parse(sys.stdin, raw=raw, quiet=quiet, ignore_exceptions=ignore_exceptions) for line in result: print(json_out(line, pretty=pretty, env_colors=jc_colors, mono=mono, piped_out=piped_output()), flush=unbuffer) sys.exit(combined_exit_code(magic_exit_code, 0)) # regular else: data = magic_stdout or sys.stdin.read() result = parser.parse(data, raw=raw, quiet=quiet) print(json_out(result, pretty=pretty, env_colors=jc_colors, mono=mono, piped_out=piped_output()), flush=unbuffer) sys.exit(combined_exit_code(magic_exit_code, 0)) except (ParseError, LibraryNotInstalled) as e: if debug: raise jc.utils.error_message([f'Parser issue with {parser_name}:', f'{e.__class__.__name__}: {e}', 'For details use the -d or -dd option. Use "jc -h" for help.']) sys.exit(combined_exit_code(magic_exit_code, JC_ERROR_EXIT)) except json.JSONDecodeError: if debug: raise jc.utils.error_message(['There was an issue generating the JSON output.', 'For details use the -d or -dd option.']) sys.exit(combined_exit_code(magic_exit_code, JC_ERROR_EXIT)) except Exception: if debug: raise streaming_msg = '' if getattr(parser.info, 'streaming', None): streaming_msg = 'Use the -qq option to ignore streaming parser errors.' jc.utils.error_message([ f'{parser_name} parser could not parse the input data. Did you use the correct parser?', f'{streaming_msg}', 'For details use the -d or -dd option. Use "jc -h" for help.' ]) sys.exit(combined_exit_code(magic_exit_code, JC_ERROR_EXIT)) if __name__ == '__main__': main() jc-1.17.3/jc/exceptions.py000066400000000000000000000002071415226333200153260ustar00rootroot00000000000000"""jc - JSON CLI output utility exceptions""" class ParseError(Exception): pass class LibraryNotInstalled(Exception): pass jc-1.17.3/jc/parsers/000077500000000000000000000000001415226333200142535ustar00rootroot00000000000000jc-1.17.3/jc/parsers/__init__.py000066400000000000000000000000001415226333200163520ustar00rootroot00000000000000jc-1.17.3/jc/parsers/acpi.py000066400000000000000000000260651415226333200155520ustar00rootroot00000000000000"""jc - JSON CLI output utility `acpi` command output parser Usage (cli): $ acpi -V | jc --acpi or $ jc acpi -V Usage (module): import jc.parsers.acpi result = jc.parsers.acpi.parse(acpi_command_output) Schema: [ { "type": string, "id": integer, "state": string, "charge_percent": integer, "until_charged": string, "until_charged_hours": integer, "until_charged_minuts": integer, "until_charged_seconds": integer, "until_charged_total_seconds": integer, "charge_remaining": string, "charge_remaining_hours": integer, "charge_remaining_minutes": integer, "charge_remaining_seconds": integer, "charge_remaining_total_seconds": integer, "design_capacity_mah": integer, "last_full_capacity": integer, "last_full_capacity_percent": integer, "on-line": boolean, "mode": string, "temperature": float, "temperature_unit": string, "trip_points": [ { "id": integer, "switches_to_mode": string, "temperature": float, "temperature_unit": string } ], "messages": [ string ] } ] Examples: $ acpi -V | jc --acpi -p [ { "type": "Battery", "id": 0, "state": "Charging", "charge_percent": 71, "until_charged": "00:29:20", "design_capacity_mah": 2110, "last_full_capacity": 2271, "last_full_capacity_percent": 100, "until_charged_hours": 0, "until_charged_minutes": 29, "until_charged_seconds": 20, "until_charged_total_seconds": 1760 }, { "type": "Adapter", "id": 0, "on-line": true }, { "type": "Thermal", "id": 0, "mode": "ok", "temperature": 46.0, "temperature_unit": "C", "trip_points": [ { "id": 0, "switches_to_mode": "critical", "temperature": 127.0, "temperature_unit": "C" }, { "id": 1, "switches_to_mode": "hot", "temperature": 127.0, "temperature_unit": "C" } ] }, { "type": "Cooling", "id": 0, "messages": [ "Processor 0 of 10" ] }, { "type": "Cooling", "id": 1, "messages": [ "Processor 0 of 10" ] }, { "type": "Cooling", "id": 2, "messages": [ "x86_pkg_temp no state information available" ] }, { "type": "Cooling", "id": 3, "messages": [ "Processor 0 of 10" ] }, { "type": "Cooling", "id": 4, "messages": [ "intel_powerclamp no state information available" ] }, { "type": "Cooling", "id": 5, "messages": [ "Processor 0 of 10" ] } ] $ acpi -V | jc --acpi -p -r [ { "type": "Battery", "id": "0", "state": "Charging", "charge_percent": "71", "until_charged": "00:29:20", "design_capacity_mah": "2110", "last_full_capacity": "2271", "last_full_capacity_percent": "100" }, { "type": "Adapter", "id": "0", "on-line": true }, { "type": "Thermal", "id": "0", "mode": "ok", "temperature": "46.0", "temperature_unit": "C", "trip_points": [ { "id": "0", "switches_to_mode": "critical", "temperature": "127.0", "temperature_unit": "C" }, { "id": "1", "switches_to_mode": "hot", "temperature": "127.0", "temperature_unit": "C" } ] }, { "type": "Cooling", "id": "0", "messages": [ "Processor 0 of 10" ] }, { "type": "Cooling", "id": "1", "messages": [ "Processor 0 of 10" ] }, { "type": "Cooling", "id": "2", "messages": [ "x86_pkg_temp no state information available" ] }, { "type": "Cooling", "id": "3", "messages": [ "Processor 0 of 10" ] }, { "type": "Cooling", "id": "4", "messages": [ "intel_powerclamp no state information available" ] }, { "type": "Cooling", "id": "5", "messages": [ "Processor 0 of 10" ] } ] """ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.3' description = '`acpi` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux'] magic_commands = ['acpi'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ int_list = ['id', 'charge_percent', 'design_capacity_mah', 'last_full_capacity', 'last_full_capacity_percent'] float_list = ['temperature'] for entry in proc_data: for key in entry: if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) if key in float_list: entry[key] = jc.utils.convert_to_float(entry[key]) if 'trip_points' in entry: for tp in entry['trip_points']: for key in tp: if key in int_list: tp[key] = jc.utils.convert_to_int(tp[key]) if key in float_list: tp[key] = jc.utils.convert_to_float(tp[key]) for entry in proc_data: if 'until_charged' in entry: entry['until_charged_hours'] = int(entry['until_charged'].split(':')[0]) entry['until_charged_minutes'] = int(entry['until_charged'].split(':')[1]) entry['until_charged_seconds'] = int(entry['until_charged'].split(':')[2]) entry['until_charged_total_seconds'] = (entry['until_charged_hours'] * 3600) + \ (entry['until_charged_minutes'] * 60) + entry['until_charged_seconds'] if 'charge_remaining' in entry: entry['charge_remaining_hours'] = int(entry['charge_remaining'].split(':')[0]) entry['charge_remaining_minutes'] = int(entry['charge_remaining'].split(':')[1]) entry['charge_remaining_seconds'] = int(entry['charge_remaining'].split(':')[2]) entry['charge_remaining_total_seconds'] = (entry['charge_remaining_hours'] * 3600) + \ (entry['charge_remaining_minutes'] * 60) + entry['charge_remaining_seconds'] return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = [] output_line = {} line_state = '' last_line_state = '' obj_type = '' obj_id = '' trip_points_list = [] trip_points_dict = {} messages_list = [] if jc.utils.has_data(data): for line in filter(None, data.splitlines()): obj_type = line.split()[0] obj_id = line.split()[1][:-1] line_state = obj_type + obj_id if line_state != last_line_state: if output_line: raw_output.append(output_line) output_line = {} trip_points_list = [] messages_list = [] if obj_type == 'Battery': output_line['type'] = obj_type output_line['id'] = obj_id if 'Charging' in line or 'Discharging' in line or 'Full' in line: output_line['state'] = line.split()[2][:-1] output_line['charge_percent'] = line.split()[3].rstrip('%,') if 'rate information unavailable' not in line: if 'Charging' in line: output_line['until_charged'] = line.split()[4] if 'Discharging' in line: output_line['charge_remaining'] = line.split()[4] if 'design capacity' in line: output_line['design_capacity_mah'] = line.split()[4] output_line['last_full_capacity'] = line.split()[9] output_line['last_full_capacity_percent'] = line.split()[-1][:-1] if obj_type == 'Adapter': output_line['type'] = obj_type output_line['id'] = obj_id if 'on-line' in line: output_line['on-line'] = True else: output_line['on-line'] = False if obj_type == 'Thermal': output_line['type'] = obj_type output_line['id'] = obj_id if 'trip point' not in line: output_line['mode'] = line.split()[2][:-1] output_line['temperature'] = line.split()[3] output_line['temperature_unit'] = line.split()[-1] else: trip_points_dict = { "id": line.split()[4], "switches_to_mode": line.split()[8], "temperature": line.split()[11], "temperature_unit": line.split()[-1] } trip_points_list.append(trip_points_dict) output_line['trip_points'] = trip_points_list if obj_type == 'Cooling': output_line['type'] = obj_type output_line['id'] = obj_id messages_list.append(line.split(maxsplit=2)[2]) output_line['messages'] = messages_list last_line_state = line_state if output_line: raw_output.append(output_line) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/airport.py000066400000000000000000000071231415226333200163100ustar00rootroot00000000000000"""jc - JSON CLI output utility `airport -I` command output parser The `airport` program can be found at `/System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport`. Usage (cli): $ airport -I | jc --airport or $ jc airport -I Usage (module): import jc.parsers.airport result = jc.parsers.airport.parse(airport_command_output) Schema: { "agrctlrssi": integer, "agrextrssi": integer, "agrctlnoise": integer, "agrextnoise": integer, "state": string, "op_mode": string, "lasttxrate": integer, "maxrate": integer, "lastassocstatus": integer, "802_11_auth": string, "link_auth": string, "bssid": string, "ssid": string, "mcs": integer, "channel": string } Examples: $ airport -I | jc --airport -p { "agrctlrssi": -66, "agrextrssi": 0, "agrctlnoise": -90, "agrextnoise": 0, "state": "running", "op_mode": "station", "lasttxrate": 195, "maxrate": 867, "lastassocstatus": 0, "802_11_auth": "open", "link_auth": "wpa2-psk", "bssid": "3c:37:86:15:ad:f9", "ssid": "SnazzleDazzle", "mcs": 0, "channel": "48,80" } $ airport -I | jc --airport -p -r { "agrctlrssi": "-66", "agrextrssi": "0", "agrctlnoise": "-90", "agrextnoise": "0", "state": "running", "op_mode": "station", "lasttxrate": "195", "maxrate": "867", "lastassocstatus": "0", "802_11_auth": "open", "link_auth": "wpa2-psk", "bssid": "3c:37:86:15:ad:f9", "ssid": "SnazzleDazzle", "mcs": "0", "channel": "48,80" } """ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.4' description = '`airport -I` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # details = 'enter any other details here' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['darwin'] magic_commands = ['airport -I'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (Dictionary) raw structured data to process Returns: Dictionary. Structured data to conform to the schema. """ # integer changes int_list = ['agrctlrssi', 'agrextrssi', 'agrctlnoise', 'agrextnoise', 'lasttxrate', 'maxrate', 'lastassocstatus', 'mcs'] for key in proc_data: if key in int_list: proc_data[key] = jc.utils.convert_to_int(proc_data[key]) return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: Dictionary. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = {} if jc.utils.has_data(data): for line in filter(None, data.splitlines()): linedata = line.split(':', maxsplit=1) raw_output[linedata[0].strip().lower().replace(' ', '_').replace('.', '_')] = linedata[1].strip() if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/airport_s.py000066400000000000000000000104711415226333200166320ustar00rootroot00000000000000"""jc - JSON CLI output utility `airport -s` command output parser The `airport` program can be found at `/System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport`. Usage (cli): $ airport -s | jc --airport-s or $ jc airport -s Usage (module): import jc.parsers.airport_s result = jc.parsers.airport_s.parse(airport_s_command_output) Schema: [ { "ssid": string, "bssid": string, "rssi": integer, "channel": string, "ht": boolean, "cc": string, "security": [ string, ] } ] Examples: $ airport -s | jc --airport-s -p [ { "ssid": "DIRECT-4A-HP OfficeJet 3830", "bssid": "00:67:eb:2a:a7:3b", "rssi": -90, "channel": "6", "ht": true, "cc": "--", "security": [ "WPA2(PSK/AES/AES)" ] }, { "ssid": "Latitude38", "bssid": "c0:ff:d5:d2:7a:f3", "rssi": -85, "channel": "11", "ht": true, "cc": "US", "security": [ "WPA2(PSK/AES/AES)" ] }, { "ssid": "xfinitywifi", "bssid": "6e:e3:0e:b8:45:99", "rssi": -83, "channel": "11", "ht": true, "cc": "US", "security": [ "NONE" ] }, ... ] $ airport -s | jc --airport -p -r [ { "ssid": "DIRECT-F3-HP ENVY 5660 series", "bssid": "b0:5a:da:6f:0a:d4", "rssi": "-93", "channel": "1", "ht": "Y", "cc": "--", "security": "WPA2(PSK/AES/AES)" }, { "ssid": "YouAreInfected-5", "bssid": "5c:e3:0e:c2:85:da", "rssi": "-85", "channel": "36", "ht": "Y", "cc": "US", "security": "WPA(PSK/AES,TKIP/TKIP) WPA2(PSK/AES,TKIP/TKIP)" }, { "ssid": "YuanFamily", "bssid": "5c:e3:0e:b8:5f:9a", "rssi": "-84", "channel": "11", "ht": "Y", "cc": "US", "security": "WPA(PSK/AES,TKIP/TKIP) WPA2(PSK/AES,TKIP/TKIP)" }, ... ] """ import jc.utils import jc.parsers.universal class info(): """Provides parser metadata (version, author, etc.)""" version = '1.5' description = '`airport -s` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # details = 'enter any other details here' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['darwin'] magic_commands = ['airport -s'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: # convert integers and booleans int_list = ['rssi'] bool_list = ['ht'] for key in entry: if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) if key in bool_list: entry[key] = jc.utils.convert_to_bool(entry[key]) if 'security' in entry: entry['security'] = entry['security'].split() return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = [] cleandata = list(filter(None, data.splitlines())) if jc.utils.has_data(data): # fix headers cleandata[0] = cleandata[0].lower() cleandata[0] = cleandata[0].replace('-', '_') cleandata[0] = cleandata[0].replace('security (auth/unicast/group)', 'security') # parse the data raw_output = jc.parsers.universal.sparse_table_parse(cleandata) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/arp.py000066400000000000000000000134021415226333200154070ustar00rootroot00000000000000"""jc - JSON CLI output utility `arp` command output parser Supports `arp` and `arp -a` output. Usage (cli): $ arp | jc --arp or $ jc arp Usage (module): import jc.parsers.arp result = jc.parsers.arp.parse(arp_command_output) Schema: [ { "name": string, "address": string, "hwtype": string, "hwaddress": string, "flags_mask": string, "iface": string, "permanent": boolean, "expires": integer } ] Examples: $ arp | jc --arp -p [ { "address": "192.168.71.254", "hwtype": "ether", "hwaddress": "00:50:56:f0:98:26", "flags_mask": "C", "iface": "ens33" }, { "address": "gateway", "hwtype": "ether", "hwaddress": "00:50:56:f7:4a:fc", "flags_mask": "C", "iface": "ens33" } ] $ arp | jc --arp -p -r [ { "address": "gateway", "hwtype": "ether", "hwaddress": "00:50:56:f7:4a:fc", "flags_mask": "C", "iface": "ens33" }, { "address": "192.168.71.254", "hwtype": "ether", "hwaddress": "00:50:56:fe:7a:b4", "flags_mask": "C", "iface": "ens33" } ] $ arp -a | jc --arp -p [ { "name": null, "address": "192.168.71.254", "hwtype": "ether", "hwaddress": "00:50:56:f0:98:26", "iface": "ens33" "permanent": false, "expires": 1182 }, { "name": "gateway", "address": "192.168.71.2", "hwtype": "ether", "hwaddress": "00:50:56:f7:4a:fc", "iface": "ens33" "permanent": false, "expires": 110 } ] $ arp -a | jc --arp -p -r [ { "name": "?", "address": "192.168.71.254", "hwtype": "ether", "hwaddress": "00:50:56:fe:7a:b4", "iface": "ens33" "permanent": false, "expires": "1182" }, { "name": "_gateway", "address": "192.168.71.2", "hwtype": "ether", "hwaddress": "00:50:56:f7:4a:fc", "iface": "ens33" "permanent": false, "expires": "110" } ] """ import jc.utils import jc.parsers.universal class info(): """Provides parser metadata (version, author, etc.)""" version = '1.8' description = '`arp` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'aix', 'freebsd', 'darwin'] magic_commands = ['arp'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema: """ # in BSD style, change name to null if it is a question mark for entry in proc_data: if 'name' in entry and entry['name'] == '?': entry['name'] = None int_list = ['expires'] for key in entry: if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = [] cleandata = list(filter(None, data.splitlines())) if jc.utils.has_data(data): # remove final Entries row if -v was used if cleandata[-1].startswith('Entries:'): cleandata.pop(-1) # detect if freebsd/osx style was used if cleandata[0][-1] == ']': for line in cleandata: splitline = line.split() output_line = { 'name': splitline[0], 'address': splitline[1].lstrip('(').rstrip(')'), 'hwtype': splitline[-1].lstrip('[').rstrip(']'), 'hwaddress': splitline[3], 'iface': splitline[5] } if 'permanent' in splitline: output_line['permanent'] = True else: output_line['permanent'] = False if 'expires' in splitline: output_line['expires'] = splitline[-3] raw_output.append(output_line) if raw: return raw_output else: return _process(raw_output) # detect if linux style was used elif cleandata[0].startswith('Address'): # fix header row to change Flags Mask to flags_mask cleandata[0] = cleandata[0].replace('Flags Mask', 'flags_mask') cleandata[0] = cleandata[0].lower() raw_output = jc.parsers.universal.simple_table_parse(cleandata) # otherwise, try bsd style else: for line in cleandata: line = line.split() output_line = { 'name': line[0], 'address': line[1].lstrip('(').rstrip(')'), 'hwtype': line[4].lstrip('[').rstrip(']'), 'hwaddress': line[3], 'iface': line[6], } raw_output.append(output_line) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/blkid.py000066400000000000000000000152731415226333200157220ustar00rootroot00000000000000"""jc - JSON CLI output utility `blkid` command output parser Usage (cli): $ blkid | jc --blkid or $ jc blkid Usage (module): import jc.parsers.blkid result = jc.parsers.blkid.parse(blkid_command_output) Schema: [ { "device": string, "uuid": string, "type": string, "usage": string, "part_entry_scheme": string, "part_entry_type": string, "part_entry_flags": string, "part_entry_number": integer, "part_entry_offset": integer, "part_entry_size": integer, "part_entry_disk": string, "id_fs_uuid": string, "id_fs_uuid_enc": string, "id_fs_version": string, "id_fs_type": string, "id_fs_usage": string, "id_part_entry_scheme": string, "id_part_entry_type": string, "id_part_entry_flags": string, "id_part_entry_number": integer, "id_part_entry_offset": integer, "id_part_entry_size": integer, "id_iolimit_minimum_io_size": integer, "id_iolimit_physical_sector_size": integer, "id_iolimit_logical_sector_size": integer, "id_part_entry_disk": string, "minimum_io_size": integer, "physical_sector_size": integer, "logical_sector_size": integer } ] Examples: $ blkid | jc --blkid -p [ { "device": "/dev/sda1", "uuid": "05d927ab-5875-49e4-ada1-7f46cb32c932", "type": "xfs" }, { "device": "/dev/sda2", "uuid": "3klkIj-w1kk-DkJi-0XBJ-y3i7-i2Ac-vHqWBM", "type": "LVM2_member" }, { "device": "/dev/mapper/centos-root", "uuid": "07d718ff-950c-4e5b-98f0-42a1147c77d9", "type": "xfs" }, { "device": "/dev/mapper/centos-swap", "uuid": "615eb89a-bcbf-46fd-80e3-c483ff5c931f", "type": "swap" } ] $ sudo blkid -o udev -ip /dev/sda2 | jc --blkid -p [ { "id_fs_uuid": "3klkIj-w1kk-DkJi-0XBJ-y3i7-i2Ac-vHqWBM", "id_fs_uuid_enc": "3klkIj-w1kk-DkJi-0XBJ-y3i7-i2Ac-vHqWBM", "id_fs_version": "LVM2\\x20001", "id_fs_type": "LVM2_member", "id_fs_usage": "raid", "id_iolimit_minimum_io_size": 512, "id_iolimit_physical_sector_size": 512, "id_iolimit_logical_sector_size": 512, "id_part_entry_scheme": "dos", "id_part_entry_type": "0x8e", "id_part_entry_number": 2, "id_part_entry_offset": 2099200, "id_part_entry_size": 39843840, "id_part_entry_disk": "8:0" } ] $ sudo blkid -ip /dev/sda1 | jc --blkid -p -r [ { "devname": "/dev/sda1", "uuid": "05d927bb-5875-49e3-ada1-7f46cb31c932", "type": "xfs", "usage": "filesystem", "minimum_io_size": "512", "physical_sector_size": "512", "logical_sector_size": "512", "part_entry_scheme": "dos", "part_entry_type": "0x83", "part_entry_flags": "0x80", "part_entry_number": "1", "part_entry_offset": "2048", "part_entry_size": "2097152", "part_entry_disk": "8:0" } ] """ import shlex import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.5' description = '`blkid` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # details = 'enter any other details here' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux'] magic_commands = ['blkid'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: if 'devname' in entry: entry['device'] = entry.pop('devname') int_list = ['part_entry_number', 'part_entry_offset', 'part_entry_size', 'id_part_entry_number', 'id_part_entry_offset', 'id_part_entry_size', 'minimum_io_size', 'physical_sector_size', 'logical_sector_size', 'id_iolimit_minimum_io_size', 'id_iolimit_physical_sector_size', 'id_iolimit_logical_sector_size'] for key in entry: if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = [] if jc.utils.has_data(data): # if the first field is a device, use normal parsing: if data.split(maxsplit=1)[0][-1] == ':': linedata = data.splitlines() for line in linedata: output_line = {} entries = shlex.split(line) output_line['device'] = entries.pop(0)[:-1] for entry in entries: key = entry.split('=', maxsplit=1)[0].lower() value = entry.split('=', maxsplit=1)[1] output_line[key] = value raw_output.append(output_line) # else use key/value per line parsing else: linedata = data.splitlines() output_line = {} for line in linedata: if line == '': if output_line: raw_output.append(output_line) output_line = {} continue continue key = line.split('=', maxsplit=1)[0].lower() value = line.split('=', maxsplit=1)[1] output_line[key] = value if output_line: raw_output.append(output_line) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/cksum.py000066400000000000000000000051601415226333200157510ustar00rootroot00000000000000"""jc - JSON CLI output utility `cksum` command output parser This parser works with the following checksum calculation utilities: - `sum` - `cksum` Usage (cli): $ cksum file.txt | jc --cksum or $ jc cksum file.txt Usage (module): import jc.parsers.cksum result = jc.parsers.cksum.parse(cksum_command_output) Schema: [ { "filename": string, "checksum": integer, "blocks": integer } ] Examples: $ cksum * | jc --cksum -p [ { "filename": "__init__.py", "checksum": 4294967295, "blocks": 0 }, { "filename": "airport.py", "checksum": 2208551092, "blocks": 3745 }, { "filename": "airport_s.py", "checksum": 1113817598, "blocks": 4572 }, ... ] """ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.3' description = '`cksum` and `sum` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'cygwin', 'aix', 'freebsd'] magic_commands = ['cksum', 'sum'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: int_list = ['checksum', 'blocks'] for key in entry: if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = [] if jc.utils.has_data(data): for line in filter(None, data.splitlines()): item = { 'filename': line.split(maxsplit=2)[2], 'checksum': line.split(maxsplit=2)[0], 'blocks': line.split(maxsplit=2)[1] } raw_output.append(item) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/crontab.py000066400000000000000000000155671415226333200162730ustar00rootroot00000000000000"""jc - JSON CLI output utility `crontab -l` command output and crontab file parser Supports `crontab -l` command output and crontab files. Usage (cli): $ crontab -l | jc --crontab or $ jc crontab -l Usage (module): import jc.parsers.crontab result = jc.parsers.crontab.parse(crontab_output) Schema: { "variables": [ "name": string, "value": string ], "schedule": [ { "occurrence" string, "minute": [ string ], "hour": [ string ], "day_of_month": [ string ], "month": [ string ], "day_of_week": [ string ], "occurrence": string, "command": string } ] } Examples: $ crontab -l | jc --crontab -p { "variables": [ { "name": "MAILTO", "value": "root" }, { "name": "PATH", "value": "/sbin:/bin:/usr/sbin:/usr/bin" }, { "name": "SHELL", "value": "/bin/bash" } ], "schedule": [ { "minute": [ "5" ], "hour": [ "10-11", "22" ], "day_of_month": [ "*" ], "month": [ "*" ], "day_of_week": [ "*" ], "command": "/var/www/devdaily.com/bin/mk-new-links.php" }, { "minute": [ "30" ], "hour": [ "4/2" ], "day_of_month": [ "*" ], "month": [ "*" ], "day_of_week": [ "*" ], "command": "/var/www/devdaily.com/bin/create-all-backups.sh" }, { "occurrence": "yearly", "command": "/home/maverick/bin/annual-maintenance" }, { "occurrence": "reboot", "command": "/home/cleanup" }, { "occurrence": "monthly", "command": "/home/maverick/bin/tape-backup" } ] } $ cat /etc/crontab | jc --crontab -p -r { "variables": [ { "name": "MAILTO", "value": "root" }, { "name": "PATH", "value": "/sbin:/bin:/usr/sbin:/usr/bin" }, { "name": "SHELL", "value": "/bin/bash" } ], "schedule": [ { "minute": "5", "hour": "10-11,22", "day_of_month": "*", "month": "*", "day_of_week": "*", "command": "/var/www/devdaily.com/bin/mk-new-links.php" }, { "minute": "30", "hour": "4/2", "day_of_month": "*", "month": "*", "day_of_week": "*", "command": "/var/www/devdaily.com/bin/create-all-backups.sh" }, { "occurrence": "yearly", "command": "/home/maverick/bin/annual-maintenance" }, { "occurrence": "reboot", "command": "/home/cleanup" }, { "occurrence": "monthly", "command": "/home/maverick/bin/tape-backup" } ] } """ import jc.utils import jc.parsers.universal class info(): """Provides parser metadata (version, author, etc.)""" version = '1.6' description = '`crontab` command and file parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # details = 'enter any other details here' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'aix', 'freebsd'] magic_commands = ['crontab'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (Dictionary) raw structured data to process Returns: Dictionary. Structured data to conform to the schema. """ # put itmes in lists try: for entry in proc_data['schedule']: entry['minute'] = entry['minute'].split(',') entry['hour'] = entry['hour'].split(',') entry['day_of_month'] = entry['day_of_month'].split(',') entry['month'] = entry['month'].split(',') entry['day_of_week'] = entry['day_of_week'].split(',') except (KeyError): pass return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: Dictionary. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = {} cleandata = data.splitlines() # Clear any blank lines cleandata = list(filter(None, cleandata)) if jc.utils.has_data(data): # Clear any commented lines for i, line in reversed(list(enumerate(cleandata))): if line.strip().startswith('#'): cleandata.pop(i) # Pop any variable assignment lines cron_var = [] for i, line in reversed(list(enumerate(cleandata))): if '=' in line and not line.strip()[0].isdigit() and not line.strip()[0] == '@': var_line = cleandata.pop(i) var_name = var_line.split('=', maxsplit=1)[0].strip() var_value = var_line.split('=', maxsplit=1)[1].strip() cron_var.append({'name': var_name, 'value': var_value}) raw_output['variables'] = cron_var # Pop any shortcut lines shortcut_list = [] for i, line in reversed(list(enumerate(cleandata))): if line.strip().startswith('@'): shortcut_line = cleandata.pop(i) occurrence = shortcut_line.split(maxsplit=1)[0].strip().lstrip('@') cmd = shortcut_line.split(maxsplit=1)[1].strip() shortcut_list.append({'occurrence': occurrence, 'command': cmd}) # Add header row for parsing cleandata[:0] = ['minute hour day_of_month month day_of_week command'] if len(cleandata) > 1: cron_list = jc.parsers.universal.simple_table_parse(cleandata) raw_output['schedule'] = cron_list # Add shortcut entries back in for item in shortcut_list: raw_output['schedule'].append(item) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/crontab_u.py000066400000000000000000000163011415226333200166020ustar00rootroot00000000000000"""jc - JSON CLI output utility `crontab -l` command output and crontab file parser This version of the `crontab -l` parser supports output that contains user information for processes. Usage (cli): $ crontab -l | jc --crontab-u Usage (module): import jc.parsers.crontab_u result = jc.parsers.crontab_u.parse(crontab_u_output) Schema: { "variables": [ "name": string, "value": string ], "schedule": [ { "occurrence" string, "minute": [ string ], "hour": [ string ], "day_of_month": [ string ], "month": [ string ], "day_of_week": [ string ], "occurrence": string, "user": string, "command": string } ] } Examples: $ cat /etc/crontab | jc --crontab-u -p { "variables": [ { "name": "PATH", "value": "/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin" }, { "name": "SHELL", "value": "/bin/sh" } ], "schedule": [ { "minute": [ "25" ], "hour": [ "6" ], "day_of_month": [ "*" ], "month": [ "*" ], "day_of_week": [ "*" ], "user": "root", "command": "test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )" }, { "minute": [ "47" ], "hour": [ "6" ], "day_of_month": [ "*" ], "month": [ "*" ], "day_of_week": [ "7" ], "user": "root", "command": "test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )" }, { "minute": [ "52" ], "hour": [ "6" ], "day_of_month": [ "1" ], "month": [ "*" ], "day_of_week": [ "*" ], "user": "root", "command": "test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )" } ] } $ cat /etc/crontab | jc --crontab-u -p -r { "variables": [ { "name": "PATH", "value": "/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin" }, { "name": "SHELL", "value": "/bin/sh" } ], "schedule": [ { "minute": "25", "hour": "6", "day_of_month": "*", "month": "*", "day_of_week": "*", "user": "root", "command": "test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )" }, { "minute": "47", "hour": "6", "day_of_month": "*", "month": "*", "day_of_week": "7", "user": "root", "command": "test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )" }, { "minute": "52", "hour": "6", "day_of_month": "1", "month": "*", "day_of_week": "*", "user": "root", "command": "test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )" } ] } """ import jc.utils import jc.parsers.universal class info(): """Provides parser metadata (version, author, etc.)""" version = '1.7' description = '`crontab` file parser with user support' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # details = 'enter any other details here' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'aix', 'freebsd'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (Dictionary) raw structured data to process Returns: Dictionary. Structured data to conform to the schema. """ # put itmes in lists try: for entry in proc_data['schedule']: entry['minute'] = entry['minute'].split(',') entry['hour'] = entry['hour'].split(',') entry['day_of_month'] = entry['day_of_month'].split(',') entry['month'] = entry['month'].split(',') entry['day_of_week'] = entry['day_of_week'].split(',') except (KeyError): pass return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: Dictionary. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = {} cleandata = data.splitlines() # Clear any blank lines cleandata = list(filter(None, cleandata)) if jc.utils.has_data(data): # Clear any commented lines for i, line in reversed(list(enumerate(cleandata))): if line.strip().startswith('#'): cleandata.pop(i) # Pop any variable assignment lines cron_var = [] for i, line in reversed(list(enumerate(cleandata))): if '=' in line and not line.strip()[0].isdigit() and not line.strip()[0] == '@': var_line = cleandata.pop(i) var_name = var_line.split('=', maxsplit=1)[0].strip() var_value = var_line.split('=', maxsplit=1)[1].strip() cron_var.append({'name': var_name, 'value': var_value}) raw_output['variables'] = cron_var # Pop any shortcut lines shortcut_list = [] for i, line in reversed(list(enumerate(cleandata))): if line.strip().startswith('@'): shortcut_line = cleandata.pop(i) occurrence = shortcut_line.split(maxsplit=1)[0].strip().lstrip('@') usr = shortcut_line.split(maxsplit=2)[1].strip() cmd = shortcut_line.split(maxsplit=2)[2].strip() shortcut_list.append({'occurrence': occurrence, 'user': usr, 'command': cmd}) # Add header row for parsing cleandata[:0] = ['minute hour day_of_month month day_of_week user command'] if len(cleandata) > 1: cron_list = jc.parsers.universal.simple_table_parse(cleandata) raw_output['schedule'] = cron_list # Add shortcut entries back in for item in shortcut_list: raw_output['schedule'].append(item) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/csv.py000066400000000000000000000063541415226333200154300ustar00rootroot00000000000000"""jc - JSON CLI output utility `csv` file parser The `csv` parser will attempt to automatically detect the delimiter character. If the delimiter cannot be detected it will default to comma. The first row of the file must be a header row. Usage (cli): $ cat file.csv | jc --csv Usage (module): import jc.parsers.csv result = jc.parsers.csv.parse(csv_output) Schema: csv file converted to a Dictionary: https://docs.python.org/3/library/csv.html [ { "column_name1": string, "column_name2": string } ] Examples: $ cat homes.csv "Sell", "List", "Living", "Rooms", "Beds", "Baths", "Age", "Acres", "Taxes" 142, 160, 28, 10, 5, 3, 60, 0.28, 3167 175, 180, 18, 8, 4, 1, 12, 0.43, 4033 129, 132, 13, 6, 3, 1, 41, 0.33, 1471 ... $ cat homes.csv | jc --csv -p [ { "Sell": "142", "List": "160", "Living": "28", "Rooms": "10", "Beds": "5", "Baths": "3", "Age": "60", "Acres": "0.28", "Taxes": "3167" }, { "Sell": "175", "List": "180", "Living": "18", "Rooms": "8", "Beds": "4", "Baths": "1", "Age": "12", "Acres": "0.43", "Taxes": "4033" }, { "Sell": "129", "List": "132", "Living": "13", "Rooms": "6", "Beds": "3", "Baths": "1", "Age": "41", "Acres": "0.33", "Taxes": "1471" }, ... ] """ import jc.utils import csv class info(): """Provides parser metadata (version, author, etc.)""" version = '1.3' description = 'CSV file parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' details = 'Using the python standard csv library' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'cygwin', 'win32', 'aix', 'freebsd'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Each Dictionary represents a row in the csv file. """ # No further processing return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = [] cleandata = data.splitlines() # Clear any blank lines cleandata = list(filter(None, cleandata)) if jc.utils.has_data(data): dialect = None try: dialect = csv.Sniffer().sniff(data[:1024]) except Exception: pass reader = csv.DictReader(cleandata, dialect=dialect) for row in reader: raw_output.append(row) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/csv_s.py000066400000000000000000000110041415226333200157360ustar00rootroot00000000000000"""jc - JSON CLI output utility `csv` file streaming parser > This streaming parser outputs JSON Lines The `csv` streaming parser will attempt to automatically detect the delimiter character. If the delimiter cannot be detected it will default to comma. The first row of the file must be a header row. Note: The first 100 rows are read into memory to enable delimiter detection, then the rest of the rows are loaded lazily. Usage (cli): $ cat file.csv | jc --csv-s Usage (module): import jc.parsers.csv_s result = jc.parsers.csv_s.parse(csv_output.splitlines()) # result is an iterable object for item in result: # do something Schema: csv file converted to a Dictionary: https://docs.python.org/3/library/csv.html { "column_name1": string, "column_name2": string, "_jc_meta": # This object only exists if using -qq or ignore_exceptions=True { "success": booean, # true if successfully parsed, false if error "error": string, # exists if "success" is false "line": string # exists if "success" is false } } Examples: $ cat homes.csv "Sell", "List", "Living", "Rooms", "Beds", "Baths", "Age", "Acres", "Taxes" 142, 160, 28, 10, 5, 3, 60, 0.28, 3167 175, 180, 18, 8, 4, 1, 12, 0.43, 4033 129, 132, 13, 6, 3, 1, 41, 0.33, 1471 ... $ cat homes.csv | jc --csv-s {"Sell":"142","List":"160","Living":"28","Rooms":"10","Beds":"5","Baths":"3","Age":"60","Acres":"0.28","Taxes":"3167"} {"Sell":"175","List":"180","Living":"18","Rooms":"8","Beds":"4","Baths":"1","Age":"12","Acres":"0.43","Taxes":"4033"} {"Sell":"129","List":"132","Living":"13","Rooms":"6","Beds":"3","Baths":"1","Age":"41","Acres":"0.33","Taxes":"1471"} ... """ import itertools import csv import jc.utils from jc.utils import stream_success, stream_error from jc.exceptions import ParseError class info(): """Provides parser metadata (version, author, etc.)""" version = '1.1' description = 'CSV file streaming parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' details = 'Using the python standard csv library' compatible = ['linux', 'darwin', 'cygwin', 'win32', 'aix', 'freebsd'] streaming = True __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Each Dictionary represents a row in the csv file. """ # No further processing return proc_data def parse(data, raw=False, quiet=False, ignore_exceptions=False): """ Main text parsing generator function. Returns an iterator object. Parameters: data: (iterable) line-based text data to parse (e.g. sys.stdin or str.splitlines()) raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True ignore_exceptions: (boolean) ignore parsing exceptions if True Yields: Dictionary. Raw or processed structured data. Returns: Iterator object """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.streaming_input_type_check(data) # convert data to an iterable in case a sequence like a list is used as input. # this allows the exhaustion of the input so we don't double-process later. data = iter(data) temp_list = [] # first, load the first 100 lines into a list to detect the CSV dialect for line in itertools.islice(data, 100): temp_list.append(line) # check for Python bug that does not split on `\r` newlines from sys.stdin correctly # https://bugs.python.org/issue45617 if len(temp_list) == 1: raise ParseError('Unable to detect line endings. Please try the non-streaming CSV parser instead.') sniffdata = '\n'.join(temp_list) dialect = None try: dialect = csv.Sniffer().sniff(sniffdata) except Exception: pass # chain `temp_list` and `data` together to lazy load the rest of the CSV data new_data = itertools.chain(temp_list, data) reader = csv.DictReader(new_data, dialect=dialect) for row in reader: try: yield stream_success(row, ignore_exceptions) if raw else stream_success(_process(row), ignore_exceptions) except Exception as e: yield stream_error(e, ignore_exceptions, row) jc-1.17.3/jc/parsers/date.py000066400000000000000000000157031415226333200155500ustar00rootroot00000000000000"""jc - JSON CLI output utility `date` command output parser The `epoch` calculated timestamp field is naive. (i.e. based on the local time of the system the parser is run on) The `epoch_utc` calculated timestamp field is timezone-aware and is only available if the timezone field is UTC. Usage (cli): $ date | jc --date or $ jc date Usage (module): import jc.parsers.date result = jc.parsers.date.parse(date_command_output) Schema: { "year": integer, "month": string, "month_num": integer, "day": integer, "weekday": string, "weekday_num": integer, "hour": integer, "hour_24": integer, "minute": integer, "second": integer, "period": string, "timezone": string, "utc_offset": string, # null if timezone field is not UTC "day_of_year": integer, "week_of_year": integer, "iso": string, "epoch": integer, # naive timestamp "epoch_utc": integer, # timezone-aware timestamp. Only available if timezone field is UTC "timezone_aware": boolean # if true, all fields are correctly based on UTC } Examples: $ date | jc --date -p { "year": 2021, "month": "Mar", "month_num": 3, "day": 25, "weekday": "Thu", "weekday_num": 4, "hour": 2, "hour_24": 2, "minute": 2, "second": 26, "period": "AM", "timezone": "UTC", "utc_offset": "+0000", "day_of_year": 84, "week_of_year": 12, "iso": "2021-03-25T02:02:26+00:00", "epoch": 1616662946, "epoch_utc": 1616637746, "timezone_aware": true } """ from datetime import datetime, timezone import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '2.2' description = '`date` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'freebsd'] magic_commands = ['date'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (Dictionary) raw structured data to process Returns: Dictionary. Structured data to conform to the schema. """ # no further processing return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: Dictionary. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = {} if jc.utils.has_data(data): # find the timezone no matter where it is in the string # from https://www.timeanddate.com/time/zones/ tz_abbr = ['A', 'ACDT', 'ACST', 'ACT', 'ACWST', 'ADT', 'AEDT', 'AEST', 'AET', 'AFT', 'AKDT', 'AKST', 'ALMT', 'AMST', 'AMT', 'ANAST', 'ANAT', 'AQTT', 'ART', 'AST', 'AT', 'AWDT', 'AWST', 'AZOST', 'AZOT', 'AZST', 'AZT', 'AoE', 'B', 'BNT', 'BOT', 'BRST', 'BRT', 'BST', 'BTT', 'C', 'CAST', 'CAT', 'CCT', 'CDT', 'CEST', 'CET', 'CHADT', 'CHAST', 'CHOST', 'CHOT', 'CHUT', 'CIDST', 'CIST', 'CKT', 'CLST', 'CLT', 'COT', 'CST', 'CT', 'CVT', 'CXT', 'ChST', 'D', 'DAVT', 'DDUT', 'E', 'EASST', 'EAST', 'EAT', 'ECT', 'EDT', 'EEST', 'EET', 'EGST', 'EGT', 'EST', 'ET', 'F', 'FET', 'FJST', 'FJT', 'FKST', 'FKT', 'FNT', 'G', 'GALT', 'GAMT', 'GET', 'GFT', 'GILT', 'GMT', 'GST', 'GYT', 'H', 'HDT', 'HKT', 'HOVST', 'HOVT', 'HST', 'I', 'ICT', 'IDT', 'IOT', 'IRDT', 'IRKST', 'IRKT', 'IRST', 'IST', 'JST', 'K', 'KGT', 'KOST', 'KRAST', 'KRAT', 'KST', 'KUYT', 'L', 'LHDT', 'LHST', 'LINT', 'M', 'MAGST', 'MAGT', 'MART', 'MAWT', 'MDT', 'MHT', 'MMT', 'MSD', 'MSK', 'MST', 'MT', 'MUT', 'MVT', 'MYT', 'N', 'NCT', 'NDT', 'NFDT', 'NFT', 'NOVST', 'NOVT', 'NPT', 'NRT', 'NST', 'NUT', 'NZDT', 'NZST', 'O', 'OMSST', 'OMST', 'ORAT', 'P', 'PDT', 'PET', 'PETST', 'PETT', 'PGT', 'PHOT', 'PHT', 'PKT', 'PMDT', 'PMST', 'PONT', 'PST', 'PT', 'PWT', 'PYST', 'PYT', 'Q', 'QYZT', 'R', 'RET', 'ROTT', 'S', 'SAKT', 'SAMT', 'SAST', 'SBT', 'SCT', 'SGT', 'SRET', 'SRT', 'SST', 'SYOT', 'T', 'TAHT', 'TFT', 'TJT', 'TKT', 'TLT', 'TMT', 'TOST', 'TOT', 'TRT', 'TVT', 'U', 'ULAST', 'ULAT', 'UYST', 'UYT', 'UZT', 'V', 'VET', 'VLAST', 'VLAT', 'VOST', 'VUT', 'W', 'WAKT', 'WARST', 'WAST', 'WAT', 'WEST', 'WET', 'WFT', 'WGST', 'WGT', 'WIB', 'WIT', 'WITA', 'WST', 'WT', 'X', 'Y', 'YAKST', 'YAKT', 'YAPT', 'YEKST', 'YEKT', 'Z', 'UTC', 'UTC-1200', 'UTC-1100', 'UTC-1000', 'UTC-0930', 'UTC-0900', 'UTC-0800', 'UTC-0700', 'UTC-0600', 'UTC-0500', 'UTC-0400', 'UTC-0300', 'UTC-0230', 'UTC-0200', 'UTC-0100', 'UTC+0000', 'UTC-0000', 'UTC+0100', 'UTC+0200', 'UTC+0300', 'UTC+0400', 'UTC+0430', 'UTC+0500', 'UTC+0530', 'UTC+0545', 'UTC+0600', 'UTC+0630', 'UTC+0700', 'UTC+0800', 'UTC+0845', 'UTC+0900', 'UTC+1000', 'UTC+1030', 'UTC+1100', 'UTC+1200', 'UTC+1300', 'UTC+1345', 'UTC+1400'] tz = None for term in data.replace('(', '').replace(')', '').split(): if term in tz_abbr: tz = term dt = None dt_utc = None timestamp = jc.utils.timestamp(data) if timestamp.naive: dt = datetime.fromtimestamp(timestamp.naive) if timestamp.utc: dt_utc = datetime.fromtimestamp(timestamp.utc, timezone.utc) if dt_utc: dt = dt_utc raw_output = { 'year': dt.year, 'month': dt.strftime('%b'), 'month_num': dt.month, 'day': dt.day, 'weekday': dt.strftime('%a'), 'weekday_num': dt.isoweekday(), 'hour': int(dt.strftime('%I')), 'hour_24': dt.hour, 'minute': dt.minute, 'second': dt.second, 'period': dt.strftime('%p'), 'timezone': tz, 'utc_offset': dt.strftime('%z') or None, 'day_of_year': int(dt.strftime('%j')), 'week_of_year': int(dt.strftime('%W')), 'iso': dt.isoformat(), 'epoch': timestamp.naive, 'epoch_utc': timestamp.utc, 'timezone_aware': True if timestamp.utc else False } if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/df.py000066400000000000000000000150051415226333200152170ustar00rootroot00000000000000"""jc - JSON CLI output utility `df` command output parser Usage (cli): $ df | jc --df or $ jc df Usage (module): import jc.parsers.df result = jc.parsers.df.parse(df_command_output) Schema: [ { "filesystem": string, "size": string, "1k_blocks": integer, "512_blocks": integer, "used": integer, "available": integer, "capacity_percent": integer, "ifree": integer, "iused": integer, "use_percent": integer, "iused_percent": integer, "mounted_on": string } ] Examples: $ df | jc --df -p [ { "filesystem": "devtmpfs", "1k_blocks": 1918820, "used": 0, "available": 1918820, "use_percent": 0, "mounted_on": "/dev" }, { "filesystem": "tmpfs", "1k_blocks": 1930668, "used": 0, "available": 1930668, "use_percent": 0, "mounted_on": "/dev/shm" }, { "filesystem": "tmpfs", "1k_blocks": 1930668, "used": 11800, "available": 1918868, "use_percent": 1, "mounted_on": "/run" }, ... ] $ df | jc --df -p -r [ { "filesystem": "devtmpfs", "1k_blocks": "1918820", "used": "0", "available": "1918820", "use_percent": "0%", "mounted_on": "/dev" }, { "filesystem": "tmpfs", "1k_blocks": "1930668", "used": "0", "available": "1930668", "use_percent": "0%", "mounted_on": "/dev/shm" }, { "filesystem": "tmpfs", "1k_blocks": "1930668", "used": "11800", "available": "1918868", "use_percent": "1%", "mounted_on": "/run" }, ... ] """ import hashlib import jc.utils import jc.parsers.universal class info(): """Provides parser metadata (version, author, etc.)""" version = '1.9' description = '`df` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'freebsd'] magic_commands = ['df'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema: """ for entry in proc_data: # change 'avail' to 'available' if 'avail' in entry: entry['available'] = entry.pop('avail') # change 'use%' to 'use_percent' if 'use%' in entry: entry['use_percent'] = entry.pop('use%') # change 'capacity' to 'capacity_percent' if 'capacity' in entry: entry['capacity_percent'] = entry.pop('capacity') # change '%iused' to 'iused_percent' if '%iused' in entry: entry['iused_percent'] = entry.pop('%iused') # change any entry for key with '_blocks' in the name to int for k in entry: if '_blocks' in str(k): entry[k] = jc.utils.convert_to_int(entry[k]) # remove percent sign from 'use_percent', 'capacity_percent', and 'iused_percent' if 'use_percent' in entry: entry['use_percent'] = entry['use_percent'].rstrip('%') if 'capacity_percent' in entry: entry['capacity_percent'] = entry['capacity_percent'].rstrip('%') if 'iused_percent' in entry: entry['iused_percent'] = entry['iused_percent'].rstrip('%') # change used, available, use_percent, capacity_percent, ifree, iused, iused_percent to int int_list = ['used', 'available', 'use_percent', 'capacity_percent', 'ifree', 'iused', 'iused_percent'] for key in entry: if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data def _long_filesystem_hash(header, line): """Returns truncated hash and value of the filesystem field if it is too long for the column""" filesystem_field = line.split()[0] # get length of filesystem column space_count = 0 for char in header[10:]: if char == ' ': space_count += 1 continue break filesystem_col_len = space_count + 9 # return the hash and value if the field data is longer than the column length if len(filesystem_field) > filesystem_col_len: truncated_hash = hashlib.sha256(filesystem_field.encode('utf-8')).hexdigest()[:filesystem_col_len] return truncated_hash, filesystem_field return None, None def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) cleandata = data.splitlines() fix_data = [] raw_output = [] filesystem_map = {} if jc.utils.has_data(data): # fix headers cleandata[0] = cleandata[0].lower() cleandata[0] = cleandata[0].replace('-', '_') cleandata[0] = cleandata[0].replace('mounted on', 'mounted_on') # fix long filesystem data in some older versions of df header = cleandata[0] fix_data.append(header) for line in cleandata[1:]: field_hash, field_value = _long_filesystem_hash(header, line) if field_hash: filesystem_map.update({field_hash: field_value}) newline = line.replace(field_value, field_hash) fix_data.append(newline) else: fix_data.append(line) # parse the data raw_output = jc.parsers.universal.sparse_table_parse(fix_data) # replace hash values with real values to fix long filesystem data in some older versions of df for item in raw_output: if 'filesystem' in item: if item['filesystem'] in filesystem_map: item['filesystem'] = filesystem_map[item['filesystem']] if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/dig.py000066400000000000000000000437441415226333200154040ustar00rootroot00000000000000"""jc - JSON CLI output utility `dig` command output parser Options supported: - `+noall +answer` options are supported in cases where only the answer information is desired. - `+axfr` option is supported on its own The `when_epoch` calculated timestamp field is naive (i.e. based on the local time of the system the parser is run on) The `when_epoch_utc` calculated timestamp field is timezone-aware and is only available if the timezone field is UTC. Usage (cli): $ dig example.com | jc --dig or $ jc dig example.com Usage (module): import jc.parsers.dig result = jc.parsers.dig.parse(dig_command_output) Schema: [ { "id": integer, "opcode": string, "status": string, "flags": [ string ], "query_num": integer, "answer_num": integer, "authority_num": integer, "additional_num": integer, "axfr": [ { "name": string, "class": string, "type": string, "ttl": integer, "data": string } ], "opt_pseudosection": { "edns": { "version": integer, "flags": [ string ], "udp": integer }, "cookie": string }, "question": { "name": string, "class": string, "type": string }, "answer": [ { "name": string, "class": string, "type": string, "ttl": integer, "data": string } ], "additional": [ { "name": string, "class": string, "type": string, "ttl": integer, "data": string } ], "authority": [ { "name": string, "class": string, "type": string, "ttl": integer, "data": string } ], "query_size": integer, "query_time": integer, # in msec "server": string, "when": string, "when_epoch": integer, # naive timestamp if when field is parsable, else null "when_epoch_utc": integer, # timezone aware timestamp availabe for UTC, else null "rcvd": integer "size": string } ] Examples: $ dig example.com | jc --dig -p [ { "id": 2951, "opcode": "QUERY", "status": "NOERROR", "flags": [ "qr", "rd", "ra" ], "query_num": 1, "answer_num": 1, "authority_num": 0, "additional_num": 1, "opt_pseudosection": { "edns": { "version": 0, "flags": [], "udp": 4096 } }, "question": { "name": "example.com.", "class": "IN", "type": "A" }, "answer": [ { "name": "example.com.", "class": "IN", "type": "A", "ttl": 39302, "data": "93.184.216.34" } ], "query_time": 49, "server": "2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)", "when": "Fri Apr 16 16:05:10 PDT 2021", "rcvd": 56, "when_epoch": 1618614310, "when_epoch_utc": null } ] $ dig cnn.com www.cnn.com @205.251.194.64 | jc --dig -p -r [ { "id": "46052", "opcode": "QUERY", "status": "NOERROR", "flags": [ "qr", "rd", "ra" ], "query_num": "1", "answer_num": "1", "authority_num": "0", "additional_num": "1", "opt_pseudosection": { "edns": { "version": "0", "flags": [], "udp": "4096" } }, "question": { "name": "example.com.", "class": "IN", "type": "A" }, "answer": [ { "name": "example.com.", "class": "IN", "type": "A", "ttl": "40426", "data": "93.184.216.34" } ], "query_time": "48 msec", "server": "2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)", "when": "Fri Apr 16 16:06:12 PDT 2021", "rcvd": "56" } ] $ dig -x 1.1.1.1 | jc --dig -p [ { "id": 20785, "opcode": "QUERY", "status": "NOERROR", "flags": [ "qr", "rd", "ra" ], "query_num": 1, "answer_num": 1, "authority_num": 0, "additional_num": 1, "opt_pseudosection": { "edns": { "version": 0, "flags": [], "udp": 4096 } }, "question": { "name": "1.1.1.1.in-addr.arpa.", "class": "IN", "type": "PTR" }, "answer": [ { "name": "1.1.1.1.in-addr.arpa.", "class": "IN", "type": "PTR", "ttl": 1800, "data": "one.one.one.one." } ], "query_time": 40, "server": "2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)", "when": "Sat Apr 17 14:50:50 PDT 2021", "rcvd": 78, "when_epoch": 1618696250, "when_epoch_utc": null } ] $ dig -x 1.1.1.1 | jc --dig -p -r [ { "id": "32644", "opcode": "QUERY", "status": "NOERROR", "flags": [ "qr", "rd", "ra" ], "query_num": "1", "answer_num": "1", "authority_num": "0", "additional_num": "1", "opt_pseudosection": { "edns": { "version": "0", "flags": [], "udp": "4096" } }, "question": { "name": "1.1.1.1.in-addr.arpa.", "class": "IN", "type": "PTR" }, "answer": [ { "name": "1.1.1.1.in-addr.arpa.", "class": "IN", "type": "PTR", "ttl": "1800", "data": "one.one.one.one." } ], "query_time": "52 msec", "server": "2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)", "when": "Sat Apr 17 14:51:46 PDT 2021", "rcvd": "78" } ] $ dig +noall +answer cnn.com | jc --dig -p [ { "answer": [ { "name": "cnn.com.", "class": "IN", "type": "A", "ttl": 60, "data": "151.101.193.67" }, { "name": "cnn.com.", "class": "IN", "type": "A", "ttl": 60, "data": "151.101.65.67" }, { "name": "cnn.com.", "class": "IN", "type": "A", "ttl": 60, "data": "151.101.1.67" }, { "name": "cnn.com.", "class": "IN", "type": "A", "ttl": 60, "data": "151.101.129.67" } ] } ] """ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '2.2' description = '`dig` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'aix', 'freebsd', 'darwin', 'win32', 'cygwin'] magic_commands = ['dig'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: int_list = ['id', 'query_num', 'answer_num', 'authority_num', 'additional_num', 'rcvd', 'query_size', 'query_time'] for key in entry: if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) if 'axfr' in entry: for ax in entry['axfr']: ax['ttl'] = jc.utils.convert_to_int(ax['ttl']) if 'opt_pseudosection' in entry: if 'edns' in entry['opt_pseudosection']: if 'version' in entry['opt_pseudosection']['edns']: entry['opt_pseudosection']['edns']['version'] = jc.utils.convert_to_int(entry['opt_pseudosection']['edns']['version']) if 'udp' in entry['opt_pseudosection']['edns']: entry['opt_pseudosection']['edns']['udp'] = jc.utils.convert_to_int(entry['opt_pseudosection']['edns']['udp']) if 'answer' in entry: for ans in entry['answer']: ans['ttl'] = jc.utils.convert_to_int(ans['ttl']) if 'additional' in entry: for add in entry['additional']: add['ttl'] = jc.utils.convert_to_int(add['ttl']) if 'authority' in entry: for auth in entry['authority']: auth['ttl'] = jc.utils.convert_to_int(auth['ttl']) if 'when' in entry: ts = jc.utils.timestamp(entry['when']) entry['when_epoch'] = ts.naive entry['when_epoch_utc'] = ts.utc return proc_data def _parse_header(header): # ;; ->>HEADER<<- opcode: QUERY, status: NXDOMAIN, id: 6140 header = header.split() opcode = header[3].rstrip(',') status = header[5].rstrip(',') header_id = header[7] return {'id': header_id, 'opcode': opcode, 'status': status} def _parse_flags_line(flagsline): # ;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 1 flagsline = flagsline.split(';') flags = flagsline.pop(0) flags = flagsline.pop(0) flags = flagsline.pop(0).split(':') flags = flags[1].lstrip() flags = flags.split() restline = flagsline[0].replace(',', ' ').replace(':', ' ') restlist = restline.split() query_num = restlist[1] answer_num = restlist[3] authority_num = restlist[5] additional_num = restlist[7] return {'flags': flags, 'query_num': query_num, 'answer_num': answer_num, 'authority_num': authority_num, 'additional_num': additional_num} def _parse_opt_pseudosection(optline): # ;; OPT PSEUDOSECTION: # ; EDNS: version: 0, flags:; udp: 4096 # ; COOKIE: 1cbc06703eaef210 if optline.startswith('; EDNS:'): optline_list = optline.replace(',', ' ').split(';') optline_first = optline_list[1] optline_rest = optline_list[2] _, _, ver, _, *flags = optline_first.split() udp = optline_rest.split()[-1] return { 'edns': { 'version': ver, 'flags': flags, 'udp': udp } } elif optline.startswith('; COOKIE:'): return { 'cookie': optline.split()[2] } def _parse_question(question): # ;www.cnn.com. IN A question = question.split() dns_name = question[0].lstrip(';') dns_class = question[1] dns_type = question[2] return {'name': dns_name, 'class': dns_class, 'type': dns_type} def _parse_answer(answer): # www.cnn.com. 5 IN CNAME turner-tls.map.fastly.net. answer = answer.split(maxsplit=4) answer_name = answer[0] answer_class = answer[2] answer_type = answer[3] answer_ttl = answer[1] answer_data = answer[4] # remove surrounding quotation marks from answer_data if they exist if answer_data.startswith('"') and answer_data.endswith('"'): answer_data = answer_data[1:-1] return {'name': answer_name, 'class': answer_class, 'type': answer_type, 'ttl': answer_ttl, 'data': answer_data} def _parse_axfr(axfr): # ; <<>> DiG 9.11.14-3-Debian <<>> @81.4.108.41 axfr zonetransfer.me +nocookie # ; (1 server found) # ;; global options: +cmd # zonetransfer.me. 7200 IN A 5.196.105.14 axfr = axfr.split(maxsplit=4) axfr_name = axfr[0] axfr_ttl = axfr[1] axfr_class = axfr[2] axfr_type = axfr[3] axfr_data = axfr[4] return {'name': axfr_name, 'ttl': axfr_ttl, 'class': axfr_class, 'type': axfr_type, 'data': axfr_data} def _parse_footer(footer): # footer consists of 4 lines # footer line 1 if footer.startswith(';; Query time:'): return {'query_time': footer.split(':')[1].lstrip()} # footer line 2 if footer.startswith(';; SERVER:'): return {'server': footer.split(':', maxsplit=1)[1].lstrip()} # footer line 3 if footer.startswith(';; WHEN:'): return {'when': footer.split(':', maxsplit=1)[1].lstrip()} # footer line 4 (last line) if footer.startswith(';; MSG SIZE rcvd:'): return {'rcvd': footer.split(':')[1].lstrip()} elif footer.startswith(';; XFR size:'): return {'size': footer.split(':')[1].lstrip()} def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = [] cleandata = data.splitlines() # remove blank lines cleandata = list(filter(None, cleandata)) # section can be: header, flags, question, authority, answer, axfr, additional, opt_pseudosection, footer section = '' output_entry = {} answer_list = [] if jc.utils.has_data(data): for line in cleandata: # identify sections if line.startswith(';; Got answer:'): section = '' continue if line.startswith('; <<>> ') and ' axfr ' in line.lower(): section = 'axfr' axfr_list = [] continue if line.startswith(';; ->>HEADER<<-'): section = 'header' if output_entry: raw_output.append(output_entry) output_entry = {} output_entry.update(_parse_header(line)) continue if line.startswith(';; flags:'): section = 'flags' output_entry.update(_parse_flags_line(line)) continue if line.startswith(';; OPT PSEUDOSECTION:'): section = 'opt_pseudosection' continue if line.startswith(';; QUESTION SECTION:'): section = 'question' continue if line.startswith(';; AUTHORITY SECTION:'): section = 'authority' authority_list = [] continue if line.startswith(';; ANSWER SECTION:'): section = 'answer' answer_list = [] continue if line.startswith(';; ADDITIONAL SECTION:'): section = 'additional' additional_list = [] continue if line.startswith(';; Query time:'): section = 'footer' output_entry.update(_parse_footer(line)) continue # parse sections if line.startswith(';; QUERY SIZE:'): output_entry.update({'query_size': line.split(': ', maxsplit=1)[1]}) continue if not line.startswith(';') and section == 'axfr': axfr_list.append(_parse_axfr(line)) output_entry.update({'axfr': axfr_list}) continue if section == 'opt_pseudosection': if 'opt_pseudosection' not in output_entry: output_entry['opt_pseudosection'] = {} output_entry['opt_pseudosection'].update(_parse_opt_pseudosection(line)) continue if section == 'question': output_entry['question'] = _parse_question(line) continue if not line.startswith(';') and section == 'authority': authority_list.append(_parse_answer(line)) output_entry.update({'authority': authority_list}) continue # https://github.com/kellyjonbrazil/jc/issues/133 # to allow parsing of output that only has the answer section - e.g: # dig +noall +answer example.com # we allow section to be 'answer' (normal output) or # '', which means +noall +answer was used. if not line.startswith(';') and (section == 'answer' or section == ''): answer_list.append(_parse_answer(line)) output_entry.update({'answer': answer_list}) continue if not line.startswith(';') and section == 'additional': additional_list.append(_parse_answer(line)) output_entry.update({'additional': additional_list}) continue if section == 'footer': output_entry.update(_parse_footer(line)) continue if output_entry: raw_output.append(output_entry) raw_output = list(filter(None, raw_output)) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/dir.py000066400000000000000000000120531415226333200154040ustar00rootroot00000000000000"""jc - JSON CLI output utility `dir` command output parser Options supported: - `/T timefield` - `/O sortorder` - `/C, /-C` - `/S` The "Magic" syntax is not supported since the `dir` command is a shell builtin. The `epoch` calculated timestamp field is naive (i.e. based on the local time of the system the parser is run on) Usage (cli): C:> dir | jc --dir Usage (module): import jc.parsers.dir result = jc.parsers.dir.parse(dir_command_output) Schema: [ { "date": string, "time": string, "epoch": integer, # naive timestamp "dir": boolean, "size": integer, "filename: string, "parent": string } ] Examples: C:> dir | jc --dir -p [ { "date": "03/24/2021", "time": "03:15 PM", "dir": true, "size": null, "filename": ".", "parent": "C:\\Program Files\\Internet Explorer", "epoch": 1616624100 }, { "date": "03/24/2021", "time": "03:15 PM", "dir": true, "size": null, "filename": "..", "parent": "C:\\Program Files\\Internet Explorer", "epoch": 1616624100 }, { "date": "12/07/2019", "time": "02:49 AM", "dir": true, "size": null, "filename": "en-US", "parent": "C:\\Program Files\\Internet Explorer", "epoch": 1575715740 }, { "date": "12/07/2019", "time": "02:09 AM", "dir": false, "size": 54784, "filename": "ExtExport.exe", "parent": "C:\\Program Files\\Internet Explorer", "epoch": 1575713340 }, ... ] C:> dir | jc --dir -p -r [ { "date": "03/24/2021", "time": "03:15 PM", "dir": true, "size": null, "filename": ".", "parent": "C:\\Program Files\\Internet Explorer" }, { "date": "03/24/2021", "time": "03:15 PM", "dir": true, "size": null, "filename": "..", "parent": "C:\\Program Files\\Internet Explorer" }, { "date": "12/07/2019", "time": "02:49 AM", "dir": true, "size": null, "filename": "en-US", "parent": "C:\\Program Files\\Internet Explorer" }, { "date": "12/07/2019", "time": "02:09 AM", "dir": false, "size": "54,784", "filename": "ExtExport.exe", "parent": "C:\\Program Files\\Internet Explorer" }, ... ] """ import re import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.4' description = '`dir` command parser' author = 'Rasheed Elsaleh' author_email = 'rasheed@rebelliondefense.com' # compatible options: win32 compatible = ['win32'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (Dictionary of Lists) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: # add timestamps if 'date' in entry and 'time' in entry: dt = entry['date'] + ' ' + entry['time'] timestamp = jc.utils.timestamp(dt) entry['epoch'] = timestamp.naive # add ints int_list = ["size"] for key in entry: if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = [] if jc.utils.has_data(data): for line in data.splitlines(): if line.startswith(" Directory of"): parent_dir = line.lstrip(" Directory of ") continue # skip lines that don't start with a date if not re.match(r'^\d{2}/\d{2}/\d{4}', line): continue output_line = {} parsed_line = line.split() output_line["date"] = parsed_line[0] output_line["time"] = " ".join(parsed_line[1:3]) output_line.setdefault("dir", False) output_line.setdefault("size", None) if parsed_line[3] == "": output_line["dir"] = True else: output_line["size"] = parsed_line[3] output_line["filename"] = " ".join(parsed_line[4:]) output_line["parent"] = parent_dir raw_output.append(output_line) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/dmidecode.py000066400000000000000000000234321415226333200165460ustar00rootroot00000000000000"""jc - JSON CLI output utility `dmidecode` command output parser Usage (cli): $ dmidecode | jc --dmidecode or $ jc dmidecode Usage (module): import jc.parsers.dmidecode result = jc.parsers.dmidecode.parse(dmidecode_command_output) Schema: [ { "handle": string, "type": integer, "bytes": integer, "description": string, "values": { (null if empty) "lowercase_no_spaces_keys": string, "multiline_key_values": [ string, ] } } ] Examples: # dmidecode | jc --dmidecode -p [ { "handle": "0x0000", "type": 0, "bytes": 24, "description": "BIOS Information", "values": { "vendor": "Phoenix Technologies LTD", "version": "6.00", "release_date": "04/13/2018", "address": "0xEA490", "runtime_size": "88944 bytes", "rom_size": "64 kB", "characteristics": [ "ISA is supported", "PCI is supported", "PC Card (PCMCIA) is supported", "PNP is supported", "APM is supported", "BIOS is upgradeable", "BIOS shadowing is allowed", "ESCD support is available", "Boot from CD is supported", "Selectable boot is supported", "EDD is supported", "Print screen service is supported (int 5h)", "8042 keyboard services are supported (int 9h)", "Serial services are supported (int 14h)", "Printer services are supported (int 17h)", "CGA/mono video services are supported (int 10h)", "ACPI is supported", "Smart battery is supported", "BIOS boot specification is supported", "Function key-initiated network boot is supported", "Targeted content distribution is supported" ], "bios_revision": "4.6", "firmware_revision": "0.0" } }, ... ] # dmidecode | jc --dmidecode -p -r [ { "handle": "0x0000", "type": "0", "bytes": "24", "description": "BIOS Information", "values": { "vendor": "Phoenix Technologies LTD", "version": "6.00", "release_date": "04/13/2018", "address": "0xEA490", "runtime_size": "88944 bytes", "rom_size": "64 kB", "characteristics": [ "ISA is supported", "PCI is supported", "PC Card (PCMCIA) is supported", "PNP is supported", "APM is supported", "BIOS is upgradeable", "BIOS shadowing is allowed", "ESCD support is available", "Boot from CD is supported", "Selectable boot is supported", "EDD is supported", "Print screen service is supported (int 5h)", "8042 keyboard services are supported (int 9h)", "Serial services are supported (int 14h)", "Printer services are supported (int 17h)", "CGA/mono video services are supported (int 10h)", "ACPI is supported", "Smart battery is supported", "BIOS boot specification is supported", "Function key-initiated network boot is supported", "Targeted content distribution is supported" ], "bios_revision": "4.6", "firmware_revision": "0.0" } }, ... ] """ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.4' description = '`dmidecode` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # details = 'enter any other details here' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux'] magic_commands = ['dmidecode'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: int_list = ['type', 'bytes'] for key in entry: if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) if not entry['values']: entry['values'] = None return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) item_header = False item_values = False value_list = False item = None header = None key = None val = None attribute = None values = None key_data = None raw_output = [] if jc.utils.has_data(data): data = data.splitlines() # remove header rows for row in data.copy(): if row: data.pop(0) else: break # main parsing loop for line in data: # new item if not line: item_header = True item_values = False value_list = False if item: if values: item['values'][attribute] = values if key_data: item['values'][f'{key}_data'] = key_data raw_output.append(item) item = {} header = None key = None val = None attribute = None values = [] key_data = [] continue # header if line.startswith('Handle ') and line.endswith('bytes'): # Handle 0x0000, DMI type 0, 24 bytes header = line.replace(',', ' ').split() item = { 'handle': header[1], 'type': header[4], 'bytes': header[5] } continue # description if item_header: item_header = False item_values = True value_list = False item['description'] = line item['values'] = {} continue # new item if multiple descriptions in handle if not item_header and not line.startswith('\t'): item_header = False item_values = True value_list = False if item: if values: item['values'][attribute] = values if key_data: item['values'][f'{key}_data'] = key_data raw_output.append(item) item = { 'handle': header[1], 'type': header[4], 'bytes': header[5], 'description': line, 'values': {} } key = None val = None attribute = None values = [] key_data = [] continue # keys and values if item_values \ and len(line.split(':', maxsplit=1)) == 2 \ and line.startswith('\t') \ and not line.startswith('\t\t') \ and not line.strip().endswith(':'): item_header = False item_values = True value_list = False if values: item['values'][attribute] = values values = [] if key_data: item['values'][f'{key}_data'] = key_data key_data = [] key = line.split(':', maxsplit=1)[0].strip().lower().replace(' ', '_') val = line.split(':', maxsplit=1)[1].strip() item['values'].update({key: val}) continue # multi-line key if item_values \ and line.startswith('\t') \ and not line.startswith('\t\t') \ and line.strip().endswith(':'): item_header = False item_values = True value_list = True if values: item['values'][attribute] = values values = [] if key_data: item['values'][f'{key}_data'] = key_data key_data = [] attribute = line[:-1].strip().lower().replace(' ', '_') values = [] continue # multi-line values if value_list \ and line.startswith('\t\t'): values.append(line.strip()) continue # data for hybrid multi-line objects if item_values \ and not value_list \ and line.startswith('\t\t'): if f'{key}_data' not in item['values']: item['values'][f'{key}_data'] = [] key_data.append(line.strip()) continue if item: raw_output.append(item) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/dpkg_l.py000066400000000000000000000142721415226333200160730ustar00rootroot00000000000000"""jc - JSON CLI output utility `dpkg -l` command output parser Set the `COLUMNS` environment variable to a large value to avoid field truncation. For example: $ COLUMNS=500 dpkg -l | jc --dpkg-l Usage (cli): $ dpkg -l | jc --dpkg-l or $ jc dpkg -l Usage (module): import jc.parsers.dpkg_l result = jc.parsers.dpkg_l.parse(dpkg_command_output) Schema: [ { "codes": string, "name": string, "version": string, "architecture": string, "description": string, "desired": string, "status": string, "error": string } ] Examples: $ dpkg -l | jc --dpkg-l -p [ { "codes": "ii", "name": "accountsservice", "version": "0.6.45-1ubuntu1.3", "architecture": "amd64", "description": "query and manipulate user account information", "desired": "install", "status": "installed" }, { "codes": "rc", "name": "acl", "version": "2.2.52-3build1", "architecture": "amd64", "description": "Access control list utilities", "desired": "remove", "status": "config-files" }, { "codes": "uWR", "name": "acpi", "version": "1.7-1.1", "architecture": "amd64", "description": "displays information on ACPI devices", "desired": "unknown", "status": "trigger await", "error": "reinstall required" }, { "codes": "rh", "name": "acpid", "version": "1:2.0.28-1ubuntu1", "architecture": "amd64", "description": "Advanced Configuration and Power Interface event daemon", "desired": "remove", "status": "half installed" }, { "codes": "pn", "name": "adduser", "version": "3.116ubuntu1", "architecture": "all", "description": "add and remove users and groups", "desired": "purge", "status": "not installed" }, ... ] $ dpkg -l | jc --dpkg-l -p -r [ { "codes": "ii", "name": "accountsservice", "version": "0.6.45-1ubuntu1.3", "architecture": "amd64", "description": "query and manipulate user account information" }, { "codes": "rc", "name": "acl", "version": "2.2.52-3build1", "architecture": "amd64", "description": "Access control list utilities" }, { "codes": "uWR", "name": "acpi", "version": "1.7-1.1", "architecture": "amd64", "description": "displays information on ACPI devices" }, { "codes": "rh", "name": "acpid", "version": "1:2.0.28-1ubuntu1", "architecture": "amd64", "description": "Advanced Configuration and Power Interface event daemon" }, { "codes": "pn", "name": "adduser", "version": "3.116ubuntu1", "architecture": "all", "description": "add and remove users and groups" }, ... ] """ import jc.utils import jc.parsers.universal class info(): """Provides parser metadata (version, author, etc.)""" version = '1.2' description = '`dpkg -l` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # details = 'enter any other details here' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux'] magic_commands = ['dpkg -l'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema: """ for entry in proc_data: if 'codes' in entry: desired, status, *err = list(entry['codes']) desired_map = { 'u': 'unknown', 'i': 'install', 'r': 'remove', 'p': 'purge', 'h': 'hold' } for key, value in desired_map.items(): if desired.lower() == key: entry['desired'] = value break status_map = { 'n': 'not installed', 'i': 'installed', 'c': 'config-files', 'u': 'unpacked', 'f': 'failed config', 'h': 'half installed', 'w': 'trigger await', 't': 'trigger pending' } for key, value in status_map.items(): if status.lower() == key: entry['status'] = value break if err: err_map = { 'r': 'reinstall required' } for key, value in err_map.items(): if err[0].lower() == key: entry['error'] = value break return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) working_list = [] raw_output = [] header_found = False if jc.utils.has_data(data): # clean up headers for line in filter(None, data.splitlines()): if 'Architecture' in line: header_found = True working_list.append(line.lower().replace('||/', 'codes')) continue if '=========' in line: continue if header_found: working_list.append(line) raw_output = jc.parsers.universal.simple_table_parse(working_list) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/du.py000066400000000000000000000072151415226333200152420ustar00rootroot00000000000000"""jc - JSON CLI output utility `du` command output parser Usage (cli): $ du | jc --du or $ jc du Usage (module): import jc.parsers.du result = jc.parsers.du.parse(du_command_output) Schema: [ { "size": integer, "name": string } ] Examples: $ du /usr | jc --du -p [ { "size": 104608, "name": "/usr/bin" }, { "size": 56, "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/_CodeSignature" }, { "size": 0, "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/Resources/Firmware/usr/local/standalone" }, { "size": 0, "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/Resources/Firmware/usr/local" }, { "size": 0, "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/Resources/Firmware/usr" }, { "size": 1008, "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/Resources/Firmware/dfu" }, ... ] $ du /usr | jc --du -p -r [ { "size": "104608", "name": "/usr/bin" }, { "size": "56", "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/_CodeSignature" }, { "size": "0", "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/Resources/Firmware/usr/local/standalone" }, { "size": "0", "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/Resources/Firmware/usr/local" }, { "size": "0", "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/Resources/Firmware/usr" }, { "size": "1008", "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/Resources/Firmware/dfu" }, ... ] """ import jc.utils import jc.parsers.universal class info(): """Provides parser metadata (version, author, etc.)""" version = '1.5' description = '`du` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # details = 'enter any other details here' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'aix', 'freebsd'] magic_commands = ['du'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ int_list = ['size'] for entry in proc_data: for key in entry: if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = [] # Clear any blank lines cleandata = list(filter(None, data.splitlines())) if jc.utils.has_data(data): cleandata.insert(0, 'size name') raw_output = jc.parsers.universal.simple_table_parse(cleandata) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/env.py000066400000000000000000000060371415226333200154230ustar00rootroot00000000000000"""jc - JSON CLI output utility `env` and `printenv` command output parser This parser will output a list of dictionaries each containing `name` and `value` keys. If you would like a simple dictionary output, then use the `-r` command-line option or the `raw=True` argument in the `parse()` function. Usage (cli): $ env | jc --env or $ jc env Usage (module): import jc.parsers.env result = jc.parsers.env.parse(env_command_output) Schema: [ { "name": string, "value": string } ] Examples: $ env | jc --env -p [ { "name": "XDG_SESSION_ID", "value": "1" }, { "name": "HOSTNAME", "value": "localhost.localdomain" }, { "name": "TERM", "value": "vt220" }, { "name": "SHELL", "value": "/bin/bash" }, { "name": "HISTSIZE", "value": "1000" }, ... ] $ env | jc --env -p -r { "TERM": "xterm-256color", "SHELL": "/bin/bash", "USER": "root", "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", "PWD": "/root", "LANG": "en_US.UTF-8", "HOME": "/root", "LOGNAME": "root", "_": "/usr/bin/env" } """ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.4' description = '`env` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'cygwin', 'win32', 'aix', 'freebsd'] magic_commands = ['env', 'printenv'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (Dictionary) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ # rebuild output for added semantic information processed = [] for k, v in proc_data.items(): proc_line = {} proc_line['name'] = k proc_line['value'] = v processed.append(proc_line) return processed def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: Dictionary of raw structured data or List of Dictionaries of processed structured data """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = {} # Clear any blank lines cleandata = list(filter(None, data.splitlines())) if jc.utils.has_data(data): for entry in cleandata: parsed_line = entry.split('=', maxsplit=1) raw_output[parsed_line[0]] = parsed_line[1] if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/file.py000066400000000000000000000065631415226333200155560ustar00rootroot00000000000000"""jc - JSON CLI output utility `file` command output parser Usage (cli): $ file * | jc --file or $ jc file * Usage (module): import jc.parsers.file result = jc.parsers.file.parse(file_command_output) Schema: [ { "filename": string, "type ": string } ] Examples: $ file * | jc --file -p [ { "filename": "Applications", "type": "directory" }, { "filename": "another file with spaces", "type": "empty" }, { "filename": "argstest.py", "type": "Python script text executable, ASCII text" }, { "filename": "blkid-p.out", "type": "ASCII text" }, { "filename": "blkid-pi.out", "type": "ASCII text, with very long lines" }, { "filename": "cd_catalog.xml", "type": "XML 1.0 document text, ASCII text, with CRLF line terminators" }, { "filename": "centosserial.sh", "type": "Bourne-Again shell script text executable, UTF-8 Unicode text" }, ... ] """ import jc.utils import jc.parsers.universal class info(): """Provides parser metadata (version, author, etc.)""" version = '1.5' description = '`file` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'aix', 'freebsd', 'darwin'] magic_commands = ['file'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ # No further processing return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = [] warned = False if jc.utils.has_data(data): for line in filter(None, data.splitlines()): # fix case for gzip files where description contains ': ' delimiter if 'gzip compressed data, last modified: ' in line: linedata = line.split(': ', maxsplit=1) # use rsplit to correctly grab filenames containing ': ' delimiter text else: linedata = line.rsplit(': ', maxsplit=1) try: filename = linedata[0].strip() filetype = linedata[1].strip() raw_output.append( { 'filename': filename, 'type': filetype } ) except IndexError: if not warned: jc.utils.warning_message(['Filenames with newline characters detected. Some filenames may be truncated.']) warned = True if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/finger.py000066400000000000000000000134761415226333200161120ustar00rootroot00000000000000"""jc - JSON CLI output utility `finger` command output parser Supports `-s` output option. Does not support the `-l` detail option. Usage (cli): $ finger | jc --finger or $ jc finger Usage (module): import jc.parsers.finger result = jc.parsers.finger.parse(finger_command_output) Schema: [ { "login": string, "name": string, "tty": string, "idle": string, # null if empty "login_time": string, "details": string, "tty_writeable": boolean, "idle_minutes": integer, "idle_hours": integer, "idle_days": integer, "total_idle_minutes": integer } ] Examples: $ finger | jc --finger -p [ { "login": "jdoe", "name": "John Doe", "tty": "tty1", "idle": "14d", "login_time": "Mar 22 21:14", "tty_writeable": false, "idle_minutes": 0, "idle_hours": 0, "idle_days": 14, "total_idle_minutes": 20160 }, { "login": "jdoe", "name": "John Doe", "tty": "pts/0", "idle": null, "login_time": "Apr 5 15:33", "details": "(192.168.1.22)", "tty_writeable": true, "idle_minutes": 0, "idle_hours": 0, "idle_days": 0, "total_idle_minutes": 0 }, ... ] $ finger | jc --finger -p -r [ { "login": "jdoe", "name": "John Doe", "tty": "*tty1", "idle": "14d", "login_time": "Mar 22 21:14" }, { "login": "jdoe", "name": "John Doe", "tty": "pts/0", "idle": null, "login_time": "Apr 5 15:33", "details": "(192.168.1.22)" }, ... ] """ import re import jc.utils import jc.parsers.universal class info(): """Provides parser metadata (version, author, etc.)""" version = '1.2' description = '`finger` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # details = 'enter any other details here' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'cygwin', 'freebsd'] magic_commands = ['finger'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: if 'tty' in entry: entry['tty_writeable'] = True if '*' in entry['tty']: entry['tty'] = entry['tty'].replace('*', '') entry['tty_writeable'] = False if 'idle' in entry: entry['idle_minutes'] = 0 entry['idle_hours'] = 0 entry['idle_days'] = 0 if entry['idle'] == '-': entry['idle'] = None if entry['idle'] and entry['idle'].isnumeric(): entry['idle_minutes'] = int(entry['idle']) if entry['idle'] and ':' in entry['idle']: entry['idle_hours'] = int(entry['idle'].split(':')[0]) entry['idle_minutes'] = int(entry['idle'].split(':')[1]) if entry['idle'] and 'd' in entry['idle']: entry['idle_days'] = int(entry['idle'].replace('d', '')) entry['total_idle_minutes'] = (entry['idle_days'] * 1440) + \ (entry['idle_hours'] * 60) + \ entry['idle_minutes'] if 'details' in entry: if not entry['details']: del entry['details'] return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = [] if jc.utils.has_data(data): # Finger output is an abomination that is nearly unparsable. But there is a way: # First find the location of the last character of 'Idle' in the table and cut # all lines at that spot. Data before that spot can use the unviversal.sparse_table_parse function. # All data after that spot can be run through regex to find the login datetime and possibly # other fields. data_lines = list(filter(None, data.splitlines())) sep_col = data_lines[0].find('Idle') + 4 first_half = [] second_half = [] for line in data_lines: first_half.append(line[:sep_col]) second_half.append(line[sep_col:]) first_half[0] = first_half[0].lower() # parse the first half raw_output = jc.parsers.universal.sparse_table_parse(first_half) # use regex to get login datetime and 'other' data pattern = re.compile(r'([A-Z][a-z]{2}\s+\d{1,2}\s+)(\d\d:\d\d|\d{4})(\s?.+)?$') # remove header row from list second_half.pop(0) for index, line in enumerate(second_half): dt = re.search(pattern, line) if dt: if dt.group(1) and dt.group(2): raw_output[index]['login_time'] = dt.group(1).strip() + ' ' + dt.group(2).strip() if dt.group(3): raw_output[index]['details'] = dt.group(3).strip() if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/foo.py000066400000000000000000000040451415226333200154130ustar00rootroot00000000000000"""jc - JSON CLI output utility `foo` command output parser <> Usage (cli): $ foo | jc --foo or $ jc foo Usage (module): import jc.parsers.foo result = jc.parsers.foo.parse(foo_command_output) Schema: [ { "foo": string, "bar": boolean, "baz": integer } ] Examples: $ foo | jc --foo -p [] $ foo | jc --foo -p -r [] """ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.0' description = '`foo` command parser' author = 'John Doe' author_email = 'johndoe@gmail.com' # details = 'enter any other details here' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'cygwin', 'win32', 'aix', 'freebsd'] magic_commands = ['foo'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured to conform to the schema. """ # process the data here # rebuild output for added semantic information # use helper functions in jc.utils for int, float, bool conversions and timestamps return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = [] if jc.utils.has_data(data): for line in filter(None, data.splitlines()): # # parse the content here # pass return raw_output if raw else _process(raw_output) jc-1.17.3/jc/parsers/foo_s.py000066400000000000000000000060011415226333200157270ustar00rootroot00000000000000"""jc - JSON CLI output utility `foo` command output streaming parser > This streaming parser outputs JSON Lines <> Usage (cli): $ foo | jc --foo-s Usage (module): import jc.parsers.foo_s result = jc.parsers.foo_s.parse(foo_command_output.splitlines()) # result is an iterable object for item in result: # do something Schema: { "foo": string, "_jc_meta": # This object only exists if using -qq or ignore_exceptions=True { "success": booean, # true if successfully parsed, false if error "error": string, # exists if "success" is false "line": string # exists if "success" is false } } Examples: $ foo | jc --foo-s {example output} ... $ foo | jc --foo-s -r {example output} ... """ import jc.utils from jc.utils import stream_success, stream_error from jc.exceptions import ParseError class info(): """Provides parser metadata (version, author, etc.)""" version = '1.0' description = '`foo` command streaming parser' author = 'John Doe' author_email = 'johndoe@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'cygwin', 'aix', 'freebsd'] streaming = True __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (Dictionary) raw structured data to process Returns: Dictionary. Structured data to conform to the schema. """ # # process the data here # rebuild output for added semantic information # use helper functions in jc.utils for int, float, bool conversions and timestamps # return proc_data def parse(data, raw=False, quiet=False, ignore_exceptions=False): """ Main text parsing generator function. Returns an iterator object. Parameters: data: (iterable) line-based text data to parse (e.g. sys.stdin or str.splitlines()) raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True ignore_exceptions: (boolean) ignore parsing exceptions if True Yields: Dictionary. Raw or processed structured data. Returns: Iterator object """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.streaming_input_type_check(data) for line in data: output_line = {} try: jc.utils.streaming_line_input_type_check(line) # # parse the input here # if output_line: yield stream_success(output_line, ignore_exceptions) if raw else stream_success(_process(output_line), ignore_exceptions) else: raise ParseError('Not foo data') except Exception as e: yield stream_error(e, ignore_exceptions, line) jc-1.17.3/jc/parsers/free.py000066400000000000000000000060541415226333200155530ustar00rootroot00000000000000"""jc - JSON CLI output utility `free` command output parser Usage (cli): $ free | jc --free or $ jc free Usage (module): import jc.parsers.free result = jc.parsers.free.parse(free_command_output) Schema: [ { "type": string, "total": integer, "used": integer, "free": integer, "shared": integer, "buff_cache": integer, "available": integer } ] Examples: $ free | jc --free -p [ { "type": "Mem", "total": 3861340, "used": 220508, "free": 3381972, "shared": 11800, "buff_cache": 258860, "available": 3397784 }, { "type": "Swap", "total": 2097148, "used": 0, "free": 2097148 } ] $ free | jc --free -p -r [ { "type": "Mem", "total": "2017300", "used": "213104", "free": "1148452", "shared": "1176", "buff_cache": "655744", "available": "1622204" }, { "type": "Swap", "total": "2097148", "used": "0", "free": "2097148" } ] """ import jc.utils import jc.parsers.universal class info(): """Provides parser metadata (version, author, etc.)""" version = '1.5' description = '`free` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux'] magic_commands = ['free'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: int_list = ['total', 'used', 'free', 'shared', 'buff_cache', 'available'] for key in entry: if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) cleandata = data.splitlines() raw_output = [] if jc.utils.has_data(data): cleandata[0] = cleandata[0].lower() cleandata[0] = cleandata[0].replace('buff/cache', 'buff_cache') cleandata[0] = 'type ' + cleandata[0] raw_output = jc.parsers.universal.simple_table_parse(cleandata) for entry in raw_output: entry['type'] = entry['type'].rstrip(':') if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/fstab.py000066400000000000000000000100131415226333200157170ustar00rootroot00000000000000"""jc - JSON CLI output utility `fstab` file parser Usage (cli): $ cat /etc/fstab | jc --fstab Usage (module): import jc.parsers.fstab result = jc.parsers.fstab.parse(fstab_command_output) Schema: [ { "fs_spec": string, "fs_file": string, "fs_vfstype": string, "fs_mntops": string, "fs_freq": integer, "fs_passno": integer } ] Examples: $ cat /etc/fstab | jc --fstab -p [ { "fs_spec": "/dev/mapper/centos-root", "fs_file": "/", "fs_vfstype": "xfs", "fs_mntops": "defaults", "fs_freq": 0, "fs_passno": 0 }, { "fs_spec": "UUID=05d927bb-5875-49e3-ada1-7f46cb31c932", "fs_file": "/boot", "fs_vfstype": "xfs", "fs_mntops": "defaults", "fs_freq": 0, "fs_passno": 0 }, { "fs_spec": "/dev/mapper/centos-swap", "fs_file": "swap", "fs_vfstype": "swap", "fs_mntops": "defaults", "fs_freq": 0, "fs_passno": 0 } ] $ cat /etc/fstab | jc --fstab -p -r [ { "fs_spec": "/dev/mapper/centos-root", "fs_file": "/", "fs_vfstype": "xfs", "fs_mntops": "defaults", "fs_freq": "0", "fs_passno": "0" }, { "fs_spec": "UUID=05d927bb-5875-49e3-ada1-7f46cb31c932", "fs_file": "/boot", "fs_vfstype": "xfs", "fs_mntops": "defaults", "fs_freq": "0", "fs_passno": "0" }, { "fs_spec": "/dev/mapper/centos-swap", "fs_file": "swap", "fs_vfstype": "swap", "fs_mntops": "defaults", "fs_freq": "0", "fs_passno": "0" } ] """ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.6' description = '`/etc/fstab` file parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'freebsd'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: int_list = ['fs_freq', 'fs_passno'] for key in entry: if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = [] cleandata = data.splitlines() # Clear any blank lines cleandata = list(filter(None, cleandata)) if jc.utils.has_data(data): for line in cleandata: output_line = {} # ignore commented lines if line.strip().startswith('#'): continue line_list = line.split(maxsplit=6) fs_spec = line_list[0] fs_file = line_list[1] fs_vfstype = line_list[2] fs_mntops = line_list[3] fs_freq = line_list[4] fs_passno = line_list[5] output_line['fs_spec'] = fs_spec output_line['fs_file'] = fs_file output_line['fs_vfstype'] = fs_vfstype output_line['fs_mntops'] = fs_mntops output_line['fs_freq'] = fs_freq output_line['fs_passno'] = fs_passno raw_output.append(output_line) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/group.py000066400000000000000000000075361415226333200157740ustar00rootroot00000000000000"""jc - JSON CLI output utility `/etc/group` file parser Usage (cli): $ cat /etc/group | jc --group Usage (module): import jc.parsers.group result = jc.parsers.group.parse(group_file_output) Schema: [ { "group_name": string, "password": string, "gid": integer, "members": [ string ] } ] Examples: $ cat /etc/group | jc --group -p [ { "group_name": "nobody", "password": "*", "gid": -2, "members": [] }, { "group_name": "nogroup", "password": "*", "gid": -1, "members": [] }, { "group_name": "wheel", "password": "*", "gid": 0, "members": [ "root" ] }, { "group_name": "certusers", "password": "*", "gid": 29, "members": [ "root", "_jabber", "_postfix", "_cyrus", "_calendar", "_dovecot" ] }, ... ] $ cat /etc/group | jc --group -p -r [ { "group_name": "nobody", "password": "*", "gid": "-2", "members": [ "" ] }, { "group_name": "nogroup", "password": "*", "gid": "-1", "members": [ "" ] }, { "group_name": "wheel", "password": "*", "gid": "0", "members": [ "root" ] }, { "group_name": "certusers", "password": "*", "gid": "29", "members": [ "root", "_jabber", "_postfix", "_cyrus", "_calendar", "_dovecot" ] }, ... ] """ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.4' description = '`/etc/group` file parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # details = 'enter any other details here' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'aix', 'freebsd'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: int_list = ['gid'] for key in entry: if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) if entry['members'] == ['']: entry['members'] = [] return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = [] cleandata = data.splitlines() # Clear any blank lines cleandata = list(filter(None, cleandata)) if jc.utils.has_data(data): for entry in cleandata: if entry.startswith('#'): continue output_line = {} fields = entry.split(':') output_line['group_name'] = fields[0] output_line['password'] = fields[1] output_line['gid'] = fields[2] output_line['members'] = fields[3].split(',') raw_output.append(output_line) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/gshadow.py000066400000000000000000000063621415226333200162700ustar00rootroot00000000000000"""jc - JSON CLI output utility `/etc/gshadow` file parser Usage (cli): $ cat /etc/gshadow | jc --gshadow Usage (module): import jc.parsers.gshadow result = jc.parsers.gshadow.parse(gshadow_file_output) Schema: [ { "group_name": string, "password": string, "administrators": [ string ], "members": [ string ] } ] Examples: $ cat /etc/gshadow | jc --gshadow -p [ { "group_name": "root", "password": "*", "administrators": [], "members": [] }, { "group_name": "adm", "password": "*", "administrators": [], "members": [ "syslog", "joeuser" ] }, ... ] $ cat /etc/gshadow | jc --gshadow -p -r [ { "group_name": "root", "password": "*", "administrators": [ "" ], "members": [ "" ] }, { "group_name": "adm", "password": "*", "administrators": [ "" ], "members": [ "syslog", "joeuser" ] }, ... ] """ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.3' description = '`/etc/gshadow` file parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # details = 'enter any other details here' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'aix', 'freebsd'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: if entry['administrators'] == ['']: entry['administrators'] = [] if entry['members'] == ['']: entry['members'] = [] return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = [] cleandata = data.splitlines() # Clear any blank lines cleandata = list(filter(None, cleandata)) if jc.utils.has_data(data): for entry in cleandata: if entry.startswith('#'): continue output_line = {} fields = entry.split(':') output_line['group_name'] = fields[0] output_line['password'] = fields[1] output_line['administrators'] = fields[2].split(',') output_line['members'] = fields[3].split(',') raw_output.append(output_line) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/hash.py000066400000000000000000000041231415226333200155500ustar00rootroot00000000000000"""jc - JSON CLI output utility `hash` command output parser Usage (cli): $ hash | jc --hash Usage (module): import jc.parsers.hash result = jc.parsers.hash.parse(hash_command_output) Schema: [ { "command": string, "hits": integer } ] Examples: $ hash | jc --hash -p [ { "hits": 2, "command": "/bin/cat" }, { "hits": 1, "command": "/bin/ls" } ] """ import jc.utils import jc.parsers.universal class info(): """Provides parser metadata (version, author, etc.)""" version = '1.3' description = '`hash` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'cygwin', 'aix', 'freebsd'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: int_list = ['hits'] for key in entry: if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) cleandata = data.splitlines() raw_output = [] if jc.utils.has_data(data): cleandata[0] = cleandata[0].lower() raw_output = jc.parsers.universal.simple_table_parse(cleandata) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/hashsum.py000066400000000000000000000066211415226333200163020ustar00rootroot00000000000000"""jc - JSON CLI output utility `hash sum` command output parser This parser works with the following hash calculation utilities: - `md5` - `md5sum` - `shasum` - `sha1sum` - `sha224sum` - `sha256sum` - `sha384sum` - `sha512sum` Usage (cli): $ md5sum file.txt | jc --hashsum or $ jc md5sum file.txt Usage (module): import jc.parsers.hashsum result = jc.parsers.hashsum.parse(md5sum_command_output) Schema: [ { "filename": string, "hash": string, } ] Examples: $ md5sum * | jc --hashsum -p [ { "filename": "devtoolset-3-gcc-4.9.2-6.el7.x86_64.rpm", "hash": "65fc958c1add637ec23c4b137aecf3d3" }, { "filename": "digout", "hash": "5b9312ee5aff080927753c63a347707d" }, { "filename": "dmidecode.out", "hash": "716fd11c2ac00db109281f7110b8fb9d" }, { "filename": "file with spaces in the name", "hash": "d41d8cd98f00b204e9800998ecf8427e" }, { "filename": "id-centos.out", "hash": "4295be239a14ad77ef3253103de976d2" }, { "filename": "ifcfg.json", "hash": "01fda0d9ba9a75618b072e64ff512b43" }, ... ] """ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.2' description = 'hashsum command parser (`md5sum`, `shasum`, etc.)' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' details = 'Parses MD5 and SHA hash program output' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'cygwin', 'aix', 'freebsd'] magic_commands = ['md5sum', 'md5', 'shasum', 'sha1sum', 'sha224sum', 'sha256sum', 'sha384sum', 'sha512sum'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ # no further processing for this parser return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = [] if jc.utils.has_data(data): for line in filter(None, data.splitlines()): # check for legacy md5 command output if line.startswith('MD5 ('): file_hash = line.split('=', maxsplit=1)[1].strip() file_name = line.split('=', maxsplit=1)[0].strip() file_name = file_name[5:] file_name = file_name[:-1] # standard md5sum and shasum command output else: file_hash = line.split(maxsplit=1)[0] file_name = line.split(maxsplit=1)[1] item = { 'filename': file_name, 'hash': file_hash } raw_output.append(item) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/hciconfig.py000066400000000000000000000334561415226333200165710ustar00rootroot00000000000000"""jc - JSON CLI output utility `hciconfig` command output parser Usage (cli): $ hciconfig | jc --hciconfig or $ jc hciconfig Usage (module): import jc.parsers.hciconfig result = jc.parsers.hciconfig.parse(hciconfig_command_output) Schema: [ { "device": string, "type": string, "bus": string, "bd_address": string, "acl_mtu": integer, "acl_mtu_packets": integer, "sco_mtu": integer, "sco_mtu_packets": integer, "state": [ string ], "rx_bytes": integer, "rx_acl": integer, "rx_sco": integer, "rx_events": integer, "rx_errors": integer, "tx_bytes": integer, "tx_acl": integer, "tx_sco": integer, "tx_commands": integer, "tx_errors": integer, "features": [ string ], "packet_type": [ string ], "link_policy": [ string ], "link_mode": [ string ], "name": string, "class": string, "service_classes": [ string # 'Unspecified' is null ], "device_class": string, "hci_version": string, "hci_revision": string, "lmp_version": string, "lmp_subversion": string, "manufacturer": string } ] Examples: $ hciconfig -a | jc --hciconfig -p [ { "device": "hci0", "type": "Primary", "bus": "USB", "bd_address": "00:1A:7D:DA:71:13", "acl_mtu": 310, "acl_mtu_packets": 10, "sco_mtu": 64, "sco_mtu_packets": 8, "state": [ "UP", "RUNNING" ], "rx_bytes": 13905869, "rx_acl": 0, "rx_sco": 0, "rx_events": 393300, "rx_errors": 0, "tx_bytes": 62629, "tx_acl": 0, "tx_sco": 0, "tx_commands": 3893, "tx_errors": 0, "features": [ "0xff", "0xff", "0x8f", "0xfe", "0xdb", "0xff", "0x5b", "0x87" ], "packet_type": [ "DM1", "DM3", "DM5", "DH1", "DH3", "DH5", "HV1", "HV2", "HV3" ], "link_policy": [ "RSWITCH", "HOLD", "SNIFF", "PARK" ], "link_mode": [ "SLAVE", "ACCEPT" ], "name": "CSR8510 A10", "class": "0x000000", "service_classes": null, "device_class": "Miscellaneous", "hci_version": "4.0 (0x6)", "hci_revision": "0x22bb", "lmp_version": "4.0 (0x6)", "lmp_subversion": "0x22bb", "manufacturer": "Cambridge Silicon Radio (10)" }, { "device": "hci1", "type": "Primary", "bus": "USB", "bd_address": "00:1A:7D:DA:71:13", "acl_mtu": 310, "acl_mtu_packets": 10, "sco_mtu": 64, "sco_mtu_packets": 8, "state": [ "DOWN" ], "rx_bytes": 4388363, "rx_acl": 0, "rx_sco": 0, "rx_events": 122021, "rx_errors": 0, "tx_bytes": 52350, "tx_acl": 0, "tx_sco": 0, "tx_commands": 3480, "tx_errors": 2, "features": [ "0xff", "0xff", "0x8f", "0xfe", "0xdb", "0xff", "0x5b", "0x87" ], "packet_type": [ "DM1", "DM3", "DM5", "DH1", "DH3", "DH5", "HV1", "HV2", "HV3" ], "link_policy": [ "RSWITCH", "HOLD", "SNIFF", "PARK" ], "link_mode": [ "SLAVE", "ACCEPT" ] } ] $ hciconfig -a | jc --hciconfig -p -r [ { "device": "hci0", "type": "Primary", "bus": "USB", "bd_address": "00:1A:7D:DA:71:13", "acl_mtu": "310", "acl_mtu_packets": "10", "sco_mtu": "64", "sco_mtu_packets": "8", "state": [ "UP", "RUNNING" ], "rx_bytes": "13905869", "rx_acl": "0", "rx_sco": "0", "rx_events": "393300", "rx_errors": "0", "tx_bytes": "62629", "tx_acl": "0", "tx_sco": "0", "tx_commands": "3893", "tx_errors": "0", "features": [ "0xff", "0xff", "0x8f", "0xfe", "0xdb", "0xff", "0x5b", "0x87" ], "packet_type": [ "DM1", "DM3", "DM5", "DH1", "DH3", "DH5", "HV1", "HV2", "HV3" ], "link_policy": [ "RSWITCH", "HOLD", "SNIFF", "PARK" ], "link_mode": [ "SLAVE", "ACCEPT" ], "name": "CSR8510 A10", "class": "0x000000", "service_classes": [ "Unspecified" ], "device_class": "Miscellaneous", "hci_version": "4.0 (0x6)", "hci_revision": "0x22bb", "lmp_version": "4.0 (0x6)", "lmp_subversion": "0x22bb", "manufacturer": "Cambridge Silicon Radio (10)" }, { "device": "hci1", "type": "Primary", "bus": "USB", "bd_address": "00:1A:7D:DA:71:13", "acl_mtu": "310", "acl_mtu_packets": "10", "sco_mtu": "64", "sco_mtu_packets": "8", "state": [ "DOWN" ], "rx_bytes": "4388363", "rx_acl": "0", "rx_sco": "0", "rx_events": "122021", "rx_errors": "0", "tx_bytes": "52350", "tx_acl": "0", "tx_sco": "0", "tx_commands": "3480", "tx_errors": "2", "features": [ "0xff", "0xff", "0x8f", "0xfe", "0xdb", "0xff", "0x5b", "0x87" ], "packet_type": [ "DM1", "DM3", "DM5", "DH1", "DH3", "DH5", "HV1", "HV2", "HV3" ], "link_policy": [ "RSWITCH", "HOLD", "SNIFF", "PARK" ], "link_mode": [ "SLAVE", "ACCEPT" ] } ] """ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.3' description = '`hciconfig` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # details = 'enter any other details here' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux'] magic_commands = ['hciconfig'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: int_list = ['acl_mtu', 'acl_mtu_packets', 'sco_mtu', 'sco_mtu_packets', 'rx_bytes', 'rx_acl', 'rx_sco', 'rx_events', 'rx_errors', 'tx_bytes', 'tx_acl', 'tx_sco', 'tx_commands', 'tx_errors'] for key in entry: if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) if 'service_classes' in entry and len(entry['service_classes']) == 1 and 'Unspecified' in entry['service_classes']: entry['service_classes'] = None return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = [] device_object = {} line_count = 0 if jc.utils.has_data(data): for line in filter(None, data.splitlines()): line_count += 1 # start of a new device object # hci0: Type: Primary Bus: USB if not line[0].isspace(): if device_object: raw_output.append(device_object) device_object = {} line_count = 1 line = line.replace(':', '') line = line.split() device_object['device'] = line[0] device_object['type'] = line[2] device_object['bus'] = line[4] continue # BD Address: 00:50:56:E7:46:1A ACL MTU: 8192:128 SCO MTU: 64:128 if line[0].isspace() and line.lstrip().startswith('BD Address:'): line = line.split() device_object['bd_address'] = line[2] device_object['acl_mtu'] = line[5].split(':')[0] device_object['acl_mtu_packets'] = line[5].split(':')[1] device_object['sco_mtu'] = line[8].split(':')[0] device_object['sco_mtu_packets'] = line[8].split(':')[1] continue # UP RUNNING (always line 3) if line_count == 3: device_object['state'] = line.split() continue # RX bytes:1307 acl:0 sco:0 events:51 errors:0 if line[0].isspace() and line.lstrip().startswith('RX bytes:'): line = line.replace(':', ' ') line = line.split() device_object['rx_bytes'] = line[2] device_object['rx_acl'] = line[4] device_object['rx_sco'] = line[6] device_object['rx_events'] = line[8] device_object['rx_errors'] = line[10] continue # TX bytes:1200 acl:0 sco:0 commands:51 errors:0 if line[0].isspace() and line.lstrip().startswith('TX bytes:'): line = line.replace(':', ' ') line = line.split() device_object['tx_bytes'] = line[2] device_object['tx_acl'] = line[4] device_object['tx_sco'] = line[6] device_object['tx_commands'] = line[8] device_object['tx_errors'] = line[10] continue # Features: 0xff 0xff 0x8f 0xfe 0x83 0xe1 0x08 0x80 if line[0].isspace() and line.lstrip().startswith('Features:'): device_object['features'] = line.split()[1:] continue # Packet type: DM1 DM3 DM5 DH1 DH3 DH5 HV1 HV2 HV3 if line[0].isspace() and line.lstrip().startswith('Packet type:'): device_object['packet_type'] = line.split()[2:] continue # Link policy: RSWITCH HOLD SNIFF PARK if line[0].isspace() and line.lstrip().startswith('Link policy:'): device_object['link_policy'] = line.split()[2:] continue # Link mode: SLAVE ACCEPT if line[0].isspace() and line.lstrip().startswith('Link mode:'): device_object['link_mode'] = line.split()[2:] continue # Name: 'kbrazil-ubuntu' if line[0].isspace() and line.lstrip().startswith('Name:'): device_object['name'] = line.split(maxsplit=1)[1][1:-1] continue # Class: 0x000000 if line[0].isspace() and line.lstrip().startswith('Class:'): device_object['class'] = line.split(maxsplit=1)[1] continue # Service Classes: Unspecified if line[0].isspace() and line.lstrip().startswith('Service Classes:'): device_object['service_classes'] = line.split()[2:] continue # Device Class: Miscellaneous, if line[0].isspace() and line.lstrip().startswith('Device Class:'): dev_class = line.split()[2] if dev_class.endswith(','): dev_class = dev_class[0:-1] device_object['device_class'] = dev_class continue # HCI Version: 4.0 (0x6) Revision: 0x22bb if line[0].isspace() and line.lstrip().startswith('HCI Version:'): line = line.split() device_object['hci_version'] = ' '.join(line[2:4]) device_object['hci_revision'] = line[5] continue # LMP Version: 4.0 (0x6) Subversion: 0x22bb if line[0].isspace() and line.lstrip().startswith('LMP Version:'): line = line.split() device_object['lmp_version'] = ' '.join(line[2:4]) device_object['lmp_subversion'] = line[5] continue # Manufacturer: Cambridge Silicon Radio (10) if line[0].isspace() and line.lstrip().startswith('Manufacturer:'): device_object['manufacturer'] = line.split(maxsplit=1)[1] continue if device_object: raw_output.append(device_object) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/history.py000066400000000000000000000062151415226333200163320ustar00rootroot00000000000000"""jc - JSON CLI output utility `history` command output parser This parser will output a list of dictionaries each containing `line` and `command` keys. If you would like a simple dictionary output, then use the `-r` command-line option or the `raw=True` argument in the `parse()` function. The "Magic" syntax is not supported since the `history` command is a shell builtin. Usage (cli): $ history | jc --history Usage (module): import jc.parsers.history result = jc.parsers.history.parse(history_command_output) Schema: [ { "line": integer, "command": string } ] Examples: $ history | jc --history -p [ { "line": 118, "command": "sleep 100" }, { "line": 119, "command": "ls /bin" }, { "line": 120, "command": "echo \"hello\"" }, { "line": 121, "command": "docker images" }, ... ] $ history | jc --history -p -r { "118": "sleep 100", "119": "ls /bin", "120": "echo \"hello\"", "121": "docker images", ... } """ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.6' description = '`history` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' details = 'Optimizations by https://github.com/philippeitis' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'cygwin', 'aix', 'freebsd'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (Dictionary) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ processed = [] for k, v in proc_data.items(): proc_line = { 'line': jc.utils.convert_to_int(k), 'command': v, } processed.append(proc_line) return processed def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: Dictionary of raw structured data or List of Dictionaries of processed structured data """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = {} if jc.utils.has_data(data): # split lines and clear out any non-ascii chars linedata = data.encode('ascii', errors='ignore').decode().splitlines() # Skip any blank lines for entry in filter(None, linedata): try: parsed_line = entry.split(maxsplit=1) raw_output[parsed_line[0]] = parsed_line[1] except IndexError: # need to catch indexerror in case there is weird input from prior commands pass if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/hosts.py000066400000000000000000000063411415226333200157710ustar00rootroot00000000000000"""jc - JSON CLI output utility `/etc/hosts` file parser Usage (cli): $ cat /etc/hosts | jc --hosts Usage (module): import jc.parsers.hosts result = jc.parsers.hosts.parse(hosts_file_output) Schema: [ { "ip": string, "hostname": [ string ] } ] Examples: $ cat /etc/hosts | jc --hosts -p [ { "ip": "127.0.0.1", "hostname": [ "localhost" ] }, { "ip": "127.0.1.1", "hostname": [ "root-ubuntu" ] }, { "ip": "::1", "hostname": [ "ip6-localhost", "ip6-loopback" ] }, { "ip": "fe00::0", "hostname": [ "ip6-localnet" ] }, { "ip": "ff00::0", "hostname": [ "ip6-mcastprefix" ] }, { "ip": "ff02::1", "hostname": [ "ip6-allnodes" ] }, { "ip": "ff02::2", "hostname": [ "ip6-allrouters" ] } ] """ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.4' description = '`/etc/hosts` file parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'cygwin', 'win32', 'aix', 'freebsd'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ # no additional processing needed return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = [] # Clear any blank lines cleandata = list(filter(None, data.splitlines())) if jc.utils.has_data(data): for line in cleandata: output_line = {} # ignore commented lines if line.strip().startswith('#'): continue line_list = line.split(maxsplit=1) ip = line_list[0] hosts = line_list[1] hosts_list = hosts.split() comment_found = False for i, item in enumerate(hosts_list): if '#' in item: comment_found = True comment_item = i break if comment_found: hosts_list = hosts_list[:comment_item] output_line['ip'] = ip output_line['hostname'] = hosts_list raw_output.append(output_line) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/id.py000066400000000000000000000123421415226333200152230ustar00rootroot00000000000000"""jc - JSON CLI output utility `id` command output parser Usage (cli): $ id | jc --id or $ jc id Usage (module): import jc.parsers.id result = jc.parsers.id.parse(id_command_output) Schema: { "uid": { "id": integer, "name": string }, "gid": { "id": integer, "name": string }, "groups": [ { "id": integer, "name": string }, { "id": integer, "name": string } ], "context": { "user": string, "role": string, "type": string, "level": string } } Examples: $ id | jc --id -p { "uid": { "id": 1000, "name": "joeuser" }, "gid": { "id": 1000, "name": "joeuser" }, "groups": [ { "id": 1000, "name": "joeuser" }, { "id": 10, "name": "wheel" } ], "context": { "user": "unconfined_u", "role": "unconfined_r", "type": "unconfined_t", "level": "s0-s0:c0.c1023" } } $ id | jc --id -p -r { "uid": { "id": "1000", "name": "joeuser" }, "gid": { "id": "1000", "name": "joeuser" }, "groups": [ { "id": "1000", "name": "joeuser" }, { "id": "10", "name": "wheel" } ], "context": { "user": "unconfined_u", "role": "unconfined_r", "type": "unconfined_t", "level": "s0-s0:c0.c1023" } } """ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.4' description = '`id` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # details = 'enter any other details here' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'aix', 'freebsd'] magic_commands = ['id'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (Dictionary) raw structured data to process Returns: Dictionary. Structured data to conform to the schema. """ if 'uid' in proc_data: if 'id' in proc_data['uid']: proc_data['uid']['id'] = jc.utils.convert_to_int(proc_data['uid']['id']) if 'gid' in proc_data: if 'id' in proc_data['gid']: proc_data['gid']['id'] = jc.utils.convert_to_int(proc_data['gid']['id']) if 'groups' in proc_data: for group in proc_data['groups']: if 'id' in group: group['id'] = jc.utils.convert_to_int(group['id']) return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: Dictionary. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = {} # Clear any blank lines cleandata = list(filter(None, data.split())) if jc.utils.has_data(data): for section in cleandata: if section.startswith('uid'): uid_parsed = section.replace('(', '=').replace(')', '=') uid_parsed = uid_parsed.split('=') raw_output['uid'] = {} raw_output['uid']['id'] = uid_parsed[1] raw_output['uid']['name'] = uid_parsed[2] if section.startswith('gid'): gid_parsed = section.replace('(', '=').replace(')', '=') gid_parsed = gid_parsed.split('=') raw_output['gid'] = {} raw_output['gid']['id'] = gid_parsed[1] raw_output['gid']['name'] = gid_parsed[2] if section.startswith('groups'): groups_parsed = section.replace('(', '=').replace(')', '=') groups_parsed = groups_parsed.replace('groups=', '') groups_parsed = groups_parsed.split(',') raw_output['groups'] = [] for group in groups_parsed: group_dict = {} grp_parsed = group.split('=') group_dict['id'] = grp_parsed[0] group_dict['name'] = grp_parsed[1] raw_output['groups'].append(group_dict) if section.startswith('context'): context_parsed = section.replace('context=', '') context_parsed = context_parsed.split(':', maxsplit=3) raw_output['context'] = {} raw_output['context']['user'] = context_parsed[0] raw_output['context']['role'] = context_parsed[1] raw_output['context']['type'] = context_parsed[2] raw_output['context']['level'] = context_parsed[3] if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/ifconfig.py000066400000000000000000000410471415226333200164170ustar00rootroot00000000000000"""jc - JSON CLI output utility `ifconfig` command output parser Note: No `ifconfig` options are supported. Usage (cli): $ ifconfig | jc --ifconfig or $ jc ifconfig Usage (module): import jc.parsers.ifconfig result = jc.parsers.ifconfig.parse(ifconfig_command_output) Schema: [ { "name": string, "flags": integer, "state": [ string ], "mtu": integer, "ipv4_addr": string, "ipv4_mask": string, "ipv4_bcast": string, "ipv6_addr": string, "ipv6_mask": integer, "ipv6_scope": string, "mac_addr": string, "type": string, "rx_packets": integer, "rx_bytes": integer, "rx_errors": integer, "rx_dropped": integer, "rx_overruns": integer, "rx_frame": integer, "tx_packets": integer, "tx_bytes": integer, "tx_errors": integer, "tx_dropped": integer, "tx_overruns": integer, "tx_carrier": integer, "tx_collisions": integer, "metric": integer } ] Examples: $ ifconfig | jc --ifconfig -p [ { "name": "ens33", "flags": 4163, "state": [ "UP", "BROADCAST", "RUNNING", "MULTICAST" ], "mtu": 1500, "ipv4_addr": "192.168.71.137", "ipv4_mask": "255.255.255.0", "ipv4_bcast": "192.168.71.255", "ipv6_addr": "fe80::c1cb:715d:bc3e:b8a0", "ipv6_mask": 64, "ipv6_scope": "0x20", "mac_addr": "00:0c:29:3b:58:0e", "type": "Ethernet", "rx_packets": 8061, "rx_bytes": 1514413, "rx_errors": 0, "rx_dropped": 0, "rx_overruns": 0, "rx_frame": 0, "tx_packets": 4502, "tx_bytes": 866622, "tx_errors": 0, "tx_dropped": 0, "tx_overruns": 0, "tx_carrier": 0, "tx_collisions": 0, "metric": null }, { "name": "lo", "flags": 73, "state": [ "UP", "LOOPBACK", "RUNNING" ], "mtu": 65536, "ipv4_addr": "127.0.0.1", "ipv4_mask": "255.0.0.0", "ipv4_bcast": null, "ipv6_addr": "::1", "ipv6_mask": 128, "ipv6_scope": "0x10", "mac_addr": null, "type": "Local Loopback", "rx_packets": 73, "rx_bytes": 6009, "rx_errors": 0, "rx_dropped": 0, "rx_overruns": 0, "rx_frame": 0, "tx_packets": 73, "tx_bytes": 6009, "tx_errors": 0, "tx_dropped": 0, "tx_overruns": 0, "tx_carrier": 0, "tx_collisions": 0, "metric": null } ] $ ifconfig | jc --ifconfig -p -r [ { "name": "ens33", "flags": "4163", "state": "UP,BROADCAST,RUNNING,MULTICAST", "mtu": "1500", "ipv4_addr": "192.168.71.137", "ipv4_mask": "255.255.255.0", "ipv4_bcast": "192.168.71.255", "ipv6_addr": "fe80::c1cb:715d:bc3e:b8a0", "ipv6_mask": "64", "ipv6_scope": "0x20", "mac_addr": "00:0c:29:3b:58:0e", "type": "Ethernet", "rx_packets": "8061", "rx_bytes": "1514413", "rx_errors": "0", "rx_dropped": "0", "rx_overruns": "0", "rx_frame": "0", "tx_packets": "4502", "tx_bytes": "866622", "tx_errors": "0", "tx_dropped": "0", "tx_overruns": "0", "tx_carrier": "0", "tx_collisions": "0", "metric": null }, { "name": "lo", "flags": "73", "state": "UP,LOOPBACK,RUNNING", "mtu": "65536", "ipv4_addr": "127.0.0.1", "ipv4_mask": "255.0.0.0", "ipv4_bcast": null, "ipv6_addr": "::1", "ipv6_mask": "128", "ipv6_scope": "0x10", "mac_addr": null, "type": "Local Loopback", "rx_packets": "73", "rx_bytes": "6009", "rx_errors": "0", "rx_dropped": "0", "rx_overruns": "0", "rx_frame": "0", "tx_packets": "73", "tx_bytes": "6009", "tx_errors": "0", "tx_dropped": "0", "tx_overruns": "0", "tx_carrier": "0", "tx_collisions": "0", "metric": null } ] """ import re from collections import namedtuple import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.11' description = '`ifconfig` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' details = 'Using ifconfig-parser from https://github.com/KnightWhoSayNi/ifconfig-parser' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'aix', 'freebsd', 'darwin'] magic_commands = ['ifconfig'] __version__ = info.version class _IfconfigParser(object): """ifconfig parser module written by threeheadedknight@protonmail.com""" # Author: threeheadedknight@protonmail.com # Date created: 30.06.2018 17:03 # Python Version: 3.7 # MIT License # Copyright (c) 2018 threeheadedknight@protonmail.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. attributes = ['name', 'type', 'mac_addr', 'ipv4_addr', 'ipv4_bcast', 'ipv4_mask', 'ipv6_addr', 'ipv6_mask', 'ipv6_scope', 'state', 'mtu', 'metric', 'rx_packets', 'rx_errors', 'rx_dropped', 'rx_overruns', 'rx_frame', 'tx_packets', 'tx_errors', 'tx_dropped', 'tx_overruns', 'tx_carrier', 'tx_collisions', 'rx_bytes', 'tx_bytes'] def __init__(self, console_output): """ :param console_output: """ if isinstance(console_output, list): source_data = " ".join(console_output) else: source_data = console_output.replace("\n", " ") self.interfaces = self.parser(source_data=source_data) def list_interfaces(self): """ :return: """ return sorted(self.interfaces.keys()) def count_interfaces(self): """ :return: """ return len(self.interfaces.keys()) def filter_interfaces(self, **kwargs): """ :param kwargs: :return: """ for attr in kwargs.keys(): if attr not in _IfconfigParser.attributes: raise ValueError("Attribute [{}] not supported.".format(attr)) filtered_interfaces = [] for name, details in self.interfaces.items(): if all(getattr(details, attr) == kwargs[attr] for attr in kwargs.keys()): filtered_interfaces.append(name) return sorted(filtered_interfaces) def get_interface(self, name): """ :param name: :return: """ if name in self.list_interfaces(): return self.interfaces[name] else: raise InterfaceNotFound("Interface [{}] not found.".format(name)) def get_interfaces(self): """ :return: """ return self.interfaces def is_available(self, name): """ :param name: :return: """ return name in self.interfaces def parser(self, source_data): """ :param source_data: :return: """ # Linux syntax re_linux_interface = re.compile( r"(?P[a-zA-Z0-9:._-]+)\s+Link encap:(?P\S+\s?\S+)(\s+HWaddr\s+\b" r"(?P[0-9A-Fa-f:?]+))?", re.I) re_linux_ipv4 = re.compile( r"inet addr:(?P(?:[0-9]{1,3}\.){3}[0-9]{1,3})(\s+Bcast:" r"(?P(?:[0-9]{1,3}\.){3}[0-9]{1,3}))?\s+Mask:(?P(?:[0-9]{1,3}\.){3}[0-9]{1,3})", re.I) re_linux_ipv6 = re.compile( r"inet6 addr:\s+(?P\S+)/(?P[0-9]+)\s+Scope:(?PLink|Host)", re.I) re_linux_state = re.compile( r"\W+(?P(?:\w+\s)+)(?:\s+)?MTU:(?P[0-9]+)\s+Metric:(?P[0-9]+)", re.I) re_linux_rx = re.compile( r"RX packets:(?P[0-9]+)\s+errors:(?P[0-9]+)\s+dropped:" r"(?P[0-9]+)\s+overruns:(?P[0-9]+)\s+frame:(?P[0-9]+)", re.I) re_linux_tx = re.compile( r"TX packets:(?P[0-9]+)\s+errors:(?P[0-9]+)\s+dropped:" r"(?P[0-9]+)\s+overruns:(?P[0-9]+)\s+carrier:(?P[0-9]+)", re.I) re_linux_bytes = re.compile(r"\W+RX bytes:(?P\d+)\s+\(.*\)\s+TX bytes:(?P\d+)\s+\(.*\)", re.I) re_linux_tx_stats = re.compile(r"collisions:(?P[0-9]+)\s+txqueuelen:[0-9]+", re.I) re_linux = [re_linux_interface, re_linux_ipv4, re_linux_ipv6, re_linux_state, re_linux_rx, re_linux_tx, re_linux_bytes, re_linux_tx_stats] # OpenBSD syntax re_openbsd_interface = re.compile( r"(?P[a-zA-Z0-9:._-]+):\s+flags=(?P[0-9]+)<(?P\S+)?>\s+mtu\s+(?P[0-9]+)", re.I) re_openbsd_ipv4 = re.compile( r"inet (?P(?:[0-9]{1,3}\.){3}[0-9]{1,3})\s+netmask\s+" r"(?P(?:[0-9]{1,3}\.){3}[0-9]{1,3})(\s+broadcast\s+" r"(?P(?:[0-9]{1,3}\.){3}[0-9]{1,3}))?", re.I) re_openbsd_ipv6 = re.compile( r"inet6\s+(?P\S+)\s+prefixlen\s+(?P[0-9]+)\s+scopeid\s+(?P\w+x\w+)<" r"(?:link|host)>", re.I) re_openbsd_details = re.compile( r"\S+\s+(?:(?P[0-9A-Fa-f:?]+)\s+)?txqueuelen\s+[0-9]+\s+\((?P\S+\s?\S+)\)", re.I) re_openbsd_rx = re.compile(r"RX packets (?P[0-9]+)\s+bytes\s+(?P\d+)\s+.*", re.I) re_openbsd_rx_stats = re.compile( r"RX errors (?P[0-9]+)\s+dropped\s+(?P[0-9]+)\s+overruns\s+" r"(?P[0-9]+)\s+frame\s+(?P[0-9]+)", re.I) re_openbsd_tx = re.compile(r"TX packets (?P[0-9]+)\s+bytes\s+(?P\d+)\s+.*", re.I) re_openbsd_tx_stats = re.compile( r"TX errors (?P[0-9]+)\s+dropped\s+(?P[0-9]+)\s+overruns\s+" r"(?P[0-9]+)\s+carrier\s+(?P[0-9]+)\s+collisions\s+(?P[0-9]+)", re.I) re_openbsd = [re_openbsd_interface, re_openbsd_ipv4, re_openbsd_ipv6, re_openbsd_details, re_openbsd_rx, re_openbsd_rx_stats, re_openbsd_tx, re_openbsd_tx_stats] # FreeBSD syntax re_freebsd_interface = re.compile( r"(?P[a-zA-Z0-9:._-]+):\s+flags=(?P[0-9]+)<(?P\S+)>\s+metric\s+" r"(?P[0-9]+)\s+mtu\s+(?P[0-9]+)", re.I) re_freebsd_ipv4 = re.compile( r"inet (?P(?:[0-9]{1,3}\.){3}[0-9]{1,3})\s+netmask\s+(?P0x\S+)(\s+broadcast\s+" r"(?P(?:[0-9]{1,3}\.){3}[0-9]{1,3}))?", re.I) re_freebsd_ipv6 = re.compile(r"\s?inet6\s(?P.*)(?:\%\w+\d+)\sprefixlen\s(?P\d+)(?:\s\w+)?\sscopeid\s(?P\w+x\w+)", re.I) re_freebsd_details = re.compile(r"ether\s+(?P[0-9A-Fa-f:?]+)", re.I) re_freebsd = [re_freebsd_interface, re_freebsd_ipv4, re_freebsd_ipv6, re_freebsd_details] available_interfaces = dict() for pattern in [re_linux_interface, re_openbsd_interface, re_freebsd_interface]: network_interfaces = re.finditer(pattern, source_data) positions = [] while True: try: pos = next(network_interfaces) positions.append(max(pos.start() - 1, 0)) except StopIteration: break if positions: positions.append(len(source_data)) break if not positions: return available_interfaces for l, r in zip(positions, positions[1:]): chunk = source_data[l:r] _interface = dict() for pattern in re_linux + re_openbsd + re_freebsd: match = re.search(pattern, chunk.replace('\t', '\n')) if match: details = match.groupdict() for k, v in details.items(): if isinstance(v, str): details[k] = v.strip() _interface.update(details) if _interface is not None: available_interfaces[_interface['name']] = self.update_interface_details(_interface) return available_interfaces @staticmethod def update_interface_details(interface): for attr in _IfconfigParser.attributes: if attr not in interface: interface[attr] = None return namedtuple('Interface', interface.keys())(**interface) class InterfaceNotFound(Exception): pass def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: int_list = ['flags', 'mtu', 'ipv6_mask', 'rx_packets', 'rx_bytes', 'rx_errors', 'rx_dropped', 'rx_overruns', 'rx_frame', 'tx_packets', 'tx_bytes', 'tx_errors', 'tx_dropped', 'tx_overruns', 'tx_carrier', 'tx_collisions', 'metric'] for key in entry: if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) # convert OSX-style subnet mask to dotted quad if 'ipv4_mask' in entry: try: if entry['ipv4_mask'].startswith('0x'): new_mask = entry['ipv4_mask'] new_mask = new_mask.lstrip('0x') new_mask = '.'.join(str(int(i, 16)) for i in [new_mask[i:i + 2] for i in range(0, len(new_mask), 2)]) entry['ipv4_mask'] = new_mask except (ValueError, TypeError, AttributeError): pass # convert state value to an array if 'state' in entry: try: new_state = entry['state'].split(',') entry['state'] = new_state except (ValueError, TypeError, AttributeError): pass return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = [] if jc.utils.has_data(data): parsed = _IfconfigParser(console_output=data) interfaces = parsed.get_interfaces() # convert ifconfigparser output to a dictionary for iface in interfaces: d = interfaces[iface]._asdict() dct = dict(d) raw_output.append(dct) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/ini.py000066400000000000000000000103751415226333200154120ustar00rootroot00000000000000"""jc - JSON CLI output utility `INI` file parser Parses standard `INI` files and files containing simple key/value pairs. Delimiter can be `=` or `:`. Missing values are supported. Comment prefix can be `#` or `;`. Comments must be on their own line. Note: Values starting and ending with quotation marks will have the marks removed. If you would like to keep the quotation marks, use the `-r` command-line argument or the `raw=True` argument in `parse()`. Usage (cli): $ cat foo.ini | jc --ini Usage (module): import jc.parsers.ini result = jc.parsers.ini.parse(ini_file_output) Schema: ini or key/value document converted to a dictionary - see configparser standard library documentation for more details. Note: Values starting and ending with quotation marks will have the marks removed. If you would like to keep the quotation marks, use the -r or raw=True argument. { "key1": string, "key2": string } Examples: $ cat example.ini [DEFAULT] ServerAliveInterval = 45 Compression = yes CompressionLevel = 9 ForwardX11 = yes [bitbucket.org] User = hg [topsecret.server.com] Port = 50022 ForwardX11 = no $ cat example.ini | jc --ini -p { "bitbucket.org": { "serveraliveinterval": "45", "compression": "yes", "compressionlevel": "9", "forwardx11": "yes", "user": "hg" }, "topsecret.server.com": { "serveraliveinterval": "45", "compression": "yes", "compressionlevel": "9", "forwardx11": "no", "port": "50022" } } """ import jc.utils import configparser class info(): """Provides parser metadata (version, author, etc.)""" version = '1.5' description = 'INI file parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' details = 'Using configparser from the standard library' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'cygwin', 'win32', 'aix', 'freebsd'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (Dictionary) raw structured data to process Returns: Dictionary representing an ini or simple key/value pair document. """ # remove quotation marks from beginning and end of values for heading in proc_data: # standard ini files with headers if isinstance(proc_data[heading], dict): for key, value in proc_data[heading].items(): if value is not None and value.startswith('"') and value.endswith('"'): proc_data[heading][key] = value.lstrip('"').rstrip('"') elif value is None: proc_data[heading][key] = '' # simple key/value files with no headers else: if proc_data[heading] is not None and proc_data[heading].startswith('"') and proc_data[heading].endswith('"'): proc_data[heading] = proc_data[heading].lstrip('"').rstrip('"') elif proc_data[heading] is None: proc_data[heading] = '' return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: Dictionary representing the ini file """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = {} if jc.utils.has_data(data): ini = configparser.ConfigParser(allow_no_value=True, interpolation=None) try: ini.read_string(data) raw_output = {s: dict(ini.items(s)) for s in ini.sections()} except configparser.MissingSectionHeaderError: data = '[data]\n' + data ini.read_string(data) output_dict = {s: dict(ini.items(s)) for s in ini.sections()} for key, value in output_dict['data'].items(): raw_output[key] = value if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/iostat.py000066400000000000000000000175311415226333200161370ustar00rootroot00000000000000"""jc - JSON CLI output utility `iostat` command output parser Note: `iostat` version 11 and higher include a JSON output option Usage (cli): $ iostat | jc --iostat or $ jc iostat Usage (module): import jc.parsers.iostat result = jc.parsers.iostat.parse(iostat_command_output) Schema: [ { "type": string, "percent_user": float, "percent_nice": float, "percent_system": float, "percent_iowait": float, "percent_steal": float, "percent_idle": float, "device": string, "tps": float, "kb_read_s": float, "mb_read_s": float, "kb_wrtn_s": float, "mb_wrtn_s": float, "kb_read": integer, "mb_read": integer, "kb_wrtn": integer, "mb_wrtn": integer, 'kb_dscd': integer, 'mb_dscd': integer, "rrqm_s": float, "wrqm_s": float, "r_s": float, "w_s": float, "rmb_s": float, "rkb_s": float, "wmb_s": float, "wkb_s": float, "avgrq_sz": float, "avgqu_sz": float, "await": float, "r_await": float, "w_await": float, "svctm": float, "aqu_sz": float, "rareq_sz": float, "wareq_sz": float, "d_s": float, "dkb_s": float, "dmb_s": float, "drqm_s": float, "percent_drqm": float, "d_await": float, "dareq_sz": float, "f_s": float, "f_await": float, "kb_dscd_s": float, "mb_dscd_s": float, "percent_util": float, "percent_rrqm": float, "percent_wrqm": float } ] Examples: $ iostat | jc --iostat -p [ { "percent_user": 0.15, "percent_nice": 0.0, "percent_system": 0.18, "percent_iowait": 0.0, "percent_steal": 0.0, "percent_idle": 99.67, "type": "cpu" }, { "device": "sda", "tps": 0.29, "kb_read_s": 7.22, "kb_wrtn_s": 1.25, "kb_read": 194341, "kb_wrtn": 33590, "type": "device" }, { "device": "dm-0", "tps": 0.29, "kb_read_s": 5.99, "kb_wrtn_s": 1.17, "kb_read": 161361, "kb_wrtn": 31522, "type": "device" }, { "device": "dm-1", "tps": 0.0, "kb_read_s": 0.08, "kb_wrtn_s": 0.0, "kb_read": 2204, "kb_wrtn": 0, "type": "device" } ] $ iostat | jc --iostat -p -r [ { "percent_user": "0.15", "percent_nice": "0.00", "percent_system": "0.18", "percent_iowait": "0.00", "percent_steal": "0.00", "percent_idle": "99.67", "type": "cpu" }, { "device": "sda", "tps": "0.29", "kb_read_s": "7.22", "kb_wrtn_s": "1.25", "kb_read": "194341", "kb_wrtn": "33590", "type": "device" }, { "device": "dm-0", "tps": "0.29", "kb_read_s": "5.99", "kb_wrtn_s": "1.17", "kb_read": "161361", "kb_wrtn": "31522", "type": "device" }, { "device": "dm-1", "tps": "0.00", "kb_read_s": "0.08", "kb_wrtn_s": "0.00", "kb_read": "2204", "kb_wrtn": "0", "type": "device" } ] """ import jc.utils import jc.parsers.universal class info(): """Provides parser metadata (version, author, etc.)""" version = '1.0' description = '`iostat` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' compatible = ['linux'] magic_commands = ['iostat'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured to conform to the schema. """ for entry in proc_data: float_list = [ 'percent_user', 'percent_nice', 'percent_system', 'percent_iowait', 'percent_steal', 'percent_idle', 'tps', 'kb_read_s', 'mb_read_s', 'kb_wrtn_s', 'mb_wrtn_s', 'rrqm_s', 'wrqm_s', 'r_s', 'w_s', 'rmb_s', 'rkb_s', 'wmb_s', 'wkb_s', 'avgrq_sz', 'avgqu_sz', 'await', 'r_await', 'w_await', 'svctm', 'percent_util', 'percent_rrqm', 'percent_wrqm', 'aqu_sz', 'rareq_sz', 'wareq_sz', 'd_s', 'dkb_s', 'dmb_s', 'drqm_s', 'percent_drqm', 'd_await', 'dareq_sz', 'f_s', 'f_await', 'kb_dscd_s', 'mb_dscd_s' ] int_list = ['kb_read', 'mb_read', 'kb_wrtn', 'mb_wrtn', 'kb_dscd', 'mb_dscd'] for key in entry: if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) if key in float_list: entry[key] = jc.utils.convert_to_float(entry[key]) return proc_data def _normalize_headers(line): return line.replace('%', 'percent_').replace('/', '_').replace('-', '_').lower() def _create_obj_list(section_list, section_name): output_list = jc.parsers.universal.simple_table_parse(section_list) for item in output_list: item['type'] = section_name return output_list def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = [] if jc.utils.has_data(data): section = '' # either 'cpu' or 'device' headers = '' cpu_list = [] device_list = [] for line in filter(None, data.splitlines()): if line.startswith('avg-cpu:'): if cpu_list: raw_output.extend(_create_obj_list(cpu_list, 'cpu')) cpu_list = [] if device_list: raw_output.extend(_create_obj_list(device_list, 'device')) device_list = [] section = 'cpu' headers = _normalize_headers(line) headers = headers.strip().split(':', maxsplit=1)[1:] headers = ' '.join(headers) cpu_list.append(headers) continue if line.startswith('Device'): if cpu_list: raw_output.extend(_create_obj_list(cpu_list, 'cpu')) cpu_list = [] if device_list: raw_output.extend(_create_obj_list(device_list, 'device')) device_list = [] section = 'device' headers = _normalize_headers(line) headers = headers.replace(':', ' ') device_list.append(headers) continue if section == 'cpu': cpu_list.append(line) if section == 'device': device_list.append(line) if cpu_list: raw_output.extend(_create_obj_list(cpu_list, 'cpu')) if device_list: raw_output.extend(_create_obj_list(device_list, 'device')) return raw_output if raw else _process(raw_output) jc-1.17.3/jc/parsers/iostat_s.py000066400000000000000000000162351415226333200164610ustar00rootroot00000000000000"""jc - JSON CLI output utility `iostat` command output streaming parser > This streaming parser outputs JSON Lines Note: `iostat` version 11 and higher include a JSON output option Usage (cli): $ iostat | jc --iostat-s Usage (module): import jc.parsers.iostat_s result = jc.parsers.iostat_s.parse(iostat_command_output.splitlines()) # result is an iterable object for item in result: # do something Schema: { "type": string, "percent_user": float, "percent_nice": float, "percent_system": float, "percent_iowait": float, "percent_steal": float, "percent_idle": float, "device": string, "tps": float, "kb_read_s": float, "mb_read_s": float, "kb_wrtn_s": float, "mb_wrtn_s": float, "kb_read": integer, "mb_read": integer, "kb_wrtn": integer, "mb_wrtn": integer, 'kb_dscd': integer, 'mb_dscd': integer, "rrqm_s": float, "wrqm_s": float, "r_s": float, "w_s": float, "rmb_s": float, "rkb_s": float, "wmb_s": float, "wkb_s": float, "avgrq_sz": float, "avgqu_sz": float, "await": float, "r_await": float, "w_await": float, "svctm": float, "aqu_sz": float, "rareq_sz": float, "wareq_sz": float, "d_s": float, "dkb_s": float, "dmb_s": float, "drqm_s": float, "percent_drqm": float, "d_await": float, "dareq_sz": float, "f_s": float, "f_await": float, "kb_dscd_s": float, "mb_dscd_s": float, "percent_util": float, "percent_rrqm": float, "percent_wrqm": float, "_jc_meta": # This object only exists if using -qq or ignore_exceptions=True { "success": booean, # true if successfully parsed, false if error "error": string, # exists if "success" is false "line": string # exists if "success" is false } } Examples: $ iostat | jc --iostat-s {"percent_user":0.14,"percent_nice":0.0,"percent_system":0.16,"percent_iowait":0.0,"percent_steal":0.0,"percent_idle":99.7,"type":"cpu"} {"device":"sda","tps":0.24,"kb_read_s":5.28,"kb_wrtn_s":1.1,"kb_read":203305,"kb_wrtn":42368,"type":"device"} ... $ iostat | jc --iostat-s -r {"percent_user":"0.14","percent_nice":"0.00","percent_system":"0.16","percent_iowait":"0.00","percent_steal":"0.00","percent_idle":"99.70","type":"cpu"} {"device":"sda","tps":"0.24","kb_read_s":"5.28","kb_wrtn_s":"1.10","kb_read":"203305","kb_wrtn":"42368","type":"device"} ... """ import jc.utils from jc.utils import stream_success, stream_error from jc.exceptions import ParseError import jc.parsers.universal class info(): """Provides parser metadata (version, author, etc.)""" version = '1.0' description = '`iostat` command streaming parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' compatible = ['linux'] streaming = True __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (Dictionary) raw structured data to process Returns: Dictionary. Structured data to conform to the schema. """ float_list = [ 'percent_user', 'percent_nice', 'percent_system', 'percent_iowait', 'percent_steal', 'percent_idle', 'tps', 'kb_read_s', 'mb_read_s', 'kb_wrtn_s', 'mb_wrtn_s', 'rrqm_s', 'wrqm_s', 'r_s', 'w_s', 'rmb_s', 'rkb_s', 'wmb_s', 'wkb_s', 'avgrq_sz', 'avgqu_sz', 'await', 'r_await', 'w_await', 'svctm', 'percent_util', 'percent_rrqm', 'percent_wrqm', 'aqu_sz', 'rareq_sz', 'wareq_sz', 'd_s', 'dkb_s', 'dmb_s', 'drqm_s', 'percent_drqm', 'd_await', 'dareq_sz', 'f_s', 'f_await', 'kb_dscd_s', 'mb_dscd_s' ] int_list = ['kb_read', 'mb_read', 'kb_wrtn', 'mb_wrtn', 'kb_dscd', 'mb_dscd'] for key in proc_data: if key in int_list: proc_data[key] = jc.utils.convert_to_int(proc_data[key]) if key in float_list: proc_data[key] = jc.utils.convert_to_float(proc_data[key]) return proc_data def _normalize_headers(line): return line.replace('%', 'percent_').replace('/', '_').replace('-', '_').lower() def _create_obj_list(section_list, section_name): output_list = jc.parsers.universal.simple_table_parse(section_list) for item in output_list: item['type'] = section_name return output_list def parse(data, raw=False, quiet=False, ignore_exceptions=False): """ Main text parsing generator function. Returns an iterator object. Parameters: data: (iterable) line-based text data to parse (e.g. sys.stdin or str.splitlines()) raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True ignore_exceptions: (boolean) ignore parsing exceptions if True Yields: Dictionary. Raw or processed structured data. Returns: Iterator object """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.streaming_input_type_check(data) section = '' # either 'cpu' or 'device' headers = '' cpu_list = [] device_list = [] for line in data: output_line = {} try: jc.utils.streaming_line_input_type_check(line) # ignore blank lines and header line if line == '\n' or line == '' or line.startswith('Linux'): continue if line.startswith('avg-cpu:'): section = 'cpu' headers = _normalize_headers(line) headers = headers.strip().split(':', maxsplit=1)[1:] headers = ' '.join(headers) continue if line.startswith('Device'): section = 'device' headers = _normalize_headers(line) headers = headers.replace(':', ' ') continue if section == 'cpu': cpu_list.append(headers) cpu_list.append(line) output_line = _create_obj_list(cpu_list, 'cpu')[0] cpu_list = [] if section == 'device': device_list.append(headers) device_list.append(line) output_line = _create_obj_list(device_list, 'device')[0] device_list = [] if output_line: yield stream_success(output_line, ignore_exceptions) if raw else stream_success(_process(output_line), ignore_exceptions) else: raise ParseError('Not iostat data') except Exception as e: yield stream_error(e, ignore_exceptions, line) jc-1.17.3/jc/parsers/iptables.py000066400000000000000000000166671415226333200164500ustar00rootroot00000000000000"""jc - JSON CLI output utility `ipables` command output parser Supports `-vLn` and `--line-numbers` for all tables. Usage (cli): $ sudo iptables -L -t nat | jc --iptables or $ jc iptables -L -t nat Usage (module): import jc.parsers.iptables result = jc.parsers.iptables.parse(iptables_command_output) Schema: [ { "chain": string, "rules": [ { "num" integer, "pkts": integer, "bytes": integer, # converted based on suffix "target": string, "prot": string, "opt": string, # "--" = Null "in": string, "out": string, "source": string, "destination": string, "options": string } ] } ] Examples: $ sudo iptables --line-numbers -v -L -t nat | jc --iptables -p [ { "chain": "PREROUTING", "rules": [ { "num": 1, "pkts": 2183, "bytes": 186000, "target": "PREROUTING_direct", "prot": "all", "opt": null, "in": "any", "out": "any", "source": "anywhere", "destination": "anywhere" }, { "num": 2, "pkts": 2183, "bytes": 186000, "target": "PREROUTING_ZONES_SOURCE", "prot": "all", "opt": null, "in": "any", "out": "any", "source": "anywhere", "destination": "anywhere" }, { "num": 3, "pkts": 2183, "bytes": 186000, "target": "PREROUTING_ZONES", "prot": "all", "opt": null, "in": "any", "out": "any", "source": "anywhere", "destination": "anywhere" }, { "num": 4, "pkts": 0, "bytes": 0, "target": "DOCKER", "prot": "all", "opt": null, "in": "any", "out": "any", "source": "anywhere", "destination": "anywhere", "options": "ADDRTYPE match dst-type LOCAL" } ] }, ... ] $ sudo iptables --line-numbers -v -L -t nat | jc --iptables -p -r [ { "chain": "PREROUTING", "rules": [ { "num": "1", "pkts": "2183", "bytes": "186K", "target": "PREROUTING_direct", "prot": "all", "opt": "--", "in": "any", "out": "any", "source": "anywhere", "destination": "anywhere" }, { "num": "2", "pkts": "2183", "bytes": "186K", "target": "PREROUTING_ZONES_SOURCE", "prot": "all", "opt": "--", "in": "any", "out": "any", "source": "anywhere", "destination": "anywhere" }, { "num": "3", "pkts": "2183", "bytes": "186K", "target": "PREROUTING_ZONES", "prot": "all", "opt": "--", "in": "any", "out": "any", "source": "anywhere", "destination": "anywhere" }, { "num": "4", "pkts": "0", "bytes": "0", "target": "DOCKER", "prot": "all", "opt": "--", "in": "any", "out": "any", "source": "anywhere", "destination": "anywhere", "options": "ADDRTYPE match dst-type LOCAL" } ] }, ... ] """ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.7' description = '`iptables` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux'] magic_commands = ['iptables'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: for rule in entry['rules']: int_list = ['num', 'pkts'] for key in rule: if key in int_list: rule[key] = jc.utils.convert_to_int(rule[key]) if 'bytes' in rule: multiplier = 1 if rule['bytes'][-1] == 'K': multiplier = 10 ** 3 rule['bytes'] = rule['bytes'].rstrip('K') elif rule['bytes'][-1] == 'M': multiplier = 10 ** 6 rule['bytes'] = rule['bytes'].rstrip('M') elif rule['bytes'][-1] == 'G': multiplier = 10 ** 9 rule['bytes'] = rule['bytes'].rstrip('G') elif rule['bytes'][-1] == 'T': multiplier = 10 ** 12 rule['bytes'] = rule['bytes'].rstrip('T') elif rule['bytes'][-1] == 'P': multiplier = 10 ** 15 rule['bytes'] = rule['bytes'].rstrip('P') try: bytes_int = jc.utils.convert_to_int(rule['bytes']) rule['bytes'] = bytes_int * multiplier except (ValueError): rule['bytes'] = None if 'opt' in rule: if rule['opt'] == '--': rule['opt'] = None return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = [] chain = {} headers = [] if jc.utils.has_data(data): for line in list(filter(None, data.splitlines())): if line.startswith('Chain'): if chain: raw_output.append(chain) chain = {} headers = [] parsed_line = line.split() chain['chain'] = parsed_line[1] chain['rules'] = [] continue elif line.startswith('target') or line.find('pkts') == 1 or line.startswith('num'): headers = [] headers = [h for h in ' '.join(line.lower().strip().split()).split() if h] headers.append("options") continue else: rule = line.split(maxsplit=len(headers) - 1) temp_rule = dict(zip(headers, rule)) if temp_rule: chain['rules'].append(temp_rule) if chain: raw_output.append(chain) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/iw_scan.py000066400000000000000000000252251415226333200162560ustar00rootroot00000000000000"""jc - JSON CLI output utility `iw dev scan` command output parser This parser is considered beta quality. Not all fields are parsed and there are not enough samples to test. Usage (cli): $ iw dev wlan0 scan | jc --iw-scan or $ jc iw dev wlan0 scan Usage (module): import jc.parsers.iw-scan result = jc.parsers.iw-scan.parse(iw-scan_command_output) Schema: [ { "foo": string/integer/float, # best guess based on value "bar": string/integer/float, "baz": string/integer/float } ] Examples: $ iw dev wlan0 scan | jc --iw-scan -p [ { "bssid": "71:31:72:65:e1:a2", "interface": "wlan0", "freq": 2462, "capability": "ESS Privacy ShortSlotTime (0x0411)", "ssid": "WLAN-1234", "supported_rates": [ 1.0, 2.0, 5.5, 11.0, 18.0, 24.0, 36.0, 54.0 ], "erp": "", "erp_d4.0": "", "rsn": "Version: 1", "group_cipher": "CCMP", "pairwise_ciphers": "CCMP", "authentication_suites": "PSK", "capabilities": "0x186c", "extended_supported_rates": [ 6.0, 9.0, 12.0, 48.0 ], "ht_rx_mcs_rate_indexes_supported": "0-15", "primary_channel": 11, "secondary_channel_offset": "no secondary", "rifs": 1, "ht_protection": "no", "non-gf_present": 1, "obss_non-gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l-sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "bss_width_channel_transition_delay_factor": 5, "extended_capabilities": "HT Information Exchange Supported", "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "wps": "Version: 1.0", "wi-fi_protected_setup_state": "2 (Configured)", "selected_registrar": "0x0", "response_type": "3 (AP)", "uuid": "00000000-0000-0003-0000-75317074f1a2", "manufacturer": "Corporation", "model": "VGV8539JW", "model_number": "1.47.000", "serial_number": "J144024542", "primary_device_type": "6-0050f204-1", "device_name": "Wireless Router(WFA)", "config_methods": "Label, PBC", "rf_bands": "0x3", "tsf_usec": 212098649788, "sta_channel_width_mhz": 20, "passive_dwell_tus": 20, "active_dwell_tus": 10, "channel_width_trigger_scan_interval_s": 300, "scan_passive_total_per_channel_tus": 200, "scan_active_total_per_channel_tus": 20, "beacon_interval_tus": 100, "signal_dbm": -80.0, "last_seen_ms": 11420, "selected_rates": [ 1.0, 2.0, 5.5, 11.0 ], "obss_scan_activity_threshold_percent": 0.25, "ds_parameter_set_channel": 11, "max_amsdu_length_bytes": 7935, "minimum_rx_ampdu_time_spacing_usec": 16 }, ... ] """ import re import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '0.7' description = '`iw dev [device] scan` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' details = 'Enhancements by Philipp Schmitt (https://pschmitt.dev/)' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux'] magic_commands = ['iw dev'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ # convert ints and floats for top-level keys for item in proc_data: for key in item: try: item[key] = int(item[key]) except (Exception): try: item[key] = float(item[key]) except (Exception): pass # convert ints and floats for lists if isinstance(item[key], list): new_list = [] for list_item in item[key]: try: new_list.append(int(list_item)) except (Exception): try: new_list.append(float(list_item)) except (Exception): pass item[key] = new_list return proc_data def _post_parse(data): # remove empty items cleandata = [] for ssid in data: ssid = {k: v for k, v in ssid.items() if v} cleandata.append(ssid) # remove asterisks from begining of values for ssid in cleandata: for key in ssid: if ssid[key].startswith('*'): ssid[key] = ssid[key][1:].strip() for item in cleandata: if 'country' in item: country_split = item['country'].split() item['country'] = country_split[0] if len(country_split) > 1: item['environment'] = country_split[2] if 'tsf' in item: item['tsf_usec'] = item['tsf'].split()[0] del item['tsf'] if 'sta_channel_width' in item: item['sta_channel_width_mhz'] = item['sta_channel_width'].replace(' MHz', '') del item['sta_channel_width'] if 'passive_dwell' in item: item['passive_dwell_tus'] = item['passive_dwell'].replace(' TUs', '') del item['passive_dwell'] if 'active_dwell' in item: item['active_dwell_tus'] = item['active_dwell'].replace(' TUs', '') del item['active_dwell'] if 'channel_width_trigger_scan_interval' in item: item['channel_width_trigger_scan_interval_s'] = item['channel_width_trigger_scan_interval'].replace(' s', '') del item['channel_width_trigger_scan_interval'] if 'scan_passive_total_per_channel' in item: item['scan_passive_total_per_channel_tus'] = item['scan_passive_total_per_channel'].replace(' TUs', '') del item['scan_passive_total_per_channel'] if 'scan_active_total_per_channel' in item: item['scan_active_total_per_channel_tus'] = item['scan_active_total_per_channel'].replace(' TUs', '') del item['scan_active_total_per_channel'] if 'beacon_interval' in item: item['beacon_interval_tus'] = item['beacon_interval'].replace(' TUs', '') del item['beacon_interval'] if 'signal' in item: item['signal_dbm'] = item['signal'].replace(' dBm', '') del item['signal'] if 'last_seen' in item: item['last_seen_ms'] = item['last_seen'].replace(' ms ago', '') del item['last_seen'] if 'supported_rates' in item: selected_rates = [] for rate in item['supported_rates'].split(): if rate.endswith('*'): selected_rates.append(rate.replace('*', '')) item['selected_rates'] = selected_rates item['supported_rates'] = item['supported_rates'].replace('*', '').split() if 'extended_supported_rates' in item: item['extended_supported_rates'] = item['extended_supported_rates'].split() if 'obss_scan_activity_threshold' in item: item['obss_scan_activity_threshold_percent'] = item['obss_scan_activity_threshold'].replace(' %', '') del item['obss_scan_activity_threshold'] if 'ds_parameter_set' in item: item['ds_parameter_set_channel'] = item['ds_parameter_set'].replace('channel ', '') del item['ds_parameter_set'] if 'max_amsdu_length' in item: item['max_amsdu_length_bytes'] = item['max_amsdu_length'].replace(' bytes', '') del item['max_amsdu_length'] if 'available_admission_capacity' in item: item['available_admission_capacity'] = item['available_admission_capacity'].replace(' [*32us]', '') if 'power_constraint' in item: item['power_constraint_db'] = item['power_constraint'].replace(' dB', '') del item['power_constraint'] if 'minimum_rx_ampdu_time_spacing' in item: item['minimum_rx_ampdu_time_spacing_usec'] = item['minimum_rx_ampdu_time_spacing'].split()[0] del item['minimum_rx_ampdu_time_spacing'] if 'vht_rx_highest_supported' in item: item['vht_rx_highest_supported_mbps'] = item['vht_rx_highest_supported'].replace(' Mbps', '') del item['vht_rx_highest_supported'] if 'vht_tx_highest_supported' in item: item['vht_tx_highest_supported_mbps'] = item['vht_tx_highest_supported'].replace(' Mbps', '') del item['vht_tx_highest_supported'] return _process(cleandata) def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = [] section = {} if jc.utils.has_data(data): for line in filter(None, data.splitlines()): if line.startswith('BSS'): if section: raw_output.append(section) section = {} split_line = line.replace('(', ' ').replace(')', ' ').split() section['bssid'] = split_line[1] section['interface'] = split_line[3] continue if re.match(r"^\s+.+", line): # ignore problematic lines if 'Maximum RX AMPDU length' in line: continue split_line = line.split(':', maxsplit=1) if len(split_line) == 2: split_line[0] = split_line[0].lower().replace('*', '').replace('(', '').replace(')', '').replace(',', '').replace('-', '_').strip().replace(' ', '_') section[split_line[0]] = split_line[1].strip() continue if section: raw_output.append(section) if raw: return raw_output else: return _post_parse(raw_output) jc-1.17.3/jc/parsers/jobs.py000066400000000000000000000114251415226333200155650ustar00rootroot00000000000000"""jc - JSON CLI output utility `jobs` command output parser Also supports the `-l` option. The "Magic" syntax is not supported since the `jobs` command is a shell builtin. Usage (cli): $ jobs | jc --jobs Usage (module): import jc.parsers.jobs result = jc.parsers.jobs.parse(jobs_command_output) Schema: [ { "job_number": integer, "pid": integer, "history": string, "status": string, "command": string } ] Example: $ jobs -l | jc --jobs -p [ { "job_number": 1, "pid": 5283, "status": "Running", "command": "sleep 10000 &" }, { "job_number": 2, "pid": 5284, "status": "Running", "command": "sleep 10100 &" }, { "job_number": 3, "pid": 5285, "history": "previous", "status": "Running", "command": "sleep 10001 &" }, { "job_number": 4, "pid": 5286, "history": "current", "status": "Running", "command": "sleep 10112 &" } ] $ jobs -l | jc --jobs -p -r [ { "job_number": "1", "pid": "19510", "status": "Running", "command": "sleep 1000 &" }, { "job_number": "2", "pid": "19511", "status": "Running", "command": "sleep 1001 &" }, { "job_number": "3", "pid": "19512", "history": "previous", "status": "Running", "command": "sleep 1002 &" }, { "job_number": "4", "pid": "19513", "history": "current", "status": "Running", "command": "sleep 1003 &" } ] """ import string import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.5' description = '`jobs` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'cygwin', 'aix', 'freebsd'] magic_commands = ['jobs'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: int_list = ['job_number', 'pid'] for key in entry: if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = [] # Clear any blank lines cleandata = list(filter(None, data.splitlines())) if jc.utils.has_data(data): for entry in cleandata: output_line = {} remainder = [] job_number = '' pid = '' job_history = '' parsed_line = entry.split(maxsplit=2) # check if -l was used if parsed_line[1][0] in string.digits: pid = parsed_line.pop(1) remainder = parsed_line.pop(1) job_number = parsed_line.pop(0) remainder = remainder.split(maxsplit=1) # rebuild parsed_line parsed_line = [] for r in remainder: parsed_line.append(r) parsed_line.insert(0, job_number) # check for + or - in first field if '+' in parsed_line[0]: job_history = 'current' parsed_line[0] = parsed_line[0].rstrip('+') if '-' in parsed_line[0]: job_history = 'previous' parsed_line[0] = parsed_line[0].rstrip('-') # clean up first field parsed_line[0] = parsed_line[0].lstrip('[').rstrip(']') # create list of dictionaries output_line['job_number'] = parsed_line[0] if pid: output_line['pid'] = pid if job_history: output_line['history'] = job_history output_line['status'] = parsed_line[1] output_line['command'] = parsed_line[2] raw_output.append(output_line) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/kv.py000066400000000000000000000042501415226333200152460ustar00rootroot00000000000000"""jc - JSON CLI output utility `Key/Value` file parser Supports files containing simple key/value pairs. Delimiter can be `=` or `:`. Missing values are supported. Comment prefix can be `#` or `;`. Comments must be on their own line. Note: Values starting and ending with quotation marks will have the marks removed. If you would like to keep the quotation marks, use the `-r` command-line argument or the `raw=True` argument in `parse()`. Usage (cli): $ cat foo.txt | jc --kv Usage (module): import jc.parsers.kv result = jc.parsers.kv.parse(kv_file_output) Schema: key/value document converted to a dictionary - see configparser standard library documentation for more details. { "key1": string, "key2": string } Examples: $ cat keyvalue.txt # this file contains key/value pairs name = John Doe address=555 California Drive age: 34 ; comments can include # or ; # delimiter can be = or : # quoted values have quotation marks stripped by default # but can be preserved with the -r argument occupation:"Engineer" $ cat keyvalue.txt | jc --kv -p { "name": "John Doe", "address": "555 California Drive", "age": "34", "occupation": "Engineer" } """ class info(): """Provides parser metadata (version, author, etc.)""" version = '1.1' description = 'Key/Value file parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' details = 'This is a wrapper for the INI parser' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'cygwin', 'win32', 'aix', 'freebsd'] __version__ = info.version def parse(data, raw=False, quiet=False): """ Main text parsing function Note: this is just a wrapper for jc.parsers.ini Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: Dictionary representing the key/value file """ import jc.parsers.ini return jc.parsers.ini.parse(data, raw=raw, quiet=quiet) jc-1.17.3/jc/parsers/last.py000066400000000000000000000171401415226333200155730ustar00rootroot00000000000000"""jc - JSON CLI output utility `last` and `lastb` command output parser Supports `-w` and `-F` options. Calculated epoch time fields are naive (i.e. based on the local time of the system the parser is run on) since there is no timezone information in the `last` command output. Usage (cli): $ last | jc --last or $ jc last Usage (module): import jc.parsers.last result = jc.parsers.last.parse(last_command_output) Schema: [ { "user": string, "tty": string, "hostname": string, "login": string, "logout": string, "duration": string, "login_epoch": integer, # (naive) available with last -F option "logout_epoch": integer, # (naive) available with last -F option "duration_seconds": integer # available with last -F option } ] Examples: $ last -F | jc --last -p [ { "user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Mon Dec 28 17:24:10 2020", "logout": "still logged in" }, { "user": "kbrazil", "tty": "ttys003", "hostname": null, "login": "Mon Dec 28 17:24:10 2020", "logout": "Mon Dec 28 17:25:01 2020", "duration": "00:00", "login_epoch": 1565891826, "logout_epoch": 1565895404, "duration_seconds": 3578 }, { "user": "kbrazil", "tty": "ttys003", "hostname": null, "login": "Mon Dec 28 17:24:10 2020", "logout": "Mon Dec 28 17:25:01 2020", "duration": "00:00", "login_epoch": 1565891826, "logout_epoch": 1565895404, "duration_seconds": 3578 }, ... ] $ last | jc --last -p -r [ { "user": "kbrazil", "tty": "ttys002", "hostname": "-", "login": "Thu Feb 27 14:31", "logout": "still_logged_in" }, { "user": "kbrazil", "tty": "ttys003", "hostname": "-", "login": "Thu Feb 27 10:38", "logout": "10:38", "duration": "00:00" }, { "user": "kbrazil", "tty": "ttys003", "hostname": "-", "login": "Thu Feb 27 10:18", "logout": "10:18", "duration": "00:00" }, ... ] """ import re import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.8' description = '`last` and `lastb` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' details = 'Enhancements by https://github.com/zerolagtime' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'aix', 'freebsd'] magic_commands = ['last', 'lastb'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: if 'user' in entry and entry['user'] == 'boot_time': entry['user'] = 'boot time' if 'tty' in entry and entry['tty'] == '~': entry['tty'] = None if 'tty' in entry and entry['tty'] == 'system_boot': entry['tty'] = 'system boot' if 'hostname' in entry and entry['hostname'] == '-': entry['hostname'] = None if 'hostname' in entry and entry['hostname'] is not None and entry['hostname'][0] == ":": entry['hostname'] = f'CONSOLE{entry["hostname"]}' if 'logout' in entry and entry['logout'] == 'still_logged_in': entry['logout'] = 'still logged in' if 'logout' in entry and entry['logout'] == 'gone_-_no_logout': entry['logout'] = 'gone - no logout' if 'login' in entry and re.match(r'.*\d\d:\d\d:\d\d \d\d\d\d.*', entry['login']): timestamp = jc.utils.timestamp(entry['login']) entry['login_epoch'] = timestamp.naive if 'logout' in entry and re.match(r'.*\d\d:\d\d:\d\d \d\d\d\d.*', entry['logout']): timestamp = jc.utils.timestamp(entry['logout']) entry['logout_epoch'] = timestamp.naive if 'login_epoch' in entry and 'logout_epoch' in entry: entry['duration_seconds'] = entry['logout_epoch'] - entry['login_epoch'] if 'duration' in entry and re.match(r'^\d+\+', entry['duration']): m = re.match(r'^(?P\d+)\+(?P\d\d):(?P\d\d)', entry['duration']) days, hours, minutes = m.groups() entry['duration'] = f'{int(days)*24 + int(hours)}:{minutes}' return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = [] # Clear any blank lines cleandata = list(filter(None, data.splitlines())) if jc.utils.has_data(data): for entry in cleandata: output_line = {} if entry.startswith('wtmp begins ') or entry.startswith('btmp begins ') or entry.startswith('utx.log begins '): continue entry = entry.replace('system boot', 'system_boot') entry = entry.replace('boot time', 'boot_time') entry = entry.replace(' still logged in', '- still_logged_in') entry = entry.replace(' gone - no logout', '- gone_-_no_logout') linedata = entry.split() if re.match(r'[MTWFS][ouerha][nedritnu] [JFMASOND][aepuco][nbrynlgptvc]', ' '.join(linedata[2:4])): linedata.insert(2, '-') # freebsd fix if linedata[0] == 'boot_time': linedata.insert(1, '-') linedata.insert(1, '~') output_line['user'] = linedata[0] output_line['tty'] = linedata[1] output_line['hostname'] = linedata[2] # last -F support if re.match(r'\d\d:\d\d:\d\d \d\d\d\d', ' '.join(linedata[6:8])): output_line['login'] = ' '.join(linedata[3:8]) if len(linedata) > 9 and linedata[9] != 'crash' and linedata[9] != 'down': output_line['logout'] = ' '.join(linedata[9:14]) if len(linedata) > 9 and (linedata[9] == 'crash' or linedata[9] == 'down'): output_line['logout'] = linedata[9] # add more items to the list to line up duration linedata.insert(10, '-') linedata.insert(10, '-') linedata.insert(10, '-') linedata.insert(10, '-') if len(linedata) > 14: output_line['duration'] = linedata[14].replace('(', '').replace(')', '') # normal last support else: output_line['login'] = ' '.join(linedata[3:7]) if len(linedata) > 8: output_line['logout'] = linedata[8] if len(linedata) > 9: output_line['duration'] = linedata[9].replace('(', '').replace(')', '') raw_output.append(output_line) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/ls.py000066400000000000000000000176511415226333200152550ustar00rootroot00000000000000"""jc - JSON CLI output utility `ls` and `vdir` command output parser Options supported: - `lbaR1` - `--time-style=full-iso` Note: The `-1`, `-l`, or `-b` option of `ls` should be used to correctly parse filenames that include newline characters. Since `ls` does not encode newlines in filenames when outputting to a pipe it will cause `jc` to see multiple files instead of a single file if `-1`, `-l`, or `-b` is not used. Alternatively, `vdir` can be used, which is the same as running `ls -lb`. The `epoch` calculated timestamp field is naive (i.e. based on the local time of the system the parser is run on) The `epoch_utc` calculated timestamp field is timezone-aware and is only available if the timezone field is UTC. Usage (cli): $ ls | jc --ls or $ jc ls Usage (module): import jc.parsers.ls result = jc.parsers.ls.parse(ls_command_output) Schema: [ { "filename": string, "flags": string, "links": integer, "parent": string, "owner": string, "group": string, "size": integer, "date": string, "epoch": integer, # naive timestamp if date field exists and can be converted "epoch_utc": integer # timezone aware timestamp if date field is in UTC and can be converted } ] Examples: $ ls /usr/bin | jc --ls -p [ { "filename": "apropos" }, { "filename": "arch" }, ... ] $ ls -l /usr/bin | jc --ls -p [ { "filename": "apropos", "link_to": "whatis", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 6, "date": "Aug 15 10:53" }, { "filename": "ar", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 62744, "date": "Aug 8 16:14" }, ... ] $ ls -l /usr/bin | jc --ls -p -r [ { "filename": "apropos", "link_to": "whatis", "flags": "lrwxrwxrwx.", "links": "1", "owner": "root", "group": "root", "size": "6", "date": "Aug 15 10:53" }, { "filename": "arch", "flags": "-rwxr-xr-x.", "links": "1", "owner": "root", "group": "root", "size": "33080", "date": "Aug 19 23:25" }, ... ] """ import re import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.10' description = '`ls` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'cygwin', 'aix', 'freebsd'] magic_commands = ['ls', 'vdir'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: int_list = ['links', 'size'] for key in entry: if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) if 'date' in entry: # to speed up processing only try to convert the date if it's not the default format if not re.match(r'[a-zA-Z]{3}\s{1,2}\d{1,2}\s{1,2}[0-9:]{4,5}', entry['date']): ts = jc.utils.timestamp(entry['date']) entry['epoch'] = ts.naive entry['epoch_utc'] = ts.utc return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = [] warned = False parent = '' next_is_parent = False new_section = False linedata = data.splitlines() if jc.utils.has_data(data): # Delete first line if it starts with 'total 1234' if re.match(r'total [0-9]+', linedata[0]): linedata.pop(0) # Look for parent line if glob or -R is used if not re.match(r'[-dclpsbDCMnP?]([-r][-w][-xsS]){2}([-r][-w][-xtT])[+]?', linedata[0]) \ and linedata[0].endswith(':'): parent = linedata.pop(0)[:-1] # Pop following total line if it exists if re.match(r'total [0-9]+', linedata[0]): linedata.pop(0) # Check if -l was used to parse extra data if re.match(r'[-dclpsbDCMnP?]([-r][-w][-xsS]){2}([-r][-w][-xtT])[+]?', linedata[0]): for entry in linedata: output_line = {} parsed_line = entry.split(maxsplit=8) if not re.match(r'[-dclpsbDCMnP?]([-r][-w][-xsS]){2}([-r][-w][-xtT])[+]?', entry) \ and entry.endswith(':'): parent = entry[:-1] new_section = True # fixup to remove trailing \n in previous entry raw_output[-1]['filename'] = raw_output[-1]['filename'][:-1] continue if re.match(r'total [0-9]+', entry): new_section = False continue # fix for OSX - doesn't print 'total xx' line if empty directory if new_section and entry == '': new_section = False continue # fixup for filenames with newlines if not new_section \ and not re.match(r'[-dclpsbDCMnP?]([-r][-w][-xsS]){2}([-r][-w][-xtT])[+]?', entry): raw_output[-1]['filename'] = raw_output[-1]['filename'] + '\n' + entry continue # split filenames and links if len(parsed_line) == 9: filename_field = parsed_line[8].split(' -> ') else: # in case of filenames starting with a newline character filename_field = [''] # create list of dictionaries output_line['filename'] = filename_field[0] if len(filename_field) > 1: output_line['link_to'] = filename_field[1] if parent: output_line['parent'] = parent output_line['flags'] = parsed_line[0] output_line['links'] = parsed_line[1] output_line['owner'] = parsed_line[2] output_line['group'] = parsed_line[3] output_line['size'] = parsed_line[4] output_line['date'] = ' '.join(parsed_line[5:8]) raw_output.append(output_line) else: for entry in linedata: output_line = {} if entry == '': next_is_parent = True continue if next_is_parent and entry.endswith(':'): parent = entry[:-1] next_is_parent = False continue if not quiet and next_is_parent and not entry.endswith(':') and not warned: jc.utils.warning_message(['Newline characters detected. Filenames probably corrupted. Use ls -l or -b instead.']) warned = True output_line['filename'] = entry if parent: output_line['parent'] = parent raw_output.append(output_line) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/ls_s.py000066400000000000000000000147441415226333200155770ustar00rootroot00000000000000"""jc - JSON CLI output utility `ls` and `vdir` command output streaming parser > This streaming parser outputs JSON Lines Requires the `-l` option to be used on `ls`. If there are newline characters in the filename, then make sure to use the `-b` option on `ls`. The `jc` `-qq` option can be used to ignore parsing errors. (e.g. filenames with newline characters, but `-b` was not used) The `epoch` calculated timestamp field is naive (i.e. based on the local time of the system the parser is run on) The `epoch_utc` calculated timestamp field is timezone-aware and is only available if the timezone field is UTC. Usage (cli): $ ls | jc --ls-s Usage (module): import jc.parsers.ls_s result = jc.parsers.ls_s.parse(ls_command_output.splitlines()) # result is an iterable object for item in result: # do something Schema: { "filename": string, "flags": string, "links": integer, "parent": string, "owner": string, "group": string, "size": integer, "date": string, "epoch": integer, # naive timestamp if date field exists and can be converted "epoch_utc": integer, # timezone aware timestamp if date field is in UTC and can be converted "_jc_meta": # This object only exists if using -qq or ignore_exceptions=True { "success": booean, # true if successfully parsed, false if error "error": string, # exists if "success" is false "line": string # exists if "success" is false } } Examples: $ ls -l /usr/bin | jc --ls-s {"filename":"2to3-","flags":"-rwxr-xr-x","links":4,"owner":"root","group":"wheel","size":925,"date":"Feb 22 2019"} {"filename":"2to3-2.7","link_to":"../../System/Library/Frameworks/Python.framework/Versions/2.7/bin/2to3-2.7","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":74,"date":"May 4 2019"} {"filename":"AssetCacheLocatorUtil","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":55152,"date":"May 3 2019"} ... $ ls -l /usr/bin | jc --ls-s -r {"filename":"2to3-","flags":"-rwxr-xr-x","links":"4","owner":"root","group":"wheel","size":"925","date":"Feb 22 2019"} {"filename":"2to3-2.7","link_to":"../../System/Library/Frameworks/Python.framework/Versions/2.7/bin/2to3-2.7","flags":"lrwxr-xr-x","links":"1","owner":"root","group":"wheel","size":"74","date":"May 4 2019"} {"filename":"AssetCacheLocatorUtil","flags":"-rwxr-xr-x","links":"1","owner":"root","group":"wheel","size":"55152","date":"May 3 2019"} ... """ import re import jc.utils from jc.utils import stream_success, stream_error from jc.exceptions import ParseError class info(): """Provides parser metadata (version, author, etc.)""" version = '0.6' description = '`ls` command streaming parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'cygwin', 'aix', 'freebsd'] streaming = True __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (Dictionary) raw structured data to process Returns: Dictionary. Structured data to conform to the schema. """ int_list = ['links', 'size'] for key in proc_data: if key in int_list: proc_data[key] = jc.utils.convert_to_int(proc_data[key]) if 'date' in proc_data: # to speed up processing only try to convert the date if it's not the default format if not re.match(r'[a-zA-Z]{3}\s{1,2}\d{1,2}\s{1,2}[0-9:]{4,5}', proc_data['date']): ts = jc.utils.timestamp(proc_data['date']) proc_data['epoch'] = ts.naive proc_data['epoch_utc'] = ts.utc return proc_data def parse(data, raw=False, quiet=False, ignore_exceptions=False): """ Main text parsing generator function. Returns an iterator object. Parameters: data: (iterable) line-based text data to parse (e.g. sys.stdin or str.splitlines()) raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True ignore_exceptions: (boolean) ignore parsing exceptions if True Yields: Dictionary. Raw or processed structured data. Returns: Iterator object """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.streaming_input_type_check(data) parent = '' for line in data: try: jc.utils.streaming_line_input_type_check(line) # skip line if it starts with 'total 1234' if re.match(r'total [0-9]+', line): continue # skip blank lines if line.strip() == '': continue # Look for parent line if glob or -R is used if not re.match(r'[-dclpsbDCMnP?]([-r][-w][-xsS]){2}([-r][-w][-xtT])[+]?', line) \ and line.strip().endswith(':'): parent = line.strip()[:-1] continue if not re.match(r'[-dclpsbDCMnP?]([-r][-w][-xsS]){2}([-r][-w][-xtT])[+]?', line): raise ParseError('Not ls -l data') parsed_line = line.strip().split(maxsplit=8) output_line = {} # split filenames and links if len(parsed_line) == 9: filename_field = parsed_line[8].split(' -> ') else: # in case of filenames starting with a newline character filename_field = [''] # create output object output_line['filename'] = filename_field[0] if len(filename_field) > 1: output_line['link_to'] = filename_field[1] if parent: output_line['parent'] = parent output_line['flags'] = parsed_line[0] output_line['links'] = parsed_line[1] output_line['owner'] = parsed_line[2] output_line['group'] = parsed_line[3] output_line['size'] = parsed_line[4] output_line['date'] = ' '.join(parsed_line[5:8]) yield stream_success(output_line, ignore_exceptions) if raw else stream_success(_process(output_line), ignore_exceptions) except Exception as e: yield stream_error(e, ignore_exceptions, line) jc-1.17.3/jc/parsers/lsblk.py000066400000000000000000000212521415226333200157360ustar00rootroot00000000000000"""jc - JSON CLI output utility `lsblk` command output parser Usage (cli): $ lsblk | jc --lsblk or $ jc lsblk Usage (module): import jc.parsers.lsblk result = jc.parsers.lsblk.parse(lsblk_command_output) Schema: [ { "name": string, "maj_min": string, "rm": boolean, "size": string, "ro": boolean, "type": string, "mountpoint": string, "kname": string, "fstype": string, "label": string, "uuid": string, "partlabel": string, "partuuid": string, "ra": integer, "model": string, "serial": string, "state": string, "owner": string, "group": string, "mode": string, "alignment": integer, "min_io": integer, "opt_io": integer, "phy_sec": integer, "log_sec": integer, "rota": boolean, "sched": string, "rq_size": integer, "disc_aln": integer, "disc_gran": string, "disc_max": string, "disc_zero": boolean, "wsame": string, "wwn": string, "rand": boolean, "pkname": string, "hctl": string, "tran": string, "rev": string, "vendor": string } ] Examples: $ lsblk | jc --lsblk -p [ { "name": "sda", "maj_min": "8:0", "rm": false, "size": "20G", "ro": false, "type": "disk", "mountpoint": null }, { "name": "sda1", "maj_min": "8:1", "rm": false, "size": "1G", "ro": false, "type": "part", "mountpoint": "/boot" }, ... ] $ lsblk -o +KNAME,FSTYPE,LABEL,UUID,PARTLABEL,PARTUUID,RA,MODEL,SERIAL,STATE,OWNER,GROUP,MODE,ALIGNMENT,MIN-IO,OPT-IO,PHY-SEC,LOG-SEC,ROTA,SCHED,RQ-SIZE,DISC-ALN,DISC-GRAN,DISC-MAX,DISC-ZERO,WSAME,WWN,RAND,PKNAME,HCTL,TRAN,REV,VENDOR | jc --lsblk -p [ { "name": "sda", "maj_min": "8:0", "rm": false, "size": "20G", "ro": false, "type": "disk", "mountpoint": null, "kname": "sda", "fstype": null, "label": null, "uuid": null, "partlabel": null, "partuuid": null, "ra": 4096, "model": "VMware Virtual S", "serial": null, "state": "running", "owner": "root", "group": "disk", "mode": "brw-rw----", "alignment": 0, "min_io": 512, "opt_io": 0, "phy_sec": 512, "log_sec": 512, "rota": true, "sched": "deadline", "rq_size": 128, "disc_aln": 0, "disc_gran": "0B", "disc_max": "0B", "disc_zero": false, "wsame": "32M", "wwn": null, "rand": true, "pkname": null, "hctl": "0:0:0:0", "tran": "spi", "rev": "1.0", "vendor": "VMware," }, { "name": "sda1", "maj_min": "8:1", "rm": false, "size": "1G", "ro": false, "type": "part", "mountpoint": "/boot", "kname": "sda1", "fstype": "xfs", "label": null, "uuid": "05d927bb-5875-49e3-ada1-7f46cb31c932", "partlabel": null, "partuuid": null, "ra": 4096, "model": null, "serial": null, "state": null, "owner": "root", "group": "disk", "mode": "brw-rw----", "alignment": 0, "min_io": 512, "opt_io": 0, "phy_sec": 512, "log_sec": 512, "rota": true, "sched": "deadline", "rq_size": 128, "disc_aln": 0, "disc_gran": "0B", "disc_max": "0B", "disc_zero": false, "wsame": "32M", "wwn": null, "rand": true, "pkname": "sda", "hctl": null, "tran": null, "rev": null, "vendor": null }, ... ] $ lsblk -o +KNAME,FSTYPE,LABEL,UUID,PARTLABEL,PARTUUID,RA,MODEL,SERIAL,STATE,OWNER,GROUP,MODE,ALIGNMENT,MIN-IO,OPT-IO,PHY-SEC,LOG-SEC,ROTA,SCHED,RQ-SIZE,DISC-ALN,DISC-GRAN,DISC-MAX,DISC-ZERO,WSAME,WWN,RAND,PKNAME,HCTL,TRAN,REV,VENDOR | jc --lsblk -p -r [ { "name": "sda", "maj_min": "8:0", "rm": "0", "size": "20G", "ro": "0", "type": "disk", "mountpoint": null, "kname": "sda", "fstype": null, "label": null, "uuid": null, "partlabel": null, "partuuid": null, "ra": "4096", "model": "VMware Virtual S", "serial": null, "state": "running", "owner": "root", "group": "disk", "mode": "brw-rw----", "alignment": "0", "min_io": "512", "opt_io": "0", "phy_sec": "512", "log_sec": "512", "rota": "1", "sched": "deadline", "rq_size": "128", "disc_aln": "0", "disc_gran": "0B", "disc_max": "0B", "disc_zero": "0", "wsame": "32M", "wwn": null, "rand": "1", "pkname": null, "hctl": "0:0:0:0", "tran": "spi", "rev": "1.0", "vendor": "VMware," }, { "name": "sda1", "maj_min": "8:1", "rm": "0", "size": "1G", "ro": "0", "type": "part", "mountpoint": "/boot", "kname": "sda1", "fstype": "xfs", "label": null, "uuid": "05d927bb-5875-49e3-ada1-7f46cb31c932", "partlabel": null, "partuuid": null, "ra": "4096", "model": null, "serial": null, "state": null, "owner": "root", "group": "disk", "mode": "brw-rw----", "alignment": "0", "min_io": "512", "opt_io": "0", "phy_sec": "512", "log_sec": "512", "rota": "1", "sched": "deadline", "rq_size": "128", "disc_aln": "0", "disc_gran": "0B", "disc_max": "0B", "disc_zero": "0", "wsame": "32M", "wwn": null, "rand": "1", "pkname": "sda", "hctl": null, "tran": null, "rev": null, "vendor": null }, ... ] """ import jc.utils import jc.parsers.universal class info(): """Provides parser metadata (version, author, etc.)""" version = '1.8' description = '`lsblk` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux'] magic_commands = ['lsblk'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: # boolean and integer changes bool_list = ['rm', 'ro', 'rota', 'disc_zero', 'rand'] int_list = ['ra', 'alignment', 'min_io', 'opt_io', 'phy_sec', 'log_sec', 'rq_size', 'disc_aln'] for key in entry: if key in bool_list: entry[key] = jc.utils.convert_to_bool(entry[key]) if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) # Clear any blank lines cleandata = list(filter(None, data.splitlines())) raw_output = [] if jc.utils.has_data(data): cleandata = data.splitlines() cleandata[0] = cleandata[0].lower() cleandata[0] = cleandata[0].replace(':', '_') cleandata[0] = cleandata[0].replace('-', '_') raw_output = jc.parsers.universal.sparse_table_parse(cleandata) # clean up non-ascii characters, if any for entry in raw_output: entry['name'] = entry['name'].encode('ascii', errors='ignore').decode() if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/lsmod.py000066400000000000000000000075151415226333200157530ustar00rootroot00000000000000"""jc - JSON CLI output utility `lsmod` command output parser Usage (cli): $ lsmod | jc --lsmod or $ jc lsmod Usage (module): import jc.parsers.lsmod result = jc.parsers.lsmod.parse(lsmod_command_output) Schema: [ { "module": string, "size": integer, "used": integer, "by": [ string ] } ] Examples: $ lsmod | jc --lsmod -p [ ... { "module": "nf_nat", "size": 26583, "used": 3, "by": [ "nf_nat_ipv4", "nf_nat_ipv6", "nf_nat_masquerade_ipv4" ] }, { "module": "iptable_mangle", "size": 12695, "used": 1 }, { "module": "iptable_security", "size": 12705, "used": 1 }, { "module": "iptable_raw", "size": 12678, "used": 1 }, { "module": "nf_conntrack", "size": 139224, "used": 7, "by": [ "nf_nat", "nf_nat_ipv4", "nf_nat_ipv6", "xt_conntrack", "nf_nat_masquerade_ipv4", "nf_conntrack_ipv4", "nf_conntrack_ipv6" ] }, ... ] $ lsmod | jc --lsmod -p -r [ ... { "module": "nf_conntrack", "size": "139224", "used": "7", "by": [ "nf_nat", "nf_nat_ipv4", "nf_nat_ipv6", "xt_conntrack", "nf_nat_masquerade_ipv4", "nf_conntrack_ipv4", "nf_conntrack_ipv6" ] }, { "module": "ip_set", "size": "45799", "used": "0" }, { "module": "nfnetlink", "size": "14519", "used": "1", "by": [ "ip_set" ] }, { "module": "ebtable_filter", "size": "12827", "used": "1" }, { "module": "ebtables", "size": "35009", "used": "2", "by": [ "ebtable_nat", "ebtable_filter" ] }, ... ] """ import jc.utils import jc.parsers.universal class info(): """Provides parser metadata (version, author, etc.)""" version = '1.6' description = '`lsmod` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux'] magic_commands = ['lsmod'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: int_list = ['size', 'used'] for key in entry: if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) cleandata = data.splitlines() raw_output = [] if jc.utils.has_data(data): cleandata[0] = cleandata[0].lower() raw_output = jc.parsers.universal.simple_table_parse(cleandata) for mod in raw_output: if 'by' in mod: mod['by'] = mod['by'].split(',') if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/lsof.py000066400000000000000000000076431415226333200156020ustar00rootroot00000000000000"""jc - JSON CLI output utility `lsof` command output parser Usage (cli): $ lsof | jc --lsof or $ jc lsof Usage (module): import jc.parsers.lsof result = jc.parsers.lsof.parse(lsof_command_output) Schema: [ { "command": string, "pid": integer, "tid": integer, "user": string, "fd": string, "type": string, "device": string, "size_off": integer, "node": integer, "name": string } ] Examples: $ sudo lsof | jc --lsof -p [ { "command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/" }, { "command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/" }, { "command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 1624520, "node": 50360451, "name": "/usr/lib/systemd/systemd" }, ... ] $ sudo lsof | jc --lsof -p -r [ { "command": "systemd", "pid": "1", "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": "4096", "node": "2", "name": "/" }, { "command": "systemd", "pid": "1", "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": "4096", "node": "2", "name": "/" }, { "command": "systemd", "pid": "1", "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": "1595792", "node": "668802", "name": "/lib/systemd/systemd" }, ... ] """ import jc.utils import jc.parsers.universal class info(): """Provides parser metadata (version, author, etc.)""" version = '1.5' description = '`lsof` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux'] magic_commands = ['lsof'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: int_list = ['pid', 'tid', 'size_off', 'node'] for key in entry: if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = [] # Clear any blank lines cleandata = list(filter(None, data.splitlines())) if jc.utils.has_data(data): cleandata[0] = cleandata[0].lower() cleandata[0] = cleandata[0].replace('/', '_') raw_output = jc.parsers.universal.sparse_table_parse(cleandata) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/lsusb.py000066400000000000000000001065401415226333200157630ustar00rootroot00000000000000"""jc - JSON CLI output utility `lsusb` command output parser Supports the `-v` option or no options. Usage (cli): $ lsusb -v | jc --lsusb or $ jc lsusb -v Usage (module): import jc.parsers.lsusb result = jc.parsers.lsusb.parse(lsusb_command_output) Schema: Note: object keynames are assigned directly from the lsusb output. If there are duplicate names in a section, only the last one is converted. [ { "bus": string, "device": string, "id": string, "description": string, "device_descriptor": { "": { "value": string, "description": string, "attributes": [ string ] }, "configuration_descriptor": { "": { "value": string, "description": string, "attributes": [ string ] }, "interface_association": { "": { "value": string, "description": string, "attributes": [ string ] } }, "interface_descriptors": [ { "": { "value": string, "description": string, "attributes": [ string ] }, "cdc_header": { "": { "value": string, "description": string, "attributes": [ string ] } }, "cdc_call_management": { "": { "value": string, "description": string, "attributes": [ string ] } }, "cdc_acm": { "": { "value": string, "description": string, "attributes": [ string ] } }, "cdc_union": { "": { "value": string, "description": string, "attributes": [ string ] } }, "endpoint_descriptors": [ { "": { "value": string, "description": string, "attributes": [ string ] } } ] } ] } }, "hub_descriptor": { "": { "value": string, "description": string, "attributes": [ string, ] }, "hub_port_status": { "": { "value": string, "attributes": [ string ] } } }, "device_status": { "value": string, "description": string } } ] Examples: $ lsusb -v | jc --lsusb -p [ { "bus": "002", "device": "001", "id": "1d6b:0001", "description": "Linux Foundation 1.1 root hub", "device_descriptor": { "bLength": { "value": "18" }, "bDescriptorType": { "value": "1" }, "bcdUSB": { "value": "1.10" }, ... "bNumConfigurations": { "value": "1" }, "configuration_descriptor": { "bLength": { "value": "9" }, ... "iConfiguration": { "value": "0" }, "bmAttributes": { "value": "0xe0", "attributes": [ "Self Powered", "Remote Wakeup" ] }, "MaxPower": { "description": "0mA" }, "interface_descriptors": [ { "bLength": { "value": "9" }, ... "bInterfaceProtocol": { "value": "0", "description": "Full speed (or root) hub" }, "iInterface": { "value": "0" }, "endpoint_descriptors": [ { "bLength": { "value": "7" }, ... "bmAttributes": { "value": "3", "attributes": [ "Transfer Type Interrupt", "Synch Type None", "Usage Type Data" ] }, "wMaxPacketSize": { "value": "0x0002", "description": "1x 2 bytes" }, "bInterval": { "value": "255" } } ] } ] } }, "hub_descriptor": { "bLength": { "value": "9" }, ... "wHubCharacteristic": { "value": "0x000a", "attributes": [ "No power switching (usb 1.0)", "Per-port overcurrent protection" ] }, ... "hub_port_status": { "Port 1": { "value": "0000.0103", "attributes": [ "power", "enable", "connect" ] }, "Port 2": { "value": "0000.0103", "attributes": [ "power", "enable", "connect" ] } } }, "device_status": { "value": "0x0001", "description": "Self Powered" } } ] """ import jc.utils from jc.parsers.universal import sparse_table_parse from jc.exceptions import ParseError class info(): """Provides parser metadata (version, author, etc.)""" version = '1.1' description = '`lsusb` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' compatible = ['linux'] magic_commands = ['lsusb'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured to conform to the schema. """ # no further processing return proc_data class _NestedDict(dict): # for ease of creating/updating nested dictionary structures # https://stackoverflow.com/questions/5369723/multi-level-defaultdict-with-variable-depth # https://ohuiginn.net/mt/2010/07/nested_dictionaries_in_python.html def __getitem__(self, key): if key in self: return self.get(key) return self.setdefault(key, _NestedDict()) class _LsUsb(): def __init__(self): self.raw_output = [] self.output_line = _NestedDict() self.section = '' self.old_section = '' self.bus_idx = -1 self.interface_descriptor_idx = -1 self.endpoint_descriptor_idx = -1 self.last_item = '' self.last_indent = 0 self.attribute_value = False self.bus_list = [] self.device_descriptor_list = [] self.configuration_descriptor_list = [] self.interface_association_list = [] self.interface_descriptor_list = [] self.interface_descriptor_attribute_list = [] self.cdc_header_list = [] self.cdc_call_management_list = [] self.cdc_acm_list = [] self.cdc_union_list = [] self.endpoint_descriptor_list = [] self.hid_device_descriptor_list = [] self.report_descriptors_list = [] self.hub_descriptor_list = [] self.hub_port_status_list = [] self.device_status_list = [] @staticmethod def _count_indent(line): indent = 0 for char in line: if char == ' ': indent += 1 continue break return indent def _add_attributes(self, line): indent = self._count_indent(line) # determine whether this is a top-level value item or lower-level attribute if indent > self.last_indent and self.old_section == self.section: self.attribute_value = True elif indent == self.last_indent and self.attribute_value and self.old_section == self.section: self.attribute_value = True else: self.attribute_value = False # section_header is formatted with the correct spacing to be used with # jc.parsers.universal.sparse_table_parse(). Pad end of string to be at least len of 25 section_header = 'key val description' temp_obj = [section_header, line.strip() + (' ' * 25)] temp_obj = sparse_table_parse(temp_obj) temp_obj = temp_obj[0] line_obj = { temp_obj['key']: { 'value': temp_obj['val'], 'description': temp_obj['description'], '_state': { 'attribute_value': self.attribute_value, 'last_item': self.last_item, 'bus_idx': self.bus_idx, 'interface_descriptor_idx': self.interface_descriptor_idx, 'endpoint_descriptor_idx': self.endpoint_descriptor_idx } } } if line_obj[temp_obj['key']]['value'] is None: del line_obj[temp_obj['key']]['value'] if line_obj[temp_obj['key']]['description'] is None: del line_obj[temp_obj['key']]['description'] self.old_section = self.section self.last_indent = indent if not self.attribute_value: self.last_item = temp_obj['key'] return line_obj def _add_hub_port_status_attributes(self, line): # Port 1: 0000.0103 power enable connect first_split = line.split(': ', maxsplit=1) port_field = first_split[0].strip() second_split = first_split[1].split(maxsplit=1) port_val = second_split[0] attributes = second_split[1].split() return { port_field: { 'value': port_val, 'attributes': attributes, '_state': { 'bus_idx': self.bus_idx } } } def _add_device_status_attributes(self, line): return { 'description': line.strip(), '_state': { 'bus_idx': self.bus_idx } } def _set_sections(self, line): # ignore blank lines if not line: self.section = '' self.attribute_value = False return True # bus information is on the same line so need to extract data immediately and set indexes if line.startswith('Bus '): self.section = 'bus' self.bus_idx += 1 self.interface_descriptor_idx = -1 self.endpoint_descriptor_idx = -1 self.attribute_value = False line_split = line.strip().split(maxsplit=6) self.bus_list.append( { 'bus': line_split[1], 'device': line_split[3][:-1], 'id': line_split[5], 'description': (line_split[6:7] or [None])[0], # way to get a list item or None '_state': { 'bus_idx': self.bus_idx } } ) return True # This section is a list, so need to update indexes if line.startswith(' Interface Descriptor:'): self.section = 'interface_descriptor' self.interface_descriptor_idx += 1 self.endpoint_descriptor_idx = -1 self.attribute_value = False return True # This section is a list, so need to update the index if line.startswith(' Endpoint Descriptor:'): self.section = 'endpoint_descriptor' self.endpoint_descriptor_idx += 1 self.attribute_value = False return True # some device status information is displayed on the initial line so need to extract immediately if line.startswith('Device Status:'): self.section = 'device_status' self.attribute_value = False line_split = line.strip().split(':', maxsplit=1) self.device_status_list.append( { 'value': line_split[1].strip(), '_state': { 'bus_idx': self.bus_idx } } ) return True # set the rest of the sections string_section_map = { 'Device Descriptor:': 'device_descriptor', ' Configuration Descriptor:': 'configuration_descriptor', ' Interface Association:': 'interface_association', ' CDC Header:': 'cdc_header', ' CDC Call Management:': 'cdc_call_management', ' CDC ACM:': 'cdc_acm', ' CDC Union:': 'cdc_union', ' HID Device Descriptor:': 'hid_device_descriptor', ' Report Descriptors:': 'report_descriptors', 'Hub Descriptor:': 'hub_descriptor', ' Hub Port Status:': 'hub_port_status' } for sec_string, section_val in string_section_map.items(): if line.startswith(sec_string): self.section = section_val self.attribute_value = False return True return False def _populate_lists(self, line): section_list_map = { 'device_descriptor': self.device_descriptor_list, 'configuration_descriptor': self.configuration_descriptor_list, 'interface_association': self.interface_association_list, 'interface_descriptor': self.interface_descriptor_list, 'cdc_header': self.cdc_header_list, 'cdc_call_management': self.cdc_call_management_list, 'cdc_acm': self.cdc_acm_list, 'cdc_union': self.cdc_union_list, 'hid_device_descriptor': self.hid_device_descriptor_list, 'report_descriptors': self.report_descriptors_list, 'endpoint_descriptor': self.endpoint_descriptor_list, 'hub_descriptor': self.hub_descriptor_list } for sec in section_list_map: if line.startswith(' ') and self.section == sec: section_list_map[self.section].append(self._add_attributes(line)) return True # special handling of these sections if line.startswith(' ') and self.section == 'hub_port_status': self.hub_port_status_list.append(self._add_hub_port_status_attributes(line)) return True if line.startswith(' ') and self.section == 'device_status': self.device_status_list.append(self._add_device_status_attributes(line)) return True return False def _populate_schema(self): """ Schema: = {} ['device_descriptor'] = {} ['device_descriptor']['configuration_descriptor'] = {} ['device_descriptor']['configuration_descriptor']['interface_association'] = {} ['device_descriptor']['configuration_descriptor']['interface_descriptors'] = [] ['device_descriptor']['configuration_descriptor']['interface_descriptors'][0] = {} ['device_descriptor']['configuration_descriptor']['interface_descriptors'][0]['cdc_header'] = {} ['device_descriptor']['configuration_descriptor']['interface_descriptors'][0]['cdc_call_management'] = {} ['device_descriptor']['configuration_descriptor']['interface_descriptors'][0]['cdc_acm'] = {} ['device_descriptor']['configuration_descriptor']['interface_descriptors'][0]['cdc_union'] = {} ['device_descriptor']['configuration_descriptor']['interface_descriptors'][0]['hid_device_descriptor'] = {} ['device_descriptor']['configuration_descriptor']['interface_descriptors'][0]['endpoint_descriptors'] = [] ['device_descriptor']['configuration_descriptor']['interface_descriptors'][0]['endpoint_descriptors'][0] = {} ['hub_descriptor'] = {} ['hub_descriptor']['hub_port_status'] = {} ['device_status'] = {} """ for idx, item in enumerate(self.bus_list): if self.output_line: self.raw_output.append(self.output_line) self.output_line = _NestedDict() del item['_state'] self.output_line.update(item) for dd in self.device_descriptor_list: keyname = tuple(dd.keys())[0] if '_state' in dd[keyname] and dd[keyname]['_state']['bus_idx'] == idx: # is this a top level value or an attribute? if dd[keyname]['_state']['attribute_value']: last_item = dd[keyname]['_state']['last_item'] if 'attributes' not in self.output_line['device_descriptor'][last_item]: self.output_line['device_descriptor'][last_item]['attributes'] = [] this_attribute = f'{keyname} {dd[keyname].get("value", "")} {dd[keyname].get("description", "")}'.strip() self.output_line['device_descriptor'][last_item]['attributes'].append(this_attribute) continue self.output_line['device_descriptor'].update(dd) del self.output_line['device_descriptor'][keyname]['_state'] for cd in self.configuration_descriptor_list: keyname = tuple(cd.keys())[0] if '_state' in cd[keyname] and cd[keyname]['_state']['bus_idx'] == idx: # is this a top level value or an attribute? if cd[keyname]['_state']['attribute_value']: last_item = cd[keyname]['_state']['last_item'] if 'attributes' not in self.output_line['device_descriptor']['configuration_descriptor'][last_item]: self.output_line['device_descriptor']['configuration_descriptor'][last_item]['attributes'] = [] this_attribute = f'{keyname} {cd[keyname].get("value", "")} {cd[keyname].get("description", "")}'.strip() self.output_line['device_descriptor']['configuration_descriptor'][last_item]['attributes'].append(this_attribute) continue self.output_line['device_descriptor']['configuration_descriptor'].update(cd) del self.output_line['device_descriptor']['configuration_descriptor'][keyname]['_state'] for ia in self.interface_association_list: keyname = tuple(ia.keys())[0] if '_state' in ia[keyname] and ia[keyname]['_state']['bus_idx'] == idx: # is this a top level value or an attribute? if ia[keyname]['_state']['attribute_value']: last_item = ia[keyname]['_state']['last_item'] if 'attributes' not in self.output_line['device_descriptor']['configuration_descriptor']['interface_association'][last_item]: self.output_line['device_descriptor']['configuration_descriptor']['interface_association'][last_item]['attributes'] = [] this_attribute = f'{keyname} {ia[keyname].get("value", "")} {ia[keyname].get("description", "")}'.strip() self.output_line['device_descriptor']['configuration_descriptor']['interface_association'][last_item]['attributes'].append(this_attribute) continue self.output_line['device_descriptor']['configuration_descriptor']['interface_association'].update(ia) del self.output_line['device_descriptor']['configuration_descriptor']['interface_association'][keyname]['_state'] # add interface_descriptor key if it doesn't exist and there are entries for this bus for iface_attrs in self.interface_descriptor_list: keyname = tuple(iface_attrs.keys())[0] if '_state' in iface_attrs[keyname] and iface_attrs[keyname]['_state']['bus_idx'] == idx: self.output_line['device_descriptor']['configuration_descriptor']['interface_descriptors'] = [] # find max index for this bus idx, then iterate over that range i_desc_iters = -1 for iface_attrs in self.interface_descriptor_list: keyname = tuple(iface_attrs.keys())[0] if '_state' in iface_attrs[keyname] and iface_attrs[keyname]['_state']['bus_idx'] == idx: i_desc_iters = iface_attrs[keyname]['_state']['interface_descriptor_idx'] # create the interface descriptor object if i_desc_iters > -1: for iface_idx in range(i_desc_iters + 1): i_desc_obj = _NestedDict() for iface_attrs in self.interface_descriptor_list: keyname = tuple(iface_attrs.keys())[0] if '_state' in iface_attrs[keyname] and iface_attrs[keyname]['_state']['bus_idx'] == idx and iface_attrs[keyname]['_state']['interface_descriptor_idx'] == iface_idx: # is this a top level value or an attribute? if iface_attrs[keyname]['_state']['attribute_value']: last_item = iface_attrs[keyname]['_state']['last_item'] if 'attributes' not in i_desc_obj[last_item]: i_desc_obj[last_item]['attributes'] = [] this_attribute = f'{keyname} {iface_attrs[keyname].get("value", "")} {iface_attrs[keyname].get("description", "")}'.strip() i_desc_obj[last_item]['attributes'].append(this_attribute) continue del iface_attrs[keyname]['_state'] i_desc_obj.update(iface_attrs) # add other nodes to the object (cdc_header, endpoint descriptors, etc.) for ch in self.cdc_header_list: keyname = tuple(ch.keys())[0] if '_state' in ch[keyname] and ch[keyname]['_state']['bus_idx'] == idx and ch[keyname]['_state']['interface_descriptor_idx'] == iface_idx: # is this a top level value or an attribute? if ch[keyname]['_state']['attribute_value']: last_item = ch[keyname]['_state']['last_item'] if 'attributes' not in i_desc_obj['cdc_header'][last_item]: i_desc_obj['cdc_header'][last_item]['attributes'] = [] this_attribute = f'{keyname} {ch[keyname].get("value", "")} {ch[keyname].get("description", "")}'.strip() i_desc_obj['cdc_header'][last_item]['attributes'].append(this_attribute) continue i_desc_obj['cdc_header'].update(ch) del i_desc_obj['cdc_header'][keyname]['_state'] for ccm in self.cdc_call_management_list: keyname = tuple(ccm.keys())[0] if '_state' in ccm[keyname] and ccm[keyname]['_state']['bus_idx'] == idx and ccm[keyname]['_state']['interface_descriptor_idx'] == iface_idx: # is this a top level value or an attribute? if ccm[keyname]['_state']['attribute_value']: last_item = ccm[keyname]['_state']['last_item'] if 'attributes' not in i_desc_obj['cdc_call_management'][last_item]: i_desc_obj['cdc_call_management'][last_item]['attributes'] = [] this_attribute = f'{keyname} {ccm[keyname].get("value", "")} {ccm[keyname].get("description", "")}'.strip() i_desc_obj['cdc_call_management'][last_item]['attributes'].append(this_attribute) continue i_desc_obj['cdc_call_management'].update(ccm) del i_desc_obj['cdc_call_management'][keyname]['_state'] for ca in self.cdc_acm_list: keyname = tuple(ca.keys())[0] if '_state' in ca[keyname] and ca[keyname]['_state']['bus_idx'] == idx and ca[keyname]['_state']['interface_descriptor_idx'] == iface_idx: # is this a top level value or an attribute? if ca[keyname]['_state']['attribute_value']: last_item = ca[keyname]['_state']['last_item'] if 'attributes' not in i_desc_obj['cdc_acm'][last_item]: i_desc_obj['cdc_acm'][last_item]['attributes'] = [] this_attribute = f'{keyname} {ca[keyname].get("value", "")} {ca[keyname].get("description", "")}'.strip() i_desc_obj['cdc_acm'][last_item]['attributes'].append(this_attribute) continue i_desc_obj['cdc_acm'].update(ca) del i_desc_obj['cdc_acm'][keyname]['_state'] for cu in self.cdc_union_list: keyname = tuple(cu.keys())[0] if '_state' in cu[keyname] and cu[keyname]['_state']['bus_idx'] == idx and cu[keyname]['_state']['interface_descriptor_idx'] == iface_idx: # is this a top level value or an attribute? if cu[keyname]['_state']['attribute_value']: last_item = cu[keyname]['_state']['last_item'] if 'attributes' not in i_desc_obj['cdc_union'][last_item]: i_desc_obj['cdc_union'][last_item]['attributes'] = [] this_attribute = f'{keyname} {cu[keyname].get("value", "")} {cu[keyname].get("description", "")}'.strip() i_desc_obj['cdc_union'][last_item]['attributes'].append(this_attribute) continue i_desc_obj['cdc_union'].update(cu) del i_desc_obj['cdc_union'][keyname]['_state'] for hidd in self.hid_device_descriptor_list: keyname = tuple(hidd.keys())[0] if '_state' in hidd[keyname] and hidd[keyname]['_state']['bus_idx'] == idx and hidd[keyname]['_state']['interface_descriptor_idx'] == iface_idx: # is this a top level value or an attribute? if hidd[keyname]['_state']['attribute_value']: last_item = hidd[keyname]['_state']['last_item'] if 'attributes' not in i_desc_obj['hid_device_descriptor'][last_item]: i_desc_obj['hid_device_descriptor'][last_item]['attributes'] = [] this_attribute = f'{keyname} {hidd[keyname].get("value", "")} {hidd[keyname].get("description", "")}'.strip() i_desc_obj['hid_device_descriptor'][last_item]['attributes'].append(this_attribute) continue i_desc_obj['hid_device_descriptor'].update(hidd) del i_desc_obj['hid_device_descriptor'][keyname]['_state'] # Not Implemented: Report Descriptors (need more samples) # for rd in self.report_descriptors_list: # keyname = tuple(rd.keys())[0] # if '_state' in rd[keyname] and rd[keyname]['_state']['bus_idx'] == idx and rd[keyname]['_state']['interface_descriptor_idx'] == iface_idx: # i_desc_obj['hid_device_descriptor']['report_descriptors'].update(rd) # del i_desc_obj['hid_device_descriptor']['report_descriptors'][keyname]['_state'] # add endpoint_descriptor key if it doesn't exist and there are entries for this interface_descriptor for endpoint_attrs in self.endpoint_descriptor_list: keyname = tuple(endpoint_attrs.keys())[0] if '_state' in endpoint_attrs[keyname] and endpoint_attrs[keyname]['_state']['bus_idx'] == idx and endpoint_attrs[keyname]['_state']['interface_descriptor_idx'] == iface_idx: i_desc_obj['endpoint_descriptors'] = [] # find max index for this endpoint_descriptor idx, then iterate over that range e_desc_iters = -1 for endpoint_attrs in self.endpoint_descriptor_list: keyname = tuple(endpoint_attrs.keys())[0] if '_state' in endpoint_attrs[keyname] and endpoint_attrs[keyname]['_state']['bus_idx'] == idx and endpoint_attrs[keyname]['_state']['interface_descriptor_idx'] == iface_idx: e_desc_iters = endpoint_attrs[keyname]['_state']['endpoint_descriptor_idx'] # create the endpoint descriptor object if e_desc_iters > -1: for endpoint_idx in range(e_desc_iters + 1): e_desc_obj = {} for endpoint_attrs in self.endpoint_descriptor_list: keyname = tuple(endpoint_attrs.keys())[0] if '_state' in endpoint_attrs[keyname] and endpoint_attrs[keyname]['_state']['bus_idx'] == idx and endpoint_attrs[keyname]['_state']['interface_descriptor_idx'] == iface_idx and endpoint_attrs[keyname]['_state']['endpoint_descriptor_idx'] == endpoint_idx: # is this a top level value or an attribute? if endpoint_attrs[keyname]['_state']['attribute_value']: last_item = endpoint_attrs[keyname]['_state']['last_item'] if 'attributes' not in e_desc_obj[last_item]: e_desc_obj[last_item]['attributes'] = [] this_attribute = f'{keyname} {endpoint_attrs[keyname].get("value", "")} {endpoint_attrs[keyname].get("description", "")}'.strip() e_desc_obj[last_item]['attributes'].append(this_attribute) continue e_desc_obj.update(endpoint_attrs) del endpoint_attrs[keyname]['_state'] i_desc_obj['endpoint_descriptors'].append(e_desc_obj) # add the object to the list of interface descriptors self.output_line['device_descriptor']['configuration_descriptor']['interface_descriptors'].append(i_desc_obj) for hd in self.hub_descriptor_list: keyname = tuple(hd.keys())[0] if '_state' in hd[keyname] and hd[keyname]['_state']['bus_idx'] == idx: # is this a top level value or an attribute? if hd[keyname]['_state']['attribute_value']: last_item = hd[keyname]['_state']['last_item'] if 'attributes' not in self.output_line['hub_descriptor'][last_item]: self.output_line['hub_descriptor'][last_item]['attributes'] = [] this_attribute = f'{keyname} {hd[keyname].get("value", "")} {hd[keyname].get("description", "")}'.strip() self.output_line['hub_descriptor'][last_item]['attributes'].append(this_attribute) continue self.output_line['hub_descriptor'].update(hd) del self.output_line['hub_descriptor'][keyname]['_state'] for hps in self.hub_port_status_list: keyname = tuple(hps.keys())[0] if '_state' in hps[keyname] and hps[keyname]['_state']['bus_idx'] == idx: self.output_line['hub_descriptor']['hub_port_status'].update(hps) del self.output_line['hub_descriptor']['hub_port_status'][keyname]['_state'] for ds in self.device_status_list: if '_state' in ds and ds['_state']['bus_idx'] == idx: self.output_line['device_status'].update(ds) del self.output_line['device_status']['_state'] def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) lsusb = _LsUsb() if jc.utils.has_data(data): for line in data.splitlines(): # only -v option or no options are supported if line.startswith('/'): raise ParseError('Only `lsusb` or `lsusb -v` are supported.') # sections if lsusb._set_sections(line): continue # create section lists and schema if lsusb._populate_lists(line): continue # populate the schema lsusb._populate_schema() # add any final output object if it exists and return the raw_output list if lsusb.output_line: lsusb.raw_output.append(lsusb.output_line) return lsusb.raw_output if raw else _process(lsusb.raw_output) jc-1.17.3/jc/parsers/mount.py000066400000000000000000000074521415226333200157770ustar00rootroot00000000000000"""jc - JSON CLI output utility `mount` command output parser Usage (cli): $ mount | jc --mount or $ jc mount Usage (module): import jc.parsers.mount result = jc.parsers.mount.parse(mount_command_output) Schema: [ { "filesystem": string, "mount_point": string, "type": string, "access": [ string ] } ] Example: $ mount | jc --mount -p [ { "filesystem": "sysfs", "mount_point": "/sys", "type": "sysfs", "access": [ "rw", "nosuid", "nodev", "noexec", "relatime" ] }, { "filesystem": "proc", "mount_point": "/proc", "type": "proc", "access": [ "rw", "nosuid", "nodev", "noexec", "relatime" ] }, { "filesystem": "udev", "mount_point": "/dev", "type": "devtmpfs", "access": [ "rw", "nosuid", "relatime", "size=977500k", "nr_inodes=244375", "mode=755" ] }, ... ] """ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.7' description = '`mount` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'freebsd'] magic_commands = ['mount'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ # nothing to process return proc_data def _osx_parse(data): output = [] for entry in data: output_line = {} filesystem = entry.split(' on ') filesystem = filesystem[0] output_line['filesystem'] = filesystem mount_point = entry.split(' on ') mount_point = mount_point[1].split(' (') mount_point = mount_point[0] output_line['mount_point'] = mount_point options = entry.split('(', maxsplit=1) options = options[1].rstrip(')') options = options.split(', ') output_line['options'] = options output.append(output_line) return output def _linux_parse(data): output = [] for entry in data: output_line = {} parsed_line = entry.split() output_line['filesystem'] = parsed_line[0] output_line['mount_point'] = parsed_line[2] output_line['type'] = parsed_line[4] options = parsed_line[5].lstrip('(').rstrip(')').split(',') output_line['options'] = options output.append(output_line) return output def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) # Clear any blank lines cleandata = list(filter(None, data.splitlines())) raw_output = [] if jc.utils.has_data(data): # check for OSX output if ' type ' not in cleandata[0]: raw_output = _osx_parse(cleandata) else: raw_output = _linux_parse(cleandata) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/netstat.py000066400000000000000000000326651415226333200163230ustar00rootroot00000000000000"""jc - JSON CLI output utility `netstat` command output parser Caveats: - Use of multiple `l` options is not supported on OSX (e.g. `netstat -rlll`) - Use of the `A` option is not supported on OSX when using the `r` option (e.g. `netstat -rA`) Usage (cli): $ netstat | jc --netstat or $ jc netstat Usage (module): import jc.parsers.netstat result = jc.parsers.netstat.parse(netstat_command_output) Schema: [ { "proto": string, "recv_q": integer, "send_q": integer, "transport_protocol" string, "network_protocol": string, "local_address": string, "local_port": string, "local_port_num": integer, "foreign_address": string, "foreign_port": string, "foreign_port_num": integer, "state": string, "program_name": string, "pid": integer, "user": string, "security_context": string, "refcnt": integer, "flags": string, "type": string, "inode": integer, "path": string, "kind": string, "address": string, "unix_inode": string, "conn": string, "refs": string, "nextref": string, "name": string, "unit": integer, "vendor": integer, "class": integer, "subcla": integer, "unix_flags": integer, "pcbcount": integer, "rcvbuf": integer, "sndbuf": integer, "rxbytes": integer, "txbytes": integer, "destination": string, "gateway": string, "route_flags": string, "route_flags_pretty": [ string, ] "route_refs": integer, "use": integer, "mtu": integer, "expire": string, "genmask": string, "mss": integer, "window": integer, "irtt": integer, "iface": string, "metric": integer, "network": string, "address": string, "ipkts": integer, # - = null "ierrs": integer, # - = null "idrop": integer, # - = null "opkts": integer, # - = null "oerrs": integer, # - = null "coll": integer, # - = null "rx_ok": integer, "rx_err": integer, "rx_drp": integer, "rx_ovr": integer, "tx_ok": integer, "tx_err": integer, "tx_drp": integer, "tx_ovr": integer, "flg": string, "ibytes": integer, "obytes": integer, "r_mbuf": integer, "s_mbuf": integer, "r_clus": integer, "s_clus": integer, "r_hiwa": integer, "s_hiwa": integer, "r_lowa": integer, "s_lowa": integer, "r_bcnt": integer, "s_bcnt": integer, "r_bmax": integer, "s_bmax": integer, "rexmit": integer, "ooorcv": integer, "0_win": integer, "rexmt": float, "persist": float, "keep": float, "2msl": float, "delack": float, "rcvtime": float, } ] Examples: # netstat -apee | jc --netstat -p [ { "proto": "tcp", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "0.0.0.0", "state": "LISTEN", "user": "systemd-resolve", "inode": 26958, "program_name": "systemd-resolve", "kind": "network", "pid": 887, "local_port": "domain", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv4" }, { "proto": "tcp", "recv_q": 0, "send_q": 0, "local_address": "0.0.0.0", "foreign_address": "0.0.0.0", "state": "LISTEN", "user": "root", "inode": 30499, "program_name": "sshd", "kind": "network", "pid": 1186, "local_port": "ssh", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv4" }, { "proto": "tcp", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "localhost", "state": "ESTABLISHED", "user": "root", "inode": 46829, "program_name": "sshd: root", "kind": "network", "pid": 2242, "local_port": "ssh", "foreign_port": "52186", "transport_protocol": "tcp", "network_protocol": "ipv4", "foreign_port_num": 52186 }, { "proto": "tcp", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "localhost", "state": "ESTABLISHED", "user": "root", "inode": 46828, "program_name": "ssh", "kind": "network", "pid": 2241, "local_port": "52186", "foreign_port": "ssh", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 52186 }, { "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "[::]", "foreign_address": "[::]", "state": "LISTEN", "user": "root", "inode": 30510, "program_name": "sshd", "kind": "network", "pid": 1186, "local_port": "ssh", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv6" }, { "proto": "udp", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "0.0.0.0", "state": null, "user": "systemd-resolve", "inode": 26957, "program_name": "systemd-resolve", "kind": "network", "pid": 887, "local_port": "domain", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4" }, { "proto": "raw6", "recv_q": 0, "send_q": 0, "local_address": "[::]", "foreign_address": "[::]", "state": "7", "user": "systemd-network", "inode": 27001, "program_name": "systemd-network", "kind": "network", "pid": 867, "local_port": "ipv6-icmp", "foreign_port": "*", "transport_protocol": null, "network_protocol": "ipv6" }, { "proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 33322, "program_name": "systemd", "path": "/run/user/1000/systemd/notify", "kind": "socket", "pid": 1607 }, { "proto": "unix", "refcnt": 2, "flags": "ACC", "type": "SEQPACKET", "state": "LISTENING", "inode": 20835, "program_name": "init", "path": "/run/udev/control", "kind": "socket", "pid": 1 }, ... ] $ netstat -r | jc --netstat -p [ { "destination": "default", "gateway": "gateway", "genmask": "0.0.0.0", "route_flags": "UG", "mss": 0, "window": 0, "irtt": 0, "iface": "ens33", "kind": "route", "route_flags_pretty": [ "UP", "GATEWAY" ] }, { "destination": "172.17.0.0", "gateway": "0.0.0.0", "genmask": "255.255.0.0", "route_flags": "U", "mss": 0, "window": 0, "irtt": 0, "iface": "docker0", "kind": "route", "route_flags_pretty": [ "UP" ] }, { "destination": "192.168.71.0", "gateway": "0.0.0.0", "genmask": "255.255.255.0", "route_flags": "U", "mss": 0, "window": 0, "irtt": 0, "iface": "ens33", "kind": "route", "route_flags_pretty": [ "UP" ] } ] $ netstat -i | jc --netstat -p [ { "iface": "ens33", "mtu": 1500, "rx_ok": 476, "rx_err": 0, "rx_drp": 0, "rx_ovr": 0, "tx_ok": 312, "tx_err": 0, "tx_drp": 0, "tx_ovr": 0, "flg": "BMRU", "kind": "interface" }, { "iface": "lo", "mtu": 65536, "rx_ok": 0, "rx_err": 0, "rx_drp": 0, "rx_ovr": 0, "tx_ok": 0, "tx_err": 0, "tx_drp": 0, "tx_ovr": 0, "flg": "LRU", "kind": "interface" } ] """ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.12' description = '`netstat` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'freebsd'] magic_commands = ['netstat'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: # integer and float conversions int_list = ['recv_q', 'send_q', 'pid', 'refcnt', 'inode', 'unit', 'vendor', 'class', 'osx_flags', 'subcla', 'pcbcount', 'rcvbuf', 'sndbuf', 'rxbytes', 'txbytes', 'route_refs', 'use', 'mtu', 'mss', 'window', 'irtt', 'metric', 'ipkts', 'ierrs', 'opkts', 'oerrs', 'coll', 'rx_ok', 'rx_err', 'rx_drp', 'rx_ovr', 'tx_ok', 'tx_err', 'tx_drp', 'tx_ovr', 'idrop', 'ibytes', 'obytes', 'r_mbuf', 's_mbuf', 'r_clus', 's_clus', 'r_hiwa', 's_hiwa', 'r_lowa', 's_lowa', 'r_bcnt', 's_bcnt', 'r_bmax', 's_bmax', 'rexmit', 'ooorcv', '0_win'] float_list = ['rexmt', 'persist', 'keep', '2msl', 'delack', 'rcvtime'] for key in entry: if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) if key in float_list: entry[key] = jc.utils.convert_to_float(entry[key]) # add number keys if 'local_port' in entry: local_num = jc.utils.convert_to_int(entry['local_port']) if local_num: entry['local_port_num'] = local_num if 'foreign_port' in entry: foreign_num = jc.utils.convert_to_int(entry['foreign_port']) if foreign_num: entry['foreign_port_num'] = foreign_num return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ import jc.utils jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) cleandata = list(filter(None, data.splitlines())) raw_output = [] if jc.utils.has_data(data): # check for FreeBSD/OSX vs Linux # is this from FreeBSD/OSX? if cleandata[0] == 'Active Internet connections' \ or cleandata[0] == 'Active Internet connections (including servers)' \ or cleandata[0] == 'Active Multipath Internet connections' \ or cleandata[0] == 'Active LOCAL (UNIX) domain sockets' \ or cleandata[0] == 'Registered kernel control modules' \ or cleandata[0] == 'Active kernel event sockets' \ or cleandata[0] == 'Active kernel control sockets' \ or cleandata[0] == 'Routing tables' \ or cleandata[0].startswith('Name '): import jc.parsers.netstat_freebsd_osx raw_output = jc.parsers.netstat_freebsd_osx.parse(cleandata) # use linux parser else: import jc.parsers.netstat_linux raw_output = jc.parsers.netstat_linux.parse(cleandata) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/netstat_freebsd_osx.py000066400000000000000000000241701415226333200206760ustar00rootroot00000000000000"""jc - JSON CLI output utility FreeBSD and OSX netstat Parser""" def normalize_headers(header): header = header.lower() header = header.replace('local address', 'local_address') header = header.replace('foreign address', 'foreign_address') header = header.replace('(state)', 'state') header = header.replace('inode', 'unix_inode') header = header.replace('flags', 'unix_flags') header = header.replace('-', '_') return header def normalize_route_headers(header): header = header.lower() header = header.replace('flags', 'route_flags') header = header.replace('refs', 'route_refs') header = header.replace('netif', 'iface') header = header.replace('-', '_') return header def normalize_interface_headers(header): header = header.lower() header = header.replace('name', 'iface') header = header.replace('-', '_') return header def parse_item(headers, entry, kind): entry = entry.split(maxsplit=len(headers) - 1) # fixup udp records with no state field entry if kind == 'network' and entry[0].startswith('udp'): entry.insert(5, None) if kind == 'network' and 'socket' in headers and 'udp' in str(entry): entry.insert(7, None) # fixup -T output on FreeBSD if kind == 'network' and '0_win' in headers and entry[0].startswith('udp'): entry.insert(1, '') entry.insert(1, '') entry.insert(1, '') # fixup interface records with no address field entry if kind == 'interface' and len(entry) == 8: entry.insert(3, None) output_line = dict(zip(headers, entry)) output_line['kind'] = kind return output_line def parse_post(raw_data): for entry in raw_data: # fixup name field in Registered kernel control module if 'name' in entry: if entry['name']: entry['name'] = entry['name'].strip() # create network and transport protocol fields if 'local_address' in entry: if entry['local_address']: ladd = entry['local_address'].rsplit('.', maxsplit=1)[0] lport = entry['local_address'].rsplit('.', maxsplit=1)[1] entry['local_address'] = ladd entry['local_port'] = lport if 'foreign_address' in entry: if entry['foreign_address']: fadd = entry['foreign_address'].rsplit('.', maxsplit=1)[0] fport = entry['foreign_address'].rsplit('.', maxsplit=1)[1] entry['foreign_address'] = fadd entry['foreign_port'] = fport if 'proto' in entry and 'kind' in entry: if entry['kind'] == 'network': if entry['proto'] == 'udp46': entry['transport_protocol'] = entry['proto'][:-2] elif entry['proto'].startswith('icm'): entry['transport_protocol'] = 'icmp' else: entry['transport_protocol'] = entry['proto'][:-1] if '6' in entry['proto']: entry['network_protocol'] = 'ipv6' else: entry['network_protocol'] = 'ipv4' # add route_flags_pretty field if 'route_flags' in entry: flag_map = { '1': 'PROTO1', '2': 'PROTO2', '3': 'PROTO3', 'B': 'BLACKHOLE', 'b': 'BROADCAST', 'C': 'CLONING', 'c': 'PRCLONING', 'D': 'DYNAMIC', 'G': 'GATEWAY', 'H': 'HOST', 'I': 'IFSCOPE', 'i': 'IFREF', 'L': 'LLINFO', 'M': 'MODIFIED', 'm': 'MULTICAST', 'R': 'REJECT', 'r': 'ROUTER', 'S': 'STATIC', 'U': 'UP', 'W': 'WASCLONED', 'X': 'XRESOLVE', 'Y': 'PROXY', } pretty_flags = [] for flag in entry['route_flags']: if flag in flag_map: pretty_flags.append(flag_map[flag]) entry['route_flags_pretty'] = pretty_flags # strip whitespace from beginning and end of all string values for item in entry: if isinstance(entry[item], str): entry[item] = entry[item].strip() return raw_data def parse(cleandata): """ Main text parsing function for OSX netstat Parameters: cleandata: (string) text data to parse Returns: List of Dictionaries. Raw structured data. """ raw_output = [] network = False multipath = False socket = False reg_kernel_control = False active_kernel_event = False active_kernel_control = False routing_table = False interface_table = False for line in cleandata: if line.startswith('Active Internet'): network = True multipath = False socket = False reg_kernel_control = False active_kernel_event = False active_kernel_control = False routing_table = False interface_table = False continue if line.startswith('Active Multipath Internet connections'): network = False multipath = True socket = False reg_kernel_control = False active_kernel_event = False active_kernel_control = False routing_table = False interface_table = False continue if line.startswith('Active LOCAL (UNIX) domain sockets') or line.startswith('Active UNIX domain sockets'): network = False multipath = False socket = True reg_kernel_control = False active_kernel_event = False active_kernel_control = False routing_table = False interface_table = False continue if line.startswith('Registered kernel control modules'): network = False multipath = False socket = False reg_kernel_control = True active_kernel_event = False active_kernel_control = False routing_table = False interface_table = False continue if line.startswith('Active kernel event sockets'): network = False multipath = False socket = False reg_kernel_control = False active_kernel_event = True active_kernel_control = False routing_table = False interface_table = False continue if line.startswith('Active kernel control sockets'): network = False multipath = False socket = False reg_kernel_control = False active_kernel_event = False active_kernel_control = True routing_table = False interface_table = False continue if line.startswith('Routing tables'): network = False multipath = False socket = False reg_kernel_control = False active_kernel_event = False active_kernel_control = False routing_table = True interface_table = False continue if line.startswith('Name '): network = False multipath = False socket = False reg_kernel_control = False active_kernel_event = False active_kernel_control = False routing_table = False interface_table = True # don't continue since there is no real header row for this table # get headers if network and (line.startswith('Socket ') or line.startswith('Proto ') or line.startswith('Tcpcb ')): header_text = normalize_headers(line) headers = header_text.split() continue if socket and line.startswith('Address '): header_text = normalize_headers(line) headers = header_text.split() continue if reg_kernel_control and (line.startswith('id ') or line.startswith('kctlref ')): header_text = normalize_headers(line) headers = header_text.split() continue if active_kernel_event and (line.startswith('Proto ') or line.startswith(' pcb ')): header_text = normalize_headers(line) headers = header_text.split() continue if active_kernel_control and (line.startswith('Proto ') or line.startswith(' pcb ')): header_text = normalize_headers(line) headers = header_text.split() continue if routing_table and line.startswith('Destination '): header_text = normalize_route_headers(line) headers = header_text.split() continue if interface_table and line.startswith('Name '): header_text = normalize_interface_headers(line) headers = header_text.split() continue # get items if network: raw_output.append(parse_item(headers, line, 'network')) continue if multipath: # not implemented continue if socket: raw_output.append(parse_item(headers, line, 'socket')) continue if reg_kernel_control: raw_output.append(parse_item(headers, line, 'Registered kernel control module')) continue if active_kernel_event: raw_output.append(parse_item(headers, line, 'Active kernel event socket')) continue if active_kernel_control: raw_output.append(parse_item(headers, line, 'Active kernel control socket')) continue if routing_table and not (line.startswith('Internet:') or line.startswith('Internet6:')): raw_output.append(parse_item(headers, line, 'route')) continue if interface_table: raw_output.append(parse_item(headers, line, 'interface')) continue return parse_post(raw_output) jc-1.17.3/jc/parsers/netstat_linux.py000066400000000000000000000202361415226333200175310ustar00rootroot00000000000000"""jc - JSON CLI output utility Linux netstat Parser""" import string def normalize_headers(header): header = header.lower() header = header.replace('local address', 'local_address') header = header.replace('foreign address', 'foreign_address') header = header.replace('pid/program name', 'program_name') header = header.replace('security context', 'security_context') header = header.replace('i-node', ' inode') header = header.replace('-', '_') return header def normalize_route_headers(header): header = header.lower() header = header.replace('flags', 'route_flags') header = header.replace('ref', 'route_refs') header = header.replace('-', '_') return header def normalize_interface_headers(header): header = header.lower() header = header.replace('-', '_') return header def parse_network(headers, entry): # Count words in header # if len of line is one less than len of header, then insert None in field 5 entry = entry.split(maxsplit=len(headers) - 1) if len(entry) == len(headers) - 1: entry.insert(5, None) output_line = dict(zip(headers, entry)) output_line['kind'] = 'network' return output_line def parse_socket(header_text, headers, entry): # get the column # of first letter of "state" state_col = header_text.find('state') # get the program name column area pn_start = header_text.find('program_name') pn_end = header_text.find('path') - 1 # remove [ and ] from each line entry = entry.replace('[ ]', '---') entry = entry.replace('[', ' ').replace(']', ' ') # find program_name column area and substitute spaces with \u2063 there old_pn = entry[pn_start:pn_end] new_pn = old_pn.replace(' ', '\u2063') entry = entry.replace(old_pn, new_pn) entry_list = entry.split(maxsplit=len(headers) - 1) # check column # to see if state column is populated if entry[state_col] in string.whitespace: entry_list.insert(4, None) output_line = dict(zip(headers, entry_list)) output_line['kind'] = 'socket' # fix program_name field to turn \u2063 back to spaces if 'program_name' in output_line: if output_line['program_name']: old_d_pn = output_line['program_name'] new_d_pn = old_d_pn.replace('\u2063', ' ') output_line['program_name'] = new_d_pn return output_line def parse_route(headers, entry): entry = entry.split(maxsplit=len(headers) - 1) output_line = dict(zip(headers, entry)) output_line['kind'] = 'route' return output_line def parse_interface(headers, entry): entry = entry.split(maxsplit=len(headers) - 1) output_line = dict(zip(headers, entry)) output_line['kind'] = 'interface' return output_line def parse_post(raw_data): # clean up trailing whitespace on each item in each entry # flags --- = null # program_name - = null # split pid and program name and ip addresses and ports # create network and transport protocol fields for entry in raw_data: for item in entry: try: entry[item] = entry[item].rstrip() except (AttributeError): # skips trying to rstrip Null entries pass if 'flags' in entry: if entry['flags'] == '---': entry['flags'] = None if 'program_name' in entry: entry['program_name'] = entry['program_name'].strip() if entry['program_name'] == '-': entry['program_name'] = None if entry['program_name']: pid = entry['program_name'].split('/', maxsplit=1)[0] name = entry['program_name'].split('/', maxsplit=1)[1] entry['pid'] = pid entry['program_name'] = name if 'local_address' in entry: if entry['local_address']: ladd = entry['local_address'].rsplit(':', maxsplit=1)[0] lport = entry['local_address'].rsplit(':', maxsplit=1)[1] entry['local_address'] = ladd entry['local_port'] = lport if 'foreign_address' in entry: if entry['foreign_address']: fadd = entry['foreign_address'].rsplit(':', maxsplit=1)[0] fport = entry['foreign_address'].rsplit(':', maxsplit=1)[1] entry['foreign_address'] = fadd entry['foreign_port'] = fport if 'proto' in entry and 'kind' in entry: if entry['kind'] == 'network': if 'tcp' in entry['proto']: entry['transport_protocol'] = 'tcp' elif 'udp' in entry['proto']: entry['transport_protocol'] = 'udp' else: entry['transport_protocol'] = None if '6' in entry['proto']: entry['network_protocol'] = 'ipv6' else: entry['network_protocol'] = 'ipv4' # add route_flags_pretty # Flag mapping from https://www.man7.org/linux/man-pages/man8/route.8.html if 'route_flags' in entry: flag_map = { 'U': 'UP', 'H': 'HOST', 'G': 'GATEWAY', 'R': 'REINSTATE', 'D': 'DYNAMIC', 'M': 'MODIFIED', 'A': 'ADDRCONF', 'C': 'CACHE', '!': 'REJECT' } pretty_flags = [] for flag in entry['route_flags']: if flag in flag_map: pretty_flags.append(flag_map[flag]) entry['route_flags_pretty'] = pretty_flags return raw_data def parse(cleandata): """ Main text parsing function for OSX netstat Parameters: cleandata: (string) text data to parse Returns: List of Dictionaries. Raw structured data. """ raw_output = [] network = False socket = False bluetooth = False routing_table = False interface_table = False headers = None for line in cleandata: if line.startswith('Active Internet'): network = True socket = False bluetooth = False routing_table = False interface_table = False continue if line.startswith('Active UNIX'): network = False socket = True bluetooth = False routing_table = False interface_table = False continue if line.startswith('Active Bluetooth'): network = False socket = False bluetooth = True routing_table = False interface_table = False continue if line.startswith('Kernel IP routing table'): network = False socket = False bluetooth = False routing_table = True interface_table = False continue if line.startswith('Kernel Interface table'): network = False socket = False bluetooth = False routing_table = False interface_table = True continue # get headers if line.startswith('Proto'): header_text = normalize_headers(line) headers = header_text.split() continue if line.startswith('Destination '): header_text = normalize_route_headers(line) headers = header_text.split() continue if line.startswith('Iface '): header_text = normalize_interface_headers(line) headers = header_text.split() continue # parse items if network: raw_output.append(parse_network(headers, line)) continue if socket: raw_output.append(parse_socket(header_text, headers, line)) continue if bluetooth: # not implemented continue if routing_table: raw_output.append(parse_route(headers, line)) continue if interface_table: raw_output.append(parse_interface(headers, line)) continue return parse_post(raw_output) jc-1.17.3/jc/parsers/ntpq.py000066400000000000000000000152341415226333200156140ustar00rootroot00000000000000"""jc - JSON CLI output utility `ntpq -p` command output parser Usage (cli): $ ntpq -p | jc --ntpq or $ jc ntpq -p Usage (module): import jc.parsers.ntpq result = jc.parsers.ntpq.parse(ntpq_command_output) Schema: [ { "state": string, # space/~ converted to null "remote": string, "refid": string, "st": integer, "t": string, "when": integer, # - converted to null "poll": integer, "reach": integer, "delay": float, "offset": float, "jitter": float }, ] Examples: $ ntpq -p | jc --ntpq -p [ { "remote": "44.190.6.254", "refid": "127.67.113.92", "st": 2, "t": "u", "when": 1, "poll": 64, "reach": 1, "delay": 23.399, "offset": -2.805, "jitter": 2.131, "state": null }, { "remote": "ntp.wdc1.us.lea", "refid": "130.133.1.10", "st": 2, "t": "u", "when": null, "poll": 64, "reach": 1, "delay": 93.053, "offset": -0.807, "jitter": 2.839, "state": null }, { "remote": "clock.team-cymr", "refid": "204.9.54.119", "st": 2, "t": "u", "when": null, "poll": 64, "reach": 1, "delay": 70.337, "offset": -2.909, "jitter": 2.6, "state": null }, { "remote": "mirror1.sjc02.s", "refid": "216.218.254.202", "st": 2, "t": "u", "when": 2, "poll": 64, "reach": 1, "delay": 29.325, "offset": 1.044, "jitter": 4.069, "state": null, } ] $ ntpq -pn| jc --ntpq -p [ { "remote": "44.190.6.254", "refid": "127.67.113.92", "st": 2, "t": "u", "when": 66, "poll": 64, "reach": 377, "delay": 22.69, "offset": -0.392, "jitter": 2.085, "state": "+" }, { "remote": "108.59.2.24", "refid": "130.133.1.10", "st": 2, "t": "u", "when": 63, "poll": 64, "reach": 377, "delay": 90.805, "offset": 2.84, "jitter": 1.908, "state": "-" }, { "remote": "38.229.71.1", "refid": "204.9.54.119", "st": 2, "t": "u", "when": 64, "poll": 64, "reach": 377, "delay": 68.699, "offset": -0.61, "jitter": 2.576, "state": "+" }, { "remote": "72.5.72.15", "refid": "216.218.254.202", "st": 2, "t": "u", "when": 63, "poll": 64, "reach": 377, "delay": 22.654, "offset": 0.231, "jitter": 1.964, "state": "*" } ] $ ntpq -pn| jc --ntpq -p -r [ { "s": "+", "remote": "44.190.6.254", "refid": "127.67.113.92", "st": "2", "t": "u", "when": "66", "poll": "64", "reach": "377", "delay": "22.690", "offset": "-0.392", "jitter": "2.085" }, { "s": "-", "remote": "108.59.2.24", "refid": "130.133.1.10", "st": "2", "t": "u", "when": "63", "poll": "64", "reach": "377", "delay": "90.805", "offset": "2.840", "jitter": "1.908" }, { "s": "+", "remote": "38.229.71.1", "refid": "204.9.54.119", "st": "2", "t": "u", "when": "64", "poll": "64", "reach": "377", "delay": "68.699", "offset": "-0.610", "jitter": "2.576" }, { "s": "*", "remote": "72.5.72.15", "refid": "216.218.254.202", "st": "2", "t": "u", "when": "63", "poll": "64", "reach": "377", "delay": "22.654", "offset": "0.231", "jitter": "1.964" } ] """ import jc.utils import jc.parsers.universal class info(): """Provides parser metadata (version, author, etc.)""" version = '1.6' description = '`ntpq -p` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'freebsd'] magic_commands = ['ntpq'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: if entry['s'] == '~': entry['s'] = None entry['state'] = entry.pop('s') int_list = ['st', 'when', 'poll', 'reach'] float_list = ['delay', 'offset', 'jitter'] for key in entry: if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) if key in float_list: entry[key] = jc.utils.convert_to_float(entry[key]) return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) cleandata = data.splitlines() raw_output = [] if jc.utils.has_data(data): cleandata[0] = 's ' + cleandata[0] cleandata[0] = cleandata[0].lower() # delete header delimiter del cleandata[1] # separate first character with a space for easier parsing for i, line in list(enumerate(cleandata[1:])): if line[0] == ' ': # fixup for no-state cleandata[i + 1] = '~ ' + line[1:] else: # fixup - realign columns since we added the 's' column cleandata[i + 1] = line[:1] + ' ' + line[1:] # fixup for occaisional ip/hostname fields with a space cleandata[i + 1] = cleandata[i + 1].replace(' (', '_(') raw_output = jc.parsers.universal.simple_table_parse(cleandata) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/passwd.py000066400000000000000000000076471415226333200161440ustar00rootroot00000000000000"""jc - JSON CLI output utility `/etc/passwd` file Parser Usage (cli): $ cat /etc/passwd | jc --passwd Usage (module): import jc.parsers.passwd result = jc.parsers.passwd.parse(passwd_file_output) Schema: [ { "username": string, "password": string, "uid": integer, "gid": integer, "comment": string, "home": string, "shell": string } ] Examples: $ cat /etc/passwd | jc --passwd -p [ { "username": "nobody", "password": "*", "uid": -2, "gid": -2, "comment": "Unprivileged User", "home": "/var/empty", "shell": "/usr/bin/false" }, { "username": "root", "password": "*", "uid": 0, "gid": 0, "comment": "System Administrator", "home": "/var/root", "shell": "/bin/sh" }, { "username": "daemon", "password": "*", "uid": 1, "gid": 1, "comment": "System Services", "home": "/var/root", "shell": "/usr/bin/false" }, ... ] $ cat /etc/passwd | jc --passwd -p -r [ { "username": "nobody", "password": "*", "uid": "-2", "gid": "-2", "comment": "Unprivileged User", "home": "/var/empty", "shell": "/usr/bin/false" }, { "username": "root", "password": "*", "uid": "0", "gid": "0", "comment": "System Administrator", "home": "/var/root", "shell": "/bin/sh" }, { "username": "daemon", "password": "*", "uid": "1", "gid": "1", "comment": "System Services", "home": "/var/root", "shell": "/usr/bin/false" }, ... ] """ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.4' description = '`/etc/passwd` file parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # details = 'enter any other details here' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'aix', 'freebsd'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: int_list = ['uid', 'gid'] for key in entry: if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = [] # Clear any blank lines cleandata = list(filter(None, data.splitlines())) if jc.utils.has_data(data): for entry in cleandata: if entry.startswith('#'): continue output_line = {} fields = entry.split(':') output_line['username'] = fields[0] output_line['password'] = fields[1] output_line['uid'] = fields[2] output_line['gid'] = fields[3] output_line['comment'] = fields[4] output_line['home'] = fields[5] output_line['shell'] = fields[6] raw_output.append(output_line) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/ping.py000066400000000000000000000533661415226333200155770ustar00rootroot00000000000000"""jc - JSON CLI output utility `ping` command output parser Supports `ping` and `ping6` output. Usage (cli): Note: Use the ping `-c` (count) option, otherwise data will not be piped to `jc`. $ ping -c 3 1.2.3.4 | jc --ping or $ jc ping -c 3 1.2.3.4 Usage (module): import jc.parsers.ping result = jc.parsers.ping.parse(ping_command_output) Schema: { "source_ip": string, "destination_ip": string, "data_bytes": integer, "pattern": string, # (null if not set) "destination": string, "packets_transmitted": integer, "packets_received": integer, "packet_loss_percent": float, "duplicates": integer, "round_trip_ms_min": float, "round_trip_ms_avg": float, "round_trip_ms_max": float, "round_trip_ms_stddev": float, "responses": [ { "type": string, # 'reply', 'timeout', 'unparsable_line', etc. See `_error_type.type_map` for all options "unparsed_line": string, # only if an 'unparsable_line' type "timestamp": float, "bytes": integer, "response_ip": string, "icmp_seq": integer, "ttl": integer, "time_ms": float, "duplicate": boolean, "vr": integer, # hex value converted to decimal "hl": integer, # hex value converted to decimal "tos": integer, # hex value converted to decimal "len": integer, # hex value converted to decimal "id": integer, # hex value converted to decimal "flg": integer, # hex value converted to decimal "off": integer, # hex value converted to decimal "pro": integer, # hex value converted to decimal "cks": ingeger, # hex value converted to decimal "src": string, "dst": string } ] } Examples: $ ping -c 3 -p ff cnn.com | jc --ping -p { "destination_ip": "151.101.1.67", "data_bytes": 56, "pattern": "0xff", "destination": "cnn.com", "packets_transmitted": 3, "packets_received": 3, "packet_loss_percent": 0.0, "duplicates": 0, "round_trip_ms_min": 28.015, "round_trip_ms_avg": 32.848, "round_trip_ms_max": 39.376, "round_trip_ms_stddev": 4.79, "responses": [ { "type": "reply", "bytes": 64, "response_ip": "151.101.1.67", "icmp_seq": 0, "ttl": 59, "time_ms": 28.015, "duplicate": false }, { "type": "reply", "bytes": 64, "response_ip": "151.101.1.67", "icmp_seq": 1, "ttl": 59, "time_ms": 39.376, "duplicate": false }, { "type": "reply", "bytes": 64, "response_ip": "151.101.1.67", "icmp_seq": 2, "ttl": 59, "time_ms": 31.153, "duplicate": false } ] } $ ping -c 3 -p ff cnn.com | jc --ping -p -r { "destination_ip": "151.101.129.67", "data_bytes": "56", "pattern": "0xff", "destination": "cnn.com", "packets_transmitted": "3", "packets_received": "3", "packet_loss_percent": "0.0", "duplicates": "0", "round_trip_ms_min": "25.078", "round_trip_ms_avg": "29.543", "round_trip_ms_max": "32.553", "round_trip_ms_stddev": "3.221", "responses": [ { "type": "reply", "bytes": "64", "response_ip": "151.101.129.67", "icmp_seq": "0", "ttl": "59", "time_ms": "25.078", "duplicate": false }, { "type": "reply", "bytes": "64", "response_ip": "151.101.129.67", "icmp_seq": "1", "ttl": "59", "time_ms": "30.999", "duplicate": false }, { "type": "reply", "bytes": "64", "response_ip": "151.101.129.67", "icmp_seq": "2", "ttl": "59", "time_ms": "32.553", "duplicate": false } ] } """ import string import ipaddress import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.7' description = '`ping` and `ping6` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'freebsd'] magic_commands = ['ping', 'ping6'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (Dictionary) raw structured data to process Returns: Dictionary. Structured data to conform to the schema. """ int_list = ['data_bytes', 'packets_transmitted', 'packets_received', 'bytes', 'icmp_seq', 'ttl', 'duplicates', 'vr', 'hl', 'tos', 'len', 'id', 'flg', 'off', 'pro', 'cks'] float_list = ['packet_loss_percent', 'round_trip_ms_min', 'round_trip_ms_avg', 'round_trip_ms_max', 'round_trip_ms_stddev', 'timestamp', 'time_ms'] for key in proc_data: if key in int_list: proc_data[key] = jc.utils.convert_to_int(proc_data[key]) if key in float_list: proc_data[key] = jc.utils.convert_to_float(proc_data[key]) if key == 'responses': for entry in proc_data['responses']: for k in entry: if k in int_list: entry[k] = jc.utils.convert_to_int(entry[k]) if k in float_list: entry[k] = jc.utils.convert_to_float(entry[k]) return proc_data def _ipv6_in(line): line_list = line.replace('(', ' ').replace(')', ' ').replace(',', ' ').replace('%', ' ').split() ipv6 = False for item in line_list: try: _ = ipaddress.IPv6Address(item) ipv6 = True except Exception: pass return ipv6 def _error_type(line): # from https://github.com/dgibson/iputils/blob/master/ping.c # https://android.googlesource.com/platform/external/ping/+/8fc3c91cf9e7f87bc20b9e6d3ea2982d87b70d9a/ping.c # https://opensource.apple.com/source/network_cmds/network_cmds-328/ping.tproj/ping.c type_map = { 'Destination Net Unreachable': 'destination_net_unreachable', 'Destination Host Unreachable': 'destination_host_unreachable', 'Destination Protocol Unreachable': 'destination_protocol_unreachable', 'Destination Port Unreachable': 'destination_port_unreachable', 'Frag needed and DF set': 'frag_needed_and_df_set', 'Source Route Failed': 'source_route_failed', 'Destination Net Unknown': 'destination_net_unknown', 'Destination Host Unknown': 'destination_host_unknown', 'Source Host Isolated': 'source_host_isolated', 'Destination Net Prohibited': 'destination_net_prohibited', 'Destination Host Prohibited': 'destination_host_prohibited', 'Destination Net Unreachable for Type of Service': 'destination_net_unreachable_for_type_of_service', 'Destination Host Unreachable for Type of Service': 'destination_host_unreachable_for_type_of_service', 'Packet filtered': 'packet_filtered', 'Precedence Violation': 'precedence_violation', 'Precedence Cutoff': 'precedence_cutoff', 'Dest Unreachable, Bad Code': 'dest_unreachable_bad_code', 'Redirect Network': 'redirect_network', 'Redirect Host': 'redirect_host', 'Redirect Type of Service and Network': 'redirect_type_of_service_and_network', 'Redirect, Bad Code': 'redirect_bad_code', 'Time to live exceeded': 'time_to_live_exceeded', 'Frag reassembly time exceeded': 'frag_reassembly_time_exceeded', 'Time exceeded, Bad Code': 'time_exceeded_bad_code' } for err_type, code in type_map.items(): if err_type in line: return code def _linux_parse(data): raw_output = {} ping_responses = [] pattern = None footer = False linedata = data.splitlines() # check for PATTERN if linedata[0].startswith('PATTERN: '): pattern = linedata.pop(0).split(': ')[1] while not linedata[0].startswith('PING '): linedata.pop(0) ipv4 = True if 'bytes of data' in linedata[0] else False if ipv4 and linedata[0][5] not in string.digits: hostname = True elif ipv4 and linedata[0][5] in string.digits: hostname = False elif not ipv4 and ' (' in linedata[0]: hostname = True else: hostname = False for line in filter(None, linedata): if line.startswith('PING '): if ipv4 and not hostname: dst_ip, dta_byts = (2, 3) elif ipv4 and hostname: dst_ip, dta_byts = (2, 3) elif not ipv4 and not hostname: dst_ip, dta_byts = (2, 3) else: dst_ip, dta_byts = (3, 4) line = line.replace('(', ' ').replace(')', ' ') raw_output.update( { 'destination_ip': line.split()[dst_ip].lstrip('(').rstrip(')'), 'data_bytes': line.split()[dta_byts], 'pattern': pattern } ) continue if line.startswith('---'): footer = True raw_output['destination'] = line.split()[1] continue if footer: if 'packets transmitted' in line: if ' duplicates,' in line: raw_output.update( { 'packets_transmitted': line.split()[0], 'packets_received': line.split()[3], 'packet_loss_percent': line.split()[7].rstrip('%'), 'duplicates': line.split()[5].lstrip('+'), 'time_ms': line.split()[11].replace('ms', '') } ) continue else: raw_output.update( { 'packets_transmitted': line.split()[0], 'packets_received': line.split()[3], 'packet_loss_percent': line.split()[5].rstrip('%'), 'duplicates': '0', 'time_ms': line.split()[9].replace('ms', '') } ) continue else: split_line = line.split(' = ')[1] split_line = split_line.split('/') raw_output.update( { 'round_trip_ms_min': split_line[0], 'round_trip_ms_avg': split_line[1], 'round_trip_ms_max': split_line[2], 'round_trip_ms_stddev': split_line[3].split()[0] } ) # ping response lines else: # request timeout if 'no answer yet for icmp_seq=' in line: timestamp = False isequence = 5 # if timestamp option is specified, then shift icmp sequence field right by one if line[0] == '[': timestamp = True isequence = 6 response = { 'type': 'timeout', 'timestamp': line.split()[0].lstrip('[').rstrip(']') if timestamp else None, 'icmp_seq': line.replace('=', ' ').split()[isequence] } ping_responses.append(response) continue # normal responses elif ' bytes from ' in line: try: line = line.replace('(', ' ').replace(')', ' ').replace('=', ' ') # positions of items depend on whether ipv4/ipv6 and/or ip/hostname is used if ipv4 and not hostname: bts, rip, iseq, t2l, tms = (0, 3, 5, 7, 9) elif ipv4 and hostname: bts, rip, iseq, t2l, tms = (0, 4, 7, 9, 11) elif not ipv4 and not hostname: bts, rip, iseq, t2l, tms = (0, 3, 5, 7, 9) elif not ipv4 and hostname: bts, rip, iseq, t2l, tms = (0, 4, 7, 9, 11) # if timestamp option is specified, then shift everything right by one timestamp = False if line[0] == '[': timestamp = True bts, rip, iseq, t2l, tms = (bts + 1, rip + 1, iseq + 1, t2l + 1, tms + 1) response = { 'type': 'reply', 'timestamp': line.split()[0].lstrip('[').rstrip(']') if timestamp else None, 'bytes': line.split()[bts], 'response_ip': line.split()[rip].rstrip(':'), 'icmp_seq': line.split()[iseq], 'ttl': line.split()[t2l], 'time_ms': line.split()[tms], 'duplicate': True if 'DUP!' in line else False } except Exception: response = { 'type': 'unparsable_line', 'unparsed_line': line } ping_responses.append(response) continue raw_output['responses'] = ping_responses return raw_output def _bsd_parse(data): raw_output = {} ping_responses = [] pattern = None footer = False ping_error = False linedata = data.splitlines() # check for PATTERN if linedata[0].startswith('PATTERN: '): pattern = linedata.pop(0).split(': ')[1] for line in filter(None, linedata): if line.startswith('PING '): raw_output.update( { 'destination_ip': line.split()[2].lstrip('(').rstrip(':').rstrip(')'), 'data_bytes': line.split()[3], 'pattern': pattern } ) continue if line.startswith('PING6('): line = line.replace('(', ' ').replace(')', ' ').replace('=', ' ') raw_output.update( { 'source_ip': line.split()[4], 'destination_ip': line.split()[6], 'data_bytes': line.split()[1], 'pattern': pattern } ) continue if line.startswith('---'): footer = True raw_output['destination'] = line.split()[1] continue if footer: if 'packets transmitted' in line: if ' duplicates,' in line: raw_output.update( { 'packets_transmitted': line.split()[0], 'packets_received': line.split()[3], 'packet_loss_percent': line.split()[8].rstrip('%'), 'duplicates': line.split()[6].lstrip('+'), } ) continue else: raw_output.update( { 'packets_transmitted': line.split()[0], 'packets_received': line.split()[3], 'packet_loss_percent': line.split()[6].rstrip('%'), 'duplicates': '0', } ) continue else: split_line = line.split(' = ')[1] split_line = split_line.split('/') raw_output.update( { 'round_trip_ms_min': split_line[0], 'round_trip_ms_avg': split_line[1], 'round_trip_ms_max': split_line[2], 'round_trip_ms_stddev': split_line[3].replace(' ms', '') if len(split_line) == 4 else None } ) # ping response lines else: # ipv4 lines if not _ipv6_in(line): # request timeout if line.startswith('Request timeout for '): response = { 'type': 'timeout', 'icmp_seq': line.split()[4] } ping_responses.append(response) continue # catch error responses err = _error_type(line) if err: response = { 'type': err } try: response['bytes'] = line.split()[0] response['response_ip'] = line.split()[4].strip(':').strip('(').strip(')') except Exception: pass ping_error = True continue if ping_error: if line.startswith('Vr'): continue else: error_line = line.split() try: response.update( { 'vr': int(error_line[0], 16), # convert from hex to decimal 'hl': int(error_line[1], 16), 'tos': int(error_line[2], 16), 'len': int(error_line[3], 16), 'id': int(error_line[4], 16), 'flg': int(error_line[5], 16), 'off': int(error_line[6], 16), 'ttl': int(error_line[7], 16), 'pro': int(error_line[8], 16), 'cks': int(error_line[9], 16), 'src': error_line[10], 'dst': error_line[11], } ) except Exception: pass if response: ping_responses.append(response) ping_error = False continue # normal response elif ' bytes from ' in line: try: line = line.replace(':', ' ').replace('=', ' ') response = { 'type': 'reply', 'bytes': line.split()[0], 'response_ip': line.split()[3], 'icmp_seq': line.split()[5], 'ttl': line.split()[7], 'time_ms': line.split()[9] } except Exception: response = { 'type': 'unparsable_line', 'unparsed_line': line } ping_responses.append(response) continue # ipv6 lines elif ' bytes from ' in line: try: line = line.replace(',', ' ').replace('=', ' ') response = { 'type': 'reply', 'bytes': line.split()[0], 'response_ip': line.split()[3], 'icmp_seq': line.split()[5], 'ttl': line.split()[7], 'time_ms': line.split()[9] } except Exception: response = { 'type': 'unparsable_line', 'unparsed_line': line } ping_responses.append(response) continue # identify duplicates in responses if ping_responses: seq_list = [] for reply in ping_responses: if 'icmp_seq' in reply: seq_list.append(reply['icmp_seq']) reply['duplicate'] = True if seq_list.count(reply['icmp_seq']) > 1 else False raw_output['responses'] = ping_responses return raw_output def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: Dictionary. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = {} if jc.utils.has_data(data): if ' time ' in data.splitlines()[-2] or ' time ' in data.splitlines()[-3]: raw_output = _linux_parse(data) else: raw_output = _bsd_parse(data) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/ping_s.py000066400000000000000000000445411415226333200161140ustar00rootroot00000000000000"""jc - JSON CLI output utility `ping` command output streaming parser > This streaming parser outputs JSON Lines Supports `ping` and `ping6` output. Usage (cli): $ ping | jc --ping-s > Note: When piping `jc` converted `ping` output to other processes it may appear the output is hanging due to the OS pipe buffers. This is because `ping` output is too small to quickly fill up the buffer. Use the `-u` option to unbuffer the `jc` output if you would like immediate output. See the [readme](https://github.com/kellyjonbrazil/jc/tree/master#unbuffering-output) for more information. Usage (module): import jc.parsers.ping_s result = jc.parsers.ping_s.parse(ping_command_output.splitlines()) # result is an iterable object for item in result: # do something Schema: { "type": string, # 'reply', 'timeout', 'summary', etc. See `_error_type.type_map` for all options. "source_ip": string, "destination_ip": string, "sent_bytes": integer, "pattern": string, # (null if not set) "destination": string, "timestamp": float, "response_bytes": integer, "response_ip": string, "icmp_seq": integer, "ttl": integer, "time_ms": float, "duplicate": boolean, "packets_transmitted": integer, "packets_received": integer, "packet_loss_percent": float, "duplicates": integer, "round_trip_ms_min": float, "round_trip_ms_avg": float, "round_trip_ms_max": float, "round_trip_ms_stddev": float, "_jc_meta": # This object only exists if using -qq or ignore_exceptions=True { "success": booean, # true if successfully parsed, false if error "error": string, # exists if "success" is false "line": string # exists if "success" is false } } Examples: $ ping 1.1.1.1 | jc --ping-s {"type":"reply","destination_ip":"1.1.1.1","sent_bytes":56,"pattern":null,"response_bytes":64,"response_ip":"1.1.1.1","icmp_seq":0,"ttl":56,"time_ms":23.703} {"type":"reply","destination_ip":"1.1.1.1","sent_bytes":56,"pattern":null,"response_bytes":64,"response_ip":"1.1.1.1","icmp_seq":1,"ttl":56,"time_ms":22.862} {"type":"reply","destination_ip":"1.1.1.1","sent_bytes":56,"pattern":null,"response_bytes":64,"response_ip":"1.1.1.1","icmp_seq":2,"ttl":56,"time_ms":22.82} ... $ ping 1.1.1.1 | jc --ping-s -r {"type":"reply","destination_ip":"1.1.1.1","sent_bytes":"56","pattern":null,"response_bytes":"64","response_ip":"1.1.1.1","icmp_seq":"0","ttl":"56","time_ms":"23.054"} {"type":"reply","destination_ip":"1.1.1.1","sent_bytes":"56","pattern":null,"response_bytes":"64","response_ip":"1.1.1.1","icmp_seq":"1","ttl":"56","time_ms":"24.739"} {"type":"reply","destination_ip":"1.1.1.1","sent_bytes":"56","pattern":null,"response_bytes":"64","response_ip":"1.1.1.1","icmp_seq":"2","ttl":"56","time_ms":"23.232"} ... """ import string import ipaddress import jc.utils from jc.exceptions import ParseError from jc.utils import stream_success, stream_error class info(): """Provides parser metadata (version, author, etc.)""" version = '0.6' description = '`ping` and `ping6` command streaming parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'freebsd'] streaming = True __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (Dictionary) raw structured data to process Returns: Dictionary. Structured data to conform to the schema. """ int_list = ['sent_bytes', 'packets_transmitted', 'packets_received', 'response_bytes', 'icmp_seq', 'ttl', 'duplicates', 'vr', 'hl', 'tos', 'len', 'id', 'flg', 'off', 'pro', 'cks'] float_list = ['packet_loss_percent', 'round_trip_ms_min', 'round_trip_ms_avg', 'round_trip_ms_max', 'round_trip_ms_stddev', 'timestamp', 'time_ms'] for key in proc_data: if key in int_list: proc_data[key] = jc.utils.convert_to_int(proc_data[key]) if key in float_list: proc_data[key] = jc.utils.convert_to_float(proc_data[key]) return proc_data class _state: os_detected = None linux = None bsd = None ipv4 = None hostname = None destination_ip = None sent_bytes = None pattern = None footer = False packets_transmitted = None packets_received = None packet_loss_percent = None time_ms = None duplicates = None def _ipv6_in(line): line_list = line.replace('(', ' ').replace(')', ' ').replace(',', ' ').replace('%', ' ').split() ipv6 = False for item in line_list: try: _ = ipaddress.IPv6Address(item) ipv6 = True except Exception: pass return ipv6 def _error_type(line): # from https://github.com/dgibson/iputils/blob/master/ping.c # https://android.googlesource.com/platform/external/ping/+/8fc3c91cf9e7f87bc20b9e6d3ea2982d87b70d9a/ping.c # https://opensource.apple.com/source/network_cmds/network_cmds-328/ping.tproj/ping.c type_map = { 'Destination Net Unreachable': 'destination_net_unreachable', 'Destination Host Unreachable': 'destination_host_unreachable', 'Destination Protocol Unreachable': 'destination_protocol_unreachable', 'Destination Port Unreachable': 'destination_port_unreachable', 'Frag needed and DF set': 'frag_needed_and_df_set', 'Source Route Failed': 'source_route_failed', 'Destination Net Unknown': 'destination_net_unknown', 'Destination Host Unknown': 'destination_host_unknown', 'Source Host Isolated': 'source_host_isolated', 'Destination Net Prohibited': 'destination_net_prohibited', 'Destination Host Prohibited': 'destination_host_prohibited', 'Destination Net Unreachable for Type of Service': 'destination_net_unreachable_for_type_of_service', 'Destination Host Unreachable for Type of Service': 'destination_host_unreachable_for_type_of_service', 'Packet filtered': 'packet_filtered', 'Precedence Violation': 'precedence_violation', 'Precedence Cutoff': 'precedence_cutoff', 'Dest Unreachable, Bad Code': 'dest_unreachable_bad_code', 'Redirect Network': 'redirect_network', 'Redirect Host': 'redirect_host', 'Redirect Type of Service and Network': 'redirect_type_of_service_and_network', 'Redirect, Bad Code': 'redirect_bad_code', 'Time to live exceeded': 'time_to_live_exceeded', 'Frag reassembly time exceeded': 'frag_reassembly_time_exceeded', 'Time exceeded, Bad Code': 'time_exceeded_bad_code' } for err_type, code in type_map.items(): if err_type in line: return code return None def _bsd_parse(line, s): output_line = {} if line.startswith('PING '): s.destination_ip = line.split()[2].lstrip('(').rstrip(':').rstrip(')') s.sent_bytes = line.split()[3] return None if line.startswith('PING6('): line = line.replace('(', ' ').replace(')', ' ').replace('=', ' ') s.source_ip = line.split()[4] s.destination_ip = line.split()[6] s.sent_bytes = line.split()[1] return None if line.startswith('---'): s.footer = True return None if s.footer: if 'packets transmitted' in line: if ' duplicates,' in line: s.packets_transmitted = line.split()[0] s.packets_received = line.split()[3] s.packet_loss_percent = line.split()[8].rstrip('%') s.duplicates = line.split()[6].lstrip('+') return None s.packets_transmitted = line.split()[0] s.packets_received = line.split()[3] s.packet_loss_percent = line.split()[6].rstrip('%') s.duplicates = '0' return None split_line = line.split(' = ')[1] split_line = split_line.split('/') output_line = { 'type': 'summary', 'destination_ip': s.destination_ip or None, 'sent_bytes': s.sent_bytes or None, 'pattern': s.pattern or None, 'packets_transmitted': s.packets_transmitted or None, 'packets_received': s.packets_received or None, 'packet_loss_percent': s.packet_loss_percent or None, 'duplicates': s.duplicates or None, 'round_trip_ms_min': split_line[0], 'round_trip_ms_avg': split_line[1], 'round_trip_ms_max': split_line[2], 'round_trip_ms_stddev': split_line[3].replace(' ms', '') } return output_line # ping response lines # ipv4 lines if not _ipv6_in(line): # request timeout if line.startswith('Request timeout for '): output_line = { 'type': 'timeout', 'destination_ip': s.destination_ip or None, 'sent_bytes': s.sent_bytes or None, 'pattern': s.pattern or None, 'icmp_seq': line.split()[4] } return output_line # catch error responses err = _error_type(line) if err: output_line = { 'type': err } try: output_line['bytes'] = line.split()[0] output_line['destination_ip'] = s.destination_ip output_line['response_ip'] = line.split()[4].strip(':').strip('(').strip(')') except Exception: pass return output_line # normal response if ' bytes from ' in line: line = line.replace(':', ' ').replace('=', ' ') output_line = { 'type': 'reply', 'destination_ip': s.destination_ip or None, 'sent_bytes': s.sent_bytes or None, 'pattern': s.pattern or None, 'response_bytes': line.split()[0], 'response_ip': line.split()[3], 'icmp_seq': line.split()[5], 'ttl': line.split()[7], 'time_ms': line.split()[9] } return output_line # ipv6 lines elif ' bytes from ' in line: line = line.replace(',', ' ').replace('=', ' ') output_line = { 'type': 'reply', 'destination_ip': s.destination_ip or None, 'sent_bytes': s.sent_bytes or None, 'pattern': s.pattern or None, 'bytes': line.split()[0], 'response_ip': line.split()[3], 'icmp_seq': line.split()[5], 'ttl': line.split()[7], 'time_ms': line.split()[9] } return output_line def _linux_parse(line, s): """ Linux ping line parsing function. Parameters: line: (string) line of text data to parse s: (state object) global state Returns: Dictionary. Raw structured data. """ output_line = {} if line.startswith('PING '): s.ipv4 = 'bytes of data' in line if s.ipv4 and line[5] not in string.digits: s.hostname = True elif s.ipv4 and line[5] in string.digits: s.hostname = False elif not s.ipv4 and ' (' in line: s.hostname = True else: s.hostname = False if s.ipv4 and not s.hostname: dst_ip, dta_byts = (2, 3) elif s.ipv4 and s.hostname: dst_ip, dta_byts = (2, 3) elif not s.ipv4 and not s.hostname: dst_ip, dta_byts = (2, 3) else: dst_ip, dta_byts = (3, 4) line = line.replace('(', ' ').replace(')', ' ') s.destination_ip = line.split()[dst_ip].lstrip('(').rstrip(')') s.sent_bytes = line.split()[dta_byts] return None if line.startswith('---'): s.footer = True return None if s.footer: if 'packets transmitted' in line: if ' duplicates,' in line: s.packets_transmitted = line.split()[0] s.packets_received = line.split()[3] s.packet_loss_percent = line.split()[7].rstrip('%') s.duplicates = line.split()[5].lstrip('+') s.time_ms = line.split()[11].replace('ms', '') return None s.packets_transmitted = line.split()[0] s.packets_received = line.split()[3] s.packet_loss_percent = line.split()[5].rstrip('%') s.duplicates = '0' s.time_ms = line.split()[9].replace('ms', '') return None split_line = line.split(' = ')[1] split_line = split_line.split('/') output_line = { 'type': 'summary', 'destination_ip': s.destination_ip or None, 'sent_bytes': s.sent_bytes or None, 'pattern': s.pattern or None, 'packets_transmitted': s.packets_transmitted or None, 'packets_received': s.packets_received or None, 'packet_loss_percent': s.packet_loss_percent or None, 'duplicates': s.duplicates or None, 'time_ms': s.time_ms or None, 'round_trip_ms_min': split_line[0], 'round_trip_ms_avg': split_line[1], 'round_trip_ms_max': split_line[2], 'round_trip_ms_stddev': split_line[3].split()[0] } return output_line # ping response lines # request timeout if 'no answer yet for icmp_seq=' in line: timestamp = False isequence = 5 # if timestamp option is specified, then shift icmp sequence field right by one if line[0] == '[': timestamp = True isequence = 6 output_line = { 'type': 'timeout', 'destination_ip': s.destination_ip or None, 'sent_bytes': s.sent_bytes or None, 'pattern': s.pattern or None, 'timestamp': line.split()[0].lstrip('[').rstrip(']') if timestamp else None, 'icmp_seq': line.replace('=', ' ').split()[isequence] } return output_line # normal responses if ' bytes from ' in line: line = line.replace('(', ' ').replace(')', ' ').replace('=', ' ') # positions of items depend on whether ipv4/ipv6 and/or ip/hostname is used if s.ipv4 and not s.hostname: bts, rip, iseq, t2l, tms = (0, 3, 5, 7, 9) elif s.ipv4 and s.hostname: bts, rip, iseq, t2l, tms = (0, 4, 7, 9, 11) elif not s.ipv4 and not s.hostname: bts, rip, iseq, t2l, tms = (0, 3, 5, 7, 9) elif not s.ipv4 and s.hostname: bts, rip, iseq, t2l, tms = (0, 4, 7, 9, 11) # if timestamp option is specified, then shift everything right by one timestamp = False if line[0] == '[': timestamp = True bts, rip, iseq, t2l, tms = (bts + 1, rip + 1, iseq + 1, t2l + 1, tms + 1) output_line = { 'type': 'reply', 'destination_ip': s.destination_ip or None, 'sent_bytes': s.sent_bytes or None, 'pattern': s.pattern or None, 'timestamp': line.split()[0].lstrip('[').rstrip(']') if timestamp else None, 'response_bytes': line.split()[bts], 'response_ip': line.split()[rip].rstrip(':'), 'icmp_seq': line.split()[iseq], 'ttl': line.split()[t2l], 'time_ms': line.split()[tms], 'duplicate': 'DUP!' in line } return output_line def parse(data, raw=False, quiet=False, ignore_exceptions=False): """ Main text parsing generator function. Returns an iterator object. Parameters: data: (iterable) line-based text data to parse (e.g. sys.stdin or str.splitlines()) raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True ignore_exceptions: (boolean) ignore parsing exceptions if True Yields: Dictionary. Raw or processed structured data. Returns: Iterator object """ s = _state() jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.streaming_input_type_check(data) for line in data: output_line = {} try: jc.utils.streaming_line_input_type_check(line) # skip blank lines if line.strip() == '': continue # skip warning lines if line.startswith('WARNING: '): continue # check for PATTERN if line.startswith('PATTERN: '): s.pattern = line.strip().split(': ')[1] continue # detect Linux vs. BSD ping if not s.os_detected and line.strip().endswith('bytes of data.'): s.os_detected = True s.linux = True elif not s.os_detected and '-->' in line: s.os_detected = True s.bsd = True elif not s.os_detected and _ipv6_in(line) and line.strip().endswith('data bytes'): s.os_detected = True s.linux = True elif not s.os_detected and not _ipv6_in(line) and line.strip().endswith('data bytes'): s.os_detected = True s.bsd = True # parse the data if s.os_detected and s.linux: output_line = _linux_parse(line, s) elif s.os_detected and s.bsd: output_line = _bsd_parse(line, s) else: raise ParseError('Could not detect ping OS') # yield the output line if it has data if output_line: yield stream_success(output_line, ignore_exceptions) if raw else stream_success(_process(output_line), ignore_exceptions) else: continue except Exception as e: yield stream_error(e, ignore_exceptions, line) jc-1.17.3/jc/parsers/pip_list.py000066400000000000000000000053701415226333200164550ustar00rootroot00000000000000"""jc - JSON CLI output utility `pip-list` command output parser Usage (cli): $ pip list | jc --pip-list or $ jc pip list Usage (module): import jc.parsers.pip_list result = jc.parsers.pip_list.parse(pip_list_command_output) Schema: [ { "package": string, "version": string, "location": string } ] Examples: $ pip list | jc --pip-list -p [ { "package": "ansible", "version": "2.8.5" }, { "package": "antlr4-python3-runtime", "version": "4.7.2" }, { "package": "asn1crypto", "version": "0.24.0" }, ... ] """ import jc.utils import jc.parsers.universal class info(): """Provides parser metadata (version, author, etc.)""" version = '1.5' description = '`pip list` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'cygwin', 'win32', 'aix', 'freebsd'] magic_commands = ['pip list', 'pip3 list'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ # no further processing return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = [] # Clear any blank lines cleandata = list(filter(None, data.splitlines())) if jc.utils.has_data(data): # detect legacy output type if ' (' in cleandata[0]: for row in cleandata: raw_output.append({'package': row.split(' (')[0], 'version': row.split(' (')[1].rstrip(')')}) # otherwise normal table output else: # clear separator line for i, line in reversed(list(enumerate(cleandata))): if '---' in line: cleandata.pop(i) cleandata[0] = cleandata[0].lower() if cleandata: raw_output = jc.parsers.universal.simple_table_parse(cleandata) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/pip_show.py000066400000000000000000000066651415226333200164720ustar00rootroot00000000000000"""jc - JSON CLI output utility `pip-show` command output parser Usage (cli): $ pip show | jc --pip-show or $ jc pip show Usage (module): import jc.parsers.pip_show result = jc.parsers.pip_show.parse(pip_show_command_output) Schema: [ { "name": string, "version": string, "summary": string, "home_page": string, "author": string, "author_email": string, "license": string, "location": string, "requires": string, "required_by": string } ] Examples: $ pip show wrapt jc wheel | jc --pip-show -p [ { "name": "wrapt", "version": "1.11.2", "summary": "Module for decorators, wrappers and monkey patching.", "home_page": "https://github.com/GrahamDumpleton/wrapt", "author": "Graham Dumpleton", "author_email": "Graham.Dumpleton@gmail.com", "license": "BSD", "location": "/usr/local/lib/python3.7/site-packages", "requires": null, "required_by": "astroid" }, { "name": "wheel", "version": "0.33.4", "summary": "A built-package format for Python.", "home_page": "https://github.com/pypa/wheel", "author": "Daniel Holth", "author_email": "dholth@fastmail.fm", "license": "MIT", "location": "/usr/local/lib/python3.7/site-packages", "requires": null, "required_by": null } ] """ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.3' description = '`pip show` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'cygwin', 'win32', 'aix', 'freebsd'] magic_commands = ['pip show', 'pip3 show'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ # no further processing return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = [] package = {} # Clear any blank lines cleandata = list(filter(None, data.splitlines())) if jc.utils.has_data(data): for row in cleandata: if row.startswith('---'): raw_output.append(package) package = {} continue item_key = row.split(': ', maxsplit=1)[0].lower().replace('-', '_') item_value = row.split(': ', maxsplit=1)[1] if item_value == '': item_value = None package.update({item_key: item_value}) raw_output.append(package) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/ps.py000066400000000000000000000147461415226333200152630ustar00rootroot00000000000000"""jc - JSON CLI output utility `ps` command output parser `ps` options supported: - `ef` - `axu` Usage (cli): $ ps | jc --ps or $ jc ps Usage (module): import jc.parsers.ps result = jc.parsers.ps.parse(ps_command_output) Schema: [ { "uid": string, "pid": integer, "ppid": integer, "c": integer, "stime": string, "tty": string, # ? or ?? = Null "tt": string, # ?? = Null "time": string, "cmd": string, "user": string, "cpu_percent": float, "mem_percent": float, "vsz": integer, "rss": integer, "stat": string, "start": string, "command": string } ] Examples: $ ps -ef | jc --ps -p [ { "uid": "root", "pid": 1, "ppid": 0, "c": 0, "stime": "Nov01", "tty": null, "time": "00:00:11", "cmd": "/usr/lib/systemd/systemd --switched-root --system --deserialize 22" }, { "uid": "root", "pid": 2, "ppid": 0, "c": 0, "stime": "Nov01", "tty": null, "time": "00:00:00", "cmd": "[kthreadd]" }, { "uid": "root", "pid": 4, "ppid": 2, "c": 0, "stime": "Nov01", "tty": null, "time": "00:00:00", "cmd": "[kworker/0:0H]" }, ... ] $ ps -ef | jc --ps -p -r [ { "uid": "root", "pid": "1", "ppid": "0", "c": "0", "stime": "Nov01", "tty": "?", "time": "00:00:11", "cmd": "/usr/lib/systemd/systemd --switched-root --system --deserialize 22" }, { "uid": "root", "pid": "2", "ppid": "0", "c": "0", "stime": "Nov01", "tty": "?", "time": "00:00:00", "cmd": "[kthreadd]" }, { "uid": "root", "pid": "4", "ppid": "2", "c": "0", "stime": "Nov01", "tty": "?", "time": "00:00:00", "cmd": "[kworker/0:0H]" }, ... ] $ ps axu | jc --ps -p [ { "user": "root", "pid": 1, "cpu_percent": 0.0, "mem_percent": 0.1, "vsz": 128072, "rss": 6784, "tty": null, "stat": "Ss", "start": "Nov09", "time": "0:08", "command": "/usr/lib/systemd/systemd --switched-root --system --deserialize 22" }, { "user": "root", "pid": 2, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Nov09", "time": "0:00", "command": "[kthreadd]" }, { "user": "root", "pid": 4, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Nov09", "time": "0:00", "command": "[kworker/0:0H]" }, ... ] $ ps axu | jc --ps -p -r [ { "user": "root", "pid": "1", "cpu_percent": "0.0", "mem_percent": "0.1", "vsz": "128072", "rss": "6784", "tty": "?", "stat": "Ss", "start": "Nov09", "time": "0:08", "command": "/usr/lib/systemd/systemd --switched-root --system --deserialize 22" }, { "user": "root", "pid": "2", "cpu_percent": "0.0", "mem_percent": "0.0", "vsz": "0", "rss": "0", "tty": "?", "stat": "S", "start": "Nov09", "time": "0:00", "command": "[kthreadd]" }, { "user": "root", "pid": "4", "cpu_percent": "0.0", "mem_percent": "0.0", "vsz": "0", "rss": "0", "tty": "?", "stat": "S<", "start": "Nov09", "time": "0:00", "command": "[kworker/0:0H]" }, ... ] """ import jc.utils import jc.parsers.universal class info(): """Provides parser metadata (version, author, etc.)""" version = '1.6' description = '`ps` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'cygwin', 'aix', 'freebsd'] magic_commands = ['ps'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: # change key name '%cpu' to 'cpu_percent' if '%cpu' in entry: entry['cpu_percent'] = entry.pop('%cpu') # change key name '%mem' to 'mem_percent' if '%mem' in entry: entry['mem_percent'] = entry.pop('%mem') # convert ints and floats int_list = ['pid', 'ppid', 'c', 'vsz', 'rss'] float_list = ['cpu_percent', 'mem_percent'] for key in entry: if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) if key in float_list: entry[key] = jc.utils.convert_to_float(entry[key]) # clean up other fields if 'tty' in entry: if entry['tty'] == '?' or entry['tty'] == '??': entry['tty'] = None if 'tt' in entry: if entry['tt'] == '??': entry['tt'] = None return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) cleandata = data.splitlines() raw_output = [] if jc.utils.has_data(data): cleandata[0] = cleandata[0].lower() raw_output = jc.parsers.universal.simple_table_parse(cleandata) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/route.py000066400000000000000000000112031415226333200157600ustar00rootroot00000000000000"""jc - JSON CLI output utility `route` command output parser Usage (cli): $ route | jc --route or $ jc route Usage (module): import jc.parsers.route result = jc.parsers.route.parse(route_command_output) Schema: [ { "destination": string, "gateway": string, "genmask": string, "flags": string, "flags_pretty": [ string ] "metric": integer, "ref": integer, "use": integer, "mss": integer, "window": integer, "irtt": integer, "iface": string } ] Examples: $ route -ee | jc --route -p [ { "destination": "default", "gateway": "_gateway", "genmask": "0.0.0.0", "flags": "UG", "metric": 202, "ref": 0, "use": 0, "iface": "ens33", "mss": 0, "window": 0, "irtt": 0, "flags_pretty": [ "UP", "GATEWAY" ] }, { "destination": "192.168.71.0", "gateway": "0.0.0.0", "genmask": "255.255.255.0", "flags": "U", "metric": 202, "ref": 0, "use": 0, "iface": "ens33", "mss": 0, "window": 0, "irtt": 0, "flags_pretty": [ "UP" ] } ] $ route -ee | jc --route -p -r [ { "destination": "default", "gateway": "_gateway", "genmask": "0.0.0.0", "flags": "UG", "metric": "202", "ref": "0", "use": "0", "iface": "ens33", "mss": "0", "window": "0", "irtt": "0" }, { "destination": "192.168.71.0", "gateway": "0.0.0.0", "genmask": "255.255.255.0", "flags": "U", "metric": "202", "ref": "0", "use": "0", "iface": "ens33", "mss": "0", "window": "0", "irtt": "0" } ] """ import jc.utils import jc.parsers.universal class info(): """Provides parser metadata (version, author, etc.)""" version = '1.7' description = '`route` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux'] magic_commands = ['route'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: int_list = ['metric', 'ref', 'use', 'mss', 'window', 'irtt'] for key in entry: if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) # add flags_pretty # Flag mapping from https://www.man7.org/linux/man-pages/man8/route.8.html if 'flags' in entry: flag_map = { 'U': 'UP', 'H': 'HOST', 'G': 'GATEWAY', 'R': 'REINSTATE', 'D': 'DYNAMIC', 'M': 'MODIFIED', 'A': 'ADDRCONF', 'C': 'CACHE', '!': 'REJECT' } pretty_flags = [] for flag in entry['flags']: if flag in flag_map: pretty_flags.append(flag_map[flag]) entry['flags_pretty'] = pretty_flags return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) cleandata = data.splitlines()[1:] raw_output = [] if jc.utils.has_data(data): # fixup header row for ipv6 if ' Next Hop ' in cleandata[0]: cleandata[0] = cleandata[0].replace(' If', ' Iface') cleandata[0] = cleandata[0].replace(' Next Hop ', ' Next_Hop ').replace(' Flag ', ' Flags ').replace(' Met ', ' Metric ') cleandata[0] = cleandata[0].lower() raw_output = jc.parsers.universal.simple_table_parse(cleandata) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/rpm_qi.py000066400000000000000000000214061415226333200161170ustar00rootroot00000000000000"""jc - JSON CLI output utility `rpm -qi` command output parser Works with `rpm -qi [package]` or `rpm -qia`. The `..._epoch` calculated timestamp fields are naive (i.e. based on the local time of the system the parser is run on) The `..._epoch_utc` calculated timestamp fields are timezone-aware and is only available if the timezone field is UTC. Usage (cli): $ rpm -qia | jc --rpm-qi or $ jc rpm -qia Usage (module): import jc.parsers.rpm_qi result = jc.parsers.rpm_qi.parse(rpm_qi_command_output) Schema: [ { "name": string, "epoch": integer, "version": string, "release": string, "architecture": string, "install_date": string, "install_date_epoch": integer, # naive timestamp "install_date_epoch_utc": integer, # Aware timestamp if timezone is UTC "group": string, "size": integer, "license": string, "signature": string, "source_rpm": string, "build_date": string, "build_epoch": integer, # naive timestamp "build_epoch_utc": integer, # Aware timestamp if timezone is UTC "build_host": string, "relocations": string, "packager": string, "vendor": string, "url": string, "summary": string, "description": string } ] Examples: $ rpm -qia | jc --rpm-qi -p [ { "name": "make", "epoch": 1, "version": "3.82", "release": "24.el7", "architecture": "x86_64", "install_date": "Wed 16 Oct 2019 09:21:42 AM PDT", "group": "Development/Tools", "size": 1160660, "license": "GPLv2+", "signature": "RSA/SHA256, Thu 22 Aug 2019 02:34:59 PM PDT, Key ID 24c6a8a7f4a80eb5", "source_rpm": "make-3.82-24.el7.src.rpm", "build_date": "Thu 08 Aug 2019 05:47:25 PM PDT", "build_host": "x86-01.bsys.centos.org", "relocations": "(not relocatable)", "packager": "CentOS BuildSystem ", "vendor": "CentOS", "url": "http://www.gnu.org/software/make/", "summary": "A GNU tool which simplifies the build process for users", "description": "A GNU tool for controlling the generation of executables and other...", "build_epoch": 1565311645, "build_epoch_utc": null, "install_date_epoch": 1571242902, "install_date_epoch_utc": null }, { "name": "kbd-legacy", "version": "1.15.5", "release": "15.el7", "architecture": "noarch", "install_date": "Thu 15 Aug 2019 10:53:08 AM PDT", "group": "System Environment/Base", "size": 503608, "license": "GPLv2+", "signature": "RSA/SHA256, Mon 12 Nov 2018 07:17:49 AM PST, Key ID 24c6a8a7f4a80eb5", "source_rpm": "kbd-1.15.5-15.el7.src.rpm", "build_date": "Tue 30 Oct 2018 03:40:00 PM PDT", "build_host": "x86-01.bsys.centos.org", "relocations": "(not relocatable)", "packager": "CentOS BuildSystem ", "vendor": "CentOS", "url": "http://ftp.altlinux.org/pub/people/legion/kbd", "summary": "Legacy data for kbd package", "description": "The kbd-legacy package contains original keymaps for kbd package...", "build_epoch": 1540939200, "build_epoch_utc": null, "install_date_epoch": 1565891588, "install_date_epoch_utc": null }, ... ] $ rpm -qia | jc --rpm-qi -p -r [ { "name": "make", "epoch": "1", "version": "3.82", "release": "24.el7", "architecture": "x86_64", "install_date": "Wed 16 Oct 2019 09:21:42 AM PDT", "group": "Development/Tools", "size": "1160660", "license": "GPLv2+", "signature": "RSA/SHA256, Thu 22 Aug 2019 02:34:59 PM PDT, Key ID 24c6a8a7f4a80eb5", "source_rpm": "make-3.82-24.el7.src.rpm", "build_date": "Thu 08 Aug 2019 05:47:25 PM PDT", "build_host": "x86-01.bsys.centos.org", "relocations": "(not relocatable)", "packager": "CentOS BuildSystem ", "vendor": "CentOS", "url": "http://www.gnu.org/software/make/", "summary": "A GNU tool which simplifies the build process for users", "description": "A GNU tool for controlling the generation of executables and other..." }, { "name": "kbd-legacy", "version": "1.15.5", "release": "15.el7", "architecture": "noarch", "install_date": "Thu 15 Aug 2019 10:53:08 AM PDT", "group": "System Environment/Base", "size": "503608", "license": "GPLv2+", "signature": "RSA/SHA256, Mon 12 Nov 2018 07:17:49 AM PST, Key ID 24c6a8a7f4a80eb5", "source_rpm": "kbd-1.15.5-15.el7.src.rpm", "build_date": "Tue 30 Oct 2018 03:40:00 PM PDT", "build_host": "x86-01.bsys.centos.org", "relocations": "(not relocatable)", "packager": "CentOS BuildSystem ", "vendor": "CentOS", "url": "http://ftp.altlinux.org/pub/people/legion/kbd", "summary": "Legacy data for kbd package", "description": "The kbd-legacy package contains original keymaps for kbd package..." }, ... ] """ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.4' description = '`rpm -qi` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # details = 'enter any other details here' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux'] magic_commands = ['rpm -qi', 'rpm -qia', 'rpm -qai'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: int_list = ['epoch', 'size'] for key in entry: if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) if 'build_date' in entry: timestamp = jc.utils.timestamp(entry['build_date']) entry['build_epoch'] = timestamp.naive entry['build_epoch_utc'] = timestamp.utc if 'install_date' in entry: timestamp = jc.utils.timestamp(entry['install_date']) entry['install_date_epoch'] = timestamp.naive entry['install_date_epoch_utc'] = timestamp.utc return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = [] entry_obj = {} last_entry = None this_entry = None desc_entry = False description = [] if jc.utils.has_data(data): for line in filter(None, data.splitlines()): split_line = line.split(': ', maxsplit=1) if split_line[0].startswith('Name') and len(split_line) == 2: this_entry = split_line[1].strip() if this_entry != last_entry: if entry_obj: if description: entry_obj['description'] = ' '.join(description) raw_output.append(entry_obj) entry_obj = {} last_entry = this_entry desc_entry = False if len(split_line) == 2: entry_obj[split_line[0].strip().lower().replace(' ', '_')] = split_line[1].strip() if line.startswith('Description :'): desc_entry = True description = [] continue if desc_entry: description.append(line) if entry_obj: if description: entry_obj['description'] = ' '.join(description) raw_output.append(entry_obj) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/sfdisk.py000066400000000000000000000306301415226333200161120ustar00rootroot00000000000000"""jc - JSON CLI output utility `sfdisk` command output parser Supports the following `sfdisk` options: - `-l` - `-F` - `-d` (deprecated - only for older versions of util-linux) - `-uM` (deprecated - only for older versions of util-linux) - `-uC` (deprecated - only for older versions of util-linux) - `-uS` (deprecated - only for older versions of util-linux) - `-uB` (deprecated - only for older versions of util-linux) Usage (cli): # sfdisk -l | jc --sfdisk or # jc sfdisk -l Usage (module): import jc.parsers.sfdisk result = jc.parsers.sfdisk.parse(sfdisk_command_output) Schema: [ { "disk": string, "disk_size": string, "free_disk_size": string, "bytes": integer, "free_bytes": integer, "sectors": integer, "free_sectors": integer, "cylinders": integer, "heads": integer, "sectors_per_track": integer, "units": string, "logical_sector_size": integer, "physical_sector_size": integer, "min_io_size": integer, "optimal_io_size": integer, "disk_label_type": string, "disk_identifier": string, "disk_model": string, "partitions": [ { "device": string, "boot": boolean, "start": integer, "end": integer, "size": string, # Note: will be integer when using deprecated -d sfdisk option "cyls": integer, "mib": integer, "blocks": integer, "sectors": integer, "id": string, "system": string, "type": string } ] } ] Examples: # sfdisk -l | jc --sfdisk -p [ { "disk": "/dev/sda", "cylinders": 2610, "heads": 255, "sectors_per_track": 63, "units": "cylinders of 8225280 bytes, blocks of 1024 bytes, counting from 0", "partitions": [ { "device": "/dev/sda1", "boot": true, "start": 0, "end": 130, "cyls": 131, "blocks": 1048576, "id": "83", "system": "Linux" }, { "device": "/dev/sda2", "boot": false, "start": 130, "end": 2610, "cyls": 2481, "blocks": 19921920, "id": "8e", "system": "Linux LVM" }, { "device": "/dev/sda3", "boot": false, "start": 0, "end": null, "cyls": 0, "blocks": 0, "id": "0", "system": "Empty" }, { "device": "/dev/sda4", "boot": false, "start": 0, "end": null, "cyls": 0, "blocks": 0, "id": "0", "system": "Empty" } ] }, { "disk": "/dev/mapper/centos-root", "cylinders": 2218, "heads": 255, "sectors_per_track": 63 }, { "disk": "/dev/mapper/centos-swap", "cylinders": 261, "heads": 255, "sectors_per_track": 63 } ] # sfdisk -l | jc --sfdisk -p -r [ { "disk": "/dev/sda", "cylinders": "2610", "heads": "255", "sectors_per_track": "63", "units": "cylinders of 8225280 bytes, blocks of 1024 bytes, counting from 0", "partitions": [ { "device": "/dev/sda1", "boot": "*", "start": "0+", "end": "130-", "cyls": "131-", "blocks": "1048576", "id": "83", "system": "Linux" }, { "device": "/dev/sda2", "boot": null, "start": "130+", "end": "2610-", "cyls": "2481-", "blocks": "19921920", "id": "8e", "system": "Linux LVM" }, { "device": "/dev/sda3", "boot": null, "start": "0", "end": "-", "cyls": "0", "blocks": "0", "id": "0", "system": "Empty" }, { "device": "/dev/sda4", "boot": null, "start": "0", "end": "-", "cyls": "0", "blocks": "0", "id": "0", "system": "Empty" } ] }, { "disk": "/dev/mapper/centos-root", "cylinders": "2218", "heads": "255", "sectors_per_track": "63" }, { "disk": "/dev/mapper/centos-swap", "cylinders": "261", "heads": "255", "sectors_per_track": "63" } ] """ import jc.utils import jc.parsers.universal class info(): """Provides parser metadata (version, author, etc.)""" version = '1.2' description = '`sfdisk` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' compatible = ['linux'] magic_commands = ['sfdisk'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured to conform to the schema. """ int_list = ['cylinders', 'heads', 'sectors_per_track', 'start', 'end', 'cyls', 'mib', 'blocks', 'sectors', 'bytes', 'logical_sector_size', 'physical_sector_size', 'min_io_size', 'optimal_io_size', 'free_bytes', 'free_sectors'] bool_list = ['boot'] for entry in proc_data: for key in entry: if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key].replace('-', '')) if 'partitions' in entry: for p in entry['partitions']: for key in p: # legacy conversion for -d option if key == 'size': if p[key].isnumeric(): p[key] = jc.utils.convert_to_int(p[key]) # normal conversions if key in int_list: p[key] = jc.utils.convert_to_int(p[key].replace('-', '')) if key in bool_list: p[key] = jc.utils.convert_to_bool(p[key]) return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = [] item = {} partitions = [] option = '' section = '' if jc.utils.has_data(data): for line in data.splitlines(): # deprecated - only for older versions of util-linux if line.startswith('# partition table of'): if item: raw_output.append(item) item = {} partitions = [] option = 'd' item['disk'] = line.split()[4] continue # deprecated - only for older versions of util-linux if option == 'd': if line.startswith('unit: '): item['units'] = line.split()[1] section = 'partitions' continue if section == 'partitions' and line: part = {} part['device'] = line.split()[0] line = line.replace(',', ' ').replace('=', ' ') part['start'] = line.split()[3] part['size'] = line.split()[5] part['id'] = line.split()[7] part['boot'] = '*' if 'bootable' in line else None partitions.append(part) item['partitions'] = partitions continue else: # older versions of util-linux # Disk /dev/sda: 2610 cylinders, 255 heads, 63 sectors/track if line.startswith('Disk ') and 'sectors/track' in line: if item: raw_output.append(item) item = {} partitions = [] line = line.replace(':', '').replace(',', '') fields = line.split() item['disk'] = fields[1] item['cylinders'] = fields[2] item['heads'] = fields[4] item['sectors_per_track'] = fields[6] continue # util-linux v2.32.0+ (?) # Disk /dev/sda: 20 GiB, 21474836480 bytes, 41943040 sectors if line.startswith('Disk ') and line.endswith('sectors'): if item: raw_output.append(item) item = {} partitions = [] line = line.replace(':', '').replace(',', '') fields = line.split() item['disk'] = fields[1] item['disk_size'] = ' '.join(fields[2:4]) item['bytes'] = fields[4] item['sectors'] = fields[6] continue if line.startswith('Disk model: '): item['disk_model'] = line.split(':', maxsplit=1)[1].strip() continue if line.startswith('Sector size (logical/physical)'): fields = line.split() item['logical_sector_size'] = fields[3] item['physical_sector_size'] = fields[6] continue if line.startswith('I/O size (minimum/optimal)'): fields = line.split() item['min_io_size'] = fields[3] item['optimal_io_size'] = fields[6] continue if line.startswith('Disklabel type'): item['disk_label_type'] = line.split(':', maxsplit=1)[1].strip() continue if line.startswith('Disk identifier'): item['disk_identifier'] = line.split(':', maxsplit=1)[1].strip() continue if line.startswith('Units: '): item['units'] = line.split(':')[1].strip() continue # sfdisk -F if line.startswith('Unpartitioned space'): line = line.replace(':', '').replace(',', '') fields = line.split() item['disk'] = fields[2] item['free_disk_size'] = ' '.join(fields[3:5]) item['free_bytes'] = fields[5] item['free_sectors'] = fields[7] continue # partition lines if 'Start' in line and 'End' in line and ('Sectors' in line or 'Device' in line): section = 'partitions' partitions.append(line.lower().replace('#', ' ')) continue if section == 'partitions' and line: partitions.append(line) continue if section == 'partitions' and line == '': item['partitions'] = jc.parsers.universal.sparse_table_parse(partitions) section = '' partitions = [] continue # get final partitions if there are any left over if section == 'partitions' and option != 'd' and partitions: item['partitions'] = jc.parsers.universal.sparse_table_parse(partitions) if item: raw_output.append(item) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/shadow.py000066400000000000000000000102161415226333200161120ustar00rootroot00000000000000"""jc - JSON CLI output utility `/etc/shadow` file parser Usage (cli): $ sudo cat /etc/shadow | jc --shadow Usage (module): import jc.parsers.shadow result = jc.parsers.shadow.parse(shadow_file_output) Schema: [ { "username": string, "password": string, "last_changed": integer, "minimum": integer, "maximum": integer, "warn": integer, "inactive": integer, "expire": integer } ] Examples: $ sudo cat /etc/shadow | jc --shadow -p [ { "username": "root", "password": "*", "last_changed": 18113, "minimum": 0, "maximum": 99999, "warn": 7, "inactive": null, "expire": null }, { "username": "daemon", "password": "*", "last_changed": 18113, "minimum": 0, "maximum": 99999, "warn": 7, "inactive": null, "expire": null }, { "username": "bin", "password": "*", "last_changed": 18113, "minimum": 0, "maximum": 99999, "warn": 7, "inactive": null, "expire": null }, ... ] $ sudo cat /etc/shadow | jc --shadow -p -r [ { "username": "root", "password": "*", "last_changed": "18113", "minimum": "0", "maximum": "99999", "warn": "7", "inactive": "", "expire": "" }, { "username": "daemon", "password": "*", "last_changed": "18113", "minimum": "0", "maximum": "99999", "warn": "7", "inactive": "", "expire": "" }, { "username": "bin", "password": "*", "last_changed": "18113", "minimum": "0", "maximum": "99999", "warn": "7", "inactive": "", "expire": "" }, ... ] """ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.4' description = '`/etc/shadow` file parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # details = 'enter any other details here' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'aix', 'freebsd'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: int_list = ['last_changed', 'minimum', 'maximum', 'warn', 'inactive', 'expire'] for key in entry: if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = [] # Clear any blank lines cleandata = list(filter(None, data.splitlines())) if jc.utils.has_data(data): for entry in cleandata: if entry.startswith('#'): continue output_line = {} fields = entry.split(':') output_line['username'] = fields[0] output_line['password'] = fields[1] output_line['last_changed'] = fields[2] output_line['minimum'] = fields[3] output_line['maximum'] = fields[4] output_line['warn'] = fields[5] output_line['inactive'] = fields[6] output_line['expire'] = fields[7] raw_output.append(output_line) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/ss.py000066400000000000000000000264001415226333200152540ustar00rootroot00000000000000"""jc - JSON CLI output utility `ss` command output parser Extended information options like -e and -p are not supported and may cause parsing irregularities. Usage (cli): $ ss | jc --ss or $ jc ss Usage (module): import jc.parsers.ss result = jc.parsers.ss.parse(ss_command_output) Schema: Information from https://www.cyberciti.biz/files/ss.html used to define field names [ { "netid": string, "state": string, "recv_q": integer, "send_q": integer, "local_address": string, "local_port": string, "local_port_num": integer, "peer_address": string, "peer_port": string, "peer_port_num": integer, "interface": string, "link_layer" string, "channel": string, "path": string, "pid": integer } ] Examples: $ sudo ss -a | jc --ss -p [ { "netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "channel": "rtnl:kernel" }, { "netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "pid": 893, "channel": "rtnl:systemd-resolve" }, ... { "netid": "p_raw", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "link_layer": "LLDP", "interface": "ens33" }, { "netid": "u_dgr", "state": "UNCONN", "recv_q": 0, "send_q": 0, "local_port": "93066", "peer_address": "*", "peer_port": "0", "path": "/run/user/1000/systemd/notify" }, { "netid": "u_seq", "state": "LISTEN", "recv_q": 0, "send_q": 128, "local_port": "20699", "peer_address": "*", "peer_port": "0", "path": "/run/udev/control" }, ... { "netid": "icmp6", "state": "UNCONN", "recv_q": 0, "send_q": 0, "local_address": "*", "local_port": "ipv6-icmp", "peer_address": "*", "peer_port": "*", "interface": "ens33" }, { "netid": "udp", "state": "UNCONN", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.53", "local_port": "domain", "peer_address": "0.0.0.0", "peer_port": "*", "interface": "lo" }, { "netid": "tcp", "state": "LISTEN", "recv_q": 0, "send_q": 128, "local_address": "127.0.0.53", "local_port": "domain", "peer_address": "0.0.0.0", "peer_port": "*", "interface": "lo" }, { "netid": "tcp", "state": "LISTEN", "recv_q": 0, "send_q": 128, "local_address": "0.0.0.0", "local_port": "ssh", "peer_address": "0.0.0.0", "peer_port": "*" }, { "netid": "tcp", "state": "LISTEN", "recv_q": 0, "send_q": 128, "local_address": "[::]", "local_port": "ssh", "peer_address": "[::]", "peer_port": "*" }, { "netid": "v_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_address": "999900439", "local_port": "1023", "peer_address": "0", "peer_port": "976", "local_port_num": 1023, "peer_port_num": 976 } ] $ sudo ss -a | jc --ss -p -r [ { "netid": "nl", "state": "UNCONN", "recv_q": "0", "send_q": "0", "peer_address": "*", "channel": "rtnl:kernel" }, { "netid": "nl", "state": "UNCONN", "recv_q": "0", "send_q": "0", "peer_address": "*", "pid": "893", "channel": "rtnl:systemd-resolve" }, ... { "netid": "p_raw", "state": "UNCONN", "recv_q": "0", "send_q": "0", "peer_address": "*", "link_layer": "LLDP", "interface": "ens33" }, { "netid": "u_dgr", "state": "UNCONN", "recv_q": "0", "send_q": "0", "local_port": "93066", "peer_address": "*", "peer_port": "0", "path": "/run/user/1000/systemd/notify" }, { "netid": "u_seq", "state": "LISTEN", "recv_q": "0", "send_q": "128", "local_port": "20699", "peer_address": "*", "peer_port": "0", "path": "/run/udev/control" }, ... { "netid": "icmp6", "state": "UNCONN", "recv_q": "0", "send_q": "0", "local_address": "*", "local_port": "ipv6-icmp", "peer_address": "*", "peer_port": "*", "interface": "ens33" }, { "netid": "udp", "state": "UNCONN", "recv_q": "0", "send_q": "0", "local_address": "127.0.0.53", "local_port": "domain", "peer_address": "0.0.0.0", "peer_port": "*", "interface": "lo" }, { "netid": "tcp", "state": "LISTEN", "recv_q": "0", "send_q": "128", "local_address": "127.0.0.53", "local_port": "domain", "peer_address": "0.0.0.0", "peer_port": "*", "interface": "lo" }, { "netid": "tcp", "state": "LISTEN", "recv_q": "0", "send_q": "128", "local_address": "0.0.0.0", "local_port": "ssh", "peer_address": "0.0.0.0", "peer_port": "*" }, { "netid": "tcp", "state": "LISTEN", "recv_q": "0", "send_q": "128", "local_address": "[::]", "local_port": "ssh", "peer_address": "[::]", "peer_port": "*" }, { "netid": "v_str", "state": "ESTAB", "recv_q": "0", "send_q": "0", "local_address": "999900439", "local_port": "1023", "peer_address": "0", "peer_port": "976" } ] """ import string import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.5' description = '`ss` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux'] magic_commands = ['ss'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: int_list = ['recv_q', 'send_q', 'pid'] for key in entry: if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) if 'local_port' in entry: local_num = jc.utils.convert_to_int(entry['local_port']) if local_num is not None and local_num >= 0: entry['local_port_num'] = local_num if 'peer_port' in entry: peer_num = jc.utils.convert_to_int(entry['peer_port']) if peer_num is not None and peer_num >= 0: entry['peer_port_num'] = peer_num return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) contains_colon = ['nl', 'p_raw', 'raw', 'udp', 'tcp', 'v_str', 'icmp6'] raw_output = [] # Clear any blank lines cleandata = list(filter(None, data.splitlines())) if jc.utils.has_data(data): header_text = cleandata[0].lower() header_text = header_text.replace('netidstate', 'netid state') header_text = header_text.replace('local address:port', 'local_address local_port') header_text = header_text.replace('peer address:port', 'peer_address peer_port') header_text = header_text.replace('-', '_') header_list = header_text.split() for entry in cleandata[1:]: output_line = {} if entry[0] not in string.whitespace: # fix weird ss bug where first two columns have no space between them sometimes entry = entry[:5] + ' ' + entry[5:] entry_list = entry.split() if entry_list[0] in contains_colon and ':' in entry_list[4]: l_field = entry_list[4].rsplit(':', maxsplit=1) l_address = l_field[0] l_port = l_field[1] entry_list[4] = l_address entry_list.insert(5, l_port) if entry_list[0] in contains_colon and ':' in entry_list[6]: p_field = entry_list[6].rsplit(':', maxsplit=1) p_address = p_field[0] p_port = p_field[1] entry_list[6] = p_address entry_list.insert(7, p_port) output_line = dict(zip(header_list, entry_list)) # some post processing to pull out fields: interface, link_layer, path, pid, channel # Information from https://www.cyberciti.biz/files/ss.html used to define field names if '%' in output_line['local_address']: i_field = output_line['local_address'].rsplit('%', maxsplit=1) output_line['local_address'] = i_field[0] output_line['interface'] = i_field[1] if output_line['netid'] == 'nl': channel = output_line.pop('local_address') channel = channel + ':' + output_line.pop('local_port') if '/' in channel: pid = channel.rsplit('/', maxsplit=1)[1] channel = channel.rsplit('/', maxsplit=1)[0] output_line['pid'] = pid output_line['channel'] = channel if output_line['netid'] == 'p_raw': output_line['link_layer'] = output_line.pop('local_address') output_line['interface'] = output_line.pop('local_port') if output_line['netid'] not in contains_colon: output_line['path'] = output_line.pop('local_address') raw_output.append(output_line) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/stat.py000066400000000000000000000264541415226333200156130ustar00rootroot00000000000000"""jc - JSON CLI output utility `stat` command output parser The `xxx_epoch` calculated timestamp fields are naive (i.e. based on the local time of the system the parser is run on) The `xxx_epoch_utc` calculated timestamp fields are timezone-aware and are only available if the timezone field is UTC. Usage (cli): $ stat * | jc --stat or $ jc stat * Usage (module): import jc.parsers.stat result = jc.parsers.stat.parse(stat_command_output) Schema: [ { "file": string, "link_to" string, "size": integer, "blocks": integer, "io_blocks": integer, "type": string, "device": string, "inode": integer, "links": integer, "access": string, "flags": string, "uid": integer, "user": string, "gid": integer, "group": string, "access_time": string, # - = null "access_time_epoch": integer, # naive timestamp "access_time_epoch_utc": integer, # timezone-aware timestamp "modify_time": string, # - = null "modify_time_epoch": integer, # naive timestamp "modify_time_epoch_utc": integer, # timezone-aware timestamp "change_time": string, # - = null "change_time_epoch": integer, # naive timestamp "change_time_epoch_utc": integer, # timezone-aware timestamp "birth_time": string, # - = null "birth_time_epoch": integer, # naive timestamp "birth_time_epoch_utc": integer, # timezone-aware timestamp "unix_device": integer, "rdev": integer, "block_size": integer, "unix_flags": string } ] Examples: $ stat /bin/* | jc --stat -p [ { "file": "/bin/bash", "size": 1113504, "blocks": 2176, "io_blocks": 4096, "type": "regular file", "device": "802h/2050d", "inode": 131099, "links": 1, "access": "0755", "flags": "-rwxr-xr-x", "uid": 0, "user": "root", "gid": 0, "group": "root", "access_time": "2019-11-14 08:18:03.509681766 +0000", "modify_time": "2019-06-06 22:28:15.000000000 +0000", "change_time": "2019-08-12 17:21:29.521945390 +0000", "birth_time": null, "access_time_epoch": 1573748283, "access_time_epoch_utc": 1573719483, "modify_time_epoch": 1559885295, "modify_time_epoch_utc": 1559860095, "change_time_epoch": 1565655689, "change_time_epoch_utc": 1565630489, "birth_time_epoch": null, "birth_time_epoch_utc": null }, { "file": "/bin/btrfs", "size": 716464, "blocks": 1400, "io_blocks": 4096, "type": "regular file", "device": "802h/2050d", "inode": 131100, "links": 1, "access": "0755", "flags": "-rwxr-xr-x", "uid": 0, "user": "root", "gid": 0, "group": "root", "access_time": "2019-11-14 08:18:28.990834276 +0000", "modify_time": "2018-03-12 23:04:27.000000000 +0000", "change_time": "2019-08-12 17:21:29.545944399 +0000", "birth_time": null, "access_time_epoch": 1573748308, "access_time_epoch_utc": 1573719508, "modify_time_epoch": 1520921067, "modify_time_epoch_utc": 1520895867, "change_time_epoch": 1565655689, "change_time_epoch_utc": 1565630489, "birth_time_epoch": null, "birth_time_epoch_utc": null }, ... ] $ stat /bin/* | jc --stat -p -r [ { "file": "/bin/bash", "size": "1113504", "blocks": "2176", "io_blocks": "4096", "type": "regular file", "device": "802h/2050d", "inode": "131099", "links": "1", "access": "0755", "flags": "-rwxr-xr-x", "uid": "0", "user": "root", "gid": "0", "group": "root", "access_time": "2019-11-14 08:18:03.509681766 +0000", "modify_time": "2019-06-06 22:28:15.000000000 +0000", "change_time": "2019-08-12 17:21:29.521945390 +0000", "birth_time": null }, { "file": "/bin/btrfs", "size": "716464", "blocks": "1400", "io_blocks": "4096", "type": "regular file", "device": "802h/2050d", "inode": "131100", "links": "1", "access": "0755", "flags": "-rwxr-xr-x", "uid": "0", "user": "root", "gid": "0", "group": "root", "access_time": "2019-11-14 08:18:28.990834276 +0000", "modify_time": "2018-03-12 23:04:27.000000000 +0000", "change_time": "2019-08-12 17:21:29.545944399 +0000", "birth_time": null }, ... ] """ import shlex import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.10' description = '`stat` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'freebsd'] magic_commands = ['stat'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: int_list = ['size', 'blocks', 'io_blocks', 'inode', 'links', 'uid', 'gid', 'unix_device', 'rdev', 'block_size'] for key in entry: if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) # turn - into null for time fields and add calculated timestamp fields for entry in proc_data: null_list = ['access_time', 'modify_time', 'change_time', 'birth_time'] for key in null_list: if key in entry: if entry[key] == '-': entry[key] = None ts = jc.utils.timestamp(entry[key]) entry[key + '_epoch'] = ts.naive entry[key + '_epoch_utc'] = ts.utc return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = [] # Clear any blank lines cleandata = list(filter(None, data.splitlines())) if jc.utils.has_data(data): # linux output if cleandata[0].startswith(' File: '): # stats output contains 8 lines for line in cleandata: # line #1 if line.find('File:') == 2: output_line = {} line_list = line.split(maxsplit=1) output_line['file'] = line_list[1] # populate link_to field if -> found if ' -> ' in output_line['file']: filename = output_line['file'].split(' -> ')[0].strip('\u2018').rstrip('\u2019') link = output_line['file'].split(' -> ')[1].strip('\u2018').rstrip('\u2019') output_line['file'] = filename output_line['link_to'] = link else: filename = output_line['file'].split(' -> ')[0].strip('\u2018').rstrip('\u2019') output_line['file'] = filename continue # line #2 if line.find('Size:') == 2: line_list = line.split(maxsplit=7) output_line['size'] = line_list[1] output_line['blocks'] = line_list[3] output_line['io_blocks'] = line_list[6] output_line['type'] = line_list[7] continue # line #3 if line.startswith('Device:'): line_list = line.split() output_line['device'] = line_list[1] output_line['inode'] = line_list[3] output_line['links'] = line_list[5] continue # line #4 if line.startswith('Access: ('): line = line.replace('(', ' ').replace(')', ' ').replace('/', ' ') line_list = line.split() output_line['access'] = line_list[1] output_line['flags'] = line_list[2] output_line['uid'] = line_list[4] output_line['user'] = line_list[5] output_line['gid'] = line_list[7] output_line['group'] = line_list[8] continue # line #5 if line.startswith('Access: 2'): line_list = line.split(maxsplit=1) output_line['access_time'] = line_list[1] continue # line #6 if line.startswith('Modify:'): line_list = line.split(maxsplit=1) output_line['modify_time'] = line_list[1] continue # line #7 if line.startswith('Change:'): line_list = line.split(maxsplit=1) output_line['change_time'] = line_list[1] continue # line #8 if line.find('Birth:') == 1: line_list = line.split(maxsplit=1) output_line['birth_time'] = line_list[1] raw_output.append(output_line) continue # FreeBSD/OSX output else: for line in cleandata: value = shlex.split(line) output_line = { 'file': ' '.join(value[15:]), 'unix_device': value[0], 'inode': value[1], 'flags': value[2], 'links': value[3], 'user': value[4], 'group': value[5], 'rdev': value[6], 'size': value[7], 'access_time': value[8], 'modify_time': value[9], 'change_time': value[10], 'birth_time': value[11], 'block_size': value[12], 'blocks': value[13], 'unix_flags': value[14] } raw_output.append(output_line) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/sysctl.py000066400000000000000000000110751415226333200161520ustar00rootroot00000000000000"""jc - JSON CLI output utility `sysctl -a` command output parser Note: Since `sysctl` output is not easily parsable only a very simple key/value object will be output. An attempt is made to convert obvious integers and floats. If no conversion is desired, use the `-r` command-line argument or the `raw=True` argument in `parse()`. Usage (cli): $ sysctl -a | jc --sysctl or $ jc sysctl -a Usage (module): import jc.parsers.sysctl result = jc.parsers.sysctl.parse(sysctl_command_output) Schema: { "key1": string/integer/float, # best guess based on value "key2": string/integer/float, "key3": string/integer/float } Examples: $ sysctl -a | jc --sysctl -p { "user.cs_path": "/usr/bin:/bin:/usr/sbin:/sbin", "user.bc_base_max": 99, "user.bc_dim_max": 2048, "user.bc_scale_max": 99, "user.bc_string_max": 1000, "user.coll_weights_max": 2, "user.expr_nest_max": 32 ... } $ sysctl -a | jc --sysctl -p -r { "user.cs_path": "/usr/bin:/bin:/usr/sbin:/sbin", "user.bc_base_max": "99", "user.bc_dim_max": "2048", "user.bc_scale_max": "99", "user.bc_string_max": "1000", "user.coll_weights_max": "2", "user.expr_nest_max": "32", ... } """ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.2' description = '`sysctl` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # details = 'enter any other details here' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'freebsd'] magic_commands = ['sysctl'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (Dictionary) raw structured data to process Returns: Dictionary. Structured data to conform to the schema. """ for key in proc_data: try: proc_data[key] = int(proc_data[key]) except (ValueError): try: proc_data[key] = float(proc_data[key]) except (ValueError): pass return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: Dictionary. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = {} if jc.utils.has_data(data): data = data.splitlines() # linux uses = and bsd uses : if ' = ' in data[0]: delim = ' = ' else: delim = ': ' for line in data: linedata = line.split(delim, maxsplit=1) # bsd adds values to newlines, which need to be fixed up with this try/except block try: key = linedata[0] value = linedata[1] # syctl -a repeats some keys on linux. Append values from repeating keys # to the previous key value if key in raw_output: existing_value = raw_output[key] raw_output[key] = existing_value + '\n' + value continue # fix for weird multiline output in bsd # if the key looks strange (has spaces or no dots) then it's probably a value field # on a separate line. in this case, just append it to the previous key in the dictionary. if '.' not in key or ' ' in key: previous_key = [*raw_output.keys()][-1] raw_output[previous_key] = raw_output[previous_key] + '\n' + line continue # if the key looks normal then just add to the dictionary as normal else: raw_output[key] = value continue # if there is an IndexError exception, then there was no delimiter in the line. # In this case just append the data line as a value to the previous key. except IndexError: prior_key = [*raw_output.keys()][-1] raw_output[prior_key] = raw_output[prior_key] + '\n' + line continue if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/systemctl.py000066400000000000000000000061341415226333200166600ustar00rootroot00000000000000"""jc - JSON CLI output utility `systemctl` command output parser Usage (cli): $ systemctl | jc --systemctl or $ jc systemctl Usage (module): import jc.parsers.systemctl result = jc.parsers.systemctl.parse(systemctl_command_output) Schema: [ { "unit": string, "load": string, "active": string, "sub": string, "description": string } ] Examples: $ systemctl -a | jc --systemctl -p [ { "unit": "proc-sys-fs-binfmt_misc.automount", "load": "loaded", "active": "active", "sub": "waiting", "description": "Arbitrary Executable File Formats File System Automount Point" }, { "unit": "dev-block-8:2.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "LVM PV 3klkIj-w1qk-DkJi-0XBJ-y3o7-i2Ac-vHqWBM on /dev/sda2 2" }, { "unit": "dev-cdrom.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "VMware_Virtual_IDE_CDROM_Drive" }, ... ] """ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.5' description = '`systemctl` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux'] magic_commands = ['systemctl'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ # nothing more to process return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) # Clear any blank lines linedata = list(filter(None, data.splitlines())) raw_output = [] if jc.utils.has_data(data): # clean up non-ascii characters, if any cleandata = [] for entry in linedata: cleandata.append(entry.encode('ascii', errors='ignore').decode()) header_text = cleandata[0] header_list = header_text.lower().split() raw_output = [] for entry in cleandata[1:]: if 'LOAD = ' in entry: break else: entry_list = entry.rstrip().split(maxsplit=4) output_line = dict(zip(header_list, entry_list)) raw_output.append(output_line) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/systemctl_lj.py000066400000000000000000000070371415226333200173500ustar00rootroot00000000000000"""jc - JSON CLI output utility `systemctl list-jobs` command output parser Usage (cli): $ systemctl list-jobs | jc --systemctl-lj or $ jc systemctl list-jobs Usage (module): import jc.parsers.systemctl_lj result = jc.parsers.systemctl_lj.parse(systemctl_lj_command_output) Schema: [ { "job": integer, "unit": string, "type": string, "state": string } ] Examples: $ systemctl list-jobs| jc --systemctl-lj -p [ { "job": 3543, "unit": "nginxAfterGlusterfs.service", "type": "start", "state": "waiting" }, { "job": 3545, "unit": "glusterReadyForLocalhostMount.service", "type": "start", "state": "running" }, { "job": 3506, "unit": "nginx.service", "type": "start", "state": "waiting" } ] $ systemctl list-jobs| jc --systemctl-lj -p -r [ { "job": "3543", "unit": "nginxAfterGlusterfs.service", "type": "start", "state": "waiting" }, { "job": "3545", "unit": "glusterReadyForLocalhostMount.service", "type": "start", "state": "running" }, { "job": "3506", "unit": "nginx.service", "type": "start", "state": "waiting" } ] """ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.6' description = '`systemctl list-jobs` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux'] magic_commands = ['systemctl list-jobs'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: int_list = ['job'] for key in entry: if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) # Clear any blank lines linedata = list(filter(None, data.splitlines())) raw_output = [] if jc.utils.has_data(data): cleandata = [] # clean up non-ascii characters, if any for entry in linedata: cleandata.append(entry.encode('ascii', errors='ignore').decode()) header_text = cleandata[0] header_text = header_text.lower() header_list = header_text.split() raw_output = [] for entry in cleandata[1:]: if 'No jobs running.' in entry or 'jobs listed.' in entry: break else: entry_list = entry.split(maxsplit=4) output_line = dict(zip(header_list, entry_list)) raw_output.append(output_line) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/systemctl_ls.py000066400000000000000000000055731415226333200173640ustar00rootroot00000000000000"""jc - JSON CLI output utility `systemctl list-sockets` command output parser Usage (cli): $ systemctl list-sockets | jc --systemctl-ls or $ jc systemctl list-sockets Usage (module): import jc.parsers.systemctl_ls result = jc.parsers.systemctl_ls.parse(systemctl_ls_command_output) Schema: [ { "listen": string, "unit": string, "activates": string } ] Examples: $ systemctl list-sockets | jc --systemctl-ls -p [ { "listen": "/dev/log", "unit": "systemd-journald.socket", "activates": "systemd-journald.service" }, { "listen": "/run/dbus/system_bus_socket", "unit": "dbus.socket", "activates": "dbus.service" }, { "listen": "/run/dmeventd-client", "unit": "dm-event.socket", "activates": "dm-event.service" }, ... ] """ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.5' description = '`systemctl list-sockets` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux'] magic_commands = ['systemctl list-sockets'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ # nothing more to process return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) # Clear any blank lines linedata = list(filter(None, data.splitlines())) raw_output = [] if jc.utils.has_data(data): cleandata = [] # clean up non-ascii characters, if any for entry in linedata: cleandata.append(entry.encode('ascii', errors='ignore').decode()) header_text = cleandata[0].lower() header_list = header_text.split() raw_output = [] for entry in cleandata[1:]: if 'sockets listed.' in entry: break else: entry_list = entry.rsplit(maxsplit=2) output_line = dict(zip(header_list, entry_list)) raw_output.append(output_line) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/systemctl_luf.py000066400000000000000000000054611415226333200175300ustar00rootroot00000000000000"""jc - JSON CLI output utility `systemctl list-unit-files` command output parser Usage (cli): $ systemctl list-unit-files | jc --systemctl-luf or $ jc systemctl list-unit-files Usage (module): import jc.parsers.systemctl_luf result = jc.parsers.systemctl_luf.parse(systemctl_luf_command_output) Schema: [ { "unit_file": string, "state": string } ] Examples: $ systemctl list-unit-files | jc --systemctl-luf -p [ { "unit_file": "proc-sys-fs-binfmt_misc.automount", "state": "static" }, { "unit_file": "dev-hugepages.mount", "state": "static" }, { "unit_file": "dev-mqueue.mount", "state": "static" }, ... ] """ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.5' description = '`systemctl list-unit-files` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux'] magic_commands = ['systemctl list-unit-files'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ # nothing more to process return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) # Clear any blank lines linedata = list(filter(None, data.splitlines())) raw_output = [] if jc.utils.has_data(data): cleandata = [] # clean up non-ascii characters, if any for entry in linedata: cleandata.append(entry.encode('ascii', errors='ignore').decode()) header_text = cleandata[0] header_text = header_text.lower().replace('unit file', 'unit_file') header_list = header_text.split() raw_output = [] for entry in cleandata[1:]: if 'unit files listed.' in entry: break else: entry_list = entry.split(maxsplit=4) output_line = dict(zip(header_list, entry_list)) raw_output.append(output_line) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/systeminfo.py000066400000000000000000000415331415226333200170330ustar00rootroot00000000000000"""jc - JSON CLI output utility `systeminfo` command output parser Blank or missing elements are set to `null`. The `original_install_date_epoch` and `system_boot_time_epoch` calculated timestamp fields are naive (i.e. based on the local time of the system the parser is run on) The `original_install_date_epoch_utc` and `system_boot_time_epoch_utc` calculated timestamp fields are timezone-aware and are only available if the timezone field is UTC. Usage (cli): $ systeminfo | jc --systeminfo Usage (module): import jc.parsers.systeminfo result = jc.parsers.systeminfo.parse(systeminfo_command_output) Schema: { "host_name": string, "os_name": string, "os_version": string, "os_manufacturer": string, "os_configuration": string, "os_build_type": string, "registered_owner": string, "registered_organization": string, "product_id": string, "original_install_date": string, "original_install_date_epoch": integer, # naive timestamp "original_install_date_epoch_utc": integer, # timezone-aware timestamp "system_boot_time": string, "system_boot_time_epoch": integer, # naive timestamp "system_boot_time_epoch_utc": integer, # timezone-aware timestamp "system_manufacturer": string, "system_model": string, "system_type": string, "processors": [ string ], "bios_version": string, "windows_directory": string, "system_directory": string, "boot_device": string, "system_locale": string, "input_locale": string, "time_zone": string, "total_physical_memory_mb": string, "available_physical_memory_mb": integer, "virtual_memory_max_size_mb": integer, "virtual_memory_available_mb": integer, "virtual_memory_in_use_mb": integer, "page_file_locations": string, "domain": string, "logon_server": string, "hotfixs": [ string ], "network_cards": [ { "name": string, "connection_name": string, "status": string, "dhcp_enabled": boolean, "dhcp_server": string, "ip_addresses": [ string ] } ], "hyperv_requirements": { "vm_monitor_mode_extensions": boolean, "virtualization_enabled_in_firmware": boolean, "second_level_address_translation": boolean, "data_execution_prevention_available": boolean } } Examples: $ systeminfo | jc --systeminfo -p { "host_name": "TESTLAPTOP", "os_name": "Microsoft Windows 10 Enterprise", "os_version": "10.0.17134 N/A Build 17134", "os_manufacturer": "Microsoft Corporation", "os_configuration": "Member Workstation", "os_build_type": "Multiprocessor Free", "registered_owner": "Test, Inc.", "registered_organization": "Test, Inc.", "product_id": "11111-11111-11111-AA111", "original_install_date": "3/26/2019, 3:51:30 PM", "system_boot_time": "3/30/2021, 6:13:59 AM", "system_manufacturer": "Dell Inc.", "system_model": "Precision 5530", "system_type": "x64-based PC", "processors": [ "Intel64 Family 6 Model 158 Stepping 10 GenuineIntel ~2592 Mhz" ], "bios_version": "Dell Inc. 1.16.2, 4/21/2020", "windows_directory": "C:\\WINDOWS", "system_directory": "C:\\WINDOWS\\system32", "boot_device": "\\Device\\HarddiskVolume2", "system_locale": "en-us;English (United States)", "input_locale": "en-us;English (United States)", "time_zone": "(UTC+00:00) UTC", "total_physical_memory_mb": 32503, "available_physical_memory_mb": 19743, "virtual_memory_max_size_mb": 37367, "virtual_memory_available_mb": 22266, "virtual_memory_in_use_mb": 15101, "page_file_locations": "C:\\pagefile.sys", "domain": "test.com", "logon_server": "\\\\TESTDC01", "hotfixs": [ "KB2693643", "KB4601054" ], "network_cards": [ { "name": "Intel(R) Wireless-AC 9260 160MHz", "connection_name": "Wi-Fi", "status": null, "dhcp_enabled": true, "dhcp_server": "192.168.2.1", "ip_addresses": [ "192.168.2.219" ] } ], "hyperv_requirements": { "vm_monitor_mode_extensions": true, "virtualization_enabled_in_firmware": true, "second_level_address_translation": false, "data_execution_prevention_available": true }, "original_install_date_epoch": 1553640690, "original_install_date_epoch_utc": 1553615490, "system_boot_time_epoch": 1617110039, "system_boot_time_epoch_utc": 1617084839 } $ systeminfo | jc --systeminfo -p -r { "host_name": "TESTLAPTOP", "os_name": "Microsoft Windows 10 Enterprise", "os_version": "10.0.17134 N/A Build 17134", "os_manufacturer": "Microsoft Corporation", "os_configuration": "Member Workstation", "os_build_type": "Multiprocessor Free", "registered_owner": "Test, Inc.", "registered_organization": "Test, Inc.", "product_id": "11111-11111-11111-AA111", "original_install_date": "3/26/2019, 3:51:30 PM", "system_boot_time": "3/30/2021, 6:13:59 AM", "system_manufacturer": "Dell Inc.", "system_model": "Precision 5530", "system_type": "x64-based PC", "processors": [ "Intel64 Family 6 Model 158 Stepping 10 GenuineIntel ~2592 Mhz" ], "bios_version": "Dell Inc. 1.16.2, 4/21/2020", "windows_directory": "C:\\WINDOWS", "system_directory": "C:\\WINDOWS\\system32", "boot_device": "\\Device\\HarddiskVolume2", "system_locale": "en-us;English (United States)", "input_locale": "en-us;English (United States)", "time_zone": "(UTC+00:00) UTC", "total_physical_memory_mb": "32,503 MB", "available_physical_memory_mb": "19,743 MB", "virtual_memory_max_size_mb": "37,367 MB", "virtual_memory_available_mb": "22,266 MB", "virtual_memory_in_use_mb": "15,101 MB", "page_file_locations": "C:\\pagefile.sys", "domain": "test.com", "logon_server": "\\\\TESTDC01", "hotfixs": [ "KB2693643", "KB4601054" ], "network_cards": [ { "name": "Intel(R) Wireless-AC 9260 160MHz", "connection_name": "Wi-Fi", "status": "", "dhcp_enabled": "Yes", "dhcp_server": "192.168.2.1", "ip_addresses": [ "192.168.2.219" ] } ], "hyperv_requirements": { "vm_monitor_mode_extensions": "Yes", "virtualization_enabled_in_firmware": "Yes", "second_level_address_translation": "No", "data_execution_prevention_available": "Yes" } } """ import re import jc.utils class info: """Provides parser metadata (version, author, etc.)""" version = "1.1" description = "`systeminfo` command parser" author = "Jon Smith" author_email = "jon@rebelliondefense.com" # details = 'enter any other details here' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ["win32"] magic_commands = ["systeminfo"] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (Dictionary) raw structured data to process Returns: Dictionary. Some keys are optional. Example: a system without hyper-v capabilities will not have a 'hyperv_requirements' key, and a system already running hyper-v will have an empty "hyperv_requirements" object. Structured data to conform to the schema. """ # convert empty strings to None/null for item in proc_data: if isinstance(proc_data[item], str) and not proc_data[item]: proc_data[item] = None for i, nic in enumerate(proc_data["network_cards"]): proc_data["network_cards"][i]["dhcp_enabled"] = jc.utils.convert_to_bool( nic["dhcp_enabled"] ) # convert empty strings to None/null for item in nic: if isinstance(nic[item], str) and not nic[item]: proc_data["network_cards"][i][item] = None int_list = [ "total_physical_memory_mb", "available_physical_memory_mb", "virtual_memory_max_size_mb", "virtual_memory_available_mb", "virtual_memory_in_use_mb", ] for key in int_list: proc_data[key] = jc.utils.convert_to_int(proc_data[key]) dt_list = ["original_install_date", "system_boot_time"] for key in dt_list: tz = proc_data.get("time_zone", "") if tz: # convert # from: (UTC-08:00) Pacific Time (US & Canada) # to: (UTC-0800) tz_fields = tz.split() tz = " " + tz_fields[0].replace(":", "") proc_data[key + '_epoch'] = jc.utils.timestamp(f"{proc_data.get(key)}{tz}").naive proc_data[key + '_epoch_utc'] = jc.utils.timestamp(f"{proc_data.get(key)}{tz}").utc hyperv_key = "hyperv_requirements" hyperv_subkey_list = [ "vm_monitor_mode_extensions", "virtualization_enabled_in_firmware", "second_level_address_translation", "data_execution_prevention_available", ] if hyperv_key in proc_data: for key in hyperv_subkey_list: if key in proc_data[hyperv_key]: proc_data[hyperv_key][key] = jc.utils.convert_to_bool( proc_data[hyperv_key][key] ) return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) delim = ":" # k/v delimiter raw_data = {} # intermediary output if jc.utils.has_data(data): # keepends = True, so that multiline data retains return chars lines = [line for line in data.splitlines(keepends=True) if line.strip() != ""] # find the character position of the value in the k/v pair of the first line # all subsequent lines of data use the same character position start_value_pos = _get_value_pos(lines[0], delim) last_key = None for line in lines: key = line[0:start_value_pos] value = line[start_value_pos:] # possible multiline data if last_key: # the value data doesn't start where it should # so this is multiline data if delim not in key: raw_data[last_key] += line continue raw_data[key] = value last_key = key # clean up keys; strip values raw_output = {} for k, v in raw_data.items(): k = _transform_key(k) # since we split on start_value_pos, the delimiter # is still in the key field. Remove it. k = k.rstrip(delim) if k in ["hotfixs", "processors"]: raw_output[k] = _parse_hotfixs_or_processors(v) elif k in ["network_cards"]: raw_output[k] = _parse_network_cards(v) elif k in ["hyperv_requirements"]: raw_output[k] = _parse_hyperv_requirements(v) elif k in [ "total_physical_memory", "available_physical_memory", "virtual_memory_max_size", "virtual_memory_available", "virtual_memory_in_use" ]: raw_output[k + "_mb"] = v.strip() else: raw_output[k] = v.strip() if raw: return raw_output else: return _process(raw_output) def _parse_hotfixs_or_processors(data): """ Turns a list of return-delimited hotfixes or processors with [x] as a prefix into an array of hotfixes Note that if a high number of items exist, the list may cutoff and this list may not contain all items installed on the system IRL, this likely applies to hotfixes more than processors Parameters: data: (string) Input string """ arr_output = [] for i, l in enumerate(data.splitlines()): # skip line that says how many are installed if i == 0: continue # we have to make sure this is a complete line # as data could cutoff. Make sure the delimiter # exists. Otherwise, skip it. if ":" in l: k, v = l.split(":") # discard the number sequence arr_output.append(v.strip()) return arr_output def _parse_hyperv_requirements(data): """ Turns a list of key/value settings for hyperv into an object Parameters: data: (string) Input string """ output = {} for i, l in enumerate(data.splitlines()): if ":" in l: k, v = l.split(":") # discard the number sequence output[_transform_key(k)] = v.strip() return output def _parse_network_cards(data): """ Turns a list of network_cards into an array of objects Parameters: data: (string) Input string """ delim = ":" arr_output = [] cur_nic = None is_ip = False nic_value_pos = 0 for i, line in enumerate(data.splitlines()): # skip first line if i == 0: continue if "IP address(es)" in line: is_ip = True continue cur_value_pos = len(line) - len(line.lstrip()) line = line.strip() m = re.match(r"\[(\d+)\]" + delim + "(.+)", line) if m and is_ip and cur_value_pos > nic_value_pos: cur_nic["ip_addresses"].append(m.group(2).strip()) elif m: if cur_nic: arr_output.append(cur_nic) cur_nic = _default_nic() cur_nic["name"] = m.group(2).strip() nic_value_pos = cur_value_pos is_ip = False elif delim in line: k, v = line.split(delim) k = _transform_key(k) cur_nic[k] = v.strip() if cur_nic: arr_output.append(cur_nic) return arr_output def _convert_to_boolean(value): """ Converts string input to boolean assuming "Yes/No" inputs Parameters: value: (string) Input value """ return value == "Yes" def _convert_to_int(value): """ Converts string input to integer by stripping all non-numeric characters Parameters: value: (string) Input value """ try: value = int(re.sub("[^0-9]", "", value)) except ValueError: pass return value def _default_nic(): """ Returns a default network card object """ return { "name": "", "connection_name": "", "status": "", "dhcp_enabled": "No", "dhcp_server": "", "ip_addresses": [], } def _get_value_pos(line, delim): """ Finds the first non-whitespace character after the delimiter Parameters: line: (string) Input string delim: (string) The data delimiter """ fields = line.split(delim, 1) if not len(fields) == 2: raise Exception(f"Expected a '{delim}' delimited field. Actual: {line}") return len(line) - len(fields[1].lstrip()) def _transform_key(key): """ Converts a given key to a valid json key that plays nice with jq Parameters: key: (string) Input value """ # lowercase and replace spaces with underscores key = key.strip().lower().replace(" ", "_") # remove invalid key characters for c in ";:!@#$%^&*()-": key = key.replace(c, "") return key jc-1.17.3/jc/parsers/time.py000066400000000000000000000317161415226333200155730ustar00rootroot00000000000000"""jc - JSON CLI output utility `/usr/bin/time` command output parser Output from `/usr/bin/time` is sent to `STDERR`, so the `-o` option can be used to redirect the output to a file that can be read by `jc`. Alternatively, the output from `/usr/bin/time` can be redirected to `STDOUT` so `jc` can receive it. Note: `/usr/bin/time` is similar but different from the Bash builtin `time` command. Usage (cli): $ /usr/bin/time -o timefile.out sleep 2.5; cat timefile.out | jc --time -p Usage (module): import jc.parsers.time result = jc.parsers.time.parse(time_command_output) Schema: Source: https://www.freebsd.org/cgi/man.cgi?query=getrusage https://man7.org/linux/man-pages/man1/time.1.html { "real_time": float, "user_time": float, "system_time": float, "elapsed_time": string, "elapsed_time_hours": integer, "elapsed_time_minutes": integer, "elapsed_time_seconds": integer, "elapsed_time_centiseconds": integer, "elapsed_time_total_seconds": float, "cpu_percent": integer, # null if ? "average_shared_text_size": integer, "average_unshared_data_size": integer, "average_unshared_stack_size": integer, "average_shared_memory_size": integer, "maximum_resident_set_size": integer, "block_input_operations": integer, # aka File system inputs "block_output_operations": integer, # aka File system outputs "major_pagefaults": integer, "minor_pagefaults": integer, "swaps": integer, "page_reclaims": integer, "page_faults": integer, "messages_sent": integer, "messages_received": integer, "signals_received": integer, "voluntary_context_switches": integer, "involuntary_context_switches": integer "command_being_timed": string, "average_stack_size": integer, "average_total_size": integer, "average_resident_set_size": integer, "signals_delivered": integer, "page_size": integer, "exit_status": integer } Examples: $ /usr/bin/time --verbose -o timefile.out sleep 2.5; cat timefile.out | jc --time -p { "command_being_timed": "sleep 2.5", "user_time": 0.0, "system_time": 0.0, "cpu_percent": 0, "elapsed_time": "0:02.50", "average_shared_text_size": 0, "average_unshared_data_size": 0, "average_stack_size": 0, "average_total_size": 0, "maximum_resident_set_size": 2084, "average_resident_set_size": 0, "major_pagefaults": 0, "minor_pagefaults": 72, "voluntary_context_switches": 2, "involuntary_context_switches": 1, "swaps": 0, "block_input_operations": 0, "block_output_operations": 0, "messages_sent": 0, "messages_received": 0, "signals_delivered": 0, "page_size": 4096, "exit_status": 0, "elapsed_time_hours": 0, "elapsed_time_minutes": 0, "elapsed_time_seconds": 2, "elapsed_time_centiseconds": 50, "elapsed_time_total_seconds": 2.5 } $ /usr/bin/time --verbose -o timefile.out sleep 2.5; cat timefile.out | jc --time -p -r { "command_being_timed": "\"sleep 2.5\"", "user_time": "0.00", "system_time": "0.00", "cpu_percent": "0", "elapsed_time": "0:02.50", "average_shared_text_size": "0", "average_unshared_data_size": "0", "average_stack_size": "0", "average_total_size": "0", "maximum_resident_set_size": "2084", "average_resident_set_size": "0", "major_pagefaults": "0", "minor_pagefaults": "72", "voluntary_context_switches": "2", "involuntary_context_switches": "0", "swaps": "0", "block_input_operations": "0", "block_output_operations": "0", "messages_sent": "0", "messages_received": "0", "signals_delivered": "0", "page_size": "4096", "exit_status": "0" } """ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.3' description = '`/usr/bin/time` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # details = 'enter any other details here' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'cygwin', 'aix', 'freebsd'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: Dictionary. Structured data to conform to the schema. """ if 'command_being_timed' in proc_data: proc_data['command_being_timed'] = proc_data['command_being_timed'][1:-1] if 'elapsed_time' in proc_data: proc_data['elapsed_time'] = proc_data['elapsed_time'].replace('.', ':') *hours, minutes, seconds, centiseconds = proc_data['elapsed_time'].split(':') proc_data['elapsed_time'] = proc_data['elapsed_time'][::-1].replace(':', '.', 1)[::-1] if hours: proc_data['elapsed_time_hours'] = jc.utils.convert_to_int(hours[0]) else: proc_data['elapsed_time_hours'] = 0 proc_data['elapsed_time_minutes'] = jc.utils.convert_to_int(minutes) proc_data['elapsed_time_seconds'] = jc.utils.convert_to_int(seconds) proc_data['elapsed_time_centiseconds'] = jc.utils.convert_to_int(centiseconds) proc_data['elapsed_time_total_seconds'] = (proc_data['elapsed_time_hours'] * 3600) + \ (proc_data['elapsed_time_minutes'] * 60) + \ (proc_data['elapsed_time_seconds']) + \ (proc_data['elapsed_time_centiseconds'] / 100) # convert ints and floats int_list = ['cpu_percent', 'average_shared_text_size', 'average_unshared_data_size', 'average_unshared_stack_size', 'average_shared_memory_size', 'maximum_resident_set_size', 'block_input_operations', 'block_output_operations', 'major_pagefaults', 'minor_pagefaults', 'swaps', 'page_reclaims', 'page_faults', 'messages_sent', 'messages_received', 'signals_received', 'voluntary_context_switches', 'involuntary_context_switches', 'average_stack_size', 'average_total_size', 'average_resident_set_size', 'signals_delivered', 'page_size', 'exit_status'] float_list = ['real_time', 'user_time', 'system_time'] for key in proc_data: if key in int_list: proc_data[key] = jc.utils.convert_to_int(proc_data[key]) if key in float_list: proc_data[key] = jc.utils.convert_to_float(proc_data[key]) return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: Dictionary. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = {} if jc.utils.has_data(data): time_type = None # linux_brief, linux_long, bsd_brief, bsd_long, posix for line in filter(None, data.splitlines()): # linux default style: # 0.00user 0.00system 0:03.00elapsed 0%CPU (0avgtext+0avgdata 2148maxresident)k # 0inputs+0outputs (0major+71minor)pagefaults 0swaps if time_type != 'linux_brief' and 'elapsed' in line: time_type = 'linux_brief' # BSD/OSX default style: # 0.00 real 0.00 user 0.00 sys elif time_type != 'bsd_brief' and ' user ' in line: time_type = 'bsd_brief' elif time_type != 'linux_long' and 'Command' in line: time_type = 'linux_long' elif time_type != 'bsd_long' and 'maximum resident set size' in line: time_type = 'bsd_long' # POSIX compliant output: # real 0.00 # user 0.00 # sys 0.00 elif time_type != 'posix' and line.startswith('real '): time_type = 'posix' # start parsing lines if time_type == 'linux_brief': if 'elapsed' in line: line_num = 0 else: line_num = 1 new_line = line.replace('+', ' ').replace('(', ' ').replace(')', ' ')\ .replace('user', ' ').replace('system', ' ').replace('elapsed', ' ')\ .replace('elapsed', ' ').replace('%CPU', ' ').replace('avgtext', ' ')\ .replace('avgdata', ' ').replace('maxresident', ' ').replace('inputs', ' ')\ .replace('outputs', ' ').replace('major', ' ').replace('minor', ' ')\ .replace('pagefaults', ' ').replace('swaps', ' ').replace('k', ' ') linux_brief_line = new_line.split() if line_num == 0: raw_output['user_time'] = linux_brief_line[0] raw_output['system_time'] = linux_brief_line[1] raw_output['elapsed_time'] = linux_brief_line[2] raw_output['cpu_percent'] = None if linux_brief_line[3] == '?' else linux_brief_line[3] raw_output['average_shared_text'] = linux_brief_line[4] raw_output['average_unshared_data_size'] = linux_brief_line[5] raw_output['maximum_resident_set_size'] = linux_brief_line[6] else: raw_output['block_input_operations'] = linux_brief_line[0] raw_output['block_output_operations'] = linux_brief_line[1] raw_output['major_pagefaults'] = linux_brief_line[2] raw_output['minor_pagefaults'] = linux_brief_line[3] raw_output['swaps'] = linux_brief_line[4] if time_type == 'posix': posix_line = line.split() if 'real' in line: raw_output['real_time'] = posix_line[1] if 'user' in line: raw_output['user_time'] = posix_line[1] if 'sys' in line: raw_output['system_time'] = posix_line[1] if time_type == 'bsd_brief': bsd_brief_line = line.split() raw_output['real_time'] = bsd_brief_line[0] raw_output['user_time'] = bsd_brief_line[2] raw_output['system_time'] = bsd_brief_line[4] if time_type == 'bsd_long': bsd_long_line = line.split(maxsplit=1) key = bsd_long_line[1].replace(' ', '_') # fixup some key names if key == 'average_shared_text': key = 'average_shared_text_size' value = bsd_long_line[0] raw_output[key] = value if time_type == 'linux_long': # cleanup key names: (h:mm:ss or m:ss) # line = line.replace('h:mm:ss', '', 1).replace('m:ss', '') linux_long_line = line.split(': ', maxsplit=1) key = linux_long_line[0].strip().lower().replace(' ', '_').replace('(', '').replace(')', '')\ .replace('/', '_').replace(':', '_').replace('_kbytes', '')\ .replace('_seconds', '').replace('socket_', '').replace('_bytes', '') # fixup some key names if key == 'file_system_inputs': key = 'block_input_operations' if key == 'file_system_outputs': key = 'block_output_operations' if key == 'percent_of_cpu_this_job_got': key = 'cpu_percent' if key == 'elapsed_wall_clock_time_h_mm_ss_or_m_ss': key = 'elapsed_time' if key == 'major_requiring_i_o_page_faults': key = 'major_pagefaults' if key == 'minor_reclaiming_a_frame_page_faults': key = 'minor_pagefaults' value = linux_long_line[1].replace('%', '') raw_output[key] = value if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/timedatectl.py000066400000000000000000000074261415226333200171350ustar00rootroot00000000000000"""jc - JSON CLI output utility `timedatectl` command output parser The `epoch_utc` calculated timestamp field is timezone-aware and is only available if the `universal_time` field is available. Usage (cli): $ timedatectl | jc --timedatectl or $ jc timedatectl Usage (module): import jc.parsers.timedatectl result = jc.parsers.timedatectl.parse(timedatectl_command_output) Schema: { "local_time": string, "universal_time": string, "epoch_utc": integer, # timezone-aware timestamp "rtc_time": string, "time_zone": string, "ntp_enabled": boolean, "ntp_synchronized": boolean, "system_clock_synchronized": boolean, "systemd-timesyncd.service_active": boolean, "rtc_in_local_tz": boolean, "dst_active": boolean } Examples: $ timedatectl | jc --timedatectl -p { "local_time": "Tue 2020-03-10 17:53:21 PDT", "universal_time": "Wed 2020-03-11 00:53:21 UTC", "rtc_time": "Wed 2020-03-11 00:53:21", "time_zone": "America/Los_Angeles (PDT, -0700)", "ntp_enabled": true, "ntp_synchronized": true, "rtc_in_local_tz": false, "dst_active": true, "epoch_utc": 1583888001 } $ timedatectl | jc --timedatectl -p -r { "local_time": "Tue 2020-03-10 17:53:21 PDT", "universal_time": "Wed 2020-03-11 00:53:21 UTC", "rtc_time": "Wed 2020-03-11 00:53:21", "time_zone": "America/Los_Angeles (PDT, -0700)", "ntp_enabled": "yes", "ntp_synchronized": "yes", "rtc_in_local_tz": "no", "dst_active": "yes" } """ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.5' description = '`timedatectl status` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # details = 'enter any other details here' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux'] magic_commands = ['timedatectl', 'timedatectl status'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (Dictionary) raw structured data to process Returns: Dictionary. Structured data to conform to the schema. """ bool_list = ['ntp_enabled', 'ntp_synchronized', 'rtc_in_local_tz', 'dst_active', 'system_clock_synchronized', 'systemd-timesyncd.service_active'] for key in proc_data: if key in bool_list: proc_data[key] = jc.utils.convert_to_bool(proc_data[key]) if 'universal_time' in proc_data: ts = jc.utils.timestamp(proc_data['universal_time']) proc_data['epoch_utc'] = ts.utc return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: Dictionary. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = {} if jc.utils.has_data(data): for line in filter(None, data.splitlines()): linedata = line.split(':', maxsplit=1) raw_output[linedata[0].strip().lower().replace(' ', '_')] = linedata[1].strip() if linedata[0].strip() == 'DST active': break if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/tracepath.py000066400000000000000000000154201415226333200166020ustar00rootroot00000000000000"""jc - JSON CLI output utility `tracepath` command output parser Supports `tracepath` and `tracepath6` output. Usage (cli): $ tracepath 1.2.3.4 | jc --tracepath or $ jc tracepath 1.2.3.4 Usage (module): import jc.parsers.tracepath result = jc.parsers.tracepath.parse(tracepath_command_output) Schema: { "pmtu": integer, "forward_hops": integer, "return_hops": integer, "hops": [ { "ttl": integer, "guess": boolean, "host": string, "reply_ms": float, "pmtu": integer, "asymmetric_difference": integer, "reached": boolean } ] } Examples: $ tracepath6 3ffe:2400:0:109::2 | jc --tracepath -p { "pmtu": 1480, "forward_hops": 2, "return_hops": 2, "hops": [ { "ttl": 1, "guess": true, "host": "[LOCALHOST]", "reply_ms": null, "pmtu": 1500, "asymmetric_difference": null, "reached": false }, { "ttl": 1, "guess": false, "host": "dust.inr.ac.ru", "reply_ms": 0.411, "pmtu": null, "asymmetric_difference": null, "reached": false }, { "ttl": 2, "guess": false, "host": "dust.inr.ac.ru", "reply_ms": 0.39, "pmtu": 1480, "asymmetric_difference": 1, "reached": false }, { "ttl": 2, "guess": false, "host": "3ffe:2400:0:109::2", "reply_ms": 463.514, "pmtu": null, "asymmetric_difference": null, "reached": true } ] } $ tracepath6 3ffe:2400:0:109::2 | jc --tracepath -p -r { "pmtu": "1480", "forward_hops": "2", "return_hops": "2", "hops": [ { "ttl": "1", "guess": true, "host": "[LOCALHOST]", "reply_ms": null, "pmtu": "1500", "asymmetric_difference": null, "reached": false }, { "ttl": "1", "guess": false, "host": "dust.inr.ac.ru", "reply_ms": "0.411", "pmtu": null, "asymmetric_difference": null, "reached": false }, { "ttl": "2", "guess": false, "host": "dust.inr.ac.ru", "reply_ms": "0.390", "pmtu": "1480", "asymmetric_difference": "1", "reached": false }, { "ttl": "2", "guess": false, "host": "3ffe:2400:0:109::2", "reply_ms": "463.514", "pmtu": null, "asymmetric_difference": null, "reached": true } ] } """ import re import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.3' description = '`tracepath` and `tracepath6` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux'] magic_commands = ['tracepath', 'tracepath6'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (Dictionary) raw structured data to process Returns: Dictionary. Structured data to conform to the schema. """ # convert ints and floats int_list = ['pmtu', 'forward_hops', 'return_hops', 'ttl', 'asymmetric_difference'] float_list = ['reply_ms'] for key in proc_data: if key in int_list: proc_data[key] = jc.utils.convert_to_int(proc_data[key]) if key in float_list: proc_data[key] = jc.utils.convert_to_float(proc_data[key]) if 'hops' in proc_data: for entry in proc_data['hops']: for key in entry: if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) if key in float_list: entry[key] = jc.utils.convert_to_float(entry[key]) return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: Dictionary. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) RE_TTL_HOST = re.compile(r'^\s?(?P\d+)(?P\??):\s+(?P(?:no reply|\S+))') # groups: ttl, ttl_guess, host RE_PMTU = re.compile(r'\spmtu\s(?P[\d]+)') # group: pmtu RE_REPLY_MS = re.compile(r'\s(?P\d*\.\d*)ms') # group: reply_ms RE_ASYMM = re.compile(r'\sasymm\s+(?P[\d]+)') # group: asymm RE_REACHED = re.compile(r'\sreached') RE_SUMMARY = re.compile(r'\s+Resume:\s+pmtu\s+(?P\d+)(?:\s+hops\s+(?P\d+))?(?:\s+back\s+(?P\d+))?') # groups: pmtu, hops, back raw_output = {} if jc.utils.has_data(data): hops = [] for line in filter(None, data.splitlines()): # grab hop information ttl_host = re.search(RE_TTL_HOST, line) pmtu = re.search(RE_PMTU, line) reply_ms = re.search(RE_REPLY_MS, line) asymm = re.search(RE_ASYMM, line) reached = re.search(RE_REACHED, line) summary = re.search(RE_SUMMARY, line) if ttl_host: hop = { 'ttl': ttl_host.group('ttl'), 'guess': bool(ttl_host.group('ttl_guess')), 'host': ttl_host.group('host') if ttl_host.group('host') != 'no reply' else None, 'reply_ms': reply_ms.group('reply_ms') if reply_ms else None, 'pmtu': pmtu.group('pmtu') if pmtu else None, 'asymmetric_difference': asymm.group('asymm') if asymm else None, 'reached': bool(reached) } hops.append(hop) continue elif summary: raw_output = { 'pmtu': summary.group('pmtu') if summary.group('pmtu') else None, 'forward_hops': summary.group('hops') if summary.group('hops') else None, 'return_hops': summary.group('back') if summary.group('back') else None, 'hops': hops } if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/traceroute.py000066400000000000000000000312061415226333200170040ustar00rootroot00000000000000"""jc - JSON CLI output utility `traceroute` command output parser Supports `traceroute` and `traceroute6` output. Note: On some operating systems you will need to redirect `STDERR` to `STDOUT` for destination info since the header line is sent to `STDERR`. A warning message will be printed to `STDERR` if the header row is not found. e.g. `$ traceroute 8.8.8.8 2>&1 | jc --traceroute` Usage (cli): $ traceroute 1.2.3.4 | jc --traceroute or $ jc traceroute 1.2.3.4 Usage (module): import jc.parsers.traceroute result = jc.parsers.traceroute.parse(traceroute_command_output) Schema: { "destination_ip": string, "destination_name": string, "hops": [ { "hop": integer, "probes": [ { "annotation": string, "asn": integer, "ip": string, "name": string, "rtt": float } ] } ] } Examples: $ traceroute google.com | jc --traceroute -p { "destination_ip": "216.58.194.46", "destination_name": "google.com", "hops": [ { "hop": 1, "probes": [ { "annotation": null, "asn": null, "ip": "216.230.231.141", "name": "216-230-231-141.static.houston.tx.oplink.net", "rtt": 198.574 }, { "annotation": null, "asn": null, "ip": "216.230.231.141", "name": "216-230-231-141.static.houston.tx.oplink.net", "rtt": null }, { "annotation": null, "asn": null, "ip": "216.230.231.141", "name": "216-230-231-141.static.houston.tx.oplink.net", "rtt": 198.65 } ] }, ... ] } $ traceroute google.com | jc --traceroute -p -r { "destination_ip": "216.58.194.46", "destination_name": "google.com", "hops": [ { "hop": "1", "probes": [ { "annotation": null, "asn": null, "ip": "216.230.231.141", "name": "216-230-231-141.static.houston.tx.oplink.net", "rtt": "198.574" }, { "annotation": null, "asn": null, "ip": "216.230.231.141", "name": "216-230-231-141.static.houston.tx.oplink.net", "rtt": null }, { "annotation": null, "asn": null, "ip": "216.230.231.141", "name": "216-230-231-141.static.houston.tx.oplink.net", "rtt": "198.650" } ] }, ... ] } """ import re from decimal import Decimal import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.4' description = '`traceroute` and `traceroute6` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' details = 'Using the trparse library by Luis Benitez at https://github.com/lbenitez000/trparse' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'freebsd'] magic_commands = ['traceroute', 'traceroute6'] __version__ = info.version ''' Copyright (C) 2015 Luis Benitez Parses the output of a traceroute execution into an AST (Abstract Syntax Tree). The MIT License (MIT) Copyright (c) 2014 Luis Benitez 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. ''' RE_HEADER = re.compile(r'(\S+)\s+\((\d+\.\d+\.\d+\.\d+|[0-9a-fA-F:]+)\)') RE_PROBE_NAME_IP = re.compile(r'(\S+)\s+\((\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}|[0-9a-fA-F:]+)\)+') RE_PROBE_BSD_IPV6 = re.compile(r'\b(?:[A-Fa-f0-9]{1,4}:){7}[A-Fa-f0-9]{1,4}\b') RE_HOP = re.compile(r'^\s*(\d+)?\s+(.+)$') RE_PROBE_ASN = re.compile(r'\[AS(\d+)\]') RE_PROBE_RTT_ANNOTATION = re.compile(r'(?:(\d+(?:\.?\d+)?)\s+ms|(\s+\*\s+))\s*(!\S*)?') class _Traceroute(object): def __init__(self, dest_name, dest_ip): self.dest_name = dest_name self.dest_ip = dest_ip self.hops = [] def add_hop(self, hop): self.hops.append(hop) def __str__(self): text = "Traceroute for %s (%s)\n\n" % (self.dest_name, self.dest_ip) for hop in self.hops: text += str(hop) return text class _Hop(object): def __init__(self, idx): self.idx = idx # Hop count, starting at 1 (usually) self.probes = [] # Series of Probe instances def add_probe(self, probe): """Adds a Probe instance to this hop's results.""" if self.probes: probe_last = self.probes[-1] if not probe.ip: probe.ip = probe_last.ip probe.name = probe_last.name self.probes.append(probe) def __str__(self): text = "{:>3d} ".format(self.idx) text_len = len(text) for n, probe in enumerate(self.probes): text_probe = str(probe) if n: text += (text_len * " ") + text_probe else: text += text_probe text += "\n" return text class _Probe(object): def __init__(self, name=None, ip=None, asn=None, rtt=None, annotation=None): self.name = name self.ip = ip self.asn = asn # Autonomous System number self.rtt = rtt # RTT in ms self.annotation = annotation # Annotation, such as !H, !N, !X, etc def __str__(self): text = "" if self.asn is not None: text += "[AS{:d}] ".format(self.asn) if self.rtt: text += "{:s} ({:s}) {:1.3f} ms".format(self.name, self.ip, self.rtt) else: text = "*" if self.annotation: text += " {:s}".format(self.annotation) text += "\n" return text def _loads(data): lines = data.splitlines() # Get headers match_dest = RE_HEADER.search(lines[0]) dest_name, dest_ip = None, None if match_dest: dest_name = match_dest.group(1) dest_ip = match_dest.group(2) # The Traceroute node is the root of the tree traceroute = _Traceroute(dest_name, dest_ip) # Parse the remaining lines, they should be only hops/probes for line in lines[1:]: # Skip empty lines if not line: continue hop_match = RE_HOP.match(line) if hop_match.group(1): hop_index = int(hop_match.group(1)) else: hop_index = None if hop_index is not None: hop = _Hop(hop_index) traceroute.add_hop(hop) hop_string = hop_match.group(2) probe_asn_match = RE_PROBE_ASN.search(hop_string) if probe_asn_match: probe_asn = int(probe_asn_match.group(1)) else: probe_asn = None probe_name_ip_match = RE_PROBE_NAME_IP.search(hop_string) probe_bsd_ipv6_match = RE_PROBE_BSD_IPV6.search(hop_string) if probe_name_ip_match: probe_name = probe_name_ip_match.group(1) probe_ip = probe_name_ip_match.group(2) elif probe_bsd_ipv6_match: probe_name = None probe_ip = probe_bsd_ipv6_match.group(0) else: probe_name = None probe_ip = None probe_rtt_annotations = RE_PROBE_RTT_ANNOTATION.findall(hop_string) for probe_rtt_annotation in probe_rtt_annotations: if probe_rtt_annotation[0]: probe_rtt = Decimal(probe_rtt_annotation[0]) elif probe_rtt_annotation[1]: probe_rtt = None else: message = f"Expected probe RTT or *. Got: '{probe_rtt_annotation[0]}'" raise ParseError(message) probe_annotation = probe_rtt_annotation[2] or None probe = _Probe( name=probe_name, ip=probe_ip, asn=probe_asn, rtt=probe_rtt, annotation=probe_annotation ) # only add probe if there is data if any([probe_name, probe_ip, probe_asn, probe_rtt, probe_annotation]): hop.add_probe(probe) return traceroute class ParseError(Exception): pass ######################################################################################## def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (Dictionary) raw structured data to process Returns: Dictionary. Structured to conform to the schema. """ int_list = ['hop', 'asn'] float_list = ['rtt'] if 'hops' in proc_data: for entry in proc_data['hops']: for key in entry: if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) if key in float_list: entry[key] = jc.utils.convert_to_float(entry[key]) if 'probes' in entry: for item in entry['probes']: for key in item: if key in int_list: item[key] = jc.utils.convert_to_int(item[key]) if key in float_list: item[key] = jc.utils.convert_to_float(item[key]) return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: Dictionary. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = {} if jc.utils.has_data(data): # remove any warning lines new_data = [] for data_line in data.splitlines(): if 'traceroute: Warning: ' not in data_line and 'traceroute6: Warning: ' not in data_line: new_data.append(data_line) else: continue # check if header row exists, otherwise add a dummy header if not new_data[0].startswith('traceroute to ') and not new_data[0].startswith('traceroute6 to '): new_data[:0] = ['traceroute to <<_>> (<<_>>), 30 hops max, 60 byte packets'] # print warning to STDERR if not quiet: jc.utils.warning_message(['No header row found. For destination info redirect STDERR to STDOUT']) data = '\n'.join(new_data) tr = _loads(data) hops = tr.hops hops_list = [] if hops: for hop in hops: hop_obj = {} hop_obj['hop'] = str(hop.idx) probe_list = [] if hop.probes: for probe in hop.probes: probe_obj = { 'annotation': probe.annotation, 'asn': None if probe.asn is None else str(probe.asn), 'ip': probe.ip, 'name': probe.name, 'rtt': None if probe.rtt is None else str(probe.rtt) } probe_list.append(probe_obj) hop_obj['probes'] = probe_list hops_list.append(hop_obj) raw_output = { 'destination_ip': tr.dest_ip, 'destination_name': tr.dest_name, 'hops': hops_list } if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/ufw.py000066400000000000000000000342101415226333200154260ustar00rootroot00000000000000"""jc - JSON CLI output utility `ufw status` command output parser Usage (cli): $ ufw status | jc --ufw or $ jc ufw status Usage (module): import jc.parsers.ufw result = jc.parsers.ufw.parse(ufw_command_output) Schema: { "status": string, "logging": string, "logging_level": string, "default": string, "new_profiles": string, "rules": [ { "action": string, "action_direction": string, # null if blank "index": integer, # null if blank "network_protocol": string, "to_ip": string, "to_ip_prefix": integer, "to_interface": string, "to_transport": string, "to_ports": [ integer ], "to_port_ranges": [ { "start": integer, "end": integer } ], "to_service": string, # null if any to ports or port_ranges are set "from_ip": string, "from_ip_prefix": integer, "from_interface": string, "from_transport": string, "from_ports": [ integer ], "from_port_ranges": [ { "start": integer, "end": integer } ], "from_service": string, # null if any from ports or port_ranges are set "comment": string # null if no comment } ] } Examples: $ ufw status verbose | jc --ufw -p { "status": "active", "logging": "on", "logging_level": "low", "default": "deny (incoming), allow (outgoing), disabled (routed)", "new_profiles": "skip", "rules": [ { "action": "ALLOW", "action_direction": "IN", "index": null, "network_protocol": "ipv4", "to_interface": "any", "to_transport": "any", "to_service": null, "to_ports": [ 22 ], "to_ip": "0.0.0.0", "to_ip_prefix": 0, "comment": null, "from_ip": "0.0.0.0", "from_ip_prefix": 0, "from_interface": "any", "from_transport": "any", "from_port_ranges": [ { "start": 0, "end": 65535 } ], "from_service": null }, { "action": "ALLOW", "action_direction": "IN", "index": null, "network_protocol": "ipv4", "to_interface": "any", "to_transport": "tcp", "to_service": null, "to_ports": [ 80, 443 ], "to_ip": "0.0.0.0", "to_ip_prefix": 0, "comment": null, "from_ip": "0.0.0.0", "from_ip_prefix": 0, "from_interface": "any", "from_transport": "any", "from_port_ranges": [ { "start": 0, "end": 65535 } ], "from_service": null }, ... ] } $ ufw status verbose | jc --ufw -p -r { "status": "active", "logging": "on", "logging_level": "low", "default": "deny (incoming), allow (outgoing), disabled (routed)", "new_profiles": "skip", "rules": [ { "action": "ALLOW", "action_direction": "IN", "index": null, "network_protocol": "ipv4", "to_interface": "any", "to_transport": "any", "to_service": null, "to_ports": [ "22" ], "to_ip": "0.0.0.0", "to_ip_prefix": "0", "comment": null, "from_ip": "0.0.0.0", "from_ip_prefix": "0", "from_interface": "any", "from_transport": "any", "from_port_ranges": [ { "start": "0", "end": "65535" } ], "from_service": null }, { "action": "ALLOW", "action_direction": "IN", "index": null, "network_protocol": "ipv4", "to_interface": "any", "to_transport": "tcp", "to_service": null, "to_ports": [ "80", "443" ], "to_ip": "0.0.0.0", "to_ip_prefix": "0", "comment": null, "from_ip": "0.0.0.0", "from_ip_prefix": "0", "from_interface": "any", "from_transport": "any", "from_port_ranges": [ { "start": "0", "end": "65535" } ], "from_service": null }, ... ] } """ import jc.utils import re import ipaddress class info(): """Provides parser metadata (version, author, etc.)""" version = '1.1' description = '`ufw status` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' compatible = ['linux'] magic_commands = ['ufw status'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: Dictionary. Structured to conform to the schema. """ int_list = ['index', 'to_ip_prefix', 'from_ip_prefix'] if 'rules' in proc_data: for i, item in enumerate(proc_data['rules']): for key in item: if key in int_list: proc_data['rules'][i][key] = jc.utils.convert_to_int(proc_data['rules'][i][key]) if key in ['to_ports', 'from_ports']: for i2, item2 in enumerate(proc_data['rules'][i][key]): proc_data['rules'][i][key][i2] = jc.utils.convert_to_int(item2) if key in ['to_port_ranges', 'from_port_ranges']: for i2, item2 in enumerate(proc_data['rules'][i][key]): proc_data['rules'][i][key][i2]['start'] = jc.utils.convert_to_int(proc_data['rules'][i][key][i2]['start']) proc_data['rules'][i][key][i2]['end'] = jc.utils.convert_to_int(proc_data['rules'][i][key][i2]['end']) return proc_data def _parse_to_from(linedata, direction, rule_obj=None): if rule_obj is None: rule_obj = {} # pull out rule index, if they exist: [ 1] if direction == 'to': RE_LINE_NUM = re.compile(r'\[[ 0-9]+\]\s') line_number_match = re.search(RE_LINE_NUM, linedata) if line_number_match: rule_obj['index'] = line_number_match.group(0).replace('[', '').replace(']', '').strip() linedata = re.sub(RE_LINE_NUM, '', linedata) else: rule_obj['index'] = None # pull out comments, if they exist if direction == 'from': RE_COMMENT = re.compile(r'#.+$') comment_match = re.search(RE_COMMENT, linedata) if comment_match: rule_obj['comment'] = comment_match.group(0).lstrip('#').strip() linedata = re.sub(RE_COMMENT, '', linedata) else: rule_obj['comment'] = None # pull (v6) RE_V6 = re.compile(r'\(v6\)') v6_match = re.search(RE_V6, linedata) if v6_match: rule_obj['network_protocol'] = 'ipv6' linedata = re.sub(RE_V6, '', linedata) elif not rule_obj.get('network_protocol'): rule_obj['network_protocol'] = 'ipv4' # pull 'Anywhere' if exists. Assign to 0.0.0.0/0 or ::/0 depending on if (v6) is found if 'Anywhere' in linedata: if rule_obj.get('network_protocol') == 'ipv6': rule_obj[direction + '_ip'] = '::' rule_obj[direction + '_ip_prefix'] = '0' elif rule_obj.get('network_protocol') == 'ipv4': rule_obj[direction + '_ip'] = '0.0.0.0' rule_obj[direction + '_ip_prefix'] = '0' linedata = linedata.replace('Anywhere', '') # pull out interface (after 'on') linedata_list = linedata.split(' on ', maxsplit=1) if len(linedata_list) > 1: rule_obj[direction + '_interface'] = linedata_list[1].strip() linedata = linedata_list[0] else: rule_obj[direction + '_interface'] = 'any' # pull tcp/udp/etc. transport - strip on '/' linedata_list = linedata.rsplit('/', maxsplit=1) if len(linedata_list) > 1: if linedata_list[1].strip() in ['tcp', 'udp', 'ah', 'esp', 'gre', 'ipv6', 'igmp']: rule_obj[direction + '_transport'] = linedata_list[1].strip() linedata = linedata_list[0] else: rule_obj[direction + '_transport'] = 'any' else: rule_obj[direction + '_transport'] = 'any' # pull out ipv4 or ipv6 addresses linedata_list = linedata.split() new_linedata_list = [] valid_ip = None for item in linedata_list: try: valid_ip = ipaddress.IPv4Interface(item) except Exception: try: valid_ip = ipaddress.IPv6Interface(item) except Exception: new_linedata_list.append(item) if valid_ip: rule_obj[direction + '_ip'] = str(valid_ip.ip) rule_obj[direction + '_ip_prefix'] = str(valid_ip.with_prefixlen.split('/')[1]) linedata = ' '.join(new_linedata_list) # find the numeric port(s) linedata_list = linedata.split(',') port_list = [] port_ranges = [] for item in linedata_list: if item.strip().isnumeric(): port_list.append(item.strip()) elif ':' in item: p_range = item.strip().split(':', maxsplit=1) port_ranges.append( { "start": p_range[0], "end": p_range[1] } ) if port_list or port_ranges: rule_obj[direction + '_service'] = None linedata = '' if port_list: rule_obj[direction + '_ports'] = port_list if port_ranges: rule_obj[direction + '_port_ranges'] = port_ranges # only thing left should be the service name. if linedata.strip(): rule_obj[direction + '_service'] = linedata.strip() rule_obj[direction + '_transport'] = None # check if to/from IP addresses exist. If not, set to 0.0.0.0/0 or ::/0 if direction + '_ip' not in rule_obj: if rule_obj.get('network_protocol') == 'ipv6': rule_obj[direction + '_ip'] = '::' rule_obj[direction + '_ip_prefix'] = '0' elif rule_obj.get('network_protocol') == 'ipv4': rule_obj[direction + '_ip'] = '0.0.0.0' rule_obj[direction + '_ip_prefix'] = '0' # finally set default ports if no ports exist and there should be some if direction + '_transport' in rule_obj: if rule_obj[direction + '_transport'] in ['tcp', 'udp', 'any']: if not port_list and not port_ranges: rule_obj[direction + '_port_ranges'] = [ { 'start': '0', 'end': '65535' } ] rule_obj[direction + '_service'] = None return rule_obj def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: Dictionary. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = {} rules_list = [] if jc.utils.has_data(data): rule_lines = False for line in filter(None, data.splitlines()): if line.startswith('Status: '): raw_output['status'] = line.split(': ', maxsplit=1)[1] continue if line.startswith('Logging: '): log_line = line.split(': ', maxsplit=1) log_line = log_line[1] log_line = log_line.split() raw_output['logging'] = log_line[0] if len(log_line) == 2: raw_output['logging_level'] = log_line[1].replace('(', '').replace(')', '').strip() continue if line.startswith('Default: '): raw_output['default'] = line.split(': ', maxsplit=1)[1] continue if line.startswith('New profiles: '): raw_output['new_profiles'] = line.split(': ', maxsplit=1)[1] continue if 'To' in line and 'Action' in line and 'From' in line: rule_lines = True continue if rule_lines: if '------' in line: continue # Split on action. Left of Action is 'to', right of Action is 'from' rule_obj = {} splitline = re.split(r'(ALLOW IN|ALLOW OUT|ALLOW FWD|DENY IN|DENY OUT|DENY FWD|LIMIT IN|LIMIT OUT|LIMIT FWD|REJECT IN|REJECT OUT|REJECT FWD|ALLOW|DENY|LIMIT|REJECT)', line) to_line = splitline[0] action_line = splitline[1] action_list = action_line.split() from_line = splitline[2] action_direction = None if len(action_list) == 1: action = action_list[0] elif len(action_list) == 2: action = action_list[0] action_direction = action_list[1] rule_obj['action'] = action rule_obj['action_direction'] = action_direction rule_obj.update(_parse_to_from(to_line, 'to')) rule_obj.update(_parse_to_from(from_line, 'from', rule_obj)) rules_list.append(rule_obj) raw_output['rules'] = rules_list if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/ufw_appinfo.py000066400000000000000000000250331415226333200171450ustar00rootroot00000000000000"""jc - JSON CLI output utility `ufw app info [application]` command output parser Supports individual apps via `ufw app info [application]` and all apps list via `ufw app info all`. Because `ufw` application definitions allow overlapping ports and port ranges, this parser preserves that behavior, but also provides `normalized` lists and ranges that remove duplicate ports and merge overlapping ranges. Usage (cli): $ ufw app info OpenSSH | jc --ufw-appinfo or $ jc ufw app info OpenSSH Usage (module): import jc.parsers.ufw_appinfo result = jc.parsers.ufw_appinfo.parse(ufw_appinfo_command_output) Schema: [ { "profile": string, "title": string, "description": string, "tcp_list": [ integer ], "tcp_ranges": [ { "start": integer, # 'any' is converted to start/end: 0/65535 "end": integer } ], "udp_list": [ integer ], "udp_ranges": [ { "start": integer, # 'any' is converted to start/end: 0/65535 "end": integer } ], "normalized_tcp_list": [ integers # duplicates and overlapping are removed ], "normalized_tcp_ranges": [ { "start": integer, # 'any' is converted to start/end: 0/65535 "end": integers # overlapping are merged } ], "normalized_udp_list": [ integers # duplicates and overlapping are removed ], "normalized_udp_ranges": [ { "start": integer, # 'any' is converted to start/end: 0/65535 "end": integers # overlapping are merged } ] } ] Examples: $ ufw app info MSN | jc --ufw-appinfo -p [ { "profile": "MSN", "title": "MSN Chat", "description": "MSN chat protocol (with file transfer and voice)", "tcp_list": [ 1863, 6901 ], "udp_list": [ 1863, 6901 ], "tcp_ranges": [ { "start": 6891, "end": 6900 } ], "normalized_tcp_list": [ 1863, 6901 ], "normalized_tcp_ranges": [ { "start": 6891, "end": 6900 } ], "normalized_udp_list": [ 1863, 6901 ] } ] $ ufw app info MSN | jc --ufw-appinfo -p -r [ { "profile": "MSN", "title": "MSN Chat", "description": "MSN chat protocol (with file transfer and voice)", "tcp_list": [ "1863", "6901" ], "udp_list": [ "1863", "6901" ], "tcp_ranges": [ { "start": "6891", "end": "6900" } ] } ] """ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.1' description = '`ufw app info [application]` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' compatible = ['linux'] magic_commands = ['ufw app'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured to conform to the schema. """ for profile in proc_data: # convert to ints int_list = ['start', 'end'] if 'tcp_list' in profile: profile['tcp_list'] = [int(p) for p in profile['tcp_list']] if 'udp_list' in profile: profile['udp_list'] = [int(p) for p in profile['udp_list']] for protocol in ['tcp', 'udp']: if protocol + '_ranges' in profile: for i, item in enumerate(profile[protocol + '_ranges']): for key in item: if key in int_list: profile[protocol + '_ranges'][i][key] = int(profile[protocol + '_ranges'][i][key]) # create normalized port lists and port ranges (remove duplicates and merge ranges) # dump ranges into a set of 0 - 65535 # if items in the port list are in the set, then remove them # iterate through the set to find gaps and create new ranges based on them for protocol in ['tcp', 'udp']: port_set = set() if protocol + '_ranges' in profile: for item in profile[protocol + '_ranges']: port_set.update(range(item['start'], item['end'] + 1)) if protocol + '_list' in profile: new_port_list = sorted(set([p for p in profile[protocol + '_list'] if p not in port_set])) if new_port_list: profile['normalized_' + protocol + '_list'] = new_port_list new_port_ranges = [] state = 'findstart' # 'findstart' or 'findend' for port in range(0, 65535 + 2): if state == 'findstart': port_range_obj = {} if port in port_set: port_range_obj['start'] = port state = 'findend' continue if state == 'findend': if port not in port_set: port_range_obj['end'] = port - 1 new_port_ranges.append(port_range_obj) state = 'findstart' if new_port_ranges: profile['normalized_' + protocol + '_ranges'] = new_port_ranges return proc_data def _parse_port_list(data, port_list=None): """return a list of port strings""" # 1,2,3,4,5,6,7,8,9,10,9,30,80:90,8080:8090 # overlapping and repeated port numbers are allowed if port_list is None: port_list = [] data = data.split(',') data_list = [p.strip() for p in data if ':' not in p and 'any' not in p] port_list.extend(data_list) return port_list def _parse_port_range(data, range_list=None): """return a list of dictionaries""" # 1,2,3,4,5,6,7,8,9,10,9,30,80:90,8080:8090 # overlapping port ranges are allowed if range_list is None: range_list = [] data = data.strip().split(',') ranges = [p.strip() for p in data if ':' in p] range_obj = {} if 'any' in data: range_list.append( { 'start': 0, 'end': 65535 } ) for range_ in ranges: range_obj = { 'start': range_.split(':')[0], 'end': range_.split(':')[1] } range_list.append(range_obj) return range_list def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = [] item_obj = {} if jc.utils.has_data(data): ports = False for line in filter(None, data.splitlines()): if line.startswith('--'): if item_obj: raw_output.append(item_obj) item_obj = {} continue if line.startswith('Profile:'): item_obj['profile'] = line.split(': ')[1] continue if line.startswith('Title:'): item_obj['title'] = line.split(': ')[1] continue if line.startswith('Description:'): item_obj['description'] = line.split(': ')[1] continue if line.startswith('Port'): ports = True continue if ports: line_list = line.rsplit('/', maxsplit=1) if len(line_list) == 2: if line_list[1] == 'tcp': tcp_prot_list = _parse_port_list(line_list[0]) if tcp_prot_list: item_obj['tcp_list'] = tcp_prot_list tcp_prot_range = _parse_port_range(line_list[0]) if tcp_prot_range: item_obj['tcp_ranges'] = tcp_prot_range elif line_list[1] == 'udp': udp_prot_list = _parse_port_list(line_list[0]) if udp_prot_list: item_obj['udp_list'] = udp_prot_list udp_prot_range = _parse_port_range(line_list[0]) if udp_prot_range: item_obj['udp_ranges'] = udp_prot_range # 'any' case else: t_list = [] t_range = [] u_list = [] u_range = [] if 'tcp_list' in item_obj: t_list = item_obj['tcp_list'] if 'tcp_ranges' in item_obj: t_range = item_obj['tcp_ranges'] if 'udp_list' in item_obj: u_list = item_obj['udp_list'] if 'udp_ranges' in item_obj: u_range = item_obj['udp_ranges'] t_p_list = _parse_port_list(line, t_list) if t_p_list: item_obj['tcp_list'] = t_p_list t_r_list = _parse_port_range(line, t_range) if t_r_list: item_obj['tcp_ranges'] = t_r_list u_p_list = _parse_port_list(line, u_list) if u_p_list: item_obj['udp_list'] = u_p_list u_r_list = _parse_port_range(line, u_range) if u_r_list: item_obj['udp_ranges'] = u_r_list if item_obj: raw_output.append(item_obj) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/uname.py000066400000000000000000000105431415226333200157350ustar00rootroot00000000000000"""jc - JSON CLI output utility `uname -a` command output parser Note: Must use `uname -a` Usage (cli): $ uname -a | jc --uname or $ jc uname -a Usage (module): import jc.parsers.uname result = jc.parsers.uname.parse(uname_command_output) Schema: { "kernel_name": string, "node_name": string, "kernel_release": string, "operating_system": string, "hardware_platform": string, "processor": string, "machine": string, "kernel_version": string } Example: $ uname -a | jc --uname -p { "kernel_name": "Linux", "node_name": "user-ubuntu", "kernel_release": "4.15.0-65-generic", "operating_system": "GNU/Linux", "hardware_platform": "x86_64", "processor": "x86_64", "machine": "x86_64", "kernel_version": "#74-Ubuntu SMP Tue Sep 17 17:06:04 UTC 2019" } """ import jc.utils from jc.exceptions import ParseError class info(): """Provides parser metadata (version, author, etc.)""" version = '1.7' description = '`uname -a` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'freebsd'] magic_commands = ['uname'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (Dictionary) raw structured data to process Returns: Dictionary. Structured data to conform to the schema. """ # nothing to process return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: Dictionary. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = {} if jc.utils.has_data(data): # check for macOS or FreeBSD output if data.startswith('Darwin') or data.startswith('FreeBSD'): parsed_line = data.split() if len(parsed_line) < 5: raise ParseError('Could not parse uname output. Make sure to use "uname -a".') raw_output['machine'] = parsed_line.pop(-1) raw_output['kernel_name'] = parsed_line.pop(0) raw_output['node_name'] = parsed_line.pop(0) raw_output['kernel_release'] = parsed_line.pop(0) raw_output['kernel_version'] = ' '.join(parsed_line) # otherwise use linux parser else: # fixup for cases where 'machine' exists but 'processor' and 'hardware_platform' fields are blank. # if the fields exist then at least two of the three will be the same. # if the fields do not exist then none of the fields in those positions will be the same. # case of only two existing is undefined. Must either be one or all three existing, otherwise # there will be unexpected results during parsing. fixup = data.split() if len(fixup) >= 4: fixup_set = set([fixup[-2], fixup[-3], fixup[-4]]) if len(fixup_set) > 2: fixup.insert(-1, 'unknown') fixup.insert(-1, 'unknown') data = ' '.join(fixup) parsed_line = data.split(maxsplit=3) if len(parsed_line) < 3: raise ParseError('Could not parse uname output. Make sure to use "uname -a".') raw_output['kernel_name'] = parsed_line.pop(0) raw_output['node_name'] = parsed_line.pop(0) raw_output['kernel_release'] = parsed_line.pop(0) parsed_line = parsed_line[-1].rsplit(maxsplit=4) raw_output['operating_system'] = parsed_line.pop(-1) raw_output['processor'] = parsed_line.pop(-1) raw_output['hardware_platform'] = parsed_line.pop(-1) raw_output['machine'] = parsed_line.pop(-1) raw_output['kernel_version'] = parsed_line.pop(0) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/universal.py000066400000000000000000000077351415226333200166510ustar00rootroot00000000000000"""jc - JSON CLI output utility universal Parsers""" import string def simple_table_parse(data): """ Parse simple tables. The last column may contain data with spaces code adapted from Conor Heine at: https://gist.github.com/cahna/43a1a3ff4d075bcd71f9d7120037a501 Parameters: data: (list) Text data to parse that has been split into lines via .splitlines(). Item 0 must be the header row. Any spaces in header names should be changed to underscore '_'. You should also ensure headers are lowercase by using .lower(). Also, ensure there are no blank lines (list items) in the data. Returns: List of Dictionaries raw structured data """ headers = [h for h in ' '.join(data[0].strip().split()).split() if h] raw_data = map(lambda s: s.strip().split(None, len(headers) - 1), data[1:]) raw_output = [dict(zip(headers, r)) for r in raw_data] return raw_output def sparse_table_parse(data, delim='\u2063'): """ Parse tables with missing column data or with spaces in column data. Parameters: data: (list) Text data to parse that has been split into lines via .splitlines(). Item 0 must be the header row. Any spaces in header names should be changed to underscore '_'. You should also ensure headers are lowercase by using .lower(). Do not change the position of header names as the positions are used to find the data. Also, ensure there are no blank lines (list items) in the data. delim: (string) Delimiter to use. By default 'u\2063' (invisible separator) is used since this is unlikely to ever be seen in terminal output. You can change this for troubleshooting purposes or if there is a delimiter conflict with your data. Returns: List of Dictionaries raw structured data """ output = [] header_text = data.pop(0) header_text = header_text + ' ' header_list = header_text.split() # find each column index and end position header_search = [header_list[0]] for h in header_list[1:]: header_search.append(' ' + h + ' ') header_spec_list = [] for i, column in enumerate(header_list[0:len(header_list) - 1]): header_spec = { 'name': column, 'end': header_text.find(header_search[i + 1]) } header_spec_list.append(header_spec) # parse lines if data: for entry in data: output_line = {} # insert new separator since data can contain spaces for col in reversed(header_list): # find the right header_spec for h_spec in header_spec_list: if h_spec['name'] == col: h_end = h_spec['end'] # check if the location contains whitespace. if not # then move to the left until a space is found while h_end > 0 and entry[h_end] not in string.whitespace: h_end -= 1 # insert custom delimiter entry = entry[:h_end] + delim + entry[h_end + 1:] # create the entry list from the new custom delimiter entry_list = entry.split(delim, maxsplit=len(header_list) - 1) # clean up leading and trailing spaces in entry clean_entry_list = [] for col in entry_list: clean_entry = col.strip() if clean_entry == '': clean_entry = None clean_entry_list.append(clean_entry) output_line = dict(zip(header_list, clean_entry_list)) output.append(output_line) return output jc-1.17.3/jc/parsers/upower.py000066400000000000000000000332031415226333200161470ustar00rootroot00000000000000"""jc - JSON CLI output utility `upower` command output parser The `updated_epoch` calculated timestamp field is naive (i.e. based on the local time of the system the parser is run on) The `updated_epoch_utc` calculated timestamp field is timezone-aware and is only available if the timezone field is UTC. Usage (cli): $ upower -d | jc --upower or $ jc upower -d Usage (module): import jc.parsers.upower result = jc.parsers.upower.parse(upower_command_output) Schema: [ { "type": string, "device_name": string, "native_path": string, "power_supply": boolean, "updated": string, "updated_epoch": integer, # null if date-time conversion fails "updated_epoch_utc": integer, # null if date-time conversion fails "updated_seconds_ago": integer, "has_history": boolean, "has_statistics": boolean, "detail": { "type": string, "warning_level": string, # null if none "online": boolean, "icon_name": string "present": boolean, "rechargeable": boolean, "state": string, "energy": float, "energy_unit": string, "energy_empty": float, "energy_empty_unit": string, "energy_full": float, "energy_full_unit": string, "energy_full_design": float, "energy_full_design_unit": string, "energy_rate": float, "energy_rate_unit": string, "voltage": float, "voltage_unit": string, "time_to_full": float, "time_to_full_unit": string, "percentage": float, "capacity": float, "technology": string }, "history_charge": [ { "time": integer, "percent_charged": float, "status": string } ], "history_rate":[ { "time": integer, "percent_charged": float, "status": string } ], "daemon_version": string, "on_battery": boolean, "lid_is_closed": boolean, "lid_is_present": boolean, "critical_action": string } ] Examples: $ upower -i /org/freedesktop/UPower/devices/battery | jc --upower -p [ { "native_path": "/sys/devices/LNXSYSTM:00/device:00/PNP0C0A:00/power_supply/BAT0", "vendor": "NOTEBOOK", "model": "BAT", "serial": "0001", "power_supply": true, "updated": "Thu 11 Mar 2021 06:28:08 PM UTC", "has_history": true, "has_statistics": true, "detail": { "type": "battery", "present": true, "rechargeable": true, "state": "charging", "energy": 22.3998, "energy_empty": 0.0, "energy_full": 52.6473, "energy_full_design": 62.16, "energy_rate": 31.6905, "voltage": 12.191, "time_to_full": 57.3, "percentage": 42.5469, "capacity": 84.6964, "technology": "lithium-ion", "energy_unit": "Wh", "energy_empty_unit": "Wh", "energy_full_unit": "Wh", "energy_full_design_unit": "Wh", "energy_rate_unit": "W", "voltage_unit": "V", "time_to_full_unit": "minutes" }, "history_charge": [ { "time": 1328809335, "percent_charged": 42.547, "status": "charging" }, { "time": 1328809305, "percent_charged": 42.02, "status": "charging" } ], "history_rate": [ { "time": 1328809335, "percent_charged": 31.691, "status": "charging" } ], "updated_seconds_ago": 441975, "updated_epoch": 1615516088, "updated_epoch_utc": 1615487288 } ] $ upower -i /org/freedesktop/UPower/devices/battery | jc --upower -p -r [ { "native_path": "/sys/devices/LNXSYSTM:00/device:00/PNP0C0A:00/power_supply/BAT0", "vendor": "NOTEBOOK", "model": "BAT", "serial": "0001", "power_supply": "yes", "updated": "Thu 11 Mar 2021 06:28:08 PM UTC (441975 seconds ago)", "has_history": "yes", "has_statistics": "yes", "detail": { "type": "battery", "present": "yes", "rechargeable": "yes", "state": "charging", "energy": "22.3998 Wh", "energy_empty": "0 Wh", "energy_full": "52.6473 Wh", "energy_full_design": "62.16 Wh", "energy_rate": "31.6905 W", "voltage": "12.191 V", "time_to_full": "57.3 minutes", "percentage": "42.5469%", "capacity": "84.6964%", "technology": "lithium-ion" }, "history_charge": [ { "time": "1328809335", "percent_charged": "42.547", "status": "charging" }, { "time": "1328809305", "percent_charged": "42.020", "status": "charging" } ], "history_rate": [ { "time": "1328809335", "percent_charged": "31.691", "status": "charging" } ] } ] """ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.3' description = '`upower` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # details = 'enter any other details here' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux'] magic_commands = ['upower'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: # time conversions if 'updated' in entry: updated_list = entry['updated'].replace('(', '').replace(')', '').split() entry['updated'] = ' '.join(updated_list[:-3]) entry['updated_seconds_ago'] = jc.utils.convert_to_int(updated_list[-3]) if entry['updated']: ts = jc.utils.timestamp(entry['updated']) entry['updated_epoch'] = ts.naive entry['updated_epoch_utc'] = ts.utc # top level boolean conversions bool_list = ['power_supply', 'has_history', 'has_statistics', 'on_battery', 'lid_is_closed', 'lid_is_present'] for key in entry: if key in bool_list: entry[key] = jc.utils.convert_to_bool(entry[key]) # detail level boolean conversions bool_list = ['online', 'present', 'rechargeable'] if 'detail' in entry: for key in entry['detail']: if key in bool_list: entry['detail'][key] = jc.utils.convert_to_bool(entry['detail'][key]) # detail level convert warning to null if value is none if 'detail' in entry: if 'warning_level' in entry['detail']: if entry['detail']['warning_level'] == 'none': entry['detail']['warning_level'] = None # detail level convert energy readings to float and add unit keys if 'detail' in entry: add_items = [] for key, value in entry['detail'].items(): if value and isinstance(value, str): if len(value.split()) == 2: entry['detail'][key] = jc.utils.convert_to_float(value.split()[0]) add_items.append({ key + '_unit': value.split()[1] }) if add_items: for item in add_items: for key, value in item.items(): entry['detail'][key] = value # detail level fix percentages if 'detail' in entry: for key, value in entry['detail'].items(): if value and isinstance(value, str): if value[-1] == '%': entry['detail'][key] = jc.utils.convert_to_float(value) # detail level fix quoted values if 'detail' in entry: for key, value in entry['detail'].items(): if value and isinstance(value, str): if value.startswith("'") and value.endswith("'"): entry['detail'][key] = value[1:-1] # history_charge and history_rate level convert floats and ints histories = [] if 'history_charge' in entry: histories.append('history_charge') if 'history_rate' in entry: histories.append('history_rate') if histories: for history_obj_list in histories: new_history_list = [] for history_obj in entry[history_obj_list]: new_history_obj = {} for key, value in history_obj.items(): if key == 'time': new_history_obj[key] = jc.utils.convert_to_int(value) elif key == 'percent_charged': new_history_obj[key] = jc.utils.convert_to_float(value) else: new_history_obj[key] = value new_history_list.append(new_history_obj) entry[history_obj_list] = new_history_list return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = [] device_obj = {} device_name = None history_key = '' history_list = [] history_list_obj = {} if jc.utils.has_data(data): for line in filter(None, data.splitlines()): if line.startswith('Device:') or line.startswith('Daemon:'): if device_obj: raw_output.append(device_obj) device_obj = {} if line.startswith('Device:'): device_name = line.split(':', maxsplit=1)[1].strip() device_obj = { 'type': 'Device', "device_name": device_name } elif line.startswith('Daemon:'): device_obj = { 'type': 'Daemon' } continue # history detail lines if line.startswith(' ') and ':' not in line: line_list = line.strip().split() history_list_obj = { 'time': line_list[0], 'percent_charged': line_list[1], 'status': line_list[2] } history_list.append(history_list_obj) device_obj[history_key] = history_list continue # general detail lines if line.startswith(' ') and ':' in line: key = line.split(':', maxsplit=1)[0].strip().lower().replace('-', '_').replace(' ', '_').replace('(', '').replace(')', '') val = line.split(':', maxsplit=1)[1].strip() device_obj['detail'][key] = val continue # history detail lines are a special case of detail lines # set the history detail key if line.startswith(' History (charge):') or line.startswith(' History (rate):'): if line.startswith(' History (charge):'): history_key = 'history_charge' elif line.startswith(' History (rate):'): history_key = 'history_rate' device_obj[history_key] = {} history_list = [] continue # top level lines if line.startswith(' ') and ':' in line: key = line.split(':', maxsplit=1)[0].strip().lower().replace('-', '_').replace(' ', '_').replace('(', '').replace(')', '') val = line.split(':', maxsplit=1)[1].strip() device_obj[key] = val continue # set the general detail object if line.startswith(' ') and ':' not in line: detail_type = line.strip() device_obj['detail'] = { 'type': detail_type } continue if device_obj: raw_output.append(device_obj) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/uptime.py000066400000000000000000000114471415226333200161370ustar00rootroot00000000000000"""jc - JSON CLI output utility `uptime` command output parser Usage (cli): $ uptime | jc --uptime or $ jc uptime Usage (module): import jc.parsers.uptime result = jc.parsers.uptime.parse(uptime_command_output) Schema: { "time": string, "time_hour": integer, "time_minute": integer, "time_second": integer, # null if not displayed "uptime": string, "uptime_days": integer, "uptime_hours": integer, "uptime_minutes": integer, "uptime_total_seconds": integer, "users": integer, "load_1m": float, "load_5m": float, "load_15m": float } Example: $ uptime | jc --uptime -p { "time": "11:35", "uptime": "3 days, 4:03", "users": 5, "load_1m": 1.88, "load_5m": 2.0, "load_15m": 1.94, "time_hour": 11, "time_minute": 35, "time_second": null, "uptime_days": 3, "uptime_hours": 4, "uptime_minutes": 3, "uptime_total_seconds": 273780 } $ uptime | jc --uptime -p -r { "time": "11:36", "uptime": "3 days, 4:04", "users": "5", "load_1m": "1.88", "load_5m": "1.99", "load_15m": "1.94" } """ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.6' description = '`uptime` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'cygwin', 'aix', 'freebsd'] magic_commands = ['uptime'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (Dictionary) raw structured data to process Returns: Dictionary. Structured data to conform to the schema. """ if 'time' in proc_data: time_list = proc_data['time'].split(':') proc_data['time_hour'] = jc.utils.convert_to_int(time_list[0]) proc_data['time_minute'] = jc.utils.convert_to_int(time_list[1]) if len(time_list) == 3: proc_data['time_second'] = jc.utils.convert_to_int(time_list[2]) else: proc_data['time_second'] = None # parse the uptime field. Here are the variations: # 0 min # 3 mins # 3 days, 2:54 # 2 days, 19:32 # 1 day, 29 min # 16:59 if 'uptime' in proc_data: uptime_days = 0 uptime_hours = 0 uptime_minutes = 0 uptime_total_seconds = 0 if 'min' in proc_data['uptime']: uptime_minutes = jc.utils.convert_to_int(proc_data['uptime'].split()[-2]) if ':' in proc_data['uptime']: uptime_hours = jc.utils.convert_to_int(proc_data['uptime'].split()[-1].split(':')[-2]) uptime_minutes = jc.utils.convert_to_int(proc_data['uptime'].split(':')[-1]) if 'day' in proc_data['uptime']: uptime_days = jc.utils.convert_to_int(proc_data['uptime'].split()[0]) proc_data['uptime_days'] = uptime_days proc_data['uptime_hours'] = uptime_hours proc_data['uptime_minutes'] = uptime_minutes uptime_total_seconds = (uptime_days * 86400) + (uptime_hours * 3600) + (uptime_minutes * 60) proc_data['uptime_total_seconds'] = uptime_total_seconds # integer and float conversions int_list = ['users'] float_list = ['load_1m', 'load_5m', 'load_15m'] for key in proc_data: if key in int_list: proc_data[key] = jc.utils.convert_to_int(proc_data[key]) if key in float_list: proc_data[key] = jc.utils.convert_to_float(proc_data[key]) return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: Dictionary. Raw or processed structured data """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = {} cleandata = data.splitlines() if jc.utils.has_data(data): time, _, *uptime, users, _, _, _, load_1m, load_5m, load_15m = cleandata[0].split() raw_output['time'] = time raw_output['uptime'] = ' '.join(uptime).rstrip(',') raw_output['users'] = users raw_output['load_1m'] = load_1m.rstrip(',') raw_output['load_5m'] = load_5m.rstrip(',') raw_output['load_15m'] = load_15m if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/vmstat.py000066400000000000000000000223631415226333200161510ustar00rootroot00000000000000"""jc - JSON CLI output utility `vmstat` command output parser Options supported: `-a`, `-w`, `-d`, `-t` The `epoch` calculated timestamp field is naive (i.e. based on the local time of the system the parser is run on) The `epoch_utc` calculated timestamp field is timezone-aware and is only available if the timezone field is UTC. Usage (cli): $ vmstat | jc --vmstat or $ jc vmstat Usage (module): import jc.parsers.vmstat result = jc.parsers.vmstat.parse(vmstat_command_output) Schema: [ { "runnable_procs": integer, "uninterruptible_sleeping_procs": integer, "virtual_mem_used": integer, "free_mem": integer, "buffer_mem": integer, "cache_mem": integer, "inactive_mem": integer, "active_mem": integer, "swap_in": integer, "swap_out": integer, "blocks_in": integer, "blocks_out": integer, "interrupts": integer, "context_switches": integer, "user_time": integer, "system_time": integer, "idle_time": integer, "io_wait_time": integer, "stolen_time": integer, "disk": string, "total_reads": integer, "merged_reads": integer, "sectors_read": integer, "reading_ms": integer, "total_writes": integer, "merged_writes": integer, "sectors_written": integer, "writing_ms": integer, "current_io": integer, "io_seconds": integer, "timestamp": string, "timezone": string, "epoch": integer, # naive timestamp if -t flag is used "epoch_utc": integer # aware timestamp if -t flag is used and UTC TZ } ] Examples: $ vmstat | jc --vmstat -p [ { "runnable_procs": 2, "uninterruptible_sleeping_procs": 0, "virtual_mem_used": 0, "free_mem": 2794468, "buffer_mem": 2108, "cache_mem": 741208, "inactive_mem": null, "active_mem": null, "swap_in": 0, "swap_out": 0, "blocks_in": 1, "blocks_out": 3, "interrupts": 29, "context_switches": 57, "user_time": 0, "system_time": 0, "idle_time": 99, "io_wait_time": 0, "stolen_time": 0, "timestamp": null, "timezone": null } ] $ vmstat | jc --vmstat -p -r [ { "runnable_procs": "2", "uninterruptible_sleeping_procs": "0", "virtual_mem_used": "0", "free_mem": "2794468", "buffer_mem": "2108", "cache_mem": "741208", "inactive_mem": null, "active_mem": null, "swap_in": "0", "swap_out": "0", "blocks_in": "1", "blocks_out": "3", "interrupts": "29", "context_switches": "57", "user_time": "0", "system_time": "0", "idle_time": "99", "io_wait_time": "0", "stolen_time": "0", "timestamp": null, "timezone": null } ] """ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.1' description = '`vmstat` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # details = 'enter any other details here' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux'] magic_commands = ['vmstat'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured to conform to the schema. """ int_list = ['runnable_procs', 'uninterruptible_sleeping_procs', 'virtual_mem_used', 'free_mem', 'buffer_mem', 'cache_mem', 'inactive_mem', 'active_mem', 'swap_in', 'swap_out', 'blocks_in', 'blocks_out', 'interrupts', 'context_switches', 'user_time', 'system_time', 'idle_time', 'io_wait_time', 'stolen_time', 'total_reads', 'merged_reads', 'sectors_read', 'reading_ms', 'total_writes', 'merged_writes', 'sectors_written', 'writing_ms', 'current_io', 'io_seconds'] for entry in proc_data: for key in entry: if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) if entry['timestamp']: ts = jc.utils.timestamp(f'{entry["timestamp"]} {entry["timezone"]}') entry['epoch'] = ts.naive entry['epoch_utc'] = ts.utc return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = [] output_line = {} procs = None buff_cache = None disk = None tstamp = None tz = None if jc.utils.has_data(data): for line in filter(None, data.splitlines()): # detect output type if not procs and not disk and line.startswith('procs'): procs = True tstamp = '-timestamp-' in line continue if not procs and not disk and line.startswith('disk'): disk = True tstamp = '-timestamp-' in line continue # skip header rows if (procs or disk) and (line.startswith('procs') or line.startswith('disk')): continue if 'swpd' in line and 'free' in line and 'buff' in line and 'cache' in line: buff_cache = True tz = line.strip().split()[-1] if tstamp else None continue if 'swpd' in line and 'free' in line and 'inact' in line and 'active' in line: buff_cache = False tz = line.strip().split()[-1] if tstamp else None continue if 'total' in line and 'merged' in line and 'sectors' in line: tz = line.strip().split()[-1] if tstamp else None continue # line parsing if procs: line_list = line.strip().split(maxsplit=17) output_line = { 'runnable_procs': line_list[0], 'uninterruptible_sleeping_procs': line_list[1], 'virtual_mem_used': line_list[2], 'free_mem': line_list[3], 'buffer_mem': line_list[4] if buff_cache else None, 'cache_mem': line_list[5] if buff_cache else None, 'inactive_mem': line_list[4] if not buff_cache else None, 'active_mem': line_list[5] if not buff_cache else None, 'swap_in': line_list[6], 'swap_out': line_list[7], 'blocks_in': line_list[8], 'blocks_out': line_list[9], 'interrupts': line_list[10], 'context_switches': line_list[11], 'user_time': line_list[12], 'system_time': line_list[13], 'idle_time': line_list[14], 'io_wait_time': line_list[15], 'stolen_time': line_list[16], 'timestamp': line_list[17] if tstamp else None, 'timezone': tz or None } raw_output.append(output_line) if disk: line_list = line.strip().split(maxsplit=11) output_line = { 'disk': line_list[0], 'total_reads': line_list[1], 'merged_reads': line_list[2], 'sectors_read': line_list[3], 'reading_ms': line_list[4], 'total_writes': line_list[5], 'merged_writes': line_list[6], 'sectors_written': line_list[7], 'writing_ms': line_list[8], 'current_io': line_list[9], 'io_seconds': line_list[10], 'timestamp': line_list[11] if tstamp else None, 'timezone': tz or None } raw_output.append(output_line) return raw_output if raw else _process(raw_output) jc-1.17.3/jc/parsers/vmstat_s.py000066400000000000000000000242161415226333200164720ustar00rootroot00000000000000"""jc - JSON CLI output utility `vmstat` command output streaming parser > This streaming parser outputs JSON Lines Options supported: `-a`, `-w`, `-d`, `-t` The `epoch` calculated timestamp field is naive (i.e. based on the local time of the system the parser is run on) The `epoch_utc` calculated timestamp field is timezone-aware and is only available if the timezone field is UTC. Usage (cli): $ vmstat | jc --vmstat-s > Note: When piping `jc` converted `vmstat` output to other processes it may appear the output is hanging due to the OS pipe buffers. This is because `vmstat` output is too small to quickly fill up the buffer. Use the `-u` option to unbuffer the `jc` output if you would like immediate output. See the [readme](https://github.com/kellyjonbrazil/jc/tree/master#unbuffering-output) for more information. Usage (module): import jc.parsers.vmstat_s result = jc.parsers.vmstat_s.parse(vmstat_command_output.splitlines()) # result is an iterable object for item in result: # do something Schema: { "runnable_procs": integer, "uninterruptible_sleeping_procs": integer, "virtual_mem_used": integer, "free_mem": integer, "buffer_mem": integer, "cache_mem": integer, "inactive_mem": integer, "active_mem": integer, "swap_in": integer, "swap_out": integer, "blocks_in": integer, "blocks_out": integer, "interrupts": integer, "context_switches": integer, "user_time": integer, "system_time": integer, "idle_time": integer, "io_wait_time": integer, "stolen_time": integer, "disk": string, "total_reads": integer, "merged_reads": integer, "sectors_read": integer, "reading_ms": integer, "total_writes": integer, "merged_writes": integer, "sectors_written": integer, "writing_ms": integer, "current_io": integer, "io_seconds": integer, "timestamp": string, "timezone": string, "epoch": integer, # naive timestamp if -t flag is used "epoch_utc": integer # aware timestamp if -t flag is used and UTC TZ "_jc_meta": # This object only exists if using -qq or ignore_exceptions=True { "success": booean, # true if successfully parsed, false if error "error": string, # exists if "success" is false "line": string # exists if "success" is false } } Examples: $ vmstat | jc --vmstat-s {"runnable_procs":2,"uninterruptible_sleeping_procs":0,"virtual_mem_used":0,"free_mem":2794468,"buffer_mem":2108,"cache_mem":741208,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":1,"blocks_out":3,"interrupts":29,"context_switches":57,"user_time":0,"system_time":0,"idle_time":99,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null} ... $ vmstat | jc --vmstat-s -r {"runnable_procs":"2","uninterruptible_sleeping_procs":"0","virtual_mem_used":"0","free_mem":"2794468","buffer_mem":"2108","cache_mem":"741208","inactive_mem":null,"active_mem":null,"swap_in":"0","swap_out":"0","blocks_in":"1","blocks_out":"3","interrupts":"29","context_switches":"57","user_time":"0","system_time":"0","idle_time":"99","io_wait_time":"0","stolen_time":"0","timestamp":null,"timezone":null} ... """ import jc.utils from jc.utils import stream_success, stream_error from jc.exceptions import ParseError class info(): """Provides parser metadata (version, author, etc.)""" version = '0.6' description = '`vmstat` command streaming parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux'] streaming = True __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (Dictionary) raw structured data to process Returns: Dictionary. Structured data to conform to the schema. """ int_list = ['runnable_procs', 'uninterruptible_sleeping_procs', 'virtual_mem_used', 'free_mem', 'buffer_mem', 'cache_mem', 'inactive_mem', 'active_mem', 'swap_in', 'swap_out', 'blocks_in', 'blocks_out', 'interrupts', 'context_switches', 'user_time', 'system_time', 'idle_time', 'io_wait_time', 'stolen_time', 'total_reads', 'merged_reads', 'sectors_read', 'reading_ms', 'total_writes', 'merged_writes', 'sectors_written', 'writing_ms', 'current_io', 'io_seconds'] for key in proc_data: if key in int_list: proc_data[key] = jc.utils.convert_to_int(proc_data[key]) if proc_data['timestamp']: ts = jc.utils.timestamp(f'{proc_data["timestamp"]} {proc_data["timezone"]}') proc_data['epoch'] = ts.naive proc_data['epoch_utc'] = ts.utc return proc_data def parse(data, raw=False, quiet=False, ignore_exceptions=False): """ Main text parsing generator function. Returns an iterator object. Parameters: data: (iterable) line-based text data to parse (e.g. sys.stdin or str.splitlines()) raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True ignore_exceptions: (boolean) ignore parsing exceptions if True Yields: Dictionary. Raw or processed structured data. Returns: Iterator object """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.streaming_input_type_check(data) procs = None buff_cache = None disk = None tstamp = None tz = None for line in data: output_line = {} try: jc.utils.streaming_line_input_type_check(line) # skip blank lines if line.strip() == '': continue # detect output type if not procs and not disk and line.startswith('procs'): procs = True tstamp = '-timestamp-' in line continue if not procs and not disk and line.startswith('disk'): disk = True tstamp = '-timestamp-' in line continue # skip header rows if (procs or disk) and (line.startswith('procs') or line.startswith('disk')): continue if 'swpd' in line and 'free' in line and 'buff' in line and 'cache' in line: buff_cache = True tz = line.strip().split()[-1] if tstamp else None continue if 'swpd' in line and 'free' in line and 'inact' in line and 'active' in line: buff_cache = False tz = line.strip().split()[-1] if tstamp else None continue if 'total' in line and 'merged' in line and 'sectors' in line: tz = line.strip().split()[-1] if tstamp else None continue # line parsing if procs: line_list = line.strip().split(maxsplit=17) output_line = { 'runnable_procs': line_list[0], 'uninterruptible_sleeping_procs': line_list[1], 'virtual_mem_used': line_list[2], 'free_mem': line_list[3], 'buffer_mem': line_list[4] if buff_cache else None, 'cache_mem': line_list[5] if buff_cache else None, 'inactive_mem': line_list[4] if not buff_cache else None, 'active_mem': line_list[5] if not buff_cache else None, 'swap_in': line_list[6], 'swap_out': line_list[7], 'blocks_in': line_list[8], 'blocks_out': line_list[9], 'interrupts': line_list[10], 'context_switches': line_list[11], 'user_time': line_list[12], 'system_time': line_list[13], 'idle_time': line_list[14], 'io_wait_time': line_list[15], 'stolen_time': line_list[16], 'timestamp': line_list[17] if tstamp else None, 'timezone': tz or None } if disk: line_list = line.strip().split(maxsplit=11) output_line = { 'disk': line_list[0], 'total_reads': line_list[1], 'merged_reads': line_list[2], 'sectors_read': line_list[3], 'reading_ms': line_list[4], 'total_writes': line_list[5], 'merged_writes': line_list[6], 'sectors_written': line_list[7], 'writing_ms': line_list[8], 'current_io': line_list[9], 'io_seconds': line_list[10], 'timestamp': line_list[11] if tstamp else None, 'timezone': tz or None } if output_line: yield stream_success(output_line, ignore_exceptions) if raw else stream_success(_process(output_line), ignore_exceptions) else: raise ParseError('Not vmstat data') except Exception as e: yield stream_error(e, ignore_exceptions, line) jc-1.17.3/jc/parsers/w.py000066400000000000000000000112771415226333200151030ustar00rootroot00000000000000"""jc - JSON CLI output utility `w` command output parser Usage (cli): $ w | jc --w or $ jc w Usage (module): import jc.parsers.w result = jc.parsers.w.parse(w_command_output) Schema: [ { "user": string, # '-' = null "tty": string, # '-' = null "from": string, # '-' = null "login_at": string, # '-' = null "idle": string, # '-' = null "jcpu": string, "pcpu": string, "what": string # '-' = null } ] Examples: $ w | jc --w -p [ { "user": "root", "tty": "tty1", "from": null, "login_at": "07:49", "idle": "1:15m", "jcpu": "0.00s", "pcpu": "0.00s", "what": "-bash" }, { "user": "root", "tty": "ttyS0", "from": null, "login_at": "06:24", "idle": "0.00s", "jcpu": "0.43s", "pcpu": "0.00s", "what": "w" }, { "user": "root", "tty": "pts/0", "from": "192.168.71.1", "login_at": "06:29", "idle": "2:35m", "jcpu": "0.00s", "pcpu": "0.00s", "what": "-bash" } ] $ w | jc --w -p -r [ { "user": "kbrazil", "tty": "tty1", "from": "-", "login_at": "07:49", "idle": "1:16m", "jcpu": "0.00s", "pcpu": "0.00s", "what": "-bash" }, { "user": "kbrazil", "tty": "ttyS0", "from": "-", "login_at": "06:24", "idle": "2.00s", "jcpu": "0.46s", "pcpu": "0.00s", "what": "w" }, { "user": "kbrazil", "tty": "pts/0", "from": "192.168.71.1", "login_at": "06:29", "idle": "2:36m", "jcpu": "0.00s", "pcpu": "0.00s", "what": "-bash" } ] """ import string import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.5' description = '`w` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'cygwin', 'aix', 'freebsd'] magic_commands = ['w'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: null_list = ['user', 'tty', 'from', 'login_at', 'idle', 'what'] for key in entry: if key in null_list: if entry[key] == '-': entry[key] = None return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) cleandata = data.splitlines()[1:] raw_output = [] if jc.utils.has_data(data): header_text = cleandata[0].lower() # fixup for 'from' column that can be blank from_col = header_text.find('from') # clean up 'login@' header # even though @ in a key is valid json, it can make things difficult header_text = header_text.replace('login@', 'login_at') headers = [h for h in ' '.join(header_text.strip().split()).split() if h] # parse lines raw_output = [] if cleandata: for entry in cleandata[1:]: output_line = {} # normalize data by inserting Null for missing data temp_line = entry.split(maxsplit=len(headers) - 1) # fix from column, always at column 2 if 'from' in headers: if entry[from_col] in string.whitespace: temp_line.insert(2, '-') output_line = dict(zip(headers, temp_line)) raw_output.append(output_line) # strip whitespace from beginning and end of all string values for row in raw_output: for item in row: if isinstance(row[item], str): row[item] = row[item].strip() if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/wc.py000066400000000000000000000052321415226333200152400ustar00rootroot00000000000000"""jc - JSON CLI output utility `wc` command output parser Usage (cli): $ wc file.txt | jc --wc or $ jc wc file.txt Usage (module): import jc.parsers.wc result = jc.parsers.wc.parse(wc_command_output) Schema: [ { "filename": string, "lines": integer, "words": integer, "characters": integer } ] Examples: $ wc * | jc --wc -p [ { "filename": "airport-I.json", "lines": 1, "words": 30, "characters": 307 }, { "filename": "airport-I.out", "lines": 15, "words": 33, "characters": 348 }, { "filename": "airport-s.json", "lines": 1, "words": 202, "characters": 2152 }, ... ] """ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.3' description = '`wc` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'cygwin', 'aix', 'freebsd'] magic_commands = ['wc'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: int_list = ['lines', 'words', 'characters'] for key in entry: if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = [] if jc.utils.has_data(data): for line in filter(None, data.splitlines()): split_line = line.split(maxsplit=3) item = { 'filename': split_line[3] if len(split_line) == 4 else None, 'lines': split_line[0], 'words': split_line[1], 'characters': split_line[2] } raw_output.append(item) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/who.py000066400000000000000000000200441415226333200154220ustar00rootroot00000000000000"""jc - JSON CLI output utility `who` command output parser Accepts any of the following who options (or no options): `-aTH` The `epoch` calculated timestamp field is naive (i.e. based on the local time of the system the parser is run on) Usage (cli): $ who | jc --who or $ jc who Usage (module): import jc.parsers.who result = jc.parsers.who.parse(who_command_output) Schema: [ { "user": string, "event": string, "writeable_tty": string, "tty": string, "time": string, "epoch": integer, # naive timestamp. null if time cannot be converted "idle": string, "pid": integer, "from": string, "comment": string } ] Examples: $ who -a | jc --who -p [ { "event": "reboot", "time": "Feb 7 23:31", "pid": 1, "epoch": null }, { "user": "joeuser", "writeable_tty": "-", "tty": "console", "time": "Feb 7 23:32", "idle": "old", "pid": 105, "epoch": null }, { "user": "joeuser", "writeable_tty": "+", "tty": "ttys000", "time": "Feb 13 16:44", "idle": ".", "pid": 51217, "comment": "term=0 exit=0", "epoch": null }, { "user": "joeuser", "writeable_tty": "?", "tty": "ttys003", "time": "Feb 28 08:59", "idle": "01:36", "pid": 41402, "epoch": null }, { "user": "joeuser", "writeable_tty": "+", "tty": "ttys004", "time": "Mar 1 16:35", "idle": ".", "pid": 15679, "from": "192.168.1.5", "epoch": null } ] $ who -a | jc --who -p -r [ { "event": "reboot", "time": "Feb 7 23:31", "pid": "1" }, { "user": "joeuser", "writeable_tty": "-", "tty": "console", "time": "Feb 7 23:32", "idle": "old", "pid": "105" }, { "user": "joeuser", "writeable_tty": "+", "tty": "ttys000", "time": "Feb 13 16:44", "idle": ".", "pid": "51217", "comment": "term=0 exit=0" }, { "user": "joeuser", "writeable_tty": "?", "tty": "ttys003", "time": "Feb 28 08:59", "idle": "01:36", "pid": "41402" }, { "user": "joeuser", "writeable_tty": "+", "tty": "ttys004", "time": "Mar 1 16:35", "idle": ".", "pid": "15679", "from": "192.168.1.5" } ] """ import re import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" version = '1.5' description = '`who` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' # details = 'enter any other details here' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'cygwin', 'aix', 'freebsd'] magic_commands = ['who'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: int_list = ['pid'] for key in entry: if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) if 'time' in entry: ts = jc.utils.timestamp(entry['time']) entry['epoch'] = ts.naive return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries. Raw or processed structured data. """ jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = [] # Clear any blank lines cleandata = list(filter(None, data.splitlines())) if jc.utils.has_data(data): for line in cleandata: output_line = {} linedata = line.split() # clear headers, if they exist if ''.join(linedata[0:3]) == 'NAMELINETIME' \ or ''.join(linedata[0:3]) == 'USERLINEWHEN': linedata.pop(0) continue # mac reboot line if linedata[0] == 'reboot': output_line['event'] = 'reboot' output_line['time'] = ' '.join(linedata[2:5]) output_line['pid'] = linedata[6] raw_output.append(output_line) continue # linux reboot line if ''.join(linedata[0:2]) == 'systemboot': output_line['event'] = 'reboot' output_line['time'] = ' '.join(linedata[2:4]) raw_output.append(output_line) continue # linux login line if linedata[0] == 'LOGIN': output_line['event'] = 'login' output_line['tty'] = linedata[1] output_line['time'] = ' '.join(linedata[2:4]) output_line['pid'] = linedata[4] if len(linedata) > 5: output_line['comment'] = ' '.join(linedata[5:]) raw_output.append(output_line) continue # linux run-level if linedata[0] == 'run-level': output_line['event'] = ' '.join(linedata[0:2]) output_line['time'] = ' '.join(linedata[2:4]) raw_output.append(output_line) continue # mac run-level (ignore because not enough useful info) if linedata[1] == 'run-level': continue # pts lines with no user information if linedata[0].startswith('pts/'): output_line['tty'] = linedata[0] output_line['time'] = ' '.join(linedata[1:3]) output_line['pid'] = linedata[3] output_line['comment'] = ' '.join(linedata[4:]) raw_output.append(output_line) continue # user logins output_line['user'] = linedata.pop(0) if linedata[0] in '+-?': output_line['writeable_tty'] = linedata.pop(0) output_line['tty'] = linedata.pop(0) # mac if re.match(r'[JFMASOND][aepuco][nbrynlgptvc]', linedata[0]): output_line['time'] = ' '.join([linedata.pop(0), linedata.pop(0), linedata.pop(0)]) # linux else: output_line['time'] = ' '.join([linedata.pop(0), linedata.pop(0)]) # if just one more field, then it's the remote IP if len(linedata) == 1: output_line['from'] = linedata[0].replace('(', '').replace(')', '') raw_output.append(output_line) continue # extended info: idle if len(linedata) > 0: output_line['idle'] = linedata.pop(0) # extended info: pid if len(linedata) > 0: output_line['pid'] = linedata.pop(0) # extended info is from if len(linedata) > 0 and linedata[0].startswith('('): output_line['from'] = linedata[0].replace('(', '').replace(')', '') # else, extended info is comment elif len(linedata) > 0: output_line['comment'] = ' '.join(linedata) raw_output.append(output_line) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/xml.py000066400000000000000000000060741415226333200154340ustar00rootroot00000000000000"""jc - JSON CLI output utility `XML` file parser Usage (cli): $ cat foo.xml | jc --xml Usage (module): import jc.parsers.xml result = jc.parsers.xml.parse(xml_file_output) Schema: XML Document converted to a Dictionary See https://github.com/martinblech/xmltodict for details { "key1": string/object, "key2": string/object } Examples: $ cat cd_catalog.xml Empire Burlesque Bob Dylan USA Columbia 10.90 1985 Hide your heart Bonnie Tyler UK CBS Records 9.90 1988 ... $ cat cd_catalog.xml | jc --xml -p { "CATALOG": { "CD": [ { "TITLE": "Empire Burlesque", "ARTIST": "Bob Dylan", "COUNTRY": "USA", "COMPANY": "Columbia", "PRICE": "10.90", "YEAR": "1985" }, { "TITLE": "Hide your heart", "ARTIST": "Bonnie Tyler", "COUNTRY": "UK", "COMPANY": "CBS Records", "PRICE": "9.90", "YEAR": "1988" }, ... } """ import jc.utils from jc.exceptions import LibraryNotInstalled class info(): """Provides parser metadata (version, author, etc.)""" version = '1.6' description = 'XML file parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' details = 'Using the xmltodict library at https://github.com/martinblech/xmltodict' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'cygwin', 'win32', 'aix', 'freebsd'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (Dictionary) raw structured data to process Returns: Dictionary representing an XML document. """ # No further processing return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: Dictionary. Raw or processed structured data. """ # check if xml library is installed and fail gracefully if it is not try: import xmltodict except Exception: raise LibraryNotInstalled('The xmltodict library is not installed.') jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = [] if jc.utils.has_data(data): raw_output = xmltodict.parse(data) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/parsers/yaml.py000066400000000000000000000072651415226333200156010ustar00rootroot00000000000000"""jc - JSON CLI output utility `YAML` file parser Usage (cli): $ cat foo.yaml | jc --yaml Usage (module): import jc.parsers.yaml result = jc.parsers.yaml.parse(yaml_file_output) Schema: YAML Document converted to a Dictionary See https://pypi.org/project/ruamel.yaml for details [ { "key1": string/int/float/boolean/null/array/object, "key2": string/int/float/boolean/null/array/object } ] Examples: $ cat istio-mtls-permissive.yaml apiVersion: "authentication.istio.io/v1alpha1" kind: "Policy" metadata: name: "default" namespace: "default" spec: peers: - mtls: {} --- apiVersion: "networking.istio.io/v1alpha3" kind: "DestinationRule" metadata: name: "default" namespace: "default" spec: host: "*.default.svc.cluster.local" trafficPolicy: tls: mode: ISTIO_MUTUAL $ cat istio-mtls-permissive.yaml | jc --yaml -p [ { "apiVersion": "authentication.istio.io/v1alpha1", "kind": "Policy", "metadata": { "name": "default", "namespace": "default" }, "spec": { "peers": [ { "mtls": {} } ] } }, { "apiVersion": "networking.istio.io/v1alpha3", "kind": "DestinationRule", "metadata": { "name": "default", "namespace": "default" }, "spec": { "host": "*.default.svc.cluster.local", "trafficPolicy": { "tls": { "mode": "ISTIO_MUTUAL" } } } } ] """ import jc.utils from jc.exceptions import LibraryNotInstalled class info(): """Provides parser metadata (version, author, etc.)""" version = '1.6' description = 'YAML file parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' details = 'Using the ruamel.yaml library at https://pypi.org/project/ruamel.yaml' # compatible options: linux, darwin, cygwin, win32, aix, freebsd compatible = ['linux', 'darwin', 'cygwin', 'win32', 'aix', 'freebsd'] __version__ = info.version def _process(proc_data): """ Final processing to conform to the schema. Parameters: proc_data: (List of Dictionaries) raw structured data to process Returns: List of Dictionaries. Each dictionary represents a YAML document. """ # No further processing return proc_data def parse(data, raw=False, quiet=False): """ Main text parsing function Parameters: data: (string) text data to parse raw: (boolean) output preprocessed JSON if True quiet: (boolean) suppress warning messages if True Returns: List of Dictionaries representing the YAML documents. """ # check if yaml library is installed and fail gracefully if it is not try: from ruamel.yaml import YAML except Exception: raise LibraryNotInstalled('The ruamel.yaml library is not installed.') jc.utils.compatibility(__name__, info.compatible, quiet) jc.utils.input_type_check(data) raw_output = [] if jc.utils.has_data(data): # monkey patch to disable plugins since we don't use them and in # ruamel.yaml versions prior to 0.17.0 the use of __file__ in the # plugin code is incompatible with the pyoxidizer packager YAML.official_plug_ins = lambda a: [] yaml = YAML(typ='safe') for document in yaml.load_all(data): raw_output.append(document) if raw: return raw_output else: return _process(raw_output) jc-1.17.3/jc/tracebackplus.py000066400000000000000000000220651415226333200157760ustar00rootroot00000000000000"""More comprehensive traceback formatting for Python scripts. To enable this module, do: import tracebackplus; tracebackplus.enable() at the top of your script. The optional arguments to enable() are: logdir - if set, tracebacks are written to files in this directory context - number of lines of source code to show for each stack frame By default, tracebacks are displayed but not saved and the context is 5 lines. Alternatively, if you have caught an exception and want tracebackplus to display it for you, call tracebackplus.handler(). The optional argument to handler() is a 3-item tuple (etype, evalue, etb) just like the value of sys.exc_info(). """ ''' tracebackplus was derived from the cgitb standard library module. As cgitb is being deprecated, this simplified version of cgitb was created. https://github.com/python/cpython/blob/3.8/Lib/cgitb.py "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Python Software Foundation; All Rights Reserved" PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 -------------------------------------------- 1. This LICENSE AGREEMENT is between the Python Software Foundation ("PSF"), and the Individual or Organization ("Licensee") accessing and otherwise using this software ("Python") in source or binary form and its associated documentation. 2. Subject to the terms and conditions of this License Agreement, PSF hereby grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce, analyze, test, perform and/or display publicly, prepare derivative works, distribute, and otherwise use Python alone or in any derivative version, provided, however, that PSF's License Agreement and PSF's notice of copyright, i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Python Software Foundation; All Rights Reserved" are retained in Python alone or in any derivative version prepared by Licensee. 3. In the event Licensee prepares a derivative work that is based on or incorporates Python or any part thereof, and wants to make the derivative work available to others as provided herein, then Licensee hereby agrees to include in any such work a brief summary of the changes made to Python. 4. PSF is making Python available to Licensee on an "AS IS" basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT INFRINGE ANY THIRD PARTY RIGHTS. 5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. 6. This License Agreement will automatically terminate upon a material breach of its terms and conditions. 7. Nothing in this License Agreement shall be deemed to create any relationship of agency, partnership, or joint venture between PSF and Licensee. This License Agreement does not grant permission to use PSF trademarks or trade name in a trademark sense to endorse or promote products or services of Licensee, or any third party. 8. By copying, installing or otherwise using Python, Licensee agrees to be bound by the terms and conditions of this License Agreement. ''' import inspect import keyword import linecache import os import pydoc import sys import tempfile import time import tokenize import traceback __UNDEF__ = [] # a special sentinel object def lookup(name, frame, locals): """Find the value for a given name in the given environment.""" if name in locals: return 'local', locals[name] if name in frame.f_globals: return 'global', frame.f_globals[name] if '__builtins__' in frame.f_globals: builtins = frame.f_globals['__builtins__'] if isinstance(builtins, dict): if name in builtins: return 'builtin', builtins[name] else: if hasattr(builtins, name): return 'builtin', getattr(builtins, name) return None, __UNDEF__ def scanvars(reader, frame, locals): """Scan one logical line of Python and look up values of variables used.""" vars, lasttoken, parent, prefix, value = [], None, None, '', __UNDEF__ for ttype, token, start, end, line in tokenize.generate_tokens(reader): if ttype == tokenize.NEWLINE: break if ttype == tokenize.NAME and token not in keyword.kwlist: if lasttoken == '.': if parent is not __UNDEF__: value = getattr(parent, token, __UNDEF__) vars.append((prefix + token, prefix, value)) else: where, value = lookup(token, frame, locals) vars.append((token, where, value)) elif token == '.': prefix += lasttoken + '.' parent = value else: parent, prefix = None, '' lasttoken = token return vars def text(einfo, context=5): """Return a plain text document describing a given traceback.""" etype, evalue, etb = einfo if isinstance(etype, type): etype = etype.__name__ pyver = 'Python ' + sys.version.split()[0] + ': ' + sys.executable date = time.ctime(time.time()) head = '%s\n%s\n%s\n' % (str(etype), pyver, date) + ''' A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred. ''' frames = [] records = inspect.getinnerframes(etb, context) for frame, file, lnum, func, lines, index in records: file = file and os.path.abspath(file) or '?' args, varargs, varkw, locals = inspect.getargvalues(frame) call = '' if func != '?': call = 'in ' + func + \ inspect.formatargvalues(args, varargs, varkw, locals, formatvalue=lambda value: '=' + pydoc.text.repr(value)) highlight = {} def reader(lnum=[lnum]): highlight[lnum[0]] = 1 try: return linecache.getline(file, lnum[0]) finally: lnum[0] += 1 vars = scanvars(reader, frame, locals) rows = [' %s %s' % (file, call)] if index is not None: i = lnum - index for line in lines: num = '%5d ' % i rows.append(num + line.rstrip()) i += 1 done, dump = {}, [] for name, where, value in vars: if name in done: continue done[name] = 1 if value is not __UNDEF__: if where == 'global': name = 'global ' + name elif where != 'local': name = where + name.split('.')[-1] dump.append('%s = %s' % (name, pydoc.text.repr(value))) else: dump.append(name + ' undefined') rows.append('\n'.join(dump)) frames.append('\n%s\n' % '\n'.join(rows)) exception = ['%s: %s' % (str(etype), str(evalue))] for name in dir(evalue): value = pydoc.text.repr(getattr(evalue, name)) exception.append('\n%s%s = %s' % (' ' * 4, name, value)) return head + ''.join(frames) + ''.join(exception) + ''' The above is a description of an error in a Python program. Here is the original traceback: %s ''' % ''.join(traceback.format_exception(etype, evalue, etb)) class Hook: """A hook to replace sys.excepthook""" def __init__(self, logdir=None, context=5, file=None): self.logdir = logdir # log tracebacks to files if not None self.context = context # number of source code lines per frame self.file = file or sys.stdout # place to send the output def __call__(self, etype, evalue, etb): self.handle((etype, evalue, etb)) def handle(self, info=None): info = info or sys.exc_info() formatter = text try: doc = formatter(info, self.context) except: # just in case something goes wrong doc = ''.join(traceback.format_exception(*info)) self.file.write(doc + '\n') if self.logdir is not None: suffix = '.txt' (fd, path) = tempfile.mkstemp(suffix=suffix, dir=self.logdir) try: with os.fdopen(fd, 'w') as file: file.write(doc) msg = '%s contains the description of this error.' % path except: msg = 'Tried to save traceback to %s, but failed.' % path self.file.write(msg + '\n') try: self.file.flush() except: pass handler = Hook().handle def enable(logdir=None, context=5): """Install an exception handler that sends verbose tracebacks to STDOUT.""" sys.excepthook = Hook(logdir=logdir, context=context) jc-1.17.3/jc/utils.py000066400000000000000000000434561415226333200143220ustar00rootroot00000000000000"""jc - JSON CLI output utility utils""" import sys import re import locale import shutil from datetime import datetime, timezone from textwrap import TextWrapper def warning_message(message_lines): """ Prints warning message for non-fatal issues. The first line is prepended with 'jc: Warning - ' and subsequent lines are indented. Wraps text as needed based on the terminal width. Parameters: message: (list) list of string lines Returns: None - just prints output to STDERR """ # this is for backwards compatibility with existing custom parsers if isinstance(message_lines, str): message_lines = [message_lines] columns = shutil.get_terminal_size().columns first_wrapper = TextWrapper(width=columns, subsequent_indent=' ' * 15) next_wrapper = TextWrapper(width=columns, initial_indent=' ' * 15, subsequent_indent=' ' * 19) first_line = message_lines.pop(0) first_str = f'jc: Warning - {first_line}' first_str = first_wrapper.fill(first_str) print(first_str, file=sys.stderr) for line in message_lines: if line == '': continue message = next_wrapper.fill(line) print(message, file=sys.stderr) def error_message(message_lines): """ Prints an error message for fatal issues. The first line is prepended with 'jc: Error - ' and subsequent lines are indented. Wraps text as needed based on the terminal width. Parameters: message: (list) list of string lines Returns: None - just prints output to STDERR """ columns = shutil.get_terminal_size().columns first_wrapper = TextWrapper(width=columns, subsequent_indent=' ' * 13) next_wrapper = TextWrapper(width=columns, initial_indent=' ' * 13, subsequent_indent=' ' * 17) first_line = message_lines.pop(0) first_str = f'jc: Error - {first_line}' first_str = first_wrapper.fill(first_str) print(first_str, file=sys.stderr) for line in message_lines: if line == '': continue message = next_wrapper.fill(line) print(message, file=sys.stderr) def compatibility(mod_name, compatible, quiet=False): """Checks for the parser's compatibility with the running OS platform. Parameters: mod_name: (string) __name__ of the calling module compatible: (list) sys.platform name(s) compatible with the parser compatible options: linux, darwin, cygwin, win32, aix, freebsd quiet: (bool) supress compatibility message if True Returns: None - just prints output to STDERR """ if not quiet: platform_found = False for platform in compatible: if sys.platform.startswith(platform): platform_found = True break if not platform_found: mod = mod_name.split('.')[-1] compat_list = ', '.join(compatible) warning_message([f'{mod} parser not compatible with your OS ({sys.platform}).', f'Compatible platforms: {compat_list}']) def has_data(data): """ Checks if the input contains data. If there are any non-whitespace characters then return True, else return False Parameters: data: (string) input to check whether it contains data Returns: Boolean True if input string (data) contains non-whitespace characters, otherwise False """ return bool(data and not data.isspace()) def convert_to_int(value): """ Converts string and float input to int. Strips all non-numeric characters from strings. Parameters: value: (string/integer/float) Input value Returns: integer/None Integer if successful conversion, otherwise None """ if isinstance(value, str): str_val = re.sub(r'[^0-9\-\.]', '', value) try: return int(str_val) except (ValueError, TypeError): try: return int(float(str_val)) except (ValueError, TypeError): return None elif isinstance(value, (int, float)): return int(value) else: return None def convert_to_float(value): """ Converts string and int input to float. Strips all non-numeric characters from strings. Parameters: value: (string) Input value Returns: float/None Float if successful conversion, otherwise None """ if isinstance(value, str): try: return float(re.sub(r'[^0-9\-\.]', '', value)) except (ValueError, TypeError): return None elif isinstance(value, (int, float)): return float(value) else: return None def convert_to_bool(value): """ Converts string, integer, or float input to boolean by checking for 'truthy' values Parameters: value: (string/integer/float) Input value Returns: True/False False unless a 'truthy' number or string is found ('y', 'yes', 'true', '1', 1, -1, etc.) """ # if number, then bool it # if string, try to convert to float # if float converts, then bool the result # if float does not convert then look for truthy string and bool True # else False truthy = ['y', 'yes', 'true', '*'] if isinstance(value, (int, float)): return bool(value) if isinstance(value, str): try: test_value = convert_to_float(value) if test_value is not None: return bool(test_value) except Exception: pass if value: return value.lower() in truthy return False def stream_success(output_line, ignore_exceptions): """Add `_jc_meta` object to output line if `ignore_exceptions=True`""" if ignore_exceptions: output_line.update({'_jc_meta': {'success': True}}) return output_line def stream_error(e, ignore_exceptions, line): """Reraise the stream exception with annotation or print an error `_jc_meta` field if `ignore_exceptions=True` """ if not ignore_exceptions: e.args = (str(e) + '... Use the ignore_exceptions option (-qq) to ignore streaming parser errors.',) raise e return { '_jc_meta': { 'success': False, 'error': f'{e.__class__.__name__}: {e}', 'line': line.strip() } } def input_type_check(data): """Ensure input data is a string""" if not isinstance(data, str): raise TypeError("Input data must be a 'str' object.") def streaming_input_type_check(data): """Ensure input data is an iterable, but not a string or bytes""" if not hasattr(data, '__iter__') or isinstance(data, (str, bytes)): raise TypeError("Input data must be a non-string iterable object.") def streaming_line_input_type_check(line): """Ensure each line is a string""" if not isinstance(line, str): raise TypeError("Input line must be a 'str' object.") class timestamp: """ Input a date-time text string of several formats and convert to a naive or timezone-aware epoch timestamp in UTC Parameters: datetime_string: (str) a string representation of a date-time in several supported formats Attributes: string (str) the input datetime string format (int) the format rule that was used to decode the datetime string. None if conversion fails naive (int) timestamp based on locally configured timezone. None if conversion fails utc (int) aware timestamp only if UTC timezone detected in datetime string. None if conversion fails """ def __init__(self, datetime_string): self.string = datetime_string dt = self._parse() self.format = dt['format'] self.naive = dt['timestamp_naive'] self.utc = dt['timestamp_utc'] def __repr__(self): return f'timestamp(string="{self.string}", format={self.format}, naive={self.naive}, utc={self.utc})' def _parse(self): """ Input a date-time text string of several formats and convert to a naive or timezone-aware epoch timestamp in UTC Parameters: data: (string) a string representation of a date-time in several supported formats Returns: Dictionary A Dictionary of the following format: { "format": integer, # for debugging purposes. None if conversion fails "timestamp_naive": integer, # timestamp based on locally configured timezone. None if conversion fails "timestamp_utc": integer # aware timestamp only if UTC timezone detected. None if conversion fails } The format integer denotes which date_time format conversion succeeded. The timestamp_naive integer is the converted date-time string to a naive epoch timestamp. The timestamp_utc integer is the converted date-time string to an aware epoch timestamp in the UTC timezone. If an aware conversion cannot be performed (e.g. the UTC timezone is not found in the date-time string), then this field will be None. If the conversion completely fails, all fields will be None. """ data = self.string or '' normalized_datetime = '' utc_tz = False dt = None dt_utc = None timestamp_naive = None timestamp_utc = None timestamp_obj = { 'format': None, 'timestamp_naive': None, 'timestamp_utc': None } utc_tz = False # sometimes UTC is referenced as 'Coordinated Universal Time'. Convert to 'UTC' data = data.replace('Coordinated Universal Time', 'UTC') if 'UTC' in data: utc_tz = True if 'UTC+' in data or 'UTC-' in data: utc_tz = bool('UTC+0000' in data or 'UTC-0000' in data) elif '+0000' in data or '-0000' in data: utc_tz = True formats = [ {'id': 1000, 'format': '%a %b %d %H:%M:%S %Y', 'locale': None}, # manual C locale format conversion: Tue Mar 23 16:12:11 2021 or Tue Mar 23 16:12:11 IST 2021 {'id': 1500, 'format': '%Y-%m-%d %H:%M', 'locale': None}, # en_US.UTF-8 local format (found in who cli output): 2021-03-23 00:14 {'id': 1600, 'format': '%m/%d/%Y %I:%M %p', 'locale': None}, # Windows english format (found in dir cli output): 12/07/2019 02:09 AM {'id': 1700, 'format': '%m/%d/%Y, %I:%M:%S %p', 'locale': None}, # Windows english format wint non-UTC tz (found in systeminfo cli output): 3/22/2021, 1:15:51 PM (UTC-0600) {'id': 1705, 'format': '%m/%d/%Y, %I:%M:%S %p %Z', 'locale': None}, # Windows english format with UTC tz (found in systeminfo cli output): 3/22/2021, 1:15:51 PM (UTC) {'id': 1710, 'format': '%m/%d/%Y, %I:%M:%S %p UTC%z', 'locale': None}, # Windows english format with UTC tz (found in systeminfo cli output): 3/22/2021, 1:15:51 PM (UTC+0000) {'id': 2000, 'format': '%a %d %b %Y %I:%M:%S %p %Z', 'locale': None}, # en_US.UTF-8 local format (found in upower cli output): Tue 23 Mar 2021 04:12:11 PM UTC {'id': 3000, 'format': '%a %d %b %Y %I:%M:%S %p', 'locale': None}, # en_US.UTF-8 local format with non-UTC tz (found in upower cli output): Tue 23 Mar 2021 04:12:11 PM IST {'id': 4000, 'format': '%A %d %B %Y %I:%M:%S %p %Z', 'locale': None}, # European-style local format (found in upower cli output): Tuesday 01 October 2019 12:50:41 PM UTC {'id': 5000, 'format': '%A %d %B %Y %I:%M:%S %p', 'locale': None}, # European-style local format with non-UTC tz (found in upower cli output): Tuesday 01 October 2019 12:50:41 PM IST {'id': 6000, 'format': '%a %b %d %I:%M:%S %p %Z %Y', 'locale': None}, # en_US.UTF-8 format (found in date cli): Wed Mar 24 06:16:19 PM UTC 2021 {'id': 7000, 'format': '%a %b %d %H:%M:%S %Z %Y', 'locale': None}, # C locale format (found in date cli): Wed Mar 24 11:11:30 UTC 2021 {'id': 7100, 'format': '%b %d %H:%M:%S %Y', 'locale': None}, # C locale format (found in stat cli output - osx): # Mar 29 11:49:05 2021 {'id': 7200, 'format': '%Y-%m-%d %H:%M:%S.%f %z', 'locale': None}, # C locale format (found in stat cli output - linux): 2019-08-13 18:13:43.555604315 -0400 {'id': 7250, 'format': '%Y-%m-%d %H:%M:%S', 'locale': None}, # C locale format with non-UTC tz (found in modified vmstat cli output): # 2021-09-16 20:32:28 PDT {'id': 7255, 'format': '%Y-%m-%d %H:%M:%S %Z', 'locale': None}, # C locale format (found in modified vmstat cli output): # 2021-09-16 20:32:28 UTC {'id': 7300, 'format': '%a %Y-%m-%d %H:%M:%S %Z', 'locale': None}, # C locale format (found in timedatectl cli output): # Wed 2020-03-11 00:53:21 UTC # attempt locale changes last {'id': 8000, 'format': '%a %d %b %Y %H:%M:%S %Z', 'locale': ''}, # current locale format (found in upower cli output): # mar. 23 mars 2021 23:12:11 UTC {'id': 8100, 'format': '%a %d %b %Y %H:%M:%S', 'locale': ''}, # current locale format with non-UTC tz (found in upower cli output): # mar. 23 mars 2021 19:12:11 EDT {'id': 8200, 'format': '%A %d %B %Y, %H:%M:%S UTC%z', 'locale': ''}, # fr_FR.utf8 locale format (found in date cli output): vendredi 26 mars 2021, 13:26:46 (UTC+0000) {'id': 8300, 'format': '%A %d %B %Y, %H:%M:%S', 'locale': ''}, # fr_FR.utf8 locale format with non-UTC tz (found in date cli output): vendredi 26 mars 2021, 13:26:46 (UTC-0400) {'id': 9000, 'format': '%c', 'locale': ''} # locally configured locale format conversion: Could be anything :) this is a last-gasp attempt ] # from https://www.timeanddate.com/time/zones/ # only removed UTC timezone and added known non-UTC offsets tz_abbr = ['A', 'ACDT', 'ACST', 'ACT', 'ACWST', 'ADT', 'AEDT', 'AEST', 'AET', 'AFT', 'AKDT', 'AKST', 'ALMT', 'AMST', 'AMT', 'ANAST', 'ANAT', 'AQTT', 'ART', 'AST', 'AT', 'AWDT', 'AWST', 'AZOST', 'AZOT', 'AZST', 'AZT', 'AoE', 'B', 'BNT', 'BOT', 'BRST', 'BRT', 'BST', 'BTT', 'C', 'CAST', 'CAT', 'CCT', 'CDT', 'CEST', 'CET', 'CHADT', 'CHAST', 'CHOST', 'CHOT', 'CHUT', 'CIDST', 'CIST', 'CKT', 'CLST', 'CLT', 'COT', 'CST', 'CT', 'CVT', 'CXT', 'ChST', 'D', 'DAVT', 'DDUT', 'E', 'EASST', 'EAST', 'EAT', 'ECT', 'EDT', 'EEST', 'EET', 'EGST', 'EGT', 'EST', 'ET', 'F', 'FET', 'FJST', 'FJT', 'FKST', 'FKT', 'FNT', 'G', 'GALT', 'GAMT', 'GET', 'GFT', 'GILT', 'GMT', 'GST', 'GYT', 'H', 'HDT', 'HKT', 'HOVST', 'HOVT', 'HST', 'I', 'ICT', 'IDT', 'IOT', 'IRDT', 'IRKST', 'IRKT', 'IRST', 'IST', 'JST', 'K', 'KGT', 'KOST', 'KRAST', 'KRAT', 'KST', 'KUYT', 'L', 'LHDT', 'LHST', 'LINT', 'M', 'MAGST', 'MAGT', 'MART', 'MAWT', 'MDT', 'MHT', 'MMT', 'MSD', 'MSK', 'MST', 'MT', 'MUT', 'MVT', 'MYT', 'N', 'NCT', 'NDT', 'NFDT', 'NFT', 'NOVST', 'NOVT', 'NPT', 'NRT', 'NST', 'NUT', 'NZDT', 'NZST', 'O', 'OMSST', 'OMST', 'ORAT', 'P', 'PDT', 'PET', 'PETST', 'PETT', 'PGT', 'PHOT', 'PHT', 'PKT', 'PMDT', 'PMST', 'PONT', 'PST', 'PT', 'PWT', 'PYST', 'PYT', 'Q', 'QYZT', 'R', 'RET', 'ROTT', 'S', 'SAKT', 'SAMT', 'SAST', 'SBT', 'SCT', 'SGT', 'SRET', 'SRT', 'SST', 'SYOT', 'T', 'TAHT', 'TFT', 'TJT', 'TKT', 'TLT', 'TMT', 'TOST', 'TOT', 'TRT', 'TVT', 'U', 'ULAST', 'ULAT', 'UYST', 'UYT', 'UZT', 'V', 'VET', 'VLAST', 'VLAT', 'VOST', 'VUT', 'W', 'WAKT', 'WARST', 'WAST', 'WAT', 'WEST', 'WET', 'WFT', 'WGST', 'WGT', 'WIB', 'WIT', 'WITA', 'WST', 'WT', 'X', 'Y', 'YAKST', 'YAKT', 'YAPT', 'YEKST', 'YEKT', 'Z', 'UTC-1200', 'UTC-1100', 'UTC-1000', 'UTC-0930', 'UTC-0900', 'UTC-0800', 'UTC-0700', 'UTC-0600', 'UTC-0500', 'UTC-0400', 'UTC-0300', 'UTC-0230', 'UTC-0200', 'UTC-0100', 'UTC+0100', 'UTC+0200', 'UTC+0300', 'UTC+0400', 'UTC+0430', 'UTC+0500', 'UTC+0530', 'UTC+0545', 'UTC+0600', 'UTC+0630', 'UTC+0700', 'UTC+0800', 'UTC+0845', 'UTC+0900', 'UTC+1000', 'UTC+1030', 'UTC+1100', 'UTC+1200', 'UTC+1300', 'UTC+1345', 'UTC+1400'] # normalize the timezone by taking out any timezone reference, except UTC cleandata = data.replace('(', '').replace(')', '') normalized_datetime_list = [] for term in cleandata.split(): if term not in tz_abbr: normalized_datetime_list.append(term) normalized_datetime = ' '.join(normalized_datetime_list) # normalize further by converting any greater-than 6-digit subsecond to 6-digits p = re.compile(r'(\W\d\d:\d\d:\d\d\.\d{6})\d+\W') normalized_datetime = p.sub(r'\g<1> ', normalized_datetime) for fmt in formats: try: locale.setlocale(locale.LC_TIME, fmt['locale']) dt = datetime.strptime(normalized_datetime, fmt['format']) timestamp_naive = int(dt.replace(tzinfo=None).timestamp()) timestamp_obj['format'] = fmt['id'] locale.setlocale(locale.LC_TIME, None) break except Exception: locale.setlocale(locale.LC_TIME, None) continue if dt and utc_tz: dt_utc = dt.replace(tzinfo=timezone.utc) timestamp_utc = int(dt_utc.timestamp()) if timestamp_naive: timestamp_obj['timestamp_naive'] = timestamp_naive timestamp_obj['timestamp_utc'] = timestamp_utc return timestamp_obj jc-1.17.3/man/000077500000000000000000000000001415226333200127535ustar00rootroot00000000000000jc-1.17.3/man/jc.1000066400000000000000000000262411415226333200134360ustar00rootroot00000000000000.TH jc 1 2021-12-02 1.17.3 "JSON CLI output utility" .SH NAME jc \- JSONifies the output of many CLI tools and file-types .SH SYNOPSIS COMMAND | jc PARSER [OPTIONS] or "Magic" syntax: jc [OPTIONS] COMMAND .SH DESCRIPTION jc JSONifies the output of many CLI tools and file-types for easier parsing in scripts. jc accepts piped input from \fBSTDIN\fP and outputs a JSON representation of the previous command's output to \fBSTDOUT\fP. Alternatively, the "Magic" syntax can be used by prepending jc to the command to be converted. Options can be passed to jc immediately before the command is given. (Note: "Magic" syntax does not support shell builtins or command aliases) .SH OPTIONS .B Parsers: .RS .TP .B \fB--acpi\fP `acpi` command parser .TP .B \fB--airport\fP `airport -I` command parser .TP .B \fB--airport-s\fP `airport -s` command parser .TP .B \fB--arp\fP `arp` command parser .TP .B \fB--blkid\fP `blkid` command parser .TP .B \fB--cksum\fP `cksum` and `sum` command parser .TP .B \fB--crontab\fP `crontab` command and file parser .TP .B \fB--crontab-u\fP `crontab` file parser with user support .TP .B \fB--csv\fP CSV file parser .TP .B \fB--csv-s\fP CSV file streaming parser .TP .B \fB--date\fP `date` command parser .TP .B \fB--df\fP `df` command parser .TP .B \fB--dig\fP `dig` command parser .TP .B \fB--dir\fP `dir` command parser .TP .B \fB--dmidecode\fP `dmidecode` command parser .TP .B \fB--dpkg-l\fP `dpkg -l` command parser .TP .B \fB--du\fP `du` command parser .TP .B \fB--env\fP `env` command parser .TP .B \fB--file\fP `file` command parser .TP .B \fB--finger\fP `finger` command parser .TP .B \fB--free\fP `free` command parser .TP .B \fB--fstab\fP `/etc/fstab` file parser .TP .B \fB--group\fP `/etc/group` file parser .TP .B \fB--gshadow\fP `/etc/gshadow` file parser .TP .B \fB--hash\fP `hash` command parser .TP .B \fB--hashsum\fP hashsum command parser (`md5sum`, `shasum`, etc.) .TP .B \fB--hciconfig\fP `hciconfig` command parser .TP .B \fB--history\fP `history` command parser .TP .B \fB--hosts\fP `/etc/hosts` file parser .TP .B \fB--id\fP `id` command parser .TP .B \fB--ifconfig\fP `ifconfig` command parser .TP .B \fB--ini\fP INI file parser .TP .B \fB--iostat\fP `iostat` command parser .TP .B \fB--iostat-s\fP `iostat` command streaming parser .TP .B \fB--iptables\fP `iptables` command parser .TP .B \fB--iw-scan\fP `iw dev [device] scan` command parser .TP .B \fB--jobs\fP `jobs` command parser .TP .B \fB--kv\fP Key/Value file parser .TP .B \fB--last\fP `last` and `lastb` command parser .TP .B \fB--ls\fP `ls` command parser .TP .B \fB--ls-s\fP `ls` command streaming parser .TP .B \fB--lsblk\fP `lsblk` command parser .TP .B \fB--lsmod\fP `lsmod` command parser .TP .B \fB--lsof\fP `lsof` command parser .TP .B \fB--lsusb\fP `lsusb` command parser .TP .B \fB--mount\fP `mount` command parser .TP .B \fB--netstat\fP `netstat` command parser .TP .B \fB--ntpq\fP `ntpq -p` command parser .TP .B \fB--passwd\fP `/etc/passwd` file parser .TP .B \fB--ping\fP `ping` and `ping6` command parser .TP .B \fB--ping-s\fP `ping` and `ping6` command streaming parser .TP .B \fB--pip-list\fP `pip list` command parser .TP .B \fB--pip-show\fP `pip show` command parser .TP .B \fB--ps\fP `ps` command parser .TP .B \fB--route\fP `route` command parser .TP .B \fB--rpm-qi\fP `rpm -qi` command parser .TP .B \fB--sfdisk\fP `sfdisk` command parser .TP .B \fB--shadow\fP `/etc/shadow` file parser .TP .B \fB--ss\fP `ss` command parser .TP .B \fB--stat\fP `stat` command parser .TP .B \fB--sysctl\fP `sysctl` command parser .TP .B \fB--systemctl\fP `systemctl` command parser .TP .B \fB--systemctl-lj\fP `systemctl list-jobs` command parser .TP .B \fB--systemctl-ls\fP `systemctl list-sockets` command parser .TP .B \fB--systemctl-luf\fP `systemctl list-unit-files` command parser .TP .B \fB--systeminfo\fP `systeminfo` command parser .TP .B \fB--time\fP `/usr/bin/time` command parser .TP .B \fB--timedatectl\fP `timedatectl status` command parser .TP .B \fB--tracepath\fP `tracepath` and `tracepath6` command parser .TP .B \fB--traceroute\fP `traceroute` and `traceroute6` command parser .TP .B \fB--ufw\fP `ufw status` command parser .TP .B \fB--ufw-appinfo\fP `ufw app info [application]` command parser .TP .B \fB--uname\fP `uname -a` command parser .TP .B \fB--upower\fP `upower` command parser .TP .B \fB--uptime\fP `uptime` command parser .TP .B \fB--vmstat\fP `vmstat` command parser .TP .B \fB--vmstat-s\fP `vmstat` command streaming parser .TP .B \fB--w\fP `w` command parser .TP .B \fB--wc\fP `wc` command parser .TP .B \fB--who\fP `who` command parser .TP .B \fB--xml\fP XML file parser .TP .B \fB--yaml\fP YAML file parser .RE .PP .B Options: .RS .TP .B \fB-a\fP about jc (JSON output) .TP .B \fB-d\fP debug - show traceback (use \fB-dd\fP for verbose traceback) .TP .B \fB-h\fP help (\fB-h --parser_name\fP for parser documentation) .TP .B \fB-m\fP monochrome output .TP .B \fB-p\fP pretty print output .TP .B \fB-q\fP quiet - suppress warnings (use \fB-qq\fP to ignore streaming parser errors) .TP .B \fB-r\fP raw JSON output .TP .B \fB-u\fP unbuffer output (useful for slow streaming data with streaming parsers) .TP .B \fB-v\fP version information .SH EXIT CODES Any fatal errors within jc will generate an exit code of \fB100\fP, otherwise the exit code will be \fB0\fP. When using the "Magic" syntax (e.g. \fBjc ifconfig eth0\fP), jc will store the exit code of the program being parsed and add it to the jc exit code. This way it is easier to determine if an error was from the parsed program or jc. Consider the following examples using `ifconfig`: .RS ifconfig exit code = \fB0\fP, jc exit code = \fB0\fP, combined exit code = \fB0\fP (no errors) ifconfig exit code = \fB1\fP, jc exit code = \fB0\fP, combined exit code = \fB1\fP (error in ifconfig) ifconfig exit code = \fB0\fP, jc exit code = \fB100\fP, combined exit code = \fB100\fP (error in jc) ifconfig exit code = \fB1\fP, jc exit code = \fB100\fP, combined exit code = \fB101\fP (error in both ifconfig and jc) .RE .SH ENVIRONMENT You can specify custom colors via the \fBJC_COLORS\fP environment variable. The \fBJC_COLORS\fP environment variable takes four comma separated string values in the following format: JC_COLORS=,,, Where colors are: \fBblack\fP, \fBred\fP, \fBgreen\fP, \fByellow\fP, \fBblue\fP, \fBmagenta\fP, \fBcyan\fP, \fBgray\fP, \fBbrightblack\fP, \fBbrightred\fP, \fBbrightgreen\fP, \fBbrightyellow\fP, \fBbrightblue\fP, \fBbrightmagenta\fP, \fBbrightcyan\fP, \fBwhite\fP, or \fBdefault\fP For example, to set to the default colors: .RS JC_COLORS=blue,brightblack,magenta,green or JC_COLORS=default,default,default,default .RE .SH STREAMING PARSERS Most parsers load all of the data from \fBSTDIN\fP, parse it, then output the entire JSON document serially. There are some streaming parsers (e.g. \fBls-s\fP and \fBping-s\fP) that immediately start processing and outputing the data line-by-line as JSON Lines (aka NDJSON) while it is being received from \fBSTDIN\fP. This can significantly reduce the amount of memory required to parse large amounts of command output (e.g. \fBls -lR /\fP) and can sometimes process the data more quickly. Streaming parsers have slightly different behavior than standard parsers as outlined below. .RS Note: Streaming parsers cannot be used with the "magic" syntax .RE \fBIgnoring Errors\fP You may want to ignore parsing errors when using streaming parsers since these may be used in long-lived processing pipelines and errors can break the pipe. To ignore parsing errors, use the \fB-qq\fP cli option. This will add a \fB_jc_meta\fP object to the JSON output with a \fBsuccess\fP attribute. If \fBsuccess\fP is \fBtrue\fP, then there were no issues parsing the line. If \fBsuccess\fP is \fBfalse\fP, then a parsing issue was found and \fBerror\fP and \fBline\fP fields will be added to include a short error description and the contents of the unparsable line, respectively: .RS Successfully parsed line with \fB-qq\fP option: .RS { "command_data": "data", "_jc_meta": { "success": true } } .RE Unsuccessfully parsed line with \fB-qq\fP option: .RS { "_jc_meta": { "success": false, "error": "error message", "line": "original line data" } } .RE .RE \fBUnbuffering Output\fP Most operating systems will buffer output that is being piped from process to process. The buffer is usually around 4KB. When viewing the output in the terminal the OS buffer is not engaged so output is immediately displayed on the screen. When piping multiple processes together, though, it may seem as if the output is hanging when the input data is very slow (e.g. \fBping\fP): .RS $ ping 1.1.1.1 | jc --ping-s | jq .RE This is because the OS engages the 4KB buffer between \fBjc\fP and \fBjq\fP in this example. To display the data on the terminal in realtime, you can disable the buffer with the \fB-u\fP (unbuffer) cli option: .RS $ ping 1.1.1.1 | jc --ping-s -u | jq {"type":"reply","pattern":null,"timestamp":null,"bytes":"64","response_ip":"1.1.1.1","icmp_seq":"1","ttl":"128","time_ms":"24.6","duplicate":false} {"type":"reply","pattern":null,"timestamp":null,"bytes":"64","response_ip":"1.1.1.1","icmp_seq":"2","ttl":"128","time_ms":"26.8","duplicate":false} etc... Note: Unbuffered output can be slower for large data streams. .RE .SH CUSTOM PARSERS Custom local parser plugins may be placed in a \fBjc/jcparsers\fP folder in your local "App data directory": .RS - Linux/unix: \fB$HOME/.local/share/jc/jcparsers\fP - macOS: \fB$HOME/Library/Application Support/jc/jcparsers\fP - Windows: \fB$LOCALAPPDATA\\jc\\jc\\jcparsers\fP .RE Local parser plugins are standard python module files. Use the \fBjc/parsers/foo.py\fP parser as a template and simply place a \fB.py\fP file in the \fBjcparsers\fP subfolder. Local plugin filenames must be valid python module names, therefore must consist entirely of alphanumerics and start with a letter. Local plugins may override default plugins. Note: The application data directory follows the XDG Base Directory Specification .SH CAVEATS \fBLocale:\fP For best results set the \fBLANG\fP locale environment variable to \fBC\fP or \fBen_US.UTF-8\fP. For example, either by setting directly on the command-line: \fB$ LANG=C date | jc --date\fP or by exporting to the environment before running commands: \fB$ export LANG=C\fP \fBTimezones:\fP Some parsers have calculated epoch timestamp fields added to the output. Unless a timestamp field name has a \fB_utc\fP suffix it is considered naive. (i.e. based on the local timezone of the system the \fBjc\fP parser was run on). If a UTC timezone can be detected in the text of the command output, the timestamp will be timezone aware and have a \fB_utc\fP suffix on the key name. (e.g. \fBepoch_utc\fP) No other timezones are supported for aware timestamps. .SH EXAMPLES Standard Syntax: .RS $ dig www.google.com | jc \fB--dig\fP \fB-p\fP .RE Magic Syntax: .RS $ jc \fB-p\fP dig www.google.com .RE For parser documentation: .RS $ jc \fB-h\fP \fB--dig\fP .RE .SH AUTHOR Kelly Brazil (kellyjonbrazil@gmail.com) https://github.com/kellyjonbrazil/jc .SH COPYRIGHT Copyright (c) 2019-2021 Kelly Brazil License: MIT Licensejc-1.17.3/mangen.py000077500000000000000000000007461415226333200140310ustar00rootroot00000000000000#!/usr/bin/env python3 # Genereate man page from jc metadata using jinja2 templates from datetime import date import os import gzip import shutil import jc.cli from jinja2 import Environment, FileSystemLoader file_loader = FileSystemLoader('templates') env = Environment(loader=file_loader) template = env.get_template('manpage_template') output = template.render(today=date.today(), jc=jc.cli.about_jc()) with open('man/jc.1', 'w') as f: f.write(output) jc-1.17.3/pypi-upload.sh000077500000000000000000000000371415226333200150020ustar00rootroot00000000000000#!/bin/bash twine upload dist/*jc-1.17.3/readmegen.py000077500000000000000000000005741415226333200145120ustar00rootroot00000000000000#!/usr/bin/env python3 # Genereate README.md from jc metadata using jinja2 templates import jc.cli from jinja2 import Environment, FileSystemLoader file_loader = FileSystemLoader('templates') env = Environment(loader=file_loader) template = env.get_template('readme_template') output = template.render(jc=jc.cli.about_jc()) with open('README.md', 'w') as f: f.write(output) jc-1.17.3/requirements.txt000066400000000000000000000000661415226333200154660ustar00rootroot00000000000000ruamel.yaml>=0.15.0 xmltodict>=0.12.0 Pygments>=2.3.0 jc-1.17.3/runtests.sh000077500000000000000000000001571415226333200144310ustar00rootroot00000000000000#!/bin/bash # system should be in "America/Los_Angeles" timezone for all tests to pass python3 -m unittest -v jc-1.17.3/setup.cfg000066400000000000000000000000451415226333200140200ustar00rootroot00000000000000[metadata] license_file = LICENSE.md jc-1.17.3/setup.py000077500000000000000000000017411415226333200137200ustar00rootroot00000000000000import setuptools with open('README.md', 'r') as f: long_description = f.read() setuptools.setup( name='jc', version='1.17.3', author='Kelly Brazil', author_email='kellyjonbrazil@gmail.com', description='Converts the output of popular command-line tools and file-types to JSON.', install_requires=[ 'ruamel.yaml>=0.15.0', 'xmltodict>=0.12.0', 'Pygments>=2.3.0' ], license='MIT', long_description=long_description, long_description_content_type='text/markdown', python_requires='>=3.6', url='https://github.com/kellyjonbrazil/jc', packages=setuptools.find_packages(exclude=['*.tests', '*.tests.*', 'tests.*', 'tests']), entry_points={ 'console_scripts': [ 'jc=jc.cli:main' ] }, classifiers=[ 'Programming Language :: Python :: 3', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Topic :: Utilities' ] ) jc-1.17.3/templates/000077500000000000000000000000001415226333200141765ustar00rootroot00000000000000jc-1.17.3/templates/manpage_template000066400000000000000000000164711415226333200174350ustar00rootroot00000000000000.TH jc 1 {{ today }} {{ jc.version}} "JSON CLI output utility" .SH NAME jc \- JSONifies the output of many CLI tools and file-types .SH SYNOPSIS COMMAND | jc PARSER [OPTIONS] or "Magic" syntax: jc [OPTIONS] COMMAND .SH DESCRIPTION jc JSONifies the output of many CLI tools and file-types for easier parsing in scripts. jc accepts piped input from \fBSTDIN\fP and outputs a JSON representation of the previous command's output to \fBSTDOUT\fP. Alternatively, the "Magic" syntax can be used by prepending jc to the command to be converted. Options can be passed to jc immediately before the command is given. (Note: "Magic" syntax does not support shell builtins or command aliases) .SH OPTIONS .B Parsers: .RS {% for parser in jc.parsers %} .TP .B \fB{{ parser.argument }}\fP {{ parser.description }} {% endfor %} .RE .PP .B Options: .RS .TP .B \fB-a\fP about jc (JSON output) .TP .B \fB-d\fP debug - show traceback (use \fB-dd\fP for verbose traceback) .TP .B \fB-h\fP help (\fB-h --parser_name\fP for parser documentation) .TP .B \fB-m\fP monochrome output .TP .B \fB-p\fP pretty print output .TP .B \fB-q\fP quiet - suppress warnings (use \fB-qq\fP to ignore streaming parser errors) .TP .B \fB-r\fP raw JSON output .TP .B \fB-u\fP unbuffer output (useful for slow streaming data with streaming parsers) .TP .B \fB-v\fP version information .SH EXIT CODES Any fatal errors within jc will generate an exit code of \fB100\fP, otherwise the exit code will be \fB0\fP. When using the "Magic" syntax (e.g. \fBjc ifconfig eth0\fP), jc will store the exit code of the program being parsed and add it to the jc exit code. This way it is easier to determine if an error was from the parsed program or jc. Consider the following examples using `ifconfig`: .RS ifconfig exit code = \fB0\fP, jc exit code = \fB0\fP, combined exit code = \fB0\fP (no errors) ifconfig exit code = \fB1\fP, jc exit code = \fB0\fP, combined exit code = \fB1\fP (error in ifconfig) ifconfig exit code = \fB0\fP, jc exit code = \fB100\fP, combined exit code = \fB100\fP (error in jc) ifconfig exit code = \fB1\fP, jc exit code = \fB100\fP, combined exit code = \fB101\fP (error in both ifconfig and jc) .RE .SH ENVIRONMENT You can specify custom colors via the \fBJC_COLORS\fP environment variable. The \fBJC_COLORS\fP environment variable takes four comma separated string values in the following format: JC_COLORS=,,, Where colors are: \fBblack\fP, \fBred\fP, \fBgreen\fP, \fByellow\fP, \fBblue\fP, \fBmagenta\fP, \fBcyan\fP, \fBgray\fP, \fBbrightblack\fP, \fBbrightred\fP, \fBbrightgreen\fP, \fBbrightyellow\fP, \fBbrightblue\fP, \fBbrightmagenta\fP, \fBbrightcyan\fP, \fBwhite\fP, or \fBdefault\fP For example, to set to the default colors: .RS JC_COLORS=blue,brightblack,magenta,green or JC_COLORS=default,default,default,default .RE .SH STREAMING PARSERS Most parsers load all of the data from \fBSTDIN\fP, parse it, then output the entire JSON document serially. There are some streaming parsers (e.g. \fBls-s\fP and \fBping-s\fP) that immediately start processing and outputing the data line-by-line as JSON Lines (aka NDJSON) while it is being received from \fBSTDIN\fP. This can significantly reduce the amount of memory required to parse large amounts of command output (e.g. \fBls -lR /\fP) and can sometimes process the data more quickly. Streaming parsers have slightly different behavior than standard parsers as outlined below. .RS Note: Streaming parsers cannot be used with the "magic" syntax .RE \fBIgnoring Errors\fP You may want to ignore parsing errors when using streaming parsers since these may be used in long-lived processing pipelines and errors can break the pipe. To ignore parsing errors, use the \fB-qq\fP cli option. This will add a \fB_jc_meta\fP object to the JSON output with a \fBsuccess\fP attribute. If \fBsuccess\fP is \fBtrue\fP, then there were no issues parsing the line. If \fBsuccess\fP is \fBfalse\fP, then a parsing issue was found and \fBerror\fP and \fBline\fP fields will be added to include a short error description and the contents of the unparsable line, respectively: .RS Successfully parsed line with \fB-qq\fP option: .RS { "command_data": "data", "_jc_meta": { "success": true } } .RE Unsuccessfully parsed line with \fB-qq\fP option: .RS { "_jc_meta": { "success": false, "error": "error message", "line": "original line data" } } .RE .RE \fBUnbuffering Output\fP Most operating systems will buffer output that is being piped from process to process. The buffer is usually around 4KB. When viewing the output in the terminal the OS buffer is not engaged so output is immediately displayed on the screen. When piping multiple processes together, though, it may seem as if the output is hanging when the input data is very slow (e.g. \fBping\fP): .RS $ ping 1.1.1.1 | jc --ping-s | jq .RE This is because the OS engages the 4KB buffer between \fBjc\fP and \fBjq\fP in this example. To display the data on the terminal in realtime, you can disable the buffer with the \fB-u\fP (unbuffer) cli option: .RS $ ping 1.1.1.1 | jc --ping-s -u | jq {"type":"reply","pattern":null,"timestamp":null,"bytes":"64","response_ip":"1.1.1.1","icmp_seq":"1","ttl":"128","time_ms":"24.6","duplicate":false} {"type":"reply","pattern":null,"timestamp":null,"bytes":"64","response_ip":"1.1.1.1","icmp_seq":"2","ttl":"128","time_ms":"26.8","duplicate":false} etc... Note: Unbuffered output can be slower for large data streams. .RE .SH CUSTOM PARSERS Custom local parser plugins may be placed in a \fBjc/jcparsers\fP folder in your local "App data directory": .RS - Linux/unix: \fB$HOME/.local/share/jc/jcparsers\fP - macOS: \fB$HOME/Library/Application Support/jc/jcparsers\fP - Windows: \fB$LOCALAPPDATA\\jc\\jc\\jcparsers\fP .RE Local parser plugins are standard python module files. Use the \fBjc/parsers/foo.py\fP parser as a template and simply place a \fB.py\fP file in the \fBjcparsers\fP subfolder. Local plugin filenames must be valid python module names, therefore must consist entirely of alphanumerics and start with a letter. Local plugins may override default plugins. Note: The application data directory follows the XDG Base Directory Specification .SH CAVEATS \fBLocale:\fP For best results set the \fBLANG\fP locale environment variable to \fBC\fP or \fBen_US.UTF-8\fP. For example, either by setting directly on the command-line: \fB$ LANG=C date | jc --date\fP or by exporting to the environment before running commands: \fB$ export LANG=C\fP \fBTimezones:\fP Some parsers have calculated epoch timestamp fields added to the output. Unless a timestamp field name has a \fB_utc\fP suffix it is considered naive. (i.e. based on the local timezone of the system the \fBjc\fP parser was run on). If a UTC timezone can be detected in the text of the command output, the timestamp will be timezone aware and have a \fB_utc\fP suffix on the key name. (e.g. \fBepoch_utc\fP) No other timezones are supported for aware timestamps. .SH EXAMPLES Standard Syntax: .RS $ dig www.google.com | jc \fB--dig\fP \fB-p\fP .RE Magic Syntax: .RS $ jc \fB-p\fP dig www.google.com .RE For parser documentation: .RS $ jc \fB-h\fP \fB--dig\fP .RE .SH AUTHOR {{ jc.author }} ({{ jc.author_email }}) {{ jc.website }} .SH COPYRIGHT Copyright (c) {{ jc.copyright[2:] }} License: {{ jc.license }} jc-1.17.3/templates/readme_template000066400000000000000000000666351415226333200172710ustar00rootroot00000000000000![Tests](https://github.com/kellyjonbrazil/jc/workflows/Tests/badge.svg?branch=master) ![Pypi](https://img.shields.io/pypi/v/jc.svg) > Try the `jc` [web demo](https://jc-web-demo.herokuapp.com/) > JC is [now available](https://galaxy.ansible.com/community/general) as an Ansible filter plugin in the `community.general` collection. See this [blog post](https://blog.kellybrazil.com/2020/08/30/parsing-command-output-in-ansible-with-jc/) for an example. # JC JSON CLI output utility `jc` JSONifies the output of many CLI tools and file-types for easier parsing in scripts. See the [**Parsers**](#parsers) section for supported commands and file-types. ```bash dig example.com | jc --dig ``` ```json [{"id":38052,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1, "authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":4096}},"question": {"name":"example.com.","class":"IN","type":"A"},"answer":[{"name":"example.com.","class":"IN","type":"A","ttl": 39049,"data":"93.184.216.34"}],"query_time":49,"server":"2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)","when": "Fri Apr 16 16:09:00 PDT 2021","rcvd":56,"when_epoch":1618614540,"when_epoch_utc":null}] ``` This allows further command-line processing of output with tools like `jq` or [`jello`](https://github.com/kellyjonbrazil/jello) by piping commands: ```bash $ dig example.com | jc --dig | jq -r '.[].answer[].data' 93.184.216.34 ``` or using the alternative "magic" syntax: ```bash $ jc dig example.com | jq -r '.[].answer[].data' 93.184.216.34 ``` The `jc` parsers can also be used as python modules. In this case the output will be a python dictionary, or list of dictionaries, instead of JSON: ```python >>> import subprocess >>> import jc.parsers.dig >>> >>> cmd_output = subprocess.check_output(['dig', 'example.com'], text=True) >>> data = jc.parsers.dig.parse(cmd_output) >>> >>> data [{'id': 64612, 'opcode': 'QUERY', 'status': 'NOERROR', 'flags': ['qr', 'rd', 'ra'], 'query_num': 1, 'answer_num': 1, 'authority_num': 0, 'additional_num': 1, 'opt_pseudosection': {'edns': {'version': 0, 'flags': [], 'udp': 4096}}, 'question': {'name': 'example.com.', 'class': 'IN', 'type': 'A'}, 'answer': [{'name': 'example.com.', 'class': 'IN', 'type': 'A', 'ttl': 29658, 'data': '93.184.216.34'}], 'query_time': 52, 'server': '2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)', 'when': 'Fri Apr 16 16:13:00 PDT 2021', 'rcvd': 56, 'when_epoch': 1618614780, 'when_epoch_utc': None}] ``` Two representations of the data are available. The default representation uses a strict schema per parser and converts known numbers to int/float JSON values. Certain known values of `None` are converted to JSON `null`, known boolean values are converted, and, in some cases, additional semantic context fields are added. To access the raw, pre-processed JSON, use the `-r` cli option or the `raw=True` function parameter in `parse()`. Schemas for each parser can be found at the documentation link beside each [**Parser**](#parsers) below. Release notes can be found [here](https://blog.kellybrazil.com/category/jc-news/). ## Why Would Anyone Do This!? For more information on the motivations for this project, please see my blog post on [Bringing the Unix Philosophy to the 21st Century](https://blog.kellybrazil.com/2019/11/26/bringing-the-unix-philosophy-to-the-21st-century/). See also: - [libxo on FreeBSD](http://juniper.github.io/libxo/libxo-manual.html) - [powershell](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/convertto-json?view=powershell-7) - [blog: linux apps should have a json flag](https://thomashunter.name/posts/2012-06-06-linux-cli-apps-should-have-a-json-flag) - [Hacker News discussion](https://news.ycombinator.com/item?id=28266193) - [Reddit discussion](https://www.reddit.com/r/programming/comments/pa4cbb/bringing_the_unix_philosophy_to_the_21st_century/) Use Cases: - [Bash scripting](https://blog.kellybrazil.com/2021/04/12/practical-json-at-the-command-line/) - [Ansible command output parsing](https://blog.kellybrazil.com/2020/08/30/parsing-command-output-in-ansible-with-jc/) - [Saltstack command output parsing](https://blog.kellybrazil.com/2020/09/15/parsing-command-output-in-saltstack-with-jc/) - [Nornir command output parsing](https://blog.kellybrazil.com/2020/12/09/parsing-command-output-in-nornir-with-jc/) ## Installation There are several ways to get `jc`. You can install via `pip`, OS package repositories, via DEB/RPM/MSI packaged binaries for linux and Windows, or by downloading the correct binary for your architecture and running it anywhere on your filesystem. ### Pip (macOS, linux, unix, Windows) ```bash pip3 install jc ``` ### OS Package Repositories | OS | Command | |-----------------------|-------------------------------------------------------------------------------| | Debian/Ubuntu linux | `apt-get install jc` | | Fedora linux | `dnf install jc` | | openSUSE linux | `zypper install jc` | | Arch linux | `pacman -S jc` | | NixOS linux | `nix-env -iA nixpkgs.jc` or `nix-env -iA nixos.jc` | | Guix System linux | `guix install jc` | | macOS | `brew install jc` | | FreeBSD | `portsnap fetch update && cd /usr/ports/textproc/py-jc && make install clean` | | Ansible filter plugin | `ansible-galaxy collection install community.general` | > For more packages and binaries, see the [jc packaging](https://kellyjonbrazil.github.io/jc-packaging/) site. ## Usage `jc` accepts piped input from `STDIN` and outputs a JSON representation of the previous command's output to `STDOUT`. ```bash COMMAND | jc PARSER [OPTIONS] ``` Alternatively, the "magic" syntax can be used by prepending `jc` to the command to be converted. Options can be passed to `jc` immediately before the command is given. (Note: command aliases and shell builtins are not supported) ```bash jc [OPTIONS] COMMAND ``` The JSON output can be compact (default) or pretty formatted with the `-p` option. ### Parsers {% for parser in jc.parsers %} - `{{ parser.argument }}` enables the {{ parser.description }} ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/{{ parser.name }})){% endfor %} ### Options - `-a` about `jc`. Prints information about `jc` and the parsers (in JSON, of course!) - `-d` debug mode. Prints trace messages if parsing issues are encountered (use `-dd` for verbose debugging) - `-h` help. Use `jc -h --parser_name` for parser documentation - `-m` monochrome JSON output - `-p` pretty format the JSON output - `-q` quiet mode. Suppresses parser warning messages (use `-qq` to ignore streaming parser errors) - `-r` raw output. Provides a more literal JSON output, typically with string values and no additional semantic processing - `-u` unbuffer output - `-v` version information ### Exit Codes Any fatal errors within `jc` will generate an exit code of `100`, otherwise the exit code will be `0`. When using the "magic" syntax (e.g. `jc ifconfig eth0`), `jc` will store the exit code of the program being parsed and add it to the `jc` exit code. This way it is easier to determine if an error was from the parsed program or `jc`. Consider the following examples using `ifconfig`: | `ifconfig` exit code | `jc` exit code | Combined exit code | Interpretation | |----------------------|----------------|--------------------|------------------------------------| | `0` | `0` | `0` | No errors | | `1` | `0` | `1` | Error in `ifconfig` | | `0` | `100` | `100` | Error in `jc` | | `1` | `100` | `101` | Error in both `ifconfig` and `jc` | ### Setting Custom Colors via Environment Variable You can specify custom colors via the `JC_COLORS` environment variable. The `JC_COLORS` environment variable takes four comma separated string values in the following format: ```bash JC_COLORS=,,, ``` Where colors are: `black`, `red`, `green`, `yellow`, `blue`, `magenta`, `cyan`, `gray`, `brightblack`, `brightred`, `brightgreen`, `brightyellow`, `brightblue`, `brightmagenta`, `brightcyan`, `white`, or `default` For example, to set to the default colors: ```bash JC_COLORS=blue,brightblack,magenta,green ``` or ```bash JC_COLORS=default,default,default,default ``` ### Streaming Parsers Most parsers load all of the data from STDIN, parse it, then output the entire JSON document serially. There are some streaming parsers (e.g. `ls-s` and `ping-s`) that immediately start processing and outputing the data line-by-line as [JSON Lines](https://jsonlines.org/) (aka [NDJSON](http://ndjson.org/)) while it is being received from STDIN. This can significantly reduce the amount of memory required to parse large amounts of command output (e.g. `ls -lR /`) and can sometimes process the data more quickly. Streaming parsers have slightly different behavior than standard parsers as outlined below. > Note: Streaming parsers cannot be used with the "magic" syntax #### Ignoring Errors You may want to ignore parsing errors when using streaming parsers since these may be used in long-lived processing pipelines and errors can break the pipe. To ignore parsing errors, use the `-qq` cli option or the `ignore_exceptions=True` argument with the `parse()` function. This will add a `_jc_meta` object to the JSON output with a `success` attribute. If `success` is `true`, then there were no issues parsing the line. If `success` is `false`, then a parsing issue was found and `error` and `line` fields will be added to include a short error description and the contents of the unparsable line, respectively: Successfully parsed line with `-qq` option: ```json { "command_data": "data", "_jc_meta": { "success": true } } ``` Unsuccessfully parsed line with `-qq` option: ```json { "_jc_meta": { "success": false, "error": "error message", "line": "original line data" } } ``` #### Unbuffering Output Most operating systems will buffer output that is being piped from process to process. The buffer is usually around 4KB. When viewing the output in the terminal the OS buffer is not engaged so output is immediately displayed on the screen. When piping multiple processes together, though, it may seem as if the output is hanging when the input data is very slow (e.g. `ping`): ``` $ ping 1.1.1.1 | jc --ping-s | jq ``` This is because the OS engages the 4KB buffer between `jc` and `jq` in this example. To display the data on the terminal in realtime, you can disable the buffer with the `-u` (unbuffer) cli option: ``` $ ping 1.1.1.1 | jc --ping-s -u | jq {"type":"reply","pattern":null,"timestamp":null,"bytes":"64","response_ip":"1.1.1.1","icmp_seq":"1","ttl":"128","time_ms":"24.6","duplicate":false} {"type":"reply","pattern":null,"timestamp":null,"bytes":"64","response_ip":"1.1.1.1","icmp_seq":"2","ttl":"128","time_ms":"26.8","duplicate":false} ... ``` > Note: Unbuffered output can be slower for large data streams. #### Using Streaming Parsers as Python Modules Streaming parsers accept any iterable object and return a generator iterator object allowing lazy processing of the data. The input data should iterate on lines of string data. Examples of good input data are `sys.stdin` or `str.splitlines()`. To use the generator object in your code, simply loop through it or use the [next()](https://docs.python.org/3/library/functions.html#next) builtin function: ```python import jc.parsers.ls_s result = jc.parsers.ls_s.parse(ls_command_output.splitlines()) for item in result: print(item["filename"]) ``` ### Custom Parsers Custom local parser plugins may be placed in a `jc/jcparsers` folder in your local **"App data directory"**: - Linux/unix: `$HOME/.local/share/jc/jcparsers` - macOS: `$HOME/Library/Application Support/jc/jcparsers` - Windows: `$LOCALAPPDATA\jc\jc\jcparsers` Local parser plugins are standard python module files. Use the [`jc/parsers/foo.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/foo.py) or [`jc/parsers/foo_s.py (streaming)`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/foo_s.py) parser as a template and simply place a `.py` file in the `jcparsers` subfolder. Local plugin filenames must be valid python module names, therefore must consist entirely of alphanumerics and start with a letter. Local plugins may override default parsers. > Note: The application data directory follows the [XDG Base Directory Specification](https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html) ### Caveats #### Locale For best results set the `LANG` locale environment variable to `C` or `en_US.UTF-8`. For example, either by setting directly on the command-line: ``` $ LANG=C date | jc --date ``` or by exporting to the environment before running commands: ``` $ export LANG=C ``` #### Timezones Some parsers have calculated epoch timestamp fields added to the output. Unless a timestamp field name has a `_utc` suffix it is considered naive. (i.e. based on the local timezone of the system the `jc` parser was run on). If a UTC timezone can be detected in the text of the command output, the timestamp will be timezone aware and have a `_utc` suffix on the key name. (e.g. `epoch_utc`) No other timezones are supported for aware timestamps. ## Compatibility Some parsers like `dig`, `xml`, `csv`, etc. will work on any platform. Other parsers that convert platform-specific output will generate a warning message if they are run on an unsupported platform. To see all parser information, including compatibility, run `jc -ap`. You may still use a parser on an unsupported platform - for example, you may want to parse a file with linux `lsof` output on an macOS or Windows laptop. In that case you can suppress the warning message with the `-q` cli option or the `quiet=True` function parameter in `parse()`: macOS: ```bash cat lsof.out | jc --lsof -q ``` or Windows: ```bash type lsof.out | jc --lsof -q ``` Tested on: - Centos 7.7 - Ubuntu 18.04 - Ubuntu 20.04 - Fedora32 - macOS 10.11.6 - macOS 10.14.6 - NixOS - FreeBSD12 - Windows 10 - Windows 2016 Server - Windows 2019 Server ## Contributions Feel free to add/improve code or parsers! You can use the [`jc/parsers/foo.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/foo.py) or [`jc/parsers/foo_s.py (streaming)`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/foo_s.py) parsers as a template and submit your parser with a pull request. Please see the [Contributing Guidelines](https://github.com/kellyjonbrazil/jc/blob/master/CONTRIBUTING.md) for more information. ## Acknowledgments - Local parser plugin feature contributed by [Dean Serenevy](https://github.com/duelafn) - CI automation and code optimizations by [philippeitis](https://github.com/philippeitis) - [`ifconfig-parser`](https://github.com/KnightWhoSayNi/ifconfig-parser) module by KnightWhoSayNi - [`xmltodict`](https://github.com/martinblech/xmltodict) module by Martín Blech - [`ruamel.yaml`](https://pypi.org/project/ruamel.yaml) module by Anthon van der Neut - [`trparse`](https://github.com/lbenitez000/trparse) module by Luis Benitez - Parsing [code](https://gist.github.com/cahna/43a1a3ff4d075bcd71f9d7120037a501) from Conor Heine adapted for some parsers - Excellent constructive feedback from [Ilya Sher](https://github.com/ilyash-b) ## Examples Here are some examples of `jc` output. For more examples, see [here](https://kellyjonbrazil.github.io/jc/EXAMPLES) or the parser documentation. ### arp ```bash arp | jc --arp -p # or: jc -p arp ``` ```json [ { "address": "gateway", "hwtype": "ether", "hwaddress": "00:50:56:f7:4a:fc", "flags_mask": "C", "iface": "ens33" }, { "address": "192.168.71.1", "hwtype": "ether", "hwaddress": "00:50:56:c0:00:08", "flags_mask": "C", "iface": "ens33" }, { "address": "192.168.71.254", "hwtype": "ether", "hwaddress": "00:50:56:fe:7a:b4", "flags_mask": "C", "iface": "ens33" } ] ``` ### CSV files ```bash cat homes.csv ``` ``` "Sell", "List", "Living", "Rooms", "Beds", "Baths", "Age", "Acres", "Taxes" 142, 160, 28, 10, 5, 3, 60, 0.28, 3167 175, 180, 18, 8, 4, 1, 12, 0.43, 4033 129, 132, 13, 6, 3, 1, 41, 0.33, 1471 ... ``` ```bash cat homes.csv | jc --csv -p ``` ```json [ { "Sell": "142", "List": "160", "Living": "28", "Rooms": "10", "Beds": "5", "Baths": "3", "Age": "60", "Acres": "0.28", "Taxes": "3167" }, { "Sell": "175", "List": "180", "Living": "18", "Rooms": "8", "Beds": "4", "Baths": "1", "Age": "12", "Acres": "0.43", "Taxes": "4033" }, { "Sell": "129", "List": "132", "Living": "13", "Rooms": "6", "Beds": "3", "Baths": "1", "Age": "41", "Acres": "0.33", "Taxes": "1471" } ] ``` ### /etc/hosts file ```bash cat /etc/hosts | jc --hosts -p ``` ```json [ { "ip": "127.0.0.1", "hostname": [ "localhost" ] }, { "ip": "::1", "hostname": [ "ip6-localhost", "ip6-loopback" ] }, { "ip": "fe00::0", "hostname": [ "ip6-localnet" ] } ] ``` ### ifconfig ```bash ifconfig | jc --ifconfig -p # or: jc -p ifconfig ``` ```json [ { "name": "ens33", "flags": 4163, "state": [ "UP", "BROADCAST", "RUNNING", "MULTICAST" ], "mtu": 1500, "ipv4_addr": "192.168.71.137", "ipv4_mask": "255.255.255.0", "ipv4_bcast": "192.168.71.255", "ipv6_addr": "fe80::c1cb:715d:bc3e:b8a0", "ipv6_mask": 64, "ipv6_scope": "0x20", "mac_addr": "00:0c:29:3b:58:0e", "type": "Ethernet", "rx_packets": 8061, "rx_bytes": 1514413, "rx_errors": 0, "rx_dropped": 0, "rx_overruns": 0, "rx_frame": 0, "tx_packets": 4502, "tx_bytes": 866622, "tx_errors": 0, "tx_dropped": 0, "tx_overruns": 0, "tx_carrier": 0, "tx_collisions": 0, "metric": null } ] ``` ### INI files ```bash cat example.ini ``` ``` [DEFAULT] ServerAliveInterval = 45 Compression = yes CompressionLevel = 9 ForwardX11 = yes [bitbucket.org] User = hg [topsecret.server.com] Port = 50022 ForwardX11 = no ``` ```bash cat example.ini | jc --ini -p ``` ```json { "bitbucket.org": { "serveraliveinterval": "45", "compression": "yes", "compressionlevel": "9", "forwardx11": "yes", "user": "hg" }, "topsecret.server.com": { "serveraliveinterval": "45", "compression": "yes", "compressionlevel": "9", "forwardx11": "no", "port": "50022" } } ``` ### ls ```bash $ ls -l /usr/bin | jc --ls -p # or: jc -p ls -l /usr/bin ``` ```json [ { "filename": "apropos", "link_to": "whatis", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 6, "date": "Aug 15 10:53" }, { "filename": "ar", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 62744, "date": "Aug 8 16:14" }, { "filename": "arch", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 33080, "date": "Aug 19 23:25" } ] ``` ### netstat ```bash netstat -apee | jc --netstat -p # or: jc -p netstat -apee ``` ```json [ { "proto": "tcp", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "0.0.0.0", "state": "LISTEN", "user": "systemd-resolve", "inode": 26958, "program_name": "systemd-resolve", "kind": "network", "pid": 887, "local_port": "domain", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv4" }, { "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "[::]", "foreign_address": "[::]", "state": "LISTEN", "user": "root", "inode": 30510, "program_name": "sshd", "kind": "network", "pid": 1186, "local_port": "ssh", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv6" }, { "proto": "udp", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "0.0.0.0", "state": null, "user": "systemd-resolve", "inode": 26957, "program_name": "systemd-resolve", "kind": "network", "pid": 887, "local_port": "domain", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4" }, { "proto": "raw6", "recv_q": 0, "send_q": 0, "local_address": "[::]", "foreign_address": "[::]", "state": "7", "user": "systemd-network", "inode": 27001, "program_name": "systemd-network", "kind": "network", "pid": 867, "local_port": "ipv6-icmp", "foreign_port": "*", "transport_protocol": null, "network_protocol": "ipv6" }, { "proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 33322, "program_name": "systemd", "path": "/run/user/1000/systemd/notify", "kind": "socket", "pid": 1607 } ] ``` ### /etc/passwd file ```bash cat /etc/passwd | jc --passwd -p ``` ```json [ { "username": "root", "password": "*", "uid": 0, "gid": 0, "comment": "System Administrator", "home": "/var/root", "shell": "/bin/sh" }, { "username": "daemon", "password": "*", "uid": 1, "gid": 1, "comment": "System Services", "home": "/var/root", "shell": "/usr/bin/false" } ] ``` ### ping ```bash ping 8.8.8.8 -c 3 | jc --ping -p # or: jc -p ping 8.8.8.8 -c 3 ``` ```json { "destination_ip": "8.8.8.8", "data_bytes": 56, "pattern": null, "destination": "8.8.8.8", "packets_transmitted": 3, "packets_received": 3, "packet_loss_percent": 0.0, "duplicates": 0, "time_ms": 2005.0, "round_trip_ms_min": 23.835, "round_trip_ms_avg": 30.46, "round_trip_ms_max": 34.838, "round_trip_ms_stddev": 4.766, "responses": [ { "type": "reply", "timestamp": null, "bytes": 64, "response_ip": "8.8.8.8", "icmp_seq": 1, "ttl": 118, "time_ms": 23.8, "duplicate": false }, { "type": "reply", "timestamp": null, "bytes": 64, "response_ip": "8.8.8.8", "icmp_seq": 2, "ttl": 118, "time_ms": 34.8, "duplicate": false }, { "type": "reply", "timestamp": null, "bytes": 64, "response_ip": "8.8.8.8", "icmp_seq": 3, "ttl": 118, "time_ms": 32.7, "duplicate": false } ] } ``` ### ps ```bash ps axu | jc --ps -p # or: jc -p ps axu ``` ```json [ { "user": "root", "pid": 1, "cpu_percent": 0.0, "mem_percent": 0.1, "vsz": 128072, "rss": 6784, "tty": null, "stat": "Ss", "start": "Nov09", "time": "0:08", "command": "/usr/lib/systemd/systemd --switched-root --system --deserialize 22" }, { "user": "root", "pid": 2, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Nov09", "time": "0:00", "command": "[kthreadd]" }, { "user": "root", "pid": 4, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Nov09", "time": "0:00", "command": "[kworker/0:0H]" } ] ``` ### traceroute ```bash traceroute -m 2 8.8.8.8 | jc --traceroute -p # or: jc -p traceroute -m 2 8.8.8.8 ``` ```json { "destination_ip": "8.8.8.8", "destination_name": "8.8.8.8", "hops": [ { "hop": 1, "probes": [ { "annotation": null, "asn": null, "ip": "192.168.1.254", "name": "dsldevice.local.net", "rtt": 6.616 }, { "annotation": null, "asn": null, "ip": "192.168.1.254", "name": "dsldevice.local.net", "rtt": 6.413 }, { "annotation": null, "asn": null, "ip": "192.168.1.254", "name": "dsldevice.local.net", "rtt": 6.308 } ] }, { "hop": 2, "probes": [ { "annotation": null, "asn": null, "ip": "76.220.24.1", "name": "76-220-24-1.lightspeed.sntcca.sbcglobal.net", "rtt": 29.367 }, { "annotation": null, "asn": null, "ip": "76.220.24.1", "name": "76-220-24-1.lightspeed.sntcca.sbcglobal.net", "rtt": 40.197 }, { "annotation": null, "asn": null, "ip": "76.220.24.1", "name": "76-220-24-1.lightspeed.sntcca.sbcglobal.net", "rtt": 29.162 } ] } ] } ``` ### uptime ```bash uptime | jc --uptime -p # or: jc -p uptime ``` ```json { "time": "11:35", "uptime": "3 days, 4:03", "users": 5, "load_1m": 1.88, "load_5m": 2.0, "load_15m": 1.94, "time_hour": 11, "time_minute": 35, "time_second": null, "uptime_days": 3, "uptime_hours": 4, "uptime_minutes": 3, "uptime_total_seconds": 273780 } ``` ### XML files ```bash cat cd_catalog.xml ``` ```xml Empire Burlesque Bob Dylan USA Columbia 10.90 1985 Hide your heart Bonnie Tyler UK CBS Records 9.90 1988 ... ``` ```bash cat cd_catalog.xml | jc --xml -p ``` ```json { "CATALOG": { "CD": [ { "TITLE": "Empire Burlesque", "ARTIST": "Bob Dylan", "COUNTRY": "USA", "COMPANY": "Columbia", "PRICE": "10.90", "YEAR": "1985" }, { "TITLE": "Hide your heart", "ARTIST": "Bonnie Tyler", "COUNTRY": "UK", "COMPANY": "CBS Records", "PRICE": "9.90", "YEAR": "1988" } ] } } ``` ### YAML files ```bash cat istio.yaml ``` ```yaml apiVersion: "authentication.istio.io/v1alpha1" kind: "Policy" metadata: name: "default" namespace: "default" spec: peers: - mtls: {} --- apiVersion: "networking.istio.io/v1alpha3" kind: "DestinationRule" metadata: name: "default" namespace: "default" spec: host: "*.default.svc.cluster.local" trafficPolicy: tls: mode: ISTIO_MUTUAL ``` ```bash cat istio.yaml | jc --yaml -p ``` ```json [ { "apiVersion": "authentication.istio.io/v1alpha1", "kind": "Policy", "metadata": { "name": "default", "namespace": "default" }, "spec": { "peers": [ { "mtls": {} } ] } }, { "apiVersion": "networking.istio.io/v1alpha3", "kind": "DestinationRule", "metadata": { "name": "default", "namespace": "default" }, "spec": { "host": "*.default.svc.cluster.local", "trafficPolicy": { "tls": { "mode": "ISTIO_MUTUAL" } } } } ] ``` {{ jc.copyright }} jc-1.17.3/tests/000077500000000000000000000000001415226333200133425ustar00rootroot00000000000000jc-1.17.3/tests/__init__.py000066400000000000000000000000001415226333200154410ustar00rootroot00000000000000jc-1.17.3/tests/fixtures/000077500000000000000000000000001415226333200152135ustar00rootroot00000000000000jc-1.17.3/tests/fixtures/alpine-linux-3.13/000077500000000000000000000000001415226333200202025ustar00rootroot00000000000000jc-1.17.3/tests/fixtures/alpine-linux-3.13/ping-hostname.json000066400000000000000000000013731415226333200236520ustar00rootroot00000000000000{"destination_ip":"142.250.125.102","data_bytes":56,"pattern":null,"destination":"google.com","packets_transmitted":4,"packets_received":4,"packet_loss_percent":0.0,"duplicates":0,"round_trip_ms_min":1.281,"round_trip_ms_avg":1.345,"round_trip_ms_max":1.408,"round_trip_ms_stddev":null,"responses":[{"type":"reply","bytes":64,"response_ip":"142.250.125.102","icmp_seq":0,"ttl":42,"time_ms":1.331,"duplicate":false},{"type":"reply","bytes":64,"response_ip":"142.250.125.102","icmp_seq":1,"ttl":42,"time_ms":1.281,"duplicate":false},{"type":"reply","bytes":64,"response_ip":"142.250.125.102","icmp_seq":2,"ttl":42,"time_ms":1.408,"duplicate":false},{"type":"reply","bytes":64,"response_ip":"142.250.125.102","icmp_seq":3,"ttl":42,"time_ms":1.36,"duplicate":false}]}jc-1.17.3/tests/fixtures/alpine-linux-3.13/ping-hostname.out000066400000000000000000000006451415226333200235110ustar00rootroot00000000000000PING google.com (142.250.125.102): 56 data bytes 64 bytes from 142.250.125.102: seq=0 ttl=42 time=1.331 ms 64 bytes from 142.250.125.102: seq=1 ttl=42 time=1.281 ms 64 bytes from 142.250.125.102: seq=2 ttl=42 time=1.408 ms 64 bytes from 142.250.125.102: seq=3 ttl=42 time=1.360 ms --- google.com ping statistics --- 4 packets transmitted, 4 packets received, 0% packet loss round-trip min/avg/max = 1.281/1.345/1.408 ms jc-1.17.3/tests/fixtures/alpine-linux-3.13/ping-ip.json000066400000000000000000000006151415226333200224420ustar00rootroot00000000000000{"destination_ip":"8.8.8.8","data_bytes":56,"pattern":null,"destination":"8.8.8.8","packets_transmitted":1,"packets_received":1,"packet_loss_percent":0.0,"duplicates":0,"round_trip_ms_min":1.637,"round_trip_ms_avg":1.637,"round_trip_ms_max":1.637,"round_trip_ms_stddev":null,"responses":[{"type":"reply","bytes":64,"response_ip":"8.8.8.8","icmp_seq":0,"ttl":42,"time_ms":1.637,"duplicate":false}]}jc-1.17.3/tests/fixtures/alpine-linux-3.13/ping-ip.out000066400000000000000000000003411415226333200222740ustar00rootroot00000000000000PING 8.8.8.8 (8.8.8.8): 56 data bytes 64 bytes from 8.8.8.8: seq=0 ttl=42 time=1.637 ms --- 8.8.8.8 ping statistics --- 1 packets transmitted, 1 packets received, 0% packet loss round-trip min/avg/max = 1.637/1.637/1.637 ms jc-1.17.3/tests/fixtures/centos-7.7/000077500000000000000000000000001415226333200170175ustar00rootroot00000000000000jc-1.17.3/tests/fixtures/centos-7.7/arp-a.json000066400000000000000000000005361415226333200207160ustar00rootroot00000000000000[{"name": "gateway", "address": "192.168.71.2", "hwtype": "ether", "hwaddress": "00:50:56:f7:4a:fc", "iface": "ens33"}, {"name": null, "address": "192.168.71.1", "hwtype": "ether", "hwaddress": "00:50:56:c0:00:08", "iface": "ens33"}, {"name": null, "address": "192.168.71.254", "hwtype": "ether", "hwaddress": "00:50:56:fe:7a:b4", "iface": "ens33"}] jc-1.17.3/tests/fixtures/centos-7.7/arp-a.out000066400000000000000000000002551415226333200205520ustar00rootroot00000000000000gateway (192.168.71.2) at 00:50:56:f7:4a:fc [ether] on ens33 ? (192.168.71.1) at 00:50:56:c0:00:08 [ether] on ens33 ? (192.168.71.254) at 00:50:56:fe:7a:b4 [ether] on ens33 jc-1.17.3/tests/fixtures/centos-7.7/arp-v.json000066400000000000000000000003541415226333200207410ustar00rootroot00000000000000[{"address": "gateway", "hwtype": "ether", "hwaddress": "00:50:56:f7:4a:fc", "flags_mask": "C", "iface": "ens33"}, {"address": "192.168.71.254", "hwtype": "ether", "hwaddress": "00:50:56:fe:7a:b4", "flags_mask": "C", "iface": "ens33"}] jc-1.17.3/tests/fixtures/centos-7.7/arp-v.out000066400000000000000000000004221415226333200205730ustar00rootroot00000000000000Address HWtype HWaddress Flags Mask Iface gateway ether 00:50:56:f7:4a:fc C ens33 192.168.71.254 ether 00:50:56:fe:7a:b4 C ens33 Entries: 2 Skipped: 0 Found: 2 jc-1.17.3/tests/fixtures/centos-7.7/arp.json000066400000000000000000000003541415226333200204760ustar00rootroot00000000000000[{"address": "gateway", "hwtype": "ether", "hwaddress": "00:50:56:f7:4a:fc", "flags_mask": "C", "iface": "ens33"}, {"address": "192.168.71.254", "hwtype": "ether", "hwaddress": "00:50:56:fe:7a:b4", "flags_mask": "C", "iface": "ens33"}] jc-1.17.3/tests/fixtures/centos-7.7/arp.out000066400000000000000000000003631415226333200203340ustar00rootroot00000000000000Address HWtype HWaddress Flags Mask Iface gateway ether 00:50:56:f7:4a:fc C ens33 192.168.71.254 ether 00:50:56:fe:7a:b4 C ens33 jc-1.17.3/tests/fixtures/centos-7.7/blkid-ip-multi.json000066400000000000000000000013741415226333200225420ustar00rootroot00000000000000[{"uuid": "3klkIj-w1qk-DkJi-0XBJ-y3o7-i2Ac-vHqWBM", "version": "LVM2 001", "type": "LVM2_member", "usage": "raid", "minimum_io_size": 512, "physical_sector_size": 512, "logical_sector_size": 512, "part_entry_scheme": "dos", "part_entry_type": "0x8e", "part_entry_number": 2, "part_entry_offset": 2099200, "part_entry_size": 39843840, "part_entry_disk": "8:0", "device": "/dev/sda2"}, {"uuid": "05d927bb-5875-49e3-ada1-7f46cb31c932", "type": "xfs", "usage": "filesystem", "minimum_io_size": 512, "physical_sector_size": 512, "logical_sector_size": 512, "part_entry_scheme": "dos", "part_entry_type": "0x83", "part_entry_flags": "0x80", "part_entry_number": 1, "part_entry_offset": 2048, "part_entry_size": 2097152, "part_entry_disk": "8:0", "device": "/dev/sda1"}] jc-1.17.3/tests/fixtures/centos-7.7/blkid-ip-multi.out000066400000000000000000000011521415226333200223720ustar00rootroot00000000000000DEVNAME=/dev/sda2 UUID=3klkIj-w1qk-DkJi-0XBJ-y3o7-i2Ac-vHqWBM VERSION=LVM2 001 TYPE=LVM2_member USAGE=raid MINIMUM_IO_SIZE=512 PHYSICAL_SECTOR_SIZE=512 LOGICAL_SECTOR_SIZE=512 PART_ENTRY_SCHEME=dos PART_ENTRY_TYPE=0x8e PART_ENTRY_NUMBER=2 PART_ENTRY_OFFSET=2099200 PART_ENTRY_SIZE=39843840 PART_ENTRY_DISK=8:0 DEVNAME=/dev/sda1 UUID=05d927bb-5875-49e3-ada1-7f46cb31c932 TYPE=xfs USAGE=filesystem MINIMUM_IO_SIZE=512 PHYSICAL_SECTOR_SIZE=512 LOGICAL_SECTOR_SIZE=512 PART_ENTRY_SCHEME=dos PART_ENTRY_TYPE=0x83 PART_ENTRY_FLAGS=0x80 PART_ENTRY_NUMBER=1 PART_ENTRY_OFFSET=2048 PART_ENTRY_SIZE=2097152 PART_ENTRY_DISK=8:0 jc-1.17.3/tests/fixtures/centos-7.7/blkid-ip-udev-multi.json000066400000000000000000000017331415226333200235020ustar00rootroot00000000000000[{"id_fs_uuid": "3klkIj-w1qk-DkJi-0XBJ-y3o7-i2Ac-vHqWBM", "id_fs_uuid_enc": "3klkIj-w1qk-DkJi-0XBJ-y3o7-i2Ac-vHqWBM", "id_fs_version": "LVM2\\x20001", "id_fs_type": "LVM2_member", "id_fs_usage": "raid", "id_iolimit_minimum_io_size": 512, "id_iolimit_physical_sector_size": 512, "id_iolimit_logical_sector_size": 512, "id_part_entry_scheme": "dos", "id_part_entry_type": "0x8e", "id_part_entry_number": 2, "id_part_entry_offset": 2099200, "id_part_entry_size": 39843840, "id_part_entry_disk": "8:0"}, {"id_fs_uuid": "05d927bb-5875-49e3-ada1-7f46cb31c932", "id_fs_uuid_enc": "05d927bb-5875-49e3-ada1-7f46cb31c932", "id_fs_type": "xfs", "id_fs_usage": "filesystem", "id_iolimit_minimum_io_size": 512, "id_iolimit_physical_sector_size": 512, "id_iolimit_logical_sector_size": 512, "id_part_entry_scheme": "dos", "id_part_entry_type": "0x83", "id_part_entry_flags": "0x80", "id_part_entry_number": 1, "id_part_entry_offset": 2048, "id_part_entry_size": 2097152, "id_part_entry_disk": "8:0"}] jc-1.17.3/tests/fixtures/centos-7.7/blkid-ip-udev-multi.out000066400000000000000000000015061415226333200233360ustar00rootroot00000000000000ID_FS_UUID=3klkIj-w1qk-DkJi-0XBJ-y3o7-i2Ac-vHqWBM ID_FS_UUID_ENC=3klkIj-w1qk-DkJi-0XBJ-y3o7-i2Ac-vHqWBM ID_FS_VERSION=LVM2\x20001 ID_FS_TYPE=LVM2_member ID_FS_USAGE=raid ID_IOLIMIT_MINIMUM_IO_SIZE=512 ID_IOLIMIT_PHYSICAL_SECTOR_SIZE=512 ID_IOLIMIT_LOGICAL_SECTOR_SIZE=512 ID_PART_ENTRY_SCHEME=dos ID_PART_ENTRY_TYPE=0x8e ID_PART_ENTRY_NUMBER=2 ID_PART_ENTRY_OFFSET=2099200 ID_PART_ENTRY_SIZE=39843840 ID_PART_ENTRY_DISK=8:0 ID_FS_UUID=05d927bb-5875-49e3-ada1-7f46cb31c932 ID_FS_UUID_ENC=05d927bb-5875-49e3-ada1-7f46cb31c932 ID_FS_TYPE=xfs ID_FS_USAGE=filesystem ID_IOLIMIT_MINIMUM_IO_SIZE=512 ID_IOLIMIT_PHYSICAL_SECTOR_SIZE=512 ID_IOLIMIT_LOGICAL_SECTOR_SIZE=512 ID_PART_ENTRY_SCHEME=dos ID_PART_ENTRY_TYPE=0x83 ID_PART_ENTRY_FLAGS=0x80 ID_PART_ENTRY_NUMBER=1 ID_PART_ENTRY_OFFSET=2048 ID_PART_ENTRY_SIZE=2097152 ID_PART_ENTRY_DISK=8:0 jc-1.17.3/tests/fixtures/centos-7.7/blkid-ip-udev.json000066400000000000000000000007501415226333200223500ustar00rootroot00000000000000[{"id_fs_uuid": "05d927bb-5875-49e3-ada1-7f46cb31c932", "id_fs_uuid_enc": "05d927bb-5875-49e3-ada1-7f46cb31c932", "id_fs_type": "xfs", "id_fs_usage": "filesystem", "id_iolimit_minimum_io_size": 512, "id_iolimit_physical_sector_size": 512, "id_iolimit_logical_sector_size": 512, "id_part_entry_scheme": "dos", "id_part_entry_type": "0x83", "id_part_entry_flags": "0x80", "id_part_entry_number": 1, "id_part_entry_offset": 2048, "id_part_entry_size": 2097152, "id_part_entry_disk": "8:0"}] jc-1.17.3/tests/fixtures/centos-7.7/blkid-ip-udev.out000066400000000000000000000006351415226333200222100ustar00rootroot00000000000000ID_FS_UUID=05d927bb-5875-49e3-ada1-7f46cb31c932 ID_FS_UUID_ENC=05d927bb-5875-49e3-ada1-7f46cb31c932 ID_FS_TYPE=xfs ID_FS_USAGE=filesystem ID_IOLIMIT_MINIMUM_IO_SIZE=512 ID_IOLIMIT_PHYSICAL_SECTOR_SIZE=512 ID_IOLIMIT_LOGICAL_SECTOR_SIZE=512 ID_PART_ENTRY_SCHEME=dos ID_PART_ENTRY_TYPE=0x83 ID_PART_ENTRY_FLAGS=0x80 ID_PART_ENTRY_NUMBER=1 ID_PART_ENTRY_OFFSET=2048 ID_PART_ENTRY_SIZE=2097152 ID_PART_ENTRY_DISK=8:0 jc-1.17.3/tests/fixtures/centos-7.7/blkid-sda2.json000066400000000000000000000001431415226333200216240ustar00rootroot00000000000000[{"device": "/dev/sda2", "uuid": "3klkIj-w1qk-DkJi-0XBJ-y3o7-i2Ac-vHqWBM", "type": "LVM2_member"}] jc-1.17.3/tests/fixtures/centos-7.7/blkid-sda2.out000066400000000000000000000001151415226333200214610ustar00rootroot00000000000000/dev/sda2: UUID="3klkIj-w1qk-DkJi-0XBJ-y3o7-i2Ac-vHqWBM" TYPE="LVM2_member" jc-1.17.3/tests/fixtures/centos-7.7/blkid.json000066400000000000000000000006101415226333200207740ustar00rootroot00000000000000[{"device": "/dev/sda1", "uuid": "05d927bb-5875-49e3-ada1-7f46cb31c932", "type": "xfs"}, {"device": "/dev/sda2", "uuid": "3klkIj-w1qk-DkJi-0XBJ-y3o7-i2Ac-vHqWBM", "type": "LVM2_member"}, {"device": "/dev/mapper/centos-root", "uuid": "07d718ef-950c-4e5b-98e0-42a1147b77d9", "type": "xfs"}, {"device": "/dev/mapper/centos-swap", "uuid": "615eb89d-bcbf-46ad-80e3-c483ef5c931f", "type": "swap"}] jc-1.17.3/tests/fixtures/centos-7.7/blkid.out000066400000000000000000000004631415226333200206400ustar00rootroot00000000000000/dev/sda1: UUID="05d927bb-5875-49e3-ada1-7f46cb31c932" TYPE="xfs" /dev/sda2: UUID="3klkIj-w1qk-DkJi-0XBJ-y3o7-i2Ac-vHqWBM" TYPE="LVM2_member" /dev/mapper/centos-root: UUID="07d718ef-950c-4e5b-98e0-42a1147b77d9" TYPE="xfs" /dev/mapper/centos-swap: UUID="615eb89d-bcbf-46ad-80e3-c483ef5c931f" TYPE="swap" jc-1.17.3/tests/fixtures/centos-7.7/cksum.json000066400000000000000000000104131415226333200210330ustar00rootroot00000000000000[{"filename": "devtoolset-3-gcc-4.9.2-6.el7.x86_64.rpm", "checksum": 3194693727, "blocks": 24150660}, {"filename": "digout", "checksum": 1851496064, "blocks": 1196}, {"filename": "dmidecode.out", "checksum": 3221261569, "blocks": 277288}, {"filename": "ethtool.out", "checksum": 4227574970, "blocks": 748}, {"filename": "file with spaces in the name", "checksum": 4294967295, "blocks": 0}, {"filename": "id-centos.out", "checksum": 22642479, "blocks": 129}, {"filename": "ifcfg.json", "checksum": 2870739759, "blocks": 1600}, {"filename": "ifconfig.out", "checksum": 2514469297, "blocks": 1278}, {"filename": "jc", "checksum": 1519020121, "blocks": 58764280}, {"filename": "jc-1.10.5-linux.sha256", "checksum": 1419642770, "blocks": 69}, {"filename": "jc-1.10.5-linux.tar.gz", "checksum": 4103750556, "blocks": 21978413}, {"filename": "jc-1.10.5.rpm", "checksum": 901847831, "blocks": 21716708}, {"filename": "jc-1.11.1-linux.sha256", "checksum": 2941909126, "blocks": 69}, {"filename": "jc-1.11.1-linux.tar.gz", "checksum": 2257585750, "blocks": 20226936}, {"filename": "jc-1.11.1.sha256", "checksum": 1000678195, "blocks": 69}, {"filename": "jc-1.11.1.tar.gz", "checksum": 2080460101, "blocks": 20225785}, {"filename": "jc-1.11.2-linux.sha256", "checksum": 1504349309, "blocks": 69}, {"filename": "jc-1.11.2-linux.tar.gz", "checksum": 1847458112, "blocks": 20231427}, {"filename": "jc-1.11.8-linux.sha256", "checksum": 1107685588, "blocks": 69}, {"filename": "jc-1.11.8-linux.tar.gz", "checksum": 3146155218, "blocks": 20241790}, {"filename": "jc-1.13.1-linux.sha256", "checksum": 2813075513, "blocks": 69}, {"filename": "jc-1.13.1-linux.tar.gz", "checksum": 1234240055, "blocks": 20268540}, {"filename": "jc-1.13.2-linux.sha256", "checksum": 806999822, "blocks": 69}, {"filename": "jc-1.13.2-linux.tar.gz", "checksum": 3132593132, "blocks": 20263630}, {"filename": "jc-1.13.4-linux.sha256", "checksum": 4099431772, "blocks": 69}, {"filename": "jc-1.13.4-linux.tar.gz", "checksum": 585256943, "blocks": 20264188}, {"filename": "jello-1.2.8-linux.sha256", "checksum": 3376281076, "blocks": 72}, {"filename": "jello-1.2.8-linux.tar.gz", "checksum": 3017693313, "blocks": 19899656}, {"filename": "jello-1.2.9-linux.sha256", "checksum": 2752469143, "blocks": 72}, {"filename": "jello-1.2.9-linux.tar.gz", "checksum": 464841230, "blocks": 19901109}, {"filename": "journaljson", "checksum": 220197660, "blocks": 6014042}, {"filename": "jp", "checksum": 1892840001, "blocks": 3426382}, {"filename": "jp_1.1.12_linux_x86_64.zip", "checksum": 1931622609, "blocks": 1174326}, {"filename": "jq_twitter.json", "checksum": 48933934, "blocks": 738160}, {"filename": "jtbl-1.1.6-linux.sha256", "checksum": 3187469112, "blocks": 71}, {"filename": "jtbl-1.1.6-linux.tar.gz", "checksum": 3178056589, "blocks": 18224334}, {"filename": "kbls.out", "checksum": 20037015, "blocks": 4152}, {"filename": "lastb.out", "checksum": 578204035, "blocks": 269}, {"filename": "lsblk-cols", "checksum": 977417403, "blocks": 1559}, {"filename": "ping-ip-O-D.out", "checksum": 1309174893, "blocks": 1751}, {"filename": "ping-ip-O.out", "checksum": 3674431351, "blocks": 1351}, {"filename": "psfile.txt", "checksum": 38743147, "blocks": 7786}, {"filename": "resizeterm.sh", "checksum": 1313583846, "blocks": 355}, {"filename": "route-6-n.out", "checksum": 1511061346, "blocks": 1802}, {"filename": "route-6.out", "checksum": 1574928177, "blocks": 1814}, {"filename": "routeout", "checksum": 1277932868, "blocks": 690}, {"filename": "sha384sum.out", "checksum": 3868747289, "blocks": 6434}, {"filename": "shafile.txt", "checksum": 1039827125, "blocks": 2850}, {"filename": "ss-aeep.out", "checksum": 2355562581, "blocks": 26724}, {"filename": "ssout", "checksum": 1754458832, "blocks": 20190}, {"filename": "sum.out", "checksum": 4143011907, "blocks": 1668}, {"filename": "systemctl.out", "checksum": 3736720956, "blocks": 38746}, {"filename": "top.out", "checksum": 2738959094, "blocks": 5314}, {"filename": "tracepath6.out", "checksum": 3198330928, "blocks": 252}, {"filename": "tracepath-cnn.out", "checksum": 1367648069, "blocks": 939}, {"filename": "tr.out", "checksum": 2683788995, "blocks": 1137}, {"filename": "who-aH.out", "checksum": 3295769480, "blocks": 355}, {"filename": "who.out", "checksum": 969319749, "blocks": 93}, {"filename": "whotext", "checksum": 543168390, "blocks": 281}] jc-1.17.3/tests/fixtures/centos-7.7/cksum.out000066400000000000000000000036271415226333200207020ustar00rootroot000000000000003194693727 24150660 devtoolset-3-gcc-4.9.2-6.el7.x86_64.rpm 1851496064 1196 digout 3221261569 277288 dmidecode.out 4227574970 748 ethtool.out 4294967295 0 file with spaces in the name 22642479 129 id-centos.out 2870739759 1600 ifcfg.json 2514469297 1278 ifconfig.out 1519020121 58764280 jc 1419642770 69 jc-1.10.5-linux.sha256 4103750556 21978413 jc-1.10.5-linux.tar.gz 901847831 21716708 jc-1.10.5.rpm 2941909126 69 jc-1.11.1-linux.sha256 2257585750 20226936 jc-1.11.1-linux.tar.gz 1000678195 69 jc-1.11.1.sha256 2080460101 20225785 jc-1.11.1.tar.gz 1504349309 69 jc-1.11.2-linux.sha256 1847458112 20231427 jc-1.11.2-linux.tar.gz 1107685588 69 jc-1.11.8-linux.sha256 3146155218 20241790 jc-1.11.8-linux.tar.gz 2813075513 69 jc-1.13.1-linux.sha256 1234240055 20268540 jc-1.13.1-linux.tar.gz 806999822 69 jc-1.13.2-linux.sha256 3132593132 20263630 jc-1.13.2-linux.tar.gz 4099431772 69 jc-1.13.4-linux.sha256 585256943 20264188 jc-1.13.4-linux.tar.gz 3376281076 72 jello-1.2.8-linux.sha256 3017693313 19899656 jello-1.2.8-linux.tar.gz 2752469143 72 jello-1.2.9-linux.sha256 464841230 19901109 jello-1.2.9-linux.tar.gz 220197660 6014042 journaljson 1892840001 3426382 jp 1931622609 1174326 jp_1.1.12_linux_x86_64.zip 48933934 738160 jq_twitter.json 3187469112 71 jtbl-1.1.6-linux.sha256 3178056589 18224334 jtbl-1.1.6-linux.tar.gz 20037015 4152 kbls.out 578204035 269 lastb.out 977417403 1559 lsblk-cols 1309174893 1751 ping-ip-O-D.out 3674431351 1351 ping-ip-O.out 38743147 7786 psfile.txt 1313583846 355 resizeterm.sh 1511061346 1802 route-6-n.out 1574928177 1814 route-6.out 1277932868 690 routeout 3868747289 6434 sha384sum.out 1039827125 2850 shafile.txt 2355562581 26724 ss-aeep.out 1754458832 20190 ssout 4143011907 1668 sum.out 3736720956 38746 systemctl.out 2738959094 5314 top.out 3198330928 252 tracepath6.out 1367648069 939 tracepath-cnn.out 2683788995 1137 tr.out 3295769480 355 who-aH.out 969319749 93 who.out 543168390 281 whotext jc-1.17.3/tests/fixtures/centos-7.7/crontab-u.json000066400000000000000000000006171415226333200216100ustar00rootroot00000000000000{"variables": [{"name": "MAILTO", "value": "root"}, {"name": "PATH", "value": "/sbin:/bin:/usr/sbin:/usr/bin"}, {"name": "SHELL", "value": "/bin/bash"}], "schedule": [{"minute": ["01"], "hour": ["*"], "day_of_month": ["*"], "month": ["*"], "day_of_week": ["*"], "user": "root", "command": "run-parts /etc/cron.hourly"}, {"occurrence": "hourly", "user": "root", "command": "/usr/local/bin/backup"}]} jc-1.17.3/tests/fixtures/centos-7.7/crontab-u.out000066400000000000000000000002431415226333200214410ustar00rootroot00000000000000# Run the hourly jobs SHELL=/bin/bash PATH=/sbin:/bin:/usr/sbin:/usr/bin MAILTO=root @hourly root /usr/local/bin/backup 01 * * * * root run-parts /etc/cron.hourly jc-1.17.3/tests/fixtures/centos-7.7/crontab.json000066400000000000000000000036241415226333200213470ustar00rootroot00000000000000{"variables": [{"name": "MAILTO", "value": "root"}, {"name": "PATH", "value": "/sbin:/bin:/usr/sbin:/usr/bin"}, {"name": "SHELL", "value": "/bin/bash"}], "schedule": [{"minute": ["0"], "hour": ["*"], "day_of_month": ["*"], "month": ["*"], "day_of_week": ["*"], "command": "/usr/bin/wget -O - -q -t 1 http://localhost/cron.php"}, {"minute": ["*"], "hour": ["*"], "day_of_month": ["*"], "month": ["*"], "day_of_week": ["*"], "command": "/var/www/devdaily.com/bin/check-apache.sh"}, {"minute": ["5"], "hour": ["10-11", "22"], "day_of_month": ["*"], "month": ["*"], "day_of_week": ["*"], "command": "/var/www/devdaily.com/bin/mk-new-links.php"}, {"minute": ["30"], "hour": ["4/2"], "day_of_month": ["*"], "month": ["*"], "day_of_week": ["*"], "command": "/var/www/devdaily.com/bin/create-all-backups.sh"}, {"minute": ["5"], "hour": ["0", "4", "10", "16"], "day_of_month": ["*"], "month": ["*"], "day_of_week": ["*"], "command": "/var/www/devdaily.com/bin/create-cat-list.sh"}, {"minute": ["5"], "hour": ["0"], "day_of_month": ["*"], "month": ["*"], "day_of_week": ["*"], "command": "/var/www/devdaily.com/bin/resetContactForm.sh"}, {"minute": ["0", "20", "40"], "hour": ["*"], "day_of_month": ["*"], "month": ["*"], "day_of_week": ["*"], "command": "/var/www/bin/ads/freshMint.sh"}, {"minute": ["5", "25", "45"], "hour": ["*"], "day_of_month": ["*"], "month": ["*"], "day_of_week": ["*"], "command": "/var/www/bin/ads/greenTaffy.sh"}, {"minute": ["10", "30", "50"], "hour": ["*"], "day_of_month": ["*"], "month": ["*"], "day_of_week": ["*"], "command": "/var/www/bin/ads/raspberry.sh"}, {"minute": ["15", "35", "55"], "hour": ["*"], "day_of_month": ["*"], "month": ["*"], "day_of_week": ["*"], "command": "/var/www/bin/ads/robinsEgg.sh"}, {"occurrence": "yearly", "command": "/home/maverick/bin/annual-maintenance"}, {"occurrence": "reboot", "command": "/home/cleanup"}, {"occurrence": "monthly", "command": "/home/maverick/bin/tape-backup"}]} jc-1.17.3/tests/fixtures/centos-7.7/crontab.out000066400000000000000000000030341415226333200212000ustar00rootroot00000000000000SHELL=/bin/bash PATH=/sbin:/bin:/usr/sbin:/usr/bin MAILTO=root #-------------------------------------------------- # example unix/linux crontab file format: #-------------------------------------------------- # min,hour,dayOfMonth,month,dayOfWeek command # # field allowed values # ----- -------------- # minute 0-59 # hour 0-23 # day of month 1-31 # month 1-12 (or names, see below) # day of week 0-7 (0 or 7 is Sun, or use names) # #-------------------------------------------------- # run the drupal cron process every hour of every day 0 * * * * /usr/bin/wget -O - -q -t 1 http://localhost/cron.php # run this apache kludge every minute of every day * * * * * /var/www/devdaily.com/bin/check-apache.sh # generate links to new blog posts twice a day 5 10-11,22 * * * /var/www/devdaily.com/bin/mk-new-links.php # run the backup scripts at 4:30am 30 4/2 * * * /var/www/devdaily.com/bin/create-all-backups.sh # re-generate the blog "categories" list (four times a day) 5 0,4,10,16 * * * /var/www/devdaily.com/bin/create-cat-list.sh # reset the contact form just after midnight 5 0 * * * /var/www/devdaily.com/bin/resetContactForm.sh # example of shortcut versions @monthly /home/maverick/bin/tape-backup @reboot /home/cleanup @yearly /home/maverick/bin/annual-maintenance # rotate the ad banners every five minutes 0,20,40 * * * * /var/www/bin/ads/freshMint.sh 5,25,45 * * * * /var/www/bin/ads/greenTaffy.sh 10,30,50 * * * * /var/www/bin/ads/raspberry.sh 15,35,55 * * * * /var/www/bin/ads/robinsEgg.sh jc-1.17.3/tests/fixtures/centos-7.7/df-h.json000066400000000000000000000013331415226333200205300ustar00rootroot00000000000000[{"filesystem":"devtmpfs","size":"1.9G","used":0,"mounted_on":"/dev","available":1,"use_percent":0},{"filesystem":"tmpfs","size":"1.9G","used":0,"mounted_on":"/dev/shm","available":1,"use_percent":0},{"filesystem":"tmpfs","size":"1.9G","used":12,"mounted_on":"/run","available":1,"use_percent":1},{"filesystem":"tmpfs","size":"1.9G","used":0,"mounted_on":"/sys/fs/cgroup","available":1,"use_percent":0},{"filesystem":"/dev/mapper/centos-root","size":"17G","used":1,"mounted_on":"/","available":16,"use_percent":11},{"filesystem":"/dev/sda1","size":"1014M","used":233,"mounted_on":"/boot","available":782,"use_percent":23},{"filesystem":"tmpfs","size":"378M","used":0,"mounted_on":"/run/user/1000","available":378,"use_percent":0}] jc-1.17.3/tests/fixtures/centos-7.7/df-h.out000066400000000000000000000006741415226333200203750ustar00rootroot00000000000000Filesystem Size Used Avail Use% Mounted on devtmpfs 1.9G 0 1.9G 0% /dev tmpfs 1.9G 0 1.9G 0% /dev/shm tmpfs 1.9G 12M 1.9G 1% /run tmpfs 1.9G 0 1.9G 0% /sys/fs/cgroup /dev/mapper/centos-root 17G 1.8G 16G 11% / /dev/sda1 1014M 233M 782M 23% /boot tmpfs 378M 0 378M 0% /run/user/1000 jc-1.17.3/tests/fixtures/centos-7.7/df.json000066400000000000000000000014651415226333200203110ustar00rootroot00000000000000[{"filesystem":"devtmpfs","1k_blocks":1918816,"used":0,"available":1918816,"mounted_on":"/dev","use_percent":0},{"filesystem":"tmpfs","1k_blocks":1930664,"used":0,"available":1930664,"mounted_on":"/dev/shm","use_percent":0},{"filesystem":"tmpfs","1k_blocks":1930664,"used":11832,"available":1918832,"mounted_on":"/run","use_percent":1},{"filesystem":"tmpfs","1k_blocks":1930664,"used":0,"available":1930664,"mounted_on":"/sys/fs/cgroup","use_percent":0},{"filesystem":"/dev/mapper/centos-root","1k_blocks":17811456,"used":1805580,"available":16005876,"mounted_on":"/","use_percent":11},{"filesystem":"/dev/sda1","1k_blocks":1038336,"used":237600,"available":800736,"mounted_on":"/boot","use_percent":23},{"filesystem":"tmpfs","1k_blocks":386136,"used":0,"available":386136,"mounted_on":"/run/user/1000","use_percent":0}] jc-1.17.3/tests/fixtures/centos-7.7/df.out000066400000000000000000000010141415226333200201350ustar00rootroot00000000000000Filesystem 1K-blocks Used Available Use% Mounted on devtmpfs 1918816 0 1918816 0% /dev tmpfs 1930664 0 1930664 0% /dev/shm tmpfs 1930664 11832 1918832 1% /run tmpfs 1930664 0 1930664 0% /sys/fs/cgroup /dev/mapper/centos-root 17811456 1805580 16005876 11% / /dev/sda1 1038336 237600 800736 23% /boot tmpfs 386136 0 386136 0% /run/user/1000 jc-1.17.3/tests/fixtures/centos-7.7/dig-aaaa.json000066400000000000000000000010221415226333200213310ustar00rootroot00000000000000[{"id":25779,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":4096}},"question":{"name":"www.google.com.","class":"IN","type":"AAAA"},"answer":[{"name":"www.google.com.","class":"IN","type":"AAAA","ttl":5,"data":"2607:f8b0:4000:808::2004"}],"query_time":28,"server":"192.168.71.2#53(192.168.71.2)","when":"Wed Oct 30 05:12:53 PDT 2019","rcvd":71,"when_epoch":1572437573,"when_epoch_utc":null}] jc-1.17.3/tests/fixtures/centos-7.7/dig-aaaa.out000066400000000000000000000010541415226333200211740ustar00rootroot00000000000000 ; <<>> DiG 9.11.4-P2-RedHat-9.11.4-9.P2.el7 <<>> www.google.com AAAA ;; global options: +cmd ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 25779 ;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1 ;; OPT PSEUDOSECTION: ; EDNS: version: 0, flags:; MBZ: 0x0005, udp: 4096 ;; QUESTION SECTION: ;www.google.com. IN AAAA ;; ANSWER SECTION: www.google.com. 5 IN AAAA 2607:f8b0:4000:808::2004 ;; Query time: 28 msec ;; SERVER: 192.168.71.2#53(192.168.71.2) ;; WHEN: Wed Oct 30 05:12:53 PDT 2019 ;; MSG SIZE rcvd: 71 jc-1.17.3/tests/fixtures/centos-7.7/dig-axfr.json000066400000000000000000000131611415226333200214150ustar00rootroot00000000000000[{"axfr":[{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"SOA","data":"nsztm1.digi.ninja. robin.digi.ninja. 2019100801 172800 900 1209600 3600"},{"name":"zonetransfer.me.","ttl":300,"class":"IN","type":"HINFO","data":"\"Casio fx-700G\" \"Windows XP\""},{"name":"zonetransfer.me.","ttl":301,"class":"IN","type":"TXT","data":"\"google-site-verification=tyP28J7JAUHA9fw2sHXMgcCC0I6XBmmoVi04VlMewxA\""},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"0 ASPMX.L.GOOGLE.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"10 ALT1.ASPMX.L.GOOGLE.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"10 ALT2.ASPMX.L.GOOGLE.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"20 ASPMX2.GOOGLEMAIL.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"20 ASPMX3.GOOGLEMAIL.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"20 ASPMX4.GOOGLEMAIL.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"20 ASPMX5.GOOGLEMAIL.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"5.196.105.14"},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"NS","data":"nsztm1.digi.ninja."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"NS","data":"nsztm2.digi.ninja."},{"name":"_acme-challenge.zonetransfer.me.","ttl":301,"class":"IN","type":"TXT","data":"\"6Oa05hbUJ9xSsvYy7pApQvwCUSSGgxvrbdizjePEsZI\""},{"name":"_sip._tcp.zonetransfer.me.","ttl":14000,"class":"IN","type":"SRV","data":"0 0 5060 www.zonetransfer.me."},{"name":"14.105.196.5.IN-ADDR.ARPA.zonetransfer.me.","ttl":7200,"class":"IN","type":"PTR","data":"www.zonetransfer.me."},{"name":"asfdbauthdns.zonetransfer.me.","ttl":7900,"class":"IN","type":"AFSDB","data":"1 asfdbbox.zonetransfer.me."},{"name":"asfdbbox.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"127.0.0.1"},{"name":"asfdbvolume.zonetransfer.me.","ttl":7800,"class":"IN","type":"AFSDB","data":"1 asfdbbox.zonetransfer.me."},{"name":"canberra-office.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"202.14.81.230"},{"name":"cmdexec.zonetransfer.me.","ttl":300,"class":"IN","type":"TXT","data":"\"; ls\""},{"name":"contact.zonetransfer.me.","ttl":2592000,"class":"IN","type":"TXT","data":"\"Remember to call or email Pippa on +44 123 4567890 or pippa@zonetransfer.me when making DNS changes\""},{"name":"dc-office.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"143.228.181.132"},{"name":"deadbeef.zonetransfer.me.","ttl":7201,"class":"IN","type":"AAAA","data":"dead:beaf::"},{"name":"dr.zonetransfer.me.","ttl":300,"class":"IN","type":"LOC","data":"53 20 56.558 N 1 38 33.526 W 0.00m 1m 10000m 10m"},{"name":"DZC.zonetransfer.me.","ttl":7200,"class":"IN","type":"TXT","data":"\"AbCdEfG\""},{"name":"email.zonetransfer.me.","ttl":2222,"class":"IN","type":"NAPTR","data":"1 1 \"P\" \"E2U+email\" \"\" email.zonetransfer.me.zonetransfer.me."},{"name":"email.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"74.125.206.26"},{"name":"Hello.zonetransfer.me.","ttl":7200,"class":"IN","type":"TXT","data":"\"Hi to Josh and all his class\""},{"name":"home.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"127.0.0.1"},{"name":"Info.zonetransfer.me.","ttl":7200,"class":"IN","type":"TXT","data":"\"ZoneTransfer.me service provided by Robin Wood - robin@digi.ninja. See http://digi.ninja/projects/zonetransferme.php for more information.\""},{"name":"internal.zonetransfer.me.","ttl":300,"class":"IN","type":"NS","data":"intns1.zonetransfer.me."},{"name":"internal.zonetransfer.me.","ttl":300,"class":"IN","type":"NS","data":"intns2.zonetransfer.me."},{"name":"intns1.zonetransfer.me.","ttl":300,"class":"IN","type":"A","data":"81.4.108.41"},{"name":"intns2.zonetransfer.me.","ttl":300,"class":"IN","type":"A","data":"167.88.42.94"},{"name":"office.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"4.23.39.254"},{"name":"ipv6actnow.org.zonetransfer.me.","ttl":7200,"class":"IN","type":"AAAA","data":"2001:67c:2e8:11::c100:1332"},{"name":"owa.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"207.46.197.32"},{"name":"robinwood.zonetransfer.me.","ttl":302,"class":"IN","type":"TXT","data":"\"Robin Wood\""},{"name":"rp.zonetransfer.me.","ttl":321,"class":"IN","type":"RP","data":"robin.zonetransfer.me. robinwood.zonetransfer.me."},{"name":"sip.zonetransfer.me.","ttl":3333,"class":"IN","type":"NAPTR","data":"2 3 \"P\" \"E2U+sip\" \"!^.*$!sip:customer-service@zonetransfer.me!\" ."},{"name":"sqli.zonetransfer.me.","ttl":300,"class":"IN","type":"TXT","data":"\"' or 1=1 --\""},{"name":"sshock.zonetransfer.me.","ttl":7200,"class":"IN","type":"TXT","data":"\"() { :]}; echo ShellShocked\""},{"name":"staging.zonetransfer.me.","ttl":7200,"class":"IN","type":"CNAME","data":"www.sydneyoperahouse.com."},{"name":"alltcpportsopen.firewall.test.zonetransfer.me.","ttl":301,"class":"IN","type":"A","data":"127.0.0.1"},{"name":"testing.zonetransfer.me.","ttl":301,"class":"IN","type":"CNAME","data":"www.zonetransfer.me."},{"name":"vpn.zonetransfer.me.","ttl":4000,"class":"IN","type":"A","data":"174.36.59.154"},{"name":"www.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"5.196.105.14"},{"name":"xss.zonetransfer.me.","ttl":300,"class":"IN","type":"TXT","data":"\"'>\""},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"SOA","data":"nsztm1.digi.ninja. robin.digi.ninja. 2019100801 172800 900 1209600 3600"}],"query_time":182,"server":"81.4.108.41#53(81.4.108.41)","when":"Wed Mar 25 20:01:47 PDT 2020","size":"50 records (messages 1, bytes 1994)","when_epoch":1585191707,"when_epoch_utc":null}] jc-1.17.3/tests/fixtures/centos-7.7/dig-axfr.out000066400000000000000000000067341415226333200212630ustar00rootroot00000000000000 ; <<>> DiG 9.11.4-P2-RedHat-9.11.4-9.P2.el7 <<>> @81.4.108.41 AXFR zonetransfer.me +nocookie ; (1 server found) ;; global options: +cmd zonetransfer.me. 7200 IN SOA nsztm1.digi.ninja. robin.digi.ninja. 2019100801 172800 900 1209600 3600 zonetransfer.me. 300 IN HINFO "Casio fx-700G" "Windows XP" zonetransfer.me. 301 IN TXT "google-site-verification=tyP28J7JAUHA9fw2sHXMgcCC0I6XBmmoVi04VlMewxA" zonetransfer.me. 7200 IN MX 0 ASPMX.L.GOOGLE.COM. zonetransfer.me. 7200 IN MX 10 ALT1.ASPMX.L.GOOGLE.COM. zonetransfer.me. 7200 IN MX 10 ALT2.ASPMX.L.GOOGLE.COM. zonetransfer.me. 7200 IN MX 20 ASPMX2.GOOGLEMAIL.COM. zonetransfer.me. 7200 IN MX 20 ASPMX3.GOOGLEMAIL.COM. zonetransfer.me. 7200 IN MX 20 ASPMX4.GOOGLEMAIL.COM. zonetransfer.me. 7200 IN MX 20 ASPMX5.GOOGLEMAIL.COM. zonetransfer.me. 7200 IN A 5.196.105.14 zonetransfer.me. 7200 IN NS nsztm1.digi.ninja. zonetransfer.me. 7200 IN NS nsztm2.digi.ninja. _acme-challenge.zonetransfer.me. 301 IN TXT "6Oa05hbUJ9xSsvYy7pApQvwCUSSGgxvrbdizjePEsZI" _sip._tcp.zonetransfer.me. 14000 IN SRV 0 0 5060 www.zonetransfer.me. 14.105.196.5.IN-ADDR.ARPA.zonetransfer.me. 7200 IN PTR www.zonetransfer.me. asfdbauthdns.zonetransfer.me. 7900 IN AFSDB 1 asfdbbox.zonetransfer.me. asfdbbox.zonetransfer.me. 7200 IN A 127.0.0.1 asfdbvolume.zonetransfer.me. 7800 IN AFSDB 1 asfdbbox.zonetransfer.me. canberra-office.zonetransfer.me. 7200 IN A 202.14.81.230 cmdexec.zonetransfer.me. 300 IN TXT "; ls" contact.zonetransfer.me. 2592000 IN TXT "Remember to call or email Pippa on +44 123 4567890 or pippa@zonetransfer.me when making DNS changes" dc-office.zonetransfer.me. 7200 IN A 143.228.181.132 deadbeef.zonetransfer.me. 7201 IN AAAA dead:beaf:: dr.zonetransfer.me. 300 IN LOC 53 20 56.558 N 1 38 33.526 W 0.00m 1m 10000m 10m DZC.zonetransfer.me. 7200 IN TXT "AbCdEfG" email.zonetransfer.me. 2222 IN NAPTR 1 1 "P" "E2U+email" "" email.zonetransfer.me.zonetransfer.me. email.zonetransfer.me. 7200 IN A 74.125.206.26 Hello.zonetransfer.me. 7200 IN TXT "Hi to Josh and all his class" home.zonetransfer.me. 7200 IN A 127.0.0.1 Info.zonetransfer.me. 7200 IN TXT "ZoneTransfer.me service provided by Robin Wood - robin@digi.ninja. See http://digi.ninja/projects/zonetransferme.php for more information." internal.zonetransfer.me. 300 IN NS intns1.zonetransfer.me. internal.zonetransfer.me. 300 IN NS intns2.zonetransfer.me. intns1.zonetransfer.me. 300 IN A 81.4.108.41 intns2.zonetransfer.me. 300 IN A 167.88.42.94 office.zonetransfer.me. 7200 IN A 4.23.39.254 ipv6actnow.org.zonetransfer.me. 7200 IN AAAA 2001:67c:2e8:11::c100:1332 owa.zonetransfer.me. 7200 IN A 207.46.197.32 robinwood.zonetransfer.me. 302 IN TXT "Robin Wood" rp.zonetransfer.me. 321 IN RP robin.zonetransfer.me. robinwood.zonetransfer.me. sip.zonetransfer.me. 3333 IN NAPTR 2 3 "P" "E2U+sip" "!^.*$!sip:customer-service@zonetransfer.me!" . sqli.zonetransfer.me. 300 IN TXT "' or 1=1 --" sshock.zonetransfer.me. 7200 IN TXT "() { :]}; echo ShellShocked" staging.zonetransfer.me. 7200 IN CNAME www.sydneyoperahouse.com. alltcpportsopen.firewall.test.zonetransfer.me. 301 IN A 127.0.0.1 testing.zonetransfer.me. 301 IN CNAME www.zonetransfer.me. vpn.zonetransfer.me. 4000 IN A 174.36.59.154 www.zonetransfer.me. 7200 IN A 5.196.105.14 xss.zonetransfer.me. 300 IN TXT "'>" zonetransfer.me. 7200 IN SOA nsztm1.digi.ninja. robin.digi.ninja. 2019100801 172800 900 1209600 3600 ;; Query time: 182 msec ;; SERVER: 81.4.108.41#53(81.4.108.41) ;; WHEN: Wed Mar 25 20:01:47 PDT 2020 ;; XFR size: 50 records (messages 1, bytes 1994) jc-1.17.3/tests/fixtures/centos-7.7/dig-x.json000066400000000000000000000010241415226333200207170ustar00rootroot00000000000000[{"id":36298,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":4096}},"question":{"name":"1.1.1.1.in-addr.arpa.","class":"IN","type":"PTR"},"answer":[{"name":"1.1.1.1.in-addr.arpa.","class":"IN","type":"PTR","ttl":5,"data":"one.one.one.one."}],"query_time":32,"server":"192.168.71.2#53(192.168.71.2)","when":"Wed Oct 30 05:13:36 PDT 2019","rcvd":78,"when_epoch":1572437616,"when_epoch_utc":null}] jc-1.17.3/tests/fixtures/centos-7.7/dig-x.out000066400000000000000000000010431415226333200205560ustar00rootroot00000000000000 ; <<>> DiG 9.11.4-P2-RedHat-9.11.4-9.P2.el7 <<>> -x 1.1.1.1 ;; global options: +cmd ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 36298 ;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1 ;; OPT PSEUDOSECTION: ; EDNS: version: 0, flags:; MBZ: 0x0005, udp: 4096 ;; QUESTION SECTION: ;1.1.1.1.in-addr.arpa. IN PTR ;; ANSWER SECTION: 1.1.1.1.in-addr.arpa. 5 IN PTR one.one.one.one. ;; Query time: 32 msec ;; SERVER: 192.168.71.2#53(192.168.71.2) ;; WHEN: Wed Oct 30 05:13:36 PDT 2019 ;; MSG SIZE rcvd: 78 jc-1.17.3/tests/fixtures/centos-7.7/dig.json000066400000000000000000000021521415226333200204550ustar00rootroot00000000000000[{"id":44295,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":2,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":4096}},"question":{"name":"www.cnn.com.","class":"IN","type":"A"},"answer":[{"name":"www.cnn.com.","class":"IN","type":"CNAME","ttl":5,"data":"turner-tls.map.fastly.net."},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":5,"data":"151.101.189.67"}],"query_time":25,"server":"192.168.71.2#53(192.168.71.2)","when":"Wed Oct 30 05:13:22 PDT 2019","rcvd":95,"when_epoch":1572437602,"when_epoch_utc":null},{"id":34074,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":4096}},"question":{"name":"www.google.com.","class":"IN","type":"A"},"answer":[{"name":"www.google.com.","class":"IN","type":"A","ttl":5,"data":"216.58.194.100"}],"query_time":25,"server":"192.168.71.2#53(192.168.71.2)","when":"Wed Oct 30 05:13:22 PDT 2019","rcvd":59,"when_epoch":1572437602,"when_epoch_utc":null}] jc-1.17.3/tests/fixtures/centos-7.7/dig.out000066400000000000000000000020341415226333200203120ustar00rootroot00000000000000 ; <<>> DiG 9.11.4-P2-RedHat-9.11.4-9.P2.el7 <<>> www.cnn.com www.google.com ;; global options: +cmd ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 44295 ;; flags: qr rd ra; QUERY: 1, ANSWER: 2, AUTHORITY: 0, ADDITIONAL: 1 ;; OPT PSEUDOSECTION: ; EDNS: version: 0, flags:; MBZ: 0x0005, udp: 4096 ;; QUESTION SECTION: ;www.cnn.com. IN A ;; ANSWER SECTION: www.cnn.com. 5 IN CNAME turner-tls.map.fastly.net. turner-tls.map.fastly.net. 5 IN A 151.101.189.67 ;; Query time: 25 msec ;; SERVER: 192.168.71.2#53(192.168.71.2) ;; WHEN: Wed Oct 30 05:13:22 PDT 2019 ;; MSG SIZE rcvd: 95 ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 34074 ;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1 ;; OPT PSEUDOSECTION: ; EDNS: version: 0, flags:; MBZ: 0x0005, udp: 4096 ;; QUESTION SECTION: ;www.google.com. IN A ;; ANSWER SECTION: www.google.com. 5 IN A 216.58.194.100 ;; Query time: 25 msec ;; SERVER: 192.168.71.2#53(192.168.71.2) ;; WHEN: Wed Oct 30 05:13:22 PDT 2019 ;; MSG SIZE rcvd: 59 jc-1.17.3/tests/fixtures/centos-7.7/dmidecode.json000066400000000000000000012232761415226333200216440ustar00rootroot00000000000000[{"handle": "0x0000", "type": 0, "bytes": 24, "description": "BIOS Information", "values": {"vendor": "Phoenix Technologies LTD", "version": "6.00", "release_date": "04/13/2018", "address": "0xEA490", "runtime_size": "88944 bytes", "rom_size": "64 kB", "characteristics": ["ISA is supported", "PCI is supported", "PC Card (PCMCIA) is supported", "PNP is supported", "APM is supported", "BIOS is upgradeable", "BIOS shadowing is allowed", "ESCD support is available", "Boot from CD is supported", "Selectable boot is supported", "EDD is supported", "Print screen service is supported (int 5h)", "8042 keyboard services are supported (int 9h)", "Serial services are supported (int 14h)", "Printer services are supported (int 17h)", "CGA/mono video services are supported (int 10h)", "ACPI is supported", "Smart battery is supported", "BIOS boot specification is supported", "Function key-initiated network boot is supported", "Targeted content distribution is supported"], "bios_revision": "4.6", "firmware_revision": "0.0"}}, {"handle": "0x0001", "type": 1, "bytes": 27, "description": "System Information", "values": {"manufacturer": "VMware, Inc.", "product_name": "VMware Virtual Platform", "version": "None", "serial_number": "VMware-56 4d fd 28 89 33 f8 e2-64 74 01 59 92 3b 58 0e", "uuid": "28fd4d56-3389-e2f8-6474-0159923b580e", "wake-up_type": "Power Switch", "sku_number": "Not Specified", "family": "Not Specified"}}, {"handle": "0x0002", "type": 2, "bytes": 15, "description": "Base Board Information", "values": {"manufacturer": "Intel Corporation", "product_name": "440BX Desktop Reference Platform", "version": "None", "serial_number": "None", "asset_tag": "Not Specified", "features": "None", "location_in_chassis": "Not Specified", "chassis_handle": "0x0000", "type": "Unknown", "contained_object_handles": "0"}}, {"handle": "0x0003", "type": 3, "bytes": 21, "description": "Chassis Information", "values": {"manufacturer": "No Enclosure", "type": "Other", "lock": "Not Present", "version": "N/A", "serial_number": "None", "asset_tag": "No Asset Tag", "boot-up_state": "Safe", "power_supply_state": "Safe", "thermal_state": "Safe", "security_status": "None", "oem_information": "0x00001234", "height": "Unspecified", "number_of_power_cords": "Unspecified", "contained_elements": "0"}}, {"handle": "0x0004", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #000", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 08 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Enabled", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0094", "l2_cache_handle": "0x0114", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0005", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #001", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0095", "l2_cache_handle": "0x0115", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0006", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #002", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0096", "l2_cache_handle": "0x0116", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0007", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #003", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0097", "l2_cache_handle": "0x0117", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0008", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #004", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0098", "l2_cache_handle": "0x0118", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0009", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #005", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0099", "l2_cache_handle": "0x0119", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #006", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009A", "l2_cache_handle": "0x011A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #007", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009B", "l2_cache_handle": "0x011B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #008", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009C", "l2_cache_handle": "0x011C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #009", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009D", "l2_cache_handle": "0x011D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #010", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009E", "l2_cache_handle": "0x011E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #011", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009F", "l2_cache_handle": "0x011F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0010", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #012", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A0", "l2_cache_handle": "0x0120", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0011", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #013", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A1", "l2_cache_handle": "0x0121", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0012", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #014", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A2", "l2_cache_handle": "0x0122", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0013", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #015", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A3", "l2_cache_handle": "0x0123", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0014", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #016", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A4", "l2_cache_handle": "0x0124", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0015", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #017", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A5", "l2_cache_handle": "0x0125", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0016", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #018", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A6", "l2_cache_handle": "0x0126", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0017", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #019", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A7", "l2_cache_handle": "0x0127", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0018", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #020", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A8", "l2_cache_handle": "0x0128", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0019", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #021", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A9", "l2_cache_handle": "0x0129", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #022", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AA", "l2_cache_handle": "0x012A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #023", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AB", "l2_cache_handle": "0x012B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #024", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AC", "l2_cache_handle": "0x012C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #025", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AD", "l2_cache_handle": "0x012D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #026", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AE", "l2_cache_handle": "0x012E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #027", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AF", "l2_cache_handle": "0x012F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0020", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #028", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B0", "l2_cache_handle": "0x0130", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0021", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #029", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B1", "l2_cache_handle": "0x0131", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0022", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #030", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B2", "l2_cache_handle": "0x0132", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0023", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #031", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B3", "l2_cache_handle": "0x0133", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0024", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #032", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B4", "l2_cache_handle": "0x0134", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0025", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #033", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B5", "l2_cache_handle": "0x0135", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0026", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #034", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B6", "l2_cache_handle": "0x0136", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0027", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #035", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B7", "l2_cache_handle": "0x0137", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0028", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #036", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B8", "l2_cache_handle": "0x0138", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0029", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #037", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B9", "l2_cache_handle": "0x0139", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #038", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BA", "l2_cache_handle": "0x013A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #039", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BB", "l2_cache_handle": "0x013B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #040", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BC", "l2_cache_handle": "0x013C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #041", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BD", "l2_cache_handle": "0x013D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #042", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BE", "l2_cache_handle": "0x013E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #043", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BF", "l2_cache_handle": "0x013F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0030", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #044", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C0", "l2_cache_handle": "0x0140", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0031", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #045", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C1", "l2_cache_handle": "0x0141", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0032", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #046", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C2", "l2_cache_handle": "0x0142", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0033", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #047", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C3", "l2_cache_handle": "0x0143", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0034", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #048", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C4", "l2_cache_handle": "0x0144", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0035", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #049", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C5", "l2_cache_handle": "0x0145", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0036", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #050", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C6", "l2_cache_handle": "0x0146", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0037", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #051", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C7", "l2_cache_handle": "0x0147", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0038", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #052", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C8", "l2_cache_handle": "0x0148", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0039", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #053", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C9", "l2_cache_handle": "0x0149", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #054", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CA", "l2_cache_handle": "0x014A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #055", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CB", "l2_cache_handle": "0x014B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #056", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CC", "l2_cache_handle": "0x014C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #057", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CD", "l2_cache_handle": "0x014D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #058", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CE", "l2_cache_handle": "0x014E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #059", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CF", "l2_cache_handle": "0x014F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0040", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #060", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D0", "l2_cache_handle": "0x0150", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0041", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #061", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D1", "l2_cache_handle": "0x0151", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0042", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #062", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D2", "l2_cache_handle": "0x0152", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0043", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #063", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D3", "l2_cache_handle": "0x0153", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0044", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #064", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D4", "l2_cache_handle": "0x0154", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0045", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #065", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D5", "l2_cache_handle": "0x0155", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0046", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #066", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D6", "l2_cache_handle": "0x0156", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0047", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #067", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D7", "l2_cache_handle": "0x0157", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0048", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #068", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D8", "l2_cache_handle": "0x0158", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0049", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #069", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D9", "l2_cache_handle": "0x0159", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #070", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DA", "l2_cache_handle": "0x015A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #071", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DB", "l2_cache_handle": "0x015B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #072", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DC", "l2_cache_handle": "0x015C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #073", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DD", "l2_cache_handle": "0x015D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #074", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DE", "l2_cache_handle": "0x015E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #075", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DF", "l2_cache_handle": "0x015F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0050", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #076", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E0", "l2_cache_handle": "0x0160", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0051", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #077", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E1", "l2_cache_handle": "0x0161", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0052", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #078", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E2", "l2_cache_handle": "0x0162", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0053", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #079", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E3", "l2_cache_handle": "0x0163", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0054", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #080", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E4", "l2_cache_handle": "0x0164", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0055", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #081", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E5", "l2_cache_handle": "0x0165", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0056", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #082", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E6", "l2_cache_handle": "0x0166", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0057", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #083", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E7", "l2_cache_handle": "0x0167", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0058", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #084", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E8", "l2_cache_handle": "0x0168", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0059", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #085", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E9", "l2_cache_handle": "0x0169", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #086", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EA", "l2_cache_handle": "0x016A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #087", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EB", "l2_cache_handle": "0x016B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #088", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EC", "l2_cache_handle": "0x016C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #089", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00ED", "l2_cache_handle": "0x016D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #090", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EE", "l2_cache_handle": "0x016E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #091", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EF", "l2_cache_handle": "0x016F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0060", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #092", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F0", "l2_cache_handle": "0x0170", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0061", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #093", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F1", "l2_cache_handle": "0x0171", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0062", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #094", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F2", "l2_cache_handle": "0x0172", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0063", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #095", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F3", "l2_cache_handle": "0x0173", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0064", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #096", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F4", "l2_cache_handle": "0x0174", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0065", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #097", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F5", "l2_cache_handle": "0x0175", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0066", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #098", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F6", "l2_cache_handle": "0x0176", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0067", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #099", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F7", "l2_cache_handle": "0x0177", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0068", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #100", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F8", "l2_cache_handle": "0x0178", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0069", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #101", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F9", "l2_cache_handle": "0x0179", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #102", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FA", "l2_cache_handle": "0x017A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #103", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FB", "l2_cache_handle": "0x017B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #104", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FC", "l2_cache_handle": "0x017C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #105", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FD", "l2_cache_handle": "0x017D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #106", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FE", "l2_cache_handle": "0x017E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #107", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FF", "l2_cache_handle": "0x017F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0070", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #108", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0100", "l2_cache_handle": "0x0180", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0071", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #109", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0101", "l2_cache_handle": "0x0181", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0072", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #110", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0102", "l2_cache_handle": "0x0182", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0073", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #111", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0103", "l2_cache_handle": "0x0183", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0074", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #112", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0104", "l2_cache_handle": "0x0184", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0075", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #113", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0105", "l2_cache_handle": "0x0185", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0076", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #114", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0106", "l2_cache_handle": "0x0186", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0077", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #115", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0107", "l2_cache_handle": "0x0187", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0078", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #116", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0108", "l2_cache_handle": "0x0188", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0079", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #117", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0109", "l2_cache_handle": "0x0189", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #118", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010A", "l2_cache_handle": "0x018A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #119", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010B", "l2_cache_handle": "0x018B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #120", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010C", "l2_cache_handle": "0x018C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #121", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010D", "l2_cache_handle": "0x018D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #122", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010E", "l2_cache_handle": "0x018E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #123", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010F", "l2_cache_handle": "0x018F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0080", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #124", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0110", "l2_cache_handle": "0x0190", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0081", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #125", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0111", "l2_cache_handle": "0x0191", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0082", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #126", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0112", "l2_cache_handle": "0x0192", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0083", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #127", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0113", "l2_cache_handle": "0x0193", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0084", "type": 5, "bytes": 46, "description": "Memory Controller Information", "values": {"error_detecting_method": "None", "error_correcting_capabilities": ["None"], "supported_interleave": "One-way Interleave", "current_interleave": "One-way Interleave", "maximum_memory_module_size": "32768 MB", "maximum_total_memory_size": "491520 MB", "supported_speeds": ["70 ns", "60 ns"], "supported_memory_types": ["FPM", "EDO", "DIMM", "SDRAM"], "memory_module_voltage": "3.3 V", "associated_memory_slots": "15", "associated_memory_slots_data": ["0x0006", "0x0007", "0x0008", "0x0009", "0x000A", "0x000B", "0x000C", "0x000D", "0x000E", "0x000F", "0x0010", "0x0011", "0x0012", "0x0013", "0x0014"], "enabled_error_correcting_capabilities": ["None"]}}, {"handle": "0x0085", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #0", "bank_connections": "None", "current_speed": "Unknown", "type": "EDO DIMM", "installed_size": "4096 MB (Single-bank Connection)", "enabled_size": "4096 MB (Single-bank Connection)", "error_status": "OK"}}, {"handle": "0x0086", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #1", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0087", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #2", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0088", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #3", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0089", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #4", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008A", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #5", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008B", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #6", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008C", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #7", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008D", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #8", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008E", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #9", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008F", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #10", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0090", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #11", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0091", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #12", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0092", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #13", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0093", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #14", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0094", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0095", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0096", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0097", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0098", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0099", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00ED", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0100", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0101", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0102", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0103", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0104", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0105", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0106", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0107", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0108", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0109", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0110", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0111", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0112", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0113", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0114", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0115", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0116", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0117", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0118", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0119", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0120", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0121", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0122", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0123", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0124", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0125", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0126", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0127", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0128", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0129", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0130", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0131", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0132", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0133", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0134", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0135", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0136", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0137", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0138", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0139", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0140", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0141", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0142", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0143", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0144", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0145", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0146", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0147", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0148", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0149", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0150", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0151", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0152", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0153", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0154", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0155", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0156", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0157", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0158", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0159", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0160", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0161", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0162", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0163", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0164", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0165", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0166", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0167", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0168", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0169", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0170", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0171", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0172", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0173", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0174", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0175", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0176", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0177", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0178", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0179", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0180", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0181", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0182", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0183", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0184", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0185", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0186", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0187", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0188", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0189", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0190", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0191", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0192", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0193", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0194", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J19", "internal_connector_type": "9 Pin Dual Inline (pin 10 cut)", "external_reference_designator": "COM 1", "external_connector_type": "DB-9 male", "port_type": "Serial Port 16550A Compatible"}}, {"handle": "0x0195", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J23", "internal_connector_type": "25 Pin Dual Inline (pin 26 cut)", "external_reference_designator": "Parallel", "external_connector_type": "DB-25 female", "port_type": "Parallel Port ECP/EPP"}}, {"handle": "0x0196", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J11", "internal_connector_type": "None", "external_reference_designator": "Keyboard", "external_connector_type": "Circular DIN-8 male", "port_type": "Keyboard Port"}}, {"handle": "0x0197", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J12", "internal_connector_type": "None", "external_reference_designator": "PS/2 Mouse", "external_connector_type": "Circular DIN-8 male", "port_type": "Keyboard Port"}}, {"handle": "0x0198", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "ISA Slot J8", "type": "16-bit ISA", "current_usage": "Unknown", "length": "Short", "characteristics": ["5.0 V is provided"], "bus_address": "00ff:ff:1f.7"}}, {"handle": "0x0199", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "ISA Slot J9", "type": "16-bit ISA", "current_usage": "Unknown", "length": "Short", "characteristics": ["5.0 V is provided"], "bus_address": "00ff:ff:1f.7"}}, {"handle": "0x019A", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "ISA Slot J10", "type": "16-bit ISA", "current_usage": "Unknown", "length": "Short", "characteristics": ["5.0 V is provided"], "bus_address": "00ff:ff:1f.7"}}, {"handle": "0x019B", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J11", "type": "32-bit PCI", "current_usage": "In Use", "length": "Long", "id": "1", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:0f.0"}}, {"handle": "0x019C", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J12", "type": "32-bit PCI", "current_usage": "In Use", "length": "Long", "id": "2", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:10.0"}}, {"handle": "0x019D", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J13", "type": "32-bit PCI", "current_usage": "In Use", "length": "Long", "id": "3", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:11.0"}}, {"handle": "0x019E", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J14", "type": "32-bit PCI", "current_usage": "Available", "length": "Long", "id": "4", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:12.0"}}, {"handle": "0x019F", "type": 10, "bytes": 8, "description": "On Board Device 1 Information", "values": {"type": "Video", "status": "Disabled", "description": "VMware SVGA II"}}, {"handle": "0x019F", "type": 10, "bytes": 8, "description": "On Board Device 2 Information", "values": {"type": "Sound", "status": "Disabled", "description": "ES1371"}}, {"handle": "0x01A0", "type": 11, "bytes": 5, "description": "OEM Strings", "values": {"string_1": "[MS_VM_CERT/SHA1/27d66596a61c48dd3dc7216fd715126e33f59ae7]", "string_2": "Welcome to the Virtual Machine"}}, {"handle": "0x01A1", "type": 15, "bytes": 29, "description": "System Event Log", "values": {"area_length": "16 bytes", "header_start_offset": "0x0000", "header_length": "16 bytes", "data_start_offset": "0x0010", "access_method": "General-purpose non-volatile data functions", "access_address": "0x0000", "status": "Invalid, Full", "change_token": "0x00000036", "header_format": "Type 1", "supported_log_type_descriptors": "3", "descriptor_1": "POST error", "data_format_1": "POST results bitmap", "descriptor_2": "Single-bit ECC memory error", "data_format_2": "Multiple-event", "descriptor_3": "Multi-bit ECC memory error", "data_format_3": "Multiple-event"}}, {"handle": "0x01A2", "type": 16, "bytes": 23, "description": "Physical Memory Array", "values": {"location": "System Board Or Motherboard", "use": "System Memory", "error_correction_type": "None", "maximum_capacity": "65 GB", "error_information_handle": "Not Provided", "number_of_devices": "64"}}, {"handle": "0x01A3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "4096 MB", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #0", "bank_locator": "RAM slot #0", "type": "DRAM", "type_detail": "EDO", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #1", "bank_locator": "RAM slot #1", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #2", "bank_locator": "RAM slot #2", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #3", "bank_locator": "RAM slot #3", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #4", "bank_locator": "RAM slot #4", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #5", "bank_locator": "RAM slot #5", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #6", "bank_locator": "RAM slot #6", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #7", "bank_locator": "RAM slot #7", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #8", "bank_locator": "RAM slot #8", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #9", "bank_locator": "RAM slot #9", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #10", "bank_locator": "RAM slot #10", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #11", "bank_locator": "RAM slot #11", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #12", "bank_locator": "RAM slot #12", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #13", "bank_locator": "RAM slot #13", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #14", "bank_locator": "RAM slot #14", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #15", "bank_locator": "RAM slot #15", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #16", "bank_locator": "RAM slot #16", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #17", "bank_locator": "RAM slot #17", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #18", "bank_locator": "RAM slot #18", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #19", "bank_locator": "RAM slot #19", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #20", "bank_locator": "RAM slot #20", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #21", "bank_locator": "RAM slot #21", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #22", "bank_locator": "RAM slot #22", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #23", "bank_locator": "RAM slot #23", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #24", "bank_locator": "RAM slot #24", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #25", "bank_locator": "RAM slot #25", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #26", "bank_locator": "RAM slot #26", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #27", "bank_locator": "RAM slot #27", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #28", "bank_locator": "RAM slot #28", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #29", "bank_locator": "RAM slot #29", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #30", "bank_locator": "RAM slot #30", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #31", "bank_locator": "RAM slot #31", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #32", "bank_locator": "RAM slot #32", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #33", "bank_locator": "RAM slot #33", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #34", "bank_locator": "RAM slot #34", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #35", "bank_locator": "RAM slot #35", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #36", "bank_locator": "RAM slot #36", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #37", "bank_locator": "RAM slot #37", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #38", "bank_locator": "RAM slot #38", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #39", "bank_locator": "RAM slot #39", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #40", "bank_locator": "RAM slot #40", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #41", "bank_locator": "RAM slot #41", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #42", "bank_locator": "RAM slot #42", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #43", "bank_locator": "RAM slot #43", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #44", "bank_locator": "RAM slot #44", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #45", "bank_locator": "RAM slot #45", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #46", "bank_locator": "RAM slot #46", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #47", "bank_locator": "RAM slot #47", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #48", "bank_locator": "RAM slot #48", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #49", "bank_locator": "RAM slot #49", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #50", "bank_locator": "RAM slot #50", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #51", "bank_locator": "RAM slot #51", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #52", "bank_locator": "RAM slot #52", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #53", "bank_locator": "RAM slot #53", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #54", "bank_locator": "RAM slot #54", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #55", "bank_locator": "RAM slot #55", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #56", "bank_locator": "RAM slot #56", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #57", "bank_locator": "RAM slot #57", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #58", "bank_locator": "RAM slot #58", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #59", "bank_locator": "RAM slot #59", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #60", "bank_locator": "RAM slot #60", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #61", "bank_locator": "RAM slot #61", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #62", "bank_locator": "RAM slot #62", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #63", "bank_locator": "RAM slot #63", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #0", "bank_locator": "NVD #0", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #1", "bank_locator": "NVD #1", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #2", "bank_locator": "NVD #2", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #3", "bank_locator": "NVD #3", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #4", "bank_locator": "NVD #4", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #5", "bank_locator": "NVD #5", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #6", "bank_locator": "NVD #6", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01EA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #7", "bank_locator": "NVD #7", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01EB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #8", "bank_locator": "NVD #8", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01EC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #9", "bank_locator": "NVD #9", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01ED", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #10", "bank_locator": "NVD #10", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01EE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #11", "bank_locator": "NVD #11", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01EF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #12", "bank_locator": "NVD #12", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #13", "bank_locator": "NVD #13", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #14", "bank_locator": "NVD #14", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #15", "bank_locator": "NVD #15", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #16", "bank_locator": "NVD #16", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #17", "bank_locator": "NVD #17", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #18", "bank_locator": "NVD #18", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #19", "bank_locator": "NVD #19", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #20", "bank_locator": "NVD #20", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #21", "bank_locator": "NVD #21", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #22", "bank_locator": "NVD #22", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #23", "bank_locator": "NVD #23", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #24", "bank_locator": "NVD #24", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #25", "bank_locator": "NVD #25", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #26", "bank_locator": "NVD #26", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #27", "bank_locator": "NVD #27", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #28", "bank_locator": "NVD #28", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0200", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #29", "bank_locator": "NVD #29", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0201", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #30", "bank_locator": "NVD #30", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0202", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #31", "bank_locator": "NVD #31", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0203", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #32", "bank_locator": "NVD #32", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0204", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #33", "bank_locator": "NVD #33", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0205", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #34", "bank_locator": "NVD #34", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0206", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #35", "bank_locator": "NVD #35", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0207", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #36", "bank_locator": "NVD #36", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0208", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #37", "bank_locator": "NVD #37", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0209", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #38", "bank_locator": "NVD #38", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020A", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #39", "bank_locator": "NVD #39", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020B", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #40", "bank_locator": "NVD #40", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020C", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #41", "bank_locator": "NVD #41", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020D", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #42", "bank_locator": "NVD #42", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020E", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #43", "bank_locator": "NVD #43", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020F", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #44", "bank_locator": "NVD #44", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0210", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #45", "bank_locator": "NVD #45", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0211", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #46", "bank_locator": "NVD #46", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0212", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #47", "bank_locator": "NVD #47", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0213", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #48", "bank_locator": "NVD #48", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0214", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #49", "bank_locator": "NVD #49", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0215", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #50", "bank_locator": "NVD #50", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0216", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #51", "bank_locator": "NVD #51", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0217", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #52", "bank_locator": "NVD #52", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0218", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #53", "bank_locator": "NVD #53", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0219", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #54", "bank_locator": "NVD #54", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021A", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #55", "bank_locator": "NVD #55", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021B", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #56", "bank_locator": "NVD #56", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021C", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #57", "bank_locator": "NVD #57", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021D", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #58", "bank_locator": "NVD #58", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021E", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #59", "bank_locator": "NVD #59", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021F", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #60", "bank_locator": "NVD #60", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0220", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #61", "bank_locator": "NVD #61", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0221", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #62", "bank_locator": "NVD #62", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0222", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #63", "bank_locator": "NVD #63", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0223", "type": 18, "bytes": 23, "description": "32-bit Memory Error Information", "values": {"type": "OK", "granularity": "Unknown", "operation": "Unknown", "vendor_syndrome": "Unknown", "memory_array_address": "Unknown", "device_address": "Unknown", "resolution": "Unknown"}}, {"handle": "0x0224", "type": 19, "bytes": 31, "description": "Memory Array Mapped Address", "values": {"starting_address": "0x00000000000", "ending_address": "0x000FFFFFFFF", "range_size": "4 GB", "physical_array_handle": "0x0025", "partition_width": "64"}}, {"handle": "0x0225", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0026", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0226", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0027", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0227", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0028", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0228", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0029", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0229", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0030", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0230", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0031", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0231", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0032", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0232", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0033", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0233", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0034", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0234", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0035", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0235", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0036", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0236", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0037", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0237", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0038", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0238", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0039", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0239", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0040", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0240", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0041", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0241", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0042", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0242", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0043", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0243", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0044", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0244", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0045", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0245", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0046", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0246", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0047", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0247", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0048", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0248", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0049", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0249", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0050", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0250", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0051", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0251", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0052", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0252", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0053", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0253", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0054", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0254", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0055", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0255", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0056", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0256", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0057", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0257", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0058", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0258", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0059", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0259", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0060", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0260", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0061", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0261", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0062", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0262", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0063", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0263", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0064", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0264", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0065", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0265", "type": 23, "bytes": 13, "description": "System Reset", "values": {"status": "Enabled", "watchdog_timer": "Present", "boot_option": "Do Not Reboot", "boot_option_on_limit": "Do Not Reboot", "reset_count": "Unknown", "reset_limit": "Unknown", "timer_interval": "Unknown", "timeout": "Unknown"}}, {"handle": "0x0266", "type": 24, "bytes": 5, "description": "Hardware Security", "values": {"power-on_password_status": "Disabled", "keyboard_password_status": "Unknown", "administrator_password_status": "Enabled", "front_panel_reset_status": "Unknown"}}, {"handle": "0x0267", "type": 30, "bytes": 6, "description": "Out-of-band Remote Access", "values": {"manufacturer_name": "Intel", "inbound_connection": "Enabled", "outbound_connection": "Disabled"}}, {"handle": "0x0268", "type": 32, "bytes": 20, "description": "System Boot Information", "values": {"status": "No errors detected"}}, {"handle": "0x0269", "type": 33, "bytes": 31, "description": "64-bit Memory Error Information", "values": {"type": "OK", "granularity": "Unknown", "operation": "Unknown", "vendor_syndrome": "Unknown", "memory_array_address": "Unknown", "device_address": "Unknown", "resolution": "Unknown"}}, {"handle": "0x026A", "type": 126, "bytes": 4, "description": "Inactive", "values": null}, {"handle": "0x026B", "type": 127, "bytes": 4, "description": "End Of Table", "values": null}] jc-1.17.3/tests/fixtures/centos-7.7/dmidecode.out000066400000000000000000010354501415226333200214750ustar00rootroot00000000000000# dmidecode 3.2 Getting SMBIOS data from sysfs. SMBIOS 2.7 present. 620 structures occupying 29060 bytes. Table at 0x000E0010. Handle 0x0000, DMI type 0, 24 bytes BIOS Information Vendor: Phoenix Technologies LTD Version: 6.00 Release Date: 04/13/2018 Address: 0xEA490 Runtime Size: 88944 bytes ROM Size: 64 kB Characteristics: ISA is supported PCI is supported PC Card (PCMCIA) is supported PNP is supported APM is supported BIOS is upgradeable BIOS shadowing is allowed ESCD support is available Boot from CD is supported Selectable boot is supported EDD is supported Print screen service is supported (int 5h) 8042 keyboard services are supported (int 9h) Serial services are supported (int 14h) Printer services are supported (int 17h) CGA/mono video services are supported (int 10h) ACPI is supported Smart battery is supported BIOS boot specification is supported Function key-initiated network boot is supported Targeted content distribution is supported BIOS Revision: 4.6 Firmware Revision: 0.0 Handle 0x0001, DMI type 1, 27 bytes System Information Manufacturer: VMware, Inc. Product Name: VMware Virtual Platform Version: None Serial Number: VMware-56 4d fd 28 89 33 f8 e2-64 74 01 59 92 3b 58 0e UUID: 28fd4d56-3389-e2f8-6474-0159923b580e Wake-up Type: Power Switch SKU Number: Not Specified Family: Not Specified Handle 0x0002, DMI type 2, 15 bytes Base Board Information Manufacturer: Intel Corporation Product Name: 440BX Desktop Reference Platform Version: None Serial Number: None Asset Tag: Not Specified Features: None Location In Chassis: Not Specified Chassis Handle: 0x0000 Type: Unknown Contained Object Handles: 0 Handle 0x0003, DMI type 3, 21 bytes Chassis Information Manufacturer: No Enclosure Type: Other Lock: Not Present Version: N/A Serial Number: None Asset Tag: No Asset Tag Boot-up State: Safe Power Supply State: Safe Thermal State: Safe Security Status: None OEM Information: 0x00001234 Height: Unspecified Number Of Power Cords: Unspecified Contained Elements: 0 Handle 0x0004, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #000 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 08 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Enabled Upgrade: ZIF Socket L1 Cache Handle: 0x0094 L2 Cache Handle: 0x0114 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0005, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #001 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0095 L2 Cache Handle: 0x0115 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0006, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #002 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0096 L2 Cache Handle: 0x0116 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0007, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #003 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0097 L2 Cache Handle: 0x0117 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0008, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #004 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0098 L2 Cache Handle: 0x0118 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0009, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #005 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0099 L2 Cache Handle: 0x0119 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x000A, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #006 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x009A L2 Cache Handle: 0x011A L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x000B, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #007 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x009B L2 Cache Handle: 0x011B L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x000C, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #008 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x009C L2 Cache Handle: 0x011C L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x000D, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #009 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x009D L2 Cache Handle: 0x011D L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x000E, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #010 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x009E L2 Cache Handle: 0x011E L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x000F, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #011 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x009F L2 Cache Handle: 0x011F L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0010, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #012 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00A0 L2 Cache Handle: 0x0120 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0011, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #013 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00A1 L2 Cache Handle: 0x0121 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0012, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #014 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00A2 L2 Cache Handle: 0x0122 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0013, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #015 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00A3 L2 Cache Handle: 0x0123 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0014, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #016 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00A4 L2 Cache Handle: 0x0124 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0015, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #017 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00A5 L2 Cache Handle: 0x0125 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0016, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #018 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00A6 L2 Cache Handle: 0x0126 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0017, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #019 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00A7 L2 Cache Handle: 0x0127 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0018, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #020 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00A8 L2 Cache Handle: 0x0128 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0019, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #021 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00A9 L2 Cache Handle: 0x0129 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x001A, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #022 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00AA L2 Cache Handle: 0x012A L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x001B, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #023 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00AB L2 Cache Handle: 0x012B L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x001C, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #024 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00AC L2 Cache Handle: 0x012C L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x001D, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #025 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00AD L2 Cache Handle: 0x012D L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x001E, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #026 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00AE L2 Cache Handle: 0x012E L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x001F, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #027 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00AF L2 Cache Handle: 0x012F L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0020, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #028 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00B0 L2 Cache Handle: 0x0130 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0021, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #029 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00B1 L2 Cache Handle: 0x0131 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0022, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #030 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00B2 L2 Cache Handle: 0x0132 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0023, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #031 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00B3 L2 Cache Handle: 0x0133 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0024, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #032 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00B4 L2 Cache Handle: 0x0134 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0025, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #033 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00B5 L2 Cache Handle: 0x0135 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0026, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #034 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00B6 L2 Cache Handle: 0x0136 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0027, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #035 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00B7 L2 Cache Handle: 0x0137 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0028, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #036 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00B8 L2 Cache Handle: 0x0138 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0029, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #037 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00B9 L2 Cache Handle: 0x0139 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x002A, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #038 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00BA L2 Cache Handle: 0x013A L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x002B, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #039 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00BB L2 Cache Handle: 0x013B L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x002C, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #040 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00BC L2 Cache Handle: 0x013C L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x002D, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #041 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00BD L2 Cache Handle: 0x013D L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x002E, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #042 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00BE L2 Cache Handle: 0x013E L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x002F, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #043 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00BF L2 Cache Handle: 0x013F L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0030, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #044 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00C0 L2 Cache Handle: 0x0140 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0031, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #045 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00C1 L2 Cache Handle: 0x0141 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0032, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #046 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00C2 L2 Cache Handle: 0x0142 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0033, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #047 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00C3 L2 Cache Handle: 0x0143 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0034, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #048 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00C4 L2 Cache Handle: 0x0144 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0035, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #049 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00C5 L2 Cache Handle: 0x0145 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0036, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #050 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00C6 L2 Cache Handle: 0x0146 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0037, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #051 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00C7 L2 Cache Handle: 0x0147 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0038, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #052 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00C8 L2 Cache Handle: 0x0148 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0039, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #053 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00C9 L2 Cache Handle: 0x0149 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x003A, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #054 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00CA L2 Cache Handle: 0x014A L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x003B, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #055 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00CB L2 Cache Handle: 0x014B L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x003C, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #056 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00CC L2 Cache Handle: 0x014C L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x003D, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #057 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00CD L2 Cache Handle: 0x014D L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x003E, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #058 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00CE L2 Cache Handle: 0x014E L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x003F, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #059 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00CF L2 Cache Handle: 0x014F L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0040, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #060 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00D0 L2 Cache Handle: 0x0150 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0041, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #061 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00D1 L2 Cache Handle: 0x0151 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0042, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #062 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00D2 L2 Cache Handle: 0x0152 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0043, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #063 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00D3 L2 Cache Handle: 0x0153 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0044, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #064 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00D4 L2 Cache Handle: 0x0154 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0045, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #065 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00D5 L2 Cache Handle: 0x0155 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0046, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #066 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00D6 L2 Cache Handle: 0x0156 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0047, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #067 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00D7 L2 Cache Handle: 0x0157 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0048, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #068 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00D8 L2 Cache Handle: 0x0158 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0049, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #069 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00D9 L2 Cache Handle: 0x0159 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x004A, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #070 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00DA L2 Cache Handle: 0x015A L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x004B, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #071 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00DB L2 Cache Handle: 0x015B L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x004C, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #072 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00DC L2 Cache Handle: 0x015C L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x004D, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #073 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00DD L2 Cache Handle: 0x015D L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x004E, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #074 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00DE L2 Cache Handle: 0x015E L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x004F, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #075 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00DF L2 Cache Handle: 0x015F L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0050, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #076 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00E0 L2 Cache Handle: 0x0160 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0051, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #077 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00E1 L2 Cache Handle: 0x0161 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0052, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #078 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00E2 L2 Cache Handle: 0x0162 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0053, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #079 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00E3 L2 Cache Handle: 0x0163 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0054, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #080 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00E4 L2 Cache Handle: 0x0164 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0055, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #081 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00E5 L2 Cache Handle: 0x0165 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0056, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #082 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00E6 L2 Cache Handle: 0x0166 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0057, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #083 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00E7 L2 Cache Handle: 0x0167 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0058, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #084 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00E8 L2 Cache Handle: 0x0168 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0059, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #085 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00E9 L2 Cache Handle: 0x0169 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x005A, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #086 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00EA L2 Cache Handle: 0x016A L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x005B, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #087 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00EB L2 Cache Handle: 0x016B L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x005C, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #088 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00EC L2 Cache Handle: 0x016C L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x005D, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #089 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00ED L2 Cache Handle: 0x016D L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x005E, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #090 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00EE L2 Cache Handle: 0x016E L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x005F, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #091 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00EF L2 Cache Handle: 0x016F L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0060, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #092 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00F0 L2 Cache Handle: 0x0170 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0061, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #093 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00F1 L2 Cache Handle: 0x0171 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0062, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #094 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00F2 L2 Cache Handle: 0x0172 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0063, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #095 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00F3 L2 Cache Handle: 0x0173 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0064, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #096 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00F4 L2 Cache Handle: 0x0174 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0065, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #097 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00F5 L2 Cache Handle: 0x0175 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0066, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #098 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00F6 L2 Cache Handle: 0x0176 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0067, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #099 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00F7 L2 Cache Handle: 0x0177 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0068, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #100 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00F8 L2 Cache Handle: 0x0178 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0069, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #101 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00F9 L2 Cache Handle: 0x0179 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x006A, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #102 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00FA L2 Cache Handle: 0x017A L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x006B, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #103 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00FB L2 Cache Handle: 0x017B L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x006C, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #104 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00FC L2 Cache Handle: 0x017C L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x006D, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #105 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00FD L2 Cache Handle: 0x017D L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x006E, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #106 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00FE L2 Cache Handle: 0x017E L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x006F, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #107 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00FF L2 Cache Handle: 0x017F L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0070, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #108 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0100 L2 Cache Handle: 0x0180 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0071, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #109 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0101 L2 Cache Handle: 0x0181 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0072, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #110 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0102 L2 Cache Handle: 0x0182 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0073, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #111 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0103 L2 Cache Handle: 0x0183 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0074, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #112 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0104 L2 Cache Handle: 0x0184 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0075, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #113 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0105 L2 Cache Handle: 0x0185 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0076, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #114 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0106 L2 Cache Handle: 0x0186 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0077, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #115 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0107 L2 Cache Handle: 0x0187 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0078, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #116 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0108 L2 Cache Handle: 0x0188 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0079, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #117 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0109 L2 Cache Handle: 0x0189 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x007A, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #118 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x010A L2 Cache Handle: 0x018A L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x007B, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #119 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x010B L2 Cache Handle: 0x018B L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x007C, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #120 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x010C L2 Cache Handle: 0x018C L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x007D, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #121 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x010D L2 Cache Handle: 0x018D L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x007E, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #122 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x010E L2 Cache Handle: 0x018E L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x007F, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #123 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x010F L2 Cache Handle: 0x018F L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0080, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #124 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0110 L2 Cache Handle: 0x0190 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0081, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #125 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0111 L2 Cache Handle: 0x0191 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0082, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #126 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0112 L2 Cache Handle: 0x0192 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0083, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #127 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0113 L2 Cache Handle: 0x0193 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0084, DMI type 5, 46 bytes Memory Controller Information Error Detecting Method: None Error Correcting Capabilities: None Supported Interleave: One-way Interleave Current Interleave: One-way Interleave Maximum Memory Module Size: 32768 MB Maximum Total Memory Size: 491520 MB Supported Speeds: 70 ns 60 ns Supported Memory Types: FPM EDO DIMM SDRAM Memory Module Voltage: 3.3 V Associated Memory Slots: 15 0x0006 0x0007 0x0008 0x0009 0x000A 0x000B 0x000C 0x000D 0x000E 0x000F 0x0010 0x0011 0x0012 0x0013 0x0014 Enabled Error Correcting Capabilities: None Handle 0x0085, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #0 Bank Connections: None Current Speed: Unknown Type: EDO DIMM Installed Size: 4096 MB (Single-bank Connection) Enabled Size: 4096 MB (Single-bank Connection) Error Status: OK Handle 0x0086, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #1 Bank Connections: None Current Speed: Unknown Type: DIMM Installed Size: Not Installed Enabled Size: Not Installed Error Status: OK Handle 0x0087, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #2 Bank Connections: None Current Speed: Unknown Type: DIMM Installed Size: Not Installed Enabled Size: Not Installed Error Status: OK Handle 0x0088, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #3 Bank Connections: None Current Speed: Unknown Type: DIMM Installed Size: Not Installed Enabled Size: Not Installed Error Status: OK Handle 0x0089, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #4 Bank Connections: None Current Speed: Unknown Type: DIMM Installed Size: Not Installed Enabled Size: Not Installed Error Status: OK Handle 0x008A, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #5 Bank Connections: None Current Speed: Unknown Type: DIMM Installed Size: Not Installed Enabled Size: Not Installed Error Status: OK Handle 0x008B, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #6 Bank Connections: None Current Speed: Unknown Type: DIMM Installed Size: Not Installed Enabled Size: Not Installed Error Status: OK Handle 0x008C, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #7 Bank Connections: None Current Speed: Unknown Type: DIMM Installed Size: Not Installed Enabled Size: Not Installed Error Status: OK Handle 0x008D, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #8 Bank Connections: None Current Speed: Unknown Type: DIMM Installed Size: Not Installed Enabled Size: Not Installed Error Status: OK Handle 0x008E, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #9 Bank Connections: None Current Speed: Unknown Type: DIMM Installed Size: Not Installed Enabled Size: Not Installed Error Status: OK Handle 0x008F, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #10 Bank Connections: None Current Speed: Unknown Type: DIMM Installed Size: Not Installed Enabled Size: Not Installed Error Status: OK Handle 0x0090, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #11 Bank Connections: None Current Speed: Unknown Type: DIMM Installed Size: Not Installed Enabled Size: Not Installed Error Status: OK Handle 0x0091, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #12 Bank Connections: None Current Speed: Unknown Type: DIMM Installed Size: Not Installed Enabled Size: Not Installed Error Status: OK Handle 0x0092, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #13 Bank Connections: None Current Speed: Unknown Type: DIMM Installed Size: Not Installed Enabled Size: Not Installed Error Status: OK Handle 0x0093, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #14 Bank Connections: None Current Speed: Unknown Type: DIMM Installed Size: Not Installed Enabled Size: Not Installed Error Status: OK Handle 0x0094, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0095, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0096, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0097, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0098, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0099, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x009A, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x009B, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x009C, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x009D, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x009E, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x009F, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00A0, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00A1, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00A2, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00A3, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00A4, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00A5, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00A6, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00A7, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00A8, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00A9, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00AA, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00AB, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00AC, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00AD, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00AE, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00AF, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00B0, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00B1, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00B2, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00B3, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00B4, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00B5, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00B6, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00B7, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00B8, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00B9, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00BA, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00BB, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00BC, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00BD, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00BE, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00BF, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00C0, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00C1, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00C2, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00C3, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00C4, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00C5, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00C6, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00C7, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00C8, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00C9, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00CA, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00CB, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00CC, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00CD, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00CE, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00CF, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00D0, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00D1, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00D2, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00D3, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00D4, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00D5, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00D6, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00D7, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00D8, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00D9, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00DA, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00DB, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00DC, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00DD, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00DE, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00DF, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00E0, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00E1, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00E2, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00E3, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00E4, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00E5, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00E6, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00E7, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00E8, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00E9, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00EA, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00EB, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00EC, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00ED, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00EE, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00EF, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00F0, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00F1, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00F2, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00F3, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00F4, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00F5, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00F6, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00F7, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00F8, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00F9, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00FA, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00FB, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00FC, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00FD, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00FE, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00FF, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0100, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0101, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0102, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0103, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0104, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0105, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0106, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0107, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0108, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0109, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x010A, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x010B, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x010C, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x010D, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x010E, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x010F, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0110, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0111, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0112, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0113, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0114, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0115, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0116, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0117, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0118, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0119, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x011A, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x011B, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x011C, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x011D, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x011E, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x011F, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0120, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0121, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0122, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0123, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0124, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0125, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0126, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0127, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0128, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0129, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x012A, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x012B, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x012C, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x012D, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x012E, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x012F, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0130, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0131, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0132, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0133, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0134, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0135, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0136, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0137, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0138, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0139, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x013A, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x013B, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x013C, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x013D, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x013E, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x013F, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0140, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0141, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0142, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0143, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0144, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0145, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0146, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0147, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0148, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0149, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x014A, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x014B, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x014C, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x014D, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x014E, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x014F, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0150, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0151, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0152, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0153, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0154, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0155, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0156, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0157, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0158, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0159, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x015A, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x015B, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x015C, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x015D, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x015E, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x015F, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0160, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0161, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0162, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0163, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0164, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0165, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0166, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0167, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0168, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0169, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x016A, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x016B, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x016C, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x016D, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x016E, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x016F, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0170, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0171, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0172, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0173, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0174, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0175, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0176, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0177, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0178, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0179, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x017A, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x017B, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x017C, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x017D, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x017E, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x017F, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0180, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0181, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0182, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0183, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0184, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0185, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0186, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0187, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0188, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0189, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x018A, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x018B, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x018C, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x018D, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x018E, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x018F, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0190, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0191, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0192, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0193, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0194, DMI type 8, 9 bytes Port Connector Information Internal Reference Designator: J19 Internal Connector Type: 9 Pin Dual Inline (pin 10 cut) External Reference Designator: COM 1 External Connector Type: DB-9 male Port Type: Serial Port 16550A Compatible Handle 0x0195, DMI type 8, 9 bytes Port Connector Information Internal Reference Designator: J23 Internal Connector Type: 25 Pin Dual Inline (pin 26 cut) External Reference Designator: Parallel External Connector Type: DB-25 female Port Type: Parallel Port ECP/EPP Handle 0x0196, DMI type 8, 9 bytes Port Connector Information Internal Reference Designator: J11 Internal Connector Type: None External Reference Designator: Keyboard External Connector Type: Circular DIN-8 male Port Type: Keyboard Port Handle 0x0197, DMI type 8, 9 bytes Port Connector Information Internal Reference Designator: J12 Internal Connector Type: None External Reference Designator: PS/2 Mouse External Connector Type: Circular DIN-8 male Port Type: Keyboard Port Handle 0x0198, DMI type 9, 17 bytes System Slot Information Designation: ISA Slot J8 Type: 16-bit ISA Current Usage: Unknown Length: Short Characteristics: 5.0 V is provided Bus Address: 00ff:ff:1f.7 Handle 0x0199, DMI type 9, 17 bytes System Slot Information Designation: ISA Slot J9 Type: 16-bit ISA Current Usage: Unknown Length: Short Characteristics: 5.0 V is provided Bus Address: 00ff:ff:1f.7 Handle 0x019A, DMI type 9, 17 bytes System Slot Information Designation: ISA Slot J10 Type: 16-bit ISA Current Usage: Unknown Length: Short Characteristics: 5.0 V is provided Bus Address: 00ff:ff:1f.7 Handle 0x019B, DMI type 9, 17 bytes System Slot Information Designation: PCI Slot J11 Type: 32-bit PCI Current Usage: In Use Length: Long ID: 1 Characteristics: 5.0 V is provided 3.3 V is provided Bus Address: 0000:00:0f.0 Handle 0x019C, DMI type 9, 17 bytes System Slot Information Designation: PCI Slot J12 Type: 32-bit PCI Current Usage: In Use Length: Long ID: 2 Characteristics: 5.0 V is provided 3.3 V is provided Bus Address: 0000:00:10.0 Handle 0x019D, DMI type 9, 17 bytes System Slot Information Designation: PCI Slot J13 Type: 32-bit PCI Current Usage: In Use Length: Long ID: 3 Characteristics: 5.0 V is provided 3.3 V is provided Bus Address: 0000:00:11.0 Handle 0x019E, DMI type 9, 17 bytes System Slot Information Designation: PCI Slot J14 Type: 32-bit PCI Current Usage: Available Length: Long ID: 4 Characteristics: 5.0 V is provided 3.3 V is provided Bus Address: 0000:00:12.0 Handle 0x019F, DMI type 10, 8 bytes On Board Device 1 Information Type: Video Status: Disabled Description: VMware SVGA II On Board Device 2 Information Type: Sound Status: Disabled Description: ES1371 Handle 0x01A0, DMI type 11, 5 bytes OEM Strings String 1: [MS_VM_CERT/SHA1/27d66596a61c48dd3dc7216fd715126e33f59ae7] String 2: Welcome to the Virtual Machine Handle 0x01A1, DMI type 15, 29 bytes System Event Log Area Length: 16 bytes Header Start Offset: 0x0000 Header Length: 16 bytes Data Start Offset: 0x0010 Access Method: General-purpose non-volatile data functions Access Address: 0x0000 Status: Invalid, Full Change Token: 0x00000036 Header Format: Type 1 Supported Log Type Descriptors: 3 Descriptor 1: POST error Data Format 1: POST results bitmap Descriptor 2: Single-bit ECC memory error Data Format 2: Multiple-event Descriptor 3: Multi-bit ECC memory error Data Format 3: Multiple-event Handle 0x01A2, DMI type 16, 23 bytes Physical Memory Array Location: System Board Or Motherboard Use: System Memory Error Correction Type: None Maximum Capacity: 65 GB Error Information Handle: Not Provided Number Of Devices: 64 Handle 0x01A3, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: 4096 MB Form Factor: DIMM Set: None Locator: RAM slot #0 Bank Locator: RAM slot #0 Type: DRAM Type Detail: EDO Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01A4, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #1 Bank Locator: RAM slot #1 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01A5, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #2 Bank Locator: RAM slot #2 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01A6, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #3 Bank Locator: RAM slot #3 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01A7, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #4 Bank Locator: RAM slot #4 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01A8, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #5 Bank Locator: RAM slot #5 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01A9, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #6 Bank Locator: RAM slot #6 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01AA, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #7 Bank Locator: RAM slot #7 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01AB, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #8 Bank Locator: RAM slot #8 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01AC, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #9 Bank Locator: RAM slot #9 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01AD, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #10 Bank Locator: RAM slot #10 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01AE, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #11 Bank Locator: RAM slot #11 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01AF, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #12 Bank Locator: RAM slot #12 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01B0, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #13 Bank Locator: RAM slot #13 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01B1, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #14 Bank Locator: RAM slot #14 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01B2, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #15 Bank Locator: RAM slot #15 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01B3, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #16 Bank Locator: RAM slot #16 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01B4, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #17 Bank Locator: RAM slot #17 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01B5, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #18 Bank Locator: RAM slot #18 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01B6, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #19 Bank Locator: RAM slot #19 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01B7, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #20 Bank Locator: RAM slot #20 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01B8, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #21 Bank Locator: RAM slot #21 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01B9, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #22 Bank Locator: RAM slot #22 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01BA, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #23 Bank Locator: RAM slot #23 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01BB, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #24 Bank Locator: RAM slot #24 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01BC, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #25 Bank Locator: RAM slot #25 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01BD, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #26 Bank Locator: RAM slot #26 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01BE, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #27 Bank Locator: RAM slot #27 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01BF, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #28 Bank Locator: RAM slot #28 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01C0, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #29 Bank Locator: RAM slot #29 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01C1, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #30 Bank Locator: RAM slot #30 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01C2, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #31 Bank Locator: RAM slot #31 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01C3, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #32 Bank Locator: RAM slot #32 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01C4, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #33 Bank Locator: RAM slot #33 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01C5, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #34 Bank Locator: RAM slot #34 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01C6, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #35 Bank Locator: RAM slot #35 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01C7, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #36 Bank Locator: RAM slot #36 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01C8, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #37 Bank Locator: RAM slot #37 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01C9, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #38 Bank Locator: RAM slot #38 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01CA, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #39 Bank Locator: RAM slot #39 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01CB, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #40 Bank Locator: RAM slot #40 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01CC, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #41 Bank Locator: RAM slot #41 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01CD, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #42 Bank Locator: RAM slot #42 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01CE, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #43 Bank Locator: RAM slot #43 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01CF, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #44 Bank Locator: RAM slot #44 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01D0, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #45 Bank Locator: RAM slot #45 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01D1, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #46 Bank Locator: RAM slot #46 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01D2, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #47 Bank Locator: RAM slot #47 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01D3, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #48 Bank Locator: RAM slot #48 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01D4, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #49 Bank Locator: RAM slot #49 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01D5, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #50 Bank Locator: RAM slot #50 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01D6, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #51 Bank Locator: RAM slot #51 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01D7, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #52 Bank Locator: RAM slot #52 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01D8, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #53 Bank Locator: RAM slot #53 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01D9, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #54 Bank Locator: RAM slot #54 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01DA, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #55 Bank Locator: RAM slot #55 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01DB, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #56 Bank Locator: RAM slot #56 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01DC, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #57 Bank Locator: RAM slot #57 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01DD, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #58 Bank Locator: RAM slot #58 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01DE, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #59 Bank Locator: RAM slot #59 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01DF, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #60 Bank Locator: RAM slot #60 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01E0, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #61 Bank Locator: RAM slot #61 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01E1, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #62 Bank Locator: RAM slot #62 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01E2, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #63 Bank Locator: RAM slot #63 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01E3, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #0 Bank Locator: NVD #0 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01E4, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #1 Bank Locator: NVD #1 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01E5, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #2 Bank Locator: NVD #2 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01E6, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #3 Bank Locator: NVD #3 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01E7, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #4 Bank Locator: NVD #4 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01E8, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #5 Bank Locator: NVD #5 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01E9, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #6 Bank Locator: NVD #6 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01EA, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #7 Bank Locator: NVD #7 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01EB, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #8 Bank Locator: NVD #8 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01EC, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #9 Bank Locator: NVD #9 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01ED, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #10 Bank Locator: NVD #10 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01EE, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #11 Bank Locator: NVD #11 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01EF, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #12 Bank Locator: NVD #12 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01F0, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #13 Bank Locator: NVD #13 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01F1, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #14 Bank Locator: NVD #14 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01F2, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #15 Bank Locator: NVD #15 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01F3, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #16 Bank Locator: NVD #16 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01F4, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #17 Bank Locator: NVD #17 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01F5, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #18 Bank Locator: NVD #18 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01F6, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #19 Bank Locator: NVD #19 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01F7, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #20 Bank Locator: NVD #20 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01F8, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #21 Bank Locator: NVD #21 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01F9, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #22 Bank Locator: NVD #22 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01FA, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #23 Bank Locator: NVD #23 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01FB, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #24 Bank Locator: NVD #24 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01FC, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #25 Bank Locator: NVD #25 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01FD, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #26 Bank Locator: NVD #26 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01FE, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #27 Bank Locator: NVD #27 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01FF, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #28 Bank Locator: NVD #28 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0200, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #29 Bank Locator: NVD #29 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0201, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #30 Bank Locator: NVD #30 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0202, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #31 Bank Locator: NVD #31 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0203, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #32 Bank Locator: NVD #32 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0204, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #33 Bank Locator: NVD #33 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0205, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #34 Bank Locator: NVD #34 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0206, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #35 Bank Locator: NVD #35 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0207, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #36 Bank Locator: NVD #36 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0208, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #37 Bank Locator: NVD #37 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0209, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #38 Bank Locator: NVD #38 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x020A, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #39 Bank Locator: NVD #39 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x020B, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #40 Bank Locator: NVD #40 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x020C, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #41 Bank Locator: NVD #41 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x020D, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #42 Bank Locator: NVD #42 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x020E, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #43 Bank Locator: NVD #43 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x020F, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #44 Bank Locator: NVD #44 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0210, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #45 Bank Locator: NVD #45 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0211, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #46 Bank Locator: NVD #46 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0212, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #47 Bank Locator: NVD #47 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0213, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #48 Bank Locator: NVD #48 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0214, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #49 Bank Locator: NVD #49 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0215, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #50 Bank Locator: NVD #50 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0216, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #51 Bank Locator: NVD #51 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0217, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #52 Bank Locator: NVD #52 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0218, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #53 Bank Locator: NVD #53 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0219, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #54 Bank Locator: NVD #54 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x021A, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #55 Bank Locator: NVD #55 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x021B, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #56 Bank Locator: NVD #56 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x021C, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #57 Bank Locator: NVD #57 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x021D, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #58 Bank Locator: NVD #58 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x021E, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #59 Bank Locator: NVD #59 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x021F, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #60 Bank Locator: NVD #60 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0220, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #61 Bank Locator: NVD #61 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0221, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #62 Bank Locator: NVD #62 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0222, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #63 Bank Locator: NVD #63 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0223, DMI type 18, 23 bytes 32-bit Memory Error Information Type: OK Granularity: Unknown Operation: Unknown Vendor Syndrome: Unknown Memory Array Address: Unknown Device Address: Unknown Resolution: Unknown Handle 0x0224, DMI type 19, 31 bytes Memory Array Mapped Address Starting Address: 0x00000000000 Ending Address: 0x000FFFFFFFF Range Size: 4 GB Physical Array Handle: 0x0025 Partition Width: 64 Handle 0x0225, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0026 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0226, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0027 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0227, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0028 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0228, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0029 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0229, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x002A Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x022A, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x002B Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x022B, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x002C Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x022C, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x002D Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x022D, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x002E Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x022E, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x002F Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x022F, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0030 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0230, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0031 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0231, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0032 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0232, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0033 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0233, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0034 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0234, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0035 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0235, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0036 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0236, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0037 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0237, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0038 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0238, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0039 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0239, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x003A Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x023A, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x003B Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x023B, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x003C Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x023C, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x003D Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x023D, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x003E Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x023E, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x003F Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x023F, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0040 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0240, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0041 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0241, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0042 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0242, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0043 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0243, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0044 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0244, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0045 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0245, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0046 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0246, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0047 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0247, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0048 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0248, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0049 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0249, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x004A Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x024A, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x004B Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x024B, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x004C Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x024C, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x004D Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x024D, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x004E Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x024E, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x004F Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x024F, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0050 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0250, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0051 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0251, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0052 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0252, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0053 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0253, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0054 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0254, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0055 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0255, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0056 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0256, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0057 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0257, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0058 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0258, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0059 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0259, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x005A Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x025A, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x005B Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x025B, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x005C Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x025C, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x005D Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x025D, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x005E Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x025E, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x005F Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x025F, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0060 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0260, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0061 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0261, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0062 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0262, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0063 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0263, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0064 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0264, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0065 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0265, DMI type 23, 13 bytes System Reset Status: Enabled Watchdog Timer: Present Boot Option: Do Not Reboot Boot Option On Limit: Do Not Reboot Reset Count: Unknown Reset Limit: Unknown Timer Interval: Unknown Timeout: Unknown Handle 0x0266, DMI type 24, 5 bytes Hardware Security Power-On Password Status: Disabled Keyboard Password Status: Unknown Administrator Password Status: Enabled Front Panel Reset Status: Unknown Handle 0x0267, DMI type 30, 6 bytes Out-of-band Remote Access Manufacturer Name: Intel Inbound Connection: Enabled Outbound Connection: Disabled Handle 0x0268, DMI type 32, 20 bytes System Boot Information Status: No errors detected Handle 0x0269, DMI type 33, 31 bytes 64-bit Memory Error Information Type: OK Granularity: Unknown Operation: Unknown Vendor Syndrome: Unknown Memory Array Address: Unknown Device Address: Unknown Resolution: Unknown Handle 0x026A, DMI type 126, 4 bytes Inactive Handle 0x026B, DMI type 127, 4 bytes End Of Table jc-1.17.3/tests/fixtures/centos-7.7/du.json000066400000000000000000013114071415226333200203310ustar00rootroot00000000000000[{"size": 134164, "name": "/usr/bin"}, {"size": 43188, "name": "/usr/sbin"}, {"size": 0, "name": "/usr/lib/debug/usr/bin"}, {"size": 0, "name": "/usr/lib/debug/usr/sbin"}, {"size": 0, "name": "/usr/lib/debug/usr/lib"}, {"size": 0, "name": "/usr/lib/debug/usr/lib64"}, {"size": 0, "name": "/usr/lib/debug/usr"}, {"size": 0, "name": "/usr/lib/debug"}, {"size": 2852, "name": "/usr/lib/grub/i386-pc"}, {"size": 2852, "name": "/usr/lib/grub"}, {"size": 8, "name": "/usr/lib/kbd/keymaps/legacy/amiga"}, {"size": 16, "name": "/usr/lib/kbd/keymaps/legacy/atari"}, {"size": 52, "name": "/usr/lib/kbd/keymaps/legacy/i386/azerty"}, {"size": 4, "name": "/usr/lib/kbd/keymaps/legacy/i386/colemak"}, {"size": 56, "name": "/usr/lib/kbd/keymaps/legacy/i386/dvorak"}, {"size": 8, "name": "/usr/lib/kbd/keymaps/legacy/i386/fgGIod"}, {"size": 84, "name": "/usr/lib/kbd/keymaps/legacy/i386/include"}, {"size": 8, "name": "/usr/lib/kbd/keymaps/legacy/i386/olpc"}, {"size": 556, "name": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"size": 88, "name": "/usr/lib/kbd/keymaps/legacy/i386/qwertz"}, {"size": 856, "name": "/usr/lib/kbd/keymaps/legacy/i386"}, {"size": 44, "name": "/usr/lib/kbd/keymaps/legacy/include"}, {"size": 72, "name": "/usr/lib/kbd/keymaps/legacy/mac/all"}, {"size": 28, "name": "/usr/lib/kbd/keymaps/legacy/mac/include"}, {"size": 100, "name": "/usr/lib/kbd/keymaps/legacy/mac"}, {"size": 76, "name": "/usr/lib/kbd/keymaps/legacy/sun"}, {"size": 1100, "name": "/usr/lib/kbd/keymaps/legacy"}, {"size": 1564, "name": "/usr/lib/kbd/keymaps/xkb"}, {"size": 2664, "name": "/usr/lib/kbd/keymaps"}, {"size": 160, "name": "/usr/lib/kbd/consolefonts/partialfonts"}, {"size": 1028, "name": "/usr/lib/kbd/consolefonts"}, {"size": 504, "name": "/usr/lib/kbd/consoletrans"}, {"size": 376, "name": "/usr/lib/kbd/unimaps"}, {"size": 4572, "name": "/usr/lib/kbd"}, {"size": 16, "name": "/usr/lib/rpm/macros.d"}, {"size": 4, "name": "/usr/lib/rpm/platform/aarch64-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/alpha-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/alphaev5-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/alphaev56-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/alphaev6-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/alphaev67-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/alphapca56-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/amd64-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/armv3l-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/armv4b-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/armv4l-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/armv5tejl-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/armv5tel-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/armv6l-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/armv7hl-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/armv7hnl-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/armv7l-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/athlon-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/geode-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/i386-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/i486-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/i586-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/i686-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/ia32e-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/ia64-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/m68k-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/noarch-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/pentium3-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/pentium4-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/ppc-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/ppc32dy4-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/ppc64-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/ppc64iseries-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/ppc64le-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/ppc64p7-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/ppc64pseries-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/ppc8260-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/ppc8560-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/ppciseries-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/ppcpseries-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/s390-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/s390x-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/sh-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/sh3-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/sh4-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/sh4a-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/sparc-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/sparc64-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/sparc64v-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/sparcv8-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/sparcv9-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/sparcv9v-linux"}, {"size": 4, "name": "/usr/lib/rpm/platform/x86_64-linux"}, {"size": 216, "name": "/usr/lib/rpm/platform"}, {"size": 328, "name": "/usr/lib/rpm"}, {"size": 52, "name": "/usr/lib/firewalld/helpers"}, {"size": 184, "name": "/usr/lib/firewalld/icmptypes"}, {"size": 4, "name": "/usr/lib/firewalld/ipsets"}, {"size": 624, "name": "/usr/lib/firewalld/services"}, {"size": 36, "name": "/usr/lib/firewalld/zones"}, {"size": 900, "name": "/usr/lib/firewalld"}, {"size": 16, "name": "/usr/lib/systemd/system-preset"}, {"size": 0, "name": "/usr/lib/systemd/system/initrd.target.wants"}, {"size": 0, "name": "/usr/lib/systemd/system/shutdown.target.wants"}, {"size": 0, "name": "/usr/lib/systemd/system/multi-user.target.wants"}, {"size": 0, "name": "/usr/lib/systemd/system/basic.target.wants"}, {"size": 0, "name": "/usr/lib/systemd/system/poweroff.target.wants"}, {"size": 0, "name": "/usr/lib/systemd/system/reboot.target.wants"}, {"size": 0, "name": "/usr/lib/systemd/system/dbus.target.wants"}, {"size": 0, "name": "/usr/lib/systemd/system/default.target.wants"}, {"size": 0, "name": "/usr/lib/systemd/system/rescue.target.wants"}, {"size": 0, "name": "/usr/lib/systemd/system/runlevel5.target.wants"}, {"size": 0, "name": "/usr/lib/systemd/system/runlevel1.target.wants"}, {"size": 0, "name": "/usr/lib/systemd/system/runlevel2.target.wants"}, {"size": 0, "name": "/usr/lib/systemd/system/graphical.target.wants"}, {"size": 0, "name": "/usr/lib/systemd/system/runlevel3.target.wants"}, {"size": 0, "name": "/usr/lib/systemd/system/runlevel4.target.wants"}, {"size": 0, "name": "/usr/lib/systemd/system/local-fs.target.wants"}, {"size": 0, "name": "/usr/lib/systemd/system/sockets.target.wants"}, {"size": 4, "name": "/usr/lib/systemd/system/sysinit.target.wants"}, {"size": 0, "name": "/usr/lib/systemd/system/syslog.target.wants"}, {"size": 0, "name": "/usr/lib/systemd/system/timers.target.wants"}, {"size": 0, "name": "/usr/lib/systemd/system/halt.target.wants"}, {"size": 0, "name": "/usr/lib/systemd/system/initrd-switch-root.target.wants"}, {"size": 0, "name": "/usr/lib/systemd/system/kexec.target.wants"}, {"size": 876, "name": "/usr/lib/systemd/system"}, {"size": 76, "name": "/usr/lib/systemd/catalog"}, {"size": 4, "name": "/usr/lib/systemd/ntp-units.d"}, {"size": 644, "name": "/usr/lib/systemd/system-generators"}, {"size": 0, "name": "/usr/lib/systemd/system-shutdown"}, {"size": 0, "name": "/usr/lib/systemd/system-sleep"}, {"size": 16, "name": "/usr/lib/systemd/user"}, {"size": 0, "name": "/usr/lib/systemd/user-generators"}, {"size": 0, "name": "/usr/lib/systemd/user-preset"}, {"size": 9540, "name": "/usr/lib/systemd"}, {"size": 103560, "name": "/usr/lib/locale"}, {"size": 24, "name": "/usr/lib/dracut/dracut.conf.d"}, {"size": 4, "name": "/usr/lib/dracut/modules.d/05nss-softokn"}, {"size": 4, "name": "/usr/lib/dracut/modules.d/00bash"}, {"size": 4, "name": "/usr/lib/dracut/modules.d/00systemd-bootchart"}, {"size": 8, "name": "/usr/lib/dracut/modules.d/03modsign"}, {"size": 4, "name": "/usr/lib/dracut/modules.d/03rescue"}, {"size": 12, "name": "/usr/lib/dracut/modules.d/04watchdog"}, {"size": 4, "name": "/usr/lib/dracut/modules.d/05busybox"}, {"size": 28, "name": "/usr/lib/dracut/modules.d/10i18n"}, {"size": 16, "name": "/usr/lib/dracut/modules.d/30convertfs"}, {"size": 8, "name": "/usr/lib/dracut/modules.d/45url-lib"}, {"size": 4, "name": "/usr/lib/dracut/modules.d/50drm"}, {"size": 20, "name": "/usr/lib/dracut/modules.d/50plymouth"}, {"size": 20, "name": "/usr/lib/dracut/modules.d/80cms"}, {"size": 4, "name": "/usr/lib/dracut/modules.d/90bcache"}, {"size": 20, "name": "/usr/lib/dracut/modules.d/90btrfs"}, {"size": 40, "name": "/usr/lib/dracut/modules.d/90crypt"}, {"size": 20, "name": "/usr/lib/dracut/modules.d/90dm"}, {"size": 16, "name": "/usr/lib/dracut/modules.d/90dmraid"}, {"size": 44, "name": "/usr/lib/dracut/modules.d/90dmsquash-live"}, {"size": 4, "name": "/usr/lib/dracut/modules.d/90dmsquash-live-ntfs"}, {"size": 12, "name": "/usr/lib/dracut/modules.d/90kernel-modules"}, {"size": 20, "name": "/usr/lib/dracut/modules.d/90lvm"}, {"size": 56, "name": "/usr/lib/dracut/modules.d/90mdraid"}, {"size": 16, "name": "/usr/lib/dracut/modules.d/90multipath"}, {"size": 4, "name": "/usr/lib/dracut/modules.d/90qemu"}, {"size": 8, "name": "/usr/lib/dracut/modules.d/91crypt-gpg"}, {"size": 8, "name": "/usr/lib/dracut/modules.d/91crypt-loop"}, {"size": 8, "name": "/usr/lib/dracut/modules.d/95dasd"}, {"size": 8, "name": "/usr/lib/dracut/modules.d/95dasd_mod"}, {"size": 4, "name": "/usr/lib/dracut/modules.d/95debug"}, {"size": 8, "name": "/usr/lib/dracut/modules.d/95fstab-sys"}, {"size": 12, "name": "/usr/lib/dracut/modules.d/95resume"}, {"size": 24, "name": "/usr/lib/dracut/modules.d/95rootfs-block"}, {"size": 4, "name": "/usr/lib/dracut/modules.d/95terminfo"}, {"size": 16, "name": "/usr/lib/dracut/modules.d/95udev-rules"}, {"size": 16, "name": "/usr/lib/dracut/modules.d/95virtfs"}, {"size": 8, "name": "/usr/lib/dracut/modules.d/95zfcp"}, {"size": 8, "name": "/usr/lib/dracut/modules.d/97biosdevname"}, {"size": 12, "name": "/usr/lib/dracut/modules.d/98ecryptfs"}, {"size": 8, "name": "/usr/lib/dracut/modules.d/98pollcdrom"}, {"size": 8, "name": "/usr/lib/dracut/modules.d/98selinux"}, {"size": 32, "name": "/usr/lib/dracut/modules.d/98syslog"}, {"size": 176, "name": "/usr/lib/dracut/modules.d/98systemd"}, {"size": 8, "name": "/usr/lib/dracut/modules.d/98usrmount"}, {"size": 76, "name": "/usr/lib/dracut/modules.d/99base"}, {"size": 12, "name": "/usr/lib/dracut/modules.d/99fs-lib"}, {"size": 8, "name": "/usr/lib/dracut/modules.d/99img-lib"}, {"size": 8, "name": "/usr/lib/dracut/modules.d/99shutdown"}, {"size": 124, "name": "/usr/lib/dracut/modules.d/40network"}, {"size": 16, "name": "/usr/lib/dracut/modules.d/45ifcfg"}, {"size": 16, "name": "/usr/lib/dracut/modules.d/90livenet"}, {"size": 4, "name": "/usr/lib/dracut/modules.d/90qemu-net"}, {"size": 16, "name": "/usr/lib/dracut/modules.d/95cifs"}, {"size": 28, "name": "/usr/lib/dracut/modules.d/95fcoe"}, {"size": 8, "name": "/usr/lib/dracut/modules.d/95fcoe-uefi"}, {"size": 36, "name": "/usr/lib/dracut/modules.d/95iscsi"}, {"size": 12, "name": "/usr/lib/dracut/modules.d/95nbd"}, {"size": 28, "name": "/usr/lib/dracut/modules.d/95nfs"}, {"size": 4, "name": "/usr/lib/dracut/modules.d/95ssh-client"}, {"size": 8, "name": "/usr/lib/dracut/modules.d/95znet"}, {"size": 12, "name": "/usr/lib/dracut/modules.d/99uefi-lib"}, {"size": 60, "name": "/usr/lib/dracut/modules.d/99kdumpbase"}, {"size": 8, "name": "/usr/lib/dracut/modules.d/99microcode_ctl-fw_dir_override"}, {"size": 1256, "name": "/usr/lib/dracut/modules.d"}, {"size": 1416, "name": "/usr/lib/dracut"}, {"size": 0, "name": "/usr/lib/games"}, {"size": 0, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/extra"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/arch/x86/crypto/sha-mb"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/arch/x86/crypto/sha256-mb"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/arch/x86/crypto/sha512-mb"}, {"size": 232, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/arch/x86/crypto"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/arch/x86/kernel/cpu/mcheck"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/arch/x86/kernel/cpu"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/arch/x86/kernel"}, {"size": 280, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/arch/x86/kvm"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/arch/x86/oprofile"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/arch/x86/platform/intel"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/arch/x86/platform"}, {"size": 544, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/arch/x86"}, {"size": 544, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/arch"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/crypto/async_tx"}, {"size": 428, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/crypto"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/acpi/apei"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/acpi/nfit"}, {"size": 88, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/acpi"}, {"size": 444, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/ata"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/auxdisplay"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/base/regmap"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/base"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/bcma"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/block/aoe"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/block/mtip32xx"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/block/zram"}, {"size": 232, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/block"}, {"size": 132, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/bluetooth"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/cdrom"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/char/hw_random"}, {"size": 96, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/char/ipmi"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/char/tpm/st33zp24"}, {"size": 60, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/char/tpm"}, {"size": 232, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/char"}, {"size": 56, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/cpufreq"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/crypto/ccp"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/crypto/chelsio"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/crypto/qat/qat_c3xxx"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/crypto/qat/qat_c3xxxvf"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/crypto/qat/qat_c62x"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/crypto/qat/qat_c62xvf"}, {"size": 56, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/crypto/qat/qat_common"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/crypto/qat/qat_dh895xcc"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/crypto/qat/qat_dh895xccvf"}, {"size": 104, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/crypto/qat"}, {"size": 168, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/crypto"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/dax"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/dca"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/dma/dw"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/dma/ioat"}, {"size": 68, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/dma"}, {"size": 144, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/edac"}, {"size": 80, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/firewire"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/firmware"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpio"}, {"size": 744, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu/drm/amd/amdgpu"}, {"size": 68, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu/drm/amd/amdkfd"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu/drm/amd/lib"}, {"size": 816, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu/drm/amd"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu/drm/ast"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu/drm/bochs"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu/drm/cirrus"}, {"size": 76, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu/drm/gma500"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu/drm/i2c"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu/drm/i915/gvt"}, {"size": 636, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu/drm/i915"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu/drm/mgag200"}, {"size": 544, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu/drm/nouveau"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu/drm/qxl"}, {"size": 480, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu/drm/radeon"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu/drm/scheduler"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu/drm/ttm"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu/drm/udl"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu/drm/virtio"}, {"size": 100, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu/drm/vmwgfx"}, {"size": 3084, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu/drm"}, {"size": 3084, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/hid/i2c-hid"}, {"size": 372, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/hid"}, {"size": 56, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/hv"}, {"size": 56, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/hwmon/pmbus"}, {"size": 936, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/hwmon"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/i2c/algos"}, {"size": 144, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/i2c/busses"}, {"size": 176, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/i2c"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/idle"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/iio/accel"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/iio/buffer"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/iio/common/hid-sensors"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/iio/common"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/iio/gyro"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/iio/light"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/iio/magnetometer"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/iio/orientation"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/iio/pressure"}, {"size": 56, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/iio"}, {"size": 240, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/core"}, {"size": 52, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/hw/bnxt_re"}, {"size": 52, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/hw/cxgb3"}, {"size": 80, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/hw/cxgb4"}, {"size": 244, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/hw/hfi1"}, {"size": 84, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/hw/i40iw"}, {"size": 116, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/hw/ipath"}, {"size": 88, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/hw/mlx4"}, {"size": 92, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/hw/mlx5"}, {"size": 64, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/hw/mthca"}, {"size": 76, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/hw/nes"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/hw/ocrdma"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/hw/qedr"}, {"size": 152, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/hw/qib"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/hw/usnic"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/hw/vmw_pvrdma"}, {"size": 1236, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/hw"}, {"size": 36, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/sw/rdmavt"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/sw/rxe"}, {"size": 80, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/sw"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/ulp/ipoib"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/ulp/iser"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/ulp/isert"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/ulp/opa_vnic"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/ulp/srp"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/ulp/srpt"}, {"size": 164, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/ulp"}, {"size": 1720, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband"}, {"size": 80, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/input/misc"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/input/mouse"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/input/rmi4"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/input/serio"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/input/tablet"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/input/touchscreen"}, {"size": 268, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/input"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/iommu"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/isdn/capi"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/isdn/divert"}, {"size": 72, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/isdn/gigaset"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/isdn/hardware/avm"}, {"size": 160, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/isdn/hardware/mISDN"}, {"size": 208, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/isdn/hardware"}, {"size": 204, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/isdn/hisax"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/isdn/hysdn"}, {"size": 72, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/isdn/i4l"}, {"size": 88, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/isdn/mISDN"}, {"size": 720, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/isdn"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/leds/trigger"}, {"size": 96, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/leds"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/md/persistent-data"}, {"size": 500, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/md"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/common/b2c2"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/common/saa7146"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/common/siano"}, {"size": 108, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/common"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/dvb-core"}, {"size": 808, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/dvb-frontends"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/firewire"}, {"size": 36, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/i2c/cx25840"}, {"size": 168, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/i2c"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/mmc/siano"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/mmc"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/pci/b2c2"}, {"size": 104, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/pci/bt8xx"}, {"size": 64, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/pci/cx18"}, {"size": 72, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/pci/cx23885"}, {"size": 92, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/pci/cx88"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/pci/ddbridge"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/pci/dm1105"}, {"size": 80, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/pci/ivtv"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/pci/mantis"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/pci/ngene"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/pci/pluto2"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/pci/pt1"}, {"size": 96, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/pci/saa7134"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/pci/saa7164"}, {"size": 108, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/pci/ttpci"}, {"size": 768, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/pci"}, {"size": 412, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/rc/keymaps"}, {"size": 608, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/rc"}, {"size": 264, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/tuners"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/au0828"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/b2c2"}, {"size": 76, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/cx231xx"}, {"size": 228, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/dvb-usb"}, {"size": 164, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/dvb-usb-v2"}, {"size": 68, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/em28xx"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/gspca/gl860"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/gspca/m5602"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/gspca/stv06xx"}, {"size": 420, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/gspca"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/hdpvr"}, {"size": 60, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/pvrusb2"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/pwc"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/s2255"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/siano"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/stk1160"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/stkwebcam"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/tlg2300"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/tm6000"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/ttusb-budget"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/ttusb-dec"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/usbvision"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/uvc"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/zr364xx"}, {"size": 1324, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb"}, {"size": 124, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/v4l2-core"}, {"size": 4240, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/memstick/core"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/memstick/host"}, {"size": 60, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/memstick"}, {"size": 124, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/message/fusion"}, {"size": 124, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/message"}, {"size": 64, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/mfd"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/misc/altera-stapl"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/misc/cb710"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/misc/eeprom"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/misc/lis3lv02d"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/misc/mei"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/misc/sgi-gru"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/misc/sgi-xp"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/misc/vmw_vmci"}, {"size": 304, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/misc"}, {"size": 84, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/mmc/core"}, {"size": 132, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/mmc/host"}, {"size": 216, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/mmc"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/mtd/chips"}, {"size": 60, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/mtd/ubi"}, {"size": 104, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/mtd"}, {"size": 64, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/bonding"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/can/c_can"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/can/cc770"}, {"size": 36, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/can/sja1000"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/can/softing"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/can/usb/peak_usb"}, {"size": 52, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/can/usb"}, {"size": 152, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/can"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/amazon/ena"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/amazon"}, {"size": 68, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/amd/xgbe"}, {"size": 100, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/amd"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/aquantia/atlantic"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/aquantia"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/atheros/alx"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/atheros/atl1c"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/atheros/atl1e"}, {"size": 36, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/atheros/atlx"}, {"size": 100, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/atheros"}, {"size": 268, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/broadcom/bnx2x"}, {"size": 80, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/broadcom/bnxt"}, {"size": 520, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/broadcom"}, {"size": 60, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/brocade/bna"}, {"size": 60, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/brocade"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/cadence"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/calxeda"}, {"size": 152, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/cavium/liquidio"}, {"size": 152, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/cavium"}, {"size": 68, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/chelsio/cxgb3"}, {"size": 144, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/chelsio/cxgb4"}, {"size": 36, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/chelsio/cxgb4vf"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/chelsio/libcxgb"}, {"size": 256, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/chelsio"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/cisco/enic"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/cisco"}, {"size": 124, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/dec/tulip"}, {"size": 124, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/dec"}, {"size": 64, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/emulex/benet"}, {"size": 64, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/emulex"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/icplus"}, {"size": 60, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/intel/e1000"}, {"size": 96, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/intel/e1000e"}, {"size": 52, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/intel/fm10k"}, {"size": 148, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/intel/i40e"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/intel/i40evf"}, {"size": 92, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/intel/igb"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/intel/igbvf"}, {"size": 132, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/intel/ixgbe"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/intel/ixgbevf"}, {"size": 680, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/intel"}, {"size": 56, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/marvell"}, {"size": 184, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/mellanox/mlx4"}, {"size": 200, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/mellanox/mlx5/core"}, {"size": 200, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/mellanox/mlx5"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/mellanox/mlxfw"}, {"size": 244, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/mellanox/mlxsw"}, {"size": 636, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/mellanox"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/myricom/myri10ge"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/myricom"}, {"size": 80, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/netronome/nfp"}, {"size": 80, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/netronome"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/oki-semi/pch_gbe"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/oki-semi"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/qlogic/netxen"}, {"size": 216, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/qlogic/qed"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/qlogic/qede"}, {"size": 120, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/qlogic/qlcnic"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/qlogic/qlge"}, {"size": 492, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/qlogic"}, {"size": 68, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/realtek"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/rocker"}, {"size": 76, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/sfc/falcon"}, {"size": 208, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/sfc"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/smsc"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/ti"}, {"size": 3920, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/fjes"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/hyperv"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ieee802154"}, {"size": 88, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/phy"}, {"size": 72, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ppp"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/slip"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/team"}, {"size": 316, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/usb"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/vmxnet3"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wan"}, {"size": 136, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/ath/ath10k"}, {"size": 228, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/ath/ath9k"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/ath/carl9170"}, {"size": 96, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/ath/wil6210"}, {"size": 516, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/ath"}, {"size": 116, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/broadcom/brcm80211/brcmfmac"}, {"size": 160, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/broadcom/brcm80211/brcmsmac"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/broadcom/brcm80211/brcmutil"}, {"size": 284, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/broadcom/brcm80211"}, {"size": 284, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/broadcom"}, {"size": 168, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/intel/iwlegacy"}, {"size": 80, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/intel/iwlwifi/dvm"}, {"size": 144, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/intel/iwlwifi/mvm"}, {"size": 312, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/intel/iwlwifi"}, {"size": 480, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/intel"}, {"size": 168, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/marvell/mwifiex"}, {"size": 196, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/marvell"}, {"size": 140, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/ralink/rt2x00"}, {"size": 140, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/ralink"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/realtek/rtl818x/rtl8187"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/realtek/rtl818x"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/btcoexist"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8188ee"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8192c"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8192ce"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8192cu"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8192de"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8192ee"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8192se"}, {"size": 36, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8723ae"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8723be"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8723com"}, {"size": 64, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8821ae"}, {"size": 480, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi"}, {"size": 500, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/realtek"}, {"size": 2140, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless"}, {"size": 7144, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/ntb/hw/amd"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/ntb/hw"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/ntb/test"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/ntb"}, {"size": 92, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/nvdimm"}, {"size": 92, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/nvme/host"}, {"size": 64, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/nvme/target"}, {"size": 156, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/nvme"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/parport"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/pci/hotplug"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/pci/pcie/aer"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/pci/pcie"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/pci"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/pcmcia"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/pinctrl/intel"}, {"size": 52, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/pinctrl"}, {"size": 380, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/platform/x86"}, {"size": 380, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/platform"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/power"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/powercap"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/pps/clients"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/pps"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/ptp"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/pwm"}, {"size": 172, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/rtc"}, {"size": 56, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/aacraid"}, {"size": 60, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/aic7xxx"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/arcmsr"}, {"size": 56, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/be2iscsi"}, {"size": 176, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/bfa"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/bnx2fc"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/bnx2i"}, {"size": 60, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/csiostor"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/cxgbi/cxgb3i"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/cxgbi/cxgb4i"}, {"size": 60, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/cxgbi"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/fcoe"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/fnic"}, {"size": 56, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/isci"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/libfc"}, {"size": 36, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/libsas"}, {"size": 304, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/lpfc"}, {"size": 64, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/megaraid"}, {"size": 184, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/mpt3sas"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/mvsas"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/osd"}, {"size": 56, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/pm8001"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/qedf"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/qedi"}, {"size": 304, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/qla2xxx"}, {"size": 108, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/qla4xxx"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/smartpqi"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/ufs"}, {"size": 2524, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/ssb"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/staging/fwserial"}, {"size": 84, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/staging/rtl8192e/rtl8192e"}, {"size": 168, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/staging/rtl8192e"}, {"size": 76, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/staging/rtl8712"}, {"size": 264, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/staging"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/target/iscsi/cxgbit"}, {"size": 128, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/target/iscsi"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/target/loopback"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/target/tcm_fc"}, {"size": 320, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/target"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/thermal/int340x_thermal"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/thermal"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/tty/serial/jsm"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/tty/serial"}, {"size": 172, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/tty"}, {"size": 36, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/uio"}, {"size": 64, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/usb/atm"}, {"size": 52, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/usb/class"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/usb/core"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/usb/host"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/usb/image"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/usb/misc/sisusbvga"}, {"size": 136, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/usb/misc"}, {"size": 416, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/usb/serial"}, {"size": 136, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/usb/storage"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/usb/usbip"}, {"size": 52, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/usb/wusbcore"}, {"size": 896, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/usb"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/uwb/i1480/dfu"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/uwb/i1480"}, {"size": 76, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/uwb"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/vfio/mdev"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/vfio/pci"}, {"size": 64, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/vfio"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/vhost"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/video/backlight"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/video"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/virtio"}, {"size": 200, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/watchdog"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/xen/xenfs"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/xen"}, {"size": 27840, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers"}, {"size": 424, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/btrfs"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/cachefiles"}, {"size": 140, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/ceph"}, {"size": 228, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/cifs"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/cramfs"}, {"size": 72, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/dlm"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/exofs"}, {"size": 212, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/ext4"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/fat"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/fscache"}, {"size": 52, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/fuse"}, {"size": 132, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/gfs2"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/isofs"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/jbd2"}, {"size": 36, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/lockd"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/nfs/blocklayout"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/nfs/filelayout"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/nfs/flexfilelayout"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/nfs/objlayout"}, {"size": 336, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/nfs"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/nfs_common"}, {"size": 140, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/nfsd"}, {"size": 400, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/nls"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/overlayfs"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/pstore"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/squashfs"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/udf"}, {"size": 328, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/xfs"}, {"size": 2820, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/kernel/trace"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/kernel"}, {"size": 68, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/lib/raid6"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/lib/reed_solomon"}, {"size": 116, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/lib"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/mm"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/6lowpan"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/802"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/8021q"}, {"size": 72, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/atm"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/bluetooth/bnep"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/bluetooth/cmtp"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/bluetooth/hidp"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/bluetooth/rfcomm"}, {"size": 272, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/bluetooth"}, {"size": 128, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/bridge/netfilter"}, {"size": 204, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/bridge"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/can"}, {"size": 120, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/ceph"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/core"}, {"size": 76, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/dccp"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/dns_resolver"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/ieee802154/6lowpan"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/ieee802154"}, {"size": 196, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/ipv4/netfilter"}, {"size": 352, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/ipv4"}, {"size": 160, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/ipv6/netfilter"}, {"size": 268, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/ipv6"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/key"}, {"size": 64, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/l2tp"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/llc"}, {"size": 248, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/mac80211"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/mac802154"}, {"size": 240, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/netfilter/ipset"}, {"size": 116, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/netfilter/ipvs"}, {"size": 1036, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/netfilter"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/netlink"}, {"size": 64, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/openvswitch"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/packet"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/psample"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/rfkill"}, {"size": 400, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/sched"}, {"size": 128, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/sctp"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/sunrpc/auth_gss"}, {"size": 56, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/sunrpc/xprtrdma"}, {"size": 232, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/sunrpc"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/unix"}, {"size": 56, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/vmw_vsock"}, {"size": 188, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/wireless"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/xfrm"}, {"size": 4096, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/core/seq/oss"}, {"size": 84, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/core/seq"}, {"size": 224, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/core"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/drivers/mpu401"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/drivers/opl3"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/drivers/pcsp"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/drivers/vx"}, {"size": 92, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/drivers"}, {"size": 36, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/firewire"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/hda/ext"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/hda"}, {"size": 36, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/i2c/other"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/i2c"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/pci/ac97"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/pci/ali5451"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/pci/asihpi"}, {"size": 64, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/pci/au88x0"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/pci/ca0106"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/pci/cs46xx"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/pci/ctxfi"}, {"size": 260, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/pci/echoaudio"}, {"size": 80, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/pci/emu10k1"}, {"size": 256, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/pci/hda"}, {"size": 84, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/pci/ice1712"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/pci/korg1212"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/pci/lola"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/pci/lx6464es"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/pci/mixart"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/pci/oxygen"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/pci/pcxhr"}, {"size": 68, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/pci/rme9652"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/pci/trident"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/pci/vx222"}, {"size": 1376, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/pci"}, {"size": 304, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/soc/codecs"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/soc/intel/atom/sst"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/soc/intel/atom"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/soc/intel/baytrail"}, {"size": 124, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/soc/intel/boards"}, {"size": 36, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/soc/intel/common"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/soc/intel/haswell"}, {"size": 68, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/soc/intel/skylake"}, {"size": 320, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/soc/intel"}, {"size": 716, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/soc"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/synth/emux"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/synth"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/usb/6fire"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/usb/bcd2000"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/usb/caiaq"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/usb/hiface"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/usb/line6"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/usb/misc"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/usb/usx2y"}, {"size": 212, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/usb"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/x86"}, {"size": 2792, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/virt/lib"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel/virt"}, {"size": 38652, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/kernel"}, {"size": 0, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/updates"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/vdso"}, {"size": 0, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64/weak-updates"}, {"size": 41916, "name": "/usr/lib/modules/3.10.0-957.el7.x86_64"}, {"size": 0, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/extra"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/arch/x86/crypto/sha-mb"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/arch/x86/crypto/sha256-mb"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/arch/x86/crypto/sha512-mb"}, {"size": 232, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/arch/x86/crypto"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/arch/x86/kernel/cpu/mcheck"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/arch/x86/kernel/cpu"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/arch/x86/kernel"}, {"size": 288, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/arch/x86/kvm"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/arch/x86/oprofile"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/arch/x86/platform/intel"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/arch/x86/platform"}, {"size": 552, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/arch/x86"}, {"size": 552, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/arch"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/crypto/async_tx"}, {"size": 436, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/crypto"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/acpi/apei"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/acpi/nfit"}, {"size": 88, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/acpi"}, {"size": 444, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/ata"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/auxdisplay"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/base/regmap"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/base"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/bcma"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/block/aoe"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/block/mtip32xx"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/block/zram"}, {"size": 236, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/block"}, {"size": 132, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/bluetooth"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/cdrom"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/char/hw_random"}, {"size": 96, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/char/ipmi"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/char/tpm/st33zp24"}, {"size": 60, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/char/tpm"}, {"size": 232, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/char"}, {"size": 56, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/cpufreq"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/crypto/ccp"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/crypto/chelsio"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/crypto/qat/qat_c3xxx"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/crypto/qat/qat_c3xxxvf"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/crypto/qat/qat_c62x"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/crypto/qat/qat_c62xvf"}, {"size": 56, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/crypto/qat/qat_common"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/crypto/qat/qat_dh895xcc"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/crypto/qat/qat_dh895xccvf"}, {"size": 104, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/crypto/qat"}, {"size": 168, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/crypto"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/dax"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/dca"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/dma/dw"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/dma/ioat"}, {"size": 68, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/dma"}, {"size": 144, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/edac"}, {"size": 80, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/firewire"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/firmware"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpio"}, {"size": 748, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu/drm/amd/amdgpu"}, {"size": 68, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu/drm/amd/amdkfd"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu/drm/amd/lib"}, {"size": 820, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu/drm/amd"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu/drm/ast"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu/drm/bochs"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu/drm/cirrus"}, {"size": 76, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu/drm/gma500"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu/drm/i2c"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu/drm/i915/gvt"}, {"size": 636, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu/drm/i915"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu/drm/mgag200"}, {"size": 544, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu/drm/nouveau"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu/drm/qxl"}, {"size": 480, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu/drm/radeon"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu/drm/scheduler"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu/drm/ttm"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu/drm/udl"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu/drm/virtio"}, {"size": 100, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu/drm/vmwgfx"}, {"size": 3088, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu/drm"}, {"size": 3088, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/hid/i2c-hid"}, {"size": 372, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/hid"}, {"size": 56, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/hv"}, {"size": 56, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/hwmon/pmbus"}, {"size": 940, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/hwmon"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/i2c/algos"}, {"size": 144, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/i2c/busses"}, {"size": 176, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/i2c"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/idle"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/iio/accel"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/iio/buffer"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/iio/common/hid-sensors"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/iio/common"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/iio/gyro"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/iio/light"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/iio/magnetometer"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/iio/orientation"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/iio/pressure"}, {"size": 56, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/iio"}, {"size": 240, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/core"}, {"size": 52, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/hw/bnxt_re"}, {"size": 52, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/hw/cxgb3"}, {"size": 80, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/hw/cxgb4"}, {"size": 244, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/hw/hfi1"}, {"size": 84, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/hw/i40iw"}, {"size": 116, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/hw/ipath"}, {"size": 88, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/hw/mlx4"}, {"size": 92, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/hw/mlx5"}, {"size": 64, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/hw/mthca"}, {"size": 76, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/hw/nes"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/hw/ocrdma"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/hw/qedr"}, {"size": 152, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/hw/qib"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/hw/usnic"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/hw/vmw_pvrdma"}, {"size": 1236, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/hw"}, {"size": 36, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/sw/rdmavt"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/sw/rxe"}, {"size": 80, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/sw"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/ulp/ipoib"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/ulp/iser"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/ulp/isert"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/ulp/opa_vnic"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/ulp/srp"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/ulp/srpt"}, {"size": 164, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/ulp"}, {"size": 1720, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband"}, {"size": 80, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/input/misc"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/input/mouse"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/input/rmi4"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/input/serio"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/input/tablet"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/input/touchscreen"}, {"size": 268, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/input"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/iommu"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/isdn/capi"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/isdn/divert"}, {"size": 72, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/isdn/gigaset"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/isdn/hardware/avm"}, {"size": 160, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/isdn/hardware/mISDN"}, {"size": 208, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/isdn/hardware"}, {"size": 200, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/isdn/hisax"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/isdn/hysdn"}, {"size": 72, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/isdn/i4l"}, {"size": 88, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/isdn/mISDN"}, {"size": 720, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/isdn"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/leds/trigger"}, {"size": 96, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/leds"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/md/persistent-data"}, {"size": 504, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/md"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/common/b2c2"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/common/saa7146"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/common/siano"}, {"size": 108, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/common"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/dvb-core"}, {"size": 808, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/dvb-frontends"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/firewire"}, {"size": 36, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/i2c/cx25840"}, {"size": 168, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/i2c"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/mmc/siano"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/mmc"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/pci/b2c2"}, {"size": 104, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/pci/bt8xx"}, {"size": 64, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/pci/cx18"}, {"size": 72, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/pci/cx23885"}, {"size": 92, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/pci/cx88"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/pci/ddbridge"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/pci/dm1105"}, {"size": 80, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/pci/ivtv"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/pci/mantis"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/pci/ngene"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/pci/pluto2"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/pci/pt1"}, {"size": 96, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/pci/saa7134"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/pci/saa7164"}, {"size": 108, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/pci/ttpci"}, {"size": 768, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/pci"}, {"size": 412, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/rc/keymaps"}, {"size": 608, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/rc"}, {"size": 264, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/tuners"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/au0828"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/b2c2"}, {"size": 76, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/cx231xx"}, {"size": 228, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/dvb-usb"}, {"size": 164, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/dvb-usb-v2"}, {"size": 68, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/em28xx"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/gspca/gl860"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/gspca/m5602"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/gspca/stv06xx"}, {"size": 420, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/gspca"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/hdpvr"}, {"size": 60, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/pvrusb2"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/pwc"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/s2255"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/siano"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/stk1160"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/stkwebcam"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/tlg2300"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/tm6000"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/ttusb-budget"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/ttusb-dec"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/usbvision"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/uvc"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/zr364xx"}, {"size": 1328, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb"}, {"size": 124, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/v4l2-core"}, {"size": 4244, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/memstick/core"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/memstick/host"}, {"size": 60, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/memstick"}, {"size": 124, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/message/fusion"}, {"size": 124, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/message"}, {"size": 64, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/mfd"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/misc/altera-stapl"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/misc/cb710"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/misc/eeprom"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/misc/lis3lv02d"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/misc/mei"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/misc/sgi-gru"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/misc/sgi-xp"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/misc/vmw_vmci"}, {"size": 304, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/misc"}, {"size": 84, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/mmc/core"}, {"size": 132, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/mmc/host"}, {"size": 216, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/mmc"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/mtd/chips"}, {"size": 60, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/mtd/ubi"}, {"size": 104, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/mtd"}, {"size": 64, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/bonding"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/can/c_can"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/can/cc770"}, {"size": 36, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/can/sja1000"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/can/softing"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/can/usb/peak_usb"}, {"size": 52, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/can/usb"}, {"size": 152, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/can"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/amazon/ena"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/amazon"}, {"size": 68, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/amd/xgbe"}, {"size": 100, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/amd"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/aquantia/atlantic"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/aquantia"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/atheros/alx"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/atheros/atl1c"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/atheros/atl1e"}, {"size": 36, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/atheros/atlx"}, {"size": 100, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/atheros"}, {"size": 268, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/broadcom/bnx2x"}, {"size": 80, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/broadcom/bnxt"}, {"size": 520, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/broadcom"}, {"size": 60, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/brocade/bna"}, {"size": 60, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/brocade"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/cadence"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/calxeda"}, {"size": 152, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/cavium/liquidio"}, {"size": 152, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/cavium"}, {"size": 68, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/chelsio/cxgb3"}, {"size": 144, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/chelsio/cxgb4"}, {"size": 36, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/chelsio/cxgb4vf"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/chelsio/libcxgb"}, {"size": 256, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/chelsio"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/cisco/enic"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/cisco"}, {"size": 124, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/dec/tulip"}, {"size": 124, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/dec"}, {"size": 64, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/emulex/benet"}, {"size": 64, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/emulex"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/icplus"}, {"size": 60, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/intel/e1000"}, {"size": 96, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/intel/e1000e"}, {"size": 52, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/intel/fm10k"}, {"size": 148, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/intel/i40e"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/intel/i40evf"}, {"size": 92, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/intel/igb"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/intel/igbvf"}, {"size": 132, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/intel/ixgbe"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/intel/ixgbevf"}, {"size": 680, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/intel"}, {"size": 56, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/marvell"}, {"size": 188, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/mellanox/mlx4"}, {"size": 200, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/mellanox/mlx5/core"}, {"size": 200, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/mellanox/mlx5"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/mellanox/mlxfw"}, {"size": 244, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/mellanox/mlxsw"}, {"size": 640, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/mellanox"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/myricom/myri10ge"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/myricom"}, {"size": 80, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/netronome/nfp"}, {"size": 80, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/netronome"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/oki-semi/pch_gbe"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/oki-semi"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/qlogic/netxen"}, {"size": 216, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/qlogic/qed"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/qlogic/qede"}, {"size": 120, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/qlogic/qlcnic"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/qlogic/qlge"}, {"size": 496, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/qlogic"}, {"size": 68, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/realtek"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/rocker"}, {"size": 76, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/sfc/falcon"}, {"size": 208, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/sfc"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/smsc"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/ti"}, {"size": 3928, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/fjes"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/hyperv"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ieee802154"}, {"size": 88, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/phy"}, {"size": 72, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ppp"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/slip"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/team"}, {"size": 316, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/usb"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/vmxnet3"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wan"}, {"size": 136, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/ath/ath10k"}, {"size": 228, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/ath/ath9k"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/ath/carl9170"}, {"size": 96, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/ath/wil6210"}, {"size": 516, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/ath"}, {"size": 116, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/broadcom/brcm80211/brcmfmac"}, {"size": 160, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/broadcom/brcm80211/brcmsmac"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/broadcom/brcm80211/brcmutil"}, {"size": 284, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/broadcom/brcm80211"}, {"size": 284, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/broadcom"}, {"size": 168, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/intel/iwlegacy"}, {"size": 80, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/intel/iwlwifi/dvm"}, {"size": 144, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/intel/iwlwifi/mvm"}, {"size": 312, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/intel/iwlwifi"}, {"size": 480, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/intel"}, {"size": 168, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/marvell/mwifiex"}, {"size": 196, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/marvell"}, {"size": 140, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/ralink/rt2x00"}, {"size": 140, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/ralink"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtl818x/rtl8187"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtl818x"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/btcoexist"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8188ee"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8192c"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8192ce"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8192cu"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8192de"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8192ee"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8192se"}, {"size": 36, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8723ae"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8723be"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8723com"}, {"size": 64, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8821ae"}, {"size": 480, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi"}, {"size": 500, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/realtek"}, {"size": 2140, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless"}, {"size": 7152, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/ntb/hw/amd"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/ntb/hw"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/ntb/test"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/ntb"}, {"size": 92, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/nvdimm"}, {"size": 92, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/nvme/host"}, {"size": 64, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/nvme/target"}, {"size": 156, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/nvme"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/parport"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/pci/hotplug"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/pci/pcie/aer"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/pci/pcie"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/pci"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/pcmcia"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/pinctrl/intel"}, {"size": 52, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/pinctrl"}, {"size": 380, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/platform/x86"}, {"size": 380, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/platform"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/power"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/powercap"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/pps/clients"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/pps"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/ptp"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/pwm"}, {"size": 172, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/rtc"}, {"size": 56, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/aacraid"}, {"size": 60, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/aic7xxx"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/arcmsr"}, {"size": 56, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/be2iscsi"}, {"size": 176, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/bfa"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/bnx2fc"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/bnx2i"}, {"size": 60, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/csiostor"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/cxgbi/cxgb3i"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/cxgbi/cxgb4i"}, {"size": 60, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/cxgbi"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/fcoe"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/fnic"}, {"size": 56, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/isci"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/libfc"}, {"size": 36, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/libsas"}, {"size": 304, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/lpfc"}, {"size": 64, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/megaraid"}, {"size": 184, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/mpt3sas"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/mvsas"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/osd"}, {"size": 56, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/pm8001"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/qedf"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/qedi"}, {"size": 304, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/qla2xxx"}, {"size": 108, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/qla4xxx"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/smartpqi"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/ufs"}, {"size": 2524, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/ssb"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/staging/fwserial"}, {"size": 84, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/staging/rtl8192e/rtl8192e"}, {"size": 168, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/staging/rtl8192e"}, {"size": 76, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/staging/rtl8712"}, {"size": 264, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/staging"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/target/iscsi/cxgbit"}, {"size": 128, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/target/iscsi"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/target/loopback"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/target/tcm_fc"}, {"size": 320, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/target"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/thermal/int340x_thermal"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/thermal"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/tty/serial/jsm"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/tty/serial"}, {"size": 172, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/tty"}, {"size": 36, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/uio"}, {"size": 64, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/usb/atm"}, {"size": 52, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/usb/class"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/usb/core"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/usb/host"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/usb/image"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/usb/misc/sisusbvga"}, {"size": 136, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/usb/misc"}, {"size": 416, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/usb/serial"}, {"size": 136, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/usb/storage"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/usb/usbip"}, {"size": 52, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/usb/wusbcore"}, {"size": 896, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/usb"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/uwb/i1480/dfu"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/uwb/i1480"}, {"size": 76, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/uwb"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/vfio/mdev"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/vfio/pci"}, {"size": 64, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/vfio"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/vhost"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/video/backlight"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/video"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/virtio"}, {"size": 200, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/watchdog"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/xen/xenfs"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/xen"}, {"size": 27868, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers"}, {"size": 424, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/btrfs"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/cachefiles"}, {"size": 140, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/ceph"}, {"size": 228, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/cifs"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/cramfs"}, {"size": 72, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/dlm"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/exofs"}, {"size": 212, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/ext4"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/fat"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/fscache"}, {"size": 52, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/fuse"}, {"size": 132, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/gfs2"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/isofs"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/jbd2"}, {"size": 36, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/lockd"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/nfs/blocklayout"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/nfs/filelayout"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/nfs/flexfilelayout"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/nfs/objlayout"}, {"size": 336, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/nfs"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/nfs_common"}, {"size": 140, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/nfsd"}, {"size": 404, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/nls"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/overlayfs"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/pstore"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/squashfs"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/udf"}, {"size": 328, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/xfs"}, {"size": 2824, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/kernel/trace"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/kernel"}, {"size": 68, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/lib/raid6"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/lib/reed_solomon"}, {"size": 116, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/lib"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/mm"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/6lowpan"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/802"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/8021q"}, {"size": 72, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/atm"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/bluetooth/bnep"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/bluetooth/cmtp"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/bluetooth/hidp"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/bluetooth/rfcomm"}, {"size": 272, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/bluetooth"}, {"size": 128, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/bridge/netfilter"}, {"size": 204, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/bridge"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/can"}, {"size": 120, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/ceph"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/core"}, {"size": 76, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/dccp"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/dns_resolver"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/ieee802154/6lowpan"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/ieee802154"}, {"size": 196, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/ipv4/netfilter"}, {"size": 352, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/ipv4"}, {"size": 160, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/ipv6/netfilter"}, {"size": 268, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/ipv6"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/key"}, {"size": 64, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/l2tp"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/llc"}, {"size": 248, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/mac80211"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/mac802154"}, {"size": 240, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/netfilter/ipset"}, {"size": 116, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/netfilter/ipvs"}, {"size": 1040, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/netfilter"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/netlink"}, {"size": 64, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/openvswitch"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/packet"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/psample"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/rfkill"}, {"size": 400, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/sched"}, {"size": 128, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/sctp"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/sunrpc/auth_gss"}, {"size": 56, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/sunrpc/xprtrdma"}, {"size": 232, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/sunrpc"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/unix"}, {"size": 56, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/vmw_vsock"}, {"size": 188, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/wireless"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/xfrm"}, {"size": 4100, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/core/seq/oss"}, {"size": 84, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/core/seq"}, {"size": 224, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/core"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/drivers/mpu401"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/drivers/opl3"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/drivers/pcsp"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/drivers/vx"}, {"size": 92, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/drivers"}, {"size": 36, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/firewire"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/hda/ext"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/hda"}, {"size": 36, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/i2c/other"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/i2c"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/pci/ac97"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/pci/ali5451"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/pci/asihpi"}, {"size": 64, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/pci/au88x0"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/pci/ca0106"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/pci/cs46xx"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/pci/ctxfi"}, {"size": 260, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/pci/echoaudio"}, {"size": 80, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/pci/emu10k1"}, {"size": 256, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/pci/hda"}, {"size": 84, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/pci/ice1712"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/pci/korg1212"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/pci/lola"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/pci/lx6464es"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/pci/mixart"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/pci/oxygen"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/pci/pcxhr"}, {"size": 68, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/pci/rme9652"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/pci/trident"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/pci/vx222"}, {"size": 1376, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/pci"}, {"size": 304, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/soc/codecs"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/soc/intel/atom/sst"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/soc/intel/atom"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/soc/intel/baytrail"}, {"size": 124, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/soc/intel/boards"}, {"size": 36, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/soc/intel/common"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/soc/intel/haswell"}, {"size": 68, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/soc/intel/skylake"}, {"size": 320, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/soc/intel"}, {"size": 716, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/soc"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/synth/emux"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/synth"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/usb/6fire"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/usb/bcd2000"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/usb/caiaq"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/usb/hiface"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/usb/line6"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/usb/misc"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/usb/usx2y"}, {"size": 212, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/usb"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/x86"}, {"size": 2792, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/virt/lib"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/virt"}, {"size": 38704, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel"}, {"size": 0, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/updates"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/vdso"}, {"size": 0, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64/weak-updates"}, {"size": 41968, "name": "/usr/lib/modules/3.10.0-957.27.2.el7.x86_64"}, {"size": 0, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/extra"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/arch/x86/crypto/sha-mb"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/arch/x86/crypto/sha256-mb"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/arch/x86/crypto/sha512-mb"}, {"size": 232, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/arch/x86/crypto"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/arch/x86/kernel/cpu/mcheck"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/arch/x86/kernel/cpu"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/arch/x86/kernel"}, {"size": 288, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/arch/x86/kvm"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/arch/x86/oprofile"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/arch/x86/platform/intel"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/arch/x86/platform"}, {"size": 552, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/arch/x86"}, {"size": 552, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/arch"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/crypto/async_tx"}, {"size": 428, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/crypto"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/acpi/apei"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/acpi/nfit"}, {"size": 92, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/acpi"}, {"size": 444, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/ata"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/auxdisplay"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/base/regmap"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/base"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/bcma"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/block/aoe"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/block/mtip32xx"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/block/zram"}, {"size": 232, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/block"}, {"size": 132, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/bluetooth"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/cdrom"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/char/hw_random"}, {"size": 96, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/char/ipmi"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/char/tpm/st33zp24"}, {"size": 60, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/char/tpm"}, {"size": 232, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/char"}, {"size": 56, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/cpufreq"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/crypto/ccp"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/crypto/chelsio"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/crypto/qat/qat_c3xxx"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/crypto/qat/qat_c3xxxvf"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/crypto/qat/qat_c62x"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/crypto/qat/qat_c62xvf"}, {"size": 56, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/crypto/qat/qat_common"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/crypto/qat/qat_dh895xcc"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/crypto/qat/qat_dh895xccvf"}, {"size": 104, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/crypto/qat"}, {"size": 172, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/crypto"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/dax"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/dca"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/dma/dw"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/dma/ioat"}, {"size": 68, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/dma"}, {"size": 144, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/edac"}, {"size": 80, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/firewire"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/firmware"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpio"}, {"size": 944, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu/drm/amd/amdgpu"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu/drm/amd/lib"}, {"size": 948, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu/drm/amd"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu/drm/ast"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu/drm/bochs"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu/drm/cirrus"}, {"size": 76, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu/drm/gma500"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu/drm/i2c"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu/drm/i915/gvt"}, {"size": 680, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu/drm/i915"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu/drm/mgag200"}, {"size": 552, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu/drm/nouveau"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu/drm/qxl"}, {"size": 480, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu/drm/radeon"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu/drm/scheduler"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu/drm/ttm"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu/drm/udl"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu/drm/vgem"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu/drm/virtio"}, {"size": 108, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu/drm/vmwgfx"}, {"size": 3292, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu/drm"}, {"size": 3292, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/hid/i2c-hid"}, {"size": 372, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/hid"}, {"size": 56, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/hv"}, {"size": 56, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/hwmon/pmbus"}, {"size": 936, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/hwmon"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/i2c/algos"}, {"size": 148, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/i2c/busses"}, {"size": 180, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/i2c"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/idle"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/iio/accel"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/iio/buffer"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/iio/common/hid-sensors"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/iio/common"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/iio/gyro"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/iio/light"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/iio/magnetometer"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/iio/orientation"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/iio/pressure"}, {"size": 56, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/iio"}, {"size": 244, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/core"}, {"size": 52, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/hw/bnxt_re"}, {"size": 52, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/hw/cxgb3"}, {"size": 88, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/hw/cxgb4"}, {"size": 248, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/hw/hfi1"}, {"size": 84, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/hw/i40iw"}, {"size": 116, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/hw/ipath"}, {"size": 88, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/hw/mlx4"}, {"size": 112, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/hw/mlx5"}, {"size": 64, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/hw/mthca"}, {"size": 76, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/hw/nes"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/hw/ocrdma"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/hw/qedr"}, {"size": 148, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/hw/qib"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/hw/usnic"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/hw/vmw_pvrdma"}, {"size": 1268, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/hw"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/sw/rdmavt"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/sw/rxe"}, {"size": 84, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/sw"}, {"size": 52, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/ulp/ipoib"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/ulp/iser"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/ulp/isert"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/ulp/opa_vnic"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/ulp/srp"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/ulp/srpt"}, {"size": 168, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/ulp"}, {"size": 1764, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband"}, {"size": 80, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/input/misc"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/input/mouse"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/input/rmi4"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/input/serio"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/input/tablet"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/input/touchscreen"}, {"size": 268, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/input"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/iommu"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/isdn/capi"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/isdn/divert"}, {"size": 72, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/isdn/gigaset"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/isdn/hardware/avm"}, {"size": 160, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/isdn/hardware/mISDN"}, {"size": 208, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/isdn/hardware"}, {"size": 200, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/isdn/hisax"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/isdn/hysdn"}, {"size": 72, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/isdn/i4l"}, {"size": 88, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/isdn/mISDN"}, {"size": 720, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/isdn"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/leds/trigger"}, {"size": 96, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/leds"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/md/persistent-data"}, {"size": 500, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/md"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/common/b2c2"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/common/saa7146"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/common/siano"}, {"size": 108, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/common"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/dvb-core"}, {"size": 808, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/dvb-frontends"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/firewire"}, {"size": 36, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/i2c/cx25840"}, {"size": 168, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/i2c"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/mmc/siano"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/mmc"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/pci/b2c2"}, {"size": 104, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/pci/bt8xx"}, {"size": 64, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/pci/cx18"}, {"size": 68, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/pci/cx23885"}, {"size": 92, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/pci/cx88"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/pci/ddbridge"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/pci/dm1105"}, {"size": 80, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/pci/ivtv"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/pci/mantis"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/pci/ngene"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/pci/pluto2"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/pci/pt1"}, {"size": 96, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/pci/saa7134"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/pci/saa7164"}, {"size": 108, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/pci/ttpci"}, {"size": 764, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/pci"}, {"size": 412, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/rc/keymaps"}, {"size": 608, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/rc"}, {"size": 264, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/tuners"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/au0828"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/b2c2"}, {"size": 76, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/cx231xx"}, {"size": 228, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/dvb-usb"}, {"size": 164, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/dvb-usb-v2"}, {"size": 68, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/em28xx"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/gspca/gl860"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/gspca/m5602"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/gspca/stv06xx"}, {"size": 420, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/gspca"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/hdpvr"}, {"size": 60, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/pvrusb2"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/pwc"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/s2255"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/siano"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/stk1160"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/stkwebcam"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/tlg2300"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/tm6000"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/ttusb-budget"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/ttusb-dec"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/usbvision"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/uvc"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/zr364xx"}, {"size": 1328, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb"}, {"size": 124, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/v4l2-core"}, {"size": 4240, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/memstick/core"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/memstick/host"}, {"size": 60, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/memstick"}, {"size": 124, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/message/fusion"}, {"size": 124, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/message"}, {"size": 64, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/mfd"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/misc/altera-stapl"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/misc/cb710"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/misc/eeprom"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/misc/lis3lv02d"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/misc/mei"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/misc/sgi-gru"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/misc/sgi-xp"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/misc/vmw_vmci"}, {"size": 304, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/misc"}, {"size": 84, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/mmc/core"}, {"size": 132, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/mmc/host"}, {"size": 216, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/mmc"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/mtd/chips"}, {"size": 60, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/mtd/ubi"}, {"size": 104, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/mtd"}, {"size": 64, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/bonding"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/can/c_can"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/can/cc770"}, {"size": 36, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/can/sja1000"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/can/softing"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/can/usb/peak_usb"}, {"size": 52, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/can/usb"}, {"size": 152, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/can"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/amazon/ena"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/amazon"}, {"size": 68, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/amd/xgbe"}, {"size": 100, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/amd"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/aquantia/atlantic"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/aquantia"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/atheros/alx"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/atheros/atl1c"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/atheros/atl1e"}, {"size": 36, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/atheros/atlx"}, {"size": 100, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/atheros"}, {"size": 272, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/broadcom/bnx2x"}, {"size": 96, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/broadcom/bnxt"}, {"size": 540, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/broadcom"}, {"size": 60, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/brocade/bna"}, {"size": 60, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/brocade"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/cadence"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/calxeda"}, {"size": 152, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/cavium/liquidio"}, {"size": 152, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/cavium"}, {"size": 68, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/chelsio/cxgb3"}, {"size": 152, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/chelsio/cxgb4"}, {"size": 36, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/chelsio/cxgb4vf"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/chelsio/libcxgb"}, {"size": 264, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/chelsio"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/cisco/enic"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/cisco"}, {"size": 124, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/dec/tulip"}, {"size": 124, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/dec"}, {"size": 64, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/emulex/benet"}, {"size": 64, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/emulex"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/icplus"}, {"size": 60, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/intel/e1000"}, {"size": 96, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/intel/e1000e"}, {"size": 52, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/intel/fm10k"}, {"size": 152, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/intel/i40e"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/intel/iavf"}, {"size": 80, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/intel/ice"}, {"size": 92, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/intel/igb"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/intel/igbvf"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/intel/igc"}, {"size": 136, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/intel/ixgbe"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/intel/ixgbevf"}, {"size": 808, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/intel"}, {"size": 56, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/marvell"}, {"size": 188, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/mellanox/mlx4"}, {"size": 236, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/mellanox/mlx5/core"}, {"size": 236, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/mellanox/mlx5"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/mellanox/mlxfw"}, {"size": 244, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/mellanox/mlxsw"}, {"size": 676, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/mellanox"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/myricom/myri10ge"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/myricom"}, {"size": 100, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/netronome/nfp"}, {"size": 100, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/netronome"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/oki-semi/pch_gbe"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/oki-semi"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/qlogic/netxen"}, {"size": 224, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/qlogic/qed"}, {"size": 56, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/qlogic/qede"}, {"size": 120, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/qlogic/qlcnic"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/qlogic/qlge"}, {"size": 512, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/qlogic"}, {"size": 68, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/realtek"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/rocker"}, {"size": 76, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/sfc/falcon"}, {"size": 208, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/sfc"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/smsc"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/ti"}, {"size": 4164, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/fjes"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/hyperv"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ieee802154"}, {"size": 88, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/phy"}, {"size": 72, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ppp"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/slip"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/team"}, {"size": 316, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/usb"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/vmxnet3"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wan"}, {"size": 136, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/ath/ath10k"}, {"size": 232, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/ath/ath9k"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/ath/carl9170"}, {"size": 96, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/ath/wil6210"}, {"size": 520, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/ath"}, {"size": 116, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/broadcom/brcm80211/brcmfmac"}, {"size": 156, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/broadcom/brcm80211/brcmsmac"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/broadcom/brcm80211/brcmutil"}, {"size": 280, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/broadcom/brcm80211"}, {"size": 280, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/broadcom"}, {"size": 168, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/intel/iwlegacy"}, {"size": 80, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/intel/iwlwifi/dvm"}, {"size": 144, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/intel/iwlwifi/mvm"}, {"size": 312, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/intel/iwlwifi"}, {"size": 480, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/intel"}, {"size": 168, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/marvell/mwifiex"}, {"size": 196, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/marvell"}, {"size": 140, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/ralink/rt2x00"}, {"size": 140, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/ralink"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtl818x/rtl8187"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtl818x"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/btcoexist"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8188ee"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8192c"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8192ce"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8192cu"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8192de"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8192ee"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8192se"}, {"size": 36, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8723ae"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8723be"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8723com"}, {"size": 64, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8821ae"}, {"size": 480, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi"}, {"size": 76, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtw88"}, {"size": 576, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/realtek"}, {"size": 2216, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless"}, {"size": 7464, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/ntb/hw/amd"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/ntb/hw"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/ntb/test"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/ntb"}, {"size": 96, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/nvdimm"}, {"size": 100, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/nvme/host"}, {"size": 68, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/nvme/target"}, {"size": 168, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/nvme"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/parport"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/pci/hotplug"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/pci/pcie/aer"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/pci/pcie"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/pci"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/pcmcia"}, {"size": 68, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/pinctrl/intel"}, {"size": 76, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/pinctrl"}, {"size": 380, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/platform/x86"}, {"size": 380, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/platform"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/power"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/powercap"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/pps/clients"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/pps"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/ptp"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/pwm"}, {"size": 172, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/rtc"}, {"size": 56, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/aacraid"}, {"size": 60, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/aic7xxx"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/arcmsr"}, {"size": 56, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/be2iscsi"}, {"size": 176, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/bfa"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/bnx2fc"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/bnx2i"}, {"size": 60, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/csiostor"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/cxgbi/cxgb3i"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/cxgbi/cxgb4i"}, {"size": 60, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/cxgbi"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/fcoe"}, {"size": 52, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/fnic"}, {"size": 56, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/isci"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/libfc"}, {"size": 36, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/libsas"}, {"size": 312, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/lpfc"}, {"size": 64, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/megaraid"}, {"size": 204, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/mpt3sas"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/mvsas"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/osd"}, {"size": 56, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/pm8001"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/qedf"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/qedi"}, {"size": 308, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/qla2xxx"}, {"size": 108, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/qla4xxx"}, {"size": 36, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/smartpqi"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/ufs"}, {"size": 2564, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/ssb"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/staging/fwserial"}, {"size": 84, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/staging/rtl8192e/rtl8192e"}, {"size": 168, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/staging/rtl8192e"}, {"size": 76, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/staging/rtl8712"}, {"size": 264, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/staging"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/target/iscsi/cxgbit"}, {"size": 128, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/target/iscsi"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/target/loopback"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/target/tcm_fc"}, {"size": 320, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/target"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/thermal/int340x_thermal"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/thermal"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/tty/serial/jsm"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/tty/serial"}, {"size": 172, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/tty"}, {"size": 36, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/uio"}, {"size": 64, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/usb/atm"}, {"size": 52, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/usb/class"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/usb/core"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/usb/host"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/usb/image"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/usb/misc/sisusbvga"}, {"size": 136, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/usb/misc"}, {"size": 416, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/usb/serial"}, {"size": 136, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/usb/storage"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/usb/usbip"}, {"size": 52, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/usb/wusbcore"}, {"size": 896, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/usb"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/uwb/i1480/dfu"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/uwb/i1480"}, {"size": 76, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/uwb"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/vfio/mdev"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/vfio/pci"}, {"size": 64, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/vfio"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/vhost"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/video/backlight"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/video"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/virtio"}, {"size": 200, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/watchdog"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/xen/xenfs"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/xen"}, {"size": 28504, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers"}, {"size": 424, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/btrfs"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/cachefiles"}, {"size": 140, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/ceph"}, {"size": 232, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/cifs"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/cramfs"}, {"size": 72, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/dlm"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/exofs"}, {"size": 216, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/ext4"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/fat"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/fscache"}, {"size": 56, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/fuse"}, {"size": 136, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/gfs2"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/isofs"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/jbd2"}, {"size": 36, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/lockd"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/nfs/blocklayout"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/nfs/filelayout"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/nfs/flexfilelayout"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/nfs/objlayout"}, {"size": 336, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/nfs"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/nfs_common"}, {"size": 140, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/nfsd"}, {"size": 404, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/nls"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/overlayfs"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/pstore"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/squashfs"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/udf"}, {"size": 328, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/xfs"}, {"size": 2852, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/kernel/trace"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/kernel"}, {"size": 68, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/lib/raid6"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/lib/reed_solomon"}, {"size": 116, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/lib"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/mm"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/6lowpan"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/802"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/8021q"}, {"size": 72, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/atm"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/bluetooth/bnep"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/bluetooth/cmtp"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/bluetooth/hidp"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/bluetooth/rfcomm"}, {"size": 272, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/bluetooth"}, {"size": 128, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/bridge/netfilter"}, {"size": 204, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/bridge"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/can"}, {"size": 120, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/ceph"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/core"}, {"size": 76, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/dccp"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/dns_resolver"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/ieee802154/6lowpan"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/ieee802154"}, {"size": 196, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/ipv4/netfilter"}, {"size": 352, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/ipv4"}, {"size": 164, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/ipv6/netfilter"}, {"size": 272, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/ipv6"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/key"}, {"size": 64, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/l2tp"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/llc"}, {"size": 248, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/mac80211"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/mac802154"}, {"size": 240, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/netfilter/ipset"}, {"size": 116, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/netfilter/ipvs"}, {"size": 1040, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/netfilter"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/netlink"}, {"size": 64, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/openvswitch"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/packet"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/psample"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/rfkill"}, {"size": 408, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/sched"}, {"size": 128, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/sctp"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/sunrpc/auth_gss"}, {"size": 64, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/sunrpc/xprtrdma"}, {"size": 240, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/sunrpc"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/unix"}, {"size": 56, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/vmw_vsock"}, {"size": 188, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/wireless"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/xfrm"}, {"size": 4124, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/core/seq/oss"}, {"size": 84, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/core/seq"}, {"size": 224, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/core"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/drivers/mpu401"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/drivers/opl3"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/drivers/pcsp"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/drivers/vx"}, {"size": 92, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/drivers"}, {"size": 36, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/firewire"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/hda/ext"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/hda"}, {"size": 36, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/i2c/other"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/i2c"}, {"size": 44, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/pci/ac97"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/pci/ali5451"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/pci/asihpi"}, {"size": 64, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/pci/au88x0"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/pci/ca0106"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/pci/cs46xx"}, {"size": 40, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/pci/ctxfi"}, {"size": 260, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/pci/echoaudio"}, {"size": 80, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/pci/emu10k1"}, {"size": 272, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/pci/hda"}, {"size": 84, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/pci/ice1712"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/pci/korg1212"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/pci/lola"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/pci/lx6464es"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/pci/mixart"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/pci/oxygen"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/pci/pcxhr"}, {"size": 68, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/pci/rme9652"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/pci/trident"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/pci/vx222"}, {"size": 1392, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/pci"}, {"size": 304, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/soc/codecs"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/soc/intel/atom/sst"}, {"size": 48, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/soc/intel/atom"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/soc/intel/baytrail"}, {"size": 124, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/soc/intel/boards"}, {"size": 36, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/soc/intel/common"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/soc/intel/haswell"}, {"size": 68, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/soc/intel/skylake"}, {"size": 320, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/soc/intel"}, {"size": 716, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/soc"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/synth/emux"}, {"size": 24, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/synth"}, {"size": 16, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/usb/6fire"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/usb/bcd2000"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/usb/caiaq"}, {"size": 8, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/usb/hiface"}, {"size": 32, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/usb/line6"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/usb/misc"}, {"size": 28, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/usb/usx2y"}, {"size": 220, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/usb"}, {"size": 12, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/x86"}, {"size": 2816, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/virt/lib"}, {"size": 4, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/virt"}, {"size": 39408, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel"}, {"size": 0, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/updates"}, {"size": 20, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/vdso"}, {"size": 0, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/weak-updates"}, {"size": 42708, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64"}, {"size": 126592, "name": "/usr/lib/modules"}, {"size": 0, "name": "/usr/lib/sse2"}, {"size": 80, "name": "/usr/lib/tmpfiles.d"}, {"size": 20, "name": "/usr/lib/python2.7/site-packages/decorator-3.4.0-py2.7.egg-info"}, {"size": 12, "name": "/usr/lib/python2.7/site-packages/slip/_wrappers"}, {"size": 48, "name": "/usr/lib/python2.7/site-packages/slip/util"}, {"size": 108, "name": "/usr/lib/python2.7/site-packages/slip/dbus"}, {"size": 172, "name": "/usr/lib/python2.7/site-packages/slip"}, {"size": 96, "name": "/usr/lib/python2.7/site-packages/procfs"}, {"size": 112, "name": "/usr/lib/python2.7/site-packages/iniparse"}, {"size": 472, "name": "/usr/lib/python2.7/site-packages/urlgrabber"}, {"size": 24, "name": "/usr/lib/python2.7/site-packages/firewall/config"}, {"size": 308, "name": "/usr/lib/python2.7/site-packages/firewall/core/io"}, {"size": 1188, "name": "/usr/lib/python2.7/site-packages/firewall/core"}, {"size": 568, "name": "/usr/lib/python2.7/site-packages/firewall/server"}, {"size": 2156, "name": "/usr/lib/python2.7/site-packages/firewall"}, {"size": 268, "name": "/usr/lib/python2.7/site-packages/pyudev"}, {"size": 16, "name": "/usr/lib/python2.7/site-packages/pyudev-0.15-py2.7.egg-info"}, {"size": 160, "name": "/usr/lib/python2.7/site-packages/rpmUtils"}, {"size": 2400, "name": "/usr/lib/python2.7/site-packages/yum"}, {"size": 72, "name": "/usr/lib/python2.7/site-packages/tuned/admin"}, {"size": 76, "name": "/usr/lib/python2.7/site-packages/tuned/daemon"}, {"size": 40, "name": "/usr/lib/python2.7/site-packages/tuned/exports"}, {"size": 40, "name": "/usr/lib/python2.7/site-packages/tuned/hardware"}, {"size": 68, "name": "/usr/lib/python2.7/site-packages/tuned/monitors"}, {"size": 28, "name": "/usr/lib/python2.7/site-packages/tuned/plugins/instance"}, {"size": 484, "name": "/usr/lib/python2.7/site-packages/tuned/plugins"}, {"size": 168, "name": "/usr/lib/python2.7/site-packages/tuned/profiles/functions"}, {"size": 256, "name": "/usr/lib/python2.7/site-packages/tuned/profiles"}, {"size": 44, "name": "/usr/lib/python2.7/site-packages/tuned/storage"}, {"size": 24, "name": "/usr/lib/python2.7/site-packages/tuned/units"}, {"size": 100, "name": "/usr/lib/python2.7/site-packages/tuned/utils"}, {"size": 1276, "name": "/usr/lib/python2.7/site-packages/tuned"}, {"size": 16, "name": "/usr/lib/python2.7/site-packages/backports/ssl_match_hostname"}, {"size": 24, "name": "/usr/lib/python2.7/site-packages/backports"}, {"size": 20, "name": "/usr/lib/python2.7/site-packages/_markerlib"}, {"size": 152, "name": "/usr/lib/python2.7/site-packages/setuptools/_backport/hashlib"}, {"size": 156, "name": "/usr/lib/python2.7/site-packages/setuptools/_backport"}, {"size": 504, "name": "/usr/lib/python2.7/site-packages/setuptools/command"}, {"size": 976, "name": "/usr/lib/python2.7/site-packages/setuptools"}, {"size": 76, "name": "/usr/lib/python2.7/site-packages/setuptools-0.9.8-py2.7.egg-info"}, {"size": 56, "name": "/usr/lib/python2.7/site-packages/pytoml"}, {"size": 16, "name": "/usr/lib/python2.7/site-packages/pytoml-0.1.14-py2.7.egg-info"}, {"size": 28, "name": "/usr/lib/python2.7/site-packages/registries"}, {"size": 20, "name": "/usr/lib/python2.7/site-packages/registries-0.1-py2.7.egg-info"}, {"size": 9348, "name": "/usr/lib/python2.7/site-packages"}, {"size": 9348, "name": "/usr/lib/python2.7"}, {"size": 8, "name": "/usr/lib/modprobe.d"}, {"size": 240, "name": "/usr/lib/udev/rules.d"}, {"size": 11688, "name": "/usr/lib/udev/hwdb.d"}, {"size": 12276, "name": "/usr/lib/udev"}, {"size": 16, "name": "/usr/lib/kernel/install.d"}, {"size": 16, "name": "/usr/lib/kernel"}, {"size": 0, "name": "/usr/lib/binfmt.d"}, {"size": 0, "name": "/usr/lib/modules-load.d"}, {"size": 16, "name": "/usr/lib/sysctl.d"}, {"size": 136, "name": "/usr/lib/polkit-1"}, {"size": 0, "name": "/usr/lib/NetworkManager/VPN"}, {"size": 4, "name": "/usr/lib/NetworkManager/conf.d"}, {"size": 4, "name": "/usr/lib/NetworkManager"}, {"size": 136, "name": "/usr/lib/firmware/emi26"}, {"size": 644, "name": "/usr/lib/firmware/qca"}, {"size": 3452, "name": "/usr/lib/firmware/asihpi"}, {"size": 84, "name": "/usr/lib/firmware/cs46xx"}, {"size": 96, "name": "/usr/lib/firmware/keyspan"}, {"size": 788, "name": "/usr/lib/firmware/ea"}, {"size": 400, "name": "/usr/lib/firmware/emu"}, {"size": 8, "name": "/usr/lib/firmware/ess"}, {"size": 16, "name": "/usr/lib/firmware/korg"}, {"size": 1100, "name": "/usr/lib/firmware/mixart"}, {"size": 4, "name": "/usr/lib/firmware/cpia2"}, {"size": 76, "name": "/usr/lib/firmware/keyspan_pda"}, {"size": 1432, "name": "/usr/lib/firmware/pcxhr"}, {"size": 208, "name": "/usr/lib/firmware/emi62"}, {"size": 988, "name": "/usr/lib/firmware/qcom/venus-1.8"}, {"size": 920, "name": "/usr/lib/firmware/qcom/venus-4.2"}, {"size": 1744, "name": "/usr/lib/firmware/qcom/venus-5.2"}, {"size": 3764, "name": "/usr/lib/firmware/qcom"}, {"size": 20, "name": "/usr/lib/firmware/sb16"}, {"size": 312, "name": "/usr/lib/firmware/vx"}, {"size": 44, "name": "/usr/lib/firmware/yamaha"}, {"size": 72, "name": "/usr/lib/firmware/3com"}, {"size": 32, "name": "/usr/lib/firmware/matrox"}, {"size": 24872, "name": "/usr/lib/firmware/liquidio"}, {"size": 52, "name": "/usr/lib/firmware/RTL8192E"}, {"size": 1484, "name": "/usr/lib/firmware/mediatek"}, {"size": 5696, "name": "/usr/lib/firmware/mellanox"}, {"size": 148, "name": "/usr/lib/firmware/acenic"}, {"size": 8, "name": "/usr/lib/firmware/adaptec"}, {"size": 28, "name": "/usr/lib/firmware/advansys"}, {"size": 24, "name": "/usr/lib/firmware/ene-ub6250"}, {"size": 17568, "name": "/usr/lib/firmware/qed"}, {"size": 52, "name": "/usr/lib/firmware/amd-ucode"}, {"size": 25376, "name": "/usr/lib/firmware/amdgpu"}, {"size": 64, "name": "/usr/lib/firmware/ar3k/1020200"}, {"size": 40, "name": "/usr/lib/firmware/ar3k/1020201"}, {"size": 4, "name": "/usr/lib/firmware/ar3k/1020201coex"}, {"size": 12, "name": "/usr/lib/firmware/ar3k/30000"}, {"size": 28, "name": "/usr/lib/firmware/ar3k/30101"}, {"size": 36, "name": "/usr/lib/firmware/ar3k/30101coex"}, {"size": 568, "name": "/usr/lib/firmware/ar3k"}, {"size": 404, "name": "/usr/lib/firmware/moxa"}, {"size": 4, "name": "/usr/lib/firmware/r128"}, {"size": 8700, "name": "/usr/lib/firmware/mrvl"}, {"size": 860, "name": "/usr/lib/firmware/rsi"}, {"size": 4, "name": "/usr/lib/firmware/sun"}, {"size": 204, "name": "/usr/lib/firmware/go7007"}, {"size": 120, "name": "/usr/lib/firmware/sxg"}, {"size": 1044, "name": "/usr/lib/firmware/ath10k/QCA4019/hw1.0"}, {"size": 1044, "name": "/usr/lib/firmware/ath10k/QCA4019"}, {"size": 804, "name": "/usr/lib/firmware/ath10k/QCA6174/hw2.1"}, {"size": 2136, "name": "/usr/lib/firmware/ath10k/QCA6174/hw3.0"}, {"size": 2940, "name": "/usr/lib/firmware/ath10k/QCA6174"}, {"size": 1916, "name": "/usr/lib/firmware/ath10k/QCA9377/hw1.0"}, {"size": 1916, "name": "/usr/lib/firmware/ath10k/QCA9377"}, {"size": 256, "name": "/usr/lib/firmware/ath10k/QCA9887/hw1.0"}, {"size": 256, "name": "/usr/lib/firmware/ath10k/QCA9887"}, {"size": 792, "name": "/usr/lib/firmware/ath10k/QCA9888/hw2.0"}, {"size": 792, "name": "/usr/lib/firmware/ath10k/QCA9888"}, {"size": 520, "name": "/usr/lib/firmware/ath10k/QCA988X/hw2.0"}, {"size": 520, "name": "/usr/lib/firmware/ath10k/QCA988X"}, {"size": 864, "name": "/usr/lib/firmware/ath10k/QCA9984/hw1.0"}, {"size": 864, "name": "/usr/lib/firmware/ath10k/QCA9984"}, {"size": 516, "name": "/usr/lib/firmware/ath10k/QCA99X0/hw2.0"}, {"size": 516, "name": "/usr/lib/firmware/ath10k/QCA99X0"}, {"size": 8848, "name": "/usr/lib/firmware/ath10k"}, {"size": 124, "name": "/usr/lib/firmware/ath9k_htc"}, {"size": 508, "name": "/usr/lib/firmware/atmel"}, {"size": 28, "name": "/usr/lib/firmware/atusb"}, {"size": 12, "name": "/usr/lib/firmware/av7110"}, {"size": 1436, "name": "/usr/lib/firmware/bnx2"}, {"size": 9420, "name": "/usr/lib/firmware/bnx2x"}, {"size": 16, "name": "/usr/lib/firmware/yam"}, {"size": 32, "name": "/usr/lib/firmware/amd"}, {"size": 16724, "name": "/usr/lib/firmware/brcm"}, {"size": 128, "name": "/usr/lib/firmware/cadence"}, {"size": 36, "name": "/usr/lib/firmware/cavium"}, {"size": 8, "name": "/usr/lib/firmware/imx/sdma"}, {"size": 8, "name": "/usr/lib/firmware/imx"}, {"size": 52, "name": "/usr/lib/firmware/cis/src"}, {"size": 124, "name": "/usr/lib/firmware/cis"}, {"size": 1876, "name": "/usr/lib/firmware/i915"}, {"size": 596, "name": "/usr/lib/firmware/mwlwifi"}, {"size": 16444, "name": "/usr/lib/firmware/intel"}, {"size": 32, "name": "/usr/lib/firmware/isci"}, {"size": 76, "name": "/usr/lib/firmware/myricom"}, {"size": 16, "name": "/usr/lib/firmware/kaweth"}, {"size": 180, "name": "/usr/lib/firmware/cxgb3"}, {"size": 4504, "name": "/usr/lib/firmware/cxgb4"}, {"size": 24, "name": "/usr/lib/firmware/dabusb"}, {"size": 12, "name": "/usr/lib/firmware/dsp56k"}, {"size": 12, "name": "/usr/lib/firmware/e100"}, {"size": 72, "name": "/usr/lib/firmware/edgeport"}, {"size": 8, "name": "/usr/lib/firmware/microchip"}, {"size": 332, "name": "/usr/lib/firmware/rtw88"}, {"size": 2204, "name": "/usr/lib/firmware/ueagle-atm"}, {"size": 16, "name": "/usr/lib/firmware/ttusb-budget"}, {"size": 4, "name": "/usr/lib/firmware/ti-keystone"}, {"size": 0, "name": "/usr/lib/firmware/updates"}, {"size": 19000, "name": "/usr/lib/firmware/netronome/flower"}, {"size": 38112, "name": "/usr/lib/firmware/netronome/nic"}, {"size": 26792, "name": "/usr/lib/firmware/netronome/bpf"}, {"size": 59016, "name": "/usr/lib/firmware/netronome/nic-sriov"}, {"size": 142924, "name": "/usr/lib/firmware/netronome"}, {"size": 64, "name": "/usr/lib/firmware/nvidia/gk20a"}, {"size": 20, "name": "/usr/lib/firmware/nvidia/gm200/acr"}, {"size": 84, "name": "/usr/lib/firmware/nvidia/gm200/gr"}, {"size": 104, "name": "/usr/lib/firmware/nvidia/gm200"}, {"size": 0, "name": "/usr/lib/firmware/nvidia/gm204/acr"}, {"size": 16, "name": "/usr/lib/firmware/nvidia/gm204/gr"}, {"size": 16, "name": "/usr/lib/firmware/nvidia/gm204"}, {"size": 16, "name": "/usr/lib/firmware/nvidia/gm206/acr"}, {"size": 16, "name": "/usr/lib/firmware/nvidia/gm206/gr"}, {"size": 32, "name": "/usr/lib/firmware/nvidia/gm206"}, {"size": 24, "name": "/usr/lib/firmware/nvidia/gm20b/acr"}, {"size": 68, "name": "/usr/lib/firmware/nvidia/gm20b/gr"}, {"size": 56, "name": "/usr/lib/firmware/nvidia/gm20b/pmu"}, {"size": 148, "name": "/usr/lib/firmware/nvidia/gm20b"}, {"size": 20, "name": "/usr/lib/firmware/nvidia/gp100/acr"}, {"size": 88, "name": "/usr/lib/firmware/nvidia/gp100/gr"}, {"size": 108, "name": "/usr/lib/firmware/nvidia/gp100"}, {"size": 32, "name": "/usr/lib/firmware/nvidia/gp102/acr"}, {"size": 88, "name": "/usr/lib/firmware/nvidia/gp102/gr"}, {"size": 4, "name": "/usr/lib/firmware/nvidia/gp102/nvdec"}, {"size": 108, "name": "/usr/lib/firmware/nvidia/gp102/sec2"}, {"size": 232, "name": "/usr/lib/firmware/nvidia/gp102"}, {"size": 0, "name": "/usr/lib/firmware/nvidia/gp104/acr"}, {"size": 56, "name": "/usr/lib/firmware/nvidia/gp104/gr"}, {"size": 0, "name": "/usr/lib/firmware/nvidia/gp104/nvdec"}, {"size": 0, "name": "/usr/lib/firmware/nvidia/gp104/sec2"}, {"size": 56, "name": "/usr/lib/firmware/nvidia/gp104"}, {"size": 0, "name": "/usr/lib/firmware/nvidia/gp106/acr"}, {"size": 16, "name": "/usr/lib/firmware/nvidia/gp106/gr"}, {"size": 0, "name": "/usr/lib/firmware/nvidia/gp106/nvdec"}, {"size": 0, "name": "/usr/lib/firmware/nvidia/gp106/sec2"}, {"size": 16, "name": "/usr/lib/firmware/nvidia/gp106"}, {"size": 0, "name": "/usr/lib/firmware/nvidia/gp107/acr"}, {"size": 76, "name": "/usr/lib/firmware/nvidia/gp107/gr"}, {"size": 0, "name": "/usr/lib/firmware/nvidia/gp107/nvdec"}, {"size": 0, "name": "/usr/lib/firmware/nvidia/gp107/sec2"}, {"size": 76, "name": "/usr/lib/firmware/nvidia/gp107"}, {"size": 0, "name": "/usr/lib/firmware/nvidia/gp108/acr"}, {"size": 96, "name": "/usr/lib/firmware/nvidia/gp108/gr"}, {"size": 0, "name": "/usr/lib/firmware/nvidia/gp108/nvdec"}, {"size": 116, "name": "/usr/lib/firmware/nvidia/gp108/sec2"}, {"size": 212, "name": "/usr/lib/firmware/nvidia/gp108"}, {"size": 24, "name": "/usr/lib/firmware/nvidia/gp10b/acr"}, {"size": 96, "name": "/usr/lib/firmware/nvidia/gp10b/gr"}, {"size": 60, "name": "/usr/lib/firmware/nvidia/gp10b/pmu"}, {"size": 180, "name": "/usr/lib/firmware/nvidia/gp10b"}, {"size": 148, "name": "/usr/lib/firmware/nvidia/tegra124"}, {"size": 20, "name": "/usr/lib/firmware/nvidia/tegra186"}, {"size": 152, "name": "/usr/lib/firmware/nvidia/tegra210"}, {"size": 36, "name": "/usr/lib/firmware/nvidia/gv100/acr"}, {"size": 112, "name": "/usr/lib/firmware/nvidia/gv100/gr"}, {"size": 8, "name": "/usr/lib/firmware/nvidia/gv100/nvdec"}, {"size": 100, "name": "/usr/lib/firmware/nvidia/gv100/sec2"}, {"size": 256, "name": "/usr/lib/firmware/nvidia/gv100"}, {"size": 332, "name": "/usr/lib/firmware/nvidia/tu10x/typec"}, {"size": 332, "name": "/usr/lib/firmware/nvidia/tu10x"}, {"size": 2152, "name": "/usr/lib/firmware/nvidia"}, {"size": 4, "name": "/usr/lib/firmware/ositech"}, {"size": 4, "name": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"size": 8, "name": "/usr/lib/firmware/3.10.0-957.el7.x86_64"}, {"size": 124, "name": "/usr/lib/firmware/qlogic"}, {"size": 0, "name": "/usr/lib/firmware/usbdux"}, {"size": 7572, "name": "/usr/lib/firmware/radeon"}, {"size": 100, "name": "/usr/lib/firmware/rockchip"}, {"size": 560, "name": "/usr/lib/firmware/rtl_bt"}, {"size": 96, "name": "/usr/lib/firmware/rtl_nic"}, {"size": 1080, "name": "/usr/lib/firmware/rtlwifi"}, {"size": 276, "name": "/usr/lib/firmware/slicoss"}, {"size": 20, "name": "/usr/lib/firmware/tigon"}, {"size": 2868, "name": "/usr/lib/firmware/dpaa2/mc"}, {"size": 2868, "name": "/usr/lib/firmware/dpaa2"}, {"size": 44, "name": "/usr/lib/firmware/tehuti"}, {"size": 4, "name": "/usr/lib/firmware/vicam"}, {"size": 4, "name": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"size": 8, "name": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64"}, {"size": 4, "name": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"size": 8, "name": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64"}, {"size": 442048, "name": "/usr/lib/firmware"}, {"size": 40, "name": "/usr/lib/yum-plugins"}, {"size": 4, "name": "/usr/lib/tuned/balanced"}, {"size": 4, "name": "/usr/lib/tuned/desktop"}, {"size": 4, "name": "/usr/lib/tuned/latency-performance"}, {"size": 4, "name": "/usr/lib/tuned/network-latency"}, {"size": 4, "name": "/usr/lib/tuned/network-throughput"}, {"size": 8, "name": "/usr/lib/tuned/powersave"}, {"size": 4, "name": "/usr/lib/tuned/recommend.d"}, {"size": 4, "name": "/usr/lib/tuned/throughput-performance"}, {"size": 4, "name": "/usr/lib/tuned/virtual-guest"}, {"size": 4, "name": "/usr/lib/tuned/virtual-host"}, {"size": 4, "name": "/usr/lib/tuned/hpc-compute"}, {"size": 64, "name": "/usr/lib/tuned"}, {"size": 24, "name": "/usr/lib/kdump"}, {"size": 8, "name": "/usr/lib/python3.6/site-packages/__pycache__"}, {"size": 200, "name": "/usr/lib/python3.6/site-packages/pkg_resources/__pycache__"}, {"size": 496, "name": "/usr/lib/python3.6/site-packages/pkg_resources/_vendor/__pycache__"}, {"size": 140, "name": "/usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/__pycache__"}, {"size": 220, "name": "/usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging"}, {"size": 1000, "name": "/usr/lib/python3.6/site-packages/pkg_resources/_vendor"}, {"size": 8, "name": "/usr/lib/python3.6/site-packages/pkg_resources/extern/__pycache__"}, {"size": 12, "name": "/usr/lib/python3.6/site-packages/pkg_resources/extern"}, {"size": 1320, "name": "/usr/lib/python3.6/site-packages/pkg_resources"}, {"size": 528, "name": "/usr/lib/python3.6/site-packages/setuptools/__pycache__"}, {"size": 456, "name": "/usr/lib/python3.6/site-packages/setuptools/_vendor/__pycache__"}, {"size": 140, "name": "/usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/__pycache__"}, {"size": 220, "name": "/usr/lib/python3.6/site-packages/setuptools/_vendor/packaging"}, {"size": 936, "name": "/usr/lib/python3.6/site-packages/setuptools/_vendor"}, {"size": 468, "name": "/usr/lib/python3.6/site-packages/setuptools/command/__pycache__"}, {"size": 756, "name": "/usr/lib/python3.6/site-packages/setuptools/command"}, {"size": 8, "name": "/usr/lib/python3.6/site-packages/setuptools/extern/__pycache__"}, {"size": 12, "name": "/usr/lib/python3.6/site-packages/setuptools/extern"}, {"size": 2540, "name": "/usr/lib/python3.6/site-packages/setuptools"}, {"size": 48, "name": "/usr/lib/python3.6/site-packages/setuptools-39.2.0.dist-info"}, {"size": 316, "name": "/usr/lib/python3.6/site-packages/pip/__pycache__"}, {"size": 724, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/__pycache__"}, {"size": 108, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/cachecontrol/__pycache__"}, {"size": 24, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/cachecontrol/caches/__pycache__"}, {"size": 36, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/cachecontrol/caches"}, {"size": 208, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/cachecontrol"}, {"size": 24, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/certifi/__pycache__"}, {"size": 36, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/certifi"}, {"size": 1164, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/chardet/__pycache__"}, {"size": 16, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/chardet/cli/__pycache__"}, {"size": 24, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/chardet/cli"}, {"size": 1628, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/chardet"}, {"size": 68, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/colorama/__pycache__"}, {"size": 108, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/colorama"}, {"size": 620, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/distlib/__pycache__"}, {"size": 228, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/distlib/_backport/__pycache__"}, {"size": 388, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/distlib/_backport"}, {"size": 1752, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/distlib"}, {"size": 540, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/html5lib/__pycache__"}, {"size": 32, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/html5lib/_trie/__pycache__"}, {"size": 48, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/html5lib/_trie"}, {"size": 100, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/html5lib/filters/__pycache__"}, {"size": 160, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/html5lib/filters"}, {"size": 24, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__"}, {"size": 36, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/html5lib/treeadapters"}, {"size": 108, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__"}, {"size": 172, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/html5lib/treebuilders"}, {"size": 68, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__"}, {"size": 108, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/html5lib/treewalkers"}, {"size": 1416, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/html5lib"}, {"size": 564, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/idna/__pycache__"}, {"size": 816, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/idna"}, {"size": 76, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/lockfile/__pycache__"}, {"size": 116, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/lockfile"}, {"size": 140, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/packaging/__pycache__"}, {"size": 220, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/packaging"}, {"size": 192, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/pkg_resources/__pycache__"}, {"size": 296, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/pkg_resources"}, {"size": 44, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/progress/__pycache__"}, {"size": 64, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/progress"}, {"size": 356, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/requests/__pycache__"}, {"size": 828, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/requests"}, {"size": 236, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/urllib3/__pycache__"}, {"size": 132, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/urllib3/contrib/__pycache__"}, {"size": 48, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__"}, {"size": 80, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/urllib3/contrib/_securetransport"}, {"size": 288, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/urllib3/contrib"}, {"size": 80, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/urllib3/packages/__pycache__"}, {"size": 16, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__"}, {"size": 20, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/urllib3/packages/backports"}, {"size": 16, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__"}, {"size": 28, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname"}, {"size": 176, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/urllib3/packages"}, {"size": 164, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/urllib3/util/__pycache__"}, {"size": 260, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/urllib3/util"}, {"size": 1096, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/urllib3"}, {"size": 64, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/webencodings/__pycache__"}, {"size": 108, "name": "/usr/lib/python3.6/site-packages/pip/_vendor/webencodings"}, {"size": 9840, "name": "/usr/lib/python3.6/site-packages/pip/_vendor"}, {"size": 172, "name": "/usr/lib/python3.6/site-packages/pip/commands/__pycache__"}, {"size": 264, "name": "/usr/lib/python3.6/site-packages/pip/commands"}, {"size": 40, "name": "/usr/lib/python3.6/site-packages/pip/compat/__pycache__"}, {"size": 72, "name": "/usr/lib/python3.6/site-packages/pip/compat"}, {"size": 16, "name": "/usr/lib/python3.6/site-packages/pip/models/__pycache__"}, {"size": 24, "name": "/usr/lib/python3.6/site-packages/pip/models"}, {"size": 24, "name": "/usr/lib/python3.6/site-packages/pip/operations/__pycache__"}, {"size": 36, "name": "/usr/lib/python3.6/site-packages/pip/operations"}, {"size": 164, "name": "/usr/lib/python3.6/site-packages/pip/req/__pycache__"}, {"size": 272, "name": "/usr/lib/python3.6/site-packages/pip/req"}, {"size": 180, "name": "/usr/lib/python3.6/site-packages/pip/utils/__pycache__"}, {"size": 276, "name": "/usr/lib/python3.6/site-packages/pip/utils"}, {"size": 84, "name": "/usr/lib/python3.6/site-packages/pip/vcs/__pycache__"}, {"size": 132, "name": "/usr/lib/python3.6/site-packages/pip/vcs"}, {"size": 11432, "name": "/usr/lib/python3.6/site-packages/pip"}, {"size": 64, "name": "/usr/lib/python3.6/site-packages/pip-9.0.3.dist-info"}, {"size": 15416, "name": "/usr/lib/python3.6/site-packages"}, {"size": 15416, "name": "/usr/lib/python3.6"}, {"size": 0, "name": "/usr/lib/gems/ruby"}, {"size": 0, "name": "/usr/lib/gems"}, {"size": 729240, "name": "/usr/lib"}, {"size": 20, "name": "/usr/lib64/fipscheck"}, {"size": 0, "name": "/usr/lib64/lua/5.1"}, {"size": 0, "name": "/usr/lib64/lua"}, {"size": 0, "name": "/usr/lib64/X11"}, {"size": 0, "name": "/usr/lib64/games"}, {"size": 0, "name": "/usr/lib64/pm-utils/module.d"}, {"size": 0, "name": "/usr/lib64/pm-utils/power.d"}, {"size": 4, "name": "/usr/lib64/pm-utils/sleep.d"}, {"size": 4, "name": "/usr/lib64/pm-utils"}, {"size": 0, "name": "/usr/lib64/sse2"}, {"size": 0, "name": "/usr/lib64/tls"}, {"size": 7444, "name": "/usr/lib64/gconv"}, {"size": 248, "name": "/usr/lib64/pkcs11"}, {"size": 12, "name": "/usr/lib64/security/pam_filter"}, {"size": 1080, "name": "/usr/lib64/security"}, {"size": 0, "name": "/usr/lib64/gio/modules"}, {"size": 0, "name": "/usr/lib64/gio"}, {"size": 0, "name": "/usr/lib64/nss/saved"}, {"size": 1908, "name": "/usr/lib64/nss/unsupported-tools"}, {"size": 2452, "name": "/usr/lib64/nss"}, {"size": 112, "name": "/usr/lib64/tc"}, {"size": 224, "name": "/usr/lib64/openssl/engines"}, {"size": 224, "name": "/usr/lib64/openssl"}, {"size": 92, "name": "/usr/lib64/sa"}, {"size": 56, "name": "/usr/lib64/ruby/digest"}, {"size": 780, "name": "/usr/lib64/ruby/dl"}, {"size": 2624, "name": "/usr/lib64/ruby/enc/trans"}, {"size": 3040, "name": "/usr/lib64/ruby/enc"}, {"size": 24, "name": "/usr/lib64/ruby/io"}, {"size": 16, "name": "/usr/lib64/ruby/mathn"}, {"size": 20, "name": "/usr/lib64/ruby/racc"}, {"size": 0, "name": "/usr/lib64/ruby/vendor_ruby"}, {"size": 5696, "name": "/usr/lib64/ruby"}, {"size": 72, "name": "/usr/lib64/gems/ruby/bigdecimal-1.2.0/lib"}, {"size": 72, "name": "/usr/lib64/gems/ruby/bigdecimal-1.2.0"}, {"size": 64, "name": "/usr/lib64/gems/ruby/json-1.7.7/lib/json/ext"}, {"size": 64, "name": "/usr/lib64/gems/ruby/json-1.7.7/lib/json"}, {"size": 64, "name": "/usr/lib64/gems/ruby/json-1.7.7/lib"}, {"size": 64, "name": "/usr/lib64/gems/ruby/json-1.7.7"}, {"size": 16, "name": "/usr/lib64/gems/ruby/io-console-0.4.2/lib/io"}, {"size": 16, "name": "/usr/lib64/gems/ruby/io-console-0.4.2/lib"}, {"size": 16, "name": "/usr/lib64/gems/ruby/io-console-0.4.2"}, {"size": 28, "name": "/usr/lib64/gems/ruby/psych-2.0.0/lib"}, {"size": 28, "name": "/usr/lib64/gems/ruby/psych-2.0.0"}, {"size": 180, "name": "/usr/lib64/gems/ruby"}, {"size": 180, "name": "/usr/lib64/gems"}, {"size": 56, "name": "/usr/lib64/rtkaio"}, {"size": 16, "name": "/usr/lib64/audit"}, {"size": 0, "name": "/usr/lib64/krb5/plugins/authdata"}, {"size": 0, "name": "/usr/lib64/krb5/plugins/kdb"}, {"size": 0, "name": "/usr/lib64/krb5/plugins/libkrb5"}, {"size": 0, "name": "/usr/lib64/krb5/plugins/preauth"}, {"size": 20, "name": "/usr/lib64/krb5/plugins/tls"}, {"size": 20, "name": "/usr/lib64/krb5/plugins"}, {"size": 20, "name": "/usr/lib64/krb5"}, {"size": 20, "name": "/usr/lib64/libnl/cli/cls"}, {"size": 80, "name": "/usr/lib64/libnl/cli/qdisc"}, {"size": 100, "name": "/usr/lib64/libnl/cli"}, {"size": 100, "name": "/usr/lib64/libnl"}, {"size": 992, "name": "/usr/lib64/girepository-1.0"}, {"size": 4, "name": "/usr/lib64/pkgconfig"}, {"size": 48, "name": "/usr/lib64/sasl2"}, {"size": 20, "name": "/usr/lib64/mysql/plugin"}, {"size": 3084, "name": "/usr/lib64/mysql"}, {"size": 148, "name": "/usr/lib64/libuser"}, {"size": 112, "name": "/usr/lib64/python2.7/json"}, {"size": 164, "name": "/usr/lib64/python2.7/test"}, {"size": 436, "name": "/usr/lib64/python2.7/xml/dom"}, {"size": 180, "name": "/usr/lib64/python2.7/xml/etree"}, {"size": 16, "name": "/usr/lib64/python2.7/xml/parsers"}, {"size": 156, "name": "/usr/lib64/python2.7/xml/sax"}, {"size": 796, "name": "/usr/lib64/python2.7/xml"}, {"size": 2296, "name": "/usr/lib64/python2.7/encodings"}, {"size": 72, "name": "/usr/lib64/python2.7/curses"}, {"size": 648, "name": "/usr/lib64/python2.7/distutils/command"}, {"size": 1548, "name": "/usr/lib64/python2.7/distutils"}, {"size": 208, "name": "/usr/lib64/python2.7/bsddb"}, {"size": 44, "name": "/usr/lib64/python2.7/hotshot"}, {"size": 72, "name": "/usr/lib64/python2.7/email/mime"}, {"size": 456, "name": "/usr/lib64/python2.7/email"}, {"size": 612, "name": "/usr/lib64/python2.7/compiler"}, {"size": 68, "name": "/usr/lib64/python2.7/config"}, {"size": 64, "name": "/usr/lib64/python2.7/ctypes/macholib"}, {"size": 160, "name": "/usr/lib64/python2.7/ctypes"}, {"size": 84, "name": "/usr/lib64/python2.7/idlelib/Icons"}, {"size": 1840, "name": "/usr/lib64/python2.7/idlelib"}, {"size": 8, "name": "/usr/lib64/python2.7/importlib"}, {"size": 3908, "name": "/usr/lib64/python2.7/lib-dynload"}, {"size": 528, "name": "/usr/lib64/python2.7/lib2to3/fixes"}, {"size": 224, "name": "/usr/lib64/python2.7/lib2to3/pgen2"}, {"size": 1132, "name": "/usr/lib64/python2.7/lib2to3"}, {"size": 360, "name": "/usr/lib64/python2.7/logging"}, {"size": 32, "name": "/usr/lib64/python2.7/multiprocessing/dummy"}, {"size": 564, "name": "/usr/lib64/python2.7/multiprocessing"}, {"size": 24, "name": "/usr/lib64/python2.7/sqlite3"}, {"size": 80, "name": "/usr/lib64/python2.7/plat-linux2"}, {"size": 600, "name": "/usr/lib64/python2.7/site-packages/selinux"}, {"size": 16, "name": "/usr/lib64/python2.7/site-packages/pyliblzma-0.5.3-py2.7.egg-info"}, {"size": 16, "name": "/usr/lib64/python2.7/site-packages/pyxattr-0.5.1-py2.7.egg-info"}, {"size": 8, "name": "/usr/lib64/python2.7/site-packages/gi/_gobject"}, {"size": 404, "name": "/usr/lib64/python2.7/site-packages/gi/overrides"}, {"size": 8, "name": "/usr/lib64/python2.7/site-packages/gi/repository"}, {"size": 972, "name": "/usr/lib64/python2.7/site-packages/gi"}, {"size": 88, "name": "/usr/lib64/python2.7/site-packages/pygtkcompat"}, {"size": 16, "name": "/usr/lib64/python2.7/site-packages/curl"}, {"size": 16, "name": "/usr/lib64/python2.7/site-packages/dbus/mainloop"}, {"size": 372, "name": "/usr/lib64/python2.7/site-packages/dbus"}, {"size": 160, "name": "/usr/lib64/python2.7/site-packages/rpm"}, {"size": 116, "name": "/usr/lib64/python2.7/site-packages/gpgme"}, {"size": 508, "name": "/usr/lib64/python2.7/site-packages/yaml"}, {"size": 8, "name": "/usr/lib64/python2.7/site-packages/backports"}, {"size": 16, "name": "/usr/lib64/python2.7/site-packages/policycoreutils"}, {"size": 232, "name": "/usr/lib64/python2.7/site-packages/seobject"}, {"size": 620, "name": "/usr/lib64/python2.7/site-packages/sepolgen"}, {"size": 212, "name": "/usr/lib64/python2.7/site-packages/sepolicy/templates"}, {"size": 472, "name": "/usr/lib64/python2.7/site-packages/sepolicy"}, {"size": 6072, "name": "/usr/lib64/python2.7/site-packages"}, {"size": 804, "name": "/usr/lib64/python2.7/pydoc_data"}, {"size": 528, "name": "/usr/lib64/python2.7/unittest/test"}, {"size": 776, "name": "/usr/lib64/python2.7/unittest"}, {"size": 144, "name": "/usr/lib64/python2.7/wsgiref"}, {"size": 31672, "name": "/usr/lib64/python2.7"}, {"size": 1336, "name": "/usr/lib64/xtables"}, {"size": 76, "name": "/usr/lib64/gettext"}, {"size": 464, "name": "/usr/lib64/NetworkManager/1.18.0-5.el7_7.1"}, {"size": 464, "name": "/usr/lib64/NetworkManager"}, {"size": 60, "name": "/usr/lib64/plymouth/renderers"}, {"size": 96, "name": "/usr/lib64/plymouth"}, {"size": 72, "name": "/usr/lib64/device-mapper"}, {"size": 252, "name": "/usr/lib64/ebtables"}, {"size": 416, "name": "/usr/lib64/elfutils"}, {"size": 364, "name": "/usr/lib64/perl5/vendor_perl/auto/Encode/Byte"}, {"size": 2044, "name": "/usr/lib64/perl5/vendor_perl/auto/Encode/CN"}, {"size": 44, "name": "/usr/lib64/perl5/vendor_perl/auto/Encode/EBCDIC"}, {"size": 2684, "name": "/usr/lib64/perl5/vendor_perl/auto/Encode/JP"}, {"size": 2356, "name": "/usr/lib64/perl5/vendor_perl/auto/Encode/KR"}, {"size": 56, "name": "/usr/lib64/perl5/vendor_perl/auto/Encode/Symbol"}, {"size": 1976, "name": "/usr/lib64/perl5/vendor_perl/auto/Encode/TW"}, {"size": 20, "name": "/usr/lib64/perl5/vendor_perl/auto/Encode/Unicode"}, {"size": 9580, "name": "/usr/lib64/perl5/vendor_perl/auto/Encode"}, {"size": 24, "name": "/usr/lib64/perl5/vendor_perl/auto/Time/HiRes"}, {"size": 24, "name": "/usr/lib64/perl5/vendor_perl/auto/Time"}, {"size": 44, "name": "/usr/lib64/perl5/vendor_perl/auto/Socket"}, {"size": 88, "name": "/usr/lib64/perl5/vendor_perl/auto/Storable"}, {"size": 12, "name": "/usr/lib64/perl5/vendor_perl/auto/Cwd"}, {"size": 28, "name": "/usr/lib64/perl5/vendor_perl/auto/List/Util"}, {"size": 28, "name": "/usr/lib64/perl5/vendor_perl/auto/List"}, {"size": 44, "name": "/usr/lib64/perl5/vendor_perl/auto/threads/shared"}, {"size": 88, "name": "/usr/lib64/perl5/vendor_perl/auto/threads"}, {"size": 16, "name": "/usr/lib64/perl5/vendor_perl/auto/Filter/Util/Call"}, {"size": 16, "name": "/usr/lib64/perl5/vendor_perl/auto/Filter/Util/Exec"}, {"size": 32, "name": "/usr/lib64/perl5/vendor_perl/auto/Filter/Util"}, {"size": 12, "name": "/usr/lib64/perl5/vendor_perl/auto/Filter/decrypt"}, {"size": 12, "name": "/usr/lib64/perl5/vendor_perl/auto/Filter/tee"}, {"size": 56, "name": "/usr/lib64/perl5/vendor_perl/auto/Filter"}, {"size": 36, "name": "/usr/lib64/perl5/vendor_perl/auto/Term/ReadKey"}, {"size": 36, "name": "/usr/lib64/perl5/vendor_perl/auto/Term"}, {"size": 9956, "name": "/usr/lib64/perl5/vendor_perl/auto"}, {"size": 8, "name": "/usr/lib64/perl5/vendor_perl/Encode/CN"}, {"size": 16, "name": "/usr/lib64/perl5/vendor_perl/Encode/JP"}, {"size": 4, "name": "/usr/lib64/perl5/vendor_perl/Encode/KR"}, {"size": 4, "name": "/usr/lib64/perl5/vendor_perl/Encode/MIME/Header"}, {"size": 16, "name": "/usr/lib64/perl5/vendor_perl/Encode/MIME"}, {"size": 4, "name": "/usr/lib64/perl5/vendor_perl/Encode/Unicode"}, {"size": 200, "name": "/usr/lib64/perl5/vendor_perl/Encode"}, {"size": 24, "name": "/usr/lib64/perl5/vendor_perl/Time"}, {"size": 72, "name": "/usr/lib64/perl5/vendor_perl/File/Spec"}, {"size": 84, "name": "/usr/lib64/perl5/vendor_perl/File"}, {"size": 4, "name": "/usr/lib64/perl5/vendor_perl/List/Util"}, {"size": 12, "name": "/usr/lib64/perl5/vendor_perl/List"}, {"size": 12, "name": "/usr/lib64/perl5/vendor_perl/Scalar"}, {"size": 20, "name": "/usr/lib64/perl5/vendor_perl/threads"}, {"size": 48, "name": "/usr/lib64/perl5/vendor_perl/Filter/Util"}, {"size": 68, "name": "/usr/lib64/perl5/vendor_perl/Filter"}, {"size": 16, "name": "/usr/lib64/perl5/vendor_perl/Term"}, {"size": 10592, "name": "/usr/lib64/perl5/vendor_perl"}, {"size": 1612, "name": "/usr/lib64/perl5/CORE"}, {"size": 4, "name": "/usr/lib64/perl5/auto/DB_File"}, {"size": 72, "name": "/usr/lib64/perl5/auto/B"}, {"size": 124, "name": "/usr/lib64/perl5/auto/Devel/PPPort"}, {"size": 16, "name": "/usr/lib64/perl5/auto/Devel/Peek"}, {"size": 140, "name": "/usr/lib64/perl5/auto/Devel"}, {"size": 0, "name": "/usr/lib64/perl5/auto/Digest"}, {"size": 20, "name": "/usr/lib64/perl5/auto/Fcntl"}, {"size": 28, "name": "/usr/lib64/perl5/auto/File/Glob"}, {"size": 28, "name": "/usr/lib64/perl5/auto/File"}, {"size": 0, "name": "/usr/lib64/perl5/auto/Filter"}, {"size": 24, "name": "/usr/lib64/perl5/auto/GDBM_File"}, {"size": 20, "name": "/usr/lib64/perl5/auto/Hash/Util/FieldHash"}, {"size": 32, "name": "/usr/lib64/perl5/auto/Hash/Util"}, {"size": 32, "name": "/usr/lib64/perl5/auto/Hash"}, {"size": 16, "name": "/usr/lib64/perl5/auto/I18N/Langinfo"}, {"size": 16, "name": "/usr/lib64/perl5/auto/I18N"}, {"size": 20, "name": "/usr/lib64/perl5/auto/IO"}, {"size": 28, "name": "/usr/lib64/perl5/auto/IPC/SysV"}, {"size": 28, "name": "/usr/lib64/perl5/auto/IPC"}, {"size": 16, "name": "/usr/lib64/perl5/auto/MIME/Base64"}, {"size": 16, "name": "/usr/lib64/perl5/auto/MIME"}, {"size": 16, "name": "/usr/lib64/perl5/auto/Math/BigInt/FastCalc"}, {"size": 16, "name": "/usr/lib64/perl5/auto/Math/BigInt"}, {"size": 16, "name": "/usr/lib64/perl5/auto/Math"}, {"size": 20, "name": "/usr/lib64/perl5/auto/NDBM_File"}, {"size": 20, "name": "/usr/lib64/perl5/auto/ODBM_File"}, {"size": 24, "name": "/usr/lib64/perl5/auto/Opcode"}, {"size": 88, "name": "/usr/lib64/perl5/auto/POSIX"}, {"size": 28, "name": "/usr/lib64/perl5/auto/PerlIO/encoding"}, {"size": 16, "name": "/usr/lib64/perl5/auto/PerlIO/mmap"}, {"size": 16, "name": "/usr/lib64/perl5/auto/PerlIO/scalar"}, {"size": 24, "name": "/usr/lib64/perl5/auto/PerlIO/via"}, {"size": 84, "name": "/usr/lib64/perl5/auto/PerlIO"}, {"size": 28, "name": "/usr/lib64/perl5/auto/SDBM_File"}, {"size": 8, "name": "/usr/lib64/perl5/auto/Sys/Hostname"}, {"size": 8, "name": "/usr/lib64/perl5/auto/Sys"}, {"size": 0, "name": "/usr/lib64/perl5/auto/Text"}, {"size": 12, "name": "/usr/lib64/perl5/auto/Tie/Hash/NamedCapture"}, {"size": 12, "name": "/usr/lib64/perl5/auto/Tie/Hash"}, {"size": 12, "name": "/usr/lib64/perl5/auto/Tie"}, {"size": 0, "name": "/usr/lib64/perl5/auto/Time"}, {"size": 1228, "name": "/usr/lib64/perl5/auto/Unicode/Collate"}, {"size": 544, "name": "/usr/lib64/perl5/auto/Unicode/Normalize"}, {"size": 1772, "name": "/usr/lib64/perl5/auto/Unicode"}, {"size": 20, "name": "/usr/lib64/perl5/auto/arybase"}, {"size": 12, "name": "/usr/lib64/perl5/auto/attributes"}, {"size": 20, "name": "/usr/lib64/perl5/auto/mro"}, {"size": 324, "name": "/usr/lib64/perl5/auto/re"}, {"size": 4, "name": "/usr/lib64/perl5/auto/sdbm"}, {"size": 2856, "name": "/usr/lib64/perl5/auto"}, {"size": 84, "name": "/usr/lib64/perl5/B"}, {"size": 224, "name": "/usr/lib64/perl5/Devel"}, {"size": 0, "name": "/usr/lib64/perl5/Digest"}, {"size": 16, "name": "/usr/lib64/perl5/File"}, {"size": 0, "name": "/usr/lib64/perl5/Filter"}, {"size": 32, "name": "/usr/lib64/perl5/Hash/Util"}, {"size": 48, "name": "/usr/lib64/perl5/Hash"}, {"size": 4, "name": "/usr/lib64/perl5/I18N"}, {"size": 20, "name": "/usr/lib64/perl5/IO/Socket"}, {"size": 104, "name": "/usr/lib64/perl5/IO"}, {"size": 32, "name": "/usr/lib64/perl5/IPC"}, {"size": 12, "name": "/usr/lib64/perl5/MIME"}, {"size": 4, "name": "/usr/lib64/perl5/Math/BigInt"}, {"size": 4, "name": "/usr/lib64/perl5/Math"}, {"size": 20, "name": "/usr/lib64/perl5/PerlIO"}, {"size": 4, "name": "/usr/lib64/perl5/Sys"}, {"size": 0, "name": "/usr/lib64/perl5/Text"}, {"size": 4, "name": "/usr/lib64/perl5/Tie/Hash"}, {"size": 4, "name": "/usr/lib64/perl5/Tie"}, {"size": 0, "name": "/usr/lib64/perl5/Time"}, {"size": 16, "name": "/usr/lib64/perl5/Unicode/Collate"}, {"size": 92, "name": "/usr/lib64/perl5/Unicode"}, {"size": 136, "name": "/usr/lib64/perl5/asm"}, {"size": 48, "name": "/usr/lib64/perl5/asm-generic"}, {"size": 208, "name": "/usr/lib64/perl5/bits"}, {"size": 8, "name": "/usr/lib64/perl5/gnu"}, {"size": 12, "name": "/usr/lib64/perl5/linux"}, {"size": 0, "name": "/usr/lib64/perl5/machine"}, {"size": 68, "name": "/usr/lib64/perl5/sys"}, {"size": 16820, "name": "/usr/lib64/perl5"}, {"size": 2916, "name": "/usr/lib64/bind9-export"}, {"size": 712, "name": "/usr/lib64/rsyslog"}, {"size": 156, "name": "/usr/lib64/man-db"}, {"size": 296, "name": "/usr/lib64/setools/apol_tcl"}, {"size": 296, "name": "/usr/lib64/setools"}, {"size": 0, "name": "/usr/lib64/dbus-1"}, {"size": 1812, "name": "/usr/lib64/python3.6/encodings/__pycache__"}, {"size": 3560, "name": "/usr/lib64/python3.6/encodings"}, {"size": 12, "name": "/usr/lib64/python3.6/test/__pycache__"}, {"size": 268, "name": "/usr/lib64/python3.6/test/support/__pycache__"}, {"size": 388, "name": "/usr/lib64/python3.6/test/support"}, {"size": 404, "name": "/usr/lib64/python3.6/test"}, {"size": 52, "name": "/usr/lib64/python3.6/ensurepip/__pycache__"}, {"size": 20, "name": "/usr/lib64/python3.6/ensurepip/rewheel/__pycache__"}, {"size": 28, "name": "/usr/lib64/python3.6/ensurepip/rewheel"}, {"size": 96, "name": "/usr/lib64/python3.6/ensurepip"}, {"size": 56, "name": "/usr/lib64/python3.6/venv/__pycache__"}, {"size": 4, "name": "/usr/lib64/python3.6/venv/scripts/common"}, {"size": 8, "name": "/usr/lib64/python3.6/venv/scripts/posix"}, {"size": 12, "name": "/usr/lib64/python3.6/venv/scripts"}, {"size": 92, "name": "/usr/lib64/python3.6/venv"}, {"size": 9376, "name": "/usr/lib64/python3.6/__pycache__"}, {"size": 12, "name": "/usr/lib64/python3.6/xml/__pycache__"}, {"size": 396, "name": "/usr/lib64/python3.6/xml/dom/__pycache__"}, {"size": 544, "name": "/usr/lib64/python3.6/xml/dom"}, {"size": 180, "name": "/usr/lib64/python3.6/xml/etree/__pycache__"}, {"size": 264, "name": "/usr/lib64/python3.6/xml/etree"}, {"size": 24, "name": "/usr/lib64/python3.6/xml/parsers/__pycache__"}, {"size": 32, "name": "/usr/lib64/python3.6/xml/parsers"}, {"size": 216, "name": "/usr/lib64/python3.6/xml/sax/__pycache__"}, {"size": 288, "name": "/usr/lib64/python3.6/xml/sax"}, {"size": 1144, "name": "/usr/lib64/python3.6/xml"}, {"size": 408, "name": "/usr/lib64/python3.6/http/__pycache__"}, {"size": 616, "name": "/usr/lib64/python3.6/http"}, {"size": 856, "name": "/usr/lib64/python3.6/email/__pycache__"}, {"size": 112, "name": "/usr/lib64/python3.6/email/mime/__pycache__"}, {"size": 144, "name": "/usr/lib64/python3.6/email/mime"}, {"size": 1400, "name": "/usr/lib64/python3.6/email"}, {"size": 292, "name": "/usr/lib64/python3.6/importlib/__pycache__"}, {"size": 424, "name": "/usr/lib64/python3.6/importlib"}, {"size": 1084, "name": "/usr/lib64/python3.6/asyncio/__pycache__"}, {"size": 1524, "name": "/usr/lib64/python3.6/asyncio"}, {"size": 648, "name": "/usr/lib64/python3.6/multiprocessing/__pycache__"}, {"size": 24, "name": "/usr/lib64/python3.6/multiprocessing/dummy/__pycache__"}, {"size": 32, "name": "/usr/lib64/python3.6/multiprocessing/dummy"}, {"size": 936, "name": "/usr/lib64/python3.6/multiprocessing"}, {"size": 144, "name": "/usr/lib64/python3.6/collections/__pycache__"}, {"size": 196, "name": "/usr/lib64/python3.6/collections"}, {"size": 12, "name": "/usr/lib64/python3.6/concurrent/__pycache__"}, {"size": 136, "name": "/usr/lib64/python3.6/concurrent/futures/__pycache__"}, {"size": 196, "name": "/usr/lib64/python3.6/concurrent/futures"}, {"size": 212, "name": "/usr/lib64/python3.6/concurrent"}, {"size": 72, "name": "/usr/lib64/python3.6/config-3.6m-x86_64-linux-gnu"}, {"size": 332, "name": "/usr/lib64/python3.6/lib2to3/__pycache__"}, {"size": 700, "name": "/usr/lib64/python3.6/lib2to3/fixes/__pycache__"}, {"size": 944, "name": "/usr/lib64/python3.6/lib2to3/fixes"}, {"size": 200, "name": "/usr/lib64/python3.6/lib2to3/pgen2/__pycache__"}, {"size": 288, "name": "/usr/lib64/python3.6/lib2to3/pgen2"}, {"size": 1748, "name": "/usr/lib64/python3.6/lib2to3"}, {"size": 112, "name": "/usr/lib64/python3.6/ctypes/__pycache__"}, {"size": 60, "name": "/usr/lib64/python3.6/ctypes/macholib/__pycache__"}, {"size": 88, "name": "/usr/lib64/python3.6/ctypes/macholib"}, {"size": 244, "name": "/usr/lib64/python3.6/ctypes"}, {"size": 88, "name": "/usr/lib64/python3.6/curses/__pycache__"}, {"size": 116, "name": "/usr/lib64/python3.6/curses"}, {"size": 80, "name": "/usr/lib64/python3.6/dbm/__pycache__"}, {"size": 108, "name": "/usr/lib64/python3.6/dbm"}, {"size": 896, "name": "/usr/lib64/python3.6/distutils/__pycache__"}, {"size": 620, "name": "/usr/lib64/python3.6/distutils/command/__pycache__"}, {"size": 924, "name": "/usr/lib64/python3.6/distutils/command"}, {"size": 2288, "name": "/usr/lib64/python3.6/distutils"}, {"size": 128, "name": "/usr/lib64/python3.6/json/__pycache__"}, {"size": 184, "name": "/usr/lib64/python3.6/json"}, {"size": 1188, "name": "/usr/lib64/python3.6/pydoc_data/__pycache__"}, {"size": 1824, "name": "/usr/lib64/python3.6/pydoc_data"}, {"size": 4412, "name": "/usr/lib64/python3.6/lib-dynload"}, {"size": 336, "name": "/usr/lib64/python3.6/logging/__pycache__"}, {"size": 504, "name": "/usr/lib64/python3.6/logging"}, {"size": 208, "name": "/usr/lib64/python3.6/html/__pycache__"}, {"size": 312, "name": "/usr/lib64/python3.6/html"}, {"size": 0, "name": "/usr/lib64/python3.6/site-packages/__pycache__"}, {"size": 4, "name": "/usr/lib64/python3.6/site-packages"}, {"size": 40, "name": "/usr/lib64/python3.6/sqlite3/__pycache__"}, {"size": 52, "name": "/usr/lib64/python3.6/sqlite3"}, {"size": 516, "name": "/usr/lib64/python3.6/unittest/__pycache__"}, {"size": 740, "name": "/usr/lib64/python3.6/unittest"}, {"size": 356, "name": "/usr/lib64/python3.6/urllib/__pycache__"}, {"size": 516, "name": "/usr/lib64/python3.6/urllib"}, {"size": 172, "name": "/usr/lib64/python3.6/wsgiref/__pycache__"}, {"size": 240, "name": "/usr/lib64/python3.6/wsgiref"}, {"size": 204, "name": "/usr/lib64/python3.6/xmlrpc/__pycache__"}, {"size": 296, "name": "/usr/lib64/python3.6/xmlrpc"}, {"size": 37988, "name": "/usr/lib64/python3.6"}, {"size": 186568, "name": "/usr/lib64"}, {"size": 96, "name": "/usr/share/doc/libgcc-4.8.5"}, {"size": 696, "name": "/usr/share/doc/grub2-common-2.02"}, {"size": 52, "name": "/usr/share/doc/ruby-2.0.0.648"}, {"size": 80, "name": "/usr/share/doc/perl-5.16.3"}, {"size": 12, "name": "/usr/share/doc/ncurses-base-5.9"}, {"size": 36, "name": "/usr/share/doc/bash-4.2.46"}, {"size": 176, "name": "/usr/share/doc/ncurses-5.9"}, {"size": 276, "name": "/usr/share/doc/glibc-common-2.17"}, {"size": 12, "name": "/usr/share/doc/setup-2.8.71"}, {"size": 220, "name": "/usr/share/doc/glibc-2.17"}, {"size": 100, "name": "/usr/share/doc/zlib-1.2.7"}, {"size": 44, "name": "/usr/share/doc/libcom_err-1.42.9"}, {"size": 8, "name": "/usr/share/doc/popt-1.13"}, {"size": 36, "name": "/usr/share/doc/info-5.1"}, {"size": 68, "name": "/usr/share/doc/gawk-4.0.2"}, {"size": 20, "name": "/usr/share/doc/libffi-3.0.13"}, {"size": 24, "name": "/usr/share/doc/libcap-2.22"}, {"size": 316, "name": "/usr/share/doc/pcre-8.32"}, {"size": 156, "name": "/usr/share/doc/sed-4.2.2"}, {"size": 460, "name": "/usr/share/doc/grep-2.20"}, {"size": 28, "name": "/usr/share/doc/p11-kit-0.23.5"}, {"size": 28, "name": "/usr/share/doc/keyutils-libs-1.5.8"}, {"size": 44, "name": "/usr/share/doc/gmp-6.0.0"}, {"size": 20, "name": "/usr/share/doc/libverto-0.2.5"}, {"size": 360, "name": "/usr/share/doc/libtasn1-4.10"}, {"size": 4, "name": "/usr/share/doc/ca-certificates-2018.2.22"}, {"size": 24, "name": "/usr/share/doc/centos-release"}, {"size": 56, "name": "/usr/share/doc/pkgconfig-0.27.1"}, {"size": 164, "name": "/usr/share/doc/coreutils-8.22/fileutils"}, {"size": 76, "name": "/usr/share/doc/coreutils-8.22/sh-utils"}, {"size": 96, "name": "/usr/share/doc/coreutils-8.22/textutils"}, {"size": 940, "name": "/usr/share/doc/coreutils-8.22"}, {"size": 12, "name": "/usr/share/doc/krb5-libs-1.15.1/examples"}, {"size": 88, "name": "/usr/share/doc/krb5-libs-1.15.1"}, {"size": 88, "name": "/usr/share/doc/xz-libs-5.2.2"}, {"size": 4, "name": "/usr/share/doc/libuuid-2.23.2"}, {"size": 4, "name": "/usr/share/doc/libblkid-2.23.2"}, {"size": 4, "name": "/usr/share/doc/bzip2-libs-1.0.6"}, {"size": 12, "name": "/usr/share/doc/libdb-5.3.21"}, {"size": 104, "name": "/usr/share/doc/readline-6.2"}, {"size": 120, "name": "/usr/share/doc/libxml2-2.9.1"}, {"size": 76, "name": "/usr/share/doc/libgpg-error-1.12"}, {"size": 28, "name": "/usr/share/doc/libcap-ng-0.7.5"}, {"size": 68, "name": "/usr/share/doc/libgcrypt-1.5.3"}, {"size": 96, "name": "/usr/share/doc/gzip-1.5"}, {"size": 136, "name": "/usr/share/doc/cpio-2.11"}, {"size": 12, "name": "/usr/share/doc/expat-2.1.0"}, {"size": 328, "name": "/usr/share/doc/lua-5.1.4"}, {"size": 524, "name": "/usr/share/doc/findutils-4.5.11"}, {"size": 60, "name": "/usr/share/doc/which-2.20"}, {"size": 56, "name": "/usr/share/doc/diffutils-3.3"}, {"size": 28, "name": "/usr/share/doc/libnl3-3.2.28"}, {"size": 72, "name": "/usr/share/doc/cracklib-2.9.0"}, {"size": 4, "name": "/usr/share/doc/sqlite-3.7.17"}, {"size": 4, "name": "/usr/share/doc/libmount-2.23.2"}, {"size": 392, "name": "/usr/share/doc/glib2-2.56.1"}, {"size": 88, "name": "/usr/share/doc/shared-mime-info-1.8"}, {"size": 48, "name": "/usr/share/doc/file-libs-5.11"}, {"size": 48, "name": "/usr/share/doc/file-5.11"}, {"size": 32, "name": "/usr/share/doc/libmnl-1.0.3"}, {"size": 32, "name": "/usr/share/doc/libaio-0.3.109"}, {"size": 16, "name": "/usr/share/doc/libcroco-0.6.12"}, {"size": 580, "name": "/usr/share/doc/pam-1.1.8/html"}, {"size": 232, "name": "/usr/share/doc/pam-1.1.8/txts"}, {"size": 1060, "name": "/usr/share/doc/pam-1.1.8"}, {"size": 32, "name": "/usr/share/doc/libpwquality-1.2.3"}, {"size": 28, "name": "/usr/share/doc/libnl3-cli-3.2.28"}, {"size": 104, "name": "/usr/share/doc/libassuan-2.1.0"}, {"size": 236, "name": "/usr/share/doc/cyrus-sasl-lib-2.1.26"}, {"size": 672, "name": "/usr/share/doc/xz-5.2.2"}, {"size": 200, "name": "/usr/share/doc/groff-base-1.22.2"}, {"size": 32, "name": "/usr/share/doc/libgomp-4.8.5"}, {"size": 12, "name": "/usr/share/doc/libunistring-0.9.3"}, {"size": 208, "name": "/usr/share/doc/libidn-1.28"}, {"size": 16, "name": "/usr/share/doc/libedit-3.0"}, {"size": 44, "name": "/usr/share/doc/e2fsprogs-libs-1.42.9"}, {"size": 24, "name": "/usr/share/doc/jansson-2.10"}, {"size": 36, "name": "/usr/share/doc/sysvinit-tools-2.88"}, {"size": 24, "name": "/usr/share/doc/libnfnetlink-1.0.1"}, {"size": 100, "name": "/usr/share/doc/tcp_wrappers-libs-7.6"}, {"size": 728, "name": "/usr/share/doc/slang-2.2.4"}, {"size": 28, "name": "/usr/share/doc/newt-0.52.15"}, {"size": 12, "name": "/usr/share/doc/lz4-1.7.5"}, {"size": 40, "name": "/usr/share/doc/lzo-2.06"}, {"size": 60, "name": "/usr/share/doc/gdbm-1.10"}, {"size": 80, "name": "/usr/share/doc/python-libs-2.7.5"}, {"size": 72, "name": "/usr/share/doc/python-2.7.5"}, {"size": 44, "name": "/usr/share/doc/python-decorator-3.4.0"}, {"size": 4, "name": "/usr/share/doc/hostname-3.13"}, {"size": 60, "name": "/usr/share/doc/ethtool-4.8"}, {"size": 20, "name": "/usr/share/doc/pciutils-libs-3.5.1"}, {"size": 28, "name": "/usr/share/doc/python-slip-0.4.0/dbus/example"}, {"size": 32, "name": "/usr/share/doc/python-slip-0.4.0/dbus"}, {"size": 52, "name": "/usr/share/doc/python-slip-0.4.0"}, {"size": 12, "name": "/usr/share/doc/yum-metadata-parser-1.1.4"}, {"size": 148, "name": "/usr/share/doc/ruby-libs-2.0.0.648"}, {"size": 128, "name": "/usr/share/doc/pyliblzma-0.5.3"}, {"size": 8, "name": "/usr/share/doc/newt-python-0.52.15"}, {"size": 20, "name": "/usr/share/doc/python-schedutils-0.4"}, {"size": 376, "name": "/usr/share/doc/python-configobj-4.7.2"}, {"size": 40, "name": "/usr/share/doc/python-iniparse-0.4"}, {"size": 36, "name": "/usr/share/doc/pyxattr-0.5.1"}, {"size": 20, "name": "/usr/share/doc/libnetfilter_conntrack-1.0.6"}, {"size": 24, "name": "/usr/share/doc/iptables-1.4.21"}, {"size": 44, "name": "/usr/share/doc/iproute-4.11.0"}, {"size": 164, "name": "/usr/share/doc/gettext-0.19.8.1"}, {"size": 4, "name": "/usr/share/doc/less-458"}, {"size": 28, "name": "/usr/share/doc/libteam-1.27"}, {"size": 776, "name": "/usr/share/doc/lsof-4.87"}, {"size": 160, "name": "/usr/share/doc/sysstat-10.1.5"}, {"size": 24, "name": "/usr/share/doc/nftables-0.8"}, {"size": 148, "name": "/usr/share/doc/python-gobject-base-3.22.0"}, {"size": 20, "name": "/usr/share/doc/grubby-8.28"}, {"size": 20, "name": "/usr/share/doc/fipscheck-1.4.1"}, {"size": 20, "name": "/usr/share/doc/libnftnl-1.0.8"}, {"size": 368, "name": "/usr/share/doc/curl-7.29.0"}, {"size": 872, "name": "/usr/share/doc/rpm-4.11.3"}, {"size": 104, "name": "/usr/share/doc/openldap-2.4.44"}, {"size": 112, "name": "/usr/share/doc/libuser-0.60"}, {"size": 32, "name": "/usr/share/doc/python-pycurl-7.19.0/doc"}, {"size": 48, "name": "/usr/share/doc/python-pycurl-7.19.0/examples"}, {"size": 128, "name": "/usr/share/doc/python-pycurl-7.19.0/tests"}, {"size": 280, "name": "/usr/share/doc/python-pycurl-7.19.0"}, {"size": 44, "name": "/usr/share/doc/python-urlgrabber-3.10"}, {"size": 32, "name": "/usr/share/doc/logrotate-3.8.6"}, {"size": 4, "name": "/usr/share/doc/binutils-2.27"}, {"size": 8, "name": "/usr/share/doc/centos-logos-70.0.6"}, {"size": 4, "name": "/usr/share/doc/alsa-lib"}, {"size": 736, "name": "/usr/share/doc/tar-1.26"}, {"size": 68, "name": "/usr/share/doc/acl-2.2.51"}, {"size": 96, "name": "/usr/share/doc/make-3.82"}, {"size": 56, "name": "/usr/share/doc/openssl-1.0.2k"}, {"size": 112, "name": "/usr/share/doc/pinentry-0.8.1"}, {"size": 24, "name": "/usr/share/doc/mozjs17-17.0.0"}, {"size": 104, "name": "/usr/share/doc/snappy-1.1.0"}, {"size": 44, "name": "/usr/share/doc/libss-1.42.9"}, {"size": 92, "name": "/usr/share/doc/GeoIP-1.5.0"}, {"size": 440, "name": "/usr/share/doc/libpng-1.5.13"}, {"size": 4, "name": "/usr/share/doc/freetype-2.8"}, {"size": 4, "name": "/usr/share/doc/libsmartcols-2.23.2"}, {"size": 84, "name": "/usr/share/doc/ustr-1.0.4"}, {"size": 32, "name": "/usr/share/doc/libutempter-1.1.6"}, {"size": 20, "name": "/usr/share/doc/libfastjson-0.99.4"}, {"size": 28, "name": "/usr/share/doc/libndp-1.2"}, {"size": 20, "name": "/usr/share/doc/libseccomp-2.3.1"}, {"size": 36, "name": "/usr/share/doc/libdaemon-0.14"}, {"size": 84, "name": "/usr/share/doc/qrencode-libs-3.4.1"}, {"size": 96, "name": "/usr/share/doc/libpipeline-1.2.3"}, {"size": 40, "name": "/usr/share/doc/libestr-0.1.9"}, {"size": 44, "name": "/usr/share/doc/lsscsi-0.27"}, {"size": 28, "name": "/usr/share/doc/json-c-0.11"}, {"size": 120, "name": "/usr/share/doc/procps-ng-3.3.10"}, {"size": 172, "name": "/usr/share/doc/util-linux-2.23.2"}, {"size": 364, "name": "/usr/share/doc/dracut-033"}, {"size": 52, "name": "/usr/share/doc/kmod-20"}, {"size": 348, "name": "/usr/share/doc/systemd"}, {"size": 20, "name": "/usr/share/doc/dbus-1.10.24/examples"}, {"size": 144, "name": "/usr/share/doc/dbus-1.10.24"}, {"size": 64, "name": "/usr/share/doc/polkit-0.112"}, {"size": 40, "name": "/usr/share/doc/polkit-pkla-compat-0.1"}, {"size": 148, "name": "/usr/share/doc/iputils-20160308"}, {"size": 0, "name": "/usr/share/doc/policycoreutils"}, {"size": 60, "name": "/usr/share/doc/wpa_supplicant-2.6/examples/p2p"}, {"size": 176, "name": "/usr/share/doc/wpa_supplicant-2.6/examples"}, {"size": 392, "name": "/usr/share/doc/wpa_supplicant-2.6"}, {"size": 44, "name": "/usr/share/doc/os-prober-1.58"}, {"size": 92, "name": "/usr/share/doc/cronie-1.4.11"}, {"size": 4, "name": "/usr/share/doc/NetworkManager/examples"}, {"size": 4, "name": "/usr/share/doc/NetworkManager"}, {"size": 444, "name": "/usr/share/doc/openssh-7.4p1"}, {"size": 224, "name": "/usr/share/doc/dhcp-common-4.2.5"}, {"size": 12, "name": "/usr/share/doc/dhclient-4.2.5"}, {"size": 24, "name": "/usr/share/doc/hwdata-0.252"}, {"size": 12, "name": "/usr/share/doc/libpciaccess-0.14"}, {"size": 32, "name": "/usr/share/doc/ebtables-2.0.10"}, {"size": 24, "name": "/usr/share/doc/fxload-2002_04_11"}, {"size": 60, "name": "/usr/share/doc/alsa-firmware-1.0.28"}, {"size": 24, "name": "/usr/share/doc/alsa-tools-1.1.0/hdsploader"}, {"size": 4, "name": "/usr/share/doc/alsa-tools-1.1.0/mixartloader"}, {"size": 4, "name": "/usr/share/doc/alsa-tools-1.1.0/usx2yloader"}, {"size": 4, "name": "/usr/share/doc/alsa-tools-1.1.0/vxloader"}, {"size": 36, "name": "/usr/share/doc/alsa-tools-1.1.0"}, {"size": 68, "name": "/usr/share/doc/teamd-1.27/example_configs"}, {"size": 12, "name": "/usr/share/doc/teamd-1.27/example_ifcfgs/1"}, {"size": 12, "name": "/usr/share/doc/teamd-1.27/example_ifcfgs/2"}, {"size": 12, "name": "/usr/share/doc/teamd-1.27/example_ifcfgs/3"}, {"size": 36, "name": "/usr/share/doc/teamd-1.27/example_ifcfgs"}, {"size": 132, "name": "/usr/share/doc/teamd-1.27"}, {"size": 40, "name": "/usr/share/doc/dbus-glib-0.100"}, {"size": 380, "name": "/usr/share/doc/dbus-python-1.1.1"}, {"size": 28, "name": "/usr/share/doc/python-slip-dbus-0.4.0/example"}, {"size": 32, "name": "/usr/share/doc/python-slip-dbus-0.4.0"}, {"size": 32, "name": "/usr/share/doc/python-pyudev-0.15"}, {"size": 12, "name": "/usr/share/doc/plymouth-0.8.9"}, {"size": 24, "name": "/usr/share/doc/virt-what-1.18"}, {"size": 196, "name": "/usr/share/doc/pth-2.0.7"}, {"size": 20, "name": "/usr/share/doc/gnupg2-2.0.22/examples"}, {"size": 244, "name": "/usr/share/doc/gnupg2-2.0.22"}, {"size": 140, "name": "/usr/share/doc/gpgme-1.3.2"}, {"size": 4, "name": "/usr/share/doc/pygpgme-0.3/examples"}, {"size": 44, "name": "/usr/share/doc/pygpgme-0.3/tests/keys"}, {"size": 144, "name": "/usr/share/doc/pygpgme-0.3/tests"}, {"size": 156, "name": "/usr/share/doc/pygpgme-0.3"}, {"size": 20, "name": "/usr/share/doc/yum-plugin-fastestmirror-1.1.31"}, {"size": 576, "name": "/usr/share/doc/yum-3.4.3"}, {"size": 276, "name": "/usr/share/doc/kbd-1.15.5"}, {"size": 84, "name": "/usr/share/doc/kexec-tools-2.0.15"}, {"size": 32, "name": "/usr/share/doc/authconfig-6.2.8"}, {"size": 1112, "name": "/usr/share/doc/postfix-2.10.1/README_FILES"}, {"size": 4, "name": "/usr/share/doc/postfix-2.10.1/examples/chroot-setup"}, {"size": 4, "name": "/usr/share/doc/postfix-2.10.1/examples/qmail-local"}, {"size": 16, "name": "/usr/share/doc/postfix-2.10.1/examples/smtpd-policy"}, {"size": 24, "name": "/usr/share/doc/postfix-2.10.1/examples"}, {"size": 1216, "name": "/usr/share/doc/postfix-2.10.1"}, {"size": 24, "name": "/usr/share/doc/irqbalance-1.0.7"}, {"size": 8, "name": "/usr/share/doc/microcode_ctl/caveats"}, {"size": 48, "name": "/usr/share/doc/microcode_ctl"}, {"size": 636, "name": "/usr/share/doc/rsyslog-8.24.0"}, {"size": 12, "name": "/usr/share/doc/aic94xx-firmware-30"}, {"size": 24, "name": "/usr/share/doc/biosdevname-0.7.3"}, {"size": 500, "name": "/usr/share/doc/parted-3.1"}, {"size": 760, "name": "/usr/share/doc/man-db-2.6.3"}, {"size": 348, "name": "/usr/share/doc/e2fsprogs-1.42.9"}, {"size": 20, "name": "/usr/share/doc/sudo-1.8.23/examples"}, {"size": 216, "name": "/usr/share/doc/sudo-1.8.23"}, {"size": 36, "name": "/usr/share/doc/passwd-0.79"}, {"size": 20, "name": "/usr/share/doc/btrfs-progs-4.9.1"}, {"size": 148, "name": "/usr/share/doc/xfsprogs-4.5.0"}, {"size": 120, "name": "/usr/share/doc/libsysfs-2.1.0"}, {"size": 136, "name": "/usr/share/doc/iwl1000-firmware-39.31.5.1"}, {"size": 136, "name": "/usr/share/doc/iwl4965-firmware-228.61.2.24"}, {"size": 136, "name": "/usr/share/doc/iwl100-firmware-39.31.5.1"}, {"size": 136, "name": "/usr/share/doc/iwl2030-firmware-18.168.6.1"}, {"size": 136, "name": "/usr/share/doc/iwl5000-firmware-8.83.5.1_1"}, {"size": 136, "name": "/usr/share/doc/iwl6000g2b-firmware-17.168.5.2"}, {"size": 136, "name": "/usr/share/doc/iwl5150-firmware-8.24.2.2"}, {"size": 136, "name": "/usr/share/doc/iwl7260-firmware-22.0.7.0"}, {"size": 136, "name": "/usr/share/doc/iwl3160-firmware-22.0.7.0"}, {"size": 136, "name": "/usr/share/doc/iwl105-firmware-18.168.6.1"}, {"size": 136, "name": "/usr/share/doc/iwl3945-firmware-15.32.2.9"}, {"size": 136, "name": "/usr/share/doc/iwl7265-firmware-22.0.7.0"}, {"size": 20, "name": "/usr/share/doc/ivtv-firmware-20080701"}, {"size": 136, "name": "/usr/share/doc/iwl6050-firmware-41.28.5.1"}, {"size": 136, "name": "/usr/share/doc/iwl2000-firmware-18.168.6.1"}, {"size": 136, "name": "/usr/share/doc/iwl6000g2a-firmware-17.168.5.3"}, {"size": 136, "name": "/usr/share/doc/iwl6000-firmware-9.221.4.1"}, {"size": 136, "name": "/usr/share/doc/iwl135-firmware-18.168.6.1"}, {"size": 20, "name": "/usr/share/doc/yajl-2.0.4"}, {"size": 4, "name": "/usr/share/doc/oci-umount-2.5"}, {"size": 8, "name": "/usr/share/doc/oci-systemd-hook-0.2.0"}, {"size": 4, "name": "/usr/share/doc/container-storage-setup-0.11.0"}, {"size": 4, "name": "/usr/share/doc/python-ipaddress-1.0.16"}, {"size": 8, "name": "/usr/share/doc/libyaml-0.1.4"}, {"size": 24, "name": "/usr/share/doc/PyYAML-3.10/examples/pygments-lexer"}, {"size": 16, "name": "/usr/share/doc/PyYAML-3.10/examples/yaml-highlight"}, {"size": 40, "name": "/usr/share/doc/PyYAML-3.10/examples"}, {"size": 60, "name": "/usr/share/doc/PyYAML-3.10"}, {"size": 8, "name": "/usr/share/doc/python-backports-ssl_match_hostname-3.5.0.1"}, {"size": 4, "name": "/usr/share/doc/python-setuptools-0.9.8/docs/_templates"}, {"size": 8, "name": "/usr/share/doc/python-setuptools-0.9.8/docs/_theme/nature/static"}, {"size": 12, "name": "/usr/share/doc/python-setuptools-0.9.8/docs/_theme/nature"}, {"size": 12, "name": "/usr/share/doc/python-setuptools-0.9.8/docs/_theme"}, {"size": 392, "name": "/usr/share/doc/python-setuptools-0.9.8/docs/build/html/_sources"}, {"size": 20, "name": "/usr/share/doc/python-setuptools-0.9.8/docs/build/html/_static"}, {"size": 412, "name": "/usr/share/doc/python-setuptools-0.9.8/docs/build/html"}, {"size": 412, "name": "/usr/share/doc/python-setuptools-0.9.8/docs/build"}, {"size": 832, "name": "/usr/share/doc/python-setuptools-0.9.8/docs"}, {"size": 920, "name": "/usr/share/doc/python-setuptools-0.9.8"}, {"size": 8, "name": "/usr/share/doc/oci-register-machine-0"}, {"size": 96, "name": "/usr/share/doc/setools-libs-3.3.8"}, {"size": 4, "name": "/usr/share/doc/python-pytoml-0.1.14"}, {"size": 4, "name": "/usr/share/doc/atomic-registries-1.22.1"}, {"size": 32, "name": "/usr/share/doc/python-IPy-0.75"}, {"size": 36, "name": "/usr/share/doc/libcgroup-0.41"}, {"size": 4, "name": "/usr/share/doc/container-selinux-2.107"}, {"size": 4, "name": "/usr/share/doc/docker-common-1.13.1"}, {"size": 304, "name": "/usr/share/doc/docker-1.13.1"}, {"size": 20, "name": "/usr/share/doc/net-tools-2.0"}, {"size": 20, "name": "/usr/share/doc/libtirpc-0.2.4"}, {"size": 484, "name": "/usr/share/doc/python3-setuptools-39.2.0"}, {"size": 4, "name": "/usr/share/doc/python3-pip-9.0.3"}, {"size": 12, "name": "/usr/share/doc/python3-3.6.8"}, {"size": 12, "name": "/usr/share/doc/python3-libs-3.6.8"}, {"size": 4, "name": "/usr/share/doc/perl-parent-0.225"}, {"size": 12, "name": "/usr/share/doc/perl-HTTP-Tiny-0.033/eg"}, {"size": 60, "name": "/usr/share/doc/perl-HTTP-Tiny-0.033"}, {"size": 96, "name": "/usr/share/doc/perl-podlators-2.5.1"}, {"size": 16, "name": "/usr/share/doc/perl-Pod-Perldoc-3.20"}, {"size": 92, "name": "/usr/share/doc/perl-Encode-2.51"}, {"size": 12, "name": "/usr/share/doc/perl-Text-ParseWords-3.29"}, {"size": 8, "name": "/usr/share/doc/perl-Pod-Usage-1.63"}, {"size": 48, "name": "/usr/share/doc/perl-Time-HiRes-1.9725"}, {"size": 24, "name": "/usr/share/doc/perl-Exporter-5.68"}, {"size": 4, "name": "/usr/share/doc/perl-constant-1.27/eg"}, {"size": 16, "name": "/usr/share/doc/perl-constant-1.27"}, {"size": 36, "name": "/usr/share/doc/perl-Time-Local-1.2300"}, {"size": 36, "name": "/usr/share/doc/perl-Socket-2.010"}, {"size": 8, "name": "/usr/share/doc/perl-Carp-1.26"}, {"size": 40, "name": "/usr/share/doc/perl-Storable-2.45"}, {"size": 40, "name": "/usr/share/doc/perl-PathTools-3.40"}, {"size": 20, "name": "/usr/share/doc/perl-Scalar-List-Utils-1.27"}, {"size": 8, "name": "/usr/share/doc/perl-File-Temp-0.23.01/misc"}, {"size": 80, "name": "/usr/share/doc/perl-File-Temp-0.23.01"}, {"size": 16, "name": "/usr/share/doc/perl-File-Path-2.09"}, {"size": 12, "name": "/usr/share/doc/perl-threads-shared-1.43"}, {"size": 16, "name": "/usr/share/doc/perl-threads-1.87"}, {"size": 32, "name": "/usr/share/doc/perl-Pod-Simple-3.28"}, {"size": 28, "name": "/usr/share/doc/perl-Filter-1.49/examples/closure"}, {"size": 24, "name": "/usr/share/doc/perl-Filter-1.49/examples/method"}, {"size": 60, "name": "/usr/share/doc/perl-Filter-1.49/examples"}, {"size": 76, "name": "/usr/share/doc/perl-Filter-1.49"}, {"size": 24, "name": "/usr/share/doc/perl-Getopt-Long-2.40/examples"}, {"size": 52, "name": "/usr/share/doc/perl-Getopt-Long-2.40"}, {"size": 20, "name": "/usr/share/doc/perl-Error-0.17020/examples/next-in-loop"}, {"size": 28, "name": "/usr/share/doc/perl-Error-0.17020/examples"}, {"size": 44, "name": "/usr/share/doc/perl-Error-0.17020"}, {"size": 8, "name": "/usr/share/doc/perl-TermReadKey-2.30"}, {"size": 104, "name": "/usr/share/doc/rsync-3.1.2/support"}, {"size": 328, "name": "/usr/share/doc/rsync-3.1.2"}, {"size": 1024, "name": "/usr/share/doc/git-1.8.3.1/RelNotes"}, {"size": 8, "name": "/usr/share/doc/git-1.8.3.1/contrib/blameview"}, {"size": 24, "name": "/usr/share/doc/git-1.8.3.1/contrib/buildsystems/Generators"}, {"size": 52, "name": "/usr/share/doc/git-1.8.3.1/contrib/buildsystems"}, {"size": 24, "name": "/usr/share/doc/git-1.8.3.1/contrib/ciabot"}, {"size": 88, "name": "/usr/share/doc/git-1.8.3.1/contrib/completion"}, {"size": 20, "name": "/usr/share/doc/git-1.8.3.1/contrib/continuous"}, {"size": 12, "name": "/usr/share/doc/git-1.8.3.1/contrib/convert-objects"}, {"size": 16, "name": "/usr/share/doc/git-1.8.3.1/contrib/credential/gnome-keyring"}, {"size": 24, "name": "/usr/share/doc/git-1.8.3.1/contrib/credential/netrc"}, {"size": 12, "name": "/usr/share/doc/git-1.8.3.1/contrib/credential/osxkeychain"}, {"size": 12, "name": "/usr/share/doc/git-1.8.3.1/contrib/credential/wincred"}, {"size": 64, "name": "/usr/share/doc/git-1.8.3.1/contrib/credential"}, {"size": 12, "name": "/usr/share/doc/git-1.8.3.1/contrib/diff-highlight"}, {"size": 12, "name": "/usr/share/doc/git-1.8.3.1/contrib/diffall"}, {"size": 192, "name": "/usr/share/doc/git-1.8.3.1/contrib/emacs"}, {"size": 192, "name": "/usr/share/doc/git-1.8.3.1/contrib/examples"}, {"size": 36, "name": "/usr/share/doc/git-1.8.3.1/contrib/fast-import"}, {"size": 8, "name": "/usr/share/doc/git-1.8.3.1/contrib/git-jump"}, {"size": 12, "name": "/usr/share/doc/git-1.8.3.1/contrib/git-shell-commands"}, {"size": 44, "name": "/usr/share/doc/git-1.8.3.1/contrib/gitview"}, {"size": 12, "name": "/usr/share/doc/git-1.8.3.1/contrib/hg-to-git"}, {"size": 16, "name": "/usr/share/doc/git-1.8.3.1/contrib/mw-to-git/t/install-wiki"}, {"size": 104, "name": "/usr/share/doc/git-1.8.3.1/contrib/mw-to-git/t"}, {"size": 160, "name": "/usr/share/doc/git-1.8.3.1/contrib/mw-to-git"}, {"size": 24, "name": "/usr/share/doc/git-1.8.3.1/contrib/p4import"}, {"size": 4, "name": "/usr/share/doc/git-1.8.3.1/contrib/patches"}, {"size": 44, "name": "/usr/share/doc/git-1.8.3.1/contrib/persistent-https"}, {"size": 92, "name": "/usr/share/doc/git-1.8.3.1/contrib/remote-helpers"}, {"size": 16, "name": "/usr/share/doc/git-1.8.3.1/contrib/stats"}, {"size": 20, "name": "/usr/share/doc/git-1.8.3.1/contrib/subtree/t"}, {"size": 144, "name": "/usr/share/doc/git-1.8.3.1/contrib/subtree"}, {"size": 20, "name": "/usr/share/doc/git-1.8.3.1/contrib/svn-fe"}, {"size": 8, "name": "/usr/share/doc/git-1.8.3.1/contrib/thunderbird-patch-inline"}, {"size": 4, "name": "/usr/share/doc/git-1.8.3.1/contrib/vim"}, {"size": 4, "name": "/usr/share/doc/git-1.8.3.1/contrib/workdir"}, {"size": 1332, "name": "/usr/share/doc/git-1.8.3.1/contrib"}, {"size": 448, "name": "/usr/share/doc/git-1.8.3.1/howto"}, {"size": 1320, "name": "/usr/share/doc/git-1.8.3.1/technical"}, {"size": 12100, "name": "/usr/share/doc/git-1.8.3.1"}, {"size": 144, "name": "/usr/share/doc/tzdata-2019c"}, {"size": 180, "name": "/usr/share/doc/shadow-utils-4.6"}, {"size": 44, "name": "/usr/share/doc/device-mapper-persistent-data-0.8.5"}, {"size": 20, "name": "/usr/share/doc/python-linux-procfs-0.4.11"}, {"size": 16, "name": "/usr/share/doc/libssh2-1.8.0"}, {"size": 16, "name": "/usr/share/doc/geoipupdate-2.5.0"}, {"size": 20, "name": "/usr/share/doc/ipset-libs-7.1"}, {"size": 48, "name": "/usr/share/doc/ipset-7.1"}, {"size": 132, "name": "/usr/share/doc/device-mapper-1.02.158"}, {"size": 36, "name": "/usr/share/doc/initscripts-9.49.47/examples/networking"}, {"size": 36, "name": "/usr/share/doc/initscripts-9.49.47/examples"}, {"size": 128, "name": "/usr/share/doc/initscripts-9.49.47"}, {"size": 96, "name": "/usr/share/doc/NetworkManager-1.18.0"}, {"size": 300, "name": "/usr/share/doc/lvm2-2.02.185"}, {"size": 4, "name": "/usr/share/doc/libdrm-2.4.97"}, {"size": 520, "name": "/usr/share/doc/linux-firmware-20190429"}, {"size": 116, "name": "/usr/share/doc/audit-2.8.5/rules"}, {"size": 184, "name": "/usr/share/doc/audit-2.8.5"}, {"size": 32, "name": "/usr/share/doc/tuned-2.11.0"}, {"size": 88, "name": "/usr/share/doc/chrony-3.4"}, {"size": 24, "name": "/usr/share/doc/firewalld-0.6.3"}, {"size": 140, "name": "/usr/share/doc/mariadb-libs-5.5.64"}, {"size": 44, "name": "/usr/share/doc/alsa-lib-1.1.8"}, {"size": 20, "name": "/usr/share/doc/iprutils-2.4.17.1"}, {"size": 20, "name": "/usr/share/doc/dmidecode-3.2"}, {"size": 46636, "name": "/usr/share/doc"}, {"size": 36, "name": "/usr/share/licenses/grub2-common-2.02"}, {"size": 20, "name": "/usr/share/licenses/chkconfig-1.7.4"}, {"size": 28, "name": "/usr/share/licenses/libsepol-2.5"}, {"size": 100, "name": "/usr/share/licenses/gmp-6.0.0"}, {"size": 8, "name": "/usr/share/licenses/openssl-libs-1.0.2k"}, {"size": 60, "name": "/usr/share/licenses/krb5-libs-1.15.1"}, {"size": 28, "name": "/usr/share/licenses/glib2-2.56.1"}, {"size": 20, "name": "/usr/share/licenses/shared-mime-info-1.8"}, {"size": 56, "name": "/usr/share/licenses/libcroco-0.6.12"}, {"size": 28, "name": "/usr/share/licenses/nss-pem-1.0.3"}, {"size": 24, "name": "/usr/share/licenses/lz4-1.7.5"}, {"size": 4, "name": "/usr/share/licenses/gobject-introspection-1.56.1"}, {"size": 28, "name": "/usr/share/licenses/python-gobject-base-3.22.0"}, {"size": 92, "name": "/usr/share/licenses/binutils-2.27"}, {"size": 8, "name": "/usr/share/licenses/openssl-1.0.2k"}, {"size": 32, "name": "/usr/share/licenses/freetype-2.8"}, {"size": 28, "name": "/usr/share/licenses/libsemanage-2.5"}, {"size": 4, "name": "/usr/share/licenses/libfastjson-0.99.4"}, {"size": 24, "name": "/usr/share/licenses/libseccomp-2.3.1"}, {"size": 48, "name": "/usr/share/licenses/cryptsetup-libs-2.0.3"}, {"size": 32, "name": "/usr/share/licenses/dbus-libs-1.10.24"}, {"size": 52, "name": "/usr/share/licenses/systemd-219"}, {"size": 32, "name": "/usr/share/licenses/dbus-1.10.24"}, {"size": 20, "name": "/usr/share/licenses/policycoreutils-2.5"}, {"size": 4, "name": "/usr/share/licenses/wpa_supplicant-2.6"}, {"size": 16, "name": "/usr/share/licenses/openssh-7.4p1"}, {"size": 36, "name": "/usr/share/licenses/oci-umount-2.5"}, {"size": 36, "name": "/usr/share/licenses/oci-systemd-hook-0.2.0"}, {"size": 12, "name": "/usr/share/licenses/container-storage-setup-0.11.0"}, {"size": 20, "name": "/usr/share/licenses/checkpolicy-2.5"}, {"size": 12, "name": "/usr/share/licenses/oci-register-machine-0"}, {"size": 52, "name": "/usr/share/licenses/setools-libs-3.3.8"}, {"size": 4, "name": "/usr/share/licenses/python-pytoml-0.1.14"}, {"size": 28, "name": "/usr/share/licenses/atomic-registries-1.22.1"}, {"size": 16, "name": "/usr/share/licenses/docker-client-1.13.1"}, {"size": 16, "name": "/usr/share/licenses/docker-1.13.1"}, {"size": 4, "name": "/usr/share/licenses/python3-setuptools-39.2.0"}, {"size": 4, "name": "/usr/share/licenses/python3-pip-9.0.3"}, {"size": 16, "name": "/usr/share/licenses/python3-3.6.8"}, {"size": 16, "name": "/usr/share/licenses/python3-libs-3.6.8"}, {"size": 32, "name": "/usr/share/licenses/bind-license-9.11.4"}, {"size": 28, "name": "/usr/share/licenses/elfutils-libelf-0.176"}, {"size": 24, "name": "/usr/share/licenses/shadow-utils-4.6"}, {"size": 32, "name": "/usr/share/licenses/bind-export-libs-9.11.4"}, {"size": 20, "name": "/usr/share/licenses/geoipupdate-2.5.0"}, {"size": 48, "name": "/usr/share/licenses/device-mapper-libs-1.02.158"}, {"size": 28, "name": "/usr/share/licenses/elfutils-libs-0.176"}, {"size": 28, "name": "/usr/share/licenses/device-mapper-event-libs-1.02.158"}, {"size": 20, "name": "/usr/share/licenses/NetworkManager-1.18.0"}, {"size": 28, "name": "/usr/share/licenses/lvm2-libs-2.02.185"}, {"size": 48, "name": "/usr/share/licenses/lvm2-2.02.185"}, {"size": 20, "name": "/usr/share/licenses/dmidecode-3.2"}, {"size": 1464, "name": "/usr/share/licenses"}, {"size": 108, "name": "/usr/share/locale/ast/LC_MESSAGES"}, {"size": 108, "name": "/usr/share/locale/ast"}, {"size": 2132, "name": "/usr/share/locale/ca/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ca/LC_TIME"}, {"size": 2132, "name": "/usr/share/locale/ca"}, {"size": 2320, "name": "/usr/share/locale/da/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/da/LC_TIME"}, {"size": 2320, "name": "/usr/share/locale/da"}, {"size": 3720, "name": "/usr/share/locale/de/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/de/LC_TIME"}, {"size": 3720, "name": "/usr/share/locale/de"}, {"size": 156, "name": "/usr/share/locale/de@hebrew/LC_MESSAGES"}, {"size": 156, "name": "/usr/share/locale/de@hebrew"}, {"size": 128, "name": "/usr/share/locale/de_CH/LC_MESSAGES"}, {"size": 128, "name": "/usr/share/locale/de_CH"}, {"size": 152, "name": "/usr/share/locale/en@arabic/LC_MESSAGES"}, {"size": 152, "name": "/usr/share/locale/en@arabic"}, {"size": 144, "name": "/usr/share/locale/en@cyrillic/LC_MESSAGES"}, {"size": 144, "name": "/usr/share/locale/en@cyrillic"}, {"size": 144, "name": "/usr/share/locale/en@greek/LC_MESSAGES"}, {"size": 144, "name": "/usr/share/locale/en@greek"}, {"size": 168, "name": "/usr/share/locale/en@hebrew/LC_MESSAGES"}, {"size": 168, "name": "/usr/share/locale/en@hebrew"}, {"size": 136, "name": "/usr/share/locale/en@piglatin/LC_MESSAGES"}, {"size": 136, "name": "/usr/share/locale/en@piglatin"}, {"size": 724, "name": "/usr/share/locale/en@quot/LC_MESSAGES"}, {"size": 724, "name": "/usr/share/locale/en@quot"}, {"size": 820, "name": "/usr/share/locale/eo/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/eo/LC_TIME"}, {"size": 820, "name": "/usr/share/locale/eo"}, {"size": 3656, "name": "/usr/share/locale/es/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/es/LC_TIME"}, {"size": 3656, "name": "/usr/share/locale/es"}, {"size": 2460, "name": "/usr/share/locale/fi/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/fi/LC_TIME"}, {"size": 2460, "name": "/usr/share/locale/fi"}, {"size": 4376, "name": "/usr/share/locale/fr/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/fr/LC_TIME"}, {"size": 4376, "name": "/usr/share/locale/fr"}, {"size": 784, "name": "/usr/share/locale/gl/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/gl/LC_TIME"}, {"size": 784, "name": "/usr/share/locale/gl"}, {"size": 1456, "name": "/usr/share/locale/hu/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/hu/LC_TIME"}, {"size": 1456, "name": "/usr/share/locale/hu"}, {"size": 2560, "name": "/usr/share/locale/id/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/id/LC_TIME"}, {"size": 2560, "name": "/usr/share/locale/id"}, {"size": 2704, "name": "/usr/share/locale/it/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/it/LC_TIME"}, {"size": 2704, "name": "/usr/share/locale/it"}, {"size": 3052, "name": "/usr/share/locale/ja/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ja/LC_TIME"}, {"size": 3052, "name": "/usr/share/locale/ja"}, {"size": 432, "name": "/usr/share/locale/lt/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/lt/LC_TIME"}, {"size": 432, "name": "/usr/share/locale/lt"}, {"size": 2352, "name": "/usr/share/locale/nl/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/nl/LC_TIME"}, {"size": 2352, "name": "/usr/share/locale/nl"}, {"size": 860, "name": "/usr/share/locale/pa/LC_MESSAGES"}, {"size": 860, "name": "/usr/share/locale/pa"}, {"size": 3432, "name": "/usr/share/locale/pl/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/pl/LC_TIME"}, {"size": 3432, "name": "/usr/share/locale/pl"}, {"size": 1884, "name": "/usr/share/locale/pt_BR/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/pt_BR/LC_TIME"}, {"size": 1884, "name": "/usr/share/locale/pt_BR"}, {"size": 3392, "name": "/usr/share/locale/ru/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ru/LC_TIME"}, {"size": 3392, "name": "/usr/share/locale/ru"}, {"size": 1164, "name": "/usr/share/locale/sl/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sl/LC_TIME"}, {"size": 1164, "name": "/usr/share/locale/sl"}, {"size": 3212, "name": "/usr/share/locale/sv/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sv/LC_TIME"}, {"size": 3212, "name": "/usr/share/locale/sv"}, {"size": 2020, "name": "/usr/share/locale/tr/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/tr/LC_TIME"}, {"size": 2020, "name": "/usr/share/locale/tr"}, {"size": 4936, "name": "/usr/share/locale/uk/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/uk/LC_TIME"}, {"size": 4936, "name": "/usr/share/locale/uk"}, {"size": 3128, "name": "/usr/share/locale/vi/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/vi/LC_TIME"}, {"size": 3128, "name": "/usr/share/locale/vi"}, {"size": 2656, "name": "/usr/share/locale/zh_CN/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/zh_CN/LC_TIME"}, {"size": 2656, "name": "/usr/share/locale/zh_CN"}, {"size": 1720, "name": "/usr/share/locale/zh_TW/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/zh_TW/LC_TIME"}, {"size": 1720, "name": "/usr/share/locale/zh_TW"}, {"size": 72, "name": "/usr/share/locale/af/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/af/LC_TIME"}, {"size": 72, "name": "/usr/share/locale/af"}, {"size": 1296, "name": "/usr/share/locale/bg/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/bg/LC_TIME"}, {"size": 1296, "name": "/usr/share/locale/bg"}, {"size": 2544, "name": "/usr/share/locale/cs/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/cs/LC_TIME"}, {"size": 2544, "name": "/usr/share/locale/cs"}, {"size": 616, "name": "/usr/share/locale/en@boldquot/LC_MESSAGES"}, {"size": 616, "name": "/usr/share/locale/en@boldquot"}, {"size": 740, "name": "/usr/share/locale/et/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/et/LC_TIME"}, {"size": 740, "name": "/usr/share/locale/et"}, {"size": 528, "name": "/usr/share/locale/ga/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ga/LC_TIME"}, {"size": 528, "name": "/usr/share/locale/ga"}, {"size": 648, "name": "/usr/share/locale/ro/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ro/LC_TIME"}, {"size": 648, "name": "/usr/share/locale/ro"}, {"size": 1324, "name": "/usr/share/locale/sk/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sk/LC_TIME"}, {"size": 1324, "name": "/usr/share/locale/sk"}, {"size": 228, "name": "/usr/share/locale/ar/LC_MESSAGES"}, {"size": 228, "name": "/usr/share/locale/ar"}, {"size": 688, "name": "/usr/share/locale/as/LC_MESSAGES"}, {"size": 688, "name": "/usr/share/locale/as"}, {"size": 48, "name": "/usr/share/locale/bal/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/bal"}, {"size": 312, "name": "/usr/share/locale/be/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/be/LC_TIME"}, {"size": 312, "name": "/usr/share/locale/be"}, {"size": 240, "name": "/usr/share/locale/bn/LC_MESSAGES"}, {"size": 240, "name": "/usr/share/locale/bn"}, {"size": 712, "name": "/usr/share/locale/bn_IN/LC_MESSAGES"}, {"size": 712, "name": "/usr/share/locale/bn_IN"}, {"size": 204, "name": "/usr/share/locale/bs/LC_MESSAGES"}, {"size": 204, "name": "/usr/share/locale/bs"}, {"size": 96, "name": "/usr/share/locale/cy/LC_MESSAGES"}, {"size": 96, "name": "/usr/share/locale/cy"}, {"size": 852, "name": "/usr/share/locale/el/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/el/LC_TIME"}, {"size": 852, "name": "/usr/share/locale/el"}, {"size": 320, "name": "/usr/share/locale/en_GB/LC_MESSAGES"}, {"size": 320, "name": "/usr/share/locale/en_GB"}, {"size": 488, "name": "/usr/share/locale/eu/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/eu/LC_TIME"}, {"size": 488, "name": "/usr/share/locale/eu"}, {"size": 104, "name": "/usr/share/locale/fa/LC_MESSAGES"}, {"size": 104, "name": "/usr/share/locale/fa"}, {"size": 692, "name": "/usr/share/locale/gu/LC_MESSAGES"}, {"size": 692, "name": "/usr/share/locale/gu"}, {"size": 216, "name": "/usr/share/locale/he/LC_MESSAGES"}, {"size": 216, "name": "/usr/share/locale/he"}, {"size": 672, "name": "/usr/share/locale/hi/LC_MESSAGES"}, {"size": 672, "name": "/usr/share/locale/hi"}, {"size": 580, "name": "/usr/share/locale/hr/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/hr/LC_TIME"}, {"size": 580, "name": "/usr/share/locale/hr"}, {"size": 112, "name": "/usr/share/locale/hy/LC_MESSAGES"}, {"size": 112, "name": "/usr/share/locale/hy"}, {"size": 48, "name": "/usr/share/locale/ia/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ia/LC_TIME"}, {"size": 48, "name": "/usr/share/locale/ia"}, {"size": 112, "name": "/usr/share/locale/is/LC_MESSAGES"}, {"size": 112, "name": "/usr/share/locale/is"}, {"size": 88, "name": "/usr/share/locale/ka/LC_MESSAGES"}, {"size": 88, "name": "/usr/share/locale/ka"}, {"size": 76, "name": "/usr/share/locale/km/LC_MESSAGES"}, {"size": 76, "name": "/usr/share/locale/km"}, {"size": 748, "name": "/usr/share/locale/kn/LC_MESSAGES"}, {"size": 748, "name": "/usr/share/locale/kn"}, {"size": 1340, "name": "/usr/share/locale/ko/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ko/LC_TIME"}, {"size": 1340, "name": "/usr/share/locale/ko"}, {"size": 32, "name": "/usr/share/locale/ku/LC_MESSAGES"}, {"size": 32, "name": "/usr/share/locale/ku"}, {"size": 20, "name": "/usr/share/locale/lo/LC_MESSAGES"}, {"size": 20, "name": "/usr/share/locale/lo"}, {"size": 200, "name": "/usr/share/locale/lv/LC_MESSAGES"}, {"size": 200, "name": "/usr/share/locale/lv"}, {"size": 176, "name": "/usr/share/locale/mai/LC_MESSAGES"}, {"size": 176, "name": "/usr/share/locale/mai"}, {"size": 164, "name": "/usr/share/locale/mk/LC_MESSAGES"}, {"size": 164, "name": "/usr/share/locale/mk"}, {"size": 716, "name": "/usr/share/locale/ml/LC_MESSAGES"}, {"size": 716, "name": "/usr/share/locale/ml"}, {"size": 684, "name": "/usr/share/locale/mr/LC_MESSAGES"}, {"size": 684, "name": "/usr/share/locale/mr"}, {"size": 176, "name": "/usr/share/locale/ms/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ms/LC_TIME"}, {"size": 176, "name": "/usr/share/locale/ms"}, {"size": 20, "name": "/usr/share/locale/my/LC_MESSAGES"}, {"size": 20, "name": "/usr/share/locale/my"}, {"size": 676, "name": "/usr/share/locale/nb/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/nb/LC_TIME"}, {"size": 676, "name": "/usr/share/locale/nb"}, {"size": 40, "name": "/usr/share/locale/nds/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/nds"}, {"size": 136, "name": "/usr/share/locale/nn/LC_MESSAGES"}, {"size": 136, "name": "/usr/share/locale/nn"}, {"size": 708, "name": "/usr/share/locale/or/LC_MESSAGES"}, {"size": 708, "name": "/usr/share/locale/or"}, {"size": 692, "name": "/usr/share/locale/pt/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/pt/LC_TIME"}, {"size": 692, "name": "/usr/share/locale/pt"}, {"size": 56, "name": "/usr/share/locale/si/LC_MESSAGES"}, {"size": 56, "name": "/usr/share/locale/si"}, {"size": 124, "name": "/usr/share/locale/sq/LC_MESSAGES"}, {"size": 124, "name": "/usr/share/locale/sq"}, {"size": 1388, "name": "/usr/share/locale/sr/LC_MESSAGES"}, {"size": 1388, "name": "/usr/share/locale/sr"}, {"size": 364, "name": "/usr/share/locale/sr@latin/LC_MESSAGES"}, {"size": 364, "name": "/usr/share/locale/sr@latin"}, {"size": 792, "name": "/usr/share/locale/ta/LC_MESSAGES"}, {"size": 792, "name": "/usr/share/locale/ta"}, {"size": 716, "name": "/usr/share/locale/te/LC_MESSAGES"}, {"size": 716, "name": "/usr/share/locale/te"}, {"size": 44, "name": "/usr/share/locale/tg/LC_MESSAGES"}, {"size": 44, "name": "/usr/share/locale/tg"}, {"size": 236, "name": "/usr/share/locale/th/LC_MESSAGES"}, {"size": 236, "name": "/usr/share/locale/th"}, {"size": 48, "name": "/usr/share/locale/ur/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/ur"}, {"size": 0, "name": "/usr/share/locale/cad/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/cad"}, {"size": 0, "name": "/usr/share/locale/es_HN/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/es_HN"}, {"size": 40, "name": "/usr/share/locale/rw/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/rw"}, {"size": 0, "name": "/usr/share/locale/aa/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/aa"}, {"size": 0, "name": "/usr/share/locale/ab/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ab"}, {"size": 0, "name": "/usr/share/locale/ace/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ace"}, {"size": 0, "name": "/usr/share/locale/ach/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ach"}, {"size": 0, "name": "/usr/share/locale/ada/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ada"}, {"size": 0, "name": "/usr/share/locale/ady/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ady"}, {"size": 0, "name": "/usr/share/locale/ae/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ae"}, {"size": 4, "name": "/usr/share/locale/af_ZA/LC_MESSAGES"}, {"size": 4, "name": "/usr/share/locale/af_ZA"}, {"size": 0, "name": "/usr/share/locale/afa/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/afa"}, {"size": 0, "name": "/usr/share/locale/afh/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/afh"}, {"size": 0, "name": "/usr/share/locale/ain/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ain"}, {"size": 0, "name": "/usr/share/locale/ak/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ak"}, {"size": 0, "name": "/usr/share/locale/akk/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/akk"}, {"size": 0, "name": "/usr/share/locale/ale/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ale"}, {"size": 0, "name": "/usr/share/locale/alg/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/alg"}, {"size": 0, "name": "/usr/share/locale/alt/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/alt"}, {"size": 8, "name": "/usr/share/locale/am/LC_MESSAGES"}, {"size": 8, "name": "/usr/share/locale/am"}, {"size": 0, "name": "/usr/share/locale/am_ET/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/am_ET"}, {"size": 100, "name": "/usr/share/locale/an/LC_MESSAGES"}, {"size": 100, "name": "/usr/share/locale/an"}, {"size": 0, "name": "/usr/share/locale/ang/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ang"}, {"size": 0, "name": "/usr/share/locale/anp/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/anp"}, {"size": 0, "name": "/usr/share/locale/apa/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/apa"}, {"size": 0, "name": "/usr/share/locale/arc/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/arc"}, {"size": 0, "name": "/usr/share/locale/arn/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/arn"}, {"size": 0, "name": "/usr/share/locale/arp/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/arp"}, {"size": 0, "name": "/usr/share/locale/art/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/art"}, {"size": 0, "name": "/usr/share/locale/arw/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/arw"}, {"size": 0, "name": "/usr/share/locale/ast_ES/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ast_ES"}, {"size": 0, "name": "/usr/share/locale/ath/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ath"}, {"size": 0, "name": "/usr/share/locale/aus/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/aus"}, {"size": 0, "name": "/usr/share/locale/av/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/av"}, {"size": 0, "name": "/usr/share/locale/awa/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/awa"}, {"size": 0, "name": "/usr/share/locale/ay/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ay"}, {"size": 20, "name": "/usr/share/locale/az/LC_MESSAGES"}, {"size": 20, "name": "/usr/share/locale/az"}, {"size": 0, "name": "/usr/share/locale/az_IR/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/az_IR"}, {"size": 0, "name": "/usr/share/locale/ba/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ba"}, {"size": 0, "name": "/usr/share/locale/bad/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/bad"}, {"size": 0, "name": "/usr/share/locale/bai/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/bai"}, {"size": 0, "name": "/usr/share/locale/ban/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ban"}, {"size": 0, "name": "/usr/share/locale/bas/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/bas"}, {"size": 0, "name": "/usr/share/locale/bat/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/bat"}, {"size": 44, "name": "/usr/share/locale/be@latin/LC_MESSAGES"}, {"size": 44, "name": "/usr/share/locale/be@latin"}, {"size": 0, "name": "/usr/share/locale/bej/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/bej"}, {"size": 0, "name": "/usr/share/locale/bem/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/bem"}, {"size": 0, "name": "/usr/share/locale/ber/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ber"}, {"size": 0, "name": "/usr/share/locale/bg_BG/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/bg_BG"}, {"size": 0, "name": "/usr/share/locale/bh/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/bh"}, {"size": 0, "name": "/usr/share/locale/bho/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/bho"}, {"size": 0, "name": "/usr/share/locale/bi/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/bi"}, {"size": 0, "name": "/usr/share/locale/bik/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/bik"}, {"size": 0, "name": "/usr/share/locale/bin/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/bin"}, {"size": 0, "name": "/usr/share/locale/bla/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/bla"}, {"size": 0, "name": "/usr/share/locale/bm/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/bm"}, {"size": 0, "name": "/usr/share/locale/bnt/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/bnt"}, {"size": 8, "name": "/usr/share/locale/bo/LC_MESSAGES"}, {"size": 8, "name": "/usr/share/locale/bo"}, {"size": 24, "name": "/usr/share/locale/br/LC_MESSAGES"}, {"size": 24, "name": "/usr/share/locale/br"}, {"size": 0, "name": "/usr/share/locale/bra/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/bra"}, {"size": 4, "name": "/usr/share/locale/brx/LC_MESSAGES"}, {"size": 4, "name": "/usr/share/locale/brx"}, {"size": 0, "name": "/usr/share/locale/btk/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/btk"}, {"size": 0, "name": "/usr/share/locale/bua/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/bua"}, {"size": 0, "name": "/usr/share/locale/bug/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/bug"}, {"size": 0, "name": "/usr/share/locale/byn/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/byn"}, {"size": 128, "name": "/usr/share/locale/ca@valencia/LC_MESSAGES"}, {"size": 128, "name": "/usr/share/locale/ca@valencia"}, {"size": 0, "name": "/usr/share/locale/ca_ES/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ca_ES"}, {"size": 0, "name": "/usr/share/locale/ca_ES@valencian/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ca_ES@valencian"}, {"size": 0, "name": "/usr/share/locale/cai/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/cai"}, {"size": 0, "name": "/usr/share/locale/car/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/car"}, {"size": 0, "name": "/usr/share/locale/cau/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/cau"}, {"size": 0, "name": "/usr/share/locale/ce/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ce"}, {"size": 0, "name": "/usr/share/locale/ceb/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ceb"}, {"size": 0, "name": "/usr/share/locale/cel/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/cel"}, {"size": 0, "name": "/usr/share/locale/ch/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ch"}, {"size": 0, "name": "/usr/share/locale/chb/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/chb"}, {"size": 0, "name": "/usr/share/locale/chg/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/chg"}, {"size": 0, "name": "/usr/share/locale/chk/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/chk"}, {"size": 0, "name": "/usr/share/locale/chm/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/chm"}, {"size": 0, "name": "/usr/share/locale/chn/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/chn"}, {"size": 0, "name": "/usr/share/locale/cho/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/cho"}, {"size": 0, "name": "/usr/share/locale/chp/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/chp"}, {"size": 0, "name": "/usr/share/locale/chr/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/chr"}, {"size": 0, "name": "/usr/share/locale/chy/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/chy"}, {"size": 0, "name": "/usr/share/locale/cmc/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/cmc"}, {"size": 0, "name": "/usr/share/locale/co/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/co"}, {"size": 0, "name": "/usr/share/locale/cop/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/cop"}, {"size": 0, "name": "/usr/share/locale/cpe/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/cpe"}, {"size": 0, "name": "/usr/share/locale/cpf/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/cpf"}, {"size": 0, "name": "/usr/share/locale/cpp/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/cpp"}, {"size": 0, "name": "/usr/share/locale/cr/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/cr"}, {"size": 0, "name": "/usr/share/locale/crh/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/crh"}, {"size": 0, "name": "/usr/share/locale/crp/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/crp"}, {"size": 4, "name": "/usr/share/locale/cs_CZ/LC_MESSAGES"}, {"size": 4, "name": "/usr/share/locale/cs_CZ"}, {"size": 0, "name": "/usr/share/locale/csb/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/csb"}, {"size": 0, "name": "/usr/share/locale/cu/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/cu"}, {"size": 0, "name": "/usr/share/locale/cus/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/cus"}, {"size": 0, "name": "/usr/share/locale/cv/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/cv"}, {"size": 0, "name": "/usr/share/locale/dak/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/dak"}, {"size": 0, "name": "/usr/share/locale/dar/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/dar"}, {"size": 0, "name": "/usr/share/locale/day/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/day"}, {"size": 0, "name": "/usr/share/locale/de_AT/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/de_AT"}, {"size": 0, "name": "/usr/share/locale/de_DE/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/de_DE"}, {"size": 0, "name": "/usr/share/locale/default/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/default"}, {"size": 0, "name": "/usr/share/locale/del/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/del"}, {"size": 0, "name": "/usr/share/locale/den/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/den"}, {"size": 0, "name": "/usr/share/locale/dgr/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/dgr"}, {"size": 0, "name": "/usr/share/locale/din/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/din"}, {"size": 0, "name": "/usr/share/locale/doi/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/doi"}, {"size": 0, "name": "/usr/share/locale/dra/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/dra"}, {"size": 0, "name": "/usr/share/locale/dsb/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/dsb"}, {"size": 0, "name": "/usr/share/locale/dua/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/dua"}, {"size": 0, "name": "/usr/share/locale/dum/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/dum"}, {"size": 0, "name": "/usr/share/locale/dv/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/dv"}, {"size": 0, "name": "/usr/share/locale/dyu/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/dyu"}, {"size": 84, "name": "/usr/share/locale/dz/LC_MESSAGES"}, {"size": 84, "name": "/usr/share/locale/dz"}, {"size": 0, "name": "/usr/share/locale/ee/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ee"}, {"size": 0, "name": "/usr/share/locale/efi/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/efi"}, {"size": 0, "name": "/usr/share/locale/egy/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/egy"}, {"size": 0, "name": "/usr/share/locale/eka/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/eka"}, {"size": 0, "name": "/usr/share/locale/el_GR/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/el_GR"}, {"size": 0, "name": "/usr/share/locale/elx/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/elx"}, {"size": 0, "name": "/usr/share/locale/en/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/en"}, {"size": 72, "name": "/usr/share/locale/en@shaw/LC_MESSAGES"}, {"size": 72, "name": "/usr/share/locale/en@shaw"}, {"size": 0, "name": "/usr/share/locale/en_AU/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/en_AU"}, {"size": 84, "name": "/usr/share/locale/en_CA/LC_MESSAGES"}, {"size": 84, "name": "/usr/share/locale/en_CA"}, {"size": 0, "name": "/usr/share/locale/en_NZ/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/en_NZ"}, {"size": 36, "name": "/usr/share/locale/en_US/LC_MESSAGES"}, {"size": 36, "name": "/usr/share/locale/en_US"}, {"size": 0, "name": "/usr/share/locale/enm/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/enm"}, {"size": 0, "name": "/usr/share/locale/es_AR/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/es_AR"}, {"size": 0, "name": "/usr/share/locale/es_CL/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/es_CL"}, {"size": 0, "name": "/usr/share/locale/es_CO/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/es_CO"}, {"size": 0, "name": "/usr/share/locale/es_CR/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/es_CR"}, {"size": 0, "name": "/usr/share/locale/es_DO/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/es_DO"}, {"size": 0, "name": "/usr/share/locale/es_EC/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/es_EC"}, {"size": 4, "name": "/usr/share/locale/es_ES/LC_MESSAGES"}, {"size": 4, "name": "/usr/share/locale/es_ES"}, {"size": 0, "name": "/usr/share/locale/es_GT/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/es_GT"}, {"size": 4, "name": "/usr/share/locale/es_MX/LC_MESSAGES"}, {"size": 4, "name": "/usr/share/locale/es_MX"}, {"size": 0, "name": "/usr/share/locale/es_NI/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/es_NI"}, {"size": 0, "name": "/usr/share/locale/es_PA/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/es_PA"}, {"size": 0, "name": "/usr/share/locale/es_PE/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/es_PE"}, {"size": 0, "name": "/usr/share/locale/es_PR/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/es_PR"}, {"size": 0, "name": "/usr/share/locale/es_SV/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/es_SV"}, {"size": 0, "name": "/usr/share/locale/es_UY/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/es_UY"}, {"size": 0, "name": "/usr/share/locale/es_VE/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/es_VE"}, {"size": 52, "name": "/usr/share/locale/et_EE/LC_MESSAGES"}, {"size": 52, "name": "/usr/share/locale/et_EE"}, {"size": 8, "name": "/usr/share/locale/eu_ES/LC_MESSAGES"}, {"size": 8, "name": "/usr/share/locale/eu_ES"}, {"size": 0, "name": "/usr/share/locale/ewo/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ewo"}, {"size": 4, "name": "/usr/share/locale/fa_IR/LC_MESSAGES"}, {"size": 4, "name": "/usr/share/locale/fa_IR"}, {"size": 0, "name": "/usr/share/locale/fan/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/fan"}, {"size": 0, "name": "/usr/share/locale/fat/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/fat"}, {"size": 0, "name": "/usr/share/locale/ff/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ff"}, {"size": 0, "name": "/usr/share/locale/fi_FI/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/fi_FI"}, {"size": 0, "name": "/usr/share/locale/fil/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/fil"}, {"size": 0, "name": "/usr/share/locale/fiu/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/fiu"}, {"size": 0, "name": "/usr/share/locale/fj/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/fj"}, {"size": 0, "name": "/usr/share/locale/fo/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/fo"}, {"size": 0, "name": "/usr/share/locale/fon/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/fon"}, {"size": 0, "name": "/usr/share/locale/fr_BE/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/fr_BE"}, {"size": 0, "name": "/usr/share/locale/fr_CA/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/fr_CA"}, {"size": 0, "name": "/usr/share/locale/fr_CH/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/fr_CH"}, {"size": 0, "name": "/usr/share/locale/fr_FR/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/fr_FR"}, {"size": 0, "name": "/usr/share/locale/frm/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/frm"}, {"size": 0, "name": "/usr/share/locale/fro/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/fro"}, {"size": 0, "name": "/usr/share/locale/frr/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/frr"}, {"size": 0, "name": "/usr/share/locale/frs/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/frs"}, {"size": 84, "name": "/usr/share/locale/fur/LC_MESSAGES"}, {"size": 84, "name": "/usr/share/locale/fur"}, {"size": 0, "name": "/usr/share/locale/fy/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/fy"}, {"size": 0, "name": "/usr/share/locale/gaa/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/gaa"}, {"size": 0, "name": "/usr/share/locale/gay/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/gay"}, {"size": 0, "name": "/usr/share/locale/gba/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/gba"}, {"size": 36, "name": "/usr/share/locale/gd/LC_MESSAGES"}, {"size": 36, "name": "/usr/share/locale/gd"}, {"size": 0, "name": "/usr/share/locale/gem/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/gem"}, {"size": 0, "name": "/usr/share/locale/gez/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/gez"}, {"size": 0, "name": "/usr/share/locale/gil/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/gil"}, {"size": 0, "name": "/usr/share/locale/gl_ES/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/gl_ES"}, {"size": 0, "name": "/usr/share/locale/gmh/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/gmh"}, {"size": 0, "name": "/usr/share/locale/gn/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/gn"}, {"size": 0, "name": "/usr/share/locale/goh/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/goh"}, {"size": 0, "name": "/usr/share/locale/gon/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/gon"}, {"size": 0, "name": "/usr/share/locale/gor/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/gor"}, {"size": 0, "name": "/usr/share/locale/got/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/got"}, {"size": 0, "name": "/usr/share/locale/grb/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/grb"}, {"size": 0, "name": "/usr/share/locale/grc/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/grc"}, {"size": 0, "name": "/usr/share/locale/gsw/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/gsw"}, {"size": 0, "name": "/usr/share/locale/gv/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/gv"}, {"size": 0, "name": "/usr/share/locale/gwi/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/gwi"}, {"size": 0, "name": "/usr/share/locale/ha/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ha"}, {"size": 0, "name": "/usr/share/locale/hai/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/hai"}, {"size": 0, "name": "/usr/share/locale/haw/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/haw"}, {"size": 0, "name": "/usr/share/locale/he_IL/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/he_IL"}, {"size": 0, "name": "/usr/share/locale/hil/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/hil"}, {"size": 0, "name": "/usr/share/locale/him/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/him"}, {"size": 0, "name": "/usr/share/locale/hit/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/hit"}, {"size": 0, "name": "/usr/share/locale/hmn/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/hmn"}, {"size": 0, "name": "/usr/share/locale/ho/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ho"}, {"size": 4, "name": "/usr/share/locale/hr_HR/LC_MESSAGES"}, {"size": 4, "name": "/usr/share/locale/hr_HR"}, {"size": 0, "name": "/usr/share/locale/hsb/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/hsb"}, {"size": 0, "name": "/usr/share/locale/ht/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ht"}, {"size": 0, "name": "/usr/share/locale/hu_HU/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/hu_HU"}, {"size": 0, "name": "/usr/share/locale/hup/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/hup"}, {"size": 0, "name": "/usr/share/locale/hz/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/hz"}, {"size": 0, "name": "/usr/share/locale/iba/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/iba"}, {"size": 0, "name": "/usr/share/locale/ie/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ie"}, {"size": 0, "name": "/usr/share/locale/ig/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ig"}, {"size": 0, "name": "/usr/share/locale/ii/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ii"}, {"size": 0, "name": "/usr/share/locale/ijo/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ijo"}, {"size": 0, "name": "/usr/share/locale/ik/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ik"}, {"size": 4, "name": "/usr/share/locale/ilo/LC_MESSAGES"}, {"size": 4, "name": "/usr/share/locale/ilo"}, {"size": 0, "name": "/usr/share/locale/inc/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/inc"}, {"size": 0, "name": "/usr/share/locale/ine/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ine"}, {"size": 0, "name": "/usr/share/locale/inh/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/inh"}, {"size": 0, "name": "/usr/share/locale/io/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/io"}, {"size": 0, "name": "/usr/share/locale/ira/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ira"}, {"size": 0, "name": "/usr/share/locale/iro/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/iro"}, {"size": 0, "name": "/usr/share/locale/it_CH/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/it_CH"}, {"size": 4, "name": "/usr/share/locale/it_IT/LC_MESSAGES"}, {"size": 4, "name": "/usr/share/locale/it_IT"}, {"size": 0, "name": "/usr/share/locale/iu/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/iu"}, {"size": 4, "name": "/usr/share/locale/ja_JP/LC_MESSAGES"}, {"size": 4, "name": "/usr/share/locale/ja_JP"}, {"size": 0, "name": "/usr/share/locale/jbo/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/jbo"}, {"size": 0, "name": "/usr/share/locale/jpr/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/jpr"}, {"size": 0, "name": "/usr/share/locale/jrb/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/jrb"}, {"size": 0, "name": "/usr/share/locale/jv/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/jv"}, {"size": 0, "name": "/usr/share/locale/kaa/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/kaa"}, {"size": 0, "name": "/usr/share/locale/kab/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/kab"}, {"size": 0, "name": "/usr/share/locale/kac/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/kac"}, {"size": 0, "name": "/usr/share/locale/kam/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/kam"}, {"size": 0, "name": "/usr/share/locale/kar/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/kar"}, {"size": 0, "name": "/usr/share/locale/kaw/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/kaw"}, {"size": 0, "name": "/usr/share/locale/kbd/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/kbd"}, {"size": 0, "name": "/usr/share/locale/kg/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/kg"}, {"size": 0, "name": "/usr/share/locale/kha/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/kha"}, {"size": 0, "name": "/usr/share/locale/khi/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/khi"}, {"size": 0, "name": "/usr/share/locale/kho/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/kho"}, {"size": 0, "name": "/usr/share/locale/ki/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ki"}, {"size": 0, "name": "/usr/share/locale/kj/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/kj"}, {"size": 144, "name": "/usr/share/locale/kk/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/kk/LC_TIME"}, {"size": 144, "name": "/usr/share/locale/kk"}, {"size": 0, "name": "/usr/share/locale/kl/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/kl"}, {"size": 0, "name": "/usr/share/locale/kmb/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/kmb"}, {"size": 0, "name": "/usr/share/locale/ko_KR/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ko_KR"}, {"size": 0, "name": "/usr/share/locale/kok/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/kok"}, {"size": 0, "name": "/usr/share/locale/kos/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/kos"}, {"size": 0, "name": "/usr/share/locale/kpe/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/kpe"}, {"size": 0, "name": "/usr/share/locale/kr/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/kr"}, {"size": 0, "name": "/usr/share/locale/krc/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/krc"}, {"size": 0, "name": "/usr/share/locale/krl/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/krl"}, {"size": 0, "name": "/usr/share/locale/kro/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/kro"}, {"size": 0, "name": "/usr/share/locale/kru/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/kru"}, {"size": 12, "name": "/usr/share/locale/ks/LC_MESSAGES"}, {"size": 12, "name": "/usr/share/locale/ks"}, {"size": 0, "name": "/usr/share/locale/ks@devanagari/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ks@devanagari"}, {"size": 0, "name": "/usr/share/locale/kum/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/kum"}, {"size": 0, "name": "/usr/share/locale/kut/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/kut"}, {"size": 0, "name": "/usr/share/locale/kv/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/kv"}, {"size": 0, "name": "/usr/share/locale/kw/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/kw"}, {"size": 84, "name": "/usr/share/locale/ky/LC_MESSAGES"}, {"size": 84, "name": "/usr/share/locale/ky"}, {"size": 4, "name": "/usr/share/locale/la/LC_MESSAGES"}, {"size": 4, "name": "/usr/share/locale/la"}, {"size": 0, "name": "/usr/share/locale/lad/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/lad"}, {"size": 0, "name": "/usr/share/locale/lah/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/lah"}, {"size": 0, "name": "/usr/share/locale/lam/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/lam"}, {"size": 0, "name": "/usr/share/locale/lb/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/lb"}, {"size": 0, "name": "/usr/share/locale/lez/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/lez"}, {"size": 276, "name": "/usr/share/locale/lg/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/lg/LC_TIME"}, {"size": 276, "name": "/usr/share/locale/lg"}, {"size": 0, "name": "/usr/share/locale/li/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/li"}, {"size": 0, "name": "/usr/share/locale/ln/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ln"}, {"size": 0, "name": "/usr/share/locale/lol/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/lol"}, {"size": 0, "name": "/usr/share/locale/loz/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/loz"}, {"size": 0, "name": "/usr/share/locale/lu/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/lu"}, {"size": 0, "name": "/usr/share/locale/lua/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/lua"}, {"size": 0, "name": "/usr/share/locale/lui/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/lui"}, {"size": 0, "name": "/usr/share/locale/lun/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/lun"}, {"size": 0, "name": "/usr/share/locale/luo/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/luo"}, {"size": 0, "name": "/usr/share/locale/lus/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/lus"}, {"size": 4, "name": "/usr/share/locale/lv_LV/LC_MESSAGES"}, {"size": 4, "name": "/usr/share/locale/lv_LV"}, {"size": 0, "name": "/usr/share/locale/mad/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/mad"}, {"size": 0, "name": "/usr/share/locale/mag/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/mag"}, {"size": 0, "name": "/usr/share/locale/mak/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/mak"}, {"size": 0, "name": "/usr/share/locale/man/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/man"}, {"size": 0, "name": "/usr/share/locale/map/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/map"}, {"size": 0, "name": "/usr/share/locale/mas/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/mas"}, {"size": 0, "name": "/usr/share/locale/mdf/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/mdf"}, {"size": 0, "name": "/usr/share/locale/mdr/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/mdr"}, {"size": 0, "name": "/usr/share/locale/men/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/men"}, {"size": 28, "name": "/usr/share/locale/mg/LC_MESSAGES"}, {"size": 28, "name": "/usr/share/locale/mg"}, {"size": 0, "name": "/usr/share/locale/mga/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/mga"}, {"size": 0, "name": "/usr/share/locale/mh/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/mh"}, {"size": 0, "name": "/usr/share/locale/mi/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/mi"}, {"size": 0, "name": "/usr/share/locale/mic/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/mic"}, {"size": 0, "name": "/usr/share/locale/min/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/min"}, {"size": 0, "name": "/usr/share/locale/mis/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/mis"}, {"size": 0, "name": "/usr/share/locale/mkh/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/mkh"}, {"size": 24, "name": "/usr/share/locale/mn/LC_MESSAGES"}, {"size": 24, "name": "/usr/share/locale/mn"}, {"size": 0, "name": "/usr/share/locale/mnc/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/mnc"}, {"size": 0, "name": "/usr/share/locale/mni/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/mni"}, {"size": 0, "name": "/usr/share/locale/mno/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/mno"}, {"size": 0, "name": "/usr/share/locale/mo/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/mo"}, {"size": 0, "name": "/usr/share/locale/moh/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/moh"}, {"size": 0, "name": "/usr/share/locale/mos/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/mos"}, {"size": 4, "name": "/usr/share/locale/ms_MY/LC_MESSAGES"}, {"size": 4, "name": "/usr/share/locale/ms_MY"}, {"size": 8, "name": "/usr/share/locale/mt/LC_MESSAGES"}, {"size": 8, "name": "/usr/share/locale/mt"}, {"size": 0, "name": "/usr/share/locale/mul/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/mul"}, {"size": 0, "name": "/usr/share/locale/mun/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/mun"}, {"size": 0, "name": "/usr/share/locale/mus/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/mus"}, {"size": 0, "name": "/usr/share/locale/mwl/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/mwl"}, {"size": 0, "name": "/usr/share/locale/mwr/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/mwr"}, {"size": 0, "name": "/usr/share/locale/my_MM/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/my_MM"}, {"size": 0, "name": "/usr/share/locale/myn/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/myn"}, {"size": 0, "name": "/usr/share/locale/myv/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/myv"}, {"size": 0, "name": "/usr/share/locale/na/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/na"}, {"size": 0, "name": "/usr/share/locale/nah/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/nah"}, {"size": 0, "name": "/usr/share/locale/nai/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/nai"}, {"size": 0, "name": "/usr/share/locale/nap/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/nap"}, {"size": 0, "name": "/usr/share/locale/nb_NO/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/nb_NO"}, {"size": 0, "name": "/usr/share/locale/nd/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/nd"}, {"size": 0, "name": "/usr/share/locale/nds@NFE/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/nds@NFE"}, {"size": 0, "name": "/usr/share/locale/nds_DE/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/nds_DE"}, {"size": 96, "name": "/usr/share/locale/ne/LC_MESSAGES"}, {"size": 96, "name": "/usr/share/locale/ne"}, {"size": 0, "name": "/usr/share/locale/new/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/new"}, {"size": 0, "name": "/usr/share/locale/ng/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ng"}, {"size": 0, "name": "/usr/share/locale/nia/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/nia"}, {"size": 0, "name": "/usr/share/locale/nic/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/nic"}, {"size": 0, "name": "/usr/share/locale/niu/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/niu"}, {"size": 0, "name": "/usr/share/locale/nl_BE/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/nl_BE"}, {"size": 68, "name": "/usr/share/locale/nl_NL/LC_MESSAGES"}, {"size": 68, "name": "/usr/share/locale/nl_NL"}, {"size": 4, "name": "/usr/share/locale/no/LC_MESSAGES"}, {"size": 4, "name": "/usr/share/locale/no"}, {"size": 0, "name": "/usr/share/locale/nog/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/nog"}, {"size": 0, "name": "/usr/share/locale/non/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/non"}, {"size": 0, "name": "/usr/share/locale/nqo/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/nqo"}, {"size": 0, "name": "/usr/share/locale/nr/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/nr"}, {"size": 4, "name": "/usr/share/locale/nso/LC_MESSAGES"}, {"size": 4, "name": "/usr/share/locale/nso"}, {"size": 0, "name": "/usr/share/locale/nub/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/nub"}, {"size": 0, "name": "/usr/share/locale/nv/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/nv"}, {"size": 0, "name": "/usr/share/locale/nwc/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/nwc"}, {"size": 0, "name": "/usr/share/locale/ny/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ny"}, {"size": 0, "name": "/usr/share/locale/nym/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/nym"}, {"size": 0, "name": "/usr/share/locale/nyn/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/nyn"}, {"size": 0, "name": "/usr/share/locale/nyo/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/nyo"}, {"size": 0, "name": "/usr/share/locale/nzi/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/nzi"}, {"size": 136, "name": "/usr/share/locale/oc/LC_MESSAGES"}, {"size": 136, "name": "/usr/share/locale/oc"}, {"size": 0, "name": "/usr/share/locale/oj/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/oj"}, {"size": 0, "name": "/usr/share/locale/om/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/om"}, {"size": 0, "name": "/usr/share/locale/os/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/os"}, {"size": 0, "name": "/usr/share/locale/osa/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/osa"}, {"size": 0, "name": "/usr/share/locale/ota/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ota"}, {"size": 0, "name": "/usr/share/locale/oto/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/oto"}, {"size": 0, "name": "/usr/share/locale/paa/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/paa"}, {"size": 0, "name": "/usr/share/locale/pag/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/pag"}, {"size": 0, "name": "/usr/share/locale/pal/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/pal"}, {"size": 0, "name": "/usr/share/locale/pam/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/pam"}, {"size": 0, "name": "/usr/share/locale/pap/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/pap"}, {"size": 0, "name": "/usr/share/locale/pau/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/pau"}, {"size": 0, "name": "/usr/share/locale/peo/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/peo"}, {"size": 0, "name": "/usr/share/locale/phi/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/phi"}, {"size": 0, "name": "/usr/share/locale/phn/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/phn"}, {"size": 0, "name": "/usr/share/locale/pi/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/pi"}, {"size": 0, "name": "/usr/share/locale/pl_PL/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/pl_PL"}, {"size": 0, "name": "/usr/share/locale/pon/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/pon"}, {"size": 0, "name": "/usr/share/locale/pra/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/pra"}, {"size": 0, "name": "/usr/share/locale/pro/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/pro"}, {"size": 12, "name": "/usr/share/locale/ps/LC_MESSAGES"}, {"size": 12, "name": "/usr/share/locale/ps"}, {"size": 32, "name": "/usr/share/locale/pt_PT/LC_MESSAGES"}, {"size": 32, "name": "/usr/share/locale/pt_PT"}, {"size": 0, "name": "/usr/share/locale/qaa-qtz/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/qaa-qtz"}, {"size": 0, "name": "/usr/share/locale/qu/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/qu"}, {"size": 0, "name": "/usr/share/locale/raj/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/raj"}, {"size": 0, "name": "/usr/share/locale/rap/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/rap"}, {"size": 0, "name": "/usr/share/locale/rar/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/rar"}, {"size": 0, "name": "/usr/share/locale/rm/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/rm"}, {"size": 0, "name": "/usr/share/locale/rn/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/rn"}, {"size": 0, "name": "/usr/share/locale/roa/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/roa"}, {"size": 0, "name": "/usr/share/locale/rom/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/rom"}, {"size": 4, "name": "/usr/share/locale/ru_RU/LC_MESSAGES"}, {"size": 4, "name": "/usr/share/locale/ru_RU"}, {"size": 0, "name": "/usr/share/locale/rup/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/rup"}, {"size": 0, "name": "/usr/share/locale/sa/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sa"}, {"size": 0, "name": "/usr/share/locale/sad/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sad"}, {"size": 0, "name": "/usr/share/locale/sah/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sah"}, {"size": 0, "name": "/usr/share/locale/sai/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sai"}, {"size": 0, "name": "/usr/share/locale/sal/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sal"}, {"size": 0, "name": "/usr/share/locale/sam/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sam"}, {"size": 0, "name": "/usr/share/locale/sas/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sas"}, {"size": 0, "name": "/usr/share/locale/sat/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sat"}, {"size": 0, "name": "/usr/share/locale/sc/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sc"}, {"size": 0, "name": "/usr/share/locale/scn/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/scn"}, {"size": 0, "name": "/usr/share/locale/sco/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sco"}, {"size": 0, "name": "/usr/share/locale/sd/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sd"}, {"size": 0, "name": "/usr/share/locale/se/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/se"}, {"size": 0, "name": "/usr/share/locale/sel/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sel"}, {"size": 0, "name": "/usr/share/locale/sem/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sem"}, {"size": 0, "name": "/usr/share/locale/sg/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sg"}, {"size": 0, "name": "/usr/share/locale/sga/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sga"}, {"size": 0, "name": "/usr/share/locale/sgn/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sgn"}, {"size": 0, "name": "/usr/share/locale/shn/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/shn"}, {"size": 0, "name": "/usr/share/locale/sid/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sid"}, {"size": 0, "name": "/usr/share/locale/sio/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sio"}, {"size": 0, "name": "/usr/share/locale/sit/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sit"}, {"size": 4, "name": "/usr/share/locale/sl_SI/LC_MESSAGES"}, {"size": 4, "name": "/usr/share/locale/sl_SI"}, {"size": 0, "name": "/usr/share/locale/sla/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sla"}, {"size": 0, "name": "/usr/share/locale/sm/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sm"}, {"size": 0, "name": "/usr/share/locale/sma/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sma"}, {"size": 0, "name": "/usr/share/locale/smi/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/smi"}, {"size": 0, "name": "/usr/share/locale/smj/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/smj"}, {"size": 0, "name": "/usr/share/locale/smn/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/smn"}, {"size": 0, "name": "/usr/share/locale/sms/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sms"}, {"size": 0, "name": "/usr/share/locale/sn/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sn"}, {"size": 0, "name": "/usr/share/locale/snk/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/snk"}, {"size": 0, "name": "/usr/share/locale/so/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/so"}, {"size": 0, "name": "/usr/share/locale/sog/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sog"}, {"size": 0, "name": "/usr/share/locale/son/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/son"}, {"size": 0, "name": "/usr/share/locale/sq_AL/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sq_AL"}, {"size": 0, "name": "/usr/share/locale/sr@Latn/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sr@Latn"}, {"size": 16, "name": "/usr/share/locale/sr@ije/LC_MESSAGES"}, {"size": 16, "name": "/usr/share/locale/sr@ije"}, {"size": 0, "name": "/usr/share/locale/sr@ijekavian/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sr@ijekavian"}, {"size": 0, "name": "/usr/share/locale/sr@ijekavianlatin/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sr@ijekavianlatin"}, {"size": 0, "name": "/usr/share/locale/sr_RS/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sr_RS"}, {"size": 0, "name": "/usr/share/locale/srn/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/srn"}, {"size": 0, "name": "/usr/share/locale/srr/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/srr"}, {"size": 0, "name": "/usr/share/locale/ss/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ss"}, {"size": 0, "name": "/usr/share/locale/ssa/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ssa"}, {"size": 0, "name": "/usr/share/locale/st/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/st"}, {"size": 0, "name": "/usr/share/locale/su/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/su"}, {"size": 0, "name": "/usr/share/locale/suk/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/suk"}, {"size": 0, "name": "/usr/share/locale/sus/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sus"}, {"size": 0, "name": "/usr/share/locale/sux/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sux"}, {"size": 0, "name": "/usr/share/locale/sv_SE/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sv_SE"}, {"size": 0, "name": "/usr/share/locale/sw/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sw"}, {"size": 0, "name": "/usr/share/locale/syc/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/syc"}, {"size": 0, "name": "/usr/share/locale/syr/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/syr"}, {"size": 0, "name": "/usr/share/locale/tai/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/tai"}, {"size": 0, "name": "/usr/share/locale/tem/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/tem"}, {"size": 0, "name": "/usr/share/locale/ter/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ter"}, {"size": 0, "name": "/usr/share/locale/tet/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/tet"}, {"size": 0, "name": "/usr/share/locale/ti/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ti"}, {"size": 0, "name": "/usr/share/locale/tig/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/tig"}, {"size": 0, "name": "/usr/share/locale/tiv/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/tiv"}, {"size": 0, "name": "/usr/share/locale/tk/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/tk"}, {"size": 0, "name": "/usr/share/locale/tkl/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/tkl"}, {"size": 48, "name": "/usr/share/locale/tl/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/tl"}, {"size": 0, "name": "/usr/share/locale/tlh/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/tlh"}, {"size": 0, "name": "/usr/share/locale/tli/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/tli"}, {"size": 0, "name": "/usr/share/locale/tmh/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/tmh"}, {"size": 0, "name": "/usr/share/locale/tn/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/tn"}, {"size": 0, "name": "/usr/share/locale/to/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/to"}, {"size": 0, "name": "/usr/share/locale/tog/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/tog"}, {"size": 0, "name": "/usr/share/locale/tpi/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/tpi"}, {"size": 0, "name": "/usr/share/locale/ts/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ts"}, {"size": 0, "name": "/usr/share/locale/tsi/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/tsi"}, {"size": 8, "name": "/usr/share/locale/tt/LC_MESSAGES"}, {"size": 8, "name": "/usr/share/locale/tt"}, {"size": 0, "name": "/usr/share/locale/tum/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/tum"}, {"size": 0, "name": "/usr/share/locale/tup/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/tup"}, {"size": 0, "name": "/usr/share/locale/tut/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/tut"}, {"size": 0, "name": "/usr/share/locale/tvl/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/tvl"}, {"size": 0, "name": "/usr/share/locale/tw/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/tw"}, {"size": 0, "name": "/usr/share/locale/ty/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ty"}, {"size": 0, "name": "/usr/share/locale/tyv/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/tyv"}, {"size": 0, "name": "/usr/share/locale/udm/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/udm"}, {"size": 124, "name": "/usr/share/locale/ug/LC_MESSAGES"}, {"size": 124, "name": "/usr/share/locale/ug"}, {"size": 0, "name": "/usr/share/locale/uga/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/uga"}, {"size": 4, "name": "/usr/share/locale/uk_UA/LC_MESSAGES"}, {"size": 4, "name": "/usr/share/locale/uk_UA"}, {"size": 0, "name": "/usr/share/locale/umb/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/umb"}, {"size": 0, "name": "/usr/share/locale/und/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/und"}, {"size": 0, "name": "/usr/share/locale/ur_PK/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ur_PK"}, {"size": 0, "name": "/usr/share/locale/uz/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/uz"}, {"size": 0, "name": "/usr/share/locale/uz@Latn/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/uz@Latn"}, {"size": 0, "name": "/usr/share/locale/uz@cyrillic/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/uz@cyrillic"}, {"size": 0, "name": "/usr/share/locale/vai/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/vai"}, {"size": 0, "name": "/usr/share/locale/ve/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ve"}, {"size": 0, "name": "/usr/share/locale/vo/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/vo"}, {"size": 0, "name": "/usr/share/locale/vot/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/vot"}, {"size": 24, "name": "/usr/share/locale/wa/LC_MESSAGES"}, {"size": 24, "name": "/usr/share/locale/wa"}, {"size": 0, "name": "/usr/share/locale/wak/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/wak"}, {"size": 0, "name": "/usr/share/locale/wal/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/wal"}, {"size": 0, "name": "/usr/share/locale/war/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/war"}, {"size": 0, "name": "/usr/share/locale/was/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/was"}, {"size": 0, "name": "/usr/share/locale/wen/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/wen"}, {"size": 8, "name": "/usr/share/locale/wo/LC_MESSAGES"}, {"size": 8, "name": "/usr/share/locale/wo"}, {"size": 0, "name": "/usr/share/locale/xal/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/xal"}, {"size": 24, "name": "/usr/share/locale/xh/LC_MESSAGES"}, {"size": 24, "name": "/usr/share/locale/xh"}, {"size": 0, "name": "/usr/share/locale/yao/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/yao"}, {"size": 0, "name": "/usr/share/locale/yap/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/yap"}, {"size": 16, "name": "/usr/share/locale/yi/LC_MESSAGES"}, {"size": 16, "name": "/usr/share/locale/yi"}, {"size": 0, "name": "/usr/share/locale/yo/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/yo"}, {"size": 0, "name": "/usr/share/locale/ypk/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ypk"}, {"size": 0, "name": "/usr/share/locale/za/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/za"}, {"size": 0, "name": "/usr/share/locale/zap/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/zap"}, {"size": 0, "name": "/usr/share/locale/zbl/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/zbl"}, {"size": 0, "name": "/usr/share/locale/zen/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/zen"}, {"size": 0, "name": "/usr/share/locale/zgh/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/zgh"}, {"size": 0, "name": "/usr/share/locale/zh/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/zh"}, {"size": 4, "name": "/usr/share/locale/zh_CN.GB2312/LC_MESSAGES"}, {"size": 4, "name": "/usr/share/locale/zh_CN.GB2312"}, {"size": 124, "name": "/usr/share/locale/zh_HK/LC_MESSAGES"}, {"size": 124, "name": "/usr/share/locale/zh_HK"}, {"size": 4, "name": "/usr/share/locale/zh_TW.Big5/LC_MESSAGES"}, {"size": 4, "name": "/usr/share/locale/zh_TW.Big5"}, {"size": 0, "name": "/usr/share/locale/znd/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/znd"}, {"size": 20, "name": "/usr/share/locale/zu/LC_MESSAGES"}, {"size": 20, "name": "/usr/share/locale/zu"}, {"size": 0, "name": "/usr/share/locale/zun/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/zun"}, {"size": 0, "name": "/usr/share/locale/zxx/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/zxx"}, {"size": 0, "name": "/usr/share/locale/zza/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/zza"}, {"size": 4, "name": "/usr/share/locale/mr_IN/LC_MESSAGES"}, {"size": 4, "name": "/usr/share/locale/mr_IN"}, {"size": 4, "name": "/usr/share/locale/aln/LC_MESSAGES"}, {"size": 4, "name": "/usr/share/locale/aln"}, {"size": 4, "name": "/usr/share/locale/bn_BD/LC_MESSAGES"}, {"size": 4, "name": "/usr/share/locale/bn_BD"}, {"size": 64, "name": "/usr/share/locale/lt_LT/LC_MESSAGES"}, {"size": 64, "name": "/usr/share/locale/lt_LT"}, {"size": 4, "name": "/usr/share/locale/si_LK/LC_MESSAGES"}, {"size": 4, "name": "/usr/share/locale/si_LK"}, {"size": 4, "name": "/usr/share/locale/ta_IN/LC_MESSAGES"}, {"size": 4, "name": "/usr/share/locale/ta_IN"}, {"size": 4, "name": "/usr/share/locale/vi_VN/LC_MESSAGES"}, {"size": 4, "name": "/usr/share/locale/vi_VN"}, {"size": 20, "name": "/usr/share/locale/id_ID/LC_MESSAGES"}, {"size": 20, "name": "/usr/share/locale/id_ID"}, {"size": 90420, "name": "/usr/share/locale"}, {"size": 2576, "name": "/usr/share/grub"}, {"size": 84, "name": "/usr/share/zoneinfo/Africa"}, {"size": 48, "name": "/usr/share/zoneinfo/America/Argentina"}, {"size": 32, "name": "/usr/share/zoneinfo/America/Indiana"}, {"size": 8, "name": "/usr/share/zoneinfo/America/Kentucky"}, {"size": 12, "name": "/usr/share/zoneinfo/America/North_Dakota"}, {"size": 548, "name": "/usr/share/zoneinfo/America"}, {"size": 44, "name": "/usr/share/zoneinfo/Antarctica"}, {"size": 4, "name": "/usr/share/zoneinfo/Arctic"}, {"size": 344, "name": "/usr/share/zoneinfo/Asia"}, {"size": 36, "name": "/usr/share/zoneinfo/Atlantic"}, {"size": 52, "name": "/usr/share/zoneinfo/Australia"}, {"size": 0, "name": "/usr/share/zoneinfo/Brazil"}, {"size": 0, "name": "/usr/share/zoneinfo/Canada"}, {"size": 12, "name": "/usr/share/zoneinfo/Chile"}, {"size": 116, "name": "/usr/share/zoneinfo/Etc"}, {"size": 180, "name": "/usr/share/zoneinfo/Europe"}, {"size": 32, "name": "/usr/share/zoneinfo/Indian"}, {"size": 0, "name": "/usr/share/zoneinfo/Mexico"}, {"size": 144, "name": "/usr/share/zoneinfo/Pacific"}, {"size": 0, "name": "/usr/share/zoneinfo/US"}, {"size": 84, "name": "/usr/share/zoneinfo/posix/Africa"}, {"size": 48, "name": "/usr/share/zoneinfo/posix/America/Argentina"}, {"size": 32, "name": "/usr/share/zoneinfo/posix/America/Indiana"}, {"size": 8, "name": "/usr/share/zoneinfo/posix/America/Kentucky"}, {"size": 12, "name": "/usr/share/zoneinfo/posix/America/North_Dakota"}, {"size": 548, "name": "/usr/share/zoneinfo/posix/America"}, {"size": 44, "name": "/usr/share/zoneinfo/posix/Antarctica"}, {"size": 4, "name": "/usr/share/zoneinfo/posix/Arctic"}, {"size": 344, "name": "/usr/share/zoneinfo/posix/Asia"}, {"size": 36, "name": "/usr/share/zoneinfo/posix/Atlantic"}, {"size": 52, "name": "/usr/share/zoneinfo/posix/Australia"}, {"size": 0, "name": "/usr/share/zoneinfo/posix/Brazil"}, {"size": 0, "name": "/usr/share/zoneinfo/posix/Canada"}, {"size": 12, "name": "/usr/share/zoneinfo/posix/Chile"}, {"size": 116, "name": "/usr/share/zoneinfo/posix/Etc"}, {"size": 180, "name": "/usr/share/zoneinfo/posix/Europe"}, {"size": 32, "name": "/usr/share/zoneinfo/posix/Indian"}, {"size": 0, "name": "/usr/share/zoneinfo/posix/Mexico"}, {"size": 144, "name": "/usr/share/zoneinfo/posix/Pacific"}, {"size": 0, "name": "/usr/share/zoneinfo/posix/US"}, {"size": 1644, "name": "/usr/share/zoneinfo/posix"}, {"size": 84, "name": "/usr/share/zoneinfo/right/Africa"}, {"size": 48, "name": "/usr/share/zoneinfo/right/America/Argentina"}, {"size": 32, "name": "/usr/share/zoneinfo/right/America/Indiana"}, {"size": 8, "name": "/usr/share/zoneinfo/right/America/Kentucky"}, {"size": 12, "name": "/usr/share/zoneinfo/right/America/North_Dakota"}, {"size": 556, "name": "/usr/share/zoneinfo/right/America"}, {"size": 44, "name": "/usr/share/zoneinfo/right/Antarctica"}, {"size": 4, "name": "/usr/share/zoneinfo/right/Arctic"}, {"size": 344, "name": "/usr/share/zoneinfo/right/Asia"}, {"size": 36, "name": "/usr/share/zoneinfo/right/Atlantic"}, {"size": 52, "name": "/usr/share/zoneinfo/right/Australia"}, {"size": 0, "name": "/usr/share/zoneinfo/right/Brazil"}, {"size": 0, "name": "/usr/share/zoneinfo/right/Canada"}, {"size": 12, "name": "/usr/share/zoneinfo/right/Chile"}, {"size": 116, "name": "/usr/share/zoneinfo/right/Etc"}, {"size": 184, "name": "/usr/share/zoneinfo/right/Europe"}, {"size": 32, "name": "/usr/share/zoneinfo/right/Indian"}, {"size": 0, "name": "/usr/share/zoneinfo/right/Mexico"}, {"size": 148, "name": "/usr/share/zoneinfo/right/Pacific"}, {"size": 0, "name": "/usr/share/zoneinfo/right/US"}, {"size": 1660, "name": "/usr/share/zoneinfo/right"}, {"size": 5112, "name": "/usr/share/zoneinfo"}, {"size": 16, "name": "/usr/share/tabset"}, {"size": 4, "name": "/usr/share/terminfo/A"}, {"size": 12, "name": "/usr/share/terminfo/E"}, {"size": 12, "name": "/usr/share/terminfo/a"}, {"size": 4, "name": "/usr/share/terminfo/b"}, {"size": 4, "name": "/usr/share/terminfo/c"}, {"size": 4, "name": "/usr/share/terminfo/d"}, {"size": 8, "name": "/usr/share/terminfo/e"}, {"size": 8, "name": "/usr/share/terminfo/g"}, {"size": 4, "name": "/usr/share/terminfo/h"}, {"size": 4, "name": "/usr/share/terminfo/j"}, {"size": 8, "name": "/usr/share/terminfo/k"}, {"size": 4, "name": "/usr/share/terminfo/l"}, {"size": 28, "name": "/usr/share/terminfo/m"}, {"size": 4, "name": "/usr/share/terminfo/n"}, {"size": 20, "name": "/usr/share/terminfo/p"}, {"size": 40, "name": "/usr/share/terminfo/r"}, {"size": 76, "name": "/usr/share/terminfo/s"}, {"size": 8, "name": "/usr/share/terminfo/t"}, {"size": 36, "name": "/usr/share/terminfo/v"}, {"size": 8, "name": "/usr/share/terminfo/w"}, {"size": 128, "name": "/usr/share/terminfo/x"}, {"size": 424, "name": "/usr/share/terminfo"}, {"size": 2548, "name": "/usr/share/info"}, {"size": 7484, "name": "/usr/share/man/man1"}, {"size": 3512, "name": "/usr/share/man/man8"}, {"size": 1528, "name": "/usr/share/man/man5"}, {"size": 304, "name": "/usr/share/man/man7"}, {"size": 0, "name": "/usr/share/man/man0p"}, {"size": 0, "name": "/usr/share/man/man1p"}, {"size": 0, "name": "/usr/share/man/man1x"}, {"size": 0, "name": "/usr/share/man/man2"}, {"size": 0, "name": "/usr/share/man/man2x"}, {"size": 1960, "name": "/usr/share/man/man3"}, {"size": 0, "name": "/usr/share/man/man3p"}, {"size": 0, "name": "/usr/share/man/man3x"}, {"size": 8, "name": "/usr/share/man/man4"}, {"size": 0, "name": "/usr/share/man/man4x"}, {"size": 0, "name": "/usr/share/man/man5x"}, {"size": 0, "name": "/usr/share/man/man6"}, {"size": 0, "name": "/usr/share/man/man6x"}, {"size": 0, "name": "/usr/share/man/man7x"}, {"size": 0, "name": "/usr/share/man/man8x"}, {"size": 0, "name": "/usr/share/man/man9"}, {"size": 0, "name": "/usr/share/man/man9x"}, {"size": 0, "name": "/usr/share/man/mann"}, {"size": 148, "name": "/usr/share/man/fr/man8"}, {"size": 64, "name": "/usr/share/man/fr/man1"}, {"size": 4, "name": "/usr/share/man/fr/man3"}, {"size": 32, "name": "/usr/share/man/fr/man5"}, {"size": 248, "name": "/usr/share/man/fr"}, {"size": 112, "name": "/usr/share/man/ja/man8"}, {"size": 60, "name": "/usr/share/man/ja/man1"}, {"size": 12, "name": "/usr/share/man/ja/man5"}, {"size": 184, "name": "/usr/share/man/ja"}, {"size": 20, "name": "/usr/share/man/ko/man8"}, {"size": 20, "name": "/usr/share/man/ko"}, {"size": 56, "name": "/usr/share/man/pl/man1"}, {"size": 88, "name": "/usr/share/man/pl/man8"}, {"size": 4, "name": "/usr/share/man/pl/man3"}, {"size": 4, "name": "/usr/share/man/pl/man5"}, {"size": 152, "name": "/usr/share/man/pl"}, {"size": 164, "name": "/usr/share/man/ru/man8"}, {"size": 68, "name": "/usr/share/man/ru/man1"}, {"size": 4, "name": "/usr/share/man/ru/man3"}, {"size": 24, "name": "/usr/share/man/ru/man5"}, {"size": 260, "name": "/usr/share/man/ru"}, {"size": 12, "name": "/usr/share/man/sk/man8"}, {"size": 12, "name": "/usr/share/man/sk"}, {"size": 4, "name": "/usr/share/man/cs/man1"}, {"size": 8, "name": "/usr/share/man/cs/man5"}, {"size": 24, "name": "/usr/share/man/cs/man8"}, {"size": 36, "name": "/usr/share/man/cs"}, {"size": 8, "name": "/usr/share/man/da/man1"}, {"size": 4, "name": "/usr/share/man/da/man5"}, {"size": 12, "name": "/usr/share/man/da/man8"}, {"size": 24, "name": "/usr/share/man/da"}, {"size": 56, "name": "/usr/share/man/de/man1"}, {"size": 4, "name": "/usr/share/man/de/man3"}, {"size": 24, "name": "/usr/share/man/de/man5"}, {"size": 136, "name": "/usr/share/man/de/man8"}, {"size": 220, "name": "/usr/share/man/de"}, {"size": 12, "name": "/usr/share/man/hu/man1"}, {"size": 4, "name": "/usr/share/man/hu/man8"}, {"size": 16, "name": "/usr/share/man/hu"}, {"size": 20, "name": "/usr/share/man/id/man8"}, {"size": 40, "name": "/usr/share/man/id/man1"}, {"size": 4, "name": "/usr/share/man/id/man5"}, {"size": 64, "name": "/usr/share/man/id"}, {"size": 44, "name": "/usr/share/man/it/man1"}, {"size": 4, "name": "/usr/share/man/it/man3"}, {"size": 20, "name": "/usr/share/man/it/man5"}, {"size": 108, "name": "/usr/share/man/it/man8"}, {"size": 176, "name": "/usr/share/man/it"}, {"size": 4, "name": "/usr/share/man/pt_BR/man1"}, {"size": 4, "name": "/usr/share/man/pt_BR/man5"}, {"size": 12, "name": "/usr/share/man/pt_BR/man8"}, {"size": 20, "name": "/usr/share/man/pt_BR"}, {"size": 12, "name": "/usr/share/man/sv/man1"}, {"size": 4, "name": "/usr/share/man/sv/man3"}, {"size": 4, "name": "/usr/share/man/sv/man5"}, {"size": 40, "name": "/usr/share/man/sv/man8"}, {"size": 60, "name": "/usr/share/man/sv"}, {"size": 4, "name": "/usr/share/man/tr/man1"}, {"size": 4, "name": "/usr/share/man/tr/man5"}, {"size": 28, "name": "/usr/share/man/tr/man8"}, {"size": 36, "name": "/usr/share/man/tr"}, {"size": 16, "name": "/usr/share/man/zh_CN/man1"}, {"size": 4, "name": "/usr/share/man/zh_CN/man3"}, {"size": 16, "name": "/usr/share/man/zh_CN/man5"}, {"size": 96, "name": "/usr/share/man/zh_CN/man8"}, {"size": 132, "name": "/usr/share/man/zh_CN"}, {"size": 4, "name": "/usr/share/man/zh_TW/man1"}, {"size": 32, "name": "/usr/share/man/zh_TW/man8"}, {"size": 36, "name": "/usr/share/man/zh_TW"}, {"size": 28, "name": "/usr/share/man/es/man1"}, {"size": 4, "name": "/usr/share/man/es/man5"}, {"size": 8, "name": "/usr/share/man/es/man8"}, {"size": 40, "name": "/usr/share/man/es"}, {"size": 40, "name": "/usr/share/man/nl/man1"}, {"size": 4, "name": "/usr/share/man/nl/man5"}, {"size": 12, "name": "/usr/share/man/nl/man8"}, {"size": 56, "name": "/usr/share/man/nl"}, {"size": 16, "name": "/usr/share/man/pt/man8"}, {"size": 16, "name": "/usr/share/man/pt"}, {"size": 16608, "name": "/usr/share/man"}, {"size": 3300, "name": "/usr/share/i18n/charmaps"}, {"size": 6400, "name": "/usr/share/i18n/locales"}, {"size": 9700, "name": "/usr/share/i18n"}, {"size": 0, "name": "/usr/share/X11"}, {"size": 8, "name": "/usr/share/aclocal"}, {"size": 32, "name": "/usr/share/applications"}, {"size": 0, "name": "/usr/share/augeas/lenses"}, {"size": 0, "name": "/usr/share/augeas"}, {"size": 18828, "name": "/usr/share/backgrounds"}, {"size": 0, "name": "/usr/share/desktop-directories"}, {"size": 0, "name": "/usr/share/dict"}, {"size": 0, "name": "/usr/share/empty"}, {"size": 0, "name": "/usr/share/games"}, {"size": 0, "name": "/usr/share/ghostscript/conf.d"}, {"size": 0, "name": "/usr/share/ghostscript"}, {"size": 0, "name": "/usr/share/gnome"}, {"size": 4, "name": "/usr/share/icons/Bluecurve/16x16/apps"}, {"size": 4, "name": "/usr/share/icons/Bluecurve/16x16"}, {"size": 4, "name": "/usr/share/icons/Bluecurve/22x22/apps"}, {"size": 4, "name": "/usr/share/icons/Bluecurve/22x22"}, {"size": 4, "name": "/usr/share/icons/Bluecurve/24x24/apps"}, {"size": 4, "name": "/usr/share/icons/Bluecurve/24x24"}, {"size": 8, "name": "/usr/share/icons/Bluecurve/256x256/apps"}, {"size": 8, "name": "/usr/share/icons/Bluecurve/256x256"}, {"size": 4, "name": "/usr/share/icons/Bluecurve/32x32/apps"}, {"size": 4, "name": "/usr/share/icons/Bluecurve/32x32"}, {"size": 4, "name": "/usr/share/icons/Bluecurve/36x36/apps"}, {"size": 4, "name": "/usr/share/icons/Bluecurve/36x36"}, {"size": 4, "name": "/usr/share/icons/Bluecurve/48x48/apps"}, {"size": 4, "name": "/usr/share/icons/Bluecurve/48x48"}, {"size": 4, "name": "/usr/share/icons/Bluecurve/96x96/apps"}, {"size": 4, "name": "/usr/share/icons/Bluecurve/96x96"}, {"size": 36, "name": "/usr/share/icons/Bluecurve"}, {"size": 4, "name": "/usr/share/icons/hicolor/16x16/apps"}, {"size": 4, "name": "/usr/share/icons/hicolor/16x16"}, {"size": 4, "name": "/usr/share/icons/hicolor/22x22/apps"}, {"size": 4, "name": "/usr/share/icons/hicolor/22x22"}, {"size": 4, "name": "/usr/share/icons/hicolor/24x24/apps"}, {"size": 4, "name": "/usr/share/icons/hicolor/24x24"}, {"size": 8, "name": "/usr/share/icons/hicolor/256x256/apps"}, {"size": 8, "name": "/usr/share/icons/hicolor/256x256"}, {"size": 4, "name": "/usr/share/icons/hicolor/32x32/apps"}, {"size": 4, "name": "/usr/share/icons/hicolor/32x32"}, {"size": 4, "name": "/usr/share/icons/hicolor/36x36/apps"}, {"size": 4, "name": "/usr/share/icons/hicolor/36x36"}, {"size": 12, "name": "/usr/share/icons/hicolor/48x48/apps"}, {"size": 12, "name": "/usr/share/icons/hicolor/48x48"}, {"size": 4, "name": "/usr/share/icons/hicolor/96x96/apps"}, {"size": 4, "name": "/usr/share/icons/hicolor/96x96"}, {"size": 12, "name": "/usr/share/icons/hicolor/scalable/apps"}, {"size": 12, "name": "/usr/share/icons/hicolor/scalable"}, {"size": 56, "name": "/usr/share/icons/hicolor"}, {"size": 0, "name": "/usr/share/icons/oxygen/16x16/places"}, {"size": 0, "name": "/usr/share/icons/oxygen/16x16"}, {"size": 0, "name": "/usr/share/icons/oxygen/22x22/places"}, {"size": 0, "name": "/usr/share/icons/oxygen/22x22"}, {"size": 0, "name": "/usr/share/icons/oxygen/24x24/places"}, {"size": 0, "name": "/usr/share/icons/oxygen/24x24"}, {"size": 0, "name": "/usr/share/icons/oxygen/256x256/places"}, {"size": 0, "name": "/usr/share/icons/oxygen/256x256"}, {"size": 0, "name": "/usr/share/icons/oxygen/32x32/places"}, {"size": 0, "name": "/usr/share/icons/oxygen/32x32"}, {"size": 0, "name": "/usr/share/icons/oxygen/36x36/places"}, {"size": 0, "name": "/usr/share/icons/oxygen/36x36"}, {"size": 0, "name": "/usr/share/icons/oxygen/48x48/places"}, {"size": 0, "name": "/usr/share/icons/oxygen/48x48"}, {"size": 0, "name": "/usr/share/icons/oxygen/96x96/places"}, {"size": 0, "name": "/usr/share/icons/oxygen/96x96"}, {"size": 0, "name": "/usr/share/icons/oxygen"}, {"size": 92, "name": "/usr/share/icons"}, {"size": 0, "name": "/usr/share/idl"}, {"size": 0, "name": "/usr/share/mime-info"}, {"size": 2848, "name": "/usr/share/misc"}, {"size": 0, "name": "/usr/share/omf"}, {"size": 44, "name": "/usr/share/pixmaps"}, {"size": 0, "name": "/usr/share/sounds"}, {"size": 0, "name": "/usr/share/themes"}, {"size": 0, "name": "/usr/share/xsessions"}, {"size": 92, "name": "/usr/share/gcc-4.8.2/python/libstdcxx/v6"}, {"size": 100, "name": "/usr/share/gcc-4.8.2/python/libstdcxx"}, {"size": 100, "name": "/usr/share/gcc-4.8.2/python"}, {"size": 100, "name": "/usr/share/gcc-4.8.2"}, {"size": 8, "name": "/usr/share/gdb/auto-load/usr/lib64"}, {"size": 8, "name": "/usr/share/gdb/auto-load/usr"}, {"size": 8, "name": "/usr/share/gdb/auto-load"}, {"size": 8, "name": "/usr/share/gdb"}, {"size": 84, "name": "/usr/share/awk"}, {"size": 4, "name": "/usr/share/p11-kit/modules"}, {"size": 4, "name": "/usr/share/p11-kit"}, {"size": 0, "name": "/usr/share/pki/ca-trust-legacy"}, {"size": 0, "name": "/usr/share/pki/ca-trust-source/anchors"}, {"size": 0, "name": "/usr/share/pki/ca-trust-source/blacklist"}, {"size": 944, "name": "/usr/share/pki/ca-trust-source"}, {"size": 944, "name": "/usr/share/pki"}, {"size": 4, "name": "/usr/share/centos-release"}, {"size": 0, "name": "/usr/share/lua/5.1"}, {"size": 0, "name": "/usr/share/lua"}, {"size": 9192, "name": "/usr/share/cracklib"}, {"size": 652, "name": "/usr/share/bash-completion/completions"}, {"size": 652, "name": "/usr/share/bash-completion"}, {"size": 4, "name": "/usr/share/glib-2.0/schemas"}, {"size": 4, "name": "/usr/share/glib-2.0"}, {"size": 2148, "name": "/usr/share/mime/packages"}, {"size": 1748, "name": "/usr/share/mime/application"}, {"size": 28, "name": "/usr/share/mime/message"}, {"size": 468, "name": "/usr/share/mime/text"}, {"size": 4, "name": "/usr/share/mime/x-epoc"}, {"size": 40, "name": "/usr/share/mime/multipart"}, {"size": 356, "name": "/usr/share/mime/image"}, {"size": 216, "name": "/usr/share/mime/audio"}, {"size": 28, "name": "/usr/share/mime/inode"}, {"size": 76, "name": "/usr/share/mime/x-content"}, {"size": 116, "name": "/usr/share/mime/video"}, {"size": 8, "name": "/usr/share/mime/model"}, {"size": 5532, "name": "/usr/share/mime"}, {"size": 12, "name": "/usr/share/pkgconfig"}, {"size": 0, "name": "/usr/share/file"}, {"size": 20, "name": "/usr/share/groff/1.22.2/font/devascii"}, {"size": 256, "name": "/usr/share/groff/1.22.2/font/devhtml"}, {"size": 20, "name": "/usr/share/groff/1.22.2/font/devlatin1"}, {"size": 52, "name": "/usr/share/groff/1.22.2/font/devps/generate"}, {"size": 656, "name": "/usr/share/groff/1.22.2/font/devps"}, {"size": 116, "name": "/usr/share/groff/1.22.2/font/devutf8"}, {"size": 1068, "name": "/usr/share/groff/1.22.2/font"}, {"size": 64, "name": "/usr/share/groff/1.22.2/tmac/mdoc"}, {"size": 784, "name": "/usr/share/groff/1.22.2/tmac"}, {"size": 1856, "name": "/usr/share/groff/1.22.2"}, {"size": 1856, "name": "/usr/share/groff"}, {"size": 16, "name": "/usr/share/systemtap/tapset"}, {"size": 16, "name": "/usr/share/systemtap"}, {"size": 0, "name": "/usr/share/gettext/its"}, {"size": 52, "name": "/usr/share/gettext/po"}, {"size": 24, "name": "/usr/share/gettext/styles"}, {"size": 168, "name": "/usr/share/gettext"}, {"size": 32, "name": "/usr/share/gettext-0.19.8/its"}, {"size": 32, "name": "/usr/share/gettext-0.19.8"}, {"size": 236, "name": "/usr/share/mysql/charsets"}, {"size": 48, "name": "/usr/share/mysql/czech"}, {"size": 48, "name": "/usr/share/mysql/danish"}, {"size": 48, "name": "/usr/share/mysql/dutch"}, {"size": 48, "name": "/usr/share/mysql/english"}, {"size": 48, "name": "/usr/share/mysql/estonian"}, {"size": 48, "name": "/usr/share/mysql/french"}, {"size": 56, "name": "/usr/share/mysql/german"}, {"size": 56, "name": "/usr/share/mysql/greek"}, {"size": 48, "name": "/usr/share/mysql/hungarian"}, {"size": 48, "name": "/usr/share/mysql/italian"}, {"size": 52, "name": "/usr/share/mysql/japanese"}, {"size": 52, "name": "/usr/share/mysql/korean"}, {"size": 48, "name": "/usr/share/mysql/norwegian"}, {"size": 48, "name": "/usr/share/mysql/norwegian-ny"}, {"size": 48, "name": "/usr/share/mysql/polish"}, {"size": 52, "name": "/usr/share/mysql/portuguese"}, {"size": 48, "name": "/usr/share/mysql/romanian"}, {"size": 64, "name": "/usr/share/mysql/russian"}, {"size": 52, "name": "/usr/share/mysql/serbian"}, {"size": 48, "name": "/usr/share/mysql/slovak"}, {"size": 48, "name": "/usr/share/mysql/spanish"}, {"size": 48, "name": "/usr/share/mysql/swedish"}, {"size": 56, "name": "/usr/share/mysql/ukrainian"}, {"size": 1400, "name": "/usr/share/mysql"}, {"size": 4, "name": "/usr/share/gnome-background-properties"}, {"size": 0, "name": "/usr/share/kde4/apps/desktoptheme/CentOS7/widgets"}, {"size": 4, "name": "/usr/share/kde4/apps/desktoptheme/CentOS7"}, {"size": 4, "name": "/usr/share/kde4/apps/desktoptheme"}, {"size": 696, "name": "/usr/share/kde4/apps/kdm/themes/CentOS7"}, {"size": 696, "name": "/usr/share/kde4/apps/kdm/themes"}, {"size": 696, "name": "/usr/share/kde4/apps/kdm"}, {"size": 1584, "name": "/usr/share/kde4/apps/ksplash/Themes/CentOS7/2560x1600"}, {"size": 1640, "name": "/usr/share/kde4/apps/ksplash/Themes/CentOS7"}, {"size": 1640, "name": "/usr/share/kde4/apps/ksplash/Themes"}, {"size": 1640, "name": "/usr/share/kde4/apps/ksplash"}, {"size": 2340, "name": "/usr/share/kde4/apps"}, {"size": 2340, "name": "/usr/share/kde4"}, {"size": 0, "name": "/usr/share/wallpapers/CentOS7/contents/images"}, {"size": 0, "name": "/usr/share/wallpapers/CentOS7/contents"}, {"size": 4, "name": "/usr/share/wallpapers/CentOS7"}, {"size": 4, "name": "/usr/share/wallpapers"}, {"size": 8, "name": "/usr/share/anaconda/boot"}, {"size": 448, "name": "/usr/share/anaconda/pixmaps/rnotes/en"}, {"size": 448, "name": "/usr/share/anaconda/pixmaps/rnotes"}, {"size": 620, "name": "/usr/share/anaconda/pixmaps"}, {"size": 628, "name": "/usr/share/anaconda"}, {"size": 36, "name": "/usr/share/centos-logos"}, {"size": 72, "name": "/usr/share/firstboot/themes/fedora-verne"}, {"size": 72, "name": "/usr/share/firstboot/themes"}, {"size": 72, "name": "/usr/share/firstboot"}, {"size": 316, "name": "/usr/share/plymouth/themes/charge"}, {"size": 4, "name": "/usr/share/plymouth/themes/details"}, {"size": 4, "name": "/usr/share/plymouth/themes/text"}, {"size": 324, "name": "/usr/share/plymouth/themes"}, {"size": 332, "name": "/usr/share/plymouth"}, {"size": 272, "name": "/usr/share/alsa/cards"}, {"size": 72, "name": "/usr/share/alsa/pcm"}, {"size": 8, "name": "/usr/share/alsa/topology/broadwell"}, {"size": 76, "name": "/usr/share/alsa/topology/bxtrt298"}, {"size": 68, "name": "/usr/share/alsa/topology/sklrt286"}, {"size": 152, "name": "/usr/share/alsa/topology"}, {"size": 0, "name": "/usr/share/alsa/ucm"}, {"size": 792, "name": "/usr/share/alsa/firmware/usx2yloader"}, {"size": 792, "name": "/usr/share/alsa/firmware"}, {"size": 1300, "name": "/usr/share/alsa"}, {"size": 3488, "name": "/usr/share/GeoIP"}, {"size": 0, "name": "/usr/share/dbus-1/services"}, {"size": 48, "name": "/usr/share/dbus-1/system-services"}, {"size": 0, "name": "/usr/share/dbus-1/interfaces"}, {"size": 60, "name": "/usr/share/dbus-1"}, {"size": 316, "name": "/usr/share/polkit-1/actions"}, {"size": 0, "name": "/usr/share/polkit-1/rules.d"}, {"size": 316, "name": "/usr/share/polkit-1"}, {"size": 8, "name": "/usr/share/systemd"}, {"size": 228, "name": "/usr/share/zsh/site-functions"}, {"size": 228, "name": "/usr/share/zsh"}, {"size": 8, "name": "/usr/share/os-prober"}, {"size": 24, "name": "/usr/share/selinux/packages"}, {"size": 44, "name": "/usr/share/selinux/targeted"}, {"size": 20, "name": "/usr/share/selinux/devel/include/services"}, {"size": 20, "name": "/usr/share/selinux/devel/include"}, {"size": 20, "name": "/usr/share/selinux/devel"}, {"size": 88, "name": "/usr/share/selinux"}, {"size": 7460, "name": "/usr/share/hwdata"}, {"size": 8, "name": "/usr/share/libdrm"}, {"size": 312, "name": "/usr/share/gnupg"}, {"size": 908, "name": "/usr/share/yum-cli"}, {"size": 0, "name": "/usr/share/yum-plugins"}, {"size": 4, "name": "/usr/share/tuned/grub2"}, {"size": 4, "name": "/usr/share/tuned"}, {"size": 0, "name": "/usr/share/firewalld"}, {"size": 0, "name": "/usr/share/kdump"}, {"size": 440, "name": "/usr/share/authconfig"}, {"size": 0, "name": "/usr/share/microcode_ctl/intel-ucode"}, {"size": 2632, "name": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode"}, {"size": 2640, "name": "/usr/share/microcode_ctl/ucode_with_caveats/intel"}, {"size": 32, "name": "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-4f-01/intel-ucode"}, {"size": 40, "name": "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-4f-01"}, {"size": 2680, "name": "/usr/share/microcode_ctl/ucode_with_caveats"}, {"size": 2680, "name": "/usr/share/microcode_ctl"}, {"size": 12, "name": "/usr/share/containers/oci/hooks.d"}, {"size": 12, "name": "/usr/share/containers/oci"}, {"size": 28, "name": "/usr/share/containers"}, {"size": 0, "name": "/usr/share/oci-umount/oci-umount.d"}, {"size": 4, "name": "/usr/share/oci-umount"}, {"size": 16, "name": "/usr/share/container-storage-setup"}, {"size": 0, "name": "/usr/share/rhel/secrets"}, {"size": 0, "name": "/usr/share/rhel"}, {"size": 0, "name": "/usr/share/setools-3.3"}, {"size": 36, "name": "/usr/share/fish/vendor_completions.d"}, {"size": 36, "name": "/usr/share/fish"}, {"size": 4, "name": "/usr/share/vim/vimfiles/doc"}, {"size": 4, "name": "/usr/share/vim/vimfiles/ftdetect"}, {"size": 4, "name": "/usr/share/vim/vimfiles/syntax"}, {"size": 12, "name": "/usr/share/vim/vimfiles"}, {"size": 12, "name": "/usr/share/vim"}, {"size": 48, "name": "/usr/share/perl5/vendor_perl/HTTP"}, {"size": 24, "name": "/usr/share/perl5/vendor_perl/Pod/Text"}, {"size": 60, "name": "/usr/share/perl5/vendor_perl/Pod/Perldoc"}, {"size": 412, "name": "/usr/share/perl5/vendor_perl/Pod/Simple"}, {"size": 768, "name": "/usr/share/perl5/vendor_perl/Pod"}, {"size": 12, "name": "/usr/share/perl5/vendor_perl/Text"}, {"size": 8, "name": "/usr/share/perl5/vendor_perl/Exporter"}, {"size": 12, "name": "/usr/share/perl5/vendor_perl/Time"}, {"size": 4, "name": "/usr/share/perl5/vendor_perl/Carp"}, {"size": 116, "name": "/usr/share/perl5/vendor_perl/File"}, {"size": 80, "name": "/usr/share/perl5/vendor_perl/Getopt"}, {"size": 4, "name": "/usr/share/perl5/vendor_perl/Error"}, {"size": 8, "name": "/usr/share/perl5/vendor_perl/Git"}, {"size": 1208, "name": "/usr/share/perl5/vendor_perl"}, {"size": 60, "name": "/usr/share/perl5/Pod"}, {"size": 0, "name": "/usr/share/perl5/App"}, {"size": 0, "name": "/usr/share/perl5/Archive"}, {"size": 32, "name": "/usr/share/perl5/Attribute"}, {"size": 164, "name": "/usr/share/perl5/B"}, {"size": 24, "name": "/usr/share/perl5/Class"}, {"size": 0, "name": "/usr/share/perl5/Compress"}, {"size": 4, "name": "/usr/share/perl5/Config"}, {"size": 20, "name": "/usr/share/perl5/DBM_Filter"}, {"size": 8, "name": "/usr/share/perl5/Devel"}, {"size": 4, "name": "/usr/share/perl5/overload"}, {"size": 40, "name": "/usr/share/perl5/Encode"}, {"size": 68, "name": "/usr/share/perl5/ExtUtils/Constant"}, {"size": 112, "name": "/usr/share/perl5/ExtUtils"}, {"size": 96, "name": "/usr/share/perl5/File"}, {"size": 24, "name": "/usr/share/perl5/Filter"}, {"size": 12, "name": "/usr/share/perl5/Getopt"}, {"size": 0, "name": "/usr/share/perl5/HTTP"}, {"size": 40, "name": "/usr/share/perl5/I18N/LangTags"}, {"size": 76, "name": "/usr/share/perl5/I18N"}, {"size": 0, "name": "/usr/share/perl5/IO/Compress"}, {"size": 0, "name": "/usr/share/perl5/IO/Uncompress"}, {"size": 0, "name": "/usr/share/perl5/IO"}, {"size": 20, "name": "/usr/share/perl5/IPC"}, {"size": 0, "name": "/usr/share/perl5/JSON"}, {"size": 0, "name": "/usr/share/perl5/Locale"}, {"size": 0, "name": "/usr/share/perl5/Log/Message"}, {"size": 0, "name": "/usr/share/perl5/Log"}, {"size": 4, "name": "/usr/share/perl5/Math/BigFloat"}, {"size": 96, "name": "/usr/share/perl5/Math/BigInt"}, {"size": 516, "name": "/usr/share/perl5/Math"}, {"size": 36, "name": "/usr/share/perl5/Memoize"}, {"size": 4, "name": "/usr/share/perl5/Module/CoreList"}, {"size": 12, "name": "/usr/share/perl5/Module"}, {"size": 20, "name": "/usr/share/perl5/Net/FTP"}, {"size": 288, "name": "/usr/share/perl5/Net"}, {"size": 0, "name": "/usr/share/perl5/Perl"}, {"size": 4, "name": "/usr/share/perl5/PerlIO/via"}, {"size": 4, "name": "/usr/share/perl5/PerlIO"}, {"size": 4, "name": "/usr/share/perl5/Search"}, {"size": 80, "name": "/usr/share/perl5/Term"}, {"size": 0, "name": "/usr/share/perl5/Test"}, {"size": 84, "name": "/usr/share/perl5/Text"}, {"size": 8, "name": "/usr/share/perl5/Thread"}, {"size": 136, "name": "/usr/share/perl5/Tie"}, {"size": 12, "name": "/usr/share/perl5/Time"}, {"size": 404, "name": "/usr/share/perl5/Unicode/Collate/CJK"}, {"size": 1036, "name": "/usr/share/perl5/Unicode/Collate/Locale"}, {"size": 3120, "name": "/usr/share/perl5/Unicode/Collate"}, {"size": 3248, "name": "/usr/share/perl5/Unicode"}, {"size": 16, "name": "/usr/share/perl5/User"}, {"size": 0, "name": "/usr/share/perl5/Version"}, {"size": 8, "name": "/usr/share/perl5/encoding"}, {"size": 6852, "name": "/usr/share/perl5/pod"}, {"size": 864, "name": "/usr/share/perl5/unicore/To"}, {"size": 4, "name": "/usr/share/perl5/unicore/lib/AHex"}, {"size": 60, "name": "/usr/share/perl5/unicore/lib/Age"}, {"size": 8, "name": "/usr/share/perl5/unicore/lib/Alpha"}, {"size": 76, "name": "/usr/share/perl5/unicore/lib/Bc"}, {"size": 4, "name": "/usr/share/perl5/unicore/lib/BidiC"}, {"size": 4, "name": "/usr/share/perl5/unicore/lib/BidiM"}, {"size": 864, "name": "/usr/share/perl5/unicore/lib/Blk"}, {"size": 4, "name": "/usr/share/perl5/unicore/lib/CE"}, {"size": 4, "name": "/usr/share/perl5/unicore/lib/CI"}, {"size": 8, "name": "/usr/share/perl5/unicore/lib/CWCF"}, {"size": 4, "name": "/usr/share/perl5/unicore/lib/CWCM"}, {"size": 8, "name": "/usr/share/perl5/unicore/lib/CWKCF"}, {"size": 8, "name": "/usr/share/perl5/unicore/lib/CWL"}, {"size": 8, "name": "/usr/share/perl5/unicore/lib/CWT"}, {"size": 8, "name": "/usr/share/perl5/unicore/lib/CWU"}, {"size": 4, "name": "/usr/share/perl5/unicore/lib/Cased"}, {"size": 224, "name": "/usr/share/perl5/unicore/lib/Ccc"}, {"size": 4, "name": "/usr/share/perl5/unicore/lib/CompEx"}, {"size": 4, "name": "/usr/share/perl5/unicore/lib/DI"}, {"size": 4, "name": "/usr/share/perl5/unicore/lib/Dash"}, {"size": 4, "name": "/usr/share/perl5/unicore/lib/Dep"}, {"size": 4, "name": "/usr/share/perl5/unicore/lib/Dia"}, {"size": 68, "name": "/usr/share/perl5/unicore/lib/Dt"}, {"size": 24, "name": "/usr/share/perl5/unicore/lib/Ea"}, {"size": 4, "name": "/usr/share/perl5/unicore/lib/Ext"}, {"size": 16, "name": "/usr/share/perl5/unicore/lib/GCB"}, {"size": 172, "name": "/usr/share/perl5/unicore/lib/Gc"}, {"size": 8, "name": "/usr/share/perl5/unicore/lib/GrBase"}, {"size": 4, "name": "/usr/share/perl5/unicore/lib/Hex"}, {"size": 4, "name": "/usr/share/perl5/unicore/lib/Hst"}, {"size": 4, "name": "/usr/share/perl5/unicore/lib/Hyphen"}, {"size": 8, "name": "/usr/share/perl5/unicore/lib/IDC"}, {"size": 8, "name": "/usr/share/perl5/unicore/lib/IDS"}, {"size": 4, "name": "/usr/share/perl5/unicore/lib/IDSB"}, {"size": 4, "name": "/usr/share/perl5/unicore/lib/IDST"}, {"size": 4, "name": "/usr/share/perl5/unicore/lib/Ideo"}, {"size": 84, "name": "/usr/share/perl5/unicore/lib/In"}, {"size": 236, "name": "/usr/share/perl5/unicore/lib/Jg"}, {"size": 4, "name": "/usr/share/perl5/unicore/lib/JoinC"}, {"size": 20, "name": "/usr/share/perl5/unicore/lib/Jt"}, {"size": 4, "name": "/usr/share/perl5/unicore/lib/LOE"}, {"size": 172, "name": "/usr/share/perl5/unicore/lib/Lb"}, {"size": 8, "name": "/usr/share/perl5/unicore/lib/Lower"}, {"size": 4, "name": "/usr/share/perl5/unicore/lib/Math"}, {"size": 4, "name": "/usr/share/perl5/unicore/lib/NChar"}, {"size": 4, "name": "/usr/share/perl5/unicore/lib/NFCQC"}, {"size": 8, "name": "/usr/share/perl5/unicore/lib/NFDQC"}, {"size": 12, "name": "/usr/share/perl5/unicore/lib/NFKCQC"}, {"size": 4, "name": "/usr/share/perl5/unicore/lib/NFKDQC"}, {"size": 8, "name": "/usr/share/perl5/unicore/lib/Nt"}, {"size": 468, "name": "/usr/share/perl5/unicore/lib/Nv"}, {"size": 4, "name": "/usr/share/perl5/unicore/lib/PatSyn"}, {"size": 4, "name": "/usr/share/perl5/unicore/lib/PatWS"}, {"size": 148, "name": "/usr/share/perl5/unicore/lib/Perl"}, {"size": 4, "name": "/usr/share/perl5/unicore/lib/QMark"}, {"size": 4, "name": "/usr/share/perl5/unicore/lib/Radical"}, {"size": 64, "name": "/usr/share/perl5/unicore/lib/SB"}, {"size": 4, "name": "/usr/share/perl5/unicore/lib/SD"}, {"size": 4, "name": "/usr/share/perl5/unicore/lib/STerm"}, {"size": 120, "name": "/usr/share/perl5/unicore/lib/Sc"}, {"size": 424, "name": "/usr/share/perl5/unicore/lib/Scx"}, {"size": 4, "name": "/usr/share/perl5/unicore/lib/Space"}, {"size": 4, "name": "/usr/share/perl5/unicore/lib/Term"}, {"size": 4, "name": "/usr/share/perl5/unicore/lib/UIdeo"}, {"size": 8, "name": "/usr/share/perl5/unicore/lib/Upper"}, {"size": 4, "name": "/usr/share/perl5/unicore/lib/VS"}, {"size": 44, "name": "/usr/share/perl5/unicore/lib/WB"}, {"size": 8, "name": "/usr/share/perl5/unicore/lib/XIDC"}, {"size": 8, "name": "/usr/share/perl5/unicore/lib/XIDS"}, {"size": 3560, "name": "/usr/share/perl5/unicore/lib"}, {"size": 5632, "name": "/usr/share/perl5/unicore"}, {"size": 4, "name": "/usr/share/perl5/warnings"}, {"size": 19900, "name": "/usr/share/perl5"}, {"size": 24, "name": "/usr/share/git-core/contrib/completion"}, {"size": 48, "name": "/usr/share/git-core/contrib/hooks"}, {"size": 72, "name": "/usr/share/git-core/contrib"}, {"size": 0, "name": "/usr/share/git-core/templates/branches"}, {"size": 40, "name": "/usr/share/git-core/templates/hooks"}, {"size": 4, "name": "/usr/share/git-core/templates/info"}, {"size": 48, "name": "/usr/share/git-core/templates"}, {"size": 120, "name": "/usr/share/git-core"}, {"size": 4, "name": "/usr/share/gems/specifications/default"}, {"size": 28, "name": "/usr/share/gems/specifications"}, {"size": 24, "name": "/usr/share/gems/gems/bigdecimal-1.2.0/lib/bigdecimal"}, {"size": 24, "name": "/usr/share/gems/gems/bigdecimal-1.2.0/lib"}, {"size": 24, "name": "/usr/share/gems/gems/bigdecimal-1.2.0"}, {"size": 52, "name": "/usr/share/gems/gems/json-1.7.7/lib/json/add"}, {"size": 80, "name": "/usr/share/gems/gems/json-1.7.7/lib/json"}, {"size": 84, "name": "/usr/share/gems/gems/json-1.7.7/lib"}, {"size": 84, "name": "/usr/share/gems/gems/json-1.7.7"}, {"size": 4, "name": "/usr/share/gems/gems/io-console-0.4.2/lib/io/console"}, {"size": 4, "name": "/usr/share/gems/gems/io-console-0.4.2/lib/io"}, {"size": 4, "name": "/usr/share/gems/gems/io-console-0.4.2/lib"}, {"size": 4, "name": "/usr/share/gems/gems/io-console-0.4.2"}, {"size": 8, "name": "/usr/share/gems/gems/rdoc-4.0.0/bin"}, {"size": 8, "name": "/usr/share/gems/gems/rdoc-4.0.0/lib/rdoc/context"}, {"size": 108, "name": "/usr/share/gems/gems/rdoc-4.0.0/lib/rdoc/generator/template/darkfish/images"}, {"size": 104, "name": "/usr/share/gems/gems/rdoc-4.0.0/lib/rdoc/generator/template/darkfish/js"}, {"size": 316, "name": "/usr/share/gems/gems/rdoc-4.0.0/lib/rdoc/generator/template/darkfish"}, {"size": 12, "name": "/usr/share/gems/gems/rdoc-4.0.0/lib/rdoc/generator/template/json_index/js"}, {"size": 12, "name": "/usr/share/gems/gems/rdoc-4.0.0/lib/rdoc/generator/template/json_index"}, {"size": 328, "name": "/usr/share/gems/gems/rdoc-4.0.0/lib/rdoc/generator/template"}, {"size": 364, "name": "/usr/share/gems/gems/rdoc-4.0.0/lib/rdoc/generator"}, {"size": 68, "name": "/usr/share/gems/gems/rdoc-4.0.0/lib/rdoc/markdown"}, {"size": 212, "name": "/usr/share/gems/gems/rdoc-4.0.0/lib/rdoc/markup"}, {"size": 112, "name": "/usr/share/gems/gems/rdoc-4.0.0/lib/rdoc/parser"}, {"size": 60, "name": "/usr/share/gems/gems/rdoc-4.0.0/lib/rdoc/rd"}, {"size": 52, "name": "/usr/share/gems/gems/rdoc-4.0.0/lib/rdoc/ri"}, {"size": 12, "name": "/usr/share/gems/gems/rdoc-4.0.0/lib/rdoc/stats"}, {"size": 1676, "name": "/usr/share/gems/gems/rdoc-4.0.0/lib/rdoc"}, {"size": 1684, "name": "/usr/share/gems/gems/rdoc-4.0.0/lib"}, {"size": 1692, "name": "/usr/share/gems/gems/rdoc-4.0.0"}, {"size": 8, "name": "/usr/share/gems/gems/psych-2.0.0/lib/psych/handlers"}, {"size": 16, "name": "/usr/share/gems/gems/psych-2.0.0/lib/psych/json"}, {"size": 28, "name": "/usr/share/gems/gems/psych-2.0.0/lib/psych/nodes"}, {"size": 44, "name": "/usr/share/gems/gems/psych-2.0.0/lib/psych/visitors"}, {"size": 176, "name": "/usr/share/gems/gems/psych-2.0.0/lib/psych"}, {"size": 188, "name": "/usr/share/gems/gems/psych-2.0.0/lib"}, {"size": 188, "name": "/usr/share/gems/gems/psych-2.0.0"}, {"size": 1992, "name": "/usr/share/gems/gems"}, {"size": 0, "name": "/usr/share/gems/build_info"}, {"size": 0, "name": "/usr/share/gems/cache"}, {"size": 0, "name": "/usr/share/gems/doc"}, {"size": 2020, "name": "/usr/share/gems"}, {"size": 40, "name": "/usr/share/ruby/webrick/httpauth"}, {"size": 40, "name": "/usr/share/ruby/webrick/httpservlet"}, {"size": 244, "name": "/usr/share/ruby/webrick"}, {"size": 48, "name": "/usr/share/ruby/shell"}, {"size": 4, "name": "/usr/share/ruby/cgi/session"}, {"size": 104, "name": "/usr/share/ruby/cgi"}, {"size": 100, "name": "/usr/share/ruby/xmlrpc"}, {"size": 12, "name": "/usr/share/ruby/yaml"}, {"size": 4, "name": "/usr/share/ruby/date"}, {"size": 12, "name": "/usr/share/ruby/digest"}, {"size": 48, "name": "/usr/share/ruby/dl"}, {"size": 28, "name": "/usr/share/ruby/irb/cmd"}, {"size": 40, "name": "/usr/share/ruby/irb/ext"}, {"size": 12, "name": "/usr/share/ruby/irb/lc/ja"}, {"size": 20, "name": "/usr/share/ruby/irb/lc"}, {"size": 240, "name": "/usr/share/ruby/irb"}, {"size": 108, "name": "/usr/share/ruby/drb"}, {"size": 48, "name": "/usr/share/ruby/fiddle"}, {"size": 32, "name": "/usr/share/ruby/matrix"}, {"size": 72, "name": "/usr/share/ruby/net/http"}, {"size": 372, "name": "/usr/share/ruby/net"}, {"size": 52, "name": "/usr/share/ruby/openssl"}, {"size": 24, "name": "/usr/share/ruby/optparse"}, {"size": 0, "name": "/usr/share/ruby/racc/rdoc"}, {"size": 20, "name": "/usr/share/ruby/racc"}, {"size": 4, "name": "/usr/share/ruby/rbconfig"}, {"size": 108, "name": "/usr/share/ruby/uri"}, {"size": 20, "name": "/usr/share/ruby/rexml/dtd"}, {"size": 16, "name": "/usr/share/ruby/rexml/formatters"}, {"size": 8, "name": "/usr/share/ruby/rexml/light"}, {"size": 76, "name": "/usr/share/ruby/rexml/parsers"}, {"size": 28, "name": "/usr/share/ruby/rexml/validation"}, {"size": 388, "name": "/usr/share/ruby/rexml"}, {"size": 32, "name": "/usr/share/ruby/rinda"}, {"size": 20, "name": "/usr/share/ruby/ripper"}, {"size": 8, "name": "/usr/share/ruby/rss/content"}, {"size": 12, "name": "/usr/share/ruby/rss/dublincore"}, {"size": 128, "name": "/usr/share/ruby/rss/maker"}, {"size": 340, "name": "/usr/share/ruby/rss"}, {"size": 0, "name": "/usr/share/ruby/vendor_ruby"}, {"size": 8, "name": "/usr/share/ruby/syslog"}, {"size": 24, "name": "/usr/share/ruby/test/unit"}, {"size": 48, "name": "/usr/share/ruby/test"}, {"size": 3516, "name": "/usr/share/ruby"}, {"size": 4, "name": "/usr/share/rubygems/rbconfig"}, {"size": 172, "name": "/usr/share/rubygems/rubygems/commands"}, {"size": 12, "name": "/usr/share/rubygems/rubygems/core_ext"}, {"size": 4, "name": "/usr/share/rubygems/rubygems/defaults"}, {"size": 20, "name": "/usr/share/rubygems/rubygems/ext"}, {"size": 4, "name": "/usr/share/rubygems/rubygems/package/tar_reader"}, {"size": 36, "name": "/usr/share/rubygems/rubygems/package"}, {"size": 20, "name": "/usr/share/rubygems/rubygems/security"}, {"size": 0, "name": "/usr/share/rubygems/rubygems/ssl_certs"}, {"size": 788, "name": "/usr/share/rubygems/rubygems"}, {"size": 824, "name": "/usr/share/rubygems"}, {"size": 264568, "name": "/usr/share"}, {"size": 0, "name": "/usr/etc"}, {"size": 0, "name": "/usr/games"}, {"size": 36, "name": "/usr/include/python2.7"}, {"size": 44, "name": "/usr/include/python3.6m"}, {"size": 80, "name": "/usr/include"}, {"size": 24, "name": "/usr/libexec/getconf"}, {"size": 16, "name": "/usr/libexec/awk"}, {"size": 32, "name": "/usr/libexec/p11-kit"}, {"size": 8, "name": "/usr/libexec/coreutils"}, {"size": 8, "name": "/usr/libexec/grubby"}, {"size": 4, "name": "/usr/libexec/openldap"}, {"size": 12, "name": "/usr/libexec/selinux/hll"}, {"size": 24, "name": "/usr/libexec/selinux"}, {"size": 12, "name": "/usr/libexec/utempter"}, {"size": 60, "name": "/usr/libexec/dbus-1"}, {"size": 28, "name": "/usr/libexec/initscripts/legacy-actions/auditd"}, {"size": 28, "name": "/usr/libexec/initscripts/legacy-actions"}, {"size": 44, "name": "/usr/libexec/initscripts"}, {"size": 16, "name": "/usr/libexec/linux-boot-probes/mounted"}, {"size": 20, "name": "/usr/libexec/linux-boot-probes"}, {"size": 4, "name": "/usr/libexec/os-probes/init"}, {"size": 8, "name": "/usr/libexec/os-probes/mounted/efi"}, {"size": 60, "name": "/usr/libexec/os-probes/mounted"}, {"size": 72, "name": "/usr/libexec/os-probes"}, {"size": 1004, "name": "/usr/libexec/openssh"}, {"size": 24, "name": "/usr/libexec/plymouth"}, {"size": 8, "name": "/usr/libexec/tuned"}, {"size": 8356, "name": "/usr/libexec/postfix"}, {"size": 24, "name": "/usr/libexec/microcode_ctl"}, {"size": 36, "name": "/usr/libexec/man-db"}, {"size": 544, "name": "/usr/libexec/sudo"}, {"size": 3340, "name": "/usr/libexec/oci/hooks.d"}, {"size": 3340, "name": "/usr/libexec/oci"}, {"size": 9972, "name": "/usr/libexec/docker"}, {"size": 72, "name": "/usr/libexec/git-core/mergetools"}, {"size": 8008, "name": "/usr/libexec/git-core"}, {"size": 33232, "name": "/usr/libexec"}, {"size": 3880, "name": "/usr/local/bin"}, {"size": 0, "name": "/usr/local/etc"}, {"size": 0, "name": "/usr/local/games"}, {"size": 0, "name": "/usr/local/include"}, {"size": 20, "name": "/usr/local/lib/python3.6/site-packages/wheel/cli/__pycache__"}, {"size": 44, "name": "/usr/local/lib/python3.6/site-packages/wheel/cli"}, {"size": 48, "name": "/usr/local/lib/python3.6/site-packages/wheel/__pycache__"}, {"size": 148, "name": "/usr/local/lib/python3.6/site-packages/wheel"}, {"size": 28, "name": "/usr/local/lib/python3.6/site-packages/wheel-0.33.6.dist-info"}, {"size": 12, "name": "/usr/local/lib/python3.6/site-packages/ifconfigparser/__pycache__"}, {"size": 28, "name": "/usr/local/lib/python3.6/site-packages/ifconfigparser"}, {"size": 20, "name": "/usr/local/lib/python3.6/site-packages/ifconfig_parser-0.0.1.dist-info"}, {"size": 76, "name": "/usr/local/lib/python3.6/site-packages/pip/_internal/cli/__pycache__"}, {"size": 160, "name": "/usr/local/lib/python3.6/site-packages/pip/_internal/cli"}, {"size": 104, "name": "/usr/local/lib/python3.6/site-packages/pip/_internal/commands/__pycache__"}, {"size": 212, "name": "/usr/local/lib/python3.6/site-packages/pip/_internal/commands"}, {"size": 8, "name": "/usr/local/lib/python3.6/site-packages/pip/_internal/distributions/source/__pycache__"}, {"size": 12, "name": "/usr/local/lib/python3.6/site-packages/pip/_internal/distributions/source"}, {"size": 16, "name": "/usr/local/lib/python3.6/site-packages/pip/_internal/distributions/__pycache__"}, {"size": 44, "name": "/usr/local/lib/python3.6/site-packages/pip/_internal/distributions"}, {"size": 36, "name": "/usr/local/lib/python3.6/site-packages/pip/_internal/models/__pycache__"}, {"size": 72, "name": "/usr/local/lib/python3.6/site-packages/pip/_internal/models"}, {"size": 32, "name": "/usr/local/lib/python3.6/site-packages/pip/_internal/network/__pycache__"}, {"size": 72, "name": "/usr/local/lib/python3.6/site-packages/pip/_internal/network"}, {"size": 28, "name": "/usr/local/lib/python3.6/site-packages/pip/_internal/operations/__pycache__"}, {"size": 68, "name": "/usr/local/lib/python3.6/site-packages/pip/_internal/operations"}, {"size": 84, "name": "/usr/local/lib/python3.6/site-packages/pip/_internal/req/__pycache__"}, {"size": 192, "name": "/usr/local/lib/python3.6/site-packages/pip/_internal/req"}, {"size": 152, "name": "/usr/local/lib/python3.6/site-packages/pip/_internal/utils/__pycache__"}, {"size": 332, "name": "/usr/local/lib/python3.6/site-packages/pip/_internal/utils"}, {"size": 60, "name": "/usr/local/lib/python3.6/site-packages/pip/_internal/vcs/__pycache__"}, {"size": 132, "name": "/usr/local/lib/python3.6/site-packages/pip/_internal/vcs"}, {"size": 180, "name": "/usr/local/lib/python3.6/site-packages/pip/_internal/__pycache__"}, {"size": 1708, "name": "/usr/local/lib/python3.6/site-packages/pip/_internal"}, {"size": 12, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/cachecontrol/caches/__pycache__"}, {"size": 28, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/cachecontrol/caches"}, {"size": 56, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/cachecontrol/__pycache__"}, {"size": 144, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/cachecontrol"}, {"size": 12, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/certifi/__pycache__"}, {"size": 300, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/certifi"}, {"size": 8, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/chardet/cli/__pycache__"}, {"size": 16, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/chardet/cli"}, {"size": 580, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/chardet/__pycache__"}, {"size": 1036, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/chardet"}, {"size": 32, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/colorama/__pycache__"}, {"size": 72, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/colorama"}, {"size": 112, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/distlib/_backport/__pycache__"}, {"size": 272, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/distlib/_backport"}, {"size": 316, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/distlib/__pycache__"}, {"size": 1368, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/distlib"}, {"size": 16, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/html5lib/_trie/__pycache__"}, {"size": 32, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/html5lib/_trie"}, {"size": 48, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/html5lib/filters/__pycache__"}, {"size": 108, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/html5lib/filters"}, {"size": 12, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__"}, {"size": 24, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/html5lib/treeadapters"}, {"size": 52, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__"}, {"size": 116, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/html5lib/treebuilders"}, {"size": 32, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__"}, {"size": 72, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/html5lib/treewalkers"}, {"size": 272, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/html5lib/__pycache__"}, {"size": 980, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/html5lib"}, {"size": 304, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/idna/__pycache__"}, {"size": 572, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/idna"}, {"size": 40, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/msgpack/__pycache__"}, {"size": 92, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/msgpack"}, {"size": 84, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/packaging/__pycache__"}, {"size": 180, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/packaging"}, {"size": 64, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/pep517/__pycache__"}, {"size": 128, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/pep517"}, {"size": 104, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/pkg_resources/__pycache__"}, {"size": 216, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/pkg_resources"}, {"size": 20, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/progress/__pycache__"}, {"size": 40, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/progress"}, {"size": 32, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/pytoml/__pycache__"}, {"size": 64, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/pytoml"}, {"size": 188, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/requests/__pycache__"}, {"size": 404, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/requests"}, {"size": 24, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__"}, {"size": 56, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/urllib3/contrib/_securetransport"}, {"size": 68, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/urllib3/contrib/__pycache__"}, {"size": 208, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/urllib3/contrib"}, {"size": 8, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__"}, {"size": 12, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/urllib3/packages/backports"}, {"size": 8, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__"}, {"size": 20, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname"}, {"size": 32, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/urllib3/packages/__pycache__"}, {"size": 100, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/urllib3/packages"}, {"size": 80, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/urllib3/util/__pycache__"}, {"size": 172, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/urllib3/util"}, {"size": 124, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/urllib3/__pycache__"}, {"size": 752, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/urllib3"}, {"size": 32, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/webencodings/__pycache__"}, {"size": 76, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/webencodings"}, {"size": 416, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor/__pycache__"}, {"size": 7324, "name": "/usr/local/lib/python3.6/site-packages/pip/_vendor"}, {"size": 8, "name": "/usr/local/lib/python3.6/site-packages/pip/__pycache__"}, {"size": 9048, "name": "/usr/local/lib/python3.6/site-packages/pip"}, {"size": 76, "name": "/usr/local/lib/python3.6/site-packages/pip-19.3.dist-info"}, {"size": 9352, "name": "/usr/local/lib/python3.6/site-packages"}, {"size": 9352, "name": "/usr/local/lib/python3.6"}, {"size": 9352, "name": "/usr/local/lib"}, {"size": 0, "name": "/usr/local/lib64"}, {"size": 0, "name": "/usr/local/libexec"}, {"size": 0, "name": "/usr/local/sbin"}, {"size": 0, "name": "/usr/local/share/applications"}, {"size": 0, "name": "/usr/local/share/info"}, {"size": 0, "name": "/usr/local/share/man/man1"}, {"size": 0, "name": "/usr/local/share/man/man1x"}, {"size": 0, "name": "/usr/local/share/man/man2"}, {"size": 0, "name": "/usr/local/share/man/man2x"}, {"size": 0, "name": "/usr/local/share/man/man3"}, {"size": 0, "name": "/usr/local/share/man/man3x"}, {"size": 0, "name": "/usr/local/share/man/man4"}, {"size": 0, "name": "/usr/local/share/man/man4x"}, {"size": 0, "name": "/usr/local/share/man/man5"}, {"size": 0, "name": "/usr/local/share/man/man5x"}, {"size": 0, "name": "/usr/local/share/man/man6"}, {"size": 0, "name": "/usr/local/share/man/man6x"}, {"size": 0, "name": "/usr/local/share/man/man7"}, {"size": 0, "name": "/usr/local/share/man/man7x"}, {"size": 0, "name": "/usr/local/share/man/man8"}, {"size": 0, "name": "/usr/local/share/man/man8x"}, {"size": 0, "name": "/usr/local/share/man/man9"}, {"size": 0, "name": "/usr/local/share/man/man9x"}, {"size": 0, "name": "/usr/local/share/man/mann"}, {"size": 0, "name": "/usr/local/share/man"}, {"size": 0, "name": "/usr/local/share"}, {"size": 0, "name": "/usr/local/src"}, {"size": 13232, "name": "/usr/local"}, {"size": 0, "name": "/usr/src/debug"}, {"size": 0, "name": "/usr/src/kernels"}, {"size": 0, "name": "/usr/src"}, {"size": 1404272, "name": "/usr"}] jc-1.17.3/tests/fixtures/centos-7.7/du.out000066400000000000000000007520741415226333200201770ustar00rootroot00000000000000134164 /usr/bin 43188 /usr/sbin 0 /usr/lib/debug/usr/bin 0 /usr/lib/debug/usr/sbin 0 /usr/lib/debug/usr/lib 0 /usr/lib/debug/usr/lib64 0 /usr/lib/debug/usr 0 /usr/lib/debug 2852 /usr/lib/grub/i386-pc 2852 /usr/lib/grub 8 /usr/lib/kbd/keymaps/legacy/amiga 16 /usr/lib/kbd/keymaps/legacy/atari 52 /usr/lib/kbd/keymaps/legacy/i386/azerty 4 /usr/lib/kbd/keymaps/legacy/i386/colemak 56 /usr/lib/kbd/keymaps/legacy/i386/dvorak 8 /usr/lib/kbd/keymaps/legacy/i386/fgGIod 84 /usr/lib/kbd/keymaps/legacy/i386/include 8 /usr/lib/kbd/keymaps/legacy/i386/olpc 556 /usr/lib/kbd/keymaps/legacy/i386/qwerty 88 /usr/lib/kbd/keymaps/legacy/i386/qwertz 856 /usr/lib/kbd/keymaps/legacy/i386 44 /usr/lib/kbd/keymaps/legacy/include 72 /usr/lib/kbd/keymaps/legacy/mac/all 28 /usr/lib/kbd/keymaps/legacy/mac/include 100 /usr/lib/kbd/keymaps/legacy/mac 76 /usr/lib/kbd/keymaps/legacy/sun 1100 /usr/lib/kbd/keymaps/legacy 1564 /usr/lib/kbd/keymaps/xkb 2664 /usr/lib/kbd/keymaps 160 /usr/lib/kbd/consolefonts/partialfonts 1028 /usr/lib/kbd/consolefonts 504 /usr/lib/kbd/consoletrans 376 /usr/lib/kbd/unimaps 4572 /usr/lib/kbd 16 /usr/lib/rpm/macros.d 4 /usr/lib/rpm/platform/aarch64-linux 4 /usr/lib/rpm/platform/alpha-linux 4 /usr/lib/rpm/platform/alphaev5-linux 4 /usr/lib/rpm/platform/alphaev56-linux 4 /usr/lib/rpm/platform/alphaev6-linux 4 /usr/lib/rpm/platform/alphaev67-linux 4 /usr/lib/rpm/platform/alphapca56-linux 4 /usr/lib/rpm/platform/amd64-linux 4 /usr/lib/rpm/platform/armv3l-linux 4 /usr/lib/rpm/platform/armv4b-linux 4 /usr/lib/rpm/platform/armv4l-linux 4 /usr/lib/rpm/platform/armv5tejl-linux 4 /usr/lib/rpm/platform/armv5tel-linux 4 /usr/lib/rpm/platform/armv6l-linux 4 /usr/lib/rpm/platform/armv7hl-linux 4 /usr/lib/rpm/platform/armv7hnl-linux 4 /usr/lib/rpm/platform/armv7l-linux 4 /usr/lib/rpm/platform/athlon-linux 4 /usr/lib/rpm/platform/geode-linux 4 /usr/lib/rpm/platform/i386-linux 4 /usr/lib/rpm/platform/i486-linux 4 /usr/lib/rpm/platform/i586-linux 4 /usr/lib/rpm/platform/i686-linux 4 /usr/lib/rpm/platform/ia32e-linux 4 /usr/lib/rpm/platform/ia64-linux 4 /usr/lib/rpm/platform/m68k-linux 4 /usr/lib/rpm/platform/noarch-linux 4 /usr/lib/rpm/platform/pentium3-linux 4 /usr/lib/rpm/platform/pentium4-linux 4 /usr/lib/rpm/platform/ppc-linux 4 /usr/lib/rpm/platform/ppc32dy4-linux 4 /usr/lib/rpm/platform/ppc64-linux 4 /usr/lib/rpm/platform/ppc64iseries-linux 4 /usr/lib/rpm/platform/ppc64le-linux 4 /usr/lib/rpm/platform/ppc64p7-linux 4 /usr/lib/rpm/platform/ppc64pseries-linux 4 /usr/lib/rpm/platform/ppc8260-linux 4 /usr/lib/rpm/platform/ppc8560-linux 4 /usr/lib/rpm/platform/ppciseries-linux 4 /usr/lib/rpm/platform/ppcpseries-linux 4 /usr/lib/rpm/platform/s390-linux 4 /usr/lib/rpm/platform/s390x-linux 4 /usr/lib/rpm/platform/sh-linux 4 /usr/lib/rpm/platform/sh3-linux 4 /usr/lib/rpm/platform/sh4-linux 4 /usr/lib/rpm/platform/sh4a-linux 4 /usr/lib/rpm/platform/sparc-linux 4 /usr/lib/rpm/platform/sparc64-linux 4 /usr/lib/rpm/platform/sparc64v-linux 4 /usr/lib/rpm/platform/sparcv8-linux 4 /usr/lib/rpm/platform/sparcv9-linux 4 /usr/lib/rpm/platform/sparcv9v-linux 4 /usr/lib/rpm/platform/x86_64-linux 216 /usr/lib/rpm/platform 328 /usr/lib/rpm 52 /usr/lib/firewalld/helpers 184 /usr/lib/firewalld/icmptypes 4 /usr/lib/firewalld/ipsets 624 /usr/lib/firewalld/services 36 /usr/lib/firewalld/zones 900 /usr/lib/firewalld 16 /usr/lib/systemd/system-preset 0 /usr/lib/systemd/system/initrd.target.wants 0 /usr/lib/systemd/system/shutdown.target.wants 0 /usr/lib/systemd/system/multi-user.target.wants 0 /usr/lib/systemd/system/basic.target.wants 0 /usr/lib/systemd/system/poweroff.target.wants 0 /usr/lib/systemd/system/reboot.target.wants 0 /usr/lib/systemd/system/dbus.target.wants 0 /usr/lib/systemd/system/default.target.wants 0 /usr/lib/systemd/system/rescue.target.wants 0 /usr/lib/systemd/system/runlevel5.target.wants 0 /usr/lib/systemd/system/runlevel1.target.wants 0 /usr/lib/systemd/system/runlevel2.target.wants 0 /usr/lib/systemd/system/graphical.target.wants 0 /usr/lib/systemd/system/runlevel3.target.wants 0 /usr/lib/systemd/system/runlevel4.target.wants 0 /usr/lib/systemd/system/local-fs.target.wants 0 /usr/lib/systemd/system/sockets.target.wants 4 /usr/lib/systemd/system/sysinit.target.wants 0 /usr/lib/systemd/system/syslog.target.wants 0 /usr/lib/systemd/system/timers.target.wants 0 /usr/lib/systemd/system/halt.target.wants 0 /usr/lib/systemd/system/initrd-switch-root.target.wants 0 /usr/lib/systemd/system/kexec.target.wants 876 /usr/lib/systemd/system 76 /usr/lib/systemd/catalog 4 /usr/lib/systemd/ntp-units.d 644 /usr/lib/systemd/system-generators 0 /usr/lib/systemd/system-shutdown 0 /usr/lib/systemd/system-sleep 16 /usr/lib/systemd/user 0 /usr/lib/systemd/user-generators 0 /usr/lib/systemd/user-preset 9540 /usr/lib/systemd 103560 /usr/lib/locale 24 /usr/lib/dracut/dracut.conf.d 4 /usr/lib/dracut/modules.d/05nss-softokn 4 /usr/lib/dracut/modules.d/00bash 4 /usr/lib/dracut/modules.d/00systemd-bootchart 8 /usr/lib/dracut/modules.d/03modsign 4 /usr/lib/dracut/modules.d/03rescue 12 /usr/lib/dracut/modules.d/04watchdog 4 /usr/lib/dracut/modules.d/05busybox 28 /usr/lib/dracut/modules.d/10i18n 16 /usr/lib/dracut/modules.d/30convertfs 8 /usr/lib/dracut/modules.d/45url-lib 4 /usr/lib/dracut/modules.d/50drm 20 /usr/lib/dracut/modules.d/50plymouth 20 /usr/lib/dracut/modules.d/80cms 4 /usr/lib/dracut/modules.d/90bcache 20 /usr/lib/dracut/modules.d/90btrfs 40 /usr/lib/dracut/modules.d/90crypt 20 /usr/lib/dracut/modules.d/90dm 16 /usr/lib/dracut/modules.d/90dmraid 44 /usr/lib/dracut/modules.d/90dmsquash-live 4 /usr/lib/dracut/modules.d/90dmsquash-live-ntfs 12 /usr/lib/dracut/modules.d/90kernel-modules 20 /usr/lib/dracut/modules.d/90lvm 56 /usr/lib/dracut/modules.d/90mdraid 16 /usr/lib/dracut/modules.d/90multipath 4 /usr/lib/dracut/modules.d/90qemu 8 /usr/lib/dracut/modules.d/91crypt-gpg 8 /usr/lib/dracut/modules.d/91crypt-loop 8 /usr/lib/dracut/modules.d/95dasd 8 /usr/lib/dracut/modules.d/95dasd_mod 4 /usr/lib/dracut/modules.d/95debug 8 /usr/lib/dracut/modules.d/95fstab-sys 12 /usr/lib/dracut/modules.d/95resume 24 /usr/lib/dracut/modules.d/95rootfs-block 4 /usr/lib/dracut/modules.d/95terminfo 16 /usr/lib/dracut/modules.d/95udev-rules 16 /usr/lib/dracut/modules.d/95virtfs 8 /usr/lib/dracut/modules.d/95zfcp 8 /usr/lib/dracut/modules.d/97biosdevname 12 /usr/lib/dracut/modules.d/98ecryptfs 8 /usr/lib/dracut/modules.d/98pollcdrom 8 /usr/lib/dracut/modules.d/98selinux 32 /usr/lib/dracut/modules.d/98syslog 176 /usr/lib/dracut/modules.d/98systemd 8 /usr/lib/dracut/modules.d/98usrmount 76 /usr/lib/dracut/modules.d/99base 12 /usr/lib/dracut/modules.d/99fs-lib 8 /usr/lib/dracut/modules.d/99img-lib 8 /usr/lib/dracut/modules.d/99shutdown 124 /usr/lib/dracut/modules.d/40network 16 /usr/lib/dracut/modules.d/45ifcfg 16 /usr/lib/dracut/modules.d/90livenet 4 /usr/lib/dracut/modules.d/90qemu-net 16 /usr/lib/dracut/modules.d/95cifs 28 /usr/lib/dracut/modules.d/95fcoe 8 /usr/lib/dracut/modules.d/95fcoe-uefi 36 /usr/lib/dracut/modules.d/95iscsi 12 /usr/lib/dracut/modules.d/95nbd 28 /usr/lib/dracut/modules.d/95nfs 4 /usr/lib/dracut/modules.d/95ssh-client 8 /usr/lib/dracut/modules.d/95znet 12 /usr/lib/dracut/modules.d/99uefi-lib 60 /usr/lib/dracut/modules.d/99kdumpbase 8 /usr/lib/dracut/modules.d/99microcode_ctl-fw_dir_override 1256 /usr/lib/dracut/modules.d 1416 /usr/lib/dracut 0 /usr/lib/games 0 /usr/lib/modules/3.10.0-957.el7.x86_64/extra 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/arch/x86/crypto/sha-mb 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/arch/x86/crypto/sha256-mb 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/arch/x86/crypto/sha512-mb 232 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/arch/x86/crypto 4 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/arch/x86/kernel/cpu/mcheck 4 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/arch/x86/kernel/cpu 4 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/arch/x86/kernel 280 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/arch/x86/kvm 24 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/arch/x86/oprofile 4 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/arch/x86/platform/intel 4 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/arch/x86/platform 544 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/arch/x86 544 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/arch 32 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/crypto/async_tx 428 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/crypto 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/acpi/apei 24 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/acpi/nfit 88 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/acpi 444 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/ata 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/auxdisplay 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/base/regmap 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/base 24 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/bcma 24 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/block/aoe 28 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/block/mtip32xx 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/block/zram 232 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/block 132 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/bluetooth 20 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/cdrom 20 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/char/hw_random 96 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/char/ipmi 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/char/tpm/st33zp24 60 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/char/tpm 232 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/char 56 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/cpufreq 24 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/crypto/ccp 24 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/crypto/chelsio 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/crypto/qat/qat_c3xxx 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/crypto/qat/qat_c3xxxvf 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/crypto/qat/qat_c62x 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/crypto/qat/qat_c62xvf 56 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/crypto/qat/qat_common 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/crypto/qat/qat_dh895xcc 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/crypto/qat/qat_dh895xccvf 104 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/crypto/qat 168 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/crypto 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/dax 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/dca 16 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/dma/dw 32 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/dma/ioat 68 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/dma 144 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/edac 80 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/firewire 32 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/firmware 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpio 744 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu/drm/amd/amdgpu 68 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu/drm/amd/amdkfd 4 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu/drm/amd/lib 816 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu/drm/amd 28 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu/drm/ast 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu/drm/bochs 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu/drm/cirrus 76 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu/drm/gma500 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu/drm/i2c 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu/drm/i915/gvt 636 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu/drm/i915 20 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu/drm/mgag200 544 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu/drm/nouveau 32 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu/drm/qxl 480 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu/drm/radeon 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu/drm/scheduler 44 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu/drm/ttm 16 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu/drm/udl 24 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu/drm/virtio 100 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu/drm/vmwgfx 3084 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu/drm 3084 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/gpu 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/hid/i2c-hid 372 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/hid 56 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/hv 56 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/hwmon/pmbus 936 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/hwmon 16 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/i2c/algos 144 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/i2c/busses 176 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/i2c 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/idle 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/iio/accel 4 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/iio/buffer 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/iio/common/hid-sensors 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/iio/common 4 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/iio/gyro 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/iio/light 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/iio/magnetometer 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/iio/orientation 4 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/iio/pressure 56 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/iio 240 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/core 52 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/hw/bnxt_re 52 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/hw/cxgb3 80 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/hw/cxgb4 244 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/hw/hfi1 84 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/hw/i40iw 116 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/hw/ipath 88 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/hw/mlx4 92 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/hw/mlx5 64 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/hw/mthca 76 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/hw/nes 40 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/hw/ocrdma 40 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/hw/qedr 152 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/hw/qib 32 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/hw/usnic 24 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/hw/vmw_pvrdma 1236 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/hw 36 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/sw/rdmavt 44 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/sw/rxe 80 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/sw 48 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/ulp/ipoib 24 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/ulp/iser 24 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/ulp/isert 16 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/ulp/opa_vnic 28 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/ulp/srp 24 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/ulp/srpt 164 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband/ulp 1720 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/infiniband 80 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/input/misc 48 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/input/mouse 28 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/input/rmi4 20 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/input/serio 48 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/input/tablet 20 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/input/touchscreen 268 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/input 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/iommu 44 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/isdn/capi 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/isdn/divert 72 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/isdn/gigaset 48 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/isdn/hardware/avm 160 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/isdn/hardware/mISDN 208 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/isdn/hardware 204 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/isdn/hisax 20 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/isdn/hysdn 72 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/isdn/i4l 88 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/isdn/mISDN 720 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/isdn 32 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/leds/trigger 96 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/leds 28 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/md/persistent-data 500 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/md 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/common/b2c2 40 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/common/saa7146 28 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/common/siano 108 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/common 48 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/dvb-core 808 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/dvb-frontends 16 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/firewire 36 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/i2c/cx25840 168 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/i2c 4 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/mmc/siano 4 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/mmc 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/pci/b2c2 104 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/pci/bt8xx 64 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/pci/cx18 72 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/pci/cx23885 92 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/pci/cx88 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/pci/ddbridge 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/pci/dm1105 80 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/pci/ivtv 32 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/pci/mantis 20 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/pci/ngene 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/pci/pluto2 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/pci/pt1 96 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/pci/saa7134 48 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/pci/saa7164 108 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/pci/ttpci 768 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/pci 412 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/rc/keymaps 608 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/rc 264 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/tuners 24 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/au0828 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/b2c2 76 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/cx231xx 228 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/dvb-usb 164 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/dvb-usb-v2 68 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/em28xx 16 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/gspca/gl860 16 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/gspca/m5602 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/gspca/stv06xx 420 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/gspca 16 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/hdpvr 60 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/pvrusb2 24 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/pwc 20 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/s2255 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/siano 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/stk1160 16 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/stkwebcam 24 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/tlg2300 44 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/tm6000 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/ttusb-budget 16 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/ttusb-dec 28 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/usbvision 40 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/uvc 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb/zr364xx 1324 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/usb 124 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media/v4l2-core 4240 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/media 20 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/memstick/core 40 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/memstick/host 60 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/memstick 124 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/message/fusion 124 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/message 64 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/mfd 16 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/misc/altera-stapl 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/misc/cb710 20 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/misc/eeprom 16 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/misc/lis3lv02d 48 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/misc/mei 28 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/misc/sgi-gru 44 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/misc/sgi-xp 32 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/misc/vmw_vmci 304 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/misc 84 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/mmc/core 132 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/mmc/host 216 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/mmc 4 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/mtd/chips 60 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/mtd/ubi 104 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/mtd 64 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/bonding 20 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/can/c_can 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/can/cc770 36 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/can/sja1000 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/can/softing 16 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/can/usb/peak_usb 52 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/can/usb 152 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/can 40 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/amazon/ena 40 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/amazon 68 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/amd/xgbe 100 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/amd 28 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/aquantia/atlantic 28 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/aquantia 20 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/atheros/alx 24 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/atheros/atl1c 20 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/atheros/atl1e 36 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/atheros/atlx 100 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/atheros 268 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/broadcom/bnx2x 80 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/broadcom/bnxt 520 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/broadcom 60 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/brocade/bna 60 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/brocade 20 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/cadence 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/calxeda 152 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/cavium/liquidio 152 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/cavium 68 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/chelsio/cxgb3 144 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/chelsio/cxgb4 36 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/chelsio/cxgb4vf 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/chelsio/libcxgb 256 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/chelsio 40 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/cisco/enic 40 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/cisco 124 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/dec/tulip 124 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/dec 64 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/emulex/benet 64 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/emulex 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/icplus 60 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/intel/e1000 96 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/intel/e1000e 52 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/intel/fm10k 148 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/intel/i40e 48 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/intel/i40evf 92 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/intel/igb 20 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/intel/igbvf 132 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/intel/ixgbe 32 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/intel/ixgbevf 680 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/intel 56 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/marvell 184 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/mellanox/mlx4 200 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/mellanox/mlx5/core 200 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/mellanox/mlx5 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/mellanox/mlxfw 244 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/mellanox/mlxsw 636 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/mellanox 28 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/myricom/myri10ge 28 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/myricom 80 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/netronome/nfp 80 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/netronome 28 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/oki-semi/pch_gbe 28 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/oki-semi 48 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/qlogic/netxen 216 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/qlogic/qed 48 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/qlogic/qede 120 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/qlogic/qlcnic 40 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/qlogic/qlge 492 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/qlogic 68 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/realtek 28 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/rocker 76 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/sfc/falcon 208 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/sfc 28 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/smsc 16 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet/ti 3920 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ethernet 28 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/fjes 28 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/hyperv 4 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ieee802154 88 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/phy 72 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/ppp 16 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/slip 44 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/team 316 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/usb 28 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/vmxnet3 40 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wan 136 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/ath/ath10k 228 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/ath/ath9k 44 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/ath/carl9170 96 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/ath/wil6210 516 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/ath 116 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/broadcom/brcm80211/brcmfmac 160 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/broadcom/brcm80211/brcmsmac 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/broadcom/brcm80211/brcmutil 284 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/broadcom/brcm80211 284 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/broadcom 168 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/intel/iwlegacy 80 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/intel/iwlwifi/dvm 144 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/intel/iwlwifi/mvm 312 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/intel/iwlwifi 480 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/intel 168 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/marvell/mwifiex 196 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/marvell 140 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/ralink/rt2x00 140 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/ralink 20 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/realtek/rtl818x/rtl8187 20 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/realtek/rtl818x 40 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/btcoexist 40 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8188ee 20 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8192c 24 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8192ce 28 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8192cu 44 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8192de 40 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8192ee 32 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8192se 36 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8723ae 40 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8723be 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8723com 64 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8821ae 480 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi 500 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless/realtek 2140 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net/wireless 7144 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/net 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/ntb/hw/amd 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/ntb/hw 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/ntb/test 40 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/ntb 92 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/nvdimm 92 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/nvme/host 64 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/nvme/target 156 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/nvme 44 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/parport 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/pci/hotplug 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/pci/pcie/aer 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/pci/pcie 28 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/pci 20 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/pcmcia 44 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/pinctrl/intel 52 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/pinctrl 380 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/platform/x86 380 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/platform 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/power 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/powercap 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/pps/clients 20 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/pps 20 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/ptp 4 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/pwm 172 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/rtc 56 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/aacraid 60 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/aic7xxx 20 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/arcmsr 56 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/be2iscsi 176 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/bfa 48 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/bnx2fc 28 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/bnx2i 60 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/csiostor 16 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/cxgbi/cxgb3i 20 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/cxgbi/cxgb4i 60 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/cxgbi 44 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/fcoe 48 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/fnic 56 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/isci 48 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/libfc 36 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/libsas 304 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/lpfc 64 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/megaraid 184 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/mpt3sas 28 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/mvsas 20 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/osd 56 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/pm8001 48 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/qedf 44 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/qedi 304 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/qla2xxx 108 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/qla4xxx 32 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/smartpqi 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi/ufs 2524 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/scsi 28 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/ssb 20 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/staging/fwserial 84 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/staging/rtl8192e/rtl8192e 168 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/staging/rtl8192e 76 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/staging/rtl8712 264 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/staging 32 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/target/iscsi/cxgbit 128 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/target/iscsi 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/target/loopback 16 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/target/tcm_fc 320 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/target 4 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/thermal/int340x_thermal 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/thermal 16 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/tty/serial/jsm 20 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/tty/serial 172 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/tty 36 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/uio 64 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/usb/atm 52 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/usb/class 4 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/usb/core 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/usb/host 16 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/usb/image 28 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/usb/misc/sisusbvga 136 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/usb/misc 416 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/usb/serial 136 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/usb/storage 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/usb/usbip 52 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/usb/wusbcore 896 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/usb 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/uwb/i1480/dfu 16 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/uwb/i1480 76 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/uwb 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/vfio/mdev 24 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/vfio/pci 64 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/vfio 48 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/vhost 16 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/video/backlight 44 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/video 48 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/virtio 200 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/watchdog 4 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/xen/xenfs 28 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers/xen 27840 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/drivers 424 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/btrfs 20 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/cachefiles 140 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/ceph 228 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/cifs 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/cramfs 72 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/dlm 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/exofs 212 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/ext4 48 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/fat 28 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/fscache 52 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/fuse 132 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/gfs2 20 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/isofs 44 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/jbd2 36 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/lockd 16 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/nfs/blocklayout 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/nfs/filelayout 20 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/nfs/flexfilelayout 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/nfs/objlayout 336 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/nfs 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/nfs_common 140 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/nfsd 400 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/nls 32 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/overlayfs 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/pstore 24 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/squashfs 48 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/udf 328 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs/xfs 2820 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/fs 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/kernel/trace 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/kernel 68 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/lib/raid6 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/lib/reed_solomon 116 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/lib 4 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/mm 40 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/6lowpan 28 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/802 16 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/8021q 72 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/atm 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/bluetooth/bnep 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/bluetooth/cmtp 16 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/bluetooth/hidp 32 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/bluetooth/rfcomm 272 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/bluetooth 128 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/bridge/netfilter 204 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/bridge 40 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/can 120 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/ceph 44 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/core 76 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/dccp 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/dns_resolver 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/ieee802154/6lowpan 48 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/ieee802154 196 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/ipv4/netfilter 352 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/ipv4 160 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/ipv6/netfilter 268 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/ipv6 20 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/key 64 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/l2tp 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/llc 248 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/mac80211 24 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/mac802154 240 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/netfilter/ipset 116 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/netfilter/ipvs 1036 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/netfilter 4 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/netlink 64 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/openvswitch 4 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/packet 4 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/psample 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/rfkill 400 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/sched 128 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/sctp 48 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/sunrpc/auth_gss 56 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/sunrpc/xprtrdma 232 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/sunrpc 4 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/unix 56 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/vmw_vsock 188 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/wireless 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net/xfrm 4096 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/net 20 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/core/seq/oss 84 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/core/seq 224 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/core 16 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/drivers/mpu401 20 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/drivers/opl3 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/drivers/pcsp 16 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/drivers/vx 92 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/drivers 36 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/firewire 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/hda/ext 40 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/hda 36 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/i2c/other 48 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/i2c 44 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/pci/ac97 16 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/pci/ali5451 48 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/pci/asihpi 64 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/pci/au88x0 20 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/pci/ca0106 40 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/pci/cs46xx 40 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/pci/ctxfi 260 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/pci/echoaudio 80 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/pci/emu10k1 256 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/pci/hda 84 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/pci/ice1712 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/pci/korg1212 16 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/pci/lola 16 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/pci/lx6464es 20 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/pci/mixart 48 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/pci/oxygen 28 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/pci/pcxhr 68 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/pci/rme9652 20 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/pci/trident 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/pci/vx222 1376 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/pci 304 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/soc/codecs 28 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/soc/intel/atom/sst 48 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/soc/intel/atom 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/soc/intel/baytrail 124 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/soc/intel/boards 36 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/soc/intel/common 32 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/soc/intel/haswell 68 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/soc/intel/skylake 320 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/soc/intel 716 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/soc 20 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/synth/emux 24 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/synth 16 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/usb/6fire 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/usb/bcd2000 20 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/usb/caiaq 8 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/usb/hiface 32 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/usb/line6 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/usb/misc 28 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/usb/usx2y 212 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/usb 12 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound/x86 2792 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/sound 4 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/virt/lib 4 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel/virt 38652 /usr/lib/modules/3.10.0-957.el7.x86_64/kernel 0 /usr/lib/modules/3.10.0-957.el7.x86_64/updates 20 /usr/lib/modules/3.10.0-957.el7.x86_64/vdso 0 /usr/lib/modules/3.10.0-957.el7.x86_64/weak-updates 41916 /usr/lib/modules/3.10.0-957.el7.x86_64 0 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/extra 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/arch/x86/crypto/sha-mb 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/arch/x86/crypto/sha256-mb 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/arch/x86/crypto/sha512-mb 232 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/arch/x86/crypto 4 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/arch/x86/kernel/cpu/mcheck 4 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/arch/x86/kernel/cpu 4 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/arch/x86/kernel 288 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/arch/x86/kvm 24 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/arch/x86/oprofile 4 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/arch/x86/platform/intel 4 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/arch/x86/platform 552 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/arch/x86 552 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/arch 32 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/crypto/async_tx 436 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/crypto 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/acpi/apei 24 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/acpi/nfit 88 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/acpi 444 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/ata 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/auxdisplay 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/base/regmap 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/base 24 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/bcma 24 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/block/aoe 28 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/block/mtip32xx 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/block/zram 236 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/block 132 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/bluetooth 20 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/cdrom 20 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/char/hw_random 96 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/char/ipmi 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/char/tpm/st33zp24 60 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/char/tpm 232 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/char 56 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/cpufreq 24 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/crypto/ccp 24 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/crypto/chelsio 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/crypto/qat/qat_c3xxx 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/crypto/qat/qat_c3xxxvf 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/crypto/qat/qat_c62x 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/crypto/qat/qat_c62xvf 56 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/crypto/qat/qat_common 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/crypto/qat/qat_dh895xcc 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/crypto/qat/qat_dh895xccvf 104 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/crypto/qat 168 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/crypto 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/dax 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/dca 16 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/dma/dw 32 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/dma/ioat 68 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/dma 144 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/edac 80 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/firewire 32 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/firmware 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpio 748 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu/drm/amd/amdgpu 68 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu/drm/amd/amdkfd 4 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu/drm/amd/lib 820 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu/drm/amd 28 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu/drm/ast 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu/drm/bochs 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu/drm/cirrus 76 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu/drm/gma500 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu/drm/i2c 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu/drm/i915/gvt 636 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu/drm/i915 20 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu/drm/mgag200 544 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu/drm/nouveau 32 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu/drm/qxl 480 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu/drm/radeon 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu/drm/scheduler 44 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu/drm/ttm 16 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu/drm/udl 24 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu/drm/virtio 100 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu/drm/vmwgfx 3088 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu/drm 3088 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/gpu 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/hid/i2c-hid 372 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/hid 56 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/hv 56 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/hwmon/pmbus 940 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/hwmon 16 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/i2c/algos 144 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/i2c/busses 176 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/i2c 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/idle 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/iio/accel 4 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/iio/buffer 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/iio/common/hid-sensors 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/iio/common 4 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/iio/gyro 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/iio/light 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/iio/magnetometer 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/iio/orientation 4 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/iio/pressure 56 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/iio 240 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/core 52 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/hw/bnxt_re 52 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/hw/cxgb3 80 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/hw/cxgb4 244 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/hw/hfi1 84 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/hw/i40iw 116 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/hw/ipath 88 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/hw/mlx4 92 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/hw/mlx5 64 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/hw/mthca 76 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/hw/nes 40 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/hw/ocrdma 40 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/hw/qedr 152 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/hw/qib 32 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/hw/usnic 24 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/hw/vmw_pvrdma 1236 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/hw 36 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/sw/rdmavt 44 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/sw/rxe 80 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/sw 48 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/ulp/ipoib 24 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/ulp/iser 24 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/ulp/isert 16 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/ulp/opa_vnic 28 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/ulp/srp 24 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/ulp/srpt 164 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband/ulp 1720 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/infiniband 80 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/input/misc 48 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/input/mouse 28 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/input/rmi4 20 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/input/serio 48 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/input/tablet 20 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/input/touchscreen 268 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/input 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/iommu 48 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/isdn/capi 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/isdn/divert 72 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/isdn/gigaset 48 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/isdn/hardware/avm 160 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/isdn/hardware/mISDN 208 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/isdn/hardware 200 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/isdn/hisax 20 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/isdn/hysdn 72 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/isdn/i4l 88 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/isdn/mISDN 720 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/isdn 32 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/leds/trigger 96 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/leds 28 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/md/persistent-data 504 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/md 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/common/b2c2 40 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/common/saa7146 28 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/common/siano 108 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/common 48 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/dvb-core 808 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/dvb-frontends 16 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/firewire 36 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/i2c/cx25840 168 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/i2c 4 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/mmc/siano 4 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/mmc 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/pci/b2c2 104 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/pci/bt8xx 64 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/pci/cx18 72 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/pci/cx23885 92 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/pci/cx88 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/pci/ddbridge 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/pci/dm1105 80 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/pci/ivtv 32 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/pci/mantis 20 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/pci/ngene 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/pci/pluto2 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/pci/pt1 96 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/pci/saa7134 48 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/pci/saa7164 108 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/pci/ttpci 768 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/pci 412 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/rc/keymaps 608 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/rc 264 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/tuners 24 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/au0828 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/b2c2 76 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/cx231xx 228 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/dvb-usb 164 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/dvb-usb-v2 68 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/em28xx 16 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/gspca/gl860 16 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/gspca/m5602 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/gspca/stv06xx 420 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/gspca 16 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/hdpvr 60 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/pvrusb2 24 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/pwc 20 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/s2255 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/siano 16 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/stk1160 16 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/stkwebcam 24 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/tlg2300 44 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/tm6000 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/ttusb-budget 16 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/ttusb-dec 28 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/usbvision 40 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/uvc 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb/zr364xx 1328 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/usb 124 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media/v4l2-core 4244 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/media 20 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/memstick/core 40 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/memstick/host 60 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/memstick 124 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/message/fusion 124 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/message 64 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/mfd 16 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/misc/altera-stapl 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/misc/cb710 20 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/misc/eeprom 16 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/misc/lis3lv02d 48 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/misc/mei 28 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/misc/sgi-gru 44 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/misc/sgi-xp 32 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/misc/vmw_vmci 304 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/misc 84 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/mmc/core 132 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/mmc/host 216 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/mmc 4 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/mtd/chips 60 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/mtd/ubi 104 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/mtd 64 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/bonding 20 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/can/c_can 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/can/cc770 36 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/can/sja1000 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/can/softing 16 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/can/usb/peak_usb 52 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/can/usb 152 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/can 40 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/amazon/ena 40 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/amazon 68 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/amd/xgbe 100 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/amd 28 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/aquantia/atlantic 28 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/aquantia 20 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/atheros/alx 24 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/atheros/atl1c 20 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/atheros/atl1e 36 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/atheros/atlx 100 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/atheros 268 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/broadcom/bnx2x 80 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/broadcom/bnxt 520 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/broadcom 60 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/brocade/bna 60 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/brocade 20 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/cadence 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/calxeda 152 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/cavium/liquidio 152 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/cavium 68 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/chelsio/cxgb3 144 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/chelsio/cxgb4 36 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/chelsio/cxgb4vf 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/chelsio/libcxgb 256 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/chelsio 40 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/cisco/enic 40 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/cisco 124 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/dec/tulip 124 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/dec 64 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/emulex/benet 64 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/emulex 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/icplus 60 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/intel/e1000 96 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/intel/e1000e 52 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/intel/fm10k 148 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/intel/i40e 48 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/intel/i40evf 92 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/intel/igb 20 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/intel/igbvf 132 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/intel/ixgbe 32 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/intel/ixgbevf 680 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/intel 56 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/marvell 188 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/mellanox/mlx4 200 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/mellanox/mlx5/core 200 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/mellanox/mlx5 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/mellanox/mlxfw 244 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/mellanox/mlxsw 640 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/mellanox 28 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/myricom/myri10ge 28 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/myricom 80 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/netronome/nfp 80 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/netronome 28 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/oki-semi/pch_gbe 28 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/oki-semi 48 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/qlogic/netxen 216 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/qlogic/qed 48 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/qlogic/qede 120 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/qlogic/qlcnic 40 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/qlogic/qlge 496 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/qlogic 68 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/realtek 28 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/rocker 76 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/sfc/falcon 208 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/sfc 28 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/smsc 16 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet/ti 3928 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ethernet 28 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/fjes 28 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/hyperv 4 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ieee802154 88 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/phy 72 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/ppp 16 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/slip 44 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/team 316 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/usb 28 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/vmxnet3 40 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wan 136 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/ath/ath10k 228 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/ath/ath9k 44 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/ath/carl9170 96 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/ath/wil6210 516 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/ath 116 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/broadcom/brcm80211/brcmfmac 160 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/broadcom/brcm80211/brcmsmac 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/broadcom/brcm80211/brcmutil 284 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/broadcom/brcm80211 284 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/broadcom 168 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/intel/iwlegacy 80 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/intel/iwlwifi/dvm 144 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/intel/iwlwifi/mvm 312 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/intel/iwlwifi 480 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/intel 168 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/marvell/mwifiex 196 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/marvell 140 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/ralink/rt2x00 140 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/ralink 20 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtl818x/rtl8187 20 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtl818x 40 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/btcoexist 40 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8188ee 20 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8192c 24 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8192ce 28 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8192cu 44 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8192de 40 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8192ee 32 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8192se 36 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8723ae 40 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8723be 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8723com 64 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8821ae 480 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi 500 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless/realtek 2140 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net/wireless 7152 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/net 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/ntb/hw/amd 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/ntb/hw 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/ntb/test 40 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/ntb 92 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/nvdimm 92 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/nvme/host 64 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/nvme/target 156 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/nvme 44 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/parport 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/pci/hotplug 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/pci/pcie/aer 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/pci/pcie 28 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/pci 20 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/pcmcia 44 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/pinctrl/intel 52 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/pinctrl 380 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/platform/x86 380 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/platform 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/power 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/powercap 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/pps/clients 20 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/pps 20 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/ptp 4 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/pwm 172 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/rtc 56 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/aacraid 60 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/aic7xxx 20 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/arcmsr 56 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/be2iscsi 176 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/bfa 48 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/bnx2fc 28 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/bnx2i 60 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/csiostor 16 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/cxgbi/cxgb3i 20 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/cxgbi/cxgb4i 60 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/cxgbi 44 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/fcoe 48 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/fnic 56 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/isci 48 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/libfc 36 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/libsas 304 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/lpfc 64 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/megaraid 184 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/mpt3sas 28 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/mvsas 20 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/osd 56 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/pm8001 48 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/qedf 44 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/qedi 304 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/qla2xxx 108 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/qla4xxx 32 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/smartpqi 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi/ufs 2524 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/scsi 28 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/ssb 20 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/staging/fwserial 84 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/staging/rtl8192e/rtl8192e 168 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/staging/rtl8192e 76 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/staging/rtl8712 264 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/staging 32 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/target/iscsi/cxgbit 128 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/target/iscsi 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/target/loopback 16 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/target/tcm_fc 320 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/target 4 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/thermal/int340x_thermal 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/thermal 16 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/tty/serial/jsm 20 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/tty/serial 172 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/tty 36 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/uio 64 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/usb/atm 52 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/usb/class 4 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/usb/core 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/usb/host 16 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/usb/image 28 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/usb/misc/sisusbvga 136 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/usb/misc 416 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/usb/serial 136 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/usb/storage 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/usb/usbip 52 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/usb/wusbcore 896 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/usb 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/uwb/i1480/dfu 16 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/uwb/i1480 76 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/uwb 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/vfio/mdev 24 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/vfio/pci 64 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/vfio 48 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/vhost 16 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/video/backlight 44 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/video 48 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/virtio 200 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/watchdog 4 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/xen/xenfs 28 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers/xen 27868 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/drivers 424 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/btrfs 20 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/cachefiles 140 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/ceph 228 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/cifs 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/cramfs 72 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/dlm 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/exofs 212 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/ext4 48 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/fat 28 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/fscache 52 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/fuse 132 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/gfs2 20 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/isofs 44 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/jbd2 36 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/lockd 16 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/nfs/blocklayout 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/nfs/filelayout 20 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/nfs/flexfilelayout 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/nfs/objlayout 336 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/nfs 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/nfs_common 140 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/nfsd 404 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/nls 32 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/overlayfs 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/pstore 24 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/squashfs 48 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/udf 328 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs/xfs 2824 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/fs 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/kernel/trace 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/kernel 68 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/lib/raid6 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/lib/reed_solomon 116 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/lib 4 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/mm 40 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/6lowpan 28 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/802 16 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/8021q 72 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/atm 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/bluetooth/bnep 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/bluetooth/cmtp 16 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/bluetooth/hidp 32 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/bluetooth/rfcomm 272 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/bluetooth 128 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/bridge/netfilter 204 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/bridge 40 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/can 120 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/ceph 44 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/core 76 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/dccp 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/dns_resolver 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/ieee802154/6lowpan 48 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/ieee802154 196 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/ipv4/netfilter 352 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/ipv4 160 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/ipv6/netfilter 268 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/ipv6 20 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/key 64 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/l2tp 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/llc 248 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/mac80211 24 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/mac802154 240 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/netfilter/ipset 116 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/netfilter/ipvs 1040 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/netfilter 4 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/netlink 64 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/openvswitch 4 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/packet 4 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/psample 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/rfkill 400 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/sched 128 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/sctp 48 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/sunrpc/auth_gss 56 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/sunrpc/xprtrdma 232 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/sunrpc 4 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/unix 56 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/vmw_vsock 188 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/wireless 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net/xfrm 4100 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/net 20 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/core/seq/oss 84 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/core/seq 224 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/core 16 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/drivers/mpu401 20 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/drivers/opl3 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/drivers/pcsp 16 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/drivers/vx 92 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/drivers 36 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/firewire 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/hda/ext 40 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/hda 36 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/i2c/other 48 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/i2c 44 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/pci/ac97 16 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/pci/ali5451 48 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/pci/asihpi 64 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/pci/au88x0 20 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/pci/ca0106 40 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/pci/cs46xx 40 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/pci/ctxfi 260 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/pci/echoaudio 80 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/pci/emu10k1 256 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/pci/hda 84 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/pci/ice1712 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/pci/korg1212 16 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/pci/lola 16 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/pci/lx6464es 20 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/pci/mixart 48 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/pci/oxygen 28 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/pci/pcxhr 68 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/pci/rme9652 20 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/pci/trident 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/pci/vx222 1376 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/pci 304 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/soc/codecs 28 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/soc/intel/atom/sst 48 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/soc/intel/atom 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/soc/intel/baytrail 124 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/soc/intel/boards 36 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/soc/intel/common 32 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/soc/intel/haswell 68 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/soc/intel/skylake 320 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/soc/intel 716 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/soc 20 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/synth/emux 24 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/synth 16 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/usb/6fire 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/usb/bcd2000 20 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/usb/caiaq 8 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/usb/hiface 32 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/usb/line6 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/usb/misc 28 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/usb/usx2y 212 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/usb 12 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound/x86 2792 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/sound 4 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/virt/lib 4 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel/virt 38704 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/kernel 0 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/updates 20 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/vdso 0 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64/weak-updates 41968 /usr/lib/modules/3.10.0-957.27.2.el7.x86_64 0 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/extra 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/arch/x86/crypto/sha-mb 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/arch/x86/crypto/sha256-mb 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/arch/x86/crypto/sha512-mb 232 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/arch/x86/crypto 4 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/arch/x86/kernel/cpu/mcheck 4 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/arch/x86/kernel/cpu 4 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/arch/x86/kernel 288 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/arch/x86/kvm 24 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/arch/x86/oprofile 4 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/arch/x86/platform/intel 4 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/arch/x86/platform 552 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/arch/x86 552 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/arch 32 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/crypto/async_tx 428 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/crypto 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/acpi/apei 28 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/acpi/nfit 92 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/acpi 444 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/ata 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/auxdisplay 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/base/regmap 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/base 24 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/bcma 24 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/block/aoe 28 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/block/mtip32xx 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/block/zram 232 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/block 132 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/bluetooth 20 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/cdrom 20 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/char/hw_random 96 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/char/ipmi 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/char/tpm/st33zp24 60 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/char/tpm 232 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/char 56 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/cpufreq 24 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/crypto/ccp 28 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/crypto/chelsio 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/crypto/qat/qat_c3xxx 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/crypto/qat/qat_c3xxxvf 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/crypto/qat/qat_c62x 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/crypto/qat/qat_c62xvf 56 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/crypto/qat/qat_common 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/crypto/qat/qat_dh895xcc 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/crypto/qat/qat_dh895xccvf 104 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/crypto/qat 172 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/crypto 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/dax 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/dca 16 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/dma/dw 32 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/dma/ioat 68 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/dma 144 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/edac 80 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/firewire 32 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/firmware 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpio 944 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu/drm/amd/amdgpu 4 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu/drm/amd/lib 948 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu/drm/amd 28 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu/drm/ast 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu/drm/bochs 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu/drm/cirrus 76 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu/drm/gma500 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu/drm/i2c 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu/drm/i915/gvt 680 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu/drm/i915 20 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu/drm/mgag200 552 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu/drm/nouveau 32 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu/drm/qxl 480 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu/drm/radeon 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu/drm/scheduler 40 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu/drm/ttm 16 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu/drm/udl 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu/drm/vgem 24 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu/drm/virtio 108 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu/drm/vmwgfx 3292 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu/drm 3292 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/gpu 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/hid/i2c-hid 372 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/hid 56 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/hv 56 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/hwmon/pmbus 936 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/hwmon 16 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/i2c/algos 148 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/i2c/busses 180 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/i2c 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/idle 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/iio/accel 4 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/iio/buffer 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/iio/common/hid-sensors 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/iio/common 4 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/iio/gyro 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/iio/light 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/iio/magnetometer 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/iio/orientation 4 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/iio/pressure 56 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/iio 244 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/core 52 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/hw/bnxt_re 52 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/hw/cxgb3 88 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/hw/cxgb4 248 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/hw/hfi1 84 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/hw/i40iw 116 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/hw/ipath 88 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/hw/mlx4 112 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/hw/mlx5 64 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/hw/mthca 76 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/hw/nes 40 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/hw/ocrdma 44 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/hw/qedr 148 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/hw/qib 32 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/hw/usnic 24 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/hw/vmw_pvrdma 1268 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/hw 40 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/sw/rdmavt 44 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/sw/rxe 84 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/sw 52 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/ulp/ipoib 24 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/ulp/iser 24 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/ulp/isert 16 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/ulp/opa_vnic 28 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/ulp/srp 24 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/ulp/srpt 168 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband/ulp 1764 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/infiniband 80 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/input/misc 48 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/input/mouse 28 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/input/rmi4 20 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/input/serio 48 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/input/tablet 20 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/input/touchscreen 268 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/input 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/iommu 48 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/isdn/capi 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/isdn/divert 72 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/isdn/gigaset 48 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/isdn/hardware/avm 160 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/isdn/hardware/mISDN 208 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/isdn/hardware 200 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/isdn/hisax 20 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/isdn/hysdn 72 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/isdn/i4l 88 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/isdn/mISDN 720 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/isdn 32 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/leds/trigger 96 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/leds 28 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/md/persistent-data 500 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/md 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/common/b2c2 40 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/common/saa7146 28 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/common/siano 108 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/common 48 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/dvb-core 808 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/dvb-frontends 16 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/firewire 36 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/i2c/cx25840 168 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/i2c 4 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/mmc/siano 4 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/mmc 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/pci/b2c2 104 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/pci/bt8xx 64 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/pci/cx18 68 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/pci/cx23885 92 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/pci/cx88 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/pci/ddbridge 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/pci/dm1105 80 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/pci/ivtv 32 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/pci/mantis 20 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/pci/ngene 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/pci/pluto2 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/pci/pt1 96 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/pci/saa7134 48 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/pci/saa7164 108 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/pci/ttpci 764 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/pci 412 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/rc/keymaps 608 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/rc 264 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/tuners 24 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/au0828 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/b2c2 76 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/cx231xx 228 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/dvb-usb 164 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/dvb-usb-v2 68 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/em28xx 16 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/gspca/gl860 16 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/gspca/m5602 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/gspca/stv06xx 420 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/gspca 16 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/hdpvr 60 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/pvrusb2 24 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/pwc 20 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/s2255 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/siano 16 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/stk1160 16 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/stkwebcam 24 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/tlg2300 44 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/tm6000 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/ttusb-budget 16 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/ttusb-dec 28 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/usbvision 40 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/uvc 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb/zr364xx 1328 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/usb 124 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media/v4l2-core 4240 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/media 20 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/memstick/core 40 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/memstick/host 60 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/memstick 124 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/message/fusion 124 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/message 64 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/mfd 16 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/misc/altera-stapl 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/misc/cb710 20 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/misc/eeprom 16 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/misc/lis3lv02d 48 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/misc/mei 28 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/misc/sgi-gru 44 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/misc/sgi-xp 32 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/misc/vmw_vmci 304 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/misc 84 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/mmc/core 132 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/mmc/host 216 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/mmc 4 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/mtd/chips 60 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/mtd/ubi 104 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/mtd 64 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/bonding 20 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/can/c_can 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/can/cc770 36 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/can/sja1000 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/can/softing 16 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/can/usb/peak_usb 52 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/can/usb 152 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/can 44 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/amazon/ena 44 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/amazon 68 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/amd/xgbe 100 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/amd 32 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/aquantia/atlantic 32 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/aquantia 20 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/atheros/alx 24 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/atheros/atl1c 20 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/atheros/atl1e 36 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/atheros/atlx 100 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/atheros 272 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/broadcom/bnx2x 96 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/broadcom/bnxt 540 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/broadcom 60 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/brocade/bna 60 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/brocade 20 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/cadence 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/calxeda 152 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/cavium/liquidio 152 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/cavium 68 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/chelsio/cxgb3 152 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/chelsio/cxgb4 36 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/chelsio/cxgb4vf 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/chelsio/libcxgb 264 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/chelsio 40 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/cisco/enic 40 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/cisco 124 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/dec/tulip 124 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/dec 64 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/emulex/benet 64 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/emulex 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/icplus 60 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/intel/e1000 96 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/intel/e1000e 52 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/intel/fm10k 152 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/intel/i40e 48 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/intel/iavf 80 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/intel/ice 92 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/intel/igb 20 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/intel/igbvf 40 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/intel/igc 136 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/intel/ixgbe 32 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/intel/ixgbevf 808 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/intel 56 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/marvell 188 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/mellanox/mlx4 236 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/mellanox/mlx5/core 236 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/mellanox/mlx5 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/mellanox/mlxfw 244 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/mellanox/mlxsw 676 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/mellanox 28 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/myricom/myri10ge 28 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/myricom 100 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/netronome/nfp 100 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/netronome 28 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/oki-semi/pch_gbe 28 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/oki-semi 48 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/qlogic/netxen 224 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/qlogic/qed 56 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/qlogic/qede 120 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/qlogic/qlcnic 40 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/qlogic/qlge 512 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/qlogic 68 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/realtek 28 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/rocker 76 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/sfc/falcon 208 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/sfc 28 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/smsc 16 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet/ti 4164 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ethernet 28 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/fjes 28 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/hyperv 4 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ieee802154 88 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/phy 72 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/ppp 16 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/slip 44 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/team 316 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/usb 28 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/vmxnet3 40 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wan 136 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/ath/ath10k 232 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/ath/ath9k 44 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/ath/carl9170 96 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/ath/wil6210 520 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/ath 116 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/broadcom/brcm80211/brcmfmac 156 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/broadcom/brcm80211/brcmsmac 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/broadcom/brcm80211/brcmutil 280 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/broadcom/brcm80211 280 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/broadcom 168 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/intel/iwlegacy 80 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/intel/iwlwifi/dvm 144 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/intel/iwlwifi/mvm 312 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/intel/iwlwifi 480 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/intel 168 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/marvell/mwifiex 196 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/marvell 140 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/ralink/rt2x00 140 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/ralink 20 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtl818x/rtl8187 20 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtl818x 40 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/btcoexist 40 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8188ee 20 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8192c 24 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8192ce 28 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8192cu 44 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8192de 40 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8192ee 32 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8192se 36 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8723ae 40 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8723be 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8723com 64 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8821ae 480 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtlwifi 76 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/realtek/rtw88 576 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless/realtek 2216 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net/wireless 7464 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/net 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/ntb/hw/amd 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/ntb/hw 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/ntb/test 40 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/ntb 96 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/nvdimm 100 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/nvme/host 68 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/nvme/target 168 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/nvme 40 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/parport 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/pci/hotplug 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/pci/pcie/aer 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/pci/pcie 28 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/pci 20 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/pcmcia 68 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/pinctrl/intel 76 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/pinctrl 380 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/platform/x86 380 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/platform 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/power 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/powercap 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/pps/clients 20 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/pps 24 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/ptp 4 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/pwm 172 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/rtc 56 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/aacraid 60 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/aic7xxx 20 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/arcmsr 56 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/be2iscsi 176 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/bfa 48 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/bnx2fc 28 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/bnx2i 60 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/csiostor 16 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/cxgbi/cxgb3i 20 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/cxgbi/cxgb4i 60 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/cxgbi 44 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/fcoe 52 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/fnic 56 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/isci 48 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/libfc 36 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/libsas 312 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/lpfc 64 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/megaraid 204 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/mpt3sas 28 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/mvsas 20 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/osd 56 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/pm8001 48 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/qedf 44 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/qedi 308 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/qla2xxx 108 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/qla4xxx 36 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/smartpqi 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi/ufs 2564 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/scsi 28 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/ssb 20 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/staging/fwserial 84 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/staging/rtl8192e/rtl8192e 168 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/staging/rtl8192e 76 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/staging/rtl8712 264 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/staging 32 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/target/iscsi/cxgbit 128 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/target/iscsi 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/target/loopback 16 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/target/tcm_fc 320 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/target 4 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/thermal/int340x_thermal 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/thermal 16 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/tty/serial/jsm 20 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/tty/serial 172 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/tty 36 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/uio 64 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/usb/atm 52 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/usb/class 4 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/usb/core 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/usb/host 16 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/usb/image 28 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/usb/misc/sisusbvga 136 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/usb/misc 416 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/usb/serial 136 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/usb/storage 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/usb/usbip 52 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/usb/wusbcore 896 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/usb 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/uwb/i1480/dfu 16 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/uwb/i1480 76 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/uwb 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/vfio/mdev 24 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/vfio/pci 64 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/vfio 48 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/vhost 16 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/video/backlight 44 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/video 48 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/virtio 200 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/watchdog 4 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/xen/xenfs 28 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers/xen 28504 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/drivers 424 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/btrfs 20 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/cachefiles 140 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/ceph 232 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/cifs 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/cramfs 72 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/dlm 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/exofs 216 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/ext4 48 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/fat 28 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/fscache 56 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/fuse 136 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/gfs2 20 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/isofs 44 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/jbd2 36 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/lockd 16 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/nfs/blocklayout 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/nfs/filelayout 20 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/nfs/flexfilelayout 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/nfs/objlayout 336 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/nfs 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/nfs_common 140 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/nfsd 404 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/nls 44 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/overlayfs 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/pstore 24 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/squashfs 48 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/udf 328 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs/xfs 2852 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/fs 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/kernel/trace 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/kernel 68 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/lib/raid6 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/lib/reed_solomon 116 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/lib 4 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/mm 40 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/6lowpan 28 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/802 16 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/8021q 72 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/atm 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/bluetooth/bnep 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/bluetooth/cmtp 16 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/bluetooth/hidp 32 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/bluetooth/rfcomm 272 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/bluetooth 128 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/bridge/netfilter 204 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/bridge 40 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/can 120 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/ceph 48 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/core 76 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/dccp 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/dns_resolver 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/ieee802154/6lowpan 48 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/ieee802154 196 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/ipv4/netfilter 352 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/ipv4 164 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/ipv6/netfilter 272 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/ipv6 20 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/key 64 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/l2tp 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/llc 248 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/mac80211 24 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/mac802154 240 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/netfilter/ipset 116 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/netfilter/ipvs 1040 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/netfilter 4 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/netlink 64 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/openvswitch 4 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/packet 4 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/psample 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/rfkill 408 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/sched 128 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/sctp 48 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/sunrpc/auth_gss 64 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/sunrpc/xprtrdma 240 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/sunrpc 4 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/unix 56 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/vmw_vsock 188 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/wireless 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net/xfrm 4124 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/net 20 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/core/seq/oss 84 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/core/seq 224 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/core 16 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/drivers/mpu401 20 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/drivers/opl3 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/drivers/pcsp 16 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/drivers/vx 92 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/drivers 36 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/firewire 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/hda/ext 40 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/hda 36 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/i2c/other 48 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/i2c 44 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/pci/ac97 16 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/pci/ali5451 48 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/pci/asihpi 64 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/pci/au88x0 20 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/pci/ca0106 40 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/pci/cs46xx 40 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/pci/ctxfi 260 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/pci/echoaudio 80 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/pci/emu10k1 272 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/pci/hda 84 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/pci/ice1712 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/pci/korg1212 16 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/pci/lola 16 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/pci/lx6464es 20 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/pci/mixart 48 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/pci/oxygen 28 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/pci/pcxhr 68 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/pci/rme9652 20 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/pci/trident 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/pci/vx222 1392 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/pci 304 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/soc/codecs 28 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/soc/intel/atom/sst 48 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/soc/intel/atom 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/soc/intel/baytrail 124 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/soc/intel/boards 36 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/soc/intel/common 32 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/soc/intel/haswell 68 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/soc/intel/skylake 320 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/soc/intel 716 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/soc 20 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/synth/emux 24 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/synth 16 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/usb/6fire 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/usb/bcd2000 20 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/usb/caiaq 8 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/usb/hiface 32 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/usb/line6 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/usb/misc 28 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/usb/usx2y 220 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/usb 12 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound/x86 2816 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/sound 4 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/virt/lib 4 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel/virt 39408 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/kernel 0 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/updates 20 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/vdso 0 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/weak-updates 42708 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64 126592 /usr/lib/modules 0 /usr/lib/sse2 80 /usr/lib/tmpfiles.d 20 /usr/lib/python2.7/site-packages/decorator-3.4.0-py2.7.egg-info 12 /usr/lib/python2.7/site-packages/slip/_wrappers 48 /usr/lib/python2.7/site-packages/slip/util 108 /usr/lib/python2.7/site-packages/slip/dbus 172 /usr/lib/python2.7/site-packages/slip 96 /usr/lib/python2.7/site-packages/procfs 112 /usr/lib/python2.7/site-packages/iniparse 472 /usr/lib/python2.7/site-packages/urlgrabber 24 /usr/lib/python2.7/site-packages/firewall/config 308 /usr/lib/python2.7/site-packages/firewall/core/io 1188 /usr/lib/python2.7/site-packages/firewall/core 568 /usr/lib/python2.7/site-packages/firewall/server 2156 /usr/lib/python2.7/site-packages/firewall 268 /usr/lib/python2.7/site-packages/pyudev 16 /usr/lib/python2.7/site-packages/pyudev-0.15-py2.7.egg-info 160 /usr/lib/python2.7/site-packages/rpmUtils 2400 /usr/lib/python2.7/site-packages/yum 72 /usr/lib/python2.7/site-packages/tuned/admin 76 /usr/lib/python2.7/site-packages/tuned/daemon 40 /usr/lib/python2.7/site-packages/tuned/exports 40 /usr/lib/python2.7/site-packages/tuned/hardware 68 /usr/lib/python2.7/site-packages/tuned/monitors 28 /usr/lib/python2.7/site-packages/tuned/plugins/instance 484 /usr/lib/python2.7/site-packages/tuned/plugins 168 /usr/lib/python2.7/site-packages/tuned/profiles/functions 256 /usr/lib/python2.7/site-packages/tuned/profiles 44 /usr/lib/python2.7/site-packages/tuned/storage 24 /usr/lib/python2.7/site-packages/tuned/units 100 /usr/lib/python2.7/site-packages/tuned/utils 1276 /usr/lib/python2.7/site-packages/tuned 16 /usr/lib/python2.7/site-packages/backports/ssl_match_hostname 24 /usr/lib/python2.7/site-packages/backports 20 /usr/lib/python2.7/site-packages/_markerlib 152 /usr/lib/python2.7/site-packages/setuptools/_backport/hashlib 156 /usr/lib/python2.7/site-packages/setuptools/_backport 504 /usr/lib/python2.7/site-packages/setuptools/command 976 /usr/lib/python2.7/site-packages/setuptools 76 /usr/lib/python2.7/site-packages/setuptools-0.9.8-py2.7.egg-info 56 /usr/lib/python2.7/site-packages/pytoml 16 /usr/lib/python2.7/site-packages/pytoml-0.1.14-py2.7.egg-info 28 /usr/lib/python2.7/site-packages/registries 20 /usr/lib/python2.7/site-packages/registries-0.1-py2.7.egg-info 9348 /usr/lib/python2.7/site-packages 9348 /usr/lib/python2.7 8 /usr/lib/modprobe.d 240 /usr/lib/udev/rules.d 11688 /usr/lib/udev/hwdb.d 12276 /usr/lib/udev 16 /usr/lib/kernel/install.d 16 /usr/lib/kernel 0 /usr/lib/binfmt.d 0 /usr/lib/modules-load.d 16 /usr/lib/sysctl.d 136 /usr/lib/polkit-1 0 /usr/lib/NetworkManager/VPN 4 /usr/lib/NetworkManager/conf.d 4 /usr/lib/NetworkManager 136 /usr/lib/firmware/emi26 644 /usr/lib/firmware/qca 3452 /usr/lib/firmware/asihpi 84 /usr/lib/firmware/cs46xx 96 /usr/lib/firmware/keyspan 788 /usr/lib/firmware/ea 400 /usr/lib/firmware/emu 8 /usr/lib/firmware/ess 16 /usr/lib/firmware/korg 1100 /usr/lib/firmware/mixart 4 /usr/lib/firmware/cpia2 76 /usr/lib/firmware/keyspan_pda 1432 /usr/lib/firmware/pcxhr 208 /usr/lib/firmware/emi62 988 /usr/lib/firmware/qcom/venus-1.8 920 /usr/lib/firmware/qcom/venus-4.2 1744 /usr/lib/firmware/qcom/venus-5.2 3764 /usr/lib/firmware/qcom 20 /usr/lib/firmware/sb16 312 /usr/lib/firmware/vx 44 /usr/lib/firmware/yamaha 72 /usr/lib/firmware/3com 32 /usr/lib/firmware/matrox 24872 /usr/lib/firmware/liquidio 52 /usr/lib/firmware/RTL8192E 1484 /usr/lib/firmware/mediatek 5696 /usr/lib/firmware/mellanox 148 /usr/lib/firmware/acenic 8 /usr/lib/firmware/adaptec 28 /usr/lib/firmware/advansys 24 /usr/lib/firmware/ene-ub6250 17568 /usr/lib/firmware/qed 52 /usr/lib/firmware/amd-ucode 25376 /usr/lib/firmware/amdgpu 64 /usr/lib/firmware/ar3k/1020200 40 /usr/lib/firmware/ar3k/1020201 4 /usr/lib/firmware/ar3k/1020201coex 12 /usr/lib/firmware/ar3k/30000 28 /usr/lib/firmware/ar3k/30101 36 /usr/lib/firmware/ar3k/30101coex 568 /usr/lib/firmware/ar3k 404 /usr/lib/firmware/moxa 4 /usr/lib/firmware/r128 8700 /usr/lib/firmware/mrvl 860 /usr/lib/firmware/rsi 4 /usr/lib/firmware/sun 204 /usr/lib/firmware/go7007 120 /usr/lib/firmware/sxg 1044 /usr/lib/firmware/ath10k/QCA4019/hw1.0 1044 /usr/lib/firmware/ath10k/QCA4019 804 /usr/lib/firmware/ath10k/QCA6174/hw2.1 2136 /usr/lib/firmware/ath10k/QCA6174/hw3.0 2940 /usr/lib/firmware/ath10k/QCA6174 1916 /usr/lib/firmware/ath10k/QCA9377/hw1.0 1916 /usr/lib/firmware/ath10k/QCA9377 256 /usr/lib/firmware/ath10k/QCA9887/hw1.0 256 /usr/lib/firmware/ath10k/QCA9887 792 /usr/lib/firmware/ath10k/QCA9888/hw2.0 792 /usr/lib/firmware/ath10k/QCA9888 520 /usr/lib/firmware/ath10k/QCA988X/hw2.0 520 /usr/lib/firmware/ath10k/QCA988X 864 /usr/lib/firmware/ath10k/QCA9984/hw1.0 864 /usr/lib/firmware/ath10k/QCA9984 516 /usr/lib/firmware/ath10k/QCA99X0/hw2.0 516 /usr/lib/firmware/ath10k/QCA99X0 8848 /usr/lib/firmware/ath10k 124 /usr/lib/firmware/ath9k_htc 508 /usr/lib/firmware/atmel 28 /usr/lib/firmware/atusb 12 /usr/lib/firmware/av7110 1436 /usr/lib/firmware/bnx2 9420 /usr/lib/firmware/bnx2x 16 /usr/lib/firmware/yam 32 /usr/lib/firmware/amd 16724 /usr/lib/firmware/brcm 128 /usr/lib/firmware/cadence 36 /usr/lib/firmware/cavium 8 /usr/lib/firmware/imx/sdma 8 /usr/lib/firmware/imx 52 /usr/lib/firmware/cis/src 124 /usr/lib/firmware/cis 1876 /usr/lib/firmware/i915 596 /usr/lib/firmware/mwlwifi 16444 /usr/lib/firmware/intel 32 /usr/lib/firmware/isci 76 /usr/lib/firmware/myricom 16 /usr/lib/firmware/kaweth 180 /usr/lib/firmware/cxgb3 4504 /usr/lib/firmware/cxgb4 24 /usr/lib/firmware/dabusb 12 /usr/lib/firmware/dsp56k 12 /usr/lib/firmware/e100 72 /usr/lib/firmware/edgeport 8 /usr/lib/firmware/microchip 332 /usr/lib/firmware/rtw88 2204 /usr/lib/firmware/ueagle-atm 16 /usr/lib/firmware/ttusb-budget 4 /usr/lib/firmware/ti-keystone 0 /usr/lib/firmware/updates 19000 /usr/lib/firmware/netronome/flower 38112 /usr/lib/firmware/netronome/nic 26792 /usr/lib/firmware/netronome/bpf 59016 /usr/lib/firmware/netronome/nic-sriov 142924 /usr/lib/firmware/netronome 64 /usr/lib/firmware/nvidia/gk20a 20 /usr/lib/firmware/nvidia/gm200/acr 84 /usr/lib/firmware/nvidia/gm200/gr 104 /usr/lib/firmware/nvidia/gm200 0 /usr/lib/firmware/nvidia/gm204/acr 16 /usr/lib/firmware/nvidia/gm204/gr 16 /usr/lib/firmware/nvidia/gm204 16 /usr/lib/firmware/nvidia/gm206/acr 16 /usr/lib/firmware/nvidia/gm206/gr 32 /usr/lib/firmware/nvidia/gm206 24 /usr/lib/firmware/nvidia/gm20b/acr 68 /usr/lib/firmware/nvidia/gm20b/gr 56 /usr/lib/firmware/nvidia/gm20b/pmu 148 /usr/lib/firmware/nvidia/gm20b 20 /usr/lib/firmware/nvidia/gp100/acr 88 /usr/lib/firmware/nvidia/gp100/gr 108 /usr/lib/firmware/nvidia/gp100 32 /usr/lib/firmware/nvidia/gp102/acr 88 /usr/lib/firmware/nvidia/gp102/gr 4 /usr/lib/firmware/nvidia/gp102/nvdec 108 /usr/lib/firmware/nvidia/gp102/sec2 232 /usr/lib/firmware/nvidia/gp102 0 /usr/lib/firmware/nvidia/gp104/acr 56 /usr/lib/firmware/nvidia/gp104/gr 0 /usr/lib/firmware/nvidia/gp104/nvdec 0 /usr/lib/firmware/nvidia/gp104/sec2 56 /usr/lib/firmware/nvidia/gp104 0 /usr/lib/firmware/nvidia/gp106/acr 16 /usr/lib/firmware/nvidia/gp106/gr 0 /usr/lib/firmware/nvidia/gp106/nvdec 0 /usr/lib/firmware/nvidia/gp106/sec2 16 /usr/lib/firmware/nvidia/gp106 0 /usr/lib/firmware/nvidia/gp107/acr 76 /usr/lib/firmware/nvidia/gp107/gr 0 /usr/lib/firmware/nvidia/gp107/nvdec 0 /usr/lib/firmware/nvidia/gp107/sec2 76 /usr/lib/firmware/nvidia/gp107 0 /usr/lib/firmware/nvidia/gp108/acr 96 /usr/lib/firmware/nvidia/gp108/gr 0 /usr/lib/firmware/nvidia/gp108/nvdec 116 /usr/lib/firmware/nvidia/gp108/sec2 212 /usr/lib/firmware/nvidia/gp108 24 /usr/lib/firmware/nvidia/gp10b/acr 96 /usr/lib/firmware/nvidia/gp10b/gr 60 /usr/lib/firmware/nvidia/gp10b/pmu 180 /usr/lib/firmware/nvidia/gp10b 148 /usr/lib/firmware/nvidia/tegra124 20 /usr/lib/firmware/nvidia/tegra186 152 /usr/lib/firmware/nvidia/tegra210 36 /usr/lib/firmware/nvidia/gv100/acr 112 /usr/lib/firmware/nvidia/gv100/gr 8 /usr/lib/firmware/nvidia/gv100/nvdec 100 /usr/lib/firmware/nvidia/gv100/sec2 256 /usr/lib/firmware/nvidia/gv100 332 /usr/lib/firmware/nvidia/tu10x/typec 332 /usr/lib/firmware/nvidia/tu10x 2152 /usr/lib/firmware/nvidia 4 /usr/lib/firmware/ositech 4 /usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode 8 /usr/lib/firmware/3.10.0-957.el7.x86_64 124 /usr/lib/firmware/qlogic 0 /usr/lib/firmware/usbdux 7572 /usr/lib/firmware/radeon 100 /usr/lib/firmware/rockchip 560 /usr/lib/firmware/rtl_bt 96 /usr/lib/firmware/rtl_nic 1080 /usr/lib/firmware/rtlwifi 276 /usr/lib/firmware/slicoss 20 /usr/lib/firmware/tigon 2868 /usr/lib/firmware/dpaa2/mc 2868 /usr/lib/firmware/dpaa2 44 /usr/lib/firmware/tehuti 4 /usr/lib/firmware/vicam 4 /usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode 8 /usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64 4 /usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode 8 /usr/lib/firmware/3.10.0-957.27.2.el7.x86_64 442048 /usr/lib/firmware 40 /usr/lib/yum-plugins 4 /usr/lib/tuned/balanced 4 /usr/lib/tuned/desktop 4 /usr/lib/tuned/latency-performance 4 /usr/lib/tuned/network-latency 4 /usr/lib/tuned/network-throughput 8 /usr/lib/tuned/powersave 4 /usr/lib/tuned/recommend.d 4 /usr/lib/tuned/throughput-performance 4 /usr/lib/tuned/virtual-guest 4 /usr/lib/tuned/virtual-host 4 /usr/lib/tuned/hpc-compute 64 /usr/lib/tuned 24 /usr/lib/kdump 8 /usr/lib/python3.6/site-packages/__pycache__ 200 /usr/lib/python3.6/site-packages/pkg_resources/__pycache__ 496 /usr/lib/python3.6/site-packages/pkg_resources/_vendor/__pycache__ 140 /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/__pycache__ 220 /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging 1000 /usr/lib/python3.6/site-packages/pkg_resources/_vendor 8 /usr/lib/python3.6/site-packages/pkg_resources/extern/__pycache__ 12 /usr/lib/python3.6/site-packages/pkg_resources/extern 1320 /usr/lib/python3.6/site-packages/pkg_resources 528 /usr/lib/python3.6/site-packages/setuptools/__pycache__ 456 /usr/lib/python3.6/site-packages/setuptools/_vendor/__pycache__ 140 /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/__pycache__ 220 /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging 936 /usr/lib/python3.6/site-packages/setuptools/_vendor 468 /usr/lib/python3.6/site-packages/setuptools/command/__pycache__ 756 /usr/lib/python3.6/site-packages/setuptools/command 8 /usr/lib/python3.6/site-packages/setuptools/extern/__pycache__ 12 /usr/lib/python3.6/site-packages/setuptools/extern 2540 /usr/lib/python3.6/site-packages/setuptools 48 /usr/lib/python3.6/site-packages/setuptools-39.2.0.dist-info 316 /usr/lib/python3.6/site-packages/pip/__pycache__ 724 /usr/lib/python3.6/site-packages/pip/_vendor/__pycache__ 108 /usr/lib/python3.6/site-packages/pip/_vendor/cachecontrol/__pycache__ 24 /usr/lib/python3.6/site-packages/pip/_vendor/cachecontrol/caches/__pycache__ 36 /usr/lib/python3.6/site-packages/pip/_vendor/cachecontrol/caches 208 /usr/lib/python3.6/site-packages/pip/_vendor/cachecontrol 24 /usr/lib/python3.6/site-packages/pip/_vendor/certifi/__pycache__ 36 /usr/lib/python3.6/site-packages/pip/_vendor/certifi 1164 /usr/lib/python3.6/site-packages/pip/_vendor/chardet/__pycache__ 16 /usr/lib/python3.6/site-packages/pip/_vendor/chardet/cli/__pycache__ 24 /usr/lib/python3.6/site-packages/pip/_vendor/chardet/cli 1628 /usr/lib/python3.6/site-packages/pip/_vendor/chardet 68 /usr/lib/python3.6/site-packages/pip/_vendor/colorama/__pycache__ 108 /usr/lib/python3.6/site-packages/pip/_vendor/colorama 620 /usr/lib/python3.6/site-packages/pip/_vendor/distlib/__pycache__ 228 /usr/lib/python3.6/site-packages/pip/_vendor/distlib/_backport/__pycache__ 388 /usr/lib/python3.6/site-packages/pip/_vendor/distlib/_backport 1752 /usr/lib/python3.6/site-packages/pip/_vendor/distlib 540 /usr/lib/python3.6/site-packages/pip/_vendor/html5lib/__pycache__ 32 /usr/lib/python3.6/site-packages/pip/_vendor/html5lib/_trie/__pycache__ 48 /usr/lib/python3.6/site-packages/pip/_vendor/html5lib/_trie 100 /usr/lib/python3.6/site-packages/pip/_vendor/html5lib/filters/__pycache__ 160 /usr/lib/python3.6/site-packages/pip/_vendor/html5lib/filters 24 /usr/lib/python3.6/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__ 36 /usr/lib/python3.6/site-packages/pip/_vendor/html5lib/treeadapters 108 /usr/lib/python3.6/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__ 172 /usr/lib/python3.6/site-packages/pip/_vendor/html5lib/treebuilders 68 /usr/lib/python3.6/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__ 108 /usr/lib/python3.6/site-packages/pip/_vendor/html5lib/treewalkers 1416 /usr/lib/python3.6/site-packages/pip/_vendor/html5lib 564 /usr/lib/python3.6/site-packages/pip/_vendor/idna/__pycache__ 816 /usr/lib/python3.6/site-packages/pip/_vendor/idna 76 /usr/lib/python3.6/site-packages/pip/_vendor/lockfile/__pycache__ 116 /usr/lib/python3.6/site-packages/pip/_vendor/lockfile 140 /usr/lib/python3.6/site-packages/pip/_vendor/packaging/__pycache__ 220 /usr/lib/python3.6/site-packages/pip/_vendor/packaging 192 /usr/lib/python3.6/site-packages/pip/_vendor/pkg_resources/__pycache__ 296 /usr/lib/python3.6/site-packages/pip/_vendor/pkg_resources 44 /usr/lib/python3.6/site-packages/pip/_vendor/progress/__pycache__ 64 /usr/lib/python3.6/site-packages/pip/_vendor/progress 356 /usr/lib/python3.6/site-packages/pip/_vendor/requests/__pycache__ 828 /usr/lib/python3.6/site-packages/pip/_vendor/requests 236 /usr/lib/python3.6/site-packages/pip/_vendor/urllib3/__pycache__ 132 /usr/lib/python3.6/site-packages/pip/_vendor/urllib3/contrib/__pycache__ 48 /usr/lib/python3.6/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__ 80 /usr/lib/python3.6/site-packages/pip/_vendor/urllib3/contrib/_securetransport 288 /usr/lib/python3.6/site-packages/pip/_vendor/urllib3/contrib 80 /usr/lib/python3.6/site-packages/pip/_vendor/urllib3/packages/__pycache__ 16 /usr/lib/python3.6/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__ 20 /usr/lib/python3.6/site-packages/pip/_vendor/urllib3/packages/backports 16 /usr/lib/python3.6/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__ 28 /usr/lib/python3.6/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname 176 /usr/lib/python3.6/site-packages/pip/_vendor/urllib3/packages 164 /usr/lib/python3.6/site-packages/pip/_vendor/urllib3/util/__pycache__ 260 /usr/lib/python3.6/site-packages/pip/_vendor/urllib3/util 1096 /usr/lib/python3.6/site-packages/pip/_vendor/urllib3 64 /usr/lib/python3.6/site-packages/pip/_vendor/webencodings/__pycache__ 108 /usr/lib/python3.6/site-packages/pip/_vendor/webencodings 9840 /usr/lib/python3.6/site-packages/pip/_vendor 172 /usr/lib/python3.6/site-packages/pip/commands/__pycache__ 264 /usr/lib/python3.6/site-packages/pip/commands 40 /usr/lib/python3.6/site-packages/pip/compat/__pycache__ 72 /usr/lib/python3.6/site-packages/pip/compat 16 /usr/lib/python3.6/site-packages/pip/models/__pycache__ 24 /usr/lib/python3.6/site-packages/pip/models 24 /usr/lib/python3.6/site-packages/pip/operations/__pycache__ 36 /usr/lib/python3.6/site-packages/pip/operations 164 /usr/lib/python3.6/site-packages/pip/req/__pycache__ 272 /usr/lib/python3.6/site-packages/pip/req 180 /usr/lib/python3.6/site-packages/pip/utils/__pycache__ 276 /usr/lib/python3.6/site-packages/pip/utils 84 /usr/lib/python3.6/site-packages/pip/vcs/__pycache__ 132 /usr/lib/python3.6/site-packages/pip/vcs 11432 /usr/lib/python3.6/site-packages/pip 64 /usr/lib/python3.6/site-packages/pip-9.0.3.dist-info 15416 /usr/lib/python3.6/site-packages 15416 /usr/lib/python3.6 0 /usr/lib/gems/ruby 0 /usr/lib/gems 729240 /usr/lib 20 /usr/lib64/fipscheck 0 /usr/lib64/lua/5.1 0 /usr/lib64/lua 0 /usr/lib64/X11 0 /usr/lib64/games 0 /usr/lib64/pm-utils/module.d 0 /usr/lib64/pm-utils/power.d 4 /usr/lib64/pm-utils/sleep.d 4 /usr/lib64/pm-utils 0 /usr/lib64/sse2 0 /usr/lib64/tls 7444 /usr/lib64/gconv 248 /usr/lib64/pkcs11 12 /usr/lib64/security/pam_filter 1080 /usr/lib64/security 0 /usr/lib64/gio/modules 0 /usr/lib64/gio 0 /usr/lib64/nss/saved 1908 /usr/lib64/nss/unsupported-tools 2452 /usr/lib64/nss 112 /usr/lib64/tc 224 /usr/lib64/openssl/engines 224 /usr/lib64/openssl 92 /usr/lib64/sa 56 /usr/lib64/ruby/digest 780 /usr/lib64/ruby/dl 2624 /usr/lib64/ruby/enc/trans 3040 /usr/lib64/ruby/enc 24 /usr/lib64/ruby/io 16 /usr/lib64/ruby/mathn 20 /usr/lib64/ruby/racc 0 /usr/lib64/ruby/vendor_ruby 5696 /usr/lib64/ruby 72 /usr/lib64/gems/ruby/bigdecimal-1.2.0/lib 72 /usr/lib64/gems/ruby/bigdecimal-1.2.0 64 /usr/lib64/gems/ruby/json-1.7.7/lib/json/ext 64 /usr/lib64/gems/ruby/json-1.7.7/lib/json 64 /usr/lib64/gems/ruby/json-1.7.7/lib 64 /usr/lib64/gems/ruby/json-1.7.7 16 /usr/lib64/gems/ruby/io-console-0.4.2/lib/io 16 /usr/lib64/gems/ruby/io-console-0.4.2/lib 16 /usr/lib64/gems/ruby/io-console-0.4.2 28 /usr/lib64/gems/ruby/psych-2.0.0/lib 28 /usr/lib64/gems/ruby/psych-2.0.0 180 /usr/lib64/gems/ruby 180 /usr/lib64/gems 56 /usr/lib64/rtkaio 16 /usr/lib64/audit 0 /usr/lib64/krb5/plugins/authdata 0 /usr/lib64/krb5/plugins/kdb 0 /usr/lib64/krb5/plugins/libkrb5 0 /usr/lib64/krb5/plugins/preauth 20 /usr/lib64/krb5/plugins/tls 20 /usr/lib64/krb5/plugins 20 /usr/lib64/krb5 20 /usr/lib64/libnl/cli/cls 80 /usr/lib64/libnl/cli/qdisc 100 /usr/lib64/libnl/cli 100 /usr/lib64/libnl 992 /usr/lib64/girepository-1.0 4 /usr/lib64/pkgconfig 48 /usr/lib64/sasl2 20 /usr/lib64/mysql/plugin 3084 /usr/lib64/mysql 148 /usr/lib64/libuser 112 /usr/lib64/python2.7/json 164 /usr/lib64/python2.7/test 436 /usr/lib64/python2.7/xml/dom 180 /usr/lib64/python2.7/xml/etree 16 /usr/lib64/python2.7/xml/parsers 156 /usr/lib64/python2.7/xml/sax 796 /usr/lib64/python2.7/xml 2296 /usr/lib64/python2.7/encodings 72 /usr/lib64/python2.7/curses 648 /usr/lib64/python2.7/distutils/command 1548 /usr/lib64/python2.7/distutils 208 /usr/lib64/python2.7/bsddb 44 /usr/lib64/python2.7/hotshot 72 /usr/lib64/python2.7/email/mime 456 /usr/lib64/python2.7/email 612 /usr/lib64/python2.7/compiler 68 /usr/lib64/python2.7/config 64 /usr/lib64/python2.7/ctypes/macholib 160 /usr/lib64/python2.7/ctypes 84 /usr/lib64/python2.7/idlelib/Icons 1840 /usr/lib64/python2.7/idlelib 8 /usr/lib64/python2.7/importlib 3908 /usr/lib64/python2.7/lib-dynload 528 /usr/lib64/python2.7/lib2to3/fixes 224 /usr/lib64/python2.7/lib2to3/pgen2 1132 /usr/lib64/python2.7/lib2to3 360 /usr/lib64/python2.7/logging 32 /usr/lib64/python2.7/multiprocessing/dummy 564 /usr/lib64/python2.7/multiprocessing 24 /usr/lib64/python2.7/sqlite3 80 /usr/lib64/python2.7/plat-linux2 600 /usr/lib64/python2.7/site-packages/selinux 16 /usr/lib64/python2.7/site-packages/pyliblzma-0.5.3-py2.7.egg-info 16 /usr/lib64/python2.7/site-packages/pyxattr-0.5.1-py2.7.egg-info 8 /usr/lib64/python2.7/site-packages/gi/_gobject 404 /usr/lib64/python2.7/site-packages/gi/overrides 8 /usr/lib64/python2.7/site-packages/gi/repository 972 /usr/lib64/python2.7/site-packages/gi 88 /usr/lib64/python2.7/site-packages/pygtkcompat 16 /usr/lib64/python2.7/site-packages/curl 16 /usr/lib64/python2.7/site-packages/dbus/mainloop 372 /usr/lib64/python2.7/site-packages/dbus 160 /usr/lib64/python2.7/site-packages/rpm 116 /usr/lib64/python2.7/site-packages/gpgme 508 /usr/lib64/python2.7/site-packages/yaml 8 /usr/lib64/python2.7/site-packages/backports 16 /usr/lib64/python2.7/site-packages/policycoreutils 232 /usr/lib64/python2.7/site-packages/seobject 620 /usr/lib64/python2.7/site-packages/sepolgen 212 /usr/lib64/python2.7/site-packages/sepolicy/templates 472 /usr/lib64/python2.7/site-packages/sepolicy 6072 /usr/lib64/python2.7/site-packages 804 /usr/lib64/python2.7/pydoc_data 528 /usr/lib64/python2.7/unittest/test 776 /usr/lib64/python2.7/unittest 144 /usr/lib64/python2.7/wsgiref 31672 /usr/lib64/python2.7 1336 /usr/lib64/xtables 76 /usr/lib64/gettext 464 /usr/lib64/NetworkManager/1.18.0-5.el7_7.1 464 /usr/lib64/NetworkManager 60 /usr/lib64/plymouth/renderers 96 /usr/lib64/plymouth 72 /usr/lib64/device-mapper 252 /usr/lib64/ebtables 416 /usr/lib64/elfutils 364 /usr/lib64/perl5/vendor_perl/auto/Encode/Byte 2044 /usr/lib64/perl5/vendor_perl/auto/Encode/CN 44 /usr/lib64/perl5/vendor_perl/auto/Encode/EBCDIC 2684 /usr/lib64/perl5/vendor_perl/auto/Encode/JP 2356 /usr/lib64/perl5/vendor_perl/auto/Encode/KR 56 /usr/lib64/perl5/vendor_perl/auto/Encode/Symbol 1976 /usr/lib64/perl5/vendor_perl/auto/Encode/TW 20 /usr/lib64/perl5/vendor_perl/auto/Encode/Unicode 9580 /usr/lib64/perl5/vendor_perl/auto/Encode 24 /usr/lib64/perl5/vendor_perl/auto/Time/HiRes 24 /usr/lib64/perl5/vendor_perl/auto/Time 44 /usr/lib64/perl5/vendor_perl/auto/Socket 88 /usr/lib64/perl5/vendor_perl/auto/Storable 12 /usr/lib64/perl5/vendor_perl/auto/Cwd 28 /usr/lib64/perl5/vendor_perl/auto/List/Util 28 /usr/lib64/perl5/vendor_perl/auto/List 44 /usr/lib64/perl5/vendor_perl/auto/threads/shared 88 /usr/lib64/perl5/vendor_perl/auto/threads 16 /usr/lib64/perl5/vendor_perl/auto/Filter/Util/Call 16 /usr/lib64/perl5/vendor_perl/auto/Filter/Util/Exec 32 /usr/lib64/perl5/vendor_perl/auto/Filter/Util 12 /usr/lib64/perl5/vendor_perl/auto/Filter/decrypt 12 /usr/lib64/perl5/vendor_perl/auto/Filter/tee 56 /usr/lib64/perl5/vendor_perl/auto/Filter 36 /usr/lib64/perl5/vendor_perl/auto/Term/ReadKey 36 /usr/lib64/perl5/vendor_perl/auto/Term 9956 /usr/lib64/perl5/vendor_perl/auto 8 /usr/lib64/perl5/vendor_perl/Encode/CN 16 /usr/lib64/perl5/vendor_perl/Encode/JP 4 /usr/lib64/perl5/vendor_perl/Encode/KR 4 /usr/lib64/perl5/vendor_perl/Encode/MIME/Header 16 /usr/lib64/perl5/vendor_perl/Encode/MIME 4 /usr/lib64/perl5/vendor_perl/Encode/Unicode 200 /usr/lib64/perl5/vendor_perl/Encode 24 /usr/lib64/perl5/vendor_perl/Time 72 /usr/lib64/perl5/vendor_perl/File/Spec 84 /usr/lib64/perl5/vendor_perl/File 4 /usr/lib64/perl5/vendor_perl/List/Util 12 /usr/lib64/perl5/vendor_perl/List 12 /usr/lib64/perl5/vendor_perl/Scalar 20 /usr/lib64/perl5/vendor_perl/threads 48 /usr/lib64/perl5/vendor_perl/Filter/Util 68 /usr/lib64/perl5/vendor_perl/Filter 16 /usr/lib64/perl5/vendor_perl/Term 10592 /usr/lib64/perl5/vendor_perl 1612 /usr/lib64/perl5/CORE 4 /usr/lib64/perl5/auto/DB_File 72 /usr/lib64/perl5/auto/B 124 /usr/lib64/perl5/auto/Devel/PPPort 16 /usr/lib64/perl5/auto/Devel/Peek 140 /usr/lib64/perl5/auto/Devel 0 /usr/lib64/perl5/auto/Digest 20 /usr/lib64/perl5/auto/Fcntl 28 /usr/lib64/perl5/auto/File/Glob 28 /usr/lib64/perl5/auto/File 0 /usr/lib64/perl5/auto/Filter 24 /usr/lib64/perl5/auto/GDBM_File 20 /usr/lib64/perl5/auto/Hash/Util/FieldHash 32 /usr/lib64/perl5/auto/Hash/Util 32 /usr/lib64/perl5/auto/Hash 16 /usr/lib64/perl5/auto/I18N/Langinfo 16 /usr/lib64/perl5/auto/I18N 20 /usr/lib64/perl5/auto/IO 28 /usr/lib64/perl5/auto/IPC/SysV 28 /usr/lib64/perl5/auto/IPC 16 /usr/lib64/perl5/auto/MIME/Base64 16 /usr/lib64/perl5/auto/MIME 16 /usr/lib64/perl5/auto/Math/BigInt/FastCalc 16 /usr/lib64/perl5/auto/Math/BigInt 16 /usr/lib64/perl5/auto/Math 20 /usr/lib64/perl5/auto/NDBM_File 20 /usr/lib64/perl5/auto/ODBM_File 24 /usr/lib64/perl5/auto/Opcode 88 /usr/lib64/perl5/auto/POSIX 28 /usr/lib64/perl5/auto/PerlIO/encoding 16 /usr/lib64/perl5/auto/PerlIO/mmap 16 /usr/lib64/perl5/auto/PerlIO/scalar 24 /usr/lib64/perl5/auto/PerlIO/via 84 /usr/lib64/perl5/auto/PerlIO 28 /usr/lib64/perl5/auto/SDBM_File 8 /usr/lib64/perl5/auto/Sys/Hostname 8 /usr/lib64/perl5/auto/Sys 0 /usr/lib64/perl5/auto/Text 12 /usr/lib64/perl5/auto/Tie/Hash/NamedCapture 12 /usr/lib64/perl5/auto/Tie/Hash 12 /usr/lib64/perl5/auto/Tie 0 /usr/lib64/perl5/auto/Time 1228 /usr/lib64/perl5/auto/Unicode/Collate 544 /usr/lib64/perl5/auto/Unicode/Normalize 1772 /usr/lib64/perl5/auto/Unicode 20 /usr/lib64/perl5/auto/arybase 12 /usr/lib64/perl5/auto/attributes 20 /usr/lib64/perl5/auto/mro 324 /usr/lib64/perl5/auto/re 4 /usr/lib64/perl5/auto/sdbm 2856 /usr/lib64/perl5/auto 84 /usr/lib64/perl5/B 224 /usr/lib64/perl5/Devel 0 /usr/lib64/perl5/Digest 16 /usr/lib64/perl5/File 0 /usr/lib64/perl5/Filter 32 /usr/lib64/perl5/Hash/Util 48 /usr/lib64/perl5/Hash 4 /usr/lib64/perl5/I18N 20 /usr/lib64/perl5/IO/Socket 104 /usr/lib64/perl5/IO 32 /usr/lib64/perl5/IPC 12 /usr/lib64/perl5/MIME 4 /usr/lib64/perl5/Math/BigInt 4 /usr/lib64/perl5/Math 20 /usr/lib64/perl5/PerlIO 4 /usr/lib64/perl5/Sys 0 /usr/lib64/perl5/Text 4 /usr/lib64/perl5/Tie/Hash 4 /usr/lib64/perl5/Tie 0 /usr/lib64/perl5/Time 16 /usr/lib64/perl5/Unicode/Collate 92 /usr/lib64/perl5/Unicode 136 /usr/lib64/perl5/asm 48 /usr/lib64/perl5/asm-generic 208 /usr/lib64/perl5/bits 8 /usr/lib64/perl5/gnu 12 /usr/lib64/perl5/linux 0 /usr/lib64/perl5/machine 68 /usr/lib64/perl5/sys 16820 /usr/lib64/perl5 2916 /usr/lib64/bind9-export 712 /usr/lib64/rsyslog 156 /usr/lib64/man-db 296 /usr/lib64/setools/apol_tcl 296 /usr/lib64/setools 0 /usr/lib64/dbus-1 1812 /usr/lib64/python3.6/encodings/__pycache__ 3560 /usr/lib64/python3.6/encodings 12 /usr/lib64/python3.6/test/__pycache__ 268 /usr/lib64/python3.6/test/support/__pycache__ 388 /usr/lib64/python3.6/test/support 404 /usr/lib64/python3.6/test 52 /usr/lib64/python3.6/ensurepip/__pycache__ 20 /usr/lib64/python3.6/ensurepip/rewheel/__pycache__ 28 /usr/lib64/python3.6/ensurepip/rewheel 96 /usr/lib64/python3.6/ensurepip 56 /usr/lib64/python3.6/venv/__pycache__ 4 /usr/lib64/python3.6/venv/scripts/common 8 /usr/lib64/python3.6/venv/scripts/posix 12 /usr/lib64/python3.6/venv/scripts 92 /usr/lib64/python3.6/venv 9376 /usr/lib64/python3.6/__pycache__ 12 /usr/lib64/python3.6/xml/__pycache__ 396 /usr/lib64/python3.6/xml/dom/__pycache__ 544 /usr/lib64/python3.6/xml/dom 180 /usr/lib64/python3.6/xml/etree/__pycache__ 264 /usr/lib64/python3.6/xml/etree 24 /usr/lib64/python3.6/xml/parsers/__pycache__ 32 /usr/lib64/python3.6/xml/parsers 216 /usr/lib64/python3.6/xml/sax/__pycache__ 288 /usr/lib64/python3.6/xml/sax 1144 /usr/lib64/python3.6/xml 408 /usr/lib64/python3.6/http/__pycache__ 616 /usr/lib64/python3.6/http 856 /usr/lib64/python3.6/email/__pycache__ 112 /usr/lib64/python3.6/email/mime/__pycache__ 144 /usr/lib64/python3.6/email/mime 1400 /usr/lib64/python3.6/email 292 /usr/lib64/python3.6/importlib/__pycache__ 424 /usr/lib64/python3.6/importlib 1084 /usr/lib64/python3.6/asyncio/__pycache__ 1524 /usr/lib64/python3.6/asyncio 648 /usr/lib64/python3.6/multiprocessing/__pycache__ 24 /usr/lib64/python3.6/multiprocessing/dummy/__pycache__ 32 /usr/lib64/python3.6/multiprocessing/dummy 936 /usr/lib64/python3.6/multiprocessing 144 /usr/lib64/python3.6/collections/__pycache__ 196 /usr/lib64/python3.6/collections 12 /usr/lib64/python3.6/concurrent/__pycache__ 136 /usr/lib64/python3.6/concurrent/futures/__pycache__ 196 /usr/lib64/python3.6/concurrent/futures 212 /usr/lib64/python3.6/concurrent 72 /usr/lib64/python3.6/config-3.6m-x86_64-linux-gnu 332 /usr/lib64/python3.6/lib2to3/__pycache__ 700 /usr/lib64/python3.6/lib2to3/fixes/__pycache__ 944 /usr/lib64/python3.6/lib2to3/fixes 200 /usr/lib64/python3.6/lib2to3/pgen2/__pycache__ 288 /usr/lib64/python3.6/lib2to3/pgen2 1748 /usr/lib64/python3.6/lib2to3 112 /usr/lib64/python3.6/ctypes/__pycache__ 60 /usr/lib64/python3.6/ctypes/macholib/__pycache__ 88 /usr/lib64/python3.6/ctypes/macholib 244 /usr/lib64/python3.6/ctypes 88 /usr/lib64/python3.6/curses/__pycache__ 116 /usr/lib64/python3.6/curses 80 /usr/lib64/python3.6/dbm/__pycache__ 108 /usr/lib64/python3.6/dbm 896 /usr/lib64/python3.6/distutils/__pycache__ 620 /usr/lib64/python3.6/distutils/command/__pycache__ 924 /usr/lib64/python3.6/distutils/command 2288 /usr/lib64/python3.6/distutils 128 /usr/lib64/python3.6/json/__pycache__ 184 /usr/lib64/python3.6/json 1188 /usr/lib64/python3.6/pydoc_data/__pycache__ 1824 /usr/lib64/python3.6/pydoc_data 4412 /usr/lib64/python3.6/lib-dynload 336 /usr/lib64/python3.6/logging/__pycache__ 504 /usr/lib64/python3.6/logging 208 /usr/lib64/python3.6/html/__pycache__ 312 /usr/lib64/python3.6/html 0 /usr/lib64/python3.6/site-packages/__pycache__ 4 /usr/lib64/python3.6/site-packages 40 /usr/lib64/python3.6/sqlite3/__pycache__ 52 /usr/lib64/python3.6/sqlite3 516 /usr/lib64/python3.6/unittest/__pycache__ 740 /usr/lib64/python3.6/unittest 356 /usr/lib64/python3.6/urllib/__pycache__ 516 /usr/lib64/python3.6/urllib 172 /usr/lib64/python3.6/wsgiref/__pycache__ 240 /usr/lib64/python3.6/wsgiref 204 /usr/lib64/python3.6/xmlrpc/__pycache__ 296 /usr/lib64/python3.6/xmlrpc 37988 /usr/lib64/python3.6 186568 /usr/lib64 96 /usr/share/doc/libgcc-4.8.5 696 /usr/share/doc/grub2-common-2.02 52 /usr/share/doc/ruby-2.0.0.648 80 /usr/share/doc/perl-5.16.3 12 /usr/share/doc/ncurses-base-5.9 36 /usr/share/doc/bash-4.2.46 176 /usr/share/doc/ncurses-5.9 276 /usr/share/doc/glibc-common-2.17 12 /usr/share/doc/setup-2.8.71 220 /usr/share/doc/glibc-2.17 100 /usr/share/doc/zlib-1.2.7 44 /usr/share/doc/libcom_err-1.42.9 8 /usr/share/doc/popt-1.13 36 /usr/share/doc/info-5.1 68 /usr/share/doc/gawk-4.0.2 20 /usr/share/doc/libffi-3.0.13 24 /usr/share/doc/libcap-2.22 316 /usr/share/doc/pcre-8.32 156 /usr/share/doc/sed-4.2.2 460 /usr/share/doc/grep-2.20 28 /usr/share/doc/p11-kit-0.23.5 28 /usr/share/doc/keyutils-libs-1.5.8 44 /usr/share/doc/gmp-6.0.0 20 /usr/share/doc/libverto-0.2.5 360 /usr/share/doc/libtasn1-4.10 4 /usr/share/doc/ca-certificates-2018.2.22 24 /usr/share/doc/centos-release 56 /usr/share/doc/pkgconfig-0.27.1 164 /usr/share/doc/coreutils-8.22/fileutils 76 /usr/share/doc/coreutils-8.22/sh-utils 96 /usr/share/doc/coreutils-8.22/textutils 940 /usr/share/doc/coreutils-8.22 12 /usr/share/doc/krb5-libs-1.15.1/examples 88 /usr/share/doc/krb5-libs-1.15.1 88 /usr/share/doc/xz-libs-5.2.2 4 /usr/share/doc/libuuid-2.23.2 4 /usr/share/doc/libblkid-2.23.2 4 /usr/share/doc/bzip2-libs-1.0.6 12 /usr/share/doc/libdb-5.3.21 104 /usr/share/doc/readline-6.2 120 /usr/share/doc/libxml2-2.9.1 76 /usr/share/doc/libgpg-error-1.12 28 /usr/share/doc/libcap-ng-0.7.5 68 /usr/share/doc/libgcrypt-1.5.3 96 /usr/share/doc/gzip-1.5 136 /usr/share/doc/cpio-2.11 12 /usr/share/doc/expat-2.1.0 328 /usr/share/doc/lua-5.1.4 524 /usr/share/doc/findutils-4.5.11 60 /usr/share/doc/which-2.20 56 /usr/share/doc/diffutils-3.3 28 /usr/share/doc/libnl3-3.2.28 72 /usr/share/doc/cracklib-2.9.0 4 /usr/share/doc/sqlite-3.7.17 4 /usr/share/doc/libmount-2.23.2 392 /usr/share/doc/glib2-2.56.1 88 /usr/share/doc/shared-mime-info-1.8 48 /usr/share/doc/file-libs-5.11 48 /usr/share/doc/file-5.11 32 /usr/share/doc/libmnl-1.0.3 32 /usr/share/doc/libaio-0.3.109 16 /usr/share/doc/libcroco-0.6.12 580 /usr/share/doc/pam-1.1.8/html 232 /usr/share/doc/pam-1.1.8/txts 1060 /usr/share/doc/pam-1.1.8 32 /usr/share/doc/libpwquality-1.2.3 28 /usr/share/doc/libnl3-cli-3.2.28 104 /usr/share/doc/libassuan-2.1.0 236 /usr/share/doc/cyrus-sasl-lib-2.1.26 672 /usr/share/doc/xz-5.2.2 200 /usr/share/doc/groff-base-1.22.2 32 /usr/share/doc/libgomp-4.8.5 12 /usr/share/doc/libunistring-0.9.3 208 /usr/share/doc/libidn-1.28 16 /usr/share/doc/libedit-3.0 44 /usr/share/doc/e2fsprogs-libs-1.42.9 24 /usr/share/doc/jansson-2.10 36 /usr/share/doc/sysvinit-tools-2.88 24 /usr/share/doc/libnfnetlink-1.0.1 100 /usr/share/doc/tcp_wrappers-libs-7.6 728 /usr/share/doc/slang-2.2.4 28 /usr/share/doc/newt-0.52.15 12 /usr/share/doc/lz4-1.7.5 40 /usr/share/doc/lzo-2.06 60 /usr/share/doc/gdbm-1.10 80 /usr/share/doc/python-libs-2.7.5 72 /usr/share/doc/python-2.7.5 44 /usr/share/doc/python-decorator-3.4.0 4 /usr/share/doc/hostname-3.13 60 /usr/share/doc/ethtool-4.8 20 /usr/share/doc/pciutils-libs-3.5.1 28 /usr/share/doc/python-slip-0.4.0/dbus/example 32 /usr/share/doc/python-slip-0.4.0/dbus 52 /usr/share/doc/python-slip-0.4.0 12 /usr/share/doc/yum-metadata-parser-1.1.4 148 /usr/share/doc/ruby-libs-2.0.0.648 128 /usr/share/doc/pyliblzma-0.5.3 8 /usr/share/doc/newt-python-0.52.15 20 /usr/share/doc/python-schedutils-0.4 376 /usr/share/doc/python-configobj-4.7.2 40 /usr/share/doc/python-iniparse-0.4 36 /usr/share/doc/pyxattr-0.5.1 20 /usr/share/doc/libnetfilter_conntrack-1.0.6 24 /usr/share/doc/iptables-1.4.21 44 /usr/share/doc/iproute-4.11.0 164 /usr/share/doc/gettext-0.19.8.1 4 /usr/share/doc/less-458 28 /usr/share/doc/libteam-1.27 776 /usr/share/doc/lsof-4.87 160 /usr/share/doc/sysstat-10.1.5 24 /usr/share/doc/nftables-0.8 148 /usr/share/doc/python-gobject-base-3.22.0 20 /usr/share/doc/grubby-8.28 20 /usr/share/doc/fipscheck-1.4.1 20 /usr/share/doc/libnftnl-1.0.8 368 /usr/share/doc/curl-7.29.0 872 /usr/share/doc/rpm-4.11.3 104 /usr/share/doc/openldap-2.4.44 112 /usr/share/doc/libuser-0.60 32 /usr/share/doc/python-pycurl-7.19.0/doc 48 /usr/share/doc/python-pycurl-7.19.0/examples 128 /usr/share/doc/python-pycurl-7.19.0/tests 280 /usr/share/doc/python-pycurl-7.19.0 44 /usr/share/doc/python-urlgrabber-3.10 32 /usr/share/doc/logrotate-3.8.6 4 /usr/share/doc/binutils-2.27 8 /usr/share/doc/centos-logos-70.0.6 4 /usr/share/doc/alsa-lib 736 /usr/share/doc/tar-1.26 68 /usr/share/doc/acl-2.2.51 96 /usr/share/doc/make-3.82 56 /usr/share/doc/openssl-1.0.2k 112 /usr/share/doc/pinentry-0.8.1 24 /usr/share/doc/mozjs17-17.0.0 104 /usr/share/doc/snappy-1.1.0 44 /usr/share/doc/libss-1.42.9 92 /usr/share/doc/GeoIP-1.5.0 440 /usr/share/doc/libpng-1.5.13 4 /usr/share/doc/freetype-2.8 4 /usr/share/doc/libsmartcols-2.23.2 84 /usr/share/doc/ustr-1.0.4 32 /usr/share/doc/libutempter-1.1.6 20 /usr/share/doc/libfastjson-0.99.4 28 /usr/share/doc/libndp-1.2 20 /usr/share/doc/libseccomp-2.3.1 36 /usr/share/doc/libdaemon-0.14 84 /usr/share/doc/qrencode-libs-3.4.1 96 /usr/share/doc/libpipeline-1.2.3 40 /usr/share/doc/libestr-0.1.9 44 /usr/share/doc/lsscsi-0.27 28 /usr/share/doc/json-c-0.11 120 /usr/share/doc/procps-ng-3.3.10 172 /usr/share/doc/util-linux-2.23.2 364 /usr/share/doc/dracut-033 52 /usr/share/doc/kmod-20 348 /usr/share/doc/systemd 20 /usr/share/doc/dbus-1.10.24/examples 144 /usr/share/doc/dbus-1.10.24 64 /usr/share/doc/polkit-0.112 40 /usr/share/doc/polkit-pkla-compat-0.1 148 /usr/share/doc/iputils-20160308 0 /usr/share/doc/policycoreutils 60 /usr/share/doc/wpa_supplicant-2.6/examples/p2p 176 /usr/share/doc/wpa_supplicant-2.6/examples 392 /usr/share/doc/wpa_supplicant-2.6 44 /usr/share/doc/os-prober-1.58 92 /usr/share/doc/cronie-1.4.11 4 /usr/share/doc/NetworkManager/examples 4 /usr/share/doc/NetworkManager 444 /usr/share/doc/openssh-7.4p1 224 /usr/share/doc/dhcp-common-4.2.5 12 /usr/share/doc/dhclient-4.2.5 24 /usr/share/doc/hwdata-0.252 12 /usr/share/doc/libpciaccess-0.14 32 /usr/share/doc/ebtables-2.0.10 24 /usr/share/doc/fxload-2002_04_11 60 /usr/share/doc/alsa-firmware-1.0.28 24 /usr/share/doc/alsa-tools-1.1.0/hdsploader 4 /usr/share/doc/alsa-tools-1.1.0/mixartloader 4 /usr/share/doc/alsa-tools-1.1.0/usx2yloader 4 /usr/share/doc/alsa-tools-1.1.0/vxloader 36 /usr/share/doc/alsa-tools-1.1.0 68 /usr/share/doc/teamd-1.27/example_configs 12 /usr/share/doc/teamd-1.27/example_ifcfgs/1 12 /usr/share/doc/teamd-1.27/example_ifcfgs/2 12 /usr/share/doc/teamd-1.27/example_ifcfgs/3 36 /usr/share/doc/teamd-1.27/example_ifcfgs 132 /usr/share/doc/teamd-1.27 40 /usr/share/doc/dbus-glib-0.100 380 /usr/share/doc/dbus-python-1.1.1 28 /usr/share/doc/python-slip-dbus-0.4.0/example 32 /usr/share/doc/python-slip-dbus-0.4.0 32 /usr/share/doc/python-pyudev-0.15 12 /usr/share/doc/plymouth-0.8.9 24 /usr/share/doc/virt-what-1.18 196 /usr/share/doc/pth-2.0.7 20 /usr/share/doc/gnupg2-2.0.22/examples 244 /usr/share/doc/gnupg2-2.0.22 140 /usr/share/doc/gpgme-1.3.2 4 /usr/share/doc/pygpgme-0.3/examples 44 /usr/share/doc/pygpgme-0.3/tests/keys 144 /usr/share/doc/pygpgme-0.3/tests 156 /usr/share/doc/pygpgme-0.3 20 /usr/share/doc/yum-plugin-fastestmirror-1.1.31 576 /usr/share/doc/yum-3.4.3 276 /usr/share/doc/kbd-1.15.5 84 /usr/share/doc/kexec-tools-2.0.15 32 /usr/share/doc/authconfig-6.2.8 1112 /usr/share/doc/postfix-2.10.1/README_FILES 4 /usr/share/doc/postfix-2.10.1/examples/chroot-setup 4 /usr/share/doc/postfix-2.10.1/examples/qmail-local 16 /usr/share/doc/postfix-2.10.1/examples/smtpd-policy 24 /usr/share/doc/postfix-2.10.1/examples 1216 /usr/share/doc/postfix-2.10.1 24 /usr/share/doc/irqbalance-1.0.7 8 /usr/share/doc/microcode_ctl/caveats 48 /usr/share/doc/microcode_ctl 636 /usr/share/doc/rsyslog-8.24.0 12 /usr/share/doc/aic94xx-firmware-30 24 /usr/share/doc/biosdevname-0.7.3 500 /usr/share/doc/parted-3.1 760 /usr/share/doc/man-db-2.6.3 348 /usr/share/doc/e2fsprogs-1.42.9 20 /usr/share/doc/sudo-1.8.23/examples 216 /usr/share/doc/sudo-1.8.23 36 /usr/share/doc/passwd-0.79 20 /usr/share/doc/btrfs-progs-4.9.1 148 /usr/share/doc/xfsprogs-4.5.0 120 /usr/share/doc/libsysfs-2.1.0 136 /usr/share/doc/iwl1000-firmware-39.31.5.1 136 /usr/share/doc/iwl4965-firmware-228.61.2.24 136 /usr/share/doc/iwl100-firmware-39.31.5.1 136 /usr/share/doc/iwl2030-firmware-18.168.6.1 136 /usr/share/doc/iwl5000-firmware-8.83.5.1_1 136 /usr/share/doc/iwl6000g2b-firmware-17.168.5.2 136 /usr/share/doc/iwl5150-firmware-8.24.2.2 136 /usr/share/doc/iwl7260-firmware-22.0.7.0 136 /usr/share/doc/iwl3160-firmware-22.0.7.0 136 /usr/share/doc/iwl105-firmware-18.168.6.1 136 /usr/share/doc/iwl3945-firmware-15.32.2.9 136 /usr/share/doc/iwl7265-firmware-22.0.7.0 20 /usr/share/doc/ivtv-firmware-20080701 136 /usr/share/doc/iwl6050-firmware-41.28.5.1 136 /usr/share/doc/iwl2000-firmware-18.168.6.1 136 /usr/share/doc/iwl6000g2a-firmware-17.168.5.3 136 /usr/share/doc/iwl6000-firmware-9.221.4.1 136 /usr/share/doc/iwl135-firmware-18.168.6.1 20 /usr/share/doc/yajl-2.0.4 4 /usr/share/doc/oci-umount-2.5 8 /usr/share/doc/oci-systemd-hook-0.2.0 4 /usr/share/doc/container-storage-setup-0.11.0 4 /usr/share/doc/python-ipaddress-1.0.16 8 /usr/share/doc/libyaml-0.1.4 24 /usr/share/doc/PyYAML-3.10/examples/pygments-lexer 16 /usr/share/doc/PyYAML-3.10/examples/yaml-highlight 40 /usr/share/doc/PyYAML-3.10/examples 60 /usr/share/doc/PyYAML-3.10 8 /usr/share/doc/python-backports-ssl_match_hostname-3.5.0.1 4 /usr/share/doc/python-setuptools-0.9.8/docs/_templates 8 /usr/share/doc/python-setuptools-0.9.8/docs/_theme/nature/static 12 /usr/share/doc/python-setuptools-0.9.8/docs/_theme/nature 12 /usr/share/doc/python-setuptools-0.9.8/docs/_theme 392 /usr/share/doc/python-setuptools-0.9.8/docs/build/html/_sources 20 /usr/share/doc/python-setuptools-0.9.8/docs/build/html/_static 412 /usr/share/doc/python-setuptools-0.9.8/docs/build/html 412 /usr/share/doc/python-setuptools-0.9.8/docs/build 832 /usr/share/doc/python-setuptools-0.9.8/docs 920 /usr/share/doc/python-setuptools-0.9.8 8 /usr/share/doc/oci-register-machine-0 96 /usr/share/doc/setools-libs-3.3.8 4 /usr/share/doc/python-pytoml-0.1.14 4 /usr/share/doc/atomic-registries-1.22.1 32 /usr/share/doc/python-IPy-0.75 36 /usr/share/doc/libcgroup-0.41 4 /usr/share/doc/container-selinux-2.107 4 /usr/share/doc/docker-common-1.13.1 304 /usr/share/doc/docker-1.13.1 20 /usr/share/doc/net-tools-2.0 20 /usr/share/doc/libtirpc-0.2.4 484 /usr/share/doc/python3-setuptools-39.2.0 4 /usr/share/doc/python3-pip-9.0.3 12 /usr/share/doc/python3-3.6.8 12 /usr/share/doc/python3-libs-3.6.8 4 /usr/share/doc/perl-parent-0.225 12 /usr/share/doc/perl-HTTP-Tiny-0.033/eg 60 /usr/share/doc/perl-HTTP-Tiny-0.033 96 /usr/share/doc/perl-podlators-2.5.1 16 /usr/share/doc/perl-Pod-Perldoc-3.20 92 /usr/share/doc/perl-Encode-2.51 12 /usr/share/doc/perl-Text-ParseWords-3.29 8 /usr/share/doc/perl-Pod-Usage-1.63 48 /usr/share/doc/perl-Time-HiRes-1.9725 24 /usr/share/doc/perl-Exporter-5.68 4 /usr/share/doc/perl-constant-1.27/eg 16 /usr/share/doc/perl-constant-1.27 36 /usr/share/doc/perl-Time-Local-1.2300 36 /usr/share/doc/perl-Socket-2.010 8 /usr/share/doc/perl-Carp-1.26 40 /usr/share/doc/perl-Storable-2.45 40 /usr/share/doc/perl-PathTools-3.40 20 /usr/share/doc/perl-Scalar-List-Utils-1.27 8 /usr/share/doc/perl-File-Temp-0.23.01/misc 80 /usr/share/doc/perl-File-Temp-0.23.01 16 /usr/share/doc/perl-File-Path-2.09 12 /usr/share/doc/perl-threads-shared-1.43 16 /usr/share/doc/perl-threads-1.87 32 /usr/share/doc/perl-Pod-Simple-3.28 28 /usr/share/doc/perl-Filter-1.49/examples/closure 24 /usr/share/doc/perl-Filter-1.49/examples/method 60 /usr/share/doc/perl-Filter-1.49/examples 76 /usr/share/doc/perl-Filter-1.49 24 /usr/share/doc/perl-Getopt-Long-2.40/examples 52 /usr/share/doc/perl-Getopt-Long-2.40 20 /usr/share/doc/perl-Error-0.17020/examples/next-in-loop 28 /usr/share/doc/perl-Error-0.17020/examples 44 /usr/share/doc/perl-Error-0.17020 8 /usr/share/doc/perl-TermReadKey-2.30 104 /usr/share/doc/rsync-3.1.2/support 328 /usr/share/doc/rsync-3.1.2 1024 /usr/share/doc/git-1.8.3.1/RelNotes 8 /usr/share/doc/git-1.8.3.1/contrib/blameview 24 /usr/share/doc/git-1.8.3.1/contrib/buildsystems/Generators 52 /usr/share/doc/git-1.8.3.1/contrib/buildsystems 24 /usr/share/doc/git-1.8.3.1/contrib/ciabot 88 /usr/share/doc/git-1.8.3.1/contrib/completion 20 /usr/share/doc/git-1.8.3.1/contrib/continuous 12 /usr/share/doc/git-1.8.3.1/contrib/convert-objects 16 /usr/share/doc/git-1.8.3.1/contrib/credential/gnome-keyring 24 /usr/share/doc/git-1.8.3.1/contrib/credential/netrc 12 /usr/share/doc/git-1.8.3.1/contrib/credential/osxkeychain 12 /usr/share/doc/git-1.8.3.1/contrib/credential/wincred 64 /usr/share/doc/git-1.8.3.1/contrib/credential 12 /usr/share/doc/git-1.8.3.1/contrib/diff-highlight 12 /usr/share/doc/git-1.8.3.1/contrib/diffall 192 /usr/share/doc/git-1.8.3.1/contrib/emacs 192 /usr/share/doc/git-1.8.3.1/contrib/examples 36 /usr/share/doc/git-1.8.3.1/contrib/fast-import 8 /usr/share/doc/git-1.8.3.1/contrib/git-jump 12 /usr/share/doc/git-1.8.3.1/contrib/git-shell-commands 44 /usr/share/doc/git-1.8.3.1/contrib/gitview 12 /usr/share/doc/git-1.8.3.1/contrib/hg-to-git 16 /usr/share/doc/git-1.8.3.1/contrib/mw-to-git/t/install-wiki 104 /usr/share/doc/git-1.8.3.1/contrib/mw-to-git/t 160 /usr/share/doc/git-1.8.3.1/contrib/mw-to-git 24 /usr/share/doc/git-1.8.3.1/contrib/p4import 4 /usr/share/doc/git-1.8.3.1/contrib/patches 44 /usr/share/doc/git-1.8.3.1/contrib/persistent-https 92 /usr/share/doc/git-1.8.3.1/contrib/remote-helpers 16 /usr/share/doc/git-1.8.3.1/contrib/stats 20 /usr/share/doc/git-1.8.3.1/contrib/subtree/t 144 /usr/share/doc/git-1.8.3.1/contrib/subtree 20 /usr/share/doc/git-1.8.3.1/contrib/svn-fe 8 /usr/share/doc/git-1.8.3.1/contrib/thunderbird-patch-inline 4 /usr/share/doc/git-1.8.3.1/contrib/vim 4 /usr/share/doc/git-1.8.3.1/contrib/workdir 1332 /usr/share/doc/git-1.8.3.1/contrib 448 /usr/share/doc/git-1.8.3.1/howto 1320 /usr/share/doc/git-1.8.3.1/technical 12100 /usr/share/doc/git-1.8.3.1 144 /usr/share/doc/tzdata-2019c 180 /usr/share/doc/shadow-utils-4.6 44 /usr/share/doc/device-mapper-persistent-data-0.8.5 20 /usr/share/doc/python-linux-procfs-0.4.11 16 /usr/share/doc/libssh2-1.8.0 16 /usr/share/doc/geoipupdate-2.5.0 20 /usr/share/doc/ipset-libs-7.1 48 /usr/share/doc/ipset-7.1 132 /usr/share/doc/device-mapper-1.02.158 36 /usr/share/doc/initscripts-9.49.47/examples/networking 36 /usr/share/doc/initscripts-9.49.47/examples 128 /usr/share/doc/initscripts-9.49.47 96 /usr/share/doc/NetworkManager-1.18.0 300 /usr/share/doc/lvm2-2.02.185 4 /usr/share/doc/libdrm-2.4.97 520 /usr/share/doc/linux-firmware-20190429 116 /usr/share/doc/audit-2.8.5/rules 184 /usr/share/doc/audit-2.8.5 32 /usr/share/doc/tuned-2.11.0 88 /usr/share/doc/chrony-3.4 24 /usr/share/doc/firewalld-0.6.3 140 /usr/share/doc/mariadb-libs-5.5.64 44 /usr/share/doc/alsa-lib-1.1.8 20 /usr/share/doc/iprutils-2.4.17.1 20 /usr/share/doc/dmidecode-3.2 46636 /usr/share/doc 36 /usr/share/licenses/grub2-common-2.02 20 /usr/share/licenses/chkconfig-1.7.4 28 /usr/share/licenses/libsepol-2.5 100 /usr/share/licenses/gmp-6.0.0 8 /usr/share/licenses/openssl-libs-1.0.2k 60 /usr/share/licenses/krb5-libs-1.15.1 28 /usr/share/licenses/glib2-2.56.1 20 /usr/share/licenses/shared-mime-info-1.8 56 /usr/share/licenses/libcroco-0.6.12 28 /usr/share/licenses/nss-pem-1.0.3 24 /usr/share/licenses/lz4-1.7.5 4 /usr/share/licenses/gobject-introspection-1.56.1 28 /usr/share/licenses/python-gobject-base-3.22.0 92 /usr/share/licenses/binutils-2.27 8 /usr/share/licenses/openssl-1.0.2k 32 /usr/share/licenses/freetype-2.8 28 /usr/share/licenses/libsemanage-2.5 4 /usr/share/licenses/libfastjson-0.99.4 24 /usr/share/licenses/libseccomp-2.3.1 48 /usr/share/licenses/cryptsetup-libs-2.0.3 32 /usr/share/licenses/dbus-libs-1.10.24 52 /usr/share/licenses/systemd-219 32 /usr/share/licenses/dbus-1.10.24 20 /usr/share/licenses/policycoreutils-2.5 4 /usr/share/licenses/wpa_supplicant-2.6 16 /usr/share/licenses/openssh-7.4p1 36 /usr/share/licenses/oci-umount-2.5 36 /usr/share/licenses/oci-systemd-hook-0.2.0 12 /usr/share/licenses/container-storage-setup-0.11.0 20 /usr/share/licenses/checkpolicy-2.5 12 /usr/share/licenses/oci-register-machine-0 52 /usr/share/licenses/setools-libs-3.3.8 4 /usr/share/licenses/python-pytoml-0.1.14 28 /usr/share/licenses/atomic-registries-1.22.1 16 /usr/share/licenses/docker-client-1.13.1 16 /usr/share/licenses/docker-1.13.1 4 /usr/share/licenses/python3-setuptools-39.2.0 4 /usr/share/licenses/python3-pip-9.0.3 16 /usr/share/licenses/python3-3.6.8 16 /usr/share/licenses/python3-libs-3.6.8 32 /usr/share/licenses/bind-license-9.11.4 28 /usr/share/licenses/elfutils-libelf-0.176 24 /usr/share/licenses/shadow-utils-4.6 32 /usr/share/licenses/bind-export-libs-9.11.4 20 /usr/share/licenses/geoipupdate-2.5.0 48 /usr/share/licenses/device-mapper-libs-1.02.158 28 /usr/share/licenses/elfutils-libs-0.176 28 /usr/share/licenses/device-mapper-event-libs-1.02.158 20 /usr/share/licenses/NetworkManager-1.18.0 28 /usr/share/licenses/lvm2-libs-2.02.185 48 /usr/share/licenses/lvm2-2.02.185 20 /usr/share/licenses/dmidecode-3.2 1464 /usr/share/licenses 108 /usr/share/locale/ast/LC_MESSAGES 108 /usr/share/locale/ast 2132 /usr/share/locale/ca/LC_MESSAGES 0 /usr/share/locale/ca/LC_TIME 2132 /usr/share/locale/ca 2320 /usr/share/locale/da/LC_MESSAGES 0 /usr/share/locale/da/LC_TIME 2320 /usr/share/locale/da 3720 /usr/share/locale/de/LC_MESSAGES 0 /usr/share/locale/de/LC_TIME 3720 /usr/share/locale/de 156 /usr/share/locale/de@hebrew/LC_MESSAGES 156 /usr/share/locale/de@hebrew 128 /usr/share/locale/de_CH/LC_MESSAGES 128 /usr/share/locale/de_CH 152 /usr/share/locale/en@arabic/LC_MESSAGES 152 /usr/share/locale/en@arabic 144 /usr/share/locale/en@cyrillic/LC_MESSAGES 144 /usr/share/locale/en@cyrillic 144 /usr/share/locale/en@greek/LC_MESSAGES 144 /usr/share/locale/en@greek 168 /usr/share/locale/en@hebrew/LC_MESSAGES 168 /usr/share/locale/en@hebrew 136 /usr/share/locale/en@piglatin/LC_MESSAGES 136 /usr/share/locale/en@piglatin 724 /usr/share/locale/en@quot/LC_MESSAGES 724 /usr/share/locale/en@quot 820 /usr/share/locale/eo/LC_MESSAGES 0 /usr/share/locale/eo/LC_TIME 820 /usr/share/locale/eo 3656 /usr/share/locale/es/LC_MESSAGES 0 /usr/share/locale/es/LC_TIME 3656 /usr/share/locale/es 2460 /usr/share/locale/fi/LC_MESSAGES 0 /usr/share/locale/fi/LC_TIME 2460 /usr/share/locale/fi 4376 /usr/share/locale/fr/LC_MESSAGES 0 /usr/share/locale/fr/LC_TIME 4376 /usr/share/locale/fr 784 /usr/share/locale/gl/LC_MESSAGES 0 /usr/share/locale/gl/LC_TIME 784 /usr/share/locale/gl 1456 /usr/share/locale/hu/LC_MESSAGES 0 /usr/share/locale/hu/LC_TIME 1456 /usr/share/locale/hu 2560 /usr/share/locale/id/LC_MESSAGES 0 /usr/share/locale/id/LC_TIME 2560 /usr/share/locale/id 2704 /usr/share/locale/it/LC_MESSAGES 0 /usr/share/locale/it/LC_TIME 2704 /usr/share/locale/it 3052 /usr/share/locale/ja/LC_MESSAGES 0 /usr/share/locale/ja/LC_TIME 3052 /usr/share/locale/ja 432 /usr/share/locale/lt/LC_MESSAGES 0 /usr/share/locale/lt/LC_TIME 432 /usr/share/locale/lt 2352 /usr/share/locale/nl/LC_MESSAGES 0 /usr/share/locale/nl/LC_TIME 2352 /usr/share/locale/nl 860 /usr/share/locale/pa/LC_MESSAGES 860 /usr/share/locale/pa 3432 /usr/share/locale/pl/LC_MESSAGES 0 /usr/share/locale/pl/LC_TIME 3432 /usr/share/locale/pl 1884 /usr/share/locale/pt_BR/LC_MESSAGES 0 /usr/share/locale/pt_BR/LC_TIME 1884 /usr/share/locale/pt_BR 3392 /usr/share/locale/ru/LC_MESSAGES 0 /usr/share/locale/ru/LC_TIME 3392 /usr/share/locale/ru 1164 /usr/share/locale/sl/LC_MESSAGES 0 /usr/share/locale/sl/LC_TIME 1164 /usr/share/locale/sl 3212 /usr/share/locale/sv/LC_MESSAGES 0 /usr/share/locale/sv/LC_TIME 3212 /usr/share/locale/sv 2020 /usr/share/locale/tr/LC_MESSAGES 0 /usr/share/locale/tr/LC_TIME 2020 /usr/share/locale/tr 4936 /usr/share/locale/uk/LC_MESSAGES 0 /usr/share/locale/uk/LC_TIME 4936 /usr/share/locale/uk 3128 /usr/share/locale/vi/LC_MESSAGES 0 /usr/share/locale/vi/LC_TIME 3128 /usr/share/locale/vi 2656 /usr/share/locale/zh_CN/LC_MESSAGES 0 /usr/share/locale/zh_CN/LC_TIME 2656 /usr/share/locale/zh_CN 1720 /usr/share/locale/zh_TW/LC_MESSAGES 0 /usr/share/locale/zh_TW/LC_TIME 1720 /usr/share/locale/zh_TW 72 /usr/share/locale/af/LC_MESSAGES 0 /usr/share/locale/af/LC_TIME 72 /usr/share/locale/af 1296 /usr/share/locale/bg/LC_MESSAGES 0 /usr/share/locale/bg/LC_TIME 1296 /usr/share/locale/bg 2544 /usr/share/locale/cs/LC_MESSAGES 0 /usr/share/locale/cs/LC_TIME 2544 /usr/share/locale/cs 616 /usr/share/locale/en@boldquot/LC_MESSAGES 616 /usr/share/locale/en@boldquot 740 /usr/share/locale/et/LC_MESSAGES 0 /usr/share/locale/et/LC_TIME 740 /usr/share/locale/et 528 /usr/share/locale/ga/LC_MESSAGES 0 /usr/share/locale/ga/LC_TIME 528 /usr/share/locale/ga 648 /usr/share/locale/ro/LC_MESSAGES 0 /usr/share/locale/ro/LC_TIME 648 /usr/share/locale/ro 1324 /usr/share/locale/sk/LC_MESSAGES 0 /usr/share/locale/sk/LC_TIME 1324 /usr/share/locale/sk 228 /usr/share/locale/ar/LC_MESSAGES 228 /usr/share/locale/ar 688 /usr/share/locale/as/LC_MESSAGES 688 /usr/share/locale/as 48 /usr/share/locale/bal/LC_MESSAGES 48 /usr/share/locale/bal 312 /usr/share/locale/be/LC_MESSAGES 0 /usr/share/locale/be/LC_TIME 312 /usr/share/locale/be 240 /usr/share/locale/bn/LC_MESSAGES 240 /usr/share/locale/bn 712 /usr/share/locale/bn_IN/LC_MESSAGES 712 /usr/share/locale/bn_IN 204 /usr/share/locale/bs/LC_MESSAGES 204 /usr/share/locale/bs 96 /usr/share/locale/cy/LC_MESSAGES 96 /usr/share/locale/cy 852 /usr/share/locale/el/LC_MESSAGES 0 /usr/share/locale/el/LC_TIME 852 /usr/share/locale/el 320 /usr/share/locale/en_GB/LC_MESSAGES 320 /usr/share/locale/en_GB 488 /usr/share/locale/eu/LC_MESSAGES 0 /usr/share/locale/eu/LC_TIME 488 /usr/share/locale/eu 104 /usr/share/locale/fa/LC_MESSAGES 104 /usr/share/locale/fa 692 /usr/share/locale/gu/LC_MESSAGES 692 /usr/share/locale/gu 216 /usr/share/locale/he/LC_MESSAGES 216 /usr/share/locale/he 672 /usr/share/locale/hi/LC_MESSAGES 672 /usr/share/locale/hi 580 /usr/share/locale/hr/LC_MESSAGES 0 /usr/share/locale/hr/LC_TIME 580 /usr/share/locale/hr 112 /usr/share/locale/hy/LC_MESSAGES 112 /usr/share/locale/hy 48 /usr/share/locale/ia/LC_MESSAGES 0 /usr/share/locale/ia/LC_TIME 48 /usr/share/locale/ia 112 /usr/share/locale/is/LC_MESSAGES 112 /usr/share/locale/is 88 /usr/share/locale/ka/LC_MESSAGES 88 /usr/share/locale/ka 76 /usr/share/locale/km/LC_MESSAGES 76 /usr/share/locale/km 748 /usr/share/locale/kn/LC_MESSAGES 748 /usr/share/locale/kn 1340 /usr/share/locale/ko/LC_MESSAGES 0 /usr/share/locale/ko/LC_TIME 1340 /usr/share/locale/ko 32 /usr/share/locale/ku/LC_MESSAGES 32 /usr/share/locale/ku 20 /usr/share/locale/lo/LC_MESSAGES 20 /usr/share/locale/lo 200 /usr/share/locale/lv/LC_MESSAGES 200 /usr/share/locale/lv 176 /usr/share/locale/mai/LC_MESSAGES 176 /usr/share/locale/mai 164 /usr/share/locale/mk/LC_MESSAGES 164 /usr/share/locale/mk 716 /usr/share/locale/ml/LC_MESSAGES 716 /usr/share/locale/ml 684 /usr/share/locale/mr/LC_MESSAGES 684 /usr/share/locale/mr 176 /usr/share/locale/ms/LC_MESSAGES 0 /usr/share/locale/ms/LC_TIME 176 /usr/share/locale/ms 20 /usr/share/locale/my/LC_MESSAGES 20 /usr/share/locale/my 676 /usr/share/locale/nb/LC_MESSAGES 0 /usr/share/locale/nb/LC_TIME 676 /usr/share/locale/nb 40 /usr/share/locale/nds/LC_MESSAGES 40 /usr/share/locale/nds 136 /usr/share/locale/nn/LC_MESSAGES 136 /usr/share/locale/nn 708 /usr/share/locale/or/LC_MESSAGES 708 /usr/share/locale/or 692 /usr/share/locale/pt/LC_MESSAGES 0 /usr/share/locale/pt/LC_TIME 692 /usr/share/locale/pt 56 /usr/share/locale/si/LC_MESSAGES 56 /usr/share/locale/si 124 /usr/share/locale/sq/LC_MESSAGES 124 /usr/share/locale/sq 1388 /usr/share/locale/sr/LC_MESSAGES 1388 /usr/share/locale/sr 364 /usr/share/locale/sr@latin/LC_MESSAGES 364 /usr/share/locale/sr@latin 792 /usr/share/locale/ta/LC_MESSAGES 792 /usr/share/locale/ta 716 /usr/share/locale/te/LC_MESSAGES 716 /usr/share/locale/te 44 /usr/share/locale/tg/LC_MESSAGES 44 /usr/share/locale/tg 236 /usr/share/locale/th/LC_MESSAGES 236 /usr/share/locale/th 48 /usr/share/locale/ur/LC_MESSAGES 48 /usr/share/locale/ur 0 /usr/share/locale/cad/LC_MESSAGES 0 /usr/share/locale/cad 0 /usr/share/locale/es_HN/LC_MESSAGES 0 /usr/share/locale/es_HN 40 /usr/share/locale/rw/LC_MESSAGES 40 /usr/share/locale/rw 0 /usr/share/locale/aa/LC_MESSAGES 0 /usr/share/locale/aa 0 /usr/share/locale/ab/LC_MESSAGES 0 /usr/share/locale/ab 0 /usr/share/locale/ace/LC_MESSAGES 0 /usr/share/locale/ace 0 /usr/share/locale/ach/LC_MESSAGES 0 /usr/share/locale/ach 0 /usr/share/locale/ada/LC_MESSAGES 0 /usr/share/locale/ada 0 /usr/share/locale/ady/LC_MESSAGES 0 /usr/share/locale/ady 0 /usr/share/locale/ae/LC_MESSAGES 0 /usr/share/locale/ae 4 /usr/share/locale/af_ZA/LC_MESSAGES 4 /usr/share/locale/af_ZA 0 /usr/share/locale/afa/LC_MESSAGES 0 /usr/share/locale/afa 0 /usr/share/locale/afh/LC_MESSAGES 0 /usr/share/locale/afh 0 /usr/share/locale/ain/LC_MESSAGES 0 /usr/share/locale/ain 0 /usr/share/locale/ak/LC_MESSAGES 0 /usr/share/locale/ak 0 /usr/share/locale/akk/LC_MESSAGES 0 /usr/share/locale/akk 0 /usr/share/locale/ale/LC_MESSAGES 0 /usr/share/locale/ale 0 /usr/share/locale/alg/LC_MESSAGES 0 /usr/share/locale/alg 0 /usr/share/locale/alt/LC_MESSAGES 0 /usr/share/locale/alt 8 /usr/share/locale/am/LC_MESSAGES 8 /usr/share/locale/am 0 /usr/share/locale/am_ET/LC_MESSAGES 0 /usr/share/locale/am_ET 100 /usr/share/locale/an/LC_MESSAGES 100 /usr/share/locale/an 0 /usr/share/locale/ang/LC_MESSAGES 0 /usr/share/locale/ang 0 /usr/share/locale/anp/LC_MESSAGES 0 /usr/share/locale/anp 0 /usr/share/locale/apa/LC_MESSAGES 0 /usr/share/locale/apa 0 /usr/share/locale/arc/LC_MESSAGES 0 /usr/share/locale/arc 0 /usr/share/locale/arn/LC_MESSAGES 0 /usr/share/locale/arn 0 /usr/share/locale/arp/LC_MESSAGES 0 /usr/share/locale/arp 0 /usr/share/locale/art/LC_MESSAGES 0 /usr/share/locale/art 0 /usr/share/locale/arw/LC_MESSAGES 0 /usr/share/locale/arw 0 /usr/share/locale/ast_ES/LC_MESSAGES 0 /usr/share/locale/ast_ES 0 /usr/share/locale/ath/LC_MESSAGES 0 /usr/share/locale/ath 0 /usr/share/locale/aus/LC_MESSAGES 0 /usr/share/locale/aus 0 /usr/share/locale/av/LC_MESSAGES 0 /usr/share/locale/av 0 /usr/share/locale/awa/LC_MESSAGES 0 /usr/share/locale/awa 0 /usr/share/locale/ay/LC_MESSAGES 0 /usr/share/locale/ay 20 /usr/share/locale/az/LC_MESSAGES 20 /usr/share/locale/az 0 /usr/share/locale/az_IR/LC_MESSAGES 0 /usr/share/locale/az_IR 0 /usr/share/locale/ba/LC_MESSAGES 0 /usr/share/locale/ba 0 /usr/share/locale/bad/LC_MESSAGES 0 /usr/share/locale/bad 0 /usr/share/locale/bai/LC_MESSAGES 0 /usr/share/locale/bai 0 /usr/share/locale/ban/LC_MESSAGES 0 /usr/share/locale/ban 0 /usr/share/locale/bas/LC_MESSAGES 0 /usr/share/locale/bas 0 /usr/share/locale/bat/LC_MESSAGES 0 /usr/share/locale/bat 44 /usr/share/locale/be@latin/LC_MESSAGES 44 /usr/share/locale/be@latin 0 /usr/share/locale/bej/LC_MESSAGES 0 /usr/share/locale/bej 0 /usr/share/locale/bem/LC_MESSAGES 0 /usr/share/locale/bem 0 /usr/share/locale/ber/LC_MESSAGES 0 /usr/share/locale/ber 0 /usr/share/locale/bg_BG/LC_MESSAGES 0 /usr/share/locale/bg_BG 0 /usr/share/locale/bh/LC_MESSAGES 0 /usr/share/locale/bh 0 /usr/share/locale/bho/LC_MESSAGES 0 /usr/share/locale/bho 0 /usr/share/locale/bi/LC_MESSAGES 0 /usr/share/locale/bi 0 /usr/share/locale/bik/LC_MESSAGES 0 /usr/share/locale/bik 0 /usr/share/locale/bin/LC_MESSAGES 0 /usr/share/locale/bin 0 /usr/share/locale/bla/LC_MESSAGES 0 /usr/share/locale/bla 0 /usr/share/locale/bm/LC_MESSAGES 0 /usr/share/locale/bm 0 /usr/share/locale/bnt/LC_MESSAGES 0 /usr/share/locale/bnt 8 /usr/share/locale/bo/LC_MESSAGES 8 /usr/share/locale/bo 24 /usr/share/locale/br/LC_MESSAGES 24 /usr/share/locale/br 0 /usr/share/locale/bra/LC_MESSAGES 0 /usr/share/locale/bra 4 /usr/share/locale/brx/LC_MESSAGES 4 /usr/share/locale/brx 0 /usr/share/locale/btk/LC_MESSAGES 0 /usr/share/locale/btk 0 /usr/share/locale/bua/LC_MESSAGES 0 /usr/share/locale/bua 0 /usr/share/locale/bug/LC_MESSAGES 0 /usr/share/locale/bug 0 /usr/share/locale/byn/LC_MESSAGES 0 /usr/share/locale/byn 128 /usr/share/locale/ca@valencia/LC_MESSAGES 128 /usr/share/locale/ca@valencia 0 /usr/share/locale/ca_ES/LC_MESSAGES 0 /usr/share/locale/ca_ES 0 /usr/share/locale/ca_ES@valencian/LC_MESSAGES 0 /usr/share/locale/ca_ES@valencian 0 /usr/share/locale/cai/LC_MESSAGES 0 /usr/share/locale/cai 0 /usr/share/locale/car/LC_MESSAGES 0 /usr/share/locale/car 0 /usr/share/locale/cau/LC_MESSAGES 0 /usr/share/locale/cau 0 /usr/share/locale/ce/LC_MESSAGES 0 /usr/share/locale/ce 0 /usr/share/locale/ceb/LC_MESSAGES 0 /usr/share/locale/ceb 0 /usr/share/locale/cel/LC_MESSAGES 0 /usr/share/locale/cel 0 /usr/share/locale/ch/LC_MESSAGES 0 /usr/share/locale/ch 0 /usr/share/locale/chb/LC_MESSAGES 0 /usr/share/locale/chb 0 /usr/share/locale/chg/LC_MESSAGES 0 /usr/share/locale/chg 0 /usr/share/locale/chk/LC_MESSAGES 0 /usr/share/locale/chk 0 /usr/share/locale/chm/LC_MESSAGES 0 /usr/share/locale/chm 0 /usr/share/locale/chn/LC_MESSAGES 0 /usr/share/locale/chn 0 /usr/share/locale/cho/LC_MESSAGES 0 /usr/share/locale/cho 0 /usr/share/locale/chp/LC_MESSAGES 0 /usr/share/locale/chp 0 /usr/share/locale/chr/LC_MESSAGES 0 /usr/share/locale/chr 0 /usr/share/locale/chy/LC_MESSAGES 0 /usr/share/locale/chy 0 /usr/share/locale/cmc/LC_MESSAGES 0 /usr/share/locale/cmc 0 /usr/share/locale/co/LC_MESSAGES 0 /usr/share/locale/co 0 /usr/share/locale/cop/LC_MESSAGES 0 /usr/share/locale/cop 0 /usr/share/locale/cpe/LC_MESSAGES 0 /usr/share/locale/cpe 0 /usr/share/locale/cpf/LC_MESSAGES 0 /usr/share/locale/cpf 0 /usr/share/locale/cpp/LC_MESSAGES 0 /usr/share/locale/cpp 0 /usr/share/locale/cr/LC_MESSAGES 0 /usr/share/locale/cr 0 /usr/share/locale/crh/LC_MESSAGES 0 /usr/share/locale/crh 0 /usr/share/locale/crp/LC_MESSAGES 0 /usr/share/locale/crp 4 /usr/share/locale/cs_CZ/LC_MESSAGES 4 /usr/share/locale/cs_CZ 0 /usr/share/locale/csb/LC_MESSAGES 0 /usr/share/locale/csb 0 /usr/share/locale/cu/LC_MESSAGES 0 /usr/share/locale/cu 0 /usr/share/locale/cus/LC_MESSAGES 0 /usr/share/locale/cus 0 /usr/share/locale/cv/LC_MESSAGES 0 /usr/share/locale/cv 0 /usr/share/locale/dak/LC_MESSAGES 0 /usr/share/locale/dak 0 /usr/share/locale/dar/LC_MESSAGES 0 /usr/share/locale/dar 0 /usr/share/locale/day/LC_MESSAGES 0 /usr/share/locale/day 0 /usr/share/locale/de_AT/LC_MESSAGES 0 /usr/share/locale/de_AT 0 /usr/share/locale/de_DE/LC_MESSAGES 0 /usr/share/locale/de_DE 0 /usr/share/locale/default/LC_MESSAGES 0 /usr/share/locale/default 0 /usr/share/locale/del/LC_MESSAGES 0 /usr/share/locale/del 0 /usr/share/locale/den/LC_MESSAGES 0 /usr/share/locale/den 0 /usr/share/locale/dgr/LC_MESSAGES 0 /usr/share/locale/dgr 0 /usr/share/locale/din/LC_MESSAGES 0 /usr/share/locale/din 0 /usr/share/locale/doi/LC_MESSAGES 0 /usr/share/locale/doi 0 /usr/share/locale/dra/LC_MESSAGES 0 /usr/share/locale/dra 0 /usr/share/locale/dsb/LC_MESSAGES 0 /usr/share/locale/dsb 0 /usr/share/locale/dua/LC_MESSAGES 0 /usr/share/locale/dua 0 /usr/share/locale/dum/LC_MESSAGES 0 /usr/share/locale/dum 0 /usr/share/locale/dv/LC_MESSAGES 0 /usr/share/locale/dv 0 /usr/share/locale/dyu/LC_MESSAGES 0 /usr/share/locale/dyu 84 /usr/share/locale/dz/LC_MESSAGES 84 /usr/share/locale/dz 0 /usr/share/locale/ee/LC_MESSAGES 0 /usr/share/locale/ee 0 /usr/share/locale/efi/LC_MESSAGES 0 /usr/share/locale/efi 0 /usr/share/locale/egy/LC_MESSAGES 0 /usr/share/locale/egy 0 /usr/share/locale/eka/LC_MESSAGES 0 /usr/share/locale/eka 0 /usr/share/locale/el_GR/LC_MESSAGES 0 /usr/share/locale/el_GR 0 /usr/share/locale/elx/LC_MESSAGES 0 /usr/share/locale/elx 0 /usr/share/locale/en/LC_MESSAGES 0 /usr/share/locale/en 72 /usr/share/locale/en@shaw/LC_MESSAGES 72 /usr/share/locale/en@shaw 0 /usr/share/locale/en_AU/LC_MESSAGES 0 /usr/share/locale/en_AU 84 /usr/share/locale/en_CA/LC_MESSAGES 84 /usr/share/locale/en_CA 0 /usr/share/locale/en_NZ/LC_MESSAGES 0 /usr/share/locale/en_NZ 36 /usr/share/locale/en_US/LC_MESSAGES 36 /usr/share/locale/en_US 0 /usr/share/locale/enm/LC_MESSAGES 0 /usr/share/locale/enm 0 /usr/share/locale/es_AR/LC_MESSAGES 0 /usr/share/locale/es_AR 0 /usr/share/locale/es_CL/LC_MESSAGES 0 /usr/share/locale/es_CL 0 /usr/share/locale/es_CO/LC_MESSAGES 0 /usr/share/locale/es_CO 0 /usr/share/locale/es_CR/LC_MESSAGES 0 /usr/share/locale/es_CR 0 /usr/share/locale/es_DO/LC_MESSAGES 0 /usr/share/locale/es_DO 0 /usr/share/locale/es_EC/LC_MESSAGES 0 /usr/share/locale/es_EC 4 /usr/share/locale/es_ES/LC_MESSAGES 4 /usr/share/locale/es_ES 0 /usr/share/locale/es_GT/LC_MESSAGES 0 /usr/share/locale/es_GT 4 /usr/share/locale/es_MX/LC_MESSAGES 4 /usr/share/locale/es_MX 0 /usr/share/locale/es_NI/LC_MESSAGES 0 /usr/share/locale/es_NI 0 /usr/share/locale/es_PA/LC_MESSAGES 0 /usr/share/locale/es_PA 0 /usr/share/locale/es_PE/LC_MESSAGES 0 /usr/share/locale/es_PE 0 /usr/share/locale/es_PR/LC_MESSAGES 0 /usr/share/locale/es_PR 0 /usr/share/locale/es_SV/LC_MESSAGES 0 /usr/share/locale/es_SV 0 /usr/share/locale/es_UY/LC_MESSAGES 0 /usr/share/locale/es_UY 0 /usr/share/locale/es_VE/LC_MESSAGES 0 /usr/share/locale/es_VE 52 /usr/share/locale/et_EE/LC_MESSAGES 52 /usr/share/locale/et_EE 8 /usr/share/locale/eu_ES/LC_MESSAGES 8 /usr/share/locale/eu_ES 0 /usr/share/locale/ewo/LC_MESSAGES 0 /usr/share/locale/ewo 4 /usr/share/locale/fa_IR/LC_MESSAGES 4 /usr/share/locale/fa_IR 0 /usr/share/locale/fan/LC_MESSAGES 0 /usr/share/locale/fan 0 /usr/share/locale/fat/LC_MESSAGES 0 /usr/share/locale/fat 0 /usr/share/locale/ff/LC_MESSAGES 0 /usr/share/locale/ff 0 /usr/share/locale/fi_FI/LC_MESSAGES 0 /usr/share/locale/fi_FI 0 /usr/share/locale/fil/LC_MESSAGES 0 /usr/share/locale/fil 0 /usr/share/locale/fiu/LC_MESSAGES 0 /usr/share/locale/fiu 0 /usr/share/locale/fj/LC_MESSAGES 0 /usr/share/locale/fj 0 /usr/share/locale/fo/LC_MESSAGES 0 /usr/share/locale/fo 0 /usr/share/locale/fon/LC_MESSAGES 0 /usr/share/locale/fon 0 /usr/share/locale/fr_BE/LC_MESSAGES 0 /usr/share/locale/fr_BE 0 /usr/share/locale/fr_CA/LC_MESSAGES 0 /usr/share/locale/fr_CA 0 /usr/share/locale/fr_CH/LC_MESSAGES 0 /usr/share/locale/fr_CH 0 /usr/share/locale/fr_FR/LC_MESSAGES 0 /usr/share/locale/fr_FR 0 /usr/share/locale/frm/LC_MESSAGES 0 /usr/share/locale/frm 0 /usr/share/locale/fro/LC_MESSAGES 0 /usr/share/locale/fro 0 /usr/share/locale/frr/LC_MESSAGES 0 /usr/share/locale/frr 0 /usr/share/locale/frs/LC_MESSAGES 0 /usr/share/locale/frs 84 /usr/share/locale/fur/LC_MESSAGES 84 /usr/share/locale/fur 0 /usr/share/locale/fy/LC_MESSAGES 0 /usr/share/locale/fy 0 /usr/share/locale/gaa/LC_MESSAGES 0 /usr/share/locale/gaa 0 /usr/share/locale/gay/LC_MESSAGES 0 /usr/share/locale/gay 0 /usr/share/locale/gba/LC_MESSAGES 0 /usr/share/locale/gba 36 /usr/share/locale/gd/LC_MESSAGES 36 /usr/share/locale/gd 0 /usr/share/locale/gem/LC_MESSAGES 0 /usr/share/locale/gem 0 /usr/share/locale/gez/LC_MESSAGES 0 /usr/share/locale/gez 0 /usr/share/locale/gil/LC_MESSAGES 0 /usr/share/locale/gil 0 /usr/share/locale/gl_ES/LC_MESSAGES 0 /usr/share/locale/gl_ES 0 /usr/share/locale/gmh/LC_MESSAGES 0 /usr/share/locale/gmh 0 /usr/share/locale/gn/LC_MESSAGES 0 /usr/share/locale/gn 0 /usr/share/locale/goh/LC_MESSAGES 0 /usr/share/locale/goh 0 /usr/share/locale/gon/LC_MESSAGES 0 /usr/share/locale/gon 0 /usr/share/locale/gor/LC_MESSAGES 0 /usr/share/locale/gor 0 /usr/share/locale/got/LC_MESSAGES 0 /usr/share/locale/got 0 /usr/share/locale/grb/LC_MESSAGES 0 /usr/share/locale/grb 0 /usr/share/locale/grc/LC_MESSAGES 0 /usr/share/locale/grc 0 /usr/share/locale/gsw/LC_MESSAGES 0 /usr/share/locale/gsw 0 /usr/share/locale/gv/LC_MESSAGES 0 /usr/share/locale/gv 0 /usr/share/locale/gwi/LC_MESSAGES 0 /usr/share/locale/gwi 0 /usr/share/locale/ha/LC_MESSAGES 0 /usr/share/locale/ha 0 /usr/share/locale/hai/LC_MESSAGES 0 /usr/share/locale/hai 0 /usr/share/locale/haw/LC_MESSAGES 0 /usr/share/locale/haw 0 /usr/share/locale/he_IL/LC_MESSAGES 0 /usr/share/locale/he_IL 0 /usr/share/locale/hil/LC_MESSAGES 0 /usr/share/locale/hil 0 /usr/share/locale/him/LC_MESSAGES 0 /usr/share/locale/him 0 /usr/share/locale/hit/LC_MESSAGES 0 /usr/share/locale/hit 0 /usr/share/locale/hmn/LC_MESSAGES 0 /usr/share/locale/hmn 0 /usr/share/locale/ho/LC_MESSAGES 0 /usr/share/locale/ho 4 /usr/share/locale/hr_HR/LC_MESSAGES 4 /usr/share/locale/hr_HR 0 /usr/share/locale/hsb/LC_MESSAGES 0 /usr/share/locale/hsb 0 /usr/share/locale/ht/LC_MESSAGES 0 /usr/share/locale/ht 0 /usr/share/locale/hu_HU/LC_MESSAGES 0 /usr/share/locale/hu_HU 0 /usr/share/locale/hup/LC_MESSAGES 0 /usr/share/locale/hup 0 /usr/share/locale/hz/LC_MESSAGES 0 /usr/share/locale/hz 0 /usr/share/locale/iba/LC_MESSAGES 0 /usr/share/locale/iba 0 /usr/share/locale/ie/LC_MESSAGES 0 /usr/share/locale/ie 0 /usr/share/locale/ig/LC_MESSAGES 0 /usr/share/locale/ig 0 /usr/share/locale/ii/LC_MESSAGES 0 /usr/share/locale/ii 0 /usr/share/locale/ijo/LC_MESSAGES 0 /usr/share/locale/ijo 0 /usr/share/locale/ik/LC_MESSAGES 0 /usr/share/locale/ik 4 /usr/share/locale/ilo/LC_MESSAGES 4 /usr/share/locale/ilo 0 /usr/share/locale/inc/LC_MESSAGES 0 /usr/share/locale/inc 0 /usr/share/locale/ine/LC_MESSAGES 0 /usr/share/locale/ine 0 /usr/share/locale/inh/LC_MESSAGES 0 /usr/share/locale/inh 0 /usr/share/locale/io/LC_MESSAGES 0 /usr/share/locale/io 0 /usr/share/locale/ira/LC_MESSAGES 0 /usr/share/locale/ira 0 /usr/share/locale/iro/LC_MESSAGES 0 /usr/share/locale/iro 0 /usr/share/locale/it_CH/LC_MESSAGES 0 /usr/share/locale/it_CH 4 /usr/share/locale/it_IT/LC_MESSAGES 4 /usr/share/locale/it_IT 0 /usr/share/locale/iu/LC_MESSAGES 0 /usr/share/locale/iu 4 /usr/share/locale/ja_JP/LC_MESSAGES 4 /usr/share/locale/ja_JP 0 /usr/share/locale/jbo/LC_MESSAGES 0 /usr/share/locale/jbo 0 /usr/share/locale/jpr/LC_MESSAGES 0 /usr/share/locale/jpr 0 /usr/share/locale/jrb/LC_MESSAGES 0 /usr/share/locale/jrb 0 /usr/share/locale/jv/LC_MESSAGES 0 /usr/share/locale/jv 0 /usr/share/locale/kaa/LC_MESSAGES 0 /usr/share/locale/kaa 0 /usr/share/locale/kab/LC_MESSAGES 0 /usr/share/locale/kab 0 /usr/share/locale/kac/LC_MESSAGES 0 /usr/share/locale/kac 0 /usr/share/locale/kam/LC_MESSAGES 0 /usr/share/locale/kam 0 /usr/share/locale/kar/LC_MESSAGES 0 /usr/share/locale/kar 0 /usr/share/locale/kaw/LC_MESSAGES 0 /usr/share/locale/kaw 0 /usr/share/locale/kbd/LC_MESSAGES 0 /usr/share/locale/kbd 0 /usr/share/locale/kg/LC_MESSAGES 0 /usr/share/locale/kg 0 /usr/share/locale/kha/LC_MESSAGES 0 /usr/share/locale/kha 0 /usr/share/locale/khi/LC_MESSAGES 0 /usr/share/locale/khi 0 /usr/share/locale/kho/LC_MESSAGES 0 /usr/share/locale/kho 0 /usr/share/locale/ki/LC_MESSAGES 0 /usr/share/locale/ki 0 /usr/share/locale/kj/LC_MESSAGES 0 /usr/share/locale/kj 144 /usr/share/locale/kk/LC_MESSAGES 0 /usr/share/locale/kk/LC_TIME 144 /usr/share/locale/kk 0 /usr/share/locale/kl/LC_MESSAGES 0 /usr/share/locale/kl 0 /usr/share/locale/kmb/LC_MESSAGES 0 /usr/share/locale/kmb 0 /usr/share/locale/ko_KR/LC_MESSAGES 0 /usr/share/locale/ko_KR 0 /usr/share/locale/kok/LC_MESSAGES 0 /usr/share/locale/kok 0 /usr/share/locale/kos/LC_MESSAGES 0 /usr/share/locale/kos 0 /usr/share/locale/kpe/LC_MESSAGES 0 /usr/share/locale/kpe 0 /usr/share/locale/kr/LC_MESSAGES 0 /usr/share/locale/kr 0 /usr/share/locale/krc/LC_MESSAGES 0 /usr/share/locale/krc 0 /usr/share/locale/krl/LC_MESSAGES 0 /usr/share/locale/krl 0 /usr/share/locale/kro/LC_MESSAGES 0 /usr/share/locale/kro 0 /usr/share/locale/kru/LC_MESSAGES 0 /usr/share/locale/kru 12 /usr/share/locale/ks/LC_MESSAGES 12 /usr/share/locale/ks 0 /usr/share/locale/ks@devanagari/LC_MESSAGES 0 /usr/share/locale/ks@devanagari 0 /usr/share/locale/kum/LC_MESSAGES 0 /usr/share/locale/kum 0 /usr/share/locale/kut/LC_MESSAGES 0 /usr/share/locale/kut 0 /usr/share/locale/kv/LC_MESSAGES 0 /usr/share/locale/kv 0 /usr/share/locale/kw/LC_MESSAGES 0 /usr/share/locale/kw 84 /usr/share/locale/ky/LC_MESSAGES 84 /usr/share/locale/ky 4 /usr/share/locale/la/LC_MESSAGES 4 /usr/share/locale/la 0 /usr/share/locale/lad/LC_MESSAGES 0 /usr/share/locale/lad 0 /usr/share/locale/lah/LC_MESSAGES 0 /usr/share/locale/lah 0 /usr/share/locale/lam/LC_MESSAGES 0 /usr/share/locale/lam 0 /usr/share/locale/lb/LC_MESSAGES 0 /usr/share/locale/lb 0 /usr/share/locale/lez/LC_MESSAGES 0 /usr/share/locale/lez 276 /usr/share/locale/lg/LC_MESSAGES 0 /usr/share/locale/lg/LC_TIME 276 /usr/share/locale/lg 0 /usr/share/locale/li/LC_MESSAGES 0 /usr/share/locale/li 0 /usr/share/locale/ln/LC_MESSAGES 0 /usr/share/locale/ln 0 /usr/share/locale/lol/LC_MESSAGES 0 /usr/share/locale/lol 0 /usr/share/locale/loz/LC_MESSAGES 0 /usr/share/locale/loz 0 /usr/share/locale/lu/LC_MESSAGES 0 /usr/share/locale/lu 0 /usr/share/locale/lua/LC_MESSAGES 0 /usr/share/locale/lua 0 /usr/share/locale/lui/LC_MESSAGES 0 /usr/share/locale/lui 0 /usr/share/locale/lun/LC_MESSAGES 0 /usr/share/locale/lun 0 /usr/share/locale/luo/LC_MESSAGES 0 /usr/share/locale/luo 0 /usr/share/locale/lus/LC_MESSAGES 0 /usr/share/locale/lus 4 /usr/share/locale/lv_LV/LC_MESSAGES 4 /usr/share/locale/lv_LV 0 /usr/share/locale/mad/LC_MESSAGES 0 /usr/share/locale/mad 0 /usr/share/locale/mag/LC_MESSAGES 0 /usr/share/locale/mag 0 /usr/share/locale/mak/LC_MESSAGES 0 /usr/share/locale/mak 0 /usr/share/locale/man/LC_MESSAGES 0 /usr/share/locale/man 0 /usr/share/locale/map/LC_MESSAGES 0 /usr/share/locale/map 0 /usr/share/locale/mas/LC_MESSAGES 0 /usr/share/locale/mas 0 /usr/share/locale/mdf/LC_MESSAGES 0 /usr/share/locale/mdf 0 /usr/share/locale/mdr/LC_MESSAGES 0 /usr/share/locale/mdr 0 /usr/share/locale/men/LC_MESSAGES 0 /usr/share/locale/men 28 /usr/share/locale/mg/LC_MESSAGES 28 /usr/share/locale/mg 0 /usr/share/locale/mga/LC_MESSAGES 0 /usr/share/locale/mga 0 /usr/share/locale/mh/LC_MESSAGES 0 /usr/share/locale/mh 0 /usr/share/locale/mi/LC_MESSAGES 0 /usr/share/locale/mi 0 /usr/share/locale/mic/LC_MESSAGES 0 /usr/share/locale/mic 0 /usr/share/locale/min/LC_MESSAGES 0 /usr/share/locale/min 0 /usr/share/locale/mis/LC_MESSAGES 0 /usr/share/locale/mis 0 /usr/share/locale/mkh/LC_MESSAGES 0 /usr/share/locale/mkh 24 /usr/share/locale/mn/LC_MESSAGES 24 /usr/share/locale/mn 0 /usr/share/locale/mnc/LC_MESSAGES 0 /usr/share/locale/mnc 0 /usr/share/locale/mni/LC_MESSAGES 0 /usr/share/locale/mni 0 /usr/share/locale/mno/LC_MESSAGES 0 /usr/share/locale/mno 0 /usr/share/locale/mo/LC_MESSAGES 0 /usr/share/locale/mo 0 /usr/share/locale/moh/LC_MESSAGES 0 /usr/share/locale/moh 0 /usr/share/locale/mos/LC_MESSAGES 0 /usr/share/locale/mos 4 /usr/share/locale/ms_MY/LC_MESSAGES 4 /usr/share/locale/ms_MY 8 /usr/share/locale/mt/LC_MESSAGES 8 /usr/share/locale/mt 0 /usr/share/locale/mul/LC_MESSAGES 0 /usr/share/locale/mul 0 /usr/share/locale/mun/LC_MESSAGES 0 /usr/share/locale/mun 0 /usr/share/locale/mus/LC_MESSAGES 0 /usr/share/locale/mus 0 /usr/share/locale/mwl/LC_MESSAGES 0 /usr/share/locale/mwl 0 /usr/share/locale/mwr/LC_MESSAGES 0 /usr/share/locale/mwr 0 /usr/share/locale/my_MM/LC_MESSAGES 0 /usr/share/locale/my_MM 0 /usr/share/locale/myn/LC_MESSAGES 0 /usr/share/locale/myn 0 /usr/share/locale/myv/LC_MESSAGES 0 /usr/share/locale/myv 0 /usr/share/locale/na/LC_MESSAGES 0 /usr/share/locale/na 0 /usr/share/locale/nah/LC_MESSAGES 0 /usr/share/locale/nah 0 /usr/share/locale/nai/LC_MESSAGES 0 /usr/share/locale/nai 0 /usr/share/locale/nap/LC_MESSAGES 0 /usr/share/locale/nap 0 /usr/share/locale/nb_NO/LC_MESSAGES 0 /usr/share/locale/nb_NO 0 /usr/share/locale/nd/LC_MESSAGES 0 /usr/share/locale/nd 0 /usr/share/locale/nds@NFE/LC_MESSAGES 0 /usr/share/locale/nds@NFE 0 /usr/share/locale/nds_DE/LC_MESSAGES 0 /usr/share/locale/nds_DE 96 /usr/share/locale/ne/LC_MESSAGES 96 /usr/share/locale/ne 0 /usr/share/locale/new/LC_MESSAGES 0 /usr/share/locale/new 0 /usr/share/locale/ng/LC_MESSAGES 0 /usr/share/locale/ng 0 /usr/share/locale/nia/LC_MESSAGES 0 /usr/share/locale/nia 0 /usr/share/locale/nic/LC_MESSAGES 0 /usr/share/locale/nic 0 /usr/share/locale/niu/LC_MESSAGES 0 /usr/share/locale/niu 0 /usr/share/locale/nl_BE/LC_MESSAGES 0 /usr/share/locale/nl_BE 68 /usr/share/locale/nl_NL/LC_MESSAGES 68 /usr/share/locale/nl_NL 4 /usr/share/locale/no/LC_MESSAGES 4 /usr/share/locale/no 0 /usr/share/locale/nog/LC_MESSAGES 0 /usr/share/locale/nog 0 /usr/share/locale/non/LC_MESSAGES 0 /usr/share/locale/non 0 /usr/share/locale/nqo/LC_MESSAGES 0 /usr/share/locale/nqo 0 /usr/share/locale/nr/LC_MESSAGES 0 /usr/share/locale/nr 4 /usr/share/locale/nso/LC_MESSAGES 4 /usr/share/locale/nso 0 /usr/share/locale/nub/LC_MESSAGES 0 /usr/share/locale/nub 0 /usr/share/locale/nv/LC_MESSAGES 0 /usr/share/locale/nv 0 /usr/share/locale/nwc/LC_MESSAGES 0 /usr/share/locale/nwc 0 /usr/share/locale/ny/LC_MESSAGES 0 /usr/share/locale/ny 0 /usr/share/locale/nym/LC_MESSAGES 0 /usr/share/locale/nym 0 /usr/share/locale/nyn/LC_MESSAGES 0 /usr/share/locale/nyn 0 /usr/share/locale/nyo/LC_MESSAGES 0 /usr/share/locale/nyo 0 /usr/share/locale/nzi/LC_MESSAGES 0 /usr/share/locale/nzi 136 /usr/share/locale/oc/LC_MESSAGES 136 /usr/share/locale/oc 0 /usr/share/locale/oj/LC_MESSAGES 0 /usr/share/locale/oj 0 /usr/share/locale/om/LC_MESSAGES 0 /usr/share/locale/om 0 /usr/share/locale/os/LC_MESSAGES 0 /usr/share/locale/os 0 /usr/share/locale/osa/LC_MESSAGES 0 /usr/share/locale/osa 0 /usr/share/locale/ota/LC_MESSAGES 0 /usr/share/locale/ota 0 /usr/share/locale/oto/LC_MESSAGES 0 /usr/share/locale/oto 0 /usr/share/locale/paa/LC_MESSAGES 0 /usr/share/locale/paa 0 /usr/share/locale/pag/LC_MESSAGES 0 /usr/share/locale/pag 0 /usr/share/locale/pal/LC_MESSAGES 0 /usr/share/locale/pal 0 /usr/share/locale/pam/LC_MESSAGES 0 /usr/share/locale/pam 0 /usr/share/locale/pap/LC_MESSAGES 0 /usr/share/locale/pap 0 /usr/share/locale/pau/LC_MESSAGES 0 /usr/share/locale/pau 0 /usr/share/locale/peo/LC_MESSAGES 0 /usr/share/locale/peo 0 /usr/share/locale/phi/LC_MESSAGES 0 /usr/share/locale/phi 0 /usr/share/locale/phn/LC_MESSAGES 0 /usr/share/locale/phn 0 /usr/share/locale/pi/LC_MESSAGES 0 /usr/share/locale/pi 0 /usr/share/locale/pl_PL/LC_MESSAGES 0 /usr/share/locale/pl_PL 0 /usr/share/locale/pon/LC_MESSAGES 0 /usr/share/locale/pon 0 /usr/share/locale/pra/LC_MESSAGES 0 /usr/share/locale/pra 0 /usr/share/locale/pro/LC_MESSAGES 0 /usr/share/locale/pro 12 /usr/share/locale/ps/LC_MESSAGES 12 /usr/share/locale/ps 32 /usr/share/locale/pt_PT/LC_MESSAGES 32 /usr/share/locale/pt_PT 0 /usr/share/locale/qaa-qtz/LC_MESSAGES 0 /usr/share/locale/qaa-qtz 0 /usr/share/locale/qu/LC_MESSAGES 0 /usr/share/locale/qu 0 /usr/share/locale/raj/LC_MESSAGES 0 /usr/share/locale/raj 0 /usr/share/locale/rap/LC_MESSAGES 0 /usr/share/locale/rap 0 /usr/share/locale/rar/LC_MESSAGES 0 /usr/share/locale/rar 0 /usr/share/locale/rm/LC_MESSAGES 0 /usr/share/locale/rm 0 /usr/share/locale/rn/LC_MESSAGES 0 /usr/share/locale/rn 0 /usr/share/locale/roa/LC_MESSAGES 0 /usr/share/locale/roa 0 /usr/share/locale/rom/LC_MESSAGES 0 /usr/share/locale/rom 4 /usr/share/locale/ru_RU/LC_MESSAGES 4 /usr/share/locale/ru_RU 0 /usr/share/locale/rup/LC_MESSAGES 0 /usr/share/locale/rup 0 /usr/share/locale/sa/LC_MESSAGES 0 /usr/share/locale/sa 0 /usr/share/locale/sad/LC_MESSAGES 0 /usr/share/locale/sad 0 /usr/share/locale/sah/LC_MESSAGES 0 /usr/share/locale/sah 0 /usr/share/locale/sai/LC_MESSAGES 0 /usr/share/locale/sai 0 /usr/share/locale/sal/LC_MESSAGES 0 /usr/share/locale/sal 0 /usr/share/locale/sam/LC_MESSAGES 0 /usr/share/locale/sam 0 /usr/share/locale/sas/LC_MESSAGES 0 /usr/share/locale/sas 0 /usr/share/locale/sat/LC_MESSAGES 0 /usr/share/locale/sat 0 /usr/share/locale/sc/LC_MESSAGES 0 /usr/share/locale/sc 0 /usr/share/locale/scn/LC_MESSAGES 0 /usr/share/locale/scn 0 /usr/share/locale/sco/LC_MESSAGES 0 /usr/share/locale/sco 0 /usr/share/locale/sd/LC_MESSAGES 0 /usr/share/locale/sd 0 /usr/share/locale/se/LC_MESSAGES 0 /usr/share/locale/se 0 /usr/share/locale/sel/LC_MESSAGES 0 /usr/share/locale/sel 0 /usr/share/locale/sem/LC_MESSAGES 0 /usr/share/locale/sem 0 /usr/share/locale/sg/LC_MESSAGES 0 /usr/share/locale/sg 0 /usr/share/locale/sga/LC_MESSAGES 0 /usr/share/locale/sga 0 /usr/share/locale/sgn/LC_MESSAGES 0 /usr/share/locale/sgn 0 /usr/share/locale/shn/LC_MESSAGES 0 /usr/share/locale/shn 0 /usr/share/locale/sid/LC_MESSAGES 0 /usr/share/locale/sid 0 /usr/share/locale/sio/LC_MESSAGES 0 /usr/share/locale/sio 0 /usr/share/locale/sit/LC_MESSAGES 0 /usr/share/locale/sit 4 /usr/share/locale/sl_SI/LC_MESSAGES 4 /usr/share/locale/sl_SI 0 /usr/share/locale/sla/LC_MESSAGES 0 /usr/share/locale/sla 0 /usr/share/locale/sm/LC_MESSAGES 0 /usr/share/locale/sm 0 /usr/share/locale/sma/LC_MESSAGES 0 /usr/share/locale/sma 0 /usr/share/locale/smi/LC_MESSAGES 0 /usr/share/locale/smi 0 /usr/share/locale/smj/LC_MESSAGES 0 /usr/share/locale/smj 0 /usr/share/locale/smn/LC_MESSAGES 0 /usr/share/locale/smn 0 /usr/share/locale/sms/LC_MESSAGES 0 /usr/share/locale/sms 0 /usr/share/locale/sn/LC_MESSAGES 0 /usr/share/locale/sn 0 /usr/share/locale/snk/LC_MESSAGES 0 /usr/share/locale/snk 0 /usr/share/locale/so/LC_MESSAGES 0 /usr/share/locale/so 0 /usr/share/locale/sog/LC_MESSAGES 0 /usr/share/locale/sog 0 /usr/share/locale/son/LC_MESSAGES 0 /usr/share/locale/son 0 /usr/share/locale/sq_AL/LC_MESSAGES 0 /usr/share/locale/sq_AL 0 /usr/share/locale/sr@Latn/LC_MESSAGES 0 /usr/share/locale/sr@Latn 16 /usr/share/locale/sr@ije/LC_MESSAGES 16 /usr/share/locale/sr@ije 0 /usr/share/locale/sr@ijekavian/LC_MESSAGES 0 /usr/share/locale/sr@ijekavian 0 /usr/share/locale/sr@ijekavianlatin/LC_MESSAGES 0 /usr/share/locale/sr@ijekavianlatin 0 /usr/share/locale/sr_RS/LC_MESSAGES 0 /usr/share/locale/sr_RS 0 /usr/share/locale/srn/LC_MESSAGES 0 /usr/share/locale/srn 0 /usr/share/locale/srr/LC_MESSAGES 0 /usr/share/locale/srr 0 /usr/share/locale/ss/LC_MESSAGES 0 /usr/share/locale/ss 0 /usr/share/locale/ssa/LC_MESSAGES 0 /usr/share/locale/ssa 0 /usr/share/locale/st/LC_MESSAGES 0 /usr/share/locale/st 0 /usr/share/locale/su/LC_MESSAGES 0 /usr/share/locale/su 0 /usr/share/locale/suk/LC_MESSAGES 0 /usr/share/locale/suk 0 /usr/share/locale/sus/LC_MESSAGES 0 /usr/share/locale/sus 0 /usr/share/locale/sux/LC_MESSAGES 0 /usr/share/locale/sux 0 /usr/share/locale/sv_SE/LC_MESSAGES 0 /usr/share/locale/sv_SE 0 /usr/share/locale/sw/LC_MESSAGES 0 /usr/share/locale/sw 0 /usr/share/locale/syc/LC_MESSAGES 0 /usr/share/locale/syc 0 /usr/share/locale/syr/LC_MESSAGES 0 /usr/share/locale/syr 0 /usr/share/locale/tai/LC_MESSAGES 0 /usr/share/locale/tai 0 /usr/share/locale/tem/LC_MESSAGES 0 /usr/share/locale/tem 0 /usr/share/locale/ter/LC_MESSAGES 0 /usr/share/locale/ter 0 /usr/share/locale/tet/LC_MESSAGES 0 /usr/share/locale/tet 0 /usr/share/locale/ti/LC_MESSAGES 0 /usr/share/locale/ti 0 /usr/share/locale/tig/LC_MESSAGES 0 /usr/share/locale/tig 0 /usr/share/locale/tiv/LC_MESSAGES 0 /usr/share/locale/tiv 0 /usr/share/locale/tk/LC_MESSAGES 0 /usr/share/locale/tk 0 /usr/share/locale/tkl/LC_MESSAGES 0 /usr/share/locale/tkl 48 /usr/share/locale/tl/LC_MESSAGES 48 /usr/share/locale/tl 0 /usr/share/locale/tlh/LC_MESSAGES 0 /usr/share/locale/tlh 0 /usr/share/locale/tli/LC_MESSAGES 0 /usr/share/locale/tli 0 /usr/share/locale/tmh/LC_MESSAGES 0 /usr/share/locale/tmh 0 /usr/share/locale/tn/LC_MESSAGES 0 /usr/share/locale/tn 0 /usr/share/locale/to/LC_MESSAGES 0 /usr/share/locale/to 0 /usr/share/locale/tog/LC_MESSAGES 0 /usr/share/locale/tog 0 /usr/share/locale/tpi/LC_MESSAGES 0 /usr/share/locale/tpi 0 /usr/share/locale/ts/LC_MESSAGES 0 /usr/share/locale/ts 0 /usr/share/locale/tsi/LC_MESSAGES 0 /usr/share/locale/tsi 8 /usr/share/locale/tt/LC_MESSAGES 8 /usr/share/locale/tt 0 /usr/share/locale/tum/LC_MESSAGES 0 /usr/share/locale/tum 0 /usr/share/locale/tup/LC_MESSAGES 0 /usr/share/locale/tup 0 /usr/share/locale/tut/LC_MESSAGES 0 /usr/share/locale/tut 0 /usr/share/locale/tvl/LC_MESSAGES 0 /usr/share/locale/tvl 0 /usr/share/locale/tw/LC_MESSAGES 0 /usr/share/locale/tw 0 /usr/share/locale/ty/LC_MESSAGES 0 /usr/share/locale/ty 0 /usr/share/locale/tyv/LC_MESSAGES 0 /usr/share/locale/tyv 0 /usr/share/locale/udm/LC_MESSAGES 0 /usr/share/locale/udm 124 /usr/share/locale/ug/LC_MESSAGES 124 /usr/share/locale/ug 0 /usr/share/locale/uga/LC_MESSAGES 0 /usr/share/locale/uga 4 /usr/share/locale/uk_UA/LC_MESSAGES 4 /usr/share/locale/uk_UA 0 /usr/share/locale/umb/LC_MESSAGES 0 /usr/share/locale/umb 0 /usr/share/locale/und/LC_MESSAGES 0 /usr/share/locale/und 0 /usr/share/locale/ur_PK/LC_MESSAGES 0 /usr/share/locale/ur_PK 0 /usr/share/locale/uz/LC_MESSAGES 0 /usr/share/locale/uz 0 /usr/share/locale/uz@Latn/LC_MESSAGES 0 /usr/share/locale/uz@Latn 0 /usr/share/locale/uz@cyrillic/LC_MESSAGES 0 /usr/share/locale/uz@cyrillic 0 /usr/share/locale/vai/LC_MESSAGES 0 /usr/share/locale/vai 0 /usr/share/locale/ve/LC_MESSAGES 0 /usr/share/locale/ve 0 /usr/share/locale/vo/LC_MESSAGES 0 /usr/share/locale/vo 0 /usr/share/locale/vot/LC_MESSAGES 0 /usr/share/locale/vot 24 /usr/share/locale/wa/LC_MESSAGES 24 /usr/share/locale/wa 0 /usr/share/locale/wak/LC_MESSAGES 0 /usr/share/locale/wak 0 /usr/share/locale/wal/LC_MESSAGES 0 /usr/share/locale/wal 0 /usr/share/locale/war/LC_MESSAGES 0 /usr/share/locale/war 0 /usr/share/locale/was/LC_MESSAGES 0 /usr/share/locale/was 0 /usr/share/locale/wen/LC_MESSAGES 0 /usr/share/locale/wen 8 /usr/share/locale/wo/LC_MESSAGES 8 /usr/share/locale/wo 0 /usr/share/locale/xal/LC_MESSAGES 0 /usr/share/locale/xal 24 /usr/share/locale/xh/LC_MESSAGES 24 /usr/share/locale/xh 0 /usr/share/locale/yao/LC_MESSAGES 0 /usr/share/locale/yao 0 /usr/share/locale/yap/LC_MESSAGES 0 /usr/share/locale/yap 16 /usr/share/locale/yi/LC_MESSAGES 16 /usr/share/locale/yi 0 /usr/share/locale/yo/LC_MESSAGES 0 /usr/share/locale/yo 0 /usr/share/locale/ypk/LC_MESSAGES 0 /usr/share/locale/ypk 0 /usr/share/locale/za/LC_MESSAGES 0 /usr/share/locale/za 0 /usr/share/locale/zap/LC_MESSAGES 0 /usr/share/locale/zap 0 /usr/share/locale/zbl/LC_MESSAGES 0 /usr/share/locale/zbl 0 /usr/share/locale/zen/LC_MESSAGES 0 /usr/share/locale/zen 0 /usr/share/locale/zgh/LC_MESSAGES 0 /usr/share/locale/zgh 0 /usr/share/locale/zh/LC_MESSAGES 0 /usr/share/locale/zh 4 /usr/share/locale/zh_CN.GB2312/LC_MESSAGES 4 /usr/share/locale/zh_CN.GB2312 124 /usr/share/locale/zh_HK/LC_MESSAGES 124 /usr/share/locale/zh_HK 4 /usr/share/locale/zh_TW.Big5/LC_MESSAGES 4 /usr/share/locale/zh_TW.Big5 0 /usr/share/locale/znd/LC_MESSAGES 0 /usr/share/locale/znd 20 /usr/share/locale/zu/LC_MESSAGES 20 /usr/share/locale/zu 0 /usr/share/locale/zun/LC_MESSAGES 0 /usr/share/locale/zun 0 /usr/share/locale/zxx/LC_MESSAGES 0 /usr/share/locale/zxx 0 /usr/share/locale/zza/LC_MESSAGES 0 /usr/share/locale/zza 4 /usr/share/locale/mr_IN/LC_MESSAGES 4 /usr/share/locale/mr_IN 4 /usr/share/locale/aln/LC_MESSAGES 4 /usr/share/locale/aln 4 /usr/share/locale/bn_BD/LC_MESSAGES 4 /usr/share/locale/bn_BD 64 /usr/share/locale/lt_LT/LC_MESSAGES 64 /usr/share/locale/lt_LT 4 /usr/share/locale/si_LK/LC_MESSAGES 4 /usr/share/locale/si_LK 4 /usr/share/locale/ta_IN/LC_MESSAGES 4 /usr/share/locale/ta_IN 4 /usr/share/locale/vi_VN/LC_MESSAGES 4 /usr/share/locale/vi_VN 20 /usr/share/locale/id_ID/LC_MESSAGES 20 /usr/share/locale/id_ID 90420 /usr/share/locale 2576 /usr/share/grub 84 /usr/share/zoneinfo/Africa 48 /usr/share/zoneinfo/America/Argentina 32 /usr/share/zoneinfo/America/Indiana 8 /usr/share/zoneinfo/America/Kentucky 12 /usr/share/zoneinfo/America/North_Dakota 548 /usr/share/zoneinfo/America 44 /usr/share/zoneinfo/Antarctica 4 /usr/share/zoneinfo/Arctic 344 /usr/share/zoneinfo/Asia 36 /usr/share/zoneinfo/Atlantic 52 /usr/share/zoneinfo/Australia 0 /usr/share/zoneinfo/Brazil 0 /usr/share/zoneinfo/Canada 12 /usr/share/zoneinfo/Chile 116 /usr/share/zoneinfo/Etc 180 /usr/share/zoneinfo/Europe 32 /usr/share/zoneinfo/Indian 0 /usr/share/zoneinfo/Mexico 144 /usr/share/zoneinfo/Pacific 0 /usr/share/zoneinfo/US 84 /usr/share/zoneinfo/posix/Africa 48 /usr/share/zoneinfo/posix/America/Argentina 32 /usr/share/zoneinfo/posix/America/Indiana 8 /usr/share/zoneinfo/posix/America/Kentucky 12 /usr/share/zoneinfo/posix/America/North_Dakota 548 /usr/share/zoneinfo/posix/America 44 /usr/share/zoneinfo/posix/Antarctica 4 /usr/share/zoneinfo/posix/Arctic 344 /usr/share/zoneinfo/posix/Asia 36 /usr/share/zoneinfo/posix/Atlantic 52 /usr/share/zoneinfo/posix/Australia 0 /usr/share/zoneinfo/posix/Brazil 0 /usr/share/zoneinfo/posix/Canada 12 /usr/share/zoneinfo/posix/Chile 116 /usr/share/zoneinfo/posix/Etc 180 /usr/share/zoneinfo/posix/Europe 32 /usr/share/zoneinfo/posix/Indian 0 /usr/share/zoneinfo/posix/Mexico 144 /usr/share/zoneinfo/posix/Pacific 0 /usr/share/zoneinfo/posix/US 1644 /usr/share/zoneinfo/posix 84 /usr/share/zoneinfo/right/Africa 48 /usr/share/zoneinfo/right/America/Argentina 32 /usr/share/zoneinfo/right/America/Indiana 8 /usr/share/zoneinfo/right/America/Kentucky 12 /usr/share/zoneinfo/right/America/North_Dakota 556 /usr/share/zoneinfo/right/America 44 /usr/share/zoneinfo/right/Antarctica 4 /usr/share/zoneinfo/right/Arctic 344 /usr/share/zoneinfo/right/Asia 36 /usr/share/zoneinfo/right/Atlantic 52 /usr/share/zoneinfo/right/Australia 0 /usr/share/zoneinfo/right/Brazil 0 /usr/share/zoneinfo/right/Canada 12 /usr/share/zoneinfo/right/Chile 116 /usr/share/zoneinfo/right/Etc 184 /usr/share/zoneinfo/right/Europe 32 /usr/share/zoneinfo/right/Indian 0 /usr/share/zoneinfo/right/Mexico 148 /usr/share/zoneinfo/right/Pacific 0 /usr/share/zoneinfo/right/US 1660 /usr/share/zoneinfo/right 5112 /usr/share/zoneinfo 16 /usr/share/tabset 4 /usr/share/terminfo/A 12 /usr/share/terminfo/E 12 /usr/share/terminfo/a 4 /usr/share/terminfo/b 4 /usr/share/terminfo/c 4 /usr/share/terminfo/d 8 /usr/share/terminfo/e 8 /usr/share/terminfo/g 4 /usr/share/terminfo/h 4 /usr/share/terminfo/j 8 /usr/share/terminfo/k 4 /usr/share/terminfo/l 28 /usr/share/terminfo/m 4 /usr/share/terminfo/n 20 /usr/share/terminfo/p 40 /usr/share/terminfo/r 76 /usr/share/terminfo/s 8 /usr/share/terminfo/t 36 /usr/share/terminfo/v 8 /usr/share/terminfo/w 128 /usr/share/terminfo/x 424 /usr/share/terminfo 2548 /usr/share/info 7484 /usr/share/man/man1 3512 /usr/share/man/man8 1528 /usr/share/man/man5 304 /usr/share/man/man7 0 /usr/share/man/man0p 0 /usr/share/man/man1p 0 /usr/share/man/man1x 0 /usr/share/man/man2 0 /usr/share/man/man2x 1960 /usr/share/man/man3 0 /usr/share/man/man3p 0 /usr/share/man/man3x 8 /usr/share/man/man4 0 /usr/share/man/man4x 0 /usr/share/man/man5x 0 /usr/share/man/man6 0 /usr/share/man/man6x 0 /usr/share/man/man7x 0 /usr/share/man/man8x 0 /usr/share/man/man9 0 /usr/share/man/man9x 0 /usr/share/man/mann 148 /usr/share/man/fr/man8 64 /usr/share/man/fr/man1 4 /usr/share/man/fr/man3 32 /usr/share/man/fr/man5 248 /usr/share/man/fr 112 /usr/share/man/ja/man8 60 /usr/share/man/ja/man1 12 /usr/share/man/ja/man5 184 /usr/share/man/ja 20 /usr/share/man/ko/man8 20 /usr/share/man/ko 56 /usr/share/man/pl/man1 88 /usr/share/man/pl/man8 4 /usr/share/man/pl/man3 4 /usr/share/man/pl/man5 152 /usr/share/man/pl 164 /usr/share/man/ru/man8 68 /usr/share/man/ru/man1 4 /usr/share/man/ru/man3 24 /usr/share/man/ru/man5 260 /usr/share/man/ru 12 /usr/share/man/sk/man8 12 /usr/share/man/sk 4 /usr/share/man/cs/man1 8 /usr/share/man/cs/man5 24 /usr/share/man/cs/man8 36 /usr/share/man/cs 8 /usr/share/man/da/man1 4 /usr/share/man/da/man5 12 /usr/share/man/da/man8 24 /usr/share/man/da 56 /usr/share/man/de/man1 4 /usr/share/man/de/man3 24 /usr/share/man/de/man5 136 /usr/share/man/de/man8 220 /usr/share/man/de 12 /usr/share/man/hu/man1 4 /usr/share/man/hu/man8 16 /usr/share/man/hu 20 /usr/share/man/id/man8 40 /usr/share/man/id/man1 4 /usr/share/man/id/man5 64 /usr/share/man/id 44 /usr/share/man/it/man1 4 /usr/share/man/it/man3 20 /usr/share/man/it/man5 108 /usr/share/man/it/man8 176 /usr/share/man/it 4 /usr/share/man/pt_BR/man1 4 /usr/share/man/pt_BR/man5 12 /usr/share/man/pt_BR/man8 20 /usr/share/man/pt_BR 12 /usr/share/man/sv/man1 4 /usr/share/man/sv/man3 4 /usr/share/man/sv/man5 40 /usr/share/man/sv/man8 60 /usr/share/man/sv 4 /usr/share/man/tr/man1 4 /usr/share/man/tr/man5 28 /usr/share/man/tr/man8 36 /usr/share/man/tr 16 /usr/share/man/zh_CN/man1 4 /usr/share/man/zh_CN/man3 16 /usr/share/man/zh_CN/man5 96 /usr/share/man/zh_CN/man8 132 /usr/share/man/zh_CN 4 /usr/share/man/zh_TW/man1 32 /usr/share/man/zh_TW/man8 36 /usr/share/man/zh_TW 28 /usr/share/man/es/man1 4 /usr/share/man/es/man5 8 /usr/share/man/es/man8 40 /usr/share/man/es 40 /usr/share/man/nl/man1 4 /usr/share/man/nl/man5 12 /usr/share/man/nl/man8 56 /usr/share/man/nl 16 /usr/share/man/pt/man8 16 /usr/share/man/pt 16608 /usr/share/man 3300 /usr/share/i18n/charmaps 6400 /usr/share/i18n/locales 9700 /usr/share/i18n 0 /usr/share/X11 8 /usr/share/aclocal 32 /usr/share/applications 0 /usr/share/augeas/lenses 0 /usr/share/augeas 18828 /usr/share/backgrounds 0 /usr/share/desktop-directories 0 /usr/share/dict 0 /usr/share/empty 0 /usr/share/games 0 /usr/share/ghostscript/conf.d 0 /usr/share/ghostscript 0 /usr/share/gnome 4 /usr/share/icons/Bluecurve/16x16/apps 4 /usr/share/icons/Bluecurve/16x16 4 /usr/share/icons/Bluecurve/22x22/apps 4 /usr/share/icons/Bluecurve/22x22 4 /usr/share/icons/Bluecurve/24x24/apps 4 /usr/share/icons/Bluecurve/24x24 8 /usr/share/icons/Bluecurve/256x256/apps 8 /usr/share/icons/Bluecurve/256x256 4 /usr/share/icons/Bluecurve/32x32/apps 4 /usr/share/icons/Bluecurve/32x32 4 /usr/share/icons/Bluecurve/36x36/apps 4 /usr/share/icons/Bluecurve/36x36 4 /usr/share/icons/Bluecurve/48x48/apps 4 /usr/share/icons/Bluecurve/48x48 4 /usr/share/icons/Bluecurve/96x96/apps 4 /usr/share/icons/Bluecurve/96x96 36 /usr/share/icons/Bluecurve 4 /usr/share/icons/hicolor/16x16/apps 4 /usr/share/icons/hicolor/16x16 4 /usr/share/icons/hicolor/22x22/apps 4 /usr/share/icons/hicolor/22x22 4 /usr/share/icons/hicolor/24x24/apps 4 /usr/share/icons/hicolor/24x24 8 /usr/share/icons/hicolor/256x256/apps 8 /usr/share/icons/hicolor/256x256 4 /usr/share/icons/hicolor/32x32/apps 4 /usr/share/icons/hicolor/32x32 4 /usr/share/icons/hicolor/36x36/apps 4 /usr/share/icons/hicolor/36x36 12 /usr/share/icons/hicolor/48x48/apps 12 /usr/share/icons/hicolor/48x48 4 /usr/share/icons/hicolor/96x96/apps 4 /usr/share/icons/hicolor/96x96 12 /usr/share/icons/hicolor/scalable/apps 12 /usr/share/icons/hicolor/scalable 56 /usr/share/icons/hicolor 0 /usr/share/icons/oxygen/16x16/places 0 /usr/share/icons/oxygen/16x16 0 /usr/share/icons/oxygen/22x22/places 0 /usr/share/icons/oxygen/22x22 0 /usr/share/icons/oxygen/24x24/places 0 /usr/share/icons/oxygen/24x24 0 /usr/share/icons/oxygen/256x256/places 0 /usr/share/icons/oxygen/256x256 0 /usr/share/icons/oxygen/32x32/places 0 /usr/share/icons/oxygen/32x32 0 /usr/share/icons/oxygen/36x36/places 0 /usr/share/icons/oxygen/36x36 0 /usr/share/icons/oxygen/48x48/places 0 /usr/share/icons/oxygen/48x48 0 /usr/share/icons/oxygen/96x96/places 0 /usr/share/icons/oxygen/96x96 0 /usr/share/icons/oxygen 92 /usr/share/icons 0 /usr/share/idl 0 /usr/share/mime-info 2848 /usr/share/misc 0 /usr/share/omf 44 /usr/share/pixmaps 0 /usr/share/sounds 0 /usr/share/themes 0 /usr/share/xsessions 92 /usr/share/gcc-4.8.2/python/libstdcxx/v6 100 /usr/share/gcc-4.8.2/python/libstdcxx 100 /usr/share/gcc-4.8.2/python 100 /usr/share/gcc-4.8.2 8 /usr/share/gdb/auto-load/usr/lib64 8 /usr/share/gdb/auto-load/usr 8 /usr/share/gdb/auto-load 8 /usr/share/gdb 84 /usr/share/awk 4 /usr/share/p11-kit/modules 4 /usr/share/p11-kit 0 /usr/share/pki/ca-trust-legacy 0 /usr/share/pki/ca-trust-source/anchors 0 /usr/share/pki/ca-trust-source/blacklist 944 /usr/share/pki/ca-trust-source 944 /usr/share/pki 4 /usr/share/centos-release 0 /usr/share/lua/5.1 0 /usr/share/lua 9192 /usr/share/cracklib 652 /usr/share/bash-completion/completions 652 /usr/share/bash-completion 4 /usr/share/glib-2.0/schemas 4 /usr/share/glib-2.0 2148 /usr/share/mime/packages 1748 /usr/share/mime/application 28 /usr/share/mime/message 468 /usr/share/mime/text 4 /usr/share/mime/x-epoc 40 /usr/share/mime/multipart 356 /usr/share/mime/image 216 /usr/share/mime/audio 28 /usr/share/mime/inode 76 /usr/share/mime/x-content 116 /usr/share/mime/video 8 /usr/share/mime/model 5532 /usr/share/mime 12 /usr/share/pkgconfig 0 /usr/share/file 20 /usr/share/groff/1.22.2/font/devascii 256 /usr/share/groff/1.22.2/font/devhtml 20 /usr/share/groff/1.22.2/font/devlatin1 52 /usr/share/groff/1.22.2/font/devps/generate 656 /usr/share/groff/1.22.2/font/devps 116 /usr/share/groff/1.22.2/font/devutf8 1068 /usr/share/groff/1.22.2/font 64 /usr/share/groff/1.22.2/tmac/mdoc 784 /usr/share/groff/1.22.2/tmac 1856 /usr/share/groff/1.22.2 1856 /usr/share/groff 16 /usr/share/systemtap/tapset 16 /usr/share/systemtap 0 /usr/share/gettext/its 52 /usr/share/gettext/po 24 /usr/share/gettext/styles 168 /usr/share/gettext 32 /usr/share/gettext-0.19.8/its 32 /usr/share/gettext-0.19.8 236 /usr/share/mysql/charsets 48 /usr/share/mysql/czech 48 /usr/share/mysql/danish 48 /usr/share/mysql/dutch 48 /usr/share/mysql/english 48 /usr/share/mysql/estonian 48 /usr/share/mysql/french 56 /usr/share/mysql/german 56 /usr/share/mysql/greek 48 /usr/share/mysql/hungarian 48 /usr/share/mysql/italian 52 /usr/share/mysql/japanese 52 /usr/share/mysql/korean 48 /usr/share/mysql/norwegian 48 /usr/share/mysql/norwegian-ny 48 /usr/share/mysql/polish 52 /usr/share/mysql/portuguese 48 /usr/share/mysql/romanian 64 /usr/share/mysql/russian 52 /usr/share/mysql/serbian 48 /usr/share/mysql/slovak 48 /usr/share/mysql/spanish 48 /usr/share/mysql/swedish 56 /usr/share/mysql/ukrainian 1400 /usr/share/mysql 4 /usr/share/gnome-background-properties 0 /usr/share/kde4/apps/desktoptheme/CentOS7/widgets 4 /usr/share/kde4/apps/desktoptheme/CentOS7 4 /usr/share/kde4/apps/desktoptheme 696 /usr/share/kde4/apps/kdm/themes/CentOS7 696 /usr/share/kde4/apps/kdm/themes 696 /usr/share/kde4/apps/kdm 1584 /usr/share/kde4/apps/ksplash/Themes/CentOS7/2560x1600 1640 /usr/share/kde4/apps/ksplash/Themes/CentOS7 1640 /usr/share/kde4/apps/ksplash/Themes 1640 /usr/share/kde4/apps/ksplash 2340 /usr/share/kde4/apps 2340 /usr/share/kde4 0 /usr/share/wallpapers/CentOS7/contents/images 0 /usr/share/wallpapers/CentOS7/contents 4 /usr/share/wallpapers/CentOS7 4 /usr/share/wallpapers 8 /usr/share/anaconda/boot 448 /usr/share/anaconda/pixmaps/rnotes/en 448 /usr/share/anaconda/pixmaps/rnotes 620 /usr/share/anaconda/pixmaps 628 /usr/share/anaconda 36 /usr/share/centos-logos 72 /usr/share/firstboot/themes/fedora-verne 72 /usr/share/firstboot/themes 72 /usr/share/firstboot 316 /usr/share/plymouth/themes/charge 4 /usr/share/plymouth/themes/details 4 /usr/share/plymouth/themes/text 324 /usr/share/plymouth/themes 332 /usr/share/plymouth 272 /usr/share/alsa/cards 72 /usr/share/alsa/pcm 8 /usr/share/alsa/topology/broadwell 76 /usr/share/alsa/topology/bxtrt298 68 /usr/share/alsa/topology/sklrt286 152 /usr/share/alsa/topology 0 /usr/share/alsa/ucm 792 /usr/share/alsa/firmware/usx2yloader 792 /usr/share/alsa/firmware 1300 /usr/share/alsa 3488 /usr/share/GeoIP 0 /usr/share/dbus-1/services 48 /usr/share/dbus-1/system-services 0 /usr/share/dbus-1/interfaces 60 /usr/share/dbus-1 316 /usr/share/polkit-1/actions 0 /usr/share/polkit-1/rules.d 316 /usr/share/polkit-1 8 /usr/share/systemd 228 /usr/share/zsh/site-functions 228 /usr/share/zsh 8 /usr/share/os-prober 24 /usr/share/selinux/packages 44 /usr/share/selinux/targeted 20 /usr/share/selinux/devel/include/services 20 /usr/share/selinux/devel/include 20 /usr/share/selinux/devel 88 /usr/share/selinux 7460 /usr/share/hwdata 8 /usr/share/libdrm 312 /usr/share/gnupg 908 /usr/share/yum-cli 0 /usr/share/yum-plugins 4 /usr/share/tuned/grub2 4 /usr/share/tuned 0 /usr/share/firewalld 0 /usr/share/kdump 440 /usr/share/authconfig 0 /usr/share/microcode_ctl/intel-ucode 2632 /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode 2640 /usr/share/microcode_ctl/ucode_with_caveats/intel 32 /usr/share/microcode_ctl/ucode_with_caveats/intel-06-4f-01/intel-ucode 40 /usr/share/microcode_ctl/ucode_with_caveats/intel-06-4f-01 2680 /usr/share/microcode_ctl/ucode_with_caveats 2680 /usr/share/microcode_ctl 12 /usr/share/containers/oci/hooks.d 12 /usr/share/containers/oci 28 /usr/share/containers 0 /usr/share/oci-umount/oci-umount.d 4 /usr/share/oci-umount 16 /usr/share/container-storage-setup 0 /usr/share/rhel/secrets 0 /usr/share/rhel 0 /usr/share/setools-3.3 36 /usr/share/fish/vendor_completions.d 36 /usr/share/fish 4 /usr/share/vim/vimfiles/doc 4 /usr/share/vim/vimfiles/ftdetect 4 /usr/share/vim/vimfiles/syntax 12 /usr/share/vim/vimfiles 12 /usr/share/vim 48 /usr/share/perl5/vendor_perl/HTTP 24 /usr/share/perl5/vendor_perl/Pod/Text 60 /usr/share/perl5/vendor_perl/Pod/Perldoc 412 /usr/share/perl5/vendor_perl/Pod/Simple 768 /usr/share/perl5/vendor_perl/Pod 12 /usr/share/perl5/vendor_perl/Text 8 /usr/share/perl5/vendor_perl/Exporter 12 /usr/share/perl5/vendor_perl/Time 4 /usr/share/perl5/vendor_perl/Carp 116 /usr/share/perl5/vendor_perl/File 80 /usr/share/perl5/vendor_perl/Getopt 4 /usr/share/perl5/vendor_perl/Error 8 /usr/share/perl5/vendor_perl/Git 1208 /usr/share/perl5/vendor_perl 60 /usr/share/perl5/Pod 0 /usr/share/perl5/App 0 /usr/share/perl5/Archive 32 /usr/share/perl5/Attribute 164 /usr/share/perl5/B 24 /usr/share/perl5/Class 0 /usr/share/perl5/Compress 4 /usr/share/perl5/Config 20 /usr/share/perl5/DBM_Filter 8 /usr/share/perl5/Devel 4 /usr/share/perl5/overload 40 /usr/share/perl5/Encode 68 /usr/share/perl5/ExtUtils/Constant 112 /usr/share/perl5/ExtUtils 96 /usr/share/perl5/File 24 /usr/share/perl5/Filter 12 /usr/share/perl5/Getopt 0 /usr/share/perl5/HTTP 40 /usr/share/perl5/I18N/LangTags 76 /usr/share/perl5/I18N 0 /usr/share/perl5/IO/Compress 0 /usr/share/perl5/IO/Uncompress 0 /usr/share/perl5/IO 20 /usr/share/perl5/IPC 0 /usr/share/perl5/JSON 0 /usr/share/perl5/Locale 0 /usr/share/perl5/Log/Message 0 /usr/share/perl5/Log 4 /usr/share/perl5/Math/BigFloat 96 /usr/share/perl5/Math/BigInt 516 /usr/share/perl5/Math 36 /usr/share/perl5/Memoize 4 /usr/share/perl5/Module/CoreList 12 /usr/share/perl5/Module 20 /usr/share/perl5/Net/FTP 288 /usr/share/perl5/Net 0 /usr/share/perl5/Perl 4 /usr/share/perl5/PerlIO/via 4 /usr/share/perl5/PerlIO 4 /usr/share/perl5/Search 80 /usr/share/perl5/Term 0 /usr/share/perl5/Test 84 /usr/share/perl5/Text 8 /usr/share/perl5/Thread 136 /usr/share/perl5/Tie 12 /usr/share/perl5/Time 404 /usr/share/perl5/Unicode/Collate/CJK 1036 /usr/share/perl5/Unicode/Collate/Locale 3120 /usr/share/perl5/Unicode/Collate 3248 /usr/share/perl5/Unicode 16 /usr/share/perl5/User 0 /usr/share/perl5/Version 8 /usr/share/perl5/encoding 6852 /usr/share/perl5/pod 864 /usr/share/perl5/unicore/To 4 /usr/share/perl5/unicore/lib/AHex 60 /usr/share/perl5/unicore/lib/Age 8 /usr/share/perl5/unicore/lib/Alpha 76 /usr/share/perl5/unicore/lib/Bc 4 /usr/share/perl5/unicore/lib/BidiC 4 /usr/share/perl5/unicore/lib/BidiM 864 /usr/share/perl5/unicore/lib/Blk 4 /usr/share/perl5/unicore/lib/CE 4 /usr/share/perl5/unicore/lib/CI 8 /usr/share/perl5/unicore/lib/CWCF 4 /usr/share/perl5/unicore/lib/CWCM 8 /usr/share/perl5/unicore/lib/CWKCF 8 /usr/share/perl5/unicore/lib/CWL 8 /usr/share/perl5/unicore/lib/CWT 8 /usr/share/perl5/unicore/lib/CWU 4 /usr/share/perl5/unicore/lib/Cased 224 /usr/share/perl5/unicore/lib/Ccc 4 /usr/share/perl5/unicore/lib/CompEx 4 /usr/share/perl5/unicore/lib/DI 4 /usr/share/perl5/unicore/lib/Dash 4 /usr/share/perl5/unicore/lib/Dep 4 /usr/share/perl5/unicore/lib/Dia 68 /usr/share/perl5/unicore/lib/Dt 24 /usr/share/perl5/unicore/lib/Ea 4 /usr/share/perl5/unicore/lib/Ext 16 /usr/share/perl5/unicore/lib/GCB 172 /usr/share/perl5/unicore/lib/Gc 8 /usr/share/perl5/unicore/lib/GrBase 4 /usr/share/perl5/unicore/lib/Hex 4 /usr/share/perl5/unicore/lib/Hst 4 /usr/share/perl5/unicore/lib/Hyphen 8 /usr/share/perl5/unicore/lib/IDC 8 /usr/share/perl5/unicore/lib/IDS 4 /usr/share/perl5/unicore/lib/IDSB 4 /usr/share/perl5/unicore/lib/IDST 4 /usr/share/perl5/unicore/lib/Ideo 84 /usr/share/perl5/unicore/lib/In 236 /usr/share/perl5/unicore/lib/Jg 4 /usr/share/perl5/unicore/lib/JoinC 20 /usr/share/perl5/unicore/lib/Jt 4 /usr/share/perl5/unicore/lib/LOE 172 /usr/share/perl5/unicore/lib/Lb 8 /usr/share/perl5/unicore/lib/Lower 4 /usr/share/perl5/unicore/lib/Math 4 /usr/share/perl5/unicore/lib/NChar 4 /usr/share/perl5/unicore/lib/NFCQC 8 /usr/share/perl5/unicore/lib/NFDQC 12 /usr/share/perl5/unicore/lib/NFKCQC 4 /usr/share/perl5/unicore/lib/NFKDQC 8 /usr/share/perl5/unicore/lib/Nt 468 /usr/share/perl5/unicore/lib/Nv 4 /usr/share/perl5/unicore/lib/PatSyn 4 /usr/share/perl5/unicore/lib/PatWS 148 /usr/share/perl5/unicore/lib/Perl 4 /usr/share/perl5/unicore/lib/QMark 4 /usr/share/perl5/unicore/lib/Radical 64 /usr/share/perl5/unicore/lib/SB 4 /usr/share/perl5/unicore/lib/SD 4 /usr/share/perl5/unicore/lib/STerm 120 /usr/share/perl5/unicore/lib/Sc 424 /usr/share/perl5/unicore/lib/Scx 4 /usr/share/perl5/unicore/lib/Space 4 /usr/share/perl5/unicore/lib/Term 4 /usr/share/perl5/unicore/lib/UIdeo 8 /usr/share/perl5/unicore/lib/Upper 4 /usr/share/perl5/unicore/lib/VS 44 /usr/share/perl5/unicore/lib/WB 8 /usr/share/perl5/unicore/lib/XIDC 8 /usr/share/perl5/unicore/lib/XIDS 3560 /usr/share/perl5/unicore/lib 5632 /usr/share/perl5/unicore 4 /usr/share/perl5/warnings 19900 /usr/share/perl5 24 /usr/share/git-core/contrib/completion 48 /usr/share/git-core/contrib/hooks 72 /usr/share/git-core/contrib 0 /usr/share/git-core/templates/branches 40 /usr/share/git-core/templates/hooks 4 /usr/share/git-core/templates/info 48 /usr/share/git-core/templates 120 /usr/share/git-core 4 /usr/share/gems/specifications/default 28 /usr/share/gems/specifications 24 /usr/share/gems/gems/bigdecimal-1.2.0/lib/bigdecimal 24 /usr/share/gems/gems/bigdecimal-1.2.0/lib 24 /usr/share/gems/gems/bigdecimal-1.2.0 52 /usr/share/gems/gems/json-1.7.7/lib/json/add 80 /usr/share/gems/gems/json-1.7.7/lib/json 84 /usr/share/gems/gems/json-1.7.7/lib 84 /usr/share/gems/gems/json-1.7.7 4 /usr/share/gems/gems/io-console-0.4.2/lib/io/console 4 /usr/share/gems/gems/io-console-0.4.2/lib/io 4 /usr/share/gems/gems/io-console-0.4.2/lib 4 /usr/share/gems/gems/io-console-0.4.2 8 /usr/share/gems/gems/rdoc-4.0.0/bin 8 /usr/share/gems/gems/rdoc-4.0.0/lib/rdoc/context 108 /usr/share/gems/gems/rdoc-4.0.0/lib/rdoc/generator/template/darkfish/images 104 /usr/share/gems/gems/rdoc-4.0.0/lib/rdoc/generator/template/darkfish/js 316 /usr/share/gems/gems/rdoc-4.0.0/lib/rdoc/generator/template/darkfish 12 /usr/share/gems/gems/rdoc-4.0.0/lib/rdoc/generator/template/json_index/js 12 /usr/share/gems/gems/rdoc-4.0.0/lib/rdoc/generator/template/json_index 328 /usr/share/gems/gems/rdoc-4.0.0/lib/rdoc/generator/template 364 /usr/share/gems/gems/rdoc-4.0.0/lib/rdoc/generator 68 /usr/share/gems/gems/rdoc-4.0.0/lib/rdoc/markdown 212 /usr/share/gems/gems/rdoc-4.0.0/lib/rdoc/markup 112 /usr/share/gems/gems/rdoc-4.0.0/lib/rdoc/parser 60 /usr/share/gems/gems/rdoc-4.0.0/lib/rdoc/rd 52 /usr/share/gems/gems/rdoc-4.0.0/lib/rdoc/ri 12 /usr/share/gems/gems/rdoc-4.0.0/lib/rdoc/stats 1676 /usr/share/gems/gems/rdoc-4.0.0/lib/rdoc 1684 /usr/share/gems/gems/rdoc-4.0.0/lib 1692 /usr/share/gems/gems/rdoc-4.0.0 8 /usr/share/gems/gems/psych-2.0.0/lib/psych/handlers 16 /usr/share/gems/gems/psych-2.0.0/lib/psych/json 28 /usr/share/gems/gems/psych-2.0.0/lib/psych/nodes 44 /usr/share/gems/gems/psych-2.0.0/lib/psych/visitors 176 /usr/share/gems/gems/psych-2.0.0/lib/psych 188 /usr/share/gems/gems/psych-2.0.0/lib 188 /usr/share/gems/gems/psych-2.0.0 1992 /usr/share/gems/gems 0 /usr/share/gems/build_info 0 /usr/share/gems/cache 0 /usr/share/gems/doc 2020 /usr/share/gems 40 /usr/share/ruby/webrick/httpauth 40 /usr/share/ruby/webrick/httpservlet 244 /usr/share/ruby/webrick 48 /usr/share/ruby/shell 4 /usr/share/ruby/cgi/session 104 /usr/share/ruby/cgi 100 /usr/share/ruby/xmlrpc 12 /usr/share/ruby/yaml 4 /usr/share/ruby/date 12 /usr/share/ruby/digest 48 /usr/share/ruby/dl 28 /usr/share/ruby/irb/cmd 40 /usr/share/ruby/irb/ext 12 /usr/share/ruby/irb/lc/ja 20 /usr/share/ruby/irb/lc 240 /usr/share/ruby/irb 108 /usr/share/ruby/drb 48 /usr/share/ruby/fiddle 32 /usr/share/ruby/matrix 72 /usr/share/ruby/net/http 372 /usr/share/ruby/net 52 /usr/share/ruby/openssl 24 /usr/share/ruby/optparse 0 /usr/share/ruby/racc/rdoc 20 /usr/share/ruby/racc 4 /usr/share/ruby/rbconfig 108 /usr/share/ruby/uri 20 /usr/share/ruby/rexml/dtd 16 /usr/share/ruby/rexml/formatters 8 /usr/share/ruby/rexml/light 76 /usr/share/ruby/rexml/parsers 28 /usr/share/ruby/rexml/validation 388 /usr/share/ruby/rexml 32 /usr/share/ruby/rinda 20 /usr/share/ruby/ripper 8 /usr/share/ruby/rss/content 12 /usr/share/ruby/rss/dublincore 128 /usr/share/ruby/rss/maker 340 /usr/share/ruby/rss 0 /usr/share/ruby/vendor_ruby 8 /usr/share/ruby/syslog 24 /usr/share/ruby/test/unit 48 /usr/share/ruby/test 3516 /usr/share/ruby 4 /usr/share/rubygems/rbconfig 172 /usr/share/rubygems/rubygems/commands 12 /usr/share/rubygems/rubygems/core_ext 4 /usr/share/rubygems/rubygems/defaults 20 /usr/share/rubygems/rubygems/ext 4 /usr/share/rubygems/rubygems/package/tar_reader 36 /usr/share/rubygems/rubygems/package 20 /usr/share/rubygems/rubygems/security 0 /usr/share/rubygems/rubygems/ssl_certs 788 /usr/share/rubygems/rubygems 824 /usr/share/rubygems 264568 /usr/share 0 /usr/etc 0 /usr/games 36 /usr/include/python2.7 44 /usr/include/python3.6m 80 /usr/include 24 /usr/libexec/getconf 16 /usr/libexec/awk 32 /usr/libexec/p11-kit 8 /usr/libexec/coreutils 8 /usr/libexec/grubby 4 /usr/libexec/openldap 12 /usr/libexec/selinux/hll 24 /usr/libexec/selinux 12 /usr/libexec/utempter 60 /usr/libexec/dbus-1 28 /usr/libexec/initscripts/legacy-actions/auditd 28 /usr/libexec/initscripts/legacy-actions 44 /usr/libexec/initscripts 16 /usr/libexec/linux-boot-probes/mounted 20 /usr/libexec/linux-boot-probes 4 /usr/libexec/os-probes/init 8 /usr/libexec/os-probes/mounted/efi 60 /usr/libexec/os-probes/mounted 72 /usr/libexec/os-probes 1004 /usr/libexec/openssh 24 /usr/libexec/plymouth 8 /usr/libexec/tuned 8356 /usr/libexec/postfix 24 /usr/libexec/microcode_ctl 36 /usr/libexec/man-db 544 /usr/libexec/sudo 3340 /usr/libexec/oci/hooks.d 3340 /usr/libexec/oci 9972 /usr/libexec/docker 72 /usr/libexec/git-core/mergetools 8008 /usr/libexec/git-core 33232 /usr/libexec 3880 /usr/local/bin 0 /usr/local/etc 0 /usr/local/games 0 /usr/local/include 20 /usr/local/lib/python3.6/site-packages/wheel/cli/__pycache__ 44 /usr/local/lib/python3.6/site-packages/wheel/cli 48 /usr/local/lib/python3.6/site-packages/wheel/__pycache__ 148 /usr/local/lib/python3.6/site-packages/wheel 28 /usr/local/lib/python3.6/site-packages/wheel-0.33.6.dist-info 12 /usr/local/lib/python3.6/site-packages/ifconfigparser/__pycache__ 28 /usr/local/lib/python3.6/site-packages/ifconfigparser 20 /usr/local/lib/python3.6/site-packages/ifconfig_parser-0.0.1.dist-info 76 /usr/local/lib/python3.6/site-packages/pip/_internal/cli/__pycache__ 160 /usr/local/lib/python3.6/site-packages/pip/_internal/cli 104 /usr/local/lib/python3.6/site-packages/pip/_internal/commands/__pycache__ 212 /usr/local/lib/python3.6/site-packages/pip/_internal/commands 8 /usr/local/lib/python3.6/site-packages/pip/_internal/distributions/source/__pycache__ 12 /usr/local/lib/python3.6/site-packages/pip/_internal/distributions/source 16 /usr/local/lib/python3.6/site-packages/pip/_internal/distributions/__pycache__ 44 /usr/local/lib/python3.6/site-packages/pip/_internal/distributions 36 /usr/local/lib/python3.6/site-packages/pip/_internal/models/__pycache__ 72 /usr/local/lib/python3.6/site-packages/pip/_internal/models 32 /usr/local/lib/python3.6/site-packages/pip/_internal/network/__pycache__ 72 /usr/local/lib/python3.6/site-packages/pip/_internal/network 28 /usr/local/lib/python3.6/site-packages/pip/_internal/operations/__pycache__ 68 /usr/local/lib/python3.6/site-packages/pip/_internal/operations 84 /usr/local/lib/python3.6/site-packages/pip/_internal/req/__pycache__ 192 /usr/local/lib/python3.6/site-packages/pip/_internal/req 152 /usr/local/lib/python3.6/site-packages/pip/_internal/utils/__pycache__ 332 /usr/local/lib/python3.6/site-packages/pip/_internal/utils 60 /usr/local/lib/python3.6/site-packages/pip/_internal/vcs/__pycache__ 132 /usr/local/lib/python3.6/site-packages/pip/_internal/vcs 180 /usr/local/lib/python3.6/site-packages/pip/_internal/__pycache__ 1708 /usr/local/lib/python3.6/site-packages/pip/_internal 12 /usr/local/lib/python3.6/site-packages/pip/_vendor/cachecontrol/caches/__pycache__ 28 /usr/local/lib/python3.6/site-packages/pip/_vendor/cachecontrol/caches 56 /usr/local/lib/python3.6/site-packages/pip/_vendor/cachecontrol/__pycache__ 144 /usr/local/lib/python3.6/site-packages/pip/_vendor/cachecontrol 12 /usr/local/lib/python3.6/site-packages/pip/_vendor/certifi/__pycache__ 300 /usr/local/lib/python3.6/site-packages/pip/_vendor/certifi 8 /usr/local/lib/python3.6/site-packages/pip/_vendor/chardet/cli/__pycache__ 16 /usr/local/lib/python3.6/site-packages/pip/_vendor/chardet/cli 580 /usr/local/lib/python3.6/site-packages/pip/_vendor/chardet/__pycache__ 1036 /usr/local/lib/python3.6/site-packages/pip/_vendor/chardet 32 /usr/local/lib/python3.6/site-packages/pip/_vendor/colorama/__pycache__ 72 /usr/local/lib/python3.6/site-packages/pip/_vendor/colorama 112 /usr/local/lib/python3.6/site-packages/pip/_vendor/distlib/_backport/__pycache__ 272 /usr/local/lib/python3.6/site-packages/pip/_vendor/distlib/_backport 316 /usr/local/lib/python3.6/site-packages/pip/_vendor/distlib/__pycache__ 1368 /usr/local/lib/python3.6/site-packages/pip/_vendor/distlib 16 /usr/local/lib/python3.6/site-packages/pip/_vendor/html5lib/_trie/__pycache__ 32 /usr/local/lib/python3.6/site-packages/pip/_vendor/html5lib/_trie 48 /usr/local/lib/python3.6/site-packages/pip/_vendor/html5lib/filters/__pycache__ 108 /usr/local/lib/python3.6/site-packages/pip/_vendor/html5lib/filters 12 /usr/local/lib/python3.6/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__ 24 /usr/local/lib/python3.6/site-packages/pip/_vendor/html5lib/treeadapters 52 /usr/local/lib/python3.6/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__ 116 /usr/local/lib/python3.6/site-packages/pip/_vendor/html5lib/treebuilders 32 /usr/local/lib/python3.6/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__ 72 /usr/local/lib/python3.6/site-packages/pip/_vendor/html5lib/treewalkers 272 /usr/local/lib/python3.6/site-packages/pip/_vendor/html5lib/__pycache__ 980 /usr/local/lib/python3.6/site-packages/pip/_vendor/html5lib 304 /usr/local/lib/python3.6/site-packages/pip/_vendor/idna/__pycache__ 572 /usr/local/lib/python3.6/site-packages/pip/_vendor/idna 40 /usr/local/lib/python3.6/site-packages/pip/_vendor/msgpack/__pycache__ 92 /usr/local/lib/python3.6/site-packages/pip/_vendor/msgpack 84 /usr/local/lib/python3.6/site-packages/pip/_vendor/packaging/__pycache__ 180 /usr/local/lib/python3.6/site-packages/pip/_vendor/packaging 64 /usr/local/lib/python3.6/site-packages/pip/_vendor/pep517/__pycache__ 128 /usr/local/lib/python3.6/site-packages/pip/_vendor/pep517 104 /usr/local/lib/python3.6/site-packages/pip/_vendor/pkg_resources/__pycache__ 216 /usr/local/lib/python3.6/site-packages/pip/_vendor/pkg_resources 20 /usr/local/lib/python3.6/site-packages/pip/_vendor/progress/__pycache__ 40 /usr/local/lib/python3.6/site-packages/pip/_vendor/progress 32 /usr/local/lib/python3.6/site-packages/pip/_vendor/pytoml/__pycache__ 64 /usr/local/lib/python3.6/site-packages/pip/_vendor/pytoml 188 /usr/local/lib/python3.6/site-packages/pip/_vendor/requests/__pycache__ 404 /usr/local/lib/python3.6/site-packages/pip/_vendor/requests 24 /usr/local/lib/python3.6/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__ 56 /usr/local/lib/python3.6/site-packages/pip/_vendor/urllib3/contrib/_securetransport 68 /usr/local/lib/python3.6/site-packages/pip/_vendor/urllib3/contrib/__pycache__ 208 /usr/local/lib/python3.6/site-packages/pip/_vendor/urllib3/contrib 8 /usr/local/lib/python3.6/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__ 12 /usr/local/lib/python3.6/site-packages/pip/_vendor/urllib3/packages/backports 8 /usr/local/lib/python3.6/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__ 20 /usr/local/lib/python3.6/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname 32 /usr/local/lib/python3.6/site-packages/pip/_vendor/urllib3/packages/__pycache__ 100 /usr/local/lib/python3.6/site-packages/pip/_vendor/urllib3/packages 80 /usr/local/lib/python3.6/site-packages/pip/_vendor/urllib3/util/__pycache__ 172 /usr/local/lib/python3.6/site-packages/pip/_vendor/urllib3/util 124 /usr/local/lib/python3.6/site-packages/pip/_vendor/urllib3/__pycache__ 752 /usr/local/lib/python3.6/site-packages/pip/_vendor/urllib3 32 /usr/local/lib/python3.6/site-packages/pip/_vendor/webencodings/__pycache__ 76 /usr/local/lib/python3.6/site-packages/pip/_vendor/webencodings 416 /usr/local/lib/python3.6/site-packages/pip/_vendor/__pycache__ 7324 /usr/local/lib/python3.6/site-packages/pip/_vendor 8 /usr/local/lib/python3.6/site-packages/pip/__pycache__ 9048 /usr/local/lib/python3.6/site-packages/pip 76 /usr/local/lib/python3.6/site-packages/pip-19.3.dist-info 9352 /usr/local/lib/python3.6/site-packages 9352 /usr/local/lib/python3.6 9352 /usr/local/lib 0 /usr/local/lib64 0 /usr/local/libexec 0 /usr/local/sbin 0 /usr/local/share/applications 0 /usr/local/share/info 0 /usr/local/share/man/man1 0 /usr/local/share/man/man1x 0 /usr/local/share/man/man2 0 /usr/local/share/man/man2x 0 /usr/local/share/man/man3 0 /usr/local/share/man/man3x 0 /usr/local/share/man/man4 0 /usr/local/share/man/man4x 0 /usr/local/share/man/man5 0 /usr/local/share/man/man5x 0 /usr/local/share/man/man6 0 /usr/local/share/man/man6x 0 /usr/local/share/man/man7 0 /usr/local/share/man/man7x 0 /usr/local/share/man/man8 0 /usr/local/share/man/man8x 0 /usr/local/share/man/man9 0 /usr/local/share/man/man9x 0 /usr/local/share/man/mann 0 /usr/local/share/man 0 /usr/local/share 0 /usr/local/src 13232 /usr/local 0 /usr/src/debug 0 /usr/src/kernels 0 /usr/src 1404272 /usr jc-1.17.3/tests/fixtures/centos-7.7/env.json000066400000000000000000000055641415226333200205140ustar00rootroot00000000000000[{"name": "XDG_SESSION_ID", "value": "17"}, {"name": "HOSTNAME", "value": "localhost.localdomain"}, {"name": "SELINUX_ROLE_REQUESTED", "value": ""}, {"name": "SHELL", "value": "/bin/bash"}, {"name": "TERM", "value": "xterm-256color"}, {"name": "HISTSIZE", "value": "1000"}, {"name": "SSH_CLIENT", "value": "192.168.71.1 58727 22"}, {"name": "SELINUX_USE_CURRENT_RANGE", "value": ""}, {"name": "SSH_TTY", "value": "/dev/pts/0"}, {"name": "USER", "value": "kbrazil"}, {"name": "LS_COLORS", "value": "rs=0:di=38;5;27:ln=38;5;51:mh=44;38;5;15:pi=40;38;5;11:so=38;5;13:do=38;5;5:bd=48;5;232;38;5;11:cd=48;5;232;38;5;3:or=48;5;232;38;5;9:mi=05;48;5;232;38;5;15:su=48;5;196;38;5;15:sg=48;5;11;38;5;16:ca=48;5;196;38;5;226:tw=48;5;10;38;5;16:ow=48;5;10;38;5;21:st=48;5;21;38;5;15:ex=38;5;34:*.tar=38;5;9:*.tgz=38;5;9:*.arc=38;5;9:*.arj=38;5;9:*.taz=38;5;9:*.lha=38;5;9:*.lz4=38;5;9:*.lzh=38;5;9:*.lzma=38;5;9:*.tlz=38;5;9:*.txz=38;5;9:*.tzo=38;5;9:*.t7z=38;5;9:*.zip=38;5;9:*.z=38;5;9:*.Z=38;5;9:*.dz=38;5;9:*.gz=38;5;9:*.lrz=38;5;9:*.lz=38;5;9:*.lzo=38;5;9:*.xz=38;5;9:*.bz2=38;5;9:*.bz=38;5;9:*.tbz=38;5;9:*.tbz2=38;5;9:*.tz=38;5;9:*.deb=38;5;9:*.rpm=38;5;9:*.jar=38;5;9:*.war=38;5;9:*.ear=38;5;9:*.sar=38;5;9:*.rar=38;5;9:*.alz=38;5;9:*.ace=38;5;9:*.zoo=38;5;9:*.cpio=38;5;9:*.7z=38;5;9:*.rz=38;5;9:*.cab=38;5;9:*.jpg=38;5;13:*.jpeg=38;5;13:*.gif=38;5;13:*.bmp=38;5;13:*.pbm=38;5;13:*.pgm=38;5;13:*.ppm=38;5;13:*.tga=38;5;13:*.xbm=38;5;13:*.xpm=38;5;13:*.tif=38;5;13:*.tiff=38;5;13:*.png=38;5;13:*.svg=38;5;13:*.svgz=38;5;13:*.mng=38;5;13:*.pcx=38;5;13:*.mov=38;5;13:*.mpg=38;5;13:*.mpeg=38;5;13:*.m2v=38;5;13:*.mkv=38;5;13:*.webm=38;5;13:*.ogm=38;5;13:*.mp4=38;5;13:*.m4v=38;5;13:*.mp4v=38;5;13:*.vob=38;5;13:*.qt=38;5;13:*.nuv=38;5;13:*.wmv=38;5;13:*.asf=38;5;13:*.rm=38;5;13:*.rmvb=38;5;13:*.flc=38;5;13:*.avi=38;5;13:*.fli=38;5;13:*.flv=38;5;13:*.gl=38;5;13:*.dl=38;5;13:*.xcf=38;5;13:*.xwd=38;5;13:*.yuv=38;5;13:*.cgm=38;5;13:*.emf=38;5;13:*.axv=38;5;13:*.anx=38;5;13:*.ogv=38;5;13:*.ogx=38;5;13:*.aac=38;5;45:*.au=38;5;45:*.flac=38;5;45:*.mid=38;5;45:*.midi=38;5;45:*.mka=38;5;45:*.mp3=38;5;45:*.mpc=38;5;45:*.ogg=38;5;45:*.ra=38;5;45:*.wav=38;5;45:*.axa=38;5;45:*.oga=38;5;45:*.spx=38;5;45:*.xspf=38;5;45:"}, {"name": "PATH", "value": "/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/home/kbrazil/.local/bin:/home/kbrazil/bin"}, {"name": "MAIL", "value": "/var/spool/mail/kbrazil"}, {"name": "PWD", "value": "/home/kbrazil/testfiles"}, {"name": "LANG", "value": "en_US.UTF-8"}, {"name": "SELINUX_LEVEL_REQUESTED", "value": ""}, {"name": "HISTCONTROL", "value": "ignoredups"}, {"name": "HOME", "value": "/home/kbrazil"}, {"name": "SHLVL", "value": "2"}, {"name": "LOGNAME", "value": "kbrazil"}, {"name": "SSH_CONNECTION", "value": "192.168.71.1 58727 192.168.71.137 22"}, {"name": "LESSOPEN", "value": "||/usr/bin/lesspipe.sh %s"}, {"name": "XDG_RUNTIME_DIR", "value": "/run/user/1000"}, {"name": "_", "value": "/usr/bin/env"}] jc-1.17.3/tests/fixtures/centos-7.7/env.out000066400000000000000000000044331415226333200203440ustar00rootroot00000000000000XDG_SESSION_ID=17 HOSTNAME=localhost.localdomain SELINUX_ROLE_REQUESTED= SHELL=/bin/bash TERM=xterm-256color HISTSIZE=1000 SSH_CLIENT=192.168.71.1 58727 22 SELINUX_USE_CURRENT_RANGE= SSH_TTY=/dev/pts/0 USER=kbrazil LS_COLORS=rs=0:di=38;5;27:ln=38;5;51:mh=44;38;5;15:pi=40;38;5;11:so=38;5;13:do=38;5;5:bd=48;5;232;38;5;11:cd=48;5;232;38;5;3:or=48;5;232;38;5;9:mi=05;48;5;232;38;5;15:su=48;5;196;38;5;15:sg=48;5;11;38;5;16:ca=48;5;196;38;5;226:tw=48;5;10;38;5;16:ow=48;5;10;38;5;21:st=48;5;21;38;5;15:ex=38;5;34:*.tar=38;5;9:*.tgz=38;5;9:*.arc=38;5;9:*.arj=38;5;9:*.taz=38;5;9:*.lha=38;5;9:*.lz4=38;5;9:*.lzh=38;5;9:*.lzma=38;5;9:*.tlz=38;5;9:*.txz=38;5;9:*.tzo=38;5;9:*.t7z=38;5;9:*.zip=38;5;9:*.z=38;5;9:*.Z=38;5;9:*.dz=38;5;9:*.gz=38;5;9:*.lrz=38;5;9:*.lz=38;5;9:*.lzo=38;5;9:*.xz=38;5;9:*.bz2=38;5;9:*.bz=38;5;9:*.tbz=38;5;9:*.tbz2=38;5;9:*.tz=38;5;9:*.deb=38;5;9:*.rpm=38;5;9:*.jar=38;5;9:*.war=38;5;9:*.ear=38;5;9:*.sar=38;5;9:*.rar=38;5;9:*.alz=38;5;9:*.ace=38;5;9:*.zoo=38;5;9:*.cpio=38;5;9:*.7z=38;5;9:*.rz=38;5;9:*.cab=38;5;9:*.jpg=38;5;13:*.jpeg=38;5;13:*.gif=38;5;13:*.bmp=38;5;13:*.pbm=38;5;13:*.pgm=38;5;13:*.ppm=38;5;13:*.tga=38;5;13:*.xbm=38;5;13:*.xpm=38;5;13:*.tif=38;5;13:*.tiff=38;5;13:*.png=38;5;13:*.svg=38;5;13:*.svgz=38;5;13:*.mng=38;5;13:*.pcx=38;5;13:*.mov=38;5;13:*.mpg=38;5;13:*.mpeg=38;5;13:*.m2v=38;5;13:*.mkv=38;5;13:*.webm=38;5;13:*.ogm=38;5;13:*.mp4=38;5;13:*.m4v=38;5;13:*.mp4v=38;5;13:*.vob=38;5;13:*.qt=38;5;13:*.nuv=38;5;13:*.wmv=38;5;13:*.asf=38;5;13:*.rm=38;5;13:*.rmvb=38;5;13:*.flc=38;5;13:*.avi=38;5;13:*.fli=38;5;13:*.flv=38;5;13:*.gl=38;5;13:*.dl=38;5;13:*.xcf=38;5;13:*.xwd=38;5;13:*.yuv=38;5;13:*.cgm=38;5;13:*.emf=38;5;13:*.axv=38;5;13:*.anx=38;5;13:*.ogv=38;5;13:*.ogx=38;5;13:*.aac=38;5;45:*.au=38;5;45:*.flac=38;5;45:*.mid=38;5;45:*.midi=38;5;45:*.mka=38;5;45:*.mp3=38;5;45:*.mpc=38;5;45:*.ogg=38;5;45:*.ra=38;5;45:*.wav=38;5;45:*.axa=38;5;45:*.oga=38;5;45:*.spx=38;5;45:*.xspf=38;5;45: PATH=/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/home/kbrazil/.local/bin:/home/kbrazil/bin MAIL=/var/spool/mail/kbrazil PWD=/home/kbrazil/testfiles LANG=en_US.UTF-8 SELINUX_LEVEL_REQUESTED= HISTCONTROL=ignoredups HOME=/home/kbrazil SHLVL=2 LOGNAME=kbrazil SSH_CONNECTION=192.168.71.1 58727 192.168.71.137 22 LESSOPEN=||/usr/bin/lesspipe.sh %s XDG_RUNTIME_DIR=/run/user/1000 _=/usr/bin/env jc-1.17.3/tests/fixtures/centos-7.7/file.json000066400000000000000000000027221415226333200206340ustar00rootroot00000000000000[{"filename": "bin", "type": "directory"}, {"filename": "digout", "type": "ASCII text"}, {"filename": "file with spaces in the name", "type": "empty"}, {"filename": "git", "type": "directory"}, {"filename": "id-centos.out", "type": "ASCII text"}, {"filename": "ifcfg.json", "type": "ASCII text, with very long lines"}, {"filename": "ifconfig.out", "type": "ASCII text"}, {"filename": "iptables-tests", "type": "directory"}, {"filename": "journaljson", "type": "ASCII text, with very long lines"}, {"filename": "jp", "type": "ELF 64-bit LSB executable, x86-64, version 1 (SYSV), statically linked, not stripped"}, {"filename": "jp_1.1.12_linux_x86_64.zip", "type": "Zip archive data, at least v2.0 to extract"}, {"filename": "lastb.out", "type": "ASCII text"}, {"filename": "lsblk-cols", "type": "UTF-8 Unicode text"}, {"filename": "psfile.txt", "type": "ASCII text, with very long lines"}, {"filename": "resizeterm.sh", "type": "Bourne-Again shell script, ASCII text executable"}, {"filename": "routeout", "type": "ASCII text"}, {"filename": "ss-aeep.out", "type": "ASCII text"}, {"filename": "ssout", "type": "ASCII text"}, {"filename": "systemctl.out", "type": "UTF-8 Unicode text"}, {"filename": "testfiles", "type": "directory"}, {"filename": "tmp", "type": "directory"}, {"filename": "top.out", "type": "ASCII text, with escape sequences"}, {"filename": "who-aH.out", "type": "ASCII text"}, {"filename": "who.out", "type": "ASCII text"}, {"filename": "whotext", "type": "ASCII text"}] jc-1.17.3/tests/fixtures/centos-7.7/file.out000066400000000000000000000023601415226333200204700ustar00rootroot00000000000000bin: directory digout: ASCII text file with spaces in the name: empty git: directory id-centos.out: ASCII text ifcfg.json: ASCII text, with very long lines ifconfig.out: ASCII text iptables-tests: directory journaljson: ASCII text, with very long lines jp: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), statically linked, not stripped jp_1.1.12_linux_x86_64.zip: Zip archive data, at least v2.0 to extract lastb.out: ASCII text lsblk-cols: UTF-8 Unicode text psfile.txt: ASCII text, with very long lines resizeterm.sh: Bourne-Again shell script, ASCII text executable routeout: ASCII text ss-aeep.out: ASCII text ssout: ASCII text systemctl.out: UTF-8 Unicode text testfiles: directory tmp: directory top.out: ASCII text, with escape sequences who-aH.out: ASCII text who.out: ASCII text whotext: ASCII text jc-1.17.3/tests/fixtures/centos-7.7/finger.json000066400000000000000000000006211415226333200211630ustar00rootroot00000000000000[{"login":"kbrazil","name":"kbrazil","tty":"tty1","idle":"1","login_time":"Apr 6 11:12","tty_writeable":true,"idle_minutes":1,"idle_hours":0,"idle_days":0,"total_idle_minutes":1},{"login":"kbrazil","name":"kbrazil","tty":"pts/0","idle":null,"login_time":"Apr 6 11:14","details":"(kbrazil-mac.attlocal.net)","tty_writeable":true,"idle_minutes":0,"idle_hours":0,"idle_days":0,"total_idle_minutes":0}] jc-1.17.3/tests/fixtures/centos-7.7/finger.out000066400000000000000000000003621415226333200210230ustar00rootroot00000000000000Login Name Tty Idle Login Time Office Office Phone Host kbrazil kbrazil tty1 1 Apr 6 11:12 kbrazil kbrazil pts/0 Apr 6 11:14 (kbrazil-mac.attlocal.net) jc-1.17.3/tests/fixtures/centos-7.7/free-h.json000066400000000000000000000002061415226333200210560ustar00rootroot00000000000000[{"type":"Mem","total":3,"used":217,"free":3,"shared":11,"buff_cache":267,"available":3},{"type":"Swap","total":2,"used":0,"free":2}] jc-1.17.3/tests/fixtures/centos-7.7/free-h.out000066400000000000000000000003141415226333200207140ustar00rootroot00000000000000 total used free shared buff/cache available Mem: 3.7G 217M 3.2G 11M 267M 3.2G Swap: 2.0G 0B 2.0G jc-1.17.3/tests/fixtures/centos-7.7/free.json000066400000000000000000000003021415226333200206260ustar00rootroot00000000000000[{"type": "Mem", "total": 3861332, "used": 222820, "free": 3364176, "shared": 11832, "buff_cache": 274336, "available": 3389588}, {"type": "Swap", "total": 2097148, "used": 0, "free": 2097148}] jc-1.17.3/tests/fixtures/centos-7.7/free.out000066400000000000000000000003141415226333200204670ustar00rootroot00000000000000 total used free shared buff/cache available Mem: 3861332 222820 3364176 11832 274336 3389588 Swap: 2097148 0 2097148 jc-1.17.3/tests/fixtures/centos-7.7/fstab.json000066400000000000000000000006471415226333200210200ustar00rootroot00000000000000[{"fs_spec": "/dev/mapper/centos-root", "fs_file": "/", "fs_vfstype": "xfs", "fs_mntops": "defaults", "fs_freq": 0, "fs_passno": 0}, {"fs_spec": "UUID=05d927bb-5875-49e3-ada1-7f46cb31c932", "fs_file": "/boot", "fs_vfstype": "xfs", "fs_mntops": "defaults", "fs_freq": 0, "fs_passno": 0}, {"fs_spec": "/dev/mapper/centos-swap", "fs_file": "swap", "fs_vfstype": "swap", "fs_mntops": "defaults", "fs_freq": 0, "fs_passno": 0}] jc-1.17.3/tests/fixtures/centos-7.7/fstab.out000066400000000000000000000007501415226333200206510ustar00rootroot00000000000000 # # /etc/fstab # Created by anaconda on Thu Aug 15 10:53:00 2019 # # Accessible filesystems, by reference, are maintained under '/dev/disk' # See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info # /dev/mapper/centos-root / xfs defaults 0 0 UUID=05d927bb-5875-49e3-ada1-7f46cb31c932 /boot xfs defaults 0 0 # this is a comment /dev/mapper/centos-swap swap swap defaults 0 0 jc-1.17.3/tests/fixtures/centos-7.7/group.json000066400000000000000000000052151415226333200210510ustar00rootroot00000000000000[{"group_name": "root", "password": "x", "gid": 0, "members": []}, {"group_name": "bin", "password": "x", "gid": 1, "members": []}, {"group_name": "daemon", "password": "x", "gid": 2, "members": []}, {"group_name": "sys", "password": "x", "gid": 3, "members": []}, {"group_name": "adm", "password": "x", "gid": 4, "members": []}, {"group_name": "tty", "password": "x", "gid": 5, "members": []}, {"group_name": "disk", "password": "x", "gid": 6, "members": []}, {"group_name": "lp", "password": "x", "gid": 7, "members": []}, {"group_name": "mem", "password": "x", "gid": 8, "members": []}, {"group_name": "kmem", "password": "x", "gid": 9, "members": []}, {"group_name": "wheel", "password": "x", "gid": 10, "members": ["joeuser"]}, {"group_name": "cdrom", "password": "x", "gid": 11, "members": []}, {"group_name": "mail", "password": "x", "gid": 12, "members": ["postfix"]}, {"group_name": "man", "password": "x", "gid": 15, "members": []}, {"group_name": "dialout", "password": "x", "gid": 18, "members": []}, {"group_name": "floppy", "password": "x", "gid": 19, "members": []}, {"group_name": "games", "password": "x", "gid": 20, "members": []}, {"group_name": "tape", "password": "x", "gid": 33, "members": []}, {"group_name": "video", "password": "x", "gid": 39, "members": []}, {"group_name": "ftp", "password": "x", "gid": 50, "members": []}, {"group_name": "lock", "password": "x", "gid": 54, "members": []}, {"group_name": "audio", "password": "x", "gid": 63, "members": []}, {"group_name": "nobody", "password": "x", "gid": 99, "members": []}, {"group_name": "users", "password": "x", "gid": 100, "members": []}, {"group_name": "utmp", "password": "x", "gid": 22, "members": []}, {"group_name": "utempter", "password": "x", "gid": 35, "members": []}, {"group_name": "input", "password": "x", "gid": 999, "members": []}, {"group_name": "systemd-journal", "password": "x", "gid": 190, "members": []}, {"group_name": "systemd-network", "password": "x", "gid": 192, "members": []}, {"group_name": "dbus", "password": "x", "gid": 81, "members": []}, {"group_name": "polkitd", "password": "x", "gid": 998, "members": []}, {"group_name": "ssh_keys", "password": "x", "gid": 997, "members": []}, {"group_name": "sshd", "password": "x", "gid": 74, "members": []}, {"group_name": "postdrop", "password": "x", "gid": 90, "members": []}, {"group_name": "postfix", "password": "x", "gid": 89, "members": []}, {"group_name": "chrony", "password": "x", "gid": 996, "members": []}, {"group_name": "joeuser", "password": "x", "gid": 1000, "members": ["joeuser"]}, {"group_name": "cgred", "password": "x", "gid": 995, "members": []}, {"group_name": "dockerroot", "password": "x", "gid": 994, "members": []}] jc-1.17.3/tests/fixtures/centos-7.7/group.out000066400000000000000000000007751415226333200207150ustar00rootroot00000000000000root:x:0: bin:x:1: daemon:x:2: sys:x:3: adm:x:4: tty:x:5: disk:x:6: lp:x:7: mem:x:8: kmem:x:9: wheel:x:10:joeuser cdrom:x:11: mail:x:12:postfix man:x:15: dialout:x:18: floppy:x:19: games:x:20: tape:x:33: video:x:39: ftp:x:50: lock:x:54: audio:x:63: nobody:x:99: users:x:100: utmp:x:22: utempter:x:35: input:x:999: systemd-journal:x:190: systemd-network:x:192: dbus:x:81: polkitd:x:998: ssh_keys:x:997: sshd:x:74: postdrop:x:90: postfix:x:89: chrony:x:996: joeuser:x:1000:joeuser cgred:x:995: dockerroot:x:994:jc-1.17.3/tests/fixtures/centos-7.7/gshadow.json000066400000000000000000000060421415226333200213500ustar00rootroot00000000000000[{"group_name": "root", "password": "", "administrators": [], "members": []}, {"group_name": "bin", "password": "", "administrators": [], "members": []}, {"group_name": "daemon", "password": "", "administrators": [], "members": []}, {"group_name": "sys", "password": "", "administrators": [], "members": []}, {"group_name": "adm", "password": "", "administrators": [], "members": []}, {"group_name": "tty", "password": "", "administrators": [], "members": []}, {"group_name": "disk", "password": "", "administrators": [], "members": []}, {"group_name": "lp", "password": "", "administrators": [], "members": []}, {"group_name": "mem", "password": "", "administrators": [], "members": []}, {"group_name": "kmem", "password": "", "administrators": [], "members": []}, {"group_name": "wheel", "password": "", "administrators": [], "members": ["joeuser"]}, {"group_name": "cdrom", "password": "", "administrators": [], "members": []}, {"group_name": "mail", "password": "", "administrators": [], "members": ["postfix"]}, {"group_name": "man", "password": "", "administrators": [], "members": []}, {"group_name": "dialout", "password": "", "administrators": [], "members": []}, {"group_name": "floppy", "password": "", "administrators": [], "members": []}, {"group_name": "games", "password": "", "administrators": [], "members": []}, {"group_name": "tape", "password": "", "administrators": [], "members": []}, {"group_name": "video", "password": "", "administrators": [], "members": []}, {"group_name": "ftp", "password": "", "administrators": [], "members": []}, {"group_name": "lock", "password": "", "administrators": [], "members": []}, {"group_name": "audio", "password": "", "administrators": [], "members": []}, {"group_name": "nobody", "password": "", "administrators": [], "members": []}, {"group_name": "users", "password": "", "administrators": [], "members": []}, {"group_name": "utmp", "password": "!", "administrators": [], "members": []}, {"group_name": "utempter", "password": "!", "administrators": [], "members": []}, {"group_name": "input", "password": "!", "administrators": [], "members": []}, {"group_name": "systemd-journal", "password": "!", "administrators": [], "members": []}, {"group_name": "systemd-network", "password": "!", "administrators": [], "members": []}, {"group_name": "dbus", "password": "!", "administrators": [], "members": []}, {"group_name": "polkitd", "password": "!", "administrators": [], "members": []}, {"group_name": "ssh_keys", "password": "!", "administrators": [], "members": []}, {"group_name": "sshd", "password": "!", "administrators": [], "members": []}, {"group_name": "postdrop", "password": "!", "administrators": [], "members": []}, {"group_name": "postfix", "password": "!", "administrators": [], "members": []}, {"group_name": "chrony", "password": "!", "administrators": [], "members": []}, {"group_name": "joeuser", "password": "!!", "administrators": [], "members": ["joeuser"]}, {"group_name": "cgred", "password": "!", "administrators": [], "members": []}, {"group_name": "dockerroot", "password": "!", "administrators": [], "members": []}] jc-1.17.3/tests/fixtures/centos-7.7/gshadow.out000066400000000000000000000006271415226333200212110ustar00rootroot00000000000000root::: bin::: daemon::: sys::: adm::: tty::: disk::: lp::: mem::: kmem::: wheel:::joeuser cdrom::: mail:::postfix man::: dialout::: floppy::: games::: tape::: video::: ftp::: lock::: audio::: nobody::: users::: utmp:!:: utempter:!:: input:!:: systemd-journal:!:: systemd-network:!:: dbus:!:: polkitd:!:: ssh_keys:!:: sshd:!:: postdrop:!:: postfix:!:: chrony:!:: joeuser:!!::joeuser cgred:!:: dockerroot:!::jc-1.17.3/tests/fixtures/centos-7.7/hash.json000066400000000000000000000001731415226333200206360ustar00rootroot00000000000000[{"hits": 3, "command": "/usr/bin/sum"}, {"hits": 2, "command": "/usr/bin/cat"}, {"hits": 2, "command": "/usr/bin/cksum"}] jc-1.17.3/tests/fixtures/centos-7.7/hash.out000066400000000000000000000001051415226333200204670ustar00rootroot00000000000000hits command 3 /usr/bin/sum 2 /usr/bin/cat 2 /usr/bin/cksum jc-1.17.3/tests/fixtures/centos-7.7/hciconfig-a.json000066400000000000000000000011131415226333200220550ustar00rootroot00000000000000[{"device": "hci0", "type": "Primary", "bus": "USB", "bd_address": "00:50:56:FE:FD:38", "acl_mtu": 8192, "acl_mtu_packets": 128, "sco_mtu": 64, "sco_mtu_packets": 128, "state": ["DOWN"], "rx_bytes": 503, "rx_acl": 0, "rx_sco": 0, "rx_events": 22, "rx_errors": 0, "tx_bytes": 336, "tx_acl": 0, "tx_sco": 0, "tx_commands": 22, "tx_errors": 0, "features": ["0xff", "0xff", "0x8f", "0xfe", "0x83", "0xe1", "0x08", "0x80"], "packet_type": ["DM1", "DM3", "DM5", "DH1", "DH3", "DH5", "HV1", "HV2", "HV3"], "link_policy": ["RSWITCH", "HOLD", "SNIFF", "PARK"], "link_mode": ["SLAVE", "ACCEPT"]}] jc-1.17.3/tests/fixtures/centos-7.7/hciconfig-a.out000066400000000000000000000006061415226333200217210ustar00rootroot00000000000000hci0: Type: Primary Bus: USB BD Address: 00:50:56:FE:FD:38 ACL MTU: 8192:128 SCO MTU: 64:128 DOWN RX bytes:503 acl:0 sco:0 events:22 errors:0 TX bytes:336 acl:0 sco:0 commands:22 errors:0 Features: 0xff 0xff 0x8f 0xfe 0x83 0xe1 0x08 0x80 Packet type: DM1 DM3 DM5 DH1 DH3 DH5 HV1 HV2 HV3 Link policy: RSWITCH HOLD SNIFF PARK Link mode: SLAVE ACCEPT jc-1.17.3/tests/fixtures/centos-7.7/hciconfig.json000066400000000000000000000005261415226333200216460ustar00rootroot00000000000000[{"device": "hci0", "type": "Primary", "bus": "USB", "bd_address": "00:50:56:FE:FD:38", "acl_mtu": 8192, "acl_mtu_packets": 128, "sco_mtu": 64, "sco_mtu_packets": 128, "state": ["DOWN"], "rx_bytes": 503, "rx_acl": 0, "rx_sco": 0, "rx_events": 22, "rx_errors": 0, "tx_bytes": 336, "tx_acl": 0, "tx_sco": 0, "tx_commands": 22, "tx_errors": 0}] jc-1.17.3/tests/fixtures/centos-7.7/hciconfig.out000066400000000000000000000003231415226333200214770ustar00rootroot00000000000000hci0: Type: Primary Bus: USB BD Address: 00:50:56:FE:FD:38 ACL MTU: 8192:128 SCO MTU: 64:128 DOWN RX bytes:503 acl:0 sco:0 events:22 errors:0 TX bytes:336 acl:0 sco:0 commands:22 errors:0 jc-1.17.3/tests/fixtures/centos-7.7/history.json000066400000000000000000001347001415226333200214200ustar00rootroot00000000000000[{"line": 65, "command": "sudo iptables -w -vL -t filter | jc --iptables -p"}, {"line": 66, "command": "sudo iptables -vnL -t filter | jc --iptables -p"}, {"line": 67, "command": "sudo iptables -vnL -t filter"}, {"line": 68, "command": "rm iptables.py "}, {"line": 69, "command": "vi iptables.py"}, {"line": 70, "command": "sudo iptables -vnL -t filter | jc --iptables -p"}, {"line": 71, "command": "sudo iptables -vL -t filter | jc --iptables -p"}, {"line": 72, "command": "sudo iptables -L -t filter | jc --iptables -p"}, {"line": 73, "command": "sudo iptables -L -t nat | jc --iptables -p"}, {"line": 74, "command": "sudo iptables -vnL -t filter | jc --iptables -p"}, {"line": 75, "command": "sudo iptables -vnL -t filter | jc"}, {"line": 76, "command": "sudo iptables -vnL -t filter | jc --iptables"}, {"line": 77, "command": "sudo iptables -vnL -t raw | jc --iptables"}, {"line": 78, "command": "sudo iptables -vnL -t raw | jc --iptables -p"}, {"line": 79, "command": "jobs"}, {"line": 80, "command": "sleep 100 &"}, {"line": 81, "command": "jobs"}, {"line": 82, "command": "sleep 101 &"}, {"line": 83, "command": "jobs"}, {"line": 84, "command": "sleep 102 &"}, {"line": 85, "command": "jobs"}, {"line": 86, "command": "sleep 103 &"}, {"line": 87, "command": "jobs"}, {"line": 88, "command": "iptable"}, {"line": 89, "command": "sudo iptables -L | jc --iptables"}, {"line": 90, "command": "sudo iptables -L | jc --iptables -p"}, {"line": 91, "command": "sudo iptables -L | jc --iptables | jq ."}, {"line": 92, "command": "pip3 install jq"}, {"line": 93, "command": "pip3 install --user jq"}, {"line": 94, "command": "jq"}, {"line": 95, "command": "yum install jq"}, {"line": 96, "command": "sudo yum install jq"}, {"line": 97, "command": "sudo dnf install jq"}, {"line": 98, "command": "curl https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64"}, {"line": 99, "command": "ls"}, {"line": 100, "command": "ls -al"}, {"line": 101, "command": "cd ~"}, {"line": 102, "command": "curl https://github-production-release-asset-2e65be.s3.amazonaws.com/5101141/6387d980-de1f-11e8-8d3e-4455415aa408?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20191023%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20191023T000342Z&X-Amz-Expires=300&X-Amz-Signature=6d4aad2941c281a57ea469d57115f0a3d877fc24998ded52e1c51cbf7b482705&X-Amz-SignedHeaders=host&actor_id=0&response-content-disposition=attachment%3B%20filename%3Djq-linux64&response-content-type=application%2Foctet-stream"}, {"line": 103, "command": "ls"}, {"line": 104, "command": "curl 'https://github-production-release-asset-2e65be.s3.amazonaws.com/5101141/6387d980-de1f-11e8-8d3e-4455415aa408?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20191023%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20191023T000342Z&X-Amz-Expires=300&X-Amz-Signature=6d4aad2941c281a57ea469d57115f0a3d877fc24998ded52e1c51cbf7b482705&X-Amz-SignedHeaders=host&actor_id=0&response-content-disposition=attachment%3B%20filename%3Djq-linux64&response-content-type=application%2Foctet-stream'"}, {"line": 105, "command": "ifconfig"}, {"line": 106, "command": "ls"}, {"line": 107, "command": "chmod jq-linux64 "}, {"line": 108, "command": "chmod +x jq-linux64 "}, {"line": 109, "command": "./jq-linux64 "}, {"line": 110, "command": "mv jq-linux64 jq"}, {"line": 111, "command": "sudo mv jq /usr/local/bin/"}, {"line": 112, "command": "jq"}, {"line": 113, "command": "iptables -L | jc --iptables | jq ."}, {"line": 114, "command": "sudo iptables -L | jc --iptables | jq ."}, {"line": 115, "command": "sudo iptables -L "}, {"line": 116, "command": "sudo iptables -vL "}, {"line": 117, "command": "sudo iptables -vL | jc --iptables | jq ."}, {"line": 118, "command": "df | jc --df -p"}, {"line": 119, "command": "cd ~"}, {"line": 120, "command": "pip3 uninstall jc"}, {"line": 121, "command": "cd git/"}, {"line": 122, "command": "ls"}, {"line": 123, "command": "rm -rf jc/"}, {"line": 124, "command": "history | grep clone"}, {"line": 125, "command": "git clone https://github.com/kellyjonbrazil/jc.git"}, {"line": 126, "command": "ls"}, {"line": 127, "command": "cd jc/"}, {"line": 128, "command": "./build-package.sh "}, {"line": 129, "command": "./pypi-upload.sh "}, {"line": 130, "command": "cd .."}, {"line": 131, "command": "ls"}, {"line": 132, "command": "pip3 uninstall jc"}, {"line": 133, "command": "rm -rf jc/"}, {"line": 134, "command": "pip3 install --user --upgrade jc"}, {"line": 135, "command": "iptables -L | jc --iptables | jq"}, {"line": 136, "command": "sudo iptables -L | jc --iptables | jq"}, {"line": 137, "command": "mount | jc --mount -p"}, {"line": 138, "command": "uname -a | jc --uname"}, {"line": 139, "command": "uname -a | jc --uname -p"}, {"line": 140, "command": "df | jc --df -p"}, {"line": 141, "command": "free | jc --free -p"}, {"line": 142, "command": "lsblk | jc --lsblk -p"}, {"line": 143, "command": "ls | jc"}, {"line": 144, "command": "env | jc --env -p"}, {"line": 145, "command": "ls | jc"}, {"line": 146, "command": "route | jc --route -p"}, {"line": 147, "command": "iptables -L | jc --iptables | jq ."}, {"line": 148, "command": "sudo iptables -L | jc --iptables | jq ."}, {"line": 149, "command": "ls"}, {"line": 150, "command": "pip3 uninstall jc"}, {"line": 151, "command": "history | grep clone"}, {"line": 152, "command": "git clone --single-branch --branch dev https://github.com/kellyjonbrazil/jc.git"}, {"line": 153, "command": "cd jc/"}, {"line": 154, "command": "pip3 install --user --upgrade -e ."}, {"line": 155, "command": "sudo iptables -L | jc --iptables -p"}, {"line": 156, "command": "sudo iptables -L | jc --iptables"}, {"line": 157, "command": "sudo iptables -L | jc --iptables | jq ."}, {"line": 158, "command": "pip3 list"}, {"line": 159, "command": "cd jc"}, {"line": 160, "command": "ls"}, {"line": 161, "command": "vi jc.py "}, {"line": 162, "command": "jc"}, {"line": 163, "command": "ls | jc"}, {"line": 164, "command": "vi jc.py "}, {"line": 165, "command": "jc"}, {"line": 166, "command": "ls | jc"}, {"line": 167, "command": "cat"}, {"line": 168, "command": "jc"}, {"line": 169, "command": "vi jc.py "}, {"line": 170, "command": "jc"}, {"line": 171, "command": "ls | jc"}, {"line": 172, "command": "vi jc.py "}, {"line": 173, "command": "jc"}, {"line": 174, "command": "vi jc.py "}, {"line": 175, "command": "jc"}, {"line": 176, "command": "ls | jc"}, {"line": 177, "command": "vi jc.py "}, {"line": 178, "command": "jc"}, {"line": 179, "command": "ls | jc"}, {"line": 180, "command": "ls | jc --ls"}, {"line": 181, "command": "jc << ls -l"}, {"line": 182, "command": "jc < ls -l"}, {"line": 183, "command": "jc < ls / -l"}, {"line": 184, "command": "jc < ls -l /"}, {"line": 185, "command": "jc <<< ls -l /"}, {"line": 186, "command": "jc --ls <<< ls -l /"}, {"line": 187, "command": "jc --ls -p <<< ls -l /"}, {"line": 188, "command": "jc --ls -p <<< 'ls -a /'"}, {"line": 189, "command": "cat jc.py "}, {"line": 190, "command": "ls"}, {"line": 191, "command": "rm jc.py "}, {"line": 192, "command": "vi jc.py"}, {"line": 193, "command": "jc"}, {"line": 194, "command": "rm jc.py "}, {"line": 195, "command": "vi jc.py"}, {"line": 196, "command": "jc"}, {"line": 197, "command": "jc --ls"}, {"line": 198, "command": "ls | jc --ls"}, {"line": 199, "command": "ls -al | jc --ls"}, {"line": 200, "command": "ls -al | jc --ls -p"}, {"line": 201, "command": "ls -al | jc --p"}, {"line": 202, "command": "jc"}, {"line": 203, "command": "sudo iptables -L | jc --iptables -p"}, {"line": 204, "command": "mount | jc --mount -p"}, {"line": 205, "command": "jc"}, {"line": 206, "command": "jc --mount"}, {"line": 207, "command": "ps | jc --hello"}, {"line": 208, "command": "jc"}, {"line": 209, "command": "jq"}, {"line": 210, "command": "jq --help"}, {"line": 211, "command": "jc"}, {"line": 212, "command": "ps | jc -p"}, {"line": 213, "command": "ps | jc -p --ps"}, {"line": 214, "command": "jc -p --ps"}, {"line": 215, "command": "ps -ef | jc -p --ps | jq ."}, {"line": 216, "command": "jc"}, {"line": 217, "command": "df | jc --df"}, {"line": 218, "command": "env | jc --env"}, {"line": 219, "command": "free | jc --free"}, {"line": 220, "command": "ifconfig | jc --ifconfig"}, {"line": 221, "command": "jc"}, {"line": 222, "command": "iptables -L | jc --iptables"}, {"line": 223, "command": "sudo iptables -L | jc --iptables"}, {"line": 224, "command": "jc"}, {"line": 225, "command": "ls -l | jc --ls"}, {"line": 226, "command": "lsblk | jc --lsblk"}, {"line": 227, "command": "mount | jc --mount"}, {"line": 228, "command": "jc"}, {"line": 229, "command": "netstat -l | jc --netstat"}, {"line": 230, "command": "ps -ef | jc --ps"}, {"line": 231, "command": "jc"}, {"line": 232, "command": "route | jc --route"}, {"line": 233, "command": "uname -a | jc --uname"}, {"line": 234, "command": "cd parsers/"}, {"line": 235, "command": "rm iptables.py "}, {"line": 236, "command": "vi iptables.py"}, {"line": 237, "command": "sudo iptables -L | jc --iptables"}, {"line": 238, "command": "sudo iptables -L | jc --iptables -p"}, {"line": 239, "command": "lsof"}, {"line": 240, "command": "journalctl "}, {"line": 241, "command": "python3"}, {"line": 242, "command": "ls"}, {"line": 243, "command": "vi jobs.py"}, {"line": 244, "command": "cd .."}, {"line": 245, "command": "ls"}, {"line": 246, "command": "rm jc.py "}, {"line": 247, "command": "vi jc.py"}, {"line": 248, "command": "sleep 500 &"}, {"line": 249, "command": "sleep 501 &"}, {"line": 250, "command": "sleep 502 &"}, {"line": 251, "command": "sleep 503 &"}, {"line": 252, "command": "jobs"}, {"line": 253, "command": "jobs | jc --jobs"}, {"line": 254, "command": "jobs -l | jc --jobs"}, {"line": 255, "command": "jobs -l"}, {"line": 256, "command": "python3"}, {"line": 257, "command": "ls"}, {"line": 258, "command": "cd parsers/"}, {"line": 259, "command": "ls"}, {"line": 260, "command": "rm jobs.py "}, {"line": 261, "command": "vi jobs.py"}, {"line": 262, "command": "jobs | jc --jobs"}, {"line": 263, "command": "jobs"}, {"line": 264, "command": "rm jobs"}, {"line": 265, "command": "rm jobs.py "}, {"line": 266, "command": "vi jobs"}, {"line": 267, "command": "vi jobs.py"}, {"line": 268, "command": "jobs | jc --jobs -p"}, {"line": 269, "command": "jobs -l | jc --jobs -p"}, {"line": 270, "command": "jobs"}, {"line": 271, "command": "sleep 500 &"}, {"line": 272, "command": "sleep 501 &"}, {"line": 273, "command": "sleep 502 &"}, {"line": 274, "command": "sleep 503 &"}, {"line": 275, "command": "jobs -l | jc --jobs -p"}, {"line": 276, "command": "jobs | jc --jobs -p"}, {"line": 277, "command": "rm jobs.py "}, {"line": 278, "command": "vi jobs.py"}, {"line": 279, "command": "jobs | jc --jobs -p"}, {"line": 280, "command": "jobs -l | jc --jobs -p"}, {"line": 281, "command": "jobs"}, {"line": 282, "command": "jobs -l"}, {"line": 283, "command": "rm jobs.py "}, {"line": 284, "command": "vi jobs.py"}, {"line": 285, "command": "jobs -l | jc --jobs -p"}, {"line": 286, "command": "rm jobs.py "}, {"line": 287, "command": "vi jobs.py"}, {"line": 288, "command": "sleep 500 &"}, {"line": 289, "command": "sleep 501 &"}, {"line": 290, "command": "sleep 502 &"}, {"line": 291, "command": "sleep 503 &"}, {"line": 292, "command": "sleep 504 &"}, {"line": 293, "command": "jobs"}, {"line": 294, "command": "jobs -l | jc --jobs -p"}, {"line": 295, "command": "rm jobs.py "}, {"line": 296, "command": "vi jobs.py"}, {"line": 297, "command": "sleep 1000 &"}, {"line": 298, "command": "sleep 1001 &"}, {"line": 299, "command": "sleep 1002 &"}, {"line": 300, "command": "sleep 1003 &"}, {"line": 301, "command": "sleep 1004 &"}, {"line": 302, "command": "jobs | jc --jobs -p"}, {"line": 303, "command": "jobs -l | jc --jobs -p"}, {"line": 304, "command": "python3"}, {"line": 305, "command": "rm jobs.py "}, {"line": 306, "command": "vi jobs.py"}, {"line": 307, "command": "jobs | jc --jobs -p"}, {"line": 308, "command": "rm jobs.py "}, {"line": 309, "command": "vi jobs.py"}, {"line": 310, "command": "jobs | jc --jobs -p"}, {"line": 311, "command": "rm jobs.py "}, {"line": 312, "command": "vi jobs.py"}, {"line": 313, "command": "jobs | jc --jobs -p"}, {"line": 314, "command": "rm jobs.py "}, {"line": 315, "command": "vi jobs.py"}, {"line": 316, "command": "jobs | jc --jobs -p"}, {"line": 317, "command": "jobs -l | jc --jobs -p"}, {"line": 318, "command": "jobs | jc --jobs -p"}, {"line": 319, "command": "rm jobs.py "}, {"line": 320, "command": "vi jobs.py"}, {"line": 321, "command": "jobs | jc --jobs -p"}, {"line": 322, "command": "\"\"\"jc - JSON CLI output utility jobs Parser"}, {"line": 323, "command": "Usage:"}, {"line": 324, "command": "specify --jobs as the first argument if the piped input is coming from jobs"}, {"line": 325, "command": "Examples:"}, {"line": 326, "command": "\"\"\""}, {"line": 327, "command": "import string"}, {"line": 328, "command": "def parse(data):"}, {"line": 329, "command": "output = []"}, {"line": 330, "command": "linedata = data.splitlines()"}, {"line": 331, "command": "# Clear any blank lines"}, {"line": 332, "command": "cleandata = list(filter(None, linedata))"}, {"line": 333, "command": "if cleandata:; for entry in cleandata:; output_line = {}"}, {"line": 334, "command": "job_number = ''"}, {"line": 335, "command": "pid = ''"}, {"line": 336, "command": "job_history = ''"}, {"line": 337, "command": "parsed_line = entry.split(maxsplit=2)"}, {"line": 338, "command": "print(parsed_line)"}, {"line": 339, "command": "# check if -l was used"}, {"line": 340, "command": "if parsed_line[1][0] in string.digits:; pid = parsed_line.pop(1)"}, {"line": 341, "command": "print(parsed_line)"}, {"line": 342, "command": "# check for + or - in first field"}, {"line": 343, "command": "if parsed_line[0].find('+') != -1:"}, {"line": 344, "command": "job_history = 'current'"}, {"line": 345, "command": "job_number = parsed_line[0].rstrip('+')"}, {"line": 346, "command": "if pid:; remainder = parsed_line[1].split(maxsplit=1)"}, {"line": 347, "command": "else:"}, {"line": 348, "command": "remainder = list(parsed_line[1])"}, {"line": 349, "command": "remainder.insert(0, job_number)"}, {"line": 350, "command": "parsed_line = remainder"}, {"line": 351, "command": "if parsed_line[0].find('-') != -1:"}, {"line": 352, "command": "job_history = 'previous'"}, {"line": 353, "command": "job_number = parsed_line[0].rstrip('-')"}, {"line": 354, "command": "if pid:; remainder = parsed_line[1].split(maxsplit=1)"}, {"line": 355, "command": "else:"}, {"line": 356, "command": "remainder = list(parsed_line[1])"}, {"line": 357, "command": "remainder = parsed_line[1].split(maxsplit=1)"}, {"line": 358, "command": "remainder.insert(0, job_number)"}, {"line": 359, "command": "parsed_line = remainder"}, {"line": 360, "command": "# clean up first field"}, {"line": 361, "command": "parsed_line[0] = parsed_line[0].lstrip('[').rstrip(']')"}, {"line": 362, "command": "print(parsed_line)"}, {"line": 363, "command": "# create list of dictionaries"}, {"line": 364, "command": "# output_line['job_number'] = int(parsed_line[0])"}, {"line": 365, "command": "# if pid:"}, {"line": 366, "command": "# output_line['pid'] = int(pid)"}, {"line": 367, "command": "# if job_history:"}, {"line": 368, "command": "# output_line['history'] = job_history"}, {"line": 369, "command": "# output_line['status'] = parsed_line[1]"}, {"line": 370, "command": "# output_line['command'] = parsed_line[2]"}, {"line": 371, "command": "# output.append(output_line)"}, {"line": 372, "command": "# return output"}, {"line": 373, "command": "rm jobs.py "}, {"line": 374, "command": "vi jobs.py"}, {"line": 375, "command": "jobs | jc --jobs -p"}, {"line": 376, "command": "jobs"}, {"line": 377, "command": "sleep"}, {"line": 378, "command": "sleep 1000 &"}, {"line": 379, "command": "sleep 1001 &"}, {"line": 380, "command": "sleep 1002 &"}, {"line": 381, "command": "sleep 1003 &"}, {"line": 382, "command": "sleep 1004 &"}, {"line": 383, "command": "jobs | jc --jobs -p"}, {"line": 384, "command": "jobs -l | jc --jobs -p"}, {"line": 385, "command": "rm jobs.py "}, {"line": 386, "command": "vi jobs.py"}, {"line": 387, "command": "jobs -l | jc --jobs -p"}, {"line": 388, "command": "jobs | jc --jobs -p"}, {"line": 389, "command": "rm jobs.py "}, {"line": 390, "command": "vi jobs.py"}, {"line": 391, "command": "jobs | jc --jobs -p"}, {"line": 392, "command": "jobs -l | jc --jobs -p"}, {"line": 393, "command": "jobs"}, {"line": 394, "command": "rm jobs.py "}, {"line": 395, "command": "vi jobs.py"}, {"line": 396, "command": "sleep 10000 &"}, {"line": 397, "command": "sleep 10001 &"}, {"line": 398, "command": "sleep 10002 &"}, {"line": 399, "command": "sleep 10003 &"}, {"line": 400, "command": "sleep 10004 &"}, {"line": 401, "command": "jobs -l | jc --jobs -p"}, {"line": 402, "command": "jobs | jc --jobs -p"}, {"line": 403, "command": "rm jobs.py "}, {"line": 404, "command": "vi jobs.py"}, {"line": 405, "command": "jobs | jc --jobs -p"}, {"line": 406, "command": "jobs -l| jc --jobs -p"}, {"line": 407, "command": "rm jobs.py "}, {"line": 408, "command": "vi jobs.py"}, {"line": 409, "command": "jobs -l| jc --jobs -p"}, {"line": 410, "command": "jobs | jc --jobs -p"}, {"line": 411, "command": "rm jobs.py "}, {"line": 412, "command": "vi jobs.py"}, {"line": 413, "command": "jobs | jc --jobs -p"}, {"line": 414, "command": "jobs -l | jc --jobs -p"}, {"line": 415, "command": "rm jobs.py "}, {"line": 416, "command": "vi jobs.py"}, {"line": 417, "command": "jobs -l | jc --jobs -p"}, {"line": 418, "command": "jobs| jc --jobs -p"}, {"line": 419, "command": "jc"}, {"line": 420, "command": "lsof"}, {"line": 421, "command": "yum install lsof"}, {"line": 422, "command": "sudo yum install lsof"}, {"line": 423, "command": "lsof"}, {"line": 424, "command": "vi lsof.py"}, {"line": 425, "command": "cd .."}, {"line": 426, "command": "ls"}, {"line": 427, "command": "rm jc.py "}, {"line": 428, "command": "vi jc.py"}, {"line": 429, "command": "lsof | jc --lsof"}, {"line": 430, "command": "cd parsers/"}, {"line": 431, "command": "rm lsof.py "}, {"line": 432, "command": "vi lsof.py"}, {"line": 433, "command": "lsof | jc --lsof -p"}, {"line": 434, "command": "rm lsof.py "}, {"line": 435, "command": "vi lsof.py"}, {"line": 436, "command": "lsof | jc --lsof -p"}, {"line": 437, "command": "rm lsof.py "}, {"line": 438, "command": "vi lsof.py"}, {"line": 439, "command": "lsof | jc --lsof -p"}, {"line": 440, "command": "rm lsof.py "}, {"line": 441, "command": "vi lsof.py"}, {"line": 442, "command": "lsof | jc --lsof -p"}, {"line": 443, "command": "lsof | head"}, {"line": 444, "command": "rm lsof.py "}, {"line": 445, "command": "vi lsof.py"}, {"line": 446, "command": "lsof | jc --lsof "}, {"line": 447, "command": "rm lsof.py "}, {"line": 448, "command": "vi lsof.py"}, {"line": 449, "command": "lsof | jc --lsof "}, {"line": 450, "command": "rm lsof.py "}, {"line": 451, "command": "vi lsof.py"}, {"line": 452, "command": "lsof | jc --lsof "}, {"line": 453, "command": "rm lsof.py "}, {"line": 454, "command": "vi lsof.py"}, {"line": 455, "command": "lsof | jc --lsof "}, {"line": 456, "command": "rm lsof.py "}, {"line": 457, "command": "vi lsof.py"}, {"line": 458, "command": "lsof | jc --lsof "}, {"line": 459, "command": "rm lsof.py "}, {"line": 460, "command": "vi lsof.py"}, {"line": 461, "command": "lsof | jc --lsof "}, {"line": 462, "command": "rm lsof.py "}, {"line": 463, "command": "vi lsof.py"}, {"line": 464, "command": "lsof | jc --lsof "}, {"line": 465, "command": "rm lsof.py "}, {"line": 466, "command": "vi lsof.py"}, {"line": 467, "command": "lsof | jc --lsof "}, {"line": 468, "command": "rm lsof.py "}, {"line": 469, "command": "vi lsof.py"}, {"line": 470, "command": "lsof | jc --lsof "}, {"line": 471, "command": "python3"}, {"line": 472, "command": "rm lsof.py "}, {"line": 473, "command": "vi lsof.py"}, {"line": 474, "command": "lsof | jc --lsof "}, {"line": 475, "command": "lsof"}, {"line": 476, "command": "lsof | head"}, {"line": 477, "command": "rm lsof.py "}, {"line": 478, "command": "vi lsof.py"}, {"line": 479, "command": "lsof | jc --lsof "}, {"line": 480, "command": "lsof | tail"}, {"line": 481, "command": "rm lsof.py "}, {"line": 482, "command": "vi lsof.py"}, {"line": 483, "command": "lsof | jc --lsof "}, {"line": 484, "command": "rm lsof.py "}, {"line": 485, "command": "vi lsof.py"}, {"line": 486, "command": "lsof | jc --lsof "}, {"line": 487, "command": "rm lsof.py "}, {"line": 488, "command": "vi lsof.py"}, {"line": 489, "command": "lsof | jc --lsof "}, {"line": 490, "command": "rm lsof.py "}, {"line": 491, "command": "vi lsof.py"}, {"line": 492, "command": "lsof | jc --lsof "}, {"line": 493, "command": "rm lsof.py "}, {"line": 494, "command": "vi lsof.py"}, {"line": 495, "command": "lsof | jc --lsof "}, {"line": 496, "command": "~/resizeterm.sh "}, {"line": 497, "command": "rm lsof.py "}, {"line": 498, "command": "vi lsof.py"}, {"line": 499, "command": "lsof | jc --lsof "}, {"line": 500, "command": "rm lsof.py "}, {"line": 501, "command": "vi lsof.py"}, {"line": 502, "command": "lsof | jc --lsof "}, {"line": 503, "command": "rm lsof.py "}, {"line": 504, "command": "vi lsof.py"}, {"line": 505, "command": "lsof | jc --lsof "}, {"line": 506, "command": "rm lsof.py "}, {"line": 507, "command": "vi lsof.py"}, {"line": 508, "command": "lsof | jc --lsof "}, {"line": 509, "command": "rm lsof.py "}, {"line": 510, "command": "vi lsof.py"}, {"line": 511, "command": "lsof | jc --lsof "}, {"line": 512, "command": "sudo lsof | jc --lsof "}, {"line": 513, "command": "lsof"}, {"line": 514, "command": "rm lsof.py "}, {"line": 515, "command": "vi lsof.py"}, {"line": 516, "command": "sudo lsof | jc --lsof "}, {"line": 517, "command": "rm lsof.py "}, {"line": 518, "command": "vi lsof.py"}, {"line": 519, "command": "sudo lsof | jc --lsof -p"}, {"line": 520, "command": "sudo lsof | more"}, {"line": 521, "command": "rm lsof.py "}, {"line": 522, "command": "vi lsof.py"}, {"line": 523, "command": "sudo lsof | jc --lsof -p"}, {"line": 524, "command": "lsof | jc --lsof -p"}, {"line": 525, "command": "lsof | jc --lsof"}, {"line": 526, "command": "lsof | jc --lsof | jq ."}, {"line": 527, "command": "jc"}, {"line": 528, "command": "sudo lsof | jc --lsof -p"}, {"line": 529, "command": "man lsof"}, {"line": 530, "command": "~/resizeterm.sh "}, {"line": 531, "command": "sudo lsof | jc --lsof -p"}, {"line": 532, "command": "python3"}, {"line": 533, "command": "lsmod"}, {"line": 534, "command": "~/resizeterm.sh "}, {"line": 535, "command": "lsmod"}, {"line": 536, "command": "cd ~"}, {"line": 537, "command": "pip3 uninstall jc"}, {"line": 538, "command": "cd git/"}, {"line": 539, "command": "rm -rf jc/"}, {"line": 540, "command": "pip3 install --upgrade --user -e ."}, {"line": 541, "command": "history | grep clone"}, {"line": 542, "command": "git clone --single-branch --branch dev https://github.com/kellyjonbrazil/jc.git"}, {"line": 543, "command": "cd jc/"}, {"line": 544, "command": "pip3 install --upgrade --user -e ."}, {"line": 545, "command": "jc"}, {"line": 546, "command": "lsmod | jc --lsmod -p"}, {"line": 547, "command": "cd pypi-upload.sh "}, {"line": 548, "command": "cd jc"}, {"line": 549, "command": "cd parsers/"}, {"line": 550, "command": "ls"}, {"line": 551, "command": "rm lsmod.py "}, {"line": 552, "command": "vi lsmod.py"}, {"line": 553, "command": "lsmod | jc --lsmod -p"}, {"line": 554, "command": "rm lsmod.py "}, {"line": 555, "command": "vi lsmod.py"}, {"line": 556, "command": "lsmod | jc --lsmod -p"}, {"line": 557, "command": "rm lsmod.py "}, {"line": 558, "command": "vi lsmod.py"}, {"line": 559, "command": "lsmod | jc --lsmod -p"}, {"line": 560, "command": "rm lsmod.py "}, {"line": 561, "command": "vi lsmod.py"}, {"line": 562, "command": "lsmod | jc --lsmod -p"}, {"line": 563, "command": "rm lsmod.py "}, {"line": 564, "command": "vi lsmod.py"}, {"line": 565, "command": "lsmod | jc --lsmod -p"}, {"line": 566, "command": "rm lsmod.py "}, {"line": 567, "command": "vi lsmod.py"}, {"line": 568, "command": "lsmod | jc --lsmod -p"}, {"line": 569, "command": "rm lsmod.py "}, {"line": 570, "command": "vi lsmod.py"}, {"line": 571, "command": "lsmod | jc --lsmod -p"}, {"line": 572, "command": "rm lsmod.py "}, {"line": 573, "command": "vi lsmod.py"}, {"line": 574, "command": "lsmod | jc --lsmod -p"}, {"line": 575, "command": "rm lsmod.py "}, {"line": 576, "command": "vi lsmod.py"}, {"line": 577, "command": "lsmod | jc --lsmod -p"}, {"line": 578, "command": "jc"}, {"line": 579, "command": "cd ~"}, {"line": 580, "command": "pip3 uninstall jc"}, {"line": 581, "command": "cd git/"}, {"line": 582, "command": "rm -rf jc/"}, {"line": 583, "command": "history | grep clone"}, {"line": 584, "command": "ls"}, {"line": 585, "command": "git clone https://github.com/kellyjonbrazil/jc.git"}, {"line": 586, "command": "cd jc/"}, {"line": 587, "command": "ls"}, {"line": 588, "command": "./build-package.sh "}, {"line": 589, "command": "ls"}, {"line": 590, "command": "./pypi-upload.sh "}, {"line": 591, "command": "cd .."}, {"line": 592, "command": "ls"}, {"line": 593, "command": "pip3 uninstall jc"}, {"line": 594, "command": "rm -rf jc/"}, {"line": 595, "command": "pip3 install --upgrade --user jc"}, {"line": 596, "command": "pip3 list"}, {"line": 597, "command": "jc"}, {"line": 598, "command": "jc -p"}, {"line": 599, "command": "sudo iptables -L | jc --iptables -p"}, {"line": 600, "command": "jc"}, {"line": 601, "command": "lsmod | jc --lsmod -p"}, {"line": 602, "command": "jc"}, {"line": 603, "command": "jobs"}, {"line": 604, "command": "sleep 500 &"}, {"line": 605, "command": "jobs -l | jc --jobs -p"}, {"line": 606, "command": "jobs | jc --jobs -p"}, {"line": 607, "command": "lsof"}, {"line": 608, "command": "cd ~"}, {"line": 609, "command": "pip3 list"}, {"line": 610, "command": "lsof | jc --lsof > testfile"}, {"line": 611, "command": "cat testfile "}, {"line": 612, "command": "iptables -L | jc --iptables > testfile "}, {"line": 613, "command": "sudo iptables -L | jc --iptables > testfile "}, {"line": 614, "command": "cat testfile "}, {"line": 615, "command": "cat testfile | jq ."}, {"line": 616, "command": "w"}, {"line": 617, "command": "w -h"}, {"line": 618, "command": "w --help"}, {"line": 619, "command": "w -f"}, {"line": 620, "command": "w -i"}, {"line": 621, "command": "w -s"}, {"line": 622, "command": "w -o"}, {"line": 623, "command": "date"}, {"line": 624, "command": "ls | jc --ls"}, {"line": 625, "command": "ls | jc --ls | jq '.select(\"filename\" = \"git)'"}, {"line": 626, "command": "ls | jc --ls | jq '.select(.filename=\"git)'"}, {"line": 627, "command": "ls | jc --ls | jq '.select(.filename=\"git\")'"}, {"line": 628, "command": "ls | jc --ls | jq 'select(.filename == \"git\")'"}, {"line": 629, "command": "ls | jc --ls | jq '.[] | select(.filename == \"git\")'"}, {"line": 630, "command": "ls | jc --ls | jq -r '.[] | select(.filename == \"git\")'"}, {"line": 631, "command": "ls | jc --ls | jq -r '.[] | select(.filename == \"git\") | .filename'"}, {"line": 632, "command": "ifconfig | jc --ifconfig -p"}, {"line": 633, "command": "jc -p"}, {"line": 634, "command": "jc"}, {"line": 635, "command": "ls | jc -p"}, {"line": 636, "command": "ip"}, {"line": 637, "command": "ip address"}, {"line": 638, "command": "ip --help"}, {"line": 639, "command": "ip address --help"}, {"line": 640, "command": "ip address -h"}, {"line": 641, "command": "ip -h address"}, {"line": 642, "command": "ip -b address"}, {"line": 643, "command": "ip -iec address"}, {"line": 644, "command": "ip address"}, {"line": 645, "command": "ip --help"}, {"line": 646, "command": "ip -br address"}, {"line": 647, "command": "ip -d address"}, {"line": 648, "command": "ifconfig"}, {"line": 649, "command": "cat"}, {"line": 650, "command": "jc"}, {"line": 651, "command": "jc | cat"}, {"line": 652, "command": "jc > testing"}, {"line": 653, "command": "cat testing "}, {"line": 654, "command": "rm testing "}, {"line": 655, "command": "jc &2 > testing"}, {"line": 656, "command": "cat testing "}, {"line": 657, "command": "ls"}, {"line": 658, "command": "cat testing "}, {"line": 659, "command": "rm testing "}, {"line": 660, "command": "jc 2>&1 | jc --ls"}, {"line": 661, "command": "jc 2>&1 | jc --ls -p"}, {"line": 662, "command": "jc 2>&1 | jc --route -p"}, {"line": 663, "command": "jc 2>&1 | jc --ps -p"}, {"line": 664, "command": "jc 2>&1 | jc --iptables -p"}, {"line": 665, "command": "jc 2>&1 | jc --lsof -p"}, {"line": 666, "command": "jc 2>&1 | jc --ls -p"}, {"line": 667, "command": "jc 2>&1 | jc --env -p"}, {"line": 668, "command": "jc 2>&1 | jc --netstat -p"}, {"line": 669, "command": "jc 2>&1 | jc --uname -p"}, {"line": 670, "command": "jc"}, {"line": 671, "command": "journalctl "}, {"line": 672, "command": "man journalctl"}, {"line": 673, "command": "man journalctl -o=json"}, {"line": 674, "command": "journalctl -o=json"}, {"line": 675, "command": "journalctl -o json"}, {"line": 676, "command": "journalctl -o json >journaljson"}, {"line": 677, "command": "cat journaljson "}, {"line": 678, "command": "dig"}, {"line": 679, "command": "uptime"}, {"line": 680, "command": "uptime --help"}, {"line": 681, "command": "uptime -p"}, {"line": 682, "command": "uptime -s"}, {"line": 683, "command": "uptime "}, {"line": 684, "command": "date"}, {"line": 685, "command": "uptime"}, {"line": 686, "command": "history"}, {"line": 687, "command": "pip3 uninstall jc"}, {"line": 688, "command": "cd git/"}, {"line": 689, "command": "ls"}, {"line": 690, "command": "history | grep clone"}, {"line": 691, "command": "git clone --single-branch --branch dev https://github.com/kellyjonbrazil/jc.git"}, {"line": 692, "command": "cd jc"}, {"line": 693, "command": "pip3 install --upgrade --user -e ."}, {"line": 694, "command": "jc"}, {"line": 695, "command": "w | jc --w -p"}, {"line": 696, "command": "history | jc --history"}, {"line": 697, "command": "history"}, {"line": 698, "command": "history | jc --history -p"}, {"line": 699, "command": "history | head"}, {"line": 700, "command": "cd jc/parsers/"}, {"line": 701, "command": "vi history.py "}, {"line": 702, "command": "history | jc --history -p"}, {"line": 703, "command": "vi history.py "}, {"line": 704, "command": "history | jc --history -p"}, {"line": 705, "command": "echo \"hello\""}, {"line": 706, "command": "history | jc --history -p"}, {"line": 707, "command": "cat history.py "}, {"line": 708, "command": "rm history.py "}, {"line": 709, "command": "vi history.py"}, {"line": 710, "command": "history | jc --history -p"}, {"line": 711, "command": "history | jc --history"}, {"line": 712, "command": "history | jc --history -p"}, {"line": 713, "command": "history | jc --history -p | jq .1700"}, {"line": 714, "command": "history | jc --history -p | jq .1709"}, {"line": 715, "command": "history | jc --history | jq .1709"}, {"line": 716, "command": "history | jc --history | jq ."}, {"line": 717, "command": "history | jc --history | jq .\"1713\""}, {"line": 718, "command": "history | jc --history | jq .[1713]"}, {"line": 719, "command": "history | jc --history | jq .[\"1713\"]"}, {"line": 720, "command": "history | jc --history | jq '.1713'"}, {"line": 721, "command": "history | jc --history | jq '.[1713]'"}, {"line": 722, "command": "history | jc --history | jq '.[\"1713\"]'"}, {"line": 723, "command": "rm history.py "}, {"line": 724, "command": "vi history.py"}, {"line": 725, "command": "history | jc --history -p"}, {"line": 726, "command": "history | jc --history -p | jq .n1723"}, {"line": 727, "command": "cd ~"}, {"line": 728, "command": "pip3 uninstall jc"}, {"line": 729, "command": "cd git/"}, {"line": 730, "command": "rm -rf jc/"}, {"line": 731, "command": "history | grep clone"}, {"line": 732, "command": "git clone --single-branch --branch dev https://github.com/kellyjonbrazil/jc.git"}, {"line": 733, "command": "cd jc/"}, {"line": 734, "command": "pip3 install --upgrade --user -e ."}, {"line": 735, "command": "jc"}, {"line": 736, "command": "history | jc --history -p"}, {"line": 737, "command": "jc"}, {"line": 738, "command": "w | jc --w -p"}, {"line": 739, "command": "uptime | jc --uptime -p"}, {"line": 740, "command": "ls"}, {"line": 741, "command": "stat build-package.sh "}, {"line": 742, "command": "ls"}, {"line": 743, "command": "stat jc.egg-info/"}, {"line": 744, "command": "stat README.md "}, {"line": 745, "command": "lstat"}, {"line": 746, "command": "cd /proc/"}, {"line": 747, "command": "ls"}, {"line": 748, "command": "cd 1"}, {"line": 749, "command": "ls"}, {"line": 750, "command": "ls -al"}, {"line": 751, "command": "cd attr/"}, {"line": 752, "command": "ls"}, {"line": 753, "command": "ls -al"}, {"line": 754, "command": "cat current "}, {"line": 755, "command": "cat exec "}, {"line": 756, "command": "cat prev "}, {"line": 757, "command": "dig"}, {"line": 758, "command": "sudo yum install dig"}, {"line": 759, "command": "sudo yum install bind-utils"}, {"line": 760, "command": "dig"}, {"line": 761, "command": "dig www.google.com"}, {"line": 762, "command": "dig www.cnn.com"}, {"line": 763, "command": "man dig"}, {"line": 764, "command": "dig www.cnn.com www.google.com"}, {"line": 765, "command": "pip3 list"}, {"line": 766, "command": "cd ~/git/jc/jc/parsers/"}, {"line": 767, "command": "rm history.py "}, {"line": 768, "command": "vi history.py"}, {"line": 769, "command": "history | jc --history"}, {"line": 770, "command": "history | jc --history -p"}, {"line": 771, "command": "ifconfig | jc --ifconfig -p"}, {"line": 772, "command": "rm iptables.py "}, {"line": 773, "command": "vi iptables.py"}, {"line": 774, "command": "iptables -L | jc --iptables -p"}, {"line": 775, "command": "sudo iptables -L | jc --iptables -p"}, {"line": 776, "command": "lsblk | jc --lsblk -p"}, {"line": 777, "command": "rm lsblk.py "}, {"line": 778, "command": "vi lsblk.py"}, {"line": 779, "command": "lsblk | jc --lsblk -p"}, {"line": 780, "command": "rm lsmod.py "}, {"line": 781, "command": "vi lsmod.py"}, {"line": 782, "command": "lsmod"}, {"line": 783, "command": "lsmod | jc --lsmod -p"}, {"line": 784, "command": "rm lsof.py "}, {"line": 785, "command": "vi lsof.py"}, {"line": 786, "command": "lsof | jc --lsof -p"}, {"line": 787, "command": "sudo lsof | jc --lsof -p"}, {"line": 788, "command": "sudo lsof | jc --lsof | jq ."}, {"line": 789, "command": "ps | jc --ps -p"}, {"line": 790, "command": "clear"}, {"line": 791, "command": "rm ps.py "}, {"line": 792, "command": "vi ps.py"}, {"line": 793, "command": "ps | jc --ps -p"}, {"line": 794, "command": "ps axu | jc --ps -p"}, {"line": 795, "command": "rm ps.py "}, {"line": 796, "command": "vi ps.py"}, {"line": 797, "command": "ps | jc --ps -p"}, {"line": 798, "command": "ps axu | jc --ps -p"}, {"line": 799, "command": "ps -ef | jc --ps -p"}, {"line": 800, "command": "ps -ef | jc --ps -p | jq ."}, {"line": 801, "command": "ps axu | jc --ps -p | jq ."}, {"line": 802, "command": "ps -ef | jc --ps -p"}, {"line": 803, "command": "ls"}, {"line": 804, "command": "rm route.py "}, {"line": 805, "command": "vi route.py"}, {"line": 806, "command": "route | jc --route -p"}, {"line": 807, "command": "w | jc --w -p"}, {"line": 808, "command": "rm w.py "}, {"line": 809, "command": "vi w.py"}, {"line": 810, "command": "w | jc --w -p"}, {"line": 811, "command": "rm ls.py "}, {"line": 812, "command": "vi ls.py"}, {"line": 813, "command": "ls -lh | jc --ps -p"}, {"line": 814, "command": "ls | jc --ls -p"}, {"line": 815, "command": "ls -alh | jc --ls -p"}, {"line": 816, "command": "ls -lh | jc --ls -p"}, {"line": 817, "command": "ls -l /usr/bin | jc --ls | jq '.[] | select(.bytes|tonumber > 50000000)'"}, {"line": 818, "command": "ls -l /usr/bin | jc --ls | jq '.[] | select(.size|tonumber > 50000000)'"}, {"line": 819, "command": "ls -l /usr/bin | jc --ls | jq '.[] | select(.size|tonumber > 5000000)'"}, {"line": 820, "command": "$ ls -l /bin | jc --ls -p"}, {"line": 821, "command": "ls -l /bin | jc --ls -p"}, {"line": 822, "command": "python3"}, {"line": 823, "command": "rm jobs.py "}, {"line": 824, "command": "vi jobs.py"}, {"line": 825, "command": "sleep 1000 &"}, {"line": 826, "command": "sleep 1001 &"}, {"line": 827, "command": "sleep 1002 &"}, {"line": 828, "command": "sleep 1003 &"}, {"line": 829, "command": "jobs | jc --jobs -p"}, {"line": 830, "command": "jobs -l | jc --jobs -p"}, {"line": 831, "command": "rm ls.py "}, {"line": 832, "command": "vi ls.py"}, {"line": 833, "command": "ls -al | jc --ls -p"}, {"line": 834, "command": "ls -alh | jc --ls -p"}, {"line": 835, "command": "ls -al /usr/bin | jc --ls -p"}, {"line": 836, "command": "ls /usr/bin | jc --ls -p"}, {"line": 837, "command": "rm netstat.py "}, {"line": 838, "command": "vi netstat.py"}, {"line": 839, "command": "history | grep netstat"}, {"line": 840, "command": "netstat -l | jc --netstat -p"}, {"line": 841, "command": "netstat -lv | jc --netstat -p"}, {"line": 842, "command": "netstat -ln | jc --netstat -p"}, {"line": 843, "command": "sudo netstat -lpn | jc --netstat -p"}, {"line": 844, "command": "sudo systemctl restart"}, {"line": 845, "command": "reboot"}, {"line": 846, "command": "jc"}, {"line": 847, "command": "w | jc --w -p"}, {"line": 848, "command": "uptime | jc --uptime -p"}, {"line": 849, "command": "uptime"}, {"line": 850, "command": "cd git/jc/jc/parsers/"}, {"line": 851, "command": "rm uptime.py "}, {"line": 852, "command": "vi uptime.py"}, {"line": 853, "command": "uptime | jc --uptime -p"}, {"line": 854, "command": "~/resizeterm.sh "}, {"line": 855, "command": "rm uptime.py "}, {"line": 856, "command": "vi uptime.py"}, {"line": 857, "command": "uptime | jc --uptime -p"}, {"line": 858, "command": "w | jc --w -p"}, {"line": 859, "command": "uptime | jc --uptime -p"}, {"line": 860, "command": "cd .."}, {"line": 861, "command": "ls"}, {"line": 862, "command": "rm jc.py "}, {"line": 863, "command": "vi jc.py"}, {"line": 864, "command": "lsof | jc --lsof -p"}, {"line": 865, "command": "cat jc.py "}, {"line": 866, "command": "uptime | jc --uptime -p"}, {"line": 867, "command": "vi jc.py "}, {"line": 868, "command": "rm jc.py "}, {"line": 869, "command": "vi jc.py"}, {"line": 870, "command": "jc"}, {"line": 871, "command": "lsof | jc --lsof -p"}, {"line": 872, "command": "uptime | jc --uptime -p"}, {"line": 873, "command": "lsof | jc --lsof -p"}, {"line": 874, "command": "sudo lsof | jc --lsof -p"}, {"line": 875, "command": "uptime | jc --uptime -p"}, {"line": 876, "command": "ls"}, {"line": 877, "command": "cd .."}, {"line": 878, "command": "ls"}, {"line": 879, "command": "pip3 uninstall jc"}, {"line": 880, "command": "rm -rf jc/"}, {"line": 881, "command": "history | grep clone"}, {"line": 882, "command": "git clone --single-branch --branch dev https://github.com/kellyjonbrazil/jc.git"}, {"line": 883, "command": "cd jc/"}, {"line": 884, "command": "pip3 install --upgrade --user -e ."}, {"line": 885, "command": "jc"}, {"line": 886, "command": "uptime | jc --uptime -p"}, {"line": 887, "command": "uptime | jc --uptime"}, {"line": 888, "command": "lsof | jc --lsof -p"}, {"line": 889, "command": "ls"}, {"line": 890, "command": "cat changelog.txt "}, {"line": 891, "command": "env | jc -env -p"}, {"line": 892, "command": "env | jc --env -p"}, {"line": 893, "command": "history | jc --history -p"}, {"line": 894, "command": "history | jc --history | jq 'select(\"vi\")'"}, {"line": 895, "command": "history | jc --history | jq 'select(.value=\"ls\")'"}, {"line": 896, "command": "history | jc --history | jq 'select(.value==\"ls\")'"}, {"line": 897, "command": "history | jc --history | jq 'select(.value==\"jc\")'"}, {"line": 898, "command": "history | jc --history | jq 'select(.value == jc)'"}, {"line": 899, "command": "history | jc --history -p"}, {"line": 900, "command": "uptime | jc --uptime -p"}, {"line": 901, "command": "pip3 list"}, {"line": 902, "command": "pip3 install --upgrade pip"}, {"line": 903, "command": "pip3 install --upgrade --user pip"}, {"line": 904, "command": "pip3 list"}, {"line": 905, "command": "jc"}, {"line": 906, "command": "df | jc --df -p"}, {"line": 907, "command": "jc"}, {"line": 908, "command": "env | jc --env -p"}, {"line": 909, "command": "env | jc --env"}, {"line": 910, "command": "env | jc --env | jq '. paths'"}, {"line": 911, "command": "env | jc --env | jq 'paths()'"}, {"line": 912, "command": "env | jc --env | jq '[paths(\"ls\")]'"}, {"line": 913, "command": "env"}, {"line": 914, "command": "env | jc --env | jq '[paths(\"kbrazil\")]'"}, {"line": 915, "command": "uptime | jc --uptime -p"}, {"line": 916, "command": "jc"}, {"line": 917, "command": "free | jc --free -p"}, {"line": 918, "command": "history | jc --history"}, {"line": 919, "command": "jc"}, {"line": 920, "command": "ifconfig | jc --ifconfig -p"}, {"line": 921, "command": "jc"}, {"line": 922, "command": "sudo iptables -vnL | jc --iptables -p"}, {"line": 923, "command": "jc"}, {"line": 924, "command": "sudo iptables -vnL | jc --iptables -p"}, {"line": 925, "command": "ls"}, {"line": 926, "command": "jc"}, {"line": 927, "command": "jobs | jc --jobs -p"}, {"line": 928, "command": "jobs -p| jc --jobs -p"}, {"line": 929, "command": "jobs -a| jc --jobs -p"}, {"line": 930, "command": "jobs -l| jc --jobs -p"}, {"line": 931, "command": "sleep 100 &"}, {"line": 932, "command": "jobs -l| jc --jobs -p"}, {"line": 933, "command": "jc"}, {"line": 934, "command": "ls -alh | jc --ls -p"}, {"line": 935, "command": "jc"}, {"line": 936, "command": "lsblk | jc --lsblk -p"}, {"line": 937, "command": "uptime | jc --uptime -p"}, {"line": 938, "command": "jc"}, {"line": 939, "command": "lsmod | jc --lsmod -p"}, {"line": 940, "command": "jc"}, {"line": 941, "command": "lsof | jc --lsof -p"}, {"line": 942, "command": "sudo lsof | jc --lsof -p"}, {"line": 943, "command": "uptime | jc --uptime -p"}, {"line": 944, "command": "uptime | jc --uptime | jq ."}, {"line": 945, "command": "uptime"}, {"line": 946, "command": "uptime | jc --uptime | jq ."}, {"line": 947, "command": "uptime | jc --uptime -p"}, {"line": 948, "command": "cd jc/parsers/"}, {"line": 949, "command": "rm uptime.py "}, {"line": 950, "command": "vi uptime.py"}, {"line": 951, "command": "uptime | jc --uptime -p"}, {"line": 952, "command": "rm uptime.py "}, {"line": 953, "command": "vi uptime.py"}, {"line": 954, "command": "rm uptime.py "}, {"line": 955, "command": "vi uptime.py"}, {"line": 956, "command": "uptime | jc --uptime -p"}, {"line": 957, "command": "uptime"}, {"line": 958, "command": "rm uptime.py "}, {"line": 959, "command": "vi uptime.py"}, {"line": 960, "command": "uptime | jc --uptime -p"}, {"line": 961, "command": "rm uptime.py "}, {"line": 962, "command": "vi uptime.py"}, {"line": 963, "command": "uptime | jc --uptime -p"}, {"line": 964, "command": "rm uptime.py "}, {"line": 965, "command": "vi uptime.py"}, {"line": 966, "command": "uptime | jc --uptime -p"}, {"line": 967, "command": "rm uptime.py "}, {"line": 968, "command": "vi uptime.py"}, {"line": 969, "command": "uptime | jc --uptime -p"}, {"line": 970, "command": "reboot"}, {"line": 971, "command": "uptime"}, {"line": 972, "command": "uptime | jc --uptime -p"}, {"line": 973, "command": "python3"}, {"line": 974, "command": "uptime | sed -E 's/.*(up.*), [[:digit:]]+ user.*/\\1/'"}, {"line": 975, "command": "echo '22:19 up 54 days, 1 min, 4 users, load averages: 2.08 2.06 2.27' | sed -E 's/.*(up.*), [[:digit:]]+ user.*/\\1/'"}, {"line": 976, "command": "~/resizeterm.sh "}, {"line": 977, "command": "echo '22:19 up 54 days, 1 min, 4 users, load averages: 2.08 2.06 2.27' | sed -E 's/.*(up.*), [[:digit:]]+ user.*/\\1/'"}, {"line": 978, "command": "uptime | jc --uptime -p"}, {"line": 979, "command": "cd git/jc/jc/parsers/"}, {"line": 980, "command": "rm uptime.py "}, {"line": 981, "command": "vi uptime.py"}, {"line": 982, "command": "uptime | jc --uptime -p"}, {"line": 983, "command": "rm uptime.py "}, {"line": 984, "command": "vi uptime.py"}, {"line": 985, "command": "uptime | jc --uptime -p"}, {"line": 986, "command": "python3"}, {"line": 987, "command": "uptime | jc --uptime -p"}, {"line": 988, "command": "rm uptime.py "}, {"line": 989, "command": "vi uptime.py"}, {"line": 990, "command": "uptime | jc --uptime -p"}, {"line": 991, "command": "rm uptime.py "}, {"line": 992, "command": "vi uptime.py"}, {"line": 993, "command": "uptime | jc --uptime -p"}, {"line": 994, "command": "reboot"}, {"line": 995, "command": "ls"}, {"line": 996, "command": "w"}, {"line": 997, "command": "mkdir testfiles"}, {"line": 998, "command": "ls"}, {"line": 999, "command": "cat testfile"}, {"line": 1000, "command": "rm testfile"}, {"line": 1001, "command": "ls"}, {"line": 1002, "command": "cd testfiles/"}, {"line": 1003, "command": "vi tests.sh"}, {"line": 1004, "command": "chmod +x tests.sh "}, {"line": 1005, "command": "ls"}, {"line": 1006, "command": "./tests.sh "}, {"line": 1007, "command": "ls"}, {"line": 1008, "command": "cat jobs.out "}, {"line": 1009, "command": "cat w.out "}, {"line": 1010, "command": "cat uname-a.out "}, {"line": 1011, "command": "jc"}, {"line": 1012, "command": "rm tests.sh "}, {"line": 1013, "command": "vi tests.sh"}, {"line": 1014, "command": "chmod +x tests.sh "}, {"line": 1015, "command": "./tests.sh "}, {"line": 1016, "command": "uptime "}, {"line": 1017, "command": "rm tests.sh "}, {"line": 1018, "command": "vi tests.sh"}, {"line": 1019, "command": "chmod +x tests.sh "}, {"line": 1020, "command": "./tests.sh "}, {"line": 1021, "command": "ls"}, {"line": 1022, "command": "cat uptime.out "}, {"line": 1023, "command": "cat uptime.out | jc --uptime -p"}, {"line": 1024, "command": "route -n > route-n.out"}, {"line": 1025, "command": "cat route-n.out "}, {"line": 1026, "command": "route -vn"}, {"line": 1027, "command": "rm route-n.out "}, {"line": 1028, "command": "ls"}, {"line": 1029, "command": "cat iptables-filter-nv.out "}, {"line": 1030, "command": "cat iptables-filter-nv.out | jc --iptables -p"}, {"line": 1031, "command": "ls"}, {"line": 1032, "command": "cat iptables-mangle.out "}, {"line": 1033, "command": "rm tests.sh "}, {"line": 1034, "command": "vi tests.sh"}, {"line": 1035, "command": "chmod +x tests.sh "}, {"line": 1036, "command": "./tests.sh "}, {"line": 1037, "command": "ls"}, {"line": 1038, "command": "ls -al"}, {"line": 1039, "command": "cat history.out "}, {"line": 1040, "command": "history"}, {"line": 1041, "command": "history > kbhistory.out"}, {"line": 1042, "command": "cat kbhistory.out "}, {"line": 1043, "command": "rm kbhistory.out "}, {"line": 1044, "command": "ls"}, {"line": 1045, "command": "ls -al"}, {"line": 1046, "command": "rm tests.sh "}, {"line": 1047, "command": "vi tests.sh"}, {"line": 1048, "command": "chmod +x tests.sh "}, {"line": 1049, "command": "./tests.sh "}, {"line": 1050, "command": "ls -al"}, {"line": 1051, "command": "vi iptables-filter.out "}, {"line": 1052, "command": "uname -a"}, {"line": 1053, "command": "cd /"}, {"line": 1054, "command": "ls"}, {"line": 1055, "command": "cd etc/"}, {"line": 1056, "command": "ls"}, {"line": 1057, "command": "cat environment "}, {"line": 1058, "command": "cat centos-release"}, {"line": 1059, "command": "lsb_release -a"}, {"line": 1060, "command": "ifconfig"}, {"line": 1061, "command": "cd ~"}, {"line": 1062, "command": "ls"}, {"line": 1063, "command": "cd testfiles/"}, {"line": 1064, "command": "history > history.out "}] jc-1.17.3/tests/fixtures/centos-7.7/history.out000066400000000000000000000625571415226333200212700ustar00rootroot00000000000000 65 sudo iptables -w -vL -t filter | jc --iptables -p 66 sudo iptables -vnL -t filter | jc --iptables -p 67 sudo iptables -vnL -t filter 68 rm iptables.py 69 vi iptables.py 70 sudo iptables -vnL -t filter | jc --iptables -p 71 sudo iptables -vL -t filter | jc --iptables -p 72 sudo iptables -L -t filter | jc --iptables -p 73 sudo iptables -L -t nat | jc --iptables -p 74 sudo iptables -vnL -t filter | jc --iptables -p 75 sudo iptables -vnL -t filter | jc 76 sudo iptables -vnL -t filter | jc --iptables 77 sudo iptables -vnL -t raw | jc --iptables 78 sudo iptables -vnL -t raw | jc --iptables -p 79 jobs 80 sleep 100 & 81 jobs 82 sleep 101 & 83 jobs 84 sleep 102 & 85 jobs 86 sleep 103 & 87 jobs 88 iptable 89 sudo iptables -L | jc --iptables 90 sudo iptables -L | jc --iptables -p 91 sudo iptables -L | jc --iptables | jq . 92 pip3 install jq 93 pip3 install --user jq 94 jq 95 yum install jq 96 sudo yum install jq 97 sudo dnf install jq 98 curl https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64 99 ls 100 ls -al 101 cd ~ 102 curl https://github-production-release-asset-2e65be.s3.amazonaws.com/5101141/6387d980-de1f-11e8-8d3e-4455415aa408?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20191023%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20191023T000342Z&X-Amz-Expires=300&X-Amz-Signature=6d4aad2941c281a57ea469d57115f0a3d877fc24998ded52e1c51cbf7b482705&X-Amz-SignedHeaders=host&actor_id=0&response-content-disposition=attachment%3B%20filename%3Djq-linux64&response-content-type=application%2Foctet-stream 103 ls 104 curl 'https://github-production-release-asset-2e65be.s3.amazonaws.com/5101141/6387d980-de1f-11e8-8d3e-4455415aa408?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20191023%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20191023T000342Z&X-Amz-Expires=300&X-Amz-Signature=6d4aad2941c281a57ea469d57115f0a3d877fc24998ded52e1c51cbf7b482705&X-Amz-SignedHeaders=host&actor_id=0&response-content-disposition=attachment%3B%20filename%3Djq-linux64&response-content-type=application%2Foctet-stream' 105 ifconfig 106 ls 107 chmod jq-linux64 108 chmod +x jq-linux64 109 ./jq-linux64 110 mv jq-linux64 jq 111 sudo mv jq /usr/local/bin/ 112 jq 113 iptables -L | jc --iptables | jq . 114 sudo iptables -L | jc --iptables | jq . 115 sudo iptables -L 116 sudo iptables -vL 117 sudo iptables -vL | jc --iptables | jq . 118 df | jc --df -p 119 cd ~ 120 pip3 uninstall jc 121 cd git/ 122 ls 123 rm -rf jc/ 124 history | grep clone 125 git clone https://github.com/kellyjonbrazil/jc.git 126 ls 127 cd jc/ 128 ./build-package.sh 129 ./pypi-upload.sh 130 cd .. 131 ls 132 pip3 uninstall jc 133 rm -rf jc/ 134 pip3 install --user --upgrade jc 135 iptables -L | jc --iptables | jq 136 sudo iptables -L | jc --iptables | jq 137 mount | jc --mount -p 138 uname -a | jc --uname 139 uname -a | jc --uname -p 140 df | jc --df -p 141 free | jc --free -p 142 lsblk | jc --lsblk -p 143 ls | jc 144 env | jc --env -p 145 ls | jc 146 route | jc --route -p 147 iptables -L | jc --iptables | jq . 148 sudo iptables -L | jc --iptables | jq . 149 ls 150 pip3 uninstall jc 151 history | grep clone 152 git clone --single-branch --branch dev https://github.com/kellyjonbrazil/jc.git 153 cd jc/ 154 pip3 install --user --upgrade -e . 155 sudo iptables -L | jc --iptables -p 156 sudo iptables -L | jc --iptables 157 sudo iptables -L | jc --iptables | jq . 158 pip3 list 159 cd jc 160 ls 161 vi jc.py 162 jc 163 ls | jc 164 vi jc.py 165 jc 166 ls | jc 167 cat 168 jc 169 vi jc.py 170 jc 171 ls | jc 172 vi jc.py 173 jc 174 vi jc.py 175 jc 176 ls | jc 177 vi jc.py 178 jc 179 ls | jc 180 ls | jc --ls 181 jc << ls -l 182 jc < ls -l 183 jc < ls / -l 184 jc < ls -l / 185 jc <<< ls -l / 186 jc --ls <<< ls -l / 187 jc --ls -p <<< ls -l / 188 jc --ls -p <<< 'ls -a /' 189 cat jc.py 190 ls 191 rm jc.py 192 vi jc.py 193 jc 194 rm jc.py 195 vi jc.py 196 jc 197 jc --ls 198 ls | jc --ls 199 ls -al | jc --ls 200 ls -al | jc --ls -p 201 ls -al | jc --p 202 jc 203 sudo iptables -L | jc --iptables -p 204 mount | jc --mount -p 205 jc 206 jc --mount 207 ps | jc --hello 208 jc 209 jq 210 jq --help 211 jc 212 ps | jc -p 213 ps | jc -p --ps 214 jc -p --ps 215 ps -ef | jc -p --ps | jq . 216 jc 217 df | jc --df 218 env | jc --env 219 free | jc --free 220 ifconfig | jc --ifconfig 221 jc 222 iptables -L | jc --iptables 223 sudo iptables -L | jc --iptables 224 jc 225 ls -l | jc --ls 226 lsblk | jc --lsblk 227 mount | jc --mount 228 jc 229 netstat -l | jc --netstat 230 ps -ef | jc --ps 231 jc 232 route | jc --route 233 uname -a | jc --uname 234 cd parsers/ 235 rm iptables.py 236 vi iptables.py 237 sudo iptables -L | jc --iptables 238 sudo iptables -L | jc --iptables -p 239 lsof 240 journalctl 241 python3 242 ls 243 vi jobs.py 244 cd .. 245 ls 246 rm jc.py 247 vi jc.py 248 sleep 500 & 249 sleep 501 & 250 sleep 502 & 251 sleep 503 & 252 jobs 253 jobs | jc --jobs 254 jobs -l | jc --jobs 255 jobs -l 256 python3 257 ls 258 cd parsers/ 259 ls 260 rm jobs.py 261 vi jobs.py 262 jobs | jc --jobs 263 jobs 264 rm jobs 265 rm jobs.py 266 vi jobs 267 vi jobs.py 268 jobs | jc --jobs -p 269 jobs -l | jc --jobs -p 270 jobs 271 sleep 500 & 272 sleep 501 & 273 sleep 502 & 274 sleep 503 & 275 jobs -l | jc --jobs -p 276 jobs | jc --jobs -p 277 rm jobs.py 278 vi jobs.py 279 jobs | jc --jobs -p 280 jobs -l | jc --jobs -p 281 jobs 282 jobs -l 283 rm jobs.py 284 vi jobs.py 285 jobs -l | jc --jobs -p 286 rm jobs.py 287 vi jobs.py 288 sleep 500 & 289 sleep 501 & 290 sleep 502 & 291 sleep 503 & 292 sleep 504 & 293 jobs 294 jobs -l | jc --jobs -p 295 rm jobs.py 296 vi jobs.py 297 sleep 1000 & 298 sleep 1001 & 299 sleep 1002 & 300 sleep 1003 & 301 sleep 1004 & 302 jobs | jc --jobs -p 303 jobs -l | jc --jobs -p 304 python3 305 rm jobs.py 306 vi jobs.py 307 jobs | jc --jobs -p 308 rm jobs.py 309 vi jobs.py 310 jobs | jc --jobs -p 311 rm jobs.py 312 vi jobs.py 313 jobs | jc --jobs -p 314 rm jobs.py 315 vi jobs.py 316 jobs | jc --jobs -p 317 jobs -l | jc --jobs -p 318 jobs | jc --jobs -p 319 rm jobs.py 320 vi jobs.py 321 jobs | jc --jobs -p 322 """jc - JSON CLI output utility jobs Parser 323 Usage: 324 specify --jobs as the first argument if the piped input is coming from jobs 325 Examples: 326 """ 327 import string 328 def parse(data): 329 output = [] 330 linedata = data.splitlines() 331 # Clear any blank lines 332 cleandata = list(filter(None, linedata)) 333 if cleandata:; for entry in cleandata:; output_line = {} 334 job_number = '' 335 pid = '' 336 job_history = '' 337 parsed_line = entry.split(maxsplit=2) 338 print(parsed_line) 339 # check if -l was used 340 if parsed_line[1][0] in string.digits:; pid = parsed_line.pop(1) 341 print(parsed_line) 342 # check for + or - in first field 343 if parsed_line[0].find('+') != -1: 344 job_history = 'current' 345 job_number = parsed_line[0].rstrip('+') 346 if pid:; remainder = parsed_line[1].split(maxsplit=1) 347 else: 348 remainder = list(parsed_line[1]) 349 remainder.insert(0, job_number) 350 parsed_line = remainder 351 if parsed_line[0].find('-') != -1: 352 job_history = 'previous' 353 job_number = parsed_line[0].rstrip('-') 354 if pid:; remainder = parsed_line[1].split(maxsplit=1) 355 else: 356 remainder = list(parsed_line[1]) 357 remainder = parsed_line[1].split(maxsplit=1) 358 remainder.insert(0, job_number) 359 parsed_line = remainder 360 # clean up first field 361 parsed_line[0] = parsed_line[0].lstrip('[').rstrip(']') 362 print(parsed_line) 363 # create list of dictionaries 364 # output_line['job_number'] = int(parsed_line[0]) 365 # if pid: 366 # output_line['pid'] = int(pid) 367 # if job_history: 368 # output_line['history'] = job_history 369 # output_line['status'] = parsed_line[1] 370 # output_line['command'] = parsed_line[2] 371 # output.append(output_line) 372 # return output 373 rm jobs.py 374 vi jobs.py 375 jobs | jc --jobs -p 376 jobs 377 sleep 378 sleep 1000 & 379 sleep 1001 & 380 sleep 1002 & 381 sleep 1003 & 382 sleep 1004 & 383 jobs | jc --jobs -p 384 jobs -l | jc --jobs -p 385 rm jobs.py 386 vi jobs.py 387 jobs -l | jc --jobs -p 388 jobs | jc --jobs -p 389 rm jobs.py 390 vi jobs.py 391 jobs | jc --jobs -p 392 jobs -l | jc --jobs -p 393 jobs 394 rm jobs.py 395 vi jobs.py 396 sleep 10000 & 397 sleep 10001 & 398 sleep 10002 & 399 sleep 10003 & 400 sleep 10004 & 401 jobs -l | jc --jobs -p 402 jobs | jc --jobs -p 403 rm jobs.py 404 vi jobs.py 405 jobs | jc --jobs -p 406 jobs -l| jc --jobs -p 407 rm jobs.py 408 vi jobs.py 409 jobs -l| jc --jobs -p 410 jobs | jc --jobs -p 411 rm jobs.py 412 vi jobs.py 413 jobs | jc --jobs -p 414 jobs -l | jc --jobs -p 415 rm jobs.py 416 vi jobs.py 417 jobs -l | jc --jobs -p 418 jobs| jc --jobs -p 419 jc 420 lsof 421 yum install lsof 422 sudo yum install lsof 423 lsof 424 vi lsof.py 425 cd .. 426 ls 427 rm jc.py 428 vi jc.py 429 lsof | jc --lsof 430 cd parsers/ 431 rm lsof.py 432 vi lsof.py 433 lsof | jc --lsof -p 434 rm lsof.py 435 vi lsof.py 436 lsof | jc --lsof -p 437 rm lsof.py 438 vi lsof.py 439 lsof | jc --lsof -p 440 rm lsof.py 441 vi lsof.py 442 lsof | jc --lsof -p 443 lsof | head 444 rm lsof.py 445 vi lsof.py 446 lsof | jc --lsof 447 rm lsof.py 448 vi lsof.py 449 lsof | jc --lsof 450 rm lsof.py 451 vi lsof.py 452 lsof | jc --lsof 453 rm lsof.py 454 vi lsof.py 455 lsof | jc --lsof 456 rm lsof.py 457 vi lsof.py 458 lsof | jc --lsof 459 rm lsof.py 460 vi lsof.py 461 lsof | jc --lsof 462 rm lsof.py 463 vi lsof.py 464 lsof | jc --lsof 465 rm lsof.py 466 vi lsof.py 467 lsof | jc --lsof 468 rm lsof.py 469 vi lsof.py 470 lsof | jc --lsof 471 python3 472 rm lsof.py 473 vi lsof.py 474 lsof | jc --lsof 475 lsof 476 lsof | head 477 rm lsof.py 478 vi lsof.py 479 lsof | jc --lsof 480 lsof | tail 481 rm lsof.py 482 vi lsof.py 483 lsof | jc --lsof 484 rm lsof.py 485 vi lsof.py 486 lsof | jc --lsof 487 rm lsof.py 488 vi lsof.py 489 lsof | jc --lsof 490 rm lsof.py 491 vi lsof.py 492 lsof | jc --lsof 493 rm lsof.py 494 vi lsof.py 495 lsof | jc --lsof 496 ~/resizeterm.sh 497 rm lsof.py 498 vi lsof.py 499 lsof | jc --lsof 500 rm lsof.py 501 vi lsof.py 502 lsof | jc --lsof 503 rm lsof.py 504 vi lsof.py 505 lsof | jc --lsof 506 rm lsof.py 507 vi lsof.py 508 lsof | jc --lsof 509 rm lsof.py 510 vi lsof.py 511 lsof | jc --lsof 512 sudo lsof | jc --lsof 513 lsof 514 rm lsof.py 515 vi lsof.py 516 sudo lsof | jc --lsof 517 rm lsof.py 518 vi lsof.py 519 sudo lsof | jc --lsof -p 520 sudo lsof | more 521 rm lsof.py 522 vi lsof.py 523 sudo lsof | jc --lsof -p 524 lsof | jc --lsof -p 525 lsof | jc --lsof 526 lsof | jc --lsof | jq . 527 jc 528 sudo lsof | jc --lsof -p 529 man lsof 530 ~/resizeterm.sh 531 sudo lsof | jc --lsof -p 532 python3 533 lsmod 534 ~/resizeterm.sh 535 lsmod 536 cd ~ 537 pip3 uninstall jc 538 cd git/ 539 rm -rf jc/ 540 pip3 install --upgrade --user -e . 541 history | grep clone 542 git clone --single-branch --branch dev https://github.com/kellyjonbrazil/jc.git 543 cd jc/ 544 pip3 install --upgrade --user -e . 545 jc 546 lsmod | jc --lsmod -p 547 cd pypi-upload.sh 548 cd jc 549 cd parsers/ 550 ls 551 rm lsmod.py 552 vi lsmod.py 553 lsmod | jc --lsmod -p 554 rm lsmod.py 555 vi lsmod.py 556 lsmod | jc --lsmod -p 557 rm lsmod.py 558 vi lsmod.py 559 lsmod | jc --lsmod -p 560 rm lsmod.py 561 vi lsmod.py 562 lsmod | jc --lsmod -p 563 rm lsmod.py 564 vi lsmod.py 565 lsmod | jc --lsmod -p 566 rm lsmod.py 567 vi lsmod.py 568 lsmod | jc --lsmod -p 569 rm lsmod.py 570 vi lsmod.py 571 lsmod | jc --lsmod -p 572 rm lsmod.py 573 vi lsmod.py 574 lsmod | jc --lsmod -p 575 rm lsmod.py 576 vi lsmod.py 577 lsmod | jc --lsmod -p 578 jc 579 cd ~ 580 pip3 uninstall jc 581 cd git/ 582 rm -rf jc/ 583 history | grep clone 584 ls 585 git clone https://github.com/kellyjonbrazil/jc.git 586 cd jc/ 587 ls 588 ./build-package.sh 589 ls 590 ./pypi-upload.sh 591 cd .. 592 ls 593 pip3 uninstall jc 594 rm -rf jc/ 595 pip3 install --upgrade --user jc 596 pip3 list 597 jc 598 jc -p 599 sudo iptables -L | jc --iptables -p 600 jc 601 lsmod | jc --lsmod -p 602 jc 603 jobs 604 sleep 500 & 605 jobs -l | jc --jobs -p 606 jobs | jc --jobs -p 607 lsof 608 cd ~ 609 pip3 list 610 lsof | jc --lsof > testfile 611 cat testfile 612 iptables -L | jc --iptables > testfile 613 sudo iptables -L | jc --iptables > testfile 614 cat testfile 615 cat testfile | jq . 616 w 617 w -h 618 w --help 619 w -f 620 w -i 621 w -s 622 w -o 623 date 624 ls | jc --ls 625 ls | jc --ls | jq '.select("filename" = "git)' 626 ls | jc --ls | jq '.select(.filename="git)' 627 ls | jc --ls | jq '.select(.filename="git")' 628 ls | jc --ls | jq 'select(.filename == "git")' 629 ls | jc --ls | jq '.[] | select(.filename == "git")' 630 ls | jc --ls | jq -r '.[] | select(.filename == "git")' 631 ls | jc --ls | jq -r '.[] | select(.filename == "git") | .filename' 632 ifconfig | jc --ifconfig -p 633 jc -p 634 jc 635 ls | jc -p 636 ip 637 ip address 638 ip --help 639 ip address --help 640 ip address -h 641 ip -h address 642 ip -b address 643 ip -iec address 644 ip address 645 ip --help 646 ip -br address 647 ip -d address 648 ifconfig 649 cat 650 jc 651 jc | cat 652 jc > testing 653 cat testing 654 rm testing 655 jc &2 > testing 656 cat testing 657 ls 658 cat testing 659 rm testing 660 jc 2>&1 | jc --ls 661 jc 2>&1 | jc --ls -p 662 jc 2>&1 | jc --route -p 663 jc 2>&1 | jc --ps -p 664 jc 2>&1 | jc --iptables -p 665 jc 2>&1 | jc --lsof -p 666 jc 2>&1 | jc --ls -p 667 jc 2>&1 | jc --env -p 668 jc 2>&1 | jc --netstat -p 669 jc 2>&1 | jc --uname -p 670 jc 671 journalctl 672 man journalctl 673 man journalctl -o=json 674 journalctl -o=json 675 journalctl -o json 676 journalctl -o json >journaljson 677 cat journaljson 678 dig 679 uptime 680 uptime --help 681 uptime -p 682 uptime -s 683 uptime 684 date 685 uptime 686 history 687 pip3 uninstall jc 688 cd git/ 689 ls 690 history | grep clone 691 git clone --single-branch --branch dev https://github.com/kellyjonbrazil/jc.git 692 cd jc 693 pip3 install --upgrade --user -e . 694 jc 695 w | jc --w -p 696 history | jc --history 697 history 698 history | jc --history -p 699 history | head 700 cd jc/parsers/ 701 vi history.py 702 history | jc --history -p 703 vi history.py 704 history | jc --history -p 705 echo "hello" 706 history | jc --history -p 707 cat history.py 708 rm history.py 709 vi history.py 710 history | jc --history -p 711 history | jc --history 712 history | jc --history -p 713 history | jc --history -p | jq .1700 714 history | jc --history -p | jq .1709 715 history | jc --history | jq .1709 716 history | jc --history | jq . 717 history | jc --history | jq ."1713" 718 history | jc --history | jq .[1713] 719 history | jc --history | jq .["1713"] 720 history | jc --history | jq '.1713' 721 history | jc --history | jq '.[1713]' 722 history | jc --history | jq '.["1713"]' 723 rm history.py 724 vi history.py 725 history | jc --history -p 726 history | jc --history -p | jq .n1723 727 cd ~ 728 pip3 uninstall jc 729 cd git/ 730 rm -rf jc/ 731 history | grep clone 732 git clone --single-branch --branch dev https://github.com/kellyjonbrazil/jc.git 733 cd jc/ 734 pip3 install --upgrade --user -e . 735 jc 736 history | jc --history -p 737 jc 738 w | jc --w -p 739 uptime | jc --uptime -p 740 ls 741 stat build-package.sh 742 ls 743 stat jc.egg-info/ 744 stat README.md 745 lstat 746 cd /proc/ 747 ls 748 cd 1 749 ls 750 ls -al 751 cd attr/ 752 ls 753 ls -al 754 cat current 755 cat exec 756 cat prev 757 dig 758 sudo yum install dig 759 sudo yum install bind-utils 760 dig 761 dig www.google.com 762 dig www.cnn.com 763 man dig 764 dig www.cnn.com www.google.com 765 pip3 list 766 cd ~/git/jc/jc/parsers/ 767 rm history.py 768 vi history.py 769 history | jc --history 770 history | jc --history -p 771 ifconfig | jc --ifconfig -p 772 rm iptables.py 773 vi iptables.py 774 iptables -L | jc --iptables -p 775 sudo iptables -L | jc --iptables -p 776 lsblk | jc --lsblk -p 777 rm lsblk.py 778 vi lsblk.py 779 lsblk | jc --lsblk -p 780 rm lsmod.py 781 vi lsmod.py 782 lsmod 783 lsmod | jc --lsmod -p 784 rm lsof.py 785 vi lsof.py 786 lsof | jc --lsof -p 787 sudo lsof | jc --lsof -p 788 sudo lsof | jc --lsof | jq . 789 ps | jc --ps -p 790 clear 791 rm ps.py 792 vi ps.py 793 ps | jc --ps -p 794 ps axu | jc --ps -p 795 rm ps.py 796 vi ps.py 797 ps | jc --ps -p 798 ps axu | jc --ps -p 799 ps -ef | jc --ps -p 800 ps -ef | jc --ps -p | jq . 801 ps axu | jc --ps -p | jq . 802 ps -ef | jc --ps -p 803 ls 804 rm route.py 805 vi route.py 806 route | jc --route -p 807 w | jc --w -p 808 rm w.py 809 vi w.py 810 w | jc --w -p 811 rm ls.py 812 vi ls.py 813 ls -lh | jc --ps -p 814 ls | jc --ls -p 815 ls -alh | jc --ls -p 816 ls -lh | jc --ls -p 817 ls -l /usr/bin | jc --ls | jq '.[] | select(.bytes|tonumber > 50000000)' 818 ls -l /usr/bin | jc --ls | jq '.[] | select(.size|tonumber > 50000000)' 819 ls -l /usr/bin | jc --ls | jq '.[] | select(.size|tonumber > 5000000)' 820 $ ls -l /bin | jc --ls -p 821 ls -l /bin | jc --ls -p 822 python3 823 rm jobs.py 824 vi jobs.py 825 sleep 1000 & 826 sleep 1001 & 827 sleep 1002 & 828 sleep 1003 & 829 jobs | jc --jobs -p 830 jobs -l | jc --jobs -p 831 rm ls.py 832 vi ls.py 833 ls -al | jc --ls -p 834 ls -alh | jc --ls -p 835 ls -al /usr/bin | jc --ls -p 836 ls /usr/bin | jc --ls -p 837 rm netstat.py 838 vi netstat.py 839 history | grep netstat 840 netstat -l | jc --netstat -p 841 netstat -lv | jc --netstat -p 842 netstat -ln | jc --netstat -p 843 sudo netstat -lpn | jc --netstat -p 844 sudo systemctl restart 845 reboot 846 jc 847 w | jc --w -p 848 uptime | jc --uptime -p 849 uptime 850 cd git/jc/jc/parsers/ 851 rm uptime.py 852 vi uptime.py 853 uptime | jc --uptime -p 854 ~/resizeterm.sh 855 rm uptime.py 856 vi uptime.py 857 uptime | jc --uptime -p 858 w | jc --w -p 859 uptime | jc --uptime -p 860 cd .. 861 ls 862 rm jc.py 863 vi jc.py 864 lsof | jc --lsof -p 865 cat jc.py 866 uptime | jc --uptime -p 867 vi jc.py 868 rm jc.py 869 vi jc.py 870 jc 871 lsof | jc --lsof -p 872 uptime | jc --uptime -p 873 lsof | jc --lsof -p 874 sudo lsof | jc --lsof -p 875 uptime | jc --uptime -p 876 ls 877 cd .. 878 ls 879 pip3 uninstall jc 880 rm -rf jc/ 881 history | grep clone 882 git clone --single-branch --branch dev https://github.com/kellyjonbrazil/jc.git 883 cd jc/ 884 pip3 install --upgrade --user -e . 885 jc 886 uptime | jc --uptime -p 887 uptime | jc --uptime 888 lsof | jc --lsof -p 889 ls 890 cat changelog.txt 891 env | jc -env -p 892 env | jc --env -p 893 history | jc --history -p 894 history | jc --history | jq 'select("vi")' 895 history | jc --history | jq 'select(.value="ls")' 896 history | jc --history | jq 'select(.value=="ls")' 897 history | jc --history | jq 'select(.value=="jc")' 898 history | jc --history | jq 'select(.value == jc)' 899 history | jc --history -p 900 uptime | jc --uptime -p 901 pip3 list 902 pip3 install --upgrade pip 903 pip3 install --upgrade --user pip 904 pip3 list 905 jc 906 df | jc --df -p 907 jc 908 env | jc --env -p 909 env | jc --env 910 env | jc --env | jq '. paths' 911 env | jc --env | jq 'paths()' 912 env | jc --env | jq '[paths("ls")]' 913 env 914 env | jc --env | jq '[paths("kbrazil")]' 915 uptime | jc --uptime -p 916 jc 917 free | jc --free -p 918 history | jc --history 919 jc 920 ifconfig | jc --ifconfig -p 921 jc 922 sudo iptables -vnL | jc --iptables -p 923 jc 924 sudo iptables -vnL | jc --iptables -p 925 ls 926 jc 927 jobs | jc --jobs -p 928 jobs -p| jc --jobs -p 929 jobs -a| jc --jobs -p 930 jobs -l| jc --jobs -p 931 sleep 100 & 932 jobs -l| jc --jobs -p 933 jc 934 ls -alh | jc --ls -p 935 jc 936 lsblk | jc --lsblk -p 937 uptime | jc --uptime -p 938 jc 939 lsmod | jc --lsmod -p 940 jc 941 lsof | jc --lsof -p 942 sudo lsof | jc --lsof -p 943 uptime | jc --uptime -p 944 uptime | jc --uptime | jq . 945 uptime 946 uptime | jc --uptime | jq . 947 uptime | jc --uptime -p 948 cd jc/parsers/ 949 rm uptime.py 950 vi uptime.py 951 uptime | jc --uptime -p 952 rm uptime.py 953 vi uptime.py 954 rm uptime.py 955 vi uptime.py 956 uptime | jc --uptime -p 957 uptime 958 rm uptime.py 959 vi uptime.py 960 uptime | jc --uptime -p 961 rm uptime.py 962 vi uptime.py 963 uptime | jc --uptime -p 964 rm uptime.py 965 vi uptime.py 966 uptime | jc --uptime -p 967 rm uptime.py 968 vi uptime.py 969 uptime | jc --uptime -p 970 reboot 971 uptime 972 uptime | jc --uptime -p 973 python3 974 uptime | sed -E 's/.*(up.*), [[:digit:]]+ user.*/\1/' 975 echo '22:19 up 54 days, 1 min, 4 users, load averages: 2.08 2.06 2.27' | sed -E 's/.*(up.*), [[:digit:]]+ user.*/\1/' 976 ~/resizeterm.sh 977 echo '22:19 up 54 days, 1 min, 4 users, load averages: 2.08 2.06 2.27' | sed -E 's/.*(up.*), [[:digit:]]+ user.*/\1/' 978 uptime | jc --uptime -p 979 cd git/jc/jc/parsers/ 980 rm uptime.py 981 vi uptime.py 982 uptime | jc --uptime -p 983 rm uptime.py 984 vi uptime.py 985 uptime | jc --uptime -p 986 python3 987 uptime | jc --uptime -p 988 rm uptime.py 989 vi uptime.py 990 uptime | jc --uptime -p 991 rm uptime.py 992 vi uptime.py 993 uptime | jc --uptime -p 994 reboot 995 ls 996 w 997 mkdir testfiles 998 ls 999 cat testfile 1000 rm testfile 1001 ls 1002 cd testfiles/ 1003 vi tests.sh 1004 chmod +x tests.sh 1005 ls 1006 ./tests.sh 1007 ls 1008 cat jobs.out 1009 cat w.out 1010 cat uname-a.out 1011 jc 1012 rm tests.sh 1013 vi tests.sh 1014 chmod +x tests.sh 1015 ./tests.sh 1016 uptime 1017 rm tests.sh 1018 vi tests.sh 1019 chmod +x tests.sh 1020 ./tests.sh 1021 ls 1022 cat uptime.out 1023 cat uptime.out | jc --uptime -p 1024 route -n > route-n.out 1025 cat route-n.out 1026 route -vn 1027 rm route-n.out 1028 ls 1029 cat iptables-filter-nv.out 1030 cat iptables-filter-nv.out | jc --iptables -p 1031 ls 1032 cat iptables-mangle.out 1033 rm tests.sh 1034 vi tests.sh 1035 chmod +x tests.sh 1036 ./tests.sh 1037 ls 1038 ls -al 1039 cat history.out 1040 history 1041 history > kbhistory.out 1042 cat kbhistory.out 1043 rm kbhistory.out 1044 ls 1045 ls -al 1046 rm tests.sh 1047 vi tests.sh 1048 chmod +x tests.sh 1049 ./tests.sh 1050 ls -al 1051 vi iptables-filter.out 1052 uname -a 1053 cd / 1054 ls 1055 cd etc/ 1056 ls 1057 cat environment 1058 cat centos-release 1059 lsb_release -a 1060 ifconfig 1061 cd ~ 1062 ls 1063 cd testfiles/ 1064 history > history.out jc-1.17.3/tests/fixtures/centos-7.7/hosts.json000066400000000000000000000003371415226333200210550ustar00rootroot00000000000000[{"ip": "127.0.0.1", "hostname": ["localhost", "localhost.localdomain", "localhost4", "localhost4.localdomain4"]}, {"ip": "::1", "hostname": ["localhost", "localhost.localdomain", "localhost6", "localhost6.localdomain6"]}] jc-1.17.3/tests/fixtures/centos-7.7/hosts.out000066400000000000000000000003011415226333200207020ustar00rootroot00000000000000# comment line 127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4 ::1 localhost localhost.localdomain localhost6 localhost6.localdomain6 # this is a comment jc-1.17.3/tests/fixtures/centos-7.7/id.json000066400000000000000000000004131415226333200203040ustar00rootroot00000000000000{"uid": {"id": 1000, "name": "kbrazil"}, "gid": {"id": 1000, "name": "kbrazil"}, "groups": [{"id": 1000, "name": "kbrazil"}, {"id": 10, "name": "wheel"}], "context": {"user": "unconfined_u", "role": "unconfined_r", "type": "unconfined_t", "level": "s0-s0:c0.c1023"}} jc-1.17.3/tests/fixtures/centos-7.7/id.out000066400000000000000000000002011415226333200201350ustar00rootroot00000000000000uid=1000(kbrazil) gid=1000(kbrazil) groups=1000(kbrazil),10(wheel) context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 jc-1.17.3/tests/fixtures/centos-7.7/ifconfig.json000066400000000000000000000030761415226333200215040ustar00rootroot00000000000000[{"name": "docker0", "flags": 4099, "state": ["UP", "BROADCAST", "MULTICAST"], "mtu": 1500, "ipv4_addr": "172.17.0.1", "ipv4_mask": "255.255.0.0", "ipv4_bcast": "0.0.0.0", "mac_addr": "02:42:b1:9a:ea:02", "type": "Ethernet", "rx_packets": 0, "rx_bytes": 0, "rx_errors": 0, "rx_dropped": 0, "rx_overruns": 0, "rx_frame": 0, "tx_packets": 0, "tx_bytes": 0, "tx_errors": 0, "tx_dropped": 0, "tx_overruns": 0, "tx_carrier": 0, "tx_collisions": 0, "ipv6_addr": null, "ipv6_mask": null, "ipv6_scope": null, "metric": null}, {"name": "ens33", "flags": 4163, "state": ["UP", "BROADCAST", "RUNNING", "MULTICAST"], "mtu": 1500, "ipv4_addr": "192.168.71.137", "ipv4_mask": "255.255.255.0", "ipv4_bcast": "192.168.71.255", "ipv6_addr": "fe80::c1cb:715d:bc3e:b8a0", "ipv6_mask": 64, "ipv6_scope": "0x20", "mac_addr": "00:0c:29:3b:58:0e", "type": "Ethernet", "rx_packets": 8061, "rx_bytes": 1514413, "rx_errors": 0, "rx_dropped": 0, "rx_overruns": 0, "rx_frame": 0, "tx_packets": 4502, "tx_bytes": 866622, "tx_errors": 0, "tx_dropped": 0, "tx_overruns": 0, "tx_carrier": 0, "tx_collisions": 0, "metric": null}, {"name": "lo", "flags": 73, "state": ["UP", "LOOPBACK", "RUNNING"], "mtu": 65536, "ipv4_addr": "127.0.0.1", "ipv4_mask": "255.0.0.0", "ipv4_bcast": null, "ipv6_addr": "::1", "ipv6_mask": 128, "ipv6_scope": "0x10", "mac_addr": null, "type": "Local Loopback", "rx_packets": 73, "rx_bytes": 6009, "rx_errors": 0, "rx_dropped": 0, "rx_overruns": 0, "rx_frame": 0, "tx_packets": 73, "tx_bytes": 6009, "tx_errors": 0, "tx_dropped": 0, "tx_overruns": 0, "tx_carrier": 0, "tx_collisions": 0, "metric": null}] jc-1.17.3/tests/fixtures/centos-7.7/ifconfig.out000066400000000000000000000023531415226333200213370ustar00rootroot00000000000000docker0: flags=4099 mtu 1500 inet 172.17.0.1 netmask 255.255.0.0 broadcast 0.0.0.0 ether 02:42:b1:9a:ea:02 txqueuelen 0 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 ens33: flags=4163 mtu 1500 inet 192.168.71.137 netmask 255.255.255.0 broadcast 192.168.71.255 inet6 fe80::c1cb:715d:bc3e:b8a0 prefixlen 64 scopeid 0x20 ether 00:0c:29:3b:58:0e txqueuelen 1000 (Ethernet) RX packets 8061 bytes 1514413 (1.4 MiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 4502 bytes 866622 (846.3 KiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 lo: flags=73 mtu 65536 inet 127.0.0.1 netmask 255.0.0.0 inet6 ::1 prefixlen 128 scopeid 0x10 loop txqueuelen 1000 (Local Loopback) RX packets 73 bytes 6009 (5.8 KiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 73 bytes 6009 (5.8 KiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 jc-1.17.3/tests/fixtures/centos-7.7/iostat-1-streaming.json000066400000000000000000000024671415226333200233530ustar00rootroot00000000000000[{"percent_user":0.14,"percent_nice":0.0,"percent_system":0.16,"percent_iowait":0.0,"percent_steal":0.0,"percent_idle":99.7,"type":"cpu"},{"device":"sda","tps":0.24,"kb_read_s":5.24,"kb_wrtn_s":1.1,"kb_read":203305,"kb_wrtn":42533,"type":"device"},{"device":"dm-0","tps":0.25,"kb_read_s":4.39,"kb_wrtn_s":1.04,"kb_read":170325,"kb_wrtn":40464,"type":"device"},{"device":"dm-1","tps":0.0,"kb_read_s":0.06,"kb_wrtn_s":0.0,"kb_read":2204,"kb_wrtn":0,"type":"device"},{"percent_user":0.0,"percent_nice":0.0,"percent_system":0.0,"percent_iowait":0.0,"percent_steal":0.0,"percent_idle":100.0,"type":"cpu"},{"device":"sda","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"dm-0","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"dm-1","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"percent_user":0.0,"percent_nice":0.0,"percent_system":0.0,"percent_iowait":0.0,"percent_steal":0.0,"percent_idle":100.0,"type":"cpu"},{"device":"sda","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"dm-0","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"dm-1","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"}] jc-1.17.3/tests/fixtures/centos-7.7/iostat-1.json000066400000000000000000000024671415226333200213640ustar00rootroot00000000000000[{"percent_user":0.14,"percent_nice":0.0,"percent_system":0.16,"percent_iowait":0.0,"percent_steal":0.0,"percent_idle":99.7,"type":"cpu"},{"device":"sda","tps":0.24,"kb_read_s":5.24,"kb_wrtn_s":1.1,"kb_read":203305,"kb_wrtn":42533,"type":"device"},{"device":"dm-0","tps":0.25,"kb_read_s":4.39,"kb_wrtn_s":1.04,"kb_read":170325,"kb_wrtn":40464,"type":"device"},{"device":"dm-1","tps":0.0,"kb_read_s":0.06,"kb_wrtn_s":0.0,"kb_read":2204,"kb_wrtn":0,"type":"device"},{"percent_user":0.0,"percent_nice":0.0,"percent_system":0.0,"percent_iowait":0.0,"percent_steal":0.0,"percent_idle":100.0,"type":"cpu"},{"device":"sda","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"dm-0","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"dm-1","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"percent_user":0.0,"percent_nice":0.0,"percent_system":0.0,"percent_iowait":0.0,"percent_steal":0.0,"percent_idle":100.0,"type":"cpu"},{"device":"sda","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"dm-0","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"dm-1","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"}] jc-1.17.3/tests/fixtures/centos-7.7/iostat-1.out000066400000000000000000000024021415226333200212070ustar00rootroot00000000000000Linux 3.10.0-1062.1.2.el7.x86_64 (localhost.localdomain) 11/30/2021 _x86_64_ (1 CPU) avg-cpu: %user %nice %system %iowait %steal %idle 0.14 0.00 0.16 0.00 0.00 99.70 Device: tps kB_read/s kB_wrtn/s kB_read kB_wrtn sda 0.24 5.24 1.10 203305 42533 dm-0 0.25 4.39 1.04 170325 40464 dm-1 0.00 0.06 0.00 2204 0 avg-cpu: %user %nice %system %iowait %steal %idle 0.00 0.00 0.00 0.00 0.00 100.00 Device: tps kB_read/s kB_wrtn/s kB_read kB_wrtn sda 0.00 0.00 0.00 0 0 dm-0 0.00 0.00 0.00 0 0 dm-1 0.00 0.00 0.00 0 0 avg-cpu: %user %nice %system %iowait %steal %idle 0.00 0.00 0.00 0.00 0.00 100.00 Device: tps kB_read/s kB_wrtn/s kB_read kB_wrtn sda 0.00 0.00 0.00 0 0 dm-0 0.00 0.00 0.00 0 0 dm-1 0.00 0.00 0.00 0 0 jc-1.17.3/tests/fixtures/centos-7.7/iostat-m-streaming.json000066400000000000000000000006771415226333200234500ustar00rootroot00000000000000[{"percent_user":0.14,"percent_nice":0.0,"percent_system":0.16,"percent_iowait":0.0,"percent_steal":0.0,"percent_idle":99.7,"type":"cpu"},{"device":"sda","tps":0.24,"mb_read_s":0.01,"mb_wrtn_s":0.0,"mb_read":198,"mb_wrtn":41,"type":"device"},{"device":"dm-0","tps":0.25,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_read":166,"mb_wrtn":39,"type":"device"},{"device":"dm-1","tps":0.0,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_read":2,"mb_wrtn":0,"type":"device"}] jc-1.17.3/tests/fixtures/centos-7.7/iostat-m.json000066400000000000000000000006771415226333200214610ustar00rootroot00000000000000[{"percent_user":0.14,"percent_nice":0.0,"percent_system":0.16,"percent_iowait":0.0,"percent_steal":0.0,"percent_idle":99.7,"type":"cpu"},{"device":"sda","tps":0.24,"mb_read_s":0.01,"mb_wrtn_s":0.0,"mb_read":198,"mb_wrtn":41,"type":"device"},{"device":"dm-0","tps":0.25,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_read":166,"mb_wrtn":39,"type":"device"},{"device":"dm-1","tps":0.0,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_read":2,"mb_wrtn":0,"type":"device"}] jc-1.17.3/tests/fixtures/centos-7.7/iostat-m.out000066400000000000000000000007461415226333200213140ustar00rootroot00000000000000Linux 3.10.0-1062.1.2.el7.x86_64 (localhost.localdomain) 11/30/2021 _x86_64_ (1 CPU) avg-cpu: %user %nice %system %iowait %steal %idle 0.14 0.00 0.16 0.00 0.00 99.70 Device: tps MB_read/s MB_wrtn/s MB_read MB_wrtn sda 0.24 0.01 0.00 198 41 dm-0 0.25 0.00 0.00 166 39 dm-1 0.00 0.00 0.00 2 0 jc-1.17.3/tests/fixtures/centos-7.7/iostat-mx-streaming.json000066400000000000000000000014111415226333200236230ustar00rootroot00000000000000[{"percent_user":0.14,"percent_nice":0.0,"percent_system":0.16,"percent_iowait":0.0,"percent_steal":0.0,"percent_idle":99.7,"type":"cpu"},{"device":"sda","rrqm_s":0.0,"wrqm_s":0.02,"r_s":0.13,"w_s":0.11,"rmb_s":0.01,"wmb_s":0.0,"avgrq_sz":52.51,"avgqu_sz":0.0,"await":0.88,"r_await":0.53,"w_await":1.29,"svctm":0.52,"percent_util":0.01,"type":"device"},{"device":"dm-0","rrqm_s":0.0,"wrqm_s":0.0,"r_s":0.12,"w_s":0.13,"rmb_s":0.0,"wmb_s":0.0,"avgrq_sz":44.28,"avgqu_sz":0.0,"await":0.92,"r_await":0.54,"w_await":1.27,"svctm":0.5,"percent_util":0.01,"type":"device"},{"device":"dm-1","rrqm_s":0.0,"wrqm_s":0.0,"r_s":0.0,"w_s":0.0,"rmb_s":0.0,"wmb_s":0.0,"avgrq_sz":50.09,"avgqu_sz":0.0,"await":0.08,"r_await":0.08,"w_await":0.0,"svctm":0.08,"percent_util":0.0,"type":"device"}] jc-1.17.3/tests/fixtures/centos-7.7/iostat-mx.json000066400000000000000000000014111415226333200216340ustar00rootroot00000000000000[{"percent_user":0.14,"percent_nice":0.0,"percent_system":0.16,"percent_iowait":0.0,"percent_steal":0.0,"percent_idle":99.7,"type":"cpu"},{"device":"sda","rrqm_s":0.0,"wrqm_s":0.02,"r_s":0.13,"w_s":0.11,"rmb_s":0.01,"wmb_s":0.0,"avgrq_sz":52.51,"avgqu_sz":0.0,"await":0.88,"r_await":0.53,"w_await":1.29,"svctm":0.52,"percent_util":0.01,"type":"device"},{"device":"dm-0","rrqm_s":0.0,"wrqm_s":0.0,"r_s":0.12,"w_s":0.13,"rmb_s":0.0,"wmb_s":0.0,"avgrq_sz":44.28,"avgqu_sz":0.0,"await":0.92,"r_await":0.54,"w_await":1.27,"svctm":0.5,"percent_util":0.01,"type":"device"},{"device":"dm-1","rrqm_s":0.0,"wrqm_s":0.0,"r_s":0.0,"w_s":0.0,"rmb_s":0.0,"wmb_s":0.0,"avgrq_sz":50.09,"avgqu_sz":0.0,"await":0.08,"r_await":0.08,"w_await":0.0,"svctm":0.08,"percent_util":0.0,"type":"device"}] jc-1.17.3/tests/fixtures/centos-7.7/iostat-mx.out000066400000000000000000000012611415226333200214750ustar00rootroot00000000000000Linux 3.10.0-1062.1.2.el7.x86_64 (localhost.localdomain) 11/30/2021 _x86_64_ (1 CPU) avg-cpu: %user %nice %system %iowait %steal %idle 0.14 0.00 0.16 0.00 0.00 99.70 Device: rrqm/s wrqm/s r/s w/s rMB/s wMB/s avgrq-sz avgqu-sz await r_await w_await svctm %util sda 0.00 0.02 0.13 0.11 0.01 0.00 52.51 0.00 0.88 0.53 1.29 0.52 0.01 dm-0 0.00 0.00 0.12 0.13 0.00 0.00 44.28 0.00 0.92 0.54 1.27 0.50 0.01 dm-1 0.00 0.00 0.00 0.00 0.00 0.00 50.09 0.00 0.08 0.08 0.00 0.08 0.00 jc-1.17.3/tests/fixtures/centos-7.7/iostat-streaming.json000066400000000000000000000007211415226333200232040ustar00rootroot00000000000000[{"percent_user":0.14,"percent_nice":0.0,"percent_system":0.16,"percent_iowait":0.0,"percent_steal":0.0,"percent_idle":99.7,"type":"cpu"},{"device":"sda","tps":0.24,"kb_read_s":5.28,"kb_wrtn_s":1.1,"kb_read":203305,"kb_wrtn":42368,"type":"device"},{"device":"dm-0","tps":0.25,"kb_read_s":4.42,"kb_wrtn_s":1.05,"kb_read":170325,"kb_wrtn":40299,"type":"device"},{"device":"dm-1","tps":0.0,"kb_read_s":0.06,"kb_wrtn_s":0.0,"kb_read":2204,"kb_wrtn":0,"type":"device"}] jc-1.17.3/tests/fixtures/centos-7.7/iostat-x-streaming.json000066400000000000000000000014131415226333200234500ustar00rootroot00000000000000[{"percent_user":0.14,"percent_nice":0.0,"percent_system":0.16,"percent_iowait":0.0,"percent_steal":0.0,"percent_idle":99.7,"type":"cpu"},{"device":"sda","rrqm_s":0.0,"wrqm_s":0.02,"r_s":0.13,"w_s":0.11,"rkb_s":5.27,"wkb_s":1.1,"avgrq_sz":52.53,"avgqu_sz":0.0,"await":0.88,"r_await":0.53,"w_await":1.29,"svctm":0.52,"percent_util":0.01,"type":"device"},{"device":"dm-0","rrqm_s":0.0,"wrqm_s":0.0,"r_s":0.12,"w_s":0.13,"rkb_s":4.41,"wkb_s":1.05,"avgrq_sz":44.3,"avgqu_sz":0.0,"await":0.92,"r_await":0.54,"w_await":1.27,"svctm":0.5,"percent_util":0.01,"type":"device"},{"device":"dm-1","rrqm_s":0.0,"wrqm_s":0.0,"r_s":0.0,"w_s":0.0,"rkb_s":0.06,"wkb_s":0.0,"avgrq_sz":50.09,"avgqu_sz":0.0,"await":0.08,"r_await":0.08,"w_await":0.0,"svctm":0.08,"percent_util":0.0,"type":"device"}] jc-1.17.3/tests/fixtures/centos-7.7/iostat-x.json000066400000000000000000000014131415226333200214610ustar00rootroot00000000000000[{"percent_user":0.14,"percent_nice":0.0,"percent_system":0.16,"percent_iowait":0.0,"percent_steal":0.0,"percent_idle":99.7,"type":"cpu"},{"device":"sda","rrqm_s":0.0,"wrqm_s":0.02,"r_s":0.13,"w_s":0.11,"rkb_s":5.27,"wkb_s":1.1,"avgrq_sz":52.53,"avgqu_sz":0.0,"await":0.88,"r_await":0.53,"w_await":1.29,"svctm":0.52,"percent_util":0.01,"type":"device"},{"device":"dm-0","rrqm_s":0.0,"wrqm_s":0.0,"r_s":0.12,"w_s":0.13,"rkb_s":4.41,"wkb_s":1.05,"avgrq_sz":44.3,"avgqu_sz":0.0,"await":0.92,"r_await":0.54,"w_await":1.27,"svctm":0.5,"percent_util":0.01,"type":"device"},{"device":"dm-1","rrqm_s":0.0,"wrqm_s":0.0,"r_s":0.0,"w_s":0.0,"rkb_s":0.06,"wkb_s":0.0,"avgrq_sz":50.09,"avgqu_sz":0.0,"await":0.08,"r_await":0.08,"w_await":0.0,"svctm":0.08,"percent_util":0.0,"type":"device"}] jc-1.17.3/tests/fixtures/centos-7.7/iostat-x.out000066400000000000000000000012621415226333200213210ustar00rootroot00000000000000Linux 3.10.0-1062.1.2.el7.x86_64 (localhost.localdomain) 11/30/2021 _x86_64_ (1 CPU) avg-cpu: %user %nice %system %iowait %steal %idle 0.14 0.00 0.16 0.00 0.00 99.70 Device: rrqm/s wrqm/s r/s w/s rkB/s wkB/s avgrq-sz avgqu-sz await r_await w_await svctm %util sda 0.00 0.02 0.13 0.11 5.27 1.10 52.53 0.00 0.88 0.53 1.29 0.52 0.01 dm-0 0.00 0.00 0.12 0.13 4.41 1.05 44.30 0.00 0.92 0.54 1.27 0.50 0.01 dm-1 0.00 0.00 0.00 0.00 0.06 0.00 50.09 0.00 0.08 0.08 0.00 0.08 0.00 jc-1.17.3/tests/fixtures/centos-7.7/iostat.json000066400000000000000000000007211415226333200212150ustar00rootroot00000000000000[{"percent_user":0.14,"percent_nice":0.0,"percent_system":0.16,"percent_iowait":0.0,"percent_steal":0.0,"percent_idle":99.7,"type":"cpu"},{"device":"sda","tps":0.24,"kb_read_s":5.28,"kb_wrtn_s":1.1,"kb_read":203305,"kb_wrtn":42368,"type":"device"},{"device":"dm-0","tps":0.25,"kb_read_s":4.42,"kb_wrtn_s":1.05,"kb_read":170325,"kb_wrtn":40299,"type":"device"},{"device":"dm-1","tps":0.0,"kb_read_s":0.06,"kb_wrtn_s":0.0,"kb_read":2204,"kb_wrtn":0,"type":"device"}] jc-1.17.3/tests/fixtures/centos-7.7/iostat.out000066400000000000000000000007451415226333200210610ustar00rootroot00000000000000Linux 3.10.0-1062.1.2.el7.x86_64 (localhost.localdomain) 11/30/2021 _x86_64_ (1 CPU) avg-cpu: %user %nice %system %iowait %steal %idle 0.14 0.00 0.16 0.00 0.00 99.70 Device: tps kB_read/s kB_wrtn/s kB_read kB_wrtn sda 0.24 5.28 1.10 203305 42368 dm-0 0.25 4.42 1.05 170325 40299 dm-1 0.00 0.06 0.00 2204 0 jc-1.17.3/tests/fixtures/centos-7.7/iptables-filter-line-numbers.json000066400000000000000000000165261415226333200254100ustar00rootroot00000000000000[{"chain": "INPUT", "rules": [{"num": 1, "target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "ctstate RELATED,ESTABLISHED"}, {"num": 2, "target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"num": 3, "target": "INPUT_direct", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"num": 4, "target": "INPUT_ZONES_SOURCE", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"num": 5, "target": "INPUT_ZONES", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"num": 6, "target": "DROP", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "ctstate INVALID"}, {"num": 7, "target": "REJECT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "reject-with icmp-host-prohibited"}, {"num": 8, "target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"num": 9, "target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"num": 10, "target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "ctstate RELATED,ESTABLISHED"}, {"num": 11, "target": "DROP", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "ctstate INVALID"}, {"num": 12, "target": "DROP", "prot": "all", "opt": null, "source": "15.15.15.51", "destination": "anywhere"}, {"num": 13, "target": "ACCEPT", "prot": "tcp", "opt": null, "source": "15.15.15.0/24", "destination": "anywhere", "options": "tcp dpt:ssh ctstate NEW,ESTABLISHED"}]}, {"chain": "FORWARD", "rules": [{"num": 1, "target": "DOCKER-ISOLATION", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"num": 2, "target": "DOCKER", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"num": 3, "target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "ctstate RELATED,ESTABLISHED"}, {"num": 4, "target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"num": 5, "target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"num": 6, "target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "ctstate RELATED,ESTABLISHED"}, {"num": 7, "target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"num": 8, "target": "FORWARD_direct", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"num": 9, "target": "FORWARD_IN_ZONES_SOURCE", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"num": 10, "target": "FORWARD_IN_ZONES", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"num": 11, "target": "FORWARD_OUT_ZONES_SOURCE", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"num": 12, "target": "FORWARD_OUT_ZONES", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"num": 13, "target": "DROP", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "ctstate INVALID"}, {"num": 14, "target": "REJECT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "reject-with icmp-host-prohibited"}]}, {"chain": "OUTPUT", "rules": [{"num": 1, "target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"num": 2, "target": "OUTPUT_direct", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"num": 3, "target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"num": 4, "target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "ctstate ESTABLISHED"}, {"num": 5, "target": "ACCEPT", "prot": "tcp", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "tcp spt:ssh ctstate ESTABLISHED"}]}, {"chain": "DOCKER", "rules": []}, {"chain": "DOCKER-ISOLATION", "rules": [{"num": 1, "target": "RETURN", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}]}, {"chain": "FORWARD_IN_ZONES", "rules": [{"num": 1, "target": "FWDI_public", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "[goto] "}, {"num": 2, "target": "FWDI_public", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "[goto] "}]}, {"chain": "FORWARD_IN_ZONES_SOURCE", "rules": []}, {"chain": "FORWARD_OUT_ZONES", "rules": [{"num": 1, "target": "FWDO_public", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "[goto] "}, {"num": 2, "target": "FWDO_public", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "[goto] "}]}, {"chain": "FORWARD_OUT_ZONES_SOURCE", "rules": []}, {"chain": "FORWARD_direct", "rules": []}, {"chain": "FWDI_public", "rules": [{"num": 1, "target": "FWDI_public_log", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"num": 2, "target": "FWDI_public_deny", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"num": 3, "target": "FWDI_public_allow", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"num": 4, "target": "ACCEPT", "prot": "icmp", "opt": null, "source": "anywhere", "destination": "anywhere"}]}, {"chain": "FWDI_public_allow", "rules": []}, {"chain": "FWDI_public_deny", "rules": []}, {"chain": "FWDI_public_log", "rules": []}, {"chain": "FWDO_public", "rules": [{"num": 1, "target": "FWDO_public_log", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"num": 2, "target": "FWDO_public_deny", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"num": 3, "target": "FWDO_public_allow", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}]}, {"chain": "FWDO_public_allow", "rules": []}, {"chain": "FWDO_public_deny", "rules": []}, {"chain": "FWDO_public_log", "rules": []}, {"chain": "INPUT_ZONES", "rules": [{"num": 1, "target": "IN_public", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "[goto] "}, {"num": 2, "target": "IN_public", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "[goto] "}]}, {"chain": "INPUT_ZONES_SOURCE", "rules": []}, {"chain": "INPUT_direct", "rules": []}, {"chain": "IN_public", "rules": [{"num": 1, "target": "IN_public_log", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"num": 2, "target": "IN_public_deny", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"num": 3, "target": "IN_public_allow", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"num": 4, "target": "ACCEPT", "prot": "icmp", "opt": null, "source": "anywhere", "destination": "anywhere"}]}, {"chain": "IN_public_allow", "rules": [{"num": 1, "target": "ACCEPT", "prot": "tcp", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "tcp dpt:ssh ctstate NEW,UNTRACKED"}]}, {"chain": "IN_public_deny", "rules": []}, {"chain": "IN_public_log", "rules": []}, {"chain": "OUTPUT_direct", "rules": []}] jc-1.17.3/tests/fixtures/centos-7.7/iptables-filter-line-numbers.out000066400000000000000000000147631415226333200252470ustar00rootroot00000000000000Chain INPUT (policy ACCEPT) num target prot opt source destination 1 ACCEPT all -- anywhere anywhere ctstate RELATED,ESTABLISHED 2 ACCEPT all -- anywhere anywhere 3 INPUT_direct all -- anywhere anywhere 4 INPUT_ZONES_SOURCE all -- anywhere anywhere 5 INPUT_ZONES all -- anywhere anywhere 6 DROP all -- anywhere anywhere ctstate INVALID 7 REJECT all -- anywhere anywhere reject-with icmp-host-prohibited 8 ACCEPT all -- anywhere anywhere 9 ACCEPT all -- anywhere anywhere 10 ACCEPT all -- anywhere anywhere ctstate RELATED,ESTABLISHED 11 DROP all -- anywhere anywhere ctstate INVALID 12 DROP all -- 15.15.15.51 anywhere 13 ACCEPT tcp -- 15.15.15.0/24 anywhere tcp dpt:ssh ctstate NEW,ESTABLISHED Chain FORWARD (policy DROP) num target prot opt source destination 1 DOCKER-ISOLATION all -- anywhere anywhere 2 DOCKER all -- anywhere anywhere 3 ACCEPT all -- anywhere anywhere ctstate RELATED,ESTABLISHED 4 ACCEPT all -- anywhere anywhere 5 ACCEPT all -- anywhere anywhere 6 ACCEPT all -- anywhere anywhere ctstate RELATED,ESTABLISHED 7 ACCEPT all -- anywhere anywhere 8 FORWARD_direct all -- anywhere anywhere 9 FORWARD_IN_ZONES_SOURCE all -- anywhere anywhere 10 FORWARD_IN_ZONES all -- anywhere anywhere 11 FORWARD_OUT_ZONES_SOURCE all -- anywhere anywhere 12 FORWARD_OUT_ZONES all -- anywhere anywhere 13 DROP all -- anywhere anywhere ctstate INVALID 14 REJECT all -- anywhere anywhere reject-with icmp-host-prohibited Chain OUTPUT (policy ACCEPT) num target prot opt source destination 1 ACCEPT all -- anywhere anywhere 2 OUTPUT_direct all -- anywhere anywhere 3 ACCEPT all -- anywhere anywhere 4 ACCEPT all -- anywhere anywhere ctstate ESTABLISHED 5 ACCEPT tcp -- anywhere anywhere tcp spt:ssh ctstate ESTABLISHED Chain DOCKER (1 references) num target prot opt source destination Chain DOCKER-ISOLATION (1 references) num target prot opt source destination 1 RETURN all -- anywhere anywhere Chain FORWARD_IN_ZONES (1 references) num target prot opt source destination 1 FWDI_public all -- anywhere anywhere [goto] 2 FWDI_public all -- anywhere anywhere [goto] Chain FORWARD_IN_ZONES_SOURCE (1 references) num target prot opt source destination Chain FORWARD_OUT_ZONES (1 references) num target prot opt source destination 1 FWDO_public all -- anywhere anywhere [goto] 2 FWDO_public all -- anywhere anywhere [goto] Chain FORWARD_OUT_ZONES_SOURCE (1 references) num target prot opt source destination Chain FORWARD_direct (1 references) num target prot opt source destination Chain FWDI_public (2 references) num target prot opt source destination 1 FWDI_public_log all -- anywhere anywhere 2 FWDI_public_deny all -- anywhere anywhere 3 FWDI_public_allow all -- anywhere anywhere 4 ACCEPT icmp -- anywhere anywhere Chain FWDI_public_allow (1 references) num target prot opt source destination Chain FWDI_public_deny (1 references) num target prot opt source destination Chain FWDI_public_log (1 references) num target prot opt source destination Chain FWDO_public (2 references) num target prot opt source destination 1 FWDO_public_log all -- anywhere anywhere 2 FWDO_public_deny all -- anywhere anywhere 3 FWDO_public_allow all -- anywhere anywhere Chain FWDO_public_allow (1 references) num target prot opt source destination Chain FWDO_public_deny (1 references) num target prot opt source destination Chain FWDO_public_log (1 references) num target prot opt source destination Chain INPUT_ZONES (1 references) num target prot opt source destination 1 IN_public all -- anywhere anywhere [goto] 2 IN_public all -- anywhere anywhere [goto] Chain INPUT_ZONES_SOURCE (1 references) num target prot opt source destination Chain INPUT_direct (1 references) num target prot opt source destination Chain IN_public (2 references) num target prot opt source destination 1 IN_public_log all -- anywhere anywhere 2 IN_public_deny all -- anywhere anywhere 3 IN_public_allow all -- anywhere anywhere 4 ACCEPT icmp -- anywhere anywhere Chain IN_public_allow (1 references) num target prot opt source destination 1 ACCEPT tcp -- anywhere anywhere tcp dpt:ssh ctstate NEW,UNTRACKED Chain IN_public_deny (1 references) num target prot opt source destination Chain IN_public_log (1 references) num target prot opt source destination Chain OUTPUT_direct (1 references) num target prot opt source destination jc-1.17.3/tests/fixtures/centos-7.7/iptables-filter-nv.json000066400000000000000000000246521415226333200234320ustar00rootroot00000000000000[{"chain": "INPUT", "rules": [{"pkts": 4175, "bytes": 1130000, "target": "ACCEPT", "prot": "all", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0", "options": "ctstate RELATED,ESTABLISHED"}, {"pkts": 0, "bytes": 0, "target": "ACCEPT", "prot": "all", "opt": null, "in": "lo", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0"}, {"pkts": 2383, "bytes": 204000, "target": "INPUT_direct", "prot": "all", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0"}, {"pkts": 2383, "bytes": 204000, "target": "INPUT_ZONES_SOURCE", "prot": "all", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0"}, {"pkts": 2383, "bytes": 204000, "target": "INPUT_ZONES", "prot": "all", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0"}, {"pkts": 0, "bytes": 0, "target": "DROP", "prot": "all", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0", "options": "ctstate INVALID"}, {"pkts": 2382, "bytes": 204000, "target": "REJECT", "prot": "all", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0", "options": "reject-with icmp-host-prohibited"}, {"pkts": 0, "bytes": 0, "target": "ACCEPT", "prot": "all", "opt": null, "in": "lo", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0"}, {"pkts": 0, "bytes": 0, "target": "ACCEPT", "prot": "all", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0", "options": "ctstate RELATED,ESTABLISHED"}, {"pkts": 0, "bytes": 0, "target": "DROP", "prot": "all", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0", "options": "ctstate INVALID"}, {"pkts": 0, "bytes": 0, "target": "ACCEPT", "prot": "tcp", "opt": null, "in": "*", "out": "*", "source": "15.15.15.0/24", "destination": "0.0.0.0/0", "options": "tcp dpt:22 ctstate NEW,ESTABLISHED"}, {"pkts": 0, "bytes": 0, "target": "ACCEPT", "prot": "all", "opt": null, "in": "lo", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0"}, {"pkts": 0, "bytes": 0, "target": "ACCEPT", "prot": "all", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0", "options": "ctstate RELATED,ESTABLISHED"}, {"pkts": 0, "bytes": 0, "target": "DROP", "prot": "all", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0", "options": "ctstate INVALID"}, {"pkts": 0, "bytes": 0, "target": "DROP", "prot": "all", "opt": null, "in": "lo", "out": "*", "source": "15.15.15.51", "destination": "0.0.0.0/0"}, {"pkts": 0, "bytes": 0, "target": "ACCEPT", "prot": "tcp", "opt": null, "in": "*", "out": "*", "source": "15.15.15.0/24", "destination": "0.0.0.0/0", "options": "tcp dpt:22 ctstate NEW,ESTABLISHED"}]}, {"chain": "FORWARD", "rules": [{"pkts": 0, "bytes": 0, "target": "DOCKER-ISOLATION", "prot": "all", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0"}, {"pkts": 0, "bytes": 0, "target": "DOCKER", "prot": "all", "opt": null, "in": "*", "out": "docker0", "source": "0.0.0.0/0", "destination": "0.0.0.0/0"}, {"pkts": 0, "bytes": 0, "target": "ACCEPT", "prot": "all", "opt": null, "in": "*", "out": "docker0", "source": "0.0.0.0/0", "destination": "0.0.0.0/0", "options": "ctstate RELATED,ESTABLISHED"}, {"pkts": 0, "bytes": 0, "target": "ACCEPT", "prot": "all", "opt": null, "in": "docker0", "out": "!docker0", "source": "0.0.0.0/0", "destination": "0.0.0.0/0"}, {"pkts": 0, "bytes": 0, "target": "ACCEPT", "prot": "all", "opt": null, "in": "docker0", "out": "docker0", "source": "0.0.0.0/0", "destination": "0.0.0.0/0"}, {"pkts": 0, "bytes": 0, "target": "ACCEPT", "prot": "all", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0", "options": "ctstate RELATED,ESTABLISHED"}, {"pkts": 0, "bytes": 0, "target": "ACCEPT", "prot": "all", "opt": null, "in": "lo", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0"}, {"pkts": 0, "bytes": 0, "target": "FORWARD_direct", "prot": "all", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0"}, {"pkts": 0, "bytes": 0, "target": "FORWARD_IN_ZONES_SOURCE", "prot": "all", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0"}, {"pkts": 0, "bytes": 0, "target": "FORWARD_IN_ZONES", "prot": "all", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0"}, {"pkts": 0, "bytes": 0, "target": "FORWARD_OUT_ZONES_SOURCE", "prot": "all", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0"}, {"pkts": 0, "bytes": 0, "target": "FORWARD_OUT_ZONES", "prot": "all", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0"}, {"pkts": 0, "bytes": 0, "target": "DROP", "prot": "all", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0", "options": "ctstate INVALID"}, {"pkts": 0, "bytes": 0, "target": "REJECT", "prot": "all", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0", "options": "reject-with icmp-host-prohibited"}]}, {"chain": "OUTPUT", "rules": [{"pkts": 0, "bytes": 0, "target": "ACCEPT", "prot": "all", "opt": null, "in": "*", "out": "lo", "source": "0.0.0.0/0", "destination": "0.0.0.0/0"}, {"pkts": 3419, "bytes": 573000, "target": "OUTPUT_direct", "prot": "all", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0"}, {"pkts": 0, "bytes": 0, "target": "ACCEPT", "prot": "all", "opt": null, "in": "*", "out": "lo", "source": "0.0.0.0/0", "destination": "0.0.0.0/0"}, {"pkts": 225, "bytes": 101000, "target": "ACCEPT", "prot": "all", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0", "options": "ctstate ESTABLISHED"}, {"pkts": 0, "bytes": 0, "target": "ACCEPT", "prot": "tcp", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0", "options": "tcp spt:22 ctstate ESTABLISHED"}, {"pkts": 0, "bytes": 0, "target": "ACCEPT", "prot": "all", "opt": null, "in": "*", "out": "lo", "source": "0.0.0.0/0", "destination": "0.0.0.0/0"}, {"pkts": 0, "bytes": 0, "target": "ACCEPT", "prot": "all", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0", "options": "ctstate ESTABLISHED"}, {"pkts": 0, "bytes": 0, "target": "ACCEPT", "prot": "tcp", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0", "options": "tcp spt:22 ctstate ESTABLISHED"}]}, {"chain": "DOCKER", "rules": []}, {"chain": "DOCKER-ISOLATION", "rules": [{"pkts": 0, "bytes": 0, "target": "RETURN", "prot": "all", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0"}]}, {"chain": "FORWARD_IN_ZONES", "rules": [{"pkts": 0, "bytes": 0, "target": "FWDI_public", "prot": "all", "opt": null, "in": "ens33", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0", "options": "[goto] "}, {"pkts": 0, "bytes": 0, "target": "FWDI_public", "prot": "all", "opt": null, "in": "+", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0", "options": "[goto] "}]}, {"chain": "FORWARD_IN_ZONES_SOURCE", "rules": []}, {"chain": "FORWARD_OUT_ZONES", "rules": [{"pkts": 0, "bytes": 0, "target": "FWDO_public", "prot": "all", "opt": null, "in": "*", "out": "ens33", "source": "0.0.0.0/0", "destination": "0.0.0.0/0", "options": "[goto] "}, {"pkts": 0, "bytes": 0, "target": "FWDO_public", "prot": "all", "opt": null, "in": "*", "out": "+", "source": "0.0.0.0/0", "destination": "0.0.0.0/0", "options": "[goto] "}]}, {"chain": "FORWARD_OUT_ZONES_SOURCE", "rules": []}, {"chain": "FORWARD_direct", "rules": []}, {"chain": "FWDI_public", "rules": [{"pkts": 0, "bytes": 0, "target": "FWDI_public_log", "prot": "all", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0"}, {"pkts": 0, "bytes": 0, "target": "FWDI_public_deny", "prot": "all", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0"}, {"pkts": 0, "bytes": 0, "target": "FWDI_public_allow", "prot": "all", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0"}, {"pkts": 0, "bytes": 0, "target": "ACCEPT", "prot": "icmp", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0"}]}, {"chain": "FWDI_public_allow", "rules": []}, {"chain": "FWDI_public_deny", "rules": []}, {"chain": "FWDI_public_log", "rules": []}, {"chain": "FWDO_public", "rules": [{"pkts": 0, "bytes": 0, "target": "FWDO_public_log", "prot": "all", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0"}, {"pkts": 0, "bytes": 0, "target": "FWDO_public_deny", "prot": "all", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0"}, {"pkts": 0, "bytes": 0, "target": "FWDO_public_allow", "prot": "all", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0"}]}, {"chain": "FWDO_public_allow", "rules": []}, {"chain": "FWDO_public_deny", "rules": []}, {"chain": "FWDO_public_log", "rules": []}, {"chain": "INPUT_ZONES", "rules": [{"pkts": 2367, "bytes": 202000, "target": "IN_public", "prot": "all", "opt": null, "in": "ens33", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0", "options": "[goto] "}, {"pkts": 1, "bytes": 330, "target": "IN_public", "prot": "all", "opt": null, "in": "+", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0", "options": "[goto] "}]}, {"chain": "INPUT_ZONES_SOURCE", "rules": []}, {"chain": "INPUT_direct", "rules": []}, {"chain": "IN_public", "rules": [{"pkts": 2383, "bytes": 204000, "target": "IN_public_log", "prot": "all", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0"}, {"pkts": 2383, "bytes": 204000, "target": "IN_public_deny", "prot": "all", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0"}, {"pkts": 2383, "bytes": 204000, "target": "IN_public_allow", "prot": "all", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0"}, {"pkts": 0, "bytes": 0, "target": "ACCEPT", "prot": "icmp", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0"}]}, {"chain": "IN_public_allow", "rules": [{"pkts": 1, "bytes": 64, "target": "ACCEPT", "prot": "tcp", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0", "options": "tcp dpt:22 ctstate NEW,UNTRACKED"}]}, {"chain": "IN_public_deny", "rules": []}, {"chain": "IN_public_log", "rules": []}, {"chain": "OUTPUT_direct", "rules": []}] jc-1.17.3/tests/fixtures/centos-7.7/iptables-filter-nv.out000066400000000000000000000215501415226333200232620ustar00rootroot00000000000000Chain INPUT (policy ACCEPT 0 packets, 0 bytes) pkts bytes target prot opt in out source destination 4175 1130K ACCEPT all -- * * 0.0.0.0/0 0.0.0.0/0 ctstate RELATED,ESTABLISHED 0 0 ACCEPT all -- lo * 0.0.0.0/0 0.0.0.0/0 2383 204K INPUT_direct all -- * * 0.0.0.0/0 0.0.0.0/0 2383 204K INPUT_ZONES_SOURCE all -- * * 0.0.0.0/0 0.0.0.0/0 2383 204K INPUT_ZONES all -- * * 0.0.0.0/0 0.0.0.0/0 0 0 DROP all -- * * 0.0.0.0/0 0.0.0.0/0 ctstate INVALID 2382 204K REJECT all -- * * 0.0.0.0/0 0.0.0.0/0 reject-with icmp-host-prohibited 0 0 ACCEPT all -- lo * 0.0.0.0/0 0.0.0.0/0 0 0 ACCEPT all -- * * 0.0.0.0/0 0.0.0.0/0 ctstate RELATED,ESTABLISHED 0 0 DROP all -- * * 0.0.0.0/0 0.0.0.0/0 ctstate INVALID 0 0 ACCEPT tcp -- * * 15.15.15.0/24 0.0.0.0/0 tcp dpt:22 ctstate NEW,ESTABLISHED 0 0 ACCEPT all -- lo * 0.0.0.0/0 0.0.0.0/0 0 0 ACCEPT all -- * * 0.0.0.0/0 0.0.0.0/0 ctstate RELATED,ESTABLISHED 0 0 DROP all -- * * 0.0.0.0/0 0.0.0.0/0 ctstate INVALID 0 0 DROP all -- lo * 15.15.15.51 0.0.0.0/0 0 0 ACCEPT tcp -- * * 15.15.15.0/24 0.0.0.0/0 tcp dpt:22 ctstate NEW,ESTABLISHED Chain FORWARD (policy DROP 0 packets, 0 bytes) pkts bytes target prot opt in out source destination 0 0 DOCKER-ISOLATION all -- * * 0.0.0.0/0 0.0.0.0/0 0 0 DOCKER all -- * docker0 0.0.0.0/0 0.0.0.0/0 0 0 ACCEPT all -- * docker0 0.0.0.0/0 0.0.0.0/0 ctstate RELATED,ESTABLISHED 0 0 ACCEPT all -- docker0 !docker0 0.0.0.0/0 0.0.0.0/0 0 0 ACCEPT all -- docker0 docker0 0.0.0.0/0 0.0.0.0/0 0 0 ACCEPT all -- * * 0.0.0.0/0 0.0.0.0/0 ctstate RELATED,ESTABLISHED 0 0 ACCEPT all -- lo * 0.0.0.0/0 0.0.0.0/0 0 0 FORWARD_direct all -- * * 0.0.0.0/0 0.0.0.0/0 0 0 FORWARD_IN_ZONES_SOURCE all -- * * 0.0.0.0/0 0.0.0.0/0 0 0 FORWARD_IN_ZONES all -- * * 0.0.0.0/0 0.0.0.0/0 0 0 FORWARD_OUT_ZONES_SOURCE all -- * * 0.0.0.0/0 0.0.0.0/0 0 0 FORWARD_OUT_ZONES all -- * * 0.0.0.0/0 0.0.0.0/0 0 0 DROP all -- * * 0.0.0.0/0 0.0.0.0/0 ctstate INVALID 0 0 REJECT all -- * * 0.0.0.0/0 0.0.0.0/0 reject-with icmp-host-prohibited Chain OUTPUT (policy ACCEPT 5 packets, 345 bytes) pkts bytes target prot opt in out source destination 0 0 ACCEPT all -- * lo 0.0.0.0/0 0.0.0.0/0 3419 573K OUTPUT_direct all -- * * 0.0.0.0/0 0.0.0.0/0 0 0 ACCEPT all -- * lo 0.0.0.0/0 0.0.0.0/0 225 101K ACCEPT all -- * * 0.0.0.0/0 0.0.0.0/0 ctstate ESTABLISHED 0 0 ACCEPT tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp spt:22 ctstate ESTABLISHED 0 0 ACCEPT all -- * lo 0.0.0.0/0 0.0.0.0/0 0 0 ACCEPT all -- * * 0.0.0.0/0 0.0.0.0/0 ctstate ESTABLISHED 0 0 ACCEPT tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp spt:22 ctstate ESTABLISHED Chain DOCKER (1 references) pkts bytes target prot opt in out source destination Chain DOCKER-ISOLATION (1 references) pkts bytes target prot opt in out source destination 0 0 RETURN all -- * * 0.0.0.0/0 0.0.0.0/0 Chain FORWARD_IN_ZONES (1 references) pkts bytes target prot opt in out source destination 0 0 FWDI_public all -- ens33 * 0.0.0.0/0 0.0.0.0/0 [goto] 0 0 FWDI_public all -- + * 0.0.0.0/0 0.0.0.0/0 [goto] Chain FORWARD_IN_ZONES_SOURCE (1 references) pkts bytes target prot opt in out source destination Chain FORWARD_OUT_ZONES (1 references) pkts bytes target prot opt in out source destination 0 0 FWDO_public all -- * ens33 0.0.0.0/0 0.0.0.0/0 [goto] 0 0 FWDO_public all -- * + 0.0.0.0/0 0.0.0.0/0 [goto] Chain FORWARD_OUT_ZONES_SOURCE (1 references) pkts bytes target prot opt in out source destination Chain FORWARD_direct (1 references) pkts bytes target prot opt in out source destination Chain FWDI_public (2 references) pkts bytes target prot opt in out source destination 0 0 FWDI_public_log all -- * * 0.0.0.0/0 0.0.0.0/0 0 0 FWDI_public_deny all -- * * 0.0.0.0/0 0.0.0.0/0 0 0 FWDI_public_allow all -- * * 0.0.0.0/0 0.0.0.0/0 0 0 ACCEPT icmp -- * * 0.0.0.0/0 0.0.0.0/0 Chain FWDI_public_allow (1 references) pkts bytes target prot opt in out source destination Chain FWDI_public_deny (1 references) pkts bytes target prot opt in out source destination Chain FWDI_public_log (1 references) pkts bytes target prot opt in out source destination Chain FWDO_public (2 references) pkts bytes target prot opt in out source destination 0 0 FWDO_public_log all -- * * 0.0.0.0/0 0.0.0.0/0 0 0 FWDO_public_deny all -- * * 0.0.0.0/0 0.0.0.0/0 0 0 FWDO_public_allow all -- * * 0.0.0.0/0 0.0.0.0/0 Chain FWDO_public_allow (1 references) pkts bytes target prot opt in out source destination Chain FWDO_public_deny (1 references) pkts bytes target prot opt in out source destination Chain FWDO_public_log (1 references) pkts bytes target prot opt in out source destination Chain INPUT_ZONES (1 references) pkts bytes target prot opt in out source destination 2367 202K IN_public all -- ens33 * 0.0.0.0/0 0.0.0.0/0 [goto] 1 330 IN_public all -- + * 0.0.0.0/0 0.0.0.0/0 [goto] Chain INPUT_ZONES_SOURCE (1 references) pkts bytes target prot opt in out source destination Chain INPUT_direct (1 references) pkts bytes target prot opt in out source destination Chain IN_public (2 references) pkts bytes target prot opt in out source destination 2383 204K IN_public_log all -- * * 0.0.0.0/0 0.0.0.0/0 2383 204K IN_public_deny all -- * * 0.0.0.0/0 0.0.0.0/0 2383 204K IN_public_allow all -- * * 0.0.0.0/0 0.0.0.0/0 0 0 ACCEPT icmp -- * * 0.0.0.0/0 0.0.0.0/0 Chain IN_public_allow (1 references) pkts bytes target prot opt in out source destination 1 64 ACCEPT tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp dpt:22 ctstate NEW,UNTRACKED Chain IN_public_deny (1 references) pkts bytes target prot opt in out source destination Chain IN_public_log (1 references) pkts bytes target prot opt in out source destination Chain OUTPUT_direct (1 references) pkts bytes target prot opt in out source destination jc-1.17.3/tests/fixtures/centos-7.7/iptables-filter.json000066400000000000000000000171561415226333200230120ustar00rootroot00000000000000[{"chain": "INPUT", "rules": [{"target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "ctstate RELATED,ESTABLISHED"}, {"target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "INPUT_direct", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "INPUT_ZONES_SOURCE", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "INPUT_ZONES", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "DROP", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "ctstate INVALID"}, {"target": "REJECT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "reject-with icmp-host-prohibited"}, {"target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "ctstate RELATED,ESTABLISHED"}, {"target": "DROP", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "ctstate INVALID"}, {"target": "ACCEPT", "prot": "tcp", "opt": null, "source": "15.15.15.0/24", "destination": "anywhere", "options": "tcp dpt:ssh ctstate NEW,ESTABLISHED"}, {"target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "ctstate RELATED,ESTABLISHED"}, {"target": "DROP", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "ctstate INVALID"}, {"target": "DROP", "prot": "all", "opt": null, "source": "15.15.15.51", "destination": "anywhere"}, {"target": "ACCEPT", "prot": "tcp", "opt": null, "source": "15.15.15.0/24", "destination": "anywhere", "options": "tcp dpt:ssh ctstate NEW,ESTABLISHED"}]}, {"chain": "FORWARD", "rules": [{"target": "DOCKER-ISOLATION", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "DOCKER", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "ctstate RELATED,ESTABLISHED"}, {"target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "ctstate RELATED,ESTABLISHED"}, {"target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "FORWARD_direct", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "FORWARD_IN_ZONES_SOURCE", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "FORWARD_IN_ZONES", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "FORWARD_OUT_ZONES_SOURCE", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "FORWARD_OUT_ZONES", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "DROP", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "ctstate INVALID"}, {"target": "REJECT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "reject-with icmp-host-prohibited"}]}, {"chain": "OUTPUT", "rules": [{"target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "OUTPUT_direct", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "ctstate ESTABLISHED"}, {"target": "ACCEPT", "prot": "tcp", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "tcp spt:ssh ctstate ESTABLISHED"}, {"target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "ctstate ESTABLISHED"}, {"target": "ACCEPT", "prot": "tcp", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "tcp spt:ssh ctstate ESTABLISHED"}]}, {"chain": "DOCKER", "rules": []}, {"chain": "DOCKER-ISOLATION", "rules": [{"target": "RETURN", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}]}, {"chain": "FORWARD_IN_ZONES", "rules": [{"target": "FWDI_public", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "[goto] "}, {"target": "FWDI_public", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "[goto] "}]}, {"chain": "FORWARD_IN_ZONES_SOURCE", "rules": []}, {"chain": "FORWARD_OUT_ZONES", "rules": [{"target": "FWDO_public", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "[goto] "}, {"target": "FWDO_public", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "[goto] "}]}, {"chain": "FORWARD_OUT_ZONES_SOURCE", "rules": []}, {"chain": "FORWARD_direct", "rules": []}, {"chain": "FWDI_public", "rules": [{"target": "FWDI_public_log", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "FWDI_public_deny", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "FWDI_public_allow", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "ACCEPT", "prot": "icmp", "opt": null, "source": "anywhere", "destination": "anywhere"}]}, {"chain": "FWDI_public_allow", "rules": []}, {"chain": "FWDI_public_deny", "rules": []}, {"chain": "FWDI_public_log", "rules": []}, {"chain": "FWDO_public", "rules": [{"target": "FWDO_public_log", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "FWDO_public_deny", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "FWDO_public_allow", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}]}, {"chain": "FWDO_public_allow", "rules": []}, {"chain": "FWDO_public_deny", "rules": []}, {"chain": "FWDO_public_log", "rules": []}, {"chain": "INPUT_ZONES", "rules": [{"target": "IN_public", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "[goto] "}, {"target": "IN_public", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "[goto] "}]}, {"chain": "INPUT_ZONES_SOURCE", "rules": []}, {"chain": "INPUT_direct", "rules": []}, {"chain": "IN_public", "rules": [{"target": "IN_public_log", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "IN_public_deny", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "IN_public_allow", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "ACCEPT", "prot": "icmp", "opt": null, "source": "anywhere", "destination": "anywhere"}]}, {"chain": "IN_public_allow", "rules": [{"target": "ACCEPT", "prot": "tcp", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "tcp dpt:ssh ctstate NEW,UNTRACKED"}]}, {"chain": "IN_public_deny", "rules": []}, {"chain": "IN_public_log", "rules": []}, {"chain": "OUTPUT_direct", "rules": []}] jc-1.17.3/tests/fixtures/centos-7.7/iptables-filter.out000066400000000000000000000151521415226333200226420ustar00rootroot00000000000000Chain INPUT (policy ACCEPT) target prot opt source destination ACCEPT all -- anywhere anywhere ctstate RELATED,ESTABLISHED ACCEPT all -- anywhere anywhere INPUT_direct all -- anywhere anywhere INPUT_ZONES_SOURCE all -- anywhere anywhere INPUT_ZONES all -- anywhere anywhere DROP all -- anywhere anywhere ctstate INVALID REJECT all -- anywhere anywhere reject-with icmp-host-prohibited ACCEPT all -- anywhere anywhere ACCEPT all -- anywhere anywhere ctstate RELATED,ESTABLISHED DROP all -- anywhere anywhere ctstate INVALID ACCEPT tcp -- 15.15.15.0/24 anywhere tcp dpt:ssh ctstate NEW,ESTABLISHED ACCEPT all -- anywhere anywhere ACCEPT all -- anywhere anywhere ctstate RELATED,ESTABLISHED DROP all -- anywhere anywhere ctstate INVALID DROP all -- 15.15.15.51 anywhere ACCEPT tcp -- 15.15.15.0/24 anywhere tcp dpt:ssh ctstate NEW,ESTABLISHED Chain FORWARD (policy DROP) target prot opt source destination DOCKER-ISOLATION all -- anywhere anywhere DOCKER all -- anywhere anywhere ACCEPT all -- anywhere anywhere ctstate RELATED,ESTABLISHED ACCEPT all -- anywhere anywhere ACCEPT all -- anywhere anywhere ACCEPT all -- anywhere anywhere ctstate RELATED,ESTABLISHED ACCEPT all -- anywhere anywhere FORWARD_direct all -- anywhere anywhere FORWARD_IN_ZONES_SOURCE all -- anywhere anywhere FORWARD_IN_ZONES all -- anywhere anywhere FORWARD_OUT_ZONES_SOURCE all -- anywhere anywhere FORWARD_OUT_ZONES all -- anywhere anywhere DROP all -- anywhere anywhere ctstate INVALID REJECT all -- anywhere anywhere reject-with icmp-host-prohibited Chain OUTPUT (policy ACCEPT) target prot opt source destination ACCEPT all -- anywhere anywhere OUTPUT_direct all -- anywhere anywhere ACCEPT all -- anywhere anywhere ACCEPT all -- anywhere anywhere ctstate ESTABLISHED ACCEPT tcp -- anywhere anywhere tcp spt:ssh ctstate ESTABLISHED ACCEPT all -- anywhere anywhere ACCEPT all -- anywhere anywhere ctstate ESTABLISHED ACCEPT tcp -- anywhere anywhere tcp spt:ssh ctstate ESTABLISHED Chain DOCKER (1 references) target prot opt source destination Chain DOCKER-ISOLATION (1 references) target prot opt source destination RETURN all -- anywhere anywhere Chain FORWARD_IN_ZONES (1 references) target prot opt source destination FWDI_public all -- anywhere anywhere [goto] FWDI_public all -- anywhere anywhere [goto] Chain FORWARD_IN_ZONES_SOURCE (1 references) target prot opt source destination Chain FORWARD_OUT_ZONES (1 references) target prot opt source destination FWDO_public all -- anywhere anywhere [goto] FWDO_public all -- anywhere anywhere [goto] Chain FORWARD_OUT_ZONES_SOURCE (1 references) target prot opt source destination Chain FORWARD_direct (1 references) target prot opt source destination Chain FWDI_public (2 references) target prot opt source destination FWDI_public_log all -- anywhere anywhere FWDI_public_deny all -- anywhere anywhere FWDI_public_allow all -- anywhere anywhere ACCEPT icmp -- anywhere anywhere Chain FWDI_public_allow (1 references) target prot opt source destination Chain FWDI_public_deny (1 references) target prot opt source destination Chain FWDI_public_log (1 references) target prot opt source destination Chain FWDO_public (2 references) target prot opt source destination FWDO_public_log all -- anywhere anywhere FWDO_public_deny all -- anywhere anywhere FWDO_public_allow all -- anywhere anywhere Chain FWDO_public_allow (1 references) target prot opt source destination Chain FWDO_public_deny (1 references) target prot opt source destination Chain FWDO_public_log (1 references) target prot opt source destination Chain INPUT_ZONES (1 references) target prot opt source destination IN_public all -- anywhere anywhere [goto] IN_public all -- anywhere anywhere [goto] Chain INPUT_ZONES_SOURCE (1 references) target prot opt source destination Chain INPUT_direct (1 references) target prot opt source destination Chain IN_public (2 references) target prot opt source destination IN_public_log all -- anywhere anywhere IN_public_deny all -- anywhere anywhere IN_public_allow all -- anywhere anywhere ACCEPT icmp -- anywhere anywhere Chain IN_public_allow (1 references) target prot opt source destination ACCEPT tcp -- anywhere anywhere tcp dpt:ssh ctstate NEW,UNTRACKED Chain IN_public_deny (1 references) target prot opt source destination Chain IN_public_log (1 references) target prot opt source destination Chain OUTPUT_direct (1 references) target prot opt source destination jc-1.17.3/tests/fixtures/centos-7.7/iptables-mangle.json000066400000000000000000000036741415226333200227700ustar00rootroot00000000000000[{"chain": "PREROUTING", "rules": [{"target": "PREROUTING_direct", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "PREROUTING_ZONES_SOURCE", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "PREROUTING_ZONES", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}]}, {"chain": "INPUT", "rules": [{"target": "INPUT_direct", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}]}, {"chain": "FORWARD", "rules": [{"target": "FORWARD_direct", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}]}, {"chain": "OUTPUT", "rules": [{"target": "OUTPUT_direct", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}]}, {"chain": "POSTROUTING", "rules": [{"target": "POSTROUTING_direct", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}]}, {"chain": "FORWARD_direct", "rules": []}, {"chain": "INPUT_direct", "rules": []}, {"chain": "OUTPUT_direct", "rules": []}, {"chain": "POSTROUTING_direct", "rules": []}, {"chain": "PREROUTING_ZONES", "rules": [{"target": "PRE_public", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "[goto] "}, {"target": "PRE_public", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "[goto] "}]}, {"chain": "PREROUTING_ZONES_SOURCE", "rules": []}, {"chain": "PREROUTING_direct", "rules": []}, {"chain": "PRE_public", "rules": [{"target": "PRE_public_log", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "PRE_public_deny", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "PRE_public_allow", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}]}, {"chain": "PRE_public_allow", "rules": []}, {"chain": "PRE_public_deny", "rules": []}, {"chain": "PRE_public_log", "rules": []}] jc-1.17.3/tests/fixtures/centos-7.7/iptables-mangle.out000066400000000000000000000045371415226333200226250ustar00rootroot00000000000000Chain PREROUTING (policy ACCEPT) target prot opt source destination PREROUTING_direct all -- anywhere anywhere PREROUTING_ZONES_SOURCE all -- anywhere anywhere PREROUTING_ZONES all -- anywhere anywhere Chain INPUT (policy ACCEPT) target prot opt source destination INPUT_direct all -- anywhere anywhere Chain FORWARD (policy ACCEPT) target prot opt source destination FORWARD_direct all -- anywhere anywhere Chain OUTPUT (policy ACCEPT) target prot opt source destination OUTPUT_direct all -- anywhere anywhere Chain POSTROUTING (policy ACCEPT) target prot opt source destination POSTROUTING_direct all -- anywhere anywhere Chain FORWARD_direct (1 references) target prot opt source destination Chain INPUT_direct (1 references) target prot opt source destination Chain OUTPUT_direct (1 references) target prot opt source destination Chain POSTROUTING_direct (1 references) target prot opt source destination Chain PREROUTING_ZONES (1 references) target prot opt source destination PRE_public all -- anywhere anywhere [goto] PRE_public all -- anywhere anywhere [goto] Chain PREROUTING_ZONES_SOURCE (1 references) target prot opt source destination Chain PREROUTING_direct (1 references) target prot opt source destination Chain PRE_public (2 references) target prot opt source destination PRE_public_log all -- anywhere anywhere PRE_public_deny all -- anywhere anywhere PRE_public_allow all -- anywhere anywhere Chain PRE_public_allow (1 references) target prot opt source destination Chain PRE_public_deny (1 references) target prot opt source destination Chain PRE_public_log (1 references) target prot opt source destination jc-1.17.3/tests/fixtures/centos-7.7/iptables-nat.json000066400000000000000000000062651415226333200223060ustar00rootroot00000000000000[{"chain": "PREROUTING", "rules": [{"target": "PREROUTING_direct", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "PREROUTING_ZONES_SOURCE", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "PREROUTING_ZONES", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "DOCKER", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "ADDRTYPE match dst-type LOCAL"}]}, {"chain": "INPUT", "rules": []}, {"chain": "OUTPUT", "rules": [{"target": "OUTPUT_direct", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "DOCKER", "prot": "all", "opt": null, "source": "anywhere", "destination": "!loopback/8", "options": "ADDRTYPE match dst-type LOCAL"}]}, {"chain": "POSTROUTING", "rules": [{"target": "MASQUERADE", "prot": "all", "opt": null, "source": "172.17.0.0/16", "destination": "anywhere"}, {"target": "POSTROUTING_direct", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "POSTROUTING_ZONES_SOURCE", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "POSTROUTING_ZONES", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}]}, {"chain": "DOCKER", "rules": [{"target": "RETURN", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}]}, {"chain": "OUTPUT_direct", "rules": []}, {"chain": "POSTROUTING_ZONES", "rules": [{"target": "POST_public", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "[goto] "}, {"target": "POST_public", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "[goto] "}]}, {"chain": "POSTROUTING_ZONES_SOURCE", "rules": []}, {"chain": "POSTROUTING_direct", "rules": []}, {"chain": "POST_public", "rules": [{"target": "POST_public_log", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "POST_public_deny", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "POST_public_allow", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}]}, {"chain": "POST_public_allow", "rules": []}, {"chain": "POST_public_deny", "rules": []}, {"chain": "POST_public_log", "rules": []}, {"chain": "PREROUTING_ZONES", "rules": [{"target": "PRE_public", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "[goto] "}, {"target": "PRE_public", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "[goto] "}]}, {"chain": "PREROUTING_ZONES_SOURCE", "rules": []}, {"chain": "PREROUTING_direct", "rules": []}, {"chain": "PRE_public", "rules": [{"target": "PRE_public_log", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "PRE_public_deny", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "PRE_public_allow", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}]}, {"chain": "PRE_public_allow", "rules": []}, {"chain": "PRE_public_deny", "rules": []}, {"chain": "PRE_public_log", "rules": []}] jc-1.17.3/tests/fixtures/centos-7.7/iptables-nat.out000066400000000000000000000066341415226333200221440ustar00rootroot00000000000000Chain PREROUTING (policy ACCEPT) target prot opt source destination PREROUTING_direct all -- anywhere anywhere PREROUTING_ZONES_SOURCE all -- anywhere anywhere PREROUTING_ZONES all -- anywhere anywhere DOCKER all -- anywhere anywhere ADDRTYPE match dst-type LOCAL Chain INPUT (policy ACCEPT) target prot opt source destination Chain OUTPUT (policy ACCEPT) target prot opt source destination OUTPUT_direct all -- anywhere anywhere DOCKER all -- anywhere !loopback/8 ADDRTYPE match dst-type LOCAL Chain POSTROUTING (policy ACCEPT) target prot opt source destination MASQUERADE all -- 172.17.0.0/16 anywhere POSTROUTING_direct all -- anywhere anywhere POSTROUTING_ZONES_SOURCE all -- anywhere anywhere POSTROUTING_ZONES all -- anywhere anywhere Chain DOCKER (2 references) target prot opt source destination RETURN all -- anywhere anywhere Chain OUTPUT_direct (1 references) target prot opt source destination Chain POSTROUTING_ZONES (1 references) target prot opt source destination POST_public all -- anywhere anywhere [goto] POST_public all -- anywhere anywhere [goto] Chain POSTROUTING_ZONES_SOURCE (1 references) target prot opt source destination Chain POSTROUTING_direct (1 references) target prot opt source destination Chain POST_public (2 references) target prot opt source destination POST_public_log all -- anywhere anywhere POST_public_deny all -- anywhere anywhere POST_public_allow all -- anywhere anywhere Chain POST_public_allow (1 references) target prot opt source destination Chain POST_public_deny (1 references) target prot opt source destination Chain POST_public_log (1 references) target prot opt source destination Chain PREROUTING_ZONES (1 references) target prot opt source destination PRE_public all -- anywhere anywhere [goto] PRE_public all -- anywhere anywhere [goto] Chain PREROUTING_ZONES_SOURCE (1 references) target prot opt source destination Chain PREROUTING_direct (1 references) target prot opt source destination Chain PRE_public (2 references) target prot opt source destination PRE_public_log all -- anywhere anywhere PRE_public_deny all -- anywhere anywhere PRE_public_allow all -- anywhere anywhere Chain PRE_public_allow (1 references) target prot opt source destination Chain PRE_public_deny (1 references) target prot opt source destination Chain PRE_public_log (1 references) target prot opt source destination jc-1.17.3/tests/fixtures/centos-7.7/iptables-raw.json000066400000000000000000000026241415226333200223100ustar00rootroot00000000000000[{"chain": "PREROUTING", "rules": [{"target": "PREROUTING_direct", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "PREROUTING_ZONES_SOURCE", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "PREROUTING_ZONES", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}]}, {"chain": "OUTPUT", "rules": [{"target": "OUTPUT_direct", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}]}, {"chain": "OUTPUT_direct", "rules": []}, {"chain": "PREROUTING_ZONES", "rules": [{"target": "PRE_public", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "[goto] "}, {"target": "PRE_public", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "[goto] "}]}, {"chain": "PREROUTING_ZONES_SOURCE", "rules": []}, {"chain": "PREROUTING_direct", "rules": []}, {"chain": "PRE_public", "rules": [{"target": "PRE_public_log", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "PRE_public_deny", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "PRE_public_allow", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}]}, {"chain": "PRE_public_allow", "rules": []}, {"chain": "PRE_public_deny", "rules": []}, {"chain": "PRE_public_log", "rules": []}] jc-1.17.3/tests/fixtures/centos-7.7/iptables-raw.out000066400000000000000000000031201415226333200221360ustar00rootroot00000000000000Chain PREROUTING (policy ACCEPT) target prot opt source destination PREROUTING_direct all -- anywhere anywhere PREROUTING_ZONES_SOURCE all -- anywhere anywhere PREROUTING_ZONES all -- anywhere anywhere Chain OUTPUT (policy ACCEPT) target prot opt source destination OUTPUT_direct all -- anywhere anywhere Chain OUTPUT_direct (1 references) target prot opt source destination Chain PREROUTING_ZONES (1 references) target prot opt source destination PRE_public all -- anywhere anywhere [goto] PRE_public all -- anywhere anywhere [goto] Chain PREROUTING_ZONES_SOURCE (1 references) target prot opt source destination Chain PREROUTING_direct (1 references) target prot opt source destination Chain PRE_public (2 references) target prot opt source destination PRE_public_log all -- anywhere anywhere PRE_public_deny all -- anywhere anywhere PRE_public_allow all -- anywhere anywhere Chain PRE_public_allow (1 references) target prot opt source destination Chain PRE_public_deny (1 references) target prot opt source destination Chain PRE_public_log (1 references) target prot opt source destination jc-1.17.3/tests/fixtures/centos-7.7/iw-scan0.json000066400000000000000000000023441415226333200213360ustar00rootroot00000000000000[{"bssid": "00:19:a9:cd:c6:80", "interface": "wlan0", "freq": 2412, "capability": "ESS ShortPreamble ShortSlotTime (0x0421)", "ssid": "Cisco1240", "supported_rates": [1.0, 2.0, 5.5, 6.0, 9.0, 11.0, 12.0, 18.0], "erp": "", "extended_supported_rates": [24.0, 36.0, 48.0, 54.0], "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "tsf_usec": 2984923701, "beacon_interval_tus": 100, "signal_dbm": -45.0, "last_seen_ms": 429, "selected_rates": [1.0, 2.0, 5.5, 11.0], "ds_parameter_set_channel": 1}, {"bssid": "d0:d0:fd:69:ca:70", "interface": "wlan0", "freq": 2462, "capability": "ESS ShortPreamble ShortSlotTime (0x0421)", "ssid": "Cisco1250", "supported_rates": [1.0, 2.0, 5.5, 6.0, 9.0, 11.0, 12.0, 18.0], "erp": "", "extended_supported_rates": [24.0, 36.0, 48.0, 54.0], "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "acm CW 3-7, AIFSN 2, TXOP 1504 usec", "tsf_usec": 2968648942, "beacon_interval_tus": 102, "signal_dbm": -70.0, "last_seen_ms": 328, "selected_rates": [1.0, 2.0, 5.5, 11.0], "ds_parameter_set_channel": 11}] jc-1.17.3/tests/fixtures/centos-7.7/iw-scan0.out000066400000000000000000000023361415226333200211750ustar00rootroot00000000000000BSS 00:19:a9:cd:c6:80 (on wlan0) TSF: 2984923701 usec (0d, 00:49:44) freq: 2412 beacon interval: 100 capability: ESS ShortPreamble ShortSlotTime (0x0421) signal: -45.00 dBm last seen: 429 ms ago SSID: Cisco1240 Supported rates: 1.0* 2.0* 5.5* 6.0 9.0 11.0* 12.0 18.0 DS Parameter set: channel 1 ERP: Extended supported rates: 24.0 36.0 48.0 54.0 WMM: * Parameter version 1 * u-APSD * BE: CW 15-1023, AIFSN 3 * BK: CW 15-1023, AIFSN 7 * VI: CW 7-15, AIFSN 2, TXOP 3008 usec * VO: CW 3-7, AIFSN 2, TXOP 1504 usec BSS d0:d0:fd:69:ca:70 (on wlan0) TSF: 2968648942 usec (0d, 00:49:28) freq: 2462 beacon interval: 102 capability: ESS ShortPreamble ShortSlotTime (0x0421) signal: -70.00 dBm last seen: 328 ms ago SSID: Cisco1250 Supported rates: 1.0* 2.0* 5.5* 6.0 9.0 11.0* 12.0 18.0 DS Parameter set: channel 11 ERP: Extended supported rates: 24.0 36.0 48.0 54.0 WMM: * Parameter version 1 * u-APSD * BE: CW 15-1023, AIFSN 3 * BK: CW 15-1023, AIFSN 7 * VI: CW 7-15, AIFSN 2, TXOP 3008 usec * VO: acm CW 3-7, AIFSN 2, TXOP 1504 usecjc-1.17.3/tests/fixtures/centos-7.7/iw-scan1.json000066400000000000000000001345331415226333200213450ustar00rootroot00000000000000[{"bssid": "ac:22:05:db:4d:5b", "interface": "wlan0", "freq": 2412, "capability": "ESS Privacy ShortSlotTime RadioMeasure (0x1411)", "ssid": "Hoeheitsgebiet", "supported_rates": [1.0, 2.0, 5.5, 11.0, 9.0, 18.0, 36.0, 54.0], "erp": "Barker_Preamble_Mode", "extended_supported_rates": [6.0, 12.0, 24.0, 48.0], "country": "EU", "capabilities": "1-PTKSA-RC 1-GTKSA-RC (0x0000)", "ht_rx_mcs_rate_indexes_supported": "0-15", "primary_channel": 1, "secondary_channel_offset": "no secondary", "rifs": 0, "ht_protection": "no", "non_gf_present": 1, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "wpa": "Version: 1", "group_cipher": "TKIP", "pairwise_ciphers": "TKIP CCMP", "authentication_suites": "PSK", "rsn": "Version: 1", "extended_capabilities": "HT Information Exchange Supported, BSS Transition", "station_count": 1, "channel_utilisation": "103/255", "available_admission_capacity": 31250, "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "wps": "Version: 1.0", "wi_fi_protected_setup_state": "2 (Configured)", "response_type": "3 (AP)", "uuid": "327fd200-1dd2-11b2-8601-8e4aa01a9d4a", "manufacturer": "Ralink Technology, Corp.", "model": "Ralink Wireless Access Point", "model_number": "RT2860", "serial_number": 12345678, "primary_device_type": "6-0050f204-1", "device_name": "RalinkAPS", "rf_bands": "0x1", "unknown_tlv_0x1049_6_bytes": "00 37 2a 00 01 20", "environment": "Indoor/Outdoor", "tsf_usec": 212106552475, "sta_channel_width_mhz": 20, "beacon_interval_tus": 100, "signal_dbm": -57.0, "last_seen_ms": 3520, "selected_rates": [1.0, 2.0, 5.5, 11.0], "ds_parameter_set_channel": 1, "max_amsdu_length_bytes": 3839, "minimum_rx_ampdu_time_spacing_usec": 4}, {"bssid": "1c:b0:44:75:42:a5", "interface": "wlan0", "freq": 2457, "capability": "ESS Privacy ShortPreamble ShortSlotTime (0x0431)", "ssid": "o2-WLAN38", "supported_rates": [9.0, 18.0, 36.0, 54.0, 1.0, 2.0, 5.5, 11.0], "country": "DE", "erp": "", "capabilities": "1-PTKSA-RC 1-GTKSA-RC MFP-capable (0x0080)", "ht_rx_mcs_rate_indexes_supported": "0-15", "rsn": "Version: 1", "group_cipher": "CCMP", "pairwise_ciphers": "CCMP", "authentication_suites": "PSK", "group_mgmt_cipher_suite": "AES-128-CMAC", "extended_supported_rates": [6.0, 12.0, 24.0, 48.0], "primary_channel": 10, "secondary_channel_offset": "no secondary", "rifs": 0, "ht_protection": "no", "non_gf_present": 1, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "bss_width_channel_transition_delay_factor": 5, "extended_capabilities": "HT Information Exchange Supported", "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "wps": "Version: 1.0", "wi_fi_protected_setup_state": "2 (Configured)", "response_type": "3 (AP)", "uuid": "b0493afc-202d-11b2-8a5b-1cb0447542a5", "manufacturer": "Askey", "model": "o2 HomeBox", "model_number": 6741, "serial_number": "A804016507-009096", "primary_device_type": "6-0050f204-1", "device_name": "o2 HomeBox 6741", "config_methods": "Keypad", "unknown_tlv_0x1049_6_bytes": "00 37 2a 00 01 20", "environment": "Indoor/Outdoor", "tsf_usec": 212108020750, "sta_channel_width_mhz": 20, "passive_dwell_tus": 20, "active_dwell_tus": 10, "channel_width_trigger_scan_interval_s": 300, "scan_passive_total_per_channel_tus": 200, "scan_active_total_per_channel_tus": 20, "beacon_interval_tus": 100, "signal_dbm": -70.0, "last_seen_ms": 2050, "selected_rates": [1.0], "obss_scan_activity_threshold_percent": 100.0, "ds_parameter_set_channel": 10, "max_amsdu_length_bytes": 3839, "power_constraint_db": 0, "minimum_rx_ampdu_time_spacing_usec": 16}, {"bssid": "34:2c:c4:34:3b:95", "interface": "wlan0", "freq": 2412, "capability": "ESS Privacy ShortSlotTime RadioMeasure (0x1411)", "ssid": "Medusa_13", "supported_rates": [1.0, 2.0, 5.5, 11.0, 9.0, 18.0, 36.0, 54.0], "erp": "Barker_Preamble_Mode", "extended_supported_rates": [6.0, 12.0, 24.0, 48.0], "country": "EU", "capabilities": "1-PTKSA-RC 1-GTKSA-RC (0x0000)", "ht_rx_mcs_rate_indexes_supported": "0-15", "primary_channel": 1, "secondary_channel_offset": "no secondary", "rifs": 0, "ht_protection": "no", "non_gf_present": 0, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "wpa": "Version: 1", "group_cipher": "TKIP", "pairwise_ciphers": "TKIP CCMP", "authentication_suites": "PSK", "rsn": "Version: 1", "extended_capabilities": "HT Information Exchange Supported, BSS Transition", "station_count": 0, "channel_utilisation": "90/255", "available_admission_capacity": 31250, "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "wps": "Version: 1.0", "wi_fi_protected_setup_state": "2 (Configured)", "response_type": "3 (AP)", "uuid": "314ea500-1dd2-11b2-8601-8e4aa01a9d4a", "manufacturer": "Ralink Technology, Corp.", "model": "Ralink Wireless Access Point", "model_number": "RT2860", "serial_number": 12345678, "primary_device_type": "6-0050f204-1", "device_name": "RalinkAPS", "rf_bands": "0x1", "unknown_tlv_0x1049_6_bytes": "00 37 2a 00 01 20", "environment": "Indoor/Outdoor", "tsf_usec": 212096913717, "sta_channel_width_mhz": 20, "beacon_interval_tus": 100, "signal_dbm": -77.0, "last_seen_ms": 13160, "selected_rates": [1.0, 2.0, 5.5, 11.0], "ds_parameter_set_channel": 1, "max_amsdu_length_bytes": 3839, "minimum_rx_ampdu_time_spacing_usec": 4}, {"bssid": "ac:22:05:e6:ff:41", "interface": "wlan0", "freq": 2462, "capability": "ESS Privacy RadioMeasure (0x1011)", "ssid": "UPCCDB29F5", "supported_rates": [1.0, 2.0, 5.5, 11.0, 9.0, 18.0, 36.0, 54.0], "erp": "Barker_Preamble_Mode", "extended_supported_rates": [6.0, 12.0, 24.0, 48.0], "country": "EU", "capabilities": "1-PTKSA-RC 1-GTKSA-RC (0x0000)", "ht_rx_mcs_rate_indexes_supported": "0-15", "primary_channel": 11, "secondary_channel_offset": "no secondary", "rifs": 0, "ht_protection": "no", "non_gf_present": 1, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "wpa": "Version: 1", "group_cipher": "TKIP", "pairwise_ciphers": "TKIP CCMP", "authentication_suites": "PSK", "rsn": "Version: 1", "extended_capabilities": "HT Information Exchange Supported, BSS Transition", "station_count": 3, "channel_utilisation": "87/255", "available_admission_capacity": 31250, "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "wps": "Version: 1.0", "wi_fi_protected_setup_state": "2 (Configured)", "response_type": "3 (AP)", "uuid": "314ea500-1dd2-11b2-8601-8e4aa01a9d4a", "manufacturer": "Ralink Technology, Corp.", "model": "Ralink Wireless Access Point", "model_number": "RT2860", "serial_number": 12345678, "primary_device_type": "6-0050f204-1", "device_name": "RalinkAPS", "rf_bands": "0x1", "unknown_tlv_0x1049_6_bytes": "00 37 2a 00 01 20", "environment": "Indoor/Outdoor", "tsf_usec": 212108270373, "sta_channel_width_mhz": 20, "beacon_interval_tus": 100, "signal_dbm": -41.0, "last_seen_ms": 1750, "selected_rates": [1.0, 2.0, 5.5, 11.0], "ds_parameter_set_channel": 11, "max_amsdu_length_bytes": 3839, "minimum_rx_ampdu_time_spacing_usec": 4}, {"bssid": "ac:22:05:e6:ff:24", "interface": "wlan0", "freq": 5180, "capability": "ESS Privacy ShortPreamble SpectrumMgmt ShortSlotTime RadioMeasure (0x1531)", "ssid": "UPCCDB29F5", "supported_rates": [6.0, 9.0, 12.0, 18.0, 24.0, 36.0, 48.0, 54.0], "rsn": "Version: 1", "group_cipher": "TKIP", "pairwise_ciphers": "TKIP", "authentication_suites": "PSK", "capabilities": "0x6f", "ht_rx_mcs_rate_indexes_supported": "0-23, 32", "primary_channel": 36, "secondary_channel_offset": "above", "rifs": 0, "ht_protection": "no", "non_gf_present": 1, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "extended_capabilities": 6, "max_mpdu_length": 3895, "supported_channel_width": "neither 160 nor 80+80", "1_streams": "MCS 0-9", "2_streams": "MCS 0-9", "3_streams": "MCS 0-9", "4_streams": "not supported", "5_streams": "not supported", "6_streams": "not supported", "7_streams": "not supported", "8_streams": "not supported", "channel_width": "1 (80 MHz)", "center_freq_segment_1": 42, "center_freq_segment_2": 0, "vht_basic_mcs_set": "0xffc0", "station_count": 3, "channel_utilisation": "35/255", "available_admission_capacity": 30000, "wpa": "Version: 1", "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "wps": "Version: 1.0", "wi_fi_protected_setup_state": "2 (Configured)", "response_type": "3 (AP)", "uuid": "314ea500-1dd2-11b2-8601-8e4aa01a9d4a", "manufacturer": "Marvell", "model": "WAP", "model_number": 123, "serial_number": 12345, "primary_device_type": "6-0050f204-1", "device_name": "5G wireless AP", "rf_bands": "0x2", "unknown_tlv_0x1049_6_bytes": "00 37 2a 00 01 20", "tsf_usec": 212107576616, "sta_channel_width_mhz": "any", "beacon_interval_tus": 100, "signal_dbm": -30.0, "last_seen_ms": 130, "selected_rates": [6.0, 12.0, 24.0], "ds_parameter_set_channel": 36, "max_amsdu_length_bytes": 3839, "power_constraint_db": 3, "minimum_rx_ampdu_time_spacing_usec": 4, "vht_rx_highest_supported_mbps": 0, "vht_tx_highest_supported_mbps": 0}, {"bssid": "a8:d3:f7:96:10:69", "interface": "wlan0", "freq": 2442, "capability": "ESS Privacy ShortPreamble ShortSlotTime (0x0431)", "ssid": "o2-WLAN34", "supported_rates": [9.0, 18.0, 36.0, 54.0, 1.0, 2.0, 5.5, 11.0], "country": "DE", "erp": "", "capabilities": "1-PTKSA-RC 1-GTKSA-RC (0x0000)", "ht_rx_mcs_rate_indexes_supported": "0-15", "rsn": "Version: 1", "group_cipher": "CCMP", "pairwise_ciphers": "CCMP", "authentication_suites": "PSK", "extended_supported_rates": [6.0, 12.0, 24.0, 48.0], "primary_channel": 7, "secondary_channel_offset": "no secondary", "rifs": 0, "ht_protection": "nonmember", "non_gf_present": 1, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "bss_width_channel_transition_delay_factor": 5, "extended_capabilities": "HT Information Exchange Supported", "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "wps": "Version: 1.0", "wi_fi_protected_setup_state": "2 (Configured)", "response_type": "3 (AP)", "uuid": "4e9bd57c-8ebe-46d8-aa04-cdd3994f7288", "manufacturer": "Arcadyan", "model": "o2 HomeBox 6441", "model_number": "IAD 6441", "serial_number": "D512146595", "primary_device_type": "6-0050f204-1", "device_name": "D512146595-A8D3F7", "rf_bands": "0x3", "unknown_tlv_0x1049_6_bytes": "00 37 2a 00 01 20", "environment": "Indoor/Outdoor", "tsf_usec": 212107440363, "sta_channel_width_mhz": 20, "passive_dwell_tus": 20, "active_dwell_tus": 10, "channel_width_trigger_scan_interval_s": 300, "scan_passive_total_per_channel_tus": 200, "scan_active_total_per_channel_tus": 20, "beacon_interval_tus": 100, "signal_dbm": -81.0, "last_seen_ms": 2630, "selected_rates": [1.0], "obss_scan_activity_threshold_percent": 100.0, "ds_parameter_set_channel": 7, "max_amsdu_length_bytes": 3839, "power_constraint_db": 0, "minimum_rx_ampdu_time_spacing_usec": 16}, {"bssid": "54:fa:3e:87:1f:93", "interface": "wlan0", "freq": 2472, "capability": "ESS Privacy ShortSlotTime APSD (0x0c11)", "ssid": "moin moin", "supported_rates": [1.0, 2.0, 5.5, 11.0, 9.0, 18.0, 36.0, 54.0], "erp": "Barker_Preamble_Mode", "extended_supported_rates": [6.0, 12.0, 24.0, 48.0], "capabilities": "1-PTKSA-RC 1-GTKSA-RC (0x0000)", "ht_rx_mcs_rate_indexes_supported": "0-15", "primary_channel": 13, "secondary_channel_offset": "no secondary", "rifs": 0, "ht_protection": "no", "non_gf_present": 1, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "wpa": "Version: 1", "group_cipher": "TKIP", "pairwise_ciphers": "TKIP CCMP", "authentication_suites": "PSK", "rsn": "Version: 1", "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "station_count": 1, "channel_utilisation": "26/255", "available_admission_capacity": 31250, "extended_capabilities": "HT Information Exchange Supported", "country": "DE", "wps": "Version: 1.0", "wi_fi_protected_setup_state": "2 (Configured)", "response_type": "3 (AP)", "uuid": "bc329e00-1dd8-11b2-8601-54fa3e871f93", "manufacturer": "Celeno Communication, Inc.", "model": "Celeno Wireless AP 2.4G", "model_number": "CL1800", "serial_number": 12345678, "primary_device_type": "6-0050f204-1", "device_name": "CelenoAP2.4G", "config_methods": "Display, PBC, Keypad", "rf_bands": "0x1", "unknown_tlv_0x1049_6_bytes": "00 37 2a 00 01 20", "environment": "Indoor/Outdoor", "tsf_usec": 212108698335, "sta_channel_width_mhz": 20, "beacon_interval_tus": 100, "signal_dbm": -72.0, "last_seen_ms": 1310, "selected_rates": [1.0, 2.0, 5.5, 11.0], "ds_parameter_set_channel": 13, "max_amsdu_length_bytes": 3839, "minimum_rx_ampdu_time_spacing_usec": "No"}, {"bssid": "ae:22:15:db:4d:5b", "interface": "wlan0", "freq": 2412, "capability": "ESS ShortSlotTime RadioMeasure (0x1401)", "ssid": "Vodafone Hotspot", "supported_rates": [1.0, 2.0, 5.5, 11.0, 9.0, 18.0, 36.0, 54.0], "erp": "Barker_Preamble_Mode", "extended_supported_rates": [6.0, 12.0, 24.0, 48.0], "country": "EU", "capabilities": "0x1ac", "ht_rx_mcs_rate_indexes_supported": "0-15", "primary_channel": 1, "secondary_channel_offset": "no secondary", "rifs": 0, "ht_protection": "no", "non_gf_present": 1, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "extended_capabilities": "HT Information Exchange Supported, BSS Transition", "station_count": 1, "channel_utilisation": "103/255", "available_admission_capacity": 31250, "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "environment": "Indoor/Outdoor", "tsf_usec": 212106562854, "sta_channel_width_mhz": 20, "beacon_interval_tus": 100, "signal_dbm": -57.0, "last_seen_ms": 3510, "selected_rates": [1.0, 2.0, 5.5, 11.0], "ds_parameter_set_channel": 1, "max_amsdu_length_bytes": 3839, "minimum_rx_ampdu_time_spacing_usec": 4}, {"bssid": "90:5c:44:d1:34:2f", "interface": "wlan0", "freq": 2437, "capability": "ESS Privacy ShortSlotTime RadioMeasure (0x1411)", "ssid": "UPC5144FAF", "supported_rates": [1.0, 2.0, 5.5, 11.0, 9.0, 18.0, 36.0, 54.0], "erp": "Barker_Preamble_Mode", "extended_supported_rates": [6.0, 12.0, 24.0, 48.0], "country": "EU", "capabilities": "1-PTKSA-RC 1-GTKSA-RC (0x0000)", "ht_rx_mcs_rate_indexes_supported": "0-15", "primary_channel": 6, "secondary_channel_offset": "no secondary", "rifs": 0, "ht_protection": "non-HT mixed", "non_gf_present": 1, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "wpa": "Version: 1", "group_cipher": "TKIP", "pairwise_ciphers": "TKIP CCMP", "authentication_suites": "PSK", "rsn": "Version: 1", "extended_capabilities": "HT Information Exchange Supported, BSS Transition", "station_count": 1, "channel_utilisation": "109/255", "available_admission_capacity": 31250, "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "wps": "Version: 1.0", "wi_fi_protected_setup_state": "2 (Configured)", "response_type": "3 (AP)", "uuid": "30b60e80-1dd2-11b2-8601-8e4aa01a9d4a", "manufacturer": "Ralink Technology, Corp.", "model": "Ralink Wireless Access Point", "model_number": "RT2860", "serial_number": 12345678, "primary_device_type": "6-0050f204-1", "device_name": "RalinkAPS", "rf_bands": "0x1", "unknown_tlv_0x1049_6_bytes": "00 37 2a 00 01 20", "environment": "Indoor/Outdoor", "tsf_usec": 212107263738, "sta_channel_width_mhz": 20, "beacon_interval_tus": 100, "signal_dbm": -53.0, "last_seen_ms": 2810, "selected_rates": [1.0, 2.0, 5.5, 11.0], "ds_parameter_set_channel": 6, "max_amsdu_length_bytes": 3839, "minimum_rx_ampdu_time_spacing_usec": 4}, {"bssid": "92:5c:14:d1:34:2f", "interface": "wlan0", "freq": 2437, "capability": "ESS ShortSlotTime RadioMeasure (0x1401)", "ssid": "Vodafone Hotspot", "supported_rates": [1.0, 2.0, 5.5, 11.0, 9.0, 18.0, 36.0, 54.0], "erp": "Barker_Preamble_Mode", "extended_supported_rates": [6.0, 12.0, 24.0, 48.0], "country": "EU", "capabilities": "0x1ac", "ht_rx_mcs_rate_indexes_supported": "0-15", "primary_channel": 6, "secondary_channel_offset": "no secondary", "rifs": 0, "ht_protection": "non-HT mixed", "non_gf_present": 1, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "extended_capabilities": "HT Information Exchange Supported, BSS Transition", "station_count": 1, "channel_utilisation": "109/255", "available_admission_capacity": 31250, "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "environment": "Indoor/Outdoor", "tsf_usec": 212107270871, "sta_channel_width_mhz": 20, "beacon_interval_tus": 100, "signal_dbm": -53.0, "last_seen_ms": 2800, "selected_rates": [1.0, 2.0, 5.5, 11.0], "ds_parameter_set_channel": 6, "max_amsdu_length_bytes": 3839, "minimum_rx_ampdu_time_spacing_usec": 4}, {"bssid": "36:2c:b4:34:3b:95", "interface": "wlan0", "freq": 2412, "capability": "ESS Privacy ShortSlotTime RadioMeasure (0x1411)", "ssid": "Gast_Medusa_13", "supported_rates": [1.0, 2.0, 5.5, 11.0, 9.0, 18.0, 36.0, 54.0], "erp": "Barker_Preamble_Mode", "extended_supported_rates": [6.0, 12.0, 24.0, 48.0], "country": "EU", "capabilities": "1-PTKSA-RC 1-GTKSA-RC (0x0000)", "ht_rx_mcs_rate_indexes_supported": "0-15", "primary_channel": 1, "secondary_channel_offset": "no secondary", "rifs": 0, "ht_protection": "no", "non_gf_present": 0, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "wpa": "Version: 1", "group_cipher": "TKIP", "pairwise_ciphers": "TKIP CCMP", "authentication_suites": "PSK", "rsn": "Version: 1", "extended_capabilities": "HT Information Exchange Supported, BSS Transition", "station_count": 0, "channel_utilisation": "94/255", "available_admission_capacity": 31250, "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "environment": "Indoor/Outdoor", "tsf_usec": 212075883822, "sta_channel_width_mhz": 20, "beacon_interval_tus": 100, "signal_dbm": -77.0, "last_seen_ms": 13150, "selected_rates": [1.0, 2.0, 5.5, 11.0], "ds_parameter_set_channel": 1, "max_amsdu_length_bytes": 3839, "minimum_rx_ampdu_time_spacing_usec": 4}, {"bssid": "fe:49:2d:20:d8:21", "interface": "wlan0", "freq": 2412, "capability": "ESS Privacy ShortSlotTime (0x0411)", "ssid": "\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00", "supported_rates": [6.0, 9.0, 12.0, 18.0, 24.0, 36.0, 48.0, 54.0], "tim": "DTIM Count 1 DTIM Period 2 Bitmap Control 0x0 Bitmap[0] 0x0", "erp": "", "rsn": "Version: 1", "group_cipher": "CCMP", "pairwise_ciphers": "CCMP", "authentication_suites": "PSK", "capabilities": "0x1ad", "ht_rx_mcs_rate_indexes_supported": "0-15", "primary_channel": 1, "secondary_channel_offset": "no secondary", "rifs": 1, "ht_protection": "no", "non_gf_present": 0, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "extended_capabilities": "Extended Channel Switching", "wps": "Version: 1.0", "wi_fi_protected_setup_state": "2 (Configured)", "unknown_tlv_0x1049_6_bytes": "00 37 2a 00 01 20", "device_name": "Marion,Laura,Larissas Fire TV...", "primary_device_type": "1-0050f204-9", "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "p2p": "Group capa: 0x25, Device capa: 0xab", "unknown_tlv_0x03_6_bytes": "49 2d 20 58 21 dd", "tsf_usec": 212080903764, "sta_channel_width_mhz": 20, "beacon_interval_tus": 100, "signal_dbm": -67.0, "last_seen_ms": 29170, "selected_rates": [6.0, 12.0, 24.0], "ds_parameter_set_channel": 1, "max_amsdu_length_bytes": 3839, "minimum_rx_ampdu_time_spacing_usec": 4}, {"bssid": "90:5c:44:db:21:48", "interface": "wlan0", "freq": 2462, "capability": "ESS Privacy ShortSlotTime RadioMeasure (0x1411)", "ssid": "UPC614F5E5", "supported_rates": [1.0, 2.0, 5.5, 11.0, 9.0, 18.0, 36.0, 54.0], "erp": "Barker_Preamble_Mode", "extended_supported_rates": [6.0, 12.0, 24.0, 48.0], "country": "EU", "capabilities": "1-PTKSA-RC 1-GTKSA-RC (0x0000)", "ht_rx_mcs_rate_indexes_supported": "0-15", "primary_channel": 11, "secondary_channel_offset": "no secondary", "rifs": 0, "ht_protection": "no", "non_gf_present": 1, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "wpa": "Version: 1", "group_cipher": "TKIP", "pairwise_ciphers": "TKIP CCMP", "authentication_suites": "PSK", "rsn": "Version: 1", "extended_capabilities": "HT Information Exchange Supported, BSS Transition", "station_count": 1, "channel_utilisation": "100/255", "available_admission_capacity": 31250, "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "wps": "Version: 1.0", "wi_fi_protected_setup_state": "2 (Configured)", "response_type": "3 (AP)", "uuid": "314ea500-1dd2-11b2-8601-8e4aa01a9d4a", "manufacturer": "Ralink Technology, Corp.", "model": "Ralink Wireless Access Point", "model_number": "RT2860", "serial_number": 12345678, "primary_device_type": "6-0050f204-1", "device_name": "RalinkAPS", "rf_bands": "0x1", "unknown_tlv_0x1049_6_bytes": "00 37 2a 00 01 20", "environment": "Indoor/Outdoor", "tsf_usec": 212077364612, "sta_channel_width_mhz": 20, "beacon_interval_tus": 100, "signal_dbm": -76.0, "last_seen_ms": 27640, "selected_rates": [1.0, 2.0, 5.5, 11.0], "ds_parameter_set_channel": 11, "max_amsdu_length_bytes": 3839, "minimum_rx_ampdu_time_spacing_usec": 4}, {"bssid": "ae:22:15:e6:ff:41", "interface": "wlan0", "freq": 2462, "capability": "ESS RadioMeasure (0x1001)", "ssid": "Vodafone Hotspot", "supported_rates": [1.0, 2.0, 5.5, 11.0, 9.0, 18.0, 36.0, 54.0], "erp": "Barker_Preamble_Mode", "extended_supported_rates": [6.0, 12.0, 24.0, 48.0], "country": "EU", "capabilities": "0x1ac", "ht_rx_mcs_rate_indexes_supported": "0-15", "primary_channel": 11, "secondary_channel_offset": "no secondary", "rifs": 0, "ht_protection": "no", "non_gf_present": 1, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "extended_capabilities": "HT Information Exchange Supported, BSS Transition", "station_count": 3, "channel_utilisation": "87/255", "available_admission_capacity": 31250, "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "environment": "Indoor/Outdoor", "tsf_usec": 212108278788, "sta_channel_width_mhz": 20, "beacon_interval_tus": 100, "signal_dbm": -40.0, "last_seen_ms": 1740, "selected_rates": [1.0, 2.0, 5.5, 11.0], "ds_parameter_set_channel": 11, "max_amsdu_length_bytes": 3839, "minimum_rx_ampdu_time_spacing_usec": 4}, {"bssid": "34:31:c4:b8:2e:85", "interface": "wlan0", "freq": 2437, "capability": "ESS Privacy ShortPreamble ShortSlotTime RadioMeasure (0x1431)", "ssid": "Nexus", "supported_rates": [1.0, 2.0, 5.5, 11.0, 6.0, 9.0, 12.0, 18.0], "tim": "DTIM Count 0 DTIM Period 1 Bitmap Control 0x0 Bitmap[0] 0x0 (+ 1 octet)", "country": "DE", "erp": "", "extended_supported_rates": [36.0, 48.0, 54.0], "station_count": 13, "channel_utilisation": "74/255", "available_admission_capacity": 0, "capabilities": "1-PTKSA-RC 1-GTKSA-RC MFP-capable (0x0080)", "ht_tx/rx_mcs_rate_indexes_supported": "0-23", "primary_channel": 6, "secondary_channel_offset": "no secondary", "rifs": 0, "ht_protection": "nonmember", "non_gf_present": 1, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "bss_width_channel_transition_delay_factor": 5, "extended_capabilities": "HT Information Exchange Supported, Extended Channel Switching, TFS, WNM-Sleep Mode, TIM Broadcast, BSS Transition, 6", "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "wps": "Version: 1.0", "wi_fi_protected_setup_state": "2 (Configured)", "rf_bands": "0x3", "unknown_tlv_0x1049_6_bytes": "00 37 2a 00 01 20", "rsn": "Version: 1", "group_cipher": "CCMP", "pairwise_ciphers": "CCMP", "authentication_suites": "PSK 00-0f-ac:8", "environment": "Indoor/Outdoor", "tsf_usec": 212081672689, "sta_channel_width_mhz": 20, "passive_dwell_tus": 20, "active_dwell_tus": 10, "channel_width_trigger_scan_interval_s": 300, "scan_passive_total_per_channel_tus": 200, "scan_active_total_per_channel_tus": 20, "beacon_interval_tus": 100, "signal_dbm": -83.0, "last_seen_ms": 28400, "selected_rates": [1.0, 2.0, 5.5, 11.0, 6.0, 12.0], "obss_scan_activity_threshold_percent": 0.25, "ds_parameter_set_channel": 6, "max_amsdu_length_bytes": 3839, "minimum_rx_ampdu_time_spacing_usec": 8}, {"bssid": "92:5c:14:db:21:48", "interface": "wlan0", "freq": 2462, "capability": "ESS ShortSlotTime RadioMeasure (0x1401)", "ssid": "Vodafone Hotspot", "supported_rates": [1.0, 2.0, 5.5, 11.0, 9.0, 18.0, 36.0, 54.0], "erp": "Barker_Preamble_Mode", "extended_supported_rates": [6.0, 12.0, 24.0, 48.0], "country": "EU", "capabilities": "0x1ac", "ht_rx_mcs_rate_indexes_supported": "0-15", "primary_channel": 11, "secondary_channel_offset": "no secondary", "rifs": 0, "ht_protection": "no", "non_gf_present": 1, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "extended_capabilities": "HT Information Exchange Supported, BSS Transition", "station_count": 1, "channel_utilisation": "111/255", "available_admission_capacity": 31250, "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "environment": "Indoor/Outdoor", "tsf_usec": 212098644532, "sta_channel_width_mhz": 20, "beacon_interval_tus": 100, "signal_dbm": -71.0, "last_seen_ms": 11430, "selected_rates": [1.0, 2.0, 5.5, 11.0], "ds_parameter_set_channel": 11, "max_amsdu_length_bytes": 3839, "minimum_rx_ampdu_time_spacing_usec": 4}, {"bssid": "9c:80:df:31:03:a4", "interface": "wlan0", "freq": 2467, "capability": "ESS Privacy ShortSlotTime (0x0411)", "ssid": "o2-WLAN84", "supported_rates": [1.0, 2.0, 5.5, 11.0, 9.0, 18.0, 36.0, 54.0], "extended_supported_rates": [6.0, 12.0, 24.0, 48.0], "country": "DE", "wps": "Version: 1.0", "wi_fi_protected_setup_state": "2 (Configured)", "tim": "DTIM Count 0 DTIM Period 1 Bitmap Control 0x0 Bitmap[0] 0x0", "erp": "Barker_Preamble_Mode", "capabilities": "PreAuth 1-PTKSA-RC 1-GTKSA-RC (0x0001)", "ht_rx_mcs_rate_indexes_supported": "0-15, 32", "primary_channel": 12, "secondary_channel_offset": "no secondary", "rifs": 0, "ht_protection": "20 MHz", "non_gf_present": 1, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "extended_capabilities": "HT Information Exchange Supported", "bss_width_channel_transition_delay_factor": 5, "rsn": "Version: 1", "group_cipher": "CCMP", "pairwise_ciphers": "CCMP", "authentication_suites": "PSK", "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "station_count": 768, "channel_utilisation": "33/255", "available_admission_capacity": 4730, "environment": "Indoor/Outdoor", "tsf_usec": 212082583134, "sta_channel_width_mhz": 20, "passive_dwell_tus": 20, "active_dwell_tus": 10, "channel_width_trigger_scan_interval_s": 300, "scan_passive_total_per_channel_tus": 200, "scan_active_total_per_channel_tus": 20, "beacon_interval_tus": 100, "signal_dbm": -87.0, "last_seen_ms": 27490, "selected_rates": [1.0, 2.0, 5.5, 11.0], "obss_scan_activity_threshold_percent": 0.25, "ds_parameter_set_channel": 12, "max_amsdu_length_bytes": 3839, "minimum_rx_ampdu_time_spacing_usec": 4}, {"bssid": "36:2c:94:34:3b:95", "interface": "wlan0", "freq": 2412, "capability": "ESS ShortSlotTime RadioMeasure (0x1401)", "ssid": "Vodafone Hotspot", "supported_rates": [1.0, 2.0, 5.5, 11.0, 9.0, 18.0, 36.0, 54.0], "erp": "Barker_Preamble_Mode", "extended_supported_rates": [6.0, 12.0, 24.0, 48.0], "country": "EU", "capabilities": "0x1ac", "ht_rx_mcs_rate_indexes_supported": "0-15", "primary_channel": 1, "secondary_channel_offset": "no secondary", "rifs": 0, "ht_protection": "no", "non_gf_present": 0, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "extended_capabilities": "HT Information Exchange Supported, BSS Transition", "station_count": 0, "channel_utilisation": "90/255", "available_admission_capacity": 31250, "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "environment": "Indoor/Outdoor", "tsf_usec": 212096926483, "sta_channel_width_mhz": 20, "beacon_interval_tus": 100, "signal_dbm": -84.0, "last_seen_ms": 13150, "selected_rates": [1.0, 2.0, 5.5, 11.0], "ds_parameter_set_channel": 1, "max_amsdu_length_bytes": 3839, "minimum_rx_ampdu_time_spacing_usec": 4}, {"bssid": "38:43:7d:1c:95:e6", "interface": "wlan0", "freq": 2437, "capability": "ESS Privacy ShortSlotTime RadioMeasure (0x1411)", "ssid": "UPCB45EF15", "supported_rates": [1.0, 2.0, 5.5, 11.0, 9.0, 18.0, 36.0, 54.0], "extended_supported_rates": [6.0, 12.0, 24.0, 48.0], "country": "EU", "tim": "DTIM Count 0 DTIM Period 1 Bitmap Control 0x0 Bitmap[0] 0x0", "wpa": "Version: 1", "group_cipher": "TKIP", "pairwise_ciphers": "TKIP CCMP", "authentication_suites": "PSK", "rsn": "Version: 1", "capabilities": "0x1ac", "wps": "Version: 1.0", "wi_fi_protected_setup_state": "2 (Configured)", "uuid": "30b60e80-1dd2-11b2-8601-8e4aa01a9d4a", "rf_bands": "0x1", "unknown_tlv_0x1049_6_bytes": "00 37 2a 00 01 20", "erp": "Barker_Preamble_Mode", "ht_rx_mcs_rate_indexes_supported": "0-15", "primary_channel": 6, "secondary_channel_offset": "no secondary", "rifs": 0, "ht_protection": "no", "non_gf_present": 1, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "extended_capabilities": "HT Information Exchange Supported, BSS Transition", "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "station_count": 1, "channel_utilisation": "86/255", "available_admission_capacity": 31250, "environment": "Indoor/Outdoor", "tsf_usec": 212097695148, "sta_channel_width_mhz": 20, "beacon_interval_tus": 100, "signal_dbm": -83.0, "last_seen_ms": 12380, "selected_rates": [1.0, 2.0, 5.5, 11.0], "ds_parameter_set_channel": 6, "max_amsdu_length_bytes": 3839, "minimum_rx_ampdu_time_spacing_usec": 4}, {"bssid": "90:5c:44:db:21:33", "interface": "wlan0", "freq": 5180, "capability": "ESS Privacy ShortPreamble SpectrumMgmt ShortSlotTime RadioMeasure (0x1531)", "ssid": "UPC614F5E5", "supported_rates": [6.0, 9.0, 12.0, 18.0, 24.0, 36.0, 48.0, 54.0], "rsn": "Version: 1", "group_cipher": "TKIP", "pairwise_ciphers": "TKIP", "authentication_suites": "PSK", "capabilities": "0x6f", "ht_rx_mcs_rate_indexes_supported": "0-23, 32", "primary_channel": 36, "secondary_channel_offset": "above", "rifs": 0, "ht_protection": "no", "non_gf_present": 1, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "extended_capabilities": 6, "max_mpdu_length": 3895, "supported_channel_width": "neither 160 nor 80+80", "1_streams": "MCS 0-9", "2_streams": "MCS 0-9", "3_streams": "MCS 0-9", "4_streams": "not supported", "5_streams": "not supported", "6_streams": "not supported", "7_streams": "not supported", "8_streams": "not supported", "channel_width": "1 (80 MHz)", "center_freq_segment_1": 42, "center_freq_segment_2": 0, "vht_basic_mcs_set": "0xffc0", "station_count": 2, "channel_utilisation": "54/255", "available_admission_capacity": 30000, "wpa": "Version: 1", "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "wps": "Version: 1.0", "wi_fi_protected_setup_state": "2 (Configured)", "response_type": "3 (AP)", "uuid": "314ea500-1dd2-11b2-8601-8e4aa01a9d4a", "manufacturer": "Marvell", "model": "WAP", "model_number": 123, "serial_number": 12345, "primary_device_type": "6-0050f204-1", "device_name": "5G wireless AP", "rf_bands": "0x2", "unknown_tlv_0x1049_6_bytes": "00 37 2a 00 01 20", "tsf_usec": 212107555845, "sta_channel_width_mhz": "any", "beacon_interval_tus": 100, "signal_dbm": -88.0, "last_seen_ms": 2510, "selected_rates": [6.0, 12.0, 24.0], "ds_parameter_set_channel": 36, "max_amsdu_length_bytes": 3839, "power_constraint_db": 3, "minimum_rx_ampdu_time_spacing_usec": 4, "vht_rx_highest_supported_mbps": 0, "vht_tx_highest_supported_mbps": 0}, {"bssid": "a8:d3:f7:96:10:6d", "interface": "wlan0", "freq": 5200, "capability": "ESS Privacy SpectrumMgmt ShortSlotTime (0x0511)", "ssid": "o2-WLAN34", "supported_rates": [6.0, 9.0, 12.0, 18.0, 24.0, 36.0, 48.0, 54.0], "country": "DE", "capabilities": "1-PTKSA-RC 1-GTKSA-RC (0x0000)", "ht_tx/rx_mcs_rate_indexes_supported": "0-31, 33-76", "primary_channel": 40, "secondary_channel_offset": "below", "rifs": 0, "ht_protection": "nonmember", "non_gf_present": 1, "obss_non_gf_present": 1, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "rsn": "Version: 1", "group_cipher": "CCMP", "pairwise_ciphers": "CCMP", "authentication_suites": "PSK", "extended_capabilities": "HT Information Exchange Supported, SSID List, 6", "wps": "Version: 1.0", "wi_fi_protected_setup_state": "2 (Configured)", "response_type": "3 (AP)", "uuid": "4e9bd57c-8ebe-46d8-aa04-cdd3994f7288", "manufacturer": "Quantenna", "model": "Topaz", "model_number": "QV840.432", "serial_number": "A8D3F796106D", "primary_device_type": "6-0050f204-1", "device_name": "Reference Design", "unknown_tlv_0x1049_6_bytes": "00 37 2a 00 01 20", "max_mpdu_length": 11454, "supported_channel_width": "neither 160 nor 80+80", "1_streams": "MCS 0-9", "2_streams": "MCS 0-9", "3_streams": "MCS 0-9", "4_streams": "MCS 0-9", "5_streams": "not supported", "6_streams": "not supported", "7_streams": "not supported", "8_streams": "not supported", "channel_width": "1 (80 MHz)", "center_freq_segment_1": 42, "center_freq_segment_2": 0, "vht_basic_mcs_set": "0xfffc", "environment": "Indoor/Outdoor", "tsf_usec": 212107799783, "sta_channel_width_mhz": "any", "beacon_interval_tus": 100, "signal_dbm": -88.0, "last_seen_ms": 2260, "selected_rates": [6.0, 12.0], "ds_parameter_set_channel": 40, "max_amsdu_length_bytes": 7935, "power_constraint_db": 0, "minimum_rx_ampdu_time_spacing_usec": 4, "vht_rx_highest_supported_mbps": 0, "vht_tx_highest_supported_mbps": 0}, {"bssid": "90:5c:44:d1:34:20", "interface": "wlan0", "freq": 5220, "capability": "ESS Privacy ShortPreamble SpectrumMgmt ShortSlotTime RadioMeasure (0x1531)", "ssid": "UPC5144FAF", "supported_rates": [6.0, 9.0, 12.0, 18.0, 24.0, 36.0, 48.0, 54.0], "rsn": "Version: 1", "group_cipher": "TKIP", "pairwise_ciphers": "TKIP", "authentication_suites": "PSK", "capabilities": "0x6f", "ht_rx_mcs_rate_indexes_supported": "0-23, 32", "primary_channel": 44, "secondary_channel_offset": "above", "rifs": 0, "ht_protection": "no", "non_gf_present": 1, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "extended_capabilities": 6, "max_mpdu_length": 3895, "supported_channel_width": "neither 160 nor 80+80", "1_streams": "MCS 0-9", "2_streams": "MCS 0-9", "3_streams": "MCS 0-9", "4_streams": "not supported", "5_streams": "not supported", "6_streams": "not supported", "7_streams": "not supported", "8_streams": "not supported", "channel_width": "1 (80 MHz)", "center_freq_segment_1": 42, "center_freq_segment_2": 0, "vht_basic_mcs_set": "0xffc0", "station_count": 1, "channel_utilisation": "33/255", "available_admission_capacity": 30000, "wpa": "Version: 1", "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "wps": "Version: 1.0", "wi_fi_protected_setup_state": "2 (Configured)", "response_type": "3 (AP)", "uuid": "30b60e80-1dd2-11b2-8601-8e4aa01a9d4a", "manufacturer": "Marvell", "model": "WAP", "model_number": 123, "serial_number": 12345, "primary_device_type": "6-0050f204-1", "device_name": "5G wireless AP", "rf_bands": "0x2", "unknown_tlv_0x1049_6_bytes": "00 37 2a 00 01 20", "tsf_usec": 212108016406, "sta_channel_width_mhz": "any", "beacon_interval_tus": 100, "signal_dbm": -46.0, "last_seen_ms": 2060, "selected_rates": [6.0, 12.0, 24.0], "ds_parameter_set_channel": 44, "max_amsdu_length_bytes": 3839, "power_constraint_db": 3, "minimum_rx_ampdu_time_spacing_usec": 4, "vht_rx_highest_supported_mbps": 0, "vht_tx_highest_supported_mbps": 0}, {"bssid": "ac:22:05:db:4d:22", "interface": "wlan0", "freq": 5220, "capability": "ESS Privacy ShortPreamble SpectrumMgmt ShortSlotTime RadioMeasure (0x1531)", "ssid": "Hoeheitsgebiet", "supported_rates": [6.0, 9.0, 12.0, 18.0, 24.0, 36.0, 48.0, 54.0], "rsn": "Version: 1", "group_cipher": "TKIP", "pairwise_ciphers": "TKIP", "authentication_suites": "PSK", "capabilities": "0x6f", "ht_rx_mcs_rate_indexes_supported": "0-23, 32", "primary_channel": 44, "secondary_channel_offset": "above", "rifs": 0, "ht_protection": "no", "non_gf_present": 1, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "extended_capabilities": 6, "max_mpdu_length": 3895, "supported_channel_width": "neither 160 nor 80+80", "1_streams": "MCS 0-9", "2_streams": "MCS 0-9", "3_streams": "MCS 0-9", "4_streams": "not supported", "5_streams": "not supported", "6_streams": "not supported", "7_streams": "not supported", "8_streams": "not supported", "channel_width": "1 (80 MHz)", "center_freq_segment_1": 42, "center_freq_segment_2": 0, "vht_basic_mcs_set": "0xffc0", "station_count": 4, "channel_utilisation": "43/255", "available_admission_capacity": 30000, "wpa": "Version: 1", "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "wps": "Version: 1.0", "wi_fi_protected_setup_state": "2 (Configured)", "response_type": "3 (AP)", "uuid": "327fd200-1dd2-11b2-8601-8e4aa01a9d4a", "manufacturer": "Marvell", "model": "WAP", "model_number": 123, "serial_number": 12345, "primary_device_type": "6-0050f204-1", "device_name": "5G wireless AP", "rf_bands": "0x2", "unknown_tlv_0x1049_6_bytes": "00 37 2a 00 01 20", "tsf_usec": 212108018921, "sta_channel_width_mhz": "any", "beacon_interval_tus": 100, "signal_dbm": -68.0, "last_seen_ms": 2020, "selected_rates": [6.0, 12.0, 24.0], "ds_parameter_set_channel": 44, "max_amsdu_length_bytes": 3839, "power_constraint_db": 3, "minimum_rx_ampdu_time_spacing_usec": 4, "vht_rx_highest_supported_mbps": 0, "vht_tx_highest_supported_mbps": 0}, {"bssid": "54:67:51:2c:3d:0a", "interface": "wlan0", "freq": 2462, "capability": "ESS Privacy ShortSlotTime RadioMeasure (0x1411)", "ssid": "UPC956E146", "supported_rates": [1.0, 2.0, 5.5, 11.0, 9.0, 18.0, 36.0, 54.0], "erp": "Barker_Preamble_Mode", "extended_supported_rates": [6.0, 12.0, 24.0, 48.0], "country": "EU", "capabilities": "1-PTKSA-RC 1-GTKSA-RC (0x0000)", "ht_rx_mcs_rate_indexes_supported": "0-15", "primary_channel": 11, "secondary_channel_offset": "no secondary", "rifs": 0, "ht_protection": "no", "non_gf_present": 0, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "wpa": "Version: 1", "group_cipher": "TKIP", "pairwise_ciphers": "TKIP CCMP", "authentication_suites": "PSK", "rsn": "Version: 1", "extended_capabilities": "HT Information Exchange Supported, BSS Transition", "station_count": 0, "channel_utilisation": "93/255", "available_admission_capacity": 31250, "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "wps": "Version: 1.0", "wi_fi_protected_setup_state": "2 (Configured)", "response_type": "3 (AP)", "uuid": "314ea500-1dd2-11b2-8601-8e4aa01a9d4a", "manufacturer": "Ralink Technology, Corp.", "model": "Ralink Wireless Access Point", "model_number": "RT2860", "serial_number": 12345678, "primary_device_type": "6-0050f204-1", "device_name": "RalinkAPS", "rf_bands": "0x1", "unknown_tlv_0x1049_6_bytes": "00 37 2a 00 01 20", "environment": "Indoor/Outdoor", "tsf_usec": 212108254184, "sta_channel_width_mhz": 20, "beacon_interval_tus": 100, "signal_dbm": -80.0, "last_seen_ms": 1820, "selected_rates": [1.0, 2.0, 5.5, 11.0], "ds_parameter_set_channel": 11, "max_amsdu_length_bytes": 3839, "minimum_rx_ampdu_time_spacing_usec": 4}, {"bssid": "74:31:70:75:f1:e2", "interface": "wlan0", "freq": 2462, "capability": "ESS Privacy ShortSlotTime (0x0411)", "ssid": "WLAN-75F122", "supported_rates": [1.0, 2.0, 5.5, 11.0, 18.0, 24.0, 36.0, 54.0], "erp": "", "erp_d4.0": "", "rsn": "Version: 1", "group_cipher": "CCMP", "pairwise_ciphers": "CCMP", "authentication_suites": "PSK", "capabilities": "0x186c", "extended_supported_rates": [6.0, 9.0, 12.0, 48.0], "ht_rx_mcs_rate_indexes_supported": "0-15", "primary_channel": 11, "secondary_channel_offset": "no secondary", "rifs": 1, "ht_protection": "no", "non_gf_present": 1, "obss_non_gf_present": 0, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "bss_width_channel_transition_delay_factor": 5, "extended_capabilities": "HT Information Exchange Supported", "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "wps": "Version: 1.0", "wi_fi_protected_setup_state": "2 (Configured)", "selected_registrar": "0x0", "response_type": "3 (AP)", "uuid": "00000000-0000-0003-0000-74317075f1e2", "manufacturer": "Corporation", "model": "VGV8539JW", "model_number": "1.47.000", "serial_number": "J144024542", "primary_device_type": "6-0050f204-1", "device_name": "Wireless Router(WFA)", "config_methods": "Label, PBC", "rf_bands": "0x3", "tsf_usec": 212098649788, "sta_channel_width_mhz": 20, "passive_dwell_tus": 20, "active_dwell_tus": 10, "channel_width_trigger_scan_interval_s": 300, "scan_passive_total_per_channel_tus": 200, "scan_active_total_per_channel_tus": 20, "beacon_interval_tus": 100, "signal_dbm": -80.0, "last_seen_ms": 11420, "selected_rates": [1.0, 2.0, 5.5, 11.0], "obss_scan_activity_threshold_percent": 0.25, "ds_parameter_set_channel": 11, "max_amsdu_length_bytes": 7935, "minimum_rx_ampdu_time_spacing_usec": 16}, {"bssid": "1c:b0:44:75:42:a8", "interface": "wlan0", "freq": 5220, "capability": "ESS Privacy SpectrumMgmt ShortSlotTime (0x0511)", "ssid": "o2-WLAN38", "supported_rates": [6.0, 9.0, 12.0, 18.0, 24.0, 36.0, 48.0, 54.0], "station_count": 5, "channel_utilisation": "55/255", "available_admission_capacity": 65535, "country": "DE", "capabilities": "1-PTKSA-RC 1-GTKSA-RC MFP-capable (0x0080)", "ht_tx/rx_mcs_rate_indexes_supported": "0-31, 33-76", "primary_channel": 44, "secondary_channel_offset": "above", "rifs": 0, "ht_protection": "nonmember", "non_gf_present": 1, "obss_non_gf_present": 1, "dual_beacon": 0, "dual_cts_protection": 0, "stbc_beacon": 0, "l_sig_txop_prot": 0, "pco_active": 0, "pco_phase": 0, "wmm": "Parameter version 1", "be": "CW 15-1023, AIFSN 3", "bk": "CW 15-1023, AIFSN 7", "vi": "CW 7-15, AIFSN 2, TXOP 3008 usec", "vo": "CW 3-7, AIFSN 2, TXOP 1504 usec", "rsn": "Version: 1", "group_cipher": "CCMP", "pairwise_ciphers": "CCMP", "authentication_suites": "PSK", "group_mgmt_cipher_suite": "AES-128-CMAC", "extended_capabilities": "HT Information Exchange Supported, BSS Transition, SSID List, 6", "wps": "Version: 1.0", "wi_fi_protected_setup_state": "2 (Configured)", "response_type": "3 (AP)", "uuid": "b0493afc-202d-11b2-8a5b-1cb0447542a5", "manufacturer": "Askey", "model": "o2 HomeBox", "model_number": 6741, "serial_number": "1CB0447542A8", "primary_device_type": "6-0050f204-1", "device_name": "o2 HomeBox 6741", "config_methods": "Display", "unknown_tlv_0x1049_6_bytes": "00 37 2a 00 01 20", "max_mpdu_length": 11454, "supported_channel_width": "neither 160 nor 80+80", "1_streams": "MCS 0-9", "2_streams": "MCS 0-9", "3_streams": "MCS 0-9", "4_streams": "MCS 0-9", "5_streams": "not supported", "6_streams": "not supported", "7_streams": "not supported", "8_streams": "not supported", "channel_width": "1 (80 MHz)", "center_freq_segment_1": 42, "center_freq_segment_2": 0, "vht_basic_mcs_set": "0xfffc", "environment": "Indoor/Outdoor", "tsf_usec": 212108018214, "sta_channel_width_mhz": "any", "beacon_interval_tus": 100, "signal_dbm": -89.0, "last_seen_ms": 2060, "selected_rates": [6.0, 12.0], "ds_parameter_set_channel": 44, "max_amsdu_length_bytes": 7935, "power_constraint_db": 0, "minimum_rx_ampdu_time_spacing_usec": 4, "vht_rx_highest_supported_mbps": 0, "vht_tx_highest_supported_mbps": 0}] jc-1.17.3/tests/fixtures/centos-7.7/iw-scan1.out000066400000000000000000002133161415226333200212000ustar00rootroot00000000000000BSS ac:22:05:db:4d:5b(on wlan0) TSF: 212106552475 usec (2d, 10:55:06) freq: 2412 beacon interval: 100 TUs capability: ESS Privacy ShortSlotTime RadioMeasure (0x1411) signal: -57.00 dBm last seen: 3520 ms ago Information elements from Probe Response frame: SSID: Hoeheitsgebiet Supported rates: 1.0* 2.0* 5.5* 11.0* 9.0 18.0 36.0 54.0 DS Parameter set: channel 1 ERP: Barker_Preamble_Mode Extended supported rates: 6.0 12.0 24.0 48.0 Country: EU Environment: Indoor/Outdoor Channels [1 - 13] @ 20 dBm HT capabilities: Capabilities: 0x1ac HT20 SM Power Save disabled RX HT20 SGI TX STBC RX STBC 1-stream Max AMSDU length: 3839 bytes No DSSS/CCK HT40 Maximum RX AMPDU length 65535 bytes (exponent: 0x003) Minimum RX AMPDU time spacing: 4 usec (0x05) HT RX MCS rate indexes supported: 0-15 HT TX MCS rate indexes are undefined HT operation: * primary channel: 1 * secondary channel offset: no secondary * STA channel width: 20 MHz * RIFS: 0 * HT protection: no * non-GF present: 1 * OBSS non-GF present: 0 * dual beacon: 0 * dual CTS protection: 0 * STBC beacon: 0 * L-SIG TXOP Prot: 0 * PCO active: 0 * PCO phase: 0 WPA: * Version: 1 * Group cipher: TKIP * Pairwise ciphers: TKIP CCMP * Authentication suites: PSK RSN: * Version: 1 * Group cipher: TKIP * Pairwise ciphers: TKIP CCMP * Authentication suites: PSK * Capabilities: 1-PTKSA-RC 1-GTKSA-RC (0x0000) Extended capabilities: HT Information Exchange Supported, BSS Transition BSS Load: * station count: 1 * channel utilisation: 103/255 * available admission capacity: 31250 [*32us] WMM: * Parameter version 1 * BE: CW 15-1023, AIFSN 3 * BK: CW 15-1023, AIFSN 7 * VI: CW 7-15, AIFSN 2, TXOP 3008 usec * VO: CW 3-7, AIFSN 2, TXOP 1504 usec Country: EU Environment: Indoor/Outdoor Channels [1 - 13] @ 16 dBm WPS: * Version: 1.0 * Wi-Fi Protected Setup State: 2 (Configured) * Response Type: 3 (AP) * UUID: 327fd200-1dd2-11b2-8601-8e4aa01a9d4a * Manufacturer: Ralink Technology, Corp. * Model: Ralink Wireless Access Point * Model Number: RT2860 * Serial Number: 12345678 * Primary Device Type: 6-0050f204-1 * Device name: RalinkAPS * Config methods: * RF Bands: 0x1 * Unknown TLV (0x1049, 6 bytes): 00 37 2a 00 01 20 BSS 1c:b0:44:75:42:a5(on wlan0) TSF: 212108020750 usec (2d, 10:55:08) freq: 2457 beacon interval: 100 TUs capability: ESS Privacy ShortPreamble ShortSlotTime (0x0431) signal: -70.00 dBm last seen: 2050 ms ago Information elements from Probe Response frame: SSID: o2-WLAN38 Supported rates: 9.0 18.0 36.0 54.0 1.0* 2.0 5.5 11.0 DS Parameter set: channel 10 Country: DE Environment: Indoor/Outdoor Channels [1 - 13] @ 20 dBm Power constraint: 0 dB ERP: HT capabilities: Capabilities: 0x2c HT20 SM Power Save disabled RX HT20 SGI No RX STBC Max AMSDU length: 3839 bytes No DSSS/CCK HT40 Maximum RX AMPDU length 32767 bytes (exponent: 0x002) Minimum RX AMPDU time spacing: 16 usec (0x07) HT RX MCS rate indexes supported: 0-15 HT TX MCS rate indexes are undefined RSN: * Version: 1 * Group cipher: CCMP * Pairwise ciphers: CCMP * Authentication suites: PSK * Capabilities: 1-PTKSA-RC 1-GTKSA-RC MFP-capable (0x0080) * 0 PMKIDs * Group mgmt cipher suite: AES-128-CMAC Extended supported rates: 6.0 12.0 24.0 48.0 HT operation: * primary channel: 10 * secondary channel offset: no secondary * STA channel width: 20 MHz * RIFS: 0 * HT protection: no * non-GF present: 1 * OBSS non-GF present: 0 * dual beacon: 0 * dual CTS protection: 0 * STBC beacon: 0 * L-SIG TXOP Prot: 0 * PCO active: 0 * PCO phase: 0 Overlapping BSS scan params: * passive dwell: 20 TUs * active dwell: 10 TUs * channel width trigger scan interval: 300 s * scan passive total per channel: 200 TUs * scan active total per channel: 20 TUs * BSS width channel transition delay factor: 5 * OBSS Scan Activity Threshold: 100.00 % Extended capabilities: HT Information Exchange Supported WMM: * Parameter version 1 * u-APSD * BE: CW 15-1023, AIFSN 3 * BK: CW 15-1023, AIFSN 7 * VI: CW 7-15, AIFSN 2, TXOP 3008 usec * VO: CW 3-7, AIFSN 2, TXOP 1504 usec WPS: * Version: 1.0 * Wi-Fi Protected Setup State: 2 (Configured) * Response Type: 3 (AP) * UUID: b0493afc-202d-11b2-8a5b-1cb0447542a5 * Manufacturer: Askey * Model: o2 HomeBox * Model Number: 6741 * Serial Number: A804016507-009096 * Primary Device Type: 6-0050f204-1 * Device name: o2 HomeBox 6741 * Config methods: Keypad * Unknown TLV (0x1049, 6 bytes): 00 37 2a 00 01 20 BSS 34:2c:c4:34:3b:95(on wlan0) TSF: 212096913717 usec (2d, 10:54:56) freq: 2412 beacon interval: 100 TUs capability: ESS Privacy ShortSlotTime RadioMeasure (0x1411) signal: -77.00 dBm last seen: 13160 ms ago Information elements from Probe Response frame: SSID: Medusa_13 Supported rates: 1.0* 2.0* 5.5* 11.0* 9.0 18.0 36.0 54.0 DS Parameter set: channel 1 ERP: Barker_Preamble_Mode Extended supported rates: 6.0 12.0 24.0 48.0 Country: EU Environment: Indoor/Outdoor Channels [1 - 13] @ 20 dBm HT capabilities: Capabilities: 0x1ac HT20 SM Power Save disabled RX HT20 SGI TX STBC RX STBC 1-stream Max AMSDU length: 3839 bytes No DSSS/CCK HT40 Maximum RX AMPDU length 65535 bytes (exponent: 0x003) Minimum RX AMPDU time spacing: 4 usec (0x05) HT RX MCS rate indexes supported: 0-15 HT TX MCS rate indexes are undefined HT operation: * primary channel: 1 * secondary channel offset: no secondary * STA channel width: 20 MHz * RIFS: 0 * HT protection: no * non-GF present: 0 * OBSS non-GF present: 0 * dual beacon: 0 * dual CTS protection: 0 * STBC beacon: 0 * L-SIG TXOP Prot: 0 * PCO active: 0 * PCO phase: 0 WPA: * Version: 1 * Group cipher: TKIP * Pairwise ciphers: TKIP CCMP * Authentication suites: PSK RSN: * Version: 1 * Group cipher: TKIP * Pairwise ciphers: TKIP CCMP * Authentication suites: PSK * Capabilities: 1-PTKSA-RC 1-GTKSA-RC (0x0000) Extended capabilities: HT Information Exchange Supported, BSS Transition BSS Load: * station count: 0 * channel utilisation: 90/255 * available admission capacity: 31250 [*32us] WMM: * Parameter version 1 * BE: CW 15-1023, AIFSN 3 * BK: CW 15-1023, AIFSN 7 * VI: CW 7-15, AIFSN 2, TXOP 3008 usec * VO: CW 3-7, AIFSN 2, TXOP 1504 usec Country: EU Environment: Indoor/Outdoor Channels [1 - 13] @ 16 dBm WPS: * Version: 1.0 * Wi-Fi Protected Setup State: 2 (Configured) * Response Type: 3 (AP) * UUID: 314ea500-1dd2-11b2-8601-8e4aa01a9d4a * Manufacturer: Ralink Technology, Corp. * Model: Ralink Wireless Access Point * Model Number: RT2860 * Serial Number: 12345678 * Primary Device Type: 6-0050f204-1 * Device name: RalinkAPS * Config methods: * RF Bands: 0x1 * Unknown TLV (0x1049, 6 bytes): 00 37 2a 00 01 20 BSS ac:22:05:e6:ff:41(on wlan0) TSF: 212108270373 usec (2d, 10:55:08) freq: 2462 beacon interval: 100 TUs capability: ESS Privacy RadioMeasure (0x1011) signal: -41.00 dBm last seen: 1750 ms ago Information elements from Probe Response frame: SSID: UPCCDB29F5 Supported rates: 1.0* 2.0* 5.5* 11.0* 9.0 18.0 36.0 54.0 DS Parameter set: channel 11 ERP: Barker_Preamble_Mode Extended supported rates: 6.0 12.0 24.0 48.0 Country: EU Environment: Indoor/Outdoor Channels [1 - 13] @ 20 dBm HT capabilities: Capabilities: 0x1ac HT20 SM Power Save disabled RX HT20 SGI TX STBC RX STBC 1-stream Max AMSDU length: 3839 bytes No DSSS/CCK HT40 Maximum RX AMPDU length 65535 bytes (exponent: 0x003) Minimum RX AMPDU time spacing: 4 usec (0x05) HT RX MCS rate indexes supported: 0-15 HT TX MCS rate indexes are undefined HT operation: * primary channel: 11 * secondary channel offset: no secondary * STA channel width: 20 MHz * RIFS: 0 * HT protection: no * non-GF present: 1 * OBSS non-GF present: 0 * dual beacon: 0 * dual CTS protection: 0 * STBC beacon: 0 * L-SIG TXOP Prot: 0 * PCO active: 0 * PCO phase: 0 WPA: * Version: 1 * Group cipher: TKIP * Pairwise ciphers: TKIP CCMP * Authentication suites: PSK RSN: * Version: 1 * Group cipher: TKIP * Pairwise ciphers: TKIP CCMP * Authentication suites: PSK * Capabilities: 1-PTKSA-RC 1-GTKSA-RC (0x0000) Extended capabilities: HT Information Exchange Supported, BSS Transition BSS Load: * station count: 3 * channel utilisation: 87/255 * available admission capacity: 31250 [*32us] WMM: * Parameter version 1 * BE: CW 15-1023, AIFSN 3 * BK: CW 15-1023, AIFSN 7 * VI: CW 7-15, AIFSN 2, TXOP 3008 usec * VO: CW 3-7, AIFSN 2, TXOP 1504 usec Country: EU Environment: Indoor/Outdoor Channels [1 - 13] @ 16 dBm WPS: * Version: 1.0 * Wi-Fi Protected Setup State: 2 (Configured) * Response Type: 3 (AP) * UUID: 314ea500-1dd2-11b2-8601-8e4aa01a9d4a * Manufacturer: Ralink Technology, Corp. * Model: Ralink Wireless Access Point * Model Number: RT2860 * Serial Number: 12345678 * Primary Device Type: 6-0050f204-1 * Device name: RalinkAPS * Config methods: * RF Bands: 0x1 * Unknown TLV (0x1049, 6 bytes): 00 37 2a 00 01 20 BSS ac:22:05:e6:ff:24(on wlan0) -- associated TSF: 212107576616 usec (2d, 10:55:07) freq: 5180 beacon interval: 100 TUs capability: ESS Privacy ShortPreamble SpectrumMgmt ShortSlotTime RadioMeasure (0x1531) signal: -30.00 dBm last seen: 130 ms ago Information elements from Probe Response frame: SSID: UPCCDB29F5 Supported rates: 6.0* 9.0 12.0* 18.0 24.0* 36.0 48.0 54.0 DS Parameter set: channel 36 Power constraint: 3 dB RSN: * Version: 1 * Group cipher: TKIP * Pairwise ciphers: CCMP * Authentication suites: PSK * Capabilities: 1-PTKSA-RC 1-GTKSA-RC (0x0000) HT capabilities: Capabilities: 0x6f RX LDPC HT20/HT40 SM Power Save disabled RX HT20 SGI RX HT40 SGI No RX STBC Max AMSDU length: 3839 bytes No DSSS/CCK HT40 Maximum RX AMPDU length 65535 bytes (exponent: 0x003) Minimum RX AMPDU time spacing: 4 usec (0x05) HT RX MCS rate indexes supported: 0-23, 32 HT TX MCS rate indexes are undefined HT operation: * primary channel: 36 * secondary channel offset: above * STA channel width: any * RIFS: 0 * HT protection: no * non-GF present: 1 * OBSS non-GF present: 0 * dual beacon: 0 * dual CTS protection: 0 * STBC beacon: 0 * L-SIG TXOP Prot: 0 * PCO active: 0 * PCO phase: 0 Extended capabilities: 6 VHT capabilities: VHT Capabilities (0x33827930): Max MPDU length: 3895 Supported Channel Width: neither 160 nor 80+80 RX LDPC short GI (80 MHz) SU Beamformer SU Beamformee RX antenna pattern consistency TX antenna pattern consistency VHT RX MCS set: 1 streams: MCS 0-9 2 streams: MCS 0-9 3 streams: MCS 0-9 4 streams: not supported 5 streams: not supported 6 streams: not supported 7 streams: not supported 8 streams: not supported VHT RX highest supported: 0 Mbps VHT TX MCS set: 1 streams: MCS 0-9 2 streams: MCS 0-9 3 streams: MCS 0-9 4 streams: not supported 5 streams: not supported 6 streams: not supported 7 streams: not supported 8 streams: not supported VHT TX highest supported: 0 Mbps VHT operation: * channel width: 1 (80 MHz) * center freq segment 1: 42 * center freq segment 2: 0 * VHT basic MCS set: 0xffc0 BSS Load: * station count: 3 * channel utilisation: 35/255 * available admission capacity: 30000 [*32us] WPA: * Version: 1 * Group cipher: TKIP * Pairwise ciphers: TKIP * Authentication suites: PSK WMM: * Parameter version 1 * u-APSD * BE: CW 15-1023, AIFSN 3 * BK: CW 15-1023, AIFSN 7 * VI: CW 7-15, AIFSN 2, TXOP 3008 usec * VO: CW 3-7, AIFSN 2, TXOP 1504 usec WPS: * Version: 1.0 * Wi-Fi Protected Setup State: 2 (Configured) * Response Type: 3 (AP) * UUID: 314ea500-1dd2-11b2-8601-8e4aa01a9d4a * Manufacturer: Marvell * Model: WAP * Model Number: 123 * Serial Number: 12345 * Primary Device Type: 6-0050f204-1 * Device name: 5G wireless AP * Config methods: * RF Bands: 0x2 * Unknown TLV (0x1049, 6 bytes): 00 37 2a 00 01 20 BSS a8:d3:f7:96:10:69(on wlan0) TSF: 212107440363 usec (2d, 10:55:07) freq: 2442 beacon interval: 100 TUs capability: ESS Privacy ShortPreamble ShortSlotTime (0x0431) signal: -81.00 dBm last seen: 2630 ms ago Information elements from Probe Response frame: SSID: o2-WLAN34 Supported rates: 9.0 18.0 36.0 54.0 1.0* 2.0 5.5 11.0 DS Parameter set: channel 7 Country: DE Environment: Indoor/Outdoor Channels [1 - 13] @ 20 dBm Power constraint: 0 dB ERP: HT capabilities: Capabilities: 0x2c HT20 SM Power Save disabled RX HT20 SGI No RX STBC Max AMSDU length: 3839 bytes No DSSS/CCK HT40 Maximum RX AMPDU length 32767 bytes (exponent: 0x002) Minimum RX AMPDU time spacing: 16 usec (0x07) HT RX MCS rate indexes supported: 0-15 HT TX MCS rate indexes are undefined RSN: * Version: 1 * Group cipher: CCMP * Pairwise ciphers: CCMP * Authentication suites: PSK * Capabilities: 1-PTKSA-RC 1-GTKSA-RC (0x0000) Extended supported rates: 6.0 12.0 24.0 48.0 HT operation: * primary channel: 7 * secondary channel offset: no secondary * STA channel width: 20 MHz * RIFS: 0 * HT protection: nonmember * non-GF present: 1 * OBSS non-GF present: 0 * dual beacon: 0 * dual CTS protection: 0 * STBC beacon: 0 * L-SIG TXOP Prot: 0 * PCO active: 0 * PCO phase: 0 Overlapping BSS scan params: * passive dwell: 20 TUs * active dwell: 10 TUs * channel width trigger scan interval: 300 s * scan passive total per channel: 200 TUs * scan active total per channel: 20 TUs * BSS width channel transition delay factor: 5 * OBSS Scan Activity Threshold: 100.00 % Extended capabilities: HT Information Exchange Supported WMM: * Parameter version 1 * u-APSD * BE: CW 15-1023, AIFSN 3 * BK: CW 15-1023, AIFSN 7 * VI: CW 7-15, AIFSN 2, TXOP 3008 usec * VO: CW 3-7, AIFSN 2, TXOP 1504 usec WPS: * Version: 1.0 * Wi-Fi Protected Setup State: 2 (Configured) * Response Type: 3 (AP) * UUID: 4e9bd57c-8ebe-46d8-aa04-cdd3994f7288 * Manufacturer: Arcadyan * Model: o2 HomeBox 6441 * Model Number: IAD 6441 * Serial Number: D512146595 * Primary Device Type: 6-0050f204-1 * Device name: D512146595-A8D3F7 * Config methods: * RF Bands: 0x3 * Unknown TLV (0x1049, 6 bytes): 00 37 2a 00 01 20 BSS 54:fa:3e:87:1f:93(on wlan0) TSF: 212108698335 usec (2d, 10:55:08) freq: 2472 beacon interval: 100 TUs capability: ESS Privacy ShortSlotTime APSD (0x0c11) signal: -72.00 dBm last seen: 1310 ms ago Information elements from Probe Response frame: SSID: moin moin Supported rates: 1.0* 2.0* 5.5* 11.0* 9.0 18.0 36.0 54.0 DS Parameter set: channel 13 ERP: Barker_Preamble_Mode Extended supported rates: 6.0 12.0 24.0 48.0 HT capabilities: Capabilities: 0x1ec HT20 SM Power Save disabled RX HT20 SGI RX HT40 SGI TX STBC RX STBC 1-stream Max AMSDU length: 3839 bytes No DSSS/CCK HT40 Maximum RX AMPDU length 65535 bytes (exponent: 0x003) Minimum RX AMPDU time spacing: No restriction (0x00) HT RX MCS rate indexes supported: 0-15 HT TX MCS rate indexes are undefined HT operation: * primary channel: 13 * secondary channel offset: no secondary * STA channel width: 20 MHz * RIFS: 0 * HT protection: no * non-GF present: 1 * OBSS non-GF present: 0 * dual beacon: 0 * dual CTS protection: 0 * STBC beacon: 0 * L-SIG TXOP Prot: 0 * PCO active: 0 * PCO phase: 0 WPA: * Version: 1 * Group cipher: TKIP * Pairwise ciphers: TKIP CCMP * Authentication suites: PSK RSN: * Version: 1 * Group cipher: TKIP * Pairwise ciphers: TKIP CCMP * Authentication suites: PSK * Capabilities: 1-PTKSA-RC 1-GTKSA-RC (0x0000) WMM: * Parameter version 1 * u-APSD * BE: CW 15-1023, AIFSN 3 * BK: CW 15-1023, AIFSN 7 * VI: CW 7-15, AIFSN 2, TXOP 3008 usec * VO: CW 3-7, AIFSN 2, TXOP 1504 usec BSS Load: * station count: 1 * channel utilisation: 26/255 * available admission capacity: 31250 [*32us] Extended capabilities: HT Information Exchange Supported Country: DE Environment: Indoor/Outdoor Channels [1 - 13] @ 16 dBm WPS: * Version: 1.0 * Wi-Fi Protected Setup State: 2 (Configured) * Response Type: 3 (AP) * UUID: bc329e00-1dd8-11b2-8601-54fa3e871f93 * Manufacturer: Celeno Communication, Inc. * Model: Celeno Wireless AP 2.4G * Model Number: CL1800 * Serial Number: 12345678 * Primary Device Type: 6-0050f204-1 * Device name: CelenoAP2.4G * Config methods: Display, PBC, Keypad * RF Bands: 0x1 * Unknown TLV (0x1049, 6 bytes): 00 37 2a 00 01 20 BSS ae:22:15:db:4d:5b(on wlan0) TSF: 212106562854 usec (2d, 10:55:06) freq: 2412 beacon interval: 100 TUs capability: ESS ShortSlotTime RadioMeasure (0x1401) signal: -57.00 dBm last seen: 3510 ms ago Information elements from Probe Response frame: SSID: Vodafone Hotspot Supported rates: 1.0* 2.0* 5.5* 11.0* 9.0 18.0 36.0 54.0 DS Parameter set: channel 1 ERP: Barker_Preamble_Mode Extended supported rates: 6.0 12.0 24.0 48.0 Country: EU Environment: Indoor/Outdoor Channels [1 - 13] @ 20 dBm HT capabilities: Capabilities: 0x1ac HT20 SM Power Save disabled RX HT20 SGI TX STBC RX STBC 1-stream Max AMSDU length: 3839 bytes No DSSS/CCK HT40 Maximum RX AMPDU length 65535 bytes (exponent: 0x003) Minimum RX AMPDU time spacing: 4 usec (0x05) HT RX MCS rate indexes supported: 0-15 HT TX MCS rate indexes are undefined HT operation: * primary channel: 1 * secondary channel offset: no secondary * STA channel width: 20 MHz * RIFS: 0 * HT protection: no * non-GF present: 1 * OBSS non-GF present: 0 * dual beacon: 0 * dual CTS protection: 0 * STBC beacon: 0 * L-SIG TXOP Prot: 0 * PCO active: 0 * PCO phase: 0 Extended capabilities: HT Information Exchange Supported, BSS Transition BSS Load: * station count: 1 * channel utilisation: 103/255 * available admission capacity: 31250 [*32us] WMM: * Parameter version 1 * BE: CW 15-1023, AIFSN 3 * BK: CW 15-1023, AIFSN 7 * VI: CW 7-15, AIFSN 2, TXOP 3008 usec * VO: CW 3-7, AIFSN 2, TXOP 1504 usec Country: EU Environment: Indoor/Outdoor Channels [1 - 13] @ 16 dBm BSS 90:5c:44:d1:34:2f(on wlan0) TSF: 212107263738 usec (2d, 10:55:07) freq: 2437 beacon interval: 100 TUs capability: ESS Privacy ShortSlotTime RadioMeasure (0x1411) signal: -53.00 dBm last seen: 2810 ms ago SSID: UPC5144FAF Supported rates: 1.0* 2.0* 5.5* 11.0* 9.0 18.0 36.0 54.0 DS Parameter set: channel 6 ERP: Barker_Preamble_Mode Extended supported rates: 6.0 12.0 24.0 48.0 Country: EU Environment: Indoor/Outdoor Channels [1 - 13] @ 20 dBm HT capabilities: Capabilities: 0x1ac HT20 SM Power Save disabled RX HT20 SGI TX STBC RX STBC 1-stream Max AMSDU length: 3839 bytes No DSSS/CCK HT40 Maximum RX AMPDU length 65535 bytes (exponent: 0x003) Minimum RX AMPDU time spacing: 4 usec (0x05) HT RX MCS rate indexes supported: 0-15 HT TX MCS rate indexes are undefined HT operation: * primary channel: 6 * secondary channel offset: no secondary * STA channel width: 20 MHz * RIFS: 0 * HT protection: non-HT mixed * non-GF present: 1 * OBSS non-GF present: 0 * dual beacon: 0 * dual CTS protection: 0 * STBC beacon: 0 * L-SIG TXOP Prot: 0 * PCO active: 0 * PCO phase: 0 WPA: * Version: 1 * Group cipher: TKIP * Pairwise ciphers: TKIP CCMP * Authentication suites: PSK RSN: * Version: 1 * Group cipher: TKIP * Pairwise ciphers: TKIP CCMP * Authentication suites: PSK * Capabilities: 1-PTKSA-RC 1-GTKSA-RC (0x0000) Extended capabilities: HT Information Exchange Supported, BSS Transition BSS Load: * station count: 1 * channel utilisation: 109/255 * available admission capacity: 31250 [*32us] WMM: * Parameter version 1 * BE: CW 15-1023, AIFSN 3 * BK: CW 15-1023, AIFSN 7 * VI: CW 7-15, AIFSN 2, TXOP 3008 usec * VO: CW 3-7, AIFSN 2, TXOP 1504 usec Country: EU Environment: Indoor/Outdoor Channels [1 - 13] @ 16 dBm WPS: * Version: 1.0 * Wi-Fi Protected Setup State: 2 (Configured) * Response Type: 3 (AP) * UUID: 30b60e80-1dd2-11b2-8601-8e4aa01a9d4a * Manufacturer: Ralink Technology, Corp. * Model: Ralink Wireless Access Point * Model Number: RT2860 * Serial Number: 12345678 * Primary Device Type: 6-0050f204-1 * Device name: RalinkAPS * Config methods: * RF Bands: 0x1 * Unknown TLV (0x1049, 6 bytes): 00 37 2a 00 01 20 BSS 92:5c:14:d1:34:2f(on wlan0) TSF: 212107270871 usec (2d, 10:55:07) freq: 2437 beacon interval: 100 TUs capability: ESS ShortSlotTime RadioMeasure (0x1401) signal: -53.00 dBm last seen: 2800 ms ago Information elements from Probe Response frame: SSID: Vodafone Hotspot Supported rates: 1.0* 2.0* 5.5* 11.0* 9.0 18.0 36.0 54.0 DS Parameter set: channel 6 ERP: Barker_Preamble_Mode Extended supported rates: 6.0 12.0 24.0 48.0 Country: EU Environment: Indoor/Outdoor Channels [1 - 13] @ 20 dBm HT capabilities: Capabilities: 0x1ac HT20 SM Power Save disabled RX HT20 SGI TX STBC RX STBC 1-stream Max AMSDU length: 3839 bytes No DSSS/CCK HT40 Maximum RX AMPDU length 65535 bytes (exponent: 0x003) Minimum RX AMPDU time spacing: 4 usec (0x05) HT RX MCS rate indexes supported: 0-15 HT TX MCS rate indexes are undefined HT operation: * primary channel: 6 * secondary channel offset: no secondary * STA channel width: 20 MHz * RIFS: 0 * HT protection: non-HT mixed * non-GF present: 1 * OBSS non-GF present: 0 * dual beacon: 0 * dual CTS protection: 0 * STBC beacon: 0 * L-SIG TXOP Prot: 0 * PCO active: 0 * PCO phase: 0 Extended capabilities: HT Information Exchange Supported, BSS Transition BSS Load: * station count: 1 * channel utilisation: 109/255 * available admission capacity: 31250 [*32us] WMM: * Parameter version 1 * BE: CW 15-1023, AIFSN 3 * BK: CW 15-1023, AIFSN 7 * VI: CW 7-15, AIFSN 2, TXOP 3008 usec * VO: CW 3-7, AIFSN 2, TXOP 1504 usec Country: EU Environment: Indoor/Outdoor Channels [1 - 13] @ 16 dBm BSS 36:2c:b4:34:3b:95(on wlan0) TSF: 212075883822 usec (2d, 10:54:35) freq: 2412 beacon interval: 100 TUs capability: ESS Privacy ShortSlotTime RadioMeasure (0x1411) signal: -77.00 dBm last seen: 13150 ms ago Information elements from Probe Response frame: SSID: Gast_Medusa_13 Supported rates: 1.0* 2.0* 5.5* 11.0* 9.0 18.0 36.0 54.0 DS Parameter set: channel 1 ERP: Barker_Preamble_Mode Extended supported rates: 6.0 12.0 24.0 48.0 Country: EU Environment: Indoor/Outdoor Channels [1 - 13] @ 20 dBm HT capabilities: Capabilities: 0x1ac HT20 SM Power Save disabled RX HT20 SGI TX STBC RX STBC 1-stream Max AMSDU length: 3839 bytes No DSSS/CCK HT40 Maximum RX AMPDU length 65535 bytes (exponent: 0x003) Minimum RX AMPDU time spacing: 4 usec (0x05) HT RX MCS rate indexes supported: 0-15 HT TX MCS rate indexes are undefined HT operation: * primary channel: 1 * secondary channel offset: no secondary * STA channel width: 20 MHz * RIFS: 0 * HT protection: no * non-GF present: 0 * OBSS non-GF present: 0 * dual beacon: 0 * dual CTS protection: 0 * STBC beacon: 0 * L-SIG TXOP Prot: 0 * PCO active: 0 * PCO phase: 0 WPA: * Version: 1 * Group cipher: TKIP * Pairwise ciphers: TKIP CCMP * Authentication suites: PSK RSN: * Version: 1 * Group cipher: TKIP * Pairwise ciphers: TKIP CCMP * Authentication suites: PSK * Capabilities: 1-PTKSA-RC 1-GTKSA-RC (0x0000) Extended capabilities: HT Information Exchange Supported, BSS Transition BSS Load: * station count: 0 * channel utilisation: 94/255 * available admission capacity: 31250 [*32us] WMM: * Parameter version 1 * BE: CW 15-1023, AIFSN 3 * BK: CW 15-1023, AIFSN 7 * VI: CW 7-15, AIFSN 2, TXOP 3008 usec * VO: CW 3-7, AIFSN 2, TXOP 1504 usec Country: EU Environment: Indoor/Outdoor Channels [1 - 13] @ 16 dBm BSS fe:49:2d:20:d8:21(on wlan0) TSF: 212080903764 usec (2d, 10:54:40) freq: 2412 beacon interval: 100 TUs capability: ESS Privacy ShortSlotTime (0x0411) signal: -67.00 dBm last seen: 29170 ms ago Information elements from Probe Response frame: SSID: \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00 Supported rates: 6.0* 9.0 12.0* 18.0 24.0* 36.0 48.0 54.0 DS Parameter set: channel 1 TIM: DTIM Count 1 DTIM Period 2 Bitmap Control 0x0 Bitmap[0] 0x0 ERP: RSN: * Version: 1 * Group cipher: CCMP * Pairwise ciphers: CCMP * Authentication suites: PSK * Capabilities: 16-PTKSA-RC 1-GTKSA-RC (0x000c) HT capabilities: Capabilities: 0x1ad RX LDPC HT20 SM Power Save disabled RX HT20 SGI TX STBC RX STBC 1-stream Max AMSDU length: 3839 bytes No DSSS/CCK HT40 Maximum RX AMPDU length 65535 bytes (exponent: 0x003) Minimum RX AMPDU time spacing: 4 usec (0x05) HT RX MCS rate indexes supported: 0-15 HT TX MCS rate indexes are undefined HT operation: * primary channel: 1 * secondary channel offset: no secondary * STA channel width: 20 MHz * RIFS: 1 * HT protection: no * non-GF present: 0 * OBSS non-GF present: 0 * dual beacon: 0 * dual CTS protection: 0 * STBC beacon: 0 * L-SIG TXOP Prot: 0 * PCO active: 0 * PCO phase: 0 Extended capabilities: Extended Channel Switching WPS: * Version: 1.0 * Wi-Fi Protected Setup State: 2 (Configured) * Unknown TLV (0x1049, 6 bytes): 00 37 2a 00 01 20 * Device name: Marion,Laura,Larissas Fire TV... * Primary Device Type: 1-0050f204-9 WMM: * Parameter version 1 * u-APSD * BE: CW 15-1023, AIFSN 3 * BK: CW 15-1023, AIFSN 7 * VI: CW 7-15, AIFSN 2, TXOP 3008 usec * VO: CW 3-7, AIFSN 2, TXOP 1504 usec P2P: * Group capa: 0x25, Device capa: 0xab * Unknown TLV (0x03, 6 bytes): 49 2d 20 58 21 dd BSS 90:5c:44:db:21:48(on wlan0) TSF: 212077364612 usec (2d, 10:54:37) freq: 2462 beacon interval: 100 TUs capability: ESS Privacy ShortSlotTime RadioMeasure (0x1411) signal: -76.00 dBm last seen: 27640 ms ago Information elements from Probe Response frame: SSID: UPC614F5E5 Supported rates: 1.0* 2.0* 5.5* 11.0* 9.0 18.0 36.0 54.0 DS Parameter set: channel 11 ERP: Barker_Preamble_Mode Extended supported rates: 6.0 12.0 24.0 48.0 Country: EU Environment: Indoor/Outdoor Channels [1 - 13] @ 20 dBm HT capabilities: Capabilities: 0x1ac HT20 SM Power Save disabled RX HT20 SGI TX STBC RX STBC 1-stream Max AMSDU length: 3839 bytes No DSSS/CCK HT40 Maximum RX AMPDU length 65535 bytes (exponent: 0x003) Minimum RX AMPDU time spacing: 4 usec (0x05) HT RX MCS rate indexes supported: 0-15 HT TX MCS rate indexes are undefined HT operation: * primary channel: 11 * secondary channel offset: no secondary * STA channel width: 20 MHz * RIFS: 0 * HT protection: no * non-GF present: 1 * OBSS non-GF present: 0 * dual beacon: 0 * dual CTS protection: 0 * STBC beacon: 0 * L-SIG TXOP Prot: 0 * PCO active: 0 * PCO phase: 0 WPA: * Version: 1 * Group cipher: TKIP * Pairwise ciphers: TKIP CCMP * Authentication suites: PSK RSN: * Version: 1 * Group cipher: TKIP * Pairwise ciphers: TKIP CCMP * Authentication suites: PSK * Capabilities: 1-PTKSA-RC 1-GTKSA-RC (0x0000) Extended capabilities: HT Information Exchange Supported, BSS Transition BSS Load: * station count: 1 * channel utilisation: 100/255 * available admission capacity: 31250 [*32us] WMM: * Parameter version 1 * BE: CW 15-1023, AIFSN 3 * BK: CW 15-1023, AIFSN 7 * VI: CW 7-15, AIFSN 2, TXOP 3008 usec * VO: CW 3-7, AIFSN 2, TXOP 1504 usec Country: EU Environment: Indoor/Outdoor Channels [1 - 13] @ 16 dBm WPS: * Version: 1.0 * Wi-Fi Protected Setup State: 2 (Configured) * Response Type: 3 (AP) * UUID: 314ea500-1dd2-11b2-8601-8e4aa01a9d4a * Manufacturer: Ralink Technology, Corp. * Model: Ralink Wireless Access Point * Model Number: RT2860 * Serial Number: 12345678 * Primary Device Type: 6-0050f204-1 * Device name: RalinkAPS * Config methods: * RF Bands: 0x1 * Unknown TLV (0x1049, 6 bytes): 00 37 2a 00 01 20 BSS ae:22:15:e6:ff:41(on wlan0) TSF: 212108278788 usec (2d, 10:55:08) freq: 2462 beacon interval: 100 TUs capability: ESS RadioMeasure (0x1001) signal: -40.00 dBm last seen: 1740 ms ago Information elements from Probe Response frame: SSID: Vodafone Hotspot Supported rates: 1.0* 2.0* 5.5* 11.0* 9.0 18.0 36.0 54.0 DS Parameter set: channel 11 ERP: Barker_Preamble_Mode Extended supported rates: 6.0 12.0 24.0 48.0 Country: EU Environment: Indoor/Outdoor Channels [1 - 13] @ 20 dBm HT capabilities: Capabilities: 0x1ac HT20 SM Power Save disabled RX HT20 SGI TX STBC RX STBC 1-stream Max AMSDU length: 3839 bytes No DSSS/CCK HT40 Maximum RX AMPDU length 65535 bytes (exponent: 0x003) Minimum RX AMPDU time spacing: 4 usec (0x05) HT RX MCS rate indexes supported: 0-15 HT TX MCS rate indexes are undefined HT operation: * primary channel: 11 * secondary channel offset: no secondary * STA channel width: 20 MHz * RIFS: 0 * HT protection: no * non-GF present: 1 * OBSS non-GF present: 0 * dual beacon: 0 * dual CTS protection: 0 * STBC beacon: 0 * L-SIG TXOP Prot: 0 * PCO active: 0 * PCO phase: 0 Extended capabilities: HT Information Exchange Supported, BSS Transition BSS Load: * station count: 3 * channel utilisation: 87/255 * available admission capacity: 31250 [*32us] WMM: * Parameter version 1 * BE: CW 15-1023, AIFSN 3 * BK: CW 15-1023, AIFSN 7 * VI: CW 7-15, AIFSN 2, TXOP 3008 usec * VO: CW 3-7, AIFSN 2, TXOP 1504 usec Country: EU Environment: Indoor/Outdoor Channels [1 - 13] @ 16 dBm BSS 34:31:c4:b8:2e:85(on wlan0) TSF: 212081672689 usec (2d, 10:54:41) freq: 2437 beacon interval: 100 TUs capability: ESS Privacy ShortPreamble ShortSlotTime RadioMeasure (0x1431) signal: -83.00 dBm last seen: 28400 ms ago Information elements from Probe Response frame: SSID: Nexus Supported rates: 1.0* 2.0* 5.5* 11.0* 6.0* 9.0 12.0* 18.0 DS Parameter set: channel 6 TIM: DTIM Count 0 DTIM Period 1 Bitmap Control 0x0 Bitmap[0] 0x0 (+ 1 octet) Country: DE Environment: Indoor/Outdoor Channels [1 - 13] @ 20 dBm ERP: Extended supported rates: 24.0* 36.0 48.0 54.0 BSS Load: * station count: 13 * channel utilisation: 74/255 * available admission capacity: 0 [*32us] HT capabilities: Capabilities: 0x1ad RX LDPC HT20 SM Power Save disabled RX HT20 SGI TX STBC RX STBC 1-stream Max AMSDU length: 3839 bytes No DSSS/CCK HT40 Maximum RX AMPDU length 65535 bytes (exponent: 0x003) Minimum RX AMPDU time spacing: 8 usec (0x06) HT TX/RX MCS rate indexes supported: 0-23 HT operation: * primary channel: 6 * secondary channel offset: no secondary * STA channel width: 20 MHz * RIFS: 0 * HT protection: nonmember * non-GF present: 1 * OBSS non-GF present: 0 * dual beacon: 0 * dual CTS protection: 0 * STBC beacon: 0 * L-SIG TXOP Prot: 0 * PCO active: 0 * PCO phase: 0 Overlapping BSS scan params: * passive dwell: 20 TUs * active dwell: 10 TUs * channel width trigger scan interval: 300 s * scan passive total per channel: 200 TUs * scan active total per channel: 20 TUs * BSS width channel transition delay factor: 5 * OBSS Scan Activity Threshold: 0.25 % Extended capabilities: HT Information Exchange Supported, Extended Channel Switching, TFS, WNM-Sleep Mode, TIM Broadcast, BSS Transition, 6 WMM: * Parameter version 1 * BE: CW 15-1023, AIFSN 3 * BK: CW 15-1023, AIFSN 7 * VI: CW 7-15, AIFSN 2, TXOP 3008 usec * VO: CW 3-7, AIFSN 2, TXOP 1504 usec WPS: * Version: 1.0 * Wi-Fi Protected Setup State: 2 (Configured) * RF Bands: 0x3 * Unknown TLV (0x1049, 6 bytes): 00 37 2a 00 01 20 RSN: * Version: 1 * Group cipher: CCMP * Pairwise ciphers: CCMP * Authentication suites: PSK 00-0f-ac:8 * Capabilities: 1-PTKSA-RC 1-GTKSA-RC MFP-capable (0x0080) BSS 92:5c:14:db:21:48(on wlan0) TSF: 212098644532 usec (2d, 10:54:58) freq: 2462 beacon interval: 100 TUs capability: ESS ShortSlotTime RadioMeasure (0x1401) signal: -71.00 dBm last seen: 11430 ms ago Information elements from Probe Response frame: SSID: Vodafone Hotspot Supported rates: 1.0* 2.0* 5.5* 11.0* 9.0 18.0 36.0 54.0 DS Parameter set: channel 11 ERP: Barker_Preamble_Mode Extended supported rates: 6.0 12.0 24.0 48.0 Country: EU Environment: Indoor/Outdoor Channels [1 - 13] @ 20 dBm HT capabilities: Capabilities: 0x1ac HT20 SM Power Save disabled RX HT20 SGI TX STBC RX STBC 1-stream Max AMSDU length: 3839 bytes No DSSS/CCK HT40 Maximum RX AMPDU length 65535 bytes (exponent: 0x003) Minimum RX AMPDU time spacing: 4 usec (0x05) HT RX MCS rate indexes supported: 0-15 HT TX MCS rate indexes are undefined HT operation: * primary channel: 11 * secondary channel offset: no secondary * STA channel width: 20 MHz * RIFS: 0 * HT protection: no * non-GF present: 1 * OBSS non-GF present: 0 * dual beacon: 0 * dual CTS protection: 0 * STBC beacon: 0 * L-SIG TXOP Prot: 0 * PCO active: 0 * PCO phase: 0 Extended capabilities: HT Information Exchange Supported, BSS Transition BSS Load: * station count: 1 * channel utilisation: 111/255 * available admission capacity: 31250 [*32us] WMM: * Parameter version 1 * BE: CW 15-1023, AIFSN 3 * BK: CW 15-1023, AIFSN 7 * VI: CW 7-15, AIFSN 2, TXOP 3008 usec * VO: CW 3-7, AIFSN 2, TXOP 1504 usec Country: EU Environment: Indoor/Outdoor Channels [1 - 13] @ 16 dBm BSS 9c:80:df:31:03:a4(on wlan0) TSF: 212082583134 usec (2d, 10:54:42) freq: 2467 beacon interval: 100 TUs capability: ESS Privacy ShortSlotTime (0x0411) signal: -87.00 dBm last seen: 27490 ms ago Information elements from Probe Response frame: SSID: o2-WLAN84 Supported rates: 1.0* 2.0* 5.5* 11.0* 9.0 18.0 36.0 54.0 DS Parameter set: channel 12 Extended supported rates: 6.0 12.0 24.0 48.0 Country: DE Environment: Indoor/Outdoor Channels [1 - 13] @ 20 dBm WPS: * Version: 1.0 * Wi-Fi Protected Setup State: 2 (Configured) TIM: DTIM Count 0 DTIM Period 1 Bitmap Control 0x0 Bitmap[0] 0x0 ERP: Barker_Preamble_Mode HT capabilities: Capabilities: 0x106e HT20/HT40 SM Power Save disabled RX HT20 SGI RX HT40 SGI No RX STBC Max AMSDU length: 3839 bytes DSSS/CCK HT40 Maximum RX AMPDU length 65535 bytes (exponent: 0x003) Minimum RX AMPDU time spacing: 4 usec (0x05) HT RX MCS rate indexes supported: 0-15, 32 HT TX MCS rate indexes are undefined HT operation: * primary channel: 12 * secondary channel offset: no secondary * STA channel width: 20 MHz * RIFS: 0 * HT protection: 20 MHz * non-GF present: 1 * OBSS non-GF present: 0 * dual beacon: 0 * dual CTS protection: 0 * STBC beacon: 0 * L-SIG TXOP Prot: 0 * PCO active: 0 * PCO phase: 0 Extended capabilities: HT Information Exchange Supported Overlapping BSS scan params: * passive dwell: 20 TUs * active dwell: 10 TUs * channel width trigger scan interval: 300 s * scan passive total per channel: 200 TUs * scan active total per channel: 20 TUs * BSS width channel transition delay factor: 5 * OBSS Scan Activity Threshold: 0.25 % RSN: * Version: 1 * Group cipher: CCMP * Pairwise ciphers: CCMP * Authentication suites: PSK * Capabilities: PreAuth 1-PTKSA-RC 1-GTKSA-RC (0x0001) WMM: * Parameter version 1 * BE: CW 15-1023, AIFSN 3 * BK: CW 15-1023, AIFSN 7 * VI: CW 7-15, AIFSN 2, TXOP 3008 usec * VO: CW 3-7, AIFSN 2, TXOP 1504 usec BSS Load: * station count: 768 * channel utilisation: 33/255 * available admission capacity: 4730 [*32us] BSS 36:2c:94:34:3b:95(on wlan0) TSF: 212096926483 usec (2d, 10:54:56) freq: 2412 beacon interval: 100 TUs capability: ESS ShortSlotTime RadioMeasure (0x1401) signal: -84.00 dBm last seen: 13150 ms ago SSID: Vodafone Hotspot Supported rates: 1.0* 2.0* 5.5* 11.0* 9.0 18.0 36.0 54.0 DS Parameter set: channel 1 ERP: Barker_Preamble_Mode Extended supported rates: 6.0 12.0 24.0 48.0 Country: EU Environment: Indoor/Outdoor Channels [1 - 13] @ 20 dBm HT capabilities: Capabilities: 0x1ac HT20 SM Power Save disabled RX HT20 SGI TX STBC RX STBC 1-stream Max AMSDU length: 3839 bytes No DSSS/CCK HT40 Maximum RX AMPDU length 65535 bytes (exponent: 0x003) Minimum RX AMPDU time spacing: 4 usec (0x05) HT RX MCS rate indexes supported: 0-15 HT TX MCS rate indexes are undefined HT operation: * primary channel: 1 * secondary channel offset: no secondary * STA channel width: 20 MHz * RIFS: 0 * HT protection: no * non-GF present: 0 * OBSS non-GF present: 0 * dual beacon: 0 * dual CTS protection: 0 * STBC beacon: 0 * L-SIG TXOP Prot: 0 * PCO active: 0 * PCO phase: 0 Extended capabilities: HT Information Exchange Supported, BSS Transition BSS Load: * station count: 0 * channel utilisation: 90/255 * available admission capacity: 31250 [*32us] WMM: * Parameter version 1 * BE: CW 15-1023, AIFSN 3 * BK: CW 15-1023, AIFSN 7 * VI: CW 7-15, AIFSN 2, TXOP 3008 usec * VO: CW 3-7, AIFSN 2, TXOP 1504 usec Country: EU Environment: Indoor/Outdoor Channels [1 - 13] @ 16 dBm BSS 38:43:7d:1c:95:e6(on wlan0) TSF: 212097695148 usec (2d, 10:54:57) freq: 2437 beacon interval: 100 TUs capability: ESS Privacy ShortSlotTime RadioMeasure (0x1411) signal: -83.00 dBm last seen: 12380 ms ago Information elements from Probe Response frame: SSID: UPCB45EF15 Supported rates: 1.0* 2.0* 5.5* 11.0* 9.0 18.0 36.0 54.0 DS Parameter set: channel 6 Extended supported rates: 6.0 12.0 24.0 48.0 Country: EU Environment: Indoor/Outdoor Channels [1 - 13] @ 20 dBm TIM: DTIM Count 0 DTIM Period 1 Bitmap Control 0x0 Bitmap[0] 0x0 WPA: * Version: 1 * Group cipher: TKIP * Pairwise ciphers: TKIP CCMP * Authentication suites: PSK RSN: * Version: 1 * Group cipher: TKIP * Pairwise ciphers: TKIP CCMP * Authentication suites: PSK * Capabilities: 1-PTKSA-RC 1-GTKSA-RC (0x0000) WPS: * Version: 1.0 * Wi-Fi Protected Setup State: 2 (Configured) * UUID: 30b60e80-1dd2-11b2-8601-8e4aa01a9d4a * RF Bands: 0x1 * Unknown TLV (0x1049, 6 bytes): 00 37 2a 00 01 20 ERP: Barker_Preamble_Mode HT capabilities: Capabilities: 0x1ac HT20 SM Power Save disabled RX HT20 SGI TX STBC RX STBC 1-stream Max AMSDU length: 3839 bytes No DSSS/CCK HT40 Maximum RX AMPDU length 65535 bytes (exponent: 0x003) Minimum RX AMPDU time spacing: 4 usec (0x05) HT RX MCS rate indexes supported: 0-15 HT TX MCS rate indexes are undefined HT operation: * primary channel: 6 * secondary channel offset: no secondary * STA channel width: 20 MHz * RIFS: 0 * HT protection: no * non-GF present: 1 * OBSS non-GF present: 0 * dual beacon: 0 * dual CTS protection: 0 * STBC beacon: 0 * L-SIG TXOP Prot: 0 * PCO active: 0 * PCO phase: 0 Extended capabilities: HT Information Exchange Supported, BSS Transition WMM: * Parameter version 1 * BE: CW 15-1023, AIFSN 3 * BK: CW 15-1023, AIFSN 7 * VI: CW 7-15, AIFSN 2, TXOP 3008 usec * VO: CW 3-7, AIFSN 2, TXOP 1504 usec BSS Load: * station count: 1 * channel utilisation: 86/255 * available admission capacity: 31250 [*32us] BSS 90:5c:44:db:21:33(on wlan0) TSF: 212107555845 usec (2d, 10:55:07) freq: 5180 beacon interval: 100 TUs capability: ESS Privacy ShortPreamble SpectrumMgmt ShortSlotTime RadioMeasure (0x1531) signal: -88.00 dBm last seen: 2510 ms ago Information elements from Probe Response frame: SSID: UPC614F5E5 Supported rates: 6.0* 9.0 12.0* 18.0 24.0* 36.0 48.0 54.0 DS Parameter set: channel 36 Power constraint: 3 dB RSN: * Version: 1 * Group cipher: TKIP * Pairwise ciphers: CCMP * Authentication suites: PSK * Capabilities: 1-PTKSA-RC 1-GTKSA-RC (0x0000) HT capabilities: Capabilities: 0x6f RX LDPC HT20/HT40 SM Power Save disabled RX HT20 SGI RX HT40 SGI No RX STBC Max AMSDU length: 3839 bytes No DSSS/CCK HT40 Maximum RX AMPDU length 65535 bytes (exponent: 0x003) Minimum RX AMPDU time spacing: 4 usec (0x05) HT RX MCS rate indexes supported: 0-23, 32 HT TX MCS rate indexes are undefined HT operation: * primary channel: 36 * secondary channel offset: above * STA channel width: any * RIFS: 0 * HT protection: no * non-GF present: 1 * OBSS non-GF present: 0 * dual beacon: 0 * dual CTS protection: 0 * STBC beacon: 0 * L-SIG TXOP Prot: 0 * PCO active: 0 * PCO phase: 0 Extended capabilities: 6 VHT capabilities: VHT Capabilities (0x33827930): Max MPDU length: 3895 Supported Channel Width: neither 160 nor 80+80 RX LDPC short GI (80 MHz) SU Beamformer SU Beamformee RX antenna pattern consistency TX antenna pattern consistency VHT RX MCS set: 1 streams: MCS 0-9 2 streams: MCS 0-9 3 streams: MCS 0-9 4 streams: not supported 5 streams: not supported 6 streams: not supported 7 streams: not supported 8 streams: not supported VHT RX highest supported: 0 Mbps VHT TX MCS set: 1 streams: MCS 0-9 2 streams: MCS 0-9 3 streams: MCS 0-9 4 streams: not supported 5 streams: not supported 6 streams: not supported 7 streams: not supported 8 streams: not supported VHT TX highest supported: 0 Mbps VHT operation: * channel width: 1 (80 MHz) * center freq segment 1: 42 * center freq segment 2: 0 * VHT basic MCS set: 0xffc0 BSS Load: * station count: 2 * channel utilisation: 54/255 * available admission capacity: 30000 [*32us] WPA: * Version: 1 * Group cipher: TKIP * Pairwise ciphers: TKIP * Authentication suites: PSK WMM: * Parameter version 1 * u-APSD * BE: CW 15-1023, AIFSN 3 * BK: CW 15-1023, AIFSN 7 * VI: CW 7-15, AIFSN 2, TXOP 3008 usec * VO: CW 3-7, AIFSN 2, TXOP 1504 usec WPS: * Version: 1.0 * Wi-Fi Protected Setup State: 2 (Configured) * Response Type: 3 (AP) * UUID: 314ea500-1dd2-11b2-8601-8e4aa01a9d4a * Manufacturer: Marvell * Model: WAP * Model Number: 123 * Serial Number: 12345 * Primary Device Type: 6-0050f204-1 * Device name: 5G wireless AP * Config methods: * RF Bands: 0x2 * Unknown TLV (0x1049, 6 bytes): 00 37 2a 00 01 20 BSS a8:d3:f7:96:10:6d(on wlan0) TSF: 212107799783 usec (2d, 10:55:07) freq: 5200 beacon interval: 100 TUs capability: ESS Privacy SpectrumMgmt ShortSlotTime (0x0511) signal: -88.00 dBm last seen: 2260 ms ago Information elements from Probe Response frame: SSID: o2-WLAN34 Supported rates: 6.0* 9.0 12.0* 18.0 24.0 36.0 48.0 54.0 DS Parameter set: channel 40 Country: DE Environment: Indoor/Outdoor Channels [36 - 36] @ 23 dBm Channels [40 - 40] @ 23 dBm Channels [44 - 44] @ 23 dBm Channels [48 - 48] @ 23 dBm Power constraint: 0 dB HT capabilities: Capabilities: 0x86f RX LDPC HT20/HT40 SM Power Save disabled RX HT20 SGI RX HT40 SGI No RX STBC Max AMSDU length: 7935 bytes No DSSS/CCK HT40 Maximum RX AMPDU length 65535 bytes (exponent: 0x003) Minimum RX AMPDU time spacing: 4 usec (0x05) HT TX/RX MCS rate indexes supported: 0-31, 33-76 HT operation: * primary channel: 40 * secondary channel offset: below * STA channel width: any * RIFS: 0 * HT protection: nonmember * non-GF present: 1 * OBSS non-GF present: 1 * dual beacon: 0 * dual CTS protection: 0 * STBC beacon: 0 * L-SIG TXOP Prot: 0 * PCO active: 0 * PCO phase: 0 WMM: * Parameter version 1 * u-APSD * BE: CW 15-1023, AIFSN 3 * BK: CW 15-1023, AIFSN 7 * VI: CW 7-15, AIFSN 2, TXOP 3008 usec * VO: CW 3-7, AIFSN 2, TXOP 1504 usec RSN: * Version: 1 * Group cipher: CCMP * Pairwise ciphers: CCMP * Authentication suites: PSK * Capabilities: 1-PTKSA-RC 1-GTKSA-RC (0x0000) Extended capabilities: HT Information Exchange Supported, SSID List, 6 WPS: * Version: 1.0 * Wi-Fi Protected Setup State: 2 (Configured) * Response Type: 3 (AP) * UUID: 4e9bd57c-8ebe-46d8-aa04-cdd3994f7288 * Manufacturer: Quantenna * Model: Topaz * Model Number: QV840.432 * Serial Number: A8D3F796106D * Primary Device Type: 6-0050f204-1 * Device name: Reference Design * Config methods: * Unknown TLV (0x1049, 6 bytes): 00 37 2a 00 01 20 VHT capabilities: VHT Capabilities (0x3fcb7832): Max MPDU length: 11454 Supported Channel Width: neither 160 nor 80+80 RX LDPC short GI (80 MHz) SU Beamformer SU Beamformee MU Beamformer +HTC-VHT RX antenna pattern consistency TX antenna pattern consistency VHT RX MCS set: 1 streams: MCS 0-9 2 streams: MCS 0-9 3 streams: MCS 0-9 4 streams: MCS 0-9 5 streams: not supported 6 streams: not supported 7 streams: not supported 8 streams: not supported VHT RX highest supported: 0 Mbps VHT TX MCS set: 1 streams: MCS 0-9 2 streams: MCS 0-9 3 streams: MCS 0-9 4 streams: MCS 0-9 5 streams: not supported 6 streams: not supported 7 streams: not supported 8 streams: not supported VHT TX highest supported: 0 Mbps VHT operation: * channel width: 1 (80 MHz) * center freq segment 1: 42 * center freq segment 2: 0 * VHT basic MCS set: 0xfffc BSS 90:5c:44:d1:34:20(on wlan0) TSF: 212108016406 usec (2d, 10:55:08) freq: 5220 beacon interval: 100 TUs capability: ESS Privacy ShortPreamble SpectrumMgmt ShortSlotTime RadioMeasure (0x1531) signal: -46.00 dBm last seen: 2060 ms ago Information elements from Probe Response frame: SSID: UPC5144FAF Supported rates: 6.0* 9.0 12.0* 18.0 24.0* 36.0 48.0 54.0 DS Parameter set: channel 44 Power constraint: 3 dB RSN: * Version: 1 * Group cipher: TKIP * Pairwise ciphers: CCMP * Authentication suites: PSK * Capabilities: 1-PTKSA-RC 1-GTKSA-RC (0x0000) HT capabilities: Capabilities: 0x6f RX LDPC HT20/HT40 SM Power Save disabled RX HT20 SGI RX HT40 SGI No RX STBC Max AMSDU length: 3839 bytes No DSSS/CCK HT40 Maximum RX AMPDU length 65535 bytes (exponent: 0x003) Minimum RX AMPDU time spacing: 4 usec (0x05) HT RX MCS rate indexes supported: 0-23, 32 HT TX MCS rate indexes are undefined HT operation: * primary channel: 44 * secondary channel offset: above * STA channel width: any * RIFS: 0 * HT protection: no * non-GF present: 1 * OBSS non-GF present: 0 * dual beacon: 0 * dual CTS protection: 0 * STBC beacon: 0 * L-SIG TXOP Prot: 0 * PCO active: 0 * PCO phase: 0 Extended capabilities: 6 VHT capabilities: VHT Capabilities (0x33827930): Max MPDU length: 3895 Supported Channel Width: neither 160 nor 80+80 RX LDPC short GI (80 MHz) SU Beamformer SU Beamformee RX antenna pattern consistency TX antenna pattern consistency VHT RX MCS set: 1 streams: MCS 0-9 2 streams: MCS 0-9 3 streams: MCS 0-9 4 streams: not supported 5 streams: not supported 6 streams: not supported 7 streams: not supported 8 streams: not supported VHT RX highest supported: 0 Mbps VHT TX MCS set: 1 streams: MCS 0-9 2 streams: MCS 0-9 3 streams: MCS 0-9 4 streams: not supported 5 streams: not supported 6 streams: not supported 7 streams: not supported 8 streams: not supported VHT TX highest supported: 0 Mbps VHT operation: * channel width: 1 (80 MHz) * center freq segment 1: 42 * center freq segment 2: 0 * VHT basic MCS set: 0xffc0 BSS Load: * station count: 1 * channel utilisation: 33/255 * available admission capacity: 30000 [*32us] WPA: * Version: 1 * Group cipher: TKIP * Pairwise ciphers: TKIP * Authentication suites: PSK WMM: * Parameter version 1 * u-APSD * BE: CW 15-1023, AIFSN 3 * BK: CW 15-1023, AIFSN 7 * VI: CW 7-15, AIFSN 2, TXOP 3008 usec * VO: CW 3-7, AIFSN 2, TXOP 1504 usec WPS: * Version: 1.0 * Wi-Fi Protected Setup State: 2 (Configured) * Response Type: 3 (AP) * UUID: 30b60e80-1dd2-11b2-8601-8e4aa01a9d4a * Manufacturer: Marvell * Model: WAP * Model Number: 123 * Serial Number: 12345 * Primary Device Type: 6-0050f204-1 * Device name: 5G wireless AP * Config methods: * RF Bands: 0x2 * Unknown TLV (0x1049, 6 bytes): 00 37 2a 00 01 20 BSS ac:22:05:db:4d:22(on wlan0) TSF: 212108018921 usec (2d, 10:55:08) freq: 5220 beacon interval: 100 TUs capability: ESS Privacy ShortPreamble SpectrumMgmt ShortSlotTime RadioMeasure (0x1531) signal: -68.00 dBm last seen: 2020 ms ago Information elements from Probe Response frame: SSID: Hoeheitsgebiet Supported rates: 6.0* 9.0 12.0* 18.0 24.0* 36.0 48.0 54.0 DS Parameter set: channel 44 Power constraint: 3 dB RSN: * Version: 1 * Group cipher: TKIP * Pairwise ciphers: CCMP * Authentication suites: PSK * Capabilities: 1-PTKSA-RC 1-GTKSA-RC (0x0000) HT capabilities: Capabilities: 0x6f RX LDPC HT20/HT40 SM Power Save disabled RX HT20 SGI RX HT40 SGI No RX STBC Max AMSDU length: 3839 bytes No DSSS/CCK HT40 Maximum RX AMPDU length 65535 bytes (exponent: 0x003) Minimum RX AMPDU time spacing: 4 usec (0x05) HT RX MCS rate indexes supported: 0-23, 32 HT TX MCS rate indexes are undefined HT operation: * primary channel: 44 * secondary channel offset: above * STA channel width: any * RIFS: 0 * HT protection: no * non-GF present: 1 * OBSS non-GF present: 0 * dual beacon: 0 * dual CTS protection: 0 * STBC beacon: 0 * L-SIG TXOP Prot: 0 * PCO active: 0 * PCO phase: 0 Extended capabilities: 6 VHT capabilities: VHT Capabilities (0x33827930): Max MPDU length: 3895 Supported Channel Width: neither 160 nor 80+80 RX LDPC short GI (80 MHz) SU Beamformer SU Beamformee RX antenna pattern consistency TX antenna pattern consistency VHT RX MCS set: 1 streams: MCS 0-9 2 streams: MCS 0-9 3 streams: MCS 0-9 4 streams: not supported 5 streams: not supported 6 streams: not supported 7 streams: not supported 8 streams: not supported VHT RX highest supported: 0 Mbps VHT TX MCS set: 1 streams: MCS 0-9 2 streams: MCS 0-9 3 streams: MCS 0-9 4 streams: not supported 5 streams: not supported 6 streams: not supported 7 streams: not supported 8 streams: not supported VHT TX highest supported: 0 Mbps VHT operation: * channel width: 1 (80 MHz) * center freq segment 1: 42 * center freq segment 2: 0 * VHT basic MCS set: 0xffc0 BSS Load: * station count: 4 * channel utilisation: 43/255 * available admission capacity: 30000 [*32us] WPA: * Version: 1 * Group cipher: TKIP * Pairwise ciphers: TKIP * Authentication suites: PSK WMM: * Parameter version 1 * u-APSD * BE: CW 15-1023, AIFSN 3 * BK: CW 15-1023, AIFSN 7 * VI: CW 7-15, AIFSN 2, TXOP 3008 usec * VO: CW 3-7, AIFSN 2, TXOP 1504 usec WPS: * Version: 1.0 * Wi-Fi Protected Setup State: 2 (Configured) * Response Type: 3 (AP) * UUID: 327fd200-1dd2-11b2-8601-8e4aa01a9d4a * Manufacturer: Marvell * Model: WAP * Model Number: 123 * Serial Number: 12345 * Primary Device Type: 6-0050f204-1 * Device name: 5G wireless AP * Config methods: * RF Bands: 0x2 * Unknown TLV (0x1049, 6 bytes): 00 37 2a 00 01 20 BSS 54:67:51:2c:3d:0a(on wlan0) TSF: 212108254184 usec (2d, 10:55:08) freq: 2462 beacon interval: 100 TUs capability: ESS Privacy ShortSlotTime RadioMeasure (0x1411) signal: -80.00 dBm last seen: 1820 ms ago Information elements from Probe Response frame: SSID: UPC956E146 Supported rates: 1.0* 2.0* 5.5* 11.0* 9.0 18.0 36.0 54.0 DS Parameter set: channel 11 ERP: Barker_Preamble_Mode Extended supported rates: 6.0 12.0 24.0 48.0 Country: EU Environment: Indoor/Outdoor Channels [1 - 13] @ 20 dBm HT capabilities: Capabilities: 0x1ac HT20 SM Power Save disabled RX HT20 SGI TX STBC RX STBC 1-stream Max AMSDU length: 3839 bytes No DSSS/CCK HT40 Maximum RX AMPDU length 65535 bytes (exponent: 0x003) Minimum RX AMPDU time spacing: 4 usec (0x05) HT RX MCS rate indexes supported: 0-15 HT TX MCS rate indexes are undefined HT operation: * primary channel: 11 * secondary channel offset: no secondary * STA channel width: 20 MHz * RIFS: 0 * HT protection: no * non-GF present: 0 * OBSS non-GF present: 0 * dual beacon: 0 * dual CTS protection: 0 * STBC beacon: 0 * L-SIG TXOP Prot: 0 * PCO active: 0 * PCO phase: 0 WPA: * Version: 1 * Group cipher: TKIP * Pairwise ciphers: TKIP CCMP * Authentication suites: PSK RSN: * Version: 1 * Group cipher: TKIP * Pairwise ciphers: TKIP CCMP * Authentication suites: PSK * Capabilities: 1-PTKSA-RC 1-GTKSA-RC (0x0000) Extended capabilities: HT Information Exchange Supported, BSS Transition BSS Load: * station count: 0 * channel utilisation: 93/255 * available admission capacity: 31250 [*32us] WMM: * Parameter version 1 * BE: CW 15-1023, AIFSN 3 * BK: CW 15-1023, AIFSN 7 * VI: CW 7-15, AIFSN 2, TXOP 3008 usec * VO: CW 3-7, AIFSN 2, TXOP 1504 usec Country: EU Environment: Indoor/Outdoor Channels [1 - 13] @ 16 dBm WPS: * Version: 1.0 * Wi-Fi Protected Setup State: 2 (Configured) * Response Type: 3 (AP) * UUID: 314ea500-1dd2-11b2-8601-8e4aa01a9d4a * Manufacturer: Ralink Technology, Corp. * Model: Ralink Wireless Access Point * Model Number: RT2860 * Serial Number: 12345678 * Primary Device Type: 6-0050f204-1 * Device name: RalinkAPS * Config methods: * RF Bands: 0x1 * Unknown TLV (0x1049, 6 bytes): 00 37 2a 00 01 20 BSS 74:31:70:75:f1:e2(on wlan0) TSF: 212098649788 usec (2d, 10:54:58) freq: 2462 beacon interval: 100 TUs capability: ESS Privacy ShortSlotTime (0x0411) signal: -80.00 dBm last seen: 11420 ms ago Information elements from Probe Response frame: SSID: WLAN-75F122 Supported rates: 1.0* 2.0* 5.5* 11.0* 18.0 24.0 36.0 54.0 DS Parameter set: channel 11 ERP: ERP D4.0: RSN: * Version: 1 * Group cipher: CCMP * Pairwise ciphers: CCMP * Authentication suites: PSK * Capabilities: 1-PTKSA-RC 1-GTKSA-RC (0x0000) Extended supported rates: 6.0 9.0 12.0 48.0 HT capabilities: Capabilities: 0x186c HT20 SM Power Save disabled RX HT20 SGI RX HT40 SGI No RX STBC Max AMSDU length: 7935 bytes DSSS/CCK HT40 Maximum RX AMPDU length 65535 bytes (exponent: 0x003) Minimum RX AMPDU time spacing: 16 usec (0x07) HT RX MCS rate indexes supported: 0-15 HT TX MCS rate indexes are undefined HT operation: * primary channel: 11 * secondary channel offset: no secondary * STA channel width: 20 MHz * RIFS: 1 * HT protection: no * non-GF present: 1 * OBSS non-GF present: 0 * dual beacon: 0 * dual CTS protection: 0 * STBC beacon: 0 * L-SIG TXOP Prot: 0 * PCO active: 0 * PCO phase: 0 Overlapping BSS scan params: * passive dwell: 20 TUs * active dwell: 10 TUs * channel width trigger scan interval: 300 s * scan passive total per channel: 200 TUs * scan active total per channel: 20 TUs * BSS width channel transition delay factor: 5 * OBSS Scan Activity Threshold: 0.25 % Extended capabilities: HT Information Exchange Supported WMM: * Parameter version 1 * BE: CW 15-1023, AIFSN 3 * BK: CW 15-1023, AIFSN 7 * VI: CW 7-15, AIFSN 2, TXOP 3008 usec * VO: CW 3-7, AIFSN 2, TXOP 1504 usec WPS: * Version: 1.0 * Wi-Fi Protected Setup State: 2 (Configured) * Selected Registrar: 0x0 * Response Type: 3 (AP) * UUID: 00000000-0000-0003-0000-74317075f1e2 * Manufacturer: Corporation * Model: VGV8539JW * Model Number: 1.47.000 * Serial Number: J144024542 * Primary Device Type: 6-0050f204-1 * Device name: Wireless Router(WFA) * Config methods: Label, PBC * RF Bands: 0x3 BSS 1c:b0:44:75:42:a8(on wlan0) TSF: 212108018214 usec (2d, 10:55:08) freq: 5220 beacon interval: 100 TUs capability: ESS Privacy SpectrumMgmt ShortSlotTime (0x0511) signal: -89.00 dBm last seen: 2060 ms ago SSID: o2-WLAN38 Supported rates: 6.0* 9.0 12.0* 18.0 24.0 36.0 48.0 54.0 DS Parameter set: channel 44 BSS Load: * station count: 5 * channel utilisation: 55/255 * available admission capacity: 65535 [*32us] Country: DE Environment: Indoor/Outdoor Channels [36 - 36] @ 23 dBm Channels [40 - 40] @ 23 dBm Channels [44 - 44] @ 23 dBm Channels [48 - 48] @ 23 dBm Power constraint: 0 dB HT capabilities: Capabilities: 0x86f RX LDPC HT20/HT40 SM Power Save disabled RX HT20 SGI RX HT40 SGI No RX STBC Max AMSDU length: 7935 bytes No DSSS/CCK HT40 Maximum RX AMPDU length 65535 bytes (exponent: 0x003) Minimum RX AMPDU time spacing: 4 usec (0x05) HT TX/RX MCS rate indexes supported: 0-31, 33-76 HT operation: * primary channel: 44 * secondary channel offset: above * STA channel width: any * RIFS: 0 * HT protection: nonmember * non-GF present: 1 * OBSS non-GF present: 1 * dual beacon: 0 * dual CTS protection: 0 * STBC beacon: 0 * L-SIG TXOP Prot: 0 * PCO active: 0 * PCO phase: 0 WMM: * Parameter version 1 * u-APSD * BE: CW 15-1023, AIFSN 3 * BK: CW 15-1023, AIFSN 7 * VI: CW 7-15, AIFSN 2, TXOP 3008 usec * VO: CW 3-7, AIFSN 2, TXOP 1504 usec RSN: * Version: 1 * Group cipher: CCMP * Pairwise ciphers: CCMP * Authentication suites: PSK * Capabilities: 1-PTKSA-RC 1-GTKSA-RC MFP-capable (0x0080) * 0 PMKIDs * Group mgmt cipher suite: AES-128-CMAC Extended capabilities: HT Information Exchange Supported, BSS Transition, SSID List, 6 WPS: * Version: 1.0 * Wi-Fi Protected Setup State: 2 (Configured) * Response Type: 3 (AP) * UUID: b0493afc-202d-11b2-8a5b-1cb0447542a5 * Manufacturer: Askey * Model: o2 HomeBox * Model Number: 6741 * Serial Number: 1CB0447542A8 * Primary Device Type: 6-0050f204-1 * Device name: o2 HomeBox 6741 * Config methods: Display * Unknown TLV (0x1049, 6 bytes): 00 37 2a 00 01 20 VHT capabilities: VHT Capabilities (0x3fcb7832): Max MPDU length: 11454 Supported Channel Width: neither 160 nor 80+80 RX LDPC short GI (80 MHz) SU Beamformer SU Beamformee MU Beamformer +HTC-VHT RX antenna pattern consistency TX antenna pattern consistency VHT RX MCS set: 1 streams: MCS 0-9 2 streams: MCS 0-9 3 streams: MCS 0-9 4 streams: MCS 0-9 5 streams: not supported 6 streams: not supported 7 streams: not supported 8 streams: not supported VHT RX highest supported: 0 Mbps VHT TX MCS set: 1 streams: MCS 0-9 2 streams: MCS 0-9 3 streams: MCS 0-9 4 streams: MCS 0-9 5 streams: not supported 6 streams: not supported 7 streams: not supported 8 streams: not supported VHT TX highest supported: 0 Mbps VHT operation: * channel width: 1 (80 MHz) * center freq segment 1: 42 * center freq segment 2: 0 * VHT basic MCS set: 0xfffcjc-1.17.3/tests/fixtures/centos-7.7/jobs.json000066400000000000000000000004621415226333200206510ustar00rootroot00000000000000[{"job_number": 1, "status": "Running", "command": "sleep 11 &"}, {"job_number": 2, "status": "Running", "command": "sleep 12 &"}, {"job_number": 3, "history": "previous", "status": "Running", "command": "sleep 13 &"}, {"job_number": 4, "history": "current", "status": "Running", "command": "sleep 14 &"}] jc-1.17.3/tests/fixtures/centos-7.7/jobs.out000066400000000000000000000002441415226333200205050ustar00rootroot00000000000000[1] Running sleep 11 & [2] Running sleep 12 & [3]- Running sleep 13 & [4]+ Running sleep 14 & jc-1.17.3/tests/fixtures/centos-7.7/last-crash.json000066400000000000000000000573261415226333200217700ustar00rootroot00000000000000[{"user": "kbrazil", "tty": "pts/0", "hostname": "kbrazil-mac.attl", "login": "Tue Jan 5 14:29", "logout": "still logged in"}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Tue Jan 5 14:28", "logout": "still logged in"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Tue Jan 5 14:28", "logout": "14:35", "duration": "00:07"}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Mon Jan 4 12:29", "logout": "crash", "duration": "25:59"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Mon Jan 4 12:11", "logout": "14:35", "duration": "26:24"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "kbrazil-mac.attl", "login": "Wed Dec 30 11:12", "logout": "crash", "duration": "120:58"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Wed Dec 30 10:59", "logout": "14:35", "duration": "147:35"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "kbrazil-mac.attl", "login": "Tue Dec 29 10:14", "logout": "crash", "duration": "24:45"}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Tue Dec 29 10:11", "logout": "crash", "duration": "24:48"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Tue Dec 29 10:11", "logout": "14:35", "duration": "172:24"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "kbrazil-mac.attl", "login": "Wed Aug 12 15:21", "logout": "crash", "duration": "3331:49"}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Wed Aug 12 15:08", "logout": "crash", "duration": "3332:03"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Wed Aug 12 15:07", "logout": "14:35", "duration": "3504:28"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "kbrazil-mac.attl", "login": "Tue Aug 4 09:39", "logout": "crash", "duration": "197:27"}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Tue Aug 4 09:39", "logout": "crash", "duration": "197:28"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Tue Aug 4 09:30", "logout": "14:35", "duration": "3702:05"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "kbrazil-mac.attl", "login": "Sat Aug 1 08:58", "logout": "crash", "duration": "72:32"}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Fri Jul 31 13:55", "logout": "crash", "duration": "91:34"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Fri Jul 31 13:55", "logout": "14:35", "duration": "3793:40"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "kbrazil-mac.attl", "login": "Thu Jul 30 08:34", "logout": "crash", "duration": "29:21"}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Thu Jul 30 08:31", "logout": "crash", "duration": "29:24"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Thu Jul 30 08:31", "logout": "14:35", "duration": "3823:04"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "kbrazil-mac.attl", "login": "Tue Jul 28 19:23", "logout": "crash", "duration": "37:07"}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Tue Jul 28 19:23", "logout": "crash", "duration": "37:07"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Tue Jul 28 19:22", "logout": "14:35", "duration": "3860:13"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "kbrazil-mac.attl", "login": "Tue Jul 28 16:27", "logout": "crash", "duration": "02:54"}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Tue Jul 28 16:27", "logout": "crash", "duration": "02:55"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Tue Jul 28 13:22", "logout": "14:35", "duration": "3866:13"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "kbrazil-mac.attl", "login": "Tue Jul 28 00:13", "logout": "crash", "duration": "13:08"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "kbrazil-mac.attl", "login": "Mon Jul 27 20:23", "logout": "00:13", "duration": "03:49"}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Mon Jul 27 20:23", "logout": "crash", "duration": "16:59"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Mon Jul 27 20:04", "logout": "14:35", "duration": "3883:31"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "kbrazil-mac.attl", "login": "Tue Jul 21 09:15", "logout": "crash", "duration": "154:49"}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Tue Jul 21 09:15", "logout": "crash", "duration": "154:49"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Tue Jul 21 09:14", "logout": "14:35", "duration": "4038:21"}, {"user": "kbrazil", "tty": "pts/1", "hostname": "kbrazil-mac.attl", "login": "Fri Jul 17 19:12", "logout": "19:13", "duration": "00:00"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Fri Jul 17 15:49", "logout": "crash", "duration": "89:25"}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Fri Jul 17 15:48", "logout": "crash", "duration": "89:26"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Fri Jul 17 15:48", "logout": "14:35", "duration": "4127:47"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "kbrazil-mac.attl", "login": "Fri Jul 17 01:52", "logout": "crash", "duration": "13:56"}, {"user": "kbrazil", "tty": "pts/1", "hostname": "192.168.71.1", "login": "Thu Jul 16 14:48", "logout": "crash", "duration": "24:59"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Thu Jul 16 14:10", "logout": "16:26", "duration": "02:15"}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Thu Jul 16 14:09", "logout": "crash", "duration": "25:38"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Thu Jul 16 08:35", "logout": "14:35", "duration": "4159:00"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Wed Jul 8 13:44", "logout": "crash", "duration": "186:50"}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Wed Jul 8 13:12", "logout": "crash", "duration": "187:22"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Wed Jul 8 11:27", "logout": "14:35", "duration": "4348:08"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Fri Jun 26 11:53", "logout": "crash", "duration": "287:33"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Fri Jun 26 11:52", "logout": "14:35", "duration": "4635:43"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Tue Jun 23 15:23", "logout": "15:27", "duration": "00:03"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Tue Jun 23 15:23", "logout": "15:27", "duration": "00:04"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Fri Jun 19 10:47", "logout": "crash", "duration": "100:36"}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Fri Jun 19 10:46", "logout": "crash", "duration": "100:36"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Fri Jun 19 10:29", "logout": "15:27", "duration": "100:58"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Mon Jun 8 10:30", "logout": "crash", "duration": "263:58"}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Mon Jun 8 10:30", "logout": "crash", "duration": "263:58"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Mon Jun 8 10:30", "logout": "15:27", "duration": "364:57"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Tue Jun 2 12:05", "logout": "15:27", "duration": "507:21"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Tue Jun 2 08:38", "logout": "crash", "duration": "03:26"}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Tue Jun 2 08:38", "logout": "crash", "duration": "03:27"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Tue Jun 2 06:13", "logout": "15:27", "duration": "513:13"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Sun May 24 16:10", "logout": "17:18", "duration": "01:08"}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Sun May 24 15:34", "logout": "crash", "duration": "206:39"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Sun May 24 15:34", "logout": "15:27", "duration": "719:53"}, {"user": "kbrazil", "tty": "pts/1", "hostname": "192.168.71.1", "login": "Fri May 22 13:39", "logout": "crash", "duration": "49:54"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Fri May 22 13:11", "logout": "crash", "duration": "50:22"}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Fri May 22 13:10", "logout": "crash", "duration": "50:23"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Fri May 22 12:49", "logout": "15:27", "duration": "770:37"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Fri May 22 08:44", "logout": "crash", "duration": "04:05"}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Fri May 22 08:44", "logout": "crash", "duration": "04:05"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Fri May 22 08:43", "logout": "15:27", "duration": "774:43"}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Thu May 14 16:39", "logout": "crash", "duration": "184:04"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Thu May 14 16:39", "logout": "15:27", "duration": "958:48"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Wed May 13 10:23", "logout": "crash", "duration": "30:15"}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Wed May 13 10:22", "logout": "crash", "duration": "30:16"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Wed May 13 09:51", "logout": "15:27", "duration": "989:35"}, {"user": "kbrazil", "tty": "pts/1", "hostname": "192.168.71.1", "login": "Wed Apr 15 13:00", "logout": "crash", "duration": "668:51"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Wed Apr 15 12:38", "logout": "13:01", "duration": "00:22"}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Wed Apr 15 12:28", "logout": "20:44", "duration": "08:15"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Wed Apr 15 04:02", "logout": "15:27", "duration": "1667:25"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Tue Apr 14 16:02", "logout": "crash", "duration": "11:59"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Tue Apr 14 16:02", "logout": "15:27", "duration": "1679:25"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Tue Apr 14 08:44", "logout": "10:00", "duration": "01:16"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Tue Apr 14 06:57", "logout": "08:44", "duration": "01:47"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Tue Apr 14 06:56", "logout": "15:27", "duration": "1688:31"}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Tue Apr 7 17:33", "logout": "crash", "duration": "157:22"}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Mon Apr 6 21:22", "logout": "22:42", "duration": "01:19"}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Mon Apr 6 19:43", "logout": "19:45", "duration": "00:01"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Sat Apr 4 17:31", "logout": "crash", "duration": "229:24"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Sat Apr 4 17:17", "logout": "15:27", "duration": "1918:10"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Sun Mar 29 12:42", "logout": "crash", "duration": "148:34"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Tue Mar 24 11:21", "logout": "12:42", "duration": "121:20"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Tue Mar 24 11:18", "logout": "11:21", "duration": "00:03"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Tue Mar 24 10:57", "logout": "15:27", "duration": "2188:30"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Tue Mar 17 06:56", "logout": "crash", "duration": "172:00"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Tue Mar 17 05:12", "logout": "15:27", "duration": "2362:15"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Mar 12 10:12", "logout": "crash", "duration": "114:59"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Thu Mar 12 09:22", "logout": "15:27", "duration": "2478:05"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Wed Mar 11 13:29", "logout": "crash", "duration": "19:52"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Wed Mar 11 12:19", "logout": "15:27", "duration": "2499:07"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Tue Mar 10 17:53", "logout": "crash", "duration": "18:26"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Tue Mar 10 17:52", "logout": "15:27", "duration": "2517:34"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Tue Mar 10 13:09", "logout": "crash", "duration": "04:43"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Tue Mar 10 13:08", "logout": "15:27", "duration": "2522:18"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Sat Mar 7 18:13", "logout": "crash", "duration": "65:55"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Sat Mar 7 18:13", "logout": "15:27", "duration": "2588:14"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Mar 5 14:48", "logout": "crash", "duration": "51:24"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Thu Mar 5 03:02", "logout": "15:27", "duration": "2651:25"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Mon Mar 2 19:53", "logout": "crash", "duration": "55:08"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Mon Mar 2 19:53", "logout": "15:27", "duration": "2706:34"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Sat Feb 29 18:43", "logout": "crash", "duration": "49:09"}, {"user": "kbrazil", "tty": "pts/1", "hostname": "192.168.71.1", "login": "Sat Feb 29 18:08", "logout": "18:28", "duration": "00:20"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Sat Feb 29 15:16", "logout": "18:42", "duration": "03:26"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Sat Feb 29 12:14", "logout": "crash", "duration": "55:38"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Sat Feb 29 12:13", "logout": "15:27", "duration": "2762:13"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Fri Feb 28 13:49", "logout": "crash", "duration": "22:23"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Fri Feb 28 12:56", "logout": "15:27", "duration": "2785:31"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Feb 27 16:01", "logout": "crash", "duration": "20:54"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Thu Feb 27 15:51", "logout": "15:27", "duration": "2806:35"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Feb 27 10:50", "logout": "crash", "duration": "05:01"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Wed Feb 26 20:05", "logout": "15:27", "duration": "2826:22"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Feb 20 14:42", "logout": "crash", "duration": "149:23"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Thu Feb 20 14:41", "logout": "15:27", "duration": "2975:45"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Mon Feb 17 17:48", "logout": "crash", "duration": "68:52"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Mon Feb 17 17:48", "logout": "15:27", "duration": "3044:38"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Feb 13 16:44", "logout": "crash", "duration": "97:03"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Thu Feb 13 16:44", "logout": "15:27", "duration": "3141:42"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Wed Feb 5 14:23", "logout": "crash", "duration": "194:20"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Wed Feb 5 11:43", "logout": "15:27", "duration": "3338:44"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Tue Feb 4 14:28", "logout": "crash", "duration": "21:15"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Tue Feb 4 01:28", "logout": "15:27", "duration": "3372:59"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Mon Jan 13 17:28", "logout": "crash", "duration": "511:59"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Mon Jan 13 16:16", "logout": "15:27", "duration": "3886:11"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Mon Dec 16 11:15", "logout": "crash", "duration": "677:01"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Mon Dec 16 11:14", "logout": "15:27", "duration": "4563:12"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Wed Dec 4 21:41", "logout": "crash", "duration": "277:33"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Wed Dec 4 21:40", "logout": "15:27", "duration": "4840:46"}, {"user": "kbrazil", "tty": "pts/1", "hostname": null, "login": "Sat Nov 16 14:40", "logout": "14:40", "duration": "00:00"}, {"user": "kbrazil", "tty": "pts/1", "hostname": null, "login": "Sat Nov 16 14:39", "logout": "14:39", "duration": "00:00"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "localhost", "login": "Tue Nov 12 07:19", "logout": "crash", "duration": "542:21"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Tue Nov 12 07:18", "logout": "crash", "duration": "542:22"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "localhost", "login": "Sun Nov 10 08:21", "logout": "15:22", "duration": "31:01"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Sat Nov 9 10:34", "logout": "07:16", "duration": "68:42"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Sat Nov 9 10:34", "logout": "15:27", "duration": "5451:53"}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Fri Nov 8 07:49", "logout": "crash", "duration": "26:45"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Fri Nov 8 06:29", "logout": "crash", "duration": "28:04"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Fri Nov 8 06:24", "logout": "crash", "duration": "28:09"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Fri Nov 8 06:14", "logout": "15:27", "duration": "5480:13"}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Sun Nov 3 12:20", "logout": "crash", "duration": "113:54"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Sun Nov 3 11:04", "logout": "11:05", "duration": "00:01"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Sat Nov 2 19:26", "logout": "crash", "duration": "131:47"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Fri Nov 1 15:14", "logout": "11:03", "duration": "44:49"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Fri Nov 1 15:13", "logout": "15:27", "duration": "5640:14"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Fri Nov 1 11:16", "logout": "11:36", "duration": "00:20"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Fri Nov 1 06:00", "logout": "11:36", "duration": "05:36"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Tue Oct 29 18:17", "logout": "crash", "duration": "59:43"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Tue Oct 29 18:16", "logout": "11:36", "duration": "65:19"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Sat Oct 26 09:53", "logout": "15:13", "duration": "05:19"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Fri Oct 25 18:22", "logout": "crash", "duration": "95:54"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Fri Oct 25 18:21", "logout": "11:36", "duration": "161:14"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Fri Oct 25 17:14", "logout": "18:21", "duration": "01:06"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Fri Oct 25 17:13", "logout": "11:36", "duration": "162:22"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Fri Oct 25 15:43", "logout": "17:13", "duration": "01:29"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Fri Oct 25 13:29", "logout": "17:13", "duration": "03:44"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Mon Oct 21 13:19", "logout": "19:22", "duration": "54:03"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Mon Oct 21 13:17", "logout": "19:22", "duration": "54:05"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Wed Oct 16 03:23", "logout": "crash", "duration": "129:54"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Tue Oct 15 16:49", "logout": "03:23", "duration": "10:34"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Tue Oct 15 10:39", "logout": "16:48", "duration": "06:09"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-957.27.2.", "login": "Tue Oct 15 10:39", "logout": "19:22", "duration": "200:43"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Aug 15 16:05", "logout": "16:05", "duration": "00:00"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-957.27.2.", "login": "Thu Aug 15 16:05", "logout": "16:05", "duration": "00:00"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-957.27.2.", "login": "Thu Aug 15 16:00", "logout": "16:05", "duration": "00:05"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Aug 15 14:25", "logout": "crash", "duration": "01:35"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-957.27.2.", "login": "Thu Aug 15 14:24", "logout": "16:05", "duration": "01:41"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Aug 15 11:58", "logout": "crash", "duration": "02:25"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-957.el7.x", "login": "Thu Aug 15 11:58", "logout": "16:05", "duration": "04:07"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Aug 15 11:57", "logout": "11:57", "duration": "00:00"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-957.el7.x", "login": "Thu Aug 15 11:57", "logout": "16:05", "duration": "04:08"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Thu Aug 15 10:58", "logout": "11:56", "duration": "00:58"}, {"user": "root", "tty": "tty1", "hostname": null, "login": "Thu Aug 15 10:57", "logout": "11:56", "duration": "00:59"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-957.el7.x", "login": "Thu Aug 15 10:57", "logout": "11:56", "duration": "00:59"}] jc-1.17.3/tests/fixtures/centos-7.7/last-crash.out000066400000000000000000000333441415226333200216200ustar00rootroot00000000000000kbrazil pts/0 kbrazil-mac.attl Tue Jan 5 14:29 still logged in kbrazil tty1 Tue Jan 5 14:28 still logged in reboot system boot 3.10.0-1062.1.2. Tue Jan 5 14:28 - 14:35 (00:07) kbrazil tty1 Mon Jan 4 12:29 - crash (1+01:59) reboot system boot 3.10.0-1062.1.2. Mon Jan 4 12:11 - 14:35 (1+02:24) kbrazil pts/0 kbrazil-mac.attl Wed Dec 30 11:12 - crash (5+00:58) reboot system boot 3.10.0-1062.1.2. Wed Dec 30 10:59 - 14:35 (6+03:35) kbrazil pts/0 kbrazil-mac.attl Tue Dec 29 10:14 - crash (1+00:45) kbrazil tty1 Tue Dec 29 10:11 - crash (1+00:48) reboot system boot 3.10.0-1062.1.2. Tue Dec 29 10:11 - 14:35 (7+04:24) kbrazil pts/0 kbrazil-mac.attl Wed Aug 12 15:21 - crash (138+19:49) kbrazil tty1 Wed Aug 12 15:08 - crash (138+20:03) reboot system boot 3.10.0-1062.1.2. Wed Aug 12 15:07 - 14:35 (146+00:28) kbrazil pts/0 kbrazil-mac.attl Tue Aug 4 09:39 - crash (8+05:27) kbrazil tty1 Tue Aug 4 09:39 - crash (8+05:28) reboot system boot 3.10.0-1062.1.2. Tue Aug 4 09:30 - 14:35 (154+06:05) kbrazil pts/0 kbrazil-mac.attl Sat Aug 1 08:58 - crash (3+00:32) kbrazil tty1 Fri Jul 31 13:55 - crash (3+19:34) reboot system boot 3.10.0-1062.1.2. Fri Jul 31 13:55 - 14:35 (158+01:40) kbrazil pts/0 kbrazil-mac.attl Thu Jul 30 08:34 - crash (1+05:21) kbrazil tty1 Thu Jul 30 08:31 - crash (1+05:24) reboot system boot 3.10.0-1062.1.2. Thu Jul 30 08:31 - 14:35 (159+07:04) kbrazil pts/0 kbrazil-mac.attl Tue Jul 28 19:23 - crash (1+13:07) kbrazil tty1 Tue Jul 28 19:23 - crash (1+13:07) reboot system boot 3.10.0-1062.1.2. Tue Jul 28 19:22 - 14:35 (160+20:13) kbrazil pts/0 kbrazil-mac.attl Tue Jul 28 16:27 - crash (02:54) kbrazil tty1 Tue Jul 28 16:27 - crash (02:55) reboot system boot 3.10.0-1062.1.2. Tue Jul 28 13:22 - 14:35 (161+02:13) kbrazil pts/0 kbrazil-mac.attl Tue Jul 28 00:13 - crash (13:08) kbrazil pts/0 kbrazil-mac.attl Mon Jul 27 20:23 - 00:13 (03:49) kbrazil tty1 Mon Jul 27 20:23 - crash (16:59) reboot system boot 3.10.0-1062.1.2. Mon Jul 27 20:04 - 14:35 (161+19:31) kbrazil pts/0 kbrazil-mac.attl Tue Jul 21 09:15 - crash (6+10:49) kbrazil tty1 Tue Jul 21 09:15 - crash (6+10:49) reboot system boot 3.10.0-1062.1.2. Tue Jul 21 09:14 - 14:35 (168+06:21) kbrazil pts/1 kbrazil-mac.attl Fri Jul 17 19:12 - 19:13 (00:00) kbrazil pts/0 192.168.71.1 Fri Jul 17 15:49 - crash (3+17:25) kbrazil tty1 Fri Jul 17 15:48 - crash (3+17:26) reboot system boot 3.10.0-1062.1.2. Fri Jul 17 15:48 - 14:35 (171+23:47) kbrazil pts/0 kbrazil-mac.attl Fri Jul 17 01:52 - crash (13:56) kbrazil pts/1 192.168.71.1 Thu Jul 16 14:48 - crash (1+00:59) kbrazil pts/0 192.168.71.1 Thu Jul 16 14:10 - 16:26 (02:15) kbrazil tty1 Thu Jul 16 14:09 - crash (1+01:38) reboot system boot 3.10.0-1062.1.2. Thu Jul 16 08:35 - 14:35 (173+07:00) kbrazil ttyS0 Wed Jul 8 13:44 - crash (7+18:50) kbrazil tty1 Wed Jul 8 13:12 - crash (7+19:22) reboot system boot 3.10.0-1062.1.2. Wed Jul 8 11:27 - 14:35 (181+04:08) kbrazil ttyS0 Fri Jun 26 11:53 - crash (11+23:33) reboot system boot 3.10.0-1062.1.2. Fri Jun 26 11:52 - 14:35 (193+03:43) kbrazil ttyS0 Tue Jun 23 15:23 - 15:27 (00:03) reboot system boot 3.10.0-1062.1.2. Tue Jun 23 15:23 - 15:27 (00:04) kbrazil pts/0 192.168.71.1 Fri Jun 19 10:47 - crash (4+04:36) kbrazil tty1 Fri Jun 19 10:46 - crash (4+04:36) reboot system boot 3.10.0-1062.1.2. Fri Jun 19 10:29 - 15:27 (4+04:58) kbrazil pts/0 192.168.71.1 Mon Jun 8 10:30 - crash (10+23:58) kbrazil tty1 Mon Jun 8 10:30 - crash (10+23:58) reboot system boot 3.10.0-1062.1.2. Mon Jun 8 10:30 - 15:27 (15+04:57) reboot system boot 3.10.0-1062.1.2. Tue Jun 2 12:05 - 15:27 (21+03:21) kbrazil pts/0 192.168.71.1 Tue Jun 2 08:38 - crash (03:26) kbrazil tty1 Tue Jun 2 08:38 - crash (03:27) reboot system boot 3.10.0-1062.1.2. Tue Jun 2 06:13 - 15:27 (21+09:13) kbrazil pts/0 192.168.71.1 Sun May 24 16:10 - 17:18 (01:08) kbrazil tty1 Sun May 24 15:34 - crash (8+14:39) reboot system boot 3.10.0-1062.1.2. Sun May 24 15:34 - 15:27 (29+23:53) kbrazil pts/1 192.168.71.1 Fri May 22 13:39 - crash (2+01:54) kbrazil pts/0 192.168.71.1 Fri May 22 13:11 - crash (2+02:22) kbrazil tty1 Fri May 22 13:10 - crash (2+02:23) reboot system boot 3.10.0-1062.1.2. Fri May 22 12:49 - 15:27 (32+02:37) kbrazil pts/0 192.168.71.1 Fri May 22 08:44 - crash (04:05) kbrazil tty1 Fri May 22 08:44 - crash (04:05) reboot system boot 3.10.0-1062.1.2. Fri May 22 08:43 - 15:27 (32+06:43) kbrazil tty1 Thu May 14 16:39 - crash (7+16:04) reboot system boot 3.10.0-1062.1.2. Thu May 14 16:39 - 15:27 (39+22:48) kbrazil pts/0 192.168.71.1 Wed May 13 10:23 - crash (1+06:15) kbrazil tty1 Wed May 13 10:22 - crash (1+06:16) reboot system boot 3.10.0-1062.1.2. Wed May 13 09:51 - 15:27 (41+05:35) kbrazil pts/1 192.168.71.1 Wed Apr 15 13:00 - crash (27+20:51) kbrazil pts/0 192.168.71.1 Wed Apr 15 12:38 - 13:01 (00:22) kbrazil tty1 Wed Apr 15 12:28 - 20:44 (08:15) reboot system boot 3.10.0-1062.1.2. Wed Apr 15 04:02 - 15:27 (69+11:25) kbrazil ttyS0 Tue Apr 14 16:02 - crash (11:59) reboot system boot 3.10.0-1062.1.2. Tue Apr 14 16:02 - 15:27 (69+23:25) kbrazil ttyS0 Tue Apr 14 08:44 - 10:00 (01:16) kbrazil ttyS0 Tue Apr 14 06:57 - 08:44 (01:47) reboot system boot 3.10.0-1062.1.2. Tue Apr 14 06:56 - 15:27 (70+08:31) kbrazil tty1 Tue Apr 7 17:33 - crash (6+13:22) kbrazil tty1 Mon Apr 6 21:22 - 22:42 (01:19) kbrazil tty1 Mon Apr 6 19:43 - 19:45 (00:01) kbrazil ttyS0 Sat Apr 4 17:31 - crash (9+13:24) reboot system boot 3.10.0-1062.1.2. Sat Apr 4 17:17 - 15:27 (79+22:10) kbrazil ttyS0 Sun Mar 29 12:42 - crash (6+04:34) kbrazil ttyS0 Tue Mar 24 11:21 - 12:42 (5+01:20) kbrazil ttyS0 Tue Mar 24 11:18 - 11:21 (00:03) reboot system boot 3.10.0-1062.1.2. Tue Mar 24 10:57 - 15:27 (91+04:30) kbrazil ttyS0 Tue Mar 17 06:56 - crash (7+04:00) reboot system boot 3.10.0-1062.1.2. Tue Mar 17 05:12 - 15:27 (98+10:15) kbrazil ttyS0 Thu Mar 12 10:12 - crash (4+18:59) reboot system boot 3.10.0-1062.1.2. Thu Mar 12 09:22 - 15:27 (103+06:05) kbrazil ttyS0 Wed Mar 11 13:29 - crash (19:52) reboot system boot 3.10.0-1062.1.2. Wed Mar 11 12:19 - 15:27 (104+03:07) kbrazil ttyS0 Tue Mar 10 17:53 - crash (18:26) reboot system boot 3.10.0-1062.1.2. Tue Mar 10 17:52 - 15:27 (104+21:34) kbrazil ttyS0 Tue Mar 10 13:09 - crash (04:43) reboot system boot 3.10.0-1062.1.2. Tue Mar 10 13:08 - 15:27 (105+02:18) kbrazil ttyS0 Sat Mar 7 18:13 - crash (2+17:55) reboot system boot 3.10.0-1062.1.2. Sat Mar 7 18:13 - 15:27 (107+20:14) kbrazil ttyS0 Thu Mar 5 14:48 - crash (2+03:24) reboot system boot 3.10.0-1062.1.2. Thu Mar 5 03:02 - 15:27 (110+11:25) kbrazil ttyS0 Mon Mar 2 19:53 - crash (2+07:08) reboot system boot 3.10.0-1062.1.2. Mon Mar 2 19:53 - 15:27 (112+18:34) kbrazil pts/0 192.168.71.1 Sat Feb 29 18:43 - crash (2+01:09) kbrazil pts/1 192.168.71.1 Sat Feb 29 18:08 - 18:28 (00:20) kbrazil pts/0 192.168.71.1 Sat Feb 29 15:16 - 18:42 (03:26) kbrazil ttyS0 Sat Feb 29 12:14 - crash (2+07:38) reboot system boot 3.10.0-1062.1.2. Sat Feb 29 12:13 - 15:27 (115+02:13) kbrazil ttyS0 Fri Feb 28 13:49 - crash (22:23) reboot system boot 3.10.0-1062.1.2. Fri Feb 28 12:56 - 15:27 (116+01:31) kbrazil ttyS0 Thu Feb 27 16:01 - crash (20:54) reboot system boot 3.10.0-1062.1.2. Thu Feb 27 15:51 - 15:27 (116+22:35) kbrazil ttyS0 Thu Feb 27 10:50 - crash (05:01) reboot system boot 3.10.0-1062.1.2. Wed Feb 26 20:05 - 15:27 (117+18:22) kbrazil ttyS0 Thu Feb 20 14:42 - crash (6+05:23) reboot system boot 3.10.0-1062.1.2. Thu Feb 20 14:41 - 15:27 (123+23:45) kbrazil ttyS0 Mon Feb 17 17:48 - crash (2+20:52) reboot system boot 3.10.0-1062.1.2. Mon Feb 17 17:48 - 15:27 (126+20:38) kbrazil ttyS0 Thu Feb 13 16:44 - crash (4+01:03) reboot system boot 3.10.0-1062.1.2. Thu Feb 13 16:44 - 15:27 (130+21:42) kbrazil ttyS0 Wed Feb 5 14:23 - crash (8+02:20) reboot system boot 3.10.0-1062.1.2. Wed Feb 5 11:43 - 15:27 (139+02:44) kbrazil ttyS0 Tue Feb 4 14:28 - crash (21:15) reboot system boot 3.10.0-1062.1.2. Tue Feb 4 01:28 - 15:27 (140+12:59) kbrazil ttyS0 Mon Jan 13 17:28 - crash (21+07:59) reboot system boot 3.10.0-1062.1.2. Mon Jan 13 16:16 - 15:27 (161+22:11) kbrazil ttyS0 Mon Dec 16 11:15 - crash (28+05:01) reboot system boot 3.10.0-1062.1.2. Mon Dec 16 11:14 - 15:27 (190+03:12) kbrazil ttyS0 Wed Dec 4 21:41 - crash (11+13:33) reboot system boot 3.10.0-1062.1.2. Wed Dec 4 21:40 - 15:27 (201+16:46) kbrazil pts/1 Sat Nov 16 14:40 - 14:40 (00:00) kbrazil pts/1 Sat Nov 16 14:39 - 14:39 (00:00) kbrazil pts/0 localhost Tue Nov 12 07:19 - crash (22+14:21) kbrazil ttyS0 Tue Nov 12 07:18 - crash (22+14:22) kbrazil pts/0 localhost Sun Nov 10 08:21 - 15:22 (1+07:01) kbrazil ttyS0 Sat Nov 9 10:34 - 07:16 (2+20:42) reboot system boot 3.10.0-1062.1.2. Sat Nov 9 10:34 - 15:27 (227+03:53) kbrazil tty1 Fri Nov 8 07:49 - crash (1+02:45) kbrazil pts/0 192.168.71.1 Fri Nov 8 06:29 - crash (1+04:04) kbrazil ttyS0 Fri Nov 8 06:24 - crash (1+04:09) reboot system boot 3.10.0-1062.1.2. Fri Nov 8 06:14 - 15:27 (228+08:13) kbrazil tty1 Sun Nov 3 12:20 - crash (4+17:54) kbrazil ttyS0 Sun Nov 3 11:04 - 11:05 (00:01) kbrazil pts/0 192.168.71.1 Sat Nov 2 19:26 - crash (5+11:47) kbrazil ttyS0 Fri Nov 1 15:14 - 11:03 (1+20:49) reboot system boot 3.10.0-1062.1.2. Fri Nov 1 15:13 - 15:27 (235+00:14) kbrazil ttyS0 Fri Nov 1 11:16 - 11:36 (00:20) reboot system boot 3.10.0-1062.1.2. Fri Nov 1 06:00 - 11:36 (05:36) kbrazil ttyS0 Tue Oct 29 18:17 - crash (2+11:43) reboot system boot 3.10.0-1062.1.2. Tue Oct 29 18:16 - 11:36 (2+17:19) kbrazil pts/0 192.168.71.1 Sat Oct 26 09:53 - 15:13 (05:19) kbrazil ttyS0 Fri Oct 25 18:22 - crash (3+23:54) reboot system boot 3.10.0-1062.1.2. Fri Oct 25 18:21 - 11:36 (6+17:14) kbrazil ttyS0 Fri Oct 25 17:14 - 18:21 (01:06) reboot system boot 3.10.0-1062.1.2. Fri Oct 25 17:13 - 11:36 (6+18:22) kbrazil ttyS0 Fri Oct 25 15:43 - 17:13 (01:29) reboot system boot 3.10.0-1062.1.2. Fri Oct 25 13:29 - 17:13 (03:44) kbrazil ttyS0 Mon Oct 21 13:19 - 19:22 (2+06:03) reboot system boot 3.10.0-1062.1.2. Mon Oct 21 13:17 - 19:22 (2+06:05) kbrazil ttyS0 Wed Oct 16 03:23 - crash (5+09:54) kbrazil ttyS0 Tue Oct 15 16:49 - 03:23 (10:34) kbrazil ttyS0 Tue Oct 15 10:39 - 16:48 (06:09) reboot system boot 3.10.0-957.27.2. Tue Oct 15 10:39 - 19:22 (8+08:43) kbrazil ttyS0 Thu Aug 15 16:05 - 16:05 (00:00) reboot system boot 3.10.0-957.27.2. Thu Aug 15 16:05 - 16:05 (00:00) reboot system boot 3.10.0-957.27.2. Thu Aug 15 16:00 - 16:05 (00:05) kbrazil ttyS0 Thu Aug 15 14:25 - crash (01:35) reboot system boot 3.10.0-957.27.2. Thu Aug 15 14:24 - 16:05 (01:41) kbrazil ttyS0 Thu Aug 15 11:58 - crash (02:25) reboot system boot 3.10.0-957.el7.x Thu Aug 15 11:58 - 16:05 (04:07) kbrazil ttyS0 Thu Aug 15 11:57 - 11:57 (00:00) reboot system boot 3.10.0-957.el7.x Thu Aug 15 11:57 - 16:05 (04:08) kbrazil pts/0 192.168.71.1 Thu Aug 15 10:58 - 11:56 (00:58) root tty1 Thu Aug 15 10:57 - 11:56 (00:59) reboot system boot 3.10.0-957.el7.x Thu Aug 15 10:57 - 11:56 (00:59) wtmp begins Thu Aug 15 10:57:06 2019 jc-1.17.3/tests/fixtures/centos-7.7/last-w.json000066400000000000000000000216451415226333200211310ustar00rootroot00000000000000[{"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Fri Feb 28 13:49", "logout": "still logged in"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Fri Feb 28 12:56", "logout": "14:54", "duration": "01:58"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Feb 27 16:01", "logout": "crash", "duration": "20:54"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Thu Feb 27 15:51", "logout": "14:54", "duration": "23:02"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Feb 27 10:50", "logout": "crash", "duration": "05:01"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Wed Feb 26 20:05", "logout": "14:54", "duration": "42:49"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Feb 20 14:42", "logout": "crash", "duration": "149:23"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Thu Feb 20 14:41", "logout": "14:54", "duration": "192:12"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Mon Feb 17 17:48", "logout": "crash", "duration": "68:52"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Mon Feb 17 17:48", "logout": "14:54", "duration": "261:06"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Feb 13 16:44", "logout": "crash", "duration": "97:03"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Thu Feb 13 16:44", "logout": "14:54", "duration": "358:10"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Wed Feb 5 14:23", "logout": "crash", "duration": "194:20"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Wed Feb 5 11:43", "logout": "14:54", "duration": "555:11"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Tue Feb 4 14:28", "logout": "crash", "duration": "21:15"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Tue Feb 4 01:28", "logout": "14:54", "duration": "589:26"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Mon Jan 13 17:28", "logout": "crash", "duration": "511:59"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Mon Jan 13 16:16", "logout": "14:54", "duration": "1102:38"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Mon Dec 16 11:15", "logout": "crash", "duration": "677:01"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Mon Dec 16 11:14", "logout": "14:54", "duration": "1779:40"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Wed Dec 4 21:41", "logout": "crash", "duration": "277:33"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Wed Dec 4 21:40", "logout": "14:54", "duration": "2057:13"}, {"user": "kbrazil", "tty": "pts/1", "hostname": null, "login": "Sat Nov 16 14:40", "logout": "14:40", "duration": "00:00"}, {"user": "kbrazil", "tty": "pts/1", "hostname": null, "login": "Sat Nov 16 14:39", "logout": "14:39", "duration": "00:00"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "localhost", "login": "Tue Nov 12 07:19", "logout": "crash", "duration": "542:21"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Tue Nov 12 07:18", "logout": "crash", "duration": "542:22"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "localhost", "login": "Sun Nov 10 08:21", "logout": "15:22", "duration": "31:01"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Sat Nov 9 10:34", "logout": "07:16", "duration": "68:42"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Sat Nov 9 10:34", "logout": "14:54", "duration": "2668:20"}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Fri Nov 8 07:49", "logout": "crash", "duration": "26:45"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Fri Nov 8 06:29", "logout": "crash", "duration": "28:04"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Fri Nov 8 06:24", "logout": "crash", "duration": "28:09"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Fri Nov 8 06:14", "logout": "14:54", "duration": "2696:40"}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Sun Nov 3 12:20", "logout": "crash", "duration": "113:54"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Sun Nov 3 11:04", "logout": "11:05", "duration": "00:01"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Sat Nov 2 19:26", "logout": "crash", "duration": "131:47"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Fri Nov 1 15:14", "logout": "11:03", "duration": "44:49"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Fri Nov 1 15:13", "logout": "14:54", "duration": "2856:41"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Fri Nov 1 11:16", "logout": "11:36", "duration": "00:20"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Fri Nov 1 06:00", "logout": "11:36", "duration": "05:36"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Tue Oct 29 18:17", "logout": "crash", "duration": "59:43"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Tue Oct 29 18:16", "logout": "11:36", "duration": "65:19"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Sat Oct 26 09:53", "logout": "15:13", "duration": "05:19"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Fri Oct 25 18:22", "logout": "crash", "duration": "95:54"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Fri Oct 25 18:21", "logout": "11:36", "duration": "161:14"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Fri Oct 25 17:14", "logout": "18:21", "duration": "01:06"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Fri Oct 25 17:13", "logout": "11:36", "duration": "162:22"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Fri Oct 25 15:43", "logout": "17:13", "duration": "01:29"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Fri Oct 25 13:29", "logout": "17:13", "duration": "03:44"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Mon Oct 21 13:19", "logout": "19:22", "duration": "54:03"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Mon Oct 21 13:17", "logout": "19:22", "duration": "54:05"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Wed Oct 16 03:23", "logout": "crash", "duration": "129:54"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Tue Oct 15 16:49", "logout": "03:23", "duration": "10:34"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Tue Oct 15 10:39", "logout": "16:48", "duration": "06:09"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-957.27.2.el7.x86_64", "login": "Tue Oct 15 10:39", "logout": "19:22", "duration": "200:43"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Aug 15 16:05", "logout": "16:05", "duration": "00:00"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-957.27.2.el7.x86_64", "login": "Thu Aug 15 16:05", "logout": "16:05", "duration": "00:00"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-957.27.2.el7.x86_64", "login": "Thu Aug 15 16:00", "logout": "16:05", "duration": "00:05"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Aug 15 14:25", "logout": "crash", "duration": "01:35"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-957.27.2.el7.x86_64", "login": "Thu Aug 15 14:24", "logout": "16:05", "duration": "01:41"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Aug 15 11:58", "logout": "crash", "duration": "02:25"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-957.el7.x86_64", "login": "Thu Aug 15 11:58", "logout": "16:05", "duration": "04:07"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Aug 15 11:57", "logout": "11:57", "duration": "00:00"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-957.el7.x86_64", "login": "Thu Aug 15 11:57", "logout": "16:05", "duration": "04:08"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Thu Aug 15 10:58", "logout": "11:56", "duration": "00:58"}, {"user": "root", "tty": "tty1", "hostname": null, "login": "Thu Aug 15 10:57", "logout": "11:56", "duration": "00:59"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-957.el7.x86_64", "login": "Thu Aug 15 10:57", "logout": "11:56", "duration": "00:59"}] jc-1.17.3/tests/fixtures/centos-7.7/last-w.out000066400000000000000000000125141415226333200207620ustar00rootroot00000000000000kbrazil ttyS0 Fri Feb 28 13:49 still logged in reboot system boot 3.10.0-1062.1.2.el7.x86_64 Fri Feb 28 12:56 - 14:54 (01:58) kbrazil ttyS0 Thu Feb 27 16:01 - crash (20:54) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Thu Feb 27 15:51 - 14:54 (23:02) kbrazil ttyS0 Thu Feb 27 10:50 - crash (05:01) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Wed Feb 26 20:05 - 14:54 (1+18:49) kbrazil ttyS0 Thu Feb 20 14:42 - crash (6+05:23) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Thu Feb 20 14:41 - 14:54 (8+00:12) kbrazil ttyS0 Mon Feb 17 17:48 - crash (2+20:52) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Mon Feb 17 17:48 - 14:54 (10+21:06) kbrazil ttyS0 Thu Feb 13 16:44 - crash (4+01:03) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Thu Feb 13 16:44 - 14:54 (14+22:10) kbrazil ttyS0 Wed Feb 5 14:23 - crash (8+02:20) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Wed Feb 5 11:43 - 14:54 (23+03:11) kbrazil ttyS0 Tue Feb 4 14:28 - crash (21:15) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Tue Feb 4 01:28 - 14:54 (24+13:26) kbrazil ttyS0 Mon Jan 13 17:28 - crash (21+07:59) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Mon Jan 13 16:16 - 14:54 (45+22:38) kbrazil ttyS0 Mon Dec 16 11:15 - crash (28+05:01) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Mon Dec 16 11:14 - 14:54 (74+03:40) kbrazil ttyS0 Wed Dec 4 21:41 - crash (11+13:33) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Wed Dec 4 21:40 - 14:54 (85+17:13) kbrazil pts/1 Sat Nov 16 14:40 - 14:40 (00:00) kbrazil pts/1 Sat Nov 16 14:39 - 14:39 (00:00) kbrazil pts/0 localhost Tue Nov 12 07:19 - crash (22+14:21) kbrazil ttyS0 Tue Nov 12 07:18 - crash (22+14:22) kbrazil pts/0 localhost Sun Nov 10 08:21 - 15:22 (1+07:01) kbrazil ttyS0 Sat Nov 9 10:34 - 07:16 (2+20:42) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Sat Nov 9 10:34 - 14:54 (111+04:20) kbrazil tty1 Fri Nov 8 07:49 - crash (1+02:45) kbrazil pts/0 192.168.71.1 Fri Nov 8 06:29 - crash (1+04:04) kbrazil ttyS0 Fri Nov 8 06:24 - crash (1+04:09) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Fri Nov 8 06:14 - 14:54 (112+08:40) kbrazil tty1 Sun Nov 3 12:20 - crash (4+17:54) kbrazil ttyS0 Sun Nov 3 11:04 - 11:05 (00:01) kbrazil pts/0 192.168.71.1 Sat Nov 2 19:26 - crash (5+11:47) kbrazil ttyS0 Fri Nov 1 15:14 - 11:03 (1+20:49) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Fri Nov 1 15:13 - 14:54 (119+00:41) kbrazil ttyS0 Fri Nov 1 11:16 - 11:36 (00:20) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Fri Nov 1 06:00 - 11:36 (05:36) kbrazil ttyS0 Tue Oct 29 18:17 - crash (2+11:43) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Tue Oct 29 18:16 - 11:36 (2+17:19) kbrazil pts/0 192.168.71.1 Sat Oct 26 09:53 - 15:13 (05:19) kbrazil ttyS0 Fri Oct 25 18:22 - crash (3+23:54) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Fri Oct 25 18:21 - 11:36 (6+17:14) kbrazil ttyS0 Fri Oct 25 17:14 - 18:21 (01:06) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Fri Oct 25 17:13 - 11:36 (6+18:22) kbrazil ttyS0 Fri Oct 25 15:43 - 17:13 (01:29) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Fri Oct 25 13:29 - 17:13 (03:44) kbrazil ttyS0 Mon Oct 21 13:19 - 19:22 (2+06:03) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Mon Oct 21 13:17 - 19:22 (2+06:05) kbrazil ttyS0 Wed Oct 16 03:23 - crash (5+09:54) kbrazil ttyS0 Tue Oct 15 16:49 - 03:23 (10:34) kbrazil ttyS0 Tue Oct 15 10:39 - 16:48 (06:09) reboot system boot 3.10.0-957.27.2.el7.x86_64 Tue Oct 15 10:39 - 19:22 (8+08:43) kbrazil ttyS0 Thu Aug 15 16:05 - 16:05 (00:00) reboot system boot 3.10.0-957.27.2.el7.x86_64 Thu Aug 15 16:05 - 16:05 (00:00) reboot system boot 3.10.0-957.27.2.el7.x86_64 Thu Aug 15 16:00 - 16:05 (00:05) kbrazil ttyS0 Thu Aug 15 14:25 - crash (01:35) reboot system boot 3.10.0-957.27.2.el7.x86_64 Thu Aug 15 14:24 - 16:05 (01:41) kbrazil ttyS0 Thu Aug 15 11:58 - crash (02:25) reboot system boot 3.10.0-957.el7.x86_64 Thu Aug 15 11:58 - 16:05 (04:07) kbrazil ttyS0 Thu Aug 15 11:57 - 11:57 (00:00) reboot system boot 3.10.0-957.el7.x86_64 Thu Aug 15 11:57 - 16:05 (04:08) kbrazil pts/0 192.168.71.1 Thu Aug 15 10:58 - 11:56 (00:58) root tty1 Thu Aug 15 10:57 - 11:56 (00:59) reboot system boot 3.10.0-957.el7.x86_64 Thu Aug 15 10:57 - 11:56 (00:59) wtmp begins Thu Aug 15 10:57:06 2019 jc-1.17.3/tests/fixtures/centos-7.7/last-wF.json000066400000000000000000001162671415226333200212440ustar00rootroot00000000000000[{"user": "kbrazil", "tty": "pts/0", "hostname": "kbrazil-mac.attlocal.net", "login": "Tue Jan 5 14:29:24 2021", "logout": "still logged in", "login_epoch": 1609885764}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Tue Jan 5 14:28:41 2021", "logout": "still logged in", "login_epoch": 1609885721}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Tue Jan 5 14:28:28 2021", "logout": "Tue Jan 5 14:29:36 2021", "duration": "00:01", "login_epoch": 1609885708, "logout_epoch": 1609885776, "duration_seconds": 68}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Mon Jan 4 12:29:04 2021", "logout": "crash", "duration": "25:59", "login_epoch": 1609792144}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Mon Jan 4 12:11:44 2021", "logout": "Tue Jan 5 14:29:36 2021", "duration": "26:17", "login_epoch": 1609791104, "logout_epoch": 1609885776, "duration_seconds": 94672}, {"user": "kbrazil", "tty": "pts/0", "hostname": "kbrazil-mac.attlocal.net", "login": "Wed Dec 30 11:12:50 2020", "logout": "crash", "duration": "120:58", "login_epoch": 1609355570}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Wed Dec 30 10:59:51 2020", "logout": "Tue Jan 5 14:29:36 2021", "duration": "147:29", "login_epoch": 1609354791, "logout_epoch": 1609885776, "duration_seconds": 530985}, {"user": "kbrazil", "tty": "pts/0", "hostname": "kbrazil-mac.attlocal.net", "login": "Tue Dec 29 10:14:19 2020", "logout": "crash", "duration": "24:45", "login_epoch": 1609265659}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Tue Dec 29 10:11:44 2020", "logout": "crash", "duration": "24:48", "login_epoch": 1609265504}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Tue Dec 29 10:11:28 2020", "logout": "Tue Jan 5 14:29:36 2021", "duration": "172:18", "login_epoch": 1609265488, "logout_epoch": 1609885776, "duration_seconds": 620288}, {"user": "kbrazil", "tty": "pts/0", "hostname": "kbrazil-mac.attlocal.net", "login": "Wed Aug 12 15:21:36 2020", "logout": "crash", "duration": "3331:49", "login_epoch": 1597270896}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Wed Aug 12 15:08:20 2020", "logout": "crash", "duration": "3332:03", "login_epoch": 1597270100}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Wed Aug 12 15:07:27 2020", "logout": "Tue Jan 5 14:29:36 2021", "duration": "3504:22", "login_epoch": 1597270047, "logout_epoch": 1609885776, "duration_seconds": 12615729}, {"user": "kbrazil", "tty": "pts/0", "hostname": "kbrazil-mac.attlocal.net", "login": "Tue Aug 4 09:39:30 2020", "logout": "crash", "duration": "197:27", "login_epoch": 1596559170}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Tue Aug 4 09:39:01 2020", "logout": "crash", "duration": "197:28", "login_epoch": 1596559141}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Tue Aug 4 09:30:24 2020", "logout": "Tue Jan 5 14:29:36 2021", "duration": "3701:59", "login_epoch": 1596558624, "logout_epoch": 1609885776, "duration_seconds": 13327152}, {"user": "kbrazil", "tty": "pts/0", "hostname": "kbrazil-mac.attlocal.net", "login": "Sat Aug 1 08:58:14 2020", "logout": "crash", "duration": "72:32", "login_epoch": 1596297494}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Fri Jul 31 13:55:56 2020", "logout": "crash", "duration": "91:34", "login_epoch": 1596228956}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Fri Jul 31 13:55:35 2020", "logout": "Tue Jan 5 14:29:36 2021", "duration": "3793:34", "login_epoch": 1596228935, "logout_epoch": 1609885776, "duration_seconds": 13656841}, {"user": "kbrazil", "tty": "pts/0", "hostname": "kbrazil-mac.attlocal.net", "login": "Thu Jul 30 08:34:03 2020", "logout": "crash", "duration": "29:21", "login_epoch": 1596123243}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Thu Jul 30 08:31:17 2020", "logout": "crash", "duration": "29:24", "login_epoch": 1596123077}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Thu Jul 30 08:31:03 2020", "logout": "Tue Jan 5 14:29:36 2021", "duration": "3822:58", "login_epoch": 1596123063, "logout_epoch": 1609885776, "duration_seconds": 13762713}, {"user": "kbrazil", "tty": "pts/0", "hostname": "kbrazil-mac.attlocal.net", "login": "Tue Jul 28 19:23:39 2020", "logout": "crash", "duration": "37:07", "login_epoch": 1595989419}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Tue Jul 28 19:23:23 2020", "logout": "crash", "duration": "37:07", "login_epoch": 1595989403}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Tue Jul 28 19:22:40 2020", "logout": "Tue Jan 5 14:29:36 2021", "duration": "3860:06", "login_epoch": 1595989360, "logout_epoch": 1609885776, "duration_seconds": 13896416}, {"user": "kbrazil", "tty": "pts/0", "hostname": "kbrazil-mac.attlocal.net", "login": "Tue Jul 28 16:27:59 2020", "logout": "crash", "duration": "02:54", "login_epoch": 1595978879}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Tue Jul 28 16:27:26 2020", "logout": "crash", "duration": "02:55", "login_epoch": 1595978846}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Tue Jul 28 13:22:23 2020", "logout": "Tue Jan 5 14:29:36 2021", "duration": "3866:07", "login_epoch": 1595967743, "logout_epoch": 1609885776, "duration_seconds": 13918033}, {"user": "kbrazil", "tty": "pts/0", "hostname": "kbrazil-mac.attlocal.net", "login": "Tue Jul 28 00:13:44 2020", "logout": "crash", "duration": "13:08", "login_epoch": 1595920424}, {"user": "kbrazil", "tty": "pts/0", "hostname": "kbrazil-mac.attlocal.net", "login": "Mon Jul 27 20:23:44 2020", "logout": "Tue Jul 28 00:13:35 2020", "duration": "03:49", "login_epoch": 1595906624, "logout_epoch": 1595920415, "duration_seconds": 13791}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Mon Jul 27 20:23:17 2020", "logout": "crash", "duration": "16:59", "login_epoch": 1595906597}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Mon Jul 27 20:04:44 2020", "logout": "Tue Jan 5 14:29:36 2021", "duration": "3883:24", "login_epoch": 1595905484, "logout_epoch": 1609885776, "duration_seconds": 13980292}, {"user": "kbrazil", "tty": "pts/0", "hostname": "kbrazil-mac.attlocal.net", "login": "Tue Jul 21 09:15:29 2020", "logout": "crash", "duration": "154:49", "login_epoch": 1595348129}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Tue Jul 21 09:15:07 2020", "logout": "crash", "duration": "154:49", "login_epoch": 1595348107}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Tue Jul 21 09:14:38 2020", "logout": "Tue Jan 5 14:29:36 2021", "duration": "4038:14", "login_epoch": 1595348078, "logout_epoch": 1609885776, "duration_seconds": 14537698}, {"user": "kbrazil", "tty": "pts/1", "hostname": "kbrazil-mac.attlocal.net", "login": "Fri Jul 17 19:12:43 2020", "logout": "Fri Jul 17 19:13:04 2020", "duration": "00:00", "login_epoch": 1595038363, "logout_epoch": 1595038384, "duration_seconds": 21}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Fri Jul 17 15:49:03 2020", "logout": "crash", "duration": "89:25", "login_epoch": 1595026143}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Fri Jul 17 15:48:35 2020", "logout": "crash", "duration": "89:26", "login_epoch": 1595026115}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Fri Jul 17 15:48:11 2020", "logout": "Tue Jan 5 14:29:36 2021", "duration": "4127:41", "login_epoch": 1595026091, "logout_epoch": 1609885776, "duration_seconds": 14859685}, {"user": "kbrazil", "tty": "pts/0", "hostname": "kbrazil-mac.attlocal.net", "login": "Fri Jul 17 01:52:05 2020", "logout": "crash", "duration": "13:56", "login_epoch": 1594975925}, {"user": "kbrazil", "tty": "pts/1", "hostname": "192.168.71.1", "login": "Thu Jul 16 14:48:42 2020", "logout": "crash", "duration": "24:59", "login_epoch": 1594936122}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Thu Jul 16 14:10:31 2020", "logout": "Thu Jul 16 16:26:07 2020", "duration": "02:15", "login_epoch": 1594933831, "logout_epoch": 1594941967, "duration_seconds": 8136}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Thu Jul 16 14:09:55 2020", "logout": "crash", "duration": "25:38", "login_epoch": 1594933795}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Thu Jul 16 08:35:02 2020", "logout": "Tue Jan 5 14:29:36 2021", "duration": "4158:54", "login_epoch": 1594913702, "logout_epoch": 1609885776, "duration_seconds": 14972074}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Wed Jul 8 13:44:04 2020", "logout": "crash", "duration": "186:50", "login_epoch": 1594241044}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Wed Jul 8 13:12:29 2020", "logout": "crash", "duration": "187:22", "login_epoch": 1594239149}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Wed Jul 8 11:27:06 2020", "logout": "Tue Jan 5 14:29:36 2021", "duration": "4348:02", "login_epoch": 1594232826, "logout_epoch": 1609885776, "duration_seconds": 15652950}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Fri Jun 26 11:53:28 2020", "logout": "crash", "duration": "287:33", "login_epoch": 1593197608}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Fri Jun 26 11:52:15 2020", "logout": "Tue Jan 5 14:29:36 2021", "duration": "4635:37", "login_epoch": 1593197535, "logout_epoch": 1609885776, "duration_seconds": 16688241}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Tue Jun 23 15:23:50 2020", "logout": "Tue Jun 23 15:27:26 2020", "duration": "00:03", "login_epoch": 1592951030, "logout_epoch": 1592951246, "duration_seconds": 216}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Tue Jun 23 15:23:25 2020", "logout": "Tue Jun 23 15:27:28 2020", "duration": "00:04", "login_epoch": 1592951005, "logout_epoch": 1592951248, "duration_seconds": 243}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Fri Jun 19 10:47:07 2020", "logout": "crash", "duration": "100:36", "login_epoch": 1592588827}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Fri Jun 19 10:46:46 2020", "logout": "crash", "duration": "100:36", "login_epoch": 1592588806}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Fri Jun 19 10:29:25 2020", "logout": "Tue Jun 23 15:27:28 2020", "duration": "100:58", "login_epoch": 1592587765, "logout_epoch": 1592951248, "duration_seconds": 363483}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Mon Jun 8 10:30:52 2020", "logout": "crash", "duration": "263:58", "login_epoch": 1591637452}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Mon Jun 8 10:30:29 2020", "logout": "crash", "duration": "263:58", "login_epoch": 1591637429}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Mon Jun 8 10:30:06 2020", "logout": "Tue Jun 23 15:27:28 2020", "duration": "364:57", "login_epoch": 1591637406, "logout_epoch": 1592951248, "duration_seconds": 1313842}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Tue Jun 2 12:05:38 2020", "logout": "Tue Jun 23 15:27:28 2020", "duration": "507:21", "login_epoch": 1591124738, "logout_epoch": 1592951248, "duration_seconds": 1826510}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Tue Jun 2 08:38:47 2020", "logout": "crash", "duration": "03:26", "login_epoch": 1591112327}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Tue Jun 2 08:38:36 2020", "logout": "crash", "duration": "03:27", "login_epoch": 1591112316}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Tue Jun 2 06:13:40 2020", "logout": "Tue Jun 23 15:27:28 2020", "duration": "513:13", "login_epoch": 1591103620, "logout_epoch": 1592951248, "duration_seconds": 1847628}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Sun May 24 16:10:42 2020", "logout": "Sun May 24 17:18:58 2020", "duration": "01:08", "login_epoch": 1590361842, "logout_epoch": 1590365938, "duration_seconds": 4096}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Sun May 24 15:34:27 2020", "logout": "crash", "duration": "206:39", "login_epoch": 1590359667}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Sun May 24 15:34:01 2020", "logout": "Tue Jun 23 15:27:28 2020", "duration": "719:53", "login_epoch": 1590359641, "logout_epoch": 1592951248, "duration_seconds": 2591607}, {"user": "kbrazil", "tty": "pts/1", "hostname": "192.168.71.1", "login": "Fri May 22 13:39:48 2020", "logout": "crash", "duration": "49:54", "login_epoch": 1590179988}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Fri May 22 13:11:05 2020", "logout": "crash", "duration": "50:22", "login_epoch": 1590178265}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Fri May 22 13:10:36 2020", "logout": "crash", "duration": "50:23", "login_epoch": 1590178236}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Fri May 22 12:49:57 2020", "logout": "Tue Jun 23 15:27:28 2020", "duration": "770:37", "login_epoch": 1590176997, "logout_epoch": 1592951248, "duration_seconds": 2774251}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Fri May 22 08:44:51 2020", "logout": "crash", "duration": "04:05", "login_epoch": 1590162291}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Fri May 22 08:44:09 2020", "logout": "crash", "duration": "04:05", "login_epoch": 1590162249}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Fri May 22 08:43:50 2020", "logout": "Tue Jun 23 15:27:28 2020", "duration": "774:43", "login_epoch": 1590162230, "logout_epoch": 1592951248, "duration_seconds": 2789018}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Thu May 14 16:39:13 2020", "logout": "crash", "duration": "184:04", "login_epoch": 1589499553}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Thu May 14 16:39:00 2020", "logout": "Tue Jun 23 15:27:28 2020", "duration": "958:48", "login_epoch": 1589499540, "logout_epoch": 1592951248, "duration_seconds": 3451708}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Wed May 13 10:23:33 2020", "logout": "crash", "duration": "30:15", "login_epoch": 1589390613}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Wed May 13 10:22:38 2020", "logout": "crash", "duration": "30:16", "login_epoch": 1589390558}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Wed May 13 09:51:51 2020", "logout": "Tue Jun 23 15:27:28 2020", "duration": "989:35", "login_epoch": 1589388711, "logout_epoch": 1592951248, "duration_seconds": 3562537}, {"user": "kbrazil", "tty": "pts/1", "hostname": "192.168.71.1", "login": "Wed Apr 15 13:00:16 2020", "logout": "crash", "duration": "668:51", "login_epoch": 1586980816}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Wed Apr 15 12:38:34 2020", "logout": "Wed Apr 15 13:01:29 2020", "duration": "00:22", "login_epoch": 1586979514, "logout_epoch": 1586980889, "duration_seconds": 1375}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Wed Apr 15 12:28:46 2020", "logout": "Wed Apr 15 20:44:22 2020", "duration": "08:15", "login_epoch": 1586978926, "logout_epoch": 1587008662, "duration_seconds": 29736}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Wed Apr 15 04:02:22 2020", "logout": "Tue Jun 23 15:27:28 2020", "duration": "1667:25", "login_epoch": 1586948542, "logout_epoch": 1592951248, "duration_seconds": 6002706}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Tue Apr 14 16:02:37 2020", "logout": "crash", "duration": "11:59", "login_epoch": 1586905357}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Tue Apr 14 16:02:17 2020", "logout": "Tue Jun 23 15:27:28 2020", "duration": "1679:25", "login_epoch": 1586905337, "logout_epoch": 1592951248, "duration_seconds": 6045911}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Tue Apr 14 08:44:45 2020", "logout": "Tue Apr 14 10:00:46 2020", "duration": "01:16", "login_epoch": 1586879085, "logout_epoch": 1586883646, "duration_seconds": 4561}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Tue Apr 14 06:57:27 2020", "logout": "Tue Apr 14 08:44:39 2020", "duration": "01:47", "login_epoch": 1586872647, "logout_epoch": 1586879079, "duration_seconds": 6432}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Tue Apr 14 06:56:01 2020", "logout": "Tue Jun 23 15:27:28 2020", "duration": "1688:31", "login_epoch": 1586872561, "logout_epoch": 1592951248, "duration_seconds": 6078687}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Tue Apr 7 17:33:04 2020", "logout": "crash", "duration": "157:22", "login_epoch": 1586305984}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Mon Apr 6 21:22:49 2020", "logout": "Mon Apr 6 22:42:06 2020", "duration": "01:19", "login_epoch": 1586233369, "logout_epoch": 1586238126, "duration_seconds": 4757}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Mon Apr 6 19:43:25 2020", "logout": "Mon Apr 6 19:45:24 2020", "duration": "00:01", "login_epoch": 1586227405, "logout_epoch": 1586227524, "duration_seconds": 119}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Sat Apr 4 17:31:48 2020", "logout": "crash", "duration": "229:24", "login_epoch": 1586046708}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Sat Apr 4 17:17:00 2020", "logout": "Tue Jun 23 15:27:28 2020", "duration": "1918:10", "login_epoch": 1586045820, "logout_epoch": 1592951248, "duration_seconds": 6905428}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Sun Mar 29 12:42:56 2020", "logout": "crash", "duration": "148:34", "login_epoch": 1585510976}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Tue Mar 24 11:21:56 2020", "logout": "Sun Mar 29 12:42:50 2020", "duration": "121:20", "login_epoch": 1585074116, "logout_epoch": 1585510970, "duration_seconds": 436854}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Tue Mar 24 11:18:00 2020", "logout": "Tue Mar 24 11:21:51 2020", "duration": "00:03", "login_epoch": 1585073880, "logout_epoch": 1585074111, "duration_seconds": 231}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Tue Mar 24 10:57:02 2020", "logout": "Tue Jun 23 15:27:28 2020", "duration": "2188:30", "login_epoch": 1585072622, "logout_epoch": 1592951248, "duration_seconds": 7878626}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Tue Mar 17 06:56:55 2020", "logout": "crash", "duration": "172:00", "login_epoch": 1584453415}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Tue Mar 17 05:12:10 2020", "logout": "Tue Jun 23 15:27:28 2020", "duration": "2362:15", "login_epoch": 1584447130, "logout_epoch": 1592951248, "duration_seconds": 8504118}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Mar 12 10:12:42 2020", "logout": "crash", "duration": "114:59", "login_epoch": 1584033162}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Thu Mar 12 09:22:03 2020", "logout": "Tue Jun 23 15:27:28 2020", "duration": "2478:05", "login_epoch": 1584030123, "logout_epoch": 1592951248, "duration_seconds": 8921125}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Wed Mar 11 13:29:24 2020", "logout": "crash", "duration": "19:52", "login_epoch": 1583958564}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Wed Mar 11 12:19:59 2020", "logout": "Tue Jun 23 15:27:28 2020", "duration": "2499:07", "login_epoch": 1583954399, "logout_epoch": 1592951248, "duration_seconds": 8996849}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Tue Mar 10 17:53:11 2020", "logout": "crash", "duration": "18:26", "login_epoch": 1583887991}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Tue Mar 10 17:52:57 2020", "logout": "Tue Jun 23 15:27:28 2020", "duration": "2517:34", "login_epoch": 1583887977, "logout_epoch": 1592951248, "duration_seconds": 9063271}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Tue Mar 10 13:09:01 2020", "logout": "crash", "duration": "04:43", "login_epoch": 1583870941}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Tue Mar 10 13:08:45 2020", "logout": "Tue Jun 23 15:27:28 2020", "duration": "2522:18", "login_epoch": 1583870925, "logout_epoch": 1592951248, "duration_seconds": 9080323}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Sat Mar 7 18:13:19 2020", "logout": "crash", "duration": "65:55", "login_epoch": 1583633599}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Sat Mar 7 18:13:04 2020", "logout": "Tue Jun 23 15:27:28 2020", "duration": "2588:14", "login_epoch": 1583633584, "logout_epoch": 1592951248, "duration_seconds": 9317664}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Mar 5 14:48:23 2020", "logout": "crash", "duration": "51:24", "login_epoch": 1583448503}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Thu Mar 5 03:02:06 2020", "logout": "Tue Jun 23 15:27:28 2020", "duration": "2651:25", "login_epoch": 1583406126, "logout_epoch": 1592951248, "duration_seconds": 9545122}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Mon Mar 2 19:53:22 2020", "logout": "crash", "duration": "55:08", "login_epoch": 1583207602}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Mon Mar 2 19:53:07 2020", "logout": "Tue Jun 23 15:27:28 2020", "duration": "2706:34", "login_epoch": 1583207587, "logout_epoch": 1592951248, "duration_seconds": 9743661}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Sat Feb 29 18:43:55 2020", "logout": "crash", "duration": "49:09", "login_epoch": 1583030635}, {"user": "kbrazil", "tty": "pts/1", "hostname": "192.168.71.1", "login": "Sat Feb 29 18:08:17 2020", "logout": "Sat Feb 29 18:28:47 2020", "duration": "00:20", "login_epoch": 1583028497, "logout_epoch": 1583029727, "duration_seconds": 1230}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Sat Feb 29 15:16:16 2020", "logout": "Sat Feb 29 18:42:49 2020", "duration": "03:26", "login_epoch": 1583018176, "logout_epoch": 1583030569, "duration_seconds": 12393}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Sat Feb 29 12:14:10 2020", "logout": "crash", "duration": "55:38", "login_epoch": 1583007250}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Sat Feb 29 12:13:44 2020", "logout": "Tue Jun 23 15:27:28 2020", "duration": "2762:13", "login_epoch": 1583007224, "logout_epoch": 1592951248, "duration_seconds": 9944024}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Fri Feb 28 13:49:56 2020", "logout": "crash", "duration": "22:23", "login_epoch": 1582926596}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Fri Feb 28 12:56:05 2020", "logout": "Tue Jun 23 15:27:28 2020", "duration": "2785:31", "login_epoch": 1582923365, "logout_epoch": 1592951248, "duration_seconds": 10027883}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Feb 27 16:01:25 2020", "logout": "crash", "duration": "20:54", "login_epoch": 1582848085}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Thu Feb 27 15:51:42 2020", "logout": "Tue Jun 23 15:27:28 2020", "duration": "2806:35", "login_epoch": 1582847502, "logout_epoch": 1592951248, "duration_seconds": 10103746}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Feb 27 10:50:36 2020", "logout": "crash", "duration": "05:01", "login_epoch": 1582829436}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Wed Feb 26 20:05:10 2020", "logout": "Tue Jun 23 15:27:28 2020", "duration": "2826:22", "login_epoch": 1582776310, "logout_epoch": 1592951248, "duration_seconds": 10174938}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Feb 20 14:42:01 2020", "logout": "crash", "duration": "149:23", "login_epoch": 1582238521}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Thu Feb 20 14:41:39 2020", "logout": "Tue Jun 23 15:27:28 2020", "duration": "2975:45", "login_epoch": 1582238499, "logout_epoch": 1592951248, "duration_seconds": 10712749}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Mon Feb 17 17:48:58 2020", "logout": "crash", "duration": "68:52", "login_epoch": 1581990538}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Mon Feb 17 17:48:37 2020", "logout": "Tue Jun 23 15:27:28 2020", "duration": "3044:38", "login_epoch": 1581990517, "logout_epoch": 1592951248, "duration_seconds": 10960731}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Feb 13 16:44:51 2020", "logout": "crash", "duration": "97:03", "login_epoch": 1581641091}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Thu Feb 13 16:44:31 2020", "logout": "Tue Jun 23 15:27:28 2020", "duration": "3141:42", "login_epoch": 1581641071, "logout_epoch": 1592951248, "duration_seconds": 11310177}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Wed Feb 5 14:23:46 2020", "logout": "crash", "duration": "194:20", "login_epoch": 1580941426}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Wed Feb 5 11:43:15 2020", "logout": "Tue Jun 23 15:27:28 2020", "duration": "3338:44", "login_epoch": 1580931795, "logout_epoch": 1592951248, "duration_seconds": 12019453}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Tue Feb 4 14:28:14 2020", "logout": "crash", "duration": "21:15", "login_epoch": 1580855294}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Tue Feb 4 01:28:02 2020", "logout": "Tue Jun 23 15:27:28 2020", "duration": "3372:59", "login_epoch": 1580808482, "logout_epoch": 1592951248, "duration_seconds": 12142766}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Mon Jan 13 17:28:13 2020", "logout": "crash", "duration": "511:59", "login_epoch": 1578965293}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Mon Jan 13 16:16:04 2020", "logout": "Tue Jun 23 15:27:28 2020", "duration": "3886:11", "login_epoch": 1578960964, "logout_epoch": 1592951248, "duration_seconds": 13990284}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Mon Dec 16 11:15:00 2019", "logout": "crash", "duration": "677:01", "login_epoch": 1576523700}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Mon Dec 16 11:14:30 2019", "logout": "Tue Jun 23 15:27:28 2020", "duration": "4563:12", "login_epoch": 1576523670, "logout_epoch": 1592951248, "duration_seconds": 16427578}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Wed Dec 4 21:41:25 2019", "logout": "crash", "duration": "277:33", "login_epoch": 1575524485}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Wed Dec 4 21:40:48 2019", "logout": "Tue Jun 23 15:27:28 2020", "duration": "4840:46", "login_epoch": 1575524448, "logout_epoch": 1592951248, "duration_seconds": 17426800}, {"user": "kbrazil", "tty": "pts/1", "hostname": null, "login": "Sat Nov 16 14:40:36 2019", "logout": "Sat Nov 16 14:40:41 2019", "duration": "00:00", "login_epoch": 1573944036, "logout_epoch": 1573944041, "duration_seconds": 5}, {"user": "kbrazil", "tty": "pts/1", "hostname": null, "login": "Sat Nov 16 14:39:29 2019", "logout": "Sat Nov 16 14:39:42 2019", "duration": "00:00", "login_epoch": 1573943969, "logout_epoch": 1573943982, "duration_seconds": 13}, {"user": "kbrazil", "tty": "pts/0", "hostname": "localhost", "login": "Tue Nov 12 07:19:39 2019", "logout": "crash", "duration": "542:21", "login_epoch": 1573571979}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Tue Nov 12 07:18:40 2019", "logout": "crash", "duration": "542:22", "login_epoch": 1573571920}, {"user": "kbrazil", "tty": "pts/0", "hostname": "localhost", "login": "Sun Nov 10 08:21:36 2019", "logout": "Mon Nov 11 15:22:36 2019", "duration": "31:01", "login_epoch": 1573402896, "logout_epoch": 1573514556, "duration_seconds": 111660}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Sat Nov 9 10:34:48 2019", "logout": "Tue Nov 12 07:16:59 2019", "duration": "68:42", "login_epoch": 1573324488, "logout_epoch": 1573571819, "duration_seconds": 247331}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Sat Nov 9 10:34:26 2019", "logout": "Tue Jun 23 15:27:28 2020", "duration": "5451:53", "login_epoch": 1573324466, "logout_epoch": 1592951248, "duration_seconds": 19626782}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Fri Nov 8 07:49:24 2019", "logout": "crash", "duration": "26:45", "login_epoch": 1573228164}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Fri Nov 8 06:29:41 2019", "logout": "crash", "duration": "28:04", "login_epoch": 1573223381}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Fri Nov 8 06:24:27 2019", "logout": "crash", "duration": "28:09", "login_epoch": 1573223067}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Fri Nov 8 06:14:17 2019", "logout": "Tue Jun 23 15:27:28 2020", "duration": "5480:13", "login_epoch": 1573222457, "logout_epoch": 1592951248, "duration_seconds": 19728791}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Sun Nov 3 12:20:05 2019", "logout": "crash", "duration": "113:54", "login_epoch": 1572812405}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Sun Nov 3 11:04:48 2019", "logout": "Sun Nov 3 11:05:50 2019", "duration": "00:01", "login_epoch": 1572807888, "logout_epoch": 1572807950, "duration_seconds": 62}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Sat Nov 2 19:26:52 2019", "logout": "crash", "duration": "131:47", "login_epoch": 1572748012}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Fri Nov 1 15:14:12 2019", "logout": "Sun Nov 3 11:03:55 2019", "duration": "44:49", "login_epoch": 1572646452, "logout_epoch": 1572807835, "duration_seconds": 161383}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Fri Nov 1 15:13:19 2019", "logout": "Tue Jun 23 15:27:28 2020", "duration": "5640:14", "login_epoch": 1572646399, "logout_epoch": 1592951248, "duration_seconds": 20304849}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Fri Nov 1 11:16:36 2019", "logout": "Fri Nov 1 11:36:43 2019", "duration": "00:20", "login_epoch": 1572632196, "logout_epoch": 1572633403, "duration_seconds": 1207}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Fri Nov 1 06:00:15 2019", "logout": "Fri Nov 1 11:36:44 2019", "duration": "05:36", "login_epoch": 1572613215, "logout_epoch": 1572633404, "duration_seconds": 20189}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Tue Oct 29 18:17:00 2019", "logout": "crash", "duration": "59:43", "login_epoch": 1572398220}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Tue Oct 29 18:16:45 2019", "logout": "Fri Nov 1 11:36:44 2019", "duration": "65:19", "login_epoch": 1572398205, "logout_epoch": 1572633404, "duration_seconds": 235199}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Sat Oct 26 09:53:36 2019", "logout": "Sat Oct 26 15:13:20 2019", "duration": "05:19", "login_epoch": 1572108816, "logout_epoch": 1572128000, "duration_seconds": 19184}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Fri Oct 25 18:22:10 2019", "logout": "crash", "duration": "95:54", "login_epoch": 1572052930}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Fri Oct 25 18:21:45 2019", "logout": "Fri Nov 1 11:36:44 2019", "duration": "161:14", "login_epoch": 1572052905, "logout_epoch": 1572633404, "duration_seconds": 580499}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Fri Oct 25 17:14:54 2019", "logout": "Fri Oct 25 18:21:32 2019", "duration": "01:06", "login_epoch": 1572048894, "logout_epoch": 1572052892, "duration_seconds": 3998}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Fri Oct 25 17:13:49 2019", "logout": "Fri Nov 1 11:36:44 2019", "duration": "162:22", "login_epoch": 1572048829, "logout_epoch": 1572633404, "duration_seconds": 584575}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Fri Oct 25 15:43:55 2019", "logout": "Fri Oct 25 17:13:43 2019", "duration": "01:29", "login_epoch": 1572043435, "logout_epoch": 1572048823, "duration_seconds": 5388}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Fri Oct 25 13:29:01 2019", "logout": "Fri Oct 25 17:13:45 2019", "duration": "03:44", "login_epoch": 1572035341, "logout_epoch": 1572048825, "duration_seconds": 13484}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Mon Oct 21 13:19:30 2019", "logout": "Wed Oct 23 19:22:56 2019", "duration": "54:03", "login_epoch": 1571689170, "logout_epoch": 1571883776, "duration_seconds": 194606}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.el7.x86_64", "login": "Mon Oct 21 13:17:47 2019", "logout": "Wed Oct 23 19:22:58 2019", "duration": "54:05", "login_epoch": 1571689067, "logout_epoch": 1571883778, "duration_seconds": 194711}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Wed Oct 16 03:23:21 2019", "logout": "crash", "duration": "129:54", "login_epoch": 1571221401}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Tue Oct 15 16:49:02 2019", "logout": "Wed Oct 16 03:23:15 2019", "duration": "10:34", "login_epoch": 1571183342, "logout_epoch": 1571221395, "duration_seconds": 38053}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Tue Oct 15 10:39:44 2019", "logout": "Tue Oct 15 16:48:54 2019", "duration": "06:09", "login_epoch": 1571161184, "logout_epoch": 1571183334, "duration_seconds": 22150}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-957.27.2.el7.x86_64", "login": "Tue Oct 15 10:39:10 2019", "logout": "Wed Oct 23 19:22:58 2019", "duration": "200:43", "login_epoch": 1571161150, "logout_epoch": 1571883778, "duration_seconds": 722628}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Aug 15 16:05:30 2019", "logout": "Thu Aug 15 16:05:50 2019", "duration": "00:00", "login_epoch": 1565910330, "logout_epoch": 1565910350, "duration_seconds": 20}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-957.27.2.el7.x86_64", "login": "Thu Aug 15 16:05:10 2019", "logout": "Thu Aug 15 16:05:52 2019", "duration": "00:00", "login_epoch": 1565910310, "logout_epoch": 1565910352, "duration_seconds": 42}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-957.27.2.el7.x86_64", "login": "Thu Aug 15 16:00:45 2019", "logout": "Thu Aug 15 16:05:52 2019", "duration": "00:05", "login_epoch": 1565910045, "logout_epoch": 1565910352, "duration_seconds": 307}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Aug 15 14:25:00 2019", "logout": "crash", "duration": "01:35", "login_epoch": 1565904300}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-957.27.2.el7.x86_64", "login": "Thu Aug 15 14:24:43 2019", "logout": "Thu Aug 15 16:05:52 2019", "duration": "01:41", "login_epoch": 1565904283, "logout_epoch": 1565910352, "duration_seconds": 6069}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Aug 15 11:58:46 2019", "logout": "crash", "duration": "02:25", "login_epoch": 1565895526}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-957.el7.x86_64", "login": "Thu Aug 15 11:58:06 2019", "logout": "Thu Aug 15 16:05:52 2019", "duration": "04:07", "login_epoch": 1565895486, "logout_epoch": 1565910352, "duration_seconds": 14866}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Aug 15 11:57:28 2019", "logout": "Thu Aug 15 11:57:40 2019", "duration": "00:00", "login_epoch": 1565895448, "logout_epoch": 1565895460, "duration_seconds": 12}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-957.el7.x86_64", "login": "Thu Aug 15 11:57:07 2019", "logout": "Thu Aug 15 16:05:52 2019", "duration": "04:08", "login_epoch": 1565895427, "logout_epoch": 1565910352, "duration_seconds": 14925}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Thu Aug 15 10:58:29 2019", "logout": "Thu Aug 15 11:56:42 2019", "duration": "00:58", "login_epoch": 1565891909, "logout_epoch": 1565895402, "duration_seconds": 3493}, {"user": "root", "tty": "tty1", "hostname": null, "login": "Thu Aug 15 10:57:26 2019", "logout": "Thu Aug 15 11:56:42 2019", "duration": "00:59", "login_epoch": 1565891846, "logout_epoch": 1565895402, "duration_seconds": 3556}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-957.el7.x86_64", "login": "Thu Aug 15 10:57:06 2019", "logout": "Thu Aug 15 11:56:44 2019", "duration": "00:59", "login_epoch": 1565891826, "logout_epoch": 1565895404, "duration_seconds": 3578}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1127.19.1", "login": "Tue Dec 29 08:53:03 2020", "logout": "Wed Jan 6 09:28:15 2021", "duration": "192:35", "login_epoch": 1609260783, "logout_epoch": 1609954095, "duration_seconds": 693312}, {"user": "user1234", "tty": "pts/0", "hostname": "CONSOLE:0", "login": "Tue Dec 29 13:50:50 2020", "logout": "crash", "duration": "-4:-57", "login_epoch": 1609278650}, {"user": "user1234", "tty": ":0", "hostname": "CONSOLE:0", "login": "Tue Dec 29 13:49:58 2020", "logout": "crash", "duration": "-4:-56", "login_epoch": 1609278598}, {"user": "user1234", "tty": "pts/1", "hostname": "CONSOLE:pts/0:S.0", "login": "Mon Dec 28 17:24:33 2020", "logout": "Mon Dec 28 17:24:46 2020", "duration": "00:00", "login_epoch": 1609205073, "logout_epoch": 1609205086, "duration_seconds": 13}, {"user": "user1234", "tty": "pts/0", "hostname": "CONSOLE:0", "login": "Mon Dec 28 17:24:10 2020", "logout": "Mon Dec 28 17:25:01 2020", "duration": "00:00", "login_epoch": 1609205050, "logout_epoch": 1609205101, "duration_seconds": 51}, {"user": "user1234", "tty": "pts/2", "hostname": "fe80::fd8:7309:4", "login": "Mon Dec 28 12:43:33 2020", "logout": "Mon Dec 28 13:14:22 2020", "duration": "00:30", "login_epoch": 1609188213, "logout_epoch": 1609190062, "duration_seconds": 1849}] jc-1.17.3/tests/fixtures/centos-7.7/last-wF.out000066400000000000000000000476021415226333200210760ustar00rootroot00000000000000kbrazil pts/0 kbrazil-mac.attlocal.net Tue Jan 5 14:29:24 2021 still logged in kbrazil tty1 Tue Jan 5 14:28:41 2021 still logged in reboot system boot 3.10.0-1062.1.2.el7.x86_64 Tue Jan 5 14:28:28 2021 - Tue Jan 5 14:29:36 2021 (00:01) kbrazil tty1 Mon Jan 4 12:29:04 2021 - crash (1+01:59) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Mon Jan 4 12:11:44 2021 - Tue Jan 5 14:29:36 2021 (1+02:17) kbrazil pts/0 kbrazil-mac.attlocal.net Wed Dec 30 11:12:50 2020 - crash (5+00:58) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Wed Dec 30 10:59:51 2020 - Tue Jan 5 14:29:36 2021 (6+03:29) kbrazil pts/0 kbrazil-mac.attlocal.net Tue Dec 29 10:14:19 2020 - crash (1+00:45) kbrazil tty1 Tue Dec 29 10:11:44 2020 - crash (1+00:48) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Tue Dec 29 10:11:28 2020 - Tue Jan 5 14:29:36 2021 (7+04:18) kbrazil pts/0 kbrazil-mac.attlocal.net Wed Aug 12 15:21:36 2020 - crash (138+19:49) kbrazil tty1 Wed Aug 12 15:08:20 2020 - crash (138+20:03) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Wed Aug 12 15:07:27 2020 - Tue Jan 5 14:29:36 2021 (146+00:22) kbrazil pts/0 kbrazil-mac.attlocal.net Tue Aug 4 09:39:30 2020 - crash (8+05:27) kbrazil tty1 Tue Aug 4 09:39:01 2020 - crash (8+05:28) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Tue Aug 4 09:30:24 2020 - Tue Jan 5 14:29:36 2021 (154+05:59) kbrazil pts/0 kbrazil-mac.attlocal.net Sat Aug 1 08:58:14 2020 - crash (3+00:32) kbrazil tty1 Fri Jul 31 13:55:56 2020 - crash (3+19:34) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Fri Jul 31 13:55:35 2020 - Tue Jan 5 14:29:36 2021 (158+01:34) kbrazil pts/0 kbrazil-mac.attlocal.net Thu Jul 30 08:34:03 2020 - crash (1+05:21) kbrazil tty1 Thu Jul 30 08:31:17 2020 - crash (1+05:24) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Thu Jul 30 08:31:03 2020 - Tue Jan 5 14:29:36 2021 (159+06:58) kbrazil pts/0 kbrazil-mac.attlocal.net Tue Jul 28 19:23:39 2020 - crash (1+13:07) kbrazil tty1 Tue Jul 28 19:23:23 2020 - crash (1+13:07) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Tue Jul 28 19:22:40 2020 - Tue Jan 5 14:29:36 2021 (160+20:06) kbrazil pts/0 kbrazil-mac.attlocal.net Tue Jul 28 16:27:59 2020 - crash (02:54) kbrazil tty1 Tue Jul 28 16:27:26 2020 - crash (02:55) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Tue Jul 28 13:22:23 2020 - Tue Jan 5 14:29:36 2021 (161+02:07) kbrazil pts/0 kbrazil-mac.attlocal.net Tue Jul 28 00:13:44 2020 - crash (13:08) kbrazil pts/0 kbrazil-mac.attlocal.net Mon Jul 27 20:23:44 2020 - Tue Jul 28 00:13:35 2020 (03:49) kbrazil tty1 Mon Jul 27 20:23:17 2020 - crash (16:59) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Mon Jul 27 20:04:44 2020 - Tue Jan 5 14:29:36 2021 (161+19:24) kbrazil pts/0 kbrazil-mac.attlocal.net Tue Jul 21 09:15:29 2020 - crash (6+10:49) kbrazil tty1 Tue Jul 21 09:15:07 2020 - crash (6+10:49) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Tue Jul 21 09:14:38 2020 - Tue Jan 5 14:29:36 2021 (168+06:14) kbrazil pts/1 kbrazil-mac.attlocal.net Fri Jul 17 19:12:43 2020 - Fri Jul 17 19:13:04 2020 (00:00) kbrazil pts/0 192.168.71.1 Fri Jul 17 15:49:03 2020 - crash (3+17:25) kbrazil tty1 Fri Jul 17 15:48:35 2020 - crash (3+17:26) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Fri Jul 17 15:48:11 2020 - Tue Jan 5 14:29:36 2021 (171+23:41) kbrazil pts/0 kbrazil-mac.attlocal.net Fri Jul 17 01:52:05 2020 - crash (13:56) kbrazil pts/1 192.168.71.1 Thu Jul 16 14:48:42 2020 - crash (1+00:59) kbrazil pts/0 192.168.71.1 Thu Jul 16 14:10:31 2020 - Thu Jul 16 16:26:07 2020 (02:15) kbrazil tty1 Thu Jul 16 14:09:55 2020 - crash (1+01:38) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Thu Jul 16 08:35:02 2020 - Tue Jan 5 14:29:36 2021 (173+06:54) kbrazil ttyS0 Wed Jul 8 13:44:04 2020 - crash (7+18:50) kbrazil tty1 Wed Jul 8 13:12:29 2020 - crash (7+19:22) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Wed Jul 8 11:27:06 2020 - Tue Jan 5 14:29:36 2021 (181+04:02) kbrazil ttyS0 Fri Jun 26 11:53:28 2020 - crash (11+23:33) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Fri Jun 26 11:52:15 2020 - Tue Jan 5 14:29:36 2021 (193+03:37) kbrazil ttyS0 Tue Jun 23 15:23:50 2020 - Tue Jun 23 15:27:26 2020 (00:03) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Tue Jun 23 15:23:25 2020 - Tue Jun 23 15:27:28 2020 (00:04) kbrazil pts/0 192.168.71.1 Fri Jun 19 10:47:07 2020 - crash (4+04:36) kbrazil tty1 Fri Jun 19 10:46:46 2020 - crash (4+04:36) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Fri Jun 19 10:29:25 2020 - Tue Jun 23 15:27:28 2020 (4+04:58) kbrazil pts/0 192.168.71.1 Mon Jun 8 10:30:52 2020 - crash (10+23:58) kbrazil tty1 Mon Jun 8 10:30:29 2020 - crash (10+23:58) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Mon Jun 8 10:30:06 2020 - Tue Jun 23 15:27:28 2020 (15+04:57) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Tue Jun 2 12:05:38 2020 - Tue Jun 23 15:27:28 2020 (21+03:21) kbrazil pts/0 192.168.71.1 Tue Jun 2 08:38:47 2020 - crash (03:26) kbrazil tty1 Tue Jun 2 08:38:36 2020 - crash (03:27) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Tue Jun 2 06:13:40 2020 - Tue Jun 23 15:27:28 2020 (21+09:13) kbrazil pts/0 192.168.71.1 Sun May 24 16:10:42 2020 - Sun May 24 17:18:58 2020 (01:08) kbrazil tty1 Sun May 24 15:34:27 2020 - crash (8+14:39) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Sun May 24 15:34:01 2020 - Tue Jun 23 15:27:28 2020 (29+23:53) kbrazil pts/1 192.168.71.1 Fri May 22 13:39:48 2020 - crash (2+01:54) kbrazil pts/0 192.168.71.1 Fri May 22 13:11:05 2020 - crash (2+02:22) kbrazil tty1 Fri May 22 13:10:36 2020 - crash (2+02:23) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Fri May 22 12:49:57 2020 - Tue Jun 23 15:27:28 2020 (32+02:37) kbrazil pts/0 192.168.71.1 Fri May 22 08:44:51 2020 - crash (04:05) kbrazil tty1 Fri May 22 08:44:09 2020 - crash (04:05) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Fri May 22 08:43:50 2020 - Tue Jun 23 15:27:28 2020 (32+06:43) kbrazil tty1 Thu May 14 16:39:13 2020 - crash (7+16:04) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Thu May 14 16:39:00 2020 - Tue Jun 23 15:27:28 2020 (39+22:48) kbrazil pts/0 192.168.71.1 Wed May 13 10:23:33 2020 - crash (1+06:15) kbrazil tty1 Wed May 13 10:22:38 2020 - crash (1+06:16) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Wed May 13 09:51:51 2020 - Tue Jun 23 15:27:28 2020 (41+05:35) kbrazil pts/1 192.168.71.1 Wed Apr 15 13:00:16 2020 - crash (27+20:51) kbrazil pts/0 192.168.71.1 Wed Apr 15 12:38:34 2020 - Wed Apr 15 13:01:29 2020 (00:22) kbrazil tty1 Wed Apr 15 12:28:46 2020 - Wed Apr 15 20:44:22 2020 (08:15) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Wed Apr 15 04:02:22 2020 - Tue Jun 23 15:27:28 2020 (69+11:25) kbrazil ttyS0 Tue Apr 14 16:02:37 2020 - crash (11:59) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Tue Apr 14 16:02:17 2020 - Tue Jun 23 15:27:28 2020 (69+23:25) kbrazil ttyS0 Tue Apr 14 08:44:45 2020 - Tue Apr 14 10:00:46 2020 (01:16) kbrazil ttyS0 Tue Apr 14 06:57:27 2020 - Tue Apr 14 08:44:39 2020 (01:47) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Tue Apr 14 06:56:01 2020 - Tue Jun 23 15:27:28 2020 (70+08:31) kbrazil tty1 Tue Apr 7 17:33:04 2020 - crash (6+13:22) kbrazil tty1 Mon Apr 6 21:22:49 2020 - Mon Apr 6 22:42:06 2020 (01:19) kbrazil tty1 Mon Apr 6 19:43:25 2020 - Mon Apr 6 19:45:24 2020 (00:01) kbrazil ttyS0 Sat Apr 4 17:31:48 2020 - crash (9+13:24) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Sat Apr 4 17:17:00 2020 - Tue Jun 23 15:27:28 2020 (79+22:10) kbrazil ttyS0 Sun Mar 29 12:42:56 2020 - crash (6+04:34) kbrazil ttyS0 Tue Mar 24 11:21:56 2020 - Sun Mar 29 12:42:50 2020 (5+01:20) kbrazil ttyS0 Tue Mar 24 11:18:00 2020 - Tue Mar 24 11:21:51 2020 (00:03) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Tue Mar 24 10:57:02 2020 - Tue Jun 23 15:27:28 2020 (91+04:30) kbrazil ttyS0 Tue Mar 17 06:56:55 2020 - crash (7+04:00) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Tue Mar 17 05:12:10 2020 - Tue Jun 23 15:27:28 2020 (98+10:15) kbrazil ttyS0 Thu Mar 12 10:12:42 2020 - crash (4+18:59) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Thu Mar 12 09:22:03 2020 - Tue Jun 23 15:27:28 2020 (103+06:05) kbrazil ttyS0 Wed Mar 11 13:29:24 2020 - crash (19:52) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Wed Mar 11 12:19:59 2020 - Tue Jun 23 15:27:28 2020 (104+03:07) kbrazil ttyS0 Tue Mar 10 17:53:11 2020 - crash (18:26) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Tue Mar 10 17:52:57 2020 - Tue Jun 23 15:27:28 2020 (104+21:34) kbrazil ttyS0 Tue Mar 10 13:09:01 2020 - crash (04:43) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Tue Mar 10 13:08:45 2020 - Tue Jun 23 15:27:28 2020 (105+02:18) kbrazil ttyS0 Sat Mar 7 18:13:19 2020 - crash (2+17:55) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Sat Mar 7 18:13:04 2020 - Tue Jun 23 15:27:28 2020 (107+20:14) kbrazil ttyS0 Thu Mar 5 14:48:23 2020 - crash (2+03:24) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Thu Mar 5 03:02:06 2020 - Tue Jun 23 15:27:28 2020 (110+11:25) kbrazil ttyS0 Mon Mar 2 19:53:22 2020 - crash (2+07:08) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Mon Mar 2 19:53:07 2020 - Tue Jun 23 15:27:28 2020 (112+18:34) kbrazil pts/0 192.168.71.1 Sat Feb 29 18:43:55 2020 - crash (2+01:09) kbrazil pts/1 192.168.71.1 Sat Feb 29 18:08:17 2020 - Sat Feb 29 18:28:47 2020 (00:20) kbrazil pts/0 192.168.71.1 Sat Feb 29 15:16:16 2020 - Sat Feb 29 18:42:49 2020 (03:26) kbrazil ttyS0 Sat Feb 29 12:14:10 2020 - crash (2+07:38) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Sat Feb 29 12:13:44 2020 - Tue Jun 23 15:27:28 2020 (115+02:13) kbrazil ttyS0 Fri Feb 28 13:49:56 2020 - crash (22:23) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Fri Feb 28 12:56:05 2020 - Tue Jun 23 15:27:28 2020 (116+01:31) kbrazil ttyS0 Thu Feb 27 16:01:25 2020 - crash (20:54) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Thu Feb 27 15:51:42 2020 - Tue Jun 23 15:27:28 2020 (116+22:35) kbrazil ttyS0 Thu Feb 27 10:50:36 2020 - crash (05:01) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Wed Feb 26 20:05:10 2020 - Tue Jun 23 15:27:28 2020 (117+18:22) kbrazil ttyS0 Thu Feb 20 14:42:01 2020 - crash (6+05:23) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Thu Feb 20 14:41:39 2020 - Tue Jun 23 15:27:28 2020 (123+23:45) kbrazil ttyS0 Mon Feb 17 17:48:58 2020 - crash (2+20:52) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Mon Feb 17 17:48:37 2020 - Tue Jun 23 15:27:28 2020 (126+20:38) kbrazil ttyS0 Thu Feb 13 16:44:51 2020 - crash (4+01:03) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Thu Feb 13 16:44:31 2020 - Tue Jun 23 15:27:28 2020 (130+21:42) kbrazil ttyS0 Wed Feb 5 14:23:46 2020 - crash (8+02:20) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Wed Feb 5 11:43:15 2020 - Tue Jun 23 15:27:28 2020 (139+02:44) kbrazil ttyS0 Tue Feb 4 14:28:14 2020 - crash (21:15) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Tue Feb 4 01:28:02 2020 - Tue Jun 23 15:27:28 2020 (140+12:59) kbrazil ttyS0 Mon Jan 13 17:28:13 2020 - crash (21+07:59) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Mon Jan 13 16:16:04 2020 - Tue Jun 23 15:27:28 2020 (161+22:11) kbrazil ttyS0 Mon Dec 16 11:15:00 2019 - crash (28+05:01) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Mon Dec 16 11:14:30 2019 - Tue Jun 23 15:27:28 2020 (190+03:12) kbrazil ttyS0 Wed Dec 4 21:41:25 2019 - crash (11+13:33) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Wed Dec 4 21:40:48 2019 - Tue Jun 23 15:27:28 2020 (201+16:46) kbrazil pts/1 Sat Nov 16 14:40:36 2019 - Sat Nov 16 14:40:41 2019 (00:00) kbrazil pts/1 Sat Nov 16 14:39:29 2019 - Sat Nov 16 14:39:42 2019 (00:00) kbrazil pts/0 localhost Tue Nov 12 07:19:39 2019 - crash (22+14:21) kbrazil ttyS0 Tue Nov 12 07:18:40 2019 - crash (22+14:22) kbrazil pts/0 localhost Sun Nov 10 08:21:36 2019 - Mon Nov 11 15:22:36 2019 (1+07:01) kbrazil ttyS0 Sat Nov 9 10:34:48 2019 - Tue Nov 12 07:16:59 2019 (2+20:42) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Sat Nov 9 10:34:26 2019 - Tue Jun 23 15:27:28 2020 (227+03:53) kbrazil tty1 Fri Nov 8 07:49:24 2019 - crash (1+02:45) kbrazil pts/0 192.168.71.1 Fri Nov 8 06:29:41 2019 - crash (1+04:04) kbrazil ttyS0 Fri Nov 8 06:24:27 2019 - crash (1+04:09) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Fri Nov 8 06:14:17 2019 - Tue Jun 23 15:27:28 2020 (228+08:13) kbrazil tty1 Sun Nov 3 12:20:05 2019 - crash (4+17:54) kbrazil ttyS0 Sun Nov 3 11:04:48 2019 - Sun Nov 3 11:05:50 2019 (00:01) kbrazil pts/0 192.168.71.1 Sat Nov 2 19:26:52 2019 - crash (5+11:47) kbrazil ttyS0 Fri Nov 1 15:14:12 2019 - Sun Nov 3 11:03:55 2019 (1+20:49) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Fri Nov 1 15:13:19 2019 - Tue Jun 23 15:27:28 2020 (235+00:14) kbrazil ttyS0 Fri Nov 1 11:16:36 2019 - Fri Nov 1 11:36:43 2019 (00:20) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Fri Nov 1 06:00:15 2019 - Fri Nov 1 11:36:44 2019 (05:36) kbrazil ttyS0 Tue Oct 29 18:17:00 2019 - crash (2+11:43) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Tue Oct 29 18:16:45 2019 - Fri Nov 1 11:36:44 2019 (2+17:19) kbrazil pts/0 192.168.71.1 Sat Oct 26 09:53:36 2019 - Sat Oct 26 15:13:20 2019 (05:19) kbrazil ttyS0 Fri Oct 25 18:22:10 2019 - crash (3+23:54) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Fri Oct 25 18:21:45 2019 - Fri Nov 1 11:36:44 2019 (6+17:14) kbrazil ttyS0 Fri Oct 25 17:14:54 2019 - Fri Oct 25 18:21:32 2019 (01:06) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Fri Oct 25 17:13:49 2019 - Fri Nov 1 11:36:44 2019 (6+18:22) kbrazil ttyS0 Fri Oct 25 15:43:55 2019 - Fri Oct 25 17:13:43 2019 (01:29) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Fri Oct 25 13:29:01 2019 - Fri Oct 25 17:13:45 2019 (03:44) kbrazil ttyS0 Mon Oct 21 13:19:30 2019 - Wed Oct 23 19:22:56 2019 (2+06:03) reboot system boot 3.10.0-1062.1.2.el7.x86_64 Mon Oct 21 13:17:47 2019 - Wed Oct 23 19:22:58 2019 (2+06:05) kbrazil ttyS0 Wed Oct 16 03:23:21 2019 - crash (5+09:54) kbrazil ttyS0 Tue Oct 15 16:49:02 2019 - Wed Oct 16 03:23:15 2019 (10:34) kbrazil ttyS0 Tue Oct 15 10:39:44 2019 - Tue Oct 15 16:48:54 2019 (06:09) reboot system boot 3.10.0-957.27.2.el7.x86_64 Tue Oct 15 10:39:10 2019 - Wed Oct 23 19:22:58 2019 (8+08:43) kbrazil ttyS0 Thu Aug 15 16:05:30 2019 - Thu Aug 15 16:05:50 2019 (00:00) reboot system boot 3.10.0-957.27.2.el7.x86_64 Thu Aug 15 16:05:10 2019 - Thu Aug 15 16:05:52 2019 (00:00) reboot system boot 3.10.0-957.27.2.el7.x86_64 Thu Aug 15 16:00:45 2019 - Thu Aug 15 16:05:52 2019 (00:05) kbrazil ttyS0 Thu Aug 15 14:25:00 2019 - crash (01:35) reboot system boot 3.10.0-957.27.2.el7.x86_64 Thu Aug 15 14:24:43 2019 - Thu Aug 15 16:05:52 2019 (01:41) kbrazil ttyS0 Thu Aug 15 11:58:46 2019 - crash (02:25) reboot system boot 3.10.0-957.el7.x86_64 Thu Aug 15 11:58:06 2019 - Thu Aug 15 16:05:52 2019 (04:07) kbrazil ttyS0 Thu Aug 15 11:57:28 2019 - Thu Aug 15 11:57:40 2019 (00:00) reboot system boot 3.10.0-957.el7.x86_64 Thu Aug 15 11:57:07 2019 - Thu Aug 15 16:05:52 2019 (04:08) kbrazil pts/0 192.168.71.1 Thu Aug 15 10:58:29 2019 - Thu Aug 15 11:56:42 2019 (00:58) root tty1 Thu Aug 15 10:57:26 2019 - Thu Aug 15 11:56:42 2019 (00:59) reboot system boot 3.10.0-957.el7.x86_64 Thu Aug 15 10:57:06 2019 - Thu Aug 15 11:56:44 2019 (00:59) reboot system boot 3.10.0-1127.19.1 Tue Dec 29 08:53:03 2020 - Wed Jan 6 09:28:15 2021 (8+00:35) user1234 pts/0 :0 Tue Dec 29 13:50:50 2020 - crash (-4:-57) user1234 :0 :0 Tue Dec 29 13:49:58 2020 - crash (-4:-56) user1234 pts/1 :pts/0:S.0 Mon Dec 28 17:24:33 2020 - Mon Dec 28 17:24:46 2020 (00:00) user1234 pts/0 :0 Mon Dec 28 17:24:10 2020 - Mon Dec 28 17:25:01 2020 (00:00) user1234 pts/2 fe80::fd8:7309:4 Mon Dec 28 12:43:33 2020 - Mon Dec 28 13:14:22 2020 (00:30) wtmp begins Thu Aug 15 10:57:06 2019 jc-1.17.3/tests/fixtures/centos-7.7/last.json000066400000000000000000000212461415226333200206620ustar00rootroot00000000000000[{"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Fri Feb 28 13:49", "logout": "still logged in"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Fri Feb 28 12:56", "logout": "14:52", "duration": "01:56"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Feb 27 16:01", "logout": "crash", "duration": "20:54"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Thu Feb 27 15:51", "logout": "14:52", "duration": "23:01"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Feb 27 10:50", "logout": "crash", "duration": "05:01"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Wed Feb 26 20:05", "logout": "14:52", "duration": "42:47"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Feb 20 14:42", "logout": "crash", "duration": "149:23"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Thu Feb 20 14:41", "logout": "14:52", "duration": "192:11"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Mon Feb 17 17:48", "logout": "crash", "duration": "68:52"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Mon Feb 17 17:48", "logout": "14:52", "duration": "261:04"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Feb 13 16:44", "logout": "crash", "duration": "97:03"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Thu Feb 13 16:44", "logout": "14:52", "duration": "358:08"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Wed Feb 5 14:23", "logout": "crash", "duration": "194:20"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Wed Feb 5 11:43", "logout": "14:52", "duration": "555:09"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Tue Feb 4 14:28", "logout": "crash", "duration": "21:15"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Tue Feb 4 01:28", "logout": "14:52", "duration": "589:24"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Mon Jan 13 17:28", "logout": "crash", "duration": "511:59"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Mon Jan 13 16:16", "logout": "14:52", "duration": "1102:36"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Mon Dec 16 11:15", "logout": "crash", "duration": "677:01"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Mon Dec 16 11:14", "logout": "14:52", "duration": "1779:38"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Wed Dec 4 21:41", "logout": "crash", "duration": "277:33"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Wed Dec 4 21:40", "logout": "14:52", "duration": "2057:12"}, {"user": "kbrazil", "tty": "pts/1", "hostname": null, "login": "Sat Nov 16 14:40", "logout": "14:40", "duration": "00:00"}, {"user": "kbrazil", "tty": "pts/1", "hostname": null, "login": "Sat Nov 16 14:39", "logout": "14:39", "duration": "00:00"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "localhost", "login": "Tue Nov 12 07:19", "logout": "crash", "duration": "542:21"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Tue Nov 12 07:18", "logout": "crash", "duration": "542:22"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "localhost", "login": "Sun Nov 10 08:21", "logout": "15:22", "duration": "31:01"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Sat Nov 9 10:34", "logout": "07:16", "duration": "68:42"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Sat Nov 9 10:34", "logout": "14:52", "duration": "2668:18"}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Fri Nov 8 07:49", "logout": "crash", "duration": "26:45"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Fri Nov 8 06:29", "logout": "crash", "duration": "28:04"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Fri Nov 8 06:24", "logout": "crash", "duration": "28:09"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Fri Nov 8 06:14", "logout": "14:52", "duration": "2696:38"}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Sun Nov 3 12:20", "logout": "crash", "duration": "113:54"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Sun Nov 3 11:04", "logout": "11:05", "duration": "00:01"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Sat Nov 2 19:26", "logout": "crash", "duration": "131:47"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Fri Nov 1 15:14", "logout": "11:03", "duration": "44:49"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Fri Nov 1 15:13", "logout": "14:52", "duration": "2856:39"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Fri Nov 1 11:16", "logout": "11:36", "duration": "00:20"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Fri Nov 1 06:00", "logout": "11:36", "duration": "05:36"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Tue Oct 29 18:17", "logout": "crash", "duration": "59:43"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Tue Oct 29 18:16", "logout": "11:36", "duration": "65:19"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Sat Oct 26 09:53", "logout": "15:13", "duration": "05:19"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Fri Oct 25 18:22", "logout": "crash", "duration": "95:54"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Fri Oct 25 18:21", "logout": "11:36", "duration": "161:14"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Fri Oct 25 17:14", "logout": "18:21", "duration": "01:06"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Fri Oct 25 17:13", "logout": "11:36", "duration": "162:22"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Fri Oct 25 15:43", "logout": "17:13", "duration": "01:29"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Fri Oct 25 13:29", "logout": "17:13", "duration": "03:44"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Mon Oct 21 13:19", "logout": "19:22", "duration": "54:03"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-1062.1.2.", "login": "Mon Oct 21 13:17", "logout": "19:22", "duration": "54:05"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Wed Oct 16 03:23", "logout": "crash", "duration": "129:54"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Tue Oct 15 16:49", "logout": "03:23", "duration": "10:34"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Tue Oct 15 10:39", "logout": "16:48", "duration": "06:09"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-957.27.2.", "login": "Tue Oct 15 10:39", "logout": "19:22", "duration": "200:43"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Aug 15 16:05", "logout": "16:05", "duration": "00:00"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-957.27.2.", "login": "Thu Aug 15 16:05", "logout": "16:05", "duration": "00:00"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-957.27.2.", "login": "Thu Aug 15 16:00", "logout": "16:05", "duration": "00:05"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Aug 15 14:25", "logout": "crash", "duration": "01:35"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-957.27.2.", "login": "Thu Aug 15 14:24", "logout": "16:05", "duration": "01:41"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Aug 15 11:58", "logout": "crash", "duration": "02:25"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-957.el7.x", "login": "Thu Aug 15 11:58", "logout": "16:05", "duration": "04:07"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Aug 15 11:57", "logout": "11:57", "duration": "00:00"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-957.el7.x", "login": "Thu Aug 15 11:57", "logout": "16:05", "duration": "04:08"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Thu Aug 15 10:58", "logout": "11:56", "duration": "00:58"}, {"user": "root", "tty": "tty1", "hostname": null, "login": "Thu Aug 15 10:57", "logout": "11:56", "duration": "00:59"}, {"user": "reboot", "tty": "system boot", "hostname": "3.10.0-957.el7.x", "login": "Thu Aug 15 10:57", "logout": "11:56", "duration": "00:59"}] jc-1.17.3/tests/fixtures/centos-7.7/last.out000066400000000000000000000121151415226333200205130ustar00rootroot00000000000000kbrazil ttyS0 Fri Feb 28 13:49 still logged in reboot system boot 3.10.0-1062.1.2. Fri Feb 28 12:56 - 14:52 (01:56) kbrazil ttyS0 Thu Feb 27 16:01 - crash (20:54) reboot system boot 3.10.0-1062.1.2. Thu Feb 27 15:51 - 14:52 (23:01) kbrazil ttyS0 Thu Feb 27 10:50 - crash (05:01) reboot system boot 3.10.0-1062.1.2. Wed Feb 26 20:05 - 14:52 (1+18:47) kbrazil ttyS0 Thu Feb 20 14:42 - crash (6+05:23) reboot system boot 3.10.0-1062.1.2. Thu Feb 20 14:41 - 14:52 (8+00:11) kbrazil ttyS0 Mon Feb 17 17:48 - crash (2+20:52) reboot system boot 3.10.0-1062.1.2. Mon Feb 17 17:48 - 14:52 (10+21:04) kbrazil ttyS0 Thu Feb 13 16:44 - crash (4+01:03) reboot system boot 3.10.0-1062.1.2. Thu Feb 13 16:44 - 14:52 (14+22:08) kbrazil ttyS0 Wed Feb 5 14:23 - crash (8+02:20) reboot system boot 3.10.0-1062.1.2. Wed Feb 5 11:43 - 14:52 (23+03:09) kbrazil ttyS0 Tue Feb 4 14:28 - crash (21:15) reboot system boot 3.10.0-1062.1.2. Tue Feb 4 01:28 - 14:52 (24+13:24) kbrazil ttyS0 Mon Jan 13 17:28 - crash (21+07:59) reboot system boot 3.10.0-1062.1.2. Mon Jan 13 16:16 - 14:52 (45+22:36) kbrazil ttyS0 Mon Dec 16 11:15 - crash (28+05:01) reboot system boot 3.10.0-1062.1.2. Mon Dec 16 11:14 - 14:52 (74+03:38) kbrazil ttyS0 Wed Dec 4 21:41 - crash (11+13:33) reboot system boot 3.10.0-1062.1.2. Wed Dec 4 21:40 - 14:52 (85+17:12) kbrazil pts/1 Sat Nov 16 14:40 - 14:40 (00:00) kbrazil pts/1 Sat Nov 16 14:39 - 14:39 (00:00) kbrazil pts/0 localhost Tue Nov 12 07:19 - crash (22+14:21) kbrazil ttyS0 Tue Nov 12 07:18 - crash (22+14:22) kbrazil pts/0 localhost Sun Nov 10 08:21 - 15:22 (1+07:01) kbrazil ttyS0 Sat Nov 9 10:34 - 07:16 (2+20:42) reboot system boot 3.10.0-1062.1.2. Sat Nov 9 10:34 - 14:52 (111+04:18) kbrazil tty1 Fri Nov 8 07:49 - crash (1+02:45) kbrazil pts/0 192.168.71.1 Fri Nov 8 06:29 - crash (1+04:04) kbrazil ttyS0 Fri Nov 8 06:24 - crash (1+04:09) reboot system boot 3.10.0-1062.1.2. Fri Nov 8 06:14 - 14:52 (112+08:38) kbrazil tty1 Sun Nov 3 12:20 - crash (4+17:54) kbrazil ttyS0 Sun Nov 3 11:04 - 11:05 (00:01) kbrazil pts/0 192.168.71.1 Sat Nov 2 19:26 - crash (5+11:47) kbrazil ttyS0 Fri Nov 1 15:14 - 11:03 (1+20:49) reboot system boot 3.10.0-1062.1.2. Fri Nov 1 15:13 - 14:52 (119+00:39) kbrazil ttyS0 Fri Nov 1 11:16 - 11:36 (00:20) reboot system boot 3.10.0-1062.1.2. Fri Nov 1 06:00 - 11:36 (05:36) kbrazil ttyS0 Tue Oct 29 18:17 - crash (2+11:43) reboot system boot 3.10.0-1062.1.2. Tue Oct 29 18:16 - 11:36 (2+17:19) kbrazil pts/0 192.168.71.1 Sat Oct 26 09:53 - 15:13 (05:19) kbrazil ttyS0 Fri Oct 25 18:22 - crash (3+23:54) reboot system boot 3.10.0-1062.1.2. Fri Oct 25 18:21 - 11:36 (6+17:14) kbrazil ttyS0 Fri Oct 25 17:14 - 18:21 (01:06) reboot system boot 3.10.0-1062.1.2. Fri Oct 25 17:13 - 11:36 (6+18:22) kbrazil ttyS0 Fri Oct 25 15:43 - 17:13 (01:29) reboot system boot 3.10.0-1062.1.2. Fri Oct 25 13:29 - 17:13 (03:44) kbrazil ttyS0 Mon Oct 21 13:19 - 19:22 (2+06:03) reboot system boot 3.10.0-1062.1.2. Mon Oct 21 13:17 - 19:22 (2+06:05) kbrazil ttyS0 Wed Oct 16 03:23 - crash (5+09:54) kbrazil ttyS0 Tue Oct 15 16:49 - 03:23 (10:34) kbrazil ttyS0 Tue Oct 15 10:39 - 16:48 (06:09) reboot system boot 3.10.0-957.27.2. Tue Oct 15 10:39 - 19:22 (8+08:43) kbrazil ttyS0 Thu Aug 15 16:05 - 16:05 (00:00) reboot system boot 3.10.0-957.27.2. Thu Aug 15 16:05 - 16:05 (00:00) reboot system boot 3.10.0-957.27.2. Thu Aug 15 16:00 - 16:05 (00:05) kbrazil ttyS0 Thu Aug 15 14:25 - crash (01:35) reboot system boot 3.10.0-957.27.2. Thu Aug 15 14:24 - 16:05 (01:41) kbrazil ttyS0 Thu Aug 15 11:58 - crash (02:25) reboot system boot 3.10.0-957.el7.x Thu Aug 15 11:58 - 16:05 (04:07) kbrazil ttyS0 Thu Aug 15 11:57 - 11:57 (00:00) reboot system boot 3.10.0-957.el7.x Thu Aug 15 11:57 - 16:05 (04:08) kbrazil pts/0 192.168.71.1 Thu Aug 15 10:58 - 11:56 (00:58) root tty1 Thu Aug 15 10:57 - 11:56 (00:59) reboot system boot 3.10.0-957.el7.x Thu Aug 15 10:57 - 11:56 (00:59) wtmp begins Thu Aug 15 10:57:06 2019 jc-1.17.3/tests/fixtures/centos-7.7/lastb.json000066400000000000000000000007771415226333200210320ustar00rootroot00000000000000[{"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Fri Feb 28 13:49", "logout": "13:49", "duration": "00:00"}, {"user": "kbrazil", "tty": "ssh:notty", "hostname": "192.168.71.1", "login": "Thu Feb 27 10:13", "logout": "10:13", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Feb 20 14:41", "logout": "14:41", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Mon Feb 17 17:48", "logout": "17:48", "duration": "00:00"}] jc-1.17.3/tests/fixtures/centos-7.7/lastb.out000066400000000000000000000005321415226333200206550ustar00rootroot00000000000000kbrazil ttyS0 Fri Feb 28 13:49 - 13:49 (00:00) kbrazil ssh:notty 192.168.71.1 Thu Feb 27 10:13 - 10:13 (00:00) kbrazil ttyS0 Thu Feb 20 14:41 - 14:41 (00:00) kbrazil ttyS0 Mon Feb 17 17:48 - 17:48 (00:00) btmp begins Mon Feb 17 17:48:53 2020 jc-1.17.3/tests/fixtures/centos-7.7/ls-R-newlines.json000066400000000000000000000024501415226333200223520ustar00rootroot00000000000000[{"filename": "lstest", "parent": "."}, {"filename": "systemd-private-016de60725a3426792b93fc9f120b8f0-chronyd.service-oZqq4u", "parent": "."}, {"filename": "systemd-private-a30a5a178daa4042b42dfaf5ff9e5f68-chronyd.service-a1tpxv", "parent": "."}, {"filename": "systemd-private-af69d7360f3e40cfa947358c0fb5a6f8-chronyd.service-T3MQ4j", "parent": "."}, {"filename": "tmp.CvALl2jE6u", "parent": "."}, {"filename": "tmp.e7AlxSxY5a", "parent": "."}, {"filename": "tmp.uXm9yegjwj", "parent": "."}, {"filename": "a regular filename", "parent": "./lstest"}, {"filename": "this file has", "parent": "./lstest"}, {"filename": "a combination", "parent": "./lstest"}, {"filename": "of everything", "parent": "./lstest"}, {"filename": "this file has", "parent": "./lstest"}, {"filename": "a newline inside", "parent": "./lstest"}, {"filename": "this file has", "parent": "./lstest"}, {"filename": "four contiguous newlines inside", "parent": "./lstest"}, {"filename": "this file", "parent": "./lstest"}, {"filename": "has", "parent": "./lstest"}, {"filename": "six", "parent": "./lstest"}, {"filename": "newlines", "parent": "./lstest"}, {"filename": "within", "parent": "./lstest"}, {"filename": "this file starts with four newlines", "parent": "./lstest"}, {"filename": "this file starts with one newline", "parent": "./lstest"}] jc-1.17.3/tests/fixtures/centos-7.7/ls-R-newlines.out000066400000000000000000000010361415226333200222070ustar00rootroot00000000000000.: lstest systemd-private-016de60725a3426792b93fc9f120b8f0-chronyd.service-oZqq4u systemd-private-a30a5a178daa4042b42dfaf5ff9e5f68-chronyd.service-a1tpxv systemd-private-af69d7360f3e40cfa947358c0fb5a6f8-chronyd.service-T3MQ4j tmp.CvALl2jE6u tmp.e7AlxSxY5a tmp.uXm9yegjwj ./lstest: a regular filename this file has a combination of everything this file has a newline inside this file has four contiguous newlines inside this file has six newlines within this file starts with four newlines this file starts with one newline jc-1.17.3/tests/fixtures/centos-7.7/ls-R.json000066400000000000000000011477501415226333200205460ustar00rootroot00000000000000[{"filename": "bin", "parent": "/usr"}, {"filename": "etc", "parent": "/usr"}, {"filename": "games", "parent": "/usr"}, {"filename": "include", "parent": "/usr"}, {"filename": "lib", "parent": "/usr"}, {"filename": "lib64", "parent": "/usr"}, {"filename": "libexec", "parent": "/usr"}, {"filename": "local", "parent": "/usr"}, {"filename": "sbin", "parent": "/usr"}, {"filename": "share", "parent": "/usr"}, {"filename": "src", "parent": "/usr"}, {"filename": "tmp", "parent": "/usr"}, {"filename": "[", "parent": "/usr/bin"}, {"filename": "a2p", "parent": "/usr/bin"}, {"filename": "addr2line", "parent": "/usr/bin"}, {"filename": "alias", "parent": "/usr/bin"}, {"filename": "apropos", "parent": "/usr/bin"}, {"filename": "ar", "parent": "/usr/bin"}, {"filename": "arch", "parent": "/usr/bin"}, {"filename": "as", "parent": "/usr/bin"}, {"filename": "aserver", "parent": "/usr/bin"}, {"filename": "audit2allow", "parent": "/usr/bin"}, {"filename": "audit2why", "parent": "/usr/bin"}, {"filename": "aulast", "parent": "/usr/bin"}, {"filename": "aulastlog", "parent": "/usr/bin"}, {"filename": "ausyscall", "parent": "/usr/bin"}, {"filename": "auvirt", "parent": "/usr/bin"}, {"filename": "awk", "parent": "/usr/bin"}, {"filename": "base64", "parent": "/usr/bin"}, {"filename": "basename", "parent": "/usr/bin"}, {"filename": "bash", "parent": "/usr/bin"}, {"filename": "bashbug", "parent": "/usr/bin"}, {"filename": "bashbug-64", "parent": "/usr/bin"}, {"filename": "bg", "parent": "/usr/bin"}, {"filename": "bond2team", "parent": "/usr/bin"}, {"filename": "bootctl", "parent": "/usr/bin"}, {"filename": "busctl", "parent": "/usr/bin"}, {"filename": "c2ph", "parent": "/usr/bin"}, {"filename": "cal", "parent": "/usr/bin"}, {"filename": "ca-legacy", "parent": "/usr/bin"}, {"filename": "captoinfo", "parent": "/usr/bin"}, {"filename": "cat", "parent": "/usr/bin"}, {"filename": "catchsegv", "parent": "/usr/bin"}, {"filename": "catman", "parent": "/usr/bin"}, {"filename": "cd", "parent": "/usr/bin"}, {"filename": "centrino-decode", "parent": "/usr/bin"}, {"filename": "certutil", "parent": "/usr/bin"}, {"filename": "c++filt", "parent": "/usr/bin"}, {"filename": "chacl", "parent": "/usr/bin"}, {"filename": "chage", "parent": "/usr/bin"}, {"filename": "chattr", "parent": "/usr/bin"}, {"filename": "chcat", "parent": "/usr/bin"}, {"filename": "chcon", "parent": "/usr/bin"}, {"filename": "checkmodule", "parent": "/usr/bin"}, {"filename": "checkpolicy", "parent": "/usr/bin"}, {"filename": "chfn", "parent": "/usr/bin"}, {"filename": "chgrp", "parent": "/usr/bin"}, {"filename": "chmem", "parent": "/usr/bin"}, {"filename": "chmod", "parent": "/usr/bin"}, {"filename": "chown", "parent": "/usr/bin"}, {"filename": "chronyc", "parent": "/usr/bin"}, {"filename": "chrt", "parent": "/usr/bin"}, {"filename": "chsh", "parent": "/usr/bin"}, {"filename": "chvt", "parent": "/usr/bin"}, {"filename": "cifsiostat", "parent": "/usr/bin"}, {"filename": "cksum", "parent": "/usr/bin"}, {"filename": "clear", "parent": "/usr/bin"}, {"filename": "cmp", "parent": "/usr/bin"}, {"filename": "cmsutil", "parent": "/usr/bin"}, {"filename": "col", "parent": "/usr/bin"}, {"filename": "colcrt", "parent": "/usr/bin"}, {"filename": "colrm", "parent": "/usr/bin"}, {"filename": "column", "parent": "/usr/bin"}, {"filename": "comm", "parent": "/usr/bin"}, {"filename": "command", "parent": "/usr/bin"}, {"filename": "container-storage-setup", "parent": "/usr/bin"}, {"filename": "coredumpctl", "parent": "/usr/bin"}, {"filename": "cp", "parent": "/usr/bin"}, {"filename": "cpio", "parent": "/usr/bin"}, {"filename": "cpupower", "parent": "/usr/bin"}, {"filename": "crlutil", "parent": "/usr/bin"}, {"filename": "crontab", "parent": "/usr/bin"}, {"filename": "csplit", "parent": "/usr/bin"}, {"filename": "csslint-0.6", "parent": "/usr/bin"}, {"filename": "curl", "parent": "/usr/bin"}, {"filename": "cut", "parent": "/usr/bin"}, {"filename": "cvtsudoers", "parent": "/usr/bin"}, {"filename": "date", "parent": "/usr/bin"}, {"filename": "db_archive", "parent": "/usr/bin"}, {"filename": "db_checkpoint", "parent": "/usr/bin"}, {"filename": "db_deadlock", "parent": "/usr/bin"}, {"filename": "db_dump", "parent": "/usr/bin"}, {"filename": "db_dump185", "parent": "/usr/bin"}, {"filename": "db_hotbackup", "parent": "/usr/bin"}, {"filename": "db_load", "parent": "/usr/bin"}, {"filename": "db_log_verify", "parent": "/usr/bin"}, {"filename": "db_printlog", "parent": "/usr/bin"}, {"filename": "db_recover", "parent": "/usr/bin"}, {"filename": "db_replicate", "parent": "/usr/bin"}, {"filename": "db_stat", "parent": "/usr/bin"}, {"filename": "db_tuner", "parent": "/usr/bin"}, {"filename": "db_upgrade", "parent": "/usr/bin"}, {"filename": "dbus-binding-tool", "parent": "/usr/bin"}, {"filename": "dbus-cleanup-sockets", "parent": "/usr/bin"}, {"filename": "dbus-daemon", "parent": "/usr/bin"}, {"filename": "dbus-monitor", "parent": "/usr/bin"}, {"filename": "dbus-run-session", "parent": "/usr/bin"}, {"filename": "dbus-send", "parent": "/usr/bin"}, {"filename": "dbus-test-tool", "parent": "/usr/bin"}, {"filename": "dbus-update-activation-environment", "parent": "/usr/bin"}, {"filename": "dbus-uuidgen", "parent": "/usr/bin"}, {"filename": "db_verify", "parent": "/usr/bin"}, {"filename": "dd", "parent": "/usr/bin"}, {"filename": "deallocvt", "parent": "/usr/bin"}, {"filename": "delv", "parent": "/usr/bin"}, {"filename": "df", "parent": "/usr/bin"}, {"filename": "dgawk", "parent": "/usr/bin"}, {"filename": "diff", "parent": "/usr/bin"}, {"filename": "diff3", "parent": "/usr/bin"}, {"filename": "dig", "parent": "/usr/bin"}, {"filename": "dir", "parent": "/usr/bin"}, {"filename": "dircolors", "parent": "/usr/bin"}, {"filename": "dirname", "parent": "/usr/bin"}, {"filename": "dmesg", "parent": "/usr/bin"}, {"filename": "dnsdomainname", "parent": "/usr/bin"}, {"filename": "docker", "parent": "/usr/bin"}, {"filename": "docker-containerd", "parent": "/usr/bin"}, {"filename": "docker-containerd-current", "parent": "/usr/bin"}, {"filename": "docker-containerd-shim", "parent": "/usr/bin"}, {"filename": "docker-containerd-shim-current", "parent": "/usr/bin"}, {"filename": "docker-ctr-current", "parent": "/usr/bin"}, {"filename": "docker-current", "parent": "/usr/bin"}, {"filename": "dockerd", "parent": "/usr/bin"}, {"filename": "dockerd-current", "parent": "/usr/bin"}, {"filename": "docker-storage-setup", "parent": "/usr/bin"}, {"filename": "domainname", "parent": "/usr/bin"}, {"filename": "dracut", "parent": "/usr/bin"}, {"filename": "du", "parent": "/usr/bin"}, {"filename": "dumpkeys", "parent": "/usr/bin"}, {"filename": "dwp", "parent": "/usr/bin"}, {"filename": "easy_install", "parent": "/usr/bin"}, {"filename": "easy_install-2.7", "parent": "/usr/bin"}, {"filename": "easy_install-3.6", "parent": "/usr/bin"}, {"filename": "echo", "parent": "/usr/bin"}, {"filename": "egrep", "parent": "/usr/bin"}, {"filename": "eject", "parent": "/usr/bin"}, {"filename": "elfedit", "parent": "/usr/bin"}, {"filename": "env", "parent": "/usr/bin"}, {"filename": "envsubst", "parent": "/usr/bin"}, {"filename": "eqn", "parent": "/usr/bin"}, {"filename": "erb", "parent": "/usr/bin"}, {"filename": "ex", "parent": "/usr/bin"}, {"filename": "expand", "parent": "/usr/bin"}, {"filename": "expr", "parent": "/usr/bin"}, {"filename": "factor", "parent": "/usr/bin"}, {"filename": "fallocate", "parent": "/usr/bin"}, {"filename": "false", "parent": "/usr/bin"}, {"filename": "fc", "parent": "/usr/bin"}, {"filename": "fg", "parent": "/usr/bin"}, {"filename": "fgconsole", "parent": "/usr/bin"}, {"filename": "fgrep", "parent": "/usr/bin"}, {"filename": "file", "parent": "/usr/bin"}, {"filename": "find", "parent": "/usr/bin"}, {"filename": "find2perl", "parent": "/usr/bin"}, {"filename": "findmnt", "parent": "/usr/bin"}, {"filename": "fipscheck", "parent": "/usr/bin"}, {"filename": "fipshmac", "parent": "/usr/bin"}, {"filename": "firewall-cmd", "parent": "/usr/bin"}, {"filename": "firewall-offline-cmd", "parent": "/usr/bin"}, {"filename": "flock", "parent": "/usr/bin"}, {"filename": "fmt", "parent": "/usr/bin"}, {"filename": "fold", "parent": "/usr/bin"}, {"filename": "free", "parent": "/usr/bin"}, {"filename": "funzip", "parent": "/usr/bin"}, {"filename": "gapplication", "parent": "/usr/bin"}, {"filename": "gawk", "parent": "/usr/bin"}, {"filename": "gdbus", "parent": "/usr/bin"}, {"filename": "gem", "parent": "/usr/bin"}, {"filename": "gencat", "parent": "/usr/bin"}, {"filename": "genl-ctrl-list", "parent": "/usr/bin"}, {"filename": "geoiplookup", "parent": "/usr/bin"}, {"filename": "geoiplookup6", "parent": "/usr/bin"}, {"filename": "geoipupdate", "parent": "/usr/bin"}, {"filename": "geqn", "parent": "/usr/bin"}, {"filename": "getconf", "parent": "/usr/bin"}, {"filename": "getent", "parent": "/usr/bin"}, {"filename": "getfacl", "parent": "/usr/bin"}, {"filename": "getkeycodes", "parent": "/usr/bin"}, {"filename": "getopt", "parent": "/usr/bin"}, {"filename": "getopts", "parent": "/usr/bin"}, {"filename": "gettext", "parent": "/usr/bin"}, {"filename": "gettext.sh", "parent": "/usr/bin"}, {"filename": "gio", "parent": "/usr/bin"}, {"filename": "gio-querymodules-64", "parent": "/usr/bin"}, {"filename": "git", "parent": "/usr/bin"}, {"filename": "git-receive-pack", "parent": "/usr/bin"}, {"filename": "git-shell", "parent": "/usr/bin"}, {"filename": "git-upload-archive", "parent": "/usr/bin"}, {"filename": "git-upload-pack", "parent": "/usr/bin"}, {"filename": "glib-compile-schemas", "parent": "/usr/bin"}, {"filename": "gmake", "parent": "/usr/bin"}, {"filename": "gneqn", "parent": "/usr/bin"}, {"filename": "gnroff", "parent": "/usr/bin"}, {"filename": "gpasswd", "parent": "/usr/bin"}, {"filename": "gpg", "parent": "/usr/bin"}, {"filename": "gpg2", "parent": "/usr/bin"}, {"filename": "gpg-agent", "parent": "/usr/bin"}, {"filename": "gpgconf", "parent": "/usr/bin"}, {"filename": "gpg-connect-agent", "parent": "/usr/bin"}, {"filename": "gpg-error", "parent": "/usr/bin"}, {"filename": "gpgparsemail", "parent": "/usr/bin"}, {"filename": "gpgsplit", "parent": "/usr/bin"}, {"filename": "gpgv", "parent": "/usr/bin"}, {"filename": "gpgv2", "parent": "/usr/bin"}, {"filename": "gpg-zip", "parent": "/usr/bin"}, {"filename": "gpic", "parent": "/usr/bin"}, {"filename": "gprof", "parent": "/usr/bin"}, {"filename": "grep", "parent": "/usr/bin"}, {"filename": "groff", "parent": "/usr/bin"}, {"filename": "grops", "parent": "/usr/bin"}, {"filename": "grotty", "parent": "/usr/bin"}, {"filename": "groups", "parent": "/usr/bin"}, {"filename": "grub2-editenv", "parent": "/usr/bin"}, {"filename": "grub2-file", "parent": "/usr/bin"}, {"filename": "grub2-fstest", "parent": "/usr/bin"}, {"filename": "grub2-glue-efi", "parent": "/usr/bin"}, {"filename": "grub2-kbdcomp", "parent": "/usr/bin"}, {"filename": "grub2-menulst2cfg", "parent": "/usr/bin"}, {"filename": "grub2-mkfont", "parent": "/usr/bin"}, {"filename": "grub2-mkimage", "parent": "/usr/bin"}, {"filename": "grub2-mklayout", "parent": "/usr/bin"}, {"filename": "grub2-mknetdir", "parent": "/usr/bin"}, {"filename": "grub2-mkpasswd-pbkdf2", "parent": "/usr/bin"}, {"filename": "grub2-mkrelpath", "parent": "/usr/bin"}, {"filename": "grub2-mkrescue", "parent": "/usr/bin"}, {"filename": "grub2-mkstandalone", "parent": "/usr/bin"}, {"filename": "grub2-render-label", "parent": "/usr/bin"}, {"filename": "grub2-script-check", "parent": "/usr/bin"}, {"filename": "grub2-syslinux2cfg", "parent": "/usr/bin"}, {"filename": "gsettings", "parent": "/usr/bin"}, {"filename": "gsoelim", "parent": "/usr/bin"}, {"filename": "gtar", "parent": "/usr/bin"}, {"filename": "gtbl", "parent": "/usr/bin"}, {"filename": "gtroff", "parent": "/usr/bin"}, {"filename": "gunzip", "parent": "/usr/bin"}, {"filename": "gzexe", "parent": "/usr/bin"}, {"filename": "gzip", "parent": "/usr/bin"}, {"filename": "h2ph", "parent": "/usr/bin"}, {"filename": "hdsploader", "parent": "/usr/bin"}, {"filename": "head", "parent": "/usr/bin"}, {"filename": "hexdump", "parent": "/usr/bin"}, {"filename": "host", "parent": "/usr/bin"}, {"filename": "hostid", "parent": "/usr/bin"}, {"filename": "hostname", "parent": "/usr/bin"}, {"filename": "hostnamectl", "parent": "/usr/bin"}, {"filename": "i386", "parent": "/usr/bin"}, {"filename": "iconv", "parent": "/usr/bin"}, {"filename": "id", "parent": "/usr/bin"}, {"filename": "idiag-socket-details", "parent": "/usr/bin"}, {"filename": "idn", "parent": "/usr/bin"}, {"filename": "igawk", "parent": "/usr/bin"}, {"filename": "info", "parent": "/usr/bin"}, {"filename": "infocmp", "parent": "/usr/bin"}, {"filename": "infokey", "parent": "/usr/bin"}, {"filename": "infotocap", "parent": "/usr/bin"}, {"filename": "install", "parent": "/usr/bin"}, {"filename": "ionice", "parent": "/usr/bin"}, {"filename": "iostat", "parent": "/usr/bin"}, {"filename": "ipcalc", "parent": "/usr/bin"}, {"filename": "ipcmk", "parent": "/usr/bin"}, {"filename": "ipcrm", "parent": "/usr/bin"}, {"filename": "ipcs", "parent": "/usr/bin"}, {"filename": "iptables-xml", "parent": "/usr/bin"}, {"filename": "irb", "parent": "/usr/bin"}, {"filename": "isosize", "parent": "/usr/bin"}, {"filename": "jobs", "parent": "/usr/bin"}, {"filename": "join", "parent": "/usr/bin"}, {"filename": "journalctl", "parent": "/usr/bin"}, {"filename": "json_reformat", "parent": "/usr/bin"}, {"filename": "json_verify", "parent": "/usr/bin"}, {"filename": "kbdinfo", "parent": "/usr/bin"}, {"filename": "kbd_mode", "parent": "/usr/bin"}, {"filename": "kbdrate", "parent": "/usr/bin"}, {"filename": "kdumpctl", "parent": "/usr/bin"}, {"filename": "kernel-install", "parent": "/usr/bin"}, {"filename": "kill", "parent": "/usr/bin"}, {"filename": "kmod", "parent": "/usr/bin"}, {"filename": "last", "parent": "/usr/bin"}, {"filename": "lastb", "parent": "/usr/bin"}, {"filename": "lastlog", "parent": "/usr/bin"}, {"filename": "lchfn", "parent": "/usr/bin"}, {"filename": "lchsh", "parent": "/usr/bin"}, {"filename": "ld", "parent": "/usr/bin"}, {"filename": "ld.bfd", "parent": "/usr/bin"}, {"filename": "ldd", "parent": "/usr/bin"}, {"filename": "ld.gold", "parent": "/usr/bin"}, {"filename": "less", "parent": "/usr/bin"}, {"filename": "lessecho", "parent": "/usr/bin"}, {"filename": "lesskey", "parent": "/usr/bin"}, {"filename": "lesspipe.sh", "parent": "/usr/bin"}, {"filename": "lexgrog", "parent": "/usr/bin"}, {"filename": "link", "parent": "/usr/bin"}, {"filename": "linux32", "parent": "/usr/bin"}, {"filename": "linux64", "parent": "/usr/bin"}, {"filename": "linux-boot-prober", "parent": "/usr/bin"}, {"filename": "ln", "parent": "/usr/bin"}, {"filename": "loadkeys", "parent": "/usr/bin"}, {"filename": "loadunimap", "parent": "/usr/bin"}, {"filename": "locale", "parent": "/usr/bin"}, {"filename": "localectl", "parent": "/usr/bin"}, {"filename": "localedef", "parent": "/usr/bin"}, {"filename": "logger", "parent": "/usr/bin"}, {"filename": "login", "parent": "/usr/bin"}, {"filename": "loginctl", "parent": "/usr/bin"}, {"filename": "logname", "parent": "/usr/bin"}, {"filename": "look", "parent": "/usr/bin"}, {"filename": "ls", "parent": "/usr/bin"}, {"filename": "lsattr", "parent": "/usr/bin"}, {"filename": "lsblk", "parent": "/usr/bin"}, {"filename": "lscpu", "parent": "/usr/bin"}, {"filename": "lsinitrd", "parent": "/usr/bin"}, {"filename": "lsipc", "parent": "/usr/bin"}, {"filename": "lslocks", "parent": "/usr/bin"}, {"filename": "lslogins", "parent": "/usr/bin"}, {"filename": "lsmem", "parent": "/usr/bin"}, {"filename": "lsns", "parent": "/usr/bin"}, {"filename": "lsscsi", "parent": "/usr/bin"}, {"filename": "lua", "parent": "/usr/bin"}, {"filename": "luac", "parent": "/usr/bin"}, {"filename": "lz4", "parent": "/usr/bin"}, {"filename": "lz4c", "parent": "/usr/bin"}, {"filename": "lz4cat", "parent": "/usr/bin"}, {"filename": "machinectl", "parent": "/usr/bin"}, {"filename": "mailq", "parent": "/usr/bin"}, {"filename": "mailq.postfix", "parent": "/usr/bin"}, {"filename": "make", "parent": "/usr/bin"}, {"filename": "makedb", "parent": "/usr/bin"}, {"filename": "man", "parent": "/usr/bin"}, {"filename": "mandb", "parent": "/usr/bin"}, {"filename": "manpath", "parent": "/usr/bin"}, {"filename": "mapscrn", "parent": "/usr/bin"}, {"filename": "mcookie", "parent": "/usr/bin"}, {"filename": "md5sum", "parent": "/usr/bin"}, {"filename": "mdig", "parent": "/usr/bin"}, {"filename": "mesg", "parent": "/usr/bin"}, {"filename": "mixartloader", "parent": "/usr/bin"}, {"filename": "mkdir", "parent": "/usr/bin"}, {"filename": "mkfifo", "parent": "/usr/bin"}, {"filename": "mkinitrd", "parent": "/usr/bin"}, {"filename": "mknod", "parent": "/usr/bin"}, {"filename": "mktemp", "parent": "/usr/bin"}, {"filename": "modutil", "parent": "/usr/bin"}, {"filename": "more", "parent": "/usr/bin"}, {"filename": "mount", "parent": "/usr/bin"}, {"filename": "mountpoint", "parent": "/usr/bin"}, {"filename": "mpstat", "parent": "/usr/bin"}, {"filename": "msgattrib", "parent": "/usr/bin"}, {"filename": "msgcat", "parent": "/usr/bin"}, {"filename": "msgcmp", "parent": "/usr/bin"}, {"filename": "msgcomm", "parent": "/usr/bin"}, {"filename": "msgconv", "parent": "/usr/bin"}, {"filename": "msgen", "parent": "/usr/bin"}, {"filename": "msgexec", "parent": "/usr/bin"}, {"filename": "msgfilter", "parent": "/usr/bin"}, {"filename": "msgfmt", "parent": "/usr/bin"}, {"filename": "msggrep", "parent": "/usr/bin"}, {"filename": "msghack", "parent": "/usr/bin"}, {"filename": "msginit", "parent": "/usr/bin"}, {"filename": "msgmerge", "parent": "/usr/bin"}, {"filename": "msgunfmt", "parent": "/usr/bin"}, {"filename": "msguniq", "parent": "/usr/bin"}, {"filename": "mv", "parent": "/usr/bin"}, {"filename": "namei", "parent": "/usr/bin"}, {"filename": "ndptool", "parent": "/usr/bin"}, {"filename": "neqn", "parent": "/usr/bin"}, {"filename": "netstat", "parent": "/usr/bin"}, {"filename": "newaliases", "parent": "/usr/bin"}, {"filename": "newaliases.postfix", "parent": "/usr/bin"}, {"filename": "newgidmap", "parent": "/usr/bin"}, {"filename": "newgrp", "parent": "/usr/bin"}, {"filename": "newuidmap", "parent": "/usr/bin"}, {"filename": "nf-ct-add", "parent": "/usr/bin"}, {"filename": "nf-ct-list", "parent": "/usr/bin"}, {"filename": "nf-exp-add", "parent": "/usr/bin"}, {"filename": "nf-exp-delete", "parent": "/usr/bin"}, {"filename": "nf-exp-list", "parent": "/usr/bin"}, {"filename": "nf-log", "parent": "/usr/bin"}, {"filename": "nf-monitor", "parent": "/usr/bin"}, {"filename": "nf-queue", "parent": "/usr/bin"}, {"filename": "nfsiostat-sysstat", "parent": "/usr/bin"}, {"filename": "ngettext", "parent": "/usr/bin"}, {"filename": "nice", "parent": "/usr/bin"}, {"filename": "nisdomainname", "parent": "/usr/bin"}, {"filename": "nl", "parent": "/usr/bin"}, {"filename": "nl-addr-add", "parent": "/usr/bin"}, {"filename": "nl-addr-delete", "parent": "/usr/bin"}, {"filename": "nl-addr-list", "parent": "/usr/bin"}, {"filename": "nl-class-add", "parent": "/usr/bin"}, {"filename": "nl-class-delete", "parent": "/usr/bin"}, {"filename": "nl-classid-lookup", "parent": "/usr/bin"}, {"filename": "nl-class-list", "parent": "/usr/bin"}, {"filename": "nl-cls-add", "parent": "/usr/bin"}, {"filename": "nl-cls-delete", "parent": "/usr/bin"}, {"filename": "nl-cls-list", "parent": "/usr/bin"}, {"filename": "nl-fib-lookup", "parent": "/usr/bin"}, {"filename": "nl-link-enslave", "parent": "/usr/bin"}, {"filename": "nl-link-ifindex2name", "parent": "/usr/bin"}, {"filename": "nl-link-list", "parent": "/usr/bin"}, {"filename": "nl-link-name2ifindex", "parent": "/usr/bin"}, {"filename": "nl-link-release", "parent": "/usr/bin"}, {"filename": "nl-link-set", "parent": "/usr/bin"}, {"filename": "nl-link-stats", "parent": "/usr/bin"}, {"filename": "nl-list-caches", "parent": "/usr/bin"}, {"filename": "nl-list-sockets", "parent": "/usr/bin"}, {"filename": "nl-monitor", "parent": "/usr/bin"}, {"filename": "nl-neigh-add", "parent": "/usr/bin"}, {"filename": "nl-neigh-delete", "parent": "/usr/bin"}, {"filename": "nl-neigh-list", "parent": "/usr/bin"}, {"filename": "nl-neightbl-list", "parent": "/usr/bin"}, {"filename": "nl-pktloc-lookup", "parent": "/usr/bin"}, {"filename": "nl-qdisc-add", "parent": "/usr/bin"}, {"filename": "nl-qdisc-delete", "parent": "/usr/bin"}, {"filename": "nl-qdisc-list", "parent": "/usr/bin"}, {"filename": "nl-route-add", "parent": "/usr/bin"}, {"filename": "nl-route-delete", "parent": "/usr/bin"}, {"filename": "nl-route-get", "parent": "/usr/bin"}, {"filename": "nl-route-list", "parent": "/usr/bin"}, {"filename": "nl-rule-list", "parent": "/usr/bin"}, {"filename": "nl-tctree-list", "parent": "/usr/bin"}, {"filename": "nl-util-addr", "parent": "/usr/bin"}, {"filename": "nm", "parent": "/usr/bin"}, {"filename": "nmcli", "parent": "/usr/bin"}, {"filename": "nm-online", "parent": "/usr/bin"}, {"filename": "nmtui", "parent": "/usr/bin"}, {"filename": "nmtui-connect", "parent": "/usr/bin"}, {"filename": "nmtui-edit", "parent": "/usr/bin"}, {"filename": "nmtui-hostname", "parent": "/usr/bin"}, {"filename": "nohup", "parent": "/usr/bin"}, {"filename": "nproc", "parent": "/usr/bin"}, {"filename": "nroff", "parent": "/usr/bin"}, {"filename": "nsenter", "parent": "/usr/bin"}, {"filename": "nslookup", "parent": "/usr/bin"}, {"filename": "nss-policy-check", "parent": "/usr/bin"}, {"filename": "nsupdate", "parent": "/usr/bin"}, {"filename": "numfmt", "parent": "/usr/bin"}, {"filename": "objcopy", "parent": "/usr/bin"}, {"filename": "objdump", "parent": "/usr/bin"}, {"filename": "od", "parent": "/usr/bin"}, {"filename": "oldfind", "parent": "/usr/bin"}, {"filename": "open", "parent": "/usr/bin"}, {"filename": "openssl", "parent": "/usr/bin"}, {"filename": "openvt", "parent": "/usr/bin"}, {"filename": "os-prober", "parent": "/usr/bin"}, {"filename": "p11-kit", "parent": "/usr/bin"}, {"filename": "passwd", "parent": "/usr/bin"}, {"filename": "paste", "parent": "/usr/bin"}, {"filename": "pathchk", "parent": "/usr/bin"}, {"filename": "pchrt", "parent": "/usr/bin"}, {"filename": "perl", "parent": "/usr/bin"}, {"filename": "perl5.16.3", "parent": "/usr/bin"}, {"filename": "perlbug", "parent": "/usr/bin"}, {"filename": "perldoc", "parent": "/usr/bin"}, {"filename": "perlthanks", "parent": "/usr/bin"}, {"filename": "pflags", "parent": "/usr/bin"}, {"filename": "pgawk", "parent": "/usr/bin"}, {"filename": "pgrep", "parent": "/usr/bin"}, {"filename": "pic", "parent": "/usr/bin"}, {"filename": "piconv", "parent": "/usr/bin"}, {"filename": "pidstat", "parent": "/usr/bin"}, {"filename": "pinentry", "parent": "/usr/bin"}, {"filename": "pinentry-curses", "parent": "/usr/bin"}, {"filename": "ping", "parent": "/usr/bin"}, {"filename": "ping6", "parent": "/usr/bin"}, {"filename": "pinky", "parent": "/usr/bin"}, {"filename": "pip3", "parent": "/usr/bin"}, {"filename": "pip-3", "parent": "/usr/bin"}, {"filename": "pip-3.6", "parent": "/usr/bin"}, {"filename": "pip3.6", "parent": "/usr/bin"}, {"filename": "pk12util", "parent": "/usr/bin"}, {"filename": "pkaction", "parent": "/usr/bin"}, {"filename": "pkcheck", "parent": "/usr/bin"}, {"filename": "pkexec", "parent": "/usr/bin"}, {"filename": "pkg-config", "parent": "/usr/bin"}, {"filename": "pkill", "parent": "/usr/bin"}, {"filename": "pkla-admin-identities", "parent": "/usr/bin"}, {"filename": "pkla-check-authorization", "parent": "/usr/bin"}, {"filename": "pkttyagent", "parent": "/usr/bin"}, {"filename": "pl2pm", "parent": "/usr/bin"}, {"filename": "pldd", "parent": "/usr/bin"}, {"filename": "plymouth", "parent": "/usr/bin"}, {"filename": "pmap", "parent": "/usr/bin"}, {"filename": "pod2html", "parent": "/usr/bin"}, {"filename": "pod2man", "parent": "/usr/bin"}, {"filename": "pod2text", "parent": "/usr/bin"}, {"filename": "pod2usage", "parent": "/usr/bin"}, {"filename": "post-grohtml", "parent": "/usr/bin"}, {"filename": "powernow-k8-decode", "parent": "/usr/bin"}, {"filename": "pr", "parent": "/usr/bin"}, {"filename": "preconv", "parent": "/usr/bin"}, {"filename": "pre-grohtml", "parent": "/usr/bin"}, {"filename": "printenv", "parent": "/usr/bin"}, {"filename": "printf", "parent": "/usr/bin"}, {"filename": "prlimit", "parent": "/usr/bin"}, {"filename": "ps", "parent": "/usr/bin"}, {"filename": "psed", "parent": "/usr/bin"}, {"filename": "psfaddtable", "parent": "/usr/bin"}, {"filename": "psfgettable", "parent": "/usr/bin"}, {"filename": "psfstriptable", "parent": "/usr/bin"}, {"filename": "psfxtable", "parent": "/usr/bin"}, {"filename": "pstruct", "parent": "/usr/bin"}, {"filename": "ptaskset", "parent": "/usr/bin"}, {"filename": "ptx", "parent": "/usr/bin"}, {"filename": "pwd", "parent": "/usr/bin"}, {"filename": "pwdx", "parent": "/usr/bin"}, {"filename": "pwmake", "parent": "/usr/bin"}, {"filename": "pwscore", "parent": "/usr/bin"}, {"filename": "pydoc", "parent": "/usr/bin"}, {"filename": "pydoc3", "parent": "/usr/bin"}, {"filename": "pydoc3.6", "parent": "/usr/bin"}, {"filename": "python", "parent": "/usr/bin"}, {"filename": "python2", "parent": "/usr/bin"}, {"filename": "python2.7", "parent": "/usr/bin"}, {"filename": "python3", "parent": "/usr/bin"}, {"filename": "python3.6", "parent": "/usr/bin"}, {"filename": "python3.6m", "parent": "/usr/bin"}, {"filename": "pyvenv", "parent": "/usr/bin"}, {"filename": "pyvenv-3.6", "parent": "/usr/bin"}, {"filename": "ranlib", "parent": "/usr/bin"}, {"filename": "raw", "parent": "/usr/bin"}, {"filename": "rdoc", "parent": "/usr/bin"}, {"filename": "read", "parent": "/usr/bin"}, {"filename": "readelf", "parent": "/usr/bin"}, {"filename": "readlink", "parent": "/usr/bin"}, {"filename": "realpath", "parent": "/usr/bin"}, {"filename": "recode-sr-latin", "parent": "/usr/bin"}, {"filename": "rename", "parent": "/usr/bin"}, {"filename": "renice", "parent": "/usr/bin"}, {"filename": "reset", "parent": "/usr/bin"}, {"filename": "resizecons", "parent": "/usr/bin"}, {"filename": "rev", "parent": "/usr/bin"}, {"filename": "ri", "parent": "/usr/bin"}, {"filename": "rm", "parent": "/usr/bin"}, {"filename": "rmail", "parent": "/usr/bin"}, {"filename": "rmail.postfix", "parent": "/usr/bin"}, {"filename": "rmdir", "parent": "/usr/bin"}, {"filename": "rpcgen", "parent": "/usr/bin"}, {"filename": "rpm", "parent": "/usr/bin"}, {"filename": "rpm2cpio", "parent": "/usr/bin"}, {"filename": "rpmdb", "parent": "/usr/bin"}, {"filename": "rpmkeys", "parent": "/usr/bin"}, {"filename": "rpmquery", "parent": "/usr/bin"}, {"filename": "rpmverify", "parent": "/usr/bin"}, {"filename": "rsync", "parent": "/usr/bin"}, {"filename": "rsyslog-recover-qi.pl", "parent": "/usr/bin"}, {"filename": "ruby", "parent": "/usr/bin"}, {"filename": "runcon", "parent": "/usr/bin"}, {"filename": "run-parts", "parent": "/usr/bin"}, {"filename": "rvi", "parent": "/usr/bin"}, {"filename": "rview", "parent": "/usr/bin"}, {"filename": "s2p", "parent": "/usr/bin"}, {"filename": "sadf", "parent": "/usr/bin"}, {"filename": "sandbox", "parent": "/usr/bin"}, {"filename": "sar", "parent": "/usr/bin"}, {"filename": "scp", "parent": "/usr/bin"}, {"filename": "script", "parent": "/usr/bin"}, {"filename": "scriptreplay", "parent": "/usr/bin"}, {"filename": "sdiff", "parent": "/usr/bin"}, {"filename": "secon", "parent": "/usr/bin"}, {"filename": "sed", "parent": "/usr/bin"}, {"filename": "sedismod", "parent": "/usr/bin"}, {"filename": "sedispol", "parent": "/usr/bin"}, {"filename": "semodule_package", "parent": "/usr/bin"}, {"filename": "seq", "parent": "/usr/bin"}, {"filename": "setarch", "parent": "/usr/bin"}, {"filename": "setfacl", "parent": "/usr/bin"}, {"filename": "setfont", "parent": "/usr/bin"}, {"filename": "setkeycodes", "parent": "/usr/bin"}, {"filename": "setleds", "parent": "/usr/bin"}, {"filename": "setmetamode", "parent": "/usr/bin"}, {"filename": "setpriv", "parent": "/usr/bin"}, {"filename": "setsid", "parent": "/usr/bin"}, {"filename": "setterm", "parent": "/usr/bin"}, {"filename": "setup-nsssysinit", "parent": "/usr/bin"}, {"filename": "setup-nsssysinit.sh", "parent": "/usr/bin"}, {"filename": "setvtrgb", "parent": "/usr/bin"}, {"filename": "sftp", "parent": "/usr/bin"}, {"filename": "sg", "parent": "/usr/bin"}, {"filename": "sh", "parent": "/usr/bin"}, {"filename": "sha1sum", "parent": "/usr/bin"}, {"filename": "sha224sum", "parent": "/usr/bin"}, {"filename": "sha256sum", "parent": "/usr/bin"}, {"filename": "sha384sum", "parent": "/usr/bin"}, {"filename": "sha512sum", "parent": "/usr/bin"}, {"filename": "showconsolefont", "parent": "/usr/bin"}, {"filename": "showkey", "parent": "/usr/bin"}, {"filename": "shred", "parent": "/usr/bin"}, {"filename": "shuf", "parent": "/usr/bin"}, {"filename": "signver", "parent": "/usr/bin"}, {"filename": "size", "parent": "/usr/bin"}, {"filename": "skill", "parent": "/usr/bin"}, {"filename": "slabtop", "parent": "/usr/bin"}, {"filename": "sleep", "parent": "/usr/bin"}, {"filename": "slogin", "parent": "/usr/bin"}, {"filename": "snice", "parent": "/usr/bin"}, {"filename": "soelim", "parent": "/usr/bin"}, {"filename": "sort", "parent": "/usr/bin"}, {"filename": "sotruss", "parent": "/usr/bin"}, {"filename": "splain", "parent": "/usr/bin"}, {"filename": "split", "parent": "/usr/bin"}, {"filename": "sprof", "parent": "/usr/bin"}, {"filename": "sqlite3", "parent": "/usr/bin"}, {"filename": "ssh", "parent": "/usr/bin"}, {"filename": "ssh-add", "parent": "/usr/bin"}, {"filename": "ssh-agent", "parent": "/usr/bin"}, {"filename": "ssh-copy-id", "parent": "/usr/bin"}, {"filename": "ssh-keygen", "parent": "/usr/bin"}, {"filename": "ssh-keyscan", "parent": "/usr/bin"}, {"filename": "ssltap", "parent": "/usr/bin"}, {"filename": "stat", "parent": "/usr/bin"}, {"filename": "stdbuf", "parent": "/usr/bin"}, {"filename": "strings", "parent": "/usr/bin"}, {"filename": "strip", "parent": "/usr/bin"}, {"filename": "stty", "parent": "/usr/bin"}, {"filename": "su", "parent": "/usr/bin"}, {"filename": "sudo", "parent": "/usr/bin"}, {"filename": "sudoedit", "parent": "/usr/bin"}, {"filename": "sudoreplay", "parent": "/usr/bin"}, {"filename": "sum", "parent": "/usr/bin"}, {"filename": "sync", "parent": "/usr/bin"}, {"filename": "systemctl", "parent": "/usr/bin"}, {"filename": "systemd-analyze", "parent": "/usr/bin"}, {"filename": "systemd-ask-password", "parent": "/usr/bin"}, {"filename": "systemd-cat", "parent": "/usr/bin"}, {"filename": "systemd-cgls", "parent": "/usr/bin"}, {"filename": "systemd-cgtop", "parent": "/usr/bin"}, {"filename": "systemd-coredumpctl", "parent": "/usr/bin"}, {"filename": "systemd-delta", "parent": "/usr/bin"}, {"filename": "systemd-detect-virt", "parent": "/usr/bin"}, {"filename": "systemd-escape", "parent": "/usr/bin"}, {"filename": "systemd-firstboot", "parent": "/usr/bin"}, {"filename": "systemd-hwdb", "parent": "/usr/bin"}, {"filename": "systemd-inhibit", "parent": "/usr/bin"}, {"filename": "systemd-loginctl", "parent": "/usr/bin"}, {"filename": "systemd-machine-id-setup", "parent": "/usr/bin"}, {"filename": "systemd-notify", "parent": "/usr/bin"}, {"filename": "systemd-nspawn", "parent": "/usr/bin"}, {"filename": "systemd-path", "parent": "/usr/bin"}, {"filename": "systemd-run", "parent": "/usr/bin"}, {"filename": "systemd-stdio-bridge", "parent": "/usr/bin"}, {"filename": "systemd-sysv-convert", "parent": "/usr/bin"}, {"filename": "systemd-tmpfiles", "parent": "/usr/bin"}, {"filename": "systemd-tty-ask-password-agent", "parent": "/usr/bin"}, {"filename": "tabs", "parent": "/usr/bin"}, {"filename": "tac", "parent": "/usr/bin"}, {"filename": "tail", "parent": "/usr/bin"}, {"filename": "tailf", "parent": "/usr/bin"}, {"filename": "tapestat", "parent": "/usr/bin"}, {"filename": "tar", "parent": "/usr/bin"}, {"filename": "taskset", "parent": "/usr/bin"}, {"filename": "tbl", "parent": "/usr/bin"}, {"filename": "teamd", "parent": "/usr/bin"}, {"filename": "teamdctl", "parent": "/usr/bin"}, {"filename": "teamnl", "parent": "/usr/bin"}, {"filename": "tee", "parent": "/usr/bin"}, {"filename": "test", "parent": "/usr/bin"}, {"filename": "testgdbm", "parent": "/usr/bin"}, {"filename": "testrb", "parent": "/usr/bin"}, {"filename": "tic", "parent": "/usr/bin"}, {"filename": "timedatectl", "parent": "/usr/bin"}, {"filename": "timeout", "parent": "/usr/bin"}, {"filename": "tload", "parent": "/usr/bin"}, {"filename": "tmon", "parent": "/usr/bin"}, {"filename": "toe", "parent": "/usr/bin"}, {"filename": "top", "parent": "/usr/bin"}, {"filename": "touch", "parent": "/usr/bin"}, {"filename": "tput", "parent": "/usr/bin"}, {"filename": "tr", "parent": "/usr/bin"}, {"filename": "tracepath", "parent": "/usr/bin"}, {"filename": "tracepath6", "parent": "/usr/bin"}, {"filename": "troff", "parent": "/usr/bin"}, {"filename": "true", "parent": "/usr/bin"}, {"filename": "truncate", "parent": "/usr/bin"}, {"filename": "trust", "parent": "/usr/bin"}, {"filename": "tset", "parent": "/usr/bin"}, {"filename": "tsort", "parent": "/usr/bin"}, {"filename": "tty", "parent": "/usr/bin"}, {"filename": "turbostat", "parent": "/usr/bin"}, {"filename": "tzselect", "parent": "/usr/bin"}, {"filename": "udevadm", "parent": "/usr/bin"}, {"filename": "ul", "parent": "/usr/bin"}, {"filename": "umask", "parent": "/usr/bin"}, {"filename": "umount", "parent": "/usr/bin"}, {"filename": "unalias", "parent": "/usr/bin"}, {"filename": "uname", "parent": "/usr/bin"}, {"filename": "unexpand", "parent": "/usr/bin"}, {"filename": "unicode_start", "parent": "/usr/bin"}, {"filename": "unicode_stop", "parent": "/usr/bin"}, {"filename": "uniq", "parent": "/usr/bin"}, {"filename": "unlink", "parent": "/usr/bin"}, {"filename": "unlz4", "parent": "/usr/bin"}, {"filename": "unshare", "parent": "/usr/bin"}, {"filename": "unxz", "parent": "/usr/bin"}, {"filename": "unzip", "parent": "/usr/bin"}, {"filename": "unzipsfx", "parent": "/usr/bin"}, {"filename": "update-ca-trust", "parent": "/usr/bin"}, {"filename": "update-mime-database", "parent": "/usr/bin"}, {"filename": "uptime", "parent": "/usr/bin"}, {"filename": "urlgrabber", "parent": "/usr/bin"}, {"filename": "users", "parent": "/usr/bin"}, {"filename": "usleep", "parent": "/usr/bin"}, {"filename": "usx2yloader", "parent": "/usr/bin"}, {"filename": "utmpdump", "parent": "/usr/bin"}, {"filename": "uuidgen", "parent": "/usr/bin"}, {"filename": "vdir", "parent": "/usr/bin"}, {"filename": "vi", "parent": "/usr/bin"}, {"filename": "view", "parent": "/usr/bin"}, {"filename": "vlock", "parent": "/usr/bin"}, {"filename": "vmstat", "parent": "/usr/bin"}, {"filename": "vxloader", "parent": "/usr/bin"}, {"filename": "w", "parent": "/usr/bin"}, {"filename": "wait", "parent": "/usr/bin"}, {"filename": "wall", "parent": "/usr/bin"}, {"filename": "watch", "parent": "/usr/bin"}, {"filename": "watchgnupg", "parent": "/usr/bin"}, {"filename": "wc", "parent": "/usr/bin"}, {"filename": "wdctl", "parent": "/usr/bin"}, {"filename": "whatis", "parent": "/usr/bin"}, {"filename": "whereis", "parent": "/usr/bin"}, {"filename": "which", "parent": "/usr/bin"}, {"filename": "whiptail", "parent": "/usr/bin"}, {"filename": "who", "parent": "/usr/bin"}, {"filename": "whoami", "parent": "/usr/bin"}, {"filename": "write", "parent": "/usr/bin"}, {"filename": "x86_64", "parent": "/usr/bin"}, {"filename": "x86_energy_perf_policy", "parent": "/usr/bin"}, {"filename": "xargs", "parent": "/usr/bin"}, {"filename": "xgettext", "parent": "/usr/bin"}, {"filename": "xmlcatalog", "parent": "/usr/bin"}, {"filename": "xmllint", "parent": "/usr/bin"}, {"filename": "xmlwf", "parent": "/usr/bin"}, {"filename": "xz", "parent": "/usr/bin"}, {"filename": "xzcat", "parent": "/usr/bin"}, {"filename": "xzcmp", "parent": "/usr/bin"}, {"filename": "xzdec", "parent": "/usr/bin"}, {"filename": "xzdiff", "parent": "/usr/bin"}, {"filename": "xzegrep", "parent": "/usr/bin"}, {"filename": "xzfgrep", "parent": "/usr/bin"}, {"filename": "xzgrep", "parent": "/usr/bin"}, {"filename": "xzless", "parent": "/usr/bin"}, {"filename": "xzmore", "parent": "/usr/bin"}, {"filename": "yes", "parent": "/usr/bin"}, {"filename": "ypdomainname", "parent": "/usr/bin"}, {"filename": "yum", "parent": "/usr/bin"}, {"filename": "zcat", "parent": "/usr/bin"}, {"filename": "zcmp", "parent": "/usr/bin"}, {"filename": "zdiff", "parent": "/usr/bin"}, {"filename": "zegrep", "parent": "/usr/bin"}, {"filename": "zfgrep", "parent": "/usr/bin"}, {"filename": "zforce", "parent": "/usr/bin"}, {"filename": "zgrep", "parent": "/usr/bin"}, {"filename": "zipgrep", "parent": "/usr/bin"}, {"filename": "zipinfo", "parent": "/usr/bin"}, {"filename": "zless", "parent": "/usr/bin"}, {"filename": "zmore", "parent": "/usr/bin"}, {"filename": "znew", "parent": "/usr/bin"}, {"filename": "zsoelim", "parent": "/usr/bin"}, {"filename": "python2.7", "parent": "/usr/include"}, {"filename": "python3.6m", "parent": "/usr/include"}, {"filename": "pyconfig-64.h", "parent": "/usr/include/python2.7"}, {"filename": "pyconfig-64.h", "parent": "/usr/include/python3.6m"}, {"filename": "binfmt.d", "parent": "/usr/lib"}, {"filename": "debug", "parent": "/usr/lib"}, {"filename": "dracut", "parent": "/usr/lib"}, {"filename": "firewalld", "parent": "/usr/lib"}, {"filename": "firmware", "parent": "/usr/lib"}, {"filename": "games", "parent": "/usr/lib"}, {"filename": "gems", "parent": "/usr/lib"}, {"filename": "grub", "parent": "/usr/lib"}, {"filename": "kbd", "parent": "/usr/lib"}, {"filename": "kdump", "parent": "/usr/lib"}, {"filename": "kernel", "parent": "/usr/lib"}, {"filename": "locale", "parent": "/usr/lib"}, {"filename": "modprobe.d", "parent": "/usr/lib"}, {"filename": "modules", "parent": "/usr/lib"}, {"filename": "modules-load.d", "parent": "/usr/lib"}, {"filename": "NetworkManager", "parent": "/usr/lib"}, {"filename": "polkit-1", "parent": "/usr/lib"}, {"filename": "python2.7", "parent": "/usr/lib"}, {"filename": "python3.6", "parent": "/usr/lib"}, {"filename": "rpm", "parent": "/usr/lib"}, {"filename": "sendmail", "parent": "/usr/lib"}, {"filename": "sendmail.postfix", "parent": "/usr/lib"}, {"filename": "sse2", "parent": "/usr/lib"}, {"filename": "sysctl.d", "parent": "/usr/lib"}, {"filename": "systemd", "parent": "/usr/lib"}, {"filename": "tmpfiles.d", "parent": "/usr/lib"}, {"filename": "tuned", "parent": "/usr/lib"}, {"filename": "udev", "parent": "/usr/lib"}, {"filename": "yum-plugins", "parent": "/usr/lib"}, {"filename": "bin", "parent": "/usr/lib/debug"}, {"filename": "lib", "parent": "/usr/lib/debug"}, {"filename": "lib64", "parent": "/usr/lib/debug"}, {"filename": "sbin", "parent": "/usr/lib/debug"}, {"filename": "usr", "parent": "/usr/lib/debug"}, {"filename": "bin", "parent": "/usr/lib/debug/usr"}, {"filename": "lib", "parent": "/usr/lib/debug/usr"}, {"filename": "lib64", "parent": "/usr/lib/debug/usr"}, {"filename": "sbin", "parent": "/usr/lib/debug/usr"}, {"filename": "dracut.conf.d", "parent": "/usr/lib/dracut"}, {"filename": "dracut-functions", "parent": "/usr/lib/dracut"}, {"filename": "dracut-functions.sh", "parent": "/usr/lib/dracut"}, {"filename": "dracut-initramfs-restore", "parent": "/usr/lib/dracut"}, {"filename": "dracut-init.sh", "parent": "/usr/lib/dracut"}, {"filename": "dracut-install", "parent": "/usr/lib/dracut"}, {"filename": "dracut-logger.sh", "parent": "/usr/lib/dracut"}, {"filename": "dracut-version.sh", "parent": "/usr/lib/dracut"}, {"filename": "modules.d", "parent": "/usr/lib/dracut"}, {"filename": "skipcpio", "parent": "/usr/lib/dracut"}, {"filename": "01-dist.conf", "parent": "/usr/lib/dracut/dracut.conf.d"}, {"filename": "01-microcode.conf", "parent": "/usr/lib/dracut/dracut.conf.d"}, {"filename": "02-rescue.conf", "parent": "/usr/lib/dracut/dracut.conf.d"}, {"filename": "50-nss-softokn.conf", "parent": "/usr/lib/dracut/dracut.conf.d"}, {"filename": "76-phys-port-name.conf", "parent": "/usr/lib/dracut/dracut.conf.d"}, {"filename": "99-microcode-override.conf", "parent": "/usr/lib/dracut/dracut.conf.d"}, {"filename": "00bash", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "00systemd-bootchart", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "03modsign", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "03rescue", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "04watchdog", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "05busybox", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "05nss-softokn", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "10i18n", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "30convertfs", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "40network", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "45ifcfg", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "45url-lib", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "50drm", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "50plymouth", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "80cms", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "90bcache", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "90btrfs", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "90crypt", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "90dm", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "90dmraid", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "90dmsquash-live", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "90dmsquash-live-ntfs", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "90kernel-modules", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "90livenet", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "90lvm", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "90mdraid", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "90multipath", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "90qemu", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "90qemu-net", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "91crypt-gpg", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "91crypt-loop", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "95cifs", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "95dasd", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "95dasd_mod", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "95debug", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "95fcoe", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "95fcoe-uefi", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "95fstab-sys", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "95iscsi", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "95nbd", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "95nfs", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "95resume", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "95rootfs-block", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "95ssh-client", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "95terminfo", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "95udev-rules", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "95virtfs", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "95zfcp", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "95znet", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "97biosdevname", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "98ecryptfs", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "98pollcdrom", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "98selinux", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "98syslog", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "98systemd", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "98usrmount", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "99base", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "99fs-lib", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "99img-lib", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "99kdumpbase", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "99microcode_ctl-fw_dir_override", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "99shutdown", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "99uefi-lib", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/00bash"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/00systemd-bootchart"}, {"filename": "load-modsign-keys.sh", "parent": "/usr/lib/dracut/modules.d/03modsign"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/03modsign"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/03rescue"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/04watchdog"}, {"filename": "watchdog.sh", "parent": "/usr/lib/dracut/modules.d/04watchdog"}, {"filename": "watchdog-stop.sh", "parent": "/usr/lib/dracut/modules.d/04watchdog"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/05busybox"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/05nss-softokn"}, {"filename": "10-console.rules", "parent": "/usr/lib/dracut/modules.d/10i18n"}, {"filename": "console_init.sh", "parent": "/usr/lib/dracut/modules.d/10i18n"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/10i18n"}, {"filename": "parse-i18n.sh", "parent": "/usr/lib/dracut/modules.d/10i18n"}, {"filename": "README", "parent": "/usr/lib/dracut/modules.d/10i18n"}, {"filename": "convertfs.sh", "parent": "/usr/lib/dracut/modules.d/30convertfs"}, {"filename": "do-convertfs.sh", "parent": "/usr/lib/dracut/modules.d/30convertfs"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/30convertfs"}, {"filename": "dhclient.conf", "parent": "/usr/lib/dracut/modules.d/40network"}, {"filename": "dhclient-script.sh", "parent": "/usr/lib/dracut/modules.d/40network"}, {"filename": "dhcp-root.sh", "parent": "/usr/lib/dracut/modules.d/40network"}, {"filename": "ifname-genrules.sh", "parent": "/usr/lib/dracut/modules.d/40network"}, {"filename": "ifup.sh", "parent": "/usr/lib/dracut/modules.d/40network"}, {"filename": "kill-dhclient.sh", "parent": "/usr/lib/dracut/modules.d/40network"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/40network"}, {"filename": "net-genrules.sh", "parent": "/usr/lib/dracut/modules.d/40network"}, {"filename": "net-lib.sh", "parent": "/usr/lib/dracut/modules.d/40network"}, {"filename": "netroot.sh", "parent": "/usr/lib/dracut/modules.d/40network"}, {"filename": "parse-bond.sh", "parent": "/usr/lib/dracut/modules.d/40network"}, {"filename": "parse-bridge.sh", "parent": "/usr/lib/dracut/modules.d/40network"}, {"filename": "parse-ibft.sh", "parent": "/usr/lib/dracut/modules.d/40network"}, {"filename": "parse-ifname.sh", "parent": "/usr/lib/dracut/modules.d/40network"}, {"filename": "parse-ip-opts.sh", "parent": "/usr/lib/dracut/modules.d/40network"}, {"filename": "parse-team.sh", "parent": "/usr/lib/dracut/modules.d/40network"}, {"filename": "parse-vlan.sh", "parent": "/usr/lib/dracut/modules.d/40network"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/45ifcfg"}, {"filename": "write-ifcfg.sh", "parent": "/usr/lib/dracut/modules.d/45ifcfg"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/45url-lib"}, {"filename": "url-lib.sh", "parent": "/usr/lib/dracut/modules.d/45url-lib"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/50drm"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/50plymouth"}, {"filename": "plymouth-emergency.sh", "parent": "/usr/lib/dracut/modules.d/50plymouth"}, {"filename": "plymouth-newroot.sh", "parent": "/usr/lib/dracut/modules.d/50plymouth"}, {"filename": "plymouth-populate-initrd.sh", "parent": "/usr/lib/dracut/modules.d/50plymouth"}, {"filename": "plymouth-pretrigger.sh", "parent": "/usr/lib/dracut/modules.d/50plymouth"}, {"filename": "cmsifup.sh", "parent": "/usr/lib/dracut/modules.d/80cms"}, {"filename": "cmssetup.sh", "parent": "/usr/lib/dracut/modules.d/80cms"}, {"filename": "cms-write-ifcfg.sh", "parent": "/usr/lib/dracut/modules.d/80cms"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/80cms"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/90bcache"}, {"filename": "80-btrfs.rules", "parent": "/usr/lib/dracut/modules.d/90btrfs"}, {"filename": "btrfs_device_ready.sh", "parent": "/usr/lib/dracut/modules.d/90btrfs"}, {"filename": "btrfs_finished.sh", "parent": "/usr/lib/dracut/modules.d/90btrfs"}, {"filename": "btrfs_timeout.sh", "parent": "/usr/lib/dracut/modules.d/90btrfs"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/90btrfs"}, {"filename": "crypt-cleanup.sh", "parent": "/usr/lib/dracut/modules.d/90crypt"}, {"filename": "crypt-lib.sh", "parent": "/usr/lib/dracut/modules.d/90crypt"}, {"filename": "cryptroot-ask.sh", "parent": "/usr/lib/dracut/modules.d/90crypt"}, {"filename": "crypt-run-generator.sh", "parent": "/usr/lib/dracut/modules.d/90crypt"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/90crypt"}, {"filename": "parse-crypt.sh", "parent": "/usr/lib/dracut/modules.d/90crypt"}, {"filename": "parse-keydev.sh", "parent": "/usr/lib/dracut/modules.d/90crypt"}, {"filename": "probe-keydev.sh", "parent": "/usr/lib/dracut/modules.d/90crypt"}, {"filename": "11-dm.rules", "parent": "/usr/lib/dracut/modules.d/90dm"}, {"filename": "59-persistent-storage-dm.rules", "parent": "/usr/lib/dracut/modules.d/90dm"}, {"filename": "dm-pre-udev.sh", "parent": "/usr/lib/dracut/modules.d/90dm"}, {"filename": "dm-shutdown.sh", "parent": "/usr/lib/dracut/modules.d/90dm"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/90dm"}, {"filename": "61-dmraid-imsm.rules", "parent": "/usr/lib/dracut/modules.d/90dmraid"}, {"filename": "dmraid.sh", "parent": "/usr/lib/dracut/modules.d/90dmraid"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/90dmraid"}, {"filename": "parse-dm.sh", "parent": "/usr/lib/dracut/modules.d/90dmraid"}, {"filename": "apply-live-updates.sh", "parent": "/usr/lib/dracut/modules.d/90dmsquash-live"}, {"filename": "checkisomd5@.service", "parent": "/usr/lib/dracut/modules.d/90dmsquash-live"}, {"filename": "dmsquash-live-genrules.sh", "parent": "/usr/lib/dracut/modules.d/90dmsquash-live"}, {"filename": "dmsquash-liveiso-genrules.sh", "parent": "/usr/lib/dracut/modules.d/90dmsquash-live"}, {"filename": "dmsquash-live-root.sh", "parent": "/usr/lib/dracut/modules.d/90dmsquash-live"}, {"filename": "iso-scan.sh", "parent": "/usr/lib/dracut/modules.d/90dmsquash-live"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/90dmsquash-live"}, {"filename": "parse-dmsquash-live.sh", "parent": "/usr/lib/dracut/modules.d/90dmsquash-live"}, {"filename": "parse-iso-scan.sh", "parent": "/usr/lib/dracut/modules.d/90dmsquash-live"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/90dmsquash-live-ntfs"}, {"filename": "insmodpost.sh", "parent": "/usr/lib/dracut/modules.d/90kernel-modules"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/90kernel-modules"}, {"filename": "parse-kernel.sh", "parent": "/usr/lib/dracut/modules.d/90kernel-modules"}, {"filename": "fetch-liveupdate.sh", "parent": "/usr/lib/dracut/modules.d/90livenet"}, {"filename": "livenetroot.sh", "parent": "/usr/lib/dracut/modules.d/90livenet"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/90livenet"}, {"filename": "parse-livenet.sh", "parent": "/usr/lib/dracut/modules.d/90livenet"}, {"filename": "64-lvm.rules", "parent": "/usr/lib/dracut/modules.d/90lvm"}, {"filename": "lvm_scan.sh", "parent": "/usr/lib/dracut/modules.d/90lvm"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/90lvm"}, {"filename": "parse-lvm.sh", "parent": "/usr/lib/dracut/modules.d/90lvm"}, {"filename": "59-persistent-storage-md.rules", "parent": "/usr/lib/dracut/modules.d/90mdraid"}, {"filename": "65-md-incremental-imsm.rules", "parent": "/usr/lib/dracut/modules.d/90mdraid"}, {"filename": "mdmon-pre-shutdown.sh", "parent": "/usr/lib/dracut/modules.d/90mdraid"}, {"filename": "mdmon-pre-udev.sh", "parent": "/usr/lib/dracut/modules.d/90mdraid"}, {"filename": "md-noddf.sh", "parent": "/usr/lib/dracut/modules.d/90mdraid"}, {"filename": "md-noimsm.sh", "parent": "/usr/lib/dracut/modules.d/90mdraid"}, {"filename": "mdraid-cleanup.sh", "parent": "/usr/lib/dracut/modules.d/90mdraid"}, {"filename": "mdraid-needshutdown.sh", "parent": "/usr/lib/dracut/modules.d/90mdraid"}, {"filename": "mdraid_start.sh", "parent": "/usr/lib/dracut/modules.d/90mdraid"}, {"filename": "mdraid-waitclean.sh", "parent": "/usr/lib/dracut/modules.d/90mdraid"}, {"filename": "md-shutdown.sh", "parent": "/usr/lib/dracut/modules.d/90mdraid"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/90mdraid"}, {"filename": "parse-md.sh", "parent": "/usr/lib/dracut/modules.d/90mdraid"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/90multipath"}, {"filename": "multipathd-needshutdown.sh", "parent": "/usr/lib/dracut/modules.d/90multipath"}, {"filename": "multipathd.sh", "parent": "/usr/lib/dracut/modules.d/90multipath"}, {"filename": "multipathd-stop.sh", "parent": "/usr/lib/dracut/modules.d/90multipath"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/90qemu"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/90qemu-net"}, {"filename": "crypt-gpg-lib.sh", "parent": "/usr/lib/dracut/modules.d/91crypt-gpg"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/91crypt-gpg"}, {"filename": "crypt-loop-lib.sh", "parent": "/usr/lib/dracut/modules.d/91crypt-loop"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/91crypt-loop"}, {"filename": "cifs-lib.sh", "parent": "/usr/lib/dracut/modules.d/95cifs"}, {"filename": "cifsroot.sh", "parent": "/usr/lib/dracut/modules.d/95cifs"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/95cifs"}, {"filename": "parse-cifsroot.sh", "parent": "/usr/lib/dracut/modules.d/95cifs"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/95dasd"}, {"filename": "parse-dasd.sh", "parent": "/usr/lib/dracut/modules.d/95dasd"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/95dasd_mod"}, {"filename": "parse-dasd-mod.sh", "parent": "/usr/lib/dracut/modules.d/95dasd_mod"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/95debug"}, {"filename": "cleanup-fcoe.sh", "parent": "/usr/lib/dracut/modules.d/95fcoe"}, {"filename": "fcoe-edd.sh", "parent": "/usr/lib/dracut/modules.d/95fcoe"}, {"filename": "fcoe-genrules.sh", "parent": "/usr/lib/dracut/modules.d/95fcoe"}, {"filename": "fcoe-up.sh", "parent": "/usr/lib/dracut/modules.d/95fcoe"}, {"filename": "lldpad.sh", "parent": "/usr/lib/dracut/modules.d/95fcoe"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/95fcoe"}, {"filename": "parse-fcoe.sh", "parent": "/usr/lib/dracut/modules.d/95fcoe"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/95fcoe-uefi"}, {"filename": "parse-uefifcoe.sh", "parent": "/usr/lib/dracut/modules.d/95fcoe-uefi"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/95fstab-sys"}, {"filename": "mount-sys.sh", "parent": "/usr/lib/dracut/modules.d/95fstab-sys"}, {"filename": "cleanup-iscsi.sh", "parent": "/usr/lib/dracut/modules.d/95iscsi"}, {"filename": "iscsiroot.sh", "parent": "/usr/lib/dracut/modules.d/95iscsi"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/95iscsi"}, {"filename": "mount-lun.sh", "parent": "/usr/lib/dracut/modules.d/95iscsi"}, {"filename": "parse-iscsiroot.sh", "parent": "/usr/lib/dracut/modules.d/95iscsi"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/95nbd"}, {"filename": "nbdroot.sh", "parent": "/usr/lib/dracut/modules.d/95nbd"}, {"filename": "parse-nbdroot.sh", "parent": "/usr/lib/dracut/modules.d/95nbd"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/95nfs"}, {"filename": "nfs-lib.sh", "parent": "/usr/lib/dracut/modules.d/95nfs"}, {"filename": "nfsroot-cleanup.sh", "parent": "/usr/lib/dracut/modules.d/95nfs"}, {"filename": "nfsroot.sh", "parent": "/usr/lib/dracut/modules.d/95nfs"}, {"filename": "nfs-start-rpc.sh", "parent": "/usr/lib/dracut/modules.d/95nfs"}, {"filename": "parse-nfsroot.sh", "parent": "/usr/lib/dracut/modules.d/95nfs"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/95resume"}, {"filename": "parse-resume.sh", "parent": "/usr/lib/dracut/modules.d/95resume"}, {"filename": "resume.sh", "parent": "/usr/lib/dracut/modules.d/95resume"}, {"filename": "block-genrules.sh", "parent": "/usr/lib/dracut/modules.d/95rootfs-block"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/95rootfs-block"}, {"filename": "mount-root.sh", "parent": "/usr/lib/dracut/modules.d/95rootfs-block"}, {"filename": "parse-block.sh", "parent": "/usr/lib/dracut/modules.d/95rootfs-block"}, {"filename": "rootfallback.sh", "parent": "/usr/lib/dracut/modules.d/95rootfs-block"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/95ssh-client"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/95terminfo"}, {"filename": "59-persistent-storage.rules", "parent": "/usr/lib/dracut/modules.d/95udev-rules"}, {"filename": "61-persistent-storage.rules", "parent": "/usr/lib/dracut/modules.d/95udev-rules"}, {"filename": "load-modules.sh", "parent": "/usr/lib/dracut/modules.d/95udev-rules"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/95udev-rules"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/95virtfs"}, {"filename": "mount-virtfs.sh", "parent": "/usr/lib/dracut/modules.d/95virtfs"}, {"filename": "parse-virtfs.sh", "parent": "/usr/lib/dracut/modules.d/95virtfs"}, {"filename": "virtfs-generator.sh", "parent": "/usr/lib/dracut/modules.d/95virtfs"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/95zfcp"}, {"filename": "parse-zfcp.sh", "parent": "/usr/lib/dracut/modules.d/95zfcp"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/95znet"}, {"filename": "parse-ccw.sh", "parent": "/usr/lib/dracut/modules.d/95znet"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/97biosdevname"}, {"filename": "parse-biosdevname.sh", "parent": "/usr/lib/dracut/modules.d/97biosdevname"}, {"filename": "ecryptfs-mount.sh", "parent": "/usr/lib/dracut/modules.d/98ecryptfs"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/98ecryptfs"}, {"filename": "README", "parent": "/usr/lib/dracut/modules.d/98ecryptfs"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/98pollcdrom"}, {"filename": "pollcdrom.sh", "parent": "/usr/lib/dracut/modules.d/98pollcdrom"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/98selinux"}, {"filename": "selinux-loadpolicy.sh", "parent": "/usr/lib/dracut/modules.d/98selinux"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/98syslog"}, {"filename": "parse-syslog-opts.sh", "parent": "/usr/lib/dracut/modules.d/98syslog"}, {"filename": "README", "parent": "/usr/lib/dracut/modules.d/98syslog"}, {"filename": "rsyslog.conf", "parent": "/usr/lib/dracut/modules.d/98syslog"}, {"filename": "rsyslogd-start.sh", "parent": "/usr/lib/dracut/modules.d/98syslog"}, {"filename": "rsyslogd-stop.sh", "parent": "/usr/lib/dracut/modules.d/98syslog"}, {"filename": "syslog-cleanup.sh", "parent": "/usr/lib/dracut/modules.d/98syslog"}, {"filename": "syslog-genrules.sh", "parent": "/usr/lib/dracut/modules.d/98syslog"}, {"filename": "dracut-cmdline-ask.service", "parent": "/usr/lib/dracut/modules.d/98systemd"}, {"filename": "dracut-cmdline-ask.sh", "parent": "/usr/lib/dracut/modules.d/98systemd"}, {"filename": "dracut-cmdline.service", "parent": "/usr/lib/dracut/modules.d/98systemd"}, {"filename": "dracut-cmdline.service.8", "parent": "/usr/lib/dracut/modules.d/98systemd"}, {"filename": "dracut-cmdline.service.8.asc", "parent": "/usr/lib/dracut/modules.d/98systemd"}, {"filename": "dracut-cmdline.sh", "parent": "/usr/lib/dracut/modules.d/98systemd"}, {"filename": "dracut-emergency.service", "parent": "/usr/lib/dracut/modules.d/98systemd"}, {"filename": "dracut-emergency.sh", "parent": "/usr/lib/dracut/modules.d/98systemd"}, {"filename": "dracut-initqueue.service", "parent": "/usr/lib/dracut/modules.d/98systemd"}, {"filename": "dracut-initqueue.service.8", "parent": "/usr/lib/dracut/modules.d/98systemd"}, {"filename": "dracut-initqueue.service.8.asc", "parent": "/usr/lib/dracut/modules.d/98systemd"}, {"filename": "dracut-initqueue.sh", "parent": "/usr/lib/dracut/modules.d/98systemd"}, {"filename": "dracut-mount.service", "parent": "/usr/lib/dracut/modules.d/98systemd"}, {"filename": "dracut-mount.service.8", "parent": "/usr/lib/dracut/modules.d/98systemd"}, {"filename": "dracut-mount.service.8.asc", "parent": "/usr/lib/dracut/modules.d/98systemd"}, {"filename": "dracut-mount.sh", "parent": "/usr/lib/dracut/modules.d/98systemd"}, {"filename": "dracut-pre-mount.service", "parent": "/usr/lib/dracut/modules.d/98systemd"}, {"filename": "dracut-pre-mount.service.8", "parent": "/usr/lib/dracut/modules.d/98systemd"}, {"filename": "dracut-pre-mount.service.8.asc", "parent": "/usr/lib/dracut/modules.d/98systemd"}, {"filename": "dracut-pre-mount.sh", "parent": "/usr/lib/dracut/modules.d/98systemd"}, {"filename": "dracut-pre-pivot.service", "parent": "/usr/lib/dracut/modules.d/98systemd"}, {"filename": "dracut-pre-pivot.service.8", "parent": "/usr/lib/dracut/modules.d/98systemd"}, {"filename": "dracut-pre-pivot.service.8.asc", "parent": "/usr/lib/dracut/modules.d/98systemd"}, {"filename": "dracut-pre-pivot.sh", "parent": "/usr/lib/dracut/modules.d/98systemd"}, {"filename": "dracut-pre-trigger.service", "parent": "/usr/lib/dracut/modules.d/98systemd"}, {"filename": "dracut-pre-trigger.service.8", "parent": "/usr/lib/dracut/modules.d/98systemd"}, {"filename": "dracut-pre-trigger.service.8.asc", "parent": "/usr/lib/dracut/modules.d/98systemd"}, {"filename": "dracut-pre-trigger.sh", "parent": "/usr/lib/dracut/modules.d/98systemd"}, {"filename": "dracut-pre-udev.service", "parent": "/usr/lib/dracut/modules.d/98systemd"}, {"filename": "dracut-pre-udev.service.8", "parent": "/usr/lib/dracut/modules.d/98systemd"}, {"filename": "dracut-pre-udev.service.8.asc", "parent": "/usr/lib/dracut/modules.d/98systemd"}, {"filename": "dracut-pre-udev.sh", "parent": "/usr/lib/dracut/modules.d/98systemd"}, {"filename": "dracut-shutdown.service", "parent": "/usr/lib/dracut/modules.d/98systemd"}, {"filename": "dracut-shutdown.service.8", "parent": "/usr/lib/dracut/modules.d/98systemd"}, {"filename": "dracut-shutdown.service.8.asc", "parent": "/usr/lib/dracut/modules.d/98systemd"}, {"filename": "dracut-tmpfiles.conf", "parent": "/usr/lib/dracut/modules.d/98systemd"}, {"filename": "emergency.service", "parent": "/usr/lib/dracut/modules.d/98systemd"}, {"filename": "initrd.target", "parent": "/usr/lib/dracut/modules.d/98systemd"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/98systemd"}, {"filename": "rescue.service", "parent": "/usr/lib/dracut/modules.d/98systemd"}, {"filename": "rootfs-generator.sh", "parent": "/usr/lib/dracut/modules.d/98systemd"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/98usrmount"}, {"filename": "mount-usr.sh", "parent": "/usr/lib/dracut/modules.d/98usrmount"}, {"filename": "dracut-lib.sh", "parent": "/usr/lib/dracut/modules.d/99base"}, {"filename": "initqueue.sh", "parent": "/usr/lib/dracut/modules.d/99base"}, {"filename": "init.sh", "parent": "/usr/lib/dracut/modules.d/99base"}, {"filename": "loginit.sh", "parent": "/usr/lib/dracut/modules.d/99base"}, {"filename": "memtrace-ko.sh", "parent": "/usr/lib/dracut/modules.d/99base"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/99base"}, {"filename": "parse-root-opts.sh", "parent": "/usr/lib/dracut/modules.d/99base"}, {"filename": "rdsosreport.sh", "parent": "/usr/lib/dracut/modules.d/99base"}, {"filename": "fs-lib.sh", "parent": "/usr/lib/dracut/modules.d/99fs-lib"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/99fs-lib"}, {"filename": "img-lib.sh", "parent": "/usr/lib/dracut/modules.d/99img-lib"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/99img-lib"}, {"filename": "kdump-capture.service", "parent": "/usr/lib/dracut/modules.d/99kdumpbase"}, {"filename": "kdump-emergency.service", "parent": "/usr/lib/dracut/modules.d/99kdumpbase"}, {"filename": "kdump-emergency.target", "parent": "/usr/lib/dracut/modules.d/99kdumpbase"}, {"filename": "kdump-error-handler.service", "parent": "/usr/lib/dracut/modules.d/99kdumpbase"}, {"filename": "kdump-error-handler.sh", "parent": "/usr/lib/dracut/modules.d/99kdumpbase"}, {"filename": "kdump.sh", "parent": "/usr/lib/dracut/modules.d/99kdumpbase"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/99kdumpbase"}, {"filename": "monitor_dd_progress", "parent": "/usr/lib/dracut/modules.d/99kdumpbase"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/99microcode_ctl-fw_dir_override"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/99shutdown"}, {"filename": "shutdown.sh", "parent": "/usr/lib/dracut/modules.d/99shutdown"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/99uefi-lib"}, {"filename": "uefi-lib.sh", "parent": "/usr/lib/dracut/modules.d/99uefi-lib"}, {"filename": "helpers", "parent": "/usr/lib/firewalld"}, {"filename": "icmptypes", "parent": "/usr/lib/firewalld"}, {"filename": "ipsets", "parent": "/usr/lib/firewalld"}, {"filename": "services", "parent": "/usr/lib/firewalld"}, {"filename": "zones", "parent": "/usr/lib/firewalld"}, {"filename": "amanda.xml", "parent": "/usr/lib/firewalld/helpers"}, {"filename": "ftp.xml", "parent": "/usr/lib/firewalld/helpers"}, {"filename": "h323.xml", "parent": "/usr/lib/firewalld/helpers"}, {"filename": "irc.xml", "parent": "/usr/lib/firewalld/helpers"}, {"filename": "netbios-ns.xml", "parent": "/usr/lib/firewalld/helpers"}, {"filename": "pptp.xml", "parent": "/usr/lib/firewalld/helpers"}, {"filename": "proto-gre.xml", "parent": "/usr/lib/firewalld/helpers"}, {"filename": "Q.931.xml", "parent": "/usr/lib/firewalld/helpers"}, {"filename": "RAS.xml", "parent": "/usr/lib/firewalld/helpers"}, {"filename": "sane.xml", "parent": "/usr/lib/firewalld/helpers"}, {"filename": "sip.xml", "parent": "/usr/lib/firewalld/helpers"}, {"filename": "snmp.xml", "parent": "/usr/lib/firewalld/helpers"}, {"filename": "tftp.xml", "parent": "/usr/lib/firewalld/helpers"}, {"filename": "address-unreachable.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "bad-header.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "beyond-scope.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "communication-prohibited.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "destination-unreachable.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "echo-reply.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "echo-request.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "failed-policy.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "fragmentation-needed.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "host-precedence-violation.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "host-prohibited.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "host-redirect.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "host-unknown.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "host-unreachable.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "ip-header-bad.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "neighbour-advertisement.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "neighbour-solicitation.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "network-prohibited.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "network-redirect.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "network-unknown.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "network-unreachable.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "no-route.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "packet-too-big.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "parameter-problem.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "port-unreachable.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "precedence-cutoff.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "protocol-unreachable.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "redirect.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "reject-route.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "required-option-missing.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "router-advertisement.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "router-solicitation.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "source-quench.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "source-route-failed.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "time-exceeded.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "timestamp-reply.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "timestamp-request.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "tos-host-redirect.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "tos-host-unreachable.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "tos-network-redirect.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "tos-network-unreachable.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "ttl-zero-during-reassembly.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "ttl-zero-during-transit.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "unknown-header-type.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "unknown-option.xml", "parent": "/usr/lib/firewalld/icmptypes"}, {"filename": "README", "parent": "/usr/lib/firewalld/ipsets"}, {"filename": "amanda-client.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "amanda-k5-client.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "amqps.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "amqp.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "apcupsd.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "audit.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "bacula-client.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "bacula.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "bgp.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "bitcoin-rpc.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "bitcoin-testnet-rpc.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "bitcoin-testnet.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "bitcoin.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "ceph-mon.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "ceph.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "cfengine.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "condor-collector.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "ctdb.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "dhcpv6-client.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "dhcpv6.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "dhcp.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "distcc.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "dns.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "docker-registry.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "docker-swarm.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "dropbox-lansync.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "elasticsearch.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "etcd-client.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "etcd-server.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "finger.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "freeipa-ldaps.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "freeipa-ldap.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "freeipa-replication.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "freeipa-trust.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "ftp.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "ganglia-client.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "ganglia-master.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "git.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "gre.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "high-availability.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "https.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "http.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "imaps.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "imap.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "ipp-client.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "ipp.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "ipsec.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "ircs.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "irc.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "iscsi-target.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "isns.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "jenkins.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "kadmin.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "kerberos.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "kibana.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "klogin.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "kpasswd.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "kprop.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "kshell.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "ldaps.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "ldap.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "libvirt-tls.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "libvirt.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "lightning-network.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "llmnr.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "managesieve.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "matrix.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "mdns.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "minidlna.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "mongodb.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "mosh.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "mountd.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "mqtt-tls.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "mqtt.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "mssql.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "ms-wbt.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "murmur.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "mysql.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "nfs3.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "nfs.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "nmea-0183.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "nrpe.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "ntp.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "nut.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "openvpn.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "ovirt-imageio.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "ovirt-storageconsole.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "ovirt-vmconsole.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "plex.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "pmcd.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "pmproxy.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "pmwebapis.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "pmwebapi.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "pop3s.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "pop3.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "postgresql.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "privoxy.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "proxy-dhcp.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "ptp.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "pulseaudio.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "puppetmaster.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "quassel.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "radius.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "redis.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "RH-Satellite-6.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "rpc-bind.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "rsh.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "rsyncd.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "rtsp.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "salt-master.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "samba-client.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "samba-dc.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "samba.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "sane.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "sips.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "sip.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "slp.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "smtp-submission.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "smtps.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "smtp.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "snmptrap.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "snmp.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "spideroak-lansync.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "squid.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "ssh.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "steam-streaming.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "svdrp.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "svn.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "syncthing-gui.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "syncthing.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "synergy.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "syslog-tls.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "syslog.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "telnet.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "tftp-client.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "tftp.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "tinc.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "tor-socks.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "transmission-client.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "upnp-client.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "vdsm.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "vnc-server.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "wbem-https.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "wbem-http.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "wsmans.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "wsman.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "xdmcp.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "xmpp-bosh.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "xmpp-client.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "xmpp-local.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "xmpp-server.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "zabbix-agent.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "zabbix-server.xml", "parent": "/usr/lib/firewalld/services"}, {"filename": "block.xml", "parent": "/usr/lib/firewalld/zones"}, {"filename": "dmz.xml", "parent": "/usr/lib/firewalld/zones"}, {"filename": "drop.xml", "parent": "/usr/lib/firewalld/zones"}, {"filename": "external.xml", "parent": "/usr/lib/firewalld/zones"}, {"filename": "home.xml", "parent": "/usr/lib/firewalld/zones"}, {"filename": "internal.xml", "parent": "/usr/lib/firewalld/zones"}, {"filename": "public.xml", "parent": "/usr/lib/firewalld/zones"}, {"filename": "trusted.xml", "parent": "/usr/lib/firewalld/zones"}, {"filename": "work.xml", "parent": "/usr/lib/firewalld/zones"}, {"filename": "3.10.0-1062.1.2.el7.x86_64", "parent": "/usr/lib/firmware"}, {"filename": "3.10.0-957.27.2.el7.x86_64", "parent": "/usr/lib/firmware"}, {"filename": "3.10.0-957.el7.x86_64", "parent": "/usr/lib/firmware"}, {"filename": "3com", "parent": "/usr/lib/firmware"}, {"filename": "a300_pfp.fw", "parent": "/usr/lib/firmware"}, {"filename": "a300_pm4.fw", "parent": "/usr/lib/firmware"}, {"filename": "acenic", "parent": "/usr/lib/firmware"}, {"filename": "adaptec", "parent": "/usr/lib/firmware"}, {"filename": "advansys", "parent": "/usr/lib/firmware"}, {"filename": "agere_ap_fw.bin", "parent": "/usr/lib/firmware"}, {"filename": "agere_sta_fw.bin", "parent": "/usr/lib/firmware"}, {"filename": "aic94xx-seq.fw", "parent": "/usr/lib/firmware"}, {"filename": "aica_firmware.bin", "parent": "/usr/lib/firmware"}, {"filename": "amd", "parent": "/usr/lib/firmware"}, {"filename": "amdgpu", "parent": "/usr/lib/firmware"}, {"filename": "amd-ucode", "parent": "/usr/lib/firmware"}, {"filename": "ar3k", "parent": "/usr/lib/firmware"}, {"filename": "ar5523.bin", "parent": "/usr/lib/firmware"}, {"filename": "ar7010_1_1.fw", "parent": "/usr/lib/firmware"}, {"filename": "ar7010.fw", "parent": "/usr/lib/firmware"}, {"filename": "ar9170-1.fw", "parent": "/usr/lib/firmware"}, {"filename": "ar9170-2.fw", "parent": "/usr/lib/firmware"}, {"filename": "ar9271.fw", "parent": "/usr/lib/firmware"}, {"filename": "as102_data1_st.hex", "parent": "/usr/lib/firmware"}, {"filename": "as102_data2_st.hex", "parent": "/usr/lib/firmware"}, {"filename": "asihpi", "parent": "/usr/lib/firmware"}, {"filename": "ath10k", "parent": "/usr/lib/firmware"}, {"filename": "ath3k-1.fw", "parent": "/usr/lib/firmware"}, {"filename": "ath9k_htc", "parent": "/usr/lib/firmware"}, {"filename": "atmel", "parent": "/usr/lib/firmware"}, {"filename": "atmsar11.fw", "parent": "/usr/lib/firmware"}, {"filename": "atusb", "parent": "/usr/lib/firmware"}, {"filename": "av7110", "parent": "/usr/lib/firmware"}, {"filename": "bnx2", "parent": "/usr/lib/firmware"}, {"filename": "bnx2x", "parent": "/usr/lib/firmware"}, {"filename": "bnx2x-e1-4.8.53.0.fw", "parent": "/usr/lib/firmware"}, {"filename": "bnx2x-e1-5.2.13.0.fw", "parent": "/usr/lib/firmware"}, {"filename": "bnx2x-e1-5.2.7.0.fw", "parent": "/usr/lib/firmware"}, {"filename": "bnx2x-e1h-4.8.53.0.fw", "parent": "/usr/lib/firmware"}, {"filename": "bnx2x-e1h-5.2.13.0.fw", "parent": "/usr/lib/firmware"}, {"filename": "bnx2x-e1h-5.2.7.0.fw", "parent": "/usr/lib/firmware"}, {"filename": "brcm", "parent": "/usr/lib/firmware"}, {"filename": "cadence", "parent": "/usr/lib/firmware"}, {"filename": "carl9170-1.fw", "parent": "/usr/lib/firmware"}, {"filename": "cavium", "parent": "/usr/lib/firmware"}, {"filename": "cbfw-3.2.1.1.bin", "parent": "/usr/lib/firmware"}, {"filename": "cbfw-3.2.3.0.bin", "parent": "/usr/lib/firmware"}, {"filename": "cbfw-3.2.5.1.bin", "parent": "/usr/lib/firmware"}, {"filename": "cis", "parent": "/usr/lib/firmware"}, {"filename": "cmmb_vega_12mhz.inp", "parent": "/usr/lib/firmware"}, {"filename": "cmmb_venice_12mhz.inp", "parent": "/usr/lib/firmware"}, {"filename": "configure", "parent": "/usr/lib/firmware"}, {"filename": "cpia2", "parent": "/usr/lib/firmware"}, {"filename": "cs46xx", "parent": "/usr/lib/firmware"}, {"filename": "ct2fw-3.2.1.1.bin", "parent": "/usr/lib/firmware"}, {"filename": "ct2fw-3.2.3.0.bin", "parent": "/usr/lib/firmware"}, {"filename": "ct2fw-3.2.5.1.bin", "parent": "/usr/lib/firmware"}, {"filename": "ctefx.bin", "parent": "/usr/lib/firmware"}, {"filename": "ctfw-3.2.1.1.bin", "parent": "/usr/lib/firmware"}, {"filename": "ctfw-3.2.3.0.bin", "parent": "/usr/lib/firmware"}, {"filename": "ctfw-3.2.5.1.bin", "parent": "/usr/lib/firmware"}, {"filename": "ctspeq.bin", "parent": "/usr/lib/firmware"}, {"filename": "cxgb3", "parent": "/usr/lib/firmware"}, {"filename": "cxgb4", "parent": "/usr/lib/firmware"}, {"filename": "dabusb", "parent": "/usr/lib/firmware"}, {"filename": "digiface_firmware.bin", "parent": "/usr/lib/firmware"}, {"filename": "digiface_firmware_rev11.bin", "parent": "/usr/lib/firmware"}, {"filename": "dpaa2", "parent": "/usr/lib/firmware"}, {"filename": "dsp56k", "parent": "/usr/lib/firmware"}, {"filename": "dvb-fe-xc4000-1.4.1.fw", "parent": "/usr/lib/firmware"}, {"filename": "dvb-fe-xc5000-1.6.114.fw", "parent": "/usr/lib/firmware"}, {"filename": "dvb-fe-xc5000c-4.1.30.7.fw", "parent": "/usr/lib/firmware"}, {"filename": "dvb_nova_12mhz_b0.inp", "parent": "/usr/lib/firmware"}, {"filename": "dvb_nova_12mhz.inp", "parent": "/usr/lib/firmware"}, {"filename": "dvb-usb-dib0700-1.20.fw", "parent": "/usr/lib/firmware"}, {"filename": "dvb-usb-it9135-01.fw", "parent": "/usr/lib/firmware"}, {"filename": "dvb-usb-it9135-02.fw", "parent": "/usr/lib/firmware"}, {"filename": "dvb-usb-terratec-h5-drxk.fw", "parent": "/usr/lib/firmware"}, {"filename": "e100", "parent": "/usr/lib/firmware"}, {"filename": "ea", "parent": "/usr/lib/firmware"}, {"filename": "edgeport", "parent": "/usr/lib/firmware"}, {"filename": "emi26", "parent": "/usr/lib/firmware"}, {"filename": "emi62", "parent": "/usr/lib/firmware"}, {"filename": "emu", "parent": "/usr/lib/firmware"}, {"filename": "ene-ub6250", "parent": "/usr/lib/firmware"}, {"filename": "ess", "parent": "/usr/lib/firmware"}, {"filename": "f2255usb.bin", "parent": "/usr/lib/firmware"}, {"filename": "go7007", "parent": "/usr/lib/firmware"}, {"filename": "GPL-2", "parent": "/usr/lib/firmware"}, {"filename": "GPL-3", "parent": "/usr/lib/firmware"}, {"filename": "hfi1_dc8051.fw", "parent": "/usr/lib/firmware"}, {"filename": "hfi1_fabric.fw", "parent": "/usr/lib/firmware"}, {"filename": "hfi1_pcie.fw", "parent": "/usr/lib/firmware"}, {"filename": "hfi1_sbus.fw", "parent": "/usr/lib/firmware"}, {"filename": "htc_7010.fw", "parent": "/usr/lib/firmware"}, {"filename": "htc_9271.fw", "parent": "/usr/lib/firmware"}, {"filename": "i915", "parent": "/usr/lib/firmware"}, {"filename": "imx", "parent": "/usr/lib/firmware"}, {"filename": "intel", "parent": "/usr/lib/firmware"}, {"filename": "intelliport2.bin", "parent": "/usr/lib/firmware"}, {"filename": "isci", "parent": "/usr/lib/firmware"}, {"filename": "isdbt_nova_12mhz_b0.inp", "parent": "/usr/lib/firmware"}, {"filename": "isdbt_nova_12mhz.inp", "parent": "/usr/lib/firmware"}, {"filename": "isdbt_rio.inp", "parent": "/usr/lib/firmware"}, {"filename": "ivtv-firmware-license-end-user.txt", "parent": "/usr/lib/firmware"}, {"filename": "ivtv-firmware-license-oemihvisv.txt", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-1000-3.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-1000-5.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-100-5.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-105-6.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-135-6.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-2000-6.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-2030-6.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-3160-10.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-3160-12.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-3160-13.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-3160-16.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-3160-17.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-3160-7.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-3160-8.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-3160-9.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-3168-21.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-3168-22.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-3168-27.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-3168-29.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-3945-2.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-4965-2.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-5000-1.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-5000-2.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-5000-5.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-5150-2.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-6000-4.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-6000g2a-5.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-6000g2a-6.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-6000g2b-5.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-6000g2b-6.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-6050-4.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-6050-5.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-7260-10.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-7260-12.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-7260-13.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-7260-16.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-7260-17.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-7260-7.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-7260-8.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-7260-9.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-7265-10.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-7265-12.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-7265-13.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-7265-16.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-7265-17.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-7265-8.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-7265-9.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-7265D-10.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-7265D-12.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-7265D-13.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-7265D-16.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-7265D-17.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-7265D-21.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-7265D-22.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-7265D-27.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-7265D-29.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-8000C-13.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-8000C-16.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-8000C-21.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-8000C-22.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-8000C-27.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-8000C-31.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-8000C-34.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-8000C-36.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-8265-21.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-8265-22.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-8265-27.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-8265-31.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-8265-34.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-8265-36.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-9000-pu-b0-jf-b0-33.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-9000-pu-b0-jf-b0-34.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-9000-pu-b0-jf-b0-38.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-9000-pu-b0-jf-b0-41.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-9000-pu-b0-jf-b0-43.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-9260-th-b0-jf-b0-33.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-9260-th-b0-jf-b0-34.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-9260-th-b0-jf-b0-38.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-9260-th-b0-jf-b0-41.ucode", "parent": "/usr/lib/firmware"}, {"filename": "iwlwifi-9260-th-b0-jf-b0-43.ucode", "parent": "/usr/lib/firmware"}, {"filename": "kaweth", "parent": "/usr/lib/firmware"}, {"filename": "keyspan", "parent": "/usr/lib/firmware"}, {"filename": "keyspan_pda", "parent": "/usr/lib/firmware"}, {"filename": "korg", "parent": "/usr/lib/firmware"}, {"filename": "lbtf_usb.bin", "parent": "/usr/lib/firmware"}, {"filename": "lgs8g75.fw", "parent": "/usr/lib/firmware"}, {"filename": "liquidio", "parent": "/usr/lib/firmware"}, {"filename": "Makefile", "parent": "/usr/lib/firmware"}, {"filename": "matrox", "parent": "/usr/lib/firmware"}, {"filename": "mediatek", "parent": "/usr/lib/firmware"}, {"filename": "mellanox", "parent": "/usr/lib/firmware"}, {"filename": "microchip", "parent": "/usr/lib/firmware"}, {"filename": "mixart", "parent": "/usr/lib/firmware"}, {"filename": "moxa", "parent": "/usr/lib/firmware"}, {"filename": "mrvl", "parent": "/usr/lib/firmware"}, {"filename": "mt7601u.bin", "parent": "/usr/lib/firmware"}, {"filename": "mt7650.bin", "parent": "/usr/lib/firmware"}, {"filename": "mt7662.bin", "parent": "/usr/lib/firmware"}, {"filename": "mt7662_rom_patch.bin", "parent": "/usr/lib/firmware"}, {"filename": "mts_cdma.fw", "parent": "/usr/lib/firmware"}, {"filename": "mts_edge.fw", "parent": "/usr/lib/firmware"}, {"filename": "mts_gsm.fw", "parent": "/usr/lib/firmware"}, {"filename": "mts_mt9234mu.fw", "parent": "/usr/lib/firmware"}, {"filename": "mts_mt9234zba.fw", "parent": "/usr/lib/firmware"}, {"filename": "multiface_firmware.bin", "parent": "/usr/lib/firmware"}, {"filename": "multiface_firmware_rev11.bin", "parent": "/usr/lib/firmware"}, {"filename": "mwlwifi", "parent": "/usr/lib/firmware"}, {"filename": "myri10ge_eth_big_z8e.dat", "parent": "/usr/lib/firmware"}, {"filename": "myri10ge_ethp_big_z8e.dat", "parent": "/usr/lib/firmware"}, {"filename": "myri10ge_ethp_z8e.dat", "parent": "/usr/lib/firmware"}, {"filename": "myri10ge_eth_z8e.dat", "parent": "/usr/lib/firmware"}, {"filename": "myri10ge_rss_eth_big_z8e.dat", "parent": "/usr/lib/firmware"}, {"filename": "myri10ge_rss_ethp_big_z8e.dat", "parent": "/usr/lib/firmware"}, {"filename": "myri10ge_rss_ethp_z8e.dat", "parent": "/usr/lib/firmware"}, {"filename": "myri10ge_rss_eth_z8e.dat", "parent": "/usr/lib/firmware"}, {"filename": "myricom", "parent": "/usr/lib/firmware"}, {"filename": "netronome", "parent": "/usr/lib/firmware"}, {"filename": "nvidia", "parent": "/usr/lib/firmware"}, {"filename": "ositech", "parent": "/usr/lib/firmware"}, {"filename": "pcxhr", "parent": "/usr/lib/firmware"}, {"filename": "phanfw.bin", "parent": "/usr/lib/firmware"}, {"filename": "qat_895xcc.bin", "parent": "/usr/lib/firmware"}, {"filename": "qat_895xcc_mmp.bin", "parent": "/usr/lib/firmware"}, {"filename": "qat_c3xxx.bin", "parent": "/usr/lib/firmware"}, {"filename": "qat_c3xxx_mmp.bin", "parent": "/usr/lib/firmware"}, {"filename": "qat_c62x.bin", "parent": "/usr/lib/firmware"}, {"filename": "qat_c62x_mmp.bin", "parent": "/usr/lib/firmware"}, {"filename": "qat_mmp.bin", "parent": "/usr/lib/firmware"}, {"filename": "qca", "parent": "/usr/lib/firmware"}, {"filename": "qcom", "parent": "/usr/lib/firmware"}, {"filename": "qed", "parent": "/usr/lib/firmware"}, {"filename": "ql2100_fw.bin", "parent": "/usr/lib/firmware"}, {"filename": "ql2200_fw.bin", "parent": "/usr/lib/firmware"}, {"filename": "ql2300_fw.bin", "parent": "/usr/lib/firmware"}, {"filename": "ql2322_fw.bin", "parent": "/usr/lib/firmware"}, {"filename": "ql2400_fw.bin", "parent": "/usr/lib/firmware"}, {"filename": "ql2500_fw.bin", "parent": "/usr/lib/firmware"}, {"filename": "qlogic", "parent": "/usr/lib/firmware"}, {"filename": "r128", "parent": "/usr/lib/firmware"}, {"filename": "r8a779x_usb3_v1.dlmem", "parent": "/usr/lib/firmware"}, {"filename": "r8a779x_usb3_v2.dlmem", "parent": "/usr/lib/firmware"}, {"filename": "r8a779x_usb3_v3.dlmem", "parent": "/usr/lib/firmware"}, {"filename": "radeon", "parent": "/usr/lib/firmware"}, {"filename": "README", "parent": "/usr/lib/firmware"}, {"filename": "rockchip", "parent": "/usr/lib/firmware"}, {"filename": "rp2.fw", "parent": "/usr/lib/firmware"}, {"filename": "rpm_firmware.bin", "parent": "/usr/lib/firmware"}, {"filename": "rsi", "parent": "/usr/lib/firmware"}, {"filename": "rsi_91x.fw", "parent": "/usr/lib/firmware"}, {"filename": "rt2561.bin", "parent": "/usr/lib/firmware"}, {"filename": "rt2561s.bin", "parent": "/usr/lib/firmware"}, {"filename": "rt2661.bin", "parent": "/usr/lib/firmware"}, {"filename": "rt2860.bin", "parent": "/usr/lib/firmware"}, {"filename": "rt2870.bin", "parent": "/usr/lib/firmware"}, {"filename": "rt3070.bin", "parent": "/usr/lib/firmware"}, {"filename": "rt3071.bin", "parent": "/usr/lib/firmware"}, {"filename": "rt3090.bin", "parent": "/usr/lib/firmware"}, {"filename": "rt3290.bin", "parent": "/usr/lib/firmware"}, {"filename": "rt73.bin", "parent": "/usr/lib/firmware"}, {"filename": "RTL8192E", "parent": "/usr/lib/firmware"}, {"filename": "rtl_bt", "parent": "/usr/lib/firmware"}, {"filename": "rtl_nic", "parent": "/usr/lib/firmware"}, {"filename": "rtlwifi", "parent": "/usr/lib/firmware"}, {"filename": "rtw88", "parent": "/usr/lib/firmware"}, {"filename": "s2250.fw", "parent": "/usr/lib/firmware"}, {"filename": "s2250_loader.fw", "parent": "/usr/lib/firmware"}, {"filename": "s5p-mfc.fw", "parent": "/usr/lib/firmware"}, {"filename": "s5p-mfc-v6.fw", "parent": "/usr/lib/firmware"}, {"filename": "s5p-mfc-v6-v2.fw", "parent": "/usr/lib/firmware"}, {"filename": "s5p-mfc-v7.fw", "parent": "/usr/lib/firmware"}, {"filename": "s5p-mfc-v8.fw", "parent": "/usr/lib/firmware"}, {"filename": "sb16", "parent": "/usr/lib/firmware"}, {"filename": "sdd_sagrad_1091_1098.bin", "parent": "/usr/lib/firmware"}, {"filename": "slicoss", "parent": "/usr/lib/firmware"}, {"filename": "sms1xxx-hcw-55xxx-dvbt-02.fw", "parent": "/usr/lib/firmware"}, {"filename": "sms1xxx-hcw-55xxx-isdbt-02.fw", "parent": "/usr/lib/firmware"}, {"filename": "sms1xxx-nova-a-dvbt-01.fw", "parent": "/usr/lib/firmware"}, {"filename": "sms1xxx-nova-b-dvbt-01.fw", "parent": "/usr/lib/firmware"}, {"filename": "sms1xxx-stellar-dvbt-01.fw", "parent": "/usr/lib/firmware"}, {"filename": "sun", "parent": "/usr/lib/firmware"}, {"filename": "sxg", "parent": "/usr/lib/firmware"}, {"filename": "TDA7706_OM_v2.5.1_boot.txt", "parent": "/usr/lib/firmware"}, {"filename": "TDA7706_OM_v3.0.2_boot.txt", "parent": "/usr/lib/firmware"}, {"filename": "tdmb_nova_12mhz.inp", "parent": "/usr/lib/firmware"}, {"filename": "tehuti", "parent": "/usr/lib/firmware"}, {"filename": "ti_3410.fw", "parent": "/usr/lib/firmware"}, {"filename": "ti_5052.fw", "parent": "/usr/lib/firmware"}, {"filename": "tigon", "parent": "/usr/lib/firmware"}, {"filename": "ti-keystone", "parent": "/usr/lib/firmware"}, {"filename": "tlg2300_firmware.bin", "parent": "/usr/lib/firmware"}, {"filename": "tr_smctr.bin", "parent": "/usr/lib/firmware"}, {"filename": "ttusb-budget", "parent": "/usr/lib/firmware"}, {"filename": "ueagle-atm", "parent": "/usr/lib/firmware"}, {"filename": "updates", "parent": "/usr/lib/firmware"}, {"filename": "usbdux", "parent": "/usr/lib/firmware"}, {"filename": "usbduxfast_firmware.bin", "parent": "/usr/lib/firmware"}, {"filename": "usbdux_firmware.bin", "parent": "/usr/lib/firmware"}, {"filename": "usbduxsigma_firmware.bin", "parent": "/usr/lib/firmware"}, {"filename": "v4l-cx231xx-avcore-01.fw", "parent": "/usr/lib/firmware"}, {"filename": "v4l-cx2341x-dec.fw", "parent": "/usr/lib/firmware"}, {"filename": "v4l-cx2341x-enc.fw", "parent": "/usr/lib/firmware"}, {"filename": "v4l-cx2341x-init.mpg", "parent": "/usr/lib/firmware"}, {"filename": "v4l-cx23885-avcore-01.fw", "parent": "/usr/lib/firmware"}, {"filename": "v4l-cx25840.fw", "parent": "/usr/lib/firmware"}, {"filename": "v4l-pvrusb2-24xxx-01.fw", "parent": "/usr/lib/firmware"}, {"filename": "v4l-pvrusb2-29xxx-01.fw", "parent": "/usr/lib/firmware"}, {"filename": "vicam", "parent": "/usr/lib/firmware"}, {"filename": "vntwusb.fw", "parent": "/usr/lib/firmware"}, {"filename": "vpu_d.bin", "parent": "/usr/lib/firmware"}, {"filename": "vpu_p.bin", "parent": "/usr/lib/firmware"}, {"filename": "vx", "parent": "/usr/lib/firmware"}, {"filename": "whiteheat.fw", "parent": "/usr/lib/firmware"}, {"filename": "whiteheat_loader.fw", "parent": "/usr/lib/firmware"}, {"filename": "wil6210.brd", "parent": "/usr/lib/firmware"}, {"filename": "wil6210.fw", "parent": "/usr/lib/firmware"}, {"filename": "wsm_22.bin", "parent": "/usr/lib/firmware"}, {"filename": "yam", "parent": "/usr/lib/firmware"}, {"filename": "yamaha", "parent": "/usr/lib/firmware"}, {"filename": "intel-ucode", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64"}, {"filename": "readme-intel", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64"}, {"filename": "06-03-02", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-05-00", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-05-01", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-05-02", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-05-03", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-06-00", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-06-05", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-06-0a", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-06-0d", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-07-01", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-07-02", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-07-03", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-08-01", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-08-03", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-08-06", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-08-0a", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-09-05", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-0a-00", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-0a-01", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-0b-01", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-0b-04", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-0d-06", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-0e-08", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-0e-0c", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-0f-02", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-0f-06", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-0f-07", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-0f-0a", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-0f-0b", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-0f-0d", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-16-01", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-17-06", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-17-07", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-17-0a", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-1a-04", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-1a-05", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-1c-02", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-1c-0a", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-1d-01", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-1e-05", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-25-02", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-25-05", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-26-01", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-2a-07", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-2c-02", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-2d-06", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-2d-07", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-2e-06", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-2f-02", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-37-08", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-37-09", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-3a-09", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-3c-03", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-3d-04", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-3e-04", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-3e-06", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-3e-07", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-3f-02", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-3f-04", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-45-01", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-46-01", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-47-01", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-4c-03", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-4c-04", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-4e-03", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-55-04", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-55-07", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-56-02", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-56-03", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-56-04", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-56-05", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-5c-02", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-5c-09", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-5c-0a", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-5e-03", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-5f-01", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-7a-01", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-8e-09", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-8e-0a", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-8e-0b", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-8e-0c", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-9e-09", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-9e-0a", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-9e-0b", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-9e-0c", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "06-9e-0d", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "0f-00-07", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "0f-00-0a", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "0f-01-02", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "0f-02-04", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "0f-02-05", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "0f-02-06", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "0f-02-07", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "0f-02-09", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "0f-03-02", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "0f-03-03", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "0f-03-04", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "0f-04-01", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "0f-04-03", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "0f-04-04", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "0f-04-07", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "0f-04-08", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "0f-04-09", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "0f-04-0a", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "0f-06-02", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "0f-06-04", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "0f-06-05", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "0f-06-08", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode"}, {"filename": "intel-ucode", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64"}, {"filename": "readme-intel", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64"}, {"filename": "06-03-02", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-05-00", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-05-01", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-05-02", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-05-03", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-06-00", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-06-05", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-06-0a", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-06-0d", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-07-01", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-07-02", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-07-03", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-08-01", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-08-03", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-08-06", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-08-0a", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-09-05", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-0a-00", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-0a-01", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-0b-01", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-0b-04", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-0d-06", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-0e-08", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-0e-0c", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-0f-02", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-0f-06", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-0f-07", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-0f-0a", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-0f-0b", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-0f-0d", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-16-01", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-17-06", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-17-07", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-17-0a", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-1a-04", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-1a-05", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-1c-02", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-1c-0a", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-1d-01", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-1e-05", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-25-02", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-25-05", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-26-01", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-2a-07", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-2c-02", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-2d-06", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-2d-07", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-2e-06", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-2f-02", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-37-08", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-37-09", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-3a-09", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-3c-03", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-3d-04", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-3e-04", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-3e-06", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-3e-07", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-3f-02", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-3f-04", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-45-01", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-46-01", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-47-01", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-4c-03", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-4c-04", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-4e-03", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-55-03", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-55-04", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-55-07", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-56-02", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-56-03", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-56-04", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-56-05", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-5c-02", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-5c-09", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-5c-0a", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-5e-03", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-5f-01", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-7a-01", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-8e-09", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-8e-0a", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-8e-0b", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-8e-0c", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-9e-09", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-9e-0a", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-9e-0b", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-9e-0c", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "06-9e-0d", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "0f-00-07", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "0f-00-0a", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "0f-01-02", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "0f-02-04", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "0f-02-05", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "0f-02-06", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "0f-02-07", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "0f-02-09", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "0f-03-02", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "0f-03-03", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "0f-03-04", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "0f-04-01", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "0f-04-03", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "0f-04-04", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "0f-04-07", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "0f-04-08", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "0f-04-09", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "0f-04-0a", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "0f-06-02", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "0f-06-04", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "0f-06-05", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "0f-06-08", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode"}, {"filename": "intel-ucode", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64"}, {"filename": "readme-intel", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64"}, {"filename": "06-03-02", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-05-00", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-05-01", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-05-02", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-05-03", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-06-00", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-06-05", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-06-0a", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-06-0d", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-07-01", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-07-02", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-07-03", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-08-01", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-08-03", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-08-06", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-08-0a", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-09-05", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-0a-00", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-0a-01", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-0b-01", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-0b-04", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-0d-06", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-0e-08", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-0e-0c", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-0f-02", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-0f-06", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-0f-07", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-0f-0a", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-0f-0b", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-0f-0d", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-16-01", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-17-06", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-17-07", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-17-0a", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-1a-04", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-1a-05", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-1c-02", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-1c-0a", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-1d-01", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-1e-05", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-25-02", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-25-05", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-26-01", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-2a-07", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-2c-02", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-2d-06", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-2d-07", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-2e-06", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-2f-02", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-37-08", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-37-09", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-3a-09", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-3c-03", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-3d-04", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-3e-04", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-3e-06", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-3e-07", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-3f-02", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-3f-04", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-45-01", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-46-01", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-47-01", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-4c-03", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-4c-04", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-4e-03", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-55-03", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-55-04", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-55-07", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-56-02", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-56-03", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-56-04", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-56-05", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-5c-02", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-5c-09", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-5c-0a", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-5e-03", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-5f-01", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-7a-01", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-8e-09", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-8e-0a", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-8e-0b", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-8e-0c", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-9e-09", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-9e-0a", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-9e-0b", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-9e-0c", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "06-9e-0d", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "0f-00-07", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "0f-00-0a", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "0f-01-02", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "0f-02-04", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "0f-02-05", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "0f-02-06", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "0f-02-07", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "0f-02-09", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "0f-03-02", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "0f-03-03", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "0f-03-04", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "0f-04-01", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "0f-04-03", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "0f-04-04", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "0f-04-07", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "0f-04-08", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "0f-04-09", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "0f-04-0a", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "0f-06-02", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "0f-06-04", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "0f-06-05", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "0f-06-08", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode"}, {"filename": "3C359.bin", "parent": "/usr/lib/firmware/3com"}, {"filename": "typhoon.bin", "parent": "/usr/lib/firmware/3com"}, {"filename": "tg1.bin", "parent": "/usr/lib/firmware/acenic"}, {"filename": "tg2.bin", "parent": "/usr/lib/firmware/acenic"}, {"filename": "starfire_rx.bin", "parent": "/usr/lib/firmware/adaptec"}, {"filename": "starfire_tx.bin", "parent": "/usr/lib/firmware/adaptec"}, {"filename": "3550.bin", "parent": "/usr/lib/firmware/advansys"}, {"filename": "38C0800.bin", "parent": "/usr/lib/firmware/advansys"}, {"filename": "38C1600.bin", "parent": "/usr/lib/firmware/advansys"}, {"filename": "mcode.bin", "parent": "/usr/lib/firmware/advansys"}, {"filename": "amd_sev_fam17h_model0xh.sbin", "parent": "/usr/lib/firmware/amd"}, {"filename": "banks_k_2_smc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "bonaire_ce.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "bonaire_k_smc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "bonaire_mc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "bonaire_me.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "bonaire_mec.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "bonaire_pfp.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "bonaire_rlc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "bonaire_sdma1.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "bonaire_sdma.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "bonaire_smc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "bonaire_uvd.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "bonaire_vce.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "carrizo_ce.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "carrizo_me.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "carrizo_mec2.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "carrizo_mec.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "carrizo_pfp.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "carrizo_rlc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "carrizo_sdma1.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "carrizo_sdma.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "carrizo_uvd.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "carrizo_vce.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "fiji_ce.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "fiji_mc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "fiji_me.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "fiji_mec2.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "fiji_mec.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "fiji_pfp.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "fiji_rlc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "fiji_sdma1.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "fiji_sdma.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "fiji_smc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "fiji_uvd.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "fiji_vce.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "hainan_ce.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "hainan_k_smc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "hainan_mc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "hainan_me.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "hainan_pfp.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "hainan_rlc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "hainan_smc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "hawaii_ce.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "hawaii_k_smc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "hawaii_mc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "hawaii_me.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "hawaii_mec.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "hawaii_pfp.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "hawaii_rlc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "hawaii_sdma1.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "hawaii_sdma.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "hawaii_smc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "hawaii_uvd.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "hawaii_vce.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "kabini_ce.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "kabini_me.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "kabini_mec.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "kabini_pfp.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "kabini_rlc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "kabini_sdma1.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "kabini_sdma.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "kabini_uvd.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "kabini_vce.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "kaveri_ce.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "kaveri_me.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "kaveri_mec2.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "kaveri_mec.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "kaveri_pfp.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "kaveri_rlc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "kaveri_sdma1.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "kaveri_sdma.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "kaveri_uvd.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "kaveri_vce.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "mullins_ce.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "mullins_me.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "mullins_mec.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "mullins_pfp.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "mullins_rlc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "mullins_sdma1.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "mullins_sdma.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "mullins_uvd.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "mullins_vce.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "oland_ce.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "oland_k_smc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "oland_mc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "oland_me.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "oland_pfp.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "oland_rlc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "oland_smc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "picasso_asd.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "picasso_ce.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "picasso_gpu_info.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "picasso_me.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "picasso_mec2.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "picasso_mec.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "picasso_pfp.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "picasso_rlc_am4.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "picasso_rlc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "picasso_sdma.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "picasso_vcn.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "pitcairn_ce.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "pitcairn_k_smc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "pitcairn_mc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "pitcairn_me.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "pitcairn_pfp.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "pitcairn_rlc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "pitcairn_smc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris10_ce_2.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris10_ce.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris10_k2_smc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris10_k_mc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris10_k_smc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris10_mc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris10_me_2.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris10_me.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris10_mec2_2.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris10_mec_2.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris10_mec2.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris10_mec.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris10_pfp_2.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris10_pfp.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris10_rlc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris10_sdma1.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris10_sdma.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris10_smc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris10_smc_sk.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris10_uvd.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris10_vce.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris11_ce_2.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris11_ce.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris11_k2_smc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris11_k_mc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris11_k_smc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris11_mc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris11_me_2.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris11_me.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris11_mec2_2.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris11_mec_2.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris11_mec2.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris11_mec.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris11_pfp_2.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris11_pfp.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris11_rlc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris11_sdma1.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris11_sdma.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris11_smc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris11_smc_sk.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris11_uvd.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris11_vce.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris12_ce_2.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris12_ce.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris12_k_mc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris12_k_smc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris12_mc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris12_me_2.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris12_me.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris12_mec2_2.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris12_mec_2.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris12_mec2.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris12_mec.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris12_pfp_2.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris12_pfp.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris12_rlc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris12_sdma1.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris12_sdma.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris12_smc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris12_uvd.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "polaris12_vce.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "raven2_asd.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "raven2_ce.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "raven2_gpu_info.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "raven2_me.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "raven2_mec2.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "raven2_mec.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "raven2_pfp.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "raven2_rlc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "raven2_sdma.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "raven2_vcn.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "raven_asd.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "raven_ce.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "raven_dmcu.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "raven_gpu_info.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "raven_me.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "raven_mec2.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "raven_mec.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "raven_pfp.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "raven_rlc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "raven_sdma.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "raven_vcn.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "si58_mc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "stoney_ce.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "stoney_me.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "stoney_mec.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "stoney_pfp.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "stoney_rlc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "stoney_sdma.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "stoney_uvd.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "stoney_vce.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "tahiti_ce.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "tahiti_k_smc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "tahiti_mc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "tahiti_me.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "tahiti_pfp.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "tahiti_rlc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "tahiti_smc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "tonga_ce.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "tonga_k_smc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "tonga_mc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "tonga_me.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "tonga_mec2.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "tonga_mec.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "tonga_pfp.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "tonga_rlc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "tonga_sdma1.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "tonga_sdma.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "tonga_smc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "tonga_uvd.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "tonga_vce.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "topaz_ce.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "topaz_k_smc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "topaz_mc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "topaz_me.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "topaz_mec2.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "topaz_mec.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "topaz_pfp.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "topaz_rlc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "topaz_sdma1.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "topaz_sdma.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "topaz_smc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vega10_acg_smc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vega10_asd.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vega10_ce.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vega10_gpu_info.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vega10_me.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vega10_mec2.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vega10_mec.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vega10_pfp.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vega10_rlc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vega10_sdma1.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vega10_sdma.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vega10_smc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vega10_sos.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vega10_uvd.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vega10_vce.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vega12_asd.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vega12_ce.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vega12_gpu_info.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vega12_me.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vega12_mec2.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vega12_mec.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vega12_pfp.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vega12_rlc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vega12_sdma1.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vega12_sdma.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vega12_smc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vega12_sos.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vega12_uvd.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vega12_vce.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vega20_asd.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vega20_ce.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vega20_me.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vega20_mec2.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vega20_mec.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vega20_pfp.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vega20_rlc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vega20_sdma1.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vega20_sdma.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vega20_smc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vega20_sos.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vega20_uvd.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vega20_vce.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vegam_ce.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vegam_me.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vegam_mec2.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vegam_mec.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vegam_pfp.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vegam_rlc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vegam_sdma1.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vegam_sdma.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vegam_smc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vegam_uvd.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "vegam_vce.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "verde_ce.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "verde_k_smc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "verde_mc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "verde_me.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "verde_pfp.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "verde_rlc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "verde_smc.bin", "parent": "/usr/lib/firmware/amdgpu"}, {"filename": "microcode_amd.bin", "parent": "/usr/lib/firmware/amd-ucode"}, {"filename": "microcode_amd.bin.asc", "parent": "/usr/lib/firmware/amd-ucode"}, {"filename": "microcode_amd_fam15h.bin", "parent": "/usr/lib/firmware/amd-ucode"}, {"filename": "microcode_amd_fam15h.bin.asc", "parent": "/usr/lib/firmware/amd-ucode"}, {"filename": "microcode_amd_fam16h.bin", "parent": "/usr/lib/firmware/amd-ucode"}, {"filename": "microcode_amd_fam16h.bin.asc", "parent": "/usr/lib/firmware/amd-ucode"}, {"filename": "microcode_amd_fam17h.bin", "parent": "/usr/lib/firmware/amd-ucode"}, {"filename": "microcode_amd_fam17h.bin.asc", "parent": "/usr/lib/firmware/amd-ucode"}, {"filename": "1020200", "parent": "/usr/lib/firmware/ar3k"}, {"filename": "1020201", "parent": "/usr/lib/firmware/ar3k"}, {"filename": "1020201coex", "parent": "/usr/lib/firmware/ar3k"}, {"filename": "30000", "parent": "/usr/lib/firmware/ar3k"}, {"filename": "30101", "parent": "/usr/lib/firmware/ar3k"}, {"filename": "30101coex", "parent": "/usr/lib/firmware/ar3k"}, {"filename": "AthrBT_0x01020001.dfu", "parent": "/usr/lib/firmware/ar3k"}, {"filename": "AthrBT_0x01020200.dfu", "parent": "/usr/lib/firmware/ar3k"}, {"filename": "AthrBT_0x01020201.dfu", "parent": "/usr/lib/firmware/ar3k"}, {"filename": "AthrBT_0x11020000.dfu", "parent": "/usr/lib/firmware/ar3k"}, {"filename": "AthrBT_0x11020100.dfu", "parent": "/usr/lib/firmware/ar3k"}, {"filename": "AthrBT_0x31010000.dfu", "parent": "/usr/lib/firmware/ar3k"}, {"filename": "AthrBT_0x31010100.dfu", "parent": "/usr/lib/firmware/ar3k"}, {"filename": "AthrBT_0x41020000.dfu", "parent": "/usr/lib/firmware/ar3k"}, {"filename": "ramps_0x01020001_26.dfu", "parent": "/usr/lib/firmware/ar3k"}, {"filename": "ramps_0x01020200_26.dfu", "parent": "/usr/lib/firmware/ar3k"}, {"filename": "ramps_0x01020200_40.dfu", "parent": "/usr/lib/firmware/ar3k"}, {"filename": "ramps_0x01020201_26.dfu", "parent": "/usr/lib/firmware/ar3k"}, {"filename": "ramps_0x01020201_40.dfu", "parent": "/usr/lib/firmware/ar3k"}, {"filename": "ramps_0x11020000_40.dfu", "parent": "/usr/lib/firmware/ar3k"}, {"filename": "ramps_0x11020100_40.dfu", "parent": "/usr/lib/firmware/ar3k"}, {"filename": "ramps_0x31010000_40.dfu", "parent": "/usr/lib/firmware/ar3k"}, {"filename": "ramps_0x31010100_40.dfu", "parent": "/usr/lib/firmware/ar3k"}, {"filename": "ramps_0x41020000_40.dfu", "parent": "/usr/lib/firmware/ar3k"}, {"filename": "ar3kbdaddr.pst", "parent": "/usr/lib/firmware/ar3k/1020200"}, {"filename": "PS_ASIC.pst", "parent": "/usr/lib/firmware/ar3k/1020200"}, {"filename": "RamPatch.txt", "parent": "/usr/lib/firmware/ar3k/1020200"}, {"filename": "PS_ASIC.pst", "parent": "/usr/lib/firmware/ar3k/1020201"}, {"filename": "RamPatch.txt", "parent": "/usr/lib/firmware/ar3k/1020201"}, {"filename": "ramps_0x01020201_26_HighPriority.dfu", "parent": "/usr/lib/firmware/ar3k/1020201coex"}, {"filename": "ar3kbdaddr.pst", "parent": "/usr/lib/firmware/ar3k/30000"}, {"filename": "PS_ASIC.pst", "parent": "/usr/lib/firmware/ar3k/30000"}, {"filename": "RamPatch.txt", "parent": "/usr/lib/firmware/ar3k/30000"}, {"filename": "ar3kbdaddr.pst", "parent": "/usr/lib/firmware/ar3k/30101"}, {"filename": "PS_ASIC.pst", "parent": "/usr/lib/firmware/ar3k/30101"}, {"filename": "RamPatch.txt", "parent": "/usr/lib/firmware/ar3k/30101"}, {"filename": "ar3kbdaddr.pst", "parent": "/usr/lib/firmware/ar3k/30101coex"}, {"filename": "PS_ASIC_aclHighPri.pst", "parent": "/usr/lib/firmware/ar3k/30101coex"}, {"filename": "PS_ASIC_aclLowPri.pst", "parent": "/usr/lib/firmware/ar3k/30101coex"}, {"filename": "PS_ASIC.pst", "parent": "/usr/lib/firmware/ar3k/30101coex"}, {"filename": "RamPatch.txt", "parent": "/usr/lib/firmware/ar3k/30101coex"}, {"filename": "dsp2400.bin", "parent": "/usr/lib/firmware/asihpi"}, {"filename": "dsp5000.bin", "parent": "/usr/lib/firmware/asihpi"}, {"filename": "dsp6200.bin", "parent": "/usr/lib/firmware/asihpi"}, {"filename": "dsp6205.bin", "parent": "/usr/lib/firmware/asihpi"}, {"filename": "dsp6400.bin", "parent": "/usr/lib/firmware/asihpi"}, {"filename": "dsp6600.bin", "parent": "/usr/lib/firmware/asihpi"}, {"filename": "dsp8700.bin", "parent": "/usr/lib/firmware/asihpi"}, {"filename": "dsp8900.bin", "parent": "/usr/lib/firmware/asihpi"}, {"filename": "QCA4019", "parent": "/usr/lib/firmware/ath10k"}, {"filename": "QCA6174", "parent": "/usr/lib/firmware/ath10k"}, {"filename": "QCA9377", "parent": "/usr/lib/firmware/ath10k"}, {"filename": "QCA9887", "parent": "/usr/lib/firmware/ath10k"}, {"filename": "QCA9888", "parent": "/usr/lib/firmware/ath10k"}, {"filename": "QCA988X", "parent": "/usr/lib/firmware/ath10k"}, {"filename": "QCA9984", "parent": "/usr/lib/firmware/ath10k"}, {"filename": "QCA99X0", "parent": "/usr/lib/firmware/ath10k"}, {"filename": "hw1.0", "parent": "/usr/lib/firmware/ath10k/QCA4019"}, {"filename": "board-2.bin", "parent": "/usr/lib/firmware/ath10k/QCA4019/hw1.0"}, {"filename": "firmware-5.bin", "parent": "/usr/lib/firmware/ath10k/QCA4019/hw1.0"}, {"filename": "notice_ath10k_firmware-5.txt", "parent": "/usr/lib/firmware/ath10k/QCA4019/hw1.0"}, {"filename": "hw2.1", "parent": "/usr/lib/firmware/ath10k/QCA6174"}, {"filename": "hw3.0", "parent": "/usr/lib/firmware/ath10k/QCA6174"}, {"filename": "board-2.bin", "parent": "/usr/lib/firmware/ath10k/QCA6174/hw2.1"}, {"filename": "board.bin", "parent": "/usr/lib/firmware/ath10k/QCA6174/hw2.1"}, {"filename": "firmware-5.bin", "parent": "/usr/lib/firmware/ath10k/QCA6174/hw2.1"}, {"filename": "notice_ath10k_firmware-5.txt", "parent": "/usr/lib/firmware/ath10k/QCA6174/hw2.1"}, {"filename": "board-2.bin", "parent": "/usr/lib/firmware/ath10k/QCA6174/hw3.0"}, {"filename": "board.bin", "parent": "/usr/lib/firmware/ath10k/QCA6174/hw3.0"}, {"filename": "firmware-4.bin", "parent": "/usr/lib/firmware/ath10k/QCA6174/hw3.0"}, {"filename": "firmware-6.bin", "parent": "/usr/lib/firmware/ath10k/QCA6174/hw3.0"}, {"filename": "notice_ath10k_firmware-4.txt", "parent": "/usr/lib/firmware/ath10k/QCA6174/hw3.0"}, {"filename": "notice_ath10k_firmware-6.txt", "parent": "/usr/lib/firmware/ath10k/QCA6174/hw3.0"}, {"filename": "hw1.0", "parent": "/usr/lib/firmware/ath10k/QCA9377"}, {"filename": "board-2.bin", "parent": "/usr/lib/firmware/ath10k/QCA9377/hw1.0"}, {"filename": "board.bin", "parent": "/usr/lib/firmware/ath10k/QCA9377/hw1.0"}, {"filename": "firmware-5.bin", "parent": "/usr/lib/firmware/ath10k/QCA9377/hw1.0"}, {"filename": "firmware-6.bin", "parent": "/usr/lib/firmware/ath10k/QCA9377/hw1.0"}, {"filename": "notice_ath10k_firmware-5.txt", "parent": "/usr/lib/firmware/ath10k/QCA9377/hw1.0"}, {"filename": "notice_ath10k_firmware-6.txt", "parent": "/usr/lib/firmware/ath10k/QCA9377/hw1.0"}, {"filename": "hw1.0", "parent": "/usr/lib/firmware/ath10k/QCA9887"}, {"filename": "board.bin", "parent": "/usr/lib/firmware/ath10k/QCA9887/hw1.0"}, {"filename": "firmware-5.bin", "parent": "/usr/lib/firmware/ath10k/QCA9887/hw1.0"}, {"filename": "notice_ath10k_firmware-5.txt", "parent": "/usr/lib/firmware/ath10k/QCA9887/hw1.0"}, {"filename": "hw2.0", "parent": "/usr/lib/firmware/ath10k/QCA9888"}, {"filename": "board-2.bin", "parent": "/usr/lib/firmware/ath10k/QCA9888/hw2.0"}, {"filename": "firmware-5.bin", "parent": "/usr/lib/firmware/ath10k/QCA9888/hw2.0"}, {"filename": "notice_ath10k_firmware-5.txt", "parent": "/usr/lib/firmware/ath10k/QCA9888/hw2.0"}, {"filename": "hw2.0", "parent": "/usr/lib/firmware/ath10k/QCA988X"}, {"filename": "board.bin", "parent": "/usr/lib/firmware/ath10k/QCA988X/hw2.0"}, {"filename": "firmware-4.bin", "parent": "/usr/lib/firmware/ath10k/QCA988X/hw2.0"}, {"filename": "firmware-5.bin", "parent": "/usr/lib/firmware/ath10k/QCA988X/hw2.0"}, {"filename": "notice_ath10k_firmware-4.txt", "parent": "/usr/lib/firmware/ath10k/QCA988X/hw2.0"}, {"filename": "notice_ath10k_firmware-5.txt", "parent": "/usr/lib/firmware/ath10k/QCA988X/hw2.0"}, {"filename": "hw1.0", "parent": "/usr/lib/firmware/ath10k/QCA9984"}, {"filename": "board-2.bin", "parent": "/usr/lib/firmware/ath10k/QCA9984/hw1.0"}, {"filename": "firmware-5.bin", "parent": "/usr/lib/firmware/ath10k/QCA9984/hw1.0"}, {"filename": "notice_ath10k_firmware-5.txt", "parent": "/usr/lib/firmware/ath10k/QCA9984/hw1.0"}, {"filename": "hw2.0", "parent": "/usr/lib/firmware/ath10k/QCA99X0"}, {"filename": "board.bin", "parent": "/usr/lib/firmware/ath10k/QCA99X0/hw2.0"}, {"filename": "firmware-5.bin", "parent": "/usr/lib/firmware/ath10k/QCA99X0/hw2.0"}, {"filename": "notice_ath10k_firmware-5.txt", "parent": "/usr/lib/firmware/ath10k/QCA99X0/hw2.0"}, {"filename": "htc_7010-1.4.0.fw", "parent": "/usr/lib/firmware/ath9k_htc"}, {"filename": "htc_9271-1.4.0.fw", "parent": "/usr/lib/firmware/ath9k_htc"}, {"filename": "wilc1000_ap_fw.bin", "parent": "/usr/lib/firmware/atmel"}, {"filename": "wilc1000_fw.bin", "parent": "/usr/lib/firmware/atmel"}, {"filename": "wilc1000_p2p_fw.bin", "parent": "/usr/lib/firmware/atmel"}, {"filename": "wilc1000_wifi_firmware.bin", "parent": "/usr/lib/firmware/atmel"}, {"filename": "atusb-0.2.dfu", "parent": "/usr/lib/firmware/atusb"}, {"filename": "atusb-0.3.dfu", "parent": "/usr/lib/firmware/atusb"}, {"filename": "ChangeLog", "parent": "/usr/lib/firmware/atusb"}, {"filename": "rzusb-0.3.bin", "parent": "/usr/lib/firmware/atusb"}, {"filename": "bootcode.bin", "parent": "/usr/lib/firmware/av7110"}, {"filename": "Boot.S", "parent": "/usr/lib/firmware/av7110"}, {"filename": "Makefile", "parent": "/usr/lib/firmware/av7110"}, {"filename": "bnx2-mips-06-4.6.16.fw", "parent": "/usr/lib/firmware/bnx2"}, {"filename": "bnx2-mips-06-5.0.0.j3.fw", "parent": "/usr/lib/firmware/bnx2"}, {"filename": "bnx2-mips-06-5.0.0.j6.fw", "parent": "/usr/lib/firmware/bnx2"}, {"filename": "bnx2-mips-06-6.0.15.fw", "parent": "/usr/lib/firmware/bnx2"}, {"filename": "bnx2-mips-06-6.2.1.fw", "parent": "/usr/lib/firmware/bnx2"}, {"filename": "bnx2-mips-06-6.2.3.fw", "parent": "/usr/lib/firmware/bnx2"}, {"filename": "bnx2-mips-09-4.6.17.fw", "parent": "/usr/lib/firmware/bnx2"}, {"filename": "bnx2-mips-09-5.0.0.j15.fw", "parent": "/usr/lib/firmware/bnx2"}, {"filename": "bnx2-mips-09-5.0.0.j3.fw", "parent": "/usr/lib/firmware/bnx2"}, {"filename": "bnx2-mips-09-5.0.0.j9.fw", "parent": "/usr/lib/firmware/bnx2"}, {"filename": "bnx2-mips-09-6.0.17.fw", "parent": "/usr/lib/firmware/bnx2"}, {"filename": "bnx2-mips-09-6.2.1a.fw", "parent": "/usr/lib/firmware/bnx2"}, {"filename": "bnx2-mips-09-6.2.1b.fw", "parent": "/usr/lib/firmware/bnx2"}, {"filename": "bnx2-mips-09-6.2.1.fw", "parent": "/usr/lib/firmware/bnx2"}, {"filename": "bnx2-rv2p-06-4.6.16.fw", "parent": "/usr/lib/firmware/bnx2"}, {"filename": "bnx2-rv2p-06-5.0.0.j3.fw", "parent": "/usr/lib/firmware/bnx2"}, {"filename": "bnx2-rv2p-06-6.0.15.fw", "parent": "/usr/lib/firmware/bnx2"}, {"filename": "bnx2-rv2p-09-4.6.15.fw", "parent": "/usr/lib/firmware/bnx2"}, {"filename": "bnx2-rv2p-09-5.0.0.j10.fw", "parent": "/usr/lib/firmware/bnx2"}, {"filename": "bnx2-rv2p-09-5.0.0.j3.fw", "parent": "/usr/lib/firmware/bnx2"}, {"filename": "bnx2-rv2p-09-6.0.17.fw", "parent": "/usr/lib/firmware/bnx2"}, {"filename": "bnx2-rv2p-09ax-5.0.0.j10.fw", "parent": "/usr/lib/firmware/bnx2"}, {"filename": "bnx2-rv2p-09ax-5.0.0.j3.fw", "parent": "/usr/lib/firmware/bnx2"}, {"filename": "bnx2-rv2p-09ax-6.0.17.fw", "parent": "/usr/lib/firmware/bnx2"}, {"filename": "bnx2x-e1-6.0.34.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e1-6.2.5.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e1-6.2.9.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e1-7.0.20.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e1-7.0.23.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e1-7.0.29.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e1-7.10.51.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e1-7.12.30.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e1-7.13.1.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e1-7.13.11.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e1-7.2.16.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e1-7.2.51.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e1-7.8.17.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e1-7.8.19.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e1-7.8.2.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e1h-6.0.34.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e1h-6.2.5.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e1h-6.2.9.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e1h-7.0.20.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e1h-7.0.23.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e1h-7.0.29.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e1h-7.10.51.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e1h-7.12.30.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e1h-7.13.1.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e1h-7.13.11.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e1h-7.2.16.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e1h-7.2.51.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e1h-7.8.17.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e1h-7.8.19.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e1h-7.8.2.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e2-6.0.34.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e2-6.2.5.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e2-6.2.9.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e2-7.0.20.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e2-7.0.23.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e2-7.0.29.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e2-7.10.51.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e2-7.12.30.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e2-7.13.1.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e2-7.13.11.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e2-7.2.16.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e2-7.2.51.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e2-7.8.17.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e2-7.8.19.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "bnx2x-e2-7.8.2.0.fw", "parent": "/usr/lib/firmware/bnx2x"}, {"filename": "BCM-0bb4-0306.hcd", "parent": "/usr/lib/firmware/brcm"}, {"filename": "bcm4329-fullmac-4.bin", "parent": "/usr/lib/firmware/brcm"}, {"filename": "bcm43xx-0.fw", "parent": "/usr/lib/firmware/brcm"}, {"filename": "bcm43xx_hdr-0.fw", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac43143.bin", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac43143-sdio.bin", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac43236b.bin", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac43241b0-sdio.bin", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac43241b4-sdio.bin", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac43241b5-sdio.bin", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac43242a.bin", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac4329-sdio.bin", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac4330-sdio.bin", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac4330-sdio.Prowise-PT301.txt", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac43340-sdio.bin", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac43340-sdio.meegopad-t08.txt", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac4334-sdio.bin", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac4335-sdio.bin", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac43362-sdio.bin", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac43362-sdio.cubietech,cubietruck.txt", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac43362-sdio.lemaker,bananapro.txt", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac4339-sdio.bin", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac43430a0-sdio.bin", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac43430a0-sdio.jumper-ezpad-mini3.txt", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac43430a0-sdio.ONDA-V80 PLUS.txt", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac43430-sdio.AP6212.txt", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac43430-sdio.bin", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac43430-sdio.Hampoo-D2D3_Vi8A1.txt", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac43430-sdio.MUR1DX.txt", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac43430-sdio.raspberrypi,3-model-b.txt", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac43455-sdio.bin", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac43455-sdio.raspberrypi,3-model-b-plus.txt", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac4350c2-pcie.bin", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac4350-pcie.bin", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac4354-sdio.bin", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac43569.bin", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac4356-pcie.bin", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac4356-pcie.gpd-win-pocket.txt", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac4356-sdio.bin", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac43570-pcie.bin", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac4358-pcie.bin", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac43602-pcie.ap.bin", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac43602-pcie.bin", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac4366b-pcie.bin", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac4366c-pcie.bin", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac4371-pcie.bin", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac4373.bin", "parent": "/usr/lib/firmware/brcm"}, {"filename": "brcmfmac4373-sdio.bin", "parent": "/usr/lib/firmware/brcm"}, {"filename": "mhdp8546.bin", "parent": "/usr/lib/firmware/cadence"}, {"filename": "cnn55xx_se.fw", "parent": "/usr/lib/firmware/cavium"}, {"filename": "3CCFEM556.cis", "parent": "/usr/lib/firmware/cis"}, {"filename": "3CXEM556.cis", "parent": "/usr/lib/firmware/cis"}, {"filename": "COMpad2.cis", "parent": "/usr/lib/firmware/cis"}, {"filename": "COMpad4.cis", "parent": "/usr/lib/firmware/cis"}, {"filename": "DP83903.cis", "parent": "/usr/lib/firmware/cis"}, {"filename": "LA-PCM.cis", "parent": "/usr/lib/firmware/cis"}, {"filename": "Makefile", "parent": "/usr/lib/firmware/cis"}, {"filename": "MT5634ZLX.cis", "parent": "/usr/lib/firmware/cis"}, {"filename": "NE2K.cis", "parent": "/usr/lib/firmware/cis"}, {"filename": "PCMLM28.cis", "parent": "/usr/lib/firmware/cis"}, {"filename": "PE-200.cis", "parent": "/usr/lib/firmware/cis"}, {"filename": "PE520.cis", "parent": "/usr/lib/firmware/cis"}, {"filename": "RS-COM-2P.cis", "parent": "/usr/lib/firmware/cis"}, {"filename": "src", "parent": "/usr/lib/firmware/cis"}, {"filename": "SW_555_SER.cis", "parent": "/usr/lib/firmware/cis"}, {"filename": "SW_7xx_SER.cis", "parent": "/usr/lib/firmware/cis"}, {"filename": "SW_8xx_SER.cis", "parent": "/usr/lib/firmware/cis"}, {"filename": "tamarack.cis", "parent": "/usr/lib/firmware/cis"}, {"filename": "3CCFEM556.cis", "parent": "/usr/lib/firmware/cis/src"}, {"filename": "3CXEM556.cis", "parent": "/usr/lib/firmware/cis/src"}, {"filename": "COMpad2.cis", "parent": "/usr/lib/firmware/cis/src"}, {"filename": "COMpad4.cis", "parent": "/usr/lib/firmware/cis/src"}, {"filename": "DP83903.cis", "parent": "/usr/lib/firmware/cis/src"}, {"filename": "LA-PCM.cis", "parent": "/usr/lib/firmware/cis/src"}, {"filename": "MT5634ZLX.cis", "parent": "/usr/lib/firmware/cis/src"}, {"filename": "NE2K.cis", "parent": "/usr/lib/firmware/cis/src"}, {"filename": "PCMLM28.cis", "parent": "/usr/lib/firmware/cis/src"}, {"filename": "PE-200.cis", "parent": "/usr/lib/firmware/cis/src"}, {"filename": "PE520.cis", "parent": "/usr/lib/firmware/cis/src"}, {"filename": "RS-COM-2P.cis", "parent": "/usr/lib/firmware/cis/src"}, {"filename": "tamarack.cis", "parent": "/usr/lib/firmware/cis/src"}, {"filename": "stv0672_vp4.bin", "parent": "/usr/lib/firmware/cpia2"}, {"filename": "ba1", "parent": "/usr/lib/firmware/cs46xx"}, {"filename": "cwc4630", "parent": "/usr/lib/firmware/cs46xx"}, {"filename": "cwcasync", "parent": "/usr/lib/firmware/cs46xx"}, {"filename": "cwcbinhack", "parent": "/usr/lib/firmware/cs46xx"}, {"filename": "cwcdma", "parent": "/usr/lib/firmware/cs46xx"}, {"filename": "cwcsnoop", "parent": "/usr/lib/firmware/cs46xx"}, {"filename": "ael2005_opt_edc.bin", "parent": "/usr/lib/firmware/cxgb3"}, {"filename": "ael2005_twx_edc.bin", "parent": "/usr/lib/firmware/cxgb3"}, {"filename": "ael2020_twx_edc.bin", "parent": "/usr/lib/firmware/cxgb3"}, {"filename": "t3b_psram-1.1.0.bin", "parent": "/usr/lib/firmware/cxgb3"}, {"filename": "t3c_psram-1.1.0.bin", "parent": "/usr/lib/firmware/cxgb3"}, {"filename": "t3fw-7.0.0.bin", "parent": "/usr/lib/firmware/cxgb3"}, {"filename": "t3fw-7.10.0.bin", "parent": "/usr/lib/firmware/cxgb3"}, {"filename": "t3fw-7.1.0.bin", "parent": "/usr/lib/firmware/cxgb3"}, {"filename": "t3fw-7.12.0.bin", "parent": "/usr/lib/firmware/cxgb3"}, {"filename": "t3fw-7.4.0.bin", "parent": "/usr/lib/firmware/cxgb3"}, {"filename": "aq1202_fw.cld", "parent": "/usr/lib/firmware/cxgb4"}, {"filename": "bcm8483.bin", "parent": "/usr/lib/firmware/cxgb4"}, {"filename": "t4fw-1.14.4.0.bin", "parent": "/usr/lib/firmware/cxgb4"}, {"filename": "t4fw-1.15.37.0.bin", "parent": "/usr/lib/firmware/cxgb4"}, {"filename": "t4fw-1.23.4.0.bin", "parent": "/usr/lib/firmware/cxgb4"}, {"filename": "t4fw.bin", "parent": "/usr/lib/firmware/cxgb4"}, {"filename": "t5fw-1.14.4.0.bin", "parent": "/usr/lib/firmware/cxgb4"}, {"filename": "t5fw-1.15.37.0.bin", "parent": "/usr/lib/firmware/cxgb4"}, {"filename": "t5fw-1.23.4.0.bin", "parent": "/usr/lib/firmware/cxgb4"}, {"filename": "t5fw.bin", "parent": "/usr/lib/firmware/cxgb4"}, {"filename": "t6fw-1.23.4.0.bin", "parent": "/usr/lib/firmware/cxgb4"}, {"filename": "t6fw.bin", "parent": "/usr/lib/firmware/cxgb4"}, {"filename": "bitstream.bin", "parent": "/usr/lib/firmware/dabusb"}, {"filename": "firmware.fw", "parent": "/usr/lib/firmware/dabusb"}, {"filename": "mc", "parent": "/usr/lib/firmware/dpaa2"}, {"filename": "mc_10.10.0_ls1088a.itb", "parent": "/usr/lib/firmware/dpaa2/mc"}, {"filename": "mc_10.10.0_ls2088a.itb", "parent": "/usr/lib/firmware/dpaa2/mc"}, {"filename": "mc_10.10.0_lx2160a.itb", "parent": "/usr/lib/firmware/dpaa2/mc"}, {"filename": "bootstrap.bin", "parent": "/usr/lib/firmware/dsp56k"}, {"filename": "concat-bootstrap.pl", "parent": "/usr/lib/firmware/dsp56k"}, {"filename": "Makefile", "parent": "/usr/lib/firmware/dsp56k"}, {"filename": "d101m_ucode.bin", "parent": "/usr/lib/firmware/e100"}, {"filename": "d101s_ucode.bin", "parent": "/usr/lib/firmware/e100"}, {"filename": "d102e_ucode.bin", "parent": "/usr/lib/firmware/e100"}, {"filename": "3g_asic.fw", "parent": "/usr/lib/firmware/ea"}, {"filename": "darla20_dsp.fw", "parent": "/usr/lib/firmware/ea"}, {"filename": "darla24_dsp.fw", "parent": "/usr/lib/firmware/ea"}, {"filename": "echo3g_dsp.fw", "parent": "/usr/lib/firmware/ea"}, {"filename": "gina20_dsp.fw", "parent": "/usr/lib/firmware/ea"}, {"filename": "gina24_301_asic.fw", "parent": "/usr/lib/firmware/ea"}, {"filename": "gina24_301_dsp.fw", "parent": "/usr/lib/firmware/ea"}, {"filename": "gina24_361_asic.fw", "parent": "/usr/lib/firmware/ea"}, {"filename": "gina24_361_dsp.fw", "parent": "/usr/lib/firmware/ea"}, {"filename": "indigo_dj_dsp.fw", "parent": "/usr/lib/firmware/ea"}, {"filename": "indigo_djx_dsp.fw", "parent": "/usr/lib/firmware/ea"}, {"filename": "indigo_dsp.fw", "parent": "/usr/lib/firmware/ea"}, {"filename": "indigo_io_dsp.fw", "parent": "/usr/lib/firmware/ea"}, {"filename": "indigo_iox_dsp.fw", "parent": "/usr/lib/firmware/ea"}, {"filename": "layla20_asic.fw", "parent": "/usr/lib/firmware/ea"}, {"filename": "layla20_dsp.fw", "parent": "/usr/lib/firmware/ea"}, {"filename": "layla24_1_asic.fw", "parent": "/usr/lib/firmware/ea"}, {"filename": "layla24_2A_asic.fw", "parent": "/usr/lib/firmware/ea"}, {"filename": "layla24_2S_asic.fw", "parent": "/usr/lib/firmware/ea"}, {"filename": "layla24_dsp.fw", "parent": "/usr/lib/firmware/ea"}, {"filename": "loader_dsp.fw", "parent": "/usr/lib/firmware/ea"}, {"filename": "mia_dsp.fw", "parent": "/usr/lib/firmware/ea"}, {"filename": "mona_2_asic.fw", "parent": "/usr/lib/firmware/ea"}, {"filename": "mona_301_1_asic_48.fw", "parent": "/usr/lib/firmware/ea"}, {"filename": "mona_301_1_asic_96.fw", "parent": "/usr/lib/firmware/ea"}, {"filename": "mona_301_dsp.fw", "parent": "/usr/lib/firmware/ea"}, {"filename": "mona_361_1_asic_48.fw", "parent": "/usr/lib/firmware/ea"}, {"filename": "mona_361_1_asic_96.fw", "parent": "/usr/lib/firmware/ea"}, {"filename": "mona_361_dsp.fw", "parent": "/usr/lib/firmware/ea"}, {"filename": "boot2.fw", "parent": "/usr/lib/firmware/edgeport"}, {"filename": "boot.fw", "parent": "/usr/lib/firmware/edgeport"}, {"filename": "down2.fw", "parent": "/usr/lib/firmware/edgeport"}, {"filename": "down3.bin", "parent": "/usr/lib/firmware/edgeport"}, {"filename": "down.fw", "parent": "/usr/lib/firmware/edgeport"}, {"filename": "bitstream.fw", "parent": "/usr/lib/firmware/emi26"}, {"filename": "firmware.fw", "parent": "/usr/lib/firmware/emi26"}, {"filename": "loader.fw", "parent": "/usr/lib/firmware/emi26"}, {"filename": "bitstream.fw", "parent": "/usr/lib/firmware/emi62"}, {"filename": "loader.fw", "parent": "/usr/lib/firmware/emi62"}, {"filename": "midi.fw", "parent": "/usr/lib/firmware/emi62"}, {"filename": "spdif.fw", "parent": "/usr/lib/firmware/emi62"}, {"filename": "audio_dock.fw", "parent": "/usr/lib/firmware/emu"}, {"filename": "emu0404.fw", "parent": "/usr/lib/firmware/emu"}, {"filename": "emu1010b.fw", "parent": "/usr/lib/firmware/emu"}, {"filename": "emu1010_notebook.fw", "parent": "/usr/lib/firmware/emu"}, {"filename": "hana.fw", "parent": "/usr/lib/firmware/emu"}, {"filename": "micro_dock.fw", "parent": "/usr/lib/firmware/emu"}, {"filename": "ms_init.bin", "parent": "/usr/lib/firmware/ene-ub6250"}, {"filename": "msp_rdwr.bin", "parent": "/usr/lib/firmware/ene-ub6250"}, {"filename": "ms_rdwr.bin", "parent": "/usr/lib/firmware/ene-ub6250"}, {"filename": "sd_init1.bin", "parent": "/usr/lib/firmware/ene-ub6250"}, {"filename": "sd_init2.bin", "parent": "/usr/lib/firmware/ene-ub6250"}, {"filename": "sd_rdwr.bin", "parent": "/usr/lib/firmware/ene-ub6250"}, {"filename": "maestro3_assp_kernel.fw", "parent": "/usr/lib/firmware/ess"}, {"filename": "maestro3_assp_minisrc.fw", "parent": "/usr/lib/firmware/ess"}, {"filename": "go7007fw.bin", "parent": "/usr/lib/firmware/go7007"}, {"filename": "go7007tv.bin", "parent": "/usr/lib/firmware/go7007"}, {"filename": "lr192.fw", "parent": "/usr/lib/firmware/go7007"}, {"filename": "px-m402u.fw", "parent": "/usr/lib/firmware/go7007"}, {"filename": "px-tv402u.fw", "parent": "/usr/lib/firmware/go7007"}, {"filename": "s2250-1.fw", "parent": "/usr/lib/firmware/go7007"}, {"filename": "s2250-2.fw", "parent": "/usr/lib/firmware/go7007"}, {"filename": "wis-startrek.fw", "parent": "/usr/lib/firmware/go7007"}, {"filename": "bxt_dmc_ver1_07.bin", "parent": "/usr/lib/firmware/i915"}, {"filename": "bxt_dmc_ver1.bin", "parent": "/usr/lib/firmware/i915"}, {"filename": "bxt_guc_ver8_7.bin", "parent": "/usr/lib/firmware/i915"}, {"filename": "bxt_guc_ver9_29.bin", "parent": "/usr/lib/firmware/i915"}, {"filename": "bxt_huc_ver01_07_1398.bin", "parent": "/usr/lib/firmware/i915"}, {"filename": "bxt_huc_ver01_8_2893.bin", "parent": "/usr/lib/firmware/i915"}, {"filename": "cnl_dmc_ver1_06.bin", "parent": "/usr/lib/firmware/i915"}, {"filename": "cnl_dmc_ver1_07.bin", "parent": "/usr/lib/firmware/i915"}, {"filename": "glk_dmc_ver1_04.bin", "parent": "/usr/lib/firmware/i915"}, {"filename": "icl_dmc_ver1_07.bin", "parent": "/usr/lib/firmware/i915"}, {"filename": "kbl_dmc_ver1_01.bin", "parent": "/usr/lib/firmware/i915"}, {"filename": "kbl_dmc_ver1_04.bin", "parent": "/usr/lib/firmware/i915"}, {"filename": "kbl_dmc_ver1.bin", "parent": "/usr/lib/firmware/i915"}, {"filename": "kbl_guc_ver9_14.bin", "parent": "/usr/lib/firmware/i915"}, {"filename": "kbl_guc_ver9_39.bin", "parent": "/usr/lib/firmware/i915"}, {"filename": "kbl_huc_ver02_00_1810.bin", "parent": "/usr/lib/firmware/i915"}, {"filename": "skl_dmc_ver1_23.bin", "parent": "/usr/lib/firmware/i915"}, {"filename": "skl_dmc_ver1_26.bin", "parent": "/usr/lib/firmware/i915"}, {"filename": "skl_dmc_ver1_27.bin", "parent": "/usr/lib/firmware/i915"}, {"filename": "skl_dmc_ver1.bin", "parent": "/usr/lib/firmware/i915"}, {"filename": "skl_guc_ver1.bin", "parent": "/usr/lib/firmware/i915"}, {"filename": "skl_guc_ver4.bin", "parent": "/usr/lib/firmware/i915"}, {"filename": "skl_guc_ver6_1.bin", "parent": "/usr/lib/firmware/i915"}, {"filename": "skl_guc_ver6.bin", "parent": "/usr/lib/firmware/i915"}, {"filename": "skl_guc_ver9_33.bin", "parent": "/usr/lib/firmware/i915"}, {"filename": "skl_huc_ver01_07_1398.bin", "parent": "/usr/lib/firmware/i915"}, {"filename": "sdma", "parent": "/usr/lib/firmware/imx"}, {"filename": "sdma-imx6q.bin", "parent": "/usr/lib/firmware/imx/sdma"}, {"filename": "sdma-imx7d.bin", "parent": "/usr/lib/firmware/imx/sdma"}, {"filename": "dsp_fw_bxtn.bin", "parent": "/usr/lib/firmware/intel"}, {"filename": "dsp_fw_bxtn_v2219.bin", "parent": "/usr/lib/firmware/intel"}, {"filename": "dsp_fw_bxtn_v3366.bin", "parent": "/usr/lib/firmware/intel"}, {"filename": "dsp_fw_cnl.bin", "parent": "/usr/lib/firmware/intel"}, {"filename": "dsp_fw_cnl_v1191.bin", "parent": "/usr/lib/firmware/intel"}, {"filename": "dsp_fw_cnl_v1858.bin", "parent": "/usr/lib/firmware/intel"}, {"filename": "dsp_fw_glk.bin", "parent": "/usr/lib/firmware/intel"}, {"filename": "dsp_fw_glk_v1814.bin", "parent": "/usr/lib/firmware/intel"}, {"filename": "dsp_fw_glk_v2768.bin", "parent": "/usr/lib/firmware/intel"}, {"filename": "dsp_fw_glk_v2880.bin", "parent": "/usr/lib/firmware/intel"}, {"filename": "dsp_fw_glk_v3366.bin", "parent": "/usr/lib/firmware/intel"}, {"filename": "dsp_fw_kbl.bin", "parent": "/usr/lib/firmware/intel"}, {"filename": "dsp_fw_kbl_v1037.bin", "parent": "/usr/lib/firmware/intel"}, {"filename": "dsp_fw_kbl_v2042.bin", "parent": "/usr/lib/firmware/intel"}, {"filename": "dsp_fw_kbl_v2630.bin", "parent": "/usr/lib/firmware/intel"}, {"filename": "dsp_fw_kbl_v3266.bin", "parent": "/usr/lib/firmware/intel"}, {"filename": "dsp_fw_kbl_v3402.bin", "parent": "/usr/lib/firmware/intel"}, {"filename": "dsp_fw_kbl_v3420.bin", "parent": "/usr/lib/firmware/intel"}, {"filename": "dsp_fw_kbl_v701.bin", "parent": "/usr/lib/firmware/intel"}, {"filename": "dsp_fw_release.bin", "parent": "/usr/lib/firmware/intel"}, {"filename": "dsp_fw_release_v3402.bin", "parent": "/usr/lib/firmware/intel"}, {"filename": "dsp_fw_release_v969.bin", "parent": "/usr/lib/firmware/intel"}, {"filename": "fw_sst_0f28.bin", "parent": "/usr/lib/firmware/intel"}, {"filename": "fw_sst_0f28.bin-48kHz_i2s_master", "parent": "/usr/lib/firmware/intel"}, {"filename": "fw_sst_0f28_ssp0.bin", "parent": "/usr/lib/firmware/intel"}, {"filename": "fw_sst_22a8.bin", "parent": "/usr/lib/firmware/intel"}, {"filename": "ibt-11-5.ddc", "parent": "/usr/lib/firmware/intel"}, {"filename": "ibt-11-5.sfi", "parent": "/usr/lib/firmware/intel"}, {"filename": "ibt-12-16.ddc", "parent": "/usr/lib/firmware/intel"}, {"filename": "ibt-12-16.sfi", "parent": "/usr/lib/firmware/intel"}, {"filename": "ibt-17-0-1.ddc", "parent": "/usr/lib/firmware/intel"}, {"filename": "ibt-17-0-1.sfi", "parent": "/usr/lib/firmware/intel"}, {"filename": "ibt-17-16-1.ddc", "parent": "/usr/lib/firmware/intel"}, {"filename": "ibt-17-16-1.sfi", "parent": "/usr/lib/firmware/intel"}, {"filename": "ibt-17-1.ddc", "parent": "/usr/lib/firmware/intel"}, {"filename": "ibt-17-1.sfi", "parent": "/usr/lib/firmware/intel"}, {"filename": "ibt-17-2.ddc", "parent": "/usr/lib/firmware/intel"}, {"filename": "ibt-17-2.sfi", "parent": "/usr/lib/firmware/intel"}, {"filename": "ibt-18-0-1.ddc", "parent": "/usr/lib/firmware/intel"}, {"filename": "ibt-18-0-1.sfi", "parent": "/usr/lib/firmware/intel"}, {"filename": "ibt-18-16-1.ddc", "parent": "/usr/lib/firmware/intel"}, {"filename": "ibt-18-16-1.sfi", "parent": "/usr/lib/firmware/intel"}, {"filename": "ibt-18-1.ddc", "parent": "/usr/lib/firmware/intel"}, {"filename": "ibt-18-1.sfi", "parent": "/usr/lib/firmware/intel"}, {"filename": "ibt-18-2.ddc", "parent": "/usr/lib/firmware/intel"}, {"filename": "ibt-18-2.sfi", "parent": "/usr/lib/firmware/intel"}, {"filename": "ibt-hw-37.7.10-fw-1.0.1.2d.d.bseq", "parent": "/usr/lib/firmware/intel"}, {"filename": "ibt-hw-37.7.10-fw-1.0.2.3.d.bseq", "parent": "/usr/lib/firmware/intel"}, {"filename": "ibt-hw-37.7.10-fw-1.80.1.2d.d.bseq", "parent": "/usr/lib/firmware/intel"}, {"filename": "ibt-hw-37.7.10-fw-1.80.2.3.d.bseq", "parent": "/usr/lib/firmware/intel"}, {"filename": "ibt-hw-37.7.bseq", "parent": "/usr/lib/firmware/intel"}, {"filename": "ibt-hw-37.8.10-fw-1.10.2.27.d.bseq", "parent": "/usr/lib/firmware/intel"}, {"filename": "ibt-hw-37.8.10-fw-1.10.3.11.e.bseq", "parent": "/usr/lib/firmware/intel"}, {"filename": "ibt-hw-37.8.10-fw-22.50.19.14.f.bseq", "parent": "/usr/lib/firmware/intel"}, {"filename": "ibt-hw-37.8.bseq", "parent": "/usr/lib/firmware/intel"}, {"filename": "IntcSST2.bin", "parent": "/usr/lib/firmware/intel"}, {"filename": "ipu3-fw.bin", "parent": "/usr/lib/firmware/intel"}, {"filename": "irci_irci_ecr-master_20161208_0213_20170112_1500.bin", "parent": "/usr/lib/firmware/intel"}, {"filename": "create_fw.c", "parent": "/usr/lib/firmware/isci"}, {"filename": "create_fw.h", "parent": "/usr/lib/firmware/isci"}, {"filename": "isci_firmware.bin", "parent": "/usr/lib/firmware/isci"}, {"filename": "Makefile", "parent": "/usr/lib/firmware/isci"}, {"filename": "probe_roms.h", "parent": "/usr/lib/firmware/isci"}, {"filename": "README", "parent": "/usr/lib/firmware/isci"}, {"filename": "new_code.bin", "parent": "/usr/lib/firmware/kaweth"}, {"filename": "new_code_fix.bin", "parent": "/usr/lib/firmware/kaweth"}, {"filename": "trigger_code.bin", "parent": "/usr/lib/firmware/kaweth"}, {"filename": "trigger_code_fix.bin", "parent": "/usr/lib/firmware/kaweth"}, {"filename": "mpr.fw", "parent": "/usr/lib/firmware/keyspan"}, {"filename": "usa18x.fw", "parent": "/usr/lib/firmware/keyspan"}, {"filename": "usa19.fw", "parent": "/usr/lib/firmware/keyspan"}, {"filename": "usa19qi.fw", "parent": "/usr/lib/firmware/keyspan"}, {"filename": "usa19qw.fw", "parent": "/usr/lib/firmware/keyspan"}, {"filename": "usa19w.fw", "parent": "/usr/lib/firmware/keyspan"}, {"filename": "usa28.fw", "parent": "/usr/lib/firmware/keyspan"}, {"filename": "usa28xa.fw", "parent": "/usr/lib/firmware/keyspan"}, {"filename": "usa28xb.fw", "parent": "/usr/lib/firmware/keyspan"}, {"filename": "usa28x.fw", "parent": "/usr/lib/firmware/keyspan"}, {"filename": "usa49w.fw", "parent": "/usr/lib/firmware/keyspan"}, {"filename": "usa49wlc.fw", "parent": "/usr/lib/firmware/keyspan"}, {"filename": "keyspan_pda.fw", "parent": "/usr/lib/firmware/keyspan_pda"}, {"filename": "keyspan_pda.S", "parent": "/usr/lib/firmware/keyspan_pda"}, {"filename": "Makefile", "parent": "/usr/lib/firmware/keyspan_pda"}, {"filename": "xircom_pgs.fw", "parent": "/usr/lib/firmware/keyspan_pda"}, {"filename": "xircom_pgs.S", "parent": "/usr/lib/firmware/keyspan_pda"}, {"filename": "k1212.dsp", "parent": "/usr/lib/firmware/korg"}, {"filename": "lio_210nv_nic.bin", "parent": "/usr/lib/firmware/liquidio"}, {"filename": "lio_210sv_nic.bin", "parent": "/usr/lib/firmware/liquidio"}, {"filename": "lio_23xx_nic.bin", "parent": "/usr/lib/firmware/liquidio"}, {"filename": "lio_23xx_vsw.bin", "parent": "/usr/lib/firmware/liquidio"}, {"filename": "lio_410nv_nic.bin", "parent": "/usr/lib/firmware/liquidio"}, {"filename": "g200_warp.fw", "parent": "/usr/lib/firmware/matrox"}, {"filename": "g400_warp.fw", "parent": "/usr/lib/firmware/matrox"}, {"filename": "mt7610e.bin", "parent": "/usr/lib/firmware/mediatek"}, {"filename": "mt7610u.bin", "parent": "/usr/lib/firmware/mediatek"}, {"filename": "mt7615_cr4.bin", "parent": "/usr/lib/firmware/mediatek"}, {"filename": "mt7615_n9.bin", "parent": "/usr/lib/firmware/mediatek"}, {"filename": "mt7615_rom_patch.bin", "parent": "/usr/lib/firmware/mediatek"}, {"filename": "mt7622pr2h.bin", "parent": "/usr/lib/firmware/mediatek"}, {"filename": "mt7650e.bin", "parent": "/usr/lib/firmware/mediatek"}, {"filename": "mt7662u.bin", "parent": "/usr/lib/firmware/mediatek"}, {"filename": "mt7662u_rom_patch.bin", "parent": "/usr/lib/firmware/mediatek"}, {"filename": "mt7668pr2h.bin", "parent": "/usr/lib/firmware/mediatek"}, {"filename": "mlxsw_spectrum-13.1420.122.mfa2", "parent": "/usr/lib/firmware/mellanox"}, {"filename": "mlxsw_spectrum-13.1530.152.mfa2", "parent": "/usr/lib/firmware/mellanox"}, {"filename": "mlxsw_spectrum-13.1620.192.mfa2", "parent": "/usr/lib/firmware/mellanox"}, {"filename": "mlxsw_spectrum-13.1702.6.mfa2", "parent": "/usr/lib/firmware/mellanox"}, {"filename": "mlxsw_spectrum-13.1703.4.mfa2", "parent": "/usr/lib/firmware/mellanox"}, {"filename": "mlxsw_spectrum-13.1910.622.mfa2", "parent": "/usr/lib/firmware/mellanox"}, {"filename": "mscc_vsc8574_revb_int8051_29e8.bin", "parent": "/usr/lib/firmware/microchip"}, {"filename": "mscc_vsc8584_revb_int8051_fb48.bin", "parent": "/usr/lib/firmware/microchip"}, {"filename": "miXart8AES.xlx", "parent": "/usr/lib/firmware/mixart"}, {"filename": "miXart8.elf", "parent": "/usr/lib/firmware/mixart"}, {"filename": "miXart8.xlx", "parent": "/usr/lib/firmware/mixart"}, {"filename": "moxa-1110.fw", "parent": "/usr/lib/firmware/moxa"}, {"filename": "moxa-1130.fw", "parent": "/usr/lib/firmware/moxa"}, {"filename": "moxa-1131.fw", "parent": "/usr/lib/firmware/moxa"}, {"filename": "moxa-1150.fw", "parent": "/usr/lib/firmware/moxa"}, {"filename": "moxa-1151.fw", "parent": "/usr/lib/firmware/moxa"}, {"filename": "moxa-1250.fw", "parent": "/usr/lib/firmware/moxa"}, {"filename": "moxa-1251.fw", "parent": "/usr/lib/firmware/moxa"}, {"filename": "moxa-1410.fw", "parent": "/usr/lib/firmware/moxa"}, {"filename": "moxa-1450.fw", "parent": "/usr/lib/firmware/moxa"}, {"filename": "moxa-1451.fw", "parent": "/usr/lib/firmware/moxa"}, {"filename": "moxa-1613.fw", "parent": "/usr/lib/firmware/moxa"}, {"filename": "moxa-1618.fw", "parent": "/usr/lib/firmware/moxa"}, {"filename": "moxa-1653.fw", "parent": "/usr/lib/firmware/moxa"}, {"filename": "moxa-1658.fw", "parent": "/usr/lib/firmware/moxa"}, {"filename": "pcie8897_uapsta.bin", "parent": "/usr/lib/firmware/mrvl"}, {"filename": "pcie8997_wlan_v4.bin", "parent": "/usr/lib/firmware/mrvl"}, {"filename": "pcieuart8997_combo_v4.bin", "parent": "/usr/lib/firmware/mrvl"}, {"filename": "pcieusb8997_combo_v4.bin", "parent": "/usr/lib/firmware/mrvl"}, {"filename": "sd8787_uapsta.bin", "parent": "/usr/lib/firmware/mrvl"}, {"filename": "sd8797_uapsta.bin", "parent": "/usr/lib/firmware/mrvl"}, {"filename": "sd8801_uapsta.bin", "parent": "/usr/lib/firmware/mrvl"}, {"filename": "sd8887_uapsta.bin", "parent": "/usr/lib/firmware/mrvl"}, {"filename": "sd8897_uapsta.bin", "parent": "/usr/lib/firmware/mrvl"}, {"filename": "sdsd8977_combo_v2.bin", "parent": "/usr/lib/firmware/mrvl"}, {"filename": "sdsd8997_combo_v4.bin", "parent": "/usr/lib/firmware/mrvl"}, {"filename": "usb8766_uapsta.bin", "parent": "/usr/lib/firmware/mrvl"}, {"filename": "usb8797_uapsta.bin", "parent": "/usr/lib/firmware/mrvl"}, {"filename": "usb8801_uapsta.bin", "parent": "/usr/lib/firmware/mrvl"}, {"filename": "usb8897_uapsta.bin", "parent": "/usr/lib/firmware/mrvl"}, {"filename": "usbusb8997_combo_v4.bin", "parent": "/usr/lib/firmware/mrvl"}, {"filename": "88W8864.bin", "parent": "/usr/lib/firmware/mwlwifi"}, {"filename": "88W8897.bin", "parent": "/usr/lib/firmware/mwlwifi"}, {"filename": "lanai.bin", "parent": "/usr/lib/firmware/myricom"}, {"filename": "bpf", "parent": "/usr/lib/firmware/netronome"}, {"filename": "flower", "parent": "/usr/lib/firmware/netronome"}, {"filename": "nic", "parent": "/usr/lib/firmware/netronome"}, {"filename": "nic_AMDA0058-0011_2x40.nffw", "parent": "/usr/lib/firmware/netronome"}, {"filename": "nic_AMDA0058-0012_2x40.nffw", "parent": "/usr/lib/firmware/netronome"}, {"filename": "nic_AMDA0078-0011_1x100.nffw", "parent": "/usr/lib/firmware/netronome"}, {"filename": "nic_AMDA0081-0001_1x40.nffw", "parent": "/usr/lib/firmware/netronome"}, {"filename": "nic_AMDA0081-0001_4x10.nffw", "parent": "/usr/lib/firmware/netronome"}, {"filename": "nic_AMDA0096-0001_2x10.nffw", "parent": "/usr/lib/firmware/netronome"}, {"filename": "nic_AMDA0097-0001_2x40.nffw", "parent": "/usr/lib/firmware/netronome"}, {"filename": "nic_AMDA0097-0001_4x10_1x40.nffw", "parent": "/usr/lib/firmware/netronome"}, {"filename": "nic_AMDA0097-0001_8x10.nffw", "parent": "/usr/lib/firmware/netronome"}, {"filename": "nic_AMDA0099-0001_1x10_1x25.nffw", "parent": "/usr/lib/firmware/netronome"}, {"filename": "nic_AMDA0099-0001_2x10.nffw", "parent": "/usr/lib/firmware/netronome"}, {"filename": "nic_AMDA0099-0001_2x25.nffw", "parent": "/usr/lib/firmware/netronome"}, {"filename": "nic-sriov", "parent": "/usr/lib/firmware/netronome"}, {"filename": "nic_AMDA0058-0011_2x40.nffw", "parent": "/usr/lib/firmware/netronome/bpf"}, {"filename": "nic_AMDA0058-0012_2x40.nffw", "parent": "/usr/lib/firmware/netronome/bpf"}, {"filename": "nic_AMDA0078-0011_1x100.nffw", "parent": "/usr/lib/firmware/netronome/bpf"}, {"filename": "nic_AMDA0081-0001_1x40.nffw", "parent": "/usr/lib/firmware/netronome/bpf"}, {"filename": "nic_AMDA0081-0001_4x10.nffw", "parent": "/usr/lib/firmware/netronome/bpf"}, {"filename": "nic_AMDA0096-0001_2x10.nffw", "parent": "/usr/lib/firmware/netronome/bpf"}, {"filename": "nic_AMDA0097-0001_2x40.nffw", "parent": "/usr/lib/firmware/netronome/bpf"}, {"filename": "nic_AMDA0097-0001_4x10_1x40.nffw", "parent": "/usr/lib/firmware/netronome/bpf"}, {"filename": "nic_AMDA0097-0001_8x10.nffw", "parent": "/usr/lib/firmware/netronome/bpf"}, {"filename": "nic_AMDA0099-0001_1x10_1x25.nffw", "parent": "/usr/lib/firmware/netronome/bpf"}, {"filename": "nic_AMDA0099-0001_2x10.nffw", "parent": "/usr/lib/firmware/netronome/bpf"}, {"filename": "nic_AMDA0099-0001_2x25.nffw", "parent": "/usr/lib/firmware/netronome/bpf"}, {"filename": "nic_AMDA0058-0011_1x100.nffw", "parent": "/usr/lib/firmware/netronome/flower"}, {"filename": "nic_AMDA0058-0011_2x40.nffw", "parent": "/usr/lib/firmware/netronome/flower"}, {"filename": "nic_AMDA0058-0011_4x10_1x40.nffw", "parent": "/usr/lib/firmware/netronome/flower"}, {"filename": "nic_AMDA0058-0011_8x10.nffw", "parent": "/usr/lib/firmware/netronome/flower"}, {"filename": "nic_AMDA0058-0012_1x100.nffw", "parent": "/usr/lib/firmware/netronome/flower"}, {"filename": "nic_AMDA0058-0012_2x40.nffw", "parent": "/usr/lib/firmware/netronome/flower"}, {"filename": "nic_AMDA0058-0012_4x10_1x40.nffw", "parent": "/usr/lib/firmware/netronome/flower"}, {"filename": "nic_AMDA0058-0012_8x10.nffw", "parent": "/usr/lib/firmware/netronome/flower"}, {"filename": "nic_AMDA0058.nffw", "parent": "/usr/lib/firmware/netronome/flower"}, {"filename": "nic_AMDA0078-0011_1x100.nffw", "parent": "/usr/lib/firmware/netronome/flower"}, {"filename": "nic_AMDA0078-0011_2x40.nffw", "parent": "/usr/lib/firmware/netronome/flower"}, {"filename": "nic_AMDA0078-0011_4x10_1x40.nffw", "parent": "/usr/lib/firmware/netronome/flower"}, {"filename": "nic_AMDA0078-0011_8x10.nffw", "parent": "/usr/lib/firmware/netronome/flower"}, {"filename": "nic_AMDA0078-0012_1x100.nffw", "parent": "/usr/lib/firmware/netronome/flower"}, {"filename": "nic_AMDA0078-0012_2x40.nffw", "parent": "/usr/lib/firmware/netronome/flower"}, {"filename": "nic_AMDA0078-0012_4x10_1x40.nffw", "parent": "/usr/lib/firmware/netronome/flower"}, {"filename": "nic_AMDA0078-0012_8x10.nffw", "parent": "/usr/lib/firmware/netronome/flower"}, {"filename": "nic_AMDA0081-0001_1x40.nffw", "parent": "/usr/lib/firmware/netronome/flower"}, {"filename": "nic_AMDA0081-0001_4x10.nffw", "parent": "/usr/lib/firmware/netronome/flower"}, {"filename": "nic_AMDA0081.nffw", "parent": "/usr/lib/firmware/netronome/flower"}, {"filename": "nic_AMDA0096-0001_2x10.nffw", "parent": "/usr/lib/firmware/netronome/flower"}, {"filename": "nic_AMDA0096.nffw", "parent": "/usr/lib/firmware/netronome/flower"}, {"filename": "nic_AMDA0097-0001_2x40.nffw", "parent": "/usr/lib/firmware/netronome/flower"}, {"filename": "nic_AMDA0097-0001_4x10_1x40.nffw", "parent": "/usr/lib/firmware/netronome/flower"}, {"filename": "nic_AMDA0097-0001_8x10.nffw", "parent": "/usr/lib/firmware/netronome/flower"}, {"filename": "nic_AMDA0097.nffw", "parent": "/usr/lib/firmware/netronome/flower"}, {"filename": "nic_AMDA0099-0001_1x10_1x25.nffw", "parent": "/usr/lib/firmware/netronome/flower"}, {"filename": "nic_AMDA0099-0001_2x10.nffw", "parent": "/usr/lib/firmware/netronome/flower"}, {"filename": "nic_AMDA0099-0001_2x25.nffw", "parent": "/usr/lib/firmware/netronome/flower"}, {"filename": "nic_AMDA0099.nffw", "parent": "/usr/lib/firmware/netronome/flower"}, {"filename": "nic_AMDA0058-0011_2x40.nffw", "parent": "/usr/lib/firmware/netronome/nic"}, {"filename": "nic_AMDA0058-0012_2x40.nffw", "parent": "/usr/lib/firmware/netronome/nic"}, {"filename": "nic_AMDA0078-0011_1x100.nffw", "parent": "/usr/lib/firmware/netronome/nic"}, {"filename": "nic_AMDA0081-0001_1x40.nffw", "parent": "/usr/lib/firmware/netronome/nic"}, {"filename": "nic_AMDA0081-0001_4x10.nffw", "parent": "/usr/lib/firmware/netronome/nic"}, {"filename": "nic_AMDA0096-0001_2x10.nffw", "parent": "/usr/lib/firmware/netronome/nic"}, {"filename": "nic_AMDA0097-0001_2x40.nffw", "parent": "/usr/lib/firmware/netronome/nic"}, {"filename": "nic_AMDA0097-0001_4x10_1x40.nffw", "parent": "/usr/lib/firmware/netronome/nic"}, {"filename": "nic_AMDA0097-0001_8x10.nffw", "parent": "/usr/lib/firmware/netronome/nic"}, {"filename": "nic_AMDA0099-0001_1x10_1x25.nffw", "parent": "/usr/lib/firmware/netronome/nic"}, {"filename": "nic_AMDA0099-0001_2x10.nffw", "parent": "/usr/lib/firmware/netronome/nic"}, {"filename": "nic_AMDA0099-0001_2x25.nffw", "parent": "/usr/lib/firmware/netronome/nic"}, {"filename": "nic_AMDA0058-0011_2x40.nffw", "parent": "/usr/lib/firmware/netronome/nic-sriov"}, {"filename": "nic_AMDA0058-0012_2x40.nffw", "parent": "/usr/lib/firmware/netronome/nic-sriov"}, {"filename": "nic_AMDA0078-0011_1x100.nffw", "parent": "/usr/lib/firmware/netronome/nic-sriov"}, {"filename": "nic_AMDA0081-0001_1x40.nffw", "parent": "/usr/lib/firmware/netronome/nic-sriov"}, {"filename": "nic_AMDA0081-0001_4x10.nffw", "parent": "/usr/lib/firmware/netronome/nic-sriov"}, {"filename": "nic_AMDA0096-0001_2x10.nffw", "parent": "/usr/lib/firmware/netronome/nic-sriov"}, {"filename": "nic_AMDA0097-0001_2x40.nffw", "parent": "/usr/lib/firmware/netronome/nic-sriov"}, {"filename": "nic_AMDA0097-0001_4x10_1x40.nffw", "parent": "/usr/lib/firmware/netronome/nic-sriov"}, {"filename": "nic_AMDA0097-0001_8x10.nffw", "parent": "/usr/lib/firmware/netronome/nic-sriov"}, {"filename": "nic_AMDA0099-0001_1x10_1x25.nffw", "parent": "/usr/lib/firmware/netronome/nic-sriov"}, {"filename": "nic_AMDA0099-0001_2x10.nffw", "parent": "/usr/lib/firmware/netronome/nic-sriov"}, {"filename": "nic_AMDA0099-0001_2x25.nffw", "parent": "/usr/lib/firmware/netronome/nic-sriov"}, {"filename": "gk20a", "parent": "/usr/lib/firmware/nvidia"}, {"filename": "gm200", "parent": "/usr/lib/firmware/nvidia"}, {"filename": "gm204", "parent": "/usr/lib/firmware/nvidia"}, {"filename": "gm206", "parent": "/usr/lib/firmware/nvidia"}, {"filename": "gm20b", "parent": "/usr/lib/firmware/nvidia"}, {"filename": "gp100", "parent": "/usr/lib/firmware/nvidia"}, {"filename": "gp102", "parent": "/usr/lib/firmware/nvidia"}, {"filename": "gp104", "parent": "/usr/lib/firmware/nvidia"}, {"filename": "gp106", "parent": "/usr/lib/firmware/nvidia"}, {"filename": "gp107", "parent": "/usr/lib/firmware/nvidia"}, {"filename": "gp108", "parent": "/usr/lib/firmware/nvidia"}, {"filename": "gp10b", "parent": "/usr/lib/firmware/nvidia"}, {"filename": "gv100", "parent": "/usr/lib/firmware/nvidia"}, {"filename": "tegra124", "parent": "/usr/lib/firmware/nvidia"}, {"filename": "tegra186", "parent": "/usr/lib/firmware/nvidia"}, {"filename": "tegra210", "parent": "/usr/lib/firmware/nvidia"}, {"filename": "tu10x", "parent": "/usr/lib/firmware/nvidia"}, {"filename": "fecs_data.bin", "parent": "/usr/lib/firmware/nvidia/gk20a"}, {"filename": "fecs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gk20a"}, {"filename": "gpccs_data.bin", "parent": "/usr/lib/firmware/nvidia/gk20a"}, {"filename": "gpccs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gk20a"}, {"filename": "sw_bundle_init.bin", "parent": "/usr/lib/firmware/nvidia/gk20a"}, {"filename": "sw_ctx.bin", "parent": "/usr/lib/firmware/nvidia/gk20a"}, {"filename": "sw_method_init.bin", "parent": "/usr/lib/firmware/nvidia/gk20a"}, {"filename": "sw_nonctx.bin", "parent": "/usr/lib/firmware/nvidia/gk20a"}, {"filename": "acr", "parent": "/usr/lib/firmware/nvidia/gm200"}, {"filename": "gr", "parent": "/usr/lib/firmware/nvidia/gm200"}, {"filename": "bl.bin", "parent": "/usr/lib/firmware/nvidia/gm200/acr"}, {"filename": "ucode_load.bin", "parent": "/usr/lib/firmware/nvidia/gm200/acr"}, {"filename": "ucode_unload.bin", "parent": "/usr/lib/firmware/nvidia/gm200/acr"}, {"filename": "fecs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gm200/gr"}, {"filename": "fecs_data.bin", "parent": "/usr/lib/firmware/nvidia/gm200/gr"}, {"filename": "fecs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gm200/gr"}, {"filename": "fecs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gm200/gr"}, {"filename": "gpccs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gm200/gr"}, {"filename": "gpccs_data.bin", "parent": "/usr/lib/firmware/nvidia/gm200/gr"}, {"filename": "gpccs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gm200/gr"}, {"filename": "gpccs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gm200/gr"}, {"filename": "sw_bundle_init.bin", "parent": "/usr/lib/firmware/nvidia/gm200/gr"}, {"filename": "sw_ctx.bin", "parent": "/usr/lib/firmware/nvidia/gm200/gr"}, {"filename": "sw_method_init.bin", "parent": "/usr/lib/firmware/nvidia/gm200/gr"}, {"filename": "sw_nonctx.bin", "parent": "/usr/lib/firmware/nvidia/gm200/gr"}, {"filename": "acr", "parent": "/usr/lib/firmware/nvidia/gm204"}, {"filename": "gr", "parent": "/usr/lib/firmware/nvidia/gm204"}, {"filename": "bl.bin", "parent": "/usr/lib/firmware/nvidia/gm204/acr"}, {"filename": "ucode_load.bin", "parent": "/usr/lib/firmware/nvidia/gm204/acr"}, {"filename": "ucode_unload.bin", "parent": "/usr/lib/firmware/nvidia/gm204/acr"}, {"filename": "fecs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gm204/gr"}, {"filename": "fecs_data.bin", "parent": "/usr/lib/firmware/nvidia/gm204/gr"}, {"filename": "fecs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gm204/gr"}, {"filename": "fecs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gm204/gr"}, {"filename": "gpccs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gm204/gr"}, {"filename": "gpccs_data.bin", "parent": "/usr/lib/firmware/nvidia/gm204/gr"}, {"filename": "gpccs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gm204/gr"}, {"filename": "gpccs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gm204/gr"}, {"filename": "sw_bundle_init.bin", "parent": "/usr/lib/firmware/nvidia/gm204/gr"}, {"filename": "sw_ctx.bin", "parent": "/usr/lib/firmware/nvidia/gm204/gr"}, {"filename": "sw_method_init.bin", "parent": "/usr/lib/firmware/nvidia/gm204/gr"}, {"filename": "sw_nonctx.bin", "parent": "/usr/lib/firmware/nvidia/gm204/gr"}, {"filename": "acr", "parent": "/usr/lib/firmware/nvidia/gm206"}, {"filename": "gr", "parent": "/usr/lib/firmware/nvidia/gm206"}, {"filename": "bl.bin", "parent": "/usr/lib/firmware/nvidia/gm206/acr"}, {"filename": "ucode_load.bin", "parent": "/usr/lib/firmware/nvidia/gm206/acr"}, {"filename": "ucode_unload.bin", "parent": "/usr/lib/firmware/nvidia/gm206/acr"}, {"filename": "fecs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gm206/gr"}, {"filename": "fecs_data.bin", "parent": "/usr/lib/firmware/nvidia/gm206/gr"}, {"filename": "fecs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gm206/gr"}, {"filename": "fecs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gm206/gr"}, {"filename": "gpccs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gm206/gr"}, {"filename": "gpccs_data.bin", "parent": "/usr/lib/firmware/nvidia/gm206/gr"}, {"filename": "gpccs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gm206/gr"}, {"filename": "gpccs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gm206/gr"}, {"filename": "sw_bundle_init.bin", "parent": "/usr/lib/firmware/nvidia/gm206/gr"}, {"filename": "sw_ctx.bin", "parent": "/usr/lib/firmware/nvidia/gm206/gr"}, {"filename": "sw_method_init.bin", "parent": "/usr/lib/firmware/nvidia/gm206/gr"}, {"filename": "sw_nonctx.bin", "parent": "/usr/lib/firmware/nvidia/gm206/gr"}, {"filename": "acr", "parent": "/usr/lib/firmware/nvidia/gm20b"}, {"filename": "gr", "parent": "/usr/lib/firmware/nvidia/gm20b"}, {"filename": "pmu", "parent": "/usr/lib/firmware/nvidia/gm20b"}, {"filename": "bl.bin", "parent": "/usr/lib/firmware/nvidia/gm20b/acr"}, {"filename": "ucode_load.bin", "parent": "/usr/lib/firmware/nvidia/gm20b/acr"}, {"filename": "fecs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gm20b/gr"}, {"filename": "fecs_data.bin", "parent": "/usr/lib/firmware/nvidia/gm20b/gr"}, {"filename": "fecs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gm20b/gr"}, {"filename": "fecs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gm20b/gr"}, {"filename": "gpccs_data.bin", "parent": "/usr/lib/firmware/nvidia/gm20b/gr"}, {"filename": "gpccs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gm20b/gr"}, {"filename": "sw_bundle_init.bin", "parent": "/usr/lib/firmware/nvidia/gm20b/gr"}, {"filename": "sw_ctx.bin", "parent": "/usr/lib/firmware/nvidia/gm20b/gr"}, {"filename": "sw_method_init.bin", "parent": "/usr/lib/firmware/nvidia/gm20b/gr"}, {"filename": "sw_nonctx.bin", "parent": "/usr/lib/firmware/nvidia/gm20b/gr"}, {"filename": "desc.bin", "parent": "/usr/lib/firmware/nvidia/gm20b/pmu"}, {"filename": "image.bin", "parent": "/usr/lib/firmware/nvidia/gm20b/pmu"}, {"filename": "sig.bin", "parent": "/usr/lib/firmware/nvidia/gm20b/pmu"}, {"filename": "acr", "parent": "/usr/lib/firmware/nvidia/gp100"}, {"filename": "gr", "parent": "/usr/lib/firmware/nvidia/gp100"}, {"filename": "bl.bin", "parent": "/usr/lib/firmware/nvidia/gp100/acr"}, {"filename": "ucode_load.bin", "parent": "/usr/lib/firmware/nvidia/gp100/acr"}, {"filename": "ucode_unload.bin", "parent": "/usr/lib/firmware/nvidia/gp100/acr"}, {"filename": "fecs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gp100/gr"}, {"filename": "fecs_data.bin", "parent": "/usr/lib/firmware/nvidia/gp100/gr"}, {"filename": "fecs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gp100/gr"}, {"filename": "fecs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gp100/gr"}, {"filename": "gpccs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gp100/gr"}, {"filename": "gpccs_data.bin", "parent": "/usr/lib/firmware/nvidia/gp100/gr"}, {"filename": "gpccs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gp100/gr"}, {"filename": "gpccs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gp100/gr"}, {"filename": "sw_bundle_init.bin", "parent": "/usr/lib/firmware/nvidia/gp100/gr"}, {"filename": "sw_ctx.bin", "parent": "/usr/lib/firmware/nvidia/gp100/gr"}, {"filename": "sw_method_init.bin", "parent": "/usr/lib/firmware/nvidia/gp100/gr"}, {"filename": "sw_nonctx.bin", "parent": "/usr/lib/firmware/nvidia/gp100/gr"}, {"filename": "acr", "parent": "/usr/lib/firmware/nvidia/gp102"}, {"filename": "gr", "parent": "/usr/lib/firmware/nvidia/gp102"}, {"filename": "nvdec", "parent": "/usr/lib/firmware/nvidia/gp102"}, {"filename": "sec2", "parent": "/usr/lib/firmware/nvidia/gp102"}, {"filename": "bl.bin", "parent": "/usr/lib/firmware/nvidia/gp102/acr"}, {"filename": "ucode_load.bin", "parent": "/usr/lib/firmware/nvidia/gp102/acr"}, {"filename": "ucode_unload.bin", "parent": "/usr/lib/firmware/nvidia/gp102/acr"}, {"filename": "unload_bl.bin", "parent": "/usr/lib/firmware/nvidia/gp102/acr"}, {"filename": "fecs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gp102/gr"}, {"filename": "fecs_data.bin", "parent": "/usr/lib/firmware/nvidia/gp102/gr"}, {"filename": "fecs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gp102/gr"}, {"filename": "fecs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gp102/gr"}, {"filename": "gpccs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gp102/gr"}, {"filename": "gpccs_data.bin", "parent": "/usr/lib/firmware/nvidia/gp102/gr"}, {"filename": "gpccs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gp102/gr"}, {"filename": "gpccs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gp102/gr"}, {"filename": "sw_bundle_init.bin", "parent": "/usr/lib/firmware/nvidia/gp102/gr"}, {"filename": "sw_ctx.bin", "parent": "/usr/lib/firmware/nvidia/gp102/gr"}, {"filename": "sw_method_init.bin", "parent": "/usr/lib/firmware/nvidia/gp102/gr"}, {"filename": "sw_nonctx.bin", "parent": "/usr/lib/firmware/nvidia/gp102/gr"}, {"filename": "scrubber.bin", "parent": "/usr/lib/firmware/nvidia/gp102/nvdec"}, {"filename": "desc.bin", "parent": "/usr/lib/firmware/nvidia/gp102/sec2"}, {"filename": "image.bin", "parent": "/usr/lib/firmware/nvidia/gp102/sec2"}, {"filename": "sig.bin", "parent": "/usr/lib/firmware/nvidia/gp102/sec2"}, {"filename": "acr", "parent": "/usr/lib/firmware/nvidia/gp104"}, {"filename": "gr", "parent": "/usr/lib/firmware/nvidia/gp104"}, {"filename": "nvdec", "parent": "/usr/lib/firmware/nvidia/gp104"}, {"filename": "sec2", "parent": "/usr/lib/firmware/nvidia/gp104"}, {"filename": "bl.bin", "parent": "/usr/lib/firmware/nvidia/gp104/acr"}, {"filename": "ucode_load.bin", "parent": "/usr/lib/firmware/nvidia/gp104/acr"}, {"filename": "ucode_unload.bin", "parent": "/usr/lib/firmware/nvidia/gp104/acr"}, {"filename": "unload_bl.bin", "parent": "/usr/lib/firmware/nvidia/gp104/acr"}, {"filename": "fecs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gp104/gr"}, {"filename": "fecs_data.bin", "parent": "/usr/lib/firmware/nvidia/gp104/gr"}, {"filename": "fecs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gp104/gr"}, {"filename": "fecs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gp104/gr"}, {"filename": "gpccs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gp104/gr"}, {"filename": "gpccs_data.bin", "parent": "/usr/lib/firmware/nvidia/gp104/gr"}, {"filename": "gpccs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gp104/gr"}, {"filename": "gpccs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gp104/gr"}, {"filename": "sw_bundle_init.bin", "parent": "/usr/lib/firmware/nvidia/gp104/gr"}, {"filename": "sw_ctx.bin", "parent": "/usr/lib/firmware/nvidia/gp104/gr"}, {"filename": "sw_method_init.bin", "parent": "/usr/lib/firmware/nvidia/gp104/gr"}, {"filename": "sw_nonctx.bin", "parent": "/usr/lib/firmware/nvidia/gp104/gr"}, {"filename": "scrubber.bin", "parent": "/usr/lib/firmware/nvidia/gp104/nvdec"}, {"filename": "desc.bin", "parent": "/usr/lib/firmware/nvidia/gp104/sec2"}, {"filename": "image.bin", "parent": "/usr/lib/firmware/nvidia/gp104/sec2"}, {"filename": "sig.bin", "parent": "/usr/lib/firmware/nvidia/gp104/sec2"}, {"filename": "acr", "parent": "/usr/lib/firmware/nvidia/gp106"}, {"filename": "gr", "parent": "/usr/lib/firmware/nvidia/gp106"}, {"filename": "nvdec", "parent": "/usr/lib/firmware/nvidia/gp106"}, {"filename": "sec2", "parent": "/usr/lib/firmware/nvidia/gp106"}, {"filename": "bl.bin", "parent": "/usr/lib/firmware/nvidia/gp106/acr"}, {"filename": "ucode_load.bin", "parent": "/usr/lib/firmware/nvidia/gp106/acr"}, {"filename": "ucode_unload.bin", "parent": "/usr/lib/firmware/nvidia/gp106/acr"}, {"filename": "unload_bl.bin", "parent": "/usr/lib/firmware/nvidia/gp106/acr"}, {"filename": "fecs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gp106/gr"}, {"filename": "fecs_data.bin", "parent": "/usr/lib/firmware/nvidia/gp106/gr"}, {"filename": "fecs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gp106/gr"}, {"filename": "fecs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gp106/gr"}, {"filename": "gpccs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gp106/gr"}, {"filename": "gpccs_data.bin", "parent": "/usr/lib/firmware/nvidia/gp106/gr"}, {"filename": "gpccs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gp106/gr"}, {"filename": "gpccs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gp106/gr"}, {"filename": "sw_bundle_init.bin", "parent": "/usr/lib/firmware/nvidia/gp106/gr"}, {"filename": "sw_ctx.bin", "parent": "/usr/lib/firmware/nvidia/gp106/gr"}, {"filename": "sw_method_init.bin", "parent": "/usr/lib/firmware/nvidia/gp106/gr"}, {"filename": "sw_nonctx.bin", "parent": "/usr/lib/firmware/nvidia/gp106/gr"}, {"filename": "scrubber.bin", "parent": "/usr/lib/firmware/nvidia/gp106/nvdec"}, {"filename": "desc.bin", "parent": "/usr/lib/firmware/nvidia/gp106/sec2"}, {"filename": "image.bin", "parent": "/usr/lib/firmware/nvidia/gp106/sec2"}, {"filename": "sig.bin", "parent": "/usr/lib/firmware/nvidia/gp106/sec2"}, {"filename": "acr", "parent": "/usr/lib/firmware/nvidia/gp107"}, {"filename": "gr", "parent": "/usr/lib/firmware/nvidia/gp107"}, {"filename": "nvdec", "parent": "/usr/lib/firmware/nvidia/gp107"}, {"filename": "sec2", "parent": "/usr/lib/firmware/nvidia/gp107"}, {"filename": "bl.bin", "parent": "/usr/lib/firmware/nvidia/gp107/acr"}, {"filename": "ucode_load.bin", "parent": "/usr/lib/firmware/nvidia/gp107/acr"}, {"filename": "ucode_unload.bin", "parent": "/usr/lib/firmware/nvidia/gp107/acr"}, {"filename": "unload_bl.bin", "parent": "/usr/lib/firmware/nvidia/gp107/acr"}, {"filename": "fecs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gp107/gr"}, {"filename": "fecs_data.bin", "parent": "/usr/lib/firmware/nvidia/gp107/gr"}, {"filename": "fecs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gp107/gr"}, {"filename": "fecs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gp107/gr"}, {"filename": "gpccs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gp107/gr"}, {"filename": "gpccs_data.bin", "parent": "/usr/lib/firmware/nvidia/gp107/gr"}, {"filename": "gpccs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gp107/gr"}, {"filename": "gpccs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gp107/gr"}, {"filename": "sw_bundle_init.bin", "parent": "/usr/lib/firmware/nvidia/gp107/gr"}, {"filename": "sw_ctx.bin", "parent": "/usr/lib/firmware/nvidia/gp107/gr"}, {"filename": "sw_method_init.bin", "parent": "/usr/lib/firmware/nvidia/gp107/gr"}, {"filename": "sw_nonctx.bin", "parent": "/usr/lib/firmware/nvidia/gp107/gr"}, {"filename": "scrubber.bin", "parent": "/usr/lib/firmware/nvidia/gp107/nvdec"}, {"filename": "desc.bin", "parent": "/usr/lib/firmware/nvidia/gp107/sec2"}, {"filename": "image.bin", "parent": "/usr/lib/firmware/nvidia/gp107/sec2"}, {"filename": "sig.bin", "parent": "/usr/lib/firmware/nvidia/gp107/sec2"}, {"filename": "acr", "parent": "/usr/lib/firmware/nvidia/gp108"}, {"filename": "gr", "parent": "/usr/lib/firmware/nvidia/gp108"}, {"filename": "nvdec", "parent": "/usr/lib/firmware/nvidia/gp108"}, {"filename": "sec2", "parent": "/usr/lib/firmware/nvidia/gp108"}, {"filename": "bl.bin", "parent": "/usr/lib/firmware/nvidia/gp108/acr"}, {"filename": "ucode_load.bin", "parent": "/usr/lib/firmware/nvidia/gp108/acr"}, {"filename": "ucode_unload.bin", "parent": "/usr/lib/firmware/nvidia/gp108/acr"}, {"filename": "unload_bl.bin", "parent": "/usr/lib/firmware/nvidia/gp108/acr"}, {"filename": "fecs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gp108/gr"}, {"filename": "fecs_data.bin", "parent": "/usr/lib/firmware/nvidia/gp108/gr"}, {"filename": "fecs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gp108/gr"}, {"filename": "fecs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gp108/gr"}, {"filename": "gpccs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gp108/gr"}, {"filename": "gpccs_data.bin", "parent": "/usr/lib/firmware/nvidia/gp108/gr"}, {"filename": "gpccs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gp108/gr"}, {"filename": "gpccs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gp108/gr"}, {"filename": "sw_bundle_init.bin", "parent": "/usr/lib/firmware/nvidia/gp108/gr"}, {"filename": "sw_ctx.bin", "parent": "/usr/lib/firmware/nvidia/gp108/gr"}, {"filename": "sw_method_init.bin", "parent": "/usr/lib/firmware/nvidia/gp108/gr"}, {"filename": "sw_nonctx.bin", "parent": "/usr/lib/firmware/nvidia/gp108/gr"}, {"filename": "scrubber.bin", "parent": "/usr/lib/firmware/nvidia/gp108/nvdec"}, {"filename": "desc.bin", "parent": "/usr/lib/firmware/nvidia/gp108/sec2"}, {"filename": "image.bin", "parent": "/usr/lib/firmware/nvidia/gp108/sec2"}, {"filename": "sig.bin", "parent": "/usr/lib/firmware/nvidia/gp108/sec2"}, {"filename": "acr", "parent": "/usr/lib/firmware/nvidia/gp10b"}, {"filename": "gr", "parent": "/usr/lib/firmware/nvidia/gp10b"}, {"filename": "pmu", "parent": "/usr/lib/firmware/nvidia/gp10b"}, {"filename": "bl.bin", "parent": "/usr/lib/firmware/nvidia/gp10b/acr"}, {"filename": "ucode_load.bin", "parent": "/usr/lib/firmware/nvidia/gp10b/acr"}, {"filename": "fecs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gp10b/gr"}, {"filename": "fecs_data.bin", "parent": "/usr/lib/firmware/nvidia/gp10b/gr"}, {"filename": "fecs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gp10b/gr"}, {"filename": "fecs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gp10b/gr"}, {"filename": "gpccs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gp10b/gr"}, {"filename": "gpccs_data.bin", "parent": "/usr/lib/firmware/nvidia/gp10b/gr"}, {"filename": "gpccs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gp10b/gr"}, {"filename": "gpccs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gp10b/gr"}, {"filename": "sw_bundle_init.bin", "parent": "/usr/lib/firmware/nvidia/gp10b/gr"}, {"filename": "sw_ctx.bin", "parent": "/usr/lib/firmware/nvidia/gp10b/gr"}, {"filename": "sw_method_init.bin", "parent": "/usr/lib/firmware/nvidia/gp10b/gr"}, {"filename": "sw_nonctx.bin", "parent": "/usr/lib/firmware/nvidia/gp10b/gr"}, {"filename": "desc.bin", "parent": "/usr/lib/firmware/nvidia/gp10b/pmu"}, {"filename": "image.bin", "parent": "/usr/lib/firmware/nvidia/gp10b/pmu"}, {"filename": "sig.bin", "parent": "/usr/lib/firmware/nvidia/gp10b/pmu"}, {"filename": "acr", "parent": "/usr/lib/firmware/nvidia/gv100"}, {"filename": "gr", "parent": "/usr/lib/firmware/nvidia/gv100"}, {"filename": "nvdec", "parent": "/usr/lib/firmware/nvidia/gv100"}, {"filename": "sec2", "parent": "/usr/lib/firmware/nvidia/gv100"}, {"filename": "bl.bin", "parent": "/usr/lib/firmware/nvidia/gv100/acr"}, {"filename": "ucode_load.bin", "parent": "/usr/lib/firmware/nvidia/gv100/acr"}, {"filename": "ucode_unload.bin", "parent": "/usr/lib/firmware/nvidia/gv100/acr"}, {"filename": "unload_bl.bin", "parent": "/usr/lib/firmware/nvidia/gv100/acr"}, {"filename": "fecs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gv100/gr"}, {"filename": "fecs_data.bin", "parent": "/usr/lib/firmware/nvidia/gv100/gr"}, {"filename": "fecs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gv100/gr"}, {"filename": "fecs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gv100/gr"}, {"filename": "gpccs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gv100/gr"}, {"filename": "gpccs_data.bin", "parent": "/usr/lib/firmware/nvidia/gv100/gr"}, {"filename": "gpccs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gv100/gr"}, {"filename": "gpccs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gv100/gr"}, {"filename": "sw_bundle_init.bin", "parent": "/usr/lib/firmware/nvidia/gv100/gr"}, {"filename": "sw_ctx.bin", "parent": "/usr/lib/firmware/nvidia/gv100/gr"}, {"filename": "sw_method_init.bin", "parent": "/usr/lib/firmware/nvidia/gv100/gr"}, {"filename": "sw_nonctx.bin", "parent": "/usr/lib/firmware/nvidia/gv100/gr"}, {"filename": "scrubber.bin", "parent": "/usr/lib/firmware/nvidia/gv100/nvdec"}, {"filename": "desc.bin", "parent": "/usr/lib/firmware/nvidia/gv100/sec2"}, {"filename": "image.bin", "parent": "/usr/lib/firmware/nvidia/gv100/sec2"}, {"filename": "sig.bin", "parent": "/usr/lib/firmware/nvidia/gv100/sec2"}, {"filename": "vic03_ucode.bin", "parent": "/usr/lib/firmware/nvidia/tegra124"}, {"filename": "xusb.bin", "parent": "/usr/lib/firmware/nvidia/tegra124"}, {"filename": "vic04_ucode.bin", "parent": "/usr/lib/firmware/nvidia/tegra186"}, {"filename": "vic04_ucode.bin", "parent": "/usr/lib/firmware/nvidia/tegra210"}, {"filename": "xusb.bin", "parent": "/usr/lib/firmware/nvidia/tegra210"}, {"filename": "typec", "parent": "/usr/lib/firmware/nvidia/tu10x"}, {"filename": "ccg_boot.cyacd", "parent": "/usr/lib/firmware/nvidia/tu10x/typec"}, {"filename": "ccg_primary.cyacd", "parent": "/usr/lib/firmware/nvidia/tu10x/typec"}, {"filename": "ccg_secondary.cyacd", "parent": "/usr/lib/firmware/nvidia/tu10x/typec"}, {"filename": "Xilinx7OD.bin", "parent": "/usr/lib/firmware/ositech"}, {"filename": "b321_512.b56", "parent": "/usr/lib/firmware/pcxhr"}, {"filename": "d321_512.d56", "parent": "/usr/lib/firmware/pcxhr"}, {"filename": "dspb1222e.b56", "parent": "/usr/lib/firmware/pcxhr"}, {"filename": "dspb1222hr.b56", "parent": "/usr/lib/firmware/pcxhr"}, {"filename": "dspb882e.b56", "parent": "/usr/lib/firmware/pcxhr"}, {"filename": "dspb882hr.b56", "parent": "/usr/lib/firmware/pcxhr"}, {"filename": "dspb924.b56", "parent": "/usr/lib/firmware/pcxhr"}, {"filename": "dspd1222.d56", "parent": "/usr/lib/firmware/pcxhr"}, {"filename": "dspd222.d56", "parent": "/usr/lib/firmware/pcxhr"}, {"filename": "dspd882.d56", "parent": "/usr/lib/firmware/pcxhr"}, {"filename": "dspe882.e56", "parent": "/usr/lib/firmware/pcxhr"}, {"filename": "dspe924.e56", "parent": "/usr/lib/firmware/pcxhr"}, {"filename": "e321_512.e56", "parent": "/usr/lib/firmware/pcxhr"}, {"filename": "xc_1_882.dat", "parent": "/usr/lib/firmware/pcxhr"}, {"filename": "xi_1_882.dat", "parent": "/usr/lib/firmware/pcxhr"}, {"filename": "xlxc1222e.dat", "parent": "/usr/lib/firmware/pcxhr"}, {"filename": "xlxc1222hr.dat", "parent": "/usr/lib/firmware/pcxhr"}, {"filename": "xlxc222.dat", "parent": "/usr/lib/firmware/pcxhr"}, {"filename": "xlxc882e.dat", "parent": "/usr/lib/firmware/pcxhr"}, {"filename": "xlxc882hr.dat", "parent": "/usr/lib/firmware/pcxhr"}, {"filename": "xlxc924.dat", "parent": "/usr/lib/firmware/pcxhr"}, {"filename": "xlxint.dat", "parent": "/usr/lib/firmware/pcxhr"}, {"filename": "crbtfw21.tlv", "parent": "/usr/lib/firmware/qca"}, {"filename": "crnv21.bin", "parent": "/usr/lib/firmware/qca"}, {"filename": "NOTICE.txt", "parent": "/usr/lib/firmware/qca"}, {"filename": "nvm_00130300.bin", "parent": "/usr/lib/firmware/qca"}, {"filename": "nvm_00130302.bin", "parent": "/usr/lib/firmware/qca"}, {"filename": "nvm_00440302.bin", "parent": "/usr/lib/firmware/qca"}, {"filename": "nvm_usb_00000200.bin", "parent": "/usr/lib/firmware/qca"}, {"filename": "nvm_usb_00000201.bin", "parent": "/usr/lib/firmware/qca"}, {"filename": "nvm_usb_00000300.bin", "parent": "/usr/lib/firmware/qca"}, {"filename": "nvm_usb_00000302.bin", "parent": "/usr/lib/firmware/qca"}, {"filename": "rampatch_00130300.bin", "parent": "/usr/lib/firmware/qca"}, {"filename": "rampatch_00130302.bin", "parent": "/usr/lib/firmware/qca"}, {"filename": "rampatch_00440302.bin", "parent": "/usr/lib/firmware/qca"}, {"filename": "rampatch_usb_00000200.bin", "parent": "/usr/lib/firmware/qca"}, {"filename": "rampatch_usb_00000201.bin", "parent": "/usr/lib/firmware/qca"}, {"filename": "rampatch_usb_00000300.bin", "parent": "/usr/lib/firmware/qca"}, {"filename": "rampatch_usb_00000302.bin", "parent": "/usr/lib/firmware/qca"}, {"filename": "a300_pfp.fw", "parent": "/usr/lib/firmware/qcom"}, {"filename": "a300_pm4.fw", "parent": "/usr/lib/firmware/qcom"}, {"filename": "a530_pfp.fw", "parent": "/usr/lib/firmware/qcom"}, {"filename": "a530_pm4.fw", "parent": "/usr/lib/firmware/qcom"}, {"filename": "a530v3_gpmu.fw2", "parent": "/usr/lib/firmware/qcom"}, {"filename": "a530_zap.b00", "parent": "/usr/lib/firmware/qcom"}, {"filename": "a530_zap.b01", "parent": "/usr/lib/firmware/qcom"}, {"filename": "a530_zap.b02", "parent": "/usr/lib/firmware/qcom"}, {"filename": "a530_zap.mdt", "parent": "/usr/lib/firmware/qcom"}, {"filename": "NOTICE.txt", "parent": "/usr/lib/firmware/qcom"}, {"filename": "venus-1.8", "parent": "/usr/lib/firmware/qcom"}, {"filename": "venus-4.2", "parent": "/usr/lib/firmware/qcom"}, {"filename": "venus-5.2", "parent": "/usr/lib/firmware/qcom"}, {"filename": "venus.b00", "parent": "/usr/lib/firmware/qcom/venus-1.8"}, {"filename": "venus.b01", "parent": "/usr/lib/firmware/qcom/venus-1.8"}, {"filename": "venus.b02", "parent": "/usr/lib/firmware/qcom/venus-1.8"}, {"filename": "venus.b03", "parent": "/usr/lib/firmware/qcom/venus-1.8"}, {"filename": "venus.b04", "parent": "/usr/lib/firmware/qcom/venus-1.8"}, {"filename": "venus.mdt", "parent": "/usr/lib/firmware/qcom/venus-1.8"}, {"filename": "venus.b00", "parent": "/usr/lib/firmware/qcom/venus-4.2"}, {"filename": "venus.b01", "parent": "/usr/lib/firmware/qcom/venus-4.2"}, {"filename": "venus.b02", "parent": "/usr/lib/firmware/qcom/venus-4.2"}, {"filename": "venus.b03", "parent": "/usr/lib/firmware/qcom/venus-4.2"}, {"filename": "venus.b04", "parent": "/usr/lib/firmware/qcom/venus-4.2"}, {"filename": "venus.mdt", "parent": "/usr/lib/firmware/qcom/venus-4.2"}, {"filename": "venus.b00", "parent": "/usr/lib/firmware/qcom/venus-5.2"}, {"filename": "venus.b01", "parent": "/usr/lib/firmware/qcom/venus-5.2"}, {"filename": "venus.b02", "parent": "/usr/lib/firmware/qcom/venus-5.2"}, {"filename": "venus.b03", "parent": "/usr/lib/firmware/qcom/venus-5.2"}, {"filename": "venus.b04", "parent": "/usr/lib/firmware/qcom/venus-5.2"}, {"filename": "venus.mbn", "parent": "/usr/lib/firmware/qcom/venus-5.2"}, {"filename": "venus.mdt", "parent": "/usr/lib/firmware/qcom/venus-5.2"}, {"filename": "qed_init_values-8.10.9.0.bin", "parent": "/usr/lib/firmware/qed"}, {"filename": "qed_init_values-8.14.6.0.bin", "parent": "/usr/lib/firmware/qed"}, {"filename": "qed_init_values-8.18.9.0.bin", "parent": "/usr/lib/firmware/qed"}, {"filename": "qed_init_values-8.20.0.0.bin", "parent": "/usr/lib/firmware/qed"}, {"filename": "qed_init_values-8.30.12.0.bin", "parent": "/usr/lib/firmware/qed"}, {"filename": "qed_init_values-8.33.12.0.bin", "parent": "/usr/lib/firmware/qed"}, {"filename": "qed_init_values-8.37.7.0.bin", "parent": "/usr/lib/firmware/qed"}, {"filename": "qed_init_values_zipped-8.10.10.0.bin", "parent": "/usr/lib/firmware/qed"}, {"filename": "qed_init_values_zipped-8.10.5.0.bin", "parent": "/usr/lib/firmware/qed"}, {"filename": "qed_init_values_zipped-8.15.3.0.bin", "parent": "/usr/lib/firmware/qed"}, {"filename": "qed_init_values_zipped-8.20.0.0.bin", "parent": "/usr/lib/firmware/qed"}, {"filename": "qed_init_values_zipped-8.33.1.0.bin", "parent": "/usr/lib/firmware/qed"}, {"filename": "qed_init_values_zipped-8.33.11.0.bin", "parent": "/usr/lib/firmware/qed"}, {"filename": "qed_init_values_zipped-8.37.2.0.bin", "parent": "/usr/lib/firmware/qed"}, {"filename": "qed_init_values_zipped-8.37.7.0.bin", "parent": "/usr/lib/firmware/qed"}, {"filename": "qed_init_values_zipped-8.4.2.0.bin", "parent": "/usr/lib/firmware/qed"}, {"filename": "qed_init_values_zipped-8.7.3.0.bin", "parent": "/usr/lib/firmware/qed"}, {"filename": "1040.bin", "parent": "/usr/lib/firmware/qlogic"}, {"filename": "12160.bin", "parent": "/usr/lib/firmware/qlogic"}, {"filename": "1280.bin", "parent": "/usr/lib/firmware/qlogic"}, {"filename": "isp1000.bin", "parent": "/usr/lib/firmware/qlogic"}, {"filename": "sd7220.fw", "parent": "/usr/lib/firmware/qlogic"}, {"filename": "r128_cce.bin", "parent": "/usr/lib/firmware/r128"}, {"filename": "ARUBA_me.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "ARUBA_pfp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "ARUBA_rlc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "banks_k_2_smc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "BARTS_mc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "BARTS_me.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "BARTS_pfp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "BARTS_smc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "bonaire_ce.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "BONAIRE_ce.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "bonaire_k_smc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "BONAIRE_mc2.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "bonaire_mc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "BONAIRE_mc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "bonaire_me.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "BONAIRE_me.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "bonaire_mec.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "BONAIRE_mec.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "bonaire_pfp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "BONAIRE_pfp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "bonaire_rlc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "BONAIRE_rlc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "bonaire_sdma1.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "bonaire_sdma.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "BONAIRE_sdma.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "bonaire_smc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "BONAIRE_smc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "bonaire_uvd.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "BONAIRE_uvd.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "bonaire_vce.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "BONAIRE_vce.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "BTC_rlc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "CAICOS_mc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "CAICOS_me.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "CAICOS_pfp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "CAICOS_smc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "CAYMAN_mc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "CAYMAN_me.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "CAYMAN_pfp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "CAYMAN_rlc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "CAYMAN_smc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "CEDAR_me.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "CEDAR_pfp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "CEDAR_rlc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "CEDAR_smc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "CYPRESS_me.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "CYPRESS_pfp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "CYPRESS_rlc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "CYPRESS_smc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "CYPRESS_uvd.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "hainan_ce.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "HAINAN_ce.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "hainan_k_smc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "HAINAN_mc2.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "hainan_mc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "HAINAN_mc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "hainan_me.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "HAINAN_me.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "hainan_pfp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "HAINAN_pfp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "hainan_rlc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "HAINAN_rlc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "hainan_smc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "HAINAN_smc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "hawaii_ce.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "HAWAII_ce.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "hawaii_k_smc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "HAWAII_mc2.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "hawaii_mc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "HAWAII_mc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "hawaii_me.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "HAWAII_me.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "hawaii_mec.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "HAWAII_mec.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "hawaii_pfp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "HAWAII_pfp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "hawaii_rlc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "HAWAII_rlc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "hawaii_sdma1.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "hawaii_sdma.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "HAWAII_sdma.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "hawaii_smc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "HAWAII_smc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "hawaii_uvd.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "hawaii_vce.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "JUNIPER_me.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "JUNIPER_pfp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "JUNIPER_rlc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "JUNIPER_smc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "kabini_ce.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "KABINI_ce.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "kabini_me.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "KABINI_me.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "kabini_mec.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "KABINI_mec.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "kabini_pfp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "KABINI_pfp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "kabini_rlc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "KABINI_rlc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "kabini_sdma1.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "kabini_sdma.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "KABINI_sdma.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "kabini_uvd.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "kabini_vce.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "kaveri_ce.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "KAVERI_ce.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "kaveri_me.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "KAVERI_me.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "kaveri_mec2.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "kaveri_mec.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "KAVERI_mec.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "kaveri_pfp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "KAVERI_pfp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "kaveri_rlc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "KAVERI_rlc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "kaveri_sdma1.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "kaveri_sdma.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "KAVERI_sdma.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "kaveri_uvd.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "kaveri_vce.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "mullins_ce.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "MULLINS_ce.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "mullins_me.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "MULLINS_me.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "mullins_mec.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "MULLINS_mec.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "mullins_pfp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "MULLINS_pfp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "mullins_rlc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "MULLINS_rlc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "mullins_sdma1.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "mullins_sdma.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "MULLINS_sdma.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "mullins_uvd.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "mullins_vce.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "oland_ce.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "OLAND_ce.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "oland_k_smc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "OLAND_mc2.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "oland_mc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "OLAND_mc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "oland_me.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "OLAND_me.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "oland_pfp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "OLAND_pfp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "oland_rlc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "OLAND_rlc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "oland_smc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "OLAND_smc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "PALM_me.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "PALM_pfp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "pitcairn_ce.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "PITCAIRN_ce.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "pitcairn_k_smc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "PITCAIRN_mc2.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "pitcairn_mc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "PITCAIRN_mc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "pitcairn_me.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "PITCAIRN_me.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "pitcairn_pfp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "PITCAIRN_pfp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "pitcairn_rlc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "PITCAIRN_rlc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "pitcairn_smc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "PITCAIRN_smc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "R100_cp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "R200_cp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "R300_cp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "R420_cp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "R520_cp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "R600_me.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "R600_pfp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "R600_rlc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "R600_uvd.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "R700_rlc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "REDWOOD_me.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "REDWOOD_pfp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "REDWOOD_rlc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "REDWOOD_smc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "RS600_cp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "RS690_cp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "RS780_me.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "RS780_pfp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "RS780_uvd.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "RV610_me.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "RV610_pfp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "RV620_me.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "RV620_pfp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "RV630_me.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "RV630_pfp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "RV635_me.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "RV635_pfp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "RV670_me.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "RV670_pfp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "RV710_me.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "RV710_pfp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "RV710_smc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "RV710_uvd.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "RV730_me.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "RV730_pfp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "RV730_smc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "RV740_smc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "RV770_me.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "RV770_pfp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "RV770_smc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "RV770_uvd.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "si58_mc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "SUMO2_me.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "SUMO2_pfp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "SUMO_me.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "SUMO_pfp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "SUMO_rlc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "SUMO_uvd.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "tahiti_ce.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "TAHITI_ce.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "tahiti_k_smc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "TAHITI_mc2.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "tahiti_mc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "TAHITI_mc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "tahiti_me.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "TAHITI_me.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "tahiti_pfp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "TAHITI_pfp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "tahiti_rlc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "TAHITI_rlc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "tahiti_smc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "TAHITI_smc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "TAHITI_uvd.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "TAHITI_vce.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "TURKS_mc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "TURKS_me.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "TURKS_pfp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "TURKS_smc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "verde_ce.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "VERDE_ce.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "verde_k_smc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "VERDE_mc2.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "verde_mc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "VERDE_mc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "verde_me.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "VERDE_me.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "verde_pfp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "VERDE_pfp.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "verde_rlc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "VERDE_rlc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "verde_smc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "VERDE_smc.bin", "parent": "/usr/lib/firmware/radeon"}, {"filename": "dptx.bin", "parent": "/usr/lib/firmware/rockchip"}, {"filename": "rs9113_ap_bt_dual_mode.rps", "parent": "/usr/lib/firmware/rsi"}, {"filename": "rs9113_wlan_bt_dual_mode.rps", "parent": "/usr/lib/firmware/rsi"}, {"filename": "rs9113_wlan_qspi.rps", "parent": "/usr/lib/firmware/rsi"}, {"filename": "boot.img", "parent": "/usr/lib/firmware/RTL8192E"}, {"filename": "data.img", "parent": "/usr/lib/firmware/RTL8192E"}, {"filename": "main.img", "parent": "/usr/lib/firmware/RTL8192E"}, {"filename": "rtl8192ee_fw.bin", "parent": "/usr/lib/firmware/rtl_bt"}, {"filename": "rtl8192eu_fw.bin", "parent": "/usr/lib/firmware/rtl_bt"}, {"filename": "rtl8723a_fw.bin", "parent": "/usr/lib/firmware/rtl_bt"}, {"filename": "rtl8723b_fw.bin", "parent": "/usr/lib/firmware/rtl_bt"}, {"filename": "rtl8723bs_config-OBDA8723.bin", "parent": "/usr/lib/firmware/rtl_bt"}, {"filename": "rtl8723bs_fw.bin", "parent": "/usr/lib/firmware/rtl_bt"}, {"filename": "rtl8723d_config.bin", "parent": "/usr/lib/firmware/rtl_bt"}, {"filename": "rtl8723d_fw.bin", "parent": "/usr/lib/firmware/rtl_bt"}, {"filename": "rtl8761a_fw.bin", "parent": "/usr/lib/firmware/rtl_bt"}, {"filename": "rtl8812ae_fw.bin", "parent": "/usr/lib/firmware/rtl_bt"}, {"filename": "rtl8821a_fw.bin", "parent": "/usr/lib/firmware/rtl_bt"}, {"filename": "rtl8821c_config.bin", "parent": "/usr/lib/firmware/rtl_bt"}, {"filename": "rtl8821c_fw.bin", "parent": "/usr/lib/firmware/rtl_bt"}, {"filename": "rtl8822b_config.bin", "parent": "/usr/lib/firmware/rtl_bt"}, {"filename": "rtl8822b_fw.bin", "parent": "/usr/lib/firmware/rtl_bt"}, {"filename": "rtl8822cu_fw.bin", "parent": "/usr/lib/firmware/rtl_bt"}, {"filename": "rtl8105e-1.fw", "parent": "/usr/lib/firmware/rtl_nic"}, {"filename": "rtl8106e-1.fw", "parent": "/usr/lib/firmware/rtl_nic"}, {"filename": "rtl8106e-2.fw", "parent": "/usr/lib/firmware/rtl_nic"}, {"filename": "rtl8107e-1.fw", "parent": "/usr/lib/firmware/rtl_nic"}, {"filename": "rtl8107e-2.fw", "parent": "/usr/lib/firmware/rtl_nic"}, {"filename": "rtl8168d-1.fw", "parent": "/usr/lib/firmware/rtl_nic"}, {"filename": "rtl8168d-2.fw", "parent": "/usr/lib/firmware/rtl_nic"}, {"filename": "rtl8168e-1.fw", "parent": "/usr/lib/firmware/rtl_nic"}, {"filename": "rtl8168e-2.fw", "parent": "/usr/lib/firmware/rtl_nic"}, {"filename": "rtl8168e-3.fw", "parent": "/usr/lib/firmware/rtl_nic"}, {"filename": "rtl8168f-1.fw", "parent": "/usr/lib/firmware/rtl_nic"}, {"filename": "rtl8168f-2.fw", "parent": "/usr/lib/firmware/rtl_nic"}, {"filename": "rtl8168g-1.fw", "parent": "/usr/lib/firmware/rtl_nic"}, {"filename": "rtl8168g-2.fw", "parent": "/usr/lib/firmware/rtl_nic"}, {"filename": "rtl8168g-3.fw", "parent": "/usr/lib/firmware/rtl_nic"}, {"filename": "rtl8168h-1.fw", "parent": "/usr/lib/firmware/rtl_nic"}, {"filename": "rtl8168h-2.fw", "parent": "/usr/lib/firmware/rtl_nic"}, {"filename": "rtl8402-1.fw", "parent": "/usr/lib/firmware/rtl_nic"}, {"filename": "rtl8411-1.fw", "parent": "/usr/lib/firmware/rtl_nic"}, {"filename": "rtl8411-2.fw", "parent": "/usr/lib/firmware/rtl_nic"}, {"filename": "rtl8188efw.bin", "parent": "/usr/lib/firmware/rtlwifi"}, {"filename": "rtl8188eufw.bin", "parent": "/usr/lib/firmware/rtlwifi"}, {"filename": "rtl8192cfw.bin", "parent": "/usr/lib/firmware/rtlwifi"}, {"filename": "rtl8192cfwU_B.bin", "parent": "/usr/lib/firmware/rtlwifi"}, {"filename": "rtl8192cfwU.bin", "parent": "/usr/lib/firmware/rtlwifi"}, {"filename": "rtl8192cufw_A.bin", "parent": "/usr/lib/firmware/rtlwifi"}, {"filename": "rtl8192cufw_B.bin", "parent": "/usr/lib/firmware/rtlwifi"}, {"filename": "rtl8192cufw.bin", "parent": "/usr/lib/firmware/rtlwifi"}, {"filename": "rtl8192cufw_TMSC.bin", "parent": "/usr/lib/firmware/rtlwifi"}, {"filename": "rtl8192defw.bin", "parent": "/usr/lib/firmware/rtlwifi"}, {"filename": "rtl8192eefw.bin", "parent": "/usr/lib/firmware/rtlwifi"}, {"filename": "rtl8192eu_ap_wowlan.bin", "parent": "/usr/lib/firmware/rtlwifi"}, {"filename": "rtl8192eu_nic.bin", "parent": "/usr/lib/firmware/rtlwifi"}, {"filename": "rtl8192eu_wowlan.bin", "parent": "/usr/lib/firmware/rtlwifi"}, {"filename": "rtl8192sefw.bin", "parent": "/usr/lib/firmware/rtlwifi"}, {"filename": "rtl8712u.bin", "parent": "/usr/lib/firmware/rtlwifi"}, {"filename": "rtl8723aufw_A.bin", "parent": "/usr/lib/firmware/rtlwifi"}, {"filename": "rtl8723aufw_B.bin", "parent": "/usr/lib/firmware/rtlwifi"}, {"filename": "rtl8723aufw_B_NoBT.bin", "parent": "/usr/lib/firmware/rtlwifi"}, {"filename": "rtl8723befw_36.bin", "parent": "/usr/lib/firmware/rtlwifi"}, {"filename": "rtl8723befw.bin", "parent": "/usr/lib/firmware/rtlwifi"}, {"filename": "rtl8723bs_ap_wowlan.bin", "parent": "/usr/lib/firmware/rtlwifi"}, {"filename": "rtl8723bs_bt.bin", "parent": "/usr/lib/firmware/rtlwifi"}, {"filename": "rtl8723bs_nic.bin", "parent": "/usr/lib/firmware/rtlwifi"}, {"filename": "rtl8723bs_wowlan.bin", "parent": "/usr/lib/firmware/rtlwifi"}, {"filename": "rtl8723bu_ap_wowlan.bin", "parent": "/usr/lib/firmware/rtlwifi"}, {"filename": "rtl8723bu_nic.bin", "parent": "/usr/lib/firmware/rtlwifi"}, {"filename": "rtl8723bu_wowlan.bin", "parent": "/usr/lib/firmware/rtlwifi"}, {"filename": "rtl8723defw.bin", "parent": "/usr/lib/firmware/rtlwifi"}, {"filename": "rtl8723fw_B.bin", "parent": "/usr/lib/firmware/rtlwifi"}, {"filename": "rtl8723fw.bin", "parent": "/usr/lib/firmware/rtlwifi"}, {"filename": "rtl8821aefw_29.bin", "parent": "/usr/lib/firmware/rtlwifi"}, {"filename": "rtl8821aefw.bin", "parent": "/usr/lib/firmware/rtlwifi"}, {"filename": "rtl8821aefw_wowlan.bin", "parent": "/usr/lib/firmware/rtlwifi"}, {"filename": "rtl8822befw.bin", "parent": "/usr/lib/firmware/rtlwifi"}, {"filename": "rtw8822b_fw.bin", "parent": "/usr/lib/firmware/rtw88"}, {"filename": "rtw8822c_fw.bin", "parent": "/usr/lib/firmware/rtw88"}, {"filename": "alaw_main.csp", "parent": "/usr/lib/firmware/sb16"}, {"filename": "ima_adpcm_capture.csp", "parent": "/usr/lib/firmware/sb16"}, {"filename": "ima_adpcm_init.csp", "parent": "/usr/lib/firmware/sb16"}, {"filename": "ima_adpcm_playback.csp", "parent": "/usr/lib/firmware/sb16"}, {"filename": "mulaw_main.csp", "parent": "/usr/lib/firmware/sb16"}, {"filename": "gbdownload.sys", "parent": "/usr/lib/firmware/slicoss"}, {"filename": "gbrcvucode.sys", "parent": "/usr/lib/firmware/slicoss"}, {"filename": "oasisdbgdownload.sys", "parent": "/usr/lib/firmware/slicoss"}, {"filename": "oasisdownload.sys", "parent": "/usr/lib/firmware/slicoss"}, {"filename": "oasisrcvucode.sys", "parent": "/usr/lib/firmware/slicoss"}, {"filename": "cassini.bin", "parent": "/usr/lib/firmware/sun"}, {"filename": "saharadbgdownloadB.sys", "parent": "/usr/lib/firmware/sxg"}, {"filename": "saharadownloadB.sys", "parent": "/usr/lib/firmware/sxg"}, {"filename": "bdx.bin", "parent": "/usr/lib/firmware/tehuti"}, {"filename": "tg357766.bin", "parent": "/usr/lib/firmware/tigon"}, {"filename": "tg3.bin", "parent": "/usr/lib/firmware/tigon"}, {"filename": "tg3_tso5.bin", "parent": "/usr/lib/firmware/tigon"}, {"filename": "tg3_tso.bin", "parent": "/usr/lib/firmware/tigon"}, {"filename": "ks2_qmss_pdsp_acc48_k2_le_1_0_0_9.bin", "parent": "/usr/lib/firmware/ti-keystone"}, {"filename": "dspbootcode.bin", "parent": "/usr/lib/firmware/ttusb-budget"}, {"filename": "930-fpga.bin", "parent": "/usr/lib/firmware/ueagle-atm"}, {"filename": "adi930.fw", "parent": "/usr/lib/firmware/ueagle-atm"}, {"filename": "CMV4p.bin.v2", "parent": "/usr/lib/firmware/ueagle-atm"}, {"filename": "CMV9i.bin", "parent": "/usr/lib/firmware/ueagle-atm"}, {"filename": "CMV9p.bin", "parent": "/usr/lib/firmware/ueagle-atm"}, {"filename": "CMVei.bin", "parent": "/usr/lib/firmware/ueagle-atm"}, {"filename": "CMVeiWO.bin", "parent": "/usr/lib/firmware/ueagle-atm"}, {"filename": "CMVep.bin", "parent": "/usr/lib/firmware/ueagle-atm"}, {"filename": "CMVepES03.bin", "parent": "/usr/lib/firmware/ueagle-atm"}, {"filename": "CMVepES.bin", "parent": "/usr/lib/firmware/ueagle-atm"}, {"filename": "CMVepFR04.bin", "parent": "/usr/lib/firmware/ueagle-atm"}, {"filename": "CMVepFR10.bin", "parent": "/usr/lib/firmware/ueagle-atm"}, {"filename": "CMVepFR.bin", "parent": "/usr/lib/firmware/ueagle-atm"}, {"filename": "CMVepIT.bin", "parent": "/usr/lib/firmware/ueagle-atm"}, {"filename": "CMVepWO.bin", "parent": "/usr/lib/firmware/ueagle-atm"}, {"filename": "DSP4p.bin", "parent": "/usr/lib/firmware/ueagle-atm"}, {"filename": "DSP9i.bin", "parent": "/usr/lib/firmware/ueagle-atm"}, {"filename": "DSP9p.bin", "parent": "/usr/lib/firmware/ueagle-atm"}, {"filename": "DSPei.bin", "parent": "/usr/lib/firmware/ueagle-atm"}, {"filename": "DSPep.bin", "parent": "/usr/lib/firmware/ueagle-atm"}, {"filename": "eagleI.fw", "parent": "/usr/lib/firmware/ueagle-atm"}, {"filename": "eagleII.fw", "parent": "/usr/lib/firmware/ueagle-atm"}, {"filename": "eagleIII.fw", "parent": "/usr/lib/firmware/ueagle-atm"}, {"filename": "eagleIV.fw", "parent": "/usr/lib/firmware/ueagle-atm"}, {"filename": "firmware.fw", "parent": "/usr/lib/firmware/vicam"}, {"filename": "bd56002.boot", "parent": "/usr/lib/firmware/vx"}, {"filename": "bd563s3.boot", "parent": "/usr/lib/firmware/vx"}, {"filename": "bd563v2.boot", "parent": "/usr/lib/firmware/vx"}, {"filename": "bx_1_vp4.b56", "parent": "/usr/lib/firmware/vx"}, {"filename": "bx_1_vxp.b56", "parent": "/usr/lib/firmware/vx"}, {"filename": "l_1_v22.d56", "parent": "/usr/lib/firmware/vx"}, {"filename": "l_1_vp4.d56", "parent": "/usr/lib/firmware/vx"}, {"filename": "l_1_vx2.d56", "parent": "/usr/lib/firmware/vx"}, {"filename": "l_1_vxp.d56", "parent": "/usr/lib/firmware/vx"}, {"filename": "x1_1_vp4.xlx", "parent": "/usr/lib/firmware/vx"}, {"filename": "x1_1_vx2.xlx", "parent": "/usr/lib/firmware/vx"}, {"filename": "x1_1_vxp.xlx", "parent": "/usr/lib/firmware/vx"}, {"filename": "x1_2_v22.xlx", "parent": "/usr/lib/firmware/vx"}, {"filename": "1200.bin", "parent": "/usr/lib/firmware/yam"}, {"filename": "9600.bin", "parent": "/usr/lib/firmware/yam"}, {"filename": "ds1_ctrl.fw", "parent": "/usr/lib/firmware/yamaha"}, {"filename": "ds1_dsp.fw", "parent": "/usr/lib/firmware/yamaha"}, {"filename": "ds1e_ctrl.fw", "parent": "/usr/lib/firmware/yamaha"}, {"filename": "yss225_registers.bin", "parent": "/usr/lib/firmware/yamaha"}, {"filename": "ruby", "parent": "/usr/lib/gems"}, {"filename": "i386-pc", "parent": "/usr/lib/grub"}, {"filename": "acpi.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "adler32.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "affs.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "afs.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "ahci.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "all_video.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "aout.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "archelp.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "ata.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "at_keyboard.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "backtrace.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "bfs.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "biosdisk.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "bitmap.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "bitmap_scale.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "blocklist.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "blscfg.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "boot_hybrid.image", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "boot_hybrid.img", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "boot.image", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "boot.img", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "boot.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "bsd.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "btrfs.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "bufio.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "cat.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "cbfs.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "cbls.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "cbmemc.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "cbtable.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "cbtime.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "cdboot.image", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "cdboot.img", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "chain.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "cmdline_cat_test.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "cmosdump.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "cmostest.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "cmp.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "command.lst", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "configfile.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "config.h", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "cpio_be.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "cpio.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "cpuid.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "crc64.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "cryptodisk.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "crypto.lst", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "crypto.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "cs5536.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "datehook.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "date.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "datetime.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "diskboot.image", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "diskboot.img", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "diskfilter.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "disk.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "div_test.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "dm_nv.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "drivemap.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "echo.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "efiemu.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "ehci.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "elf.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "eval.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "exfat.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "exfctest.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "ext2.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "extcmd.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "fat.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "file.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "font.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "freedos.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "fshelp.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "fs.lst", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "functional_test.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_arcfour.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_blowfish.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_camellia.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_cast5.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_crc.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_des.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_dsa.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_idea.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_md4.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_md5.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_rfc2268.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_rijndael.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_rmd160.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_rsa.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_seed.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_serpent.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_sha1.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_sha256.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_sha512.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_tiger.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_twofish.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_whirlpool.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gdb_grub2", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gdb.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "geli.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gettext.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gfxmenu.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gfxterm_background.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gfxterm_menu.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gfxterm.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gmodule.pl", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gptsync.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gzio.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "halt.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "hashsum.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "hdparm.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "hello.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "help.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "hexdump.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "hfs.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "hfspluscomp.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "hfsplus.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "http.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "iorw.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "iso9660.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "jfs.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "jpeg.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "kernel.exec", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "kernel.img", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "keylayouts.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "keystatus.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "ldm.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "legacycfg.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "legacy_password_test.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "linux16.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "linux.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "lnxboot.image", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "lnxboot.img", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "loadenv.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "loopback.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "lsacpi.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "lsapm.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "lsmmap.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "ls.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "lspci.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "luks.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "lvm.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "lzma_decompress.image", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "lzma_decompress.img", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "lzopio.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "macbless.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "macho.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "mda_text.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "mdraid09_be.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "mdraid09.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "mdraid1x.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "memdisk.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "memrw.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "minicmd.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "minix2_be.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "minix2.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "minix3_be.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "minix3.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "minix_be.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "minix.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "mmap.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "moddep.lst", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "modinfo.sh", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "morse.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "mpi.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "msdospart.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "multiboot2.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "multiboot.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "nativedisk.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "net.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "newc.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "nilfs2.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "normal.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "ntfscomp.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "ntfs.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "ntldr.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "odc.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "offsetio.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "ohci.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "part_acorn.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "part_amiga.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "part_apple.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "part_bsd.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "part_dfly.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "part_dvh.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "part_gpt.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "partmap.lst", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "part_msdos.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "part_plan.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "part_sun.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "part_sunpc.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "parttool.lst", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "parttool.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "password.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "password_pbkdf2.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "pata.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "pbkdf2.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "pbkdf2_test.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "pcidump.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "pci.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "plan9.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "play.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "png.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "priority_queue.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "probe.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "procfs.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "progress.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "pxeboot.image", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "pxeboot.img", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "pxechain.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "pxe.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "raid5rec.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "raid6rec.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "read.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "reboot.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "regexp.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "reiserfs.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "relocator.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "romfs.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "scsi.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "search_fs_file.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "search_fs_uuid.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "search_label.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "search.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "sendkey.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "serial.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "setjmp.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "setjmp_test.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "setpci.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "sfs.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "signature_test.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "sleep.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "sleep_test.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "spkmodem.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "squash4.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "syslinuxcfg.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "tar.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "terminal.lst", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "terminal.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "terminfo.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "test_blockarg.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "testload.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "test.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "testspeed.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "tftp.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "tga.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "time.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "trig.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "tr.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "truecrypt.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "true.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "udf.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "ufs1_be.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "ufs1.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "ufs2.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "uhci.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "usb_keyboard.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "usb.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "usbms.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "usbserial_common.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "usbserial_ftdi.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "usbserial_pl2303.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "usbserial_usbdebug.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "usbtest.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "vbe.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "verify.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "vga.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "vga_text.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "video_bochs.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "video_cirrus.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "video_colors.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "video_fb.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "videoinfo.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "video.lst", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "video.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "videotest_checksum.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "videotest.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "xfs.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "xnu.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "xnu_uuid.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "xnu_uuid_test.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "xzio.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "zfscrypt.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "zfsinfo.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "zfs.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "consolefonts", "parent": "/usr/lib/kbd"}, {"filename": "consoletrans", "parent": "/usr/lib/kbd"}, {"filename": "keymaps", "parent": "/usr/lib/kbd"}, {"filename": "unimaps", "parent": "/usr/lib/kbd"}, {"filename": "161.cp.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "162.cp.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "163.cp.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "164.cp.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "165.cp.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "737.cp.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "880.cp.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "928.cp.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "972.cp.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "Agafari-12.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "Agafari-14.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "Agafari-16.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "alt-8x14.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "alt-8x16.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "alt-8x8.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "altc-8x16.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "aply16.psf.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "arm8.fnt.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "cp1250.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "cp850-8x14.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "cp850-8x16.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "cp850-8x8.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "cp857.08.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "cp857.14.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "cp857.16.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "cp865-8x14.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "cp865-8x16.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "cp865-8x8.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "cp866-8x14.psf.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "cp866-8x16.psf.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "cp866-8x8.psf.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "cybercafe.fnt.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "Cyr_a8x14.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "Cyr_a8x16.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "Cyr_a8x8.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "cyr-sun16.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "default8x16.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "default8x9.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "drdos8x14.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "drdos8x16.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "drdos8x6.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "drdos8x8.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "ERRORS", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "eurlatgr.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "Goha-12.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "Goha-14.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "Goha-16.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "GohaClassic-12.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "GohaClassic-14.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "GohaClassic-16.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "gr737a-8x8.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "gr737a-9x14.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "gr737a-9x16.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "gr737b-8x11.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "gr737b-9x16-medieval.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "gr737c-8x14.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "gr737c-8x16.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "gr737c-8x6.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "gr737c-8x7.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "gr737c-8x8.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "gr737d-8x16.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "gr928-8x16-thin.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "gr928-9x14.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "gr928-9x16.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "gr928a-8x14.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "gr928a-8x16.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "gr928b-8x14.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "gr928b-8x16.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "greek-polytonic.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "iso01.08.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "iso01-12x22.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "iso01.14.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "iso01.16.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "iso02.08.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "iso02-12x22.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "iso02.14.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "iso02.16.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "iso03.08.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "iso03.14.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "iso03.16.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "iso04.08.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "iso04.14.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "iso04.16.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "iso05.08.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "iso05.14.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "iso05.16.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "iso06.08.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "iso06.14.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "iso06.16.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "iso07.14.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "iso07.16.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "iso07u-16.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "iso08.08.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "iso08.14.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "iso08.16.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "iso09.08.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "iso09.14.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "iso09.16.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "iso10.08.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "iso10.14.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "iso10.16.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "koi8-14.psf.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "koi8c-8x16.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "koi8r-8x14.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "koi8r-8x16.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "koi8r-8x8.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "koi8r.8x8.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "koi8u_8x14.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "koi8u_8x16.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "koi8u_8x8.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat0-08.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat0-10.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat0-12.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat0-14.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat0-16.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat0-sun16.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat1-08.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat1-10.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat1-12.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat1-14.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat1-16.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat2-08.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat2-10.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat2-12.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat2-14.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat2-16.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat2a-16.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat2-sun16.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "Lat2-Terminus16.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat4-08.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat4-10.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat4-12.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat4-14.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat4-16.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat4-16+.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat4-19.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat4a-08.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat4a-10.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat4a-12.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat4a-14.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat4a-16.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat4a-16+.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat4a-19.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat5-12.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat5-14.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat5-16.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat7-14.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat7a-14.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat7a-16.psf.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat9-08.psf.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat9-10.psf.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat9-12.psf.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat9-14.psf.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat9-16.psf.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat9u-08.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat9u-10.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat9u-12.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat9u-14.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat9u-16.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat9v-08.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat9v-10.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat9v-12.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat9v-14.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat9v-16.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat9w-08.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat9w-10.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat9w-12.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat9w-14.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "lat9w-16.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "LatArCyrHeb-08.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "LatArCyrHeb-14.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "LatArCyrHeb-16.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "LatArCyrHeb-16+.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "LatArCyrHeb-19.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "latarcyrheb-sun16.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "latarcyrheb-sun32.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "LatGrkCyr-12x22.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "LatGrkCyr-8x16.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "LatKaCyrHeb-14.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "Mik_8x16.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "partialfonts", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "README.12x22", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "README.Arabic", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "README.cp1250", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "README.cybercafe", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "README.Cyrillic", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "README.drdos", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "README.Ethiopic", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "README.Greek", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "README.Hebrew", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "README.lat0", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "README.Lat2-Terminus16", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "README.lat7", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "README.lat9", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "README.LatGrkCyr", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "README.psfu", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "ruscii_8x16.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "ruscii_8x8.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "sun12x22.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "t850b.fnt.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "tcvn8x16.psf.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "t.fnt.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "UniCyr_8x14.psf.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "UniCyr_8x16.psf.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "UniCyr_8x8.psf.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "UniCyrExt_8x16.psf.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "viscii10-8x16.psfu.gz", "parent": "/usr/lib/kbd/consolefonts"}, {"filename": "8859-10.a0-ff.08.gz", "parent": "/usr/lib/kbd/consolefonts/partialfonts"}, {"filename": "8859-10.a0-ff.14.gz", "parent": "/usr/lib/kbd/consolefonts/partialfonts"}, {"filename": "8859-10.a0-ff.16.gz", "parent": "/usr/lib/kbd/consolefonts/partialfonts"}, {"filename": "8859-1.a0-ff.08.gz", "parent": "/usr/lib/kbd/consolefonts/partialfonts"}, {"filename": "8859-1.a0-ff.14.gz", "parent": "/usr/lib/kbd/consolefonts/partialfonts"}, {"filename": "8859-1.a0-ff.16.gz", "parent": "/usr/lib/kbd/consolefonts/partialfonts"}, {"filename": "8859-2.a0-ff.08.gz", "parent": "/usr/lib/kbd/consolefonts/partialfonts"}, {"filename": "8859-2.a0-ff.14.gz", "parent": "/usr/lib/kbd/consolefonts/partialfonts"}, {"filename": "8859-2.a0-ff.16.gz", "parent": "/usr/lib/kbd/consolefonts/partialfonts"}, {"filename": "8859-3.a0-ff.08.gz", "parent": "/usr/lib/kbd/consolefonts/partialfonts"}, {"filename": "8859-3.a0-ff.14.gz", "parent": "/usr/lib/kbd/consolefonts/partialfonts"}, {"filename": "8859-3.a0-ff.16.gz", "parent": "/usr/lib/kbd/consolefonts/partialfonts"}, {"filename": "8859-4.a0-ff.08.gz", "parent": "/usr/lib/kbd/consolefonts/partialfonts"}, {"filename": "8859-4.a0-ff.14.gz", "parent": "/usr/lib/kbd/consolefonts/partialfonts"}, {"filename": "8859-4.a0-ff.16.gz", "parent": "/usr/lib/kbd/consolefonts/partialfonts"}, {"filename": "8859-5.a0-ff.08.gz", "parent": "/usr/lib/kbd/consolefonts/partialfonts"}, {"filename": "8859-5.a0-ff.14.gz", "parent": "/usr/lib/kbd/consolefonts/partialfonts"}, {"filename": "8859-5.a0-ff.16.gz", "parent": "/usr/lib/kbd/consolefonts/partialfonts"}, {"filename": "8859-6.a0-ff.08.gz", "parent": "/usr/lib/kbd/consolefonts/partialfonts"}, {"filename": "8859-6.a0-ff.14.gz", "parent": "/usr/lib/kbd/consolefonts/partialfonts"}, {"filename": "8859-6.a0-ff.16.gz", "parent": "/usr/lib/kbd/consolefonts/partialfonts"}, {"filename": "8859-7.a0-ff.08.gz", "parent": "/usr/lib/kbd/consolefonts/partialfonts"}, {"filename": "8859-7.a0-ff.14.gz", "parent": "/usr/lib/kbd/consolefonts/partialfonts"}, {"filename": "8859-7.a0-ff.16.gz", "parent": "/usr/lib/kbd/consolefonts/partialfonts"}, {"filename": "8859-8.a0-ff.08.gz", "parent": "/usr/lib/kbd/consolefonts/partialfonts"}, {"filename": "8859-8.a0-ff.14.gz", "parent": "/usr/lib/kbd/consolefonts/partialfonts"}, {"filename": "8859-8.a0-ff.16.gz", "parent": "/usr/lib/kbd/consolefonts/partialfonts"}, {"filename": "8859-9.a0-ff.08.gz", "parent": "/usr/lib/kbd/consolefonts/partialfonts"}, {"filename": "8859-9.a0-ff.14.gz", "parent": "/usr/lib/kbd/consolefonts/partialfonts"}, {"filename": "8859-9.a0-ff.16.gz", "parent": "/usr/lib/kbd/consolefonts/partialfonts"}, {"filename": "ascii.20-7f.08.gz", "parent": "/usr/lib/kbd/consolefonts/partialfonts"}, {"filename": "ascii.20-7f.14.gz", "parent": "/usr/lib/kbd/consolefonts/partialfonts"}, {"filename": "ascii.20-7f.16.gz", "parent": "/usr/lib/kbd/consolefonts/partialfonts"}, {"filename": "cp437.00-1f.08.gz", "parent": "/usr/lib/kbd/consolefonts/partialfonts"}, {"filename": "cp437.00-1f.14.gz", "parent": "/usr/lib/kbd/consolefonts/partialfonts"}, {"filename": "cp437.00-1f.16.gz", "parent": "/usr/lib/kbd/consolefonts/partialfonts"}, {"filename": "none.00-17.08.gz", "parent": "/usr/lib/kbd/consolefonts/partialfonts"}, {"filename": "none.00-17.14.gz", "parent": "/usr/lib/kbd/consolefonts/partialfonts"}, {"filename": "none.00-17.16.gz", "parent": "/usr/lib/kbd/consolefonts/partialfonts"}, {"filename": "8859-10_to_uni.trans", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "8859-13_to_uni.trans", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "8859-14_to_uni.trans", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "8859-15_to_uni.trans", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "8859-1_to_uni.trans", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "8859-2_to_uni.trans", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "8859-3_to_uni.trans", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "8859-4_to_uni.trans", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "8859-5_to_uni.trans", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "8859-6_to_uni.trans", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "8859-7_to_uni.trans", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "8859-8_to_uni.trans", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "8859-9_to_uni.trans", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "baltic.trans", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "cp1250_to_uni.trans", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "cp1251_to_uni.trans", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "cp437_to_iso01.trans", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "cp437_to_uni.trans", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "cp737_to_uni.trans", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "cp775_to_uni.trans", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "cp850_to_iso01.trans", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "cp850_to_uni.trans", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "cp852_to_uni.trans", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "cp853_to_uni.trans", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "cp855_to_uni.trans", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "cp857_to_uni.trans", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "cp860_to_uni.trans", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "cp861_to_uni.trans", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "cp862_to_uni.trans", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "cp863_to_uni.trans", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "cp864_to_uni.trans", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "cp865_to_uni.trans", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "cp866_to_uni.trans", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "cp869_to_uni.trans", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "cp874_to_uni.trans", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "iso02_to_cp1250.trans", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "koi2alt", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "koi8-r_to_uni.trans", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "koi8u2ruscii", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "koi8-u_to_uni.trans", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "latin2u.trans", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "null", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "space", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "trivial", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "utflist", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "vga2iso", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "viscii1.0_to_tcvn.trans", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "viscii1.0_to_viscii1.1.trans", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "zero", "parent": "/usr/lib/kbd/consoletrans"}, {"filename": "legacy", "parent": "/usr/lib/kbd/keymaps"}, {"filename": "xkb", "parent": "/usr/lib/kbd/keymaps"}, {"filename": "amiga", "parent": "/usr/lib/kbd/keymaps/legacy"}, {"filename": "atari", "parent": "/usr/lib/kbd/keymaps/legacy"}, {"filename": "i386", "parent": "/usr/lib/kbd/keymaps/legacy"}, {"filename": "include", "parent": "/usr/lib/kbd/keymaps/legacy"}, {"filename": "mac", "parent": "/usr/lib/kbd/keymaps/legacy"}, {"filename": "ppc", "parent": "/usr/lib/kbd/keymaps/legacy"}, {"filename": "sun", "parent": "/usr/lib/kbd/keymaps/legacy"}, {"filename": "amiga-de.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/amiga"}, {"filename": "amiga-us.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/amiga"}, {"filename": "atari-de.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/atari"}, {"filename": "atari-se.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/atari"}, {"filename": "atari-uk-falcon.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/atari"}, {"filename": "atari-us.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/atari"}, {"filename": "azerty", "parent": "/usr/lib/kbd/keymaps/legacy/i386"}, {"filename": "colemak", "parent": "/usr/lib/kbd/keymaps/legacy/i386"}, {"filename": "dvorak", "parent": "/usr/lib/kbd/keymaps/legacy/i386"}, {"filename": "fgGIod", "parent": "/usr/lib/kbd/keymaps/legacy/i386"}, {"filename": "include", "parent": "/usr/lib/kbd/keymaps/legacy/i386"}, {"filename": "olpc", "parent": "/usr/lib/kbd/keymaps/legacy/i386"}, {"filename": "qwerty", "parent": "/usr/lib/kbd/keymaps/legacy/i386"}, {"filename": "qwertz", "parent": "/usr/lib/kbd/keymaps/legacy/i386"}, {"filename": "azerty.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/azerty"}, {"filename": "be-latin1.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/azerty"}, {"filename": "fr-latin0.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/azerty"}, {"filename": "fr-latin1.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/azerty"}, {"filename": "fr-latin9.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/azerty"}, {"filename": "fr.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/azerty"}, {"filename": "fr-old.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/azerty"}, {"filename": "fr-pc.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/azerty"}, {"filename": "wangbe2.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/azerty"}, {"filename": "wangbe.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/azerty"}, {"filename": "en-latin9.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/colemak"}, {"filename": "ANSI-dvorak.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/dvorak"}, {"filename": "dvorak-ca-fr.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/dvorak"}, {"filename": "dvorak-es.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/dvorak"}, {"filename": "dvorak-fr.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/dvorak"}, {"filename": "dvorak-l.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/dvorak"}, {"filename": "dvorak.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/dvorak"}, {"filename": "dvorak-r.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/dvorak"}, {"filename": "dvorak-ru.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/dvorak"}, {"filename": "dvorak-sv-a1.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/dvorak"}, {"filename": "dvorak-sv-a5.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/dvorak"}, {"filename": "dvorak-uk.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/dvorak"}, {"filename": "fr-dvorak.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/dvorak"}, {"filename": "no-dvorak.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/dvorak"}, {"filename": "trf-fgGIod.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/fgGIod"}, {"filename": "tr_f-latin5.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/fgGIod"}, {"filename": "applkey.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/include"}, {"filename": "azerty-layout.inc", "parent": "/usr/lib/kbd/keymaps/legacy/i386/include"}, {"filename": "backspace.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/include"}, {"filename": "compose.inc", "parent": "/usr/lib/kbd/keymaps/legacy/i386/include"}, {"filename": "ctrl.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/include"}, {"filename": "euro1.inc", "parent": "/usr/lib/kbd/keymaps/legacy/i386/include"}, {"filename": "euro1.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/include"}, {"filename": "euro2.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/include"}, {"filename": "euro.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/include"}, {"filename": "keypad.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/include"}, {"filename": "linux-keys-bare.inc", "parent": "/usr/lib/kbd/keymaps/legacy/i386/include"}, {"filename": "linux-keys-extd.inc", "parent": "/usr/lib/kbd/keymaps/legacy/i386/include"}, {"filename": "linux-with-alt-and-altgr.inc", "parent": "/usr/lib/kbd/keymaps/legacy/i386/include"}, {"filename": "linux-with-modeshift-altgr.inc", "parent": "/usr/lib/kbd/keymaps/legacy/i386/include"}, {"filename": "linux-with-two-alt-keys.inc", "parent": "/usr/lib/kbd/keymaps/legacy/i386/include"}, {"filename": "qwerty-layout.inc", "parent": "/usr/lib/kbd/keymaps/legacy/i386/include"}, {"filename": "qwertz-layout.inc", "parent": "/usr/lib/kbd/keymaps/legacy/i386/include"}, {"filename": "unicode.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/include"}, {"filename": "windowkeys.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/include"}, {"filename": "es-olpc.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/olpc"}, {"filename": "pt-olpc.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/olpc"}, {"filename": "bashkir.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "bg_bds-cp1251.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "bg_bds-utf8.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "bg-cp1251.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "bg-cp855.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "bg_pho-cp1251.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "bg_pho-utf8.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "br-abnt2.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "br-abnt.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "br-latin1-abnt2.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "br-latin1-us.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "by-cp1251.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "by.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "bywin-cp1251.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "cf.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "cz-cp1250.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "cz-lat2.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "cz-lat2-prog.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "cz-qwerty.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "defkeymap.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "defkeymap_V1.0.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "dk-latin1.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "dk.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "emacs2.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "emacs.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "es-cp850.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "es.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "et.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "et-nodeadkeys.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "fi-latin1.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "fi-latin9.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "fi.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "fi-old.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "gr.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "gr-pc.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "hu101.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "hypermap.m4", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "il-heb.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "il.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "il-phonetic.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "is-latin1.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "is-latin1-us.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "it2.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "it-ibm.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "it.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "jp106.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "kazakh.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "ko.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "ky_alt_sh-UTF-8.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "kyrgyz.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "la-latin1.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "lt.baltic.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "lt.l4.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "lt.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "mk0.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "mk-cp1251.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "mk.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "mk-utf.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "nl2.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "nl.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "no-latin1.doc", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "no-latin1.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "no.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "pc110.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "pl1.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "pl2.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "pl3.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "pl4.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "pl.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "pt-latin1.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "pt-latin9.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "pt.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "ro.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "ro_std.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "ru1.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "ru2.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "ru3.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "ru4.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "ru-cp1251.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "ru.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "ru-ms.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "ruwin_alt-CP1251.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "ruwin_alt-KOI8-R.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "ruwin_alt_sh-UTF-8.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "ruwin_alt-UTF-8.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "ruwin_cplk-CP1251.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "ruwin_cplk-KOI8-R.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "ruwin_cplk-UTF-8.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "ruwin_ctrl-CP1251.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "ruwin_ctrl-KOI8-R.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "ruwin_ctrl-UTF-8.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "ruwin_ct_sh-CP1251.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "ruwin_ct_sh-KOI8-R.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "ruwin_ct_sh-UTF-8.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "ru_win.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "ru-yawerty.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "se-fi-ir209.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "se-fi-lat6.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "se-ir209.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "se-lat6.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "se-latin1.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "sk-prog-qwerty.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "sk-qwerty.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "sr-cy.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "sr-latin.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "sv-latin1.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "tj_alt-UTF8.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "tralt.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "trf.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "tr_q-latin5.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "trq.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "ttwin_alt-UTF-8.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "ttwin_cplk-UTF-8.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "ttwin_ctrl-UTF-8.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "ttwin_ct_sh-UTF-8.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "ua-cp1251.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "ua.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "ua-utf.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "ua-utf-ws.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "ua-ws.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "uk.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "us-acentos.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}, {"filename": "us.map.gz", "parent": "/usr/lib/kbd/keymaps/legacy/i386/qwerty"}] jc-1.17.3/tests/fixtures/centos-7.7/ls-R.out000066400000000000000000002155651415226333200204030ustar00rootroot00000000000000/usr: bin etc games include lib lib64 libexec local sbin share src tmp /usr/bin: [ a2p addr2line alias apropos ar arch as aserver audit2allow audit2why aulast aulastlog ausyscall auvirt awk base64 basename bash bashbug bashbug-64 bg bond2team bootctl busctl c2ph cal ca-legacy captoinfo cat catchsegv catman cd centrino-decode certutil c++filt chacl chage chattr chcat chcon checkmodule checkpolicy chfn chgrp chmem chmod chown chronyc chrt chsh chvt cifsiostat cksum clear cmp cmsutil col colcrt colrm column comm command container-storage-setup coredumpctl cp cpio cpupower crlutil crontab csplit csslint-0.6 curl cut cvtsudoers date db_archive db_checkpoint db_deadlock db_dump db_dump185 db_hotbackup db_load db_log_verify db_printlog db_recover db_replicate db_stat db_tuner db_upgrade dbus-binding-tool dbus-cleanup-sockets dbus-daemon dbus-monitor dbus-run-session dbus-send dbus-test-tool dbus-update-activation-environment dbus-uuidgen db_verify dd deallocvt delv df dgawk diff diff3 dig dir dircolors dirname dmesg dnsdomainname docker docker-containerd docker-containerd-current docker-containerd-shim docker-containerd-shim-current docker-ctr-current docker-current dockerd dockerd-current docker-storage-setup domainname dracut du dumpkeys dwp easy_install easy_install-2.7 easy_install-3.6 echo egrep eject elfedit env envsubst eqn erb ex expand expr factor fallocate false fc fg fgconsole fgrep file find find2perl findmnt fipscheck fipshmac firewall-cmd firewall-offline-cmd flock fmt fold free funzip gapplication gawk gdbus gem gencat genl-ctrl-list geoiplookup geoiplookup6 geoipupdate geqn getconf getent getfacl getkeycodes getopt getopts gettext gettext.sh gio gio-querymodules-64 git git-receive-pack git-shell git-upload-archive git-upload-pack glib-compile-schemas gmake gneqn gnroff gpasswd gpg gpg2 gpg-agent gpgconf gpg-connect-agent gpg-error gpgparsemail gpgsplit gpgv gpgv2 gpg-zip gpic gprof grep groff grops grotty groups grub2-editenv grub2-file grub2-fstest grub2-glue-efi grub2-kbdcomp grub2-menulst2cfg grub2-mkfont grub2-mkimage grub2-mklayout grub2-mknetdir grub2-mkpasswd-pbkdf2 grub2-mkrelpath grub2-mkrescue grub2-mkstandalone grub2-render-label grub2-script-check grub2-syslinux2cfg gsettings gsoelim gtar gtbl gtroff gunzip gzexe gzip h2ph hdsploader head hexdump host hostid hostname hostnamectl i386 iconv id idiag-socket-details idn igawk info infocmp infokey infotocap install ionice iostat ipcalc ipcmk ipcrm ipcs iptables-xml irb isosize jobs join journalctl json_reformat json_verify kbdinfo kbd_mode kbdrate kdumpctl kernel-install kill kmod last lastb lastlog lchfn lchsh ld ld.bfd ldd ld.gold less lessecho lesskey lesspipe.sh lexgrog link linux32 linux64 linux-boot-prober ln loadkeys loadunimap locale localectl localedef logger login loginctl logname look ls lsattr lsblk lscpu lsinitrd lsipc lslocks lslogins lsmem lsns lsscsi lua luac lz4 lz4c lz4cat machinectl mailq mailq.postfix make makedb man mandb manpath mapscrn mcookie md5sum mdig mesg mixartloader mkdir mkfifo mkinitrd mknod mktemp modutil more mount mountpoint mpstat msgattrib msgcat msgcmp msgcomm msgconv msgen msgexec msgfilter msgfmt msggrep msghack msginit msgmerge msgunfmt msguniq mv namei ndptool neqn netstat newaliases newaliases.postfix newgidmap newgrp newuidmap nf-ct-add nf-ct-list nf-exp-add nf-exp-delete nf-exp-list nf-log nf-monitor nf-queue nfsiostat-sysstat ngettext nice nisdomainname nl nl-addr-add nl-addr-delete nl-addr-list nl-class-add nl-class-delete nl-classid-lookup nl-class-list nl-cls-add nl-cls-delete nl-cls-list nl-fib-lookup nl-link-enslave nl-link-ifindex2name nl-link-list nl-link-name2ifindex nl-link-release nl-link-set nl-link-stats nl-list-caches nl-list-sockets nl-monitor nl-neigh-add nl-neigh-delete nl-neigh-list nl-neightbl-list nl-pktloc-lookup nl-qdisc-add nl-qdisc-delete nl-qdisc-list nl-route-add nl-route-delete nl-route-get nl-route-list nl-rule-list nl-tctree-list nl-util-addr nm nmcli nm-online nmtui nmtui-connect nmtui-edit nmtui-hostname nohup nproc nroff nsenter nslookup nss-policy-check nsupdate numfmt objcopy objdump od oldfind open openssl openvt os-prober p11-kit passwd paste pathchk pchrt perl perl5.16.3 perlbug perldoc perlthanks pflags pgawk pgrep pic piconv pidstat pinentry pinentry-curses ping ping6 pinky pip3 pip-3 pip-3.6 pip3.6 pk12util pkaction pkcheck pkexec pkg-config pkill pkla-admin-identities pkla-check-authorization pkttyagent pl2pm pldd plymouth pmap pod2html pod2man pod2text pod2usage post-grohtml powernow-k8-decode pr preconv pre-grohtml printenv printf prlimit ps psed psfaddtable psfgettable psfstriptable psfxtable pstruct ptaskset ptx pwd pwdx pwmake pwscore pydoc pydoc3 pydoc3.6 python python2 python2.7 python3 python3.6 python3.6m pyvenv pyvenv-3.6 ranlib raw rdoc read readelf readlink realpath recode-sr-latin rename renice reset resizecons rev ri rm rmail rmail.postfix rmdir rpcgen rpm rpm2cpio rpmdb rpmkeys rpmquery rpmverify rsync rsyslog-recover-qi.pl ruby runcon run-parts rvi rview s2p sadf sandbox sar scp script scriptreplay sdiff secon sed sedismod sedispol semodule_package seq setarch setfacl setfont setkeycodes setleds setmetamode setpriv setsid setterm setup-nsssysinit setup-nsssysinit.sh setvtrgb sftp sg sh sha1sum sha224sum sha256sum sha384sum sha512sum showconsolefont showkey shred shuf signver size skill slabtop sleep slogin snice soelim sort sotruss splain split sprof sqlite3 ssh ssh-add ssh-agent ssh-copy-id ssh-keygen ssh-keyscan ssltap stat stdbuf strings strip stty su sudo sudoedit sudoreplay sum sync systemctl systemd-analyze systemd-ask-password systemd-cat systemd-cgls systemd-cgtop systemd-coredumpctl systemd-delta systemd-detect-virt systemd-escape systemd-firstboot systemd-hwdb systemd-inhibit systemd-loginctl systemd-machine-id-setup systemd-notify systemd-nspawn systemd-path systemd-run systemd-stdio-bridge systemd-sysv-convert systemd-tmpfiles systemd-tty-ask-password-agent tabs tac tail tailf tapestat tar taskset tbl teamd teamdctl teamnl tee test testgdbm testrb tic timedatectl timeout tload tmon toe top touch tput tr tracepath tracepath6 troff true truncate trust tset tsort tty turbostat tzselect udevadm ul umask umount unalias uname unexpand unicode_start unicode_stop uniq unlink unlz4 unshare unxz unzip unzipsfx update-ca-trust update-mime-database uptime urlgrabber users usleep usx2yloader utmpdump uuidgen vdir vi view vlock vmstat vxloader w wait wall watch watchgnupg wc wdctl whatis whereis which whiptail who whoami write x86_64 x86_energy_perf_policy xargs xgettext xmlcatalog xmllint xmlwf xz xzcat xzcmp xzdec xzdiff xzegrep xzfgrep xzgrep xzless xzmore yes ypdomainname yum zcat zcmp zdiff zegrep zfgrep zforce zgrep zipgrep zipinfo zless zmore znew zsoelim /usr/etc: /usr/games: /usr/include: python2.7 python3.6m /usr/include/python2.7: pyconfig-64.h /usr/include/python3.6m: pyconfig-64.h /usr/lib: binfmt.d debug dracut firewalld firmware games gems grub kbd kdump kernel locale modprobe.d modules modules-load.d NetworkManager polkit-1 python2.7 python3.6 rpm sendmail sendmail.postfix sse2 sysctl.d systemd tmpfiles.d tuned udev yum-plugins /usr/lib/binfmt.d: /usr/lib/debug: bin lib lib64 sbin usr /usr/lib/debug/usr: bin lib lib64 sbin /usr/lib/debug/usr/bin: /usr/lib/debug/usr/lib: /usr/lib/debug/usr/lib64: /usr/lib/debug/usr/sbin: /usr/lib/dracut: dracut.conf.d dracut-functions dracut-functions.sh dracut-initramfs-restore dracut-init.sh dracut-install dracut-logger.sh dracut-version.sh modules.d skipcpio /usr/lib/dracut/dracut.conf.d: 01-dist.conf 01-microcode.conf 02-rescue.conf 50-nss-softokn.conf 76-phys-port-name.conf 99-microcode-override.conf /usr/lib/dracut/modules.d: 00bash 00systemd-bootchart 03modsign 03rescue 04watchdog 05busybox 05nss-softokn 10i18n 30convertfs 40network 45ifcfg 45url-lib 50drm 50plymouth 80cms 90bcache 90btrfs 90crypt 90dm 90dmraid 90dmsquash-live 90dmsquash-live-ntfs 90kernel-modules 90livenet 90lvm 90mdraid 90multipath 90qemu 90qemu-net 91crypt-gpg 91crypt-loop 95cifs 95dasd 95dasd_mod 95debug 95fcoe 95fcoe-uefi 95fstab-sys 95iscsi 95nbd 95nfs 95resume 95rootfs-block 95ssh-client 95terminfo 95udev-rules 95virtfs 95zfcp 95znet 97biosdevname 98ecryptfs 98pollcdrom 98selinux 98syslog 98systemd 98usrmount 99base 99fs-lib 99img-lib 99kdumpbase 99microcode_ctl-fw_dir_override 99shutdown 99uefi-lib /usr/lib/dracut/modules.d/00bash: module-setup.sh /usr/lib/dracut/modules.d/00systemd-bootchart: module-setup.sh /usr/lib/dracut/modules.d/03modsign: load-modsign-keys.sh module-setup.sh /usr/lib/dracut/modules.d/03rescue: module-setup.sh /usr/lib/dracut/modules.d/04watchdog: module-setup.sh watchdog.sh watchdog-stop.sh /usr/lib/dracut/modules.d/05busybox: module-setup.sh /usr/lib/dracut/modules.d/05nss-softokn: module-setup.sh /usr/lib/dracut/modules.d/10i18n: 10-console.rules console_init.sh module-setup.sh parse-i18n.sh README /usr/lib/dracut/modules.d/30convertfs: convertfs.sh do-convertfs.sh module-setup.sh /usr/lib/dracut/modules.d/40network: dhclient.conf dhclient-script.sh dhcp-root.sh ifname-genrules.sh ifup.sh kill-dhclient.sh module-setup.sh net-genrules.sh net-lib.sh netroot.sh parse-bond.sh parse-bridge.sh parse-ibft.sh parse-ifname.sh parse-ip-opts.sh parse-team.sh parse-vlan.sh /usr/lib/dracut/modules.d/45ifcfg: module-setup.sh write-ifcfg.sh /usr/lib/dracut/modules.d/45url-lib: module-setup.sh url-lib.sh /usr/lib/dracut/modules.d/50drm: module-setup.sh /usr/lib/dracut/modules.d/50plymouth: module-setup.sh plymouth-emergency.sh plymouth-newroot.sh plymouth-populate-initrd.sh plymouth-pretrigger.sh /usr/lib/dracut/modules.d/80cms: cmsifup.sh cmssetup.sh cms-write-ifcfg.sh module-setup.sh /usr/lib/dracut/modules.d/90bcache: module-setup.sh /usr/lib/dracut/modules.d/90btrfs: 80-btrfs.rules btrfs_device_ready.sh btrfs_finished.sh btrfs_timeout.sh module-setup.sh /usr/lib/dracut/modules.d/90crypt: crypt-cleanup.sh crypt-lib.sh cryptroot-ask.sh crypt-run-generator.sh module-setup.sh parse-crypt.sh parse-keydev.sh probe-keydev.sh /usr/lib/dracut/modules.d/90dm: 11-dm.rules 59-persistent-storage-dm.rules dm-pre-udev.sh dm-shutdown.sh module-setup.sh /usr/lib/dracut/modules.d/90dmraid: 61-dmraid-imsm.rules dmraid.sh module-setup.sh parse-dm.sh /usr/lib/dracut/modules.d/90dmsquash-live: apply-live-updates.sh checkisomd5@.service dmsquash-live-genrules.sh dmsquash-liveiso-genrules.sh dmsquash-live-root.sh iso-scan.sh module-setup.sh parse-dmsquash-live.sh parse-iso-scan.sh /usr/lib/dracut/modules.d/90dmsquash-live-ntfs: module-setup.sh /usr/lib/dracut/modules.d/90kernel-modules: insmodpost.sh module-setup.sh parse-kernel.sh /usr/lib/dracut/modules.d/90livenet: fetch-liveupdate.sh livenetroot.sh module-setup.sh parse-livenet.sh /usr/lib/dracut/modules.d/90lvm: 64-lvm.rules lvm_scan.sh module-setup.sh parse-lvm.sh /usr/lib/dracut/modules.d/90mdraid: 59-persistent-storage-md.rules 65-md-incremental-imsm.rules mdmon-pre-shutdown.sh mdmon-pre-udev.sh md-noddf.sh md-noimsm.sh mdraid-cleanup.sh mdraid-needshutdown.sh mdraid_start.sh mdraid-waitclean.sh md-shutdown.sh module-setup.sh parse-md.sh /usr/lib/dracut/modules.d/90multipath: module-setup.sh multipathd-needshutdown.sh multipathd.sh multipathd-stop.sh /usr/lib/dracut/modules.d/90qemu: module-setup.sh /usr/lib/dracut/modules.d/90qemu-net: module-setup.sh /usr/lib/dracut/modules.d/91crypt-gpg: crypt-gpg-lib.sh module-setup.sh /usr/lib/dracut/modules.d/91crypt-loop: crypt-loop-lib.sh module-setup.sh /usr/lib/dracut/modules.d/95cifs: cifs-lib.sh cifsroot.sh module-setup.sh parse-cifsroot.sh /usr/lib/dracut/modules.d/95dasd: module-setup.sh parse-dasd.sh /usr/lib/dracut/modules.d/95dasd_mod: module-setup.sh parse-dasd-mod.sh /usr/lib/dracut/modules.d/95debug: module-setup.sh /usr/lib/dracut/modules.d/95fcoe: cleanup-fcoe.sh fcoe-edd.sh fcoe-genrules.sh fcoe-up.sh lldpad.sh module-setup.sh parse-fcoe.sh /usr/lib/dracut/modules.d/95fcoe-uefi: module-setup.sh parse-uefifcoe.sh /usr/lib/dracut/modules.d/95fstab-sys: module-setup.sh mount-sys.sh /usr/lib/dracut/modules.d/95iscsi: cleanup-iscsi.sh iscsiroot.sh module-setup.sh mount-lun.sh parse-iscsiroot.sh /usr/lib/dracut/modules.d/95nbd: module-setup.sh nbdroot.sh parse-nbdroot.sh /usr/lib/dracut/modules.d/95nfs: module-setup.sh nfs-lib.sh nfsroot-cleanup.sh nfsroot.sh nfs-start-rpc.sh parse-nfsroot.sh /usr/lib/dracut/modules.d/95resume: module-setup.sh parse-resume.sh resume.sh /usr/lib/dracut/modules.d/95rootfs-block: block-genrules.sh module-setup.sh mount-root.sh parse-block.sh rootfallback.sh /usr/lib/dracut/modules.d/95ssh-client: module-setup.sh /usr/lib/dracut/modules.d/95terminfo: module-setup.sh /usr/lib/dracut/modules.d/95udev-rules: 59-persistent-storage.rules 61-persistent-storage.rules load-modules.sh module-setup.sh /usr/lib/dracut/modules.d/95virtfs: module-setup.sh mount-virtfs.sh parse-virtfs.sh virtfs-generator.sh /usr/lib/dracut/modules.d/95zfcp: module-setup.sh parse-zfcp.sh /usr/lib/dracut/modules.d/95znet: module-setup.sh parse-ccw.sh /usr/lib/dracut/modules.d/97biosdevname: module-setup.sh parse-biosdevname.sh /usr/lib/dracut/modules.d/98ecryptfs: ecryptfs-mount.sh module-setup.sh README /usr/lib/dracut/modules.d/98pollcdrom: module-setup.sh pollcdrom.sh /usr/lib/dracut/modules.d/98selinux: module-setup.sh selinux-loadpolicy.sh /usr/lib/dracut/modules.d/98syslog: module-setup.sh parse-syslog-opts.sh README rsyslog.conf rsyslogd-start.sh rsyslogd-stop.sh syslog-cleanup.sh syslog-genrules.sh /usr/lib/dracut/modules.d/98systemd: dracut-cmdline-ask.service dracut-cmdline-ask.sh dracut-cmdline.service dracut-cmdline.service.8 dracut-cmdline.service.8.asc dracut-cmdline.sh dracut-emergency.service dracut-emergency.sh dracut-initqueue.service dracut-initqueue.service.8 dracut-initqueue.service.8.asc dracut-initqueue.sh dracut-mount.service dracut-mount.service.8 dracut-mount.service.8.asc dracut-mount.sh dracut-pre-mount.service dracut-pre-mount.service.8 dracut-pre-mount.service.8.asc dracut-pre-mount.sh dracut-pre-pivot.service dracut-pre-pivot.service.8 dracut-pre-pivot.service.8.asc dracut-pre-pivot.sh dracut-pre-trigger.service dracut-pre-trigger.service.8 dracut-pre-trigger.service.8.asc dracut-pre-trigger.sh dracut-pre-udev.service dracut-pre-udev.service.8 dracut-pre-udev.service.8.asc dracut-pre-udev.sh dracut-shutdown.service dracut-shutdown.service.8 dracut-shutdown.service.8.asc dracut-tmpfiles.conf emergency.service initrd.target module-setup.sh rescue.service rootfs-generator.sh /usr/lib/dracut/modules.d/98usrmount: module-setup.sh mount-usr.sh /usr/lib/dracut/modules.d/99base: dracut-lib.sh initqueue.sh init.sh loginit.sh memtrace-ko.sh module-setup.sh parse-root-opts.sh rdsosreport.sh /usr/lib/dracut/modules.d/99fs-lib: fs-lib.sh module-setup.sh /usr/lib/dracut/modules.d/99img-lib: img-lib.sh module-setup.sh /usr/lib/dracut/modules.d/99kdumpbase: kdump-capture.service kdump-emergency.service kdump-emergency.target kdump-error-handler.service kdump-error-handler.sh kdump.sh module-setup.sh monitor_dd_progress /usr/lib/dracut/modules.d/99microcode_ctl-fw_dir_override: module-setup.sh /usr/lib/dracut/modules.d/99shutdown: module-setup.sh shutdown.sh /usr/lib/dracut/modules.d/99uefi-lib: module-setup.sh uefi-lib.sh /usr/lib/firewalld: helpers icmptypes ipsets services zones /usr/lib/firewalld/helpers: amanda.xml ftp.xml h323.xml irc.xml netbios-ns.xml pptp.xml proto-gre.xml Q.931.xml RAS.xml sane.xml sip.xml snmp.xml tftp.xml /usr/lib/firewalld/icmptypes: address-unreachable.xml bad-header.xml beyond-scope.xml communication-prohibited.xml destination-unreachable.xml echo-reply.xml echo-request.xml failed-policy.xml fragmentation-needed.xml host-precedence-violation.xml host-prohibited.xml host-redirect.xml host-unknown.xml host-unreachable.xml ip-header-bad.xml neighbour-advertisement.xml neighbour-solicitation.xml network-prohibited.xml network-redirect.xml network-unknown.xml network-unreachable.xml no-route.xml packet-too-big.xml parameter-problem.xml port-unreachable.xml precedence-cutoff.xml protocol-unreachable.xml redirect.xml reject-route.xml required-option-missing.xml router-advertisement.xml router-solicitation.xml source-quench.xml source-route-failed.xml time-exceeded.xml timestamp-reply.xml timestamp-request.xml tos-host-redirect.xml tos-host-unreachable.xml tos-network-redirect.xml tos-network-unreachable.xml ttl-zero-during-reassembly.xml ttl-zero-during-transit.xml unknown-header-type.xml unknown-option.xml /usr/lib/firewalld/ipsets: README /usr/lib/firewalld/services: amanda-client.xml amanda-k5-client.xml amqps.xml amqp.xml apcupsd.xml audit.xml bacula-client.xml bacula.xml bgp.xml bitcoin-rpc.xml bitcoin-testnet-rpc.xml bitcoin-testnet.xml bitcoin.xml ceph-mon.xml ceph.xml cfengine.xml condor-collector.xml ctdb.xml dhcpv6-client.xml dhcpv6.xml dhcp.xml distcc.xml dns.xml docker-registry.xml docker-swarm.xml dropbox-lansync.xml elasticsearch.xml etcd-client.xml etcd-server.xml finger.xml freeipa-ldaps.xml freeipa-ldap.xml freeipa-replication.xml freeipa-trust.xml ftp.xml ganglia-client.xml ganglia-master.xml git.xml gre.xml high-availability.xml https.xml http.xml imaps.xml imap.xml ipp-client.xml ipp.xml ipsec.xml ircs.xml irc.xml iscsi-target.xml isns.xml jenkins.xml kadmin.xml kerberos.xml kibana.xml klogin.xml kpasswd.xml kprop.xml kshell.xml ldaps.xml ldap.xml libvirt-tls.xml libvirt.xml lightning-network.xml llmnr.xml managesieve.xml matrix.xml mdns.xml minidlna.xml mongodb.xml mosh.xml mountd.xml mqtt-tls.xml mqtt.xml mssql.xml ms-wbt.xml murmur.xml mysql.xml nfs3.xml nfs.xml nmea-0183.xml nrpe.xml ntp.xml nut.xml openvpn.xml ovirt-imageio.xml ovirt-storageconsole.xml ovirt-vmconsole.xml plex.xml pmcd.xml pmproxy.xml pmwebapis.xml pmwebapi.xml pop3s.xml pop3.xml postgresql.xml privoxy.xml proxy-dhcp.xml ptp.xml pulseaudio.xml puppetmaster.xml quassel.xml radius.xml redis.xml RH-Satellite-6.xml rpc-bind.xml rsh.xml rsyncd.xml rtsp.xml salt-master.xml samba-client.xml samba-dc.xml samba.xml sane.xml sips.xml sip.xml slp.xml smtp-submission.xml smtps.xml smtp.xml snmptrap.xml snmp.xml spideroak-lansync.xml squid.xml ssh.xml steam-streaming.xml svdrp.xml svn.xml syncthing-gui.xml syncthing.xml synergy.xml syslog-tls.xml syslog.xml telnet.xml tftp-client.xml tftp.xml tinc.xml tor-socks.xml transmission-client.xml upnp-client.xml vdsm.xml vnc-server.xml wbem-https.xml wbem-http.xml wsmans.xml wsman.xml xdmcp.xml xmpp-bosh.xml xmpp-client.xml xmpp-local.xml xmpp-server.xml zabbix-agent.xml zabbix-server.xml /usr/lib/firewalld/zones: block.xml dmz.xml drop.xml external.xml home.xml internal.xml public.xml trusted.xml work.xml /usr/lib/firmware: 3.10.0-1062.1.2.el7.x86_64 3.10.0-957.27.2.el7.x86_64 3.10.0-957.el7.x86_64 3com a300_pfp.fw a300_pm4.fw acenic adaptec advansys agere_ap_fw.bin agere_sta_fw.bin aic94xx-seq.fw aica_firmware.bin amd amdgpu amd-ucode ar3k ar5523.bin ar7010_1_1.fw ar7010.fw ar9170-1.fw ar9170-2.fw ar9271.fw as102_data1_st.hex as102_data2_st.hex asihpi ath10k ath3k-1.fw ath9k_htc atmel atmsar11.fw atusb av7110 bnx2 bnx2x bnx2x-e1-4.8.53.0.fw bnx2x-e1-5.2.13.0.fw bnx2x-e1-5.2.7.0.fw bnx2x-e1h-4.8.53.0.fw bnx2x-e1h-5.2.13.0.fw bnx2x-e1h-5.2.7.0.fw brcm cadence carl9170-1.fw cavium cbfw-3.2.1.1.bin cbfw-3.2.3.0.bin cbfw-3.2.5.1.bin cis cmmb_vega_12mhz.inp cmmb_venice_12mhz.inp configure cpia2 cs46xx ct2fw-3.2.1.1.bin ct2fw-3.2.3.0.bin ct2fw-3.2.5.1.bin ctefx.bin ctfw-3.2.1.1.bin ctfw-3.2.3.0.bin ctfw-3.2.5.1.bin ctspeq.bin cxgb3 cxgb4 dabusb digiface_firmware.bin digiface_firmware_rev11.bin dpaa2 dsp56k dvb-fe-xc4000-1.4.1.fw dvb-fe-xc5000-1.6.114.fw dvb-fe-xc5000c-4.1.30.7.fw dvb_nova_12mhz_b0.inp dvb_nova_12mhz.inp dvb-usb-dib0700-1.20.fw dvb-usb-it9135-01.fw dvb-usb-it9135-02.fw dvb-usb-terratec-h5-drxk.fw e100 ea edgeport emi26 emi62 emu ene-ub6250 ess f2255usb.bin go7007 GPL-2 GPL-3 hfi1_dc8051.fw hfi1_fabric.fw hfi1_pcie.fw hfi1_sbus.fw htc_7010.fw htc_9271.fw i915 imx intel intelliport2.bin isci isdbt_nova_12mhz_b0.inp isdbt_nova_12mhz.inp isdbt_rio.inp ivtv-firmware-license-end-user.txt ivtv-firmware-license-oemihvisv.txt iwlwifi-1000-3.ucode iwlwifi-1000-5.ucode iwlwifi-100-5.ucode iwlwifi-105-6.ucode iwlwifi-135-6.ucode iwlwifi-2000-6.ucode iwlwifi-2030-6.ucode iwlwifi-3160-10.ucode iwlwifi-3160-12.ucode iwlwifi-3160-13.ucode iwlwifi-3160-16.ucode iwlwifi-3160-17.ucode iwlwifi-3160-7.ucode iwlwifi-3160-8.ucode iwlwifi-3160-9.ucode iwlwifi-3168-21.ucode iwlwifi-3168-22.ucode iwlwifi-3168-27.ucode iwlwifi-3168-29.ucode iwlwifi-3945-2.ucode iwlwifi-4965-2.ucode iwlwifi-5000-1.ucode iwlwifi-5000-2.ucode iwlwifi-5000-5.ucode iwlwifi-5150-2.ucode iwlwifi-6000-4.ucode iwlwifi-6000g2a-5.ucode iwlwifi-6000g2a-6.ucode iwlwifi-6000g2b-5.ucode iwlwifi-6000g2b-6.ucode iwlwifi-6050-4.ucode iwlwifi-6050-5.ucode iwlwifi-7260-10.ucode iwlwifi-7260-12.ucode iwlwifi-7260-13.ucode iwlwifi-7260-16.ucode iwlwifi-7260-17.ucode iwlwifi-7260-7.ucode iwlwifi-7260-8.ucode iwlwifi-7260-9.ucode iwlwifi-7265-10.ucode iwlwifi-7265-12.ucode iwlwifi-7265-13.ucode iwlwifi-7265-16.ucode iwlwifi-7265-17.ucode iwlwifi-7265-8.ucode iwlwifi-7265-9.ucode iwlwifi-7265D-10.ucode iwlwifi-7265D-12.ucode iwlwifi-7265D-13.ucode iwlwifi-7265D-16.ucode iwlwifi-7265D-17.ucode iwlwifi-7265D-21.ucode iwlwifi-7265D-22.ucode iwlwifi-7265D-27.ucode iwlwifi-7265D-29.ucode iwlwifi-8000C-13.ucode iwlwifi-8000C-16.ucode iwlwifi-8000C-21.ucode iwlwifi-8000C-22.ucode iwlwifi-8000C-27.ucode iwlwifi-8000C-31.ucode iwlwifi-8000C-34.ucode iwlwifi-8000C-36.ucode iwlwifi-8265-21.ucode iwlwifi-8265-22.ucode iwlwifi-8265-27.ucode iwlwifi-8265-31.ucode iwlwifi-8265-34.ucode iwlwifi-8265-36.ucode iwlwifi-9000-pu-b0-jf-b0-33.ucode iwlwifi-9000-pu-b0-jf-b0-34.ucode iwlwifi-9000-pu-b0-jf-b0-38.ucode iwlwifi-9000-pu-b0-jf-b0-41.ucode iwlwifi-9000-pu-b0-jf-b0-43.ucode iwlwifi-9260-th-b0-jf-b0-33.ucode iwlwifi-9260-th-b0-jf-b0-34.ucode iwlwifi-9260-th-b0-jf-b0-38.ucode iwlwifi-9260-th-b0-jf-b0-41.ucode iwlwifi-9260-th-b0-jf-b0-43.ucode kaweth keyspan keyspan_pda korg lbtf_usb.bin lgs8g75.fw liquidio Makefile matrox mediatek mellanox microchip mixart moxa mrvl mt7601u.bin mt7650.bin mt7662.bin mt7662_rom_patch.bin mts_cdma.fw mts_edge.fw mts_gsm.fw mts_mt9234mu.fw mts_mt9234zba.fw multiface_firmware.bin multiface_firmware_rev11.bin mwlwifi myri10ge_eth_big_z8e.dat myri10ge_ethp_big_z8e.dat myri10ge_ethp_z8e.dat myri10ge_eth_z8e.dat myri10ge_rss_eth_big_z8e.dat myri10ge_rss_ethp_big_z8e.dat myri10ge_rss_ethp_z8e.dat myri10ge_rss_eth_z8e.dat myricom netronome nvidia ositech pcxhr phanfw.bin qat_895xcc.bin qat_895xcc_mmp.bin qat_c3xxx.bin qat_c3xxx_mmp.bin qat_c62x.bin qat_c62x_mmp.bin qat_mmp.bin qca qcom qed ql2100_fw.bin ql2200_fw.bin ql2300_fw.bin ql2322_fw.bin ql2400_fw.bin ql2500_fw.bin qlogic r128 r8a779x_usb3_v1.dlmem r8a779x_usb3_v2.dlmem r8a779x_usb3_v3.dlmem radeon README rockchip rp2.fw rpm_firmware.bin rsi rsi_91x.fw rt2561.bin rt2561s.bin rt2661.bin rt2860.bin rt2870.bin rt3070.bin rt3071.bin rt3090.bin rt3290.bin rt73.bin RTL8192E rtl_bt rtl_nic rtlwifi rtw88 s2250.fw s2250_loader.fw s5p-mfc.fw s5p-mfc-v6.fw s5p-mfc-v6-v2.fw s5p-mfc-v7.fw s5p-mfc-v8.fw sb16 sdd_sagrad_1091_1098.bin slicoss sms1xxx-hcw-55xxx-dvbt-02.fw sms1xxx-hcw-55xxx-isdbt-02.fw sms1xxx-nova-a-dvbt-01.fw sms1xxx-nova-b-dvbt-01.fw sms1xxx-stellar-dvbt-01.fw sun sxg TDA7706_OM_v2.5.1_boot.txt TDA7706_OM_v3.0.2_boot.txt tdmb_nova_12mhz.inp tehuti ti_3410.fw ti_5052.fw tigon ti-keystone tlg2300_firmware.bin tr_smctr.bin ttusb-budget ueagle-atm updates usbdux usbduxfast_firmware.bin usbdux_firmware.bin usbduxsigma_firmware.bin v4l-cx231xx-avcore-01.fw v4l-cx2341x-dec.fw v4l-cx2341x-enc.fw v4l-cx2341x-init.mpg v4l-cx23885-avcore-01.fw v4l-cx25840.fw v4l-pvrusb2-24xxx-01.fw v4l-pvrusb2-29xxx-01.fw vicam vntwusb.fw vpu_d.bin vpu_p.bin vx whiteheat.fw whiteheat_loader.fw wil6210.brd wil6210.fw wsm_22.bin yam yamaha /usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64: intel-ucode readme-intel /usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode: 06-03-02 06-05-00 06-05-01 06-05-02 06-05-03 06-06-00 06-06-05 06-06-0a 06-06-0d 06-07-01 06-07-02 06-07-03 06-08-01 06-08-03 06-08-06 06-08-0a 06-09-05 06-0a-00 06-0a-01 06-0b-01 06-0b-04 06-0d-06 06-0e-08 06-0e-0c 06-0f-02 06-0f-06 06-0f-07 06-0f-0a 06-0f-0b 06-0f-0d 06-16-01 06-17-06 06-17-07 06-17-0a 06-1a-04 06-1a-05 06-1c-02 06-1c-0a 06-1d-01 06-1e-05 06-25-02 06-25-05 06-26-01 06-2a-07 06-2c-02 06-2d-06 06-2d-07 06-2e-06 06-2f-02 06-37-08 06-37-09 06-3a-09 06-3c-03 06-3d-04 06-3e-04 06-3e-06 06-3e-07 06-3f-02 06-3f-04 06-45-01 06-46-01 06-47-01 06-4c-03 06-4c-04 06-4e-03 06-55-04 06-55-07 06-56-02 06-56-03 06-56-04 06-56-05 06-5c-02 06-5c-09 06-5c-0a 06-5e-03 06-5f-01 06-7a-01 06-8e-09 06-8e-0a 06-8e-0b 06-8e-0c 06-9e-09 06-9e-0a 06-9e-0b 06-9e-0c 06-9e-0d 0f-00-07 0f-00-0a 0f-01-02 0f-02-04 0f-02-05 0f-02-06 0f-02-07 0f-02-09 0f-03-02 0f-03-03 0f-03-04 0f-04-01 0f-04-03 0f-04-04 0f-04-07 0f-04-08 0f-04-09 0f-04-0a 0f-06-02 0f-06-04 0f-06-05 0f-06-08 /usr/lib/firmware/3.10.0-957.27.2.el7.x86_64: intel-ucode readme-intel /usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode: 06-03-02 06-05-00 06-05-01 06-05-02 06-05-03 06-06-00 06-06-05 06-06-0a 06-06-0d 06-07-01 06-07-02 06-07-03 06-08-01 06-08-03 06-08-06 06-08-0a 06-09-05 06-0a-00 06-0a-01 06-0b-01 06-0b-04 06-0d-06 06-0e-08 06-0e-0c 06-0f-02 06-0f-06 06-0f-07 06-0f-0a 06-0f-0b 06-0f-0d 06-16-01 06-17-06 06-17-07 06-17-0a 06-1a-04 06-1a-05 06-1c-02 06-1c-0a 06-1d-01 06-1e-05 06-25-02 06-25-05 06-26-01 06-2a-07 06-2c-02 06-2d-06 06-2d-07 06-2e-06 06-2f-02 06-37-08 06-37-09 06-3a-09 06-3c-03 06-3d-04 06-3e-04 06-3e-06 06-3e-07 06-3f-02 06-3f-04 06-45-01 06-46-01 06-47-01 06-4c-03 06-4c-04 06-4e-03 06-55-03 06-55-04 06-55-07 06-56-02 06-56-03 06-56-04 06-56-05 06-5c-02 06-5c-09 06-5c-0a 06-5e-03 06-5f-01 06-7a-01 06-8e-09 06-8e-0a 06-8e-0b 06-8e-0c 06-9e-09 06-9e-0a 06-9e-0b 06-9e-0c 06-9e-0d 0f-00-07 0f-00-0a 0f-01-02 0f-02-04 0f-02-05 0f-02-06 0f-02-07 0f-02-09 0f-03-02 0f-03-03 0f-03-04 0f-04-01 0f-04-03 0f-04-04 0f-04-07 0f-04-08 0f-04-09 0f-04-0a 0f-06-02 0f-06-04 0f-06-05 0f-06-08 /usr/lib/firmware/3.10.0-957.el7.x86_64: intel-ucode readme-intel /usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode: 06-03-02 06-05-00 06-05-01 06-05-02 06-05-03 06-06-00 06-06-05 06-06-0a 06-06-0d 06-07-01 06-07-02 06-07-03 06-08-01 06-08-03 06-08-06 06-08-0a 06-09-05 06-0a-00 06-0a-01 06-0b-01 06-0b-04 06-0d-06 06-0e-08 06-0e-0c 06-0f-02 06-0f-06 06-0f-07 06-0f-0a 06-0f-0b 06-0f-0d 06-16-01 06-17-06 06-17-07 06-17-0a 06-1a-04 06-1a-05 06-1c-02 06-1c-0a 06-1d-01 06-1e-05 06-25-02 06-25-05 06-26-01 06-2a-07 06-2c-02 06-2d-06 06-2d-07 06-2e-06 06-2f-02 06-37-08 06-37-09 06-3a-09 06-3c-03 06-3d-04 06-3e-04 06-3e-06 06-3e-07 06-3f-02 06-3f-04 06-45-01 06-46-01 06-47-01 06-4c-03 06-4c-04 06-4e-03 06-55-03 06-55-04 06-55-07 06-56-02 06-56-03 06-56-04 06-56-05 06-5c-02 06-5c-09 06-5c-0a 06-5e-03 06-5f-01 06-7a-01 06-8e-09 06-8e-0a 06-8e-0b 06-8e-0c 06-9e-09 06-9e-0a 06-9e-0b 06-9e-0c 06-9e-0d 0f-00-07 0f-00-0a 0f-01-02 0f-02-04 0f-02-05 0f-02-06 0f-02-07 0f-02-09 0f-03-02 0f-03-03 0f-03-04 0f-04-01 0f-04-03 0f-04-04 0f-04-07 0f-04-08 0f-04-09 0f-04-0a 0f-06-02 0f-06-04 0f-06-05 0f-06-08 /usr/lib/firmware/3com: 3C359.bin typhoon.bin /usr/lib/firmware/acenic: tg1.bin tg2.bin /usr/lib/firmware/adaptec: starfire_rx.bin starfire_tx.bin /usr/lib/firmware/advansys: 3550.bin 38C0800.bin 38C1600.bin mcode.bin /usr/lib/firmware/amd: amd_sev_fam17h_model0xh.sbin /usr/lib/firmware/amdgpu: banks_k_2_smc.bin bonaire_ce.bin bonaire_k_smc.bin bonaire_mc.bin bonaire_me.bin bonaire_mec.bin bonaire_pfp.bin bonaire_rlc.bin bonaire_sdma1.bin bonaire_sdma.bin bonaire_smc.bin bonaire_uvd.bin bonaire_vce.bin carrizo_ce.bin carrizo_me.bin carrizo_mec2.bin carrizo_mec.bin carrizo_pfp.bin carrizo_rlc.bin carrizo_sdma1.bin carrizo_sdma.bin carrizo_uvd.bin carrizo_vce.bin fiji_ce.bin fiji_mc.bin fiji_me.bin fiji_mec2.bin fiji_mec.bin fiji_pfp.bin fiji_rlc.bin fiji_sdma1.bin fiji_sdma.bin fiji_smc.bin fiji_uvd.bin fiji_vce.bin hainan_ce.bin hainan_k_smc.bin hainan_mc.bin hainan_me.bin hainan_pfp.bin hainan_rlc.bin hainan_smc.bin hawaii_ce.bin hawaii_k_smc.bin hawaii_mc.bin hawaii_me.bin hawaii_mec.bin hawaii_pfp.bin hawaii_rlc.bin hawaii_sdma1.bin hawaii_sdma.bin hawaii_smc.bin hawaii_uvd.bin hawaii_vce.bin kabini_ce.bin kabini_me.bin kabini_mec.bin kabini_pfp.bin kabini_rlc.bin kabini_sdma1.bin kabini_sdma.bin kabini_uvd.bin kabini_vce.bin kaveri_ce.bin kaveri_me.bin kaveri_mec2.bin kaveri_mec.bin kaveri_pfp.bin kaveri_rlc.bin kaveri_sdma1.bin kaveri_sdma.bin kaveri_uvd.bin kaveri_vce.bin mullins_ce.bin mullins_me.bin mullins_mec.bin mullins_pfp.bin mullins_rlc.bin mullins_sdma1.bin mullins_sdma.bin mullins_uvd.bin mullins_vce.bin oland_ce.bin oland_k_smc.bin oland_mc.bin oland_me.bin oland_pfp.bin oland_rlc.bin oland_smc.bin picasso_asd.bin picasso_ce.bin picasso_gpu_info.bin picasso_me.bin picasso_mec2.bin picasso_mec.bin picasso_pfp.bin picasso_rlc_am4.bin picasso_rlc.bin picasso_sdma.bin picasso_vcn.bin pitcairn_ce.bin pitcairn_k_smc.bin pitcairn_mc.bin pitcairn_me.bin pitcairn_pfp.bin pitcairn_rlc.bin pitcairn_smc.bin polaris10_ce_2.bin polaris10_ce.bin polaris10_k2_smc.bin polaris10_k_mc.bin polaris10_k_smc.bin polaris10_mc.bin polaris10_me_2.bin polaris10_me.bin polaris10_mec2_2.bin polaris10_mec_2.bin polaris10_mec2.bin polaris10_mec.bin polaris10_pfp_2.bin polaris10_pfp.bin polaris10_rlc.bin polaris10_sdma1.bin polaris10_sdma.bin polaris10_smc.bin polaris10_smc_sk.bin polaris10_uvd.bin polaris10_vce.bin polaris11_ce_2.bin polaris11_ce.bin polaris11_k2_smc.bin polaris11_k_mc.bin polaris11_k_smc.bin polaris11_mc.bin polaris11_me_2.bin polaris11_me.bin polaris11_mec2_2.bin polaris11_mec_2.bin polaris11_mec2.bin polaris11_mec.bin polaris11_pfp_2.bin polaris11_pfp.bin polaris11_rlc.bin polaris11_sdma1.bin polaris11_sdma.bin polaris11_smc.bin polaris11_smc_sk.bin polaris11_uvd.bin polaris11_vce.bin polaris12_ce_2.bin polaris12_ce.bin polaris12_k_mc.bin polaris12_k_smc.bin polaris12_mc.bin polaris12_me_2.bin polaris12_me.bin polaris12_mec2_2.bin polaris12_mec_2.bin polaris12_mec2.bin polaris12_mec.bin polaris12_pfp_2.bin polaris12_pfp.bin polaris12_rlc.bin polaris12_sdma1.bin polaris12_sdma.bin polaris12_smc.bin polaris12_uvd.bin polaris12_vce.bin raven2_asd.bin raven2_ce.bin raven2_gpu_info.bin raven2_me.bin raven2_mec2.bin raven2_mec.bin raven2_pfp.bin raven2_rlc.bin raven2_sdma.bin raven2_vcn.bin raven_asd.bin raven_ce.bin raven_dmcu.bin raven_gpu_info.bin raven_me.bin raven_mec2.bin raven_mec.bin raven_pfp.bin raven_rlc.bin raven_sdma.bin raven_vcn.bin si58_mc.bin stoney_ce.bin stoney_me.bin stoney_mec.bin stoney_pfp.bin stoney_rlc.bin stoney_sdma.bin stoney_uvd.bin stoney_vce.bin tahiti_ce.bin tahiti_k_smc.bin tahiti_mc.bin tahiti_me.bin tahiti_pfp.bin tahiti_rlc.bin tahiti_smc.bin tonga_ce.bin tonga_k_smc.bin tonga_mc.bin tonga_me.bin tonga_mec2.bin tonga_mec.bin tonga_pfp.bin tonga_rlc.bin tonga_sdma1.bin tonga_sdma.bin tonga_smc.bin tonga_uvd.bin tonga_vce.bin topaz_ce.bin topaz_k_smc.bin topaz_mc.bin topaz_me.bin topaz_mec2.bin topaz_mec.bin topaz_pfp.bin topaz_rlc.bin topaz_sdma1.bin topaz_sdma.bin topaz_smc.bin vega10_acg_smc.bin vega10_asd.bin vega10_ce.bin vega10_gpu_info.bin vega10_me.bin vega10_mec2.bin vega10_mec.bin vega10_pfp.bin vega10_rlc.bin vega10_sdma1.bin vega10_sdma.bin vega10_smc.bin vega10_sos.bin vega10_uvd.bin vega10_vce.bin vega12_asd.bin vega12_ce.bin vega12_gpu_info.bin vega12_me.bin vega12_mec2.bin vega12_mec.bin vega12_pfp.bin vega12_rlc.bin vega12_sdma1.bin vega12_sdma.bin vega12_smc.bin vega12_sos.bin vega12_uvd.bin vega12_vce.bin vega20_asd.bin vega20_ce.bin vega20_me.bin vega20_mec2.bin vega20_mec.bin vega20_pfp.bin vega20_rlc.bin vega20_sdma1.bin vega20_sdma.bin vega20_smc.bin vega20_sos.bin vega20_uvd.bin vega20_vce.bin vegam_ce.bin vegam_me.bin vegam_mec2.bin vegam_mec.bin vegam_pfp.bin vegam_rlc.bin vegam_sdma1.bin vegam_sdma.bin vegam_smc.bin vegam_uvd.bin vegam_vce.bin verde_ce.bin verde_k_smc.bin verde_mc.bin verde_me.bin verde_pfp.bin verde_rlc.bin verde_smc.bin /usr/lib/firmware/amd-ucode: microcode_amd.bin microcode_amd.bin.asc microcode_amd_fam15h.bin microcode_amd_fam15h.bin.asc microcode_amd_fam16h.bin microcode_amd_fam16h.bin.asc microcode_amd_fam17h.bin microcode_amd_fam17h.bin.asc /usr/lib/firmware/ar3k: 1020200 1020201 1020201coex 30000 30101 30101coex AthrBT_0x01020001.dfu AthrBT_0x01020200.dfu AthrBT_0x01020201.dfu AthrBT_0x11020000.dfu AthrBT_0x11020100.dfu AthrBT_0x31010000.dfu AthrBT_0x31010100.dfu AthrBT_0x41020000.dfu ramps_0x01020001_26.dfu ramps_0x01020200_26.dfu ramps_0x01020200_40.dfu ramps_0x01020201_26.dfu ramps_0x01020201_40.dfu ramps_0x11020000_40.dfu ramps_0x11020100_40.dfu ramps_0x31010000_40.dfu ramps_0x31010100_40.dfu ramps_0x41020000_40.dfu /usr/lib/firmware/ar3k/1020200: ar3kbdaddr.pst PS_ASIC.pst RamPatch.txt /usr/lib/firmware/ar3k/1020201: PS_ASIC.pst RamPatch.txt /usr/lib/firmware/ar3k/1020201coex: ramps_0x01020201_26_HighPriority.dfu /usr/lib/firmware/ar3k/30000: ar3kbdaddr.pst PS_ASIC.pst RamPatch.txt /usr/lib/firmware/ar3k/30101: ar3kbdaddr.pst PS_ASIC.pst RamPatch.txt /usr/lib/firmware/ar3k/30101coex: ar3kbdaddr.pst PS_ASIC_aclHighPri.pst PS_ASIC_aclLowPri.pst PS_ASIC.pst RamPatch.txt /usr/lib/firmware/asihpi: dsp2400.bin dsp5000.bin dsp6200.bin dsp6205.bin dsp6400.bin dsp6600.bin dsp8700.bin dsp8900.bin /usr/lib/firmware/ath10k: QCA4019 QCA6174 QCA9377 QCA9887 QCA9888 QCA988X QCA9984 QCA99X0 /usr/lib/firmware/ath10k/QCA4019: hw1.0 /usr/lib/firmware/ath10k/QCA4019/hw1.0: board-2.bin firmware-5.bin notice_ath10k_firmware-5.txt /usr/lib/firmware/ath10k/QCA6174: hw2.1 hw3.0 /usr/lib/firmware/ath10k/QCA6174/hw2.1: board-2.bin board.bin firmware-5.bin notice_ath10k_firmware-5.txt /usr/lib/firmware/ath10k/QCA6174/hw3.0: board-2.bin board.bin firmware-4.bin firmware-6.bin notice_ath10k_firmware-4.txt notice_ath10k_firmware-6.txt /usr/lib/firmware/ath10k/QCA9377: hw1.0 /usr/lib/firmware/ath10k/QCA9377/hw1.0: board-2.bin board.bin firmware-5.bin firmware-6.bin notice_ath10k_firmware-5.txt notice_ath10k_firmware-6.txt /usr/lib/firmware/ath10k/QCA9887: hw1.0 /usr/lib/firmware/ath10k/QCA9887/hw1.0: board.bin firmware-5.bin notice_ath10k_firmware-5.txt /usr/lib/firmware/ath10k/QCA9888: hw2.0 /usr/lib/firmware/ath10k/QCA9888/hw2.0: board-2.bin firmware-5.bin notice_ath10k_firmware-5.txt /usr/lib/firmware/ath10k/QCA988X: hw2.0 /usr/lib/firmware/ath10k/QCA988X/hw2.0: board.bin firmware-4.bin firmware-5.bin notice_ath10k_firmware-4.txt notice_ath10k_firmware-5.txt /usr/lib/firmware/ath10k/QCA9984: hw1.0 /usr/lib/firmware/ath10k/QCA9984/hw1.0: board-2.bin firmware-5.bin notice_ath10k_firmware-5.txt /usr/lib/firmware/ath10k/QCA99X0: hw2.0 /usr/lib/firmware/ath10k/QCA99X0/hw2.0: board.bin firmware-5.bin notice_ath10k_firmware-5.txt /usr/lib/firmware/ath9k_htc: htc_7010-1.4.0.fw htc_9271-1.4.0.fw /usr/lib/firmware/atmel: wilc1000_ap_fw.bin wilc1000_fw.bin wilc1000_p2p_fw.bin wilc1000_wifi_firmware.bin /usr/lib/firmware/atusb: atusb-0.2.dfu atusb-0.3.dfu ChangeLog rzusb-0.3.bin /usr/lib/firmware/av7110: bootcode.bin Boot.S Makefile /usr/lib/firmware/bnx2: bnx2-mips-06-4.6.16.fw bnx2-mips-06-5.0.0.j3.fw bnx2-mips-06-5.0.0.j6.fw bnx2-mips-06-6.0.15.fw bnx2-mips-06-6.2.1.fw bnx2-mips-06-6.2.3.fw bnx2-mips-09-4.6.17.fw bnx2-mips-09-5.0.0.j15.fw bnx2-mips-09-5.0.0.j3.fw bnx2-mips-09-5.0.0.j9.fw bnx2-mips-09-6.0.17.fw bnx2-mips-09-6.2.1a.fw bnx2-mips-09-6.2.1b.fw bnx2-mips-09-6.2.1.fw bnx2-rv2p-06-4.6.16.fw bnx2-rv2p-06-5.0.0.j3.fw bnx2-rv2p-06-6.0.15.fw bnx2-rv2p-09-4.6.15.fw bnx2-rv2p-09-5.0.0.j10.fw bnx2-rv2p-09-5.0.0.j3.fw bnx2-rv2p-09-6.0.17.fw bnx2-rv2p-09ax-5.0.0.j10.fw bnx2-rv2p-09ax-5.0.0.j3.fw bnx2-rv2p-09ax-6.0.17.fw /usr/lib/firmware/bnx2x: bnx2x-e1-6.0.34.0.fw bnx2x-e1-6.2.5.0.fw bnx2x-e1-6.2.9.0.fw bnx2x-e1-7.0.20.0.fw bnx2x-e1-7.0.23.0.fw bnx2x-e1-7.0.29.0.fw bnx2x-e1-7.10.51.0.fw bnx2x-e1-7.12.30.0.fw bnx2x-e1-7.13.1.0.fw bnx2x-e1-7.13.11.0.fw bnx2x-e1-7.2.16.0.fw bnx2x-e1-7.2.51.0.fw bnx2x-e1-7.8.17.0.fw bnx2x-e1-7.8.19.0.fw bnx2x-e1-7.8.2.0.fw bnx2x-e1h-6.0.34.0.fw bnx2x-e1h-6.2.5.0.fw bnx2x-e1h-6.2.9.0.fw bnx2x-e1h-7.0.20.0.fw bnx2x-e1h-7.0.23.0.fw bnx2x-e1h-7.0.29.0.fw bnx2x-e1h-7.10.51.0.fw bnx2x-e1h-7.12.30.0.fw bnx2x-e1h-7.13.1.0.fw bnx2x-e1h-7.13.11.0.fw bnx2x-e1h-7.2.16.0.fw bnx2x-e1h-7.2.51.0.fw bnx2x-e1h-7.8.17.0.fw bnx2x-e1h-7.8.19.0.fw bnx2x-e1h-7.8.2.0.fw bnx2x-e2-6.0.34.0.fw bnx2x-e2-6.2.5.0.fw bnx2x-e2-6.2.9.0.fw bnx2x-e2-7.0.20.0.fw bnx2x-e2-7.0.23.0.fw bnx2x-e2-7.0.29.0.fw bnx2x-e2-7.10.51.0.fw bnx2x-e2-7.12.30.0.fw bnx2x-e2-7.13.1.0.fw bnx2x-e2-7.13.11.0.fw bnx2x-e2-7.2.16.0.fw bnx2x-e2-7.2.51.0.fw bnx2x-e2-7.8.17.0.fw bnx2x-e2-7.8.19.0.fw bnx2x-e2-7.8.2.0.fw /usr/lib/firmware/brcm: BCM-0bb4-0306.hcd bcm4329-fullmac-4.bin bcm43xx-0.fw bcm43xx_hdr-0.fw brcmfmac43143.bin brcmfmac43143-sdio.bin brcmfmac43236b.bin brcmfmac43241b0-sdio.bin brcmfmac43241b4-sdio.bin brcmfmac43241b5-sdio.bin brcmfmac43242a.bin brcmfmac4329-sdio.bin brcmfmac4330-sdio.bin brcmfmac4330-sdio.Prowise-PT301.txt brcmfmac43340-sdio.bin brcmfmac43340-sdio.meegopad-t08.txt brcmfmac4334-sdio.bin brcmfmac4335-sdio.bin brcmfmac43362-sdio.bin brcmfmac43362-sdio.cubietech,cubietruck.txt brcmfmac43362-sdio.lemaker,bananapro.txt brcmfmac4339-sdio.bin brcmfmac43430a0-sdio.bin brcmfmac43430a0-sdio.jumper-ezpad-mini3.txt brcmfmac43430a0-sdio.ONDA-V80 PLUS.txt brcmfmac43430-sdio.AP6212.txt brcmfmac43430-sdio.bin brcmfmac43430-sdio.Hampoo-D2D3_Vi8A1.txt brcmfmac43430-sdio.MUR1DX.txt brcmfmac43430-sdio.raspberrypi,3-model-b.txt brcmfmac43455-sdio.bin brcmfmac43455-sdio.raspberrypi,3-model-b-plus.txt brcmfmac4350c2-pcie.bin brcmfmac4350-pcie.bin brcmfmac4354-sdio.bin brcmfmac43569.bin brcmfmac4356-pcie.bin brcmfmac4356-pcie.gpd-win-pocket.txt brcmfmac4356-sdio.bin brcmfmac43570-pcie.bin brcmfmac4358-pcie.bin brcmfmac43602-pcie.ap.bin brcmfmac43602-pcie.bin brcmfmac4366b-pcie.bin brcmfmac4366c-pcie.bin brcmfmac4371-pcie.bin brcmfmac4373.bin brcmfmac4373-sdio.bin /usr/lib/firmware/cadence: mhdp8546.bin /usr/lib/firmware/cavium: cnn55xx_se.fw /usr/lib/firmware/cis: 3CCFEM556.cis 3CXEM556.cis COMpad2.cis COMpad4.cis DP83903.cis LA-PCM.cis Makefile MT5634ZLX.cis NE2K.cis PCMLM28.cis PE-200.cis PE520.cis RS-COM-2P.cis src SW_555_SER.cis SW_7xx_SER.cis SW_8xx_SER.cis tamarack.cis /usr/lib/firmware/cis/src: 3CCFEM556.cis 3CXEM556.cis COMpad2.cis COMpad4.cis DP83903.cis LA-PCM.cis MT5634ZLX.cis NE2K.cis PCMLM28.cis PE-200.cis PE520.cis RS-COM-2P.cis tamarack.cis /usr/lib/firmware/cpia2: stv0672_vp4.bin /usr/lib/firmware/cs46xx: ba1 cwc4630 cwcasync cwcbinhack cwcdma cwcsnoop /usr/lib/firmware/cxgb3: ael2005_opt_edc.bin ael2005_twx_edc.bin ael2020_twx_edc.bin t3b_psram-1.1.0.bin t3c_psram-1.1.0.bin t3fw-7.0.0.bin t3fw-7.10.0.bin t3fw-7.1.0.bin t3fw-7.12.0.bin t3fw-7.4.0.bin /usr/lib/firmware/cxgb4: aq1202_fw.cld bcm8483.bin t4fw-1.14.4.0.bin t4fw-1.15.37.0.bin t4fw-1.23.4.0.bin t4fw.bin t5fw-1.14.4.0.bin t5fw-1.15.37.0.bin t5fw-1.23.4.0.bin t5fw.bin t6fw-1.23.4.0.bin t6fw.bin /usr/lib/firmware/dabusb: bitstream.bin firmware.fw /usr/lib/firmware/dpaa2: mc /usr/lib/firmware/dpaa2/mc: mc_10.10.0_ls1088a.itb mc_10.10.0_ls2088a.itb mc_10.10.0_lx2160a.itb /usr/lib/firmware/dsp56k: bootstrap.bin concat-bootstrap.pl Makefile /usr/lib/firmware/e100: d101m_ucode.bin d101s_ucode.bin d102e_ucode.bin /usr/lib/firmware/ea: 3g_asic.fw darla20_dsp.fw darla24_dsp.fw echo3g_dsp.fw gina20_dsp.fw gina24_301_asic.fw gina24_301_dsp.fw gina24_361_asic.fw gina24_361_dsp.fw indigo_dj_dsp.fw indigo_djx_dsp.fw indigo_dsp.fw indigo_io_dsp.fw indigo_iox_dsp.fw layla20_asic.fw layla20_dsp.fw layla24_1_asic.fw layla24_2A_asic.fw layla24_2S_asic.fw layla24_dsp.fw loader_dsp.fw mia_dsp.fw mona_2_asic.fw mona_301_1_asic_48.fw mona_301_1_asic_96.fw mona_301_dsp.fw mona_361_1_asic_48.fw mona_361_1_asic_96.fw mona_361_dsp.fw /usr/lib/firmware/edgeport: boot2.fw boot.fw down2.fw down3.bin down.fw /usr/lib/firmware/emi26: bitstream.fw firmware.fw loader.fw /usr/lib/firmware/emi62: bitstream.fw loader.fw midi.fw spdif.fw /usr/lib/firmware/emu: audio_dock.fw emu0404.fw emu1010b.fw emu1010_notebook.fw hana.fw micro_dock.fw /usr/lib/firmware/ene-ub6250: ms_init.bin msp_rdwr.bin ms_rdwr.bin sd_init1.bin sd_init2.bin sd_rdwr.bin /usr/lib/firmware/ess: maestro3_assp_kernel.fw maestro3_assp_minisrc.fw /usr/lib/firmware/go7007: go7007fw.bin go7007tv.bin lr192.fw px-m402u.fw px-tv402u.fw s2250-1.fw s2250-2.fw wis-startrek.fw /usr/lib/firmware/i915: bxt_dmc_ver1_07.bin bxt_dmc_ver1.bin bxt_guc_ver8_7.bin bxt_guc_ver9_29.bin bxt_huc_ver01_07_1398.bin bxt_huc_ver01_8_2893.bin cnl_dmc_ver1_06.bin cnl_dmc_ver1_07.bin glk_dmc_ver1_04.bin icl_dmc_ver1_07.bin kbl_dmc_ver1_01.bin kbl_dmc_ver1_04.bin kbl_dmc_ver1.bin kbl_guc_ver9_14.bin kbl_guc_ver9_39.bin kbl_huc_ver02_00_1810.bin skl_dmc_ver1_23.bin skl_dmc_ver1_26.bin skl_dmc_ver1_27.bin skl_dmc_ver1.bin skl_guc_ver1.bin skl_guc_ver4.bin skl_guc_ver6_1.bin skl_guc_ver6.bin skl_guc_ver9_33.bin skl_huc_ver01_07_1398.bin /usr/lib/firmware/imx: sdma /usr/lib/firmware/imx/sdma: sdma-imx6q.bin sdma-imx7d.bin /usr/lib/firmware/intel: dsp_fw_bxtn.bin dsp_fw_bxtn_v2219.bin dsp_fw_bxtn_v3366.bin dsp_fw_cnl.bin dsp_fw_cnl_v1191.bin dsp_fw_cnl_v1858.bin dsp_fw_glk.bin dsp_fw_glk_v1814.bin dsp_fw_glk_v2768.bin dsp_fw_glk_v2880.bin dsp_fw_glk_v3366.bin dsp_fw_kbl.bin dsp_fw_kbl_v1037.bin dsp_fw_kbl_v2042.bin dsp_fw_kbl_v2630.bin dsp_fw_kbl_v3266.bin dsp_fw_kbl_v3402.bin dsp_fw_kbl_v3420.bin dsp_fw_kbl_v701.bin dsp_fw_release.bin dsp_fw_release_v3402.bin dsp_fw_release_v969.bin fw_sst_0f28.bin fw_sst_0f28.bin-48kHz_i2s_master fw_sst_0f28_ssp0.bin fw_sst_22a8.bin ibt-11-5.ddc ibt-11-5.sfi ibt-12-16.ddc ibt-12-16.sfi ibt-17-0-1.ddc ibt-17-0-1.sfi ibt-17-16-1.ddc ibt-17-16-1.sfi ibt-17-1.ddc ibt-17-1.sfi ibt-17-2.ddc ibt-17-2.sfi ibt-18-0-1.ddc ibt-18-0-1.sfi ibt-18-16-1.ddc ibt-18-16-1.sfi ibt-18-1.ddc ibt-18-1.sfi ibt-18-2.ddc ibt-18-2.sfi ibt-hw-37.7.10-fw-1.0.1.2d.d.bseq ibt-hw-37.7.10-fw-1.0.2.3.d.bseq ibt-hw-37.7.10-fw-1.80.1.2d.d.bseq ibt-hw-37.7.10-fw-1.80.2.3.d.bseq ibt-hw-37.7.bseq ibt-hw-37.8.10-fw-1.10.2.27.d.bseq ibt-hw-37.8.10-fw-1.10.3.11.e.bseq ibt-hw-37.8.10-fw-22.50.19.14.f.bseq ibt-hw-37.8.bseq IntcSST2.bin ipu3-fw.bin irci_irci_ecr-master_20161208_0213_20170112_1500.bin /usr/lib/firmware/isci: create_fw.c create_fw.h isci_firmware.bin Makefile probe_roms.h README /usr/lib/firmware/kaweth: new_code.bin new_code_fix.bin trigger_code.bin trigger_code_fix.bin /usr/lib/firmware/keyspan: mpr.fw usa18x.fw usa19.fw usa19qi.fw usa19qw.fw usa19w.fw usa28.fw usa28xa.fw usa28xb.fw usa28x.fw usa49w.fw usa49wlc.fw /usr/lib/firmware/keyspan_pda: keyspan_pda.fw keyspan_pda.S Makefile xircom_pgs.fw xircom_pgs.S /usr/lib/firmware/korg: k1212.dsp /usr/lib/firmware/liquidio: lio_210nv_nic.bin lio_210sv_nic.bin lio_23xx_nic.bin lio_23xx_vsw.bin lio_410nv_nic.bin /usr/lib/firmware/matrox: g200_warp.fw g400_warp.fw /usr/lib/firmware/mediatek: mt7610e.bin mt7610u.bin mt7615_cr4.bin mt7615_n9.bin mt7615_rom_patch.bin mt7622pr2h.bin mt7650e.bin mt7662u.bin mt7662u_rom_patch.bin mt7668pr2h.bin /usr/lib/firmware/mellanox: mlxsw_spectrum-13.1420.122.mfa2 mlxsw_spectrum-13.1530.152.mfa2 mlxsw_spectrum-13.1620.192.mfa2 mlxsw_spectrum-13.1702.6.mfa2 mlxsw_spectrum-13.1703.4.mfa2 mlxsw_spectrum-13.1910.622.mfa2 /usr/lib/firmware/microchip: mscc_vsc8574_revb_int8051_29e8.bin mscc_vsc8584_revb_int8051_fb48.bin /usr/lib/firmware/mixart: miXart8AES.xlx miXart8.elf miXart8.xlx /usr/lib/firmware/moxa: moxa-1110.fw moxa-1130.fw moxa-1131.fw moxa-1150.fw moxa-1151.fw moxa-1250.fw moxa-1251.fw moxa-1410.fw moxa-1450.fw moxa-1451.fw moxa-1613.fw moxa-1618.fw moxa-1653.fw moxa-1658.fw /usr/lib/firmware/mrvl: pcie8897_uapsta.bin pcie8997_wlan_v4.bin pcieuart8997_combo_v4.bin pcieusb8997_combo_v4.bin sd8787_uapsta.bin sd8797_uapsta.bin sd8801_uapsta.bin sd8887_uapsta.bin sd8897_uapsta.bin sdsd8977_combo_v2.bin sdsd8997_combo_v4.bin usb8766_uapsta.bin usb8797_uapsta.bin usb8801_uapsta.bin usb8897_uapsta.bin usbusb8997_combo_v4.bin /usr/lib/firmware/mwlwifi: 88W8864.bin 88W8897.bin /usr/lib/firmware/myricom: lanai.bin /usr/lib/firmware/netronome: bpf flower nic nic_AMDA0058-0011_2x40.nffw nic_AMDA0058-0012_2x40.nffw nic_AMDA0078-0011_1x100.nffw nic_AMDA0081-0001_1x40.nffw nic_AMDA0081-0001_4x10.nffw nic_AMDA0096-0001_2x10.nffw nic_AMDA0097-0001_2x40.nffw nic_AMDA0097-0001_4x10_1x40.nffw nic_AMDA0097-0001_8x10.nffw nic_AMDA0099-0001_1x10_1x25.nffw nic_AMDA0099-0001_2x10.nffw nic_AMDA0099-0001_2x25.nffw nic-sriov /usr/lib/firmware/netronome/bpf: nic_AMDA0058-0011_2x40.nffw nic_AMDA0058-0012_2x40.nffw nic_AMDA0078-0011_1x100.nffw nic_AMDA0081-0001_1x40.nffw nic_AMDA0081-0001_4x10.nffw nic_AMDA0096-0001_2x10.nffw nic_AMDA0097-0001_2x40.nffw nic_AMDA0097-0001_4x10_1x40.nffw nic_AMDA0097-0001_8x10.nffw nic_AMDA0099-0001_1x10_1x25.nffw nic_AMDA0099-0001_2x10.nffw nic_AMDA0099-0001_2x25.nffw /usr/lib/firmware/netronome/flower: nic_AMDA0058-0011_1x100.nffw nic_AMDA0058-0011_2x40.nffw nic_AMDA0058-0011_4x10_1x40.nffw nic_AMDA0058-0011_8x10.nffw nic_AMDA0058-0012_1x100.nffw nic_AMDA0058-0012_2x40.nffw nic_AMDA0058-0012_4x10_1x40.nffw nic_AMDA0058-0012_8x10.nffw nic_AMDA0058.nffw nic_AMDA0078-0011_1x100.nffw nic_AMDA0078-0011_2x40.nffw nic_AMDA0078-0011_4x10_1x40.nffw nic_AMDA0078-0011_8x10.nffw nic_AMDA0078-0012_1x100.nffw nic_AMDA0078-0012_2x40.nffw nic_AMDA0078-0012_4x10_1x40.nffw nic_AMDA0078-0012_8x10.nffw nic_AMDA0081-0001_1x40.nffw nic_AMDA0081-0001_4x10.nffw nic_AMDA0081.nffw nic_AMDA0096-0001_2x10.nffw nic_AMDA0096.nffw nic_AMDA0097-0001_2x40.nffw nic_AMDA0097-0001_4x10_1x40.nffw nic_AMDA0097-0001_8x10.nffw nic_AMDA0097.nffw nic_AMDA0099-0001_1x10_1x25.nffw nic_AMDA0099-0001_2x10.nffw nic_AMDA0099-0001_2x25.nffw nic_AMDA0099.nffw /usr/lib/firmware/netronome/nic: nic_AMDA0058-0011_2x40.nffw nic_AMDA0058-0012_2x40.nffw nic_AMDA0078-0011_1x100.nffw nic_AMDA0081-0001_1x40.nffw nic_AMDA0081-0001_4x10.nffw nic_AMDA0096-0001_2x10.nffw nic_AMDA0097-0001_2x40.nffw nic_AMDA0097-0001_4x10_1x40.nffw nic_AMDA0097-0001_8x10.nffw nic_AMDA0099-0001_1x10_1x25.nffw nic_AMDA0099-0001_2x10.nffw nic_AMDA0099-0001_2x25.nffw /usr/lib/firmware/netronome/nic-sriov: nic_AMDA0058-0011_2x40.nffw nic_AMDA0058-0012_2x40.nffw nic_AMDA0078-0011_1x100.nffw nic_AMDA0081-0001_1x40.nffw nic_AMDA0081-0001_4x10.nffw nic_AMDA0096-0001_2x10.nffw nic_AMDA0097-0001_2x40.nffw nic_AMDA0097-0001_4x10_1x40.nffw nic_AMDA0097-0001_8x10.nffw nic_AMDA0099-0001_1x10_1x25.nffw nic_AMDA0099-0001_2x10.nffw nic_AMDA0099-0001_2x25.nffw /usr/lib/firmware/nvidia: gk20a gm200 gm204 gm206 gm20b gp100 gp102 gp104 gp106 gp107 gp108 gp10b gv100 tegra124 tegra186 tegra210 tu10x /usr/lib/firmware/nvidia/gk20a: fecs_data.bin fecs_inst.bin gpccs_data.bin gpccs_inst.bin sw_bundle_init.bin sw_ctx.bin sw_method_init.bin sw_nonctx.bin /usr/lib/firmware/nvidia/gm200: acr gr /usr/lib/firmware/nvidia/gm200/acr: bl.bin ucode_load.bin ucode_unload.bin /usr/lib/firmware/nvidia/gm200/gr: fecs_bl.bin fecs_data.bin fecs_inst.bin fecs_sig.bin gpccs_bl.bin gpccs_data.bin gpccs_inst.bin gpccs_sig.bin sw_bundle_init.bin sw_ctx.bin sw_method_init.bin sw_nonctx.bin /usr/lib/firmware/nvidia/gm204: acr gr /usr/lib/firmware/nvidia/gm204/acr: bl.bin ucode_load.bin ucode_unload.bin /usr/lib/firmware/nvidia/gm204/gr: fecs_bl.bin fecs_data.bin fecs_inst.bin fecs_sig.bin gpccs_bl.bin gpccs_data.bin gpccs_inst.bin gpccs_sig.bin sw_bundle_init.bin sw_ctx.bin sw_method_init.bin sw_nonctx.bin /usr/lib/firmware/nvidia/gm206: acr gr /usr/lib/firmware/nvidia/gm206/acr: bl.bin ucode_load.bin ucode_unload.bin /usr/lib/firmware/nvidia/gm206/gr: fecs_bl.bin fecs_data.bin fecs_inst.bin fecs_sig.bin gpccs_bl.bin gpccs_data.bin gpccs_inst.bin gpccs_sig.bin sw_bundle_init.bin sw_ctx.bin sw_method_init.bin sw_nonctx.bin /usr/lib/firmware/nvidia/gm20b: acr gr pmu /usr/lib/firmware/nvidia/gm20b/acr: bl.bin ucode_load.bin /usr/lib/firmware/nvidia/gm20b/gr: fecs_bl.bin fecs_data.bin fecs_inst.bin fecs_sig.bin gpccs_data.bin gpccs_inst.bin sw_bundle_init.bin sw_ctx.bin sw_method_init.bin sw_nonctx.bin /usr/lib/firmware/nvidia/gm20b/pmu: desc.bin image.bin sig.bin /usr/lib/firmware/nvidia/gp100: acr gr /usr/lib/firmware/nvidia/gp100/acr: bl.bin ucode_load.bin ucode_unload.bin /usr/lib/firmware/nvidia/gp100/gr: fecs_bl.bin fecs_data.bin fecs_inst.bin fecs_sig.bin gpccs_bl.bin gpccs_data.bin gpccs_inst.bin gpccs_sig.bin sw_bundle_init.bin sw_ctx.bin sw_method_init.bin sw_nonctx.bin /usr/lib/firmware/nvidia/gp102: acr gr nvdec sec2 /usr/lib/firmware/nvidia/gp102/acr: bl.bin ucode_load.bin ucode_unload.bin unload_bl.bin /usr/lib/firmware/nvidia/gp102/gr: fecs_bl.bin fecs_data.bin fecs_inst.bin fecs_sig.bin gpccs_bl.bin gpccs_data.bin gpccs_inst.bin gpccs_sig.bin sw_bundle_init.bin sw_ctx.bin sw_method_init.bin sw_nonctx.bin /usr/lib/firmware/nvidia/gp102/nvdec: scrubber.bin /usr/lib/firmware/nvidia/gp102/sec2: desc.bin image.bin sig.bin /usr/lib/firmware/nvidia/gp104: acr gr nvdec sec2 /usr/lib/firmware/nvidia/gp104/acr: bl.bin ucode_load.bin ucode_unload.bin unload_bl.bin /usr/lib/firmware/nvidia/gp104/gr: fecs_bl.bin fecs_data.bin fecs_inst.bin fecs_sig.bin gpccs_bl.bin gpccs_data.bin gpccs_inst.bin gpccs_sig.bin sw_bundle_init.bin sw_ctx.bin sw_method_init.bin sw_nonctx.bin /usr/lib/firmware/nvidia/gp104/nvdec: scrubber.bin /usr/lib/firmware/nvidia/gp104/sec2: desc.bin image.bin sig.bin /usr/lib/firmware/nvidia/gp106: acr gr nvdec sec2 /usr/lib/firmware/nvidia/gp106/acr: bl.bin ucode_load.bin ucode_unload.bin unload_bl.bin /usr/lib/firmware/nvidia/gp106/gr: fecs_bl.bin fecs_data.bin fecs_inst.bin fecs_sig.bin gpccs_bl.bin gpccs_data.bin gpccs_inst.bin gpccs_sig.bin sw_bundle_init.bin sw_ctx.bin sw_method_init.bin sw_nonctx.bin /usr/lib/firmware/nvidia/gp106/nvdec: scrubber.bin /usr/lib/firmware/nvidia/gp106/sec2: desc.bin image.bin sig.bin /usr/lib/firmware/nvidia/gp107: acr gr nvdec sec2 /usr/lib/firmware/nvidia/gp107/acr: bl.bin ucode_load.bin ucode_unload.bin unload_bl.bin /usr/lib/firmware/nvidia/gp107/gr: fecs_bl.bin fecs_data.bin fecs_inst.bin fecs_sig.bin gpccs_bl.bin gpccs_data.bin gpccs_inst.bin gpccs_sig.bin sw_bundle_init.bin sw_ctx.bin sw_method_init.bin sw_nonctx.bin /usr/lib/firmware/nvidia/gp107/nvdec: scrubber.bin /usr/lib/firmware/nvidia/gp107/sec2: desc.bin image.bin sig.bin /usr/lib/firmware/nvidia/gp108: acr gr nvdec sec2 /usr/lib/firmware/nvidia/gp108/acr: bl.bin ucode_load.bin ucode_unload.bin unload_bl.bin /usr/lib/firmware/nvidia/gp108/gr: fecs_bl.bin fecs_data.bin fecs_inst.bin fecs_sig.bin gpccs_bl.bin gpccs_data.bin gpccs_inst.bin gpccs_sig.bin sw_bundle_init.bin sw_ctx.bin sw_method_init.bin sw_nonctx.bin /usr/lib/firmware/nvidia/gp108/nvdec: scrubber.bin /usr/lib/firmware/nvidia/gp108/sec2: desc.bin image.bin sig.bin /usr/lib/firmware/nvidia/gp10b: acr gr pmu /usr/lib/firmware/nvidia/gp10b/acr: bl.bin ucode_load.bin /usr/lib/firmware/nvidia/gp10b/gr: fecs_bl.bin fecs_data.bin fecs_inst.bin fecs_sig.bin gpccs_bl.bin gpccs_data.bin gpccs_inst.bin gpccs_sig.bin sw_bundle_init.bin sw_ctx.bin sw_method_init.bin sw_nonctx.bin /usr/lib/firmware/nvidia/gp10b/pmu: desc.bin image.bin sig.bin /usr/lib/firmware/nvidia/gv100: acr gr nvdec sec2 /usr/lib/firmware/nvidia/gv100/acr: bl.bin ucode_load.bin ucode_unload.bin unload_bl.bin /usr/lib/firmware/nvidia/gv100/gr: fecs_bl.bin fecs_data.bin fecs_inst.bin fecs_sig.bin gpccs_bl.bin gpccs_data.bin gpccs_inst.bin gpccs_sig.bin sw_bundle_init.bin sw_ctx.bin sw_method_init.bin sw_nonctx.bin /usr/lib/firmware/nvidia/gv100/nvdec: scrubber.bin /usr/lib/firmware/nvidia/gv100/sec2: desc.bin image.bin sig.bin /usr/lib/firmware/nvidia/tegra124: vic03_ucode.bin xusb.bin /usr/lib/firmware/nvidia/tegra186: vic04_ucode.bin /usr/lib/firmware/nvidia/tegra210: vic04_ucode.bin xusb.bin /usr/lib/firmware/nvidia/tu10x: typec /usr/lib/firmware/nvidia/tu10x/typec: ccg_boot.cyacd ccg_primary.cyacd ccg_secondary.cyacd /usr/lib/firmware/ositech: Xilinx7OD.bin /usr/lib/firmware/pcxhr: b321_512.b56 d321_512.d56 dspb1222e.b56 dspb1222hr.b56 dspb882e.b56 dspb882hr.b56 dspb924.b56 dspd1222.d56 dspd222.d56 dspd882.d56 dspe882.e56 dspe924.e56 e321_512.e56 xc_1_882.dat xi_1_882.dat xlxc1222e.dat xlxc1222hr.dat xlxc222.dat xlxc882e.dat xlxc882hr.dat xlxc924.dat xlxint.dat /usr/lib/firmware/qca: crbtfw21.tlv crnv21.bin NOTICE.txt nvm_00130300.bin nvm_00130302.bin nvm_00440302.bin nvm_usb_00000200.bin nvm_usb_00000201.bin nvm_usb_00000300.bin nvm_usb_00000302.bin rampatch_00130300.bin rampatch_00130302.bin rampatch_00440302.bin rampatch_usb_00000200.bin rampatch_usb_00000201.bin rampatch_usb_00000300.bin rampatch_usb_00000302.bin /usr/lib/firmware/qcom: a300_pfp.fw a300_pm4.fw a530_pfp.fw a530_pm4.fw a530v3_gpmu.fw2 a530_zap.b00 a530_zap.b01 a530_zap.b02 a530_zap.mdt NOTICE.txt venus-1.8 venus-4.2 venus-5.2 /usr/lib/firmware/qcom/venus-1.8: venus.b00 venus.b01 venus.b02 venus.b03 venus.b04 venus.mdt /usr/lib/firmware/qcom/venus-4.2: venus.b00 venus.b01 venus.b02 venus.b03 venus.b04 venus.mdt /usr/lib/firmware/qcom/venus-5.2: venus.b00 venus.b01 venus.b02 venus.b03 venus.b04 venus.mbn venus.mdt /usr/lib/firmware/qed: qed_init_values-8.10.9.0.bin qed_init_values-8.14.6.0.bin qed_init_values-8.18.9.0.bin qed_init_values-8.20.0.0.bin qed_init_values-8.30.12.0.bin qed_init_values-8.33.12.0.bin qed_init_values-8.37.7.0.bin qed_init_values_zipped-8.10.10.0.bin qed_init_values_zipped-8.10.5.0.bin qed_init_values_zipped-8.15.3.0.bin qed_init_values_zipped-8.20.0.0.bin qed_init_values_zipped-8.33.1.0.bin qed_init_values_zipped-8.33.11.0.bin qed_init_values_zipped-8.37.2.0.bin qed_init_values_zipped-8.37.7.0.bin qed_init_values_zipped-8.4.2.0.bin qed_init_values_zipped-8.7.3.0.bin /usr/lib/firmware/qlogic: 1040.bin 12160.bin 1280.bin isp1000.bin sd7220.fw /usr/lib/firmware/r128: r128_cce.bin /usr/lib/firmware/radeon: ARUBA_me.bin ARUBA_pfp.bin ARUBA_rlc.bin banks_k_2_smc.bin BARTS_mc.bin BARTS_me.bin BARTS_pfp.bin BARTS_smc.bin bonaire_ce.bin BONAIRE_ce.bin bonaire_k_smc.bin BONAIRE_mc2.bin bonaire_mc.bin BONAIRE_mc.bin bonaire_me.bin BONAIRE_me.bin bonaire_mec.bin BONAIRE_mec.bin bonaire_pfp.bin BONAIRE_pfp.bin bonaire_rlc.bin BONAIRE_rlc.bin bonaire_sdma1.bin bonaire_sdma.bin BONAIRE_sdma.bin bonaire_smc.bin BONAIRE_smc.bin bonaire_uvd.bin BONAIRE_uvd.bin bonaire_vce.bin BONAIRE_vce.bin BTC_rlc.bin CAICOS_mc.bin CAICOS_me.bin CAICOS_pfp.bin CAICOS_smc.bin CAYMAN_mc.bin CAYMAN_me.bin CAYMAN_pfp.bin CAYMAN_rlc.bin CAYMAN_smc.bin CEDAR_me.bin CEDAR_pfp.bin CEDAR_rlc.bin CEDAR_smc.bin CYPRESS_me.bin CYPRESS_pfp.bin CYPRESS_rlc.bin CYPRESS_smc.bin CYPRESS_uvd.bin hainan_ce.bin HAINAN_ce.bin hainan_k_smc.bin HAINAN_mc2.bin hainan_mc.bin HAINAN_mc.bin hainan_me.bin HAINAN_me.bin hainan_pfp.bin HAINAN_pfp.bin hainan_rlc.bin HAINAN_rlc.bin hainan_smc.bin HAINAN_smc.bin hawaii_ce.bin HAWAII_ce.bin hawaii_k_smc.bin HAWAII_mc2.bin hawaii_mc.bin HAWAII_mc.bin hawaii_me.bin HAWAII_me.bin hawaii_mec.bin HAWAII_mec.bin hawaii_pfp.bin HAWAII_pfp.bin hawaii_rlc.bin HAWAII_rlc.bin hawaii_sdma1.bin hawaii_sdma.bin HAWAII_sdma.bin hawaii_smc.bin HAWAII_smc.bin hawaii_uvd.bin hawaii_vce.bin JUNIPER_me.bin JUNIPER_pfp.bin JUNIPER_rlc.bin JUNIPER_smc.bin kabini_ce.bin KABINI_ce.bin kabini_me.bin KABINI_me.bin kabini_mec.bin KABINI_mec.bin kabini_pfp.bin KABINI_pfp.bin kabini_rlc.bin KABINI_rlc.bin kabini_sdma1.bin kabini_sdma.bin KABINI_sdma.bin kabini_uvd.bin kabini_vce.bin kaveri_ce.bin KAVERI_ce.bin kaveri_me.bin KAVERI_me.bin kaveri_mec2.bin kaveri_mec.bin KAVERI_mec.bin kaveri_pfp.bin KAVERI_pfp.bin kaveri_rlc.bin KAVERI_rlc.bin kaveri_sdma1.bin kaveri_sdma.bin KAVERI_sdma.bin kaveri_uvd.bin kaveri_vce.bin mullins_ce.bin MULLINS_ce.bin mullins_me.bin MULLINS_me.bin mullins_mec.bin MULLINS_mec.bin mullins_pfp.bin MULLINS_pfp.bin mullins_rlc.bin MULLINS_rlc.bin mullins_sdma1.bin mullins_sdma.bin MULLINS_sdma.bin mullins_uvd.bin mullins_vce.bin oland_ce.bin OLAND_ce.bin oland_k_smc.bin OLAND_mc2.bin oland_mc.bin OLAND_mc.bin oland_me.bin OLAND_me.bin oland_pfp.bin OLAND_pfp.bin oland_rlc.bin OLAND_rlc.bin oland_smc.bin OLAND_smc.bin PALM_me.bin PALM_pfp.bin pitcairn_ce.bin PITCAIRN_ce.bin pitcairn_k_smc.bin PITCAIRN_mc2.bin pitcairn_mc.bin PITCAIRN_mc.bin pitcairn_me.bin PITCAIRN_me.bin pitcairn_pfp.bin PITCAIRN_pfp.bin pitcairn_rlc.bin PITCAIRN_rlc.bin pitcairn_smc.bin PITCAIRN_smc.bin R100_cp.bin R200_cp.bin R300_cp.bin R420_cp.bin R520_cp.bin R600_me.bin R600_pfp.bin R600_rlc.bin R600_uvd.bin R700_rlc.bin REDWOOD_me.bin REDWOOD_pfp.bin REDWOOD_rlc.bin REDWOOD_smc.bin RS600_cp.bin RS690_cp.bin RS780_me.bin RS780_pfp.bin RS780_uvd.bin RV610_me.bin RV610_pfp.bin RV620_me.bin RV620_pfp.bin RV630_me.bin RV630_pfp.bin RV635_me.bin RV635_pfp.bin RV670_me.bin RV670_pfp.bin RV710_me.bin RV710_pfp.bin RV710_smc.bin RV710_uvd.bin RV730_me.bin RV730_pfp.bin RV730_smc.bin RV740_smc.bin RV770_me.bin RV770_pfp.bin RV770_smc.bin RV770_uvd.bin si58_mc.bin SUMO2_me.bin SUMO2_pfp.bin SUMO_me.bin SUMO_pfp.bin SUMO_rlc.bin SUMO_uvd.bin tahiti_ce.bin TAHITI_ce.bin tahiti_k_smc.bin TAHITI_mc2.bin tahiti_mc.bin TAHITI_mc.bin tahiti_me.bin TAHITI_me.bin tahiti_pfp.bin TAHITI_pfp.bin tahiti_rlc.bin TAHITI_rlc.bin tahiti_smc.bin TAHITI_smc.bin TAHITI_uvd.bin TAHITI_vce.bin TURKS_mc.bin TURKS_me.bin TURKS_pfp.bin TURKS_smc.bin verde_ce.bin VERDE_ce.bin verde_k_smc.bin VERDE_mc2.bin verde_mc.bin VERDE_mc.bin verde_me.bin VERDE_me.bin verde_pfp.bin VERDE_pfp.bin verde_rlc.bin VERDE_rlc.bin verde_smc.bin VERDE_smc.bin /usr/lib/firmware/rockchip: dptx.bin /usr/lib/firmware/rsi: rs9113_ap_bt_dual_mode.rps rs9113_wlan_bt_dual_mode.rps rs9113_wlan_qspi.rps /usr/lib/firmware/RTL8192E: boot.img data.img main.img /usr/lib/firmware/rtl_bt: rtl8192ee_fw.bin rtl8192eu_fw.bin rtl8723a_fw.bin rtl8723b_fw.bin rtl8723bs_config-OBDA8723.bin rtl8723bs_fw.bin rtl8723d_config.bin rtl8723d_fw.bin rtl8761a_fw.bin rtl8812ae_fw.bin rtl8821a_fw.bin rtl8821c_config.bin rtl8821c_fw.bin rtl8822b_config.bin rtl8822b_fw.bin rtl8822cu_fw.bin /usr/lib/firmware/rtl_nic: rtl8105e-1.fw rtl8106e-1.fw rtl8106e-2.fw rtl8107e-1.fw rtl8107e-2.fw rtl8168d-1.fw rtl8168d-2.fw rtl8168e-1.fw rtl8168e-2.fw rtl8168e-3.fw rtl8168f-1.fw rtl8168f-2.fw rtl8168g-1.fw rtl8168g-2.fw rtl8168g-3.fw rtl8168h-1.fw rtl8168h-2.fw rtl8402-1.fw rtl8411-1.fw rtl8411-2.fw /usr/lib/firmware/rtlwifi: rtl8188efw.bin rtl8188eufw.bin rtl8192cfw.bin rtl8192cfwU_B.bin rtl8192cfwU.bin rtl8192cufw_A.bin rtl8192cufw_B.bin rtl8192cufw.bin rtl8192cufw_TMSC.bin rtl8192defw.bin rtl8192eefw.bin rtl8192eu_ap_wowlan.bin rtl8192eu_nic.bin rtl8192eu_wowlan.bin rtl8192sefw.bin rtl8712u.bin rtl8723aufw_A.bin rtl8723aufw_B.bin rtl8723aufw_B_NoBT.bin rtl8723befw_36.bin rtl8723befw.bin rtl8723bs_ap_wowlan.bin rtl8723bs_bt.bin rtl8723bs_nic.bin rtl8723bs_wowlan.bin rtl8723bu_ap_wowlan.bin rtl8723bu_nic.bin rtl8723bu_wowlan.bin rtl8723defw.bin rtl8723fw_B.bin rtl8723fw.bin rtl8821aefw_29.bin rtl8821aefw.bin rtl8821aefw_wowlan.bin rtl8822befw.bin /usr/lib/firmware/rtw88: rtw8822b_fw.bin rtw8822c_fw.bin /usr/lib/firmware/sb16: alaw_main.csp ima_adpcm_capture.csp ima_adpcm_init.csp ima_adpcm_playback.csp mulaw_main.csp /usr/lib/firmware/slicoss: gbdownload.sys gbrcvucode.sys oasisdbgdownload.sys oasisdownload.sys oasisrcvucode.sys /usr/lib/firmware/sun: cassini.bin /usr/lib/firmware/sxg: saharadbgdownloadB.sys saharadownloadB.sys /usr/lib/firmware/tehuti: bdx.bin /usr/lib/firmware/tigon: tg357766.bin tg3.bin tg3_tso5.bin tg3_tso.bin /usr/lib/firmware/ti-keystone: ks2_qmss_pdsp_acc48_k2_le_1_0_0_9.bin /usr/lib/firmware/ttusb-budget: dspbootcode.bin /usr/lib/firmware/ueagle-atm: 930-fpga.bin adi930.fw CMV4p.bin.v2 CMV9i.bin CMV9p.bin CMVei.bin CMVeiWO.bin CMVep.bin CMVepES03.bin CMVepES.bin CMVepFR04.bin CMVepFR10.bin CMVepFR.bin CMVepIT.bin CMVepWO.bin DSP4p.bin DSP9i.bin DSP9p.bin DSPei.bin DSPep.bin eagleI.fw eagleII.fw eagleIII.fw eagleIV.fw /usr/lib/firmware/updates: /usr/lib/firmware/usbdux: /usr/lib/firmware/vicam: firmware.fw /usr/lib/firmware/vx: bd56002.boot bd563s3.boot bd563v2.boot bx_1_vp4.b56 bx_1_vxp.b56 l_1_v22.d56 l_1_vp4.d56 l_1_vx2.d56 l_1_vxp.d56 x1_1_vp4.xlx x1_1_vx2.xlx x1_1_vxp.xlx x1_2_v22.xlx /usr/lib/firmware/yam: 1200.bin 9600.bin /usr/lib/firmware/yamaha: ds1_ctrl.fw ds1_dsp.fw ds1e_ctrl.fw yss225_registers.bin /usr/lib/games: /usr/lib/gems: ruby /usr/lib/gems/ruby: /usr/lib/grub: i386-pc /usr/lib/grub/i386-pc: acpi.mod adler32.mod affs.mod afs.mod ahci.mod all_video.mod aout.mod archelp.mod ata.mod at_keyboard.mod backtrace.mod bfs.mod biosdisk.mod bitmap.mod bitmap_scale.mod blocklist.mod blscfg.mod boot_hybrid.image boot_hybrid.img boot.image boot.img boot.mod bsd.mod btrfs.mod bufio.mod cat.mod cbfs.mod cbls.mod cbmemc.mod cbtable.mod cbtime.mod cdboot.image cdboot.img chain.mod cmdline_cat_test.mod cmosdump.mod cmostest.mod cmp.mod command.lst configfile.mod config.h cpio_be.mod cpio.mod cpuid.mod crc64.mod cryptodisk.mod crypto.lst crypto.mod cs5536.mod datehook.mod date.mod datetime.mod diskboot.image diskboot.img diskfilter.mod disk.mod div_test.mod dm_nv.mod drivemap.mod echo.mod efiemu.mod ehci.mod elf.mod eval.mod exfat.mod exfctest.mod ext2.mod extcmd.mod fat.mod file.mod font.mod freedos.mod fshelp.mod fs.lst functional_test.mod gcry_arcfour.mod gcry_blowfish.mod gcry_camellia.mod gcry_cast5.mod gcry_crc.mod gcry_des.mod gcry_dsa.mod gcry_idea.mod gcry_md4.mod gcry_md5.mod gcry_rfc2268.mod gcry_rijndael.mod gcry_rmd160.mod gcry_rsa.mod gcry_seed.mod gcry_serpent.mod gcry_sha1.mod gcry_sha256.mod gcry_sha512.mod gcry_tiger.mod gcry_twofish.mod gcry_whirlpool.mod gdb_grub2 gdb.mod geli.mod gettext.mod gfxmenu.mod gfxterm_background.mod gfxterm_menu.mod gfxterm.mod gmodule.pl gptsync.mod gzio.mod halt.mod hashsum.mod hdparm.mod hello.mod help.mod hexdump.mod hfs.mod hfspluscomp.mod hfsplus.mod http.mod iorw.mod iso9660.mod jfs.mod jpeg.mod kernel.exec kernel.img keylayouts.mod keystatus.mod ldm.mod legacycfg.mod legacy_password_test.mod linux16.mod linux.mod lnxboot.image lnxboot.img loadenv.mod loopback.mod lsacpi.mod lsapm.mod lsmmap.mod ls.mod lspci.mod luks.mod lvm.mod lzma_decompress.image lzma_decompress.img lzopio.mod macbless.mod macho.mod mda_text.mod mdraid09_be.mod mdraid09.mod mdraid1x.mod memdisk.mod memrw.mod minicmd.mod minix2_be.mod minix2.mod minix3_be.mod minix3.mod minix_be.mod minix.mod mmap.mod moddep.lst modinfo.sh morse.mod mpi.mod msdospart.mod multiboot2.mod multiboot.mod nativedisk.mod net.mod newc.mod nilfs2.mod normal.mod ntfscomp.mod ntfs.mod ntldr.mod odc.mod offsetio.mod ohci.mod part_acorn.mod part_amiga.mod part_apple.mod part_bsd.mod part_dfly.mod part_dvh.mod part_gpt.mod partmap.lst part_msdos.mod part_plan.mod part_sun.mod part_sunpc.mod parttool.lst parttool.mod password.mod password_pbkdf2.mod pata.mod pbkdf2.mod pbkdf2_test.mod pcidump.mod pci.mod plan9.mod play.mod png.mod priority_queue.mod probe.mod procfs.mod progress.mod pxeboot.image pxeboot.img pxechain.mod pxe.mod raid5rec.mod raid6rec.mod read.mod reboot.mod regexp.mod reiserfs.mod relocator.mod romfs.mod scsi.mod search_fs_file.mod search_fs_uuid.mod search_label.mod search.mod sendkey.mod serial.mod setjmp.mod setjmp_test.mod setpci.mod sfs.mod signature_test.mod sleep.mod sleep_test.mod spkmodem.mod squash4.mod syslinuxcfg.mod tar.mod terminal.lst terminal.mod terminfo.mod test_blockarg.mod testload.mod test.mod testspeed.mod tftp.mod tga.mod time.mod trig.mod tr.mod truecrypt.mod true.mod udf.mod ufs1_be.mod ufs1.mod ufs2.mod uhci.mod usb_keyboard.mod usb.mod usbms.mod usbserial_common.mod usbserial_ftdi.mod usbserial_pl2303.mod usbserial_usbdebug.mod usbtest.mod vbe.mod verify.mod vga.mod vga_text.mod video_bochs.mod video_cirrus.mod video_colors.mod video_fb.mod videoinfo.mod video.lst video.mod videotest_checksum.mod videotest.mod xfs.mod xnu.mod xnu_uuid.mod xnu_uuid_test.mod xzio.mod zfscrypt.mod zfsinfo.mod zfs.mod /usr/lib/kbd: consolefonts consoletrans keymaps unimaps /usr/lib/kbd/consolefonts: 161.cp.gz 162.cp.gz 163.cp.gz 164.cp.gz 165.cp.gz 737.cp.gz 880.cp.gz 928.cp.gz 972.cp.gz Agafari-12.psfu.gz Agafari-14.psfu.gz Agafari-16.psfu.gz alt-8x14.gz alt-8x16.gz alt-8x8.gz altc-8x16.gz aply16.psf.gz arm8.fnt.gz cp1250.psfu.gz cp850-8x14.psfu.gz cp850-8x16.psfu.gz cp850-8x8.psfu.gz cp857.08.gz cp857.14.gz cp857.16.gz cp865-8x14.psfu.gz cp865-8x16.psfu.gz cp865-8x8.psfu.gz cp866-8x14.psf.gz cp866-8x16.psf.gz cp866-8x8.psf.gz cybercafe.fnt.gz Cyr_a8x14.psfu.gz Cyr_a8x16.psfu.gz Cyr_a8x8.psfu.gz cyr-sun16.psfu.gz default8x16.psfu.gz default8x9.psfu.gz drdos8x14.psfu.gz drdos8x16.psfu.gz drdos8x6.psfu.gz drdos8x8.psfu.gz ERRORS eurlatgr.psfu.gz Goha-12.psfu.gz Goha-14.psfu.gz Goha-16.psfu.gz GohaClassic-12.psfu.gz GohaClassic-14.psfu.gz GohaClassic-16.psfu.gz gr737a-8x8.psfu.gz gr737a-9x14.psfu.gz gr737a-9x16.psfu.gz gr737b-8x11.psfu.gz gr737b-9x16-medieval.psfu.gz gr737c-8x14.psfu.gz gr737c-8x16.psfu.gz gr737c-8x6.psfu.gz gr737c-8x7.psfu.gz gr737c-8x8.psfu.gz gr737d-8x16.psfu.gz gr928-8x16-thin.psfu.gz gr928-9x14.psfu.gz gr928-9x16.psfu.gz gr928a-8x14.psfu.gz gr928a-8x16.psfu.gz gr928b-8x14.psfu.gz gr928b-8x16.psfu.gz greek-polytonic.psfu.gz iso01.08.gz iso01-12x22.psfu.gz iso01.14.gz iso01.16.gz iso02.08.gz iso02-12x22.psfu.gz iso02.14.gz iso02.16.gz iso03.08.gz iso03.14.gz iso03.16.gz iso04.08.gz iso04.14.gz iso04.16.gz iso05.08.gz iso05.14.gz iso05.16.gz iso06.08.gz iso06.14.gz iso06.16.gz iso07.14.gz iso07.16.gz iso07u-16.psfu.gz iso08.08.gz iso08.14.gz iso08.16.gz iso09.08.gz iso09.14.gz iso09.16.gz iso10.08.gz iso10.14.gz iso10.16.gz koi8-14.psf.gz koi8c-8x16.gz koi8r-8x14.gz koi8r-8x16.gz koi8r-8x8.gz koi8r.8x8.psfu.gz koi8u_8x14.psfu.gz koi8u_8x16.psfu.gz koi8u_8x8.psfu.gz lat0-08.psfu.gz lat0-10.psfu.gz lat0-12.psfu.gz lat0-14.psfu.gz lat0-16.psfu.gz lat0-sun16.psfu.gz lat1-08.psfu.gz lat1-10.psfu.gz lat1-12.psfu.gz lat1-14.psfu.gz lat1-16.psfu.gz lat2-08.psfu.gz lat2-10.psfu.gz lat2-12.psfu.gz lat2-14.psfu.gz lat2-16.psfu.gz lat2a-16.psfu.gz lat2-sun16.psfu.gz Lat2-Terminus16.psfu.gz lat4-08.psfu.gz lat4-10.psfu.gz lat4-12.psfu.gz lat4-14.psfu.gz lat4-16.psfu.gz lat4-16+.psfu.gz lat4-19.psfu.gz lat4a-08.psfu.gz lat4a-10.psfu.gz lat4a-12.psfu.gz lat4a-14.psfu.gz lat4a-16.psfu.gz lat4a-16+.psfu.gz lat4a-19.psfu.gz lat5-12.psfu.gz lat5-14.psfu.gz lat5-16.psfu.gz lat7-14.psfu.gz lat7a-14.psfu.gz lat7a-16.psf.gz lat9-08.psf.gz lat9-10.psf.gz lat9-12.psf.gz lat9-14.psf.gz lat9-16.psf.gz lat9u-08.psfu.gz lat9u-10.psfu.gz lat9u-12.psfu.gz lat9u-14.psfu.gz lat9u-16.psfu.gz lat9v-08.psfu.gz lat9v-10.psfu.gz lat9v-12.psfu.gz lat9v-14.psfu.gz lat9v-16.psfu.gz lat9w-08.psfu.gz lat9w-10.psfu.gz lat9w-12.psfu.gz lat9w-14.psfu.gz lat9w-16.psfu.gz LatArCyrHeb-08.psfu.gz LatArCyrHeb-14.psfu.gz LatArCyrHeb-16.psfu.gz LatArCyrHeb-16+.psfu.gz LatArCyrHeb-19.psfu.gz latarcyrheb-sun16.psfu.gz latarcyrheb-sun32.psfu.gz LatGrkCyr-12x22.psfu.gz LatGrkCyr-8x16.psfu.gz LatKaCyrHeb-14.psfu.gz Mik_8x16.gz partialfonts README.12x22 README.Arabic README.cp1250 README.cybercafe README.Cyrillic README.drdos README.Ethiopic README.Greek README.Hebrew README.lat0 README.Lat2-Terminus16 README.lat7 README.lat9 README.LatGrkCyr README.psfu ruscii_8x16.psfu.gz ruscii_8x8.psfu.gz sun12x22.psfu.gz t850b.fnt.gz tcvn8x16.psf.gz t.fnt.gz UniCyr_8x14.psf.gz UniCyr_8x16.psf.gz UniCyr_8x8.psf.gz UniCyrExt_8x16.psf.gz viscii10-8x16.psfu.gz /usr/lib/kbd/consolefonts/partialfonts: 8859-10.a0-ff.08.gz 8859-10.a0-ff.14.gz 8859-10.a0-ff.16.gz 8859-1.a0-ff.08.gz 8859-1.a0-ff.14.gz 8859-1.a0-ff.16.gz 8859-2.a0-ff.08.gz 8859-2.a0-ff.14.gz 8859-2.a0-ff.16.gz 8859-3.a0-ff.08.gz 8859-3.a0-ff.14.gz 8859-3.a0-ff.16.gz 8859-4.a0-ff.08.gz 8859-4.a0-ff.14.gz 8859-4.a0-ff.16.gz 8859-5.a0-ff.08.gz 8859-5.a0-ff.14.gz 8859-5.a0-ff.16.gz 8859-6.a0-ff.08.gz 8859-6.a0-ff.14.gz 8859-6.a0-ff.16.gz 8859-7.a0-ff.08.gz 8859-7.a0-ff.14.gz 8859-7.a0-ff.16.gz 8859-8.a0-ff.08.gz 8859-8.a0-ff.14.gz 8859-8.a0-ff.16.gz 8859-9.a0-ff.08.gz 8859-9.a0-ff.14.gz 8859-9.a0-ff.16.gz ascii.20-7f.08.gz ascii.20-7f.14.gz ascii.20-7f.16.gz cp437.00-1f.08.gz cp437.00-1f.14.gz cp437.00-1f.16.gz none.00-17.08.gz none.00-17.14.gz none.00-17.16.gz /usr/lib/kbd/consoletrans: 8859-10_to_uni.trans 8859-13_to_uni.trans 8859-14_to_uni.trans 8859-15_to_uni.trans 8859-1_to_uni.trans 8859-2_to_uni.trans 8859-3_to_uni.trans 8859-4_to_uni.trans 8859-5_to_uni.trans 8859-6_to_uni.trans 8859-7_to_uni.trans 8859-8_to_uni.trans 8859-9_to_uni.trans baltic.trans cp1250_to_uni.trans cp1251_to_uni.trans cp437_to_iso01.trans cp437_to_uni.trans cp737_to_uni.trans cp775_to_uni.trans cp850_to_iso01.trans cp850_to_uni.trans cp852_to_uni.trans cp853_to_uni.trans cp855_to_uni.trans cp857_to_uni.trans cp860_to_uni.trans cp861_to_uni.trans cp862_to_uni.trans cp863_to_uni.trans cp864_to_uni.trans cp865_to_uni.trans cp866_to_uni.trans cp869_to_uni.trans cp874_to_uni.trans iso02_to_cp1250.trans koi2alt koi8-r_to_uni.trans koi8u2ruscii koi8-u_to_uni.trans latin2u.trans null space trivial utflist vga2iso viscii1.0_to_tcvn.trans viscii1.0_to_viscii1.1.trans zero /usr/lib/kbd/keymaps: legacy xkb /usr/lib/kbd/keymaps/legacy: amiga atari i386 include mac ppc sun /usr/lib/kbd/keymaps/legacy/amiga: amiga-de.map.gz amiga-us.map.gz /usr/lib/kbd/keymaps/legacy/atari: atari-de.map.gz atari-se.map.gz atari-uk-falcon.map.gz atari-us.map.gz /usr/lib/kbd/keymaps/legacy/i386: azerty colemak dvorak fgGIod include olpc qwerty qwertz /usr/lib/kbd/keymaps/legacy/i386/azerty: azerty.map.gz be-latin1.map.gz fr-latin0.map.gz fr-latin1.map.gz fr-latin9.map.gz fr.map.gz fr-old.map.gz fr-pc.map.gz wangbe2.map.gz wangbe.map.gz /usr/lib/kbd/keymaps/legacy/i386/colemak: en-latin9.map.gz /usr/lib/kbd/keymaps/legacy/i386/dvorak: ANSI-dvorak.map.gz dvorak-ca-fr.map.gz dvorak-es.map.gz dvorak-fr.map.gz dvorak-l.map.gz dvorak.map.gz dvorak-r.map.gz dvorak-ru.map.gz dvorak-sv-a1.map.gz dvorak-sv-a5.map.gz dvorak-uk.map.gz fr-dvorak.map.gz no-dvorak.map.gz /usr/lib/kbd/keymaps/legacy/i386/fgGIod: trf-fgGIod.map.gz tr_f-latin5.map.gz /usr/lib/kbd/keymaps/legacy/i386/include: applkey.map.gz azerty-layout.inc backspace.map.gz compose.inc ctrl.map.gz euro1.inc euro1.map.gz euro2.map.gz euro.map.gz keypad.map.gz linux-keys-bare.inc linux-keys-extd.inc linux-with-alt-and-altgr.inc linux-with-modeshift-altgr.inc linux-with-two-alt-keys.inc qwerty-layout.inc qwertz-layout.inc unicode.map.gz windowkeys.map.gz /usr/lib/kbd/keymaps/legacy/i386/olpc: es-olpc.map.gz pt-olpc.map.gz /usr/lib/kbd/keymaps/legacy/i386/qwerty: bashkir.map.gz bg_bds-cp1251.map.gz bg_bds-utf8.map.gz bg-cp1251.map.gz bg-cp855.map.gz bg_pho-cp1251.map.gz bg_pho-utf8.map.gz br-abnt2.map.gz br-abnt.map.gz br-latin1-abnt2.map.gz br-latin1-us.map.gz by-cp1251.map.gz by.map.gz bywin-cp1251.map.gz cf.map.gz cz-cp1250.map.gz cz-lat2.map.gz cz-lat2-prog.map.gz cz-qwerty.map.gz defkeymap.map.gz defkeymap_V1.0.map.gz dk-latin1.map.gz dk.map.gz emacs2.map.gz emacs.map.gz es-cp850.map.gz es.map.gz et.map.gz et-nodeadkeys.map.gz fi-latin1.map.gz fi-latin9.map.gz fi.map.gz fi-old.map.gz gr.map.gz gr-pc.map.gz hu101.map.gz hypermap.m4 il-heb.map.gz il.map.gz il-phonetic.map.gz is-latin1.map.gz is-latin1-us.map.gz it2.map.gz it-ibm.map.gz it.map.gz jp106.map.gz kazakh.map.gz ko.map.gz ky_alt_sh-UTF-8.map.gz kyrgyz.map.gz la-latin1.map.gz lt.baltic.map.gz lt.l4.map.gz lt.map.gz mk0.map.gz mk-cp1251.map.gz mk.map.gz mk-utf.map.gz nl2.map.gz nl.map.gz no-latin1.doc no-latin1.map.gz no.map.gz pc110.map.gz pl1.map.gz pl2.map.gz pl3.map.gz pl4.map.gz pl.map.gz pt-latin1.map.gz pt-latin9.map.gz pt.map.gz ro.map.gz ro_std.map.gz ru1.map.gz ru2.map.gz ru3.map.gz ru4.map.gz ru-cp1251.map.gz ru.map.gz ru-ms.map.gz ruwin_alt-CP1251.map.gz ruwin_alt-KOI8-R.map.gz ruwin_alt_sh-UTF-8.map.gz ruwin_alt-UTF-8.map.gz ruwin_cplk-CP1251.map.gz ruwin_cplk-KOI8-R.map.gz ruwin_cplk-UTF-8.map.gz ruwin_ctrl-CP1251.map.gz ruwin_ctrl-KOI8-R.map.gz ruwin_ctrl-UTF-8.map.gz ruwin_ct_sh-CP1251.map.gz ruwin_ct_sh-KOI8-R.map.gz ruwin_ct_sh-UTF-8.map.gz ru_win.map.gz ru-yawerty.map.gz se-fi-ir209.map.gz se-fi-lat6.map.gz se-ir209.map.gz se-lat6.map.gz se-latin1.map.gz sk-prog-qwerty.map.gz sk-qwerty.map.gz sr-cy.map.gz sr-latin.map.gz sv-latin1.map.gz tj_alt-UTF8.map.gz tralt.map.gz trf.map.gz tr_q-latin5.map.gz trq.map.gz ttwin_alt-UTF-8.map.gz ttwin_cplk-UTF-8.map.gz ttwin_ctrl-UTF-8.map.gz ttwin_ct_sh-UTF-8.map.gz ua-cp1251.map.gz ua.map.gz ua-utf.map.gz ua-utf-ws.map.gz ua-ws.map.gz uk.map.gz us-acentos.map.gz us.map.gzjc-1.17.3/tests/fixtures/centos-7.7/ls-al-streaming.json000066400000000000000000000046531415226333200227210ustar00rootroot00000000000000[{"filename":".","flags":"dr-xr-xr-x.","links":17,"owner":"root","group":"root","size":224,"date":"Aug 15 10:56"},{"filename":"..","flags":"dr-xr-xr-x.","links":17,"owner":"root","group":"root","size":224,"date":"Aug 15 10:56"},{"filename":"bin","link_to":"usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":7,"date":"Aug 15 10:53"},{"filename":"boot","flags":"dr-xr-xr-x.","links":5,"owner":"root","group":"root","size":4096,"date":"Oct 21 13:18"},{"filename":"dev","flags":"drwxr-xr-x.","links":20,"owner":"root","group":"root","size":3180,"date":"Oct 25 18:21"},{"filename":"etc","flags":"drwxr-xr-x.","links":78,"owner":"root","group":"root","size":8192,"date":"Oct 25 18:47"},{"filename":"home","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":21,"date":"Aug 15 10:56"},{"filename":"lib","link_to":"usr/lib","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":7,"date":"Aug 15 10:53"},{"filename":"lib64","link_to":"usr/lib64","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":9,"date":"Aug 15 10:53"},{"filename":"media","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":6,"date":"Apr 10 2018"},{"filename":"mnt","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":6,"date":"Apr 10 2018"},{"filename":"opt","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":6,"date":"Apr 10 2018"},{"filename":"proc","flags":"dr-xr-xr-x.","links":121,"owner":"root","group":"root","size":0,"date":"Oct 25 18:21"},{"filename":"root","flags":"dr-xr-x---.","links":3,"owner":"root","group":"root","size":170,"date":"Oct 15 11:11"},{"filename":"run","flags":"drwxr-xr-x.","links":26,"owner":"root","group":"root","size":800,"date":"Oct 25 18:47"},{"filename":"sbin","link_to":"usr/sbin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":8,"date":"Aug 15 10:53"},{"filename":"srv","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":6,"date":"Apr 10 2018"},{"filename":"sys","flags":"dr-xr-xr-x.","links":13,"owner":"root","group":"root","size":0,"date":"Oct 25 18:21"},{"filename":"tmp","flags":"drwxrwxrwt.","links":19,"owner":"root","group":"root","size":4096,"date":"Oct 26 10:14"},{"filename":"usr","flags":"drwxr-xr-x.","links":13,"owner":"root","group":"root","size":155,"date":"Aug 15 10:53"},{"filename":"var","flags":"drwxr-xr-x.","links":19,"owner":"root","group":"root","size":267,"date":"Aug 15 10:57"}] jc-1.17.3/tests/fixtures/centos-7.7/ls-al.json000066400000000000000000000053301415226333200207230ustar00rootroot00000000000000[{"filename": ".", "flags": "dr-xr-xr-x.", "links": 17, "owner": "root", "group": "root", "size": 224, "date": "Aug 15 10:56"}, {"filename": "..", "flags": "dr-xr-xr-x.", "links": 17, "owner": "root", "group": "root", "size": 224, "date": "Aug 15 10:56"}, {"filename": "bin", "link_to": "usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 7, "date": "Aug 15 10:53"}, {"filename": "boot", "flags": "dr-xr-xr-x.", "links": 5, "owner": "root", "group": "root", "size": 4096, "date": "Oct 21 13:18"}, {"filename": "dev", "flags": "drwxr-xr-x.", "links": 20, "owner": "root", "group": "root", "size": 3180, "date": "Oct 25 18:21"}, {"filename": "etc", "flags": "drwxr-xr-x.", "links": 78, "owner": "root", "group": "root", "size": 8192, "date": "Oct 25 18:47"}, {"filename": "home", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 21, "date": "Aug 15 10:56"}, {"filename": "lib", "link_to": "usr/lib", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 7, "date": "Aug 15 10:53"}, {"filename": "lib64", "link_to": "usr/lib64", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 9, "date": "Aug 15 10:53"}, {"filename": "media", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 6, "date": "Apr 10 2018"}, {"filename": "mnt", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 6, "date": "Apr 10 2018"}, {"filename": "opt", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 6, "date": "Apr 10 2018"}, {"filename": "proc", "flags": "dr-xr-xr-x.", "links": 121, "owner": "root", "group": "root", "size": 0, "date": "Oct 25 18:21"}, {"filename": "root", "flags": "dr-xr-x---.", "links": 3, "owner": "root", "group": "root", "size": 170, "date": "Oct 15 11:11"}, {"filename": "run", "flags": "drwxr-xr-x.", "links": 26, "owner": "root", "group": "root", "size": 800, "date": "Oct 25 18:47"}, {"filename": "sbin", "link_to": "usr/sbin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 8, "date": "Aug 15 10:53"}, {"filename": "srv", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 6, "date": "Apr 10 2018"}, {"filename": "sys", "flags": "dr-xr-xr-x.", "links": 13, "owner": "root", "group": "root", "size": 0, "date": "Oct 25 18:21"}, {"filename": "tmp", "flags": "drwxrwxrwt.", "links": 19, "owner": "root", "group": "root", "size": 4096, "date": "Oct 26 10:14"}, {"filename": "usr", "flags": "drwxr-xr-x.", "links": 13, "owner": "root", "group": "root", "size": 155, "date": "Aug 15 10:53"}, {"filename": "var", "flags": "drwxr-xr-x.", "links": 19, "owner": "root", "group": "root", "size": 267, "date": "Aug 15 10:57"}] jc-1.17.3/tests/fixtures/centos-7.7/ls-al.out000066400000000000000000000020561415226333200205630ustar00rootroot00000000000000total 20 dr-xr-xr-x. 17 root root 224 Aug 15 10:56 . dr-xr-xr-x. 17 root root 224 Aug 15 10:56 .. lrwxrwxrwx. 1 root root 7 Aug 15 10:53 bin -> usr/bin dr-xr-xr-x. 5 root root 4096 Oct 21 13:18 boot drwxr-xr-x. 20 root root 3180 Oct 25 18:21 dev drwxr-xr-x. 78 root root 8192 Oct 25 18:47 etc drwxr-xr-x. 3 root root 21 Aug 15 10:56 home lrwxrwxrwx. 1 root root 7 Aug 15 10:53 lib -> usr/lib lrwxrwxrwx. 1 root root 9 Aug 15 10:53 lib64 -> usr/lib64 drwxr-xr-x. 2 root root 6 Apr 10 2018 media drwxr-xr-x. 2 root root 6 Apr 10 2018 mnt drwxr-xr-x. 2 root root 6 Apr 10 2018 opt dr-xr-xr-x. 121 root root 0 Oct 25 18:21 proc dr-xr-x---. 3 root root 170 Oct 15 11:11 root drwxr-xr-x. 26 root root 800 Oct 25 18:47 run lrwxrwxrwx. 1 root root 8 Aug 15 10:53 sbin -> usr/sbin drwxr-xr-x. 2 root root 6 Apr 10 2018 srv dr-xr-xr-x. 13 root root 0 Oct 25 18:21 sys drwxrwxrwt. 19 root root 4096 Oct 26 10:14 tmp drwxr-xr-x. 13 root root 155 Aug 15 10:53 usr drwxr-xr-x. 19 root root 267 Aug 15 10:57 var jc-1.17.3/tests/fixtures/centos-7.7/ls-alR-streaming.json000066400000000000000000025404571415226333200230540ustar00rootroot00000000000000[{"filename":".","parent":"/usr","flags":"drwxr-xr-x.","links":13,"owner":"root","group":"root","size":155,"date":"Aug 15 2019"},{"filename":"..","parent":"/usr","flags":"dr-xr-xr-x.","links":17,"owner":"root","group":"root","size":224,"date":"Aug 15 2019"},{"filename":"bin","parent":"/usr","flags":"dr-xr-xr-x.","links":2,"owner":"root","group":"root","size":20480,"date":"Jan 13 17:29"},{"filename":"etc","parent":"/usr","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":6,"date":"Apr 10 2018"},{"filename":"games","parent":"/usr","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":6,"date":"Apr 10 2018"},{"filename":"include","parent":"/usr","flags":"drwxr-xr-x.","links":4,"owner":"root","group":"root","size":41,"date":"Oct 15 11:09"},{"filename":"lib","parent":"/usr","flags":"dr-xr-xr-x.","links":29,"owner":"root","group":"root","size":4096,"date":"Nov 16 14:29"},{"filename":"lib64","parent":"/usr","flags":"dr-xr-xr-x.","links":43,"owner":"root","group":"root","size":20480,"date":"Nov 16 14:29"},{"filename":"libexec","parent":"/usr","flags":"drwxr-xr-x.","links":24,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"local","parent":"/usr","flags":"drwxr-xr-x.","links":12,"owner":"root","group":"root","size":131,"date":"Aug 15 2019"},{"filename":"sbin","parent":"/usr","flags":"dr-xr-xr-x.","links":2,"owner":"root","group":"root","size":12288,"date":"Nov 10 07:55"},{"filename":"share","parent":"/usr","flags":"drwxr-xr-x.","links":87,"owner":"root","group":"root","size":4096,"date":"Nov 16 14:29"},{"filename":"src","parent":"/usr","flags":"drwxr-xr-x.","links":4,"owner":"root","group":"root","size":34,"date":"Aug 15 2019"},{"filename":"tmp","link_to":"../var/tmp","parent":"/usr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":10,"date":"Aug 15 2019"},{"filename":".","parent":"/usr/bin","flags":"dr-xr-xr-x.","links":2,"owner":"root","group":"root","size":20480,"date":"Jan 13 17:29"},{"filename":"..","parent":"/usr/bin","flags":"drwxr-xr-x.","links":13,"owner":"root","group":"root","size":155,"date":"Aug 15 2019"},{"filename":"[","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":41488,"date":"Aug 19 23:25"},{"filename":"a2p","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":107904,"date":"Jan 21 2019"},{"filename":"addr2line","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":29200,"date":"Aug 8 2019"},{"filename":"alias","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":29,"date":"Aug 8 2019"},{"filename":"apropos","link_to":"whatis","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":6,"date":"Aug 15 2019"},{"filename":"ar","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":62744,"date":"Aug 8 2019"},{"filename":"arch","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":33080,"date":"Aug 19 23:25"},{"filename":"as","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":378128,"date":"Aug 8 2019"},{"filename":"aserver","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":28888,"date":"Aug 8 2019"},{"filename":"audit2allow","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":14554,"date":"Aug 8 2019"},{"filename":"audit2why","link_to":"audit2allow","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":11,"date":"Oct 16 09:22"},{"filename":"aulast","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":15856,"date":"Aug 8 2019"},{"filename":"aulastlog","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11624,"date":"Aug 8 2019"},{"filename":"ausyscall","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11448,"date":"Aug 8 2019"},{"filename":"auvirt","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":32696,"date":"Aug 8 2019"},{"filename":"awk","link_to":"gawk","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":4,"date":"Aug 15 2019"},{"filename":"base64","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":37360,"date":"Aug 19 23:25"},{"filename":"basename","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":29032,"date":"Aug 19 23:25"},{"filename":"bash","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":964600,"date":"Aug 8 2019"},{"filename":"bashbug","link_to":"bashbug-64","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":10,"date":"Oct 16 09:21"},{"filename":"bashbug-64","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":6964,"date":"Aug 8 2019"},{"filename":"bg","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":26,"date":"Aug 8 2019"},{"filename":"bond2team","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":23289,"date":"Mar 17 2017"},{"filename":"bootctl","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":70648,"date":"Sep 13 11:21"},{"filename":"busctl","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":408680,"date":"Sep 13 11:21"},{"filename":"c2ph","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":2,"owner":"root","group":"root","size":36607,"date":"Jan 21 2019"},{"filename":"cal","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":37688,"date":"Aug 8 2019"},{"filename":"ca-legacy","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1638,"date":"May 14 2018"},{"filename":"captoinfo","link_to":"tic","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":3,"date":"Aug 15 2019"},{"filename":"cat","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":54080,"date":"Aug 19 23:25"},{"filename":"catchsegv","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":3336,"date":"Aug 6 2019"},{"filename":"catman","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":37632,"date":"Oct 30 2018"},{"filename":"cd","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":26,"date":"Aug 8 2019"},{"filename":"centrino-decode","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":6280,"date":"Sep 30 07:30"},{"filename":"certutil","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":175760,"date":"Aug 12 2019"},{"filename":"c++filt","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":28664,"date":"Aug 8 2019"},{"filename":"chacl","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":15640,"date":"Apr 10 2018"},{"filename":"chage","parent":"/usr/bin","flags":"-rwsr-xr-x.","links":1,"owner":"root","group":"root","size":73888,"date":"Aug 8 2019"},{"filename":"chattr","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11616,"date":"Aug 8 2019"},{"filename":"chcat","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":13430,"date":"Aug 8 2019"},{"filename":"chcon","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":62936,"date":"Aug 19 23:25"},{"filename":"checkmodule","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":410096,"date":"Oct 30 2018"},{"filename":"checkpolicy","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":422360,"date":"Oct 30 2018"},{"filename":"chfn","parent":"/usr/bin","flags":"-rws--x--x.","links":1,"owner":"root","group":"root","size":23968,"date":"Aug 8 2019"},{"filename":"chgrp","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":62784,"date":"Aug 19 23:25"},{"filename":"chmem","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":41400,"date":"Aug 8 2019"},{"filename":"chmod","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":58592,"date":"Aug 19 23:25"},{"filename":"chown","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":62824,"date":"Aug 19 23:25"},{"filename":"chronyc","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":87072,"date":"Aug 8 2019"},{"filename":"chrt","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":32944,"date":"Aug 8 2019"},{"filename":"chsh","parent":"/usr/bin","flags":"-rws--x--x.","links":1,"owner":"root","group":"root","size":23880,"date":"Aug 8 2019"},{"filename":"chvt","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11480,"date":"Oct 30 2018"},{"filename":"cifsiostat","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":49672,"date":"Aug 8 2019"},{"filename":"cksum","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":33152,"date":"Aug 19 23:25"},{"filename":"clear","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":7192,"date":"Sep 6 2017"},{"filename":"cmp","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":45272,"date":"Aug 8 2019"},{"filename":"cmsutil","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":104912,"date":"Aug 12 2019"},{"filename":"col","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":24448,"date":"Aug 8 2019"},{"filename":"colcrt","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11560,"date":"Aug 8 2019"},{"filename":"colrm","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":24352,"date":"Aug 8 2019"},{"filename":"column","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":28664,"date":"Aug 8 2019"},{"filename":"comm","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":37424,"date":"Aug 19 23:25"},{"filename":"command","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":31,"date":"Aug 8 2019"},{"filename":"container-storage-setup","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":75750,"date":"Jun 12 2018"},{"filename":"coredumpctl","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":158200,"date":"Sep 13 11:21"},{"filename":"cp","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":155176,"date":"Aug 19 23:25"},{"filename":"cpio","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":145960,"date":"Apr 10 2018"},{"filename":"cpupower","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":67928,"date":"Sep 30 07:30"},{"filename":"crlutil","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":121744,"date":"Aug 12 2019"},{"filename":"crontab","parent":"/usr/bin","flags":"-rwsr-xr-x.","links":1,"owner":"root","group":"root","size":57656,"date":"Aug 8 2019"},{"filename":"csplit","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":49992,"date":"Aug 19 23:25"},{"filename":"csslint-0.6","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":20096,"date":"Oct 30 2018"},{"filename":"curl","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":156728,"date":"Aug 8 2019"},{"filename":"cut","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":41576,"date":"Aug 19 23:25"},{"filename":"cvtsudoers","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":247440,"date":"Aug 8 2019"},{"filename":"date","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":62200,"date":"Aug 19 23:25"},{"filename":"db_archive","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11496,"date":"Aug 8 2019"},{"filename":"db_checkpoint","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11576,"date":"Aug 8 2019"},{"filename":"db_deadlock","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11584,"date":"Aug 8 2019"},{"filename":"db_dump","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":15696,"date":"Aug 8 2019"},{"filename":"db_dump185","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":65992,"date":"Aug 8 2019"},{"filename":"db_hotbackup","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":15712,"date":"Aug 8 2019"},{"filename":"db_load","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":28168,"date":"Aug 8 2019"},{"filename":"db_log_verify","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":15704,"date":"Aug 8 2019"},{"filename":"db_printlog","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":33032,"date":"Aug 8 2019"},{"filename":"db_recover","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11600,"date":"Aug 8 2019"},{"filename":"db_replicate","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":15712,"date":"Aug 8 2019"},{"filename":"db_stat","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":15624,"date":"Aug 8 2019"},{"filename":"db_tuner","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":19792,"date":"Aug 8 2019"},{"filename":"db_upgrade","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11504,"date":"Aug 8 2019"},{"filename":"dbus-binding-tool","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":96760,"date":"Jun 9 2014"},{"filename":"dbus-cleanup-sockets","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11344,"date":"Mar 14 2019"},{"filename":"dbus-daemon","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":223320,"date":"Mar 14 2019"},{"filename":"dbus-monitor","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":23760,"date":"Mar 14 2019"},{"filename":"dbus-run-session","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":15408,"date":"Mar 14 2019"},{"filename":"dbus-send","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":27800,"date":"Mar 14 2019"},{"filename":"dbus-test-tool","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":23768,"date":"Mar 14 2019"},{"filename":"dbus-update-activation-environment","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":15480,"date":"Mar 14 2019"},{"filename":"dbus-uuidgen","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11328,"date":"Mar 14 2019"},{"filename":"db_verify","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11520,"date":"Aug 8 2019"},{"filename":"dd","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":74896,"date":"Aug 19 23:25"},{"filename":"deallocvt","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11496,"date":"Oct 30 2018"},{"filename":"delv","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":41032,"date":"Aug 8 2019"},{"filename":"df","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":105016,"date":"Aug 19 23:25"},{"filename":"dgawk","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":514168,"date":"Jun 28 2017"},{"filename":"diff","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":200224,"date":"Aug 8 2019"},{"filename":"diff3","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":62200,"date":"Aug 8 2019"},{"filename":"dig","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":150568,"date":"Aug 8 2019"},{"filename":"dir","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":117608,"date":"Aug 19 23:25"},{"filename":"dircolors","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":41408,"date":"Aug 19 23:25"},{"filename":"dirname","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":28992,"date":"Aug 19 23:25"},{"filename":"dmesg","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":49680,"date":"Aug 8 2019"},{"filename":"dnsdomainname","link_to":"hostname","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":8,"date":"Aug 15 2019"},{"filename":"docker","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":735,"date":"Sep 13 07:25"},{"filename":"docker-containerd","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":717,"date":"Sep 13 07:25"},{"filename":"docker-containerd-current","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":10806520,"date":"Sep 15 07:07"},{"filename":"docker-containerd-shim","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":797,"date":"Sep 13 07:25"},{"filename":"docker-containerd-shim-current","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":2585896,"date":"Sep 15 07:07"},{"filename":"docker-ctr-current","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":10015448,"date":"Sep 15 07:07"},{"filename":"docker-current","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":13156296,"date":"Sep 15 07:07"},{"filename":"dockerd","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":740,"date":"Sep 13 07:25"},{"filename":"dockerd-current","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":33407632,"date":"Sep 15 07:07"},{"filename":"docker-storage-setup","link_to":"/usr/bin/container-storage-setup","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":32,"date":"Oct 16 09:22"},{"filename":"domainname","link_to":"hostname","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":8,"date":"Aug 15 2019"},{"filename":"dracut","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":57002,"date":"Aug 8 2019"},{"filename":"du","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":112992,"date":"Aug 19 23:25"},{"filename":"dumpkeys","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":79440,"date":"Oct 30 2018"},{"filename":"dwp","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":3178136,"date":"Aug 8 2019"},{"filename":"easy_install","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":320,"date":"Aug 2 2017"},{"filename":"easy_install-2.7","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":328,"date":"Aug 2 2017"},{"filename":"easy_install-3.6","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":234,"date":"Aug 7 2019"},{"filename":"echo","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":33088,"date":"Aug 19 23:25"},{"filename":"egrep","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":290,"date":"Aug 2 2017"},{"filename":"eject","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":49984,"date":"Aug 8 2019"},{"filename":"elfedit","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":33040,"date":"Aug 8 2019"},{"filename":"env","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":29008,"date":"Aug 19 23:25"},{"filename":"envsubst","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":36872,"date":"Aug 2 2017"},{"filename":"eqn","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":147880,"date":"Jun 9 2014"},{"filename":"erb","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":4393,"date":"Aug 8 2019"},{"filename":"ex","link_to":"vi","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":2,"date":"Oct 16 09:21"},{"filename":"expand","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":33264,"date":"Aug 19 23:25"},{"filename":"expr","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":37408,"date":"Aug 19 23:25"},{"filename":"factor","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":95528,"date":"Aug 19 23:25"},{"filename":"fallocate","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":28512,"date":"Aug 8 2019"},{"filename":"false","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":28928,"date":"Aug 19 23:25"},{"filename":"fc","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":26,"date":"Aug 8 2019"},{"filename":"fg","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":26,"date":"Aug 8 2019"},{"filename":"fgconsole","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11504,"date":"Oct 30 2018"},{"filename":"fgrep","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":290,"date":"Aug 2 2017"},{"filename":"file","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":19848,"date":"Oct 30 2018"},{"filename":"find","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":199304,"date":"Oct 30 2018"},{"filename":"find2perl","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":23614,"date":"Jan 21 2019"},{"filename":"findmnt","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":59768,"date":"Aug 8 2019"},{"filename":"fipscheck","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":15736,"date":"Aug 2 2017"},{"filename":"fipshmac","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11576,"date":"Aug 2 2017"},{"filename":"firewall-cmd","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":116196,"date":"Sep 13 11:02"},{"filename":"firewall-offline-cmd","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":103607,"date":"Sep 13 11:02"},{"filename":"flock","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":24448,"date":"Aug 8 2019"},{"filename":"fmt","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":37360,"date":"Aug 19 23:25"},{"filename":"fold","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":37336,"date":"Aug 19 23:25"},{"filename":"free","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":19792,"date":"Aug 8 2019"},{"filename":"funzip","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":32136,"date":"Aug 8 2019"},{"filename":"gapplication","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":19944,"date":"Aug 8 2019"},{"filename":"gawk","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":428584,"date":"Jun 28 2017"},{"filename":"gdbus","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":41136,"date":"Aug 8 2019"},{"filename":"gem","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":542,"date":"Aug 8 2019"},{"filename":"gencat","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":23136,"date":"Aug 6 2019"},{"filename":"genl-ctrl-list","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":2,"owner":"root","group":"root","size":11544,"date":"Aug 3 2017"},{"filename":"geoiplookup","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":15648,"date":"Aug 8 2019"},{"filename":"geoiplookup6","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11424,"date":"Aug 8 2019"},{"filename":"geoipupdate","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":32072,"date":"Aug 12 2019"},{"filename":"geqn","link_to":"eqn","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":3,"date":"Aug 15 2019"},{"filename":"getconf","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":22920,"date":"Aug 6 2019"},{"filename":"getent","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":27896,"date":"Aug 6 2019"},{"filename":"getfacl","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":24872,"date":"Apr 10 2018"},{"filename":"getkeycodes","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11496,"date":"Oct 30 2018"},{"filename":"getopt","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":15752,"date":"Aug 8 2019"},{"filename":"getopts","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":31,"date":"Aug 8 2019"},{"filename":"gettext","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":36800,"date":"Aug 2 2017"},{"filename":"gettext.sh","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":4629,"date":"Aug 2 2017"},{"filename":"gio","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":75176,"date":"Aug 8 2019"},{"filename":"gio-querymodules-64","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11592,"date":"Aug 8 2019"},{"filename":"git","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":113,"owner":"root","group":"root","size":1523792,"date":"Nov 19 2018"},{"filename":"git-receive-pack","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":113,"owner":"root","group":"root","size":1523792,"date":"Nov 19 2018"},{"filename":"git-shell","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":2,"owner":"root","group":"root","size":735288,"date":"Nov 19 2018"},{"filename":"git-upload-archive","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":113,"owner":"root","group":"root","size":1523792,"date":"Nov 19 2018"},{"filename":"git-upload-pack","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":2,"owner":"root","group":"root","size":810448,"date":"Nov 19 2018"},{"filename":"glib-compile-schemas","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":45440,"date":"Aug 8 2019"},{"filename":"gmake","link_to":"make","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":4,"date":"Oct 16 09:21"},{"filename":"gneqn","link_to":"neqn","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":4,"date":"Aug 15 2019"},{"filename":"gnroff","link_to":"nroff","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":5,"date":"Aug 15 2019"},{"filename":"gpasswd","parent":"/usr/bin","flags":"-rwsr-xr-x.","links":1,"owner":"root","group":"root","size":78408,"date":"Aug 8 2019"},{"filename":"gpg","link_to":"gpg2","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":4,"date":"Aug 15 2019"},{"filename":"gpg2","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":749976,"date":"Jul 13 2018"},{"filename":"gpg-agent","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":296696,"date":"Jul 13 2018"},{"filename":"gpgconf","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":143680,"date":"Jul 13 2018"},{"filename":"gpg-connect-agent","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":156352,"date":"Jul 13 2018"},{"filename":"gpg-error","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":23736,"date":"Jun 10 2014"},{"filename":"gpgparsemail","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":24272,"date":"Jul 13 2018"},{"filename":"gpgsplit","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":50056,"date":"Jul 13 2018"},{"filename":"gpgv","link_to":"gpgv2","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":5,"date":"Aug 15 2019"},{"filename":"gpgv2","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":353672,"date":"Jul 13 2018"},{"filename":"gpg-zip","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":3307,"date":"Jul 13 2018"},{"filename":"gpic","link_to":"pic","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":3,"date":"Aug 15 2019"},{"filename":"gprof","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":100832,"date":"Aug 8 2019"},{"filename":"grep","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":159024,"date":"Aug 2 2017"},{"filename":"groff","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":83584,"date":"Jun 9 2014"},{"filename":"grops","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":144232,"date":"Jun 9 2014"},{"filename":"grotty","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":100952,"date":"Jun 9 2014"},{"filename":"groups","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":33192,"date":"Aug 19 23:25"},{"filename":"grub2-editenv","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":401448,"date":"Aug 8 2019"},{"filename":"grub2-file","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":833888,"date":"Aug 8 2019"},{"filename":"grub2-fstest","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1062640,"date":"Aug 8 2019"},{"filename":"grub2-glue-efi","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":260920,"date":"Aug 8 2019"},{"filename":"grub2-kbdcomp","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1668,"date":"Aug 8 2019"},{"filename":"grub2-menulst2cfg","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":243520,"date":"Aug 8 2019"},{"filename":"grub2-mkfont","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":290400,"date":"Aug 8 2019"},{"filename":"grub2-mkimage","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":384136,"date":"Aug 8 2019"},{"filename":"grub2-mklayout","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":267120,"date":"Aug 8 2019"},{"filename":"grub2-mknetdir","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":435960,"date":"Aug 8 2019"},{"filename":"grub2-mkpasswd-pbkdf2","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":273720,"date":"Aug 8 2019"},{"filename":"grub2-mkrelpath","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":260568,"date":"Aug 8 2019"},{"filename":"grub2-mkrescue","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1025760,"date":"Aug 8 2019"},{"filename":"grub2-mkstandalone","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":538880,"date":"Aug 8 2019"},{"filename":"grub2-render-label","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":842904,"date":"Aug 8 2019"},{"filename":"grub2-script-check","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":298368,"date":"Aug 8 2019"},{"filename":"grub2-syslinux2cfg","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":769672,"date":"Aug 8 2019"},{"filename":"gsettings","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":24376,"date":"Aug 8 2019"},{"filename":"gsoelim","link_to":"soelim","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":6,"date":"Aug 15 2019"},{"filename":"gtar","link_to":"tar","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":3,"date":"Aug 15 2019"},{"filename":"gtbl","link_to":"tbl","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":3,"date":"Aug 15 2019"},{"filename":"gtroff","link_to":"troff","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":5,"date":"Aug 15 2019"},{"filename":"gunzip","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":2253,"date":"Apr 10 2018"},{"filename":"gzexe","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":5931,"date":"Apr 10 2018"},{"filename":"gzip","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":100800,"date":"Apr 10 2018"},{"filename":"h2ph","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":28310,"date":"Jan 21 2019"},{"filename":"hdsploader","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11448,"date":"Nov 5 2016"},{"filename":"head","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":41472,"date":"Aug 19 23:25"},{"filename":"hexdump","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":32784,"date":"Aug 8 2019"},{"filename":"host","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":130136,"date":"Aug 8 2019"},{"filename":"hostid","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":28984,"date":"Aug 19 23:25"},{"filename":"hostname","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":15768,"date":"Jun 9 2014"},{"filename":"hostnamectl","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":325712,"date":"Sep 13 11:21"},{"filename":"i386","link_to":"setarch","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":7,"date":"Oct 16 09:21"},{"filename":"iconv","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":60376,"date":"Aug 6 2019"},{"filename":"id","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":37400,"date":"Aug 19 23:25"},{"filename":"idiag-socket-details","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11608,"date":"Aug 3 2017"},{"filename":"idn","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":33232,"date":"Nov 21 2015"},{"filename":"igawk","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":3188,"date":"Jun 28 2017"},{"filename":"info","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":271552,"date":"Apr 10 2018"},{"filename":"infocmp","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":57416,"date":"Sep 6 2017"},{"filename":"infokey","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":21984,"date":"Apr 10 2018"},{"filename":"infotocap","link_to":"tic","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":3,"date":"Aug 15 2019"},{"filename":"install","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":142944,"date":"Aug 19 23:25"},{"filename":"ionice","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":24432,"date":"Aug 8 2019"},{"filename":"iostat","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":62232,"date":"Aug 8 2019"},{"filename":"ipcalc","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":15416,"date":"Aug 8 2019"},{"filename":"ipcmk","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":24584,"date":"Aug 8 2019"},{"filename":"ipcrm","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":28520,"date":"Aug 8 2019"},{"filename":"ipcs","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":49520,"date":"Aug 8 2019"},{"filename":"iptables-xml","link_to":"/usr/sbin/xtables-multi","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":23,"date":"Oct 16 09:21"},{"filename":"irb","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":314,"date":"Aug 8 2019"},{"filename":"isosize","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":24400,"date":"Aug 8 2019"},{"filename":"jobs","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":28,"date":"Aug 8 2019"},{"filename":"join","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":49920,"date":"Aug 19 23:25"},{"filename":"journalctl","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":550752,"date":"Sep 13 11:21"},{"filename":"json_reformat","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":36752,"date":"Jun 9 2014"},{"filename":"json_verify","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":28176,"date":"Jun 9 2014"},{"filename":"kbdinfo","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11528,"date":"Oct 30 2018"},{"filename":"kbd_mode","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11504,"date":"Oct 30 2018"},{"filename":"kbdrate","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11560,"date":"Oct 30 2018"},{"filename":"kdumpctl","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":32623,"date":"Aug 8 2019"},{"filename":"kernel-install","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":4811,"date":"Sep 13 11:19"},{"filename":"kill","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":33608,"date":"Aug 8 2019"},{"filename":"kmod","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":146688,"date":"Aug 8 2019"},{"filename":"last","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":19568,"date":"Jun 9 2014"},{"filename":"lastb","link_to":"last","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":4,"date":"Aug 15 2019"},{"filename":"lastlog","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":19608,"date":"Aug 8 2019"},{"filename":"lchfn","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":15896,"date":"Apr 12 2018"},{"filename":"lchsh","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":15864,"date":"Apr 12 2018"},{"filename":"ld","link_to":"/etc/alternatives/ld","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":20,"date":"Oct 16 09:21"},{"filename":"ld.bfd","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1006224,"date":"Aug 8 2019"},{"filename":"ldd","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":5302,"date":"Aug 6 2019"},{"filename":"ld.gold","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":5354368,"date":"Aug 8 2019"},{"filename":"less","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":158240,"date":"Jul 30 2015"},{"filename":"lessecho","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11376,"date":"Jul 30 2015"},{"filename":"lesskey","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":17056,"date":"Jul 30 2015"},{"filename":"lesspipe.sh","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":2291,"date":"Jul 30 2015"},{"filename":"lexgrog","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":87128,"date":"Oct 30 2018"},{"filename":"link","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":28984,"date":"Aug 19 23:25"},{"filename":"linux32","link_to":"setarch","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":7,"date":"Oct 16 09:21"},{"filename":"linux64","link_to":"setarch","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":7,"date":"Oct 16 09:21"},{"filename":"linux-boot-prober","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":5995,"date":"Nov 5 2016"},{"filename":"ln","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":58592,"date":"Aug 19 23:25"},{"filename":"loadkeys","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":113184,"date":"Oct 30 2018"},{"filename":"loadunimap","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":24544,"date":"Oct 30 2018"},{"filename":"locale","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":38720,"date":"Aug 6 2019"},{"filename":"localectl","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":334016,"date":"Sep 13 11:21"},{"filename":"localedef","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":322928,"date":"Aug 6 2019"},{"filename":"logger","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":29312,"date":"Aug 8 2019"},{"filename":"login","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":37248,"date":"Aug 8 2019"},{"filename":"loginctl","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":501344,"date":"Sep 13 11:21"},{"filename":"logname","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":28984,"date":"Aug 19 23:25"},{"filename":"look","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11544,"date":"Aug 8 2019"},{"filename":"ls","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":117608,"date":"Aug 19 23:25"},{"filename":"lsattr","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11600,"date":"Aug 8 2019"},{"filename":"lsblk","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":81072,"date":"Aug 8 2019"},{"filename":"lscpu","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":62208,"date":"Aug 8 2019"},{"filename":"lsinitrd","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":6410,"date":"Aug 8 2019"},{"filename":"lsipc","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":62432,"date":"Aug 8 2019"},{"filename":"lslocks","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":42000,"date":"Aug 8 2019"},{"filename":"lslogins","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":54152,"date":"Aug 8 2019"},{"filename":"lsmem","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":41760,"date":"Aug 8 2019"},{"filename":"lsns","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":37304,"date":"Aug 8 2019"},{"filename":"lsscsi","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":57832,"date":"Aug 2 2017"},{"filename":"lua","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":15840,"date":"Nov 5 2016"},{"filename":"luac","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":121888,"date":"Nov 5 2016"},{"filename":"lz4","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":124344,"date":"Aug 8 2019"},{"filename":"lz4c","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":124344,"date":"Aug 8 2019"},{"filename":"lz4cat","link_to":"lz4","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":3,"date":"Oct 16 09:21"},{"filename":"machinectl","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":546704,"date":"Sep 13 11:21"},{"filename":"mailq","link_to":"/etc/alternatives/mta-mailq","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":27,"date":"Aug 15 2019"},{"filename":"mailq.postfix","link_to":"../../usr/sbin/sendmail.postfix","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":31,"date":"Aug 15 2019"},{"filename":"make","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":182752,"date":"Aug 8 2019"},{"filename":"makedb","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":19072,"date":"Aug 6 2019"},{"filename":"man","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":102848,"date":"Oct 30 2018"},{"filename":"mandb","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":125184,"date":"Oct 30 2018"},{"filename":"manpath","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":33336,"date":"Oct 30 2018"},{"filename":"mapscrn","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":20344,"date":"Oct 30 2018"},{"filename":"mcookie","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":15808,"date":"Aug 8 2019"},{"filename":"md5sum","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":41504,"date":"Aug 19 23:25"},{"filename":"mdig","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":45328,"date":"Aug 8 2019"},{"filename":"mesg","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11240,"date":"Jun 9 2014"},{"filename":"mixartloader","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":15744,"date":"Nov 5 2016"},{"filename":"mkdir","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":79768,"date":"Aug 19 23:25"},{"filename":"mkfifo","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":63056,"date":"Aug 19 23:25"},{"filename":"mkinitrd","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":3013,"date":"Aug 8 2019"},{"filename":"mknod","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":67184,"date":"Aug 19 23:25"},{"filename":"mktemp","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":41632,"date":"Aug 19 23:25"},{"filename":"modutil","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":161480,"date":"Aug 12 2019"},{"filename":"more","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":41112,"date":"Aug 8 2019"},{"filename":"mount","parent":"/usr/bin","flags":"-rwsr-xr-x.","links":1,"owner":"root","group":"root","size":44264,"date":"Aug 8 2019"},{"filename":"mountpoint","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":15688,"date":"Aug 8 2019"},{"filename":"mpstat","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":53792,"date":"Aug 8 2019"},{"filename":"msgattrib","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":23920,"date":"Aug 2 2017"},{"filename":"msgcat","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":23880,"date":"Aug 2 2017"},{"filename":"msgcmp","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":24144,"date":"Aug 2 2017"},{"filename":"msgcomm","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":23872,"date":"Aug 2 2017"},{"filename":"msgconv","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":19760,"date":"Aug 2 2017"},{"filename":"msgen","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":19752,"date":"Aug 2 2017"},{"filename":"msgexec","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":15696,"date":"Aug 2 2017"},{"filename":"msgfilter","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":28224,"date":"Aug 2 2017"},{"filename":"msgfmt","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":78984,"date":"Aug 2 2017"},{"filename":"msggrep","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":36816,"date":"Aug 2 2017"},{"filename":"msghack","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":12751,"date":"Mar 15 2017"},{"filename":"msginit","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":45440,"date":"Aug 2 2017"},{"filename":"msgmerge","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":53848,"date":"Aug 2 2017"},{"filename":"msgunfmt","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":32448,"date":"Aug 2 2017"},{"filename":"msguniq","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":19776,"date":"Aug 2 2017"},{"filename":"mv","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":130360,"date":"Aug 19 23:25"},{"filename":"namei","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":28616,"date":"Aug 8 2019"},{"filename":"ndptool","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":24192,"date":"Aug 8 2019"},{"filename":"neqn","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":271,"date":"Jun 9 2014"},{"filename":"netstat","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":155008,"date":"Aug 8 2019"},{"filename":"newaliases","link_to":"/etc/alternatives/mta-newaliases","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":32,"date":"Aug 15 2019"},{"filename":"newaliases.postfix","link_to":"../../usr/sbin/sendmail.postfix","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":31,"date":"Aug 15 2019"},{"filename":"newgidmap","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":39000,"date":"Aug 8 2019"},{"filename":"newgrp","parent":"/usr/bin","flags":"-rwsr-xr-x.","links":1,"owner":"root","group":"root","size":41936,"date":"Aug 8 2019"},{"filename":"newuidmap","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":38976,"date":"Aug 8 2019"},{"filename":"nf-ct-add","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":12088,"date":"Aug 3 2017"},{"filename":"nf-ct-list","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":16216,"date":"Aug 3 2017"},{"filename":"nf-exp-add","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":16600,"date":"Aug 3 2017"},{"filename":"nf-exp-delete","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":16376,"date":"Aug 3 2017"},{"filename":"nf-exp-list","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":12088,"date":"Aug 3 2017"},{"filename":"nf-log","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11504,"date":"Aug 3 2017"},{"filename":"nf-monitor","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11448,"date":"Aug 3 2017"},{"filename":"nf-queue","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11544,"date":"Aug 3 2017"},{"filename":"nfsiostat-sysstat","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":53784,"date":"Aug 8 2019"},{"filename":"ngettext","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":36816,"date":"Aug 2 2017"},{"filename":"nice","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":33096,"date":"Aug 19 23:25"},{"filename":"nisdomainname","link_to":"hostname","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":8,"date":"Aug 15 2019"},{"filename":"nl","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":41576,"date":"Aug 19 23:25"},{"filename":"nl-addr-add","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11928,"date":"Aug 3 2017"},{"filename":"nl-addr-delete","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":12016,"date":"Aug 3 2017"},{"filename":"nl-addr-list","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":16256,"date":"Aug 3 2017"},{"filename":"nl-class-add","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":2,"owner":"root","group":"root","size":11976,"date":"Aug 3 2017"},{"filename":"nl-class-delete","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":2,"owner":"root","group":"root","size":11824,"date":"Aug 3 2017"},{"filename":"nl-classid-lookup","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":2,"owner":"root","group":"root","size":11560,"date":"Aug 3 2017"},{"filename":"nl-class-list","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":2,"owner":"root","group":"root","size":11752,"date":"Aug 3 2017"},{"filename":"nl-cls-add","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":2,"owner":"root","group":"root","size":12040,"date":"Aug 3 2017"},{"filename":"nl-cls-delete","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":2,"owner":"root","group":"root","size":11960,"date":"Aug 3 2017"},{"filename":"nl-cls-list","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":2,"owner":"root","group":"root","size":11856,"date":"Aug 3 2017"},{"filename":"nl-fib-lookup","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11688,"date":"Aug 3 2017"},{"filename":"nl-link-enslave","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":7216,"date":"Aug 3 2017"},{"filename":"nl-link-ifindex2name","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":7232,"date":"Aug 3 2017"},{"filename":"nl-link-list","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":2,"owner":"root","group":"root","size":11800,"date":"Aug 3 2017"},{"filename":"nl-link-name2ifindex","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":7216,"date":"Aug 3 2017"},{"filename":"nl-link-release","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":7216,"date":"Aug 3 2017"},{"filename":"nl-link-set","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11920,"date":"Aug 3 2017"},{"filename":"nl-link-stats","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11664,"date":"Aug 3 2017"},{"filename":"nl-list-caches","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11344,"date":"Aug 3 2017"},{"filename":"nl-list-sockets","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":7232,"date":"Aug 3 2017"},{"filename":"nl-monitor","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11464,"date":"Aug 3 2017"},{"filename":"nl-neigh-add","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11784,"date":"Aug 3 2017"},{"filename":"nl-neigh-delete","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11848,"date":"Aug 3 2017"},{"filename":"nl-neigh-list","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11736,"date":"Aug 3 2017"},{"filename":"nl-neightbl-list","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11536,"date":"Aug 3 2017"},{"filename":"nl-pktloc-lookup","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":2,"owner":"root","group":"root","size":11632,"date":"Aug 3 2017"},{"filename":"nl-qdisc-add","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":2,"owner":"root","group":"root","size":11880,"date":"Aug 3 2017"},{"filename":"nl-qdisc-delete","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":2,"owner":"root","group":"root","size":11816,"date":"Aug 3 2017"},{"filename":"nl-qdisc-list","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":2,"owner":"root","group":"root","size":11904,"date":"Aug 3 2017"},{"filename":"nl-route-add","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":12016,"date":"Aug 3 2017"},{"filename":"nl-route-delete","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":16240,"date":"Aug 3 2017"},{"filename":"nl-route-get","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11448,"date":"Aug 3 2017"},{"filename":"nl-route-list","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":12056,"date":"Aug 3 2017"},{"filename":"nl-rule-list","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11568,"date":"Aug 3 2017"},{"filename":"nl-tctree-list","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11808,"date":"Aug 3 2017"},{"filename":"nl-util-addr","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":7200,"date":"Aug 3 2017"},{"filename":"nm","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":42472,"date":"Aug 8 2019"},{"filename":"nmcli","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":824448,"date":"Sep 13 11:04"},{"filename":"nm-online","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":15528,"date":"Sep 13 11:04"},{"filename":"nmtui","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":658184,"date":"Sep 13 11:04"},{"filename":"nmtui-connect","link_to":"nmtui","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":5,"date":"Oct 16 09:22"},{"filename":"nmtui-edit","link_to":"nmtui","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":5,"date":"Oct 16 09:22"},{"filename":"nmtui-hostname","link_to":"nmtui","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":5,"date":"Oct 16 09:22"},{"filename":"nohup","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":33200,"date":"Aug 19 23:25"},{"filename":"nproc","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":33144,"date":"Aug 19 23:25"},{"filename":"nroff","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":3392,"date":"Jun 9 2014"},{"filename":"nsenter","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":28896,"date":"Aug 8 2019"},{"filename":"nslookup","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":134128,"date":"Aug 8 2019"},{"filename":"nss-policy-check","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11472,"date":"Aug 12 2019"},{"filename":"nsupdate","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":66616,"date":"Aug 8 2019"},{"filename":"numfmt","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":66264,"date":"Aug 19 23:25"},{"filename":"objcopy","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":232864,"date":"Aug 8 2019"},{"filename":"objdump","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":366336,"date":"Aug 8 2019"},{"filename":"od","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":66368,"date":"Aug 19 23:25"},{"filename":"oldfind","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":190880,"date":"Oct 30 2018"},{"filename":"open","link_to":"openvt","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":6,"date":"Aug 15 2019"},{"filename":"openssl","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":555288,"date":"Aug 8 2019"},{"filename":"openvt","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":20024,"date":"Oct 30 2018"},{"filename":"os-prober","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":5643,"date":"Nov 5 2016"},{"filename":"p11-kit","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":32952,"date":"Aug 4 2017"},{"filename":"passwd","parent":"/usr/bin","flags":"-rwsr-xr-x.","links":1,"owner":"root","group":"root","size":27856,"date":"Aug 8 2019"},{"filename":"paste","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":33128,"date":"Aug 19 23:25"},{"filename":"pathchk","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":33088,"date":"Aug 19 23:25"},{"filename":"pchrt","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":4024,"date":"Nov 5 2016"},{"filename":"perl","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":2,"owner":"root","group":"root","size":11488,"date":"Jan 21 2019"},{"filename":"perl5.16.3","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":2,"owner":"root","group":"root","size":11488,"date":"Jan 21 2019"},{"filename":"perlbug","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":2,"owner":"root","group":"root","size":44351,"date":"Jan 21 2019"},{"filename":"perldoc","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":203,"date":"Jun 10 2014"},{"filename":"perlthanks","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":2,"owner":"root","group":"root","size":44351,"date":"Jan 21 2019"},{"filename":"pflags","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":2111,"date":"Aug 8 2019"},{"filename":"pgawk","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":428672,"date":"Jun 28 2017"},{"filename":"pgrep","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":28336,"date":"Aug 8 2019"},{"filename":"pic","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":184736,"date":"Jun 9 2014"},{"filename":"piconv","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":8177,"date":"Jun 9 2014"},{"filename":"pidstat","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":70536,"date":"Aug 8 2019"},{"filename":"pinentry","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":2602,"date":"Nov 4 2016"},{"filename":"pinentry-curses","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":50368,"date":"Nov 5 2016"},{"filename":"ping","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":66176,"date":"Aug 4 2017"},{"filename":"ping6","link_to":"ping","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":4,"date":"Aug 15 2019"},{"filename":"pinky","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":37448,"date":"Aug 19 23:25"},{"filename":"pip3","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":407,"date":"Aug 7 2019"},{"filename":"pip-3","link_to":"./pip-3.6","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":9,"date":"Oct 15 11:09"},{"filename":"pip-3.6","link_to":"./pip3.6","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":8,"date":"Oct 15 11:09"},{"filename":"pip3.6","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":407,"date":"Aug 7 2019"},{"filename":"pk12util","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":97296,"date":"Aug 12 2019"},{"filename":"pkaction","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":15360,"date":"Sep 13 11:10"},{"filename":"pkcheck","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":23576,"date":"Sep 13 11:10"},{"filename":"pkexec","parent":"/usr/bin","flags":"-rwsr-xr-x.","links":1,"owner":"root","group":"root","size":23576,"date":"Sep 13 11:10"},{"filename":"pkg-config","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":45448,"date":"Jun 9 2014"},{"filename":"pkill","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":28336,"date":"Aug 8 2019"},{"filename":"pkla-admin-identities","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":19688,"date":"Jun 9 2014"},{"filename":"pkla-check-authorization","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":27960,"date":"Jun 9 2014"},{"filename":"pkttyagent","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":19440,"date":"Sep 13 11:10"},{"filename":"pl2pm","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":4531,"date":"Jan 21 2019"},{"filename":"pldd","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":14872,"date":"Aug 6 2019"},{"filename":"plymouth","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":40808,"date":"Aug 8 2019"},{"filename":"pmap","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":28272,"date":"Aug 8 2019"},{"filename":"pod2html","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":4096,"date":"Jan 21 2019"},{"filename":"pod2man","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":13581,"date":"Jun 9 2014"},{"filename":"pod2text","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11004,"date":"Jun 9 2014"},{"filename":"pod2usage","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":3755,"date":"Jun 10 2014"},{"filename":"post-grohtml","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":192048,"date":"Jun 9 2014"},{"filename":"powernow-k8-decode","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":6296,"date":"Sep 30 07:30"},{"filename":"pr","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":66672,"date":"Aug 19 23:25"},{"filename":"preconv","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":41864,"date":"Jun 9 2014"},{"filename":"pre-grohtml","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":88312,"date":"Jun 9 2014"},{"filename":"printenv","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":28968,"date":"Aug 19 23:25"},{"filename":"printf","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":49768,"date":"Aug 19 23:25"},{"filename":"prlimit","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":42184,"date":"Aug 8 2019"},{"filename":"ps","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":100112,"date":"Aug 8 2019"},{"filename":"psed","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":2,"owner":"root","group":"root","size":53329,"date":"Jan 21 2019"},{"filename":"psfaddtable","link_to":"psfxtable","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":9,"date":"Aug 15 2019"},{"filename":"psfgettable","link_to":"psfxtable","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":9,"date":"Aug 15 2019"},{"filename":"psfstriptable","link_to":"psfxtable","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":9,"date":"Aug 15 2019"},{"filename":"psfxtable","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":20008,"date":"Oct 30 2018"},{"filename":"pstruct","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":2,"owner":"root","group":"root","size":36607,"date":"Jan 21 2019"},{"filename":"ptaskset","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":3891,"date":"Nov 5 2016"},{"filename":"ptx","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":66640,"date":"Aug 19 23:25"},{"filename":"pwd","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":33232,"date":"Aug 19 23:25"},{"filename":"pwdx","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11536,"date":"Aug 8 2019"},{"filename":"pwmake","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11392,"date":"Apr 10 2018"},{"filename":"pwscore","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11392,"date":"Apr 10 2018"},{"filename":"pydoc","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":78,"date":"Aug 6 2019"},{"filename":"pydoc3","link_to":"pydoc3.6","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":8,"date":"Oct 15 11:09"},{"filename":"pydoc3.6","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":78,"date":"Aug 7 2019"},{"filename":"python","link_to":"python2","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":7,"date":"Oct 16 09:21"},{"filename":"python2","link_to":"python2.7","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":9,"date":"Oct 16 09:21"},{"filename":"python2.7","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":7216,"date":"Aug 6 2019"},{"filename":"python3","link_to":"python3.6","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":9,"date":"Oct 15 11:09"},{"filename":"python3.6","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":2,"owner":"root","group":"root","size":11408,"date":"Aug 7 2019"},{"filename":"python3.6m","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":2,"owner":"root","group":"root","size":11408,"date":"Aug 7 2019"},{"filename":"pyvenv","link_to":"pyvenv-3.6","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":10,"date":"Oct 15 11:09"},{"filename":"pyvenv-3.6","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":435,"date":"Aug 7 2019"},{"filename":"ranlib","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":62744,"date":"Aug 8 2019"},{"filename":"raw","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":15640,"date":"Aug 8 2019"},{"filename":"rdoc","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":934,"date":"Aug 8 2019"},{"filename":"read","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":28,"date":"Aug 8 2019"},{"filename":"readelf","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":517992,"date":"Aug 8 2019"},{"filename":"readlink","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":41800,"date":"Aug 19 23:25"},{"filename":"realpath","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":62696,"date":"Aug 19 23:25"},{"filename":"recode-sr-latin","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":15648,"date":"Aug 2 2017"},{"filename":"rename","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11528,"date":"Aug 8 2019"},{"filename":"renice","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11480,"date":"Aug 8 2019"},{"filename":"reset","link_to":"tset","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":4,"date":"Aug 15 2019"},{"filename":"resizecons","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":20176,"date":"Oct 30 2018"},{"filename":"rev","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11528,"date":"Aug 8 2019"},{"filename":"ri","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":184,"date":"Aug 8 2019"},{"filename":"rm","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":62872,"date":"Aug 19 23:25"},{"filename":"rmail","link_to":"/etc/alternatives/mta-rmail","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":27,"date":"Aug 15 2019"},{"filename":"rmail.postfix","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":262,"date":"Oct 30 2018"},{"filename":"rmdir","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":45528,"date":"Aug 19 23:25"},{"filename":"rpcgen","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":93144,"date":"Aug 6 2019"},{"filename":"rpm","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":16208,"date":"Aug 6 2019"},{"filename":"rpm2cpio","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11496,"date":"Aug 6 2019"},{"filename":"rpmdb","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":12096,"date":"Aug 6 2019"},{"filename":"rpmkeys","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":12096,"date":"Aug 6 2019"},{"filename":"rpmquery","link_to":"../../bin/rpm","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":13,"date":"Oct 16 09:21"},{"filename":"rpmverify","link_to":"../../bin/rpm","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":13,"date":"Oct 16 09:21"},{"filename":"rsync","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":495896,"date":"Apr 25 2019"},{"filename":"rsyslog-recover-qi.pl","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":6098,"date":"Sep 13 11:14"},{"filename":"ruby","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":7256,"date":"Aug 8 2019"},{"filename":"runcon","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":33248,"date":"Aug 19 23:25"},{"filename":"run-parts","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":2086,"date":"Jun 9 2014"},{"filename":"rvi","link_to":"vi","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":2,"date":"Oct 16 09:21"},{"filename":"rview","link_to":"vi","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":2,"date":"Oct 16 09:21"},{"filename":"s2p","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":2,"owner":"root","group":"root","size":53329,"date":"Jan 21 2019"},{"filename":"sadf","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":172488,"date":"Aug 8 2019"},{"filename":"sandbox","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":17939,"date":"Aug 8 2019"},{"filename":"sar","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":97656,"date":"Aug 8 2019"},{"filename":"scp","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":91384,"date":"Aug 8 2019"},{"filename":"script","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":20080,"date":"Aug 8 2019"},{"filename":"scriptreplay","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":15656,"date":"Aug 8 2019"},{"filename":"sdiff","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":49640,"date":"Aug 8 2019"},{"filename":"secon","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":24640,"date":"Aug 8 2019"},{"filename":"sed","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":76016,"date":"Jun 9 2014"},{"filename":"sedismod","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":255408,"date":"Oct 30 2018"},{"filename":"sedispol","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":180552,"date":"Oct 30 2018"},{"filename":"semodule_package","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":15672,"date":"Aug 8 2019"},{"filename":"seq","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":49640,"date":"Aug 19 23:25"},{"filename":"setarch","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":15640,"date":"Aug 8 2019"},{"filename":"setfacl","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":37616,"date":"Apr 10 2018"},{"filename":"setfont","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":41432,"date":"Oct 30 2018"},{"filename":"setkeycodes","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11496,"date":"Oct 30 2018"},{"filename":"setleds","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11520,"date":"Oct 30 2018"},{"filename":"setmetamode","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11568,"date":"Oct 30 2018"},{"filename":"setpriv","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":36928,"date":"Aug 8 2019"},{"filename":"setsid","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11496,"date":"Aug 8 2019"},{"filename":"setterm","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":28144,"date":"Aug 8 2019"},{"filename":"setup-nsssysinit","link_to":"setup-nsssysinit.sh","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":19,"date":"Oct 16 09:21"},{"filename":"setup-nsssysinit.sh","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1539,"date":"Aug 12 2019"},{"filename":"setvtrgb","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11688,"date":"Oct 30 2018"},{"filename":"sftp","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":145424,"date":"Aug 8 2019"},{"filename":"sg","link_to":"newgrp","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":6,"date":"Oct 16 09:21"},{"filename":"sh","link_to":"bash","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":4,"date":"Oct 16 09:21"},{"filename":"sha1sum","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":37448,"date":"Aug 19 23:25"},{"filename":"sha224sum","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":41608,"date":"Aug 19 23:25"},{"filename":"sha256sum","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":41608,"date":"Aug 19 23:25"},{"filename":"sha384sum","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":41624,"date":"Aug 19 23:25"},{"filename":"sha512sum","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":41624,"date":"Aug 19 23:25"},{"filename":"showconsolefont","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":15912,"date":"Oct 30 2018"},{"filename":"showkey","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":15680,"date":"Oct 30 2018"},{"filename":"shred","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":54208,"date":"Aug 19 23:25"},{"filename":"shuf","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":50312,"date":"Aug 19 23:25"},{"filename":"signver","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":96664,"date":"Aug 12 2019"},{"filename":"size","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":33216,"date":"Aug 8 2019"},{"filename":"skill","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":24184,"date":"Aug 8 2019"},{"filename":"slabtop","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":19984,"date":"Aug 8 2019"},{"filename":"sleep","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":33128,"date":"Aug 19 23:25"},{"filename":"slogin","link_to":"./ssh","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":5,"date":"Oct 16 09:22"},{"filename":"snice","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":24184,"date":"Aug 8 2019"},{"filename":"soelim","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":33368,"date":"Jun 9 2014"},{"filename":"sort","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":117704,"date":"Aug 19 23:25"},{"filename":"sotruss","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":4341,"date":"Aug 6 2019"},{"filename":"splain","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":18459,"date":"Jan 21 2019"},{"filename":"split","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":71128,"date":"Aug 19 23:25"},{"filename":"sprof","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":23224,"date":"Aug 6 2019"},{"filename":"sqlite3","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":56240,"date":"Nov 20 2015"},{"filename":"ssh","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":774568,"date":"Aug 8 2019"},{"filename":"ssh-add","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":360920,"date":"Aug 8 2019"},{"filename":"ssh-agent","parent":"/usr/bin","flags":"---x--s--x.","links":1,"owner":"root","group":"nobody","size":382216,"date":"Aug 8 2019"},{"filename":"ssh-copy-id","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":10469,"date":"Aug 8 2019"},{"filename":"ssh-keygen","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":419208,"date":"Aug 8 2019"},{"filename":"ssh-keyscan","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":441024,"date":"Aug 8 2019"},{"filename":"ssltap","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":112928,"date":"Aug 12 2019"},{"filename":"stat","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":79040,"date":"Aug 19 23:25"},{"filename":"stdbuf","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":66440,"date":"Aug 19 23:25"},{"filename":"strings","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":29192,"date":"Aug 8 2019"},{"filename":"strip","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":232856,"date":"Aug 8 2019"},{"filename":"stty","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":70256,"date":"Aug 19 23:25"},{"filename":"su","parent":"/usr/bin","flags":"-rwsr-xr-x.","links":1,"owner":"root","group":"root","size":32128,"date":"Aug 8 2019"},{"filename":"sudo","parent":"/usr/bin","flags":"---s--x--x.","links":1,"owner":"root","group":"root","size":147320,"date":"Aug 8 2019"},{"filename":"sudoedit","link_to":"sudo","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":4,"date":"Oct 16 09:22"},{"filename":"sudoreplay","parent":"/usr/bin","flags":"---x--x--x.","links":1,"owner":"root","group":"root","size":57456,"date":"Aug 8 2019"},{"filename":"sum","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":37432,"date":"Aug 19 23:25"},{"filename":"sync","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":28976,"date":"Aug 19 23:25"},{"filename":"systemctl","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":717568,"date":"Sep 13 11:21"},{"filename":"systemd-analyze","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1558080,"date":"Sep 13 11:21"},{"filename":"systemd-ask-password","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":61824,"date":"Sep 13 11:21"},{"filename":"systemd-cat","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":40952,"date":"Sep 13 11:21"},{"filename":"systemd-cgls","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":334112,"date":"Sep 13 11:21"},{"filename":"systemd-cgtop","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":87128,"date":"Sep 13 11:21"},{"filename":"systemd-coredumpctl","link_to":"coredumpctl","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":11,"date":"Oct 16 09:21"},{"filename":"systemd-delta","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":78680,"date":"Sep 13 11:21"},{"filename":"systemd-detect-virt","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":40928,"date":"Sep 13 11:21"},{"filename":"systemd-escape","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":49352,"date":"Sep 13 11:21"},{"filename":"systemd-firstboot","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":103952,"date":"Sep 13 11:21"},{"filename":"systemd-hwdb","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":87344,"date":"Sep 13 11:21"},{"filename":"systemd-inhibit","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":313200,"date":"Sep 13 11:21"},{"filename":"systemd-loginctl","link_to":"loginctl","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":8,"date":"Oct 16 09:21"},{"filename":"systemd-machine-id-setup","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":53488,"date":"Sep 13 11:21"},{"filename":"systemd-notify","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":49288,"date":"Sep 13 11:21"},{"filename":"systemd-nspawn","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":558912,"date":"Sep 13 11:21"},{"filename":"systemd-path","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":53416,"date":"Sep 13 11:21"},{"filename":"systemd-run","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":392216,"date":"Sep 13 11:21"},{"filename":"systemd-stdio-bridge","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":313136,"date":"Sep 13 11:21"},{"filename":"systemd-sysv-convert","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":3979,"date":"Sep 13 11:19"},{"filename":"systemd-tmpfiles","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":145536,"date":"Sep 13 11:21"},{"filename":"systemd-tty-ask-password-agent","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":86784,"date":"Sep 13 11:21"},{"filename":"tabs","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":15680,"date":"Sep 6 2017"},{"filename":"tac","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":33264,"date":"Aug 19 23:25"},{"filename":"tail","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":66824,"date":"Aug 19 23:25"},{"filename":"tailf","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":24456,"date":"Aug 8 2019"},{"filename":"tapestat","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":53816,"date":"Aug 8 2019"},{"filename":"tar","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":346136,"date":"Oct 30 2018"},{"filename":"taskset","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":32992,"date":"Aug 8 2019"},{"filename":"tbl","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":118744,"date":"Jun 9 2014"},{"filename":"teamd","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":154648,"date":"Aug 8 2019"},{"filename":"teamdctl","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":29672,"date":"Aug 8 2019"},{"filename":"teamnl","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":19560,"date":"Aug 8 2019"},{"filename":"tee","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":33160,"date":"Aug 19 23:25"},{"filename":"test","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":37336,"date":"Aug 19 23:25"},{"filename":"testgdbm","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":30488,"date":"Jun 9 2014"},{"filename":"testrb","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":74,"date":"Aug 8 2019"},{"filename":"tic","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":65800,"date":"Sep 6 2017"},{"filename":"timedatectl","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":338104,"date":"Sep 13 11:21"},{"filename":"timeout","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":54592,"date":"Aug 19 23:25"},{"filename":"tload","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":15744,"date":"Aug 8 2019"},{"filename":"tmon","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":31856,"date":"Sep 30 07:30"},{"filename":"toe","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":15800,"date":"Sep 6 2017"},{"filename":"top","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":106880,"date":"Aug 8 2019"},{"filename":"touch","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":62480,"date":"Aug 19 23:25"},{"filename":"tput","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":15784,"date":"Sep 6 2017"},{"filename":"tr","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":45680,"date":"Aug 19 23:25"},{"filename":"tracepath","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":15408,"date":"Aug 4 2017"},{"filename":"tracepath6","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":15408,"date":"Aug 4 2017"},{"filename":"troff","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":525272,"date":"Jun 9 2014"},{"filename":"true","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":28936,"date":"Aug 19 23:25"},{"filename":"truncate","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":53936,"date":"Aug 19 23:25"},{"filename":"trust","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":183376,"date":"Aug 4 2017"},{"filename":"tset","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":20072,"date":"Sep 6 2017"},{"filename":"tsort","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":37344,"date":"Aug 19 23:25"},{"filename":"tty","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":28968,"date":"Aug 19 23:25"},{"filename":"turbostat","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":115864,"date":"Sep 30 07:30"},{"filename":"tzselect","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":7339,"date":"Aug 6 2019"},{"filename":"udevadm","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":424208,"date":"Sep 13 11:21"},{"filename":"ul","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":19936,"date":"Aug 8 2019"},{"filename":"umask","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":29,"date":"Aug 8 2019"},{"filename":"umount","parent":"/usr/bin","flags":"-rwsr-xr-x.","links":1,"owner":"root","group":"root","size":31984,"date":"Aug 8 2019"},{"filename":"unalias","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":31,"date":"Aug 8 2019"},{"filename":"uname","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":33080,"date":"Aug 19 23:25"},{"filename":"unexpand","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":33232,"date":"Aug 19 23:25"},{"filename":"unicode_start","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":2555,"date":"Oct 30 2018"},{"filename":"unicode_stop","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":363,"date":"Oct 30 2018"},{"filename":"uniq","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":45784,"date":"Aug 19 23:25"},{"filename":"unlink","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":28984,"date":"Aug 19 23:25"},{"filename":"unlz4","link_to":"lz4","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":3,"date":"Oct 16 09:21"},{"filename":"unshare","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":15824,"date":"Aug 8 2019"},{"filename":"unxz","link_to":"xz","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":2,"date":"Aug 15 2019"},{"filename":"unzip","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":2,"owner":"root","group":"root","size":185472,"date":"Aug 8 2019"},{"filename":"unzipsfx","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":90752,"date":"Aug 8 2019"},{"filename":"update-ca-trust","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1054,"date":"May 14 2018"},{"filename":"update-mime-database","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":54080,"date":"Apr 10 2018"},{"filename":"uptime","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11488,"date":"Aug 8 2019"},{"filename":"urlgrabber","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":12465,"date":"Oct 30 2018"},{"filename":"users","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":33200,"date":"Aug 19 23:25"},{"filename":"usleep","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11208,"date":"Aug 8 2019"},{"filename":"usx2yloader","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":15776,"date":"Nov 5 2016"},{"filename":"utmpdump","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":15816,"date":"Aug 8 2019"},{"filename":"uuidgen","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11480,"date":"Aug 8 2019"},{"filename":"vdir","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":117608,"date":"Aug 19 23:25"},{"filename":"vi","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":928184,"date":"Aug 8 2019"},{"filename":"view","link_to":"vi","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":2,"date":"Oct 16 09:21"},{"filename":"vlock","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":16160,"date":"Oct 30 2018"},{"filename":"vmstat","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":32232,"date":"Aug 8 2019"},{"filename":"vxloader","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":15744,"date":"Nov 5 2016"},{"filename":"w","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":19912,"date":"Aug 8 2019"},{"filename":"wait","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":28,"date":"Aug 8 2019"},{"filename":"wall","parent":"/usr/bin","flags":"-r-xr-sr-x.","links":1,"owner":"root","group":"tty","size":15344,"date":"Jun 9 2014"},{"filename":"watch","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":24728,"date":"Aug 8 2019"},{"filename":"watchgnupg","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":15720,"date":"Jul 13 2018"},{"filename":"wc","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":41648,"date":"Aug 19 23:25"},{"filename":"wdctl","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":41672,"date":"Aug 8 2019"},{"filename":"whatis","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":46584,"date":"Oct 30 2018"},{"filename":"whereis","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":20680,"date":"Aug 8 2019"},{"filename":"which","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":24336,"date":"Jun 9 2014"},{"filename":"whiptail","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":28504,"date":"Jun 10 2014"},{"filename":"who","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":49872,"date":"Aug 19 23:25"},{"filename":"whoami","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":28984,"date":"Aug 19 23:25"},{"filename":"write","parent":"/usr/bin","flags":"-rwxr-sr-x.","links":1,"owner":"root","group":"tty","size":19544,"date":"Aug 8 2019"},{"filename":"x86_64","link_to":"setarch","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":7,"date":"Oct 16 09:21"},{"filename":"x86_energy_perf_policy","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":10480,"date":"Sep 30 07:30"},{"filename":"xargs","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":62368,"date":"Oct 30 2018"},{"filename":"xgettext","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":271784,"date":"Aug 2 2017"},{"filename":"xmlcatalog","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":19752,"date":"Jun 23 2016"},{"filename":"xmllint","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":63408,"date":"Jun 23 2016"},{"filename":"xmlwf","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":24568,"date":"Nov 28 2016"},{"filename":"xz","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":75280,"date":"Nov 5 2016"},{"filename":"xzcat","link_to":"xz","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":2,"date":"Aug 15 2019"},{"filename":"xzcmp","link_to":"xzdiff","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":6,"date":"Aug 15 2019"},{"filename":"xzdec","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11472,"date":"Nov 5 2016"},{"filename":"xzdiff","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":6632,"date":"Nov 5 2016"},{"filename":"xzegrep","link_to":"xzgrep","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":6,"date":"Aug 15 2019"},{"filename":"xzfgrep","link_to":"xzgrep","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":6,"date":"Aug 15 2019"},{"filename":"xzgrep","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":5628,"date":"Nov 5 2016"},{"filename":"xzless","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1802,"date":"Nov 5 2016"},{"filename":"xzmore","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":2161,"date":"Nov 5 2016"},{"filename":"yes","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":28984,"date":"Aug 19 23:25"},{"filename":"ypdomainname","link_to":"hostname","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":8,"date":"Aug 15 2019"},{"filename":"yum","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":801,"date":"Aug 8 2019"},{"filename":"zcat","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1941,"date":"Apr 10 2018"},{"filename":"zcmp","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1760,"date":"Apr 10 2018"},{"filename":"zdiff","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":5768,"date":"Apr 10 2018"},{"filename":"zegrep","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":123,"date":"Apr 10 2018"},{"filename":"zfgrep","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":123,"date":"Apr 10 2018"},{"filename":"zforce","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":2144,"date":"Apr 10 2018"},{"filename":"zgrep","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":6132,"date":"Apr 10 2018"},{"filename":"zipgrep","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":2953,"date":"Oct 10 2008"},{"filename":"zipinfo","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":2,"owner":"root","group":"root","size":185472,"date":"Aug 8 2019"},{"filename":"zless","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":2041,"date":"Apr 10 2018"},{"filename":"zmore","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":2859,"date":"Apr 10 2018"},{"filename":"znew","parent":"/usr/bin","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":5343,"date":"Apr 10 2018"},{"filename":"zsoelim","link_to":"soelim","parent":"/usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":6,"date":"Aug 15 2019"},{"filename":".","parent":"/usr/etc","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":6,"date":"Apr 10 2018"},{"filename":"..","parent":"/usr/etc","flags":"drwxr-xr-x.","links":13,"owner":"root","group":"root","size":155,"date":"Aug 15 2019"},{"filename":".","parent":"/usr/games","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":6,"date":"Apr 10 2018"},{"filename":"..","parent":"/usr/games","flags":"drwxr-xr-x.","links":13,"owner":"root","group":"root","size":155,"date":"Aug 15 2019"},{"filename":".","parent":"/usr/include","flags":"drwxr-xr-x.","links":4,"owner":"root","group":"root","size":41,"date":"Oct 15 11:09"},{"filename":"..","parent":"/usr/include","flags":"drwxr-xr-x.","links":13,"owner":"root","group":"root","size":155,"date":"Aug 15 2019"},{"filename":"python2.7","parent":"/usr/include","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":27,"date":"Oct 16 09:21"},{"filename":"python3.6m","parent":"/usr/include","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":27,"date":"Oct 15 11:09"},{"filename":".","parent":"/usr/include/python2.7","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":27,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/include/python2.7","flags":"drwxr-xr-x.","links":4,"owner":"root","group":"root","size":41,"date":"Oct 15 11:09"},{"filename":"pyconfig-64.h","parent":"/usr/include/python2.7","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":36814,"date":"Aug 6 2019"},{"filename":".","parent":"/usr/include/python3.6m","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":27,"date":"Oct 15 11:09"},{"filename":"..","parent":"/usr/include/python3.6m","flags":"drwxr-xr-x.","links":4,"owner":"root","group":"root","size":41,"date":"Oct 15 11:09"},{"filename":"pyconfig-64.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":44526,"date":"Aug 7 2019"},{"filename":".","parent":"/usr/lib","flags":"dr-xr-xr-x.","links":29,"owner":"root","group":"root","size":4096,"date":"Nov 16 14:29"},{"filename":"..","parent":"/usr/lib","flags":"drwxr-xr-x.","links":13,"owner":"root","group":"root","size":155,"date":"Aug 15 2019"},{"filename":"binfmt.d","parent":"/usr/lib","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":6,"date":"Sep 13 11:19"},{"filename":"debug","parent":"/usr/lib","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":64,"date":"Apr 10 2018"},{"filename":"dracut","parent":"/usr/lib","flags":"drwxr-xr-x.","links":4,"owner":"root","group":"root","size":236,"date":"Oct 16 09:21"},{"filename":"firewalld","parent":"/usr/lib","flags":"drwxr-xr-x.","links":7,"owner":"root","group":"root","size":81,"date":"Oct 16 09:23"},{"filename":"firmware","parent":"/usr/lib","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"games","parent":"/usr/lib","flags":"dr-xr-xr-x.","links":2,"owner":"root","group":"root","size":6,"date":"Apr 10 2018"},{"filename":"gems","parent":"/usr/lib","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":18,"date":"Nov 16 14:29"},{"filename":"grub","parent":"/usr/lib","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":21,"date":"Aug 8 2019"},{"filename":"kbd","parent":"/usr/lib","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":76,"date":"Aug 15 2019"},{"filename":"kdump","parent":"/usr/lib","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":56,"date":"Oct 16 09:22"},{"filename":"kernel","parent":"/usr/lib","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":23,"date":"Sep 13 11:19"},{"filename":"locale","parent":"/usr/lib","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":55,"date":"Oct 16 09:21"},{"filename":"modprobe.d","parent":"/usr/lib","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":55,"date":"Oct 16 09:23"},{"filename":"modules","parent":"/usr/lib","flags":"drwxr-xr-x.","links":5,"owner":"root","group":"root","size":103,"date":"Oct 16 09:22"},{"filename":"modules-load.d","parent":"/usr/lib","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":6,"date":"Sep 13 11:19"},{"filename":"NetworkManager","parent":"/usr/lib","flags":"drwxr-xr-x.","links":4,"owner":"root","group":"root","size":31,"date":"Sep 13 11:04"},{"filename":"polkit-1","parent":"/usr/lib","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":50,"date":"Oct 16 09:21"},{"filename":"python2.7","parent":"/usr/lib","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":27,"date":"Aug 6 2019"},{"filename":"python3.6","parent":"/usr/lib","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":27,"date":"Aug 7 2019"},{"filename":"rpm","parent":"/usr/lib","flags":"drwxr-xr-x.","links":4,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:21"},{"filename":"sendmail","link_to":"/etc/alternatives/mta-sendmail","parent":"/usr/lib","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":30,"date":"Aug 15 2019"},{"filename":"sendmail.postfix","link_to":"../sbin/sendmail.postfix","parent":"/usr/lib","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":24,"date":"Aug 15 2019"},{"filename":"sse2","parent":"/usr/lib","flags":"dr-xr-xr-x.","links":2,"owner":"root","group":"root","size":6,"date":"Apr 10 2018"},{"filename":"sysctl.d","parent":"/usr/lib","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":107,"date":"Oct 16 09:22"},{"filename":"systemd","parent":"/usr/lib","flags":"drwxr-xr-x.","links":12,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:21"},{"filename":"tmpfiles.d","parent":"/usr/lib","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"tuned","parent":"/usr/lib","flags":"drwxr-xr-x.","links":13,"owner":"root","group":"root","size":256,"date":"Oct 16 09:22"},{"filename":"udev","parent":"/usr/lib","flags":"drwxr-xr-x.","links":4,"owner":"root","group":"root","size":252,"date":"Oct 16 09:21"},{"filename":"yum-plugins","parent":"/usr/lib","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":80,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/binfmt.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":6,"date":"Sep 13 11:19"},{"filename":"..","parent":"/usr/lib/binfmt.d","flags":"dr-xr-xr-x.","links":29,"owner":"root","group":"root","size":4096,"date":"Nov 16 14:29"},{"filename":".","parent":"/usr/lib/debug","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":64,"date":"Apr 10 2018"},{"filename":"..","parent":"/usr/lib/debug","flags":"dr-xr-xr-x.","links":29,"owner":"root","group":"root","size":4096,"date":"Nov 16 14:29"},{"filename":"bin","link_to":"usr/bin","parent":"/usr/lib/debug","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":7,"date":"Aug 15 2019"},{"filename":"lib","link_to":"usr/lib","parent":"/usr/lib/debug","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":7,"date":"Aug 15 2019"},{"filename":"lib64","link_to":"usr/lib64","parent":"/usr/lib/debug","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":9,"date":"Aug 15 2019"},{"filename":"sbin","link_to":"usr/sbin","parent":"/usr/lib/debug","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":8,"date":"Aug 15 2019"},{"filename":"usr","parent":"/usr/lib/debug","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":65,"date":"Aug 15 2019"},{"filename":".","parent":"/usr/lib/debug/usr","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":65,"date":"Aug 15 2019"},{"filename":"..","parent":"/usr/lib/debug/usr","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":64,"date":"Apr 10 2018"},{"filename":"bin","parent":"/usr/lib/debug/usr","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":6,"date":"Aug 15 2019"},{"filename":".dwz","link_to":"../.dwz","parent":"/usr/lib/debug/usr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":7,"date":"Aug 15 2019"},{"filename":"lib","parent":"/usr/lib/debug/usr","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":6,"date":"Aug 15 2019"},{"filename":"lib64","parent":"/usr/lib/debug/usr","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":6,"date":"Aug 15 2019"},{"filename":"sbin","parent":"/usr/lib/debug/usr","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":6,"date":"Aug 15 2019"},{"filename":".","parent":"/usr/lib/debug/usr/bin","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":6,"date":"Aug 15 2019"},{"filename":"..","parent":"/usr/lib/debug/usr/bin","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":65,"date":"Aug 15 2019"},{"filename":".","parent":"/usr/lib/debug/usr/lib","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":6,"date":"Aug 15 2019"},{"filename":"..","parent":"/usr/lib/debug/usr/lib","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":65,"date":"Aug 15 2019"},{"filename":".","parent":"/usr/lib/debug/usr/lib64","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":6,"date":"Aug 15 2019"},{"filename":"..","parent":"/usr/lib/debug/usr/lib64","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":65,"date":"Aug 15 2019"},{"filename":".","parent":"/usr/lib/debug/usr/sbin","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":6,"date":"Aug 15 2019"},{"filename":"..","parent":"/usr/lib/debug/usr/sbin","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":65,"date":"Aug 15 2019"},{"filename":".","parent":"/usr/lib/dracut","flags":"drwxr-xr-x.","links":4,"owner":"root","group":"root","size":236,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut","flags":"dr-xr-xr-x.","links":29,"owner":"root","group":"root","size":4096,"date":"Nov 16 14:29"},{"filename":"dracut.conf.d","parent":"/usr/lib/dracut","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":164,"date":"Oct 16 09:22"},{"filename":"dracut-functions","link_to":"dracut-functions.sh","parent":"/usr/lib/dracut","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":19,"date":"Oct 16 09:21"},{"filename":"dracut-functions.sh","parent":"/usr/lib/dracut","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":56134,"date":"Aug 8 2019"},{"filename":"dracut-initramfs-restore","parent":"/usr/lib/dracut","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1111,"date":"Aug 8 2019"},{"filename":"dracut-init.sh","parent":"/usr/lib/dracut","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1188,"date":"Aug 8 2019"},{"filename":"dracut-install","parent":"/usr/lib/dracut","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":41616,"date":"Aug 8 2019"},{"filename":"dracut-logger.sh","parent":"/usr/lib/dracut","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":13388,"date":"Aug 8 2019"},{"filename":"dracut-version.sh","parent":"/usr/lib/dracut","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":27,"date":"Aug 8 2019"},{"filename":"modules.d","parent":"/usr/lib/dracut","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"skipcpio","parent":"/usr/lib/dracut","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":7296,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/dracut/dracut.conf.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":164,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/dracut/dracut.conf.d","flags":"drwxr-xr-x.","links":4,"owner":"root","group":"root","size":236,"date":"Oct 16 09:21"},{"filename":"01-dist.conf","parent":"/usr/lib/dracut/dracut.conf.d","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":524,"date":"Aug 8 2019"},{"filename":"01-microcode.conf","parent":"/usr/lib/dracut/dracut.conf.d","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":22,"date":"Aug 8 2019"},{"filename":"02-rescue.conf","parent":"/usr/lib/dracut/dracut.conf.d","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":26,"date":"Aug 8 2019"},{"filename":"50-nss-softokn.conf","parent":"/usr/lib/dracut/dracut.conf.d","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":65,"date":"Aug 12 2019"},{"filename":"76-phys-port-name.conf","parent":"/usr/lib/dracut/dracut.conf.d","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":117,"date":"Sep 13 11:19"},{"filename":"99-microcode-override.conf","parent":"/usr/lib/dracut/dracut.conf.d","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":277,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"..","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":4,"owner":"root","group":"root","size":236,"date":"Oct 16 09:21"},{"filename":"00bash","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":29,"date":"Oct 16 09:21"},{"filename":"00systemd-bootchart","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":29,"date":"Oct 16 09:21"},{"filename":"03modsign","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":57,"date":"Oct 16 09:21"},{"filename":"03rescue","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":29,"date":"Oct 16 09:21"},{"filename":"04watchdog","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":72,"date":"Oct 16 09:21"},{"filename":"05busybox","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":29,"date":"Oct 16 09:21"},{"filename":"05nss-softokn","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":29,"date":"Oct 16 09:21"},{"filename":"10i18n","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":111,"date":"Oct 16 09:21"},{"filename":"30convertfs","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":72,"date":"Oct 16 09:21"},{"filename":"40network","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"45ifcfg","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":51,"date":"Oct 16 09:22"},{"filename":"45url-lib","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":47,"date":"Oct 16 09:21"},{"filename":"50drm","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":29,"date":"Oct 16 09:21"},{"filename":"50plymouth","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":150,"date":"Oct 16 09:21"},{"filename":"80cms","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":92,"date":"Oct 16 09:21"},{"filename":"90bcache","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":29,"date":"Oct 16 09:21"},{"filename":"90btrfs","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":129,"date":"Oct 16 09:21"},{"filename":"90crypt","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":195,"date":"Oct 16 09:21"},{"filename":"90dm","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":130,"date":"Oct 16 09:21"},{"filename":"90dmraid","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":93,"date":"Oct 16 09:21"},{"filename":"90dmsquash-live","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":258,"date":"Oct 16 09:21"},{"filename":"90dmsquash-live-ntfs","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":29,"date":"Oct 16 09:21"},{"filename":"90kernel-modules","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":73,"date":"Oct 16 09:21"},{"filename":"90livenet","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":102,"date":"Oct 16 09:22"},{"filename":"90lvm","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":88,"date":"Oct 16 09:21"},{"filename":"90mdraid","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:21"},{"filename":"90multipath","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":110,"date":"Oct 16 09:21"},{"filename":"90qemu","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":29,"date":"Oct 16 09:21"},{"filename":"90qemu-net","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":29,"date":"Oct 16 09:22"},{"filename":"91crypt-gpg","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":53,"date":"Oct 16 09:21"},{"filename":"91crypt-loop","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":54,"date":"Oct 16 09:21"},{"filename":"95cifs","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":92,"date":"Oct 16 09:22"},{"filename":"95dasd","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":50,"date":"Oct 16 09:21"},{"filename":"95dasd_mod","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":54,"date":"Oct 16 09:21"},{"filename":"95debug","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":29,"date":"Oct 16 09:21"},{"filename":"95fcoe","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":151,"date":"Oct 16 09:22"},{"filename":"95fcoe-uefi","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":54,"date":"Oct 16 09:22"},{"filename":"95fstab-sys","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":49,"date":"Oct 16 09:21"},{"filename":"95iscsi","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":119,"date":"Oct 16 09:22"},{"filename":"95nbd","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":71,"date":"Oct 16 09:22"},{"filename":"95nfs","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":139,"date":"Oct 16 09:22"},{"filename":"95resume","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":69,"date":"Oct 16 09:21"},{"filename":"95rootfs-block","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":120,"date":"Oct 16 09:21"},{"filename":"95ssh-client","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":29,"date":"Oct 16 09:22"},{"filename":"95terminfo","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":29,"date":"Oct 16 09:21"},{"filename":"95udev-rules","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":122,"date":"Oct 16 09:21"},{"filename":"95virtfs","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":102,"date":"Oct 16 09:21"},{"filename":"95zfcp","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":50,"date":"Oct 16 09:21"},{"filename":"95znet","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":49,"date":"Oct 16 09:22"},{"filename":"97biosdevname","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":57,"date":"Oct 16 09:21"},{"filename":"98ecryptfs","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":68,"date":"Oct 16 09:21"},{"filename":"98pollcdrom","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":49,"date":"Oct 16 09:21"},{"filename":"98selinux","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":58,"date":"Oct 16 09:21"},{"filename":"98syslog","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":191,"date":"Oct 16 09:21"},{"filename":"98systemd","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:21"},{"filename":"98usrmount","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":49,"date":"Oct 16 09:21"},{"filename":"99base","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":173,"date":"Oct 16 09:21"},{"filename":"99fs-lib","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":46,"date":"Oct 16 09:21"},{"filename":"99img-lib","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":47,"date":"Oct 16 09:21"},{"filename":"99kdumpbase","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":227,"date":"Oct 16 09:22"},{"filename":"99microcode_ctl-fw_dir_override","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":29,"date":"Oct 16 09:22"},{"filename":"99shutdown","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":48,"date":"Oct 16 09:21"},{"filename":"99uefi-lib","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":48,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/dracut/modules.d/00bash","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":29,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/00bash","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/00bash","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":414,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/dracut/modules.d/00systemd-bootchart","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":29,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/00systemd-bootchart","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/00systemd-bootchart","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":383,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/dracut/modules.d/03modsign","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":57,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/03modsign","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"load-modsign-keys.sh","parent":"/usr/lib/dracut/modules.d/03modsign","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":344,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/03modsign","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":790,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/dracut/modules.d/03rescue","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":29,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/03rescue","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/03rescue","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":420,"date":"Sep 12 2013"},{"filename":".","parent":"/usr/lib/dracut/modules.d/04watchdog","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":72,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/04watchdog","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/04watchdog","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":2929,"date":"Aug 8 2019"},{"filename":"watchdog.sh","parent":"/usr/lib/dracut/modules.d/04watchdog","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":245,"date":"Sep 12 2013"},{"filename":"watchdog-stop.sh","parent":"/usr/lib/dracut/modules.d/04watchdog","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":61,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/dracut/modules.d/05busybox","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":29,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/05busybox","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/05busybox","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":752,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/dracut/modules.d/05nss-softokn","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":29,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/05nss-softokn","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/05nss-softokn","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":293,"date":"Aug 12 2019"},{"filename":".","parent":"/usr/lib/dracut/modules.d/10i18n","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":111,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/10i18n","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"10-console.rules","parent":"/usr/lib/dracut/modules.d/10i18n","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":168,"date":"Sep 12 2013"},{"filename":"console_init.sh","parent":"/usr/lib/dracut/modules.d/10i18n","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1722,"date":"Sep 12 2013"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/10i18n","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":7479,"date":"Aug 8 2019"},{"filename":"parse-i18n.sh","parent":"/usr/lib/dracut/modules.d/10i18n","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1263,"date":"Aug 8 2019"},{"filename":"README","parent":"/usr/lib/dracut/modules.d/10i18n","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4420,"date":"Sep 12 2013"},{"filename":".","parent":"/usr/lib/dracut/modules.d/30convertfs","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":72,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/30convertfs","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"convertfs.sh","parent":"/usr/lib/dracut/modules.d/30convertfs","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":6113,"date":"Sep 12 2013"},{"filename":"do-convertfs.sh","parent":"/usr/lib/dracut/modules.d/30convertfs","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":304,"date":"Sep 12 2013"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/30convertfs","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":389,"date":"Sep 12 2013"},{"filename":".","parent":"/usr/lib/dracut/modules.d/40network","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/40network","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"dhclient.conf","parent":"/usr/lib/dracut/modules.d/40network","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":262,"date":"Aug 8 2019"},{"filename":"dhclient-script.sh","parent":"/usr/lib/dracut/modules.d/40network","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":8518,"date":"Aug 8 2019"},{"filename":"dhcp-root.sh","parent":"/usr/lib/dracut/modules.d/40network","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":926,"date":"Sep 12 2013"},{"filename":"ifname-genrules.sh","parent":"/usr/lib/dracut/modules.d/40network","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1229,"date":"Sep 12 2013"},{"filename":"ifup.sh","parent":"/usr/lib/dracut/modules.d/40network","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":13858,"date":"Aug 8 2019"},{"filename":"kill-dhclient.sh","parent":"/usr/lib/dracut/modules.d/40network","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":362,"date":"Sep 12 2013"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/40network","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":4857,"date":"Aug 8 2019"},{"filename":"net-genrules.sh","parent":"/usr/lib/dracut/modules.d/40network","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":3756,"date":"Aug 8 2019"},{"filename":"net-lib.sh","parent":"/usr/lib/dracut/modules.d/40network","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":24587,"date":"Aug 8 2019"},{"filename":"netroot.sh","parent":"/usr/lib/dracut/modules.d/40network","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":2789,"date":"Aug 8 2019"},{"filename":"parse-bond.sh","parent":"/usr/lib/dracut/modules.d/40network","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":2008,"date":"Aug 8 2019"},{"filename":"parse-bridge.sh","parent":"/usr/lib/dracut/modules.d/40network","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1124,"date":"Aug 8 2019"},{"filename":"parse-ibft.sh","parent":"/usr/lib/dracut/modules.d/40network","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":393,"date":"Aug 8 2019"},{"filename":"parse-ifname.sh","parent":"/usr/lib/dracut/modules.d/40network","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":662,"date":"Sep 12 2013"},{"filename":"parse-ip-opts.sh","parent":"/usr/lib/dracut/modules.d/40network","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":4912,"date":"Aug 8 2019"},{"filename":"parse-team.sh","parent":"/usr/lib/dracut/modules.d/40network","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":983,"date":"Aug 8 2019"},{"filename":"parse-vlan.sh","parent":"/usr/lib/dracut/modules.d/40network","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":532,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/dracut/modules.d/45ifcfg","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":51,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/45ifcfg","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/45ifcfg","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":321,"date":"Aug 8 2019"},{"filename":"write-ifcfg.sh","parent":"/usr/lib/dracut/modules.d/45ifcfg","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":8679,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/dracut/modules.d/45url-lib","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":47,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/45url-lib","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/45url-lib","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1036,"date":"Aug 8 2019"},{"filename":"url-lib.sh","parent":"/usr/lib/dracut/modules.d/45url-lib","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":4015,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/dracut/modules.d/50drm","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":29,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/50drm","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/50drm","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":2004,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/dracut/modules.d/50plymouth","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":150,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/50plymouth","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/50plymouth","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":870,"date":"Aug 8 2019"},{"filename":"plymouth-emergency.sh","parent":"/usr/lib/dracut/modules.d/50plymouth","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":160,"date":"Sep 12 2013"},{"filename":"plymouth-newroot.sh","parent":"/usr/lib/dracut/modules.d/50plymouth","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":223,"date":"Sep 12 2013"},{"filename":"plymouth-populate-initrd.sh","parent":"/usr/lib/dracut/modules.d/50plymouth","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1506,"date":"Sep 12 2013"},{"filename":"plymouth-pretrigger.sh","parent":"/usr/lib/dracut/modules.d/50plymouth","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1193,"date":"Sep 12 2013"},{"filename":".","parent":"/usr/lib/dracut/modules.d/80cms","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":92,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/80cms","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"cmsifup.sh","parent":"/usr/lib/dracut/modules.d/80cms","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":895,"date":"Aug 8 2019"},{"filename":"cmssetup.sh","parent":"/usr/lib/dracut/modules.d/80cms","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":6046,"date":"Aug 8 2019"},{"filename":"cms-write-ifcfg.sh","parent":"/usr/lib/dracut/modules.d/80cms","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":3269,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/80cms","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":905,"date":"Sep 12 2013"},{"filename":".","parent":"/usr/lib/dracut/modules.d/90bcache","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":29,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/90bcache","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/90bcache","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":790,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/dracut/modules.d/90btrfs","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":129,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/90btrfs","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"80-btrfs.rules","parent":"/usr/lib/dracut/modules.d/90btrfs","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":270,"date":"Sep 12 2013"},{"filename":"btrfs_device_ready.sh","parent":"/usr/lib/dracut/modules.d/90btrfs","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":577,"date":"Sep 12 2013"},{"filename":"btrfs_finished.sh","parent":"/usr/lib/dracut/modules.d/90btrfs","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":707,"date":"Sep 12 2013"},{"filename":"btrfs_timeout.sh","parent":"/usr/lib/dracut/modules.d/90btrfs","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":252,"date":"Sep 12 2013"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/90btrfs","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1159,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/dracut/modules.d/90crypt","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":195,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/90crypt","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"crypt-cleanup.sh","parent":"/usr/lib/dracut/modules.d/90crypt","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":551,"date":"Sep 12 2013"},{"filename":"crypt-lib.sh","parent":"/usr/lib/dracut/modules.d/90crypt","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":6898,"date":"Sep 12 2013"},{"filename":"cryptroot-ask.sh","parent":"/usr/lib/dracut/modules.d/90crypt","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":4282,"date":"Sep 12 2013"},{"filename":"crypt-run-generator.sh","parent":"/usr/lib/dracut/modules.d/90crypt","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":887,"date":"Sep 12 2013"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/90crypt","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":3023,"date":"Aug 8 2019"},{"filename":"parse-crypt.sh","parent":"/usr/lib/dracut/modules.d/90crypt","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":3276,"date":"Sep 12 2013"},{"filename":"parse-keydev.sh","parent":"/usr/lib/dracut/modules.d/90crypt","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1260,"date":"Sep 12 2013"},{"filename":"probe-keydev.sh","parent":"/usr/lib/dracut/modules.d/90crypt","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":492,"date":"Sep 12 2013"},{"filename":".","parent":"/usr/lib/dracut/modules.d/90dm","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":130,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/90dm","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"11-dm.rules","parent":"/usr/lib/dracut/modules.d/90dm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":142,"date":"Sep 12 2013"},{"filename":"59-persistent-storage-dm.rules","parent":"/usr/lib/dracut/modules.d/90dm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":670,"date":"Sep 12 2013"},{"filename":"dm-pre-udev.sh","parent":"/usr/lib/dracut/modules.d/90dm","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":211,"date":"Sep 12 2013"},{"filename":"dm-shutdown.sh","parent":"/usr/lib/dracut/modules.d/90dm","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":465,"date":"Sep 12 2013"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/90dm","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1052,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/dracut/modules.d/90dmraid","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":93,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/90dmraid","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"61-dmraid-imsm.rules","parent":"/usr/lib/dracut/modules.d/90dmraid","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":986,"date":"Aug 8 2019"},{"filename":"dmraid.sh","parent":"/usr/lib/dracut/modules.d/90dmraid","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1411,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/90dmraid","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":2118,"date":"Aug 8 2019"},{"filename":"parse-dm.sh","parent":"/usr/lib/dracut/modules.d/90dmraid","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":935,"date":"Sep 12 2013"},{"filename":".","parent":"/usr/lib/dracut/modules.d/90dmsquash-live","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":258,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/90dmsquash-live","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"apply-live-updates.sh","parent":"/usr/lib/dracut/modules.d/90dmsquash-live","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":492,"date":"Sep 12 2013"},{"filename":"checkisomd5@.service","parent":"/usr/lib/dracut/modules.d/90dmsquash-live","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":268,"date":"Aug 8 2019"},{"filename":"dmsquash-live-genrules.sh","parent":"/usr/lib/dracut/modules.d/90dmsquash-live","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":718,"date":"Aug 8 2019"},{"filename":"dmsquash-liveiso-genrules.sh","parent":"/usr/lib/dracut/modules.d/90dmsquash-live","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":398,"date":"Aug 8 2019"},{"filename":"dmsquash-live-root.sh","parent":"/usr/lib/dracut/modules.d/90dmsquash-live","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":10480,"date":"Aug 8 2019"},{"filename":"iso-scan.sh","parent":"/usr/lib/dracut/modules.d/90dmsquash-live","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":901,"date":"Sep 12 2013"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/90dmsquash-live","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1197,"date":"Aug 8 2019"},{"filename":"parse-dmsquash-live.sh","parent":"/usr/lib/dracut/modules.d/90dmsquash-live","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1690,"date":"Aug 8 2019"},{"filename":"parse-iso-scan.sh","parent":"/usr/lib/dracut/modules.d/90dmsquash-live","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":309,"date":"Sep 12 2013"},{"filename":".","parent":"/usr/lib/dracut/modules.d/90dmsquash-live-ntfs","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":29,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/90dmsquash-live-ntfs","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/90dmsquash-live-ntfs","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":300,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/dracut/modules.d/90kernel-modules","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":73,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/90kernel-modules","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"insmodpost.sh","parent":"/usr/lib/dracut/modules.d/90kernel-modules","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":303,"date":"Sep 12 2013"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/90kernel-modules","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":3755,"date":"Aug 8 2019"},{"filename":"parse-kernel.sh","parent":"/usr/lib/dracut/modules.d/90kernel-modules","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1031,"date":"Sep 12 2013"},{"filename":".","parent":"/usr/lib/dracut/modules.d/90livenet","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":102,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/90livenet","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"fetch-liveupdate.sh","parent":"/usr/lib/dracut/modules.d/90livenet","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":857,"date":"Sep 12 2013"},{"filename":"livenetroot.sh","parent":"/usr/lib/dracut/modules.d/90livenet","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":672,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/90livenet","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":364,"date":"Sep 12 2013"},{"filename":"parse-livenet.sh","parent":"/usr/lib/dracut/modules.d/90livenet","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":974,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/dracut/modules.d/90lvm","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":88,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/90lvm","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"64-lvm.rules","parent":"/usr/lib/dracut/modules.d/90lvm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":776,"date":"Sep 12 2013"},{"filename":"lvm_scan.sh","parent":"/usr/lib/dracut/modules.d/90lvm","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":3670,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/90lvm","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":4874,"date":"Aug 8 2019"},{"filename":"parse-lvm.sh","parent":"/usr/lib/dracut/modules.d/90lvm","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":596,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/dracut/modules.d/90mdraid","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/90mdraid","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"59-persistent-storage-md.rules","parent":"/usr/lib/dracut/modules.d/90mdraid","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":843,"date":"Aug 8 2019"},{"filename":"65-md-incremental-imsm.rules","parent":"/usr/lib/dracut/modules.d/90mdraid","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1476,"date":"Sep 12 2013"},{"filename":"mdmon-pre-shutdown.sh","parent":"/usr/lib/dracut/modules.d/90mdraid","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":338,"date":"Sep 12 2013"},{"filename":"mdmon-pre-udev.sh","parent":"/usr/lib/dracut/modules.d/90mdraid","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":240,"date":"Sep 12 2013"},{"filename":"md-noddf.sh","parent":"/usr/lib/dracut/modules.d/90mdraid","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":197,"date":"Sep 12 2013"},{"filename":"md-noimsm.sh","parent":"/usr/lib/dracut/modules.d/90mdraid","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":199,"date":"Sep 12 2013"},{"filename":"mdraid-cleanup.sh","parent":"/usr/lib/dracut/modules.d/90mdraid","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":708,"date":"Sep 12 2013"},{"filename":"mdraid-needshutdown.sh","parent":"/usr/lib/dracut/modules.d/90mdraid","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":265,"date":"Sep 12 2013"},{"filename":"mdraid_start.sh","parent":"/usr/lib/dracut/modules.d/90mdraid","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1951,"date":"Aug 8 2019"},{"filename":"mdraid-waitclean.sh","parent":"/usr/lib/dracut/modules.d/90mdraid","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":910,"date":"Sep 12 2013"},{"filename":"md-shutdown.sh","parent":"/usr/lib/dracut/modules.d/90mdraid","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":672,"date":"Sep 12 2013"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/90mdraid","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":4088,"date":"Aug 8 2019"},{"filename":"parse-md.sh","parent":"/usr/lib/dracut/modules.d/90mdraid","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":2175,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/dracut/modules.d/90multipath","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":110,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/90multipath","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/90multipath","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":3792,"date":"Aug 8 2019"},{"filename":"multipathd-needshutdown.sh","parent":"/usr/lib/dracut/modules.d/90multipath","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":214,"date":"Sep 12 2013"},{"filename":"multipathd.sh","parent":"/usr/lib/dracut/modules.d/90multipath","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":301,"date":"Sep 12 2013"},{"filename":"multipathd-stop.sh","parent":"/usr/lib/dracut/modules.d/90multipath","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":347,"date":"Sep 12 2013"},{"filename":".","parent":"/usr/lib/dracut/modules.d/90qemu","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":29,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/90qemu","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/90qemu","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":931,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/dracut/modules.d/90qemu-net","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":29,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/90qemu-net","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/90qemu-net","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":747,"date":"Sep 12 2013"},{"filename":".","parent":"/usr/lib/dracut/modules.d/91crypt-gpg","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":53,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/91crypt-gpg","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"crypt-gpg-lib.sh","parent":"/usr/lib/dracut/modules.d/91crypt-gpg","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1076,"date":"Sep 12 2013"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/91crypt-gpg","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":348,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/dracut/modules.d/91crypt-loop","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":54,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/91crypt-loop","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"crypt-loop-lib.sh","parent":"/usr/lib/dracut/modules.d/91crypt-loop","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1615,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/91crypt-loop","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":416,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/dracut/modules.d/95cifs","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":92,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/95cifs","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"cifs-lib.sh","parent":"/usr/lib/dracut/modules.d/95cifs","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1079,"date":"Sep 12 2013"},{"filename":"cifsroot.sh","parent":"/usr/lib/dracut/modules.d/95cifs","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":719,"date":"Sep 12 2013"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/95cifs","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1178,"date":"Aug 8 2019"},{"filename":"parse-cifsroot.sh","parent":"/usr/lib/dracut/modules.d/95cifs","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1292,"date":"Sep 12 2013"},{"filename":".","parent":"/usr/lib/dracut/modules.d/95dasd","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":50,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/95dasd","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/95dasd","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":645,"date":"Aug 8 2019"},{"filename":"parse-dasd.sh","parent":"/usr/lib/dracut/modules.d/95dasd","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":293,"date":"Sep 12 2013"},{"filename":".","parent":"/usr/lib/dracut/modules.d/95dasd_mod","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":54,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/95dasd_mod","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/95dasd_mod","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":497,"date":"Aug 8 2019"},{"filename":"parse-dasd-mod.sh","parent":"/usr/lib/dracut/modules.d/95dasd_mod","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":459,"date":"Sep 12 2013"},{"filename":".","parent":"/usr/lib/dracut/modules.d/95debug","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":29,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/95debug","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/95debug","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":421,"date":"Sep 12 2013"},{"filename":".","parent":"/usr/lib/dracut/modules.d/95fcoe","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":151,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/95fcoe","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"cleanup-fcoe.sh","parent":"/usr/lib/dracut/modules.d/95fcoe","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":363,"date":"Aug 8 2019"},{"filename":"fcoe-edd.sh","parent":"/usr/lib/dracut/modules.d/95fcoe","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1273,"date":"Aug 8 2019"},{"filename":"fcoe-genrules.sh","parent":"/usr/lib/dracut/modules.d/95fcoe","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":817,"date":"Aug 8 2019"},{"filename":"fcoe-up.sh","parent":"/usr/lib/dracut/modules.d/95fcoe","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":2356,"date":"Aug 8 2019"},{"filename":"lldpad.sh","parent":"/usr/lib/dracut/modules.d/95fcoe","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":363,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/95fcoe","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":3006,"date":"Aug 8 2019"},{"filename":"parse-fcoe.sh","parent":"/usr/lib/dracut/modules.d/95fcoe","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1799,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/dracut/modules.d/95fcoe-uefi","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":54,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/95fcoe-uefi","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/95fcoe-uefi","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":733,"date":"Aug 8 2019"},{"filename":"parse-uefifcoe.sh","parent":"/usr/lib/dracut/modules.d/95fcoe-uefi","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1032,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/dracut/modules.d/95fstab-sys","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":49,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/95fstab-sys","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/95fstab-sys","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":358,"date":"Sep 12 2013"},{"filename":"mount-sys.sh","parent":"/usr/lib/dracut/modules.d/95fstab-sys","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1377,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/dracut/modules.d/95iscsi","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":119,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/95iscsi","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"cleanup-iscsi.sh","parent":"/usr/lib/dracut/modules.d/95iscsi","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":198,"date":"Aug 8 2019"},{"filename":"iscsiroot.sh","parent":"/usr/lib/dracut/modules.d/95iscsi","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":10057,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/95iscsi","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":5614,"date":"Aug 8 2019"},{"filename":"mount-lun.sh","parent":"/usr/lib/dracut/modules.d/95iscsi","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":442,"date":"Sep 12 2013"},{"filename":"parse-iscsiroot.sh","parent":"/usr/lib/dracut/modules.d/95iscsi","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":5318,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/dracut/modules.d/95nbd","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":71,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/95nbd","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/95nbd","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":896,"date":"Aug 8 2019"},{"filename":"nbdroot.sh","parent":"/usr/lib/dracut/modules.d/95nbd","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":3114,"date":"Aug 8 2019"},{"filename":"parse-nbdroot.sh","parent":"/usr/lib/dracut/modules.d/95nbd","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1688,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/dracut/modules.d/95nfs","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":139,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/95nfs","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/95nfs","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":2624,"date":"Aug 8 2019"},{"filename":"nfs-lib.sh","parent":"/usr/lib/dracut/modules.d/95nfs","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":4757,"date":"Aug 8 2019"},{"filename":"nfsroot-cleanup.sh","parent":"/usr/lib/dracut/modules.d/95nfs","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":955,"date":"Sep 12 2013"},{"filename":"nfsroot.sh","parent":"/usr/lib/dracut/modules.d/95nfs","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":825,"date":"Aug 8 2019"},{"filename":"nfs-start-rpc.sh","parent":"/usr/lib/dracut/modules.d/95nfs","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":929,"date":"Sep 12 2013"},{"filename":"parse-nfsroot.sh","parent":"/usr/lib/dracut/modules.d/95nfs","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":3358,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/dracut/modules.d/95resume","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":69,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/95resume","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/95resume","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":993,"date":"Aug 8 2019"},{"filename":"parse-resume.sh","parent":"/usr/lib/dracut/modules.d/95resume","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":3302,"date":"Sep 12 2013"},{"filename":"resume.sh","parent":"/usr/lib/dracut/modules.d/95resume","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":670,"date":"Sep 12 2013"},{"filename":".","parent":"/usr/lib/dracut/modules.d/95rootfs-block","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":120,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/95rootfs-block","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"block-genrules.sh","parent":"/usr/lib/dracut/modules.d/95rootfs-block","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":579,"date":"Sep 12 2013"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/95rootfs-block","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1719,"date":"Aug 8 2019"},{"filename":"mount-root.sh","parent":"/usr/lib/dracut/modules.d/95rootfs-block","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":4514,"date":"Sep 12 2013"},{"filename":"parse-block.sh","parent":"/usr/lib/dracut/modules.d/95rootfs-block","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1034,"date":"Sep 12 2013"},{"filename":"rootfallback.sh","parent":"/usr/lib/dracut/modules.d/95rootfs-block","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1352,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/dracut/modules.d/95ssh-client","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":29,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/95ssh-client","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/95ssh-client","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1830,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/dracut/modules.d/95terminfo","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":29,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/95terminfo","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/95terminfo","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":643,"date":"Sep 12 2013"},{"filename":".","parent":"/usr/lib/dracut/modules.d/95udev-rules","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":122,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/95udev-rules","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"59-persistent-storage.rules","parent":"/usr/lib/dracut/modules.d/95udev-rules","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":276,"date":"Sep 12 2013"},{"filename":"61-persistent-storage.rules","parent":"/usr/lib/dracut/modules.d/95udev-rules","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1020,"date":"Sep 12 2013"},{"filename":"load-modules.sh","parent":"/usr/lib/dracut/modules.d/95udev-rules","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":188,"date":"Sep 12 2013"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/95udev-rules","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":3074,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/dracut/modules.d/95virtfs","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":102,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/95virtfs","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/95virtfs","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1181,"date":"Aug 8 2019"},{"filename":"mount-virtfs.sh","parent":"/usr/lib/dracut/modules.d/95virtfs","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1956,"date":"Sep 12 2013"},{"filename":"parse-virtfs.sh","parent":"/usr/lib/dracut/modules.d/95virtfs","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":229,"date":"Aug 8 2019"},{"filename":"virtfs-generator.sh","parent":"/usr/lib/dracut/modules.d/95virtfs","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":922,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/dracut/modules.d/95zfcp","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":50,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/95zfcp","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/95zfcp","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":681,"date":"Aug 8 2019"},{"filename":"parse-zfcp.sh","parent":"/usr/lib/dracut/modules.d/95zfcp","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":349,"date":"Sep 12 2013"},{"filename":".","parent":"/usr/lib/dracut/modules.d/95znet","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":49,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/95znet","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/95znet","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":555,"date":"Aug 8 2019"},{"filename":"parse-ccw.sh","parent":"/usr/lib/dracut/modules.d/95znet","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":259,"date":"Sep 12 2013"},{"filename":".","parent":"/usr/lib/dracut/modules.d/97biosdevname","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":57,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/97biosdevname","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/97biosdevname","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":340,"date":"Aug 8 2019"},{"filename":"parse-biosdevname.sh","parent":"/usr/lib/dracut/modules.d/97biosdevname","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":418,"date":"Sep 12 2013"},{"filename":".","parent":"/usr/lib/dracut/modules.d/98ecryptfs","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":68,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/98ecryptfs","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"ecryptfs-mount.sh","parent":"/usr/lib/dracut/modules.d/98ecryptfs","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":2852,"date":"Sep 12 2013"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/98ecryptfs","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":310,"date":"Sep 12 2013"},{"filename":"README","parent":"/usr/lib/dracut/modules.d/98ecryptfs","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2343,"date":"Sep 12 2013"},{"filename":".","parent":"/usr/lib/dracut/modules.d/98pollcdrom","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":49,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/98pollcdrom","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/98pollcdrom","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":252,"date":"Sep 12 2013"},{"filename":"pollcdrom.sh","parent":"/usr/lib/dracut/modules.d/98pollcdrom","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":745,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/dracut/modules.d/98selinux","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":58,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/98selinux","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/98selinux","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":282,"date":"Sep 12 2013"},{"filename":"selinux-loadpolicy.sh","parent":"/usr/lib/dracut/modules.d/98selinux","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":2336,"date":"Sep 12 2013"},{"filename":".","parent":"/usr/lib/dracut/modules.d/98syslog","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":191,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/98syslog","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/98syslog","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1238,"date":"Sep 12 2013"},{"filename":"parse-syslog-opts.sh","parent":"/usr/lib/dracut/modules.d/98syslog","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":755,"date":"Sep 12 2013"},{"filename":"README","parent":"/usr/lib/dracut/modules.d/98syslog","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":832,"date":"Sep 12 2013"},{"filename":"rsyslog.conf","parent":"/usr/lib/dracut/modules.d/98syslog","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":820,"date":"Sep 12 2013"},{"filename":"rsyslogd-start.sh","parent":"/usr/lib/dracut/modules.d/98syslog","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":856,"date":"Sep 12 2013"},{"filename":"rsyslogd-stop.sh","parent":"/usr/lib/dracut/modules.d/98syslog","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":342,"date":"Sep 12 2013"},{"filename":"syslog-cleanup.sh","parent":"/usr/lib/dracut/modules.d/98syslog","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":517,"date":"Sep 12 2013"},{"filename":"syslog-genrules.sh","parent":"/usr/lib/dracut/modules.d/98syslog","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1144,"date":"Sep 12 2013"},{"filename":".","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"dracut-cmdline-ask.service","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":978,"date":"Aug 8 2019"},{"filename":"dracut-cmdline-ask.sh","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":422,"date":"Aug 8 2019"},{"filename":"dracut-cmdline.service","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1160,"date":"Aug 8 2019"},{"filename":"dracut-cmdline.service.8","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1553,"date":"Sep 12 2013"},{"filename":"dracut-cmdline.service.8.asc","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":442,"date":"Sep 12 2013"},{"filename":"dracut-cmdline.sh","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":2714,"date":"Aug 8 2019"},{"filename":"dracut-emergency.service","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":974,"date":"Aug 8 2019"},{"filename":"dracut-emergency.sh","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1342,"date":"Aug 8 2019"},{"filename":"dracut-initqueue.service","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1399,"date":"Aug 8 2019"},{"filename":"dracut-initqueue.service.8","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1548,"date":"Sep 12 2013"},{"filename":"dracut-initqueue.service.8.asc","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":439,"date":"Sep 12 2013"},{"filename":"dracut-initqueue.sh","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":2223,"date":"Aug 8 2019"},{"filename":"dracut-mount.service","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1026,"date":"Aug 8 2019"},{"filename":"dracut-mount.service.8","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1529,"date":"Sep 12 2013"},{"filename":"dracut-mount.service.8.asc","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":416,"date":"Sep 12 2013"},{"filename":"dracut-mount.sh","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1170,"date":"Sep 12 2013"},{"filename":"dracut-pre-mount.service","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1058,"date":"Aug 8 2019"},{"filename":"dracut-pre-mount.service.8","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1544,"date":"Sep 12 2013"},{"filename":"dracut-pre-mount.service.8.asc","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":434,"date":"Sep 12 2013"},{"filename":"dracut-pre-mount.sh","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":622,"date":"Aug 8 2019"},{"filename":"dracut-pre-pivot.service","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1058,"date":"Aug 8 2019"},{"filename":"dracut-pre-pivot.service.8","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1539,"date":"Sep 12 2013"},{"filename":"dracut-pre-pivot.service.8.asc","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":429,"date":"Sep 12 2013"},{"filename":"dracut-pre-pivot.sh","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1175,"date":"Aug 8 2019"},{"filename":"dracut-pre-trigger.service","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1170,"date":"Aug 8 2019"},{"filename":"dracut-pre-trigger.service.8","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1548,"date":"Sep 12 2013"},{"filename":"dracut-pre-trigger.service.8.asc","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":440,"date":"Sep 12 2013"},{"filename":"dracut-pre-trigger.sh","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":588,"date":"Aug 8 2019"},{"filename":"dracut-pre-udev.service","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1202,"date":"Aug 8 2019"},{"filename":"dracut-pre-udev.service.8","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1535,"date":"Sep 12 2013"},{"filename":"dracut-pre-udev.service.8.asc","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":424,"date":"Sep 12 2013"},{"filename":"dracut-pre-udev.sh","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1523,"date":"Sep 12 2013"},{"filename":"dracut-shutdown.service","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":677,"date":"Aug 8 2019"},{"filename":"dracut-shutdown.service.8","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":3607,"date":"Sep 12 2013"},{"filename":"dracut-shutdown.service.8.asc","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1689,"date":"Sep 12 2013"},{"filename":"dracut-tmpfiles.conf","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":135,"date":"Aug 8 2019"},{"filename":"emergency.service","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":980,"date":"Aug 8 2019"},{"filename":"initrd.target","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":247,"date":"Sep 12 2013"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":10225,"date":"Aug 8 2019"},{"filename":"rescue.service","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":877,"date":"Sep 12 2013"},{"filename":"rootfs-generator.sh","parent":"/usr/lib/dracut/modules.d/98systemd","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":3746,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/dracut/modules.d/98usrmount","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":49,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/98usrmount","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/98usrmount","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":452,"date":"Aug 8 2019"},{"filename":"mount-usr.sh","parent":"/usr/lib/dracut/modules.d/98usrmount","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":3696,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/dracut/modules.d/99base","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":173,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/99base","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"dracut-lib.sh","parent":"/usr/lib/dracut/modules.d/99base","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":32861,"date":"Aug 8 2019"},{"filename":"initqueue.sh","parent":"/usr/lib/dracut/modules.d/99base","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1208,"date":"Aug 8 2019"},{"filename":"init.sh","parent":"/usr/lib/dracut/modules.d/99base","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":11467,"date":"Aug 8 2019"},{"filename":"loginit.sh","parent":"/usr/lib/dracut/modules.d/99base","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":584,"date":"Sep 12 2013"},{"filename":"memtrace-ko.sh","parent":"/usr/lib/dracut/modules.d/99base","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":6052,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/99base","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":3862,"date":"Aug 8 2019"},{"filename":"parse-root-opts.sh","parent":"/usr/lib/dracut/modules.d/99base","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":356,"date":"Sep 12 2013"},{"filename":"rdsosreport.sh","parent":"/usr/lib/dracut/modules.d/99base","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":942,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/dracut/modules.d/99fs-lib","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":46,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/99fs-lib","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"fs-lib.sh","parent":"/usr/lib/dracut/modules.d/99fs-lib","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":6347,"date":"Sep 12 2013"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/99fs-lib","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1674,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/dracut/modules.d/99img-lib","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":47,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/99img-lib","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"img-lib.sh","parent":"/usr/lib/dracut/modules.d/99img-lib","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":2182,"date":"Sep 12 2013"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/99img-lib","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":354,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/dracut/modules.d/99kdumpbase","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":227,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/99kdumpbase","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"kdump-capture.service","parent":"/usr/lib/dracut/modules.d/99kdumpbase","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":941,"date":"Aug 8 2019"},{"filename":"kdump-emergency.service","parent":"/usr/lib/dracut/modules.d/99kdumpbase","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":905,"date":"Aug 8 2019"},{"filename":"kdump-emergency.target","parent":"/usr/lib/dracut/modules.d/99kdumpbase","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":451,"date":"Aug 8 2019"},{"filename":"kdump-error-handler.service","parent":"/usr/lib/dracut/modules.d/99kdumpbase","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":993,"date":"Aug 8 2019"},{"filename":"kdump-error-handler.sh","parent":"/usr/lib/dracut/modules.d/99kdumpbase","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":145,"date":"Aug 8 2019"},{"filename":"kdump.sh","parent":"/usr/lib/dracut/modules.d/99kdumpbase","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":4764,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/99kdumpbase","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":25161,"date":"Aug 8 2019"},{"filename":"monitor_dd_progress","parent":"/usr/lib/dracut/modules.d/99kdumpbase","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":482,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/dracut/modules.d/99microcode_ctl-fw_dir_override","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":29,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/99microcode_ctl-fw_dir_override","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/99microcode_ctl-fw_dir_override","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":4218,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/dracut/modules.d/99shutdown","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":48,"date":"Oct 16 09:21"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/99shutdown","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/99shutdown","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":632,"date":"Aug 8 2019"},{"filename":"shutdown.sh","parent":"/usr/lib/dracut/modules.d/99shutdown","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":3117,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/dracut/modules.d/99uefi-lib","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":48,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/99uefi-lib","flags":"drwxr-xr-x.","links":65,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/99uefi-lib","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":239,"date":"Aug 8 2019"},{"filename":"uefi-lib.sh","parent":"/usr/lib/dracut/modules.d/99uefi-lib","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":4851,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firewalld","flags":"drwxr-xr-x.","links":7,"owner":"root","group":"root","size":81,"date":"Oct 16 09:23"},{"filename":"..","parent":"/usr/lib/firewalld","flags":"dr-xr-xr-x.","links":29,"owner":"root","group":"root","size":4096,"date":"Nov 16 14:29"},{"filename":"helpers","parent":"/usr/lib/firewalld","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":224,"date":"Oct 16 09:22"},{"filename":"icmptypes","parent":"/usr/lib/firewalld","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"ipsets","parent":"/usr/lib/firewalld","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":20,"date":"Oct 16 09:22"},{"filename":"services","parent":"/usr/lib/firewalld","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":8192,"date":"Oct 16 09:22"},{"filename":"zones","parent":"/usr/lib/firewalld","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":163,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firewalld/helpers","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":224,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firewalld/helpers","flags":"drwxr-xr-x.","links":7,"owner":"root","group":"root","size":81,"date":"Oct 16 09:23"},{"filename":"amanda.xml","parent":"/usr/lib/firewalld/helpers","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":125,"date":"Sep 13 11:02"},{"filename":"ftp.xml","parent":"/usr/lib/firewalld/helpers","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":119,"date":"Sep 13 11:02"},{"filename":"h323.xml","parent":"/usr/lib/firewalld/helpers","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":85,"date":"Sep 13 11:02"},{"filename":"irc.xml","parent":"/usr/lib/firewalld/helpers","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":134,"date":"Sep 13 11:02"},{"filename":"netbios-ns.xml","parent":"/usr/lib/firewalld/helpers","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":141,"date":"Sep 13 11:02"},{"filename":"pptp.xml","parent":"/usr/lib/firewalld/helpers","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":136,"date":"Sep 13 11:02"},{"filename":"proto-gre.xml","parent":"/usr/lib/firewalld/helpers","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":90,"date":"Sep 13 11:02"},{"filename":"Q.931.xml","parent":"/usr/lib/firewalld/helpers","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":122,"date":"Sep 13 11:02"},{"filename":"RAS.xml","parent":"/usr/lib/firewalld/helpers","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":122,"date":"Sep 13 11:02"},{"filename":"sane.xml","parent":"/usr/lib/firewalld/helpers","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":122,"date":"Sep 13 11:02"},{"filename":"sip.xml","parent":"/usr/lib/firewalld/helpers","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":158,"date":"Sep 13 11:02"},{"filename":"snmp.xml","parent":"/usr/lib/firewalld/helpers","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":135,"date":"Sep 13 11:02"},{"filename":"tftp.xml","parent":"/usr/lib/firewalld/helpers","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":120,"date":"Sep 13 11:02"},{"filename":".","parent":"/usr/lib/firewalld/icmptypes","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firewalld/icmptypes","flags":"drwxr-xr-x.","links":7,"owner":"root","group":"root","size":81,"date":"Oct 16 09:23"},{"filename":"address-unreachable.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":385,"date":"Sep 13 11:02"},{"filename":"bad-header.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":258,"date":"Sep 13 11:02"},{"filename":"beyond-scope.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":294,"date":"Sep 13 11:02"},{"filename":"communication-prohibited.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":279,"date":"Sep 13 11:02"},{"filename":"destination-unreachable.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":222,"date":"Sep 13 11:02"},{"filename":"echo-reply.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":173,"date":"Sep 13 11:02"},{"filename":"echo-request.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":210,"date":"Sep 13 11:02"},{"filename":"failed-policy.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":261,"date":"Sep 13 11:02"},{"filename":"fragmentation-needed.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":280,"date":"Sep 13 11:02"},{"filename":"host-precedence-violation.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":266,"date":"Sep 13 11:02"},{"filename":"host-prohibited.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":257,"date":"Sep 13 11:02"},{"filename":"host-redirect.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":242,"date":"Sep 13 11:02"},{"filename":"host-unknown.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":239,"date":"Sep 13 11:02"},{"filename":"host-unreachable.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":247,"date":"Sep 13 11:02"},{"filename":"ip-header-bad.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":229,"date":"Sep 13 11:02"},{"filename":"neighbour-advertisement.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":355,"date":"Sep 13 11:02"},{"filename":"neighbour-solicitation.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":457,"date":"Sep 13 11:02"},{"filename":"network-prohibited.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":250,"date":"Sep 13 11:02"},{"filename":"network-redirect.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":248,"date":"Sep 13 11:02"},{"filename":"network-unknown.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":239,"date":"Sep 13 11:02"},{"filename":"network-unreachable.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":247,"date":"Sep 13 11:02"},{"filename":"no-route.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":239,"date":"Sep 13 11:02"},{"filename":"packet-too-big.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":328,"date":"Sep 13 11:02"},{"filename":"parameter-problem.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":225,"date":"Sep 13 11:02"},{"filename":"port-unreachable.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":233,"date":"Sep 13 11:02"},{"filename":"precedence-cutoff.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":256,"date":"Sep 13 11:02"},{"filename":"protocol-unreachable.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":249,"date":"Sep 13 11:02"},{"filename":"redirect.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":185,"date":"Sep 13 11:02"},{"filename":"reject-route.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":244,"date":"Sep 13 11:02"},{"filename":"required-option-missing.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":241,"date":"Sep 13 11:02"},{"filename":"router-advertisement.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":227,"date":"Sep 13 11:02"},{"filename":"router-solicitation.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":223,"date":"Sep 13 11:02"},{"filename":"source-quench.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":248,"date":"Sep 13 11:02"},{"filename":"source-route-failed.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":236,"date":"Sep 13 11:02"},{"filename":"time-exceeded.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":253,"date":"Sep 13 11:02"},{"filename":"timestamp-reply.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":233,"date":"Sep 13 11:02"},{"filename":"timestamp-request.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":228,"date":"Sep 13 11:02"},{"filename":"tos-host-redirect.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":258,"date":"Sep 13 11:02"},{"filename":"tos-host-unreachable.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":257,"date":"Sep 13 11:02"},{"filename":"tos-network-redirect.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":272,"date":"Sep 13 11:02"},{"filename":"tos-network-unreachable.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":269,"date":"Sep 13 11:02"},{"filename":"ttl-zero-during-reassembly.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":293,"date":"Sep 13 11:02"},{"filename":"ttl-zero-during-transit.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":256,"date":"Sep 13 11:02"},{"filename":"unknown-header-type.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":259,"date":"Sep 13 11:02"},{"filename":"unknown-option.xml","parent":"/usr/lib/firewalld/icmptypes","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":249,"date":"Sep 13 11:02"},{"filename":".","parent":"/usr/lib/firewalld/ipsets","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":20,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firewalld/ipsets","flags":"drwxr-xr-x.","links":7,"owner":"root","group":"root","size":81,"date":"Oct 16 09:23"},{"filename":"README","parent":"/usr/lib/firewalld/ipsets","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":29,"date":"Sep 13 11:02"},{"filename":".","parent":"/usr/lib/firewalld/services","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":8192,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firewalld/services","flags":"drwxr-xr-x.","links":7,"owner":"root","group":"root","size":81,"date":"Oct 16 09:23"},{"filename":"amanda-client.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":412,"date":"Sep 13 11:02"},{"filename":"amanda-k5-client.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":447,"date":"Sep 13 11:02"},{"filename":"amqps.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":283,"date":"Sep 13 11:02"},{"filename":"amqp.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":273,"date":"Sep 13 11:02"},{"filename":"apcupsd.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":285,"date":"Sep 13 11:02"},{"filename":"audit.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":301,"date":"Sep 13 11:02"},{"filename":"bacula-client.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":320,"date":"Sep 13 11:02"},{"filename":"bacula.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":346,"date":"Sep 13 11:02"},{"filename":"bgp.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":339,"date":"Sep 13 11:02"},{"filename":"bitcoin-rpc.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":275,"date":"Sep 13 11:02"},{"filename":"bitcoin-testnet-rpc.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":307,"date":"Sep 13 11:02"},{"filename":"bitcoin-testnet.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":281,"date":"Sep 13 11:02"},{"filename":"bitcoin.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":244,"date":"Sep 13 11:02"},{"filename":"ceph-mon.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":294,"date":"Sep 13 11:02"},{"filename":"ceph.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":329,"date":"Sep 13 11:02"},{"filename":"cfengine.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":168,"date":"Sep 13 11:02"},{"filename":"condor-collector.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":260,"date":"Sep 13 11:02"},{"filename":"ctdb.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":296,"date":"Sep 13 11:02"},{"filename":"dhcpv6-client.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":305,"date":"Sep 13 11:02"},{"filename":"dhcpv6.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":234,"date":"Sep 13 11:02"},{"filename":"dhcp.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":227,"date":"Sep 13 11:02"},{"filename":"distcc.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":205,"date":"Sep 13 11:02"},{"filename":"dns.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":346,"date":"Sep 13 11:02"},{"filename":"docker-registry.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":374,"date":"Sep 13 11:02"},{"filename":"docker-swarm.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":391,"date":"Sep 13 11:02"},{"filename":"dropbox-lansync.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":228,"date":"Sep 13 11:02"},{"filename":"elasticsearch.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":338,"date":"Sep 13 11:02"},{"filename":"etcd-client.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":304,"date":"Sep 13 11:02"},{"filename":"etcd-server.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":304,"date":"Sep 13 11:02"},{"filename":"finger.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":224,"date":"Sep 13 11:02"},{"filename":"freeipa-ldaps.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":836,"date":"Sep 13 11:02"},{"filename":"freeipa-ldap.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":836,"date":"Sep 13 11:02"},{"filename":"freeipa-replication.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":315,"date":"Sep 13 11:02"},{"filename":"freeipa-trust.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":629,"date":"Sep 13 11:02"},{"filename":"ftp.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":374,"date":"Sep 13 11:02"},{"filename":"ganglia-client.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":184,"date":"Sep 13 11:02"},{"filename":"ganglia-master.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":176,"date":"Sep 13 11:02"},{"filename":"git.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":212,"date":"Sep 13 11:02"},{"filename":"gre.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":132,"date":"Sep 13 11:02"},{"filename":"high-availability.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":608,"date":"Sep 13 11:02"},{"filename":"https.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":448,"date":"Sep 13 11:02"},{"filename":"http.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":353,"date":"Sep 13 11:02"},{"filename":"imaps.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":372,"date":"Sep 13 11:02"},{"filename":"imap.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":327,"date":"Sep 13 11:02"},{"filename":"ipp-client.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":454,"date":"Sep 13 11:02"},{"filename":"ipp.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":427,"date":"Sep 13 11:02"},{"filename":"ipsec.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":554,"date":"Sep 13 11:02"},{"filename":"ircs.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":255,"date":"Sep 13 11:02"},{"filename":"irc.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":247,"date":"Sep 13 11:02"},{"filename":"iscsi-target.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":264,"date":"Sep 13 11:02"},{"filename":"isns.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":358,"date":"Sep 13 11:02"},{"filename":"jenkins.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":213,"date":"Sep 13 11:02"},{"filename":"kadmin.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":182,"date":"Sep 13 11:02"},{"filename":"kerberos.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":233,"date":"Sep 13 11:02"},{"filename":"kibana.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":384,"date":"Sep 13 11:02"},{"filename":"klogin.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":249,"date":"Sep 13 11:02"},{"filename":"kpasswd.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":221,"date":"Sep 13 11:02"},{"filename":"kprop.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":182,"date":"Sep 13 11:02"},{"filename":"kshell.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":242,"date":"Sep 13 11:02"},{"filename":"ldaps.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":232,"date":"Sep 13 11:02"},{"filename":"ldap.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":199,"date":"Sep 13 11:02"},{"filename":"libvirt-tls.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":385,"date":"Sep 13 11:02"},{"filename":"libvirt.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":389,"date":"Sep 13 11:02"},{"filename":"lightning-network.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":269,"date":"Sep 13 11:02"},{"filename":"llmnr.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":324,"date":"Sep 13 11:02"},{"filename":"managesieve.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":349,"date":"Sep 13 11:02"},{"filename":"matrix.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":439,"date":"Sep 13 11:02"},{"filename":"mdns.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":424,"date":"Sep 13 11:02"},{"filename":"minidlna.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":343,"date":"Sep 13 11:02"},{"filename":"mongodb.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":237,"date":"Sep 13 11:02"},{"filename":"mosh.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":473,"date":"Sep 13 11:02"},{"filename":"mountd.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":211,"date":"Sep 13 11:02"},{"filename":"mqtt-tls.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":296,"date":"Sep 13 11:02"},{"filename":"mqtt.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":287,"date":"Sep 13 11:02"},{"filename":"mssql.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":170,"date":"Sep 13 11:02"},{"filename":"ms-wbt.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":190,"date":"Sep 13 11:02"},{"filename":"murmur.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":242,"date":"Sep 13 11:02"},{"filename":"mysql.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":171,"date":"Sep 13 11:02"},{"filename":"nfs3.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":342,"date":"Sep 13 11:02"},{"filename":"nfs.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":324,"date":"Sep 13 11:02"},{"filename":"nmea-0183.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":293,"date":"Sep 13 11:02"},{"filename":"nrpe.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":247,"date":"Sep 13 11:02"},{"filename":"ntp.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":389,"date":"Sep 13 11:02"},{"filename":"nut.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":368,"date":"Sep 13 11:02"},{"filename":"openvpn.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":335,"date":"Sep 13 11:02"},{"filename":"ovirt-imageio.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":260,"date":"Sep 13 11:02"},{"filename":"ovirt-storageconsole.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":343,"date":"Sep 13 11:02"},{"filename":"ovirt-vmconsole.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":235,"date":"Sep 13 11:02"},{"filename":"plex.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":487,"date":"Sep 13 11:02"},{"filename":"pmcd.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":433,"date":"Sep 13 11:02"},{"filename":"pmproxy.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":474,"date":"Sep 13 11:02"},{"filename":"pmwebapis.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":544,"date":"Sep 13 11:02"},{"filename":"pmwebapi.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":460,"date":"Sep 13 11:02"},{"filename":"pop3s.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":357,"date":"Sep 13 11:02"},{"filename":"pop3.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":348,"date":"Sep 13 11:02"},{"filename":"postgresql.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":181,"date":"Sep 13 11:02"},{"filename":"privoxy.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":509,"date":"Sep 13 11:02"},{"filename":"proxy-dhcp.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":261,"date":"Sep 13 11:02"},{"filename":"ptp.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":424,"date":"Sep 13 11:02"},{"filename":"pulseaudio.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":414,"date":"Sep 13 11:02"},{"filename":"puppetmaster.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":297,"date":"Sep 13 11:02"},{"filename":"quassel.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":273,"date":"Sep 13 11:02"},{"filename":"radius.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":520,"date":"Sep 13 11:02"},{"filename":"redis.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":268,"date":"Sep 13 11:02"},{"filename":"RH-Satellite-6.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":741,"date":"Sep 13 11:02"},{"filename":"rpc-bind.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":214,"date":"Sep 13 11:02"},{"filename":"rsh.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":310,"date":"Sep 13 11:02"},{"filename":"rsyncd.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":311,"date":"Sep 13 11:02"},{"filename":"rtsp.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":350,"date":"Sep 13 11:02"},{"filename":"salt-master.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":329,"date":"Sep 13 11:02"},{"filename":"samba-client.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":384,"date":"Sep 13 11:02"},{"filename":"samba-dc.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1311,"date":"Sep 13 11:02"},{"filename":"samba.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":461,"date":"Sep 13 11:02"},{"filename":"sane.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":337,"date":"Sep 13 11:02"},{"filename":"sips.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":283,"date":"Sep 13 11:02"},{"filename":"sip.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":509,"date":"Sep 13 11:02"},{"filename":"slp.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":299,"date":"Sep 13 11:02"},{"filename":"smtp-submission.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":231,"date":"Sep 13 11:02"},{"filename":"smtps.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":577,"date":"Sep 13 11:02"},{"filename":"smtp.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":550,"date":"Sep 13 11:02"},{"filename":"snmptrap.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":308,"date":"Sep 13 11:02"},{"filename":"snmp.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":342,"date":"Sep 13 11:02"},{"filename":"spideroak-lansync.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":405,"date":"Sep 13 11:02"},{"filename":"squid.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":173,"date":"Sep 13 11:02"},{"filename":"ssh.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":463,"date":"Sep 13 11:02"},{"filename":"steam-streaming.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":631,"date":"Sep 13 11:02"},{"filename":"svdrp.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":287,"date":"Sep 13 11:02"},{"filename":"svn.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":231,"date":"Sep 13 11:02"},{"filename":"syncthing-gui.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":297,"date":"Sep 13 11:02"},{"filename":"syncthing.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":311,"date":"Sep 13 11:02"},{"filename":"synergy.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":496,"date":"Sep 13 11:02"},{"filename":"syslog-tls.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":444,"date":"Sep 13 11:02"},{"filename":"syslog.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":329,"date":"Sep 13 11:02"},{"filename":"telnet.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":393,"date":"Sep 13 11:02"},{"filename":"tftp-client.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":301,"date":"Sep 13 11:02"},{"filename":"tftp.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":437,"date":"Sep 13 11:02"},{"filename":"tinc.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":336,"date":"Sep 13 11:02"},{"filename":"tor-socks.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":771,"date":"Sep 13 11:02"},{"filename":"transmission-client.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":244,"date":"Sep 13 11:02"},{"filename":"upnp-client.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":264,"date":"Sep 13 11:02"},{"filename":"vdsm.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":593,"date":"Sep 13 11:02"},{"filename":"vnc-server.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":475,"date":"Sep 13 11:02"},{"filename":"wbem-https.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":310,"date":"Sep 13 11:02"},{"filename":"wbem-http.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":352,"date":"Sep 13 11:02"},{"filename":"wsmans.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":323,"date":"Sep 13 11:02"},{"filename":"wsman.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":316,"date":"Sep 13 11:02"},{"filename":"xdmcp.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":329,"date":"Sep 13 11:02"},{"filename":"xmpp-bosh.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":509,"date":"Sep 13 11:02"},{"filename":"xmpp-client.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":488,"date":"Sep 13 11:02"},{"filename":"xmpp-local.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":264,"date":"Sep 13 11:02"},{"filename":"xmpp-server.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":545,"date":"Sep 13 11:02"},{"filename":"zabbix-agent.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":314,"date":"Sep 13 11:02"},{"filename":"zabbix-server.xml","parent":"/usr/lib/firewalld/services","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":315,"date":"Sep 13 11:02"},{"filename":".","parent":"/usr/lib/firewalld/zones","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":163,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firewalld/zones","flags":"drwxr-xr-x.","links":7,"owner":"root","group":"root","size":81,"date":"Oct 16 09:23"},{"filename":"block.xml","parent":"/usr/lib/firewalld/zones","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":299,"date":"Sep 13 11:02"},{"filename":"dmz.xml","parent":"/usr/lib/firewalld/zones","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":293,"date":"Sep 13 11:02"},{"filename":"drop.xml","parent":"/usr/lib/firewalld/zones","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":291,"date":"Sep 13 11:02"},{"filename":"external.xml","parent":"/usr/lib/firewalld/zones","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":304,"date":"Sep 13 11:02"},{"filename":"home.xml","parent":"/usr/lib/firewalld/zones","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":369,"date":"Sep 13 11:02"},{"filename":"internal.xml","parent":"/usr/lib/firewalld/zones","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":384,"date":"Sep 13 11:02"},{"filename":"public.xml","parent":"/usr/lib/firewalld/zones","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":315,"date":"Sep 13 11:02"},{"filename":"trusted.xml","parent":"/usr/lib/firewalld/zones","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":162,"date":"Sep 13 11:02"},{"filename":"work.xml","parent":"/usr/lib/firewalld/zones","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":311,"date":"Sep 13 11:02"},{"filename":".","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"..","parent":"/usr/lib/firmware","flags":"dr-xr-xr-x.","links":29,"owner":"root","group":"root","size":4096,"date":"Nov 16 14:29"},{"filename":"3.10.0-1062.1.2.el7.x86_64","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":45,"date":"Oct 16 09:22"},{"filename":"3.10.0-957.27.2.el7.x86_64","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":45,"date":"Oct 16 09:22"},{"filename":"3.10.0-957.el7.x86_64","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":45,"date":"Oct 16 09:22"},{"filename":"3com","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":42,"date":"Oct 16 09:22"},{"filename":"a300_pfp.fw","link_to":"qcom/a300_pfp.fw","parent":"/usr/lib/firmware","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":16,"date":"Oct 16 09:22"},{"filename":"a300_pm4.fw","link_to":"qcom/a300_pm4.fw","parent":"/usr/lib/firmware","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":16,"date":"Oct 16 09:22"},{"filename":"acenic","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":36,"date":"Oct 16 09:22"},{"filename":"adaptec","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":52,"date":"Oct 16 09:22"},{"filename":"advansys","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":77,"date":"Oct 16 09:22"},{"filename":"agere_ap_fw.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":50698,"date":"Aug 8 2019"},{"filename":"agere_sta_fw.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":65046,"date":"Aug 8 2019"},{"filename":"aic94xx-seq.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":22622,"date":"Jun 9 2014"},{"filename":"aica_firmware.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":3408,"date":"Mar 5 2015"},{"filename":"amd","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":42,"date":"Oct 16 09:22"},{"filename":"amdgpu","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:22"},{"filename":"amd-ucode","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":264,"date":"Oct 16 09:22"},{"filename":"ar3k","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":8,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"ar5523.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":153416,"date":"Aug 8 2019"},{"filename":"ar7010_1_1.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":70624,"date":"Aug 8 2019"},{"filename":"ar7010.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":70624,"date":"Aug 8 2019"},{"filename":"ar9170-1.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":83968,"date":"Aug 8 2019"},{"filename":"ar9170-2.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":3508,"date":"Aug 8 2019"},{"filename":"ar9271.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":51312,"date":"Aug 8 2019"},{"filename":"as102_data1_st.hex","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":95500,"date":"Aug 8 2019"},{"filename":"as102_data2_st.hex","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":81820,"date":"Aug 8 2019"},{"filename":"asihpi","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":158,"date":"Aug 15 2019"},{"filename":"ath10k","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":10,"owner":"root","group":"root","size":126,"date":"Aug 8 2019"},{"filename":"ath3k-1.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":246804,"date":"Aug 8 2019"},{"filename":"ath9k_htc","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":56,"date":"Oct 16 09:22"},{"filename":"atmel","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":116,"date":"Oct 16 09:22"},{"filename":"atmsar11.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":9726,"date":"Aug 8 2019"},{"filename":"atusb","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":86,"date":"Oct 16 09:22"},{"filename":"av7110","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":56,"date":"Oct 16 09:22"},{"filename":"bnx2","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"bnx2x","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"bnx2x-e1-4.8.53.0.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":165768,"date":"Aug 8 2019"},{"filename":"bnx2x-e1-5.2.13.0.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":163000,"date":"Aug 8 2019"},{"filename":"bnx2x-e1-5.2.7.0.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":162800,"date":"Aug 8 2019"},{"filename":"bnx2x-e1h-4.8.53.0.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":192400,"date":"Aug 8 2019"},{"filename":"bnx2x-e1h-5.2.13.0.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":205512,"date":"Aug 8 2019"},{"filename":"bnx2x-e1h-5.2.7.0.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":205488,"date":"Aug 8 2019"},{"filename":"brcm","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"cadence","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":26,"date":"Oct 16 09:22"},{"filename":"carl9170-1.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":13388,"date":"Aug 8 2019"},{"filename":"cavium","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":27,"date":"Oct 16 09:22"},{"filename":"cbfw-3.2.1.1.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":412528,"date":"Aug 8 2019"},{"filename":"cbfw-3.2.3.0.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":414016,"date":"Aug 8 2019"},{"filename":"cbfw-3.2.5.1.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":414480,"date":"Aug 8 2019"},{"filename":"cis","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"cmmb_vega_12mhz.inp","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":62780,"date":"Aug 8 2019"},{"filename":"cmmb_venice_12mhz.inp","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":97016,"date":"Aug 8 2019"},{"filename":"configure","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":107,"date":"Aug 8 2019"},{"filename":"cpia2","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":29,"date":"Oct 16 09:22"},{"filename":"cs46xx","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":96,"date":"Aug 15 2019"},{"filename":"ct2fw-3.2.1.1.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":582440,"date":"Aug 8 2019"},{"filename":"ct2fw-3.2.3.0.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":583688,"date":"Aug 8 2019"},{"filename":"ct2fw-3.2.5.1.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":584216,"date":"Aug 8 2019"},{"filename":"ctefx.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":655436,"date":"Aug 8 2019"},{"filename":"ctfw-3.2.1.1.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":537160,"date":"Aug 8 2019"},{"filename":"ctfw-3.2.3.0.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":538712,"date":"Aug 8 2019"},{"filename":"ctfw-3.2.5.1.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":539144,"date":"Aug 8 2019"},{"filename":"ctspeq.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4120,"date":"Aug 8 2019"},{"filename":"cxgb3","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":253,"date":"Oct 16 09:22"},{"filename":"cxgb4","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":271,"date":"Oct 16 09:23"},{"filename":"dabusb","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":46,"date":"Oct 16 09:22"},{"filename":"digiface_firmware.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":97652,"date":"Mar 5 2015"},{"filename":"digiface_firmware_rev11.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":97652,"date":"Mar 5 2015"},{"filename":"dpaa2","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":16,"date":"Oct 16 09:22"},{"filename":"dsp56k","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"dvb-fe-xc4000-1.4.1.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":18643,"date":"Aug 8 2019"},{"filename":"dvb-fe-xc5000-1.6.114.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":12401,"date":"Aug 8 2019"},{"filename":"dvb-fe-xc5000c-4.1.30.7.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":16497,"date":"Aug 8 2019"},{"filename":"dvb_nova_12mhz_b0.inp","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":101888,"date":"Aug 8 2019"},{"filename":"dvb_nova_12mhz.inp","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":93516,"date":"Aug 8 2019"},{"filename":"dvb-usb-dib0700-1.20.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":33768,"date":"Aug 8 2019"},{"filename":"dvb-usb-it9135-01.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8128,"date":"Aug 8 2019"},{"filename":"dvb-usb-it9135-02.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":5834,"date":"Aug 8 2019"},{"filename":"dvb-usb-terratec-h5-drxk.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":50222,"date":"Aug 8 2019"},{"filename":"e100","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":75,"date":"Oct 16 09:22"},{"filename":"ea","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 15 2019"},{"filename":"edgeport","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":85,"date":"Oct 16 09:22"},{"filename":"emi26","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":62,"date":"Oct 16 09:22"},{"filename":"emi62","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":74,"date":"Oct 16 09:22"},{"filename":"emu","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":127,"date":"Aug 15 2019"},{"filename":"ene-ub6250","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":123,"date":"Oct 16 09:22"},{"filename":"ess","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":69,"date":"Aug 15 2019"},{"filename":"f2255usb.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":181312,"date":"Aug 8 2019"},{"filename":"go7007","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":160,"date":"Oct 16 09:22"},{"filename":"GPL-2","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":18092,"date":"Aug 8 2019"},{"filename":"GPL-3","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":35068,"date":"Aug 8 2019"},{"filename":"hfi1_dc8051.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":32348,"date":"Aug 8 2019"},{"filename":"hfi1_fabric.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":16848,"date":"Aug 8 2019"},{"filename":"hfi1_pcie.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":33296,"date":"Aug 8 2019"},{"filename":"hfi1_sbus.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":5360,"date":"Aug 8 2019"},{"filename":"htc_7010.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":72684,"date":"Aug 8 2019"},{"filename":"htc_9271.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":50980,"date":"Aug 8 2019"},{"filename":"i915","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"imx","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":18,"date":"Aug 8 2019"},{"filename":"intel","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":8192,"date":"Oct 16 09:22"},{"filename":"intelliport2.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":34304,"date":"Aug 8 2019"},{"filename":"isci","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":119,"date":"Oct 16 09:22"},{"filename":"isdbt_nova_12mhz_b0.inp","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":98384,"date":"Aug 8 2019"},{"filename":"isdbt_nova_12mhz.inp","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":75876,"date":"Aug 8 2019"},{"filename":"isdbt_rio.inp","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":85840,"date":"Aug 8 2019"},{"filename":"ivtv-firmware-license-end-user.txt","parent":"/usr/lib/firmware","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":6639,"date":"Feb 18 2007"},{"filename":"ivtv-firmware-license-oemihvisv.txt","parent":"/usr/lib/firmware","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":8292,"date":"Feb 18 2007"},{"filename":"iwlwifi-1000-3.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":335056,"date":"Aug 8 2019"},{"filename":"iwlwifi-1000-5.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":337520,"date":"Aug 8 2019"},{"filename":"iwlwifi-100-5.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":337572,"date":"Aug 8 2019"},{"filename":"iwlwifi-105-6.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":689680,"date":"Aug 8 2019"},{"filename":"iwlwifi-135-6.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":701228,"date":"Aug 8 2019"},{"filename":"iwlwifi-2000-6.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":695876,"date":"Aug 8 2019"},{"filename":"iwlwifi-2030-6.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":707392,"date":"Aug 8 2019"},{"filename":"iwlwifi-3160-10.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":609892,"date":"Aug 8 2019"},{"filename":"iwlwifi-3160-12.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":683996,"date":"Aug 8 2019"},{"filename":"iwlwifi-3160-13.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":688616,"date":"Aug 8 2019"},{"filename":"iwlwifi-3160-16.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":918212,"date":"Aug 8 2019"},{"filename":"iwlwifi-3160-17.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":918268,"date":"Aug 8 2019"},{"filename":"iwlwifi-3160-7.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":670484,"date":"Aug 8 2019"},{"filename":"iwlwifi-3160-8.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":667284,"date":"Aug 8 2019"},{"filename":"iwlwifi-3160-9.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":669872,"date":"Aug 8 2019"},{"filename":"iwlwifi-3168-21.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1384856,"date":"Aug 8 2019"},{"filename":"iwlwifi-3168-22.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1028092,"date":"Aug 8 2019"},{"filename":"iwlwifi-3168-27.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1032436,"date":"Aug 8 2019"},{"filename":"iwlwifi-3168-29.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1036276,"date":"Aug 8 2019"},{"filename":"iwlwifi-3945-2.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":150100,"date":"Aug 8 2019"},{"filename":"iwlwifi-4965-2.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":187972,"date":"Aug 8 2019"},{"filename":"iwlwifi-5000-1.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":345008,"date":"Aug 8 2019"},{"filename":"iwlwifi-5000-2.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":353240,"date":"Aug 8 2019"},{"filename":"iwlwifi-5000-5.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":340696,"date":"Aug 8 2019"},{"filename":"iwlwifi-5150-2.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":337400,"date":"Aug 8 2019"},{"filename":"iwlwifi-6000-4.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":454608,"date":"Aug 8 2019"},{"filename":"iwlwifi-6000g2a-5.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":444128,"date":"Aug 8 2019"},{"filename":"iwlwifi-6000g2a-6.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":677296,"date":"Aug 8 2019"},{"filename":"iwlwifi-6000g2b-5.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":460236,"date":"Aug 8 2019"},{"filename":"iwlwifi-6000g2b-6.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":679436,"date":"Aug 8 2019"},{"filename":"iwlwifi-6050-4.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":463692,"date":"Aug 8 2019"},{"filename":"iwlwifi-6050-5.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":469780,"date":"Aug 8 2019"},{"filename":"iwlwifi-7260-10.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":672352,"date":"Aug 8 2019"},{"filename":"iwlwifi-7260-12.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":782300,"date":"Aug 8 2019"},{"filename":"iwlwifi-7260-13.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":786920,"date":"Aug 8 2019"},{"filename":"iwlwifi-7260-16.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1049284,"date":"Aug 8 2019"},{"filename":"iwlwifi-7260-17.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1049340,"date":"Aug 8 2019"},{"filename":"iwlwifi-7260-7.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":683236,"date":"Aug 8 2019"},{"filename":"iwlwifi-7260-8.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":679780,"date":"Aug 8 2019"},{"filename":"iwlwifi-7260-9.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":680508,"date":"Aug 8 2019"},{"filename":"iwlwifi-7265-10.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":736844,"date":"Aug 8 2019"},{"filename":"iwlwifi-7265-12.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":880604,"date":"Aug 8 2019"},{"filename":"iwlwifi-7265-13.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":885224,"date":"Aug 8 2019"},{"filename":"iwlwifi-7265-16.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1180356,"date":"Aug 8 2019"},{"filename":"iwlwifi-7265-17.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1180412,"date":"Aug 8 2019"},{"filename":"iwlwifi-7265-8.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":690452,"date":"Aug 8 2019"},{"filename":"iwlwifi-7265-9.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":697828,"date":"Aug 8 2019"},{"filename":"iwlwifi-7265D-10.ucode","link_to":"iwlwifi-7265-10.ucode","parent":"/usr/lib/firmware","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":21,"date":"Oct 16 09:23"},{"filename":"iwlwifi-7265D-12.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1002800,"date":"Aug 8 2019"},{"filename":"iwlwifi-7265D-13.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1008692,"date":"Aug 8 2019"},{"filename":"iwlwifi-7265D-16.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1384500,"date":"Aug 8 2019"},{"filename":"iwlwifi-7265D-17.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1383604,"date":"Aug 8 2019"},{"filename":"iwlwifi-7265D-21.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1385368,"date":"Aug 8 2019"},{"filename":"iwlwifi-7265D-22.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1028376,"date":"Aug 8 2019"},{"filename":"iwlwifi-7265D-27.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1032740,"date":"Aug 8 2019"},{"filename":"iwlwifi-7265D-29.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1036432,"date":"Aug 8 2019"},{"filename":"iwlwifi-8000C-13.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1745176,"date":"Aug 8 2019"},{"filename":"iwlwifi-8000C-16.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2351636,"date":"Aug 8 2019"},{"filename":"iwlwifi-8000C-21.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2394060,"date":"Aug 8 2019"},{"filename":"iwlwifi-8000C-22.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2120860,"date":"Aug 8 2019"},{"filename":"iwlwifi-8000C-27.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2227284,"date":"Aug 8 2019"},{"filename":"iwlwifi-8000C-31.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2310116,"date":"Aug 8 2019"},{"filename":"iwlwifi-8000C-34.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2448976,"date":"Aug 8 2019"},{"filename":"iwlwifi-8000C-36.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2486572,"date":"Aug 8 2019"},{"filename":"iwlwifi-8265-21.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2389968,"date":"Aug 8 2019"},{"filename":"iwlwifi-8265-22.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1811984,"date":"Aug 8 2019"},{"filename":"iwlwifi-8265-27.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2234528,"date":"Aug 8 2019"},{"filename":"iwlwifi-8265-31.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2307104,"date":"Aug 8 2019"},{"filename":"iwlwifi-8265-34.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2440780,"date":"Aug 8 2019"},{"filename":"iwlwifi-8265-36.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2498044,"date":"Aug 8 2019"},{"filename":"iwlwifi-9000-pu-b0-jf-b0-33.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2632620,"date":"Aug 8 2019"},{"filename":"iwlwifi-9000-pu-b0-jf-b0-34.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2678284,"date":"Aug 8 2019"},{"filename":"iwlwifi-9000-pu-b0-jf-b0-38.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2520568,"date":"Aug 8 2019"},{"filename":"iwlwifi-9000-pu-b0-jf-b0-41.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2620464,"date":"Aug 8 2019"},{"filename":"iwlwifi-9000-pu-b0-jf-b0-43.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2543536,"date":"Aug 8 2019"},{"filename":"iwlwifi-9260-th-b0-jf-b0-33.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2637216,"date":"Aug 8 2019"},{"filename":"iwlwifi-9260-th-b0-jf-b0-34.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2678092,"date":"Aug 8 2019"},{"filename":"iwlwifi-9260-th-b0-jf-b0-38.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2521412,"date":"Aug 8 2019"},{"filename":"iwlwifi-9260-th-b0-jf-b0-41.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2620656,"date":"Aug 8 2019"},{"filename":"iwlwifi-9260-th-b0-jf-b0-43.ucode","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2558176,"date":"Aug 8 2019"},{"filename":"kaweth","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":102,"date":"Oct 16 09:22"},{"filename":"keyspan","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":211,"date":"Oct 16 09:22"},{"filename":"keyspan_pda","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":106,"date":"Oct 16 09:22"},{"filename":"korg","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":23,"date":"Aug 15 2019"},{"filename":"lbtf_usb.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":118888,"date":"Aug 8 2019"},{"filename":"lgs8g75.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":262,"date":"Aug 8 2019"},{"filename":"liquidio","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":129,"date":"Oct 16 09:22"},{"filename":"Makefile","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":397,"date":"Aug 8 2019"},{"filename":"matrox","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":46,"date":"Oct 16 09:22"},{"filename":"mediatek","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":226,"date":"Oct 16 09:22"},{"filename":"mellanox","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":236,"date":"Oct 16 09:22"},{"filename":"microchip","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":90,"date":"Oct 16 09:22"},{"filename":"mixart","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":66,"date":"Aug 15 2019"},{"filename":"moxa","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":286,"date":"Oct 16 09:22"},{"filename":"mrvl","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"mt7601u.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":45412,"date":"Aug 8 2019"},{"filename":"mt7650.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":368220,"date":"Aug 8 2019"},{"filename":"mt7662.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":81908,"date":"Aug 8 2019"},{"filename":"mt7662_rom_patch.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":26350,"date":"Aug 8 2019"},{"filename":"mts_cdma.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":13847,"date":"Aug 8 2019"},{"filename":"mts_edge.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":14067,"date":"Aug 8 2019"},{"filename":"mts_gsm.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":13847,"date":"Aug 8 2019"},{"filename":"mts_mt9234mu.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":13769,"date":"Aug 8 2019"},{"filename":"mts_mt9234zba.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":13769,"date":"Aug 8 2019"},{"filename":"multiface_firmware.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":97652,"date":"Mar 5 2015"},{"filename":"multiface_firmware_rev11.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":97652,"date":"Mar 5 2015"},{"filename":"mwlwifi","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":44,"date":"Oct 16 09:22"},{"filename":"myri10ge_eth_big_z8e.dat","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":378832,"date":"Aug 8 2019"},{"filename":"myri10ge_ethp_big_z8e.dat","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":389144,"date":"Aug 8 2019"},{"filename":"myri10ge_ethp_z8e.dat","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":389056,"date":"Aug 8 2019"},{"filename":"myri10ge_eth_z8e.dat","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":378736,"date":"Aug 8 2019"},{"filename":"myri10ge_rss_eth_big_z8e.dat","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":536192,"date":"Aug 8 2019"},{"filename":"myri10ge_rss_ethp_big_z8e.dat","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":545936,"date":"Aug 8 2019"},{"filename":"myri10ge_rss_ethp_z8e.dat","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":545920,"date":"Aug 8 2019"},{"filename":"myri10ge_rss_eth_z8e.dat","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":536176,"date":"Aug 8 2019"},{"filename":"myricom","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":23,"date":"Oct 16 09:22"},{"filename":"netronome","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"nvidia","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":19,"owner":"root","group":"root","size":236,"date":"Oct 16 09:22"},{"filename":"ositech","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":27,"date":"Oct 16 09:22"},{"filename":"pcxhr","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 15 2019"},{"filename":"phanfw.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1845305,"date":"Aug 8 2019"},{"filename":"qat_895xcc.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":463612,"date":"Aug 8 2019"},{"filename":"qat_895xcc_mmp.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":114176,"date":"Aug 8 2019"},{"filename":"qat_c3xxx.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":265444,"date":"Aug 8 2019"},{"filename":"qat_c3xxx_mmp.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":114820,"date":"Aug 8 2019"},{"filename":"qat_c62x.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":398144,"date":"Aug 8 2019"},{"filename":"qat_c62x_mmp.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":114820,"date":"Aug 8 2019"},{"filename":"qat_mmp.bin","link_to":"qat_895xcc_mmp.bin","parent":"/usr/lib/firmware","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":18,"date":"Oct 16 09:22"},{"filename":"qca","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"qcom","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":5,"owner":"root","group":"root","size":254,"date":"Oct 16 09:22"},{"filename":"qed","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"ql2100_fw.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":76802,"date":"Aug 8 2019"},{"filename":"ql2200_fw.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":84566,"date":"Aug 8 2019"},{"filename":"ql2300_fw.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":125252,"date":"Aug 8 2019"},{"filename":"ql2322_fw.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":136038,"date":"Aug 8 2019"},{"filename":"ql2400_fw.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":265300,"date":"Aug 8 2019"},{"filename":"ql2500_fw.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":275128,"date":"Aug 8 2019"},{"filename":"qlogic","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":91,"date":"Oct 16 09:22"},{"filename":"r128","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":26,"date":"Oct 16 09:22"},{"filename":"r8a779x_usb3_v1.dlmem","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":9452,"date":"Aug 8 2019"},{"filename":"r8a779x_usb3_v2.dlmem","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":9416,"date":"Aug 8 2019"},{"filename":"r8a779x_usb3_v3.dlmem","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":9416,"date":"Aug 8 2019"},{"filename":"radeon","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:22"},{"filename":"README","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1684,"date":"Aug 8 2019"},{"filename":"rockchip","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":22,"date":"Oct 16 09:22"},{"filename":"rp2.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":63,"date":"Aug 8 2019"},{"filename":"rpm_firmware.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":97652,"date":"Mar 5 2015"},{"filename":"rsi","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":104,"date":"Oct 16 09:22"},{"filename":"rsi_91x.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":94100,"date":"Aug 8 2019"},{"filename":"rt2561.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8192,"date":"Aug 8 2019"},{"filename":"rt2561s.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8192,"date":"Aug 8 2019"},{"filename":"rt2661.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8192,"date":"Aug 8 2019"},{"filename":"rt2860.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8192,"date":"Aug 8 2019"},{"filename":"rt2870.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8192,"date":"Aug 8 2019"},{"filename":"rt3070.bin","link_to":"rt2870.bin","parent":"/usr/lib/firmware","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":10,"date":"Oct 16 09:22"},{"filename":"rt3071.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"rt3090.bin","link_to":"rt2860.bin","parent":"/usr/lib/firmware","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":10,"date":"Oct 16 09:22"},{"filename":"rt3290.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"rt73.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2048,"date":"Aug 8 2019"},{"filename":"RTL8192E","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":54,"date":"Oct 16 09:22"},{"filename":"rtl_bt","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"rtl_nic","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"rtlwifi","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"rtw88","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":52,"date":"Oct 16 09:22"},{"filename":"s2250.fw","link_to":"go7007/s2250-2.fw","parent":"/usr/lib/firmware","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":17,"date":"Oct 16 09:22"},{"filename":"s2250_loader.fw","link_to":"go7007/s2250-1.fw","parent":"/usr/lib/firmware","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":17,"date":"Oct 16 09:22"},{"filename":"s5p-mfc.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":352652,"date":"Aug 8 2019"},{"filename":"s5p-mfc-v6.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":306312,"date":"Aug 8 2019"},{"filename":"s5p-mfc-v6-v2.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":343756,"date":"Aug 8 2019"},{"filename":"s5p-mfc-v7.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":382724,"date":"Aug 8 2019"},{"filename":"s5p-mfc-v8.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":360576,"date":"Aug 8 2019"},{"filename":"sb16","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":134,"date":"Aug 15 2019"},{"filename":"sdd_sagrad_1091_1098.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":816,"date":"Aug 8 2019"},{"filename":"slicoss","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":128,"date":"Oct 16 09:22"},{"filename":"sms1xxx-hcw-55xxx-dvbt-02.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":85656,"date":"Aug 8 2019"},{"filename":"sms1xxx-hcw-55xxx-isdbt-02.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":70472,"date":"Aug 8 2019"},{"filename":"sms1xxx-nova-a-dvbt-01.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":85656,"date":"Aug 8 2019"},{"filename":"sms1xxx-nova-b-dvbt-01.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":76364,"date":"Aug 8 2019"},{"filename":"sms1xxx-stellar-dvbt-01.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":39900,"date":"Aug 8 2019"},{"filename":"sun","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":25,"date":"Oct 16 09:22"},{"filename":"sxg","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":63,"date":"Oct 16 09:22"},{"filename":"TDA7706_OM_v2.5.1_boot.txt","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":37028,"date":"Aug 8 2019"},{"filename":"TDA7706_OM_v3.0.2_boot.txt","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":10509,"date":"Aug 8 2019"},{"filename":"tdmb_nova_12mhz.inp","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":40096,"date":"Aug 8 2019"},{"filename":"tehuti","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":21,"date":"Oct 16 09:22"},{"filename":"ti_3410.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":13765,"date":"Aug 8 2019"},{"filename":"ti_5052.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":13764,"date":"Aug 8 2019"},{"filename":"tigon","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":80,"date":"Oct 16 09:22"},{"filename":"ti-keystone","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":51,"date":"Oct 16 09:22"},{"filename":"tlg2300_firmware.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":51972,"date":"Aug 8 2019"},{"filename":"tr_smctr.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":7614,"date":"Aug 8 2019"},{"filename":"ttusb-budget","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":29,"date":"Oct 16 09:22"},{"filename":"ueagle-atm","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"updates","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":6,"date":"Aug 8 2019"},{"filename":"usbdux","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":6,"date":"Aug 8 2019"},{"filename":"usbduxfast_firmware.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":999,"date":"Aug 8 2019"},{"filename":"usbdux_firmware.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1770,"date":"Aug 8 2019"},{"filename":"usbduxsigma_firmware.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8192,"date":"Aug 8 2019"},{"filename":"v4l-cx231xx-avcore-01.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":16382,"date":"Aug 8 2019"},{"filename":"v4l-cx2341x-dec.fw","parent":"/usr/lib/firmware","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":262144,"date":"May 26 2006"},{"filename":"v4l-cx2341x-enc.fw","parent":"/usr/lib/firmware","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":376836,"date":"Feb 17 2007"},{"filename":"v4l-cx2341x-init.mpg","parent":"/usr/lib/firmware","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":155648,"date":"May 26 2006"},{"filename":"v4l-cx23885-avcore-01.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":16382,"date":"Aug 8 2019"},{"filename":"v4l-cx25840.fw","parent":"/usr/lib/firmware","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":16382,"date":"Jul 1 2008"},{"filename":"v4l-pvrusb2-24xxx-01.fw","parent":"/usr/lib/firmware","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":8192,"date":"Oct 6 2006"},{"filename":"v4l-pvrusb2-29xxx-01.fw","parent":"/usr/lib/firmware","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":8192,"date":"Jul 1 2006"},{"filename":"vicam","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":25,"date":"Oct 16 09:22"},{"filename":"vntwusb.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":11341,"date":"Aug 8 2019"},{"filename":"vpu_d.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2977008,"date":"Aug 8 2019"},{"filename":"vpu_p.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":131180,"date":"Aug 8 2019"},{"filename":"vx","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":262,"date":"Aug 15 2019"},{"filename":"whiteheat.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":23554,"date":"Aug 8 2019"},{"filename":"whiteheat_loader.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":5626,"date":"Aug 8 2019"},{"filename":"wil6210.brd","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":3588,"date":"Aug 8 2019"},{"filename":"wil6210.fw","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":400364,"date":"Aug 8 2019"},{"filename":"wsm_22.bin","parent":"/usr/lib/firmware","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":97824,"date":"Aug 8 2019"},{"filename":"yam","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":38,"date":"Oct 16 09:22"},{"filename":"yamaha","parent":"/usr/lib/firmware","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":91,"date":"Aug 15 2019"},{"filename":".","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":45,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"intel-ucode","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"readme-intel","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2503,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":45,"date":"Oct 16 09:22"},{"filename":"06-03-02","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-03-02","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-05-00","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-05-00","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-05-01","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-05-01","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-05-02","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-05-02","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-05-03","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-05-03","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-06-00","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-06-00","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-06-05","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-06-05","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-06-0a","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-06-0a","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-06-0d","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-06-0d","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-07-01","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-07-01","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-07-02","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-07-02","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-07-03","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-07-03","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-08-01","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-08-01","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-08-03","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-08-03","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-08-06","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-08-06","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-08-0a","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-08-0a","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-09-05","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-09-05","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-0a-00","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0a-00","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-0a-01","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0a-01","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-0b-01","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0b-01","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-0b-04","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0b-04","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-0d-06","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0d-06","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-0e-08","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0e-08","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-0e-0c","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0e-0c","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-0f-02","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-02","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-0f-06","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-06","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-0f-07","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-07","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-0f-0a","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-0a","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-0f-0b","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-0b","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-0f-0d","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-0d","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-16-01","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-16-01","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-17-06","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-17-06","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-17-07","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-17-07","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-17-0a","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-17-0a","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-1a-04","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1a-04","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-1a-05","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1a-05","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-1c-02","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1c-02","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-1c-0a","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1c-0a","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-1d-01","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1d-01","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-1e-05","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1e-05","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-25-02","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-25-02","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-25-05","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-25-05","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-26-01","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-26-01","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-2a-07","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2a-07","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-2c-02","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2c-02","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-2d-06","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2d-06","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-2d-07","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2d-07","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-2e-06","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2e-06","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-2f-02","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2f-02","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-37-08","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-37-08","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-37-09","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-37-09","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-3a-09","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3a-09","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-3c-03","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3c-03","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-3d-04","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3d-04","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-3e-04","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3e-04","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-3e-06","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3e-06","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-3e-07","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3e-07","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-3f-02","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3f-02","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-3f-04","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3f-04","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-45-01","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-45-01","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-46-01","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-46-01","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-47-01","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-47-01","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-4c-03","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-4c-03","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-4c-04","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-4c-04","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-4e-03","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-4e-03","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-55-04","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-55-04","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-55-07","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-55-07","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-56-02","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-56-02","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-56-03","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-56-03","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-56-04","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-56-04","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-56-05","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-56-05","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-5c-02","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5c-02","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-5c-09","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5c-09","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-5c-0a","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5c-0a","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-5e-03","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5e-03","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-5f-01","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5f-01","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-7a-01","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-7a-01","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-8e-09","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-8e-09","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-8e-0a","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-8e-0a","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-8e-0b","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-8e-0b","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-8e-0c","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-8e-0c","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-9e-09","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-09","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-9e-0a","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-0a","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-9e-0b","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-0b","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-9e-0c","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-0c","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-9e-0d","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-0d","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-00-07","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-00-07","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-00-0a","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-00-0a","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-01-02","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-01-02","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-02-04","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-04","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-02-05","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-05","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-02-06","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-06","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-02-07","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-07","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-02-09","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-09","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-03-02","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-03-02","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-03-03","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-03-03","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-03-04","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-03-04","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-04-01","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-01","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-04-03","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-03","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-04-04","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-04","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-04-07","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-07","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-04-08","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-08","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-04-09","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-09","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-04-0a","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-0a","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-06-02","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-06-02","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-06-04","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-06-04","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-06-05","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-06-05","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-06-08","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-06-08","parent":"/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":45,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"intel-ucode","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"readme-intel","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2503,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":45,"date":"Oct 16 09:22"},{"filename":"06-03-02","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-03-02","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-05-00","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-05-00","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-05-01","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-05-01","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-05-02","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-05-02","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-05-03","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-05-03","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-06-00","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-06-00","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-06-05","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-06-05","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-06-0a","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-06-0a","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-06-0d","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-06-0d","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-07-01","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-07-01","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-07-02","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-07-02","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-07-03","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-07-03","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-08-01","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-08-01","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-08-03","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-08-03","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-08-06","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-08-06","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-08-0a","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-08-0a","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-09-05","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-09-05","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-0a-00","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0a-00","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-0a-01","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0a-01","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-0b-01","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0b-01","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-0b-04","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0b-04","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-0d-06","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0d-06","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-0e-08","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0e-08","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-0e-0c","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0e-0c","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-0f-02","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-02","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-0f-06","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-06","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-0f-07","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-07","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-0f-0a","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-0a","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-0f-0b","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-0b","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-0f-0d","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-0d","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-16-01","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-16-01","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-17-06","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-17-06","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-17-07","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-17-07","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-17-0a","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-17-0a","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-1a-04","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1a-04","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-1a-05","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1a-05","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-1c-02","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1c-02","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-1c-0a","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1c-0a","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-1d-01","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1d-01","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-1e-05","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1e-05","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-25-02","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-25-02","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-25-05","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-25-05","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-26-01","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-26-01","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-2a-07","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2a-07","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-2c-02","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2c-02","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-2d-06","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2d-06","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-2d-07","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2d-07","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-2e-06","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2e-06","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-2f-02","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2f-02","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-37-08","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-37-08","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-37-09","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-37-09","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-3a-09","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3a-09","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-3c-03","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3c-03","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-3d-04","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3d-04","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-3e-04","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3e-04","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-3e-06","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3e-06","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-3e-07","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3e-07","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-3f-02","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3f-02","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-3f-04","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3f-04","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-45-01","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-45-01","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-46-01","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-46-01","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-47-01","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-47-01","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-4c-03","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-4c-03","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-4c-04","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-4c-04","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-4e-03","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-4e-03","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-55-03","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-55-03","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Aug 15 2019"},{"filename":"06-55-04","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-55-04","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-55-07","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-55-07","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-56-02","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-56-02","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-56-03","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-56-03","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-56-04","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-56-04","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-56-05","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-56-05","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-5c-02","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5c-02","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-5c-09","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5c-09","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-5c-0a","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5c-0a","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-5e-03","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5e-03","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-5f-01","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5f-01","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-7a-01","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-7a-01","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-8e-09","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-8e-09","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-8e-0a","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-8e-0a","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-8e-0b","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-8e-0b","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-8e-0c","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-8e-0c","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-9e-09","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-09","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-9e-0a","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-0a","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-9e-0b","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-0b","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-9e-0c","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-0c","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-9e-0d","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-0d","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-00-07","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-00-07","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-00-0a","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-00-0a","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-01-02","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-01-02","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-02-04","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-04","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-02-05","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-05","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-02-06","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-06","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-02-07","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-07","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-02-09","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-09","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-03-02","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-03-02","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-03-03","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-03-03","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-03-04","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-03-04","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-04-01","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-01","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-04-03","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-03","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-04-04","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-04","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-04-07","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-07","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-04-08","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-08","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-04-09","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-09","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-04-0a","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-0a","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-06-02","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-06-02","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-06-04","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-06-04","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-06-05","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-06-05","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-06-08","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-06-08","parent":"/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":45,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"intel-ucode","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"readme-intel","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2503,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":45,"date":"Oct 16 09:22"},{"filename":"06-03-02","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-03-02","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-05-00","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-05-00","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-05-01","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-05-01","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-05-02","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-05-02","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-05-03","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-05-03","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-06-00","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-06-00","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-06-05","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-06-05","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-06-0a","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-06-0a","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-06-0d","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-06-0d","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-07-01","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-07-01","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-07-02","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-07-02","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-07-03","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-07-03","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-08-01","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-08-01","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-08-03","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-08-03","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-08-06","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-08-06","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-08-0a","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-08-0a","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-09-05","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-09-05","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-0a-00","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0a-00","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-0a-01","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0a-01","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-0b-01","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0b-01","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-0b-04","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0b-04","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-0d-06","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0d-06","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-0e-08","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0e-08","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-0e-0c","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0e-0c","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-0f-02","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-02","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-0f-06","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-06","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-0f-07","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-07","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-0f-0a","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-0a","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-0f-0b","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-0b","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-0f-0d","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-0d","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-16-01","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-16-01","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-17-06","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-17-06","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-17-07","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-17-07","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-17-0a","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-17-0a","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-1a-04","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1a-04","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-1a-05","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1a-05","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-1c-02","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1c-02","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-1c-0a","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1c-0a","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-1d-01","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1d-01","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-1e-05","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1e-05","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-25-02","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-25-02","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-25-05","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-25-05","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-26-01","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-26-01","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-2a-07","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2a-07","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-2c-02","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2c-02","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-2d-06","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2d-06","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-2d-07","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2d-07","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-2e-06","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2e-06","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-2f-02","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2f-02","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-37-08","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-37-08","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-37-09","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-37-09","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-3a-09","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3a-09","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-3c-03","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3c-03","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-3d-04","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3d-04","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-3e-04","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3e-04","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-3e-06","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3e-06","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-3e-07","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3e-07","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-3f-02","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3f-02","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-3f-04","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3f-04","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-45-01","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-45-01","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-46-01","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-46-01","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-47-01","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-47-01","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-4c-03","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-4c-03","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-4c-04","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-4c-04","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-4e-03","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-4e-03","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-55-03","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-55-03","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Aug 15 2019"},{"filename":"06-55-04","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-55-04","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-55-07","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-55-07","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-56-02","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-56-02","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-56-03","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-56-03","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-56-04","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-56-04","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-56-05","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-56-05","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-5c-02","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5c-02","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-5c-09","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5c-09","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-5c-0a","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5c-0a","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-5e-03","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5e-03","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-5f-01","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5f-01","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-7a-01","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-7a-01","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-8e-09","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-8e-09","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-8e-0a","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-8e-0a","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-8e-0b","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-8e-0b","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-8e-0c","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-8e-0c","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-9e-09","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-09","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-9e-0a","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-0a","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-9e-0b","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-0b","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-9e-0c","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-0c","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"06-9e-0d","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-0d","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-00-07","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-00-07","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-00-0a","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-00-0a","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-01-02","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-01-02","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-02-04","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-04","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-02-05","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-05","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-02-06","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-06","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-02-07","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-07","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-02-09","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-09","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-03-02","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-03-02","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-03-03","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-03-03","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-03-04","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-03-04","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-04-01","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-01","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-04-03","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-03","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-04-04","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-04","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-04-07","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-07","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-04-08","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-08","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-04-09","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-09","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-04-0a","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-0a","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-06-02","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-06-02","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-06-04","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-06-04","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-06-05","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-06-05","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"0f-06-08","link_to":"/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-06-08","parent":"/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/3com","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":42,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/3com","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"3C359.bin","parent":"/usr/lib/firmware/3com","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":24880,"date":"Aug 8 2019"},{"filename":"typhoon.bin","parent":"/usr/lib/firmware/3com","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":44548,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/acenic","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":36,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/acenic","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"tg1.bin","parent":"/usr/lib/firmware/acenic","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":73116,"date":"Aug 8 2019"},{"filename":"tg2.bin","parent":"/usr/lib/firmware/acenic","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":77452,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/adaptec","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":52,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/adaptec","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"starfire_rx.bin","parent":"/usr/lib/firmware/adaptec","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":832,"date":"Aug 8 2019"},{"filename":"starfire_tx.bin","parent":"/usr/lib/firmware/adaptec","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":832,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/advansys","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":77,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/advansys","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"3550.bin","parent":"/usr/lib/firmware/advansys","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":5026,"date":"Aug 8 2019"},{"filename":"38C0800.bin","parent":"/usr/lib/firmware/advansys","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":5340,"date":"Aug 8 2019"},{"filename":"38C1600.bin","parent":"/usr/lib/firmware/advansys","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":6334,"date":"Aug 8 2019"},{"filename":"mcode.bin","parent":"/usr/lib/firmware/advansys","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2308,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/amd","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":42,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/amd","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"amd_sev_fam17h_model0xh.sbin","parent":"/usr/lib/firmware/amd","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":32000,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/amdgpu","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/amdgpu","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"banks_k_2_smc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":61932,"date":"Aug 8 2019"},{"filename":"bonaire_ce.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"bonaire_k_smc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":130796,"date":"Aug 8 2019"},{"filename":"bonaire_mc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":32336,"date":"Aug 8 2019"},{"filename":"bonaire_me.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"bonaire_mec.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17024,"date":"Aug 8 2019"},{"filename":"bonaire_pfp.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"bonaire_rlc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8448,"date":"Aug 8 2019"},{"filename":"bonaire_sdma1.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4456,"date":"Aug 8 2019"},{"filename":"bonaire_sdma.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4456,"date":"Aug 8 2019"},{"filename":"bonaire_smc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":130796,"date":"Aug 8 2019"},{"filename":"bonaire_uvd.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":232752,"date":"Aug 8 2019"},{"filename":"bonaire_vce.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":101072,"date":"Aug 8 2019"},{"filename":"carrizo_ce.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"carrizo_me.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17024,"date":"Aug 8 2019"},{"filename":"carrizo_mec2.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":262784,"date":"Aug 8 2019"},{"filename":"carrizo_mec.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":262784,"date":"Aug 8 2019"},{"filename":"carrizo_pfp.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17024,"date":"Aug 8 2019"},{"filename":"carrizo_rlc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":18836,"date":"Aug 8 2019"},{"filename":"carrizo_sdma1.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":10624,"date":"Aug 8 2019"},{"filename":"carrizo_sdma.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":10624,"date":"Aug 8 2019"},{"filename":"carrizo_uvd.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":271712,"date":"Aug 8 2019"},{"filename":"carrizo_vce.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":175840,"date":"Aug 8 2019"},{"filename":"fiji_ce.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8852,"date":"Aug 8 2019"},{"filename":"fiji_mc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":16028,"date":"Aug 8 2019"},{"filename":"fiji_me.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17044,"date":"Aug 8 2019"},{"filename":"fiji_mec2.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":262824,"date":"Aug 8 2019"},{"filename":"fiji_mec.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":262824,"date":"Aug 8 2019"},{"filename":"fiji_pfp.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17044,"date":"Aug 8 2019"},{"filename":"fiji_rlc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":16636,"date":"Aug 8 2019"},{"filename":"fiji_sdma1.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":10644,"date":"Aug 8 2019"},{"filename":"fiji_sdma.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":10644,"date":"Aug 8 2019"},{"filename":"fiji_smc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":129604,"date":"Aug 8 2019"},{"filename":"fiji_uvd.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":266768,"date":"Aug 8 2019"},{"filename":"fiji_vce.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":161024,"date":"Aug 8 2019"},{"filename":"hainan_ce.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"hainan_k_smc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":61876,"date":"Aug 8 2019"},{"filename":"hainan_mc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":31996,"date":"Aug 8 2019"},{"filename":"hainan_me.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"hainan_pfp.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"hainan_rlc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8448,"date":"Aug 8 2019"},{"filename":"hainan_smc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":61444,"date":"Aug 8 2019"},{"filename":"hawaii_ce.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"hawaii_k_smc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":130796,"date":"Aug 8 2019"},{"filename":"hawaii_mc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":32796,"date":"Aug 8 2019"},{"filename":"hawaii_me.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"hawaii_mec.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17024,"date":"Aug 8 2019"},{"filename":"hawaii_pfp.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"hawaii_rlc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8448,"date":"Aug 8 2019"},{"filename":"hawaii_sdma1.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4456,"date":"Aug 8 2019"},{"filename":"hawaii_sdma.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4456,"date":"Aug 8 2019"},{"filename":"hawaii_smc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":130796,"date":"Aug 8 2019"},{"filename":"hawaii_uvd.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":232752,"date":"Aug 8 2019"},{"filename":"hawaii_vce.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":101072,"date":"Aug 8 2019"},{"filename":"kabini_ce.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"kabini_me.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"kabini_mec.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17024,"date":"Aug 8 2019"},{"filename":"kabini_pfp.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"kabini_rlc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":10496,"date":"Aug 8 2019"},{"filename":"kabini_sdma1.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4456,"date":"Aug 8 2019"},{"filename":"kabini_sdma.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4456,"date":"Aug 8 2019"},{"filename":"kabini_uvd.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":232752,"date":"Aug 8 2019"},{"filename":"kabini_vce.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":101072,"date":"Aug 8 2019"},{"filename":"kaveri_ce.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"kaveri_me.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"kaveri_mec2.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17024,"date":"Aug 8 2019"},{"filename":"kaveri_mec.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17024,"date":"Aug 8 2019"},{"filename":"kaveri_pfp.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"kaveri_rlc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":10496,"date":"Aug 8 2019"},{"filename":"kaveri_sdma1.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4456,"date":"Aug 8 2019"},{"filename":"kaveri_sdma.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4456,"date":"Aug 8 2019"},{"filename":"kaveri_uvd.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":232752,"date":"Aug 8 2019"},{"filename":"kaveri_vce.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":101072,"date":"Aug 8 2019"},{"filename":"mullins_ce.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"mullins_me.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"mullins_mec.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17024,"date":"Aug 8 2019"},{"filename":"mullins_pfp.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"mullins_rlc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":10496,"date":"Aug 8 2019"},{"filename":"mullins_sdma1.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4456,"date":"Aug 8 2019"},{"filename":"mullins_sdma.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4456,"date":"Aug 8 2019"},{"filename":"mullins_uvd.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":232752,"date":"Aug 8 2019"},{"filename":"mullins_vce.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":101072,"date":"Aug 8 2019"},{"filename":"oland_ce.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"oland_k_smc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":62692,"date":"Aug 8 2019"},{"filename":"oland_mc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":31996,"date":"Aug 8 2019"},{"filename":"oland_me.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"oland_pfp.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"oland_rlc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8448,"date":"Aug 8 2019"},{"filename":"oland_smc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":62260,"date":"Aug 8 2019"},{"filename":"picasso_asd.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":49664,"date":"Aug 8 2019"},{"filename":"picasso_ce.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":9344,"date":"Aug 8 2019"},{"filename":"picasso_gpu_info.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":316,"date":"Aug 8 2019"},{"filename":"picasso_me.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17536,"date":"Aug 8 2019"},{"filename":"picasso_mec2.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":268048,"date":"Aug 8 2019"},{"filename":"picasso_mec.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":268048,"date":"Aug 8 2019"},{"filename":"picasso_pfp.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":21632,"date":"Aug 8 2019"},{"filename":"picasso_rlc_am4.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":39068,"date":"Aug 8 2019"},{"filename":"picasso_rlc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":39068,"date":"Aug 8 2019"},{"filename":"picasso_sdma.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17408,"date":"Aug 8 2019"},{"filename":"picasso_vcn.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":341728,"date":"Aug 8 2019"},{"filename":"pitcairn_ce.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"pitcairn_k_smc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":61712,"date":"Aug 8 2019"},{"filename":"pitcairn_mc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":31644,"date":"Aug 8 2019"},{"filename":"pitcairn_me.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"pitcairn_pfp.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"pitcairn_rlc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8448,"date":"Aug 8 2019"},{"filename":"pitcairn_smc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":61280,"date":"Aug 8 2019"},{"filename":"polaris10_ce_2.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8852,"date":"Aug 8 2019"},{"filename":"polaris10_ce.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8852,"date":"Aug 8 2019"},{"filename":"polaris10_k2_smc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":130244,"date":"Aug 8 2019"},{"filename":"polaris10_k_mc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":32832,"date":"Aug 8 2019"},{"filename":"polaris10_k_smc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":130244,"date":"Aug 8 2019"},{"filename":"polaris10_mc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":32732,"date":"Aug 8 2019"},{"filename":"polaris10_me_2.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17044,"date":"Aug 8 2019"},{"filename":"polaris10_me.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17044,"date":"Aug 8 2019"},{"filename":"polaris10_mec2_2.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":262824,"date":"Aug 8 2019"},{"filename":"polaris10_mec_2.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":262824,"date":"Aug 8 2019"},{"filename":"polaris10_mec2.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":262824,"date":"Aug 8 2019"},{"filename":"polaris10_mec.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":262824,"date":"Aug 8 2019"},{"filename":"polaris10_pfp_2.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17044,"date":"Aug 8 2019"},{"filename":"polaris10_pfp.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17044,"date":"Aug 8 2019"},{"filename":"polaris10_rlc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":23488,"date":"Aug 8 2019"},{"filename":"polaris10_sdma1.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":12692,"date":"Aug 8 2019"},{"filename":"polaris10_sdma.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":12692,"date":"Aug 8 2019"},{"filename":"polaris10_smc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":130216,"date":"Aug 8 2019"},{"filename":"polaris10_smc_sk.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":130196,"date":"Aug 8 2019"},{"filename":"polaris10_uvd.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":375424,"date":"Aug 8 2019"},{"filename":"polaris10_vce.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":166816,"date":"Aug 8 2019"},{"filename":"polaris11_ce_2.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8852,"date":"Aug 8 2019"},{"filename":"polaris11_ce.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8852,"date":"Aug 8 2019"},{"filename":"polaris11_k2_smc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":130228,"date":"Aug 8 2019"},{"filename":"polaris11_k_mc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":32832,"date":"Aug 8 2019"},{"filename":"polaris11_k_smc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":130228,"date":"Aug 8 2019"},{"filename":"polaris11_mc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":33104,"date":"Aug 8 2019"},{"filename":"polaris11_me_2.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17044,"date":"Aug 8 2019"},{"filename":"polaris11_me.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17044,"date":"Aug 8 2019"},{"filename":"polaris11_mec2_2.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":262824,"date":"Aug 8 2019"},{"filename":"polaris11_mec_2.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":262824,"date":"Aug 8 2019"},{"filename":"polaris11_mec2.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":262824,"date":"Aug 8 2019"},{"filename":"polaris11_mec.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":262824,"date":"Aug 8 2019"},{"filename":"polaris11_pfp_2.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17044,"date":"Aug 8 2019"},{"filename":"polaris11_pfp.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17044,"date":"Aug 8 2019"},{"filename":"polaris11_rlc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":22688,"date":"Aug 8 2019"},{"filename":"polaris11_sdma1.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":12692,"date":"Aug 8 2019"},{"filename":"polaris11_sdma.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":12692,"date":"Aug 8 2019"},{"filename":"polaris11_smc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":130196,"date":"Aug 8 2019"},{"filename":"polaris11_smc_sk.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":130196,"date":"Aug 8 2019"},{"filename":"polaris11_uvd.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":375424,"date":"Aug 8 2019"},{"filename":"polaris11_vce.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":166816,"date":"Aug 8 2019"},{"filename":"polaris12_ce_2.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8852,"date":"Aug 8 2019"},{"filename":"polaris12_ce.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8852,"date":"Aug 8 2019"},{"filename":"polaris12_k_mc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":32832,"date":"Aug 8 2019"},{"filename":"polaris12_k_smc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":130388,"date":"Aug 8 2019"},{"filename":"polaris12_mc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":32608,"date":"Aug 8 2019"},{"filename":"polaris12_me_2.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17044,"date":"Aug 8 2019"},{"filename":"polaris12_me.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17044,"date":"Aug 8 2019"},{"filename":"polaris12_mec2_2.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":262824,"date":"Aug 8 2019"},{"filename":"polaris12_mec_2.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":262824,"date":"Aug 8 2019"},{"filename":"polaris12_mec2.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":262824,"date":"Aug 8 2019"},{"filename":"polaris12_mec.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":262824,"date":"Aug 8 2019"},{"filename":"polaris12_pfp_2.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17044,"date":"Aug 8 2019"},{"filename":"polaris12_pfp.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17044,"date":"Aug 8 2019"},{"filename":"polaris12_rlc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":16660,"date":"Aug 8 2019"},{"filename":"polaris12_sdma1.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":12692,"date":"Aug 8 2019"},{"filename":"polaris12_sdma.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":12692,"date":"Aug 8 2019"},{"filename":"polaris12_smc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":130388,"date":"Aug 8 2019"},{"filename":"polaris12_uvd.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":375424,"date":"Aug 8 2019"},{"filename":"polaris12_vce.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":166816,"date":"Aug 8 2019"},{"filename":"raven2_asd.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":49664,"date":"Aug 8 2019"},{"filename":"raven2_ce.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":9344,"date":"Aug 8 2019"},{"filename":"raven2_gpu_info.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":316,"date":"Aug 8 2019"},{"filename":"raven2_me.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17536,"date":"Aug 8 2019"},{"filename":"raven2_mec2.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":268048,"date":"Aug 8 2019"},{"filename":"raven2_mec.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":268048,"date":"Aug 8 2019"},{"filename":"raven2_pfp.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":21632,"date":"Aug 8 2019"},{"filename":"raven2_rlc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":38324,"date":"Aug 8 2019"},{"filename":"raven2_sdma.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17408,"date":"Aug 8 2019"},{"filename":"raven2_vcn.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":343456,"date":"Aug 8 2019"},{"filename":"raven_asd.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":49664,"date":"Aug 8 2019"},{"filename":"raven_ce.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":9344,"date":"Aug 8 2019"},{"filename":"raven_dmcu.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":24416,"date":"Aug 8 2019"},{"filename":"raven_gpu_info.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":316,"date":"Aug 8 2019"},{"filename":"raven_me.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17536,"date":"Aug 8 2019"},{"filename":"raven_mec2.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":268048,"date":"Aug 8 2019"},{"filename":"raven_mec.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":268048,"date":"Aug 8 2019"},{"filename":"raven_pfp.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":21632,"date":"Aug 8 2019"},{"filename":"raven_rlc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":39036,"date":"Aug 8 2019"},{"filename":"raven_sdma.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17408,"date":"Aug 8 2019"},{"filename":"raven_vcn.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":341728,"date":"Aug 8 2019"},{"filename":"si58_mc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":32488,"date":"Aug 8 2019"},{"filename":"stoney_ce.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"stoney_me.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17024,"date":"Aug 8 2019"},{"filename":"stoney_mec.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":262784,"date":"Aug 8 2019"},{"filename":"stoney_pfp.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17024,"date":"Aug 8 2019"},{"filename":"stoney_rlc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17236,"date":"Aug 8 2019"},{"filename":"stoney_sdma.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":10624,"date":"Aug 8 2019"},{"filename":"stoney_uvd.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":277216,"date":"Aug 8 2019"},{"filename":"stoney_vce.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":166816,"date":"Aug 8 2019"},{"filename":"tahiti_ce.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"tahiti_k_smc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":64364,"date":"Aug 8 2019"},{"filename":"tahiti_mc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":31776,"date":"Aug 8 2019"},{"filename":"tahiti_me.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"tahiti_pfp.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"tahiti_rlc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8448,"date":"Aug 8 2019"},{"filename":"tahiti_smc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":63932,"date":"Aug 8 2019"},{"filename":"tonga_ce.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8852,"date":"Aug 8 2019"},{"filename":"tonga_k_smc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":130460,"date":"Aug 8 2019"},{"filename":"tonga_mc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":31352,"date":"Aug 8 2019"},{"filename":"tonga_me.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17044,"date":"Aug 8 2019"},{"filename":"tonga_mec2.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":262824,"date":"Aug 8 2019"},{"filename":"tonga_mec.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":262824,"date":"Aug 8 2019"},{"filename":"tonga_pfp.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17044,"date":"Aug 8 2019"},{"filename":"tonga_rlc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":14756,"date":"Aug 8 2019"},{"filename":"tonga_sdma1.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":10644,"date":"Aug 8 2019"},{"filename":"tonga_sdma.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":10644,"date":"Aug 8 2019"},{"filename":"tonga_smc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":130460,"date":"Aug 8 2019"},{"filename":"tonga_uvd.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":325312,"date":"Aug 8 2019"},{"filename":"tonga_vce.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":161024,"date":"Aug 8 2019"},{"filename":"topaz_ce.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"topaz_k_smc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":80544,"date":"Aug 8 2019"},{"filename":"topaz_mc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":32100,"date":"Aug 8 2019"},{"filename":"topaz_me.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17024,"date":"Aug 8 2019"},{"filename":"topaz_mec2.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":262784,"date":"Aug 8 2019"},{"filename":"topaz_mec.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":262784,"date":"Aug 8 2019"},{"filename":"topaz_pfp.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17024,"date":"Aug 8 2019"},{"filename":"topaz_rlc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8448,"date":"Aug 8 2019"},{"filename":"topaz_sdma1.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8576,"date":"Aug 8 2019"},{"filename":"topaz_sdma.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8576,"date":"Aug 8 2019"},{"filename":"topaz_smc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":80544,"date":"Aug 8 2019"},{"filename":"vega10_acg_smc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":262912,"date":"Aug 8 2019"},{"filename":"vega10_asd.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":37376,"date":"Aug 8 2019"},{"filename":"vega10_ce.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":9344,"date":"Aug 8 2019"},{"filename":"vega10_gpu_info.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":316,"date":"Aug 8 2019"},{"filename":"vega10_me.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17536,"date":"Aug 8 2019"},{"filename":"vega10_mec2.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":268048,"date":"Aug 8 2019"},{"filename":"vega10_mec.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":268048,"date":"Aug 8 2019"},{"filename":"vega10_pfp.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":21632,"date":"Aug 8 2019"},{"filename":"vega10_rlc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17152,"date":"Aug 8 2019"},{"filename":"vega10_sdma1.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17408,"date":"Aug 8 2019"},{"filename":"vega10_sdma.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17408,"date":"Aug 8 2019"},{"filename":"vega10_smc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":262912,"date":"Aug 8 2019"},{"filename":"vega10_sos.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":150400,"date":"Aug 8 2019"},{"filename":"vega10_uvd.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":375424,"date":"Aug 8 2019"},{"filename":"vega10_vce.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":165344,"date":"Aug 8 2019"},{"filename":"vega12_asd.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":49664,"date":"Aug 8 2019"},{"filename":"vega12_ce.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":9344,"date":"Aug 8 2019"},{"filename":"vega12_gpu_info.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":316,"date":"Aug 8 2019"},{"filename":"vega12_me.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17536,"date":"Aug 8 2019"},{"filename":"vega12_mec2.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":268048,"date":"Aug 8 2019"},{"filename":"vega12_mec.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":268048,"date":"Aug 8 2019"},{"filename":"vega12_pfp.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":21632,"date":"Aug 8 2019"},{"filename":"vega12_rlc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":28636,"date":"Aug 8 2019"},{"filename":"vega12_sdma1.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17408,"date":"Aug 8 2019"},{"filename":"vega12_sdma.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17408,"date":"Aug 8 2019"},{"filename":"vega12_smc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":262912,"date":"Aug 8 2019"},{"filename":"vega12_sos.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":170896,"date":"Aug 8 2019"},{"filename":"vega12_uvd.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":374688,"date":"Aug 8 2019"},{"filename":"vega12_vce.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":165408,"date":"Aug 8 2019"},{"filename":"vega20_asd.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":57856,"date":"Aug 8 2019"},{"filename":"vega20_ce.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":9344,"date":"Aug 8 2019"},{"filename":"vega20_me.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17536,"date":"Aug 8 2019"},{"filename":"vega20_mec2.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":268048,"date":"Aug 8 2019"},{"filename":"vega20_mec.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":268048,"date":"Aug 8 2019"},{"filename":"vega20_pfp.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":21632,"date":"Aug 8 2019"},{"filename":"vega20_rlc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":32052,"date":"Aug 8 2019"},{"filename":"vega20_sdma1.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17408,"date":"Aug 8 2019"},{"filename":"vega20_sdma.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17408,"date":"Aug 8 2019"},{"filename":"vega20_smc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":262912,"date":"Aug 8 2019"},{"filename":"vega20_sos.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":166800,"date":"Aug 8 2019"},{"filename":"vega20_uvd.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":379328,"date":"Aug 8 2019"},{"filename":"vega20_vce.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":165408,"date":"Aug 8 2019"},{"filename":"vegam_ce.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8852,"date":"Aug 8 2019"},{"filename":"vegam_me.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17044,"date":"Aug 8 2019"},{"filename":"vegam_mec2.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":262824,"date":"Aug 8 2019"},{"filename":"vegam_mec.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":262824,"date":"Aug 8 2019"},{"filename":"vegam_pfp.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17044,"date":"Aug 8 2019"},{"filename":"vegam_rlc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":16660,"date":"Aug 8 2019"},{"filename":"vegam_sdma1.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":12692,"date":"Aug 8 2019"},{"filename":"vegam_sdma.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":12692,"date":"Aug 8 2019"},{"filename":"vegam_smc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":130964,"date":"Aug 8 2019"},{"filename":"vegam_uvd.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":375424,"date":"Aug 8 2019"},{"filename":"vegam_vce.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":166816,"date":"Aug 8 2019"},{"filename":"verde_ce.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"verde_k_smc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":63804,"date":"Aug 8 2019"},{"filename":"verde_mc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":32044,"date":"Aug 8 2019"},{"filename":"verde_me.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"verde_pfp.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"verde_rlc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8448,"date":"Aug 8 2019"},{"filename":"verde_smc.bin","parent":"/usr/lib/firmware/amdgpu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":61776,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/amd-ucode","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":264,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/amd-ucode","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"microcode_amd.bin","parent":"/usr/lib/firmware/amd-ucode","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":12684,"date":"Aug 8 2019"},{"filename":"microcode_amd.bin.asc","parent":"/usr/lib/firmware/amd-ucode","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":490,"date":"Aug 8 2019"},{"filename":"microcode_amd_fam15h.bin","parent":"/usr/lib/firmware/amd-ucode","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":7876,"date":"Aug 8 2019"},{"filename":"microcode_amd_fam15h.bin.asc","parent":"/usr/lib/firmware/amd-ucode","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":473,"date":"Aug 8 2019"},{"filename":"microcode_amd_fam16h.bin","parent":"/usr/lib/firmware/amd-ucode","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":3510,"date":"Aug 8 2019"},{"filename":"microcode_amd_fam16h.bin.asc","parent":"/usr/lib/firmware/amd-ucode","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":473,"date":"Aug 8 2019"},{"filename":"microcode_amd_fam17h.bin","parent":"/usr/lib/firmware/amd-ucode","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":6476,"date":"Aug 8 2019"},{"filename":"microcode_amd_fam17h.bin.asc","parent":"/usr/lib/firmware/amd-ucode","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":833,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/ar3k","flags":"drwxr-xr-x.","links":8,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/ar3k","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"1020200","parent":"/usr/lib/firmware/ar3k","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":67,"date":"Oct 16 09:22"},{"filename":"1020201","parent":"/usr/lib/firmware/ar3k","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":45,"date":"Oct 16 09:22"},{"filename":"1020201coex","parent":"/usr/lib/firmware/ar3k","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":50,"date":"Oct 16 09:22"},{"filename":"30000","parent":"/usr/lib/firmware/ar3k","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":67,"date":"Oct 16 09:22"},{"filename":"30101","parent":"/usr/lib/firmware/ar3k","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":67,"date":"Oct 16 09:22"},{"filename":"30101coex","parent":"/usr/lib/firmware/ar3k","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":126,"date":"Oct 16 09:22"},{"filename":"AthrBT_0x01020001.dfu","parent":"/usr/lib/firmware/ar3k","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":55244,"date":"Aug 8 2019"},{"filename":"AthrBT_0x01020200.dfu","parent":"/usr/lib/firmware/ar3k","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":40724,"date":"Aug 8 2019"},{"filename":"AthrBT_0x01020201.dfu","parent":"/usr/lib/firmware/ar3k","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":48188,"date":"Aug 8 2019"},{"filename":"AthrBT_0x11020000.dfu","parent":"/usr/lib/firmware/ar3k","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":36828,"date":"Aug 8 2019"},{"filename":"AthrBT_0x11020100.dfu","parent":"/usr/lib/firmware/ar3k","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":46852,"date":"Aug 8 2019"},{"filename":"AthrBT_0x31010000.dfu","parent":"/usr/lib/firmware/ar3k","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":40652,"date":"Aug 8 2019"},{"filename":"AthrBT_0x31010100.dfu","parent":"/usr/lib/firmware/ar3k","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":37796,"date":"Aug 8 2019"},{"filename":"AthrBT_0x41020000.dfu","parent":"/usr/lib/firmware/ar3k","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":31500,"date":"Aug 8 2019"},{"filename":"ramps_0x01020001_26.dfu","parent":"/usr/lib/firmware/ar3k","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1224,"date":"Aug 8 2019"},{"filename":"ramps_0x01020200_26.dfu","parent":"/usr/lib/firmware/ar3k","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1274,"date":"Aug 8 2019"},{"filename":"ramps_0x01020200_40.dfu","parent":"/usr/lib/firmware/ar3k","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1204,"date":"Aug 8 2019"},{"filename":"ramps_0x01020201_26.dfu","parent":"/usr/lib/firmware/ar3k","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":264,"date":"Aug 8 2019"},{"filename":"ramps_0x01020201_40.dfu","parent":"/usr/lib/firmware/ar3k","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":264,"date":"Aug 8 2019"},{"filename":"ramps_0x11020000_40.dfu","parent":"/usr/lib/firmware/ar3k","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1796,"date":"Aug 8 2019"},{"filename":"ramps_0x11020100_40.dfu","parent":"/usr/lib/firmware/ar3k","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1802,"date":"Aug 8 2019"},{"filename":"ramps_0x31010000_40.dfu","parent":"/usr/lib/firmware/ar3k","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1926,"date":"Aug 8 2019"},{"filename":"ramps_0x31010100_40.dfu","parent":"/usr/lib/firmware/ar3k","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1922,"date":"Aug 8 2019"},{"filename":"ramps_0x41020000_40.dfu","parent":"/usr/lib/firmware/ar3k","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1820,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/ar3k/1020200","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":67,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/ar3k/1020200","flags":"drwxr-xr-x.","links":8,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"ar3kbdaddr.pst","parent":"/usr/lib/firmware/ar3k/1020200","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":14,"date":"Aug 8 2019"},{"filename":"PS_ASIC.pst","parent":"/usr/lib/firmware/ar3k/1020200","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4742,"date":"Aug 8 2019"},{"filename":"RamPatch.txt","parent":"/usr/lib/firmware/ar3k/1020200","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":52221,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/ar3k/1020201","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":45,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/ar3k/1020201","flags":"drwxr-xr-x.","links":8,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"PS_ASIC.pst","parent":"/usr/lib/firmware/ar3k/1020201","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":910,"date":"Aug 8 2019"},{"filename":"RamPatch.txt","parent":"/usr/lib/firmware/ar3k/1020201","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":34299,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/ar3k/1020201coex","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":50,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/ar3k/1020201coex","flags":"drwxr-xr-x.","links":8,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"ramps_0x01020201_26_HighPriority.dfu","parent":"/usr/lib/firmware/ar3k/1020201coex","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":336,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/ar3k/30000","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":67,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/ar3k/30000","flags":"drwxr-xr-x.","links":8,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"ar3kbdaddr.pst","parent":"/usr/lib/firmware/ar3k/30000","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":14,"date":"Aug 8 2019"},{"filename":"PS_ASIC.pst","parent":"/usr/lib/firmware/ar3k/30000","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1353,"date":"Aug 8 2019"},{"filename":"RamPatch.txt","parent":"/usr/lib/firmware/ar3k/30000","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2776,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/ar3k/30101","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":67,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/ar3k/30101","flags":"drwxr-xr-x.","links":8,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"ar3kbdaddr.pst","parent":"/usr/lib/firmware/ar3k/30101","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":14,"date":"Aug 8 2019"},{"filename":"PS_ASIC.pst","parent":"/usr/lib/firmware/ar3k/30101","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1479,"date":"Aug 8 2019"},{"filename":"RamPatch.txt","parent":"/usr/lib/firmware/ar3k/30101","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17300,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/ar3k/30101coex","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":126,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/ar3k/30101coex","flags":"drwxr-xr-x.","links":8,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"ar3kbdaddr.pst","parent":"/usr/lib/firmware/ar3k/30101coex","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":13,"date":"Aug 8 2019"},{"filename":"PS_ASIC_aclHighPri.pst","parent":"/usr/lib/firmware/ar3k/30101coex","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2166,"date":"Aug 8 2019"},{"filename":"PS_ASIC_aclLowPri.pst","parent":"/usr/lib/firmware/ar3k/30101coex","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2166,"date":"Aug 8 2019"},{"filename":"PS_ASIC.pst","parent":"/usr/lib/firmware/ar3k/30101coex","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2166,"date":"Aug 8 2019"},{"filename":"RamPatch.txt","parent":"/usr/lib/firmware/ar3k/30101coex","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":19436,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/asihpi","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":158,"date":"Aug 15 2019"},{"filename":"..","parent":"/usr/lib/firmware/asihpi","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"dsp2400.bin","parent":"/usr/lib/firmware/asihpi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":255196,"date":"Mar 5 2015"},{"filename":"dsp5000.bin","parent":"/usr/lib/firmware/asihpi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":186396,"date":"Mar 5 2015"},{"filename":"dsp6200.bin","parent":"/usr/lib/firmware/asihpi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":848608,"date":"Mar 5 2015"},{"filename":"dsp6205.bin","parent":"/usr/lib/firmware/asihpi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":59548,"date":"Mar 5 2015"},{"filename":"dsp6400.bin","parent":"/usr/lib/firmware/asihpi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":646928,"date":"Mar 5 2015"},{"filename":"dsp6600.bin","parent":"/usr/lib/firmware/asihpi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":649812,"date":"Mar 5 2015"},{"filename":"dsp8700.bin","parent":"/usr/lib/firmware/asihpi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":364996,"date":"Mar 5 2015"},{"filename":"dsp8900.bin","parent":"/usr/lib/firmware/asihpi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":507124,"date":"Mar 5 2015"},{"filename":".","parent":"/usr/lib/firmware/ath10k","flags":"drwxr-xr-x.","links":10,"owner":"root","group":"root","size":126,"date":"Aug 8 2019"},{"filename":"..","parent":"/usr/lib/firmware/ath10k","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"QCA4019","parent":"/usr/lib/firmware/ath10k","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":19,"date":"Aug 8 2019"},{"filename":"QCA6174","parent":"/usr/lib/firmware/ath10k","flags":"drwxr-xr-x.","links":4,"owner":"root","group":"root","size":32,"date":"Aug 8 2019"},{"filename":"QCA9377","parent":"/usr/lib/firmware/ath10k","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":19,"date":"Aug 8 2019"},{"filename":"QCA9887","parent":"/usr/lib/firmware/ath10k","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":19,"date":"Aug 8 2019"},{"filename":"QCA9888","parent":"/usr/lib/firmware/ath10k","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":19,"date":"Aug 8 2019"},{"filename":"QCA988X","parent":"/usr/lib/firmware/ath10k","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":19,"date":"Aug 8 2019"},{"filename":"QCA9984","parent":"/usr/lib/firmware/ath10k","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":19,"date":"Aug 8 2019"},{"filename":"QCA99X0","parent":"/usr/lib/firmware/ath10k","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":19,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/ath10k/QCA4019","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":19,"date":"Aug 8 2019"},{"filename":"..","parent":"/usr/lib/firmware/ath10k/QCA4019","flags":"drwxr-xr-x.","links":10,"owner":"root","group":"root","size":126,"date":"Aug 8 2019"},{"filename":"hw1.0","parent":"/usr/lib/firmware/ath10k/QCA4019","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":83,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/ath10k/QCA4019/hw1.0","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":83,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/ath10k/QCA4019/hw1.0","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":19,"date":"Aug 8 2019"},{"filename":"board-2.bin","parent":"/usr/lib/firmware/ath10k/QCA4019/hw1.0","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":449316,"date":"Aug 8 2019"},{"filename":"firmware-5.bin","parent":"/usr/lib/firmware/ath10k/QCA4019/hw1.0","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":583344,"date":"Aug 8 2019"},{"filename":"notice_ath10k_firmware-5.txt","parent":"/usr/lib/firmware/ath10k/QCA4019/hw1.0","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":30479,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/ath10k/QCA6174","flags":"drwxr-xr-x.","links":4,"owner":"root","group":"root","size":32,"date":"Aug 8 2019"},{"filename":"..","parent":"/usr/lib/firmware/ath10k/QCA6174","flags":"drwxr-xr-x.","links":10,"owner":"root","group":"root","size":126,"date":"Aug 8 2019"},{"filename":"hw2.1","parent":"/usr/lib/firmware/ath10k/QCA6174","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":100,"date":"Oct 16 09:22"},{"filename":"hw3.0","parent":"/usr/lib/firmware/ath10k/QCA6174","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":158,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/ath10k/QCA6174/hw2.1","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":100,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/ath10k/QCA6174/hw2.1","flags":"drwxr-xr-x.","links":4,"owner":"root","group":"root","size":32,"date":"Aug 8 2019"},{"filename":"board-2.bin","parent":"/usr/lib/firmware/ath10k/QCA6174/hw2.1","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":263188,"date":"Aug 8 2019"},{"filename":"board.bin","parent":"/usr/lib/firmware/ath10k/QCA6174/hw2.1","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8124,"date":"Aug 8 2019"},{"filename":"firmware-5.bin","parent":"/usr/lib/firmware/ath10k/QCA6174/hw2.1","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":498172,"date":"Aug 8 2019"},{"filename":"notice_ath10k_firmware-5.txt","parent":"/usr/lib/firmware/ath10k/QCA6174/hw2.1","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":46087,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/ath10k/QCA6174/hw3.0","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":158,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/ath10k/QCA6174/hw3.0","flags":"drwxr-xr-x.","links":4,"owner":"root","group":"root","size":32,"date":"Aug 8 2019"},{"filename":"board-2.bin","parent":"/usr/lib/firmware/ath10k/QCA6174/hw3.0","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":567608,"date":"Aug 8 2019"},{"filename":"board.bin","parent":"/usr/lib/firmware/ath10k/QCA6174/hw3.0","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8124,"date":"Aug 8 2019"},{"filename":"firmware-4.bin","parent":"/usr/lib/firmware/ath10k/QCA6174/hw3.0","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":733784,"date":"Aug 8 2019"},{"filename":"firmware-6.bin","parent":"/usr/lib/firmware/ath10k/QCA6174/hw3.0","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":731276,"date":"Aug 8 2019"},{"filename":"notice_ath10k_firmware-4.txt","parent":"/usr/lib/firmware/ath10k/QCA6174/hw3.0","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":79689,"date":"Aug 8 2019"},{"filename":"notice_ath10k_firmware-6.txt","parent":"/usr/lib/firmware/ath10k/QCA6174/hw3.0","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":53425,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/ath10k/QCA9377","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":19,"date":"Aug 8 2019"},{"filename":"..","parent":"/usr/lib/firmware/ath10k/QCA9377","flags":"drwxr-xr-x.","links":10,"owner":"root","group":"root","size":126,"date":"Aug 8 2019"},{"filename":"hw1.0","parent":"/usr/lib/firmware/ath10k/QCA9377","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":158,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/ath10k/QCA9377/hw1.0","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":158,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/ath10k/QCA9377/hw1.0","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":19,"date":"Aug 8 2019"},{"filename":"board-2.bin","parent":"/usr/lib/firmware/ath10k/QCA9377/hw1.0","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":304308,"date":"Aug 8 2019"},{"filename":"board.bin","parent":"/usr/lib/firmware/ath10k/QCA9377/hw1.0","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8124,"date":"Aug 8 2019"},{"filename":"firmware-5.bin","parent":"/usr/lib/firmware/ath10k/QCA9377/hw1.0","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":783336,"date":"Aug 8 2019"},{"filename":"firmware-6.bin","parent":"/usr/lib/firmware/ath10k/QCA9377/hw1.0","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":751436,"date":"Aug 8 2019"},{"filename":"notice_ath10k_firmware-5.txt","parent":"/usr/lib/firmware/ath10k/QCA9377/hw1.0","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":46143,"date":"Aug 8 2019"},{"filename":"notice_ath10k_firmware-6.txt","parent":"/usr/lib/firmware/ath10k/QCA9377/hw1.0","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":53425,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/ath10k/QCA9887","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":19,"date":"Aug 8 2019"},{"filename":"..","parent":"/usr/lib/firmware/ath10k/QCA9887","flags":"drwxr-xr-x.","links":10,"owner":"root","group":"root","size":126,"date":"Aug 8 2019"},{"filename":"hw1.0","parent":"/usr/lib/firmware/ath10k/QCA9887","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":81,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/ath10k/QCA9887/hw1.0","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":81,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/ath10k/QCA9887/hw1.0","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":19,"date":"Aug 8 2019"},{"filename":"board.bin","parent":"/usr/lib/firmware/ath10k/QCA9887/hw1.0","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1024,"date":"Aug 8 2019"},{"filename":"firmware-5.bin","parent":"/usr/lib/firmware/ath10k/QCA9887/hw1.0","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":237660,"date":"Aug 8 2019"},{"filename":"notice_ath10k_firmware-5.txt","parent":"/usr/lib/firmware/ath10k/QCA9887/hw1.0","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":15441,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/ath10k/QCA9888","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":19,"date":"Aug 8 2019"},{"filename":"..","parent":"/usr/lib/firmware/ath10k/QCA9888","flags":"drwxr-xr-x.","links":10,"owner":"root","group":"root","size":126,"date":"Aug 8 2019"},{"filename":"hw2.0","parent":"/usr/lib/firmware/ath10k/QCA9888","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":83,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/ath10k/QCA9888/hw2.0","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":83,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/ath10k/QCA9888/hw2.0","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":19,"date":"Aug 8 2019"},{"filename":"board-2.bin","parent":"/usr/lib/firmware/ath10k/QCA9888/hw2.0","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":84928,"date":"Aug 8 2019"},{"filename":"firmware-5.bin","parent":"/usr/lib/firmware/ath10k/QCA9888/hw2.0","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":688536,"date":"Aug 8 2019"},{"filename":"notice_ath10k_firmware-5.txt","parent":"/usr/lib/firmware/ath10k/QCA9888/hw2.0","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":30479,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/ath10k/QCA988X","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":19,"date":"Aug 8 2019"},{"filename":"..","parent":"/usr/lib/firmware/ath10k/QCA988X","flags":"drwxr-xr-x.","links":10,"owner":"root","group":"root","size":126,"date":"Aug 8 2019"},{"filename":"hw2.0","parent":"/usr/lib/firmware/ath10k/QCA988X","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":139,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/ath10k/QCA988X/hw2.0","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":139,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/ath10k/QCA988X/hw2.0","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":19,"date":"Aug 8 2019"},{"filename":"board.bin","parent":"/usr/lib/firmware/ath10k/QCA988X/hw2.0","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2116,"date":"Aug 8 2019"},{"filename":"firmware-4.bin","parent":"/usr/lib/firmware/ath10k/QCA988X/hw2.0","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":241892,"date":"Aug 8 2019"},{"filename":"firmware-5.bin","parent":"/usr/lib/firmware/ath10k/QCA988X/hw2.0","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":248840,"date":"Aug 8 2019"},{"filename":"notice_ath10k_firmware-4.txt","parent":"/usr/lib/firmware/ath10k/QCA988X/hw2.0","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":13890,"date":"Aug 8 2019"},{"filename":"notice_ath10k_firmware-5.txt","parent":"/usr/lib/firmware/ath10k/QCA988X/hw2.0","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":15441,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/ath10k/QCA9984","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":19,"date":"Aug 8 2019"},{"filename":"..","parent":"/usr/lib/firmware/ath10k/QCA9984","flags":"drwxr-xr-x.","links":10,"owner":"root","group":"root","size":126,"date":"Aug 8 2019"},{"filename":"hw1.0","parent":"/usr/lib/firmware/ath10k/QCA9984","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":83,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/ath10k/QCA9984/hw1.0","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":83,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/ath10k/QCA9984/hw1.0","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":19,"date":"Aug 8 2019"},{"filename":"board-2.bin","parent":"/usr/lib/firmware/ath10k/QCA9984/hw1.0","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":171916,"date":"Aug 8 2019"},{"filename":"firmware-5.bin","parent":"/usr/lib/firmware/ath10k/QCA9984/hw1.0","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":676316,"date":"Aug 8 2019"},{"filename":"notice_ath10k_firmware-5.txt","parent":"/usr/lib/firmware/ath10k/QCA9984/hw1.0","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":30479,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/ath10k/QCA99X0","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":19,"date":"Aug 8 2019"},{"filename":"..","parent":"/usr/lib/firmware/ath10k/QCA99X0","flags":"drwxr-xr-x.","links":10,"owner":"root","group":"root","size":126,"date":"Aug 8 2019"},{"filename":"hw2.0","parent":"/usr/lib/firmware/ath10k/QCA99X0","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":81,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/ath10k/QCA99X0/hw2.0","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":81,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/ath10k/QCA99X0/hw2.0","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":19,"date":"Aug 8 2019"},{"filename":"board.bin","parent":"/usr/lib/firmware/ath10k/QCA99X0/hw2.0","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":12064,"date":"Aug 8 2019"},{"filename":"firmware-5.bin","parent":"/usr/lib/firmware/ath10k/QCA99X0/hw2.0","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":479332,"date":"Aug 8 2019"},{"filename":"notice_ath10k_firmware-5.txt","parent":"/usr/lib/firmware/ath10k/QCA99X0/hw2.0","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":29133,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/ath9k_htc","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":56,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/ath9k_htc","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"htc_7010-1.4.0.fw","parent":"/usr/lib/firmware/ath9k_htc","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":72812,"date":"Aug 8 2019"},{"filename":"htc_9271-1.4.0.fw","parent":"/usr/lib/firmware/ath9k_htc","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":51008,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/atmel","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":116,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/atmel","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"wilc1000_ap_fw.bin","parent":"/usr/lib/firmware/atmel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":109828,"date":"Aug 8 2019"},{"filename":"wilc1000_fw.bin","parent":"/usr/lib/firmware/atmel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":124540,"date":"Aug 8 2019"},{"filename":"wilc1000_p2p_fw.bin","parent":"/usr/lib/firmware/atmel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":143116,"date":"Aug 8 2019"},{"filename":"wilc1000_wifi_firmware.bin","parent":"/usr/lib/firmware/atmel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":136344,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/atusb","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":86,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/atusb","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"atusb-0.2.dfu","parent":"/usr/lib/firmware/atusb","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":5800,"date":"Aug 8 2019"},{"filename":"atusb-0.3.dfu","parent":"/usr/lib/firmware/atusb","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":6042,"date":"Aug 8 2019"},{"filename":"ChangeLog","parent":"/usr/lib/firmware/atusb","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1019,"date":"Aug 8 2019"},{"filename":"rzusb-0.3.bin","parent":"/usr/lib/firmware/atusb","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":6058,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/av7110","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":56,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/av7110","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"bootcode.bin","parent":"/usr/lib/firmware/av7110","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":212,"date":"Aug 8 2019"},{"filename":"Boot.S","parent":"/usr/lib/firmware/av7110","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2820,"date":"Aug 8 2019"},{"filename":"Makefile","parent":"/usr/lib/firmware/av7110","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":264,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/bnx2","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/bnx2","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"bnx2-mips-06-4.6.16.fw","parent":"/usr/lib/firmware/bnx2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":92628,"date":"Aug 8 2019"},{"filename":"bnx2-mips-06-5.0.0.j3.fw","parent":"/usr/lib/firmware/bnx2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":93172,"date":"Aug 8 2019"},{"filename":"bnx2-mips-06-5.0.0.j6.fw","parent":"/usr/lib/firmware/bnx2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":94252,"date":"Aug 8 2019"},{"filename":"bnx2-mips-06-6.0.15.fw","parent":"/usr/lib/firmware/bnx2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":92780,"date":"Aug 8 2019"},{"filename":"bnx2-mips-06-6.2.1.fw","parent":"/usr/lib/firmware/bnx2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":92792,"date":"Aug 8 2019"},{"filename":"bnx2-mips-06-6.2.3.fw","parent":"/usr/lib/firmware/bnx2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":92824,"date":"Aug 8 2019"},{"filename":"bnx2-mips-09-4.6.17.fw","parent":"/usr/lib/firmware/bnx2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":92760,"date":"Aug 8 2019"},{"filename":"bnx2-mips-09-5.0.0.j15.fw","parent":"/usr/lib/firmware/bnx2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":96996,"date":"Aug 8 2019"},{"filename":"bnx2-mips-09-5.0.0.j3.fw","parent":"/usr/lib/firmware/bnx2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":96504,"date":"Aug 8 2019"},{"filename":"bnx2-mips-09-5.0.0.j9.fw","parent":"/usr/lib/firmware/bnx2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":96616,"date":"Aug 8 2019"},{"filename":"bnx2-mips-09-6.0.17.fw","parent":"/usr/lib/firmware/bnx2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":103488,"date":"Aug 8 2019"},{"filename":"bnx2-mips-09-6.2.1a.fw","parent":"/usr/lib/firmware/bnx2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":103868,"date":"Aug 8 2019"},{"filename":"bnx2-mips-09-6.2.1b.fw","parent":"/usr/lib/firmware/bnx2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":103904,"date":"Aug 8 2019"},{"filename":"bnx2-mips-09-6.2.1.fw","parent":"/usr/lib/firmware/bnx2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":104104,"date":"Aug 8 2019"},{"filename":"bnx2-rv2p-06-4.6.16.fw","parent":"/usr/lib/firmware/bnx2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":6872,"date":"Aug 8 2019"},{"filename":"bnx2-rv2p-06-5.0.0.j3.fw","parent":"/usr/lib/firmware/bnx2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":6600,"date":"Aug 8 2019"},{"filename":"bnx2-rv2p-06-6.0.15.fw","parent":"/usr/lib/firmware/bnx2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":5696,"date":"Aug 8 2019"},{"filename":"bnx2-rv2p-09-4.6.15.fw","parent":"/usr/lib/firmware/bnx2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":7672,"date":"Aug 8 2019"},{"filename":"bnx2-rv2p-09-5.0.0.j10.fw","parent":"/usr/lib/firmware/bnx2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":7224,"date":"Aug 8 2019"},{"filename":"bnx2-rv2p-09-5.0.0.j3.fw","parent":"/usr/lib/firmware/bnx2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":7216,"date":"Aug 8 2019"},{"filename":"bnx2-rv2p-09-6.0.17.fw","parent":"/usr/lib/firmware/bnx2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":6104,"date":"Aug 8 2019"},{"filename":"bnx2-rv2p-09ax-5.0.0.j10.fw","parent":"/usr/lib/firmware/bnx2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":7808,"date":"Aug 8 2019"},{"filename":"bnx2-rv2p-09ax-5.0.0.j3.fw","parent":"/usr/lib/firmware/bnx2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":7800,"date":"Aug 8 2019"},{"filename":"bnx2-rv2p-09ax-6.0.17.fw","parent":"/usr/lib/firmware/bnx2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":6616,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/bnx2x","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/bnx2x","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"bnx2x-e1-6.0.34.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":151568,"date":"Aug 8 2019"},{"filename":"bnx2x-e1-6.2.5.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":151680,"date":"Aug 8 2019"},{"filename":"bnx2x-e1-6.2.9.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":151688,"date":"Aug 8 2019"},{"filename":"bnx2x-e1-7.0.20.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":161144,"date":"Aug 8 2019"},{"filename":"bnx2x-e1-7.0.23.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":161248,"date":"Aug 8 2019"},{"filename":"bnx2x-e1-7.0.29.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":161368,"date":"Aug 8 2019"},{"filename":"bnx2x-e1-7.10.51.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":164392,"date":"Aug 8 2019"},{"filename":"bnx2x-e1-7.12.30.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":170192,"date":"Aug 8 2019"},{"filename":"bnx2x-e1-7.13.1.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":170096,"date":"Aug 8 2019"},{"filename":"bnx2x-e1-7.13.11.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":169904,"date":"Aug 8 2019"},{"filename":"bnx2x-e1-7.2.16.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":162128,"date":"Aug 8 2019"},{"filename":"bnx2x-e1-7.2.51.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":162152,"date":"Aug 8 2019"},{"filename":"bnx2x-e1-7.8.17.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":163576,"date":"Aug 8 2019"},{"filename":"bnx2x-e1-7.8.19.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":163592,"date":"Aug 8 2019"},{"filename":"bnx2x-e1-7.8.2.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":163352,"date":"Aug 8 2019"},{"filename":"bnx2x-e1h-6.0.34.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":210776,"date":"Aug 8 2019"},{"filename":"bnx2x-e1h-6.2.5.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":210824,"date":"Aug 8 2019"},{"filename":"bnx2x-e1h-6.2.9.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":211000,"date":"Aug 8 2019"},{"filename":"bnx2x-e1h-7.0.20.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":168552,"date":"Aug 8 2019"},{"filename":"bnx2x-e1h-7.0.23.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":168544,"date":"Aug 8 2019"},{"filename":"bnx2x-e1h-7.0.29.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":168680,"date":"Aug 8 2019"},{"filename":"bnx2x-e1h-7.10.51.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":173016,"date":"Aug 8 2019"},{"filename":"bnx2x-e1h-7.12.30.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":178984,"date":"Aug 8 2019"},{"filename":"bnx2x-e1h-7.13.1.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":178992,"date":"Aug 8 2019"},{"filename":"bnx2x-e1h-7.13.11.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":178328,"date":"Aug 8 2019"},{"filename":"bnx2x-e1h-7.2.16.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":169896,"date":"Aug 8 2019"},{"filename":"bnx2x-e1h-7.2.51.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":169960,"date":"Aug 8 2019"},{"filename":"bnx2x-e1h-7.8.17.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":171920,"date":"Aug 8 2019"},{"filename":"bnx2x-e1h-7.8.19.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":171920,"date":"Aug 8 2019"},{"filename":"bnx2x-e1h-7.8.2.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":171368,"date":"Aug 8 2019"},{"filename":"bnx2x-e2-6.0.34.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":247008,"date":"Aug 8 2019"},{"filename":"bnx2x-e2-6.2.5.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":247232,"date":"Aug 8 2019"},{"filename":"bnx2x-e2-6.2.9.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":247504,"date":"Aug 8 2019"},{"filename":"bnx2x-e2-7.0.20.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":290952,"date":"Aug 8 2019"},{"filename":"bnx2x-e2-7.0.23.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":289448,"date":"Aug 8 2019"},{"filename":"bnx2x-e2-7.0.29.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":289848,"date":"Aug 8 2019"},{"filename":"bnx2x-e2-7.10.51.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":321456,"date":"Aug 8 2019"},{"filename":"bnx2x-e2-7.12.30.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":321320,"date":"Aug 8 2019"},{"filename":"bnx2x-e2-7.13.1.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":320936,"date":"Aug 8 2019"},{"filename":"bnx2x-e2-7.13.11.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":322296,"date":"Aug 8 2019"},{"filename":"bnx2x-e2-7.2.16.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":295072,"date":"Aug 8 2019"},{"filename":"bnx2x-e2-7.2.51.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":295264,"date":"Aug 8 2019"},{"filename":"bnx2x-e2-7.8.17.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":310032,"date":"Aug 8 2019"},{"filename":"bnx2x-e2-7.8.19.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":310440,"date":"Aug 8 2019"},{"filename":"bnx2x-e2-7.8.2.0.fw","parent":"/usr/lib/firmware/bnx2x","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":304664,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/brcm","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/brcm","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"BCM-0bb4-0306.hcd","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":54734,"date":"Aug 8 2019"},{"filename":"bcm4329-fullmac-4.bin","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":269595,"date":"Aug 8 2019"},{"filename":"bcm43xx-0.fw","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":96224,"date":"Aug 8 2019"},{"filename":"bcm43xx_hdr-0.fw","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":180,"date":"Aug 8 2019"},{"filename":"brcmfmac43143.bin","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":397312,"date":"Aug 8 2019"},{"filename":"brcmfmac43143-sdio.bin","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":385067,"date":"Aug 8 2019"},{"filename":"brcmfmac43236b.bin","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":348160,"date":"Aug 8 2019"},{"filename":"brcmfmac43241b0-sdio.bin","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":455745,"date":"Aug 8 2019"},{"filename":"brcmfmac43241b4-sdio.bin","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":403855,"date":"Aug 8 2019"},{"filename":"brcmfmac43241b5-sdio.bin","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":408682,"date":"Aug 8 2019"},{"filename":"brcmfmac43242a.bin","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":479232,"date":"Aug 8 2019"},{"filename":"brcmfmac4329-sdio.bin","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":253748,"date":"Aug 8 2019"},{"filename":"brcmfmac4330-sdio.bin","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":222126,"date":"Aug 8 2019"},{"filename":"brcmfmac4330-sdio.Prowise-PT301.txt","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1509,"date":"Aug 8 2019"},{"filename":"brcmfmac43340-sdio.bin","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":400864,"date":"Aug 8 2019"},{"filename":"brcmfmac43340-sdio.meegopad-t08.txt","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1693,"date":"Aug 8 2019"},{"filename":"brcmfmac4334-sdio.bin","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":451566,"date":"Aug 8 2019"},{"filename":"brcmfmac4335-sdio.bin","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":569291,"date":"Aug 8 2019"},{"filename":"brcmfmac43362-sdio.bin","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":202107,"date":"Aug 8 2019"},{"filename":"brcmfmac43362-sdio.cubietech,cubietruck.txt","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":803,"date":"Aug 8 2019"},{"filename":"brcmfmac43362-sdio.lemaker,bananapro.txt","link_to":"brcmfmac43362-sdio.cubietech,cubietruck.txt","parent":"/usr/lib/firmware/brcm","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":43,"date":"Oct 16 09:22"},{"filename":"brcmfmac4339-sdio.bin","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":562183,"date":"Aug 8 2019"},{"filename":"brcmfmac43430a0-sdio.bin","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":382455,"date":"Aug 8 2019"},{"filename":"brcmfmac43430a0-sdio.jumper-ezpad-mini3.txt","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":951,"date":"Aug 8 2019"},{"filename":"brcmfmac43430a0-sdio.ONDA-V80 PLUS.txt","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":989,"date":"Aug 8 2019"},{"filename":"brcmfmac43430-sdio.AP6212.txt","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":875,"date":"Aug 8 2019"},{"filename":"brcmfmac43430-sdio.bin","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":388739,"date":"Aug 8 2019"},{"filename":"brcmfmac43430-sdio.Hampoo-D2D3_Vi8A1.txt","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":928,"date":"Aug 8 2019"},{"filename":"brcmfmac43430-sdio.MUR1DX.txt","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":831,"date":"Aug 8 2019"},{"filename":"brcmfmac43430-sdio.raspberrypi,3-model-b.txt","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":874,"date":"Aug 8 2019"},{"filename":"brcmfmac43455-sdio.bin","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":488193,"date":"Aug 8 2019"},{"filename":"brcmfmac43455-sdio.raspberrypi,3-model-b-plus.txt","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1864,"date":"Aug 8 2019"},{"filename":"brcmfmac4350c2-pcie.bin","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":623304,"date":"Aug 8 2019"},{"filename":"brcmfmac4350-pcie.bin","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":626140,"date":"Aug 8 2019"},{"filename":"brcmfmac4354-sdio.bin","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":605388,"date":"Aug 8 2019"},{"filename":"brcmfmac43569.bin","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":557056,"date":"Aug 8 2019"},{"filename":"brcmfmac4356-pcie.bin","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":648770,"date":"Aug 8 2019"},{"filename":"brcmfmac4356-pcie.gpd-win-pocket.txt","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2515,"date":"Aug 8 2019"},{"filename":"brcmfmac4356-sdio.bin","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":526383,"date":"Aug 8 2019"},{"filename":"brcmfmac43570-pcie.bin","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":550333,"date":"Aug 8 2019"},{"filename":"brcmfmac4358-pcie.bin","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":633817,"date":"Aug 8 2019"},{"filename":"brcmfmac43602-pcie.ap.bin","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":595472,"date":"Aug 8 2019"},{"filename":"brcmfmac43602-pcie.bin","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":635449,"date":"Aug 8 2019"},{"filename":"brcmfmac4366b-pcie.bin","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1105361,"date":"Aug 8 2019"},{"filename":"brcmfmac4366c-pcie.bin","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1120971,"date":"Aug 8 2019"},{"filename":"brcmfmac4371-pcie.bin","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":623448,"date":"Aug 8 2019"},{"filename":"brcmfmac4373.bin","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":479232,"date":"Aug 8 2019"},{"filename":"brcmfmac4373-sdio.bin","parent":"/usr/lib/firmware/brcm","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":457994,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/cadence","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":26,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/cadence","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"mhdp8546.bin","parent":"/usr/lib/firmware/cadence","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":131072,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/cavium","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":27,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/cavium","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"cnn55xx_se.fw","parent":"/usr/lib/firmware/cavium","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":35010,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/cis","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/cis","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"3CCFEM556.cis","parent":"/usr/lib/firmware/cis","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":137,"date":"Aug 8 2019"},{"filename":"3CXEM556.cis","parent":"/usr/lib/firmware/cis","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":134,"date":"Aug 8 2019"},{"filename":"COMpad2.cis","parent":"/usr/lib/firmware/cis","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":109,"date":"Aug 8 2019"},{"filename":"COMpad4.cis","parent":"/usr/lib/firmware/cis","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":76,"date":"Aug 8 2019"},{"filename":"DP83903.cis","parent":"/usr/lib/firmware/cis","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":136,"date":"Aug 8 2019"},{"filename":"LA-PCM.cis","parent":"/usr/lib/firmware/cis","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":253,"date":"Aug 8 2019"},{"filename":"Makefile","parent":"/usr/lib/firmware/cis","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":264,"date":"Aug 8 2019"},{"filename":"MT5634ZLX.cis","parent":"/usr/lib/firmware/cis","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":107,"date":"Aug 8 2019"},{"filename":"NE2K.cis","parent":"/usr/lib/firmware/cis","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":54,"date":"Aug 8 2019"},{"filename":"PCMLM28.cis","parent":"/usr/lib/firmware/cis","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":210,"date":"Aug 8 2019"},{"filename":"PE-200.cis","parent":"/usr/lib/firmware/cis","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":68,"date":"Aug 8 2019"},{"filename":"PE520.cis","parent":"/usr/lib/firmware/cis","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":74,"date":"Aug 8 2019"},{"filename":"RS-COM-2P.cis","parent":"/usr/lib/firmware/cis","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":86,"date":"Aug 8 2019"},{"filename":"src","parent":"/usr/lib/firmware/cis","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":254,"date":"Oct 16 09:22"},{"filename":"SW_555_SER.cis","parent":"/usr/lib/firmware/cis","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":122,"date":"Aug 8 2019"},{"filename":"SW_7xx_SER.cis","parent":"/usr/lib/firmware/cis","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":140,"date":"Aug 8 2019"},{"filename":"SW_8xx_SER.cis","parent":"/usr/lib/firmware/cis","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":132,"date":"Aug 8 2019"},{"filename":"tamarack.cis","parent":"/usr/lib/firmware/cis","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":85,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/cis/src","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":254,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/cis/src","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"3CCFEM556.cis","parent":"/usr/lib/firmware/cis/src","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":519,"date":"Aug 8 2019"},{"filename":"3CXEM556.cis","parent":"/usr/lib/firmware/cis/src","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":515,"date":"Aug 8 2019"},{"filename":"COMpad2.cis","parent":"/usr/lib/firmware/cis/src","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":576,"date":"Aug 8 2019"},{"filename":"COMpad4.cis","parent":"/usr/lib/firmware/cis/src","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":368,"date":"Aug 8 2019"},{"filename":"DP83903.cis","parent":"/usr/lib/firmware/cis/src","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":586,"date":"Aug 8 2019"},{"filename":"LA-PCM.cis","parent":"/usr/lib/firmware/cis/src","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1167,"date":"Aug 8 2019"},{"filename":"MT5634ZLX.cis","parent":"/usr/lib/firmware/cis/src","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":507,"date":"Aug 8 2019"},{"filename":"NE2K.cis","parent":"/usr/lib/firmware/cis/src","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":269,"date":"Aug 8 2019"},{"filename":"PCMLM28.cis","parent":"/usr/lib/firmware/cis/src","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1041,"date":"Aug 8 2019"},{"filename":"PE-200.cis","parent":"/usr/lib/firmware/cis/src","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":307,"date":"Aug 8 2019"},{"filename":"PE520.cis","parent":"/usr/lib/firmware/cis/src","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":300,"date":"Aug 8 2019"},{"filename":"RS-COM-2P.cis","parent":"/usr/lib/firmware/cis/src","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":441,"date":"Aug 8 2019"},{"filename":"tamarack.cis","parent":"/usr/lib/firmware/cis/src","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":475,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/cpia2","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":29,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/cpia2","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"stv0672_vp4.bin","parent":"/usr/lib/firmware/cpia2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":824,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/cs46xx","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":96,"date":"Aug 15 2019"},{"filename":"..","parent":"/usr/lib/firmware/cs46xx","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"ba1","parent":"/usr/lib/firmware/cs46xx","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":55320,"date":"Mar 5 2015"},{"filename":"cwc4630","parent":"/usr/lib/firmware/cs46xx","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":7880,"date":"Mar 5 2015"},{"filename":"cwcasync","parent":"/usr/lib/firmware/cs46xx","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":5228,"date":"Mar 5 2015"},{"filename":"cwcbinhack","parent":"/usr/lib/firmware/cs46xx","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":600,"date":"Mar 5 2015"},{"filename":"cwcdma","parent":"/usr/lib/firmware/cs46xx","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":3128,"date":"Mar 5 2015"},{"filename":"cwcsnoop","parent":"/usr/lib/firmware/cs46xx","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":592,"date":"Mar 5 2015"},{"filename":".","parent":"/usr/lib/firmware/cxgb3","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":253,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/cxgb3","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"ael2005_opt_edc.bin","parent":"/usr/lib/firmware/cxgb3","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1088,"date":"Aug 8 2019"},{"filename":"ael2005_twx_edc.bin","parent":"/usr/lib/firmware/cxgb3","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1468,"date":"Aug 8 2019"},{"filename":"ael2020_twx_edc.bin","parent":"/usr/lib/firmware/cxgb3","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1584,"date":"Aug 8 2019"},{"filename":"t3b_psram-1.1.0.bin","parent":"/usr/lib/firmware/cxgb3","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2564,"date":"Aug 8 2019"},{"filename":"t3c_psram-1.1.0.bin","parent":"/usr/lib/firmware/cxgb3","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2564,"date":"Aug 8 2019"},{"filename":"t3fw-7.0.0.bin","parent":"/usr/lib/firmware/cxgb3","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":30076,"date":"Aug 8 2019"},{"filename":"t3fw-7.10.0.bin","parent":"/usr/lib/firmware/cxgb3","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":30932,"date":"Aug 8 2019"},{"filename":"t3fw-7.1.0.bin","parent":"/usr/lib/firmware/cxgb3","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":30136,"date":"Aug 8 2019"},{"filename":"t3fw-7.12.0.bin","parent":"/usr/lib/firmware/cxgb3","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":31812,"date":"Aug 8 2019"},{"filename":"t3fw-7.4.0.bin","parent":"/usr/lib/firmware/cxgb3","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":30648,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/cxgb4","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":271,"date":"Oct 16 09:23"},{"filename":"..","parent":"/usr/lib/firmware/cxgb4","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"aq1202_fw.cld","parent":"/usr/lib/firmware/cxgb4","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":179202,"date":"Aug 8 2019"},{"filename":"bcm8483.bin","parent":"/usr/lib/firmware/cxgb4","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":208900,"date":"Aug 8 2019"},{"filename":"t4fw-1.14.4.0.bin","parent":"/usr/lib/firmware/cxgb4","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":539648,"date":"Aug 8 2019"},{"filename":"t4fw-1.15.37.0.bin","parent":"/usr/lib/firmware/cxgb4","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":541184,"date":"Aug 8 2019"},{"filename":"t4fw-1.23.4.0.bin","parent":"/usr/lib/firmware/cxgb4","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":570880,"date":"Aug 8 2019"},{"filename":"t4fw.bin","link_to":"t4fw-1.23.4.0.bin","parent":"/usr/lib/firmware/cxgb4","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":17,"date":"Oct 16 09:22"},{"filename":"t5fw-1.14.4.0.bin","parent":"/usr/lib/firmware/cxgb4","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":593920,"date":"Aug 8 2019"},{"filename":"t5fw-1.15.37.0.bin","parent":"/usr/lib/firmware/cxgb4","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":596992,"date":"Aug 8 2019"},{"filename":"t5fw-1.23.4.0.bin","parent":"/usr/lib/firmware/cxgb4","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":659456,"date":"Aug 8 2019"},{"filename":"t5fw.bin","link_to":"t5fw-1.23.4.0.bin","parent":"/usr/lib/firmware/cxgb4","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":17,"date":"Oct 16 09:22"},{"filename":"t6fw-1.23.4.0.bin","parent":"/usr/lib/firmware/cxgb4","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":708608,"date":"Aug 8 2019"},{"filename":"t6fw.bin","link_to":"t6fw-1.23.4.0.bin","parent":"/usr/lib/firmware/cxgb4","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":17,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/dabusb","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":46,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/dabusb","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"bitstream.bin","parent":"/usr/lib/firmware/dabusb","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":12042,"date":"Aug 8 2019"},{"filename":"firmware.fw","parent":"/usr/lib/firmware/dabusb","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":9822,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/dpaa2","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":16,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/dpaa2","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"mc","parent":"/usr/lib/firmware/dpaa2","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":96,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/dpaa2/mc","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":96,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/dpaa2/mc","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":16,"date":"Oct 16 09:22"},{"filename":"mc_10.10.0_ls1088a.itb","parent":"/usr/lib/firmware/dpaa2/mc","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":904152,"date":"Aug 8 2019"},{"filename":"mc_10.10.0_ls2088a.itb","parent":"/usr/lib/firmware/dpaa2/mc","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1012808,"date":"Aug 8 2019"},{"filename":"mc_10.10.0_lx2160a.itb","parent":"/usr/lib/firmware/dpaa2/mc","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1014024,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/dsp56k","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":70,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/dsp56k","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"bootstrap.bin","parent":"/usr/lib/firmware/dsp56k","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":375,"date":"Aug 8 2019"},{"filename":"concat-bootstrap.pl","parent":"/usr/lib/firmware/dsp56k","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":996,"date":"Aug 8 2019"},{"filename":"Makefile","parent":"/usr/lib/firmware/dsp56k","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":166,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/e100","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":75,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/e100","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"d101m_ucode.bin","parent":"/usr/lib/firmware/e100","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":539,"date":"Aug 8 2019"},{"filename":"d101s_ucode.bin","parent":"/usr/lib/firmware/e100","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":539,"date":"Aug 8 2019"},{"filename":"d102e_ucode.bin","parent":"/usr/lib/firmware/e100","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":539,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/ea","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 15 2019"},{"filename":"..","parent":"/usr/lib/firmware/ea","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"3g_asic.fw","parent":"/usr/lib/firmware/ea","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":78761,"date":"Mar 5 2015"},{"filename":"darla20_dsp.fw","parent":"/usr/lib/firmware/ea","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17162,"date":"Mar 5 2015"},{"filename":"darla24_dsp.fw","parent":"/usr/lib/firmware/ea","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":15018,"date":"Mar 5 2015"},{"filename":"echo3g_dsp.fw","parent":"/usr/lib/firmware/ea","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":35838,"date":"Mar 5 2015"},{"filename":"gina20_dsp.fw","parent":"/usr/lib/firmware/ea","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":19022,"date":"Mar 5 2015"},{"filename":"gina24_301_asic.fw","parent":"/usr/lib/firmware/ea","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":31146,"date":"Mar 5 2015"},{"filename":"gina24_301_dsp.fw","parent":"/usr/lib/firmware/ea","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":22342,"date":"Mar 5 2015"},{"filename":"gina24_361_asic.fw","parent":"/usr/lib/firmware/ea","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":31146,"date":"Mar 5 2015"},{"filename":"gina24_361_dsp.fw","parent":"/usr/lib/firmware/ea","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":22450,"date":"Mar 5 2015"},{"filename":"indigo_dj_dsp.fw","parent":"/usr/lib/firmware/ea","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":16270,"date":"Mar 5 2015"},{"filename":"indigo_djx_dsp.fw","parent":"/usr/lib/firmware/ea","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":15606,"date":"Mar 5 2015"},{"filename":"indigo_dsp.fw","parent":"/usr/lib/firmware/ea","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":15366,"date":"Mar 5 2015"},{"filename":"indigo_io_dsp.fw","parent":"/usr/lib/firmware/ea","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":16798,"date":"Mar 5 2015"},{"filename":"indigo_iox_dsp.fw","parent":"/usr/lib/firmware/ea","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":15554,"date":"Mar 5 2015"},{"filename":"layla20_asic.fw","parent":"/usr/lib/firmware/ea","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":32385,"date":"Mar 5 2015"},{"filename":"layla20_dsp.fw","parent":"/usr/lib/firmware/ea","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":24710,"date":"Mar 5 2015"},{"filename":"layla24_1_asic.fw","parent":"/usr/lib/firmware/ea","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":31146,"date":"Mar 5 2015"},{"filename":"layla24_2A_asic.fw","parent":"/usr/lib/firmware/ea","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":31146,"date":"Mar 5 2015"},{"filename":"layla24_2S_asic.fw","parent":"/usr/lib/firmware/ea","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":31146,"date":"Mar 5 2015"},{"filename":"layla24_dsp.fw","parent":"/usr/lib/firmware/ea","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":27930,"date":"Mar 5 2015"},{"filename":"loader_dsp.fw","parent":"/usr/lib/firmware/ea","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":634,"date":"Mar 5 2015"},{"filename":"mia_dsp.fw","parent":"/usr/lib/firmware/ea","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":20374,"date":"Mar 5 2015"},{"filename":"mona_2_asic.fw","parent":"/usr/lib/firmware/ea","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":31146,"date":"Mar 5 2015"},{"filename":"mona_301_1_asic_48.fw","parent":"/usr/lib/firmware/ea","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":31146,"date":"Mar 5 2015"},{"filename":"mona_301_1_asic_96.fw","parent":"/usr/lib/firmware/ea","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":31146,"date":"Mar 5 2015"},{"filename":"mona_301_dsp.fw","parent":"/usr/lib/firmware/ea","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":24130,"date":"Mar 5 2015"},{"filename":"mona_361_1_asic_48.fw","parent":"/usr/lib/firmware/ea","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":31146,"date":"Mar 5 2015"},{"filename":"mona_361_1_asic_96.fw","parent":"/usr/lib/firmware/ea","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":31146,"date":"Mar 5 2015"},{"filename":"mona_361_dsp.fw","parent":"/usr/lib/firmware/ea","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":24258,"date":"Mar 5 2015"},{"filename":".","parent":"/usr/lib/firmware/edgeport","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":85,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/edgeport","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"boot2.fw","parent":"/usr/lib/firmware/edgeport","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":7042,"date":"Aug 8 2019"},{"filename":"boot.fw","parent":"/usr/lib/firmware/edgeport","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":7250,"date":"Aug 8 2019"},{"filename":"down2.fw","parent":"/usr/lib/firmware/edgeport","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":16566,"date":"Aug 8 2019"},{"filename":"down3.bin","parent":"/usr/lib/firmware/edgeport","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":12942,"date":"Aug 8 2019"},{"filename":"down.fw","parent":"/usr/lib/firmware/edgeport","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":18098,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/emi26","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":62,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/emi26","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"bitstream.fw","parent":"/usr/lib/firmware/emi26","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":104858,"date":"Aug 8 2019"},{"filename":"firmware.fw","parent":"/usr/lib/firmware/emi26","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":28070,"date":"Aug 8 2019"},{"filename":"loader.fw","parent":"/usr/lib/firmware/emi26","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1942,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/emi62","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":74,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/emi62","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"bitstream.fw","parent":"/usr/lib/firmware/emi62","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":146490,"date":"Aug 8 2019"},{"filename":"loader.fw","parent":"/usr/lib/firmware/emi62","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1910,"date":"Aug 8 2019"},{"filename":"midi.fw","parent":"/usr/lib/firmware/emi62","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":28798,"date":"Aug 8 2019"},{"filename":"spdif.fw","parent":"/usr/lib/firmware/emi62","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":28606,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/emu","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":127,"date":"Aug 15 2019"},{"filename":"..","parent":"/usr/lib/firmware/emu","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"audio_dock.fw","parent":"/usr/lib/firmware/emu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":78756,"date":"Mar 5 2015"},{"filename":"emu0404.fw","parent":"/usr/lib/firmware/emu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":54908,"date":"Mar 5 2015"},{"filename":"emu1010b.fw","parent":"/usr/lib/firmware/emu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":72668,"date":"Mar 5 2015"},{"filename":"emu1010_notebook.fw","parent":"/usr/lib/firmware/emu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":54908,"date":"Mar 5 2015"},{"filename":"hana.fw","parent":"/usr/lib/firmware/emu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":78756,"date":"Mar 5 2015"},{"filename":"micro_dock.fw","parent":"/usr/lib/firmware/emu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":54908,"date":"Mar 5 2015"},{"filename":".","parent":"/usr/lib/firmware/ene-ub6250","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":123,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/ene-ub6250","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"ms_init.bin","parent":"/usr/lib/firmware/ene-ub6250","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2048,"date":"Aug 8 2019"},{"filename":"msp_rdwr.bin","parent":"/usr/lib/firmware/ene-ub6250","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2048,"date":"Aug 8 2019"},{"filename":"ms_rdwr.bin","parent":"/usr/lib/firmware/ene-ub6250","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2048,"date":"Aug 8 2019"},{"filename":"sd_init1.bin","parent":"/usr/lib/firmware/ene-ub6250","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2048,"date":"Aug 8 2019"},{"filename":"sd_init2.bin","parent":"/usr/lib/firmware/ene-ub6250","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2048,"date":"Aug 8 2019"},{"filename":"sd_rdwr.bin","parent":"/usr/lib/firmware/ene-ub6250","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2048,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/ess","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":69,"date":"Aug 15 2019"},{"filename":"..","parent":"/usr/lib/firmware/ess","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"maestro3_assp_kernel.fw","parent":"/usr/lib/firmware/ess","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1898,"date":"Mar 5 2015"},{"filename":"maestro3_assp_minisrc.fw","parent":"/usr/lib/firmware/ess","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":786,"date":"Mar 5 2015"},{"filename":".","parent":"/usr/lib/firmware/go7007","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":160,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/go7007","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"go7007fw.bin","parent":"/usr/lib/firmware/go7007","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":30800,"date":"Aug 8 2019"},{"filename":"go7007tv.bin","parent":"/usr/lib/firmware/go7007","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":124668,"date":"Aug 8 2019"},{"filename":"lr192.fw","parent":"/usr/lib/firmware/go7007","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":5793,"date":"Aug 8 2019"},{"filename":"px-m402u.fw","parent":"/usr/lib/firmware/go7007","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":5838,"date":"Aug 8 2019"},{"filename":"px-tv402u.fw","parent":"/usr/lib/firmware/go7007","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":6581,"date":"Aug 8 2019"},{"filename":"s2250-1.fw","parent":"/usr/lib/firmware/go7007","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1092,"date":"Aug 8 2019"},{"filename":"s2250-2.fw","parent":"/usr/lib/firmware/go7007","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":9508,"date":"Aug 8 2019"},{"filename":"wis-startrek.fw","parent":"/usr/lib/firmware/go7007","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":6381,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/i915","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/i915","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"bxt_dmc_ver1_07.bin","parent":"/usr/lib/firmware/i915","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8380,"date":"Aug 8 2019"},{"filename":"bxt_dmc_ver1.bin","link_to":"bxt_dmc_ver1_07.bin","parent":"/usr/lib/firmware/i915","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":19,"date":"Oct 16 09:22"},{"filename":"bxt_guc_ver8_7.bin","parent":"/usr/lib/firmware/i915","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":140928,"date":"Aug 8 2019"},{"filename":"bxt_guc_ver9_29.bin","parent":"/usr/lib/firmware/i915","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":146432,"date":"Aug 8 2019"},{"filename":"bxt_huc_ver01_07_1398.bin","parent":"/usr/lib/firmware/i915","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":154432,"date":"Aug 8 2019"},{"filename":"bxt_huc_ver01_8_2893.bin","parent":"/usr/lib/firmware/i915","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":146880,"date":"Aug 8 2019"},{"filename":"cnl_dmc_ver1_06.bin","parent":"/usr/lib/firmware/i915","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":11224,"date":"Aug 8 2019"},{"filename":"cnl_dmc_ver1_07.bin","parent":"/usr/lib/firmware/i915","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":11268,"date":"Aug 8 2019"},{"filename":"glk_dmc_ver1_04.bin","parent":"/usr/lib/firmware/i915","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8800,"date":"Aug 8 2019"},{"filename":"icl_dmc_ver1_07.bin","parent":"/usr/lib/firmware/i915","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":25716,"date":"Aug 8 2019"},{"filename":"kbl_dmc_ver1_01.bin","parent":"/usr/lib/firmware/i915","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8616,"date":"Aug 8 2019"},{"filename":"kbl_dmc_ver1_04.bin","parent":"/usr/lib/firmware/i915","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8840,"date":"Aug 8 2019"},{"filename":"kbl_dmc_ver1.bin","link_to":"kbl_dmc_ver1_01.bin","parent":"/usr/lib/firmware/i915","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":19,"date":"Oct 16 09:22"},{"filename":"kbl_guc_ver9_14.bin","parent":"/usr/lib/firmware/i915","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":142656,"date":"Aug 8 2019"},{"filename":"kbl_guc_ver9_39.bin","parent":"/usr/lib/firmware/i915","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":147776,"date":"Aug 8 2019"},{"filename":"kbl_huc_ver02_00_1810.bin","parent":"/usr/lib/firmware/i915","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":218688,"date":"Aug 8 2019"},{"filename":"skl_dmc_ver1_23.bin","parent":"/usr/lib/firmware/i915","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8824,"date":"Aug 8 2019"},{"filename":"skl_dmc_ver1_26.bin","parent":"/usr/lib/firmware/i915","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8928,"date":"Aug 8 2019"},{"filename":"skl_dmc_ver1_27.bin","parent":"/usr/lib/firmware/i915","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8928,"date":"Aug 8 2019"},{"filename":"skl_dmc_ver1.bin","link_to":"skl_dmc_ver1_26.bin","parent":"/usr/lib/firmware/i915","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":19,"date":"Oct 16 09:22"},{"filename":"skl_guc_ver1.bin","parent":"/usr/lib/firmware/i915","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":109636,"date":"Aug 8 2019"},{"filename":"skl_guc_ver4.bin","parent":"/usr/lib/firmware/i915","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":128320,"date":"Aug 8 2019"},{"filename":"skl_guc_ver6_1.bin","parent":"/usr/lib/firmware/i915","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":129024,"date":"Aug 8 2019"},{"filename":"skl_guc_ver6.bin","link_to":"skl_guc_ver6_1.bin","parent":"/usr/lib/firmware/i915","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":18,"date":"Oct 16 09:22"},{"filename":"skl_guc_ver9_33.bin","parent":"/usr/lib/firmware/i915","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":147520,"date":"Aug 8 2019"},{"filename":"skl_huc_ver01_07_1398.bin","parent":"/usr/lib/firmware/i915","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":140992,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/imx","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":18,"date":"Aug 8 2019"},{"filename":"..","parent":"/usr/lib/firmware/imx","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"sdma","parent":"/usr/lib/firmware/imx","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":50,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/imx/sdma","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":50,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/imx/sdma","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":18,"date":"Aug 8 2019"},{"filename":"sdma-imx6q.bin","parent":"/usr/lib/firmware/imx/sdma","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2196,"date":"Aug 8 2019"},{"filename":"sdma-imx7d.bin","parent":"/usr/lib/firmware/imx/sdma","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2302,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/intel","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":8192,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/intel","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"dsp_fw_bxtn.bin","link_to":"dsp_fw_bxtn_v3366.bin","parent":"/usr/lib/firmware/intel","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":21,"date":"Oct 16 09:22"},{"filename":"dsp_fw_bxtn_v2219.bin","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":505608,"date":"Aug 8 2019"},{"filename":"dsp_fw_bxtn_v3366.bin","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":505608,"date":"Aug 8 2019"},{"filename":"dsp_fw_cnl.bin","link_to":"dsp_fw_cnl_v1858.bin","parent":"/usr/lib/firmware/intel","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":20,"date":"Oct 16 09:22"},{"filename":"dsp_fw_cnl_v1191.bin","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":583852,"date":"Aug 8 2019"},{"filename":"dsp_fw_cnl_v1858.bin","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":583852,"date":"Aug 8 2019"},{"filename":"dsp_fw_glk.bin","link_to":"dsp_fw_glk_v3366.bin","parent":"/usr/lib/firmware/intel","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":20,"date":"Oct 16 09:22"},{"filename":"dsp_fw_glk_v1814.bin","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":505608,"date":"Aug 8 2019"},{"filename":"dsp_fw_glk_v2768.bin","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":505608,"date":"Aug 8 2019"},{"filename":"dsp_fw_glk_v2880.bin","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":505608,"date":"Aug 8 2019"},{"filename":"dsp_fw_glk_v3366.bin","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":505608,"date":"Aug 8 2019"},{"filename":"dsp_fw_kbl.bin","link_to":"dsp_fw_kbl_v3402.bin","parent":"/usr/lib/firmware/intel","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":20,"date":"Oct 16 09:22"},{"filename":"dsp_fw_kbl_v1037.bin","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":238920,"date":"Aug 8 2019"},{"filename":"dsp_fw_kbl_v2042.bin","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":238920,"date":"Aug 8 2019"},{"filename":"dsp_fw_kbl_v2630.bin","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":243016,"date":"Aug 8 2019"},{"filename":"dsp_fw_kbl_v3266.bin","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":243016,"date":"Aug 8 2019"},{"filename":"dsp_fw_kbl_v3402.bin","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":247112,"date":"Aug 8 2019"},{"filename":"dsp_fw_kbl_v3420.bin","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":243016,"date":"Aug 8 2019"},{"filename":"dsp_fw_kbl_v701.bin","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":238920,"date":"Aug 8 2019"},{"filename":"dsp_fw_release.bin","link_to":"dsp_fw_release_v3402.bin","parent":"/usr/lib/firmware/intel","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":24,"date":"Oct 16 09:22"},{"filename":"dsp_fw_release_v3402.bin","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":247112,"date":"Aug 8 2019"},{"filename":"dsp_fw_release_v969.bin","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":221184,"date":"Aug 8 2019"},{"filename":"fw_sst_0f28.bin","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":701622,"date":"Aug 8 2019"},{"filename":"fw_sst_0f28.bin-48kHz_i2s_master","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":265684,"date":"Aug 8 2019"},{"filename":"fw_sst_0f28_ssp0.bin","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":701622,"date":"Aug 8 2019"},{"filename":"fw_sst_22a8.bin","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":701694,"date":"Aug 8 2019"},{"filename":"ibt-11-5.ddc","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":18,"date":"Aug 8 2019"},{"filename":"ibt-11-5.sfi","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":588196,"date":"Aug 8 2019"},{"filename":"ibt-12-16.ddc","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":14,"date":"Aug 8 2019"},{"filename":"ibt-12-16.sfi","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":585628,"date":"Aug 8 2019"},{"filename":"ibt-17-0-1.ddc","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":14,"date":"Aug 8 2019"},{"filename":"ibt-17-0-1.sfi","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":625216,"date":"Aug 8 2019"},{"filename":"ibt-17-16-1.ddc","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":14,"date":"Aug 8 2019"},{"filename":"ibt-17-16-1.sfi","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":648108,"date":"Aug 8 2019"},{"filename":"ibt-17-1.ddc","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":14,"date":"Aug 8 2019"},{"filename":"ibt-17-1.sfi","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":625216,"date":"Aug 8 2019"},{"filename":"ibt-17-2.ddc","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":14,"date":"Aug 8 2019"},{"filename":"ibt-17-2.sfi","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":648108,"date":"Aug 8 2019"},{"filename":"ibt-18-0-1.ddc","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":14,"date":"Aug 8 2019"},{"filename":"ibt-18-0-1.sfi","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":625216,"date":"Aug 8 2019"},{"filename":"ibt-18-16-1.ddc","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":14,"date":"Aug 8 2019"},{"filename":"ibt-18-16-1.sfi","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":648108,"date":"Aug 8 2019"},{"filename":"ibt-18-1.ddc","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":14,"date":"Aug 8 2019"},{"filename":"ibt-18-1.sfi","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":625216,"date":"Aug 8 2019"},{"filename":"ibt-18-2.ddc","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":14,"date":"Aug 8 2019"},{"filename":"ibt-18-2.sfi","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":648108,"date":"Aug 8 2019"},{"filename":"ibt-hw-37.7.10-fw-1.0.1.2d.d.bseq","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":22069,"date":"Aug 8 2019"},{"filename":"ibt-hw-37.7.10-fw-1.0.2.3.d.bseq","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":25853,"date":"Aug 8 2019"},{"filename":"ibt-hw-37.7.10-fw-1.80.1.2d.d.bseq","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":23105,"date":"Aug 8 2019"},{"filename":"ibt-hw-37.7.10-fw-1.80.2.3.d.bseq","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":25775,"date":"Aug 8 2019"},{"filename":"ibt-hw-37.7.bseq","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":96,"date":"Aug 8 2019"},{"filename":"ibt-hw-37.8.10-fw-1.10.2.27.d.bseq","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":31056,"date":"Aug 8 2019"},{"filename":"ibt-hw-37.8.10-fw-1.10.3.11.e.bseq","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":39295,"date":"Aug 8 2019"},{"filename":"ibt-hw-37.8.10-fw-22.50.19.14.f.bseq","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":48587,"date":"Aug 8 2019"},{"filename":"ibt-hw-37.8.bseq","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":96,"date":"Aug 8 2019"},{"filename":"IntcSST2.bin","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":260320,"date":"Aug 8 2019"},{"filename":"ipu3-fw.bin","link_to":"irci_irci_ecr-master_20161208_0213_20170112_1500.bin","parent":"/usr/lib/firmware/intel","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":52,"date":"Oct 16 09:22"},{"filename":"irci_irci_ecr-master_20161208_0213_20170112_1500.bin","parent":"/usr/lib/firmware/intel","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1212984,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/isci","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":119,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/isci","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"create_fw.c","parent":"/usr/lib/firmware/isci","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2366,"date":"Aug 8 2019"},{"filename":"create_fw.h","parent":"/usr/lib/firmware/isci","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2867,"date":"Aug 8 2019"},{"filename":"isci_firmware.bin","parent":"/usr/lib/firmware/isci","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":232,"date":"Aug 8 2019"},{"filename":"Makefile","parent":"/usr/lib/firmware/isci","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":369,"date":"Aug 8 2019"},{"filename":"probe_roms.h","parent":"/usr/lib/firmware/isci","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":10893,"date":"Aug 8 2019"},{"filename":"README","parent":"/usr/lib/firmware/isci","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":780,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/kaweth","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":102,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/kaweth","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"new_code.bin","parent":"/usr/lib/firmware/kaweth","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":3276,"date":"Aug 8 2019"},{"filename":"new_code_fix.bin","parent":"/usr/lib/firmware/kaweth","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":622,"date":"Aug 8 2019"},{"filename":"trigger_code.bin","parent":"/usr/lib/firmware/kaweth","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":182,"date":"Aug 8 2019"},{"filename":"trigger_code_fix.bin","parent":"/usr/lib/firmware/kaweth","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":22,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/keyspan","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":211,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/keyspan","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"mpr.fw","parent":"/usr/lib/firmware/keyspan","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4658,"date":"Aug 8 2019"},{"filename":"usa18x.fw","parent":"/usr/lib/firmware/keyspan","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":7650,"date":"Aug 8 2019"},{"filename":"usa19.fw","parent":"/usr/lib/firmware/keyspan","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4690,"date":"Aug 8 2019"},{"filename":"usa19qi.fw","parent":"/usr/lib/firmware/keyspan","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4678,"date":"Aug 8 2019"},{"filename":"usa19qw.fw","parent":"/usr/lib/firmware/keyspan","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":7638,"date":"Aug 8 2019"},{"filename":"usa19w.fw","parent":"/usr/lib/firmware/keyspan","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":7634,"date":"Aug 8 2019"},{"filename":"usa28.fw","parent":"/usr/lib/firmware/keyspan","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":7938,"date":"Aug 8 2019"},{"filename":"usa28xa.fw","parent":"/usr/lib/firmware/keyspan","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":7634,"date":"Aug 8 2019"},{"filename":"usa28xb.fw","parent":"/usr/lib/firmware/keyspan","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":7638,"date":"Aug 8 2019"},{"filename":"usa28x.fw","parent":"/usr/lib/firmware/keyspan","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":7634,"date":"Aug 8 2019"},{"filename":"usa49w.fw","parent":"/usr/lib/firmware/keyspan","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":7938,"date":"Aug 8 2019"},{"filename":"usa49wlc.fw","parent":"/usr/lib/firmware/keyspan","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":7946,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/keyspan_pda","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":106,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/keyspan_pda","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"keyspan_pda.fw","parent":"/usr/lib/firmware/keyspan_pda","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1914,"date":"Aug 8 2019"},{"filename":"keyspan_pda.S","parent":"/usr/lib/firmware/keyspan_pda","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":28777,"date":"Aug 8 2019"},{"filename":"Makefile","parent":"/usr/lib/firmware/keyspan_pda","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":203,"date":"Aug 8 2019"},{"filename":"xircom_pgs.fw","parent":"/usr/lib/firmware/keyspan_pda","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2018,"date":"Aug 8 2019"},{"filename":"xircom_pgs.S","parent":"/usr/lib/firmware/keyspan_pda","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":29753,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/korg","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":23,"date":"Aug 15 2019"},{"filename":"..","parent":"/usr/lib/firmware/korg","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"k1212.dsp","parent":"/usr/lib/firmware/korg","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":15764,"date":"Mar 5 2015"},{"filename":".","parent":"/usr/lib/firmware/liquidio","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":129,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/liquidio","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"lio_210nv_nic.bin","parent":"/usr/lib/firmware/liquidio","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1281464,"date":"Aug 8 2019"},{"filename":"lio_210sv_nic.bin","parent":"/usr/lib/firmware/liquidio","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1179352,"date":"Aug 8 2019"},{"filename":"lio_23xx_nic.bin","parent":"/usr/lib/firmware/liquidio","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1287264,"date":"Aug 8 2019"},{"filename":"lio_23xx_vsw.bin","parent":"/usr/lib/firmware/liquidio","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":20434408,"date":"Aug 8 2019"},{"filename":"lio_410nv_nic.bin","parent":"/usr/lib/firmware/liquidio","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1281464,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/matrox","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":46,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/matrox","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"g200_warp.fw","parent":"/usr/lib/firmware/matrox","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":11214,"date":"Aug 8 2019"},{"filename":"g400_warp.fw","parent":"/usr/lib/firmware/matrox","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":16790,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/mediatek","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":226,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/mediatek","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"mt7610e.bin","parent":"/usr/lib/firmware/mediatek","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":80680,"date":"Aug 8 2019"},{"filename":"mt7610u.bin","parent":"/usr/lib/firmware/mediatek","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":80288,"date":"Aug 8 2019"},{"filename":"mt7615_cr4.bin","parent":"/usr/lib/firmware/mediatek","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":122644,"date":"Aug 8 2019"},{"filename":"mt7615_n9.bin","parent":"/usr/lib/firmware/mediatek","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":459000,"date":"Aug 8 2019"},{"filename":"mt7615_rom_patch.bin","parent":"/usr/lib/firmware/mediatek","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":11102,"date":"Aug 8 2019"},{"filename":"mt7622pr2h.bin","parent":"/usr/lib/firmware/mediatek","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":78158,"date":"Aug 8 2019"},{"filename":"mt7650e.bin","parent":"/usr/lib/firmware/mediatek","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":382212,"date":"Aug 8 2019"},{"filename":"mt7662u.bin","parent":"/usr/lib/firmware/mediatek","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":91412,"date":"Aug 8 2019"},{"filename":"mt7662u_rom_patch.bin","parent":"/usr/lib/firmware/mediatek","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":20686,"date":"Aug 8 2019"},{"filename":"mt7668pr2h.bin","parent":"/usr/lib/firmware/mediatek","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":170990,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/mellanox","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":236,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/mellanox","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"mlxsw_spectrum-13.1420.122.mfa2","parent":"/usr/lib/firmware/mellanox","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":860424,"date":"Aug 8 2019"},{"filename":"mlxsw_spectrum-13.1530.152.mfa2","parent":"/usr/lib/firmware/mellanox","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":924020,"date":"Aug 8 2019"},{"filename":"mlxsw_spectrum-13.1620.192.mfa2","parent":"/usr/lib/firmware/mellanox","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1091848,"date":"Aug 8 2019"},{"filename":"mlxsw_spectrum-13.1702.6.mfa2","parent":"/usr/lib/firmware/mellanox","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":863220,"date":"Aug 8 2019"},{"filename":"mlxsw_spectrum-13.1703.4.mfa2","parent":"/usr/lib/firmware/mellanox","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1150296,"date":"Aug 8 2019"},{"filename":"mlxsw_spectrum-13.1910.622.mfa2","parent":"/usr/lib/firmware/mellanox","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":932092,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/microchip","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":90,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/microchip","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"mscc_vsc8574_revb_int8051_29e8.bin","parent":"/usr/lib/firmware/microchip","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1655,"date":"Aug 8 2019"},{"filename":"mscc_vsc8584_revb_int8051_fb48.bin","parent":"/usr/lib/firmware/microchip","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":92,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/mixart","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":66,"date":"Aug 15 2019"},{"filename":"..","parent":"/usr/lib/firmware/mixart","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"miXart8AES.xlx","parent":"/usr/lib/firmware/mixart","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":97652,"date":"Mar 5 2015"},{"filename":"miXart8.elf","parent":"/usr/lib/firmware/mixart","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":928712,"date":"Mar 5 2015"},{"filename":"miXart8.xlx","parent":"/usr/lib/firmware/mixart","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":97652,"date":"Mar 5 2015"},{"filename":".","parent":"/usr/lib/firmware/moxa","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":286,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/moxa","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"moxa-1110.fw","parent":"/usr/lib/firmware/moxa","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":12462,"date":"Aug 8 2019"},{"filename":"moxa-1130.fw","parent":"/usr/lib/firmware/moxa","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":12462,"date":"Aug 8 2019"},{"filename":"moxa-1131.fw","parent":"/usr/lib/firmware/moxa","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":12462,"date":"Aug 8 2019"},{"filename":"moxa-1150.fw","parent":"/usr/lib/firmware/moxa","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":12462,"date":"Aug 8 2019"},{"filename":"moxa-1151.fw","parent":"/usr/lib/firmware/moxa","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":12462,"date":"Aug 8 2019"},{"filename":"moxa-1250.fw","parent":"/usr/lib/firmware/moxa","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":33681,"date":"Aug 8 2019"},{"filename":"moxa-1251.fw","parent":"/usr/lib/firmware/moxa","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":33685,"date":"Aug 8 2019"},{"filename":"moxa-1410.fw","parent":"/usr/lib/firmware/moxa","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":33521,"date":"Aug 8 2019"},{"filename":"moxa-1450.fw","parent":"/usr/lib/firmware/moxa","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":33521,"date":"Aug 8 2019"},{"filename":"moxa-1451.fw","parent":"/usr/lib/firmware/moxa","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":33525,"date":"Aug 8 2019"},{"filename":"moxa-1613.fw","parent":"/usr/lib/firmware/moxa","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":33529,"date":"Aug 8 2019"},{"filename":"moxa-1618.fw","parent":"/usr/lib/firmware/moxa","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":33525,"date":"Aug 8 2019"},{"filename":"moxa-1653.fw","parent":"/usr/lib/firmware/moxa","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":33529,"date":"Aug 8 2019"},{"filename":"moxa-1658.fw","parent":"/usr/lib/firmware/moxa","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":33525,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/mrvl","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/mrvl","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"pcie8897_uapsta.bin","parent":"/usr/lib/firmware/mrvl","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":723540,"date":"Aug 8 2019"},{"filename":"pcie8997_wlan_v4.bin","parent":"/usr/lib/firmware/mrvl","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":456488,"date":"Aug 8 2019"},{"filename":"pcieuart8997_combo_v4.bin","parent":"/usr/lib/firmware/mrvl","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":632240,"date":"Aug 8 2019"},{"filename":"pcieusb8997_combo_v4.bin","parent":"/usr/lib/firmware/mrvl","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":634228,"date":"Aug 8 2019"},{"filename":"sd8787_uapsta.bin","parent":"/usr/lib/firmware/mrvl","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":466592,"date":"Aug 8 2019"},{"filename":"sd8797_uapsta.bin","parent":"/usr/lib/firmware/mrvl","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":533976,"date":"Aug 8 2019"},{"filename":"sd8801_uapsta.bin","parent":"/usr/lib/firmware/mrvl","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":255988,"date":"Aug 8 2019"},{"filename":"sd8887_uapsta.bin","parent":"/usr/lib/firmware/mrvl","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":616840,"date":"Aug 8 2019"},{"filename":"sd8897_uapsta.bin","parent":"/usr/lib/firmware/mrvl","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":701072,"date":"Aug 8 2019"},{"filename":"sdsd8977_combo_v2.bin","parent":"/usr/lib/firmware/mrvl","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":587052,"date":"Aug 8 2019"},{"filename":"sdsd8997_combo_v4.bin","parent":"/usr/lib/firmware/mrvl","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":621896,"date":"Aug 8 2019"},{"filename":"usb8766_uapsta.bin","parent":"/usr/lib/firmware/mrvl","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":478836,"date":"Aug 8 2019"},{"filename":"usb8797_uapsta.bin","parent":"/usr/lib/firmware/mrvl","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":553940,"date":"Aug 8 2019"},{"filename":"usb8801_uapsta.bin","parent":"/usr/lib/firmware/mrvl","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":252260,"date":"Aug 8 2019"},{"filename":"usb8897_uapsta.bin","parent":"/usr/lib/firmware/mrvl","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":752340,"date":"Aug 8 2019"},{"filename":"usbusb8997_combo_v4.bin","parent":"/usr/lib/firmware/mrvl","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":610252,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/mwlwifi","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":44,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/mwlwifi","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"88W8864.bin","parent":"/usr/lib/firmware/mwlwifi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":116356,"date":"Aug 8 2019"},{"filename":"88W8897.bin","parent":"/usr/lib/firmware/mwlwifi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":489084,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/myricom","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":23,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/myricom","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"lanai.bin","parent":"/usr/lib/firmware/myricom","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":76258,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/netronome","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/netronome","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"bpf","parent":"/usr/lib/firmware/netronome","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"flower","parent":"/usr/lib/firmware/netronome","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"nic","parent":"/usr/lib/firmware/netronome","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"nic_AMDA0058-0011_2x40.nffw","link_to":"nic/nic_AMDA0058-0011_2x40.nffw","parent":"/usr/lib/firmware/netronome","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":31,"date":"Oct 16 09:22"},{"filename":"nic_AMDA0058-0012_2x40.nffw","link_to":"nic/nic_AMDA0058-0012_2x40.nffw","parent":"/usr/lib/firmware/netronome","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":31,"date":"Oct 16 09:22"},{"filename":"nic_AMDA0078-0011_1x100.nffw","link_to":"nic/nic_AMDA0078-0011_1x100.nffw","parent":"/usr/lib/firmware/netronome","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":32,"date":"Oct 16 09:22"},{"filename":"nic_AMDA0081-0001_1x40.nffw","link_to":"nic/nic_AMDA0081-0001_1x40.nffw","parent":"/usr/lib/firmware/netronome","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":31,"date":"Oct 16 09:22"},{"filename":"nic_AMDA0081-0001_4x10.nffw","link_to":"nic/nic_AMDA0081-0001_4x10.nffw","parent":"/usr/lib/firmware/netronome","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":31,"date":"Oct 16 09:22"},{"filename":"nic_AMDA0096-0001_2x10.nffw","link_to":"nic/nic_AMDA0096-0001_2x10.nffw","parent":"/usr/lib/firmware/netronome","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":31,"date":"Oct 16 09:22"},{"filename":"nic_AMDA0097-0001_2x40.nffw","link_to":"nic/nic_AMDA0097-0001_2x40.nffw","parent":"/usr/lib/firmware/netronome","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":31,"date":"Oct 16 09:22"},{"filename":"nic_AMDA0097-0001_4x10_1x40.nffw","link_to":"nic/nic_AMDA0097-0001_4x10_1x40.nffw","parent":"/usr/lib/firmware/netronome","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":36,"date":"Oct 16 09:22"},{"filename":"nic_AMDA0097-0001_8x10.nffw","link_to":"nic/nic_AMDA0097-0001_8x10.nffw","parent":"/usr/lib/firmware/netronome","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":31,"date":"Oct 16 09:22"},{"filename":"nic_AMDA0099-0001_1x10_1x25.nffw","link_to":"nic/nic_AMDA0099-0001_1x10_1x25.nffw","parent":"/usr/lib/firmware/netronome","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":36,"date":"Oct 16 09:22"},{"filename":"nic_AMDA0099-0001_2x10.nffw","link_to":"nic/nic_AMDA0099-0001_2x10.nffw","parent":"/usr/lib/firmware/netronome","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":31,"date":"Oct 16 09:22"},{"filename":"nic_AMDA0099-0001_2x25.nffw","link_to":"nic/nic_AMDA0099-0001_2x25.nffw","parent":"/usr/lib/firmware/netronome","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":31,"date":"Oct 16 09:22"},{"filename":"nic-sriov","parent":"/usr/lib/firmware/netronome","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/netronome/bpf","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/netronome/bpf","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"nic_AMDA0058-0011_2x40.nffw","parent":"/usr/lib/firmware/netronome/bpf","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2240160,"date":"Aug 8 2019"},{"filename":"nic_AMDA0058-0012_2x40.nffw","parent":"/usr/lib/firmware/netronome/bpf","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2240160,"date":"Aug 8 2019"},{"filename":"nic_AMDA0078-0011_1x100.nffw","parent":"/usr/lib/firmware/netronome/bpf","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2173816,"date":"Aug 8 2019"},{"filename":"nic_AMDA0081-0001_1x40.nffw","parent":"/usr/lib/firmware/netronome/bpf","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2174120,"date":"Aug 8 2019"},{"filename":"nic_AMDA0081-0001_4x10.nffw","parent":"/usr/lib/firmware/netronome/bpf","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2362248,"date":"Aug 8 2019"},{"filename":"nic_AMDA0096-0001_2x10.nffw","parent":"/usr/lib/firmware/netronome/bpf","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2239192,"date":"Aug 8 2019"},{"filename":"nic_AMDA0097-0001_2x40.nffw","parent":"/usr/lib/firmware/netronome/bpf","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2239384,"date":"Aug 8 2019"},{"filename":"nic_AMDA0097-0001_4x10_1x40.nffw","parent":"/usr/lib/firmware/netronome/bpf","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2423968,"date":"Aug 8 2019"},{"filename":"nic_AMDA0097-0001_8x10.nffw","parent":"/usr/lib/firmware/netronome/bpf","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2608288,"date":"Aug 8 2019"},{"filename":"nic_AMDA0099-0001_1x10_1x25.nffw","parent":"/usr/lib/firmware/netronome/bpf","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2240440,"date":"Aug 8 2019"},{"filename":"nic_AMDA0099-0001_2x10.nffw","parent":"/usr/lib/firmware/netronome/bpf","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2239192,"date":"Aug 8 2019"},{"filename":"nic_AMDA0099-0001_2x25.nffw","parent":"/usr/lib/firmware/netronome/bpf","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2240088,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/netronome/flower","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/netronome/flower","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"nic_AMDA0058-0011_1x100.nffw","link_to":"nic_AMDA0058.nffw","parent":"/usr/lib/firmware/netronome/flower","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":17,"date":"Oct 16 09:22"},{"filename":"nic_AMDA0058-0011_2x40.nffw","link_to":"nic_AMDA0058.nffw","parent":"/usr/lib/firmware/netronome/flower","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":17,"date":"Oct 16 09:22"},{"filename":"nic_AMDA0058-0011_4x10_1x40.nffw","link_to":"nic_AMDA0058.nffw","parent":"/usr/lib/firmware/netronome/flower","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":17,"date":"Oct 16 09:22"},{"filename":"nic_AMDA0058-0011_8x10.nffw","link_to":"nic_AMDA0058.nffw","parent":"/usr/lib/firmware/netronome/flower","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":17,"date":"Oct 16 09:22"},{"filename":"nic_AMDA0058-0012_1x100.nffw","link_to":"nic_AMDA0058.nffw","parent":"/usr/lib/firmware/netronome/flower","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":17,"date":"Oct 16 09:22"},{"filename":"nic_AMDA0058-0012_2x40.nffw","link_to":"nic_AMDA0058.nffw","parent":"/usr/lib/firmware/netronome/flower","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":17,"date":"Oct 16 09:22"},{"filename":"nic_AMDA0058-0012_4x10_1x40.nffw","link_to":"nic_AMDA0058.nffw","parent":"/usr/lib/firmware/netronome/flower","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":17,"date":"Oct 16 09:22"},{"filename":"nic_AMDA0058-0012_8x10.nffw","link_to":"nic_AMDA0058.nffw","parent":"/usr/lib/firmware/netronome/flower","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":17,"date":"Oct 16 09:22"},{"filename":"nic_AMDA0058.nffw","parent":"/usr/lib/firmware/netronome/flower","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":6789896,"date":"Aug 8 2019"},{"filename":"nic_AMDA0078-0011_1x100.nffw","link_to":"nic_AMDA0058.nffw","parent":"/usr/lib/firmware/netronome/flower","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":17,"date":"Oct 16 09:22"},{"filename":"nic_AMDA0078-0011_2x40.nffw","link_to":"nic_AMDA0058.nffw","parent":"/usr/lib/firmware/netronome/flower","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":17,"date":"Oct 16 09:22"},{"filename":"nic_AMDA0078-0011_4x10_1x40.nffw","link_to":"nic_AMDA0058.nffw","parent":"/usr/lib/firmware/netronome/flower","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":17,"date":"Oct 16 09:22"},{"filename":"nic_AMDA0078-0011_8x10.nffw","link_to":"nic_AMDA0058.nffw","parent":"/usr/lib/firmware/netronome/flower","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":17,"date":"Oct 16 09:22"},{"filename":"nic_AMDA0078-0012_1x100.nffw","link_to":"nic_AMDA0058.nffw","parent":"/usr/lib/firmware/netronome/flower","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":17,"date":"Oct 16 09:22"},{"filename":"nic_AMDA0078-0012_2x40.nffw","link_to":"nic_AMDA0058.nffw","parent":"/usr/lib/firmware/netronome/flower","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":17,"date":"Oct 16 09:22"},{"filename":"nic_AMDA0078-0012_4x10_1x40.nffw","link_to":"nic_AMDA0058.nffw","parent":"/usr/lib/firmware/netronome/flower","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":17,"date":"Oct 16 09:22"},{"filename":"nic_AMDA0078-0012_8x10.nffw","link_to":"nic_AMDA0058.nffw","parent":"/usr/lib/firmware/netronome/flower","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":17,"date":"Oct 16 09:22"},{"filename":"nic_AMDA0081-0001_1x40.nffw","link_to":"nic_AMDA0081.nffw","parent":"/usr/lib/firmware/netronome/flower","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":17,"date":"Oct 16 09:22"},{"filename":"nic_AMDA0081-0001_4x10.nffw","link_to":"nic_AMDA0081.nffw","parent":"/usr/lib/firmware/netronome/flower","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":17,"date":"Oct 16 09:22"},{"filename":"nic_AMDA0081.nffw","link_to":"nic_AMDA0097.nffw","parent":"/usr/lib/firmware/netronome/flower","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":17,"date":"Oct 16 09:22"},{"filename":"nic_AMDA0096-0001_2x10.nffw","link_to":"nic_AMDA0096.nffw","parent":"/usr/lib/firmware/netronome/flower","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":17,"date":"Oct 16 09:22"},{"filename":"nic_AMDA0096.nffw","parent":"/usr/lib/firmware/netronome/flower","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4216632,"date":"Aug 8 2019"},{"filename":"nic_AMDA0097-0001_2x40.nffw","link_to":"nic_AMDA0097.nffw","parent":"/usr/lib/firmware/netronome/flower","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":17,"date":"Oct 16 09:22"},{"filename":"nic_AMDA0097-0001_4x10_1x40.nffw","link_to":"nic_AMDA0097.nffw","parent":"/usr/lib/firmware/netronome/flower","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":17,"date":"Oct 16 09:22"},{"filename":"nic_AMDA0097-0001_8x10.nffw","link_to":"nic_AMDA0097.nffw","parent":"/usr/lib/firmware/netronome/flower","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":17,"date":"Oct 16 09:22"},{"filename":"nic_AMDA0097.nffw","parent":"/usr/lib/firmware/netronome/flower","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4217608,"date":"Aug 8 2019"},{"filename":"nic_AMDA0099-0001_1x10_1x25.nffw","link_to":"nic_AMDA0099.nffw","parent":"/usr/lib/firmware/netronome/flower","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":17,"date":"Oct 16 09:22"},{"filename":"nic_AMDA0099-0001_2x10.nffw","link_to":"nic_AMDA0099.nffw","parent":"/usr/lib/firmware/netronome/flower","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":17,"date":"Oct 16 09:22"},{"filename":"nic_AMDA0099-0001_2x25.nffw","link_to":"nic_AMDA0099.nffw","parent":"/usr/lib/firmware/netronome/flower","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":17,"date":"Oct 16 09:22"},{"filename":"nic_AMDA0099.nffw","parent":"/usr/lib/firmware/netronome/flower","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4219976,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/netronome/nic","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/netronome/nic","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"nic_AMDA0058-0011_2x40.nffw","parent":"/usr/lib/firmware/netronome/nic","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":3222512,"date":"Aug 8 2019"},{"filename":"nic_AMDA0058-0012_2x40.nffw","parent":"/usr/lib/firmware/netronome/nic","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":3222512,"date":"Aug 8 2019"},{"filename":"nic_AMDA0078-0011_1x100.nffw","parent":"/usr/lib/firmware/netronome/nic","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":3180672,"date":"Aug 8 2019"},{"filename":"nic_AMDA0081-0001_1x40.nffw","parent":"/usr/lib/firmware/netronome/nic","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":3181080,"date":"Aug 8 2019"},{"filename":"nic_AMDA0081-0001_4x10.nffw","parent":"/usr/lib/firmware/netronome/nic","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":3297408,"date":"Aug 8 2019"},{"filename":"nic_AMDA0096-0001_2x10.nffw","parent":"/usr/lib/firmware/netronome/nic","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":3221848,"date":"Aug 8 2019"},{"filename":"nic_AMDA0097-0001_2x40.nffw","parent":"/usr/lib/firmware/netronome/nic","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":3221944,"date":"Aug 8 2019"},{"filename":"nic_AMDA0097-0001_4x10_1x40.nffw","parent":"/usr/lib/firmware/netronome/nic","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":3335048,"date":"Aug 8 2019"},{"filename":"nic_AMDA0097-0001_8x10.nffw","parent":"/usr/lib/firmware/netronome/nic","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":3449264,"date":"Aug 8 2019"},{"filename":"nic_AMDA0099-0001_1x10_1x25.nffw","parent":"/usr/lib/firmware/netronome/nic","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":3222856,"date":"Aug 8 2019"},{"filename":"nic_AMDA0099-0001_2x10.nffw","parent":"/usr/lib/firmware/netronome/nic","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":3221832,"date":"Aug 8 2019"},{"filename":"nic_AMDA0099-0001_2x25.nffw","parent":"/usr/lib/firmware/netronome/nic","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":3222648,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/netronome/nic-sriov","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/netronome/nic-sriov","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"nic_AMDA0058-0011_2x40.nffw","parent":"/usr/lib/firmware/netronome/nic-sriov","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4958776,"date":"Aug 8 2019"},{"filename":"nic_AMDA0058-0012_2x40.nffw","parent":"/usr/lib/firmware/netronome/nic-sriov","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4958776,"date":"Aug 8 2019"},{"filename":"nic_AMDA0078-0011_1x100.nffw","parent":"/usr/lib/firmware/netronome/nic-sriov","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":5203752,"date":"Aug 8 2019"},{"filename":"nic_AMDA0081-0001_1x40.nffw","parent":"/usr/lib/firmware/netronome/nic-sriov","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":5204048,"date":"Aug 8 2019"},{"filename":"nic_AMDA0081-0001_4x10.nffw","parent":"/usr/lib/firmware/netronome/nic-sriov","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":5033952,"date":"Aug 8 2019"},{"filename":"nic_AMDA0096-0001_2x10.nffw","parent":"/usr/lib/firmware/netronome/nic-sriov","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4958016,"date":"Aug 8 2019"},{"filename":"nic_AMDA0097-0001_2x40.nffw","parent":"/usr/lib/firmware/netronome/nic-sriov","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4958128,"date":"Aug 8 2019"},{"filename":"nic_AMDA0097-0001_4x10_1x40.nffw","parent":"/usr/lib/firmware/netronome/nic-sriov","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":5072120,"date":"Aug 8 2019"},{"filename":"nic_AMDA0097-0001_8x10.nffw","parent":"/usr/lib/firmware/netronome/nic-sriov","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":5185472,"date":"Aug 8 2019"},{"filename":"nic_AMDA0099-0001_1x10_1x25.nffw","parent":"/usr/lib/firmware/netronome/nic-sriov","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4959328,"date":"Aug 8 2019"},{"filename":"nic_AMDA0099-0001_2x10.nffw","parent":"/usr/lib/firmware/netronome/nic-sriov","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4958000,"date":"Aug 8 2019"},{"filename":"nic_AMDA0099-0001_2x25.nffw","parent":"/usr/lib/firmware/netronome/nic-sriov","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4958832,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/nvidia","flags":"drwxr-xr-x.","links":19,"owner":"root","group":"root","size":236,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"gk20a","parent":"/usr/lib/firmware/nvidia","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":183,"date":"Oct 16 09:22"},{"filename":"gm200","parent":"/usr/lib/firmware/nvidia","flags":"drwxr-xr-x.","links":4,"owner":"root","group":"root","size":27,"date":"Aug 8 2019"},{"filename":"gm204","parent":"/usr/lib/firmware/nvidia","flags":"drwxr-xr-x.","links":4,"owner":"root","group":"root","size":27,"date":"Aug 8 2019"},{"filename":"gm206","parent":"/usr/lib/firmware/nvidia","flags":"drwxr-xr-x.","links":4,"owner":"root","group":"root","size":27,"date":"Aug 8 2019"},{"filename":"gm20b","parent":"/usr/lib/firmware/nvidia","flags":"drwxr-xr-x.","links":5,"owner":"root","group":"root","size":38,"date":"Aug 8 2019"},{"filename":"gp100","parent":"/usr/lib/firmware/nvidia","flags":"drwxr-xr-x.","links":4,"owner":"root","group":"root","size":27,"date":"Aug 8 2019"},{"filename":"gp102","parent":"/usr/lib/firmware/nvidia","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":52,"date":"Aug 8 2019"},{"filename":"gp104","parent":"/usr/lib/firmware/nvidia","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":52,"date":"Aug 8 2019"},{"filename":"gp106","parent":"/usr/lib/firmware/nvidia","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":52,"date":"Aug 8 2019"},{"filename":"gp107","parent":"/usr/lib/firmware/nvidia","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":52,"date":"Aug 8 2019"},{"filename":"gp108","parent":"/usr/lib/firmware/nvidia","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":52,"date":"Aug 8 2019"},{"filename":"gp10b","parent":"/usr/lib/firmware/nvidia","flags":"drwxr-xr-x.","links":5,"owner":"root","group":"root","size":38,"date":"Aug 8 2019"},{"filename":"gv100","parent":"/usr/lib/firmware/nvidia","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":52,"date":"Oct 16 09:22"},{"filename":"tegra124","parent":"/usr/lib/firmware/nvidia","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":45,"date":"Oct 16 09:22"},{"filename":"tegra186","parent":"/usr/lib/firmware/nvidia","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":29,"date":"Oct 16 09:22"},{"filename":"tegra210","parent":"/usr/lib/firmware/nvidia","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":45,"date":"Oct 16 09:22"},{"filename":"tu10x","parent":"/usr/lib/firmware/nvidia","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":19,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gk20a","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":183,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gk20a","flags":"drwxr-xr-x.","links":19,"owner":"root","group":"root","size":236,"date":"Oct 16 09:22"},{"filename":"fecs_data.bin","parent":"/usr/lib/firmware/nvidia/gk20a","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1920,"date":"Aug 8 2019"},{"filename":"fecs_inst.bin","parent":"/usr/lib/firmware/nvidia/gk20a","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":15356,"date":"Aug 8 2019"},{"filename":"gpccs_data.bin","parent":"/usr/lib/firmware/nvidia/gk20a","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1800,"date":"Aug 8 2019"},{"filename":"gpccs_inst.bin","parent":"/usr/lib/firmware/nvidia/gk20a","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8171,"date":"Aug 8 2019"},{"filename":"sw_bundle_init.bin","parent":"/usr/lib/firmware/nvidia/gk20a","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":6696,"date":"Aug 8 2019"},{"filename":"sw_ctx.bin","parent":"/usr/lib/firmware/nvidia/gk20a","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4464,"date":"Aug 8 2019"},{"filename":"sw_method_init.bin","parent":"/usr/lib/firmware/nvidia/gk20a","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":10304,"date":"Aug 8 2019"},{"filename":"sw_nonctx.bin","parent":"/usr/lib/firmware/nvidia/gk20a","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1360,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gm200","flags":"drwxr-xr-x.","links":4,"owner":"root","group":"root","size":27,"date":"Aug 8 2019"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gm200","flags":"drwxr-xr-x.","links":19,"owner":"root","group":"root","size":236,"date":"Oct 16 09:22"},{"filename":"acr","parent":"/usr/lib/firmware/nvidia/gm200","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":66,"date":"Oct 16 09:22"},{"filename":"gr","parent":"/usr/lib/firmware/nvidia/gm200","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":263,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gm200/acr","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":66,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gm200/acr","flags":"drwxr-xr-x.","links":4,"owner":"root","group":"root","size":27,"date":"Aug 8 2019"},{"filename":"bl.bin","parent":"/usr/lib/firmware/nvidia/gm200/acr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":832,"date":"Aug 8 2019"},{"filename":"ucode_load.bin","parent":"/usr/lib/firmware/nvidia/gm200/acr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":10144,"date":"Aug 8 2019"},{"filename":"ucode_unload.bin","parent":"/usr/lib/firmware/nvidia/gm200/acr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1440,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gm200/gr","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":263,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gm200/gr","flags":"drwxr-xr-x.","links":4,"owner":"root","group":"root","size":27,"date":"Aug 8 2019"},{"filename":"fecs_bl.bin","parent":"/usr/lib/firmware/nvidia/gm200/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":576,"date":"Aug 8 2019"},{"filename":"fecs_data.bin","parent":"/usr/lib/firmware/nvidia/gm200/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1968,"date":"Aug 8 2019"},{"filename":"fecs_inst.bin","parent":"/usr/lib/firmware/nvidia/gm200/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":16271,"date":"Aug 8 2019"},{"filename":"fecs_sig.bin","parent":"/usr/lib/firmware/nvidia/gm200/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":76,"date":"Aug 8 2019"},{"filename":"gpccs_bl.bin","parent":"/usr/lib/firmware/nvidia/gm200/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":576,"date":"Aug 8 2019"},{"filename":"gpccs_data.bin","parent":"/usr/lib/firmware/nvidia/gm200/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2056,"date":"Aug 8 2019"},{"filename":"gpccs_inst.bin","parent":"/usr/lib/firmware/nvidia/gm200/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":9768,"date":"Aug 8 2019"},{"filename":"gpccs_sig.bin","parent":"/usr/lib/firmware/nvidia/gm200/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":76,"date":"Aug 8 2019"},{"filename":"sw_bundle_init.bin","parent":"/usr/lib/firmware/nvidia/gm200/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":7616,"date":"Aug 8 2019"},{"filename":"sw_ctx.bin","parent":"/usr/lib/firmware/nvidia/gm200/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":5592,"date":"Aug 8 2019"},{"filename":"sw_method_init.bin","parent":"/usr/lib/firmware/nvidia/gm200/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":10800,"date":"Aug 8 2019"},{"filename":"sw_nonctx.bin","parent":"/usr/lib/firmware/nvidia/gm200/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1440,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gm204","flags":"drwxr-xr-x.","links":4,"owner":"root","group":"root","size":27,"date":"Aug 8 2019"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gm204","flags":"drwxr-xr-x.","links":19,"owner":"root","group":"root","size":236,"date":"Oct 16 09:22"},{"filename":"acr","parent":"/usr/lib/firmware/nvidia/gm204","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":66,"date":"Oct 16 09:22"},{"filename":"gr","parent":"/usr/lib/firmware/nvidia/gm204","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":263,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gm204/acr","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":66,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gm204/acr","flags":"drwxr-xr-x.","links":4,"owner":"root","group":"root","size":27,"date":"Aug 8 2019"},{"filename":"bl.bin","link_to":"../../gm200/acr/bl.bin","parent":"/usr/lib/firmware/nvidia/gm204/acr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":22,"date":"Oct 16 09:22"},{"filename":"ucode_load.bin","link_to":"../../gm200/acr/ucode_load.bin","parent":"/usr/lib/firmware/nvidia/gm204/acr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":30,"date":"Oct 16 09:22"},{"filename":"ucode_unload.bin","link_to":"../../gm200/acr/ucode_unload.bin","parent":"/usr/lib/firmware/nvidia/gm204/acr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":32,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gm204/gr","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":263,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gm204/gr","flags":"drwxr-xr-x.","links":4,"owner":"root","group":"root","size":27,"date":"Aug 8 2019"},{"filename":"fecs_bl.bin","link_to":"../../gm200/gr/fecs_bl.bin","parent":"/usr/lib/firmware/nvidia/gm204/gr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":26,"date":"Oct 16 09:22"},{"filename":"fecs_data.bin","parent":"/usr/lib/firmware/nvidia/gm204/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1968,"date":"Aug 8 2019"},{"filename":"fecs_inst.bin","link_to":"../../gm200/gr/fecs_inst.bin","parent":"/usr/lib/firmware/nvidia/gm204/gr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":28,"date":"Oct 16 09:22"},{"filename":"fecs_sig.bin","parent":"/usr/lib/firmware/nvidia/gm204/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":76,"date":"Aug 8 2019"},{"filename":"gpccs_bl.bin","link_to":"../../gm200/gr/gpccs_bl.bin","parent":"/usr/lib/firmware/nvidia/gm204/gr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":27,"date":"Oct 16 09:22"},{"filename":"gpccs_data.bin","parent":"/usr/lib/firmware/nvidia/gm204/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2056,"date":"Aug 8 2019"},{"filename":"gpccs_inst.bin","link_to":"../../gm200/gr/gpccs_inst.bin","parent":"/usr/lib/firmware/nvidia/gm204/gr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":29,"date":"Oct 16 09:22"},{"filename":"gpccs_sig.bin","parent":"/usr/lib/firmware/nvidia/gm204/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":76,"date":"Aug 8 2019"},{"filename":"sw_bundle_init.bin","link_to":"../../gm200/gr/sw_bundle_init.bin","parent":"/usr/lib/firmware/nvidia/gm204/gr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":33,"date":"Oct 16 09:22"},{"filename":"sw_ctx.bin","link_to":"../../gm200/gr/sw_ctx.bin","parent":"/usr/lib/firmware/nvidia/gm204/gr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":25,"date":"Oct 16 09:22"},{"filename":"sw_method_init.bin","link_to":"../../gm200/gr/sw_method_init.bin","parent":"/usr/lib/firmware/nvidia/gm204/gr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":33,"date":"Oct 16 09:22"},{"filename":"sw_nonctx.bin","link_to":"../../gm200/gr/sw_nonctx.bin","parent":"/usr/lib/firmware/nvidia/gm204/gr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":28,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gm206","flags":"drwxr-xr-x.","links":4,"owner":"root","group":"root","size":27,"date":"Aug 8 2019"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gm206","flags":"drwxr-xr-x.","links":19,"owner":"root","group":"root","size":236,"date":"Oct 16 09:22"},{"filename":"acr","parent":"/usr/lib/firmware/nvidia/gm206","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":66,"date":"Oct 16 09:22"},{"filename":"gr","parent":"/usr/lib/firmware/nvidia/gm206","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":263,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gm206/acr","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":66,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gm206/acr","flags":"drwxr-xr-x.","links":4,"owner":"root","group":"root","size":27,"date":"Aug 8 2019"},{"filename":"bl.bin","link_to":"../../gm200/acr/bl.bin","parent":"/usr/lib/firmware/nvidia/gm206/acr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":22,"date":"Oct 16 09:22"},{"filename":"ucode_load.bin","parent":"/usr/lib/firmware/nvidia/gm206/acr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":10144,"date":"Aug 8 2019"},{"filename":"ucode_unload.bin","parent":"/usr/lib/firmware/nvidia/gm206/acr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1440,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gm206/gr","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":263,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gm206/gr","flags":"drwxr-xr-x.","links":4,"owner":"root","group":"root","size":27,"date":"Aug 8 2019"},{"filename":"fecs_bl.bin","link_to":"../../gm200/gr/fecs_bl.bin","parent":"/usr/lib/firmware/nvidia/gm206/gr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":26,"date":"Oct 16 09:22"},{"filename":"fecs_data.bin","parent":"/usr/lib/firmware/nvidia/gm206/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1968,"date":"Aug 8 2019"},{"filename":"fecs_inst.bin","link_to":"../../gm200/gr/fecs_inst.bin","parent":"/usr/lib/firmware/nvidia/gm206/gr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":28,"date":"Oct 16 09:22"},{"filename":"fecs_sig.bin","parent":"/usr/lib/firmware/nvidia/gm206/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":76,"date":"Aug 8 2019"},{"filename":"gpccs_bl.bin","link_to":"../../gm200/gr/gpccs_bl.bin","parent":"/usr/lib/firmware/nvidia/gm206/gr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":27,"date":"Oct 16 09:22"},{"filename":"gpccs_data.bin","parent":"/usr/lib/firmware/nvidia/gm206/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2056,"date":"Aug 8 2019"},{"filename":"gpccs_inst.bin","link_to":"../../gm200/gr/gpccs_inst.bin","parent":"/usr/lib/firmware/nvidia/gm206/gr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":29,"date":"Oct 16 09:22"},{"filename":"gpccs_sig.bin","parent":"/usr/lib/firmware/nvidia/gm206/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":76,"date":"Aug 8 2019"},{"filename":"sw_bundle_init.bin","link_to":"../../gm200/gr/sw_bundle_init.bin","parent":"/usr/lib/firmware/nvidia/gm206/gr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":33,"date":"Oct 16 09:22"},{"filename":"sw_ctx.bin","link_to":"../../gm200/gr/sw_ctx.bin","parent":"/usr/lib/firmware/nvidia/gm206/gr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":25,"date":"Oct 16 09:22"},{"filename":"sw_method_init.bin","link_to":"../../gm200/gr/sw_method_init.bin","parent":"/usr/lib/firmware/nvidia/gm206/gr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":33,"date":"Oct 16 09:22"},{"filename":"sw_nonctx.bin","link_to":"../../gm200/gr/sw_nonctx.bin","parent":"/usr/lib/firmware/nvidia/gm206/gr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":28,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gm20b","flags":"drwxr-xr-x.","links":5,"owner":"root","group":"root","size":38,"date":"Aug 8 2019"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gm20b","flags":"drwxr-xr-x.","links":19,"owner":"root","group":"root","size":236,"date":"Oct 16 09:22"},{"filename":"acr","parent":"/usr/lib/firmware/nvidia/gm20b","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":42,"date":"Oct 16 09:22"},{"filename":"gr","parent":"/usr/lib/firmware/nvidia/gm20b","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":222,"date":"Oct 16 09:22"},{"filename":"pmu","parent":"/usr/lib/firmware/nvidia/gm20b","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":54,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gm20b/acr","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":42,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gm20b/acr","flags":"drwxr-xr-x.","links":5,"owner":"root","group":"root","size":38,"date":"Aug 8 2019"},{"filename":"bl.bin","parent":"/usr/lib/firmware/nvidia/gm20b/acr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":832,"date":"Aug 8 2019"},{"filename":"ucode_load.bin","parent":"/usr/lib/firmware/nvidia/gm20b/acr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":18592,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gm20b/gr","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":222,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gm20b/gr","flags":"drwxr-xr-x.","links":5,"owner":"root","group":"root","size":38,"date":"Aug 8 2019"},{"filename":"fecs_bl.bin","parent":"/usr/lib/firmware/nvidia/gm20b/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":576,"date":"Aug 8 2019"},{"filename":"fecs_data.bin","parent":"/usr/lib/firmware/nvidia/gm20b/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1964,"date":"Aug 8 2019"},{"filename":"fecs_inst.bin","parent":"/usr/lib/firmware/nvidia/gm20b/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17021,"date":"Aug 8 2019"},{"filename":"fecs_sig.bin","parent":"/usr/lib/firmware/nvidia/gm20b/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":76,"date":"Aug 8 2019"},{"filename":"gpccs_data.bin","parent":"/usr/lib/firmware/nvidia/gm20b/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2068,"date":"Aug 8 2019"},{"filename":"gpccs_inst.bin","parent":"/usr/lib/firmware/nvidia/gm20b/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":9964,"date":"Aug 8 2019"},{"filename":"sw_bundle_init.bin","parent":"/usr/lib/firmware/nvidia/gm20b/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":7616,"date":"Aug 8 2019"},{"filename":"sw_ctx.bin","parent":"/usr/lib/firmware/nvidia/gm20b/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":5448,"date":"Aug 8 2019"},{"filename":"sw_method_init.bin","link_to":"../../gm200/gr/sw_method_init.bin","parent":"/usr/lib/firmware/nvidia/gm20b/gr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":33,"date":"Oct 16 09:22"},{"filename":"sw_nonctx.bin","parent":"/usr/lib/firmware/nvidia/gm20b/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1432,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gm20b/pmu","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":54,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gm20b/pmu","flags":"drwxr-xr-x.","links":5,"owner":"root","group":"root","size":38,"date":"Aug 8 2019"},{"filename":"desc.bin","parent":"/usr/lib/firmware/nvidia/gm20b/pmu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":652,"date":"Aug 8 2019"},{"filename":"image.bin","parent":"/usr/lib/firmware/nvidia/gm20b/pmu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":47872,"date":"Aug 8 2019"},{"filename":"sig.bin","parent":"/usr/lib/firmware/nvidia/gm20b/pmu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":76,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gp100","flags":"drwxr-xr-x.","links":4,"owner":"root","group":"root","size":27,"date":"Aug 8 2019"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gp100","flags":"drwxr-xr-x.","links":19,"owner":"root","group":"root","size":236,"date":"Oct 16 09:22"},{"filename":"acr","parent":"/usr/lib/firmware/nvidia/gp100","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":66,"date":"Oct 16 09:22"},{"filename":"gr","parent":"/usr/lib/firmware/nvidia/gp100","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":263,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gp100/acr","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":66,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gp100/acr","flags":"drwxr-xr-x.","links":4,"owner":"root","group":"root","size":27,"date":"Aug 8 2019"},{"filename":"bl.bin","parent":"/usr/lib/firmware/nvidia/gp100/acr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":832,"date":"Aug 8 2019"},{"filename":"ucode_load.bin","parent":"/usr/lib/firmware/nvidia/gp100/acr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":9632,"date":"Aug 8 2019"},{"filename":"ucode_unload.bin","parent":"/usr/lib/firmware/nvidia/gp100/acr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1440,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gp100/gr","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":263,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gp100/gr","flags":"drwxr-xr-x.","links":4,"owner":"root","group":"root","size":27,"date":"Aug 8 2019"},{"filename":"fecs_bl.bin","link_to":"../../gm200/gr/fecs_bl.bin","parent":"/usr/lib/firmware/nvidia/gp100/gr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":26,"date":"Oct 16 09:22"},{"filename":"fecs_data.bin","parent":"/usr/lib/firmware/nvidia/gp100/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2028,"date":"Aug 8 2019"},{"filename":"fecs_inst.bin","parent":"/usr/lib/firmware/nvidia/gp100/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":20955,"date":"Aug 8 2019"},{"filename":"fecs_sig.bin","parent":"/usr/lib/firmware/nvidia/gp100/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":76,"date":"Aug 8 2019"},{"filename":"gpccs_bl.bin","link_to":"../../gm200/gr/gpccs_bl.bin","parent":"/usr/lib/firmware/nvidia/gp100/gr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":27,"date":"Oct 16 09:22"},{"filename":"gpccs_data.bin","parent":"/usr/lib/firmware/nvidia/gp100/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2080,"date":"Aug 8 2019"},{"filename":"gpccs_inst.bin","parent":"/usr/lib/firmware/nvidia/gp100/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":12458,"date":"Aug 8 2019"},{"filename":"gpccs_sig.bin","parent":"/usr/lib/firmware/nvidia/gp100/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":76,"date":"Aug 8 2019"},{"filename":"sw_bundle_init.bin","parent":"/usr/lib/firmware/nvidia/gp100/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":7664,"date":"Aug 8 2019"},{"filename":"sw_ctx.bin","parent":"/usr/lib/firmware/nvidia/gp100/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":6240,"date":"Aug 8 2019"},{"filename":"sw_method_init.bin","parent":"/usr/lib/firmware/nvidia/gp100/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":11928,"date":"Aug 8 2019"},{"filename":"sw_nonctx.bin","parent":"/usr/lib/firmware/nvidia/gp100/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2248,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gp102","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":52,"date":"Aug 8 2019"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gp102","flags":"drwxr-xr-x.","links":19,"owner":"root","group":"root","size":236,"date":"Oct 16 09:22"},{"filename":"acr","parent":"/usr/lib/firmware/nvidia/gp102","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":87,"date":"Oct 16 09:22"},{"filename":"gr","parent":"/usr/lib/firmware/nvidia/gp102","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":263,"date":"Oct 16 09:22"},{"filename":"nvdec","parent":"/usr/lib/firmware/nvidia/gp102","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":26,"date":"Oct 16 09:22"},{"filename":"sec2","parent":"/usr/lib/firmware/nvidia/gp102","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":54,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gp102/acr","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":87,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gp102/acr","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":52,"date":"Aug 8 2019"},{"filename":"bl.bin","parent":"/usr/lib/firmware/nvidia/gp102/acr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1280,"date":"Aug 8 2019"},{"filename":"ucode_load.bin","parent":"/usr/lib/firmware/nvidia/gp102/acr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17152,"date":"Aug 8 2019"},{"filename":"ucode_unload.bin","parent":"/usr/lib/firmware/nvidia/gp102/acr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":3328,"date":"Aug 8 2019"},{"filename":"unload_bl.bin","parent":"/usr/lib/firmware/nvidia/gp102/acr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1280,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gp102/gr","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":263,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gp102/gr","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":52,"date":"Aug 8 2019"},{"filename":"fecs_bl.bin","link_to":"../../gm200/gr/fecs_bl.bin","parent":"/usr/lib/firmware/nvidia/gp102/gr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":26,"date":"Oct 16 09:22"},{"filename":"fecs_data.bin","parent":"/usr/lib/firmware/nvidia/gp102/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2256,"date":"Aug 8 2019"},{"filename":"fecs_inst.bin","parent":"/usr/lib/firmware/nvidia/gp102/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":20927,"date":"Aug 8 2019"},{"filename":"fecs_sig.bin","parent":"/usr/lib/firmware/nvidia/gp102/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":192,"date":"Aug 8 2019"},{"filename":"gpccs_bl.bin","link_to":"../../gm200/gr/gpccs_bl.bin","parent":"/usr/lib/firmware/nvidia/gp102/gr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":27,"date":"Oct 16 09:22"},{"filename":"gpccs_data.bin","parent":"/usr/lib/firmware/nvidia/gp102/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1832,"date":"Aug 8 2019"},{"filename":"gpccs_inst.bin","parent":"/usr/lib/firmware/nvidia/gp102/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":13307,"date":"Aug 8 2019"},{"filename":"gpccs_sig.bin","parent":"/usr/lib/firmware/nvidia/gp102/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":192,"date":"Aug 8 2019"},{"filename":"sw_bundle_init.bin","parent":"/usr/lib/firmware/nvidia/gp102/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":7680,"date":"Aug 8 2019"},{"filename":"sw_ctx.bin","parent":"/usr/lib/firmware/nvidia/gp102/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":6216,"date":"Aug 8 2019"},{"filename":"sw_method_init.bin","parent":"/usr/lib/firmware/nvidia/gp102/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":12288,"date":"Aug 8 2019"},{"filename":"sw_nonctx.bin","parent":"/usr/lib/firmware/nvidia/gp102/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2496,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gp102/nvdec","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":26,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gp102/nvdec","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":52,"date":"Aug 8 2019"},{"filename":"scrubber.bin","parent":"/usr/lib/firmware/nvidia/gp102/nvdec","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":3840,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gp102/sec2","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":54,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gp102/sec2","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":52,"date":"Aug 8 2019"},{"filename":"desc.bin","parent":"/usr/lib/firmware/nvidia/gp102/sec2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":656,"date":"Aug 8 2019"},{"filename":"image.bin","parent":"/usr/lib/firmware/nvidia/gp102/sec2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":99072,"date":"Aug 8 2019"},{"filename":"sig.bin","parent":"/usr/lib/firmware/nvidia/gp102/sec2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":192,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gp104","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":52,"date":"Aug 8 2019"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gp104","flags":"drwxr-xr-x.","links":19,"owner":"root","group":"root","size":236,"date":"Oct 16 09:22"},{"filename":"acr","parent":"/usr/lib/firmware/nvidia/gp104","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":87,"date":"Oct 16 09:22"},{"filename":"gr","parent":"/usr/lib/firmware/nvidia/gp104","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":263,"date":"Oct 16 09:22"},{"filename":"nvdec","parent":"/usr/lib/firmware/nvidia/gp104","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":26,"date":"Oct 16 09:22"},{"filename":"sec2","parent":"/usr/lib/firmware/nvidia/gp104","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":54,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gp104/acr","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":87,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gp104/acr","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":52,"date":"Aug 8 2019"},{"filename":"bl.bin","link_to":"../../gp102/acr/bl.bin","parent":"/usr/lib/firmware/nvidia/gp104/acr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":22,"date":"Oct 16 09:22"},{"filename":"ucode_load.bin","link_to":"../../gp102/acr/ucode_load.bin","parent":"/usr/lib/firmware/nvidia/gp104/acr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":30,"date":"Oct 16 09:22"},{"filename":"ucode_unload.bin","link_to":"../../gp102/acr/ucode_unload.bin","parent":"/usr/lib/firmware/nvidia/gp104/acr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":32,"date":"Oct 16 09:22"},{"filename":"unload_bl.bin","link_to":"../../gp102/acr/unload_bl.bin","parent":"/usr/lib/firmware/nvidia/gp104/acr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":29,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gp104/gr","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":263,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gp104/gr","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":52,"date":"Aug 8 2019"},{"filename":"fecs_bl.bin","link_to":"../../gp102/gr/fecs_bl.bin","parent":"/usr/lib/firmware/nvidia/gp104/gr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":26,"date":"Oct 16 09:22"},{"filename":"fecs_data.bin","parent":"/usr/lib/firmware/nvidia/gp104/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2576,"date":"Aug 8 2019"},{"filename":"fecs_inst.bin","parent":"/usr/lib/firmware/nvidia/gp104/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":22760,"date":"Aug 8 2019"},{"filename":"fecs_sig.bin","parent":"/usr/lib/firmware/nvidia/gp104/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":192,"date":"Aug 8 2019"},{"filename":"gpccs_bl.bin","link_to":"../../gp102/gr/gpccs_bl.bin","parent":"/usr/lib/firmware/nvidia/gp104/gr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":27,"date":"Oct 16 09:22"},{"filename":"gpccs_data.bin","parent":"/usr/lib/firmware/nvidia/gp104/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1832,"date":"Aug 8 2019"},{"filename":"gpccs_inst.bin","parent":"/usr/lib/firmware/nvidia/gp104/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":13307,"date":"Aug 8 2019"},{"filename":"gpccs_sig.bin","parent":"/usr/lib/firmware/nvidia/gp104/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":192,"date":"Aug 8 2019"},{"filename":"sw_bundle_init.bin","link_to":"../../gp102/gr/sw_bundle_init.bin","parent":"/usr/lib/firmware/nvidia/gp104/gr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":33,"date":"Oct 16 09:22"},{"filename":"sw_ctx.bin","link_to":"../../gp102/gr/sw_ctx.bin","parent":"/usr/lib/firmware/nvidia/gp104/gr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":25,"date":"Oct 16 09:22"},{"filename":"sw_method_init.bin","link_to":"../../gp102/gr/sw_method_init.bin","parent":"/usr/lib/firmware/nvidia/gp104/gr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":33,"date":"Oct 16 09:22"},{"filename":"sw_nonctx.bin","link_to":"../../gp102/gr/sw_nonctx.bin","parent":"/usr/lib/firmware/nvidia/gp104/gr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":28,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gp104/nvdec","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":26,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gp104/nvdec","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":52,"date":"Aug 8 2019"},{"filename":"scrubber.bin","link_to":"../../gp102/nvdec/scrubber.bin","parent":"/usr/lib/firmware/nvidia/gp104/nvdec","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":30,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gp104/sec2","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":54,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gp104/sec2","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":52,"date":"Aug 8 2019"},{"filename":"desc.bin","link_to":"../../gp102/sec2/desc.bin","parent":"/usr/lib/firmware/nvidia/gp104/sec2","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":25,"date":"Oct 16 09:22"},{"filename":"image.bin","link_to":"../../gp102/sec2/image.bin","parent":"/usr/lib/firmware/nvidia/gp104/sec2","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":26,"date":"Oct 16 09:22"},{"filename":"sig.bin","link_to":"../../gp102/sec2/sig.bin","parent":"/usr/lib/firmware/nvidia/gp104/sec2","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":24,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gp106","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":52,"date":"Aug 8 2019"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gp106","flags":"drwxr-xr-x.","links":19,"owner":"root","group":"root","size":236,"date":"Oct 16 09:22"},{"filename":"acr","parent":"/usr/lib/firmware/nvidia/gp106","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":87,"date":"Oct 16 09:22"},{"filename":"gr","parent":"/usr/lib/firmware/nvidia/gp106","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":263,"date":"Oct 16 09:22"},{"filename":"nvdec","parent":"/usr/lib/firmware/nvidia/gp106","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":26,"date":"Oct 16 09:22"},{"filename":"sec2","parent":"/usr/lib/firmware/nvidia/gp106","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":54,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gp106/acr","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":87,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gp106/acr","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":52,"date":"Aug 8 2019"},{"filename":"bl.bin","link_to":"../../gp102/acr/bl.bin","parent":"/usr/lib/firmware/nvidia/gp106/acr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":22,"date":"Oct 16 09:22"},{"filename":"ucode_load.bin","link_to":"../../gp102/acr/ucode_load.bin","parent":"/usr/lib/firmware/nvidia/gp106/acr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":30,"date":"Oct 16 09:22"},{"filename":"ucode_unload.bin","link_to":"../../gp102/acr/ucode_unload.bin","parent":"/usr/lib/firmware/nvidia/gp106/acr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":32,"date":"Oct 16 09:22"},{"filename":"unload_bl.bin","link_to":"../../gp102/acr/unload_bl.bin","parent":"/usr/lib/firmware/nvidia/gp106/acr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":29,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gp106/gr","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":263,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gp106/gr","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":52,"date":"Aug 8 2019"},{"filename":"fecs_bl.bin","link_to":"../../gp102/gr/fecs_bl.bin","parent":"/usr/lib/firmware/nvidia/gp106/gr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":26,"date":"Oct 16 09:22"},{"filename":"fecs_data.bin","parent":"/usr/lib/firmware/nvidia/gp106/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2256,"date":"Aug 8 2019"},{"filename":"fecs_inst.bin","link_to":"../../gp102/gr/fecs_inst.bin","parent":"/usr/lib/firmware/nvidia/gp106/gr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":28,"date":"Oct 16 09:22"},{"filename":"fecs_sig.bin","parent":"/usr/lib/firmware/nvidia/gp106/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":192,"date":"Aug 8 2019"},{"filename":"gpccs_bl.bin","link_to":"../../gp102/gr/gpccs_bl.bin","parent":"/usr/lib/firmware/nvidia/gp106/gr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":27,"date":"Oct 16 09:22"},{"filename":"gpccs_data.bin","parent":"/usr/lib/firmware/nvidia/gp106/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1832,"date":"Aug 8 2019"},{"filename":"gpccs_inst.bin","link_to":"../../gp102/gr/gpccs_inst.bin","parent":"/usr/lib/firmware/nvidia/gp106/gr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":29,"date":"Oct 16 09:22"},{"filename":"gpccs_sig.bin","parent":"/usr/lib/firmware/nvidia/gp106/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":192,"date":"Aug 8 2019"},{"filename":"sw_bundle_init.bin","link_to":"../../gp102/gr/sw_bundle_init.bin","parent":"/usr/lib/firmware/nvidia/gp106/gr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":33,"date":"Oct 16 09:22"},{"filename":"sw_ctx.bin","link_to":"../../gp102/gr/sw_ctx.bin","parent":"/usr/lib/firmware/nvidia/gp106/gr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":25,"date":"Oct 16 09:22"},{"filename":"sw_method_init.bin","link_to":"../../gp102/gr/sw_method_init.bin","parent":"/usr/lib/firmware/nvidia/gp106/gr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":33,"date":"Oct 16 09:22"},{"filename":"sw_nonctx.bin","link_to":"../../gp102/gr/sw_nonctx.bin","parent":"/usr/lib/firmware/nvidia/gp106/gr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":28,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gp106/nvdec","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":26,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gp106/nvdec","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":52,"date":"Aug 8 2019"},{"filename":"scrubber.bin","link_to":"../../gp102/nvdec/scrubber.bin","parent":"/usr/lib/firmware/nvidia/gp106/nvdec","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":30,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gp106/sec2","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":54,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gp106/sec2","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":52,"date":"Aug 8 2019"},{"filename":"desc.bin","link_to":"../../gp102/sec2/desc.bin","parent":"/usr/lib/firmware/nvidia/gp106/sec2","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":25,"date":"Oct 16 09:22"},{"filename":"image.bin","link_to":"../../gp102/sec2/image.bin","parent":"/usr/lib/firmware/nvidia/gp106/sec2","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":26,"date":"Oct 16 09:22"},{"filename":"sig.bin","link_to":"../../gp102/sec2/sig.bin","parent":"/usr/lib/firmware/nvidia/gp106/sec2","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":24,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gp107","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":52,"date":"Aug 8 2019"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gp107","flags":"drwxr-xr-x.","links":19,"owner":"root","group":"root","size":236,"date":"Oct 16 09:22"},{"filename":"acr","parent":"/usr/lib/firmware/nvidia/gp107","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":87,"date":"Oct 16 09:22"},{"filename":"gr","parent":"/usr/lib/firmware/nvidia/gp107","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":263,"date":"Oct 16 09:22"},{"filename":"nvdec","parent":"/usr/lib/firmware/nvidia/gp107","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":26,"date":"Oct 16 09:22"},{"filename":"sec2","parent":"/usr/lib/firmware/nvidia/gp107","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":54,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gp107/acr","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":87,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gp107/acr","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":52,"date":"Aug 8 2019"},{"filename":"bl.bin","link_to":"../../gp102/acr/bl.bin","parent":"/usr/lib/firmware/nvidia/gp107/acr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":22,"date":"Oct 16 09:22"},{"filename":"ucode_load.bin","link_to":"../../gp102/acr/ucode_load.bin","parent":"/usr/lib/firmware/nvidia/gp107/acr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":30,"date":"Oct 16 09:22"},{"filename":"ucode_unload.bin","link_to":"../../gp102/acr/ucode_unload.bin","parent":"/usr/lib/firmware/nvidia/gp107/acr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":32,"date":"Oct 16 09:22"},{"filename":"unload_bl.bin","link_to":"../../gp102/acr/unload_bl.bin","parent":"/usr/lib/firmware/nvidia/gp107/acr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":29,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gp107/gr","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":263,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gp107/gr","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":52,"date":"Aug 8 2019"},{"filename":"fecs_bl.bin","parent":"/usr/lib/firmware/nvidia/gp107/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":576,"date":"Aug 8 2019"},{"filename":"fecs_data.bin","parent":"/usr/lib/firmware/nvidia/gp107/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2756,"date":"Aug 8 2019"},{"filename":"fecs_inst.bin","parent":"/usr/lib/firmware/nvidia/gp107/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":22879,"date":"Aug 8 2019"},{"filename":"fecs_sig.bin","parent":"/usr/lib/firmware/nvidia/gp107/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":192,"date":"Aug 8 2019"},{"filename":"gpccs_bl.bin","parent":"/usr/lib/firmware/nvidia/gp107/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":576,"date":"Aug 8 2019"},{"filename":"gpccs_data.bin","parent":"/usr/lib/firmware/nvidia/gp107/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2100,"date":"Aug 8 2019"},{"filename":"gpccs_inst.bin","parent":"/usr/lib/firmware/nvidia/gp107/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":12587,"date":"Aug 8 2019"},{"filename":"gpccs_sig.bin","parent":"/usr/lib/firmware/nvidia/gp107/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":192,"date":"Aug 8 2019"},{"filename":"sw_bundle_init.bin","link_to":"../../gp102/gr/sw_bundle_init.bin","parent":"/usr/lib/firmware/nvidia/gp107/gr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":33,"date":"Oct 16 09:22"},{"filename":"sw_ctx.bin","parent":"/usr/lib/firmware/nvidia/gp107/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":6000,"date":"Aug 8 2019"},{"filename":"sw_method_init.bin","link_to":"../../gp102/gr/sw_method_init.bin","parent":"/usr/lib/firmware/nvidia/gp107/gr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":33,"date":"Oct 16 09:22"},{"filename":"sw_nonctx.bin","parent":"/usr/lib/firmware/nvidia/gp107/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2496,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gp107/nvdec","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":26,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gp107/nvdec","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":52,"date":"Aug 8 2019"},{"filename":"scrubber.bin","link_to":"../../gp102/nvdec/scrubber.bin","parent":"/usr/lib/firmware/nvidia/gp107/nvdec","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":30,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gp107/sec2","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":54,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gp107/sec2","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":52,"date":"Aug 8 2019"},{"filename":"desc.bin","link_to":"../../gp102/sec2/desc.bin","parent":"/usr/lib/firmware/nvidia/gp107/sec2","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":25,"date":"Oct 16 09:22"},{"filename":"image.bin","link_to":"../../gp102/sec2/image.bin","parent":"/usr/lib/firmware/nvidia/gp107/sec2","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":26,"date":"Oct 16 09:22"},{"filename":"sig.bin","link_to":"../../gp102/sec2/sig.bin","parent":"/usr/lib/firmware/nvidia/gp107/sec2","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":24,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gp108","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":52,"date":"Aug 8 2019"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gp108","flags":"drwxr-xr-x.","links":19,"owner":"root","group":"root","size":236,"date":"Oct 16 09:22"},{"filename":"acr","parent":"/usr/lib/firmware/nvidia/gp108","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":87,"date":"Oct 16 09:22"},{"filename":"gr","parent":"/usr/lib/firmware/nvidia/gp108","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":263,"date":"Oct 16 09:22"},{"filename":"nvdec","parent":"/usr/lib/firmware/nvidia/gp108","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":26,"date":"Oct 16 09:22"},{"filename":"sec2","parent":"/usr/lib/firmware/nvidia/gp108","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":54,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gp108/acr","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":87,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gp108/acr","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":52,"date":"Aug 8 2019"},{"filename":"bl.bin","link_to":"../../gp102/acr/bl.bin","parent":"/usr/lib/firmware/nvidia/gp108/acr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":22,"date":"Oct 16 09:22"},{"filename":"ucode_load.bin","link_to":"../../gp102/acr/ucode_load.bin","parent":"/usr/lib/firmware/nvidia/gp108/acr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":30,"date":"Oct 16 09:22"},{"filename":"ucode_unload.bin","link_to":"../../gp102/acr/ucode_unload.bin","parent":"/usr/lib/firmware/nvidia/gp108/acr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":32,"date":"Oct 16 09:22"},{"filename":"unload_bl.bin","link_to":"../../gp102/acr/unload_bl.bin","parent":"/usr/lib/firmware/nvidia/gp108/acr","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":29,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gp108/gr","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":263,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gp108/gr","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":52,"date":"Aug 8 2019"},{"filename":"fecs_bl.bin","parent":"/usr/lib/firmware/nvidia/gp108/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":576,"date":"Aug 8 2019"},{"filename":"fecs_data.bin","parent":"/usr/lib/firmware/nvidia/gp108/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2248,"date":"Aug 8 2019"},{"filename":"fecs_inst.bin","parent":"/usr/lib/firmware/nvidia/gp108/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":21161,"date":"Aug 8 2019"},{"filename":"fecs_sig.bin","parent":"/usr/lib/firmware/nvidia/gp108/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":192,"date":"Aug 8 2019"},{"filename":"gpccs_bl.bin","parent":"/usr/lib/firmware/nvidia/gp108/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":576,"date":"Aug 8 2019"},{"filename":"gpccs_data.bin","parent":"/usr/lib/firmware/nvidia/gp108/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2092,"date":"Aug 8 2019"},{"filename":"gpccs_inst.bin","parent":"/usr/lib/firmware/nvidia/gp108/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":13095,"date":"Aug 8 2019"},{"filename":"gpccs_sig.bin","parent":"/usr/lib/firmware/nvidia/gp108/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":192,"date":"Aug 8 2019"},{"filename":"sw_bundle_init.bin","parent":"/usr/lib/firmware/nvidia/gp108/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":7680,"date":"Aug 8 2019"},{"filename":"sw_ctx.bin","parent":"/usr/lib/firmware/nvidia/gp108/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":6000,"date":"Aug 8 2019"},{"filename":"sw_method_init.bin","parent":"/usr/lib/firmware/nvidia/gp108/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":12288,"date":"Aug 8 2019"},{"filename":"sw_nonctx.bin","parent":"/usr/lib/firmware/nvidia/gp108/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2496,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gp108/nvdec","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":26,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gp108/nvdec","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":52,"date":"Aug 8 2019"},{"filename":"scrubber.bin","link_to":"../../gp102/nvdec/scrubber.bin","parent":"/usr/lib/firmware/nvidia/gp108/nvdec","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":30,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gp108/sec2","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":54,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gp108/sec2","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":52,"date":"Aug 8 2019"},{"filename":"desc.bin","parent":"/usr/lib/firmware/nvidia/gp108/sec2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":656,"date":"Aug 8 2019"},{"filename":"image.bin","parent":"/usr/lib/firmware/nvidia/gp108/sec2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":109568,"date":"Aug 8 2019"},{"filename":"sig.bin","parent":"/usr/lib/firmware/nvidia/gp108/sec2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":192,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gp10b","flags":"drwxr-xr-x.","links":5,"owner":"root","group":"root","size":38,"date":"Aug 8 2019"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gp10b","flags":"drwxr-xr-x.","links":19,"owner":"root","group":"root","size":236,"date":"Oct 16 09:22"},{"filename":"acr","parent":"/usr/lib/firmware/nvidia/gp10b","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":42,"date":"Oct 16 09:22"},{"filename":"gr","parent":"/usr/lib/firmware/nvidia/gp10b","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":263,"date":"Oct 16 09:22"},{"filename":"pmu","parent":"/usr/lib/firmware/nvidia/gp10b","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":54,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gp10b/acr","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":42,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gp10b/acr","flags":"drwxr-xr-x.","links":5,"owner":"root","group":"root","size":38,"date":"Aug 8 2019"},{"filename":"bl.bin","parent":"/usr/lib/firmware/nvidia/gp10b/acr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1280,"date":"Aug 8 2019"},{"filename":"ucode_load.bin","parent":"/usr/lib/firmware/nvidia/gp10b/acr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":19456,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gp10b/gr","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":263,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gp10b/gr","flags":"drwxr-xr-x.","links":5,"owner":"root","group":"root","size":38,"date":"Aug 8 2019"},{"filename":"fecs_bl.bin","parent":"/usr/lib/firmware/nvidia/gp10b/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":576,"date":"Aug 8 2019"},{"filename":"fecs_data.bin","parent":"/usr/lib/firmware/nvidia/gp10b/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":3668,"date":"Aug 8 2019"},{"filename":"fecs_inst.bin","parent":"/usr/lib/firmware/nvidia/gp10b/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":22306,"date":"Aug 8 2019"},{"filename":"fecs_sig.bin","parent":"/usr/lib/firmware/nvidia/gp10b/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":76,"date":"Aug 8 2019"},{"filename":"gpccs_bl.bin","parent":"/usr/lib/firmware/nvidia/gp10b/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":576,"date":"Aug 8 2019"},{"filename":"gpccs_data.bin","parent":"/usr/lib/firmware/nvidia/gp10b/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2340,"date":"Aug 8 2019"},{"filename":"gpccs_inst.bin","parent":"/usr/lib/firmware/nvidia/gp10b/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":12921,"date":"Aug 8 2019"},{"filename":"gpccs_sig.bin","parent":"/usr/lib/firmware/nvidia/gp10b/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":76,"date":"Aug 8 2019"},{"filename":"sw_bundle_init.bin","parent":"/usr/lib/firmware/nvidia/gp10b/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":7664,"date":"Aug 8 2019"},{"filename":"sw_ctx.bin","parent":"/usr/lib/firmware/nvidia/gp10b/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":6036,"date":"Aug 8 2019"},{"filename":"sw_method_init.bin","parent":"/usr/lib/firmware/nvidia/gp10b/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":11928,"date":"Aug 8 2019"},{"filename":"sw_nonctx.bin","parent":"/usr/lib/firmware/nvidia/gp10b/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2744,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gp10b/pmu","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":54,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gp10b/pmu","flags":"drwxr-xr-x.","links":5,"owner":"root","group":"root","size":38,"date":"Aug 8 2019"},{"filename":"desc.bin","parent":"/usr/lib/firmware/nvidia/gp10b/pmu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":652,"date":"Aug 8 2019"},{"filename":"image.bin","parent":"/usr/lib/firmware/nvidia/gp10b/pmu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":49408,"date":"Aug 8 2019"},{"filename":"sig.bin","parent":"/usr/lib/firmware/nvidia/gp10b/pmu","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":76,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gv100","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":52,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gv100","flags":"drwxr-xr-x.","links":19,"owner":"root","group":"root","size":236,"date":"Oct 16 09:22"},{"filename":"acr","parent":"/usr/lib/firmware/nvidia/gv100","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":87,"date":"Oct 16 09:22"},{"filename":"gr","parent":"/usr/lib/firmware/nvidia/gv100","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":263,"date":"Oct 16 09:22"},{"filename":"nvdec","parent":"/usr/lib/firmware/nvidia/gv100","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":26,"date":"Oct 16 09:22"},{"filename":"sec2","parent":"/usr/lib/firmware/nvidia/gv100","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":54,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gv100/acr","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":87,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gv100/acr","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":52,"date":"Oct 16 09:22"},{"filename":"bl.bin","parent":"/usr/lib/firmware/nvidia/gv100/acr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1280,"date":"Aug 8 2019"},{"filename":"ucode_load.bin","parent":"/usr/lib/firmware/nvidia/gv100/acr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":18688,"date":"Aug 8 2019"},{"filename":"ucode_unload.bin","parent":"/usr/lib/firmware/nvidia/gv100/acr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":6400,"date":"Aug 8 2019"},{"filename":"unload_bl.bin","parent":"/usr/lib/firmware/nvidia/gv100/acr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1280,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gv100/gr","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":263,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gv100/gr","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":52,"date":"Oct 16 09:22"},{"filename":"fecs_bl.bin","parent":"/usr/lib/firmware/nvidia/gv100/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":576,"date":"Aug 8 2019"},{"filename":"fecs_data.bin","parent":"/usr/lib/firmware/nvidia/gv100/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4788,"date":"Aug 8 2019"},{"filename":"fecs_inst.bin","parent":"/usr/lib/firmware/nvidia/gv100/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":25632,"date":"Aug 8 2019"},{"filename":"fecs_sig.bin","parent":"/usr/lib/firmware/nvidia/gv100/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":192,"date":"Aug 8 2019"},{"filename":"gpccs_bl.bin","parent":"/usr/lib/firmware/nvidia/gv100/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":576,"date":"Aug 8 2019"},{"filename":"gpccs_data.bin","parent":"/usr/lib/firmware/nvidia/gv100/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2128,"date":"Aug 8 2019"},{"filename":"gpccs_inst.bin","parent":"/usr/lib/firmware/nvidia/gv100/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":12643,"date":"Aug 8 2019"},{"filename":"gpccs_sig.bin","parent":"/usr/lib/firmware/nvidia/gv100/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":192,"date":"Aug 8 2019"},{"filename":"sw_bundle_init.bin","parent":"/usr/lib/firmware/nvidia/gv100/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":7664,"date":"Aug 8 2019"},{"filename":"sw_ctx.bin","parent":"/usr/lib/firmware/nvidia/gv100/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":9756,"date":"Aug 8 2019"},{"filename":"sw_method_init.bin","parent":"/usr/lib/firmware/nvidia/gv100/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":12296,"date":"Aug 8 2019"},{"filename":"sw_nonctx.bin","parent":"/usr/lib/firmware/nvidia/gv100/gr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2728,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gv100/nvdec","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":26,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gv100/nvdec","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":52,"date":"Oct 16 09:22"},{"filename":"scrubber.bin","parent":"/usr/lib/firmware/nvidia/gv100/nvdec","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4352,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/nvidia/gv100/sec2","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":54,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/gv100/sec2","flags":"drwxr-xr-x.","links":6,"owner":"root","group":"root","size":52,"date":"Oct 16 09:22"},{"filename":"desc.bin","parent":"/usr/lib/firmware/nvidia/gv100/sec2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":656,"date":"Aug 8 2019"},{"filename":"image.bin","parent":"/usr/lib/firmware/nvidia/gv100/sec2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":91136,"date":"Aug 8 2019"},{"filename":"sig.bin","parent":"/usr/lib/firmware/nvidia/gv100/sec2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":192,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/nvidia/tegra124","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":45,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/tegra124","flags":"drwxr-xr-x.","links":19,"owner":"root","group":"root","size":236,"date":"Oct 16 09:22"},{"filename":"vic03_ucode.bin","parent":"/usr/lib/firmware/nvidia/tegra124","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":16128,"date":"Aug 8 2019"},{"filename":"xusb.bin","parent":"/usr/lib/firmware/nvidia/tegra124","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":134656,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/nvidia/tegra186","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":29,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/tegra186","flags":"drwxr-xr-x.","links":19,"owner":"root","group":"root","size":236,"date":"Oct 16 09:22"},{"filename":"vic04_ucode.bin","parent":"/usr/lib/firmware/nvidia/tegra186","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":19200,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/nvidia/tegra210","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":45,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/tegra210","flags":"drwxr-xr-x.","links":19,"owner":"root","group":"root","size":236,"date":"Oct 16 09:22"},{"filename":"vic04_ucode.bin","parent":"/usr/lib/firmware/nvidia/tegra210","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":16640,"date":"Aug 8 2019"},{"filename":"xusb.bin","parent":"/usr/lib/firmware/nvidia/tegra210","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":132608,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/nvidia/tu10x","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":19,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/tu10x","flags":"drwxr-xr-x.","links":19,"owner":"root","group":"root","size":236,"date":"Oct 16 09:22"},{"filename":"typec","parent":"/usr/lib/firmware/nvidia/tu10x","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":80,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/nvidia/tu10x/typec","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":80,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/nvidia/tu10x/typec","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":19,"date":"Oct 16 09:22"},{"filename":"ccg_boot.cyacd","parent":"/usr/lib/firmware/nvidia/tu10x/typec","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":90658,"date":"Aug 8 2019"},{"filename":"ccg_primary.cyacd","parent":"/usr/lib/firmware/nvidia/tu10x/typec","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":145523,"date":"Aug 8 2019"},{"filename":"ccg_secondary.cyacd","parent":"/usr/lib/firmware/nvidia/tu10x/typec","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":96512,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/ositech","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":27,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/ositech","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"Xilinx7OD.bin","parent":"/usr/lib/firmware/ositech","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2778,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/pcxhr","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 15 2019"},{"filename":"..","parent":"/usr/lib/firmware/pcxhr","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"b321_512.b56","parent":"/usr/lib/firmware/pcxhr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":5637,"date":"Mar 5 2015"},{"filename":"d321_512.d56","parent":"/usr/lib/firmware/pcxhr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":180609,"date":"Mar 5 2015"},{"filename":"dspb1222e.b56","parent":"/usr/lib/firmware/pcxhr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":5151,"date":"Mar 5 2015"},{"filename":"dspb1222hr.b56","parent":"/usr/lib/firmware/pcxhr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":5199,"date":"Mar 5 2015"},{"filename":"dspb882e.b56","parent":"/usr/lib/firmware/pcxhr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4764,"date":"Mar 5 2015"},{"filename":"dspb882hr.b56","parent":"/usr/lib/firmware/pcxhr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4806,"date":"Mar 5 2015"},{"filename":"dspb924.b56","parent":"/usr/lib/firmware/pcxhr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2688,"date":"Mar 5 2015"},{"filename":"dspd1222.d56","parent":"/usr/lib/firmware/pcxhr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":180198,"date":"Mar 5 2015"},{"filename":"dspd222.d56","parent":"/usr/lib/firmware/pcxhr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":89610,"date":"Mar 5 2015"},{"filename":"dspd882.d56","parent":"/usr/lib/firmware/pcxhr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":182256,"date":"Mar 5 2015"},{"filename":"dspe882.e56","parent":"/usr/lib/firmware/pcxhr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":618,"date":"Mar 5 2015"},{"filename":"dspe924.e56","parent":"/usr/lib/firmware/pcxhr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":612,"date":"Mar 5 2015"},{"filename":"e321_512.e56","parent":"/usr/lib/firmware/pcxhr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":618,"date":"Mar 5 2015"},{"filename":"xc_1_882.dat","parent":"/usr/lib/firmware/pcxhr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":78756,"date":"Mar 5 2015"},{"filename":"xi_1_882.dat","parent":"/usr/lib/firmware/pcxhr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":78756,"date":"Mar 5 2015"},{"filename":"xlxc1222e.dat","parent":"/usr/lib/firmware/pcxhr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":78831,"date":"Mar 5 2015"},{"filename":"xlxc1222hr.dat","parent":"/usr/lib/firmware/pcxhr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":78831,"date":"Mar 5 2015"},{"filename":"xlxc222.dat","parent":"/usr/lib/firmware/pcxhr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":78831,"date":"Mar 5 2015"},{"filename":"xlxc882e.dat","parent":"/usr/lib/firmware/pcxhr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":78831,"date":"Mar 5 2015"},{"filename":"xlxc882hr.dat","parent":"/usr/lib/firmware/pcxhr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":78831,"date":"Mar 5 2015"},{"filename":"xlxc924.dat","parent":"/usr/lib/firmware/pcxhr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":108056,"date":"Mar 5 2015"},{"filename":"xlxint.dat","parent":"/usr/lib/firmware/pcxhr","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":78831,"date":"Mar 5 2015"},{"filename":".","parent":"/usr/lib/firmware/qca","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/qca","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"crbtfw21.tlv","parent":"/usr/lib/firmware/qca","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":177060,"date":"Aug 8 2019"},{"filename":"crnv21.bin","parent":"/usr/lib/firmware/qca","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4587,"date":"Aug 8 2019"},{"filename":"NOTICE.txt","parent":"/usr/lib/firmware/qca","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":19013,"date":"Aug 8 2019"},{"filename":"nvm_00130300.bin","parent":"/usr/lib/firmware/qca","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1937,"date":"Aug 8 2019"},{"filename":"nvm_00130302.bin","parent":"/usr/lib/firmware/qca","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1968,"date":"Aug 8 2019"},{"filename":"nvm_00440302.bin","parent":"/usr/lib/firmware/qca","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2010,"date":"Aug 8 2019"},{"filename":"nvm_usb_00000200.bin","parent":"/usr/lib/firmware/qca","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1859,"date":"Aug 8 2019"},{"filename":"nvm_usb_00000201.bin","parent":"/usr/lib/firmware/qca","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1859,"date":"Aug 8 2019"},{"filename":"nvm_usb_00000300.bin","parent":"/usr/lib/firmware/qca","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1857,"date":"Aug 8 2019"},{"filename":"nvm_usb_00000302.bin","parent":"/usr/lib/firmware/qca","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1996,"date":"Aug 8 2019"},{"filename":"rampatch_00130300.bin","parent":"/usr/lib/firmware/qca","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":65864,"date":"Aug 8 2019"},{"filename":"rampatch_00130302.bin","parent":"/usr/lib/firmware/qca","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":32064,"date":"Aug 8 2019"},{"filename":"rampatch_00440302.bin","parent":"/usr/lib/firmware/qca","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":64940,"date":"Aug 8 2019"},{"filename":"rampatch_usb_00000200.bin","parent":"/usr/lib/firmware/qca","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":54432,"date":"Aug 8 2019"},{"filename":"rampatch_usb_00000201.bin","parent":"/usr/lib/firmware/qca","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":54432,"date":"Aug 8 2019"},{"filename":"rampatch_usb_00000300.bin","parent":"/usr/lib/firmware/qca","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":65776,"date":"Aug 8 2019"},{"filename":"rampatch_usb_00000302.bin","parent":"/usr/lib/firmware/qca","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":64168,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/qcom","flags":"drwxr-xr-x.","links":5,"owner":"root","group":"root","size":254,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/qcom","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"a300_pfp.fw","parent":"/usr/lib/firmware/qcom","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1156,"date":"Aug 8 2019"},{"filename":"a300_pm4.fw","parent":"/usr/lib/firmware/qcom","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":9220,"date":"Aug 8 2019"},{"filename":"a530_pfp.fw","parent":"/usr/lib/firmware/qcom","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":15876,"date":"Aug 8 2019"},{"filename":"a530_pm4.fw","parent":"/usr/lib/firmware/qcom","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":19572,"date":"Aug 8 2019"},{"filename":"a530v3_gpmu.fw2","parent":"/usr/lib/firmware/qcom","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8184,"date":"Aug 8 2019"},{"filename":"a530_zap.b00","parent":"/usr/lib/firmware/qcom","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":148,"date":"Aug 8 2019"},{"filename":"a530_zap.b01","parent":"/usr/lib/firmware/qcom","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":6536,"date":"Aug 8 2019"},{"filename":"a530_zap.b02","parent":"/usr/lib/firmware/qcom","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4900,"date":"Aug 8 2019"},{"filename":"a530_zap.mdt","parent":"/usr/lib/firmware/qcom","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":6684,"date":"Aug 8 2019"},{"filename":"NOTICE.txt","parent":"/usr/lib/firmware/qcom","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":23966,"date":"Aug 8 2019"},{"filename":"venus-1.8","parent":"/usr/lib/firmware/qcom","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":108,"date":"Oct 16 09:22"},{"filename":"venus-4.2","parent":"/usr/lib/firmware/qcom","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":108,"date":"Oct 16 09:22"},{"filename":"venus-5.2","parent":"/usr/lib/firmware/qcom","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":125,"date":"Oct 16 09:22"},{"filename":".","parent":"/usr/lib/firmware/qcom/venus-1.8","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":108,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/qcom/venus-1.8","flags":"drwxr-xr-x.","links":5,"owner":"root","group":"root","size":254,"date":"Oct 16 09:22"},{"filename":"venus.b00","parent":"/usr/lib/firmware/qcom/venus-1.8","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":212,"date":"Aug 8 2019"},{"filename":"venus.b01","parent":"/usr/lib/firmware/qcom/venus-1.8","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":6600,"date":"Aug 8 2019"},{"filename":"venus.b02","parent":"/usr/lib/firmware/qcom/venus-1.8","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":975088,"date":"Aug 8 2019"},{"filename":"venus.b03","parent":"/usr/lib/firmware/qcom/venus-1.8","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":5568,"date":"Aug 8 2019"},{"filename":"venus.b04","parent":"/usr/lib/firmware/qcom/venus-1.8","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":32,"date":"Aug 8 2019"},{"filename":"venus.mdt","parent":"/usr/lib/firmware/qcom/venus-1.8","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":6812,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/qcom/venus-4.2","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":108,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/qcom/venus-4.2","flags":"drwxr-xr-x.","links":5,"owner":"root","group":"root","size":254,"date":"Oct 16 09:22"},{"filename":"venus.b00","parent":"/usr/lib/firmware/qcom/venus-4.2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":212,"date":"Aug 8 2019"},{"filename":"venus.b01","parent":"/usr/lib/firmware/qcom/venus-4.2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":6600,"date":"Aug 8 2019"},{"filename":"venus.b02","parent":"/usr/lib/firmware/qcom/venus-4.2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":884136,"date":"Aug 8 2019"},{"filename":"venus.b03","parent":"/usr/lib/firmware/qcom/venus-4.2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":28976,"date":"Aug 8 2019"},{"filename":"venus.b04","parent":"/usr/lib/firmware/qcom/venus-4.2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":32,"date":"Aug 8 2019"},{"filename":"venus.mdt","parent":"/usr/lib/firmware/qcom/venus-4.2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":6812,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/qcom/venus-5.2","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":125,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/qcom/venus-5.2","flags":"drwxr-xr-x.","links":5,"owner":"root","group":"root","size":254,"date":"Oct 16 09:22"},{"filename":"venus.b00","parent":"/usr/lib/firmware/qcom/venus-5.2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":212,"date":"Aug 8 2019"},{"filename":"venus.b01","parent":"/usr/lib/firmware/qcom/venus-5.2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":6600,"date":"Aug 8 2019"},{"filename":"venus.b02","parent":"/usr/lib/firmware/qcom/venus-5.2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":837304,"date":"Aug 8 2019"},{"filename":"venus.b03","parent":"/usr/lib/firmware/qcom/venus-5.2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":33640,"date":"Aug 8 2019"},{"filename":"venus.b04","parent":"/usr/lib/firmware/qcom/venus-5.2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":32,"date":"Aug 8 2019"},{"filename":"venus.mbn","parent":"/usr/lib/firmware/qcom/venus-5.2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":883264,"date":"Aug 8 2019"},{"filename":"venus.mdt","parent":"/usr/lib/firmware/qcom/venus-5.2","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":6812,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/qed","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/qed","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"qed_init_values-8.10.9.0.bin","parent":"/usr/lib/firmware/qed","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1434652,"date":"Aug 8 2019"},{"filename":"qed_init_values-8.14.6.0.bin","parent":"/usr/lib/firmware/qed","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1459040,"date":"Aug 8 2019"},{"filename":"qed_init_values-8.18.9.0.bin","parent":"/usr/lib/firmware/qed","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1536984,"date":"Aug 8 2019"},{"filename":"qed_init_values-8.20.0.0.bin","parent":"/usr/lib/firmware/qed","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1443340,"date":"Aug 8 2019"},{"filename":"qed_init_values-8.30.12.0.bin","parent":"/usr/lib/firmware/qed","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1507052,"date":"Aug 8 2019"},{"filename":"qed_init_values-8.33.12.0.bin","parent":"/usr/lib/firmware/qed","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1562920,"date":"Aug 8 2019"},{"filename":"qed_init_values-8.37.7.0.bin","parent":"/usr/lib/firmware/qed","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":1559500,"date":"Aug 8 2019"},{"filename":"qed_init_values_zipped-8.10.10.0.bin","parent":"/usr/lib/firmware/qed","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":780576,"date":"Aug 8 2019"},{"filename":"qed_init_values_zipped-8.10.5.0.bin","parent":"/usr/lib/firmware/qed","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":767532,"date":"Aug 8 2019"},{"filename":"qed_init_values_zipped-8.15.3.0.bin","parent":"/usr/lib/firmware/qed","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":789540,"date":"Aug 8 2019"},{"filename":"qed_init_values_zipped-8.20.0.0.bin","parent":"/usr/lib/firmware/qed","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":794456,"date":"Aug 8 2019"},{"filename":"qed_init_values_zipped-8.33.1.0.bin","parent":"/usr/lib/firmware/qed","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":838612,"date":"Aug 8 2019"},{"filename":"qed_init_values_zipped-8.33.11.0.bin","parent":"/usr/lib/firmware/qed","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":852456,"date":"Aug 8 2019"},{"filename":"qed_init_values_zipped-8.37.2.0.bin","parent":"/usr/lib/firmware/qed","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":867472,"date":"Aug 8 2019"},{"filename":"qed_init_values_zipped-8.37.7.0.bin","parent":"/usr/lib/firmware/qed","flags":"-rwxr-xr-x.","links":1,"owner":"root","group":"root","size":872296,"date":"Aug 8 2019"},{"filename":"qed_init_values_zipped-8.4.2.0.bin","parent":"/usr/lib/firmware/qed","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":416930,"date":"Aug 8 2019"},{"filename":"qed_init_values_zipped-8.7.3.0.bin","parent":"/usr/lib/firmware/qed","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":473792,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/qlogic","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":91,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/qlogic","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"1040.bin","parent":"/usr/lib/firmware/qlogic","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":33462,"date":"Aug 8 2019"},{"filename":"12160.bin","parent":"/usr/lib/firmware/qlogic","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":28056,"date":"Aug 8 2019"},{"filename":"1280.bin","parent":"/usr/lib/firmware/qlogic","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":31842,"date":"Aug 8 2019"},{"filename":"isp1000.bin","parent":"/usr/lib/firmware/qlogic","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":18482,"date":"Aug 8 2019"},{"filename":"sd7220.fw","parent":"/usr/lib/firmware/qlogic","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8192,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/r128","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":26,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/r128","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"r128_cce.bin","parent":"/usr/lib/firmware/r128","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2048,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/radeon","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/radeon","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"ARUBA_me.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8704,"date":"Aug 8 2019"},{"filename":"ARUBA_pfp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8704,"date":"Aug 8 2019"},{"filename":"ARUBA_rlc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":6144,"date":"Aug 8 2019"},{"filename":"banks_k_2_smc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":61932,"date":"Aug 8 2019"},{"filename":"BARTS_mc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":24096,"date":"Aug 8 2019"},{"filename":"BARTS_me.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":5504,"date":"Aug 8 2019"},{"filename":"BARTS_pfp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4480,"date":"Aug 8 2019"},{"filename":"BARTS_smc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":24840,"date":"Aug 8 2019"},{"filename":"bonaire_ce.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"BONAIRE_ce.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8576,"date":"Aug 8 2019"},{"filename":"bonaire_k_smc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":130796,"date":"Aug 8 2019"},{"filename":"BONAIRE_mc2.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":31792,"date":"Aug 8 2019"},{"filename":"bonaire_mc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":32336,"date":"Aug 8 2019"},{"filename":"BONAIRE_mc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":31464,"date":"Aug 8 2019"},{"filename":"bonaire_me.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"BONAIRE_me.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8576,"date":"Aug 8 2019"},{"filename":"bonaire_mec.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17024,"date":"Aug 8 2019"},{"filename":"BONAIRE_mec.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":16768,"date":"Aug 8 2019"},{"filename":"bonaire_pfp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"BONAIRE_pfp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8576,"date":"Aug 8 2019"},{"filename":"bonaire_rlc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8448,"date":"Aug 8 2019"},{"filename":"BONAIRE_rlc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8192,"date":"Aug 8 2019"},{"filename":"bonaire_sdma1.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4456,"date":"Aug 8 2019"},{"filename":"bonaire_sdma.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4456,"date":"Aug 8 2019"},{"filename":"BONAIRE_sdma.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4200,"date":"Aug 8 2019"},{"filename":"bonaire_smc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":130796,"date":"Aug 8 2019"},{"filename":"BONAIRE_smc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":130540,"date":"Aug 8 2019"},{"filename":"bonaire_uvd.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":232752,"date":"Aug 8 2019"},{"filename":"BONAIRE_uvd.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":232240,"date":"Aug 8 2019"},{"filename":"bonaire_vce.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":101072,"date":"Aug 8 2019"},{"filename":"BONAIRE_vce.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":78248,"date":"Aug 8 2019"},{"filename":"BTC_rlc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":3072,"date":"Aug 8 2019"},{"filename":"CAICOS_mc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":24096,"date":"Aug 8 2019"},{"filename":"CAICOS_me.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":5504,"date":"Aug 8 2019"},{"filename":"CAICOS_pfp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4480,"date":"Aug 8 2019"},{"filename":"CAICOS_smc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":24512,"date":"Aug 8 2019"},{"filename":"CAYMAN_mc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":24148,"date":"Aug 8 2019"},{"filename":"CAYMAN_me.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8704,"date":"Aug 8 2019"},{"filename":"CAYMAN_pfp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8704,"date":"Aug 8 2019"},{"filename":"CAYMAN_rlc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"CAYMAN_smc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":31212,"date":"Aug 8 2019"},{"filename":"CEDAR_me.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":5504,"date":"Aug 8 2019"},{"filename":"CEDAR_pfp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4480,"date":"Aug 8 2019"},{"filename":"CEDAR_rlc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":3072,"date":"Aug 8 2019"},{"filename":"CEDAR_smc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":23888,"date":"Aug 8 2019"},{"filename":"CYPRESS_me.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":5504,"date":"Aug 8 2019"},{"filename":"CYPRESS_pfp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4480,"date":"Aug 8 2019"},{"filename":"CYPRESS_rlc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":3072,"date":"Aug 8 2019"},{"filename":"CYPRESS_smc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":25080,"date":"Aug 8 2019"},{"filename":"CYPRESS_uvd.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":115736,"date":"Aug 8 2019"},{"filename":"hainan_ce.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"HAINAN_ce.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8576,"date":"Aug 8 2019"},{"filename":"hainan_k_smc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":61876,"date":"Aug 8 2019"},{"filename":"HAINAN_mc2.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":31452,"date":"Aug 8 2019"},{"filename":"hainan_mc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":31996,"date":"Aug 8 2019"},{"filename":"HAINAN_mc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":31452,"date":"Aug 8 2019"},{"filename":"hainan_me.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"HAINAN_me.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8576,"date":"Aug 8 2019"},{"filename":"hainan_pfp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"HAINAN_pfp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8576,"date":"Aug 8 2019"},{"filename":"hainan_rlc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8448,"date":"Aug 8 2019"},{"filename":"HAINAN_rlc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8192,"date":"Aug 8 2019"},{"filename":"hainan_smc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":61444,"date":"Aug 8 2019"},{"filename":"HAINAN_smc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":59004,"date":"Aug 8 2019"},{"filename":"hawaii_ce.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"HAWAII_ce.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8576,"date":"Aug 8 2019"},{"filename":"hawaii_k_smc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":130796,"date":"Aug 8 2019"},{"filename":"HAWAII_mc2.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":32364,"date":"Aug 8 2019"},{"filename":"hawaii_mc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":32796,"date":"Aug 8 2019"},{"filename":"HAWAII_mc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":31732,"date":"Aug 8 2019"},{"filename":"hawaii_me.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"HAWAII_me.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8576,"date":"Aug 8 2019"},{"filename":"hawaii_mec.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17024,"date":"Aug 8 2019"},{"filename":"HAWAII_mec.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":16768,"date":"Aug 8 2019"},{"filename":"hawaii_pfp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"HAWAII_pfp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8576,"date":"Aug 8 2019"},{"filename":"hawaii_rlc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8448,"date":"Aug 8 2019"},{"filename":"HAWAII_rlc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8192,"date":"Aug 8 2019"},{"filename":"hawaii_sdma1.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4456,"date":"Aug 8 2019"},{"filename":"hawaii_sdma.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4456,"date":"Aug 8 2019"},{"filename":"HAWAII_sdma.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4200,"date":"Aug 8 2019"},{"filename":"hawaii_smc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":130796,"date":"Aug 8 2019"},{"filename":"HAWAII_smc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":130540,"date":"Aug 8 2019"},{"filename":"hawaii_uvd.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":232752,"date":"Aug 8 2019"},{"filename":"hawaii_vce.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":101072,"date":"Aug 8 2019"},{"filename":"JUNIPER_me.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":5504,"date":"Aug 8 2019"},{"filename":"JUNIPER_pfp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4480,"date":"Aug 8 2019"},{"filename":"JUNIPER_rlc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":3072,"date":"Aug 8 2019"},{"filename":"JUNIPER_smc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":24352,"date":"Aug 8 2019"},{"filename":"kabini_ce.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"KABINI_ce.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8576,"date":"Aug 8 2019"},{"filename":"kabini_me.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"KABINI_me.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8576,"date":"Aug 8 2019"},{"filename":"kabini_mec.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17024,"date":"Aug 8 2019"},{"filename":"KABINI_mec.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":16768,"date":"Aug 8 2019"},{"filename":"kabini_pfp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"KABINI_pfp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8576,"date":"Aug 8 2019"},{"filename":"kabini_rlc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":10496,"date":"Aug 8 2019"},{"filename":"KABINI_rlc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":10240,"date":"Aug 8 2019"},{"filename":"kabini_sdma1.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4456,"date":"Aug 8 2019"},{"filename":"kabini_sdma.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4456,"date":"Aug 8 2019"},{"filename":"KABINI_sdma.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4200,"date":"Aug 8 2019"},{"filename":"kabini_uvd.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":232752,"date":"Aug 8 2019"},{"filename":"kabini_vce.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":101072,"date":"Aug 8 2019"},{"filename":"kaveri_ce.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"KAVERI_ce.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8576,"date":"Aug 8 2019"},{"filename":"kaveri_me.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"KAVERI_me.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8576,"date":"Aug 8 2019"},{"filename":"kaveri_mec2.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17024,"date":"Aug 8 2019"},{"filename":"kaveri_mec.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17024,"date":"Aug 8 2019"},{"filename":"KAVERI_mec.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":16768,"date":"Aug 8 2019"},{"filename":"kaveri_pfp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"KAVERI_pfp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8576,"date":"Aug 8 2019"},{"filename":"kaveri_rlc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":10496,"date":"Aug 8 2019"},{"filename":"KAVERI_rlc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":10240,"date":"Aug 8 2019"},{"filename":"kaveri_sdma1.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4456,"date":"Aug 8 2019"},{"filename":"kaveri_sdma.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4456,"date":"Aug 8 2019"},{"filename":"KAVERI_sdma.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4200,"date":"Aug 8 2019"},{"filename":"kaveri_uvd.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":232752,"date":"Aug 8 2019"},{"filename":"kaveri_vce.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":101072,"date":"Aug 8 2019"},{"filename":"mullins_ce.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"MULLINS_ce.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8576,"date":"Aug 8 2019"},{"filename":"mullins_me.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"MULLINS_me.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8576,"date":"Aug 8 2019"},{"filename":"mullins_mec.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":17024,"date":"Aug 8 2019"},{"filename":"MULLINS_mec.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":16768,"date":"Aug 8 2019"},{"filename":"mullins_pfp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"MULLINS_pfp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8576,"date":"Aug 8 2019"},{"filename":"mullins_rlc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":10496,"date":"Aug 8 2019"},{"filename":"MULLINS_rlc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":10240,"date":"Aug 8 2019"},{"filename":"mullins_sdma1.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4456,"date":"Aug 8 2019"},{"filename":"mullins_sdma.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4456,"date":"Aug 8 2019"},{"filename":"MULLINS_sdma.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4200,"date":"Aug 8 2019"},{"filename":"mullins_uvd.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":232752,"date":"Aug 8 2019"},{"filename":"mullins_vce.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":101072,"date":"Aug 8 2019"},{"filename":"oland_ce.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"OLAND_ce.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8576,"date":"Aug 8 2019"},{"filename":"oland_k_smc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":62692,"date":"Aug 8 2019"},{"filename":"OLAND_mc2.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":31452,"date":"Aug 8 2019"},{"filename":"oland_mc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":31996,"date":"Aug 8 2019"},{"filename":"OLAND_mc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":31452,"date":"Aug 8 2019"},{"filename":"oland_me.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"OLAND_me.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8576,"date":"Aug 8 2019"},{"filename":"oland_pfp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"OLAND_pfp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8576,"date":"Aug 8 2019"},{"filename":"oland_rlc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8448,"date":"Aug 8 2019"},{"filename":"OLAND_rlc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8192,"date":"Aug 8 2019"},{"filename":"oland_smc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":62260,"date":"Aug 8 2019"},{"filename":"OLAND_smc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":59316,"date":"Aug 8 2019"},{"filename":"PALM_me.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":5504,"date":"Aug 8 2019"},{"filename":"PALM_pfp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4480,"date":"Aug 8 2019"},{"filename":"pitcairn_ce.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"PITCAIRN_ce.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8576,"date":"Aug 8 2019"},{"filename":"pitcairn_k_smc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":61712,"date":"Aug 8 2019"},{"filename":"PITCAIRN_mc2.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":31100,"date":"Aug 8 2019"},{"filename":"pitcairn_mc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":31644,"date":"Aug 8 2019"},{"filename":"PITCAIRN_mc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":31076,"date":"Aug 8 2019"},{"filename":"pitcairn_me.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"PITCAIRN_me.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8576,"date":"Aug 8 2019"},{"filename":"pitcairn_pfp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"PITCAIRN_pfp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8576,"date":"Aug 8 2019"},{"filename":"pitcairn_rlc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8448,"date":"Aug 8 2019"},{"filename":"PITCAIRN_rlc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8192,"date":"Aug 8 2019"},{"filename":"pitcairn_smc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":61280,"date":"Aug 8 2019"},{"filename":"PITCAIRN_smc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":59892,"date":"Aug 8 2019"},{"filename":"R100_cp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2048,"date":"Aug 8 2019"},{"filename":"R200_cp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2048,"date":"Aug 8 2019"},{"filename":"R300_cp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2048,"date":"Aug 8 2019"},{"filename":"R420_cp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2048,"date":"Aug 8 2019"},{"filename":"R520_cp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2048,"date":"Aug 8 2019"},{"filename":"R600_me.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":21504,"date":"Aug 8 2019"},{"filename":"R600_pfp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2304,"date":"Aug 8 2019"},{"filename":"R600_rlc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":3072,"date":"Aug 8 2019"},{"filename":"R600_uvd.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":74188,"date":"Aug 8 2019"},{"filename":"R700_rlc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4096,"date":"Aug 8 2019"},{"filename":"REDWOOD_me.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":5504,"date":"Aug 8 2019"},{"filename":"REDWOOD_pfp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4480,"date":"Aug 8 2019"},{"filename":"REDWOOD_rlc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":3072,"date":"Aug 8 2019"},{"filename":"REDWOOD_smc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":24332,"date":"Aug 8 2019"},{"filename":"RS600_cp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2048,"date":"Aug 8 2019"},{"filename":"RS690_cp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2048,"date":"Aug 8 2019"},{"filename":"RS780_me.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":21504,"date":"Aug 8 2019"},{"filename":"RS780_pfp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2304,"date":"Aug 8 2019"},{"filename":"RS780_uvd.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":90164,"date":"Aug 8 2019"},{"filename":"RV610_me.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":21504,"date":"Aug 8 2019"},{"filename":"RV610_pfp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2304,"date":"Aug 8 2019"},{"filename":"RV620_me.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":21504,"date":"Aug 8 2019"},{"filename":"RV620_pfp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2304,"date":"Aug 8 2019"},{"filename":"RV630_me.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":21504,"date":"Aug 8 2019"},{"filename":"RV630_pfp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2304,"date":"Aug 8 2019"},{"filename":"RV635_me.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":21504,"date":"Aug 8 2019"},{"filename":"RV635_pfp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2304,"date":"Aug 8 2019"},{"filename":"RV670_me.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":21504,"date":"Aug 8 2019"},{"filename":"RV670_pfp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2304,"date":"Aug 8 2019"},{"filename":"RV710_me.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":5440,"date":"Aug 8 2019"},{"filename":"RV710_pfp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":3392,"date":"Aug 8 2019"},{"filename":"RV710_smc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":16160,"date":"Aug 8 2019"},{"filename":"RV710_uvd.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":116120,"date":"Aug 8 2019"},{"filename":"RV730_me.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":5440,"date":"Aug 8 2019"},{"filename":"RV730_pfp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":3392,"date":"Aug 8 2019"},{"filename":"RV730_smc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":16684,"date":"Aug 8 2019"},{"filename":"RV740_smc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":16840,"date":"Aug 8 2019"},{"filename":"RV770_me.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":5440,"date":"Aug 8 2019"},{"filename":"RV770_pfp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":3392,"date":"Aug 8 2019"},{"filename":"RV770_smc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":16656,"date":"Aug 8 2019"},{"filename":"RV770_uvd.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":90668,"date":"Aug 8 2019"},{"filename":"si58_mc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":32488,"date":"Aug 8 2019"},{"filename":"SUMO2_me.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":5504,"date":"Aug 8 2019"},{"filename":"SUMO2_pfp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4480,"date":"Aug 8 2019"},{"filename":"SUMO_me.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":5504,"date":"Aug 8 2019"},{"filename":"SUMO_pfp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4480,"date":"Aug 8 2019"},{"filename":"SUMO_rlc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":3072,"date":"Aug 8 2019"},{"filename":"SUMO_uvd.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":205080,"date":"Aug 8 2019"},{"filename":"tahiti_ce.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"TAHITI_ce.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8576,"date":"Aug 8 2019"},{"filename":"tahiti_k_smc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":64364,"date":"Aug 8 2019"},{"filename":"TAHITI_mc2.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":31232,"date":"Aug 8 2019"},{"filename":"tahiti_mc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":31776,"date":"Aug 8 2019"},{"filename":"TAHITI_mc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":31076,"date":"Aug 8 2019"},{"filename":"tahiti_me.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"TAHITI_me.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8576,"date":"Aug 8 2019"},{"filename":"tahiti_pfp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"TAHITI_pfp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8576,"date":"Aug 8 2019"},{"filename":"tahiti_rlc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8448,"date":"Aug 8 2019"},{"filename":"TAHITI_rlc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8192,"date":"Aug 8 2019"},{"filename":"tahiti_smc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":63932,"date":"Aug 8 2019"},{"filename":"TAHITI_smc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":62552,"date":"Aug 8 2019"},{"filename":"TAHITI_uvd.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":219672,"date":"Aug 8 2019"},{"filename":"TAHITI_vce.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":48424,"date":"Aug 8 2019"},{"filename":"TURKS_mc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":24096,"date":"Aug 8 2019"},{"filename":"TURKS_me.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":5504,"date":"Aug 8 2019"},{"filename":"TURKS_pfp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4480,"date":"Aug 8 2019"},{"filename":"TURKS_smc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":24668,"date":"Aug 8 2019"},{"filename":"verde_ce.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"VERDE_ce.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8576,"date":"Aug 8 2019"},{"filename":"verde_k_smc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":63804,"date":"Aug 8 2019"},{"filename":"VERDE_mc2.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":31500,"date":"Aug 8 2019"},{"filename":"verde_mc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":32044,"date":"Aug 8 2019"},{"filename":"VERDE_mc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":31076,"date":"Aug 8 2019"},{"filename":"verde_me.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"VERDE_me.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8576,"date":"Aug 8 2019"},{"filename":"verde_pfp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8832,"date":"Aug 8 2019"},{"filename":"VERDE_pfp.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8576,"date":"Aug 8 2019"},{"filename":"verde_rlc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8448,"date":"Aug 8 2019"},{"filename":"VERDE_rlc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":8192,"date":"Aug 8 2019"},{"filename":"verde_smc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":61776,"date":"Aug 8 2019"},{"filename":"VERDE_smc.bin","parent":"/usr/lib/firmware/radeon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":60388,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/rockchip","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":22,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/rockchip","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"dptx.bin","parent":"/usr/lib/firmware/rockchip","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":98320,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/rsi","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":104,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/rsi","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"rs9113_ap_bt_dual_mode.rps","parent":"/usr/lib/firmware/rsi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":341860,"date":"Aug 8 2019"},{"filename":"rs9113_wlan_bt_dual_mode.rps","parent":"/usr/lib/firmware/rsi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":331592,"date":"Aug 8 2019"},{"filename":"rs9113_wlan_qspi.rps","parent":"/usr/lib/firmware/rsi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":201052,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/RTL8192E","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":54,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/RTL8192E","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"boot.img","parent":"/usr/lib/firmware/RTL8192E","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":344,"date":"Aug 8 2019"},{"filename":"data.img","parent":"/usr/lib/firmware/RTL8192E","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":848,"date":"Aug 8 2019"},{"filename":"main.img","parent":"/usr/lib/firmware/RTL8192E","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":42944,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/rtl_bt","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/rtl_bt","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"rtl8192ee_fw.bin","parent":"/usr/lib/firmware/rtl_bt","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":38764,"date":"Aug 8 2019"},{"filename":"rtl8192eu_fw.bin","parent":"/usr/lib/firmware/rtl_bt","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":37904,"date":"Aug 8 2019"},{"filename":"rtl8723a_fw.bin","parent":"/usr/lib/firmware/rtl_bt","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":24548,"date":"Aug 8 2019"},{"filename":"rtl8723b_fw.bin","parent":"/usr/lib/firmware/rtl_bt","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":45048,"date":"Aug 8 2019"},{"filename":"rtl8723bs_config-OBDA8723.bin","parent":"/usr/lib/firmware/rtl_bt","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":64,"date":"Aug 8 2019"},{"filename":"rtl8723bs_fw.bin","parent":"/usr/lib/firmware/rtl_bt","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":52116,"date":"Aug 8 2019"},{"filename":"rtl8723d_config.bin","parent":"/usr/lib/firmware/rtl_bt","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":10,"date":"Aug 8 2019"},{"filename":"rtl8723d_fw.bin","parent":"/usr/lib/firmware/rtl_bt","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":47028,"date":"Aug 8 2019"},{"filename":"rtl8761a_fw.bin","parent":"/usr/lib/firmware/rtl_bt","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":74488,"date":"Aug 8 2019"},{"filename":"rtl8812ae_fw.bin","parent":"/usr/lib/firmware/rtl_bt","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":40520,"date":"Aug 8 2019"},{"filename":"rtl8821a_fw.bin","parent":"/usr/lib/firmware/rtl_bt","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":37420,"date":"Aug 8 2019"},{"filename":"rtl8821c_config.bin","parent":"/usr/lib/firmware/rtl_bt","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":10,"date":"Aug 8 2019"},{"filename":"rtl8821c_fw.bin","parent":"/usr/lib/firmware/rtl_bt","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":37356,"date":"Aug 8 2019"},{"filename":"rtl8822b_config.bin","parent":"/usr/lib/firmware/rtl_bt","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":14,"date":"Aug 8 2019"},{"filename":"rtl8822b_fw.bin","parent":"/usr/lib/firmware/rtl_bt","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":51176,"date":"Aug 8 2019"},{"filename":"rtl8822cu_fw.bin","parent":"/usr/lib/firmware/rtl_bt","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":41588,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/rtl_nic","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/rtl_nic","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"rtl8105e-1.fw","parent":"/usr/lib/firmware/rtl_nic","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2076,"date":"Aug 8 2019"},{"filename":"rtl8106e-1.fw","parent":"/usr/lib/firmware/rtl_nic","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1856,"date":"Aug 8 2019"},{"filename":"rtl8106e-2.fw","parent":"/usr/lib/firmware/rtl_nic","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":832,"date":"Aug 8 2019"},{"filename":"rtl8107e-1.fw","parent":"/usr/lib/firmware/rtl_nic","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":992,"date":"Aug 8 2019"},{"filename":"rtl8107e-2.fw","parent":"/usr/lib/firmware/rtl_nic","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":976,"date":"Aug 8 2019"},{"filename":"rtl8168d-1.fw","parent":"/usr/lib/firmware/rtl_nic","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1492,"date":"Aug 8 2019"},{"filename":"rtl8168d-2.fw","parent":"/usr/lib/firmware/rtl_nic","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1324,"date":"Aug 8 2019"},{"filename":"rtl8168e-1.fw","parent":"/usr/lib/firmware/rtl_nic","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":5500,"date":"Aug 8 2019"},{"filename":"rtl8168e-2.fw","parent":"/usr/lib/firmware/rtl_nic","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":3920,"date":"Aug 8 2019"},{"filename":"rtl8168e-3.fw","parent":"/usr/lib/firmware/rtl_nic","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":3872,"date":"Aug 8 2019"},{"filename":"rtl8168f-1.fw","parent":"/usr/lib/firmware/rtl_nic","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":3424,"date":"Aug 8 2019"},{"filename":"rtl8168f-2.fw","parent":"/usr/lib/firmware/rtl_nic","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1232,"date":"Aug 8 2019"},{"filename":"rtl8168g-1.fw","parent":"/usr/lib/firmware/rtl_nic","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4304,"date":"Aug 8 2019"},{"filename":"rtl8168g-2.fw","parent":"/usr/lib/firmware/rtl_nic","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":4896,"date":"Aug 8 2019"},{"filename":"rtl8168g-3.fw","parent":"/usr/lib/firmware/rtl_nic","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":832,"date":"Aug 8 2019"},{"filename":"rtl8168h-1.fw","parent":"/usr/lib/firmware/rtl_nic","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":992,"date":"Aug 8 2019"},{"filename":"rtl8168h-2.fw","parent":"/usr/lib/firmware/rtl_nic","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":976,"date":"Aug 8 2019"},{"filename":"rtl8402-1.fw","parent":"/usr/lib/firmware/rtl_nic","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1824,"date":"Aug 8 2019"},{"filename":"rtl8411-1.fw","parent":"/usr/lib/firmware/rtl_nic","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2112,"date":"Aug 8 2019"},{"filename":"rtl8411-2.fw","parent":"/usr/lib/firmware/rtl_nic","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1040,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/rtlwifi","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/rtlwifi","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"rtl8188efw.bin","parent":"/usr/lib/firmware/rtlwifi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":11216,"date":"Aug 8 2019"},{"filename":"rtl8188eufw.bin","parent":"/usr/lib/firmware/rtlwifi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":13904,"date":"Aug 8 2019"},{"filename":"rtl8192cfw.bin","parent":"/usr/lib/firmware/rtlwifi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":16192,"date":"Aug 8 2019"},{"filename":"rtl8192cfwU_B.bin","parent":"/usr/lib/firmware/rtlwifi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":16332,"date":"Aug 8 2019"},{"filename":"rtl8192cfwU.bin","parent":"/usr/lib/firmware/rtlwifi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":14818,"date":"Aug 8 2019"},{"filename":"rtl8192cufw_A.bin","parent":"/usr/lib/firmware/rtlwifi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":16116,"date":"Aug 8 2019"},{"filename":"rtl8192cufw_B.bin","parent":"/usr/lib/firmware/rtlwifi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":16096,"date":"Aug 8 2019"},{"filename":"rtl8192cufw.bin","parent":"/usr/lib/firmware/rtlwifi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":16014,"date":"Aug 8 2019"},{"filename":"rtl8192cufw_TMSC.bin","parent":"/usr/lib/firmware/rtlwifi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":16116,"date":"Aug 8 2019"},{"filename":"rtl8192defw.bin","parent":"/usr/lib/firmware/rtlwifi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":31376,"date":"Aug 8 2019"},{"filename":"rtl8192eefw.bin","parent":"/usr/lib/firmware/rtlwifi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":31818,"date":"Aug 8 2019"},{"filename":"rtl8192eu_ap_wowlan.bin","parent":"/usr/lib/firmware/rtlwifi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":25264,"date":"Aug 8 2019"},{"filename":"rtl8192eu_nic.bin","parent":"/usr/lib/firmware/rtlwifi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":31818,"date":"Aug 8 2019"},{"filename":"rtl8192eu_wowlan.bin","parent":"/usr/lib/firmware/rtlwifi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":25878,"date":"Aug 8 2019"},{"filename":"rtl8192sefw.bin","parent":"/usr/lib/firmware/rtlwifi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":80208,"date":"Aug 8 2019"},{"filename":"rtl8712u.bin","parent":"/usr/lib/firmware/rtlwifi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":122328,"date":"Aug 8 2019"},{"filename":"rtl8723aufw_A.bin","parent":"/usr/lib/firmware/rtlwifi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":22172,"date":"Aug 8 2019"},{"filename":"rtl8723aufw_B.bin","parent":"/usr/lib/firmware/rtlwifi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":24118,"date":"Aug 8 2019"},{"filename":"rtl8723aufw_B_NoBT.bin","parent":"/usr/lib/firmware/rtlwifi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":19200,"date":"Aug 8 2019"},{"filename":"rtl8723befw_36.bin","parent":"/usr/lib/firmware/rtlwifi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":31762,"date":"Aug 8 2019"},{"filename":"rtl8723befw.bin","parent":"/usr/lib/firmware/rtlwifi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":30746,"date":"Aug 8 2019"},{"filename":"rtl8723bs_ap_wowlan.bin","parent":"/usr/lib/firmware/rtlwifi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":20886,"date":"Aug 8 2019"},{"filename":"rtl8723bs_bt.bin","parent":"/usr/lib/firmware/rtlwifi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":9120,"date":"Aug 8 2019"},{"filename":"rtl8723bs_nic.bin","parent":"/usr/lib/firmware/rtlwifi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":32108,"date":"Aug 8 2019"},{"filename":"rtl8723bs_wowlan.bin","parent":"/usr/lib/firmware/rtlwifi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":26398,"date":"Aug 8 2019"},{"filename":"rtl8723bu_ap_wowlan.bin","parent":"/usr/lib/firmware/rtlwifi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":20886,"date":"Aug 8 2019"},{"filename":"rtl8723bu_nic.bin","parent":"/usr/lib/firmware/rtlwifi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":32108,"date":"Aug 8 2019"},{"filename":"rtl8723bu_wowlan.bin","parent":"/usr/lib/firmware/rtlwifi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":26398,"date":"Aug 8 2019"},{"filename":"rtl8723defw.bin","parent":"/usr/lib/firmware/rtlwifi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":27726,"date":"Aug 8 2019"},{"filename":"rtl8723fw_B.bin","parent":"/usr/lib/firmware/rtlwifi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":22996,"date":"Aug 8 2019"},{"filename":"rtl8723fw.bin","parent":"/usr/lib/firmware/rtlwifi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":11662,"date":"Aug 8 2019"},{"filename":"rtl8821aefw_29.bin","parent":"/usr/lib/firmware/rtlwifi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":28348,"date":"Aug 8 2019"},{"filename":"rtl8821aefw.bin","parent":"/usr/lib/firmware/rtlwifi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":28984,"date":"Aug 8 2019"},{"filename":"rtl8821aefw_wowlan.bin","parent":"/usr/lib/firmware/rtlwifi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":19858,"date":"Aug 8 2019"},{"filename":"rtl8822befw.bin","parent":"/usr/lib/firmware/rtlwifi","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":127496,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/rtw88","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":52,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/rtw88","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"rtw8822b_fw.bin","parent":"/usr/lib/firmware/rtw88","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":150984,"date":"Aug 8 2019"},{"filename":"rtw8822c_fw.bin","parent":"/usr/lib/firmware/rtw88","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":184640,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/sb16","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":134,"date":"Aug 15 2019"},{"filename":"..","parent":"/usr/lib/firmware/sb16","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"alaw_main.csp","parent":"/usr/lib/firmware/sb16","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1304,"date":"Mar 5 2015"},{"filename":"ima_adpcm_capture.csp","parent":"/usr/lib/firmware/sb16","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1844,"date":"Mar 5 2015"},{"filename":"ima_adpcm_init.csp","parent":"/usr/lib/firmware/sb16","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1032,"date":"Mar 5 2015"},{"filename":"ima_adpcm_playback.csp","parent":"/usr/lib/firmware/sb16","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1872,"date":"Mar 5 2015"},{"filename":"mulaw_main.csp","parent":"/usr/lib/firmware/sb16","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1256,"date":"Mar 5 2015"},{"filename":".","parent":"/usr/lib/firmware/slicoss","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":128,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/slicoss","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"gbdownload.sys","parent":"/usr/lib/firmware/slicoss","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":98324,"date":"Aug 8 2019"},{"filename":"gbrcvucode.sys","parent":"/usr/lib/firmware/slicoss","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2564,"date":"Aug 8 2019"},{"filename":"oasisdbgdownload.sys","parent":"/usr/lib/firmware/slicoss","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":81940,"date":"Aug 8 2019"},{"filename":"oasisdownload.sys","parent":"/usr/lib/firmware/slicoss","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":81940,"date":"Aug 8 2019"},{"filename":"oasisrcvucode.sys","parent":"/usr/lib/firmware/slicoss","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2564,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/sun","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":25,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/sun","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"cassini.bin","parent":"/usr/lib/firmware/sun","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2253,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/sxg","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":63,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/sxg","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"saharadbgdownloadB.sys","parent":"/usr/lib/firmware/sxg","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":62972,"date":"Aug 8 2019"},{"filename":"saharadownloadB.sys","parent":"/usr/lib/firmware/sxg","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":54140,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/tehuti","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":21,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/tehuti","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"bdx.bin","parent":"/usr/lib/firmware/tehuti","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":42768,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/tigon","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":80,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/tigon","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"tg357766.bin","parent":"/usr/lib/firmware/tigon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":144,"date":"Aug 8 2019"},{"filename":"tg3.bin","parent":"/usr/lib/firmware/tigon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":2668,"date":"Aug 8 2019"},{"filename":"tg3_tso5.bin","parent":"/usr/lib/firmware/tigon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":3884,"date":"Aug 8 2019"},{"filename":"tg3_tso.bin","parent":"/usr/lib/firmware/tigon","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":7004,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/ti-keystone","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":51,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/ti-keystone","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"ks2_qmss_pdsp_acc48_k2_le_1_0_0_9.bin","parent":"/usr/lib/firmware/ti-keystone","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":1764,"date":"Aug 8 2019"},{"filename":".","parent":"/usr/lib/firmware/ttusb-budget","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":29,"date":"Oct 16 09:22"},{"filename":"..","parent":"/usr/lib/firmware/ttusb-budget","flags":"drwxr-xr-x.","links":91,"owner":"root","group":"root","size":12288,"date":"Oct 16 09:23"},{"filename":"dspbootcode.bin","parent":"/usr/lib/firmware/ttusb-budget","flags":"-rw-r--r--.","links":1,"owner":"root","group":"root","size":13104,"date":"Aug 8 2019"}] jc-1.17.3/tests/fixtures/centos-7.7/ls-alR.json000066400000000000000000027462361415226333200210700ustar00rootroot00000000000000[{"filename": ".", "parent": "/usr", "flags": "drwxr-xr-x.", "links": 13, "owner": "root", "group": "root", "size": 155, "date": "Aug 15 2019"}, {"filename": "..", "parent": "/usr", "flags": "dr-xr-xr-x.", "links": 17, "owner": "root", "group": "root", "size": 224, "date": "Aug 15 2019"}, {"filename": "bin", "parent": "/usr", "flags": "dr-xr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 20480, "date": "Jan 13 17:29"}, {"filename": "etc", "parent": "/usr", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 6, "date": "Apr 10 2018"}, {"filename": "games", "parent": "/usr", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 6, "date": "Apr 10 2018"}, {"filename": "include", "parent": "/usr", "flags": "drwxr-xr-x.", "links": 4, "owner": "root", "group": "root", "size": 41, "date": "Oct 15 11:09"}, {"filename": "lib", "parent": "/usr", "flags": "dr-xr-xr-x.", "links": 29, "owner": "root", "group": "root", "size": 4096, "date": "Nov 16 14:29"}, {"filename": "lib64", "parent": "/usr", "flags": "dr-xr-xr-x.", "links": 43, "owner": "root", "group": "root", "size": 20480, "date": "Nov 16 14:29"}, {"filename": "libexec", "parent": "/usr", "flags": "drwxr-xr-x.", "links": 24, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "local", "parent": "/usr", "flags": "drwxr-xr-x.", "links": 12, "owner": "root", "group": "root", "size": 131, "date": "Aug 15 2019"}, {"filename": "sbin", "parent": "/usr", "flags": "dr-xr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 12288, "date": "Nov 10 07:55"}, {"filename": "share", "parent": "/usr", "flags": "drwxr-xr-x.", "links": 87, "owner": "root", "group": "root", "size": 4096, "date": "Nov 16 14:29"}, {"filename": "src", "parent": "/usr", "flags": "drwxr-xr-x.", "links": 4, "owner": "root", "group": "root", "size": 34, "date": "Aug 15 2019"}, {"filename": "tmp", "link_to": "../var/tmp", "parent": "/usr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 10, "date": "Aug 15 2019"}, {"filename": ".", "parent": "/usr/bin", "flags": "dr-xr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 20480, "date": "Jan 13 17:29"}, {"filename": "..", "parent": "/usr/bin", "flags": "drwxr-xr-x.", "links": 13, "owner": "root", "group": "root", "size": 155, "date": "Aug 15 2019"}, {"filename": "[", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 41488, "date": "Aug 19 23:25"}, {"filename": "a2p", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 107904, "date": "Jan 21 2019"}, {"filename": "addr2line", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 29200, "date": "Aug 8 2019"}, {"filename": "alias", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 29, "date": "Aug 8 2019"}, {"filename": "apropos", "link_to": "whatis", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 6, "date": "Aug 15 2019"}, {"filename": "ar", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 62744, "date": "Aug 8 2019"}, {"filename": "arch", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 33080, "date": "Aug 19 23:25"}, {"filename": "as", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 378128, "date": "Aug 8 2019"}, {"filename": "aserver", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 28888, "date": "Aug 8 2019"}, {"filename": "audit2allow", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 14554, "date": "Aug 8 2019"}, {"filename": "audit2why", "link_to": "audit2allow", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 11, "date": "Oct 16 09:22"}, {"filename": "aulast", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 15856, "date": "Aug 8 2019"}, {"filename": "aulastlog", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11624, "date": "Aug 8 2019"}, {"filename": "ausyscall", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11448, "date": "Aug 8 2019"}, {"filename": "auvirt", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 32696, "date": "Aug 8 2019"}, {"filename": "awk", "link_to": "gawk", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 4, "date": "Aug 15 2019"}, {"filename": "base64", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 37360, "date": "Aug 19 23:25"}, {"filename": "basename", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 29032, "date": "Aug 19 23:25"}, {"filename": "bash", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 964600, "date": "Aug 8 2019"}, {"filename": "bashbug", "link_to": "bashbug-64", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 10, "date": "Oct 16 09:21"}, {"filename": "bashbug-64", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 6964, "date": "Aug 8 2019"}, {"filename": "bg", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 26, "date": "Aug 8 2019"}, {"filename": "bond2team", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 23289, "date": "Mar 17 2017"}, {"filename": "bootctl", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 70648, "date": "Sep 13 11:21"}, {"filename": "busctl", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 408680, "date": "Sep 13 11:21"}, {"filename": "c2ph", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 36607, "date": "Jan 21 2019"}, {"filename": "cal", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 37688, "date": "Aug 8 2019"}, {"filename": "ca-legacy", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1638, "date": "May 14 2018"}, {"filename": "captoinfo", "link_to": "tic", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Aug 15 2019"}, {"filename": "cat", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 54080, "date": "Aug 19 23:25"}, {"filename": "catchsegv", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 3336, "date": "Aug 6 2019"}, {"filename": "catman", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 37632, "date": "Oct 30 2018"}, {"filename": "cd", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 26, "date": "Aug 8 2019"}, {"filename": "centrino-decode", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 6280, "date": "Sep 30 07:30"}, {"filename": "certutil", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 175760, "date": "Aug 12 2019"}, {"filename": "c++filt", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 28664, "date": "Aug 8 2019"}, {"filename": "chacl", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 15640, "date": "Apr 10 2018"}, {"filename": "chage", "parent": "/usr/bin", "flags": "-rwsr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 73888, "date": "Aug 8 2019"}, {"filename": "chattr", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11616, "date": "Aug 8 2019"}, {"filename": "chcat", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 13430, "date": "Aug 8 2019"}, {"filename": "chcon", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 62936, "date": "Aug 19 23:25"}, {"filename": "checkmodule", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 410096, "date": "Oct 30 2018"}, {"filename": "checkpolicy", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 422360, "date": "Oct 30 2018"}, {"filename": "chfn", "parent": "/usr/bin", "flags": "-rws--x--x.", "links": 1, "owner": "root", "group": "root", "size": 23968, "date": "Aug 8 2019"}, {"filename": "chgrp", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 62784, "date": "Aug 19 23:25"}, {"filename": "chmem", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 41400, "date": "Aug 8 2019"}, {"filename": "chmod", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 58592, "date": "Aug 19 23:25"}, {"filename": "chown", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 62824, "date": "Aug 19 23:25"}, {"filename": "chronyc", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 87072, "date": "Aug 8 2019"}, {"filename": "chrt", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 32944, "date": "Aug 8 2019"}, {"filename": "chsh", "parent": "/usr/bin", "flags": "-rws--x--x.", "links": 1, "owner": "root", "group": "root", "size": 23880, "date": "Aug 8 2019"}, {"filename": "chvt", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11480, "date": "Oct 30 2018"}, {"filename": "cifsiostat", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 49672, "date": "Aug 8 2019"}, {"filename": "cksum", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 33152, "date": "Aug 19 23:25"}, {"filename": "clear", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 7192, "date": "Sep 6 2017"}, {"filename": "cmp", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 45272, "date": "Aug 8 2019"}, {"filename": "cmsutil", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 104912, "date": "Aug 12 2019"}, {"filename": "col", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 24448, "date": "Aug 8 2019"}, {"filename": "colcrt", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11560, "date": "Aug 8 2019"}, {"filename": "colrm", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 24352, "date": "Aug 8 2019"}, {"filename": "column", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 28664, "date": "Aug 8 2019"}, {"filename": "comm", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 37424, "date": "Aug 19 23:25"}, {"filename": "command", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 31, "date": "Aug 8 2019"}, {"filename": "container-storage-setup", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 75750, "date": "Jun 12 2018"}, {"filename": "coredumpctl", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 158200, "date": "Sep 13 11:21"}, {"filename": "cp", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 155176, "date": "Aug 19 23:25"}, {"filename": "cpio", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 145960, "date": "Apr 10 2018"}, {"filename": "cpupower", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 67928, "date": "Sep 30 07:30"}, {"filename": "crlutil", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 121744, "date": "Aug 12 2019"}, {"filename": "crontab", "parent": "/usr/bin", "flags": "-rwsr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 57656, "date": "Aug 8 2019"}, {"filename": "csplit", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 49992, "date": "Aug 19 23:25"}, {"filename": "csslint-0.6", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 20096, "date": "Oct 30 2018"}, {"filename": "curl", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 156728, "date": "Aug 8 2019"}, {"filename": "cut", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 41576, "date": "Aug 19 23:25"}, {"filename": "cvtsudoers", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 247440, "date": "Aug 8 2019"}, {"filename": "date", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 62200, "date": "Aug 19 23:25"}, {"filename": "db_archive", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11496, "date": "Aug 8 2019"}, {"filename": "db_checkpoint", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11576, "date": "Aug 8 2019"}, {"filename": "db_deadlock", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11584, "date": "Aug 8 2019"}, {"filename": "db_dump", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 15696, "date": "Aug 8 2019"}, {"filename": "db_dump185", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 65992, "date": "Aug 8 2019"}, {"filename": "db_hotbackup", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 15712, "date": "Aug 8 2019"}, {"filename": "db_load", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 28168, "date": "Aug 8 2019"}, {"filename": "db_log_verify", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 15704, "date": "Aug 8 2019"}, {"filename": "db_printlog", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 33032, "date": "Aug 8 2019"}, {"filename": "db_recover", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11600, "date": "Aug 8 2019"}, {"filename": "db_replicate", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 15712, "date": "Aug 8 2019"}, {"filename": "db_stat", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 15624, "date": "Aug 8 2019"}, {"filename": "db_tuner", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 19792, "date": "Aug 8 2019"}, {"filename": "db_upgrade", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11504, "date": "Aug 8 2019"}, {"filename": "dbus-binding-tool", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 96760, "date": "Jun 9 2014"}, {"filename": "dbus-cleanup-sockets", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11344, "date": "Mar 14 2019"}, {"filename": "dbus-daemon", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 223320, "date": "Mar 14 2019"}, {"filename": "dbus-monitor", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 23760, "date": "Mar 14 2019"}, {"filename": "dbus-run-session", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 15408, "date": "Mar 14 2019"}, {"filename": "dbus-send", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 27800, "date": "Mar 14 2019"}, {"filename": "dbus-test-tool", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 23768, "date": "Mar 14 2019"}, {"filename": "dbus-update-activation-environment", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 15480, "date": "Mar 14 2019"}, {"filename": "dbus-uuidgen", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11328, "date": "Mar 14 2019"}, {"filename": "db_verify", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11520, "date": "Aug 8 2019"}, {"filename": "dd", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 74896, "date": "Aug 19 23:25"}, {"filename": "deallocvt", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11496, "date": "Oct 30 2018"}, {"filename": "delv", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 41032, "date": "Aug 8 2019"}, {"filename": "df", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 105016, "date": "Aug 19 23:25"}, {"filename": "dgawk", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 514168, "date": "Jun 28 2017"}, {"filename": "diff", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 200224, "date": "Aug 8 2019"}, {"filename": "diff3", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 62200, "date": "Aug 8 2019"}, {"filename": "dig", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 150568, "date": "Aug 8 2019"}, {"filename": "dir", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 117608, "date": "Aug 19 23:25"}, {"filename": "dircolors", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 41408, "date": "Aug 19 23:25"}, {"filename": "dirname", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 28992, "date": "Aug 19 23:25"}, {"filename": "dmesg", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 49680, "date": "Aug 8 2019"}, {"filename": "dnsdomainname", "link_to": "hostname", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 8, "date": "Aug 15 2019"}, {"filename": "docker", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 735, "date": "Sep 13 07:25"}, {"filename": "docker-containerd", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 717, "date": "Sep 13 07:25"}, {"filename": "docker-containerd-current", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 10806520, "date": "Sep 15 07:07"}, {"filename": "docker-containerd-shim", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 797, "date": "Sep 13 07:25"}, {"filename": "docker-containerd-shim-current", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 2585896, "date": "Sep 15 07:07"}, {"filename": "docker-ctr-current", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 10015448, "date": "Sep 15 07:07"}, {"filename": "docker-current", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 13156296, "date": "Sep 15 07:07"}, {"filename": "dockerd", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 740, "date": "Sep 13 07:25"}, {"filename": "dockerd-current", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 33407632, "date": "Sep 15 07:07"}, {"filename": "docker-storage-setup", "link_to": "/usr/bin/container-storage-setup", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 32, "date": "Oct 16 09:22"}, {"filename": "domainname", "link_to": "hostname", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 8, "date": "Aug 15 2019"}, {"filename": "dracut", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 57002, "date": "Aug 8 2019"}, {"filename": "du", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 112992, "date": "Aug 19 23:25"}, {"filename": "dumpkeys", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 79440, "date": "Oct 30 2018"}, {"filename": "dwp", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 3178136, "date": "Aug 8 2019"}, {"filename": "easy_install", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 320, "date": "Aug 2 2017"}, {"filename": "easy_install-2.7", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 328, "date": "Aug 2 2017"}, {"filename": "easy_install-3.6", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 234, "date": "Aug 7 2019"}, {"filename": "echo", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 33088, "date": "Aug 19 23:25"}, {"filename": "egrep", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 290, "date": "Aug 2 2017"}, {"filename": "eject", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 49984, "date": "Aug 8 2019"}, {"filename": "elfedit", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 33040, "date": "Aug 8 2019"}, {"filename": "env", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 29008, "date": "Aug 19 23:25"}, {"filename": "envsubst", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 36872, "date": "Aug 2 2017"}, {"filename": "eqn", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 147880, "date": "Jun 9 2014"}, {"filename": "erb", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 4393, "date": "Aug 8 2019"}, {"filename": "ex", "link_to": "vi", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 2, "date": "Oct 16 09:21"}, {"filename": "expand", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 33264, "date": "Aug 19 23:25"}, {"filename": "expr", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 37408, "date": "Aug 19 23:25"}, {"filename": "factor", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 95528, "date": "Aug 19 23:25"}, {"filename": "fallocate", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 28512, "date": "Aug 8 2019"}, {"filename": "false", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 28928, "date": "Aug 19 23:25"}, {"filename": "fc", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 26, "date": "Aug 8 2019"}, {"filename": "fg", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 26, "date": "Aug 8 2019"}, {"filename": "fgconsole", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11504, "date": "Oct 30 2018"}, {"filename": "fgrep", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 290, "date": "Aug 2 2017"}, {"filename": "file", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 19848, "date": "Oct 30 2018"}, {"filename": "find", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 199304, "date": "Oct 30 2018"}, {"filename": "find2perl", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 23614, "date": "Jan 21 2019"}, {"filename": "findmnt", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 59768, "date": "Aug 8 2019"}, {"filename": "fipscheck", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 15736, "date": "Aug 2 2017"}, {"filename": "fipshmac", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11576, "date": "Aug 2 2017"}, {"filename": "firewall-cmd", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 116196, "date": "Sep 13 11:02"}, {"filename": "firewall-offline-cmd", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 103607, "date": "Sep 13 11:02"}, {"filename": "flock", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 24448, "date": "Aug 8 2019"}, {"filename": "fmt", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 37360, "date": "Aug 19 23:25"}, {"filename": "fold", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 37336, "date": "Aug 19 23:25"}, {"filename": "free", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 19792, "date": "Aug 8 2019"}, {"filename": "funzip", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 32136, "date": "Aug 8 2019"}, {"filename": "gapplication", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 19944, "date": "Aug 8 2019"}, {"filename": "gawk", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 428584, "date": "Jun 28 2017"}, {"filename": "gdbus", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 41136, "date": "Aug 8 2019"}, {"filename": "gem", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 542, "date": "Aug 8 2019"}, {"filename": "gencat", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 23136, "date": "Aug 6 2019"}, {"filename": "genl-ctrl-list", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 11544, "date": "Aug 3 2017"}, {"filename": "geoiplookup", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 15648, "date": "Aug 8 2019"}, {"filename": "geoiplookup6", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11424, "date": "Aug 8 2019"}, {"filename": "geoipupdate", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 32072, "date": "Aug 12 2019"}, {"filename": "geqn", "link_to": "eqn", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Aug 15 2019"}, {"filename": "getconf", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 22920, "date": "Aug 6 2019"}, {"filename": "getent", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 27896, "date": "Aug 6 2019"}, {"filename": "getfacl", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 24872, "date": "Apr 10 2018"}, {"filename": "getkeycodes", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11496, "date": "Oct 30 2018"}, {"filename": "getopt", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 15752, "date": "Aug 8 2019"}, {"filename": "getopts", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 31, "date": "Aug 8 2019"}, {"filename": "gettext", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 36800, "date": "Aug 2 2017"}, {"filename": "gettext.sh", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 4629, "date": "Aug 2 2017"}, {"filename": "gio", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 75176, "date": "Aug 8 2019"}, {"filename": "gio-querymodules-64", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11592, "date": "Aug 8 2019"}, {"filename": "git", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 113, "owner": "root", "group": "root", "size": 1523792, "date": "Nov 19 2018"}, {"filename": "git-receive-pack", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 113, "owner": "root", "group": "root", "size": 1523792, "date": "Nov 19 2018"}, {"filename": "git-shell", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 735288, "date": "Nov 19 2018"}, {"filename": "git-upload-archive", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 113, "owner": "root", "group": "root", "size": 1523792, "date": "Nov 19 2018"}, {"filename": "git-upload-pack", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 810448, "date": "Nov 19 2018"}, {"filename": "glib-compile-schemas", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 45440, "date": "Aug 8 2019"}, {"filename": "gmake", "link_to": "make", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 4, "date": "Oct 16 09:21"}, {"filename": "gneqn", "link_to": "neqn", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 4, "date": "Aug 15 2019"}, {"filename": "gnroff", "link_to": "nroff", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 5, "date": "Aug 15 2019"}, {"filename": "gpasswd", "parent": "/usr/bin", "flags": "-rwsr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 78408, "date": "Aug 8 2019"}, {"filename": "gpg", "link_to": "gpg2", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 4, "date": "Aug 15 2019"}, {"filename": "gpg2", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 749976, "date": "Jul 13 2018"}, {"filename": "gpg-agent", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 296696, "date": "Jul 13 2018"}, {"filename": "gpgconf", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 143680, "date": "Jul 13 2018"}, {"filename": "gpg-connect-agent", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 156352, "date": "Jul 13 2018"}, {"filename": "gpg-error", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 23736, "date": "Jun 10 2014"}, {"filename": "gpgparsemail", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 24272, "date": "Jul 13 2018"}, {"filename": "gpgsplit", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 50056, "date": "Jul 13 2018"}, {"filename": "gpgv", "link_to": "gpgv2", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 5, "date": "Aug 15 2019"}, {"filename": "gpgv2", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 353672, "date": "Jul 13 2018"}, {"filename": "gpg-zip", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 3307, "date": "Jul 13 2018"}, {"filename": "gpic", "link_to": "pic", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Aug 15 2019"}, {"filename": "gprof", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 100832, "date": "Aug 8 2019"}, {"filename": "grep", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 159024, "date": "Aug 2 2017"}, {"filename": "groff", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 83584, "date": "Jun 9 2014"}, {"filename": "grops", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 144232, "date": "Jun 9 2014"}, {"filename": "grotty", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 100952, "date": "Jun 9 2014"}, {"filename": "groups", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 33192, "date": "Aug 19 23:25"}, {"filename": "grub2-editenv", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 401448, "date": "Aug 8 2019"}, {"filename": "grub2-file", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 833888, "date": "Aug 8 2019"}, {"filename": "grub2-fstest", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1062640, "date": "Aug 8 2019"}, {"filename": "grub2-glue-efi", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 260920, "date": "Aug 8 2019"}, {"filename": "grub2-kbdcomp", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1668, "date": "Aug 8 2019"}, {"filename": "grub2-menulst2cfg", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 243520, "date": "Aug 8 2019"}, {"filename": "grub2-mkfont", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 290400, "date": "Aug 8 2019"}, {"filename": "grub2-mkimage", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 384136, "date": "Aug 8 2019"}, {"filename": "grub2-mklayout", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 267120, "date": "Aug 8 2019"}, {"filename": "grub2-mknetdir", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 435960, "date": "Aug 8 2019"}, {"filename": "grub2-mkpasswd-pbkdf2", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 273720, "date": "Aug 8 2019"}, {"filename": "grub2-mkrelpath", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 260568, "date": "Aug 8 2019"}, {"filename": "grub2-mkrescue", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1025760, "date": "Aug 8 2019"}, {"filename": "grub2-mkstandalone", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 538880, "date": "Aug 8 2019"}, {"filename": "grub2-render-label", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 842904, "date": "Aug 8 2019"}, {"filename": "grub2-script-check", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 298368, "date": "Aug 8 2019"}, {"filename": "grub2-syslinux2cfg", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 769672, "date": "Aug 8 2019"}, {"filename": "gsettings", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 24376, "date": "Aug 8 2019"}, {"filename": "gsoelim", "link_to": "soelim", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 6, "date": "Aug 15 2019"}, {"filename": "gtar", "link_to": "tar", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Aug 15 2019"}, {"filename": "gtbl", "link_to": "tbl", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Aug 15 2019"}, {"filename": "gtroff", "link_to": "troff", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 5, "date": "Aug 15 2019"}, {"filename": "gunzip", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 2253, "date": "Apr 10 2018"}, {"filename": "gzexe", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 5931, "date": "Apr 10 2018"}, {"filename": "gzip", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 100800, "date": "Apr 10 2018"}, {"filename": "h2ph", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 28310, "date": "Jan 21 2019"}, {"filename": "hdsploader", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11448, "date": "Nov 5 2016"}, {"filename": "head", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 41472, "date": "Aug 19 23:25"}, {"filename": "hexdump", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 32784, "date": "Aug 8 2019"}, {"filename": "host", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 130136, "date": "Aug 8 2019"}, {"filename": "hostid", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 28984, "date": "Aug 19 23:25"}, {"filename": "hostname", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 15768, "date": "Jun 9 2014"}, {"filename": "hostnamectl", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 325712, "date": "Sep 13 11:21"}, {"filename": "i386", "link_to": "setarch", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 7, "date": "Oct 16 09:21"}, {"filename": "iconv", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 60376, "date": "Aug 6 2019"}, {"filename": "id", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 37400, "date": "Aug 19 23:25"}, {"filename": "idiag-socket-details", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11608, "date": "Aug 3 2017"}, {"filename": "idn", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 33232, "date": "Nov 21 2015"}, {"filename": "igawk", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 3188, "date": "Jun 28 2017"}, {"filename": "info", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 271552, "date": "Apr 10 2018"}, {"filename": "infocmp", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 57416, "date": "Sep 6 2017"}, {"filename": "infokey", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 21984, "date": "Apr 10 2018"}, {"filename": "infotocap", "link_to": "tic", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Aug 15 2019"}, {"filename": "install", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 142944, "date": "Aug 19 23:25"}, {"filename": "ionice", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 24432, "date": "Aug 8 2019"}, {"filename": "iostat", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 62232, "date": "Aug 8 2019"}, {"filename": "ipcalc", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 15416, "date": "Aug 8 2019"}, {"filename": "ipcmk", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 24584, "date": "Aug 8 2019"}, {"filename": "ipcrm", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 28520, "date": "Aug 8 2019"}, {"filename": "ipcs", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 49520, "date": "Aug 8 2019"}, {"filename": "iptables-xml", "link_to": "/usr/sbin/xtables-multi", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 23, "date": "Oct 16 09:21"}, {"filename": "irb", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 314, "date": "Aug 8 2019"}, {"filename": "isosize", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 24400, "date": "Aug 8 2019"}, {"filename": "jobs", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 28, "date": "Aug 8 2019"}, {"filename": "join", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 49920, "date": "Aug 19 23:25"}, {"filename": "journalctl", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 550752, "date": "Sep 13 11:21"}, {"filename": "json_reformat", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 36752, "date": "Jun 9 2014"}, {"filename": "json_verify", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 28176, "date": "Jun 9 2014"}, {"filename": "kbdinfo", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11528, "date": "Oct 30 2018"}, {"filename": "kbd_mode", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11504, "date": "Oct 30 2018"}, {"filename": "kbdrate", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11560, "date": "Oct 30 2018"}, {"filename": "kdumpctl", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 32623, "date": "Aug 8 2019"}, {"filename": "kernel-install", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 4811, "date": "Sep 13 11:19"}, {"filename": "kill", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 33608, "date": "Aug 8 2019"}, {"filename": "kmod", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 146688, "date": "Aug 8 2019"}, {"filename": "last", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 19568, "date": "Jun 9 2014"}, {"filename": "lastb", "link_to": "last", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 4, "date": "Aug 15 2019"}, {"filename": "lastlog", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 19608, "date": "Aug 8 2019"}, {"filename": "lchfn", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 15896, "date": "Apr 12 2018"}, {"filename": "lchsh", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 15864, "date": "Apr 12 2018"}, {"filename": "ld", "link_to": "/etc/alternatives/ld", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 20, "date": "Oct 16 09:21"}, {"filename": "ld.bfd", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1006224, "date": "Aug 8 2019"}, {"filename": "ldd", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 5302, "date": "Aug 6 2019"}, {"filename": "ld.gold", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 5354368, "date": "Aug 8 2019"}, {"filename": "less", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 158240, "date": "Jul 30 2015"}, {"filename": "lessecho", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11376, "date": "Jul 30 2015"}, {"filename": "lesskey", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 17056, "date": "Jul 30 2015"}, {"filename": "lesspipe.sh", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 2291, "date": "Jul 30 2015"}, {"filename": "lexgrog", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 87128, "date": "Oct 30 2018"}, {"filename": "link", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 28984, "date": "Aug 19 23:25"}, {"filename": "linux32", "link_to": "setarch", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 7, "date": "Oct 16 09:21"}, {"filename": "linux64", "link_to": "setarch", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 7, "date": "Oct 16 09:21"}, {"filename": "linux-boot-prober", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 5995, "date": "Nov 5 2016"}, {"filename": "ln", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 58592, "date": "Aug 19 23:25"}, {"filename": "loadkeys", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 113184, "date": "Oct 30 2018"}, {"filename": "loadunimap", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 24544, "date": "Oct 30 2018"}, {"filename": "locale", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 38720, "date": "Aug 6 2019"}, {"filename": "localectl", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 334016, "date": "Sep 13 11:21"}, {"filename": "localedef", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 322928, "date": "Aug 6 2019"}, {"filename": "logger", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 29312, "date": "Aug 8 2019"}, {"filename": "login", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 37248, "date": "Aug 8 2019"}, {"filename": "loginctl", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 501344, "date": "Sep 13 11:21"}, {"filename": "logname", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 28984, "date": "Aug 19 23:25"}, {"filename": "look", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11544, "date": "Aug 8 2019"}, {"filename": "ls", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 117608, "date": "Aug 19 23:25"}, {"filename": "lsattr", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11600, "date": "Aug 8 2019"}, {"filename": "lsblk", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 81072, "date": "Aug 8 2019"}, {"filename": "lscpu", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 62208, "date": "Aug 8 2019"}, {"filename": "lsinitrd", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 6410, "date": "Aug 8 2019"}, {"filename": "lsipc", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 62432, "date": "Aug 8 2019"}, {"filename": "lslocks", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 42000, "date": "Aug 8 2019"}, {"filename": "lslogins", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 54152, "date": "Aug 8 2019"}, {"filename": "lsmem", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 41760, "date": "Aug 8 2019"}, {"filename": "lsns", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 37304, "date": "Aug 8 2019"}, {"filename": "lsscsi", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 57832, "date": "Aug 2 2017"}, {"filename": "lua", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 15840, "date": "Nov 5 2016"}, {"filename": "luac", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 121888, "date": "Nov 5 2016"}, {"filename": "lz4", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 124344, "date": "Aug 8 2019"}, {"filename": "lz4c", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 124344, "date": "Aug 8 2019"}, {"filename": "lz4cat", "link_to": "lz4", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Oct 16 09:21"}, {"filename": "machinectl", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 546704, "date": "Sep 13 11:21"}, {"filename": "mailq", "link_to": "/etc/alternatives/mta-mailq", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 27, "date": "Aug 15 2019"}, {"filename": "mailq.postfix", "link_to": "../../usr/sbin/sendmail.postfix", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 31, "date": "Aug 15 2019"}, {"filename": "make", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 182752, "date": "Aug 8 2019"}, {"filename": "makedb", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 19072, "date": "Aug 6 2019"}, {"filename": "man", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 102848, "date": "Oct 30 2018"}, {"filename": "mandb", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 125184, "date": "Oct 30 2018"}, {"filename": "manpath", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 33336, "date": "Oct 30 2018"}, {"filename": "mapscrn", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 20344, "date": "Oct 30 2018"}, {"filename": "mcookie", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 15808, "date": "Aug 8 2019"}, {"filename": "md5sum", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 41504, "date": "Aug 19 23:25"}, {"filename": "mdig", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 45328, "date": "Aug 8 2019"}, {"filename": "mesg", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11240, "date": "Jun 9 2014"}, {"filename": "mixartloader", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 15744, "date": "Nov 5 2016"}, {"filename": "mkdir", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 79768, "date": "Aug 19 23:25"}, {"filename": "mkfifo", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 63056, "date": "Aug 19 23:25"}, {"filename": "mkinitrd", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 3013, "date": "Aug 8 2019"}, {"filename": "mknod", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 67184, "date": "Aug 19 23:25"}, {"filename": "mktemp", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 41632, "date": "Aug 19 23:25"}, {"filename": "modutil", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 161480, "date": "Aug 12 2019"}, {"filename": "more", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 41112, "date": "Aug 8 2019"}, {"filename": "mount", "parent": "/usr/bin", "flags": "-rwsr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 44264, "date": "Aug 8 2019"}, {"filename": "mountpoint", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 15688, "date": "Aug 8 2019"}, {"filename": "mpstat", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 53792, "date": "Aug 8 2019"}, {"filename": "msgattrib", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 23920, "date": "Aug 2 2017"}, {"filename": "msgcat", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 23880, "date": "Aug 2 2017"}, {"filename": "msgcmp", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 24144, "date": "Aug 2 2017"}, {"filename": "msgcomm", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 23872, "date": "Aug 2 2017"}, {"filename": "msgconv", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 19760, "date": "Aug 2 2017"}, {"filename": "msgen", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 19752, "date": "Aug 2 2017"}, {"filename": "msgexec", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 15696, "date": "Aug 2 2017"}, {"filename": "msgfilter", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 28224, "date": "Aug 2 2017"}, {"filename": "msgfmt", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 78984, "date": "Aug 2 2017"}, {"filename": "msggrep", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 36816, "date": "Aug 2 2017"}, {"filename": "msghack", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 12751, "date": "Mar 15 2017"}, {"filename": "msginit", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 45440, "date": "Aug 2 2017"}, {"filename": "msgmerge", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 53848, "date": "Aug 2 2017"}, {"filename": "msgunfmt", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 32448, "date": "Aug 2 2017"}, {"filename": "msguniq", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 19776, "date": "Aug 2 2017"}, {"filename": "mv", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 130360, "date": "Aug 19 23:25"}, {"filename": "namei", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 28616, "date": "Aug 8 2019"}, {"filename": "ndptool", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 24192, "date": "Aug 8 2019"}, {"filename": "neqn", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 271, "date": "Jun 9 2014"}, {"filename": "netstat", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 155008, "date": "Aug 8 2019"}, {"filename": "newaliases", "link_to": "/etc/alternatives/mta-newaliases", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 32, "date": "Aug 15 2019"}, {"filename": "newaliases.postfix", "link_to": "../../usr/sbin/sendmail.postfix", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 31, "date": "Aug 15 2019"}, {"filename": "newgidmap", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 39000, "date": "Aug 8 2019"}, {"filename": "newgrp", "parent": "/usr/bin", "flags": "-rwsr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 41936, "date": "Aug 8 2019"}, {"filename": "newuidmap", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 38976, "date": "Aug 8 2019"}, {"filename": "nf-ct-add", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 12088, "date": "Aug 3 2017"}, {"filename": "nf-ct-list", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 16216, "date": "Aug 3 2017"}, {"filename": "nf-exp-add", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 16600, "date": "Aug 3 2017"}, {"filename": "nf-exp-delete", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 16376, "date": "Aug 3 2017"}, {"filename": "nf-exp-list", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 12088, "date": "Aug 3 2017"}, {"filename": "nf-log", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11504, "date": "Aug 3 2017"}, {"filename": "nf-monitor", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11448, "date": "Aug 3 2017"}, {"filename": "nf-queue", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11544, "date": "Aug 3 2017"}, {"filename": "nfsiostat-sysstat", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 53784, "date": "Aug 8 2019"}, {"filename": "ngettext", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 36816, "date": "Aug 2 2017"}, {"filename": "nice", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 33096, "date": "Aug 19 23:25"}, {"filename": "nisdomainname", "link_to": "hostname", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 8, "date": "Aug 15 2019"}, {"filename": "nl", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 41576, "date": "Aug 19 23:25"}, {"filename": "nl-addr-add", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11928, "date": "Aug 3 2017"}, {"filename": "nl-addr-delete", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 12016, "date": "Aug 3 2017"}, {"filename": "nl-addr-list", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 16256, "date": "Aug 3 2017"}, {"filename": "nl-class-add", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 11976, "date": "Aug 3 2017"}, {"filename": "nl-class-delete", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 11824, "date": "Aug 3 2017"}, {"filename": "nl-classid-lookup", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 11560, "date": "Aug 3 2017"}, {"filename": "nl-class-list", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 11752, "date": "Aug 3 2017"}, {"filename": "nl-cls-add", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 12040, "date": "Aug 3 2017"}, {"filename": "nl-cls-delete", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 11960, "date": "Aug 3 2017"}, {"filename": "nl-cls-list", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 11856, "date": "Aug 3 2017"}, {"filename": "nl-fib-lookup", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11688, "date": "Aug 3 2017"}, {"filename": "nl-link-enslave", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 7216, "date": "Aug 3 2017"}, {"filename": "nl-link-ifindex2name", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 7232, "date": "Aug 3 2017"}, {"filename": "nl-link-list", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 11800, "date": "Aug 3 2017"}, {"filename": "nl-link-name2ifindex", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 7216, "date": "Aug 3 2017"}, {"filename": "nl-link-release", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 7216, "date": "Aug 3 2017"}, {"filename": "nl-link-set", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11920, "date": "Aug 3 2017"}, {"filename": "nl-link-stats", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11664, "date": "Aug 3 2017"}, {"filename": "nl-list-caches", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11344, "date": "Aug 3 2017"}, {"filename": "nl-list-sockets", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 7232, "date": "Aug 3 2017"}, {"filename": "nl-monitor", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11464, "date": "Aug 3 2017"}, {"filename": "nl-neigh-add", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11784, "date": "Aug 3 2017"}, {"filename": "nl-neigh-delete", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11848, "date": "Aug 3 2017"}, {"filename": "nl-neigh-list", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11736, "date": "Aug 3 2017"}, {"filename": "nl-neightbl-list", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11536, "date": "Aug 3 2017"}, {"filename": "nl-pktloc-lookup", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 11632, "date": "Aug 3 2017"}, {"filename": "nl-qdisc-add", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 11880, "date": "Aug 3 2017"}, {"filename": "nl-qdisc-delete", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 11816, "date": "Aug 3 2017"}, {"filename": "nl-qdisc-list", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 11904, "date": "Aug 3 2017"}, {"filename": "nl-route-add", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 12016, "date": "Aug 3 2017"}, {"filename": "nl-route-delete", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 16240, "date": "Aug 3 2017"}, {"filename": "nl-route-get", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11448, "date": "Aug 3 2017"}, {"filename": "nl-route-list", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 12056, "date": "Aug 3 2017"}, {"filename": "nl-rule-list", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11568, "date": "Aug 3 2017"}, {"filename": "nl-tctree-list", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11808, "date": "Aug 3 2017"}, {"filename": "nl-util-addr", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 7200, "date": "Aug 3 2017"}, {"filename": "nm", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 42472, "date": "Aug 8 2019"}, {"filename": "nmcli", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 824448, "date": "Sep 13 11:04"}, {"filename": "nm-online", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 15528, "date": "Sep 13 11:04"}, {"filename": "nmtui", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 658184, "date": "Sep 13 11:04"}, {"filename": "nmtui-connect", "link_to": "nmtui", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 5, "date": "Oct 16 09:22"}, {"filename": "nmtui-edit", "link_to": "nmtui", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 5, "date": "Oct 16 09:22"}, {"filename": "nmtui-hostname", "link_to": "nmtui", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 5, "date": "Oct 16 09:22"}, {"filename": "nohup", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 33200, "date": "Aug 19 23:25"}, {"filename": "nproc", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 33144, "date": "Aug 19 23:25"}, {"filename": "nroff", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 3392, "date": "Jun 9 2014"}, {"filename": "nsenter", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 28896, "date": "Aug 8 2019"}, {"filename": "nslookup", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 134128, "date": "Aug 8 2019"}, {"filename": "nss-policy-check", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11472, "date": "Aug 12 2019"}, {"filename": "nsupdate", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 66616, "date": "Aug 8 2019"}, {"filename": "numfmt", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 66264, "date": "Aug 19 23:25"}, {"filename": "objcopy", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 232864, "date": "Aug 8 2019"}, {"filename": "objdump", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 366336, "date": "Aug 8 2019"}, {"filename": "od", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 66368, "date": "Aug 19 23:25"}, {"filename": "oldfind", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 190880, "date": "Oct 30 2018"}, {"filename": "open", "link_to": "openvt", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 6, "date": "Aug 15 2019"}, {"filename": "openssl", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 555288, "date": "Aug 8 2019"}, {"filename": "openvt", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 20024, "date": "Oct 30 2018"}, {"filename": "os-prober", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 5643, "date": "Nov 5 2016"}, {"filename": "p11-kit", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 32952, "date": "Aug 4 2017"}, {"filename": "passwd", "parent": "/usr/bin", "flags": "-rwsr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 27856, "date": "Aug 8 2019"}, {"filename": "paste", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 33128, "date": "Aug 19 23:25"}, {"filename": "pathchk", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 33088, "date": "Aug 19 23:25"}, {"filename": "pchrt", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 4024, "date": "Nov 5 2016"}, {"filename": "perl", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 11488, "date": "Jan 21 2019"}, {"filename": "perl5.16.3", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 11488, "date": "Jan 21 2019"}, {"filename": "perlbug", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 44351, "date": "Jan 21 2019"}, {"filename": "perldoc", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 203, "date": "Jun 10 2014"}, {"filename": "perlthanks", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 44351, "date": "Jan 21 2019"}, {"filename": "pflags", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 2111, "date": "Aug 8 2019"}, {"filename": "pgawk", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 428672, "date": "Jun 28 2017"}, {"filename": "pgrep", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 28336, "date": "Aug 8 2019"}, {"filename": "pic", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 184736, "date": "Jun 9 2014"}, {"filename": "piconv", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 8177, "date": "Jun 9 2014"}, {"filename": "pidstat", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 70536, "date": "Aug 8 2019"}, {"filename": "pinentry", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 2602, "date": "Nov 4 2016"}, {"filename": "pinentry-curses", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 50368, "date": "Nov 5 2016"}, {"filename": "ping", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 66176, "date": "Aug 4 2017"}, {"filename": "ping6", "link_to": "ping", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 4, "date": "Aug 15 2019"}, {"filename": "pinky", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 37448, "date": "Aug 19 23:25"}, {"filename": "pip3", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 407, "date": "Aug 7 2019"}, {"filename": "pip-3", "link_to": "./pip-3.6", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 9, "date": "Oct 15 11:09"}, {"filename": "pip-3.6", "link_to": "./pip3.6", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 8, "date": "Oct 15 11:09"}, {"filename": "pip3.6", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 407, "date": "Aug 7 2019"}, {"filename": "pk12util", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 97296, "date": "Aug 12 2019"}, {"filename": "pkaction", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 15360, "date": "Sep 13 11:10"}, {"filename": "pkcheck", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 23576, "date": "Sep 13 11:10"}, {"filename": "pkexec", "parent": "/usr/bin", "flags": "-rwsr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 23576, "date": "Sep 13 11:10"}, {"filename": "pkg-config", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 45448, "date": "Jun 9 2014"}, {"filename": "pkill", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 28336, "date": "Aug 8 2019"}, {"filename": "pkla-admin-identities", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 19688, "date": "Jun 9 2014"}, {"filename": "pkla-check-authorization", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 27960, "date": "Jun 9 2014"}, {"filename": "pkttyagent", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 19440, "date": "Sep 13 11:10"}, {"filename": "pl2pm", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 4531, "date": "Jan 21 2019"}, {"filename": "pldd", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 14872, "date": "Aug 6 2019"}, {"filename": "plymouth", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 40808, "date": "Aug 8 2019"}, {"filename": "pmap", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 28272, "date": "Aug 8 2019"}, {"filename": "pod2html", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 4096, "date": "Jan 21 2019"}, {"filename": "pod2man", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 13581, "date": "Jun 9 2014"}, {"filename": "pod2text", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11004, "date": "Jun 9 2014"}, {"filename": "pod2usage", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 3755, "date": "Jun 10 2014"}, {"filename": "post-grohtml", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 192048, "date": "Jun 9 2014"}, {"filename": "powernow-k8-decode", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 6296, "date": "Sep 30 07:30"}, {"filename": "pr", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 66672, "date": "Aug 19 23:25"}, {"filename": "preconv", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 41864, "date": "Jun 9 2014"}, {"filename": "pre-grohtml", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 88312, "date": "Jun 9 2014"}, {"filename": "printenv", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 28968, "date": "Aug 19 23:25"}, {"filename": "printf", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 49768, "date": "Aug 19 23:25"}, {"filename": "prlimit", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 42184, "date": "Aug 8 2019"}, {"filename": "ps", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 100112, "date": "Aug 8 2019"}, {"filename": "psed", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 53329, "date": "Jan 21 2019"}, {"filename": "psfaddtable", "link_to": "psfxtable", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 9, "date": "Aug 15 2019"}, {"filename": "psfgettable", "link_to": "psfxtable", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 9, "date": "Aug 15 2019"}, {"filename": "psfstriptable", "link_to": "psfxtable", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 9, "date": "Aug 15 2019"}, {"filename": "psfxtable", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 20008, "date": "Oct 30 2018"}, {"filename": "pstruct", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 36607, "date": "Jan 21 2019"}, {"filename": "ptaskset", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 3891, "date": "Nov 5 2016"}, {"filename": "ptx", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 66640, "date": "Aug 19 23:25"}, {"filename": "pwd", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 33232, "date": "Aug 19 23:25"}, {"filename": "pwdx", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11536, "date": "Aug 8 2019"}, {"filename": "pwmake", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11392, "date": "Apr 10 2018"}, {"filename": "pwscore", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11392, "date": "Apr 10 2018"}, {"filename": "pydoc", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 78, "date": "Aug 6 2019"}, {"filename": "pydoc3", "link_to": "pydoc3.6", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 8, "date": "Oct 15 11:09"}, {"filename": "pydoc3.6", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 78, "date": "Aug 7 2019"}, {"filename": "python", "link_to": "python2", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 7, "date": "Oct 16 09:21"}, {"filename": "python2", "link_to": "python2.7", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 9, "date": "Oct 16 09:21"}, {"filename": "python2.7", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 7216, "date": "Aug 6 2019"}, {"filename": "python3", "link_to": "python3.6", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 9, "date": "Oct 15 11:09"}, {"filename": "python3.6", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 11408, "date": "Aug 7 2019"}, {"filename": "python3.6m", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 11408, "date": "Aug 7 2019"}, {"filename": "pyvenv", "link_to": "pyvenv-3.6", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 10, "date": "Oct 15 11:09"}, {"filename": "pyvenv-3.6", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 435, "date": "Aug 7 2019"}, {"filename": "ranlib", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 62744, "date": "Aug 8 2019"}, {"filename": "raw", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 15640, "date": "Aug 8 2019"}, {"filename": "rdoc", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 934, "date": "Aug 8 2019"}, {"filename": "read", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 28, "date": "Aug 8 2019"}, {"filename": "readelf", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 517992, "date": "Aug 8 2019"}, {"filename": "readlink", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 41800, "date": "Aug 19 23:25"}, {"filename": "realpath", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 62696, "date": "Aug 19 23:25"}, {"filename": "recode-sr-latin", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 15648, "date": "Aug 2 2017"}, {"filename": "rename", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11528, "date": "Aug 8 2019"}, {"filename": "renice", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11480, "date": "Aug 8 2019"}, {"filename": "reset", "link_to": "tset", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 4, "date": "Aug 15 2019"}, {"filename": "resizecons", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 20176, "date": "Oct 30 2018"}, {"filename": "rev", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11528, "date": "Aug 8 2019"}, {"filename": "ri", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 184, "date": "Aug 8 2019"}, {"filename": "rm", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 62872, "date": "Aug 19 23:25"}, {"filename": "rmail", "link_to": "/etc/alternatives/mta-rmail", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 27, "date": "Aug 15 2019"}, {"filename": "rmail.postfix", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 262, "date": "Oct 30 2018"}, {"filename": "rmdir", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 45528, "date": "Aug 19 23:25"}, {"filename": "rpcgen", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 93144, "date": "Aug 6 2019"}, {"filename": "rpm", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 16208, "date": "Aug 6 2019"}, {"filename": "rpm2cpio", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11496, "date": "Aug 6 2019"}, {"filename": "rpmdb", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 12096, "date": "Aug 6 2019"}, {"filename": "rpmkeys", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 12096, "date": "Aug 6 2019"}, {"filename": "rpmquery", "link_to": "../../bin/rpm", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 13, "date": "Oct 16 09:21"}, {"filename": "rpmverify", "link_to": "../../bin/rpm", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 13, "date": "Oct 16 09:21"}, {"filename": "rsync", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 495896, "date": "Apr 25 2019"}, {"filename": "rsyslog-recover-qi.pl", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 6098, "date": "Sep 13 11:14"}, {"filename": "ruby", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 7256, "date": "Aug 8 2019"}, {"filename": "runcon", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 33248, "date": "Aug 19 23:25"}, {"filename": "run-parts", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 2086, "date": "Jun 9 2014"}, {"filename": "rvi", "link_to": "vi", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 2, "date": "Oct 16 09:21"}, {"filename": "rview", "link_to": "vi", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 2, "date": "Oct 16 09:21"}, {"filename": "s2p", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 53329, "date": "Jan 21 2019"}, {"filename": "sadf", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 172488, "date": "Aug 8 2019"}, {"filename": "sandbox", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 17939, "date": "Aug 8 2019"}, {"filename": "sar", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 97656, "date": "Aug 8 2019"}, {"filename": "scp", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 91384, "date": "Aug 8 2019"}, {"filename": "script", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 20080, "date": "Aug 8 2019"}, {"filename": "scriptreplay", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 15656, "date": "Aug 8 2019"}, {"filename": "sdiff", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 49640, "date": "Aug 8 2019"}, {"filename": "secon", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 24640, "date": "Aug 8 2019"}, {"filename": "sed", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 76016, "date": "Jun 9 2014"}, {"filename": "sedismod", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 255408, "date": "Oct 30 2018"}, {"filename": "sedispol", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 180552, "date": "Oct 30 2018"}, {"filename": "semodule_package", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 15672, "date": "Aug 8 2019"}, {"filename": "seq", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 49640, "date": "Aug 19 23:25"}, {"filename": "setarch", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 15640, "date": "Aug 8 2019"}, {"filename": "setfacl", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 37616, "date": "Apr 10 2018"}, {"filename": "setfont", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 41432, "date": "Oct 30 2018"}, {"filename": "setkeycodes", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11496, "date": "Oct 30 2018"}, {"filename": "setleds", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11520, "date": "Oct 30 2018"}, {"filename": "setmetamode", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11568, "date": "Oct 30 2018"}, {"filename": "setpriv", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 36928, "date": "Aug 8 2019"}, {"filename": "setsid", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11496, "date": "Aug 8 2019"}, {"filename": "setterm", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 28144, "date": "Aug 8 2019"}, {"filename": "setup-nsssysinit", "link_to": "setup-nsssysinit.sh", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 19, "date": "Oct 16 09:21"}, {"filename": "setup-nsssysinit.sh", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1539, "date": "Aug 12 2019"}, {"filename": "setvtrgb", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11688, "date": "Oct 30 2018"}, {"filename": "sftp", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 145424, "date": "Aug 8 2019"}, {"filename": "sg", "link_to": "newgrp", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 6, "date": "Oct 16 09:21"}, {"filename": "sh", "link_to": "bash", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 4, "date": "Oct 16 09:21"}, {"filename": "sha1sum", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 37448, "date": "Aug 19 23:25"}, {"filename": "sha224sum", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 41608, "date": "Aug 19 23:25"}, {"filename": "sha256sum", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 41608, "date": "Aug 19 23:25"}, {"filename": "sha384sum", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 41624, "date": "Aug 19 23:25"}, {"filename": "sha512sum", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 41624, "date": "Aug 19 23:25"}, {"filename": "showconsolefont", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 15912, "date": "Oct 30 2018"}, {"filename": "showkey", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 15680, "date": "Oct 30 2018"}, {"filename": "shred", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 54208, "date": "Aug 19 23:25"}, {"filename": "shuf", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 50312, "date": "Aug 19 23:25"}, {"filename": "signver", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 96664, "date": "Aug 12 2019"}, {"filename": "size", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 33216, "date": "Aug 8 2019"}, {"filename": "skill", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 24184, "date": "Aug 8 2019"}, {"filename": "slabtop", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 19984, "date": "Aug 8 2019"}, {"filename": "sleep", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 33128, "date": "Aug 19 23:25"}, {"filename": "slogin", "link_to": "./ssh", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 5, "date": "Oct 16 09:22"}, {"filename": "snice", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 24184, "date": "Aug 8 2019"}, {"filename": "soelim", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 33368, "date": "Jun 9 2014"}, {"filename": "sort", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 117704, "date": "Aug 19 23:25"}, {"filename": "sotruss", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 4341, "date": "Aug 6 2019"}, {"filename": "splain", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 18459, "date": "Jan 21 2019"}, {"filename": "split", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 71128, "date": "Aug 19 23:25"}, {"filename": "sprof", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 23224, "date": "Aug 6 2019"}, {"filename": "sqlite3", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 56240, "date": "Nov 20 2015"}, {"filename": "ssh", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 774568, "date": "Aug 8 2019"}, {"filename": "ssh-add", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 360920, "date": "Aug 8 2019"}, {"filename": "ssh-agent", "parent": "/usr/bin", "flags": "---x--s--x.", "links": 1, "owner": "root", "group": "nobody", "size": 382216, "date": "Aug 8 2019"}, {"filename": "ssh-copy-id", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 10469, "date": "Aug 8 2019"}, {"filename": "ssh-keygen", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 419208, "date": "Aug 8 2019"}, {"filename": "ssh-keyscan", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 441024, "date": "Aug 8 2019"}, {"filename": "ssltap", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 112928, "date": "Aug 12 2019"}, {"filename": "stat", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 79040, "date": "Aug 19 23:25"}, {"filename": "stdbuf", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 66440, "date": "Aug 19 23:25"}, {"filename": "strings", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 29192, "date": "Aug 8 2019"}, {"filename": "strip", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 232856, "date": "Aug 8 2019"}, {"filename": "stty", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 70256, "date": "Aug 19 23:25"}, {"filename": "su", "parent": "/usr/bin", "flags": "-rwsr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 32128, "date": "Aug 8 2019"}, {"filename": "sudo", "parent": "/usr/bin", "flags": "---s--x--x.", "links": 1, "owner": "root", "group": "root", "size": 147320, "date": "Aug 8 2019"}, {"filename": "sudoedit", "link_to": "sudo", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 4, "date": "Oct 16 09:22"}, {"filename": "sudoreplay", "parent": "/usr/bin", "flags": "---x--x--x.", "links": 1, "owner": "root", "group": "root", "size": 57456, "date": "Aug 8 2019"}, {"filename": "sum", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 37432, "date": "Aug 19 23:25"}, {"filename": "sync", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 28976, "date": "Aug 19 23:25"}, {"filename": "systemctl", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 717568, "date": "Sep 13 11:21"}, {"filename": "systemd-analyze", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1558080, "date": "Sep 13 11:21"}, {"filename": "systemd-ask-password", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 61824, "date": "Sep 13 11:21"}, {"filename": "systemd-cat", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 40952, "date": "Sep 13 11:21"}, {"filename": "systemd-cgls", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 334112, "date": "Sep 13 11:21"}, {"filename": "systemd-cgtop", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 87128, "date": "Sep 13 11:21"}, {"filename": "systemd-coredumpctl", "link_to": "coredumpctl", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 11, "date": "Oct 16 09:21"}, {"filename": "systemd-delta", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 78680, "date": "Sep 13 11:21"}, {"filename": "systemd-detect-virt", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 40928, "date": "Sep 13 11:21"}, {"filename": "systemd-escape", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 49352, "date": "Sep 13 11:21"}, {"filename": "systemd-firstboot", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 103952, "date": "Sep 13 11:21"}, {"filename": "systemd-hwdb", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 87344, "date": "Sep 13 11:21"}, {"filename": "systemd-inhibit", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 313200, "date": "Sep 13 11:21"}, {"filename": "systemd-loginctl", "link_to": "loginctl", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 8, "date": "Oct 16 09:21"}, {"filename": "systemd-machine-id-setup", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 53488, "date": "Sep 13 11:21"}, {"filename": "systemd-notify", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 49288, "date": "Sep 13 11:21"}, {"filename": "systemd-nspawn", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 558912, "date": "Sep 13 11:21"}, {"filename": "systemd-path", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 53416, "date": "Sep 13 11:21"}, {"filename": "systemd-run", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 392216, "date": "Sep 13 11:21"}, {"filename": "systemd-stdio-bridge", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 313136, "date": "Sep 13 11:21"}, {"filename": "systemd-sysv-convert", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 3979, "date": "Sep 13 11:19"}, {"filename": "systemd-tmpfiles", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 145536, "date": "Sep 13 11:21"}, {"filename": "systemd-tty-ask-password-agent", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 86784, "date": "Sep 13 11:21"}, {"filename": "tabs", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 15680, "date": "Sep 6 2017"}, {"filename": "tac", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 33264, "date": "Aug 19 23:25"}, {"filename": "tail", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 66824, "date": "Aug 19 23:25"}, {"filename": "tailf", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 24456, "date": "Aug 8 2019"}, {"filename": "tapestat", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 53816, "date": "Aug 8 2019"}, {"filename": "tar", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 346136, "date": "Oct 30 2018"}, {"filename": "taskset", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 32992, "date": "Aug 8 2019"}, {"filename": "tbl", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 118744, "date": "Jun 9 2014"}, {"filename": "teamd", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 154648, "date": "Aug 8 2019"}, {"filename": "teamdctl", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 29672, "date": "Aug 8 2019"}, {"filename": "teamnl", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 19560, "date": "Aug 8 2019"}, {"filename": "tee", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 33160, "date": "Aug 19 23:25"}, {"filename": "test", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 37336, "date": "Aug 19 23:25"}, {"filename": "testgdbm", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 30488, "date": "Jun 9 2014"}, {"filename": "testrb", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 74, "date": "Aug 8 2019"}, {"filename": "tic", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 65800, "date": "Sep 6 2017"}, {"filename": "timedatectl", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 338104, "date": "Sep 13 11:21"}, {"filename": "timeout", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 54592, "date": "Aug 19 23:25"}, {"filename": "tload", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 15744, "date": "Aug 8 2019"}, {"filename": "tmon", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 31856, "date": "Sep 30 07:30"}, {"filename": "toe", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 15800, "date": "Sep 6 2017"}, {"filename": "top", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 106880, "date": "Aug 8 2019"}, {"filename": "touch", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 62480, "date": "Aug 19 23:25"}, {"filename": "tput", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 15784, "date": "Sep 6 2017"}, {"filename": "tr", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 45680, "date": "Aug 19 23:25"}, {"filename": "tracepath", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 15408, "date": "Aug 4 2017"}, {"filename": "tracepath6", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 15408, "date": "Aug 4 2017"}, {"filename": "troff", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 525272, "date": "Jun 9 2014"}, {"filename": "true", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 28936, "date": "Aug 19 23:25"}, {"filename": "truncate", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 53936, "date": "Aug 19 23:25"}, {"filename": "trust", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 183376, "date": "Aug 4 2017"}, {"filename": "tset", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 20072, "date": "Sep 6 2017"}, {"filename": "tsort", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 37344, "date": "Aug 19 23:25"}, {"filename": "tty", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 28968, "date": "Aug 19 23:25"}, {"filename": "turbostat", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 115864, "date": "Sep 30 07:30"}, {"filename": "tzselect", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 7339, "date": "Aug 6 2019"}, {"filename": "udevadm", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 424208, "date": "Sep 13 11:21"}, {"filename": "ul", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 19936, "date": "Aug 8 2019"}, {"filename": "umask", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 29, "date": "Aug 8 2019"}, {"filename": "umount", "parent": "/usr/bin", "flags": "-rwsr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 31984, "date": "Aug 8 2019"}, {"filename": "unalias", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 31, "date": "Aug 8 2019"}, {"filename": "uname", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 33080, "date": "Aug 19 23:25"}, {"filename": "unexpand", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 33232, "date": "Aug 19 23:25"}, {"filename": "unicode_start", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 2555, "date": "Oct 30 2018"}, {"filename": "unicode_stop", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 363, "date": "Oct 30 2018"}, {"filename": "uniq", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 45784, "date": "Aug 19 23:25"}, {"filename": "unlink", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 28984, "date": "Aug 19 23:25"}, {"filename": "unlz4", "link_to": "lz4", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Oct 16 09:21"}, {"filename": "unshare", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 15824, "date": "Aug 8 2019"}, {"filename": "unxz", "link_to": "xz", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 2, "date": "Aug 15 2019"}, {"filename": "unzip", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 185472, "date": "Aug 8 2019"}, {"filename": "unzipsfx", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 90752, "date": "Aug 8 2019"}, {"filename": "update-ca-trust", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1054, "date": "May 14 2018"}, {"filename": "update-mime-database", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 54080, "date": "Apr 10 2018"}, {"filename": "uptime", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11488, "date": "Aug 8 2019"}, {"filename": "urlgrabber", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 12465, "date": "Oct 30 2018"}, {"filename": "users", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 33200, "date": "Aug 19 23:25"}, {"filename": "usleep", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11208, "date": "Aug 8 2019"}, {"filename": "usx2yloader", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 15776, "date": "Nov 5 2016"}, {"filename": "utmpdump", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 15816, "date": "Aug 8 2019"}, {"filename": "uuidgen", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11480, "date": "Aug 8 2019"}, {"filename": "vdir", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 117608, "date": "Aug 19 23:25"}, {"filename": "vi", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 928184, "date": "Aug 8 2019"}, {"filename": "view", "link_to": "vi", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 2, "date": "Oct 16 09:21"}, {"filename": "vlock", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 16160, "date": "Oct 30 2018"}, {"filename": "vmstat", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 32232, "date": "Aug 8 2019"}, {"filename": "vxloader", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 15744, "date": "Nov 5 2016"}, {"filename": "w", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 19912, "date": "Aug 8 2019"}, {"filename": "wait", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 28, "date": "Aug 8 2019"}, {"filename": "wall", "parent": "/usr/bin", "flags": "-r-xr-sr-x.", "links": 1, "owner": "root", "group": "tty", "size": 15344, "date": "Jun 9 2014"}, {"filename": "watch", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 24728, "date": "Aug 8 2019"}, {"filename": "watchgnupg", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 15720, "date": "Jul 13 2018"}, {"filename": "wc", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 41648, "date": "Aug 19 23:25"}, {"filename": "wdctl", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 41672, "date": "Aug 8 2019"}, {"filename": "whatis", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 46584, "date": "Oct 30 2018"}, {"filename": "whereis", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 20680, "date": "Aug 8 2019"}, {"filename": "which", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 24336, "date": "Jun 9 2014"}, {"filename": "whiptail", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 28504, "date": "Jun 10 2014"}, {"filename": "who", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 49872, "date": "Aug 19 23:25"}, {"filename": "whoami", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 28984, "date": "Aug 19 23:25"}, {"filename": "write", "parent": "/usr/bin", "flags": "-rwxr-sr-x.", "links": 1, "owner": "root", "group": "tty", "size": 19544, "date": "Aug 8 2019"}, {"filename": "x86_64", "link_to": "setarch", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 7, "date": "Oct 16 09:21"}, {"filename": "x86_energy_perf_policy", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 10480, "date": "Sep 30 07:30"}, {"filename": "xargs", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 62368, "date": "Oct 30 2018"}, {"filename": "xgettext", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 271784, "date": "Aug 2 2017"}, {"filename": "xmlcatalog", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 19752, "date": "Jun 23 2016"}, {"filename": "xmllint", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 63408, "date": "Jun 23 2016"}, {"filename": "xmlwf", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 24568, "date": "Nov 28 2016"}, {"filename": "xz", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 75280, "date": "Nov 5 2016"}, {"filename": "xzcat", "link_to": "xz", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 2, "date": "Aug 15 2019"}, {"filename": "xzcmp", "link_to": "xzdiff", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 6, "date": "Aug 15 2019"}, {"filename": "xzdec", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11472, "date": "Nov 5 2016"}, {"filename": "xzdiff", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 6632, "date": "Nov 5 2016"}, {"filename": "xzegrep", "link_to": "xzgrep", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 6, "date": "Aug 15 2019"}, {"filename": "xzfgrep", "link_to": "xzgrep", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 6, "date": "Aug 15 2019"}, {"filename": "xzgrep", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 5628, "date": "Nov 5 2016"}, {"filename": "xzless", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1802, "date": "Nov 5 2016"}, {"filename": "xzmore", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 2161, "date": "Nov 5 2016"}, {"filename": "yes", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 28984, "date": "Aug 19 23:25"}, {"filename": "ypdomainname", "link_to": "hostname", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 8, "date": "Aug 15 2019"}, {"filename": "yum", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 801, "date": "Aug 8 2019"}, {"filename": "zcat", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1941, "date": "Apr 10 2018"}, {"filename": "zcmp", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1760, "date": "Apr 10 2018"}, {"filename": "zdiff", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 5768, "date": "Apr 10 2018"}, {"filename": "zegrep", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 123, "date": "Apr 10 2018"}, {"filename": "zfgrep", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 123, "date": "Apr 10 2018"}, {"filename": "zforce", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 2144, "date": "Apr 10 2018"}, {"filename": "zgrep", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 6132, "date": "Apr 10 2018"}, {"filename": "zipgrep", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 2953, "date": "Oct 10 2008"}, {"filename": "zipinfo", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 185472, "date": "Aug 8 2019"}, {"filename": "zless", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 2041, "date": "Apr 10 2018"}, {"filename": "zmore", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 2859, "date": "Apr 10 2018"}, {"filename": "znew", "parent": "/usr/bin", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 5343, "date": "Apr 10 2018"}, {"filename": "zsoelim", "link_to": "soelim", "parent": "/usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 6, "date": "Aug 15 2019"}, {"filename": ".", "parent": "/usr/etc", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 6, "date": "Apr 10 2018"}, {"filename": "..", "parent": "/usr/etc", "flags": "drwxr-xr-x.", "links": 13, "owner": "root", "group": "root", "size": 155, "date": "Aug 15 2019"}, {"filename": ".", "parent": "/usr/games", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 6, "date": "Apr 10 2018"}, {"filename": "..", "parent": "/usr/games", "flags": "drwxr-xr-x.", "links": 13, "owner": "root", "group": "root", "size": 155, "date": "Aug 15 2019"}, {"filename": ".", "parent": "/usr/include", "flags": "drwxr-xr-x.", "links": 4, "owner": "root", "group": "root", "size": 41, "date": "Oct 15 11:09"}, {"filename": "..", "parent": "/usr/include", "flags": "drwxr-xr-x.", "links": 13, "owner": "root", "group": "root", "size": 155, "date": "Aug 15 2019"}, {"filename": "python2.7", "parent": "/usr/include", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 27, "date": "Oct 16 09:21"}, {"filename": "python3.6m", "parent": "/usr/include", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 27, "date": "Oct 15 11:09"}, {"filename": ".", "parent": "/usr/include/python2.7", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 27, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/include/python2.7", "flags": "drwxr-xr-x.", "links": 4, "owner": "root", "group": "root", "size": 41, "date": "Oct 15 11:09"}, {"filename": "pyconfig-64.h", "parent": "/usr/include/python2.7", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 36814, "date": "Aug 6 2019"}, {"filename": ".", "parent": "/usr/include/python3.6m", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 27, "date": "Oct 15 11:09"}, {"filename": "..", "parent": "/usr/include/python3.6m", "flags": "drwxr-xr-x.", "links": 4, "owner": "root", "group": "root", "size": 41, "date": "Oct 15 11:09"}, {"filename": "pyconfig-64.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 44526, "date": "Aug 7 2019"}, {"filename": ".", "parent": "/usr/lib", "flags": "dr-xr-xr-x.", "links": 29, "owner": "root", "group": "root", "size": 4096, "date": "Nov 16 14:29"}, {"filename": "..", "parent": "/usr/lib", "flags": "drwxr-xr-x.", "links": 13, "owner": "root", "group": "root", "size": 155, "date": "Aug 15 2019"}, {"filename": "binfmt.d", "parent": "/usr/lib", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 6, "date": "Sep 13 11:19"}, {"filename": "debug", "parent": "/usr/lib", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 64, "date": "Apr 10 2018"}, {"filename": "dracut", "parent": "/usr/lib", "flags": "drwxr-xr-x.", "links": 4, "owner": "root", "group": "root", "size": 236, "date": "Oct 16 09:21"}, {"filename": "firewalld", "parent": "/usr/lib", "flags": "drwxr-xr-x.", "links": 7, "owner": "root", "group": "root", "size": 81, "date": "Oct 16 09:23"}, {"filename": "firmware", "parent": "/usr/lib", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "games", "parent": "/usr/lib", "flags": "dr-xr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 6, "date": "Apr 10 2018"}, {"filename": "gems", "parent": "/usr/lib", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 18, "date": "Nov 16 14:29"}, {"filename": "grub", "parent": "/usr/lib", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 21, "date": "Aug 8 2019"}, {"filename": "kbd", "parent": "/usr/lib", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 76, "date": "Aug 15 2019"}, {"filename": "kdump", "parent": "/usr/lib", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 56, "date": "Oct 16 09:22"}, {"filename": "kernel", "parent": "/usr/lib", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 23, "date": "Sep 13 11:19"}, {"filename": "locale", "parent": "/usr/lib", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 55, "date": "Oct 16 09:21"}, {"filename": "modprobe.d", "parent": "/usr/lib", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 55, "date": "Oct 16 09:23"}, {"filename": "modules", "parent": "/usr/lib", "flags": "drwxr-xr-x.", "links": 5, "owner": "root", "group": "root", "size": 103, "date": "Oct 16 09:22"}, {"filename": "modules-load.d", "parent": "/usr/lib", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 6, "date": "Sep 13 11:19"}, {"filename": "NetworkManager", "parent": "/usr/lib", "flags": "drwxr-xr-x.", "links": 4, "owner": "root", "group": "root", "size": 31, "date": "Sep 13 11:04"}, {"filename": "polkit-1", "parent": "/usr/lib", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 50, "date": "Oct 16 09:21"}, {"filename": "python2.7", "parent": "/usr/lib", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 27, "date": "Aug 6 2019"}, {"filename": "python3.6", "parent": "/usr/lib", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 27, "date": "Aug 7 2019"}, {"filename": "rpm", "parent": "/usr/lib", "flags": "drwxr-xr-x.", "links": 4, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:21"}, {"filename": "sendmail", "link_to": "/etc/alternatives/mta-sendmail", "parent": "/usr/lib", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 30, "date": "Aug 15 2019"}, {"filename": "sendmail.postfix", "link_to": "../sbin/sendmail.postfix", "parent": "/usr/lib", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 24, "date": "Aug 15 2019"}, {"filename": "sse2", "parent": "/usr/lib", "flags": "dr-xr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 6, "date": "Apr 10 2018"}, {"filename": "sysctl.d", "parent": "/usr/lib", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 107, "date": "Oct 16 09:22"}, {"filename": "systemd", "parent": "/usr/lib", "flags": "drwxr-xr-x.", "links": 12, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:21"}, {"filename": "tmpfiles.d", "parent": "/usr/lib", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "tuned", "parent": "/usr/lib", "flags": "drwxr-xr-x.", "links": 13, "owner": "root", "group": "root", "size": 256, "date": "Oct 16 09:22"}, {"filename": "udev", "parent": "/usr/lib", "flags": "drwxr-xr-x.", "links": 4, "owner": "root", "group": "root", "size": 252, "date": "Oct 16 09:21"}, {"filename": "yum-plugins", "parent": "/usr/lib", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 80, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/binfmt.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 6, "date": "Sep 13 11:19"}, {"filename": "..", "parent": "/usr/lib/binfmt.d", "flags": "dr-xr-xr-x.", "links": 29, "owner": "root", "group": "root", "size": 4096, "date": "Nov 16 14:29"}, {"filename": ".", "parent": "/usr/lib/debug", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 64, "date": "Apr 10 2018"}, {"filename": "..", "parent": "/usr/lib/debug", "flags": "dr-xr-xr-x.", "links": 29, "owner": "root", "group": "root", "size": 4096, "date": "Nov 16 14:29"}, {"filename": "bin", "link_to": "usr/bin", "parent": "/usr/lib/debug", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 7, "date": "Aug 15 2019"}, {"filename": "lib", "link_to": "usr/lib", "parent": "/usr/lib/debug", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 7, "date": "Aug 15 2019"}, {"filename": "lib64", "link_to": "usr/lib64", "parent": "/usr/lib/debug", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 9, "date": "Aug 15 2019"}, {"filename": "sbin", "link_to": "usr/sbin", "parent": "/usr/lib/debug", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 8, "date": "Aug 15 2019"}, {"filename": "usr", "parent": "/usr/lib/debug", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 65, "date": "Aug 15 2019"}, {"filename": ".", "parent": "/usr/lib/debug/usr", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 65, "date": "Aug 15 2019"}, {"filename": "..", "parent": "/usr/lib/debug/usr", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 64, "date": "Apr 10 2018"}, {"filename": "bin", "parent": "/usr/lib/debug/usr", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 6, "date": "Aug 15 2019"}, {"filename": ".dwz", "link_to": "../.dwz", "parent": "/usr/lib/debug/usr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 7, "date": "Aug 15 2019"}, {"filename": "lib", "parent": "/usr/lib/debug/usr", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 6, "date": "Aug 15 2019"}, {"filename": "lib64", "parent": "/usr/lib/debug/usr", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 6, "date": "Aug 15 2019"}, {"filename": "sbin", "parent": "/usr/lib/debug/usr", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 6, "date": "Aug 15 2019"}, {"filename": ".", "parent": "/usr/lib/debug/usr/bin", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 6, "date": "Aug 15 2019"}, {"filename": "..", "parent": "/usr/lib/debug/usr/bin", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 65, "date": "Aug 15 2019"}, {"filename": ".", "parent": "/usr/lib/debug/usr/lib", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 6, "date": "Aug 15 2019"}, {"filename": "..", "parent": "/usr/lib/debug/usr/lib", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 65, "date": "Aug 15 2019"}, {"filename": ".", "parent": "/usr/lib/debug/usr/lib64", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 6, "date": "Aug 15 2019"}, {"filename": "..", "parent": "/usr/lib/debug/usr/lib64", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 65, "date": "Aug 15 2019"}, {"filename": ".", "parent": "/usr/lib/debug/usr/sbin", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 6, "date": "Aug 15 2019"}, {"filename": "..", "parent": "/usr/lib/debug/usr/sbin", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 65, "date": "Aug 15 2019"}, {"filename": ".", "parent": "/usr/lib/dracut", "flags": "drwxr-xr-x.", "links": 4, "owner": "root", "group": "root", "size": 236, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut", "flags": "dr-xr-xr-x.", "links": 29, "owner": "root", "group": "root", "size": 4096, "date": "Nov 16 14:29"}, {"filename": "dracut.conf.d", "parent": "/usr/lib/dracut", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 164, "date": "Oct 16 09:22"}, {"filename": "dracut-functions", "link_to": "dracut-functions.sh", "parent": "/usr/lib/dracut", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 19, "date": "Oct 16 09:21"}, {"filename": "dracut-functions.sh", "parent": "/usr/lib/dracut", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 56134, "date": "Aug 8 2019"}, {"filename": "dracut-initramfs-restore", "parent": "/usr/lib/dracut", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1111, "date": "Aug 8 2019"}, {"filename": "dracut-init.sh", "parent": "/usr/lib/dracut", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1188, "date": "Aug 8 2019"}, {"filename": "dracut-install", "parent": "/usr/lib/dracut", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 41616, "date": "Aug 8 2019"}, {"filename": "dracut-logger.sh", "parent": "/usr/lib/dracut", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 13388, "date": "Aug 8 2019"}, {"filename": "dracut-version.sh", "parent": "/usr/lib/dracut", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 27, "date": "Aug 8 2019"}, {"filename": "modules.d", "parent": "/usr/lib/dracut", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "skipcpio", "parent": "/usr/lib/dracut", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 7296, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/dracut.conf.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 164, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/dracut/dracut.conf.d", "flags": "drwxr-xr-x.", "links": 4, "owner": "root", "group": "root", "size": 236, "date": "Oct 16 09:21"}, {"filename": "01-dist.conf", "parent": "/usr/lib/dracut/dracut.conf.d", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 524, "date": "Aug 8 2019"}, {"filename": "01-microcode.conf", "parent": "/usr/lib/dracut/dracut.conf.d", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 22, "date": "Aug 8 2019"}, {"filename": "02-rescue.conf", "parent": "/usr/lib/dracut/dracut.conf.d", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 26, "date": "Aug 8 2019"}, {"filename": "50-nss-softokn.conf", "parent": "/usr/lib/dracut/dracut.conf.d", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 65, "date": "Aug 12 2019"}, {"filename": "76-phys-port-name.conf", "parent": "/usr/lib/dracut/dracut.conf.d", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 117, "date": "Sep 13 11:19"}, {"filename": "99-microcode-override.conf", "parent": "/usr/lib/dracut/dracut.conf.d", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 277, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 4, "owner": "root", "group": "root", "size": 236, "date": "Oct 16 09:21"}, {"filename": "00bash", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 29, "date": "Oct 16 09:21"}, {"filename": "00systemd-bootchart", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 29, "date": "Oct 16 09:21"}, {"filename": "03modsign", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 57, "date": "Oct 16 09:21"}, {"filename": "03rescue", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 29, "date": "Oct 16 09:21"}, {"filename": "04watchdog", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 72, "date": "Oct 16 09:21"}, {"filename": "05busybox", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 29, "date": "Oct 16 09:21"}, {"filename": "05nss-softokn", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 29, "date": "Oct 16 09:21"}, {"filename": "10i18n", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 111, "date": "Oct 16 09:21"}, {"filename": "30convertfs", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 72, "date": "Oct 16 09:21"}, {"filename": "40network", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "45ifcfg", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 51, "date": "Oct 16 09:22"}, {"filename": "45url-lib", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 47, "date": "Oct 16 09:21"}, {"filename": "50drm", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 29, "date": "Oct 16 09:21"}, {"filename": "50plymouth", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 150, "date": "Oct 16 09:21"}, {"filename": "80cms", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 92, "date": "Oct 16 09:21"}, {"filename": "90bcache", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 29, "date": "Oct 16 09:21"}, {"filename": "90btrfs", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 129, "date": "Oct 16 09:21"}, {"filename": "90crypt", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 195, "date": "Oct 16 09:21"}, {"filename": "90dm", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 130, "date": "Oct 16 09:21"}, {"filename": "90dmraid", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 93, "date": "Oct 16 09:21"}, {"filename": "90dmsquash-live", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 258, "date": "Oct 16 09:21"}, {"filename": "90dmsquash-live-ntfs", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 29, "date": "Oct 16 09:21"}, {"filename": "90kernel-modules", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 73, "date": "Oct 16 09:21"}, {"filename": "90livenet", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 102, "date": "Oct 16 09:22"}, {"filename": "90lvm", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 88, "date": "Oct 16 09:21"}, {"filename": "90mdraid", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:21"}, {"filename": "90multipath", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 110, "date": "Oct 16 09:21"}, {"filename": "90qemu", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 29, "date": "Oct 16 09:21"}, {"filename": "90qemu-net", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 29, "date": "Oct 16 09:22"}, {"filename": "91crypt-gpg", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 53, "date": "Oct 16 09:21"}, {"filename": "91crypt-loop", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 54, "date": "Oct 16 09:21"}, {"filename": "95cifs", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 92, "date": "Oct 16 09:22"}, {"filename": "95dasd", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 50, "date": "Oct 16 09:21"}, {"filename": "95dasd_mod", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 54, "date": "Oct 16 09:21"}, {"filename": "95debug", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 29, "date": "Oct 16 09:21"}, {"filename": "95fcoe", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 151, "date": "Oct 16 09:22"}, {"filename": "95fcoe-uefi", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 54, "date": "Oct 16 09:22"}, {"filename": "95fstab-sys", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 49, "date": "Oct 16 09:21"}, {"filename": "95iscsi", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 119, "date": "Oct 16 09:22"}, {"filename": "95nbd", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 71, "date": "Oct 16 09:22"}, {"filename": "95nfs", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 139, "date": "Oct 16 09:22"}, {"filename": "95resume", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 69, "date": "Oct 16 09:21"}, {"filename": "95rootfs-block", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 120, "date": "Oct 16 09:21"}, {"filename": "95ssh-client", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 29, "date": "Oct 16 09:22"}, {"filename": "95terminfo", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 29, "date": "Oct 16 09:21"}, {"filename": "95udev-rules", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 122, "date": "Oct 16 09:21"}, {"filename": "95virtfs", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 102, "date": "Oct 16 09:21"}, {"filename": "95zfcp", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 50, "date": "Oct 16 09:21"}, {"filename": "95znet", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 49, "date": "Oct 16 09:22"}, {"filename": "97biosdevname", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 57, "date": "Oct 16 09:21"}, {"filename": "98ecryptfs", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 68, "date": "Oct 16 09:21"}, {"filename": "98pollcdrom", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 49, "date": "Oct 16 09:21"}, {"filename": "98selinux", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 58, "date": "Oct 16 09:21"}, {"filename": "98syslog", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 191, "date": "Oct 16 09:21"}, {"filename": "98systemd", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:21"}, {"filename": "98usrmount", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 49, "date": "Oct 16 09:21"}, {"filename": "99base", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 173, "date": "Oct 16 09:21"}, {"filename": "99fs-lib", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 46, "date": "Oct 16 09:21"}, {"filename": "99img-lib", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 47, "date": "Oct 16 09:21"}, {"filename": "99kdumpbase", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 227, "date": "Oct 16 09:22"}, {"filename": "99microcode_ctl-fw_dir_override", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 29, "date": "Oct 16 09:22"}, {"filename": "99shutdown", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 48, "date": "Oct 16 09:21"}, {"filename": "99uefi-lib", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 48, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/00bash", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 29, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/00bash", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/00bash", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 414, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/00systemd-bootchart", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 29, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/00systemd-bootchart", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/00systemd-bootchart", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 383, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/03modsign", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 57, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/03modsign", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "load-modsign-keys.sh", "parent": "/usr/lib/dracut/modules.d/03modsign", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 344, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/03modsign", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 790, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/03rescue", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 29, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/03rescue", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/03rescue", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 420, "date": "Sep 12 2013"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/04watchdog", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 72, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/04watchdog", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/04watchdog", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 2929, "date": "Aug 8 2019"}, {"filename": "watchdog.sh", "parent": "/usr/lib/dracut/modules.d/04watchdog", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 245, "date": "Sep 12 2013"}, {"filename": "watchdog-stop.sh", "parent": "/usr/lib/dracut/modules.d/04watchdog", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 61, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/05busybox", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 29, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/05busybox", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/05busybox", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 752, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/05nss-softokn", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 29, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/05nss-softokn", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/05nss-softokn", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 293, "date": "Aug 12 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/10i18n", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 111, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/10i18n", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "10-console.rules", "parent": "/usr/lib/dracut/modules.d/10i18n", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 168, "date": "Sep 12 2013"}, {"filename": "console_init.sh", "parent": "/usr/lib/dracut/modules.d/10i18n", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1722, "date": "Sep 12 2013"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/10i18n", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 7479, "date": "Aug 8 2019"}, {"filename": "parse-i18n.sh", "parent": "/usr/lib/dracut/modules.d/10i18n", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1263, "date": "Aug 8 2019"}, {"filename": "README", "parent": "/usr/lib/dracut/modules.d/10i18n", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4420, "date": "Sep 12 2013"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/30convertfs", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 72, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/30convertfs", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "convertfs.sh", "parent": "/usr/lib/dracut/modules.d/30convertfs", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 6113, "date": "Sep 12 2013"}, {"filename": "do-convertfs.sh", "parent": "/usr/lib/dracut/modules.d/30convertfs", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 304, "date": "Sep 12 2013"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/30convertfs", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 389, "date": "Sep 12 2013"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/40network", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/40network", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "dhclient.conf", "parent": "/usr/lib/dracut/modules.d/40network", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 262, "date": "Aug 8 2019"}, {"filename": "dhclient-script.sh", "parent": "/usr/lib/dracut/modules.d/40network", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 8518, "date": "Aug 8 2019"}, {"filename": "dhcp-root.sh", "parent": "/usr/lib/dracut/modules.d/40network", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 926, "date": "Sep 12 2013"}, {"filename": "ifname-genrules.sh", "parent": "/usr/lib/dracut/modules.d/40network", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1229, "date": "Sep 12 2013"}, {"filename": "ifup.sh", "parent": "/usr/lib/dracut/modules.d/40network", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 13858, "date": "Aug 8 2019"}, {"filename": "kill-dhclient.sh", "parent": "/usr/lib/dracut/modules.d/40network", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 362, "date": "Sep 12 2013"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/40network", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 4857, "date": "Aug 8 2019"}, {"filename": "net-genrules.sh", "parent": "/usr/lib/dracut/modules.d/40network", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 3756, "date": "Aug 8 2019"}, {"filename": "net-lib.sh", "parent": "/usr/lib/dracut/modules.d/40network", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 24587, "date": "Aug 8 2019"}, {"filename": "netroot.sh", "parent": "/usr/lib/dracut/modules.d/40network", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 2789, "date": "Aug 8 2019"}, {"filename": "parse-bond.sh", "parent": "/usr/lib/dracut/modules.d/40network", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 2008, "date": "Aug 8 2019"}, {"filename": "parse-bridge.sh", "parent": "/usr/lib/dracut/modules.d/40network", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1124, "date": "Aug 8 2019"}, {"filename": "parse-ibft.sh", "parent": "/usr/lib/dracut/modules.d/40network", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 393, "date": "Aug 8 2019"}, {"filename": "parse-ifname.sh", "parent": "/usr/lib/dracut/modules.d/40network", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 662, "date": "Sep 12 2013"}, {"filename": "parse-ip-opts.sh", "parent": "/usr/lib/dracut/modules.d/40network", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 4912, "date": "Aug 8 2019"}, {"filename": "parse-team.sh", "parent": "/usr/lib/dracut/modules.d/40network", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 983, "date": "Aug 8 2019"}, {"filename": "parse-vlan.sh", "parent": "/usr/lib/dracut/modules.d/40network", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 532, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/45ifcfg", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 51, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/45ifcfg", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/45ifcfg", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 321, "date": "Aug 8 2019"}, {"filename": "write-ifcfg.sh", "parent": "/usr/lib/dracut/modules.d/45ifcfg", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 8679, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/45url-lib", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 47, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/45url-lib", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/45url-lib", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1036, "date": "Aug 8 2019"}, {"filename": "url-lib.sh", "parent": "/usr/lib/dracut/modules.d/45url-lib", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 4015, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/50drm", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 29, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/50drm", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/50drm", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 2004, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/50plymouth", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 150, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/50plymouth", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/50plymouth", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 870, "date": "Aug 8 2019"}, {"filename": "plymouth-emergency.sh", "parent": "/usr/lib/dracut/modules.d/50plymouth", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 160, "date": "Sep 12 2013"}, {"filename": "plymouth-newroot.sh", "parent": "/usr/lib/dracut/modules.d/50plymouth", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 223, "date": "Sep 12 2013"}, {"filename": "plymouth-populate-initrd.sh", "parent": "/usr/lib/dracut/modules.d/50plymouth", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1506, "date": "Sep 12 2013"}, {"filename": "plymouth-pretrigger.sh", "parent": "/usr/lib/dracut/modules.d/50plymouth", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1193, "date": "Sep 12 2013"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/80cms", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 92, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/80cms", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "cmsifup.sh", "parent": "/usr/lib/dracut/modules.d/80cms", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 895, "date": "Aug 8 2019"}, {"filename": "cmssetup.sh", "parent": "/usr/lib/dracut/modules.d/80cms", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 6046, "date": "Aug 8 2019"}, {"filename": "cms-write-ifcfg.sh", "parent": "/usr/lib/dracut/modules.d/80cms", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 3269, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/80cms", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 905, "date": "Sep 12 2013"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/90bcache", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 29, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/90bcache", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/90bcache", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 790, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/90btrfs", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 129, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/90btrfs", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "80-btrfs.rules", "parent": "/usr/lib/dracut/modules.d/90btrfs", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 270, "date": "Sep 12 2013"}, {"filename": "btrfs_device_ready.sh", "parent": "/usr/lib/dracut/modules.d/90btrfs", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 577, "date": "Sep 12 2013"}, {"filename": "btrfs_finished.sh", "parent": "/usr/lib/dracut/modules.d/90btrfs", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 707, "date": "Sep 12 2013"}, {"filename": "btrfs_timeout.sh", "parent": "/usr/lib/dracut/modules.d/90btrfs", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 252, "date": "Sep 12 2013"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/90btrfs", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1159, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/90crypt", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 195, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/90crypt", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "crypt-cleanup.sh", "parent": "/usr/lib/dracut/modules.d/90crypt", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 551, "date": "Sep 12 2013"}, {"filename": "crypt-lib.sh", "parent": "/usr/lib/dracut/modules.d/90crypt", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 6898, "date": "Sep 12 2013"}, {"filename": "cryptroot-ask.sh", "parent": "/usr/lib/dracut/modules.d/90crypt", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 4282, "date": "Sep 12 2013"}, {"filename": "crypt-run-generator.sh", "parent": "/usr/lib/dracut/modules.d/90crypt", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 887, "date": "Sep 12 2013"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/90crypt", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 3023, "date": "Aug 8 2019"}, {"filename": "parse-crypt.sh", "parent": "/usr/lib/dracut/modules.d/90crypt", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 3276, "date": "Sep 12 2013"}, {"filename": "parse-keydev.sh", "parent": "/usr/lib/dracut/modules.d/90crypt", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1260, "date": "Sep 12 2013"}, {"filename": "probe-keydev.sh", "parent": "/usr/lib/dracut/modules.d/90crypt", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 492, "date": "Sep 12 2013"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/90dm", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 130, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/90dm", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "11-dm.rules", "parent": "/usr/lib/dracut/modules.d/90dm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 142, "date": "Sep 12 2013"}, {"filename": "59-persistent-storage-dm.rules", "parent": "/usr/lib/dracut/modules.d/90dm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 670, "date": "Sep 12 2013"}, {"filename": "dm-pre-udev.sh", "parent": "/usr/lib/dracut/modules.d/90dm", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 211, "date": "Sep 12 2013"}, {"filename": "dm-shutdown.sh", "parent": "/usr/lib/dracut/modules.d/90dm", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 465, "date": "Sep 12 2013"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/90dm", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1052, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/90dmraid", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 93, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/90dmraid", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "61-dmraid-imsm.rules", "parent": "/usr/lib/dracut/modules.d/90dmraid", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 986, "date": "Aug 8 2019"}, {"filename": "dmraid.sh", "parent": "/usr/lib/dracut/modules.d/90dmraid", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1411, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/90dmraid", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 2118, "date": "Aug 8 2019"}, {"filename": "parse-dm.sh", "parent": "/usr/lib/dracut/modules.d/90dmraid", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 935, "date": "Sep 12 2013"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/90dmsquash-live", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 258, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/90dmsquash-live", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "apply-live-updates.sh", "parent": "/usr/lib/dracut/modules.d/90dmsquash-live", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 492, "date": "Sep 12 2013"}, {"filename": "checkisomd5@.service", "parent": "/usr/lib/dracut/modules.d/90dmsquash-live", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 268, "date": "Aug 8 2019"}, {"filename": "dmsquash-live-genrules.sh", "parent": "/usr/lib/dracut/modules.d/90dmsquash-live", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 718, "date": "Aug 8 2019"}, {"filename": "dmsquash-liveiso-genrules.sh", "parent": "/usr/lib/dracut/modules.d/90dmsquash-live", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 398, "date": "Aug 8 2019"}, {"filename": "dmsquash-live-root.sh", "parent": "/usr/lib/dracut/modules.d/90dmsquash-live", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 10480, "date": "Aug 8 2019"}, {"filename": "iso-scan.sh", "parent": "/usr/lib/dracut/modules.d/90dmsquash-live", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 901, "date": "Sep 12 2013"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/90dmsquash-live", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1197, "date": "Aug 8 2019"}, {"filename": "parse-dmsquash-live.sh", "parent": "/usr/lib/dracut/modules.d/90dmsquash-live", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1690, "date": "Aug 8 2019"}, {"filename": "parse-iso-scan.sh", "parent": "/usr/lib/dracut/modules.d/90dmsquash-live", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 309, "date": "Sep 12 2013"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/90dmsquash-live-ntfs", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 29, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/90dmsquash-live-ntfs", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/90dmsquash-live-ntfs", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 300, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/90kernel-modules", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 73, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/90kernel-modules", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "insmodpost.sh", "parent": "/usr/lib/dracut/modules.d/90kernel-modules", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 303, "date": "Sep 12 2013"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/90kernel-modules", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 3755, "date": "Aug 8 2019"}, {"filename": "parse-kernel.sh", "parent": "/usr/lib/dracut/modules.d/90kernel-modules", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1031, "date": "Sep 12 2013"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/90livenet", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 102, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/90livenet", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "fetch-liveupdate.sh", "parent": "/usr/lib/dracut/modules.d/90livenet", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 857, "date": "Sep 12 2013"}, {"filename": "livenetroot.sh", "parent": "/usr/lib/dracut/modules.d/90livenet", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 672, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/90livenet", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 364, "date": "Sep 12 2013"}, {"filename": "parse-livenet.sh", "parent": "/usr/lib/dracut/modules.d/90livenet", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 974, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/90lvm", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 88, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/90lvm", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "64-lvm.rules", "parent": "/usr/lib/dracut/modules.d/90lvm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 776, "date": "Sep 12 2013"}, {"filename": "lvm_scan.sh", "parent": "/usr/lib/dracut/modules.d/90lvm", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 3670, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/90lvm", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 4874, "date": "Aug 8 2019"}, {"filename": "parse-lvm.sh", "parent": "/usr/lib/dracut/modules.d/90lvm", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 596, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/90mdraid", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/90mdraid", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "59-persistent-storage-md.rules", "parent": "/usr/lib/dracut/modules.d/90mdraid", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 843, "date": "Aug 8 2019"}, {"filename": "65-md-incremental-imsm.rules", "parent": "/usr/lib/dracut/modules.d/90mdraid", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1476, "date": "Sep 12 2013"}, {"filename": "mdmon-pre-shutdown.sh", "parent": "/usr/lib/dracut/modules.d/90mdraid", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 338, "date": "Sep 12 2013"}, {"filename": "mdmon-pre-udev.sh", "parent": "/usr/lib/dracut/modules.d/90mdraid", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 240, "date": "Sep 12 2013"}, {"filename": "md-noddf.sh", "parent": "/usr/lib/dracut/modules.d/90mdraid", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 197, "date": "Sep 12 2013"}, {"filename": "md-noimsm.sh", "parent": "/usr/lib/dracut/modules.d/90mdraid", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 199, "date": "Sep 12 2013"}, {"filename": "mdraid-cleanup.sh", "parent": "/usr/lib/dracut/modules.d/90mdraid", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 708, "date": "Sep 12 2013"}, {"filename": "mdraid-needshutdown.sh", "parent": "/usr/lib/dracut/modules.d/90mdraid", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 265, "date": "Sep 12 2013"}, {"filename": "mdraid_start.sh", "parent": "/usr/lib/dracut/modules.d/90mdraid", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1951, "date": "Aug 8 2019"}, {"filename": "mdraid-waitclean.sh", "parent": "/usr/lib/dracut/modules.d/90mdraid", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 910, "date": "Sep 12 2013"}, {"filename": "md-shutdown.sh", "parent": "/usr/lib/dracut/modules.d/90mdraid", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 672, "date": "Sep 12 2013"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/90mdraid", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 4088, "date": "Aug 8 2019"}, {"filename": "parse-md.sh", "parent": "/usr/lib/dracut/modules.d/90mdraid", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 2175, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/90multipath", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 110, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/90multipath", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/90multipath", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 3792, "date": "Aug 8 2019"}, {"filename": "multipathd-needshutdown.sh", "parent": "/usr/lib/dracut/modules.d/90multipath", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 214, "date": "Sep 12 2013"}, {"filename": "multipathd.sh", "parent": "/usr/lib/dracut/modules.d/90multipath", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 301, "date": "Sep 12 2013"}, {"filename": "multipathd-stop.sh", "parent": "/usr/lib/dracut/modules.d/90multipath", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 347, "date": "Sep 12 2013"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/90qemu", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 29, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/90qemu", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/90qemu", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 931, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/90qemu-net", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 29, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/90qemu-net", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/90qemu-net", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 747, "date": "Sep 12 2013"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/91crypt-gpg", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 53, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/91crypt-gpg", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "crypt-gpg-lib.sh", "parent": "/usr/lib/dracut/modules.d/91crypt-gpg", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1076, "date": "Sep 12 2013"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/91crypt-gpg", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 348, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/91crypt-loop", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 54, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/91crypt-loop", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "crypt-loop-lib.sh", "parent": "/usr/lib/dracut/modules.d/91crypt-loop", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1615, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/91crypt-loop", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 416, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/95cifs", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 92, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/95cifs", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "cifs-lib.sh", "parent": "/usr/lib/dracut/modules.d/95cifs", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1079, "date": "Sep 12 2013"}, {"filename": "cifsroot.sh", "parent": "/usr/lib/dracut/modules.d/95cifs", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 719, "date": "Sep 12 2013"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/95cifs", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1178, "date": "Aug 8 2019"}, {"filename": "parse-cifsroot.sh", "parent": "/usr/lib/dracut/modules.d/95cifs", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1292, "date": "Sep 12 2013"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/95dasd", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 50, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/95dasd", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/95dasd", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 645, "date": "Aug 8 2019"}, {"filename": "parse-dasd.sh", "parent": "/usr/lib/dracut/modules.d/95dasd", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 293, "date": "Sep 12 2013"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/95dasd_mod", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 54, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/95dasd_mod", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/95dasd_mod", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 497, "date": "Aug 8 2019"}, {"filename": "parse-dasd-mod.sh", "parent": "/usr/lib/dracut/modules.d/95dasd_mod", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 459, "date": "Sep 12 2013"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/95debug", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 29, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/95debug", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/95debug", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 421, "date": "Sep 12 2013"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/95fcoe", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 151, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/95fcoe", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "cleanup-fcoe.sh", "parent": "/usr/lib/dracut/modules.d/95fcoe", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 363, "date": "Aug 8 2019"}, {"filename": "fcoe-edd.sh", "parent": "/usr/lib/dracut/modules.d/95fcoe", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1273, "date": "Aug 8 2019"}, {"filename": "fcoe-genrules.sh", "parent": "/usr/lib/dracut/modules.d/95fcoe", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 817, "date": "Aug 8 2019"}, {"filename": "fcoe-up.sh", "parent": "/usr/lib/dracut/modules.d/95fcoe", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 2356, "date": "Aug 8 2019"}, {"filename": "lldpad.sh", "parent": "/usr/lib/dracut/modules.d/95fcoe", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 363, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/95fcoe", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 3006, "date": "Aug 8 2019"}, {"filename": "parse-fcoe.sh", "parent": "/usr/lib/dracut/modules.d/95fcoe", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1799, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/95fcoe-uefi", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 54, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/95fcoe-uefi", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/95fcoe-uefi", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 733, "date": "Aug 8 2019"}, {"filename": "parse-uefifcoe.sh", "parent": "/usr/lib/dracut/modules.d/95fcoe-uefi", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1032, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/95fstab-sys", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 49, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/95fstab-sys", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/95fstab-sys", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 358, "date": "Sep 12 2013"}, {"filename": "mount-sys.sh", "parent": "/usr/lib/dracut/modules.d/95fstab-sys", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1377, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/95iscsi", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 119, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/95iscsi", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "cleanup-iscsi.sh", "parent": "/usr/lib/dracut/modules.d/95iscsi", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 198, "date": "Aug 8 2019"}, {"filename": "iscsiroot.sh", "parent": "/usr/lib/dracut/modules.d/95iscsi", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 10057, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/95iscsi", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 5614, "date": "Aug 8 2019"}, {"filename": "mount-lun.sh", "parent": "/usr/lib/dracut/modules.d/95iscsi", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 442, "date": "Sep 12 2013"}, {"filename": "parse-iscsiroot.sh", "parent": "/usr/lib/dracut/modules.d/95iscsi", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 5318, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/95nbd", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 71, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/95nbd", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/95nbd", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 896, "date": "Aug 8 2019"}, {"filename": "nbdroot.sh", "parent": "/usr/lib/dracut/modules.d/95nbd", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 3114, "date": "Aug 8 2019"}, {"filename": "parse-nbdroot.sh", "parent": "/usr/lib/dracut/modules.d/95nbd", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1688, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/95nfs", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 139, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/95nfs", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/95nfs", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 2624, "date": "Aug 8 2019"}, {"filename": "nfs-lib.sh", "parent": "/usr/lib/dracut/modules.d/95nfs", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 4757, "date": "Aug 8 2019"}, {"filename": "nfsroot-cleanup.sh", "parent": "/usr/lib/dracut/modules.d/95nfs", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 955, "date": "Sep 12 2013"}, {"filename": "nfsroot.sh", "parent": "/usr/lib/dracut/modules.d/95nfs", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 825, "date": "Aug 8 2019"}, {"filename": "nfs-start-rpc.sh", "parent": "/usr/lib/dracut/modules.d/95nfs", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 929, "date": "Sep 12 2013"}, {"filename": "parse-nfsroot.sh", "parent": "/usr/lib/dracut/modules.d/95nfs", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 3358, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/95resume", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 69, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/95resume", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/95resume", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 993, "date": "Aug 8 2019"}, {"filename": "parse-resume.sh", "parent": "/usr/lib/dracut/modules.d/95resume", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 3302, "date": "Sep 12 2013"}, {"filename": "resume.sh", "parent": "/usr/lib/dracut/modules.d/95resume", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 670, "date": "Sep 12 2013"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/95rootfs-block", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 120, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/95rootfs-block", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "block-genrules.sh", "parent": "/usr/lib/dracut/modules.d/95rootfs-block", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 579, "date": "Sep 12 2013"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/95rootfs-block", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1719, "date": "Aug 8 2019"}, {"filename": "mount-root.sh", "parent": "/usr/lib/dracut/modules.d/95rootfs-block", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 4514, "date": "Sep 12 2013"}, {"filename": "parse-block.sh", "parent": "/usr/lib/dracut/modules.d/95rootfs-block", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1034, "date": "Sep 12 2013"}, {"filename": "rootfallback.sh", "parent": "/usr/lib/dracut/modules.d/95rootfs-block", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1352, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/95ssh-client", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 29, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/95ssh-client", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/95ssh-client", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1830, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/95terminfo", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 29, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/95terminfo", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/95terminfo", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 643, "date": "Sep 12 2013"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/95udev-rules", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 122, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/95udev-rules", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "59-persistent-storage.rules", "parent": "/usr/lib/dracut/modules.d/95udev-rules", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 276, "date": "Sep 12 2013"}, {"filename": "61-persistent-storage.rules", "parent": "/usr/lib/dracut/modules.d/95udev-rules", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1020, "date": "Sep 12 2013"}, {"filename": "load-modules.sh", "parent": "/usr/lib/dracut/modules.d/95udev-rules", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 188, "date": "Sep 12 2013"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/95udev-rules", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 3074, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/95virtfs", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 102, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/95virtfs", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/95virtfs", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1181, "date": "Aug 8 2019"}, {"filename": "mount-virtfs.sh", "parent": "/usr/lib/dracut/modules.d/95virtfs", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1956, "date": "Sep 12 2013"}, {"filename": "parse-virtfs.sh", "parent": "/usr/lib/dracut/modules.d/95virtfs", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 229, "date": "Aug 8 2019"}, {"filename": "virtfs-generator.sh", "parent": "/usr/lib/dracut/modules.d/95virtfs", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 922, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/95zfcp", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 50, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/95zfcp", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/95zfcp", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 681, "date": "Aug 8 2019"}, {"filename": "parse-zfcp.sh", "parent": "/usr/lib/dracut/modules.d/95zfcp", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 349, "date": "Sep 12 2013"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/95znet", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 49, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/95znet", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/95znet", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 555, "date": "Aug 8 2019"}, {"filename": "parse-ccw.sh", "parent": "/usr/lib/dracut/modules.d/95znet", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 259, "date": "Sep 12 2013"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/97biosdevname", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 57, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/97biosdevname", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/97biosdevname", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 340, "date": "Aug 8 2019"}, {"filename": "parse-biosdevname.sh", "parent": "/usr/lib/dracut/modules.d/97biosdevname", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 418, "date": "Sep 12 2013"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/98ecryptfs", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 68, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/98ecryptfs", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "ecryptfs-mount.sh", "parent": "/usr/lib/dracut/modules.d/98ecryptfs", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 2852, "date": "Sep 12 2013"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/98ecryptfs", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 310, "date": "Sep 12 2013"}, {"filename": "README", "parent": "/usr/lib/dracut/modules.d/98ecryptfs", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2343, "date": "Sep 12 2013"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/98pollcdrom", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 49, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/98pollcdrom", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/98pollcdrom", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 252, "date": "Sep 12 2013"}, {"filename": "pollcdrom.sh", "parent": "/usr/lib/dracut/modules.d/98pollcdrom", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 745, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/98selinux", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 58, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/98selinux", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/98selinux", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 282, "date": "Sep 12 2013"}, {"filename": "selinux-loadpolicy.sh", "parent": "/usr/lib/dracut/modules.d/98selinux", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 2336, "date": "Sep 12 2013"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/98syslog", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 191, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/98syslog", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/98syslog", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1238, "date": "Sep 12 2013"}, {"filename": "parse-syslog-opts.sh", "parent": "/usr/lib/dracut/modules.d/98syslog", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 755, "date": "Sep 12 2013"}, {"filename": "README", "parent": "/usr/lib/dracut/modules.d/98syslog", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 832, "date": "Sep 12 2013"}, {"filename": "rsyslog.conf", "parent": "/usr/lib/dracut/modules.d/98syslog", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 820, "date": "Sep 12 2013"}, {"filename": "rsyslogd-start.sh", "parent": "/usr/lib/dracut/modules.d/98syslog", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 856, "date": "Sep 12 2013"}, {"filename": "rsyslogd-stop.sh", "parent": "/usr/lib/dracut/modules.d/98syslog", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 342, "date": "Sep 12 2013"}, {"filename": "syslog-cleanup.sh", "parent": "/usr/lib/dracut/modules.d/98syslog", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 517, "date": "Sep 12 2013"}, {"filename": "syslog-genrules.sh", "parent": "/usr/lib/dracut/modules.d/98syslog", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1144, "date": "Sep 12 2013"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "dracut-cmdline-ask.service", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 978, "date": "Aug 8 2019"}, {"filename": "dracut-cmdline-ask.sh", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 422, "date": "Aug 8 2019"}, {"filename": "dracut-cmdline.service", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1160, "date": "Aug 8 2019"}, {"filename": "dracut-cmdline.service.8", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1553, "date": "Sep 12 2013"}, {"filename": "dracut-cmdline.service.8.asc", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 442, "date": "Sep 12 2013"}, {"filename": "dracut-cmdline.sh", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 2714, "date": "Aug 8 2019"}, {"filename": "dracut-emergency.service", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 974, "date": "Aug 8 2019"}, {"filename": "dracut-emergency.sh", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1342, "date": "Aug 8 2019"}, {"filename": "dracut-initqueue.service", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1399, "date": "Aug 8 2019"}, {"filename": "dracut-initqueue.service.8", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1548, "date": "Sep 12 2013"}, {"filename": "dracut-initqueue.service.8.asc", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 439, "date": "Sep 12 2013"}, {"filename": "dracut-initqueue.sh", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 2223, "date": "Aug 8 2019"}, {"filename": "dracut-mount.service", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1026, "date": "Aug 8 2019"}, {"filename": "dracut-mount.service.8", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1529, "date": "Sep 12 2013"}, {"filename": "dracut-mount.service.8.asc", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 416, "date": "Sep 12 2013"}, {"filename": "dracut-mount.sh", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1170, "date": "Sep 12 2013"}, {"filename": "dracut-pre-mount.service", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1058, "date": "Aug 8 2019"}, {"filename": "dracut-pre-mount.service.8", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1544, "date": "Sep 12 2013"}, {"filename": "dracut-pre-mount.service.8.asc", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 434, "date": "Sep 12 2013"}, {"filename": "dracut-pre-mount.sh", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 622, "date": "Aug 8 2019"}, {"filename": "dracut-pre-pivot.service", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1058, "date": "Aug 8 2019"}, {"filename": "dracut-pre-pivot.service.8", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1539, "date": "Sep 12 2013"}, {"filename": "dracut-pre-pivot.service.8.asc", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 429, "date": "Sep 12 2013"}, {"filename": "dracut-pre-pivot.sh", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1175, "date": "Aug 8 2019"}, {"filename": "dracut-pre-trigger.service", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1170, "date": "Aug 8 2019"}, {"filename": "dracut-pre-trigger.service.8", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1548, "date": "Sep 12 2013"}, {"filename": "dracut-pre-trigger.service.8.asc", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 440, "date": "Sep 12 2013"}, {"filename": "dracut-pre-trigger.sh", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 588, "date": "Aug 8 2019"}, {"filename": "dracut-pre-udev.service", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1202, "date": "Aug 8 2019"}, {"filename": "dracut-pre-udev.service.8", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1535, "date": "Sep 12 2013"}, {"filename": "dracut-pre-udev.service.8.asc", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 424, "date": "Sep 12 2013"}, {"filename": "dracut-pre-udev.sh", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1523, "date": "Sep 12 2013"}, {"filename": "dracut-shutdown.service", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 677, "date": "Aug 8 2019"}, {"filename": "dracut-shutdown.service.8", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 3607, "date": "Sep 12 2013"}, {"filename": "dracut-shutdown.service.8.asc", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1689, "date": "Sep 12 2013"}, {"filename": "dracut-tmpfiles.conf", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 135, "date": "Aug 8 2019"}, {"filename": "emergency.service", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 980, "date": "Aug 8 2019"}, {"filename": "initrd.target", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 247, "date": "Sep 12 2013"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 10225, "date": "Aug 8 2019"}, {"filename": "rescue.service", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 877, "date": "Sep 12 2013"}, {"filename": "rootfs-generator.sh", "parent": "/usr/lib/dracut/modules.d/98systemd", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 3746, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/98usrmount", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 49, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/98usrmount", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/98usrmount", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 452, "date": "Aug 8 2019"}, {"filename": "mount-usr.sh", "parent": "/usr/lib/dracut/modules.d/98usrmount", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 3696, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/99base", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 173, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/99base", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "dracut-lib.sh", "parent": "/usr/lib/dracut/modules.d/99base", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 32861, "date": "Aug 8 2019"}, {"filename": "initqueue.sh", "parent": "/usr/lib/dracut/modules.d/99base", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1208, "date": "Aug 8 2019"}, {"filename": "init.sh", "parent": "/usr/lib/dracut/modules.d/99base", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 11467, "date": "Aug 8 2019"}, {"filename": "loginit.sh", "parent": "/usr/lib/dracut/modules.d/99base", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 584, "date": "Sep 12 2013"}, {"filename": "memtrace-ko.sh", "parent": "/usr/lib/dracut/modules.d/99base", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 6052, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/99base", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 3862, "date": "Aug 8 2019"}, {"filename": "parse-root-opts.sh", "parent": "/usr/lib/dracut/modules.d/99base", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 356, "date": "Sep 12 2013"}, {"filename": "rdsosreport.sh", "parent": "/usr/lib/dracut/modules.d/99base", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 942, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/99fs-lib", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 46, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/99fs-lib", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "fs-lib.sh", "parent": "/usr/lib/dracut/modules.d/99fs-lib", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 6347, "date": "Sep 12 2013"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/99fs-lib", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1674, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/99img-lib", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 47, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/99img-lib", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "img-lib.sh", "parent": "/usr/lib/dracut/modules.d/99img-lib", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 2182, "date": "Sep 12 2013"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/99img-lib", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 354, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/99kdumpbase", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 227, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/99kdumpbase", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "kdump-capture.service", "parent": "/usr/lib/dracut/modules.d/99kdumpbase", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 941, "date": "Aug 8 2019"}, {"filename": "kdump-emergency.service", "parent": "/usr/lib/dracut/modules.d/99kdumpbase", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 905, "date": "Aug 8 2019"}, {"filename": "kdump-emergency.target", "parent": "/usr/lib/dracut/modules.d/99kdumpbase", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 451, "date": "Aug 8 2019"}, {"filename": "kdump-error-handler.service", "parent": "/usr/lib/dracut/modules.d/99kdumpbase", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 993, "date": "Aug 8 2019"}, {"filename": "kdump-error-handler.sh", "parent": "/usr/lib/dracut/modules.d/99kdumpbase", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 145, "date": "Aug 8 2019"}, {"filename": "kdump.sh", "parent": "/usr/lib/dracut/modules.d/99kdumpbase", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 4764, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/99kdumpbase", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 25161, "date": "Aug 8 2019"}, {"filename": "monitor_dd_progress", "parent": "/usr/lib/dracut/modules.d/99kdumpbase", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 482, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/99microcode_ctl-fw_dir_override", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 29, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/99microcode_ctl-fw_dir_override", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/99microcode_ctl-fw_dir_override", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 4218, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/99shutdown", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 48, "date": "Oct 16 09:21"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/99shutdown", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/99shutdown", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 632, "date": "Aug 8 2019"}, {"filename": "shutdown.sh", "parent": "/usr/lib/dracut/modules.d/99shutdown", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 3117, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/99uefi-lib", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 48, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/99uefi-lib", "flags": "drwxr-xr-x.", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/99uefi-lib", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 239, "date": "Aug 8 2019"}, {"filename": "uefi-lib.sh", "parent": "/usr/lib/dracut/modules.d/99uefi-lib", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 4851, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firewalld", "flags": "drwxr-xr-x.", "links": 7, "owner": "root", "group": "root", "size": 81, "date": "Oct 16 09:23"}, {"filename": "..", "parent": "/usr/lib/firewalld", "flags": "dr-xr-xr-x.", "links": 29, "owner": "root", "group": "root", "size": 4096, "date": "Nov 16 14:29"}, {"filename": "helpers", "parent": "/usr/lib/firewalld", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 224, "date": "Oct 16 09:22"}, {"filename": "icmptypes", "parent": "/usr/lib/firewalld", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "ipsets", "parent": "/usr/lib/firewalld", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 20, "date": "Oct 16 09:22"}, {"filename": "services", "parent": "/usr/lib/firewalld", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 8192, "date": "Oct 16 09:22"}, {"filename": "zones", "parent": "/usr/lib/firewalld", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 163, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firewalld/helpers", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 224, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firewalld/helpers", "flags": "drwxr-xr-x.", "links": 7, "owner": "root", "group": "root", "size": 81, "date": "Oct 16 09:23"}, {"filename": "amanda.xml", "parent": "/usr/lib/firewalld/helpers", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 125, "date": "Sep 13 11:02"}, {"filename": "ftp.xml", "parent": "/usr/lib/firewalld/helpers", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 119, "date": "Sep 13 11:02"}, {"filename": "h323.xml", "parent": "/usr/lib/firewalld/helpers", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 85, "date": "Sep 13 11:02"}, {"filename": "irc.xml", "parent": "/usr/lib/firewalld/helpers", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 134, "date": "Sep 13 11:02"}, {"filename": "netbios-ns.xml", "parent": "/usr/lib/firewalld/helpers", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 141, "date": "Sep 13 11:02"}, {"filename": "pptp.xml", "parent": "/usr/lib/firewalld/helpers", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 136, "date": "Sep 13 11:02"}, {"filename": "proto-gre.xml", "parent": "/usr/lib/firewalld/helpers", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 90, "date": "Sep 13 11:02"}, {"filename": "Q.931.xml", "parent": "/usr/lib/firewalld/helpers", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 122, "date": "Sep 13 11:02"}, {"filename": "RAS.xml", "parent": "/usr/lib/firewalld/helpers", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 122, "date": "Sep 13 11:02"}, {"filename": "sane.xml", "parent": "/usr/lib/firewalld/helpers", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 122, "date": "Sep 13 11:02"}, {"filename": "sip.xml", "parent": "/usr/lib/firewalld/helpers", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 158, "date": "Sep 13 11:02"}, {"filename": "snmp.xml", "parent": "/usr/lib/firewalld/helpers", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 135, "date": "Sep 13 11:02"}, {"filename": "tftp.xml", "parent": "/usr/lib/firewalld/helpers", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 120, "date": "Sep 13 11:02"}, {"filename": ".", "parent": "/usr/lib/firewalld/icmptypes", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firewalld/icmptypes", "flags": "drwxr-xr-x.", "links": 7, "owner": "root", "group": "root", "size": 81, "date": "Oct 16 09:23"}, {"filename": "address-unreachable.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 385, "date": "Sep 13 11:02"}, {"filename": "bad-header.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 258, "date": "Sep 13 11:02"}, {"filename": "beyond-scope.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 294, "date": "Sep 13 11:02"}, {"filename": "communication-prohibited.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 279, "date": "Sep 13 11:02"}, {"filename": "destination-unreachable.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 222, "date": "Sep 13 11:02"}, {"filename": "echo-reply.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 173, "date": "Sep 13 11:02"}, {"filename": "echo-request.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 210, "date": "Sep 13 11:02"}, {"filename": "failed-policy.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 261, "date": "Sep 13 11:02"}, {"filename": "fragmentation-needed.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 280, "date": "Sep 13 11:02"}, {"filename": "host-precedence-violation.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 266, "date": "Sep 13 11:02"}, {"filename": "host-prohibited.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 257, "date": "Sep 13 11:02"}, {"filename": "host-redirect.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 242, "date": "Sep 13 11:02"}, {"filename": "host-unknown.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 239, "date": "Sep 13 11:02"}, {"filename": "host-unreachable.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 247, "date": "Sep 13 11:02"}, {"filename": "ip-header-bad.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 229, "date": "Sep 13 11:02"}, {"filename": "neighbour-advertisement.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 355, "date": "Sep 13 11:02"}, {"filename": "neighbour-solicitation.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 457, "date": "Sep 13 11:02"}, {"filename": "network-prohibited.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 250, "date": "Sep 13 11:02"}, {"filename": "network-redirect.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 248, "date": "Sep 13 11:02"}, {"filename": "network-unknown.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 239, "date": "Sep 13 11:02"}, {"filename": "network-unreachable.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 247, "date": "Sep 13 11:02"}, {"filename": "no-route.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 239, "date": "Sep 13 11:02"}, {"filename": "packet-too-big.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 328, "date": "Sep 13 11:02"}, {"filename": "parameter-problem.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 225, "date": "Sep 13 11:02"}, {"filename": "port-unreachable.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 233, "date": "Sep 13 11:02"}, {"filename": "precedence-cutoff.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 256, "date": "Sep 13 11:02"}, {"filename": "protocol-unreachable.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 249, "date": "Sep 13 11:02"}, {"filename": "redirect.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 185, "date": "Sep 13 11:02"}, {"filename": "reject-route.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 244, "date": "Sep 13 11:02"}, {"filename": "required-option-missing.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 241, "date": "Sep 13 11:02"}, {"filename": "router-advertisement.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 227, "date": "Sep 13 11:02"}, {"filename": "router-solicitation.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 223, "date": "Sep 13 11:02"}, {"filename": "source-quench.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 248, "date": "Sep 13 11:02"}, {"filename": "source-route-failed.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 236, "date": "Sep 13 11:02"}, {"filename": "time-exceeded.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 253, "date": "Sep 13 11:02"}, {"filename": "timestamp-reply.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 233, "date": "Sep 13 11:02"}, {"filename": "timestamp-request.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 228, "date": "Sep 13 11:02"}, {"filename": "tos-host-redirect.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 258, "date": "Sep 13 11:02"}, {"filename": "tos-host-unreachable.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 257, "date": "Sep 13 11:02"}, {"filename": "tos-network-redirect.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 272, "date": "Sep 13 11:02"}, {"filename": "tos-network-unreachable.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 269, "date": "Sep 13 11:02"}, {"filename": "ttl-zero-during-reassembly.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 293, "date": "Sep 13 11:02"}, {"filename": "ttl-zero-during-transit.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 256, "date": "Sep 13 11:02"}, {"filename": "unknown-header-type.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 259, "date": "Sep 13 11:02"}, {"filename": "unknown-option.xml", "parent": "/usr/lib/firewalld/icmptypes", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 249, "date": "Sep 13 11:02"}, {"filename": ".", "parent": "/usr/lib/firewalld/ipsets", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 20, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firewalld/ipsets", "flags": "drwxr-xr-x.", "links": 7, "owner": "root", "group": "root", "size": 81, "date": "Oct 16 09:23"}, {"filename": "README", "parent": "/usr/lib/firewalld/ipsets", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 29, "date": "Sep 13 11:02"}, {"filename": ".", "parent": "/usr/lib/firewalld/services", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 8192, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firewalld/services", "flags": "drwxr-xr-x.", "links": 7, "owner": "root", "group": "root", "size": 81, "date": "Oct 16 09:23"}, {"filename": "amanda-client.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 412, "date": "Sep 13 11:02"}, {"filename": "amanda-k5-client.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 447, "date": "Sep 13 11:02"}, {"filename": "amqps.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 283, "date": "Sep 13 11:02"}, {"filename": "amqp.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 273, "date": "Sep 13 11:02"}, {"filename": "apcupsd.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 285, "date": "Sep 13 11:02"}, {"filename": "audit.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 301, "date": "Sep 13 11:02"}, {"filename": "bacula-client.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 320, "date": "Sep 13 11:02"}, {"filename": "bacula.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 346, "date": "Sep 13 11:02"}, {"filename": "bgp.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 339, "date": "Sep 13 11:02"}, {"filename": "bitcoin-rpc.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 275, "date": "Sep 13 11:02"}, {"filename": "bitcoin-testnet-rpc.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 307, "date": "Sep 13 11:02"}, {"filename": "bitcoin-testnet.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 281, "date": "Sep 13 11:02"}, {"filename": "bitcoin.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 244, "date": "Sep 13 11:02"}, {"filename": "ceph-mon.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 294, "date": "Sep 13 11:02"}, {"filename": "ceph.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 329, "date": "Sep 13 11:02"}, {"filename": "cfengine.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 168, "date": "Sep 13 11:02"}, {"filename": "condor-collector.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 260, "date": "Sep 13 11:02"}, {"filename": "ctdb.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 296, "date": "Sep 13 11:02"}, {"filename": "dhcpv6-client.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 305, "date": "Sep 13 11:02"}, {"filename": "dhcpv6.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 234, "date": "Sep 13 11:02"}, {"filename": "dhcp.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 227, "date": "Sep 13 11:02"}, {"filename": "distcc.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 205, "date": "Sep 13 11:02"}, {"filename": "dns.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 346, "date": "Sep 13 11:02"}, {"filename": "docker-registry.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 374, "date": "Sep 13 11:02"}, {"filename": "docker-swarm.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 391, "date": "Sep 13 11:02"}, {"filename": "dropbox-lansync.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 228, "date": "Sep 13 11:02"}, {"filename": "elasticsearch.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 338, "date": "Sep 13 11:02"}, {"filename": "etcd-client.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 304, "date": "Sep 13 11:02"}, {"filename": "etcd-server.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 304, "date": "Sep 13 11:02"}, {"filename": "finger.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 224, "date": "Sep 13 11:02"}, {"filename": "freeipa-ldaps.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 836, "date": "Sep 13 11:02"}, {"filename": "freeipa-ldap.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 836, "date": "Sep 13 11:02"}, {"filename": "freeipa-replication.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 315, "date": "Sep 13 11:02"}, {"filename": "freeipa-trust.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 629, "date": "Sep 13 11:02"}, {"filename": "ftp.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 374, "date": "Sep 13 11:02"}, {"filename": "ganglia-client.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 184, "date": "Sep 13 11:02"}, {"filename": "ganglia-master.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 176, "date": "Sep 13 11:02"}, {"filename": "git.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 212, "date": "Sep 13 11:02"}, {"filename": "gre.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 132, "date": "Sep 13 11:02"}, {"filename": "high-availability.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 608, "date": "Sep 13 11:02"}, {"filename": "https.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 448, "date": "Sep 13 11:02"}, {"filename": "http.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 353, "date": "Sep 13 11:02"}, {"filename": "imaps.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 372, "date": "Sep 13 11:02"}, {"filename": "imap.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 327, "date": "Sep 13 11:02"}, {"filename": "ipp-client.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 454, "date": "Sep 13 11:02"}, {"filename": "ipp.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 427, "date": "Sep 13 11:02"}, {"filename": "ipsec.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 554, "date": "Sep 13 11:02"}, {"filename": "ircs.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 255, "date": "Sep 13 11:02"}, {"filename": "irc.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 247, "date": "Sep 13 11:02"}, {"filename": "iscsi-target.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 264, "date": "Sep 13 11:02"}, {"filename": "isns.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 358, "date": "Sep 13 11:02"}, {"filename": "jenkins.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 213, "date": "Sep 13 11:02"}, {"filename": "kadmin.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 182, "date": "Sep 13 11:02"}, {"filename": "kerberos.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 233, "date": "Sep 13 11:02"}, {"filename": "kibana.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 384, "date": "Sep 13 11:02"}, {"filename": "klogin.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 249, "date": "Sep 13 11:02"}, {"filename": "kpasswd.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 221, "date": "Sep 13 11:02"}, {"filename": "kprop.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 182, "date": "Sep 13 11:02"}, {"filename": "kshell.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 242, "date": "Sep 13 11:02"}, {"filename": "ldaps.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 232, "date": "Sep 13 11:02"}, {"filename": "ldap.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 199, "date": "Sep 13 11:02"}, {"filename": "libvirt-tls.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 385, "date": "Sep 13 11:02"}, {"filename": "libvirt.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 389, "date": "Sep 13 11:02"}, {"filename": "lightning-network.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 269, "date": "Sep 13 11:02"}, {"filename": "llmnr.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 324, "date": "Sep 13 11:02"}, {"filename": "managesieve.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 349, "date": "Sep 13 11:02"}, {"filename": "matrix.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 439, "date": "Sep 13 11:02"}, {"filename": "mdns.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 424, "date": "Sep 13 11:02"}, {"filename": "minidlna.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 343, "date": "Sep 13 11:02"}, {"filename": "mongodb.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 237, "date": "Sep 13 11:02"}, {"filename": "mosh.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 473, "date": "Sep 13 11:02"}, {"filename": "mountd.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 211, "date": "Sep 13 11:02"}, {"filename": "mqtt-tls.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 296, "date": "Sep 13 11:02"}, {"filename": "mqtt.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 287, "date": "Sep 13 11:02"}, {"filename": "mssql.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 170, "date": "Sep 13 11:02"}, {"filename": "ms-wbt.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 190, "date": "Sep 13 11:02"}, {"filename": "murmur.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 242, "date": "Sep 13 11:02"}, {"filename": "mysql.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 171, "date": "Sep 13 11:02"}, {"filename": "nfs3.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 342, "date": "Sep 13 11:02"}, {"filename": "nfs.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 324, "date": "Sep 13 11:02"}, {"filename": "nmea-0183.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 293, "date": "Sep 13 11:02"}, {"filename": "nrpe.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 247, "date": "Sep 13 11:02"}, {"filename": "ntp.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 389, "date": "Sep 13 11:02"}, {"filename": "nut.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 368, "date": "Sep 13 11:02"}, {"filename": "openvpn.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 335, "date": "Sep 13 11:02"}, {"filename": "ovirt-imageio.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 260, "date": "Sep 13 11:02"}, {"filename": "ovirt-storageconsole.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 343, "date": "Sep 13 11:02"}, {"filename": "ovirt-vmconsole.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 235, "date": "Sep 13 11:02"}, {"filename": "plex.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 487, "date": "Sep 13 11:02"}, {"filename": "pmcd.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 433, "date": "Sep 13 11:02"}, {"filename": "pmproxy.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 474, "date": "Sep 13 11:02"}, {"filename": "pmwebapis.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 544, "date": "Sep 13 11:02"}, {"filename": "pmwebapi.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 460, "date": "Sep 13 11:02"}, {"filename": "pop3s.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 357, "date": "Sep 13 11:02"}, {"filename": "pop3.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 348, "date": "Sep 13 11:02"}, {"filename": "postgresql.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 181, "date": "Sep 13 11:02"}, {"filename": "privoxy.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 509, "date": "Sep 13 11:02"}, {"filename": "proxy-dhcp.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 261, "date": "Sep 13 11:02"}, {"filename": "ptp.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 424, "date": "Sep 13 11:02"}, {"filename": "pulseaudio.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 414, "date": "Sep 13 11:02"}, {"filename": "puppetmaster.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 297, "date": "Sep 13 11:02"}, {"filename": "quassel.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 273, "date": "Sep 13 11:02"}, {"filename": "radius.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 520, "date": "Sep 13 11:02"}, {"filename": "redis.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 268, "date": "Sep 13 11:02"}, {"filename": "RH-Satellite-6.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 741, "date": "Sep 13 11:02"}, {"filename": "rpc-bind.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 214, "date": "Sep 13 11:02"}, {"filename": "rsh.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 310, "date": "Sep 13 11:02"}, {"filename": "rsyncd.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 311, "date": "Sep 13 11:02"}, {"filename": "rtsp.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 350, "date": "Sep 13 11:02"}, {"filename": "salt-master.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 329, "date": "Sep 13 11:02"}, {"filename": "samba-client.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 384, "date": "Sep 13 11:02"}, {"filename": "samba-dc.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1311, "date": "Sep 13 11:02"}, {"filename": "samba.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 461, "date": "Sep 13 11:02"}, {"filename": "sane.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 337, "date": "Sep 13 11:02"}, {"filename": "sips.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 283, "date": "Sep 13 11:02"}, {"filename": "sip.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 509, "date": "Sep 13 11:02"}, {"filename": "slp.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 299, "date": "Sep 13 11:02"}, {"filename": "smtp-submission.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 231, "date": "Sep 13 11:02"}, {"filename": "smtps.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 577, "date": "Sep 13 11:02"}, {"filename": "smtp.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 550, "date": "Sep 13 11:02"}, {"filename": "snmptrap.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 308, "date": "Sep 13 11:02"}, {"filename": "snmp.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 342, "date": "Sep 13 11:02"}, {"filename": "spideroak-lansync.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 405, "date": "Sep 13 11:02"}, {"filename": "squid.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 173, "date": "Sep 13 11:02"}, {"filename": "ssh.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 463, "date": "Sep 13 11:02"}, {"filename": "steam-streaming.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 631, "date": "Sep 13 11:02"}, {"filename": "svdrp.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 287, "date": "Sep 13 11:02"}, {"filename": "svn.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 231, "date": "Sep 13 11:02"}, {"filename": "syncthing-gui.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 297, "date": "Sep 13 11:02"}, {"filename": "syncthing.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 311, "date": "Sep 13 11:02"}, {"filename": "synergy.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 496, "date": "Sep 13 11:02"}, {"filename": "syslog-tls.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 444, "date": "Sep 13 11:02"}, {"filename": "syslog.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 329, "date": "Sep 13 11:02"}, {"filename": "telnet.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 393, "date": "Sep 13 11:02"}, {"filename": "tftp-client.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 301, "date": "Sep 13 11:02"}, {"filename": "tftp.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 437, "date": "Sep 13 11:02"}, {"filename": "tinc.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 336, "date": "Sep 13 11:02"}, {"filename": "tor-socks.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 771, "date": "Sep 13 11:02"}, {"filename": "transmission-client.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 244, "date": "Sep 13 11:02"}, {"filename": "upnp-client.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 264, "date": "Sep 13 11:02"}, {"filename": "vdsm.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 593, "date": "Sep 13 11:02"}, {"filename": "vnc-server.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 475, "date": "Sep 13 11:02"}, {"filename": "wbem-https.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 310, "date": "Sep 13 11:02"}, {"filename": "wbem-http.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 352, "date": "Sep 13 11:02"}, {"filename": "wsmans.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 323, "date": "Sep 13 11:02"}, {"filename": "wsman.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 316, "date": "Sep 13 11:02"}, {"filename": "xdmcp.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 329, "date": "Sep 13 11:02"}, {"filename": "xmpp-bosh.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 509, "date": "Sep 13 11:02"}, {"filename": "xmpp-client.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 488, "date": "Sep 13 11:02"}, {"filename": "xmpp-local.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 264, "date": "Sep 13 11:02"}, {"filename": "xmpp-server.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 545, "date": "Sep 13 11:02"}, {"filename": "zabbix-agent.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 314, "date": "Sep 13 11:02"}, {"filename": "zabbix-server.xml", "parent": "/usr/lib/firewalld/services", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 315, "date": "Sep 13 11:02"}, {"filename": ".", "parent": "/usr/lib/firewalld/zones", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 163, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firewalld/zones", "flags": "drwxr-xr-x.", "links": 7, "owner": "root", "group": "root", "size": 81, "date": "Oct 16 09:23"}, {"filename": "block.xml", "parent": "/usr/lib/firewalld/zones", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 299, "date": "Sep 13 11:02"}, {"filename": "dmz.xml", "parent": "/usr/lib/firewalld/zones", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 293, "date": "Sep 13 11:02"}, {"filename": "drop.xml", "parent": "/usr/lib/firewalld/zones", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 291, "date": "Sep 13 11:02"}, {"filename": "external.xml", "parent": "/usr/lib/firewalld/zones", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 304, "date": "Sep 13 11:02"}, {"filename": "home.xml", "parent": "/usr/lib/firewalld/zones", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 369, "date": "Sep 13 11:02"}, {"filename": "internal.xml", "parent": "/usr/lib/firewalld/zones", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 384, "date": "Sep 13 11:02"}, {"filename": "public.xml", "parent": "/usr/lib/firewalld/zones", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 315, "date": "Sep 13 11:02"}, {"filename": "trusted.xml", "parent": "/usr/lib/firewalld/zones", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 162, "date": "Sep 13 11:02"}, {"filename": "work.xml", "parent": "/usr/lib/firewalld/zones", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 311, "date": "Sep 13 11:02"}, {"filename": ".", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "..", "parent": "/usr/lib/firmware", "flags": "dr-xr-xr-x.", "links": 29, "owner": "root", "group": "root", "size": 4096, "date": "Nov 16 14:29"}, {"filename": "3.10.0-1062.1.2.el7.x86_64", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 45, "date": "Oct 16 09:22"}, {"filename": "3.10.0-957.27.2.el7.x86_64", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 45, "date": "Oct 16 09:22"}, {"filename": "3.10.0-957.el7.x86_64", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 45, "date": "Oct 16 09:22"}, {"filename": "3com", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 42, "date": "Oct 16 09:22"}, {"filename": "a300_pfp.fw", "link_to": "qcom/a300_pfp.fw", "parent": "/usr/lib/firmware", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 16, "date": "Oct 16 09:22"}, {"filename": "a300_pm4.fw", "link_to": "qcom/a300_pm4.fw", "parent": "/usr/lib/firmware", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 16, "date": "Oct 16 09:22"}, {"filename": "acenic", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 36, "date": "Oct 16 09:22"}, {"filename": "adaptec", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 52, "date": "Oct 16 09:22"}, {"filename": "advansys", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 77, "date": "Oct 16 09:22"}, {"filename": "agere_ap_fw.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 50698, "date": "Aug 8 2019"}, {"filename": "agere_sta_fw.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 65046, "date": "Aug 8 2019"}, {"filename": "aic94xx-seq.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 22622, "date": "Jun 9 2014"}, {"filename": "aica_firmware.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 3408, "date": "Mar 5 2015"}, {"filename": "amd", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 42, "date": "Oct 16 09:22"}, {"filename": "amdgpu", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:22"}, {"filename": "amd-ucode", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 264, "date": "Oct 16 09:22"}, {"filename": "ar3k", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 8, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "ar5523.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 153416, "date": "Aug 8 2019"}, {"filename": "ar7010_1_1.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 70624, "date": "Aug 8 2019"}, {"filename": "ar7010.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 70624, "date": "Aug 8 2019"}, {"filename": "ar9170-1.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 83968, "date": "Aug 8 2019"}, {"filename": "ar9170-2.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 3508, "date": "Aug 8 2019"}, {"filename": "ar9271.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 51312, "date": "Aug 8 2019"}, {"filename": "as102_data1_st.hex", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 95500, "date": "Aug 8 2019"}, {"filename": "as102_data2_st.hex", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 81820, "date": "Aug 8 2019"}, {"filename": "asihpi", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 158, "date": "Aug 15 2019"}, {"filename": "ath10k", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 10, "owner": "root", "group": "root", "size": 126, "date": "Aug 8 2019"}, {"filename": "ath3k-1.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 246804, "date": "Aug 8 2019"}, {"filename": "ath9k_htc", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 56, "date": "Oct 16 09:22"}, {"filename": "atmel", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 116, "date": "Oct 16 09:22"}, {"filename": "atmsar11.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 9726, "date": "Aug 8 2019"}, {"filename": "atusb", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 86, "date": "Oct 16 09:22"}, {"filename": "av7110", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 56, "date": "Oct 16 09:22"}, {"filename": "bnx2", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "bnx2x", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "bnx2x-e1-4.8.53.0.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 165768, "date": "Aug 8 2019"}, {"filename": "bnx2x-e1-5.2.13.0.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 163000, "date": "Aug 8 2019"}, {"filename": "bnx2x-e1-5.2.7.0.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 162800, "date": "Aug 8 2019"}, {"filename": "bnx2x-e1h-4.8.53.0.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 192400, "date": "Aug 8 2019"}, {"filename": "bnx2x-e1h-5.2.13.0.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 205512, "date": "Aug 8 2019"}, {"filename": "bnx2x-e1h-5.2.7.0.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 205488, "date": "Aug 8 2019"}, {"filename": "brcm", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "cadence", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 26, "date": "Oct 16 09:22"}, {"filename": "carl9170-1.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 13388, "date": "Aug 8 2019"}, {"filename": "cavium", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 27, "date": "Oct 16 09:22"}, {"filename": "cbfw-3.2.1.1.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 412528, "date": "Aug 8 2019"}, {"filename": "cbfw-3.2.3.0.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 414016, "date": "Aug 8 2019"}, {"filename": "cbfw-3.2.5.1.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 414480, "date": "Aug 8 2019"}, {"filename": "cis", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "cmmb_vega_12mhz.inp", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 62780, "date": "Aug 8 2019"}, {"filename": "cmmb_venice_12mhz.inp", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 97016, "date": "Aug 8 2019"}, {"filename": "configure", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 107, "date": "Aug 8 2019"}, {"filename": "cpia2", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 29, "date": "Oct 16 09:22"}, {"filename": "cs46xx", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 96, "date": "Aug 15 2019"}, {"filename": "ct2fw-3.2.1.1.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 582440, "date": "Aug 8 2019"}, {"filename": "ct2fw-3.2.3.0.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 583688, "date": "Aug 8 2019"}, {"filename": "ct2fw-3.2.5.1.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 584216, "date": "Aug 8 2019"}, {"filename": "ctefx.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 655436, "date": "Aug 8 2019"}, {"filename": "ctfw-3.2.1.1.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 537160, "date": "Aug 8 2019"}, {"filename": "ctfw-3.2.3.0.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 538712, "date": "Aug 8 2019"}, {"filename": "ctfw-3.2.5.1.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 539144, "date": "Aug 8 2019"}, {"filename": "ctspeq.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4120, "date": "Aug 8 2019"}, {"filename": "cxgb3", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 253, "date": "Oct 16 09:22"}, {"filename": "cxgb4", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 271, "date": "Oct 16 09:23"}, {"filename": "dabusb", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 46, "date": "Oct 16 09:22"}, {"filename": "digiface_firmware.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 97652, "date": "Mar 5 2015"}, {"filename": "digiface_firmware_rev11.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 97652, "date": "Mar 5 2015"}, {"filename": "dpaa2", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 16, "date": "Oct 16 09:22"}, {"filename": "dsp56k", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "dvb-fe-xc4000-1.4.1.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 18643, "date": "Aug 8 2019"}, {"filename": "dvb-fe-xc5000-1.6.114.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 12401, "date": "Aug 8 2019"}, {"filename": "dvb-fe-xc5000c-4.1.30.7.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 16497, "date": "Aug 8 2019"}, {"filename": "dvb_nova_12mhz_b0.inp", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 101888, "date": "Aug 8 2019"}, {"filename": "dvb_nova_12mhz.inp", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 93516, "date": "Aug 8 2019"}, {"filename": "dvb-usb-dib0700-1.20.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 33768, "date": "Aug 8 2019"}, {"filename": "dvb-usb-it9135-01.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8128, "date": "Aug 8 2019"}, {"filename": "dvb-usb-it9135-02.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 5834, "date": "Aug 8 2019"}, {"filename": "dvb-usb-terratec-h5-drxk.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 50222, "date": "Aug 8 2019"}, {"filename": "e100", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 75, "date": "Oct 16 09:22"}, {"filename": "ea", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 15 2019"}, {"filename": "edgeport", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 85, "date": "Oct 16 09:22"}, {"filename": "emi26", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 62, "date": "Oct 16 09:22"}, {"filename": "emi62", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 74, "date": "Oct 16 09:22"}, {"filename": "emu", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 127, "date": "Aug 15 2019"}, {"filename": "ene-ub6250", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 123, "date": "Oct 16 09:22"}, {"filename": "ess", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 69, "date": "Aug 15 2019"}, {"filename": "f2255usb.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 181312, "date": "Aug 8 2019"}, {"filename": "go7007", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 160, "date": "Oct 16 09:22"}, {"filename": "GPL-2", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 18092, "date": "Aug 8 2019"}, {"filename": "GPL-3", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 35068, "date": "Aug 8 2019"}, {"filename": "hfi1_dc8051.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 32348, "date": "Aug 8 2019"}, {"filename": "hfi1_fabric.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 16848, "date": "Aug 8 2019"}, {"filename": "hfi1_pcie.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 33296, "date": "Aug 8 2019"}, {"filename": "hfi1_sbus.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 5360, "date": "Aug 8 2019"}, {"filename": "htc_7010.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 72684, "date": "Aug 8 2019"}, {"filename": "htc_9271.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 50980, "date": "Aug 8 2019"}, {"filename": "i915", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "imx", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 18, "date": "Aug 8 2019"}, {"filename": "intel", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 8192, "date": "Oct 16 09:22"}, {"filename": "intelliport2.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 34304, "date": "Aug 8 2019"}, {"filename": "isci", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 119, "date": "Oct 16 09:22"}, {"filename": "isdbt_nova_12mhz_b0.inp", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 98384, "date": "Aug 8 2019"}, {"filename": "isdbt_nova_12mhz.inp", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 75876, "date": "Aug 8 2019"}, {"filename": "isdbt_rio.inp", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 85840, "date": "Aug 8 2019"}, {"filename": "ivtv-firmware-license-end-user.txt", "parent": "/usr/lib/firmware", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 6639, "date": "Feb 18 2007"}, {"filename": "ivtv-firmware-license-oemihvisv.txt", "parent": "/usr/lib/firmware", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 8292, "date": "Feb 18 2007"}, {"filename": "iwlwifi-1000-3.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 335056, "date": "Aug 8 2019"}, {"filename": "iwlwifi-1000-5.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 337520, "date": "Aug 8 2019"}, {"filename": "iwlwifi-100-5.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 337572, "date": "Aug 8 2019"}, {"filename": "iwlwifi-105-6.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 689680, "date": "Aug 8 2019"}, {"filename": "iwlwifi-135-6.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 701228, "date": "Aug 8 2019"}, {"filename": "iwlwifi-2000-6.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 695876, "date": "Aug 8 2019"}, {"filename": "iwlwifi-2030-6.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 707392, "date": "Aug 8 2019"}, {"filename": "iwlwifi-3160-10.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 609892, "date": "Aug 8 2019"}, {"filename": "iwlwifi-3160-12.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 683996, "date": "Aug 8 2019"}, {"filename": "iwlwifi-3160-13.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 688616, "date": "Aug 8 2019"}, {"filename": "iwlwifi-3160-16.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 918212, "date": "Aug 8 2019"}, {"filename": "iwlwifi-3160-17.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 918268, "date": "Aug 8 2019"}, {"filename": "iwlwifi-3160-7.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 670484, "date": "Aug 8 2019"}, {"filename": "iwlwifi-3160-8.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 667284, "date": "Aug 8 2019"}, {"filename": "iwlwifi-3160-9.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 669872, "date": "Aug 8 2019"}, {"filename": "iwlwifi-3168-21.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1384856, "date": "Aug 8 2019"}, {"filename": "iwlwifi-3168-22.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1028092, "date": "Aug 8 2019"}, {"filename": "iwlwifi-3168-27.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1032436, "date": "Aug 8 2019"}, {"filename": "iwlwifi-3168-29.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1036276, "date": "Aug 8 2019"}, {"filename": "iwlwifi-3945-2.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 150100, "date": "Aug 8 2019"}, {"filename": "iwlwifi-4965-2.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 187972, "date": "Aug 8 2019"}, {"filename": "iwlwifi-5000-1.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 345008, "date": "Aug 8 2019"}, {"filename": "iwlwifi-5000-2.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 353240, "date": "Aug 8 2019"}, {"filename": "iwlwifi-5000-5.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 340696, "date": "Aug 8 2019"}, {"filename": "iwlwifi-5150-2.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 337400, "date": "Aug 8 2019"}, {"filename": "iwlwifi-6000-4.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 454608, "date": "Aug 8 2019"}, {"filename": "iwlwifi-6000g2a-5.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 444128, "date": "Aug 8 2019"}, {"filename": "iwlwifi-6000g2a-6.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 677296, "date": "Aug 8 2019"}, {"filename": "iwlwifi-6000g2b-5.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 460236, "date": "Aug 8 2019"}, {"filename": "iwlwifi-6000g2b-6.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 679436, "date": "Aug 8 2019"}, {"filename": "iwlwifi-6050-4.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 463692, "date": "Aug 8 2019"}, {"filename": "iwlwifi-6050-5.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 469780, "date": "Aug 8 2019"}, {"filename": "iwlwifi-7260-10.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 672352, "date": "Aug 8 2019"}, {"filename": "iwlwifi-7260-12.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 782300, "date": "Aug 8 2019"}, {"filename": "iwlwifi-7260-13.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 786920, "date": "Aug 8 2019"}, {"filename": "iwlwifi-7260-16.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1049284, "date": "Aug 8 2019"}, {"filename": "iwlwifi-7260-17.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1049340, "date": "Aug 8 2019"}, {"filename": "iwlwifi-7260-7.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 683236, "date": "Aug 8 2019"}, {"filename": "iwlwifi-7260-8.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 679780, "date": "Aug 8 2019"}, {"filename": "iwlwifi-7260-9.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 680508, "date": "Aug 8 2019"}, {"filename": "iwlwifi-7265-10.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 736844, "date": "Aug 8 2019"}, {"filename": "iwlwifi-7265-12.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 880604, "date": "Aug 8 2019"}, {"filename": "iwlwifi-7265-13.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 885224, "date": "Aug 8 2019"}, {"filename": "iwlwifi-7265-16.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1180356, "date": "Aug 8 2019"}, {"filename": "iwlwifi-7265-17.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1180412, "date": "Aug 8 2019"}, {"filename": "iwlwifi-7265-8.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 690452, "date": "Aug 8 2019"}, {"filename": "iwlwifi-7265-9.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 697828, "date": "Aug 8 2019"}, {"filename": "iwlwifi-7265D-10.ucode", "link_to": "iwlwifi-7265-10.ucode", "parent": "/usr/lib/firmware", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 21, "date": "Oct 16 09:23"}, {"filename": "iwlwifi-7265D-12.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1002800, "date": "Aug 8 2019"}, {"filename": "iwlwifi-7265D-13.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1008692, "date": "Aug 8 2019"}, {"filename": "iwlwifi-7265D-16.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1384500, "date": "Aug 8 2019"}, {"filename": "iwlwifi-7265D-17.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1383604, "date": "Aug 8 2019"}, {"filename": "iwlwifi-7265D-21.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1385368, "date": "Aug 8 2019"}, {"filename": "iwlwifi-7265D-22.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1028376, "date": "Aug 8 2019"}, {"filename": "iwlwifi-7265D-27.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1032740, "date": "Aug 8 2019"}, {"filename": "iwlwifi-7265D-29.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1036432, "date": "Aug 8 2019"}, {"filename": "iwlwifi-8000C-13.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1745176, "date": "Aug 8 2019"}, {"filename": "iwlwifi-8000C-16.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2351636, "date": "Aug 8 2019"}, {"filename": "iwlwifi-8000C-21.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2394060, "date": "Aug 8 2019"}, {"filename": "iwlwifi-8000C-22.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2120860, "date": "Aug 8 2019"}, {"filename": "iwlwifi-8000C-27.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2227284, "date": "Aug 8 2019"}, {"filename": "iwlwifi-8000C-31.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2310116, "date": "Aug 8 2019"}, {"filename": "iwlwifi-8000C-34.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2448976, "date": "Aug 8 2019"}, {"filename": "iwlwifi-8000C-36.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2486572, "date": "Aug 8 2019"}, {"filename": "iwlwifi-8265-21.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2389968, "date": "Aug 8 2019"}, {"filename": "iwlwifi-8265-22.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1811984, "date": "Aug 8 2019"}, {"filename": "iwlwifi-8265-27.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2234528, "date": "Aug 8 2019"}, {"filename": "iwlwifi-8265-31.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2307104, "date": "Aug 8 2019"}, {"filename": "iwlwifi-8265-34.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2440780, "date": "Aug 8 2019"}, {"filename": "iwlwifi-8265-36.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2498044, "date": "Aug 8 2019"}, {"filename": "iwlwifi-9000-pu-b0-jf-b0-33.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2632620, "date": "Aug 8 2019"}, {"filename": "iwlwifi-9000-pu-b0-jf-b0-34.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2678284, "date": "Aug 8 2019"}, {"filename": "iwlwifi-9000-pu-b0-jf-b0-38.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2520568, "date": "Aug 8 2019"}, {"filename": "iwlwifi-9000-pu-b0-jf-b0-41.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2620464, "date": "Aug 8 2019"}, {"filename": "iwlwifi-9000-pu-b0-jf-b0-43.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2543536, "date": "Aug 8 2019"}, {"filename": "iwlwifi-9260-th-b0-jf-b0-33.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2637216, "date": "Aug 8 2019"}, {"filename": "iwlwifi-9260-th-b0-jf-b0-34.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2678092, "date": "Aug 8 2019"}, {"filename": "iwlwifi-9260-th-b0-jf-b0-38.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2521412, "date": "Aug 8 2019"}, {"filename": "iwlwifi-9260-th-b0-jf-b0-41.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2620656, "date": "Aug 8 2019"}, {"filename": "iwlwifi-9260-th-b0-jf-b0-43.ucode", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2558176, "date": "Aug 8 2019"}, {"filename": "kaweth", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 102, "date": "Oct 16 09:22"}, {"filename": "keyspan", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 211, "date": "Oct 16 09:22"}, {"filename": "keyspan_pda", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 106, "date": "Oct 16 09:22"}, {"filename": "korg", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 23, "date": "Aug 15 2019"}, {"filename": "lbtf_usb.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 118888, "date": "Aug 8 2019"}, {"filename": "lgs8g75.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 262, "date": "Aug 8 2019"}, {"filename": "liquidio", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 129, "date": "Oct 16 09:22"}, {"filename": "Makefile", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 397, "date": "Aug 8 2019"}, {"filename": "matrox", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 46, "date": "Oct 16 09:22"}, {"filename": "mediatek", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 226, "date": "Oct 16 09:22"}, {"filename": "mellanox", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 236, "date": "Oct 16 09:22"}, {"filename": "microchip", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 90, "date": "Oct 16 09:22"}, {"filename": "mixart", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 66, "date": "Aug 15 2019"}, {"filename": "moxa", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 286, "date": "Oct 16 09:22"}, {"filename": "mrvl", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "mt7601u.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 45412, "date": "Aug 8 2019"}, {"filename": "mt7650.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 368220, "date": "Aug 8 2019"}, {"filename": "mt7662.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 81908, "date": "Aug 8 2019"}, {"filename": "mt7662_rom_patch.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 26350, "date": "Aug 8 2019"}, {"filename": "mts_cdma.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 13847, "date": "Aug 8 2019"}, {"filename": "mts_edge.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 14067, "date": "Aug 8 2019"}, {"filename": "mts_gsm.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 13847, "date": "Aug 8 2019"}, {"filename": "mts_mt9234mu.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 13769, "date": "Aug 8 2019"}, {"filename": "mts_mt9234zba.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 13769, "date": "Aug 8 2019"}, {"filename": "multiface_firmware.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 97652, "date": "Mar 5 2015"}, {"filename": "multiface_firmware_rev11.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 97652, "date": "Mar 5 2015"}, {"filename": "mwlwifi", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 44, "date": "Oct 16 09:22"}, {"filename": "myri10ge_eth_big_z8e.dat", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 378832, "date": "Aug 8 2019"}, {"filename": "myri10ge_ethp_big_z8e.dat", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 389144, "date": "Aug 8 2019"}, {"filename": "myri10ge_ethp_z8e.dat", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 389056, "date": "Aug 8 2019"}, {"filename": "myri10ge_eth_z8e.dat", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 378736, "date": "Aug 8 2019"}, {"filename": "myri10ge_rss_eth_big_z8e.dat", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 536192, "date": "Aug 8 2019"}, {"filename": "myri10ge_rss_ethp_big_z8e.dat", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 545936, "date": "Aug 8 2019"}, {"filename": "myri10ge_rss_ethp_z8e.dat", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 545920, "date": "Aug 8 2019"}, {"filename": "myri10ge_rss_eth_z8e.dat", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 536176, "date": "Aug 8 2019"}, {"filename": "myricom", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 23, "date": "Oct 16 09:22"}, {"filename": "netronome", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "nvidia", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 19, "owner": "root", "group": "root", "size": 236, "date": "Oct 16 09:22"}, {"filename": "ositech", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 27, "date": "Oct 16 09:22"}, {"filename": "pcxhr", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 15 2019"}, {"filename": "phanfw.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1845305, "date": "Aug 8 2019"}, {"filename": "qat_895xcc.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 463612, "date": "Aug 8 2019"}, {"filename": "qat_895xcc_mmp.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 114176, "date": "Aug 8 2019"}, {"filename": "qat_c3xxx.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 265444, "date": "Aug 8 2019"}, {"filename": "qat_c3xxx_mmp.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 114820, "date": "Aug 8 2019"}, {"filename": "qat_c62x.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 398144, "date": "Aug 8 2019"}, {"filename": "qat_c62x_mmp.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 114820, "date": "Aug 8 2019"}, {"filename": "qat_mmp.bin", "link_to": "qat_895xcc_mmp.bin", "parent": "/usr/lib/firmware", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 18, "date": "Oct 16 09:22"}, {"filename": "qca", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "qcom", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 5, "owner": "root", "group": "root", "size": 254, "date": "Oct 16 09:22"}, {"filename": "qed", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "ql2100_fw.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 76802, "date": "Aug 8 2019"}, {"filename": "ql2200_fw.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 84566, "date": "Aug 8 2019"}, {"filename": "ql2300_fw.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 125252, "date": "Aug 8 2019"}, {"filename": "ql2322_fw.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 136038, "date": "Aug 8 2019"}, {"filename": "ql2400_fw.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 265300, "date": "Aug 8 2019"}, {"filename": "ql2500_fw.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 275128, "date": "Aug 8 2019"}, {"filename": "qlogic", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 91, "date": "Oct 16 09:22"}, {"filename": "r128", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 26, "date": "Oct 16 09:22"}, {"filename": "r8a779x_usb3_v1.dlmem", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 9452, "date": "Aug 8 2019"}, {"filename": "r8a779x_usb3_v2.dlmem", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 9416, "date": "Aug 8 2019"}, {"filename": "r8a779x_usb3_v3.dlmem", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 9416, "date": "Aug 8 2019"}, {"filename": "radeon", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:22"}, {"filename": "README", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1684, "date": "Aug 8 2019"}, {"filename": "rockchip", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 22, "date": "Oct 16 09:22"}, {"filename": "rp2.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 63, "date": "Aug 8 2019"}, {"filename": "rpm_firmware.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 97652, "date": "Mar 5 2015"}, {"filename": "rsi", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 104, "date": "Oct 16 09:22"}, {"filename": "rsi_91x.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 94100, "date": "Aug 8 2019"}, {"filename": "rt2561.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8192, "date": "Aug 8 2019"}, {"filename": "rt2561s.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8192, "date": "Aug 8 2019"}, {"filename": "rt2661.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8192, "date": "Aug 8 2019"}, {"filename": "rt2860.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8192, "date": "Aug 8 2019"}, {"filename": "rt2870.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8192, "date": "Aug 8 2019"}, {"filename": "rt3070.bin", "link_to": "rt2870.bin", "parent": "/usr/lib/firmware", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 10, "date": "Oct 16 09:22"}, {"filename": "rt3071.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "rt3090.bin", "link_to": "rt2860.bin", "parent": "/usr/lib/firmware", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 10, "date": "Oct 16 09:22"}, {"filename": "rt3290.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "rt73.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2048, "date": "Aug 8 2019"}, {"filename": "RTL8192E", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 54, "date": "Oct 16 09:22"}, {"filename": "rtl_bt", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "rtl_nic", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "rtlwifi", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "rtw88", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 52, "date": "Oct 16 09:22"}, {"filename": "s2250.fw", "link_to": "go7007/s2250-2.fw", "parent": "/usr/lib/firmware", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 17, "date": "Oct 16 09:22"}, {"filename": "s2250_loader.fw", "link_to": "go7007/s2250-1.fw", "parent": "/usr/lib/firmware", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 17, "date": "Oct 16 09:22"}, {"filename": "s5p-mfc.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 352652, "date": "Aug 8 2019"}, {"filename": "s5p-mfc-v6.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 306312, "date": "Aug 8 2019"}, {"filename": "s5p-mfc-v6-v2.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 343756, "date": "Aug 8 2019"}, {"filename": "s5p-mfc-v7.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 382724, "date": "Aug 8 2019"}, {"filename": "s5p-mfc-v8.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 360576, "date": "Aug 8 2019"}, {"filename": "sb16", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 134, "date": "Aug 15 2019"}, {"filename": "sdd_sagrad_1091_1098.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 816, "date": "Aug 8 2019"}, {"filename": "slicoss", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 128, "date": "Oct 16 09:22"}, {"filename": "sms1xxx-hcw-55xxx-dvbt-02.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 85656, "date": "Aug 8 2019"}, {"filename": "sms1xxx-hcw-55xxx-isdbt-02.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 70472, "date": "Aug 8 2019"}, {"filename": "sms1xxx-nova-a-dvbt-01.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 85656, "date": "Aug 8 2019"}, {"filename": "sms1xxx-nova-b-dvbt-01.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 76364, "date": "Aug 8 2019"}, {"filename": "sms1xxx-stellar-dvbt-01.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 39900, "date": "Aug 8 2019"}, {"filename": "sun", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 25, "date": "Oct 16 09:22"}, {"filename": "sxg", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 63, "date": "Oct 16 09:22"}, {"filename": "TDA7706_OM_v2.5.1_boot.txt", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 37028, "date": "Aug 8 2019"}, {"filename": "TDA7706_OM_v3.0.2_boot.txt", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 10509, "date": "Aug 8 2019"}, {"filename": "tdmb_nova_12mhz.inp", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 40096, "date": "Aug 8 2019"}, {"filename": "tehuti", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 21, "date": "Oct 16 09:22"}, {"filename": "ti_3410.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 13765, "date": "Aug 8 2019"}, {"filename": "ti_5052.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 13764, "date": "Aug 8 2019"}, {"filename": "tigon", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 80, "date": "Oct 16 09:22"}, {"filename": "ti-keystone", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 51, "date": "Oct 16 09:22"}, {"filename": "tlg2300_firmware.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 51972, "date": "Aug 8 2019"}, {"filename": "tr_smctr.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 7614, "date": "Aug 8 2019"}, {"filename": "ttusb-budget", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 29, "date": "Oct 16 09:22"}, {"filename": "ueagle-atm", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "updates", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 6, "date": "Aug 8 2019"}, {"filename": "usbdux", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 6, "date": "Aug 8 2019"}, {"filename": "usbduxfast_firmware.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 999, "date": "Aug 8 2019"}, {"filename": "usbdux_firmware.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1770, "date": "Aug 8 2019"}, {"filename": "usbduxsigma_firmware.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8192, "date": "Aug 8 2019"}, {"filename": "v4l-cx231xx-avcore-01.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 16382, "date": "Aug 8 2019"}, {"filename": "v4l-cx2341x-dec.fw", "parent": "/usr/lib/firmware", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 262144, "date": "May 26 2006"}, {"filename": "v4l-cx2341x-enc.fw", "parent": "/usr/lib/firmware", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 376836, "date": "Feb 17 2007"}, {"filename": "v4l-cx2341x-init.mpg", "parent": "/usr/lib/firmware", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 155648, "date": "May 26 2006"}, {"filename": "v4l-cx23885-avcore-01.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 16382, "date": "Aug 8 2019"}, {"filename": "v4l-cx25840.fw", "parent": "/usr/lib/firmware", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 16382, "date": "Jul 1 2008"}, {"filename": "v4l-pvrusb2-24xxx-01.fw", "parent": "/usr/lib/firmware", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 8192, "date": "Oct 6 2006"}, {"filename": "v4l-pvrusb2-29xxx-01.fw", "parent": "/usr/lib/firmware", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 8192, "date": "Jul 1 2006"}, {"filename": "vicam", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 25, "date": "Oct 16 09:22"}, {"filename": "vntwusb.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 11341, "date": "Aug 8 2019"}, {"filename": "vpu_d.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2977008, "date": "Aug 8 2019"}, {"filename": "vpu_p.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 131180, "date": "Aug 8 2019"}, {"filename": "vx", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 262, "date": "Aug 15 2019"}, {"filename": "whiteheat.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 23554, "date": "Aug 8 2019"}, {"filename": "whiteheat_loader.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 5626, "date": "Aug 8 2019"}, {"filename": "wil6210.brd", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 3588, "date": "Aug 8 2019"}, {"filename": "wil6210.fw", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 400364, "date": "Aug 8 2019"}, {"filename": "wsm_22.bin", "parent": "/usr/lib/firmware", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 97824, "date": "Aug 8 2019"}, {"filename": "yam", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 38, "date": "Oct 16 09:22"}, {"filename": "yamaha", "parent": "/usr/lib/firmware", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 91, "date": "Aug 15 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 45, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "intel-ucode", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "readme-intel", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2503, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 45, "date": "Oct 16 09:22"}, {"filename": "06-03-02", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-03-02", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-05-00", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-05-00", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-05-01", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-05-01", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-05-02", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-05-02", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-05-03", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-05-03", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-06-00", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-06-00", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-06-05", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-06-05", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-06-0a", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-06-0a", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-06-0d", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-06-0d", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-07-01", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-07-01", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-07-02", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-07-02", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-07-03", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-07-03", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-08-01", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-08-01", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-08-03", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-08-03", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-08-06", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-08-06", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-08-0a", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-08-0a", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-09-05", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-09-05", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-0a-00", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0a-00", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-0a-01", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0a-01", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-0b-01", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0b-01", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-0b-04", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0b-04", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-0d-06", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0d-06", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-0e-08", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0e-08", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-0e-0c", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0e-0c", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-0f-02", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-02", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-0f-06", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-06", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-0f-07", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-07", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-0f-0a", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-0a", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-0f-0b", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-0b", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-0f-0d", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-0d", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-16-01", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-16-01", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-17-06", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-17-06", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-17-07", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-17-07", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-17-0a", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-17-0a", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-1a-04", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1a-04", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-1a-05", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1a-05", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-1c-02", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1c-02", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-1c-0a", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1c-0a", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-1d-01", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1d-01", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-1e-05", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1e-05", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-25-02", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-25-02", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-25-05", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-25-05", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-26-01", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-26-01", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-2a-07", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2a-07", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-2c-02", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2c-02", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-2d-06", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2d-06", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-2d-07", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2d-07", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-2e-06", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2e-06", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-2f-02", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2f-02", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-37-08", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-37-08", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-37-09", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-37-09", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-3a-09", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3a-09", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-3c-03", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3c-03", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-3d-04", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3d-04", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-3e-04", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3e-04", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-3e-06", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3e-06", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-3e-07", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3e-07", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-3f-02", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3f-02", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-3f-04", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3f-04", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-45-01", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-45-01", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-46-01", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-46-01", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-47-01", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-47-01", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-4c-03", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-4c-03", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-4c-04", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-4c-04", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-4e-03", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-4e-03", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-55-04", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-55-04", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-55-07", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-55-07", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-56-02", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-56-02", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-56-03", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-56-03", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-56-04", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-56-04", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-56-05", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-56-05", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-5c-02", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5c-02", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-5c-09", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5c-09", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-5c-0a", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5c-0a", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-5e-03", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5e-03", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-5f-01", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5f-01", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-7a-01", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-7a-01", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-8e-09", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-8e-09", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-8e-0a", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-8e-0a", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-8e-0b", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-8e-0b", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-8e-0c", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-8e-0c", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-9e-09", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-09", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-9e-0a", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-0a", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-9e-0b", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-0b", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-9e-0c", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-0c", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-9e-0d", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-0d", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-00-07", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-00-07", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-00-0a", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-00-0a", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-01-02", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-01-02", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-02-04", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-04", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-02-05", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-05", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-02-06", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-06", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-02-07", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-07", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-02-09", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-09", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-03-02", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-03-02", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-03-03", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-03-03", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-03-04", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-03-04", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-04-01", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-01", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-04-03", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-03", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-04-04", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-04", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-04-07", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-07", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-04-08", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-08", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-04-09", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-09", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-04-0a", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-0a", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-06-02", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-06-02", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-06-04", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-06-04", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-06-05", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-06-05", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-06-08", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-06-08", "parent": "/usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 45, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "intel-ucode", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "readme-intel", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2503, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 45, "date": "Oct 16 09:22"}, {"filename": "06-03-02", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-03-02", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-05-00", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-05-00", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-05-01", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-05-01", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-05-02", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-05-02", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-05-03", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-05-03", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-06-00", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-06-00", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-06-05", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-06-05", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-06-0a", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-06-0a", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-06-0d", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-06-0d", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-07-01", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-07-01", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-07-02", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-07-02", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-07-03", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-07-03", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-08-01", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-08-01", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-08-03", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-08-03", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-08-06", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-08-06", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-08-0a", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-08-0a", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-09-05", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-09-05", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-0a-00", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0a-00", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-0a-01", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0a-01", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-0b-01", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0b-01", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-0b-04", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0b-04", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-0d-06", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0d-06", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-0e-08", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0e-08", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-0e-0c", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0e-0c", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-0f-02", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-02", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-0f-06", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-06", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-0f-07", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-07", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-0f-0a", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-0a", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-0f-0b", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-0b", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-0f-0d", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-0d", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-16-01", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-16-01", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-17-06", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-17-06", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-17-07", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-17-07", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-17-0a", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-17-0a", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-1a-04", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1a-04", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-1a-05", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1a-05", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-1c-02", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1c-02", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-1c-0a", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1c-0a", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-1d-01", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1d-01", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-1e-05", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1e-05", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-25-02", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-25-02", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-25-05", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-25-05", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-26-01", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-26-01", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-2a-07", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2a-07", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-2c-02", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2c-02", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-2d-06", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2d-06", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-2d-07", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2d-07", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-2e-06", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2e-06", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-2f-02", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2f-02", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-37-08", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-37-08", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-37-09", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-37-09", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-3a-09", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3a-09", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-3c-03", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3c-03", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-3d-04", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3d-04", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-3e-04", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3e-04", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-3e-06", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3e-06", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-3e-07", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3e-07", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-3f-02", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3f-02", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-3f-04", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3f-04", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-45-01", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-45-01", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-46-01", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-46-01", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-47-01", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-47-01", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-4c-03", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-4c-03", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-4c-04", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-4c-04", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-4e-03", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-4e-03", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-55-03", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-55-03", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Aug 15 2019"}, {"filename": "06-55-04", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-55-04", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-55-07", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-55-07", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-56-02", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-56-02", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-56-03", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-56-03", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-56-04", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-56-04", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-56-05", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-56-05", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-5c-02", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5c-02", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-5c-09", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5c-09", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-5c-0a", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5c-0a", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-5e-03", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5e-03", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-5f-01", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5f-01", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-7a-01", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-7a-01", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-8e-09", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-8e-09", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-8e-0a", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-8e-0a", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-8e-0b", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-8e-0b", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-8e-0c", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-8e-0c", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-9e-09", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-09", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-9e-0a", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-0a", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-9e-0b", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-0b", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-9e-0c", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-0c", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-9e-0d", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-0d", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-00-07", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-00-07", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-00-0a", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-00-0a", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-01-02", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-01-02", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-02-04", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-04", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-02-05", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-05", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-02-06", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-06", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-02-07", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-07", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-02-09", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-09", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-03-02", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-03-02", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-03-03", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-03-03", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-03-04", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-03-04", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-04-01", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-01", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-04-03", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-03", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-04-04", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-04", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-04-07", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-07", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-04-08", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-08", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-04-09", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-09", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-04-0a", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-0a", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-06-02", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-06-02", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-06-04", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-06-04", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-06-05", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-06-05", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-06-08", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-06-08", "parent": "/usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 45, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "intel-ucode", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "readme-intel", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2503, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 45, "date": "Oct 16 09:22"}, {"filename": "06-03-02", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-03-02", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-05-00", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-05-00", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-05-01", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-05-01", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-05-02", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-05-02", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-05-03", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-05-03", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-06-00", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-06-00", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-06-05", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-06-05", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-06-0a", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-06-0a", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-06-0d", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-06-0d", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-07-01", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-07-01", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-07-02", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-07-02", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-07-03", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-07-03", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-08-01", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-08-01", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-08-03", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-08-03", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-08-06", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-08-06", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-08-0a", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-08-0a", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-09-05", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-09-05", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-0a-00", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0a-00", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-0a-01", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0a-01", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-0b-01", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0b-01", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-0b-04", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0b-04", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-0d-06", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0d-06", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-0e-08", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0e-08", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-0e-0c", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0e-0c", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-0f-02", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-02", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-0f-06", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-06", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-0f-07", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-07", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-0f-0a", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-0a", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-0f-0b", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-0b", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-0f-0d", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-0d", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-16-01", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-16-01", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-17-06", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-17-06", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-17-07", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-17-07", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-17-0a", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-17-0a", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-1a-04", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1a-04", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-1a-05", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1a-05", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-1c-02", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1c-02", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-1c-0a", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1c-0a", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-1d-01", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1d-01", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-1e-05", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1e-05", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-25-02", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-25-02", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-25-05", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-25-05", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-26-01", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-26-01", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-2a-07", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2a-07", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-2c-02", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2c-02", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-2d-06", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2d-06", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-2d-07", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2d-07", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-2e-06", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2e-06", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-2f-02", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2f-02", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-37-08", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-37-08", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-37-09", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-37-09", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-3a-09", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3a-09", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-3c-03", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3c-03", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-3d-04", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3d-04", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-3e-04", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3e-04", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-3e-06", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3e-06", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-3e-07", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3e-07", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-3f-02", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3f-02", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-3f-04", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3f-04", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-45-01", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-45-01", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-46-01", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-46-01", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-47-01", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-47-01", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-4c-03", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-4c-03", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-4c-04", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-4c-04", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-4e-03", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-4e-03", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-55-03", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-55-03", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Aug 15 2019"}, {"filename": "06-55-04", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-55-04", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-55-07", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-55-07", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-56-02", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-56-02", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-56-03", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-56-03", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-56-04", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-56-04", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-56-05", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-56-05", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-5c-02", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5c-02", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-5c-09", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5c-09", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-5c-0a", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5c-0a", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-5e-03", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5e-03", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-5f-01", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5f-01", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-7a-01", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-7a-01", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-8e-09", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-8e-09", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-8e-0a", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-8e-0a", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-8e-0b", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-8e-0b", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-8e-0c", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-8e-0c", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-9e-09", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-09", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-9e-0a", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-0a", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-9e-0b", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-0b", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-9e-0c", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-0c", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "06-9e-0d", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-0d", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-00-07", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-00-07", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-00-0a", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-00-0a", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-01-02", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-01-02", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-02-04", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-04", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-02-05", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-05", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-02-06", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-06", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-02-07", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-07", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-02-09", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-09", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-03-02", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-03-02", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-03-03", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-03-03", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-03-04", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-03-04", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-04-01", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-01", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-04-03", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-03", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-04-04", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-04", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-04-07", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-07", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-04-08", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-08", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-04-09", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-09", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-04-0a", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-0a", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-06-02", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-06-02", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-06-04", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-06-04", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-06-05", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-06-05", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "0f-06-08", "link_to": "/usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-06-08", "parent": "/usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/3com", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 42, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/3com", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "3C359.bin", "parent": "/usr/lib/firmware/3com", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 24880, "date": "Aug 8 2019"}, {"filename": "typhoon.bin", "parent": "/usr/lib/firmware/3com", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 44548, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/acenic", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 36, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/acenic", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "tg1.bin", "parent": "/usr/lib/firmware/acenic", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 73116, "date": "Aug 8 2019"}, {"filename": "tg2.bin", "parent": "/usr/lib/firmware/acenic", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 77452, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/adaptec", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 52, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/adaptec", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "starfire_rx.bin", "parent": "/usr/lib/firmware/adaptec", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 832, "date": "Aug 8 2019"}, {"filename": "starfire_tx.bin", "parent": "/usr/lib/firmware/adaptec", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 832, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/advansys", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 77, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/advansys", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "3550.bin", "parent": "/usr/lib/firmware/advansys", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 5026, "date": "Aug 8 2019"}, {"filename": "38C0800.bin", "parent": "/usr/lib/firmware/advansys", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 5340, "date": "Aug 8 2019"}, {"filename": "38C1600.bin", "parent": "/usr/lib/firmware/advansys", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 6334, "date": "Aug 8 2019"}, {"filename": "mcode.bin", "parent": "/usr/lib/firmware/advansys", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2308, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/amd", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 42, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/amd", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "amd_sev_fam17h_model0xh.sbin", "parent": "/usr/lib/firmware/amd", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 32000, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/amdgpu", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/amdgpu", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "banks_k_2_smc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 61932, "date": "Aug 8 2019"}, {"filename": "bonaire_ce.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "bonaire_k_smc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 130796, "date": "Aug 8 2019"}, {"filename": "bonaire_mc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 32336, "date": "Aug 8 2019"}, {"filename": "bonaire_me.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "bonaire_mec.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17024, "date": "Aug 8 2019"}, {"filename": "bonaire_pfp.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "bonaire_rlc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8448, "date": "Aug 8 2019"}, {"filename": "bonaire_sdma1.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4456, "date": "Aug 8 2019"}, {"filename": "bonaire_sdma.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4456, "date": "Aug 8 2019"}, {"filename": "bonaire_smc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 130796, "date": "Aug 8 2019"}, {"filename": "bonaire_uvd.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 232752, "date": "Aug 8 2019"}, {"filename": "bonaire_vce.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 101072, "date": "Aug 8 2019"}, {"filename": "carrizo_ce.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "carrizo_me.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17024, "date": "Aug 8 2019"}, {"filename": "carrizo_mec2.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 262784, "date": "Aug 8 2019"}, {"filename": "carrizo_mec.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 262784, "date": "Aug 8 2019"}, {"filename": "carrizo_pfp.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17024, "date": "Aug 8 2019"}, {"filename": "carrizo_rlc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 18836, "date": "Aug 8 2019"}, {"filename": "carrizo_sdma1.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 10624, "date": "Aug 8 2019"}, {"filename": "carrizo_sdma.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 10624, "date": "Aug 8 2019"}, {"filename": "carrizo_uvd.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 271712, "date": "Aug 8 2019"}, {"filename": "carrizo_vce.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 175840, "date": "Aug 8 2019"}, {"filename": "fiji_ce.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8852, "date": "Aug 8 2019"}, {"filename": "fiji_mc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 16028, "date": "Aug 8 2019"}, {"filename": "fiji_me.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17044, "date": "Aug 8 2019"}, {"filename": "fiji_mec2.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 262824, "date": "Aug 8 2019"}, {"filename": "fiji_mec.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 262824, "date": "Aug 8 2019"}, {"filename": "fiji_pfp.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17044, "date": "Aug 8 2019"}, {"filename": "fiji_rlc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 16636, "date": "Aug 8 2019"}, {"filename": "fiji_sdma1.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 10644, "date": "Aug 8 2019"}, {"filename": "fiji_sdma.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 10644, "date": "Aug 8 2019"}, {"filename": "fiji_smc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 129604, "date": "Aug 8 2019"}, {"filename": "fiji_uvd.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 266768, "date": "Aug 8 2019"}, {"filename": "fiji_vce.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 161024, "date": "Aug 8 2019"}, {"filename": "hainan_ce.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "hainan_k_smc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 61876, "date": "Aug 8 2019"}, {"filename": "hainan_mc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 31996, "date": "Aug 8 2019"}, {"filename": "hainan_me.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "hainan_pfp.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "hainan_rlc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8448, "date": "Aug 8 2019"}, {"filename": "hainan_smc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 61444, "date": "Aug 8 2019"}, {"filename": "hawaii_ce.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "hawaii_k_smc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 130796, "date": "Aug 8 2019"}, {"filename": "hawaii_mc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 32796, "date": "Aug 8 2019"}, {"filename": "hawaii_me.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "hawaii_mec.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17024, "date": "Aug 8 2019"}, {"filename": "hawaii_pfp.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "hawaii_rlc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8448, "date": "Aug 8 2019"}, {"filename": "hawaii_sdma1.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4456, "date": "Aug 8 2019"}, {"filename": "hawaii_sdma.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4456, "date": "Aug 8 2019"}, {"filename": "hawaii_smc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 130796, "date": "Aug 8 2019"}, {"filename": "hawaii_uvd.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 232752, "date": "Aug 8 2019"}, {"filename": "hawaii_vce.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 101072, "date": "Aug 8 2019"}, {"filename": "kabini_ce.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "kabini_me.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "kabini_mec.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17024, "date": "Aug 8 2019"}, {"filename": "kabini_pfp.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "kabini_rlc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 10496, "date": "Aug 8 2019"}, {"filename": "kabini_sdma1.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4456, "date": "Aug 8 2019"}, {"filename": "kabini_sdma.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4456, "date": "Aug 8 2019"}, {"filename": "kabini_uvd.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 232752, "date": "Aug 8 2019"}, {"filename": "kabini_vce.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 101072, "date": "Aug 8 2019"}, {"filename": "kaveri_ce.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "kaveri_me.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "kaveri_mec2.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17024, "date": "Aug 8 2019"}, {"filename": "kaveri_mec.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17024, "date": "Aug 8 2019"}, {"filename": "kaveri_pfp.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "kaveri_rlc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 10496, "date": "Aug 8 2019"}, {"filename": "kaveri_sdma1.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4456, "date": "Aug 8 2019"}, {"filename": "kaveri_sdma.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4456, "date": "Aug 8 2019"}, {"filename": "kaveri_uvd.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 232752, "date": "Aug 8 2019"}, {"filename": "kaveri_vce.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 101072, "date": "Aug 8 2019"}, {"filename": "mullins_ce.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "mullins_me.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "mullins_mec.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17024, "date": "Aug 8 2019"}, {"filename": "mullins_pfp.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "mullins_rlc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 10496, "date": "Aug 8 2019"}, {"filename": "mullins_sdma1.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4456, "date": "Aug 8 2019"}, {"filename": "mullins_sdma.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4456, "date": "Aug 8 2019"}, {"filename": "mullins_uvd.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 232752, "date": "Aug 8 2019"}, {"filename": "mullins_vce.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 101072, "date": "Aug 8 2019"}, {"filename": "oland_ce.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "oland_k_smc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 62692, "date": "Aug 8 2019"}, {"filename": "oland_mc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 31996, "date": "Aug 8 2019"}, {"filename": "oland_me.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "oland_pfp.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "oland_rlc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8448, "date": "Aug 8 2019"}, {"filename": "oland_smc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 62260, "date": "Aug 8 2019"}, {"filename": "picasso_asd.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 49664, "date": "Aug 8 2019"}, {"filename": "picasso_ce.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 9344, "date": "Aug 8 2019"}, {"filename": "picasso_gpu_info.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 316, "date": "Aug 8 2019"}, {"filename": "picasso_me.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17536, "date": "Aug 8 2019"}, {"filename": "picasso_mec2.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 268048, "date": "Aug 8 2019"}, {"filename": "picasso_mec.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 268048, "date": "Aug 8 2019"}, {"filename": "picasso_pfp.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 21632, "date": "Aug 8 2019"}, {"filename": "picasso_rlc_am4.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 39068, "date": "Aug 8 2019"}, {"filename": "picasso_rlc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 39068, "date": "Aug 8 2019"}, {"filename": "picasso_sdma.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17408, "date": "Aug 8 2019"}, {"filename": "picasso_vcn.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 341728, "date": "Aug 8 2019"}, {"filename": "pitcairn_ce.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "pitcairn_k_smc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 61712, "date": "Aug 8 2019"}, {"filename": "pitcairn_mc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 31644, "date": "Aug 8 2019"}, {"filename": "pitcairn_me.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "pitcairn_pfp.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "pitcairn_rlc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8448, "date": "Aug 8 2019"}, {"filename": "pitcairn_smc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 61280, "date": "Aug 8 2019"}, {"filename": "polaris10_ce_2.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8852, "date": "Aug 8 2019"}, {"filename": "polaris10_ce.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8852, "date": "Aug 8 2019"}, {"filename": "polaris10_k2_smc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 130244, "date": "Aug 8 2019"}, {"filename": "polaris10_k_mc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 32832, "date": "Aug 8 2019"}, {"filename": "polaris10_k_smc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 130244, "date": "Aug 8 2019"}, {"filename": "polaris10_mc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 32732, "date": "Aug 8 2019"}, {"filename": "polaris10_me_2.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17044, "date": "Aug 8 2019"}, {"filename": "polaris10_me.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17044, "date": "Aug 8 2019"}, {"filename": "polaris10_mec2_2.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 262824, "date": "Aug 8 2019"}, {"filename": "polaris10_mec_2.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 262824, "date": "Aug 8 2019"}, {"filename": "polaris10_mec2.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 262824, "date": "Aug 8 2019"}, {"filename": "polaris10_mec.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 262824, "date": "Aug 8 2019"}, {"filename": "polaris10_pfp_2.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17044, "date": "Aug 8 2019"}, {"filename": "polaris10_pfp.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17044, "date": "Aug 8 2019"}, {"filename": "polaris10_rlc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 23488, "date": "Aug 8 2019"}, {"filename": "polaris10_sdma1.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 12692, "date": "Aug 8 2019"}, {"filename": "polaris10_sdma.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 12692, "date": "Aug 8 2019"}, {"filename": "polaris10_smc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 130216, "date": "Aug 8 2019"}, {"filename": "polaris10_smc_sk.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 130196, "date": "Aug 8 2019"}, {"filename": "polaris10_uvd.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 375424, "date": "Aug 8 2019"}, {"filename": "polaris10_vce.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 166816, "date": "Aug 8 2019"}, {"filename": "polaris11_ce_2.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8852, "date": "Aug 8 2019"}, {"filename": "polaris11_ce.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8852, "date": "Aug 8 2019"}, {"filename": "polaris11_k2_smc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 130228, "date": "Aug 8 2019"}, {"filename": "polaris11_k_mc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 32832, "date": "Aug 8 2019"}, {"filename": "polaris11_k_smc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 130228, "date": "Aug 8 2019"}, {"filename": "polaris11_mc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 33104, "date": "Aug 8 2019"}, {"filename": "polaris11_me_2.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17044, "date": "Aug 8 2019"}, {"filename": "polaris11_me.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17044, "date": "Aug 8 2019"}, {"filename": "polaris11_mec2_2.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 262824, "date": "Aug 8 2019"}, {"filename": "polaris11_mec_2.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 262824, "date": "Aug 8 2019"}, {"filename": "polaris11_mec2.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 262824, "date": "Aug 8 2019"}, {"filename": "polaris11_mec.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 262824, "date": "Aug 8 2019"}, {"filename": "polaris11_pfp_2.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17044, "date": "Aug 8 2019"}, {"filename": "polaris11_pfp.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17044, "date": "Aug 8 2019"}, {"filename": "polaris11_rlc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 22688, "date": "Aug 8 2019"}, {"filename": "polaris11_sdma1.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 12692, "date": "Aug 8 2019"}, {"filename": "polaris11_sdma.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 12692, "date": "Aug 8 2019"}, {"filename": "polaris11_smc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 130196, "date": "Aug 8 2019"}, {"filename": "polaris11_smc_sk.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 130196, "date": "Aug 8 2019"}, {"filename": "polaris11_uvd.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 375424, "date": "Aug 8 2019"}, {"filename": "polaris11_vce.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 166816, "date": "Aug 8 2019"}, {"filename": "polaris12_ce_2.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8852, "date": "Aug 8 2019"}, {"filename": "polaris12_ce.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8852, "date": "Aug 8 2019"}, {"filename": "polaris12_k_mc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 32832, "date": "Aug 8 2019"}, {"filename": "polaris12_k_smc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 130388, "date": "Aug 8 2019"}, {"filename": "polaris12_mc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 32608, "date": "Aug 8 2019"}, {"filename": "polaris12_me_2.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17044, "date": "Aug 8 2019"}, {"filename": "polaris12_me.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17044, "date": "Aug 8 2019"}, {"filename": "polaris12_mec2_2.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 262824, "date": "Aug 8 2019"}, {"filename": "polaris12_mec_2.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 262824, "date": "Aug 8 2019"}, {"filename": "polaris12_mec2.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 262824, "date": "Aug 8 2019"}, {"filename": "polaris12_mec.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 262824, "date": "Aug 8 2019"}, {"filename": "polaris12_pfp_2.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17044, "date": "Aug 8 2019"}, {"filename": "polaris12_pfp.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17044, "date": "Aug 8 2019"}, {"filename": "polaris12_rlc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 16660, "date": "Aug 8 2019"}, {"filename": "polaris12_sdma1.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 12692, "date": "Aug 8 2019"}, {"filename": "polaris12_sdma.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 12692, "date": "Aug 8 2019"}, {"filename": "polaris12_smc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 130388, "date": "Aug 8 2019"}, {"filename": "polaris12_uvd.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 375424, "date": "Aug 8 2019"}, {"filename": "polaris12_vce.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 166816, "date": "Aug 8 2019"}, {"filename": "raven2_asd.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 49664, "date": "Aug 8 2019"}, {"filename": "raven2_ce.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 9344, "date": "Aug 8 2019"}, {"filename": "raven2_gpu_info.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 316, "date": "Aug 8 2019"}, {"filename": "raven2_me.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17536, "date": "Aug 8 2019"}, {"filename": "raven2_mec2.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 268048, "date": "Aug 8 2019"}, {"filename": "raven2_mec.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 268048, "date": "Aug 8 2019"}, {"filename": "raven2_pfp.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 21632, "date": "Aug 8 2019"}, {"filename": "raven2_rlc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 38324, "date": "Aug 8 2019"}, {"filename": "raven2_sdma.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17408, "date": "Aug 8 2019"}, {"filename": "raven2_vcn.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 343456, "date": "Aug 8 2019"}, {"filename": "raven_asd.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 49664, "date": "Aug 8 2019"}, {"filename": "raven_ce.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 9344, "date": "Aug 8 2019"}, {"filename": "raven_dmcu.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 24416, "date": "Aug 8 2019"}, {"filename": "raven_gpu_info.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 316, "date": "Aug 8 2019"}, {"filename": "raven_me.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17536, "date": "Aug 8 2019"}, {"filename": "raven_mec2.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 268048, "date": "Aug 8 2019"}, {"filename": "raven_mec.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 268048, "date": "Aug 8 2019"}, {"filename": "raven_pfp.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 21632, "date": "Aug 8 2019"}, {"filename": "raven_rlc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 39036, "date": "Aug 8 2019"}, {"filename": "raven_sdma.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17408, "date": "Aug 8 2019"}, {"filename": "raven_vcn.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 341728, "date": "Aug 8 2019"}, {"filename": "si58_mc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 32488, "date": "Aug 8 2019"}, {"filename": "stoney_ce.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "stoney_me.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17024, "date": "Aug 8 2019"}, {"filename": "stoney_mec.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 262784, "date": "Aug 8 2019"}, {"filename": "stoney_pfp.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17024, "date": "Aug 8 2019"}, {"filename": "stoney_rlc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17236, "date": "Aug 8 2019"}, {"filename": "stoney_sdma.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 10624, "date": "Aug 8 2019"}, {"filename": "stoney_uvd.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 277216, "date": "Aug 8 2019"}, {"filename": "stoney_vce.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 166816, "date": "Aug 8 2019"}, {"filename": "tahiti_ce.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "tahiti_k_smc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 64364, "date": "Aug 8 2019"}, {"filename": "tahiti_mc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 31776, "date": "Aug 8 2019"}, {"filename": "tahiti_me.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "tahiti_pfp.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "tahiti_rlc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8448, "date": "Aug 8 2019"}, {"filename": "tahiti_smc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 63932, "date": "Aug 8 2019"}, {"filename": "tonga_ce.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8852, "date": "Aug 8 2019"}, {"filename": "tonga_k_smc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 130460, "date": "Aug 8 2019"}, {"filename": "tonga_mc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 31352, "date": "Aug 8 2019"}, {"filename": "tonga_me.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17044, "date": "Aug 8 2019"}, {"filename": "tonga_mec2.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 262824, "date": "Aug 8 2019"}, {"filename": "tonga_mec.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 262824, "date": "Aug 8 2019"}, {"filename": "tonga_pfp.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17044, "date": "Aug 8 2019"}, {"filename": "tonga_rlc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 14756, "date": "Aug 8 2019"}, {"filename": "tonga_sdma1.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 10644, "date": "Aug 8 2019"}, {"filename": "tonga_sdma.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 10644, "date": "Aug 8 2019"}, {"filename": "tonga_smc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 130460, "date": "Aug 8 2019"}, {"filename": "tonga_uvd.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 325312, "date": "Aug 8 2019"}, {"filename": "tonga_vce.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 161024, "date": "Aug 8 2019"}, {"filename": "topaz_ce.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "topaz_k_smc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 80544, "date": "Aug 8 2019"}, {"filename": "topaz_mc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 32100, "date": "Aug 8 2019"}, {"filename": "topaz_me.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17024, "date": "Aug 8 2019"}, {"filename": "topaz_mec2.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 262784, "date": "Aug 8 2019"}, {"filename": "topaz_mec.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 262784, "date": "Aug 8 2019"}, {"filename": "topaz_pfp.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17024, "date": "Aug 8 2019"}, {"filename": "topaz_rlc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8448, "date": "Aug 8 2019"}, {"filename": "topaz_sdma1.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8576, "date": "Aug 8 2019"}, {"filename": "topaz_sdma.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8576, "date": "Aug 8 2019"}, {"filename": "topaz_smc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 80544, "date": "Aug 8 2019"}, {"filename": "vega10_acg_smc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 262912, "date": "Aug 8 2019"}, {"filename": "vega10_asd.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 37376, "date": "Aug 8 2019"}, {"filename": "vega10_ce.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 9344, "date": "Aug 8 2019"}, {"filename": "vega10_gpu_info.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 316, "date": "Aug 8 2019"}, {"filename": "vega10_me.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17536, "date": "Aug 8 2019"}, {"filename": "vega10_mec2.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 268048, "date": "Aug 8 2019"}, {"filename": "vega10_mec.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 268048, "date": "Aug 8 2019"}, {"filename": "vega10_pfp.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 21632, "date": "Aug 8 2019"}, {"filename": "vega10_rlc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17152, "date": "Aug 8 2019"}, {"filename": "vega10_sdma1.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17408, "date": "Aug 8 2019"}, {"filename": "vega10_sdma.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17408, "date": "Aug 8 2019"}, {"filename": "vega10_smc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 262912, "date": "Aug 8 2019"}, {"filename": "vega10_sos.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 150400, "date": "Aug 8 2019"}, {"filename": "vega10_uvd.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 375424, "date": "Aug 8 2019"}, {"filename": "vega10_vce.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 165344, "date": "Aug 8 2019"}, {"filename": "vega12_asd.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 49664, "date": "Aug 8 2019"}, {"filename": "vega12_ce.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 9344, "date": "Aug 8 2019"}, {"filename": "vega12_gpu_info.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 316, "date": "Aug 8 2019"}, {"filename": "vega12_me.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17536, "date": "Aug 8 2019"}, {"filename": "vega12_mec2.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 268048, "date": "Aug 8 2019"}, {"filename": "vega12_mec.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 268048, "date": "Aug 8 2019"}, {"filename": "vega12_pfp.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 21632, "date": "Aug 8 2019"}, {"filename": "vega12_rlc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 28636, "date": "Aug 8 2019"}, {"filename": "vega12_sdma1.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17408, "date": "Aug 8 2019"}, {"filename": "vega12_sdma.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17408, "date": "Aug 8 2019"}, {"filename": "vega12_smc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 262912, "date": "Aug 8 2019"}, {"filename": "vega12_sos.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 170896, "date": "Aug 8 2019"}, {"filename": "vega12_uvd.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 374688, "date": "Aug 8 2019"}, {"filename": "vega12_vce.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 165408, "date": "Aug 8 2019"}, {"filename": "vega20_asd.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 57856, "date": "Aug 8 2019"}, {"filename": "vega20_ce.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 9344, "date": "Aug 8 2019"}, {"filename": "vega20_me.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17536, "date": "Aug 8 2019"}, {"filename": "vega20_mec2.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 268048, "date": "Aug 8 2019"}, {"filename": "vega20_mec.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 268048, "date": "Aug 8 2019"}, {"filename": "vega20_pfp.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 21632, "date": "Aug 8 2019"}, {"filename": "vega20_rlc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 32052, "date": "Aug 8 2019"}, {"filename": "vega20_sdma1.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17408, "date": "Aug 8 2019"}, {"filename": "vega20_sdma.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17408, "date": "Aug 8 2019"}, {"filename": "vega20_smc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 262912, "date": "Aug 8 2019"}, {"filename": "vega20_sos.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 166800, "date": "Aug 8 2019"}, {"filename": "vega20_uvd.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 379328, "date": "Aug 8 2019"}, {"filename": "vega20_vce.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 165408, "date": "Aug 8 2019"}, {"filename": "vegam_ce.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8852, "date": "Aug 8 2019"}, {"filename": "vegam_me.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17044, "date": "Aug 8 2019"}, {"filename": "vegam_mec2.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 262824, "date": "Aug 8 2019"}, {"filename": "vegam_mec.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 262824, "date": "Aug 8 2019"}, {"filename": "vegam_pfp.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17044, "date": "Aug 8 2019"}, {"filename": "vegam_rlc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 16660, "date": "Aug 8 2019"}, {"filename": "vegam_sdma1.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 12692, "date": "Aug 8 2019"}, {"filename": "vegam_sdma.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 12692, "date": "Aug 8 2019"}, {"filename": "vegam_smc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 130964, "date": "Aug 8 2019"}, {"filename": "vegam_uvd.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 375424, "date": "Aug 8 2019"}, {"filename": "vegam_vce.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 166816, "date": "Aug 8 2019"}, {"filename": "verde_ce.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "verde_k_smc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 63804, "date": "Aug 8 2019"}, {"filename": "verde_mc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 32044, "date": "Aug 8 2019"}, {"filename": "verde_me.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "verde_pfp.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "verde_rlc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8448, "date": "Aug 8 2019"}, {"filename": "verde_smc.bin", "parent": "/usr/lib/firmware/amdgpu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 61776, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/amd-ucode", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 264, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/amd-ucode", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "microcode_amd.bin", "parent": "/usr/lib/firmware/amd-ucode", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 12684, "date": "Aug 8 2019"}, {"filename": "microcode_amd.bin.asc", "parent": "/usr/lib/firmware/amd-ucode", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 490, "date": "Aug 8 2019"}, {"filename": "microcode_amd_fam15h.bin", "parent": "/usr/lib/firmware/amd-ucode", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 7876, "date": "Aug 8 2019"}, {"filename": "microcode_amd_fam15h.bin.asc", "parent": "/usr/lib/firmware/amd-ucode", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 473, "date": "Aug 8 2019"}, {"filename": "microcode_amd_fam16h.bin", "parent": "/usr/lib/firmware/amd-ucode", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 3510, "date": "Aug 8 2019"}, {"filename": "microcode_amd_fam16h.bin.asc", "parent": "/usr/lib/firmware/amd-ucode", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 473, "date": "Aug 8 2019"}, {"filename": "microcode_amd_fam17h.bin", "parent": "/usr/lib/firmware/amd-ucode", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 6476, "date": "Aug 8 2019"}, {"filename": "microcode_amd_fam17h.bin.asc", "parent": "/usr/lib/firmware/amd-ucode", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 833, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/ar3k", "flags": "drwxr-xr-x.", "links": 8, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/ar3k", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "1020200", "parent": "/usr/lib/firmware/ar3k", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 67, "date": "Oct 16 09:22"}, {"filename": "1020201", "parent": "/usr/lib/firmware/ar3k", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 45, "date": "Oct 16 09:22"}, {"filename": "1020201coex", "parent": "/usr/lib/firmware/ar3k", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 50, "date": "Oct 16 09:22"}, {"filename": "30000", "parent": "/usr/lib/firmware/ar3k", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 67, "date": "Oct 16 09:22"}, {"filename": "30101", "parent": "/usr/lib/firmware/ar3k", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 67, "date": "Oct 16 09:22"}, {"filename": "30101coex", "parent": "/usr/lib/firmware/ar3k", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 126, "date": "Oct 16 09:22"}, {"filename": "AthrBT_0x01020001.dfu", "parent": "/usr/lib/firmware/ar3k", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 55244, "date": "Aug 8 2019"}, {"filename": "AthrBT_0x01020200.dfu", "parent": "/usr/lib/firmware/ar3k", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 40724, "date": "Aug 8 2019"}, {"filename": "AthrBT_0x01020201.dfu", "parent": "/usr/lib/firmware/ar3k", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 48188, "date": "Aug 8 2019"}, {"filename": "AthrBT_0x11020000.dfu", "parent": "/usr/lib/firmware/ar3k", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 36828, "date": "Aug 8 2019"}, {"filename": "AthrBT_0x11020100.dfu", "parent": "/usr/lib/firmware/ar3k", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 46852, "date": "Aug 8 2019"}, {"filename": "AthrBT_0x31010000.dfu", "parent": "/usr/lib/firmware/ar3k", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 40652, "date": "Aug 8 2019"}, {"filename": "AthrBT_0x31010100.dfu", "parent": "/usr/lib/firmware/ar3k", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 37796, "date": "Aug 8 2019"}, {"filename": "AthrBT_0x41020000.dfu", "parent": "/usr/lib/firmware/ar3k", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 31500, "date": "Aug 8 2019"}, {"filename": "ramps_0x01020001_26.dfu", "parent": "/usr/lib/firmware/ar3k", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1224, "date": "Aug 8 2019"}, {"filename": "ramps_0x01020200_26.dfu", "parent": "/usr/lib/firmware/ar3k", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1274, "date": "Aug 8 2019"}, {"filename": "ramps_0x01020200_40.dfu", "parent": "/usr/lib/firmware/ar3k", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1204, "date": "Aug 8 2019"}, {"filename": "ramps_0x01020201_26.dfu", "parent": "/usr/lib/firmware/ar3k", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 264, "date": "Aug 8 2019"}, {"filename": "ramps_0x01020201_40.dfu", "parent": "/usr/lib/firmware/ar3k", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 264, "date": "Aug 8 2019"}, {"filename": "ramps_0x11020000_40.dfu", "parent": "/usr/lib/firmware/ar3k", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1796, "date": "Aug 8 2019"}, {"filename": "ramps_0x11020100_40.dfu", "parent": "/usr/lib/firmware/ar3k", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1802, "date": "Aug 8 2019"}, {"filename": "ramps_0x31010000_40.dfu", "parent": "/usr/lib/firmware/ar3k", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1926, "date": "Aug 8 2019"}, {"filename": "ramps_0x31010100_40.dfu", "parent": "/usr/lib/firmware/ar3k", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1922, "date": "Aug 8 2019"}, {"filename": "ramps_0x41020000_40.dfu", "parent": "/usr/lib/firmware/ar3k", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1820, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/ar3k/1020200", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 67, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/ar3k/1020200", "flags": "drwxr-xr-x.", "links": 8, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "ar3kbdaddr.pst", "parent": "/usr/lib/firmware/ar3k/1020200", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 14, "date": "Aug 8 2019"}, {"filename": "PS_ASIC.pst", "parent": "/usr/lib/firmware/ar3k/1020200", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4742, "date": "Aug 8 2019"}, {"filename": "RamPatch.txt", "parent": "/usr/lib/firmware/ar3k/1020200", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 52221, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/ar3k/1020201", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 45, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/ar3k/1020201", "flags": "drwxr-xr-x.", "links": 8, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "PS_ASIC.pst", "parent": "/usr/lib/firmware/ar3k/1020201", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 910, "date": "Aug 8 2019"}, {"filename": "RamPatch.txt", "parent": "/usr/lib/firmware/ar3k/1020201", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 34299, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/ar3k/1020201coex", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 50, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/ar3k/1020201coex", "flags": "drwxr-xr-x.", "links": 8, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "ramps_0x01020201_26_HighPriority.dfu", "parent": "/usr/lib/firmware/ar3k/1020201coex", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 336, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/ar3k/30000", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 67, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/ar3k/30000", "flags": "drwxr-xr-x.", "links": 8, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "ar3kbdaddr.pst", "parent": "/usr/lib/firmware/ar3k/30000", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 14, "date": "Aug 8 2019"}, {"filename": "PS_ASIC.pst", "parent": "/usr/lib/firmware/ar3k/30000", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1353, "date": "Aug 8 2019"}, {"filename": "RamPatch.txt", "parent": "/usr/lib/firmware/ar3k/30000", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2776, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/ar3k/30101", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 67, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/ar3k/30101", "flags": "drwxr-xr-x.", "links": 8, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "ar3kbdaddr.pst", "parent": "/usr/lib/firmware/ar3k/30101", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 14, "date": "Aug 8 2019"}, {"filename": "PS_ASIC.pst", "parent": "/usr/lib/firmware/ar3k/30101", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1479, "date": "Aug 8 2019"}, {"filename": "RamPatch.txt", "parent": "/usr/lib/firmware/ar3k/30101", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17300, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/ar3k/30101coex", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 126, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/ar3k/30101coex", "flags": "drwxr-xr-x.", "links": 8, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "ar3kbdaddr.pst", "parent": "/usr/lib/firmware/ar3k/30101coex", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 13, "date": "Aug 8 2019"}, {"filename": "PS_ASIC_aclHighPri.pst", "parent": "/usr/lib/firmware/ar3k/30101coex", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2166, "date": "Aug 8 2019"}, {"filename": "PS_ASIC_aclLowPri.pst", "parent": "/usr/lib/firmware/ar3k/30101coex", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2166, "date": "Aug 8 2019"}, {"filename": "PS_ASIC.pst", "parent": "/usr/lib/firmware/ar3k/30101coex", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2166, "date": "Aug 8 2019"}, {"filename": "RamPatch.txt", "parent": "/usr/lib/firmware/ar3k/30101coex", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 19436, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/asihpi", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 158, "date": "Aug 15 2019"}, {"filename": "..", "parent": "/usr/lib/firmware/asihpi", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "dsp2400.bin", "parent": "/usr/lib/firmware/asihpi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 255196, "date": "Mar 5 2015"}, {"filename": "dsp5000.bin", "parent": "/usr/lib/firmware/asihpi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 186396, "date": "Mar 5 2015"}, {"filename": "dsp6200.bin", "parent": "/usr/lib/firmware/asihpi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 848608, "date": "Mar 5 2015"}, {"filename": "dsp6205.bin", "parent": "/usr/lib/firmware/asihpi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 59548, "date": "Mar 5 2015"}, {"filename": "dsp6400.bin", "parent": "/usr/lib/firmware/asihpi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 646928, "date": "Mar 5 2015"}, {"filename": "dsp6600.bin", "parent": "/usr/lib/firmware/asihpi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 649812, "date": "Mar 5 2015"}, {"filename": "dsp8700.bin", "parent": "/usr/lib/firmware/asihpi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 364996, "date": "Mar 5 2015"}, {"filename": "dsp8900.bin", "parent": "/usr/lib/firmware/asihpi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 507124, "date": "Mar 5 2015"}, {"filename": ".", "parent": "/usr/lib/firmware/ath10k", "flags": "drwxr-xr-x.", "links": 10, "owner": "root", "group": "root", "size": 126, "date": "Aug 8 2019"}, {"filename": "..", "parent": "/usr/lib/firmware/ath10k", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "QCA4019", "parent": "/usr/lib/firmware/ath10k", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 19, "date": "Aug 8 2019"}, {"filename": "QCA6174", "parent": "/usr/lib/firmware/ath10k", "flags": "drwxr-xr-x.", "links": 4, "owner": "root", "group": "root", "size": 32, "date": "Aug 8 2019"}, {"filename": "QCA9377", "parent": "/usr/lib/firmware/ath10k", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 19, "date": "Aug 8 2019"}, {"filename": "QCA9887", "parent": "/usr/lib/firmware/ath10k", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 19, "date": "Aug 8 2019"}, {"filename": "QCA9888", "parent": "/usr/lib/firmware/ath10k", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 19, "date": "Aug 8 2019"}, {"filename": "QCA988X", "parent": "/usr/lib/firmware/ath10k", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 19, "date": "Aug 8 2019"}, {"filename": "QCA9984", "parent": "/usr/lib/firmware/ath10k", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 19, "date": "Aug 8 2019"}, {"filename": "QCA99X0", "parent": "/usr/lib/firmware/ath10k", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 19, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/ath10k/QCA4019", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 19, "date": "Aug 8 2019"}, {"filename": "..", "parent": "/usr/lib/firmware/ath10k/QCA4019", "flags": "drwxr-xr-x.", "links": 10, "owner": "root", "group": "root", "size": 126, "date": "Aug 8 2019"}, {"filename": "hw1.0", "parent": "/usr/lib/firmware/ath10k/QCA4019", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 83, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/ath10k/QCA4019/hw1.0", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 83, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/ath10k/QCA4019/hw1.0", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 19, "date": "Aug 8 2019"}, {"filename": "board-2.bin", "parent": "/usr/lib/firmware/ath10k/QCA4019/hw1.0", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 449316, "date": "Aug 8 2019"}, {"filename": "firmware-5.bin", "parent": "/usr/lib/firmware/ath10k/QCA4019/hw1.0", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 583344, "date": "Aug 8 2019"}, {"filename": "notice_ath10k_firmware-5.txt", "parent": "/usr/lib/firmware/ath10k/QCA4019/hw1.0", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 30479, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/ath10k/QCA6174", "flags": "drwxr-xr-x.", "links": 4, "owner": "root", "group": "root", "size": 32, "date": "Aug 8 2019"}, {"filename": "..", "parent": "/usr/lib/firmware/ath10k/QCA6174", "flags": "drwxr-xr-x.", "links": 10, "owner": "root", "group": "root", "size": 126, "date": "Aug 8 2019"}, {"filename": "hw2.1", "parent": "/usr/lib/firmware/ath10k/QCA6174", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 100, "date": "Oct 16 09:22"}, {"filename": "hw3.0", "parent": "/usr/lib/firmware/ath10k/QCA6174", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 158, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/ath10k/QCA6174/hw2.1", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 100, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/ath10k/QCA6174/hw2.1", "flags": "drwxr-xr-x.", "links": 4, "owner": "root", "group": "root", "size": 32, "date": "Aug 8 2019"}, {"filename": "board-2.bin", "parent": "/usr/lib/firmware/ath10k/QCA6174/hw2.1", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 263188, "date": "Aug 8 2019"}, {"filename": "board.bin", "parent": "/usr/lib/firmware/ath10k/QCA6174/hw2.1", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8124, "date": "Aug 8 2019"}, {"filename": "firmware-5.bin", "parent": "/usr/lib/firmware/ath10k/QCA6174/hw2.1", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 498172, "date": "Aug 8 2019"}, {"filename": "notice_ath10k_firmware-5.txt", "parent": "/usr/lib/firmware/ath10k/QCA6174/hw2.1", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 46087, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/ath10k/QCA6174/hw3.0", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 158, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/ath10k/QCA6174/hw3.0", "flags": "drwxr-xr-x.", "links": 4, "owner": "root", "group": "root", "size": 32, "date": "Aug 8 2019"}, {"filename": "board-2.bin", "parent": "/usr/lib/firmware/ath10k/QCA6174/hw3.0", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 567608, "date": "Aug 8 2019"}, {"filename": "board.bin", "parent": "/usr/lib/firmware/ath10k/QCA6174/hw3.0", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8124, "date": "Aug 8 2019"}, {"filename": "firmware-4.bin", "parent": "/usr/lib/firmware/ath10k/QCA6174/hw3.0", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 733784, "date": "Aug 8 2019"}, {"filename": "firmware-6.bin", "parent": "/usr/lib/firmware/ath10k/QCA6174/hw3.0", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 731276, "date": "Aug 8 2019"}, {"filename": "notice_ath10k_firmware-4.txt", "parent": "/usr/lib/firmware/ath10k/QCA6174/hw3.0", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 79689, "date": "Aug 8 2019"}, {"filename": "notice_ath10k_firmware-6.txt", "parent": "/usr/lib/firmware/ath10k/QCA6174/hw3.0", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 53425, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/ath10k/QCA9377", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 19, "date": "Aug 8 2019"}, {"filename": "..", "parent": "/usr/lib/firmware/ath10k/QCA9377", "flags": "drwxr-xr-x.", "links": 10, "owner": "root", "group": "root", "size": 126, "date": "Aug 8 2019"}, {"filename": "hw1.0", "parent": "/usr/lib/firmware/ath10k/QCA9377", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 158, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/ath10k/QCA9377/hw1.0", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 158, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/ath10k/QCA9377/hw1.0", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 19, "date": "Aug 8 2019"}, {"filename": "board-2.bin", "parent": "/usr/lib/firmware/ath10k/QCA9377/hw1.0", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 304308, "date": "Aug 8 2019"}, {"filename": "board.bin", "parent": "/usr/lib/firmware/ath10k/QCA9377/hw1.0", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8124, "date": "Aug 8 2019"}, {"filename": "firmware-5.bin", "parent": "/usr/lib/firmware/ath10k/QCA9377/hw1.0", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 783336, "date": "Aug 8 2019"}, {"filename": "firmware-6.bin", "parent": "/usr/lib/firmware/ath10k/QCA9377/hw1.0", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 751436, "date": "Aug 8 2019"}, {"filename": "notice_ath10k_firmware-5.txt", "parent": "/usr/lib/firmware/ath10k/QCA9377/hw1.0", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 46143, "date": "Aug 8 2019"}, {"filename": "notice_ath10k_firmware-6.txt", "parent": "/usr/lib/firmware/ath10k/QCA9377/hw1.0", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 53425, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/ath10k/QCA9887", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 19, "date": "Aug 8 2019"}, {"filename": "..", "parent": "/usr/lib/firmware/ath10k/QCA9887", "flags": "drwxr-xr-x.", "links": 10, "owner": "root", "group": "root", "size": 126, "date": "Aug 8 2019"}, {"filename": "hw1.0", "parent": "/usr/lib/firmware/ath10k/QCA9887", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 81, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/ath10k/QCA9887/hw1.0", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 81, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/ath10k/QCA9887/hw1.0", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 19, "date": "Aug 8 2019"}, {"filename": "board.bin", "parent": "/usr/lib/firmware/ath10k/QCA9887/hw1.0", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1024, "date": "Aug 8 2019"}, {"filename": "firmware-5.bin", "parent": "/usr/lib/firmware/ath10k/QCA9887/hw1.0", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 237660, "date": "Aug 8 2019"}, {"filename": "notice_ath10k_firmware-5.txt", "parent": "/usr/lib/firmware/ath10k/QCA9887/hw1.0", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 15441, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/ath10k/QCA9888", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 19, "date": "Aug 8 2019"}, {"filename": "..", "parent": "/usr/lib/firmware/ath10k/QCA9888", "flags": "drwxr-xr-x.", "links": 10, "owner": "root", "group": "root", "size": 126, "date": "Aug 8 2019"}, {"filename": "hw2.0", "parent": "/usr/lib/firmware/ath10k/QCA9888", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 83, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/ath10k/QCA9888/hw2.0", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 83, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/ath10k/QCA9888/hw2.0", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 19, "date": "Aug 8 2019"}, {"filename": "board-2.bin", "parent": "/usr/lib/firmware/ath10k/QCA9888/hw2.0", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 84928, "date": "Aug 8 2019"}, {"filename": "firmware-5.bin", "parent": "/usr/lib/firmware/ath10k/QCA9888/hw2.0", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 688536, "date": "Aug 8 2019"}, {"filename": "notice_ath10k_firmware-5.txt", "parent": "/usr/lib/firmware/ath10k/QCA9888/hw2.0", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 30479, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/ath10k/QCA988X", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 19, "date": "Aug 8 2019"}, {"filename": "..", "parent": "/usr/lib/firmware/ath10k/QCA988X", "flags": "drwxr-xr-x.", "links": 10, "owner": "root", "group": "root", "size": 126, "date": "Aug 8 2019"}, {"filename": "hw2.0", "parent": "/usr/lib/firmware/ath10k/QCA988X", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 139, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/ath10k/QCA988X/hw2.0", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 139, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/ath10k/QCA988X/hw2.0", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 19, "date": "Aug 8 2019"}, {"filename": "board.bin", "parent": "/usr/lib/firmware/ath10k/QCA988X/hw2.0", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2116, "date": "Aug 8 2019"}, {"filename": "firmware-4.bin", "parent": "/usr/lib/firmware/ath10k/QCA988X/hw2.0", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 241892, "date": "Aug 8 2019"}, {"filename": "firmware-5.bin", "parent": "/usr/lib/firmware/ath10k/QCA988X/hw2.0", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 248840, "date": "Aug 8 2019"}, {"filename": "notice_ath10k_firmware-4.txt", "parent": "/usr/lib/firmware/ath10k/QCA988X/hw2.0", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 13890, "date": "Aug 8 2019"}, {"filename": "notice_ath10k_firmware-5.txt", "parent": "/usr/lib/firmware/ath10k/QCA988X/hw2.0", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 15441, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/ath10k/QCA9984", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 19, "date": "Aug 8 2019"}, {"filename": "..", "parent": "/usr/lib/firmware/ath10k/QCA9984", "flags": "drwxr-xr-x.", "links": 10, "owner": "root", "group": "root", "size": 126, "date": "Aug 8 2019"}, {"filename": "hw1.0", "parent": "/usr/lib/firmware/ath10k/QCA9984", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 83, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/ath10k/QCA9984/hw1.0", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 83, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/ath10k/QCA9984/hw1.0", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 19, "date": "Aug 8 2019"}, {"filename": "board-2.bin", "parent": "/usr/lib/firmware/ath10k/QCA9984/hw1.0", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 171916, "date": "Aug 8 2019"}, {"filename": "firmware-5.bin", "parent": "/usr/lib/firmware/ath10k/QCA9984/hw1.0", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 676316, "date": "Aug 8 2019"}, {"filename": "notice_ath10k_firmware-5.txt", "parent": "/usr/lib/firmware/ath10k/QCA9984/hw1.0", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 30479, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/ath10k/QCA99X0", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 19, "date": "Aug 8 2019"}, {"filename": "..", "parent": "/usr/lib/firmware/ath10k/QCA99X0", "flags": "drwxr-xr-x.", "links": 10, "owner": "root", "group": "root", "size": 126, "date": "Aug 8 2019"}, {"filename": "hw2.0", "parent": "/usr/lib/firmware/ath10k/QCA99X0", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 81, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/ath10k/QCA99X0/hw2.0", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 81, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/ath10k/QCA99X0/hw2.0", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 19, "date": "Aug 8 2019"}, {"filename": "board.bin", "parent": "/usr/lib/firmware/ath10k/QCA99X0/hw2.0", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 12064, "date": "Aug 8 2019"}, {"filename": "firmware-5.bin", "parent": "/usr/lib/firmware/ath10k/QCA99X0/hw2.0", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 479332, "date": "Aug 8 2019"}, {"filename": "notice_ath10k_firmware-5.txt", "parent": "/usr/lib/firmware/ath10k/QCA99X0/hw2.0", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 29133, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/ath9k_htc", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 56, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/ath9k_htc", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "htc_7010-1.4.0.fw", "parent": "/usr/lib/firmware/ath9k_htc", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 72812, "date": "Aug 8 2019"}, {"filename": "htc_9271-1.4.0.fw", "parent": "/usr/lib/firmware/ath9k_htc", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 51008, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/atmel", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 116, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/atmel", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "wilc1000_ap_fw.bin", "parent": "/usr/lib/firmware/atmel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 109828, "date": "Aug 8 2019"}, {"filename": "wilc1000_fw.bin", "parent": "/usr/lib/firmware/atmel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 124540, "date": "Aug 8 2019"}, {"filename": "wilc1000_p2p_fw.bin", "parent": "/usr/lib/firmware/atmel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 143116, "date": "Aug 8 2019"}, {"filename": "wilc1000_wifi_firmware.bin", "parent": "/usr/lib/firmware/atmel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 136344, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/atusb", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 86, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/atusb", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "atusb-0.2.dfu", "parent": "/usr/lib/firmware/atusb", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 5800, "date": "Aug 8 2019"}, {"filename": "atusb-0.3.dfu", "parent": "/usr/lib/firmware/atusb", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 6042, "date": "Aug 8 2019"}, {"filename": "ChangeLog", "parent": "/usr/lib/firmware/atusb", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1019, "date": "Aug 8 2019"}, {"filename": "rzusb-0.3.bin", "parent": "/usr/lib/firmware/atusb", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 6058, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/av7110", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 56, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/av7110", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "bootcode.bin", "parent": "/usr/lib/firmware/av7110", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 212, "date": "Aug 8 2019"}, {"filename": "Boot.S", "parent": "/usr/lib/firmware/av7110", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2820, "date": "Aug 8 2019"}, {"filename": "Makefile", "parent": "/usr/lib/firmware/av7110", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 264, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/bnx2", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/bnx2", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "bnx2-mips-06-4.6.16.fw", "parent": "/usr/lib/firmware/bnx2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 92628, "date": "Aug 8 2019"}, {"filename": "bnx2-mips-06-5.0.0.j3.fw", "parent": "/usr/lib/firmware/bnx2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 93172, "date": "Aug 8 2019"}, {"filename": "bnx2-mips-06-5.0.0.j6.fw", "parent": "/usr/lib/firmware/bnx2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 94252, "date": "Aug 8 2019"}, {"filename": "bnx2-mips-06-6.0.15.fw", "parent": "/usr/lib/firmware/bnx2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 92780, "date": "Aug 8 2019"}, {"filename": "bnx2-mips-06-6.2.1.fw", "parent": "/usr/lib/firmware/bnx2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 92792, "date": "Aug 8 2019"}, {"filename": "bnx2-mips-06-6.2.3.fw", "parent": "/usr/lib/firmware/bnx2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 92824, "date": "Aug 8 2019"}, {"filename": "bnx2-mips-09-4.6.17.fw", "parent": "/usr/lib/firmware/bnx2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 92760, "date": "Aug 8 2019"}, {"filename": "bnx2-mips-09-5.0.0.j15.fw", "parent": "/usr/lib/firmware/bnx2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 96996, "date": "Aug 8 2019"}, {"filename": "bnx2-mips-09-5.0.0.j3.fw", "parent": "/usr/lib/firmware/bnx2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 96504, "date": "Aug 8 2019"}, {"filename": "bnx2-mips-09-5.0.0.j9.fw", "parent": "/usr/lib/firmware/bnx2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 96616, "date": "Aug 8 2019"}, {"filename": "bnx2-mips-09-6.0.17.fw", "parent": "/usr/lib/firmware/bnx2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 103488, "date": "Aug 8 2019"}, {"filename": "bnx2-mips-09-6.2.1a.fw", "parent": "/usr/lib/firmware/bnx2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 103868, "date": "Aug 8 2019"}, {"filename": "bnx2-mips-09-6.2.1b.fw", "parent": "/usr/lib/firmware/bnx2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 103904, "date": "Aug 8 2019"}, {"filename": "bnx2-mips-09-6.2.1.fw", "parent": "/usr/lib/firmware/bnx2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 104104, "date": "Aug 8 2019"}, {"filename": "bnx2-rv2p-06-4.6.16.fw", "parent": "/usr/lib/firmware/bnx2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 6872, "date": "Aug 8 2019"}, {"filename": "bnx2-rv2p-06-5.0.0.j3.fw", "parent": "/usr/lib/firmware/bnx2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 6600, "date": "Aug 8 2019"}, {"filename": "bnx2-rv2p-06-6.0.15.fw", "parent": "/usr/lib/firmware/bnx2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 5696, "date": "Aug 8 2019"}, {"filename": "bnx2-rv2p-09-4.6.15.fw", "parent": "/usr/lib/firmware/bnx2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 7672, "date": "Aug 8 2019"}, {"filename": "bnx2-rv2p-09-5.0.0.j10.fw", "parent": "/usr/lib/firmware/bnx2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 7224, "date": "Aug 8 2019"}, {"filename": "bnx2-rv2p-09-5.0.0.j3.fw", "parent": "/usr/lib/firmware/bnx2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 7216, "date": "Aug 8 2019"}, {"filename": "bnx2-rv2p-09-6.0.17.fw", "parent": "/usr/lib/firmware/bnx2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 6104, "date": "Aug 8 2019"}, {"filename": "bnx2-rv2p-09ax-5.0.0.j10.fw", "parent": "/usr/lib/firmware/bnx2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 7808, "date": "Aug 8 2019"}, {"filename": "bnx2-rv2p-09ax-5.0.0.j3.fw", "parent": "/usr/lib/firmware/bnx2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 7800, "date": "Aug 8 2019"}, {"filename": "bnx2-rv2p-09ax-6.0.17.fw", "parent": "/usr/lib/firmware/bnx2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 6616, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/bnx2x", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/bnx2x", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "bnx2x-e1-6.0.34.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 151568, "date": "Aug 8 2019"}, {"filename": "bnx2x-e1-6.2.5.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 151680, "date": "Aug 8 2019"}, {"filename": "bnx2x-e1-6.2.9.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 151688, "date": "Aug 8 2019"}, {"filename": "bnx2x-e1-7.0.20.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 161144, "date": "Aug 8 2019"}, {"filename": "bnx2x-e1-7.0.23.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 161248, "date": "Aug 8 2019"}, {"filename": "bnx2x-e1-7.0.29.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 161368, "date": "Aug 8 2019"}, {"filename": "bnx2x-e1-7.10.51.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 164392, "date": "Aug 8 2019"}, {"filename": "bnx2x-e1-7.12.30.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 170192, "date": "Aug 8 2019"}, {"filename": "bnx2x-e1-7.13.1.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 170096, "date": "Aug 8 2019"}, {"filename": "bnx2x-e1-7.13.11.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 169904, "date": "Aug 8 2019"}, {"filename": "bnx2x-e1-7.2.16.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 162128, "date": "Aug 8 2019"}, {"filename": "bnx2x-e1-7.2.51.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 162152, "date": "Aug 8 2019"}, {"filename": "bnx2x-e1-7.8.17.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 163576, "date": "Aug 8 2019"}, {"filename": "bnx2x-e1-7.8.19.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 163592, "date": "Aug 8 2019"}, {"filename": "bnx2x-e1-7.8.2.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 163352, "date": "Aug 8 2019"}, {"filename": "bnx2x-e1h-6.0.34.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 210776, "date": "Aug 8 2019"}, {"filename": "bnx2x-e1h-6.2.5.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 210824, "date": "Aug 8 2019"}, {"filename": "bnx2x-e1h-6.2.9.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 211000, "date": "Aug 8 2019"}, {"filename": "bnx2x-e1h-7.0.20.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 168552, "date": "Aug 8 2019"}, {"filename": "bnx2x-e1h-7.0.23.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 168544, "date": "Aug 8 2019"}, {"filename": "bnx2x-e1h-7.0.29.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 168680, "date": "Aug 8 2019"}, {"filename": "bnx2x-e1h-7.10.51.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 173016, "date": "Aug 8 2019"}, {"filename": "bnx2x-e1h-7.12.30.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 178984, "date": "Aug 8 2019"}, {"filename": "bnx2x-e1h-7.13.1.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 178992, "date": "Aug 8 2019"}, {"filename": "bnx2x-e1h-7.13.11.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 178328, "date": "Aug 8 2019"}, {"filename": "bnx2x-e1h-7.2.16.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 169896, "date": "Aug 8 2019"}, {"filename": "bnx2x-e1h-7.2.51.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 169960, "date": "Aug 8 2019"}, {"filename": "bnx2x-e1h-7.8.17.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 171920, "date": "Aug 8 2019"}, {"filename": "bnx2x-e1h-7.8.19.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 171920, "date": "Aug 8 2019"}, {"filename": "bnx2x-e1h-7.8.2.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 171368, "date": "Aug 8 2019"}, {"filename": "bnx2x-e2-6.0.34.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 247008, "date": "Aug 8 2019"}, {"filename": "bnx2x-e2-6.2.5.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 247232, "date": "Aug 8 2019"}, {"filename": "bnx2x-e2-6.2.9.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 247504, "date": "Aug 8 2019"}, {"filename": "bnx2x-e2-7.0.20.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 290952, "date": "Aug 8 2019"}, {"filename": "bnx2x-e2-7.0.23.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 289448, "date": "Aug 8 2019"}, {"filename": "bnx2x-e2-7.0.29.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 289848, "date": "Aug 8 2019"}, {"filename": "bnx2x-e2-7.10.51.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 321456, "date": "Aug 8 2019"}, {"filename": "bnx2x-e2-7.12.30.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 321320, "date": "Aug 8 2019"}, {"filename": "bnx2x-e2-7.13.1.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 320936, "date": "Aug 8 2019"}, {"filename": "bnx2x-e2-7.13.11.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 322296, "date": "Aug 8 2019"}, {"filename": "bnx2x-e2-7.2.16.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 295072, "date": "Aug 8 2019"}, {"filename": "bnx2x-e2-7.2.51.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 295264, "date": "Aug 8 2019"}, {"filename": "bnx2x-e2-7.8.17.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 310032, "date": "Aug 8 2019"}, {"filename": "bnx2x-e2-7.8.19.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 310440, "date": "Aug 8 2019"}, {"filename": "bnx2x-e2-7.8.2.0.fw", "parent": "/usr/lib/firmware/bnx2x", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 304664, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/brcm", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/brcm", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "BCM-0bb4-0306.hcd", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 54734, "date": "Aug 8 2019"}, {"filename": "bcm4329-fullmac-4.bin", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 269595, "date": "Aug 8 2019"}, {"filename": "bcm43xx-0.fw", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 96224, "date": "Aug 8 2019"}, {"filename": "bcm43xx_hdr-0.fw", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 180, "date": "Aug 8 2019"}, {"filename": "brcmfmac43143.bin", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 397312, "date": "Aug 8 2019"}, {"filename": "brcmfmac43143-sdio.bin", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 385067, "date": "Aug 8 2019"}, {"filename": "brcmfmac43236b.bin", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 348160, "date": "Aug 8 2019"}, {"filename": "brcmfmac43241b0-sdio.bin", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 455745, "date": "Aug 8 2019"}, {"filename": "brcmfmac43241b4-sdio.bin", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 403855, "date": "Aug 8 2019"}, {"filename": "brcmfmac43241b5-sdio.bin", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 408682, "date": "Aug 8 2019"}, {"filename": "brcmfmac43242a.bin", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 479232, "date": "Aug 8 2019"}, {"filename": "brcmfmac4329-sdio.bin", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 253748, "date": "Aug 8 2019"}, {"filename": "brcmfmac4330-sdio.bin", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 222126, "date": "Aug 8 2019"}, {"filename": "brcmfmac4330-sdio.Prowise-PT301.txt", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1509, "date": "Aug 8 2019"}, {"filename": "brcmfmac43340-sdio.bin", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 400864, "date": "Aug 8 2019"}, {"filename": "brcmfmac43340-sdio.meegopad-t08.txt", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1693, "date": "Aug 8 2019"}, {"filename": "brcmfmac4334-sdio.bin", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 451566, "date": "Aug 8 2019"}, {"filename": "brcmfmac4335-sdio.bin", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 569291, "date": "Aug 8 2019"}, {"filename": "brcmfmac43362-sdio.bin", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 202107, "date": "Aug 8 2019"}, {"filename": "brcmfmac43362-sdio.cubietech,cubietruck.txt", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 803, "date": "Aug 8 2019"}, {"filename": "brcmfmac43362-sdio.lemaker,bananapro.txt", "link_to": "brcmfmac43362-sdio.cubietech,cubietruck.txt", "parent": "/usr/lib/firmware/brcm", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 43, "date": "Oct 16 09:22"}, {"filename": "brcmfmac4339-sdio.bin", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 562183, "date": "Aug 8 2019"}, {"filename": "brcmfmac43430a0-sdio.bin", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 382455, "date": "Aug 8 2019"}, {"filename": "brcmfmac43430a0-sdio.jumper-ezpad-mini3.txt", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 951, "date": "Aug 8 2019"}, {"filename": "brcmfmac43430a0-sdio.ONDA-V80 PLUS.txt", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 989, "date": "Aug 8 2019"}, {"filename": "brcmfmac43430-sdio.AP6212.txt", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 875, "date": "Aug 8 2019"}, {"filename": "brcmfmac43430-sdio.bin", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 388739, "date": "Aug 8 2019"}, {"filename": "brcmfmac43430-sdio.Hampoo-D2D3_Vi8A1.txt", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 928, "date": "Aug 8 2019"}, {"filename": "brcmfmac43430-sdio.MUR1DX.txt", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 831, "date": "Aug 8 2019"}, {"filename": "brcmfmac43430-sdio.raspberrypi,3-model-b.txt", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 874, "date": "Aug 8 2019"}, {"filename": "brcmfmac43455-sdio.bin", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 488193, "date": "Aug 8 2019"}, {"filename": "brcmfmac43455-sdio.raspberrypi,3-model-b-plus.txt", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1864, "date": "Aug 8 2019"}, {"filename": "brcmfmac4350c2-pcie.bin", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 623304, "date": "Aug 8 2019"}, {"filename": "brcmfmac4350-pcie.bin", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 626140, "date": "Aug 8 2019"}, {"filename": "brcmfmac4354-sdio.bin", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 605388, "date": "Aug 8 2019"}, {"filename": "brcmfmac43569.bin", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 557056, "date": "Aug 8 2019"}, {"filename": "brcmfmac4356-pcie.bin", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 648770, "date": "Aug 8 2019"}, {"filename": "brcmfmac4356-pcie.gpd-win-pocket.txt", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2515, "date": "Aug 8 2019"}, {"filename": "brcmfmac4356-sdio.bin", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 526383, "date": "Aug 8 2019"}, {"filename": "brcmfmac43570-pcie.bin", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 550333, "date": "Aug 8 2019"}, {"filename": "brcmfmac4358-pcie.bin", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 633817, "date": "Aug 8 2019"}, {"filename": "brcmfmac43602-pcie.ap.bin", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 595472, "date": "Aug 8 2019"}, {"filename": "brcmfmac43602-pcie.bin", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 635449, "date": "Aug 8 2019"}, {"filename": "brcmfmac4366b-pcie.bin", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1105361, "date": "Aug 8 2019"}, {"filename": "brcmfmac4366c-pcie.bin", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1120971, "date": "Aug 8 2019"}, {"filename": "brcmfmac4371-pcie.bin", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 623448, "date": "Aug 8 2019"}, {"filename": "brcmfmac4373.bin", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 479232, "date": "Aug 8 2019"}, {"filename": "brcmfmac4373-sdio.bin", "parent": "/usr/lib/firmware/brcm", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 457994, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/cadence", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 26, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/cadence", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "mhdp8546.bin", "parent": "/usr/lib/firmware/cadence", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 131072, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/cavium", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 27, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/cavium", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "cnn55xx_se.fw", "parent": "/usr/lib/firmware/cavium", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 35010, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/cis", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/cis", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "3CCFEM556.cis", "parent": "/usr/lib/firmware/cis", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 137, "date": "Aug 8 2019"}, {"filename": "3CXEM556.cis", "parent": "/usr/lib/firmware/cis", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 134, "date": "Aug 8 2019"}, {"filename": "COMpad2.cis", "parent": "/usr/lib/firmware/cis", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 109, "date": "Aug 8 2019"}, {"filename": "COMpad4.cis", "parent": "/usr/lib/firmware/cis", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 76, "date": "Aug 8 2019"}, {"filename": "DP83903.cis", "parent": "/usr/lib/firmware/cis", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 136, "date": "Aug 8 2019"}, {"filename": "LA-PCM.cis", "parent": "/usr/lib/firmware/cis", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 253, "date": "Aug 8 2019"}, {"filename": "Makefile", "parent": "/usr/lib/firmware/cis", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 264, "date": "Aug 8 2019"}, {"filename": "MT5634ZLX.cis", "parent": "/usr/lib/firmware/cis", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 107, "date": "Aug 8 2019"}, {"filename": "NE2K.cis", "parent": "/usr/lib/firmware/cis", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 54, "date": "Aug 8 2019"}, {"filename": "PCMLM28.cis", "parent": "/usr/lib/firmware/cis", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 210, "date": "Aug 8 2019"}, {"filename": "PE-200.cis", "parent": "/usr/lib/firmware/cis", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 68, "date": "Aug 8 2019"}, {"filename": "PE520.cis", "parent": "/usr/lib/firmware/cis", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 74, "date": "Aug 8 2019"}, {"filename": "RS-COM-2P.cis", "parent": "/usr/lib/firmware/cis", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 86, "date": "Aug 8 2019"}, {"filename": "src", "parent": "/usr/lib/firmware/cis", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 254, "date": "Oct 16 09:22"}, {"filename": "SW_555_SER.cis", "parent": "/usr/lib/firmware/cis", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 122, "date": "Aug 8 2019"}, {"filename": "SW_7xx_SER.cis", "parent": "/usr/lib/firmware/cis", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 140, "date": "Aug 8 2019"}, {"filename": "SW_8xx_SER.cis", "parent": "/usr/lib/firmware/cis", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 132, "date": "Aug 8 2019"}, {"filename": "tamarack.cis", "parent": "/usr/lib/firmware/cis", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 85, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/cis/src", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 254, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/cis/src", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "3CCFEM556.cis", "parent": "/usr/lib/firmware/cis/src", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 519, "date": "Aug 8 2019"}, {"filename": "3CXEM556.cis", "parent": "/usr/lib/firmware/cis/src", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 515, "date": "Aug 8 2019"}, {"filename": "COMpad2.cis", "parent": "/usr/lib/firmware/cis/src", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 576, "date": "Aug 8 2019"}, {"filename": "COMpad4.cis", "parent": "/usr/lib/firmware/cis/src", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 368, "date": "Aug 8 2019"}, {"filename": "DP83903.cis", "parent": "/usr/lib/firmware/cis/src", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 586, "date": "Aug 8 2019"}, {"filename": "LA-PCM.cis", "parent": "/usr/lib/firmware/cis/src", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1167, "date": "Aug 8 2019"}, {"filename": "MT5634ZLX.cis", "parent": "/usr/lib/firmware/cis/src", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 507, "date": "Aug 8 2019"}, {"filename": "NE2K.cis", "parent": "/usr/lib/firmware/cis/src", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 269, "date": "Aug 8 2019"}, {"filename": "PCMLM28.cis", "parent": "/usr/lib/firmware/cis/src", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1041, "date": "Aug 8 2019"}, {"filename": "PE-200.cis", "parent": "/usr/lib/firmware/cis/src", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 307, "date": "Aug 8 2019"}, {"filename": "PE520.cis", "parent": "/usr/lib/firmware/cis/src", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 300, "date": "Aug 8 2019"}, {"filename": "RS-COM-2P.cis", "parent": "/usr/lib/firmware/cis/src", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 441, "date": "Aug 8 2019"}, {"filename": "tamarack.cis", "parent": "/usr/lib/firmware/cis/src", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 475, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/cpia2", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 29, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/cpia2", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "stv0672_vp4.bin", "parent": "/usr/lib/firmware/cpia2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 824, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/cs46xx", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 96, "date": "Aug 15 2019"}, {"filename": "..", "parent": "/usr/lib/firmware/cs46xx", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "ba1", "parent": "/usr/lib/firmware/cs46xx", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 55320, "date": "Mar 5 2015"}, {"filename": "cwc4630", "parent": "/usr/lib/firmware/cs46xx", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 7880, "date": "Mar 5 2015"}, {"filename": "cwcasync", "parent": "/usr/lib/firmware/cs46xx", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 5228, "date": "Mar 5 2015"}, {"filename": "cwcbinhack", "parent": "/usr/lib/firmware/cs46xx", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 600, "date": "Mar 5 2015"}, {"filename": "cwcdma", "parent": "/usr/lib/firmware/cs46xx", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 3128, "date": "Mar 5 2015"}, {"filename": "cwcsnoop", "parent": "/usr/lib/firmware/cs46xx", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 592, "date": "Mar 5 2015"}, {"filename": ".", "parent": "/usr/lib/firmware/cxgb3", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 253, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/cxgb3", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "ael2005_opt_edc.bin", "parent": "/usr/lib/firmware/cxgb3", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1088, "date": "Aug 8 2019"}, {"filename": "ael2005_twx_edc.bin", "parent": "/usr/lib/firmware/cxgb3", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1468, "date": "Aug 8 2019"}, {"filename": "ael2020_twx_edc.bin", "parent": "/usr/lib/firmware/cxgb3", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1584, "date": "Aug 8 2019"}, {"filename": "t3b_psram-1.1.0.bin", "parent": "/usr/lib/firmware/cxgb3", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2564, "date": "Aug 8 2019"}, {"filename": "t3c_psram-1.1.0.bin", "parent": "/usr/lib/firmware/cxgb3", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2564, "date": "Aug 8 2019"}, {"filename": "t3fw-7.0.0.bin", "parent": "/usr/lib/firmware/cxgb3", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 30076, "date": "Aug 8 2019"}, {"filename": "t3fw-7.10.0.bin", "parent": "/usr/lib/firmware/cxgb3", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 30932, "date": "Aug 8 2019"}, {"filename": "t3fw-7.1.0.bin", "parent": "/usr/lib/firmware/cxgb3", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 30136, "date": "Aug 8 2019"}, {"filename": "t3fw-7.12.0.bin", "parent": "/usr/lib/firmware/cxgb3", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 31812, "date": "Aug 8 2019"}, {"filename": "t3fw-7.4.0.bin", "parent": "/usr/lib/firmware/cxgb3", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 30648, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/cxgb4", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 271, "date": "Oct 16 09:23"}, {"filename": "..", "parent": "/usr/lib/firmware/cxgb4", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "aq1202_fw.cld", "parent": "/usr/lib/firmware/cxgb4", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 179202, "date": "Aug 8 2019"}, {"filename": "bcm8483.bin", "parent": "/usr/lib/firmware/cxgb4", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 208900, "date": "Aug 8 2019"}, {"filename": "t4fw-1.14.4.0.bin", "parent": "/usr/lib/firmware/cxgb4", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 539648, "date": "Aug 8 2019"}, {"filename": "t4fw-1.15.37.0.bin", "parent": "/usr/lib/firmware/cxgb4", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 541184, "date": "Aug 8 2019"}, {"filename": "t4fw-1.23.4.0.bin", "parent": "/usr/lib/firmware/cxgb4", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 570880, "date": "Aug 8 2019"}, {"filename": "t4fw.bin", "link_to": "t4fw-1.23.4.0.bin", "parent": "/usr/lib/firmware/cxgb4", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 17, "date": "Oct 16 09:22"}, {"filename": "t5fw-1.14.4.0.bin", "parent": "/usr/lib/firmware/cxgb4", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 593920, "date": "Aug 8 2019"}, {"filename": "t5fw-1.15.37.0.bin", "parent": "/usr/lib/firmware/cxgb4", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 596992, "date": "Aug 8 2019"}, {"filename": "t5fw-1.23.4.0.bin", "parent": "/usr/lib/firmware/cxgb4", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 659456, "date": "Aug 8 2019"}, {"filename": "t5fw.bin", "link_to": "t5fw-1.23.4.0.bin", "parent": "/usr/lib/firmware/cxgb4", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 17, "date": "Oct 16 09:22"}, {"filename": "t6fw-1.23.4.0.bin", "parent": "/usr/lib/firmware/cxgb4", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 708608, "date": "Aug 8 2019"}, {"filename": "t6fw.bin", "link_to": "t6fw-1.23.4.0.bin", "parent": "/usr/lib/firmware/cxgb4", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 17, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/dabusb", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 46, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/dabusb", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "bitstream.bin", "parent": "/usr/lib/firmware/dabusb", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 12042, "date": "Aug 8 2019"}, {"filename": "firmware.fw", "parent": "/usr/lib/firmware/dabusb", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 9822, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/dpaa2", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 16, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/dpaa2", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "mc", "parent": "/usr/lib/firmware/dpaa2", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 96, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/dpaa2/mc", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 96, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/dpaa2/mc", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 16, "date": "Oct 16 09:22"}, {"filename": "mc_10.10.0_ls1088a.itb", "parent": "/usr/lib/firmware/dpaa2/mc", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 904152, "date": "Aug 8 2019"}, {"filename": "mc_10.10.0_ls2088a.itb", "parent": "/usr/lib/firmware/dpaa2/mc", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1012808, "date": "Aug 8 2019"}, {"filename": "mc_10.10.0_lx2160a.itb", "parent": "/usr/lib/firmware/dpaa2/mc", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1014024, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/dsp56k", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 70, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/dsp56k", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "bootstrap.bin", "parent": "/usr/lib/firmware/dsp56k", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 375, "date": "Aug 8 2019"}, {"filename": "concat-bootstrap.pl", "parent": "/usr/lib/firmware/dsp56k", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 996, "date": "Aug 8 2019"}, {"filename": "Makefile", "parent": "/usr/lib/firmware/dsp56k", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 166, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/e100", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 75, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/e100", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "d101m_ucode.bin", "parent": "/usr/lib/firmware/e100", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 539, "date": "Aug 8 2019"}, {"filename": "d101s_ucode.bin", "parent": "/usr/lib/firmware/e100", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 539, "date": "Aug 8 2019"}, {"filename": "d102e_ucode.bin", "parent": "/usr/lib/firmware/e100", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 539, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/ea", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 15 2019"}, {"filename": "..", "parent": "/usr/lib/firmware/ea", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "3g_asic.fw", "parent": "/usr/lib/firmware/ea", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 78761, "date": "Mar 5 2015"}, {"filename": "darla20_dsp.fw", "parent": "/usr/lib/firmware/ea", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17162, "date": "Mar 5 2015"}, {"filename": "darla24_dsp.fw", "parent": "/usr/lib/firmware/ea", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 15018, "date": "Mar 5 2015"}, {"filename": "echo3g_dsp.fw", "parent": "/usr/lib/firmware/ea", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 35838, "date": "Mar 5 2015"}, {"filename": "gina20_dsp.fw", "parent": "/usr/lib/firmware/ea", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 19022, "date": "Mar 5 2015"}, {"filename": "gina24_301_asic.fw", "parent": "/usr/lib/firmware/ea", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 31146, "date": "Mar 5 2015"}, {"filename": "gina24_301_dsp.fw", "parent": "/usr/lib/firmware/ea", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 22342, "date": "Mar 5 2015"}, {"filename": "gina24_361_asic.fw", "parent": "/usr/lib/firmware/ea", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 31146, "date": "Mar 5 2015"}, {"filename": "gina24_361_dsp.fw", "parent": "/usr/lib/firmware/ea", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 22450, "date": "Mar 5 2015"}, {"filename": "indigo_dj_dsp.fw", "parent": "/usr/lib/firmware/ea", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 16270, "date": "Mar 5 2015"}, {"filename": "indigo_djx_dsp.fw", "parent": "/usr/lib/firmware/ea", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 15606, "date": "Mar 5 2015"}, {"filename": "indigo_dsp.fw", "parent": "/usr/lib/firmware/ea", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 15366, "date": "Mar 5 2015"}, {"filename": "indigo_io_dsp.fw", "parent": "/usr/lib/firmware/ea", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 16798, "date": "Mar 5 2015"}, {"filename": "indigo_iox_dsp.fw", "parent": "/usr/lib/firmware/ea", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 15554, "date": "Mar 5 2015"}, {"filename": "layla20_asic.fw", "parent": "/usr/lib/firmware/ea", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 32385, "date": "Mar 5 2015"}, {"filename": "layla20_dsp.fw", "parent": "/usr/lib/firmware/ea", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 24710, "date": "Mar 5 2015"}, {"filename": "layla24_1_asic.fw", "parent": "/usr/lib/firmware/ea", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 31146, "date": "Mar 5 2015"}, {"filename": "layla24_2A_asic.fw", "parent": "/usr/lib/firmware/ea", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 31146, "date": "Mar 5 2015"}, {"filename": "layla24_2S_asic.fw", "parent": "/usr/lib/firmware/ea", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 31146, "date": "Mar 5 2015"}, {"filename": "layla24_dsp.fw", "parent": "/usr/lib/firmware/ea", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 27930, "date": "Mar 5 2015"}, {"filename": "loader_dsp.fw", "parent": "/usr/lib/firmware/ea", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 634, "date": "Mar 5 2015"}, {"filename": "mia_dsp.fw", "parent": "/usr/lib/firmware/ea", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 20374, "date": "Mar 5 2015"}, {"filename": "mona_2_asic.fw", "parent": "/usr/lib/firmware/ea", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 31146, "date": "Mar 5 2015"}, {"filename": "mona_301_1_asic_48.fw", "parent": "/usr/lib/firmware/ea", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 31146, "date": "Mar 5 2015"}, {"filename": "mona_301_1_asic_96.fw", "parent": "/usr/lib/firmware/ea", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 31146, "date": "Mar 5 2015"}, {"filename": "mona_301_dsp.fw", "parent": "/usr/lib/firmware/ea", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 24130, "date": "Mar 5 2015"}, {"filename": "mona_361_1_asic_48.fw", "parent": "/usr/lib/firmware/ea", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 31146, "date": "Mar 5 2015"}, {"filename": "mona_361_1_asic_96.fw", "parent": "/usr/lib/firmware/ea", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 31146, "date": "Mar 5 2015"}, {"filename": "mona_361_dsp.fw", "parent": "/usr/lib/firmware/ea", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 24258, "date": "Mar 5 2015"}, {"filename": ".", "parent": "/usr/lib/firmware/edgeport", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 85, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/edgeport", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "boot2.fw", "parent": "/usr/lib/firmware/edgeport", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 7042, "date": "Aug 8 2019"}, {"filename": "boot.fw", "parent": "/usr/lib/firmware/edgeport", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 7250, "date": "Aug 8 2019"}, {"filename": "down2.fw", "parent": "/usr/lib/firmware/edgeport", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 16566, "date": "Aug 8 2019"}, {"filename": "down3.bin", "parent": "/usr/lib/firmware/edgeport", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 12942, "date": "Aug 8 2019"}, {"filename": "down.fw", "parent": "/usr/lib/firmware/edgeport", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 18098, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/emi26", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 62, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/emi26", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "bitstream.fw", "parent": "/usr/lib/firmware/emi26", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 104858, "date": "Aug 8 2019"}, {"filename": "firmware.fw", "parent": "/usr/lib/firmware/emi26", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 28070, "date": "Aug 8 2019"}, {"filename": "loader.fw", "parent": "/usr/lib/firmware/emi26", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1942, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/emi62", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 74, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/emi62", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "bitstream.fw", "parent": "/usr/lib/firmware/emi62", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 146490, "date": "Aug 8 2019"}, {"filename": "loader.fw", "parent": "/usr/lib/firmware/emi62", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1910, "date": "Aug 8 2019"}, {"filename": "midi.fw", "parent": "/usr/lib/firmware/emi62", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 28798, "date": "Aug 8 2019"}, {"filename": "spdif.fw", "parent": "/usr/lib/firmware/emi62", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 28606, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/emu", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 127, "date": "Aug 15 2019"}, {"filename": "..", "parent": "/usr/lib/firmware/emu", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "audio_dock.fw", "parent": "/usr/lib/firmware/emu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 78756, "date": "Mar 5 2015"}, {"filename": "emu0404.fw", "parent": "/usr/lib/firmware/emu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 54908, "date": "Mar 5 2015"}, {"filename": "emu1010b.fw", "parent": "/usr/lib/firmware/emu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 72668, "date": "Mar 5 2015"}, {"filename": "emu1010_notebook.fw", "parent": "/usr/lib/firmware/emu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 54908, "date": "Mar 5 2015"}, {"filename": "hana.fw", "parent": "/usr/lib/firmware/emu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 78756, "date": "Mar 5 2015"}, {"filename": "micro_dock.fw", "parent": "/usr/lib/firmware/emu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 54908, "date": "Mar 5 2015"}, {"filename": ".", "parent": "/usr/lib/firmware/ene-ub6250", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 123, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/ene-ub6250", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "ms_init.bin", "parent": "/usr/lib/firmware/ene-ub6250", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2048, "date": "Aug 8 2019"}, {"filename": "msp_rdwr.bin", "parent": "/usr/lib/firmware/ene-ub6250", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2048, "date": "Aug 8 2019"}, {"filename": "ms_rdwr.bin", "parent": "/usr/lib/firmware/ene-ub6250", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2048, "date": "Aug 8 2019"}, {"filename": "sd_init1.bin", "parent": "/usr/lib/firmware/ene-ub6250", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2048, "date": "Aug 8 2019"}, {"filename": "sd_init2.bin", "parent": "/usr/lib/firmware/ene-ub6250", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2048, "date": "Aug 8 2019"}, {"filename": "sd_rdwr.bin", "parent": "/usr/lib/firmware/ene-ub6250", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2048, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/ess", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 69, "date": "Aug 15 2019"}, {"filename": "..", "parent": "/usr/lib/firmware/ess", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "maestro3_assp_kernel.fw", "parent": "/usr/lib/firmware/ess", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1898, "date": "Mar 5 2015"}, {"filename": "maestro3_assp_minisrc.fw", "parent": "/usr/lib/firmware/ess", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 786, "date": "Mar 5 2015"}, {"filename": ".", "parent": "/usr/lib/firmware/go7007", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 160, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/go7007", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "go7007fw.bin", "parent": "/usr/lib/firmware/go7007", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 30800, "date": "Aug 8 2019"}, {"filename": "go7007tv.bin", "parent": "/usr/lib/firmware/go7007", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 124668, "date": "Aug 8 2019"}, {"filename": "lr192.fw", "parent": "/usr/lib/firmware/go7007", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 5793, "date": "Aug 8 2019"}, {"filename": "px-m402u.fw", "parent": "/usr/lib/firmware/go7007", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 5838, "date": "Aug 8 2019"}, {"filename": "px-tv402u.fw", "parent": "/usr/lib/firmware/go7007", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 6581, "date": "Aug 8 2019"}, {"filename": "s2250-1.fw", "parent": "/usr/lib/firmware/go7007", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1092, "date": "Aug 8 2019"}, {"filename": "s2250-2.fw", "parent": "/usr/lib/firmware/go7007", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 9508, "date": "Aug 8 2019"}, {"filename": "wis-startrek.fw", "parent": "/usr/lib/firmware/go7007", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 6381, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/i915", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/i915", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "bxt_dmc_ver1_07.bin", "parent": "/usr/lib/firmware/i915", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8380, "date": "Aug 8 2019"}, {"filename": "bxt_dmc_ver1.bin", "link_to": "bxt_dmc_ver1_07.bin", "parent": "/usr/lib/firmware/i915", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 19, "date": "Oct 16 09:22"}, {"filename": "bxt_guc_ver8_7.bin", "parent": "/usr/lib/firmware/i915", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 140928, "date": "Aug 8 2019"}, {"filename": "bxt_guc_ver9_29.bin", "parent": "/usr/lib/firmware/i915", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 146432, "date": "Aug 8 2019"}, {"filename": "bxt_huc_ver01_07_1398.bin", "parent": "/usr/lib/firmware/i915", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 154432, "date": "Aug 8 2019"}, {"filename": "bxt_huc_ver01_8_2893.bin", "parent": "/usr/lib/firmware/i915", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 146880, "date": "Aug 8 2019"}, {"filename": "cnl_dmc_ver1_06.bin", "parent": "/usr/lib/firmware/i915", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 11224, "date": "Aug 8 2019"}, {"filename": "cnl_dmc_ver1_07.bin", "parent": "/usr/lib/firmware/i915", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 11268, "date": "Aug 8 2019"}, {"filename": "glk_dmc_ver1_04.bin", "parent": "/usr/lib/firmware/i915", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8800, "date": "Aug 8 2019"}, {"filename": "icl_dmc_ver1_07.bin", "parent": "/usr/lib/firmware/i915", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 25716, "date": "Aug 8 2019"}, {"filename": "kbl_dmc_ver1_01.bin", "parent": "/usr/lib/firmware/i915", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8616, "date": "Aug 8 2019"}, {"filename": "kbl_dmc_ver1_04.bin", "parent": "/usr/lib/firmware/i915", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8840, "date": "Aug 8 2019"}, {"filename": "kbl_dmc_ver1.bin", "link_to": "kbl_dmc_ver1_01.bin", "parent": "/usr/lib/firmware/i915", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 19, "date": "Oct 16 09:22"}, {"filename": "kbl_guc_ver9_14.bin", "parent": "/usr/lib/firmware/i915", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 142656, "date": "Aug 8 2019"}, {"filename": "kbl_guc_ver9_39.bin", "parent": "/usr/lib/firmware/i915", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 147776, "date": "Aug 8 2019"}, {"filename": "kbl_huc_ver02_00_1810.bin", "parent": "/usr/lib/firmware/i915", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 218688, "date": "Aug 8 2019"}, {"filename": "skl_dmc_ver1_23.bin", "parent": "/usr/lib/firmware/i915", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8824, "date": "Aug 8 2019"}, {"filename": "skl_dmc_ver1_26.bin", "parent": "/usr/lib/firmware/i915", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8928, "date": "Aug 8 2019"}, {"filename": "skl_dmc_ver1_27.bin", "parent": "/usr/lib/firmware/i915", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8928, "date": "Aug 8 2019"}, {"filename": "skl_dmc_ver1.bin", "link_to": "skl_dmc_ver1_26.bin", "parent": "/usr/lib/firmware/i915", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 19, "date": "Oct 16 09:22"}, {"filename": "skl_guc_ver1.bin", "parent": "/usr/lib/firmware/i915", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 109636, "date": "Aug 8 2019"}, {"filename": "skl_guc_ver4.bin", "parent": "/usr/lib/firmware/i915", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 128320, "date": "Aug 8 2019"}, {"filename": "skl_guc_ver6_1.bin", "parent": "/usr/lib/firmware/i915", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 129024, "date": "Aug 8 2019"}, {"filename": "skl_guc_ver6.bin", "link_to": "skl_guc_ver6_1.bin", "parent": "/usr/lib/firmware/i915", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 18, "date": "Oct 16 09:22"}, {"filename": "skl_guc_ver9_33.bin", "parent": "/usr/lib/firmware/i915", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 147520, "date": "Aug 8 2019"}, {"filename": "skl_huc_ver01_07_1398.bin", "parent": "/usr/lib/firmware/i915", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 140992, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/imx", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 18, "date": "Aug 8 2019"}, {"filename": "..", "parent": "/usr/lib/firmware/imx", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "sdma", "parent": "/usr/lib/firmware/imx", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 50, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/imx/sdma", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 50, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/imx/sdma", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 18, "date": "Aug 8 2019"}, {"filename": "sdma-imx6q.bin", "parent": "/usr/lib/firmware/imx/sdma", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2196, "date": "Aug 8 2019"}, {"filename": "sdma-imx7d.bin", "parent": "/usr/lib/firmware/imx/sdma", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2302, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/intel", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 8192, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/intel", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "dsp_fw_bxtn.bin", "link_to": "dsp_fw_bxtn_v3366.bin", "parent": "/usr/lib/firmware/intel", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 21, "date": "Oct 16 09:22"}, {"filename": "dsp_fw_bxtn_v2219.bin", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 505608, "date": "Aug 8 2019"}, {"filename": "dsp_fw_bxtn_v3366.bin", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 505608, "date": "Aug 8 2019"}, {"filename": "dsp_fw_cnl.bin", "link_to": "dsp_fw_cnl_v1858.bin", "parent": "/usr/lib/firmware/intel", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 20, "date": "Oct 16 09:22"}, {"filename": "dsp_fw_cnl_v1191.bin", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 583852, "date": "Aug 8 2019"}, {"filename": "dsp_fw_cnl_v1858.bin", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 583852, "date": "Aug 8 2019"}, {"filename": "dsp_fw_glk.bin", "link_to": "dsp_fw_glk_v3366.bin", "parent": "/usr/lib/firmware/intel", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 20, "date": "Oct 16 09:22"}, {"filename": "dsp_fw_glk_v1814.bin", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 505608, "date": "Aug 8 2019"}, {"filename": "dsp_fw_glk_v2768.bin", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 505608, "date": "Aug 8 2019"}, {"filename": "dsp_fw_glk_v2880.bin", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 505608, "date": "Aug 8 2019"}, {"filename": "dsp_fw_glk_v3366.bin", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 505608, "date": "Aug 8 2019"}, {"filename": "dsp_fw_kbl.bin", "link_to": "dsp_fw_kbl_v3402.bin", "parent": "/usr/lib/firmware/intel", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 20, "date": "Oct 16 09:22"}, {"filename": "dsp_fw_kbl_v1037.bin", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 238920, "date": "Aug 8 2019"}, {"filename": "dsp_fw_kbl_v2042.bin", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 238920, "date": "Aug 8 2019"}, {"filename": "dsp_fw_kbl_v2630.bin", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 243016, "date": "Aug 8 2019"}, {"filename": "dsp_fw_kbl_v3266.bin", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 243016, "date": "Aug 8 2019"}, {"filename": "dsp_fw_kbl_v3402.bin", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 247112, "date": "Aug 8 2019"}, {"filename": "dsp_fw_kbl_v3420.bin", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 243016, "date": "Aug 8 2019"}, {"filename": "dsp_fw_kbl_v701.bin", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 238920, "date": "Aug 8 2019"}, {"filename": "dsp_fw_release.bin", "link_to": "dsp_fw_release_v3402.bin", "parent": "/usr/lib/firmware/intel", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 24, "date": "Oct 16 09:22"}, {"filename": "dsp_fw_release_v3402.bin", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 247112, "date": "Aug 8 2019"}, {"filename": "dsp_fw_release_v969.bin", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 221184, "date": "Aug 8 2019"}, {"filename": "fw_sst_0f28.bin", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 701622, "date": "Aug 8 2019"}, {"filename": "fw_sst_0f28.bin-48kHz_i2s_master", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 265684, "date": "Aug 8 2019"}, {"filename": "fw_sst_0f28_ssp0.bin", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 701622, "date": "Aug 8 2019"}, {"filename": "fw_sst_22a8.bin", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 701694, "date": "Aug 8 2019"}, {"filename": "ibt-11-5.ddc", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 18, "date": "Aug 8 2019"}, {"filename": "ibt-11-5.sfi", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 588196, "date": "Aug 8 2019"}, {"filename": "ibt-12-16.ddc", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 14, "date": "Aug 8 2019"}, {"filename": "ibt-12-16.sfi", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 585628, "date": "Aug 8 2019"}, {"filename": "ibt-17-0-1.ddc", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 14, "date": "Aug 8 2019"}, {"filename": "ibt-17-0-1.sfi", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 625216, "date": "Aug 8 2019"}, {"filename": "ibt-17-16-1.ddc", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 14, "date": "Aug 8 2019"}, {"filename": "ibt-17-16-1.sfi", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 648108, "date": "Aug 8 2019"}, {"filename": "ibt-17-1.ddc", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 14, "date": "Aug 8 2019"}, {"filename": "ibt-17-1.sfi", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 625216, "date": "Aug 8 2019"}, {"filename": "ibt-17-2.ddc", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 14, "date": "Aug 8 2019"}, {"filename": "ibt-17-2.sfi", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 648108, "date": "Aug 8 2019"}, {"filename": "ibt-18-0-1.ddc", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 14, "date": "Aug 8 2019"}, {"filename": "ibt-18-0-1.sfi", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 625216, "date": "Aug 8 2019"}, {"filename": "ibt-18-16-1.ddc", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 14, "date": "Aug 8 2019"}, {"filename": "ibt-18-16-1.sfi", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 648108, "date": "Aug 8 2019"}, {"filename": "ibt-18-1.ddc", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 14, "date": "Aug 8 2019"}, {"filename": "ibt-18-1.sfi", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 625216, "date": "Aug 8 2019"}, {"filename": "ibt-18-2.ddc", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 14, "date": "Aug 8 2019"}, {"filename": "ibt-18-2.sfi", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 648108, "date": "Aug 8 2019"}, {"filename": "ibt-hw-37.7.10-fw-1.0.1.2d.d.bseq", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 22069, "date": "Aug 8 2019"}, {"filename": "ibt-hw-37.7.10-fw-1.0.2.3.d.bseq", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 25853, "date": "Aug 8 2019"}, {"filename": "ibt-hw-37.7.10-fw-1.80.1.2d.d.bseq", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 23105, "date": "Aug 8 2019"}, {"filename": "ibt-hw-37.7.10-fw-1.80.2.3.d.bseq", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 25775, "date": "Aug 8 2019"}, {"filename": "ibt-hw-37.7.bseq", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 96, "date": "Aug 8 2019"}, {"filename": "ibt-hw-37.8.10-fw-1.10.2.27.d.bseq", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 31056, "date": "Aug 8 2019"}, {"filename": "ibt-hw-37.8.10-fw-1.10.3.11.e.bseq", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 39295, "date": "Aug 8 2019"}, {"filename": "ibt-hw-37.8.10-fw-22.50.19.14.f.bseq", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 48587, "date": "Aug 8 2019"}, {"filename": "ibt-hw-37.8.bseq", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 96, "date": "Aug 8 2019"}, {"filename": "IntcSST2.bin", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 260320, "date": "Aug 8 2019"}, {"filename": "ipu3-fw.bin", "link_to": "irci_irci_ecr-master_20161208_0213_20170112_1500.bin", "parent": "/usr/lib/firmware/intel", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 52, "date": "Oct 16 09:22"}, {"filename": "irci_irci_ecr-master_20161208_0213_20170112_1500.bin", "parent": "/usr/lib/firmware/intel", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1212984, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/isci", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 119, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/isci", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "create_fw.c", "parent": "/usr/lib/firmware/isci", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2366, "date": "Aug 8 2019"}, {"filename": "create_fw.h", "parent": "/usr/lib/firmware/isci", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2867, "date": "Aug 8 2019"}, {"filename": "isci_firmware.bin", "parent": "/usr/lib/firmware/isci", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 232, "date": "Aug 8 2019"}, {"filename": "Makefile", "parent": "/usr/lib/firmware/isci", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 369, "date": "Aug 8 2019"}, {"filename": "probe_roms.h", "parent": "/usr/lib/firmware/isci", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 10893, "date": "Aug 8 2019"}, {"filename": "README", "parent": "/usr/lib/firmware/isci", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 780, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/kaweth", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 102, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/kaweth", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "new_code.bin", "parent": "/usr/lib/firmware/kaweth", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 3276, "date": "Aug 8 2019"}, {"filename": "new_code_fix.bin", "parent": "/usr/lib/firmware/kaweth", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 622, "date": "Aug 8 2019"}, {"filename": "trigger_code.bin", "parent": "/usr/lib/firmware/kaweth", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 182, "date": "Aug 8 2019"}, {"filename": "trigger_code_fix.bin", "parent": "/usr/lib/firmware/kaweth", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 22, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/keyspan", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 211, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/keyspan", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "mpr.fw", "parent": "/usr/lib/firmware/keyspan", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4658, "date": "Aug 8 2019"}, {"filename": "usa18x.fw", "parent": "/usr/lib/firmware/keyspan", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 7650, "date": "Aug 8 2019"}, {"filename": "usa19.fw", "parent": "/usr/lib/firmware/keyspan", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4690, "date": "Aug 8 2019"}, {"filename": "usa19qi.fw", "parent": "/usr/lib/firmware/keyspan", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4678, "date": "Aug 8 2019"}, {"filename": "usa19qw.fw", "parent": "/usr/lib/firmware/keyspan", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 7638, "date": "Aug 8 2019"}, {"filename": "usa19w.fw", "parent": "/usr/lib/firmware/keyspan", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 7634, "date": "Aug 8 2019"}, {"filename": "usa28.fw", "parent": "/usr/lib/firmware/keyspan", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 7938, "date": "Aug 8 2019"}, {"filename": "usa28xa.fw", "parent": "/usr/lib/firmware/keyspan", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 7634, "date": "Aug 8 2019"}, {"filename": "usa28xb.fw", "parent": "/usr/lib/firmware/keyspan", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 7638, "date": "Aug 8 2019"}, {"filename": "usa28x.fw", "parent": "/usr/lib/firmware/keyspan", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 7634, "date": "Aug 8 2019"}, {"filename": "usa49w.fw", "parent": "/usr/lib/firmware/keyspan", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 7938, "date": "Aug 8 2019"}, {"filename": "usa49wlc.fw", "parent": "/usr/lib/firmware/keyspan", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 7946, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/keyspan_pda", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 106, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/keyspan_pda", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "keyspan_pda.fw", "parent": "/usr/lib/firmware/keyspan_pda", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1914, "date": "Aug 8 2019"}, {"filename": "keyspan_pda.S", "parent": "/usr/lib/firmware/keyspan_pda", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 28777, "date": "Aug 8 2019"}, {"filename": "Makefile", "parent": "/usr/lib/firmware/keyspan_pda", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 203, "date": "Aug 8 2019"}, {"filename": "xircom_pgs.fw", "parent": "/usr/lib/firmware/keyspan_pda", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2018, "date": "Aug 8 2019"}, {"filename": "xircom_pgs.S", "parent": "/usr/lib/firmware/keyspan_pda", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 29753, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/korg", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 23, "date": "Aug 15 2019"}, {"filename": "..", "parent": "/usr/lib/firmware/korg", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "k1212.dsp", "parent": "/usr/lib/firmware/korg", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 15764, "date": "Mar 5 2015"}, {"filename": ".", "parent": "/usr/lib/firmware/liquidio", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 129, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/liquidio", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "lio_210nv_nic.bin", "parent": "/usr/lib/firmware/liquidio", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1281464, "date": "Aug 8 2019"}, {"filename": "lio_210sv_nic.bin", "parent": "/usr/lib/firmware/liquidio", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1179352, "date": "Aug 8 2019"}, {"filename": "lio_23xx_nic.bin", "parent": "/usr/lib/firmware/liquidio", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1287264, "date": "Aug 8 2019"}, {"filename": "lio_23xx_vsw.bin", "parent": "/usr/lib/firmware/liquidio", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 20434408, "date": "Aug 8 2019"}, {"filename": "lio_410nv_nic.bin", "parent": "/usr/lib/firmware/liquidio", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1281464, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/matrox", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 46, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/matrox", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "g200_warp.fw", "parent": "/usr/lib/firmware/matrox", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 11214, "date": "Aug 8 2019"}, {"filename": "g400_warp.fw", "parent": "/usr/lib/firmware/matrox", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 16790, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/mediatek", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 226, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/mediatek", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "mt7610e.bin", "parent": "/usr/lib/firmware/mediatek", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 80680, "date": "Aug 8 2019"}, {"filename": "mt7610u.bin", "parent": "/usr/lib/firmware/mediatek", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 80288, "date": "Aug 8 2019"}, {"filename": "mt7615_cr4.bin", "parent": "/usr/lib/firmware/mediatek", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 122644, "date": "Aug 8 2019"}, {"filename": "mt7615_n9.bin", "parent": "/usr/lib/firmware/mediatek", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 459000, "date": "Aug 8 2019"}, {"filename": "mt7615_rom_patch.bin", "parent": "/usr/lib/firmware/mediatek", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 11102, "date": "Aug 8 2019"}, {"filename": "mt7622pr2h.bin", "parent": "/usr/lib/firmware/mediatek", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 78158, "date": "Aug 8 2019"}, {"filename": "mt7650e.bin", "parent": "/usr/lib/firmware/mediatek", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 382212, "date": "Aug 8 2019"}, {"filename": "mt7662u.bin", "parent": "/usr/lib/firmware/mediatek", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 91412, "date": "Aug 8 2019"}, {"filename": "mt7662u_rom_patch.bin", "parent": "/usr/lib/firmware/mediatek", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 20686, "date": "Aug 8 2019"}, {"filename": "mt7668pr2h.bin", "parent": "/usr/lib/firmware/mediatek", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 170990, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/mellanox", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 236, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/mellanox", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "mlxsw_spectrum-13.1420.122.mfa2", "parent": "/usr/lib/firmware/mellanox", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 860424, "date": "Aug 8 2019"}, {"filename": "mlxsw_spectrum-13.1530.152.mfa2", "parent": "/usr/lib/firmware/mellanox", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 924020, "date": "Aug 8 2019"}, {"filename": "mlxsw_spectrum-13.1620.192.mfa2", "parent": "/usr/lib/firmware/mellanox", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1091848, "date": "Aug 8 2019"}, {"filename": "mlxsw_spectrum-13.1702.6.mfa2", "parent": "/usr/lib/firmware/mellanox", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 863220, "date": "Aug 8 2019"}, {"filename": "mlxsw_spectrum-13.1703.4.mfa2", "parent": "/usr/lib/firmware/mellanox", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1150296, "date": "Aug 8 2019"}, {"filename": "mlxsw_spectrum-13.1910.622.mfa2", "parent": "/usr/lib/firmware/mellanox", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 932092, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/microchip", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 90, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/microchip", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "mscc_vsc8574_revb_int8051_29e8.bin", "parent": "/usr/lib/firmware/microchip", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1655, "date": "Aug 8 2019"}, {"filename": "mscc_vsc8584_revb_int8051_fb48.bin", "parent": "/usr/lib/firmware/microchip", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 92, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/mixart", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 66, "date": "Aug 15 2019"}, {"filename": "..", "parent": "/usr/lib/firmware/mixart", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "miXart8AES.xlx", "parent": "/usr/lib/firmware/mixart", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 97652, "date": "Mar 5 2015"}, {"filename": "miXart8.elf", "parent": "/usr/lib/firmware/mixart", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 928712, "date": "Mar 5 2015"}, {"filename": "miXart8.xlx", "parent": "/usr/lib/firmware/mixart", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 97652, "date": "Mar 5 2015"}, {"filename": ".", "parent": "/usr/lib/firmware/moxa", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 286, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/moxa", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "moxa-1110.fw", "parent": "/usr/lib/firmware/moxa", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 12462, "date": "Aug 8 2019"}, {"filename": "moxa-1130.fw", "parent": "/usr/lib/firmware/moxa", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 12462, "date": "Aug 8 2019"}, {"filename": "moxa-1131.fw", "parent": "/usr/lib/firmware/moxa", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 12462, "date": "Aug 8 2019"}, {"filename": "moxa-1150.fw", "parent": "/usr/lib/firmware/moxa", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 12462, "date": "Aug 8 2019"}, {"filename": "moxa-1151.fw", "parent": "/usr/lib/firmware/moxa", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 12462, "date": "Aug 8 2019"}, {"filename": "moxa-1250.fw", "parent": "/usr/lib/firmware/moxa", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 33681, "date": "Aug 8 2019"}, {"filename": "moxa-1251.fw", "parent": "/usr/lib/firmware/moxa", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 33685, "date": "Aug 8 2019"}, {"filename": "moxa-1410.fw", "parent": "/usr/lib/firmware/moxa", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 33521, "date": "Aug 8 2019"}, {"filename": "moxa-1450.fw", "parent": "/usr/lib/firmware/moxa", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 33521, "date": "Aug 8 2019"}, {"filename": "moxa-1451.fw", "parent": "/usr/lib/firmware/moxa", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 33525, "date": "Aug 8 2019"}, {"filename": "moxa-1613.fw", "parent": "/usr/lib/firmware/moxa", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 33529, "date": "Aug 8 2019"}, {"filename": "moxa-1618.fw", "parent": "/usr/lib/firmware/moxa", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 33525, "date": "Aug 8 2019"}, {"filename": "moxa-1653.fw", "parent": "/usr/lib/firmware/moxa", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 33529, "date": "Aug 8 2019"}, {"filename": "moxa-1658.fw", "parent": "/usr/lib/firmware/moxa", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 33525, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/mrvl", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/mrvl", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "pcie8897_uapsta.bin", "parent": "/usr/lib/firmware/mrvl", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 723540, "date": "Aug 8 2019"}, {"filename": "pcie8997_wlan_v4.bin", "parent": "/usr/lib/firmware/mrvl", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 456488, "date": "Aug 8 2019"}, {"filename": "pcieuart8997_combo_v4.bin", "parent": "/usr/lib/firmware/mrvl", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 632240, "date": "Aug 8 2019"}, {"filename": "pcieusb8997_combo_v4.bin", "parent": "/usr/lib/firmware/mrvl", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 634228, "date": "Aug 8 2019"}, {"filename": "sd8787_uapsta.bin", "parent": "/usr/lib/firmware/mrvl", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 466592, "date": "Aug 8 2019"}, {"filename": "sd8797_uapsta.bin", "parent": "/usr/lib/firmware/mrvl", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 533976, "date": "Aug 8 2019"}, {"filename": "sd8801_uapsta.bin", "parent": "/usr/lib/firmware/mrvl", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 255988, "date": "Aug 8 2019"}, {"filename": "sd8887_uapsta.bin", "parent": "/usr/lib/firmware/mrvl", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 616840, "date": "Aug 8 2019"}, {"filename": "sd8897_uapsta.bin", "parent": "/usr/lib/firmware/mrvl", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 701072, "date": "Aug 8 2019"}, {"filename": "sdsd8977_combo_v2.bin", "parent": "/usr/lib/firmware/mrvl", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 587052, "date": "Aug 8 2019"}, {"filename": "sdsd8997_combo_v4.bin", "parent": "/usr/lib/firmware/mrvl", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 621896, "date": "Aug 8 2019"}, {"filename": "usb8766_uapsta.bin", "parent": "/usr/lib/firmware/mrvl", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 478836, "date": "Aug 8 2019"}, {"filename": "usb8797_uapsta.bin", "parent": "/usr/lib/firmware/mrvl", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 553940, "date": "Aug 8 2019"}, {"filename": "usb8801_uapsta.bin", "parent": "/usr/lib/firmware/mrvl", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 252260, "date": "Aug 8 2019"}, {"filename": "usb8897_uapsta.bin", "parent": "/usr/lib/firmware/mrvl", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 752340, "date": "Aug 8 2019"}, {"filename": "usbusb8997_combo_v4.bin", "parent": "/usr/lib/firmware/mrvl", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 610252, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/mwlwifi", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 44, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/mwlwifi", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "88W8864.bin", "parent": "/usr/lib/firmware/mwlwifi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 116356, "date": "Aug 8 2019"}, {"filename": "88W8897.bin", "parent": "/usr/lib/firmware/mwlwifi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 489084, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/myricom", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 23, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/myricom", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "lanai.bin", "parent": "/usr/lib/firmware/myricom", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 76258, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/netronome", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/netronome", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "bpf", "parent": "/usr/lib/firmware/netronome", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "flower", "parent": "/usr/lib/firmware/netronome", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "nic", "parent": "/usr/lib/firmware/netronome", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "nic_AMDA0058-0011_2x40.nffw", "link_to": "nic/nic_AMDA0058-0011_2x40.nffw", "parent": "/usr/lib/firmware/netronome", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 31, "date": "Oct 16 09:22"}, {"filename": "nic_AMDA0058-0012_2x40.nffw", "link_to": "nic/nic_AMDA0058-0012_2x40.nffw", "parent": "/usr/lib/firmware/netronome", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 31, "date": "Oct 16 09:22"}, {"filename": "nic_AMDA0078-0011_1x100.nffw", "link_to": "nic/nic_AMDA0078-0011_1x100.nffw", "parent": "/usr/lib/firmware/netronome", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 32, "date": "Oct 16 09:22"}, {"filename": "nic_AMDA0081-0001_1x40.nffw", "link_to": "nic/nic_AMDA0081-0001_1x40.nffw", "parent": "/usr/lib/firmware/netronome", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 31, "date": "Oct 16 09:22"}, {"filename": "nic_AMDA0081-0001_4x10.nffw", "link_to": "nic/nic_AMDA0081-0001_4x10.nffw", "parent": "/usr/lib/firmware/netronome", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 31, "date": "Oct 16 09:22"}, {"filename": "nic_AMDA0096-0001_2x10.nffw", "link_to": "nic/nic_AMDA0096-0001_2x10.nffw", "parent": "/usr/lib/firmware/netronome", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 31, "date": "Oct 16 09:22"}, {"filename": "nic_AMDA0097-0001_2x40.nffw", "link_to": "nic/nic_AMDA0097-0001_2x40.nffw", "parent": "/usr/lib/firmware/netronome", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 31, "date": "Oct 16 09:22"}, {"filename": "nic_AMDA0097-0001_4x10_1x40.nffw", "link_to": "nic/nic_AMDA0097-0001_4x10_1x40.nffw", "parent": "/usr/lib/firmware/netronome", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 36, "date": "Oct 16 09:22"}, {"filename": "nic_AMDA0097-0001_8x10.nffw", "link_to": "nic/nic_AMDA0097-0001_8x10.nffw", "parent": "/usr/lib/firmware/netronome", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 31, "date": "Oct 16 09:22"}, {"filename": "nic_AMDA0099-0001_1x10_1x25.nffw", "link_to": "nic/nic_AMDA0099-0001_1x10_1x25.nffw", "parent": "/usr/lib/firmware/netronome", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 36, "date": "Oct 16 09:22"}, {"filename": "nic_AMDA0099-0001_2x10.nffw", "link_to": "nic/nic_AMDA0099-0001_2x10.nffw", "parent": "/usr/lib/firmware/netronome", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 31, "date": "Oct 16 09:22"}, {"filename": "nic_AMDA0099-0001_2x25.nffw", "link_to": "nic/nic_AMDA0099-0001_2x25.nffw", "parent": "/usr/lib/firmware/netronome", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 31, "date": "Oct 16 09:22"}, {"filename": "nic-sriov", "parent": "/usr/lib/firmware/netronome", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/netronome/bpf", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/netronome/bpf", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "nic_AMDA0058-0011_2x40.nffw", "parent": "/usr/lib/firmware/netronome/bpf", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2240160, "date": "Aug 8 2019"}, {"filename": "nic_AMDA0058-0012_2x40.nffw", "parent": "/usr/lib/firmware/netronome/bpf", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2240160, "date": "Aug 8 2019"}, {"filename": "nic_AMDA0078-0011_1x100.nffw", "parent": "/usr/lib/firmware/netronome/bpf", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2173816, "date": "Aug 8 2019"}, {"filename": "nic_AMDA0081-0001_1x40.nffw", "parent": "/usr/lib/firmware/netronome/bpf", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2174120, "date": "Aug 8 2019"}, {"filename": "nic_AMDA0081-0001_4x10.nffw", "parent": "/usr/lib/firmware/netronome/bpf", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2362248, "date": "Aug 8 2019"}, {"filename": "nic_AMDA0096-0001_2x10.nffw", "parent": "/usr/lib/firmware/netronome/bpf", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2239192, "date": "Aug 8 2019"}, {"filename": "nic_AMDA0097-0001_2x40.nffw", "parent": "/usr/lib/firmware/netronome/bpf", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2239384, "date": "Aug 8 2019"}, {"filename": "nic_AMDA0097-0001_4x10_1x40.nffw", "parent": "/usr/lib/firmware/netronome/bpf", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2423968, "date": "Aug 8 2019"}, {"filename": "nic_AMDA0097-0001_8x10.nffw", "parent": "/usr/lib/firmware/netronome/bpf", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2608288, "date": "Aug 8 2019"}, {"filename": "nic_AMDA0099-0001_1x10_1x25.nffw", "parent": "/usr/lib/firmware/netronome/bpf", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2240440, "date": "Aug 8 2019"}, {"filename": "nic_AMDA0099-0001_2x10.nffw", "parent": "/usr/lib/firmware/netronome/bpf", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2239192, "date": "Aug 8 2019"}, {"filename": "nic_AMDA0099-0001_2x25.nffw", "parent": "/usr/lib/firmware/netronome/bpf", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2240088, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/netronome/flower", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/netronome/flower", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "nic_AMDA0058-0011_1x100.nffw", "link_to": "nic_AMDA0058.nffw", "parent": "/usr/lib/firmware/netronome/flower", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 17, "date": "Oct 16 09:22"}, {"filename": "nic_AMDA0058-0011_2x40.nffw", "link_to": "nic_AMDA0058.nffw", "parent": "/usr/lib/firmware/netronome/flower", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 17, "date": "Oct 16 09:22"}, {"filename": "nic_AMDA0058-0011_4x10_1x40.nffw", "link_to": "nic_AMDA0058.nffw", "parent": "/usr/lib/firmware/netronome/flower", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 17, "date": "Oct 16 09:22"}, {"filename": "nic_AMDA0058-0011_8x10.nffw", "link_to": "nic_AMDA0058.nffw", "parent": "/usr/lib/firmware/netronome/flower", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 17, "date": "Oct 16 09:22"}, {"filename": "nic_AMDA0058-0012_1x100.nffw", "link_to": "nic_AMDA0058.nffw", "parent": "/usr/lib/firmware/netronome/flower", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 17, "date": "Oct 16 09:22"}, {"filename": "nic_AMDA0058-0012_2x40.nffw", "link_to": "nic_AMDA0058.nffw", "parent": "/usr/lib/firmware/netronome/flower", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 17, "date": "Oct 16 09:22"}, {"filename": "nic_AMDA0058-0012_4x10_1x40.nffw", "link_to": "nic_AMDA0058.nffw", "parent": "/usr/lib/firmware/netronome/flower", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 17, "date": "Oct 16 09:22"}, {"filename": "nic_AMDA0058-0012_8x10.nffw", "link_to": "nic_AMDA0058.nffw", "parent": "/usr/lib/firmware/netronome/flower", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 17, "date": "Oct 16 09:22"}, {"filename": "nic_AMDA0058.nffw", "parent": "/usr/lib/firmware/netronome/flower", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 6789896, "date": "Aug 8 2019"}, {"filename": "nic_AMDA0078-0011_1x100.nffw", "link_to": "nic_AMDA0058.nffw", "parent": "/usr/lib/firmware/netronome/flower", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 17, "date": "Oct 16 09:22"}, {"filename": "nic_AMDA0078-0011_2x40.nffw", "link_to": "nic_AMDA0058.nffw", "parent": "/usr/lib/firmware/netronome/flower", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 17, "date": "Oct 16 09:22"}, {"filename": "nic_AMDA0078-0011_4x10_1x40.nffw", "link_to": "nic_AMDA0058.nffw", "parent": "/usr/lib/firmware/netronome/flower", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 17, "date": "Oct 16 09:22"}, {"filename": "nic_AMDA0078-0011_8x10.nffw", "link_to": "nic_AMDA0058.nffw", "parent": "/usr/lib/firmware/netronome/flower", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 17, "date": "Oct 16 09:22"}, {"filename": "nic_AMDA0078-0012_1x100.nffw", "link_to": "nic_AMDA0058.nffw", "parent": "/usr/lib/firmware/netronome/flower", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 17, "date": "Oct 16 09:22"}, {"filename": "nic_AMDA0078-0012_2x40.nffw", "link_to": "nic_AMDA0058.nffw", "parent": "/usr/lib/firmware/netronome/flower", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 17, "date": "Oct 16 09:22"}, {"filename": "nic_AMDA0078-0012_4x10_1x40.nffw", "link_to": "nic_AMDA0058.nffw", "parent": "/usr/lib/firmware/netronome/flower", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 17, "date": "Oct 16 09:22"}, {"filename": "nic_AMDA0078-0012_8x10.nffw", "link_to": "nic_AMDA0058.nffw", "parent": "/usr/lib/firmware/netronome/flower", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 17, "date": "Oct 16 09:22"}, {"filename": "nic_AMDA0081-0001_1x40.nffw", "link_to": "nic_AMDA0081.nffw", "parent": "/usr/lib/firmware/netronome/flower", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 17, "date": "Oct 16 09:22"}, {"filename": "nic_AMDA0081-0001_4x10.nffw", "link_to": "nic_AMDA0081.nffw", "parent": "/usr/lib/firmware/netronome/flower", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 17, "date": "Oct 16 09:22"}, {"filename": "nic_AMDA0081.nffw", "link_to": "nic_AMDA0097.nffw", "parent": "/usr/lib/firmware/netronome/flower", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 17, "date": "Oct 16 09:22"}, {"filename": "nic_AMDA0096-0001_2x10.nffw", "link_to": "nic_AMDA0096.nffw", "parent": "/usr/lib/firmware/netronome/flower", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 17, "date": "Oct 16 09:22"}, {"filename": "nic_AMDA0096.nffw", "parent": "/usr/lib/firmware/netronome/flower", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4216632, "date": "Aug 8 2019"}, {"filename": "nic_AMDA0097-0001_2x40.nffw", "link_to": "nic_AMDA0097.nffw", "parent": "/usr/lib/firmware/netronome/flower", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 17, "date": "Oct 16 09:22"}, {"filename": "nic_AMDA0097-0001_4x10_1x40.nffw", "link_to": "nic_AMDA0097.nffw", "parent": "/usr/lib/firmware/netronome/flower", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 17, "date": "Oct 16 09:22"}, {"filename": "nic_AMDA0097-0001_8x10.nffw", "link_to": "nic_AMDA0097.nffw", "parent": "/usr/lib/firmware/netronome/flower", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 17, "date": "Oct 16 09:22"}, {"filename": "nic_AMDA0097.nffw", "parent": "/usr/lib/firmware/netronome/flower", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4217608, "date": "Aug 8 2019"}, {"filename": "nic_AMDA0099-0001_1x10_1x25.nffw", "link_to": "nic_AMDA0099.nffw", "parent": "/usr/lib/firmware/netronome/flower", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 17, "date": "Oct 16 09:22"}, {"filename": "nic_AMDA0099-0001_2x10.nffw", "link_to": "nic_AMDA0099.nffw", "parent": "/usr/lib/firmware/netronome/flower", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 17, "date": "Oct 16 09:22"}, {"filename": "nic_AMDA0099-0001_2x25.nffw", "link_to": "nic_AMDA0099.nffw", "parent": "/usr/lib/firmware/netronome/flower", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 17, "date": "Oct 16 09:22"}, {"filename": "nic_AMDA0099.nffw", "parent": "/usr/lib/firmware/netronome/flower", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4219976, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/netronome/nic", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/netronome/nic", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "nic_AMDA0058-0011_2x40.nffw", "parent": "/usr/lib/firmware/netronome/nic", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 3222512, "date": "Aug 8 2019"}, {"filename": "nic_AMDA0058-0012_2x40.nffw", "parent": "/usr/lib/firmware/netronome/nic", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 3222512, "date": "Aug 8 2019"}, {"filename": "nic_AMDA0078-0011_1x100.nffw", "parent": "/usr/lib/firmware/netronome/nic", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 3180672, "date": "Aug 8 2019"}, {"filename": "nic_AMDA0081-0001_1x40.nffw", "parent": "/usr/lib/firmware/netronome/nic", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 3181080, "date": "Aug 8 2019"}, {"filename": "nic_AMDA0081-0001_4x10.nffw", "parent": "/usr/lib/firmware/netronome/nic", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 3297408, "date": "Aug 8 2019"}, {"filename": "nic_AMDA0096-0001_2x10.nffw", "parent": "/usr/lib/firmware/netronome/nic", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 3221848, "date": "Aug 8 2019"}, {"filename": "nic_AMDA0097-0001_2x40.nffw", "parent": "/usr/lib/firmware/netronome/nic", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 3221944, "date": "Aug 8 2019"}, {"filename": "nic_AMDA0097-0001_4x10_1x40.nffw", "parent": "/usr/lib/firmware/netronome/nic", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 3335048, "date": "Aug 8 2019"}, {"filename": "nic_AMDA0097-0001_8x10.nffw", "parent": "/usr/lib/firmware/netronome/nic", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 3449264, "date": "Aug 8 2019"}, {"filename": "nic_AMDA0099-0001_1x10_1x25.nffw", "parent": "/usr/lib/firmware/netronome/nic", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 3222856, "date": "Aug 8 2019"}, {"filename": "nic_AMDA0099-0001_2x10.nffw", "parent": "/usr/lib/firmware/netronome/nic", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 3221832, "date": "Aug 8 2019"}, {"filename": "nic_AMDA0099-0001_2x25.nffw", "parent": "/usr/lib/firmware/netronome/nic", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 3222648, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/netronome/nic-sriov", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/netronome/nic-sriov", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "nic_AMDA0058-0011_2x40.nffw", "parent": "/usr/lib/firmware/netronome/nic-sriov", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4958776, "date": "Aug 8 2019"}, {"filename": "nic_AMDA0058-0012_2x40.nffw", "parent": "/usr/lib/firmware/netronome/nic-sriov", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4958776, "date": "Aug 8 2019"}, {"filename": "nic_AMDA0078-0011_1x100.nffw", "parent": "/usr/lib/firmware/netronome/nic-sriov", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 5203752, "date": "Aug 8 2019"}, {"filename": "nic_AMDA0081-0001_1x40.nffw", "parent": "/usr/lib/firmware/netronome/nic-sriov", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 5204048, "date": "Aug 8 2019"}, {"filename": "nic_AMDA0081-0001_4x10.nffw", "parent": "/usr/lib/firmware/netronome/nic-sriov", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 5033952, "date": "Aug 8 2019"}, {"filename": "nic_AMDA0096-0001_2x10.nffw", "parent": "/usr/lib/firmware/netronome/nic-sriov", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4958016, "date": "Aug 8 2019"}, {"filename": "nic_AMDA0097-0001_2x40.nffw", "parent": "/usr/lib/firmware/netronome/nic-sriov", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4958128, "date": "Aug 8 2019"}, {"filename": "nic_AMDA0097-0001_4x10_1x40.nffw", "parent": "/usr/lib/firmware/netronome/nic-sriov", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 5072120, "date": "Aug 8 2019"}, {"filename": "nic_AMDA0097-0001_8x10.nffw", "parent": "/usr/lib/firmware/netronome/nic-sriov", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 5185472, "date": "Aug 8 2019"}, {"filename": "nic_AMDA0099-0001_1x10_1x25.nffw", "parent": "/usr/lib/firmware/netronome/nic-sriov", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4959328, "date": "Aug 8 2019"}, {"filename": "nic_AMDA0099-0001_2x10.nffw", "parent": "/usr/lib/firmware/netronome/nic-sriov", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4958000, "date": "Aug 8 2019"}, {"filename": "nic_AMDA0099-0001_2x25.nffw", "parent": "/usr/lib/firmware/netronome/nic-sriov", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4958832, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia", "flags": "drwxr-xr-x.", "links": 19, "owner": "root", "group": "root", "size": 236, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "gk20a", "parent": "/usr/lib/firmware/nvidia", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 183, "date": "Oct 16 09:22"}, {"filename": "gm200", "parent": "/usr/lib/firmware/nvidia", "flags": "drwxr-xr-x.", "links": 4, "owner": "root", "group": "root", "size": 27, "date": "Aug 8 2019"}, {"filename": "gm204", "parent": "/usr/lib/firmware/nvidia", "flags": "drwxr-xr-x.", "links": 4, "owner": "root", "group": "root", "size": 27, "date": "Aug 8 2019"}, {"filename": "gm206", "parent": "/usr/lib/firmware/nvidia", "flags": "drwxr-xr-x.", "links": 4, "owner": "root", "group": "root", "size": 27, "date": "Aug 8 2019"}, {"filename": "gm20b", "parent": "/usr/lib/firmware/nvidia", "flags": "drwxr-xr-x.", "links": 5, "owner": "root", "group": "root", "size": 38, "date": "Aug 8 2019"}, {"filename": "gp100", "parent": "/usr/lib/firmware/nvidia", "flags": "drwxr-xr-x.", "links": 4, "owner": "root", "group": "root", "size": 27, "date": "Aug 8 2019"}, {"filename": "gp102", "parent": "/usr/lib/firmware/nvidia", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 52, "date": "Aug 8 2019"}, {"filename": "gp104", "parent": "/usr/lib/firmware/nvidia", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 52, "date": "Aug 8 2019"}, {"filename": "gp106", "parent": "/usr/lib/firmware/nvidia", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 52, "date": "Aug 8 2019"}, {"filename": "gp107", "parent": "/usr/lib/firmware/nvidia", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 52, "date": "Aug 8 2019"}, {"filename": "gp108", "parent": "/usr/lib/firmware/nvidia", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 52, "date": "Aug 8 2019"}, {"filename": "gp10b", "parent": "/usr/lib/firmware/nvidia", "flags": "drwxr-xr-x.", "links": 5, "owner": "root", "group": "root", "size": 38, "date": "Aug 8 2019"}, {"filename": "gv100", "parent": "/usr/lib/firmware/nvidia", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 52, "date": "Oct 16 09:22"}, {"filename": "tegra124", "parent": "/usr/lib/firmware/nvidia", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 45, "date": "Oct 16 09:22"}, {"filename": "tegra186", "parent": "/usr/lib/firmware/nvidia", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 29, "date": "Oct 16 09:22"}, {"filename": "tegra210", "parent": "/usr/lib/firmware/nvidia", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 45, "date": "Oct 16 09:22"}, {"filename": "tu10x", "parent": "/usr/lib/firmware/nvidia", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 19, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gk20a", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 183, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gk20a", "flags": "drwxr-xr-x.", "links": 19, "owner": "root", "group": "root", "size": 236, "date": "Oct 16 09:22"}, {"filename": "fecs_data.bin", "parent": "/usr/lib/firmware/nvidia/gk20a", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1920, "date": "Aug 8 2019"}, {"filename": "fecs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gk20a", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 15356, "date": "Aug 8 2019"}, {"filename": "gpccs_data.bin", "parent": "/usr/lib/firmware/nvidia/gk20a", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1800, "date": "Aug 8 2019"}, {"filename": "gpccs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gk20a", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8171, "date": "Aug 8 2019"}, {"filename": "sw_bundle_init.bin", "parent": "/usr/lib/firmware/nvidia/gk20a", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 6696, "date": "Aug 8 2019"}, {"filename": "sw_ctx.bin", "parent": "/usr/lib/firmware/nvidia/gk20a", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4464, "date": "Aug 8 2019"}, {"filename": "sw_method_init.bin", "parent": "/usr/lib/firmware/nvidia/gk20a", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 10304, "date": "Aug 8 2019"}, {"filename": "sw_nonctx.bin", "parent": "/usr/lib/firmware/nvidia/gk20a", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1360, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gm200", "flags": "drwxr-xr-x.", "links": 4, "owner": "root", "group": "root", "size": 27, "date": "Aug 8 2019"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gm200", "flags": "drwxr-xr-x.", "links": 19, "owner": "root", "group": "root", "size": 236, "date": "Oct 16 09:22"}, {"filename": "acr", "parent": "/usr/lib/firmware/nvidia/gm200", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 66, "date": "Oct 16 09:22"}, {"filename": "gr", "parent": "/usr/lib/firmware/nvidia/gm200", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 263, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gm200/acr", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 66, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gm200/acr", "flags": "drwxr-xr-x.", "links": 4, "owner": "root", "group": "root", "size": 27, "date": "Aug 8 2019"}, {"filename": "bl.bin", "parent": "/usr/lib/firmware/nvidia/gm200/acr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 832, "date": "Aug 8 2019"}, {"filename": "ucode_load.bin", "parent": "/usr/lib/firmware/nvidia/gm200/acr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 10144, "date": "Aug 8 2019"}, {"filename": "ucode_unload.bin", "parent": "/usr/lib/firmware/nvidia/gm200/acr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1440, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gm200/gr", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 263, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gm200/gr", "flags": "drwxr-xr-x.", "links": 4, "owner": "root", "group": "root", "size": 27, "date": "Aug 8 2019"}, {"filename": "fecs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gm200/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 576, "date": "Aug 8 2019"}, {"filename": "fecs_data.bin", "parent": "/usr/lib/firmware/nvidia/gm200/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1968, "date": "Aug 8 2019"}, {"filename": "fecs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gm200/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 16271, "date": "Aug 8 2019"}, {"filename": "fecs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gm200/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 76, "date": "Aug 8 2019"}, {"filename": "gpccs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gm200/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 576, "date": "Aug 8 2019"}, {"filename": "gpccs_data.bin", "parent": "/usr/lib/firmware/nvidia/gm200/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2056, "date": "Aug 8 2019"}, {"filename": "gpccs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gm200/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 9768, "date": "Aug 8 2019"}, {"filename": "gpccs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gm200/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 76, "date": "Aug 8 2019"}, {"filename": "sw_bundle_init.bin", "parent": "/usr/lib/firmware/nvidia/gm200/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 7616, "date": "Aug 8 2019"}, {"filename": "sw_ctx.bin", "parent": "/usr/lib/firmware/nvidia/gm200/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 5592, "date": "Aug 8 2019"}, {"filename": "sw_method_init.bin", "parent": "/usr/lib/firmware/nvidia/gm200/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 10800, "date": "Aug 8 2019"}, {"filename": "sw_nonctx.bin", "parent": "/usr/lib/firmware/nvidia/gm200/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1440, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gm204", "flags": "drwxr-xr-x.", "links": 4, "owner": "root", "group": "root", "size": 27, "date": "Aug 8 2019"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gm204", "flags": "drwxr-xr-x.", "links": 19, "owner": "root", "group": "root", "size": 236, "date": "Oct 16 09:22"}, {"filename": "acr", "parent": "/usr/lib/firmware/nvidia/gm204", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 66, "date": "Oct 16 09:22"}, {"filename": "gr", "parent": "/usr/lib/firmware/nvidia/gm204", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 263, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gm204/acr", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 66, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gm204/acr", "flags": "drwxr-xr-x.", "links": 4, "owner": "root", "group": "root", "size": 27, "date": "Aug 8 2019"}, {"filename": "bl.bin", "link_to": "../../gm200/acr/bl.bin", "parent": "/usr/lib/firmware/nvidia/gm204/acr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 22, "date": "Oct 16 09:22"}, {"filename": "ucode_load.bin", "link_to": "../../gm200/acr/ucode_load.bin", "parent": "/usr/lib/firmware/nvidia/gm204/acr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 30, "date": "Oct 16 09:22"}, {"filename": "ucode_unload.bin", "link_to": "../../gm200/acr/ucode_unload.bin", "parent": "/usr/lib/firmware/nvidia/gm204/acr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 32, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gm204/gr", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 263, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gm204/gr", "flags": "drwxr-xr-x.", "links": 4, "owner": "root", "group": "root", "size": 27, "date": "Aug 8 2019"}, {"filename": "fecs_bl.bin", "link_to": "../../gm200/gr/fecs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gm204/gr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 26, "date": "Oct 16 09:22"}, {"filename": "fecs_data.bin", "parent": "/usr/lib/firmware/nvidia/gm204/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1968, "date": "Aug 8 2019"}, {"filename": "fecs_inst.bin", "link_to": "../../gm200/gr/fecs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gm204/gr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 28, "date": "Oct 16 09:22"}, {"filename": "fecs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gm204/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 76, "date": "Aug 8 2019"}, {"filename": "gpccs_bl.bin", "link_to": "../../gm200/gr/gpccs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gm204/gr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 27, "date": "Oct 16 09:22"}, {"filename": "gpccs_data.bin", "parent": "/usr/lib/firmware/nvidia/gm204/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2056, "date": "Aug 8 2019"}, {"filename": "gpccs_inst.bin", "link_to": "../../gm200/gr/gpccs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gm204/gr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 29, "date": "Oct 16 09:22"}, {"filename": "gpccs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gm204/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 76, "date": "Aug 8 2019"}, {"filename": "sw_bundle_init.bin", "link_to": "../../gm200/gr/sw_bundle_init.bin", "parent": "/usr/lib/firmware/nvidia/gm204/gr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 33, "date": "Oct 16 09:22"}, {"filename": "sw_ctx.bin", "link_to": "../../gm200/gr/sw_ctx.bin", "parent": "/usr/lib/firmware/nvidia/gm204/gr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 25, "date": "Oct 16 09:22"}, {"filename": "sw_method_init.bin", "link_to": "../../gm200/gr/sw_method_init.bin", "parent": "/usr/lib/firmware/nvidia/gm204/gr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 33, "date": "Oct 16 09:22"}, {"filename": "sw_nonctx.bin", "link_to": "../../gm200/gr/sw_nonctx.bin", "parent": "/usr/lib/firmware/nvidia/gm204/gr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 28, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gm206", "flags": "drwxr-xr-x.", "links": 4, "owner": "root", "group": "root", "size": 27, "date": "Aug 8 2019"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gm206", "flags": "drwxr-xr-x.", "links": 19, "owner": "root", "group": "root", "size": 236, "date": "Oct 16 09:22"}, {"filename": "acr", "parent": "/usr/lib/firmware/nvidia/gm206", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 66, "date": "Oct 16 09:22"}, {"filename": "gr", "parent": "/usr/lib/firmware/nvidia/gm206", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 263, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gm206/acr", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 66, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gm206/acr", "flags": "drwxr-xr-x.", "links": 4, "owner": "root", "group": "root", "size": 27, "date": "Aug 8 2019"}, {"filename": "bl.bin", "link_to": "../../gm200/acr/bl.bin", "parent": "/usr/lib/firmware/nvidia/gm206/acr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 22, "date": "Oct 16 09:22"}, {"filename": "ucode_load.bin", "parent": "/usr/lib/firmware/nvidia/gm206/acr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 10144, "date": "Aug 8 2019"}, {"filename": "ucode_unload.bin", "parent": "/usr/lib/firmware/nvidia/gm206/acr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1440, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gm206/gr", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 263, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gm206/gr", "flags": "drwxr-xr-x.", "links": 4, "owner": "root", "group": "root", "size": 27, "date": "Aug 8 2019"}, {"filename": "fecs_bl.bin", "link_to": "../../gm200/gr/fecs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gm206/gr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 26, "date": "Oct 16 09:22"}, {"filename": "fecs_data.bin", "parent": "/usr/lib/firmware/nvidia/gm206/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1968, "date": "Aug 8 2019"}, {"filename": "fecs_inst.bin", "link_to": "../../gm200/gr/fecs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gm206/gr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 28, "date": "Oct 16 09:22"}, {"filename": "fecs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gm206/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 76, "date": "Aug 8 2019"}, {"filename": "gpccs_bl.bin", "link_to": "../../gm200/gr/gpccs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gm206/gr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 27, "date": "Oct 16 09:22"}, {"filename": "gpccs_data.bin", "parent": "/usr/lib/firmware/nvidia/gm206/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2056, "date": "Aug 8 2019"}, {"filename": "gpccs_inst.bin", "link_to": "../../gm200/gr/gpccs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gm206/gr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 29, "date": "Oct 16 09:22"}, {"filename": "gpccs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gm206/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 76, "date": "Aug 8 2019"}, {"filename": "sw_bundle_init.bin", "link_to": "../../gm200/gr/sw_bundle_init.bin", "parent": "/usr/lib/firmware/nvidia/gm206/gr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 33, "date": "Oct 16 09:22"}, {"filename": "sw_ctx.bin", "link_to": "../../gm200/gr/sw_ctx.bin", "parent": "/usr/lib/firmware/nvidia/gm206/gr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 25, "date": "Oct 16 09:22"}, {"filename": "sw_method_init.bin", "link_to": "../../gm200/gr/sw_method_init.bin", "parent": "/usr/lib/firmware/nvidia/gm206/gr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 33, "date": "Oct 16 09:22"}, {"filename": "sw_nonctx.bin", "link_to": "../../gm200/gr/sw_nonctx.bin", "parent": "/usr/lib/firmware/nvidia/gm206/gr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 28, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gm20b", "flags": "drwxr-xr-x.", "links": 5, "owner": "root", "group": "root", "size": 38, "date": "Aug 8 2019"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gm20b", "flags": "drwxr-xr-x.", "links": 19, "owner": "root", "group": "root", "size": 236, "date": "Oct 16 09:22"}, {"filename": "acr", "parent": "/usr/lib/firmware/nvidia/gm20b", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 42, "date": "Oct 16 09:22"}, {"filename": "gr", "parent": "/usr/lib/firmware/nvidia/gm20b", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 222, "date": "Oct 16 09:22"}, {"filename": "pmu", "parent": "/usr/lib/firmware/nvidia/gm20b", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 54, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gm20b/acr", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 42, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gm20b/acr", "flags": "drwxr-xr-x.", "links": 5, "owner": "root", "group": "root", "size": 38, "date": "Aug 8 2019"}, {"filename": "bl.bin", "parent": "/usr/lib/firmware/nvidia/gm20b/acr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 832, "date": "Aug 8 2019"}, {"filename": "ucode_load.bin", "parent": "/usr/lib/firmware/nvidia/gm20b/acr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 18592, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gm20b/gr", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 222, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gm20b/gr", "flags": "drwxr-xr-x.", "links": 5, "owner": "root", "group": "root", "size": 38, "date": "Aug 8 2019"}, {"filename": "fecs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gm20b/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 576, "date": "Aug 8 2019"}, {"filename": "fecs_data.bin", "parent": "/usr/lib/firmware/nvidia/gm20b/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1964, "date": "Aug 8 2019"}, {"filename": "fecs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gm20b/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17021, "date": "Aug 8 2019"}, {"filename": "fecs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gm20b/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 76, "date": "Aug 8 2019"}, {"filename": "gpccs_data.bin", "parent": "/usr/lib/firmware/nvidia/gm20b/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2068, "date": "Aug 8 2019"}, {"filename": "gpccs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gm20b/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 9964, "date": "Aug 8 2019"}, {"filename": "sw_bundle_init.bin", "parent": "/usr/lib/firmware/nvidia/gm20b/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 7616, "date": "Aug 8 2019"}, {"filename": "sw_ctx.bin", "parent": "/usr/lib/firmware/nvidia/gm20b/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 5448, "date": "Aug 8 2019"}, {"filename": "sw_method_init.bin", "link_to": "../../gm200/gr/sw_method_init.bin", "parent": "/usr/lib/firmware/nvidia/gm20b/gr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 33, "date": "Oct 16 09:22"}, {"filename": "sw_nonctx.bin", "parent": "/usr/lib/firmware/nvidia/gm20b/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1432, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gm20b/pmu", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 54, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gm20b/pmu", "flags": "drwxr-xr-x.", "links": 5, "owner": "root", "group": "root", "size": 38, "date": "Aug 8 2019"}, {"filename": "desc.bin", "parent": "/usr/lib/firmware/nvidia/gm20b/pmu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 652, "date": "Aug 8 2019"}, {"filename": "image.bin", "parent": "/usr/lib/firmware/nvidia/gm20b/pmu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 47872, "date": "Aug 8 2019"}, {"filename": "sig.bin", "parent": "/usr/lib/firmware/nvidia/gm20b/pmu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 76, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gp100", "flags": "drwxr-xr-x.", "links": 4, "owner": "root", "group": "root", "size": 27, "date": "Aug 8 2019"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gp100", "flags": "drwxr-xr-x.", "links": 19, "owner": "root", "group": "root", "size": 236, "date": "Oct 16 09:22"}, {"filename": "acr", "parent": "/usr/lib/firmware/nvidia/gp100", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 66, "date": "Oct 16 09:22"}, {"filename": "gr", "parent": "/usr/lib/firmware/nvidia/gp100", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 263, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gp100/acr", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 66, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gp100/acr", "flags": "drwxr-xr-x.", "links": 4, "owner": "root", "group": "root", "size": 27, "date": "Aug 8 2019"}, {"filename": "bl.bin", "parent": "/usr/lib/firmware/nvidia/gp100/acr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 832, "date": "Aug 8 2019"}, {"filename": "ucode_load.bin", "parent": "/usr/lib/firmware/nvidia/gp100/acr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 9632, "date": "Aug 8 2019"}, {"filename": "ucode_unload.bin", "parent": "/usr/lib/firmware/nvidia/gp100/acr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1440, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gp100/gr", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 263, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gp100/gr", "flags": "drwxr-xr-x.", "links": 4, "owner": "root", "group": "root", "size": 27, "date": "Aug 8 2019"}, {"filename": "fecs_bl.bin", "link_to": "../../gm200/gr/fecs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gp100/gr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 26, "date": "Oct 16 09:22"}, {"filename": "fecs_data.bin", "parent": "/usr/lib/firmware/nvidia/gp100/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2028, "date": "Aug 8 2019"}, {"filename": "fecs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gp100/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 20955, "date": "Aug 8 2019"}, {"filename": "fecs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gp100/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 76, "date": "Aug 8 2019"}, {"filename": "gpccs_bl.bin", "link_to": "../../gm200/gr/gpccs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gp100/gr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 27, "date": "Oct 16 09:22"}, {"filename": "gpccs_data.bin", "parent": "/usr/lib/firmware/nvidia/gp100/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2080, "date": "Aug 8 2019"}, {"filename": "gpccs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gp100/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 12458, "date": "Aug 8 2019"}, {"filename": "gpccs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gp100/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 76, "date": "Aug 8 2019"}, {"filename": "sw_bundle_init.bin", "parent": "/usr/lib/firmware/nvidia/gp100/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 7664, "date": "Aug 8 2019"}, {"filename": "sw_ctx.bin", "parent": "/usr/lib/firmware/nvidia/gp100/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 6240, "date": "Aug 8 2019"}, {"filename": "sw_method_init.bin", "parent": "/usr/lib/firmware/nvidia/gp100/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 11928, "date": "Aug 8 2019"}, {"filename": "sw_nonctx.bin", "parent": "/usr/lib/firmware/nvidia/gp100/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2248, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gp102", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 52, "date": "Aug 8 2019"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gp102", "flags": "drwxr-xr-x.", "links": 19, "owner": "root", "group": "root", "size": 236, "date": "Oct 16 09:22"}, {"filename": "acr", "parent": "/usr/lib/firmware/nvidia/gp102", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 87, "date": "Oct 16 09:22"}, {"filename": "gr", "parent": "/usr/lib/firmware/nvidia/gp102", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 263, "date": "Oct 16 09:22"}, {"filename": "nvdec", "parent": "/usr/lib/firmware/nvidia/gp102", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 26, "date": "Oct 16 09:22"}, {"filename": "sec2", "parent": "/usr/lib/firmware/nvidia/gp102", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 54, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gp102/acr", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 87, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gp102/acr", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 52, "date": "Aug 8 2019"}, {"filename": "bl.bin", "parent": "/usr/lib/firmware/nvidia/gp102/acr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1280, "date": "Aug 8 2019"}, {"filename": "ucode_load.bin", "parent": "/usr/lib/firmware/nvidia/gp102/acr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17152, "date": "Aug 8 2019"}, {"filename": "ucode_unload.bin", "parent": "/usr/lib/firmware/nvidia/gp102/acr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 3328, "date": "Aug 8 2019"}, {"filename": "unload_bl.bin", "parent": "/usr/lib/firmware/nvidia/gp102/acr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1280, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gp102/gr", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 263, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gp102/gr", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 52, "date": "Aug 8 2019"}, {"filename": "fecs_bl.bin", "link_to": "../../gm200/gr/fecs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gp102/gr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 26, "date": "Oct 16 09:22"}, {"filename": "fecs_data.bin", "parent": "/usr/lib/firmware/nvidia/gp102/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2256, "date": "Aug 8 2019"}, {"filename": "fecs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gp102/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 20927, "date": "Aug 8 2019"}, {"filename": "fecs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gp102/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 192, "date": "Aug 8 2019"}, {"filename": "gpccs_bl.bin", "link_to": "../../gm200/gr/gpccs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gp102/gr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 27, "date": "Oct 16 09:22"}, {"filename": "gpccs_data.bin", "parent": "/usr/lib/firmware/nvidia/gp102/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1832, "date": "Aug 8 2019"}, {"filename": "gpccs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gp102/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 13307, "date": "Aug 8 2019"}, {"filename": "gpccs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gp102/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 192, "date": "Aug 8 2019"}, {"filename": "sw_bundle_init.bin", "parent": "/usr/lib/firmware/nvidia/gp102/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 7680, "date": "Aug 8 2019"}, {"filename": "sw_ctx.bin", "parent": "/usr/lib/firmware/nvidia/gp102/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 6216, "date": "Aug 8 2019"}, {"filename": "sw_method_init.bin", "parent": "/usr/lib/firmware/nvidia/gp102/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 12288, "date": "Aug 8 2019"}, {"filename": "sw_nonctx.bin", "parent": "/usr/lib/firmware/nvidia/gp102/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2496, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gp102/nvdec", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 26, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gp102/nvdec", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 52, "date": "Aug 8 2019"}, {"filename": "scrubber.bin", "parent": "/usr/lib/firmware/nvidia/gp102/nvdec", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 3840, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gp102/sec2", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 54, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gp102/sec2", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 52, "date": "Aug 8 2019"}, {"filename": "desc.bin", "parent": "/usr/lib/firmware/nvidia/gp102/sec2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 656, "date": "Aug 8 2019"}, {"filename": "image.bin", "parent": "/usr/lib/firmware/nvidia/gp102/sec2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 99072, "date": "Aug 8 2019"}, {"filename": "sig.bin", "parent": "/usr/lib/firmware/nvidia/gp102/sec2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 192, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gp104", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 52, "date": "Aug 8 2019"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gp104", "flags": "drwxr-xr-x.", "links": 19, "owner": "root", "group": "root", "size": 236, "date": "Oct 16 09:22"}, {"filename": "acr", "parent": "/usr/lib/firmware/nvidia/gp104", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 87, "date": "Oct 16 09:22"}, {"filename": "gr", "parent": "/usr/lib/firmware/nvidia/gp104", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 263, "date": "Oct 16 09:22"}, {"filename": "nvdec", "parent": "/usr/lib/firmware/nvidia/gp104", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 26, "date": "Oct 16 09:22"}, {"filename": "sec2", "parent": "/usr/lib/firmware/nvidia/gp104", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 54, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gp104/acr", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 87, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gp104/acr", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 52, "date": "Aug 8 2019"}, {"filename": "bl.bin", "link_to": "../../gp102/acr/bl.bin", "parent": "/usr/lib/firmware/nvidia/gp104/acr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 22, "date": "Oct 16 09:22"}, {"filename": "ucode_load.bin", "link_to": "../../gp102/acr/ucode_load.bin", "parent": "/usr/lib/firmware/nvidia/gp104/acr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 30, "date": "Oct 16 09:22"}, {"filename": "ucode_unload.bin", "link_to": "../../gp102/acr/ucode_unload.bin", "parent": "/usr/lib/firmware/nvidia/gp104/acr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 32, "date": "Oct 16 09:22"}, {"filename": "unload_bl.bin", "link_to": "../../gp102/acr/unload_bl.bin", "parent": "/usr/lib/firmware/nvidia/gp104/acr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 29, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gp104/gr", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 263, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gp104/gr", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 52, "date": "Aug 8 2019"}, {"filename": "fecs_bl.bin", "link_to": "../../gp102/gr/fecs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gp104/gr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 26, "date": "Oct 16 09:22"}, {"filename": "fecs_data.bin", "parent": "/usr/lib/firmware/nvidia/gp104/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2576, "date": "Aug 8 2019"}, {"filename": "fecs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gp104/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 22760, "date": "Aug 8 2019"}, {"filename": "fecs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gp104/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 192, "date": "Aug 8 2019"}, {"filename": "gpccs_bl.bin", "link_to": "../../gp102/gr/gpccs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gp104/gr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 27, "date": "Oct 16 09:22"}, {"filename": "gpccs_data.bin", "parent": "/usr/lib/firmware/nvidia/gp104/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1832, "date": "Aug 8 2019"}, {"filename": "gpccs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gp104/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 13307, "date": "Aug 8 2019"}, {"filename": "gpccs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gp104/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 192, "date": "Aug 8 2019"}, {"filename": "sw_bundle_init.bin", "link_to": "../../gp102/gr/sw_bundle_init.bin", "parent": "/usr/lib/firmware/nvidia/gp104/gr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 33, "date": "Oct 16 09:22"}, {"filename": "sw_ctx.bin", "link_to": "../../gp102/gr/sw_ctx.bin", "parent": "/usr/lib/firmware/nvidia/gp104/gr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 25, "date": "Oct 16 09:22"}, {"filename": "sw_method_init.bin", "link_to": "../../gp102/gr/sw_method_init.bin", "parent": "/usr/lib/firmware/nvidia/gp104/gr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 33, "date": "Oct 16 09:22"}, {"filename": "sw_nonctx.bin", "link_to": "../../gp102/gr/sw_nonctx.bin", "parent": "/usr/lib/firmware/nvidia/gp104/gr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 28, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gp104/nvdec", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 26, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gp104/nvdec", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 52, "date": "Aug 8 2019"}, {"filename": "scrubber.bin", "link_to": "../../gp102/nvdec/scrubber.bin", "parent": "/usr/lib/firmware/nvidia/gp104/nvdec", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 30, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gp104/sec2", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 54, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gp104/sec2", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 52, "date": "Aug 8 2019"}, {"filename": "desc.bin", "link_to": "../../gp102/sec2/desc.bin", "parent": "/usr/lib/firmware/nvidia/gp104/sec2", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 25, "date": "Oct 16 09:22"}, {"filename": "image.bin", "link_to": "../../gp102/sec2/image.bin", "parent": "/usr/lib/firmware/nvidia/gp104/sec2", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 26, "date": "Oct 16 09:22"}, {"filename": "sig.bin", "link_to": "../../gp102/sec2/sig.bin", "parent": "/usr/lib/firmware/nvidia/gp104/sec2", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 24, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gp106", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 52, "date": "Aug 8 2019"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gp106", "flags": "drwxr-xr-x.", "links": 19, "owner": "root", "group": "root", "size": 236, "date": "Oct 16 09:22"}, {"filename": "acr", "parent": "/usr/lib/firmware/nvidia/gp106", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 87, "date": "Oct 16 09:22"}, {"filename": "gr", "parent": "/usr/lib/firmware/nvidia/gp106", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 263, "date": "Oct 16 09:22"}, {"filename": "nvdec", "parent": "/usr/lib/firmware/nvidia/gp106", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 26, "date": "Oct 16 09:22"}, {"filename": "sec2", "parent": "/usr/lib/firmware/nvidia/gp106", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 54, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gp106/acr", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 87, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gp106/acr", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 52, "date": "Aug 8 2019"}, {"filename": "bl.bin", "link_to": "../../gp102/acr/bl.bin", "parent": "/usr/lib/firmware/nvidia/gp106/acr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 22, "date": "Oct 16 09:22"}, {"filename": "ucode_load.bin", "link_to": "../../gp102/acr/ucode_load.bin", "parent": "/usr/lib/firmware/nvidia/gp106/acr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 30, "date": "Oct 16 09:22"}, {"filename": "ucode_unload.bin", "link_to": "../../gp102/acr/ucode_unload.bin", "parent": "/usr/lib/firmware/nvidia/gp106/acr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 32, "date": "Oct 16 09:22"}, {"filename": "unload_bl.bin", "link_to": "../../gp102/acr/unload_bl.bin", "parent": "/usr/lib/firmware/nvidia/gp106/acr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 29, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gp106/gr", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 263, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gp106/gr", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 52, "date": "Aug 8 2019"}, {"filename": "fecs_bl.bin", "link_to": "../../gp102/gr/fecs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gp106/gr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 26, "date": "Oct 16 09:22"}, {"filename": "fecs_data.bin", "parent": "/usr/lib/firmware/nvidia/gp106/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2256, "date": "Aug 8 2019"}, {"filename": "fecs_inst.bin", "link_to": "../../gp102/gr/fecs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gp106/gr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 28, "date": "Oct 16 09:22"}, {"filename": "fecs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gp106/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 192, "date": "Aug 8 2019"}, {"filename": "gpccs_bl.bin", "link_to": "../../gp102/gr/gpccs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gp106/gr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 27, "date": "Oct 16 09:22"}, {"filename": "gpccs_data.bin", "parent": "/usr/lib/firmware/nvidia/gp106/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1832, "date": "Aug 8 2019"}, {"filename": "gpccs_inst.bin", "link_to": "../../gp102/gr/gpccs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gp106/gr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 29, "date": "Oct 16 09:22"}, {"filename": "gpccs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gp106/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 192, "date": "Aug 8 2019"}, {"filename": "sw_bundle_init.bin", "link_to": "../../gp102/gr/sw_bundle_init.bin", "parent": "/usr/lib/firmware/nvidia/gp106/gr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 33, "date": "Oct 16 09:22"}, {"filename": "sw_ctx.bin", "link_to": "../../gp102/gr/sw_ctx.bin", "parent": "/usr/lib/firmware/nvidia/gp106/gr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 25, "date": "Oct 16 09:22"}, {"filename": "sw_method_init.bin", "link_to": "../../gp102/gr/sw_method_init.bin", "parent": "/usr/lib/firmware/nvidia/gp106/gr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 33, "date": "Oct 16 09:22"}, {"filename": "sw_nonctx.bin", "link_to": "../../gp102/gr/sw_nonctx.bin", "parent": "/usr/lib/firmware/nvidia/gp106/gr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 28, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gp106/nvdec", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 26, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gp106/nvdec", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 52, "date": "Aug 8 2019"}, {"filename": "scrubber.bin", "link_to": "../../gp102/nvdec/scrubber.bin", "parent": "/usr/lib/firmware/nvidia/gp106/nvdec", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 30, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gp106/sec2", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 54, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gp106/sec2", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 52, "date": "Aug 8 2019"}, {"filename": "desc.bin", "link_to": "../../gp102/sec2/desc.bin", "parent": "/usr/lib/firmware/nvidia/gp106/sec2", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 25, "date": "Oct 16 09:22"}, {"filename": "image.bin", "link_to": "../../gp102/sec2/image.bin", "parent": "/usr/lib/firmware/nvidia/gp106/sec2", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 26, "date": "Oct 16 09:22"}, {"filename": "sig.bin", "link_to": "../../gp102/sec2/sig.bin", "parent": "/usr/lib/firmware/nvidia/gp106/sec2", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 24, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gp107", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 52, "date": "Aug 8 2019"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gp107", "flags": "drwxr-xr-x.", "links": 19, "owner": "root", "group": "root", "size": 236, "date": "Oct 16 09:22"}, {"filename": "acr", "parent": "/usr/lib/firmware/nvidia/gp107", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 87, "date": "Oct 16 09:22"}, {"filename": "gr", "parent": "/usr/lib/firmware/nvidia/gp107", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 263, "date": "Oct 16 09:22"}, {"filename": "nvdec", "parent": "/usr/lib/firmware/nvidia/gp107", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 26, "date": "Oct 16 09:22"}, {"filename": "sec2", "parent": "/usr/lib/firmware/nvidia/gp107", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 54, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gp107/acr", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 87, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gp107/acr", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 52, "date": "Aug 8 2019"}, {"filename": "bl.bin", "link_to": "../../gp102/acr/bl.bin", "parent": "/usr/lib/firmware/nvidia/gp107/acr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 22, "date": "Oct 16 09:22"}, {"filename": "ucode_load.bin", "link_to": "../../gp102/acr/ucode_load.bin", "parent": "/usr/lib/firmware/nvidia/gp107/acr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 30, "date": "Oct 16 09:22"}, {"filename": "ucode_unload.bin", "link_to": "../../gp102/acr/ucode_unload.bin", "parent": "/usr/lib/firmware/nvidia/gp107/acr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 32, "date": "Oct 16 09:22"}, {"filename": "unload_bl.bin", "link_to": "../../gp102/acr/unload_bl.bin", "parent": "/usr/lib/firmware/nvidia/gp107/acr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 29, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gp107/gr", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 263, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gp107/gr", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 52, "date": "Aug 8 2019"}, {"filename": "fecs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gp107/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 576, "date": "Aug 8 2019"}, {"filename": "fecs_data.bin", "parent": "/usr/lib/firmware/nvidia/gp107/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2756, "date": "Aug 8 2019"}, {"filename": "fecs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gp107/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 22879, "date": "Aug 8 2019"}, {"filename": "fecs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gp107/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 192, "date": "Aug 8 2019"}, {"filename": "gpccs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gp107/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 576, "date": "Aug 8 2019"}, {"filename": "gpccs_data.bin", "parent": "/usr/lib/firmware/nvidia/gp107/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2100, "date": "Aug 8 2019"}, {"filename": "gpccs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gp107/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 12587, "date": "Aug 8 2019"}, {"filename": "gpccs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gp107/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 192, "date": "Aug 8 2019"}, {"filename": "sw_bundle_init.bin", "link_to": "../../gp102/gr/sw_bundle_init.bin", "parent": "/usr/lib/firmware/nvidia/gp107/gr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 33, "date": "Oct 16 09:22"}, {"filename": "sw_ctx.bin", "parent": "/usr/lib/firmware/nvidia/gp107/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 6000, "date": "Aug 8 2019"}, {"filename": "sw_method_init.bin", "link_to": "../../gp102/gr/sw_method_init.bin", "parent": "/usr/lib/firmware/nvidia/gp107/gr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 33, "date": "Oct 16 09:22"}, {"filename": "sw_nonctx.bin", "parent": "/usr/lib/firmware/nvidia/gp107/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2496, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gp107/nvdec", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 26, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gp107/nvdec", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 52, "date": "Aug 8 2019"}, {"filename": "scrubber.bin", "link_to": "../../gp102/nvdec/scrubber.bin", "parent": "/usr/lib/firmware/nvidia/gp107/nvdec", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 30, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gp107/sec2", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 54, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gp107/sec2", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 52, "date": "Aug 8 2019"}, {"filename": "desc.bin", "link_to": "../../gp102/sec2/desc.bin", "parent": "/usr/lib/firmware/nvidia/gp107/sec2", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 25, "date": "Oct 16 09:22"}, {"filename": "image.bin", "link_to": "../../gp102/sec2/image.bin", "parent": "/usr/lib/firmware/nvidia/gp107/sec2", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 26, "date": "Oct 16 09:22"}, {"filename": "sig.bin", "link_to": "../../gp102/sec2/sig.bin", "parent": "/usr/lib/firmware/nvidia/gp107/sec2", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 24, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gp108", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 52, "date": "Aug 8 2019"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gp108", "flags": "drwxr-xr-x.", "links": 19, "owner": "root", "group": "root", "size": 236, "date": "Oct 16 09:22"}, {"filename": "acr", "parent": "/usr/lib/firmware/nvidia/gp108", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 87, "date": "Oct 16 09:22"}, {"filename": "gr", "parent": "/usr/lib/firmware/nvidia/gp108", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 263, "date": "Oct 16 09:22"}, {"filename": "nvdec", "parent": "/usr/lib/firmware/nvidia/gp108", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 26, "date": "Oct 16 09:22"}, {"filename": "sec2", "parent": "/usr/lib/firmware/nvidia/gp108", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 54, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gp108/acr", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 87, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gp108/acr", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 52, "date": "Aug 8 2019"}, {"filename": "bl.bin", "link_to": "../../gp102/acr/bl.bin", "parent": "/usr/lib/firmware/nvidia/gp108/acr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 22, "date": "Oct 16 09:22"}, {"filename": "ucode_load.bin", "link_to": "../../gp102/acr/ucode_load.bin", "parent": "/usr/lib/firmware/nvidia/gp108/acr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 30, "date": "Oct 16 09:22"}, {"filename": "ucode_unload.bin", "link_to": "../../gp102/acr/ucode_unload.bin", "parent": "/usr/lib/firmware/nvidia/gp108/acr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 32, "date": "Oct 16 09:22"}, {"filename": "unload_bl.bin", "link_to": "../../gp102/acr/unload_bl.bin", "parent": "/usr/lib/firmware/nvidia/gp108/acr", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 29, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gp108/gr", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 263, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gp108/gr", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 52, "date": "Aug 8 2019"}, {"filename": "fecs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gp108/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 576, "date": "Aug 8 2019"}, {"filename": "fecs_data.bin", "parent": "/usr/lib/firmware/nvidia/gp108/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2248, "date": "Aug 8 2019"}, {"filename": "fecs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gp108/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 21161, "date": "Aug 8 2019"}, {"filename": "fecs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gp108/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 192, "date": "Aug 8 2019"}, {"filename": "gpccs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gp108/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 576, "date": "Aug 8 2019"}, {"filename": "gpccs_data.bin", "parent": "/usr/lib/firmware/nvidia/gp108/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2092, "date": "Aug 8 2019"}, {"filename": "gpccs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gp108/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 13095, "date": "Aug 8 2019"}, {"filename": "gpccs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gp108/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 192, "date": "Aug 8 2019"}, {"filename": "sw_bundle_init.bin", "parent": "/usr/lib/firmware/nvidia/gp108/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 7680, "date": "Aug 8 2019"}, {"filename": "sw_ctx.bin", "parent": "/usr/lib/firmware/nvidia/gp108/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 6000, "date": "Aug 8 2019"}, {"filename": "sw_method_init.bin", "parent": "/usr/lib/firmware/nvidia/gp108/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 12288, "date": "Aug 8 2019"}, {"filename": "sw_nonctx.bin", "parent": "/usr/lib/firmware/nvidia/gp108/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2496, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gp108/nvdec", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 26, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gp108/nvdec", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 52, "date": "Aug 8 2019"}, {"filename": "scrubber.bin", "link_to": "../../gp102/nvdec/scrubber.bin", "parent": "/usr/lib/firmware/nvidia/gp108/nvdec", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 30, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gp108/sec2", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 54, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gp108/sec2", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 52, "date": "Aug 8 2019"}, {"filename": "desc.bin", "parent": "/usr/lib/firmware/nvidia/gp108/sec2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 656, "date": "Aug 8 2019"}, {"filename": "image.bin", "parent": "/usr/lib/firmware/nvidia/gp108/sec2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 109568, "date": "Aug 8 2019"}, {"filename": "sig.bin", "parent": "/usr/lib/firmware/nvidia/gp108/sec2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 192, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gp10b", "flags": "drwxr-xr-x.", "links": 5, "owner": "root", "group": "root", "size": 38, "date": "Aug 8 2019"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gp10b", "flags": "drwxr-xr-x.", "links": 19, "owner": "root", "group": "root", "size": 236, "date": "Oct 16 09:22"}, {"filename": "acr", "parent": "/usr/lib/firmware/nvidia/gp10b", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 42, "date": "Oct 16 09:22"}, {"filename": "gr", "parent": "/usr/lib/firmware/nvidia/gp10b", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 263, "date": "Oct 16 09:22"}, {"filename": "pmu", "parent": "/usr/lib/firmware/nvidia/gp10b", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 54, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gp10b/acr", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 42, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gp10b/acr", "flags": "drwxr-xr-x.", "links": 5, "owner": "root", "group": "root", "size": 38, "date": "Aug 8 2019"}, {"filename": "bl.bin", "parent": "/usr/lib/firmware/nvidia/gp10b/acr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1280, "date": "Aug 8 2019"}, {"filename": "ucode_load.bin", "parent": "/usr/lib/firmware/nvidia/gp10b/acr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 19456, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gp10b/gr", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 263, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gp10b/gr", "flags": "drwxr-xr-x.", "links": 5, "owner": "root", "group": "root", "size": 38, "date": "Aug 8 2019"}, {"filename": "fecs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gp10b/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 576, "date": "Aug 8 2019"}, {"filename": "fecs_data.bin", "parent": "/usr/lib/firmware/nvidia/gp10b/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 3668, "date": "Aug 8 2019"}, {"filename": "fecs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gp10b/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 22306, "date": "Aug 8 2019"}, {"filename": "fecs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gp10b/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 76, "date": "Aug 8 2019"}, {"filename": "gpccs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gp10b/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 576, "date": "Aug 8 2019"}, {"filename": "gpccs_data.bin", "parent": "/usr/lib/firmware/nvidia/gp10b/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2340, "date": "Aug 8 2019"}, {"filename": "gpccs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gp10b/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 12921, "date": "Aug 8 2019"}, {"filename": "gpccs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gp10b/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 76, "date": "Aug 8 2019"}, {"filename": "sw_bundle_init.bin", "parent": "/usr/lib/firmware/nvidia/gp10b/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 7664, "date": "Aug 8 2019"}, {"filename": "sw_ctx.bin", "parent": "/usr/lib/firmware/nvidia/gp10b/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 6036, "date": "Aug 8 2019"}, {"filename": "sw_method_init.bin", "parent": "/usr/lib/firmware/nvidia/gp10b/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 11928, "date": "Aug 8 2019"}, {"filename": "sw_nonctx.bin", "parent": "/usr/lib/firmware/nvidia/gp10b/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2744, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gp10b/pmu", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 54, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gp10b/pmu", "flags": "drwxr-xr-x.", "links": 5, "owner": "root", "group": "root", "size": 38, "date": "Aug 8 2019"}, {"filename": "desc.bin", "parent": "/usr/lib/firmware/nvidia/gp10b/pmu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 652, "date": "Aug 8 2019"}, {"filename": "image.bin", "parent": "/usr/lib/firmware/nvidia/gp10b/pmu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 49408, "date": "Aug 8 2019"}, {"filename": "sig.bin", "parent": "/usr/lib/firmware/nvidia/gp10b/pmu", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 76, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gv100", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 52, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gv100", "flags": "drwxr-xr-x.", "links": 19, "owner": "root", "group": "root", "size": 236, "date": "Oct 16 09:22"}, {"filename": "acr", "parent": "/usr/lib/firmware/nvidia/gv100", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 87, "date": "Oct 16 09:22"}, {"filename": "gr", "parent": "/usr/lib/firmware/nvidia/gv100", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 263, "date": "Oct 16 09:22"}, {"filename": "nvdec", "parent": "/usr/lib/firmware/nvidia/gv100", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 26, "date": "Oct 16 09:22"}, {"filename": "sec2", "parent": "/usr/lib/firmware/nvidia/gv100", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 54, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gv100/acr", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 87, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gv100/acr", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 52, "date": "Oct 16 09:22"}, {"filename": "bl.bin", "parent": "/usr/lib/firmware/nvidia/gv100/acr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1280, "date": "Aug 8 2019"}, {"filename": "ucode_load.bin", "parent": "/usr/lib/firmware/nvidia/gv100/acr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 18688, "date": "Aug 8 2019"}, {"filename": "ucode_unload.bin", "parent": "/usr/lib/firmware/nvidia/gv100/acr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 6400, "date": "Aug 8 2019"}, {"filename": "unload_bl.bin", "parent": "/usr/lib/firmware/nvidia/gv100/acr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1280, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gv100/gr", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 263, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gv100/gr", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 52, "date": "Oct 16 09:22"}, {"filename": "fecs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gv100/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 576, "date": "Aug 8 2019"}, {"filename": "fecs_data.bin", "parent": "/usr/lib/firmware/nvidia/gv100/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4788, "date": "Aug 8 2019"}, {"filename": "fecs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gv100/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 25632, "date": "Aug 8 2019"}, {"filename": "fecs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gv100/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 192, "date": "Aug 8 2019"}, {"filename": "gpccs_bl.bin", "parent": "/usr/lib/firmware/nvidia/gv100/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 576, "date": "Aug 8 2019"}, {"filename": "gpccs_data.bin", "parent": "/usr/lib/firmware/nvidia/gv100/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2128, "date": "Aug 8 2019"}, {"filename": "gpccs_inst.bin", "parent": "/usr/lib/firmware/nvidia/gv100/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 12643, "date": "Aug 8 2019"}, {"filename": "gpccs_sig.bin", "parent": "/usr/lib/firmware/nvidia/gv100/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 192, "date": "Aug 8 2019"}, {"filename": "sw_bundle_init.bin", "parent": "/usr/lib/firmware/nvidia/gv100/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 7664, "date": "Aug 8 2019"}, {"filename": "sw_ctx.bin", "parent": "/usr/lib/firmware/nvidia/gv100/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 9756, "date": "Aug 8 2019"}, {"filename": "sw_method_init.bin", "parent": "/usr/lib/firmware/nvidia/gv100/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 12296, "date": "Aug 8 2019"}, {"filename": "sw_nonctx.bin", "parent": "/usr/lib/firmware/nvidia/gv100/gr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2728, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gv100/nvdec", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 26, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gv100/nvdec", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 52, "date": "Oct 16 09:22"}, {"filename": "scrubber.bin", "parent": "/usr/lib/firmware/nvidia/gv100/nvdec", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4352, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/gv100/sec2", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 54, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/gv100/sec2", "flags": "drwxr-xr-x.", "links": 6, "owner": "root", "group": "root", "size": 52, "date": "Oct 16 09:22"}, {"filename": "desc.bin", "parent": "/usr/lib/firmware/nvidia/gv100/sec2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 656, "date": "Aug 8 2019"}, {"filename": "image.bin", "parent": "/usr/lib/firmware/nvidia/gv100/sec2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 91136, "date": "Aug 8 2019"}, {"filename": "sig.bin", "parent": "/usr/lib/firmware/nvidia/gv100/sec2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 192, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/tegra124", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 45, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/tegra124", "flags": "drwxr-xr-x.", "links": 19, "owner": "root", "group": "root", "size": 236, "date": "Oct 16 09:22"}, {"filename": "vic03_ucode.bin", "parent": "/usr/lib/firmware/nvidia/tegra124", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 16128, "date": "Aug 8 2019"}, {"filename": "xusb.bin", "parent": "/usr/lib/firmware/nvidia/tegra124", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 134656, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/tegra186", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 29, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/tegra186", "flags": "drwxr-xr-x.", "links": 19, "owner": "root", "group": "root", "size": 236, "date": "Oct 16 09:22"}, {"filename": "vic04_ucode.bin", "parent": "/usr/lib/firmware/nvidia/tegra186", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 19200, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/tegra210", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 45, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/tegra210", "flags": "drwxr-xr-x.", "links": 19, "owner": "root", "group": "root", "size": 236, "date": "Oct 16 09:22"}, {"filename": "vic04_ucode.bin", "parent": "/usr/lib/firmware/nvidia/tegra210", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 16640, "date": "Aug 8 2019"}, {"filename": "xusb.bin", "parent": "/usr/lib/firmware/nvidia/tegra210", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 132608, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/tu10x", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 19, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/tu10x", "flags": "drwxr-xr-x.", "links": 19, "owner": "root", "group": "root", "size": 236, "date": "Oct 16 09:22"}, {"filename": "typec", "parent": "/usr/lib/firmware/nvidia/tu10x", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 80, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/nvidia/tu10x/typec", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 80, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/nvidia/tu10x/typec", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 19, "date": "Oct 16 09:22"}, {"filename": "ccg_boot.cyacd", "parent": "/usr/lib/firmware/nvidia/tu10x/typec", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 90658, "date": "Aug 8 2019"}, {"filename": "ccg_primary.cyacd", "parent": "/usr/lib/firmware/nvidia/tu10x/typec", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 145523, "date": "Aug 8 2019"}, {"filename": "ccg_secondary.cyacd", "parent": "/usr/lib/firmware/nvidia/tu10x/typec", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 96512, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/ositech", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 27, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/ositech", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "Xilinx7OD.bin", "parent": "/usr/lib/firmware/ositech", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2778, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/pcxhr", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 15 2019"}, {"filename": "..", "parent": "/usr/lib/firmware/pcxhr", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "b321_512.b56", "parent": "/usr/lib/firmware/pcxhr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 5637, "date": "Mar 5 2015"}, {"filename": "d321_512.d56", "parent": "/usr/lib/firmware/pcxhr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 180609, "date": "Mar 5 2015"}, {"filename": "dspb1222e.b56", "parent": "/usr/lib/firmware/pcxhr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 5151, "date": "Mar 5 2015"}, {"filename": "dspb1222hr.b56", "parent": "/usr/lib/firmware/pcxhr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 5199, "date": "Mar 5 2015"}, {"filename": "dspb882e.b56", "parent": "/usr/lib/firmware/pcxhr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4764, "date": "Mar 5 2015"}, {"filename": "dspb882hr.b56", "parent": "/usr/lib/firmware/pcxhr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4806, "date": "Mar 5 2015"}, {"filename": "dspb924.b56", "parent": "/usr/lib/firmware/pcxhr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2688, "date": "Mar 5 2015"}, {"filename": "dspd1222.d56", "parent": "/usr/lib/firmware/pcxhr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 180198, "date": "Mar 5 2015"}, {"filename": "dspd222.d56", "parent": "/usr/lib/firmware/pcxhr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 89610, "date": "Mar 5 2015"}, {"filename": "dspd882.d56", "parent": "/usr/lib/firmware/pcxhr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 182256, "date": "Mar 5 2015"}, {"filename": "dspe882.e56", "parent": "/usr/lib/firmware/pcxhr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 618, "date": "Mar 5 2015"}, {"filename": "dspe924.e56", "parent": "/usr/lib/firmware/pcxhr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 612, "date": "Mar 5 2015"}, {"filename": "e321_512.e56", "parent": "/usr/lib/firmware/pcxhr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 618, "date": "Mar 5 2015"}, {"filename": "xc_1_882.dat", "parent": "/usr/lib/firmware/pcxhr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 78756, "date": "Mar 5 2015"}, {"filename": "xi_1_882.dat", "parent": "/usr/lib/firmware/pcxhr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 78756, "date": "Mar 5 2015"}, {"filename": "xlxc1222e.dat", "parent": "/usr/lib/firmware/pcxhr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 78831, "date": "Mar 5 2015"}, {"filename": "xlxc1222hr.dat", "parent": "/usr/lib/firmware/pcxhr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 78831, "date": "Mar 5 2015"}, {"filename": "xlxc222.dat", "parent": "/usr/lib/firmware/pcxhr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 78831, "date": "Mar 5 2015"}, {"filename": "xlxc882e.dat", "parent": "/usr/lib/firmware/pcxhr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 78831, "date": "Mar 5 2015"}, {"filename": "xlxc882hr.dat", "parent": "/usr/lib/firmware/pcxhr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 78831, "date": "Mar 5 2015"}, {"filename": "xlxc924.dat", "parent": "/usr/lib/firmware/pcxhr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 108056, "date": "Mar 5 2015"}, {"filename": "xlxint.dat", "parent": "/usr/lib/firmware/pcxhr", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 78831, "date": "Mar 5 2015"}, {"filename": ".", "parent": "/usr/lib/firmware/qca", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/qca", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "crbtfw21.tlv", "parent": "/usr/lib/firmware/qca", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 177060, "date": "Aug 8 2019"}, {"filename": "crnv21.bin", "parent": "/usr/lib/firmware/qca", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4587, "date": "Aug 8 2019"}, {"filename": "NOTICE.txt", "parent": "/usr/lib/firmware/qca", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 19013, "date": "Aug 8 2019"}, {"filename": "nvm_00130300.bin", "parent": "/usr/lib/firmware/qca", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1937, "date": "Aug 8 2019"}, {"filename": "nvm_00130302.bin", "parent": "/usr/lib/firmware/qca", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1968, "date": "Aug 8 2019"}, {"filename": "nvm_00440302.bin", "parent": "/usr/lib/firmware/qca", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2010, "date": "Aug 8 2019"}, {"filename": "nvm_usb_00000200.bin", "parent": "/usr/lib/firmware/qca", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1859, "date": "Aug 8 2019"}, {"filename": "nvm_usb_00000201.bin", "parent": "/usr/lib/firmware/qca", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1859, "date": "Aug 8 2019"}, {"filename": "nvm_usb_00000300.bin", "parent": "/usr/lib/firmware/qca", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1857, "date": "Aug 8 2019"}, {"filename": "nvm_usb_00000302.bin", "parent": "/usr/lib/firmware/qca", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1996, "date": "Aug 8 2019"}, {"filename": "rampatch_00130300.bin", "parent": "/usr/lib/firmware/qca", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 65864, "date": "Aug 8 2019"}, {"filename": "rampatch_00130302.bin", "parent": "/usr/lib/firmware/qca", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 32064, "date": "Aug 8 2019"}, {"filename": "rampatch_00440302.bin", "parent": "/usr/lib/firmware/qca", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 64940, "date": "Aug 8 2019"}, {"filename": "rampatch_usb_00000200.bin", "parent": "/usr/lib/firmware/qca", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 54432, "date": "Aug 8 2019"}, {"filename": "rampatch_usb_00000201.bin", "parent": "/usr/lib/firmware/qca", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 54432, "date": "Aug 8 2019"}, {"filename": "rampatch_usb_00000300.bin", "parent": "/usr/lib/firmware/qca", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 65776, "date": "Aug 8 2019"}, {"filename": "rampatch_usb_00000302.bin", "parent": "/usr/lib/firmware/qca", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 64168, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/qcom", "flags": "drwxr-xr-x.", "links": 5, "owner": "root", "group": "root", "size": 254, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/qcom", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "a300_pfp.fw", "parent": "/usr/lib/firmware/qcom", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1156, "date": "Aug 8 2019"}, {"filename": "a300_pm4.fw", "parent": "/usr/lib/firmware/qcom", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 9220, "date": "Aug 8 2019"}, {"filename": "a530_pfp.fw", "parent": "/usr/lib/firmware/qcom", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 15876, "date": "Aug 8 2019"}, {"filename": "a530_pm4.fw", "parent": "/usr/lib/firmware/qcom", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 19572, "date": "Aug 8 2019"}, {"filename": "a530v3_gpmu.fw2", "parent": "/usr/lib/firmware/qcom", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8184, "date": "Aug 8 2019"}, {"filename": "a530_zap.b00", "parent": "/usr/lib/firmware/qcom", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 148, "date": "Aug 8 2019"}, {"filename": "a530_zap.b01", "parent": "/usr/lib/firmware/qcom", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 6536, "date": "Aug 8 2019"}, {"filename": "a530_zap.b02", "parent": "/usr/lib/firmware/qcom", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4900, "date": "Aug 8 2019"}, {"filename": "a530_zap.mdt", "parent": "/usr/lib/firmware/qcom", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 6684, "date": "Aug 8 2019"}, {"filename": "NOTICE.txt", "parent": "/usr/lib/firmware/qcom", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 23966, "date": "Aug 8 2019"}, {"filename": "venus-1.8", "parent": "/usr/lib/firmware/qcom", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 108, "date": "Oct 16 09:22"}, {"filename": "venus-4.2", "parent": "/usr/lib/firmware/qcom", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 108, "date": "Oct 16 09:22"}, {"filename": "venus-5.2", "parent": "/usr/lib/firmware/qcom", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 125, "date": "Oct 16 09:22"}, {"filename": ".", "parent": "/usr/lib/firmware/qcom/venus-1.8", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 108, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/qcom/venus-1.8", "flags": "drwxr-xr-x.", "links": 5, "owner": "root", "group": "root", "size": 254, "date": "Oct 16 09:22"}, {"filename": "venus.b00", "parent": "/usr/lib/firmware/qcom/venus-1.8", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 212, "date": "Aug 8 2019"}, {"filename": "venus.b01", "parent": "/usr/lib/firmware/qcom/venus-1.8", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 6600, "date": "Aug 8 2019"}, {"filename": "venus.b02", "parent": "/usr/lib/firmware/qcom/venus-1.8", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 975088, "date": "Aug 8 2019"}, {"filename": "venus.b03", "parent": "/usr/lib/firmware/qcom/venus-1.8", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 5568, "date": "Aug 8 2019"}, {"filename": "venus.b04", "parent": "/usr/lib/firmware/qcom/venus-1.8", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 32, "date": "Aug 8 2019"}, {"filename": "venus.mdt", "parent": "/usr/lib/firmware/qcom/venus-1.8", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 6812, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/qcom/venus-4.2", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 108, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/qcom/venus-4.2", "flags": "drwxr-xr-x.", "links": 5, "owner": "root", "group": "root", "size": 254, "date": "Oct 16 09:22"}, {"filename": "venus.b00", "parent": "/usr/lib/firmware/qcom/venus-4.2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 212, "date": "Aug 8 2019"}, {"filename": "venus.b01", "parent": "/usr/lib/firmware/qcom/venus-4.2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 6600, "date": "Aug 8 2019"}, {"filename": "venus.b02", "parent": "/usr/lib/firmware/qcom/venus-4.2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 884136, "date": "Aug 8 2019"}, {"filename": "venus.b03", "parent": "/usr/lib/firmware/qcom/venus-4.2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 28976, "date": "Aug 8 2019"}, {"filename": "venus.b04", "parent": "/usr/lib/firmware/qcom/venus-4.2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 32, "date": "Aug 8 2019"}, {"filename": "venus.mdt", "parent": "/usr/lib/firmware/qcom/venus-4.2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 6812, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/qcom/venus-5.2", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 125, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/qcom/venus-5.2", "flags": "drwxr-xr-x.", "links": 5, "owner": "root", "group": "root", "size": 254, "date": "Oct 16 09:22"}, {"filename": "venus.b00", "parent": "/usr/lib/firmware/qcom/venus-5.2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 212, "date": "Aug 8 2019"}, {"filename": "venus.b01", "parent": "/usr/lib/firmware/qcom/venus-5.2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 6600, "date": "Aug 8 2019"}, {"filename": "venus.b02", "parent": "/usr/lib/firmware/qcom/venus-5.2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 837304, "date": "Aug 8 2019"}, {"filename": "venus.b03", "parent": "/usr/lib/firmware/qcom/venus-5.2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 33640, "date": "Aug 8 2019"}, {"filename": "venus.b04", "parent": "/usr/lib/firmware/qcom/venus-5.2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 32, "date": "Aug 8 2019"}, {"filename": "venus.mbn", "parent": "/usr/lib/firmware/qcom/venus-5.2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 883264, "date": "Aug 8 2019"}, {"filename": "venus.mdt", "parent": "/usr/lib/firmware/qcom/venus-5.2", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 6812, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/qed", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/qed", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "qed_init_values-8.10.9.0.bin", "parent": "/usr/lib/firmware/qed", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1434652, "date": "Aug 8 2019"}, {"filename": "qed_init_values-8.14.6.0.bin", "parent": "/usr/lib/firmware/qed", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1459040, "date": "Aug 8 2019"}, {"filename": "qed_init_values-8.18.9.0.bin", "parent": "/usr/lib/firmware/qed", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1536984, "date": "Aug 8 2019"}, {"filename": "qed_init_values-8.20.0.0.bin", "parent": "/usr/lib/firmware/qed", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1443340, "date": "Aug 8 2019"}, {"filename": "qed_init_values-8.30.12.0.bin", "parent": "/usr/lib/firmware/qed", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1507052, "date": "Aug 8 2019"}, {"filename": "qed_init_values-8.33.12.0.bin", "parent": "/usr/lib/firmware/qed", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1562920, "date": "Aug 8 2019"}, {"filename": "qed_init_values-8.37.7.0.bin", "parent": "/usr/lib/firmware/qed", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 1559500, "date": "Aug 8 2019"}, {"filename": "qed_init_values_zipped-8.10.10.0.bin", "parent": "/usr/lib/firmware/qed", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 780576, "date": "Aug 8 2019"}, {"filename": "qed_init_values_zipped-8.10.5.0.bin", "parent": "/usr/lib/firmware/qed", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 767532, "date": "Aug 8 2019"}, {"filename": "qed_init_values_zipped-8.15.3.0.bin", "parent": "/usr/lib/firmware/qed", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 789540, "date": "Aug 8 2019"}, {"filename": "qed_init_values_zipped-8.20.0.0.bin", "parent": "/usr/lib/firmware/qed", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 794456, "date": "Aug 8 2019"}, {"filename": "qed_init_values_zipped-8.33.1.0.bin", "parent": "/usr/lib/firmware/qed", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 838612, "date": "Aug 8 2019"}, {"filename": "qed_init_values_zipped-8.33.11.0.bin", "parent": "/usr/lib/firmware/qed", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 852456, "date": "Aug 8 2019"}, {"filename": "qed_init_values_zipped-8.37.2.0.bin", "parent": "/usr/lib/firmware/qed", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 867472, "date": "Aug 8 2019"}, {"filename": "qed_init_values_zipped-8.37.7.0.bin", "parent": "/usr/lib/firmware/qed", "flags": "-rwxr-xr-x.", "links": 1, "owner": "root", "group": "root", "size": 872296, "date": "Aug 8 2019"}, {"filename": "qed_init_values_zipped-8.4.2.0.bin", "parent": "/usr/lib/firmware/qed", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 416930, "date": "Aug 8 2019"}, {"filename": "qed_init_values_zipped-8.7.3.0.bin", "parent": "/usr/lib/firmware/qed", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 473792, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/qlogic", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 91, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/qlogic", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "1040.bin", "parent": "/usr/lib/firmware/qlogic", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 33462, "date": "Aug 8 2019"}, {"filename": "12160.bin", "parent": "/usr/lib/firmware/qlogic", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 28056, "date": "Aug 8 2019"}, {"filename": "1280.bin", "parent": "/usr/lib/firmware/qlogic", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 31842, "date": "Aug 8 2019"}, {"filename": "isp1000.bin", "parent": "/usr/lib/firmware/qlogic", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 18482, "date": "Aug 8 2019"}, {"filename": "sd7220.fw", "parent": "/usr/lib/firmware/qlogic", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8192, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/r128", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 26, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/r128", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "r128_cce.bin", "parent": "/usr/lib/firmware/r128", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2048, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/radeon", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/radeon", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "ARUBA_me.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8704, "date": "Aug 8 2019"}, {"filename": "ARUBA_pfp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8704, "date": "Aug 8 2019"}, {"filename": "ARUBA_rlc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 6144, "date": "Aug 8 2019"}, {"filename": "banks_k_2_smc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 61932, "date": "Aug 8 2019"}, {"filename": "BARTS_mc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 24096, "date": "Aug 8 2019"}, {"filename": "BARTS_me.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 5504, "date": "Aug 8 2019"}, {"filename": "BARTS_pfp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4480, "date": "Aug 8 2019"}, {"filename": "BARTS_smc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 24840, "date": "Aug 8 2019"}, {"filename": "bonaire_ce.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "BONAIRE_ce.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8576, "date": "Aug 8 2019"}, {"filename": "bonaire_k_smc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 130796, "date": "Aug 8 2019"}, {"filename": "BONAIRE_mc2.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 31792, "date": "Aug 8 2019"}, {"filename": "bonaire_mc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 32336, "date": "Aug 8 2019"}, {"filename": "BONAIRE_mc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 31464, "date": "Aug 8 2019"}, {"filename": "bonaire_me.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "BONAIRE_me.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8576, "date": "Aug 8 2019"}, {"filename": "bonaire_mec.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17024, "date": "Aug 8 2019"}, {"filename": "BONAIRE_mec.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 16768, "date": "Aug 8 2019"}, {"filename": "bonaire_pfp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "BONAIRE_pfp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8576, "date": "Aug 8 2019"}, {"filename": "bonaire_rlc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8448, "date": "Aug 8 2019"}, {"filename": "BONAIRE_rlc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8192, "date": "Aug 8 2019"}, {"filename": "bonaire_sdma1.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4456, "date": "Aug 8 2019"}, {"filename": "bonaire_sdma.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4456, "date": "Aug 8 2019"}, {"filename": "BONAIRE_sdma.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4200, "date": "Aug 8 2019"}, {"filename": "bonaire_smc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 130796, "date": "Aug 8 2019"}, {"filename": "BONAIRE_smc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 130540, "date": "Aug 8 2019"}, {"filename": "bonaire_uvd.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 232752, "date": "Aug 8 2019"}, {"filename": "BONAIRE_uvd.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 232240, "date": "Aug 8 2019"}, {"filename": "bonaire_vce.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 101072, "date": "Aug 8 2019"}, {"filename": "BONAIRE_vce.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 78248, "date": "Aug 8 2019"}, {"filename": "BTC_rlc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 3072, "date": "Aug 8 2019"}, {"filename": "CAICOS_mc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 24096, "date": "Aug 8 2019"}, {"filename": "CAICOS_me.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 5504, "date": "Aug 8 2019"}, {"filename": "CAICOS_pfp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4480, "date": "Aug 8 2019"}, {"filename": "CAICOS_smc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 24512, "date": "Aug 8 2019"}, {"filename": "CAYMAN_mc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 24148, "date": "Aug 8 2019"}, {"filename": "CAYMAN_me.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8704, "date": "Aug 8 2019"}, {"filename": "CAYMAN_pfp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8704, "date": "Aug 8 2019"}, {"filename": "CAYMAN_rlc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "CAYMAN_smc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 31212, "date": "Aug 8 2019"}, {"filename": "CEDAR_me.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 5504, "date": "Aug 8 2019"}, {"filename": "CEDAR_pfp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4480, "date": "Aug 8 2019"}, {"filename": "CEDAR_rlc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 3072, "date": "Aug 8 2019"}, {"filename": "CEDAR_smc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 23888, "date": "Aug 8 2019"}, {"filename": "CYPRESS_me.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 5504, "date": "Aug 8 2019"}, {"filename": "CYPRESS_pfp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4480, "date": "Aug 8 2019"}, {"filename": "CYPRESS_rlc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 3072, "date": "Aug 8 2019"}, {"filename": "CYPRESS_smc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 25080, "date": "Aug 8 2019"}, {"filename": "CYPRESS_uvd.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 115736, "date": "Aug 8 2019"}, {"filename": "hainan_ce.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "HAINAN_ce.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8576, "date": "Aug 8 2019"}, {"filename": "hainan_k_smc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 61876, "date": "Aug 8 2019"}, {"filename": "HAINAN_mc2.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 31452, "date": "Aug 8 2019"}, {"filename": "hainan_mc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 31996, "date": "Aug 8 2019"}, {"filename": "HAINAN_mc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 31452, "date": "Aug 8 2019"}, {"filename": "hainan_me.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "HAINAN_me.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8576, "date": "Aug 8 2019"}, {"filename": "hainan_pfp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "HAINAN_pfp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8576, "date": "Aug 8 2019"}, {"filename": "hainan_rlc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8448, "date": "Aug 8 2019"}, {"filename": "HAINAN_rlc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8192, "date": "Aug 8 2019"}, {"filename": "hainan_smc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 61444, "date": "Aug 8 2019"}, {"filename": "HAINAN_smc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 59004, "date": "Aug 8 2019"}, {"filename": "hawaii_ce.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "HAWAII_ce.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8576, "date": "Aug 8 2019"}, {"filename": "hawaii_k_smc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 130796, "date": "Aug 8 2019"}, {"filename": "HAWAII_mc2.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 32364, "date": "Aug 8 2019"}, {"filename": "hawaii_mc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 32796, "date": "Aug 8 2019"}, {"filename": "HAWAII_mc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 31732, "date": "Aug 8 2019"}, {"filename": "hawaii_me.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "HAWAII_me.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8576, "date": "Aug 8 2019"}, {"filename": "hawaii_mec.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17024, "date": "Aug 8 2019"}, {"filename": "HAWAII_mec.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 16768, "date": "Aug 8 2019"}, {"filename": "hawaii_pfp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "HAWAII_pfp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8576, "date": "Aug 8 2019"}, {"filename": "hawaii_rlc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8448, "date": "Aug 8 2019"}, {"filename": "HAWAII_rlc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8192, "date": "Aug 8 2019"}, {"filename": "hawaii_sdma1.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4456, "date": "Aug 8 2019"}, {"filename": "hawaii_sdma.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4456, "date": "Aug 8 2019"}, {"filename": "HAWAII_sdma.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4200, "date": "Aug 8 2019"}, {"filename": "hawaii_smc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 130796, "date": "Aug 8 2019"}, {"filename": "HAWAII_smc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 130540, "date": "Aug 8 2019"}, {"filename": "hawaii_uvd.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 232752, "date": "Aug 8 2019"}, {"filename": "hawaii_vce.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 101072, "date": "Aug 8 2019"}, {"filename": "JUNIPER_me.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 5504, "date": "Aug 8 2019"}, {"filename": "JUNIPER_pfp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4480, "date": "Aug 8 2019"}, {"filename": "JUNIPER_rlc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 3072, "date": "Aug 8 2019"}, {"filename": "JUNIPER_smc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 24352, "date": "Aug 8 2019"}, {"filename": "kabini_ce.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "KABINI_ce.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8576, "date": "Aug 8 2019"}, {"filename": "kabini_me.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "KABINI_me.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8576, "date": "Aug 8 2019"}, {"filename": "kabini_mec.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17024, "date": "Aug 8 2019"}, {"filename": "KABINI_mec.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 16768, "date": "Aug 8 2019"}, {"filename": "kabini_pfp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "KABINI_pfp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8576, "date": "Aug 8 2019"}, {"filename": "kabini_rlc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 10496, "date": "Aug 8 2019"}, {"filename": "KABINI_rlc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 10240, "date": "Aug 8 2019"}, {"filename": "kabini_sdma1.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4456, "date": "Aug 8 2019"}, {"filename": "kabini_sdma.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4456, "date": "Aug 8 2019"}, {"filename": "KABINI_sdma.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4200, "date": "Aug 8 2019"}, {"filename": "kabini_uvd.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 232752, "date": "Aug 8 2019"}, {"filename": "kabini_vce.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 101072, "date": "Aug 8 2019"}, {"filename": "kaveri_ce.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "KAVERI_ce.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8576, "date": "Aug 8 2019"}, {"filename": "kaveri_me.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "KAVERI_me.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8576, "date": "Aug 8 2019"}, {"filename": "kaveri_mec2.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17024, "date": "Aug 8 2019"}, {"filename": "kaveri_mec.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17024, "date": "Aug 8 2019"}, {"filename": "KAVERI_mec.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 16768, "date": "Aug 8 2019"}, {"filename": "kaveri_pfp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "KAVERI_pfp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8576, "date": "Aug 8 2019"}, {"filename": "kaveri_rlc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 10496, "date": "Aug 8 2019"}, {"filename": "KAVERI_rlc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 10240, "date": "Aug 8 2019"}, {"filename": "kaveri_sdma1.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4456, "date": "Aug 8 2019"}, {"filename": "kaveri_sdma.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4456, "date": "Aug 8 2019"}, {"filename": "KAVERI_sdma.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4200, "date": "Aug 8 2019"}, {"filename": "kaveri_uvd.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 232752, "date": "Aug 8 2019"}, {"filename": "kaveri_vce.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 101072, "date": "Aug 8 2019"}, {"filename": "mullins_ce.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "MULLINS_ce.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8576, "date": "Aug 8 2019"}, {"filename": "mullins_me.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "MULLINS_me.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8576, "date": "Aug 8 2019"}, {"filename": "mullins_mec.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 17024, "date": "Aug 8 2019"}, {"filename": "MULLINS_mec.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 16768, "date": "Aug 8 2019"}, {"filename": "mullins_pfp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "MULLINS_pfp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8576, "date": "Aug 8 2019"}, {"filename": "mullins_rlc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 10496, "date": "Aug 8 2019"}, {"filename": "MULLINS_rlc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 10240, "date": "Aug 8 2019"}, {"filename": "mullins_sdma1.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4456, "date": "Aug 8 2019"}, {"filename": "mullins_sdma.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4456, "date": "Aug 8 2019"}, {"filename": "MULLINS_sdma.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4200, "date": "Aug 8 2019"}, {"filename": "mullins_uvd.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 232752, "date": "Aug 8 2019"}, {"filename": "mullins_vce.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 101072, "date": "Aug 8 2019"}, {"filename": "oland_ce.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "OLAND_ce.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8576, "date": "Aug 8 2019"}, {"filename": "oland_k_smc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 62692, "date": "Aug 8 2019"}, {"filename": "OLAND_mc2.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 31452, "date": "Aug 8 2019"}, {"filename": "oland_mc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 31996, "date": "Aug 8 2019"}, {"filename": "OLAND_mc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 31452, "date": "Aug 8 2019"}, {"filename": "oland_me.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "OLAND_me.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8576, "date": "Aug 8 2019"}, {"filename": "oland_pfp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "OLAND_pfp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8576, "date": "Aug 8 2019"}, {"filename": "oland_rlc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8448, "date": "Aug 8 2019"}, {"filename": "OLAND_rlc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8192, "date": "Aug 8 2019"}, {"filename": "oland_smc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 62260, "date": "Aug 8 2019"}, {"filename": "OLAND_smc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 59316, "date": "Aug 8 2019"}, {"filename": "PALM_me.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 5504, "date": "Aug 8 2019"}, {"filename": "PALM_pfp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4480, "date": "Aug 8 2019"}, {"filename": "pitcairn_ce.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "PITCAIRN_ce.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8576, "date": "Aug 8 2019"}, {"filename": "pitcairn_k_smc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 61712, "date": "Aug 8 2019"}, {"filename": "PITCAIRN_mc2.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 31100, "date": "Aug 8 2019"}, {"filename": "pitcairn_mc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 31644, "date": "Aug 8 2019"}, {"filename": "PITCAIRN_mc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 31076, "date": "Aug 8 2019"}, {"filename": "pitcairn_me.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "PITCAIRN_me.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8576, "date": "Aug 8 2019"}, {"filename": "pitcairn_pfp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "PITCAIRN_pfp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8576, "date": "Aug 8 2019"}, {"filename": "pitcairn_rlc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8448, "date": "Aug 8 2019"}, {"filename": "PITCAIRN_rlc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8192, "date": "Aug 8 2019"}, {"filename": "pitcairn_smc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 61280, "date": "Aug 8 2019"}, {"filename": "PITCAIRN_smc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 59892, "date": "Aug 8 2019"}, {"filename": "R100_cp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2048, "date": "Aug 8 2019"}, {"filename": "R200_cp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2048, "date": "Aug 8 2019"}, {"filename": "R300_cp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2048, "date": "Aug 8 2019"}, {"filename": "R420_cp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2048, "date": "Aug 8 2019"}, {"filename": "R520_cp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2048, "date": "Aug 8 2019"}, {"filename": "R600_me.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 21504, "date": "Aug 8 2019"}, {"filename": "R600_pfp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2304, "date": "Aug 8 2019"}, {"filename": "R600_rlc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 3072, "date": "Aug 8 2019"}, {"filename": "R600_uvd.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 74188, "date": "Aug 8 2019"}, {"filename": "R700_rlc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4096, "date": "Aug 8 2019"}, {"filename": "REDWOOD_me.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 5504, "date": "Aug 8 2019"}, {"filename": "REDWOOD_pfp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4480, "date": "Aug 8 2019"}, {"filename": "REDWOOD_rlc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 3072, "date": "Aug 8 2019"}, {"filename": "REDWOOD_smc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 24332, "date": "Aug 8 2019"}, {"filename": "RS600_cp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2048, "date": "Aug 8 2019"}, {"filename": "RS690_cp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2048, "date": "Aug 8 2019"}, {"filename": "RS780_me.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 21504, "date": "Aug 8 2019"}, {"filename": "RS780_pfp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2304, "date": "Aug 8 2019"}, {"filename": "RS780_uvd.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 90164, "date": "Aug 8 2019"}, {"filename": "RV610_me.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 21504, "date": "Aug 8 2019"}, {"filename": "RV610_pfp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2304, "date": "Aug 8 2019"}, {"filename": "RV620_me.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 21504, "date": "Aug 8 2019"}, {"filename": "RV620_pfp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2304, "date": "Aug 8 2019"}, {"filename": "RV630_me.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 21504, "date": "Aug 8 2019"}, {"filename": "RV630_pfp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2304, "date": "Aug 8 2019"}, {"filename": "RV635_me.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 21504, "date": "Aug 8 2019"}, {"filename": "RV635_pfp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2304, "date": "Aug 8 2019"}, {"filename": "RV670_me.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 21504, "date": "Aug 8 2019"}, {"filename": "RV670_pfp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2304, "date": "Aug 8 2019"}, {"filename": "RV710_me.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 5440, "date": "Aug 8 2019"}, {"filename": "RV710_pfp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 3392, "date": "Aug 8 2019"}, {"filename": "RV710_smc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 16160, "date": "Aug 8 2019"}, {"filename": "RV710_uvd.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 116120, "date": "Aug 8 2019"}, {"filename": "RV730_me.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 5440, "date": "Aug 8 2019"}, {"filename": "RV730_pfp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 3392, "date": "Aug 8 2019"}, {"filename": "RV730_smc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 16684, "date": "Aug 8 2019"}, {"filename": "RV740_smc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 16840, "date": "Aug 8 2019"}, {"filename": "RV770_me.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 5440, "date": "Aug 8 2019"}, {"filename": "RV770_pfp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 3392, "date": "Aug 8 2019"}, {"filename": "RV770_smc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 16656, "date": "Aug 8 2019"}, {"filename": "RV770_uvd.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 90668, "date": "Aug 8 2019"}, {"filename": "si58_mc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 32488, "date": "Aug 8 2019"}, {"filename": "SUMO2_me.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 5504, "date": "Aug 8 2019"}, {"filename": "SUMO2_pfp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4480, "date": "Aug 8 2019"}, {"filename": "SUMO_me.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 5504, "date": "Aug 8 2019"}, {"filename": "SUMO_pfp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4480, "date": "Aug 8 2019"}, {"filename": "SUMO_rlc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 3072, "date": "Aug 8 2019"}, {"filename": "SUMO_uvd.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 205080, "date": "Aug 8 2019"}, {"filename": "tahiti_ce.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "TAHITI_ce.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8576, "date": "Aug 8 2019"}, {"filename": "tahiti_k_smc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 64364, "date": "Aug 8 2019"}, {"filename": "TAHITI_mc2.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 31232, "date": "Aug 8 2019"}, {"filename": "tahiti_mc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 31776, "date": "Aug 8 2019"}, {"filename": "TAHITI_mc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 31076, "date": "Aug 8 2019"}, {"filename": "tahiti_me.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "TAHITI_me.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8576, "date": "Aug 8 2019"}, {"filename": "tahiti_pfp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "TAHITI_pfp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8576, "date": "Aug 8 2019"}, {"filename": "tahiti_rlc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8448, "date": "Aug 8 2019"}, {"filename": "TAHITI_rlc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8192, "date": "Aug 8 2019"}, {"filename": "tahiti_smc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 63932, "date": "Aug 8 2019"}, {"filename": "TAHITI_smc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 62552, "date": "Aug 8 2019"}, {"filename": "TAHITI_uvd.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 219672, "date": "Aug 8 2019"}, {"filename": "TAHITI_vce.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 48424, "date": "Aug 8 2019"}, {"filename": "TURKS_mc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 24096, "date": "Aug 8 2019"}, {"filename": "TURKS_me.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 5504, "date": "Aug 8 2019"}, {"filename": "TURKS_pfp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4480, "date": "Aug 8 2019"}, {"filename": "TURKS_smc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 24668, "date": "Aug 8 2019"}, {"filename": "verde_ce.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "VERDE_ce.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8576, "date": "Aug 8 2019"}, {"filename": "verde_k_smc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 63804, "date": "Aug 8 2019"}, {"filename": "VERDE_mc2.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 31500, "date": "Aug 8 2019"}, {"filename": "verde_mc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 32044, "date": "Aug 8 2019"}, {"filename": "VERDE_mc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 31076, "date": "Aug 8 2019"}, {"filename": "verde_me.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "VERDE_me.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8576, "date": "Aug 8 2019"}, {"filename": "verde_pfp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8832, "date": "Aug 8 2019"}, {"filename": "VERDE_pfp.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8576, "date": "Aug 8 2019"}, {"filename": "verde_rlc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8448, "date": "Aug 8 2019"}, {"filename": "VERDE_rlc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 8192, "date": "Aug 8 2019"}, {"filename": "verde_smc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 61776, "date": "Aug 8 2019"}, {"filename": "VERDE_smc.bin", "parent": "/usr/lib/firmware/radeon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 60388, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/rockchip", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 22, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/rockchip", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "dptx.bin", "parent": "/usr/lib/firmware/rockchip", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 98320, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/rsi", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 104, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/rsi", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "rs9113_ap_bt_dual_mode.rps", "parent": "/usr/lib/firmware/rsi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 341860, "date": "Aug 8 2019"}, {"filename": "rs9113_wlan_bt_dual_mode.rps", "parent": "/usr/lib/firmware/rsi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 331592, "date": "Aug 8 2019"}, {"filename": "rs9113_wlan_qspi.rps", "parent": "/usr/lib/firmware/rsi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 201052, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/RTL8192E", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 54, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/RTL8192E", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "boot.img", "parent": "/usr/lib/firmware/RTL8192E", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 344, "date": "Aug 8 2019"}, {"filename": "data.img", "parent": "/usr/lib/firmware/RTL8192E", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 848, "date": "Aug 8 2019"}, {"filename": "main.img", "parent": "/usr/lib/firmware/RTL8192E", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 42944, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/rtl_bt", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/rtl_bt", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "rtl8192ee_fw.bin", "parent": "/usr/lib/firmware/rtl_bt", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 38764, "date": "Aug 8 2019"}, {"filename": "rtl8192eu_fw.bin", "parent": "/usr/lib/firmware/rtl_bt", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 37904, "date": "Aug 8 2019"}, {"filename": "rtl8723a_fw.bin", "parent": "/usr/lib/firmware/rtl_bt", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 24548, "date": "Aug 8 2019"}, {"filename": "rtl8723b_fw.bin", "parent": "/usr/lib/firmware/rtl_bt", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 45048, "date": "Aug 8 2019"}, {"filename": "rtl8723bs_config-OBDA8723.bin", "parent": "/usr/lib/firmware/rtl_bt", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 64, "date": "Aug 8 2019"}, {"filename": "rtl8723bs_fw.bin", "parent": "/usr/lib/firmware/rtl_bt", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 52116, "date": "Aug 8 2019"}, {"filename": "rtl8723d_config.bin", "parent": "/usr/lib/firmware/rtl_bt", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 10, "date": "Aug 8 2019"}, {"filename": "rtl8723d_fw.bin", "parent": "/usr/lib/firmware/rtl_bt", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 47028, "date": "Aug 8 2019"}, {"filename": "rtl8761a_fw.bin", "parent": "/usr/lib/firmware/rtl_bt", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 74488, "date": "Aug 8 2019"}, {"filename": "rtl8812ae_fw.bin", "parent": "/usr/lib/firmware/rtl_bt", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 40520, "date": "Aug 8 2019"}, {"filename": "rtl8821a_fw.bin", "parent": "/usr/lib/firmware/rtl_bt", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 37420, "date": "Aug 8 2019"}, {"filename": "rtl8821c_config.bin", "parent": "/usr/lib/firmware/rtl_bt", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 10, "date": "Aug 8 2019"}, {"filename": "rtl8821c_fw.bin", "parent": "/usr/lib/firmware/rtl_bt", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 37356, "date": "Aug 8 2019"}, {"filename": "rtl8822b_config.bin", "parent": "/usr/lib/firmware/rtl_bt", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 14, "date": "Aug 8 2019"}, {"filename": "rtl8822b_fw.bin", "parent": "/usr/lib/firmware/rtl_bt", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 51176, "date": "Aug 8 2019"}, {"filename": "rtl8822cu_fw.bin", "parent": "/usr/lib/firmware/rtl_bt", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 41588, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/rtl_nic", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/rtl_nic", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "rtl8105e-1.fw", "parent": "/usr/lib/firmware/rtl_nic", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2076, "date": "Aug 8 2019"}, {"filename": "rtl8106e-1.fw", "parent": "/usr/lib/firmware/rtl_nic", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1856, "date": "Aug 8 2019"}, {"filename": "rtl8106e-2.fw", "parent": "/usr/lib/firmware/rtl_nic", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 832, "date": "Aug 8 2019"}, {"filename": "rtl8107e-1.fw", "parent": "/usr/lib/firmware/rtl_nic", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 992, "date": "Aug 8 2019"}, {"filename": "rtl8107e-2.fw", "parent": "/usr/lib/firmware/rtl_nic", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 976, "date": "Aug 8 2019"}, {"filename": "rtl8168d-1.fw", "parent": "/usr/lib/firmware/rtl_nic", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1492, "date": "Aug 8 2019"}, {"filename": "rtl8168d-2.fw", "parent": "/usr/lib/firmware/rtl_nic", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1324, "date": "Aug 8 2019"}, {"filename": "rtl8168e-1.fw", "parent": "/usr/lib/firmware/rtl_nic", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 5500, "date": "Aug 8 2019"}, {"filename": "rtl8168e-2.fw", "parent": "/usr/lib/firmware/rtl_nic", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 3920, "date": "Aug 8 2019"}, {"filename": "rtl8168e-3.fw", "parent": "/usr/lib/firmware/rtl_nic", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 3872, "date": "Aug 8 2019"}, {"filename": "rtl8168f-1.fw", "parent": "/usr/lib/firmware/rtl_nic", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 3424, "date": "Aug 8 2019"}, {"filename": "rtl8168f-2.fw", "parent": "/usr/lib/firmware/rtl_nic", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1232, "date": "Aug 8 2019"}, {"filename": "rtl8168g-1.fw", "parent": "/usr/lib/firmware/rtl_nic", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4304, "date": "Aug 8 2019"}, {"filename": "rtl8168g-2.fw", "parent": "/usr/lib/firmware/rtl_nic", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 4896, "date": "Aug 8 2019"}, {"filename": "rtl8168g-3.fw", "parent": "/usr/lib/firmware/rtl_nic", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 832, "date": "Aug 8 2019"}, {"filename": "rtl8168h-1.fw", "parent": "/usr/lib/firmware/rtl_nic", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 992, "date": "Aug 8 2019"}, {"filename": "rtl8168h-2.fw", "parent": "/usr/lib/firmware/rtl_nic", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 976, "date": "Aug 8 2019"}, {"filename": "rtl8402-1.fw", "parent": "/usr/lib/firmware/rtl_nic", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1824, "date": "Aug 8 2019"}, {"filename": "rtl8411-1.fw", "parent": "/usr/lib/firmware/rtl_nic", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2112, "date": "Aug 8 2019"}, {"filename": "rtl8411-2.fw", "parent": "/usr/lib/firmware/rtl_nic", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1040, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/rtlwifi", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/rtlwifi", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "rtl8188efw.bin", "parent": "/usr/lib/firmware/rtlwifi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 11216, "date": "Aug 8 2019"}, {"filename": "rtl8188eufw.bin", "parent": "/usr/lib/firmware/rtlwifi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 13904, "date": "Aug 8 2019"}, {"filename": "rtl8192cfw.bin", "parent": "/usr/lib/firmware/rtlwifi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 16192, "date": "Aug 8 2019"}, {"filename": "rtl8192cfwU_B.bin", "parent": "/usr/lib/firmware/rtlwifi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 16332, "date": "Aug 8 2019"}, {"filename": "rtl8192cfwU.bin", "parent": "/usr/lib/firmware/rtlwifi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 14818, "date": "Aug 8 2019"}, {"filename": "rtl8192cufw_A.bin", "parent": "/usr/lib/firmware/rtlwifi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 16116, "date": "Aug 8 2019"}, {"filename": "rtl8192cufw_B.bin", "parent": "/usr/lib/firmware/rtlwifi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 16096, "date": "Aug 8 2019"}, {"filename": "rtl8192cufw.bin", "parent": "/usr/lib/firmware/rtlwifi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 16014, "date": "Aug 8 2019"}, {"filename": "rtl8192cufw_TMSC.bin", "parent": "/usr/lib/firmware/rtlwifi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 16116, "date": "Aug 8 2019"}, {"filename": "rtl8192defw.bin", "parent": "/usr/lib/firmware/rtlwifi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 31376, "date": "Aug 8 2019"}, {"filename": "rtl8192eefw.bin", "parent": "/usr/lib/firmware/rtlwifi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 31818, "date": "Aug 8 2019"}, {"filename": "rtl8192eu_ap_wowlan.bin", "parent": "/usr/lib/firmware/rtlwifi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 25264, "date": "Aug 8 2019"}, {"filename": "rtl8192eu_nic.bin", "parent": "/usr/lib/firmware/rtlwifi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 31818, "date": "Aug 8 2019"}, {"filename": "rtl8192eu_wowlan.bin", "parent": "/usr/lib/firmware/rtlwifi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 25878, "date": "Aug 8 2019"}, {"filename": "rtl8192sefw.bin", "parent": "/usr/lib/firmware/rtlwifi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 80208, "date": "Aug 8 2019"}, {"filename": "rtl8712u.bin", "parent": "/usr/lib/firmware/rtlwifi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 122328, "date": "Aug 8 2019"}, {"filename": "rtl8723aufw_A.bin", "parent": "/usr/lib/firmware/rtlwifi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 22172, "date": "Aug 8 2019"}, {"filename": "rtl8723aufw_B.bin", "parent": "/usr/lib/firmware/rtlwifi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 24118, "date": "Aug 8 2019"}, {"filename": "rtl8723aufw_B_NoBT.bin", "parent": "/usr/lib/firmware/rtlwifi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 19200, "date": "Aug 8 2019"}, {"filename": "rtl8723befw_36.bin", "parent": "/usr/lib/firmware/rtlwifi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 31762, "date": "Aug 8 2019"}, {"filename": "rtl8723befw.bin", "parent": "/usr/lib/firmware/rtlwifi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 30746, "date": "Aug 8 2019"}, {"filename": "rtl8723bs_ap_wowlan.bin", "parent": "/usr/lib/firmware/rtlwifi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 20886, "date": "Aug 8 2019"}, {"filename": "rtl8723bs_bt.bin", "parent": "/usr/lib/firmware/rtlwifi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 9120, "date": "Aug 8 2019"}, {"filename": "rtl8723bs_nic.bin", "parent": "/usr/lib/firmware/rtlwifi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 32108, "date": "Aug 8 2019"}, {"filename": "rtl8723bs_wowlan.bin", "parent": "/usr/lib/firmware/rtlwifi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 26398, "date": "Aug 8 2019"}, {"filename": "rtl8723bu_ap_wowlan.bin", "parent": "/usr/lib/firmware/rtlwifi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 20886, "date": "Aug 8 2019"}, {"filename": "rtl8723bu_nic.bin", "parent": "/usr/lib/firmware/rtlwifi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 32108, "date": "Aug 8 2019"}, {"filename": "rtl8723bu_wowlan.bin", "parent": "/usr/lib/firmware/rtlwifi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 26398, "date": "Aug 8 2019"}, {"filename": "rtl8723defw.bin", "parent": "/usr/lib/firmware/rtlwifi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 27726, "date": "Aug 8 2019"}, {"filename": "rtl8723fw_B.bin", "parent": "/usr/lib/firmware/rtlwifi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 22996, "date": "Aug 8 2019"}, {"filename": "rtl8723fw.bin", "parent": "/usr/lib/firmware/rtlwifi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 11662, "date": "Aug 8 2019"}, {"filename": "rtl8821aefw_29.bin", "parent": "/usr/lib/firmware/rtlwifi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 28348, "date": "Aug 8 2019"}, {"filename": "rtl8821aefw.bin", "parent": "/usr/lib/firmware/rtlwifi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 28984, "date": "Aug 8 2019"}, {"filename": "rtl8821aefw_wowlan.bin", "parent": "/usr/lib/firmware/rtlwifi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 19858, "date": "Aug 8 2019"}, {"filename": "rtl8822befw.bin", "parent": "/usr/lib/firmware/rtlwifi", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 127496, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/rtw88", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 52, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/rtw88", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "rtw8822b_fw.bin", "parent": "/usr/lib/firmware/rtw88", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 150984, "date": "Aug 8 2019"}, {"filename": "rtw8822c_fw.bin", "parent": "/usr/lib/firmware/rtw88", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 184640, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/sb16", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 134, "date": "Aug 15 2019"}, {"filename": "..", "parent": "/usr/lib/firmware/sb16", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "alaw_main.csp", "parent": "/usr/lib/firmware/sb16", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1304, "date": "Mar 5 2015"}, {"filename": "ima_adpcm_capture.csp", "parent": "/usr/lib/firmware/sb16", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1844, "date": "Mar 5 2015"}, {"filename": "ima_adpcm_init.csp", "parent": "/usr/lib/firmware/sb16", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1032, "date": "Mar 5 2015"}, {"filename": "ima_adpcm_playback.csp", "parent": "/usr/lib/firmware/sb16", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1872, "date": "Mar 5 2015"}, {"filename": "mulaw_main.csp", "parent": "/usr/lib/firmware/sb16", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1256, "date": "Mar 5 2015"}, {"filename": ".", "parent": "/usr/lib/firmware/slicoss", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 128, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/slicoss", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "gbdownload.sys", "parent": "/usr/lib/firmware/slicoss", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 98324, "date": "Aug 8 2019"}, {"filename": "gbrcvucode.sys", "parent": "/usr/lib/firmware/slicoss", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2564, "date": "Aug 8 2019"}, {"filename": "oasisdbgdownload.sys", "parent": "/usr/lib/firmware/slicoss", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 81940, "date": "Aug 8 2019"}, {"filename": "oasisdownload.sys", "parent": "/usr/lib/firmware/slicoss", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 81940, "date": "Aug 8 2019"}, {"filename": "oasisrcvucode.sys", "parent": "/usr/lib/firmware/slicoss", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2564, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/sun", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 25, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/sun", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "cassini.bin", "parent": "/usr/lib/firmware/sun", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2253, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/sxg", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 63, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/sxg", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "saharadbgdownloadB.sys", "parent": "/usr/lib/firmware/sxg", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 62972, "date": "Aug 8 2019"}, {"filename": "saharadownloadB.sys", "parent": "/usr/lib/firmware/sxg", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 54140, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/tehuti", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 21, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/tehuti", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "bdx.bin", "parent": "/usr/lib/firmware/tehuti", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 42768, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/tigon", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 80, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/tigon", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "tg357766.bin", "parent": "/usr/lib/firmware/tigon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 144, "date": "Aug 8 2019"}, {"filename": "tg3.bin", "parent": "/usr/lib/firmware/tigon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 2668, "date": "Aug 8 2019"}, {"filename": "tg3_tso5.bin", "parent": "/usr/lib/firmware/tigon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 3884, "date": "Aug 8 2019"}, {"filename": "tg3_tso.bin", "parent": "/usr/lib/firmware/tigon", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 7004, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/ti-keystone", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 51, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/ti-keystone", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "ks2_qmss_pdsp_acc48_k2_le_1_0_0_9.bin", "parent": "/usr/lib/firmware/ti-keystone", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 1764, "date": "Aug 8 2019"}, {"filename": ".", "parent": "/usr/lib/firmware/ttusb-budget", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 29, "date": "Oct 16 09:22"}, {"filename": "..", "parent": "/usr/lib/firmware/ttusb-budget", "flags": "drwxr-xr-x.", "links": 91, "owner": "root", "group": "root", "size": 12288, "date": "Oct 16 09:23"}, {"filename": "dspbootcode.bin", "parent": "/usr/lib/firmware/ttusb-budget", "flags": "-rw-r--r--.", "links": 1, "owner": "root", "group": "root", "size": 13104, "date": "Aug 8 2019"}] jc-1.17.3/tests/fixtures/centos-7.7/ls-alR.out000066400000000000000000010461541415226333200207150ustar00rootroot00000000000000/usr: total 100 drwxr-xr-x. 13 root root 155 Aug 15 2019 . dr-xr-xr-x. 17 root root 224 Aug 15 2019 .. dr-xr-xr-x. 2 root root 20480 Jan 13 17:29 bin drwxr-xr-x. 2 root root 6 Apr 10 2018 etc drwxr-xr-x. 2 root root 6 Apr 10 2018 games drwxr-xr-x. 4 root root 41 Oct 15 11:09 include dr-xr-xr-x. 29 root root 4096 Nov 16 14:29 lib dr-xr-xr-x. 43 root root 20480 Nov 16 14:29 lib64 drwxr-xr-x. 24 root root 4096 Oct 16 09:22 libexec drwxr-xr-x. 12 root root 131 Aug 15 2019 local dr-xr-xr-x. 2 root root 12288 Nov 10 07:55 sbin drwxr-xr-x. 87 root root 4096 Nov 16 14:29 share drwxr-xr-x. 4 root root 34 Aug 15 2019 src lrwxrwxrwx. 1 root root 10 Aug 15 2019 tmp -> ../var/tmp /usr/bin: total 137804 dr-xr-xr-x. 2 root root 20480 Jan 13 17:29 . drwxr-xr-x. 13 root root 155 Aug 15 2019 .. -rwxr-xr-x. 1 root root 41488 Aug 19 23:25 [ -rwxr-xr-x. 1 root root 107904 Jan 21 2019 a2p -rwxr-xr-x. 1 root root 29200 Aug 8 2019 addr2line -rwxr-xr-x. 1 root root 29 Aug 8 2019 alias lrwxrwxrwx. 1 root root 6 Aug 15 2019 apropos -> whatis -rwxr-xr-x. 1 root root 62744 Aug 8 2019 ar -rwxr-xr-x. 1 root root 33080 Aug 19 23:25 arch -rwxr-xr-x. 1 root root 378128 Aug 8 2019 as -rwxr-xr-x. 1 root root 28888 Aug 8 2019 aserver -rwxr-xr-x. 1 root root 14554 Aug 8 2019 audit2allow lrwxrwxrwx. 1 root root 11 Oct 16 09:22 audit2why -> audit2allow -rwxr-xr-x. 1 root root 15856 Aug 8 2019 aulast -rwxr-xr-x. 1 root root 11624 Aug 8 2019 aulastlog -rwxr-xr-x. 1 root root 11448 Aug 8 2019 ausyscall -rwxr-xr-x. 1 root root 32696 Aug 8 2019 auvirt lrwxrwxrwx. 1 root root 4 Aug 15 2019 awk -> gawk -rwxr-xr-x. 1 root root 37360 Aug 19 23:25 base64 -rwxr-xr-x. 1 root root 29032 Aug 19 23:25 basename -rwxr-xr-x. 1 root root 964600 Aug 8 2019 bash lrwxrwxrwx. 1 root root 10 Oct 16 09:21 bashbug -> bashbug-64 -rwxr-xr-x. 1 root root 6964 Aug 8 2019 bashbug-64 -rwxr-xr-x. 1 root root 26 Aug 8 2019 bg -rwxr-xr-x. 1 root root 23289 Mar 17 2017 bond2team -rwxr-xr-x. 1 root root 70648 Sep 13 11:21 bootctl -rwxr-xr-x. 1 root root 408680 Sep 13 11:21 busctl -rwxr-xr-x. 2 root root 36607 Jan 21 2019 c2ph -rwxr-xr-x. 1 root root 37688 Aug 8 2019 cal -rwxr-xr-x. 1 root root 1638 May 14 2018 ca-legacy lrwxrwxrwx. 1 root root 3 Aug 15 2019 captoinfo -> tic -rwxr-xr-x. 1 root root 54080 Aug 19 23:25 cat -rwxr-xr-x. 1 root root 3336 Aug 6 2019 catchsegv -rwxr-xr-x. 1 root root 37632 Oct 30 2018 catman -rwxr-xr-x. 1 root root 26 Aug 8 2019 cd -rwxr-xr-x. 1 root root 6280 Sep 30 07:30 centrino-decode -rwxr-xr-x. 1 root root 175760 Aug 12 2019 certutil -rwxr-xr-x. 1 root root 28664 Aug 8 2019 c++filt -rwxr-xr-x. 1 root root 15640 Apr 10 2018 chacl -rwsr-xr-x. 1 root root 73888 Aug 8 2019 chage -rwxr-xr-x. 1 root root 11616 Aug 8 2019 chattr -rwxr-xr-x. 1 root root 13430 Aug 8 2019 chcat -rwxr-xr-x. 1 root root 62936 Aug 19 23:25 chcon -rwxr-xr-x. 1 root root 410096 Oct 30 2018 checkmodule -rwxr-xr-x. 1 root root 422360 Oct 30 2018 checkpolicy -rws--x--x. 1 root root 23968 Aug 8 2019 chfn -rwxr-xr-x. 1 root root 62784 Aug 19 23:25 chgrp -rwxr-xr-x. 1 root root 41400 Aug 8 2019 chmem -rwxr-xr-x. 1 root root 58592 Aug 19 23:25 chmod -rwxr-xr-x. 1 root root 62824 Aug 19 23:25 chown -rwxr-xr-x. 1 root root 87072 Aug 8 2019 chronyc -rwxr-xr-x. 1 root root 32944 Aug 8 2019 chrt -rws--x--x. 1 root root 23880 Aug 8 2019 chsh -rwxr-xr-x. 1 root root 11480 Oct 30 2018 chvt -rwxr-xr-x. 1 root root 49672 Aug 8 2019 cifsiostat -rwxr-xr-x. 1 root root 33152 Aug 19 23:25 cksum -rwxr-xr-x. 1 root root 7192 Sep 6 2017 clear -rwxr-xr-x. 1 root root 45272 Aug 8 2019 cmp -rwxr-xr-x. 1 root root 104912 Aug 12 2019 cmsutil -rwxr-xr-x. 1 root root 24448 Aug 8 2019 col -rwxr-xr-x. 1 root root 11560 Aug 8 2019 colcrt -rwxr-xr-x. 1 root root 24352 Aug 8 2019 colrm -rwxr-xr-x. 1 root root 28664 Aug 8 2019 column -rwxr-xr-x. 1 root root 37424 Aug 19 23:25 comm -rwxr-xr-x. 1 root root 31 Aug 8 2019 command -rwxr-xr-x. 1 root root 75750 Jun 12 2018 container-storage-setup -rwxr-xr-x. 1 root root 158200 Sep 13 11:21 coredumpctl -rwxr-xr-x. 1 root root 155176 Aug 19 23:25 cp -rwxr-xr-x. 1 root root 145960 Apr 10 2018 cpio -rwxr-xr-x. 1 root root 67928 Sep 30 07:30 cpupower -rwxr-xr-x. 1 root root 121744 Aug 12 2019 crlutil -rwsr-xr-x. 1 root root 57656 Aug 8 2019 crontab -rwxr-xr-x. 1 root root 49992 Aug 19 23:25 csplit -rwxr-xr-x. 1 root root 20096 Oct 30 2018 csslint-0.6 -rwxr-xr-x. 1 root root 156728 Aug 8 2019 curl -rwxr-xr-x. 1 root root 41576 Aug 19 23:25 cut -rwxr-xr-x. 1 root root 247440 Aug 8 2019 cvtsudoers -rwxr-xr-x. 1 root root 62200 Aug 19 23:25 date -rwxr-xr-x. 1 root root 11496 Aug 8 2019 db_archive -rwxr-xr-x. 1 root root 11576 Aug 8 2019 db_checkpoint -rwxr-xr-x. 1 root root 11584 Aug 8 2019 db_deadlock -rwxr-xr-x. 1 root root 15696 Aug 8 2019 db_dump -rwxr-xr-x. 1 root root 65992 Aug 8 2019 db_dump185 -rwxr-xr-x. 1 root root 15712 Aug 8 2019 db_hotbackup -rwxr-xr-x. 1 root root 28168 Aug 8 2019 db_load -rwxr-xr-x. 1 root root 15704 Aug 8 2019 db_log_verify -rwxr-xr-x. 1 root root 33032 Aug 8 2019 db_printlog -rwxr-xr-x. 1 root root 11600 Aug 8 2019 db_recover -rwxr-xr-x. 1 root root 15712 Aug 8 2019 db_replicate -rwxr-xr-x. 1 root root 15624 Aug 8 2019 db_stat -rwxr-xr-x. 1 root root 19792 Aug 8 2019 db_tuner -rwxr-xr-x. 1 root root 11504 Aug 8 2019 db_upgrade -rwxr-xr-x. 1 root root 96760 Jun 9 2014 dbus-binding-tool -rwxr-xr-x. 1 root root 11344 Mar 14 2019 dbus-cleanup-sockets -rwxr-xr-x. 1 root root 223320 Mar 14 2019 dbus-daemon -rwxr-xr-x. 1 root root 23760 Mar 14 2019 dbus-monitor -rwxr-xr-x. 1 root root 15408 Mar 14 2019 dbus-run-session -rwxr-xr-x. 1 root root 27800 Mar 14 2019 dbus-send -rwxr-xr-x. 1 root root 23768 Mar 14 2019 dbus-test-tool -rwxr-xr-x. 1 root root 15480 Mar 14 2019 dbus-update-activation-environment -rwxr-xr-x. 1 root root 11328 Mar 14 2019 dbus-uuidgen -rwxr-xr-x. 1 root root 11520 Aug 8 2019 db_verify -rwxr-xr-x. 1 root root 74896 Aug 19 23:25 dd -rwxr-xr-x. 1 root root 11496 Oct 30 2018 deallocvt -rwxr-xr-x. 1 root root 41032 Aug 8 2019 delv -rwxr-xr-x. 1 root root 105016 Aug 19 23:25 df -rwxr-xr-x. 1 root root 514168 Jun 28 2017 dgawk -rwxr-xr-x. 1 root root 200224 Aug 8 2019 diff -rwxr-xr-x. 1 root root 62200 Aug 8 2019 diff3 -rwxr-xr-x. 1 root root 150568 Aug 8 2019 dig -rwxr-xr-x. 1 root root 117608 Aug 19 23:25 dir -rwxr-xr-x. 1 root root 41408 Aug 19 23:25 dircolors -rwxr-xr-x. 1 root root 28992 Aug 19 23:25 dirname -rwxr-xr-x. 1 root root 49680 Aug 8 2019 dmesg lrwxrwxrwx. 1 root root 8 Aug 15 2019 dnsdomainname -> hostname -rwxr-xr-x. 1 root root 735 Sep 13 07:25 docker -rwxr-xr-x. 1 root root 717 Sep 13 07:25 docker-containerd -rwxr-xr-x. 1 root root 10806520 Sep 15 07:07 docker-containerd-current -rwxr-xr-x. 1 root root 797 Sep 13 07:25 docker-containerd-shim -rwxr-xr-x. 1 root root 2585896 Sep 15 07:07 docker-containerd-shim-current -rwxr-xr-x. 1 root root 10015448 Sep 15 07:07 docker-ctr-current -rwxr-xr-x. 1 root root 13156296 Sep 15 07:07 docker-current -rwxr-xr-x. 1 root root 740 Sep 13 07:25 dockerd -rwxr-xr-x. 1 root root 33407632 Sep 15 07:07 dockerd-current lrwxrwxrwx. 1 root root 32 Oct 16 09:22 docker-storage-setup -> /usr/bin/container-storage-setup lrwxrwxrwx. 1 root root 8 Aug 15 2019 domainname -> hostname -rwxr-xr-x. 1 root root 57002 Aug 8 2019 dracut -rwxr-xr-x. 1 root root 112992 Aug 19 23:25 du -rwxr-xr-x. 1 root root 79440 Oct 30 2018 dumpkeys -rwxr-xr-x. 1 root root 3178136 Aug 8 2019 dwp -rwxr-xr-x. 1 root root 320 Aug 2 2017 easy_install -rwxr-xr-x. 1 root root 328 Aug 2 2017 easy_install-2.7 -rwxr-xr-x. 1 root root 234 Aug 7 2019 easy_install-3.6 -rwxr-xr-x. 1 root root 33088 Aug 19 23:25 echo -rwxr-xr-x. 1 root root 290 Aug 2 2017 egrep -rwxr-xr-x. 1 root root 49984 Aug 8 2019 eject -rwxr-xr-x. 1 root root 33040 Aug 8 2019 elfedit -rwxr-xr-x. 1 root root 29008 Aug 19 23:25 env -rwxr-xr-x. 1 root root 36872 Aug 2 2017 envsubst -rwxr-xr-x. 1 root root 147880 Jun 9 2014 eqn -rwxr-xr-x. 1 root root 4393 Aug 8 2019 erb lrwxrwxrwx. 1 root root 2 Oct 16 09:21 ex -> vi -rwxr-xr-x. 1 root root 33264 Aug 19 23:25 expand -rwxr-xr-x. 1 root root 37408 Aug 19 23:25 expr -rwxr-xr-x. 1 root root 95528 Aug 19 23:25 factor -rwxr-xr-x. 1 root root 28512 Aug 8 2019 fallocate -rwxr-xr-x. 1 root root 28928 Aug 19 23:25 false -rwxr-xr-x. 1 root root 26 Aug 8 2019 fc -rwxr-xr-x. 1 root root 26 Aug 8 2019 fg -rwxr-xr-x. 1 root root 11504 Oct 30 2018 fgconsole -rwxr-xr-x. 1 root root 290 Aug 2 2017 fgrep -rwxr-xr-x. 1 root root 19848 Oct 30 2018 file -rwxr-xr-x. 1 root root 199304 Oct 30 2018 find -rwxr-xr-x. 1 root root 23614 Jan 21 2019 find2perl -rwxr-xr-x. 1 root root 59768 Aug 8 2019 findmnt -rwxr-xr-x. 1 root root 15736 Aug 2 2017 fipscheck -rwxr-xr-x. 1 root root 11576 Aug 2 2017 fipshmac -rwxr-xr-x. 1 root root 116196 Sep 13 11:02 firewall-cmd -rwxr-xr-x. 1 root root 103607 Sep 13 11:02 firewall-offline-cmd -rwxr-xr-x. 1 root root 24448 Aug 8 2019 flock -rwxr-xr-x. 1 root root 37360 Aug 19 23:25 fmt -rwxr-xr-x. 1 root root 37336 Aug 19 23:25 fold -rwxr-xr-x. 1 root root 19792 Aug 8 2019 free -rwxr-xr-x. 1 root root 32136 Aug 8 2019 funzip -rwxr-xr-x. 1 root root 19944 Aug 8 2019 gapplication -rwxr-xr-x. 1 root root 428584 Jun 28 2017 gawk -rwxr-xr-x. 1 root root 41136 Aug 8 2019 gdbus -rwxr-xr-x. 1 root root 542 Aug 8 2019 gem -rwxr-xr-x. 1 root root 23136 Aug 6 2019 gencat -rwxr-xr-x. 2 root root 11544 Aug 3 2017 genl-ctrl-list -rwxr-xr-x. 1 root root 15648 Aug 8 2019 geoiplookup -rwxr-xr-x. 1 root root 11424 Aug 8 2019 geoiplookup6 -rwxr-xr-x. 1 root root 32072 Aug 12 2019 geoipupdate lrwxrwxrwx. 1 root root 3 Aug 15 2019 geqn -> eqn -rwxr-xr-x. 1 root root 22920 Aug 6 2019 getconf -rwxr-xr-x. 1 root root 27896 Aug 6 2019 getent -rwxr-xr-x. 1 root root 24872 Apr 10 2018 getfacl -rwxr-xr-x. 1 root root 11496 Oct 30 2018 getkeycodes -rwxr-xr-x. 1 root root 15752 Aug 8 2019 getopt -rwxr-xr-x. 1 root root 31 Aug 8 2019 getopts -rwxr-xr-x. 1 root root 36800 Aug 2 2017 gettext -rwxr-xr-x. 1 root root 4629 Aug 2 2017 gettext.sh -rwxr-xr-x. 1 root root 75176 Aug 8 2019 gio -rwxr-xr-x. 1 root root 11592 Aug 8 2019 gio-querymodules-64 -rwxr-xr-x. 113 root root 1523792 Nov 19 2018 git -rwxr-xr-x. 113 root root 1523792 Nov 19 2018 git-receive-pack -rwxr-xr-x. 2 root root 735288 Nov 19 2018 git-shell -rwxr-xr-x. 113 root root 1523792 Nov 19 2018 git-upload-archive -rwxr-xr-x. 2 root root 810448 Nov 19 2018 git-upload-pack -rwxr-xr-x. 1 root root 45440 Aug 8 2019 glib-compile-schemas lrwxrwxrwx. 1 root root 4 Oct 16 09:21 gmake -> make lrwxrwxrwx. 1 root root 4 Aug 15 2019 gneqn -> neqn lrwxrwxrwx. 1 root root 5 Aug 15 2019 gnroff -> nroff -rwsr-xr-x. 1 root root 78408 Aug 8 2019 gpasswd lrwxrwxrwx. 1 root root 4 Aug 15 2019 gpg -> gpg2 -rwxr-xr-x. 1 root root 749976 Jul 13 2018 gpg2 -rwxr-xr-x. 1 root root 296696 Jul 13 2018 gpg-agent -rwxr-xr-x. 1 root root 143680 Jul 13 2018 gpgconf -rwxr-xr-x. 1 root root 156352 Jul 13 2018 gpg-connect-agent -rwxr-xr-x. 1 root root 23736 Jun 10 2014 gpg-error -rwxr-xr-x. 1 root root 24272 Jul 13 2018 gpgparsemail -rwxr-xr-x. 1 root root 50056 Jul 13 2018 gpgsplit lrwxrwxrwx. 1 root root 5 Aug 15 2019 gpgv -> gpgv2 -rwxr-xr-x. 1 root root 353672 Jul 13 2018 gpgv2 -rwxr-xr-x. 1 root root 3307 Jul 13 2018 gpg-zip lrwxrwxrwx. 1 root root 3 Aug 15 2019 gpic -> pic -rwxr-xr-x. 1 root root 100832 Aug 8 2019 gprof -rwxr-xr-x. 1 root root 159024 Aug 2 2017 grep -rwxr-xr-x. 1 root root 83584 Jun 9 2014 groff -rwxr-xr-x. 1 root root 144232 Jun 9 2014 grops -rwxr-xr-x. 1 root root 100952 Jun 9 2014 grotty -rwxr-xr-x. 1 root root 33192 Aug 19 23:25 groups -rwxr-xr-x. 1 root root 401448 Aug 8 2019 grub2-editenv -rwxr-xr-x. 1 root root 833888 Aug 8 2019 grub2-file -rwxr-xr-x. 1 root root 1062640 Aug 8 2019 grub2-fstest -rwxr-xr-x. 1 root root 260920 Aug 8 2019 grub2-glue-efi -rwxr-xr-x. 1 root root 1668 Aug 8 2019 grub2-kbdcomp -rwxr-xr-x. 1 root root 243520 Aug 8 2019 grub2-menulst2cfg -rwxr-xr-x. 1 root root 290400 Aug 8 2019 grub2-mkfont -rwxr-xr-x. 1 root root 384136 Aug 8 2019 grub2-mkimage -rwxr-xr-x. 1 root root 267120 Aug 8 2019 grub2-mklayout -rwxr-xr-x. 1 root root 435960 Aug 8 2019 grub2-mknetdir -rwxr-xr-x. 1 root root 273720 Aug 8 2019 grub2-mkpasswd-pbkdf2 -rwxr-xr-x. 1 root root 260568 Aug 8 2019 grub2-mkrelpath -rwxr-xr-x. 1 root root 1025760 Aug 8 2019 grub2-mkrescue -rwxr-xr-x. 1 root root 538880 Aug 8 2019 grub2-mkstandalone -rwxr-xr-x. 1 root root 842904 Aug 8 2019 grub2-render-label -rwxr-xr-x. 1 root root 298368 Aug 8 2019 grub2-script-check -rwxr-xr-x. 1 root root 769672 Aug 8 2019 grub2-syslinux2cfg -rwxr-xr-x. 1 root root 24376 Aug 8 2019 gsettings lrwxrwxrwx. 1 root root 6 Aug 15 2019 gsoelim -> soelim lrwxrwxrwx. 1 root root 3 Aug 15 2019 gtar -> tar lrwxrwxrwx. 1 root root 3 Aug 15 2019 gtbl -> tbl lrwxrwxrwx. 1 root root 5 Aug 15 2019 gtroff -> troff -rwxr-xr-x. 1 root root 2253 Apr 10 2018 gunzip -rwxr-xr-x. 1 root root 5931 Apr 10 2018 gzexe -rwxr-xr-x. 1 root root 100800 Apr 10 2018 gzip -rwxr-xr-x. 1 root root 28310 Jan 21 2019 h2ph -rwxr-xr-x. 1 root root 11448 Nov 5 2016 hdsploader -rwxr-xr-x. 1 root root 41472 Aug 19 23:25 head -rwxr-xr-x. 1 root root 32784 Aug 8 2019 hexdump -rwxr-xr-x. 1 root root 130136 Aug 8 2019 host -rwxr-xr-x. 1 root root 28984 Aug 19 23:25 hostid -rwxr-xr-x. 1 root root 15768 Jun 9 2014 hostname -rwxr-xr-x. 1 root root 325712 Sep 13 11:21 hostnamectl lrwxrwxrwx. 1 root root 7 Oct 16 09:21 i386 -> setarch -rwxr-xr-x. 1 root root 60376 Aug 6 2019 iconv -rwxr-xr-x. 1 root root 37400 Aug 19 23:25 id -rwxr-xr-x. 1 root root 11608 Aug 3 2017 idiag-socket-details -rwxr-xr-x. 1 root root 33232 Nov 21 2015 idn -rwxr-xr-x. 1 root root 3188 Jun 28 2017 igawk -rwxr-xr-x. 1 root root 271552 Apr 10 2018 info -rwxr-xr-x. 1 root root 57416 Sep 6 2017 infocmp -rwxr-xr-x. 1 root root 21984 Apr 10 2018 infokey lrwxrwxrwx. 1 root root 3 Aug 15 2019 infotocap -> tic -rwxr-xr-x. 1 root root 142944 Aug 19 23:25 install -rwxr-xr-x. 1 root root 24432 Aug 8 2019 ionice -rwxr-xr-x. 1 root root 62232 Aug 8 2019 iostat -rwxr-xr-x. 1 root root 15416 Aug 8 2019 ipcalc -rwxr-xr-x. 1 root root 24584 Aug 8 2019 ipcmk -rwxr-xr-x. 1 root root 28520 Aug 8 2019 ipcrm -rwxr-xr-x. 1 root root 49520 Aug 8 2019 ipcs lrwxrwxrwx. 1 root root 23 Oct 16 09:21 iptables-xml -> /usr/sbin/xtables-multi -rwxr-xr-x. 1 root root 314 Aug 8 2019 irb -rwxr-xr-x. 1 root root 24400 Aug 8 2019 isosize -rwxr-xr-x. 1 root root 28 Aug 8 2019 jobs -rwxr-xr-x. 1 root root 49920 Aug 19 23:25 join -rwxr-xr-x. 1 root root 550752 Sep 13 11:21 journalctl -rwxr-xr-x. 1 root root 36752 Jun 9 2014 json_reformat -rwxr-xr-x. 1 root root 28176 Jun 9 2014 json_verify -rwxr-xr-x. 1 root root 11528 Oct 30 2018 kbdinfo -rwxr-xr-x. 1 root root 11504 Oct 30 2018 kbd_mode -rwxr-xr-x. 1 root root 11560 Oct 30 2018 kbdrate -rwxr-xr-x. 1 root root 32623 Aug 8 2019 kdumpctl -rwxr-xr-x. 1 root root 4811 Sep 13 11:19 kernel-install -rwxr-xr-x. 1 root root 33608 Aug 8 2019 kill -rwxr-xr-x. 1 root root 146688 Aug 8 2019 kmod -rwxr-xr-x. 1 root root 19568 Jun 9 2014 last lrwxrwxrwx. 1 root root 4 Aug 15 2019 lastb -> last -rwxr-xr-x. 1 root root 19608 Aug 8 2019 lastlog -rwxr-xr-x. 1 root root 15896 Apr 12 2018 lchfn -rwxr-xr-x. 1 root root 15864 Apr 12 2018 lchsh lrwxrwxrwx. 1 root root 20 Oct 16 09:21 ld -> /etc/alternatives/ld -rwxr-xr-x. 1 root root 1006224 Aug 8 2019 ld.bfd -rwxr-xr-x. 1 root root 5302 Aug 6 2019 ldd -rwxr-xr-x. 1 root root 5354368 Aug 8 2019 ld.gold -rwxr-xr-x. 1 root root 158240 Jul 30 2015 less -rwxr-xr-x. 1 root root 11376 Jul 30 2015 lessecho -rwxr-xr-x. 1 root root 17056 Jul 30 2015 lesskey -rwxr-xr-x. 1 root root 2291 Jul 30 2015 lesspipe.sh -rwxr-xr-x. 1 root root 87128 Oct 30 2018 lexgrog -rwxr-xr-x. 1 root root 28984 Aug 19 23:25 link lrwxrwxrwx. 1 root root 7 Oct 16 09:21 linux32 -> setarch lrwxrwxrwx. 1 root root 7 Oct 16 09:21 linux64 -> setarch -rwxr-xr-x. 1 root root 5995 Nov 5 2016 linux-boot-prober -rwxr-xr-x. 1 root root 58592 Aug 19 23:25 ln -rwxr-xr-x. 1 root root 113184 Oct 30 2018 loadkeys -rwxr-xr-x. 1 root root 24544 Oct 30 2018 loadunimap -rwxr-xr-x. 1 root root 38720 Aug 6 2019 locale -rwxr-xr-x. 1 root root 334016 Sep 13 11:21 localectl -rwxr-xr-x. 1 root root 322928 Aug 6 2019 localedef -rwxr-xr-x. 1 root root 29312 Aug 8 2019 logger -rwxr-xr-x. 1 root root 37248 Aug 8 2019 login -rwxr-xr-x. 1 root root 501344 Sep 13 11:21 loginctl -rwxr-xr-x. 1 root root 28984 Aug 19 23:25 logname -rwxr-xr-x. 1 root root 11544 Aug 8 2019 look -rwxr-xr-x. 1 root root 117608 Aug 19 23:25 ls -rwxr-xr-x. 1 root root 11600 Aug 8 2019 lsattr -rwxr-xr-x. 1 root root 81072 Aug 8 2019 lsblk -rwxr-xr-x. 1 root root 62208 Aug 8 2019 lscpu -rwxr-xr-x. 1 root root 6410 Aug 8 2019 lsinitrd -rwxr-xr-x. 1 root root 62432 Aug 8 2019 lsipc -rwxr-xr-x. 1 root root 42000 Aug 8 2019 lslocks -rwxr-xr-x. 1 root root 54152 Aug 8 2019 lslogins -rwxr-xr-x. 1 root root 41760 Aug 8 2019 lsmem -rwxr-xr-x. 1 root root 37304 Aug 8 2019 lsns -rwxr-xr-x. 1 root root 57832 Aug 2 2017 lsscsi -rwxr-xr-x. 1 root root 15840 Nov 5 2016 lua -rwxr-xr-x. 1 root root 121888 Nov 5 2016 luac -rwxr-xr-x. 1 root root 124344 Aug 8 2019 lz4 -rwxr-xr-x. 1 root root 124344 Aug 8 2019 lz4c lrwxrwxrwx. 1 root root 3 Oct 16 09:21 lz4cat -> lz4 -rwxr-xr-x. 1 root root 546704 Sep 13 11:21 machinectl lrwxrwxrwx. 1 root root 27 Aug 15 2019 mailq -> /etc/alternatives/mta-mailq lrwxrwxrwx. 1 root root 31 Aug 15 2019 mailq.postfix -> ../../usr/sbin/sendmail.postfix -rwxr-xr-x. 1 root root 182752 Aug 8 2019 make -rwxr-xr-x. 1 root root 19072 Aug 6 2019 makedb -rwxr-xr-x. 1 root root 102848 Oct 30 2018 man -rwxr-xr-x. 1 root root 125184 Oct 30 2018 mandb -rwxr-xr-x. 1 root root 33336 Oct 30 2018 manpath -rwxr-xr-x. 1 root root 20344 Oct 30 2018 mapscrn -rwxr-xr-x. 1 root root 15808 Aug 8 2019 mcookie -rwxr-xr-x. 1 root root 41504 Aug 19 23:25 md5sum -rwxr-xr-x. 1 root root 45328 Aug 8 2019 mdig -rwxr-xr-x. 1 root root 11240 Jun 9 2014 mesg -rwxr-xr-x. 1 root root 15744 Nov 5 2016 mixartloader -rwxr-xr-x. 1 root root 79768 Aug 19 23:25 mkdir -rwxr-xr-x. 1 root root 63056 Aug 19 23:25 mkfifo -rwxr-xr-x. 1 root root 3013 Aug 8 2019 mkinitrd -rwxr-xr-x. 1 root root 67184 Aug 19 23:25 mknod -rwxr-xr-x. 1 root root 41632 Aug 19 23:25 mktemp -rwxr-xr-x. 1 root root 161480 Aug 12 2019 modutil -rwxr-xr-x. 1 root root 41112 Aug 8 2019 more -rwsr-xr-x. 1 root root 44264 Aug 8 2019 mount -rwxr-xr-x. 1 root root 15688 Aug 8 2019 mountpoint -rwxr-xr-x. 1 root root 53792 Aug 8 2019 mpstat -rwxr-xr-x. 1 root root 23920 Aug 2 2017 msgattrib -rwxr-xr-x. 1 root root 23880 Aug 2 2017 msgcat -rwxr-xr-x. 1 root root 24144 Aug 2 2017 msgcmp -rwxr-xr-x. 1 root root 23872 Aug 2 2017 msgcomm -rwxr-xr-x. 1 root root 19760 Aug 2 2017 msgconv -rwxr-xr-x. 1 root root 19752 Aug 2 2017 msgen -rwxr-xr-x. 1 root root 15696 Aug 2 2017 msgexec -rwxr-xr-x. 1 root root 28224 Aug 2 2017 msgfilter -rwxr-xr-x. 1 root root 78984 Aug 2 2017 msgfmt -rwxr-xr-x. 1 root root 36816 Aug 2 2017 msggrep -rwxr-xr-x. 1 root root 12751 Mar 15 2017 msghack -rwxr-xr-x. 1 root root 45440 Aug 2 2017 msginit -rwxr-xr-x. 1 root root 53848 Aug 2 2017 msgmerge -rwxr-xr-x. 1 root root 32448 Aug 2 2017 msgunfmt -rwxr-xr-x. 1 root root 19776 Aug 2 2017 msguniq -rwxr-xr-x. 1 root root 130360 Aug 19 23:25 mv -rwxr-xr-x. 1 root root 28616 Aug 8 2019 namei -rwxr-xr-x. 1 root root 24192 Aug 8 2019 ndptool -rwxr-xr-x. 1 root root 271 Jun 9 2014 neqn -rwxr-xr-x. 1 root root 155008 Aug 8 2019 netstat lrwxrwxrwx. 1 root root 32 Aug 15 2019 newaliases -> /etc/alternatives/mta-newaliases lrwxrwxrwx. 1 root root 31 Aug 15 2019 newaliases.postfix -> ../../usr/sbin/sendmail.postfix -rwxr-xr-x. 1 root root 39000 Aug 8 2019 newgidmap -rwsr-xr-x. 1 root root 41936 Aug 8 2019 newgrp -rwxr-xr-x. 1 root root 38976 Aug 8 2019 newuidmap -rwxr-xr-x. 1 root root 12088 Aug 3 2017 nf-ct-add -rwxr-xr-x. 1 root root 16216 Aug 3 2017 nf-ct-list -rwxr-xr-x. 1 root root 16600 Aug 3 2017 nf-exp-add -rwxr-xr-x. 1 root root 16376 Aug 3 2017 nf-exp-delete -rwxr-xr-x. 1 root root 12088 Aug 3 2017 nf-exp-list -rwxr-xr-x. 1 root root 11504 Aug 3 2017 nf-log -rwxr-xr-x. 1 root root 11448 Aug 3 2017 nf-monitor -rwxr-xr-x. 1 root root 11544 Aug 3 2017 nf-queue -rwxr-xr-x. 1 root root 53784 Aug 8 2019 nfsiostat-sysstat -rwxr-xr-x. 1 root root 36816 Aug 2 2017 ngettext -rwxr-xr-x. 1 root root 33096 Aug 19 23:25 nice lrwxrwxrwx. 1 root root 8 Aug 15 2019 nisdomainname -> hostname -rwxr-xr-x. 1 root root 41576 Aug 19 23:25 nl -rwxr-xr-x. 1 root root 11928 Aug 3 2017 nl-addr-add -rwxr-xr-x. 1 root root 12016 Aug 3 2017 nl-addr-delete -rwxr-xr-x. 1 root root 16256 Aug 3 2017 nl-addr-list -rwxr-xr-x. 2 root root 11976 Aug 3 2017 nl-class-add -rwxr-xr-x. 2 root root 11824 Aug 3 2017 nl-class-delete -rwxr-xr-x. 2 root root 11560 Aug 3 2017 nl-classid-lookup -rwxr-xr-x. 2 root root 11752 Aug 3 2017 nl-class-list -rwxr-xr-x. 2 root root 12040 Aug 3 2017 nl-cls-add -rwxr-xr-x. 2 root root 11960 Aug 3 2017 nl-cls-delete -rwxr-xr-x. 2 root root 11856 Aug 3 2017 nl-cls-list -rwxr-xr-x. 1 root root 11688 Aug 3 2017 nl-fib-lookup -rwxr-xr-x. 1 root root 7216 Aug 3 2017 nl-link-enslave -rwxr-xr-x. 1 root root 7232 Aug 3 2017 nl-link-ifindex2name -rwxr-xr-x. 2 root root 11800 Aug 3 2017 nl-link-list -rwxr-xr-x. 1 root root 7216 Aug 3 2017 nl-link-name2ifindex -rwxr-xr-x. 1 root root 7216 Aug 3 2017 nl-link-release -rwxr-xr-x. 1 root root 11920 Aug 3 2017 nl-link-set -rwxr-xr-x. 1 root root 11664 Aug 3 2017 nl-link-stats -rwxr-xr-x. 1 root root 11344 Aug 3 2017 nl-list-caches -rwxr-xr-x. 1 root root 7232 Aug 3 2017 nl-list-sockets -rwxr-xr-x. 1 root root 11464 Aug 3 2017 nl-monitor -rwxr-xr-x. 1 root root 11784 Aug 3 2017 nl-neigh-add -rwxr-xr-x. 1 root root 11848 Aug 3 2017 nl-neigh-delete -rwxr-xr-x. 1 root root 11736 Aug 3 2017 nl-neigh-list -rwxr-xr-x. 1 root root 11536 Aug 3 2017 nl-neightbl-list -rwxr-xr-x. 2 root root 11632 Aug 3 2017 nl-pktloc-lookup -rwxr-xr-x. 2 root root 11880 Aug 3 2017 nl-qdisc-add -rwxr-xr-x. 2 root root 11816 Aug 3 2017 nl-qdisc-delete -rwxr-xr-x. 2 root root 11904 Aug 3 2017 nl-qdisc-list -rwxr-xr-x. 1 root root 12016 Aug 3 2017 nl-route-add -rwxr-xr-x. 1 root root 16240 Aug 3 2017 nl-route-delete -rwxr-xr-x. 1 root root 11448 Aug 3 2017 nl-route-get -rwxr-xr-x. 1 root root 12056 Aug 3 2017 nl-route-list -rwxr-xr-x. 1 root root 11568 Aug 3 2017 nl-rule-list -rwxr-xr-x. 1 root root 11808 Aug 3 2017 nl-tctree-list -rwxr-xr-x. 1 root root 7200 Aug 3 2017 nl-util-addr -rwxr-xr-x. 1 root root 42472 Aug 8 2019 nm -rwxr-xr-x. 1 root root 824448 Sep 13 11:04 nmcli -rwxr-xr-x. 1 root root 15528 Sep 13 11:04 nm-online -rwxr-xr-x. 1 root root 658184 Sep 13 11:04 nmtui lrwxrwxrwx. 1 root root 5 Oct 16 09:22 nmtui-connect -> nmtui lrwxrwxrwx. 1 root root 5 Oct 16 09:22 nmtui-edit -> nmtui lrwxrwxrwx. 1 root root 5 Oct 16 09:22 nmtui-hostname -> nmtui -rwxr-xr-x. 1 root root 33200 Aug 19 23:25 nohup -rwxr-xr-x. 1 root root 33144 Aug 19 23:25 nproc -rwxr-xr-x. 1 root root 3392 Jun 9 2014 nroff -rwxr-xr-x. 1 root root 28896 Aug 8 2019 nsenter -rwxr-xr-x. 1 root root 134128 Aug 8 2019 nslookup -rwxr-xr-x. 1 root root 11472 Aug 12 2019 nss-policy-check -rwxr-xr-x. 1 root root 66616 Aug 8 2019 nsupdate -rwxr-xr-x. 1 root root 66264 Aug 19 23:25 numfmt -rwxr-xr-x. 1 root root 232864 Aug 8 2019 objcopy -rwxr-xr-x. 1 root root 366336 Aug 8 2019 objdump -rwxr-xr-x. 1 root root 66368 Aug 19 23:25 od -rwxr-xr-x. 1 root root 190880 Oct 30 2018 oldfind lrwxrwxrwx. 1 root root 6 Aug 15 2019 open -> openvt -rwxr-xr-x. 1 root root 555288 Aug 8 2019 openssl -rwxr-xr-x. 1 root root 20024 Oct 30 2018 openvt -rwxr-xr-x. 1 root root 5643 Nov 5 2016 os-prober -rwxr-xr-x. 1 root root 32952 Aug 4 2017 p11-kit -rwsr-xr-x. 1 root root 27856 Aug 8 2019 passwd -rwxr-xr-x. 1 root root 33128 Aug 19 23:25 paste -rwxr-xr-x. 1 root root 33088 Aug 19 23:25 pathchk -rwxr-xr-x. 1 root root 4024 Nov 5 2016 pchrt -rwxr-xr-x. 2 root root 11488 Jan 21 2019 perl -rwxr-xr-x. 2 root root 11488 Jan 21 2019 perl5.16.3 -rwxr-xr-x. 2 root root 44351 Jan 21 2019 perlbug -rwxr-xr-x. 1 root root 203 Jun 10 2014 perldoc -rwxr-xr-x. 2 root root 44351 Jan 21 2019 perlthanks -rwxr-xr-x. 1 root root 2111 Aug 8 2019 pflags -rwxr-xr-x. 1 root root 428672 Jun 28 2017 pgawk -rwxr-xr-x. 1 root root 28336 Aug 8 2019 pgrep -rwxr-xr-x. 1 root root 184736 Jun 9 2014 pic -rwxr-xr-x. 1 root root 8177 Jun 9 2014 piconv -rwxr-xr-x. 1 root root 70536 Aug 8 2019 pidstat -rwxr-xr-x. 1 root root 2602 Nov 4 2016 pinentry -rwxr-xr-x. 1 root root 50368 Nov 5 2016 pinentry-curses -rwxr-xr-x. 1 root root 66176 Aug 4 2017 ping lrwxrwxrwx. 1 root root 4 Aug 15 2019 ping6 -> ping -rwxr-xr-x. 1 root root 37448 Aug 19 23:25 pinky -rwxr-xr-x. 1 root root 407 Aug 7 2019 pip3 lrwxrwxrwx. 1 root root 9 Oct 15 11:09 pip-3 -> ./pip-3.6 lrwxrwxrwx. 1 root root 8 Oct 15 11:09 pip-3.6 -> ./pip3.6 -rwxr-xr-x. 1 root root 407 Aug 7 2019 pip3.6 -rwxr-xr-x. 1 root root 97296 Aug 12 2019 pk12util -rwxr-xr-x. 1 root root 15360 Sep 13 11:10 pkaction -rwxr-xr-x. 1 root root 23576 Sep 13 11:10 pkcheck -rwsr-xr-x. 1 root root 23576 Sep 13 11:10 pkexec -rwxr-xr-x. 1 root root 45448 Jun 9 2014 pkg-config -rwxr-xr-x. 1 root root 28336 Aug 8 2019 pkill -rwxr-xr-x. 1 root root 19688 Jun 9 2014 pkla-admin-identities -rwxr-xr-x. 1 root root 27960 Jun 9 2014 pkla-check-authorization -rwxr-xr-x. 1 root root 19440 Sep 13 11:10 pkttyagent -rwxr-xr-x. 1 root root 4531 Jan 21 2019 pl2pm -rwxr-xr-x. 1 root root 14872 Aug 6 2019 pldd -rwxr-xr-x. 1 root root 40808 Aug 8 2019 plymouth -rwxr-xr-x. 1 root root 28272 Aug 8 2019 pmap -rwxr-xr-x. 1 root root 4096 Jan 21 2019 pod2html -rwxr-xr-x. 1 root root 13581 Jun 9 2014 pod2man -rwxr-xr-x. 1 root root 11004 Jun 9 2014 pod2text -rwxr-xr-x. 1 root root 3755 Jun 10 2014 pod2usage -rwxr-xr-x. 1 root root 192048 Jun 9 2014 post-grohtml -rwxr-xr-x. 1 root root 6296 Sep 30 07:30 powernow-k8-decode -rwxr-xr-x. 1 root root 66672 Aug 19 23:25 pr -rwxr-xr-x. 1 root root 41864 Jun 9 2014 preconv -rwxr-xr-x. 1 root root 88312 Jun 9 2014 pre-grohtml -rwxr-xr-x. 1 root root 28968 Aug 19 23:25 printenv -rwxr-xr-x. 1 root root 49768 Aug 19 23:25 printf -rwxr-xr-x. 1 root root 42184 Aug 8 2019 prlimit -rwxr-xr-x. 1 root root 100112 Aug 8 2019 ps -rwxr-xr-x. 2 root root 53329 Jan 21 2019 psed lrwxrwxrwx. 1 root root 9 Aug 15 2019 psfaddtable -> psfxtable lrwxrwxrwx. 1 root root 9 Aug 15 2019 psfgettable -> psfxtable lrwxrwxrwx. 1 root root 9 Aug 15 2019 psfstriptable -> psfxtable -rwxr-xr-x. 1 root root 20008 Oct 30 2018 psfxtable -rwxr-xr-x. 2 root root 36607 Jan 21 2019 pstruct -rwxr-xr-x. 1 root root 3891 Nov 5 2016 ptaskset -rwxr-xr-x. 1 root root 66640 Aug 19 23:25 ptx -rwxr-xr-x. 1 root root 33232 Aug 19 23:25 pwd -rwxr-xr-x. 1 root root 11536 Aug 8 2019 pwdx -rwxr-xr-x. 1 root root 11392 Apr 10 2018 pwmake -rwxr-xr-x. 1 root root 11392 Apr 10 2018 pwscore -rwxr-xr-x. 1 root root 78 Aug 6 2019 pydoc lrwxrwxrwx. 1 root root 8 Oct 15 11:09 pydoc3 -> pydoc3.6 -rwxr-xr-x. 1 root root 78 Aug 7 2019 pydoc3.6 lrwxrwxrwx. 1 root root 7 Oct 16 09:21 python -> python2 lrwxrwxrwx. 1 root root 9 Oct 16 09:21 python2 -> python2.7 -rwxr-xr-x. 1 root root 7216 Aug 6 2019 python2.7 lrwxrwxrwx. 1 root root 9 Oct 15 11:09 python3 -> python3.6 -rwxr-xr-x. 2 root root 11408 Aug 7 2019 python3.6 -rwxr-xr-x. 2 root root 11408 Aug 7 2019 python3.6m lrwxrwxrwx. 1 root root 10 Oct 15 11:09 pyvenv -> pyvenv-3.6 -rwxr-xr-x. 1 root root 435 Aug 7 2019 pyvenv-3.6 -rwxr-xr-x. 1 root root 62744 Aug 8 2019 ranlib -rwxr-xr-x. 1 root root 15640 Aug 8 2019 raw -rwxr-xr-x. 1 root root 934 Aug 8 2019 rdoc -rwxr-xr-x. 1 root root 28 Aug 8 2019 read -rwxr-xr-x. 1 root root 517992 Aug 8 2019 readelf -rwxr-xr-x. 1 root root 41800 Aug 19 23:25 readlink -rwxr-xr-x. 1 root root 62696 Aug 19 23:25 realpath -rwxr-xr-x. 1 root root 15648 Aug 2 2017 recode-sr-latin -rwxr-xr-x. 1 root root 11528 Aug 8 2019 rename -rwxr-xr-x. 1 root root 11480 Aug 8 2019 renice lrwxrwxrwx. 1 root root 4 Aug 15 2019 reset -> tset -rwxr-xr-x. 1 root root 20176 Oct 30 2018 resizecons -rwxr-xr-x. 1 root root 11528 Aug 8 2019 rev -rwxr-xr-x. 1 root root 184 Aug 8 2019 ri -rwxr-xr-x. 1 root root 62872 Aug 19 23:25 rm lrwxrwxrwx. 1 root root 27 Aug 15 2019 rmail -> /etc/alternatives/mta-rmail -rwxr-xr-x. 1 root root 262 Oct 30 2018 rmail.postfix -rwxr-xr-x. 1 root root 45528 Aug 19 23:25 rmdir -rwxr-xr-x. 1 root root 93144 Aug 6 2019 rpcgen -rwxr-xr-x. 1 root root 16208 Aug 6 2019 rpm -rwxr-xr-x. 1 root root 11496 Aug 6 2019 rpm2cpio -rwxr-xr-x. 1 root root 12096 Aug 6 2019 rpmdb -rwxr-xr-x. 1 root root 12096 Aug 6 2019 rpmkeys lrwxrwxrwx. 1 root root 13 Oct 16 09:21 rpmquery -> ../../bin/rpm lrwxrwxrwx. 1 root root 13 Oct 16 09:21 rpmverify -> ../../bin/rpm -rwxr-xr-x. 1 root root 495896 Apr 25 2019 rsync -rwxr-xr-x. 1 root root 6098 Sep 13 11:14 rsyslog-recover-qi.pl -rwxr-xr-x. 1 root root 7256 Aug 8 2019 ruby -rwxr-xr-x. 1 root root 33248 Aug 19 23:25 runcon -rwxr-xr-x. 1 root root 2086 Jun 9 2014 run-parts lrwxrwxrwx. 1 root root 2 Oct 16 09:21 rvi -> vi lrwxrwxrwx. 1 root root 2 Oct 16 09:21 rview -> vi -rwxr-xr-x. 2 root root 53329 Jan 21 2019 s2p -rwxr-xr-x. 1 root root 172488 Aug 8 2019 sadf -rwxr-xr-x. 1 root root 17939 Aug 8 2019 sandbox -rwxr-xr-x. 1 root root 97656 Aug 8 2019 sar -rwxr-xr-x. 1 root root 91384 Aug 8 2019 scp -rwxr-xr-x. 1 root root 20080 Aug 8 2019 script -rwxr-xr-x. 1 root root 15656 Aug 8 2019 scriptreplay -rwxr-xr-x. 1 root root 49640 Aug 8 2019 sdiff -rwxr-xr-x. 1 root root 24640 Aug 8 2019 secon -rwxr-xr-x. 1 root root 76016 Jun 9 2014 sed -rwxr-xr-x. 1 root root 255408 Oct 30 2018 sedismod -rwxr-xr-x. 1 root root 180552 Oct 30 2018 sedispol -rwxr-xr-x. 1 root root 15672 Aug 8 2019 semodule_package -rwxr-xr-x. 1 root root 49640 Aug 19 23:25 seq -rwxr-xr-x. 1 root root 15640 Aug 8 2019 setarch -rwxr-xr-x. 1 root root 37616 Apr 10 2018 setfacl -rwxr-xr-x. 1 root root 41432 Oct 30 2018 setfont -rwxr-xr-x. 1 root root 11496 Oct 30 2018 setkeycodes -rwxr-xr-x. 1 root root 11520 Oct 30 2018 setleds -rwxr-xr-x. 1 root root 11568 Oct 30 2018 setmetamode -rwxr-xr-x. 1 root root 36928 Aug 8 2019 setpriv -rwxr-xr-x. 1 root root 11496 Aug 8 2019 setsid -rwxr-xr-x. 1 root root 28144 Aug 8 2019 setterm lrwxrwxrwx. 1 root root 19 Oct 16 09:21 setup-nsssysinit -> setup-nsssysinit.sh -rwxr-xr-x. 1 root root 1539 Aug 12 2019 setup-nsssysinit.sh -rwxr-xr-x. 1 root root 11688 Oct 30 2018 setvtrgb -rwxr-xr-x. 1 root root 145424 Aug 8 2019 sftp lrwxrwxrwx. 1 root root 6 Oct 16 09:21 sg -> newgrp lrwxrwxrwx. 1 root root 4 Oct 16 09:21 sh -> bash -rwxr-xr-x. 1 root root 37448 Aug 19 23:25 sha1sum -rwxr-xr-x. 1 root root 41608 Aug 19 23:25 sha224sum -rwxr-xr-x. 1 root root 41608 Aug 19 23:25 sha256sum -rwxr-xr-x. 1 root root 41624 Aug 19 23:25 sha384sum -rwxr-xr-x. 1 root root 41624 Aug 19 23:25 sha512sum -rwxr-xr-x. 1 root root 15912 Oct 30 2018 showconsolefont -rwxr-xr-x. 1 root root 15680 Oct 30 2018 showkey -rwxr-xr-x. 1 root root 54208 Aug 19 23:25 shred -rwxr-xr-x. 1 root root 50312 Aug 19 23:25 shuf -rwxr-xr-x. 1 root root 96664 Aug 12 2019 signver -rwxr-xr-x. 1 root root 33216 Aug 8 2019 size -rwxr-xr-x. 1 root root 24184 Aug 8 2019 skill -rwxr-xr-x. 1 root root 19984 Aug 8 2019 slabtop -rwxr-xr-x. 1 root root 33128 Aug 19 23:25 sleep lrwxrwxrwx. 1 root root 5 Oct 16 09:22 slogin -> ./ssh -rwxr-xr-x. 1 root root 24184 Aug 8 2019 snice -rwxr-xr-x. 1 root root 33368 Jun 9 2014 soelim -rwxr-xr-x. 1 root root 117704 Aug 19 23:25 sort -rwxr-xr-x. 1 root root 4341 Aug 6 2019 sotruss -rwxr-xr-x. 1 root root 18459 Jan 21 2019 splain -rwxr-xr-x. 1 root root 71128 Aug 19 23:25 split -rwxr-xr-x. 1 root root 23224 Aug 6 2019 sprof -rwxr-xr-x. 1 root root 56240 Nov 20 2015 sqlite3 -rwxr-xr-x. 1 root root 774568 Aug 8 2019 ssh -rwxr-xr-x. 1 root root 360920 Aug 8 2019 ssh-add ---x--s--x. 1 root nobody 382216 Aug 8 2019 ssh-agent -rwxr-xr-x. 1 root root 10469 Aug 8 2019 ssh-copy-id -rwxr-xr-x. 1 root root 419208 Aug 8 2019 ssh-keygen -rwxr-xr-x. 1 root root 441024 Aug 8 2019 ssh-keyscan -rwxr-xr-x. 1 root root 112928 Aug 12 2019 ssltap -rwxr-xr-x. 1 root root 79040 Aug 19 23:25 stat -rwxr-xr-x. 1 root root 66440 Aug 19 23:25 stdbuf -rwxr-xr-x. 1 root root 29192 Aug 8 2019 strings -rwxr-xr-x. 1 root root 232856 Aug 8 2019 strip -rwxr-xr-x. 1 root root 70256 Aug 19 23:25 stty -rwsr-xr-x. 1 root root 32128 Aug 8 2019 su ---s--x--x. 1 root root 147320 Aug 8 2019 sudo lrwxrwxrwx. 1 root root 4 Oct 16 09:22 sudoedit -> sudo ---x--x--x. 1 root root 57456 Aug 8 2019 sudoreplay -rwxr-xr-x. 1 root root 37432 Aug 19 23:25 sum -rwxr-xr-x. 1 root root 28976 Aug 19 23:25 sync -rwxr-xr-x. 1 root root 717568 Sep 13 11:21 systemctl -rwxr-xr-x. 1 root root 1558080 Sep 13 11:21 systemd-analyze -rwxr-xr-x. 1 root root 61824 Sep 13 11:21 systemd-ask-password -rwxr-xr-x. 1 root root 40952 Sep 13 11:21 systemd-cat -rwxr-xr-x. 1 root root 334112 Sep 13 11:21 systemd-cgls -rwxr-xr-x. 1 root root 87128 Sep 13 11:21 systemd-cgtop lrwxrwxrwx. 1 root root 11 Oct 16 09:21 systemd-coredumpctl -> coredumpctl -rwxr-xr-x. 1 root root 78680 Sep 13 11:21 systemd-delta -rwxr-xr-x. 1 root root 40928 Sep 13 11:21 systemd-detect-virt -rwxr-xr-x. 1 root root 49352 Sep 13 11:21 systemd-escape -rwxr-xr-x. 1 root root 103952 Sep 13 11:21 systemd-firstboot -rwxr-xr-x. 1 root root 87344 Sep 13 11:21 systemd-hwdb -rwxr-xr-x. 1 root root 313200 Sep 13 11:21 systemd-inhibit lrwxrwxrwx. 1 root root 8 Oct 16 09:21 systemd-loginctl -> loginctl -rwxr-xr-x. 1 root root 53488 Sep 13 11:21 systemd-machine-id-setup -rwxr-xr-x. 1 root root 49288 Sep 13 11:21 systemd-notify -rwxr-xr-x. 1 root root 558912 Sep 13 11:21 systemd-nspawn -rwxr-xr-x. 1 root root 53416 Sep 13 11:21 systemd-path -rwxr-xr-x. 1 root root 392216 Sep 13 11:21 systemd-run -rwxr-xr-x. 1 root root 313136 Sep 13 11:21 systemd-stdio-bridge -rwxr-xr-x. 1 root root 3979 Sep 13 11:19 systemd-sysv-convert -rwxr-xr-x. 1 root root 145536 Sep 13 11:21 systemd-tmpfiles -rwxr-xr-x. 1 root root 86784 Sep 13 11:21 systemd-tty-ask-password-agent -rwxr-xr-x. 1 root root 15680 Sep 6 2017 tabs -rwxr-xr-x. 1 root root 33264 Aug 19 23:25 tac -rwxr-xr-x. 1 root root 66824 Aug 19 23:25 tail -rwxr-xr-x. 1 root root 24456 Aug 8 2019 tailf -rwxr-xr-x. 1 root root 53816 Aug 8 2019 tapestat -rwxr-xr-x. 1 root root 346136 Oct 30 2018 tar -rwxr-xr-x. 1 root root 32992 Aug 8 2019 taskset -rwxr-xr-x. 1 root root 118744 Jun 9 2014 tbl -rwxr-xr-x. 1 root root 154648 Aug 8 2019 teamd -rwxr-xr-x. 1 root root 29672 Aug 8 2019 teamdctl -rwxr-xr-x. 1 root root 19560 Aug 8 2019 teamnl -rwxr-xr-x. 1 root root 33160 Aug 19 23:25 tee -rwxr-xr-x. 1 root root 37336 Aug 19 23:25 test -rwxr-xr-x. 1 root root 30488 Jun 9 2014 testgdbm -rwxr-xr-x. 1 root root 74 Aug 8 2019 testrb -rwxr-xr-x. 1 root root 65800 Sep 6 2017 tic -rwxr-xr-x. 1 root root 338104 Sep 13 11:21 timedatectl -rwxr-xr-x. 1 root root 54592 Aug 19 23:25 timeout -rwxr-xr-x. 1 root root 15744 Aug 8 2019 tload -rwxr-xr-x. 1 root root 31856 Sep 30 07:30 tmon -rwxr-xr-x. 1 root root 15800 Sep 6 2017 toe -rwxr-xr-x. 1 root root 106880 Aug 8 2019 top -rwxr-xr-x. 1 root root 62480 Aug 19 23:25 touch -rwxr-xr-x. 1 root root 15784 Sep 6 2017 tput -rwxr-xr-x. 1 root root 45680 Aug 19 23:25 tr -rwxr-xr-x. 1 root root 15408 Aug 4 2017 tracepath -rwxr-xr-x. 1 root root 15408 Aug 4 2017 tracepath6 -rwxr-xr-x. 1 root root 525272 Jun 9 2014 troff -rwxr-xr-x. 1 root root 28936 Aug 19 23:25 true -rwxr-xr-x. 1 root root 53936 Aug 19 23:25 truncate -rwxr-xr-x. 1 root root 183376 Aug 4 2017 trust -rwxr-xr-x. 1 root root 20072 Sep 6 2017 tset -rwxr-xr-x. 1 root root 37344 Aug 19 23:25 tsort -rwxr-xr-x. 1 root root 28968 Aug 19 23:25 tty -rwxr-xr-x. 1 root root 115864 Sep 30 07:30 turbostat -rwxr-xr-x. 1 root root 7339 Aug 6 2019 tzselect -rwxr-xr-x. 1 root root 424208 Sep 13 11:21 udevadm -rwxr-xr-x. 1 root root 19936 Aug 8 2019 ul -rwxr-xr-x. 1 root root 29 Aug 8 2019 umask -rwsr-xr-x. 1 root root 31984 Aug 8 2019 umount -rwxr-xr-x. 1 root root 31 Aug 8 2019 unalias -rwxr-xr-x. 1 root root 33080 Aug 19 23:25 uname -rwxr-xr-x. 1 root root 33232 Aug 19 23:25 unexpand -rwxr-xr-x. 1 root root 2555 Oct 30 2018 unicode_start -rwxr-xr-x. 1 root root 363 Oct 30 2018 unicode_stop -rwxr-xr-x. 1 root root 45784 Aug 19 23:25 uniq -rwxr-xr-x. 1 root root 28984 Aug 19 23:25 unlink lrwxrwxrwx. 1 root root 3 Oct 16 09:21 unlz4 -> lz4 -rwxr-xr-x. 1 root root 15824 Aug 8 2019 unshare lrwxrwxrwx. 1 root root 2 Aug 15 2019 unxz -> xz -rwxr-xr-x. 2 root root 185472 Aug 8 2019 unzip -rwxr-xr-x. 1 root root 90752 Aug 8 2019 unzipsfx -rwxr-xr-x. 1 root root 1054 May 14 2018 update-ca-trust -rwxr-xr-x. 1 root root 54080 Apr 10 2018 update-mime-database -rwxr-xr-x. 1 root root 11488 Aug 8 2019 uptime -rwxr-xr-x. 1 root root 12465 Oct 30 2018 urlgrabber -rwxr-xr-x. 1 root root 33200 Aug 19 23:25 users -rwxr-xr-x. 1 root root 11208 Aug 8 2019 usleep -rwxr-xr-x. 1 root root 15776 Nov 5 2016 usx2yloader -rwxr-xr-x. 1 root root 15816 Aug 8 2019 utmpdump -rwxr-xr-x. 1 root root 11480 Aug 8 2019 uuidgen -rwxr-xr-x. 1 root root 117608 Aug 19 23:25 vdir -rwxr-xr-x. 1 root root 928184 Aug 8 2019 vi lrwxrwxrwx. 1 root root 2 Oct 16 09:21 view -> vi -rwxr-xr-x. 1 root root 16160 Oct 30 2018 vlock -rwxr-xr-x. 1 root root 32232 Aug 8 2019 vmstat -rwxr-xr-x. 1 root root 15744 Nov 5 2016 vxloader -rwxr-xr-x. 1 root root 19912 Aug 8 2019 w -rwxr-xr-x. 1 root root 28 Aug 8 2019 wait -r-xr-sr-x. 1 root tty 15344 Jun 9 2014 wall -rwxr-xr-x. 1 root root 24728 Aug 8 2019 watch -rwxr-xr-x. 1 root root 15720 Jul 13 2018 watchgnupg -rwxr-xr-x. 1 root root 41648 Aug 19 23:25 wc -rwxr-xr-x. 1 root root 41672 Aug 8 2019 wdctl -rwxr-xr-x. 1 root root 46584 Oct 30 2018 whatis -rwxr-xr-x. 1 root root 20680 Aug 8 2019 whereis -rwxr-xr-x. 1 root root 24336 Jun 9 2014 which -rwxr-xr-x. 1 root root 28504 Jun 10 2014 whiptail -rwxr-xr-x. 1 root root 49872 Aug 19 23:25 who -rwxr-xr-x. 1 root root 28984 Aug 19 23:25 whoami -rwxr-sr-x. 1 root tty 19544 Aug 8 2019 write lrwxrwxrwx. 1 root root 7 Oct 16 09:21 x86_64 -> setarch -rwxr-xr-x. 1 root root 10480 Sep 30 07:30 x86_energy_perf_policy -rwxr-xr-x. 1 root root 62368 Oct 30 2018 xargs -rwxr-xr-x. 1 root root 271784 Aug 2 2017 xgettext -rwxr-xr-x. 1 root root 19752 Jun 23 2016 xmlcatalog -rwxr-xr-x. 1 root root 63408 Jun 23 2016 xmllint -rwxr-xr-x. 1 root root 24568 Nov 28 2016 xmlwf -rwxr-xr-x. 1 root root 75280 Nov 5 2016 xz lrwxrwxrwx. 1 root root 2 Aug 15 2019 xzcat -> xz lrwxrwxrwx. 1 root root 6 Aug 15 2019 xzcmp -> xzdiff -rwxr-xr-x. 1 root root 11472 Nov 5 2016 xzdec -rwxr-xr-x. 1 root root 6632 Nov 5 2016 xzdiff lrwxrwxrwx. 1 root root 6 Aug 15 2019 xzegrep -> xzgrep lrwxrwxrwx. 1 root root 6 Aug 15 2019 xzfgrep -> xzgrep -rwxr-xr-x. 1 root root 5628 Nov 5 2016 xzgrep -rwxr-xr-x. 1 root root 1802 Nov 5 2016 xzless -rwxr-xr-x. 1 root root 2161 Nov 5 2016 xzmore -rwxr-xr-x. 1 root root 28984 Aug 19 23:25 yes lrwxrwxrwx. 1 root root 8 Aug 15 2019 ypdomainname -> hostname -rwxr-xr-x. 1 root root 801 Aug 8 2019 yum -rwxr-xr-x. 1 root root 1941 Apr 10 2018 zcat -rwxr-xr-x. 1 root root 1760 Apr 10 2018 zcmp -rwxr-xr-x. 1 root root 5768 Apr 10 2018 zdiff -rwxr-xr-x. 1 root root 123 Apr 10 2018 zegrep -rwxr-xr-x. 1 root root 123 Apr 10 2018 zfgrep -rwxr-xr-x. 1 root root 2144 Apr 10 2018 zforce -rwxr-xr-x. 1 root root 6132 Apr 10 2018 zgrep -rwxr-xr-x. 1 root root 2953 Oct 10 2008 zipgrep -rwxr-xr-x. 2 root root 185472 Aug 8 2019 zipinfo -rwxr-xr-x. 1 root root 2041 Apr 10 2018 zless -rwxr-xr-x. 1 root root 2859 Apr 10 2018 zmore -rwxr-xr-x. 1 root root 5343 Apr 10 2018 znew lrwxrwxrwx. 1 root root 6 Aug 15 2019 zsoelim -> soelim /usr/etc: total 0 drwxr-xr-x. 2 root root 6 Apr 10 2018 . drwxr-xr-x. 13 root root 155 Aug 15 2019 .. /usr/games: total 0 drwxr-xr-x. 2 root root 6 Apr 10 2018 . drwxr-xr-x. 13 root root 155 Aug 15 2019 .. /usr/include: total 0 drwxr-xr-x. 4 root root 41 Oct 15 11:09 . drwxr-xr-x. 13 root root 155 Aug 15 2019 .. drwxr-xr-x. 2 root root 27 Oct 16 09:21 python2.7 drwxr-xr-x. 2 root root 27 Oct 15 11:09 python3.6m /usr/include/python2.7: total 36 drwxr-xr-x. 2 root root 27 Oct 16 09:21 . drwxr-xr-x. 4 root root 41 Oct 15 11:09 .. -rw-r--r--. 1 root root 36814 Aug 6 2019 pyconfig-64.h /usr/include/python3.6m: total 44 drwxr-xr-x. 2 root root 27 Oct 15 11:09 . drwxr-xr-x. 4 root root 41 Oct 15 11:09 .. -rw-r--r--. 1 root root 44526 Aug 7 2019 pyconfig-64.h /usr/lib: total 32 dr-xr-xr-x. 29 root root 4096 Nov 16 14:29 . drwxr-xr-x. 13 root root 155 Aug 15 2019 .. drwxr-xr-x. 2 root root 6 Sep 13 11:19 binfmt.d drwxr-xr-x. 3 root root 64 Apr 10 2018 debug drwxr-xr-x. 4 root root 236 Oct 16 09:21 dracut drwxr-xr-x. 7 root root 81 Oct 16 09:23 firewalld drwxr-xr-x. 91 root root 12288 Oct 16 09:23 firmware dr-xr-xr-x. 2 root root 6 Apr 10 2018 games drwxr-xr-x. 3 root root 18 Nov 16 14:29 gems drwxr-xr-x. 3 root root 21 Aug 8 2019 grub drwxr-xr-x. 6 root root 76 Aug 15 2019 kbd drwxr-xr-x. 2 root root 56 Oct 16 09:22 kdump drwxr-xr-x. 3 root root 23 Sep 13 11:19 kernel drwxr-xr-x. 2 root root 55 Oct 16 09:21 locale drwxr-xr-x. 2 root root 55 Oct 16 09:23 modprobe.d drwxr-xr-x. 5 root root 103 Oct 16 09:22 modules drwxr-xr-x. 2 root root 6 Sep 13 11:19 modules-load.d drwxr-xr-x. 4 root root 31 Sep 13 11:04 NetworkManager drwxr-xr-x. 2 root root 50 Oct 16 09:21 polkit-1 drwxr-xr-x. 3 root root 27 Aug 6 2019 python2.7 drwxr-xr-x. 3 root root 27 Aug 7 2019 python3.6 drwxr-xr-x. 4 root root 4096 Oct 16 09:21 rpm lrwxrwxrwx. 1 root root 30 Aug 15 2019 sendmail -> /etc/alternatives/mta-sendmail lrwxrwxrwx. 1 root root 24 Aug 15 2019 sendmail.postfix -> ../sbin/sendmail.postfix dr-xr-xr-x. 2 root root 6 Apr 10 2018 sse2 drwxr-xr-x. 2 root root 107 Oct 16 09:22 sysctl.d drwxr-xr-x. 12 root root 4096 Oct 16 09:21 systemd drwxr-xr-x. 2 root root 4096 Oct 16 09:22 tmpfiles.d drwxr-xr-x. 13 root root 256 Oct 16 09:22 tuned drwxr-xr-x. 4 root root 252 Oct 16 09:21 udev drwxr-xr-x. 2 root root 80 Aug 8 2019 yum-plugins /usr/lib/binfmt.d: total 4 drwxr-xr-x. 2 root root 6 Sep 13 11:19 . dr-xr-xr-x. 29 root root 4096 Nov 16 14:29 .. /usr/lib/debug: total 4 drwxr-xr-x. 3 root root 64 Apr 10 2018 . dr-xr-xr-x. 29 root root 4096 Nov 16 14:29 .. lrwxrwxrwx. 1 root root 7 Aug 15 2019 bin -> usr/bin lrwxrwxrwx. 1 root root 7 Aug 15 2019 lib -> usr/lib lrwxrwxrwx. 1 root root 9 Aug 15 2019 lib64 -> usr/lib64 lrwxrwxrwx. 1 root root 8 Aug 15 2019 sbin -> usr/sbin drwxr-xr-x. 6 root root 65 Aug 15 2019 usr /usr/lib/debug/usr: total 0 drwxr-xr-x. 6 root root 65 Aug 15 2019 . drwxr-xr-x. 3 root root 64 Apr 10 2018 .. drwxr-xr-x. 2 root root 6 Aug 15 2019 bin lrwxrwxrwx. 1 root root 7 Aug 15 2019 .dwz -> ../.dwz drwxr-xr-x. 2 root root 6 Aug 15 2019 lib drwxr-xr-x. 2 root root 6 Aug 15 2019 lib64 drwxr-xr-x. 2 root root 6 Aug 15 2019 sbin /usr/lib/debug/usr/bin: total 0 drwxr-xr-x. 2 root root 6 Aug 15 2019 . drwxr-xr-x. 6 root root 65 Aug 15 2019 .. /usr/lib/debug/usr/lib: total 0 drwxr-xr-x. 2 root root 6 Aug 15 2019 . drwxr-xr-x. 6 root root 65 Aug 15 2019 .. /usr/lib/debug/usr/lib64: total 0 drwxr-xr-x. 2 root root 6 Aug 15 2019 . drwxr-xr-x. 6 root root 65 Aug 15 2019 .. /usr/lib/debug/usr/sbin: total 0 drwxr-xr-x. 2 root root 6 Aug 15 2019 . drwxr-xr-x. 6 root root 65 Aug 15 2019 .. /usr/lib/dracut: total 144 drwxr-xr-x. 4 root root 236 Oct 16 09:21 . dr-xr-xr-x. 29 root root 4096 Nov 16 14:29 .. drwxr-xr-x. 2 root root 164 Oct 16 09:22 dracut.conf.d lrwxrwxrwx. 1 root root 19 Oct 16 09:21 dracut-functions -> dracut-functions.sh -rwxr-xr-x. 1 root root 56134 Aug 8 2019 dracut-functions.sh -rwxr-xr-x. 1 root root 1111 Aug 8 2019 dracut-initramfs-restore -rwxr-xr-x. 1 root root 1188 Aug 8 2019 dracut-init.sh -rwxr-xr-x. 1 root root 41616 Aug 8 2019 dracut-install -rwxr-xr-x. 1 root root 13388 Aug 8 2019 dracut-logger.sh -rwxr-xr-x. 1 root root 27 Aug 8 2019 dracut-version.sh drwxr-xr-x. 65 root root 4096 Aug 8 2019 modules.d -rwxr-xr-x. 1 root root 7296 Aug 8 2019 skipcpio /usr/lib/dracut/dracut.conf.d: total 24 drwxr-xr-x. 2 root root 164 Oct 16 09:22 . drwxr-xr-x. 4 root root 236 Oct 16 09:21 .. -rw-r--r--. 1 root root 524 Aug 8 2019 01-dist.conf -rw-r--r--. 1 root root 22 Aug 8 2019 01-microcode.conf -rw-r--r--. 1 root root 26 Aug 8 2019 02-rescue.conf -rw-r--r--. 1 root root 65 Aug 12 2019 50-nss-softokn.conf -rw-r--r--. 1 root root 117 Sep 13 11:19 76-phys-port-name.conf -rw-r--r--. 1 root root 277 Aug 8 2019 99-microcode-override.conf /usr/lib/dracut/modules.d: total 16 drwxr-xr-x. 65 root root 4096 Aug 8 2019 . drwxr-xr-x. 4 root root 236 Oct 16 09:21 .. drwxr-xr-x. 2 root root 29 Oct 16 09:21 00bash drwxr-xr-x. 2 root root 29 Oct 16 09:21 00systemd-bootchart drwxr-xr-x. 2 root root 57 Oct 16 09:21 03modsign drwxr-xr-x. 2 root root 29 Oct 16 09:21 03rescue drwxr-xr-x. 2 root root 72 Oct 16 09:21 04watchdog drwxr-xr-x. 2 root root 29 Oct 16 09:21 05busybox drwxr-xr-x. 2 root root 29 Oct 16 09:21 05nss-softokn drwxr-xr-x. 2 root root 111 Oct 16 09:21 10i18n drwxr-xr-x. 2 root root 72 Oct 16 09:21 30convertfs drwxr-xr-x. 2 root root 4096 Oct 16 09:22 40network drwxr-xr-x. 2 root root 51 Oct 16 09:22 45ifcfg drwxr-xr-x. 2 root root 47 Oct 16 09:21 45url-lib drwxr-xr-x. 2 root root 29 Oct 16 09:21 50drm drwxr-xr-x. 2 root root 150 Oct 16 09:21 50plymouth drwxr-xr-x. 2 root root 92 Oct 16 09:21 80cms drwxr-xr-x. 2 root root 29 Oct 16 09:21 90bcache drwxr-xr-x. 2 root root 129 Oct 16 09:21 90btrfs drwxr-xr-x. 2 root root 195 Oct 16 09:21 90crypt drwxr-xr-x. 2 root root 130 Oct 16 09:21 90dm drwxr-xr-x. 2 root root 93 Oct 16 09:21 90dmraid drwxr-xr-x. 2 root root 258 Oct 16 09:21 90dmsquash-live drwxr-xr-x. 2 root root 29 Oct 16 09:21 90dmsquash-live-ntfs drwxr-xr-x. 2 root root 73 Oct 16 09:21 90kernel-modules drwxr-xr-x. 2 root root 102 Oct 16 09:22 90livenet drwxr-xr-x. 2 root root 88 Oct 16 09:21 90lvm drwxr-xr-x. 2 root root 4096 Oct 16 09:21 90mdraid drwxr-xr-x. 2 root root 110 Oct 16 09:21 90multipath drwxr-xr-x. 2 root root 29 Oct 16 09:21 90qemu drwxr-xr-x. 2 root root 29 Oct 16 09:22 90qemu-net drwxr-xr-x. 2 root root 53 Oct 16 09:21 91crypt-gpg drwxr-xr-x. 2 root root 54 Oct 16 09:21 91crypt-loop drwxr-xr-x. 2 root root 92 Oct 16 09:22 95cifs drwxr-xr-x. 2 root root 50 Oct 16 09:21 95dasd drwxr-xr-x. 2 root root 54 Oct 16 09:21 95dasd_mod drwxr-xr-x. 2 root root 29 Oct 16 09:21 95debug drwxr-xr-x. 2 root root 151 Oct 16 09:22 95fcoe drwxr-xr-x. 2 root root 54 Oct 16 09:22 95fcoe-uefi drwxr-xr-x. 2 root root 49 Oct 16 09:21 95fstab-sys drwxr-xr-x. 2 root root 119 Oct 16 09:22 95iscsi drwxr-xr-x. 2 root root 71 Oct 16 09:22 95nbd drwxr-xr-x. 2 root root 139 Oct 16 09:22 95nfs drwxr-xr-x. 2 root root 69 Oct 16 09:21 95resume drwxr-xr-x. 2 root root 120 Oct 16 09:21 95rootfs-block drwxr-xr-x. 2 root root 29 Oct 16 09:22 95ssh-client drwxr-xr-x. 2 root root 29 Oct 16 09:21 95terminfo drwxr-xr-x. 2 root root 122 Oct 16 09:21 95udev-rules drwxr-xr-x. 2 root root 102 Oct 16 09:21 95virtfs drwxr-xr-x. 2 root root 50 Oct 16 09:21 95zfcp drwxr-xr-x. 2 root root 49 Oct 16 09:22 95znet drwxr-xr-x. 2 root root 57 Oct 16 09:21 97biosdevname drwxr-xr-x. 2 root root 68 Oct 16 09:21 98ecryptfs drwxr-xr-x. 2 root root 49 Oct 16 09:21 98pollcdrom drwxr-xr-x. 2 root root 58 Oct 16 09:21 98selinux drwxr-xr-x. 2 root root 191 Oct 16 09:21 98syslog drwxr-xr-x. 2 root root 4096 Oct 16 09:21 98systemd drwxr-xr-x. 2 root root 49 Oct 16 09:21 98usrmount drwxr-xr-x. 2 root root 173 Oct 16 09:21 99base drwxr-xr-x. 2 root root 46 Oct 16 09:21 99fs-lib drwxr-xr-x. 2 root root 47 Oct 16 09:21 99img-lib drwxr-xr-x. 2 root root 227 Oct 16 09:22 99kdumpbase drwxr-xr-x. 2 root root 29 Oct 16 09:22 99microcode_ctl-fw_dir_override drwxr-xr-x. 2 root root 48 Oct 16 09:21 99shutdown drwxr-xr-x. 2 root root 48 Oct 16 09:22 99uefi-lib /usr/lib/dracut/modules.d/00bash: total 8 drwxr-xr-x. 2 root root 29 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 414 Aug 8 2019 module-setup.sh /usr/lib/dracut/modules.d/00systemd-bootchart: total 8 drwxr-xr-x. 2 root root 29 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 383 Aug 8 2019 module-setup.sh /usr/lib/dracut/modules.d/03modsign: total 12 drwxr-xr-x. 2 root root 57 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 344 Aug 8 2019 load-modsign-keys.sh -rwxr-xr-x. 1 root root 790 Aug 8 2019 module-setup.sh /usr/lib/dracut/modules.d/03rescue: total 8 drwxr-xr-x. 2 root root 29 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 420 Sep 12 2013 module-setup.sh /usr/lib/dracut/modules.d/04watchdog: total 16 drwxr-xr-x. 2 root root 72 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 2929 Aug 8 2019 module-setup.sh -rwxr-xr-x. 1 root root 245 Sep 12 2013 watchdog.sh -rwxr-xr-x. 1 root root 61 Aug 8 2019 watchdog-stop.sh /usr/lib/dracut/modules.d/05busybox: total 8 drwxr-xr-x. 2 root root 29 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 752 Aug 8 2019 module-setup.sh /usr/lib/dracut/modules.d/05nss-softokn: total 8 drwxr-xr-x. 2 root root 29 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 293 Aug 12 2019 module-setup.sh /usr/lib/dracut/modules.d/10i18n: total 32 drwxr-xr-x. 2 root root 111 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rw-r--r--. 1 root root 168 Sep 12 2013 10-console.rules -rwxr-xr-x. 1 root root 1722 Sep 12 2013 console_init.sh -rwxr-xr-x. 1 root root 7479 Aug 8 2019 module-setup.sh -rwxr-xr-x. 1 root root 1263 Aug 8 2019 parse-i18n.sh -rw-r--r--. 1 root root 4420 Sep 12 2013 README /usr/lib/dracut/modules.d/30convertfs: total 20 drwxr-xr-x. 2 root root 72 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 6113 Sep 12 2013 convertfs.sh -rwxr-xr-x. 1 root root 304 Sep 12 2013 do-convertfs.sh -rwxr-xr-x. 1 root root 389 Sep 12 2013 module-setup.sh /usr/lib/dracut/modules.d/40network: total 128 drwxr-xr-x. 2 root root 4096 Oct 16 09:22 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rw-r--r--. 1 root root 262 Aug 8 2019 dhclient.conf -rwxr-xr-x. 1 root root 8518 Aug 8 2019 dhclient-script.sh -rwxr-xr-x. 1 root root 926 Sep 12 2013 dhcp-root.sh -rwxr-xr-x. 1 root root 1229 Sep 12 2013 ifname-genrules.sh -rwxr-xr-x. 1 root root 13858 Aug 8 2019 ifup.sh -rwxr-xr-x. 1 root root 362 Sep 12 2013 kill-dhclient.sh -rwxr-xr-x. 1 root root 4857 Aug 8 2019 module-setup.sh -rwxr-xr-x. 1 root root 3756 Aug 8 2019 net-genrules.sh -rwxr-xr-x. 1 root root 24587 Aug 8 2019 net-lib.sh -rwxr-xr-x. 1 root root 2789 Aug 8 2019 netroot.sh -rwxr-xr-x. 1 root root 2008 Aug 8 2019 parse-bond.sh -rwxr-xr-x. 1 root root 1124 Aug 8 2019 parse-bridge.sh -rwxr-xr-x. 1 root root 393 Aug 8 2019 parse-ibft.sh -rwxr-xr-x. 1 root root 662 Sep 12 2013 parse-ifname.sh -rwxr-xr-x. 1 root root 4912 Aug 8 2019 parse-ip-opts.sh -rwxr-xr-x. 1 root root 983 Aug 8 2019 parse-team.sh -rwxr-xr-x. 1 root root 532 Aug 8 2019 parse-vlan.sh /usr/lib/dracut/modules.d/45ifcfg: total 20 drwxr-xr-x. 2 root root 51 Oct 16 09:22 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 321 Aug 8 2019 module-setup.sh -rwxr-xr-x. 1 root root 8679 Aug 8 2019 write-ifcfg.sh /usr/lib/dracut/modules.d/45url-lib: total 12 drwxr-xr-x. 2 root root 47 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 1036 Aug 8 2019 module-setup.sh -rwxr-xr-x. 1 root root 4015 Aug 8 2019 url-lib.sh /usr/lib/dracut/modules.d/50drm: total 8 drwxr-xr-x. 2 root root 29 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 2004 Aug 8 2019 module-setup.sh /usr/lib/dracut/modules.d/50plymouth: total 24 drwxr-xr-x. 2 root root 150 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 870 Aug 8 2019 module-setup.sh -rwxr-xr-x. 1 root root 160 Sep 12 2013 plymouth-emergency.sh -rwxr-xr-x. 1 root root 223 Sep 12 2013 plymouth-newroot.sh -rwxr-xr-x. 1 root root 1506 Sep 12 2013 plymouth-populate-initrd.sh -rwxr-xr-x. 1 root root 1193 Sep 12 2013 plymouth-pretrigger.sh /usr/lib/dracut/modules.d/80cms: total 24 drwxr-xr-x. 2 root root 92 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 895 Aug 8 2019 cmsifup.sh -rwxr-xr-x. 1 root root 6046 Aug 8 2019 cmssetup.sh -rwxr-xr-x. 1 root root 3269 Aug 8 2019 cms-write-ifcfg.sh -rwxr-xr-x. 1 root root 905 Sep 12 2013 module-setup.sh /usr/lib/dracut/modules.d/90bcache: total 8 drwxr-xr-x. 2 root root 29 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 790 Aug 8 2019 module-setup.sh /usr/lib/dracut/modules.d/90btrfs: total 24 drwxr-xr-x. 2 root root 129 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rw-r--r--. 1 root root 270 Sep 12 2013 80-btrfs.rules -rwxr-xr-x. 1 root root 577 Sep 12 2013 btrfs_device_ready.sh -rwxr-xr-x. 1 root root 707 Sep 12 2013 btrfs_finished.sh -rwxr-xr-x. 1 root root 252 Sep 12 2013 btrfs_timeout.sh -rwxr-xr-x. 1 root root 1159 Aug 8 2019 module-setup.sh /usr/lib/dracut/modules.d/90crypt: total 44 drwxr-xr-x. 2 root root 195 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 551 Sep 12 2013 crypt-cleanup.sh -rwxr-xr-x. 1 root root 6898 Sep 12 2013 crypt-lib.sh -rwxr-xr-x. 1 root root 4282 Sep 12 2013 cryptroot-ask.sh -rwxr-xr-x. 1 root root 887 Sep 12 2013 crypt-run-generator.sh -rwxr-xr-x. 1 root root 3023 Aug 8 2019 module-setup.sh -rwxr-xr-x. 1 root root 3276 Sep 12 2013 parse-crypt.sh -rwxr-xr-x. 1 root root 1260 Sep 12 2013 parse-keydev.sh -rwxr-xr-x. 1 root root 492 Sep 12 2013 probe-keydev.sh /usr/lib/dracut/modules.d/90dm: total 24 drwxr-xr-x. 2 root root 130 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rw-r--r--. 1 root root 142 Sep 12 2013 11-dm.rules -rw-r--r--. 1 root root 670 Sep 12 2013 59-persistent-storage-dm.rules -rwxr-xr-x. 1 root root 211 Sep 12 2013 dm-pre-udev.sh -rwxr-xr-x. 1 root root 465 Sep 12 2013 dm-shutdown.sh -rwxr-xr-x. 1 root root 1052 Aug 8 2019 module-setup.sh /usr/lib/dracut/modules.d/90dmraid: total 20 drwxr-xr-x. 2 root root 93 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rw-r--r--. 1 root root 986 Aug 8 2019 61-dmraid-imsm.rules -rwxr-xr-x. 1 root root 1411 Aug 8 2019 dmraid.sh -rwxr-xr-x. 1 root root 2118 Aug 8 2019 module-setup.sh -rwxr-xr-x. 1 root root 935 Sep 12 2013 parse-dm.sh /usr/lib/dracut/modules.d/90dmsquash-live: total 48 drwxr-xr-x. 2 root root 258 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 492 Sep 12 2013 apply-live-updates.sh -rw-r--r--. 1 root root 268 Aug 8 2019 checkisomd5@.service -rwxr-xr-x. 1 root root 718 Aug 8 2019 dmsquash-live-genrules.sh -rwxr-xr-x. 1 root root 398 Aug 8 2019 dmsquash-liveiso-genrules.sh -rwxr-xr-x. 1 root root 10480 Aug 8 2019 dmsquash-live-root.sh -rwxr-xr-x. 1 root root 901 Sep 12 2013 iso-scan.sh -rwxr-xr-x. 1 root root 1197 Aug 8 2019 module-setup.sh -rwxr-xr-x. 1 root root 1690 Aug 8 2019 parse-dmsquash-live.sh -rwxr-xr-x. 1 root root 309 Sep 12 2013 parse-iso-scan.sh /usr/lib/dracut/modules.d/90dmsquash-live-ntfs: total 8 drwxr-xr-x. 2 root root 29 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 300 Aug 8 2019 module-setup.sh /usr/lib/dracut/modules.d/90kernel-modules: total 16 drwxr-xr-x. 2 root root 73 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 303 Sep 12 2013 insmodpost.sh -rwxr-xr-x. 1 root root 3755 Aug 8 2019 module-setup.sh -rwxr-xr-x. 1 root root 1031 Sep 12 2013 parse-kernel.sh /usr/lib/dracut/modules.d/90livenet: total 20 drwxr-xr-x. 2 root root 102 Oct 16 09:22 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 857 Sep 12 2013 fetch-liveupdate.sh -rwxr-xr-x. 1 root root 672 Aug 8 2019 livenetroot.sh -rwxr-xr-x. 1 root root 364 Sep 12 2013 module-setup.sh -rwxr-xr-x. 1 root root 974 Aug 8 2019 parse-livenet.sh /usr/lib/dracut/modules.d/90lvm: total 24 drwxr-xr-x. 2 root root 88 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rw-r--r--. 1 root root 776 Sep 12 2013 64-lvm.rules -rwxr-xr-x. 1 root root 3670 Aug 8 2019 lvm_scan.sh -rwxr-xr-x. 1 root root 4874 Aug 8 2019 module-setup.sh -rwxr-xr-x. 1 root root 596 Aug 8 2019 parse-lvm.sh /usr/lib/dracut/modules.d/90mdraid: total 60 drwxr-xr-x. 2 root root 4096 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rw-r--r--. 1 root root 843 Aug 8 2019 59-persistent-storage-md.rules -rw-r--r--. 1 root root 1476 Sep 12 2013 65-md-incremental-imsm.rules -rwxr-xr-x. 1 root root 338 Sep 12 2013 mdmon-pre-shutdown.sh -rwxr-xr-x. 1 root root 240 Sep 12 2013 mdmon-pre-udev.sh -rwxr-xr-x. 1 root root 197 Sep 12 2013 md-noddf.sh -rwxr-xr-x. 1 root root 199 Sep 12 2013 md-noimsm.sh -rwxr-xr-x. 1 root root 708 Sep 12 2013 mdraid-cleanup.sh -rwxr-xr-x. 1 root root 265 Sep 12 2013 mdraid-needshutdown.sh -rwxr-xr-x. 1 root root 1951 Aug 8 2019 mdraid_start.sh -rwxr-xr-x. 1 root root 910 Sep 12 2013 mdraid-waitclean.sh -rwxr-xr-x. 1 root root 672 Sep 12 2013 md-shutdown.sh -rwxr-xr-x. 1 root root 4088 Aug 8 2019 module-setup.sh -rwxr-xr-x. 1 root root 2175 Aug 8 2019 parse-md.sh /usr/lib/dracut/modules.d/90multipath: total 20 drwxr-xr-x. 2 root root 110 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 3792 Aug 8 2019 module-setup.sh -rwxr-xr-x. 1 root root 214 Sep 12 2013 multipathd-needshutdown.sh -rwxr-xr-x. 1 root root 301 Sep 12 2013 multipathd.sh -rwxr-xr-x. 1 root root 347 Sep 12 2013 multipathd-stop.sh /usr/lib/dracut/modules.d/90qemu: total 8 drwxr-xr-x. 2 root root 29 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 931 Aug 8 2019 module-setup.sh /usr/lib/dracut/modules.d/90qemu-net: total 8 drwxr-xr-x. 2 root root 29 Oct 16 09:22 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 747 Sep 12 2013 module-setup.sh /usr/lib/dracut/modules.d/91crypt-gpg: total 12 drwxr-xr-x. 2 root root 53 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 1076 Sep 12 2013 crypt-gpg-lib.sh -rwxr-xr-x. 1 root root 348 Aug 8 2019 module-setup.sh /usr/lib/dracut/modules.d/91crypt-loop: total 12 drwxr-xr-x. 2 root root 54 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 1615 Aug 8 2019 crypt-loop-lib.sh -rw-r--r--. 1 root root 416 Aug 8 2019 module-setup.sh /usr/lib/dracut/modules.d/95cifs: total 20 drwxr-xr-x. 2 root root 92 Oct 16 09:22 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 1079 Sep 12 2013 cifs-lib.sh -rwxr-xr-x. 1 root root 719 Sep 12 2013 cifsroot.sh -rwxr-xr-x. 1 root root 1178 Aug 8 2019 module-setup.sh -rwxr-xr-x. 1 root root 1292 Sep 12 2013 parse-cifsroot.sh /usr/lib/dracut/modules.d/95dasd: total 12 drwxr-xr-x. 2 root root 50 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 645 Aug 8 2019 module-setup.sh -rwxr-xr-x. 1 root root 293 Sep 12 2013 parse-dasd.sh /usr/lib/dracut/modules.d/95dasd_mod: total 12 drwxr-xr-x. 2 root root 54 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 497 Aug 8 2019 module-setup.sh -rwxr-xr-x. 1 root root 459 Sep 12 2013 parse-dasd-mod.sh /usr/lib/dracut/modules.d/95debug: total 8 drwxr-xr-x. 2 root root 29 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 421 Sep 12 2013 module-setup.sh /usr/lib/dracut/modules.d/95fcoe: total 32 drwxr-xr-x. 2 root root 151 Oct 16 09:22 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rw-r--r--. 1 root root 363 Aug 8 2019 cleanup-fcoe.sh -rwxr-xr-x. 1 root root 1273 Aug 8 2019 fcoe-edd.sh -rwxr-xr-x. 1 root root 817 Aug 8 2019 fcoe-genrules.sh -rwxr-xr-x. 1 root root 2356 Aug 8 2019 fcoe-up.sh -rw-r--r--. 1 root root 363 Aug 8 2019 lldpad.sh -rwxr-xr-x. 1 root root 3006 Aug 8 2019 module-setup.sh -rwxr-xr-x. 1 root root 1799 Aug 8 2019 parse-fcoe.sh /usr/lib/dracut/modules.d/95fcoe-uefi: total 12 drwxr-xr-x. 2 root root 54 Oct 16 09:22 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 733 Aug 8 2019 module-setup.sh -rwxr-xr-x. 1 root root 1032 Aug 8 2019 parse-uefifcoe.sh /usr/lib/dracut/modules.d/95fstab-sys: total 12 drwxr-xr-x. 2 root root 49 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 358 Sep 12 2013 module-setup.sh -rwxr-xr-x. 1 root root 1377 Aug 8 2019 mount-sys.sh /usr/lib/dracut/modules.d/95iscsi: total 40 drwxr-xr-x. 2 root root 119 Oct 16 09:22 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 198 Aug 8 2019 cleanup-iscsi.sh -rwxr-xr-x. 1 root root 10057 Aug 8 2019 iscsiroot.sh -rwxr-xr-x. 1 root root 5614 Aug 8 2019 module-setup.sh -rwxr-xr-x. 1 root root 442 Sep 12 2013 mount-lun.sh -rwxr-xr-x. 1 root root 5318 Aug 8 2019 parse-iscsiroot.sh /usr/lib/dracut/modules.d/95nbd: total 16 drwxr-xr-x. 2 root root 71 Oct 16 09:22 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 896 Aug 8 2019 module-setup.sh -rwxr-xr-x. 1 root root 3114 Aug 8 2019 nbdroot.sh -rwxr-xr-x. 1 root root 1688 Aug 8 2019 parse-nbdroot.sh /usr/lib/dracut/modules.d/95nfs: total 32 drwxr-xr-x. 2 root root 139 Oct 16 09:22 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 2624 Aug 8 2019 module-setup.sh -rwxr-xr-x. 1 root root 4757 Aug 8 2019 nfs-lib.sh -rwxr-xr-x. 1 root root 955 Sep 12 2013 nfsroot-cleanup.sh -rwxr-xr-x. 1 root root 825 Aug 8 2019 nfsroot.sh -rwxr-xr-x. 1 root root 929 Sep 12 2013 nfs-start-rpc.sh -rwxr-xr-x. 1 root root 3358 Aug 8 2019 parse-nfsroot.sh /usr/lib/dracut/modules.d/95resume: total 16 drwxr-xr-x. 2 root root 69 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 993 Aug 8 2019 module-setup.sh -rwxr-xr-x. 1 root root 3302 Sep 12 2013 parse-resume.sh -rwxr-xr-x. 1 root root 670 Sep 12 2013 resume.sh /usr/lib/dracut/modules.d/95rootfs-block: total 28 drwxr-xr-x. 2 root root 120 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 579 Sep 12 2013 block-genrules.sh -rwxr-xr-x. 1 root root 1719 Aug 8 2019 module-setup.sh -rwxr-xr-x. 1 root root 4514 Sep 12 2013 mount-root.sh -rwxr-xr-x. 1 root root 1034 Sep 12 2013 parse-block.sh -rwxr-xr-x. 1 root root 1352 Aug 8 2019 rootfallback.sh /usr/lib/dracut/modules.d/95ssh-client: total 8 drwxr-xr-x. 2 root root 29 Oct 16 09:22 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 1830 Aug 8 2019 module-setup.sh /usr/lib/dracut/modules.d/95terminfo: total 8 drwxr-xr-x. 2 root root 29 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 643 Sep 12 2013 module-setup.sh /usr/lib/dracut/modules.d/95udev-rules: total 20 drwxr-xr-x. 2 root root 122 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rw-r--r--. 1 root root 276 Sep 12 2013 59-persistent-storage.rules -rw-r--r--. 1 root root 1020 Sep 12 2013 61-persistent-storage.rules -rwxr-xr-x. 1 root root 188 Sep 12 2013 load-modules.sh -rwxr-xr-x. 1 root root 3074 Aug 8 2019 module-setup.sh /usr/lib/dracut/modules.d/95virtfs: total 20 drwxr-xr-x. 2 root root 102 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 1181 Aug 8 2019 module-setup.sh -rwxr-xr-x. 1 root root 1956 Sep 12 2013 mount-virtfs.sh -rwxr-xr-x. 1 root root 229 Aug 8 2019 parse-virtfs.sh -rwxr-xr-x. 1 root root 922 Aug 8 2019 virtfs-generator.sh /usr/lib/dracut/modules.d/95zfcp: total 12 drwxr-xr-x. 2 root root 50 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 681 Aug 8 2019 module-setup.sh -rwxr-xr-x. 1 root root 349 Sep 12 2013 parse-zfcp.sh /usr/lib/dracut/modules.d/95znet: total 12 drwxr-xr-x. 2 root root 49 Oct 16 09:22 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 555 Aug 8 2019 module-setup.sh -rwxr-xr-x. 1 root root 259 Sep 12 2013 parse-ccw.sh /usr/lib/dracut/modules.d/97biosdevname: total 12 drwxr-xr-x. 2 root root 57 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 340 Aug 8 2019 module-setup.sh -rwxr-xr-x. 1 root root 418 Sep 12 2013 parse-biosdevname.sh /usr/lib/dracut/modules.d/98ecryptfs: total 16 drwxr-xr-x. 2 root root 68 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 2852 Sep 12 2013 ecryptfs-mount.sh -rwxr-xr-x. 1 root root 310 Sep 12 2013 module-setup.sh -rw-r--r--. 1 root root 2343 Sep 12 2013 README /usr/lib/dracut/modules.d/98pollcdrom: total 12 drwxr-xr-x. 2 root root 49 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 252 Sep 12 2013 module-setup.sh -rwxr-xr-x. 1 root root 745 Aug 8 2019 pollcdrom.sh /usr/lib/dracut/modules.d/98selinux: total 12 drwxr-xr-x. 2 root root 58 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 282 Sep 12 2013 module-setup.sh -rwxr-xr-x. 1 root root 2336 Sep 12 2013 selinux-loadpolicy.sh /usr/lib/dracut/modules.d/98syslog: total 36 drwxr-xr-x. 2 root root 191 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 1238 Sep 12 2013 module-setup.sh -rwxr-xr-x. 1 root root 755 Sep 12 2013 parse-syslog-opts.sh -rw-r--r--. 1 root root 832 Sep 12 2013 README -rw-r--r--. 1 root root 820 Sep 12 2013 rsyslog.conf -rwxr-xr-x. 1 root root 856 Sep 12 2013 rsyslogd-start.sh -rwxr-xr-x. 1 root root 342 Sep 12 2013 rsyslogd-stop.sh -rwxr-xr-x. 1 root root 517 Sep 12 2013 syslog-cleanup.sh -rwxr-xr-x. 1 root root 1144 Sep 12 2013 syslog-genrules.sh /usr/lib/dracut/modules.d/98systemd: total 180 drwxr-xr-x. 2 root root 4096 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rw-r--r--. 1 root root 978 Aug 8 2019 dracut-cmdline-ask.service -rwxr-xr-x. 1 root root 422 Aug 8 2019 dracut-cmdline-ask.sh -rw-r--r--. 1 root root 1160 Aug 8 2019 dracut-cmdline.service -rw-r--r--. 1 root root 1553 Sep 12 2013 dracut-cmdline.service.8 -rw-r--r--. 1 root root 442 Sep 12 2013 dracut-cmdline.service.8.asc -rwxr-xr-x. 1 root root 2714 Aug 8 2019 dracut-cmdline.sh -rw-r--r--. 1 root root 974 Aug 8 2019 dracut-emergency.service -rwxr-xr-x. 1 root root 1342 Aug 8 2019 dracut-emergency.sh -rw-r--r--. 1 root root 1399 Aug 8 2019 dracut-initqueue.service -rw-r--r--. 1 root root 1548 Sep 12 2013 dracut-initqueue.service.8 -rw-r--r--. 1 root root 439 Sep 12 2013 dracut-initqueue.service.8.asc -rwxr-xr-x. 1 root root 2223 Aug 8 2019 dracut-initqueue.sh -rw-r--r--. 1 root root 1026 Aug 8 2019 dracut-mount.service -rw-r--r--. 1 root root 1529 Sep 12 2013 dracut-mount.service.8 -rw-r--r--. 1 root root 416 Sep 12 2013 dracut-mount.service.8.asc -rwxr-xr-x. 1 root root 1170 Sep 12 2013 dracut-mount.sh -rw-r--r--. 1 root root 1058 Aug 8 2019 dracut-pre-mount.service -rw-r--r--. 1 root root 1544 Sep 12 2013 dracut-pre-mount.service.8 -rw-r--r--. 1 root root 434 Sep 12 2013 dracut-pre-mount.service.8.asc -rwxr-xr-x. 1 root root 622 Aug 8 2019 dracut-pre-mount.sh -rw-r--r--. 1 root root 1058 Aug 8 2019 dracut-pre-pivot.service -rw-r--r--. 1 root root 1539 Sep 12 2013 dracut-pre-pivot.service.8 -rw-r--r--. 1 root root 429 Sep 12 2013 dracut-pre-pivot.service.8.asc -rwxr-xr-x. 1 root root 1175 Aug 8 2019 dracut-pre-pivot.sh -rw-r--r--. 1 root root 1170 Aug 8 2019 dracut-pre-trigger.service -rw-r--r--. 1 root root 1548 Sep 12 2013 dracut-pre-trigger.service.8 -rw-r--r--. 1 root root 440 Sep 12 2013 dracut-pre-trigger.service.8.asc -rwxr-xr-x. 1 root root 588 Aug 8 2019 dracut-pre-trigger.sh -rw-r--r--. 1 root root 1202 Aug 8 2019 dracut-pre-udev.service -rw-r--r--. 1 root root 1535 Sep 12 2013 dracut-pre-udev.service.8 -rw-r--r--. 1 root root 424 Sep 12 2013 dracut-pre-udev.service.8.asc -rwxr-xr-x. 1 root root 1523 Sep 12 2013 dracut-pre-udev.sh -rw-r--r--. 1 root root 677 Aug 8 2019 dracut-shutdown.service -rw-r--r--. 1 root root 3607 Sep 12 2013 dracut-shutdown.service.8 -rw-r--r--. 1 root root 1689 Sep 12 2013 dracut-shutdown.service.8.asc -rw-r--r--. 1 root root 135 Aug 8 2019 dracut-tmpfiles.conf -rw-r--r--. 1 root root 980 Aug 8 2019 emergency.service -rw-r--r--. 1 root root 247 Sep 12 2013 initrd.target -rwxr-xr-x. 1 root root 10225 Aug 8 2019 module-setup.sh -rw-r--r--. 1 root root 877 Sep 12 2013 rescue.service -rwxr-xr-x. 1 root root 3746 Aug 8 2019 rootfs-generator.sh /usr/lib/dracut/modules.d/98usrmount: total 12 drwxr-xr-x. 2 root root 49 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 452 Aug 8 2019 module-setup.sh -rwxr-xr-x. 1 root root 3696 Aug 8 2019 mount-usr.sh /usr/lib/dracut/modules.d/99base: total 80 drwxr-xr-x. 2 root root 173 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 32861 Aug 8 2019 dracut-lib.sh -rwxr-xr-x. 1 root root 1208 Aug 8 2019 initqueue.sh -rwxr-xr-x. 1 root root 11467 Aug 8 2019 init.sh -rwxr-xr-x. 1 root root 584 Sep 12 2013 loginit.sh -rwxr-xr-x. 1 root root 6052 Aug 8 2019 memtrace-ko.sh -rwxr-xr-x. 1 root root 3862 Aug 8 2019 module-setup.sh -rwxr-xr-x. 1 root root 356 Sep 12 2013 parse-root-opts.sh -rwxr-xr-x. 1 root root 942 Aug 8 2019 rdsosreport.sh /usr/lib/dracut/modules.d/99fs-lib: total 16 drwxr-xr-x. 2 root root 46 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 6347 Sep 12 2013 fs-lib.sh -rwxr-xr-x. 1 root root 1674 Aug 8 2019 module-setup.sh /usr/lib/dracut/modules.d/99img-lib: total 12 drwxr-xr-x. 2 root root 47 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 2182 Sep 12 2013 img-lib.sh -rwxr-xr-x. 1 root root 354 Aug 8 2019 module-setup.sh /usr/lib/dracut/modules.d/99kdumpbase: total 64 drwxr-xr-x. 2 root root 227 Oct 16 09:22 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rw-r--r--. 1 root root 941 Aug 8 2019 kdump-capture.service -rw-r--r--. 1 root root 905 Aug 8 2019 kdump-emergency.service -rw-r--r--. 1 root root 451 Aug 8 2019 kdump-emergency.target -rw-r--r--. 1 root root 993 Aug 8 2019 kdump-error-handler.service -rwxr-xr-x. 1 root root 145 Aug 8 2019 kdump-error-handler.sh -rwxr-xr-x. 1 root root 4764 Aug 8 2019 kdump.sh -rwxr-xr-x. 1 root root 25161 Aug 8 2019 module-setup.sh -rw-r--r--. 1 root root 482 Aug 8 2019 monitor_dd_progress /usr/lib/dracut/modules.d/99microcode_ctl-fw_dir_override: total 12 drwxr-xr-x. 2 root root 29 Oct 16 09:22 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 4218 Aug 8 2019 module-setup.sh /usr/lib/dracut/modules.d/99shutdown: total 12 drwxr-xr-x. 2 root root 48 Oct 16 09:21 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 632 Aug 8 2019 module-setup.sh -rwxr-xr-x. 1 root root 3117 Aug 8 2019 shutdown.sh /usr/lib/dracut/modules.d/99uefi-lib: total 16 drwxr-xr-x. 2 root root 48 Oct 16 09:22 . drwxr-xr-x. 65 root root 4096 Aug 8 2019 .. -rwxr-xr-x. 1 root root 239 Aug 8 2019 module-setup.sh -rwxr-xr-x. 1 root root 4851 Aug 8 2019 uefi-lib.sh /usr/lib/firewalld: total 20 drwxr-xr-x. 7 root root 81 Oct 16 09:23 . dr-xr-xr-x. 29 root root 4096 Nov 16 14:29 .. drwxr-xr-x. 2 root root 224 Oct 16 09:22 helpers drwxr-xr-x. 2 root root 4096 Oct 16 09:22 icmptypes drwxr-xr-x. 2 root root 20 Oct 16 09:22 ipsets drwxr-xr-x. 2 root root 8192 Oct 16 09:22 services drwxr-xr-x. 2 root root 163 Oct 16 09:22 zones /usr/lib/firewalld/helpers: total 52 drwxr-xr-x. 2 root root 224 Oct 16 09:22 . drwxr-xr-x. 7 root root 81 Oct 16 09:23 .. -rw-r--r--. 1 root root 125 Sep 13 11:02 amanda.xml -rw-r--r--. 1 root root 119 Sep 13 11:02 ftp.xml -rw-r--r--. 1 root root 85 Sep 13 11:02 h323.xml -rw-r--r--. 1 root root 134 Sep 13 11:02 irc.xml -rw-r--r--. 1 root root 141 Sep 13 11:02 netbios-ns.xml -rw-r--r--. 1 root root 136 Sep 13 11:02 pptp.xml -rw-r--r--. 1 root root 90 Sep 13 11:02 proto-gre.xml -rw-r--r--. 1 root root 122 Sep 13 11:02 Q.931.xml -rw-r--r--. 1 root root 122 Sep 13 11:02 RAS.xml -rw-r--r--. 1 root root 122 Sep 13 11:02 sane.xml -rw-r--r--. 1 root root 158 Sep 13 11:02 sip.xml -rw-r--r--. 1 root root 135 Sep 13 11:02 snmp.xml -rw-r--r--. 1 root root 120 Sep 13 11:02 tftp.xml /usr/lib/firewalld/icmptypes: total 184 drwxr-xr-x. 2 root root 4096 Oct 16 09:22 . drwxr-xr-x. 7 root root 81 Oct 16 09:23 .. -rw-r--r--. 1 root root 385 Sep 13 11:02 address-unreachable.xml -rw-r--r--. 1 root root 258 Sep 13 11:02 bad-header.xml -rw-r--r--. 1 root root 294 Sep 13 11:02 beyond-scope.xml -rw-r--r--. 1 root root 279 Sep 13 11:02 communication-prohibited.xml -rw-r--r--. 1 root root 222 Sep 13 11:02 destination-unreachable.xml -rw-r--r--. 1 root root 173 Sep 13 11:02 echo-reply.xml -rw-r--r--. 1 root root 210 Sep 13 11:02 echo-request.xml -rw-r--r--. 1 root root 261 Sep 13 11:02 failed-policy.xml -rw-r--r--. 1 root root 280 Sep 13 11:02 fragmentation-needed.xml -rw-r--r--. 1 root root 266 Sep 13 11:02 host-precedence-violation.xml -rw-r--r--. 1 root root 257 Sep 13 11:02 host-prohibited.xml -rw-r--r--. 1 root root 242 Sep 13 11:02 host-redirect.xml -rw-r--r--. 1 root root 239 Sep 13 11:02 host-unknown.xml -rw-r--r--. 1 root root 247 Sep 13 11:02 host-unreachable.xml -rw-r--r--. 1 root root 229 Sep 13 11:02 ip-header-bad.xml -rw-r--r--. 1 root root 355 Sep 13 11:02 neighbour-advertisement.xml -rw-r--r--. 1 root root 457 Sep 13 11:02 neighbour-solicitation.xml -rw-r--r--. 1 root root 250 Sep 13 11:02 network-prohibited.xml -rw-r--r--. 1 root root 248 Sep 13 11:02 network-redirect.xml -rw-r--r--. 1 root root 239 Sep 13 11:02 network-unknown.xml -rw-r--r--. 1 root root 247 Sep 13 11:02 network-unreachable.xml -rw-r--r--. 1 root root 239 Sep 13 11:02 no-route.xml -rw-r--r--. 1 root root 328 Sep 13 11:02 packet-too-big.xml -rw-r--r--. 1 root root 225 Sep 13 11:02 parameter-problem.xml -rw-r--r--. 1 root root 233 Sep 13 11:02 port-unreachable.xml -rw-r--r--. 1 root root 256 Sep 13 11:02 precedence-cutoff.xml -rw-r--r--. 1 root root 249 Sep 13 11:02 protocol-unreachable.xml -rw-r--r--. 1 root root 185 Sep 13 11:02 redirect.xml -rw-r--r--. 1 root root 244 Sep 13 11:02 reject-route.xml -rw-r--r--. 1 root root 241 Sep 13 11:02 required-option-missing.xml -rw-r--r--. 1 root root 227 Sep 13 11:02 router-advertisement.xml -rw-r--r--. 1 root root 223 Sep 13 11:02 router-solicitation.xml -rw-r--r--. 1 root root 248 Sep 13 11:02 source-quench.xml -rw-r--r--. 1 root root 236 Sep 13 11:02 source-route-failed.xml -rw-r--r--. 1 root root 253 Sep 13 11:02 time-exceeded.xml -rw-r--r--. 1 root root 233 Sep 13 11:02 timestamp-reply.xml -rw-r--r--. 1 root root 228 Sep 13 11:02 timestamp-request.xml -rw-r--r--. 1 root root 258 Sep 13 11:02 tos-host-redirect.xml -rw-r--r--. 1 root root 257 Sep 13 11:02 tos-host-unreachable.xml -rw-r--r--. 1 root root 272 Sep 13 11:02 tos-network-redirect.xml -rw-r--r--. 1 root root 269 Sep 13 11:02 tos-network-unreachable.xml -rw-r--r--. 1 root root 293 Sep 13 11:02 ttl-zero-during-reassembly.xml -rw-r--r--. 1 root root 256 Sep 13 11:02 ttl-zero-during-transit.xml -rw-r--r--. 1 root root 259 Sep 13 11:02 unknown-header-type.xml -rw-r--r--. 1 root root 249 Sep 13 11:02 unknown-option.xml /usr/lib/firewalld/ipsets: total 4 drwxr-xr-x. 2 root root 20 Oct 16 09:22 . drwxr-xr-x. 7 root root 81 Oct 16 09:23 .. -rw-r--r--. 1 root root 29 Sep 13 11:02 README /usr/lib/firewalld/services: total 624 drwxr-xr-x. 2 root root 8192 Oct 16 09:22 . drwxr-xr-x. 7 root root 81 Oct 16 09:23 .. -rw-r--r--. 1 root root 412 Sep 13 11:02 amanda-client.xml -rw-r--r--. 1 root root 447 Sep 13 11:02 amanda-k5-client.xml -rw-r--r--. 1 root root 283 Sep 13 11:02 amqps.xml -rw-r--r--. 1 root root 273 Sep 13 11:02 amqp.xml -rw-r--r--. 1 root root 285 Sep 13 11:02 apcupsd.xml -rw-r--r--. 1 root root 301 Sep 13 11:02 audit.xml -rw-r--r--. 1 root root 320 Sep 13 11:02 bacula-client.xml -rw-r--r--. 1 root root 346 Sep 13 11:02 bacula.xml -rw-r--r--. 1 root root 339 Sep 13 11:02 bgp.xml -rw-r--r--. 1 root root 275 Sep 13 11:02 bitcoin-rpc.xml -rw-r--r--. 1 root root 307 Sep 13 11:02 bitcoin-testnet-rpc.xml -rw-r--r--. 1 root root 281 Sep 13 11:02 bitcoin-testnet.xml -rw-r--r--. 1 root root 244 Sep 13 11:02 bitcoin.xml -rw-r--r--. 1 root root 294 Sep 13 11:02 ceph-mon.xml -rw-r--r--. 1 root root 329 Sep 13 11:02 ceph.xml -rw-r--r--. 1 root root 168 Sep 13 11:02 cfengine.xml -rw-r--r--. 1 root root 260 Sep 13 11:02 condor-collector.xml -rw-r--r--. 1 root root 296 Sep 13 11:02 ctdb.xml -rw-r--r--. 1 root root 305 Sep 13 11:02 dhcpv6-client.xml -rw-r--r--. 1 root root 234 Sep 13 11:02 dhcpv6.xml -rw-r--r--. 1 root root 227 Sep 13 11:02 dhcp.xml -rw-r--r--. 1 root root 205 Sep 13 11:02 distcc.xml -rw-r--r--. 1 root root 346 Sep 13 11:02 dns.xml -rw-r--r--. 1 root root 374 Sep 13 11:02 docker-registry.xml -rw-r--r--. 1 root root 391 Sep 13 11:02 docker-swarm.xml -rw-r--r--. 1 root root 228 Sep 13 11:02 dropbox-lansync.xml -rw-r--r--. 1 root root 338 Sep 13 11:02 elasticsearch.xml -rw-r--r--. 1 root root 304 Sep 13 11:02 etcd-client.xml -rw-r--r--. 1 root root 304 Sep 13 11:02 etcd-server.xml -rw-r--r--. 1 root root 224 Sep 13 11:02 finger.xml -rw-r--r--. 1 root root 836 Sep 13 11:02 freeipa-ldaps.xml -rw-r--r--. 1 root root 836 Sep 13 11:02 freeipa-ldap.xml -rw-r--r--. 1 root root 315 Sep 13 11:02 freeipa-replication.xml -rw-r--r--. 1 root root 629 Sep 13 11:02 freeipa-trust.xml -rw-r--r--. 1 root root 374 Sep 13 11:02 ftp.xml -rw-r--r--. 1 root root 184 Sep 13 11:02 ganglia-client.xml -rw-r--r--. 1 root root 176 Sep 13 11:02 ganglia-master.xml -rw-r--r--. 1 root root 212 Sep 13 11:02 git.xml -rw-r--r--. 1 root root 132 Sep 13 11:02 gre.xml -rw-r--r--. 1 root root 608 Sep 13 11:02 high-availability.xml -rw-r--r--. 1 root root 448 Sep 13 11:02 https.xml -rw-r--r--. 1 root root 353 Sep 13 11:02 http.xml -rw-r--r--. 1 root root 372 Sep 13 11:02 imaps.xml -rw-r--r--. 1 root root 327 Sep 13 11:02 imap.xml -rw-r--r--. 1 root root 454 Sep 13 11:02 ipp-client.xml -rw-r--r--. 1 root root 427 Sep 13 11:02 ipp.xml -rw-r--r--. 1 root root 554 Sep 13 11:02 ipsec.xml -rw-r--r--. 1 root root 255 Sep 13 11:02 ircs.xml -rw-r--r--. 1 root root 247 Sep 13 11:02 irc.xml -rw-r--r--. 1 root root 264 Sep 13 11:02 iscsi-target.xml -rw-r--r--. 1 root root 358 Sep 13 11:02 isns.xml -rw-r--r--. 1 root root 213 Sep 13 11:02 jenkins.xml -rw-r--r--. 1 root root 182 Sep 13 11:02 kadmin.xml -rw-r--r--. 1 root root 233 Sep 13 11:02 kerberos.xml -rw-r--r--. 1 root root 384 Sep 13 11:02 kibana.xml -rw-r--r--. 1 root root 249 Sep 13 11:02 klogin.xml -rw-r--r--. 1 root root 221 Sep 13 11:02 kpasswd.xml -rw-r--r--. 1 root root 182 Sep 13 11:02 kprop.xml -rw-r--r--. 1 root root 242 Sep 13 11:02 kshell.xml -rw-r--r--. 1 root root 232 Sep 13 11:02 ldaps.xml -rw-r--r--. 1 root root 199 Sep 13 11:02 ldap.xml -rw-r--r--. 1 root root 385 Sep 13 11:02 libvirt-tls.xml -rw-r--r--. 1 root root 389 Sep 13 11:02 libvirt.xml -rw-r--r--. 1 root root 269 Sep 13 11:02 lightning-network.xml -rw-r--r--. 1 root root 324 Sep 13 11:02 llmnr.xml -rw-r--r--. 1 root root 349 Sep 13 11:02 managesieve.xml -rw-r--r--. 1 root root 439 Sep 13 11:02 matrix.xml -rw-r--r--. 1 root root 424 Sep 13 11:02 mdns.xml -rw-r--r--. 1 root root 343 Sep 13 11:02 minidlna.xml -rw-r--r--. 1 root root 237 Sep 13 11:02 mongodb.xml -rw-r--r--. 1 root root 473 Sep 13 11:02 mosh.xml -rw-r--r--. 1 root root 211 Sep 13 11:02 mountd.xml -rw-r--r--. 1 root root 296 Sep 13 11:02 mqtt-tls.xml -rw-r--r--. 1 root root 287 Sep 13 11:02 mqtt.xml -rw-r--r--. 1 root root 170 Sep 13 11:02 mssql.xml -rw-r--r--. 1 root root 190 Sep 13 11:02 ms-wbt.xml -rw-r--r--. 1 root root 242 Sep 13 11:02 murmur.xml -rw-r--r--. 1 root root 171 Sep 13 11:02 mysql.xml -rw-r--r--. 1 root root 342 Sep 13 11:02 nfs3.xml -rw-r--r--. 1 root root 324 Sep 13 11:02 nfs.xml -rw-r--r--. 1 root root 293 Sep 13 11:02 nmea-0183.xml -rw-r--r--. 1 root root 247 Sep 13 11:02 nrpe.xml -rw-r--r--. 1 root root 389 Sep 13 11:02 ntp.xml -rw-r--r--. 1 root root 368 Sep 13 11:02 nut.xml -rw-r--r--. 1 root root 335 Sep 13 11:02 openvpn.xml -rw-r--r--. 1 root root 260 Sep 13 11:02 ovirt-imageio.xml -rw-r--r--. 1 root root 343 Sep 13 11:02 ovirt-storageconsole.xml -rw-r--r--. 1 root root 235 Sep 13 11:02 ovirt-vmconsole.xml -rw-r--r--. 1 root root 487 Sep 13 11:02 plex.xml -rw-r--r--. 1 root root 433 Sep 13 11:02 pmcd.xml -rw-r--r--. 1 root root 474 Sep 13 11:02 pmproxy.xml -rw-r--r--. 1 root root 544 Sep 13 11:02 pmwebapis.xml -rw-r--r--. 1 root root 460 Sep 13 11:02 pmwebapi.xml -rw-r--r--. 1 root root 357 Sep 13 11:02 pop3s.xml -rw-r--r--. 1 root root 348 Sep 13 11:02 pop3.xml -rw-r--r--. 1 root root 181 Sep 13 11:02 postgresql.xml -rw-r--r--. 1 root root 509 Sep 13 11:02 privoxy.xml -rw-r--r--. 1 root root 261 Sep 13 11:02 proxy-dhcp.xml -rw-r--r--. 1 root root 424 Sep 13 11:02 ptp.xml -rw-r--r--. 1 root root 414 Sep 13 11:02 pulseaudio.xml -rw-r--r--. 1 root root 297 Sep 13 11:02 puppetmaster.xml -rw-r--r--. 1 root root 273 Sep 13 11:02 quassel.xml -rw-r--r--. 1 root root 520 Sep 13 11:02 radius.xml -rw-r--r--. 1 root root 268 Sep 13 11:02 redis.xml -rw-r--r--. 1 root root 741 Sep 13 11:02 RH-Satellite-6.xml -rw-r--r--. 1 root root 214 Sep 13 11:02 rpc-bind.xml -rw-r--r--. 1 root root 310 Sep 13 11:02 rsh.xml -rw-r--r--. 1 root root 311 Sep 13 11:02 rsyncd.xml -rw-r--r--. 1 root root 350 Sep 13 11:02 rtsp.xml -rw-r--r--. 1 root root 329 Sep 13 11:02 salt-master.xml -rw-r--r--. 1 root root 384 Sep 13 11:02 samba-client.xml -rw-r--r--. 1 root root 1311 Sep 13 11:02 samba-dc.xml -rw-r--r--. 1 root root 461 Sep 13 11:02 samba.xml -rw-r--r--. 1 root root 337 Sep 13 11:02 sane.xml -rw-r--r--. 1 root root 283 Sep 13 11:02 sips.xml -rw-r--r--. 1 root root 509 Sep 13 11:02 sip.xml -rw-r--r--. 1 root root 299 Sep 13 11:02 slp.xml -rw-r--r--. 1 root root 231 Sep 13 11:02 smtp-submission.xml -rw-r--r--. 1 root root 577 Sep 13 11:02 smtps.xml -rw-r--r--. 1 root root 550 Sep 13 11:02 smtp.xml -rw-r--r--. 1 root root 308 Sep 13 11:02 snmptrap.xml -rw-r--r--. 1 root root 342 Sep 13 11:02 snmp.xml -rw-r--r--. 1 root root 405 Sep 13 11:02 spideroak-lansync.xml -rw-r--r--. 1 root root 173 Sep 13 11:02 squid.xml -rw-r--r--. 1 root root 463 Sep 13 11:02 ssh.xml -rw-r--r--. 1 root root 631 Sep 13 11:02 steam-streaming.xml -rw-r--r--. 1 root root 287 Sep 13 11:02 svdrp.xml -rw-r--r--. 1 root root 231 Sep 13 11:02 svn.xml -rw-r--r--. 1 root root 297 Sep 13 11:02 syncthing-gui.xml -rw-r--r--. 1 root root 311 Sep 13 11:02 syncthing.xml -rw-r--r--. 1 root root 496 Sep 13 11:02 synergy.xml -rw-r--r--. 1 root root 444 Sep 13 11:02 syslog-tls.xml -rw-r--r--. 1 root root 329 Sep 13 11:02 syslog.xml -rw-r--r--. 1 root root 393 Sep 13 11:02 telnet.xml -rw-r--r--. 1 root root 301 Sep 13 11:02 tftp-client.xml -rw-r--r--. 1 root root 437 Sep 13 11:02 tftp.xml -rw-r--r--. 1 root root 336 Sep 13 11:02 tinc.xml -rw-r--r--. 1 root root 771 Sep 13 11:02 tor-socks.xml -rw-r--r--. 1 root root 244 Sep 13 11:02 transmission-client.xml -rw-r--r--. 1 root root 264 Sep 13 11:02 upnp-client.xml -rw-r--r--. 1 root root 593 Sep 13 11:02 vdsm.xml -rw-r--r--. 1 root root 475 Sep 13 11:02 vnc-server.xml -rw-r--r--. 1 root root 310 Sep 13 11:02 wbem-https.xml -rw-r--r--. 1 root root 352 Sep 13 11:02 wbem-http.xml -rw-r--r--. 1 root root 323 Sep 13 11:02 wsmans.xml -rw-r--r--. 1 root root 316 Sep 13 11:02 wsman.xml -rw-r--r--. 1 root root 329 Sep 13 11:02 xdmcp.xml -rw-r--r--. 1 root root 509 Sep 13 11:02 xmpp-bosh.xml -rw-r--r--. 1 root root 488 Sep 13 11:02 xmpp-client.xml -rw-r--r--. 1 root root 264 Sep 13 11:02 xmpp-local.xml -rw-r--r--. 1 root root 545 Sep 13 11:02 xmpp-server.xml -rw-r--r--. 1 root root 314 Sep 13 11:02 zabbix-agent.xml -rw-r--r--. 1 root root 315 Sep 13 11:02 zabbix-server.xml /usr/lib/firewalld/zones: total 36 drwxr-xr-x. 2 root root 163 Oct 16 09:22 . drwxr-xr-x. 7 root root 81 Oct 16 09:23 .. -rw-r--r--. 1 root root 299 Sep 13 11:02 block.xml -rw-r--r--. 1 root root 293 Sep 13 11:02 dmz.xml -rw-r--r--. 1 root root 291 Sep 13 11:02 drop.xml -rw-r--r--. 1 root root 304 Sep 13 11:02 external.xml -rw-r--r--. 1 root root 369 Sep 13 11:02 home.xml -rw-r--r--. 1 root root 384 Sep 13 11:02 internal.xml -rw-r--r--. 1 root root 315 Sep 13 11:02 public.xml -rw-r--r--. 1 root root 162 Sep 13 11:02 trusted.xml -rw-r--r--. 1 root root 311 Sep 13 11:02 work.xml /usr/lib/firmware: total 121604 drwxr-xr-x. 91 root root 12288 Oct 16 09:23 . dr-xr-xr-x. 29 root root 4096 Nov 16 14:29 .. drwxr-xr-x. 3 root root 45 Oct 16 09:22 3.10.0-1062.1.2.el7.x86_64 drwxr-xr-x. 3 root root 45 Oct 16 09:22 3.10.0-957.27.2.el7.x86_64 drwxr-xr-x. 3 root root 45 Oct 16 09:22 3.10.0-957.el7.x86_64 drwxr-xr-x. 2 root root 42 Oct 16 09:22 3com lrwxrwxrwx. 1 root root 16 Oct 16 09:22 a300_pfp.fw -> qcom/a300_pfp.fw lrwxrwxrwx. 1 root root 16 Oct 16 09:22 a300_pm4.fw -> qcom/a300_pm4.fw drwxr-xr-x. 2 root root 36 Oct 16 09:22 acenic drwxr-xr-x. 2 root root 52 Oct 16 09:22 adaptec drwxr-xr-x. 2 root root 77 Oct 16 09:22 advansys -rw-r--r--. 1 root root 50698 Aug 8 2019 agere_ap_fw.bin -rw-r--r--. 1 root root 65046 Aug 8 2019 agere_sta_fw.bin -rw-r--r--. 1 root root 22622 Jun 9 2014 aic94xx-seq.fw -rw-r--r--. 1 root root 3408 Mar 5 2015 aica_firmware.bin drwxr-xr-x. 2 root root 42 Oct 16 09:22 amd drwxr-xr-x. 2 root root 12288 Oct 16 09:22 amdgpu drwxr-xr-x. 2 root root 264 Oct 16 09:22 amd-ucode drwxr-xr-x. 8 root root 4096 Oct 16 09:22 ar3k -rw-r--r--. 1 root root 153416 Aug 8 2019 ar5523.bin -rw-r--r--. 1 root root 70624 Aug 8 2019 ar7010_1_1.fw -rw-r--r--. 1 root root 70624 Aug 8 2019 ar7010.fw -rw-r--r--. 1 root root 83968 Aug 8 2019 ar9170-1.fw -rw-r--r--. 1 root root 3508 Aug 8 2019 ar9170-2.fw -rw-r--r--. 1 root root 51312 Aug 8 2019 ar9271.fw -rw-r--r--. 1 root root 95500 Aug 8 2019 as102_data1_st.hex -rw-r--r--. 1 root root 81820 Aug 8 2019 as102_data2_st.hex drwxr-xr-x. 2 root root 158 Aug 15 2019 asihpi drwxr-xr-x. 10 root root 126 Aug 8 2019 ath10k -rw-r--r--. 1 root root 246804 Aug 8 2019 ath3k-1.fw drwxr-xr-x. 2 root root 56 Oct 16 09:22 ath9k_htc drwxr-xr-x. 2 root root 116 Oct 16 09:22 atmel -rw-r--r--. 1 root root 9726 Aug 8 2019 atmsar11.fw drwxr-xr-x. 2 root root 86 Oct 16 09:22 atusb drwxr-xr-x. 2 root root 56 Oct 16 09:22 av7110 drwxr-xr-x. 2 root root 4096 Oct 16 09:22 bnx2 drwxr-xr-x. 2 root root 4096 Oct 16 09:22 bnx2x -rw-r--r--. 1 root root 165768 Aug 8 2019 bnx2x-e1-4.8.53.0.fw -rw-r--r--. 1 root root 163000 Aug 8 2019 bnx2x-e1-5.2.13.0.fw -rw-r--r--. 1 root root 162800 Aug 8 2019 bnx2x-e1-5.2.7.0.fw -rw-r--r--. 1 root root 192400 Aug 8 2019 bnx2x-e1h-4.8.53.0.fw -rw-r--r--. 1 root root 205512 Aug 8 2019 bnx2x-e1h-5.2.13.0.fw -rw-r--r--. 1 root root 205488 Aug 8 2019 bnx2x-e1h-5.2.7.0.fw drwxr-xr-x. 2 root root 4096 Oct 16 09:22 brcm drwxr-xr-x. 2 root root 26 Oct 16 09:22 cadence -rw-r--r--. 1 root root 13388 Aug 8 2019 carl9170-1.fw drwxr-xr-x. 2 root root 27 Oct 16 09:22 cavium -rw-r--r--. 1 root root 412528 Aug 8 2019 cbfw-3.2.1.1.bin -rw-r--r--. 1 root root 414016 Aug 8 2019 cbfw-3.2.3.0.bin -rw-r--r--. 1 root root 414480 Aug 8 2019 cbfw-3.2.5.1.bin drwxr-xr-x. 3 root root 4096 Oct 16 09:22 cis -rw-r--r--. 1 root root 62780 Aug 8 2019 cmmb_vega_12mhz.inp -rw-r--r--. 1 root root 97016 Aug 8 2019 cmmb_venice_12mhz.inp -rw-r--r--. 1 root root 107 Aug 8 2019 configure drwxr-xr-x. 2 root root 29 Oct 16 09:22 cpia2 drwxr-xr-x. 2 root root 96 Aug 15 2019 cs46xx -rw-r--r--. 1 root root 582440 Aug 8 2019 ct2fw-3.2.1.1.bin -rw-r--r--. 1 root root 583688 Aug 8 2019 ct2fw-3.2.3.0.bin -rw-r--r--. 1 root root 584216 Aug 8 2019 ct2fw-3.2.5.1.bin -rw-r--r--. 1 root root 655436 Aug 8 2019 ctefx.bin -rw-r--r--. 1 root root 537160 Aug 8 2019 ctfw-3.2.1.1.bin -rw-r--r--. 1 root root 538712 Aug 8 2019 ctfw-3.2.3.0.bin -rw-r--r--. 1 root root 539144 Aug 8 2019 ctfw-3.2.5.1.bin -rw-r--r--. 1 root root 4120 Aug 8 2019 ctspeq.bin drwxr-xr-x. 2 root root 253 Oct 16 09:22 cxgb3 drwxr-xr-x. 2 root root 271 Oct 16 09:23 cxgb4 drwxr-xr-x. 2 root root 46 Oct 16 09:22 dabusb -rw-r--r--. 1 root root 97652 Mar 5 2015 digiface_firmware.bin -rw-r--r--. 1 root root 97652 Mar 5 2015 digiface_firmware_rev11.bin drwxr-xr-x. 3 root root 16 Oct 16 09:22 dpaa2 drwxr-xr-x. 2 root root 70 Oct 16 09:22 dsp56k -rw-r--r--. 1 root root 18643 Aug 8 2019 dvb-fe-xc4000-1.4.1.fw -rw-r--r--. 1 root root 12401 Aug 8 2019 dvb-fe-xc5000-1.6.114.fw -rw-r--r--. 1 root root 16497 Aug 8 2019 dvb-fe-xc5000c-4.1.30.7.fw -rw-r--r--. 1 root root 101888 Aug 8 2019 dvb_nova_12mhz_b0.inp -rw-r--r--. 1 root root 93516 Aug 8 2019 dvb_nova_12mhz.inp -rw-r--r--. 1 root root 33768 Aug 8 2019 dvb-usb-dib0700-1.20.fw -rw-r--r--. 1 root root 8128 Aug 8 2019 dvb-usb-it9135-01.fw -rw-r--r--. 1 root root 5834 Aug 8 2019 dvb-usb-it9135-02.fw -rw-r--r--. 1 root root 50222 Aug 8 2019 dvb-usb-terratec-h5-drxk.fw drwxr-xr-x. 2 root root 75 Oct 16 09:22 e100 drwxr-xr-x. 2 root root 4096 Aug 15 2019 ea drwxr-xr-x. 2 root root 85 Oct 16 09:22 edgeport drwxr-xr-x. 2 root root 62 Oct 16 09:22 emi26 drwxr-xr-x. 2 root root 74 Oct 16 09:22 emi62 drwxr-xr-x. 2 root root 127 Aug 15 2019 emu drwxr-xr-x. 2 root root 123 Oct 16 09:22 ene-ub6250 drwxr-xr-x. 2 root root 69 Aug 15 2019 ess -rw-r--r--. 1 root root 181312 Aug 8 2019 f2255usb.bin drwxr-xr-x. 2 root root 160 Oct 16 09:22 go7007 -rw-r--r--. 1 root root 18092 Aug 8 2019 GPL-2 -rw-r--r--. 1 root root 35068 Aug 8 2019 GPL-3 -rw-r--r--. 1 root root 32348 Aug 8 2019 hfi1_dc8051.fw -rw-r--r--. 1 root root 16848 Aug 8 2019 hfi1_fabric.fw -rw-r--r--. 1 root root 33296 Aug 8 2019 hfi1_pcie.fw -rw-r--r--. 1 root root 5360 Aug 8 2019 hfi1_sbus.fw -rw-r--r--. 1 root root 72684 Aug 8 2019 htc_7010.fw -rw-r--r--. 1 root root 50980 Aug 8 2019 htc_9271.fw drwxr-xr-x. 2 root root 4096 Oct 16 09:22 i915 drwxr-xr-x. 3 root root 18 Aug 8 2019 imx drwxr-xr-x. 2 root root 8192 Oct 16 09:22 intel -rw-r--r--. 1 root root 34304 Aug 8 2019 intelliport2.bin drwxr-xr-x. 2 root root 119 Oct 16 09:22 isci -rw-r--r--. 1 root root 98384 Aug 8 2019 isdbt_nova_12mhz_b0.inp -rw-r--r--. 1 root root 75876 Aug 8 2019 isdbt_nova_12mhz.inp -rw-r--r--. 1 root root 85840 Aug 8 2019 isdbt_rio.inp -rwxr-xr-x. 1 root root 6639 Feb 18 2007 ivtv-firmware-license-end-user.txt -rwxr-xr-x. 1 root root 8292 Feb 18 2007 ivtv-firmware-license-oemihvisv.txt -rw-r--r--. 1 root root 335056 Aug 8 2019 iwlwifi-1000-3.ucode -rw-r--r--. 1 root root 337520 Aug 8 2019 iwlwifi-1000-5.ucode -rw-r--r--. 1 root root 337572 Aug 8 2019 iwlwifi-100-5.ucode -rw-r--r--. 1 root root 689680 Aug 8 2019 iwlwifi-105-6.ucode -rw-r--r--. 1 root root 701228 Aug 8 2019 iwlwifi-135-6.ucode -rw-r--r--. 1 root root 695876 Aug 8 2019 iwlwifi-2000-6.ucode -rw-r--r--. 1 root root 707392 Aug 8 2019 iwlwifi-2030-6.ucode -rw-r--r--. 1 root root 609892 Aug 8 2019 iwlwifi-3160-10.ucode -rw-r--r--. 1 root root 683996 Aug 8 2019 iwlwifi-3160-12.ucode -rw-r--r--. 1 root root 688616 Aug 8 2019 iwlwifi-3160-13.ucode -rw-r--r--. 1 root root 918212 Aug 8 2019 iwlwifi-3160-16.ucode -rw-r--r--. 1 root root 918268 Aug 8 2019 iwlwifi-3160-17.ucode -rw-r--r--. 1 root root 670484 Aug 8 2019 iwlwifi-3160-7.ucode -rw-r--r--. 1 root root 667284 Aug 8 2019 iwlwifi-3160-8.ucode -rw-r--r--. 1 root root 669872 Aug 8 2019 iwlwifi-3160-9.ucode -rw-r--r--. 1 root root 1384856 Aug 8 2019 iwlwifi-3168-21.ucode -rw-r--r--. 1 root root 1028092 Aug 8 2019 iwlwifi-3168-22.ucode -rw-r--r--. 1 root root 1032436 Aug 8 2019 iwlwifi-3168-27.ucode -rw-r--r--. 1 root root 1036276 Aug 8 2019 iwlwifi-3168-29.ucode -rw-r--r--. 1 root root 150100 Aug 8 2019 iwlwifi-3945-2.ucode -rw-r--r--. 1 root root 187972 Aug 8 2019 iwlwifi-4965-2.ucode -rw-r--r--. 1 root root 345008 Aug 8 2019 iwlwifi-5000-1.ucode -rw-r--r--. 1 root root 353240 Aug 8 2019 iwlwifi-5000-2.ucode -rw-r--r--. 1 root root 340696 Aug 8 2019 iwlwifi-5000-5.ucode -rw-r--r--. 1 root root 337400 Aug 8 2019 iwlwifi-5150-2.ucode -rw-r--r--. 1 root root 454608 Aug 8 2019 iwlwifi-6000-4.ucode -rw-r--r--. 1 root root 444128 Aug 8 2019 iwlwifi-6000g2a-5.ucode -rw-r--r--. 1 root root 677296 Aug 8 2019 iwlwifi-6000g2a-6.ucode -rw-r--r--. 1 root root 460236 Aug 8 2019 iwlwifi-6000g2b-5.ucode -rw-r--r--. 1 root root 679436 Aug 8 2019 iwlwifi-6000g2b-6.ucode -rw-r--r--. 1 root root 463692 Aug 8 2019 iwlwifi-6050-4.ucode -rw-r--r--. 1 root root 469780 Aug 8 2019 iwlwifi-6050-5.ucode -rw-r--r--. 1 root root 672352 Aug 8 2019 iwlwifi-7260-10.ucode -rw-r--r--. 1 root root 782300 Aug 8 2019 iwlwifi-7260-12.ucode -rw-r--r--. 1 root root 786920 Aug 8 2019 iwlwifi-7260-13.ucode -rw-r--r--. 1 root root 1049284 Aug 8 2019 iwlwifi-7260-16.ucode -rw-r--r--. 1 root root 1049340 Aug 8 2019 iwlwifi-7260-17.ucode -rw-r--r--. 1 root root 683236 Aug 8 2019 iwlwifi-7260-7.ucode -rw-r--r--. 1 root root 679780 Aug 8 2019 iwlwifi-7260-8.ucode -rw-r--r--. 1 root root 680508 Aug 8 2019 iwlwifi-7260-9.ucode -rw-r--r--. 1 root root 736844 Aug 8 2019 iwlwifi-7265-10.ucode -rw-r--r--. 1 root root 880604 Aug 8 2019 iwlwifi-7265-12.ucode -rw-r--r--. 1 root root 885224 Aug 8 2019 iwlwifi-7265-13.ucode -rw-r--r--. 1 root root 1180356 Aug 8 2019 iwlwifi-7265-16.ucode -rw-r--r--. 1 root root 1180412 Aug 8 2019 iwlwifi-7265-17.ucode -rw-r--r--. 1 root root 690452 Aug 8 2019 iwlwifi-7265-8.ucode -rw-r--r--. 1 root root 697828 Aug 8 2019 iwlwifi-7265-9.ucode lrwxrwxrwx. 1 root root 21 Oct 16 09:23 iwlwifi-7265D-10.ucode -> iwlwifi-7265-10.ucode -rw-r--r--. 1 root root 1002800 Aug 8 2019 iwlwifi-7265D-12.ucode -rw-r--r--. 1 root root 1008692 Aug 8 2019 iwlwifi-7265D-13.ucode -rw-r--r--. 1 root root 1384500 Aug 8 2019 iwlwifi-7265D-16.ucode -rw-r--r--. 1 root root 1383604 Aug 8 2019 iwlwifi-7265D-17.ucode -rw-r--r--. 1 root root 1385368 Aug 8 2019 iwlwifi-7265D-21.ucode -rw-r--r--. 1 root root 1028376 Aug 8 2019 iwlwifi-7265D-22.ucode -rw-r--r--. 1 root root 1032740 Aug 8 2019 iwlwifi-7265D-27.ucode -rw-r--r--. 1 root root 1036432 Aug 8 2019 iwlwifi-7265D-29.ucode -rw-r--r--. 1 root root 1745176 Aug 8 2019 iwlwifi-8000C-13.ucode -rw-r--r--. 1 root root 2351636 Aug 8 2019 iwlwifi-8000C-16.ucode -rw-r--r--. 1 root root 2394060 Aug 8 2019 iwlwifi-8000C-21.ucode -rw-r--r--. 1 root root 2120860 Aug 8 2019 iwlwifi-8000C-22.ucode -rw-r--r--. 1 root root 2227284 Aug 8 2019 iwlwifi-8000C-27.ucode -rw-r--r--. 1 root root 2310116 Aug 8 2019 iwlwifi-8000C-31.ucode -rw-r--r--. 1 root root 2448976 Aug 8 2019 iwlwifi-8000C-34.ucode -rw-r--r--. 1 root root 2486572 Aug 8 2019 iwlwifi-8000C-36.ucode -rw-r--r--. 1 root root 2389968 Aug 8 2019 iwlwifi-8265-21.ucode -rw-r--r--. 1 root root 1811984 Aug 8 2019 iwlwifi-8265-22.ucode -rw-r--r--. 1 root root 2234528 Aug 8 2019 iwlwifi-8265-27.ucode -rw-r--r--. 1 root root 2307104 Aug 8 2019 iwlwifi-8265-31.ucode -rw-r--r--. 1 root root 2440780 Aug 8 2019 iwlwifi-8265-34.ucode -rw-r--r--. 1 root root 2498044 Aug 8 2019 iwlwifi-8265-36.ucode -rw-r--r--. 1 root root 2632620 Aug 8 2019 iwlwifi-9000-pu-b0-jf-b0-33.ucode -rw-r--r--. 1 root root 2678284 Aug 8 2019 iwlwifi-9000-pu-b0-jf-b0-34.ucode -rw-r--r--. 1 root root 2520568 Aug 8 2019 iwlwifi-9000-pu-b0-jf-b0-38.ucode -rw-r--r--. 1 root root 2620464 Aug 8 2019 iwlwifi-9000-pu-b0-jf-b0-41.ucode -rw-r--r--. 1 root root 2543536 Aug 8 2019 iwlwifi-9000-pu-b0-jf-b0-43.ucode -rw-r--r--. 1 root root 2637216 Aug 8 2019 iwlwifi-9260-th-b0-jf-b0-33.ucode -rw-r--r--. 1 root root 2678092 Aug 8 2019 iwlwifi-9260-th-b0-jf-b0-34.ucode -rw-r--r--. 1 root root 2521412 Aug 8 2019 iwlwifi-9260-th-b0-jf-b0-38.ucode -rw-r--r--. 1 root root 2620656 Aug 8 2019 iwlwifi-9260-th-b0-jf-b0-41.ucode -rw-r--r--. 1 root root 2558176 Aug 8 2019 iwlwifi-9260-th-b0-jf-b0-43.ucode drwxr-xr-x. 2 root root 102 Oct 16 09:22 kaweth drwxr-xr-x. 2 root root 211 Oct 16 09:22 keyspan drwxr-xr-x. 2 root root 106 Oct 16 09:22 keyspan_pda drwxr-xr-x. 2 root root 23 Aug 15 2019 korg -rw-r--r--. 1 root root 118888 Aug 8 2019 lbtf_usb.bin -rw-r--r--. 1 root root 262 Aug 8 2019 lgs8g75.fw drwxr-xr-x. 2 root root 129 Oct 16 09:22 liquidio -rw-r--r--. 1 root root 397 Aug 8 2019 Makefile drwxr-xr-x. 2 root root 46 Oct 16 09:22 matrox drwxr-xr-x. 2 root root 226 Oct 16 09:22 mediatek drwxr-xr-x. 2 root root 236 Oct 16 09:22 mellanox drwxr-xr-x. 2 root root 90 Oct 16 09:22 microchip drwxr-xr-x. 2 root root 66 Aug 15 2019 mixart drwxr-xr-x. 2 root root 286 Oct 16 09:22 moxa drwxr-xr-x. 2 root root 4096 Oct 16 09:22 mrvl -rw-r--r--. 1 root root 45412 Aug 8 2019 mt7601u.bin -rw-r--r--. 1 root root 368220 Aug 8 2019 mt7650.bin -rw-r--r--. 1 root root 81908 Aug 8 2019 mt7662.bin -rw-r--r--. 1 root root 26350 Aug 8 2019 mt7662_rom_patch.bin -rw-r--r--. 1 root root 13847 Aug 8 2019 mts_cdma.fw -rw-r--r--. 1 root root 14067 Aug 8 2019 mts_edge.fw -rw-r--r--. 1 root root 13847 Aug 8 2019 mts_gsm.fw -rw-r--r--. 1 root root 13769 Aug 8 2019 mts_mt9234mu.fw -rw-r--r--. 1 root root 13769 Aug 8 2019 mts_mt9234zba.fw -rw-r--r--. 1 root root 97652 Mar 5 2015 multiface_firmware.bin -rw-r--r--. 1 root root 97652 Mar 5 2015 multiface_firmware_rev11.bin drwxr-xr-x. 2 root root 44 Oct 16 09:22 mwlwifi -rw-r--r--. 1 root root 378832 Aug 8 2019 myri10ge_eth_big_z8e.dat -rw-r--r--. 1 root root 389144 Aug 8 2019 myri10ge_ethp_big_z8e.dat -rw-r--r--. 1 root root 389056 Aug 8 2019 myri10ge_ethp_z8e.dat -rw-r--r--. 1 root root 378736 Aug 8 2019 myri10ge_eth_z8e.dat -rw-r--r--. 1 root root 536192 Aug 8 2019 myri10ge_rss_eth_big_z8e.dat -rw-r--r--. 1 root root 545936 Aug 8 2019 myri10ge_rss_ethp_big_z8e.dat -rw-r--r--. 1 root root 545920 Aug 8 2019 myri10ge_rss_ethp_z8e.dat -rw-r--r--. 1 root root 536176 Aug 8 2019 myri10ge_rss_eth_z8e.dat drwxr-xr-x. 2 root root 23 Oct 16 09:22 myricom drwxr-xr-x. 6 root root 4096 Oct 16 09:22 netronome drwxr-xr-x. 19 root root 236 Oct 16 09:22 nvidia drwxr-xr-x. 2 root root 27 Oct 16 09:22 ositech drwxr-xr-x. 2 root root 4096 Aug 15 2019 pcxhr -rw-r--r--. 1 root root 1845305 Aug 8 2019 phanfw.bin -rw-r--r--. 1 root root 463612 Aug 8 2019 qat_895xcc.bin -rw-r--r--. 1 root root 114176 Aug 8 2019 qat_895xcc_mmp.bin -rw-r--r--. 1 root root 265444 Aug 8 2019 qat_c3xxx.bin -rw-r--r--. 1 root root 114820 Aug 8 2019 qat_c3xxx_mmp.bin -rw-r--r--. 1 root root 398144 Aug 8 2019 qat_c62x.bin -rw-r--r--. 1 root root 114820 Aug 8 2019 qat_c62x_mmp.bin lrwxrwxrwx. 1 root root 18 Oct 16 09:22 qat_mmp.bin -> qat_895xcc_mmp.bin drwxr-xr-x. 2 root root 4096 Oct 16 09:22 qca drwxr-xr-x. 5 root root 254 Oct 16 09:22 qcom drwxr-xr-x. 2 root root 4096 Oct 16 09:22 qed -rw-r--r--. 1 root root 76802 Aug 8 2019 ql2100_fw.bin -rw-r--r--. 1 root root 84566 Aug 8 2019 ql2200_fw.bin -rw-r--r--. 1 root root 125252 Aug 8 2019 ql2300_fw.bin -rw-r--r--. 1 root root 136038 Aug 8 2019 ql2322_fw.bin -rw-r--r--. 1 root root 265300 Aug 8 2019 ql2400_fw.bin -rw-r--r--. 1 root root 275128 Aug 8 2019 ql2500_fw.bin drwxr-xr-x. 2 root root 91 Oct 16 09:22 qlogic drwxr-xr-x. 2 root root 26 Oct 16 09:22 r128 -rw-r--r--. 1 root root 9452 Aug 8 2019 r8a779x_usb3_v1.dlmem -rw-r--r--. 1 root root 9416 Aug 8 2019 r8a779x_usb3_v2.dlmem -rw-r--r--. 1 root root 9416 Aug 8 2019 r8a779x_usb3_v3.dlmem drwxr-xr-x. 2 root root 12288 Oct 16 09:22 radeon -rw-r--r--. 1 root root 1684 Aug 8 2019 README drwxr-xr-x. 2 root root 22 Oct 16 09:22 rockchip -rw-r--r--. 1 root root 63 Aug 8 2019 rp2.fw -rw-r--r--. 1 root root 97652 Mar 5 2015 rpm_firmware.bin drwxr-xr-x. 2 root root 104 Oct 16 09:22 rsi -rw-r--r--. 1 root root 94100 Aug 8 2019 rsi_91x.fw -rw-r--r--. 1 root root 8192 Aug 8 2019 rt2561.bin -rw-r--r--. 1 root root 8192 Aug 8 2019 rt2561s.bin -rw-r--r--. 1 root root 8192 Aug 8 2019 rt2661.bin -rw-r--r--. 1 root root 8192 Aug 8 2019 rt2860.bin -rw-r--r--. 1 root root 8192 Aug 8 2019 rt2870.bin lrwxrwxrwx. 1 root root 10 Oct 16 09:22 rt3070.bin -> rt2870.bin -rw-r--r--. 1 root root 4096 Aug 8 2019 rt3071.bin lrwxrwxrwx. 1 root root 10 Oct 16 09:22 rt3090.bin -> rt2860.bin -rw-r--r--. 1 root root 4096 Aug 8 2019 rt3290.bin -rw-r--r--. 1 root root 2048 Aug 8 2019 rt73.bin drwxr-xr-x. 2 root root 54 Oct 16 09:22 RTL8192E drwxr-xr-x. 2 root root 4096 Oct 16 09:22 rtl_bt drwxr-xr-x. 2 root root 4096 Oct 16 09:22 rtl_nic drwxr-xr-x. 2 root root 4096 Oct 16 09:22 rtlwifi drwxr-xr-x. 2 root root 52 Oct 16 09:22 rtw88 lrwxrwxrwx. 1 root root 17 Oct 16 09:22 s2250.fw -> go7007/s2250-2.fw lrwxrwxrwx. 1 root root 17 Oct 16 09:22 s2250_loader.fw -> go7007/s2250-1.fw -rw-r--r--. 1 root root 352652 Aug 8 2019 s5p-mfc.fw -rw-r--r--. 1 root root 306312 Aug 8 2019 s5p-mfc-v6.fw -rw-r--r--. 1 root root 343756 Aug 8 2019 s5p-mfc-v6-v2.fw -rw-r--r--. 1 root root 382724 Aug 8 2019 s5p-mfc-v7.fw -rw-r--r--. 1 root root 360576 Aug 8 2019 s5p-mfc-v8.fw drwxr-xr-x. 2 root root 134 Aug 15 2019 sb16 -rw-r--r--. 1 root root 816 Aug 8 2019 sdd_sagrad_1091_1098.bin drwxr-xr-x. 2 root root 128 Oct 16 09:22 slicoss -rw-r--r--. 1 root root 85656 Aug 8 2019 sms1xxx-hcw-55xxx-dvbt-02.fw -rw-r--r--. 1 root root 70472 Aug 8 2019 sms1xxx-hcw-55xxx-isdbt-02.fw -rw-r--r--. 1 root root 85656 Aug 8 2019 sms1xxx-nova-a-dvbt-01.fw -rw-r--r--. 1 root root 76364 Aug 8 2019 sms1xxx-nova-b-dvbt-01.fw -rw-r--r--. 1 root root 39900 Aug 8 2019 sms1xxx-stellar-dvbt-01.fw drwxr-xr-x. 2 root root 25 Oct 16 09:22 sun drwxr-xr-x. 2 root root 63 Oct 16 09:22 sxg -rw-r--r--. 1 root root 37028 Aug 8 2019 TDA7706_OM_v2.5.1_boot.txt -rw-r--r--. 1 root root 10509 Aug 8 2019 TDA7706_OM_v3.0.2_boot.txt -rw-r--r--. 1 root root 40096 Aug 8 2019 tdmb_nova_12mhz.inp drwxr-xr-x. 2 root root 21 Oct 16 09:22 tehuti -rw-r--r--. 1 root root 13765 Aug 8 2019 ti_3410.fw -rw-r--r--. 1 root root 13764 Aug 8 2019 ti_5052.fw drwxr-xr-x. 2 root root 80 Oct 16 09:22 tigon drwxr-xr-x. 2 root root 51 Oct 16 09:22 ti-keystone -rw-r--r--. 1 root root 51972 Aug 8 2019 tlg2300_firmware.bin -rw-r--r--. 1 root root 7614 Aug 8 2019 tr_smctr.bin drwxr-xr-x. 2 root root 29 Oct 16 09:22 ttusb-budget drwxr-xr-x. 2 root root 4096 Oct 16 09:22 ueagle-atm drwxr-xr-x. 2 root root 6 Aug 8 2019 updates drwxr-xr-x. 2 root root 6 Aug 8 2019 usbdux -rw-r--r--. 1 root root 999 Aug 8 2019 usbduxfast_firmware.bin -rw-r--r--. 1 root root 1770 Aug 8 2019 usbdux_firmware.bin -rw-r--r--. 1 root root 8192 Aug 8 2019 usbduxsigma_firmware.bin -rw-r--r--. 1 root root 16382 Aug 8 2019 v4l-cx231xx-avcore-01.fw -rwxr-xr-x. 1 root root 262144 May 26 2006 v4l-cx2341x-dec.fw -rwxr-xr-x. 1 root root 376836 Feb 17 2007 v4l-cx2341x-enc.fw -rwxr-xr-x. 1 root root 155648 May 26 2006 v4l-cx2341x-init.mpg -rw-r--r--. 1 root root 16382 Aug 8 2019 v4l-cx23885-avcore-01.fw -rwxr-xr-x. 1 root root 16382 Jul 1 2008 v4l-cx25840.fw -rwxr-xr-x. 1 root root 8192 Oct 6 2006 v4l-pvrusb2-24xxx-01.fw -rwxr-xr-x. 1 root root 8192 Jul 1 2006 v4l-pvrusb2-29xxx-01.fw drwxr-xr-x. 2 root root 25 Oct 16 09:22 vicam -rw-r--r--. 1 root root 11341 Aug 8 2019 vntwusb.fw -rw-r--r--. 1 root root 2977008 Aug 8 2019 vpu_d.bin -rw-r--r--. 1 root root 131180 Aug 8 2019 vpu_p.bin drwxr-xr-x. 2 root root 262 Aug 15 2019 vx -rw-r--r--. 1 root root 23554 Aug 8 2019 whiteheat.fw -rw-r--r--. 1 root root 5626 Aug 8 2019 whiteheat_loader.fw -rw-r--r--. 1 root root 3588 Aug 8 2019 wil6210.brd -rw-r--r--. 1 root root 400364 Aug 8 2019 wil6210.fw -rw-r--r--. 1 root root 97824 Aug 8 2019 wsm_22.bin drwxr-xr-x. 2 root root 38 Oct 16 09:22 yam drwxr-xr-x. 2 root root 91 Aug 15 2019 yamaha /usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64: total 24 drwxr-xr-x. 3 root root 45 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. drwxr-xr-x. 2 root root 4096 Oct 16 09:22 intel-ucode -rw-r--r--. 1 root root 2503 Oct 16 09:22 readme-intel /usr/lib/firmware/3.10.0-1062.1.2.el7.x86_64/intel-ucode: total 4 drwxr-xr-x. 2 root root 4096 Oct 16 09:22 . drwxr-xr-x. 3 root root 45 Oct 16 09:22 .. lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-03-02 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-03-02 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-05-00 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-05-00 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-05-01 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-05-01 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-05-02 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-05-02 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-05-03 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-05-03 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-06-00 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-06-00 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-06-05 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-06-05 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-06-0a -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-06-0a lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-06-0d -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-06-0d lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-07-01 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-07-01 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-07-02 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-07-02 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-07-03 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-07-03 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-08-01 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-08-01 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-08-03 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-08-03 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-08-06 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-08-06 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-08-0a -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-08-0a lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-09-05 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-09-05 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-0a-00 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0a-00 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-0a-01 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0a-01 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-0b-01 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0b-01 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-0b-04 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0b-04 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-0d-06 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0d-06 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-0e-08 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0e-08 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-0e-0c -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0e-0c lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-0f-02 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-02 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-0f-06 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-06 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-0f-07 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-07 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-0f-0a -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-0a lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-0f-0b -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-0b lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-0f-0d -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-0d lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-16-01 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-16-01 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-17-06 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-17-06 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-17-07 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-17-07 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-17-0a -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-17-0a lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-1a-04 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1a-04 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-1a-05 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1a-05 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-1c-02 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1c-02 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-1c-0a -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1c-0a lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-1d-01 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1d-01 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-1e-05 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1e-05 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-25-02 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-25-02 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-25-05 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-25-05 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-26-01 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-26-01 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-2a-07 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2a-07 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-2c-02 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2c-02 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-2d-06 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2d-06 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-2d-07 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2d-07 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-2e-06 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2e-06 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-2f-02 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2f-02 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-37-08 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-37-08 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-37-09 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-37-09 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-3a-09 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3a-09 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-3c-03 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3c-03 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-3d-04 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3d-04 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-3e-04 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3e-04 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-3e-06 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3e-06 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-3e-07 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3e-07 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-3f-02 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3f-02 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-3f-04 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3f-04 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-45-01 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-45-01 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-46-01 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-46-01 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-47-01 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-47-01 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-4c-03 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-4c-03 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-4c-04 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-4c-04 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-4e-03 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-4e-03 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-55-04 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-55-04 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-55-07 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-55-07 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-56-02 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-56-02 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-56-03 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-56-03 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-56-04 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-56-04 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-56-05 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-56-05 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-5c-02 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5c-02 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-5c-09 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5c-09 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-5c-0a -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5c-0a lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-5e-03 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5e-03 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-5f-01 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5f-01 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-7a-01 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-7a-01 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-8e-09 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-8e-09 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-8e-0a -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-8e-0a lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-8e-0b -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-8e-0b lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-8e-0c -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-8e-0c lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-9e-09 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-09 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-9e-0a -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-0a lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-9e-0b -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-0b lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-9e-0c -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-0c lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-9e-0d -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-0d lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-00-07 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-00-07 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-00-0a -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-00-0a lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-01-02 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-01-02 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-02-04 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-04 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-02-05 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-05 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-02-06 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-06 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-02-07 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-07 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-02-09 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-09 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-03-02 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-03-02 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-03-03 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-03-03 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-03-04 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-03-04 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-04-01 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-01 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-04-03 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-03 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-04-04 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-04 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-04-07 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-07 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-04-08 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-08 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-04-09 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-09 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-04-0a -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-0a lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-06-02 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-06-02 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-06-04 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-06-04 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-06-05 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-06-05 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-06-08 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-06-08 /usr/lib/firmware/3.10.0-957.27.2.el7.x86_64: total 24 drwxr-xr-x. 3 root root 45 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. drwxr-xr-x. 2 root root 4096 Oct 16 09:22 intel-ucode -rw-r--r--. 1 root root 2503 Oct 16 09:22 readme-intel /usr/lib/firmware/3.10.0-957.27.2.el7.x86_64/intel-ucode: total 4 drwxr-xr-x. 2 root root 4096 Oct 16 09:22 . drwxr-xr-x. 3 root root 45 Oct 16 09:22 .. lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-03-02 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-03-02 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-05-00 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-05-00 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-05-01 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-05-01 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-05-02 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-05-02 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-05-03 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-05-03 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-06-00 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-06-00 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-06-05 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-06-05 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-06-0a -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-06-0a lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-06-0d -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-06-0d lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-07-01 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-07-01 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-07-02 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-07-02 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-07-03 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-07-03 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-08-01 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-08-01 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-08-03 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-08-03 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-08-06 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-08-06 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-08-0a -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-08-0a lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-09-05 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-09-05 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-0a-00 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0a-00 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-0a-01 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0a-01 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-0b-01 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0b-01 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-0b-04 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0b-04 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-0d-06 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0d-06 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-0e-08 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0e-08 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-0e-0c -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0e-0c lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-0f-02 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-02 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-0f-06 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-06 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-0f-07 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-07 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-0f-0a -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-0a lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-0f-0b -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-0b lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-0f-0d -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-0d lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-16-01 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-16-01 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-17-06 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-17-06 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-17-07 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-17-07 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-17-0a -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-17-0a lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-1a-04 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1a-04 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-1a-05 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1a-05 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-1c-02 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1c-02 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-1c-0a -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1c-0a lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-1d-01 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1d-01 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-1e-05 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1e-05 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-25-02 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-25-02 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-25-05 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-25-05 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-26-01 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-26-01 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-2a-07 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2a-07 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-2c-02 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2c-02 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-2d-06 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2d-06 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-2d-07 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2d-07 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-2e-06 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2e-06 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-2f-02 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2f-02 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-37-08 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-37-08 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-37-09 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-37-09 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-3a-09 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3a-09 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-3c-03 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3c-03 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-3d-04 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3d-04 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-3e-04 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3e-04 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-3e-06 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3e-06 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-3e-07 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3e-07 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-3f-02 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3f-02 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-3f-04 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3f-04 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-45-01 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-45-01 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-46-01 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-46-01 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-47-01 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-47-01 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-4c-03 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-4c-03 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-4c-04 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-4c-04 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-4e-03 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-4e-03 lrwxrwxrwx. 1 root root 70 Aug 15 2019 06-55-03 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-55-03 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-55-04 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-55-04 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-55-07 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-55-07 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-56-02 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-56-02 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-56-03 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-56-03 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-56-04 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-56-04 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-56-05 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-56-05 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-5c-02 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5c-02 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-5c-09 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5c-09 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-5c-0a -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5c-0a lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-5e-03 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5e-03 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-5f-01 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5f-01 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-7a-01 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-7a-01 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-8e-09 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-8e-09 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-8e-0a -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-8e-0a lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-8e-0b -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-8e-0b lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-8e-0c -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-8e-0c lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-9e-09 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-09 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-9e-0a -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-0a lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-9e-0b -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-0b lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-9e-0c -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-0c lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-9e-0d -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-0d lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-00-07 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-00-07 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-00-0a -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-00-0a lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-01-02 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-01-02 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-02-04 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-04 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-02-05 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-05 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-02-06 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-06 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-02-07 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-07 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-02-09 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-09 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-03-02 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-03-02 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-03-03 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-03-03 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-03-04 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-03-04 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-04-01 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-01 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-04-03 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-03 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-04-04 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-04 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-04-07 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-07 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-04-08 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-08 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-04-09 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-09 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-04-0a -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-0a lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-06-02 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-06-02 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-06-04 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-06-04 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-06-05 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-06-05 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-06-08 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-06-08 /usr/lib/firmware/3.10.0-957.el7.x86_64: total 24 drwxr-xr-x. 3 root root 45 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. drwxr-xr-x. 2 root root 4096 Oct 16 09:22 intel-ucode -rw-r--r--. 1 root root 2503 Oct 16 09:22 readme-intel /usr/lib/firmware/3.10.0-957.el7.x86_64/intel-ucode: total 4 drwxr-xr-x. 2 root root 4096 Oct 16 09:22 . drwxr-xr-x. 3 root root 45 Oct 16 09:22 .. lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-03-02 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-03-02 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-05-00 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-05-00 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-05-01 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-05-01 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-05-02 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-05-02 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-05-03 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-05-03 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-06-00 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-06-00 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-06-05 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-06-05 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-06-0a -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-06-0a lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-06-0d -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-06-0d lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-07-01 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-07-01 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-07-02 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-07-02 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-07-03 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-07-03 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-08-01 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-08-01 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-08-03 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-08-03 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-08-06 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-08-06 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-08-0a -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-08-0a lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-09-05 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-09-05 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-0a-00 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0a-00 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-0a-01 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0a-01 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-0b-01 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0b-01 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-0b-04 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0b-04 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-0d-06 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0d-06 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-0e-08 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0e-08 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-0e-0c -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0e-0c lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-0f-02 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-02 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-0f-06 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-06 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-0f-07 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-07 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-0f-0a -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-0a lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-0f-0b -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-0b lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-0f-0d -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-0f-0d lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-16-01 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-16-01 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-17-06 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-17-06 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-17-07 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-17-07 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-17-0a -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-17-0a lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-1a-04 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1a-04 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-1a-05 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1a-05 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-1c-02 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1c-02 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-1c-0a -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1c-0a lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-1d-01 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1d-01 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-1e-05 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-1e-05 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-25-02 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-25-02 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-25-05 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-25-05 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-26-01 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-26-01 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-2a-07 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2a-07 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-2c-02 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2c-02 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-2d-06 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2d-06 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-2d-07 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2d-07 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-2e-06 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2e-06 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-2f-02 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-2f-02 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-37-08 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-37-08 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-37-09 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-37-09 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-3a-09 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3a-09 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-3c-03 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3c-03 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-3d-04 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3d-04 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-3e-04 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3e-04 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-3e-06 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3e-06 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-3e-07 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3e-07 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-3f-02 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3f-02 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-3f-04 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-3f-04 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-45-01 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-45-01 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-46-01 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-46-01 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-47-01 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-47-01 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-4c-03 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-4c-03 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-4c-04 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-4c-04 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-4e-03 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-4e-03 lrwxrwxrwx. 1 root root 70 Aug 15 2019 06-55-03 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-55-03 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-55-04 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-55-04 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-55-07 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-55-07 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-56-02 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-56-02 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-56-03 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-56-03 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-56-04 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-56-04 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-56-05 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-56-05 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-5c-02 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5c-02 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-5c-09 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5c-09 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-5c-0a -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5c-0a lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-5e-03 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5e-03 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-5f-01 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-5f-01 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-7a-01 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-7a-01 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-8e-09 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-8e-09 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-8e-0a -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-8e-0a lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-8e-0b -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-8e-0b lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-8e-0c -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-8e-0c lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-9e-09 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-09 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-9e-0a -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-0a lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-9e-0b -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-0b lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-9e-0c -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-0c lrwxrwxrwx. 1 root root 70 Oct 16 09:22 06-9e-0d -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/06-9e-0d lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-00-07 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-00-07 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-00-0a -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-00-0a lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-01-02 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-01-02 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-02-04 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-04 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-02-05 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-05 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-02-06 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-06 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-02-07 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-07 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-02-09 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-02-09 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-03-02 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-03-02 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-03-03 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-03-03 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-03-04 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-03-04 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-04-01 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-01 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-04-03 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-03 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-04-04 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-04 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-04-07 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-07 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-04-08 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-08 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-04-09 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-09 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-04-0a -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-04-0a lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-06-02 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-06-02 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-06-04 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-06-04 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-06-05 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-06-05 lrwxrwxrwx. 1 root root 70 Oct 16 09:22 0f-06-08 -> /usr/share/microcode_ctl/ucode_with_caveats/intel/intel-ucode/0f-06-08 /usr/lib/firmware/3com: total 88 drwxr-xr-x. 2 root root 42 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 24880 Aug 8 2019 3C359.bin -rw-r--r--. 1 root root 44548 Aug 8 2019 typhoon.bin /usr/lib/firmware/acenic: total 164 drwxr-xr-x. 2 root root 36 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 73116 Aug 8 2019 tg1.bin -rw-r--r--. 1 root root 77452 Aug 8 2019 tg2.bin /usr/lib/firmware/adaptec: total 24 drwxr-xr-x. 2 root root 52 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 832 Aug 8 2019 starfire_rx.bin -rw-r--r--. 1 root root 832 Aug 8 2019 starfire_tx.bin /usr/lib/firmware/advansys: total 44 drwxr-xr-x. 2 root root 77 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 5026 Aug 8 2019 3550.bin -rw-r--r--. 1 root root 5340 Aug 8 2019 38C0800.bin -rw-r--r--. 1 root root 6334 Aug 8 2019 38C1600.bin -rw-r--r--. 1 root root 2308 Aug 8 2019 mcode.bin /usr/lib/firmware/amd: total 48 drwxr-xr-x. 2 root root 42 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 32000 Aug 8 2019 amd_sev_fam17h_model0xh.sbin /usr/lib/firmware/amdgpu: total 25392 drwxr-xr-x. 2 root root 12288 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 61932 Aug 8 2019 banks_k_2_smc.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 bonaire_ce.bin -rw-r--r--. 1 root root 130796 Aug 8 2019 bonaire_k_smc.bin -rw-r--r--. 1 root root 32336 Aug 8 2019 bonaire_mc.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 bonaire_me.bin -rw-r--r--. 1 root root 17024 Aug 8 2019 bonaire_mec.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 bonaire_pfp.bin -rw-r--r--. 1 root root 8448 Aug 8 2019 bonaire_rlc.bin -rw-r--r--. 1 root root 4456 Aug 8 2019 bonaire_sdma1.bin -rw-r--r--. 1 root root 4456 Aug 8 2019 bonaire_sdma.bin -rw-r--r--. 1 root root 130796 Aug 8 2019 bonaire_smc.bin -rw-r--r--. 1 root root 232752 Aug 8 2019 bonaire_uvd.bin -rw-r--r--. 1 root root 101072 Aug 8 2019 bonaire_vce.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 carrizo_ce.bin -rw-r--r--. 1 root root 17024 Aug 8 2019 carrizo_me.bin -rw-r--r--. 1 root root 262784 Aug 8 2019 carrizo_mec2.bin -rw-r--r--. 1 root root 262784 Aug 8 2019 carrizo_mec.bin -rw-r--r--. 1 root root 17024 Aug 8 2019 carrizo_pfp.bin -rw-r--r--. 1 root root 18836 Aug 8 2019 carrizo_rlc.bin -rw-r--r--. 1 root root 10624 Aug 8 2019 carrizo_sdma1.bin -rw-r--r--. 1 root root 10624 Aug 8 2019 carrizo_sdma.bin -rw-r--r--. 1 root root 271712 Aug 8 2019 carrizo_uvd.bin -rw-r--r--. 1 root root 175840 Aug 8 2019 carrizo_vce.bin -rw-r--r--. 1 root root 8852 Aug 8 2019 fiji_ce.bin -rw-r--r--. 1 root root 16028 Aug 8 2019 fiji_mc.bin -rw-r--r--. 1 root root 17044 Aug 8 2019 fiji_me.bin -rw-r--r--. 1 root root 262824 Aug 8 2019 fiji_mec2.bin -rw-r--r--. 1 root root 262824 Aug 8 2019 fiji_mec.bin -rw-r--r--. 1 root root 17044 Aug 8 2019 fiji_pfp.bin -rw-r--r--. 1 root root 16636 Aug 8 2019 fiji_rlc.bin -rw-r--r--. 1 root root 10644 Aug 8 2019 fiji_sdma1.bin -rw-r--r--. 1 root root 10644 Aug 8 2019 fiji_sdma.bin -rw-r--r--. 1 root root 129604 Aug 8 2019 fiji_smc.bin -rw-r--r--. 1 root root 266768 Aug 8 2019 fiji_uvd.bin -rw-r--r--. 1 root root 161024 Aug 8 2019 fiji_vce.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 hainan_ce.bin -rw-r--r--. 1 root root 61876 Aug 8 2019 hainan_k_smc.bin -rw-r--r--. 1 root root 31996 Aug 8 2019 hainan_mc.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 hainan_me.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 hainan_pfp.bin -rw-r--r--. 1 root root 8448 Aug 8 2019 hainan_rlc.bin -rw-r--r--. 1 root root 61444 Aug 8 2019 hainan_smc.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 hawaii_ce.bin -rw-r--r--. 1 root root 130796 Aug 8 2019 hawaii_k_smc.bin -rw-r--r--. 1 root root 32796 Aug 8 2019 hawaii_mc.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 hawaii_me.bin -rw-r--r--. 1 root root 17024 Aug 8 2019 hawaii_mec.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 hawaii_pfp.bin -rw-r--r--. 1 root root 8448 Aug 8 2019 hawaii_rlc.bin -rw-r--r--. 1 root root 4456 Aug 8 2019 hawaii_sdma1.bin -rw-r--r--. 1 root root 4456 Aug 8 2019 hawaii_sdma.bin -rw-r--r--. 1 root root 130796 Aug 8 2019 hawaii_smc.bin -rw-r--r--. 1 root root 232752 Aug 8 2019 hawaii_uvd.bin -rw-r--r--. 1 root root 101072 Aug 8 2019 hawaii_vce.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 kabini_ce.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 kabini_me.bin -rw-r--r--. 1 root root 17024 Aug 8 2019 kabini_mec.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 kabini_pfp.bin -rw-r--r--. 1 root root 10496 Aug 8 2019 kabini_rlc.bin -rw-r--r--. 1 root root 4456 Aug 8 2019 kabini_sdma1.bin -rw-r--r--. 1 root root 4456 Aug 8 2019 kabini_sdma.bin -rw-r--r--. 1 root root 232752 Aug 8 2019 kabini_uvd.bin -rw-r--r--. 1 root root 101072 Aug 8 2019 kabini_vce.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 kaveri_ce.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 kaveri_me.bin -rw-r--r--. 1 root root 17024 Aug 8 2019 kaveri_mec2.bin -rw-r--r--. 1 root root 17024 Aug 8 2019 kaveri_mec.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 kaveri_pfp.bin -rw-r--r--. 1 root root 10496 Aug 8 2019 kaveri_rlc.bin -rw-r--r--. 1 root root 4456 Aug 8 2019 kaveri_sdma1.bin -rw-r--r--. 1 root root 4456 Aug 8 2019 kaveri_sdma.bin -rw-r--r--. 1 root root 232752 Aug 8 2019 kaveri_uvd.bin -rw-r--r--. 1 root root 101072 Aug 8 2019 kaveri_vce.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 mullins_ce.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 mullins_me.bin -rw-r--r--. 1 root root 17024 Aug 8 2019 mullins_mec.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 mullins_pfp.bin -rw-r--r--. 1 root root 10496 Aug 8 2019 mullins_rlc.bin -rw-r--r--. 1 root root 4456 Aug 8 2019 mullins_sdma1.bin -rw-r--r--. 1 root root 4456 Aug 8 2019 mullins_sdma.bin -rw-r--r--. 1 root root 232752 Aug 8 2019 mullins_uvd.bin -rw-r--r--. 1 root root 101072 Aug 8 2019 mullins_vce.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 oland_ce.bin -rw-r--r--. 1 root root 62692 Aug 8 2019 oland_k_smc.bin -rw-r--r--. 1 root root 31996 Aug 8 2019 oland_mc.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 oland_me.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 oland_pfp.bin -rw-r--r--. 1 root root 8448 Aug 8 2019 oland_rlc.bin -rw-r--r--. 1 root root 62260 Aug 8 2019 oland_smc.bin -rw-r--r--. 1 root root 49664 Aug 8 2019 picasso_asd.bin -rw-r--r--. 1 root root 9344 Aug 8 2019 picasso_ce.bin -rw-r--r--. 1 root root 316 Aug 8 2019 picasso_gpu_info.bin -rw-r--r--. 1 root root 17536 Aug 8 2019 picasso_me.bin -rw-r--r--. 1 root root 268048 Aug 8 2019 picasso_mec2.bin -rw-r--r--. 1 root root 268048 Aug 8 2019 picasso_mec.bin -rw-r--r--. 1 root root 21632 Aug 8 2019 picasso_pfp.bin -rw-r--r--. 1 root root 39068 Aug 8 2019 picasso_rlc_am4.bin -rw-r--r--. 1 root root 39068 Aug 8 2019 picasso_rlc.bin -rw-r--r--. 1 root root 17408 Aug 8 2019 picasso_sdma.bin -rw-r--r--. 1 root root 341728 Aug 8 2019 picasso_vcn.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 pitcairn_ce.bin -rw-r--r--. 1 root root 61712 Aug 8 2019 pitcairn_k_smc.bin -rw-r--r--. 1 root root 31644 Aug 8 2019 pitcairn_mc.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 pitcairn_me.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 pitcairn_pfp.bin -rw-r--r--. 1 root root 8448 Aug 8 2019 pitcairn_rlc.bin -rw-r--r--. 1 root root 61280 Aug 8 2019 pitcairn_smc.bin -rw-r--r--. 1 root root 8852 Aug 8 2019 polaris10_ce_2.bin -rw-r--r--. 1 root root 8852 Aug 8 2019 polaris10_ce.bin -rw-r--r--. 1 root root 130244 Aug 8 2019 polaris10_k2_smc.bin -rw-r--r--. 1 root root 32832 Aug 8 2019 polaris10_k_mc.bin -rw-r--r--. 1 root root 130244 Aug 8 2019 polaris10_k_smc.bin -rw-r--r--. 1 root root 32732 Aug 8 2019 polaris10_mc.bin -rw-r--r--. 1 root root 17044 Aug 8 2019 polaris10_me_2.bin -rw-r--r--. 1 root root 17044 Aug 8 2019 polaris10_me.bin -rw-r--r--. 1 root root 262824 Aug 8 2019 polaris10_mec2_2.bin -rw-r--r--. 1 root root 262824 Aug 8 2019 polaris10_mec_2.bin -rw-r--r--. 1 root root 262824 Aug 8 2019 polaris10_mec2.bin -rw-r--r--. 1 root root 262824 Aug 8 2019 polaris10_mec.bin -rw-r--r--. 1 root root 17044 Aug 8 2019 polaris10_pfp_2.bin -rw-r--r--. 1 root root 17044 Aug 8 2019 polaris10_pfp.bin -rw-r--r--. 1 root root 23488 Aug 8 2019 polaris10_rlc.bin -rw-r--r--. 1 root root 12692 Aug 8 2019 polaris10_sdma1.bin -rw-r--r--. 1 root root 12692 Aug 8 2019 polaris10_sdma.bin -rw-r--r--. 1 root root 130216 Aug 8 2019 polaris10_smc.bin -rw-r--r--. 1 root root 130196 Aug 8 2019 polaris10_smc_sk.bin -rw-r--r--. 1 root root 375424 Aug 8 2019 polaris10_uvd.bin -rw-r--r--. 1 root root 166816 Aug 8 2019 polaris10_vce.bin -rw-r--r--. 1 root root 8852 Aug 8 2019 polaris11_ce_2.bin -rw-r--r--. 1 root root 8852 Aug 8 2019 polaris11_ce.bin -rw-r--r--. 1 root root 130228 Aug 8 2019 polaris11_k2_smc.bin -rw-r--r--. 1 root root 32832 Aug 8 2019 polaris11_k_mc.bin -rw-r--r--. 1 root root 130228 Aug 8 2019 polaris11_k_smc.bin -rw-r--r--. 1 root root 33104 Aug 8 2019 polaris11_mc.bin -rw-r--r--. 1 root root 17044 Aug 8 2019 polaris11_me_2.bin -rw-r--r--. 1 root root 17044 Aug 8 2019 polaris11_me.bin -rw-r--r--. 1 root root 262824 Aug 8 2019 polaris11_mec2_2.bin -rw-r--r--. 1 root root 262824 Aug 8 2019 polaris11_mec_2.bin -rw-r--r--. 1 root root 262824 Aug 8 2019 polaris11_mec2.bin -rw-r--r--. 1 root root 262824 Aug 8 2019 polaris11_mec.bin -rw-r--r--. 1 root root 17044 Aug 8 2019 polaris11_pfp_2.bin -rw-r--r--. 1 root root 17044 Aug 8 2019 polaris11_pfp.bin -rw-r--r--. 1 root root 22688 Aug 8 2019 polaris11_rlc.bin -rw-r--r--. 1 root root 12692 Aug 8 2019 polaris11_sdma1.bin -rw-r--r--. 1 root root 12692 Aug 8 2019 polaris11_sdma.bin -rw-r--r--. 1 root root 130196 Aug 8 2019 polaris11_smc.bin -rw-r--r--. 1 root root 130196 Aug 8 2019 polaris11_smc_sk.bin -rw-r--r--. 1 root root 375424 Aug 8 2019 polaris11_uvd.bin -rw-r--r--. 1 root root 166816 Aug 8 2019 polaris11_vce.bin -rw-r--r--. 1 root root 8852 Aug 8 2019 polaris12_ce_2.bin -rw-r--r--. 1 root root 8852 Aug 8 2019 polaris12_ce.bin -rw-r--r--. 1 root root 32832 Aug 8 2019 polaris12_k_mc.bin -rw-r--r--. 1 root root 130388 Aug 8 2019 polaris12_k_smc.bin -rw-r--r--. 1 root root 32608 Aug 8 2019 polaris12_mc.bin -rw-r--r--. 1 root root 17044 Aug 8 2019 polaris12_me_2.bin -rw-r--r--. 1 root root 17044 Aug 8 2019 polaris12_me.bin -rw-r--r--. 1 root root 262824 Aug 8 2019 polaris12_mec2_2.bin -rw-r--r--. 1 root root 262824 Aug 8 2019 polaris12_mec_2.bin -rw-r--r--. 1 root root 262824 Aug 8 2019 polaris12_mec2.bin -rw-r--r--. 1 root root 262824 Aug 8 2019 polaris12_mec.bin -rw-r--r--. 1 root root 17044 Aug 8 2019 polaris12_pfp_2.bin -rw-r--r--. 1 root root 17044 Aug 8 2019 polaris12_pfp.bin -rw-r--r--. 1 root root 16660 Aug 8 2019 polaris12_rlc.bin -rw-r--r--. 1 root root 12692 Aug 8 2019 polaris12_sdma1.bin -rw-r--r--. 1 root root 12692 Aug 8 2019 polaris12_sdma.bin -rw-r--r--. 1 root root 130388 Aug 8 2019 polaris12_smc.bin -rw-r--r--. 1 root root 375424 Aug 8 2019 polaris12_uvd.bin -rw-r--r--. 1 root root 166816 Aug 8 2019 polaris12_vce.bin -rw-r--r--. 1 root root 49664 Aug 8 2019 raven2_asd.bin -rw-r--r--. 1 root root 9344 Aug 8 2019 raven2_ce.bin -rw-r--r--. 1 root root 316 Aug 8 2019 raven2_gpu_info.bin -rw-r--r--. 1 root root 17536 Aug 8 2019 raven2_me.bin -rw-r--r--. 1 root root 268048 Aug 8 2019 raven2_mec2.bin -rw-r--r--. 1 root root 268048 Aug 8 2019 raven2_mec.bin -rw-r--r--. 1 root root 21632 Aug 8 2019 raven2_pfp.bin -rw-r--r--. 1 root root 38324 Aug 8 2019 raven2_rlc.bin -rw-r--r--. 1 root root 17408 Aug 8 2019 raven2_sdma.bin -rw-r--r--. 1 root root 343456 Aug 8 2019 raven2_vcn.bin -rw-r--r--. 1 root root 49664 Aug 8 2019 raven_asd.bin -rw-r--r--. 1 root root 9344 Aug 8 2019 raven_ce.bin -rw-r--r--. 1 root root 24416 Aug 8 2019 raven_dmcu.bin -rw-r--r--. 1 root root 316 Aug 8 2019 raven_gpu_info.bin -rw-r--r--. 1 root root 17536 Aug 8 2019 raven_me.bin -rw-r--r--. 1 root root 268048 Aug 8 2019 raven_mec2.bin -rw-r--r--. 1 root root 268048 Aug 8 2019 raven_mec.bin -rw-r--r--. 1 root root 21632 Aug 8 2019 raven_pfp.bin -rw-r--r--. 1 root root 39036 Aug 8 2019 raven_rlc.bin -rw-r--r--. 1 root root 17408 Aug 8 2019 raven_sdma.bin -rw-r--r--. 1 root root 341728 Aug 8 2019 raven_vcn.bin -rw-r--r--. 1 root root 32488 Aug 8 2019 si58_mc.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 stoney_ce.bin -rw-r--r--. 1 root root 17024 Aug 8 2019 stoney_me.bin -rw-r--r--. 1 root root 262784 Aug 8 2019 stoney_mec.bin -rw-r--r--. 1 root root 17024 Aug 8 2019 stoney_pfp.bin -rw-r--r--. 1 root root 17236 Aug 8 2019 stoney_rlc.bin -rw-r--r--. 1 root root 10624 Aug 8 2019 stoney_sdma.bin -rw-r--r--. 1 root root 277216 Aug 8 2019 stoney_uvd.bin -rw-r--r--. 1 root root 166816 Aug 8 2019 stoney_vce.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 tahiti_ce.bin -rw-r--r--. 1 root root 64364 Aug 8 2019 tahiti_k_smc.bin -rw-r--r--. 1 root root 31776 Aug 8 2019 tahiti_mc.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 tahiti_me.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 tahiti_pfp.bin -rw-r--r--. 1 root root 8448 Aug 8 2019 tahiti_rlc.bin -rw-r--r--. 1 root root 63932 Aug 8 2019 tahiti_smc.bin -rw-r--r--. 1 root root 8852 Aug 8 2019 tonga_ce.bin -rw-r--r--. 1 root root 130460 Aug 8 2019 tonga_k_smc.bin -rw-r--r--. 1 root root 31352 Aug 8 2019 tonga_mc.bin -rw-r--r--. 1 root root 17044 Aug 8 2019 tonga_me.bin -rw-r--r--. 1 root root 262824 Aug 8 2019 tonga_mec2.bin -rw-r--r--. 1 root root 262824 Aug 8 2019 tonga_mec.bin -rw-r--r--. 1 root root 17044 Aug 8 2019 tonga_pfp.bin -rw-r--r--. 1 root root 14756 Aug 8 2019 tonga_rlc.bin -rw-r--r--. 1 root root 10644 Aug 8 2019 tonga_sdma1.bin -rw-r--r--. 1 root root 10644 Aug 8 2019 tonga_sdma.bin -rw-r--r--. 1 root root 130460 Aug 8 2019 tonga_smc.bin -rw-r--r--. 1 root root 325312 Aug 8 2019 tonga_uvd.bin -rw-r--r--. 1 root root 161024 Aug 8 2019 tonga_vce.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 topaz_ce.bin -rw-r--r--. 1 root root 80544 Aug 8 2019 topaz_k_smc.bin -rw-r--r--. 1 root root 32100 Aug 8 2019 topaz_mc.bin -rw-r--r--. 1 root root 17024 Aug 8 2019 topaz_me.bin -rw-r--r--. 1 root root 262784 Aug 8 2019 topaz_mec2.bin -rw-r--r--. 1 root root 262784 Aug 8 2019 topaz_mec.bin -rw-r--r--. 1 root root 17024 Aug 8 2019 topaz_pfp.bin -rw-r--r--. 1 root root 8448 Aug 8 2019 topaz_rlc.bin -rw-r--r--. 1 root root 8576 Aug 8 2019 topaz_sdma1.bin -rw-r--r--. 1 root root 8576 Aug 8 2019 topaz_sdma.bin -rw-r--r--. 1 root root 80544 Aug 8 2019 topaz_smc.bin -rw-r--r--. 1 root root 262912 Aug 8 2019 vega10_acg_smc.bin -rw-r--r--. 1 root root 37376 Aug 8 2019 vega10_asd.bin -rw-r--r--. 1 root root 9344 Aug 8 2019 vega10_ce.bin -rw-r--r--. 1 root root 316 Aug 8 2019 vega10_gpu_info.bin -rw-r--r--. 1 root root 17536 Aug 8 2019 vega10_me.bin -rw-r--r--. 1 root root 268048 Aug 8 2019 vega10_mec2.bin -rw-r--r--. 1 root root 268048 Aug 8 2019 vega10_mec.bin -rw-r--r--. 1 root root 21632 Aug 8 2019 vega10_pfp.bin -rw-r--r--. 1 root root 17152 Aug 8 2019 vega10_rlc.bin -rw-r--r--. 1 root root 17408 Aug 8 2019 vega10_sdma1.bin -rw-r--r--. 1 root root 17408 Aug 8 2019 vega10_sdma.bin -rw-r--r--. 1 root root 262912 Aug 8 2019 vega10_smc.bin -rw-r--r--. 1 root root 150400 Aug 8 2019 vega10_sos.bin -rw-r--r--. 1 root root 375424 Aug 8 2019 vega10_uvd.bin -rw-r--r--. 1 root root 165344 Aug 8 2019 vega10_vce.bin -rw-r--r--. 1 root root 49664 Aug 8 2019 vega12_asd.bin -rw-r--r--. 1 root root 9344 Aug 8 2019 vega12_ce.bin -rw-r--r--. 1 root root 316 Aug 8 2019 vega12_gpu_info.bin -rw-r--r--. 1 root root 17536 Aug 8 2019 vega12_me.bin -rw-r--r--. 1 root root 268048 Aug 8 2019 vega12_mec2.bin -rw-r--r--. 1 root root 268048 Aug 8 2019 vega12_mec.bin -rw-r--r--. 1 root root 21632 Aug 8 2019 vega12_pfp.bin -rw-r--r--. 1 root root 28636 Aug 8 2019 vega12_rlc.bin -rw-r--r--. 1 root root 17408 Aug 8 2019 vega12_sdma1.bin -rw-r--r--. 1 root root 17408 Aug 8 2019 vega12_sdma.bin -rw-r--r--. 1 root root 262912 Aug 8 2019 vega12_smc.bin -rw-r--r--. 1 root root 170896 Aug 8 2019 vega12_sos.bin -rw-r--r--. 1 root root 374688 Aug 8 2019 vega12_uvd.bin -rw-r--r--. 1 root root 165408 Aug 8 2019 vega12_vce.bin -rw-r--r--. 1 root root 57856 Aug 8 2019 vega20_asd.bin -rw-r--r--. 1 root root 9344 Aug 8 2019 vega20_ce.bin -rw-r--r--. 1 root root 17536 Aug 8 2019 vega20_me.bin -rw-r--r--. 1 root root 268048 Aug 8 2019 vega20_mec2.bin -rw-r--r--. 1 root root 268048 Aug 8 2019 vega20_mec.bin -rw-r--r--. 1 root root 21632 Aug 8 2019 vega20_pfp.bin -rw-r--r--. 1 root root 32052 Aug 8 2019 vega20_rlc.bin -rw-r--r--. 1 root root 17408 Aug 8 2019 vega20_sdma1.bin -rw-r--r--. 1 root root 17408 Aug 8 2019 vega20_sdma.bin -rw-r--r--. 1 root root 262912 Aug 8 2019 vega20_smc.bin -rw-r--r--. 1 root root 166800 Aug 8 2019 vega20_sos.bin -rw-r--r--. 1 root root 379328 Aug 8 2019 vega20_uvd.bin -rw-r--r--. 1 root root 165408 Aug 8 2019 vega20_vce.bin -rw-r--r--. 1 root root 8852 Aug 8 2019 vegam_ce.bin -rw-r--r--. 1 root root 17044 Aug 8 2019 vegam_me.bin -rw-r--r--. 1 root root 262824 Aug 8 2019 vegam_mec2.bin -rw-r--r--. 1 root root 262824 Aug 8 2019 vegam_mec.bin -rw-r--r--. 1 root root 17044 Aug 8 2019 vegam_pfp.bin -rw-r--r--. 1 root root 16660 Aug 8 2019 vegam_rlc.bin -rw-r--r--. 1 root root 12692 Aug 8 2019 vegam_sdma1.bin -rw-r--r--. 1 root root 12692 Aug 8 2019 vegam_sdma.bin -rw-r--r--. 1 root root 130964 Aug 8 2019 vegam_smc.bin -rw-r--r--. 1 root root 375424 Aug 8 2019 vegam_uvd.bin -rw-r--r--. 1 root root 166816 Aug 8 2019 vegam_vce.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 verde_ce.bin -rw-r--r--. 1 root root 63804 Aug 8 2019 verde_k_smc.bin -rw-r--r--. 1 root root 32044 Aug 8 2019 verde_mc.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 verde_me.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 verde_pfp.bin -rw-r--r--. 1 root root 8448 Aug 8 2019 verde_rlc.bin -rw-r--r--. 1 root root 61776 Aug 8 2019 verde_smc.bin /usr/lib/firmware/amd-ucode: total 68 drwxr-xr-x. 2 root root 264 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 12684 Aug 8 2019 microcode_amd.bin -rw-r--r--. 1 root root 490 Aug 8 2019 microcode_amd.bin.asc -rw-r--r--. 1 root root 7876 Aug 8 2019 microcode_amd_fam15h.bin -rw-r--r--. 1 root root 473 Aug 8 2019 microcode_amd_fam15h.bin.asc -rw-r--r--. 1 root root 3510 Aug 8 2019 microcode_amd_fam16h.bin -rw-r--r--. 1 root root 473 Aug 8 2019 microcode_amd_fam16h.bin.asc -rw-r--r--. 1 root root 6476 Aug 8 2019 microcode_amd_fam17h.bin -rw-r--r--. 1 root root 833 Aug 8 2019 microcode_amd_fam17h.bin.asc /usr/lib/firmware/ar3k: total 400 drwxr-xr-x. 8 root root 4096 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. drwxr-xr-x. 2 root root 67 Oct 16 09:22 1020200 drwxr-xr-x. 2 root root 45 Oct 16 09:22 1020201 drwxr-xr-x. 2 root root 50 Oct 16 09:22 1020201coex drwxr-xr-x. 2 root root 67 Oct 16 09:22 30000 drwxr-xr-x. 2 root root 67 Oct 16 09:22 30101 drwxr-xr-x. 2 root root 126 Oct 16 09:22 30101coex -rw-r--r--. 1 root root 55244 Aug 8 2019 AthrBT_0x01020001.dfu -rw-r--r--. 1 root root 40724 Aug 8 2019 AthrBT_0x01020200.dfu -rw-r--r--. 1 root root 48188 Aug 8 2019 AthrBT_0x01020201.dfu -rw-r--r--. 1 root root 36828 Aug 8 2019 AthrBT_0x11020000.dfu -rw-r--r--. 1 root root 46852 Aug 8 2019 AthrBT_0x11020100.dfu -rw-r--r--. 1 root root 40652 Aug 8 2019 AthrBT_0x31010000.dfu -rw-r--r--. 1 root root 37796 Aug 8 2019 AthrBT_0x31010100.dfu -rw-r--r--. 1 root root 31500 Aug 8 2019 AthrBT_0x41020000.dfu -rw-r--r--. 1 root root 1224 Aug 8 2019 ramps_0x01020001_26.dfu -rw-r--r--. 1 root root 1274 Aug 8 2019 ramps_0x01020200_26.dfu -rw-r--r--. 1 root root 1204 Aug 8 2019 ramps_0x01020200_40.dfu -rw-r--r--. 1 root root 264 Aug 8 2019 ramps_0x01020201_26.dfu -rw-r--r--. 1 root root 264 Aug 8 2019 ramps_0x01020201_40.dfu -rw-r--r--. 1 root root 1796 Aug 8 2019 ramps_0x11020000_40.dfu -rw-r--r--. 1 root root 1802 Aug 8 2019 ramps_0x11020100_40.dfu -rw-r--r--. 1 root root 1926 Aug 8 2019 ramps_0x31010000_40.dfu -rw-r--r--. 1 root root 1922 Aug 8 2019 ramps_0x31010100_40.dfu -rw-r--r--. 1 root root 1820 Aug 8 2019 ramps_0x41020000_40.dfu /usr/lib/firmware/ar3k/1020200: total 68 drwxr-xr-x. 2 root root 67 Oct 16 09:22 . drwxr-xr-x. 8 root root 4096 Oct 16 09:22 .. -rw-r--r--. 1 root root 14 Aug 8 2019 ar3kbdaddr.pst -rw-r--r--. 1 root root 4742 Aug 8 2019 PS_ASIC.pst -rw-r--r--. 1 root root 52221 Aug 8 2019 RamPatch.txt /usr/lib/firmware/ar3k/1020201: total 44 drwxr-xr-x. 2 root root 45 Oct 16 09:22 . drwxr-xr-x. 8 root root 4096 Oct 16 09:22 .. -rw-r--r--. 1 root root 910 Aug 8 2019 PS_ASIC.pst -rw-r--r--. 1 root root 34299 Aug 8 2019 RamPatch.txt /usr/lib/firmware/ar3k/1020201coex: total 8 drwxr-xr-x. 2 root root 50 Oct 16 09:22 . drwxr-xr-x. 8 root root 4096 Oct 16 09:22 .. -rw-r--r--. 1 root root 336 Aug 8 2019 ramps_0x01020201_26_HighPriority.dfu /usr/lib/firmware/ar3k/30000: total 16 drwxr-xr-x. 2 root root 67 Oct 16 09:22 . drwxr-xr-x. 8 root root 4096 Oct 16 09:22 .. -rw-r--r--. 1 root root 14 Aug 8 2019 ar3kbdaddr.pst -rw-r--r--. 1 root root 1353 Aug 8 2019 PS_ASIC.pst -rw-r--r--. 1 root root 2776 Aug 8 2019 RamPatch.txt /usr/lib/firmware/ar3k/30101: total 32 drwxr-xr-x. 2 root root 67 Oct 16 09:22 . drwxr-xr-x. 8 root root 4096 Oct 16 09:22 .. -rw-r--r--. 1 root root 14 Aug 8 2019 ar3kbdaddr.pst -rw-r--r--. 1 root root 1479 Aug 8 2019 PS_ASIC.pst -rw-r--r--. 1 root root 17300 Aug 8 2019 RamPatch.txt /usr/lib/firmware/ar3k/30101coex: total 40 drwxr-xr-x. 2 root root 126 Oct 16 09:22 . drwxr-xr-x. 8 root root 4096 Oct 16 09:22 .. -rw-r--r--. 1 root root 13 Aug 8 2019 ar3kbdaddr.pst -rw-r--r--. 1 root root 2166 Aug 8 2019 PS_ASIC_aclHighPri.pst -rw-r--r--. 1 root root 2166 Aug 8 2019 PS_ASIC_aclLowPri.pst -rw-r--r--. 1 root root 2166 Aug 8 2019 PS_ASIC.pst -rw-r--r--. 1 root root 19436 Aug 8 2019 RamPatch.txt /usr/lib/firmware/asihpi: total 3468 drwxr-xr-x. 2 root root 158 Aug 15 2019 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 255196 Mar 5 2015 dsp2400.bin -rw-r--r--. 1 root root 186396 Mar 5 2015 dsp5000.bin -rw-r--r--. 1 root root 848608 Mar 5 2015 dsp6200.bin -rw-r--r--. 1 root root 59548 Mar 5 2015 dsp6205.bin -rw-r--r--. 1 root root 646928 Mar 5 2015 dsp6400.bin -rw-r--r--. 1 root root 649812 Mar 5 2015 dsp6600.bin -rw-r--r--. 1 root root 364996 Mar 5 2015 dsp8700.bin -rw-r--r--. 1 root root 507124 Mar 5 2015 dsp8900.bin /usr/lib/firmware/ath10k: total 16 drwxr-xr-x. 10 root root 126 Aug 8 2019 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. drwxr-xr-x. 3 root root 19 Aug 8 2019 QCA4019 drwxr-xr-x. 4 root root 32 Aug 8 2019 QCA6174 drwxr-xr-x. 3 root root 19 Aug 8 2019 QCA9377 drwxr-xr-x. 3 root root 19 Aug 8 2019 QCA9887 drwxr-xr-x. 3 root root 19 Aug 8 2019 QCA9888 drwxr-xr-x. 3 root root 19 Aug 8 2019 QCA988X drwxr-xr-x. 3 root root 19 Aug 8 2019 QCA9984 drwxr-xr-x. 3 root root 19 Aug 8 2019 QCA99X0 /usr/lib/firmware/ath10k/QCA4019: total 0 drwxr-xr-x. 3 root root 19 Aug 8 2019 . drwxr-xr-x. 10 root root 126 Aug 8 2019 .. drwxr-xr-x. 2 root root 83 Oct 16 09:22 hw1.0 /usr/lib/firmware/ath10k/QCA4019/hw1.0: total 1044 drwxr-xr-x. 2 root root 83 Oct 16 09:22 . drwxr-xr-x. 3 root root 19 Aug 8 2019 .. -rw-r--r--. 1 root root 449316 Aug 8 2019 board-2.bin -rw-r--r--. 1 root root 583344 Aug 8 2019 firmware-5.bin -rw-r--r--. 1 root root 30479 Aug 8 2019 notice_ath10k_firmware-5.txt /usr/lib/firmware/ath10k/QCA6174: total 0 drwxr-xr-x. 4 root root 32 Aug 8 2019 . drwxr-xr-x. 10 root root 126 Aug 8 2019 .. drwxr-xr-x. 2 root root 100 Oct 16 09:22 hw2.1 drwxr-xr-x. 2 root root 158 Oct 16 09:22 hw3.0 /usr/lib/firmware/ath10k/QCA6174/hw2.1: total 804 drwxr-xr-x. 2 root root 100 Oct 16 09:22 . drwxr-xr-x. 4 root root 32 Aug 8 2019 .. -rw-r--r--. 1 root root 263188 Aug 8 2019 board-2.bin -rw-r--r--. 1 root root 8124 Aug 8 2019 board.bin -rw-r--r--. 1 root root 498172 Aug 8 2019 firmware-5.bin -rw-r--r--. 1 root root 46087 Aug 8 2019 notice_ath10k_firmware-5.txt /usr/lib/firmware/ath10k/QCA6174/hw3.0: total 2136 drwxr-xr-x. 2 root root 158 Oct 16 09:22 . drwxr-xr-x. 4 root root 32 Aug 8 2019 .. -rw-r--r--. 1 root root 567608 Aug 8 2019 board-2.bin -rw-r--r--. 1 root root 8124 Aug 8 2019 board.bin -rw-r--r--. 1 root root 733784 Aug 8 2019 firmware-4.bin -rw-r--r--. 1 root root 731276 Aug 8 2019 firmware-6.bin -rw-r--r--. 1 root root 79689 Aug 8 2019 notice_ath10k_firmware-4.txt -rw-r--r--. 1 root root 53425 Aug 8 2019 notice_ath10k_firmware-6.txt /usr/lib/firmware/ath10k/QCA9377: total 0 drwxr-xr-x. 3 root root 19 Aug 8 2019 . drwxr-xr-x. 10 root root 126 Aug 8 2019 .. drwxr-xr-x. 2 root root 158 Oct 16 09:22 hw1.0 /usr/lib/firmware/ath10k/QCA9377/hw1.0: total 1916 drwxr-xr-x. 2 root root 158 Oct 16 09:22 . drwxr-xr-x. 3 root root 19 Aug 8 2019 .. -rw-r--r--. 1 root root 304308 Aug 8 2019 board-2.bin -rw-r--r--. 1 root root 8124 Aug 8 2019 board.bin -rw-r--r--. 1 root root 783336 Aug 8 2019 firmware-5.bin -rw-r--r--. 1 root root 751436 Aug 8 2019 firmware-6.bin -rw-r--r--. 1 root root 46143 Aug 8 2019 notice_ath10k_firmware-5.txt -rw-r--r--. 1 root root 53425 Aug 8 2019 notice_ath10k_firmware-6.txt /usr/lib/firmware/ath10k/QCA9887: total 0 drwxr-xr-x. 3 root root 19 Aug 8 2019 . drwxr-xr-x. 10 root root 126 Aug 8 2019 .. drwxr-xr-x. 2 root root 81 Oct 16 09:22 hw1.0 /usr/lib/firmware/ath10k/QCA9887/hw1.0: total 256 drwxr-xr-x. 2 root root 81 Oct 16 09:22 . drwxr-xr-x. 3 root root 19 Aug 8 2019 .. -rw-r--r--. 1 root root 1024 Aug 8 2019 board.bin -rw-r--r--. 1 root root 237660 Aug 8 2019 firmware-5.bin -rw-r--r--. 1 root root 15441 Aug 8 2019 notice_ath10k_firmware-5.txt /usr/lib/firmware/ath10k/QCA9888: total 0 drwxr-xr-x. 3 root root 19 Aug 8 2019 . drwxr-xr-x. 10 root root 126 Aug 8 2019 .. drwxr-xr-x. 2 root root 83 Oct 16 09:22 hw2.0 /usr/lib/firmware/ath10k/QCA9888/hw2.0: total 792 drwxr-xr-x. 2 root root 83 Oct 16 09:22 . drwxr-xr-x. 3 root root 19 Aug 8 2019 .. -rw-r--r--. 1 root root 84928 Aug 8 2019 board-2.bin -rw-r--r--. 1 root root 688536 Aug 8 2019 firmware-5.bin -rw-r--r--. 1 root root 30479 Aug 8 2019 notice_ath10k_firmware-5.txt /usr/lib/firmware/ath10k/QCA988X: total 0 drwxr-xr-x. 3 root root 19 Aug 8 2019 . drwxr-xr-x. 10 root root 126 Aug 8 2019 .. drwxr-xr-x. 2 root root 139 Oct 16 09:22 hw2.0 /usr/lib/firmware/ath10k/QCA988X/hw2.0: total 520 drwxr-xr-x. 2 root root 139 Oct 16 09:22 . drwxr-xr-x. 3 root root 19 Aug 8 2019 .. -rw-r--r--. 1 root root 2116 Aug 8 2019 board.bin -rw-r--r--. 1 root root 241892 Aug 8 2019 firmware-4.bin -rw-r--r--. 1 root root 248840 Aug 8 2019 firmware-5.bin -rw-r--r--. 1 root root 13890 Aug 8 2019 notice_ath10k_firmware-4.txt -rw-r--r--. 1 root root 15441 Aug 8 2019 notice_ath10k_firmware-5.txt /usr/lib/firmware/ath10k/QCA9984: total 0 drwxr-xr-x. 3 root root 19 Aug 8 2019 . drwxr-xr-x. 10 root root 126 Aug 8 2019 .. drwxr-xr-x. 2 root root 83 Oct 16 09:22 hw1.0 /usr/lib/firmware/ath10k/QCA9984/hw1.0: total 864 drwxr-xr-x. 2 root root 83 Oct 16 09:22 . drwxr-xr-x. 3 root root 19 Aug 8 2019 .. -rw-r--r--. 1 root root 171916 Aug 8 2019 board-2.bin -rw-r--r--. 1 root root 676316 Aug 8 2019 firmware-5.bin -rw-r--r--. 1 root root 30479 Aug 8 2019 notice_ath10k_firmware-5.txt /usr/lib/firmware/ath10k/QCA99X0: total 0 drwxr-xr-x. 3 root root 19 Aug 8 2019 . drwxr-xr-x. 10 root root 126 Aug 8 2019 .. drwxr-xr-x. 2 root root 81 Oct 16 09:22 hw2.0 /usr/lib/firmware/ath10k/QCA99X0/hw2.0: total 516 drwxr-xr-x. 2 root root 81 Oct 16 09:22 . drwxr-xr-x. 3 root root 19 Aug 8 2019 .. -rw-r--r--. 1 root root 12064 Aug 8 2019 board.bin -rw-r--r--. 1 root root 479332 Aug 8 2019 firmware-5.bin -rw-r--r--. 1 root root 29133 Aug 8 2019 notice_ath10k_firmware-5.txt /usr/lib/firmware/ath9k_htc: total 140 drwxr-xr-x. 2 root root 56 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 72812 Aug 8 2019 htc_7010-1.4.0.fw -rw-r--r--. 1 root root 51008 Aug 8 2019 htc_9271-1.4.0.fw /usr/lib/firmware/atmel: total 524 drwxr-xr-x. 2 root root 116 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 109828 Aug 8 2019 wilc1000_ap_fw.bin -rw-r--r--. 1 root root 124540 Aug 8 2019 wilc1000_fw.bin -rw-r--r--. 1 root root 143116 Aug 8 2019 wilc1000_p2p_fw.bin -rw-r--r--. 1 root root 136344 Aug 8 2019 wilc1000_wifi_firmware.bin /usr/lib/firmware/atusb: total 44 drwxr-xr-x. 2 root root 86 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 5800 Aug 8 2019 atusb-0.2.dfu -rw-r--r--. 1 root root 6042 Aug 8 2019 atusb-0.3.dfu -rw-r--r--. 1 root root 1019 Aug 8 2019 ChangeLog -rw-r--r--. 1 root root 6058 Aug 8 2019 rzusb-0.3.bin /usr/lib/firmware/av7110: total 28 drwxr-xr-x. 2 root root 56 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 212 Aug 8 2019 bootcode.bin -rw-r--r--. 1 root root 2820 Aug 8 2019 Boot.S -rw-r--r--. 1 root root 264 Aug 8 2019 Makefile /usr/lib/firmware/bnx2: total 1452 drwxr-xr-x. 2 root root 4096 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 92628 Aug 8 2019 bnx2-mips-06-4.6.16.fw -rw-r--r--. 1 root root 93172 Aug 8 2019 bnx2-mips-06-5.0.0.j3.fw -rw-r--r--. 1 root root 94252 Aug 8 2019 bnx2-mips-06-5.0.0.j6.fw -rw-r--r--. 1 root root 92780 Aug 8 2019 bnx2-mips-06-6.0.15.fw -rw-r--r--. 1 root root 92792 Aug 8 2019 bnx2-mips-06-6.2.1.fw -rw-r--r--. 1 root root 92824 Aug 8 2019 bnx2-mips-06-6.2.3.fw -rw-r--r--. 1 root root 92760 Aug 8 2019 bnx2-mips-09-4.6.17.fw -rw-r--r--. 1 root root 96996 Aug 8 2019 bnx2-mips-09-5.0.0.j15.fw -rw-r--r--. 1 root root 96504 Aug 8 2019 bnx2-mips-09-5.0.0.j3.fw -rw-r--r--. 1 root root 96616 Aug 8 2019 bnx2-mips-09-5.0.0.j9.fw -rw-r--r--. 1 root root 103488 Aug 8 2019 bnx2-mips-09-6.0.17.fw -rw-r--r--. 1 root root 103868 Aug 8 2019 bnx2-mips-09-6.2.1a.fw -rw-r--r--. 1 root root 103904 Aug 8 2019 bnx2-mips-09-6.2.1b.fw -rw-r--r--. 1 root root 104104 Aug 8 2019 bnx2-mips-09-6.2.1.fw -rw-r--r--. 1 root root 6872 Aug 8 2019 bnx2-rv2p-06-4.6.16.fw -rw-r--r--. 1 root root 6600 Aug 8 2019 bnx2-rv2p-06-5.0.0.j3.fw -rw-r--r--. 1 root root 5696 Aug 8 2019 bnx2-rv2p-06-6.0.15.fw -rw-r--r--. 1 root root 7672 Aug 8 2019 bnx2-rv2p-09-4.6.15.fw -rw-r--r--. 1 root root 7224 Aug 8 2019 bnx2-rv2p-09-5.0.0.j10.fw -rw-r--r--. 1 root root 7216 Aug 8 2019 bnx2-rv2p-09-5.0.0.j3.fw -rw-r--r--. 1 root root 6104 Aug 8 2019 bnx2-rv2p-09-6.0.17.fw -rw-r--r--. 1 root root 7808 Aug 8 2019 bnx2-rv2p-09ax-5.0.0.j10.fw -rw-r--r--. 1 root root 7800 Aug 8 2019 bnx2-rv2p-09ax-5.0.0.j3.fw -rw-r--r--. 1 root root 6616 Aug 8 2019 bnx2-rv2p-09ax-6.0.17.fw /usr/lib/firmware/bnx2x: total 9436 drwxr-xr-x. 2 root root 4096 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 151568 Aug 8 2019 bnx2x-e1-6.0.34.0.fw -rw-r--r--. 1 root root 151680 Aug 8 2019 bnx2x-e1-6.2.5.0.fw -rw-r--r--. 1 root root 151688 Aug 8 2019 bnx2x-e1-6.2.9.0.fw -rw-r--r--. 1 root root 161144 Aug 8 2019 bnx2x-e1-7.0.20.0.fw -rw-r--r--. 1 root root 161248 Aug 8 2019 bnx2x-e1-7.0.23.0.fw -rw-r--r--. 1 root root 161368 Aug 8 2019 bnx2x-e1-7.0.29.0.fw -rw-r--r--. 1 root root 164392 Aug 8 2019 bnx2x-e1-7.10.51.0.fw -rw-r--r--. 1 root root 170192 Aug 8 2019 bnx2x-e1-7.12.30.0.fw -rw-r--r--. 1 root root 170096 Aug 8 2019 bnx2x-e1-7.13.1.0.fw -rw-r--r--. 1 root root 169904 Aug 8 2019 bnx2x-e1-7.13.11.0.fw -rw-r--r--. 1 root root 162128 Aug 8 2019 bnx2x-e1-7.2.16.0.fw -rw-r--r--. 1 root root 162152 Aug 8 2019 bnx2x-e1-7.2.51.0.fw -rw-r--r--. 1 root root 163576 Aug 8 2019 bnx2x-e1-7.8.17.0.fw -rw-r--r--. 1 root root 163592 Aug 8 2019 bnx2x-e1-7.8.19.0.fw -rw-r--r--. 1 root root 163352 Aug 8 2019 bnx2x-e1-7.8.2.0.fw -rw-r--r--. 1 root root 210776 Aug 8 2019 bnx2x-e1h-6.0.34.0.fw -rw-r--r--. 1 root root 210824 Aug 8 2019 bnx2x-e1h-6.2.5.0.fw -rw-r--r--. 1 root root 211000 Aug 8 2019 bnx2x-e1h-6.2.9.0.fw -rw-r--r--. 1 root root 168552 Aug 8 2019 bnx2x-e1h-7.0.20.0.fw -rw-r--r--. 1 root root 168544 Aug 8 2019 bnx2x-e1h-7.0.23.0.fw -rw-r--r--. 1 root root 168680 Aug 8 2019 bnx2x-e1h-7.0.29.0.fw -rw-r--r--. 1 root root 173016 Aug 8 2019 bnx2x-e1h-7.10.51.0.fw -rw-r--r--. 1 root root 178984 Aug 8 2019 bnx2x-e1h-7.12.30.0.fw -rw-r--r--. 1 root root 178992 Aug 8 2019 bnx2x-e1h-7.13.1.0.fw -rw-r--r--. 1 root root 178328 Aug 8 2019 bnx2x-e1h-7.13.11.0.fw -rw-r--r--. 1 root root 169896 Aug 8 2019 bnx2x-e1h-7.2.16.0.fw -rw-r--r--. 1 root root 169960 Aug 8 2019 bnx2x-e1h-7.2.51.0.fw -rw-r--r--. 1 root root 171920 Aug 8 2019 bnx2x-e1h-7.8.17.0.fw -rw-r--r--. 1 root root 171920 Aug 8 2019 bnx2x-e1h-7.8.19.0.fw -rw-r--r--. 1 root root 171368 Aug 8 2019 bnx2x-e1h-7.8.2.0.fw -rw-r--r--. 1 root root 247008 Aug 8 2019 bnx2x-e2-6.0.34.0.fw -rw-r--r--. 1 root root 247232 Aug 8 2019 bnx2x-e2-6.2.5.0.fw -rw-r--r--. 1 root root 247504 Aug 8 2019 bnx2x-e2-6.2.9.0.fw -rw-r--r--. 1 root root 290952 Aug 8 2019 bnx2x-e2-7.0.20.0.fw -rw-r--r--. 1 root root 289448 Aug 8 2019 bnx2x-e2-7.0.23.0.fw -rw-r--r--. 1 root root 289848 Aug 8 2019 bnx2x-e2-7.0.29.0.fw -rw-r--r--. 1 root root 321456 Aug 8 2019 bnx2x-e2-7.10.51.0.fw -rw-r--r--. 1 root root 321320 Aug 8 2019 bnx2x-e2-7.12.30.0.fw -rw-r--r--. 1 root root 320936 Aug 8 2019 bnx2x-e2-7.13.1.0.fw -rw-r--r--. 1 root root 322296 Aug 8 2019 bnx2x-e2-7.13.11.0.fw -rw-r--r--. 1 root root 295072 Aug 8 2019 bnx2x-e2-7.2.16.0.fw -rw-r--r--. 1 root root 295264 Aug 8 2019 bnx2x-e2-7.2.51.0.fw -rw-r--r--. 1 root root 310032 Aug 8 2019 bnx2x-e2-7.8.17.0.fw -rw-r--r--. 1 root root 310440 Aug 8 2019 bnx2x-e2-7.8.19.0.fw -rw-r--r--. 1 root root 304664 Aug 8 2019 bnx2x-e2-7.8.2.0.fw /usr/lib/firmware/brcm: total 16740 drwxr-xr-x. 2 root root 4096 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 54734 Aug 8 2019 BCM-0bb4-0306.hcd -rw-r--r--. 1 root root 269595 Aug 8 2019 bcm4329-fullmac-4.bin -rw-r--r--. 1 root root 96224 Aug 8 2019 bcm43xx-0.fw -rw-r--r--. 1 root root 180 Aug 8 2019 bcm43xx_hdr-0.fw -rw-r--r--. 1 root root 397312 Aug 8 2019 brcmfmac43143.bin -rw-r--r--. 1 root root 385067 Aug 8 2019 brcmfmac43143-sdio.bin -rw-r--r--. 1 root root 348160 Aug 8 2019 brcmfmac43236b.bin -rw-r--r--. 1 root root 455745 Aug 8 2019 brcmfmac43241b0-sdio.bin -rw-r--r--. 1 root root 403855 Aug 8 2019 brcmfmac43241b4-sdio.bin -rw-r--r--. 1 root root 408682 Aug 8 2019 brcmfmac43241b5-sdio.bin -rw-r--r--. 1 root root 479232 Aug 8 2019 brcmfmac43242a.bin -rw-r--r--. 1 root root 253748 Aug 8 2019 brcmfmac4329-sdio.bin -rw-r--r--. 1 root root 222126 Aug 8 2019 brcmfmac4330-sdio.bin -rw-r--r--. 1 root root 1509 Aug 8 2019 brcmfmac4330-sdio.Prowise-PT301.txt -rw-r--r--. 1 root root 400864 Aug 8 2019 brcmfmac43340-sdio.bin -rw-r--r--. 1 root root 1693 Aug 8 2019 brcmfmac43340-sdio.meegopad-t08.txt -rw-r--r--. 1 root root 451566 Aug 8 2019 brcmfmac4334-sdio.bin -rw-r--r--. 1 root root 569291 Aug 8 2019 brcmfmac4335-sdio.bin -rw-r--r--. 1 root root 202107 Aug 8 2019 brcmfmac43362-sdio.bin -rw-r--r--. 1 root root 803 Aug 8 2019 brcmfmac43362-sdio.cubietech,cubietruck.txt lrwxrwxrwx. 1 root root 43 Oct 16 09:22 brcmfmac43362-sdio.lemaker,bananapro.txt -> brcmfmac43362-sdio.cubietech,cubietruck.txt -rw-r--r--. 1 root root 562183 Aug 8 2019 brcmfmac4339-sdio.bin -rw-r--r--. 1 root root 382455 Aug 8 2019 brcmfmac43430a0-sdio.bin -rw-r--r--. 1 root root 951 Aug 8 2019 brcmfmac43430a0-sdio.jumper-ezpad-mini3.txt -rw-r--r--. 1 root root 989 Aug 8 2019 brcmfmac43430a0-sdio.ONDA-V80 PLUS.txt -rw-r--r--. 1 root root 875 Aug 8 2019 brcmfmac43430-sdio.AP6212.txt -rw-r--r--. 1 root root 388739 Aug 8 2019 brcmfmac43430-sdio.bin -rw-r--r--. 1 root root 928 Aug 8 2019 brcmfmac43430-sdio.Hampoo-D2D3_Vi8A1.txt -rw-r--r--. 1 root root 831 Aug 8 2019 brcmfmac43430-sdio.MUR1DX.txt -rw-r--r--. 1 root root 874 Aug 8 2019 brcmfmac43430-sdio.raspberrypi,3-model-b.txt -rw-r--r--. 1 root root 488193 Aug 8 2019 brcmfmac43455-sdio.bin -rw-r--r--. 1 root root 1864 Aug 8 2019 brcmfmac43455-sdio.raspberrypi,3-model-b-plus.txt -rw-r--r--. 1 root root 623304 Aug 8 2019 brcmfmac4350c2-pcie.bin -rw-r--r--. 1 root root 626140 Aug 8 2019 brcmfmac4350-pcie.bin -rw-r--r--. 1 root root 605388 Aug 8 2019 brcmfmac4354-sdio.bin -rw-r--r--. 1 root root 557056 Aug 8 2019 brcmfmac43569.bin -rw-r--r--. 1 root root 648770 Aug 8 2019 brcmfmac4356-pcie.bin -rw-r--r--. 1 root root 2515 Aug 8 2019 brcmfmac4356-pcie.gpd-win-pocket.txt -rw-r--r--. 1 root root 526383 Aug 8 2019 brcmfmac4356-sdio.bin -rw-r--r--. 1 root root 550333 Aug 8 2019 brcmfmac43570-pcie.bin -rw-r--r--. 1 root root 633817 Aug 8 2019 brcmfmac4358-pcie.bin -rw-r--r--. 1 root root 595472 Aug 8 2019 brcmfmac43602-pcie.ap.bin -rw-r--r--. 1 root root 635449 Aug 8 2019 brcmfmac43602-pcie.bin -rw-r--r--. 1 root root 1105361 Aug 8 2019 brcmfmac4366b-pcie.bin -rw-r--r--. 1 root root 1120971 Aug 8 2019 brcmfmac4366c-pcie.bin -rw-r--r--. 1 root root 623448 Aug 8 2019 brcmfmac4371-pcie.bin -rw-r--r--. 1 root root 479232 Aug 8 2019 brcmfmac4373.bin -rw-r--r--. 1 root root 457994 Aug 8 2019 brcmfmac4373-sdio.bin /usr/lib/firmware/cadence: total 144 drwxr-xr-x. 2 root root 26 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rwxr-xr-x. 1 root root 131072 Aug 8 2019 mhdp8546.bin /usr/lib/firmware/cavium: total 52 drwxr-xr-x. 2 root root 27 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 35010 Aug 8 2019 cnn55xx_se.fw /usr/lib/firmware/cis: total 88 drwxr-xr-x. 3 root root 4096 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 137 Aug 8 2019 3CCFEM556.cis -rw-r--r--. 1 root root 134 Aug 8 2019 3CXEM556.cis -rw-r--r--. 1 root root 109 Aug 8 2019 COMpad2.cis -rw-r--r--. 1 root root 76 Aug 8 2019 COMpad4.cis -rw-r--r--. 1 root root 136 Aug 8 2019 DP83903.cis -rw-r--r--. 1 root root 253 Aug 8 2019 LA-PCM.cis -rw-r--r--. 1 root root 264 Aug 8 2019 Makefile -rw-r--r--. 1 root root 107 Aug 8 2019 MT5634ZLX.cis -rw-r--r--. 1 root root 54 Aug 8 2019 NE2K.cis -rw-r--r--. 1 root root 210 Aug 8 2019 PCMLM28.cis -rw-r--r--. 1 root root 68 Aug 8 2019 PE-200.cis -rw-r--r--. 1 root root 74 Aug 8 2019 PE520.cis -rw-r--r--. 1 root root 86 Aug 8 2019 RS-COM-2P.cis drwxr-xr-x. 2 root root 254 Oct 16 09:22 src -rw-r--r--. 1 root root 122 Aug 8 2019 SW_555_SER.cis -rw-r--r--. 1 root root 140 Aug 8 2019 SW_7xx_SER.cis -rw-r--r--. 1 root root 132 Aug 8 2019 SW_8xx_SER.cis -rw-r--r--. 1 root root 85 Aug 8 2019 tamarack.cis /usr/lib/firmware/cis/src: total 56 drwxr-xr-x. 2 root root 254 Oct 16 09:22 . drwxr-xr-x. 3 root root 4096 Oct 16 09:22 .. -rw-r--r--. 1 root root 519 Aug 8 2019 3CCFEM556.cis -rw-r--r--. 1 root root 515 Aug 8 2019 3CXEM556.cis -rw-r--r--. 1 root root 576 Aug 8 2019 COMpad2.cis -rw-r--r--. 1 root root 368 Aug 8 2019 COMpad4.cis -rw-r--r--. 1 root root 586 Aug 8 2019 DP83903.cis -rw-r--r--. 1 root root 1167 Aug 8 2019 LA-PCM.cis -rw-r--r--. 1 root root 507 Aug 8 2019 MT5634ZLX.cis -rw-r--r--. 1 root root 269 Aug 8 2019 NE2K.cis -rw-r--r--. 1 root root 1041 Aug 8 2019 PCMLM28.cis -rw-r--r--. 1 root root 307 Aug 8 2019 PE-200.cis -rw-r--r--. 1 root root 300 Aug 8 2019 PE520.cis -rw-r--r--. 1 root root 441 Aug 8 2019 RS-COM-2P.cis -rw-r--r--. 1 root root 475 Aug 8 2019 tamarack.cis /usr/lib/firmware/cpia2: total 20 drwxr-xr-x. 2 root root 29 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 824 Aug 8 2019 stv0672_vp4.bin /usr/lib/firmware/cs46xx: total 100 drwxr-xr-x. 2 root root 96 Aug 15 2019 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 55320 Mar 5 2015 ba1 -rw-r--r--. 1 root root 7880 Mar 5 2015 cwc4630 -rw-r--r--. 1 root root 5228 Mar 5 2015 cwcasync -rw-r--r--. 1 root root 600 Mar 5 2015 cwcbinhack -rw-r--r--. 1 root root 3128 Mar 5 2015 cwcdma -rw-r--r--. 1 root root 592 Mar 5 2015 cwcsnoop /usr/lib/firmware/cxgb3: total 196 drwxr-xr-x. 2 root root 253 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 1088 Aug 8 2019 ael2005_opt_edc.bin -rw-r--r--. 1 root root 1468 Aug 8 2019 ael2005_twx_edc.bin -rw-r--r--. 1 root root 1584 Aug 8 2019 ael2020_twx_edc.bin -rw-r--r--. 1 root root 2564 Aug 8 2019 t3b_psram-1.1.0.bin -rw-r--r--. 1 root root 2564 Aug 8 2019 t3c_psram-1.1.0.bin -rw-r--r--. 1 root root 30076 Aug 8 2019 t3fw-7.0.0.bin -rw-r--r--. 1 root root 30932 Aug 8 2019 t3fw-7.10.0.bin -rw-r--r--. 1 root root 30136 Aug 8 2019 t3fw-7.1.0.bin -rw-r--r--. 1 root root 31812 Aug 8 2019 t3fw-7.12.0.bin -rw-r--r--. 1 root root 30648 Aug 8 2019 t3fw-7.4.0.bin /usr/lib/firmware/cxgb4: total 4520 drwxr-xr-x. 2 root root 271 Oct 16 09:23 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 179202 Aug 8 2019 aq1202_fw.cld -rw-r--r--. 1 root root 208900 Aug 8 2019 bcm8483.bin -rw-r--r--. 1 root root 539648 Aug 8 2019 t4fw-1.14.4.0.bin -rw-r--r--. 1 root root 541184 Aug 8 2019 t4fw-1.15.37.0.bin -rw-r--r--. 1 root root 570880 Aug 8 2019 t4fw-1.23.4.0.bin lrwxrwxrwx. 1 root root 17 Oct 16 09:22 t4fw.bin -> t4fw-1.23.4.0.bin -rw-r--r--. 1 root root 593920 Aug 8 2019 t5fw-1.14.4.0.bin -rw-r--r--. 1 root root 596992 Aug 8 2019 t5fw-1.15.37.0.bin -rw-r--r--. 1 root root 659456 Aug 8 2019 t5fw-1.23.4.0.bin lrwxrwxrwx. 1 root root 17 Oct 16 09:22 t5fw.bin -> t5fw-1.23.4.0.bin -rw-r--r--. 1 root root 708608 Aug 8 2019 t6fw-1.23.4.0.bin lrwxrwxrwx. 1 root root 17 Oct 16 09:22 t6fw.bin -> t6fw-1.23.4.0.bin /usr/lib/firmware/dabusb: total 40 drwxr-xr-x. 2 root root 46 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 12042 Aug 8 2019 bitstream.bin -rw-r--r--. 1 root root 9822 Aug 8 2019 firmware.fw /usr/lib/firmware/dpaa2: total 16 drwxr-xr-x. 3 root root 16 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. drwxr-xr-x. 2 root root 96 Oct 16 09:22 mc /usr/lib/firmware/dpaa2/mc: total 2868 drwxr-xr-x. 2 root root 96 Oct 16 09:22 . drwxr-xr-x. 3 root root 16 Oct 16 09:22 .. -rw-r--r--. 1 root root 904152 Aug 8 2019 mc_10.10.0_ls1088a.itb -rw-r--r--. 1 root root 1012808 Aug 8 2019 mc_10.10.0_ls2088a.itb -rw-r--r--. 1 root root 1014024 Aug 8 2019 mc_10.10.0_lx2160a.itb /usr/lib/firmware/dsp56k: total 28 drwxr-xr-x. 2 root root 70 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 375 Aug 8 2019 bootstrap.bin -rw-r--r--. 1 root root 996 Aug 8 2019 concat-bootstrap.pl -rw-r--r--. 1 root root 166 Aug 8 2019 Makefile /usr/lib/firmware/e100: total 28 drwxr-xr-x. 2 root root 75 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 539 Aug 8 2019 d101m_ucode.bin -rw-r--r--. 1 root root 539 Aug 8 2019 d101s_ucode.bin -rw-r--r--. 1 root root 539 Aug 8 2019 d102e_ucode.bin /usr/lib/firmware/ea: total 804 drwxr-xr-x. 2 root root 4096 Aug 15 2019 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 78761 Mar 5 2015 3g_asic.fw -rw-r--r--. 1 root root 17162 Mar 5 2015 darla20_dsp.fw -rw-r--r--. 1 root root 15018 Mar 5 2015 darla24_dsp.fw -rw-r--r--. 1 root root 35838 Mar 5 2015 echo3g_dsp.fw -rw-r--r--. 1 root root 19022 Mar 5 2015 gina20_dsp.fw -rw-r--r--. 1 root root 31146 Mar 5 2015 gina24_301_asic.fw -rw-r--r--. 1 root root 22342 Mar 5 2015 gina24_301_dsp.fw -rw-r--r--. 1 root root 31146 Mar 5 2015 gina24_361_asic.fw -rw-r--r--. 1 root root 22450 Mar 5 2015 gina24_361_dsp.fw -rw-r--r--. 1 root root 16270 Mar 5 2015 indigo_dj_dsp.fw -rw-r--r--. 1 root root 15606 Mar 5 2015 indigo_djx_dsp.fw -rw-r--r--. 1 root root 15366 Mar 5 2015 indigo_dsp.fw -rw-r--r--. 1 root root 16798 Mar 5 2015 indigo_io_dsp.fw -rw-r--r--. 1 root root 15554 Mar 5 2015 indigo_iox_dsp.fw -rw-r--r--. 1 root root 32385 Mar 5 2015 layla20_asic.fw -rw-r--r--. 1 root root 24710 Mar 5 2015 layla20_dsp.fw -rw-r--r--. 1 root root 31146 Mar 5 2015 layla24_1_asic.fw -rw-r--r--. 1 root root 31146 Mar 5 2015 layla24_2A_asic.fw -rw-r--r--. 1 root root 31146 Mar 5 2015 layla24_2S_asic.fw -rw-r--r--. 1 root root 27930 Mar 5 2015 layla24_dsp.fw -rw-r--r--. 1 root root 634 Mar 5 2015 loader_dsp.fw -rw-r--r--. 1 root root 20374 Mar 5 2015 mia_dsp.fw -rw-r--r--. 1 root root 31146 Mar 5 2015 mona_2_asic.fw -rw-r--r--. 1 root root 31146 Mar 5 2015 mona_301_1_asic_48.fw -rw-r--r--. 1 root root 31146 Mar 5 2015 mona_301_1_asic_96.fw -rw-r--r--. 1 root root 24130 Mar 5 2015 mona_301_dsp.fw -rw-r--r--. 1 root root 31146 Mar 5 2015 mona_361_1_asic_48.fw -rw-r--r--. 1 root root 31146 Mar 5 2015 mona_361_1_asic_96.fw -rw-r--r--. 1 root root 24258 Mar 5 2015 mona_361_dsp.fw /usr/lib/firmware/edgeport: total 88 drwxr-xr-x. 2 root root 85 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 7042 Aug 8 2019 boot2.fw -rw-r--r--. 1 root root 7250 Aug 8 2019 boot.fw -rw-r--r--. 1 root root 16566 Aug 8 2019 down2.fw -rw-r--r--. 1 root root 12942 Aug 8 2019 down3.bin -rw-r--r--. 1 root root 18098 Aug 8 2019 down.fw /usr/lib/firmware/emi26: total 152 drwxr-xr-x. 2 root root 62 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 104858 Aug 8 2019 bitstream.fw -rw-r--r--. 1 root root 28070 Aug 8 2019 firmware.fw -rw-r--r--. 1 root root 1942 Aug 8 2019 loader.fw /usr/lib/firmware/emi62: total 224 drwxr-xr-x. 2 root root 74 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 146490 Aug 8 2019 bitstream.fw -rw-r--r--. 1 root root 1910 Aug 8 2019 loader.fw -rw-r--r--. 1 root root 28798 Aug 8 2019 midi.fw -rw-r--r--. 1 root root 28606 Aug 8 2019 spdif.fw /usr/lib/firmware/emu: total 416 drwxr-xr-x. 2 root root 127 Aug 15 2019 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 78756 Mar 5 2015 audio_dock.fw -rw-r--r--. 1 root root 54908 Mar 5 2015 emu0404.fw -rw-r--r--. 1 root root 72668 Mar 5 2015 emu1010b.fw -rw-r--r--. 1 root root 54908 Mar 5 2015 emu1010_notebook.fw -rw-r--r--. 1 root root 78756 Mar 5 2015 hana.fw -rw-r--r--. 1 root root 54908 Mar 5 2015 micro_dock.fw /usr/lib/firmware/ene-ub6250: total 40 drwxr-xr-x. 2 root root 123 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 2048 Aug 8 2019 ms_init.bin -rw-r--r--. 1 root root 2048 Aug 8 2019 msp_rdwr.bin -rw-r--r--. 1 root root 2048 Aug 8 2019 ms_rdwr.bin -rw-r--r--. 1 root root 2048 Aug 8 2019 sd_init1.bin -rw-r--r--. 1 root root 2048 Aug 8 2019 sd_init2.bin -rw-r--r--. 1 root root 2048 Aug 8 2019 sd_rdwr.bin /usr/lib/firmware/ess: total 24 drwxr-xr-x. 2 root root 69 Aug 15 2019 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 1898 Mar 5 2015 maestro3_assp_kernel.fw -rw-r--r--. 1 root root 786 Mar 5 2015 maestro3_assp_minisrc.fw /usr/lib/firmware/go7007: total 220 drwxr-xr-x. 2 root root 160 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 30800 Aug 8 2019 go7007fw.bin -rw-r--r--. 1 root root 124668 Aug 8 2019 go7007tv.bin -rw-r--r--. 1 root root 5793 Aug 8 2019 lr192.fw -rw-r--r--. 1 root root 5838 Aug 8 2019 px-m402u.fw -rw-r--r--. 1 root root 6581 Aug 8 2019 px-tv402u.fw -rw-r--r--. 1 root root 1092 Aug 8 2019 s2250-1.fw -rw-r--r--. 1 root root 9508 Aug 8 2019 s2250-2.fw -rw-r--r--. 1 root root 6381 Aug 8 2019 wis-startrek.fw /usr/lib/firmware/i915: total 1892 drwxr-xr-x. 2 root root 4096 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 8380 Aug 8 2019 bxt_dmc_ver1_07.bin lrwxrwxrwx. 1 root root 19 Oct 16 09:22 bxt_dmc_ver1.bin -> bxt_dmc_ver1_07.bin -rw-r--r--. 1 root root 140928 Aug 8 2019 bxt_guc_ver8_7.bin -rw-r--r--. 1 root root 146432 Aug 8 2019 bxt_guc_ver9_29.bin -rw-r--r--. 1 root root 154432 Aug 8 2019 bxt_huc_ver01_07_1398.bin -rw-r--r--. 1 root root 146880 Aug 8 2019 bxt_huc_ver01_8_2893.bin -rw-r--r--. 1 root root 11224 Aug 8 2019 cnl_dmc_ver1_06.bin -rw-r--r--. 1 root root 11268 Aug 8 2019 cnl_dmc_ver1_07.bin -rw-r--r--. 1 root root 8800 Aug 8 2019 glk_dmc_ver1_04.bin -rw-r--r--. 1 root root 25716 Aug 8 2019 icl_dmc_ver1_07.bin -rw-r--r--. 1 root root 8616 Aug 8 2019 kbl_dmc_ver1_01.bin -rw-r--r--. 1 root root 8840 Aug 8 2019 kbl_dmc_ver1_04.bin lrwxrwxrwx. 1 root root 19 Oct 16 09:22 kbl_dmc_ver1.bin -> kbl_dmc_ver1_01.bin -rw-r--r--. 1 root root 142656 Aug 8 2019 kbl_guc_ver9_14.bin -rw-r--r--. 1 root root 147776 Aug 8 2019 kbl_guc_ver9_39.bin -rw-r--r--. 1 root root 218688 Aug 8 2019 kbl_huc_ver02_00_1810.bin -rw-r--r--. 1 root root 8824 Aug 8 2019 skl_dmc_ver1_23.bin -rw-r--r--. 1 root root 8928 Aug 8 2019 skl_dmc_ver1_26.bin -rw-r--r--. 1 root root 8928 Aug 8 2019 skl_dmc_ver1_27.bin lrwxrwxrwx. 1 root root 19 Oct 16 09:22 skl_dmc_ver1.bin -> skl_dmc_ver1_26.bin -rw-r--r--. 1 root root 109636 Aug 8 2019 skl_guc_ver1.bin -rw-r--r--. 1 root root 128320 Aug 8 2019 skl_guc_ver4.bin -rw-r--r--. 1 root root 129024 Aug 8 2019 skl_guc_ver6_1.bin lrwxrwxrwx. 1 root root 18 Oct 16 09:22 skl_guc_ver6.bin -> skl_guc_ver6_1.bin -rw-r--r--. 1 root root 147520 Aug 8 2019 skl_guc_ver9_33.bin -rw-r--r--. 1 root root 140992 Aug 8 2019 skl_huc_ver01_07_1398.bin /usr/lib/firmware/imx: total 16 drwxr-xr-x. 3 root root 18 Aug 8 2019 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. drwxr-xr-x. 2 root root 50 Oct 16 09:22 sdma /usr/lib/firmware/imx/sdma: total 8 drwxr-xr-x. 2 root root 50 Oct 16 09:22 . drwxr-xr-x. 3 root root 18 Aug 8 2019 .. -rw-r--r--. 1 root root 2196 Aug 8 2019 sdma-imx6q.bin -rw-r--r--. 1 root root 2302 Aug 8 2019 sdma-imx7d.bin /usr/lib/firmware/intel: total 16460 drwxr-xr-x. 2 root root 8192 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. lrwxrwxrwx. 1 root root 21 Oct 16 09:22 dsp_fw_bxtn.bin -> dsp_fw_bxtn_v3366.bin -rw-r--r--. 1 root root 505608 Aug 8 2019 dsp_fw_bxtn_v2219.bin -rw-r--r--. 1 root root 505608 Aug 8 2019 dsp_fw_bxtn_v3366.bin lrwxrwxrwx. 1 root root 20 Oct 16 09:22 dsp_fw_cnl.bin -> dsp_fw_cnl_v1858.bin -rw-r--r--. 1 root root 583852 Aug 8 2019 dsp_fw_cnl_v1191.bin -rw-r--r--. 1 root root 583852 Aug 8 2019 dsp_fw_cnl_v1858.bin lrwxrwxrwx. 1 root root 20 Oct 16 09:22 dsp_fw_glk.bin -> dsp_fw_glk_v3366.bin -rw-r--r--. 1 root root 505608 Aug 8 2019 dsp_fw_glk_v1814.bin -rw-r--r--. 1 root root 505608 Aug 8 2019 dsp_fw_glk_v2768.bin -rw-r--r--. 1 root root 505608 Aug 8 2019 dsp_fw_glk_v2880.bin -rw-r--r--. 1 root root 505608 Aug 8 2019 dsp_fw_glk_v3366.bin lrwxrwxrwx. 1 root root 20 Oct 16 09:22 dsp_fw_kbl.bin -> dsp_fw_kbl_v3402.bin -rw-r--r--. 1 root root 238920 Aug 8 2019 dsp_fw_kbl_v1037.bin -rw-r--r--. 1 root root 238920 Aug 8 2019 dsp_fw_kbl_v2042.bin -rw-r--r--. 1 root root 243016 Aug 8 2019 dsp_fw_kbl_v2630.bin -rw-r--r--. 1 root root 243016 Aug 8 2019 dsp_fw_kbl_v3266.bin -rw-r--r--. 1 root root 247112 Aug 8 2019 dsp_fw_kbl_v3402.bin -rw-r--r--. 1 root root 243016 Aug 8 2019 dsp_fw_kbl_v3420.bin -rw-r--r--. 1 root root 238920 Aug 8 2019 dsp_fw_kbl_v701.bin lrwxrwxrwx. 1 root root 24 Oct 16 09:22 dsp_fw_release.bin -> dsp_fw_release_v3402.bin -rw-r--r--. 1 root root 247112 Aug 8 2019 dsp_fw_release_v3402.bin -rw-r--r--. 1 root root 221184 Aug 8 2019 dsp_fw_release_v969.bin -rw-r--r--. 1 root root 701622 Aug 8 2019 fw_sst_0f28.bin -rw-r--r--. 1 root root 265684 Aug 8 2019 fw_sst_0f28.bin-48kHz_i2s_master -rw-r--r--. 1 root root 701622 Aug 8 2019 fw_sst_0f28_ssp0.bin -rw-r--r--. 1 root root 701694 Aug 8 2019 fw_sst_22a8.bin -rw-r--r--. 1 root root 18 Aug 8 2019 ibt-11-5.ddc -rw-r--r--. 1 root root 588196 Aug 8 2019 ibt-11-5.sfi -rw-r--r--. 1 root root 14 Aug 8 2019 ibt-12-16.ddc -rw-r--r--. 1 root root 585628 Aug 8 2019 ibt-12-16.sfi -rw-r--r--. 1 root root 14 Aug 8 2019 ibt-17-0-1.ddc -rw-r--r--. 1 root root 625216 Aug 8 2019 ibt-17-0-1.sfi -rw-r--r--. 1 root root 14 Aug 8 2019 ibt-17-16-1.ddc -rw-r--r--. 1 root root 648108 Aug 8 2019 ibt-17-16-1.sfi -rw-r--r--. 1 root root 14 Aug 8 2019 ibt-17-1.ddc -rw-r--r--. 1 root root 625216 Aug 8 2019 ibt-17-1.sfi -rw-r--r--. 1 root root 14 Aug 8 2019 ibt-17-2.ddc -rw-r--r--. 1 root root 648108 Aug 8 2019 ibt-17-2.sfi -rw-r--r--. 1 root root 14 Aug 8 2019 ibt-18-0-1.ddc -rw-r--r--. 1 root root 625216 Aug 8 2019 ibt-18-0-1.sfi -rw-r--r--. 1 root root 14 Aug 8 2019 ibt-18-16-1.ddc -rw-r--r--. 1 root root 648108 Aug 8 2019 ibt-18-16-1.sfi -rw-r--r--. 1 root root 14 Aug 8 2019 ibt-18-1.ddc -rw-r--r--. 1 root root 625216 Aug 8 2019 ibt-18-1.sfi -rw-r--r--. 1 root root 14 Aug 8 2019 ibt-18-2.ddc -rw-r--r--. 1 root root 648108 Aug 8 2019 ibt-18-2.sfi -rw-r--r--. 1 root root 22069 Aug 8 2019 ibt-hw-37.7.10-fw-1.0.1.2d.d.bseq -rw-r--r--. 1 root root 25853 Aug 8 2019 ibt-hw-37.7.10-fw-1.0.2.3.d.bseq -rw-r--r--. 1 root root 23105 Aug 8 2019 ibt-hw-37.7.10-fw-1.80.1.2d.d.bseq -rw-r--r--. 1 root root 25775 Aug 8 2019 ibt-hw-37.7.10-fw-1.80.2.3.d.bseq -rw-r--r--. 1 root root 96 Aug 8 2019 ibt-hw-37.7.bseq -rw-r--r--. 1 root root 31056 Aug 8 2019 ibt-hw-37.8.10-fw-1.10.2.27.d.bseq -rw-r--r--. 1 root root 39295 Aug 8 2019 ibt-hw-37.8.10-fw-1.10.3.11.e.bseq -rw-r--r--. 1 root root 48587 Aug 8 2019 ibt-hw-37.8.10-fw-22.50.19.14.f.bseq -rw-r--r--. 1 root root 96 Aug 8 2019 ibt-hw-37.8.bseq -rw-r--r--. 1 root root 260320 Aug 8 2019 IntcSST2.bin lrwxrwxrwx. 1 root root 52 Oct 16 09:22 ipu3-fw.bin -> irci_irci_ecr-master_20161208_0213_20170112_1500.bin -rw-r--r--. 1 root root 1212984 Aug 8 2019 irci_irci_ecr-master_20161208_0213_20170112_1500.bin /usr/lib/firmware/isci: total 48 drwxr-xr-x. 2 root root 119 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 2366 Aug 8 2019 create_fw.c -rw-r--r--. 1 root root 2867 Aug 8 2019 create_fw.h -rw-r--r--. 1 root root 232 Aug 8 2019 isci_firmware.bin -rw-r--r--. 1 root root 369 Aug 8 2019 Makefile -rw-r--r--. 1 root root 10893 Aug 8 2019 probe_roms.h -rw-r--r--. 1 root root 780 Aug 8 2019 README /usr/lib/firmware/kaweth: total 32 drwxr-xr-x. 2 root root 102 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 3276 Aug 8 2019 new_code.bin -rw-r--r--. 1 root root 622 Aug 8 2019 new_code_fix.bin -rw-r--r--. 1 root root 182 Aug 8 2019 trigger_code.bin -rw-r--r--. 1 root root 22 Aug 8 2019 trigger_code_fix.bin /usr/lib/firmware/keyspan: total 112 drwxr-xr-x. 2 root root 211 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 4658 Aug 8 2019 mpr.fw -rw-r--r--. 1 root root 7650 Aug 8 2019 usa18x.fw -rw-r--r--. 1 root root 4690 Aug 8 2019 usa19.fw -rw-r--r--. 1 root root 4678 Aug 8 2019 usa19qi.fw -rw-r--r--. 1 root root 7638 Aug 8 2019 usa19qw.fw -rw-r--r--. 1 root root 7634 Aug 8 2019 usa19w.fw -rw-r--r--. 1 root root 7938 Aug 8 2019 usa28.fw -rw-r--r--. 1 root root 7634 Aug 8 2019 usa28xa.fw -rw-r--r--. 1 root root 7638 Aug 8 2019 usa28xb.fw -rw-r--r--. 1 root root 7634 Aug 8 2019 usa28x.fw -rw-r--r--. 1 root root 7938 Aug 8 2019 usa49w.fw -rw-r--r--. 1 root root 7946 Aug 8 2019 usa49wlc.fw /usr/lib/firmware/keyspan_pda: total 92 drwxr-xr-x. 2 root root 106 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 1914 Aug 8 2019 keyspan_pda.fw -rw-r--r--. 1 root root 28777 Aug 8 2019 keyspan_pda.S -rw-r--r--. 1 root root 203 Aug 8 2019 Makefile -rw-r--r--. 1 root root 2018 Aug 8 2019 xircom_pgs.fw -rw-r--r--. 1 root root 29753 Aug 8 2019 xircom_pgs.S /usr/lib/firmware/korg: total 32 drwxr-xr-x. 2 root root 23 Aug 15 2019 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 15764 Mar 5 2015 k1212.dsp /usr/lib/firmware/liquidio: total 24888 drwxr-xr-x. 2 root root 129 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 1281464 Aug 8 2019 lio_210nv_nic.bin -rw-r--r--. 1 root root 1179352 Aug 8 2019 lio_210sv_nic.bin -rw-r--r--. 1 root root 1287264 Aug 8 2019 lio_23xx_nic.bin -rw-r--r--. 1 root root 20434408 Aug 8 2019 lio_23xx_vsw.bin -rw-r--r--. 1 root root 1281464 Aug 8 2019 lio_410nv_nic.bin /usr/lib/firmware/matrox: total 48 drwxr-xr-x. 2 root root 46 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 11214 Aug 8 2019 g200_warp.fw -rw-r--r--. 1 root root 16790 Aug 8 2019 g400_warp.fw /usr/lib/firmware/mediatek: total 1500 drwxr-xr-x. 2 root root 226 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 80680 Aug 8 2019 mt7610e.bin -rw-r--r--. 1 root root 80288 Aug 8 2019 mt7610u.bin -rw-r--r--. 1 root root 122644 Aug 8 2019 mt7615_cr4.bin -rw-r--r--. 1 root root 459000 Aug 8 2019 mt7615_n9.bin -rw-r--r--. 1 root root 11102 Aug 8 2019 mt7615_rom_patch.bin -rwxr-xr-x. 1 root root 78158 Aug 8 2019 mt7622pr2h.bin -rw-r--r--. 1 root root 382212 Aug 8 2019 mt7650e.bin -rw-r--r--. 1 root root 91412 Aug 8 2019 mt7662u.bin -rw-r--r--. 1 root root 20686 Aug 8 2019 mt7662u_rom_patch.bin -rwxr-xr-x. 1 root root 170990 Aug 8 2019 mt7668pr2h.bin /usr/lib/firmware/mellanox: total 5712 drwxr-xr-x. 2 root root 236 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 860424 Aug 8 2019 mlxsw_spectrum-13.1420.122.mfa2 -rw-r--r--. 1 root root 924020 Aug 8 2019 mlxsw_spectrum-13.1530.152.mfa2 -rw-r--r--. 1 root root 1091848 Aug 8 2019 mlxsw_spectrum-13.1620.192.mfa2 -rw-r--r--. 1 root root 863220 Aug 8 2019 mlxsw_spectrum-13.1702.6.mfa2 -rw-r--r--. 1 root root 1150296 Aug 8 2019 mlxsw_spectrum-13.1703.4.mfa2 -rw-r--r--. 1 root root 932092 Aug 8 2019 mlxsw_spectrum-13.1910.622.mfa2 /usr/lib/firmware/microchip: total 24 drwxr-xr-x. 2 root root 90 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 1655 Aug 8 2019 mscc_vsc8574_revb_int8051_29e8.bin -rw-r--r--. 1 root root 92 Aug 8 2019 mscc_vsc8584_revb_int8051_fb48.bin /usr/lib/firmware/mixart: total 1116 drwxr-xr-x. 2 root root 66 Aug 15 2019 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 97652 Mar 5 2015 miXart8AES.xlx -rw-r--r--. 1 root root 928712 Mar 5 2015 miXart8.elf -rw-r--r--. 1 root root 97652 Mar 5 2015 miXart8.xlx /usr/lib/firmware/moxa: total 420 drwxr-xr-x. 2 root root 286 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 12462 Aug 8 2019 moxa-1110.fw -rw-r--r--. 1 root root 12462 Aug 8 2019 moxa-1130.fw -rw-r--r--. 1 root root 12462 Aug 8 2019 moxa-1131.fw -rw-r--r--. 1 root root 12462 Aug 8 2019 moxa-1150.fw -rw-r--r--. 1 root root 12462 Aug 8 2019 moxa-1151.fw -rw-r--r--. 1 root root 33681 Aug 8 2019 moxa-1250.fw -rw-r--r--. 1 root root 33685 Aug 8 2019 moxa-1251.fw -rw-r--r--. 1 root root 33521 Aug 8 2019 moxa-1410.fw -rw-r--r--. 1 root root 33521 Aug 8 2019 moxa-1450.fw -rw-r--r--. 1 root root 33525 Aug 8 2019 moxa-1451.fw -rw-r--r--. 1 root root 33529 Aug 8 2019 moxa-1613.fw -rw-r--r--. 1 root root 33525 Aug 8 2019 moxa-1618.fw -rw-r--r--. 1 root root 33529 Aug 8 2019 moxa-1653.fw -rw-r--r--. 1 root root 33525 Aug 8 2019 moxa-1658.fw /usr/lib/firmware/mrvl: total 8716 drwxr-xr-x. 2 root root 4096 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 723540 Aug 8 2019 pcie8897_uapsta.bin -rw-r--r--. 1 root root 456488 Aug 8 2019 pcie8997_wlan_v4.bin -rw-r--r--. 1 root root 632240 Aug 8 2019 pcieuart8997_combo_v4.bin -rw-r--r--. 1 root root 634228 Aug 8 2019 pcieusb8997_combo_v4.bin -rw-r--r--. 1 root root 466592 Aug 8 2019 sd8787_uapsta.bin -rw-r--r--. 1 root root 533976 Aug 8 2019 sd8797_uapsta.bin -rw-r--r--. 1 root root 255988 Aug 8 2019 sd8801_uapsta.bin -rw-r--r--. 1 root root 616840 Aug 8 2019 sd8887_uapsta.bin -rw-r--r--. 1 root root 701072 Aug 8 2019 sd8897_uapsta.bin -rwxr-xr-x. 1 root root 587052 Aug 8 2019 sdsd8977_combo_v2.bin -rw-r--r--. 1 root root 621896 Aug 8 2019 sdsd8997_combo_v4.bin -rw-r--r--. 1 root root 478836 Aug 8 2019 usb8766_uapsta.bin -rw-r--r--. 1 root root 553940 Aug 8 2019 usb8797_uapsta.bin -rw-r--r--. 1 root root 252260 Aug 8 2019 usb8801_uapsta.bin -rw-r--r--. 1 root root 752340 Aug 8 2019 usb8897_uapsta.bin -rw-r--r--. 1 root root 610252 Aug 8 2019 usbusb8997_combo_v4.bin /usr/lib/firmware/mwlwifi: total 612 drwxr-xr-x. 2 root root 44 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 116356 Aug 8 2019 88W8864.bin -rw-r--r--. 1 root root 489084 Aug 8 2019 88W8897.bin /usr/lib/firmware/myricom: total 92 drwxr-xr-x. 2 root root 23 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 76258 Aug 8 2019 lanai.bin /usr/lib/firmware/netronome: total 36 drwxr-xr-x. 6 root root 4096 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. drwxr-xr-x. 2 root root 4096 Oct 16 09:22 bpf drwxr-xr-x. 2 root root 4096 Oct 16 09:22 flower drwxr-xr-x. 2 root root 4096 Oct 16 09:22 nic lrwxrwxrwx. 1 root root 31 Oct 16 09:22 nic_AMDA0058-0011_2x40.nffw -> nic/nic_AMDA0058-0011_2x40.nffw lrwxrwxrwx. 1 root root 31 Oct 16 09:22 nic_AMDA0058-0012_2x40.nffw -> nic/nic_AMDA0058-0012_2x40.nffw lrwxrwxrwx. 1 root root 32 Oct 16 09:22 nic_AMDA0078-0011_1x100.nffw -> nic/nic_AMDA0078-0011_1x100.nffw lrwxrwxrwx. 1 root root 31 Oct 16 09:22 nic_AMDA0081-0001_1x40.nffw -> nic/nic_AMDA0081-0001_1x40.nffw lrwxrwxrwx. 1 root root 31 Oct 16 09:22 nic_AMDA0081-0001_4x10.nffw -> nic/nic_AMDA0081-0001_4x10.nffw lrwxrwxrwx. 1 root root 31 Oct 16 09:22 nic_AMDA0096-0001_2x10.nffw -> nic/nic_AMDA0096-0001_2x10.nffw lrwxrwxrwx. 1 root root 31 Oct 16 09:22 nic_AMDA0097-0001_2x40.nffw -> nic/nic_AMDA0097-0001_2x40.nffw lrwxrwxrwx. 1 root root 36 Oct 16 09:22 nic_AMDA0097-0001_4x10_1x40.nffw -> nic/nic_AMDA0097-0001_4x10_1x40.nffw lrwxrwxrwx. 1 root root 31 Oct 16 09:22 nic_AMDA0097-0001_8x10.nffw -> nic/nic_AMDA0097-0001_8x10.nffw lrwxrwxrwx. 1 root root 36 Oct 16 09:22 nic_AMDA0099-0001_1x10_1x25.nffw -> nic/nic_AMDA0099-0001_1x10_1x25.nffw lrwxrwxrwx. 1 root root 31 Oct 16 09:22 nic_AMDA0099-0001_2x10.nffw -> nic/nic_AMDA0099-0001_2x10.nffw lrwxrwxrwx. 1 root root 31 Oct 16 09:22 nic_AMDA0099-0001_2x25.nffw -> nic/nic_AMDA0099-0001_2x25.nffw drwxr-xr-x. 2 root root 4096 Oct 16 09:22 nic-sriov /usr/lib/firmware/netronome/bpf: total 26796 drwxr-xr-x. 2 root root 4096 Oct 16 09:22 . drwxr-xr-x. 6 root root 4096 Oct 16 09:22 .. -rw-r--r--. 1 root root 2240160 Aug 8 2019 nic_AMDA0058-0011_2x40.nffw -rw-r--r--. 1 root root 2240160 Aug 8 2019 nic_AMDA0058-0012_2x40.nffw -rw-r--r--. 1 root root 2173816 Aug 8 2019 nic_AMDA0078-0011_1x100.nffw -rw-r--r--. 1 root root 2174120 Aug 8 2019 nic_AMDA0081-0001_1x40.nffw -rw-r--r--. 1 root root 2362248 Aug 8 2019 nic_AMDA0081-0001_4x10.nffw -rw-r--r--. 1 root root 2239192 Aug 8 2019 nic_AMDA0096-0001_2x10.nffw -rw-r--r--. 1 root root 2239384 Aug 8 2019 nic_AMDA0097-0001_2x40.nffw -rw-r--r--. 1 root root 2423968 Aug 8 2019 nic_AMDA0097-0001_4x10_1x40.nffw -rw-r--r--. 1 root root 2608288 Aug 8 2019 nic_AMDA0097-0001_8x10.nffw -rw-r--r--. 1 root root 2240440 Aug 8 2019 nic_AMDA0099-0001_1x10_1x25.nffw -rw-r--r--. 1 root root 2239192 Aug 8 2019 nic_AMDA0099-0001_2x10.nffw -rw-r--r--. 1 root root 2240088 Aug 8 2019 nic_AMDA0099-0001_2x25.nffw /usr/lib/firmware/netronome/flower: total 19004 drwxr-xr-x. 2 root root 4096 Oct 16 09:22 . drwxr-xr-x. 6 root root 4096 Oct 16 09:22 .. lrwxrwxrwx. 1 root root 17 Oct 16 09:22 nic_AMDA0058-0011_1x100.nffw -> nic_AMDA0058.nffw lrwxrwxrwx. 1 root root 17 Oct 16 09:22 nic_AMDA0058-0011_2x40.nffw -> nic_AMDA0058.nffw lrwxrwxrwx. 1 root root 17 Oct 16 09:22 nic_AMDA0058-0011_4x10_1x40.nffw -> nic_AMDA0058.nffw lrwxrwxrwx. 1 root root 17 Oct 16 09:22 nic_AMDA0058-0011_8x10.nffw -> nic_AMDA0058.nffw lrwxrwxrwx. 1 root root 17 Oct 16 09:22 nic_AMDA0058-0012_1x100.nffw -> nic_AMDA0058.nffw lrwxrwxrwx. 1 root root 17 Oct 16 09:22 nic_AMDA0058-0012_2x40.nffw -> nic_AMDA0058.nffw lrwxrwxrwx. 1 root root 17 Oct 16 09:22 nic_AMDA0058-0012_4x10_1x40.nffw -> nic_AMDA0058.nffw lrwxrwxrwx. 1 root root 17 Oct 16 09:22 nic_AMDA0058-0012_8x10.nffw -> nic_AMDA0058.nffw -rw-r--r--. 1 root root 6789896 Aug 8 2019 nic_AMDA0058.nffw lrwxrwxrwx. 1 root root 17 Oct 16 09:22 nic_AMDA0078-0011_1x100.nffw -> nic_AMDA0058.nffw lrwxrwxrwx. 1 root root 17 Oct 16 09:22 nic_AMDA0078-0011_2x40.nffw -> nic_AMDA0058.nffw lrwxrwxrwx. 1 root root 17 Oct 16 09:22 nic_AMDA0078-0011_4x10_1x40.nffw -> nic_AMDA0058.nffw lrwxrwxrwx. 1 root root 17 Oct 16 09:22 nic_AMDA0078-0011_8x10.nffw -> nic_AMDA0058.nffw lrwxrwxrwx. 1 root root 17 Oct 16 09:22 nic_AMDA0078-0012_1x100.nffw -> nic_AMDA0058.nffw lrwxrwxrwx. 1 root root 17 Oct 16 09:22 nic_AMDA0078-0012_2x40.nffw -> nic_AMDA0058.nffw lrwxrwxrwx. 1 root root 17 Oct 16 09:22 nic_AMDA0078-0012_4x10_1x40.nffw -> nic_AMDA0058.nffw lrwxrwxrwx. 1 root root 17 Oct 16 09:22 nic_AMDA0078-0012_8x10.nffw -> nic_AMDA0058.nffw lrwxrwxrwx. 1 root root 17 Oct 16 09:22 nic_AMDA0081-0001_1x40.nffw -> nic_AMDA0081.nffw lrwxrwxrwx. 1 root root 17 Oct 16 09:22 nic_AMDA0081-0001_4x10.nffw -> nic_AMDA0081.nffw lrwxrwxrwx. 1 root root 17 Oct 16 09:22 nic_AMDA0081.nffw -> nic_AMDA0097.nffw lrwxrwxrwx. 1 root root 17 Oct 16 09:22 nic_AMDA0096-0001_2x10.nffw -> nic_AMDA0096.nffw -rw-r--r--. 1 root root 4216632 Aug 8 2019 nic_AMDA0096.nffw lrwxrwxrwx. 1 root root 17 Oct 16 09:22 nic_AMDA0097-0001_2x40.nffw -> nic_AMDA0097.nffw lrwxrwxrwx. 1 root root 17 Oct 16 09:22 nic_AMDA0097-0001_4x10_1x40.nffw -> nic_AMDA0097.nffw lrwxrwxrwx. 1 root root 17 Oct 16 09:22 nic_AMDA0097-0001_8x10.nffw -> nic_AMDA0097.nffw -rw-r--r--. 1 root root 4217608 Aug 8 2019 nic_AMDA0097.nffw lrwxrwxrwx. 1 root root 17 Oct 16 09:22 nic_AMDA0099-0001_1x10_1x25.nffw -> nic_AMDA0099.nffw lrwxrwxrwx. 1 root root 17 Oct 16 09:22 nic_AMDA0099-0001_2x10.nffw -> nic_AMDA0099.nffw lrwxrwxrwx. 1 root root 17 Oct 16 09:22 nic_AMDA0099-0001_2x25.nffw -> nic_AMDA0099.nffw -rw-r--r--. 1 root root 4219976 Aug 8 2019 nic_AMDA0099.nffw /usr/lib/firmware/netronome/nic: total 38116 drwxr-xr-x. 2 root root 4096 Oct 16 09:22 . drwxr-xr-x. 6 root root 4096 Oct 16 09:22 .. -rw-r--r--. 1 root root 3222512 Aug 8 2019 nic_AMDA0058-0011_2x40.nffw -rw-r--r--. 1 root root 3222512 Aug 8 2019 nic_AMDA0058-0012_2x40.nffw -rw-r--r--. 1 root root 3180672 Aug 8 2019 nic_AMDA0078-0011_1x100.nffw -rw-r--r--. 1 root root 3181080 Aug 8 2019 nic_AMDA0081-0001_1x40.nffw -rw-r--r--. 1 root root 3297408 Aug 8 2019 nic_AMDA0081-0001_4x10.nffw -rw-r--r--. 1 root root 3221848 Aug 8 2019 nic_AMDA0096-0001_2x10.nffw -rw-r--r--. 1 root root 3221944 Aug 8 2019 nic_AMDA0097-0001_2x40.nffw -rw-r--r--. 1 root root 3335048 Aug 8 2019 nic_AMDA0097-0001_4x10_1x40.nffw -rw-r--r--. 1 root root 3449264 Aug 8 2019 nic_AMDA0097-0001_8x10.nffw -rw-r--r--. 1 root root 3222856 Aug 8 2019 nic_AMDA0099-0001_1x10_1x25.nffw -rw-r--r--. 1 root root 3221832 Aug 8 2019 nic_AMDA0099-0001_2x10.nffw -rw-r--r--. 1 root root 3222648 Aug 8 2019 nic_AMDA0099-0001_2x25.nffw /usr/lib/firmware/netronome/nic-sriov: total 59020 drwxr-xr-x. 2 root root 4096 Oct 16 09:22 . drwxr-xr-x. 6 root root 4096 Oct 16 09:22 .. -rw-r--r--. 1 root root 4958776 Aug 8 2019 nic_AMDA0058-0011_2x40.nffw -rw-r--r--. 1 root root 4958776 Aug 8 2019 nic_AMDA0058-0012_2x40.nffw -rw-r--r--. 1 root root 5203752 Aug 8 2019 nic_AMDA0078-0011_1x100.nffw -rw-r--r--. 1 root root 5204048 Aug 8 2019 nic_AMDA0081-0001_1x40.nffw -rw-r--r--. 1 root root 5033952 Aug 8 2019 nic_AMDA0081-0001_4x10.nffw -rw-r--r--. 1 root root 4958016 Aug 8 2019 nic_AMDA0096-0001_2x10.nffw -rw-r--r--. 1 root root 4958128 Aug 8 2019 nic_AMDA0097-0001_2x40.nffw -rw-r--r--. 1 root root 5072120 Aug 8 2019 nic_AMDA0097-0001_4x10_1x40.nffw -rw-r--r--. 1 root root 5185472 Aug 8 2019 nic_AMDA0097-0001_8x10.nffw -rw-r--r--. 1 root root 4959328 Aug 8 2019 nic_AMDA0099-0001_1x10_1x25.nffw -rw-r--r--. 1 root root 4958000 Aug 8 2019 nic_AMDA0099-0001_2x10.nffw -rw-r--r--. 1 root root 4958832 Aug 8 2019 nic_AMDA0099-0001_2x25.nffw /usr/lib/firmware/nvidia: total 16 drwxr-xr-x. 19 root root 236 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. drwxr-xr-x. 2 root root 183 Oct 16 09:22 gk20a drwxr-xr-x. 4 root root 27 Aug 8 2019 gm200 drwxr-xr-x. 4 root root 27 Aug 8 2019 gm204 drwxr-xr-x. 4 root root 27 Aug 8 2019 gm206 drwxr-xr-x. 5 root root 38 Aug 8 2019 gm20b drwxr-xr-x. 4 root root 27 Aug 8 2019 gp100 drwxr-xr-x. 6 root root 52 Aug 8 2019 gp102 drwxr-xr-x. 6 root root 52 Aug 8 2019 gp104 drwxr-xr-x. 6 root root 52 Aug 8 2019 gp106 drwxr-xr-x. 6 root root 52 Aug 8 2019 gp107 drwxr-xr-x. 6 root root 52 Aug 8 2019 gp108 drwxr-xr-x. 5 root root 38 Aug 8 2019 gp10b drwxr-xr-x. 6 root root 52 Oct 16 09:22 gv100 drwxr-xr-x. 2 root root 45 Oct 16 09:22 tegra124 drwxr-xr-x. 2 root root 29 Oct 16 09:22 tegra186 drwxr-xr-x. 2 root root 45 Oct 16 09:22 tegra210 drwxr-xr-x. 3 root root 19 Oct 16 09:22 tu10x /usr/lib/firmware/nvidia/gk20a: total 64 drwxr-xr-x. 2 root root 183 Oct 16 09:22 . drwxr-xr-x. 19 root root 236 Oct 16 09:22 .. -rw-r--r--. 1 root root 1920 Aug 8 2019 fecs_data.bin -rw-r--r--. 1 root root 15356 Aug 8 2019 fecs_inst.bin -rw-r--r--. 1 root root 1800 Aug 8 2019 gpccs_data.bin -rw-r--r--. 1 root root 8171 Aug 8 2019 gpccs_inst.bin -rw-r--r--. 1 root root 6696 Aug 8 2019 sw_bundle_init.bin -rw-r--r--. 1 root root 4464 Aug 8 2019 sw_ctx.bin -rw-r--r--. 1 root root 10304 Aug 8 2019 sw_method_init.bin -rw-r--r--. 1 root root 1360 Aug 8 2019 sw_nonctx.bin /usr/lib/firmware/nvidia/gm200: total 0 drwxr-xr-x. 4 root root 27 Aug 8 2019 . drwxr-xr-x. 19 root root 236 Oct 16 09:22 .. drwxr-xr-x. 2 root root 66 Oct 16 09:22 acr drwxr-xr-x. 2 root root 263 Oct 16 09:22 gr /usr/lib/firmware/nvidia/gm200/acr: total 20 drwxr-xr-x. 2 root root 66 Oct 16 09:22 . drwxr-xr-x. 4 root root 27 Aug 8 2019 .. -rw-r--r--. 1 root root 832 Aug 8 2019 bl.bin -rw-r--r--. 1 root root 10144 Aug 8 2019 ucode_load.bin -rw-r--r--. 1 root root 1440 Aug 8 2019 ucode_unload.bin /usr/lib/firmware/nvidia/gm200/gr: total 84 drwxr-xr-x. 2 root root 263 Oct 16 09:22 . drwxr-xr-x. 4 root root 27 Aug 8 2019 .. -rw-r--r--. 1 root root 576 Aug 8 2019 fecs_bl.bin -rw-r--r--. 1 root root 1968 Aug 8 2019 fecs_data.bin -rw-r--r--. 1 root root 16271 Aug 8 2019 fecs_inst.bin -rw-r--r--. 1 root root 76 Aug 8 2019 fecs_sig.bin -rw-r--r--. 1 root root 576 Aug 8 2019 gpccs_bl.bin -rw-r--r--. 1 root root 2056 Aug 8 2019 gpccs_data.bin -rw-r--r--. 1 root root 9768 Aug 8 2019 gpccs_inst.bin -rw-r--r--. 1 root root 76 Aug 8 2019 gpccs_sig.bin -rw-r--r--. 1 root root 7616 Aug 8 2019 sw_bundle_init.bin -rw-r--r--. 1 root root 5592 Aug 8 2019 sw_ctx.bin -rw-r--r--. 1 root root 10800 Aug 8 2019 sw_method_init.bin -rw-r--r--. 1 root root 1440 Aug 8 2019 sw_nonctx.bin /usr/lib/firmware/nvidia/gm204: total 0 drwxr-xr-x. 4 root root 27 Aug 8 2019 . drwxr-xr-x. 19 root root 236 Oct 16 09:22 .. drwxr-xr-x. 2 root root 66 Oct 16 09:22 acr drwxr-xr-x. 2 root root 263 Oct 16 09:22 gr /usr/lib/firmware/nvidia/gm204/acr: total 0 drwxr-xr-x. 2 root root 66 Oct 16 09:22 . drwxr-xr-x. 4 root root 27 Aug 8 2019 .. lrwxrwxrwx. 1 root root 22 Oct 16 09:22 bl.bin -> ../../gm200/acr/bl.bin lrwxrwxrwx. 1 root root 30 Oct 16 09:22 ucode_load.bin -> ../../gm200/acr/ucode_load.bin lrwxrwxrwx. 1 root root 32 Oct 16 09:22 ucode_unload.bin -> ../../gm200/acr/ucode_unload.bin /usr/lib/firmware/nvidia/gm204/gr: total 16 drwxr-xr-x. 2 root root 263 Oct 16 09:22 . drwxr-xr-x. 4 root root 27 Aug 8 2019 .. lrwxrwxrwx. 1 root root 26 Oct 16 09:22 fecs_bl.bin -> ../../gm200/gr/fecs_bl.bin -rw-r--r--. 1 root root 1968 Aug 8 2019 fecs_data.bin lrwxrwxrwx. 1 root root 28 Oct 16 09:22 fecs_inst.bin -> ../../gm200/gr/fecs_inst.bin -rw-r--r--. 1 root root 76 Aug 8 2019 fecs_sig.bin lrwxrwxrwx. 1 root root 27 Oct 16 09:22 gpccs_bl.bin -> ../../gm200/gr/gpccs_bl.bin -rw-r--r--. 1 root root 2056 Aug 8 2019 gpccs_data.bin lrwxrwxrwx. 1 root root 29 Oct 16 09:22 gpccs_inst.bin -> ../../gm200/gr/gpccs_inst.bin -rw-r--r--. 1 root root 76 Aug 8 2019 gpccs_sig.bin lrwxrwxrwx. 1 root root 33 Oct 16 09:22 sw_bundle_init.bin -> ../../gm200/gr/sw_bundle_init.bin lrwxrwxrwx. 1 root root 25 Oct 16 09:22 sw_ctx.bin -> ../../gm200/gr/sw_ctx.bin lrwxrwxrwx. 1 root root 33 Oct 16 09:22 sw_method_init.bin -> ../../gm200/gr/sw_method_init.bin lrwxrwxrwx. 1 root root 28 Oct 16 09:22 sw_nonctx.bin -> ../../gm200/gr/sw_nonctx.bin /usr/lib/firmware/nvidia/gm206: total 0 drwxr-xr-x. 4 root root 27 Aug 8 2019 . drwxr-xr-x. 19 root root 236 Oct 16 09:22 .. drwxr-xr-x. 2 root root 66 Oct 16 09:22 acr drwxr-xr-x. 2 root root 263 Oct 16 09:22 gr /usr/lib/firmware/nvidia/gm206/acr: total 16 drwxr-xr-x. 2 root root 66 Oct 16 09:22 . drwxr-xr-x. 4 root root 27 Aug 8 2019 .. lrwxrwxrwx. 1 root root 22 Oct 16 09:22 bl.bin -> ../../gm200/acr/bl.bin -rw-r--r--. 1 root root 10144 Aug 8 2019 ucode_load.bin -rw-r--r--. 1 root root 1440 Aug 8 2019 ucode_unload.bin /usr/lib/firmware/nvidia/gm206/gr: total 16 drwxr-xr-x. 2 root root 263 Oct 16 09:22 . drwxr-xr-x. 4 root root 27 Aug 8 2019 .. lrwxrwxrwx. 1 root root 26 Oct 16 09:22 fecs_bl.bin -> ../../gm200/gr/fecs_bl.bin -rw-r--r--. 1 root root 1968 Aug 8 2019 fecs_data.bin lrwxrwxrwx. 1 root root 28 Oct 16 09:22 fecs_inst.bin -> ../../gm200/gr/fecs_inst.bin -rw-r--r--. 1 root root 76 Aug 8 2019 fecs_sig.bin lrwxrwxrwx. 1 root root 27 Oct 16 09:22 gpccs_bl.bin -> ../../gm200/gr/gpccs_bl.bin -rw-r--r--. 1 root root 2056 Aug 8 2019 gpccs_data.bin lrwxrwxrwx. 1 root root 29 Oct 16 09:22 gpccs_inst.bin -> ../../gm200/gr/gpccs_inst.bin -rw-r--r--. 1 root root 76 Aug 8 2019 gpccs_sig.bin lrwxrwxrwx. 1 root root 33 Oct 16 09:22 sw_bundle_init.bin -> ../../gm200/gr/sw_bundle_init.bin lrwxrwxrwx. 1 root root 25 Oct 16 09:22 sw_ctx.bin -> ../../gm200/gr/sw_ctx.bin lrwxrwxrwx. 1 root root 33 Oct 16 09:22 sw_method_init.bin -> ../../gm200/gr/sw_method_init.bin lrwxrwxrwx. 1 root root 28 Oct 16 09:22 sw_nonctx.bin -> ../../gm200/gr/sw_nonctx.bin /usr/lib/firmware/nvidia/gm20b: total 0 drwxr-xr-x. 5 root root 38 Aug 8 2019 . drwxr-xr-x. 19 root root 236 Oct 16 09:22 .. drwxr-xr-x. 2 root root 42 Oct 16 09:22 acr drwxr-xr-x. 2 root root 222 Oct 16 09:22 gr drwxr-xr-x. 2 root root 54 Oct 16 09:22 pmu /usr/lib/firmware/nvidia/gm20b/acr: total 24 drwxr-xr-x. 2 root root 42 Oct 16 09:22 . drwxr-xr-x. 5 root root 38 Aug 8 2019 .. -rw-r--r--. 1 root root 832 Aug 8 2019 bl.bin -rw-r--r--. 1 root root 18592 Aug 8 2019 ucode_load.bin /usr/lib/firmware/nvidia/gm20b/gr: total 68 drwxr-xr-x. 2 root root 222 Oct 16 09:22 . drwxr-xr-x. 5 root root 38 Aug 8 2019 .. -rw-r--r--. 1 root root 576 Aug 8 2019 fecs_bl.bin -rw-r--r--. 1 root root 1964 Aug 8 2019 fecs_data.bin -rw-r--r--. 1 root root 17021 Aug 8 2019 fecs_inst.bin -rw-r--r--. 1 root root 76 Aug 8 2019 fecs_sig.bin -rw-r--r--. 1 root root 2068 Aug 8 2019 gpccs_data.bin -rw-r--r--. 1 root root 9964 Aug 8 2019 gpccs_inst.bin -rw-r--r--. 1 root root 7616 Aug 8 2019 sw_bundle_init.bin -rw-r--r--. 1 root root 5448 Aug 8 2019 sw_ctx.bin lrwxrwxrwx. 1 root root 33 Oct 16 09:22 sw_method_init.bin -> ../../gm200/gr/sw_method_init.bin -rw-r--r--. 1 root root 1432 Aug 8 2019 sw_nonctx.bin /usr/lib/firmware/nvidia/gm20b/pmu: total 56 drwxr-xr-x. 2 root root 54 Oct 16 09:22 . drwxr-xr-x. 5 root root 38 Aug 8 2019 .. -rw-r--r--. 1 root root 652 Aug 8 2019 desc.bin -rw-r--r--. 1 root root 47872 Aug 8 2019 image.bin -rw-r--r--. 1 root root 76 Aug 8 2019 sig.bin /usr/lib/firmware/nvidia/gp100: total 0 drwxr-xr-x. 4 root root 27 Aug 8 2019 . drwxr-xr-x. 19 root root 236 Oct 16 09:22 .. drwxr-xr-x. 2 root root 66 Oct 16 09:22 acr drwxr-xr-x. 2 root root 263 Oct 16 09:22 gr /usr/lib/firmware/nvidia/gp100/acr: total 20 drwxr-xr-x. 2 root root 66 Oct 16 09:22 . drwxr-xr-x. 4 root root 27 Aug 8 2019 .. -rw-r--r--. 1 root root 832 Aug 8 2019 bl.bin -rw-r--r--. 1 root root 9632 Aug 8 2019 ucode_load.bin -rw-r--r--. 1 root root 1440 Aug 8 2019 ucode_unload.bin /usr/lib/firmware/nvidia/gp100/gr: total 88 drwxr-xr-x. 2 root root 263 Oct 16 09:22 . drwxr-xr-x. 4 root root 27 Aug 8 2019 .. lrwxrwxrwx. 1 root root 26 Oct 16 09:22 fecs_bl.bin -> ../../gm200/gr/fecs_bl.bin -rw-r--r--. 1 root root 2028 Aug 8 2019 fecs_data.bin -rw-r--r--. 1 root root 20955 Aug 8 2019 fecs_inst.bin -rw-r--r--. 1 root root 76 Aug 8 2019 fecs_sig.bin lrwxrwxrwx. 1 root root 27 Oct 16 09:22 gpccs_bl.bin -> ../../gm200/gr/gpccs_bl.bin -rw-r--r--. 1 root root 2080 Aug 8 2019 gpccs_data.bin -rw-r--r--. 1 root root 12458 Aug 8 2019 gpccs_inst.bin -rw-r--r--. 1 root root 76 Aug 8 2019 gpccs_sig.bin -rw-r--r--. 1 root root 7664 Aug 8 2019 sw_bundle_init.bin -rw-r--r--. 1 root root 6240 Aug 8 2019 sw_ctx.bin -rw-r--r--. 1 root root 11928 Aug 8 2019 sw_method_init.bin -rw-r--r--. 1 root root 2248 Aug 8 2019 sw_nonctx.bin /usr/lib/firmware/nvidia/gp102: total 0 drwxr-xr-x. 6 root root 52 Aug 8 2019 . drwxr-xr-x. 19 root root 236 Oct 16 09:22 .. drwxr-xr-x. 2 root root 87 Oct 16 09:22 acr drwxr-xr-x. 2 root root 263 Oct 16 09:22 gr drwxr-xr-x. 2 root root 26 Oct 16 09:22 nvdec drwxr-xr-x. 2 root root 54 Oct 16 09:22 sec2 /usr/lib/firmware/nvidia/gp102/acr: total 32 drwxr-xr-x. 2 root root 87 Oct 16 09:22 . drwxr-xr-x. 6 root root 52 Aug 8 2019 .. -rw-r--r--. 1 root root 1280 Aug 8 2019 bl.bin -rw-r--r--. 1 root root 17152 Aug 8 2019 ucode_load.bin -rw-r--r--. 1 root root 3328 Aug 8 2019 ucode_unload.bin -rw-r--r--. 1 root root 1280 Aug 8 2019 unload_bl.bin /usr/lib/firmware/nvidia/gp102/gr: total 88 drwxr-xr-x. 2 root root 263 Oct 16 09:22 . drwxr-xr-x. 6 root root 52 Aug 8 2019 .. lrwxrwxrwx. 1 root root 26 Oct 16 09:22 fecs_bl.bin -> ../../gm200/gr/fecs_bl.bin -rw-r--r--. 1 root root 2256 Aug 8 2019 fecs_data.bin -rw-r--r--. 1 root root 20927 Aug 8 2019 fecs_inst.bin -rw-r--r--. 1 root root 192 Aug 8 2019 fecs_sig.bin lrwxrwxrwx. 1 root root 27 Oct 16 09:22 gpccs_bl.bin -> ../../gm200/gr/gpccs_bl.bin -rw-r--r--. 1 root root 1832 Aug 8 2019 gpccs_data.bin -rw-r--r--. 1 root root 13307 Aug 8 2019 gpccs_inst.bin -rw-r--r--. 1 root root 192 Aug 8 2019 gpccs_sig.bin -rw-r--r--. 1 root root 7680 Aug 8 2019 sw_bundle_init.bin -rw-r--r--. 1 root root 6216 Aug 8 2019 sw_ctx.bin -rw-r--r--. 1 root root 12288 Aug 8 2019 sw_method_init.bin -rw-r--r--. 1 root root 2496 Aug 8 2019 sw_nonctx.bin /usr/lib/firmware/nvidia/gp102/nvdec: total 4 drwxr-xr-x. 2 root root 26 Oct 16 09:22 . drwxr-xr-x. 6 root root 52 Aug 8 2019 .. -rw-r--r--. 1 root root 3840 Aug 8 2019 scrubber.bin /usr/lib/firmware/nvidia/gp102/sec2: total 108 drwxr-xr-x. 2 root root 54 Oct 16 09:22 . drwxr-xr-x. 6 root root 52 Aug 8 2019 .. -rw-r--r--. 1 root root 656 Aug 8 2019 desc.bin -rw-r--r--. 1 root root 99072 Aug 8 2019 image.bin -rw-r--r--. 1 root root 192 Aug 8 2019 sig.bin /usr/lib/firmware/nvidia/gp104: total 0 drwxr-xr-x. 6 root root 52 Aug 8 2019 . drwxr-xr-x. 19 root root 236 Oct 16 09:22 .. drwxr-xr-x. 2 root root 87 Oct 16 09:22 acr drwxr-xr-x. 2 root root 263 Oct 16 09:22 gr drwxr-xr-x. 2 root root 26 Oct 16 09:22 nvdec drwxr-xr-x. 2 root root 54 Oct 16 09:22 sec2 /usr/lib/firmware/nvidia/gp104/acr: total 0 drwxr-xr-x. 2 root root 87 Oct 16 09:22 . drwxr-xr-x. 6 root root 52 Aug 8 2019 .. lrwxrwxrwx. 1 root root 22 Oct 16 09:22 bl.bin -> ../../gp102/acr/bl.bin lrwxrwxrwx. 1 root root 30 Oct 16 09:22 ucode_load.bin -> ../../gp102/acr/ucode_load.bin lrwxrwxrwx. 1 root root 32 Oct 16 09:22 ucode_unload.bin -> ../../gp102/acr/ucode_unload.bin lrwxrwxrwx. 1 root root 29 Oct 16 09:22 unload_bl.bin -> ../../gp102/acr/unload_bl.bin /usr/lib/firmware/nvidia/gp104/gr: total 56 drwxr-xr-x. 2 root root 263 Oct 16 09:22 . drwxr-xr-x. 6 root root 52 Aug 8 2019 .. lrwxrwxrwx. 1 root root 26 Oct 16 09:22 fecs_bl.bin -> ../../gp102/gr/fecs_bl.bin -rw-r--r--. 1 root root 2576 Aug 8 2019 fecs_data.bin -rw-r--r--. 1 root root 22760 Aug 8 2019 fecs_inst.bin -rw-r--r--. 1 root root 192 Aug 8 2019 fecs_sig.bin lrwxrwxrwx. 1 root root 27 Oct 16 09:22 gpccs_bl.bin -> ../../gp102/gr/gpccs_bl.bin -rw-r--r--. 1 root root 1832 Aug 8 2019 gpccs_data.bin -rw-r--r--. 1 root root 13307 Aug 8 2019 gpccs_inst.bin -rw-r--r--. 1 root root 192 Aug 8 2019 gpccs_sig.bin lrwxrwxrwx. 1 root root 33 Oct 16 09:22 sw_bundle_init.bin -> ../../gp102/gr/sw_bundle_init.bin lrwxrwxrwx. 1 root root 25 Oct 16 09:22 sw_ctx.bin -> ../../gp102/gr/sw_ctx.bin lrwxrwxrwx. 1 root root 33 Oct 16 09:22 sw_method_init.bin -> ../../gp102/gr/sw_method_init.bin lrwxrwxrwx. 1 root root 28 Oct 16 09:22 sw_nonctx.bin -> ../../gp102/gr/sw_nonctx.bin /usr/lib/firmware/nvidia/gp104/nvdec: total 0 drwxr-xr-x. 2 root root 26 Oct 16 09:22 . drwxr-xr-x. 6 root root 52 Aug 8 2019 .. lrwxrwxrwx. 1 root root 30 Oct 16 09:22 scrubber.bin -> ../../gp102/nvdec/scrubber.bin /usr/lib/firmware/nvidia/gp104/sec2: total 0 drwxr-xr-x. 2 root root 54 Oct 16 09:22 . drwxr-xr-x. 6 root root 52 Aug 8 2019 .. lrwxrwxrwx. 1 root root 25 Oct 16 09:22 desc.bin -> ../../gp102/sec2/desc.bin lrwxrwxrwx. 1 root root 26 Oct 16 09:22 image.bin -> ../../gp102/sec2/image.bin lrwxrwxrwx. 1 root root 24 Oct 16 09:22 sig.bin -> ../../gp102/sec2/sig.bin /usr/lib/firmware/nvidia/gp106: total 0 drwxr-xr-x. 6 root root 52 Aug 8 2019 . drwxr-xr-x. 19 root root 236 Oct 16 09:22 .. drwxr-xr-x. 2 root root 87 Oct 16 09:22 acr drwxr-xr-x. 2 root root 263 Oct 16 09:22 gr drwxr-xr-x. 2 root root 26 Oct 16 09:22 nvdec drwxr-xr-x. 2 root root 54 Oct 16 09:22 sec2 /usr/lib/firmware/nvidia/gp106/acr: total 0 drwxr-xr-x. 2 root root 87 Oct 16 09:22 . drwxr-xr-x. 6 root root 52 Aug 8 2019 .. lrwxrwxrwx. 1 root root 22 Oct 16 09:22 bl.bin -> ../../gp102/acr/bl.bin lrwxrwxrwx. 1 root root 30 Oct 16 09:22 ucode_load.bin -> ../../gp102/acr/ucode_load.bin lrwxrwxrwx. 1 root root 32 Oct 16 09:22 ucode_unload.bin -> ../../gp102/acr/ucode_unload.bin lrwxrwxrwx. 1 root root 29 Oct 16 09:22 unload_bl.bin -> ../../gp102/acr/unload_bl.bin /usr/lib/firmware/nvidia/gp106/gr: total 16 drwxr-xr-x. 2 root root 263 Oct 16 09:22 . drwxr-xr-x. 6 root root 52 Aug 8 2019 .. lrwxrwxrwx. 1 root root 26 Oct 16 09:22 fecs_bl.bin -> ../../gp102/gr/fecs_bl.bin -rw-r--r--. 1 root root 2256 Aug 8 2019 fecs_data.bin lrwxrwxrwx. 1 root root 28 Oct 16 09:22 fecs_inst.bin -> ../../gp102/gr/fecs_inst.bin -rw-r--r--. 1 root root 192 Aug 8 2019 fecs_sig.bin lrwxrwxrwx. 1 root root 27 Oct 16 09:22 gpccs_bl.bin -> ../../gp102/gr/gpccs_bl.bin -rw-r--r--. 1 root root 1832 Aug 8 2019 gpccs_data.bin lrwxrwxrwx. 1 root root 29 Oct 16 09:22 gpccs_inst.bin -> ../../gp102/gr/gpccs_inst.bin -rw-r--r--. 1 root root 192 Aug 8 2019 gpccs_sig.bin lrwxrwxrwx. 1 root root 33 Oct 16 09:22 sw_bundle_init.bin -> ../../gp102/gr/sw_bundle_init.bin lrwxrwxrwx. 1 root root 25 Oct 16 09:22 sw_ctx.bin -> ../../gp102/gr/sw_ctx.bin lrwxrwxrwx. 1 root root 33 Oct 16 09:22 sw_method_init.bin -> ../../gp102/gr/sw_method_init.bin lrwxrwxrwx. 1 root root 28 Oct 16 09:22 sw_nonctx.bin -> ../../gp102/gr/sw_nonctx.bin /usr/lib/firmware/nvidia/gp106/nvdec: total 0 drwxr-xr-x. 2 root root 26 Oct 16 09:22 . drwxr-xr-x. 6 root root 52 Aug 8 2019 .. lrwxrwxrwx. 1 root root 30 Oct 16 09:22 scrubber.bin -> ../../gp102/nvdec/scrubber.bin /usr/lib/firmware/nvidia/gp106/sec2: total 0 drwxr-xr-x. 2 root root 54 Oct 16 09:22 . drwxr-xr-x. 6 root root 52 Aug 8 2019 .. lrwxrwxrwx. 1 root root 25 Oct 16 09:22 desc.bin -> ../../gp102/sec2/desc.bin lrwxrwxrwx. 1 root root 26 Oct 16 09:22 image.bin -> ../../gp102/sec2/image.bin lrwxrwxrwx. 1 root root 24 Oct 16 09:22 sig.bin -> ../../gp102/sec2/sig.bin /usr/lib/firmware/nvidia/gp107: total 0 drwxr-xr-x. 6 root root 52 Aug 8 2019 . drwxr-xr-x. 19 root root 236 Oct 16 09:22 .. drwxr-xr-x. 2 root root 87 Oct 16 09:22 acr drwxr-xr-x. 2 root root 263 Oct 16 09:22 gr drwxr-xr-x. 2 root root 26 Oct 16 09:22 nvdec drwxr-xr-x. 2 root root 54 Oct 16 09:22 sec2 /usr/lib/firmware/nvidia/gp107/acr: total 0 drwxr-xr-x. 2 root root 87 Oct 16 09:22 . drwxr-xr-x. 6 root root 52 Aug 8 2019 .. lrwxrwxrwx. 1 root root 22 Oct 16 09:22 bl.bin -> ../../gp102/acr/bl.bin lrwxrwxrwx. 1 root root 30 Oct 16 09:22 ucode_load.bin -> ../../gp102/acr/ucode_load.bin lrwxrwxrwx. 1 root root 32 Oct 16 09:22 ucode_unload.bin -> ../../gp102/acr/ucode_unload.bin lrwxrwxrwx. 1 root root 29 Oct 16 09:22 unload_bl.bin -> ../../gp102/acr/unload_bl.bin /usr/lib/firmware/nvidia/gp107/gr: total 76 drwxr-xr-x. 2 root root 263 Oct 16 09:22 . drwxr-xr-x. 6 root root 52 Aug 8 2019 .. -rw-r--r--. 1 root root 576 Aug 8 2019 fecs_bl.bin -rw-r--r--. 1 root root 2756 Aug 8 2019 fecs_data.bin -rw-r--r--. 1 root root 22879 Aug 8 2019 fecs_inst.bin -rw-r--r--. 1 root root 192 Aug 8 2019 fecs_sig.bin -rw-r--r--. 1 root root 576 Aug 8 2019 gpccs_bl.bin -rw-r--r--. 1 root root 2100 Aug 8 2019 gpccs_data.bin -rw-r--r--. 1 root root 12587 Aug 8 2019 gpccs_inst.bin -rw-r--r--. 1 root root 192 Aug 8 2019 gpccs_sig.bin lrwxrwxrwx. 1 root root 33 Oct 16 09:22 sw_bundle_init.bin -> ../../gp102/gr/sw_bundle_init.bin -rw-r--r--. 1 root root 6000 Aug 8 2019 sw_ctx.bin lrwxrwxrwx. 1 root root 33 Oct 16 09:22 sw_method_init.bin -> ../../gp102/gr/sw_method_init.bin -rw-r--r--. 1 root root 2496 Aug 8 2019 sw_nonctx.bin /usr/lib/firmware/nvidia/gp107/nvdec: total 0 drwxr-xr-x. 2 root root 26 Oct 16 09:22 . drwxr-xr-x. 6 root root 52 Aug 8 2019 .. lrwxrwxrwx. 1 root root 30 Oct 16 09:22 scrubber.bin -> ../../gp102/nvdec/scrubber.bin /usr/lib/firmware/nvidia/gp107/sec2: total 0 drwxr-xr-x. 2 root root 54 Oct 16 09:22 . drwxr-xr-x. 6 root root 52 Aug 8 2019 .. lrwxrwxrwx. 1 root root 25 Oct 16 09:22 desc.bin -> ../../gp102/sec2/desc.bin lrwxrwxrwx. 1 root root 26 Oct 16 09:22 image.bin -> ../../gp102/sec2/image.bin lrwxrwxrwx. 1 root root 24 Oct 16 09:22 sig.bin -> ../../gp102/sec2/sig.bin /usr/lib/firmware/nvidia/gp108: total 0 drwxr-xr-x. 6 root root 52 Aug 8 2019 . drwxr-xr-x. 19 root root 236 Oct 16 09:22 .. drwxr-xr-x. 2 root root 87 Oct 16 09:22 acr drwxr-xr-x. 2 root root 263 Oct 16 09:22 gr drwxr-xr-x. 2 root root 26 Oct 16 09:22 nvdec drwxr-xr-x. 2 root root 54 Oct 16 09:22 sec2 /usr/lib/firmware/nvidia/gp108/acr: total 0 drwxr-xr-x. 2 root root 87 Oct 16 09:22 . drwxr-xr-x. 6 root root 52 Aug 8 2019 .. lrwxrwxrwx. 1 root root 22 Oct 16 09:22 bl.bin -> ../../gp102/acr/bl.bin lrwxrwxrwx. 1 root root 30 Oct 16 09:22 ucode_load.bin -> ../../gp102/acr/ucode_load.bin lrwxrwxrwx. 1 root root 32 Oct 16 09:22 ucode_unload.bin -> ../../gp102/acr/ucode_unload.bin lrwxrwxrwx. 1 root root 29 Oct 16 09:22 unload_bl.bin -> ../../gp102/acr/unload_bl.bin /usr/lib/firmware/nvidia/gp108/gr: total 96 drwxr-xr-x. 2 root root 263 Oct 16 09:22 . drwxr-xr-x. 6 root root 52 Aug 8 2019 .. -rw-r--r--. 1 root root 576 Aug 8 2019 fecs_bl.bin -rw-r--r--. 1 root root 2248 Aug 8 2019 fecs_data.bin -rw-r--r--. 1 root root 21161 Aug 8 2019 fecs_inst.bin -rw-r--r--. 1 root root 192 Aug 8 2019 fecs_sig.bin -rw-r--r--. 1 root root 576 Aug 8 2019 gpccs_bl.bin -rw-r--r--. 1 root root 2092 Aug 8 2019 gpccs_data.bin -rw-r--r--. 1 root root 13095 Aug 8 2019 gpccs_inst.bin -rw-r--r--. 1 root root 192 Aug 8 2019 gpccs_sig.bin -rw-r--r--. 1 root root 7680 Aug 8 2019 sw_bundle_init.bin -rw-r--r--. 1 root root 6000 Aug 8 2019 sw_ctx.bin -rw-r--r--. 1 root root 12288 Aug 8 2019 sw_method_init.bin -rw-r--r--. 1 root root 2496 Aug 8 2019 sw_nonctx.bin /usr/lib/firmware/nvidia/gp108/nvdec: total 0 drwxr-xr-x. 2 root root 26 Oct 16 09:22 . drwxr-xr-x. 6 root root 52 Aug 8 2019 .. lrwxrwxrwx. 1 root root 30 Oct 16 09:22 scrubber.bin -> ../../gp102/nvdec/scrubber.bin /usr/lib/firmware/nvidia/gp108/sec2: total 116 drwxr-xr-x. 2 root root 54 Oct 16 09:22 . drwxr-xr-x. 6 root root 52 Aug 8 2019 .. -rw-r--r--. 1 root root 656 Aug 8 2019 desc.bin -rw-r--r--. 1 root root 109568 Aug 8 2019 image.bin -rw-r--r--. 1 root root 192 Aug 8 2019 sig.bin /usr/lib/firmware/nvidia/gp10b: total 0 drwxr-xr-x. 5 root root 38 Aug 8 2019 . drwxr-xr-x. 19 root root 236 Oct 16 09:22 .. drwxr-xr-x. 2 root root 42 Oct 16 09:22 acr drwxr-xr-x. 2 root root 263 Oct 16 09:22 gr drwxr-xr-x. 2 root root 54 Oct 16 09:22 pmu /usr/lib/firmware/nvidia/gp10b/acr: total 24 drwxr-xr-x. 2 root root 42 Oct 16 09:22 . drwxr-xr-x. 5 root root 38 Aug 8 2019 .. -rw-r--r--. 1 root root 1280 Aug 8 2019 bl.bin -rw-r--r--. 1 root root 19456 Aug 8 2019 ucode_load.bin /usr/lib/firmware/nvidia/gp10b/gr: total 96 drwxr-xr-x. 2 root root 263 Oct 16 09:22 . drwxr-xr-x. 5 root root 38 Aug 8 2019 .. -rw-r--r--. 1 root root 576 Aug 8 2019 fecs_bl.bin -rw-r--r--. 1 root root 3668 Aug 8 2019 fecs_data.bin -rw-r--r--. 1 root root 22306 Aug 8 2019 fecs_inst.bin -rw-r--r--. 1 root root 76 Aug 8 2019 fecs_sig.bin -rw-r--r--. 1 root root 576 Aug 8 2019 gpccs_bl.bin -rw-r--r--. 1 root root 2340 Aug 8 2019 gpccs_data.bin -rw-r--r--. 1 root root 12921 Aug 8 2019 gpccs_inst.bin -rw-r--r--. 1 root root 76 Aug 8 2019 gpccs_sig.bin -rw-r--r--. 1 root root 7664 Aug 8 2019 sw_bundle_init.bin -rw-r--r--. 1 root root 6036 Aug 8 2019 sw_ctx.bin -rw-r--r--. 1 root root 11928 Aug 8 2019 sw_method_init.bin -rw-r--r--. 1 root root 2744 Aug 8 2019 sw_nonctx.bin /usr/lib/firmware/nvidia/gp10b/pmu: total 60 drwxr-xr-x. 2 root root 54 Oct 16 09:22 . drwxr-xr-x. 5 root root 38 Aug 8 2019 .. -rw-r--r--. 1 root root 652 Aug 8 2019 desc.bin -rw-r--r--. 1 root root 49408 Aug 8 2019 image.bin -rw-r--r--. 1 root root 76 Aug 8 2019 sig.bin /usr/lib/firmware/nvidia/gv100: total 0 drwxr-xr-x. 6 root root 52 Oct 16 09:22 . drwxr-xr-x. 19 root root 236 Oct 16 09:22 .. drwxr-xr-x. 2 root root 87 Oct 16 09:22 acr drwxr-xr-x. 2 root root 263 Oct 16 09:22 gr drwxr-xr-x. 2 root root 26 Oct 16 09:22 nvdec drwxr-xr-x. 2 root root 54 Oct 16 09:22 sec2 /usr/lib/firmware/nvidia/gv100/acr: total 36 drwxr-xr-x. 2 root root 87 Oct 16 09:22 . drwxr-xr-x. 6 root root 52 Oct 16 09:22 .. -rw-r--r--. 1 root root 1280 Aug 8 2019 bl.bin -rw-r--r--. 1 root root 18688 Aug 8 2019 ucode_load.bin -rw-r--r--. 1 root root 6400 Aug 8 2019 ucode_unload.bin -rw-r--r--. 1 root root 1280 Aug 8 2019 unload_bl.bin /usr/lib/firmware/nvidia/gv100/gr: total 112 drwxr-xr-x. 2 root root 263 Oct 16 09:22 . drwxr-xr-x. 6 root root 52 Oct 16 09:22 .. -rw-r--r--. 1 root root 576 Aug 8 2019 fecs_bl.bin -rw-r--r--. 1 root root 4788 Aug 8 2019 fecs_data.bin -rw-r--r--. 1 root root 25632 Aug 8 2019 fecs_inst.bin -rw-r--r--. 1 root root 192 Aug 8 2019 fecs_sig.bin -rw-r--r--. 1 root root 576 Aug 8 2019 gpccs_bl.bin -rw-r--r--. 1 root root 2128 Aug 8 2019 gpccs_data.bin -rw-r--r--. 1 root root 12643 Aug 8 2019 gpccs_inst.bin -rw-r--r--. 1 root root 192 Aug 8 2019 gpccs_sig.bin -rw-r--r--. 1 root root 7664 Aug 8 2019 sw_bundle_init.bin -rw-r--r--. 1 root root 9756 Aug 8 2019 sw_ctx.bin -rw-r--r--. 1 root root 12296 Aug 8 2019 sw_method_init.bin -rw-r--r--. 1 root root 2728 Aug 8 2019 sw_nonctx.bin /usr/lib/firmware/nvidia/gv100/nvdec: total 8 drwxr-xr-x. 2 root root 26 Oct 16 09:22 . drwxr-xr-x. 6 root root 52 Oct 16 09:22 .. -rw-r--r--. 1 root root 4352 Aug 8 2019 scrubber.bin /usr/lib/firmware/nvidia/gv100/sec2: total 100 drwxr-xr-x. 2 root root 54 Oct 16 09:22 . drwxr-xr-x. 6 root root 52 Oct 16 09:22 .. -rw-r--r--. 1 root root 656 Aug 8 2019 desc.bin -rw-r--r--. 1 root root 91136 Aug 8 2019 image.bin -rw-r--r--. 1 root root 192 Aug 8 2019 sig.bin /usr/lib/firmware/nvidia/tegra124: total 148 drwxr-xr-x. 2 root root 45 Oct 16 09:22 . drwxr-xr-x. 19 root root 236 Oct 16 09:22 .. -rw-r--r--. 1 root root 16128 Aug 8 2019 vic03_ucode.bin -rw-r--r--. 1 root root 134656 Aug 8 2019 xusb.bin /usr/lib/firmware/nvidia/tegra186: total 20 drwxr-xr-x. 2 root root 29 Oct 16 09:22 . drwxr-xr-x. 19 root root 236 Oct 16 09:22 .. -rw-r--r--. 1 root root 19200 Aug 8 2019 vic04_ucode.bin /usr/lib/firmware/nvidia/tegra210: total 152 drwxr-xr-x. 2 root root 45 Oct 16 09:22 . drwxr-xr-x. 19 root root 236 Oct 16 09:22 .. -rw-r--r--. 1 root root 16640 Aug 8 2019 vic04_ucode.bin -rw-r--r--. 1 root root 132608 Aug 8 2019 xusb.bin /usr/lib/firmware/nvidia/tu10x: total 0 drwxr-xr-x. 3 root root 19 Oct 16 09:22 . drwxr-xr-x. 19 root root 236 Oct 16 09:22 .. drwxr-xr-x. 2 root root 80 Oct 16 09:22 typec /usr/lib/firmware/nvidia/tu10x/typec: total 332 drwxr-xr-x. 2 root root 80 Oct 16 09:22 . drwxr-xr-x. 3 root root 19 Oct 16 09:22 .. -rw-r--r--. 1 root root 90658 Aug 8 2019 ccg_boot.cyacd -rw-r--r--. 1 root root 145523 Aug 8 2019 ccg_primary.cyacd -rw-r--r--. 1 root root 96512 Aug 8 2019 ccg_secondary.cyacd /usr/lib/firmware/ositech: total 20 drwxr-xr-x. 2 root root 27 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 2778 Aug 8 2019 Xilinx7OD.bin /usr/lib/firmware/pcxhr: total 1448 drwxr-xr-x. 2 root root 4096 Aug 15 2019 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 5637 Mar 5 2015 b321_512.b56 -rw-r--r--. 1 root root 180609 Mar 5 2015 d321_512.d56 -rw-r--r--. 1 root root 5151 Mar 5 2015 dspb1222e.b56 -rw-r--r--. 1 root root 5199 Mar 5 2015 dspb1222hr.b56 -rw-r--r--. 1 root root 4764 Mar 5 2015 dspb882e.b56 -rw-r--r--. 1 root root 4806 Mar 5 2015 dspb882hr.b56 -rw-r--r--. 1 root root 2688 Mar 5 2015 dspb924.b56 -rw-r--r--. 1 root root 180198 Mar 5 2015 dspd1222.d56 -rw-r--r--. 1 root root 89610 Mar 5 2015 dspd222.d56 -rw-r--r--. 1 root root 182256 Mar 5 2015 dspd882.d56 -rw-r--r--. 1 root root 618 Mar 5 2015 dspe882.e56 -rw-r--r--. 1 root root 612 Mar 5 2015 dspe924.e56 -rw-r--r--. 1 root root 618 Mar 5 2015 e321_512.e56 -rw-r--r--. 1 root root 78756 Mar 5 2015 xc_1_882.dat -rw-r--r--. 1 root root 78756 Mar 5 2015 xi_1_882.dat -rw-r--r--. 1 root root 78831 Mar 5 2015 xlxc1222e.dat -rw-r--r--. 1 root root 78831 Mar 5 2015 xlxc1222hr.dat -rw-r--r--. 1 root root 78831 Mar 5 2015 xlxc222.dat -rw-r--r--. 1 root root 78831 Mar 5 2015 xlxc882e.dat -rw-r--r--. 1 root root 78831 Mar 5 2015 xlxc882hr.dat -rw-r--r--. 1 root root 108056 Mar 5 2015 xlxc924.dat -rw-r--r--. 1 root root 78831 Mar 5 2015 xlxint.dat /usr/lib/firmware/qca: total 660 drwxr-xr-x. 2 root root 4096 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 177060 Aug 8 2019 crbtfw21.tlv -rw-r--r--. 1 root root 4587 Aug 8 2019 crnv21.bin -rw-r--r--. 1 root root 19013 Aug 8 2019 NOTICE.txt -rw-r--r--. 1 root root 1937 Aug 8 2019 nvm_00130300.bin -rw-r--r--. 1 root root 1968 Aug 8 2019 nvm_00130302.bin -rw-r--r--. 1 root root 2010 Aug 8 2019 nvm_00440302.bin -rw-r--r--. 1 root root 1859 Aug 8 2019 nvm_usb_00000200.bin -rw-r--r--. 1 root root 1859 Aug 8 2019 nvm_usb_00000201.bin -rw-r--r--. 1 root root 1857 Aug 8 2019 nvm_usb_00000300.bin -rw-r--r--. 1 root root 1996 Aug 8 2019 nvm_usb_00000302.bin -rw-r--r--. 1 root root 65864 Aug 8 2019 rampatch_00130300.bin -rw-r--r--. 1 root root 32064 Aug 8 2019 rampatch_00130302.bin -rw-r--r--. 1 root root 64940 Aug 8 2019 rampatch_00440302.bin -rw-r--r--. 1 root root 54432 Aug 8 2019 rampatch_usb_00000200.bin -rw-r--r--. 1 root root 54432 Aug 8 2019 rampatch_usb_00000201.bin -rw-r--r--. 1 root root 65776 Aug 8 2019 rampatch_usb_00000300.bin -rw-r--r--. 1 root root 64168 Aug 8 2019 rampatch_usb_00000302.bin /usr/lib/firmware/qcom: total 128 drwxr-xr-x. 5 root root 254 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 1156 Aug 8 2019 a300_pfp.fw -rw-r--r--. 1 root root 9220 Aug 8 2019 a300_pm4.fw -rw-r--r--. 1 root root 15876 Aug 8 2019 a530_pfp.fw -rw-r--r--. 1 root root 19572 Aug 8 2019 a530_pm4.fw -rw-r--r--. 1 root root 8184 Aug 8 2019 a530v3_gpmu.fw2 -rw-r--r--. 1 root root 148 Aug 8 2019 a530_zap.b00 -rw-r--r--. 1 root root 6536 Aug 8 2019 a530_zap.b01 -rw-r--r--. 1 root root 4900 Aug 8 2019 a530_zap.b02 -rw-r--r--. 1 root root 6684 Aug 8 2019 a530_zap.mdt -rw-r--r--. 1 root root 23966 Aug 8 2019 NOTICE.txt drwxr-xr-x. 2 root root 108 Oct 16 09:22 venus-1.8 drwxr-xr-x. 2 root root 108 Oct 16 09:22 venus-4.2 drwxr-xr-x. 2 root root 125 Oct 16 09:22 venus-5.2 /usr/lib/firmware/qcom/venus-1.8: total 988 drwxr-xr-x. 2 root root 108 Oct 16 09:22 . drwxr-xr-x. 5 root root 254 Oct 16 09:22 .. -rw-r--r--. 1 root root 212 Aug 8 2019 venus.b00 -rw-r--r--. 1 root root 6600 Aug 8 2019 venus.b01 -rw-r--r--. 1 root root 975088 Aug 8 2019 venus.b02 -rw-r--r--. 1 root root 5568 Aug 8 2019 venus.b03 -rw-r--r--. 1 root root 32 Aug 8 2019 venus.b04 -rw-r--r--. 1 root root 6812 Aug 8 2019 venus.mdt /usr/lib/firmware/qcom/venus-4.2: total 920 drwxr-xr-x. 2 root root 108 Oct 16 09:22 . drwxr-xr-x. 5 root root 254 Oct 16 09:22 .. -rw-r--r--. 1 root root 212 Aug 8 2019 venus.b00 -rw-r--r--. 1 root root 6600 Aug 8 2019 venus.b01 -rw-r--r--. 1 root root 884136 Aug 8 2019 venus.b02 -rw-r--r--. 1 root root 28976 Aug 8 2019 venus.b03 -rw-r--r--. 1 root root 32 Aug 8 2019 venus.b04 -rw-r--r--. 1 root root 6812 Aug 8 2019 venus.mdt /usr/lib/firmware/qcom/venus-5.2: total 1744 drwxr-xr-x. 2 root root 125 Oct 16 09:22 . drwxr-xr-x. 5 root root 254 Oct 16 09:22 .. -rw-r--r--. 1 root root 212 Aug 8 2019 venus.b00 -rw-r--r--. 1 root root 6600 Aug 8 2019 venus.b01 -rw-r--r--. 1 root root 837304 Aug 8 2019 venus.b02 -rw-r--r--. 1 root root 33640 Aug 8 2019 venus.b03 -rw-r--r--. 1 root root 32 Aug 8 2019 venus.b04 -rw-r--r--. 1 root root 883264 Aug 8 2019 venus.mbn -rw-r--r--. 1 root root 6812 Aug 8 2019 venus.mdt /usr/lib/firmware/qed: total 17584 drwxr-xr-x. 2 root root 4096 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rwxr-xr-x. 1 root root 1434652 Aug 8 2019 qed_init_values-8.10.9.0.bin -rwxr-xr-x. 1 root root 1459040 Aug 8 2019 qed_init_values-8.14.6.0.bin -rwxr-xr-x. 1 root root 1536984 Aug 8 2019 qed_init_values-8.18.9.0.bin -rwxr-xr-x. 1 root root 1443340 Aug 8 2019 qed_init_values-8.20.0.0.bin -rwxr-xr-x. 1 root root 1507052 Aug 8 2019 qed_init_values-8.30.12.0.bin -rwxr-xr-x. 1 root root 1562920 Aug 8 2019 qed_init_values-8.33.12.0.bin -rwxr-xr-x. 1 root root 1559500 Aug 8 2019 qed_init_values-8.37.7.0.bin -rw-r--r--. 1 root root 780576 Aug 8 2019 qed_init_values_zipped-8.10.10.0.bin -rw-r--r--. 1 root root 767532 Aug 8 2019 qed_init_values_zipped-8.10.5.0.bin -rw-r--r--. 1 root root 789540 Aug 8 2019 qed_init_values_zipped-8.15.3.0.bin -rw-r--r--. 1 root root 794456 Aug 8 2019 qed_init_values_zipped-8.20.0.0.bin -rwxr-xr-x. 1 root root 838612 Aug 8 2019 qed_init_values_zipped-8.33.1.0.bin -rwxr-xr-x. 1 root root 852456 Aug 8 2019 qed_init_values_zipped-8.33.11.0.bin -rwxr-xr-x. 1 root root 867472 Aug 8 2019 qed_init_values_zipped-8.37.2.0.bin -rwxr-xr-x. 1 root root 872296 Aug 8 2019 qed_init_values_zipped-8.37.7.0.bin -rw-r--r--. 1 root root 416930 Aug 8 2019 qed_init_values_zipped-8.4.2.0.bin -rw-r--r--. 1 root root 473792 Aug 8 2019 qed_init_values_zipped-8.7.3.0.bin /usr/lib/firmware/qlogic: total 140 drwxr-xr-x. 2 root root 91 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 33462 Aug 8 2019 1040.bin -rw-r--r--. 1 root root 28056 Aug 8 2019 12160.bin -rw-r--r--. 1 root root 31842 Aug 8 2019 1280.bin -rw-r--r--. 1 root root 18482 Aug 8 2019 isp1000.bin -rw-r--r--. 1 root root 8192 Aug 8 2019 sd7220.fw /usr/lib/firmware/r128: total 20 drwxr-xr-x. 2 root root 26 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 2048 Aug 8 2019 r128_cce.bin /usr/lib/firmware/radeon: total 7588 drwxr-xr-x. 2 root root 12288 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 8704 Aug 8 2019 ARUBA_me.bin -rw-r--r--. 1 root root 8704 Aug 8 2019 ARUBA_pfp.bin -rw-r--r--. 1 root root 6144 Aug 8 2019 ARUBA_rlc.bin -rw-r--r--. 1 root root 61932 Aug 8 2019 banks_k_2_smc.bin -rw-r--r--. 1 root root 24096 Aug 8 2019 BARTS_mc.bin -rw-r--r--. 1 root root 5504 Aug 8 2019 BARTS_me.bin -rw-r--r--. 1 root root 4480 Aug 8 2019 BARTS_pfp.bin -rw-r--r--. 1 root root 24840 Aug 8 2019 BARTS_smc.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 bonaire_ce.bin -rw-r--r--. 1 root root 8576 Aug 8 2019 BONAIRE_ce.bin -rw-r--r--. 1 root root 130796 Aug 8 2019 bonaire_k_smc.bin -rw-r--r--. 1 root root 31792 Aug 8 2019 BONAIRE_mc2.bin -rw-r--r--. 1 root root 32336 Aug 8 2019 bonaire_mc.bin -rw-r--r--. 1 root root 31464 Aug 8 2019 BONAIRE_mc.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 bonaire_me.bin -rw-r--r--. 1 root root 8576 Aug 8 2019 BONAIRE_me.bin -rw-r--r--. 1 root root 17024 Aug 8 2019 bonaire_mec.bin -rw-r--r--. 1 root root 16768 Aug 8 2019 BONAIRE_mec.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 bonaire_pfp.bin -rw-r--r--. 1 root root 8576 Aug 8 2019 BONAIRE_pfp.bin -rw-r--r--. 1 root root 8448 Aug 8 2019 bonaire_rlc.bin -rw-r--r--. 1 root root 8192 Aug 8 2019 BONAIRE_rlc.bin -rw-r--r--. 1 root root 4456 Aug 8 2019 bonaire_sdma1.bin -rw-r--r--. 1 root root 4456 Aug 8 2019 bonaire_sdma.bin -rw-r--r--. 1 root root 4200 Aug 8 2019 BONAIRE_sdma.bin -rw-r--r--. 1 root root 130796 Aug 8 2019 bonaire_smc.bin -rw-r--r--. 1 root root 130540 Aug 8 2019 BONAIRE_smc.bin -rw-r--r--. 1 root root 232752 Aug 8 2019 bonaire_uvd.bin -rw-r--r--. 1 root root 232240 Aug 8 2019 BONAIRE_uvd.bin -rw-r--r--. 1 root root 101072 Aug 8 2019 bonaire_vce.bin -rw-r--r--. 1 root root 78248 Aug 8 2019 BONAIRE_vce.bin -rw-r--r--. 1 root root 3072 Aug 8 2019 BTC_rlc.bin -rw-r--r--. 1 root root 24096 Aug 8 2019 CAICOS_mc.bin -rw-r--r--. 1 root root 5504 Aug 8 2019 CAICOS_me.bin -rw-r--r--. 1 root root 4480 Aug 8 2019 CAICOS_pfp.bin -rw-r--r--. 1 root root 24512 Aug 8 2019 CAICOS_smc.bin -rw-r--r--. 1 root root 24148 Aug 8 2019 CAYMAN_mc.bin -rw-r--r--. 1 root root 8704 Aug 8 2019 CAYMAN_me.bin -rw-r--r--. 1 root root 8704 Aug 8 2019 CAYMAN_pfp.bin -rw-r--r--. 1 root root 4096 Aug 8 2019 CAYMAN_rlc.bin -rw-r--r--. 1 root root 31212 Aug 8 2019 CAYMAN_smc.bin -rw-r--r--. 1 root root 5504 Aug 8 2019 CEDAR_me.bin -rw-r--r--. 1 root root 4480 Aug 8 2019 CEDAR_pfp.bin -rw-r--r--. 1 root root 3072 Aug 8 2019 CEDAR_rlc.bin -rw-r--r--. 1 root root 23888 Aug 8 2019 CEDAR_smc.bin -rw-r--r--. 1 root root 5504 Aug 8 2019 CYPRESS_me.bin -rw-r--r--. 1 root root 4480 Aug 8 2019 CYPRESS_pfp.bin -rw-r--r--. 1 root root 3072 Aug 8 2019 CYPRESS_rlc.bin -rw-r--r--. 1 root root 25080 Aug 8 2019 CYPRESS_smc.bin -rw-r--r--. 1 root root 115736 Aug 8 2019 CYPRESS_uvd.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 hainan_ce.bin -rw-r--r--. 1 root root 8576 Aug 8 2019 HAINAN_ce.bin -rw-r--r--. 1 root root 61876 Aug 8 2019 hainan_k_smc.bin -rw-r--r--. 1 root root 31452 Aug 8 2019 HAINAN_mc2.bin -rw-r--r--. 1 root root 31996 Aug 8 2019 hainan_mc.bin -rw-r--r--. 1 root root 31452 Aug 8 2019 HAINAN_mc.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 hainan_me.bin -rw-r--r--. 1 root root 8576 Aug 8 2019 HAINAN_me.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 hainan_pfp.bin -rw-r--r--. 1 root root 8576 Aug 8 2019 HAINAN_pfp.bin -rw-r--r--. 1 root root 8448 Aug 8 2019 hainan_rlc.bin -rw-r--r--. 1 root root 8192 Aug 8 2019 HAINAN_rlc.bin -rw-r--r--. 1 root root 61444 Aug 8 2019 hainan_smc.bin -rw-r--r--. 1 root root 59004 Aug 8 2019 HAINAN_smc.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 hawaii_ce.bin -rw-r--r--. 1 root root 8576 Aug 8 2019 HAWAII_ce.bin -rw-r--r--. 1 root root 130796 Aug 8 2019 hawaii_k_smc.bin -rw-r--r--. 1 root root 32364 Aug 8 2019 HAWAII_mc2.bin -rw-r--r--. 1 root root 32796 Aug 8 2019 hawaii_mc.bin -rw-r--r--. 1 root root 31732 Aug 8 2019 HAWAII_mc.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 hawaii_me.bin -rw-r--r--. 1 root root 8576 Aug 8 2019 HAWAII_me.bin -rw-r--r--. 1 root root 17024 Aug 8 2019 hawaii_mec.bin -rw-r--r--. 1 root root 16768 Aug 8 2019 HAWAII_mec.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 hawaii_pfp.bin -rw-r--r--. 1 root root 8576 Aug 8 2019 HAWAII_pfp.bin -rw-r--r--. 1 root root 8448 Aug 8 2019 hawaii_rlc.bin -rw-r--r--. 1 root root 8192 Aug 8 2019 HAWAII_rlc.bin -rw-r--r--. 1 root root 4456 Aug 8 2019 hawaii_sdma1.bin -rw-r--r--. 1 root root 4456 Aug 8 2019 hawaii_sdma.bin -rw-r--r--. 1 root root 4200 Aug 8 2019 HAWAII_sdma.bin -rw-r--r--. 1 root root 130796 Aug 8 2019 hawaii_smc.bin -rw-r--r--. 1 root root 130540 Aug 8 2019 HAWAII_smc.bin -rw-r--r--. 1 root root 232752 Aug 8 2019 hawaii_uvd.bin -rw-r--r--. 1 root root 101072 Aug 8 2019 hawaii_vce.bin -rw-r--r--. 1 root root 5504 Aug 8 2019 JUNIPER_me.bin -rw-r--r--. 1 root root 4480 Aug 8 2019 JUNIPER_pfp.bin -rw-r--r--. 1 root root 3072 Aug 8 2019 JUNIPER_rlc.bin -rw-r--r--. 1 root root 24352 Aug 8 2019 JUNIPER_smc.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 kabini_ce.bin -rw-r--r--. 1 root root 8576 Aug 8 2019 KABINI_ce.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 kabini_me.bin -rw-r--r--. 1 root root 8576 Aug 8 2019 KABINI_me.bin -rw-r--r--. 1 root root 17024 Aug 8 2019 kabini_mec.bin -rw-r--r--. 1 root root 16768 Aug 8 2019 KABINI_mec.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 kabini_pfp.bin -rw-r--r--. 1 root root 8576 Aug 8 2019 KABINI_pfp.bin -rw-r--r--. 1 root root 10496 Aug 8 2019 kabini_rlc.bin -rw-r--r--. 1 root root 10240 Aug 8 2019 KABINI_rlc.bin -rw-r--r--. 1 root root 4456 Aug 8 2019 kabini_sdma1.bin -rw-r--r--. 1 root root 4456 Aug 8 2019 kabini_sdma.bin -rw-r--r--. 1 root root 4200 Aug 8 2019 KABINI_sdma.bin -rw-r--r--. 1 root root 232752 Aug 8 2019 kabini_uvd.bin -rw-r--r--. 1 root root 101072 Aug 8 2019 kabini_vce.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 kaveri_ce.bin -rw-r--r--. 1 root root 8576 Aug 8 2019 KAVERI_ce.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 kaveri_me.bin -rw-r--r--. 1 root root 8576 Aug 8 2019 KAVERI_me.bin -rw-r--r--. 1 root root 17024 Aug 8 2019 kaveri_mec2.bin -rw-r--r--. 1 root root 17024 Aug 8 2019 kaveri_mec.bin -rw-r--r--. 1 root root 16768 Aug 8 2019 KAVERI_mec.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 kaveri_pfp.bin -rw-r--r--. 1 root root 8576 Aug 8 2019 KAVERI_pfp.bin -rw-r--r--. 1 root root 10496 Aug 8 2019 kaveri_rlc.bin -rw-r--r--. 1 root root 10240 Aug 8 2019 KAVERI_rlc.bin -rw-r--r--. 1 root root 4456 Aug 8 2019 kaveri_sdma1.bin -rw-r--r--. 1 root root 4456 Aug 8 2019 kaveri_sdma.bin -rw-r--r--. 1 root root 4200 Aug 8 2019 KAVERI_sdma.bin -rw-r--r--. 1 root root 232752 Aug 8 2019 kaveri_uvd.bin -rw-r--r--. 1 root root 101072 Aug 8 2019 kaveri_vce.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 mullins_ce.bin -rw-r--r--. 1 root root 8576 Aug 8 2019 MULLINS_ce.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 mullins_me.bin -rw-r--r--. 1 root root 8576 Aug 8 2019 MULLINS_me.bin -rw-r--r--. 1 root root 17024 Aug 8 2019 mullins_mec.bin -rw-r--r--. 1 root root 16768 Aug 8 2019 MULLINS_mec.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 mullins_pfp.bin -rw-r--r--. 1 root root 8576 Aug 8 2019 MULLINS_pfp.bin -rw-r--r--. 1 root root 10496 Aug 8 2019 mullins_rlc.bin -rw-r--r--. 1 root root 10240 Aug 8 2019 MULLINS_rlc.bin -rw-r--r--. 1 root root 4456 Aug 8 2019 mullins_sdma1.bin -rw-r--r--. 1 root root 4456 Aug 8 2019 mullins_sdma.bin -rw-r--r--. 1 root root 4200 Aug 8 2019 MULLINS_sdma.bin -rw-r--r--. 1 root root 232752 Aug 8 2019 mullins_uvd.bin -rw-r--r--. 1 root root 101072 Aug 8 2019 mullins_vce.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 oland_ce.bin -rw-r--r--. 1 root root 8576 Aug 8 2019 OLAND_ce.bin -rw-r--r--. 1 root root 62692 Aug 8 2019 oland_k_smc.bin -rw-r--r--. 1 root root 31452 Aug 8 2019 OLAND_mc2.bin -rw-r--r--. 1 root root 31996 Aug 8 2019 oland_mc.bin -rw-r--r--. 1 root root 31452 Aug 8 2019 OLAND_mc.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 oland_me.bin -rw-r--r--. 1 root root 8576 Aug 8 2019 OLAND_me.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 oland_pfp.bin -rw-r--r--. 1 root root 8576 Aug 8 2019 OLAND_pfp.bin -rw-r--r--. 1 root root 8448 Aug 8 2019 oland_rlc.bin -rw-r--r--. 1 root root 8192 Aug 8 2019 OLAND_rlc.bin -rw-r--r--. 1 root root 62260 Aug 8 2019 oland_smc.bin -rw-r--r--. 1 root root 59316 Aug 8 2019 OLAND_smc.bin -rw-r--r--. 1 root root 5504 Aug 8 2019 PALM_me.bin -rw-r--r--. 1 root root 4480 Aug 8 2019 PALM_pfp.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 pitcairn_ce.bin -rw-r--r--. 1 root root 8576 Aug 8 2019 PITCAIRN_ce.bin -rw-r--r--. 1 root root 61712 Aug 8 2019 pitcairn_k_smc.bin -rw-r--r--. 1 root root 31100 Aug 8 2019 PITCAIRN_mc2.bin -rw-r--r--. 1 root root 31644 Aug 8 2019 pitcairn_mc.bin -rw-r--r--. 1 root root 31076 Aug 8 2019 PITCAIRN_mc.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 pitcairn_me.bin -rw-r--r--. 1 root root 8576 Aug 8 2019 PITCAIRN_me.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 pitcairn_pfp.bin -rw-r--r--. 1 root root 8576 Aug 8 2019 PITCAIRN_pfp.bin -rw-r--r--. 1 root root 8448 Aug 8 2019 pitcairn_rlc.bin -rw-r--r--. 1 root root 8192 Aug 8 2019 PITCAIRN_rlc.bin -rw-r--r--. 1 root root 61280 Aug 8 2019 pitcairn_smc.bin -rw-r--r--. 1 root root 59892 Aug 8 2019 PITCAIRN_smc.bin -rw-r--r--. 1 root root 2048 Aug 8 2019 R100_cp.bin -rw-r--r--. 1 root root 2048 Aug 8 2019 R200_cp.bin -rw-r--r--. 1 root root 2048 Aug 8 2019 R300_cp.bin -rw-r--r--. 1 root root 2048 Aug 8 2019 R420_cp.bin -rw-r--r--. 1 root root 2048 Aug 8 2019 R520_cp.bin -rw-r--r--. 1 root root 21504 Aug 8 2019 R600_me.bin -rw-r--r--. 1 root root 2304 Aug 8 2019 R600_pfp.bin -rw-r--r--. 1 root root 3072 Aug 8 2019 R600_rlc.bin -rw-r--r--. 1 root root 74188 Aug 8 2019 R600_uvd.bin -rw-r--r--. 1 root root 4096 Aug 8 2019 R700_rlc.bin -rw-r--r--. 1 root root 5504 Aug 8 2019 REDWOOD_me.bin -rw-r--r--. 1 root root 4480 Aug 8 2019 REDWOOD_pfp.bin -rw-r--r--. 1 root root 3072 Aug 8 2019 REDWOOD_rlc.bin -rw-r--r--. 1 root root 24332 Aug 8 2019 REDWOOD_smc.bin -rw-r--r--. 1 root root 2048 Aug 8 2019 RS600_cp.bin -rw-r--r--. 1 root root 2048 Aug 8 2019 RS690_cp.bin -rw-r--r--. 1 root root 21504 Aug 8 2019 RS780_me.bin -rw-r--r--. 1 root root 2304 Aug 8 2019 RS780_pfp.bin -rw-r--r--. 1 root root 90164 Aug 8 2019 RS780_uvd.bin -rw-r--r--. 1 root root 21504 Aug 8 2019 RV610_me.bin -rw-r--r--. 1 root root 2304 Aug 8 2019 RV610_pfp.bin -rw-r--r--. 1 root root 21504 Aug 8 2019 RV620_me.bin -rw-r--r--. 1 root root 2304 Aug 8 2019 RV620_pfp.bin -rw-r--r--. 1 root root 21504 Aug 8 2019 RV630_me.bin -rw-r--r--. 1 root root 2304 Aug 8 2019 RV630_pfp.bin -rw-r--r--. 1 root root 21504 Aug 8 2019 RV635_me.bin -rw-r--r--. 1 root root 2304 Aug 8 2019 RV635_pfp.bin -rw-r--r--. 1 root root 21504 Aug 8 2019 RV670_me.bin -rw-r--r--. 1 root root 2304 Aug 8 2019 RV670_pfp.bin -rw-r--r--. 1 root root 5440 Aug 8 2019 RV710_me.bin -rw-r--r--. 1 root root 3392 Aug 8 2019 RV710_pfp.bin -rw-r--r--. 1 root root 16160 Aug 8 2019 RV710_smc.bin -rw-r--r--. 1 root root 116120 Aug 8 2019 RV710_uvd.bin -rw-r--r--. 1 root root 5440 Aug 8 2019 RV730_me.bin -rw-r--r--. 1 root root 3392 Aug 8 2019 RV730_pfp.bin -rw-r--r--. 1 root root 16684 Aug 8 2019 RV730_smc.bin -rw-r--r--. 1 root root 16840 Aug 8 2019 RV740_smc.bin -rw-r--r--. 1 root root 5440 Aug 8 2019 RV770_me.bin -rw-r--r--. 1 root root 3392 Aug 8 2019 RV770_pfp.bin -rw-r--r--. 1 root root 16656 Aug 8 2019 RV770_smc.bin -rw-r--r--. 1 root root 90668 Aug 8 2019 RV770_uvd.bin -rw-r--r--. 1 root root 32488 Aug 8 2019 si58_mc.bin -rw-r--r--. 1 root root 5504 Aug 8 2019 SUMO2_me.bin -rw-r--r--. 1 root root 4480 Aug 8 2019 SUMO2_pfp.bin -rw-r--r--. 1 root root 5504 Aug 8 2019 SUMO_me.bin -rw-r--r--. 1 root root 4480 Aug 8 2019 SUMO_pfp.bin -rw-r--r--. 1 root root 3072 Aug 8 2019 SUMO_rlc.bin -rw-r--r--. 1 root root 205080 Aug 8 2019 SUMO_uvd.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 tahiti_ce.bin -rw-r--r--. 1 root root 8576 Aug 8 2019 TAHITI_ce.bin -rw-r--r--. 1 root root 64364 Aug 8 2019 tahiti_k_smc.bin -rw-r--r--. 1 root root 31232 Aug 8 2019 TAHITI_mc2.bin -rw-r--r--. 1 root root 31776 Aug 8 2019 tahiti_mc.bin -rw-r--r--. 1 root root 31076 Aug 8 2019 TAHITI_mc.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 tahiti_me.bin -rw-r--r--. 1 root root 8576 Aug 8 2019 TAHITI_me.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 tahiti_pfp.bin -rw-r--r--. 1 root root 8576 Aug 8 2019 TAHITI_pfp.bin -rw-r--r--. 1 root root 8448 Aug 8 2019 tahiti_rlc.bin -rw-r--r--. 1 root root 8192 Aug 8 2019 TAHITI_rlc.bin -rw-r--r--. 1 root root 63932 Aug 8 2019 tahiti_smc.bin -rw-r--r--. 1 root root 62552 Aug 8 2019 TAHITI_smc.bin -rw-r--r--. 1 root root 219672 Aug 8 2019 TAHITI_uvd.bin -rw-r--r--. 1 root root 48424 Aug 8 2019 TAHITI_vce.bin -rw-r--r--. 1 root root 24096 Aug 8 2019 TURKS_mc.bin -rw-r--r--. 1 root root 5504 Aug 8 2019 TURKS_me.bin -rw-r--r--. 1 root root 4480 Aug 8 2019 TURKS_pfp.bin -rw-r--r--. 1 root root 24668 Aug 8 2019 TURKS_smc.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 verde_ce.bin -rw-r--r--. 1 root root 8576 Aug 8 2019 VERDE_ce.bin -rw-r--r--. 1 root root 63804 Aug 8 2019 verde_k_smc.bin -rw-r--r--. 1 root root 31500 Aug 8 2019 VERDE_mc2.bin -rw-r--r--. 1 root root 32044 Aug 8 2019 verde_mc.bin -rw-r--r--. 1 root root 31076 Aug 8 2019 VERDE_mc.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 verde_me.bin -rw-r--r--. 1 root root 8576 Aug 8 2019 VERDE_me.bin -rw-r--r--. 1 root root 8832 Aug 8 2019 verde_pfp.bin -rw-r--r--. 1 root root 8576 Aug 8 2019 VERDE_pfp.bin -rw-r--r--. 1 root root 8448 Aug 8 2019 verde_rlc.bin -rw-r--r--. 1 root root 8192 Aug 8 2019 VERDE_rlc.bin -rw-r--r--. 1 root root 61776 Aug 8 2019 verde_smc.bin -rw-r--r--. 1 root root 60388 Aug 8 2019 VERDE_smc.bin /usr/lib/firmware/rockchip: total 116 drwxr-xr-x. 2 root root 22 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 98320 Aug 8 2019 dptx.bin /usr/lib/firmware/rsi: total 876 drwxr-xr-x. 2 root root 104 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 341860 Aug 8 2019 rs9113_ap_bt_dual_mode.rps -rw-r--r--. 1 root root 331592 Aug 8 2019 rs9113_wlan_bt_dual_mode.rps -rw-r--r--. 1 root root 201052 Aug 8 2019 rs9113_wlan_qspi.rps /usr/lib/firmware/RTL8192E: total 68 drwxr-xr-x. 2 root root 54 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 344 Aug 8 2019 boot.img -rw-r--r--. 1 root root 848 Aug 8 2019 data.img -rw-r--r--. 1 root root 42944 Aug 8 2019 main.img /usr/lib/firmware/rtl_bt: total 576 drwxr-xr-x. 2 root root 4096 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 38764 Aug 8 2019 rtl8192ee_fw.bin -rw-r--r--. 1 root root 37904 Aug 8 2019 rtl8192eu_fw.bin -rw-r--r--. 1 root root 24548 Aug 8 2019 rtl8723a_fw.bin -rw-r--r--. 1 root root 45048 Aug 8 2019 rtl8723b_fw.bin -rw-r--r--. 1 root root 64 Aug 8 2019 rtl8723bs_config-OBDA8723.bin -rw-r--r--. 1 root root 52116 Aug 8 2019 rtl8723bs_fw.bin -rw-r--r--. 1 root root 10 Aug 8 2019 rtl8723d_config.bin -rw-r--r--. 1 root root 47028 Aug 8 2019 rtl8723d_fw.bin -rw-r--r--. 1 root root 74488 Aug 8 2019 rtl8761a_fw.bin -rw-r--r--. 1 root root 40520 Aug 8 2019 rtl8812ae_fw.bin -rw-r--r--. 1 root root 37420 Aug 8 2019 rtl8821a_fw.bin -rw-r--r--. 1 root root 10 Aug 8 2019 rtl8821c_config.bin -rw-r--r--. 1 root root 37356 Aug 8 2019 rtl8821c_fw.bin -rw-r--r--. 1 root root 14 Aug 8 2019 rtl8822b_config.bin -rw-r--r--. 1 root root 51176 Aug 8 2019 rtl8822b_fw.bin -rw-r--r--. 1 root root 41588 Aug 8 2019 rtl8822cu_fw.bin /usr/lib/firmware/rtl_nic: total 112 drwxr-xr-x. 2 root root 4096 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 2076 Aug 8 2019 rtl8105e-1.fw -rw-r--r--. 1 root root 1856 Aug 8 2019 rtl8106e-1.fw -rw-r--r--. 1 root root 832 Aug 8 2019 rtl8106e-2.fw -rw-r--r--. 1 root root 992 Aug 8 2019 rtl8107e-1.fw -rw-r--r--. 1 root root 976 Aug 8 2019 rtl8107e-2.fw -rw-r--r--. 1 root root 1492 Aug 8 2019 rtl8168d-1.fw -rw-r--r--. 1 root root 1324 Aug 8 2019 rtl8168d-2.fw -rw-r--r--. 1 root root 5500 Aug 8 2019 rtl8168e-1.fw -rw-r--r--. 1 root root 3920 Aug 8 2019 rtl8168e-2.fw -rw-r--r--. 1 root root 3872 Aug 8 2019 rtl8168e-3.fw -rw-r--r--. 1 root root 3424 Aug 8 2019 rtl8168f-1.fw -rw-r--r--. 1 root root 1232 Aug 8 2019 rtl8168f-2.fw -rw-r--r--. 1 root root 4304 Aug 8 2019 rtl8168g-1.fw -rw-r--r--. 1 root root 4896 Aug 8 2019 rtl8168g-2.fw -rw-r--r--. 1 root root 832 Aug 8 2019 rtl8168g-3.fw -rw-r--r--. 1 root root 992 Aug 8 2019 rtl8168h-1.fw -rw-r--r--. 1 root root 976 Aug 8 2019 rtl8168h-2.fw -rw-r--r--. 1 root root 1824 Aug 8 2019 rtl8402-1.fw -rw-r--r--. 1 root root 2112 Aug 8 2019 rtl8411-1.fw -rw-r--r--. 1 root root 1040 Aug 8 2019 rtl8411-2.fw /usr/lib/firmware/rtlwifi: total 1096 drwxr-xr-x. 2 root root 4096 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 11216 Aug 8 2019 rtl8188efw.bin -rw-r--r--. 1 root root 13904 Aug 8 2019 rtl8188eufw.bin -rw-r--r--. 1 root root 16192 Aug 8 2019 rtl8192cfw.bin -rw-r--r--. 1 root root 16332 Aug 8 2019 rtl8192cfwU_B.bin -rw-r--r--. 1 root root 14818 Aug 8 2019 rtl8192cfwU.bin -rw-r--r--. 1 root root 16116 Aug 8 2019 rtl8192cufw_A.bin -rw-r--r--. 1 root root 16096 Aug 8 2019 rtl8192cufw_B.bin -rw-r--r--. 1 root root 16014 Aug 8 2019 rtl8192cufw.bin -rw-r--r--. 1 root root 16116 Aug 8 2019 rtl8192cufw_TMSC.bin -rw-r--r--. 1 root root 31376 Aug 8 2019 rtl8192defw.bin -rw-r--r--. 1 root root 31818 Aug 8 2019 rtl8192eefw.bin -rw-r--r--. 1 root root 25264 Aug 8 2019 rtl8192eu_ap_wowlan.bin -rw-r--r--. 1 root root 31818 Aug 8 2019 rtl8192eu_nic.bin -rw-r--r--. 1 root root 25878 Aug 8 2019 rtl8192eu_wowlan.bin -rw-r--r--. 1 root root 80208 Aug 8 2019 rtl8192sefw.bin -rw-r--r--. 1 root root 122328 Aug 8 2019 rtl8712u.bin -rw-r--r--. 1 root root 22172 Aug 8 2019 rtl8723aufw_A.bin -rw-r--r--. 1 root root 24118 Aug 8 2019 rtl8723aufw_B.bin -rw-r--r--. 1 root root 19200 Aug 8 2019 rtl8723aufw_B_NoBT.bin -rw-r--r--. 1 root root 31762 Aug 8 2019 rtl8723befw_36.bin -rw-r--r--. 1 root root 30746 Aug 8 2019 rtl8723befw.bin -rw-r--r--. 1 root root 20886 Aug 8 2019 rtl8723bs_ap_wowlan.bin -rw-r--r--. 1 root root 9120 Aug 8 2019 rtl8723bs_bt.bin -rw-r--r--. 1 root root 32108 Aug 8 2019 rtl8723bs_nic.bin -rw-r--r--. 1 root root 26398 Aug 8 2019 rtl8723bs_wowlan.bin -rw-r--r--. 1 root root 20886 Aug 8 2019 rtl8723bu_ap_wowlan.bin -rw-r--r--. 1 root root 32108 Aug 8 2019 rtl8723bu_nic.bin -rw-r--r--. 1 root root 26398 Aug 8 2019 rtl8723bu_wowlan.bin -rw-r--r--. 1 root root 27726 Aug 8 2019 rtl8723defw.bin -rw-r--r--. 1 root root 22996 Aug 8 2019 rtl8723fw_B.bin -rw-r--r--. 1 root root 11662 Aug 8 2019 rtl8723fw.bin -rw-r--r--. 1 root root 28348 Aug 8 2019 rtl8821aefw_29.bin -rw-r--r--. 1 root root 28984 Aug 8 2019 rtl8821aefw.bin -rw-r--r--. 1 root root 19858 Aug 8 2019 rtl8821aefw_wowlan.bin -rw-r--r--. 1 root root 127496 Aug 8 2019 rtl8822befw.bin /usr/lib/firmware/rtw88: total 348 drwxr-xr-x. 2 root root 52 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 150984 Aug 8 2019 rtw8822b_fw.bin -rw-r--r--. 1 root root 184640 Aug 8 2019 rtw8822c_fw.bin /usr/lib/firmware/sb16: total 36 drwxr-xr-x. 2 root root 134 Aug 15 2019 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 1304 Mar 5 2015 alaw_main.csp -rw-r--r--. 1 root root 1844 Mar 5 2015 ima_adpcm_capture.csp -rw-r--r--. 1 root root 1032 Mar 5 2015 ima_adpcm_init.csp -rw-r--r--. 1 root root 1872 Mar 5 2015 ima_adpcm_playback.csp -rw-r--r--. 1 root root 1256 Mar 5 2015 mulaw_main.csp /usr/lib/firmware/slicoss: total 292 drwxr-xr-x. 2 root root 128 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 98324 Aug 8 2019 gbdownload.sys -rw-r--r--. 1 root root 2564 Aug 8 2019 gbrcvucode.sys -rw-r--r--. 1 root root 81940 Aug 8 2019 oasisdbgdownload.sys -rw-r--r--. 1 root root 81940 Aug 8 2019 oasisdownload.sys -rw-r--r--. 1 root root 2564 Aug 8 2019 oasisrcvucode.sys /usr/lib/firmware/sun: total 20 drwxr-xr-x. 2 root root 25 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 2253 Aug 8 2019 cassini.bin /usr/lib/firmware/sxg: total 136 drwxr-xr-x. 2 root root 63 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 62972 Aug 8 2019 saharadbgdownloadB.sys -rw-r--r--. 1 root root 54140 Aug 8 2019 saharadownloadB.sys /usr/lib/firmware/tehuti: total 60 drwxr-xr-x. 2 root root 21 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 42768 Aug 8 2019 bdx.bin /usr/lib/firmware/tigon: total 36 drwxr-xr-x. 2 root root 80 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 144 Aug 8 2019 tg357766.bin -rw-r--r--. 1 root root 2668 Aug 8 2019 tg3.bin -rw-r--r--. 1 root root 3884 Aug 8 2019 tg3_tso5.bin -rw-r--r--. 1 root root 7004 Aug 8 2019 tg3_tso.bin /usr/lib/firmware/ti-keystone: total 20 drwxr-xr-x. 2 root root 51 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 1764 Aug 8 2019 ks2_qmss_pdsp_acc48_k2_le_1_0_0_9.bin /usr/lib/firmware/ttusb-budget: total 32 drwxr-xr-x. 2 root root 29 Oct 16 09:22 . drwxr-xr-x. 91 root root 12288 Oct 16 09:23 .. -rw-r--r--. 1 root root 13104 Aug 8 2019 dspbootcode.binjc-1.17.3/tests/fixtures/centos-7.7/ls-alh-streaming.json000066400000000000000000000046371415226333200230730ustar00rootroot00000000000000[{"filename":".","flags":"dr-xr-xr-x.","links":17,"owner":"root","group":"root","size":224,"date":"Aug 15 10:56"},{"filename":"..","flags":"dr-xr-xr-x.","links":17,"owner":"root","group":"root","size":224,"date":"Aug 15 10:56"},{"filename":"bin","link_to":"usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":7,"date":"Aug 15 10:53"},{"filename":"boot","flags":"dr-xr-xr-x.","links":5,"owner":"root","group":"root","size":4,"date":"Oct 21 13:18"},{"filename":"dev","flags":"drwxr-xr-x.","links":20,"owner":"root","group":"root","size":3,"date":"Oct 25 18:21"},{"filename":"etc","flags":"drwxr-xr-x.","links":78,"owner":"root","group":"root","size":8,"date":"Oct 25 18:47"},{"filename":"home","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":21,"date":"Aug 15 10:56"},{"filename":"lib","link_to":"usr/lib","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":7,"date":"Aug 15 10:53"},{"filename":"lib64","link_to":"usr/lib64","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":9,"date":"Aug 15 10:53"},{"filename":"media","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":6,"date":"Apr 10 2018"},{"filename":"mnt","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":6,"date":"Apr 10 2018"},{"filename":"opt","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":6,"date":"Apr 10 2018"},{"filename":"proc","flags":"dr-xr-xr-x.","links":121,"owner":"root","group":"root","size":0,"date":"Oct 25 18:21"},{"filename":"root","flags":"dr-xr-x---.","links":3,"owner":"root","group":"root","size":170,"date":"Oct 15 11:11"},{"filename":"run","flags":"drwxr-xr-x.","links":26,"owner":"root","group":"root","size":800,"date":"Oct 25 18:47"},{"filename":"sbin","link_to":"usr/sbin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":8,"date":"Aug 15 10:53"},{"filename":"srv","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":6,"date":"Apr 10 2018"},{"filename":"sys","flags":"dr-xr-xr-x.","links":13,"owner":"root","group":"root","size":0,"date":"Oct 25 18:21"},{"filename":"tmp","flags":"drwxrwxrwt.","links":19,"owner":"root","group":"root","size":4,"date":"Oct 26 10:14"},{"filename":"usr","flags":"drwxr-xr-x.","links":13,"owner":"root","group":"root","size":155,"date":"Aug 15 10:53"},{"filename":"var","flags":"drwxr-xr-x.","links":19,"owner":"root","group":"root","size":267,"date":"Aug 15 10:57"}] jc-1.17.3/tests/fixtures/centos-7.7/ls-alh.json000066400000000000000000000046371415226333200211040ustar00rootroot00000000000000[{"filename":".","flags":"dr-xr-xr-x.","links":17,"owner":"root","group":"root","size":224,"date":"Aug 15 10:56"},{"filename":"..","flags":"dr-xr-xr-x.","links":17,"owner":"root","group":"root","size":224,"date":"Aug 15 10:56"},{"filename":"bin","link_to":"usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":7,"date":"Aug 15 10:53"},{"filename":"boot","flags":"dr-xr-xr-x.","links":5,"owner":"root","group":"root","size":4,"date":"Oct 21 13:18"},{"filename":"dev","flags":"drwxr-xr-x.","links":20,"owner":"root","group":"root","size":3,"date":"Oct 25 18:21"},{"filename":"etc","flags":"drwxr-xr-x.","links":78,"owner":"root","group":"root","size":8,"date":"Oct 25 18:47"},{"filename":"home","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":21,"date":"Aug 15 10:56"},{"filename":"lib","link_to":"usr/lib","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":7,"date":"Aug 15 10:53"},{"filename":"lib64","link_to":"usr/lib64","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":9,"date":"Aug 15 10:53"},{"filename":"media","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":6,"date":"Apr 10 2018"},{"filename":"mnt","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":6,"date":"Apr 10 2018"},{"filename":"opt","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":6,"date":"Apr 10 2018"},{"filename":"proc","flags":"dr-xr-xr-x.","links":121,"owner":"root","group":"root","size":0,"date":"Oct 25 18:21"},{"filename":"root","flags":"dr-xr-x---.","links":3,"owner":"root","group":"root","size":170,"date":"Oct 15 11:11"},{"filename":"run","flags":"drwxr-xr-x.","links":26,"owner":"root","group":"root","size":800,"date":"Oct 25 18:47"},{"filename":"sbin","link_to":"usr/sbin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":8,"date":"Aug 15 10:53"},{"filename":"srv","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":6,"date":"Apr 10 2018"},{"filename":"sys","flags":"dr-xr-xr-x.","links":13,"owner":"root","group":"root","size":0,"date":"Oct 25 18:21"},{"filename":"tmp","flags":"drwxrwxrwt.","links":19,"owner":"root","group":"root","size":4,"date":"Oct 26 10:14"},{"filename":"usr","flags":"drwxr-xr-x.","links":13,"owner":"root","group":"root","size":155,"date":"Aug 15 10:53"},{"filename":"var","flags":"drwxr-xr-x.","links":19,"owner":"root","group":"root","size":267,"date":"Aug 15 10:57"}] jc-1.17.3/tests/fixtures/centos-7.7/ls-alh.out000066400000000000000000000020571415226333200207340ustar00rootroot00000000000000total 20K dr-xr-xr-x. 17 root root 224 Aug 15 10:56 . dr-xr-xr-x. 17 root root 224 Aug 15 10:56 .. lrwxrwxrwx. 1 root root 7 Aug 15 10:53 bin -> usr/bin dr-xr-xr-x. 5 root root 4.0K Oct 21 13:18 boot drwxr-xr-x. 20 root root 3.2K Oct 25 18:21 dev drwxr-xr-x. 78 root root 8.0K Oct 25 18:47 etc drwxr-xr-x. 3 root root 21 Aug 15 10:56 home lrwxrwxrwx. 1 root root 7 Aug 15 10:53 lib -> usr/lib lrwxrwxrwx. 1 root root 9 Aug 15 10:53 lib64 -> usr/lib64 drwxr-xr-x. 2 root root 6 Apr 10 2018 media drwxr-xr-x. 2 root root 6 Apr 10 2018 mnt drwxr-xr-x. 2 root root 6 Apr 10 2018 opt dr-xr-xr-x. 121 root root 0 Oct 25 18:21 proc dr-xr-x---. 3 root root 170 Oct 15 11:11 root drwxr-xr-x. 26 root root 800 Oct 25 18:47 run lrwxrwxrwx. 1 root root 8 Aug 15 10:53 sbin -> usr/sbin drwxr-xr-x. 2 root root 6 Apr 10 2018 srv dr-xr-xr-x. 13 root root 0 Oct 25 18:21 sys drwxrwxrwt. 19 root root 4.0K Oct 26 10:14 tmp drwxr-xr-x. 13 root root 155 Aug 15 10:53 usr drwxr-xr-x. 19 root root 267 Aug 15 10:57 var jc-1.17.3/tests/fixtures/centos-7.7/ls-glob.json000066400000000000000000002766641415226333200212760ustar00rootroot00000000000000[{"filename": "[", "parent": "/usr/bin"}, {"filename": "a2p", "parent": "/usr/bin"}, {"filename": "addr2line", "parent": "/usr/bin"}, {"filename": "alias", "parent": "/usr/bin"}, {"filename": "apropos", "parent": "/usr/bin"}, {"filename": "ar", "parent": "/usr/bin"}, {"filename": "arch", "parent": "/usr/bin"}, {"filename": "as", "parent": "/usr/bin"}, {"filename": "aserver", "parent": "/usr/bin"}, {"filename": "audit2allow", "parent": "/usr/bin"}, {"filename": "audit2why", "parent": "/usr/bin"}, {"filename": "aulast", "parent": "/usr/bin"}, {"filename": "aulastlog", "parent": "/usr/bin"}, {"filename": "ausyscall", "parent": "/usr/bin"}, {"filename": "auvirt", "parent": "/usr/bin"}, {"filename": "awk", "parent": "/usr/bin"}, {"filename": "base64", "parent": "/usr/bin"}, {"filename": "basename", "parent": "/usr/bin"}, {"filename": "bash", "parent": "/usr/bin"}, {"filename": "bashbug", "parent": "/usr/bin"}, {"filename": "bashbug-64", "parent": "/usr/bin"}, {"filename": "bg", "parent": "/usr/bin"}, {"filename": "bond2team", "parent": "/usr/bin"}, {"filename": "bootctl", "parent": "/usr/bin"}, {"filename": "busctl", "parent": "/usr/bin"}, {"filename": "c2ph", "parent": "/usr/bin"}, {"filename": "cal", "parent": "/usr/bin"}, {"filename": "ca-legacy", "parent": "/usr/bin"}, {"filename": "captoinfo", "parent": "/usr/bin"}, {"filename": "cat", "parent": "/usr/bin"}, {"filename": "catchsegv", "parent": "/usr/bin"}, {"filename": "catman", "parent": "/usr/bin"}, {"filename": "cd", "parent": "/usr/bin"}, {"filename": "centrino-decode", "parent": "/usr/bin"}, {"filename": "certutil", "parent": "/usr/bin"}, {"filename": "c++filt", "parent": "/usr/bin"}, {"filename": "chacl", "parent": "/usr/bin"}, {"filename": "chage", "parent": "/usr/bin"}, {"filename": "chattr", "parent": "/usr/bin"}, {"filename": "chcat", "parent": "/usr/bin"}, {"filename": "chcon", "parent": "/usr/bin"}, {"filename": "checkmodule", "parent": "/usr/bin"}, {"filename": "checkpolicy", "parent": "/usr/bin"}, {"filename": "chfn", "parent": "/usr/bin"}, {"filename": "chgrp", "parent": "/usr/bin"}, {"filename": "chmem", "parent": "/usr/bin"}, {"filename": "chmod", "parent": "/usr/bin"}, {"filename": "chown", "parent": "/usr/bin"}, {"filename": "chronyc", "parent": "/usr/bin"}, {"filename": "chrt", "parent": "/usr/bin"}, {"filename": "chsh", "parent": "/usr/bin"}, {"filename": "chvt", "parent": "/usr/bin"}, {"filename": "cifsiostat", "parent": "/usr/bin"}, {"filename": "cksum", "parent": "/usr/bin"}, {"filename": "clear", "parent": "/usr/bin"}, {"filename": "cmp", "parent": "/usr/bin"}, {"filename": "cmsutil", "parent": "/usr/bin"}, {"filename": "col", "parent": "/usr/bin"}, {"filename": "colcrt", "parent": "/usr/bin"}, {"filename": "colrm", "parent": "/usr/bin"}, {"filename": "column", "parent": "/usr/bin"}, {"filename": "comm", "parent": "/usr/bin"}, {"filename": "command", "parent": "/usr/bin"}, {"filename": "container-storage-setup", "parent": "/usr/bin"}, {"filename": "coredumpctl", "parent": "/usr/bin"}, {"filename": "cp", "parent": "/usr/bin"}, {"filename": "cpio", "parent": "/usr/bin"}, {"filename": "cpupower", "parent": "/usr/bin"}, {"filename": "crlutil", "parent": "/usr/bin"}, {"filename": "crontab", "parent": "/usr/bin"}, {"filename": "csplit", "parent": "/usr/bin"}, {"filename": "csslint-0.6", "parent": "/usr/bin"}, {"filename": "curl", "parent": "/usr/bin"}, {"filename": "cut", "parent": "/usr/bin"}, {"filename": "cvtsudoers", "parent": "/usr/bin"}, {"filename": "date", "parent": "/usr/bin"}, {"filename": "db_archive", "parent": "/usr/bin"}, {"filename": "db_checkpoint", "parent": "/usr/bin"}, {"filename": "db_deadlock", "parent": "/usr/bin"}, {"filename": "db_dump", "parent": "/usr/bin"}, {"filename": "db_dump185", "parent": "/usr/bin"}, {"filename": "db_hotbackup", "parent": "/usr/bin"}, {"filename": "db_load", "parent": "/usr/bin"}, {"filename": "db_log_verify", "parent": "/usr/bin"}, {"filename": "db_printlog", "parent": "/usr/bin"}, {"filename": "db_recover", "parent": "/usr/bin"}, {"filename": "db_replicate", "parent": "/usr/bin"}, {"filename": "db_stat", "parent": "/usr/bin"}, {"filename": "db_tuner", "parent": "/usr/bin"}, {"filename": "db_upgrade", "parent": "/usr/bin"}, {"filename": "dbus-binding-tool", "parent": "/usr/bin"}, {"filename": "dbus-cleanup-sockets", "parent": "/usr/bin"}, {"filename": "dbus-daemon", "parent": "/usr/bin"}, {"filename": "dbus-monitor", "parent": "/usr/bin"}, {"filename": "dbus-run-session", "parent": "/usr/bin"}, {"filename": "dbus-send", "parent": "/usr/bin"}, {"filename": "dbus-test-tool", "parent": "/usr/bin"}, {"filename": "dbus-update-activation-environment", "parent": "/usr/bin"}, {"filename": "dbus-uuidgen", "parent": "/usr/bin"}, {"filename": "db_verify", "parent": "/usr/bin"}, {"filename": "dd", "parent": "/usr/bin"}, {"filename": "deallocvt", "parent": "/usr/bin"}, {"filename": "delv", "parent": "/usr/bin"}, {"filename": "df", "parent": "/usr/bin"}, {"filename": "dgawk", "parent": "/usr/bin"}, {"filename": "diff", "parent": "/usr/bin"}, {"filename": "diff3", "parent": "/usr/bin"}, {"filename": "dig", "parent": "/usr/bin"}, {"filename": "dir", "parent": "/usr/bin"}, {"filename": "dircolors", "parent": "/usr/bin"}, {"filename": "dirname", "parent": "/usr/bin"}, {"filename": "dmesg", "parent": "/usr/bin"}, {"filename": "dnsdomainname", "parent": "/usr/bin"}, {"filename": "docker", "parent": "/usr/bin"}, {"filename": "docker-containerd", "parent": "/usr/bin"}, {"filename": "docker-containerd-current", "parent": "/usr/bin"}, {"filename": "docker-containerd-shim", "parent": "/usr/bin"}, {"filename": "docker-containerd-shim-current", "parent": "/usr/bin"}, {"filename": "docker-ctr-current", "parent": "/usr/bin"}, {"filename": "docker-current", "parent": "/usr/bin"}, {"filename": "dockerd", "parent": "/usr/bin"}, {"filename": "dockerd-current", "parent": "/usr/bin"}, {"filename": "docker-storage-setup", "parent": "/usr/bin"}, {"filename": "domainname", "parent": "/usr/bin"}, {"filename": "dracut", "parent": "/usr/bin"}, {"filename": "du", "parent": "/usr/bin"}, {"filename": "dumpkeys", "parent": "/usr/bin"}, {"filename": "dwp", "parent": "/usr/bin"}, {"filename": "easy_install", "parent": "/usr/bin"}, {"filename": "easy_install-2.7", "parent": "/usr/bin"}, {"filename": "easy_install-3.6", "parent": "/usr/bin"}, {"filename": "echo", "parent": "/usr/bin"}, {"filename": "egrep", "parent": "/usr/bin"}, {"filename": "eject", "parent": "/usr/bin"}, {"filename": "elfedit", "parent": "/usr/bin"}, {"filename": "env", "parent": "/usr/bin"}, {"filename": "envsubst", "parent": "/usr/bin"}, {"filename": "eqn", "parent": "/usr/bin"}, {"filename": "erb", "parent": "/usr/bin"}, {"filename": "ex", "parent": "/usr/bin"}, {"filename": "expand", "parent": "/usr/bin"}, {"filename": "expr", "parent": "/usr/bin"}, {"filename": "factor", "parent": "/usr/bin"}, {"filename": "fallocate", "parent": "/usr/bin"}, {"filename": "false", "parent": "/usr/bin"}, {"filename": "fc", "parent": "/usr/bin"}, {"filename": "fg", "parent": "/usr/bin"}, {"filename": "fgconsole", "parent": "/usr/bin"}, {"filename": "fgrep", "parent": "/usr/bin"}, {"filename": "file", "parent": "/usr/bin"}, {"filename": "find", "parent": "/usr/bin"}, {"filename": "find2perl", "parent": "/usr/bin"}, {"filename": "findmnt", "parent": "/usr/bin"}, {"filename": "fipscheck", "parent": "/usr/bin"}, {"filename": "fipshmac", "parent": "/usr/bin"}, {"filename": "firewall-cmd", "parent": "/usr/bin"}, {"filename": "firewall-offline-cmd", "parent": "/usr/bin"}, {"filename": "flock", "parent": "/usr/bin"}, {"filename": "fmt", "parent": "/usr/bin"}, {"filename": "fold", "parent": "/usr/bin"}, {"filename": "free", "parent": "/usr/bin"}, {"filename": "funzip", "parent": "/usr/bin"}, {"filename": "gapplication", "parent": "/usr/bin"}, {"filename": "gawk", "parent": "/usr/bin"}, {"filename": "gdbus", "parent": "/usr/bin"}, {"filename": "gem", "parent": "/usr/bin"}, {"filename": "gencat", "parent": "/usr/bin"}, {"filename": "genl-ctrl-list", "parent": "/usr/bin"}, {"filename": "geoiplookup", "parent": "/usr/bin"}, {"filename": "geoiplookup6", "parent": "/usr/bin"}, {"filename": "geoipupdate", "parent": "/usr/bin"}, {"filename": "geqn", "parent": "/usr/bin"}, {"filename": "getconf", "parent": "/usr/bin"}, {"filename": "getent", "parent": "/usr/bin"}, {"filename": "getfacl", "parent": "/usr/bin"}, {"filename": "getkeycodes", "parent": "/usr/bin"}, {"filename": "getopt", "parent": "/usr/bin"}, {"filename": "getopts", "parent": "/usr/bin"}, {"filename": "gettext", "parent": "/usr/bin"}, {"filename": "gettext.sh", "parent": "/usr/bin"}, {"filename": "gio", "parent": "/usr/bin"}, {"filename": "gio-querymodules-64", "parent": "/usr/bin"}, {"filename": "git", "parent": "/usr/bin"}, {"filename": "git-receive-pack", "parent": "/usr/bin"}, {"filename": "git-shell", "parent": "/usr/bin"}, {"filename": "git-upload-archive", "parent": "/usr/bin"}, {"filename": "git-upload-pack", "parent": "/usr/bin"}, {"filename": "glib-compile-schemas", "parent": "/usr/bin"}, {"filename": "gmake", "parent": "/usr/bin"}, {"filename": "gneqn", "parent": "/usr/bin"}, {"filename": "gnroff", "parent": "/usr/bin"}, {"filename": "gpasswd", "parent": "/usr/bin"}, {"filename": "gpg", "parent": "/usr/bin"}, {"filename": "gpg2", "parent": "/usr/bin"}, {"filename": "gpg-agent", "parent": "/usr/bin"}, {"filename": "gpgconf", "parent": "/usr/bin"}, {"filename": "gpg-connect-agent", "parent": "/usr/bin"}, {"filename": "gpg-error", "parent": "/usr/bin"}, {"filename": "gpgparsemail", "parent": "/usr/bin"}, {"filename": "gpgsplit", "parent": "/usr/bin"}, {"filename": "gpgv", "parent": "/usr/bin"}, {"filename": "gpgv2", "parent": "/usr/bin"}, {"filename": "gpg-zip", "parent": "/usr/bin"}, {"filename": "gpic", "parent": "/usr/bin"}, {"filename": "gprof", "parent": "/usr/bin"}, {"filename": "grep", "parent": "/usr/bin"}, {"filename": "groff", "parent": "/usr/bin"}, {"filename": "grops", "parent": "/usr/bin"}, {"filename": "grotty", "parent": "/usr/bin"}, {"filename": "groups", "parent": "/usr/bin"}, {"filename": "grub2-editenv", "parent": "/usr/bin"}, {"filename": "grub2-file", "parent": "/usr/bin"}, {"filename": "grub2-fstest", "parent": "/usr/bin"}, {"filename": "grub2-glue-efi", "parent": "/usr/bin"}, {"filename": "grub2-kbdcomp", "parent": "/usr/bin"}, {"filename": "grub2-menulst2cfg", "parent": "/usr/bin"}, {"filename": "grub2-mkfont", "parent": "/usr/bin"}, {"filename": "grub2-mkimage", "parent": "/usr/bin"}, {"filename": "grub2-mklayout", "parent": "/usr/bin"}, {"filename": "grub2-mknetdir", "parent": "/usr/bin"}, {"filename": "grub2-mkpasswd-pbkdf2", "parent": "/usr/bin"}, {"filename": "grub2-mkrelpath", "parent": "/usr/bin"}, {"filename": "grub2-mkrescue", "parent": "/usr/bin"}, {"filename": "grub2-mkstandalone", "parent": "/usr/bin"}, {"filename": "grub2-render-label", "parent": "/usr/bin"}, {"filename": "grub2-script-check", "parent": "/usr/bin"}, {"filename": "grub2-syslinux2cfg", "parent": "/usr/bin"}, {"filename": "gsettings", "parent": "/usr/bin"}, {"filename": "gsoelim", "parent": "/usr/bin"}, {"filename": "gtar", "parent": "/usr/bin"}, {"filename": "gtbl", "parent": "/usr/bin"}, {"filename": "gtroff", "parent": "/usr/bin"}, {"filename": "gunzip", "parent": "/usr/bin"}, {"filename": "gzexe", "parent": "/usr/bin"}, {"filename": "gzip", "parent": "/usr/bin"}, {"filename": "h2ph", "parent": "/usr/bin"}, {"filename": "hdsploader", "parent": "/usr/bin"}, {"filename": "head", "parent": "/usr/bin"}, {"filename": "hexdump", "parent": "/usr/bin"}, {"filename": "host", "parent": "/usr/bin"}, {"filename": "hostid", "parent": "/usr/bin"}, {"filename": "hostname", "parent": "/usr/bin"}, {"filename": "hostnamectl", "parent": "/usr/bin"}, {"filename": "i386", "parent": "/usr/bin"}, {"filename": "iconv", "parent": "/usr/bin"}, {"filename": "id", "parent": "/usr/bin"}, {"filename": "idiag-socket-details", "parent": "/usr/bin"}, {"filename": "idn", "parent": "/usr/bin"}, {"filename": "igawk", "parent": "/usr/bin"}, {"filename": "info", "parent": "/usr/bin"}, {"filename": "infocmp", "parent": "/usr/bin"}, {"filename": "infokey", "parent": "/usr/bin"}, {"filename": "infotocap", "parent": "/usr/bin"}, {"filename": "install", "parent": "/usr/bin"}, {"filename": "ionice", "parent": "/usr/bin"}, {"filename": "iostat", "parent": "/usr/bin"}, {"filename": "ipcalc", "parent": "/usr/bin"}, {"filename": "ipcmk", "parent": "/usr/bin"}, {"filename": "ipcrm", "parent": "/usr/bin"}, {"filename": "ipcs", "parent": "/usr/bin"}, {"filename": "iptables-xml", "parent": "/usr/bin"}, {"filename": "irb", "parent": "/usr/bin"}, {"filename": "isosize", "parent": "/usr/bin"}, {"filename": "jobs", "parent": "/usr/bin"}, {"filename": "join", "parent": "/usr/bin"}, {"filename": "journalctl", "parent": "/usr/bin"}, {"filename": "json_reformat", "parent": "/usr/bin"}, {"filename": "json_verify", "parent": "/usr/bin"}, {"filename": "kbdinfo", "parent": "/usr/bin"}, {"filename": "kbd_mode", "parent": "/usr/bin"}, {"filename": "kbdrate", "parent": "/usr/bin"}, {"filename": "kdumpctl", "parent": "/usr/bin"}, {"filename": "kernel-install", "parent": "/usr/bin"}, {"filename": "kill", "parent": "/usr/bin"}, {"filename": "kmod", "parent": "/usr/bin"}, {"filename": "last", "parent": "/usr/bin"}, {"filename": "lastb", "parent": "/usr/bin"}, {"filename": "lastlog", "parent": "/usr/bin"}, {"filename": "lchfn", "parent": "/usr/bin"}, {"filename": "lchsh", "parent": "/usr/bin"}, {"filename": "ld", "parent": "/usr/bin"}, {"filename": "ld.bfd", "parent": "/usr/bin"}, {"filename": "ldd", "parent": "/usr/bin"}, {"filename": "ld.gold", "parent": "/usr/bin"}, {"filename": "less", "parent": "/usr/bin"}, {"filename": "lessecho", "parent": "/usr/bin"}, {"filename": "lesskey", "parent": "/usr/bin"}, {"filename": "lesspipe.sh", "parent": "/usr/bin"}, {"filename": "lexgrog", "parent": "/usr/bin"}, {"filename": "link", "parent": "/usr/bin"}, {"filename": "linux32", "parent": "/usr/bin"}, {"filename": "linux64", "parent": "/usr/bin"}, {"filename": "linux-boot-prober", "parent": "/usr/bin"}, {"filename": "ln", "parent": "/usr/bin"}, {"filename": "loadkeys", "parent": "/usr/bin"}, {"filename": "loadunimap", "parent": "/usr/bin"}, {"filename": "locale", "parent": "/usr/bin"}, {"filename": "localectl", "parent": "/usr/bin"}, {"filename": "localedef", "parent": "/usr/bin"}, {"filename": "logger", "parent": "/usr/bin"}, {"filename": "login", "parent": "/usr/bin"}, {"filename": "loginctl", "parent": "/usr/bin"}, {"filename": "logname", "parent": "/usr/bin"}, {"filename": "look", "parent": "/usr/bin"}, {"filename": "ls", "parent": "/usr/bin"}, {"filename": "lsattr", "parent": "/usr/bin"}, {"filename": "lsblk", "parent": "/usr/bin"}, {"filename": "lscpu", "parent": "/usr/bin"}, {"filename": "lsinitrd", "parent": "/usr/bin"}, {"filename": "lsipc", "parent": "/usr/bin"}, {"filename": "lslocks", "parent": "/usr/bin"}, {"filename": "lslogins", "parent": "/usr/bin"}, {"filename": "lsmem", "parent": "/usr/bin"}, {"filename": "lsns", "parent": "/usr/bin"}, {"filename": "lsscsi", "parent": "/usr/bin"}, {"filename": "lua", "parent": "/usr/bin"}, {"filename": "luac", "parent": "/usr/bin"}, {"filename": "lz4", "parent": "/usr/bin"}, {"filename": "lz4c", "parent": "/usr/bin"}, {"filename": "lz4cat", "parent": "/usr/bin"}, {"filename": "machinectl", "parent": "/usr/bin"}, {"filename": "mailq", "parent": "/usr/bin"}, {"filename": "mailq.postfix", "parent": "/usr/bin"}, {"filename": "make", "parent": "/usr/bin"}, {"filename": "makedb", "parent": "/usr/bin"}, {"filename": "man", "parent": "/usr/bin"}, {"filename": "mandb", "parent": "/usr/bin"}, {"filename": "manpath", "parent": "/usr/bin"}, {"filename": "mapscrn", "parent": "/usr/bin"}, {"filename": "mcookie", "parent": "/usr/bin"}, {"filename": "md5sum", "parent": "/usr/bin"}, {"filename": "mdig", "parent": "/usr/bin"}, {"filename": "mesg", "parent": "/usr/bin"}, {"filename": "mixartloader", "parent": "/usr/bin"}, {"filename": "mkdir", "parent": "/usr/bin"}, {"filename": "mkfifo", "parent": "/usr/bin"}, {"filename": "mkinitrd", "parent": "/usr/bin"}, {"filename": "mknod", "parent": "/usr/bin"}, {"filename": "mktemp", "parent": "/usr/bin"}, {"filename": "modutil", "parent": "/usr/bin"}, {"filename": "more", "parent": "/usr/bin"}, {"filename": "mount", "parent": "/usr/bin"}, {"filename": "mountpoint", "parent": "/usr/bin"}, {"filename": "mpstat", "parent": "/usr/bin"}, {"filename": "msgattrib", "parent": "/usr/bin"}, {"filename": "msgcat", "parent": "/usr/bin"}, {"filename": "msgcmp", "parent": "/usr/bin"}, {"filename": "msgcomm", "parent": "/usr/bin"}, {"filename": "msgconv", "parent": "/usr/bin"}, {"filename": "msgen", "parent": "/usr/bin"}, {"filename": "msgexec", "parent": "/usr/bin"}, {"filename": "msgfilter", "parent": "/usr/bin"}, {"filename": "msgfmt", "parent": "/usr/bin"}, {"filename": "msggrep", "parent": "/usr/bin"}, {"filename": "msghack", "parent": "/usr/bin"}, {"filename": "msginit", "parent": "/usr/bin"}, {"filename": "msgmerge", "parent": "/usr/bin"}, {"filename": "msgunfmt", "parent": "/usr/bin"}, {"filename": "msguniq", "parent": "/usr/bin"}, {"filename": "mv", "parent": "/usr/bin"}, {"filename": "namei", "parent": "/usr/bin"}, {"filename": "ndptool", "parent": "/usr/bin"}, {"filename": "neqn", "parent": "/usr/bin"}, {"filename": "netstat", "parent": "/usr/bin"}, {"filename": "newaliases", "parent": "/usr/bin"}, {"filename": "newaliases.postfix", "parent": "/usr/bin"}, {"filename": "newgidmap", "parent": "/usr/bin"}, {"filename": "newgrp", "parent": "/usr/bin"}, {"filename": "newuidmap", "parent": "/usr/bin"}, {"filename": "nf-ct-add", "parent": "/usr/bin"}, {"filename": "nf-ct-list", "parent": "/usr/bin"}, {"filename": "nf-exp-add", "parent": "/usr/bin"}, {"filename": "nf-exp-delete", "parent": "/usr/bin"}, {"filename": "nf-exp-list", "parent": "/usr/bin"}, {"filename": "nf-log", "parent": "/usr/bin"}, {"filename": "nf-monitor", "parent": "/usr/bin"}, {"filename": "nf-queue", "parent": "/usr/bin"}, {"filename": "nfsiostat-sysstat", "parent": "/usr/bin"}, {"filename": "ngettext", "parent": "/usr/bin"}, {"filename": "nice", "parent": "/usr/bin"}, {"filename": "nisdomainname", "parent": "/usr/bin"}, {"filename": "nl", "parent": "/usr/bin"}, {"filename": "nl-addr-add", "parent": "/usr/bin"}, {"filename": "nl-addr-delete", "parent": "/usr/bin"}, {"filename": "nl-addr-list", "parent": "/usr/bin"}, {"filename": "nl-class-add", "parent": "/usr/bin"}, {"filename": "nl-class-delete", "parent": "/usr/bin"}, {"filename": "nl-classid-lookup", "parent": "/usr/bin"}, {"filename": "nl-class-list", "parent": "/usr/bin"}, {"filename": "nl-cls-add", "parent": "/usr/bin"}, {"filename": "nl-cls-delete", "parent": "/usr/bin"}, {"filename": "nl-cls-list", "parent": "/usr/bin"}, {"filename": "nl-fib-lookup", "parent": "/usr/bin"}, {"filename": "nl-link-enslave", "parent": "/usr/bin"}, {"filename": "nl-link-ifindex2name", "parent": "/usr/bin"}, {"filename": "nl-link-list", "parent": "/usr/bin"}, {"filename": "nl-link-name2ifindex", "parent": "/usr/bin"}, {"filename": "nl-link-release", "parent": "/usr/bin"}, {"filename": "nl-link-set", "parent": "/usr/bin"}, {"filename": "nl-link-stats", "parent": "/usr/bin"}, {"filename": "nl-list-caches", "parent": "/usr/bin"}, {"filename": "nl-list-sockets", "parent": "/usr/bin"}, {"filename": "nl-monitor", "parent": "/usr/bin"}, {"filename": "nl-neigh-add", "parent": "/usr/bin"}, {"filename": "nl-neigh-delete", "parent": "/usr/bin"}, {"filename": "nl-neigh-list", "parent": "/usr/bin"}, {"filename": "nl-neightbl-list", "parent": "/usr/bin"}, {"filename": "nl-pktloc-lookup", "parent": "/usr/bin"}, {"filename": "nl-qdisc-add", "parent": "/usr/bin"}, {"filename": "nl-qdisc-delete", "parent": "/usr/bin"}, {"filename": "nl-qdisc-list", "parent": "/usr/bin"}, {"filename": "nl-route-add", "parent": "/usr/bin"}, {"filename": "nl-route-delete", "parent": "/usr/bin"}, {"filename": "nl-route-get", "parent": "/usr/bin"}, {"filename": "nl-route-list", "parent": "/usr/bin"}, {"filename": "nl-rule-list", "parent": "/usr/bin"}, {"filename": "nl-tctree-list", "parent": "/usr/bin"}, {"filename": "nl-util-addr", "parent": "/usr/bin"}, {"filename": "nm", "parent": "/usr/bin"}, {"filename": "nmcli", "parent": "/usr/bin"}, {"filename": "nm-online", "parent": "/usr/bin"}, {"filename": "nmtui", "parent": "/usr/bin"}, {"filename": "nmtui-connect", "parent": "/usr/bin"}, {"filename": "nmtui-edit", "parent": "/usr/bin"}, {"filename": "nmtui-hostname", "parent": "/usr/bin"}, {"filename": "nohup", "parent": "/usr/bin"}, {"filename": "nproc", "parent": "/usr/bin"}, {"filename": "nroff", "parent": "/usr/bin"}, {"filename": "nsenter", "parent": "/usr/bin"}, {"filename": "nslookup", "parent": "/usr/bin"}, {"filename": "nss-policy-check", "parent": "/usr/bin"}, {"filename": "nsupdate", "parent": "/usr/bin"}, {"filename": "numfmt", "parent": "/usr/bin"}, {"filename": "objcopy", "parent": "/usr/bin"}, {"filename": "objdump", "parent": "/usr/bin"}, {"filename": "od", "parent": "/usr/bin"}, {"filename": "oldfind", "parent": "/usr/bin"}, {"filename": "open", "parent": "/usr/bin"}, {"filename": "openssl", "parent": "/usr/bin"}, {"filename": "openvt", "parent": "/usr/bin"}, {"filename": "os-prober", "parent": "/usr/bin"}, {"filename": "p11-kit", "parent": "/usr/bin"}, {"filename": "passwd", "parent": "/usr/bin"}, {"filename": "paste", "parent": "/usr/bin"}, {"filename": "pathchk", "parent": "/usr/bin"}, {"filename": "pchrt", "parent": "/usr/bin"}, {"filename": "perl", "parent": "/usr/bin"}, {"filename": "perl5.16.3", "parent": "/usr/bin"}, {"filename": "perlbug", "parent": "/usr/bin"}, {"filename": "perldoc", "parent": "/usr/bin"}, {"filename": "perlthanks", "parent": "/usr/bin"}, {"filename": "pflags", "parent": "/usr/bin"}, {"filename": "pgawk", "parent": "/usr/bin"}, {"filename": "pgrep", "parent": "/usr/bin"}, {"filename": "pic", "parent": "/usr/bin"}, {"filename": "piconv", "parent": "/usr/bin"}, {"filename": "pidstat", "parent": "/usr/bin"}, {"filename": "pinentry", "parent": "/usr/bin"}, {"filename": "pinentry-curses", "parent": "/usr/bin"}, {"filename": "ping", "parent": "/usr/bin"}, {"filename": "ping6", "parent": "/usr/bin"}, {"filename": "pinky", "parent": "/usr/bin"}, {"filename": "pip3", "parent": "/usr/bin"}, {"filename": "pip-3", "parent": "/usr/bin"}, {"filename": "pip-3.6", "parent": "/usr/bin"}, {"filename": "pip3.6", "parent": "/usr/bin"}, {"filename": "pk12util", "parent": "/usr/bin"}, {"filename": "pkaction", "parent": "/usr/bin"}, {"filename": "pkcheck", "parent": "/usr/bin"}, {"filename": "pkexec", "parent": "/usr/bin"}, {"filename": "pkg-config", "parent": "/usr/bin"}, {"filename": "pkill", "parent": "/usr/bin"}, {"filename": "pkla-admin-identities", "parent": "/usr/bin"}, {"filename": "pkla-check-authorization", "parent": "/usr/bin"}, {"filename": "pkttyagent", "parent": "/usr/bin"}, {"filename": "pl2pm", "parent": "/usr/bin"}, {"filename": "pldd", "parent": "/usr/bin"}, {"filename": "plymouth", "parent": "/usr/bin"}, {"filename": "pmap", "parent": "/usr/bin"}, {"filename": "pod2html", "parent": "/usr/bin"}, {"filename": "pod2man", "parent": "/usr/bin"}, {"filename": "pod2text", "parent": "/usr/bin"}, {"filename": "pod2usage", "parent": "/usr/bin"}, {"filename": "post-grohtml", "parent": "/usr/bin"}, {"filename": "powernow-k8-decode", "parent": "/usr/bin"}, {"filename": "pr", "parent": "/usr/bin"}, {"filename": "preconv", "parent": "/usr/bin"}, {"filename": "pre-grohtml", "parent": "/usr/bin"}, {"filename": "printenv", "parent": "/usr/bin"}, {"filename": "printf", "parent": "/usr/bin"}, {"filename": "prlimit", "parent": "/usr/bin"}, {"filename": "ps", "parent": "/usr/bin"}, {"filename": "psed", "parent": "/usr/bin"}, {"filename": "psfaddtable", "parent": "/usr/bin"}, {"filename": "psfgettable", "parent": "/usr/bin"}, {"filename": "psfstriptable", "parent": "/usr/bin"}, {"filename": "psfxtable", "parent": "/usr/bin"}, {"filename": "pstruct", "parent": "/usr/bin"}, {"filename": "ptaskset", "parent": "/usr/bin"}, {"filename": "ptx", "parent": "/usr/bin"}, {"filename": "pwd", "parent": "/usr/bin"}, {"filename": "pwdx", "parent": "/usr/bin"}, {"filename": "pwmake", "parent": "/usr/bin"}, {"filename": "pwscore", "parent": "/usr/bin"}, {"filename": "pydoc", "parent": "/usr/bin"}, {"filename": "pydoc3", "parent": "/usr/bin"}, {"filename": "pydoc3.6", "parent": "/usr/bin"}, {"filename": "python", "parent": "/usr/bin"}, {"filename": "python2", "parent": "/usr/bin"}, {"filename": "python2.7", "parent": "/usr/bin"}, {"filename": "python3", "parent": "/usr/bin"}, {"filename": "python3.6", "parent": "/usr/bin"}, {"filename": "python3.6m", "parent": "/usr/bin"}, {"filename": "pyvenv", "parent": "/usr/bin"}, {"filename": "pyvenv-3.6", "parent": "/usr/bin"}, {"filename": "ranlib", "parent": "/usr/bin"}, {"filename": "raw", "parent": "/usr/bin"}, {"filename": "rdoc", "parent": "/usr/bin"}, {"filename": "read", "parent": "/usr/bin"}, {"filename": "readelf", "parent": "/usr/bin"}, {"filename": "readlink", "parent": "/usr/bin"}, {"filename": "realpath", "parent": "/usr/bin"}, {"filename": "recode-sr-latin", "parent": "/usr/bin"}, {"filename": "rename", "parent": "/usr/bin"}, {"filename": "renice", "parent": "/usr/bin"}, {"filename": "reset", "parent": "/usr/bin"}, {"filename": "resizecons", "parent": "/usr/bin"}, {"filename": "rev", "parent": "/usr/bin"}, {"filename": "ri", "parent": "/usr/bin"}, {"filename": "rm", "parent": "/usr/bin"}, {"filename": "rmail", "parent": "/usr/bin"}, {"filename": "rmail.postfix", "parent": "/usr/bin"}, {"filename": "rmdir", "parent": "/usr/bin"}, {"filename": "rpcgen", "parent": "/usr/bin"}, {"filename": "rpm", "parent": "/usr/bin"}, {"filename": "rpm2cpio", "parent": "/usr/bin"}, {"filename": "rpmdb", "parent": "/usr/bin"}, {"filename": "rpmkeys", "parent": "/usr/bin"}, {"filename": "rpmquery", "parent": "/usr/bin"}, {"filename": "rpmverify", "parent": "/usr/bin"}, {"filename": "rsync", "parent": "/usr/bin"}, {"filename": "rsyslog-recover-qi.pl", "parent": "/usr/bin"}, {"filename": "ruby", "parent": "/usr/bin"}, {"filename": "runcon", "parent": "/usr/bin"}, {"filename": "run-parts", "parent": "/usr/bin"}, {"filename": "rvi", "parent": "/usr/bin"}, {"filename": "rview", "parent": "/usr/bin"}, {"filename": "s2p", "parent": "/usr/bin"}, {"filename": "sadf", "parent": "/usr/bin"}, {"filename": "sandbox", "parent": "/usr/bin"}, {"filename": "sar", "parent": "/usr/bin"}, {"filename": "scp", "parent": "/usr/bin"}, {"filename": "script", "parent": "/usr/bin"}, {"filename": "scriptreplay", "parent": "/usr/bin"}, {"filename": "sdiff", "parent": "/usr/bin"}, {"filename": "secon", "parent": "/usr/bin"}, {"filename": "sed", "parent": "/usr/bin"}, {"filename": "sedismod", "parent": "/usr/bin"}, {"filename": "sedispol", "parent": "/usr/bin"}, {"filename": "semodule_package", "parent": "/usr/bin"}, {"filename": "seq", "parent": "/usr/bin"}, {"filename": "setarch", "parent": "/usr/bin"}, {"filename": "setfacl", "parent": "/usr/bin"}, {"filename": "setfont", "parent": "/usr/bin"}, {"filename": "setkeycodes", "parent": "/usr/bin"}, {"filename": "setleds", "parent": "/usr/bin"}, {"filename": "setmetamode", "parent": "/usr/bin"}, {"filename": "setpriv", "parent": "/usr/bin"}, {"filename": "setsid", "parent": "/usr/bin"}, {"filename": "setterm", "parent": "/usr/bin"}, {"filename": "setup-nsssysinit", "parent": "/usr/bin"}, {"filename": "setup-nsssysinit.sh", "parent": "/usr/bin"}, {"filename": "setvtrgb", "parent": "/usr/bin"}, {"filename": "sftp", "parent": "/usr/bin"}, {"filename": "sg", "parent": "/usr/bin"}, {"filename": "sh", "parent": "/usr/bin"}, {"filename": "sha1sum", "parent": "/usr/bin"}, {"filename": "sha224sum", "parent": "/usr/bin"}, {"filename": "sha256sum", "parent": "/usr/bin"}, {"filename": "sha384sum", "parent": "/usr/bin"}, {"filename": "sha512sum", "parent": "/usr/bin"}, {"filename": "showconsolefont", "parent": "/usr/bin"}, {"filename": "showkey", "parent": "/usr/bin"}, {"filename": "shred", "parent": "/usr/bin"}, {"filename": "shuf", "parent": "/usr/bin"}, {"filename": "signver", "parent": "/usr/bin"}, {"filename": "size", "parent": "/usr/bin"}, {"filename": "skill", "parent": "/usr/bin"}, {"filename": "slabtop", "parent": "/usr/bin"}, {"filename": "sleep", "parent": "/usr/bin"}, {"filename": "slogin", "parent": "/usr/bin"}, {"filename": "snice", "parent": "/usr/bin"}, {"filename": "soelim", "parent": "/usr/bin"}, {"filename": "sort", "parent": "/usr/bin"}, {"filename": "sotruss", "parent": "/usr/bin"}, {"filename": "splain", "parent": "/usr/bin"}, {"filename": "split", "parent": "/usr/bin"}, {"filename": "sprof", "parent": "/usr/bin"}, {"filename": "sqlite3", "parent": "/usr/bin"}, {"filename": "ssh", "parent": "/usr/bin"}, {"filename": "ssh-add", "parent": "/usr/bin"}, {"filename": "ssh-agent", "parent": "/usr/bin"}, {"filename": "ssh-copy-id", "parent": "/usr/bin"}, {"filename": "ssh-keygen", "parent": "/usr/bin"}, {"filename": "ssh-keyscan", "parent": "/usr/bin"}, {"filename": "ssltap", "parent": "/usr/bin"}, {"filename": "stat", "parent": "/usr/bin"}, {"filename": "stdbuf", "parent": "/usr/bin"}, {"filename": "strings", "parent": "/usr/bin"}, {"filename": "strip", "parent": "/usr/bin"}, {"filename": "stty", "parent": "/usr/bin"}, {"filename": "su", "parent": "/usr/bin"}, {"filename": "sudo", "parent": "/usr/bin"}, {"filename": "sudoedit", "parent": "/usr/bin"}, {"filename": "sudoreplay", "parent": "/usr/bin"}, {"filename": "sum", "parent": "/usr/bin"}, {"filename": "sync", "parent": "/usr/bin"}, {"filename": "systemctl", "parent": "/usr/bin"}, {"filename": "systemd-analyze", "parent": "/usr/bin"}, {"filename": "systemd-ask-password", "parent": "/usr/bin"}, {"filename": "systemd-cat", "parent": "/usr/bin"}, {"filename": "systemd-cgls", "parent": "/usr/bin"}, {"filename": "systemd-cgtop", "parent": "/usr/bin"}, {"filename": "systemd-coredumpctl", "parent": "/usr/bin"}, {"filename": "systemd-delta", "parent": "/usr/bin"}, {"filename": "systemd-detect-virt", "parent": "/usr/bin"}, {"filename": "systemd-escape", "parent": "/usr/bin"}, {"filename": "systemd-firstboot", "parent": "/usr/bin"}, {"filename": "systemd-hwdb", "parent": "/usr/bin"}, {"filename": "systemd-inhibit", "parent": "/usr/bin"}, {"filename": "systemd-loginctl", "parent": "/usr/bin"}, {"filename": "systemd-machine-id-setup", "parent": "/usr/bin"}, {"filename": "systemd-notify", "parent": "/usr/bin"}, {"filename": "systemd-nspawn", "parent": "/usr/bin"}, {"filename": "systemd-path", "parent": "/usr/bin"}, {"filename": "systemd-run", "parent": "/usr/bin"}, {"filename": "systemd-stdio-bridge", "parent": "/usr/bin"}, {"filename": "systemd-sysv-convert", "parent": "/usr/bin"}, {"filename": "systemd-tmpfiles", "parent": "/usr/bin"}, {"filename": "systemd-tty-ask-password-agent", "parent": "/usr/bin"}, {"filename": "tabs", "parent": "/usr/bin"}, {"filename": "tac", "parent": "/usr/bin"}, {"filename": "tail", "parent": "/usr/bin"}, {"filename": "tailf", "parent": "/usr/bin"}, {"filename": "tapestat", "parent": "/usr/bin"}, {"filename": "tar", "parent": "/usr/bin"}, {"filename": "taskset", "parent": "/usr/bin"}, {"filename": "tbl", "parent": "/usr/bin"}, {"filename": "teamd", "parent": "/usr/bin"}, {"filename": "teamdctl", "parent": "/usr/bin"}, {"filename": "teamnl", "parent": "/usr/bin"}, {"filename": "tee", "parent": "/usr/bin"}, {"filename": "test", "parent": "/usr/bin"}, {"filename": "testgdbm", "parent": "/usr/bin"}, {"filename": "testrb", "parent": "/usr/bin"}, {"filename": "tic", "parent": "/usr/bin"}, {"filename": "timedatectl", "parent": "/usr/bin"}, {"filename": "timeout", "parent": "/usr/bin"}, {"filename": "tload", "parent": "/usr/bin"}, {"filename": "tmon", "parent": "/usr/bin"}, {"filename": "toe", "parent": "/usr/bin"}, {"filename": "top", "parent": "/usr/bin"}, {"filename": "touch", "parent": "/usr/bin"}, {"filename": "tput", "parent": "/usr/bin"}, {"filename": "tr", "parent": "/usr/bin"}, {"filename": "tracepath", "parent": "/usr/bin"}, {"filename": "tracepath6", "parent": "/usr/bin"}, {"filename": "troff", "parent": "/usr/bin"}, {"filename": "true", "parent": "/usr/bin"}, {"filename": "truncate", "parent": "/usr/bin"}, {"filename": "trust", "parent": "/usr/bin"}, {"filename": "tset", "parent": "/usr/bin"}, {"filename": "tsort", "parent": "/usr/bin"}, {"filename": "tty", "parent": "/usr/bin"}, {"filename": "turbostat", "parent": "/usr/bin"}, {"filename": "tzselect", "parent": "/usr/bin"}, {"filename": "udevadm", "parent": "/usr/bin"}, {"filename": "ul", "parent": "/usr/bin"}, {"filename": "umask", "parent": "/usr/bin"}, {"filename": "umount", "parent": "/usr/bin"}, {"filename": "unalias", "parent": "/usr/bin"}, {"filename": "uname", "parent": "/usr/bin"}, {"filename": "unexpand", "parent": "/usr/bin"}, {"filename": "unicode_start", "parent": "/usr/bin"}, {"filename": "unicode_stop", "parent": "/usr/bin"}, {"filename": "uniq", "parent": "/usr/bin"}, {"filename": "unlink", "parent": "/usr/bin"}, {"filename": "unlz4", "parent": "/usr/bin"}, {"filename": "unshare", "parent": "/usr/bin"}, {"filename": "unxz", "parent": "/usr/bin"}, {"filename": "unzip", "parent": "/usr/bin"}, {"filename": "unzipsfx", "parent": "/usr/bin"}, {"filename": "update-ca-trust", "parent": "/usr/bin"}, {"filename": "update-mime-database", "parent": "/usr/bin"}, {"filename": "uptime", "parent": "/usr/bin"}, {"filename": "urlgrabber", "parent": "/usr/bin"}, {"filename": "users", "parent": "/usr/bin"}, {"filename": "usleep", "parent": "/usr/bin"}, {"filename": "usx2yloader", "parent": "/usr/bin"}, {"filename": "utmpdump", "parent": "/usr/bin"}, {"filename": "uuidgen", "parent": "/usr/bin"}, {"filename": "vdir", "parent": "/usr/bin"}, {"filename": "vi", "parent": "/usr/bin"}, {"filename": "view", "parent": "/usr/bin"}, {"filename": "vlock", "parent": "/usr/bin"}, {"filename": "vmstat", "parent": "/usr/bin"}, {"filename": "vxloader", "parent": "/usr/bin"}, {"filename": "w", "parent": "/usr/bin"}, {"filename": "wait", "parent": "/usr/bin"}, {"filename": "wall", "parent": "/usr/bin"}, {"filename": "watch", "parent": "/usr/bin"}, {"filename": "watchgnupg", "parent": "/usr/bin"}, {"filename": "wc", "parent": "/usr/bin"}, {"filename": "wdctl", "parent": "/usr/bin"}, {"filename": "whatis", "parent": "/usr/bin"}, {"filename": "whereis", "parent": "/usr/bin"}, {"filename": "which", "parent": "/usr/bin"}, {"filename": "whiptail", "parent": "/usr/bin"}, {"filename": "who", "parent": "/usr/bin"}, {"filename": "whoami", "parent": "/usr/bin"}, {"filename": "write", "parent": "/usr/bin"}, {"filename": "x86_64", "parent": "/usr/bin"}, {"filename": "x86_energy_perf_policy", "parent": "/usr/bin"}, {"filename": "xargs", "parent": "/usr/bin"}, {"filename": "xgettext", "parent": "/usr/bin"}, {"filename": "xmlcatalog", "parent": "/usr/bin"}, {"filename": "xmllint", "parent": "/usr/bin"}, {"filename": "xmlwf", "parent": "/usr/bin"}, {"filename": "xz", "parent": "/usr/bin"}, {"filename": "xzcat", "parent": "/usr/bin"}, {"filename": "xzcmp", "parent": "/usr/bin"}, {"filename": "xzdec", "parent": "/usr/bin"}, {"filename": "xzdiff", "parent": "/usr/bin"}, {"filename": "xzegrep", "parent": "/usr/bin"}, {"filename": "xzfgrep", "parent": "/usr/bin"}, {"filename": "xzgrep", "parent": "/usr/bin"}, {"filename": "xzless", "parent": "/usr/bin"}, {"filename": "xzmore", "parent": "/usr/bin"}, {"filename": "yes", "parent": "/usr/bin"}, {"filename": "ypdomainname", "parent": "/usr/bin"}, {"filename": "yum", "parent": "/usr/bin"}, {"filename": "zcat", "parent": "/usr/bin"}, {"filename": "zcmp", "parent": "/usr/bin"}, {"filename": "zdiff", "parent": "/usr/bin"}, {"filename": "zegrep", "parent": "/usr/bin"}, {"filename": "zfgrep", "parent": "/usr/bin"}, {"filename": "zforce", "parent": "/usr/bin"}, {"filename": "zgrep", "parent": "/usr/bin"}, {"filename": "zipgrep", "parent": "/usr/bin"}, {"filename": "zipinfo", "parent": "/usr/bin"}, {"filename": "zless", "parent": "/usr/bin"}, {"filename": "zmore", "parent": "/usr/bin"}, {"filename": "znew", "parent": "/usr/bin"}, {"filename": "zsoelim", "parent": "/usr/bin"}, {"filename": "python2.7", "parent": "/usr/include"}, {"filename": "python3.6m", "parent": "/usr/include"}, {"filename": "binfmt.d", "parent": "/usr/lib"}, {"filename": "debug", "parent": "/usr/lib"}, {"filename": "dracut", "parent": "/usr/lib"}, {"filename": "firewalld", "parent": "/usr/lib"}, {"filename": "firmware", "parent": "/usr/lib"}, {"filename": "games", "parent": "/usr/lib"}, {"filename": "gems", "parent": "/usr/lib"}, {"filename": "grub", "parent": "/usr/lib"}, {"filename": "kbd", "parent": "/usr/lib"}, {"filename": "kdump", "parent": "/usr/lib"}, {"filename": "kernel", "parent": "/usr/lib"}, {"filename": "locale", "parent": "/usr/lib"}, {"filename": "modprobe.d", "parent": "/usr/lib"}, {"filename": "modules", "parent": "/usr/lib"}, {"filename": "modules-load.d", "parent": "/usr/lib"}, {"filename": "NetworkManager", "parent": "/usr/lib"}, {"filename": "polkit-1", "parent": "/usr/lib"}, {"filename": "python2.7", "parent": "/usr/lib"}, {"filename": "python3.6", "parent": "/usr/lib"}, {"filename": "rpm", "parent": "/usr/lib"}, {"filename": "sendmail", "parent": "/usr/lib"}, {"filename": "sendmail.postfix", "parent": "/usr/lib"}, {"filename": "sse2", "parent": "/usr/lib"}, {"filename": "sysctl.d", "parent": "/usr/lib"}, {"filename": "systemd", "parent": "/usr/lib"}, {"filename": "tmpfiles.d", "parent": "/usr/lib"}, {"filename": "tuned", "parent": "/usr/lib"}, {"filename": "udev", "parent": "/usr/lib"}, {"filename": "yum-plugins", "parent": "/usr/lib"}, {"filename": "audit", "parent": "/usr/lib64"}, {"filename": "bind9-export", "parent": "/usr/lib64"}, {"filename": "cracklib_dict.hwm", "parent": "/usr/lib64"}, {"filename": "cracklib_dict.pwd", "parent": "/usr/lib64"}, {"filename": "cracklib_dict.pwi", "parent": "/usr/lib64"}, {"filename": "dbus-1", "parent": "/usr/lib64"}, {"filename": "device-mapper", "parent": "/usr/lib64"}, {"filename": "ebtables", "parent": "/usr/lib64"}, {"filename": "elfutils", "parent": "/usr/lib64"}, {"filename": "fipscheck", "parent": "/usr/lib64"}, {"filename": "games", "parent": "/usr/lib64"}, {"filename": "gconv", "parent": "/usr/lib64"}, {"filename": "gems", "parent": "/usr/lib64"}, {"filename": "gettext", "parent": "/usr/lib64"}, {"filename": "gio", "parent": "/usr/lib64"}, {"filename": "girepository-1.0", "parent": "/usr/lib64"}, {"filename": "krb5", "parent": "/usr/lib64"}, {"filename": "ld-2.17.so", "parent": "/usr/lib64"}, {"filename": "ld-linux-x86-64.so.2", "parent": "/usr/lib64"}, {"filename": "libacl.so.1", "parent": "/usr/lib64"}, {"filename": "libacl.so.1.1.0", "parent": "/usr/lib64"}, {"filename": "libaio.so.1", "parent": "/usr/lib64"}, {"filename": "libaio.so.1.0.0", "parent": "/usr/lib64"}, {"filename": "libaio.so.1.0.1", "parent": "/usr/lib64"}, {"filename": "libanl-2.17.so", "parent": "/usr/lib64"}, {"filename": "libanl.so.1", "parent": "/usr/lib64"}, {"filename": "libapol.so.4", "parent": "/usr/lib64"}, {"filename": "libapol.so.4.4", "parent": "/usr/lib64"}, {"filename": "libasm-0.176.so", "parent": "/usr/lib64"}, {"filename": "libasm.so.1", "parent": "/usr/lib64"}, {"filename": "libasound.so.2", "parent": "/usr/lib64"}, {"filename": "libasound.so.2.0.0", "parent": "/usr/lib64"}, {"filename": "libasprintf.so.0", "parent": "/usr/lib64"}, {"filename": "libasprintf.so.0.0.0", "parent": "/usr/lib64"}, {"filename": "libassuan.so.0", "parent": "/usr/lib64"}, {"filename": "libassuan.so.0.4.0", "parent": "/usr/lib64"}, {"filename": "libattr.so.1", "parent": "/usr/lib64"}, {"filename": "libattr.so.1.1.0", "parent": "/usr/lib64"}, {"filename": "libaudit.so.1", "parent": "/usr/lib64"}, {"filename": "libaudit.so.1.0.0", "parent": "/usr/lib64"}, {"filename": "libauparse.so.0", "parent": "/usr/lib64"}, {"filename": "libauparse.so.0.0.0", "parent": "/usr/lib64"}, {"filename": "libbfd-2.27-41.base.el7.so", "parent": "/usr/lib64"}, {"filename": "libbind9.so.160", "parent": "/usr/lib64"}, {"filename": "libbind9.so.160.0.8", "parent": "/usr/lib64"}, {"filename": "libblkid.so.1", "parent": "/usr/lib64"}, {"filename": "libblkid.so.1.1.0", "parent": "/usr/lib64"}, {"filename": "libBrokenLocale-2.17.so", "parent": "/usr/lib64"}, {"filename": "libBrokenLocale.so.1", "parent": "/usr/lib64"}, {"filename": "libbtrfs.so.0", "parent": "/usr/lib64"}, {"filename": "libbtrfs.so.0.1", "parent": "/usr/lib64"}, {"filename": "libbz2.so.1", "parent": "/usr/lib64"}, {"filename": "libbz2.so.1.0.6", "parent": "/usr/lib64"}, {"filename": "libc-2.17.so", "parent": "/usr/lib64"}, {"filename": "libcap-ng.so.0", "parent": "/usr/lib64"}, {"filename": "libcap-ng.so.0.0.0", "parent": "/usr/lib64"}, {"filename": "libcap.so.2", "parent": "/usr/lib64"}, {"filename": "libcap.so.2.22", "parent": "/usr/lib64"}, {"filename": "libcgroup.so.1", "parent": "/usr/lib64"}, {"filename": "libcgroup.so.1.0.41", "parent": "/usr/lib64"}, {"filename": "libcidn-2.17.so", "parent": "/usr/lib64"}, {"filename": "libcidn.so.1", "parent": "/usr/lib64"}, {"filename": "libcom_err.so.2", "parent": "/usr/lib64"}, {"filename": "libcom_err.so.2.1", "parent": "/usr/lib64"}, {"filename": "libcpupower.so.0", "parent": "/usr/lib64"}, {"filename": "libcpupower.so.0.0.0", "parent": "/usr/lib64"}, {"filename": "libcrack.so.2", "parent": "/usr/lib64"}, {"filename": "libcrack.so.2.9.0", "parent": "/usr/lib64"}, {"filename": "libcroco-0.6.so.3", "parent": "/usr/lib64"}, {"filename": "libcroco-0.6.so.3.0.1", "parent": "/usr/lib64"}, {"filename": "libcrypt-2.17.so", "parent": "/usr/lib64"}, {"filename": "libcrypto.so.10", "parent": "/usr/lib64"}, {"filename": "libcrypto.so.1.0.2k", "parent": "/usr/lib64"}, {"filename": "libcryptsetup.so.12", "parent": "/usr/lib64"}, {"filename": "libcryptsetup.so.12.3.0", "parent": "/usr/lib64"}, {"filename": "libcryptsetup.so.4", "parent": "/usr/lib64"}, {"filename": "libcryptsetup.so.4.7.0", "parent": "/usr/lib64"}, {"filename": "libcrypt.so.1", "parent": "/usr/lib64"}, {"filename": "libc.so.6", "parent": "/usr/lib64"}, {"filename": "libcurl.so.4", "parent": "/usr/lib64"}, {"filename": "libcurl.so.4.3.0", "parent": "/usr/lib64"}, {"filename": "libdaemon.so.0", "parent": "/usr/lib64"}, {"filename": "libdaemon.so.0.5.0", "parent": "/usr/lib64"}, {"filename": "libdb-5.3.so", "parent": "/usr/lib64"}, {"filename": "libdb-5.so", "parent": "/usr/lib64"}, {"filename": "libdbus-1.so.3", "parent": "/usr/lib64"}, {"filename": "libdbus-1.so.3.14.14", "parent": "/usr/lib64"}, {"filename": "libdbus-glib-1.so.2", "parent": "/usr/lib64"}, {"filename": "libdbus-glib-1.so.2.2.2", "parent": "/usr/lib64"}, {"filename": "libdevmapper-event-lvm2mirror.so", "parent": "/usr/lib64"}, {"filename": "libdevmapper-event-lvm2raid.so", "parent": "/usr/lib64"}, {"filename": "libdevmapper-event-lvm2snapshot.so", "parent": "/usr/lib64"}, {"filename": "libdevmapper-event-lvm2.so.2.02", "parent": "/usr/lib64"}, {"filename": "libdevmapper-event-lvm2thin.so", "parent": "/usr/lib64"}, {"filename": "libdevmapper-event-lvm2vdo.so", "parent": "/usr/lib64"}, {"filename": "libdevmapper-event.so.1.02", "parent": "/usr/lib64"}, {"filename": "libdevmapper.so.1.02", "parent": "/usr/lib64"}, {"filename": "libdhcpctl.so.0", "parent": "/usr/lib64"}, {"filename": "libdhcpctl.so.0.0.0", "parent": "/usr/lib64"}, {"filename": "libdl-2.17.so", "parent": "/usr/lib64"}, {"filename": "libdl.so.2", "parent": "/usr/lib64"}, {"filename": "libdns.so.1102", "parent": "/usr/lib64"}, {"filename": "libdns.so.1102.1.2", "parent": "/usr/lib64"}, {"filename": "libdrm_amdgpu.so.1", "parent": "/usr/lib64"}, {"filename": "libdrm_amdgpu.so.1.0.0", "parent": "/usr/lib64"}, {"filename": "libdrm_intel.so.1", "parent": "/usr/lib64"}, {"filename": "libdrm_intel.so.1.0.0", "parent": "/usr/lib64"}, {"filename": "libdrm_nouveau.so.2", "parent": "/usr/lib64"}, {"filename": "libdrm_nouveau.so.2.0.0", "parent": "/usr/lib64"}, {"filename": "libdrm_radeon.so.1", "parent": "/usr/lib64"}, {"filename": "libdrm_radeon.so.1.0.1", "parent": "/usr/lib64"}, {"filename": "libdrm.so.2", "parent": "/usr/lib64"}, {"filename": "libdrm.so.2.4.0", "parent": "/usr/lib64"}, {"filename": "libdw-0.176.so", "parent": "/usr/lib64"}, {"filename": "libdw.so.1", "parent": "/usr/lib64"}, {"filename": "libe2p.so.2", "parent": "/usr/lib64"}, {"filename": "libe2p.so.2.3", "parent": "/usr/lib64"}, {"filename": "libebtc.so", "parent": "/usr/lib64"}, {"filename": "libedit.so.0", "parent": "/usr/lib64"}, {"filename": "libedit.so.0.0.42", "parent": "/usr/lib64"}, {"filename": "libelf-0.176.so", "parent": "/usr/lib64"}, {"filename": "libelf.so.1", "parent": "/usr/lib64"}, {"filename": "libestr.so.0", "parent": "/usr/lib64"}, {"filename": "libestr.so.0.0.0", "parent": "/usr/lib64"}, {"filename": "libexpat.so.1", "parent": "/usr/lib64"}, {"filename": "libexpat.so.1.6.0", "parent": "/usr/lib64"}, {"filename": "libext2fs.so.2", "parent": "/usr/lib64"}, {"filename": "libext2fs.so.2.4", "parent": "/usr/lib64"}, {"filename": "libfastjson.so.4", "parent": "/usr/lib64"}, {"filename": "libfastjson.so.4.0.0", "parent": "/usr/lib64"}, {"filename": "libffi.so.6", "parent": "/usr/lib64"}, {"filename": "libffi.so.6.0.1", "parent": "/usr/lib64"}, {"filename": "libfipscheck.so.1", "parent": "/usr/lib64"}, {"filename": "libfipscheck.so.1.2.1", "parent": "/usr/lib64"}, {"filename": "libform.so.5", "parent": "/usr/lib64"}, {"filename": "libform.so.5.9", "parent": "/usr/lib64"}, {"filename": "libformw.so.5", "parent": "/usr/lib64"}, {"filename": "libformw.so.5.9", "parent": "/usr/lib64"}, {"filename": "libfreebl3.chk", "parent": "/usr/lib64"}, {"filename": "libfreebl3.so", "parent": "/usr/lib64"}, {"filename": "libfreeblpriv3.chk", "parent": "/usr/lib64"}, {"filename": "libfreeblpriv3.so", "parent": "/usr/lib64"}, {"filename": "libfreetype.so.6", "parent": "/usr/lib64"}, {"filename": "libfreetype.so.6.14.0", "parent": "/usr/lib64"}, {"filename": "libgcc_s-4.8.5-20150702.so.1", "parent": "/usr/lib64"}, {"filename": "libgcc_s.so.1", "parent": "/usr/lib64"}, {"filename": "libgcrypt.so.11", "parent": "/usr/lib64"}, {"filename": "libgcrypt.so.11.8.2", "parent": "/usr/lib64"}, {"filename": "libgdbm_compat.so.4", "parent": "/usr/lib64"}, {"filename": "libgdbm_compat.so.4.0.0", "parent": "/usr/lib64"}, {"filename": "libgdbm.so.4", "parent": "/usr/lib64"}, {"filename": "libgdbm.so.4.0.0", "parent": "/usr/lib64"}, {"filename": "libGeoIP.so.1", "parent": "/usr/lib64"}, {"filename": "libGeoIP.so.1.5.0", "parent": "/usr/lib64"}, {"filename": "libgettextlib-0.19.8.1.so", "parent": "/usr/lib64"}, {"filename": "libgettextpo.so.0", "parent": "/usr/lib64"}, {"filename": "libgettextpo.so.0.5.4", "parent": "/usr/lib64"}, {"filename": "libgettextsrc-0.19.8.1.so", "parent": "/usr/lib64"}, {"filename": "libgio-2.0.so.0", "parent": "/usr/lib64"}, {"filename": "libgio-2.0.so.0.5600.1", "parent": "/usr/lib64"}, {"filename": "libgirepository-1.0.so.1", "parent": "/usr/lib64"}, {"filename": "libgirepository-1.0.so.1.0.0", "parent": "/usr/lib64"}, {"filename": "libglib-2.0.so.0", "parent": "/usr/lib64"}, {"filename": "libglib-2.0.so.0.5600.1", "parent": "/usr/lib64"}, {"filename": "libgmodule-2.0.so.0", "parent": "/usr/lib64"}, {"filename": "libgmodule-2.0.so.0.5600.1", "parent": "/usr/lib64"}, {"filename": "libgmp.so.10", "parent": "/usr/lib64"}, {"filename": "libgmp.so.10.2.0", "parent": "/usr/lib64"}, {"filename": "libgmpxx.so.4", "parent": "/usr/lib64"}, {"filename": "libgmpxx.so.4.4.0", "parent": "/usr/lib64"}, {"filename": "libgobject-2.0.so.0", "parent": "/usr/lib64"}, {"filename": "libgobject-2.0.so.0.5600.1", "parent": "/usr/lib64"}, {"filename": "libgomp.so.1", "parent": "/usr/lib64"}, {"filename": "libgomp.so.1.0.0", "parent": "/usr/lib64"}, {"filename": "libgpg-error.so.0", "parent": "/usr/lib64"}, {"filename": "libgpg-error.so.0.10.0", "parent": "/usr/lib64"}, {"filename": "libgpgme-pthread.so.11", "parent": "/usr/lib64"}, {"filename": "libgpgme-pthread.so.11.8.1", "parent": "/usr/lib64"}, {"filename": "libgpgme.so.11", "parent": "/usr/lib64"}, {"filename": "libgpgme.so.11.8.1", "parent": "/usr/lib64"}, {"filename": "libgssapi_krb5.so.2", "parent": "/usr/lib64"}, {"filename": "libgssapi_krb5.so.2.2", "parent": "/usr/lib64"}, {"filename": "libgssrpc.so.4", "parent": "/usr/lib64"}, {"filename": "libgssrpc.so.4.2", "parent": "/usr/lib64"}, {"filename": "libgthread-2.0.so.0", "parent": "/usr/lib64"}, {"filename": "libgthread-2.0.so.0.5600.1", "parent": "/usr/lib64"}, {"filename": "libhandle.so.1", "parent": "/usr/lib64"}, {"filename": "libhandle.so.1.0.3", "parent": "/usr/lib64"}, {"filename": "libhistory.so.6", "parent": "/usr/lib64"}, {"filename": "libhistory.so.6.2", "parent": "/usr/lib64"}, {"filename": "libidn.so.11", "parent": "/usr/lib64"}, {"filename": "libidn.so.11.6.11", "parent": "/usr/lib64"}, {"filename": "libip4tc.so.0", "parent": "/usr/lib64"}, {"filename": "libip4tc.so.0.1.0", "parent": "/usr/lib64"}, {"filename": "libip6tc.so.0", "parent": "/usr/lib64"}, {"filename": "libip6tc.so.0.1.0", "parent": "/usr/lib64"}, {"filename": "libipset.so.13", "parent": "/usr/lib64"}, {"filename": "libipset.so.13.1.0", "parent": "/usr/lib64"}, {"filename": "libiptc.so.0", "parent": "/usr/lib64"}, {"filename": "libiptc.so.0.0.0", "parent": "/usr/lib64"}, {"filename": "libirs.so.160", "parent": "/usr/lib64"}, {"filename": "libirs.so.160.0.5", "parent": "/usr/lib64"}, {"filename": "libisccc.so.160", "parent": "/usr/lib64"}, {"filename": "libisccc.so.160.0.3", "parent": "/usr/lib64"}, {"filename": "libisccfg.so.160", "parent": "/usr/lib64"}, {"filename": "libisccfg.so.160.2.1", "parent": "/usr/lib64"}, {"filename": "libisc.so.169", "parent": "/usr/lib64"}, {"filename": "libisc.so.169.0.3", "parent": "/usr/lib64"}, {"filename": "libjansson.so.4", "parent": "/usr/lib64"}, {"filename": "libjansson.so.4.10.0", "parent": "/usr/lib64"}, {"filename": "libjson-c.so.2", "parent": "/usr/lib64"}, {"filename": "libjson-c.so.2.0.1", "parent": "/usr/lib64"}, {"filename": "libjson.so.0", "parent": "/usr/lib64"}, {"filename": "libjson.so.0.1.0", "parent": "/usr/lib64"}, {"filename": "libk5crypto.so.3", "parent": "/usr/lib64"}, {"filename": "libk5crypto.so.3.1", "parent": "/usr/lib64"}, {"filename": "libkdb5.so.8", "parent": "/usr/lib64"}, {"filename": "libkdb5.so.8.0", "parent": "/usr/lib64"}, {"filename": "libkeyutils.so.1", "parent": "/usr/lib64"}, {"filename": "libkeyutils.so.1.5", "parent": "/usr/lib64"}, {"filename": "libkmod.so.2", "parent": "/usr/lib64"}, {"filename": "libkmod.so.2.2.10", "parent": "/usr/lib64"}, {"filename": "libkms.so.1", "parent": "/usr/lib64"}, {"filename": "libkms.so.1.0.0", "parent": "/usr/lib64"}, {"filename": "libkrad.so.0", "parent": "/usr/lib64"}, {"filename": "libkrad.so.0.0", "parent": "/usr/lib64"}, {"filename": "libkrb5.so.3", "parent": "/usr/lib64"}, {"filename": "libkrb5.so.3.3", "parent": "/usr/lib64"}, {"filename": "libkrb5support.so.0", "parent": "/usr/lib64"}, {"filename": "libkrb5support.so.0.1", "parent": "/usr/lib64"}, {"filename": "liblber-2.4.so.2", "parent": "/usr/lib64"}, {"filename": "liblber-2.4.so.2.10.7", "parent": "/usr/lib64"}, {"filename": "libldap-2.4.so.2", "parent": "/usr/lib64"}, {"filename": "libldap-2.4.so.2.10.7", "parent": "/usr/lib64"}, {"filename": "libldap_r-2.4.so.2", "parent": "/usr/lib64"}, {"filename": "libldap_r-2.4.so.2.10.7", "parent": "/usr/lib64"}, {"filename": "liblua-5.1.so", "parent": "/usr/lib64"}, {"filename": "liblvm2app.so.2.2", "parent": "/usr/lib64"}, {"filename": "liblvm2cmd.so.2.02", "parent": "/usr/lib64"}, {"filename": "liblwres.so.160", "parent": "/usr/lib64"}, {"filename": "liblwres.so.160.0.2", "parent": "/usr/lib64"}, {"filename": "liblz4.so.1", "parent": "/usr/lib64"}, {"filename": "liblz4.so.1.7.5", "parent": "/usr/lib64"}, {"filename": "liblzma.so.5", "parent": "/usr/lib64"}, {"filename": "liblzma.so.5.2.2", "parent": "/usr/lib64"}, {"filename": "liblzo2.so.2", "parent": "/usr/lib64"}, {"filename": "liblzo2.so.2.0.0", "parent": "/usr/lib64"}, {"filename": "libm-2.17.so", "parent": "/usr/lib64"}, {"filename": "libmagic.so.1", "parent": "/usr/lib64"}, {"filename": "libmagic.so.1.0.0", "parent": "/usr/lib64"}, {"filename": "libmemusage.so", "parent": "/usr/lib64"}, {"filename": "libmenu.so.5", "parent": "/usr/lib64"}, {"filename": "libmenu.so.5.9", "parent": "/usr/lib64"}, {"filename": "libmenuw.so.5", "parent": "/usr/lib64"}, {"filename": "libmenuw.so.5.9", "parent": "/usr/lib64"}, {"filename": "libmnl.so.0", "parent": "/usr/lib64"}, {"filename": "libmnl.so.0.1.0", "parent": "/usr/lib64"}, {"filename": "libmount.so.1", "parent": "/usr/lib64"}, {"filename": "libmount.so.1.1.0", "parent": "/usr/lib64"}, {"filename": "libmozjs-17.0.so", "parent": "/usr/lib64"}, {"filename": "libm.so.6", "parent": "/usr/lib64"}, {"filename": "libncurses.so.5", "parent": "/usr/lib64"}, {"filename": "libncurses++.so.5", "parent": "/usr/lib64"}, {"filename": "libncurses.so.5.9", "parent": "/usr/lib64"}, {"filename": "libncurses++.so.5.9", "parent": "/usr/lib64"}, {"filename": "libncurses++w.so.5", "parent": "/usr/lib64"}, {"filename": "libncursesw.so.5", "parent": "/usr/lib64"}, {"filename": "libncurses++w.so.5.9", "parent": "/usr/lib64"}, {"filename": "libncursesw.so.5.9", "parent": "/usr/lib64"}, {"filename": "libndp.so.0", "parent": "/usr/lib64"}, {"filename": "libndp.so.0.0.0", "parent": "/usr/lib64"}, {"filename": "libnetfilter_conntrack.so.3", "parent": "/usr/lib64"}, {"filename": "libnetfilter_conntrack.so.3.6.0", "parent": "/usr/lib64"}, {"filename": "libnewt.so.0.52", "parent": "/usr/lib64"}, {"filename": "libnewt.so.0.52.15", "parent": "/usr/lib64"}, {"filename": "libnfnetlink.so.0", "parent": "/usr/lib64"}, {"filename": "libnfnetlink.so.0.2.0", "parent": "/usr/lib64"}, {"filename": "libnftnl.so.7", "parent": "/usr/lib64"}, {"filename": "libnftnl.so.7.0.0", "parent": "/usr/lib64"}, {"filename": "libnl", "parent": "/usr/lib64"}, {"filename": "libnl-3.so.200", "parent": "/usr/lib64"}, {"filename": "libnl-3.so.200.23.0", "parent": "/usr/lib64"}, {"filename": "libnl-cli-3.so.200", "parent": "/usr/lib64"}, {"filename": "libnl-cli-3.so.200.23.0", "parent": "/usr/lib64"}, {"filename": "libnl-genl-3.so.200", "parent": "/usr/lib64"}, {"filename": "libnl-genl-3.so.200.23.0", "parent": "/usr/lib64"}, {"filename": "libnl-idiag-3.so.200", "parent": "/usr/lib64"}, {"filename": "libnl-idiag-3.so.200.23.0", "parent": "/usr/lib64"}, {"filename": "libnl-nf-3.so.200", "parent": "/usr/lib64"}, {"filename": "libnl-nf-3.so.200.23.0", "parent": "/usr/lib64"}, {"filename": "libnl-route-3.so.200", "parent": "/usr/lib64"}, {"filename": "libnl-route-3.so.200.23.0", "parent": "/usr/lib64"}, {"filename": "libnl-xfrm-3.so.200", "parent": "/usr/lib64"}, {"filename": "libnl-xfrm-3.so.200.23.0", "parent": "/usr/lib64"}, {"filename": "libnm.so.0", "parent": "/usr/lib64"}, {"filename": "libnm.so.0.1.0", "parent": "/usr/lib64"}, {"filename": "libnsl-2.17.so", "parent": "/usr/lib64"}, {"filename": "libnsl.so.1", "parent": "/usr/lib64"}, {"filename": "libnspr4.so", "parent": "/usr/lib64"}, {"filename": "libnss3.so", "parent": "/usr/lib64"}, {"filename": "libnssckbi.so", "parent": "/usr/lib64"}, {"filename": "libnss_compat-2.17.so", "parent": "/usr/lib64"}, {"filename": "libnss_compat.so.2", "parent": "/usr/lib64"}, {"filename": "libnss_db-2.17.so", "parent": "/usr/lib64"}, {"filename": "libnssdbm3.chk", "parent": "/usr/lib64"}, {"filename": "libnssdbm3.so", "parent": "/usr/lib64"}, {"filename": "libnss_db.so.2", "parent": "/usr/lib64"}, {"filename": "libnss_dns-2.17.so", "parent": "/usr/lib64"}, {"filename": "libnss_dns.so.2", "parent": "/usr/lib64"}, {"filename": "libnss_files-2.17.so", "parent": "/usr/lib64"}, {"filename": "libnss_files.so.2", "parent": "/usr/lib64"}, {"filename": "libnss_hesiod-2.17.so", "parent": "/usr/lib64"}, {"filename": "libnss_hesiod.so.2", "parent": "/usr/lib64"}, {"filename": "libnss_myhostname.so.2", "parent": "/usr/lib64"}, {"filename": "libnss_mymachines.so.2", "parent": "/usr/lib64"}, {"filename": "libnss_nis-2.17.so", "parent": "/usr/lib64"}, {"filename": "libnss_nisplus-2.17.so", "parent": "/usr/lib64"}, {"filename": "libnss_nisplus.so.2", "parent": "/usr/lib64"}, {"filename": "libnss_nis.so.2", "parent": "/usr/lib64"}, {"filename": "libnsspem.so", "parent": "/usr/lib64"}, {"filename": "libnsssysinit.so", "parent": "/usr/lib64"}, {"filename": "libnssutil3.so", "parent": "/usr/lib64"}, {"filename": "libnuma.so.1", "parent": "/usr/lib64"}, {"filename": "libnuma.so.1.0.0", "parent": "/usr/lib64"}, {"filename": "libomapi.so.0", "parent": "/usr/lib64"}, {"filename": "libomapi.so.0.0.0", "parent": "/usr/lib64"}, {"filename": "libopcodes-2.27-41.base.el7.so", "parent": "/usr/lib64"}, {"filename": "libp11-kit.so.0", "parent": "/usr/lib64"}, {"filename": "libp11-kit.so.0.3.0", "parent": "/usr/lib64"}, {"filename": "libpamc.so.0", "parent": "/usr/lib64"}, {"filename": "libpamc.so.0.82.1", "parent": "/usr/lib64"}, {"filename": "libpam_misc.so.0", "parent": "/usr/lib64"}, {"filename": "libpam_misc.so.0.82.0", "parent": "/usr/lib64"}, {"filename": "libpam.so.0", "parent": "/usr/lib64"}, {"filename": "libpam.so.0.83.1", "parent": "/usr/lib64"}, {"filename": "libpanel.so.5", "parent": "/usr/lib64"}, {"filename": "libpanel.so.5.9", "parent": "/usr/lib64"}, {"filename": "libpanelw.so.5", "parent": "/usr/lib64"}, {"filename": "libpanelw.so.5.9", "parent": "/usr/lib64"}, {"filename": "libparted-fs-resize.so", "parent": "/usr/lib64"}, {"filename": "libparted-fs-resize.so.0", "parent": "/usr/lib64"}, {"filename": "libparted-fs-resize.so.0.0.0", "parent": "/usr/lib64"}, {"filename": "libparted.so.2", "parent": "/usr/lib64"}, {"filename": "libparted.so.2.0.0", "parent": "/usr/lib64"}, {"filename": "libpciaccess.so.0", "parent": "/usr/lib64"}, {"filename": "libpciaccess.so.0.11.1", "parent": "/usr/lib64"}, {"filename": "libpci.so.3", "parent": "/usr/lib64"}, {"filename": "libpci.so.3.5.1", "parent": "/usr/lib64"}, {"filename": "libpcprofile.so", "parent": "/usr/lib64"}, {"filename": "libpcre16.so.0", "parent": "/usr/lib64"}, {"filename": "libpcre16.so.0.2.0", "parent": "/usr/lib64"}, {"filename": "libpcre32.so.0", "parent": "/usr/lib64"}, {"filename": "libpcre32.so.0.0.0", "parent": "/usr/lib64"}, {"filename": "libpcrecpp.so.0", "parent": "/usr/lib64"}, {"filename": "libpcrecpp.so.0.0.0", "parent": "/usr/lib64"}, {"filename": "libpcreposix.so.0", "parent": "/usr/lib64"}, {"filename": "libpcreposix.so.0.0.1", "parent": "/usr/lib64"}, {"filename": "libpcre.so.1", "parent": "/usr/lib64"}, {"filename": "libpcre.so.1.2.0", "parent": "/usr/lib64"}, {"filename": "libpipeline.so.1", "parent": "/usr/lib64"}, {"filename": "libpipeline.so.1.2.3", "parent": "/usr/lib64"}, {"filename": "libplc4.so", "parent": "/usr/lib64"}, {"filename": "libplds4.so", "parent": "/usr/lib64"}, {"filename": "libply-boot-client.so.2", "parent": "/usr/lib64"}, {"filename": "libply-boot-client.so.2.1.0", "parent": "/usr/lib64"}, {"filename": "libply.so.2", "parent": "/usr/lib64"}, {"filename": "libply.so.2.1.0", "parent": "/usr/lib64"}, {"filename": "libply-splash-core.so.2", "parent": "/usr/lib64"}, {"filename": "libply-splash-core.so.2.1.0", "parent": "/usr/lib64"}, {"filename": "libpng15.so.15", "parent": "/usr/lib64"}, {"filename": "libpng15.so.15.13.0", "parent": "/usr/lib64"}, {"filename": "libpoldiff.so.1", "parent": "/usr/lib64"}, {"filename": "libpoldiff.so.1.3.3", "parent": "/usr/lib64"}, {"filename": "libpolkit-agent-1.so.0", "parent": "/usr/lib64"}, {"filename": "libpolkit-agent-1.so.0.0.0", "parent": "/usr/lib64"}, {"filename": "libpolkit-gobject-1.so.0", "parent": "/usr/lib64"}, {"filename": "libpolkit-gobject-1.so.0.0.0", "parent": "/usr/lib64"}, {"filename": "libpopt.so.0", "parent": "/usr/lib64"}, {"filename": "libpopt.so.0.0.0", "parent": "/usr/lib64"}, {"filename": "libprocps.so.4", "parent": "/usr/lib64"}, {"filename": "libprocps.so.4.0.0", "parent": "/usr/lib64"}, {"filename": "libpthread-2.17.so", "parent": "/usr/lib64"}, {"filename": "libpthread.so.0", "parent": "/usr/lib64"}, {"filename": "libpth.so.20", "parent": "/usr/lib64"}, {"filename": "libpth.so.20.0.27", "parent": "/usr/lib64"}, {"filename": "libpwquality.so.1", "parent": "/usr/lib64"}, {"filename": "libpwquality.so.1.0.2", "parent": "/usr/lib64"}, {"filename": "libpython2.7.so.1.0", "parent": "/usr/lib64"}, {"filename": "libpython3.6m.so.1.0", "parent": "/usr/lib64"}, {"filename": "libpython3.so", "parent": "/usr/lib64"}, {"filename": "libqpol.so.1", "parent": "/usr/lib64"}, {"filename": "libqpol.so.1.7", "parent": "/usr/lib64"}, {"filename": "libqrencode.so.3", "parent": "/usr/lib64"}, {"filename": "libqrencode.so.3.4.1", "parent": "/usr/lib64"}, {"filename": "libreadline.so.6", "parent": "/usr/lib64"}, {"filename": "libreadline.so.6.2", "parent": "/usr/lib64"}, {"filename": "libresolv-2.17.so", "parent": "/usr/lib64"}, {"filename": "libresolv.so.2", "parent": "/usr/lib64"}, {"filename": "librpmbuild.so.3", "parent": "/usr/lib64"}, {"filename": "librpmbuild.so.3.2.2", "parent": "/usr/lib64"}, {"filename": "librpmio.so.3", "parent": "/usr/lib64"}, {"filename": "librpmio.so.3.2.2", "parent": "/usr/lib64"}, {"filename": "librpmsign.so.1", "parent": "/usr/lib64"}, {"filename": "librpmsign.so.1.2.2", "parent": "/usr/lib64"}, {"filename": "librpm.so.3", "parent": "/usr/lib64"}, {"filename": "librpm.so.3.2.2", "parent": "/usr/lib64"}, {"filename": "librt-2.17.so", "parent": "/usr/lib64"}, {"filename": "librt.so.1", "parent": "/usr/lib64"}, {"filename": "libruby.so.2.0", "parent": "/usr/lib64"}, {"filename": "libruby.so.2.0.0", "parent": "/usr/lib64"}, {"filename": "libsasl2.so.3", "parent": "/usr/lib64"}, {"filename": "libsasl2.so.3.0.0", "parent": "/usr/lib64"}, {"filename": "libseaudit.so.4", "parent": "/usr/lib64"}, {"filename": "libseaudit.so.4.5", "parent": "/usr/lib64"}, {"filename": "libseccomp.so.2", "parent": "/usr/lib64"}, {"filename": "libseccomp.so.2.3.1", "parent": "/usr/lib64"}, {"filename": "libsefs.so.4", "parent": "/usr/lib64"}, {"filename": "libsefs.so.4.0.4", "parent": "/usr/lib64"}, {"filename": "libSegFault.so", "parent": "/usr/lib64"}, {"filename": "libselinux.so.1", "parent": "/usr/lib64"}, {"filename": "libsemanage.so.1", "parent": "/usr/lib64"}, {"filename": "libsensors.so.4", "parent": "/usr/lib64"}, {"filename": "libsensors.so.4.4.0", "parent": "/usr/lib64"}, {"filename": "libsepol.so.1", "parent": "/usr/lib64"}, {"filename": "libslang.so.2", "parent": "/usr/lib64"}, {"filename": "libslang.so.2.2.4", "parent": "/usr/lib64"}, {"filename": "libslapi-2.4.so.2", "parent": "/usr/lib64"}, {"filename": "libslapi-2.4.so.2.10.7", "parent": "/usr/lib64"}, {"filename": "libsmartcols.so.1", "parent": "/usr/lib64"}, {"filename": "libsmartcols.so.1.1.0", "parent": "/usr/lib64"}, {"filename": "libsmime3.so", "parent": "/usr/lib64"}, {"filename": "libsnappy.so.1", "parent": "/usr/lib64"}, {"filename": "libsnappy.so.1.1.4", "parent": "/usr/lib64"}, {"filename": "libsoftokn3.chk", "parent": "/usr/lib64"}, {"filename": "libsoftokn3.so", "parent": "/usr/lib64"}, {"filename": "libsqlite3.so.0", "parent": "/usr/lib64"}, {"filename": "libsqlite3.so.0.8.6", "parent": "/usr/lib64"}, {"filename": "libssh2.so.1", "parent": "/usr/lib64"}, {"filename": "libssh2.so.1.0.1", "parent": "/usr/lib64"}, {"filename": "libssl3.so", "parent": "/usr/lib64"}, {"filename": "libssl.so.10", "parent": "/usr/lib64"}, {"filename": "libssl.so.1.0.2k", "parent": "/usr/lib64"}, {"filename": "libss.so.2", "parent": "/usr/lib64"}, {"filename": "libss.so.2.0", "parent": "/usr/lib64"}, {"filename": "libstdc++.so.6", "parent": "/usr/lib64"}, {"filename": "libstdc++.so.6.0.19", "parent": "/usr/lib64"}, {"filename": "libsysfs.so.2", "parent": "/usr/lib64"}, {"filename": "libsysfs.so.2.0.1", "parent": "/usr/lib64"}, {"filename": "libsystemd-daemon.so.0", "parent": "/usr/lib64"}, {"filename": "libsystemd-daemon.so.0.0.12", "parent": "/usr/lib64"}, {"filename": "libsystemd-id128.so.0", "parent": "/usr/lib64"}, {"filename": "libsystemd-id128.so.0.0.28", "parent": "/usr/lib64"}, {"filename": "libsystemd-journal.so.0", "parent": "/usr/lib64"}, {"filename": "libsystemd-journal.so.0.11.5", "parent": "/usr/lib64"}, {"filename": "libsystemd-login.so.0", "parent": "/usr/lib64"}, {"filename": "libsystemd-login.so.0.9.3", "parent": "/usr/lib64"}, {"filename": "libsystemd.so.0", "parent": "/usr/lib64"}, {"filename": "libsystemd.so.0.6.0", "parent": "/usr/lib64"}, {"filename": "libtasn1.so.6", "parent": "/usr/lib64"}, {"filename": "libtasn1.so.6.5.3", "parent": "/usr/lib64"}, {"filename": "libteamdctl.so.0", "parent": "/usr/lib64"}, {"filename": "libteamdctl.so.0.1.5", "parent": "/usr/lib64"}, {"filename": "libteam.so.5", "parent": "/usr/lib64"}, {"filename": "libteam.so.5.4.0", "parent": "/usr/lib64"}, {"filename": "libthread_db-1.0.so", "parent": "/usr/lib64"}, {"filename": "libthread_db.so.1", "parent": "/usr/lib64"}, {"filename": "libtic.so.5", "parent": "/usr/lib64"}, {"filename": "libtic.so.5.9", "parent": "/usr/lib64"}, {"filename": "libtinfo.so.5", "parent": "/usr/lib64"}, {"filename": "libtinfo.so.5.9", "parent": "/usr/lib64"}, {"filename": "libtirpc.so.1", "parent": "/usr/lib64"}, {"filename": "libtirpc.so.1.0.10", "parent": "/usr/lib64"}, {"filename": "libudev.so.1", "parent": "/usr/lib64"}, {"filename": "libudev.so.1.6.2", "parent": "/usr/lib64"}, {"filename": "libunistring.so.0", "parent": "/usr/lib64"}, {"filename": "libunistring.so.0.1.2", "parent": "/usr/lib64"}, {"filename": "libuser", "parent": "/usr/lib64"}, {"filename": "libuser.so.1", "parent": "/usr/lib64"}, {"filename": "libuser.so.1.5.0", "parent": "/usr/lib64"}, {"filename": "libustr-1.0.so.1", "parent": "/usr/lib64"}, {"filename": "libustr-1.0.so.1.0.4", "parent": "/usr/lib64"}, {"filename": "libutempter.so.0", "parent": "/usr/lib64"}, {"filename": "libutempter.so.1.1.6", "parent": "/usr/lib64"}, {"filename": "libutil-2.17.so", "parent": "/usr/lib64"}, {"filename": "libutil.so.1", "parent": "/usr/lib64"}, {"filename": "libuuid.so.1", "parent": "/usr/lib64"}, {"filename": "libuuid.so.1.3.0", "parent": "/usr/lib64"}, {"filename": "libverto.so.1", "parent": "/usr/lib64"}, {"filename": "libverto.so.1.0.0", "parent": "/usr/lib64"}, {"filename": "libwrap.so.0", "parent": "/usr/lib64"}, {"filename": "libwrap.so.0.7.6", "parent": "/usr/lib64"}, {"filename": "libxml2.so.2", "parent": "/usr/lib64"}, {"filename": "libxml2.so.2.9.1", "parent": "/usr/lib64"}, {"filename": "libxtables.so.10", "parent": "/usr/lib64"}, {"filename": "libxtables.so.10.0.0", "parent": "/usr/lib64"}, {"filename": "libyajl.so.2", "parent": "/usr/lib64"}, {"filename": "libyajl.so.2.0.4", "parent": "/usr/lib64"}, {"filename": "libyaml-0.so.2", "parent": "/usr/lib64"}, {"filename": "libyaml-0.so.2.0.4", "parent": "/usr/lib64"}, {"filename": "libz.so.1", "parent": "/usr/lib64"}, {"filename": "libz.so.1.2.7", "parent": "/usr/lib64"}, {"filename": "lua", "parent": "/usr/lib64"}, {"filename": "man-db", "parent": "/usr/lib64"}, {"filename": "mysql", "parent": "/usr/lib64"}, {"filename": "NetworkManager", "parent": "/usr/lib64"}, {"filename": "nss", "parent": "/usr/lib64"}, {"filename": "openssl", "parent": "/usr/lib64"}, {"filename": "p11-kit-proxy.so", "parent": "/usr/lib64"}, {"filename": "p11-kit-trust.so", "parent": "/usr/lib64"}, {"filename": "perl5", "parent": "/usr/lib64"}, {"filename": "pkcs11", "parent": "/usr/lib64"}, {"filename": "pkgconfig", "parent": "/usr/lib64"}, {"filename": "plymouth", "parent": "/usr/lib64"}, {"filename": "pm-utils", "parent": "/usr/lib64"}, {"filename": "python2.7", "parent": "/usr/lib64"}, {"filename": "python3.6", "parent": "/usr/lib64"}, {"filename": "rsyslog", "parent": "/usr/lib64"}, {"filename": "rtkaio", "parent": "/usr/lib64"}, {"filename": "ruby", "parent": "/usr/lib64"}, {"filename": "sa", "parent": "/usr/lib64"}, {"filename": "sasl2", "parent": "/usr/lib64"}, {"filename": "security", "parent": "/usr/lib64"}, {"filename": "setools", "parent": "/usr/lib64"}, {"filename": "sse2", "parent": "/usr/lib64"}, {"filename": "tc", "parent": "/usr/lib64"}, {"filename": "tls", "parent": "/usr/lib64"}, {"filename": "X11", "parent": "/usr/lib64"}, {"filename": "xtables", "parent": "/usr/lib64"}, {"filename": "awk", "parent": "/usr/libexec"}, {"filename": "chrony-helper", "parent": "/usr/libexec"}, {"filename": "coreutils", "parent": "/usr/libexec"}, {"filename": "dbus-1", "parent": "/usr/libexec"}, {"filename": "docker", "parent": "/usr/libexec"}, {"filename": "ebtables", "parent": "/usr/libexec"}, {"filename": "getconf", "parent": "/usr/libexec"}, {"filename": "git-core", "parent": "/usr/libexec"}, {"filename": "gnupg-pcsc-wrapper", "parent": "/usr/libexec"}, {"filename": "gpg2keys_curl", "parent": "/usr/libexec"}, {"filename": "gpg2keys_finger", "parent": "/usr/libexec"}, {"filename": "gpg2keys_hkp", "parent": "/usr/libexec"}, {"filename": "gpg2keys_ldap", "parent": "/usr/libexec"}, {"filename": "gpg-check-pattern", "parent": "/usr/libexec"}, {"filename": "gpg-preset-passphrase", "parent": "/usr/libexec"}, {"filename": "gpg-protect-tool", "parent": "/usr/libexec"}, {"filename": "grepconf.sh", "parent": "/usr/libexec"}, {"filename": "grubby", "parent": "/usr/libexec"}, {"filename": "initscripts", "parent": "/usr/libexec"}, {"filename": "linux-boot-probes", "parent": "/usr/libexec"}, {"filename": "man-db", "parent": "/usr/libexec"}, {"filename": "microcode_ctl", "parent": "/usr/libexec"}, {"filename": "newns", "parent": "/usr/libexec"}, {"filename": "nm-dhcp-helper", "parent": "/usr/libexec"}, {"filename": "nm-dispatcher", "parent": "/usr/libexec"}, {"filename": "nm-iface-helper", "parent": "/usr/libexec"}, {"filename": "nm-ifdown", "parent": "/usr/libexec"}, {"filename": "nm-ifup", "parent": "/usr/libexec"}, {"filename": "oci", "parent": "/usr/libexec"}, {"filename": "openldap", "parent": "/usr/libexec"}, {"filename": "openssh", "parent": "/usr/libexec"}, {"filename": "os-probes", "parent": "/usr/libexec"}, {"filename": "p11-kit", "parent": "/usr/libexec"}, {"filename": "platform-python", "parent": "/usr/libexec"}, {"filename": "plymouth", "parent": "/usr/libexec"}, {"filename": "postfix", "parent": "/usr/libexec"}, {"filename": "registries", "parent": "/usr/libexec"}, {"filename": "registries_migrator", "parent": "/usr/libexec"}, {"filename": "selinux", "parent": "/usr/libexec"}, {"filename": "sudo", "parent": "/usr/libexec"}, {"filename": "tuned", "parent": "/usr/libexec"}, {"filename": "urlgrabber-ext-down", "parent": "/usr/libexec"}, {"filename": "utempter", "parent": "/usr/libexec"}, {"filename": "virt-what-cpuid-helper", "parent": "/usr/libexec"}, {"filename": "bin", "parent": "/usr/local"}, {"filename": "etc", "parent": "/usr/local"}, {"filename": "games", "parent": "/usr/local"}, {"filename": "include", "parent": "/usr/local"}, {"filename": "lib", "parent": "/usr/local"}, {"filename": "lib64", "parent": "/usr/local"}, {"filename": "libexec", "parent": "/usr/local"}, {"filename": "sbin", "parent": "/usr/local"}, {"filename": "share", "parent": "/usr/local"}, {"filename": "src", "parent": "/usr/local"}, {"filename": "accessdb", "parent": "/usr/sbin"}, {"filename": "addgnupghome", "parent": "/usr/sbin"}, {"filename": "addpart", "parent": "/usr/sbin"}, {"filename": "adduser", "parent": "/usr/sbin"}, {"filename": "agetty", "parent": "/usr/sbin"}, {"filename": "alternatives", "parent": "/usr/sbin"}, {"filename": "anacron", "parent": "/usr/sbin"}, {"filename": "applygnupgdefaults", "parent": "/usr/sbin"}, {"filename": "arp", "parent": "/usr/sbin"}, {"filename": "arpd", "parent": "/usr/sbin"}, {"filename": "arping", "parent": "/usr/sbin"}, {"filename": "audispd", "parent": "/usr/sbin"}, {"filename": "auditctl", "parent": "/usr/sbin"}, {"filename": "auditd", "parent": "/usr/sbin"}, {"filename": "augenrules", "parent": "/usr/sbin"}, {"filename": "aureport", "parent": "/usr/sbin"}, {"filename": "ausearch", "parent": "/usr/sbin"}, {"filename": "authconfig", "parent": "/usr/sbin"}, {"filename": "authconfig-tui", "parent": "/usr/sbin"}, {"filename": "autrace", "parent": "/usr/sbin"}, {"filename": "avcstat", "parent": "/usr/sbin"}, {"filename": "badblocks", "parent": "/usr/sbin"}, {"filename": "biosdecode", "parent": "/usr/sbin"}, {"filename": "biosdevname", "parent": "/usr/sbin"}, {"filename": "blkdeactivate", "parent": "/usr/sbin"}, {"filename": "blkdiscard", "parent": "/usr/sbin"}, {"filename": "blkid", "parent": "/usr/sbin"}, {"filename": "blockdev", "parent": "/usr/sbin"}, {"filename": "bridge", "parent": "/usr/sbin"}, {"filename": "btrfs", "parent": "/usr/sbin"}, {"filename": "btrfsck", "parent": "/usr/sbin"}, {"filename": "btrfs-convert", "parent": "/usr/sbin"}, {"filename": "btrfs-debug-tree", "parent": "/usr/sbin"}, {"filename": "btrfs-find-root", "parent": "/usr/sbin"}, {"filename": "btrfs-image", "parent": "/usr/sbin"}, {"filename": "btrfs-map-logical", "parent": "/usr/sbin"}, {"filename": "btrfs-select-super", "parent": "/usr/sbin"}, {"filename": "btrfstune", "parent": "/usr/sbin"}, {"filename": "btrfs-zero-log", "parent": "/usr/sbin"}, {"filename": "build-locale-archive", "parent": "/usr/sbin"}, {"filename": "cacertdir_rehash", "parent": "/usr/sbin"}, {"filename": "cache_check", "parent": "/usr/sbin"}, {"filename": "cache_dump", "parent": "/usr/sbin"}, {"filename": "cache_metadata_size", "parent": "/usr/sbin"}, {"filename": "cache_repair", "parent": "/usr/sbin"}, {"filename": "cache_restore", "parent": "/usr/sbin"}, {"filename": "cache_writeback", "parent": "/usr/sbin"}, {"filename": "capsh", "parent": "/usr/sbin"}, {"filename": "cbq", "parent": "/usr/sbin"}, {"filename": "cfdisk", "parent": "/usr/sbin"}, {"filename": "chcpu", "parent": "/usr/sbin"}, {"filename": "chgpasswd", "parent": "/usr/sbin"}, {"filename": "chkconfig", "parent": "/usr/sbin"}, {"filename": "chpasswd", "parent": "/usr/sbin"}, {"filename": "chronyd", "parent": "/usr/sbin"}, {"filename": "chroot", "parent": "/usr/sbin"}, {"filename": "clock", "parent": "/usr/sbin"}, {"filename": "clockdiff", "parent": "/usr/sbin"}, {"filename": "consoletype", "parent": "/usr/sbin"}, {"filename": "cracklib-check", "parent": "/usr/sbin"}, {"filename": "cracklib-format", "parent": "/usr/sbin"}, {"filename": "cracklib-packer", "parent": "/usr/sbin"}, {"filename": "cracklib-unpacker", "parent": "/usr/sbin"}, {"filename": "create-cracklib-dict", "parent": "/usr/sbin"}, {"filename": "crond", "parent": "/usr/sbin"}, {"filename": "ctrlaltdel", "parent": "/usr/sbin"}, {"filename": "ctstat", "parent": "/usr/sbin"}, {"filename": "debugfs", "parent": "/usr/sbin"}, {"filename": "delpart", "parent": "/usr/sbin"}, {"filename": "depmod", "parent": "/usr/sbin"}, {"filename": "devlink", "parent": "/usr/sbin"}, {"filename": "dhclient", "parent": "/usr/sbin"}, {"filename": "dhclient-script", "parent": "/usr/sbin"}, {"filename": "dmeventd", "parent": "/usr/sbin"}, {"filename": "dmfilemapd", "parent": "/usr/sbin"}, {"filename": "dmidecode", "parent": "/usr/sbin"}, {"filename": "dmsetup", "parent": "/usr/sbin"}, {"filename": "dmstats", "parent": "/usr/sbin"}, {"filename": "dracut", "parent": "/usr/sbin"}, {"filename": "dumpe2fs", "parent": "/usr/sbin"}, {"filename": "e2freefrag", "parent": "/usr/sbin"}, {"filename": "e2fsck", "parent": "/usr/sbin"}, {"filename": "e2image", "parent": "/usr/sbin"}, {"filename": "e2label", "parent": "/usr/sbin"}, {"filename": "e2undo", "parent": "/usr/sbin"}, {"filename": "e4defrag", "parent": "/usr/sbin"}, {"filename": "eapol_test", "parent": "/usr/sbin"}, {"filename": "ebtables", "parent": "/usr/sbin"}, {"filename": "ebtables-restore", "parent": "/usr/sbin"}, {"filename": "ebtables-save", "parent": "/usr/sbin"}, {"filename": "era_check", "parent": "/usr/sbin"}, {"filename": "era_dump", "parent": "/usr/sbin"}, {"filename": "era_invalidate", "parent": "/usr/sbin"}, {"filename": "era_restore", "parent": "/usr/sbin"}, {"filename": "ether-wake", "parent": "/usr/sbin"}, {"filename": "ethtool", "parent": "/usr/sbin"}, {"filename": "faillock", "parent": "/usr/sbin"}, {"filename": "fdformat", "parent": "/usr/sbin"}, {"filename": "fdisk", "parent": "/usr/sbin"}, {"filename": "filefrag", "parent": "/usr/sbin"}, {"filename": "findfs", "parent": "/usr/sbin"}, {"filename": "firewalld", "parent": "/usr/sbin"}, {"filename": "fixfiles", "parent": "/usr/sbin"}, {"filename": "fsadm", "parent": "/usr/sbin"}, {"filename": "fsck", "parent": "/usr/sbin"}, {"filename": "fsck.btrfs", "parent": "/usr/sbin"}, {"filename": "fsck.cramfs", "parent": "/usr/sbin"}, {"filename": "fsck.ext2", "parent": "/usr/sbin"}, {"filename": "fsck.ext3", "parent": "/usr/sbin"}, {"filename": "fsck.ext4", "parent": "/usr/sbin"}, {"filename": "fsck.minix", "parent": "/usr/sbin"}, {"filename": "fsck.xfs", "parent": "/usr/sbin"}, {"filename": "fsfreeze", "parent": "/usr/sbin"}, {"filename": "fstrim", "parent": "/usr/sbin"}, {"filename": "fxload", "parent": "/usr/sbin"}, {"filename": "genhomedircon", "parent": "/usr/sbin"}, {"filename": "genhostid", "parent": "/usr/sbin"}, {"filename": "genl", "parent": "/usr/sbin"}, {"filename": "genl-ctrl-list", "parent": "/usr/sbin"}, {"filename": "getcap", "parent": "/usr/sbin"}, {"filename": "getenforce", "parent": "/usr/sbin"}, {"filename": "getpcaps", "parent": "/usr/sbin"}, {"filename": "getsebool", "parent": "/usr/sbin"}, {"filename": "glibc_post_upgrade.x86_64", "parent": "/usr/sbin"}, {"filename": "groupadd", "parent": "/usr/sbin"}, {"filename": "groupdel", "parent": "/usr/sbin"}, {"filename": "groupmems", "parent": "/usr/sbin"}, {"filename": "groupmod", "parent": "/usr/sbin"}, {"filename": "grpck", "parent": "/usr/sbin"}, {"filename": "grpconv", "parent": "/usr/sbin"}, {"filename": "grpunconv", "parent": "/usr/sbin"}, {"filename": "grub2-bios-setup", "parent": "/usr/sbin"}, {"filename": "grub2-get-kernel-settings", "parent": "/usr/sbin"}, {"filename": "grub2-install", "parent": "/usr/sbin"}, {"filename": "grub2-macbless", "parent": "/usr/sbin"}, {"filename": "grub2-mkconfig", "parent": "/usr/sbin"}, {"filename": "grub2-ofpathname", "parent": "/usr/sbin"}, {"filename": "grub2-probe", "parent": "/usr/sbin"}, {"filename": "grub2-reboot", "parent": "/usr/sbin"}, {"filename": "grub2-rpm-sort", "parent": "/usr/sbin"}, {"filename": "grub2-set-default", "parent": "/usr/sbin"}, {"filename": "grub2-setpassword", "parent": "/usr/sbin"}, {"filename": "grub2-sparc64-setup", "parent": "/usr/sbin"}, {"filename": "grubby", "parent": "/usr/sbin"}, {"filename": "halt", "parent": "/usr/sbin"}, {"filename": "hardlink", "parent": "/usr/sbin"}, {"filename": "hwclock", "parent": "/usr/sbin"}, {"filename": "iconvconfig", "parent": "/usr/sbin"}, {"filename": "iconvconfig.x86_64", "parent": "/usr/sbin"}, {"filename": "ifcfg", "parent": "/usr/sbin"}, {"filename": "ifconfig", "parent": "/usr/sbin"}, {"filename": "ifdown", "parent": "/usr/sbin"}, {"filename": "ifenslave", "parent": "/usr/sbin"}, {"filename": "ifstat", "parent": "/usr/sbin"}, {"filename": "ifup", "parent": "/usr/sbin"}, {"filename": "init", "parent": "/usr/sbin"}, {"filename": "insmod", "parent": "/usr/sbin"}, {"filename": "install-info", "parent": "/usr/sbin"}, {"filename": "installkernel", "parent": "/usr/sbin"}, {"filename": "intel-microcode2ucode", "parent": "/usr/sbin"}, {"filename": "ip", "parent": "/usr/sbin"}, {"filename": "ip6tables", "parent": "/usr/sbin"}, {"filename": "ip6tables-restore", "parent": "/usr/sbin"}, {"filename": "ip6tables-save", "parent": "/usr/sbin"}, {"filename": "ipmaddr", "parent": "/usr/sbin"}, {"filename": "iprconfig", "parent": "/usr/sbin"}, {"filename": "iprdbg", "parent": "/usr/sbin"}, {"filename": "iprdump", "parent": "/usr/sbin"}, {"filename": "iprinit", "parent": "/usr/sbin"}, {"filename": "iprsos", "parent": "/usr/sbin"}, {"filename": "iprupdate", "parent": "/usr/sbin"}, {"filename": "ipset", "parent": "/usr/sbin"}, {"filename": "iptables", "parent": "/usr/sbin"}, {"filename": "iptables-restore", "parent": "/usr/sbin"}, {"filename": "iptables-save", "parent": "/usr/sbin"}, {"filename": "iptunnel", "parent": "/usr/sbin"}, {"filename": "irqbalance", "parent": "/usr/sbin"}, {"filename": "kexec", "parent": "/usr/sbin"}, {"filename": "killall5", "parent": "/usr/sbin"}, {"filename": "kpartx", "parent": "/usr/sbin"}, {"filename": "lchage", "parent": "/usr/sbin"}, {"filename": "ldattach", "parent": "/usr/sbin"}, {"filename": "ldconfig", "parent": "/usr/sbin"}, {"filename": "lgroupadd", "parent": "/usr/sbin"}, {"filename": "lgroupdel", "parent": "/usr/sbin"}, {"filename": "lgroupmod", "parent": "/usr/sbin"}, {"filename": "lid", "parent": "/usr/sbin"}, {"filename": "lnewusers", "parent": "/usr/sbin"}, {"filename": "lnstat", "parent": "/usr/sbin"}, {"filename": "load_policy", "parent": "/usr/sbin"}, {"filename": "logrotate", "parent": "/usr/sbin"}, {"filename": "logsave", "parent": "/usr/sbin"}, {"filename": "losetup", "parent": "/usr/sbin"}, {"filename": "lpasswd", "parent": "/usr/sbin"}, {"filename": "lsmod", "parent": "/usr/sbin"}, {"filename": "lsof", "parent": "/usr/sbin"}, {"filename": "luseradd", "parent": "/usr/sbin"}, {"filename": "luserdel", "parent": "/usr/sbin"}, {"filename": "lusermod", "parent": "/usr/sbin"}, {"filename": "lvchange", "parent": "/usr/sbin"}, {"filename": "lvconvert", "parent": "/usr/sbin"}, {"filename": "lvcreate", "parent": "/usr/sbin"}, {"filename": "lvdisplay", "parent": "/usr/sbin"}, {"filename": "lvextend", "parent": "/usr/sbin"}, {"filename": "lvm", "parent": "/usr/sbin"}, {"filename": "lvmconf", "parent": "/usr/sbin"}, {"filename": "lvmconfig", "parent": "/usr/sbin"}, {"filename": "lvmdiskscan", "parent": "/usr/sbin"}, {"filename": "lvmdump", "parent": "/usr/sbin"}, {"filename": "lvmetad", "parent": "/usr/sbin"}, {"filename": "lvmpolld", "parent": "/usr/sbin"}, {"filename": "lvmsadc", "parent": "/usr/sbin"}, {"filename": "lvmsar", "parent": "/usr/sbin"}, {"filename": "lvreduce", "parent": "/usr/sbin"}, {"filename": "lvremove", "parent": "/usr/sbin"}, {"filename": "lvrename", "parent": "/usr/sbin"}, {"filename": "lvresize", "parent": "/usr/sbin"}, {"filename": "lvs", "parent": "/usr/sbin"}, {"filename": "lvscan", "parent": "/usr/sbin"}, {"filename": "makedumpfile", "parent": "/usr/sbin"}, {"filename": "matchpathcon", "parent": "/usr/sbin"}, {"filename": "mii-diag", "parent": "/usr/sbin"}, {"filename": "mii-tool", "parent": "/usr/sbin"}, {"filename": "mkdict", "parent": "/usr/sbin"}, {"filename": "mkdumprd", "parent": "/usr/sbin"}, {"filename": "mke2fs", "parent": "/usr/sbin"}, {"filename": "mkfs", "parent": "/usr/sbin"}, {"filename": "mkfs.btrfs", "parent": "/usr/sbin"}, {"filename": "mkfs.cramfs", "parent": "/usr/sbin"}, {"filename": "mkfs.ext2", "parent": "/usr/sbin"}, {"filename": "mkfs.ext3", "parent": "/usr/sbin"}, {"filename": "mkfs.ext4", "parent": "/usr/sbin"}, {"filename": "mkfs.minix", "parent": "/usr/sbin"}, {"filename": "mkfs.xfs", "parent": "/usr/sbin"}, {"filename": "mkhomedir_helper", "parent": "/usr/sbin"}, {"filename": "mklost+found", "parent": "/usr/sbin"}, {"filename": "mkswap", "parent": "/usr/sbin"}, {"filename": "modinfo", "parent": "/usr/sbin"}, {"filename": "modprobe", "parent": "/usr/sbin"}, {"filename": "nameif", "parent": "/usr/sbin"}, {"filename": "netreport", "parent": "/usr/sbin"}, {"filename": "NetworkManager", "parent": "/usr/sbin"}, {"filename": "new-kernel-pkg", "parent": "/usr/sbin"}, {"filename": "newusers", "parent": "/usr/sbin"}, {"filename": "nft", "parent": "/usr/sbin"}, {"filename": "nl-class-add", "parent": "/usr/sbin"}, {"filename": "nl-class-delete", "parent": "/usr/sbin"}, {"filename": "nl-classid-lookup", "parent": "/usr/sbin"}, {"filename": "nl-class-list", "parent": "/usr/sbin"}, {"filename": "nl-cls-add", "parent": "/usr/sbin"}, {"filename": "nl-cls-delete", "parent": "/usr/sbin"}, {"filename": "nl-cls-list", "parent": "/usr/sbin"}, {"filename": "nl-link-list", "parent": "/usr/sbin"}, {"filename": "nl-pktloc-lookup", "parent": "/usr/sbin"}, {"filename": "nl-qdisc-add", "parent": "/usr/sbin"}, {"filename": "nl-qdisc-delete", "parent": "/usr/sbin"}, {"filename": "nl-qdisc-list", "parent": "/usr/sbin"}, {"filename": "nologin", "parent": "/usr/sbin"}, {"filename": "nstat", "parent": "/usr/sbin"}, {"filename": "ownership", "parent": "/usr/sbin"}, {"filename": "packer", "parent": "/usr/sbin"}, {"filename": "pam_console_apply", "parent": "/usr/sbin"}, {"filename": "pam_tally2", "parent": "/usr/sbin"}, {"filename": "pam_timestamp_check", "parent": "/usr/sbin"}, {"filename": "parted", "parent": "/usr/sbin"}, {"filename": "partprobe", "parent": "/usr/sbin"}, {"filename": "partx", "parent": "/usr/sbin"}, {"filename": "pdata_tools", "parent": "/usr/sbin"}, {"filename": "pidof", "parent": "/usr/sbin"}, {"filename": "ping6", "parent": "/usr/sbin"}, {"filename": "pivot_root", "parent": "/usr/sbin"}, {"filename": "plipconfig", "parent": "/usr/sbin"}, {"filename": "plymouthd", "parent": "/usr/sbin"}, {"filename": "plymouth-set-default-theme", "parent": "/usr/sbin"}, {"filename": "postalias", "parent": "/usr/sbin"}, {"filename": "postcat", "parent": "/usr/sbin"}, {"filename": "postconf", "parent": "/usr/sbin"}, {"filename": "postdrop", "parent": "/usr/sbin"}, {"filename": "postfix", "parent": "/usr/sbin"}, {"filename": "postkick", "parent": "/usr/sbin"}, {"filename": "postlock", "parent": "/usr/sbin"}, {"filename": "postlog", "parent": "/usr/sbin"}, {"filename": "postmap", "parent": "/usr/sbin"}, {"filename": "postmulti", "parent": "/usr/sbin"}, {"filename": "postqueue", "parent": "/usr/sbin"}, {"filename": "postsuper", "parent": "/usr/sbin"}, {"filename": "poweroff", "parent": "/usr/sbin"}, {"filename": "ppp-watch", "parent": "/usr/sbin"}, {"filename": "pvchange", "parent": "/usr/sbin"}, {"filename": "pvck", "parent": "/usr/sbin"}, {"filename": "pvcreate", "parent": "/usr/sbin"}, {"filename": "pvdisplay", "parent": "/usr/sbin"}, {"filename": "pvmove", "parent": "/usr/sbin"}, {"filename": "pvremove", "parent": "/usr/sbin"}, {"filename": "pvresize", "parent": "/usr/sbin"}, {"filename": "pvs", "parent": "/usr/sbin"}, {"filename": "pvscan", "parent": "/usr/sbin"}, {"filename": "pwck", "parent": "/usr/sbin"}, {"filename": "pwconv", "parent": "/usr/sbin"}, {"filename": "pwhistory_helper", "parent": "/usr/sbin"}, {"filename": "pwunconv", "parent": "/usr/sbin"}, {"filename": "rdisc", "parent": "/usr/sbin"}, {"filename": "rdma", "parent": "/usr/sbin"}, {"filename": "readprofile", "parent": "/usr/sbin"}, {"filename": "reboot", "parent": "/usr/sbin"}, {"filename": "resize2fs", "parent": "/usr/sbin"}, {"filename": "resizepart", "parent": "/usr/sbin"}, {"filename": "restorecon", "parent": "/usr/sbin"}, {"filename": "rmmod", "parent": "/usr/sbin"}, {"filename": "route", "parent": "/usr/sbin"}, {"filename": "routef", "parent": "/usr/sbin"}, {"filename": "routel", "parent": "/usr/sbin"}, {"filename": "rsyslogd", "parent": "/usr/sbin"}, {"filename": "rtacct", "parent": "/usr/sbin"}, {"filename": "rtcwake", "parent": "/usr/sbin"}, {"filename": "rtmon", "parent": "/usr/sbin"}, {"filename": "rtpr", "parent": "/usr/sbin"}, {"filename": "rtstat", "parent": "/usr/sbin"}, {"filename": "runlevel", "parent": "/usr/sbin"}, {"filename": "runuser", "parent": "/usr/sbin"}, {"filename": "sasldblistusers2", "parent": "/usr/sbin"}, {"filename": "saslpasswd2", "parent": "/usr/sbin"}, {"filename": "sefcontext_compile", "parent": "/usr/sbin"}, {"filename": "selabel_digest", "parent": "/usr/sbin"}, {"filename": "selabel_lookup", "parent": "/usr/sbin"}, {"filename": "selabel_lookup_best_match", "parent": "/usr/sbin"}, {"filename": "selabel_partial_match", "parent": "/usr/sbin"}, {"filename": "selinuxconlist", "parent": "/usr/sbin"}, {"filename": "selinuxdefcon", "parent": "/usr/sbin"}, {"filename": "selinuxenabled", "parent": "/usr/sbin"}, {"filename": "selinuxexeccon", "parent": "/usr/sbin"}, {"filename": "selinux_restorecon", "parent": "/usr/sbin"}, {"filename": "semanage", "parent": "/usr/sbin"}, {"filename": "semodule", "parent": "/usr/sbin"}, {"filename": "sendmail", "parent": "/usr/sbin"}, {"filename": "sendmail.postfix", "parent": "/usr/sbin"}, {"filename": "service", "parent": "/usr/sbin"}, {"filename": "sestatus", "parent": "/usr/sbin"}, {"filename": "setcap", "parent": "/usr/sbin"}, {"filename": "setenforce", "parent": "/usr/sbin"}, {"filename": "setfiles", "parent": "/usr/sbin"}, {"filename": "setsebool", "parent": "/usr/sbin"}, {"filename": "sfdisk", "parent": "/usr/sbin"}, {"filename": "shutdown", "parent": "/usr/sbin"}, {"filename": "slattach", "parent": "/usr/sbin"}, {"filename": "sln", "parent": "/usr/sbin"}, {"filename": "smtp-sink", "parent": "/usr/sbin"}, {"filename": "smtp-source", "parent": "/usr/sbin"}, {"filename": "ss", "parent": "/usr/sbin"}, {"filename": "sshd", "parent": "/usr/sbin"}, {"filename": "sshd-keygen", "parent": "/usr/sbin"}, {"filename": "sulogin", "parent": "/usr/sbin"}, {"filename": "sushell", "parent": "/usr/sbin"}, {"filename": "swaplabel", "parent": "/usr/sbin"}, {"filename": "swapoff", "parent": "/usr/sbin"}, {"filename": "swapon", "parent": "/usr/sbin"}, {"filename": "switch_root", "parent": "/usr/sbin"}, {"filename": "sysctl", "parent": "/usr/sbin"}, {"filename": "sys-unconfig", "parent": "/usr/sbin"}, {"filename": "tc", "parent": "/usr/sbin"}, {"filename": "telinit", "parent": "/usr/sbin"}, {"filename": "thin_check", "parent": "/usr/sbin"}, {"filename": "thin_delta", "parent": "/usr/sbin"}, {"filename": "thin_dump", "parent": "/usr/sbin"}, {"filename": "thin_ls", "parent": "/usr/sbin"}, {"filename": "thin_metadata_size", "parent": "/usr/sbin"}, {"filename": "thin_repair", "parent": "/usr/sbin"}, {"filename": "thin_restore", "parent": "/usr/sbin"}, {"filename": "thin_rmap", "parent": "/usr/sbin"}, {"filename": "thin_trim", "parent": "/usr/sbin"}, {"filename": "tracepath", "parent": "/usr/sbin"}, {"filename": "tracepath6", "parent": "/usr/sbin"}, {"filename": "tune2fs", "parent": "/usr/sbin"}, {"filename": "tuned", "parent": "/usr/sbin"}, {"filename": "tuned-adm", "parent": "/usr/sbin"}, {"filename": "udevadm", "parent": "/usr/sbin"}, {"filename": "unix_chkpwd", "parent": "/usr/sbin"}, {"filename": "unix_update", "parent": "/usr/sbin"}, {"filename": "update-alternatives", "parent": "/usr/sbin"}, {"filename": "useradd", "parent": "/usr/sbin"}, {"filename": "userdel", "parent": "/usr/sbin"}, {"filename": "usermod", "parent": "/usr/sbin"}, {"filename": "usernetctl", "parent": "/usr/sbin"}, {"filename": "vgcfgbackup", "parent": "/usr/sbin"}, {"filename": "vgcfgrestore", "parent": "/usr/sbin"}, {"filename": "vgchange", "parent": "/usr/sbin"}, {"filename": "vgck", "parent": "/usr/sbin"}, {"filename": "vgconvert", "parent": "/usr/sbin"}, {"filename": "vgcreate", "parent": "/usr/sbin"}, {"filename": "vgdisplay", "parent": "/usr/sbin"}, {"filename": "vgexport", "parent": "/usr/sbin"}, {"filename": "vgextend", "parent": "/usr/sbin"}, {"filename": "vgimport", "parent": "/usr/sbin"}, {"filename": "vgimportclone", "parent": "/usr/sbin"}, {"filename": "vgmerge", "parent": "/usr/sbin"}, {"filename": "vgmknodes", "parent": "/usr/sbin"}, {"filename": "vgreduce", "parent": "/usr/sbin"}, {"filename": "vgremove", "parent": "/usr/sbin"}, {"filename": "vgrename", "parent": "/usr/sbin"}, {"filename": "vgs", "parent": "/usr/sbin"}, {"filename": "vgscan", "parent": "/usr/sbin"}, {"filename": "vgsplit", "parent": "/usr/sbin"}, {"filename": "vigr", "parent": "/usr/sbin"}, {"filename": "vipw", "parent": "/usr/sbin"}, {"filename": "virt-what", "parent": "/usr/sbin"}, {"filename": "visudo", "parent": "/usr/sbin"}, {"filename": "vmcore-dmesg", "parent": "/usr/sbin"}, {"filename": "vpddecode", "parent": "/usr/sbin"}, {"filename": "weak-modules", "parent": "/usr/sbin"}, {"filename": "wipefs", "parent": "/usr/sbin"}, {"filename": "wpa_cli", "parent": "/usr/sbin"}, {"filename": "wpa_passphrase", "parent": "/usr/sbin"}, {"filename": "wpa_supplicant", "parent": "/usr/sbin"}, {"filename": "xfs_admin", "parent": "/usr/sbin"}, {"filename": "xfs_bmap", "parent": "/usr/sbin"}, {"filename": "xfs_copy", "parent": "/usr/sbin"}, {"filename": "xfs_db", "parent": "/usr/sbin"}, {"filename": "xfs_estimate", "parent": "/usr/sbin"}, {"filename": "xfs_freeze", "parent": "/usr/sbin"}, {"filename": "xfs_fsr", "parent": "/usr/sbin"}, {"filename": "xfs_growfs", "parent": "/usr/sbin"}, {"filename": "xfs_info", "parent": "/usr/sbin"}, {"filename": "xfs_io", "parent": "/usr/sbin"}, {"filename": "xfs_logprint", "parent": "/usr/sbin"}, {"filename": "xfs_mdrestore", "parent": "/usr/sbin"}, {"filename": "xfs_metadump", "parent": "/usr/sbin"}, {"filename": "xfs_mkfile", "parent": "/usr/sbin"}, {"filename": "xfs_ncheck", "parent": "/usr/sbin"}, {"filename": "xfs_quota", "parent": "/usr/sbin"}, {"filename": "xfs_repair", "parent": "/usr/sbin"}, {"filename": "xfs_rtcp", "parent": "/usr/sbin"}, {"filename": "xtables-multi", "parent": "/usr/sbin"}, {"filename": "zdump", "parent": "/usr/sbin"}, {"filename": "zic", "parent": "/usr/sbin"}, {"filename": "zramctl", "parent": "/usr/sbin"}, {"filename": "aclocal", "parent": "/usr/share"}, {"filename": "alsa", "parent": "/usr/share"}, {"filename": "anaconda", "parent": "/usr/share"}, {"filename": "applications", "parent": "/usr/share"}, {"filename": "augeas", "parent": "/usr/share"}, {"filename": "authconfig", "parent": "/usr/share"}, {"filename": "awk", "parent": "/usr/share"}, {"filename": "backgrounds", "parent": "/usr/share"}, {"filename": "bash-completion", "parent": "/usr/share"}, {"filename": "centos-logos", "parent": "/usr/share"}, {"filename": "centos-release", "parent": "/usr/share"}, {"filename": "containers", "parent": "/usr/share"}, {"filename": "container-storage-setup", "parent": "/usr/share"}, {"filename": "cracklib", "parent": "/usr/share"}, {"filename": "dbus-1", "parent": "/usr/share"}, {"filename": "desktop-directories", "parent": "/usr/share"}, {"filename": "dict", "parent": "/usr/share"}, {"filename": "doc", "parent": "/usr/share"}, {"filename": "empty", "parent": "/usr/share"}, {"filename": "file", "parent": "/usr/share"}, {"filename": "firewalld", "parent": "/usr/share"}, {"filename": "firstboot", "parent": "/usr/share"}, {"filename": "fish", "parent": "/usr/share"}, {"filename": "games", "parent": "/usr/share"}, {"filename": "gcc-4.8.2", "parent": "/usr/share"}, {"filename": "gcc-4.8.5", "parent": "/usr/share"}, {"filename": "gdb", "parent": "/usr/share"}, {"filename": "gems", "parent": "/usr/share"}, {"filename": "GeoIP", "parent": "/usr/share"}, {"filename": "gettext", "parent": "/usr/share"}, {"filename": "gettext-0.19.8", "parent": "/usr/share"}, {"filename": "ghostscript", "parent": "/usr/share"}, {"filename": "git-core", "parent": "/usr/share"}, {"filename": "glib-2.0", "parent": "/usr/share"}, {"filename": "gnome", "parent": "/usr/share"}, {"filename": "gnome-background-properties", "parent": "/usr/share"}, {"filename": "gnupg", "parent": "/usr/share"}, {"filename": "groff", "parent": "/usr/share"}, {"filename": "grub", "parent": "/usr/share"}, {"filename": "hwdata", "parent": "/usr/share"}, {"filename": "i18n", "parent": "/usr/share"}, {"filename": "icons", "parent": "/usr/share"}, {"filename": "idl", "parent": "/usr/share"}, {"filename": "info", "parent": "/usr/share"}, {"filename": "kde4", "parent": "/usr/share"}, {"filename": "kdump", "parent": "/usr/share"}, {"filename": "libdrm", "parent": "/usr/share"}, {"filename": "licenses", "parent": "/usr/share"}, {"filename": "locale", "parent": "/usr/share"}, {"filename": "lua", "parent": "/usr/share"}, {"filename": "magic", "parent": "/usr/share"}, {"filename": "man", "parent": "/usr/share"}, {"filename": "microcode_ctl", "parent": "/usr/share"}, {"filename": "mime", "parent": "/usr/share"}, {"filename": "mime-info", "parent": "/usr/share"}, {"filename": "misc", "parent": "/usr/share"}, {"filename": "mysql", "parent": "/usr/share"}, {"filename": "oci-umount", "parent": "/usr/share"}, {"filename": "omf", "parent": "/usr/share"}, {"filename": "os-prober", "parent": "/usr/share"}, {"filename": "p11-kit", "parent": "/usr/share"}, {"filename": "perl5", "parent": "/usr/share"}, {"filename": "pixmaps", "parent": "/usr/share"}, {"filename": "pkgconfig", "parent": "/usr/share"}, {"filename": "pki", "parent": "/usr/share"}, {"filename": "plymouth", "parent": "/usr/share"}, {"filename": "polkit-1", "parent": "/usr/share"}, {"filename": "redhat-release", "parent": "/usr/share"}, {"filename": "rhel", "parent": "/usr/share"}, {"filename": "ruby", "parent": "/usr/share"}, {"filename": "rubygems", "parent": "/usr/share"}, {"filename": "selinux", "parent": "/usr/share"}, {"filename": "setools-3.3", "parent": "/usr/share"}, {"filename": "sounds", "parent": "/usr/share"}, {"filename": "systemd", "parent": "/usr/share"}, {"filename": "systemtap", "parent": "/usr/share"}, {"filename": "tabset", "parent": "/usr/share"}, {"filename": "terminfo", "parent": "/usr/share"}, {"filename": "themes", "parent": "/usr/share"}, {"filename": "tuned", "parent": "/usr/share"}, {"filename": "vim", "parent": "/usr/share"}, {"filename": "wallpapers", "parent": "/usr/share"}, {"filename": "X11", "parent": "/usr/share"}, {"filename": "xsessions", "parent": "/usr/share"}, {"filename": "yum-cli", "parent": "/usr/share"}, {"filename": "yum-plugins", "parent": "/usr/share"}, {"filename": "zoneinfo", "parent": "/usr/share"}, {"filename": "zsh", "parent": "/usr/share"}, {"filename": "debug", "parent": "/usr/src"}, {"filename": "kernels", "parent": "/usr/src"}, {"filename": "systemd-private-016de60725a3426792b93fc9f120b8f0-chronyd.service-tyiZnb", "parent": "/usr/tmp"}, {"filename": "systemd-private-a30a5a178daa4042b42dfaf5ff9e5f68-chronyd.service-kNkgrh", "parent": "/usr/tmp"}, {"filename": "systemd-private-c51794087e5c40a6b6c1f3c8d6f8d165-chronyd.service-7F85gb", "parent": "/usr/tmp"}, {"filename": "systemd-private-fb5d5fbcee6d42cebf6a728f920bd2f4-chronyd.service-xqvG43", "parent": "/usr/tmp"}] jc-1.17.3/tests/fixtures/centos-7.7/ls-glob.out000066400000000000000000000530401415226333200211110ustar00rootroot00000000000000/usr/bin: [ a2p addr2line alias apropos ar arch as aserver audit2allow audit2why aulast aulastlog ausyscall auvirt awk base64 basename bash bashbug bashbug-64 bg bond2team bootctl busctl c2ph cal ca-legacy captoinfo cat catchsegv catman cd centrino-decode certutil c++filt chacl chage chattr chcat chcon checkmodule checkpolicy chfn chgrp chmem chmod chown chronyc chrt chsh chvt cifsiostat cksum clear cmp cmsutil col colcrt colrm column comm command container-storage-setup coredumpctl cp cpio cpupower crlutil crontab csplit csslint-0.6 curl cut cvtsudoers date db_archive db_checkpoint db_deadlock db_dump db_dump185 db_hotbackup db_load db_log_verify db_printlog db_recover db_replicate db_stat db_tuner db_upgrade dbus-binding-tool dbus-cleanup-sockets dbus-daemon dbus-monitor dbus-run-session dbus-send dbus-test-tool dbus-update-activation-environment dbus-uuidgen db_verify dd deallocvt delv df dgawk diff diff3 dig dir dircolors dirname dmesg dnsdomainname docker docker-containerd docker-containerd-current docker-containerd-shim docker-containerd-shim-current docker-ctr-current docker-current dockerd dockerd-current docker-storage-setup domainname dracut du dumpkeys dwp easy_install easy_install-2.7 easy_install-3.6 echo egrep eject elfedit env envsubst eqn erb ex expand expr factor fallocate false fc fg fgconsole fgrep file find find2perl findmnt fipscheck fipshmac firewall-cmd firewall-offline-cmd flock fmt fold free funzip gapplication gawk gdbus gem gencat genl-ctrl-list geoiplookup geoiplookup6 geoipupdate geqn getconf getent getfacl getkeycodes getopt getopts gettext gettext.sh gio gio-querymodules-64 git git-receive-pack git-shell git-upload-archive git-upload-pack glib-compile-schemas gmake gneqn gnroff gpasswd gpg gpg2 gpg-agent gpgconf gpg-connect-agent gpg-error gpgparsemail gpgsplit gpgv gpgv2 gpg-zip gpic gprof grep groff grops grotty groups grub2-editenv grub2-file grub2-fstest grub2-glue-efi grub2-kbdcomp grub2-menulst2cfg grub2-mkfont grub2-mkimage grub2-mklayout grub2-mknetdir grub2-mkpasswd-pbkdf2 grub2-mkrelpath grub2-mkrescue grub2-mkstandalone grub2-render-label grub2-script-check grub2-syslinux2cfg gsettings gsoelim gtar gtbl gtroff gunzip gzexe gzip h2ph hdsploader head hexdump host hostid hostname hostnamectl i386 iconv id idiag-socket-details idn igawk info infocmp infokey infotocap install ionice iostat ipcalc ipcmk ipcrm ipcs iptables-xml irb isosize jobs join journalctl json_reformat json_verify kbdinfo kbd_mode kbdrate kdumpctl kernel-install kill kmod last lastb lastlog lchfn lchsh ld ld.bfd ldd ld.gold less lessecho lesskey lesspipe.sh lexgrog link linux32 linux64 linux-boot-prober ln loadkeys loadunimap locale localectl localedef logger login loginctl logname look ls lsattr lsblk lscpu lsinitrd lsipc lslocks lslogins lsmem lsns lsscsi lua luac lz4 lz4c lz4cat machinectl mailq mailq.postfix make makedb man mandb manpath mapscrn mcookie md5sum mdig mesg mixartloader mkdir mkfifo mkinitrd mknod mktemp modutil more mount mountpoint mpstat msgattrib msgcat msgcmp msgcomm msgconv msgen msgexec msgfilter msgfmt msggrep msghack msginit msgmerge msgunfmt msguniq mv namei ndptool neqn netstat newaliases newaliases.postfix newgidmap newgrp newuidmap nf-ct-add nf-ct-list nf-exp-add nf-exp-delete nf-exp-list nf-log nf-monitor nf-queue nfsiostat-sysstat ngettext nice nisdomainname nl nl-addr-add nl-addr-delete nl-addr-list nl-class-add nl-class-delete nl-classid-lookup nl-class-list nl-cls-add nl-cls-delete nl-cls-list nl-fib-lookup nl-link-enslave nl-link-ifindex2name nl-link-list nl-link-name2ifindex nl-link-release nl-link-set nl-link-stats nl-list-caches nl-list-sockets nl-monitor nl-neigh-add nl-neigh-delete nl-neigh-list nl-neightbl-list nl-pktloc-lookup nl-qdisc-add nl-qdisc-delete nl-qdisc-list nl-route-add nl-route-delete nl-route-get nl-route-list nl-rule-list nl-tctree-list nl-util-addr nm nmcli nm-online nmtui nmtui-connect nmtui-edit nmtui-hostname nohup nproc nroff nsenter nslookup nss-policy-check nsupdate numfmt objcopy objdump od oldfind open openssl openvt os-prober p11-kit passwd paste pathchk pchrt perl perl5.16.3 perlbug perldoc perlthanks pflags pgawk pgrep pic piconv pidstat pinentry pinentry-curses ping ping6 pinky pip3 pip-3 pip-3.6 pip3.6 pk12util pkaction pkcheck pkexec pkg-config pkill pkla-admin-identities pkla-check-authorization pkttyagent pl2pm pldd plymouth pmap pod2html pod2man pod2text pod2usage post-grohtml powernow-k8-decode pr preconv pre-grohtml printenv printf prlimit ps psed psfaddtable psfgettable psfstriptable psfxtable pstruct ptaskset ptx pwd pwdx pwmake pwscore pydoc pydoc3 pydoc3.6 python python2 python2.7 python3 python3.6 python3.6m pyvenv pyvenv-3.6 ranlib raw rdoc read readelf readlink realpath recode-sr-latin rename renice reset resizecons rev ri rm rmail rmail.postfix rmdir rpcgen rpm rpm2cpio rpmdb rpmkeys rpmquery rpmverify rsync rsyslog-recover-qi.pl ruby runcon run-parts rvi rview s2p sadf sandbox sar scp script scriptreplay sdiff secon sed sedismod sedispol semodule_package seq setarch setfacl setfont setkeycodes setleds setmetamode setpriv setsid setterm setup-nsssysinit setup-nsssysinit.sh setvtrgb sftp sg sh sha1sum sha224sum sha256sum sha384sum sha512sum showconsolefont showkey shred shuf signver size skill slabtop sleep slogin snice soelim sort sotruss splain split sprof sqlite3 ssh ssh-add ssh-agent ssh-copy-id ssh-keygen ssh-keyscan ssltap stat stdbuf strings strip stty su sudo sudoedit sudoreplay sum sync systemctl systemd-analyze systemd-ask-password systemd-cat systemd-cgls systemd-cgtop systemd-coredumpctl systemd-delta systemd-detect-virt systemd-escape systemd-firstboot systemd-hwdb systemd-inhibit systemd-loginctl systemd-machine-id-setup systemd-notify systemd-nspawn systemd-path systemd-run systemd-stdio-bridge systemd-sysv-convert systemd-tmpfiles systemd-tty-ask-password-agent tabs tac tail tailf tapestat tar taskset tbl teamd teamdctl teamnl tee test testgdbm testrb tic timedatectl timeout tload tmon toe top touch tput tr tracepath tracepath6 troff true truncate trust tset tsort tty turbostat tzselect udevadm ul umask umount unalias uname unexpand unicode_start unicode_stop uniq unlink unlz4 unshare unxz unzip unzipsfx update-ca-trust update-mime-database uptime urlgrabber users usleep usx2yloader utmpdump uuidgen vdir vi view vlock vmstat vxloader w wait wall watch watchgnupg wc wdctl whatis whereis which whiptail who whoami write x86_64 x86_energy_perf_policy xargs xgettext xmlcatalog xmllint xmlwf xz xzcat xzcmp xzdec xzdiff xzegrep xzfgrep xzgrep xzless xzmore yes ypdomainname yum zcat zcmp zdiff zegrep zfgrep zforce zgrep zipgrep zipinfo zless zmore znew zsoelim /usr/etc: /usr/games: /usr/include: python2.7 python3.6m /usr/lib: binfmt.d debug dracut firewalld firmware games gems grub kbd kdump kernel locale modprobe.d modules modules-load.d NetworkManager polkit-1 python2.7 python3.6 rpm sendmail sendmail.postfix sse2 sysctl.d systemd tmpfiles.d tuned udev yum-plugins /usr/lib64: audit bind9-export cracklib_dict.hwm cracklib_dict.pwd cracklib_dict.pwi dbus-1 device-mapper ebtables elfutils fipscheck games gconv gems gettext gio girepository-1.0 krb5 ld-2.17.so ld-linux-x86-64.so.2 libacl.so.1 libacl.so.1.1.0 libaio.so.1 libaio.so.1.0.0 libaio.so.1.0.1 libanl-2.17.so libanl.so.1 libapol.so.4 libapol.so.4.4 libasm-0.176.so libasm.so.1 libasound.so.2 libasound.so.2.0.0 libasprintf.so.0 libasprintf.so.0.0.0 libassuan.so.0 libassuan.so.0.4.0 libattr.so.1 libattr.so.1.1.0 libaudit.so.1 libaudit.so.1.0.0 libauparse.so.0 libauparse.so.0.0.0 libbfd-2.27-41.base.el7.so libbind9.so.160 libbind9.so.160.0.8 libblkid.so.1 libblkid.so.1.1.0 libBrokenLocale-2.17.so libBrokenLocale.so.1 libbtrfs.so.0 libbtrfs.so.0.1 libbz2.so.1 libbz2.so.1.0.6 libc-2.17.so libcap-ng.so.0 libcap-ng.so.0.0.0 libcap.so.2 libcap.so.2.22 libcgroup.so.1 libcgroup.so.1.0.41 libcidn-2.17.so libcidn.so.1 libcom_err.so.2 libcom_err.so.2.1 libcpupower.so.0 libcpupower.so.0.0.0 libcrack.so.2 libcrack.so.2.9.0 libcroco-0.6.so.3 libcroco-0.6.so.3.0.1 libcrypt-2.17.so libcrypto.so.10 libcrypto.so.1.0.2k libcryptsetup.so.12 libcryptsetup.so.12.3.0 libcryptsetup.so.4 libcryptsetup.so.4.7.0 libcrypt.so.1 libc.so.6 libcurl.so.4 libcurl.so.4.3.0 libdaemon.so.0 libdaemon.so.0.5.0 libdb-5.3.so libdb-5.so libdbus-1.so.3 libdbus-1.so.3.14.14 libdbus-glib-1.so.2 libdbus-glib-1.so.2.2.2 libdevmapper-event-lvm2mirror.so libdevmapper-event-lvm2raid.so libdevmapper-event-lvm2snapshot.so libdevmapper-event-lvm2.so.2.02 libdevmapper-event-lvm2thin.so libdevmapper-event-lvm2vdo.so libdevmapper-event.so.1.02 libdevmapper.so.1.02 libdhcpctl.so.0 libdhcpctl.so.0.0.0 libdl-2.17.so libdl.so.2 libdns.so.1102 libdns.so.1102.1.2 libdrm_amdgpu.so.1 libdrm_amdgpu.so.1.0.0 libdrm_intel.so.1 libdrm_intel.so.1.0.0 libdrm_nouveau.so.2 libdrm_nouveau.so.2.0.0 libdrm_radeon.so.1 libdrm_radeon.so.1.0.1 libdrm.so.2 libdrm.so.2.4.0 libdw-0.176.so libdw.so.1 libe2p.so.2 libe2p.so.2.3 libebtc.so libedit.so.0 libedit.so.0.0.42 libelf-0.176.so libelf.so.1 libestr.so.0 libestr.so.0.0.0 libexpat.so.1 libexpat.so.1.6.0 libext2fs.so.2 libext2fs.so.2.4 libfastjson.so.4 libfastjson.so.4.0.0 libffi.so.6 libffi.so.6.0.1 libfipscheck.so.1 libfipscheck.so.1.2.1 libform.so.5 libform.so.5.9 libformw.so.5 libformw.so.5.9 libfreebl3.chk libfreebl3.so libfreeblpriv3.chk libfreeblpriv3.so libfreetype.so.6 libfreetype.so.6.14.0 libgcc_s-4.8.5-20150702.so.1 libgcc_s.so.1 libgcrypt.so.11 libgcrypt.so.11.8.2 libgdbm_compat.so.4 libgdbm_compat.so.4.0.0 libgdbm.so.4 libgdbm.so.4.0.0 libGeoIP.so.1 libGeoIP.so.1.5.0 libgettextlib-0.19.8.1.so libgettextpo.so.0 libgettextpo.so.0.5.4 libgettextsrc-0.19.8.1.so libgio-2.0.so.0 libgio-2.0.so.0.5600.1 libgirepository-1.0.so.1 libgirepository-1.0.so.1.0.0 libglib-2.0.so.0 libglib-2.0.so.0.5600.1 libgmodule-2.0.so.0 libgmodule-2.0.so.0.5600.1 libgmp.so.10 libgmp.so.10.2.0 libgmpxx.so.4 libgmpxx.so.4.4.0 libgobject-2.0.so.0 libgobject-2.0.so.0.5600.1 libgomp.so.1 libgomp.so.1.0.0 libgpg-error.so.0 libgpg-error.so.0.10.0 libgpgme-pthread.so.11 libgpgme-pthread.so.11.8.1 libgpgme.so.11 libgpgme.so.11.8.1 libgssapi_krb5.so.2 libgssapi_krb5.so.2.2 libgssrpc.so.4 libgssrpc.so.4.2 libgthread-2.0.so.0 libgthread-2.0.so.0.5600.1 libhandle.so.1 libhandle.so.1.0.3 libhistory.so.6 libhistory.so.6.2 libidn.so.11 libidn.so.11.6.11 libip4tc.so.0 libip4tc.so.0.1.0 libip6tc.so.0 libip6tc.so.0.1.0 libipset.so.13 libipset.so.13.1.0 libiptc.so.0 libiptc.so.0.0.0 libirs.so.160 libirs.so.160.0.5 libisccc.so.160 libisccc.so.160.0.3 libisccfg.so.160 libisccfg.so.160.2.1 libisc.so.169 libisc.so.169.0.3 libjansson.so.4 libjansson.so.4.10.0 libjson-c.so.2 libjson-c.so.2.0.1 libjson.so.0 libjson.so.0.1.0 libk5crypto.so.3 libk5crypto.so.3.1 libkdb5.so.8 libkdb5.so.8.0 libkeyutils.so.1 libkeyutils.so.1.5 libkmod.so.2 libkmod.so.2.2.10 libkms.so.1 libkms.so.1.0.0 libkrad.so.0 libkrad.so.0.0 libkrb5.so.3 libkrb5.so.3.3 libkrb5support.so.0 libkrb5support.so.0.1 liblber-2.4.so.2 liblber-2.4.so.2.10.7 libldap-2.4.so.2 libldap-2.4.so.2.10.7 libldap_r-2.4.so.2 libldap_r-2.4.so.2.10.7 liblua-5.1.so liblvm2app.so.2.2 liblvm2cmd.so.2.02 liblwres.so.160 liblwres.so.160.0.2 liblz4.so.1 liblz4.so.1.7.5 liblzma.so.5 liblzma.so.5.2.2 liblzo2.so.2 liblzo2.so.2.0.0 libm-2.17.so libmagic.so.1 libmagic.so.1.0.0 libmemusage.so libmenu.so.5 libmenu.so.5.9 libmenuw.so.5 libmenuw.so.5.9 libmnl.so.0 libmnl.so.0.1.0 libmount.so.1 libmount.so.1.1.0 libmozjs-17.0.so libm.so.6 libncurses.so.5 libncurses++.so.5 libncurses.so.5.9 libncurses++.so.5.9 libncurses++w.so.5 libncursesw.so.5 libncurses++w.so.5.9 libncursesw.so.5.9 libndp.so.0 libndp.so.0.0.0 libnetfilter_conntrack.so.3 libnetfilter_conntrack.so.3.6.0 libnewt.so.0.52 libnewt.so.0.52.15 libnfnetlink.so.0 libnfnetlink.so.0.2.0 libnftnl.so.7 libnftnl.so.7.0.0 libnl libnl-3.so.200 libnl-3.so.200.23.0 libnl-cli-3.so.200 libnl-cli-3.so.200.23.0 libnl-genl-3.so.200 libnl-genl-3.so.200.23.0 libnl-idiag-3.so.200 libnl-idiag-3.so.200.23.0 libnl-nf-3.so.200 libnl-nf-3.so.200.23.0 libnl-route-3.so.200 libnl-route-3.so.200.23.0 libnl-xfrm-3.so.200 libnl-xfrm-3.so.200.23.0 libnm.so.0 libnm.so.0.1.0 libnsl-2.17.so libnsl.so.1 libnspr4.so libnss3.so libnssckbi.so libnss_compat-2.17.so libnss_compat.so.2 libnss_db-2.17.so libnssdbm3.chk libnssdbm3.so libnss_db.so.2 libnss_dns-2.17.so libnss_dns.so.2 libnss_files-2.17.so libnss_files.so.2 libnss_hesiod-2.17.so libnss_hesiod.so.2 libnss_myhostname.so.2 libnss_mymachines.so.2 libnss_nis-2.17.so libnss_nisplus-2.17.so libnss_nisplus.so.2 libnss_nis.so.2 libnsspem.so libnsssysinit.so libnssutil3.so libnuma.so.1 libnuma.so.1.0.0 libomapi.so.0 libomapi.so.0.0.0 libopcodes-2.27-41.base.el7.so libp11-kit.so.0 libp11-kit.so.0.3.0 libpamc.so.0 libpamc.so.0.82.1 libpam_misc.so.0 libpam_misc.so.0.82.0 libpam.so.0 libpam.so.0.83.1 libpanel.so.5 libpanel.so.5.9 libpanelw.so.5 libpanelw.so.5.9 libparted-fs-resize.so libparted-fs-resize.so.0 libparted-fs-resize.so.0.0.0 libparted.so.2 libparted.so.2.0.0 libpciaccess.so.0 libpciaccess.so.0.11.1 libpci.so.3 libpci.so.3.5.1 libpcprofile.so libpcre16.so.0 libpcre16.so.0.2.0 libpcre32.so.0 libpcre32.so.0.0.0 libpcrecpp.so.0 libpcrecpp.so.0.0.0 libpcreposix.so.0 libpcreposix.so.0.0.1 libpcre.so.1 libpcre.so.1.2.0 libpipeline.so.1 libpipeline.so.1.2.3 libplc4.so libplds4.so libply-boot-client.so.2 libply-boot-client.so.2.1.0 libply.so.2 libply.so.2.1.0 libply-splash-core.so.2 libply-splash-core.so.2.1.0 libpng15.so.15 libpng15.so.15.13.0 libpoldiff.so.1 libpoldiff.so.1.3.3 libpolkit-agent-1.so.0 libpolkit-agent-1.so.0.0.0 libpolkit-gobject-1.so.0 libpolkit-gobject-1.so.0.0.0 libpopt.so.0 libpopt.so.0.0.0 libprocps.so.4 libprocps.so.4.0.0 libpthread-2.17.so libpthread.so.0 libpth.so.20 libpth.so.20.0.27 libpwquality.so.1 libpwquality.so.1.0.2 libpython2.7.so.1.0 libpython3.6m.so.1.0 libpython3.so libqpol.so.1 libqpol.so.1.7 libqrencode.so.3 libqrencode.so.3.4.1 libreadline.so.6 libreadline.so.6.2 libresolv-2.17.so libresolv.so.2 librpmbuild.so.3 librpmbuild.so.3.2.2 librpmio.so.3 librpmio.so.3.2.2 librpmsign.so.1 librpmsign.so.1.2.2 librpm.so.3 librpm.so.3.2.2 librt-2.17.so librt.so.1 libruby.so.2.0 libruby.so.2.0.0 libsasl2.so.3 libsasl2.so.3.0.0 libseaudit.so.4 libseaudit.so.4.5 libseccomp.so.2 libseccomp.so.2.3.1 libsefs.so.4 libsefs.so.4.0.4 libSegFault.so libselinux.so.1 libsemanage.so.1 libsensors.so.4 libsensors.so.4.4.0 libsepol.so.1 libslang.so.2 libslang.so.2.2.4 libslapi-2.4.so.2 libslapi-2.4.so.2.10.7 libsmartcols.so.1 libsmartcols.so.1.1.0 libsmime3.so libsnappy.so.1 libsnappy.so.1.1.4 libsoftokn3.chk libsoftokn3.so libsqlite3.so.0 libsqlite3.so.0.8.6 libssh2.so.1 libssh2.so.1.0.1 libssl3.so libssl.so.10 libssl.so.1.0.2k libss.so.2 libss.so.2.0 libstdc++.so.6 libstdc++.so.6.0.19 libsysfs.so.2 libsysfs.so.2.0.1 libsystemd-daemon.so.0 libsystemd-daemon.so.0.0.12 libsystemd-id128.so.0 libsystemd-id128.so.0.0.28 libsystemd-journal.so.0 libsystemd-journal.so.0.11.5 libsystemd-login.so.0 libsystemd-login.so.0.9.3 libsystemd.so.0 libsystemd.so.0.6.0 libtasn1.so.6 libtasn1.so.6.5.3 libteamdctl.so.0 libteamdctl.so.0.1.5 libteam.so.5 libteam.so.5.4.0 libthread_db-1.0.so libthread_db.so.1 libtic.so.5 libtic.so.5.9 libtinfo.so.5 libtinfo.so.5.9 libtirpc.so.1 libtirpc.so.1.0.10 libudev.so.1 libudev.so.1.6.2 libunistring.so.0 libunistring.so.0.1.2 libuser libuser.so.1 libuser.so.1.5.0 libustr-1.0.so.1 libustr-1.0.so.1.0.4 libutempter.so.0 libutempter.so.1.1.6 libutil-2.17.so libutil.so.1 libuuid.so.1 libuuid.so.1.3.0 libverto.so.1 libverto.so.1.0.0 libwrap.so.0 libwrap.so.0.7.6 libxml2.so.2 libxml2.so.2.9.1 libxtables.so.10 libxtables.so.10.0.0 libyajl.so.2 libyajl.so.2.0.4 libyaml-0.so.2 libyaml-0.so.2.0.4 libz.so.1 libz.so.1.2.7 lua man-db mysql NetworkManager nss openssl p11-kit-proxy.so p11-kit-trust.so perl5 pkcs11 pkgconfig plymouth pm-utils python2.7 python3.6 rsyslog rtkaio ruby sa sasl2 security setools sse2 tc tls X11 xtables /usr/libexec: awk chrony-helper coreutils dbus-1 docker ebtables getconf git-core gnupg-pcsc-wrapper gpg2keys_curl gpg2keys_finger gpg2keys_hkp gpg2keys_ldap gpg-check-pattern gpg-preset-passphrase gpg-protect-tool grepconf.sh grubby initscripts linux-boot-probes man-db microcode_ctl newns nm-dhcp-helper nm-dispatcher nm-iface-helper nm-ifdown nm-ifup oci openldap openssh os-probes p11-kit platform-python plymouth postfix registries registries_migrator selinux sudo tuned urlgrabber-ext-down utempter virt-what-cpuid-helper /usr/local: bin etc games include lib lib64 libexec sbin share src /usr/sbin: accessdb addgnupghome addpart adduser agetty alternatives anacron applygnupgdefaults arp arpd arping audispd auditctl auditd augenrules aureport ausearch authconfig authconfig-tui autrace avcstat badblocks biosdecode biosdevname blkdeactivate blkdiscard blkid blockdev bridge btrfs btrfsck btrfs-convert btrfs-debug-tree btrfs-find-root btrfs-image btrfs-map-logical btrfs-select-super btrfstune btrfs-zero-log build-locale-archive cacertdir_rehash cache_check cache_dump cache_metadata_size cache_repair cache_restore cache_writeback capsh cbq cfdisk chcpu chgpasswd chkconfig chpasswd chronyd chroot clock clockdiff consoletype cracklib-check cracklib-format cracklib-packer cracklib-unpacker create-cracklib-dict crond ctrlaltdel ctstat debugfs delpart depmod devlink dhclient dhclient-script dmeventd dmfilemapd dmidecode dmsetup dmstats dracut dumpe2fs e2freefrag e2fsck e2image e2label e2undo e4defrag eapol_test ebtables ebtables-restore ebtables-save era_check era_dump era_invalidate era_restore ether-wake ethtool faillock fdformat fdisk filefrag findfs firewalld fixfiles fsadm fsck fsck.btrfs fsck.cramfs fsck.ext2 fsck.ext3 fsck.ext4 fsck.minix fsck.xfs fsfreeze fstrim fxload genhomedircon genhostid genl genl-ctrl-list getcap getenforce getpcaps getsebool glibc_post_upgrade.x86_64 groupadd groupdel groupmems groupmod grpck grpconv grpunconv grub2-bios-setup grub2-get-kernel-settings grub2-install grub2-macbless grub2-mkconfig grub2-ofpathname grub2-probe grub2-reboot grub2-rpm-sort grub2-set-default grub2-setpassword grub2-sparc64-setup grubby halt hardlink hwclock iconvconfig iconvconfig.x86_64 ifcfg ifconfig ifdown ifenslave ifstat ifup init insmod install-info installkernel intel-microcode2ucode ip ip6tables ip6tables-restore ip6tables-save ipmaddr iprconfig iprdbg iprdump iprinit iprsos iprupdate ipset iptables iptables-restore iptables-save iptunnel irqbalance kexec killall5 kpartx lchage ldattach ldconfig lgroupadd lgroupdel lgroupmod lid lnewusers lnstat load_policy logrotate logsave losetup lpasswd lsmod lsof luseradd luserdel lusermod lvchange lvconvert lvcreate lvdisplay lvextend lvm lvmconf lvmconfig lvmdiskscan lvmdump lvmetad lvmpolld lvmsadc lvmsar lvreduce lvremove lvrename lvresize lvs lvscan makedumpfile matchpathcon mii-diag mii-tool mkdict mkdumprd mke2fs mkfs mkfs.btrfs mkfs.cramfs mkfs.ext2 mkfs.ext3 mkfs.ext4 mkfs.minix mkfs.xfs mkhomedir_helper mklost+found mkswap modinfo modprobe nameif netreport NetworkManager new-kernel-pkg newusers nft nl-class-add nl-class-delete nl-classid-lookup nl-class-list nl-cls-add nl-cls-delete nl-cls-list nl-link-list nl-pktloc-lookup nl-qdisc-add nl-qdisc-delete nl-qdisc-list nologin nstat ownership packer pam_console_apply pam_tally2 pam_timestamp_check parted partprobe partx pdata_tools pidof ping6 pivot_root plipconfig plymouthd plymouth-set-default-theme postalias postcat postconf postdrop postfix postkick postlock postlog postmap postmulti postqueue postsuper poweroff ppp-watch pvchange pvck pvcreate pvdisplay pvmove pvremove pvresize pvs pvscan pwck pwconv pwhistory_helper pwunconv rdisc rdma readprofile reboot resize2fs resizepart restorecon rmmod route routef routel rsyslogd rtacct rtcwake rtmon rtpr rtstat runlevel runuser sasldblistusers2 saslpasswd2 sefcontext_compile selabel_digest selabel_lookup selabel_lookup_best_match selabel_partial_match selinuxconlist selinuxdefcon selinuxenabled selinuxexeccon selinux_restorecon semanage semodule sendmail sendmail.postfix service sestatus setcap setenforce setfiles setsebool sfdisk shutdown slattach sln smtp-sink smtp-source ss sshd sshd-keygen sulogin sushell swaplabel swapoff swapon switch_root sysctl sys-unconfig tc telinit thin_check thin_delta thin_dump thin_ls thin_metadata_size thin_repair thin_restore thin_rmap thin_trim tracepath tracepath6 tune2fs tuned tuned-adm udevadm unix_chkpwd unix_update update-alternatives useradd userdel usermod usernetctl vgcfgbackup vgcfgrestore vgchange vgck vgconvert vgcreate vgdisplay vgexport vgextend vgimport vgimportclone vgmerge vgmknodes vgreduce vgremove vgrename vgs vgscan vgsplit vigr vipw virt-what visudo vmcore-dmesg vpddecode weak-modules wipefs wpa_cli wpa_passphrase wpa_supplicant xfs_admin xfs_bmap xfs_copy xfs_db xfs_estimate xfs_freeze xfs_fsr xfs_growfs xfs_info xfs_io xfs_logprint xfs_mdrestore xfs_metadump xfs_mkfile xfs_ncheck xfs_quota xfs_repair xfs_rtcp xtables-multi zdump zic zramctl /usr/share: aclocal alsa anaconda applications augeas authconfig awk backgrounds bash-completion centos-logos centos-release containers container-storage-setup cracklib dbus-1 desktop-directories dict doc empty file firewalld firstboot fish games gcc-4.8.2 gcc-4.8.5 gdb gems GeoIP gettext gettext-0.19.8 ghostscript git-core glib-2.0 gnome gnome-background-properties gnupg groff grub hwdata i18n icons idl info kde4 kdump libdrm licenses locale lua magic man microcode_ctl mime mime-info misc mysql oci-umount omf os-prober p11-kit perl5 pixmaps pkgconfig pki plymouth polkit-1 redhat-release rhel ruby rubygems selinux setools-3.3 sounds systemd systemtap tabset terminfo themes tuned vim wallpapers X11 xsessions yum-cli yum-plugins zoneinfo zsh /usr/src: debug kernels /usr/tmp: systemd-private-016de60725a3426792b93fc9f120b8f0-chronyd.service-tyiZnb systemd-private-a30a5a178daa4042b42dfaf5ff9e5f68-chronyd.service-kNkgrh systemd-private-c51794087e5c40a6b6c1f3c8d6f8d165-chronyd.service-7F85gb systemd-private-fb5d5fbcee6d42cebf6a728f920bd2f4-chronyd.service-xqvG43 jc-1.17.3/tests/fixtures/centos-7.7/ls-l-newlines.json000066400000000000000000000022371415226333200224070ustar00rootroot00000000000000[{"filename": "a regular filename", "flags": "-rw-rw-r--.", "links": 1, "owner": "kbrazil", "group": "kbrazil", "size": 0, "date": "Feb 22 00:12"}, {"filename": "\n\nthis file has\na combination\n\n\nof everything\n\n\n\n", "flags": "-rw-rw-r--.", "links": 1, "owner": "kbrazil", "group": "kbrazil", "size": 0, "date": "Feb 22 00:17"}, {"filename": "this file has\na newline inside", "flags": "-rw-rw-r--.", "links": 1, "owner": "kbrazil", "group": "kbrazil", "size": 0, "date": "Feb 22 00:14"}, {"filename": "this file has\n\n\n\nfour contiguous newlines inside", "flags": "-rw-rw-r--.", "links": 1, "owner": "kbrazil", "group": "kbrazil", "size": 0, "date": "Feb 22 00:14"}, {"filename": "this file\nhas\nsix\n\nnewlines\n\nwithin", "flags": "-rw-rw-r--.", "links": 1, "owner": "kbrazil", "group": "kbrazil", "size": 0, "date": "Feb 22 00:16"}, {"filename": "\n\n\n\nthis file starts with four newlines", "flags": "-rw-rw-r--.", "links": 1, "owner": "kbrazil", "group": "kbrazil", "size": 0, "date": "Feb 22 00:40"}, {"filename": "\nthis file starts with one newline", "flags": "-rw-rw-r--.", "links": 1, "owner": "kbrazil", "group": "kbrazil", "size": 0, "date": "Feb 22 00:13"}] jc-1.17.3/tests/fixtures/centos-7.7/ls-l-newlines.out000066400000000000000000000011071415226333200222400ustar00rootroot00000000000000total 0 -rw-rw-r--. 1 kbrazil kbrazil 0 Feb 22 00:12 a regular filename -rw-rw-r--. 1 kbrazil kbrazil 0 Feb 22 00:17 this file has a combination of everything -rw-rw-r--. 1 kbrazil kbrazil 0 Feb 22 00:14 this file has a newline inside -rw-rw-r--. 1 kbrazil kbrazil 0 Feb 22 00:14 this file has four contiguous newlines inside -rw-rw-r--. 1 kbrazil kbrazil 0 Feb 22 00:16 this file has six newlines within -rw-rw-r--. 1 kbrazil kbrazil 0 Feb 22 00:40 this file starts with four newlines -rw-rw-r--. 1 kbrazil kbrazil 0 Feb 22 00:13 this file starts with one newline jc-1.17.3/tests/fixtures/centos-7.7/ls-lR-newlines.json000066400000000000000000000050201415226333200225220ustar00rootroot00000000000000[{"filename": "lstest", "parent": ".", "flags": "drwxrwxr-x.", "links": 2, "owner": "kbrazil", "group": "kbrazil", "size": 4096, "date": "Feb 22 00:40"}, {"filename": "systemd-private-016de60725a3426792b93fc9f120b8f0-chronyd.service-oZqq4u", "parent": ".", "flags": "drwx------.", "links": 3, "owner": "root", "group": "root", "size": 17, "date": "Feb 13 16:44"}, {"filename": "systemd-private-a30a5a178daa4042b42dfaf5ff9e5f68-chronyd.service-a1tpxv", "parent": ".", "flags": "drwx------.", "links": 3, "owner": "root", "group": "root", "size": 17, "date": "Feb 17 17:48"}, {"filename": "systemd-private-af69d7360f3e40cfa947358c0fb5a6f8-chronyd.service-T3MQ4j", "parent": ".", "flags": "drwx------.", "links": 3, "owner": "root", "group": "root", "size": 17, "date": "Feb 20 14:41"}, {"filename": "tmp.CvALl2jE6u", "parent": ".", "flags": "drwx------.", "links": 2, "owner": "root", "group": "root", "size": 6, "date": "Feb 13 16:44"}, {"filename": "tmp.e7AlxSxY5a", "parent": ".", "flags": "drwx------.", "links": 2, "owner": "root", "group": "root", "size": 6, "date": "Feb 20 14:41"}, {"filename": "tmp.uXm9yegjwj", "parent": ".", "flags": "drwx------.", "links": 2, "owner": "root", "group": "root", "size": 6, "date": "Feb 17 17:48"}, {"filename": "a regular filename", "parent": "./lstest", "flags": "-rw-rw-r--.", "links": 1, "owner": "kbrazil", "group": "kbrazil", "size": 0, "date": "Feb 22 00:12"}, {"filename": "\n\nthis file has\na combination\n\n\nof everything\n\n\n\n", "parent": "./lstest", "flags": "-rw-rw-r--.", "links": 1, "owner": "kbrazil", "group": "kbrazil", "size": 0, "date": "Feb 22 00:17"}, {"filename": "this file has\na newline inside", "parent": "./lstest", "flags": "-rw-rw-r--.", "links": 1, "owner": "kbrazil", "group": "kbrazil", "size": 0, "date": "Feb 22 00:14"}, {"filename": "this file has\n\n\n\nfour contiguous newlines inside", "parent": "./lstest", "flags": "-rw-rw-r--.", "links": 1, "owner": "kbrazil", "group": "kbrazil", "size": 0, "date": "Feb 22 00:14"}, {"filename": "this file\nhas\nsix\n\nnewlines\n\nwithin", "parent": "./lstest", "flags": "-rw-rw-r--.", "links": 1, "owner": "kbrazil", "group": "kbrazil", "size": 0, "date": "Feb 22 00:16"}, {"filename": "\n\n\n\nthis file starts with four newlines", "parent": "./lstest", "flags": "-rw-rw-r--.", "links": 1, "owner": "kbrazil", "group": "kbrazil", "size": 0, "date": "Feb 22 00:40"}, {"filename": "\nthis file starts with one newline", "parent": "./lstest", "flags": "-rw-rw-r--.", "links": 1, "owner": "kbrazil", "group": "kbrazil", "size": 0, "date": "Feb 22 00:13"}] jc-1.17.3/tests/fixtures/centos-7.7/ls-lR-newlines.out000066400000000000000000000022711415226333200223650ustar00rootroot00000000000000.: total 4 drwxrwxr-x. 2 kbrazil kbrazil 4096 Feb 22 00:40 lstest drwx------. 3 root root 17 Feb 13 16:44 systemd-private-016de60725a3426792b93fc9f120b8f0-chronyd.service-oZqq4u drwx------. 3 root root 17 Feb 17 17:48 systemd-private-a30a5a178daa4042b42dfaf5ff9e5f68-chronyd.service-a1tpxv drwx------. 3 root root 17 Feb 20 14:41 systemd-private-af69d7360f3e40cfa947358c0fb5a6f8-chronyd.service-T3MQ4j drwx------. 2 root root 6 Feb 13 16:44 tmp.CvALl2jE6u drwx------. 2 root root 6 Feb 20 14:41 tmp.e7AlxSxY5a drwx------. 2 root root 6 Feb 17 17:48 tmp.uXm9yegjwj ./lstest: total 0 -rw-rw-r--. 1 kbrazil kbrazil 0 Feb 22 00:12 a regular filename -rw-rw-r--. 1 kbrazil kbrazil 0 Feb 22 00:17 this file has a combination of everything -rw-rw-r--. 1 kbrazil kbrazil 0 Feb 22 00:14 this file has a newline inside -rw-rw-r--. 1 kbrazil kbrazil 0 Feb 22 00:14 this file has four contiguous newlines inside -rw-rw-r--. 1 kbrazil kbrazil 0 Feb 22 00:16 this file has six newlines within -rw-rw-r--. 1 kbrazil kbrazil 0 Feb 22 00:40 this file starts with four newlines -rw-rw-r--. 1 kbrazil kbrazil 0 Feb 22 00:13 this file starts with one newline jc-1.17.3/tests/fixtures/centos-7.7/ls-newlines.json000066400000000000000000000007621415226333200221570ustar00rootroot00000000000000[{"filename": "a regular filename"}, {"filename": "this file has"}, {"filename": "a combination"}, {"filename": "of everything"}, {"filename": "this file has"}, {"filename": "a newline inside"}, {"filename": "this file has"}, {"filename": "four contiguous newlines inside"}, {"filename": "this file"}, {"filename": "has"}, {"filename": "six"}, {"filename": "newlines"}, {"filename": "within"}, {"filename": "this file starts with four newlines"}, {"filename": "this file starts with one newline"}] jc-1.17.3/tests/fixtures/centos-7.7/ls-newlines.out000066400000000000000000000004041415226333200220060ustar00rootroot00000000000000a regular filename this file has a combination of everything this file has a newline inside this file has four contiguous newlines inside this file has six newlines within this file starts with four newlines this file starts with one newline jc-1.17.3/tests/fixtures/centos-7.7/ls.json000066400000000000000000000006311415226333200203300ustar00rootroot00000000000000[{"filename": "bin"}, {"filename": "boot"}, {"filename": "dev"}, {"filename": "etc"}, {"filename": "home"}, {"filename": "lib"}, {"filename": "lib64"}, {"filename": "media"}, {"filename": "mnt"}, {"filename": "opt"}, {"filename": "proc"}, {"filename": "root"}, {"filename": "run"}, {"filename": "sbin"}, {"filename": "srv"}, {"filename": "sys"}, {"filename": "tmp"}, {"filename": "usr"}, {"filename": "var"}] jc-1.17.3/tests/fixtures/centos-7.7/ls.out000066400000000000000000000001251415226333200201640ustar00rootroot00000000000000bin boot dev etc home lib lib64 media mnt opt proc root run sbin srv sys tmp usr var jc-1.17.3/tests/fixtures/centos-7.7/lsblk-allcols.json000066400000000000000000000100061415226333200224450ustar00rootroot00000000000000[{"name": "sda", "maj_min": "8:0", "rm": false, "size": "20G", "ro": false, "type": "disk", "mountpoint": null, "kname": "sda", "fstype": null, "label": null, "uuid": null, "partlabel": null, "partuuid": null, "ra": 4096, "model": "VMware Virtual S", "serial": null, "state": "running", "owner": "root", "group": "disk", "mode": "brw-rw----", "alignment": 0, "min_io": 512, "opt_io": 0, "phy_sec": 512, "log_sec": 512, "rota": true, "sched": "deadline", "rq_size": 128, "disc_aln": 0, "disc_gran": "0B", "disc_max": "0B", "disc_zero": false, "wsame": "32M", "wwn": null, "rand": true, "pkname": null, "hctl": "0:0:0:0", "tran": "spi", "rev": "1.0", "vendor": "VMware,"}, {"name": "sda1", "maj_min": "8:1", "rm": false, "size": "1G", "ro": false, "type": "part", "mountpoint": "/boot", "kname": "sda1", "fstype": "xfs", "label": null, "uuid": "05d927bb-5875-49e3-ada1-7f46cb31c932", "partlabel": null, "partuuid": null, "ra": 4096, "model": null, "serial": null, "state": null, "owner": "root", "group": "disk", "mode": "brw-rw----", "alignment": 0, "min_io": 512, "opt_io": 0, "phy_sec": 512, "log_sec": 512, "rota": true, "sched": "deadline", "rq_size": 128, "disc_aln": 0, "disc_gran": "0B", "disc_max": "0B", "disc_zero": false, "wsame": "32M", "wwn": null, "rand": true, "pkname": "sda", "hctl": null, "tran": null, "rev": null, "vendor": null}, {"name": "sda2", "maj_min": "8:2", "rm": false, "size": "19G", "ro": false, "type": "part", "mountpoint": null, "kname": "sda2", "fstype": "LVM2_member", "label": null, "uuid": "3klkIj-w1qk-DkJi-0XBJ-y3o7-i2Ac-vHqWBM", "partlabel": null, "partuuid": null, "ra": 4096, "model": null, "serial": null, "state": null, "owner": "root", "group": "disk", "mode": "brw-rw----", "alignment": 0, "min_io": 512, "opt_io": 0, "phy_sec": 512, "log_sec": 512, "rota": true, "sched": "deadline", "rq_size": 128, "disc_aln": 0, "disc_gran": "0B", "disc_max": "0B", "disc_zero": false, "wsame": "32M", "wwn": null, "rand": true, "pkname": "sda", "hctl": null, "tran": null, "rev": null, "vendor": null}, {"name": "centos-root", "maj_min": "253:0", "rm": false, "size": "17G", "ro": false, "type": "lvm", "mountpoint": "/", "kname": "dm-0", "fstype": "xfs", "label": null, "uuid": "07d718ef-950c-4e5b-98e0-42a1147b77d9", "partlabel": null, "partuuid": null, "ra": 4096, "model": null, "serial": null, "state": "running", "owner": "root", "group": "disk", "mode": "brw-rw----", "alignment": 0, "min_io": 512, "opt_io": 0, "phy_sec": 512, "log_sec": 512, "rota": true, "sched": null, "rq_size": 128, "disc_aln": 0, "disc_gran": "0B", "disc_max": "0B", "disc_zero": false, "wsame": "32M", "wwn": null, "rand": false, "pkname": "sda2", "hctl": null, "tran": null, "rev": null, "vendor": null}, {"name": "centos-swap", "maj_min": "253:1", "rm": false, "size": "2G", "ro": false, "type": "lvm", "mountpoint": "[SWAP]", "kname": "dm-1", "fstype": "swap", "label": null, "uuid": "615eb89d-bcbf-46ad-80e3-c483ef5c931f", "partlabel": null, "partuuid": null, "ra": 4096, "model": null, "serial": null, "state": "running", "owner": "root", "group": "disk", "mode": "brw-rw----", "alignment": 0, "min_io": 512, "opt_io": 0, "phy_sec": 512, "log_sec": 512, "rota": true, "sched": null, "rq_size": 128, "disc_aln": 0, "disc_gran": "0B", "disc_max": "0B", "disc_zero": false, "wsame": "32M", "wwn": null, "rand": false, "pkname": "sda2", "hctl": null, "tran": null, "rev": null, "vendor": null}, {"name": "sr0", "maj_min": "11:0", "rm": true, "size": "1024M", "ro": false, "type": "rom", "mountpoint": null, "kname": "sr0", "fstype": null, "label": null, "uuid": null, "partlabel": null, "partuuid": null, "ra": 128, "model": "VMware IDE CDR10", "serial": "10000000000000000001", "state": "running", "owner": "root", "group": "cdrom", "mode": "brw-rw----", "alignment": 0, "min_io": 512, "opt_io": 0, "phy_sec": 512, "log_sec": 512, "rota": true, "sched": "deadline", "rq_size": 128, "disc_aln": 0, "disc_gran": "0B", "disc_max": "0B", "disc_zero": false, "wsame": "0B", "wwn": null, "rand": true, "pkname": null, "hctl": "2:0:0:0", "tran": "ata", "rev": "1.00", "vendor": "NECVMWar"}] jc-1.17.3/tests/fixtures/centos-7.7/lsblk-allcols.out000066400000000000000000000047061415226333200223150ustar00rootroot00000000000000NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT KNAME FSTYPE LABEL UUID PARTLABEL PARTUUID RA MODEL SERIAL STATE OWNER GROUP MODE ALIGNMENT MIN-IO OPT-IO PHY-SEC LOG-SEC ROTA SCHED RQ-SIZE DISC-ALN DISC-GRAN DISC-MAX DISC-ZERO WSAME WWN RAND PKNAME HCTL TRAN REV VENDOR sda 8:0 0 20G 0 disk sda 4096 VMware Virtual S running root disk brw-rw---- 0 512 0 512 512 1 deadline 128 0 0B 0B 0 32M 1 0:0:0:0 spi 1.0 VMware, ├─sda1 8:1 0 1G 0 part /boot sda1 xfs 05d927bb-5875-49e3-ada1-7f46cb31c932 4096 root disk brw-rw---- 0 512 0 512 512 1 deadline 128 0 0B 0B 0 32M 1 sda └─sda2 8:2 0 19G 0 part sda2 LVM2_member 3klkIj-w1qk-DkJi-0XBJ-y3o7-i2Ac-vHqWBM 4096 root disk brw-rw---- 0 512 0 512 512 1 deadline 128 0 0B 0B 0 32M 1 sda ├─centos-root 253:0 0 17G 0 lvm / dm-0 xfs 07d718ef-950c-4e5b-98e0-42a1147b77d9 4096 running root disk brw-rw---- 0 512 0 512 512 1 128 0 0B 0B 0 32M 0 sda2 └─centos-swap 253:1 0 2G 0 lvm [SWAP] dm-1 swap 615eb89d-bcbf-46ad-80e3-c483ef5c931f 4096 running root disk brw-rw---- 0 512 0 512 512 1 128 0 0B 0B 0 32M 0 sda2 sr0 11:0 1 1024M 0 rom sr0 128 VMware IDE CDR10 10000000000000000001 running root cdrom brw-rw---- 0 512 0 512 512 1 deadline 128 0 0B 0B 0 0B 1 2:0:0:0 ata 1.00 NECVMWar jc-1.17.3/tests/fixtures/centos-7.7/lsblk.json000066400000000000000000000012721415226333200210230ustar00rootroot00000000000000[{"name": "sda", "maj_min": "8:0", "rm": false, "size": "20G", "ro": false, "type": "disk", "mountpoint": null}, {"name": "sda1", "maj_min": "8:1", "rm": false, "size": "1G", "ro": false, "type": "part", "mountpoint": "/boot"}, {"name": "sda2", "maj_min": "8:2", "rm": false, "size": "19G", "ro": false, "type": "part", "mountpoint": null}, {"name": "centos-root", "maj_min": "253:0", "rm": false, "size": "17G", "ro": false, "type": "lvm", "mountpoint": "/"}, {"name": "centos-swap", "maj_min": "253:1", "rm": false, "size": "2G", "ro": false, "type": "lvm", "mountpoint": "[SWAP]"}, {"name": "sr0", "maj_min": "11:0", "rm": true, "size": "1024M", "ro": false, "type": "rom", "mountpoint": null}] jc-1.17.3/tests/fixtures/centos-7.7/lsblk.out000066400000000000000000000005141415226333200206570ustar00rootroot00000000000000NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT sda 8:0 0 20G 0 disk ├─sda1 8:1 0 1G 0 part /boot └─sda2 8:2 0 19G 0 part ├─centos-root 253:0 0 17G 0 lvm / └─centos-swap 253:1 0 2G 0 lvm [SWAP] sr0 11:0 1 1024M 0 rom jc-1.17.3/tests/fixtures/centos-7.7/lsmod.json000066400000000000000000000147771415226333200210500ustar00rootroot00000000000000[{"module": "ipt_MASQUERADE", "size": 12678, "used": 1}, {"module": "nf_nat_masquerade_ipv4", "size": 13430, "used": 1, "by": ["ipt_MASQUERADE"]}, {"module": "xt_addrtype", "size": 12676, "used": 2}, {"module": "br_netfilter", "size": 22256, "used": 0}, {"module": "bridge", "size": 151336, "used": 1, "by": ["br_netfilter"]}, {"module": "stp", "size": 12976, "used": 1, "by": ["bridge"]}, {"module": "llc", "size": 14552, "used": 2, "by": ["stp", "bridge"]}, {"module": "ip6t_rpfilter", "size": 12595, "used": 1}, {"module": "ip6t_REJECT", "size": 12625, "used": 2}, {"module": "nf_reject_ipv6", "size": 13717, "used": 1, "by": ["ip6t_REJECT"]}, {"module": "ipt_REJECT", "size": 12541, "used": 2}, {"module": "nf_reject_ipv4", "size": 13373, "used": 1, "by": ["ipt_REJECT"]}, {"module": "xt_conntrack", "size": 12760, "used": 22}, {"module": "ebtable_nat", "size": 12807, "used": 1}, {"module": "ip6table_nat", "size": 12864, "used": 1}, {"module": "nf_conntrack_ipv6", "size": 18935, "used": 7}, {"module": "nf_defrag_ipv6", "size": 35104, "used": 1, "by": ["nf_conntrack_ipv6"]}, {"module": "nf_nat_ipv6", "size": 14131, "used": 1, "by": ["ip6table_nat"]}, {"module": "ip6table_mangle", "size": 12700, "used": 1}, {"module": "ip6table_security", "size": 12710, "used": 1}, {"module": "ip6table_raw", "size": 12683, "used": 1}, {"module": "iptable_nat", "size": 12875, "used": 1}, {"module": "nf_conntrack_ipv4", "size": 15053, "used": 17}, {"module": "nf_defrag_ipv4", "size": 12729, "used": 1, "by": ["nf_conntrack_ipv4"]}, {"module": "nf_nat_ipv4", "size": 14115, "used": 1, "by": ["iptable_nat"]}, {"module": "nf_nat", "size": 26583, "used": 3, "by": ["nf_nat_ipv4", "nf_nat_ipv6", "nf_nat_masquerade_ipv4"]}, {"module": "iptable_mangle", "size": 12695, "used": 1}, {"module": "iptable_security", "size": 12705, "used": 1}, {"module": "iptable_raw", "size": 12678, "used": 1}, {"module": "nf_conntrack", "size": 139224, "used": 7, "by": ["nf_nat", "nf_nat_ipv4", "nf_nat_ipv6", "xt_conntrack", "nf_nat_masquerade_ipv4", "nf_conntrack_ipv4", "nf_conntrack_ipv6"]}, {"module": "ip_set", "size": 45799, "used": 0}, {"module": "nfnetlink", "size": 14519, "used": 1, "by": ["ip_set"]}, {"module": "ebtable_filter", "size": 12827, "used": 1}, {"module": "ebtables", "size": 35009, "used": 2, "by": ["ebtable_nat", "ebtable_filter"]}, {"module": "ip6table_filter", "size": 12815, "used": 1}, {"module": "ip6_tables", "size": 26912, "used": 5, "by": ["ip6table_filter", "ip6table_mangle", "ip6table_security", "ip6table_nat", "ip6table_raw"]}, {"module": "iptable_filter", "size": 12810, "used": 1}, {"module": "overlay", "size": 91659, "used": 0}, {"module": "iosf_mbi", "size": 15582, "used": 0}, {"module": "crc32_pclmul", "size": 13133, "used": 0}, {"module": "ppdev", "size": 17671, "used": 0}, {"module": "ghash_clmulni_intel", "size": 13273, "used": 0}, {"module": "vmw_balloon", "size": 18094, "used": 0}, {"module": "btusb", "size": 41449, "used": 0}, {"module": "aesni_intel", "size": 189456, "used": 0}, {"module": "btrtl", "size": 12945, "used": 1, "by": ["btusb"]}, {"module": "btbcm", "size": 14040, "used": 1, "by": ["btusb"]}, {"module": "btintel", "size": 15709, "used": 1, "by": ["btusb"]}, {"module": "lrw", "size": 13286, "used": 1, "by": ["aesni_intel"]}, {"module": "bluetooth", "size": 548688, "used": 5, "by": ["btbcm", "btrtl", "btusb", "btintel"]}, {"module": "gf128mul", "size": 15139, "used": 1, "by": ["lrw"]}, {"module": "glue_helper", "size": 13990, "used": 1, "by": ["aesni_intel"]}, {"module": "ablk_helper", "size": 13597, "used": 1, "by": ["aesni_intel"]}, {"module": "cryptd", "size": 21190, "used": 3, "by": ["ghash_clmulni_intel", "aesni_intel", "ablk_helper"]}, {"module": "joydev", "size": 17389, "used": 0}, {"module": "pcspkr", "size": 12718, "used": 0}, {"module": "sg", "size": 40719, "used": 0}, {"module": "rfkill", "size": 22391, "used": 1, "by": ["bluetooth"]}, {"module": "vmw_vmci", "size": 67168, "used": 0}, {"module": "i2c_piix4", "size": 22401, "used": 0}, {"module": "parport_pc", "size": 28205, "used": 0}, {"module": "parport", "size": 46395, "used": 2, "by": ["ppdev", "parport_pc"]}, {"module": "ip_tables", "size": 27126, "used": 5, "by": ["iptable_security", "iptable_filter", "iptable_mangle", "iptable_nat", "iptable_raw"]}, {"module": "xfs", "size": 993020, "used": 2}, {"module": "libcrc32c", "size": 12644, "used": 3, "by": ["xfs", "nf_nat", "nf_conntrack"]}, {"module": "sr_mod", "size": 22416, "used": 0}, {"module": "cdrom", "size": 42556, "used": 1, "by": ["sr_mod"]}, {"module": "ata_generic", "size": 12923, "used": 0}, {"module": "pata_acpi", "size": 13053, "used": 0}, {"module": "vmwgfx", "size": 291993, "used": 1}, {"module": "sd_mod", "size": 46281, "used": 3}, {"module": "crc_t10dif", "size": 12912, "used": 1, "by": ["sd_mod"]}, {"module": "crct10dif_generic", "size": 12647, "used": 0}, {"module": "drm_kms_helper", "size": 186531, "used": 1, "by": ["vmwgfx"]}, {"module": "syscopyarea", "size": 12529, "used": 1, "by": ["drm_kms_helper"]}, {"module": "sysfillrect", "size": 12701, "used": 1, "by": ["drm_kms_helper"]}, {"module": "sysimgblt", "size": 12640, "used": 1, "by": ["drm_kms_helper"]}, {"module": "fb_sys_fops", "size": 12703, "used": 1, "by": ["drm_kms_helper"]}, {"module": "crct10dif_pclmul", "size": 14307, "used": 1}, {"module": "crct10dif_common", "size": 12595, "used": 3, "by": ["crct10dif_pclmul", "crct10dif_generic", "crc_t10dif"]}, {"module": "ttm", "size": 96673, "used": 1, "by": ["vmwgfx"]}, {"module": "crc32c_intel", "size": 22094, "used": 1}, {"module": "drm", "size": 456166, "used": 4, "by": ["ttm", "drm_kms_helper", "vmwgfx"]}, {"module": "ata_piix", "size": 35052, "used": 0}, {"module": "serio_raw", "size": 13434, "used": 0}, {"module": "nfit", "size": 55479, "used": 0}, {"module": "mptspi", "size": 22673, "used": 2}, {"module": "libata", "size": 243133, "used": 3, "by": ["pata_acpi", "ata_generic", "ata_piix"]}, {"module": "scsi_transport_spi", "size": 30732, "used": 1, "by": ["mptspi"]}, {"module": "libnvdimm", "size": 155545, "used": 1, "by": ["nfit"]}, {"module": "e1000", "size": 137624, "used": 0}, {"module": "mptscsih", "size": 40150, "used": 1, "by": ["mptspi"]}, {"module": "mptbase", "size": 106036, "used": 2, "by": ["mptspi", "mptscsih"]}, {"module": "drm_panel_orientation_quirks", "size": 17180, "used": 1, "by": ["drm"]}, {"module": "dm_mirror", "size": 22289, "used": 0}, {"module": "dm_region_hash", "size": 20813, "used": 1, "by": ["dm_mirror"]}, {"module": "dm_log", "size": 18411, "used": 2, "by": ["dm_region_hash", "dm_mirror"]}, {"module": "dm_mod", "size": 124501, "used": 8, "by": ["dm_log", "dm_mirror"]}] jc-1.17.3/tests/fixtures/centos-7.7/lsmod.out000066400000000000000000000101011415226333200206570ustar00rootroot00000000000000Module Size Used by ipt_MASQUERADE 12678 1 nf_nat_masquerade_ipv4 13430 1 ipt_MASQUERADE xt_addrtype 12676 2 br_netfilter 22256 0 bridge 151336 1 br_netfilter stp 12976 1 bridge llc 14552 2 stp,bridge ip6t_rpfilter 12595 1 ip6t_REJECT 12625 2 nf_reject_ipv6 13717 1 ip6t_REJECT ipt_REJECT 12541 2 nf_reject_ipv4 13373 1 ipt_REJECT xt_conntrack 12760 22 ebtable_nat 12807 1 ip6table_nat 12864 1 nf_conntrack_ipv6 18935 7 nf_defrag_ipv6 35104 1 nf_conntrack_ipv6 nf_nat_ipv6 14131 1 ip6table_nat ip6table_mangle 12700 1 ip6table_security 12710 1 ip6table_raw 12683 1 iptable_nat 12875 1 nf_conntrack_ipv4 15053 17 nf_defrag_ipv4 12729 1 nf_conntrack_ipv4 nf_nat_ipv4 14115 1 iptable_nat nf_nat 26583 3 nf_nat_ipv4,nf_nat_ipv6,nf_nat_masquerade_ipv4 iptable_mangle 12695 1 iptable_security 12705 1 iptable_raw 12678 1 nf_conntrack 139224 7 nf_nat,nf_nat_ipv4,nf_nat_ipv6,xt_conntrack,nf_nat_masquerade_ipv4,nf_conntrack_ipv4,nf_conntrack_ipv6 ip_set 45799 0 nfnetlink 14519 1 ip_set ebtable_filter 12827 1 ebtables 35009 2 ebtable_nat,ebtable_filter ip6table_filter 12815 1 ip6_tables 26912 5 ip6table_filter,ip6table_mangle,ip6table_security,ip6table_nat,ip6table_raw iptable_filter 12810 1 overlay 91659 0 iosf_mbi 15582 0 crc32_pclmul 13133 0 ppdev 17671 0 ghash_clmulni_intel 13273 0 vmw_balloon 18094 0 btusb 41449 0 aesni_intel 189456 0 btrtl 12945 1 btusb btbcm 14040 1 btusb btintel 15709 1 btusb lrw 13286 1 aesni_intel bluetooth 548688 5 btbcm,btrtl,btusb,btintel gf128mul 15139 1 lrw glue_helper 13990 1 aesni_intel ablk_helper 13597 1 aesni_intel cryptd 21190 3 ghash_clmulni_intel,aesni_intel,ablk_helper joydev 17389 0 pcspkr 12718 0 sg 40719 0 rfkill 22391 1 bluetooth vmw_vmci 67168 0 i2c_piix4 22401 0 parport_pc 28205 0 parport 46395 2 ppdev,parport_pc ip_tables 27126 5 iptable_security,iptable_filter,iptable_mangle,iptable_nat,iptable_raw xfs 993020 2 libcrc32c 12644 3 xfs,nf_nat,nf_conntrack sr_mod 22416 0 cdrom 42556 1 sr_mod ata_generic 12923 0 pata_acpi 13053 0 vmwgfx 291993 1 sd_mod 46281 3 crc_t10dif 12912 1 sd_mod crct10dif_generic 12647 0 drm_kms_helper 186531 1 vmwgfx syscopyarea 12529 1 drm_kms_helper sysfillrect 12701 1 drm_kms_helper sysimgblt 12640 1 drm_kms_helper fb_sys_fops 12703 1 drm_kms_helper crct10dif_pclmul 14307 1 crct10dif_common 12595 3 crct10dif_pclmul,crct10dif_generic,crc_t10dif ttm 96673 1 vmwgfx crc32c_intel 22094 1 drm 456166 4 ttm,drm_kms_helper,vmwgfx ata_piix 35052 0 serio_raw 13434 0 nfit 55479 0 mptspi 22673 2 libata 243133 3 pata_acpi,ata_generic,ata_piix scsi_transport_spi 30732 1 mptspi libnvdimm 155545 1 nfit e1000 137624 0 mptscsih 40150 1 mptspi mptbase 106036 2 mptspi,mptscsih drm_panel_orientation_quirks 17180 1 drm dm_mirror 22289 0 dm_region_hash 20813 1 dm_mirror dm_log 18411 2 dm_region_hash,dm_mirror dm_mod 124501 8 dm_log,dm_mirror jc-1.17.3/tests/fixtures/centos-7.7/lsof-sudo.json000066400000000000000000020576321415226333200216440ustar00rootroot00000000000000[{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":1624520,"node":50360451,"name":"/usr/lib/systemd/systemd"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":265600,"node":8147,"name":"/usr/lib64/libblkid.so.1.1.0"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":277808,"node":8164,"name":"/usr/lib64/libmount.so.1.1.0"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":91800,"node":32817,"name":"/usr/lib64/libkmod.so.2.2.10"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61672,"node":10149,"name":"/usr/lib64/libpam.so.0.83.1"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":45344,"node":50610926,"name":"/etc/selinux/targeted/contexts/files/file_contexts.homedirs.bin"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1431995,"node":50392663,"name":"/etc/selinux/targeted/contexts/files/file_contexts.bin"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"3u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[timerfd]"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"5u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[signalfd]"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"6r","type":"DIR","device":"0,22","size_off":0,"node":8688,"name":"/sys/fs/cgroup/systemd"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"7u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[timerfd]"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"8u","type":"netlink","device":null,"size_off":0,"node":13770,"name":"KOBJECT_UEVENT"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"9r","type":"REG","device":"0,3","size_off":0,"node":8964,"name":"/proc/1/mountinfo"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"10r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"11r","type":"REG","device":"0,3","size_off":0,"node":4026532019,"name":"/proc/swaps"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"12u","type":"unix","device":"0xffff96aeb677f000","size_off":0,"node":13771,"name":"/run/systemd/private"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"14r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"19u","type":"netlink","device":null,"size_off":0,"node":13776,"name":"AUDIT"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"20u","type":"unix","device":"0xffff96aeb677c400","size_off":0,"node":13851,"name":"/run/lvm/lvmpolld.socket"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"21u","type":"FIFO","device":"0,20","size_off":0,"node":13862,"name":"/run/dmeventd-server"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"22u","type":"FIFO","device":"0,20","size_off":0,"node":13863,"name":"/run/dmeventd-client"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"23u","type":"unix","device":"0xffff96afb3392000","size_off":0,"node":8971,"name":"/run/systemd/notify"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"24u","type":"unix","device":"0xffff96afb3391c00","size_off":0,"node":8973,"name":"/run/systemd/cgroups-agent"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"25u","type":"unix","device":"0xffff96aeb677bc00","size_off":0,"node":13864,"name":"/run/systemd/shutdownd"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"26r","type":"CHR","device":"10,235","size_off":0,"node":8458,"name":"/dev/autofs"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"27r","type":"FIFO","device":"0,9","size_off":0,"node":13903,"name":"pipe"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"28u","type":"unix","device":"0xffff96afb3393400","size_off":0,"node":8991,"name":"/run/systemd/journal/stdout"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"29u","type":"unix","device":"0xffff96afb3393800","size_off":0,"node":8994,"name":"/run/systemd/journal/socket"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"30u","type":"unix","device":"0xffff96afb3393c00","size_off":0,"node":8996,"name":"/dev/log"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"31u","type":"unix","device":"0xffff96aeb677a800","size_off":0,"node":13918,"name":"/run/lvm/lvmetad.socket"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"32u","type":"unix","device":"0xffff96aeb6788000","size_off":0,"node":13962,"name":"/run/udev/control"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"33r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"34u","type":"netlink","device":null,"size_off":0,"node":14051,"name":"KOBJECT_UEVENT"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"35u","type":"FIFO","device":"0,20","size_off":0,"node":14170,"name":"/run/systemd/initctl/fifo"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"36u","type":"unix","device":"0xffff96aeb6715800","size_off":0,"node":14252,"name":"socket"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"37u","type":"unix","device":"0xffff96afb4d62400","size_off":0,"node":17785,"name":"/run/dbus/system_bus_socket"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"38u","type":"unix","device":"0xffff96aeb6713c00","size_off":0,"node":14409,"name":"/run/systemd/journal/stdout"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"39u","type":"unix","device":"0xffff96afb4d67000","size_off":0,"node":17796,"name":"socket"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"40u","type":"unix","device":"0xffff96aeb677e000","size_off":0,"node":14760,"name":"/run/systemd/journal/stdout"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"41u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[timerfd]"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"42u","type":"unix","device":"0xffff96afb4d63400","size_off":0,"node":17845,"name":"/run/systemd/journal/stdout"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"43u","type":"unix","device":"0xffff96afb4d71800","size_off":0,"node":18956,"name":"/run/systemd/journal/stdout"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"44u","type":"netlink","device":null,"size_off":0,"node":14577,"name":"SELINUX"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"48u","type":"unix","device":"0xffff96afb5775c00","size_off":0,"node":18141,"name":"/run/systemd/journal/stdout"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"51u","type":"unix","device":"0xffff96afb5767800","size_off":0,"node":18419,"name":"/run/systemd/journal/stdout"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"52u","type":"unix","device":"0xffff96af33931800","size_off":0,"node":21303,"name":"/run/systemd/journal/stdout"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"53u","type":"unix","device":"0xffff96afb573b800","size_off":0,"node":21448,"name":"/run/systemd/journal/stdout"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"54u","type":"unix","device":"0xffff96afb573d800","size_off":0,"node":21430,"name":"/run/systemd/journal/stdout"},{"command":"kthreadd","pid":2,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kthreadd","pid":2,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kthreadd","pid":2,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/2/exe"},{"command":"kworker/0","pid":4,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kworker/0","pid":4,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kworker/0","pid":4,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4/exe"},{"command":"kworker/u","pid":5,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kworker/u","pid":5,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kworker/u","pid":5,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/5/exe"},{"command":"ksoftirqd","pid":6,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"ksoftirqd","pid":6,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"ksoftirqd","pid":6,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/6/exe"},{"command":"migration","pid":7,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"migration","pid":7,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"migration","pid":7,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/7/exe"},{"command":"rcu_bh","pid":8,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"rcu_bh","pid":8,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"rcu_bh","pid":8,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/8/exe"},{"command":"rcu_sched","pid":9,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"rcu_sched","pid":9,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"rcu_sched","pid":9,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/9/exe"},{"command":"lru-add-d","pid":10,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"lru-add-d","pid":10,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"lru-add-d","pid":10,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/10/exe"},{"command":"watchdog/","pid":11,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"watchdog/","pid":11,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"watchdog/","pid":11,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/11/exe"},{"command":"kdevtmpfs","pid":13,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"0,5","size_off":3180,"node":3,"name":"/"},{"command":"kdevtmpfs","pid":13,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"0,5","size_off":3180,"node":3,"name":"/"},{"command":"kdevtmpfs","pid":13,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/13/exe"},{"command":"netns","pid":14,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"netns","pid":14,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"netns","pid":14,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/14/exe"},{"command":"khungtask","pid":15,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"khungtask","pid":15,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"khungtask","pid":15,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15/exe"},{"command":"writeback","pid":16,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"writeback","pid":16,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"writeback","pid":16,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/16/exe"},{"command":"kintegrit","pid":17,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kintegrit","pid":17,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kintegrit","pid":17,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/17/exe"},{"command":"bioset","pid":18,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"bioset","pid":18,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"bioset","pid":18,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/18/exe"},{"command":"bioset","pid":19,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"bioset","pid":19,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"bioset","pid":19,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/19/exe"},{"command":"bioset","pid":20,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"bioset","pid":20,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"bioset","pid":20,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/20/exe"},{"command":"kblockd","pid":21,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kblockd","pid":21,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kblockd","pid":21,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/21/exe"},{"command":"md","pid":22,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"md","pid":22,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"md","pid":22,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/22/exe"},{"command":"edac-poll","pid":23,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"edac-poll","pid":23,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"edac-poll","pid":23,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23/exe"},{"command":"watchdogd","pid":24,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"watchdogd","pid":24,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"watchdogd","pid":24,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/24/exe"},{"command":"kswapd0","pid":30,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kswapd0","pid":30,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kswapd0","pid":30,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/30/exe"},{"command":"ksmd","pid":31,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"ksmd","pid":31,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"ksmd","pid":31,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/31/exe"},{"command":"khugepage","pid":32,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"khugepage","pid":32,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"khugepage","pid":32,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/32/exe"},{"command":"crypto","pid":33,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"crypto","pid":33,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"crypto","pid":33,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/33/exe"},{"command":"kthrotld","pid":41,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kthrotld","pid":41,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kthrotld","pid":41,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/41/exe"},{"command":"kworker/u","pid":42,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kworker/u","pid":42,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kworker/u","pid":42,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/42/exe"},{"command":"kmpath_rd","pid":43,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kmpath_rd","pid":43,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kmpath_rd","pid":43,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/43/exe"},{"command":"kaluad","pid":44,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kaluad","pid":44,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kaluad","pid":44,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/44/exe"},{"command":"kpsmoused","pid":45,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kpsmoused","pid":45,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kpsmoused","pid":45,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/45/exe"},{"command":"ipv6_addr","pid":47,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"ipv6_addr","pid":47,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"ipv6_addr","pid":47,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/47/exe"},{"command":"deferwq","pid":60,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"deferwq","pid":60,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"deferwq","pid":60,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/60/exe"},{"command":"kauditd","pid":95,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kauditd","pid":95,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kauditd","pid":95,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/95/exe"},{"command":"mpt_poll_","pid":272,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"mpt_poll_","pid":272,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"mpt_poll_","pid":272,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/272/exe"},{"command":"mpt/0","pid":273,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"mpt/0","pid":273,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"mpt/0","pid":273,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/273/exe"},{"command":"ata_sff","pid":274,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"ata_sff","pid":274,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"ata_sff","pid":274,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/274/exe"},{"command":"nfit","pid":275,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"nfit","pid":275,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"nfit","pid":275,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/275/exe"},{"command":"scsi_eh_0","pid":291,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"scsi_eh_0","pid":291,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"scsi_eh_0","pid":291,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/291/exe"},{"command":"scsi_tmf_","pid":295,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"scsi_tmf_","pid":295,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"scsi_tmf_","pid":295,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/295/exe"},{"command":"scsi_eh_1","pid":330,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"scsi_eh_1","pid":330,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"scsi_eh_1","pid":330,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/330/exe"},{"command":"scsi_tmf_","pid":331,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"scsi_tmf_","pid":331,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"scsi_tmf_","pid":331,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/331/exe"},{"command":"scsi_eh_2","pid":339,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"scsi_eh_2","pid":339,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"scsi_eh_2","pid":339,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/339/exe"},{"command":"scsi_tmf_","pid":346,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"scsi_tmf_","pid":346,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"scsi_tmf_","pid":346,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/346/exe"},{"command":"irq/16-vm","pid":357,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"irq/16-vm","pid":357,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"irq/16-vm","pid":357,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/357/exe"},{"command":"ttm_swap","pid":358,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"ttm_swap","pid":358,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"ttm_swap","pid":358,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/358/exe"},{"command":"kdmflush","pid":431,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kdmflush","pid":431,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kdmflush","pid":431,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/431/exe"},{"command":"bioset","pid":432,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"bioset","pid":432,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"bioset","pid":432,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/432/exe"},{"command":"kdmflush","pid":442,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kdmflush","pid":442,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kdmflush","pid":442,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/442/exe"},{"command":"bioset","pid":443,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"bioset","pid":443,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"bioset","pid":443,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/443/exe"},{"command":"bioset","pid":455,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"bioset","pid":455,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"bioset","pid":455,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/455/exe"},{"command":"xfsalloc","pid":456,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfsalloc","pid":456,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfsalloc","pid":456,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/456/exe"},{"command":"xfs_mru_c","pid":457,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs_mru_c","pid":457,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs_mru_c","pid":457,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/457/exe"},{"command":"xfs-buf/d","pid":458,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-buf/d","pid":458,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-buf/d","pid":458,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/458/exe"},{"command":"xfs-data/","pid":459,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-data/","pid":459,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-data/","pid":459,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/459/exe"},{"command":"xfs-conv/","pid":460,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-conv/","pid":460,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-conv/","pid":460,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/460/exe"},{"command":"xfs-cil/d","pid":461,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-cil/d","pid":461,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-cil/d","pid":461,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/461/exe"},{"command":"xfs-recla","pid":462,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-recla","pid":462,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-recla","pid":462,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/462/exe"},{"command":"xfs-log/d","pid":463,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-log/d","pid":463,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-log/d","pid":463,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/463/exe"},{"command":"xfs-eofbl","pid":464,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-eofbl","pid":464,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-eofbl","pid":464,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/464/exe"},{"command":"xfsaild/d","pid":465,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfsaild/d","pid":465,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfsaild/d","pid":465,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/465/exe"},{"command":"kworker/0","pid":466,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kworker/0","pid":466,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kworker/0","pid":466,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/466/exe"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":346152,"node":50360465,"name":"/usr/lib/systemd/systemd-journald"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"mem","type":"REG","device":"0,20","size_off":8388608,"node":9246,"name":"/run/log/journal/c1aceec07c3141c5893d84415874e296/system.journal"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":37056,"node":9833,"name":"/usr/lib64/libacl.so.1.1.0"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"mem","type":"REG","device":"0,20","size_off":8,"node":9217,"name":"/run/systemd/journal/kernel-seqnum"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"1w","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"2w","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"3u","type":"unix","device":"0xffff96afb3393400","size_off":0,"node":8991,"name":"/run/systemd/journal/stdout"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"4u","type":"unix","device":"0xffff96afb3393800","size_off":0,"node":8994,"name":"/run/systemd/journal/socket"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"5u","type":"unix","device":"0xffff96afb3393c00","size_off":0,"node":8996,"name":"/dev/log"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"6w","type":"CHR","device":"1,11","size_off":0,"node":6491,"name":"/dev/kmsg"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"7u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"8u","type":"CHR","device":"1,11","size_off":0,"node":6491,"name":"/dev/kmsg"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"9r","type":"REG","device":"0,3","size_off":0,"node":9218,"name":"/proc/sys/kernel/hostname"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"10u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[signalfd]"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"11u","type":"unix","device":"0xffff96aeb6716000","size_off":0,"node":14029,"name":"socket"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"12u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[timerfd]"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"13u","type":"REG","device":"0,20","size_off":8388608,"node":9246,"name":"/run/log/journal/c1aceec07c3141c5893d84415874e296/system.journal"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"14u","type":"unix","device":"0xffff96afb4d63400","size_off":0,"node":17845,"name":"/run/systemd/journal/stdout"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"15u","type":"unix","device":"0xffff96aeb6713c00","size_off":0,"node":14409,"name":"/run/systemd/journal/stdout"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"16u","type":"unix","device":"0xffff96afb4d71800","size_off":0,"node":18956,"name":"/run/systemd/journal/stdout"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"17u","type":"unix","device":"0xffff96aeb677e000","size_off":0,"node":14760,"name":"/run/systemd/journal/stdout"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"21u","type":"unix","device":"0xffff96afb5775c00","size_off":0,"node":18141,"name":"/run/systemd/journal/stdout"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"22u","type":"unix","device":"0xffff96af33931800","size_off":0,"node":21303,"name":"/run/systemd/journal/stdout"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"23u","type":"unix","device":"0xffff96afb573d800","size_off":0,"node":21430,"name":"/run/systemd/journal/stdout"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"24u","type":"unix","device":"0xffff96afb5767800","size_off":0,"node":18419,"name":"/run/systemd/journal/stdout"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"25u","type":"unix","device":"0xffff96afb573b800","size_off":0,"node":21448,"name":"/run/systemd/journal/stdout"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":73376,"node":3435,"name":"/usr/sbin/lvmetad"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":91024,"node":33744,"name":"/usr/lib64/libudev.so.1.6.2"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":660208,"node":9827,"name":"/usr/lib64/libsepol.so.1"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":356112,"node":16794,"name":"/usr/lib64/libdevmapper.so.1.02"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":45344,"node":50610926,"name":"/etc/selinux/targeted/contexts/files/file_contexts.homedirs.bin"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1431995,"node":50392663,"name":"/etc/selinux/targeted/contexts/files/file_contexts.bin"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff96aeb6714c00","size_off":0,"node":14408,"name":"socket"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff96aeb6714c00","size_off":0,"node":14408,"name":"socket"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"3u","type":"unix","device":"0xffff96aeb677a800","size_off":0,"node":13918,"name":"/run/lvm/lvmetad.socket"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"4wW","type":"REG","device":"0,20","size_off":4,"node":14581,"name":"/run/lvmetad.pid"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":416168,"node":50360488,"name":"/usr/lib/systemd/systemd-udevd"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":8201136,"node":17105721,"name":"/etc/udev/hwdb.bin"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":483595,"node":17105570,"name":"/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/modules.symbols.bin"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":813600,"node":17072551,"name":"/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/modules.alias.bin"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":37056,"node":9833,"name":"/usr/lib64/libacl.so.1.1.0"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":91800,"node":32817,"name":"/usr/lib64/libkmod.so.2.2.10"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":265600,"node":8147,"name":"/usr/lib64/libblkid.so.1.1.0"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":379859,"node":16790240,"name":"/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/modules.dep.bin"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":45344,"node":50610926,"name":"/etc/selinux/targeted/contexts/files/file_contexts.homedirs.bin"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1431995,"node":50392663,"name":"/etc/selinux/targeted/contexts/files/file_contexts.bin"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":9425,"node":17105934,"name":"/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/modules.builtin.bin"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff96aeb6779000","size_off":0,"node":14759,"name":"socket"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff96aeb6779000","size_off":0,"node":14759,"name":"socket"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"3u","type":"netlink","device":null,"size_off":0,"node":14051,"name":"KOBJECT_UEVENT"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"4u","type":"unix","device":"0xffff96aeb6788000","size_off":0,"node":13962,"name":"/run/udev/control"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"5u","type":"unix","device":"0xffff96aeb6713400","size_off":0,"node":14838,"name":"socket"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"6r","type":"REG","device":"253,0","size_off":8201136,"node":17105721,"name":"/etc/udev/hwdb.bin"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"7r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"8u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[signalfd]"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"9u","type":"unix","device":"0xffff96afb46a5400","size_off":0,"node":14872,"name":"socket"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"10u","type":"unix","device":"0xffff96afb46a5c00","size_off":0,"node":14873,"name":"socket"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"11u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"xfs-buf/s","pid":629,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-buf/s","pid":629,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-buf/s","pid":629,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/629/exe"},{"command":"xfs-data/","pid":638,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-data/","pid":638,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-data/","pid":638,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/638/exe"},{"command":"xfs-conv/","pid":641,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-conv/","pid":641,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-conv/","pid":641,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/641/exe"},{"command":"xfs-cil/s","pid":646,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-cil/s","pid":646,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-cil/s","pid":646,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/646/exe"},{"command":"xfs-recla","pid":651,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-recla","pid":651,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-recla","pid":651,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/651/exe"},{"command":"xfs-log/s","pid":654,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-log/s","pid":654,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-log/s","pid":654,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/654/exe"},{"command":"xfs-eofbl","pid":658,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-eofbl","pid":658,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-eofbl","pid":658,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/658/exe"},{"command":"xfsaild/s","pid":667,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfsaild/s","pid":667,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfsaild/s","pid":667,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/667/exe"},{"command":"kworker/u","pid":675,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kworker/u","pid":675,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kworker/u","pid":675,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/675/exe"},{"command":"hci0","pid":677,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"hci0","pid":677,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"hci0","pid":677,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/677/exe"},{"command":"hci0","pid":678,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"hci0","pid":678,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"hci0","pid":678,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/678/exe"},{"command":"kworker/u","pid":681,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kworker/u","pid":681,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kworker/u","pid":681,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/681/exe"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":128664,"node":3639,"name":"/usr/sbin/auditd"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15688,"node":9878,"name":"/usr/lib64/libkeyutils.so.1.5"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":67104,"node":9952,"name":"/usr/lib64/libkrb5support.so.0.1"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15920,"node":7825,"name":"/usr/lib64/libcom_err.so.2.1"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":210784,"node":9845,"name":"/usr/lib64/libk5crypto.so.3.1"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":967784,"node":9948,"name":"/usr/lib64/libkrb5.so.3.3"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":320784,"node":8155,"name":"/usr/lib64/libgssapi_krb5.so.2.2"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":128456,"node":7752,"name":"/usr/lib64/libauparse.so.0.0.0"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":115848,"node":1452,"name":"/usr/lib64/libnsl-2.17.so"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":42520,"node":10468,"name":"/usr/lib64/libwrap.so.0.7.6"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"3u","type":"netlink","device":null,"size_off":0,"node":17617,"name":"AUDIT"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"5w","type":"REG","device":"253,0","size_off":2121390,"node":72,"name":"/var/log/audit/audit.log"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"6u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"7u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"8u","type":"unix","device":"0xffff96afb4d62c00","size_off":0,"node":17621,"name":"socket"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"9u","type":"unix","device":"0xffff96afb4d64800","size_off":0,"node":17630,"name":"socket"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"10u","type":"unix","device":"0xffff96afb4d63c00","size_off":0,"node":17631,"name":"socket"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":128664,"node":3639,"name":"/usr/sbin/auditd"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15688,"node":9878,"name":"/usr/lib64/libkeyutils.so.1.5"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":67104,"node":9952,"name":"/usr/lib64/libkrb5support.so.0.1"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15920,"node":7825,"name":"/usr/lib64/libcom_err.so.2.1"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":210784,"node":9845,"name":"/usr/lib64/libk5crypto.so.3.1"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":967784,"node":9948,"name":"/usr/lib64/libkrb5.so.3.3"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":320784,"node":8155,"name":"/usr/lib64/libgssapi_krb5.so.2.2"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":128456,"node":7752,"name":"/usr/lib64/libauparse.so.0.0.0"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":115848,"node":1452,"name":"/usr/lib64/libnsl-2.17.so"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":42520,"node":10468,"name":"/usr/lib64/libwrap.so.0.7.6"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"3u","type":"netlink","device":null,"size_off":0,"node":17617,"name":"AUDIT"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"5w","type":"REG","device":"253,0","size_off":2121390,"node":72,"name":"/var/log/audit/audit.log"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"6u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"7u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"8u","type":"unix","device":"0xffff96afb4d62c00","size_off":0,"node":17621,"name":"socket"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"9u","type":"unix","device":"0xffff96afb4d64800","size_off":0,"node":17630,"name":"socket"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"10u","type":"unix","device":"0xffff96afb4d63c00","size_off":0,"node":17631,"name":"socket"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"txt","type":"REG","device":"253,0","size_off":223320,"node":50360532,"name":"/usr/bin/dbus-daemon"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":173320,"node":10025,"name":"/usr/lib64/libexpat.so.1.6.0"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":333384,"node":33781,"name":"/usr/lib64/libdbus-1.so.3.14.14"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"1u","type":"unix","device":"0xffff96afb4d62800","size_off":0,"node":17844,"name":"socket"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"2u","type":"unix","device":"0xffff96afb4d62800","size_off":0,"node":17844,"name":"socket"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"3u","type":"unix","device":"0xffff96afb4d62400","size_off":0,"node":17785,"name":"/run/dbus/system_bus_socket"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"5u","type":"sock","device":"0,7","size_off":0,"node":17853,"name":"protocol: NETLINK"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"6u","type":"netlink","device":null,"size_off":0,"node":17854,"name":"SELINUX"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"7r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"8u","type":"unix","device":"0xffff96afb4d60000","size_off":0,"node":17859,"name":"socket"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"9u","type":"unix","device":"0xffff96afb4d61000","size_off":0,"node":17860,"name":"socket"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"10u","type":"unix","device":"0xffff96afb4d64000","size_off":0,"node":17861,"name":"/run/dbus/system_bus_socket"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"11u","type":"unix","device":"0xffff96afb4d77800","size_off":0,"node":18364,"name":"/run/dbus/system_bus_socket"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"12u","type":"unix","device":"0xffff96afb5766000","size_off":0,"node":18610,"name":"/run/dbus/system_bus_socket"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"13u","type":"unix","device":"0xffff96aeb670dc00","size_off":0,"node":18893,"name":"/run/dbus/system_bus_socket"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"14u","type":"unix","device":"0xffff96afb573e000","size_off":0,"node":19006,"name":"/run/dbus/system_bus_socket"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"15u","type":"unix","device":"0xffff96afb573c800","size_off":0,"node":19075,"name":"socket"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"16u","type":"unix","device":"0xffff96afb4b95400","size_off":0,"node":22479,"name":"/run/dbus/system_bus_socket"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"19u","type":"unix","device":"0xffff96afb573a400","size_off":0,"node":20120,"name":"/run/dbus/system_bus_socket"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"20u","type":"unix","device":"0xffff96af325fe800","size_off":0,"node":23047,"name":"/run/dbus/system_bus_socket"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"txt","type":"REG","device":"253,0","size_off":223320,"node":50360532,"name":"/usr/bin/dbus-daemon"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":173320,"node":10025,"name":"/usr/lib64/libexpat.so.1.6.0"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":333384,"node":33781,"name":"/usr/lib64/libdbus-1.so.3.14.14"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"1u","type":"unix","device":"0xffff96afb4d62800","size_off":0,"node":17844,"name":"socket"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"2u","type":"unix","device":"0xffff96afb4d62800","size_off":0,"node":17844,"name":"socket"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"3u","type":"unix","device":"0xffff96afb4d62400","size_off":0,"node":17785,"name":"/run/dbus/system_bus_socket"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"5u","type":"sock","device":"0,7","size_off":0,"node":17853,"name":"protocol: NETLINK"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"6u","type":"netlink","device":null,"size_off":0,"node":17854,"name":"SELINUX"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"7r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"8u","type":"unix","device":"0xffff96afb4d60000","size_off":0,"node":17859,"name":"socket"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"9u","type":"unix","device":"0xffff96afb4d61000","size_off":0,"node":17860,"name":"socket"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"10u","type":"unix","device":"0xffff96afb4d64000","size_off":0,"node":17861,"name":"/run/dbus/system_bus_socket"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"11u","type":"unix","device":"0xffff96afb4d77800","size_off":0,"node":18364,"name":"/run/dbus/system_bus_socket"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"12u","type":"unix","device":"0xffff96afb5766000","size_off":0,"node":18610,"name":"/run/dbus/system_bus_socket"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"13u","type":"unix","device":"0xffff96aeb670dc00","size_off":0,"node":18893,"name":"/run/dbus/system_bus_socket"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"14u","type":"unix","device":"0xffff96afb573e000","size_off":0,"node":19006,"name":"/run/dbus/system_bus_socket"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"15u","type":"unix","device":"0xffff96afb573c800","size_off":0,"node":19075,"name":"socket"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"16u","type":"unix","device":"0xffff96afb4b95400","size_off":0,"node":22479,"name":"/run/dbus/system_bus_socket"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"19u","type":"unix","device":"0xffff96afb573a400","size_off":0,"node":20120,"name":"/run/dbus/system_bus_socket"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"20u","type":"unix","device":"0xffff96af325fe800","size_off":0,"node":23047,"name":"/run/dbus/system_bus_socket"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"txt","type":"REG","device":"253,0","size_off":120432,"node":50360556,"name":"/usr/lib/polkit-1/polkitd"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":265600,"node":8147,"name":"/usr/lib64/libblkid.so.1.1.0"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":991616,"node":32681,"name":"/usr/lib64/libstdc++.so.6.0.19"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":251792,"node":1468,"name":"/usr/lib64/libnspr4.so"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":20040,"node":1469,"name":"/usr/lib64/libplc4.so"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":15744,"node":1471,"name":"/usr/lib64/libplds4.so"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":277808,"node":8164,"name":"/usr/lib64/libmount.so.1.1.0"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":32304,"node":9828,"name":"/usr/lib64/libffi.so.6.0.1"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":15640,"node":9972,"name":"/usr/lib64/libgmodule-2.0.so.0.5600.1"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":4028168,"node":33229,"name":"/usr/lib64/libmozjs-17.0.so"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":173320,"node":10025,"name":"/usr/lib64/libexpat.so.1.6.0"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":1156656,"node":9967,"name":"/usr/lib64/libglib-2.0.so.0.5600.1"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":339112,"node":10068,"name":"/usr/lib64/libgobject-2.0.so.0.5600.1"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":1722920,"node":9963,"name":"/usr/lib64/libgio-2.0.so.0.5600.1"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":118704,"node":1479,"name":"/usr/lib64/libpolkit-gobject-1.so.0.0.0"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":26254,"node":16789060,"name":"/usr/lib64/gconv/gconv-modules.cache"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"3r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"5u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"6u","type":"unix","device":"0xffff96afb5760400","size_off":0,"node":18604,"name":"socket"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"7u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"8r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"9u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"10u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"11u","type":"unix","device":"0xffff96afb5770800","size_off":0,"node":18730,"name":"socket"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"txt","type":"REG","device":"253,0","size_off":120432,"node":50360556,"name":"/usr/lib/polkit-1/polkitd"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":265600,"node":8147,"name":"/usr/lib64/libblkid.so.1.1.0"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":991616,"node":32681,"name":"/usr/lib64/libstdc++.so.6.0.19"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":251792,"node":1468,"name":"/usr/lib64/libnspr4.so"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":20040,"node":1469,"name":"/usr/lib64/libplc4.so"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":15744,"node":1471,"name":"/usr/lib64/libplds4.so"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":277808,"node":8164,"name":"/usr/lib64/libmount.so.1.1.0"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":32304,"node":9828,"name":"/usr/lib64/libffi.so.6.0.1"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":15640,"node":9972,"name":"/usr/lib64/libgmodule-2.0.so.0.5600.1"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":4028168,"node":33229,"name":"/usr/lib64/libmozjs-17.0.so"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":173320,"node":10025,"name":"/usr/lib64/libexpat.so.1.6.0"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":1156656,"node":9967,"name":"/usr/lib64/libglib-2.0.so.0.5600.1"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":339112,"node":10068,"name":"/usr/lib64/libgobject-2.0.so.0.5600.1"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":1722920,"node":9963,"name":"/usr/lib64/libgio-2.0.so.0.5600.1"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":118704,"node":1479,"name":"/usr/lib64/libpolkit-gobject-1.so.0.0.0"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":26254,"node":16789060,"name":"/usr/lib64/gconv/gconv-modules.cache"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"3r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"5u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"6u","type":"unix","device":"0xffff96afb5760400","size_off":0,"node":18604,"name":"socket"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"7u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"8r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"9u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"10u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"11u","type":"unix","device":"0xffff96afb5770800","size_off":0,"node":18730,"name":"socket"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"txt","type":"REG","device":"253,0","size_off":120432,"node":50360556,"name":"/usr/lib/polkit-1/polkitd"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":265600,"node":8147,"name":"/usr/lib64/libblkid.so.1.1.0"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":991616,"node":32681,"name":"/usr/lib64/libstdc++.so.6.0.19"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":251792,"node":1468,"name":"/usr/lib64/libnspr4.so"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":20040,"node":1469,"name":"/usr/lib64/libplc4.so"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":15744,"node":1471,"name":"/usr/lib64/libplds4.so"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":277808,"node":8164,"name":"/usr/lib64/libmount.so.1.1.0"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":32304,"node":9828,"name":"/usr/lib64/libffi.so.6.0.1"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":15640,"node":9972,"name":"/usr/lib64/libgmodule-2.0.so.0.5600.1"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":4028168,"node":33229,"name":"/usr/lib64/libmozjs-17.0.so"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":173320,"node":10025,"name":"/usr/lib64/libexpat.so.1.6.0"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":1156656,"node":9967,"name":"/usr/lib64/libglib-2.0.so.0.5600.1"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":339112,"node":10068,"name":"/usr/lib64/libgobject-2.0.so.0.5600.1"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":1722920,"node":9963,"name":"/usr/lib64/libgio-2.0.so.0.5600.1"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":118704,"node":1479,"name":"/usr/lib64/libpolkit-gobject-1.so.0.0.0"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":26254,"node":16789060,"name":"/usr/lib64/gconv/gconv-modules.cache"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"3r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"5u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"6u","type":"unix","device":"0xffff96afb5760400","size_off":0,"node":18604,"name":"socket"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"7u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"8r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"9u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"10u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"11u","type":"unix","device":"0xffff96afb5770800","size_off":0,"node":18730,"name":"socket"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"txt","type":"REG","device":"253,0","size_off":120432,"node":50360556,"name":"/usr/lib/polkit-1/polkitd"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":265600,"node":8147,"name":"/usr/lib64/libblkid.so.1.1.0"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":991616,"node":32681,"name":"/usr/lib64/libstdc++.so.6.0.19"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":251792,"node":1468,"name":"/usr/lib64/libnspr4.so"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":20040,"node":1469,"name":"/usr/lib64/libplc4.so"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":15744,"node":1471,"name":"/usr/lib64/libplds4.so"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":277808,"node":8164,"name":"/usr/lib64/libmount.so.1.1.0"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":32304,"node":9828,"name":"/usr/lib64/libffi.so.6.0.1"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":15640,"node":9972,"name":"/usr/lib64/libgmodule-2.0.so.0.5600.1"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":4028168,"node":33229,"name":"/usr/lib64/libmozjs-17.0.so"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":173320,"node":10025,"name":"/usr/lib64/libexpat.so.1.6.0"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":1156656,"node":9967,"name":"/usr/lib64/libglib-2.0.so.0.5600.1"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":339112,"node":10068,"name":"/usr/lib64/libgobject-2.0.so.0.5600.1"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":1722920,"node":9963,"name":"/usr/lib64/libgio-2.0.so.0.5600.1"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":118704,"node":1479,"name":"/usr/lib64/libpolkit-gobject-1.so.0.0.0"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":26254,"node":16789060,"name":"/usr/lib64/gconv/gconv-modules.cache"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"3r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"5u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"6u","type":"unix","device":"0xffff96afb5760400","size_off":0,"node":18604,"name":"socket"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"7u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"8r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"9u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"10u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"11u","type":"unix","device":"0xffff96afb5770800","size_off":0,"node":18730,"name":"socket"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"txt","type":"REG","device":"253,0","size_off":120432,"node":50360556,"name":"/usr/lib/polkit-1/polkitd"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":265600,"node":8147,"name":"/usr/lib64/libblkid.so.1.1.0"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":991616,"node":32681,"name":"/usr/lib64/libstdc++.so.6.0.19"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":251792,"node":1468,"name":"/usr/lib64/libnspr4.so"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":20040,"node":1469,"name":"/usr/lib64/libplc4.so"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":15744,"node":1471,"name":"/usr/lib64/libplds4.so"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":277808,"node":8164,"name":"/usr/lib64/libmount.so.1.1.0"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":32304,"node":9828,"name":"/usr/lib64/libffi.so.6.0.1"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":15640,"node":9972,"name":"/usr/lib64/libgmodule-2.0.so.0.5600.1"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":4028168,"node":33229,"name":"/usr/lib64/libmozjs-17.0.so"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":173320,"node":10025,"name":"/usr/lib64/libexpat.so.1.6.0"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":1156656,"node":9967,"name":"/usr/lib64/libglib-2.0.so.0.5600.1"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":339112,"node":10068,"name":"/usr/lib64/libgobject-2.0.so.0.5600.1"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":1722920,"node":9963,"name":"/usr/lib64/libgio-2.0.so.0.5600.1"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":118704,"node":1479,"name":"/usr/lib64/libpolkit-gobject-1.so.0.0.0"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":26254,"node":16789060,"name":"/usr/lib64/gconv/gconv-modules.cache"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"3r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"5u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"6u","type":"unix","device":"0xffff96afb5760400","size_off":0,"node":18604,"name":"socket"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"7u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"8r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"9u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"10u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"11u","type":"unix","device":"0xffff96afb5770800","size_off":0,"node":18730,"name":"socket"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"txt","type":"REG","device":"253,0","size_off":120432,"node":50360556,"name":"/usr/lib/polkit-1/polkitd"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":265600,"node":8147,"name":"/usr/lib64/libblkid.so.1.1.0"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":991616,"node":32681,"name":"/usr/lib64/libstdc++.so.6.0.19"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":251792,"node":1468,"name":"/usr/lib64/libnspr4.so"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":20040,"node":1469,"name":"/usr/lib64/libplc4.so"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":15744,"node":1471,"name":"/usr/lib64/libplds4.so"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":277808,"node":8164,"name":"/usr/lib64/libmount.so.1.1.0"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":32304,"node":9828,"name":"/usr/lib64/libffi.so.6.0.1"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":15640,"node":9972,"name":"/usr/lib64/libgmodule-2.0.so.0.5600.1"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":4028168,"node":33229,"name":"/usr/lib64/libmozjs-17.0.so"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":173320,"node":10025,"name":"/usr/lib64/libexpat.so.1.6.0"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":1156656,"node":9967,"name":"/usr/lib64/libglib-2.0.so.0.5600.1"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":339112,"node":10068,"name":"/usr/lib64/libgobject-2.0.so.0.5600.1"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":1722920,"node":9963,"name":"/usr/lib64/libgio-2.0.so.0.5600.1"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":118704,"node":1479,"name":"/usr/lib64/libpolkit-gobject-1.so.0.0.0"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":26254,"node":16789060,"name":"/usr/lib64/gconv/gconv-modules.cache"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"3r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"5u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"6u","type":"unix","device":"0xffff96afb5760400","size_off":0,"node":18604,"name":"socket"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"7u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"8r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"9u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"10u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"11u","type":"unix","device":"0xffff96afb5770800","size_off":0,"node":18730,"name":"socket"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"txt","type":"REG","device":"253,0","size_off":120432,"node":50360556,"name":"/usr/lib/polkit-1/polkitd"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":265600,"node":8147,"name":"/usr/lib64/libblkid.so.1.1.0"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":991616,"node":32681,"name":"/usr/lib64/libstdc++.so.6.0.19"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":251792,"node":1468,"name":"/usr/lib64/libnspr4.so"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":20040,"node":1469,"name":"/usr/lib64/libplc4.so"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":15744,"node":1471,"name":"/usr/lib64/libplds4.so"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":277808,"node":8164,"name":"/usr/lib64/libmount.so.1.1.0"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":32304,"node":9828,"name":"/usr/lib64/libffi.so.6.0.1"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":15640,"node":9972,"name":"/usr/lib64/libgmodule-2.0.so.0.5600.1"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":4028168,"node":33229,"name":"/usr/lib64/libmozjs-17.0.so"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":173320,"node":10025,"name":"/usr/lib64/libexpat.so.1.6.0"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":1156656,"node":9967,"name":"/usr/lib64/libglib-2.0.so.0.5600.1"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":339112,"node":10068,"name":"/usr/lib64/libgobject-2.0.so.0.5600.1"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":1722920,"node":9963,"name":"/usr/lib64/libgio-2.0.so.0.5600.1"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":118704,"node":1479,"name":"/usr/lib64/libpolkit-gobject-1.so.0.0.0"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":26254,"node":16789060,"name":"/usr/lib64/gconv/gconv-modules.cache"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"3r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"5u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"6u","type":"unix","device":"0xffff96afb5760400","size_off":0,"node":18604,"name":"socket"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"7u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"8r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"9u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"10u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"11u","type":"unix","device":"0xffff96afb5770800","size_off":0,"node":18730,"name":"socket"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":635736,"node":50360467,"name":"/usr/lib/systemd/systemd-logind"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":37056,"node":9833,"name":"/usr/lib64/libacl.so.1.1.0"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff96afb5775800","size_off":0,"node":18140,"name":"socket"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff96afb5775800","size_off":0,"node":18140,"name":"socket"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"3u","type":"unix","device":"0xffff96afb5771800","size_off":0,"node":18269,"name":"socket"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"5u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[timerfd]"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"6r","type":"REG","device":"0,18","size_off":4096,"node":26737,"name":"/sys/devices/virtual/tty/tty0/active"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"7u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[signalfd]"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"8u","type":"netlink","device":null,"size_off":0,"node":18359,"name":"KOBJECT_UEVENT"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"9u","type":"netlink","device":null,"size_off":0,"node":18360,"name":"KOBJECT_UEVENT"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"10u","type":"netlink","device":null,"size_off":0,"node":18361,"name":"KOBJECT_UEVENT"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"11u","type":"netlink","device":null,"size_off":0,"node":18362,"name":"KOBJECT_UEVENT"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"12u","type":"unix","device":"0xffff96afb56a8800","size_off":0,"node":18363,"name":"socket"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"13u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[timerfd]"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"14u","type":"CHR","device":"13,64","size_off":0,"node":8504,"name":"/dev/input/event0"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"15u","type":"CHR","device":"4,6","size_off":0,"node":6505,"name":"/dev/tty6"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"16r","type":"FIFO","device":"0,20","size_off":0,"node":20214,"name":"/run/systemd/inhibit/1.ref"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"17r","type":"FIFO","device":"0,20","size_off":0,"node":23441,"name":"/run/systemd/sessions/1.ref"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"18r","type":"FIFO","device":"0,20","size_off":0,"node":44958,"name":"/run/systemd/sessions/17.ref"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":70216,"node":33648,"name":"/usr/sbin/crond"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61672,"node":10149,"name":"/usr/lib64/libpam.so.0.83.1"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff96afb5767400","size_off":0,"node":18418,"name":"socket"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff96afb5767400","size_off":0,"node":18418,"name":"socket"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"3uW","type":"REG","device":"0,20","size_off":4,"node":18523,"name":"/run/crond.pid"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"4u","type":"unix","device":"0xffff96afb5765c00","size_off":0,"node":18549,"name":"socket"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"5r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"txt","type":"REG","device":"253,0","size_off":269392,"node":34110,"name":"/usr/sbin/chronyd"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"mem","type":"REG","device":"253,0","size_off":86472,"node":33489,"name":"/usr/lib64/libnss_myhostname.so.2"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"mem","type":"REG","device":"253,0","size_off":31408,"node":503056,"name":"/usr/lib64/libnss_dns-2.17.so"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"mem","type":"REG","device":"253,0","size_off":266680,"node":33458,"name":"/usr/lib64/libseccomp.so.2.3.1"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"mem","type":"REG","device":"253,0","size_off":11392,"node":7832,"name":"/usr/lib64/libfreebl3.so"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"1w","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"3u","type":"unix","device":"0xffff96afb5764c00","size_off":0,"node":18498,"name":"socket"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"5u","type":"IPv4","device":"18535","size_off":0,"node":null,"name":"localhost:323"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"6u","type":"IPv6","device":"18536","size_off":0,"node":null,"name":"localhost:323"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"7r","type":"CHR","device":"1,9","size_off":0,"node":6490,"name":"/dev/urandom"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"8u","type":"unix","device":"0xffff96afb5762400","size_off":0,"node":18547,"name":"/var/run/chrony/chronyd.sock"},{"command":"agetty","pid":815,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"agetty","pid":815,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"agetty","pid":815,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":49640,"node":32755,"name":"/usr/sbin/agetty"},{"command":"agetty","pid":815,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"agetty","pid":815,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"agetty","pid":815,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"agetty","pid":815,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"agetty","pid":815,"tid":null,"user":"root","fd":"0u","type":"CHR","device":"4,1","size_off":0,"node":6500,"name":"/dev/tty1"},{"command":"agetty","pid":815,"tid":null,"user":"root","fd":"1u","type":"CHR","device":"4,1","size_off":0,"node":6500,"name":"/dev/tty1"},{"command":"agetty","pid":815,"tid":null,"user":"root","fd":"2u","type":"CHR","device":"4,1","size_off":0,"node":6500,"name":"/dev/tty1"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":37248,"node":50358286,"name":"/usr/bin/login"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":14496,"node":503085,"name":"/usr/lib64/libutil-2.17.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15480,"node":50338864,"name":"/usr/lib64/security/pam_lastlog.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":309168,"node":50359979,"name":"/usr/lib64/security/pam_systemd.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19600,"node":50338865,"name":"/usr/lib64/security/pam_limits.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11152,"node":50338863,"name":"/usr/lib64/security/pam_keyinit.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":40784,"node":50338872,"name":"/usr/lib64/security/pam_namespace.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":28256,"node":50338850,"name":"/usr/lib64/security/pam_console.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11200,"node":50338868,"name":"/usr/lib64/security/pam_loginuid.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19760,"node":50338880,"name":"/usr/lib64/security/pam_selinux.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":44600,"node":10026,"name":"/usr/lib64/libcrack.so.2.9.0"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23832,"node":10300,"name":"/usr/lib64/libpwquality.so.1.0.2"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11232,"node":50339023,"name":"/usr/lib64/security/pam_pwquality.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":6984,"node":50338874,"name":"/usr/lib64/security/pam_permit.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11144,"node":50338867,"name":"/usr/lib64/security/pam_localuser.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11176,"node":50338873,"name":"/usr/lib64/security/pam_nologin.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":6872,"node":50338853,"name":"/usr/lib64/security/pam_deny.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15408,"node":50338885,"name":"/usr/lib64/security/pam_succeed_if.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11392,"node":7832,"name":"/usr/lib64/libfreebl3.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":115848,"node":1452,"name":"/usr/lib64/libnsl-2.17.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":40664,"node":1119,"name":"/usr/lib64/libcrypt-2.17.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":57728,"node":50338891,"name":"/usr/lib64/security/pam_unix.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11168,"node":50338857,"name":"/usr/lib64/security/pam_faildelay.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15552,"node":50338855,"name":"/usr/lib64/security/pam_env.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11216,"node":50338879,"name":"/usr/lib64/security/pam_securetty.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15632,"node":10151,"name":"/usr/lib64/libpam_misc.so.0.82.0"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61672,"node":10149,"name":"/usr/lib64/libpam.so.0.83.1"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":26254,"node":16789060,"name":"/usr/lib64/gconv/gconv-modules.cache"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"5w","type":"FIFO","device":"0,20","size_off":0,"node":23441,"name":"/run/systemd/sessions/1.ref"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":7216,"node":50359089,"name":"/usr/bin/python2.7"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":298820,"node":50360560,"name":"/usr/lib64/girepository-1.0/NM-1.0.typelib"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":343452,"node":50359338,"name":"/usr/lib64/girepository-1.0/Gio-2.0.typelib"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":12408,"node":50338621,"name":"/usr/lib64/python2.7/lib-dynload/grpmodule.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":168312,"node":102248,"name":"/usr/lib64/libdbus-glib-1.so.2.2.2"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11976,"node":102254,"name":"/usr/lib64/python2.7/site-packages/_dbus_glib_bindings.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":185712,"node":50359335,"name":"/usr/lib64/girepository-1.0/GLib-2.0.typelib"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":265600,"node":8147,"name":"/usr/lib64/libblkid.so.1.1.0"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":277808,"node":8164,"name":"/usr/lib64/libmount.so.1.1.0"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1722920,"node":9963,"name":"/usr/lib64/libgio-2.0.so.0.5600.1"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15640,"node":9972,"name":"/usr/lib64/libgmodule-2.0.so.0.5600.1"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":32304,"node":9828,"name":"/usr/lib64/libffi.so.6.0.1"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1156656,"node":9967,"name":"/usr/lib64/libglib-2.0.so.0.5600.1"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":339112,"node":10068,"name":"/usr/lib64/libgobject-2.0.so.0.5600.1"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":217144,"node":32802,"name":"/usr/lib64/libgirepository-1.0.so.1.0.0"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":6952,"node":10074,"name":"/usr/lib64/libgthread-2.0.so.0.5600.1"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":331480,"node":17071684,"name":"/usr/lib64/python2.7/site-packages/gi/_gi.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":29264,"node":50358903,"name":"/usr/lib64/python2.7/lib-dynload/selectmodule.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11672,"node":50742920,"name":"/usr/lib64/python2.7/lib-dynload/syslog.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19264,"node":50338618,"name":"/usr/lib64/python2.7/lib-dynload/fcntlmodule.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":16432,"node":50359923,"name":"/usr/lib64/python2.7/lib-dynload/_randommodule.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":22880,"node":50359914,"name":"/usr/lib64/python2.7/lib-dynload/_hashlib.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":25768,"node":50338601,"name":"/usr/lib64/python2.7/lib-dynload/binascii.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":37384,"node":50358881,"name":"/usr/lib64/python2.7/lib-dynload/math.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":156960,"node":50359917,"name":"/usr/lib64/python2.7/lib-dynload/_io.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15688,"node":9878,"name":"/usr/lib64/libkeyutils.so.1.5"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":67104,"node":9952,"name":"/usr/lib64/libkrb5support.so.0.1"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":210784,"node":9845,"name":"/usr/lib64/libk5crypto.so.3.1"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15920,"node":7825,"name":"/usr/lib64/libcom_err.so.2.1"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":967784,"node":9948,"name":"/usr/lib64/libkrb5.so.3.3"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":320784,"node":8155,"name":"/usr/lib64/libgssapi_krb5.so.2.2"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":470376,"node":9842,"name":"/usr/lib64/libssl.so.1.0.2k"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":95120,"node":50338580,"name":"/usr/lib64/python2.7/lib-dynload/_ssl.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":83968,"node":50359924,"name":"/usr/lib64/python2.7/lib-dynload/_socketmodule.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":39024,"node":50338821,"name":"/usr/lib64/python2.7/lib-dynload/_struct.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":21344,"node":50359919,"name":"/usr/lib64/python2.7/lib-dynload/_localemodule.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":17056,"node":50359913,"name":"/usr/lib64/python2.7/lib-dynload/_functoolsmodule.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":28736,"node":50742918,"name":"/usr/lib64/python2.7/lib-dynload/stropmodule.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":173320,"node":10025,"name":"/usr/lib64/libexpat.so.1.6.0"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":54544,"node":50358894,"name":"/usr/lib64/python2.7/lib-dynload/pyexpat.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":22920,"node":50359915,"name":"/usr/lib64/python2.7/lib-dynload/_heapq.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":62096,"node":50338582,"name":"/usr/lib64/python2.7/lib-dynload/itertoolsmodule.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":47672,"node":50742588,"name":"/usr/lib64/python2.7/lib-dynload/operator.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":33096,"node":50358878,"name":"/usr/lib64/python2.7/lib-dynload/_collectionsmodule.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23992,"node":50338604,"name":"/usr/lib64/python2.7/lib-dynload/cStringIO.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":25064,"node":50742922,"name":"/usr/lib64/python2.7/lib-dynload/timemodule.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":333384,"node":33781,"name":"/usr/lib64/libdbus-1.so.3.14.14"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":166248,"node":102253,"name":"/usr/lib64/python2.7/site-packages/_dbus_bindings.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":14496,"node":503085,"name":"/usr/lib64/libutil-2.17.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1847496,"node":9994,"name":"/usr/lib64/libpython2.7.so.1.0"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":59120,"node":50359337,"name":"/usr/lib64/girepository-1.0/GObject-2.0.typelib"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"DEL","type":"REG","device":"253,0","size_off":null,"node":16777637,"name":"/tmp/ffiCvbwRW"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"1w","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"2w","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"3w","type":"REG","device":"253,0","size_off":41033,"node":33614496,"name":"/var/log/firewalld"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"4u","type":"unix","device":"0xffff96aeb670d400","size_off":0,"node":18892,"name":"socket"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"5u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"6u","type":"REG","device":"253,0","size_off":4096,"node":16777637,"name":"/tmp/ffiCvbwRW (deleted)"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"7r","type":"CHR","device":"1,9","size_off":0,"node":6490,"name":"/dev/urandom"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"8r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"9u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"10u","type":"unix","device":"0xffff96afb4b92000","size_off":0,"node":22509,"name":"socket"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":7216,"node":50359089,"name":"/usr/bin/python2.7"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":298820,"node":50360560,"name":"/usr/lib64/girepository-1.0/NM-1.0.typelib"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":343452,"node":50359338,"name":"/usr/lib64/girepository-1.0/Gio-2.0.typelib"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":12408,"node":50338621,"name":"/usr/lib64/python2.7/lib-dynload/grpmodule.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":168312,"node":102248,"name":"/usr/lib64/libdbus-glib-1.so.2.2.2"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11976,"node":102254,"name":"/usr/lib64/python2.7/site-packages/_dbus_glib_bindings.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":185712,"node":50359335,"name":"/usr/lib64/girepository-1.0/GLib-2.0.typelib"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":265600,"node":8147,"name":"/usr/lib64/libblkid.so.1.1.0"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":277808,"node":8164,"name":"/usr/lib64/libmount.so.1.1.0"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1722920,"node":9963,"name":"/usr/lib64/libgio-2.0.so.0.5600.1"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15640,"node":9972,"name":"/usr/lib64/libgmodule-2.0.so.0.5600.1"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":32304,"node":9828,"name":"/usr/lib64/libffi.so.6.0.1"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1156656,"node":9967,"name":"/usr/lib64/libglib-2.0.so.0.5600.1"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":339112,"node":10068,"name":"/usr/lib64/libgobject-2.0.so.0.5600.1"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":217144,"node":32802,"name":"/usr/lib64/libgirepository-1.0.so.1.0.0"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":6952,"node":10074,"name":"/usr/lib64/libgthread-2.0.so.0.5600.1"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":331480,"node":17071684,"name":"/usr/lib64/python2.7/site-packages/gi/_gi.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":29264,"node":50358903,"name":"/usr/lib64/python2.7/lib-dynload/selectmodule.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11672,"node":50742920,"name":"/usr/lib64/python2.7/lib-dynload/syslog.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19264,"node":50338618,"name":"/usr/lib64/python2.7/lib-dynload/fcntlmodule.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":16432,"node":50359923,"name":"/usr/lib64/python2.7/lib-dynload/_randommodule.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":22880,"node":50359914,"name":"/usr/lib64/python2.7/lib-dynload/_hashlib.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":25768,"node":50338601,"name":"/usr/lib64/python2.7/lib-dynload/binascii.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":37384,"node":50358881,"name":"/usr/lib64/python2.7/lib-dynload/math.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":156960,"node":50359917,"name":"/usr/lib64/python2.7/lib-dynload/_io.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15688,"node":9878,"name":"/usr/lib64/libkeyutils.so.1.5"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":67104,"node":9952,"name":"/usr/lib64/libkrb5support.so.0.1"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":210784,"node":9845,"name":"/usr/lib64/libk5crypto.so.3.1"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15920,"node":7825,"name":"/usr/lib64/libcom_err.so.2.1"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":967784,"node":9948,"name":"/usr/lib64/libkrb5.so.3.3"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":320784,"node":8155,"name":"/usr/lib64/libgssapi_krb5.so.2.2"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":470376,"node":9842,"name":"/usr/lib64/libssl.so.1.0.2k"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":95120,"node":50338580,"name":"/usr/lib64/python2.7/lib-dynload/_ssl.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":83968,"node":50359924,"name":"/usr/lib64/python2.7/lib-dynload/_socketmodule.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":39024,"node":50338821,"name":"/usr/lib64/python2.7/lib-dynload/_struct.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":21344,"node":50359919,"name":"/usr/lib64/python2.7/lib-dynload/_localemodule.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":17056,"node":50359913,"name":"/usr/lib64/python2.7/lib-dynload/_functoolsmodule.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":28736,"node":50742918,"name":"/usr/lib64/python2.7/lib-dynload/stropmodule.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":173320,"node":10025,"name":"/usr/lib64/libexpat.so.1.6.0"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":54544,"node":50358894,"name":"/usr/lib64/python2.7/lib-dynload/pyexpat.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":22920,"node":50359915,"name":"/usr/lib64/python2.7/lib-dynload/_heapq.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":62096,"node":50338582,"name":"/usr/lib64/python2.7/lib-dynload/itertoolsmodule.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":47672,"node":50742588,"name":"/usr/lib64/python2.7/lib-dynload/operator.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":33096,"node":50358878,"name":"/usr/lib64/python2.7/lib-dynload/_collectionsmodule.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23992,"node":50338604,"name":"/usr/lib64/python2.7/lib-dynload/cStringIO.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":25064,"node":50742922,"name":"/usr/lib64/python2.7/lib-dynload/timemodule.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":333384,"node":33781,"name":"/usr/lib64/libdbus-1.so.3.14.14"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":166248,"node":102253,"name":"/usr/lib64/python2.7/site-packages/_dbus_bindings.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":14496,"node":503085,"name":"/usr/lib64/libutil-2.17.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1847496,"node":9994,"name":"/usr/lib64/libpython2.7.so.1.0"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":59120,"node":50359337,"name":"/usr/lib64/girepository-1.0/GObject-2.0.typelib"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"DEL","type":"REG","device":"253,0","size_off":null,"node":16777637,"name":"/tmp/ffiCvbwRW"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"1w","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"2w","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"3w","type":"REG","device":"253,0","size_off":41033,"node":33614496,"name":"/var/log/firewalld"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"4u","type":"unix","device":"0xffff96aeb670d400","size_off":0,"node":18892,"name":"socket"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"5u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"6u","type":"REG","device":"253,0","size_off":4096,"node":16777637,"name":"/tmp/ffiCvbwRW (deleted)"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"7r","type":"CHR","device":"1,9","size_off":0,"node":6490,"name":"/dev/urandom"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"8r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"9u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"10u","type":"unix","device":"0xffff96afb4b92000","size_off":0,"node":22509,"name":"socket"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":2957744,"node":1486,"name":"/usr/sbin/NetworkManager"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":86472,"node":33489,"name":"/usr/lib64/libnss_myhostname.so.2"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":31408,"node":503056,"name":"/usr/lib64/libnss_dns-2.17.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":152272,"node":297594,"name":"/usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-device-plugin-wifi.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":333384,"node":33781,"name":"/usr/lib64/libdbus-1.so.3.14.14"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":53944,"node":10457,"name":"/usr/lib64/libjansson.so.4.10.0"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23984,"node":34203,"name":"/usr/lib64/libteamdctl.so.0.1.5"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":41352,"node":297593,"name":"/usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-device-plugin-team.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":24320,"node":168491,"name":"/usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-settings-plugin-ibft.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":248184,"node":168492,"name":"/usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-settings-plugin-ifcfg-rh.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11392,"node":7832,"name":"/usr/lib64/libfreebl3.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":40664,"node":1119,"name":"/usr/lib64/libcrypt-2.17.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":121320,"node":10329,"name":"/usr/lib64/libsasl2.so.3.0.0"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15688,"node":9878,"name":"/usr/lib64/libkeyutils.so.1.5"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":67104,"node":9952,"name":"/usr/lib64/libkrb5support.so.0.1"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":470376,"node":9842,"name":"/usr/lib64/libssl.so.1.0.2k"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":265600,"node":8147,"name":"/usr/lib64/libblkid.so.1.1.0"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":352608,"node":32968,"name":"/usr/lib64/libldap-2.4.so.2.10.7"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61952,"node":32966,"name":"/usr/lib64/liblber-2.4.so.2.10.7"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15920,"node":7825,"name":"/usr/lib64/libcom_err.so.2.1"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":210784,"node":9845,"name":"/usr/lib64/libk5crypto.so.3.1"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":967784,"node":9948,"name":"/usr/lib64/libkrb5.so.3.3"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":320784,"node":8155,"name":"/usr/lib64/libgssapi_krb5.so.2.2"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":186680,"node":32577,"name":"/usr/lib64/libssh2.so.1.0.1"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":208920,"node":10446,"name":"/usr/lib64/libidn.so.11.6.11"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":277808,"node":8164,"name":"/usr/lib64/libmount.so.1.1.0"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":32304,"node":9828,"name":"/usr/lib64/libffi.so.6.0.1"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":439320,"node":32975,"name":"/usr/lib64/libcurl.so.4.3.0"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":24448,"node":33454,"name":"/usr/lib64/libndp.so.0.0.0"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":91024,"node":33744,"name":"/usr/lib64/libudev.so.1.6.2"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1156656,"node":9967,"name":"/usr/lib64/libglib-2.0.so.0.5600.1"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15640,"node":9972,"name":"/usr/lib64/libgmodule-2.0.so.0.5600.1"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":339112,"node":10068,"name":"/usr/lib64/libgobject-2.0.so.0.5600.1"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1722920,"node":9963,"name":"/usr/lib64/libgio-2.0.so.0.5600.1"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":251792,"node":1468,"name":"/usr/lib64/libnspr4.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20040,"node":1469,"name":"/usr/lib64/libplc4.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15744,"node":1471,"name":"/usr/lib64/libplds4.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":198960,"node":1472,"name":"/usr/lib64/libnssutil3.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1257792,"node":33488,"name":"/usr/lib64/libnss3.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":168336,"node":503336,"name":"/usr/lib64/libsmime3.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":370584,"node":503337,"name":"/usr/lib64/libssl3.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":26254,"node":16789060,"name":"/usr/lib64/gconv/gconv-modules.cache"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff96afb4d75800","size_off":0,"node":18955,"name":"socket"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff96afb4d75800","size_off":0,"node":18955,"name":"socket"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"3u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"5u","type":"unix","device":"0xffff96afb5770c00","size_off":0,"node":18979,"name":"socket"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"6r","type":"REG","device":"0,3","size_off":0,"node":4026531956,"name":"net"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"7r","type":"REG","device":"0,3","size_off":0,"node":4026532390,"name":"mnt"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"8u","type":"netlink","device":null,"size_off":0,"node":18990,"name":"KOBJECT_UEVENT"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"9u","type":"netlink","device":null,"size_off":0,"node":18991,"name":"GENERIC"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"10u","type":"netlink","device":null,"size_off":0,"node":18992,"name":"ROUTE"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"11u","type":"unix","device":"0xffff96afb573e400","size_off":0,"node":19005,"name":"socket"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"12u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"13r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"14r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"15u","type":"netlink","device":null,"size_off":0,"node":19858,"name":"KOBJECT_UEVENT"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"16u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"17u","type":"unix","device":"0xffff96afb573e800","size_off":0,"node":20119,"name":"socket"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"18u","type":"unix","device":"0xffff96af33897400","size_off":0,"node":20600,"name":"/var/run/NetworkManager/private-dhcp"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"19w","type":"FIFO","device":"0,20","size_off":0,"node":20214,"name":"/run/systemd/inhibit/1.ref"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"20u","type":"raw6","device":null,"size_off":0,"node":24206,"name":"00000000000000000000000000000000:003A->00000000000000000000000000000000:0000 st=07"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":2957744,"node":1486,"name":"/usr/sbin/NetworkManager"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":86472,"node":33489,"name":"/usr/lib64/libnss_myhostname.so.2"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":31408,"node":503056,"name":"/usr/lib64/libnss_dns-2.17.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":152272,"node":297594,"name":"/usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-device-plugin-wifi.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":333384,"node":33781,"name":"/usr/lib64/libdbus-1.so.3.14.14"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":53944,"node":10457,"name":"/usr/lib64/libjansson.so.4.10.0"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23984,"node":34203,"name":"/usr/lib64/libteamdctl.so.0.1.5"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":41352,"node":297593,"name":"/usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-device-plugin-team.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":24320,"node":168491,"name":"/usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-settings-plugin-ibft.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":248184,"node":168492,"name":"/usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-settings-plugin-ifcfg-rh.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11392,"node":7832,"name":"/usr/lib64/libfreebl3.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":40664,"node":1119,"name":"/usr/lib64/libcrypt-2.17.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":121320,"node":10329,"name":"/usr/lib64/libsasl2.so.3.0.0"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15688,"node":9878,"name":"/usr/lib64/libkeyutils.so.1.5"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":67104,"node":9952,"name":"/usr/lib64/libkrb5support.so.0.1"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":470376,"node":9842,"name":"/usr/lib64/libssl.so.1.0.2k"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":265600,"node":8147,"name":"/usr/lib64/libblkid.so.1.1.0"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":352608,"node":32968,"name":"/usr/lib64/libldap-2.4.so.2.10.7"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61952,"node":32966,"name":"/usr/lib64/liblber-2.4.so.2.10.7"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15920,"node":7825,"name":"/usr/lib64/libcom_err.so.2.1"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":210784,"node":9845,"name":"/usr/lib64/libk5crypto.so.3.1"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":967784,"node":9948,"name":"/usr/lib64/libkrb5.so.3.3"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":320784,"node":8155,"name":"/usr/lib64/libgssapi_krb5.so.2.2"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":186680,"node":32577,"name":"/usr/lib64/libssh2.so.1.0.1"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":208920,"node":10446,"name":"/usr/lib64/libidn.so.11.6.11"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":277808,"node":8164,"name":"/usr/lib64/libmount.so.1.1.0"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":32304,"node":9828,"name":"/usr/lib64/libffi.so.6.0.1"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":439320,"node":32975,"name":"/usr/lib64/libcurl.so.4.3.0"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":24448,"node":33454,"name":"/usr/lib64/libndp.so.0.0.0"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":91024,"node":33744,"name":"/usr/lib64/libudev.so.1.6.2"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1156656,"node":9967,"name":"/usr/lib64/libglib-2.0.so.0.5600.1"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15640,"node":9972,"name":"/usr/lib64/libgmodule-2.0.so.0.5600.1"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":339112,"node":10068,"name":"/usr/lib64/libgobject-2.0.so.0.5600.1"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1722920,"node":9963,"name":"/usr/lib64/libgio-2.0.so.0.5600.1"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":251792,"node":1468,"name":"/usr/lib64/libnspr4.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20040,"node":1469,"name":"/usr/lib64/libplc4.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15744,"node":1471,"name":"/usr/lib64/libplds4.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":198960,"node":1472,"name":"/usr/lib64/libnssutil3.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1257792,"node":33488,"name":"/usr/lib64/libnss3.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":168336,"node":503336,"name":"/usr/lib64/libsmime3.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":370584,"node":503337,"name":"/usr/lib64/libssl3.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":26254,"node":16789060,"name":"/usr/lib64/gconv/gconv-modules.cache"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"1u","type":"unix","device":"0xffff96afb4d75800","size_off":0,"node":18955,"name":"socket"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"2u","type":"unix","device":"0xffff96afb4d75800","size_off":0,"node":18955,"name":"socket"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"3u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"5u","type":"unix","device":"0xffff96afb5770c00","size_off":0,"node":18979,"name":"socket"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"6r","type":"REG","device":"0,3","size_off":0,"node":4026531956,"name":"net"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"7r","type":"REG","device":"0,3","size_off":0,"node":4026532390,"name":"mnt"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"8u","type":"netlink","device":null,"size_off":0,"node":18990,"name":"KOBJECT_UEVENT"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"9u","type":"netlink","device":null,"size_off":0,"node":18991,"name":"GENERIC"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"10u","type":"netlink","device":null,"size_off":0,"node":18992,"name":"ROUTE"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"11u","type":"unix","device":"0xffff96afb573e400","size_off":0,"node":19005,"name":"socket"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"12u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"13r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"14r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"15u","type":"netlink","device":null,"size_off":0,"node":19858,"name":"KOBJECT_UEVENT"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"16u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"17u","type":"unix","device":"0xffff96afb573e800","size_off":0,"node":20119,"name":"socket"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"18u","type":"unix","device":"0xffff96af33897400","size_off":0,"node":20600,"name":"/var/run/NetworkManager/private-dhcp"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"19w","type":"FIFO","device":"0,20","size_off":0,"node":20214,"name":"/run/systemd/inhibit/1.ref"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"20u","type":"raw6","device":null,"size_off":0,"node":24206,"name":"00000000000000000000000000000000:003A->00000000000000000000000000000000:0000 st=07"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":2957744,"node":1486,"name":"/usr/sbin/NetworkManager"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":86472,"node":33489,"name":"/usr/lib64/libnss_myhostname.so.2"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":31408,"node":503056,"name":"/usr/lib64/libnss_dns-2.17.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":152272,"node":297594,"name":"/usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-device-plugin-wifi.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":333384,"node":33781,"name":"/usr/lib64/libdbus-1.so.3.14.14"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":53944,"node":10457,"name":"/usr/lib64/libjansson.so.4.10.0"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23984,"node":34203,"name":"/usr/lib64/libteamdctl.so.0.1.5"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":41352,"node":297593,"name":"/usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-device-plugin-team.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":24320,"node":168491,"name":"/usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-settings-plugin-ibft.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":248184,"node":168492,"name":"/usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-settings-plugin-ifcfg-rh.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11392,"node":7832,"name":"/usr/lib64/libfreebl3.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":40664,"node":1119,"name":"/usr/lib64/libcrypt-2.17.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":121320,"node":10329,"name":"/usr/lib64/libsasl2.so.3.0.0"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15688,"node":9878,"name":"/usr/lib64/libkeyutils.so.1.5"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":67104,"node":9952,"name":"/usr/lib64/libkrb5support.so.0.1"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":470376,"node":9842,"name":"/usr/lib64/libssl.so.1.0.2k"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":265600,"node":8147,"name":"/usr/lib64/libblkid.so.1.1.0"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":352608,"node":32968,"name":"/usr/lib64/libldap-2.4.so.2.10.7"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61952,"node":32966,"name":"/usr/lib64/liblber-2.4.so.2.10.7"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15920,"node":7825,"name":"/usr/lib64/libcom_err.so.2.1"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":210784,"node":9845,"name":"/usr/lib64/libk5crypto.so.3.1"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":967784,"node":9948,"name":"/usr/lib64/libkrb5.so.3.3"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":320784,"node":8155,"name":"/usr/lib64/libgssapi_krb5.so.2.2"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":186680,"node":32577,"name":"/usr/lib64/libssh2.so.1.0.1"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":208920,"node":10446,"name":"/usr/lib64/libidn.so.11.6.11"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":277808,"node":8164,"name":"/usr/lib64/libmount.so.1.1.0"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":32304,"node":9828,"name":"/usr/lib64/libffi.so.6.0.1"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":439320,"node":32975,"name":"/usr/lib64/libcurl.so.4.3.0"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":24448,"node":33454,"name":"/usr/lib64/libndp.so.0.0.0"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":91024,"node":33744,"name":"/usr/lib64/libudev.so.1.6.2"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1156656,"node":9967,"name":"/usr/lib64/libglib-2.0.so.0.5600.1"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15640,"node":9972,"name":"/usr/lib64/libgmodule-2.0.so.0.5600.1"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":339112,"node":10068,"name":"/usr/lib64/libgobject-2.0.so.0.5600.1"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1722920,"node":9963,"name":"/usr/lib64/libgio-2.0.so.0.5600.1"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":251792,"node":1468,"name":"/usr/lib64/libnspr4.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20040,"node":1469,"name":"/usr/lib64/libplc4.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15744,"node":1471,"name":"/usr/lib64/libplds4.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":198960,"node":1472,"name":"/usr/lib64/libnssutil3.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1257792,"node":33488,"name":"/usr/lib64/libnss3.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":168336,"node":503336,"name":"/usr/lib64/libsmime3.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":370584,"node":503337,"name":"/usr/lib64/libssl3.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":26254,"node":16789060,"name":"/usr/lib64/gconv/gconv-modules.cache"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"1u","type":"unix","device":"0xffff96afb4d75800","size_off":0,"node":18955,"name":"socket"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"2u","type":"unix","device":"0xffff96afb4d75800","size_off":0,"node":18955,"name":"socket"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"3u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"5u","type":"unix","device":"0xffff96afb5770c00","size_off":0,"node":18979,"name":"socket"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"6r","type":"REG","device":"0,3","size_off":0,"node":4026531956,"name":"net"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"7r","type":"REG","device":"0,3","size_off":0,"node":4026532390,"name":"mnt"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"8u","type":"netlink","device":null,"size_off":0,"node":18990,"name":"KOBJECT_UEVENT"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"9u","type":"netlink","device":null,"size_off":0,"node":18991,"name":"GENERIC"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"10u","type":"netlink","device":null,"size_off":0,"node":18992,"name":"ROUTE"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"11u","type":"unix","device":"0xffff96afb573e400","size_off":0,"node":19005,"name":"socket"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"12u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"13r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"14r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"15u","type":"netlink","device":null,"size_off":0,"node":19858,"name":"KOBJECT_UEVENT"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"16u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"17u","type":"unix","device":"0xffff96afb573e800","size_off":0,"node":20119,"name":"socket"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"18u","type":"unix","device":"0xffff96af33897400","size_off":0,"node":20600,"name":"/var/run/NetworkManager/private-dhcp"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"19w","type":"FIFO","device":"0,20","size_off":0,"node":20214,"name":"/run/systemd/inhibit/1.ref"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"20u","type":"raw6","device":null,"size_off":0,"node":24206,"name":"00000000000000000000000000000000:003A->00000000000000000000000000000000:0000 st=07"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":33407632,"node":50705016,"name":"/usr/bin/dockerd-current"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":91024,"node":33744,"name":"/usr/lib64/libudev.so.1.6.2"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":660208,"node":9827,"name":"/usr/lib64/libsepol.so.1"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":70856,"node":10327,"name":"/usr/lib64/libassuan.so.0.4.0"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":212120,"node":102415,"name":"/usr/lib64/libgpgme.so.11.8.1"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":356112,"node":16794,"name":"/usr/lib64/libdevmapper.so.1.02"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":266680,"node":33458,"name":"/usr/lib64/libseccomp.so.2.3.1"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem-W","type":"REG","device":"253,0","size_off":32768,"node":34346870,"name":"/var/lib/docker/volumes/metadata.db"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"3u","type":"unix","device":"0xffff96afb728c800","size_off":0,"node":21801,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"5u","type":"unix","device":"0xffff96af34e1f800","size_off":0,"node":21822,"name":"/var/run/docker.sock"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"6u","type":"unix","device":"0xffff96af325fc800","size_off":0,"node":22240,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"7uW","type":"REG","device":"253,0","size_off":32768,"node":34346870,"name":"/var/lib/docker/volumes/metadata.db"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"8u","type":"unix","device":"0xffff96afb4b94400","size_off":0,"node":22478,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"9r","type":"REG","device":"0,3","size_off":0,"node":4026531956,"name":"net"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"10u","type":"netlink","device":null,"size_off":0,"node":22649,"name":"ROUTE"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"11u","type":"netlink","device":null,"size_off":0,"node":22650,"name":"XFRM"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"12u","type":"unix","device":"0xffff96afb4b97c00","size_off":0,"node":22839,"name":"/run/docker/libnetwork/fe53fe5029258e61eb7a9173ec80150ea3595abe7d69e47af064f451212110bf.sock"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":33407632,"node":50705016,"name":"/usr/bin/dockerd-current"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":91024,"node":33744,"name":"/usr/lib64/libudev.so.1.6.2"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":660208,"node":9827,"name":"/usr/lib64/libsepol.so.1"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":70856,"node":10327,"name":"/usr/lib64/libassuan.so.0.4.0"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":212120,"node":102415,"name":"/usr/lib64/libgpgme.so.11.8.1"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":356112,"node":16794,"name":"/usr/lib64/libdevmapper.so.1.02"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":266680,"node":33458,"name":"/usr/lib64/libseccomp.so.2.3.1"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem-W","type":"REG","device":"253,0","size_off":32768,"node":34346870,"name":"/var/lib/docker/volumes/metadata.db"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"1u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"2u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"3u","type":"unix","device":"0xffff96afb728c800","size_off":0,"node":21801,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"5u","type":"unix","device":"0xffff96af34e1f800","size_off":0,"node":21822,"name":"/var/run/docker.sock"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"6u","type":"unix","device":"0xffff96af325fc800","size_off":0,"node":22240,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"7uW","type":"REG","device":"253,0","size_off":32768,"node":34346870,"name":"/var/lib/docker/volumes/metadata.db"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"8u","type":"unix","device":"0xffff96afb4b94400","size_off":0,"node":22478,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"9r","type":"REG","device":"0,3","size_off":0,"node":4026531956,"name":"net"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"10u","type":"netlink","device":null,"size_off":0,"node":22649,"name":"ROUTE"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"11u","type":"netlink","device":null,"size_off":0,"node":22650,"name":"XFRM"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"12u","type":"unix","device":"0xffff96afb4b97c00","size_off":0,"node":22839,"name":"/run/docker/libnetwork/fe53fe5029258e61eb7a9173ec80150ea3595abe7d69e47af064f451212110bf.sock"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":33407632,"node":50705016,"name":"/usr/bin/dockerd-current"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":91024,"node":33744,"name":"/usr/lib64/libudev.so.1.6.2"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":660208,"node":9827,"name":"/usr/lib64/libsepol.so.1"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":70856,"node":10327,"name":"/usr/lib64/libassuan.so.0.4.0"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":212120,"node":102415,"name":"/usr/lib64/libgpgme.so.11.8.1"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":356112,"node":16794,"name":"/usr/lib64/libdevmapper.so.1.02"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":266680,"node":33458,"name":"/usr/lib64/libseccomp.so.2.3.1"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem-W","type":"REG","device":"253,0","size_off":32768,"node":34346870,"name":"/var/lib/docker/volumes/metadata.db"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"1u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"2u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"3u","type":"unix","device":"0xffff96afb728c800","size_off":0,"node":21801,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"5u","type":"unix","device":"0xffff96af34e1f800","size_off":0,"node":21822,"name":"/var/run/docker.sock"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"6u","type":"unix","device":"0xffff96af325fc800","size_off":0,"node":22240,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"7uW","type":"REG","device":"253,0","size_off":32768,"node":34346870,"name":"/var/lib/docker/volumes/metadata.db"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"8u","type":"unix","device":"0xffff96afb4b94400","size_off":0,"node":22478,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"9r","type":"REG","device":"0,3","size_off":0,"node":4026531956,"name":"net"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"10u","type":"netlink","device":null,"size_off":0,"node":22649,"name":"ROUTE"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"11u","type":"netlink","device":null,"size_off":0,"node":22650,"name":"XFRM"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"12u","type":"unix","device":"0xffff96afb4b97c00","size_off":0,"node":22839,"name":"/run/docker/libnetwork/fe53fe5029258e61eb7a9173ec80150ea3595abe7d69e47af064f451212110bf.sock"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":33407632,"node":50705016,"name":"/usr/bin/dockerd-current"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":91024,"node":33744,"name":"/usr/lib64/libudev.so.1.6.2"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":660208,"node":9827,"name":"/usr/lib64/libsepol.so.1"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":70856,"node":10327,"name":"/usr/lib64/libassuan.so.0.4.0"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":212120,"node":102415,"name":"/usr/lib64/libgpgme.so.11.8.1"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":356112,"node":16794,"name":"/usr/lib64/libdevmapper.so.1.02"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":266680,"node":33458,"name":"/usr/lib64/libseccomp.so.2.3.1"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem-W","type":"REG","device":"253,0","size_off":32768,"node":34346870,"name":"/var/lib/docker/volumes/metadata.db"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"1u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"2u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"3u","type":"unix","device":"0xffff96afb728c800","size_off":0,"node":21801,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"5u","type":"unix","device":"0xffff96af34e1f800","size_off":0,"node":21822,"name":"/var/run/docker.sock"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"6u","type":"unix","device":"0xffff96af325fc800","size_off":0,"node":22240,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"7uW","type":"REG","device":"253,0","size_off":32768,"node":34346870,"name":"/var/lib/docker/volumes/metadata.db"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"8u","type":"unix","device":"0xffff96afb4b94400","size_off":0,"node":22478,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"9r","type":"REG","device":"0,3","size_off":0,"node":4026531956,"name":"net"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"10u","type":"netlink","device":null,"size_off":0,"node":22649,"name":"ROUTE"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"11u","type":"netlink","device":null,"size_off":0,"node":22650,"name":"XFRM"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"12u","type":"unix","device":"0xffff96afb4b97c00","size_off":0,"node":22839,"name":"/run/docker/libnetwork/fe53fe5029258e61eb7a9173ec80150ea3595abe7d69e47af064f451212110bf.sock"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":33407632,"node":50705016,"name":"/usr/bin/dockerd-current"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":91024,"node":33744,"name":"/usr/lib64/libudev.so.1.6.2"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":660208,"node":9827,"name":"/usr/lib64/libsepol.so.1"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":70856,"node":10327,"name":"/usr/lib64/libassuan.so.0.4.0"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":212120,"node":102415,"name":"/usr/lib64/libgpgme.so.11.8.1"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":356112,"node":16794,"name":"/usr/lib64/libdevmapper.so.1.02"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":266680,"node":33458,"name":"/usr/lib64/libseccomp.so.2.3.1"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem-W","type":"REG","device":"253,0","size_off":32768,"node":34346870,"name":"/var/lib/docker/volumes/metadata.db"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"1u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"2u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"3u","type":"unix","device":"0xffff96afb728c800","size_off":0,"node":21801,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"5u","type":"unix","device":"0xffff96af34e1f800","size_off":0,"node":21822,"name":"/var/run/docker.sock"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"6u","type":"unix","device":"0xffff96af325fc800","size_off":0,"node":22240,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"7uW","type":"REG","device":"253,0","size_off":32768,"node":34346870,"name":"/var/lib/docker/volumes/metadata.db"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"8u","type":"unix","device":"0xffff96afb4b94400","size_off":0,"node":22478,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"9r","type":"REG","device":"0,3","size_off":0,"node":4026531956,"name":"net"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"10u","type":"netlink","device":null,"size_off":0,"node":22649,"name":"ROUTE"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"11u","type":"netlink","device":null,"size_off":0,"node":22650,"name":"XFRM"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"12u","type":"unix","device":"0xffff96afb4b97c00","size_off":0,"node":22839,"name":"/run/docker/libnetwork/fe53fe5029258e61eb7a9173ec80150ea3595abe7d69e47af064f451212110bf.sock"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":33407632,"node":50705016,"name":"/usr/bin/dockerd-current"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":91024,"node":33744,"name":"/usr/lib64/libudev.so.1.6.2"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":660208,"node":9827,"name":"/usr/lib64/libsepol.so.1"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":70856,"node":10327,"name":"/usr/lib64/libassuan.so.0.4.0"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":212120,"node":102415,"name":"/usr/lib64/libgpgme.so.11.8.1"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":356112,"node":16794,"name":"/usr/lib64/libdevmapper.so.1.02"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":266680,"node":33458,"name":"/usr/lib64/libseccomp.so.2.3.1"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem-W","type":"REG","device":"253,0","size_off":32768,"node":34346870,"name":"/var/lib/docker/volumes/metadata.db"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"1u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"2u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"3u","type":"unix","device":"0xffff96afb728c800","size_off":0,"node":21801,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"5u","type":"unix","device":"0xffff96af34e1f800","size_off":0,"node":21822,"name":"/var/run/docker.sock"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"6u","type":"unix","device":"0xffff96af325fc800","size_off":0,"node":22240,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"7uW","type":"REG","device":"253,0","size_off":32768,"node":34346870,"name":"/var/lib/docker/volumes/metadata.db"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"8u","type":"unix","device":"0xffff96afb4b94400","size_off":0,"node":22478,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"9r","type":"REG","device":"0,3","size_off":0,"node":4026531956,"name":"net"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"10u","type":"netlink","device":null,"size_off":0,"node":22649,"name":"ROUTE"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"11u","type":"netlink","device":null,"size_off":0,"node":22650,"name":"XFRM"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"12u","type":"unix","device":"0xffff96afb4b97c00","size_off":0,"node":22839,"name":"/run/docker/libnetwork/fe53fe5029258e61eb7a9173ec80150ea3595abe7d69e47af064f451212110bf.sock"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":33407632,"node":50705016,"name":"/usr/bin/dockerd-current"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":91024,"node":33744,"name":"/usr/lib64/libudev.so.1.6.2"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":660208,"node":9827,"name":"/usr/lib64/libsepol.so.1"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":70856,"node":10327,"name":"/usr/lib64/libassuan.so.0.4.0"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":212120,"node":102415,"name":"/usr/lib64/libgpgme.so.11.8.1"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":356112,"node":16794,"name":"/usr/lib64/libdevmapper.so.1.02"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":266680,"node":33458,"name":"/usr/lib64/libseccomp.so.2.3.1"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem-W","type":"REG","device":"253,0","size_off":32768,"node":34346870,"name":"/var/lib/docker/volumes/metadata.db"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"1u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"2u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"3u","type":"unix","device":"0xffff96afb728c800","size_off":0,"node":21801,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"5u","type":"unix","device":"0xffff96af34e1f800","size_off":0,"node":21822,"name":"/var/run/docker.sock"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"6u","type":"unix","device":"0xffff96af325fc800","size_off":0,"node":22240,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"7uW","type":"REG","device":"253,0","size_off":32768,"node":34346870,"name":"/var/lib/docker/volumes/metadata.db"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"8u","type":"unix","device":"0xffff96afb4b94400","size_off":0,"node":22478,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"9r","type":"REG","device":"0,3","size_off":0,"node":4026531956,"name":"net"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"10u","type":"netlink","device":null,"size_off":0,"node":22649,"name":"ROUTE"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"11u","type":"netlink","device":null,"size_off":0,"node":22650,"name":"XFRM"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"12u","type":"unix","device":"0xffff96afb4b97c00","size_off":0,"node":22839,"name":"/run/docker/libnetwork/fe53fe5029258e61eb7a9173ec80150ea3595abe7d69e47af064f451212110bf.sock"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":33407632,"node":50705016,"name":"/usr/bin/dockerd-current"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":91024,"node":33744,"name":"/usr/lib64/libudev.so.1.6.2"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":660208,"node":9827,"name":"/usr/lib64/libsepol.so.1"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":70856,"node":10327,"name":"/usr/lib64/libassuan.so.0.4.0"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":212120,"node":102415,"name":"/usr/lib64/libgpgme.so.11.8.1"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":356112,"node":16794,"name":"/usr/lib64/libdevmapper.so.1.02"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":266680,"node":33458,"name":"/usr/lib64/libseccomp.so.2.3.1"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem-W","type":"REG","device":"253,0","size_off":32768,"node":34346870,"name":"/var/lib/docker/volumes/metadata.db"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"1u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"2u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"3u","type":"unix","device":"0xffff96afb728c800","size_off":0,"node":21801,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"5u","type":"unix","device":"0xffff96af34e1f800","size_off":0,"node":21822,"name":"/var/run/docker.sock"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"6u","type":"unix","device":"0xffff96af325fc800","size_off":0,"node":22240,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"7uW","type":"REG","device":"253,0","size_off":32768,"node":34346870,"name":"/var/lib/docker/volumes/metadata.db"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"8u","type":"unix","device":"0xffff96afb4b94400","size_off":0,"node":22478,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"9r","type":"REG","device":"0,3","size_off":0,"node":4026531956,"name":"net"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"10u","type":"netlink","device":null,"size_off":0,"node":22649,"name":"ROUTE"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"11u","type":"netlink","device":null,"size_off":0,"node":22650,"name":"XFRM"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"12u","type":"unix","device":"0xffff96afb4b97c00","size_off":0,"node":22839,"name":"/run/docker/libnetwork/fe53fe5029258e61eb7a9173ec80150ea3595abe7d69e47af064f451212110bf.sock"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":33407632,"node":50705016,"name":"/usr/bin/dockerd-current"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":91024,"node":33744,"name":"/usr/lib64/libudev.so.1.6.2"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":660208,"node":9827,"name":"/usr/lib64/libsepol.so.1"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":70856,"node":10327,"name":"/usr/lib64/libassuan.so.0.4.0"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":212120,"node":102415,"name":"/usr/lib64/libgpgme.so.11.8.1"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":356112,"node":16794,"name":"/usr/lib64/libdevmapper.so.1.02"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":266680,"node":33458,"name":"/usr/lib64/libseccomp.so.2.3.1"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem-W","type":"REG","device":"253,0","size_off":32768,"node":34346870,"name":"/var/lib/docker/volumes/metadata.db"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"1u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"2u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"3u","type":"unix","device":"0xffff96afb728c800","size_off":0,"node":21801,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"5u","type":"unix","device":"0xffff96af34e1f800","size_off":0,"node":21822,"name":"/var/run/docker.sock"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"6u","type":"unix","device":"0xffff96af325fc800","size_off":0,"node":22240,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"7uW","type":"REG","device":"253,0","size_off":32768,"node":34346870,"name":"/var/lib/docker/volumes/metadata.db"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"8u","type":"unix","device":"0xffff96afb4b94400","size_off":0,"node":22478,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"9r","type":"REG","device":"0,3","size_off":0,"node":4026531956,"name":"net"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"10u","type":"netlink","device":null,"size_off":0,"node":22649,"name":"ROUTE"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"11u","type":"netlink","device":null,"size_off":0,"node":22650,"name":"XFRM"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"12u","type":"unix","device":"0xffff96afb4b97c00","size_off":0,"node":22839,"name":"/run/docker/libnetwork/fe53fe5029258e61eb7a9173ec80150ea3595abe7d69e47af064f451212110bf.sock"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":852856,"node":297586,"name":"/usr/sbin/sshd"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15688,"node":9878,"name":"/usr/lib64/libkeyutils.so.1.5"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":67104,"node":9952,"name":"/usr/lib64/libkrb5support.so.0.1"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11392,"node":7832,"name":"/usr/lib64/libfreebl3.so"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":251792,"node":1468,"name":"/usr/lib64/libnspr4.so"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20040,"node":1469,"name":"/usr/lib64/libplc4.so"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15744,"node":1471,"name":"/usr/lib64/libplds4.so"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":198960,"node":1472,"name":"/usr/lib64/libnssutil3.so"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1257792,"node":33488,"name":"/usr/lib64/libnss3.so"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":168336,"node":503336,"name":"/usr/lib64/libsmime3.so"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":370584,"node":503337,"name":"/usr/lib64/libssl3.so"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":470376,"node":9842,"name":"/usr/lib64/libssl.so.1.0.2k"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":121320,"node":10329,"name":"/usr/lib64/libsasl2.so.3.0.0"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":115848,"node":1452,"name":"/usr/lib64/libnsl-2.17.so"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15920,"node":7825,"name":"/usr/lib64/libcom_err.so.2.1"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":210784,"node":9845,"name":"/usr/lib64/libk5crypto.so.3.1"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":967784,"node":9948,"name":"/usr/lib64/libkrb5.so.3.3"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":320784,"node":8155,"name":"/usr/lib64/libgssapi_krb5.so.2.2"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":40664,"node":1119,"name":"/usr/lib64/libcrypt-2.17.so"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":14496,"node":503085,"name":"/usr/lib64/libutil-2.17.so"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61952,"node":32966,"name":"/usr/lib64/liblber-2.4.so.2.10.7"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":352608,"node":32968,"name":"/usr/lib64/libldap-2.4.so.2.10.7"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61672,"node":10149,"name":"/usr/lib64/libpam.so.0.83.1"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":42520,"node":10468,"name":"/usr/lib64/libwrap.so.0.7.6"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11344,"node":32826,"name":"/usr/lib64/libfipscheck.so.1.2.1"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff96afb573c000","size_off":0,"node":21429,"name":"socket"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff96afb573c000","size_off":0,"node":21429,"name":"socket"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"3u","type":"IPv4","device":"21598","size_off":0,"node":null,"name":"*:ssh (LISTEN)"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"4u","type":"IPv6","device":"21607","size_off":0,"node":null,"name":"*:ssh (LISTEN)"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":7216,"node":50359089,"name":"/usr/bin/python2.7"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":91024,"node":33744,"name":"/usr/lib64/libudev.so.1.6.2"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":156960,"node":50359917,"name":"/usr/lib64/python2.7/lib-dynload/_io.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127000,"node":50359909,"name":"/usr/lib64/python2.7/lib-dynload/_ctypes.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":86984,"node":50338611,"name":"/usr/lib64/python2.7/lib-dynload/datetime.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":217144,"node":32802,"name":"/usr/lib64/libgirepository-1.0.so.1.0.0"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":6952,"node":10074,"name":"/usr/lib64/libgthread-2.0.so.0.5600.1"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":331480,"node":17071684,"name":"/usr/lib64/python2.7/site-packages/gi/_gi.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":265600,"node":8147,"name":"/usr/lib64/libblkid.so.1.1.0"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":277808,"node":8164,"name":"/usr/lib64/libmount.so.1.1.0"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15640,"node":9972,"name":"/usr/lib64/libgmodule-2.0.so.0.5600.1"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":32304,"node":9828,"name":"/usr/lib64/libffi.so.6.0.1"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1722920,"node":9963,"name":"/usr/lib64/libgio-2.0.so.0.5600.1"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1156656,"node":9967,"name":"/usr/lib64/libglib-2.0.so.0.5600.1"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":339112,"node":10068,"name":"/usr/lib64/libgobject-2.0.so.0.5600.1"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":168312,"node":102248,"name":"/usr/lib64/libdbus-glib-1.so.2.2.2"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11976,"node":102254,"name":"/usr/lib64/python2.7/site-packages/_dbus_glib_bindings.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":173320,"node":10025,"name":"/usr/lib64/libexpat.so.1.6.0"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":54544,"node":50358894,"name":"/usr/lib64/python2.7/lib-dynload/pyexpat.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":333384,"node":33781,"name":"/usr/lib64/libdbus-1.so.3.14.14"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":166248,"node":102253,"name":"/usr/lib64/python2.7/site-packages/_dbus_bindings.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19264,"node":50338618,"name":"/usr/lib64/python2.7/lib-dynload/fcntlmodule.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":29264,"node":50358903,"name":"/usr/lib64/python2.7/lib-dynload/selectmodule.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":12408,"node":50338621,"name":"/usr/lib64/python2.7/lib-dynload/grpmodule.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":16432,"node":50359923,"name":"/usr/lib64/python2.7/lib-dynload/_randommodule.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":22880,"node":50359914,"name":"/usr/lib64/python2.7/lib-dynload/_hashlib.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":25768,"node":50338601,"name":"/usr/lib64/python2.7/lib-dynload/binascii.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":37384,"node":50358881,"name":"/usr/lib64/python2.7/lib-dynload/math.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85192,"node":50338603,"name":"/usr/lib64/python2.7/lib-dynload/cPickle.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15688,"node":9878,"name":"/usr/lib64/libkeyutils.so.1.5"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":67104,"node":9952,"name":"/usr/lib64/libkrb5support.so.0.1"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":210784,"node":9845,"name":"/usr/lib64/libk5crypto.so.3.1"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15920,"node":7825,"name":"/usr/lib64/libcom_err.so.2.1"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":967784,"node":9948,"name":"/usr/lib64/libkrb5.so.3.3"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":320784,"node":8155,"name":"/usr/lib64/libgssapi_krb5.so.2.2"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":470376,"node":9842,"name":"/usr/lib64/libssl.so.1.0.2k"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":95120,"node":50338580,"name":"/usr/lib64/python2.7/lib-dynload/_ssl.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":83968,"node":50359924,"name":"/usr/lib64/python2.7/lib-dynload/_socketmodule.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23992,"node":50338604,"name":"/usr/lib64/python2.7/lib-dynload/cStringIO.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":25064,"node":50742922,"name":"/usr/lib64/python2.7/lib-dynload/timemodule.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":39024,"node":50338821,"name":"/usr/lib64/python2.7/lib-dynload/_struct.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":21344,"node":50359919,"name":"/usr/lib64/python2.7/lib-dynload/_localemodule.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":17056,"node":50359913,"name":"/usr/lib64/python2.7/lib-dynload/_functoolsmodule.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":28736,"node":50742918,"name":"/usr/lib64/python2.7/lib-dynload/stropmodule.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":22920,"node":50359915,"name":"/usr/lib64/python2.7/lib-dynload/_heapq.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":62096,"node":50338582,"name":"/usr/lib64/python2.7/lib-dynload/itertoolsmodule.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":47672,"node":50742588,"name":"/usr/lib64/python2.7/lib-dynload/operator.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":33096,"node":50358878,"name":"/usr/lib64/python2.7/lib-dynload/_collectionsmodule.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":14496,"node":503085,"name":"/usr/lib64/libutil-2.17.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1847496,"node":9994,"name":"/usr/lib64/libpython2.7.so.1.0"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":185712,"node":50359335,"name":"/usr/lib64/girepository-1.0/GLib-2.0.typelib"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"DEL","type":"REG","device":"253,0","size_off":null,"node":16777634,"name":"/tmp/ffiOEEtFw"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff96afb573bc00","size_off":0,"node":21373,"name":"socket"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff96afb573bc00","size_off":0,"node":21373,"name":"socket"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"3w","type":"REG","device":"253,0","size_off":23686,"node":17522009,"name":"/var/log/tuned/tuned.log"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"4u","type":"netlink","device":null,"size_off":0,"node":21954,"name":"KOBJECT_UEVENT"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"5r","type":"CHR","device":"1,9","size_off":0,"node":6490,"name":"/dev/urandom"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"6u","type":"unix","device":"0xffff96af325f9c00","size_off":0,"node":23046,"name":"socket"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"7u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"8u","type":"REG","device":"253,0","size_off":4096,"node":16777634,"name":"/tmp/ffiOEEtFw (deleted)"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"9u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"10w","type":"CHR","device":"10,61","size_off":0,"node":8659,"name":"/dev/cpu_dma_latency"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"11r","type":"FIFO","device":"0,9","size_off":0,"node":23069,"name":"pipe"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"12w","type":"FIFO","device":"0,9","size_off":0,"node":23069,"name":"pipe"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"13u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":7216,"node":50359089,"name":"/usr/bin/python2.7"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":91024,"node":33744,"name":"/usr/lib64/libudev.so.1.6.2"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":156960,"node":50359917,"name":"/usr/lib64/python2.7/lib-dynload/_io.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127000,"node":50359909,"name":"/usr/lib64/python2.7/lib-dynload/_ctypes.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":86984,"node":50338611,"name":"/usr/lib64/python2.7/lib-dynload/datetime.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":217144,"node":32802,"name":"/usr/lib64/libgirepository-1.0.so.1.0.0"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":6952,"node":10074,"name":"/usr/lib64/libgthread-2.0.so.0.5600.1"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":331480,"node":17071684,"name":"/usr/lib64/python2.7/site-packages/gi/_gi.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":265600,"node":8147,"name":"/usr/lib64/libblkid.so.1.1.0"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":277808,"node":8164,"name":"/usr/lib64/libmount.so.1.1.0"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15640,"node":9972,"name":"/usr/lib64/libgmodule-2.0.so.0.5600.1"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":32304,"node":9828,"name":"/usr/lib64/libffi.so.6.0.1"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1722920,"node":9963,"name":"/usr/lib64/libgio-2.0.so.0.5600.1"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1156656,"node":9967,"name":"/usr/lib64/libglib-2.0.so.0.5600.1"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":339112,"node":10068,"name":"/usr/lib64/libgobject-2.0.so.0.5600.1"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":168312,"node":102248,"name":"/usr/lib64/libdbus-glib-1.so.2.2.2"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11976,"node":102254,"name":"/usr/lib64/python2.7/site-packages/_dbus_glib_bindings.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":173320,"node":10025,"name":"/usr/lib64/libexpat.so.1.6.0"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":54544,"node":50358894,"name":"/usr/lib64/python2.7/lib-dynload/pyexpat.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":333384,"node":33781,"name":"/usr/lib64/libdbus-1.so.3.14.14"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":166248,"node":102253,"name":"/usr/lib64/python2.7/site-packages/_dbus_bindings.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19264,"node":50338618,"name":"/usr/lib64/python2.7/lib-dynload/fcntlmodule.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":29264,"node":50358903,"name":"/usr/lib64/python2.7/lib-dynload/selectmodule.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":12408,"node":50338621,"name":"/usr/lib64/python2.7/lib-dynload/grpmodule.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":16432,"node":50359923,"name":"/usr/lib64/python2.7/lib-dynload/_randommodule.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":22880,"node":50359914,"name":"/usr/lib64/python2.7/lib-dynload/_hashlib.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":25768,"node":50338601,"name":"/usr/lib64/python2.7/lib-dynload/binascii.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":37384,"node":50358881,"name":"/usr/lib64/python2.7/lib-dynload/math.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85192,"node":50338603,"name":"/usr/lib64/python2.7/lib-dynload/cPickle.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15688,"node":9878,"name":"/usr/lib64/libkeyutils.so.1.5"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":67104,"node":9952,"name":"/usr/lib64/libkrb5support.so.0.1"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":210784,"node":9845,"name":"/usr/lib64/libk5crypto.so.3.1"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15920,"node":7825,"name":"/usr/lib64/libcom_err.so.2.1"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":967784,"node":9948,"name":"/usr/lib64/libkrb5.so.3.3"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":320784,"node":8155,"name":"/usr/lib64/libgssapi_krb5.so.2.2"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":470376,"node":9842,"name":"/usr/lib64/libssl.so.1.0.2k"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":95120,"node":50338580,"name":"/usr/lib64/python2.7/lib-dynload/_ssl.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":83968,"node":50359924,"name":"/usr/lib64/python2.7/lib-dynload/_socketmodule.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23992,"node":50338604,"name":"/usr/lib64/python2.7/lib-dynload/cStringIO.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":25064,"node":50742922,"name":"/usr/lib64/python2.7/lib-dynload/timemodule.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":39024,"node":50338821,"name":"/usr/lib64/python2.7/lib-dynload/_struct.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":21344,"node":50359919,"name":"/usr/lib64/python2.7/lib-dynload/_localemodule.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":17056,"node":50359913,"name":"/usr/lib64/python2.7/lib-dynload/_functoolsmodule.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":28736,"node":50742918,"name":"/usr/lib64/python2.7/lib-dynload/stropmodule.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":22920,"node":50359915,"name":"/usr/lib64/python2.7/lib-dynload/_heapq.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":62096,"node":50338582,"name":"/usr/lib64/python2.7/lib-dynload/itertoolsmodule.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":47672,"node":50742588,"name":"/usr/lib64/python2.7/lib-dynload/operator.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":33096,"node":50358878,"name":"/usr/lib64/python2.7/lib-dynload/_collectionsmodule.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":14496,"node":503085,"name":"/usr/lib64/libutil-2.17.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1847496,"node":9994,"name":"/usr/lib64/libpython2.7.so.1.0"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":185712,"node":50359335,"name":"/usr/lib64/girepository-1.0/GLib-2.0.typelib"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"DEL","type":"REG","device":"253,0","size_off":null,"node":16777634,"name":"/tmp/ffiOEEtFw"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"1u","type":"unix","device":"0xffff96afb573bc00","size_off":0,"node":21373,"name":"socket"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"2u","type":"unix","device":"0xffff96afb573bc00","size_off":0,"node":21373,"name":"socket"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"3w","type":"REG","device":"253,0","size_off":23686,"node":17522009,"name":"/var/log/tuned/tuned.log"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"4u","type":"netlink","device":null,"size_off":0,"node":21954,"name":"KOBJECT_UEVENT"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"5r","type":"CHR","device":"1,9","size_off":0,"node":6490,"name":"/dev/urandom"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"6u","type":"unix","device":"0xffff96af325f9c00","size_off":0,"node":23046,"name":"socket"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"7u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"8u","type":"REG","device":"253,0","size_off":4096,"node":16777634,"name":"/tmp/ffiOEEtFw (deleted)"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"9u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"10w","type":"CHR","device":"10,61","size_off":0,"node":8659,"name":"/dev/cpu_dma_latency"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"11r","type":"FIFO","device":"0,9","size_off":0,"node":23069,"name":"pipe"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"12w","type":"FIFO","device":"0,9","size_off":0,"node":23069,"name":"pipe"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"13u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":7216,"node":50359089,"name":"/usr/bin/python2.7"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":91024,"node":33744,"name":"/usr/lib64/libudev.so.1.6.2"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":156960,"node":50359917,"name":"/usr/lib64/python2.7/lib-dynload/_io.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127000,"node":50359909,"name":"/usr/lib64/python2.7/lib-dynload/_ctypes.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":86984,"node":50338611,"name":"/usr/lib64/python2.7/lib-dynload/datetime.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":217144,"node":32802,"name":"/usr/lib64/libgirepository-1.0.so.1.0.0"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":6952,"node":10074,"name":"/usr/lib64/libgthread-2.0.so.0.5600.1"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":331480,"node":17071684,"name":"/usr/lib64/python2.7/site-packages/gi/_gi.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":265600,"node":8147,"name":"/usr/lib64/libblkid.so.1.1.0"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":277808,"node":8164,"name":"/usr/lib64/libmount.so.1.1.0"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15640,"node":9972,"name":"/usr/lib64/libgmodule-2.0.so.0.5600.1"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":32304,"node":9828,"name":"/usr/lib64/libffi.so.6.0.1"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1722920,"node":9963,"name":"/usr/lib64/libgio-2.0.so.0.5600.1"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1156656,"node":9967,"name":"/usr/lib64/libglib-2.0.so.0.5600.1"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":339112,"node":10068,"name":"/usr/lib64/libgobject-2.0.so.0.5600.1"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":168312,"node":102248,"name":"/usr/lib64/libdbus-glib-1.so.2.2.2"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11976,"node":102254,"name":"/usr/lib64/python2.7/site-packages/_dbus_glib_bindings.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":173320,"node":10025,"name":"/usr/lib64/libexpat.so.1.6.0"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":54544,"node":50358894,"name":"/usr/lib64/python2.7/lib-dynload/pyexpat.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":333384,"node":33781,"name":"/usr/lib64/libdbus-1.so.3.14.14"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":166248,"node":102253,"name":"/usr/lib64/python2.7/site-packages/_dbus_bindings.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19264,"node":50338618,"name":"/usr/lib64/python2.7/lib-dynload/fcntlmodule.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":29264,"node":50358903,"name":"/usr/lib64/python2.7/lib-dynload/selectmodule.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":12408,"node":50338621,"name":"/usr/lib64/python2.7/lib-dynload/grpmodule.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":16432,"node":50359923,"name":"/usr/lib64/python2.7/lib-dynload/_randommodule.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":22880,"node":50359914,"name":"/usr/lib64/python2.7/lib-dynload/_hashlib.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":25768,"node":50338601,"name":"/usr/lib64/python2.7/lib-dynload/binascii.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":37384,"node":50358881,"name":"/usr/lib64/python2.7/lib-dynload/math.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85192,"node":50338603,"name":"/usr/lib64/python2.7/lib-dynload/cPickle.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15688,"node":9878,"name":"/usr/lib64/libkeyutils.so.1.5"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":67104,"node":9952,"name":"/usr/lib64/libkrb5support.so.0.1"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":210784,"node":9845,"name":"/usr/lib64/libk5crypto.so.3.1"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15920,"node":7825,"name":"/usr/lib64/libcom_err.so.2.1"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":967784,"node":9948,"name":"/usr/lib64/libkrb5.so.3.3"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":320784,"node":8155,"name":"/usr/lib64/libgssapi_krb5.so.2.2"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":470376,"node":9842,"name":"/usr/lib64/libssl.so.1.0.2k"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":95120,"node":50338580,"name":"/usr/lib64/python2.7/lib-dynload/_ssl.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":83968,"node":50359924,"name":"/usr/lib64/python2.7/lib-dynload/_socketmodule.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23992,"node":50338604,"name":"/usr/lib64/python2.7/lib-dynload/cStringIO.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":25064,"node":50742922,"name":"/usr/lib64/python2.7/lib-dynload/timemodule.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":39024,"node":50338821,"name":"/usr/lib64/python2.7/lib-dynload/_struct.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":21344,"node":50359919,"name":"/usr/lib64/python2.7/lib-dynload/_localemodule.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":17056,"node":50359913,"name":"/usr/lib64/python2.7/lib-dynload/_functoolsmodule.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":28736,"node":50742918,"name":"/usr/lib64/python2.7/lib-dynload/stropmodule.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":22920,"node":50359915,"name":"/usr/lib64/python2.7/lib-dynload/_heapq.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":62096,"node":50338582,"name":"/usr/lib64/python2.7/lib-dynload/itertoolsmodule.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":47672,"node":50742588,"name":"/usr/lib64/python2.7/lib-dynload/operator.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":33096,"node":50358878,"name":"/usr/lib64/python2.7/lib-dynload/_collectionsmodule.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":14496,"node":503085,"name":"/usr/lib64/libutil-2.17.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1847496,"node":9994,"name":"/usr/lib64/libpython2.7.so.1.0"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":185712,"node":50359335,"name":"/usr/lib64/girepository-1.0/GLib-2.0.typelib"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"DEL","type":"REG","device":"253,0","size_off":null,"node":16777634,"name":"/tmp/ffiOEEtFw"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"1u","type":"unix","device":"0xffff96afb573bc00","size_off":0,"node":21373,"name":"socket"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"2u","type":"unix","device":"0xffff96afb573bc00","size_off":0,"node":21373,"name":"socket"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"3w","type":"REG","device":"253,0","size_off":23686,"node":17522009,"name":"/var/log/tuned/tuned.log"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"4u","type":"netlink","device":null,"size_off":0,"node":21954,"name":"KOBJECT_UEVENT"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"5r","type":"CHR","device":"1,9","size_off":0,"node":6490,"name":"/dev/urandom"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"6u","type":"unix","device":"0xffff96af325f9c00","size_off":0,"node":23046,"name":"socket"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"7u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"8u","type":"REG","device":"253,0","size_off":4096,"node":16777634,"name":"/tmp/ffiOEEtFw (deleted)"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"9u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"10w","type":"CHR","device":"10,61","size_off":0,"node":8659,"name":"/dev/cpu_dma_latency"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"11r","type":"FIFO","device":"0,9","size_off":0,"node":23069,"name":"pipe"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"12w","type":"FIFO","device":"0,9","size_off":0,"node":23069,"name":"pipe"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"13u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":7216,"node":50359089,"name":"/usr/bin/python2.7"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":91024,"node":33744,"name":"/usr/lib64/libudev.so.1.6.2"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":156960,"node":50359917,"name":"/usr/lib64/python2.7/lib-dynload/_io.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127000,"node":50359909,"name":"/usr/lib64/python2.7/lib-dynload/_ctypes.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":86984,"node":50338611,"name":"/usr/lib64/python2.7/lib-dynload/datetime.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":217144,"node":32802,"name":"/usr/lib64/libgirepository-1.0.so.1.0.0"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":6952,"node":10074,"name":"/usr/lib64/libgthread-2.0.so.0.5600.1"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":331480,"node":17071684,"name":"/usr/lib64/python2.7/site-packages/gi/_gi.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":265600,"node":8147,"name":"/usr/lib64/libblkid.so.1.1.0"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":277808,"node":8164,"name":"/usr/lib64/libmount.so.1.1.0"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15640,"node":9972,"name":"/usr/lib64/libgmodule-2.0.so.0.5600.1"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":32304,"node":9828,"name":"/usr/lib64/libffi.so.6.0.1"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1722920,"node":9963,"name":"/usr/lib64/libgio-2.0.so.0.5600.1"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1156656,"node":9967,"name":"/usr/lib64/libglib-2.0.so.0.5600.1"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":339112,"node":10068,"name":"/usr/lib64/libgobject-2.0.so.0.5600.1"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":168312,"node":102248,"name":"/usr/lib64/libdbus-glib-1.so.2.2.2"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11976,"node":102254,"name":"/usr/lib64/python2.7/site-packages/_dbus_glib_bindings.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":173320,"node":10025,"name":"/usr/lib64/libexpat.so.1.6.0"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":54544,"node":50358894,"name":"/usr/lib64/python2.7/lib-dynload/pyexpat.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":333384,"node":33781,"name":"/usr/lib64/libdbus-1.so.3.14.14"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":166248,"node":102253,"name":"/usr/lib64/python2.7/site-packages/_dbus_bindings.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19264,"node":50338618,"name":"/usr/lib64/python2.7/lib-dynload/fcntlmodule.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":29264,"node":50358903,"name":"/usr/lib64/python2.7/lib-dynload/selectmodule.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":12408,"node":50338621,"name":"/usr/lib64/python2.7/lib-dynload/grpmodule.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":16432,"node":50359923,"name":"/usr/lib64/python2.7/lib-dynload/_randommodule.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":22880,"node":50359914,"name":"/usr/lib64/python2.7/lib-dynload/_hashlib.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":25768,"node":50338601,"name":"/usr/lib64/python2.7/lib-dynload/binascii.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":37384,"node":50358881,"name":"/usr/lib64/python2.7/lib-dynload/math.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85192,"node":50338603,"name":"/usr/lib64/python2.7/lib-dynload/cPickle.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15688,"node":9878,"name":"/usr/lib64/libkeyutils.so.1.5"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":67104,"node":9952,"name":"/usr/lib64/libkrb5support.so.0.1"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":210784,"node":9845,"name":"/usr/lib64/libk5crypto.so.3.1"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15920,"node":7825,"name":"/usr/lib64/libcom_err.so.2.1"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":967784,"node":9948,"name":"/usr/lib64/libkrb5.so.3.3"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":320784,"node":8155,"name":"/usr/lib64/libgssapi_krb5.so.2.2"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":470376,"node":9842,"name":"/usr/lib64/libssl.so.1.0.2k"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":95120,"node":50338580,"name":"/usr/lib64/python2.7/lib-dynload/_ssl.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":83968,"node":50359924,"name":"/usr/lib64/python2.7/lib-dynload/_socketmodule.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23992,"node":50338604,"name":"/usr/lib64/python2.7/lib-dynload/cStringIO.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":25064,"node":50742922,"name":"/usr/lib64/python2.7/lib-dynload/timemodule.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":39024,"node":50338821,"name":"/usr/lib64/python2.7/lib-dynload/_struct.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":21344,"node":50359919,"name":"/usr/lib64/python2.7/lib-dynload/_localemodule.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":17056,"node":50359913,"name":"/usr/lib64/python2.7/lib-dynload/_functoolsmodule.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":28736,"node":50742918,"name":"/usr/lib64/python2.7/lib-dynload/stropmodule.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":22920,"node":50359915,"name":"/usr/lib64/python2.7/lib-dynload/_heapq.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":62096,"node":50338582,"name":"/usr/lib64/python2.7/lib-dynload/itertoolsmodule.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":47672,"node":50742588,"name":"/usr/lib64/python2.7/lib-dynload/operator.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":33096,"node":50358878,"name":"/usr/lib64/python2.7/lib-dynload/_collectionsmodule.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":14496,"node":503085,"name":"/usr/lib64/libutil-2.17.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1847496,"node":9994,"name":"/usr/lib64/libpython2.7.so.1.0"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":185712,"node":50359335,"name":"/usr/lib64/girepository-1.0/GLib-2.0.typelib"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"DEL","type":"REG","device":"253,0","size_off":null,"node":16777634,"name":"/tmp/ffiOEEtFw"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"1u","type":"unix","device":"0xffff96afb573bc00","size_off":0,"node":21373,"name":"socket"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"2u","type":"unix","device":"0xffff96afb573bc00","size_off":0,"node":21373,"name":"socket"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"3w","type":"REG","device":"253,0","size_off":23686,"node":17522009,"name":"/var/log/tuned/tuned.log"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"4u","type":"netlink","device":null,"size_off":0,"node":21954,"name":"KOBJECT_UEVENT"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"5r","type":"CHR","device":"1,9","size_off":0,"node":6490,"name":"/dev/urandom"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"6u","type":"unix","device":"0xffff96af325f9c00","size_off":0,"node":23046,"name":"socket"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"7u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"8u","type":"REG","device":"253,0","size_off":4096,"node":16777634,"name":"/tmp/ffiOEEtFw (deleted)"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"9u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"10w","type":"CHR","device":"10,61","size_off":0,"node":8659,"name":"/dev/cpu_dma_latency"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"11r","type":"FIFO","device":"0,9","size_off":0,"node":23069,"name":"pipe"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"12w","type":"FIFO","device":"0,9","size_off":0,"node":23069,"name":"pipe"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"13u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":7216,"node":50359089,"name":"/usr/bin/python2.7"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":91024,"node":33744,"name":"/usr/lib64/libudev.so.1.6.2"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":156960,"node":50359917,"name":"/usr/lib64/python2.7/lib-dynload/_io.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127000,"node":50359909,"name":"/usr/lib64/python2.7/lib-dynload/_ctypes.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":86984,"node":50338611,"name":"/usr/lib64/python2.7/lib-dynload/datetime.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":217144,"node":32802,"name":"/usr/lib64/libgirepository-1.0.so.1.0.0"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":6952,"node":10074,"name":"/usr/lib64/libgthread-2.0.so.0.5600.1"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":331480,"node":17071684,"name":"/usr/lib64/python2.7/site-packages/gi/_gi.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":265600,"node":8147,"name":"/usr/lib64/libblkid.so.1.1.0"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":277808,"node":8164,"name":"/usr/lib64/libmount.so.1.1.0"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15640,"node":9972,"name":"/usr/lib64/libgmodule-2.0.so.0.5600.1"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":32304,"node":9828,"name":"/usr/lib64/libffi.so.6.0.1"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1722920,"node":9963,"name":"/usr/lib64/libgio-2.0.so.0.5600.1"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1156656,"node":9967,"name":"/usr/lib64/libglib-2.0.so.0.5600.1"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":339112,"node":10068,"name":"/usr/lib64/libgobject-2.0.so.0.5600.1"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":168312,"node":102248,"name":"/usr/lib64/libdbus-glib-1.so.2.2.2"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11976,"node":102254,"name":"/usr/lib64/python2.7/site-packages/_dbus_glib_bindings.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":173320,"node":10025,"name":"/usr/lib64/libexpat.so.1.6.0"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":54544,"node":50358894,"name":"/usr/lib64/python2.7/lib-dynload/pyexpat.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":333384,"node":33781,"name":"/usr/lib64/libdbus-1.so.3.14.14"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":166248,"node":102253,"name":"/usr/lib64/python2.7/site-packages/_dbus_bindings.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19264,"node":50338618,"name":"/usr/lib64/python2.7/lib-dynload/fcntlmodule.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":29264,"node":50358903,"name":"/usr/lib64/python2.7/lib-dynload/selectmodule.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":12408,"node":50338621,"name":"/usr/lib64/python2.7/lib-dynload/grpmodule.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":16432,"node":50359923,"name":"/usr/lib64/python2.7/lib-dynload/_randommodule.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":22880,"node":50359914,"name":"/usr/lib64/python2.7/lib-dynload/_hashlib.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":25768,"node":50338601,"name":"/usr/lib64/python2.7/lib-dynload/binascii.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":37384,"node":50358881,"name":"/usr/lib64/python2.7/lib-dynload/math.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85192,"node":50338603,"name":"/usr/lib64/python2.7/lib-dynload/cPickle.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15688,"node":9878,"name":"/usr/lib64/libkeyutils.so.1.5"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":67104,"node":9952,"name":"/usr/lib64/libkrb5support.so.0.1"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":210784,"node":9845,"name":"/usr/lib64/libk5crypto.so.3.1"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15920,"node":7825,"name":"/usr/lib64/libcom_err.so.2.1"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":967784,"node":9948,"name":"/usr/lib64/libkrb5.so.3.3"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":320784,"node":8155,"name":"/usr/lib64/libgssapi_krb5.so.2.2"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":470376,"node":9842,"name":"/usr/lib64/libssl.so.1.0.2k"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":95120,"node":50338580,"name":"/usr/lib64/python2.7/lib-dynload/_ssl.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":83968,"node":50359924,"name":"/usr/lib64/python2.7/lib-dynload/_socketmodule.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23992,"node":50338604,"name":"/usr/lib64/python2.7/lib-dynload/cStringIO.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":25064,"node":50742922,"name":"/usr/lib64/python2.7/lib-dynload/timemodule.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":39024,"node":50338821,"name":"/usr/lib64/python2.7/lib-dynload/_struct.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":21344,"node":50359919,"name":"/usr/lib64/python2.7/lib-dynload/_localemodule.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":17056,"node":50359913,"name":"/usr/lib64/python2.7/lib-dynload/_functoolsmodule.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":28736,"node":50742918,"name":"/usr/lib64/python2.7/lib-dynload/stropmodule.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":22920,"node":50359915,"name":"/usr/lib64/python2.7/lib-dynload/_heapq.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":62096,"node":50338582,"name":"/usr/lib64/python2.7/lib-dynload/itertoolsmodule.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":47672,"node":50742588,"name":"/usr/lib64/python2.7/lib-dynload/operator.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":33096,"node":50358878,"name":"/usr/lib64/python2.7/lib-dynload/_collectionsmodule.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":14496,"node":503085,"name":"/usr/lib64/libutil-2.17.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1847496,"node":9994,"name":"/usr/lib64/libpython2.7.so.1.0"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":185712,"node":50359335,"name":"/usr/lib64/girepository-1.0/GLib-2.0.typelib"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"DEL","type":"REG","device":"253,0","size_off":null,"node":16777634,"name":"/tmp/ffiOEEtFw"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"1u","type":"unix","device":"0xffff96afb573bc00","size_off":0,"node":21373,"name":"socket"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"2u","type":"unix","device":"0xffff96afb573bc00","size_off":0,"node":21373,"name":"socket"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"3w","type":"REG","device":"253,0","size_off":23686,"node":17522009,"name":"/var/log/tuned/tuned.log"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"4u","type":"netlink","device":null,"size_off":0,"node":21954,"name":"KOBJECT_UEVENT"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"5r","type":"CHR","device":"1,9","size_off":0,"node":6490,"name":"/dev/urandom"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"6u","type":"unix","device":"0xffff96af325f9c00","size_off":0,"node":23046,"name":"socket"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"7u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"8u","type":"REG","device":"253,0","size_off":4096,"node":16777634,"name":"/tmp/ffiOEEtFw (deleted)"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"9u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"10w","type":"CHR","device":"10,61","size_off":0,"node":8659,"name":"/dev/cpu_dma_latency"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"11r","type":"FIFO","device":"0,9","size_off":0,"node":23069,"name":"pipe"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"12w","type":"FIFO","device":"0,9","size_off":0,"node":23069,"name":"pipe"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"13u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":663904,"node":236336,"name":"/usr/sbin/rsyslogd"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"0,20","size_off":8388608,"node":9246,"name":"/run/log/journal/c1aceec07c3141c5893d84415874e296/system.journal"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":25024,"node":50686701,"name":"/usr/lib64/rsyslog/imjournal.so"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":38048,"node":50686710,"name":"/usr/lib64/rsyslog/imuxsock.so"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":24432,"node":50686711,"name":"/usr/lib64/rsyslog/lmnet.so"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":40896,"node":33450,"name":"/usr/lib64/libfastjson.so.4.0.0"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15424,"node":33470,"name":"/usr/lib64/libestr.so.0.0.0"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"1w","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"2w","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"3r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"4u","type":"unix","device":"0xffff96af34d2d400","size_off":0,"node":21563,"name":"socket"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"5r","type":"REG","device":"0,20","size_off":8388608,"node":9246,"name":"/run/log/journal/c1aceec07c3141c5893d84415874e296/system.journal"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"6w","type":"REG","device":"253,0","size_off":914211,"node":33614498,"name":"/var/log/messages"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"7w","type":"REG","device":"253,0","size_off":18112,"node":33707325,"name":"/var/log/cron"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"8w","type":"REG","device":"253,0","size_off":34573,"node":33614499,"name":"/var/log/secure"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"9w","type":"REG","device":"253,0","size_off":594,"node":33614497,"name":"/var/log/maillog"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":663904,"node":236336,"name":"/usr/sbin/rsyslogd"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"0,20","size_off":8388608,"node":9246,"name":"/run/log/journal/c1aceec07c3141c5893d84415874e296/system.journal"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":25024,"node":50686701,"name":"/usr/lib64/rsyslog/imjournal.so"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":38048,"node":50686710,"name":"/usr/lib64/rsyslog/imuxsock.so"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":24432,"node":50686711,"name":"/usr/lib64/rsyslog/lmnet.so"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":40896,"node":33450,"name":"/usr/lib64/libfastjson.so.4.0.0"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15424,"node":33470,"name":"/usr/lib64/libestr.so.0.0.0"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"1w","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"2w","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"3r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"4u","type":"unix","device":"0xffff96af34d2d400","size_off":0,"node":21563,"name":"socket"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"5r","type":"REG","device":"0,20","size_off":8388608,"node":9246,"name":"/run/log/journal/c1aceec07c3141c5893d84415874e296/system.journal"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"6w","type":"REG","device":"253,0","size_off":914211,"node":33614498,"name":"/var/log/messages"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"7w","type":"REG","device":"253,0","size_off":18112,"node":33707325,"name":"/var/log/cron"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"8w","type":"REG","device":"253,0","size_off":34573,"node":33614499,"name":"/var/log/secure"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"9w","type":"REG","device":"253,0","size_off":594,"node":33614497,"name":"/var/log/maillog"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":663904,"node":236336,"name":"/usr/sbin/rsyslogd"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"0,20","size_off":8388608,"node":9246,"name":"/run/log/journal/c1aceec07c3141c5893d84415874e296/system.journal"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":25024,"node":50686701,"name":"/usr/lib64/rsyslog/imjournal.so"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":38048,"node":50686710,"name":"/usr/lib64/rsyslog/imuxsock.so"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":24432,"node":50686711,"name":"/usr/lib64/rsyslog/lmnet.so"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":40896,"node":33450,"name":"/usr/lib64/libfastjson.so.4.0.0"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15424,"node":33470,"name":"/usr/lib64/libestr.so.0.0.0"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"1w","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"2w","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"3r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"4u","type":"unix","device":"0xffff96af34d2d400","size_off":0,"node":21563,"name":"socket"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"5r","type":"REG","device":"0,20","size_off":8388608,"node":9246,"name":"/run/log/journal/c1aceec07c3141c5893d84415874e296/system.journal"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"6w","type":"REG","device":"253,0","size_off":914211,"node":33614498,"name":"/var/log/messages"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"7w","type":"REG","device":"253,0","size_off":18112,"node":33707325,"name":"/var/log/cron"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"8w","type":"REG","device":"253,0","size_off":34573,"node":33614499,"name":"/var/log/secure"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"9w","type":"REG","device":"253,0","size_off":594,"node":33614497,"name":"/var/log/maillog"},{"command":"docker-co","pid":1256,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"docker-co","pid":1256,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"docker-co","pid":1256,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":10806520,"node":50705012,"name":"/usr/bin/docker-containerd-current"},{"command":"docker-co","pid":1256,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"docker-co","pid":1256,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"docker-co","pid":1256,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"docker-co","pid":1256,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"docker-co","pid":1256,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"docker-co","pid":1256,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"docker-co","pid":1256,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"docker-co","pid":1256,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"docker-co","pid":1256,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"docker-co","pid":1256,"tid":null,"user":"root","fd":"3u","type":"unix","device":"0xffff96afb49b1400","size_off":0,"node":21877,"name":"/var/run/docker/libcontainerd/docker-containerd.sock"},{"command":"docker-co","pid":1256,"tid":null,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"docker-co","pid":1256,"tid":null,"user":"root","fd":"5u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"docker-co","pid":1256,"tid":null,"user":"root","fd":"6w","type":"REG","device":"0,20","size_off":0,"node":21879,"name":"/run/docker/libcontainerd/containerd/events.log"},{"command":"docker-co","pid":1256,"tid":null,"user":"root","fd":"7u","type":"unix","device":"0xffff96af325fd800","size_off":0,"node":22241,"name":"/var/run/docker/libcontainerd/docker-containerd.sock"},{"command":"docker-co","pid":1256,"tid":1272,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"docker-co","pid":1256,"tid":1272,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"docker-co","pid":1256,"tid":1272,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":10806520,"node":50705012,"name":"/usr/bin/docker-containerd-current"},{"command":"docker-co","pid":1256,"tid":1272,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"docker-co","pid":1256,"tid":1272,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"docker-co","pid":1256,"tid":1272,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"docker-co","pid":1256,"tid":1272,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"docker-co","pid":1256,"tid":1272,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"docker-co","pid":1256,"tid":1272,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"docker-co","pid":1256,"tid":1272,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"docker-co","pid":1256,"tid":1272,"user":"root","fd":"1u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"docker-co","pid":1256,"tid":1272,"user":"root","fd":"2u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"docker-co","pid":1256,"tid":1272,"user":"root","fd":"3u","type":"unix","device":"0xffff96afb49b1400","size_off":0,"node":21877,"name":"/var/run/docker/libcontainerd/docker-containerd.sock"},{"command":"docker-co","pid":1256,"tid":1272,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"docker-co","pid":1256,"tid":1272,"user":"root","fd":"5u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"docker-co","pid":1256,"tid":1272,"user":"root","fd":"6w","type":"REG","device":"0,20","size_off":0,"node":21879,"name":"/run/docker/libcontainerd/containerd/events.log"},{"command":"docker-co","pid":1256,"tid":1272,"user":"root","fd":"7u","type":"unix","device":"0xffff96af325fd800","size_off":0,"node":22241,"name":"/var/run/docker/libcontainerd/docker-containerd.sock"},{"command":"docker-co","pid":1256,"tid":1273,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"docker-co","pid":1256,"tid":1273,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"docker-co","pid":1256,"tid":1273,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":10806520,"node":50705012,"name":"/usr/bin/docker-containerd-current"},{"command":"docker-co","pid":1256,"tid":1273,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"docker-co","pid":1256,"tid":1273,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"docker-co","pid":1256,"tid":1273,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"docker-co","pid":1256,"tid":1273,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"docker-co","pid":1256,"tid":1273,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"docker-co","pid":1256,"tid":1273,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"docker-co","pid":1256,"tid":1273,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"docker-co","pid":1256,"tid":1273,"user":"root","fd":"1u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"docker-co","pid":1256,"tid":1273,"user":"root","fd":"2u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"docker-co","pid":1256,"tid":1273,"user":"root","fd":"3u","type":"unix","device":"0xffff96afb49b1400","size_off":0,"node":21877,"name":"/var/run/docker/libcontainerd/docker-containerd.sock"},{"command":"docker-co","pid":1256,"tid":1273,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"docker-co","pid":1256,"tid":1273,"user":"root","fd":"5u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"docker-co","pid":1256,"tid":1273,"user":"root","fd":"6w","type":"REG","device":"0,20","size_off":0,"node":21879,"name":"/run/docker/libcontainerd/containerd/events.log"},{"command":"docker-co","pid":1256,"tid":1273,"user":"root","fd":"7u","type":"unix","device":"0xffff96af325fd800","size_off":0,"node":22241,"name":"/var/run/docker/libcontainerd/docker-containerd.sock"},{"command":"docker-co","pid":1256,"tid":1275,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"docker-co","pid":1256,"tid":1275,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"docker-co","pid":1256,"tid":1275,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":10806520,"node":50705012,"name":"/usr/bin/docker-containerd-current"},{"command":"docker-co","pid":1256,"tid":1275,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"docker-co","pid":1256,"tid":1275,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"docker-co","pid":1256,"tid":1275,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"docker-co","pid":1256,"tid":1275,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"docker-co","pid":1256,"tid":1275,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"docker-co","pid":1256,"tid":1275,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"docker-co","pid":1256,"tid":1275,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"docker-co","pid":1256,"tid":1275,"user":"root","fd":"1u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"docker-co","pid":1256,"tid":1275,"user":"root","fd":"2u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"docker-co","pid":1256,"tid":1275,"user":"root","fd":"3u","type":"unix","device":"0xffff96afb49b1400","size_off":0,"node":21877,"name":"/var/run/docker/libcontainerd/docker-containerd.sock"},{"command":"docker-co","pid":1256,"tid":1275,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"docker-co","pid":1256,"tid":1275,"user":"root","fd":"5u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"docker-co","pid":1256,"tid":1275,"user":"root","fd":"6w","type":"REG","device":"0,20","size_off":0,"node":21879,"name":"/run/docker/libcontainerd/containerd/events.log"},{"command":"docker-co","pid":1256,"tid":1275,"user":"root","fd":"7u","type":"unix","device":"0xffff96af325fd800","size_off":0,"node":22241,"name":"/var/run/docker/libcontainerd/docker-containerd.sock"},{"command":"docker-co","pid":1256,"tid":1279,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"docker-co","pid":1256,"tid":1279,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"docker-co","pid":1256,"tid":1279,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":10806520,"node":50705012,"name":"/usr/bin/docker-containerd-current"},{"command":"docker-co","pid":1256,"tid":1279,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"docker-co","pid":1256,"tid":1279,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"docker-co","pid":1256,"tid":1279,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"docker-co","pid":1256,"tid":1279,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"docker-co","pid":1256,"tid":1279,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"docker-co","pid":1256,"tid":1279,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"docker-co","pid":1256,"tid":1279,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"docker-co","pid":1256,"tid":1279,"user":"root","fd":"1u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"docker-co","pid":1256,"tid":1279,"user":"root","fd":"2u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"docker-co","pid":1256,"tid":1279,"user":"root","fd":"3u","type":"unix","device":"0xffff96afb49b1400","size_off":0,"node":21877,"name":"/var/run/docker/libcontainerd/docker-containerd.sock"},{"command":"docker-co","pid":1256,"tid":1279,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"docker-co","pid":1256,"tid":1279,"user":"root","fd":"5u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"docker-co","pid":1256,"tid":1279,"user":"root","fd":"6w","type":"REG","device":"0,20","size_off":0,"node":21879,"name":"/run/docker/libcontainerd/containerd/events.log"},{"command":"docker-co","pid":1256,"tid":1279,"user":"root","fd":"7u","type":"unix","device":"0xffff96af325fd800","size_off":0,"node":22241,"name":"/var/run/docker/libcontainerd/docker-containerd.sock"},{"command":"docker-co","pid":1256,"tid":1280,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"docker-co","pid":1256,"tid":1280,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"docker-co","pid":1256,"tid":1280,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":10806520,"node":50705012,"name":"/usr/bin/docker-containerd-current"},{"command":"docker-co","pid":1256,"tid":1280,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"docker-co","pid":1256,"tid":1280,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"docker-co","pid":1256,"tid":1280,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"docker-co","pid":1256,"tid":1280,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"docker-co","pid":1256,"tid":1280,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"docker-co","pid":1256,"tid":1280,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"docker-co","pid":1256,"tid":1280,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"docker-co","pid":1256,"tid":1280,"user":"root","fd":"1u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"docker-co","pid":1256,"tid":1280,"user":"root","fd":"2u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"docker-co","pid":1256,"tid":1280,"user":"root","fd":"3u","type":"unix","device":"0xffff96afb49b1400","size_off":0,"node":21877,"name":"/var/run/docker/libcontainerd/docker-containerd.sock"},{"command":"docker-co","pid":1256,"tid":1280,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"docker-co","pid":1256,"tid":1280,"user":"root","fd":"5u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"docker-co","pid":1256,"tid":1280,"user":"root","fd":"6w","type":"REG","device":"0,20","size_off":0,"node":21879,"name":"/run/docker/libcontainerd/containerd/events.log"},{"command":"docker-co","pid":1256,"tid":1280,"user":"root","fd":"7u","type":"unix","device":"0xffff96af325fd800","size_off":0,"node":22241,"name":"/var/run/docker/libcontainerd/docker-containerd.sock"},{"command":"docker-co","pid":1256,"tid":1281,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"docker-co","pid":1256,"tid":1281,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"docker-co","pid":1256,"tid":1281,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":10806520,"node":50705012,"name":"/usr/bin/docker-containerd-current"},{"command":"docker-co","pid":1256,"tid":1281,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"docker-co","pid":1256,"tid":1281,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"docker-co","pid":1256,"tid":1281,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"docker-co","pid":1256,"tid":1281,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"docker-co","pid":1256,"tid":1281,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"docker-co","pid":1256,"tid":1281,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"docker-co","pid":1256,"tid":1281,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"docker-co","pid":1256,"tid":1281,"user":"root","fd":"1u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"docker-co","pid":1256,"tid":1281,"user":"root","fd":"2u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"docker-co","pid":1256,"tid":1281,"user":"root","fd":"3u","type":"unix","device":"0xffff96afb49b1400","size_off":0,"node":21877,"name":"/var/run/docker/libcontainerd/docker-containerd.sock"},{"command":"docker-co","pid":1256,"tid":1281,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"docker-co","pid":1256,"tid":1281,"user":"root","fd":"5u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"docker-co","pid":1256,"tid":1281,"user":"root","fd":"6w","type":"REG","device":"0,20","size_off":0,"node":21879,"name":"/run/docker/libcontainerd/containerd/events.log"},{"command":"docker-co","pid":1256,"tid":1281,"user":"root","fd":"7u","type":"unix","device":"0xffff96af325fd800","size_off":0,"node":22241,"name":"/var/run/docker/libcontainerd/docker-containerd.sock"},{"command":"docker-co","pid":1256,"tid":1282,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"docker-co","pid":1256,"tid":1282,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"docker-co","pid":1256,"tid":1282,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":10806520,"node":50705012,"name":"/usr/bin/docker-containerd-current"},{"command":"docker-co","pid":1256,"tid":1282,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"docker-co","pid":1256,"tid":1282,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"docker-co","pid":1256,"tid":1282,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"docker-co","pid":1256,"tid":1282,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"docker-co","pid":1256,"tid":1282,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"docker-co","pid":1256,"tid":1282,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"docker-co","pid":1256,"tid":1282,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"docker-co","pid":1256,"tid":1282,"user":"root","fd":"1u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"docker-co","pid":1256,"tid":1282,"user":"root","fd":"2u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"docker-co","pid":1256,"tid":1282,"user":"root","fd":"3u","type":"unix","device":"0xffff96afb49b1400","size_off":0,"node":21877,"name":"/var/run/docker/libcontainerd/docker-containerd.sock"},{"command":"docker-co","pid":1256,"tid":1282,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"docker-co","pid":1256,"tid":1282,"user":"root","fd":"5u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"docker-co","pid":1256,"tid":1282,"user":"root","fd":"6w","type":"REG","device":"0,20","size_off":0,"node":21879,"name":"/run/docker/libcontainerd/containerd/events.log"},{"command":"docker-co","pid":1256,"tid":1282,"user":"root","fd":"7u","type":"unix","device":"0xffff96af325fd800","size_off":0,"node":22241,"name":"/var/run/docker/libcontainerd/docker-containerd.sock"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":201,"node":33759002,"name":"/var/spool/postfix"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":172568,"node":33758955,"name":"/usr/libexec/postfix/master"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15688,"node":9878,"name":"/usr/lib64/libkeyutils.so.1.5"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11392,"node":7832,"name":"/usr/lib64/libfreebl3.so"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":67104,"node":9952,"name":"/usr/lib64/libkrb5support.so.0.1"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15920,"node":7825,"name":"/usr/lib64/libcom_err.so.2.1"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":210784,"node":9845,"name":"/usr/lib64/libk5crypto.so.3.1"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":967784,"node":9948,"name":"/usr/lib64/libkrb5.so.3.3"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":320784,"node":8155,"name":"/usr/lib64/libgssapi_krb5.so.2.2"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":40664,"node":1119,"name":"/usr/lib64/libcrypt-2.17.so"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":991616,"node":32681,"name":"/usr/lib64/libstdc++.so.6.0.19"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":251792,"node":1468,"name":"/usr/lib64/libnspr4.so"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20040,"node":1469,"name":"/usr/lib64/libplc4.so"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15744,"node":1471,"name":"/usr/lib64/libplds4.so"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":198960,"node":1472,"name":"/usr/lib64/libnssutil3.so"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1257792,"node":33488,"name":"/usr/lib64/libnss3.so"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":168336,"node":503336,"name":"/usr/lib64/libsmime3.so"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":370584,"node":503337,"name":"/usr/lib64/libssl3.so"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":115848,"node":1452,"name":"/usr/lib64/libnsl-2.17.so"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1850600,"node":10008,"name":"/usr/lib64/libdb-5.3.so"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":470376,"node":9842,"name":"/usr/lib64/libssl.so.1.0.2k"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":121320,"node":10329,"name":"/usr/lib64/libsasl2.so.3.0.0"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":3135712,"node":50359390,"name":"/usr/lib64/mysql/libmysqlclient.so.18.0.0"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61952,"node":32966,"name":"/usr/lib64/liblber-2.4.so.2.10.7"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":352608,"node":32968,"name":"/usr/lib64/libldap-2.4.so.2.10.7"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"3u","type":"unix","device":"0xffff96af325f8800","size_off":0,"node":22293,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"4u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"5r","type":"FIFO","device":"0,9","size_off":0,"node":22403,"name":"pipe"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"6u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"7u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"8u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"9u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"10uW","type":"REG","device":"253,0","size_off":33,"node":236387,"name":"/var/spool/postfix/pid/master.pid"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"11uW","type":"REG","device":"253,0","size_off":33,"node":17559024,"name":"/var/lib/postfix/master.lock"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"12r","type":"FIFO","device":"0,9","size_off":0,"node":22392,"name":"pipe"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"13u","type":"IPv4","device":"22317","size_off":0,"node":null,"name":"localhost:smtp (LISTEN)"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"14u","type":"IPv6","device":"22318","size_off":0,"node":null,"name":"localhost:smtp (LISTEN)"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"15u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"16u","type":"unix","device":"0xffff96af325f9000","size_off":0,"node":22319,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"17u","type":"unix","device":"0xffff96af325fe400","size_off":0,"node":22320,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"18u","type":"unix","device":"0xffff96af325fc000","size_off":0,"node":22321,"name":"public/pickup"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"19u","type":"unix","device":"0xffff96af325ffc00","size_off":0,"node":22322,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"20u","type":"unix","device":"0xffff96af33897c00","size_off":0,"node":22323,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"22u","type":"unix","device":"0xffff96af3778e800","size_off":0,"node":22325,"name":"public/cleanup"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"23u","type":"unix","device":"0xffff96af33933400","size_off":0,"node":22326,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"24u","type":"unix","device":"0xffff96af33932800","size_off":0,"node":22327,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"25u","type":"unix","device":"0xffff96af33932000","size_off":0,"node":22328,"name":"public/qmgr"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"26u","type":"unix","device":"0xffff96af33931400","size_off":0,"node":22329,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"27u","type":"unix","device":"0xffff96afb49b0800","size_off":0,"node":22330,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"29u","type":"unix","device":"0xffff96afb49b4800","size_off":0,"node":22332,"name":"private/tlsmgr"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"30u","type":"unix","device":"0xffff96af32678000","size_off":0,"node":22333,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"31u","type":"unix","device":"0xffff96af32678400","size_off":0,"node":22334,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"32u","type":"unix","device":"0xffff96af32678800","size_off":0,"node":22335,"name":"private/rewrite"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"33u","type":"unix","device":"0xffff96af32679000","size_off":0,"node":22336,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"34u","type":"unix","device":"0xffff96af32679400","size_off":0,"node":22337,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"35u","type":"unix","device":"0xffff96af32679800","size_off":0,"node":22338,"name":"private/bounce"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"36u","type":"unix","device":"0xffff96af32679c00","size_off":0,"node":22339,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"37u","type":"unix","device":"0xffff96af3267a000","size_off":0,"node":22340,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"38u","type":"unix","device":"0xffff96af3267a400","size_off":0,"node":22341,"name":"private/defer"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"39u","type":"unix","device":"0xffff96af3267a800","size_off":0,"node":22342,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"40u","type":"unix","device":"0xffff96af3267ac00","size_off":0,"node":22343,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"41u","type":"unix","device":"0xffff96af3267b000","size_off":0,"node":22344,"name":"private/trace"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"42u","type":"unix","device":"0xffff96af3267b400","size_off":0,"node":22345,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"43u","type":"unix","device":"0xffff96af3267b800","size_off":0,"node":22346,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"44u","type":"unix","device":"0xffff96af3267bc00","size_off":0,"node":22347,"name":"private/verify"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"45u","type":"unix","device":"0xffff96af3267c000","size_off":0,"node":22348,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"46u","type":"unix","device":"0xffff96af3267c400","size_off":0,"node":22349,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"47u","type":"unix","device":"0xffff96af3267c800","size_off":0,"node":22350,"name":"public/flush"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"48u","type":"unix","device":"0xffff96af3267cc00","size_off":0,"node":22351,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"49u","type":"unix","device":"0xffff96af3267d000","size_off":0,"node":22352,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"50u","type":"unix","device":"0xffff96af3267d400","size_off":0,"node":22353,"name":"private/proxymap"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"51u","type":"unix","device":"0xffff96af3267d800","size_off":0,"node":22354,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"52u","type":"unix","device":"0xffff96af3267dc00","size_off":0,"node":22355,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"53u","type":"unix","device":"0xffff96af3267e000","size_off":0,"node":22356,"name":"private/proxywrite"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"54u","type":"unix","device":"0xffff96af3267e400","size_off":0,"node":22357,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"55u","type":"unix","device":"0xffff96af3267e800","size_off":0,"node":22358,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"56u","type":"unix","device":"0xffff96af3267ec00","size_off":0,"node":22359,"name":"private/smtp"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"57u","type":"unix","device":"0xffff96af3267f000","size_off":0,"node":22360,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"58u","type":"unix","device":"0xffff96af3267f400","size_off":0,"node":22361,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"59u","type":"unix","device":"0xffff96af3267f800","size_off":0,"node":22362,"name":"private/relay"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"60u","type":"unix","device":"0xffff96af3267fc00","size_off":0,"node":22363,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"61u","type":"unix","device":"0xffff96afb49b4400","size_off":0,"node":22364,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"62u","type":"unix","device":"0xffff96afb49b1800","size_off":0,"node":22365,"name":"public/showq"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"63u","type":"unix","device":"0xffff96afb49b2c00","size_off":0,"node":22366,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"64u","type":"unix","device":"0xffff96afb49b7800","size_off":0,"node":22367,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"65u","type":"unix","device":"0xffff96af32680400","size_off":0,"node":22368,"name":"private/error"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"66u","type":"unix","device":"0xffff96af32680800","size_off":0,"node":22369,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"67u","type":"unix","device":"0xffff96af32680c00","size_off":0,"node":22370,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"68u","type":"unix","device":"0xffff96af32681000","size_off":0,"node":22371,"name":"private/retry"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"69u","type":"unix","device":"0xffff96af32681400","size_off":0,"node":22372,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"70u","type":"unix","device":"0xffff96af32681800","size_off":0,"node":22373,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"71u","type":"unix","device":"0xffff96af32681c00","size_off":0,"node":22374,"name":"private/discard"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"72u","type":"unix","device":"0xffff96af32682000","size_off":0,"node":22375,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"73u","type":"unix","device":"0xffff96af32682400","size_off":0,"node":22376,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"74u","type":"unix","device":"0xffff96af32682800","size_off":0,"node":22377,"name":"private/local"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"75u","type":"unix","device":"0xffff96af32682c00","size_off":0,"node":22378,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"76u","type":"unix","device":"0xffff96af32683000","size_off":0,"node":22379,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"77u","type":"unix","device":"0xffff96af32683400","size_off":0,"node":22380,"name":"private/virtual"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"78u","type":"unix","device":"0xffff96af32683800","size_off":0,"node":22381,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"79u","type":"unix","device":"0xffff96af32683c00","size_off":0,"node":22382,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"80u","type":"unix","device":"0xffff96af32684000","size_off":0,"node":22383,"name":"private/lmtp"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"81u","type":"unix","device":"0xffff96af32684400","size_off":0,"node":22384,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"82u","type":"unix","device":"0xffff96af32684800","size_off":0,"node":22385,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"83u","type":"unix","device":"0xffff96af32684c00","size_off":0,"node":22386,"name":"private/anvil"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"84u","type":"unix","device":"0xffff96af32685000","size_off":0,"node":22387,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"85u","type":"unix","device":"0xffff96af32685400","size_off":0,"node":22388,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"86u","type":"unix","device":"0xffff96af32685800","size_off":0,"node":22389,"name":"private/scache"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"87u","type":"unix","device":"0xffff96af32685c00","size_off":0,"node":22390,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"88u","type":"unix","device":"0xffff96af32686000","size_off":0,"node":22391,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"89w","type":"FIFO","device":"0,9","size_off":0,"node":22392,"name":"pipe"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"90r","type":"FIFO","device":"0,9","size_off":0,"node":22393,"name":"pipe"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"91w","type":"FIFO","device":"0,9","size_off":0,"node":22393,"name":"pipe"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"92w","type":"FIFO","device":"0,9","size_off":0,"node":22403,"name":"pipe"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"cwd","type":"DIR","device":"253,0","size_off":201,"node":33759002,"name":"/var/spool/postfix"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"txt","type":"REG","device":"253,0","size_off":352192,"node":33759007,"name":"/usr/libexec/postfix/qmgr"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":15688,"node":9878,"name":"/usr/lib64/libkeyutils.so.1.5"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":11392,"node":7832,"name":"/usr/lib64/libfreebl3.so"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":67104,"node":9952,"name":"/usr/lib64/libkrb5support.so.0.1"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":15920,"node":7825,"name":"/usr/lib64/libcom_err.so.2.1"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":210784,"node":9845,"name":"/usr/lib64/libk5crypto.so.3.1"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":967784,"node":9948,"name":"/usr/lib64/libkrb5.so.3.3"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":320784,"node":8155,"name":"/usr/lib64/libgssapi_krb5.so.2.2"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":40664,"node":1119,"name":"/usr/lib64/libcrypt-2.17.so"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":991616,"node":32681,"name":"/usr/lib64/libstdc++.so.6.0.19"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":251792,"node":1468,"name":"/usr/lib64/libnspr4.so"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":20040,"node":1469,"name":"/usr/lib64/libplc4.so"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":15744,"node":1471,"name":"/usr/lib64/libplds4.so"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":198960,"node":1472,"name":"/usr/lib64/libnssutil3.so"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":1257792,"node":33488,"name":"/usr/lib64/libnss3.so"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":168336,"node":503336,"name":"/usr/lib64/libsmime3.so"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":370584,"node":503337,"name":"/usr/lib64/libssl3.so"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":115848,"node":1452,"name":"/usr/lib64/libnsl-2.17.so"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":1850600,"node":10008,"name":"/usr/lib64/libdb-5.3.so"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":470376,"node":9842,"name":"/usr/lib64/libssl.so.1.0.2k"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":121320,"node":10329,"name":"/usr/lib64/libsasl2.so.3.0.0"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":3135712,"node":50359390,"name":"/usr/lib64/mysql/libmysqlclient.so.18.0.0"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":61952,"node":32966,"name":"/usr/lib64/liblber-2.4.so.2.10.7"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":352608,"node":32968,"name":"/usr/lib64/libldap-2.4.so.2.10.7"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"3r","type":"FIFO","device":"0,9","size_off":0,"node":22393,"name":"pipe"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"4w","type":"FIFO","device":"0,9","size_off":0,"node":22393,"name":"pipe"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"5u","type":"unix","device":"0xffff96afb49b0800","size_off":0,"node":22330,"name":"socket"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"6u","type":"unix","device":"0xffff96af33932000","size_off":0,"node":22328,"name":"public/qmgr"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"7u","type":"unix","device":"0xffff96afb4b91400","size_off":0,"node":22409,"name":"socket"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"8u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"11r","type":"FIFO","device":"0,9","size_off":0,"node":22441,"name":"pipe"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"12w","type":"FIFO","device":"0,9","size_off":0,"node":22441,"name":"pipe"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"92w","type":"FIFO","device":"0,9","size_off":0,"node":22403,"name":"pipe"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"253,0","size_off":6,"node":503040,"name":"/home/kbrazil/git"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"253,0","size_off":964600,"node":50332501,"name":"/usr/bin/bash"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":174576,"node":9816,"name":"/usr/lib64/libtinfo.so.5.9"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":26254,"node":16789060,"name":"/usr/lib64/gconv/gconv-modules.cache"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"4,64","size_off":0,"node":8462,"name":"/dev/ttyS0"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"4,64","size_off":0,"node":8462,"name":"/dev/ttyS0"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"4,64","size_off":0,"node":8462,"name":"/dev/ttyS0"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"255u","type":"CHR","device":"4,64","size_off":0,"node":8462,"name":"/dev/ttyS0"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":424352,"node":1487,"name":"/usr/sbin/dhclient"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11392,"node":7832,"name":"/usr/lib64/libfreebl3.so"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":40664,"node":1119,"name":"/usr/lib64/libcrypt-2.17.so"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":251792,"node":1468,"name":"/usr/lib64/libnspr4.so"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20040,"node":1469,"name":"/usr/lib64/libplc4.so"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15744,"node":1471,"name":"/usr/lib64/libplds4.so"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":198960,"node":1472,"name":"/usr/lib64/libnssutil3.so"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1257792,"node":33488,"name":"/usr/lib64/libnss3.so"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":168336,"node":503336,"name":"/usr/lib64/libsmime3.so"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":370584,"node":503337,"name":"/usr/lib64/libssl3.so"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":470376,"node":9842,"name":"/usr/lib64/libssl.so.1.0.2k"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":121320,"node":10329,"name":"/usr/lib64/libsasl2.so.3.0.0"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15688,"node":9878,"name":"/usr/lib64/libkeyutils.so.1.5"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":67104,"node":9952,"name":"/usr/lib64/libkrb5support.so.0.1"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":352608,"node":32968,"name":"/usr/lib64/libldap-2.4.so.2.10.7"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61952,"node":32966,"name":"/usr/lib64/liblber-2.4.so.2.10.7"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":28056,"node":8126,"name":"/usr/lib64/libsystemd-daemon.so.0.0.12"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":446120,"node":50742944,"name":"/usr/lib64/bind9-export/libisc-export.so.169.0.3"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15920,"node":7825,"name":"/usr/lib64/libcom_err.so.2.1"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":210784,"node":9845,"name":"/usr/lib64/libk5crypto.so.3.1"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":967784,"node":9948,"name":"/usr/lib64/libkrb5.so.3.3"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":320784,"node":8155,"name":"/usr/lib64/libgssapi_krb5.so.2.2"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2304128,"node":50696880,"name":"/usr/lib64/bind9-export/libdns-export.so.1102.1.2"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":125280,"node":1483,"name":"/usr/lib64/libomapi.so.0.0.0"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"1w","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"2w","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"3u","type":"unix","device":"0xffff96af3778d400","size_off":0,"node":24201,"name":"socket"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"4w","type":"REG","device":"253,0","size_off":3192,"node":33574989,"name":"/var/lib/NetworkManager/dhclient-d92ece08-9e02-47d5-b2d2-92c80e155744-ens33.lease"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"5u","type":"pack","device":"24213","size_off":0,"node":null,"name":"type=SOCK_RAW"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"6u","type":"IPv4","device":"24214","size_off":0,"node":null,"name":"*:bootpc"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"cwd","type":"DIR","device":"253,0","size_off":201,"node":33759002,"name":"/var/spool/postfix"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"txt","type":"REG","device":"253,0","size_off":285208,"node":33758958,"name":"/usr/libexec/postfix/pickup"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":15688,"node":9878,"name":"/usr/lib64/libkeyutils.so.1.5"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":11392,"node":7832,"name":"/usr/lib64/libfreebl3.so"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":67104,"node":9952,"name":"/usr/lib64/libkrb5support.so.0.1"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":15920,"node":7825,"name":"/usr/lib64/libcom_err.so.2.1"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":210784,"node":9845,"name":"/usr/lib64/libk5crypto.so.3.1"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":967784,"node":9948,"name":"/usr/lib64/libkrb5.so.3.3"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":320784,"node":8155,"name":"/usr/lib64/libgssapi_krb5.so.2.2"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":40664,"node":1119,"name":"/usr/lib64/libcrypt-2.17.so"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":991616,"node":32681,"name":"/usr/lib64/libstdc++.so.6.0.19"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":251792,"node":1468,"name":"/usr/lib64/libnspr4.so"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":20040,"node":1469,"name":"/usr/lib64/libplc4.so"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":15744,"node":1471,"name":"/usr/lib64/libplds4.so"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":198960,"node":1472,"name":"/usr/lib64/libnssutil3.so"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":1257792,"node":33488,"name":"/usr/lib64/libnss3.so"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":168336,"node":503336,"name":"/usr/lib64/libsmime3.so"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":370584,"node":503337,"name":"/usr/lib64/libssl3.so"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":115848,"node":1452,"name":"/usr/lib64/libnsl-2.17.so"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":1850600,"node":10008,"name":"/usr/lib64/libdb-5.3.so"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":470376,"node":9842,"name":"/usr/lib64/libssl.so.1.0.2k"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":121320,"node":10329,"name":"/usr/lib64/libsasl2.so.3.0.0"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":3135712,"node":50359390,"name":"/usr/lib64/mysql/libmysqlclient.so.18.0.0"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":61952,"node":32966,"name":"/usr/lib64/liblber-2.4.so.2.10.7"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":352608,"node":32968,"name":"/usr/lib64/libldap-2.4.so.2.10.7"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"3r","type":"FIFO","device":"0,9","size_off":0,"node":22393,"name":"pipe"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"4w","type":"FIFO","device":"0,9","size_off":0,"node":22393,"name":"pipe"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"5u","type":"unix","device":"0xffff96af33897c00","size_off":0,"node":22323,"name":"socket"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"6u","type":"unix","device":"0xffff96af325fc000","size_off":0,"node":22321,"name":"public/pickup"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"7u","type":"unix","device":"0xffff96afb4b90c00","size_off":0,"node":44430,"name":"socket"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"8u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"9r","type":"FIFO","device":"0,9","size_off":0,"node":44446,"name":"pipe"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"10w","type":"FIFO","device":"0,9","size_off":0,"node":44446,"name":"pipe"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"92w","type":"FIFO","device":"0,9","size_off":0,"node":22403,"name":"pipe"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":852856,"node":297586,"name":"/usr/sbin/sshd"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15480,"node":50338864,"name":"/usr/lib64/security/pam_lastlog.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15632,"node":10151,"name":"/usr/lib64/libpam_misc.so.0.82.0"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":309168,"node":50359979,"name":"/usr/lib64/security/pam_systemd.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19600,"node":50338865,"name":"/usr/lib64/security/pam_limits.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11152,"node":50338863,"name":"/usr/lib64/security/pam_keyinit.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":40784,"node":50338872,"name":"/usr/lib64/security/pam_namespace.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11200,"node":50338868,"name":"/usr/lib64/security/pam_loginuid.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19760,"node":50338880,"name":"/usr/lib64/security/pam_selinux.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":44600,"node":10026,"name":"/usr/lib64/libcrack.so.2.9.0"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23832,"node":10300,"name":"/usr/lib64/libpwquality.so.1.0.2"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11232,"node":50339023,"name":"/usr/lib64/security/pam_pwquality.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":6984,"node":50338874,"name":"/usr/lib64/security/pam_permit.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11144,"node":50338867,"name":"/usr/lib64/security/pam_localuser.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11176,"node":50338873,"name":"/usr/lib64/security/pam_nologin.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":6872,"node":50338853,"name":"/usr/lib64/security/pam_deny.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15408,"node":50338885,"name":"/usr/lib64/security/pam_succeed_if.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":57728,"node":50338891,"name":"/usr/lib64/security/pam_unix.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11168,"node":50338857,"name":"/usr/lib64/security/pam_faildelay.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15552,"node":50338855,"name":"/usr/lib64/security/pam_env.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15496,"node":50338882,"name":"/usr/lib64/security/pam_sepermit.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":86472,"node":33489,"name":"/usr/lib64/libnss_myhostname.so.2"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":31408,"node":503056,"name":"/usr/lib64/libnss_dns-2.17.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15688,"node":9878,"name":"/usr/lib64/libkeyutils.so.1.5"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":67104,"node":9952,"name":"/usr/lib64/libkrb5support.so.0.1"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11392,"node":7832,"name":"/usr/lib64/libfreebl3.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":251792,"node":1468,"name":"/usr/lib64/libnspr4.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20040,"node":1469,"name":"/usr/lib64/libplc4.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15744,"node":1471,"name":"/usr/lib64/libplds4.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":198960,"node":1472,"name":"/usr/lib64/libnssutil3.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1257792,"node":33488,"name":"/usr/lib64/libnss3.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":168336,"node":503336,"name":"/usr/lib64/libsmime3.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":370584,"node":503337,"name":"/usr/lib64/libssl3.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":470376,"node":9842,"name":"/usr/lib64/libssl.so.1.0.2k"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":121320,"node":10329,"name":"/usr/lib64/libsasl2.so.3.0.0"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":115848,"node":1452,"name":"/usr/lib64/libnsl-2.17.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15920,"node":7825,"name":"/usr/lib64/libcom_err.so.2.1"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":210784,"node":9845,"name":"/usr/lib64/libk5crypto.so.3.1"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":967784,"node":9948,"name":"/usr/lib64/libkrb5.so.3.3"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":320784,"node":8155,"name":"/usr/lib64/libgssapi_krb5.so.2.2"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":40664,"node":1119,"name":"/usr/lib64/libcrypt-2.17.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":14496,"node":503085,"name":"/usr/lib64/libutil-2.17.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61952,"node":32966,"name":"/usr/lib64/liblber-2.4.so.2.10.7"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":352608,"node":32968,"name":"/usr/lib64/libldap-2.4.so.2.10.7"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61672,"node":10149,"name":"/usr/lib64/libpam.so.0.83.1"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":42520,"node":10468,"name":"/usr/lib64/libwrap.so.0.7.6"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11344,"node":32826,"name":"/usr/lib64/libfipscheck.so.1.2.1"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"3u","type":"IPv4","device":"44866","size_off":0,"node":null,"name":"localhost.localdomain:ssh->192.168.71.1:58727 (ESTABLISHED)"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"4u","type":"unix","device":"0xffff96aeb657b000","size_off":0,"node":44962,"name":"socket"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"5u","type":"CHR","device":"5,2","size_off":0,"node":8461,"name":"/dev/ptmx"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"6w","type":"FIFO","device":"0,20","size_off":0,"node":44958,"name":"/run/systemd/sessions/17.ref"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"7u","type":"unix","device":"0xffff96aeb6579400","size_off":0,"node":44966,"name":"socket"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"253,0","size_off":852856,"node":297586,"name":"/usr/sbin/sshd"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":15480,"node":50338864,"name":"/usr/lib64/security/pam_lastlog.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":15632,"node":10151,"name":"/usr/lib64/libpam_misc.so.0.82.0"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":309168,"node":50359979,"name":"/usr/lib64/security/pam_systemd.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":19600,"node":50338865,"name":"/usr/lib64/security/pam_limits.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":11152,"node":50338863,"name":"/usr/lib64/security/pam_keyinit.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":40784,"node":50338872,"name":"/usr/lib64/security/pam_namespace.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":11200,"node":50338868,"name":"/usr/lib64/security/pam_loginuid.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":19760,"node":50338880,"name":"/usr/lib64/security/pam_selinux.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":44600,"node":10026,"name":"/usr/lib64/libcrack.so.2.9.0"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":23832,"node":10300,"name":"/usr/lib64/libpwquality.so.1.0.2"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":11232,"node":50339023,"name":"/usr/lib64/security/pam_pwquality.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":6984,"node":50338874,"name":"/usr/lib64/security/pam_permit.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":11144,"node":50338867,"name":"/usr/lib64/security/pam_localuser.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":11176,"node":50338873,"name":"/usr/lib64/security/pam_nologin.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":6872,"node":50338853,"name":"/usr/lib64/security/pam_deny.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":15408,"node":50338885,"name":"/usr/lib64/security/pam_succeed_if.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":57728,"node":50338891,"name":"/usr/lib64/security/pam_unix.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":11168,"node":50338857,"name":"/usr/lib64/security/pam_faildelay.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":15552,"node":50338855,"name":"/usr/lib64/security/pam_env.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":15496,"node":50338882,"name":"/usr/lib64/security/pam_sepermit.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":86472,"node":33489,"name":"/usr/lib64/libnss_myhostname.so.2"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":31408,"node":503056,"name":"/usr/lib64/libnss_dns-2.17.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":15688,"node":9878,"name":"/usr/lib64/libkeyutils.so.1.5"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":67104,"node":9952,"name":"/usr/lib64/libkrb5support.so.0.1"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":11392,"node":7832,"name":"/usr/lib64/libfreebl3.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":251792,"node":1468,"name":"/usr/lib64/libnspr4.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":20040,"node":1469,"name":"/usr/lib64/libplc4.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":15744,"node":1471,"name":"/usr/lib64/libplds4.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":198960,"node":1472,"name":"/usr/lib64/libnssutil3.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":1257792,"node":33488,"name":"/usr/lib64/libnss3.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":168336,"node":503336,"name":"/usr/lib64/libsmime3.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":370584,"node":503337,"name":"/usr/lib64/libssl3.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":470376,"node":9842,"name":"/usr/lib64/libssl.so.1.0.2k"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":121320,"node":10329,"name":"/usr/lib64/libsasl2.so.3.0.0"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":115848,"node":1452,"name":"/usr/lib64/libnsl-2.17.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":15920,"node":7825,"name":"/usr/lib64/libcom_err.so.2.1"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":210784,"node":9845,"name":"/usr/lib64/libk5crypto.so.3.1"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":967784,"node":9948,"name":"/usr/lib64/libkrb5.so.3.3"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":320784,"node":8155,"name":"/usr/lib64/libgssapi_krb5.so.2.2"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":40664,"node":1119,"name":"/usr/lib64/libcrypt-2.17.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":14496,"node":503085,"name":"/usr/lib64/libutil-2.17.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":61952,"node":32966,"name":"/usr/lib64/liblber-2.4.so.2.10.7"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":352608,"node":32968,"name":"/usr/lib64/libldap-2.4.so.2.10.7"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":61672,"node":10149,"name":"/usr/lib64/libpam.so.0.83.1"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":42520,"node":10468,"name":"/usr/lib64/libwrap.so.0.7.6"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":11344,"node":32826,"name":"/usr/lib64/libfipscheck.so.1.2.1"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"3u","type":"IPv4","device":"44866","size_off":0,"node":null,"name":"localhost.localdomain:ssh->192.168.71.1:58727 (ESTABLISHED)"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"4u","type":"unix","device":"0xffff96aeb657b000","size_off":0,"node":44962,"name":"socket"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"5u","type":"unix","device":"0xffff96aeb657fc00","size_off":0,"node":44965,"name":"socket"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"6w","type":"FIFO","device":"0,20","size_off":0,"node":44958,"name":"/run/systemd/sessions/17.ref"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"7r","type":"FIFO","device":"0,9","size_off":0,"node":44977,"name":"pipe"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"8w","type":"FIFO","device":"0,9","size_off":0,"node":44977,"name":"pipe"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"9u","type":"CHR","device":"5,2","size_off":0,"node":8461,"name":"/dev/ptmx"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"13u","type":"CHR","device":"5,2","size_off":0,"node":8461,"name":"/dev/ptmx"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"14u","type":"CHR","device":"5,2","size_off":0,"node":8461,"name":"/dev/ptmx"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"253,0","size_off":4096,"node":16790392,"name":"/home/kbrazil/testfiles"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"253,0","size_off":964600,"node":50332501,"name":"/usr/bin/bash"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":174576,"node":9816,"name":"/usr/lib64/libtinfo.so.5.9"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":26254,"node":16789060,"name":"/usr/lib64/gconv/gconv-modules.cache"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"255u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"kworker/0","pid":4587,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kworker/0","pid":4587,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kworker/0","pid":4587,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4587/exe"},{"command":"kworker/0","pid":4715,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kworker/0","pid":4715,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kworker/0","pid":4715,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4715/exe"},{"command":"kworker/0","pid":4716,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kworker/0","pid":4716,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kworker/0","pid":4716,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4716/exe"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"253,0","size_off":4096,"node":16790392,"name":"/home/kbrazil/testfiles"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"253,0","size_off":964600,"node":50332501,"name":"/usr/bin/bash"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":174576,"node":9816,"name":"/usr/lib64/libtinfo.so.5.9"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":26254,"node":16789060,"name":"/usr/lib64/gconv/gconv-modules.cache"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"255r","type":"REG","device":"253,0","size_off":1568,"node":16993585,"name":"/home/kbrazil/testfiles/tests.sh"},{"command":"sleep","pid":4768,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"253,0","size_off":4096,"node":16790392,"name":"/home/kbrazil/testfiles"},{"command":"sleep","pid":4768,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"sleep","pid":4768,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"253,0","size_off":33128,"node":50338469,"name":"/usr/bin/sleep"},{"command":"sleep","pid":4768,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"sleep","pid":4768,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"sleep","pid":4768,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"sleep","pid":4768,"tid":null,"user":"kbrazil","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"sleep","pid":4768,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":4768,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":4769,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"253,0","size_off":4096,"node":16790392,"name":"/home/kbrazil/testfiles"},{"command":"sleep","pid":4769,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"sleep","pid":4769,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"253,0","size_off":33128,"node":50338469,"name":"/usr/bin/sleep"},{"command":"sleep","pid":4769,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"sleep","pid":4769,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"sleep","pid":4769,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"sleep","pid":4769,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":4769,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":4769,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":4770,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"253,0","size_off":4096,"node":16790392,"name":"/home/kbrazil/testfiles"},{"command":"sleep","pid":4770,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"sleep","pid":4770,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"253,0","size_off":33128,"node":50338469,"name":"/usr/bin/sleep"},{"command":"sleep","pid":4770,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"sleep","pid":4770,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"sleep","pid":4770,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"sleep","pid":4770,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":4770,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":4770,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":4771,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"253,0","size_off":4096,"node":16790392,"name":"/home/kbrazil/testfiles"},{"command":"sleep","pid":4771,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"sleep","pid":4771,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"253,0","size_off":33128,"node":50338469,"name":"/usr/bin/sleep"},{"command":"sleep","pid":4771,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"sleep","pid":4771,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"sleep","pid":4771,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"sleep","pid":4771,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":4771,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":4771,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":4096,"node":16790392,"name":"/home/kbrazil/testfiles"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":147320,"node":50705101,"name":"/usr/bin/sudo"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15632,"node":10151,"name":"/usr/lib64/libpam_misc.so.0.82.0"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":309168,"node":50359979,"name":"/usr/lib64/security/pam_systemd.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19600,"node":50338865,"name":"/usr/lib64/security/pam_limits.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11152,"node":50338863,"name":"/usr/lib64/security/pam_keyinit.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":44600,"node":10026,"name":"/usr/lib64/libcrack.so.2.9.0"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23832,"node":10300,"name":"/usr/lib64/libpwquality.so.1.0.2"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11232,"node":50339023,"name":"/usr/lib64/security/pam_pwquality.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":6984,"node":50338874,"name":"/usr/lib64/security/pam_permit.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11144,"node":50338867,"name":"/usr/lib64/security/pam_localuser.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":6872,"node":50338853,"name":"/usr/lib64/security/pam_deny.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15408,"node":50338885,"name":"/usr/lib64/security/pam_succeed_if.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":115848,"node":1452,"name":"/usr/lib64/libnsl-2.17.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":57728,"node":50338891,"name":"/usr/lib64/security/pam_unix.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11168,"node":50338857,"name":"/usr/lib64/security/pam_faildelay.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15552,"node":50338855,"name":"/usr/lib64/security/pam_env.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15688,"node":9878,"name":"/usr/lib64/libkeyutils.so.1.5"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11392,"node":7832,"name":"/usr/lib64/libfreebl3.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":67104,"node":9952,"name":"/usr/lib64/libkrb5support.so.0.1"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15920,"node":7825,"name":"/usr/lib64/libcom_err.so.2.1"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":210784,"node":9845,"name":"/usr/lib64/libk5crypto.so.3.1"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":967784,"node":9948,"name":"/usr/lib64/libkrb5.so.3.3"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":320784,"node":8155,"name":"/usr/lib64/libgssapi_krb5.so.2.2"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":40664,"node":1119,"name":"/usr/lib64/libcrypt-2.17.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":251792,"node":1468,"name":"/usr/lib64/libnspr4.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20040,"node":1469,"name":"/usr/lib64/libplc4.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15744,"node":1471,"name":"/usr/lib64/libplds4.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":198960,"node":1472,"name":"/usr/lib64/libnssutil3.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1257792,"node":33488,"name":"/usr/lib64/libnss3.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":168336,"node":503336,"name":"/usr/lib64/libsmime3.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":370584,"node":503337,"name":"/usr/lib64/libssl3.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":470376,"node":9842,"name":"/usr/lib64/libssl.so.1.0.2k"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":121320,"node":10329,"name":"/usr/lib64/libsasl2.so.3.0.0"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61952,"node":32966,"name":"/usr/lib64/liblber-2.4.so.2.10.7"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":352608,"node":32968,"name":"/usr/lib64/libldap-2.4.so.2.10.7"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61672,"node":10149,"name":"/usr/lib64/libpam.so.0.83.1"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":423008,"node":50696807,"name":"/usr/libexec/sudo/sudoers.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":77984,"node":50696804,"name":"/usr/libexec/sudo/libsudo_util.so.0.0.0"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":14496,"node":503085,"name":"/usr/lib64/libutil-2.17.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":26254,"node":16789060,"name":"/usr/lib64/gconv/gconv-modules.cache"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"1w","type":"REG","device":"253,0","size_off":0,"node":16825879,"name":"/home/kbrazil/testfiles/lsof-sudo.out"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"3u","type":"netlink","device":null,"size_off":0,"node":49570,"name":"AUDIT"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"4u","type":"unix","device":"0xffff96af33896000","size_off":0,"node":49582,"name":"socket"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"6w","type":"FIFO","device":"0,20","size_off":0,"node":44958,"name":"/run/systemd/sessions/17.ref"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"7r","type":"FIFO","device":"0,9","size_off":0,"node":49585,"name":"pipe"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"8w","type":"FIFO","device":"0,9","size_off":0,"node":49585,"name":"pipe"},{"command":"lsof","pid":4781,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":4096,"node":16790392,"name":"/home/kbrazil/testfiles"},{"command":"lsof","pid":4781,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"lsof","pid":4781,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":154184,"node":1092,"name":"/usr/sbin/lsof"},{"command":"lsof","pid":4781,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"lsof","pid":4781,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"lsof","pid":4781,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"lsof","pid":4781,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"lsof","pid":4781,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"lsof","pid":4781,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"lsof","pid":4781,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"lsof","pid":4781,"tid":null,"user":"root","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"lsof","pid":4781,"tid":null,"user":"root","fd":"1w","type":"REG","device":"253,0","size_off":0,"node":16825879,"name":"/home/kbrazil/testfiles/lsof-sudo.out"},{"command":"lsof","pid":4781,"tid":null,"user":"root","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"lsof","pid":4781,"tid":null,"user":"root","fd":"3r","type":"DIR","device":"0,3","size_off":0,"node":1,"name":"/proc"},{"command":"lsof","pid":4781,"tid":null,"user":"root","fd":"4r","type":"DIR","device":"0,3","size_off":0,"node":49587,"name":"/proc/4781/fd"},{"command":"lsof","pid":4781,"tid":null,"user":"root","fd":"5w","type":"FIFO","device":"0,9","size_off":0,"node":49597,"name":"pipe"},{"command":"lsof","pid":4781,"tid":null,"user":"root","fd":"6r","type":"FIFO","device":"0,9","size_off":0,"node":49598,"name":"pipe"},{"command":"lsof","pid":4782,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":4096,"node":16790392,"name":"/home/kbrazil/testfiles"},{"command":"lsof","pid":4782,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"lsof","pid":4782,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":154184,"node":1092,"name":"/usr/sbin/lsof"},{"command":"lsof","pid":4782,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"lsof","pid":4782,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"lsof","pid":4782,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"lsof","pid":4782,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"lsof","pid":4782,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"lsof","pid":4782,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"lsof","pid":4782,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"lsof","pid":4782,"tid":null,"user":"root","fd":"4r","type":"FIFO","device":"0,9","size_off":0,"node":49597,"name":"pipe"},{"command":"lsof","pid":4782,"tid":null,"user":"root","fd":"7w","type":"FIFO","device":"0,9","size_off":0,"node":49598,"name":"pipe"}] jc-1.17.3/tests/fixtures/centos-7.7/lsof-sudo.out000066400000000000000000013051011415226333200214640ustar00rootroot00000000000000COMMAND PID TID USER FD TYPE DEVICE SIZE/OFF NODE NAME systemd 1 root cwd DIR 253,0 224 64 / systemd 1 root rtd DIR 253,0 224 64 / systemd 1 root txt REG 253,0 1624520 50360451 /usr/lib/systemd/systemd systemd 1 root mem REG 253,0 20064 8146 /usr/lib64/libuuid.so.1.3.0 systemd 1 root mem REG 253,0 265600 8147 /usr/lib64/libblkid.so.1.1.0 systemd 1 root mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 systemd 1 root mem REG 253,0 157424 9974 /usr/lib64/liblzma.so.5.2.2 systemd 1 root mem REG 253,0 23968 10009 /usr/lib64/libcap-ng.so.0.0.0 systemd 1 root mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 systemd 1 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so systemd 1 root mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 systemd 1 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so systemd 1 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so systemd 1 root mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 systemd 1 root mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so systemd 1 root mem REG 253,0 277808 8164 /usr/lib64/libmount.so.1.1.0 systemd 1 root mem REG 253,0 91800 32817 /usr/lib64/libkmod.so.2.2.10 systemd 1 root mem REG 253,0 127184 1475 /usr/lib64/libaudit.so.1.0.0 systemd 1 root mem REG 253,0 61672 10149 /usr/lib64/libpam.so.0.83.1 systemd 1 root mem REG 253,0 20048 8119 /usr/lib64/libcap.so.2.22 systemd 1 root mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 systemd 1 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so systemd 1 root mem REG 253,0 45344 50610926 /etc/selinux/targeted/contexts/files/file_contexts.homedirs.bin systemd 1 root mem REG 253,0 1431995 50392663 /etc/selinux/targeted/contexts/files/file_contexts.bin systemd 1 root 0u CHR 1,3 0t0 6485 /dev/null systemd 1 root 1u CHR 1,3 0t0 6485 /dev/null systemd 1 root 2u CHR 1,3 0t0 6485 /dev/null systemd 1 root 3u a_inode 0,10 0 6481 [timerfd] systemd 1 root 4u a_inode 0,10 0 6481 [eventpoll] systemd 1 root 5u a_inode 0,10 0 6481 [signalfd] systemd 1 root 6r DIR 0,22 0 8688 /sys/fs/cgroup/systemd systemd 1 root 7u a_inode 0,10 0 6481 [timerfd] systemd 1 root 8u netlink 0t0 13770 KOBJECT_UEVENT systemd 1 root 9r REG 0,3 0 8964 /proc/1/mountinfo systemd 1 root 10r a_inode 0,10 0 6481 inotify systemd 1 root 11r REG 0,3 0 4026532019 /proc/swaps systemd 1 root 12u unix 0xffff96aeb677f000 0t0 13771 /run/systemd/private systemd 1 root 14r a_inode 0,10 0 6481 inotify systemd 1 root 19u netlink 0t0 13776 AUDIT systemd 1 root 20u unix 0xffff96aeb677c400 0t0 13851 /run/lvm/lvmpolld.socket systemd 1 root 21u FIFO 0,20 0t0 13862 /run/dmeventd-server systemd 1 root 22u FIFO 0,20 0t0 13863 /run/dmeventd-client systemd 1 root 23u unix 0xffff96afb3392000 0t0 8971 /run/systemd/notify systemd 1 root 24u unix 0xffff96afb3391c00 0t0 8973 /run/systemd/cgroups-agent systemd 1 root 25u unix 0xffff96aeb677bc00 0t0 13864 /run/systemd/shutdownd systemd 1 root 26r CHR 10,235 0t0 8458 /dev/autofs systemd 1 root 27r FIFO 0,9 0t0 13903 pipe systemd 1 root 28u unix 0xffff96afb3393400 0t0 8991 /run/systemd/journal/stdout systemd 1 root 29u unix 0xffff96afb3393800 0t0 8994 /run/systemd/journal/socket systemd 1 root 30u unix 0xffff96afb3393c00 0t0 8996 /dev/log systemd 1 root 31u unix 0xffff96aeb677a800 0t0 13918 /run/lvm/lvmetad.socket systemd 1 root 32u unix 0xffff96aeb6788000 0t0 13962 /run/udev/control systemd 1 root 33r a_inode 0,10 0 6481 inotify systemd 1 root 34u netlink 0t0 14051 KOBJECT_UEVENT systemd 1 root 35u FIFO 0,20 0t0 14170 /run/systemd/initctl/fifo systemd 1 root 36u unix 0xffff96aeb6715800 0t0 14252 socket systemd 1 root 37u unix 0xffff96afb4d62400 0t0 17785 /run/dbus/system_bus_socket systemd 1 root 38u unix 0xffff96aeb6713c00 0t0 14409 /run/systemd/journal/stdout systemd 1 root 39u unix 0xffff96afb4d67000 0t0 17796 socket systemd 1 root 40u unix 0xffff96aeb677e000 0t0 14760 /run/systemd/journal/stdout systemd 1 root 41u a_inode 0,10 0 6481 [timerfd] systemd 1 root 42u unix 0xffff96afb4d63400 0t0 17845 /run/systemd/journal/stdout systemd 1 root 43u unix 0xffff96afb4d71800 0t0 18956 /run/systemd/journal/stdout systemd 1 root 44u netlink 0t0 14577 SELINUX systemd 1 root 48u unix 0xffff96afb5775c00 0t0 18141 /run/systemd/journal/stdout systemd 1 root 51u unix 0xffff96afb5767800 0t0 18419 /run/systemd/journal/stdout systemd 1 root 52u unix 0xffff96af33931800 0t0 21303 /run/systemd/journal/stdout systemd 1 root 53u unix 0xffff96afb573b800 0t0 21448 /run/systemd/journal/stdout systemd 1 root 54u unix 0xffff96afb573d800 0t0 21430 /run/systemd/journal/stdout kthreadd 2 root cwd DIR 253,0 224 64 / kthreadd 2 root rtd DIR 253,0 224 64 / kthreadd 2 root txt unknown /proc/2/exe kworker/0 4 root cwd DIR 253,0 224 64 / kworker/0 4 root rtd DIR 253,0 224 64 / kworker/0 4 root txt unknown /proc/4/exe kworker/u 5 root cwd DIR 253,0 224 64 / kworker/u 5 root rtd DIR 253,0 224 64 / kworker/u 5 root txt unknown /proc/5/exe ksoftirqd 6 root cwd DIR 253,0 224 64 / ksoftirqd 6 root rtd DIR 253,0 224 64 / ksoftirqd 6 root txt unknown /proc/6/exe migration 7 root cwd DIR 253,0 224 64 / migration 7 root rtd DIR 253,0 224 64 / migration 7 root txt unknown /proc/7/exe rcu_bh 8 root cwd DIR 253,0 224 64 / rcu_bh 8 root rtd DIR 253,0 224 64 / rcu_bh 8 root txt unknown /proc/8/exe rcu_sched 9 root cwd DIR 253,0 224 64 / rcu_sched 9 root rtd DIR 253,0 224 64 / rcu_sched 9 root txt unknown /proc/9/exe lru-add-d 10 root cwd DIR 253,0 224 64 / lru-add-d 10 root rtd DIR 253,0 224 64 / lru-add-d 10 root txt unknown /proc/10/exe watchdog/ 11 root cwd DIR 253,0 224 64 / watchdog/ 11 root rtd DIR 253,0 224 64 / watchdog/ 11 root txt unknown /proc/11/exe kdevtmpfs 13 root cwd DIR 0,5 3180 3 / kdevtmpfs 13 root rtd DIR 0,5 3180 3 / kdevtmpfs 13 root txt unknown /proc/13/exe netns 14 root cwd DIR 253,0 224 64 / netns 14 root rtd DIR 253,0 224 64 / netns 14 root txt unknown /proc/14/exe khungtask 15 root cwd DIR 253,0 224 64 / khungtask 15 root rtd DIR 253,0 224 64 / khungtask 15 root txt unknown /proc/15/exe writeback 16 root cwd DIR 253,0 224 64 / writeback 16 root rtd DIR 253,0 224 64 / writeback 16 root txt unknown /proc/16/exe kintegrit 17 root cwd DIR 253,0 224 64 / kintegrit 17 root rtd DIR 253,0 224 64 / kintegrit 17 root txt unknown /proc/17/exe bioset 18 root cwd DIR 253,0 224 64 / bioset 18 root rtd DIR 253,0 224 64 / bioset 18 root txt unknown /proc/18/exe bioset 19 root cwd DIR 253,0 224 64 / bioset 19 root rtd DIR 253,0 224 64 / bioset 19 root txt unknown /proc/19/exe bioset 20 root cwd DIR 253,0 224 64 / bioset 20 root rtd DIR 253,0 224 64 / bioset 20 root txt unknown /proc/20/exe kblockd 21 root cwd DIR 253,0 224 64 / kblockd 21 root rtd DIR 253,0 224 64 / kblockd 21 root txt unknown /proc/21/exe md 22 root cwd DIR 253,0 224 64 / md 22 root rtd DIR 253,0 224 64 / md 22 root txt unknown /proc/22/exe edac-poll 23 root cwd DIR 253,0 224 64 / edac-poll 23 root rtd DIR 253,0 224 64 / edac-poll 23 root txt unknown /proc/23/exe watchdogd 24 root cwd DIR 253,0 224 64 / watchdogd 24 root rtd DIR 253,0 224 64 / watchdogd 24 root txt unknown /proc/24/exe kswapd0 30 root cwd DIR 253,0 224 64 / kswapd0 30 root rtd DIR 253,0 224 64 / kswapd0 30 root txt unknown /proc/30/exe ksmd 31 root cwd DIR 253,0 224 64 / ksmd 31 root rtd DIR 253,0 224 64 / ksmd 31 root txt unknown /proc/31/exe khugepage 32 root cwd DIR 253,0 224 64 / khugepage 32 root rtd DIR 253,0 224 64 / khugepage 32 root txt unknown /proc/32/exe crypto 33 root cwd DIR 253,0 224 64 / crypto 33 root rtd DIR 253,0 224 64 / crypto 33 root txt unknown /proc/33/exe kthrotld 41 root cwd DIR 253,0 224 64 / kthrotld 41 root rtd DIR 253,0 224 64 / kthrotld 41 root txt unknown /proc/41/exe kworker/u 42 root cwd DIR 253,0 224 64 / kworker/u 42 root rtd DIR 253,0 224 64 / kworker/u 42 root txt unknown /proc/42/exe kmpath_rd 43 root cwd DIR 253,0 224 64 / kmpath_rd 43 root rtd DIR 253,0 224 64 / kmpath_rd 43 root txt unknown /proc/43/exe kaluad 44 root cwd DIR 253,0 224 64 / kaluad 44 root rtd DIR 253,0 224 64 / kaluad 44 root txt unknown /proc/44/exe kpsmoused 45 root cwd DIR 253,0 224 64 / kpsmoused 45 root rtd DIR 253,0 224 64 / kpsmoused 45 root txt unknown /proc/45/exe ipv6_addr 47 root cwd DIR 253,0 224 64 / ipv6_addr 47 root rtd DIR 253,0 224 64 / ipv6_addr 47 root txt unknown /proc/47/exe deferwq 60 root cwd DIR 253,0 224 64 / deferwq 60 root rtd DIR 253,0 224 64 / deferwq 60 root txt unknown /proc/60/exe kauditd 95 root cwd DIR 253,0 224 64 / kauditd 95 root rtd DIR 253,0 224 64 / kauditd 95 root txt unknown /proc/95/exe mpt_poll_ 272 root cwd DIR 253,0 224 64 / mpt_poll_ 272 root rtd DIR 253,0 224 64 / mpt_poll_ 272 root txt unknown /proc/272/exe mpt/0 273 root cwd DIR 253,0 224 64 / mpt/0 273 root rtd DIR 253,0 224 64 / mpt/0 273 root txt unknown /proc/273/exe ata_sff 274 root cwd DIR 253,0 224 64 / ata_sff 274 root rtd DIR 253,0 224 64 / ata_sff 274 root txt unknown /proc/274/exe nfit 275 root cwd DIR 253,0 224 64 / nfit 275 root rtd DIR 253,0 224 64 / nfit 275 root txt unknown /proc/275/exe scsi_eh_0 291 root cwd DIR 253,0 224 64 / scsi_eh_0 291 root rtd DIR 253,0 224 64 / scsi_eh_0 291 root txt unknown /proc/291/exe scsi_tmf_ 295 root cwd DIR 253,0 224 64 / scsi_tmf_ 295 root rtd DIR 253,0 224 64 / scsi_tmf_ 295 root txt unknown /proc/295/exe scsi_eh_1 330 root cwd DIR 253,0 224 64 / scsi_eh_1 330 root rtd DIR 253,0 224 64 / scsi_eh_1 330 root txt unknown /proc/330/exe scsi_tmf_ 331 root cwd DIR 253,0 224 64 / scsi_tmf_ 331 root rtd DIR 253,0 224 64 / scsi_tmf_ 331 root txt unknown /proc/331/exe scsi_eh_2 339 root cwd DIR 253,0 224 64 / scsi_eh_2 339 root rtd DIR 253,0 224 64 / scsi_eh_2 339 root txt unknown /proc/339/exe scsi_tmf_ 346 root cwd DIR 253,0 224 64 / scsi_tmf_ 346 root rtd DIR 253,0 224 64 / scsi_tmf_ 346 root txt unknown /proc/346/exe irq/16-vm 357 root cwd DIR 253,0 224 64 / irq/16-vm 357 root rtd DIR 253,0 224 64 / irq/16-vm 357 root txt unknown /proc/357/exe ttm_swap 358 root cwd DIR 253,0 224 64 / ttm_swap 358 root rtd DIR 253,0 224 64 / ttm_swap 358 root txt unknown /proc/358/exe kdmflush 431 root cwd DIR 253,0 224 64 / kdmflush 431 root rtd DIR 253,0 224 64 / kdmflush 431 root txt unknown /proc/431/exe bioset 432 root cwd DIR 253,0 224 64 / bioset 432 root rtd DIR 253,0 224 64 / bioset 432 root txt unknown /proc/432/exe kdmflush 442 root cwd DIR 253,0 224 64 / kdmflush 442 root rtd DIR 253,0 224 64 / kdmflush 442 root txt unknown /proc/442/exe bioset 443 root cwd DIR 253,0 224 64 / bioset 443 root rtd DIR 253,0 224 64 / bioset 443 root txt unknown /proc/443/exe bioset 455 root cwd DIR 253,0 224 64 / bioset 455 root rtd DIR 253,0 224 64 / bioset 455 root txt unknown /proc/455/exe xfsalloc 456 root cwd DIR 253,0 224 64 / xfsalloc 456 root rtd DIR 253,0 224 64 / xfsalloc 456 root txt unknown /proc/456/exe xfs_mru_c 457 root cwd DIR 253,0 224 64 / xfs_mru_c 457 root rtd DIR 253,0 224 64 / xfs_mru_c 457 root txt unknown /proc/457/exe xfs-buf/d 458 root cwd DIR 253,0 224 64 / xfs-buf/d 458 root rtd DIR 253,0 224 64 / xfs-buf/d 458 root txt unknown /proc/458/exe xfs-data/ 459 root cwd DIR 253,0 224 64 / xfs-data/ 459 root rtd DIR 253,0 224 64 / xfs-data/ 459 root txt unknown /proc/459/exe xfs-conv/ 460 root cwd DIR 253,0 224 64 / xfs-conv/ 460 root rtd DIR 253,0 224 64 / xfs-conv/ 460 root txt unknown /proc/460/exe xfs-cil/d 461 root cwd DIR 253,0 224 64 / xfs-cil/d 461 root rtd DIR 253,0 224 64 / xfs-cil/d 461 root txt unknown /proc/461/exe xfs-recla 462 root cwd DIR 253,0 224 64 / xfs-recla 462 root rtd DIR 253,0 224 64 / xfs-recla 462 root txt unknown /proc/462/exe xfs-log/d 463 root cwd DIR 253,0 224 64 / xfs-log/d 463 root rtd DIR 253,0 224 64 / xfs-log/d 463 root txt unknown /proc/463/exe xfs-eofbl 464 root cwd DIR 253,0 224 64 / xfs-eofbl 464 root rtd DIR 253,0 224 64 / xfs-eofbl 464 root txt unknown /proc/464/exe xfsaild/d 465 root cwd DIR 253,0 224 64 / xfsaild/d 465 root rtd DIR 253,0 224 64 / xfsaild/d 465 root txt unknown /proc/465/exe kworker/0 466 root cwd DIR 253,0 224 64 / kworker/0 466 root rtd DIR 253,0 224 64 / kworker/0 466 root txt unknown /proc/466/exe systemd-j 544 root cwd DIR 253,0 224 64 / systemd-j 544 root rtd DIR 253,0 224 64 / systemd-j 544 root txt REG 253,0 346152 50360465 /usr/lib/systemd/systemd-journald systemd-j 544 root mem REG 0,20 8388608 9246 /run/log/journal/c1aceec07c3141c5893d84415874e296/system.journal systemd-j 544 root mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 systemd-j 544 root mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 systemd-j 544 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so systemd-j 544 root mem REG 253,0 19384 10000 /usr/lib64/libgpg-error.so.0.10.0 systemd-j 544 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so systemd-j 544 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so systemd-j 544 root mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 systemd-j 544 root mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so systemd-j 544 root mem REG 253,0 37056 9833 /usr/lib64/libacl.so.1.1.0 systemd-j 544 root mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 systemd-j 544 root mem REG 253,0 535064 10016 /usr/lib64/libgcrypt.so.11.8.2 systemd-j 544 root mem REG 253,0 85968 10471 /usr/lib64/liblz4.so.1.7.5 systemd-j 544 root mem REG 253,0 157424 9974 /usr/lib64/liblzma.so.5.2.2 systemd-j 544 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so systemd-j 544 root mem REG 0,20 8 9217 /run/systemd/journal/kernel-seqnum systemd-j 544 root 0r CHR 1,3 0t0 6485 /dev/null systemd-j 544 root 1w CHR 1,3 0t0 6485 /dev/null systemd-j 544 root 2w CHR 1,3 0t0 6485 /dev/null systemd-j 544 root 3u unix 0xffff96afb3393400 0t0 8991 /run/systemd/journal/stdout systemd-j 544 root 4u unix 0xffff96afb3393800 0t0 8994 /run/systemd/journal/socket systemd-j 544 root 5u unix 0xffff96afb3393c00 0t0 8996 /dev/log systemd-j 544 root 6w CHR 1,11 0t0 6491 /dev/kmsg systemd-j 544 root 7u a_inode 0,10 0 6481 [eventpoll] systemd-j 544 root 8u CHR 1,11 0t0 6491 /dev/kmsg systemd-j 544 root 9r REG 0,3 0 9218 /proc/sys/kernel/hostname systemd-j 544 root 10u a_inode 0,10 0 6481 [signalfd] systemd-j 544 root 11u unix 0xffff96aeb6716000 0t0 14029 socket systemd-j 544 root 12u a_inode 0,10 0 6481 [timerfd] systemd-j 544 root 13u REG 0,20 8388608 9246 /run/log/journal/c1aceec07c3141c5893d84415874e296/system.journal systemd-j 544 root 14u unix 0xffff96afb4d63400 0t0 17845 /run/systemd/journal/stdout systemd-j 544 root 15u unix 0xffff96aeb6713c00 0t0 14409 /run/systemd/journal/stdout systemd-j 544 root 16u unix 0xffff96afb4d71800 0t0 18956 /run/systemd/journal/stdout systemd-j 544 root 17u unix 0xffff96aeb677e000 0t0 14760 /run/systemd/journal/stdout systemd-j 544 root 21u unix 0xffff96afb5775c00 0t0 18141 /run/systemd/journal/stdout systemd-j 544 root 22u unix 0xffff96af33931800 0t0 21303 /run/systemd/journal/stdout systemd-j 544 root 23u unix 0xffff96afb573d800 0t0 21430 /run/systemd/journal/stdout systemd-j 544 root 24u unix 0xffff96afb5767800 0t0 18419 /run/systemd/journal/stdout systemd-j 544 root 25u unix 0xffff96afb573b800 0t0 21448 /run/systemd/journal/stdout lvmetad 560 root cwd DIR 253,0 224 64 / lvmetad 560 root rtd DIR 253,0 224 64 / lvmetad 560 root txt REG 253,0 73376 3435 /usr/sbin/lvmetad lvmetad 560 root mem REG 253,0 68192 9982 /usr/lib64/libbz2.so.1.0.6 lvmetad 560 root mem REG 253,0 157424 9974 /usr/lib64/liblzma.so.5.2.2 lvmetad 560 root mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 lvmetad 560 root mem REG 253,0 100024 503087 /usr/lib64/libelf-0.176.so lvmetad 560 root mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 lvmetad 560 root mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 lvmetad 560 root mem REG 253,0 338704 33747 /usr/lib64/libdw-0.176.so lvmetad 560 root mem REG 253,0 20048 8119 /usr/lib64/libcap.so.2.22 lvmetad 560 root mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so lvmetad 560 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so lvmetad 560 root mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 lvmetad 560 root mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so lvmetad 560 root mem REG 253,0 91024 33744 /usr/lib64/libudev.so.1.6.2 lvmetad 560 root mem REG 253,0 660208 9827 /usr/lib64/libsepol.so.1 lvmetad 560 root mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 lvmetad 560 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so lvmetad 560 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so lvmetad 560 root mem REG 253,0 356112 16794 /usr/lib64/libdevmapper.so.1.02 lvmetad 560 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so lvmetad 560 root mem REG 253,0 45344 50610926 /etc/selinux/targeted/contexts/files/file_contexts.homedirs.bin lvmetad 560 root mem REG 253,0 1431995 50392663 /etc/selinux/targeted/contexts/files/file_contexts.bin lvmetad 560 root 0r CHR 1,3 0t0 6485 /dev/null lvmetad 560 root 1u unix 0xffff96aeb6714c00 0t0 14408 socket lvmetad 560 root 2u unix 0xffff96aeb6714c00 0t0 14408 socket lvmetad 560 root 3u unix 0xffff96aeb677a800 0t0 13918 /run/lvm/lvmetad.socket lvmetad 560 root 4wW REG 0,20 4 14581 /run/lvmetad.pid systemd-u 577 root cwd DIR 253,0 224 64 / systemd-u 577 root rtd DIR 253,0 224 64 / systemd-u 577 root txt REG 253,0 416168 50360488 /usr/lib/systemd/systemd-udevd systemd-u 577 root mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so systemd-u 577 root mem REG 253,0 8201136 17105721 /etc/udev/hwdb.bin systemd-u 577 root mem REG 253,0 483595 17105570 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/modules.symbols.bin systemd-u 577 root mem REG 253,0 813600 17072551 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/modules.alias.bin systemd-u 577 root mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 systemd-u 577 root mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 systemd-u 577 root mem REG 253,0 157424 9974 /usr/lib64/liblzma.so.5.2.2 systemd-u 577 root mem REG 253,0 20064 8146 /usr/lib64/libuuid.so.1.3.0 systemd-u 577 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so systemd-u 577 root mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 systemd-u 577 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so systemd-u 577 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so systemd-u 577 root mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 systemd-u 577 root mem REG 253,0 37056 9833 /usr/lib64/libacl.so.1.1.0 systemd-u 577 root mem REG 253,0 91800 32817 /usr/lib64/libkmod.so.2.2.10 systemd-u 577 root mem REG 253,0 265600 8147 /usr/lib64/libblkid.so.1.1.0 systemd-u 577 root mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so systemd-u 577 root mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 systemd-u 577 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so systemd-u 577 root mem REG 253,0 379859 16790240 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/modules.dep.bin systemd-u 577 root mem REG 253,0 45344 50610926 /etc/selinux/targeted/contexts/files/file_contexts.homedirs.bin systemd-u 577 root mem REG 253,0 1431995 50392663 /etc/selinux/targeted/contexts/files/file_contexts.bin systemd-u 577 root mem REG 253,0 9425 17105934 /usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/modules.builtin.bin systemd-u 577 root 0r CHR 1,3 0t0 6485 /dev/null systemd-u 577 root 1u unix 0xffff96aeb6779000 0t0 14759 socket systemd-u 577 root 2u unix 0xffff96aeb6779000 0t0 14759 socket systemd-u 577 root 3u netlink 0t0 14051 KOBJECT_UEVENT systemd-u 577 root 4u unix 0xffff96aeb6788000 0t0 13962 /run/udev/control systemd-u 577 root 5u unix 0xffff96aeb6713400 0t0 14838 socket systemd-u 577 root 6r REG 253,0 8201136 17105721 /etc/udev/hwdb.bin systemd-u 577 root 7r a_inode 0,10 0 6481 inotify systemd-u 577 root 8u a_inode 0,10 0 6481 [signalfd] systemd-u 577 root 9u unix 0xffff96afb46a5400 0t0 14872 socket systemd-u 577 root 10u unix 0xffff96afb46a5c00 0t0 14873 socket systemd-u 577 root 11u a_inode 0,10 0 6481 [eventpoll] xfs-buf/s 629 root cwd DIR 253,0 224 64 / xfs-buf/s 629 root rtd DIR 253,0 224 64 / xfs-buf/s 629 root txt unknown /proc/629/exe xfs-data/ 638 root cwd DIR 253,0 224 64 / xfs-data/ 638 root rtd DIR 253,0 224 64 / xfs-data/ 638 root txt unknown /proc/638/exe xfs-conv/ 641 root cwd DIR 253,0 224 64 / xfs-conv/ 641 root rtd DIR 253,0 224 64 / xfs-conv/ 641 root txt unknown /proc/641/exe xfs-cil/s 646 root cwd DIR 253,0 224 64 / xfs-cil/s 646 root rtd DIR 253,0 224 64 / xfs-cil/s 646 root txt unknown /proc/646/exe xfs-recla 651 root cwd DIR 253,0 224 64 / xfs-recla 651 root rtd DIR 253,0 224 64 / xfs-recla 651 root txt unknown /proc/651/exe xfs-log/s 654 root cwd DIR 253,0 224 64 / xfs-log/s 654 root rtd DIR 253,0 224 64 / xfs-log/s 654 root txt unknown /proc/654/exe xfs-eofbl 658 root cwd DIR 253,0 224 64 / xfs-eofbl 658 root rtd DIR 253,0 224 64 / xfs-eofbl 658 root txt unknown /proc/658/exe xfsaild/s 667 root cwd DIR 253,0 224 64 / xfsaild/s 667 root rtd DIR 253,0 224 64 / xfsaild/s 667 root txt unknown /proc/667/exe kworker/u 675 root cwd DIR 253,0 224 64 / kworker/u 675 root rtd DIR 253,0 224 64 / kworker/u 675 root txt unknown /proc/675/exe hci0 677 root cwd DIR 253,0 224 64 / hci0 677 root rtd DIR 253,0 224 64 / hci0 677 root txt unknown /proc/677/exe hci0 678 root cwd DIR 253,0 224 64 / hci0 678 root rtd DIR 253,0 224 64 / hci0 678 root txt unknown /proc/678/exe kworker/u 681 root cwd DIR 253,0 224 64 / kworker/u 681 root rtd DIR 253,0 224 64 / kworker/u 681 root txt unknown /proc/681/exe auditd 756 root cwd DIR 253,0 224 64 / auditd 756 root rtd DIR 253,0 224 64 / auditd 756 root txt REG 253,0 128664 3639 /usr/sbin/auditd auditd 756 root mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so auditd 756 root mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 auditd 756 root mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 auditd 756 root mem REG 253,0 105824 503073 /usr/lib64/libresolv-2.17.so auditd 756 root mem REG 253,0 15688 9878 /usr/lib64/libkeyutils.so.1.5 auditd 756 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so auditd 756 root mem REG 253,0 67104 9952 /usr/lib64/libkrb5support.so.0.1 auditd 756 root mem REG 253,0 15920 7825 /usr/lib64/libcom_err.so.2.1 auditd 756 root mem REG 253,0 210784 9845 /usr/lib64/libk5crypto.so.3.1 auditd 756 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so auditd 756 root mem REG 253,0 967784 9948 /usr/lib64/libkrb5.so.3.3 auditd 756 root mem REG 253,0 320784 8155 /usr/lib64/libgssapi_krb5.so.2.2 auditd 756 root mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so auditd 756 root mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so auditd 756 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so auditd 756 root mem REG 253,0 23968 10009 /usr/lib64/libcap-ng.so.0.0.0 auditd 756 root mem REG 253,0 127184 1475 /usr/lib64/libaudit.so.1.0.0 auditd 756 root mem REG 253,0 128456 7752 /usr/lib64/libauparse.so.0.0.0 auditd 756 root mem REG 253,0 115848 1452 /usr/lib64/libnsl-2.17.so auditd 756 root mem REG 253,0 42520 10468 /usr/lib64/libwrap.so.0.7.6 auditd 756 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so auditd 756 root 0u CHR 1,3 0t0 6485 /dev/null auditd 756 root 1u CHR 1,3 0t0 6485 /dev/null auditd 756 root 2u CHR 1,3 0t0 6485 /dev/null auditd 756 root 3u netlink 0t0 17617 AUDIT auditd 756 root 5w REG 253,0 2121390 72 /var/log/audit/audit.log auditd 756 root 6u a_inode 0,10 0 6481 [eventpoll] auditd 756 root 7u a_inode 0,10 0 6481 [eventfd] auditd 756 root 8u unix 0xffff96afb4d62c00 0t0 17621 socket auditd 756 root 9u unix 0xffff96afb4d64800 0t0 17630 socket auditd 756 root 10u unix 0xffff96afb4d63c00 0t0 17631 socket auditd 756 757 root cwd DIR 253,0 224 64 / auditd 756 757 root rtd DIR 253,0 224 64 / auditd 756 757 root txt REG 253,0 128664 3639 /usr/sbin/auditd auditd 756 757 root mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so auditd 756 757 root mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 auditd 756 757 root mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 auditd 756 757 root mem REG 253,0 105824 503073 /usr/lib64/libresolv-2.17.so auditd 756 757 root mem REG 253,0 15688 9878 /usr/lib64/libkeyutils.so.1.5 auditd 756 757 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so auditd 756 757 root mem REG 253,0 67104 9952 /usr/lib64/libkrb5support.so.0.1 auditd 756 757 root mem REG 253,0 15920 7825 /usr/lib64/libcom_err.so.2.1 auditd 756 757 root mem REG 253,0 210784 9845 /usr/lib64/libk5crypto.so.3.1 auditd 756 757 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so auditd 756 757 root mem REG 253,0 967784 9948 /usr/lib64/libkrb5.so.3.3 auditd 756 757 root mem REG 253,0 320784 8155 /usr/lib64/libgssapi_krb5.so.2.2 auditd 756 757 root mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so auditd 756 757 root mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so auditd 756 757 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so auditd 756 757 root mem REG 253,0 23968 10009 /usr/lib64/libcap-ng.so.0.0.0 auditd 756 757 root mem REG 253,0 127184 1475 /usr/lib64/libaudit.so.1.0.0 auditd 756 757 root mem REG 253,0 128456 7752 /usr/lib64/libauparse.so.0.0.0 auditd 756 757 root mem REG 253,0 115848 1452 /usr/lib64/libnsl-2.17.so auditd 756 757 root mem REG 253,0 42520 10468 /usr/lib64/libwrap.so.0.7.6 auditd 756 757 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so auditd 756 757 root 0u CHR 1,3 0t0 6485 /dev/null auditd 756 757 root 1u CHR 1,3 0t0 6485 /dev/null auditd 756 757 root 2u CHR 1,3 0t0 6485 /dev/null auditd 756 757 root 3u netlink 0t0 17617 AUDIT auditd 756 757 root 5w REG 253,0 2121390 72 /var/log/audit/audit.log auditd 756 757 root 6u a_inode 0,10 0 6481 [eventpoll] auditd 756 757 root 7u a_inode 0,10 0 6481 [eventfd] auditd 756 757 root 8u unix 0xffff96afb4d62c00 0t0 17621 socket auditd 756 757 root 9u unix 0xffff96afb4d64800 0t0 17630 socket auditd 756 757 root 10u unix 0xffff96afb4d63c00 0t0 17631 socket dbus-daem 778 dbus cwd DIR 253,0 224 64 / dbus-daem 778 dbus rtd DIR 253,0 224 64 / dbus-daem 778 dbus txt REG 253,0 223320 50360532 /usr/bin/dbus-daemon dbus-daem 778 dbus mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so dbus-daem 778 dbus mem REG 253,0 68192 9982 /usr/lib64/libbz2.so.1.0.6 dbus-daem 778 dbus mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 dbus-daem 778 dbus mem REG 253,0 100024 503087 /usr/lib64/libelf-0.176.so dbus-daem 778 dbus mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 dbus-daem 778 dbus mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 dbus-daem 778 dbus mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 dbus-daem 778 dbus mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so dbus-daem 778 dbus mem REG 253,0 338704 33747 /usr/lib64/libdw-0.176.so dbus-daem 778 dbus mem REG 253,0 105824 503073 /usr/lib64/libresolv-2.17.so dbus-daem 778 dbus mem REG 253,0 19384 10000 /usr/lib64/libgpg-error.so.0.10.0 dbus-daem 778 dbus mem REG 253,0 535064 10016 /usr/lib64/libgcrypt.so.11.8.2 dbus-daem 778 dbus mem REG 253,0 85968 10471 /usr/lib64/liblz4.so.1.7.5 dbus-daem 778 dbus mem REG 253,0 157424 9974 /usr/lib64/liblzma.so.5.2.2 dbus-daem 778 dbus mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so dbus-daem 778 dbus mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so dbus-daem 778 dbus mem REG 253,0 20048 8119 /usr/lib64/libcap.so.2.22 dbus-daem 778 dbus mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so dbus-daem 778 dbus mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so dbus-daem 778 dbus mem REG 253,0 23968 10009 /usr/lib64/libcap-ng.so.0.0.0 dbus-daem 778 dbus mem REG 253,0 127184 1475 /usr/lib64/libaudit.so.1.0.0 dbus-daem 778 dbus mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 dbus-daem 778 dbus mem REG 253,0 173320 10025 /usr/lib64/libexpat.so.1.6.0 dbus-daem 778 dbus mem REG 253,0 203688 33742 /usr/lib64/libsystemd.so.0.6.0 dbus-daem 778 dbus mem REG 253,0 333384 33781 /usr/lib64/libdbus-1.so.3.14.14 dbus-daem 778 dbus mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so dbus-daem 778 dbus 0u CHR 1,3 0t0 6485 /dev/null dbus-daem 778 dbus 1u unix 0xffff96afb4d62800 0t0 17844 socket dbus-daem 778 dbus 2u unix 0xffff96afb4d62800 0t0 17844 socket dbus-daem 778 dbus 3u unix 0xffff96afb4d62400 0t0 17785 /run/dbus/system_bus_socket dbus-daem 778 dbus 4u a_inode 0,10 0 6481 [eventpoll] dbus-daem 778 dbus 5u sock 0,7 0t0 17853 protocol: NETLINK dbus-daem 778 dbus 6u netlink 0t0 17854 SELINUX dbus-daem 778 dbus 7r a_inode 0,10 0 6481 inotify dbus-daem 778 dbus 8u unix 0xffff96afb4d60000 0t0 17859 socket dbus-daem 778 dbus 9u unix 0xffff96afb4d61000 0t0 17860 socket dbus-daem 778 dbus 10u unix 0xffff96afb4d64000 0t0 17861 /run/dbus/system_bus_socket dbus-daem 778 dbus 11u unix 0xffff96afb4d77800 0t0 18364 /run/dbus/system_bus_socket dbus-daem 778 dbus 12u unix 0xffff96afb5766000 0t0 18610 /run/dbus/system_bus_socket dbus-daem 778 dbus 13u unix 0xffff96aeb670dc00 0t0 18893 /run/dbus/system_bus_socket dbus-daem 778 dbus 14u unix 0xffff96afb573e000 0t0 19006 /run/dbus/system_bus_socket dbus-daem 778 dbus 15u unix 0xffff96afb573c800 0t0 19075 socket dbus-daem 778 dbus 16u unix 0xffff96afb4b95400 0t0 22479 /run/dbus/system_bus_socket dbus-daem 778 dbus 19u unix 0xffff96afb573a400 0t0 20120 /run/dbus/system_bus_socket dbus-daem 778 dbus 20u unix 0xffff96af325fe800 0t0 23047 /run/dbus/system_bus_socket dbus-daem 778 779 dbus cwd DIR 253,0 224 64 / dbus-daem 778 779 dbus rtd DIR 253,0 224 64 / dbus-daem 778 779 dbus txt REG 253,0 223320 50360532 /usr/bin/dbus-daemon dbus-daem 778 779 dbus mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so dbus-daem 778 779 dbus mem REG 253,0 68192 9982 /usr/lib64/libbz2.so.1.0.6 dbus-daem 778 779 dbus mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 dbus-daem 778 779 dbus mem REG 253,0 100024 503087 /usr/lib64/libelf-0.176.so dbus-daem 778 779 dbus mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 dbus-daem 778 779 dbus mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 dbus-daem 778 779 dbus mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 dbus-daem 778 779 dbus mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so dbus-daem 778 779 dbus mem REG 253,0 338704 33747 /usr/lib64/libdw-0.176.so dbus-daem 778 779 dbus mem REG 253,0 105824 503073 /usr/lib64/libresolv-2.17.so dbus-daem 778 779 dbus mem REG 253,0 19384 10000 /usr/lib64/libgpg-error.so.0.10.0 dbus-daem 778 779 dbus mem REG 253,0 535064 10016 /usr/lib64/libgcrypt.so.11.8.2 dbus-daem 778 779 dbus mem REG 253,0 85968 10471 /usr/lib64/liblz4.so.1.7.5 dbus-daem 778 779 dbus mem REG 253,0 157424 9974 /usr/lib64/liblzma.so.5.2.2 dbus-daem 778 779 dbus mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so dbus-daem 778 779 dbus mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so dbus-daem 778 779 dbus mem REG 253,0 20048 8119 /usr/lib64/libcap.so.2.22 dbus-daem 778 779 dbus mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so dbus-daem 778 779 dbus mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so dbus-daem 778 779 dbus mem REG 253,0 23968 10009 /usr/lib64/libcap-ng.so.0.0.0 dbus-daem 778 779 dbus mem REG 253,0 127184 1475 /usr/lib64/libaudit.so.1.0.0 dbus-daem 778 779 dbus mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 dbus-daem 778 779 dbus mem REG 253,0 173320 10025 /usr/lib64/libexpat.so.1.6.0 dbus-daem 778 779 dbus mem REG 253,0 203688 33742 /usr/lib64/libsystemd.so.0.6.0 dbus-daem 778 779 dbus mem REG 253,0 333384 33781 /usr/lib64/libdbus-1.so.3.14.14 dbus-daem 778 779 dbus mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so dbus-daem 778 779 dbus 0u CHR 1,3 0t0 6485 /dev/null dbus-daem 778 779 dbus 1u unix 0xffff96afb4d62800 0t0 17844 socket dbus-daem 778 779 dbus 2u unix 0xffff96afb4d62800 0t0 17844 socket dbus-daem 778 779 dbus 3u unix 0xffff96afb4d62400 0t0 17785 /run/dbus/system_bus_socket dbus-daem 778 779 dbus 4u a_inode 0,10 0 6481 [eventpoll] dbus-daem 778 779 dbus 5u sock 0,7 0t0 17853 protocol: NETLINK dbus-daem 778 779 dbus 6u netlink 0t0 17854 SELINUX dbus-daem 778 779 dbus 7r a_inode 0,10 0 6481 inotify dbus-daem 778 779 dbus 8u unix 0xffff96afb4d60000 0t0 17859 socket dbus-daem 778 779 dbus 9u unix 0xffff96afb4d61000 0t0 17860 socket dbus-daem 778 779 dbus 10u unix 0xffff96afb4d64000 0t0 17861 /run/dbus/system_bus_socket dbus-daem 778 779 dbus 11u unix 0xffff96afb4d77800 0t0 18364 /run/dbus/system_bus_socket dbus-daem 778 779 dbus 12u unix 0xffff96afb5766000 0t0 18610 /run/dbus/system_bus_socket dbus-daem 778 779 dbus 13u unix 0xffff96aeb670dc00 0t0 18893 /run/dbus/system_bus_socket dbus-daem 778 779 dbus 14u unix 0xffff96afb573e000 0t0 19006 /run/dbus/system_bus_socket dbus-daem 778 779 dbus 15u unix 0xffff96afb573c800 0t0 19075 socket dbus-daem 778 779 dbus 16u unix 0xffff96afb4b95400 0t0 22479 /run/dbus/system_bus_socket dbus-daem 778 779 dbus 19u unix 0xffff96afb573a400 0t0 20120 /run/dbus/system_bus_socket dbus-daem 778 779 dbus 20u unix 0xffff96af325fe800 0t0 23047 /run/dbus/system_bus_socket polkitd 781 polkitd cwd DIR 253,0 224 64 / polkitd 781 polkitd rtd DIR 253,0 224 64 / polkitd 781 polkitd txt REG 253,0 120432 50360556 /usr/lib/polkit-1/polkitd polkitd 781 polkitd mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so polkitd 781 polkitd mem REG 253,0 68192 9982 /usr/lib64/libbz2.so.1.0.6 polkitd 781 polkitd mem REG 253,0 100024 503087 /usr/lib64/libelf-0.176.so polkitd 781 polkitd mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 polkitd 781 polkitd mem REG 253,0 20064 8146 /usr/lib64/libuuid.so.1.3.0 polkitd 781 polkitd mem REG 253,0 265600 8147 /usr/lib64/libblkid.so.1.1.0 polkitd 781 polkitd mem REG 253,0 991616 32681 /usr/lib64/libstdc++.so.6.0.19 polkitd 781 polkitd mem REG 253,0 251792 1468 /usr/lib64/libnspr4.so polkitd 781 polkitd mem REG 253,0 20040 1469 /usr/lib64/libplc4.so polkitd 781 polkitd mem REG 253,0 15744 1471 /usr/lib64/libplds4.so polkitd 781 polkitd mem REG 253,0 338704 33747 /usr/lib64/libdw-0.176.so polkitd 781 polkitd mem REG 253,0 19384 10000 /usr/lib64/libgpg-error.so.0.10.0 polkitd 781 polkitd mem REG 253,0 535064 10016 /usr/lib64/libgcrypt.so.11.8.2 polkitd 781 polkitd mem REG 253,0 85968 10471 /usr/lib64/liblz4.so.1.7.5 polkitd 781 polkitd mem REG 253,0 157424 9974 /usr/lib64/liblzma.so.5.2.2 polkitd 781 polkitd mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so polkitd 781 polkitd mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so polkitd 781 polkitd mem REG 253,0 20048 8119 /usr/lib64/libcap.so.2.22 polkitd 781 polkitd mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 polkitd 781 polkitd mem REG 253,0 277808 8164 /usr/lib64/libmount.so.1.1.0 polkitd 781 polkitd mem REG 253,0 105824 503073 /usr/lib64/libresolv-2.17.so polkitd 781 polkitd mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 polkitd 781 polkitd mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 polkitd 781 polkitd mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 polkitd 781 polkitd mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so polkitd 781 polkitd mem REG 253,0 32304 9828 /usr/lib64/libffi.so.6.0.1 polkitd 781 polkitd mem REG 253,0 15640 9972 /usr/lib64/libgmodule-2.0.so.0.5600.1 polkitd 781 polkitd mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so polkitd 781 polkitd mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so polkitd 781 polkitd mem REG 253,0 4028168 33229 /usr/lib64/libmozjs-17.0.so polkitd 781 polkitd mem REG 253,0 173320 10025 /usr/lib64/libexpat.so.1.6.0 polkitd 781 polkitd mem REG 253,0 203688 33742 /usr/lib64/libsystemd.so.0.6.0 polkitd 781 polkitd mem REG 253,0 1156656 9967 /usr/lib64/libglib-2.0.so.0.5600.1 polkitd 781 polkitd mem REG 253,0 339112 10068 /usr/lib64/libgobject-2.0.so.0.5600.1 polkitd 781 polkitd mem REG 253,0 1722920 9963 /usr/lib64/libgio-2.0.so.0.5600.1 polkitd 781 polkitd mem REG 253,0 118704 1479 /usr/lib64/libpolkit-gobject-1.so.0.0.0 polkitd 781 polkitd mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so polkitd 781 polkitd mem REG 253,0 26254 16789060 /usr/lib64/gconv/gconv-modules.cache polkitd 781 polkitd 0u CHR 1,3 0t0 6485 /dev/null polkitd 781 polkitd 1u CHR 1,3 0t0 6485 /dev/null polkitd 781 polkitd 2u CHR 1,3 0t0 6485 /dev/null polkitd 781 polkitd 3r a_inode 0,10 0 6481 inotify polkitd 781 polkitd 4u a_inode 0,10 0 6481 [eventfd] polkitd 781 polkitd 5u a_inode 0,10 0 6481 [eventfd] polkitd 781 polkitd 6u unix 0xffff96afb5760400 0t0 18604 socket polkitd 781 polkitd 7u a_inode 0,10 0 6481 [eventfd] polkitd 781 polkitd 8r a_inode 0,10 0 6481 inotify polkitd 781 polkitd 9u a_inode 0,10 0 6481 [eventfd] polkitd 781 polkitd 10u a_inode 0,10 0 6481 [eventfd] polkitd 781 polkitd 11u unix 0xffff96afb5770800 0t0 18730 socket gmain 781 802 polkitd cwd DIR 253,0 224 64 / gmain 781 802 polkitd rtd DIR 253,0 224 64 / gmain 781 802 polkitd txt REG 253,0 120432 50360556 /usr/lib/polkit-1/polkitd gmain 781 802 polkitd mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so gmain 781 802 polkitd mem REG 253,0 68192 9982 /usr/lib64/libbz2.so.1.0.6 gmain 781 802 polkitd mem REG 253,0 100024 503087 /usr/lib64/libelf-0.176.so gmain 781 802 polkitd mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 gmain 781 802 polkitd mem REG 253,0 20064 8146 /usr/lib64/libuuid.so.1.3.0 gmain 781 802 polkitd mem REG 253,0 265600 8147 /usr/lib64/libblkid.so.1.1.0 gmain 781 802 polkitd mem REG 253,0 991616 32681 /usr/lib64/libstdc++.so.6.0.19 gmain 781 802 polkitd mem REG 253,0 251792 1468 /usr/lib64/libnspr4.so gmain 781 802 polkitd mem REG 253,0 20040 1469 /usr/lib64/libplc4.so gmain 781 802 polkitd mem REG 253,0 15744 1471 /usr/lib64/libplds4.so gmain 781 802 polkitd mem REG 253,0 338704 33747 /usr/lib64/libdw-0.176.so gmain 781 802 polkitd mem REG 253,0 19384 10000 /usr/lib64/libgpg-error.so.0.10.0 gmain 781 802 polkitd mem REG 253,0 535064 10016 /usr/lib64/libgcrypt.so.11.8.2 gmain 781 802 polkitd mem REG 253,0 85968 10471 /usr/lib64/liblz4.so.1.7.5 gmain 781 802 polkitd mem REG 253,0 157424 9974 /usr/lib64/liblzma.so.5.2.2 gmain 781 802 polkitd mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so gmain 781 802 polkitd mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so gmain 781 802 polkitd mem REG 253,0 20048 8119 /usr/lib64/libcap.so.2.22 gmain 781 802 polkitd mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 gmain 781 802 polkitd mem REG 253,0 277808 8164 /usr/lib64/libmount.so.1.1.0 gmain 781 802 polkitd mem REG 253,0 105824 503073 /usr/lib64/libresolv-2.17.so gmain 781 802 polkitd mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 gmain 781 802 polkitd mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 gmain 781 802 polkitd mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 gmain 781 802 polkitd mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so gmain 781 802 polkitd mem REG 253,0 32304 9828 /usr/lib64/libffi.so.6.0.1 gmain 781 802 polkitd mem REG 253,0 15640 9972 /usr/lib64/libgmodule-2.0.so.0.5600.1 gmain 781 802 polkitd mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so gmain 781 802 polkitd mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so gmain 781 802 polkitd mem REG 253,0 4028168 33229 /usr/lib64/libmozjs-17.0.so gmain 781 802 polkitd mem REG 253,0 173320 10025 /usr/lib64/libexpat.so.1.6.0 gmain 781 802 polkitd mem REG 253,0 203688 33742 /usr/lib64/libsystemd.so.0.6.0 gmain 781 802 polkitd mem REG 253,0 1156656 9967 /usr/lib64/libglib-2.0.so.0.5600.1 gmain 781 802 polkitd mem REG 253,0 339112 10068 /usr/lib64/libgobject-2.0.so.0.5600.1 gmain 781 802 polkitd mem REG 253,0 1722920 9963 /usr/lib64/libgio-2.0.so.0.5600.1 gmain 781 802 polkitd mem REG 253,0 118704 1479 /usr/lib64/libpolkit-gobject-1.so.0.0.0 gmain 781 802 polkitd mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so gmain 781 802 polkitd mem REG 253,0 26254 16789060 /usr/lib64/gconv/gconv-modules.cache gmain 781 802 polkitd 0u CHR 1,3 0t0 6485 /dev/null gmain 781 802 polkitd 1u CHR 1,3 0t0 6485 /dev/null gmain 781 802 polkitd 2u CHR 1,3 0t0 6485 /dev/null gmain 781 802 polkitd 3r a_inode 0,10 0 6481 inotify gmain 781 802 polkitd 4u a_inode 0,10 0 6481 [eventfd] gmain 781 802 polkitd 5u a_inode 0,10 0 6481 [eventfd] gmain 781 802 polkitd 6u unix 0xffff96afb5760400 0t0 18604 socket gmain 781 802 polkitd 7u a_inode 0,10 0 6481 [eventfd] gmain 781 802 polkitd 8r a_inode 0,10 0 6481 inotify gmain 781 802 polkitd 9u a_inode 0,10 0 6481 [eventfd] gmain 781 802 polkitd 10u a_inode 0,10 0 6481 [eventfd] gmain 781 802 polkitd 11u unix 0xffff96afb5770800 0t0 18730 socket gdbus 781 805 polkitd cwd DIR 253,0 224 64 / gdbus 781 805 polkitd rtd DIR 253,0 224 64 / gdbus 781 805 polkitd txt REG 253,0 120432 50360556 /usr/lib/polkit-1/polkitd gdbus 781 805 polkitd mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so gdbus 781 805 polkitd mem REG 253,0 68192 9982 /usr/lib64/libbz2.so.1.0.6 gdbus 781 805 polkitd mem REG 253,0 100024 503087 /usr/lib64/libelf-0.176.so gdbus 781 805 polkitd mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 gdbus 781 805 polkitd mem REG 253,0 20064 8146 /usr/lib64/libuuid.so.1.3.0 gdbus 781 805 polkitd mem REG 253,0 265600 8147 /usr/lib64/libblkid.so.1.1.0 gdbus 781 805 polkitd mem REG 253,0 991616 32681 /usr/lib64/libstdc++.so.6.0.19 gdbus 781 805 polkitd mem REG 253,0 251792 1468 /usr/lib64/libnspr4.so gdbus 781 805 polkitd mem REG 253,0 20040 1469 /usr/lib64/libplc4.so gdbus 781 805 polkitd mem REG 253,0 15744 1471 /usr/lib64/libplds4.so gdbus 781 805 polkitd mem REG 253,0 338704 33747 /usr/lib64/libdw-0.176.so gdbus 781 805 polkitd mem REG 253,0 19384 10000 /usr/lib64/libgpg-error.so.0.10.0 gdbus 781 805 polkitd mem REG 253,0 535064 10016 /usr/lib64/libgcrypt.so.11.8.2 gdbus 781 805 polkitd mem REG 253,0 85968 10471 /usr/lib64/liblz4.so.1.7.5 gdbus 781 805 polkitd mem REG 253,0 157424 9974 /usr/lib64/liblzma.so.5.2.2 gdbus 781 805 polkitd mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so gdbus 781 805 polkitd mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so gdbus 781 805 polkitd mem REG 253,0 20048 8119 /usr/lib64/libcap.so.2.22 gdbus 781 805 polkitd mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 gdbus 781 805 polkitd mem REG 253,0 277808 8164 /usr/lib64/libmount.so.1.1.0 gdbus 781 805 polkitd mem REG 253,0 105824 503073 /usr/lib64/libresolv-2.17.so gdbus 781 805 polkitd mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 gdbus 781 805 polkitd mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 gdbus 781 805 polkitd mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 gdbus 781 805 polkitd mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so gdbus 781 805 polkitd mem REG 253,0 32304 9828 /usr/lib64/libffi.so.6.0.1 gdbus 781 805 polkitd mem REG 253,0 15640 9972 /usr/lib64/libgmodule-2.0.so.0.5600.1 gdbus 781 805 polkitd mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so gdbus 781 805 polkitd mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so gdbus 781 805 polkitd mem REG 253,0 4028168 33229 /usr/lib64/libmozjs-17.0.so gdbus 781 805 polkitd mem REG 253,0 173320 10025 /usr/lib64/libexpat.so.1.6.0 gdbus 781 805 polkitd mem REG 253,0 203688 33742 /usr/lib64/libsystemd.so.0.6.0 gdbus 781 805 polkitd mem REG 253,0 1156656 9967 /usr/lib64/libglib-2.0.so.0.5600.1 gdbus 781 805 polkitd mem REG 253,0 339112 10068 /usr/lib64/libgobject-2.0.so.0.5600.1 gdbus 781 805 polkitd mem REG 253,0 1722920 9963 /usr/lib64/libgio-2.0.so.0.5600.1 gdbus 781 805 polkitd mem REG 253,0 118704 1479 /usr/lib64/libpolkit-gobject-1.so.0.0.0 gdbus 781 805 polkitd mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so gdbus 781 805 polkitd mem REG 253,0 26254 16789060 /usr/lib64/gconv/gconv-modules.cache gdbus 781 805 polkitd 0u CHR 1,3 0t0 6485 /dev/null gdbus 781 805 polkitd 1u CHR 1,3 0t0 6485 /dev/null gdbus 781 805 polkitd 2u CHR 1,3 0t0 6485 /dev/null gdbus 781 805 polkitd 3r a_inode 0,10 0 6481 inotify gdbus 781 805 polkitd 4u a_inode 0,10 0 6481 [eventfd] gdbus 781 805 polkitd 5u a_inode 0,10 0 6481 [eventfd] gdbus 781 805 polkitd 6u unix 0xffff96afb5760400 0t0 18604 socket gdbus 781 805 polkitd 7u a_inode 0,10 0 6481 [eventfd] gdbus 781 805 polkitd 8r a_inode 0,10 0 6481 inotify gdbus 781 805 polkitd 9u a_inode 0,10 0 6481 [eventfd] gdbus 781 805 polkitd 10u a_inode 0,10 0 6481 [eventfd] gdbus 781 805 polkitd 11u unix 0xffff96afb5770800 0t0 18730 socket polkitd 781 808 polkitd cwd DIR 253,0 224 64 / polkitd 781 808 polkitd rtd DIR 253,0 224 64 / polkitd 781 808 polkitd txt REG 253,0 120432 50360556 /usr/lib/polkit-1/polkitd polkitd 781 808 polkitd mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so polkitd 781 808 polkitd mem REG 253,0 68192 9982 /usr/lib64/libbz2.so.1.0.6 polkitd 781 808 polkitd mem REG 253,0 100024 503087 /usr/lib64/libelf-0.176.so polkitd 781 808 polkitd mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 polkitd 781 808 polkitd mem REG 253,0 20064 8146 /usr/lib64/libuuid.so.1.3.0 polkitd 781 808 polkitd mem REG 253,0 265600 8147 /usr/lib64/libblkid.so.1.1.0 polkitd 781 808 polkitd mem REG 253,0 991616 32681 /usr/lib64/libstdc++.so.6.0.19 polkitd 781 808 polkitd mem REG 253,0 251792 1468 /usr/lib64/libnspr4.so polkitd 781 808 polkitd mem REG 253,0 20040 1469 /usr/lib64/libplc4.so polkitd 781 808 polkitd mem REG 253,0 15744 1471 /usr/lib64/libplds4.so polkitd 781 808 polkitd mem REG 253,0 338704 33747 /usr/lib64/libdw-0.176.so polkitd 781 808 polkitd mem REG 253,0 19384 10000 /usr/lib64/libgpg-error.so.0.10.0 polkitd 781 808 polkitd mem REG 253,0 535064 10016 /usr/lib64/libgcrypt.so.11.8.2 polkitd 781 808 polkitd mem REG 253,0 85968 10471 /usr/lib64/liblz4.so.1.7.5 polkitd 781 808 polkitd mem REG 253,0 157424 9974 /usr/lib64/liblzma.so.5.2.2 polkitd 781 808 polkitd mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so polkitd 781 808 polkitd mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so polkitd 781 808 polkitd mem REG 253,0 20048 8119 /usr/lib64/libcap.so.2.22 polkitd 781 808 polkitd mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 polkitd 781 808 polkitd mem REG 253,0 277808 8164 /usr/lib64/libmount.so.1.1.0 polkitd 781 808 polkitd mem REG 253,0 105824 503073 /usr/lib64/libresolv-2.17.so polkitd 781 808 polkitd mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 polkitd 781 808 polkitd mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 polkitd 781 808 polkitd mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 polkitd 781 808 polkitd mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so polkitd 781 808 polkitd mem REG 253,0 32304 9828 /usr/lib64/libffi.so.6.0.1 polkitd 781 808 polkitd mem REG 253,0 15640 9972 /usr/lib64/libgmodule-2.0.so.0.5600.1 polkitd 781 808 polkitd mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so polkitd 781 808 polkitd mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so polkitd 781 808 polkitd mem REG 253,0 4028168 33229 /usr/lib64/libmozjs-17.0.so polkitd 781 808 polkitd mem REG 253,0 173320 10025 /usr/lib64/libexpat.so.1.6.0 polkitd 781 808 polkitd mem REG 253,0 203688 33742 /usr/lib64/libsystemd.so.0.6.0 polkitd 781 808 polkitd mem REG 253,0 1156656 9967 /usr/lib64/libglib-2.0.so.0.5600.1 polkitd 781 808 polkitd mem REG 253,0 339112 10068 /usr/lib64/libgobject-2.0.so.0.5600.1 polkitd 781 808 polkitd mem REG 253,0 1722920 9963 /usr/lib64/libgio-2.0.so.0.5600.1 polkitd 781 808 polkitd mem REG 253,0 118704 1479 /usr/lib64/libpolkit-gobject-1.so.0.0.0 polkitd 781 808 polkitd mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so polkitd 781 808 polkitd mem REG 253,0 26254 16789060 /usr/lib64/gconv/gconv-modules.cache polkitd 781 808 polkitd 0u CHR 1,3 0t0 6485 /dev/null polkitd 781 808 polkitd 1u CHR 1,3 0t0 6485 /dev/null polkitd 781 808 polkitd 2u CHR 1,3 0t0 6485 /dev/null polkitd 781 808 polkitd 3r a_inode 0,10 0 6481 inotify polkitd 781 808 polkitd 4u a_inode 0,10 0 6481 [eventfd] polkitd 781 808 polkitd 5u a_inode 0,10 0 6481 [eventfd] polkitd 781 808 polkitd 6u unix 0xffff96afb5760400 0t0 18604 socket polkitd 781 808 polkitd 7u a_inode 0,10 0 6481 [eventfd] polkitd 781 808 polkitd 8r a_inode 0,10 0 6481 inotify polkitd 781 808 polkitd 9u a_inode 0,10 0 6481 [eventfd] polkitd 781 808 polkitd 10u a_inode 0,10 0 6481 [eventfd] polkitd 781 808 polkitd 11u unix 0xffff96afb5770800 0t0 18730 socket JS 781 812 polkitd cwd DIR 253,0 224 64 / JS 781 812 polkitd rtd DIR 253,0 224 64 / JS 781 812 polkitd txt REG 253,0 120432 50360556 /usr/lib/polkit-1/polkitd JS 781 812 polkitd mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so JS 781 812 polkitd mem REG 253,0 68192 9982 /usr/lib64/libbz2.so.1.0.6 JS 781 812 polkitd mem REG 253,0 100024 503087 /usr/lib64/libelf-0.176.so JS 781 812 polkitd mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 JS 781 812 polkitd mem REG 253,0 20064 8146 /usr/lib64/libuuid.so.1.3.0 JS 781 812 polkitd mem REG 253,0 265600 8147 /usr/lib64/libblkid.so.1.1.0 JS 781 812 polkitd mem REG 253,0 991616 32681 /usr/lib64/libstdc++.so.6.0.19 JS 781 812 polkitd mem REG 253,0 251792 1468 /usr/lib64/libnspr4.so JS 781 812 polkitd mem REG 253,0 20040 1469 /usr/lib64/libplc4.so JS 781 812 polkitd mem REG 253,0 15744 1471 /usr/lib64/libplds4.so JS 781 812 polkitd mem REG 253,0 338704 33747 /usr/lib64/libdw-0.176.so JS 781 812 polkitd mem REG 253,0 19384 10000 /usr/lib64/libgpg-error.so.0.10.0 JS 781 812 polkitd mem REG 253,0 535064 10016 /usr/lib64/libgcrypt.so.11.8.2 JS 781 812 polkitd mem REG 253,0 85968 10471 /usr/lib64/liblz4.so.1.7.5 JS 781 812 polkitd mem REG 253,0 157424 9974 /usr/lib64/liblzma.so.5.2.2 JS 781 812 polkitd mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so JS 781 812 polkitd mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so JS 781 812 polkitd mem REG 253,0 20048 8119 /usr/lib64/libcap.so.2.22 JS 781 812 polkitd mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 JS 781 812 polkitd mem REG 253,0 277808 8164 /usr/lib64/libmount.so.1.1.0 JS 781 812 polkitd mem REG 253,0 105824 503073 /usr/lib64/libresolv-2.17.so JS 781 812 polkitd mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 JS 781 812 polkitd mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 JS 781 812 polkitd mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 JS 781 812 polkitd mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so JS 781 812 polkitd mem REG 253,0 32304 9828 /usr/lib64/libffi.so.6.0.1 JS 781 812 polkitd mem REG 253,0 15640 9972 /usr/lib64/libgmodule-2.0.so.0.5600.1 JS 781 812 polkitd mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so JS 781 812 polkitd mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so JS 781 812 polkitd mem REG 253,0 4028168 33229 /usr/lib64/libmozjs-17.0.so JS 781 812 polkitd mem REG 253,0 173320 10025 /usr/lib64/libexpat.so.1.6.0 JS 781 812 polkitd mem REG 253,0 203688 33742 /usr/lib64/libsystemd.so.0.6.0 JS 781 812 polkitd mem REG 253,0 1156656 9967 /usr/lib64/libglib-2.0.so.0.5600.1 JS 781 812 polkitd mem REG 253,0 339112 10068 /usr/lib64/libgobject-2.0.so.0.5600.1 JS 781 812 polkitd mem REG 253,0 1722920 9963 /usr/lib64/libgio-2.0.so.0.5600.1 JS 781 812 polkitd mem REG 253,0 118704 1479 /usr/lib64/libpolkit-gobject-1.so.0.0.0 JS 781 812 polkitd mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so JS 781 812 polkitd mem REG 253,0 26254 16789060 /usr/lib64/gconv/gconv-modules.cache JS 781 812 polkitd 0u CHR 1,3 0t0 6485 /dev/null JS 781 812 polkitd 1u CHR 1,3 0t0 6485 /dev/null JS 781 812 polkitd 2u CHR 1,3 0t0 6485 /dev/null JS 781 812 polkitd 3r a_inode 0,10 0 6481 inotify JS 781 812 polkitd 4u a_inode 0,10 0 6481 [eventfd] JS 781 812 polkitd 5u a_inode 0,10 0 6481 [eventfd] JS 781 812 polkitd 6u unix 0xffff96afb5760400 0t0 18604 socket JS 781 812 polkitd 7u a_inode 0,10 0 6481 [eventfd] JS 781 812 polkitd 8r a_inode 0,10 0 6481 inotify JS 781 812 polkitd 9u a_inode 0,10 0 6481 [eventfd] JS 781 812 polkitd 10u a_inode 0,10 0 6481 [eventfd] JS 781 812 polkitd 11u unix 0xffff96afb5770800 0t0 18730 socket JS 781 814 polkitd cwd DIR 253,0 224 64 / JS 781 814 polkitd rtd DIR 253,0 224 64 / JS 781 814 polkitd txt REG 253,0 120432 50360556 /usr/lib/polkit-1/polkitd JS 781 814 polkitd mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so JS 781 814 polkitd mem REG 253,0 68192 9982 /usr/lib64/libbz2.so.1.0.6 JS 781 814 polkitd mem REG 253,0 100024 503087 /usr/lib64/libelf-0.176.so JS 781 814 polkitd mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 JS 781 814 polkitd mem REG 253,0 20064 8146 /usr/lib64/libuuid.so.1.3.0 JS 781 814 polkitd mem REG 253,0 265600 8147 /usr/lib64/libblkid.so.1.1.0 JS 781 814 polkitd mem REG 253,0 991616 32681 /usr/lib64/libstdc++.so.6.0.19 JS 781 814 polkitd mem REG 253,0 251792 1468 /usr/lib64/libnspr4.so JS 781 814 polkitd mem REG 253,0 20040 1469 /usr/lib64/libplc4.so JS 781 814 polkitd mem REG 253,0 15744 1471 /usr/lib64/libplds4.so JS 781 814 polkitd mem REG 253,0 338704 33747 /usr/lib64/libdw-0.176.so JS 781 814 polkitd mem REG 253,0 19384 10000 /usr/lib64/libgpg-error.so.0.10.0 JS 781 814 polkitd mem REG 253,0 535064 10016 /usr/lib64/libgcrypt.so.11.8.2 JS 781 814 polkitd mem REG 253,0 85968 10471 /usr/lib64/liblz4.so.1.7.5 JS 781 814 polkitd mem REG 253,0 157424 9974 /usr/lib64/liblzma.so.5.2.2 JS 781 814 polkitd mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so JS 781 814 polkitd mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so JS 781 814 polkitd mem REG 253,0 20048 8119 /usr/lib64/libcap.so.2.22 JS 781 814 polkitd mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 JS 781 814 polkitd mem REG 253,0 277808 8164 /usr/lib64/libmount.so.1.1.0 JS 781 814 polkitd mem REG 253,0 105824 503073 /usr/lib64/libresolv-2.17.so JS 781 814 polkitd mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 JS 781 814 polkitd mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 JS 781 814 polkitd mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 JS 781 814 polkitd mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so JS 781 814 polkitd mem REG 253,0 32304 9828 /usr/lib64/libffi.so.6.0.1 JS 781 814 polkitd mem REG 253,0 15640 9972 /usr/lib64/libgmodule-2.0.so.0.5600.1 JS 781 814 polkitd mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so JS 781 814 polkitd mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so JS 781 814 polkitd mem REG 253,0 4028168 33229 /usr/lib64/libmozjs-17.0.so JS 781 814 polkitd mem REG 253,0 173320 10025 /usr/lib64/libexpat.so.1.6.0 JS 781 814 polkitd mem REG 253,0 203688 33742 /usr/lib64/libsystemd.so.0.6.0 JS 781 814 polkitd mem REG 253,0 1156656 9967 /usr/lib64/libglib-2.0.so.0.5600.1 JS 781 814 polkitd mem REG 253,0 339112 10068 /usr/lib64/libgobject-2.0.so.0.5600.1 JS 781 814 polkitd mem REG 253,0 1722920 9963 /usr/lib64/libgio-2.0.so.0.5600.1 JS 781 814 polkitd mem REG 253,0 118704 1479 /usr/lib64/libpolkit-gobject-1.so.0.0.0 JS 781 814 polkitd mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so JS 781 814 polkitd mem REG 253,0 26254 16789060 /usr/lib64/gconv/gconv-modules.cache JS 781 814 polkitd 0u CHR 1,3 0t0 6485 /dev/null JS 781 814 polkitd 1u CHR 1,3 0t0 6485 /dev/null JS 781 814 polkitd 2u CHR 1,3 0t0 6485 /dev/null JS 781 814 polkitd 3r a_inode 0,10 0 6481 inotify JS 781 814 polkitd 4u a_inode 0,10 0 6481 [eventfd] JS 781 814 polkitd 5u a_inode 0,10 0 6481 [eventfd] JS 781 814 polkitd 6u unix 0xffff96afb5760400 0t0 18604 socket JS 781 814 polkitd 7u a_inode 0,10 0 6481 [eventfd] JS 781 814 polkitd 8r a_inode 0,10 0 6481 inotify JS 781 814 polkitd 9u a_inode 0,10 0 6481 [eventfd] JS 781 814 polkitd 10u a_inode 0,10 0 6481 [eventfd] JS 781 814 polkitd 11u unix 0xffff96afb5770800 0t0 18730 socket polkitd 781 818 polkitd cwd DIR 253,0 224 64 / polkitd 781 818 polkitd rtd DIR 253,0 224 64 / polkitd 781 818 polkitd txt REG 253,0 120432 50360556 /usr/lib/polkit-1/polkitd polkitd 781 818 polkitd mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so polkitd 781 818 polkitd mem REG 253,0 68192 9982 /usr/lib64/libbz2.so.1.0.6 polkitd 781 818 polkitd mem REG 253,0 100024 503087 /usr/lib64/libelf-0.176.so polkitd 781 818 polkitd mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 polkitd 781 818 polkitd mem REG 253,0 20064 8146 /usr/lib64/libuuid.so.1.3.0 polkitd 781 818 polkitd mem REG 253,0 265600 8147 /usr/lib64/libblkid.so.1.1.0 polkitd 781 818 polkitd mem REG 253,0 991616 32681 /usr/lib64/libstdc++.so.6.0.19 polkitd 781 818 polkitd mem REG 253,0 251792 1468 /usr/lib64/libnspr4.so polkitd 781 818 polkitd mem REG 253,0 20040 1469 /usr/lib64/libplc4.so polkitd 781 818 polkitd mem REG 253,0 15744 1471 /usr/lib64/libplds4.so polkitd 781 818 polkitd mem REG 253,0 338704 33747 /usr/lib64/libdw-0.176.so polkitd 781 818 polkitd mem REG 253,0 19384 10000 /usr/lib64/libgpg-error.so.0.10.0 polkitd 781 818 polkitd mem REG 253,0 535064 10016 /usr/lib64/libgcrypt.so.11.8.2 polkitd 781 818 polkitd mem REG 253,0 85968 10471 /usr/lib64/liblz4.so.1.7.5 polkitd 781 818 polkitd mem REG 253,0 157424 9974 /usr/lib64/liblzma.so.5.2.2 polkitd 781 818 polkitd mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so polkitd 781 818 polkitd mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so polkitd 781 818 polkitd mem REG 253,0 20048 8119 /usr/lib64/libcap.so.2.22 polkitd 781 818 polkitd mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 polkitd 781 818 polkitd mem REG 253,0 277808 8164 /usr/lib64/libmount.so.1.1.0 polkitd 781 818 polkitd mem REG 253,0 105824 503073 /usr/lib64/libresolv-2.17.so polkitd 781 818 polkitd mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 polkitd 781 818 polkitd mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 polkitd 781 818 polkitd mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 polkitd 781 818 polkitd mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so polkitd 781 818 polkitd mem REG 253,0 32304 9828 /usr/lib64/libffi.so.6.0.1 polkitd 781 818 polkitd mem REG 253,0 15640 9972 /usr/lib64/libgmodule-2.0.so.0.5600.1 polkitd 781 818 polkitd mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so polkitd 781 818 polkitd mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so polkitd 781 818 polkitd mem REG 253,0 4028168 33229 /usr/lib64/libmozjs-17.0.so polkitd 781 818 polkitd mem REG 253,0 173320 10025 /usr/lib64/libexpat.so.1.6.0 polkitd 781 818 polkitd mem REG 253,0 203688 33742 /usr/lib64/libsystemd.so.0.6.0 polkitd 781 818 polkitd mem REG 253,0 1156656 9967 /usr/lib64/libglib-2.0.so.0.5600.1 polkitd 781 818 polkitd mem REG 253,0 339112 10068 /usr/lib64/libgobject-2.0.so.0.5600.1 polkitd 781 818 polkitd mem REG 253,0 1722920 9963 /usr/lib64/libgio-2.0.so.0.5600.1 polkitd 781 818 polkitd mem REG 253,0 118704 1479 /usr/lib64/libpolkit-gobject-1.so.0.0.0 polkitd 781 818 polkitd mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so polkitd 781 818 polkitd mem REG 253,0 26254 16789060 /usr/lib64/gconv/gconv-modules.cache polkitd 781 818 polkitd 0u CHR 1,3 0t0 6485 /dev/null polkitd 781 818 polkitd 1u CHR 1,3 0t0 6485 /dev/null polkitd 781 818 polkitd 2u CHR 1,3 0t0 6485 /dev/null polkitd 781 818 polkitd 3r a_inode 0,10 0 6481 inotify polkitd 781 818 polkitd 4u a_inode 0,10 0 6481 [eventfd] polkitd 781 818 polkitd 5u a_inode 0,10 0 6481 [eventfd] polkitd 781 818 polkitd 6u unix 0xffff96afb5760400 0t0 18604 socket polkitd 781 818 polkitd 7u a_inode 0,10 0 6481 [eventfd] polkitd 781 818 polkitd 8r a_inode 0,10 0 6481 inotify polkitd 781 818 polkitd 9u a_inode 0,10 0 6481 [eventfd] polkitd 781 818 polkitd 10u a_inode 0,10 0 6481 [eventfd] polkitd 781 818 polkitd 11u unix 0xffff96afb5770800 0t0 18730 socket systemd-l 784 root cwd DIR 253,0 224 64 / systemd-l 784 root rtd DIR 253,0 224 64 / systemd-l 784 root txt REG 253,0 635736 50360467 /usr/lib/systemd/systemd-logind systemd-l 784 root mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so systemd-l 784 root mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 systemd-l 784 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so systemd-l 784 root mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 systemd-l 784 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so systemd-l 784 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so systemd-l 784 root mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 systemd-l 784 root mem REG 253,0 37056 9833 /usr/lib64/libacl.so.1.1.0 systemd-l 784 root mem REG 253,0 20048 8119 /usr/lib64/libcap.so.2.22 systemd-l 784 root mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so systemd-l 784 root mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 systemd-l 784 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so systemd-l 784 root 0r CHR 1,3 0t0 6485 /dev/null systemd-l 784 root 1u unix 0xffff96afb5775800 0t0 18140 socket systemd-l 784 root 2u unix 0xffff96afb5775800 0t0 18140 socket systemd-l 784 root 3u unix 0xffff96afb5771800 0t0 18269 socket systemd-l 784 root 4u a_inode 0,10 0 6481 [eventpoll] systemd-l 784 root 5u a_inode 0,10 0 6481 [timerfd] systemd-l 784 root 6r REG 0,18 4096 26737 /sys/devices/virtual/tty/tty0/active systemd-l 784 root 7u a_inode 0,10 0 6481 [signalfd] systemd-l 784 root 8u netlink 0t0 18359 KOBJECT_UEVENT systemd-l 784 root 9u netlink 0t0 18360 KOBJECT_UEVENT systemd-l 784 root 10u netlink 0t0 18361 KOBJECT_UEVENT systemd-l 784 root 11u netlink 0t0 18362 KOBJECT_UEVENT systemd-l 784 root 12u unix 0xffff96afb56a8800 0t0 18363 socket systemd-l 784 root 13u a_inode 0,10 0 6481 [timerfd] systemd-l 784 root 14u CHR 13,64 0t0 8504 /dev/input/event0 systemd-l 784 root 15u CHR 4,6 0t0 6505 /dev/tty6 systemd-l 784 root 16r FIFO 0,20 0t0 20214 /run/systemd/inhibit/1.ref systemd-l 784 root 17r FIFO 0,20 0t0 23441 /run/systemd/sessions/1.ref systemd-l 784 root 18r FIFO 0,20 0t0 44958 /run/systemd/sessions/17.ref crond 792 root cwd DIR 253,0 224 64 / crond 792 root rtd DIR 253,0 224 64 / crond 792 root txt REG 253,0 70216 33648 /usr/sbin/crond crond 792 root mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so crond 792 root mem REG 253,0 106075056 16781164 /usr/lib/locale/locale-archive crond 792 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so crond 792 root mem REG 253,0 23968 10009 /usr/lib64/libcap-ng.so.0.0.0 crond 792 root mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 crond 792 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so crond 792 root mem REG 253,0 127184 1475 /usr/lib64/libaudit.so.1.0.0 crond 792 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so crond 792 root mem REG 253,0 61672 10149 /usr/lib64/libpam.so.0.83.1 crond 792 root mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 crond 792 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so crond 792 root 0r CHR 1,3 0t0 6485 /dev/null crond 792 root 1u unix 0xffff96afb5767400 0t0 18418 socket crond 792 root 2u unix 0xffff96afb5767400 0t0 18418 socket crond 792 root 3uW REG 0,20 4 18523 /run/crond.pid crond 792 root 4u unix 0xffff96afb5765c00 0t0 18549 socket crond 792 root 5r a_inode 0,10 0 6481 inotify chronyd 795 chrony cwd DIR 253,0 224 64 / chronyd 795 chrony rtd DIR 253,0 224 64 / chronyd 795 chrony txt REG 253,0 269392 34110 /usr/sbin/chronyd chronyd 795 chrony mem REG 253,0 68192 9982 /usr/lib64/libbz2.so.1.0.6 chronyd 795 chrony mem REG 253,0 157424 9974 /usr/lib64/liblzma.so.5.2.2 chronyd 795 chrony mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 chronyd 795 chrony mem REG 253,0 100024 503087 /usr/lib64/libelf-0.176.so chronyd 795 chrony mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 chronyd 795 chrony mem REG 253,0 338704 33747 /usr/lib64/libdw-0.176.so chronyd 795 chrony mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so chronyd 795 chrony mem REG 253,0 86472 33489 /usr/lib64/libnss_myhostname.so.2 chronyd 795 chrony mem REG 253,0 105824 503073 /usr/lib64/libresolv-2.17.so chronyd 795 chrony mem REG 253,0 31408 503056 /usr/lib64/libnss_dns-2.17.so chronyd 795 chrony mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so chronyd 795 chrony mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 chronyd 795 chrony mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so chronyd 795 chrony mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so chronyd 795 chrony mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so chronyd 795 chrony mem REG 253,0 266680 33458 /usr/lib64/libseccomp.so.2.3.1 chronyd 795 chrony mem REG 253,0 20048 8119 /usr/lib64/libcap.so.2.22 chronyd 795 chrony mem REG 253,0 11392 7832 /usr/lib64/libfreebl3.so chronyd 795 chrony mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so chronyd 795 chrony mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so chronyd 795 chrony 0r CHR 1,3 0t0 6485 /dev/null chronyd 795 chrony 1w CHR 1,3 0t0 6485 /dev/null chronyd 795 chrony 2u CHR 1,3 0t0 6485 /dev/null chronyd 795 chrony 3u unix 0xffff96afb5764c00 0t0 18498 socket chronyd 795 chrony 5u IPv4 18535 0t0 UDP localhost:323 chronyd 795 chrony 6u IPv6 18536 0t0 UDP localhost:323 chronyd 795 chrony 7r CHR 1,9 0t0 6490 /dev/urandom chronyd 795 chrony 8u unix 0xffff96afb5762400 0t0 18547 /var/run/chrony/chronyd.sock agetty 815 root cwd DIR 253,0 224 64 / agetty 815 root rtd DIR 253,0 224 64 / agetty 815 root txt REG 253,0 49640 32755 /usr/sbin/agetty agetty 815 root mem REG 253,0 106075056 16781164 /usr/lib/locale/locale-archive agetty 815 root mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so agetty 815 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so agetty 815 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so agetty 815 root 0u CHR 4,1 0t0 6500 /dev/tty1 agetty 815 root 1u CHR 4,1 0t0 6500 /dev/tty1 agetty 815 root 2u CHR 4,1 0t0 6500 /dev/tty1 login 817 root cwd DIR 253,0 224 64 / login 817 root rtd DIR 253,0 224 64 / login 817 root txt REG 253,0 37248 50358286 /usr/bin/login login 817 root mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so login 817 root mem REG 253,0 14496 503085 /usr/lib64/libutil-2.17.so login 817 root mem REG 253,0 15480 50338864 /usr/lib64/security/pam_lastlog.so login 817 root mem REG 253,0 68192 9982 /usr/lib64/libbz2.so.1.0.6 login 817 root mem REG 253,0 157424 9974 /usr/lib64/liblzma.so.5.2.2 login 817 root mem REG 253,0 100024 503087 /usr/lib64/libelf-0.176.so login 817 root mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 login 817 root mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 login 817 root mem REG 253,0 338704 33747 /usr/lib64/libdw-0.176.so login 817 root mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so login 817 root mem REG 253,0 20048 8119 /usr/lib64/libcap.so.2.22 login 817 root mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so login 817 root mem REG 253,0 309168 50359979 /usr/lib64/security/pam_systemd.so login 817 root mem REG 253,0 19600 50338865 /usr/lib64/security/pam_limits.so login 817 root mem REG 253,0 11152 50338863 /usr/lib64/security/pam_keyinit.so login 817 root mem REG 253,0 40784 50338872 /usr/lib64/security/pam_namespace.so login 817 root mem REG 253,0 28256 50338850 /usr/lib64/security/pam_console.so login 817 root mem REG 253,0 11200 50338868 /usr/lib64/security/pam_loginuid.so login 817 root mem REG 253,0 19760 50338880 /usr/lib64/security/pam_selinux.so login 817 root mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 login 817 root mem REG 253,0 44600 10026 /usr/lib64/libcrack.so.2.9.0 login 817 root mem REG 253,0 23832 10300 /usr/lib64/libpwquality.so.1.0.2 login 817 root mem REG 253,0 11232 50339023 /usr/lib64/security/pam_pwquality.so login 817 root mem REG 253,0 6984 50338874 /usr/lib64/security/pam_permit.so login 817 root mem REG 253,0 11144 50338867 /usr/lib64/security/pam_localuser.so login 817 root mem REG 253,0 11176 50338873 /usr/lib64/security/pam_nologin.so login 817 root mem REG 253,0 6872 50338853 /usr/lib64/security/pam_deny.so login 817 root mem REG 253,0 15408 50338885 /usr/lib64/security/pam_succeed_if.so login 817 root mem REG 253,0 11392 7832 /usr/lib64/libfreebl3.so login 817 root mem REG 253,0 115848 1452 /usr/lib64/libnsl-2.17.so login 817 root mem REG 253,0 40664 1119 /usr/lib64/libcrypt-2.17.so login 817 root mem REG 253,0 57728 50338891 /usr/lib64/security/pam_unix.so login 817 root mem REG 253,0 11168 50338857 /usr/lib64/security/pam_faildelay.so login 817 root mem REG 253,0 15552 50338855 /usr/lib64/security/pam_env.so login 817 root mem REG 253,0 11216 50338879 /usr/lib64/security/pam_securetty.so login 817 root mem REG 253,0 106075056 16781164 /usr/lib/locale/locale-archive login 817 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so login 817 root mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 login 817 root mem REG 253,0 23968 10009 /usr/lib64/libcap-ng.so.0.0.0 login 817 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so login 817 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so login 817 root mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 login 817 root mem REG 253,0 127184 1475 /usr/lib64/libaudit.so.1.0.0 login 817 root mem REG 253,0 15632 10151 /usr/lib64/libpam_misc.so.0.82.0 login 817 root mem REG 253,0 61672 10149 /usr/lib64/libpam.so.0.83.1 login 817 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so login 817 root mem REG 253,0 26254 16789060 /usr/lib64/gconv/gconv-modules.cache login 817 root 5w FIFO 0,20 0t0 23441 /run/systemd/sessions/1.ref firewalld 823 root cwd DIR 253,0 224 64 / firewalld 823 root rtd DIR 253,0 224 64 / firewalld 823 root txt REG 253,0 7216 50359089 /usr/bin/python2.7 firewalld 823 root mem REG 253,0 298820 50360560 /usr/lib64/girepository-1.0/NM-1.0.typelib firewalld 823 root mem REG 253,0 343452 50359338 /usr/lib64/girepository-1.0/Gio-2.0.typelib firewalld 823 root mem REG 253,0 12408 50338621 /usr/lib64/python2.7/lib-dynload/grpmodule.so firewalld 823 root mem REG 253,0 168312 102248 /usr/lib64/libdbus-glib-1.so.2.2.2 firewalld 823 root mem REG 253,0 11976 102254 /usr/lib64/python2.7/site-packages/_dbus_glib_bindings.so firewalld 823 root mem REG 253,0 185712 50359335 /usr/lib64/girepository-1.0/GLib-2.0.typelib firewalld 823 root mem REG 253,0 20064 8146 /usr/lib64/libuuid.so.1.3.0 firewalld 823 root mem REG 253,0 265600 8147 /usr/lib64/libblkid.so.1.1.0 firewalld 823 root mem REG 253,0 277808 8164 /usr/lib64/libmount.so.1.1.0 firewalld 823 root mem REG 253,0 1722920 9963 /usr/lib64/libgio-2.0.so.0.5600.1 firewalld 823 root mem REG 253,0 15640 9972 /usr/lib64/libgmodule-2.0.so.0.5600.1 firewalld 823 root mem REG 253,0 32304 9828 /usr/lib64/libffi.so.6.0.1 firewalld 823 root mem REG 253,0 1156656 9967 /usr/lib64/libglib-2.0.so.0.5600.1 firewalld 823 root mem REG 253,0 339112 10068 /usr/lib64/libgobject-2.0.so.0.5600.1 firewalld 823 root mem REG 253,0 217144 32802 /usr/lib64/libgirepository-1.0.so.1.0.0 firewalld 823 root mem REG 253,0 6952 10074 /usr/lib64/libgthread-2.0.so.0.5600.1 firewalld 823 root mem REG 253,0 331480 17071684 /usr/lib64/python2.7/site-packages/gi/_gi.so firewalld 823 root mem REG 253,0 29264 50358903 /usr/lib64/python2.7/lib-dynload/selectmodule.so firewalld 823 root mem REG 253,0 11672 50742920 /usr/lib64/python2.7/lib-dynload/syslog.so firewalld 823 root mem REG 253,0 19264 50338618 /usr/lib64/python2.7/lib-dynload/fcntlmodule.so firewalld 823 root mem REG 253,0 16432 50359923 /usr/lib64/python2.7/lib-dynload/_randommodule.so firewalld 823 root mem REG 253,0 22880 50359914 /usr/lib64/python2.7/lib-dynload/_hashlib.so firewalld 823 root mem REG 253,0 25768 50338601 /usr/lib64/python2.7/lib-dynload/binascii.so firewalld 823 root mem REG 253,0 37384 50358881 /usr/lib64/python2.7/lib-dynload/math.so firewalld 823 root mem REG 253,0 156960 50359917 /usr/lib64/python2.7/lib-dynload/_io.so firewalld 823 root mem REG 253,0 15688 9878 /usr/lib64/libkeyutils.so.1.5 firewalld 823 root mem REG 253,0 67104 9952 /usr/lib64/libkrb5support.so.0.1 firewalld 823 root mem REG 253,0 210784 9845 /usr/lib64/libk5crypto.so.3.1 firewalld 823 root mem REG 253,0 15920 7825 /usr/lib64/libcom_err.so.2.1 firewalld 823 root mem REG 253,0 967784 9948 /usr/lib64/libkrb5.so.3.3 firewalld 823 root mem REG 253,0 320784 8155 /usr/lib64/libgssapi_krb5.so.2.2 firewalld 823 root mem REG 253,0 2521144 8157 /usr/lib64/libcrypto.so.1.0.2k firewalld 823 root mem REG 253,0 470376 9842 /usr/lib64/libssl.so.1.0.2k firewalld 823 root mem REG 253,0 95120 50338580 /usr/lib64/python2.7/lib-dynload/_ssl.so firewalld 823 root mem REG 253,0 83968 50359924 /usr/lib64/python2.7/lib-dynload/_socketmodule.so firewalld 823 root mem REG 253,0 39024 50338821 /usr/lib64/python2.7/lib-dynload/_struct.so firewalld 823 root mem REG 253,0 21344 50359919 /usr/lib64/python2.7/lib-dynload/_localemodule.so firewalld 823 root mem REG 253,0 17056 50359913 /usr/lib64/python2.7/lib-dynload/_functoolsmodule.so firewalld 823 root mem REG 253,0 28736 50742918 /usr/lib64/python2.7/lib-dynload/stropmodule.so firewalld 823 root mem REG 253,0 173320 10025 /usr/lib64/libexpat.so.1.6.0 firewalld 823 root mem REG 253,0 54544 50358894 /usr/lib64/python2.7/lib-dynload/pyexpat.so firewalld 823 root mem REG 253,0 22920 50359915 /usr/lib64/python2.7/lib-dynload/_heapq.so firewalld 823 root mem REG 253,0 62096 50338582 /usr/lib64/python2.7/lib-dynload/itertoolsmodule.so firewalld 823 root mem REG 253,0 47672 50742588 /usr/lib64/python2.7/lib-dynload/operator.so firewalld 823 root mem REG 253,0 33096 50358878 /usr/lib64/python2.7/lib-dynload/_collectionsmodule.so firewalld 823 root mem REG 253,0 23992 50338604 /usr/lib64/python2.7/lib-dynload/cStringIO.so firewalld 823 root mem REG 253,0 25064 50742922 /usr/lib64/python2.7/lib-dynload/timemodule.so firewalld 823 root mem REG 253,0 68192 9982 /usr/lib64/libbz2.so.1.0.6 firewalld 823 root mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 firewalld 823 root mem REG 253,0 100024 503087 /usr/lib64/libelf-0.176.so firewalld 823 root mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 firewalld 823 root mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 firewalld 823 root mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 firewalld 823 root mem REG 253,0 338704 33747 /usr/lib64/libdw-0.176.so firewalld 823 root mem REG 253,0 105824 503073 /usr/lib64/libresolv-2.17.so firewalld 823 root mem REG 253,0 19384 10000 /usr/lib64/libgpg-error.so.0.10.0 firewalld 823 root mem REG 253,0 535064 10016 /usr/lib64/libgcrypt.so.11.8.2 firewalld 823 root mem REG 253,0 85968 10471 /usr/lib64/liblz4.so.1.7.5 firewalld 823 root mem REG 253,0 157424 9974 /usr/lib64/liblzma.so.5.2.2 firewalld 823 root mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 firewalld 823 root mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so firewalld 823 root mem REG 253,0 20048 8119 /usr/lib64/libcap.so.2.22 firewalld 823 root mem REG 253,0 203688 33742 /usr/lib64/libsystemd.so.0.6.0 firewalld 823 root mem REG 253,0 333384 33781 /usr/lib64/libdbus-1.so.3.14.14 firewalld 823 root mem REG 253,0 166248 102253 /usr/lib64/python2.7/site-packages/_dbus_bindings.so firewalld 823 root mem REG 253,0 106075056 16781164 /usr/lib/locale/locale-archive firewalld 823 root mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so firewalld 823 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so firewalld 823 root mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so firewalld 823 root mem REG 253,0 14496 503085 /usr/lib64/libutil-2.17.so firewalld 823 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so firewalld 823 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so firewalld 823 root mem REG 253,0 1847496 9994 /usr/lib64/libpython2.7.so.1.0 firewalld 823 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so firewalld 823 root mem REG 253,0 59120 50359337 /usr/lib64/girepository-1.0/GObject-2.0.typelib firewalld 823 root DEL REG 253,0 16777637 /tmp/ffiCvbwRW firewalld 823 root 0r CHR 1,3 0t0 6485 /dev/null firewalld 823 root 1w CHR 1,3 0t0 6485 /dev/null firewalld 823 root 2w CHR 1,3 0t0 6485 /dev/null firewalld 823 root 3w REG 253,0 41033 33614496 /var/log/firewalld firewalld 823 root 4u unix 0xffff96aeb670d400 0t0 18892 socket firewalld 823 root 5u a_inode 0,10 0 6481 [eventfd] firewalld 823 root 6u REG 253,0 4096 16777637 /tmp/ffiCvbwRW (deleted) firewalld 823 root 7r CHR 1,9 0t0 6490 /dev/urandom firewalld 823 root 8r a_inode 0,10 0 6481 inotify firewalld 823 root 9u a_inode 0,10 0 6481 [eventfd] firewalld 823 root 10u unix 0xffff96afb4b92000 0t0 22509 socket gmain 823 1013 root cwd DIR 253,0 224 64 / gmain 823 1013 root rtd DIR 253,0 224 64 / gmain 823 1013 root txt REG 253,0 7216 50359089 /usr/bin/python2.7 gmain 823 1013 root mem REG 253,0 298820 50360560 /usr/lib64/girepository-1.0/NM-1.0.typelib gmain 823 1013 root mem REG 253,0 343452 50359338 /usr/lib64/girepository-1.0/Gio-2.0.typelib gmain 823 1013 root mem REG 253,0 12408 50338621 /usr/lib64/python2.7/lib-dynload/grpmodule.so gmain 823 1013 root mem REG 253,0 168312 102248 /usr/lib64/libdbus-glib-1.so.2.2.2 gmain 823 1013 root mem REG 253,0 11976 102254 /usr/lib64/python2.7/site-packages/_dbus_glib_bindings.so gmain 823 1013 root mem REG 253,0 185712 50359335 /usr/lib64/girepository-1.0/GLib-2.0.typelib gmain 823 1013 root mem REG 253,0 20064 8146 /usr/lib64/libuuid.so.1.3.0 gmain 823 1013 root mem REG 253,0 265600 8147 /usr/lib64/libblkid.so.1.1.0 gmain 823 1013 root mem REG 253,0 277808 8164 /usr/lib64/libmount.so.1.1.0 gmain 823 1013 root mem REG 253,0 1722920 9963 /usr/lib64/libgio-2.0.so.0.5600.1 gmain 823 1013 root mem REG 253,0 15640 9972 /usr/lib64/libgmodule-2.0.so.0.5600.1 gmain 823 1013 root mem REG 253,0 32304 9828 /usr/lib64/libffi.so.6.0.1 gmain 823 1013 root mem REG 253,0 1156656 9967 /usr/lib64/libglib-2.0.so.0.5600.1 gmain 823 1013 root mem REG 253,0 339112 10068 /usr/lib64/libgobject-2.0.so.0.5600.1 gmain 823 1013 root mem REG 253,0 217144 32802 /usr/lib64/libgirepository-1.0.so.1.0.0 gmain 823 1013 root mem REG 253,0 6952 10074 /usr/lib64/libgthread-2.0.so.0.5600.1 gmain 823 1013 root mem REG 253,0 331480 17071684 /usr/lib64/python2.7/site-packages/gi/_gi.so gmain 823 1013 root mem REG 253,0 29264 50358903 /usr/lib64/python2.7/lib-dynload/selectmodule.so gmain 823 1013 root mem REG 253,0 11672 50742920 /usr/lib64/python2.7/lib-dynload/syslog.so gmain 823 1013 root mem REG 253,0 19264 50338618 /usr/lib64/python2.7/lib-dynload/fcntlmodule.so gmain 823 1013 root mem REG 253,0 16432 50359923 /usr/lib64/python2.7/lib-dynload/_randommodule.so gmain 823 1013 root mem REG 253,0 22880 50359914 /usr/lib64/python2.7/lib-dynload/_hashlib.so gmain 823 1013 root mem REG 253,0 25768 50338601 /usr/lib64/python2.7/lib-dynload/binascii.so gmain 823 1013 root mem REG 253,0 37384 50358881 /usr/lib64/python2.7/lib-dynload/math.so gmain 823 1013 root mem REG 253,0 156960 50359917 /usr/lib64/python2.7/lib-dynload/_io.so gmain 823 1013 root mem REG 253,0 15688 9878 /usr/lib64/libkeyutils.so.1.5 gmain 823 1013 root mem REG 253,0 67104 9952 /usr/lib64/libkrb5support.so.0.1 gmain 823 1013 root mem REG 253,0 210784 9845 /usr/lib64/libk5crypto.so.3.1 gmain 823 1013 root mem REG 253,0 15920 7825 /usr/lib64/libcom_err.so.2.1 gmain 823 1013 root mem REG 253,0 967784 9948 /usr/lib64/libkrb5.so.3.3 gmain 823 1013 root mem REG 253,0 320784 8155 /usr/lib64/libgssapi_krb5.so.2.2 gmain 823 1013 root mem REG 253,0 2521144 8157 /usr/lib64/libcrypto.so.1.0.2k gmain 823 1013 root mem REG 253,0 470376 9842 /usr/lib64/libssl.so.1.0.2k gmain 823 1013 root mem REG 253,0 95120 50338580 /usr/lib64/python2.7/lib-dynload/_ssl.so gmain 823 1013 root mem REG 253,0 83968 50359924 /usr/lib64/python2.7/lib-dynload/_socketmodule.so gmain 823 1013 root mem REG 253,0 39024 50338821 /usr/lib64/python2.7/lib-dynload/_struct.so gmain 823 1013 root mem REG 253,0 21344 50359919 /usr/lib64/python2.7/lib-dynload/_localemodule.so gmain 823 1013 root mem REG 253,0 17056 50359913 /usr/lib64/python2.7/lib-dynload/_functoolsmodule.so gmain 823 1013 root mem REG 253,0 28736 50742918 /usr/lib64/python2.7/lib-dynload/stropmodule.so gmain 823 1013 root mem REG 253,0 173320 10025 /usr/lib64/libexpat.so.1.6.0 gmain 823 1013 root mem REG 253,0 54544 50358894 /usr/lib64/python2.7/lib-dynload/pyexpat.so gmain 823 1013 root mem REG 253,0 22920 50359915 /usr/lib64/python2.7/lib-dynload/_heapq.so gmain 823 1013 root mem REG 253,0 62096 50338582 /usr/lib64/python2.7/lib-dynload/itertoolsmodule.so gmain 823 1013 root mem REG 253,0 47672 50742588 /usr/lib64/python2.7/lib-dynload/operator.so gmain 823 1013 root mem REG 253,0 33096 50358878 /usr/lib64/python2.7/lib-dynload/_collectionsmodule.so gmain 823 1013 root mem REG 253,0 23992 50338604 /usr/lib64/python2.7/lib-dynload/cStringIO.so gmain 823 1013 root mem REG 253,0 25064 50742922 /usr/lib64/python2.7/lib-dynload/timemodule.so gmain 823 1013 root mem REG 253,0 68192 9982 /usr/lib64/libbz2.so.1.0.6 gmain 823 1013 root mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 gmain 823 1013 root mem REG 253,0 100024 503087 /usr/lib64/libelf-0.176.so gmain 823 1013 root mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 gmain 823 1013 root mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 gmain 823 1013 root mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 gmain 823 1013 root mem REG 253,0 338704 33747 /usr/lib64/libdw-0.176.so gmain 823 1013 root mem REG 253,0 105824 503073 /usr/lib64/libresolv-2.17.so gmain 823 1013 root mem REG 253,0 19384 10000 /usr/lib64/libgpg-error.so.0.10.0 gmain 823 1013 root mem REG 253,0 535064 10016 /usr/lib64/libgcrypt.so.11.8.2 gmain 823 1013 root mem REG 253,0 85968 10471 /usr/lib64/liblz4.so.1.7.5 gmain 823 1013 root mem REG 253,0 157424 9974 /usr/lib64/liblzma.so.5.2.2 gmain 823 1013 root mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 gmain 823 1013 root mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so gmain 823 1013 root mem REG 253,0 20048 8119 /usr/lib64/libcap.so.2.22 gmain 823 1013 root mem REG 253,0 203688 33742 /usr/lib64/libsystemd.so.0.6.0 gmain 823 1013 root mem REG 253,0 333384 33781 /usr/lib64/libdbus-1.so.3.14.14 gmain 823 1013 root mem REG 253,0 166248 102253 /usr/lib64/python2.7/site-packages/_dbus_bindings.so gmain 823 1013 root mem REG 253,0 106075056 16781164 /usr/lib/locale/locale-archive gmain 823 1013 root mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so gmain 823 1013 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so gmain 823 1013 root mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so gmain 823 1013 root mem REG 253,0 14496 503085 /usr/lib64/libutil-2.17.so gmain 823 1013 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so gmain 823 1013 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so gmain 823 1013 root mem REG 253,0 1847496 9994 /usr/lib64/libpython2.7.so.1.0 gmain 823 1013 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so gmain 823 1013 root mem REG 253,0 59120 50359337 /usr/lib64/girepository-1.0/GObject-2.0.typelib gmain 823 1013 root DEL REG 253,0 16777637 /tmp/ffiCvbwRW gmain 823 1013 root 0r CHR 1,3 0t0 6485 /dev/null gmain 823 1013 root 1w CHR 1,3 0t0 6485 /dev/null gmain 823 1013 root 2w CHR 1,3 0t0 6485 /dev/null gmain 823 1013 root 3w REG 253,0 41033 33614496 /var/log/firewalld gmain 823 1013 root 4u unix 0xffff96aeb670d400 0t0 18892 socket gmain 823 1013 root 5u a_inode 0,10 0 6481 [eventfd] gmain 823 1013 root 6u REG 253,0 4096 16777637 /tmp/ffiCvbwRW (deleted) gmain 823 1013 root 7r CHR 1,9 0t0 6490 /dev/urandom gmain 823 1013 root 8r a_inode 0,10 0 6481 inotify gmain 823 1013 root 9u a_inode 0,10 0 6481 [eventfd] gmain 823 1013 root 10u unix 0xffff96afb4b92000 0t0 22509 socket NetworkMa 865 root cwd DIR 253,0 224 64 / NetworkMa 865 root rtd DIR 253,0 224 64 / NetworkMa 865 root txt REG 253,0 2957744 1486 /usr/sbin/NetworkManager NetworkMa 865 root mem REG 253,0 86472 33489 /usr/lib64/libnss_myhostname.so.2 NetworkMa 865 root mem REG 253,0 31408 503056 /usr/lib64/libnss_dns-2.17.so NetworkMa 865 root mem REG 253,0 152272 297594 /usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-device-plugin-wifi.so NetworkMa 865 root mem REG 253,0 333384 33781 /usr/lib64/libdbus-1.so.3.14.14 NetworkMa 865 root mem REG 253,0 53944 10457 /usr/lib64/libjansson.so.4.10.0 NetworkMa 865 root mem REG 253,0 23984 34203 /usr/lib64/libteamdctl.so.0.1.5 NetworkMa 865 root mem REG 253,0 41352 297593 /usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-device-plugin-team.so NetworkMa 865 root mem REG 253,0 24320 168491 /usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-settings-plugin-ibft.so NetworkMa 865 root mem REG 253,0 248184 168492 /usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-settings-plugin-ifcfg-rh.so NetworkMa 865 root mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so NetworkMa 865 root mem REG 253,0 106075056 16781164 /usr/lib/locale/locale-archive NetworkMa 865 root mem REG 253,0 11392 7832 /usr/lib64/libfreebl3.so NetworkMa 865 root mem REG 253,0 40664 1119 /usr/lib64/libcrypt-2.17.so NetworkMa 865 root mem REG 253,0 121320 10329 /usr/lib64/libsasl2.so.3.0.0 NetworkMa 865 root mem REG 253,0 15688 9878 /usr/lib64/libkeyutils.so.1.5 NetworkMa 865 root mem REG 253,0 67104 9952 /usr/lib64/libkrb5support.so.0.1 NetworkMa 865 root mem REG 253,0 2521144 8157 /usr/lib64/libcrypto.so.1.0.2k NetworkMa 865 root mem REG 253,0 470376 9842 /usr/lib64/libssl.so.1.0.2k NetworkMa 865 root mem REG 253,0 68192 9982 /usr/lib64/libbz2.so.1.0.6 NetworkMa 865 root mem REG 253,0 100024 503087 /usr/lib64/libelf-0.176.so NetworkMa 865 root mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 NetworkMa 865 root mem REG 253,0 265600 8147 /usr/lib64/libblkid.so.1.1.0 NetworkMa 865 root mem REG 253,0 352608 32968 /usr/lib64/libldap-2.4.so.2.10.7 NetworkMa 865 root mem REG 253,0 61952 32966 /usr/lib64/liblber-2.4.so.2.10.7 NetworkMa 865 root mem REG 253,0 15920 7825 /usr/lib64/libcom_err.so.2.1 NetworkMa 865 root mem REG 253,0 210784 9845 /usr/lib64/libk5crypto.so.3.1 NetworkMa 865 root mem REG 253,0 967784 9948 /usr/lib64/libkrb5.so.3.3 NetworkMa 865 root mem REG 253,0 320784 8155 /usr/lib64/libgssapi_krb5.so.2.2 NetworkMa 865 root mem REG 253,0 186680 32577 /usr/lib64/libssh2.so.1.0.1 NetworkMa 865 root mem REG 253,0 208920 10446 /usr/lib64/libidn.so.11.6.11 NetworkMa 865 root mem REG 253,0 23968 10009 /usr/lib64/libcap-ng.so.0.0.0 NetworkMa 865 root mem REG 253,0 19384 10000 /usr/lib64/libgpg-error.so.0.10.0 NetworkMa 865 root mem REG 253,0 535064 10016 /usr/lib64/libgcrypt.so.11.8.2 NetworkMa 865 root mem REG 253,0 85968 10471 /usr/lib64/liblz4.so.1.7.5 NetworkMa 865 root mem REG 253,0 157424 9974 /usr/lib64/liblzma.so.5.2.2 NetworkMa 865 root mem REG 253,0 338704 33747 /usr/lib64/libdw-0.176.so NetworkMa 865 root mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so NetworkMa 865 root mem REG 253,0 20048 8119 /usr/lib64/libcap.so.2.22 NetworkMa 865 root mem REG 253,0 277808 8164 /usr/lib64/libmount.so.1.1.0 NetworkMa 865 root mem REG 253,0 105824 503073 /usr/lib64/libresolv-2.17.so NetworkMa 865 root mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 NetworkMa 865 root mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 NetworkMa 865 root mem REG 253,0 32304 9828 /usr/lib64/libffi.so.6.0.1 NetworkMa 865 root mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so NetworkMa 865 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so NetworkMa 865 root mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 NetworkMa 865 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so NetworkMa 865 root mem REG 253,0 439320 32975 /usr/lib64/libcurl.so.4.3.0 NetworkMa 865 root mem REG 253,0 127184 1475 /usr/lib64/libaudit.so.1.0.0 NetworkMa 865 root mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 NetworkMa 865 root mem REG 253,0 24448 33454 /usr/lib64/libndp.so.0.0.0 NetworkMa 865 root mem REG 253,0 203688 33742 /usr/lib64/libsystemd.so.0.6.0 NetworkMa 865 root mem REG 253,0 91024 33744 /usr/lib64/libudev.so.1.6.2 NetworkMa 865 root mem REG 253,0 1156656 9967 /usr/lib64/libglib-2.0.so.0.5600.1 NetworkMa 865 root mem REG 253,0 15640 9972 /usr/lib64/libgmodule-2.0.so.0.5600.1 NetworkMa 865 root mem REG 253,0 339112 10068 /usr/lib64/libgobject-2.0.so.0.5600.1 NetworkMa 865 root mem REG 253,0 1722920 9963 /usr/lib64/libgio-2.0.so.0.5600.1 NetworkMa 865 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so NetworkMa 865 root mem REG 253,0 251792 1468 /usr/lib64/libnspr4.so NetworkMa 865 root mem REG 253,0 20040 1469 /usr/lib64/libplc4.so NetworkMa 865 root mem REG 253,0 15744 1471 /usr/lib64/libplds4.so NetworkMa 865 root mem REG 253,0 198960 1472 /usr/lib64/libnssutil3.so NetworkMa 865 root mem REG 253,0 1257792 33488 /usr/lib64/libnss3.so NetworkMa 865 root mem REG 253,0 168336 503336 /usr/lib64/libsmime3.so NetworkMa 865 root mem REG 253,0 370584 503337 /usr/lib64/libssl3.so NetworkMa 865 root mem REG 253,0 20064 8146 /usr/lib64/libuuid.so.1.3.0 NetworkMa 865 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so NetworkMa 865 root mem REG 253,0 26254 16789060 /usr/lib64/gconv/gconv-modules.cache NetworkMa 865 root 0r CHR 1,3 0t0 6485 /dev/null NetworkMa 865 root 1u unix 0xffff96afb4d75800 0t0 18955 socket NetworkMa 865 root 2u unix 0xffff96afb4d75800 0t0 18955 socket NetworkMa 865 root 3u a_inode 0,10 0 6481 [eventfd] NetworkMa 865 root 4u a_inode 0,10 0 6481 [eventfd] NetworkMa 865 root 5u unix 0xffff96afb5770c00 0t0 18979 socket NetworkMa 865 root 6r REG 0,3 0 4026531956 net NetworkMa 865 root 7r REG 0,3 0 4026532390 mnt NetworkMa 865 root 8u netlink 0t0 18990 KOBJECT_UEVENT NetworkMa 865 root 9u netlink 0t0 18991 GENERIC NetworkMa 865 root 10u netlink 0t0 18992 ROUTE NetworkMa 865 root 11u unix 0xffff96afb573e400 0t0 19005 socket NetworkMa 865 root 12u a_inode 0,10 0 6481 [eventfd] NetworkMa 865 root 13r a_inode 0,10 0 6481 inotify NetworkMa 865 root 14r a_inode 0,10 0 6481 inotify NetworkMa 865 root 15u netlink 0t0 19858 KOBJECT_UEVENT NetworkMa 865 root 16u a_inode 0,10 0 6481 [eventpoll] NetworkMa 865 root 17u unix 0xffff96afb573e800 0t0 20119 socket NetworkMa 865 root 18u unix 0xffff96af33897400 0t0 20600 /var/run/NetworkManager/private-dhcp NetworkMa 865 root 19w FIFO 0,20 0t0 20214 /run/systemd/inhibit/1.ref NetworkMa 865 root 20u raw6 0t0 24206 00000000000000000000000000000000:003A->00000000000000000000000000000000:0000 st=07 gmain 865 875 root cwd DIR 253,0 224 64 / gmain 865 875 root rtd DIR 253,0 224 64 / gmain 865 875 root txt REG 253,0 2957744 1486 /usr/sbin/NetworkManager gmain 865 875 root mem REG 253,0 86472 33489 /usr/lib64/libnss_myhostname.so.2 gmain 865 875 root mem REG 253,0 31408 503056 /usr/lib64/libnss_dns-2.17.so gmain 865 875 root mem REG 253,0 152272 297594 /usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-device-plugin-wifi.so gmain 865 875 root mem REG 253,0 333384 33781 /usr/lib64/libdbus-1.so.3.14.14 gmain 865 875 root mem REG 253,0 53944 10457 /usr/lib64/libjansson.so.4.10.0 gmain 865 875 root mem REG 253,0 23984 34203 /usr/lib64/libteamdctl.so.0.1.5 gmain 865 875 root mem REG 253,0 41352 297593 /usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-device-plugin-team.so gmain 865 875 root mem REG 253,0 24320 168491 /usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-settings-plugin-ibft.so gmain 865 875 root mem REG 253,0 248184 168492 /usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-settings-plugin-ifcfg-rh.so gmain 865 875 root mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so gmain 865 875 root mem REG 253,0 106075056 16781164 /usr/lib/locale/locale-archive gmain 865 875 root mem REG 253,0 11392 7832 /usr/lib64/libfreebl3.so gmain 865 875 root mem REG 253,0 40664 1119 /usr/lib64/libcrypt-2.17.so gmain 865 875 root mem REG 253,0 121320 10329 /usr/lib64/libsasl2.so.3.0.0 gmain 865 875 root mem REG 253,0 15688 9878 /usr/lib64/libkeyutils.so.1.5 gmain 865 875 root mem REG 253,0 67104 9952 /usr/lib64/libkrb5support.so.0.1 gmain 865 875 root mem REG 253,0 2521144 8157 /usr/lib64/libcrypto.so.1.0.2k gmain 865 875 root mem REG 253,0 470376 9842 /usr/lib64/libssl.so.1.0.2k gmain 865 875 root mem REG 253,0 68192 9982 /usr/lib64/libbz2.so.1.0.6 gmain 865 875 root mem REG 253,0 100024 503087 /usr/lib64/libelf-0.176.so gmain 865 875 root mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 gmain 865 875 root mem REG 253,0 265600 8147 /usr/lib64/libblkid.so.1.1.0 gmain 865 875 root mem REG 253,0 352608 32968 /usr/lib64/libldap-2.4.so.2.10.7 gmain 865 875 root mem REG 253,0 61952 32966 /usr/lib64/liblber-2.4.so.2.10.7 gmain 865 875 root mem REG 253,0 15920 7825 /usr/lib64/libcom_err.so.2.1 gmain 865 875 root mem REG 253,0 210784 9845 /usr/lib64/libk5crypto.so.3.1 gmain 865 875 root mem REG 253,0 967784 9948 /usr/lib64/libkrb5.so.3.3 gmain 865 875 root mem REG 253,0 320784 8155 /usr/lib64/libgssapi_krb5.so.2.2 gmain 865 875 root mem REG 253,0 186680 32577 /usr/lib64/libssh2.so.1.0.1 gmain 865 875 root mem REG 253,0 208920 10446 /usr/lib64/libidn.so.11.6.11 gmain 865 875 root mem REG 253,0 23968 10009 /usr/lib64/libcap-ng.so.0.0.0 gmain 865 875 root mem REG 253,0 19384 10000 /usr/lib64/libgpg-error.so.0.10.0 gmain 865 875 root mem REG 253,0 535064 10016 /usr/lib64/libgcrypt.so.11.8.2 gmain 865 875 root mem REG 253,0 85968 10471 /usr/lib64/liblz4.so.1.7.5 gmain 865 875 root mem REG 253,0 157424 9974 /usr/lib64/liblzma.so.5.2.2 gmain 865 875 root mem REG 253,0 338704 33747 /usr/lib64/libdw-0.176.so gmain 865 875 root mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so gmain 865 875 root mem REG 253,0 20048 8119 /usr/lib64/libcap.so.2.22 gmain 865 875 root mem REG 253,0 277808 8164 /usr/lib64/libmount.so.1.1.0 gmain 865 875 root mem REG 253,0 105824 503073 /usr/lib64/libresolv-2.17.so gmain 865 875 root mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 gmain 865 875 root mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 gmain 865 875 root mem REG 253,0 32304 9828 /usr/lib64/libffi.so.6.0.1 gmain 865 875 root mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so gmain 865 875 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so gmain 865 875 root mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 gmain 865 875 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so gmain 865 875 root mem REG 253,0 439320 32975 /usr/lib64/libcurl.so.4.3.0 gmain 865 875 root mem REG 253,0 127184 1475 /usr/lib64/libaudit.so.1.0.0 gmain 865 875 root mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 gmain 865 875 root mem REG 253,0 24448 33454 /usr/lib64/libndp.so.0.0.0 gmain 865 875 root mem REG 253,0 203688 33742 /usr/lib64/libsystemd.so.0.6.0 gmain 865 875 root mem REG 253,0 91024 33744 /usr/lib64/libudev.so.1.6.2 gmain 865 875 root mem REG 253,0 1156656 9967 /usr/lib64/libglib-2.0.so.0.5600.1 gmain 865 875 root mem REG 253,0 15640 9972 /usr/lib64/libgmodule-2.0.so.0.5600.1 gmain 865 875 root mem REG 253,0 339112 10068 /usr/lib64/libgobject-2.0.so.0.5600.1 gmain 865 875 root mem REG 253,0 1722920 9963 /usr/lib64/libgio-2.0.so.0.5600.1 gmain 865 875 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so gmain 865 875 root mem REG 253,0 251792 1468 /usr/lib64/libnspr4.so gmain 865 875 root mem REG 253,0 20040 1469 /usr/lib64/libplc4.so gmain 865 875 root mem REG 253,0 15744 1471 /usr/lib64/libplds4.so gmain 865 875 root mem REG 253,0 198960 1472 /usr/lib64/libnssutil3.so gmain 865 875 root mem REG 253,0 1257792 33488 /usr/lib64/libnss3.so gmain 865 875 root mem REG 253,0 168336 503336 /usr/lib64/libsmime3.so gmain 865 875 root mem REG 253,0 370584 503337 /usr/lib64/libssl3.so gmain 865 875 root mem REG 253,0 20064 8146 /usr/lib64/libuuid.so.1.3.0 gmain 865 875 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so gmain 865 875 root mem REG 253,0 26254 16789060 /usr/lib64/gconv/gconv-modules.cache gmain 865 875 root 0r CHR 1,3 0t0 6485 /dev/null gmain 865 875 root 1u unix 0xffff96afb4d75800 0t0 18955 socket gmain 865 875 root 2u unix 0xffff96afb4d75800 0t0 18955 socket gmain 865 875 root 3u a_inode 0,10 0 6481 [eventfd] gmain 865 875 root 4u a_inode 0,10 0 6481 [eventfd] gmain 865 875 root 5u unix 0xffff96afb5770c00 0t0 18979 socket gmain 865 875 root 6r REG 0,3 0 4026531956 net gmain 865 875 root 7r REG 0,3 0 4026532390 mnt gmain 865 875 root 8u netlink 0t0 18990 KOBJECT_UEVENT gmain 865 875 root 9u netlink 0t0 18991 GENERIC gmain 865 875 root 10u netlink 0t0 18992 ROUTE gmain 865 875 root 11u unix 0xffff96afb573e400 0t0 19005 socket gmain 865 875 root 12u a_inode 0,10 0 6481 [eventfd] gmain 865 875 root 13r a_inode 0,10 0 6481 inotify gmain 865 875 root 14r a_inode 0,10 0 6481 inotify gmain 865 875 root 15u netlink 0t0 19858 KOBJECT_UEVENT gmain 865 875 root 16u a_inode 0,10 0 6481 [eventpoll] gmain 865 875 root 17u unix 0xffff96afb573e800 0t0 20119 socket gmain 865 875 root 18u unix 0xffff96af33897400 0t0 20600 /var/run/NetworkManager/private-dhcp gmain 865 875 root 19w FIFO 0,20 0t0 20214 /run/systemd/inhibit/1.ref gmain 865 875 root 20u raw6 0t0 24206 00000000000000000000000000000000:003A->00000000000000000000000000000000:0000 st=07 gdbus 865 878 root cwd DIR 253,0 224 64 / gdbus 865 878 root rtd DIR 253,0 224 64 / gdbus 865 878 root txt REG 253,0 2957744 1486 /usr/sbin/NetworkManager gdbus 865 878 root mem REG 253,0 86472 33489 /usr/lib64/libnss_myhostname.so.2 gdbus 865 878 root mem REG 253,0 31408 503056 /usr/lib64/libnss_dns-2.17.so gdbus 865 878 root mem REG 253,0 152272 297594 /usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-device-plugin-wifi.so gdbus 865 878 root mem REG 253,0 333384 33781 /usr/lib64/libdbus-1.so.3.14.14 gdbus 865 878 root mem REG 253,0 53944 10457 /usr/lib64/libjansson.so.4.10.0 gdbus 865 878 root mem REG 253,0 23984 34203 /usr/lib64/libteamdctl.so.0.1.5 gdbus 865 878 root mem REG 253,0 41352 297593 /usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-device-plugin-team.so gdbus 865 878 root mem REG 253,0 24320 168491 /usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-settings-plugin-ibft.so gdbus 865 878 root mem REG 253,0 248184 168492 /usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-settings-plugin-ifcfg-rh.so gdbus 865 878 root mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so gdbus 865 878 root mem REG 253,0 106075056 16781164 /usr/lib/locale/locale-archive gdbus 865 878 root mem REG 253,0 11392 7832 /usr/lib64/libfreebl3.so gdbus 865 878 root mem REG 253,0 40664 1119 /usr/lib64/libcrypt-2.17.so gdbus 865 878 root mem REG 253,0 121320 10329 /usr/lib64/libsasl2.so.3.0.0 gdbus 865 878 root mem REG 253,0 15688 9878 /usr/lib64/libkeyutils.so.1.5 gdbus 865 878 root mem REG 253,0 67104 9952 /usr/lib64/libkrb5support.so.0.1 gdbus 865 878 root mem REG 253,0 2521144 8157 /usr/lib64/libcrypto.so.1.0.2k gdbus 865 878 root mem REG 253,0 470376 9842 /usr/lib64/libssl.so.1.0.2k gdbus 865 878 root mem REG 253,0 68192 9982 /usr/lib64/libbz2.so.1.0.6 gdbus 865 878 root mem REG 253,0 100024 503087 /usr/lib64/libelf-0.176.so gdbus 865 878 root mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 gdbus 865 878 root mem REG 253,0 265600 8147 /usr/lib64/libblkid.so.1.1.0 gdbus 865 878 root mem REG 253,0 352608 32968 /usr/lib64/libldap-2.4.so.2.10.7 gdbus 865 878 root mem REG 253,0 61952 32966 /usr/lib64/liblber-2.4.so.2.10.7 gdbus 865 878 root mem REG 253,0 15920 7825 /usr/lib64/libcom_err.so.2.1 gdbus 865 878 root mem REG 253,0 210784 9845 /usr/lib64/libk5crypto.so.3.1 gdbus 865 878 root mem REG 253,0 967784 9948 /usr/lib64/libkrb5.so.3.3 gdbus 865 878 root mem REG 253,0 320784 8155 /usr/lib64/libgssapi_krb5.so.2.2 gdbus 865 878 root mem REG 253,0 186680 32577 /usr/lib64/libssh2.so.1.0.1 gdbus 865 878 root mem REG 253,0 208920 10446 /usr/lib64/libidn.so.11.6.11 gdbus 865 878 root mem REG 253,0 23968 10009 /usr/lib64/libcap-ng.so.0.0.0 gdbus 865 878 root mem REG 253,0 19384 10000 /usr/lib64/libgpg-error.so.0.10.0 gdbus 865 878 root mem REG 253,0 535064 10016 /usr/lib64/libgcrypt.so.11.8.2 gdbus 865 878 root mem REG 253,0 85968 10471 /usr/lib64/liblz4.so.1.7.5 gdbus 865 878 root mem REG 253,0 157424 9974 /usr/lib64/liblzma.so.5.2.2 gdbus 865 878 root mem REG 253,0 338704 33747 /usr/lib64/libdw-0.176.so gdbus 865 878 root mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so gdbus 865 878 root mem REG 253,0 20048 8119 /usr/lib64/libcap.so.2.22 gdbus 865 878 root mem REG 253,0 277808 8164 /usr/lib64/libmount.so.1.1.0 gdbus 865 878 root mem REG 253,0 105824 503073 /usr/lib64/libresolv-2.17.so gdbus 865 878 root mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 gdbus 865 878 root mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 gdbus 865 878 root mem REG 253,0 32304 9828 /usr/lib64/libffi.so.6.0.1 gdbus 865 878 root mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so gdbus 865 878 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so gdbus 865 878 root mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 gdbus 865 878 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so gdbus 865 878 root mem REG 253,0 439320 32975 /usr/lib64/libcurl.so.4.3.0 gdbus 865 878 root mem REG 253,0 127184 1475 /usr/lib64/libaudit.so.1.0.0 gdbus 865 878 root mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 gdbus 865 878 root mem REG 253,0 24448 33454 /usr/lib64/libndp.so.0.0.0 gdbus 865 878 root mem REG 253,0 203688 33742 /usr/lib64/libsystemd.so.0.6.0 gdbus 865 878 root mem REG 253,0 91024 33744 /usr/lib64/libudev.so.1.6.2 gdbus 865 878 root mem REG 253,0 1156656 9967 /usr/lib64/libglib-2.0.so.0.5600.1 gdbus 865 878 root mem REG 253,0 15640 9972 /usr/lib64/libgmodule-2.0.so.0.5600.1 gdbus 865 878 root mem REG 253,0 339112 10068 /usr/lib64/libgobject-2.0.so.0.5600.1 gdbus 865 878 root mem REG 253,0 1722920 9963 /usr/lib64/libgio-2.0.so.0.5600.1 gdbus 865 878 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so gdbus 865 878 root mem REG 253,0 251792 1468 /usr/lib64/libnspr4.so gdbus 865 878 root mem REG 253,0 20040 1469 /usr/lib64/libplc4.so gdbus 865 878 root mem REG 253,0 15744 1471 /usr/lib64/libplds4.so gdbus 865 878 root mem REG 253,0 198960 1472 /usr/lib64/libnssutil3.so gdbus 865 878 root mem REG 253,0 1257792 33488 /usr/lib64/libnss3.so gdbus 865 878 root mem REG 253,0 168336 503336 /usr/lib64/libsmime3.so gdbus 865 878 root mem REG 253,0 370584 503337 /usr/lib64/libssl3.so gdbus 865 878 root mem REG 253,0 20064 8146 /usr/lib64/libuuid.so.1.3.0 gdbus 865 878 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so gdbus 865 878 root mem REG 253,0 26254 16789060 /usr/lib64/gconv/gconv-modules.cache gdbus 865 878 root 0r CHR 1,3 0t0 6485 /dev/null gdbus 865 878 root 1u unix 0xffff96afb4d75800 0t0 18955 socket gdbus 865 878 root 2u unix 0xffff96afb4d75800 0t0 18955 socket gdbus 865 878 root 3u a_inode 0,10 0 6481 [eventfd] gdbus 865 878 root 4u a_inode 0,10 0 6481 [eventfd] gdbus 865 878 root 5u unix 0xffff96afb5770c00 0t0 18979 socket gdbus 865 878 root 6r REG 0,3 0 4026531956 net gdbus 865 878 root 7r REG 0,3 0 4026532390 mnt gdbus 865 878 root 8u netlink 0t0 18990 KOBJECT_UEVENT gdbus 865 878 root 9u netlink 0t0 18991 GENERIC gdbus 865 878 root 10u netlink 0t0 18992 ROUTE gdbus 865 878 root 11u unix 0xffff96afb573e400 0t0 19005 socket gdbus 865 878 root 12u a_inode 0,10 0 6481 [eventfd] gdbus 865 878 root 13r a_inode 0,10 0 6481 inotify gdbus 865 878 root 14r a_inode 0,10 0 6481 inotify gdbus 865 878 root 15u netlink 0t0 19858 KOBJECT_UEVENT gdbus 865 878 root 16u a_inode 0,10 0 6481 [eventpoll] gdbus 865 878 root 17u unix 0xffff96afb573e800 0t0 20119 socket gdbus 865 878 root 18u unix 0xffff96af33897400 0t0 20600 /var/run/NetworkManager/private-dhcp gdbus 865 878 root 19w FIFO 0,20 0t0 20214 /run/systemd/inhibit/1.ref gdbus 865 878 root 20u raw6 0t0 24206 00000000000000000000000000000000:003A->00000000000000000000000000000000:0000 st=07 dockerd-c 1205 root cwd DIR 253,0 224 64 / dockerd-c 1205 root rtd DIR 253,0 224 64 / dockerd-c 1205 root txt REG 253,0 33407632 50705016 /usr/bin/dockerd-current dockerd-c 1205 root mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so dockerd-c 1205 root mem REG 253,0 68192 9982 /usr/lib64/libbz2.so.1.0.6 dockerd-c 1205 root mem REG 253,0 100024 503087 /usr/lib64/libelf-0.176.so dockerd-c 1205 root mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 dockerd-c 1205 root mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 dockerd-c 1205 root mem REG 253,0 91024 33744 /usr/lib64/libudev.so.1.6.2 dockerd-c 1205 root mem REG 253,0 660208 9827 /usr/lib64/libsepol.so.1 dockerd-c 1205 root mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 dockerd-c 1205 root mem REG 253,0 338704 33747 /usr/lib64/libdw-0.176.so dockerd-c 1205 root mem REG 253,0 105824 503073 /usr/lib64/libresolv-2.17.so dockerd-c 1205 root mem REG 253,0 535064 10016 /usr/lib64/libgcrypt.so.11.8.2 dockerd-c 1205 root mem REG 253,0 85968 10471 /usr/lib64/liblz4.so.1.7.5 dockerd-c 1205 root mem REG 253,0 157424 9974 /usr/lib64/liblzma.so.5.2.2 dockerd-c 1205 root mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 dockerd-c 1205 root mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so dockerd-c 1205 root mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so dockerd-c 1205 root mem REG 253,0 20048 8119 /usr/lib64/libcap.so.2.22 dockerd-c 1205 root mem REG 253,0 23968 10009 /usr/lib64/libcap-ng.so.0.0.0 dockerd-c 1205 root mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 dockerd-c 1205 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so dockerd-c 1205 root mem REG 253,0 19384 10000 /usr/lib64/libgpg-error.so.0.10.0 dockerd-c 1205 root mem REG 253,0 70856 10327 /usr/lib64/libassuan.so.0.4.0 dockerd-c 1205 root mem REG 253,0 212120 102415 /usr/lib64/libgpgme.so.11.8.1 dockerd-c 1205 root mem REG 253,0 356112 16794 /usr/lib64/libdevmapper.so.1.02 dockerd-c 1205 root mem REG 253,0 266680 33458 /usr/lib64/libseccomp.so.2.3.1 dockerd-c 1205 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so dockerd-c 1205 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so dockerd-c 1205 root mem REG 253,0 203688 33742 /usr/lib64/libsystemd.so.0.6.0 dockerd-c 1205 root mem REG 253,0 127184 1475 /usr/lib64/libaudit.so.1.0.0 dockerd-c 1205 root mem REG 253,0 2521144 8157 /usr/lib64/libcrypto.so.1.0.2k dockerd-c 1205 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so dockerd-c 1205 root mem-W REG 253,0 32768 34346870 /var/lib/docker/volumes/metadata.db dockerd-c 1205 root 0r CHR 1,3 0t0 6485 /dev/null dockerd-c 1205 root 1u unix 0xffff96af33934c00 0t0 21302 socket dockerd-c 1205 root 2u unix 0xffff96af33934c00 0t0 21302 socket dockerd-c 1205 root 3u unix 0xffff96afb728c800 0t0 21801 socket dockerd-c 1205 root 4u a_inode 0,10 0 6481 [eventpoll] dockerd-c 1205 root 5u unix 0xffff96af34e1f800 0t0 21822 /var/run/docker.sock dockerd-c 1205 root 6u unix 0xffff96af325fc800 0t0 22240 socket dockerd-c 1205 root 7uW REG 253,0 32768 34346870 /var/lib/docker/volumes/metadata.db dockerd-c 1205 root 8u unix 0xffff96afb4b94400 0t0 22478 socket dockerd-c 1205 root 9r REG 0,3 0 4026531956 net dockerd-c 1205 root 10u netlink 0t0 22649 ROUTE dockerd-c 1205 root 11u netlink 0t0 22650 XFRM dockerd-c 1205 root 12u unix 0xffff96afb4b97c00 0t0 22839 /run/docker/libnetwork/fe53fe5029258e61eb7a9173ec80150ea3595abe7d69e47af064f451212110bf.sock dockerd-c 1205 1214 root cwd DIR 253,0 224 64 / dockerd-c 1205 1214 root rtd DIR 253,0 224 64 / dockerd-c 1205 1214 root txt REG 253,0 33407632 50705016 /usr/bin/dockerd-current dockerd-c 1205 1214 root mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so dockerd-c 1205 1214 root mem REG 253,0 68192 9982 /usr/lib64/libbz2.so.1.0.6 dockerd-c 1205 1214 root mem REG 253,0 100024 503087 /usr/lib64/libelf-0.176.so dockerd-c 1205 1214 root mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 dockerd-c 1205 1214 root mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 dockerd-c 1205 1214 root mem REG 253,0 91024 33744 /usr/lib64/libudev.so.1.6.2 dockerd-c 1205 1214 root mem REG 253,0 660208 9827 /usr/lib64/libsepol.so.1 dockerd-c 1205 1214 root mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 dockerd-c 1205 1214 root mem REG 253,0 338704 33747 /usr/lib64/libdw-0.176.so dockerd-c 1205 1214 root mem REG 253,0 105824 503073 /usr/lib64/libresolv-2.17.so dockerd-c 1205 1214 root mem REG 253,0 535064 10016 /usr/lib64/libgcrypt.so.11.8.2 dockerd-c 1205 1214 root mem REG 253,0 85968 10471 /usr/lib64/liblz4.so.1.7.5 dockerd-c 1205 1214 root mem REG 253,0 157424 9974 /usr/lib64/liblzma.so.5.2.2 dockerd-c 1205 1214 root mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 dockerd-c 1205 1214 root mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so dockerd-c 1205 1214 root mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so dockerd-c 1205 1214 root mem REG 253,0 20048 8119 /usr/lib64/libcap.so.2.22 dockerd-c 1205 1214 root mem REG 253,0 23968 10009 /usr/lib64/libcap-ng.so.0.0.0 dockerd-c 1205 1214 root mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 dockerd-c 1205 1214 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so dockerd-c 1205 1214 root mem REG 253,0 19384 10000 /usr/lib64/libgpg-error.so.0.10.0 dockerd-c 1205 1214 root mem REG 253,0 70856 10327 /usr/lib64/libassuan.so.0.4.0 dockerd-c 1205 1214 root mem REG 253,0 212120 102415 /usr/lib64/libgpgme.so.11.8.1 dockerd-c 1205 1214 root mem REG 253,0 356112 16794 /usr/lib64/libdevmapper.so.1.02 dockerd-c 1205 1214 root mem REG 253,0 266680 33458 /usr/lib64/libseccomp.so.2.3.1 dockerd-c 1205 1214 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so dockerd-c 1205 1214 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so dockerd-c 1205 1214 root mem REG 253,0 203688 33742 /usr/lib64/libsystemd.so.0.6.0 dockerd-c 1205 1214 root mem REG 253,0 127184 1475 /usr/lib64/libaudit.so.1.0.0 dockerd-c 1205 1214 root mem REG 253,0 2521144 8157 /usr/lib64/libcrypto.so.1.0.2k dockerd-c 1205 1214 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so dockerd-c 1205 1214 root mem-W REG 253,0 32768 34346870 /var/lib/docker/volumes/metadata.db dockerd-c 1205 1214 root 0r CHR 1,3 0t0 6485 /dev/null dockerd-c 1205 1214 root 1u unix 0xffff96af33934c00 0t0 21302 socket dockerd-c 1205 1214 root 2u unix 0xffff96af33934c00 0t0 21302 socket dockerd-c 1205 1214 root 3u unix 0xffff96afb728c800 0t0 21801 socket dockerd-c 1205 1214 root 4u a_inode 0,10 0 6481 [eventpoll] dockerd-c 1205 1214 root 5u unix 0xffff96af34e1f800 0t0 21822 /var/run/docker.sock dockerd-c 1205 1214 root 6u unix 0xffff96af325fc800 0t0 22240 socket dockerd-c 1205 1214 root 7uW REG 253,0 32768 34346870 /var/lib/docker/volumes/metadata.db dockerd-c 1205 1214 root 8u unix 0xffff96afb4b94400 0t0 22478 socket dockerd-c 1205 1214 root 9r REG 0,3 0 4026531956 net dockerd-c 1205 1214 root 10u netlink 0t0 22649 ROUTE dockerd-c 1205 1214 root 11u netlink 0t0 22650 XFRM dockerd-c 1205 1214 root 12u unix 0xffff96afb4b97c00 0t0 22839 /run/docker/libnetwork/fe53fe5029258e61eb7a9173ec80150ea3595abe7d69e47af064f451212110bf.sock dockerd-c 1205 1215 root cwd DIR 253,0 224 64 / dockerd-c 1205 1215 root rtd DIR 253,0 224 64 / dockerd-c 1205 1215 root txt REG 253,0 33407632 50705016 /usr/bin/dockerd-current dockerd-c 1205 1215 root mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so dockerd-c 1205 1215 root mem REG 253,0 68192 9982 /usr/lib64/libbz2.so.1.0.6 dockerd-c 1205 1215 root mem REG 253,0 100024 503087 /usr/lib64/libelf-0.176.so dockerd-c 1205 1215 root mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 dockerd-c 1205 1215 root mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 dockerd-c 1205 1215 root mem REG 253,0 91024 33744 /usr/lib64/libudev.so.1.6.2 dockerd-c 1205 1215 root mem REG 253,0 660208 9827 /usr/lib64/libsepol.so.1 dockerd-c 1205 1215 root mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 dockerd-c 1205 1215 root mem REG 253,0 338704 33747 /usr/lib64/libdw-0.176.so dockerd-c 1205 1215 root mem REG 253,0 105824 503073 /usr/lib64/libresolv-2.17.so dockerd-c 1205 1215 root mem REG 253,0 535064 10016 /usr/lib64/libgcrypt.so.11.8.2 dockerd-c 1205 1215 root mem REG 253,0 85968 10471 /usr/lib64/liblz4.so.1.7.5 dockerd-c 1205 1215 root mem REG 253,0 157424 9974 /usr/lib64/liblzma.so.5.2.2 dockerd-c 1205 1215 root mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 dockerd-c 1205 1215 root mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so dockerd-c 1205 1215 root mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so dockerd-c 1205 1215 root mem REG 253,0 20048 8119 /usr/lib64/libcap.so.2.22 dockerd-c 1205 1215 root mem REG 253,0 23968 10009 /usr/lib64/libcap-ng.so.0.0.0 dockerd-c 1205 1215 root mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 dockerd-c 1205 1215 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so dockerd-c 1205 1215 root mem REG 253,0 19384 10000 /usr/lib64/libgpg-error.so.0.10.0 dockerd-c 1205 1215 root mem REG 253,0 70856 10327 /usr/lib64/libassuan.so.0.4.0 dockerd-c 1205 1215 root mem REG 253,0 212120 102415 /usr/lib64/libgpgme.so.11.8.1 dockerd-c 1205 1215 root mem REG 253,0 356112 16794 /usr/lib64/libdevmapper.so.1.02 dockerd-c 1205 1215 root mem REG 253,0 266680 33458 /usr/lib64/libseccomp.so.2.3.1 dockerd-c 1205 1215 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so dockerd-c 1205 1215 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so dockerd-c 1205 1215 root mem REG 253,0 203688 33742 /usr/lib64/libsystemd.so.0.6.0 dockerd-c 1205 1215 root mem REG 253,0 127184 1475 /usr/lib64/libaudit.so.1.0.0 dockerd-c 1205 1215 root mem REG 253,0 2521144 8157 /usr/lib64/libcrypto.so.1.0.2k dockerd-c 1205 1215 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so dockerd-c 1205 1215 root mem-W REG 253,0 32768 34346870 /var/lib/docker/volumes/metadata.db dockerd-c 1205 1215 root 0r CHR 1,3 0t0 6485 /dev/null dockerd-c 1205 1215 root 1u unix 0xffff96af33934c00 0t0 21302 socket dockerd-c 1205 1215 root 2u unix 0xffff96af33934c00 0t0 21302 socket dockerd-c 1205 1215 root 3u unix 0xffff96afb728c800 0t0 21801 socket dockerd-c 1205 1215 root 4u a_inode 0,10 0 6481 [eventpoll] dockerd-c 1205 1215 root 5u unix 0xffff96af34e1f800 0t0 21822 /var/run/docker.sock dockerd-c 1205 1215 root 6u unix 0xffff96af325fc800 0t0 22240 socket dockerd-c 1205 1215 root 7uW REG 253,0 32768 34346870 /var/lib/docker/volumes/metadata.db dockerd-c 1205 1215 root 8u unix 0xffff96afb4b94400 0t0 22478 socket dockerd-c 1205 1215 root 9r REG 0,3 0 4026531956 net dockerd-c 1205 1215 root 10u netlink 0t0 22649 ROUTE dockerd-c 1205 1215 root 11u netlink 0t0 22650 XFRM dockerd-c 1205 1215 root 12u unix 0xffff96afb4b97c00 0t0 22839 /run/docker/libnetwork/fe53fe5029258e61eb7a9173ec80150ea3595abe7d69e47af064f451212110bf.sock dockerd-c 1205 1217 root cwd DIR 253,0 224 64 / dockerd-c 1205 1217 root rtd DIR 253,0 224 64 / dockerd-c 1205 1217 root txt REG 253,0 33407632 50705016 /usr/bin/dockerd-current dockerd-c 1205 1217 root mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so dockerd-c 1205 1217 root mem REG 253,0 68192 9982 /usr/lib64/libbz2.so.1.0.6 dockerd-c 1205 1217 root mem REG 253,0 100024 503087 /usr/lib64/libelf-0.176.so dockerd-c 1205 1217 root mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 dockerd-c 1205 1217 root mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 dockerd-c 1205 1217 root mem REG 253,0 91024 33744 /usr/lib64/libudev.so.1.6.2 dockerd-c 1205 1217 root mem REG 253,0 660208 9827 /usr/lib64/libsepol.so.1 dockerd-c 1205 1217 root mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 dockerd-c 1205 1217 root mem REG 253,0 338704 33747 /usr/lib64/libdw-0.176.so dockerd-c 1205 1217 root mem REG 253,0 105824 503073 /usr/lib64/libresolv-2.17.so dockerd-c 1205 1217 root mem REG 253,0 535064 10016 /usr/lib64/libgcrypt.so.11.8.2 dockerd-c 1205 1217 root mem REG 253,0 85968 10471 /usr/lib64/liblz4.so.1.7.5 dockerd-c 1205 1217 root mem REG 253,0 157424 9974 /usr/lib64/liblzma.so.5.2.2 dockerd-c 1205 1217 root mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 dockerd-c 1205 1217 root mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so dockerd-c 1205 1217 root mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so dockerd-c 1205 1217 root mem REG 253,0 20048 8119 /usr/lib64/libcap.so.2.22 dockerd-c 1205 1217 root mem REG 253,0 23968 10009 /usr/lib64/libcap-ng.so.0.0.0 dockerd-c 1205 1217 root mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 dockerd-c 1205 1217 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so dockerd-c 1205 1217 root mem REG 253,0 19384 10000 /usr/lib64/libgpg-error.so.0.10.0 dockerd-c 1205 1217 root mem REG 253,0 70856 10327 /usr/lib64/libassuan.so.0.4.0 dockerd-c 1205 1217 root mem REG 253,0 212120 102415 /usr/lib64/libgpgme.so.11.8.1 dockerd-c 1205 1217 root mem REG 253,0 356112 16794 /usr/lib64/libdevmapper.so.1.02 dockerd-c 1205 1217 root mem REG 253,0 266680 33458 /usr/lib64/libseccomp.so.2.3.1 dockerd-c 1205 1217 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so dockerd-c 1205 1217 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so dockerd-c 1205 1217 root mem REG 253,0 203688 33742 /usr/lib64/libsystemd.so.0.6.0 dockerd-c 1205 1217 root mem REG 253,0 127184 1475 /usr/lib64/libaudit.so.1.0.0 dockerd-c 1205 1217 root mem REG 253,0 2521144 8157 /usr/lib64/libcrypto.so.1.0.2k dockerd-c 1205 1217 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so dockerd-c 1205 1217 root mem-W REG 253,0 32768 34346870 /var/lib/docker/volumes/metadata.db dockerd-c 1205 1217 root 0r CHR 1,3 0t0 6485 /dev/null dockerd-c 1205 1217 root 1u unix 0xffff96af33934c00 0t0 21302 socket dockerd-c 1205 1217 root 2u unix 0xffff96af33934c00 0t0 21302 socket dockerd-c 1205 1217 root 3u unix 0xffff96afb728c800 0t0 21801 socket dockerd-c 1205 1217 root 4u a_inode 0,10 0 6481 [eventpoll] dockerd-c 1205 1217 root 5u unix 0xffff96af34e1f800 0t0 21822 /var/run/docker.sock dockerd-c 1205 1217 root 6u unix 0xffff96af325fc800 0t0 22240 socket dockerd-c 1205 1217 root 7uW REG 253,0 32768 34346870 /var/lib/docker/volumes/metadata.db dockerd-c 1205 1217 root 8u unix 0xffff96afb4b94400 0t0 22478 socket dockerd-c 1205 1217 root 9r REG 0,3 0 4026531956 net dockerd-c 1205 1217 root 10u netlink 0t0 22649 ROUTE dockerd-c 1205 1217 root 11u netlink 0t0 22650 XFRM dockerd-c 1205 1217 root 12u unix 0xffff96afb4b97c00 0t0 22839 /run/docker/libnetwork/fe53fe5029258e61eb7a9173ec80150ea3595abe7d69e47af064f451212110bf.sock dockerd-c 1205 1231 root cwd DIR 253,0 224 64 / dockerd-c 1205 1231 root rtd DIR 253,0 224 64 / dockerd-c 1205 1231 root txt REG 253,0 33407632 50705016 /usr/bin/dockerd-current dockerd-c 1205 1231 root mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so dockerd-c 1205 1231 root mem REG 253,0 68192 9982 /usr/lib64/libbz2.so.1.0.6 dockerd-c 1205 1231 root mem REG 253,0 100024 503087 /usr/lib64/libelf-0.176.so dockerd-c 1205 1231 root mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 dockerd-c 1205 1231 root mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 dockerd-c 1205 1231 root mem REG 253,0 91024 33744 /usr/lib64/libudev.so.1.6.2 dockerd-c 1205 1231 root mem REG 253,0 660208 9827 /usr/lib64/libsepol.so.1 dockerd-c 1205 1231 root mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 dockerd-c 1205 1231 root mem REG 253,0 338704 33747 /usr/lib64/libdw-0.176.so dockerd-c 1205 1231 root mem REG 253,0 105824 503073 /usr/lib64/libresolv-2.17.so dockerd-c 1205 1231 root mem REG 253,0 535064 10016 /usr/lib64/libgcrypt.so.11.8.2 dockerd-c 1205 1231 root mem REG 253,0 85968 10471 /usr/lib64/liblz4.so.1.7.5 dockerd-c 1205 1231 root mem REG 253,0 157424 9974 /usr/lib64/liblzma.so.5.2.2 dockerd-c 1205 1231 root mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 dockerd-c 1205 1231 root mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so dockerd-c 1205 1231 root mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so dockerd-c 1205 1231 root mem REG 253,0 20048 8119 /usr/lib64/libcap.so.2.22 dockerd-c 1205 1231 root mem REG 253,0 23968 10009 /usr/lib64/libcap-ng.so.0.0.0 dockerd-c 1205 1231 root mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 dockerd-c 1205 1231 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so dockerd-c 1205 1231 root mem REG 253,0 19384 10000 /usr/lib64/libgpg-error.so.0.10.0 dockerd-c 1205 1231 root mem REG 253,0 70856 10327 /usr/lib64/libassuan.so.0.4.0 dockerd-c 1205 1231 root mem REG 253,0 212120 102415 /usr/lib64/libgpgme.so.11.8.1 dockerd-c 1205 1231 root mem REG 253,0 356112 16794 /usr/lib64/libdevmapper.so.1.02 dockerd-c 1205 1231 root mem REG 253,0 266680 33458 /usr/lib64/libseccomp.so.2.3.1 dockerd-c 1205 1231 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so dockerd-c 1205 1231 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so dockerd-c 1205 1231 root mem REG 253,0 203688 33742 /usr/lib64/libsystemd.so.0.6.0 dockerd-c 1205 1231 root mem REG 253,0 127184 1475 /usr/lib64/libaudit.so.1.0.0 dockerd-c 1205 1231 root mem REG 253,0 2521144 8157 /usr/lib64/libcrypto.so.1.0.2k dockerd-c 1205 1231 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so dockerd-c 1205 1231 root mem-W REG 253,0 32768 34346870 /var/lib/docker/volumes/metadata.db dockerd-c 1205 1231 root 0r CHR 1,3 0t0 6485 /dev/null dockerd-c 1205 1231 root 1u unix 0xffff96af33934c00 0t0 21302 socket dockerd-c 1205 1231 root 2u unix 0xffff96af33934c00 0t0 21302 socket dockerd-c 1205 1231 root 3u unix 0xffff96afb728c800 0t0 21801 socket dockerd-c 1205 1231 root 4u a_inode 0,10 0 6481 [eventpoll] dockerd-c 1205 1231 root 5u unix 0xffff96af34e1f800 0t0 21822 /var/run/docker.sock dockerd-c 1205 1231 root 6u unix 0xffff96af325fc800 0t0 22240 socket dockerd-c 1205 1231 root 7uW REG 253,0 32768 34346870 /var/lib/docker/volumes/metadata.db dockerd-c 1205 1231 root 8u unix 0xffff96afb4b94400 0t0 22478 socket dockerd-c 1205 1231 root 9r REG 0,3 0 4026531956 net dockerd-c 1205 1231 root 10u netlink 0t0 22649 ROUTE dockerd-c 1205 1231 root 11u netlink 0t0 22650 XFRM dockerd-c 1205 1231 root 12u unix 0xffff96afb4b97c00 0t0 22839 /run/docker/libnetwork/fe53fe5029258e61eb7a9173ec80150ea3595abe7d69e47af064f451212110bf.sock dockerd-c 1205 1260 root cwd DIR 253,0 224 64 / dockerd-c 1205 1260 root rtd DIR 253,0 224 64 / dockerd-c 1205 1260 root txt REG 253,0 33407632 50705016 /usr/bin/dockerd-current dockerd-c 1205 1260 root mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so dockerd-c 1205 1260 root mem REG 253,0 68192 9982 /usr/lib64/libbz2.so.1.0.6 dockerd-c 1205 1260 root mem REG 253,0 100024 503087 /usr/lib64/libelf-0.176.so dockerd-c 1205 1260 root mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 dockerd-c 1205 1260 root mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 dockerd-c 1205 1260 root mem REG 253,0 91024 33744 /usr/lib64/libudev.so.1.6.2 dockerd-c 1205 1260 root mem REG 253,0 660208 9827 /usr/lib64/libsepol.so.1 dockerd-c 1205 1260 root mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 dockerd-c 1205 1260 root mem REG 253,0 338704 33747 /usr/lib64/libdw-0.176.so dockerd-c 1205 1260 root mem REG 253,0 105824 503073 /usr/lib64/libresolv-2.17.so dockerd-c 1205 1260 root mem REG 253,0 535064 10016 /usr/lib64/libgcrypt.so.11.8.2 dockerd-c 1205 1260 root mem REG 253,0 85968 10471 /usr/lib64/liblz4.so.1.7.5 dockerd-c 1205 1260 root mem REG 253,0 157424 9974 /usr/lib64/liblzma.so.5.2.2 dockerd-c 1205 1260 root mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 dockerd-c 1205 1260 root mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so dockerd-c 1205 1260 root mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so dockerd-c 1205 1260 root mem REG 253,0 20048 8119 /usr/lib64/libcap.so.2.22 dockerd-c 1205 1260 root mem REG 253,0 23968 10009 /usr/lib64/libcap-ng.so.0.0.0 dockerd-c 1205 1260 root mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 dockerd-c 1205 1260 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so dockerd-c 1205 1260 root mem REG 253,0 19384 10000 /usr/lib64/libgpg-error.so.0.10.0 dockerd-c 1205 1260 root mem REG 253,0 70856 10327 /usr/lib64/libassuan.so.0.4.0 dockerd-c 1205 1260 root mem REG 253,0 212120 102415 /usr/lib64/libgpgme.so.11.8.1 dockerd-c 1205 1260 root mem REG 253,0 356112 16794 /usr/lib64/libdevmapper.so.1.02 dockerd-c 1205 1260 root mem REG 253,0 266680 33458 /usr/lib64/libseccomp.so.2.3.1 dockerd-c 1205 1260 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so dockerd-c 1205 1260 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so dockerd-c 1205 1260 root mem REG 253,0 203688 33742 /usr/lib64/libsystemd.so.0.6.0 dockerd-c 1205 1260 root mem REG 253,0 127184 1475 /usr/lib64/libaudit.so.1.0.0 dockerd-c 1205 1260 root mem REG 253,0 2521144 8157 /usr/lib64/libcrypto.so.1.0.2k dockerd-c 1205 1260 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so dockerd-c 1205 1260 root mem-W REG 253,0 32768 34346870 /var/lib/docker/volumes/metadata.db dockerd-c 1205 1260 root 0r CHR 1,3 0t0 6485 /dev/null dockerd-c 1205 1260 root 1u unix 0xffff96af33934c00 0t0 21302 socket dockerd-c 1205 1260 root 2u unix 0xffff96af33934c00 0t0 21302 socket dockerd-c 1205 1260 root 3u unix 0xffff96afb728c800 0t0 21801 socket dockerd-c 1205 1260 root 4u a_inode 0,10 0 6481 [eventpoll] dockerd-c 1205 1260 root 5u unix 0xffff96af34e1f800 0t0 21822 /var/run/docker.sock dockerd-c 1205 1260 root 6u unix 0xffff96af325fc800 0t0 22240 socket dockerd-c 1205 1260 root 7uW REG 253,0 32768 34346870 /var/lib/docker/volumes/metadata.db dockerd-c 1205 1260 root 8u unix 0xffff96afb4b94400 0t0 22478 socket dockerd-c 1205 1260 root 9r REG 0,3 0 4026531956 net dockerd-c 1205 1260 root 10u netlink 0t0 22649 ROUTE dockerd-c 1205 1260 root 11u netlink 0t0 22650 XFRM dockerd-c 1205 1260 root 12u unix 0xffff96afb4b97c00 0t0 22839 /run/docker/libnetwork/fe53fe5029258e61eb7a9173ec80150ea3595abe7d69e47af064f451212110bf.sock dockerd-c 1205 1449 root cwd DIR 253,0 224 64 / dockerd-c 1205 1449 root rtd DIR 253,0 224 64 / dockerd-c 1205 1449 root txt REG 253,0 33407632 50705016 /usr/bin/dockerd-current dockerd-c 1205 1449 root mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so dockerd-c 1205 1449 root mem REG 253,0 68192 9982 /usr/lib64/libbz2.so.1.0.6 dockerd-c 1205 1449 root mem REG 253,0 100024 503087 /usr/lib64/libelf-0.176.so dockerd-c 1205 1449 root mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 dockerd-c 1205 1449 root mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 dockerd-c 1205 1449 root mem REG 253,0 91024 33744 /usr/lib64/libudev.so.1.6.2 dockerd-c 1205 1449 root mem REG 253,0 660208 9827 /usr/lib64/libsepol.so.1 dockerd-c 1205 1449 root mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 dockerd-c 1205 1449 root mem REG 253,0 338704 33747 /usr/lib64/libdw-0.176.so dockerd-c 1205 1449 root mem REG 253,0 105824 503073 /usr/lib64/libresolv-2.17.so dockerd-c 1205 1449 root mem REG 253,0 535064 10016 /usr/lib64/libgcrypt.so.11.8.2 dockerd-c 1205 1449 root mem REG 253,0 85968 10471 /usr/lib64/liblz4.so.1.7.5 dockerd-c 1205 1449 root mem REG 253,0 157424 9974 /usr/lib64/liblzma.so.5.2.2 dockerd-c 1205 1449 root mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 dockerd-c 1205 1449 root mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so dockerd-c 1205 1449 root mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so dockerd-c 1205 1449 root mem REG 253,0 20048 8119 /usr/lib64/libcap.so.2.22 dockerd-c 1205 1449 root mem REG 253,0 23968 10009 /usr/lib64/libcap-ng.so.0.0.0 dockerd-c 1205 1449 root mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 dockerd-c 1205 1449 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so dockerd-c 1205 1449 root mem REG 253,0 19384 10000 /usr/lib64/libgpg-error.so.0.10.0 dockerd-c 1205 1449 root mem REG 253,0 70856 10327 /usr/lib64/libassuan.so.0.4.0 dockerd-c 1205 1449 root mem REG 253,0 212120 102415 /usr/lib64/libgpgme.so.11.8.1 dockerd-c 1205 1449 root mem REG 253,0 356112 16794 /usr/lib64/libdevmapper.so.1.02 dockerd-c 1205 1449 root mem REG 253,0 266680 33458 /usr/lib64/libseccomp.so.2.3.1 dockerd-c 1205 1449 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so dockerd-c 1205 1449 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so dockerd-c 1205 1449 root mem REG 253,0 203688 33742 /usr/lib64/libsystemd.so.0.6.0 dockerd-c 1205 1449 root mem REG 253,0 127184 1475 /usr/lib64/libaudit.so.1.0.0 dockerd-c 1205 1449 root mem REG 253,0 2521144 8157 /usr/lib64/libcrypto.so.1.0.2k dockerd-c 1205 1449 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so dockerd-c 1205 1449 root mem-W REG 253,0 32768 34346870 /var/lib/docker/volumes/metadata.db dockerd-c 1205 1449 root 0r CHR 1,3 0t0 6485 /dev/null dockerd-c 1205 1449 root 1u unix 0xffff96af33934c00 0t0 21302 socket dockerd-c 1205 1449 root 2u unix 0xffff96af33934c00 0t0 21302 socket dockerd-c 1205 1449 root 3u unix 0xffff96afb728c800 0t0 21801 socket dockerd-c 1205 1449 root 4u a_inode 0,10 0 6481 [eventpoll] dockerd-c 1205 1449 root 5u unix 0xffff96af34e1f800 0t0 21822 /var/run/docker.sock dockerd-c 1205 1449 root 6u unix 0xffff96af325fc800 0t0 22240 socket dockerd-c 1205 1449 root 7uW REG 253,0 32768 34346870 /var/lib/docker/volumes/metadata.db dockerd-c 1205 1449 root 8u unix 0xffff96afb4b94400 0t0 22478 socket dockerd-c 1205 1449 root 9r REG 0,3 0 4026531956 net dockerd-c 1205 1449 root 10u netlink 0t0 22649 ROUTE dockerd-c 1205 1449 root 11u netlink 0t0 22650 XFRM dockerd-c 1205 1449 root 12u unix 0xffff96afb4b97c00 0t0 22839 /run/docker/libnetwork/fe53fe5029258e61eb7a9173ec80150ea3595abe7d69e47af064f451212110bf.sock dockerd-c 1205 1450 root cwd DIR 253,0 224 64 / dockerd-c 1205 1450 root rtd DIR 253,0 224 64 / dockerd-c 1205 1450 root txt REG 253,0 33407632 50705016 /usr/bin/dockerd-current dockerd-c 1205 1450 root mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so dockerd-c 1205 1450 root mem REG 253,0 68192 9982 /usr/lib64/libbz2.so.1.0.6 dockerd-c 1205 1450 root mem REG 253,0 100024 503087 /usr/lib64/libelf-0.176.so dockerd-c 1205 1450 root mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 dockerd-c 1205 1450 root mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 dockerd-c 1205 1450 root mem REG 253,0 91024 33744 /usr/lib64/libudev.so.1.6.2 dockerd-c 1205 1450 root mem REG 253,0 660208 9827 /usr/lib64/libsepol.so.1 dockerd-c 1205 1450 root mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 dockerd-c 1205 1450 root mem REG 253,0 338704 33747 /usr/lib64/libdw-0.176.so dockerd-c 1205 1450 root mem REG 253,0 105824 503073 /usr/lib64/libresolv-2.17.so dockerd-c 1205 1450 root mem REG 253,0 535064 10016 /usr/lib64/libgcrypt.so.11.8.2 dockerd-c 1205 1450 root mem REG 253,0 85968 10471 /usr/lib64/liblz4.so.1.7.5 dockerd-c 1205 1450 root mem REG 253,0 157424 9974 /usr/lib64/liblzma.so.5.2.2 dockerd-c 1205 1450 root mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 dockerd-c 1205 1450 root mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so dockerd-c 1205 1450 root mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so dockerd-c 1205 1450 root mem REG 253,0 20048 8119 /usr/lib64/libcap.so.2.22 dockerd-c 1205 1450 root mem REG 253,0 23968 10009 /usr/lib64/libcap-ng.so.0.0.0 dockerd-c 1205 1450 root mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 dockerd-c 1205 1450 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so dockerd-c 1205 1450 root mem REG 253,0 19384 10000 /usr/lib64/libgpg-error.so.0.10.0 dockerd-c 1205 1450 root mem REG 253,0 70856 10327 /usr/lib64/libassuan.so.0.4.0 dockerd-c 1205 1450 root mem REG 253,0 212120 102415 /usr/lib64/libgpgme.so.11.8.1 dockerd-c 1205 1450 root mem REG 253,0 356112 16794 /usr/lib64/libdevmapper.so.1.02 dockerd-c 1205 1450 root mem REG 253,0 266680 33458 /usr/lib64/libseccomp.so.2.3.1 dockerd-c 1205 1450 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so dockerd-c 1205 1450 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so dockerd-c 1205 1450 root mem REG 253,0 203688 33742 /usr/lib64/libsystemd.so.0.6.0 dockerd-c 1205 1450 root mem REG 253,0 127184 1475 /usr/lib64/libaudit.so.1.0.0 dockerd-c 1205 1450 root mem REG 253,0 2521144 8157 /usr/lib64/libcrypto.so.1.0.2k dockerd-c 1205 1450 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so dockerd-c 1205 1450 root mem-W REG 253,0 32768 34346870 /var/lib/docker/volumes/metadata.db dockerd-c 1205 1450 root 0r CHR 1,3 0t0 6485 /dev/null dockerd-c 1205 1450 root 1u unix 0xffff96af33934c00 0t0 21302 socket dockerd-c 1205 1450 root 2u unix 0xffff96af33934c00 0t0 21302 socket dockerd-c 1205 1450 root 3u unix 0xffff96afb728c800 0t0 21801 socket dockerd-c 1205 1450 root 4u a_inode 0,10 0 6481 [eventpoll] dockerd-c 1205 1450 root 5u unix 0xffff96af34e1f800 0t0 21822 /var/run/docker.sock dockerd-c 1205 1450 root 6u unix 0xffff96af325fc800 0t0 22240 socket dockerd-c 1205 1450 root 7uW REG 253,0 32768 34346870 /var/lib/docker/volumes/metadata.db dockerd-c 1205 1450 root 8u unix 0xffff96afb4b94400 0t0 22478 socket dockerd-c 1205 1450 root 9r REG 0,3 0 4026531956 net dockerd-c 1205 1450 root 10u netlink 0t0 22649 ROUTE dockerd-c 1205 1450 root 11u netlink 0t0 22650 XFRM dockerd-c 1205 1450 root 12u unix 0xffff96afb4b97c00 0t0 22839 /run/docker/libnetwork/fe53fe5029258e61eb7a9173ec80150ea3595abe7d69e47af064f451212110bf.sock dockerd-c 1205 1451 root cwd DIR 253,0 224 64 / dockerd-c 1205 1451 root rtd DIR 253,0 224 64 / dockerd-c 1205 1451 root txt REG 253,0 33407632 50705016 /usr/bin/dockerd-current dockerd-c 1205 1451 root mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so dockerd-c 1205 1451 root mem REG 253,0 68192 9982 /usr/lib64/libbz2.so.1.0.6 dockerd-c 1205 1451 root mem REG 253,0 100024 503087 /usr/lib64/libelf-0.176.so dockerd-c 1205 1451 root mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 dockerd-c 1205 1451 root mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 dockerd-c 1205 1451 root mem REG 253,0 91024 33744 /usr/lib64/libudev.so.1.6.2 dockerd-c 1205 1451 root mem REG 253,0 660208 9827 /usr/lib64/libsepol.so.1 dockerd-c 1205 1451 root mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 dockerd-c 1205 1451 root mem REG 253,0 338704 33747 /usr/lib64/libdw-0.176.so dockerd-c 1205 1451 root mem REG 253,0 105824 503073 /usr/lib64/libresolv-2.17.so dockerd-c 1205 1451 root mem REG 253,0 535064 10016 /usr/lib64/libgcrypt.so.11.8.2 dockerd-c 1205 1451 root mem REG 253,0 85968 10471 /usr/lib64/liblz4.so.1.7.5 dockerd-c 1205 1451 root mem REG 253,0 157424 9974 /usr/lib64/liblzma.so.5.2.2 dockerd-c 1205 1451 root mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 dockerd-c 1205 1451 root mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so dockerd-c 1205 1451 root mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so dockerd-c 1205 1451 root mem REG 253,0 20048 8119 /usr/lib64/libcap.so.2.22 dockerd-c 1205 1451 root mem REG 253,0 23968 10009 /usr/lib64/libcap-ng.so.0.0.0 dockerd-c 1205 1451 root mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 dockerd-c 1205 1451 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so dockerd-c 1205 1451 root mem REG 253,0 19384 10000 /usr/lib64/libgpg-error.so.0.10.0 dockerd-c 1205 1451 root mem REG 253,0 70856 10327 /usr/lib64/libassuan.so.0.4.0 dockerd-c 1205 1451 root mem REG 253,0 212120 102415 /usr/lib64/libgpgme.so.11.8.1 dockerd-c 1205 1451 root mem REG 253,0 356112 16794 /usr/lib64/libdevmapper.so.1.02 dockerd-c 1205 1451 root mem REG 253,0 266680 33458 /usr/lib64/libseccomp.so.2.3.1 dockerd-c 1205 1451 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so dockerd-c 1205 1451 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so dockerd-c 1205 1451 root mem REG 253,0 203688 33742 /usr/lib64/libsystemd.so.0.6.0 dockerd-c 1205 1451 root mem REG 253,0 127184 1475 /usr/lib64/libaudit.so.1.0.0 dockerd-c 1205 1451 root mem REG 253,0 2521144 8157 /usr/lib64/libcrypto.so.1.0.2k dockerd-c 1205 1451 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so dockerd-c 1205 1451 root mem-W REG 253,0 32768 34346870 /var/lib/docker/volumes/metadata.db dockerd-c 1205 1451 root 0r CHR 1,3 0t0 6485 /dev/null dockerd-c 1205 1451 root 1u unix 0xffff96af33934c00 0t0 21302 socket dockerd-c 1205 1451 root 2u unix 0xffff96af33934c00 0t0 21302 socket dockerd-c 1205 1451 root 3u unix 0xffff96afb728c800 0t0 21801 socket dockerd-c 1205 1451 root 4u a_inode 0,10 0 6481 [eventpoll] dockerd-c 1205 1451 root 5u unix 0xffff96af34e1f800 0t0 21822 /var/run/docker.sock dockerd-c 1205 1451 root 6u unix 0xffff96af325fc800 0t0 22240 socket dockerd-c 1205 1451 root 7uW REG 253,0 32768 34346870 /var/lib/docker/volumes/metadata.db dockerd-c 1205 1451 root 8u unix 0xffff96afb4b94400 0t0 22478 socket dockerd-c 1205 1451 root 9r REG 0,3 0 4026531956 net dockerd-c 1205 1451 root 10u netlink 0t0 22649 ROUTE dockerd-c 1205 1451 root 11u netlink 0t0 22650 XFRM dockerd-c 1205 1451 root 12u unix 0xffff96afb4b97c00 0t0 22839 /run/docker/libnetwork/fe53fe5029258e61eb7a9173ec80150ea3595abe7d69e47af064f451212110bf.sock sshd 1206 root cwd DIR 253,0 224 64 / sshd 1206 root rtd DIR 253,0 224 64 / sshd 1206 root txt REG 253,0 852856 297586 /usr/sbin/sshd sshd 1206 root mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so sshd 1206 root mem REG 253,0 68192 9982 /usr/lib64/libbz2.so.1.0.6 sshd 1206 root mem REG 253,0 100024 503087 /usr/lib64/libelf-0.176.so sshd 1206 root mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 sshd 1206 root mem REG 253,0 15688 9878 /usr/lib64/libkeyutils.so.1.5 sshd 1206 root mem REG 253,0 67104 9952 /usr/lib64/libkrb5support.so.0.1 sshd 1206 root mem REG 253,0 11392 7832 /usr/lib64/libfreebl3.so sshd 1206 root mem REG 253,0 251792 1468 /usr/lib64/libnspr4.so sshd 1206 root mem REG 253,0 20040 1469 /usr/lib64/libplc4.so sshd 1206 root mem REG 253,0 15744 1471 /usr/lib64/libplds4.so sshd 1206 root mem REG 253,0 198960 1472 /usr/lib64/libnssutil3.so sshd 1206 root mem REG 253,0 1257792 33488 /usr/lib64/libnss3.so sshd 1206 root mem REG 253,0 168336 503336 /usr/lib64/libsmime3.so sshd 1206 root mem REG 253,0 370584 503337 /usr/lib64/libssl3.so sshd 1206 root mem REG 253,0 470376 9842 /usr/lib64/libssl.so.1.0.2k sshd 1206 root mem REG 253,0 121320 10329 /usr/lib64/libsasl2.so.3.0.0 sshd 1206 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so sshd 1206 root mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 sshd 1206 root mem REG 253,0 338704 33747 /usr/lib64/libdw-0.176.so sshd 1206 root mem REG 253,0 19384 10000 /usr/lib64/libgpg-error.so.0.10.0 sshd 1206 root mem REG 253,0 535064 10016 /usr/lib64/libgcrypt.so.11.8.2 sshd 1206 root mem REG 253,0 85968 10471 /usr/lib64/liblz4.so.1.7.5 sshd 1206 root mem REG 253,0 157424 9974 /usr/lib64/liblzma.so.5.2.2 sshd 1206 root mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so sshd 1206 root mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so sshd 1206 root mem REG 253,0 20048 8119 /usr/lib64/libcap.so.2.22 sshd 1206 root mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 sshd 1206 root mem REG 253,0 23968 10009 /usr/lib64/libcap-ng.so.0.0.0 sshd 1206 root mem REG 253,0 115848 1452 /usr/lib64/libnsl-2.17.so sshd 1206 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so sshd 1206 root mem REG 253,0 15920 7825 /usr/lib64/libcom_err.so.2.1 sshd 1206 root mem REG 253,0 210784 9845 /usr/lib64/libk5crypto.so.3.1 sshd 1206 root mem REG 253,0 967784 9948 /usr/lib64/libkrb5.so.3.3 sshd 1206 root mem REG 253,0 320784 8155 /usr/lib64/libgssapi_krb5.so.2.2 sshd 1206 root mem REG 253,0 105824 503073 /usr/lib64/libresolv-2.17.so sshd 1206 root mem REG 253,0 40664 1119 /usr/lib64/libcrypt-2.17.so sshd 1206 root mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 sshd 1206 root mem REG 253,0 14496 503085 /usr/lib64/libutil-2.17.so sshd 1206 root mem REG 253,0 61952 32966 /usr/lib64/liblber-2.4.so.2.10.7 sshd 1206 root mem REG 253,0 352608 32968 /usr/lib64/libldap-2.4.so.2.10.7 sshd 1206 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so sshd 1206 root mem REG 253,0 2521144 8157 /usr/lib64/libcrypto.so.1.0.2k sshd 1206 root mem REG 253,0 203688 33742 /usr/lib64/libsystemd.so.0.6.0 sshd 1206 root mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 sshd 1206 root mem REG 253,0 61672 10149 /usr/lib64/libpam.so.0.83.1 sshd 1206 root mem REG 253,0 127184 1475 /usr/lib64/libaudit.so.1.0.0 sshd 1206 root mem REG 253,0 42520 10468 /usr/lib64/libwrap.so.0.7.6 sshd 1206 root mem REG 253,0 11344 32826 /usr/lib64/libfipscheck.so.1.2.1 sshd 1206 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so sshd 1206 root 0r CHR 1,3 0t0 6485 /dev/null sshd 1206 root 1u unix 0xffff96afb573c000 0t0 21429 socket sshd 1206 root 2u unix 0xffff96afb573c000 0t0 21429 socket sshd 1206 root 3u IPv4 21598 0t0 TCP *:ssh (LISTEN) sshd 1206 root 4u IPv6 21607 0t0 TCP *:ssh (LISTEN) tuned 1207 root cwd DIR 253,0 224 64 / tuned 1207 root rtd DIR 253,0 224 64 / tuned 1207 root txt REG 253,0 7216 50359089 /usr/bin/python2.7 tuned 1207 root mem REG 253,0 91024 33744 /usr/lib64/libudev.so.1.6.2 tuned 1207 root mem REG 253,0 156960 50359917 /usr/lib64/python2.7/lib-dynload/_io.so tuned 1207 root mem REG 253,0 127000 50359909 /usr/lib64/python2.7/lib-dynload/_ctypes.so tuned 1207 root mem REG 253,0 86984 50338611 /usr/lib64/python2.7/lib-dynload/datetime.so tuned 1207 root mem REG 253,0 217144 32802 /usr/lib64/libgirepository-1.0.so.1.0.0 tuned 1207 root mem REG 253,0 6952 10074 /usr/lib64/libgthread-2.0.so.0.5600.1 tuned 1207 root mem REG 253,0 331480 17071684 /usr/lib64/python2.7/site-packages/gi/_gi.so tuned 1207 root mem REG 253,0 20064 8146 /usr/lib64/libuuid.so.1.3.0 tuned 1207 root mem REG 253,0 265600 8147 /usr/lib64/libblkid.so.1.1.0 tuned 1207 root mem REG 253,0 277808 8164 /usr/lib64/libmount.so.1.1.0 tuned 1207 root mem REG 253,0 15640 9972 /usr/lib64/libgmodule-2.0.so.0.5600.1 tuned 1207 root mem REG 253,0 32304 9828 /usr/lib64/libffi.so.6.0.1 tuned 1207 root mem REG 253,0 1722920 9963 /usr/lib64/libgio-2.0.so.0.5600.1 tuned 1207 root mem REG 253,0 1156656 9967 /usr/lib64/libglib-2.0.so.0.5600.1 tuned 1207 root mem REG 253,0 339112 10068 /usr/lib64/libgobject-2.0.so.0.5600.1 tuned 1207 root mem REG 253,0 168312 102248 /usr/lib64/libdbus-glib-1.so.2.2.2 tuned 1207 root mem REG 253,0 11976 102254 /usr/lib64/python2.7/site-packages/_dbus_glib_bindings.so tuned 1207 root mem REG 253,0 173320 10025 /usr/lib64/libexpat.so.1.6.0 tuned 1207 root mem REG 253,0 54544 50358894 /usr/lib64/python2.7/lib-dynload/pyexpat.so tuned 1207 root mem REG 253,0 68192 9982 /usr/lib64/libbz2.so.1.0.6 tuned 1207 root mem REG 253,0 100024 503087 /usr/lib64/libelf-0.176.so tuned 1207 root mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 tuned 1207 root mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 tuned 1207 root mem REG 253,0 338704 33747 /usr/lib64/libdw-0.176.so tuned 1207 root mem REG 253,0 19384 10000 /usr/lib64/libgpg-error.so.0.10.0 tuned 1207 root mem REG 253,0 535064 10016 /usr/lib64/libgcrypt.so.11.8.2 tuned 1207 root mem REG 253,0 85968 10471 /usr/lib64/liblz4.so.1.7.5 tuned 1207 root mem REG 253,0 157424 9974 /usr/lib64/liblzma.so.5.2.2 tuned 1207 root mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so tuned 1207 root mem REG 253,0 20048 8119 /usr/lib64/libcap.so.2.22 tuned 1207 root mem REG 253,0 203688 33742 /usr/lib64/libsystemd.so.0.6.0 tuned 1207 root mem REG 253,0 333384 33781 /usr/lib64/libdbus-1.so.3.14.14 tuned 1207 root mem REG 253,0 166248 102253 /usr/lib64/python2.7/site-packages/_dbus_bindings.so tuned 1207 root mem REG 253,0 19264 50338618 /usr/lib64/python2.7/lib-dynload/fcntlmodule.so tuned 1207 root mem REG 253,0 29264 50358903 /usr/lib64/python2.7/lib-dynload/selectmodule.so tuned 1207 root mem REG 253,0 12408 50338621 /usr/lib64/python2.7/lib-dynload/grpmodule.so tuned 1207 root mem REG 253,0 16432 50359923 /usr/lib64/python2.7/lib-dynload/_randommodule.so tuned 1207 root mem REG 253,0 22880 50359914 /usr/lib64/python2.7/lib-dynload/_hashlib.so tuned 1207 root mem REG 253,0 25768 50338601 /usr/lib64/python2.7/lib-dynload/binascii.so tuned 1207 root mem REG 253,0 37384 50358881 /usr/lib64/python2.7/lib-dynload/math.so tuned 1207 root mem REG 253,0 85192 50338603 /usr/lib64/python2.7/lib-dynload/cPickle.so tuned 1207 root mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 tuned 1207 root mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 tuned 1207 root mem REG 253,0 105824 503073 /usr/lib64/libresolv-2.17.so tuned 1207 root mem REG 253,0 15688 9878 /usr/lib64/libkeyutils.so.1.5 tuned 1207 root mem REG 253,0 67104 9952 /usr/lib64/libkrb5support.so.0.1 tuned 1207 root mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 tuned 1207 root mem REG 253,0 210784 9845 /usr/lib64/libk5crypto.so.3.1 tuned 1207 root mem REG 253,0 15920 7825 /usr/lib64/libcom_err.so.2.1 tuned 1207 root mem REG 253,0 967784 9948 /usr/lib64/libkrb5.so.3.3 tuned 1207 root mem REG 253,0 320784 8155 /usr/lib64/libgssapi_krb5.so.2.2 tuned 1207 root mem REG 253,0 2521144 8157 /usr/lib64/libcrypto.so.1.0.2k tuned 1207 root mem REG 253,0 470376 9842 /usr/lib64/libssl.so.1.0.2k tuned 1207 root mem REG 253,0 95120 50338580 /usr/lib64/python2.7/lib-dynload/_ssl.so tuned 1207 root mem REG 253,0 83968 50359924 /usr/lib64/python2.7/lib-dynload/_socketmodule.so tuned 1207 root mem REG 253,0 23992 50338604 /usr/lib64/python2.7/lib-dynload/cStringIO.so tuned 1207 root mem REG 253,0 25064 50742922 /usr/lib64/python2.7/lib-dynload/timemodule.so tuned 1207 root mem REG 253,0 39024 50338821 /usr/lib64/python2.7/lib-dynload/_struct.so tuned 1207 root mem REG 253,0 21344 50359919 /usr/lib64/python2.7/lib-dynload/_localemodule.so tuned 1207 root mem REG 253,0 17056 50359913 /usr/lib64/python2.7/lib-dynload/_functoolsmodule.so tuned 1207 root mem REG 253,0 28736 50742918 /usr/lib64/python2.7/lib-dynload/stropmodule.so tuned 1207 root mem REG 253,0 22920 50359915 /usr/lib64/python2.7/lib-dynload/_heapq.so tuned 1207 root mem REG 253,0 62096 50338582 /usr/lib64/python2.7/lib-dynload/itertoolsmodule.so tuned 1207 root mem REG 253,0 47672 50742588 /usr/lib64/python2.7/lib-dynload/operator.so tuned 1207 root mem REG 253,0 33096 50358878 /usr/lib64/python2.7/lib-dynload/_collectionsmodule.so tuned 1207 root mem REG 253,0 106075056 16781164 /usr/lib/locale/locale-archive tuned 1207 root mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so tuned 1207 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so tuned 1207 root mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so tuned 1207 root mem REG 253,0 14496 503085 /usr/lib64/libutil-2.17.so tuned 1207 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so tuned 1207 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so tuned 1207 root mem REG 253,0 1847496 9994 /usr/lib64/libpython2.7.so.1.0 tuned 1207 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so tuned 1207 root mem REG 253,0 185712 50359335 /usr/lib64/girepository-1.0/GLib-2.0.typelib tuned 1207 root DEL REG 253,0 16777634 /tmp/ffiOEEtFw tuned 1207 root 0r CHR 1,3 0t0 6485 /dev/null tuned 1207 root 1u unix 0xffff96afb573bc00 0t0 21373 socket tuned 1207 root 2u unix 0xffff96afb573bc00 0t0 21373 socket tuned 1207 root 3w REG 253,0 23686 17522009 /var/log/tuned/tuned.log tuned 1207 root 4u netlink 0t0 21954 KOBJECT_UEVENT tuned 1207 root 5r CHR 1,9 0t0 6490 /dev/urandom tuned 1207 root 6u unix 0xffff96af325f9c00 0t0 23046 socket tuned 1207 root 7u a_inode 0,10 0 6481 [eventfd] tuned 1207 root 8u REG 253,0 4096 16777634 /tmp/ffiOEEtFw (deleted) tuned 1207 root 9u a_inode 0,10 0 6481 [eventfd] tuned 1207 root 10w CHR 10,61 0t0 8659 /dev/cpu_dma_latency tuned 1207 root 11r FIFO 0,9 0t0 23069 pipe tuned 1207 root 12w FIFO 0,9 0t0 23069 pipe tuned 1207 root 13u a_inode 0,10 0 6481 [eventpoll] gmain 1207 1719 root cwd DIR 253,0 224 64 / gmain 1207 1719 root rtd DIR 253,0 224 64 / gmain 1207 1719 root txt REG 253,0 7216 50359089 /usr/bin/python2.7 gmain 1207 1719 root mem REG 253,0 91024 33744 /usr/lib64/libudev.so.1.6.2 gmain 1207 1719 root mem REG 253,0 156960 50359917 /usr/lib64/python2.7/lib-dynload/_io.so gmain 1207 1719 root mem REG 253,0 127000 50359909 /usr/lib64/python2.7/lib-dynload/_ctypes.so gmain 1207 1719 root mem REG 253,0 86984 50338611 /usr/lib64/python2.7/lib-dynload/datetime.so gmain 1207 1719 root mem REG 253,0 217144 32802 /usr/lib64/libgirepository-1.0.so.1.0.0 gmain 1207 1719 root mem REG 253,0 6952 10074 /usr/lib64/libgthread-2.0.so.0.5600.1 gmain 1207 1719 root mem REG 253,0 331480 17071684 /usr/lib64/python2.7/site-packages/gi/_gi.so gmain 1207 1719 root mem REG 253,0 20064 8146 /usr/lib64/libuuid.so.1.3.0 gmain 1207 1719 root mem REG 253,0 265600 8147 /usr/lib64/libblkid.so.1.1.0 gmain 1207 1719 root mem REG 253,0 277808 8164 /usr/lib64/libmount.so.1.1.0 gmain 1207 1719 root mem REG 253,0 15640 9972 /usr/lib64/libgmodule-2.0.so.0.5600.1 gmain 1207 1719 root mem REG 253,0 32304 9828 /usr/lib64/libffi.so.6.0.1 gmain 1207 1719 root mem REG 253,0 1722920 9963 /usr/lib64/libgio-2.0.so.0.5600.1 gmain 1207 1719 root mem REG 253,0 1156656 9967 /usr/lib64/libglib-2.0.so.0.5600.1 gmain 1207 1719 root mem REG 253,0 339112 10068 /usr/lib64/libgobject-2.0.so.0.5600.1 gmain 1207 1719 root mem REG 253,0 168312 102248 /usr/lib64/libdbus-glib-1.so.2.2.2 gmain 1207 1719 root mem REG 253,0 11976 102254 /usr/lib64/python2.7/site-packages/_dbus_glib_bindings.so gmain 1207 1719 root mem REG 253,0 173320 10025 /usr/lib64/libexpat.so.1.6.0 gmain 1207 1719 root mem REG 253,0 54544 50358894 /usr/lib64/python2.7/lib-dynload/pyexpat.so gmain 1207 1719 root mem REG 253,0 68192 9982 /usr/lib64/libbz2.so.1.0.6 gmain 1207 1719 root mem REG 253,0 100024 503087 /usr/lib64/libelf-0.176.so gmain 1207 1719 root mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 gmain 1207 1719 root mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 gmain 1207 1719 root mem REG 253,0 338704 33747 /usr/lib64/libdw-0.176.so gmain 1207 1719 root mem REG 253,0 19384 10000 /usr/lib64/libgpg-error.so.0.10.0 gmain 1207 1719 root mem REG 253,0 535064 10016 /usr/lib64/libgcrypt.so.11.8.2 gmain 1207 1719 root mem REG 253,0 85968 10471 /usr/lib64/liblz4.so.1.7.5 gmain 1207 1719 root mem REG 253,0 157424 9974 /usr/lib64/liblzma.so.5.2.2 gmain 1207 1719 root mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so gmain 1207 1719 root mem REG 253,0 20048 8119 /usr/lib64/libcap.so.2.22 gmain 1207 1719 root mem REG 253,0 203688 33742 /usr/lib64/libsystemd.so.0.6.0 gmain 1207 1719 root mem REG 253,0 333384 33781 /usr/lib64/libdbus-1.so.3.14.14 gmain 1207 1719 root mem REG 253,0 166248 102253 /usr/lib64/python2.7/site-packages/_dbus_bindings.so gmain 1207 1719 root mem REG 253,0 19264 50338618 /usr/lib64/python2.7/lib-dynload/fcntlmodule.so gmain 1207 1719 root mem REG 253,0 29264 50358903 /usr/lib64/python2.7/lib-dynload/selectmodule.so gmain 1207 1719 root mem REG 253,0 12408 50338621 /usr/lib64/python2.7/lib-dynload/grpmodule.so gmain 1207 1719 root mem REG 253,0 16432 50359923 /usr/lib64/python2.7/lib-dynload/_randommodule.so gmain 1207 1719 root mem REG 253,0 22880 50359914 /usr/lib64/python2.7/lib-dynload/_hashlib.so gmain 1207 1719 root mem REG 253,0 25768 50338601 /usr/lib64/python2.7/lib-dynload/binascii.so gmain 1207 1719 root mem REG 253,0 37384 50358881 /usr/lib64/python2.7/lib-dynload/math.so gmain 1207 1719 root mem REG 253,0 85192 50338603 /usr/lib64/python2.7/lib-dynload/cPickle.so gmain 1207 1719 root mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 gmain 1207 1719 root mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 gmain 1207 1719 root mem REG 253,0 105824 503073 /usr/lib64/libresolv-2.17.so gmain 1207 1719 root mem REG 253,0 15688 9878 /usr/lib64/libkeyutils.so.1.5 gmain 1207 1719 root mem REG 253,0 67104 9952 /usr/lib64/libkrb5support.so.0.1 gmain 1207 1719 root mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 gmain 1207 1719 root mem REG 253,0 210784 9845 /usr/lib64/libk5crypto.so.3.1 gmain 1207 1719 root mem REG 253,0 15920 7825 /usr/lib64/libcom_err.so.2.1 gmain 1207 1719 root mem REG 253,0 967784 9948 /usr/lib64/libkrb5.so.3.3 gmain 1207 1719 root mem REG 253,0 320784 8155 /usr/lib64/libgssapi_krb5.so.2.2 gmain 1207 1719 root mem REG 253,0 2521144 8157 /usr/lib64/libcrypto.so.1.0.2k gmain 1207 1719 root mem REG 253,0 470376 9842 /usr/lib64/libssl.so.1.0.2k gmain 1207 1719 root mem REG 253,0 95120 50338580 /usr/lib64/python2.7/lib-dynload/_ssl.so gmain 1207 1719 root mem REG 253,0 83968 50359924 /usr/lib64/python2.7/lib-dynload/_socketmodule.so gmain 1207 1719 root mem REG 253,0 23992 50338604 /usr/lib64/python2.7/lib-dynload/cStringIO.so gmain 1207 1719 root mem REG 253,0 25064 50742922 /usr/lib64/python2.7/lib-dynload/timemodule.so gmain 1207 1719 root mem REG 253,0 39024 50338821 /usr/lib64/python2.7/lib-dynload/_struct.so gmain 1207 1719 root mem REG 253,0 21344 50359919 /usr/lib64/python2.7/lib-dynload/_localemodule.so gmain 1207 1719 root mem REG 253,0 17056 50359913 /usr/lib64/python2.7/lib-dynload/_functoolsmodule.so gmain 1207 1719 root mem REG 253,0 28736 50742918 /usr/lib64/python2.7/lib-dynload/stropmodule.so gmain 1207 1719 root mem REG 253,0 22920 50359915 /usr/lib64/python2.7/lib-dynload/_heapq.so gmain 1207 1719 root mem REG 253,0 62096 50338582 /usr/lib64/python2.7/lib-dynload/itertoolsmodule.so gmain 1207 1719 root mem REG 253,0 47672 50742588 /usr/lib64/python2.7/lib-dynload/operator.so gmain 1207 1719 root mem REG 253,0 33096 50358878 /usr/lib64/python2.7/lib-dynload/_collectionsmodule.so gmain 1207 1719 root mem REG 253,0 106075056 16781164 /usr/lib/locale/locale-archive gmain 1207 1719 root mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so gmain 1207 1719 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so gmain 1207 1719 root mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so gmain 1207 1719 root mem REG 253,0 14496 503085 /usr/lib64/libutil-2.17.so gmain 1207 1719 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so gmain 1207 1719 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so gmain 1207 1719 root mem REG 253,0 1847496 9994 /usr/lib64/libpython2.7.so.1.0 gmain 1207 1719 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so gmain 1207 1719 root mem REG 253,0 185712 50359335 /usr/lib64/girepository-1.0/GLib-2.0.typelib gmain 1207 1719 root DEL REG 253,0 16777634 /tmp/ffiOEEtFw gmain 1207 1719 root 0r CHR 1,3 0t0 6485 /dev/null gmain 1207 1719 root 1u unix 0xffff96afb573bc00 0t0 21373 socket gmain 1207 1719 root 2u unix 0xffff96afb573bc00 0t0 21373 socket gmain 1207 1719 root 3w REG 253,0 23686 17522009 /var/log/tuned/tuned.log gmain 1207 1719 root 4u netlink 0t0 21954 KOBJECT_UEVENT gmain 1207 1719 root 5r CHR 1,9 0t0 6490 /dev/urandom gmain 1207 1719 root 6u unix 0xffff96af325f9c00 0t0 23046 socket gmain 1207 1719 root 7u a_inode 0,10 0 6481 [eventfd] gmain 1207 1719 root 8u REG 253,0 4096 16777634 /tmp/ffiOEEtFw (deleted) gmain 1207 1719 root 9u a_inode 0,10 0 6481 [eventfd] gmain 1207 1719 root 10w CHR 10,61 0t0 8659 /dev/cpu_dma_latency gmain 1207 1719 root 11r FIFO 0,9 0t0 23069 pipe gmain 1207 1719 root 12w FIFO 0,9 0t0 23069 pipe gmain 1207 1719 root 13u a_inode 0,10 0 6481 [eventpoll] tuned 1207 1720 root cwd DIR 253,0 224 64 / tuned 1207 1720 root rtd DIR 253,0 224 64 / tuned 1207 1720 root txt REG 253,0 7216 50359089 /usr/bin/python2.7 tuned 1207 1720 root mem REG 253,0 91024 33744 /usr/lib64/libudev.so.1.6.2 tuned 1207 1720 root mem REG 253,0 156960 50359917 /usr/lib64/python2.7/lib-dynload/_io.so tuned 1207 1720 root mem REG 253,0 127000 50359909 /usr/lib64/python2.7/lib-dynload/_ctypes.so tuned 1207 1720 root mem REG 253,0 86984 50338611 /usr/lib64/python2.7/lib-dynload/datetime.so tuned 1207 1720 root mem REG 253,0 217144 32802 /usr/lib64/libgirepository-1.0.so.1.0.0 tuned 1207 1720 root mem REG 253,0 6952 10074 /usr/lib64/libgthread-2.0.so.0.5600.1 tuned 1207 1720 root mem REG 253,0 331480 17071684 /usr/lib64/python2.7/site-packages/gi/_gi.so tuned 1207 1720 root mem REG 253,0 20064 8146 /usr/lib64/libuuid.so.1.3.0 tuned 1207 1720 root mem REG 253,0 265600 8147 /usr/lib64/libblkid.so.1.1.0 tuned 1207 1720 root mem REG 253,0 277808 8164 /usr/lib64/libmount.so.1.1.0 tuned 1207 1720 root mem REG 253,0 15640 9972 /usr/lib64/libgmodule-2.0.so.0.5600.1 tuned 1207 1720 root mem REG 253,0 32304 9828 /usr/lib64/libffi.so.6.0.1 tuned 1207 1720 root mem REG 253,0 1722920 9963 /usr/lib64/libgio-2.0.so.0.5600.1 tuned 1207 1720 root mem REG 253,0 1156656 9967 /usr/lib64/libglib-2.0.so.0.5600.1 tuned 1207 1720 root mem REG 253,0 339112 10068 /usr/lib64/libgobject-2.0.so.0.5600.1 tuned 1207 1720 root mem REG 253,0 168312 102248 /usr/lib64/libdbus-glib-1.so.2.2.2 tuned 1207 1720 root mem REG 253,0 11976 102254 /usr/lib64/python2.7/site-packages/_dbus_glib_bindings.so tuned 1207 1720 root mem REG 253,0 173320 10025 /usr/lib64/libexpat.so.1.6.0 tuned 1207 1720 root mem REG 253,0 54544 50358894 /usr/lib64/python2.7/lib-dynload/pyexpat.so tuned 1207 1720 root mem REG 253,0 68192 9982 /usr/lib64/libbz2.so.1.0.6 tuned 1207 1720 root mem REG 253,0 100024 503087 /usr/lib64/libelf-0.176.so tuned 1207 1720 root mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 tuned 1207 1720 root mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 tuned 1207 1720 root mem REG 253,0 338704 33747 /usr/lib64/libdw-0.176.so tuned 1207 1720 root mem REG 253,0 19384 10000 /usr/lib64/libgpg-error.so.0.10.0 tuned 1207 1720 root mem REG 253,0 535064 10016 /usr/lib64/libgcrypt.so.11.8.2 tuned 1207 1720 root mem REG 253,0 85968 10471 /usr/lib64/liblz4.so.1.7.5 tuned 1207 1720 root mem REG 253,0 157424 9974 /usr/lib64/liblzma.so.5.2.2 tuned 1207 1720 root mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so tuned 1207 1720 root mem REG 253,0 20048 8119 /usr/lib64/libcap.so.2.22 tuned 1207 1720 root mem REG 253,0 203688 33742 /usr/lib64/libsystemd.so.0.6.0 tuned 1207 1720 root mem REG 253,0 333384 33781 /usr/lib64/libdbus-1.so.3.14.14 tuned 1207 1720 root mem REG 253,0 166248 102253 /usr/lib64/python2.7/site-packages/_dbus_bindings.so tuned 1207 1720 root mem REG 253,0 19264 50338618 /usr/lib64/python2.7/lib-dynload/fcntlmodule.so tuned 1207 1720 root mem REG 253,0 29264 50358903 /usr/lib64/python2.7/lib-dynload/selectmodule.so tuned 1207 1720 root mem REG 253,0 12408 50338621 /usr/lib64/python2.7/lib-dynload/grpmodule.so tuned 1207 1720 root mem REG 253,0 16432 50359923 /usr/lib64/python2.7/lib-dynload/_randommodule.so tuned 1207 1720 root mem REG 253,0 22880 50359914 /usr/lib64/python2.7/lib-dynload/_hashlib.so tuned 1207 1720 root mem REG 253,0 25768 50338601 /usr/lib64/python2.7/lib-dynload/binascii.so tuned 1207 1720 root mem REG 253,0 37384 50358881 /usr/lib64/python2.7/lib-dynload/math.so tuned 1207 1720 root mem REG 253,0 85192 50338603 /usr/lib64/python2.7/lib-dynload/cPickle.so tuned 1207 1720 root mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 tuned 1207 1720 root mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 tuned 1207 1720 root mem REG 253,0 105824 503073 /usr/lib64/libresolv-2.17.so tuned 1207 1720 root mem REG 253,0 15688 9878 /usr/lib64/libkeyutils.so.1.5 tuned 1207 1720 root mem REG 253,0 67104 9952 /usr/lib64/libkrb5support.so.0.1 tuned 1207 1720 root mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 tuned 1207 1720 root mem REG 253,0 210784 9845 /usr/lib64/libk5crypto.so.3.1 tuned 1207 1720 root mem REG 253,0 15920 7825 /usr/lib64/libcom_err.so.2.1 tuned 1207 1720 root mem REG 253,0 967784 9948 /usr/lib64/libkrb5.so.3.3 tuned 1207 1720 root mem REG 253,0 320784 8155 /usr/lib64/libgssapi_krb5.so.2.2 tuned 1207 1720 root mem REG 253,0 2521144 8157 /usr/lib64/libcrypto.so.1.0.2k tuned 1207 1720 root mem REG 253,0 470376 9842 /usr/lib64/libssl.so.1.0.2k tuned 1207 1720 root mem REG 253,0 95120 50338580 /usr/lib64/python2.7/lib-dynload/_ssl.so tuned 1207 1720 root mem REG 253,0 83968 50359924 /usr/lib64/python2.7/lib-dynload/_socketmodule.so tuned 1207 1720 root mem REG 253,0 23992 50338604 /usr/lib64/python2.7/lib-dynload/cStringIO.so tuned 1207 1720 root mem REG 253,0 25064 50742922 /usr/lib64/python2.7/lib-dynload/timemodule.so tuned 1207 1720 root mem REG 253,0 39024 50338821 /usr/lib64/python2.7/lib-dynload/_struct.so tuned 1207 1720 root mem REG 253,0 21344 50359919 /usr/lib64/python2.7/lib-dynload/_localemodule.so tuned 1207 1720 root mem REG 253,0 17056 50359913 /usr/lib64/python2.7/lib-dynload/_functoolsmodule.so tuned 1207 1720 root mem REG 253,0 28736 50742918 /usr/lib64/python2.7/lib-dynload/stropmodule.so tuned 1207 1720 root mem REG 253,0 22920 50359915 /usr/lib64/python2.7/lib-dynload/_heapq.so tuned 1207 1720 root mem REG 253,0 62096 50338582 /usr/lib64/python2.7/lib-dynload/itertoolsmodule.so tuned 1207 1720 root mem REG 253,0 47672 50742588 /usr/lib64/python2.7/lib-dynload/operator.so tuned 1207 1720 root mem REG 253,0 33096 50358878 /usr/lib64/python2.7/lib-dynload/_collectionsmodule.so tuned 1207 1720 root mem REG 253,0 106075056 16781164 /usr/lib/locale/locale-archive tuned 1207 1720 root mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so tuned 1207 1720 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so tuned 1207 1720 root mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so tuned 1207 1720 root mem REG 253,0 14496 503085 /usr/lib64/libutil-2.17.so tuned 1207 1720 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so tuned 1207 1720 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so tuned 1207 1720 root mem REG 253,0 1847496 9994 /usr/lib64/libpython2.7.so.1.0 tuned 1207 1720 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so tuned 1207 1720 root mem REG 253,0 185712 50359335 /usr/lib64/girepository-1.0/GLib-2.0.typelib tuned 1207 1720 root DEL REG 253,0 16777634 /tmp/ffiOEEtFw tuned 1207 1720 root 0r CHR 1,3 0t0 6485 /dev/null tuned 1207 1720 root 1u unix 0xffff96afb573bc00 0t0 21373 socket tuned 1207 1720 root 2u unix 0xffff96afb573bc00 0t0 21373 socket tuned 1207 1720 root 3w REG 253,0 23686 17522009 /var/log/tuned/tuned.log tuned 1207 1720 root 4u netlink 0t0 21954 KOBJECT_UEVENT tuned 1207 1720 root 5r CHR 1,9 0t0 6490 /dev/urandom tuned 1207 1720 root 6u unix 0xffff96af325f9c00 0t0 23046 socket tuned 1207 1720 root 7u a_inode 0,10 0 6481 [eventfd] tuned 1207 1720 root 8u REG 253,0 4096 16777634 /tmp/ffiOEEtFw (deleted) tuned 1207 1720 root 9u a_inode 0,10 0 6481 [eventfd] tuned 1207 1720 root 10w CHR 10,61 0t0 8659 /dev/cpu_dma_latency tuned 1207 1720 root 11r FIFO 0,9 0t0 23069 pipe tuned 1207 1720 root 12w FIFO 0,9 0t0 23069 pipe tuned 1207 1720 root 13u a_inode 0,10 0 6481 [eventpoll] tuned 1207 1725 root cwd DIR 253,0 224 64 / tuned 1207 1725 root rtd DIR 253,0 224 64 / tuned 1207 1725 root txt REG 253,0 7216 50359089 /usr/bin/python2.7 tuned 1207 1725 root mem REG 253,0 91024 33744 /usr/lib64/libudev.so.1.6.2 tuned 1207 1725 root mem REG 253,0 156960 50359917 /usr/lib64/python2.7/lib-dynload/_io.so tuned 1207 1725 root mem REG 253,0 127000 50359909 /usr/lib64/python2.7/lib-dynload/_ctypes.so tuned 1207 1725 root mem REG 253,0 86984 50338611 /usr/lib64/python2.7/lib-dynload/datetime.so tuned 1207 1725 root mem REG 253,0 217144 32802 /usr/lib64/libgirepository-1.0.so.1.0.0 tuned 1207 1725 root mem REG 253,0 6952 10074 /usr/lib64/libgthread-2.0.so.0.5600.1 tuned 1207 1725 root mem REG 253,0 331480 17071684 /usr/lib64/python2.7/site-packages/gi/_gi.so tuned 1207 1725 root mem REG 253,0 20064 8146 /usr/lib64/libuuid.so.1.3.0 tuned 1207 1725 root mem REG 253,0 265600 8147 /usr/lib64/libblkid.so.1.1.0 tuned 1207 1725 root mem REG 253,0 277808 8164 /usr/lib64/libmount.so.1.1.0 tuned 1207 1725 root mem REG 253,0 15640 9972 /usr/lib64/libgmodule-2.0.so.0.5600.1 tuned 1207 1725 root mem REG 253,0 32304 9828 /usr/lib64/libffi.so.6.0.1 tuned 1207 1725 root mem REG 253,0 1722920 9963 /usr/lib64/libgio-2.0.so.0.5600.1 tuned 1207 1725 root mem REG 253,0 1156656 9967 /usr/lib64/libglib-2.0.so.0.5600.1 tuned 1207 1725 root mem REG 253,0 339112 10068 /usr/lib64/libgobject-2.0.so.0.5600.1 tuned 1207 1725 root mem REG 253,0 168312 102248 /usr/lib64/libdbus-glib-1.so.2.2.2 tuned 1207 1725 root mem REG 253,0 11976 102254 /usr/lib64/python2.7/site-packages/_dbus_glib_bindings.so tuned 1207 1725 root mem REG 253,0 173320 10025 /usr/lib64/libexpat.so.1.6.0 tuned 1207 1725 root mem REG 253,0 54544 50358894 /usr/lib64/python2.7/lib-dynload/pyexpat.so tuned 1207 1725 root mem REG 253,0 68192 9982 /usr/lib64/libbz2.so.1.0.6 tuned 1207 1725 root mem REG 253,0 100024 503087 /usr/lib64/libelf-0.176.so tuned 1207 1725 root mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 tuned 1207 1725 root mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 tuned 1207 1725 root mem REG 253,0 338704 33747 /usr/lib64/libdw-0.176.so tuned 1207 1725 root mem REG 253,0 19384 10000 /usr/lib64/libgpg-error.so.0.10.0 tuned 1207 1725 root mem REG 253,0 535064 10016 /usr/lib64/libgcrypt.so.11.8.2 tuned 1207 1725 root mem REG 253,0 85968 10471 /usr/lib64/liblz4.so.1.7.5 tuned 1207 1725 root mem REG 253,0 157424 9974 /usr/lib64/liblzma.so.5.2.2 tuned 1207 1725 root mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so tuned 1207 1725 root mem REG 253,0 20048 8119 /usr/lib64/libcap.so.2.22 tuned 1207 1725 root mem REG 253,0 203688 33742 /usr/lib64/libsystemd.so.0.6.0 tuned 1207 1725 root mem REG 253,0 333384 33781 /usr/lib64/libdbus-1.so.3.14.14 tuned 1207 1725 root mem REG 253,0 166248 102253 /usr/lib64/python2.7/site-packages/_dbus_bindings.so tuned 1207 1725 root mem REG 253,0 19264 50338618 /usr/lib64/python2.7/lib-dynload/fcntlmodule.so tuned 1207 1725 root mem REG 253,0 29264 50358903 /usr/lib64/python2.7/lib-dynload/selectmodule.so tuned 1207 1725 root mem REG 253,0 12408 50338621 /usr/lib64/python2.7/lib-dynload/grpmodule.so tuned 1207 1725 root mem REG 253,0 16432 50359923 /usr/lib64/python2.7/lib-dynload/_randommodule.so tuned 1207 1725 root mem REG 253,0 22880 50359914 /usr/lib64/python2.7/lib-dynload/_hashlib.so tuned 1207 1725 root mem REG 253,0 25768 50338601 /usr/lib64/python2.7/lib-dynload/binascii.so tuned 1207 1725 root mem REG 253,0 37384 50358881 /usr/lib64/python2.7/lib-dynload/math.so tuned 1207 1725 root mem REG 253,0 85192 50338603 /usr/lib64/python2.7/lib-dynload/cPickle.so tuned 1207 1725 root mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 tuned 1207 1725 root mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 tuned 1207 1725 root mem REG 253,0 105824 503073 /usr/lib64/libresolv-2.17.so tuned 1207 1725 root mem REG 253,0 15688 9878 /usr/lib64/libkeyutils.so.1.5 tuned 1207 1725 root mem REG 253,0 67104 9952 /usr/lib64/libkrb5support.so.0.1 tuned 1207 1725 root mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 tuned 1207 1725 root mem REG 253,0 210784 9845 /usr/lib64/libk5crypto.so.3.1 tuned 1207 1725 root mem REG 253,0 15920 7825 /usr/lib64/libcom_err.so.2.1 tuned 1207 1725 root mem REG 253,0 967784 9948 /usr/lib64/libkrb5.so.3.3 tuned 1207 1725 root mem REG 253,0 320784 8155 /usr/lib64/libgssapi_krb5.so.2.2 tuned 1207 1725 root mem REG 253,0 2521144 8157 /usr/lib64/libcrypto.so.1.0.2k tuned 1207 1725 root mem REG 253,0 470376 9842 /usr/lib64/libssl.so.1.0.2k tuned 1207 1725 root mem REG 253,0 95120 50338580 /usr/lib64/python2.7/lib-dynload/_ssl.so tuned 1207 1725 root mem REG 253,0 83968 50359924 /usr/lib64/python2.7/lib-dynload/_socketmodule.so tuned 1207 1725 root mem REG 253,0 23992 50338604 /usr/lib64/python2.7/lib-dynload/cStringIO.so tuned 1207 1725 root mem REG 253,0 25064 50742922 /usr/lib64/python2.7/lib-dynload/timemodule.so tuned 1207 1725 root mem REG 253,0 39024 50338821 /usr/lib64/python2.7/lib-dynload/_struct.so tuned 1207 1725 root mem REG 253,0 21344 50359919 /usr/lib64/python2.7/lib-dynload/_localemodule.so tuned 1207 1725 root mem REG 253,0 17056 50359913 /usr/lib64/python2.7/lib-dynload/_functoolsmodule.so tuned 1207 1725 root mem REG 253,0 28736 50742918 /usr/lib64/python2.7/lib-dynload/stropmodule.so tuned 1207 1725 root mem REG 253,0 22920 50359915 /usr/lib64/python2.7/lib-dynload/_heapq.so tuned 1207 1725 root mem REG 253,0 62096 50338582 /usr/lib64/python2.7/lib-dynload/itertoolsmodule.so tuned 1207 1725 root mem REG 253,0 47672 50742588 /usr/lib64/python2.7/lib-dynload/operator.so tuned 1207 1725 root mem REG 253,0 33096 50358878 /usr/lib64/python2.7/lib-dynload/_collectionsmodule.so tuned 1207 1725 root mem REG 253,0 106075056 16781164 /usr/lib/locale/locale-archive tuned 1207 1725 root mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so tuned 1207 1725 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so tuned 1207 1725 root mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so tuned 1207 1725 root mem REG 253,0 14496 503085 /usr/lib64/libutil-2.17.so tuned 1207 1725 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so tuned 1207 1725 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so tuned 1207 1725 root mem REG 253,0 1847496 9994 /usr/lib64/libpython2.7.so.1.0 tuned 1207 1725 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so tuned 1207 1725 root mem REG 253,0 185712 50359335 /usr/lib64/girepository-1.0/GLib-2.0.typelib tuned 1207 1725 root DEL REG 253,0 16777634 /tmp/ffiOEEtFw tuned 1207 1725 root 0r CHR 1,3 0t0 6485 /dev/null tuned 1207 1725 root 1u unix 0xffff96afb573bc00 0t0 21373 socket tuned 1207 1725 root 2u unix 0xffff96afb573bc00 0t0 21373 socket tuned 1207 1725 root 3w REG 253,0 23686 17522009 /var/log/tuned/tuned.log tuned 1207 1725 root 4u netlink 0t0 21954 KOBJECT_UEVENT tuned 1207 1725 root 5r CHR 1,9 0t0 6490 /dev/urandom tuned 1207 1725 root 6u unix 0xffff96af325f9c00 0t0 23046 socket tuned 1207 1725 root 7u a_inode 0,10 0 6481 [eventfd] tuned 1207 1725 root 8u REG 253,0 4096 16777634 /tmp/ffiOEEtFw (deleted) tuned 1207 1725 root 9u a_inode 0,10 0 6481 [eventfd] tuned 1207 1725 root 10w CHR 10,61 0t0 8659 /dev/cpu_dma_latency tuned 1207 1725 root 11r FIFO 0,9 0t0 23069 pipe tuned 1207 1725 root 12w FIFO 0,9 0t0 23069 pipe tuned 1207 1725 root 13u a_inode 0,10 0 6481 [eventpoll] tuned 1207 1727 root cwd DIR 253,0 224 64 / tuned 1207 1727 root rtd DIR 253,0 224 64 / tuned 1207 1727 root txt REG 253,0 7216 50359089 /usr/bin/python2.7 tuned 1207 1727 root mem REG 253,0 91024 33744 /usr/lib64/libudev.so.1.6.2 tuned 1207 1727 root mem REG 253,0 156960 50359917 /usr/lib64/python2.7/lib-dynload/_io.so tuned 1207 1727 root mem REG 253,0 127000 50359909 /usr/lib64/python2.7/lib-dynload/_ctypes.so tuned 1207 1727 root mem REG 253,0 86984 50338611 /usr/lib64/python2.7/lib-dynload/datetime.so tuned 1207 1727 root mem REG 253,0 217144 32802 /usr/lib64/libgirepository-1.0.so.1.0.0 tuned 1207 1727 root mem REG 253,0 6952 10074 /usr/lib64/libgthread-2.0.so.0.5600.1 tuned 1207 1727 root mem REG 253,0 331480 17071684 /usr/lib64/python2.7/site-packages/gi/_gi.so tuned 1207 1727 root mem REG 253,0 20064 8146 /usr/lib64/libuuid.so.1.3.0 tuned 1207 1727 root mem REG 253,0 265600 8147 /usr/lib64/libblkid.so.1.1.0 tuned 1207 1727 root mem REG 253,0 277808 8164 /usr/lib64/libmount.so.1.1.0 tuned 1207 1727 root mem REG 253,0 15640 9972 /usr/lib64/libgmodule-2.0.so.0.5600.1 tuned 1207 1727 root mem REG 253,0 32304 9828 /usr/lib64/libffi.so.6.0.1 tuned 1207 1727 root mem REG 253,0 1722920 9963 /usr/lib64/libgio-2.0.so.0.5600.1 tuned 1207 1727 root mem REG 253,0 1156656 9967 /usr/lib64/libglib-2.0.so.0.5600.1 tuned 1207 1727 root mem REG 253,0 339112 10068 /usr/lib64/libgobject-2.0.so.0.5600.1 tuned 1207 1727 root mem REG 253,0 168312 102248 /usr/lib64/libdbus-glib-1.so.2.2.2 tuned 1207 1727 root mem REG 253,0 11976 102254 /usr/lib64/python2.7/site-packages/_dbus_glib_bindings.so tuned 1207 1727 root mem REG 253,0 173320 10025 /usr/lib64/libexpat.so.1.6.0 tuned 1207 1727 root mem REG 253,0 54544 50358894 /usr/lib64/python2.7/lib-dynload/pyexpat.so tuned 1207 1727 root mem REG 253,0 68192 9982 /usr/lib64/libbz2.so.1.0.6 tuned 1207 1727 root mem REG 253,0 100024 503087 /usr/lib64/libelf-0.176.so tuned 1207 1727 root mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 tuned 1207 1727 root mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 tuned 1207 1727 root mem REG 253,0 338704 33747 /usr/lib64/libdw-0.176.so tuned 1207 1727 root mem REG 253,0 19384 10000 /usr/lib64/libgpg-error.so.0.10.0 tuned 1207 1727 root mem REG 253,0 535064 10016 /usr/lib64/libgcrypt.so.11.8.2 tuned 1207 1727 root mem REG 253,0 85968 10471 /usr/lib64/liblz4.so.1.7.5 tuned 1207 1727 root mem REG 253,0 157424 9974 /usr/lib64/liblzma.so.5.2.2 tuned 1207 1727 root mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so tuned 1207 1727 root mem REG 253,0 20048 8119 /usr/lib64/libcap.so.2.22 tuned 1207 1727 root mem REG 253,0 203688 33742 /usr/lib64/libsystemd.so.0.6.0 tuned 1207 1727 root mem REG 253,0 333384 33781 /usr/lib64/libdbus-1.so.3.14.14 tuned 1207 1727 root mem REG 253,0 166248 102253 /usr/lib64/python2.7/site-packages/_dbus_bindings.so tuned 1207 1727 root mem REG 253,0 19264 50338618 /usr/lib64/python2.7/lib-dynload/fcntlmodule.so tuned 1207 1727 root mem REG 253,0 29264 50358903 /usr/lib64/python2.7/lib-dynload/selectmodule.so tuned 1207 1727 root mem REG 253,0 12408 50338621 /usr/lib64/python2.7/lib-dynload/grpmodule.so tuned 1207 1727 root mem REG 253,0 16432 50359923 /usr/lib64/python2.7/lib-dynload/_randommodule.so tuned 1207 1727 root mem REG 253,0 22880 50359914 /usr/lib64/python2.7/lib-dynload/_hashlib.so tuned 1207 1727 root mem REG 253,0 25768 50338601 /usr/lib64/python2.7/lib-dynload/binascii.so tuned 1207 1727 root mem REG 253,0 37384 50358881 /usr/lib64/python2.7/lib-dynload/math.so tuned 1207 1727 root mem REG 253,0 85192 50338603 /usr/lib64/python2.7/lib-dynload/cPickle.so tuned 1207 1727 root mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 tuned 1207 1727 root mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 tuned 1207 1727 root mem REG 253,0 105824 503073 /usr/lib64/libresolv-2.17.so tuned 1207 1727 root mem REG 253,0 15688 9878 /usr/lib64/libkeyutils.so.1.5 tuned 1207 1727 root mem REG 253,0 67104 9952 /usr/lib64/libkrb5support.so.0.1 tuned 1207 1727 root mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 tuned 1207 1727 root mem REG 253,0 210784 9845 /usr/lib64/libk5crypto.so.3.1 tuned 1207 1727 root mem REG 253,0 15920 7825 /usr/lib64/libcom_err.so.2.1 tuned 1207 1727 root mem REG 253,0 967784 9948 /usr/lib64/libkrb5.so.3.3 tuned 1207 1727 root mem REG 253,0 320784 8155 /usr/lib64/libgssapi_krb5.so.2.2 tuned 1207 1727 root mem REG 253,0 2521144 8157 /usr/lib64/libcrypto.so.1.0.2k tuned 1207 1727 root mem REG 253,0 470376 9842 /usr/lib64/libssl.so.1.0.2k tuned 1207 1727 root mem REG 253,0 95120 50338580 /usr/lib64/python2.7/lib-dynload/_ssl.so tuned 1207 1727 root mem REG 253,0 83968 50359924 /usr/lib64/python2.7/lib-dynload/_socketmodule.so tuned 1207 1727 root mem REG 253,0 23992 50338604 /usr/lib64/python2.7/lib-dynload/cStringIO.so tuned 1207 1727 root mem REG 253,0 25064 50742922 /usr/lib64/python2.7/lib-dynload/timemodule.so tuned 1207 1727 root mem REG 253,0 39024 50338821 /usr/lib64/python2.7/lib-dynload/_struct.so tuned 1207 1727 root mem REG 253,0 21344 50359919 /usr/lib64/python2.7/lib-dynload/_localemodule.so tuned 1207 1727 root mem REG 253,0 17056 50359913 /usr/lib64/python2.7/lib-dynload/_functoolsmodule.so tuned 1207 1727 root mem REG 253,0 28736 50742918 /usr/lib64/python2.7/lib-dynload/stropmodule.so tuned 1207 1727 root mem REG 253,0 22920 50359915 /usr/lib64/python2.7/lib-dynload/_heapq.so tuned 1207 1727 root mem REG 253,0 62096 50338582 /usr/lib64/python2.7/lib-dynload/itertoolsmodule.so tuned 1207 1727 root mem REG 253,0 47672 50742588 /usr/lib64/python2.7/lib-dynload/operator.so tuned 1207 1727 root mem REG 253,0 33096 50358878 /usr/lib64/python2.7/lib-dynload/_collectionsmodule.so tuned 1207 1727 root mem REG 253,0 106075056 16781164 /usr/lib/locale/locale-archive tuned 1207 1727 root mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so tuned 1207 1727 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so tuned 1207 1727 root mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so tuned 1207 1727 root mem REG 253,0 14496 503085 /usr/lib64/libutil-2.17.so tuned 1207 1727 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so tuned 1207 1727 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so tuned 1207 1727 root mem REG 253,0 1847496 9994 /usr/lib64/libpython2.7.so.1.0 tuned 1207 1727 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so tuned 1207 1727 root mem REG 253,0 185712 50359335 /usr/lib64/girepository-1.0/GLib-2.0.typelib tuned 1207 1727 root DEL REG 253,0 16777634 /tmp/ffiOEEtFw tuned 1207 1727 root 0r CHR 1,3 0t0 6485 /dev/null tuned 1207 1727 root 1u unix 0xffff96afb573bc00 0t0 21373 socket tuned 1207 1727 root 2u unix 0xffff96afb573bc00 0t0 21373 socket tuned 1207 1727 root 3w REG 253,0 23686 17522009 /var/log/tuned/tuned.log tuned 1207 1727 root 4u netlink 0t0 21954 KOBJECT_UEVENT tuned 1207 1727 root 5r CHR 1,9 0t0 6490 /dev/urandom tuned 1207 1727 root 6u unix 0xffff96af325f9c00 0t0 23046 socket tuned 1207 1727 root 7u a_inode 0,10 0 6481 [eventfd] tuned 1207 1727 root 8u REG 253,0 4096 16777634 /tmp/ffiOEEtFw (deleted) tuned 1207 1727 root 9u a_inode 0,10 0 6481 [eventfd] tuned 1207 1727 root 10w CHR 10,61 0t0 8659 /dev/cpu_dma_latency tuned 1207 1727 root 11r FIFO 0,9 0t0 23069 pipe tuned 1207 1727 root 12w FIFO 0,9 0t0 23069 pipe tuned 1207 1727 root 13u a_inode 0,10 0 6481 [eventpoll] rsyslogd 1209 root cwd DIR 253,0 224 64 / rsyslogd 1209 root rtd DIR 253,0 224 64 / rsyslogd 1209 root txt REG 253,0 663904 236336 /usr/sbin/rsyslogd rsyslogd 1209 root mem REG 0,20 8388608 9246 /run/log/journal/c1aceec07c3141c5893d84415874e296/system.journal rsyslogd 1209 root mem REG 253,0 68192 9982 /usr/lib64/libbz2.so.1.0.6 rsyslogd 1209 root mem REG 253,0 100024 503087 /usr/lib64/libelf-0.176.so rsyslogd 1209 root mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 rsyslogd 1209 root mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 rsyslogd 1209 root mem REG 253,0 338704 33747 /usr/lib64/libdw-0.176.so rsyslogd 1209 root mem REG 253,0 105824 503073 /usr/lib64/libresolv-2.17.so rsyslogd 1209 root mem REG 253,0 19384 10000 /usr/lib64/libgpg-error.so.0.10.0 rsyslogd 1209 root mem REG 253,0 535064 10016 /usr/lib64/libgcrypt.so.11.8.2 rsyslogd 1209 root mem REG 253,0 85968 10471 /usr/lib64/liblz4.so.1.7.5 rsyslogd 1209 root mem REG 253,0 157424 9974 /usr/lib64/liblzma.so.5.2.2 rsyslogd 1209 root mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 rsyslogd 1209 root mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so rsyslogd 1209 root mem REG 253,0 20048 8119 /usr/lib64/libcap.so.2.22 rsyslogd 1209 root mem REG 253,0 203688 33742 /usr/lib64/libsystemd.so.0.6.0 rsyslogd 1209 root mem REG 253,0 25024 50686701 /usr/lib64/rsyslog/imjournal.so rsyslogd 1209 root mem REG 253,0 38048 50686710 /usr/lib64/rsyslog/imuxsock.so rsyslogd 1209 root mem REG 253,0 24432 50686711 /usr/lib64/rsyslog/lmnet.so rsyslogd 1209 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so rsyslogd 1209 root mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 rsyslogd 1209 root mem REG 253,0 20064 8146 /usr/lib64/libuuid.so.1.3.0 rsyslogd 1209 root mem REG 253,0 40896 33450 /usr/lib64/libfastjson.so.4.0.0 rsyslogd 1209 root mem REG 253,0 15424 33470 /usr/lib64/libestr.so.0.0.0 rsyslogd 1209 root mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so rsyslogd 1209 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so rsyslogd 1209 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so rsyslogd 1209 root mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 rsyslogd 1209 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so rsyslogd 1209 root 0r CHR 1,3 0t0 6485 /dev/null rsyslogd 1209 root 1w CHR 1,3 0t0 6485 /dev/null rsyslogd 1209 root 2w CHR 1,3 0t0 6485 /dev/null rsyslogd 1209 root 3r a_inode 0,10 0 6481 inotify rsyslogd 1209 root 4u unix 0xffff96af34d2d400 0t0 21563 socket rsyslogd 1209 root 5r REG 0,20 8388608 9246 /run/log/journal/c1aceec07c3141c5893d84415874e296/system.journal rsyslogd 1209 root 6w REG 253,0 914211 33614498 /var/log/messages rsyslogd 1209 root 7w REG 253,0 18112 33707325 /var/log/cron rsyslogd 1209 root 8w REG 253,0 34573 33614499 /var/log/secure rsyslogd 1209 root 9w REG 253,0 594 33614497 /var/log/maillog in:imjour 1209 1212 root cwd DIR 253,0 224 64 / in:imjour 1209 1212 root rtd DIR 253,0 224 64 / in:imjour 1209 1212 root txt REG 253,0 663904 236336 /usr/sbin/rsyslogd in:imjour 1209 1212 root mem REG 0,20 8388608 9246 /run/log/journal/c1aceec07c3141c5893d84415874e296/system.journal in:imjour 1209 1212 root mem REG 253,0 68192 9982 /usr/lib64/libbz2.so.1.0.6 in:imjour 1209 1212 root mem REG 253,0 100024 503087 /usr/lib64/libelf-0.176.so in:imjour 1209 1212 root mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 in:imjour 1209 1212 root mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 in:imjour 1209 1212 root mem REG 253,0 338704 33747 /usr/lib64/libdw-0.176.so in:imjour 1209 1212 root mem REG 253,0 105824 503073 /usr/lib64/libresolv-2.17.so in:imjour 1209 1212 root mem REG 253,0 19384 10000 /usr/lib64/libgpg-error.so.0.10.0 in:imjour 1209 1212 root mem REG 253,0 535064 10016 /usr/lib64/libgcrypt.so.11.8.2 in:imjour 1209 1212 root mem REG 253,0 85968 10471 /usr/lib64/liblz4.so.1.7.5 in:imjour 1209 1212 root mem REG 253,0 157424 9974 /usr/lib64/liblzma.so.5.2.2 in:imjour 1209 1212 root mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 in:imjour 1209 1212 root mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so in:imjour 1209 1212 root mem REG 253,0 20048 8119 /usr/lib64/libcap.so.2.22 in:imjour 1209 1212 root mem REG 253,0 203688 33742 /usr/lib64/libsystemd.so.0.6.0 in:imjour 1209 1212 root mem REG 253,0 25024 50686701 /usr/lib64/rsyslog/imjournal.so in:imjour 1209 1212 root mem REG 253,0 38048 50686710 /usr/lib64/rsyslog/imuxsock.so in:imjour 1209 1212 root mem REG 253,0 24432 50686711 /usr/lib64/rsyslog/lmnet.so in:imjour 1209 1212 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so in:imjour 1209 1212 root mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 in:imjour 1209 1212 root mem REG 253,0 20064 8146 /usr/lib64/libuuid.so.1.3.0 in:imjour 1209 1212 root mem REG 253,0 40896 33450 /usr/lib64/libfastjson.so.4.0.0 in:imjour 1209 1212 root mem REG 253,0 15424 33470 /usr/lib64/libestr.so.0.0.0 in:imjour 1209 1212 root mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so in:imjour 1209 1212 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so in:imjour 1209 1212 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so in:imjour 1209 1212 root mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 in:imjour 1209 1212 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so in:imjour 1209 1212 root 0r CHR 1,3 0t0 6485 /dev/null in:imjour 1209 1212 root 1w CHR 1,3 0t0 6485 /dev/null in:imjour 1209 1212 root 2w CHR 1,3 0t0 6485 /dev/null in:imjour 1209 1212 root 3r a_inode 0,10 0 6481 inotify in:imjour 1209 1212 root 4u unix 0xffff96af34d2d400 0t0 21563 socket in:imjour 1209 1212 root 5r REG 0,20 8388608 9246 /run/log/journal/c1aceec07c3141c5893d84415874e296/system.journal in:imjour 1209 1212 root 6w REG 253,0 914211 33614498 /var/log/messages in:imjour 1209 1212 root 7w REG 253,0 18112 33707325 /var/log/cron in:imjour 1209 1212 root 8w REG 253,0 34573 33614499 /var/log/secure in:imjour 1209 1212 root 9w REG 253,0 594 33614497 /var/log/maillog rs:main 1209 1213 root cwd DIR 253,0 224 64 / rs:main 1209 1213 root rtd DIR 253,0 224 64 / rs:main 1209 1213 root txt REG 253,0 663904 236336 /usr/sbin/rsyslogd rs:main 1209 1213 root mem REG 0,20 8388608 9246 /run/log/journal/c1aceec07c3141c5893d84415874e296/system.journal rs:main 1209 1213 root mem REG 253,0 68192 9982 /usr/lib64/libbz2.so.1.0.6 rs:main 1209 1213 root mem REG 253,0 100024 503087 /usr/lib64/libelf-0.176.so rs:main 1209 1213 root mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 rs:main 1209 1213 root mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 rs:main 1209 1213 root mem REG 253,0 338704 33747 /usr/lib64/libdw-0.176.so rs:main 1209 1213 root mem REG 253,0 105824 503073 /usr/lib64/libresolv-2.17.so rs:main 1209 1213 root mem REG 253,0 19384 10000 /usr/lib64/libgpg-error.so.0.10.0 rs:main 1209 1213 root mem REG 253,0 535064 10016 /usr/lib64/libgcrypt.so.11.8.2 rs:main 1209 1213 root mem REG 253,0 85968 10471 /usr/lib64/liblz4.so.1.7.5 rs:main 1209 1213 root mem REG 253,0 157424 9974 /usr/lib64/liblzma.so.5.2.2 rs:main 1209 1213 root mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 rs:main 1209 1213 root mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so rs:main 1209 1213 root mem REG 253,0 20048 8119 /usr/lib64/libcap.so.2.22 rs:main 1209 1213 root mem REG 253,0 203688 33742 /usr/lib64/libsystemd.so.0.6.0 rs:main 1209 1213 root mem REG 253,0 25024 50686701 /usr/lib64/rsyslog/imjournal.so rs:main 1209 1213 root mem REG 253,0 38048 50686710 /usr/lib64/rsyslog/imuxsock.so rs:main 1209 1213 root mem REG 253,0 24432 50686711 /usr/lib64/rsyslog/lmnet.so rs:main 1209 1213 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so rs:main 1209 1213 root mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 rs:main 1209 1213 root mem REG 253,0 20064 8146 /usr/lib64/libuuid.so.1.3.0 rs:main 1209 1213 root mem REG 253,0 40896 33450 /usr/lib64/libfastjson.so.4.0.0 rs:main 1209 1213 root mem REG 253,0 15424 33470 /usr/lib64/libestr.so.0.0.0 rs:main 1209 1213 root mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so rs:main 1209 1213 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so rs:main 1209 1213 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so rs:main 1209 1213 root mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 rs:main 1209 1213 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so rs:main 1209 1213 root 0r CHR 1,3 0t0 6485 /dev/null rs:main 1209 1213 root 1w CHR 1,3 0t0 6485 /dev/null rs:main 1209 1213 root 2w CHR 1,3 0t0 6485 /dev/null rs:main 1209 1213 root 3r a_inode 0,10 0 6481 inotify rs:main 1209 1213 root 4u unix 0xffff96af34d2d400 0t0 21563 socket rs:main 1209 1213 root 5r REG 0,20 8388608 9246 /run/log/journal/c1aceec07c3141c5893d84415874e296/system.journal rs:main 1209 1213 root 6w REG 253,0 914211 33614498 /var/log/messages rs:main 1209 1213 root 7w REG 253,0 18112 33707325 /var/log/cron rs:main 1209 1213 root 8w REG 253,0 34573 33614499 /var/log/secure rs:main 1209 1213 root 9w REG 253,0 594 33614497 /var/log/maillog docker-co 1256 root cwd DIR 253,0 224 64 / docker-co 1256 root rtd DIR 253,0 224 64 / docker-co 1256 root txt REG 253,0 10806520 50705012 /usr/bin/docker-containerd-current docker-co 1256 root mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 docker-co 1256 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so docker-co 1256 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so docker-co 1256 root mem REG 253,0 2521144 8157 /usr/lib64/libcrypto.so.1.0.2k docker-co 1256 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so docker-co 1256 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so docker-co 1256 root 0r CHR 1,3 0t0 6485 /dev/null docker-co 1256 root 1u unix 0xffff96af33934c00 0t0 21302 socket docker-co 1256 root 2u unix 0xffff96af33934c00 0t0 21302 socket docker-co 1256 root 3u unix 0xffff96afb49b1400 0t0 21877 /var/run/docker/libcontainerd/docker-containerd.sock docker-co 1256 root 4u a_inode 0,10 0 6481 [eventpoll] docker-co 1256 root 5u a_inode 0,10 0 6481 [eventpoll] docker-co 1256 root 6w REG 0,20 0 21879 /run/docker/libcontainerd/containerd/events.log docker-co 1256 root 7u unix 0xffff96af325fd800 0t0 22241 /var/run/docker/libcontainerd/docker-containerd.sock docker-co 1256 1272 root cwd DIR 253,0 224 64 / docker-co 1256 1272 root rtd DIR 253,0 224 64 / docker-co 1256 1272 root txt REG 253,0 10806520 50705012 /usr/bin/docker-containerd-current docker-co 1256 1272 root mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 docker-co 1256 1272 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so docker-co 1256 1272 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so docker-co 1256 1272 root mem REG 253,0 2521144 8157 /usr/lib64/libcrypto.so.1.0.2k docker-co 1256 1272 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so docker-co 1256 1272 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so docker-co 1256 1272 root 0r CHR 1,3 0t0 6485 /dev/null docker-co 1256 1272 root 1u unix 0xffff96af33934c00 0t0 21302 socket docker-co 1256 1272 root 2u unix 0xffff96af33934c00 0t0 21302 socket docker-co 1256 1272 root 3u unix 0xffff96afb49b1400 0t0 21877 /var/run/docker/libcontainerd/docker-containerd.sock docker-co 1256 1272 root 4u a_inode 0,10 0 6481 [eventpoll] docker-co 1256 1272 root 5u a_inode 0,10 0 6481 [eventpoll] docker-co 1256 1272 root 6w REG 0,20 0 21879 /run/docker/libcontainerd/containerd/events.log docker-co 1256 1272 root 7u unix 0xffff96af325fd800 0t0 22241 /var/run/docker/libcontainerd/docker-containerd.sock docker-co 1256 1273 root cwd DIR 253,0 224 64 / docker-co 1256 1273 root rtd DIR 253,0 224 64 / docker-co 1256 1273 root txt REG 253,0 10806520 50705012 /usr/bin/docker-containerd-current docker-co 1256 1273 root mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 docker-co 1256 1273 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so docker-co 1256 1273 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so docker-co 1256 1273 root mem REG 253,0 2521144 8157 /usr/lib64/libcrypto.so.1.0.2k docker-co 1256 1273 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so docker-co 1256 1273 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so docker-co 1256 1273 root 0r CHR 1,3 0t0 6485 /dev/null docker-co 1256 1273 root 1u unix 0xffff96af33934c00 0t0 21302 socket docker-co 1256 1273 root 2u unix 0xffff96af33934c00 0t0 21302 socket docker-co 1256 1273 root 3u unix 0xffff96afb49b1400 0t0 21877 /var/run/docker/libcontainerd/docker-containerd.sock docker-co 1256 1273 root 4u a_inode 0,10 0 6481 [eventpoll] docker-co 1256 1273 root 5u a_inode 0,10 0 6481 [eventpoll] docker-co 1256 1273 root 6w REG 0,20 0 21879 /run/docker/libcontainerd/containerd/events.log docker-co 1256 1273 root 7u unix 0xffff96af325fd800 0t0 22241 /var/run/docker/libcontainerd/docker-containerd.sock docker-co 1256 1275 root cwd DIR 253,0 224 64 / docker-co 1256 1275 root rtd DIR 253,0 224 64 / docker-co 1256 1275 root txt REG 253,0 10806520 50705012 /usr/bin/docker-containerd-current docker-co 1256 1275 root mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 docker-co 1256 1275 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so docker-co 1256 1275 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so docker-co 1256 1275 root mem REG 253,0 2521144 8157 /usr/lib64/libcrypto.so.1.0.2k docker-co 1256 1275 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so docker-co 1256 1275 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so docker-co 1256 1275 root 0r CHR 1,3 0t0 6485 /dev/null docker-co 1256 1275 root 1u unix 0xffff96af33934c00 0t0 21302 socket docker-co 1256 1275 root 2u unix 0xffff96af33934c00 0t0 21302 socket docker-co 1256 1275 root 3u unix 0xffff96afb49b1400 0t0 21877 /var/run/docker/libcontainerd/docker-containerd.sock docker-co 1256 1275 root 4u a_inode 0,10 0 6481 [eventpoll] docker-co 1256 1275 root 5u a_inode 0,10 0 6481 [eventpoll] docker-co 1256 1275 root 6w REG 0,20 0 21879 /run/docker/libcontainerd/containerd/events.log docker-co 1256 1275 root 7u unix 0xffff96af325fd800 0t0 22241 /var/run/docker/libcontainerd/docker-containerd.sock docker-co 1256 1279 root cwd DIR 253,0 224 64 / docker-co 1256 1279 root rtd DIR 253,0 224 64 / docker-co 1256 1279 root txt REG 253,0 10806520 50705012 /usr/bin/docker-containerd-current docker-co 1256 1279 root mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 docker-co 1256 1279 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so docker-co 1256 1279 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so docker-co 1256 1279 root mem REG 253,0 2521144 8157 /usr/lib64/libcrypto.so.1.0.2k docker-co 1256 1279 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so docker-co 1256 1279 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so docker-co 1256 1279 root 0r CHR 1,3 0t0 6485 /dev/null docker-co 1256 1279 root 1u unix 0xffff96af33934c00 0t0 21302 socket docker-co 1256 1279 root 2u unix 0xffff96af33934c00 0t0 21302 socket docker-co 1256 1279 root 3u unix 0xffff96afb49b1400 0t0 21877 /var/run/docker/libcontainerd/docker-containerd.sock docker-co 1256 1279 root 4u a_inode 0,10 0 6481 [eventpoll] docker-co 1256 1279 root 5u a_inode 0,10 0 6481 [eventpoll] docker-co 1256 1279 root 6w REG 0,20 0 21879 /run/docker/libcontainerd/containerd/events.log docker-co 1256 1279 root 7u unix 0xffff96af325fd800 0t0 22241 /var/run/docker/libcontainerd/docker-containerd.sock docker-co 1256 1280 root cwd DIR 253,0 224 64 / docker-co 1256 1280 root rtd DIR 253,0 224 64 / docker-co 1256 1280 root txt REG 253,0 10806520 50705012 /usr/bin/docker-containerd-current docker-co 1256 1280 root mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 docker-co 1256 1280 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so docker-co 1256 1280 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so docker-co 1256 1280 root mem REG 253,0 2521144 8157 /usr/lib64/libcrypto.so.1.0.2k docker-co 1256 1280 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so docker-co 1256 1280 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so docker-co 1256 1280 root 0r CHR 1,3 0t0 6485 /dev/null docker-co 1256 1280 root 1u unix 0xffff96af33934c00 0t0 21302 socket docker-co 1256 1280 root 2u unix 0xffff96af33934c00 0t0 21302 socket docker-co 1256 1280 root 3u unix 0xffff96afb49b1400 0t0 21877 /var/run/docker/libcontainerd/docker-containerd.sock docker-co 1256 1280 root 4u a_inode 0,10 0 6481 [eventpoll] docker-co 1256 1280 root 5u a_inode 0,10 0 6481 [eventpoll] docker-co 1256 1280 root 6w REG 0,20 0 21879 /run/docker/libcontainerd/containerd/events.log docker-co 1256 1280 root 7u unix 0xffff96af325fd800 0t0 22241 /var/run/docker/libcontainerd/docker-containerd.sock docker-co 1256 1281 root cwd DIR 253,0 224 64 / docker-co 1256 1281 root rtd DIR 253,0 224 64 / docker-co 1256 1281 root txt REG 253,0 10806520 50705012 /usr/bin/docker-containerd-current docker-co 1256 1281 root mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 docker-co 1256 1281 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so docker-co 1256 1281 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so docker-co 1256 1281 root mem REG 253,0 2521144 8157 /usr/lib64/libcrypto.so.1.0.2k docker-co 1256 1281 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so docker-co 1256 1281 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so docker-co 1256 1281 root 0r CHR 1,3 0t0 6485 /dev/null docker-co 1256 1281 root 1u unix 0xffff96af33934c00 0t0 21302 socket docker-co 1256 1281 root 2u unix 0xffff96af33934c00 0t0 21302 socket docker-co 1256 1281 root 3u unix 0xffff96afb49b1400 0t0 21877 /var/run/docker/libcontainerd/docker-containerd.sock docker-co 1256 1281 root 4u a_inode 0,10 0 6481 [eventpoll] docker-co 1256 1281 root 5u a_inode 0,10 0 6481 [eventpoll] docker-co 1256 1281 root 6w REG 0,20 0 21879 /run/docker/libcontainerd/containerd/events.log docker-co 1256 1281 root 7u unix 0xffff96af325fd800 0t0 22241 /var/run/docker/libcontainerd/docker-containerd.sock docker-co 1256 1282 root cwd DIR 253,0 224 64 / docker-co 1256 1282 root rtd DIR 253,0 224 64 / docker-co 1256 1282 root txt REG 253,0 10806520 50705012 /usr/bin/docker-containerd-current docker-co 1256 1282 root mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 docker-co 1256 1282 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so docker-co 1256 1282 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so docker-co 1256 1282 root mem REG 253,0 2521144 8157 /usr/lib64/libcrypto.so.1.0.2k docker-co 1256 1282 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so docker-co 1256 1282 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so docker-co 1256 1282 root 0r CHR 1,3 0t0 6485 /dev/null docker-co 1256 1282 root 1u unix 0xffff96af33934c00 0t0 21302 socket docker-co 1256 1282 root 2u unix 0xffff96af33934c00 0t0 21302 socket docker-co 1256 1282 root 3u unix 0xffff96afb49b1400 0t0 21877 /var/run/docker/libcontainerd/docker-containerd.sock docker-co 1256 1282 root 4u a_inode 0,10 0 6481 [eventpoll] docker-co 1256 1282 root 5u a_inode 0,10 0 6481 [eventpoll] docker-co 1256 1282 root 6w REG 0,20 0 21879 /run/docker/libcontainerd/containerd/events.log docker-co 1256 1282 root 7u unix 0xffff96af325fd800 0t0 22241 /var/run/docker/libcontainerd/docker-containerd.sock master 1469 root cwd DIR 253,0 201 33759002 /var/spool/postfix master 1469 root rtd DIR 253,0 224 64 / master 1469 root txt REG 253,0 172568 33758955 /usr/libexec/postfix/master master 1469 root mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so master 1469 root mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 master 1469 root mem REG 253,0 15688 9878 /usr/lib64/libkeyutils.so.1.5 master 1469 root mem REG 253,0 11392 7832 /usr/lib64/libfreebl3.so master 1469 root mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 master 1469 root mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so master 1469 root mem REG 253,0 67104 9952 /usr/lib64/libkrb5support.so.0.1 master 1469 root mem REG 253,0 15920 7825 /usr/lib64/libcom_err.so.2.1 master 1469 root mem REG 253,0 210784 9845 /usr/lib64/libk5crypto.so.3.1 master 1469 root mem REG 253,0 967784 9948 /usr/lib64/libkrb5.so.3.3 master 1469 root mem REG 253,0 320784 8155 /usr/lib64/libgssapi_krb5.so.2.2 master 1469 root mem REG 253,0 40664 1119 /usr/lib64/libcrypt-2.17.so master 1469 root mem REG 253,0 991616 32681 /usr/lib64/libstdc++.so.6.0.19 master 1469 root mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 master 1469 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so master 1469 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so master 1469 root mem REG 253,0 251792 1468 /usr/lib64/libnspr4.so master 1469 root mem REG 253,0 20040 1469 /usr/lib64/libplc4.so master 1469 root mem REG 253,0 15744 1471 /usr/lib64/libplds4.so master 1469 root mem REG 253,0 198960 1472 /usr/lib64/libnssutil3.so master 1469 root mem REG 253,0 1257792 33488 /usr/lib64/libnss3.so master 1469 root mem REG 253,0 168336 503336 /usr/lib64/libsmime3.so master 1469 root mem REG 253,0 370584 503337 /usr/lib64/libssl3.so master 1469 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so master 1469 root mem REG 253,0 105824 503073 /usr/lib64/libresolv-2.17.so master 1469 root mem REG 253,0 115848 1452 /usr/lib64/libnsl-2.17.so master 1469 root mem REG 253,0 1850600 10008 /usr/lib64/libdb-5.3.so master 1469 root mem REG 253,0 2521144 8157 /usr/lib64/libcrypto.so.1.0.2k master 1469 root mem REG 253,0 470376 9842 /usr/lib64/libssl.so.1.0.2k master 1469 root mem REG 253,0 121320 10329 /usr/lib64/libsasl2.so.3.0.0 master 1469 root mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so master 1469 root mem REG 253,0 3135712 50359390 /usr/lib64/mysql/libmysqlclient.so.18.0.0 master 1469 root mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 master 1469 root mem REG 253,0 61952 32966 /usr/lib64/liblber-2.4.so.2.10.7 master 1469 root mem REG 253,0 352608 32968 /usr/lib64/libldap-2.4.so.2.10.7 master 1469 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so master 1469 root 0u CHR 1,3 0t0 6485 /dev/null master 1469 root 1u CHR 1,3 0t0 6485 /dev/null master 1469 root 2u CHR 1,3 0t0 6485 /dev/null master 1469 root 3u unix 0xffff96af325f8800 0t0 22293 socket master 1469 root 4u CHR 1,3 0t0 6485 /dev/null master 1469 root 5r FIFO 0,9 0t0 22403 pipe master 1469 root 6u CHR 1,3 0t0 6485 /dev/null master 1469 root 7u CHR 1,3 0t0 6485 /dev/null master 1469 root 8u CHR 1,3 0t0 6485 /dev/null master 1469 root 9u CHR 1,3 0t0 6485 /dev/null master 1469 root 10uW REG 253,0 33 236387 /var/spool/postfix/pid/master.pid master 1469 root 11uW REG 253,0 33 17559024 /var/lib/postfix/master.lock master 1469 root 12r FIFO 0,9 0t0 22392 pipe master 1469 root 13u IPv4 22317 0t0 TCP localhost:smtp (LISTEN) master 1469 root 14u IPv6 22318 0t0 TCP localhost:smtp (LISTEN) master 1469 root 15u a_inode 0,10 0 6481 [eventpoll] master 1469 root 16u unix 0xffff96af325f9000 0t0 22319 socket master 1469 root 17u unix 0xffff96af325fe400 0t0 22320 socket master 1469 root 18u unix 0xffff96af325fc000 0t0 22321 public/pickup master 1469 root 19u unix 0xffff96af325ffc00 0t0 22322 socket master 1469 root 20u unix 0xffff96af33897c00 0t0 22323 socket master 1469 root 22u unix 0xffff96af3778e800 0t0 22325 public/cleanup master 1469 root 23u unix 0xffff96af33933400 0t0 22326 socket master 1469 root 24u unix 0xffff96af33932800 0t0 22327 socket master 1469 root 25u unix 0xffff96af33932000 0t0 22328 public/qmgr master 1469 root 26u unix 0xffff96af33931400 0t0 22329 socket master 1469 root 27u unix 0xffff96afb49b0800 0t0 22330 socket master 1469 root 29u unix 0xffff96afb49b4800 0t0 22332 private/tlsmgr master 1469 root 30u unix 0xffff96af32678000 0t0 22333 socket master 1469 root 31u unix 0xffff96af32678400 0t0 22334 socket master 1469 root 32u unix 0xffff96af32678800 0t0 22335 private/rewrite master 1469 root 33u unix 0xffff96af32679000 0t0 22336 socket master 1469 root 34u unix 0xffff96af32679400 0t0 22337 socket master 1469 root 35u unix 0xffff96af32679800 0t0 22338 private/bounce master 1469 root 36u unix 0xffff96af32679c00 0t0 22339 socket master 1469 root 37u unix 0xffff96af3267a000 0t0 22340 socket master 1469 root 38u unix 0xffff96af3267a400 0t0 22341 private/defer master 1469 root 39u unix 0xffff96af3267a800 0t0 22342 socket master 1469 root 40u unix 0xffff96af3267ac00 0t0 22343 socket master 1469 root 41u unix 0xffff96af3267b000 0t0 22344 private/trace master 1469 root 42u unix 0xffff96af3267b400 0t0 22345 socket master 1469 root 43u unix 0xffff96af3267b800 0t0 22346 socket master 1469 root 44u unix 0xffff96af3267bc00 0t0 22347 private/verify master 1469 root 45u unix 0xffff96af3267c000 0t0 22348 socket master 1469 root 46u unix 0xffff96af3267c400 0t0 22349 socket master 1469 root 47u unix 0xffff96af3267c800 0t0 22350 public/flush master 1469 root 48u unix 0xffff96af3267cc00 0t0 22351 socket master 1469 root 49u unix 0xffff96af3267d000 0t0 22352 socket master 1469 root 50u unix 0xffff96af3267d400 0t0 22353 private/proxymap master 1469 root 51u unix 0xffff96af3267d800 0t0 22354 socket master 1469 root 52u unix 0xffff96af3267dc00 0t0 22355 socket master 1469 root 53u unix 0xffff96af3267e000 0t0 22356 private/proxywrite master 1469 root 54u unix 0xffff96af3267e400 0t0 22357 socket master 1469 root 55u unix 0xffff96af3267e800 0t0 22358 socket master 1469 root 56u unix 0xffff96af3267ec00 0t0 22359 private/smtp master 1469 root 57u unix 0xffff96af3267f000 0t0 22360 socket master 1469 root 58u unix 0xffff96af3267f400 0t0 22361 socket master 1469 root 59u unix 0xffff96af3267f800 0t0 22362 private/relay master 1469 root 60u unix 0xffff96af3267fc00 0t0 22363 socket master 1469 root 61u unix 0xffff96afb49b4400 0t0 22364 socket master 1469 root 62u unix 0xffff96afb49b1800 0t0 22365 public/showq master 1469 root 63u unix 0xffff96afb49b2c00 0t0 22366 socket master 1469 root 64u unix 0xffff96afb49b7800 0t0 22367 socket master 1469 root 65u unix 0xffff96af32680400 0t0 22368 private/error master 1469 root 66u unix 0xffff96af32680800 0t0 22369 socket master 1469 root 67u unix 0xffff96af32680c00 0t0 22370 socket master 1469 root 68u unix 0xffff96af32681000 0t0 22371 private/retry master 1469 root 69u unix 0xffff96af32681400 0t0 22372 socket master 1469 root 70u unix 0xffff96af32681800 0t0 22373 socket master 1469 root 71u unix 0xffff96af32681c00 0t0 22374 private/discard master 1469 root 72u unix 0xffff96af32682000 0t0 22375 socket master 1469 root 73u unix 0xffff96af32682400 0t0 22376 socket master 1469 root 74u unix 0xffff96af32682800 0t0 22377 private/local master 1469 root 75u unix 0xffff96af32682c00 0t0 22378 socket master 1469 root 76u unix 0xffff96af32683000 0t0 22379 socket master 1469 root 77u unix 0xffff96af32683400 0t0 22380 private/virtual master 1469 root 78u unix 0xffff96af32683800 0t0 22381 socket master 1469 root 79u unix 0xffff96af32683c00 0t0 22382 socket master 1469 root 80u unix 0xffff96af32684000 0t0 22383 private/lmtp master 1469 root 81u unix 0xffff96af32684400 0t0 22384 socket master 1469 root 82u unix 0xffff96af32684800 0t0 22385 socket master 1469 root 83u unix 0xffff96af32684c00 0t0 22386 private/anvil master 1469 root 84u unix 0xffff96af32685000 0t0 22387 socket master 1469 root 85u unix 0xffff96af32685400 0t0 22388 socket master 1469 root 86u unix 0xffff96af32685800 0t0 22389 private/scache master 1469 root 87u unix 0xffff96af32685c00 0t0 22390 socket master 1469 root 88u unix 0xffff96af32686000 0t0 22391 socket master 1469 root 89w FIFO 0,9 0t0 22392 pipe master 1469 root 90r FIFO 0,9 0t0 22393 pipe master 1469 root 91w FIFO 0,9 0t0 22393 pipe master 1469 root 92w FIFO 0,9 0t0 22403 pipe qmgr 1474 postfix cwd DIR 253,0 201 33759002 /var/spool/postfix qmgr 1474 postfix rtd DIR 253,0 224 64 / qmgr 1474 postfix txt REG 253,0 352192 33759007 /usr/libexec/postfix/qmgr qmgr 1474 postfix mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so qmgr 1474 postfix mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 qmgr 1474 postfix mem REG 253,0 15688 9878 /usr/lib64/libkeyutils.so.1.5 qmgr 1474 postfix mem REG 253,0 11392 7832 /usr/lib64/libfreebl3.so qmgr 1474 postfix mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 qmgr 1474 postfix mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so qmgr 1474 postfix mem REG 253,0 67104 9952 /usr/lib64/libkrb5support.so.0.1 qmgr 1474 postfix mem REG 253,0 15920 7825 /usr/lib64/libcom_err.so.2.1 qmgr 1474 postfix mem REG 253,0 210784 9845 /usr/lib64/libk5crypto.so.3.1 qmgr 1474 postfix mem REG 253,0 967784 9948 /usr/lib64/libkrb5.so.3.3 qmgr 1474 postfix mem REG 253,0 320784 8155 /usr/lib64/libgssapi_krb5.so.2.2 qmgr 1474 postfix mem REG 253,0 40664 1119 /usr/lib64/libcrypt-2.17.so qmgr 1474 postfix mem REG 253,0 991616 32681 /usr/lib64/libstdc++.so.6.0.19 qmgr 1474 postfix mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 qmgr 1474 postfix mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so qmgr 1474 postfix mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so qmgr 1474 postfix mem REG 253,0 251792 1468 /usr/lib64/libnspr4.so qmgr 1474 postfix mem REG 253,0 20040 1469 /usr/lib64/libplc4.so qmgr 1474 postfix mem REG 253,0 15744 1471 /usr/lib64/libplds4.so qmgr 1474 postfix mem REG 253,0 198960 1472 /usr/lib64/libnssutil3.so qmgr 1474 postfix mem REG 253,0 1257792 33488 /usr/lib64/libnss3.so qmgr 1474 postfix mem REG 253,0 168336 503336 /usr/lib64/libsmime3.so qmgr 1474 postfix mem REG 253,0 370584 503337 /usr/lib64/libssl3.so qmgr 1474 postfix mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so qmgr 1474 postfix mem REG 253,0 105824 503073 /usr/lib64/libresolv-2.17.so qmgr 1474 postfix mem REG 253,0 115848 1452 /usr/lib64/libnsl-2.17.so qmgr 1474 postfix mem REG 253,0 1850600 10008 /usr/lib64/libdb-5.3.so qmgr 1474 postfix mem REG 253,0 2521144 8157 /usr/lib64/libcrypto.so.1.0.2k qmgr 1474 postfix mem REG 253,0 470376 9842 /usr/lib64/libssl.so.1.0.2k qmgr 1474 postfix mem REG 253,0 121320 10329 /usr/lib64/libsasl2.so.3.0.0 qmgr 1474 postfix mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so qmgr 1474 postfix mem REG 253,0 3135712 50359390 /usr/lib64/mysql/libmysqlclient.so.18.0.0 qmgr 1474 postfix mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 qmgr 1474 postfix mem REG 253,0 61952 32966 /usr/lib64/liblber-2.4.so.2.10.7 qmgr 1474 postfix mem REG 253,0 352608 32968 /usr/lib64/libldap-2.4.so.2.10.7 qmgr 1474 postfix mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so qmgr 1474 postfix 0u CHR 1,3 0t0 6485 /dev/null qmgr 1474 postfix 1u CHR 1,3 0t0 6485 /dev/null qmgr 1474 postfix 2u CHR 1,3 0t0 6485 /dev/null qmgr 1474 postfix 3r FIFO 0,9 0t0 22393 pipe qmgr 1474 postfix 4w FIFO 0,9 0t0 22393 pipe qmgr 1474 postfix 5u unix 0xffff96afb49b0800 0t0 22330 socket qmgr 1474 postfix 6u unix 0xffff96af33932000 0t0 22328 public/qmgr qmgr 1474 postfix 7u unix 0xffff96afb4b91400 0t0 22409 socket qmgr 1474 postfix 8u a_inode 0,10 0 6481 [eventpoll] qmgr 1474 postfix 11r FIFO 0,9 0t0 22441 pipe qmgr 1474 postfix 12w FIFO 0,9 0t0 22441 pipe qmgr 1474 postfix 92w FIFO 0,9 0t0 22403 pipe bash 1835 kbrazil cwd DIR 253,0 6 503040 /home/kbrazil/git bash 1835 kbrazil rtd DIR 253,0 224 64 / bash 1835 kbrazil txt REG 253,0 964600 50332501 /usr/bin/bash bash 1835 kbrazil mem REG 253,0 106075056 16781164 /usr/lib/locale/locale-archive bash 1835 kbrazil mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so bash 1835 kbrazil mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so bash 1835 kbrazil mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so bash 1835 kbrazil mem REG 253,0 174576 9816 /usr/lib64/libtinfo.so.5.9 bash 1835 kbrazil mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so bash 1835 kbrazil mem REG 253,0 26254 16789060 /usr/lib64/gconv/gconv-modules.cache bash 1835 kbrazil 0u CHR 4,64 0t0 8462 /dev/ttyS0 bash 1835 kbrazil 1u CHR 4,64 0t0 8462 /dev/ttyS0 bash 1835 kbrazil 2u CHR 4,64 0t0 8462 /dev/ttyS0 bash 1835 kbrazil 255u CHR 4,64 0t0 8462 /dev/ttyS0 dhclient 1939 root cwd DIR 253,0 224 64 / dhclient 1939 root rtd DIR 253,0 224 64 / dhclient 1939 root txt REG 253,0 424352 1487 /usr/sbin/dhclient dhclient 1939 root mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so dhclient 1939 root mem REG 253,0 11392 7832 /usr/lib64/libfreebl3.so dhclient 1939 root mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 dhclient 1939 root mem REG 253,0 40664 1119 /usr/lib64/libcrypt-2.17.so dhclient 1939 root mem REG 253,0 68192 9982 /usr/lib64/libbz2.so.1.0.6 dhclient 1939 root mem REG 253,0 157424 9974 /usr/lib64/liblzma.so.5.2.2 dhclient 1939 root mem REG 253,0 100024 503087 /usr/lib64/libelf-0.176.so dhclient 1939 root mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 dhclient 1939 root mem REG 253,0 251792 1468 /usr/lib64/libnspr4.so dhclient 1939 root mem REG 253,0 20040 1469 /usr/lib64/libplc4.so dhclient 1939 root mem REG 253,0 15744 1471 /usr/lib64/libplds4.so dhclient 1939 root mem REG 253,0 198960 1472 /usr/lib64/libnssutil3.so dhclient 1939 root mem REG 253,0 1257792 33488 /usr/lib64/libnss3.so dhclient 1939 root mem REG 253,0 168336 503336 /usr/lib64/libsmime3.so dhclient 1939 root mem REG 253,0 370584 503337 /usr/lib64/libssl3.so dhclient 1939 root mem REG 253,0 470376 9842 /usr/lib64/libssl.so.1.0.2k dhclient 1939 root mem REG 253,0 121320 10329 /usr/lib64/libsasl2.so.3.0.0 dhclient 1939 root mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 dhclient 1939 root mem REG 253,0 338704 33747 /usr/lib64/libdw-0.176.so dhclient 1939 root mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so dhclient 1939 root mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so dhclient 1939 root mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 dhclient 1939 root mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 dhclient 1939 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so dhclient 1939 root mem REG 253,0 105824 503073 /usr/lib64/libresolv-2.17.so dhclient 1939 root mem REG 253,0 15688 9878 /usr/lib64/libkeyutils.so.1.5 dhclient 1939 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so dhclient 1939 root mem REG 253,0 67104 9952 /usr/lib64/libkrb5support.so.0.1 dhclient 1939 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so dhclient 1939 root mem REG 253,0 352608 32968 /usr/lib64/libldap-2.4.so.2.10.7 dhclient 1939 root mem REG 253,0 61952 32966 /usr/lib64/liblber-2.4.so.2.10.7 dhclient 1939 root mem REG 253,0 28056 8126 /usr/lib64/libsystemd-daemon.so.0.0.12 dhclient 1939 root mem REG 253,0 20048 8119 /usr/lib64/libcap.so.2.22 dhclient 1939 root mem REG 253,0 2521144 8157 /usr/lib64/libcrypto.so.1.0.2k dhclient 1939 root mem REG 253,0 446120 50742944 /usr/lib64/bind9-export/libisc-export.so.169.0.3 dhclient 1939 root mem REG 253,0 15920 7825 /usr/lib64/libcom_err.so.2.1 dhclient 1939 root mem REG 253,0 210784 9845 /usr/lib64/libk5crypto.so.3.1 dhclient 1939 root mem REG 253,0 967784 9948 /usr/lib64/libkrb5.so.3.3 dhclient 1939 root mem REG 253,0 320784 8155 /usr/lib64/libgssapi_krb5.so.2.2 dhclient 1939 root mem REG 253,0 2304128 50696880 /usr/lib64/bind9-export/libdns-export.so.1102.1.2 dhclient 1939 root mem REG 253,0 23968 10009 /usr/lib64/libcap-ng.so.0.0.0 dhclient 1939 root mem REG 253,0 125280 1483 /usr/lib64/libomapi.so.0.0.0 dhclient 1939 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so dhclient 1939 root 0r CHR 1,3 0t0 6485 /dev/null dhclient 1939 root 1w CHR 1,3 0t0 6485 /dev/null dhclient 1939 root 2w CHR 1,3 0t0 6485 /dev/null dhclient 1939 root 3u unix 0xffff96af3778d400 0t0 24201 socket dhclient 1939 root 4w REG 253,0 3192 33574989 /var/lib/NetworkManager/dhclient-d92ece08-9e02-47d5-b2d2-92c80e155744-ens33.lease dhclient 1939 root 5u pack 24213 0t0 ALL type=SOCK_RAW dhclient 1939 root 6u IPv4 24214 0t0 UDP *:bootpc pickup 4262 postfix cwd DIR 253,0 201 33759002 /var/spool/postfix pickup 4262 postfix rtd DIR 253,0 224 64 / pickup 4262 postfix txt REG 253,0 285208 33758958 /usr/libexec/postfix/pickup pickup 4262 postfix mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so pickup 4262 postfix mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 pickup 4262 postfix mem REG 253,0 15688 9878 /usr/lib64/libkeyutils.so.1.5 pickup 4262 postfix mem REG 253,0 11392 7832 /usr/lib64/libfreebl3.so pickup 4262 postfix mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 pickup 4262 postfix mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so pickup 4262 postfix mem REG 253,0 67104 9952 /usr/lib64/libkrb5support.so.0.1 pickup 4262 postfix mem REG 253,0 15920 7825 /usr/lib64/libcom_err.so.2.1 pickup 4262 postfix mem REG 253,0 210784 9845 /usr/lib64/libk5crypto.so.3.1 pickup 4262 postfix mem REG 253,0 967784 9948 /usr/lib64/libkrb5.so.3.3 pickup 4262 postfix mem REG 253,0 320784 8155 /usr/lib64/libgssapi_krb5.so.2.2 pickup 4262 postfix mem REG 253,0 40664 1119 /usr/lib64/libcrypt-2.17.so pickup 4262 postfix mem REG 253,0 991616 32681 /usr/lib64/libstdc++.so.6.0.19 pickup 4262 postfix mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 pickup 4262 postfix mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so pickup 4262 postfix mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so pickup 4262 postfix mem REG 253,0 251792 1468 /usr/lib64/libnspr4.so pickup 4262 postfix mem REG 253,0 20040 1469 /usr/lib64/libplc4.so pickup 4262 postfix mem REG 253,0 15744 1471 /usr/lib64/libplds4.so pickup 4262 postfix mem REG 253,0 198960 1472 /usr/lib64/libnssutil3.so pickup 4262 postfix mem REG 253,0 1257792 33488 /usr/lib64/libnss3.so pickup 4262 postfix mem REG 253,0 168336 503336 /usr/lib64/libsmime3.so pickup 4262 postfix mem REG 253,0 370584 503337 /usr/lib64/libssl3.so pickup 4262 postfix mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so pickup 4262 postfix mem REG 253,0 105824 503073 /usr/lib64/libresolv-2.17.so pickup 4262 postfix mem REG 253,0 115848 1452 /usr/lib64/libnsl-2.17.so pickup 4262 postfix mem REG 253,0 1850600 10008 /usr/lib64/libdb-5.3.so pickup 4262 postfix mem REG 253,0 2521144 8157 /usr/lib64/libcrypto.so.1.0.2k pickup 4262 postfix mem REG 253,0 470376 9842 /usr/lib64/libssl.so.1.0.2k pickup 4262 postfix mem REG 253,0 121320 10329 /usr/lib64/libsasl2.so.3.0.0 pickup 4262 postfix mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so pickup 4262 postfix mem REG 253,0 3135712 50359390 /usr/lib64/mysql/libmysqlclient.so.18.0.0 pickup 4262 postfix mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 pickup 4262 postfix mem REG 253,0 61952 32966 /usr/lib64/liblber-2.4.so.2.10.7 pickup 4262 postfix mem REG 253,0 352608 32968 /usr/lib64/libldap-2.4.so.2.10.7 pickup 4262 postfix mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so pickup 4262 postfix 0u CHR 1,3 0t0 6485 /dev/null pickup 4262 postfix 1u CHR 1,3 0t0 6485 /dev/null pickup 4262 postfix 2u CHR 1,3 0t0 6485 /dev/null pickup 4262 postfix 3r FIFO 0,9 0t0 22393 pipe pickup 4262 postfix 4w FIFO 0,9 0t0 22393 pipe pickup 4262 postfix 5u unix 0xffff96af33897c00 0t0 22323 socket pickup 4262 postfix 6u unix 0xffff96af325fc000 0t0 22321 public/pickup pickup 4262 postfix 7u unix 0xffff96afb4b90c00 0t0 44430 socket pickup 4262 postfix 8u a_inode 0,10 0 6481 [eventpoll] pickup 4262 postfix 9r FIFO 0,9 0t0 44446 pipe pickup 4262 postfix 10w FIFO 0,9 0t0 44446 pipe pickup 4262 postfix 92w FIFO 0,9 0t0 22403 pipe sshd 4314 root cwd DIR 253,0 224 64 / sshd 4314 root rtd DIR 253,0 224 64 / sshd 4314 root txt REG 253,0 852856 297586 /usr/sbin/sshd sshd 4314 root mem REG 253,0 15480 50338864 /usr/lib64/security/pam_lastlog.so sshd 4314 root mem REG 253,0 15632 10151 /usr/lib64/libpam_misc.so.0.82.0 sshd 4314 root mem REG 253,0 309168 50359979 /usr/lib64/security/pam_systemd.so sshd 4314 root mem REG 253,0 19600 50338865 /usr/lib64/security/pam_limits.so sshd 4314 root mem REG 253,0 11152 50338863 /usr/lib64/security/pam_keyinit.so sshd 4314 root mem REG 253,0 40784 50338872 /usr/lib64/security/pam_namespace.so sshd 4314 root mem REG 253,0 11200 50338868 /usr/lib64/security/pam_loginuid.so sshd 4314 root mem REG 253,0 19760 50338880 /usr/lib64/security/pam_selinux.so sshd 4314 root mem REG 253,0 44600 10026 /usr/lib64/libcrack.so.2.9.0 sshd 4314 root mem REG 253,0 23832 10300 /usr/lib64/libpwquality.so.1.0.2 sshd 4314 root mem REG 253,0 11232 50339023 /usr/lib64/security/pam_pwquality.so sshd 4314 root mem REG 253,0 6984 50338874 /usr/lib64/security/pam_permit.so sshd 4314 root mem REG 253,0 11144 50338867 /usr/lib64/security/pam_localuser.so sshd 4314 root mem REG 253,0 11176 50338873 /usr/lib64/security/pam_nologin.so sshd 4314 root mem REG 253,0 6872 50338853 /usr/lib64/security/pam_deny.so sshd 4314 root mem REG 253,0 15408 50338885 /usr/lib64/security/pam_succeed_if.so sshd 4314 root mem REG 253,0 57728 50338891 /usr/lib64/security/pam_unix.so sshd 4314 root mem REG 253,0 11168 50338857 /usr/lib64/security/pam_faildelay.so sshd 4314 root mem REG 253,0 15552 50338855 /usr/lib64/security/pam_env.so sshd 4314 root mem REG 253,0 15496 50338882 /usr/lib64/security/pam_sepermit.so sshd 4314 root mem REG 253,0 86472 33489 /usr/lib64/libnss_myhostname.so.2 sshd 4314 root mem REG 253,0 31408 503056 /usr/lib64/libnss_dns-2.17.so sshd 4314 root mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so sshd 4314 root mem REG 253,0 68192 9982 /usr/lib64/libbz2.so.1.0.6 sshd 4314 root mem REG 253,0 100024 503087 /usr/lib64/libelf-0.176.so sshd 4314 root mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 sshd 4314 root mem REG 253,0 15688 9878 /usr/lib64/libkeyutils.so.1.5 sshd 4314 root mem REG 253,0 67104 9952 /usr/lib64/libkrb5support.so.0.1 sshd 4314 root mem REG 253,0 11392 7832 /usr/lib64/libfreebl3.so sshd 4314 root mem REG 253,0 251792 1468 /usr/lib64/libnspr4.so sshd 4314 root mem REG 253,0 20040 1469 /usr/lib64/libplc4.so sshd 4314 root mem REG 253,0 15744 1471 /usr/lib64/libplds4.so sshd 4314 root mem REG 253,0 198960 1472 /usr/lib64/libnssutil3.so sshd 4314 root mem REG 253,0 1257792 33488 /usr/lib64/libnss3.so sshd 4314 root mem REG 253,0 168336 503336 /usr/lib64/libsmime3.so sshd 4314 root mem REG 253,0 370584 503337 /usr/lib64/libssl3.so sshd 4314 root mem REG 253,0 470376 9842 /usr/lib64/libssl.so.1.0.2k sshd 4314 root mem REG 253,0 121320 10329 /usr/lib64/libsasl2.so.3.0.0 sshd 4314 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so sshd 4314 root mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 sshd 4314 root mem REG 253,0 338704 33747 /usr/lib64/libdw-0.176.so sshd 4314 root mem REG 253,0 19384 10000 /usr/lib64/libgpg-error.so.0.10.0 sshd 4314 root mem REG 253,0 535064 10016 /usr/lib64/libgcrypt.so.11.8.2 sshd 4314 root mem REG 253,0 85968 10471 /usr/lib64/liblz4.so.1.7.5 sshd 4314 root mem REG 253,0 157424 9974 /usr/lib64/liblzma.so.5.2.2 sshd 4314 root mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so sshd 4314 root mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so sshd 4314 root mem REG 253,0 20048 8119 /usr/lib64/libcap.so.2.22 sshd 4314 root mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 sshd 4314 root mem REG 253,0 23968 10009 /usr/lib64/libcap-ng.so.0.0.0 sshd 4314 root mem REG 253,0 115848 1452 /usr/lib64/libnsl-2.17.so sshd 4314 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so sshd 4314 root mem REG 253,0 15920 7825 /usr/lib64/libcom_err.so.2.1 sshd 4314 root mem REG 253,0 210784 9845 /usr/lib64/libk5crypto.so.3.1 sshd 4314 root mem REG 253,0 967784 9948 /usr/lib64/libkrb5.so.3.3 sshd 4314 root mem REG 253,0 320784 8155 /usr/lib64/libgssapi_krb5.so.2.2 sshd 4314 root mem REG 253,0 105824 503073 /usr/lib64/libresolv-2.17.so sshd 4314 root mem REG 253,0 40664 1119 /usr/lib64/libcrypt-2.17.so sshd 4314 root mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 sshd 4314 root mem REG 253,0 14496 503085 /usr/lib64/libutil-2.17.so sshd 4314 root mem REG 253,0 61952 32966 /usr/lib64/liblber-2.4.so.2.10.7 sshd 4314 root mem REG 253,0 352608 32968 /usr/lib64/libldap-2.4.so.2.10.7 sshd 4314 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so sshd 4314 root mem REG 253,0 2521144 8157 /usr/lib64/libcrypto.so.1.0.2k sshd 4314 root mem REG 253,0 203688 33742 /usr/lib64/libsystemd.so.0.6.0 sshd 4314 root mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 sshd 4314 root mem REG 253,0 61672 10149 /usr/lib64/libpam.so.0.83.1 sshd 4314 root mem REG 253,0 127184 1475 /usr/lib64/libaudit.so.1.0.0 sshd 4314 root mem REG 253,0 42520 10468 /usr/lib64/libwrap.so.0.7.6 sshd 4314 root mem REG 253,0 11344 32826 /usr/lib64/libfipscheck.so.1.2.1 sshd 4314 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so sshd 4314 root 0r CHR 1,3 0t0 6485 /dev/null sshd 4314 root 1u CHR 1,3 0t0 6485 /dev/null sshd 4314 root 2u CHR 1,3 0t0 6485 /dev/null sshd 4314 root 3u IPv4 44866 0t0 TCP localhost.localdomain:ssh->192.168.71.1:58727 (ESTABLISHED) sshd 4314 root 4u unix 0xffff96aeb657b000 0t0 44962 socket sshd 4314 root 5u CHR 5,2 0t0 8461 /dev/ptmx sshd 4314 root 6w FIFO 0,20 0t0 44958 /run/systemd/sessions/17.ref sshd 4314 root 7u unix 0xffff96aeb6579400 0t0 44966 socket sshd 4318 kbrazil cwd DIR 253,0 224 64 / sshd 4318 kbrazil rtd DIR 253,0 224 64 / sshd 4318 kbrazil txt REG 253,0 852856 297586 /usr/sbin/sshd sshd 4318 kbrazil mem REG 253,0 15480 50338864 /usr/lib64/security/pam_lastlog.so sshd 4318 kbrazil mem REG 253,0 15632 10151 /usr/lib64/libpam_misc.so.0.82.0 sshd 4318 kbrazil mem REG 253,0 309168 50359979 /usr/lib64/security/pam_systemd.so sshd 4318 kbrazil mem REG 253,0 19600 50338865 /usr/lib64/security/pam_limits.so sshd 4318 kbrazil mem REG 253,0 11152 50338863 /usr/lib64/security/pam_keyinit.so sshd 4318 kbrazil mem REG 253,0 40784 50338872 /usr/lib64/security/pam_namespace.so sshd 4318 kbrazil mem REG 253,0 11200 50338868 /usr/lib64/security/pam_loginuid.so sshd 4318 kbrazil mem REG 253,0 19760 50338880 /usr/lib64/security/pam_selinux.so sshd 4318 kbrazil mem REG 253,0 44600 10026 /usr/lib64/libcrack.so.2.9.0 sshd 4318 kbrazil mem REG 253,0 23832 10300 /usr/lib64/libpwquality.so.1.0.2 sshd 4318 kbrazil mem REG 253,0 11232 50339023 /usr/lib64/security/pam_pwquality.so sshd 4318 kbrazil mem REG 253,0 6984 50338874 /usr/lib64/security/pam_permit.so sshd 4318 kbrazil mem REG 253,0 11144 50338867 /usr/lib64/security/pam_localuser.so sshd 4318 kbrazil mem REG 253,0 11176 50338873 /usr/lib64/security/pam_nologin.so sshd 4318 kbrazil mem REG 253,0 6872 50338853 /usr/lib64/security/pam_deny.so sshd 4318 kbrazil mem REG 253,0 15408 50338885 /usr/lib64/security/pam_succeed_if.so sshd 4318 kbrazil mem REG 253,0 57728 50338891 /usr/lib64/security/pam_unix.so sshd 4318 kbrazil mem REG 253,0 11168 50338857 /usr/lib64/security/pam_faildelay.so sshd 4318 kbrazil mem REG 253,0 15552 50338855 /usr/lib64/security/pam_env.so sshd 4318 kbrazil mem REG 253,0 15496 50338882 /usr/lib64/security/pam_sepermit.so sshd 4318 kbrazil mem REG 253,0 86472 33489 /usr/lib64/libnss_myhostname.so.2 sshd 4318 kbrazil mem REG 253,0 31408 503056 /usr/lib64/libnss_dns-2.17.so sshd 4318 kbrazil mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so sshd 4318 kbrazil mem REG 253,0 68192 9982 /usr/lib64/libbz2.so.1.0.6 sshd 4318 kbrazil mem REG 253,0 100024 503087 /usr/lib64/libelf-0.176.so sshd 4318 kbrazil mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 sshd 4318 kbrazil mem REG 253,0 15688 9878 /usr/lib64/libkeyutils.so.1.5 sshd 4318 kbrazil mem REG 253,0 67104 9952 /usr/lib64/libkrb5support.so.0.1 sshd 4318 kbrazil mem REG 253,0 11392 7832 /usr/lib64/libfreebl3.so sshd 4318 kbrazil mem REG 253,0 251792 1468 /usr/lib64/libnspr4.so sshd 4318 kbrazil mem REG 253,0 20040 1469 /usr/lib64/libplc4.so sshd 4318 kbrazil mem REG 253,0 15744 1471 /usr/lib64/libplds4.so sshd 4318 kbrazil mem REG 253,0 198960 1472 /usr/lib64/libnssutil3.so sshd 4318 kbrazil mem REG 253,0 1257792 33488 /usr/lib64/libnss3.so sshd 4318 kbrazil mem REG 253,0 168336 503336 /usr/lib64/libsmime3.so sshd 4318 kbrazil mem REG 253,0 370584 503337 /usr/lib64/libssl3.so sshd 4318 kbrazil mem REG 253,0 470376 9842 /usr/lib64/libssl.so.1.0.2k sshd 4318 kbrazil mem REG 253,0 121320 10329 /usr/lib64/libsasl2.so.3.0.0 sshd 4318 kbrazil mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so sshd 4318 kbrazil mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 sshd 4318 kbrazil mem REG 253,0 338704 33747 /usr/lib64/libdw-0.176.so sshd 4318 kbrazil mem REG 253,0 19384 10000 /usr/lib64/libgpg-error.so.0.10.0 sshd 4318 kbrazil mem REG 253,0 535064 10016 /usr/lib64/libgcrypt.so.11.8.2 sshd 4318 kbrazil mem REG 253,0 85968 10471 /usr/lib64/liblz4.so.1.7.5 sshd 4318 kbrazil mem REG 253,0 157424 9974 /usr/lib64/liblzma.so.5.2.2 sshd 4318 kbrazil mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so sshd 4318 kbrazil mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so sshd 4318 kbrazil mem REG 253,0 20048 8119 /usr/lib64/libcap.so.2.22 sshd 4318 kbrazil mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 sshd 4318 kbrazil mem REG 253,0 23968 10009 /usr/lib64/libcap-ng.so.0.0.0 sshd 4318 kbrazil mem REG 253,0 115848 1452 /usr/lib64/libnsl-2.17.so sshd 4318 kbrazil mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so sshd 4318 kbrazil mem REG 253,0 15920 7825 /usr/lib64/libcom_err.so.2.1 sshd 4318 kbrazil mem REG 253,0 210784 9845 /usr/lib64/libk5crypto.so.3.1 sshd 4318 kbrazil mem REG 253,0 967784 9948 /usr/lib64/libkrb5.so.3.3 sshd 4318 kbrazil mem REG 253,0 320784 8155 /usr/lib64/libgssapi_krb5.so.2.2 sshd 4318 kbrazil mem REG 253,0 105824 503073 /usr/lib64/libresolv-2.17.so sshd 4318 kbrazil mem REG 253,0 40664 1119 /usr/lib64/libcrypt-2.17.so sshd 4318 kbrazil mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 sshd 4318 kbrazil mem REG 253,0 14496 503085 /usr/lib64/libutil-2.17.so sshd 4318 kbrazil mem REG 253,0 61952 32966 /usr/lib64/liblber-2.4.so.2.10.7 sshd 4318 kbrazil mem REG 253,0 352608 32968 /usr/lib64/libldap-2.4.so.2.10.7 sshd 4318 kbrazil mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so sshd 4318 kbrazil mem REG 253,0 2521144 8157 /usr/lib64/libcrypto.so.1.0.2k sshd 4318 kbrazil mem REG 253,0 203688 33742 /usr/lib64/libsystemd.so.0.6.0 sshd 4318 kbrazil mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 sshd 4318 kbrazil mem REG 253,0 61672 10149 /usr/lib64/libpam.so.0.83.1 sshd 4318 kbrazil mem REG 253,0 127184 1475 /usr/lib64/libaudit.so.1.0.0 sshd 4318 kbrazil mem REG 253,0 42520 10468 /usr/lib64/libwrap.so.0.7.6 sshd 4318 kbrazil mem REG 253,0 11344 32826 /usr/lib64/libfipscheck.so.1.2.1 sshd 4318 kbrazil mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so sshd 4318 kbrazil 0u CHR 1,3 0t0 6485 /dev/null sshd 4318 kbrazil 1u CHR 1,3 0t0 6485 /dev/null sshd 4318 kbrazil 2u CHR 1,3 0t0 6485 /dev/null sshd 4318 kbrazil 3u IPv4 44866 0t0 TCP localhost.localdomain:ssh->192.168.71.1:58727 (ESTABLISHED) sshd 4318 kbrazil 4u unix 0xffff96aeb657b000 0t0 44962 socket sshd 4318 kbrazil 5u unix 0xffff96aeb657fc00 0t0 44965 socket sshd 4318 kbrazil 6w FIFO 0,20 0t0 44958 /run/systemd/sessions/17.ref sshd 4318 kbrazil 7r FIFO 0,9 0t0 44977 pipe sshd 4318 kbrazil 8w FIFO 0,9 0t0 44977 pipe sshd 4318 kbrazil 9u CHR 5,2 0t0 8461 /dev/ptmx sshd 4318 kbrazil 13u CHR 5,2 0t0 8461 /dev/ptmx sshd 4318 kbrazil 14u CHR 5,2 0t0 8461 /dev/ptmx bash 4319 kbrazil cwd DIR 253,0 4096 16790392 /home/kbrazil/testfiles bash 4319 kbrazil rtd DIR 253,0 224 64 / bash 4319 kbrazil txt REG 253,0 964600 50332501 /usr/bin/bash bash 4319 kbrazil mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so bash 4319 kbrazil mem REG 253,0 106075056 16781164 /usr/lib/locale/locale-archive bash 4319 kbrazil mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so bash 4319 kbrazil mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so bash 4319 kbrazil mem REG 253,0 174576 9816 /usr/lib64/libtinfo.so.5.9 bash 4319 kbrazil mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so bash 4319 kbrazil mem REG 253,0 26254 16789060 /usr/lib64/gconv/gconv-modules.cache bash 4319 kbrazil 0u CHR 136,0 0t0 3 /dev/pts/0 bash 4319 kbrazil 1u CHR 136,0 0t0 3 /dev/pts/0 bash 4319 kbrazil 2u CHR 136,0 0t0 3 /dev/pts/0 bash 4319 kbrazil 255u CHR 136,0 0t0 3 /dev/pts/0 kworker/0 4587 root cwd DIR 253,0 224 64 / kworker/0 4587 root rtd DIR 253,0 224 64 / kworker/0 4587 root txt unknown /proc/4587/exe kworker/0 4715 root cwd DIR 253,0 224 64 / kworker/0 4715 root rtd DIR 253,0 224 64 / kworker/0 4715 root txt unknown /proc/4715/exe kworker/0 4716 root cwd DIR 253,0 224 64 / kworker/0 4716 root rtd DIR 253,0 224 64 / kworker/0 4716 root txt unknown /proc/4716/exe tests.sh 4720 kbrazil cwd DIR 253,0 4096 16790392 /home/kbrazil/testfiles tests.sh 4720 kbrazil rtd DIR 253,0 224 64 / tests.sh 4720 kbrazil txt REG 253,0 964600 50332501 /usr/bin/bash tests.sh 4720 kbrazil mem REG 253,0 106075056 16781164 /usr/lib/locale/locale-archive tests.sh 4720 kbrazil mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so tests.sh 4720 kbrazil mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so tests.sh 4720 kbrazil mem REG 253,0 174576 9816 /usr/lib64/libtinfo.so.5.9 tests.sh 4720 kbrazil mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so tests.sh 4720 kbrazil mem REG 253,0 26254 16789060 /usr/lib64/gconv/gconv-modules.cache tests.sh 4720 kbrazil 0u CHR 136,0 0t0 3 /dev/pts/0 tests.sh 4720 kbrazil 1u CHR 136,0 0t0 3 /dev/pts/0 tests.sh 4720 kbrazil 2u CHR 136,0 0t0 3 /dev/pts/0 tests.sh 4720 kbrazil 255r REG 253,0 1568 16993585 /home/kbrazil/testfiles/tests.sh sleep 4768 kbrazil cwd DIR 253,0 4096 16790392 /home/kbrazil/testfiles sleep 4768 kbrazil rtd DIR 253,0 224 64 / sleep 4768 kbrazil txt REG 253,0 33128 50338469 /usr/bin/sleep sleep 4768 kbrazil mem REG 253,0 106075056 16781164 /usr/lib/locale/locale-archive sleep 4768 kbrazil mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so sleep 4768 kbrazil mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so sleep 4768 kbrazil 0r CHR 1,3 0t0 6485 /dev/null sleep 4768 kbrazil 1u CHR 136,0 0t0 3 /dev/pts/0 sleep 4768 kbrazil 2u CHR 136,0 0t0 3 /dev/pts/0 sleep 4769 kbrazil cwd DIR 253,0 4096 16790392 /home/kbrazil/testfiles sleep 4769 kbrazil rtd DIR 253,0 224 64 / sleep 4769 kbrazil txt REG 253,0 33128 50338469 /usr/bin/sleep sleep 4769 kbrazil mem REG 253,0 106075056 16781164 /usr/lib/locale/locale-archive sleep 4769 kbrazil mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so sleep 4769 kbrazil mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so sleep 4769 kbrazil 0u CHR 136,0 0t0 3 /dev/pts/0 sleep 4769 kbrazil 1u CHR 136,0 0t0 3 /dev/pts/0 sleep 4769 kbrazil 2u CHR 136,0 0t0 3 /dev/pts/0 sleep 4770 kbrazil cwd DIR 253,0 4096 16790392 /home/kbrazil/testfiles sleep 4770 kbrazil rtd DIR 253,0 224 64 / sleep 4770 kbrazil txt REG 253,0 33128 50338469 /usr/bin/sleep sleep 4770 kbrazil mem REG 253,0 106075056 16781164 /usr/lib/locale/locale-archive sleep 4770 kbrazil mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so sleep 4770 kbrazil mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so sleep 4770 kbrazil 0u CHR 136,0 0t0 3 /dev/pts/0 sleep 4770 kbrazil 1u CHR 136,0 0t0 3 /dev/pts/0 sleep 4770 kbrazil 2u CHR 136,0 0t0 3 /dev/pts/0 sleep 4771 kbrazil cwd DIR 253,0 4096 16790392 /home/kbrazil/testfiles sleep 4771 kbrazil rtd DIR 253,0 224 64 / sleep 4771 kbrazil txt REG 253,0 33128 50338469 /usr/bin/sleep sleep 4771 kbrazil mem REG 253,0 106075056 16781164 /usr/lib/locale/locale-archive sleep 4771 kbrazil mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so sleep 4771 kbrazil mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so sleep 4771 kbrazil 0u CHR 136,0 0t0 3 /dev/pts/0 sleep 4771 kbrazil 1u CHR 136,0 0t0 3 /dev/pts/0 sleep 4771 kbrazil 2u CHR 136,0 0t0 3 /dev/pts/0 sudo 4779 root cwd DIR 253,0 4096 16790392 /home/kbrazil/testfiles sudo 4779 root rtd DIR 253,0 224 64 / sudo 4779 root txt REG 253,0 147320 50705101 /usr/bin/sudo sudo 4779 root mem REG 253,0 68192 9982 /usr/lib64/libbz2.so.1.0.6 sudo 4779 root mem REG 253,0 157424 9974 /usr/lib64/liblzma.so.5.2.2 sudo 4779 root mem REG 253,0 100024 503087 /usr/lib64/libelf-0.176.so sudo 4779 root mem REG 253,0 19896 9831 /usr/lib64/libattr.so.1.1.0 sudo 4779 root mem REG 253,0 88776 8134 /usr/lib64/libgcc_s-4.8.5-20150702.so.1 sudo 4779 root mem REG 253,0 338704 33747 /usr/lib64/libdw-0.176.so sudo 4779 root mem REG 253,0 15632 10151 /usr/lib64/libpam_misc.so.0.82.0 sudo 4779 root mem REG 253,0 1137024 1449 /usr/lib64/libm-2.17.so sudo 4779 root mem REG 253,0 20048 8119 /usr/lib64/libcap.so.2.22 sudo 4779 root mem REG 253,0 309168 50359979 /usr/lib64/security/pam_systemd.so sudo 4779 root mem REG 253,0 19600 50338865 /usr/lib64/security/pam_limits.so sudo 4779 root mem REG 253,0 11152 50338863 /usr/lib64/security/pam_keyinit.so sudo 4779 root mem REG 253,0 44600 10026 /usr/lib64/libcrack.so.2.9.0 sudo 4779 root mem REG 253,0 23832 10300 /usr/lib64/libpwquality.so.1.0.2 sudo 4779 root mem REG 253,0 11232 50339023 /usr/lib64/security/pam_pwquality.so sudo 4779 root mem REG 253,0 6984 50338874 /usr/lib64/security/pam_permit.so sudo 4779 root mem REG 253,0 11144 50338867 /usr/lib64/security/pam_localuser.so sudo 4779 root mem REG 253,0 6872 50338853 /usr/lib64/security/pam_deny.so sudo 4779 root mem REG 253,0 15408 50338885 /usr/lib64/security/pam_succeed_if.so sudo 4779 root mem REG 253,0 115848 1452 /usr/lib64/libnsl-2.17.so sudo 4779 root mem REG 253,0 57728 50338891 /usr/lib64/security/pam_unix.so sudo 4779 root mem REG 253,0 11168 50338857 /usr/lib64/security/pam_faildelay.so sudo 4779 root mem REG 253,0 15552 50338855 /usr/lib64/security/pam_env.so sudo 4779 root mem REG 253,0 15688 9878 /usr/lib64/libkeyutils.so.1.5 sudo 4779 root mem REG 253,0 11392 7832 /usr/lib64/libfreebl3.so sudo 4779 root mem REG 253,0 43776 503075 /usr/lib64/librt-2.17.so sudo 4779 root mem REG 253,0 67104 9952 /usr/lib64/libkrb5support.so.0.1 sudo 4779 root mem REG 253,0 15920 7825 /usr/lib64/libcom_err.so.2.1 sudo 4779 root mem REG 253,0 210784 9845 /usr/lib64/libk5crypto.so.3.1 sudo 4779 root mem REG 253,0 967784 9948 /usr/lib64/libkrb5.so.3.3 sudo 4779 root mem REG 253,0 320784 8155 /usr/lib64/libgssapi_krb5.so.2.2 sudo 4779 root mem REG 253,0 40664 1119 /usr/lib64/libcrypt-2.17.so sudo 4779 root mem REG 253,0 19384 10000 /usr/lib64/libgpg-error.so.0.10.0 sudo 4779 root mem REG 253,0 251792 1468 /usr/lib64/libnspr4.so sudo 4779 root mem REG 253,0 20040 1469 /usr/lib64/libplc4.so sudo 4779 root mem REG 253,0 15744 1471 /usr/lib64/libplds4.so sudo 4779 root mem REG 253,0 198960 1472 /usr/lib64/libnssutil3.so sudo 4779 root mem REG 253,0 1257792 33488 /usr/lib64/libnss3.so sudo 4779 root mem REG 253,0 168336 503336 /usr/lib64/libsmime3.so sudo 4779 root mem REG 253,0 370584 503337 /usr/lib64/libssl3.so sudo 4779 root mem REG 253,0 2521144 8157 /usr/lib64/libcrypto.so.1.0.2k sudo 4779 root mem REG 253,0 470376 9842 /usr/lib64/libssl.so.1.0.2k sudo 4779 root mem REG 253,0 121320 10329 /usr/lib64/libsasl2.so.3.0.0 sudo 4779 root mem REG 253,0 105824 503073 /usr/lib64/libresolv-2.17.so sudo 4779 root mem REG 253,0 535064 10016 /usr/lib64/libgcrypt.so.11.8.2 sudo 4779 root mem REG 253,0 90248 8171 /usr/lib64/libz.so.1.2.7 sudo 4779 root mem REG 253,0 61952 32966 /usr/lib64/liblber-2.4.so.2.10.7 sudo 4779 root mem REG 253,0 352608 32968 /usr/lib64/libldap-2.4.so.2.10.7 sudo 4779 root mem REG 253,0 61672 10149 /usr/lib64/libpam.so.0.83.1 sudo 4779 root mem REG 253,0 423008 50696807 /usr/libexec/sudo/sudoers.so sudo 4779 root mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so sudo 4779 root mem REG 253,0 106075056 16781164 /usr/lib/locale/locale-archive sudo 4779 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so sudo 4779 root mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 sudo 4779 root mem REG 253,0 23968 10009 /usr/lib64/libcap-ng.so.0.0.0 sudo 4779 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so sudo 4779 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so sudo 4779 root mem REG 253,0 77984 50696804 /usr/libexec/sudo/libsudo_util.so.0.0.0 sudo 4779 root mem REG 253,0 14496 503085 /usr/lib64/libutil-2.17.so sudo 4779 root mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 sudo 4779 root mem REG 253,0 127184 1475 /usr/lib64/libaudit.so.1.0.0 sudo 4779 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so sudo 4779 root mem REG 253,0 26254 16789060 /usr/lib64/gconv/gconv-modules.cache sudo 4779 root 0u CHR 136,0 0t0 3 /dev/pts/0 sudo 4779 root 1w REG 253,0 0 16825879 /home/kbrazil/testfiles/lsof-sudo.out sudo 4779 root 2u CHR 136,0 0t0 3 /dev/pts/0 sudo 4779 root 3u netlink 0t0 49570 AUDIT sudo 4779 root 4u unix 0xffff96af33896000 0t0 49582 socket sudo 4779 root 6w FIFO 0,20 0t0 44958 /run/systemd/sessions/17.ref sudo 4779 root 7r FIFO 0,9 0t0 49585 pipe sudo 4779 root 8w FIFO 0,9 0t0 49585 pipe lsof 4781 root cwd DIR 253,0 4096 16790392 /home/kbrazil/testfiles lsof 4781 root rtd DIR 253,0 224 64 / lsof 4781 root txt REG 253,0 154184 1092 /usr/sbin/lsof lsof 4781 root mem REG 253,0 106075056 16781164 /usr/lib/locale/locale-archive lsof 4781 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so lsof 4781 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so lsof 4781 root mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 lsof 4781 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so lsof 4781 root mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 lsof 4781 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so lsof 4781 root 0u CHR 136,0 0t0 3 /dev/pts/0 lsof 4781 root 1w REG 253,0 0 16825879 /home/kbrazil/testfiles/lsof-sudo.out lsof 4781 root 2u CHR 136,0 0t0 3 /dev/pts/0 lsof 4781 root 3r DIR 0,3 0 1 /proc lsof 4781 root 4r DIR 0,3 0 49587 /proc/4781/fd lsof 4781 root 5w FIFO 0,9 0t0 49597 pipe lsof 4781 root 6r FIFO 0,9 0t0 49598 pipe lsof 4782 root cwd DIR 253,0 4096 16790392 /home/kbrazil/testfiles lsof 4782 root rtd DIR 253,0 224 64 / lsof 4782 root txt REG 253,0 154184 1092 /usr/sbin/lsof lsof 4782 root mem REG 253,0 106075056 16781164 /usr/lib/locale/locale-archive lsof 4782 root mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so lsof 4782 root mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so lsof 4782 root mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 lsof 4782 root mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so lsof 4782 root mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 lsof 4782 root mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so lsof 4782 root 4r FIFO 0,9 0t0 49597 pipe lsof 4782 root 7w FIFO 0,9 0t0 49598 pipe jc-1.17.3/tests/fixtures/centos-7.7/lsof.json000066400000000000000000003350641415226333200206700ustar00rootroot00000000000000[{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1/cwd (readlink: Permission denied)"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1/root (readlink: Permission denied)"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1/exe (readlink: Permission denied)"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1/fd (opendir: Permission denied)"},{"command":"kthreadd","pid":2,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/2/cwd (readlink: Permission denied)"},{"command":"kthreadd","pid":2,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/2/root (readlink: Permission denied)"},{"command":"kthreadd","pid":2,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/2/exe (readlink: Permission denied)"},{"command":"kthreadd","pid":2,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/2/fd (opendir: Permission denied)"},{"command":"kworker/0","pid":4,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4/cwd (readlink: Permission denied)"},{"command":"kworker/0","pid":4,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4/root (readlink: Permission denied)"},{"command":"kworker/0","pid":4,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4/exe (readlink: Permission denied)"},{"command":"kworker/0","pid":4,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/4/fd (opendir: Permission denied)"},{"command":"kworker/u","pid":5,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/5/cwd (readlink: Permission denied)"},{"command":"kworker/u","pid":5,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/5/root (readlink: Permission denied)"},{"command":"kworker/u","pid":5,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/5/exe (readlink: Permission denied)"},{"command":"kworker/u","pid":5,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/5/fd (opendir: Permission denied)"},{"command":"ksoftirqd","pid":6,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/6/cwd (readlink: Permission denied)"},{"command":"ksoftirqd","pid":6,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/6/root (readlink: Permission denied)"},{"command":"ksoftirqd","pid":6,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/6/exe (readlink: Permission denied)"},{"command":"ksoftirqd","pid":6,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/6/fd (opendir: Permission denied)"},{"command":"migration","pid":7,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/7/cwd (readlink: Permission denied)"},{"command":"migration","pid":7,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/7/root (readlink: Permission denied)"},{"command":"migration","pid":7,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/7/exe (readlink: Permission denied)"},{"command":"migration","pid":7,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/7/fd (opendir: Permission denied)"},{"command":"rcu_bh","pid":8,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/8/cwd (readlink: Permission denied)"},{"command":"rcu_bh","pid":8,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/8/root (readlink: Permission denied)"},{"command":"rcu_bh","pid":8,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/8/exe (readlink: Permission denied)"},{"command":"rcu_bh","pid":8,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/8/fd (opendir: Permission denied)"},{"command":"rcu_sched","pid":9,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/9/cwd (readlink: Permission denied)"},{"command":"rcu_sched","pid":9,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/9/root (readlink: Permission denied)"},{"command":"rcu_sched","pid":9,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/9/exe (readlink: Permission denied)"},{"command":"rcu_sched","pid":9,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/9/fd (opendir: Permission denied)"},{"command":"lru-add-d","pid":10,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/10/cwd (readlink: Permission denied)"},{"command":"lru-add-d","pid":10,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/10/root (readlink: Permission denied)"},{"command":"lru-add-d","pid":10,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/10/exe (readlink: Permission denied)"},{"command":"lru-add-d","pid":10,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/10/fd (opendir: Permission denied)"},{"command":"watchdog/","pid":11,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/11/cwd (readlink: Permission denied)"},{"command":"watchdog/","pid":11,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/11/root (readlink: Permission denied)"},{"command":"watchdog/","pid":11,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/11/exe (readlink: Permission denied)"},{"command":"watchdog/","pid":11,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/11/fd (opendir: Permission denied)"},{"command":"kdevtmpfs","pid":13,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/13/cwd (readlink: Permission denied)"},{"command":"kdevtmpfs","pid":13,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/13/root (readlink: Permission denied)"},{"command":"kdevtmpfs","pid":13,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/13/exe (readlink: Permission denied)"},{"command":"kdevtmpfs","pid":13,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/13/fd (opendir: Permission denied)"},{"command":"netns","pid":14,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/14/cwd (readlink: Permission denied)"},{"command":"netns","pid":14,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/14/root (readlink: Permission denied)"},{"command":"netns","pid":14,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/14/exe (readlink: Permission denied)"},{"command":"netns","pid":14,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/14/fd (opendir: Permission denied)"},{"command":"khungtask","pid":15,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15/cwd (readlink: Permission denied)"},{"command":"khungtask","pid":15,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15/root (readlink: Permission denied)"},{"command":"khungtask","pid":15,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15/exe (readlink: Permission denied)"},{"command":"khungtask","pid":15,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/15/fd (opendir: Permission denied)"},{"command":"writeback","pid":16,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/16/cwd (readlink: Permission denied)"},{"command":"writeback","pid":16,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/16/root (readlink: Permission denied)"},{"command":"writeback","pid":16,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/16/exe (readlink: Permission denied)"},{"command":"writeback","pid":16,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/16/fd (opendir: Permission denied)"},{"command":"kintegrit","pid":17,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/17/cwd (readlink: Permission denied)"},{"command":"kintegrit","pid":17,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/17/root (readlink: Permission denied)"},{"command":"kintegrit","pid":17,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/17/exe (readlink: Permission denied)"},{"command":"kintegrit","pid":17,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/17/fd (opendir: Permission denied)"},{"command":"bioset","pid":18,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/18/cwd (readlink: Permission denied)"},{"command":"bioset","pid":18,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/18/root (readlink: Permission denied)"},{"command":"bioset","pid":18,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/18/exe (readlink: Permission denied)"},{"command":"bioset","pid":18,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/18/fd (opendir: Permission denied)"},{"command":"bioset","pid":19,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/19/cwd (readlink: Permission denied)"},{"command":"bioset","pid":19,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/19/root (readlink: Permission denied)"},{"command":"bioset","pid":19,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/19/exe (readlink: Permission denied)"},{"command":"bioset","pid":19,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/19/fd (opendir: Permission denied)"},{"command":"bioset","pid":20,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/20/cwd (readlink: Permission denied)"},{"command":"bioset","pid":20,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/20/root (readlink: Permission denied)"},{"command":"bioset","pid":20,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/20/exe (readlink: Permission denied)"},{"command":"bioset","pid":20,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/20/fd (opendir: Permission denied)"},{"command":"kblockd","pid":21,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/21/cwd (readlink: Permission denied)"},{"command":"kblockd","pid":21,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/21/root (readlink: Permission denied)"},{"command":"kblockd","pid":21,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/21/exe (readlink: Permission denied)"},{"command":"kblockd","pid":21,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/21/fd (opendir: Permission denied)"},{"command":"md","pid":22,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/22/cwd (readlink: Permission denied)"},{"command":"md","pid":22,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/22/root (readlink: Permission denied)"},{"command":"md","pid":22,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/22/exe (readlink: Permission denied)"},{"command":"md","pid":22,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/22/fd (opendir: Permission denied)"},{"command":"edac-poll","pid":23,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23/cwd (readlink: Permission denied)"},{"command":"edac-poll","pid":23,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23/root (readlink: Permission denied)"},{"command":"edac-poll","pid":23,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23/exe (readlink: Permission denied)"},{"command":"edac-poll","pid":23,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/23/fd (opendir: Permission denied)"},{"command":"watchdogd","pid":24,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/24/cwd (readlink: Permission denied)"},{"command":"watchdogd","pid":24,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/24/root (readlink: Permission denied)"},{"command":"watchdogd","pid":24,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/24/exe (readlink: Permission denied)"},{"command":"watchdogd","pid":24,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/24/fd (opendir: Permission denied)"},{"command":"kswapd0","pid":30,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/30/cwd (readlink: Permission denied)"},{"command":"kswapd0","pid":30,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/30/root (readlink: Permission denied)"},{"command":"kswapd0","pid":30,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/30/exe (readlink: Permission denied)"},{"command":"kswapd0","pid":30,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/30/fd (opendir: Permission denied)"},{"command":"ksmd","pid":31,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/31/cwd (readlink: Permission denied)"},{"command":"ksmd","pid":31,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/31/root (readlink: Permission denied)"},{"command":"ksmd","pid":31,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/31/exe (readlink: Permission denied)"},{"command":"ksmd","pid":31,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/31/fd (opendir: Permission denied)"},{"command":"khugepage","pid":32,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/32/cwd (readlink: Permission denied)"},{"command":"khugepage","pid":32,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/32/root (readlink: Permission denied)"},{"command":"khugepage","pid":32,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/32/exe (readlink: Permission denied)"},{"command":"khugepage","pid":32,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/32/fd (opendir: Permission denied)"},{"command":"crypto","pid":33,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/33/cwd (readlink: Permission denied)"},{"command":"crypto","pid":33,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/33/root (readlink: Permission denied)"},{"command":"crypto","pid":33,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/33/exe (readlink: Permission denied)"},{"command":"crypto","pid":33,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/33/fd (opendir: Permission denied)"},{"command":"kthrotld","pid":41,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/41/cwd (readlink: Permission denied)"},{"command":"kthrotld","pid":41,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/41/root (readlink: Permission denied)"},{"command":"kthrotld","pid":41,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/41/exe (readlink: Permission denied)"},{"command":"kthrotld","pid":41,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/41/fd (opendir: Permission denied)"},{"command":"kworker/u","pid":42,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/42/cwd (readlink: Permission denied)"},{"command":"kworker/u","pid":42,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/42/root (readlink: Permission denied)"},{"command":"kworker/u","pid":42,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/42/exe (readlink: Permission denied)"},{"command":"kworker/u","pid":42,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/42/fd (opendir: Permission denied)"},{"command":"kmpath_rd","pid":43,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/43/cwd (readlink: Permission denied)"},{"command":"kmpath_rd","pid":43,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/43/root (readlink: Permission denied)"},{"command":"kmpath_rd","pid":43,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/43/exe (readlink: Permission denied)"},{"command":"kmpath_rd","pid":43,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/43/fd (opendir: Permission denied)"},{"command":"kaluad","pid":44,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/44/cwd (readlink: Permission denied)"},{"command":"kaluad","pid":44,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/44/root (readlink: Permission denied)"},{"command":"kaluad","pid":44,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/44/exe (readlink: Permission denied)"},{"command":"kaluad","pid":44,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/44/fd (opendir: Permission denied)"},{"command":"kpsmoused","pid":45,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/45/cwd (readlink: Permission denied)"},{"command":"kpsmoused","pid":45,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/45/root (readlink: Permission denied)"},{"command":"kpsmoused","pid":45,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/45/exe (readlink: Permission denied)"},{"command":"kpsmoused","pid":45,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/45/fd (opendir: Permission denied)"},{"command":"ipv6_addr","pid":47,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/47/cwd (readlink: Permission denied)"},{"command":"ipv6_addr","pid":47,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/47/root (readlink: Permission denied)"},{"command":"ipv6_addr","pid":47,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/47/exe (readlink: Permission denied)"},{"command":"ipv6_addr","pid":47,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/47/fd (opendir: Permission denied)"},{"command":"deferwq","pid":60,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/60/cwd (readlink: Permission denied)"},{"command":"deferwq","pid":60,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/60/root (readlink: Permission denied)"},{"command":"deferwq","pid":60,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/60/exe (readlink: Permission denied)"},{"command":"deferwq","pid":60,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/60/fd (opendir: Permission denied)"},{"command":"kauditd","pid":95,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/95/cwd (readlink: Permission denied)"},{"command":"kauditd","pid":95,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/95/root (readlink: Permission denied)"},{"command":"kauditd","pid":95,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/95/exe (readlink: Permission denied)"},{"command":"kauditd","pid":95,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/95/fd (opendir: Permission denied)"},{"command":"mpt_poll_","pid":272,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/272/cwd (readlink: Permission denied)"},{"command":"mpt_poll_","pid":272,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/272/root (readlink: Permission denied)"},{"command":"mpt_poll_","pid":272,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/272/exe (readlink: Permission denied)"},{"command":"mpt_poll_","pid":272,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/272/fd (opendir: Permission denied)"},{"command":"mpt/0","pid":273,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/273/cwd (readlink: Permission denied)"},{"command":"mpt/0","pid":273,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/273/root (readlink: Permission denied)"},{"command":"mpt/0","pid":273,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/273/exe (readlink: Permission denied)"},{"command":"mpt/0","pid":273,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/273/fd (opendir: Permission denied)"},{"command":"ata_sff","pid":274,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/274/cwd (readlink: Permission denied)"},{"command":"ata_sff","pid":274,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/274/root (readlink: Permission denied)"},{"command":"ata_sff","pid":274,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/274/exe (readlink: Permission denied)"},{"command":"ata_sff","pid":274,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/274/fd (opendir: Permission denied)"},{"command":"nfit","pid":275,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/275/cwd (readlink: Permission denied)"},{"command":"nfit","pid":275,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/275/root (readlink: Permission denied)"},{"command":"nfit","pid":275,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/275/exe (readlink: Permission denied)"},{"command":"nfit","pid":275,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/275/fd (opendir: Permission denied)"},{"command":"scsi_eh_0","pid":291,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/291/cwd (readlink: Permission denied)"},{"command":"scsi_eh_0","pid":291,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/291/root (readlink: Permission denied)"},{"command":"scsi_eh_0","pid":291,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/291/exe (readlink: Permission denied)"},{"command":"scsi_eh_0","pid":291,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/291/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":295,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/295/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":295,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/295/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":295,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/295/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":295,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/295/fd (opendir: Permission denied)"},{"command":"scsi_eh_1","pid":330,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/330/cwd (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":330,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/330/root (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":330,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/330/exe (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":330,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/330/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":331,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/331/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":331,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/331/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":331,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/331/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":331,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/331/fd (opendir: Permission denied)"},{"command":"scsi_eh_2","pid":339,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/339/cwd (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":339,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/339/root (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":339,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/339/exe (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":339,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/339/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":346,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/346/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":346,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/346/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":346,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/346/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":346,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/346/fd (opendir: Permission denied)"},{"command":"irq/16-vm","pid":357,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/357/cwd (readlink: Permission denied)"},{"command":"irq/16-vm","pid":357,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/357/root (readlink: Permission denied)"},{"command":"irq/16-vm","pid":357,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/357/exe (readlink: Permission denied)"},{"command":"irq/16-vm","pid":357,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/357/fd (opendir: Permission denied)"},{"command":"ttm_swap","pid":358,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/358/cwd (readlink: Permission denied)"},{"command":"ttm_swap","pid":358,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/358/root (readlink: Permission denied)"},{"command":"ttm_swap","pid":358,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/358/exe (readlink: Permission denied)"},{"command":"ttm_swap","pid":358,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/358/fd (opendir: Permission denied)"},{"command":"kdmflush","pid":431,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/431/cwd (readlink: Permission denied)"},{"command":"kdmflush","pid":431,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/431/root (readlink: Permission denied)"},{"command":"kdmflush","pid":431,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/431/exe (readlink: Permission denied)"},{"command":"kdmflush","pid":431,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/431/fd (opendir: Permission denied)"},{"command":"bioset","pid":432,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/432/cwd (readlink: Permission denied)"},{"command":"bioset","pid":432,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/432/root (readlink: Permission denied)"},{"command":"bioset","pid":432,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/432/exe (readlink: Permission denied)"},{"command":"bioset","pid":432,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/432/fd (opendir: Permission denied)"},{"command":"kdmflush","pid":442,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/442/cwd (readlink: Permission denied)"},{"command":"kdmflush","pid":442,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/442/root (readlink: Permission denied)"},{"command":"kdmflush","pid":442,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/442/exe (readlink: Permission denied)"},{"command":"kdmflush","pid":442,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/442/fd (opendir: Permission denied)"},{"command":"bioset","pid":443,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/443/cwd (readlink: Permission denied)"},{"command":"bioset","pid":443,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/443/root (readlink: Permission denied)"},{"command":"bioset","pid":443,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/443/exe (readlink: Permission denied)"},{"command":"bioset","pid":443,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/443/fd (opendir: Permission denied)"},{"command":"bioset","pid":455,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/455/cwd (readlink: Permission denied)"},{"command":"bioset","pid":455,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/455/root (readlink: Permission denied)"},{"command":"bioset","pid":455,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/455/exe (readlink: Permission denied)"},{"command":"bioset","pid":455,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/455/fd (opendir: Permission denied)"},{"command":"xfsalloc","pid":456,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/456/cwd (readlink: Permission denied)"},{"command":"xfsalloc","pid":456,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/456/root (readlink: Permission denied)"},{"command":"xfsalloc","pid":456,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/456/exe (readlink: Permission denied)"},{"command":"xfsalloc","pid":456,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/456/fd (opendir: Permission denied)"},{"command":"xfs_mru_c","pid":457,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/457/cwd (readlink: Permission denied)"},{"command":"xfs_mru_c","pid":457,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/457/root (readlink: Permission denied)"},{"command":"xfs_mru_c","pid":457,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/457/exe (readlink: Permission denied)"},{"command":"xfs_mru_c","pid":457,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/457/fd (opendir: Permission denied)"},{"command":"xfs-buf/d","pid":458,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/458/cwd (readlink: Permission denied)"},{"command":"xfs-buf/d","pid":458,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/458/root (readlink: Permission denied)"},{"command":"xfs-buf/d","pid":458,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/458/exe (readlink: Permission denied)"},{"command":"xfs-buf/d","pid":458,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/458/fd (opendir: Permission denied)"},{"command":"xfs-data/","pid":459,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/459/cwd (readlink: Permission denied)"},{"command":"xfs-data/","pid":459,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/459/root (readlink: Permission denied)"},{"command":"xfs-data/","pid":459,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/459/exe (readlink: Permission denied)"},{"command":"xfs-data/","pid":459,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/459/fd (opendir: Permission denied)"},{"command":"xfs-conv/","pid":460,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/460/cwd (readlink: Permission denied)"},{"command":"xfs-conv/","pid":460,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/460/root (readlink: Permission denied)"},{"command":"xfs-conv/","pid":460,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/460/exe (readlink: Permission denied)"},{"command":"xfs-conv/","pid":460,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/460/fd (opendir: Permission denied)"},{"command":"xfs-cil/d","pid":461,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/461/cwd (readlink: Permission denied)"},{"command":"xfs-cil/d","pid":461,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/461/root (readlink: Permission denied)"},{"command":"xfs-cil/d","pid":461,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/461/exe (readlink: Permission denied)"},{"command":"xfs-cil/d","pid":461,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/461/fd (opendir: Permission denied)"},{"command":"xfs-recla","pid":462,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/462/cwd (readlink: Permission denied)"},{"command":"xfs-recla","pid":462,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/462/root (readlink: Permission denied)"},{"command":"xfs-recla","pid":462,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/462/exe (readlink: Permission denied)"},{"command":"xfs-recla","pid":462,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/462/fd (opendir: Permission denied)"},{"command":"xfs-log/d","pid":463,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/463/cwd (readlink: Permission denied)"},{"command":"xfs-log/d","pid":463,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/463/root (readlink: Permission denied)"},{"command":"xfs-log/d","pid":463,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/463/exe (readlink: Permission denied)"},{"command":"xfs-log/d","pid":463,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/463/fd (opendir: Permission denied)"},{"command":"xfs-eofbl","pid":464,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/464/cwd (readlink: Permission denied)"},{"command":"xfs-eofbl","pid":464,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/464/root (readlink: Permission denied)"},{"command":"xfs-eofbl","pid":464,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/464/exe (readlink: Permission denied)"},{"command":"xfs-eofbl","pid":464,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/464/fd (opendir: Permission denied)"},{"command":"xfsaild/d","pid":465,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/465/cwd (readlink: Permission denied)"},{"command":"xfsaild/d","pid":465,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/465/root (readlink: Permission denied)"},{"command":"xfsaild/d","pid":465,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/465/exe (readlink: Permission denied)"},{"command":"xfsaild/d","pid":465,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/465/fd (opendir: Permission denied)"},{"command":"kworker/0","pid":466,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/466/cwd (readlink: Permission denied)"},{"command":"kworker/0","pid":466,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/466/root (readlink: Permission denied)"},{"command":"kworker/0","pid":466,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/466/exe (readlink: Permission denied)"},{"command":"kworker/0","pid":466,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/466/fd (opendir: Permission denied)"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/544/cwd (readlink: Permission denied)"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/544/root (readlink: Permission denied)"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/544/exe (readlink: Permission denied)"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/544/fd (opendir: Permission denied)"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/560/cwd (readlink: Permission denied)"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/560/root (readlink: Permission denied)"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/560/exe (readlink: Permission denied)"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/560/fd (opendir: Permission denied)"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/577/cwd (readlink: Permission denied)"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/577/root (readlink: Permission denied)"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/577/exe (readlink: Permission denied)"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/577/fd (opendir: Permission denied)"},{"command":"xfs-buf/s","pid":629,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/629/cwd (readlink: Permission denied)"},{"command":"xfs-buf/s","pid":629,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/629/root (readlink: Permission denied)"},{"command":"xfs-buf/s","pid":629,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/629/exe (readlink: Permission denied)"},{"command":"xfs-buf/s","pid":629,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/629/fd (opendir: Permission denied)"},{"command":"xfs-data/","pid":638,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/638/cwd (readlink: Permission denied)"},{"command":"xfs-data/","pid":638,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/638/root (readlink: Permission denied)"},{"command":"xfs-data/","pid":638,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/638/exe (readlink: Permission denied)"},{"command":"xfs-data/","pid":638,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/638/fd (opendir: Permission denied)"},{"command":"xfs-conv/","pid":641,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/641/cwd (readlink: Permission denied)"},{"command":"xfs-conv/","pid":641,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/641/root (readlink: Permission denied)"},{"command":"xfs-conv/","pid":641,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/641/exe (readlink: Permission denied)"},{"command":"xfs-conv/","pid":641,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/641/fd (opendir: Permission denied)"},{"command":"xfs-cil/s","pid":646,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/646/cwd (readlink: Permission denied)"},{"command":"xfs-cil/s","pid":646,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/646/root (readlink: Permission denied)"},{"command":"xfs-cil/s","pid":646,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/646/exe (readlink: Permission denied)"},{"command":"xfs-cil/s","pid":646,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/646/fd (opendir: Permission denied)"},{"command":"xfs-recla","pid":651,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/651/cwd (readlink: Permission denied)"},{"command":"xfs-recla","pid":651,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/651/root (readlink: Permission denied)"},{"command":"xfs-recla","pid":651,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/651/exe (readlink: Permission denied)"},{"command":"xfs-recla","pid":651,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/651/fd (opendir: Permission denied)"},{"command":"xfs-log/s","pid":654,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/654/cwd (readlink: Permission denied)"},{"command":"xfs-log/s","pid":654,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/654/root (readlink: Permission denied)"},{"command":"xfs-log/s","pid":654,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/654/exe (readlink: Permission denied)"},{"command":"xfs-log/s","pid":654,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/654/fd (opendir: Permission denied)"},{"command":"xfs-eofbl","pid":658,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/658/cwd (readlink: Permission denied)"},{"command":"xfs-eofbl","pid":658,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/658/root (readlink: Permission denied)"},{"command":"xfs-eofbl","pid":658,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/658/exe (readlink: Permission denied)"},{"command":"xfs-eofbl","pid":658,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/658/fd (opendir: Permission denied)"},{"command":"xfsaild/s","pid":667,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/667/cwd (readlink: Permission denied)"},{"command":"xfsaild/s","pid":667,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/667/root (readlink: Permission denied)"},{"command":"xfsaild/s","pid":667,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/667/exe (readlink: Permission denied)"},{"command":"xfsaild/s","pid":667,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/667/fd (opendir: Permission denied)"},{"command":"kworker/u","pid":675,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/675/cwd (readlink: Permission denied)"},{"command":"kworker/u","pid":675,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/675/root (readlink: Permission denied)"},{"command":"kworker/u","pid":675,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/675/exe (readlink: Permission denied)"},{"command":"kworker/u","pid":675,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/675/fd (opendir: Permission denied)"},{"command":"hci0","pid":677,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/677/cwd (readlink: Permission denied)"},{"command":"hci0","pid":677,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/677/root (readlink: Permission denied)"},{"command":"hci0","pid":677,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/677/exe (readlink: Permission denied)"},{"command":"hci0","pid":677,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/677/fd (opendir: Permission denied)"},{"command":"hci0","pid":678,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/678/cwd (readlink: Permission denied)"},{"command":"hci0","pid":678,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/678/root (readlink: Permission denied)"},{"command":"hci0","pid":678,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/678/exe (readlink: Permission denied)"},{"command":"hci0","pid":678,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/678/fd (opendir: Permission denied)"},{"command":"kworker/u","pid":681,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/681/cwd (readlink: Permission denied)"},{"command":"kworker/u","pid":681,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/681/root (readlink: Permission denied)"},{"command":"kworker/u","pid":681,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/681/exe (readlink: Permission denied)"},{"command":"kworker/u","pid":681,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/681/fd (opendir: Permission denied)"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/756/cwd (readlink: Permission denied)"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/756/root (readlink: Permission denied)"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/756/exe (readlink: Permission denied)"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/756/fd (opendir: Permission denied)"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/756/task/757/cwd (readlink: Permission denied)"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/756/task/757/root (readlink: Permission denied)"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/756/task/757/exe (readlink: Permission denied)"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/756/task/757/fd (opendir: Permission denied)"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/778/cwd (readlink: Permission denied)"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/778/root (readlink: Permission denied)"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/778/exe (readlink: Permission denied)"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/778/fd (opendir: Permission denied)"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/778/task/779/cwd (readlink: Permission denied)"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/778/task/779/root (readlink: Permission denied)"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/778/task/779/exe (readlink: Permission denied)"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/778/task/779/fd (opendir: Permission denied)"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/781/cwd (readlink: Permission denied)"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/781/root (readlink: Permission denied)"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/781/exe (readlink: Permission denied)"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/781/fd (opendir: Permission denied)"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/781/task/802/cwd (readlink: Permission denied)"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/781/task/802/root (readlink: Permission denied)"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/781/task/802/exe (readlink: Permission denied)"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/781/task/802/fd (opendir: Permission denied)"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/781/task/805/cwd (readlink: Permission denied)"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/781/task/805/root (readlink: Permission denied)"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/781/task/805/exe (readlink: Permission denied)"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/781/task/805/fd (opendir: Permission denied)"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/781/task/808/cwd (readlink: Permission denied)"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/781/task/808/root (readlink: Permission denied)"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/781/task/808/exe (readlink: Permission denied)"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/781/task/808/fd (opendir: Permission denied)"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/781/task/812/cwd (readlink: Permission denied)"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/781/task/812/root (readlink: Permission denied)"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/781/task/812/exe (readlink: Permission denied)"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/781/task/812/fd (opendir: Permission denied)"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/781/task/814/cwd (readlink: Permission denied)"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/781/task/814/root (readlink: Permission denied)"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/781/task/814/exe (readlink: Permission denied)"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/781/task/814/fd (opendir: Permission denied)"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/781/task/818/cwd (readlink: Permission denied)"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/781/task/818/root (readlink: Permission denied)"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/781/task/818/exe (readlink: Permission denied)"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/781/task/818/fd (opendir: Permission denied)"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/784/cwd (readlink: Permission denied)"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/784/root (readlink: Permission denied)"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/784/exe (readlink: Permission denied)"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/784/fd (opendir: Permission denied)"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/792/cwd (readlink: Permission denied)"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/792/root (readlink: Permission denied)"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/792/exe (readlink: Permission denied)"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/792/fd (opendir: Permission denied)"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/795/cwd (readlink: Permission denied)"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/795/root (readlink: Permission denied)"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/795/exe (readlink: Permission denied)"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/795/fd (opendir: Permission denied)"},{"command":"agetty","pid":815,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/815/cwd (readlink: Permission denied)"},{"command":"agetty","pid":815,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/815/root (readlink: Permission denied)"},{"command":"agetty","pid":815,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/815/exe (readlink: Permission denied)"},{"command":"agetty","pid":815,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/815/fd (opendir: Permission denied)"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/817/cwd (readlink: Permission denied)"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/817/root (readlink: Permission denied)"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/817/exe (readlink: Permission denied)"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/817/fd (opendir: Permission denied)"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/823/cwd (readlink: Permission denied)"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/823/root (readlink: Permission denied)"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/823/exe (readlink: Permission denied)"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/823/fd (opendir: Permission denied)"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/823/task/1013/cwd (readlink: Permission denied)"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/823/task/1013/root (readlink: Permission denied)"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/823/task/1013/exe (readlink: Permission denied)"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/823/task/1013/fd (opendir: Permission denied)"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/865/cwd (readlink: Permission denied)"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/865/root (readlink: Permission denied)"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/865/exe (readlink: Permission denied)"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/865/fd (opendir: Permission denied)"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/865/task/875/cwd (readlink: Permission denied)"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/865/task/875/root (readlink: Permission denied)"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/865/task/875/exe (readlink: Permission denied)"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/865/task/875/fd (opendir: Permission denied)"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/865/task/878/cwd (readlink: Permission denied)"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/865/task/878/root (readlink: Permission denied)"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/865/task/878/exe (readlink: Permission denied)"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/865/task/878/fd (opendir: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/cwd (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/root (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/exe (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1205/fd (opendir: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1214/cwd (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1214/root (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1214/exe (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1214/fd (opendir: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1215/cwd (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1215/root (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1215/exe (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1215/fd (opendir: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1217/cwd (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1217/root (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1217/exe (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1217/fd (opendir: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1231/cwd (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1231/root (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1231/exe (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1231/fd (opendir: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1260/cwd (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1260/root (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1260/exe (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1260/fd (opendir: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1449/cwd (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1449/root (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1449/exe (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1449/fd (opendir: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1450/cwd (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1450/root (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1450/exe (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1450/fd (opendir: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1451/cwd (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1451/root (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1451/exe (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1451/fd (opendir: Permission denied)"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1206/cwd (readlink: Permission denied)"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1206/root (readlink: Permission denied)"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1206/exe (readlink: Permission denied)"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1206/fd (opendir: Permission denied)"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1207/cwd (readlink: Permission denied)"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1207/root (readlink: Permission denied)"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1207/exe (readlink: Permission denied)"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1207/fd (opendir: Permission denied)"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1207/task/1719/cwd (readlink: Permission denied)"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1207/task/1719/root (readlink: Permission denied)"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1207/task/1719/exe (readlink: Permission denied)"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1207/task/1719/fd (opendir: Permission denied)"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1207/task/1720/cwd (readlink: Permission denied)"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1207/task/1720/root (readlink: Permission denied)"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1207/task/1720/exe (readlink: Permission denied)"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1207/task/1720/fd (opendir: Permission denied)"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1207/task/1725/cwd (readlink: Permission denied)"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1207/task/1725/root (readlink: Permission denied)"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1207/task/1725/exe (readlink: Permission denied)"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1207/task/1725/fd (opendir: Permission denied)"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1207/task/1727/cwd (readlink: Permission denied)"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1207/task/1727/root (readlink: Permission denied)"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1207/task/1727/exe (readlink: Permission denied)"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1207/task/1727/fd (opendir: Permission denied)"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1209/cwd (readlink: Permission denied)"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1209/root (readlink: Permission denied)"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1209/exe (readlink: Permission denied)"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1209/fd (opendir: Permission denied)"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1209/task/1212/cwd (readlink: Permission denied)"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1209/task/1212/root (readlink: Permission denied)"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1209/task/1212/exe (readlink: Permission denied)"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1209/task/1212/fd (opendir: Permission denied)"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1209/task/1213/cwd (readlink: Permission denied)"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1209/task/1213/root (readlink: Permission denied)"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1209/task/1213/exe (readlink: Permission denied)"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1209/task/1213/fd (opendir: Permission denied)"},{"command":"docker-co","pid":1256,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/cwd (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/root (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/exe (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1256/fd (opendir: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1272,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1272/cwd (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1272,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1272/root (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1272,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1272/exe (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1272,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1272/fd (opendir: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1273,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1273/cwd (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1273,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1273/root (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1273,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1273/exe (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1273,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1273/fd (opendir: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1275,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1275/cwd (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1275,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1275/root (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1275,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1275/exe (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1275,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1275/fd (opendir: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1279,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1279/cwd (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1279,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1279/root (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1279,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1279/exe (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1279,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1279/fd (opendir: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1280,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1280/cwd (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1280,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1280/root (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1280,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1280/exe (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1280,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1280/fd (opendir: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1281,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1281/cwd (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1281,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1281/root (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1281,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1281/exe (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1281,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1281/fd (opendir: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1282,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1282/cwd (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1282,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1282/root (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1282,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1282/exe (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1282,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1282/fd (opendir: Permission denied)"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1469/cwd (readlink: Permission denied)"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1469/root (readlink: Permission denied)"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1469/exe (readlink: Permission denied)"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1469/fd (opendir: Permission denied)"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1474/cwd (readlink: Permission denied)"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1474/root (readlink: Permission denied)"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1474/exe (readlink: Permission denied)"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1474/fd (opendir: Permission denied)"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"253,0","size_off":6,"node":503040,"name":"/home/kbrazil/git"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"253,0","size_off":964600,"node":50332501,"name":"/usr/bin/bash"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":174576,"node":9816,"name":"/usr/lib64/libtinfo.so.5.9"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":26254,"node":16789060,"name":"/usr/lib64/gconv/gconv-modules.cache"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"4,64","size_off":0,"node":8462,"name":"/dev/ttyS0"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"4,64","size_off":0,"node":8462,"name":"/dev/ttyS0"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"4,64","size_off":0,"node":8462,"name":"/dev/ttyS0"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"255u","type":"CHR","device":"4,64","size_off":0,"node":8462,"name":"/dev/ttyS0"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1939/cwd (readlink: Permission denied)"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1939/root (readlink: Permission denied)"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1939/exe (readlink: Permission denied)"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1939/fd (opendir: Permission denied)"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4262/cwd (readlink: Permission denied)"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4262/root (readlink: Permission denied)"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4262/exe (readlink: Permission denied)"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/4262/fd (opendir: Permission denied)"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4314/cwd (readlink: Permission denied)"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4314/root (readlink: Permission denied)"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4314/exe (readlink: Permission denied)"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/4314/fd (opendir: Permission denied)"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4318/cwd (readlink: Permission denied)"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4318/root (readlink: Permission denied)"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4318/exe (readlink: Permission denied)"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/4318/fd (opendir: Permission denied)"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"253,0","size_off":4096,"node":16790392,"name":"/home/kbrazil/testfiles"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"253,0","size_off":964600,"node":50332501,"name":"/usr/bin/bash"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":174576,"node":9816,"name":"/usr/lib64/libtinfo.so.5.9"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":26254,"node":16789060,"name":"/usr/lib64/gconv/gconv-modules.cache"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"255u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"kworker/0","pid":4587,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4587/cwd (readlink: Permission denied)"},{"command":"kworker/0","pid":4587,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4587/root (readlink: Permission denied)"},{"command":"kworker/0","pid":4587,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4587/exe (readlink: Permission denied)"},{"command":"kworker/0","pid":4587,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/4587/fd (opendir: Permission denied)"},{"command":"kworker/0","pid":4715,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4715/cwd (readlink: Permission denied)"},{"command":"kworker/0","pid":4715,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4715/root (readlink: Permission denied)"},{"command":"kworker/0","pid":4715,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4715/exe (readlink: Permission denied)"},{"command":"kworker/0","pid":4715,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/4715/fd (opendir: Permission denied)"},{"command":"kworker/0","pid":4716,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4716/cwd (readlink: Permission denied)"},{"command":"kworker/0","pid":4716,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4716/root (readlink: Permission denied)"},{"command":"kworker/0","pid":4716,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4716/exe (readlink: Permission denied)"},{"command":"kworker/0","pid":4716,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/4716/fd (opendir: Permission denied)"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"253,0","size_off":4096,"node":16790392,"name":"/home/kbrazil/testfiles"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"253,0","size_off":964600,"node":50332501,"name":"/usr/bin/bash"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":174576,"node":9816,"name":"/usr/lib64/libtinfo.so.5.9"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":26254,"node":16789060,"name":"/usr/lib64/gconv/gconv-modules.cache"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"255r","type":"REG","device":"253,0","size_off":1568,"node":16993585,"name":"/home/kbrazil/testfiles/tests.sh"},{"command":"sleep","pid":4768,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"253,0","size_off":4096,"node":16790392,"name":"/home/kbrazil/testfiles"},{"command":"sleep","pid":4768,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"sleep","pid":4768,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"253,0","size_off":33128,"node":50338469,"name":"/usr/bin/sleep"},{"command":"sleep","pid":4768,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"sleep","pid":4768,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"sleep","pid":4768,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"sleep","pid":4768,"tid":null,"user":"kbrazil","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"sleep","pid":4768,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":4768,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":4769,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"253,0","size_off":4096,"node":16790392,"name":"/home/kbrazil/testfiles"},{"command":"sleep","pid":4769,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"sleep","pid":4769,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"253,0","size_off":33128,"node":50338469,"name":"/usr/bin/sleep"},{"command":"sleep","pid":4769,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"sleep","pid":4769,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"sleep","pid":4769,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"sleep","pid":4769,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":4769,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":4769,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":4770,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"253,0","size_off":4096,"node":16790392,"name":"/home/kbrazil/testfiles"},{"command":"sleep","pid":4770,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"sleep","pid":4770,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"253,0","size_off":33128,"node":50338469,"name":"/usr/bin/sleep"},{"command":"sleep","pid":4770,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"sleep","pid":4770,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"sleep","pid":4770,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"sleep","pid":4770,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":4770,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":4770,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":4771,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"253,0","size_off":4096,"node":16790392,"name":"/home/kbrazil/testfiles"},{"command":"sleep","pid":4771,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"sleep","pid":4771,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"253,0","size_off":33128,"node":50338469,"name":"/usr/bin/sleep"},{"command":"sleep","pid":4771,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"sleep","pid":4771,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"sleep","pid":4771,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"sleep","pid":4771,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":4771,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":4771,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"lsof","pid":4777,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"253,0","size_off":4096,"node":16790392,"name":"/home/kbrazil/testfiles"},{"command":"lsof","pid":4777,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"lsof","pid":4777,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"253,0","size_off":154184,"node":1092,"name":"/usr/sbin/lsof"},{"command":"lsof","pid":4777,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"lsof","pid":4777,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"lsof","pid":4777,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"lsof","pid":4777,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"lsof","pid":4777,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"lsof","pid":4777,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"lsof","pid":4777,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"lsof","pid":4777,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"lsof","pid":4777,"tid":null,"user":"kbrazil","fd":"1w","type":"REG","device":"253,0","size_off":0,"node":16825878,"name":"/home/kbrazil/testfiles/lsof.out"},{"command":"lsof","pid":4777,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"lsof","pid":4777,"tid":null,"user":"kbrazil","fd":"3r","type":"DIR","device":"0,3","size_off":0,"node":1,"name":"/proc"},{"command":"lsof","pid":4777,"tid":null,"user":"kbrazil","fd":"4r","type":"DIR","device":"0,3","size_off":0,"node":49414,"name":"/proc/4777/fd"},{"command":"lsof","pid":4777,"tid":null,"user":"kbrazil","fd":"5w","type":"FIFO","device":"0,9","size_off":0,"node":49419,"name":"pipe"},{"command":"lsof","pid":4777,"tid":null,"user":"kbrazil","fd":"6r","type":"FIFO","device":"0,9","size_off":0,"node":49420,"name":"pipe"},{"command":"lsof","pid":4778,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"253,0","size_off":4096,"node":16790392,"name":"/home/kbrazil/testfiles"},{"command":"lsof","pid":4778,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"lsof","pid":4778,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"253,0","size_off":154184,"node":1092,"name":"/usr/sbin/lsof"},{"command":"lsof","pid":4778,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"lsof","pid":4778,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"lsof","pid":4778,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"lsof","pid":4778,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"lsof","pid":4778,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"lsof","pid":4778,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"lsof","pid":4778,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"lsof","pid":4778,"tid":null,"user":"kbrazil","fd":"4r","type":"FIFO","device":"0,9","size_off":0,"node":49419,"name":"pipe"},{"command":"lsof","pid":4778,"tid":null,"user":"kbrazil","fd":"7w","type":"FIFO","device":"0,9","size_off":0,"node":49420,"name":"pipe"}] jc-1.17.3/tests/fixtures/centos-7.7/lsof.out000066400000000000000000002116471415226333200205260ustar00rootroot00000000000000COMMAND PID TID USER FD TYPE DEVICE SIZE/OFF NODE NAME systemd 1 root cwd unknown /proc/1/cwd (readlink: Permission denied) systemd 1 root rtd unknown /proc/1/root (readlink: Permission denied) systemd 1 root txt unknown /proc/1/exe (readlink: Permission denied) systemd 1 root NOFD /proc/1/fd (opendir: Permission denied) kthreadd 2 root cwd unknown /proc/2/cwd (readlink: Permission denied) kthreadd 2 root rtd unknown /proc/2/root (readlink: Permission denied) kthreadd 2 root txt unknown /proc/2/exe (readlink: Permission denied) kthreadd 2 root NOFD /proc/2/fd (opendir: Permission denied) kworker/0 4 root cwd unknown /proc/4/cwd (readlink: Permission denied) kworker/0 4 root rtd unknown /proc/4/root (readlink: Permission denied) kworker/0 4 root txt unknown /proc/4/exe (readlink: Permission denied) kworker/0 4 root NOFD /proc/4/fd (opendir: Permission denied) kworker/u 5 root cwd unknown /proc/5/cwd (readlink: Permission denied) kworker/u 5 root rtd unknown /proc/5/root (readlink: Permission denied) kworker/u 5 root txt unknown /proc/5/exe (readlink: Permission denied) kworker/u 5 root NOFD /proc/5/fd (opendir: Permission denied) ksoftirqd 6 root cwd unknown /proc/6/cwd (readlink: Permission denied) ksoftirqd 6 root rtd unknown /proc/6/root (readlink: Permission denied) ksoftirqd 6 root txt unknown /proc/6/exe (readlink: Permission denied) ksoftirqd 6 root NOFD /proc/6/fd (opendir: Permission denied) migration 7 root cwd unknown /proc/7/cwd (readlink: Permission denied) migration 7 root rtd unknown /proc/7/root (readlink: Permission denied) migration 7 root txt unknown /proc/7/exe (readlink: Permission denied) migration 7 root NOFD /proc/7/fd (opendir: Permission denied) rcu_bh 8 root cwd unknown /proc/8/cwd (readlink: Permission denied) rcu_bh 8 root rtd unknown /proc/8/root (readlink: Permission denied) rcu_bh 8 root txt unknown /proc/8/exe (readlink: Permission denied) rcu_bh 8 root NOFD /proc/8/fd (opendir: Permission denied) rcu_sched 9 root cwd unknown /proc/9/cwd (readlink: Permission denied) rcu_sched 9 root rtd unknown /proc/9/root (readlink: Permission denied) rcu_sched 9 root txt unknown /proc/9/exe (readlink: Permission denied) rcu_sched 9 root NOFD /proc/9/fd (opendir: Permission denied) lru-add-d 10 root cwd unknown /proc/10/cwd (readlink: Permission denied) lru-add-d 10 root rtd unknown /proc/10/root (readlink: Permission denied) lru-add-d 10 root txt unknown /proc/10/exe (readlink: Permission denied) lru-add-d 10 root NOFD /proc/10/fd (opendir: Permission denied) watchdog/ 11 root cwd unknown /proc/11/cwd (readlink: Permission denied) watchdog/ 11 root rtd unknown /proc/11/root (readlink: Permission denied) watchdog/ 11 root txt unknown /proc/11/exe (readlink: Permission denied) watchdog/ 11 root NOFD /proc/11/fd (opendir: Permission denied) kdevtmpfs 13 root cwd unknown /proc/13/cwd (readlink: Permission denied) kdevtmpfs 13 root rtd unknown /proc/13/root (readlink: Permission denied) kdevtmpfs 13 root txt unknown /proc/13/exe (readlink: Permission denied) kdevtmpfs 13 root NOFD /proc/13/fd (opendir: Permission denied) netns 14 root cwd unknown /proc/14/cwd (readlink: Permission denied) netns 14 root rtd unknown /proc/14/root (readlink: Permission denied) netns 14 root txt unknown /proc/14/exe (readlink: Permission denied) netns 14 root NOFD /proc/14/fd (opendir: Permission denied) khungtask 15 root cwd unknown /proc/15/cwd (readlink: Permission denied) khungtask 15 root rtd unknown /proc/15/root (readlink: Permission denied) khungtask 15 root txt unknown /proc/15/exe (readlink: Permission denied) khungtask 15 root NOFD /proc/15/fd (opendir: Permission denied) writeback 16 root cwd unknown /proc/16/cwd (readlink: Permission denied) writeback 16 root rtd unknown /proc/16/root (readlink: Permission denied) writeback 16 root txt unknown /proc/16/exe (readlink: Permission denied) writeback 16 root NOFD /proc/16/fd (opendir: Permission denied) kintegrit 17 root cwd unknown /proc/17/cwd (readlink: Permission denied) kintegrit 17 root rtd unknown /proc/17/root (readlink: Permission denied) kintegrit 17 root txt unknown /proc/17/exe (readlink: Permission denied) kintegrit 17 root NOFD /proc/17/fd (opendir: Permission denied) bioset 18 root cwd unknown /proc/18/cwd (readlink: Permission denied) bioset 18 root rtd unknown /proc/18/root (readlink: Permission denied) bioset 18 root txt unknown /proc/18/exe (readlink: Permission denied) bioset 18 root NOFD /proc/18/fd (opendir: Permission denied) bioset 19 root cwd unknown /proc/19/cwd (readlink: Permission denied) bioset 19 root rtd unknown /proc/19/root (readlink: Permission denied) bioset 19 root txt unknown /proc/19/exe (readlink: Permission denied) bioset 19 root NOFD /proc/19/fd (opendir: Permission denied) bioset 20 root cwd unknown /proc/20/cwd (readlink: Permission denied) bioset 20 root rtd unknown /proc/20/root (readlink: Permission denied) bioset 20 root txt unknown /proc/20/exe (readlink: Permission denied) bioset 20 root NOFD /proc/20/fd (opendir: Permission denied) kblockd 21 root cwd unknown /proc/21/cwd (readlink: Permission denied) kblockd 21 root rtd unknown /proc/21/root (readlink: Permission denied) kblockd 21 root txt unknown /proc/21/exe (readlink: Permission denied) kblockd 21 root NOFD /proc/21/fd (opendir: Permission denied) md 22 root cwd unknown /proc/22/cwd (readlink: Permission denied) md 22 root rtd unknown /proc/22/root (readlink: Permission denied) md 22 root txt unknown /proc/22/exe (readlink: Permission denied) md 22 root NOFD /proc/22/fd (opendir: Permission denied) edac-poll 23 root cwd unknown /proc/23/cwd (readlink: Permission denied) edac-poll 23 root rtd unknown /proc/23/root (readlink: Permission denied) edac-poll 23 root txt unknown /proc/23/exe (readlink: Permission denied) edac-poll 23 root NOFD /proc/23/fd (opendir: Permission denied) watchdogd 24 root cwd unknown /proc/24/cwd (readlink: Permission denied) watchdogd 24 root rtd unknown /proc/24/root (readlink: Permission denied) watchdogd 24 root txt unknown /proc/24/exe (readlink: Permission denied) watchdogd 24 root NOFD /proc/24/fd (opendir: Permission denied) kswapd0 30 root cwd unknown /proc/30/cwd (readlink: Permission denied) kswapd0 30 root rtd unknown /proc/30/root (readlink: Permission denied) kswapd0 30 root txt unknown /proc/30/exe (readlink: Permission denied) kswapd0 30 root NOFD /proc/30/fd (opendir: Permission denied) ksmd 31 root cwd unknown /proc/31/cwd (readlink: Permission denied) ksmd 31 root rtd unknown /proc/31/root (readlink: Permission denied) ksmd 31 root txt unknown /proc/31/exe (readlink: Permission denied) ksmd 31 root NOFD /proc/31/fd (opendir: Permission denied) khugepage 32 root cwd unknown /proc/32/cwd (readlink: Permission denied) khugepage 32 root rtd unknown /proc/32/root (readlink: Permission denied) khugepage 32 root txt unknown /proc/32/exe (readlink: Permission denied) khugepage 32 root NOFD /proc/32/fd (opendir: Permission denied) crypto 33 root cwd unknown /proc/33/cwd (readlink: Permission denied) crypto 33 root rtd unknown /proc/33/root (readlink: Permission denied) crypto 33 root txt unknown /proc/33/exe (readlink: Permission denied) crypto 33 root NOFD /proc/33/fd (opendir: Permission denied) kthrotld 41 root cwd unknown /proc/41/cwd (readlink: Permission denied) kthrotld 41 root rtd unknown /proc/41/root (readlink: Permission denied) kthrotld 41 root txt unknown /proc/41/exe (readlink: Permission denied) kthrotld 41 root NOFD /proc/41/fd (opendir: Permission denied) kworker/u 42 root cwd unknown /proc/42/cwd (readlink: Permission denied) kworker/u 42 root rtd unknown /proc/42/root (readlink: Permission denied) kworker/u 42 root txt unknown /proc/42/exe (readlink: Permission denied) kworker/u 42 root NOFD /proc/42/fd (opendir: Permission denied) kmpath_rd 43 root cwd unknown /proc/43/cwd (readlink: Permission denied) kmpath_rd 43 root rtd unknown /proc/43/root (readlink: Permission denied) kmpath_rd 43 root txt unknown /proc/43/exe (readlink: Permission denied) kmpath_rd 43 root NOFD /proc/43/fd (opendir: Permission denied) kaluad 44 root cwd unknown /proc/44/cwd (readlink: Permission denied) kaluad 44 root rtd unknown /proc/44/root (readlink: Permission denied) kaluad 44 root txt unknown /proc/44/exe (readlink: Permission denied) kaluad 44 root NOFD /proc/44/fd (opendir: Permission denied) kpsmoused 45 root cwd unknown /proc/45/cwd (readlink: Permission denied) kpsmoused 45 root rtd unknown /proc/45/root (readlink: Permission denied) kpsmoused 45 root txt unknown /proc/45/exe (readlink: Permission denied) kpsmoused 45 root NOFD /proc/45/fd (opendir: Permission denied) ipv6_addr 47 root cwd unknown /proc/47/cwd (readlink: Permission denied) ipv6_addr 47 root rtd unknown /proc/47/root (readlink: Permission denied) ipv6_addr 47 root txt unknown /proc/47/exe (readlink: Permission denied) ipv6_addr 47 root NOFD /proc/47/fd (opendir: Permission denied) deferwq 60 root cwd unknown /proc/60/cwd (readlink: Permission denied) deferwq 60 root rtd unknown /proc/60/root (readlink: Permission denied) deferwq 60 root txt unknown /proc/60/exe (readlink: Permission denied) deferwq 60 root NOFD /proc/60/fd (opendir: Permission denied) kauditd 95 root cwd unknown /proc/95/cwd (readlink: Permission denied) kauditd 95 root rtd unknown /proc/95/root (readlink: Permission denied) kauditd 95 root txt unknown /proc/95/exe (readlink: Permission denied) kauditd 95 root NOFD /proc/95/fd (opendir: Permission denied) mpt_poll_ 272 root cwd unknown /proc/272/cwd (readlink: Permission denied) mpt_poll_ 272 root rtd unknown /proc/272/root (readlink: Permission denied) mpt_poll_ 272 root txt unknown /proc/272/exe (readlink: Permission denied) mpt_poll_ 272 root NOFD /proc/272/fd (opendir: Permission denied) mpt/0 273 root cwd unknown /proc/273/cwd (readlink: Permission denied) mpt/0 273 root rtd unknown /proc/273/root (readlink: Permission denied) mpt/0 273 root txt unknown /proc/273/exe (readlink: Permission denied) mpt/0 273 root NOFD /proc/273/fd (opendir: Permission denied) ata_sff 274 root cwd unknown /proc/274/cwd (readlink: Permission denied) ata_sff 274 root rtd unknown /proc/274/root (readlink: Permission denied) ata_sff 274 root txt unknown /proc/274/exe (readlink: Permission denied) ata_sff 274 root NOFD /proc/274/fd (opendir: Permission denied) nfit 275 root cwd unknown /proc/275/cwd (readlink: Permission denied) nfit 275 root rtd unknown /proc/275/root (readlink: Permission denied) nfit 275 root txt unknown /proc/275/exe (readlink: Permission denied) nfit 275 root NOFD /proc/275/fd (opendir: Permission denied) scsi_eh_0 291 root cwd unknown /proc/291/cwd (readlink: Permission denied) scsi_eh_0 291 root rtd unknown /proc/291/root (readlink: Permission denied) scsi_eh_0 291 root txt unknown /proc/291/exe (readlink: Permission denied) scsi_eh_0 291 root NOFD /proc/291/fd (opendir: Permission denied) scsi_tmf_ 295 root cwd unknown /proc/295/cwd (readlink: Permission denied) scsi_tmf_ 295 root rtd unknown /proc/295/root (readlink: Permission denied) scsi_tmf_ 295 root txt unknown /proc/295/exe (readlink: Permission denied) scsi_tmf_ 295 root NOFD /proc/295/fd (opendir: Permission denied) scsi_eh_1 330 root cwd unknown /proc/330/cwd (readlink: Permission denied) scsi_eh_1 330 root rtd unknown /proc/330/root (readlink: Permission denied) scsi_eh_1 330 root txt unknown /proc/330/exe (readlink: Permission denied) scsi_eh_1 330 root NOFD /proc/330/fd (opendir: Permission denied) scsi_tmf_ 331 root cwd unknown /proc/331/cwd (readlink: Permission denied) scsi_tmf_ 331 root rtd unknown /proc/331/root (readlink: Permission denied) scsi_tmf_ 331 root txt unknown /proc/331/exe (readlink: Permission denied) scsi_tmf_ 331 root NOFD /proc/331/fd (opendir: Permission denied) scsi_eh_2 339 root cwd unknown /proc/339/cwd (readlink: Permission denied) scsi_eh_2 339 root rtd unknown /proc/339/root (readlink: Permission denied) scsi_eh_2 339 root txt unknown /proc/339/exe (readlink: Permission denied) scsi_eh_2 339 root NOFD /proc/339/fd (opendir: Permission denied) scsi_tmf_ 346 root cwd unknown /proc/346/cwd (readlink: Permission denied) scsi_tmf_ 346 root rtd unknown /proc/346/root (readlink: Permission denied) scsi_tmf_ 346 root txt unknown /proc/346/exe (readlink: Permission denied) scsi_tmf_ 346 root NOFD /proc/346/fd (opendir: Permission denied) irq/16-vm 357 root cwd unknown /proc/357/cwd (readlink: Permission denied) irq/16-vm 357 root rtd unknown /proc/357/root (readlink: Permission denied) irq/16-vm 357 root txt unknown /proc/357/exe (readlink: Permission denied) irq/16-vm 357 root NOFD /proc/357/fd (opendir: Permission denied) ttm_swap 358 root cwd unknown /proc/358/cwd (readlink: Permission denied) ttm_swap 358 root rtd unknown /proc/358/root (readlink: Permission denied) ttm_swap 358 root txt unknown /proc/358/exe (readlink: Permission denied) ttm_swap 358 root NOFD /proc/358/fd (opendir: Permission denied) kdmflush 431 root cwd unknown /proc/431/cwd (readlink: Permission denied) kdmflush 431 root rtd unknown /proc/431/root (readlink: Permission denied) kdmflush 431 root txt unknown /proc/431/exe (readlink: Permission denied) kdmflush 431 root NOFD /proc/431/fd (opendir: Permission denied) bioset 432 root cwd unknown /proc/432/cwd (readlink: Permission denied) bioset 432 root rtd unknown /proc/432/root (readlink: Permission denied) bioset 432 root txt unknown /proc/432/exe (readlink: Permission denied) bioset 432 root NOFD /proc/432/fd (opendir: Permission denied) kdmflush 442 root cwd unknown /proc/442/cwd (readlink: Permission denied) kdmflush 442 root rtd unknown /proc/442/root (readlink: Permission denied) kdmflush 442 root txt unknown /proc/442/exe (readlink: Permission denied) kdmflush 442 root NOFD /proc/442/fd (opendir: Permission denied) bioset 443 root cwd unknown /proc/443/cwd (readlink: Permission denied) bioset 443 root rtd unknown /proc/443/root (readlink: Permission denied) bioset 443 root txt unknown /proc/443/exe (readlink: Permission denied) bioset 443 root NOFD /proc/443/fd (opendir: Permission denied) bioset 455 root cwd unknown /proc/455/cwd (readlink: Permission denied) bioset 455 root rtd unknown /proc/455/root (readlink: Permission denied) bioset 455 root txt unknown /proc/455/exe (readlink: Permission denied) bioset 455 root NOFD /proc/455/fd (opendir: Permission denied) xfsalloc 456 root cwd unknown /proc/456/cwd (readlink: Permission denied) xfsalloc 456 root rtd unknown /proc/456/root (readlink: Permission denied) xfsalloc 456 root txt unknown /proc/456/exe (readlink: Permission denied) xfsalloc 456 root NOFD /proc/456/fd (opendir: Permission denied) xfs_mru_c 457 root cwd unknown /proc/457/cwd (readlink: Permission denied) xfs_mru_c 457 root rtd unknown /proc/457/root (readlink: Permission denied) xfs_mru_c 457 root txt unknown /proc/457/exe (readlink: Permission denied) xfs_mru_c 457 root NOFD /proc/457/fd (opendir: Permission denied) xfs-buf/d 458 root cwd unknown /proc/458/cwd (readlink: Permission denied) xfs-buf/d 458 root rtd unknown /proc/458/root (readlink: Permission denied) xfs-buf/d 458 root txt unknown /proc/458/exe (readlink: Permission denied) xfs-buf/d 458 root NOFD /proc/458/fd (opendir: Permission denied) xfs-data/ 459 root cwd unknown /proc/459/cwd (readlink: Permission denied) xfs-data/ 459 root rtd unknown /proc/459/root (readlink: Permission denied) xfs-data/ 459 root txt unknown /proc/459/exe (readlink: Permission denied) xfs-data/ 459 root NOFD /proc/459/fd (opendir: Permission denied) xfs-conv/ 460 root cwd unknown /proc/460/cwd (readlink: Permission denied) xfs-conv/ 460 root rtd unknown /proc/460/root (readlink: Permission denied) xfs-conv/ 460 root txt unknown /proc/460/exe (readlink: Permission denied) xfs-conv/ 460 root NOFD /proc/460/fd (opendir: Permission denied) xfs-cil/d 461 root cwd unknown /proc/461/cwd (readlink: Permission denied) xfs-cil/d 461 root rtd unknown /proc/461/root (readlink: Permission denied) xfs-cil/d 461 root txt unknown /proc/461/exe (readlink: Permission denied) xfs-cil/d 461 root NOFD /proc/461/fd (opendir: Permission denied) xfs-recla 462 root cwd unknown /proc/462/cwd (readlink: Permission denied) xfs-recla 462 root rtd unknown /proc/462/root (readlink: Permission denied) xfs-recla 462 root txt unknown /proc/462/exe (readlink: Permission denied) xfs-recla 462 root NOFD /proc/462/fd (opendir: Permission denied) xfs-log/d 463 root cwd unknown /proc/463/cwd (readlink: Permission denied) xfs-log/d 463 root rtd unknown /proc/463/root (readlink: Permission denied) xfs-log/d 463 root txt unknown /proc/463/exe (readlink: Permission denied) xfs-log/d 463 root NOFD /proc/463/fd (opendir: Permission denied) xfs-eofbl 464 root cwd unknown /proc/464/cwd (readlink: Permission denied) xfs-eofbl 464 root rtd unknown /proc/464/root (readlink: Permission denied) xfs-eofbl 464 root txt unknown /proc/464/exe (readlink: Permission denied) xfs-eofbl 464 root NOFD /proc/464/fd (opendir: Permission denied) xfsaild/d 465 root cwd unknown /proc/465/cwd (readlink: Permission denied) xfsaild/d 465 root rtd unknown /proc/465/root (readlink: Permission denied) xfsaild/d 465 root txt unknown /proc/465/exe (readlink: Permission denied) xfsaild/d 465 root NOFD /proc/465/fd (opendir: Permission denied) kworker/0 466 root cwd unknown /proc/466/cwd (readlink: Permission denied) kworker/0 466 root rtd unknown /proc/466/root (readlink: Permission denied) kworker/0 466 root txt unknown /proc/466/exe (readlink: Permission denied) kworker/0 466 root NOFD /proc/466/fd (opendir: Permission denied) systemd-j 544 root cwd unknown /proc/544/cwd (readlink: Permission denied) systemd-j 544 root rtd unknown /proc/544/root (readlink: Permission denied) systemd-j 544 root txt unknown /proc/544/exe (readlink: Permission denied) systemd-j 544 root NOFD /proc/544/fd (opendir: Permission denied) lvmetad 560 root cwd unknown /proc/560/cwd (readlink: Permission denied) lvmetad 560 root rtd unknown /proc/560/root (readlink: Permission denied) lvmetad 560 root txt unknown /proc/560/exe (readlink: Permission denied) lvmetad 560 root NOFD /proc/560/fd (opendir: Permission denied) systemd-u 577 root cwd unknown /proc/577/cwd (readlink: Permission denied) systemd-u 577 root rtd unknown /proc/577/root (readlink: Permission denied) systemd-u 577 root txt unknown /proc/577/exe (readlink: Permission denied) systemd-u 577 root NOFD /proc/577/fd (opendir: Permission denied) xfs-buf/s 629 root cwd unknown /proc/629/cwd (readlink: Permission denied) xfs-buf/s 629 root rtd unknown /proc/629/root (readlink: Permission denied) xfs-buf/s 629 root txt unknown /proc/629/exe (readlink: Permission denied) xfs-buf/s 629 root NOFD /proc/629/fd (opendir: Permission denied) xfs-data/ 638 root cwd unknown /proc/638/cwd (readlink: Permission denied) xfs-data/ 638 root rtd unknown /proc/638/root (readlink: Permission denied) xfs-data/ 638 root txt unknown /proc/638/exe (readlink: Permission denied) xfs-data/ 638 root NOFD /proc/638/fd (opendir: Permission denied) xfs-conv/ 641 root cwd unknown /proc/641/cwd (readlink: Permission denied) xfs-conv/ 641 root rtd unknown /proc/641/root (readlink: Permission denied) xfs-conv/ 641 root txt unknown /proc/641/exe (readlink: Permission denied) xfs-conv/ 641 root NOFD /proc/641/fd (opendir: Permission denied) xfs-cil/s 646 root cwd unknown /proc/646/cwd (readlink: Permission denied) xfs-cil/s 646 root rtd unknown /proc/646/root (readlink: Permission denied) xfs-cil/s 646 root txt unknown /proc/646/exe (readlink: Permission denied) xfs-cil/s 646 root NOFD /proc/646/fd (opendir: Permission denied) xfs-recla 651 root cwd unknown /proc/651/cwd (readlink: Permission denied) xfs-recla 651 root rtd unknown /proc/651/root (readlink: Permission denied) xfs-recla 651 root txt unknown /proc/651/exe (readlink: Permission denied) xfs-recla 651 root NOFD /proc/651/fd (opendir: Permission denied) xfs-log/s 654 root cwd unknown /proc/654/cwd (readlink: Permission denied) xfs-log/s 654 root rtd unknown /proc/654/root (readlink: Permission denied) xfs-log/s 654 root txt unknown /proc/654/exe (readlink: Permission denied) xfs-log/s 654 root NOFD /proc/654/fd (opendir: Permission denied) xfs-eofbl 658 root cwd unknown /proc/658/cwd (readlink: Permission denied) xfs-eofbl 658 root rtd unknown /proc/658/root (readlink: Permission denied) xfs-eofbl 658 root txt unknown /proc/658/exe (readlink: Permission denied) xfs-eofbl 658 root NOFD /proc/658/fd (opendir: Permission denied) xfsaild/s 667 root cwd unknown /proc/667/cwd (readlink: Permission denied) xfsaild/s 667 root rtd unknown /proc/667/root (readlink: Permission denied) xfsaild/s 667 root txt unknown /proc/667/exe (readlink: Permission denied) xfsaild/s 667 root NOFD /proc/667/fd (opendir: Permission denied) kworker/u 675 root cwd unknown /proc/675/cwd (readlink: Permission denied) kworker/u 675 root rtd unknown /proc/675/root (readlink: Permission denied) kworker/u 675 root txt unknown /proc/675/exe (readlink: Permission denied) kworker/u 675 root NOFD /proc/675/fd (opendir: Permission denied) hci0 677 root cwd unknown /proc/677/cwd (readlink: Permission denied) hci0 677 root rtd unknown /proc/677/root (readlink: Permission denied) hci0 677 root txt unknown /proc/677/exe (readlink: Permission denied) hci0 677 root NOFD /proc/677/fd (opendir: Permission denied) hci0 678 root cwd unknown /proc/678/cwd (readlink: Permission denied) hci0 678 root rtd unknown /proc/678/root (readlink: Permission denied) hci0 678 root txt unknown /proc/678/exe (readlink: Permission denied) hci0 678 root NOFD /proc/678/fd (opendir: Permission denied) kworker/u 681 root cwd unknown /proc/681/cwd (readlink: Permission denied) kworker/u 681 root rtd unknown /proc/681/root (readlink: Permission denied) kworker/u 681 root txt unknown /proc/681/exe (readlink: Permission denied) kworker/u 681 root NOFD /proc/681/fd (opendir: Permission denied) auditd 756 root cwd unknown /proc/756/cwd (readlink: Permission denied) auditd 756 root rtd unknown /proc/756/root (readlink: Permission denied) auditd 756 root txt unknown /proc/756/exe (readlink: Permission denied) auditd 756 root NOFD /proc/756/fd (opendir: Permission denied) auditd 756 757 root cwd unknown /proc/756/task/757/cwd (readlink: Permission denied) auditd 756 757 root rtd unknown /proc/756/task/757/root (readlink: Permission denied) auditd 756 757 root txt unknown /proc/756/task/757/exe (readlink: Permission denied) auditd 756 757 root NOFD /proc/756/task/757/fd (opendir: Permission denied) dbus-daem 778 dbus cwd unknown /proc/778/cwd (readlink: Permission denied) dbus-daem 778 dbus rtd unknown /proc/778/root (readlink: Permission denied) dbus-daem 778 dbus txt unknown /proc/778/exe (readlink: Permission denied) dbus-daem 778 dbus NOFD /proc/778/fd (opendir: Permission denied) dbus-daem 778 779 dbus cwd unknown /proc/778/task/779/cwd (readlink: Permission denied) dbus-daem 778 779 dbus rtd unknown /proc/778/task/779/root (readlink: Permission denied) dbus-daem 778 779 dbus txt unknown /proc/778/task/779/exe (readlink: Permission denied) dbus-daem 778 779 dbus NOFD /proc/778/task/779/fd (opendir: Permission denied) polkitd 781 polkitd cwd unknown /proc/781/cwd (readlink: Permission denied) polkitd 781 polkitd rtd unknown /proc/781/root (readlink: Permission denied) polkitd 781 polkitd txt unknown /proc/781/exe (readlink: Permission denied) polkitd 781 polkitd NOFD /proc/781/fd (opendir: Permission denied) gmain 781 802 polkitd cwd unknown /proc/781/task/802/cwd (readlink: Permission denied) gmain 781 802 polkitd rtd unknown /proc/781/task/802/root (readlink: Permission denied) gmain 781 802 polkitd txt unknown /proc/781/task/802/exe (readlink: Permission denied) gmain 781 802 polkitd NOFD /proc/781/task/802/fd (opendir: Permission denied) gdbus 781 805 polkitd cwd unknown /proc/781/task/805/cwd (readlink: Permission denied) gdbus 781 805 polkitd rtd unknown /proc/781/task/805/root (readlink: Permission denied) gdbus 781 805 polkitd txt unknown /proc/781/task/805/exe (readlink: Permission denied) gdbus 781 805 polkitd NOFD /proc/781/task/805/fd (opendir: Permission denied) polkitd 781 808 polkitd cwd unknown /proc/781/task/808/cwd (readlink: Permission denied) polkitd 781 808 polkitd rtd unknown /proc/781/task/808/root (readlink: Permission denied) polkitd 781 808 polkitd txt unknown /proc/781/task/808/exe (readlink: Permission denied) polkitd 781 808 polkitd NOFD /proc/781/task/808/fd (opendir: Permission denied) JS 781 812 polkitd cwd unknown /proc/781/task/812/cwd (readlink: Permission denied) JS 781 812 polkitd rtd unknown /proc/781/task/812/root (readlink: Permission denied) JS 781 812 polkitd txt unknown /proc/781/task/812/exe (readlink: Permission denied) JS 781 812 polkitd NOFD /proc/781/task/812/fd (opendir: Permission denied) JS 781 814 polkitd cwd unknown /proc/781/task/814/cwd (readlink: Permission denied) JS 781 814 polkitd rtd unknown /proc/781/task/814/root (readlink: Permission denied) JS 781 814 polkitd txt unknown /proc/781/task/814/exe (readlink: Permission denied) JS 781 814 polkitd NOFD /proc/781/task/814/fd (opendir: Permission denied) polkitd 781 818 polkitd cwd unknown /proc/781/task/818/cwd (readlink: Permission denied) polkitd 781 818 polkitd rtd unknown /proc/781/task/818/root (readlink: Permission denied) polkitd 781 818 polkitd txt unknown /proc/781/task/818/exe (readlink: Permission denied) polkitd 781 818 polkitd NOFD /proc/781/task/818/fd (opendir: Permission denied) systemd-l 784 root cwd unknown /proc/784/cwd (readlink: Permission denied) systemd-l 784 root rtd unknown /proc/784/root (readlink: Permission denied) systemd-l 784 root txt unknown /proc/784/exe (readlink: Permission denied) systemd-l 784 root NOFD /proc/784/fd (opendir: Permission denied) crond 792 root cwd unknown /proc/792/cwd (readlink: Permission denied) crond 792 root rtd unknown /proc/792/root (readlink: Permission denied) crond 792 root txt unknown /proc/792/exe (readlink: Permission denied) crond 792 root NOFD /proc/792/fd (opendir: Permission denied) chronyd 795 chrony cwd unknown /proc/795/cwd (readlink: Permission denied) chronyd 795 chrony rtd unknown /proc/795/root (readlink: Permission denied) chronyd 795 chrony txt unknown /proc/795/exe (readlink: Permission denied) chronyd 795 chrony NOFD /proc/795/fd (opendir: Permission denied) agetty 815 root cwd unknown /proc/815/cwd (readlink: Permission denied) agetty 815 root rtd unknown /proc/815/root (readlink: Permission denied) agetty 815 root txt unknown /proc/815/exe (readlink: Permission denied) agetty 815 root NOFD /proc/815/fd (opendir: Permission denied) login 817 root cwd unknown /proc/817/cwd (readlink: Permission denied) login 817 root rtd unknown /proc/817/root (readlink: Permission denied) login 817 root txt unknown /proc/817/exe (readlink: Permission denied) login 817 root NOFD /proc/817/fd (opendir: Permission denied) firewalld 823 root cwd unknown /proc/823/cwd (readlink: Permission denied) firewalld 823 root rtd unknown /proc/823/root (readlink: Permission denied) firewalld 823 root txt unknown /proc/823/exe (readlink: Permission denied) firewalld 823 root NOFD /proc/823/fd (opendir: Permission denied) gmain 823 1013 root cwd unknown /proc/823/task/1013/cwd (readlink: Permission denied) gmain 823 1013 root rtd unknown /proc/823/task/1013/root (readlink: Permission denied) gmain 823 1013 root txt unknown /proc/823/task/1013/exe (readlink: Permission denied) gmain 823 1013 root NOFD /proc/823/task/1013/fd (opendir: Permission denied) NetworkMa 865 root cwd unknown /proc/865/cwd (readlink: Permission denied) NetworkMa 865 root rtd unknown /proc/865/root (readlink: Permission denied) NetworkMa 865 root txt unknown /proc/865/exe (readlink: Permission denied) NetworkMa 865 root NOFD /proc/865/fd (opendir: Permission denied) gmain 865 875 root cwd unknown /proc/865/task/875/cwd (readlink: Permission denied) gmain 865 875 root rtd unknown /proc/865/task/875/root (readlink: Permission denied) gmain 865 875 root txt unknown /proc/865/task/875/exe (readlink: Permission denied) gmain 865 875 root NOFD /proc/865/task/875/fd (opendir: Permission denied) gdbus 865 878 root cwd unknown /proc/865/task/878/cwd (readlink: Permission denied) gdbus 865 878 root rtd unknown /proc/865/task/878/root (readlink: Permission denied) gdbus 865 878 root txt unknown /proc/865/task/878/exe (readlink: Permission denied) gdbus 865 878 root NOFD /proc/865/task/878/fd (opendir: Permission denied) dockerd-c 1205 root cwd unknown /proc/1205/cwd (readlink: Permission denied) dockerd-c 1205 root rtd unknown /proc/1205/root (readlink: Permission denied) dockerd-c 1205 root txt unknown /proc/1205/exe (readlink: Permission denied) dockerd-c 1205 root NOFD /proc/1205/fd (opendir: Permission denied) dockerd-c 1205 1214 root cwd unknown /proc/1205/task/1214/cwd (readlink: Permission denied) dockerd-c 1205 1214 root rtd unknown /proc/1205/task/1214/root (readlink: Permission denied) dockerd-c 1205 1214 root txt unknown /proc/1205/task/1214/exe (readlink: Permission denied) dockerd-c 1205 1214 root NOFD /proc/1205/task/1214/fd (opendir: Permission denied) dockerd-c 1205 1215 root cwd unknown /proc/1205/task/1215/cwd (readlink: Permission denied) dockerd-c 1205 1215 root rtd unknown /proc/1205/task/1215/root (readlink: Permission denied) dockerd-c 1205 1215 root txt unknown /proc/1205/task/1215/exe (readlink: Permission denied) dockerd-c 1205 1215 root NOFD /proc/1205/task/1215/fd (opendir: Permission denied) dockerd-c 1205 1217 root cwd unknown /proc/1205/task/1217/cwd (readlink: Permission denied) dockerd-c 1205 1217 root rtd unknown /proc/1205/task/1217/root (readlink: Permission denied) dockerd-c 1205 1217 root txt unknown /proc/1205/task/1217/exe (readlink: Permission denied) dockerd-c 1205 1217 root NOFD /proc/1205/task/1217/fd (opendir: Permission denied) dockerd-c 1205 1231 root cwd unknown /proc/1205/task/1231/cwd (readlink: Permission denied) dockerd-c 1205 1231 root rtd unknown /proc/1205/task/1231/root (readlink: Permission denied) dockerd-c 1205 1231 root txt unknown /proc/1205/task/1231/exe (readlink: Permission denied) dockerd-c 1205 1231 root NOFD /proc/1205/task/1231/fd (opendir: Permission denied) dockerd-c 1205 1260 root cwd unknown /proc/1205/task/1260/cwd (readlink: Permission denied) dockerd-c 1205 1260 root rtd unknown /proc/1205/task/1260/root (readlink: Permission denied) dockerd-c 1205 1260 root txt unknown /proc/1205/task/1260/exe (readlink: Permission denied) dockerd-c 1205 1260 root NOFD /proc/1205/task/1260/fd (opendir: Permission denied) dockerd-c 1205 1449 root cwd unknown /proc/1205/task/1449/cwd (readlink: Permission denied) dockerd-c 1205 1449 root rtd unknown /proc/1205/task/1449/root (readlink: Permission denied) dockerd-c 1205 1449 root txt unknown /proc/1205/task/1449/exe (readlink: Permission denied) dockerd-c 1205 1449 root NOFD /proc/1205/task/1449/fd (opendir: Permission denied) dockerd-c 1205 1450 root cwd unknown /proc/1205/task/1450/cwd (readlink: Permission denied) dockerd-c 1205 1450 root rtd unknown /proc/1205/task/1450/root (readlink: Permission denied) dockerd-c 1205 1450 root txt unknown /proc/1205/task/1450/exe (readlink: Permission denied) dockerd-c 1205 1450 root NOFD /proc/1205/task/1450/fd (opendir: Permission denied) dockerd-c 1205 1451 root cwd unknown /proc/1205/task/1451/cwd (readlink: Permission denied) dockerd-c 1205 1451 root rtd unknown /proc/1205/task/1451/root (readlink: Permission denied) dockerd-c 1205 1451 root txt unknown /proc/1205/task/1451/exe (readlink: Permission denied) dockerd-c 1205 1451 root NOFD /proc/1205/task/1451/fd (opendir: Permission denied) sshd 1206 root cwd unknown /proc/1206/cwd (readlink: Permission denied) sshd 1206 root rtd unknown /proc/1206/root (readlink: Permission denied) sshd 1206 root txt unknown /proc/1206/exe (readlink: Permission denied) sshd 1206 root NOFD /proc/1206/fd (opendir: Permission denied) tuned 1207 root cwd unknown /proc/1207/cwd (readlink: Permission denied) tuned 1207 root rtd unknown /proc/1207/root (readlink: Permission denied) tuned 1207 root txt unknown /proc/1207/exe (readlink: Permission denied) tuned 1207 root NOFD /proc/1207/fd (opendir: Permission denied) gmain 1207 1719 root cwd unknown /proc/1207/task/1719/cwd (readlink: Permission denied) gmain 1207 1719 root rtd unknown /proc/1207/task/1719/root (readlink: Permission denied) gmain 1207 1719 root txt unknown /proc/1207/task/1719/exe (readlink: Permission denied) gmain 1207 1719 root NOFD /proc/1207/task/1719/fd (opendir: Permission denied) tuned 1207 1720 root cwd unknown /proc/1207/task/1720/cwd (readlink: Permission denied) tuned 1207 1720 root rtd unknown /proc/1207/task/1720/root (readlink: Permission denied) tuned 1207 1720 root txt unknown /proc/1207/task/1720/exe (readlink: Permission denied) tuned 1207 1720 root NOFD /proc/1207/task/1720/fd (opendir: Permission denied) tuned 1207 1725 root cwd unknown /proc/1207/task/1725/cwd (readlink: Permission denied) tuned 1207 1725 root rtd unknown /proc/1207/task/1725/root (readlink: Permission denied) tuned 1207 1725 root txt unknown /proc/1207/task/1725/exe (readlink: Permission denied) tuned 1207 1725 root NOFD /proc/1207/task/1725/fd (opendir: Permission denied) tuned 1207 1727 root cwd unknown /proc/1207/task/1727/cwd (readlink: Permission denied) tuned 1207 1727 root rtd unknown /proc/1207/task/1727/root (readlink: Permission denied) tuned 1207 1727 root txt unknown /proc/1207/task/1727/exe (readlink: Permission denied) tuned 1207 1727 root NOFD /proc/1207/task/1727/fd (opendir: Permission denied) rsyslogd 1209 root cwd unknown /proc/1209/cwd (readlink: Permission denied) rsyslogd 1209 root rtd unknown /proc/1209/root (readlink: Permission denied) rsyslogd 1209 root txt unknown /proc/1209/exe (readlink: Permission denied) rsyslogd 1209 root NOFD /proc/1209/fd (opendir: Permission denied) in:imjour 1209 1212 root cwd unknown /proc/1209/task/1212/cwd (readlink: Permission denied) in:imjour 1209 1212 root rtd unknown /proc/1209/task/1212/root (readlink: Permission denied) in:imjour 1209 1212 root txt unknown /proc/1209/task/1212/exe (readlink: Permission denied) in:imjour 1209 1212 root NOFD /proc/1209/task/1212/fd (opendir: Permission denied) rs:main 1209 1213 root cwd unknown /proc/1209/task/1213/cwd (readlink: Permission denied) rs:main 1209 1213 root rtd unknown /proc/1209/task/1213/root (readlink: Permission denied) rs:main 1209 1213 root txt unknown /proc/1209/task/1213/exe (readlink: Permission denied) rs:main 1209 1213 root NOFD /proc/1209/task/1213/fd (opendir: Permission denied) docker-co 1256 root cwd unknown /proc/1256/cwd (readlink: Permission denied) docker-co 1256 root rtd unknown /proc/1256/root (readlink: Permission denied) docker-co 1256 root txt unknown /proc/1256/exe (readlink: Permission denied) docker-co 1256 root NOFD /proc/1256/fd (opendir: Permission denied) docker-co 1256 1272 root cwd unknown /proc/1256/task/1272/cwd (readlink: Permission denied) docker-co 1256 1272 root rtd unknown /proc/1256/task/1272/root (readlink: Permission denied) docker-co 1256 1272 root txt unknown /proc/1256/task/1272/exe (readlink: Permission denied) docker-co 1256 1272 root NOFD /proc/1256/task/1272/fd (opendir: Permission denied) docker-co 1256 1273 root cwd unknown /proc/1256/task/1273/cwd (readlink: Permission denied) docker-co 1256 1273 root rtd unknown /proc/1256/task/1273/root (readlink: Permission denied) docker-co 1256 1273 root txt unknown /proc/1256/task/1273/exe (readlink: Permission denied) docker-co 1256 1273 root NOFD /proc/1256/task/1273/fd (opendir: Permission denied) docker-co 1256 1275 root cwd unknown /proc/1256/task/1275/cwd (readlink: Permission denied) docker-co 1256 1275 root rtd unknown /proc/1256/task/1275/root (readlink: Permission denied) docker-co 1256 1275 root txt unknown /proc/1256/task/1275/exe (readlink: Permission denied) docker-co 1256 1275 root NOFD /proc/1256/task/1275/fd (opendir: Permission denied) docker-co 1256 1279 root cwd unknown /proc/1256/task/1279/cwd (readlink: Permission denied) docker-co 1256 1279 root rtd unknown /proc/1256/task/1279/root (readlink: Permission denied) docker-co 1256 1279 root txt unknown /proc/1256/task/1279/exe (readlink: Permission denied) docker-co 1256 1279 root NOFD /proc/1256/task/1279/fd (opendir: Permission denied) docker-co 1256 1280 root cwd unknown /proc/1256/task/1280/cwd (readlink: Permission denied) docker-co 1256 1280 root rtd unknown /proc/1256/task/1280/root (readlink: Permission denied) docker-co 1256 1280 root txt unknown /proc/1256/task/1280/exe (readlink: Permission denied) docker-co 1256 1280 root NOFD /proc/1256/task/1280/fd (opendir: Permission denied) docker-co 1256 1281 root cwd unknown /proc/1256/task/1281/cwd (readlink: Permission denied) docker-co 1256 1281 root rtd unknown /proc/1256/task/1281/root (readlink: Permission denied) docker-co 1256 1281 root txt unknown /proc/1256/task/1281/exe (readlink: Permission denied) docker-co 1256 1281 root NOFD /proc/1256/task/1281/fd (opendir: Permission denied) docker-co 1256 1282 root cwd unknown /proc/1256/task/1282/cwd (readlink: Permission denied) docker-co 1256 1282 root rtd unknown /proc/1256/task/1282/root (readlink: Permission denied) docker-co 1256 1282 root txt unknown /proc/1256/task/1282/exe (readlink: Permission denied) docker-co 1256 1282 root NOFD /proc/1256/task/1282/fd (opendir: Permission denied) master 1469 root cwd unknown /proc/1469/cwd (readlink: Permission denied) master 1469 root rtd unknown /proc/1469/root (readlink: Permission denied) master 1469 root txt unknown /proc/1469/exe (readlink: Permission denied) master 1469 root NOFD /proc/1469/fd (opendir: Permission denied) qmgr 1474 postfix cwd unknown /proc/1474/cwd (readlink: Permission denied) qmgr 1474 postfix rtd unknown /proc/1474/root (readlink: Permission denied) qmgr 1474 postfix txt unknown /proc/1474/exe (readlink: Permission denied) qmgr 1474 postfix NOFD /proc/1474/fd (opendir: Permission denied) bash 1835 kbrazil cwd DIR 253,0 6 503040 /home/kbrazil/git bash 1835 kbrazil rtd DIR 253,0 224 64 / bash 1835 kbrazil txt REG 253,0 964600 50332501 /usr/bin/bash bash 1835 kbrazil mem REG 253,0 106075056 16781164 /usr/lib/locale/locale-archive bash 1835 kbrazil mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so bash 1835 kbrazil mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so bash 1835 kbrazil mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so bash 1835 kbrazil mem REG 253,0 174576 9816 /usr/lib64/libtinfo.so.5.9 bash 1835 kbrazil mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so bash 1835 kbrazil mem REG 253,0 26254 16789060 /usr/lib64/gconv/gconv-modules.cache bash 1835 kbrazil 0u CHR 4,64 0t0 8462 /dev/ttyS0 bash 1835 kbrazil 1u CHR 4,64 0t0 8462 /dev/ttyS0 bash 1835 kbrazil 2u CHR 4,64 0t0 8462 /dev/ttyS0 bash 1835 kbrazil 255u CHR 4,64 0t0 8462 /dev/ttyS0 dhclient 1939 root cwd unknown /proc/1939/cwd (readlink: Permission denied) dhclient 1939 root rtd unknown /proc/1939/root (readlink: Permission denied) dhclient 1939 root txt unknown /proc/1939/exe (readlink: Permission denied) dhclient 1939 root NOFD /proc/1939/fd (opendir: Permission denied) pickup 4262 postfix cwd unknown /proc/4262/cwd (readlink: Permission denied) pickup 4262 postfix rtd unknown /proc/4262/root (readlink: Permission denied) pickup 4262 postfix txt unknown /proc/4262/exe (readlink: Permission denied) pickup 4262 postfix NOFD /proc/4262/fd (opendir: Permission denied) sshd 4314 root cwd unknown /proc/4314/cwd (readlink: Permission denied) sshd 4314 root rtd unknown /proc/4314/root (readlink: Permission denied) sshd 4314 root txt unknown /proc/4314/exe (readlink: Permission denied) sshd 4314 root NOFD /proc/4314/fd (opendir: Permission denied) sshd 4318 kbrazil cwd unknown /proc/4318/cwd (readlink: Permission denied) sshd 4318 kbrazil rtd unknown /proc/4318/root (readlink: Permission denied) sshd 4318 kbrazil txt unknown /proc/4318/exe (readlink: Permission denied) sshd 4318 kbrazil NOFD /proc/4318/fd (opendir: Permission denied) bash 4319 kbrazil cwd DIR 253,0 4096 16790392 /home/kbrazil/testfiles bash 4319 kbrazil rtd DIR 253,0 224 64 / bash 4319 kbrazil txt REG 253,0 964600 50332501 /usr/bin/bash bash 4319 kbrazil mem REG 253,0 61624 503058 /usr/lib64/libnss_files-2.17.so bash 4319 kbrazil mem REG 253,0 106075056 16781164 /usr/lib/locale/locale-archive bash 4319 kbrazil mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so bash 4319 kbrazil mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so bash 4319 kbrazil mem REG 253,0 174576 9816 /usr/lib64/libtinfo.so.5.9 bash 4319 kbrazil mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so bash 4319 kbrazil mem REG 253,0 26254 16789060 /usr/lib64/gconv/gconv-modules.cache bash 4319 kbrazil 0u CHR 136,0 0t0 3 /dev/pts/0 bash 4319 kbrazil 1u CHR 136,0 0t0 3 /dev/pts/0 bash 4319 kbrazil 2u CHR 136,0 0t0 3 /dev/pts/0 bash 4319 kbrazil 255u CHR 136,0 0t0 3 /dev/pts/0 kworker/0 4587 root cwd unknown /proc/4587/cwd (readlink: Permission denied) kworker/0 4587 root rtd unknown /proc/4587/root (readlink: Permission denied) kworker/0 4587 root txt unknown /proc/4587/exe (readlink: Permission denied) kworker/0 4587 root NOFD /proc/4587/fd (opendir: Permission denied) kworker/0 4715 root cwd unknown /proc/4715/cwd (readlink: Permission denied) kworker/0 4715 root rtd unknown /proc/4715/root (readlink: Permission denied) kworker/0 4715 root txt unknown /proc/4715/exe (readlink: Permission denied) kworker/0 4715 root NOFD /proc/4715/fd (opendir: Permission denied) kworker/0 4716 root cwd unknown /proc/4716/cwd (readlink: Permission denied) kworker/0 4716 root rtd unknown /proc/4716/root (readlink: Permission denied) kworker/0 4716 root txt unknown /proc/4716/exe (readlink: Permission denied) kworker/0 4716 root NOFD /proc/4716/fd (opendir: Permission denied) tests.sh 4720 kbrazil cwd DIR 253,0 4096 16790392 /home/kbrazil/testfiles tests.sh 4720 kbrazil rtd DIR 253,0 224 64 / tests.sh 4720 kbrazil txt REG 253,0 964600 50332501 /usr/bin/bash tests.sh 4720 kbrazil mem REG 253,0 106075056 16781164 /usr/lib/locale/locale-archive tests.sh 4720 kbrazil mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so tests.sh 4720 kbrazil mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so tests.sh 4720 kbrazil mem REG 253,0 174576 9816 /usr/lib64/libtinfo.so.5.9 tests.sh 4720 kbrazil mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so tests.sh 4720 kbrazil mem REG 253,0 26254 16789060 /usr/lib64/gconv/gconv-modules.cache tests.sh 4720 kbrazil 0u CHR 136,0 0t0 3 /dev/pts/0 tests.sh 4720 kbrazil 1u CHR 136,0 0t0 3 /dev/pts/0 tests.sh 4720 kbrazil 2u CHR 136,0 0t0 3 /dev/pts/0 tests.sh 4720 kbrazil 255r REG 253,0 1568 16993585 /home/kbrazil/testfiles/tests.sh sleep 4768 kbrazil cwd DIR 253,0 4096 16790392 /home/kbrazil/testfiles sleep 4768 kbrazil rtd DIR 253,0 224 64 / sleep 4768 kbrazil txt REG 253,0 33128 50338469 /usr/bin/sleep sleep 4768 kbrazil mem REG 253,0 106075056 16781164 /usr/lib/locale/locale-archive sleep 4768 kbrazil mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so sleep 4768 kbrazil mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so sleep 4768 kbrazil 0r CHR 1,3 0t0 6485 /dev/null sleep 4768 kbrazil 1u CHR 136,0 0t0 3 /dev/pts/0 sleep 4768 kbrazil 2u CHR 136,0 0t0 3 /dev/pts/0 sleep 4769 kbrazil cwd DIR 253,0 4096 16790392 /home/kbrazil/testfiles sleep 4769 kbrazil rtd DIR 253,0 224 64 / sleep 4769 kbrazil txt REG 253,0 33128 50338469 /usr/bin/sleep sleep 4769 kbrazil mem REG 253,0 106075056 16781164 /usr/lib/locale/locale-archive sleep 4769 kbrazil mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so sleep 4769 kbrazil mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so sleep 4769 kbrazil 0u CHR 136,0 0t0 3 /dev/pts/0 sleep 4769 kbrazil 1u CHR 136,0 0t0 3 /dev/pts/0 sleep 4769 kbrazil 2u CHR 136,0 0t0 3 /dev/pts/0 sleep 4770 kbrazil cwd DIR 253,0 4096 16790392 /home/kbrazil/testfiles sleep 4770 kbrazil rtd DIR 253,0 224 64 / sleep 4770 kbrazil txt REG 253,0 33128 50338469 /usr/bin/sleep sleep 4770 kbrazil mem REG 253,0 106075056 16781164 /usr/lib/locale/locale-archive sleep 4770 kbrazil mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so sleep 4770 kbrazil mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so sleep 4770 kbrazil 0u CHR 136,0 0t0 3 /dev/pts/0 sleep 4770 kbrazil 1u CHR 136,0 0t0 3 /dev/pts/0 sleep 4770 kbrazil 2u CHR 136,0 0t0 3 /dev/pts/0 sleep 4771 kbrazil cwd DIR 253,0 4096 16790392 /home/kbrazil/testfiles sleep 4771 kbrazil rtd DIR 253,0 224 64 / sleep 4771 kbrazil txt REG 253,0 33128 50338469 /usr/bin/sleep sleep 4771 kbrazil mem REG 253,0 106075056 16781164 /usr/lib/locale/locale-archive sleep 4771 kbrazil mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so sleep 4771 kbrazil mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so sleep 4771 kbrazil 0u CHR 136,0 0t0 3 /dev/pts/0 sleep 4771 kbrazil 1u CHR 136,0 0t0 3 /dev/pts/0 sleep 4771 kbrazil 2u CHR 136,0 0t0 3 /dev/pts/0 lsof 4777 kbrazil cwd DIR 253,0 4096 16790392 /home/kbrazil/testfiles lsof 4777 kbrazil rtd DIR 253,0 224 64 / lsof 4777 kbrazil txt REG 253,0 154184 1092 /usr/sbin/lsof lsof 4777 kbrazil mem REG 253,0 106075056 16781164 /usr/lib/locale/locale-archive lsof 4777 kbrazil mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so lsof 4777 kbrazil mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so lsof 4777 kbrazil mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 lsof 4777 kbrazil mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so lsof 4777 kbrazil mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 lsof 4777 kbrazil mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so lsof 4777 kbrazil 0u CHR 136,0 0t0 3 /dev/pts/0 lsof 4777 kbrazil 1w REG 253,0 0 16825878 /home/kbrazil/testfiles/lsof.out lsof 4777 kbrazil 2u CHR 136,0 0t0 3 /dev/pts/0 lsof 4777 kbrazil 3r DIR 0,3 0 1 /proc lsof 4777 kbrazil 4r DIR 0,3 0 49414 /proc/4777/fd lsof 4777 kbrazil 5w FIFO 0,9 0t0 49419 pipe lsof 4777 kbrazil 6r FIFO 0,9 0t0 49420 pipe lsof 4778 kbrazil cwd DIR 253,0 4096 16790392 /home/kbrazil/testfiles lsof 4778 kbrazil rtd DIR 253,0 224 64 / lsof 4778 kbrazil txt REG 253,0 154184 1092 /usr/sbin/lsof lsof 4778 kbrazil mem REG 253,0 106075056 16781164 /usr/lib/locale/locale-archive lsof 4778 kbrazil mem REG 253,0 142232 503071 /usr/lib64/libpthread-2.17.so lsof 4778 kbrazil mem REG 253,0 19288 34141 /usr/lib64/libdl-2.17.so lsof 4778 kbrazil mem REG 253,0 402384 9847 /usr/lib64/libpcre.so.1.2.0 lsof 4778 kbrazil mem REG 253,0 2156160 24399 /usr/lib64/libc-2.17.so lsof 4778 kbrazil mem REG 253,0 155784 9857 /usr/lib64/libselinux.so.1 lsof 4778 kbrazil mem REG 253,0 163400 7824 /usr/lib64/ld-2.17.so lsof 4778 kbrazil 4r FIFO 0,9 0t0 49419 pipe lsof 4778 kbrazil 7w FIFO 0,9 0t0 49420 pipe jc-1.17.3/tests/fixtures/centos-7.7/lsusb-v-single.json000066400000000000000000000065721415226333200225760ustar00rootroot00000000000000[{"bus":"003","device":"090","id":"1915:521a","description":"Nordic Semiconductor ASA nRF52 USB CDC BLE Demo","device_descriptor":{"bLength":{"value":"18"},"bDescriptorType":{"value":"1"},"bcdUSB":{"value":"2.00"},"bDeviceClass":{"value":"0"},"bDeviceSubClass":{"value":"0"},"bDeviceProtocol":{"value":"0"},"bMaxPacketSize0":{"value":"64"},"idVendor":{"value":"0x1915","description":"Nordic Semiconductor ASA"},"idProduct":{"value":"0x521a"},"bcdDevice":{"value":"1.00"},"iManufacturer":{"value":"1","description":"Nordic Semiconductor"},"iProduct":{"value":"2","description":"nRF52 USB CDC BLE Demo"},"iSerial":{"value":"3","description":"F42DE60BE261"},"bNumConfigurations":{"value":"1"},"configuration_descriptor":{"bLength":{"value":"9"},"bDescriptorType":{"value":"2"},"wTotalLength":{"value":"0x004b"},"bNumInterfaces":{"value":"2"},"bConfigurationValue":{"value":"1"},"iConfiguration":{"value":"4"},"bmAttributes":{"value":"0xc0","attributes":["Self Powered"]},"MaxPower":{"description":"100mA"},"interface_association":{"bLength":{"value":"8"},"bDescriptorType":{"value":"11"},"bFirstInterface":{"value":"0"},"bInterfaceCount":{"value":"2"},"bFunctionClass":{"value":"2","description":"Communications"},"bFunctionSubClass":{"value":"2","description":"Abstract (modem)"},"bFunctionProtocol":{"value":"1","description":"AT-commands (v.25ter)"},"iFunction":{"value":"0"}},"interface_descriptors":[{"bLength":{"value":"9"},"bDescriptorType":{"value":"4"},"bInterfaceNumber":{"value":"0"},"bAlternateSetting":{"value":"0"},"bNumEndpoints":{"value":"1"},"bInterfaceClass":{"value":"2","description":"Communications"},"bInterfaceSubClass":{"value":"2","description":"Abstract (modem)"},"bInterfaceProtocol":{"value":"1","description":"AT-commands (v.25ter)"},"iInterface":{"value":"0"},"cdc_header":{"bcdCDC":{"value":"1.10"}},"cdc_call_management":{"bmCapabilities":{"value":"0x03","attributes":["call management","use DataInterface"]},"bDataInterface":{"value":"1"}},"cdc_acm":{"bmCapabilities":{"value":"0x02","attributes":["line coding and serial state"]}},"cdc_union":{"bMasterInterface":{"value":"0"},"bSlaveInterface":{"value":"1"}},"endpoint_descriptors":[{"bLength":{"value":"7"},"bDescriptorType":{"value":"5"},"bEndpointAddress":{"value":"0x82","description":"EP 2 IN"},"bmAttributes":{"value":"3","attributes":["Transfer Type Interrupt","Synch Type None","Usage Type Data"]},"wMaxPacketSize":{"value":"0x0040","description":"1x 64 bytes"},"bInterval":{"value":"16"}}]},{"bLength":{"value":"9"},"bDescriptorType":{"value":"4"},"bInterfaceNumber":{"value":"1"},"bAlternateSetting":{"value":"0"},"bNumEndpoints":{"value":"2"},"bInterfaceClass":{"value":"10","description":"CDC Data"},"bInterfaceSubClass":{"value":"0"},"bInterfaceProtocol":{"value":"0"},"iInterface":{"value":"0"},"endpoint_descriptors":[{"bLength":{"value":"7"},"bDescriptorType":{"value":"5"},"bEndpointAddress":{"value":"0x81","description":"EP 1 IN"},"bmAttributes":{"value":"2","attributes":["Transfer Type Bulk","Synch Type None","Usage Type Data"]},"wMaxPacketSize":{"value":"0x0040","description":"1x 64 bytes"},"bInterval":{"value":"0"}},{"bLength":{"value":"7"},"bDescriptorType":{"value":"5"},"bEndpointAddress":{"value":"0x01","description":"EP 1 OUT"},"bmAttributes":{"value":"2","attributes":["Transfer Type Bulk","Synch Type None","Usage Type Data"]},"wMaxPacketSize":{"value":"0x0040","description":"1x 64 bytes"},"bInterval":{"value":"0"}}]}]}}}] jc-1.17.3/tests/fixtures/centos-7.7/lsusb-v-single.out000066400000000000000000000066011415226333200224250ustar00rootroot00000000000000Bus 003 Device 090: ID 1915:521a Nordic Semiconductor ASA nRF52 USB CDC BLE Demo Couldn't open device, some information will be missing Device Descriptor: bLength 18 bDescriptorType 1 bcdUSB 2.00 bDeviceClass 0 bDeviceSubClass 0 bDeviceProtocol 0 bMaxPacketSize0 64 idVendor 0x1915 Nordic Semiconductor ASA idProduct 0x521a bcdDevice 1.00 iManufacturer 1 Nordic Semiconductor iProduct 2 nRF52 USB CDC BLE Demo iSerial 3 F42DE60BE261 bNumConfigurations 1 Configuration Descriptor: bLength 9 bDescriptorType 2 wTotalLength 0x004b bNumInterfaces 2 bConfigurationValue 1 iConfiguration 4 bmAttributes 0xc0 Self Powered MaxPower 100mA Interface Association: bLength 8 bDescriptorType 11 bFirstInterface 0 bInterfaceCount 2 bFunctionClass 2 Communications bFunctionSubClass 2 Abstract (modem) bFunctionProtocol 1 AT-commands (v.25ter) iFunction 0 Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 0 bAlternateSetting 0 bNumEndpoints 1 bInterfaceClass 2 Communications bInterfaceSubClass 2 Abstract (modem) bInterfaceProtocol 1 AT-commands (v.25ter) iInterface 0 CDC Header: bcdCDC 1.10 CDC Call Management: bmCapabilities 0x03 call management use DataInterface bDataInterface 1 CDC ACM: bmCapabilities 0x02 line coding and serial state CDC Union: bMasterInterface 0 bSlaveInterface 1 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x82 EP 2 IN bmAttributes 3 Transfer Type Interrupt Synch Type None Usage Type Data wMaxPacketSize 0x0040 1x 64 bytes bInterval 16 Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 1 bAlternateSetting 0 bNumEndpoints 2 bInterfaceClass 10 CDC Data bInterfaceSubClass 0 bInterfaceProtocol 0 iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x81 EP 1 IN bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0040 1x 64 bytes bInterval 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x01 EP 1 OUT bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0040 1x 64 bytes bInterval 0 jc-1.17.3/tests/fixtures/centos-7.7/lsusb-v.json000066400000000000000000000444341415226333200213160ustar00rootroot00000000000000[{"bus":"001","device":"001","id":"1d6b:0002","description":"Linux Foundation 2.0 root hub","device_descriptor":{"bLength":{"value":"18"},"bDescriptorType":{"value":"1"},"bcdUSB":{"value":"2.00"},"bDeviceClass":{"value":"9","description":"Hub"},"bDeviceSubClass":{"value":"0","description":"Unused"},"bDeviceProtocol":{"value":"0","description":"Full speed (or root) hub"},"bMaxPacketSize0":{"value":"64"},"idVendor":{"value":"0x1d6b","description":"Linux Foundation"},"idProduct":{"value":"0x0002","description":"2.0 root hub"},"bcdDevice":{"value":"3.10"},"iManufacturer":{"value":"3","description":"Linux 3.10.0-1062.1.2.el7.x86_64 ehci_hcd"},"iProduct":{"value":"2","description":"EHCI Host Controller"},"iSerial":{"value":"1","description":"0000:02:02.0"},"bNumConfigurations":{"value":"1"},"configuration_descriptor":{"bLength":{"value":"9"},"bDescriptorType":{"value":"2"},"wTotalLength":{"value":"25"},"bNumInterfaces":{"value":"1"},"bConfigurationValue":{"value":"1"},"iConfiguration":{"value":"0"},"bmAttributes":{"value":"0xe0","attributes":["Self Powered","Remote Wakeup"]},"MaxPower":{"description":"0mA"},"interface_descriptors":[{"bLength":{"value":"9"},"bDescriptorType":{"value":"4"},"bInterfaceNumber":{"value":"0"},"bAlternateSetting":{"value":"0"},"bNumEndpoints":{"value":"1"},"bInterfaceClass":{"value":"9","description":"Hub"},"bInterfaceSubClass":{"value":"0","description":"Unused"},"bInterfaceProtocol":{"value":"0","description":"Full speed (or root) hub"},"iInterface":{"value":"0"},"endpoint_descriptors":[{"bLength":{"value":"7"},"bDescriptorType":{"value":"5"},"bEndpointAddress":{"value":"0x81","description":"EP 1 IN"},"bmAttributes":{"value":"3","attributes":["Transfer Type Interrupt","Synch Type None","Usage Type Data"]},"wMaxPacketSize":{"value":"0x0004","description":"1x 4 bytes"},"bInterval":{"value":"12"}}]}]}},"hub_descriptor":{"bLength":{"value":"9"},"bDescriptorType":{"value":"41"},"nNbrPorts":{"value":"6"},"wHubCharacteristic":{"value":"0x000a","attributes":["No power switching (usb 1.0)","Per-port overcurrent protection"]},"bPwrOn2PwrGood":{"value":"10 *","description":"2 milli seconds"},"bHubContrCurrent":{"value":"0","description":"milli Ampere"},"DeviceRemovable":{"value":"0x00"},"PortPwrCtrlMask":{"value":"0xff"},"hub_port_status":{"Port 1":{"value":"0000.0100","attributes":["power"]},"Port 2":{"value":"0000.0100","attributes":["power"]},"Port 3":{"value":"0000.0100","attributes":["power"]},"Port 4":{"value":"0000.0100","attributes":["power"]},"Port 5":{"value":"0000.0100","attributes":["power"]},"Port 6":{"value":"0000.0100","attributes":["power"]}}},"device_status":{"value":"0x0001","description":"Self Powered"}},{"bus":"002","device":"004","id":"0e0f:0008","description":"VMware, Inc.","device_descriptor":{"bLength":{"value":"18"},"bDescriptorType":{"value":"1"},"bcdUSB":{"value":"2.00"},"bDeviceClass":{"value":"224","description":"Wireless"},"bDeviceSubClass":{"value":"1","description":"Radio Frequency"},"bDeviceProtocol":{"value":"1","description":"Bluetooth"},"bMaxPacketSize0":{"value":"64"},"idVendor":{"value":"0x0e0f","description":"VMware, Inc."},"idProduct":{"value":"0x0008"},"bcdDevice":{"value":"1.00"},"iManufacturer":{"value":"1","description":"VMware"},"iProduct":{"value":"2","description":"Virtual Bluetooth Adapter"},"iSerial":{"value":"3","description":"000650268328"},"bNumConfigurations":{"value":"1"},"configuration_descriptor":{"bLength":{"value":"9"},"bDescriptorType":{"value":"2"},"wTotalLength":{"value":"177"},"bNumInterfaces":{"value":"2"},"bConfigurationValue":{"value":"1"},"iConfiguration":{"value":"0"},"bmAttributes":{"value":"0xc0","attributes":["Self Powered"]},"MaxPower":{"description":"0mA"},"interface_descriptors":[{"bLength":{"value":"9"},"bDescriptorType":{"value":"4"},"bInterfaceNumber":{"value":"0"},"bAlternateSetting":{"value":"0"},"bNumEndpoints":{"value":"3"},"bInterfaceClass":{"value":"224","description":"Wireless"},"bInterfaceSubClass":{"value":"1","description":"Radio Frequency"},"bInterfaceProtocol":{"value":"1","description":"Bluetooth"},"iInterface":{"value":"0"},"endpoint_descriptors":[{"bLength":{"value":"7"},"bDescriptorType":{"value":"5"},"bEndpointAddress":{"value":"0x81","description":"EP 1 IN"},"bmAttributes":{"value":"3","attributes":["Transfer Type Interrupt","Synch Type None","Usage Type Data"]},"wMaxPacketSize":{"value":"0x0010","description":"1x 16 bytes"},"bInterval":{"value":"1"}},{"bLength":{"value":"7"},"bDescriptorType":{"value":"5"},"bEndpointAddress":{"value":"0x02","description":"EP 2 OUT"},"bmAttributes":{"value":"2","attributes":["Transfer Type Bulk","Synch Type None","Usage Type Data"]},"wMaxPacketSize":{"value":"0x0040","description":"1x 64 bytes"},"bInterval":{"value":"0"}},{"bLength":{"value":"7"},"bDescriptorType":{"value":"5"},"bEndpointAddress":{"value":"0x82","description":"EP 2 IN"},"bmAttributes":{"value":"2","attributes":["Transfer Type Bulk","Synch Type None","Usage Type Data"]},"wMaxPacketSize":{"value":"0x0040","description":"1x 64 bytes"},"bInterval":{"value":"0"}}]},{"bLength":{"value":"9"},"bDescriptorType":{"value":"4"},"bInterfaceNumber":{"value":"1"},"bAlternateSetting":{"value":"0"},"bNumEndpoints":{"value":"2"},"bInterfaceClass":{"value":"224","description":"Wireless"},"bInterfaceSubClass":{"value":"1","description":"Radio Frequency"},"bInterfaceProtocol":{"value":"1","description":"Bluetooth"},"iInterface":{"value":"0"},"endpoint_descriptors":[{"bLength":{"value":"7"},"bDescriptorType":{"value":"5"},"bEndpointAddress":{"value":"0x03","description":"EP 3 OUT"},"bmAttributes":{"value":"1","attributes":["Transfer Type Isochronous","Synch Type None","Usage Type Data"]},"wMaxPacketSize":{"value":"0x0000","description":"1x 0 bytes"},"bInterval":{"value":"1"}},{"bLength":{"value":"7"},"bDescriptorType":{"value":"5"},"bEndpointAddress":{"value":"0x83","description":"EP 3 IN"},"bmAttributes":{"value":"1","attributes":["Transfer Type Isochronous","Synch Type None","Usage Type Data"]},"wMaxPacketSize":{"value":"0x0000","description":"1x 0 bytes"},"bInterval":{"value":"1"}}]},{"bLength":{"value":"9"},"bDescriptorType":{"value":"4"},"bInterfaceNumber":{"value":"1"},"bAlternateSetting":{"value":"1"},"bNumEndpoints":{"value":"2"},"bInterfaceClass":{"value":"224","description":"Wireless"},"bInterfaceSubClass":{"value":"1","description":"Radio Frequency"},"bInterfaceProtocol":{"value":"1","description":"Bluetooth"},"iInterface":{"value":"0"},"endpoint_descriptors":[{"bLength":{"value":"7"},"bDescriptorType":{"value":"5"},"bEndpointAddress":{"value":"0x03","description":"EP 3 OUT"},"bmAttributes":{"value":"1","attributes":["Transfer Type Isochronous","Synch Type None","Usage Type Data"]},"wMaxPacketSize":{"value":"0x0009","description":"1x 9 bytes"},"bInterval":{"value":"1"}},{"bLength":{"value":"7"},"bDescriptorType":{"value":"5"},"bEndpointAddress":{"value":"0x83","description":"EP 3 IN"},"bmAttributes":{"value":"1","attributes":["Transfer Type Isochronous","Synch Type None","Usage Type Data"]},"wMaxPacketSize":{"value":"0x0009","description":"1x 9 bytes"},"bInterval":{"value":"1"}}]},{"bLength":{"value":"9"},"bDescriptorType":{"value":"4"},"bInterfaceNumber":{"value":"1"},"bAlternateSetting":{"value":"2"},"bNumEndpoints":{"value":"2"},"bInterfaceClass":{"value":"224","description":"Wireless"},"bInterfaceSubClass":{"value":"1","description":"Radio Frequency"},"bInterfaceProtocol":{"value":"1","description":"Bluetooth"},"iInterface":{"value":"0"},"endpoint_descriptors":[{"bLength":{"value":"7"},"bDescriptorType":{"value":"5"},"bEndpointAddress":{"value":"0x03","description":"EP 3 OUT"},"bmAttributes":{"value":"1","attributes":["Transfer Type Isochronous","Synch Type None","Usage Type Data"]},"wMaxPacketSize":{"value":"0x0011","description":"1x 17 bytes"},"bInterval":{"value":"1"}},{"bLength":{"value":"7"},"bDescriptorType":{"value":"5"},"bEndpointAddress":{"value":"0x83","description":"EP 3 IN"},"bmAttributes":{"value":"1","attributes":["Transfer Type Isochronous","Synch Type None","Usage Type Data"]},"wMaxPacketSize":{"value":"0x0011","description":"1x 17 bytes"},"bInterval":{"value":"1"}}]},{"bLength":{"value":"9"},"bDescriptorType":{"value":"4"},"bInterfaceNumber":{"value":"1"},"bAlternateSetting":{"value":"3"},"bNumEndpoints":{"value":"2"},"bInterfaceClass":{"value":"224","description":"Wireless"},"bInterfaceSubClass":{"value":"1","description":"Radio Frequency"},"bInterfaceProtocol":{"value":"1","description":"Bluetooth"},"iInterface":{"value":"0"},"endpoint_descriptors":[{"bLength":{"value":"7"},"bDescriptorType":{"value":"5"},"bEndpointAddress":{"value":"0x03","description":"EP 3 OUT"},"bmAttributes":{"value":"1","attributes":["Transfer Type Isochronous","Synch Type None","Usage Type Data"]},"wMaxPacketSize":{"value":"0x0019","description":"1x 25 bytes"},"bInterval":{"value":"1"}},{"bLength":{"value":"7"},"bDescriptorType":{"value":"5"},"bEndpointAddress":{"value":"0x83","description":"EP 3 IN"},"bmAttributes":{"value":"1","attributes":["Transfer Type Isochronous","Synch Type None","Usage Type Data"]},"wMaxPacketSize":{"value":"0x0019","description":"1x 25 bytes"},"bInterval":{"value":"1"}}]},{"bLength":{"value":"9"},"bDescriptorType":{"value":"4"},"bInterfaceNumber":{"value":"1"},"bAlternateSetting":{"value":"4"},"bNumEndpoints":{"value":"2"},"bInterfaceClass":{"value":"224","description":"Wireless"},"bInterfaceSubClass":{"value":"1","description":"Radio Frequency"},"bInterfaceProtocol":{"value":"1","description":"Bluetooth"},"iInterface":{"value":"0"},"endpoint_descriptors":[{"bLength":{"value":"7"},"bDescriptorType":{"value":"5"},"bEndpointAddress":{"value":"0x03","description":"EP 3 OUT"},"bmAttributes":{"value":"1","attributes":["Transfer Type Isochronous","Synch Type None","Usage Type Data"]},"wMaxPacketSize":{"value":"0x0021","description":"1x 33 bytes"},"bInterval":{"value":"1"}},{"bLength":{"value":"7"},"bDescriptorType":{"value":"5"},"bEndpointAddress":{"value":"0x83","description":"EP 3 IN"},"bmAttributes":{"value":"1","attributes":["Transfer Type Isochronous","Synch Type None","Usage Type Data"]},"wMaxPacketSize":{"value":"0x0021","description":"1x 33 bytes"},"bInterval":{"value":"1"}}]},{"bLength":{"value":"9"},"bDescriptorType":{"value":"4"},"bInterfaceNumber":{"value":"1"},"bAlternateSetting":{"value":"5"},"bNumEndpoints":{"value":"2"},"bInterfaceClass":{"value":"224","description":"Wireless"},"bInterfaceSubClass":{"value":"1","description":"Radio Frequency"},"bInterfaceProtocol":{"value":"1","description":"Bluetooth"},"iInterface":{"value":"0"},"endpoint_descriptors":[{"bLength":{"value":"7"},"bDescriptorType":{"value":"5"},"bEndpointAddress":{"value":"0x03","description":"EP 3 OUT"},"bmAttributes":{"value":"1","attributes":["Transfer Type Isochronous","Synch Type None","Usage Type Data"]},"wMaxPacketSize":{"value":"0x0031","description":"1x 49 bytes"},"bInterval":{"value":"1"}},{"bLength":{"value":"7"},"bDescriptorType":{"value":"5"},"bEndpointAddress":{"value":"0x83","description":"EP 3 IN"},"bmAttributes":{"value":"1","attributes":["Transfer Type Isochronous","Synch Type None","Usage Type Data"]},"wMaxPacketSize":{"value":"0x0031","description":"1x 49 bytes"},"bInterval":{"value":"1"}}]}]}},"device_status":{"value":"0x0001","description":"Self Powered"}},{"bus":"002","device":"003","id":"0e0f:0002","description":"VMware, Inc. Virtual USB Hub","device_descriptor":{"bLength":{"value":"18"},"bDescriptorType":{"value":"1"},"bcdUSB":{"value":"1.10"},"bDeviceClass":{"value":"9","description":"Hub"},"bDeviceSubClass":{"value":"0","description":"Unused"},"bDeviceProtocol":{"value":"0","description":"Full speed (or root) hub"},"bMaxPacketSize0":{"value":"8"},"idVendor":{"value":"0x0e0f","description":"VMware, Inc."},"idProduct":{"value":"0x0002","description":"Virtual USB Hub"},"bcdDevice":{"value":"1.00"},"iManufacturer":{"value":"1","description":"VMware, Inc."},"iProduct":{"value":"2","description":"VMware Virtual USB Hub"},"iSerial":{"value":"0"},"bNumConfigurations":{"value":"1"},"configuration_descriptor":{"bLength":{"value":"9"},"bDescriptorType":{"value":"2"},"wTotalLength":{"value":"25"},"bNumInterfaces":{"value":"1"},"bConfigurationValue":{"value":"1"},"iConfiguration":{"value":"1","description":"VMware, Inc."},"bmAttributes":{"value":"0xe0","attributes":["Self Powered","Remote Wakeup"]},"MaxPower":{"description":"0mA"},"interface_descriptors":[{"bLength":{"value":"9"},"bDescriptorType":{"value":"4"},"bInterfaceNumber":{"value":"0"},"bAlternateSetting":{"value":"0"},"bNumEndpoints":{"value":"1"},"bInterfaceClass":{"value":"9","description":"Hub"},"bInterfaceSubClass":{"value":"0","description":"Unused"},"bInterfaceProtocol":{"value":"0","description":"Full speed (or root) hub"},"iInterface":{"value":"1","description":"VMware, Inc."},"endpoint_descriptors":[{"bLength":{"value":"7"},"bDescriptorType":{"value":"5"},"bEndpointAddress":{"value":"0x81","description":"EP 1 IN"},"bmAttributes":{"value":"3","attributes":["Transfer Type Interrupt","Synch Type None","Usage Type Data"]},"wMaxPacketSize":{"value":"0x0001","description":"1x 1 bytes"},"bInterval":{"value":"255"}}]}]}},"hub_descriptor":{"bLength":{"value":"9"},"bDescriptorType":{"value":"41"},"nNbrPorts":{"value":"7"},"wHubCharacteristic":{"value":"0x0009","attributes":["Per-port power switching","Per-port overcurrent protection"]},"bPwrOn2PwrGood":{"value":"50 *","description":"2 milli seconds"},"bHubContrCurrent":{"value":"100","description":"milli Ampere"},"DeviceRemovable":{"value":"0x00"},"PortPwrCtrlMask":{"value":"0xfe"},"hub_port_status":{"Port 1":{"value":"0000.0103","attributes":["power","enable","connect"]},"Port 2":{"value":"0000.0100","attributes":["power"]},"Port 3":{"value":"0000.0100","attributes":["power"]},"Port 4":{"value":"0000.0100","attributes":["power"]},"Port 5":{"value":"0000.0100","attributes":["power"]},"Port 6":{"value":"0000.0100","attributes":["power"]},"Port 7":{"value":"0000.0100","attributes":["power"]}}},"device_status":{"value":"0x2909","description":"Self Powered"}},{"bus":"002","device":"002","id":"0e0f:0003","description":"VMware, Inc. Virtual Mouse","device_descriptor":{"bLength":{"value":"18"},"bDescriptorType":{"value":"1"},"bcdUSB":{"value":"1.10"},"bDeviceClass":{"value":"0","description":"(Defined at Interface level)"},"bDeviceSubClass":{"value":"0"},"bDeviceProtocol":{"value":"0"},"bMaxPacketSize0":{"value":"8"},"idVendor":{"value":"0x0e0f","description":"VMware, Inc."},"idProduct":{"value":"0x0003","description":"Virtual Mouse"},"bcdDevice":{"value":"1.03"},"iManufacturer":{"value":"1","description":"VMware"},"iProduct":{"value":"2","description":"VMware Virtual USB Mouse"},"iSerial":{"value":"0"},"bNumConfigurations":{"value":"1"},"configuration_descriptor":{"bLength":{"value":"9"},"bDescriptorType":{"value":"2"},"wTotalLength":{"value":"34"},"bNumInterfaces":{"value":"1"},"bConfigurationValue":{"value":"1"},"iConfiguration":{"value":"1","description":"VMware"},"bmAttributes":{"value":"0xc0","attributes":["Self Powered"]},"MaxPower":{"description":"0mA"},"interface_descriptors":[{"bLength":{"value":"9"},"bDescriptorType":{"value":"4"},"bInterfaceNumber":{"value":"0"},"bAlternateSetting":{"value":"0"},"bNumEndpoints":{"value":"1"},"bInterfaceClass":{"value":"3","description":"Human Interface Device"},"bInterfaceSubClass":{"value":"1","description":"Boot Interface Subclass"},"bInterfaceProtocol":{"value":"2","description":"Mouse"},"iInterface":{"value":"1","description":"VMware"},"hid_device_descriptor":{"bLength":{"value":"9"},"bDescriptorType":{"value":"34","description":"Report"},"bcdHID":{"value":"1.10"},"bCountryCode":{"value":"0","description":"Not supported"},"bNumDescriptors":{"value":"1"},"wDescriptorLength":{"value":"46"}},"endpoint_descriptors":[{"bLength":{"value":"7"},"bDescriptorType":{"value":"5"},"bEndpointAddress":{"value":"0x81","description":"EP 1 IN"},"bmAttributes":{"value":"3","attributes":["Transfer Type Interrupt","Synch Type None","Usage Type Data"]},"wMaxPacketSize":{"value":"0x0008","description":"1x 8 bytes"},"bInterval":{"value":"1"}}]}]}},"device_status":{"value":"0x0001","description":"Self Powered"}},{"bus":"002","device":"001","id":"1d6b:0001","description":"Linux Foundation 1.1 root hub","device_descriptor":{"bLength":{"value":"18"},"bDescriptorType":{"value":"1"},"bcdUSB":{"value":"1.10"},"bDeviceClass":{"value":"9","description":"Hub"},"bDeviceSubClass":{"value":"0","description":"Unused"},"bDeviceProtocol":{"value":"0","description":"Full speed (or root) hub"},"bMaxPacketSize0":{"value":"64"},"idVendor":{"value":"0x1d6b","description":"Linux Foundation"},"idProduct":{"value":"0x0001","description":"1.1 root hub"},"bcdDevice":{"value":"3.10"},"iManufacturer":{"value":"3","description":"Linux 3.10.0-1062.1.2.el7.x86_64 uhci_hcd"},"iProduct":{"value":"2","description":"UHCI Host Controller"},"iSerial":{"value":"1","description":"0000:02:00.0"},"bNumConfigurations":{"value":"1"},"configuration_descriptor":{"bLength":{"value":"9"},"bDescriptorType":{"value":"2"},"wTotalLength":{"value":"25"},"bNumInterfaces":{"value":"1"},"bConfigurationValue":{"value":"1"},"iConfiguration":{"value":"0"},"bmAttributes":{"value":"0xe0","attributes":["Self Powered","Remote Wakeup"]},"MaxPower":{"description":"0mA"},"interface_descriptors":[{"bLength":{"value":"9"},"bDescriptorType":{"value":"4"},"bInterfaceNumber":{"value":"0"},"bAlternateSetting":{"value":"0"},"bNumEndpoints":{"value":"1"},"bInterfaceClass":{"value":"9","description":"Hub"},"bInterfaceSubClass":{"value":"0","description":"Unused"},"bInterfaceProtocol":{"value":"0","description":"Full speed (or root) hub"},"iInterface":{"value":"0"},"endpoint_descriptors":[{"bLength":{"value":"7"},"bDescriptorType":{"value":"5"},"bEndpointAddress":{"value":"0x81","description":"EP 1 IN"},"bmAttributes":{"value":"3","attributes":["Transfer Type Interrupt","Synch Type None","Usage Type Data"]},"wMaxPacketSize":{"value":"0x0002","description":"1x 2 bytes"},"bInterval":{"value":"255"}}]}]}},"hub_descriptor":{"bLength":{"value":"9"},"bDescriptorType":{"value":"41"},"nNbrPorts":{"value":"2"},"wHubCharacteristic":{"value":"0x000a","attributes":["No power switching (usb 1.0)","Per-port overcurrent protection"]},"bPwrOn2PwrGood":{"value":"1 *","description":"2 milli seconds"},"bHubContrCurrent":{"value":"0","description":"milli Ampere"},"DeviceRemovable":{"value":"0x00"},"PortPwrCtrlMask":{"value":"0xff"},"hub_port_status":{"Port 1":{"value":"0000.0103","attributes":["power","enable","connect"]},"Port 2":{"value":"0000.0103","attributes":["power","enable","connect"]}}},"device_status":{"value":"0x0001","description":"Self Powered"}}] jc-1.17.3/tests/fixtures/centos-7.7/lsusb-v.out000066400000000000000000000422611415226333200211500ustar00rootroot00000000000000 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Device Descriptor: bLength 18 bDescriptorType 1 bcdUSB 2.00 bDeviceClass 9 Hub bDeviceSubClass 0 Unused bDeviceProtocol 0 Full speed (or root) hub bMaxPacketSize0 64 idVendor 0x1d6b Linux Foundation idProduct 0x0002 2.0 root hub bcdDevice 3.10 iManufacturer 3 Linux 3.10.0-1062.1.2.el7.x86_64 ehci_hcd iProduct 2 EHCI Host Controller iSerial 1 0000:02:02.0 bNumConfigurations 1 Configuration Descriptor: bLength 9 bDescriptorType 2 wTotalLength 25 bNumInterfaces 1 bConfigurationValue 1 iConfiguration 0 bmAttributes 0xe0 Self Powered Remote Wakeup MaxPower 0mA Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 0 bAlternateSetting 0 bNumEndpoints 1 bInterfaceClass 9 Hub bInterfaceSubClass 0 Unused bInterfaceProtocol 0 Full speed (or root) hub iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x81 EP 1 IN bmAttributes 3 Transfer Type Interrupt Synch Type None Usage Type Data wMaxPacketSize 0x0004 1x 4 bytes bInterval 12 Hub Descriptor: bLength 9 bDescriptorType 41 nNbrPorts 6 wHubCharacteristic 0x000a No power switching (usb 1.0) Per-port overcurrent protection bPwrOn2PwrGood 10 * 2 milli seconds bHubContrCurrent 0 milli Ampere DeviceRemovable 0x00 PortPwrCtrlMask 0xff Hub Port Status: Port 1: 0000.0100 power Port 2: 0000.0100 power Port 3: 0000.0100 power Port 4: 0000.0100 power Port 5: 0000.0100 power Port 6: 0000.0100 power Device Status: 0x0001 Self Powered Bus 002 Device 004: ID 0e0f:0008 VMware, Inc. Device Descriptor: bLength 18 bDescriptorType 1 bcdUSB 2.00 bDeviceClass 224 Wireless bDeviceSubClass 1 Radio Frequency bDeviceProtocol 1 Bluetooth bMaxPacketSize0 64 idVendor 0x0e0f VMware, Inc. idProduct 0x0008 bcdDevice 1.00 iManufacturer 1 VMware iProduct 2 Virtual Bluetooth Adapter iSerial 3 000650268328 bNumConfigurations 1 Configuration Descriptor: bLength 9 bDescriptorType 2 wTotalLength 177 bNumInterfaces 2 bConfigurationValue 1 iConfiguration 0 bmAttributes 0xc0 Self Powered MaxPower 0mA Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 0 bAlternateSetting 0 bNumEndpoints 3 bInterfaceClass 224 Wireless bInterfaceSubClass 1 Radio Frequency bInterfaceProtocol 1 Bluetooth iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x81 EP 1 IN bmAttributes 3 Transfer Type Interrupt Synch Type None Usage Type Data wMaxPacketSize 0x0010 1x 16 bytes bInterval 1 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x02 EP 2 OUT bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0040 1x 64 bytes bInterval 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x82 EP 2 IN bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0040 1x 64 bytes bInterval 0 Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 1 bAlternateSetting 0 bNumEndpoints 2 bInterfaceClass 224 Wireless bInterfaceSubClass 1 Radio Frequency bInterfaceProtocol 1 Bluetooth iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x03 EP 3 OUT bmAttributes 1 Transfer Type Isochronous Synch Type None Usage Type Data wMaxPacketSize 0x0000 1x 0 bytes bInterval 1 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x83 EP 3 IN bmAttributes 1 Transfer Type Isochronous Synch Type None Usage Type Data wMaxPacketSize 0x0000 1x 0 bytes bInterval 1 Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 1 bAlternateSetting 1 bNumEndpoints 2 bInterfaceClass 224 Wireless bInterfaceSubClass 1 Radio Frequency bInterfaceProtocol 1 Bluetooth iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x03 EP 3 OUT bmAttributes 1 Transfer Type Isochronous Synch Type None Usage Type Data wMaxPacketSize 0x0009 1x 9 bytes bInterval 1 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x83 EP 3 IN bmAttributes 1 Transfer Type Isochronous Synch Type None Usage Type Data wMaxPacketSize 0x0009 1x 9 bytes bInterval 1 Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 1 bAlternateSetting 2 bNumEndpoints 2 bInterfaceClass 224 Wireless bInterfaceSubClass 1 Radio Frequency bInterfaceProtocol 1 Bluetooth iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x03 EP 3 OUT bmAttributes 1 Transfer Type Isochronous Synch Type None Usage Type Data wMaxPacketSize 0x0011 1x 17 bytes bInterval 1 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x83 EP 3 IN bmAttributes 1 Transfer Type Isochronous Synch Type None Usage Type Data wMaxPacketSize 0x0011 1x 17 bytes bInterval 1 Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 1 bAlternateSetting 3 bNumEndpoints 2 bInterfaceClass 224 Wireless bInterfaceSubClass 1 Radio Frequency bInterfaceProtocol 1 Bluetooth iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x03 EP 3 OUT bmAttributes 1 Transfer Type Isochronous Synch Type None Usage Type Data wMaxPacketSize 0x0019 1x 25 bytes bInterval 1 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x83 EP 3 IN bmAttributes 1 Transfer Type Isochronous Synch Type None Usage Type Data wMaxPacketSize 0x0019 1x 25 bytes bInterval 1 Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 1 bAlternateSetting 4 bNumEndpoints 2 bInterfaceClass 224 Wireless bInterfaceSubClass 1 Radio Frequency bInterfaceProtocol 1 Bluetooth iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x03 EP 3 OUT bmAttributes 1 Transfer Type Isochronous Synch Type None Usage Type Data wMaxPacketSize 0x0021 1x 33 bytes bInterval 1 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x83 EP 3 IN bmAttributes 1 Transfer Type Isochronous Synch Type None Usage Type Data wMaxPacketSize 0x0021 1x 33 bytes bInterval 1 Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 1 bAlternateSetting 5 bNumEndpoints 2 bInterfaceClass 224 Wireless bInterfaceSubClass 1 Radio Frequency bInterfaceProtocol 1 Bluetooth iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x03 EP 3 OUT bmAttributes 1 Transfer Type Isochronous Synch Type None Usage Type Data wMaxPacketSize 0x0031 1x 49 bytes bInterval 1 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x83 EP 3 IN bmAttributes 1 Transfer Type Isochronous Synch Type None Usage Type Data wMaxPacketSize 0x0031 1x 49 bytes bInterval 1 Device Status: 0x0001 Self Powered Bus 002 Device 003: ID 0e0f:0002 VMware, Inc. Virtual USB Hub Device Descriptor: bLength 18 bDescriptorType 1 bcdUSB 1.10 bDeviceClass 9 Hub bDeviceSubClass 0 Unused bDeviceProtocol 0 Full speed (or root) hub bMaxPacketSize0 8 idVendor 0x0e0f VMware, Inc. idProduct 0x0002 Virtual USB Hub bcdDevice 1.00 iManufacturer 1 VMware, Inc. iProduct 2 VMware Virtual USB Hub iSerial 0 bNumConfigurations 1 Configuration Descriptor: bLength 9 bDescriptorType 2 wTotalLength 25 bNumInterfaces 1 bConfigurationValue 1 iConfiguration 1 VMware, Inc. bmAttributes 0xe0 Self Powered Remote Wakeup MaxPower 0mA Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 0 bAlternateSetting 0 bNumEndpoints 1 bInterfaceClass 9 Hub bInterfaceSubClass 0 Unused bInterfaceProtocol 0 Full speed (or root) hub iInterface 1 VMware, Inc. Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x81 EP 1 IN bmAttributes 3 Transfer Type Interrupt Synch Type None Usage Type Data wMaxPacketSize 0x0001 1x 1 bytes bInterval 255 Hub Descriptor: bLength 9 bDescriptorType 41 nNbrPorts 7 wHubCharacteristic 0x0009 Per-port power switching Per-port overcurrent protection bPwrOn2PwrGood 50 * 2 milli seconds bHubContrCurrent 100 milli Ampere DeviceRemovable 0x00 PortPwrCtrlMask 0xfe Hub Port Status: Port 1: 0000.0103 power enable connect Port 2: 0000.0100 power Port 3: 0000.0100 power Port 4: 0000.0100 power Port 5: 0000.0100 power Port 6: 0000.0100 power Port 7: 0000.0100 power Device Status: 0x2909 Self Powered Bus 002 Device 002: ID 0e0f:0003 VMware, Inc. Virtual Mouse Device Descriptor: bLength 18 bDescriptorType 1 bcdUSB 1.10 bDeviceClass 0 (Defined at Interface level) bDeviceSubClass 0 bDeviceProtocol 0 bMaxPacketSize0 8 idVendor 0x0e0f VMware, Inc. idProduct 0x0003 Virtual Mouse bcdDevice 1.03 iManufacturer 1 VMware iProduct 2 VMware Virtual USB Mouse iSerial 0 bNumConfigurations 1 Configuration Descriptor: bLength 9 bDescriptorType 2 wTotalLength 34 bNumInterfaces 1 bConfigurationValue 1 iConfiguration 1 VMware bmAttributes 0xc0 Self Powered MaxPower 0mA Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 0 bAlternateSetting 0 bNumEndpoints 1 bInterfaceClass 3 Human Interface Device bInterfaceSubClass 1 Boot Interface Subclass bInterfaceProtocol 2 Mouse iInterface 1 VMware HID Device Descriptor: bLength 9 bDescriptorType 33 bcdHID 1.10 bCountryCode 0 Not supported bNumDescriptors 1 bDescriptorType 34 Report wDescriptorLength 46 Report Descriptors: ** UNAVAILABLE ** Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x81 EP 1 IN bmAttributes 3 Transfer Type Interrupt Synch Type None Usage Type Data wMaxPacketSize 0x0008 1x 8 bytes bInterval 1 Device Status: 0x0001 Self Powered Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Device Descriptor: bLength 18 bDescriptorType 1 bcdUSB 1.10 bDeviceClass 9 Hub bDeviceSubClass 0 Unused bDeviceProtocol 0 Full speed (or root) hub bMaxPacketSize0 64 idVendor 0x1d6b Linux Foundation idProduct 0x0001 1.1 root hub bcdDevice 3.10 iManufacturer 3 Linux 3.10.0-1062.1.2.el7.x86_64 uhci_hcd iProduct 2 UHCI Host Controller iSerial 1 0000:02:00.0 bNumConfigurations 1 Configuration Descriptor: bLength 9 bDescriptorType 2 wTotalLength 25 bNumInterfaces 1 bConfigurationValue 1 iConfiguration 0 bmAttributes 0xe0 Self Powered Remote Wakeup MaxPower 0mA Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 0 bAlternateSetting 0 bNumEndpoints 1 bInterfaceClass 9 Hub bInterfaceSubClass 0 Unused bInterfaceProtocol 0 Full speed (or root) hub iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x81 EP 1 IN bmAttributes 3 Transfer Type Interrupt Synch Type None Usage Type Data wMaxPacketSize 0x0002 1x 2 bytes bInterval 255 Hub Descriptor: bLength 9 bDescriptorType 41 nNbrPorts 2 wHubCharacteristic 0x000a No power switching (usb 1.0) Per-port overcurrent protection bPwrOn2PwrGood 1 * 2 milli seconds bHubContrCurrent 0 milli Ampere DeviceRemovable 0x00 PortPwrCtrlMask 0xff Hub Port Status: Port 1: 0000.0103 power enable connect Port 2: 0000.0103 power enable connect Device Status: 0x0001 Self Powered jc-1.17.3/tests/fixtures/centos-7.7/lsusb.json000066400000000000000000000006711415226333200210460ustar00rootroot00000000000000[{"bus":"001","device":"001","id":"1d6b:0002","description":"Linux Foundation 2.0 root hub"},{"bus":"002","device":"004","id":"0e0f:0008","description":"VMware, Inc."},{"bus":"002","device":"003","id":"0e0f:0002","description":"VMware, Inc. Virtual USB Hub"},{"bus":"002","device":"002","id":"0e0f:0003","description":"VMware, Inc. Virtual Mouse"},{"bus":"002","device":"001","id":"1d6b:0001","description":"Linux Foundation 1.1 root hub"}] jc-1.17.3/tests/fixtures/centos-7.7/lsusb.out000066400000000000000000000004471415226333200207050ustar00rootroot00000000000000Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 002 Device 004: ID 0e0f:0008 VMware, Inc. Bus 002 Device 003: ID 0e0f:0002 VMware, Inc. Virtual USB Hub Bus 002 Device 002: ID 0e0f:0003 VMware, Inc. Virtual Mouse Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub jc-1.17.3/tests/fixtures/centos-7.7/md5sum.json000066400000000000000000000104131415226333200211230ustar00rootroot00000000000000[{"filename": "devtoolset-3-gcc-4.9.2-6.el7.x86_64.rpm", "hash": "65fc958c1add637ec23c4b137aecf3d3"}, {"filename": "digout", "hash": "5b9312ee5aff080927753c63a347707d"}, {"filename": "dmidecode.out", "hash": "716fd11c2ac00db109281f7110b8fb9d"}, {"filename": "file with spaces in the name", "hash": "d41d8cd98f00b204e9800998ecf8427e"}, {"filename": "id-centos.out", "hash": "4295be239a14ad77ef3253103de976d2"}, {"filename": "ifcfg.json", "hash": "01fda0d9ba9a75618b072e64ff512b43"}, {"filename": "ifconfig.out", "hash": "e3bff970404527b132dca58031c7286f"}, {"filename": "jc", "hash": "b8b604dc8213d9a6515f2c04bdccfb3b"}, {"filename": "jc-1.10.5-linux.sha256", "hash": "14236ca18714d2b6282758e9b7b46000"}, {"filename": "jc-1.10.5-linux.tar.gz", "hash": "a13b2843c1e8029a98503bc07613862c"}, {"filename": "jc-1.10.5.rpm", "hash": "d0e05de2651857155f8673dc113272ae"}, {"filename": "jc-1.11.1-linux.sha256", "hash": "53e4b33fa99c53c28972db666de9b7b3"}, {"filename": "jc-1.11.1-linux.tar.gz", "hash": "ea4145789224b142361016412cd613b7"}, {"filename": "jc-1.11.1.sha256", "hash": "c6c5fd21ef572dd6d2629c44ad566425"}, {"filename": "jc-1.11.1.tar.gz", "hash": "d838680555f84aff7f286dd440b2490b"}, {"filename": "jc-1.11.2-linux.sha256", "hash": "e7d5c22044848539c2cbd9f5b562de9a"}, {"filename": "jc-1.11.2-linux.tar.gz", "hash": "e6d842ead8cfc9a58df9dce7814ee657"}, {"filename": "jc-1.11.8-linux.sha256", "hash": "24a5005717ab949fd7608aaa77bfeade"}, {"filename": "jc-1.11.8-linux.tar.gz", "hash": "6a84320c7551c51051a748c873d91194"}, {"filename": "jc-1.13.1-linux.sha256", "hash": "54431e32a1ffa7a90f520a6d8ae966fc"}, {"filename": "jc-1.13.1-linux.tar.gz", "hash": "c7a084d9de6bf1193ea0601a2239fc2b"}, {"filename": "jc-1.13.2-linux.sha256", "hash": "1adf518be9a071131ab105155fee176a"}, {"filename": "jc-1.13.2-linux.tar.gz", "hash": "4d8dd74578bc7817de0834e2349c4466"}, {"filename": "jc-1.13.4-linux.sha256", "hash": "3b63bfaff06d9c825aa0a1e0d062a10e"}, {"filename": "jc-1.13.4-linux.tar.gz", "hash": "a5d7feae690e2c3d6bc4acef4205b308"}, {"filename": "jello-1.2.8-linux.sha256", "hash": "90d4fe29d8860adb46f14c99bd27306f"}, {"filename": "jello-1.2.8-linux.tar.gz", "hash": "ea4eadde3abe740d23feb38225e8fe46"}, {"filename": "jello-1.2.9-linux.sha256", "hash": "c690e9126ed296535046e68bfa02de94"}, {"filename": "jello-1.2.9-linux.tar.gz", "hash": "28d6899def6cb63e69d6bb8f53365ecd"}, {"filename": "journaljson", "hash": "5fed1973e223d1f1e45fccec089cb285"}, {"filename": "jp", "hash": "e49f9acb33479f59b7be1f94e8daa3db"}, {"filename": "jp_1.1.12_linux_x86_64.zip", "hash": "ef49750c3f69ae22b8c456e38e4ea39c"}, {"filename": "jq_twitter.json", "hash": "b86c4c8487e3c0bb656d068886c413b7"}, {"filename": "jtbl-1.1.6-linux.sha256", "hash": "d1427e00cbe4e0d1b5b239993ca474b5"}, {"filename": "jtbl-1.1.6-linux.tar.gz", "hash": "87d36c9c35c5ce23f691634d3faad06e"}, {"filename": "kbls.out", "hash": "b3d0c62d77c4f2861cb1dd7464faaa24"}, {"filename": "lastb.out", "hash": "7907a2a62c9f3e1a558ad24ff93fac2c"}, {"filename": "lsblk-cols", "hash": "d9920641b832e86c52e1ef380f777f63"}, {"filename": "ping-ip-O-D.out", "hash": "9ab7407b788aa94b95fe49dbc131b2cb"}, {"filename": "ping-ip-O.out", "hash": "969a0243a76a3bf407e3a24082af8068"}, {"filename": "psfile.txt", "hash": "e1e61d18b3e96359940a22c10f30ad34"}, {"filename": "resizeterm.sh", "hash": "9aa6b53e55b3134219c061441d5c0b3f"}, {"filename": "route-6-n.out", "hash": "e1e1084c23889b46a055d0f8101c0947"}, {"filename": "route-6.out", "hash": "4e75a36fcbf5b1f74c42849c641eb7d4"}, {"filename": "routeout", "hash": "fbb00b1c066988b8d4ce285309fc2a55"}, {"filename": "shafile.txt", "hash": "a54b97e7ffb498130a5807c492fd06bd"}, {"filename": "ss-aeep.out", "hash": "4aa7a33ccd4d863f2dc34570bc9a4761"}, {"filename": "ssout", "hash": "9e61faf4a86f484745e9361a6c33249b"}, {"filename": "systemctl.out", "hash": "eea802ae7bcbb6b63678b5ec68df6212"}, {"filename": "top.out", "hash": "8fc90c98a0b0455ba359199e98a3951a"}, {"filename": "tracepath6.out", "hash": "cdbfa0898a3c089a24ecdab4b62e0241"}, {"filename": "tracepath-cnn.out", "hash": "c5a2a5d40fcf6617d3ca1fae4766f70c"}, {"filename": "tr.out", "hash": "dedcbcfcf486d1620c7495c7c9700a02"}, {"filename": "who-aH.out", "hash": "6a90a054f9df3abdfe936c03e53b71d4"}, {"filename": "who.out", "hash": "d5c25156c301c14125aaa5d1e8f5adbb"}, {"filename": "whotext", "hash": "cbe28a0722637d2ea2c07378eba2206e"}] jc-1.17.3/tests/fixtures/centos-7.7/md5sum.out000066400000000000000000000054421415226333200207670ustar00rootroot0000000000000065fc958c1add637ec23c4b137aecf3d3 devtoolset-3-gcc-4.9.2-6.el7.x86_64.rpm 5b9312ee5aff080927753c63a347707d digout 716fd11c2ac00db109281f7110b8fb9d dmidecode.out d41d8cd98f00b204e9800998ecf8427e file with spaces in the name 4295be239a14ad77ef3253103de976d2 id-centos.out 01fda0d9ba9a75618b072e64ff512b43 ifcfg.json e3bff970404527b132dca58031c7286f ifconfig.out b8b604dc8213d9a6515f2c04bdccfb3b jc 14236ca18714d2b6282758e9b7b46000 jc-1.10.5-linux.sha256 a13b2843c1e8029a98503bc07613862c jc-1.10.5-linux.tar.gz d0e05de2651857155f8673dc113272ae jc-1.10.5.rpm 53e4b33fa99c53c28972db666de9b7b3 jc-1.11.1-linux.sha256 ea4145789224b142361016412cd613b7 jc-1.11.1-linux.tar.gz c6c5fd21ef572dd6d2629c44ad566425 jc-1.11.1.sha256 d838680555f84aff7f286dd440b2490b jc-1.11.1.tar.gz e7d5c22044848539c2cbd9f5b562de9a jc-1.11.2-linux.sha256 e6d842ead8cfc9a58df9dce7814ee657 jc-1.11.2-linux.tar.gz 24a5005717ab949fd7608aaa77bfeade jc-1.11.8-linux.sha256 6a84320c7551c51051a748c873d91194 jc-1.11.8-linux.tar.gz 54431e32a1ffa7a90f520a6d8ae966fc jc-1.13.1-linux.sha256 c7a084d9de6bf1193ea0601a2239fc2b jc-1.13.1-linux.tar.gz 1adf518be9a071131ab105155fee176a jc-1.13.2-linux.sha256 4d8dd74578bc7817de0834e2349c4466 jc-1.13.2-linux.tar.gz 3b63bfaff06d9c825aa0a1e0d062a10e jc-1.13.4-linux.sha256 a5d7feae690e2c3d6bc4acef4205b308 jc-1.13.4-linux.tar.gz 90d4fe29d8860adb46f14c99bd27306f jello-1.2.8-linux.sha256 ea4eadde3abe740d23feb38225e8fe46 jello-1.2.8-linux.tar.gz c690e9126ed296535046e68bfa02de94 jello-1.2.9-linux.sha256 28d6899def6cb63e69d6bb8f53365ecd jello-1.2.9-linux.tar.gz 5fed1973e223d1f1e45fccec089cb285 journaljson e49f9acb33479f59b7be1f94e8daa3db jp ef49750c3f69ae22b8c456e38e4ea39c jp_1.1.12_linux_x86_64.zip b86c4c8487e3c0bb656d068886c413b7 jq_twitter.json d1427e00cbe4e0d1b5b239993ca474b5 jtbl-1.1.6-linux.sha256 87d36c9c35c5ce23f691634d3faad06e jtbl-1.1.6-linux.tar.gz b3d0c62d77c4f2861cb1dd7464faaa24 kbls.out 7907a2a62c9f3e1a558ad24ff93fac2c lastb.out d9920641b832e86c52e1ef380f777f63 lsblk-cols 9ab7407b788aa94b95fe49dbc131b2cb ping-ip-O-D.out 969a0243a76a3bf407e3a24082af8068 ping-ip-O.out e1e61d18b3e96359940a22c10f30ad34 psfile.txt 9aa6b53e55b3134219c061441d5c0b3f resizeterm.sh e1e1084c23889b46a055d0f8101c0947 route-6-n.out 4e75a36fcbf5b1f74c42849c641eb7d4 route-6.out fbb00b1c066988b8d4ce285309fc2a55 routeout a54b97e7ffb498130a5807c492fd06bd shafile.txt 4aa7a33ccd4d863f2dc34570bc9a4761 ss-aeep.out 9e61faf4a86f484745e9361a6c33249b ssout eea802ae7bcbb6b63678b5ec68df6212 systemctl.out 8fc90c98a0b0455ba359199e98a3951a top.out cdbfa0898a3c089a24ecdab4b62e0241 tracepath6.out c5a2a5d40fcf6617d3ca1fae4766f70c tracepath-cnn.out dedcbcfcf486d1620c7495c7c9700a02 tr.out 6a90a054f9df3abdfe936c03e53b71d4 who-aH.out d5c25156c301c14125aaa5d1e8f5adbb who.out cbe28a0722637d2ea2c07378eba2206e whotext jc-1.17.3/tests/fixtures/centos-7.7/mount.json000066400000000000000000000113601415226333200210550ustar00rootroot00000000000000[{"filesystem": "sysfs", "mount_point": "/sys", "type": "sysfs", "options": ["rw", "nosuid", "nodev", "noexec", "relatime", "seclabel"]}, {"filesystem": "proc", "mount_point": "/proc", "type": "proc", "options": ["rw", "nosuid", "nodev", "noexec", "relatime"]}, {"filesystem": "devtmpfs", "mount_point": "/dev", "type": "devtmpfs", "options": ["rw", "nosuid", "seclabel", "size=1918816k", "nr_inodes=479704", "mode=755"]}, {"filesystem": "securityfs", "mount_point": "/sys/kernel/security", "type": "securityfs", "options": ["rw", "nosuid", "nodev", "noexec", "relatime"]}, {"filesystem": "tmpfs", "mount_point": "/dev/shm", "type": "tmpfs", "options": ["rw", "nosuid", "nodev", "seclabel"]}, {"filesystem": "devpts", "mount_point": "/dev/pts", "type": "devpts", "options": ["rw", "nosuid", "noexec", "relatime", "seclabel", "gid=5", "mode=620", "ptmxmode=000"]}, {"filesystem": "tmpfs", "mount_point": "/run", "type": "tmpfs", "options": ["rw", "nosuid", "nodev", "seclabel", "mode=755"]}, {"filesystem": "tmpfs", "mount_point": "/sys/fs/cgroup", "type": "tmpfs", "options": ["ro", "nosuid", "nodev", "noexec", "seclabel", "mode=755"]}, {"filesystem": "cgroup", "mount_point": "/sys/fs/cgroup/systemd", "type": "cgroup", "options": ["rw", "nosuid", "nodev", "noexec", "relatime", "seclabel", "xattr", "release_agent=/usr/lib/systemd/systemd-cgroups-agent", "name=systemd"]}, {"filesystem": "pstore", "mount_point": "/sys/fs/pstore", "type": "pstore", "options": ["rw", "nosuid", "nodev", "noexec", "relatime"]}, {"filesystem": "cgroup", "mount_point": "/sys/fs/cgroup/cpuset", "type": "cgroup", "options": ["rw", "nosuid", "nodev", "noexec", "relatime", "seclabel", "cpuset"]}, {"filesystem": "cgroup", "mount_point": "/sys/fs/cgroup/net_cls,net_prio", "type": "cgroup", "options": ["rw", "nosuid", "nodev", "noexec", "relatime", "seclabel", "net_prio", "net_cls"]}, {"filesystem": "cgroup", "mount_point": "/sys/fs/cgroup/cpu,cpuacct", "type": "cgroup", "options": ["rw", "nosuid", "nodev", "noexec", "relatime", "seclabel", "cpuacct", "cpu"]}, {"filesystem": "cgroup", "mount_point": "/sys/fs/cgroup/blkio", "type": "cgroup", "options": ["rw", "nosuid", "nodev", "noexec", "relatime", "seclabel", "blkio"]}, {"filesystem": "cgroup", "mount_point": "/sys/fs/cgroup/pids", "type": "cgroup", "options": ["rw", "nosuid", "nodev", "noexec", "relatime", "seclabel", "pids"]}, {"filesystem": "cgroup", "mount_point": "/sys/fs/cgroup/devices", "type": "cgroup", "options": ["rw", "nosuid", "nodev", "noexec", "relatime", "seclabel", "devices"]}, {"filesystem": "cgroup", "mount_point": "/sys/fs/cgroup/hugetlb", "type": "cgroup", "options": ["rw", "nosuid", "nodev", "noexec", "relatime", "seclabel", "hugetlb"]}, {"filesystem": "cgroup", "mount_point": "/sys/fs/cgroup/memory", "type": "cgroup", "options": ["rw", "nosuid", "nodev", "noexec", "relatime", "seclabel", "memory"]}, {"filesystem": "cgroup", "mount_point": "/sys/fs/cgroup/freezer", "type": "cgroup", "options": ["rw", "nosuid", "nodev", "noexec", "relatime", "seclabel", "freezer"]}, {"filesystem": "cgroup", "mount_point": "/sys/fs/cgroup/perf_event", "type": "cgroup", "options": ["rw", "nosuid", "nodev", "noexec", "relatime", "seclabel", "perf_event"]}, {"filesystem": "configfs", "mount_point": "/sys/kernel/config", "type": "configfs", "options": ["rw", "relatime"]}, {"filesystem": "/dev/mapper/centos-root", "mount_point": "/", "type": "xfs", "options": ["rw", "relatime", "seclabel", "attr2", "inode64", "noquota"]}, {"filesystem": "selinuxfs", "mount_point": "/sys/fs/selinux", "type": "selinuxfs", "options": ["rw", "relatime"]}, {"filesystem": "systemd-1", "mount_point": "/proc/sys/fs/binfmt_misc", "type": "autofs", "options": ["rw", "relatime", "fd=31", "pgrp=1", "timeout=0", "minproto=5", "maxproto=5", "direct", "pipe_ino=13903"]}, {"filesystem": "hugetlbfs", "mount_point": "/dev/hugepages", "type": "hugetlbfs", "options": ["rw", "relatime", "seclabel"]}, {"filesystem": "debugfs", "mount_point": "/sys/kernel/debug", "type": "debugfs", "options": ["rw", "relatime"]}, {"filesystem": "mqueue", "mount_point": "/dev/mqueue", "type": "mqueue", "options": ["rw", "relatime", "seclabel"]}, {"filesystem": "/dev/sda1", "mount_point": "/boot", "type": "xfs", "options": ["rw", "relatime", "seclabel", "attr2", "inode64", "noquota"]}, {"filesystem": "/dev/mapper/centos-root", "mount_point": "/var/lib/docker/containers", "type": "xfs", "options": ["rw", "relatime", "seclabel", "attr2", "inode64", "noquota"]}, {"filesystem": "/dev/mapper/centos-root", "mount_point": "/var/lib/docker/overlay2", "type": "xfs", "options": ["rw", "relatime", "seclabel", "attr2", "inode64", "noquota"]}, {"filesystem": "tmpfs", "mount_point": "/run/user/1000", "type": "tmpfs", "options": ["rw", "nosuid", "nodev", "relatime", "seclabel", "size=386136k", "mode=700", "uid=1000", "gid=1000"]}] jc-1.17.3/tests/fixtures/centos-7.7/mount.out000066400000000000000000000052271415226333200207200ustar00rootroot00000000000000sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime,seclabel) proc on /proc type proc (rw,nosuid,nodev,noexec,relatime) devtmpfs on /dev type devtmpfs (rw,nosuid,seclabel,size=1918816k,nr_inodes=479704,mode=755) securityfs on /sys/kernel/security type securityfs (rw,nosuid,nodev,noexec,relatime) tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev,seclabel) devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,seclabel,gid=5,mode=620,ptmxmode=000) tmpfs on /run type tmpfs (rw,nosuid,nodev,seclabel,mode=755) tmpfs on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,seclabel,mode=755) cgroup on /sys/fs/cgroup/systemd type cgroup (rw,nosuid,nodev,noexec,relatime,seclabel,xattr,release_agent=/usr/lib/systemd/systemd-cgroups-agent,name=systemd) pstore on /sys/fs/pstore type pstore (rw,nosuid,nodev,noexec,relatime) cgroup on /sys/fs/cgroup/cpuset type cgroup (rw,nosuid,nodev,noexec,relatime,seclabel,cpuset) cgroup on /sys/fs/cgroup/net_cls,net_prio type cgroup (rw,nosuid,nodev,noexec,relatime,seclabel,net_prio,net_cls) cgroup on /sys/fs/cgroup/cpu,cpuacct type cgroup (rw,nosuid,nodev,noexec,relatime,seclabel,cpuacct,cpu) cgroup on /sys/fs/cgroup/blkio type cgroup (rw,nosuid,nodev,noexec,relatime,seclabel,blkio) cgroup on /sys/fs/cgroup/pids type cgroup (rw,nosuid,nodev,noexec,relatime,seclabel,pids) cgroup on /sys/fs/cgroup/devices type cgroup (rw,nosuid,nodev,noexec,relatime,seclabel,devices) cgroup on /sys/fs/cgroup/hugetlb type cgroup (rw,nosuid,nodev,noexec,relatime,seclabel,hugetlb) cgroup on /sys/fs/cgroup/memory type cgroup (rw,nosuid,nodev,noexec,relatime,seclabel,memory) cgroup on /sys/fs/cgroup/freezer type cgroup (rw,nosuid,nodev,noexec,relatime,seclabel,freezer) cgroup on /sys/fs/cgroup/perf_event type cgroup (rw,nosuid,nodev,noexec,relatime,seclabel,perf_event) configfs on /sys/kernel/config type configfs (rw,relatime) /dev/mapper/centos-root on / type xfs (rw,relatime,seclabel,attr2,inode64,noquota) selinuxfs on /sys/fs/selinux type selinuxfs (rw,relatime) systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=31,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=13903) hugetlbfs on /dev/hugepages type hugetlbfs (rw,relatime,seclabel) debugfs on /sys/kernel/debug type debugfs (rw,relatime) mqueue on /dev/mqueue type mqueue (rw,relatime,seclabel) /dev/sda1 on /boot type xfs (rw,relatime,seclabel,attr2,inode64,noquota) /dev/mapper/centos-root on /var/lib/docker/containers type xfs (rw,relatime,seclabel,attr2,inode64,noquota) /dev/mapper/centos-root on /var/lib/docker/overlay2 type xfs (rw,relatime,seclabel,attr2,inode64,noquota) tmpfs on /run/user/1000 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=386136k,mode=700,uid=1000,gid=1000) jc-1.17.3/tests/fixtures/centos-7.7/netstat-i.json000066400000000000000000000010041415226333200216150ustar00rootroot00000000000000[{"iface": "docker0", "mtu": 1500, "rx_ok": 0, "rx_err": 0, "rx_drp": 0, "rx_ovr": 0, "tx_ok": 0, "tx_err": 0, "tx_drp": 0, "tx_ovr": 0, "flg": "BMU", "kind": "interface"}, {"iface": "ens33", "mtu": 1500, "rx_ok": 476, "rx_err": 0, "rx_drp": 0, "rx_ovr": 0, "tx_ok": 312, "tx_err": 0, "tx_drp": 0, "tx_ovr": 0, "flg": "BMRU", "kind": "interface"}, {"iface": "lo", "mtu": 65536, "rx_ok": 0, "rx_err": 0, "rx_drp": 0, "rx_ovr": 0, "tx_ok": 0, "tx_err": 0, "tx_drp": 0, "tx_ovr": 0, "flg": "LRU", "kind": "interface"}] jc-1.17.3/tests/fixtures/centos-7.7/netstat-i.out000066400000000000000000000005601415226333200214610ustar00rootroot00000000000000Kernel Interface table Iface MTU RX-OK RX-ERR RX-DRP RX-OVR TX-OK TX-ERR TX-DRP TX-OVR Flg docker0 1500 0 0 0 0 0 0 0 0 BMU ens33 1500 476 0 0 0 312 0 0 0 BMRU lo 65536 0 0 0 0 0 0 0 0 LRU jc-1.17.3/tests/fixtures/centos-7.7/netstat-l.json000066400000000000000000000155541415226333200216370ustar00rootroot00000000000000[{"proto": "tcp", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "0.0.0.0", "state": "LISTEN", "kind": "network", "local_port": "smtp", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv4"}, {"proto": "tcp", "recv_q": 0, "send_q": 0, "local_address": "0.0.0.0", "foreign_address": "0.0.0.0", "state": "LISTEN", "kind": "network", "local_port": "ssh", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv4"}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "[::]", "state": "LISTEN", "kind": "network", "local_port": "smtp", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv6"}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "[::]", "foreign_address": "[::]", "state": "LISTEN", "kind": "network", "local_port": "ssh", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv6"}, {"proto": "udp", "recv_q": 0, "send_q": 0, "local_address": "0.0.0.0", "foreign_address": "0.0.0.0", "state": null, "kind": "network", "local_port": "bootpc", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "0.0.0.0", "state": null, "kind": "network", "local_port": "323", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 323}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "[::]", "state": null, "kind": "network", "local_port": "323", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 323}, {"proto": "raw6", "recv_q": 0, "send_q": 0, "local_address": "[::]", "foreign_address": "[::]", "state": "7", "kind": "network", "local_port": "ipv6-icmp", "foreign_port": "*", "transport_protocol": null, "network_protocol": "ipv6"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 13851, "path": "/run/lvm/lvmpolld.socket", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 8991, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22321, "path": "public/pickup", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22332, "path": "private/tlsmgr", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22839, "path": "/run/docker/libnetwork/fe53fe5029258e61eb7a9173ec80150ea3595abe7d69e47af064f451212110bf.sock", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 21822, "path": "/var/run/docker.sock", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 13918, "path": "/run/lvm/lvmetad.socket", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 21877, "path": "/var/run/docker/libcontainerd/docker-containerd.sock", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 20600, "path": "/var/run/NetworkManager/private-dhcp", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 17785, "path": "/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22325, "path": "public/cleanup", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "SEQPACKET", "state": "LISTENING", "inode": 13962, "path": "/run/udev/control", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22328, "path": "public/qmgr", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22350, "path": "public/flush", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22365, "path": "public/showq", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22335, "path": "private/rewrite", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 13771, "path": "/run/systemd/private", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22338, "path": "private/bounce", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22341, "path": "private/defer", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22344, "path": "private/trace", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22347, "path": "private/verify", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22353, "path": "private/proxymap", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22356, "path": "private/proxywrite", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22359, "path": "private/smtp", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22362, "path": "private/relay", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22368, "path": "private/error", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22371, "path": "private/retry", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22374, "path": "private/discard", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22377, "path": "private/local", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22380, "path": "private/virtual", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22383, "path": "private/lmtp", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22386, "path": "private/anvil", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22389, "path": "private/scache", "kind": "socket"}] jc-1.17.3/tests/fixtures/centos-7.7/netstat-l.out000066400000000000000000000066531415226333200214750ustar00rootroot00000000000000Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address Foreign Address State tcp 0 0 localhost:smtp 0.0.0.0:* LISTEN tcp 0 0 0.0.0.0:ssh 0.0.0.0:* LISTEN tcp6 0 0 localhost:smtp [::]:* LISTEN tcp6 0 0 [::]:ssh [::]:* LISTEN udp 0 0 0.0.0.0:bootpc 0.0.0.0:* udp 0 0 localhost:323 0.0.0.0:* udp6 0 0 localhost:323 [::]:* raw6 0 0 [::]:ipv6-icmp [::]:* 7 Active UNIX domain sockets (only servers) Proto RefCnt Flags Type State I-Node Path unix 2 [ ACC ] STREAM LISTENING 13851 /run/lvm/lvmpolld.socket unix 2 [ ACC ] STREAM LISTENING 8991 /run/systemd/journal/stdout unix 2 [ ACC ] STREAM LISTENING 22321 public/pickup unix 2 [ ACC ] STREAM LISTENING 22332 private/tlsmgr unix 2 [ ACC ] STREAM LISTENING 22839 /run/docker/libnetwork/fe53fe5029258e61eb7a9173ec80150ea3595abe7d69e47af064f451212110bf.sock unix 2 [ ACC ] STREAM LISTENING 21822 /var/run/docker.sock unix 2 [ ACC ] STREAM LISTENING 13918 /run/lvm/lvmetad.socket unix 2 [ ACC ] STREAM LISTENING 21877 /var/run/docker/libcontainerd/docker-containerd.sock unix 2 [ ACC ] STREAM LISTENING 20600 /var/run/NetworkManager/private-dhcp unix 2 [ ACC ] STREAM LISTENING 17785 /run/dbus/system_bus_socket unix 2 [ ACC ] STREAM LISTENING 22325 public/cleanup unix 2 [ ACC ] SEQPACKET LISTENING 13962 /run/udev/control unix 2 [ ACC ] STREAM LISTENING 22328 public/qmgr unix 2 [ ACC ] STREAM LISTENING 22350 public/flush unix 2 [ ACC ] STREAM LISTENING 22365 public/showq unix 2 [ ACC ] STREAM LISTENING 22335 private/rewrite unix 2 [ ACC ] STREAM LISTENING 13771 /run/systemd/private unix 2 [ ACC ] STREAM LISTENING 22338 private/bounce unix 2 [ ACC ] STREAM LISTENING 22341 private/defer unix 2 [ ACC ] STREAM LISTENING 22344 private/trace unix 2 [ ACC ] STREAM LISTENING 22347 private/verify unix 2 [ ACC ] STREAM LISTENING 22353 private/proxymap unix 2 [ ACC ] STREAM LISTENING 22356 private/proxywrite unix 2 [ ACC ] STREAM LISTENING 22359 private/smtp unix 2 [ ACC ] STREAM LISTENING 22362 private/relay unix 2 [ ACC ] STREAM LISTENING 22368 private/error unix 2 [ ACC ] STREAM LISTENING 22371 private/retry unix 2 [ ACC ] STREAM LISTENING 22374 private/discard unix 2 [ ACC ] STREAM LISTENING 22377 private/local unix 2 [ ACC ] STREAM LISTENING 22380 private/virtual unix 2 [ ACC ] STREAM LISTENING 22383 private/lmtp unix 2 [ ACC ] STREAM LISTENING 22386 private/anvil unix 2 [ ACC ] STREAM LISTENING 22389 private/scache jc-1.17.3/tests/fixtures/centos-7.7/netstat-p.json000066400000000000000000000423251415226333200216370ustar00rootroot00000000000000[{"proto": "tcp", "recv_q": 0, "send_q": 0, "local_address": "localhost.localdoma", "foreign_address": "192.168.71.1", "state": "ESTABLISHED", "program_name": null, "kind": "network", "local_port": "ssh", "foreign_port": "58727", "transport_protocol": "tcp", "network_protocol": "ipv4", "foreign_port_num": 58727}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 8971, "program_name": null, "path": "/run/systemd/notify", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 8973, "program_name": null, "path": "/run/systemd/cgroups-agent", "kind": "socket"}, {"proto": "unix", "refcnt": 6, "flags": null, "type": "DGRAM", "state": null, "inode": 8994, "program_name": null, "path": "/run/systemd/journal/socket", "kind": "socket"}, {"proto": "unix", "refcnt": 15, "flags": null, "type": "DGRAM", "state": null, "inode": 8996, "program_name": null, "path": "/dev/log", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 13864, "program_name": null, "path": "/run/systemd/shutdownd", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 18547, "program_name": null, "path": "/var/run/chrony/chronyd.sock", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 44430, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22366, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22390, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 21429, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22387, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22388, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 19075, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22385, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 18892, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 17796, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 22409, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 18893, "program_name": null, "path": "/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 18364, "program_name": null, "path": "/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 44965, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22384, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 21430, "program_name": null, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 14760, "program_name": null, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 19005, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 17861, "program_name": null, "path": "/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 19006, "program_name": null, "path": "/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22330, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 17630, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 22509, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 20119, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 21563, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22391, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 18955, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22373, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22478, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 17844, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22372, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 17621, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 44962, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 14759, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22369, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22370, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 17845, "program_name": null, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22367, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 21801, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 18363, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22479, "program_name": null, "path": "/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 17631, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22381, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 20120, "program_name": null, "path": "/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 17859, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22382, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22379, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22364, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 17860, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 44966, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22378, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22375, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 21373, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 18956, "program_name": null, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22376, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 21448, "program_name": null, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 14873, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 23047, "program_name": null, "path": "/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22352, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22327, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22355, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22320, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 14872, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 14408, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22354, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 18498, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22349, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22322, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22326, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22348, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22351, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 18140, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 24201, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 18141, "program_name": null, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 18549, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 14252, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22361, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 18610, "program_name": null, "path": "/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22360, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22240, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 14029, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22363, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22357, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22329, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22241, "program_name": null, "path": "/var/run/docker/libcontainerd/docker-containerd.sock", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 18418, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 21303, "program_name": null, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 18419, "program_name": null, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22358, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22337, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22336, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22323, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 18604, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22339, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 18730, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 18979, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22334, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22333, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 18269, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22345, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 22293, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 21302, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22346, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 23046, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 14838, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22340, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22343, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 14409, "program_name": null, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22342, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22319, "program_name": null, "kind": "socket"}] jc-1.17.3/tests/fixtures/centos-7.7/netstat-p.out000066400000000000000000000242471415226333200215000ustar00rootroot00000000000000Active Internet connections (w/o servers) Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name tcp 0 0 localhost.localdoma:ssh 192.168.71.1:58727 ESTABLISHED - Active UNIX domain sockets (w/o servers) Proto RefCnt Flags Type State I-Node PID/Program name Path unix 3 [ ] DGRAM 8971 - /run/systemd/notify unix 2 [ ] DGRAM 8973 - /run/systemd/cgroups-agent unix 6 [ ] DGRAM 8994 - /run/systemd/journal/socket unix 15 [ ] DGRAM 8996 - /dev/log unix 2 [ ] DGRAM 13864 - /run/systemd/shutdownd unix 2 [ ] DGRAM 18547 - /var/run/chrony/chronyd.sock unix 2 [ ] DGRAM 44430 - unix 3 [ ] STREAM CONNECTED 22366 - unix 3 [ ] STREAM CONNECTED 22390 - unix 3 [ ] STREAM CONNECTED 21429 - unix 3 [ ] STREAM CONNECTED 22387 - unix 3 [ ] STREAM CONNECTED 22388 - unix 2 [ ] DGRAM 19075 - unix 3 [ ] STREAM CONNECTED 22385 - unix 3 [ ] STREAM CONNECTED 18892 - unix 3 [ ] STREAM CONNECTED 17796 - unix 2 [ ] DGRAM 22409 - unix 3 [ ] STREAM CONNECTED 18893 - /run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 18364 - /run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 44965 - unix 3 [ ] STREAM CONNECTED 22384 - unix 3 [ ] STREAM CONNECTED 21430 - /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 14760 - /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 19005 - unix 3 [ ] STREAM CONNECTED 17861 - /run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 19006 - /run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 22330 - unix 3 [ ] STREAM CONNECTED 17630 - unix 2 [ ] DGRAM 22509 - unix 3 [ ] STREAM CONNECTED 20119 - unix 2 [ ] DGRAM 21563 - unix 3 [ ] STREAM CONNECTED 22391 - unix 3 [ ] STREAM CONNECTED 18955 - unix 3 [ ] STREAM CONNECTED 22373 - unix 3 [ ] STREAM CONNECTED 22478 - unix 3 [ ] STREAM CONNECTED 17844 - unix 3 [ ] STREAM CONNECTED 22372 - unix 2 [ ] DGRAM 17621 - unix 2 [ ] DGRAM 44962 - unix 3 [ ] STREAM CONNECTED 14759 - unix 3 [ ] STREAM CONNECTED 22369 - unix 3 [ ] STREAM CONNECTED 22370 - unix 3 [ ] STREAM CONNECTED 17845 - /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 22367 - unix 2 [ ] DGRAM 21801 - unix 3 [ ] STREAM CONNECTED 18363 - unix 3 [ ] STREAM CONNECTED 22479 - /run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 17631 - unix 3 [ ] STREAM CONNECTED 22381 - unix 3 [ ] STREAM CONNECTED 20120 - /run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 17859 - unix 3 [ ] STREAM CONNECTED 22382 - unix 3 [ ] STREAM CONNECTED 22379 - unix 3 [ ] STREAM CONNECTED 22364 - unix 3 [ ] STREAM CONNECTED 17860 - unix 3 [ ] STREAM CONNECTED 44966 - unix 3 [ ] STREAM CONNECTED 22378 - unix 3 [ ] STREAM CONNECTED 22375 - unix 3 [ ] STREAM CONNECTED 21373 - unix 3 [ ] STREAM CONNECTED 18956 - /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 22376 - unix 3 [ ] STREAM CONNECTED 21448 - /run/systemd/journal/stdout unix 3 [ ] DGRAM 14873 - unix 3 [ ] STREAM CONNECTED 23047 - /run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 22352 - unix 3 [ ] STREAM CONNECTED 22327 - unix 3 [ ] STREAM CONNECTED 22355 - unix 3 [ ] STREAM CONNECTED 22320 - unix 3 [ ] DGRAM 14872 - unix 3 [ ] STREAM CONNECTED 14408 - unix 3 [ ] STREAM CONNECTED 22354 - unix 2 [ ] DGRAM 18498 - unix 3 [ ] STREAM CONNECTED 22349 - unix 3 [ ] STREAM CONNECTED 22322 - unix 3 [ ] STREAM CONNECTED 22326 - unix 3 [ ] STREAM CONNECTED 22348 - unix 3 [ ] STREAM CONNECTED 22351 - unix 3 [ ] STREAM CONNECTED 18140 - unix 2 [ ] DGRAM 24201 - unix 3 [ ] STREAM CONNECTED 18141 - /run/systemd/journal/stdout unix 2 [ ] DGRAM 18549 - unix 2 [ ] DGRAM 14252 - unix 3 [ ] STREAM CONNECTED 22361 - unix 3 [ ] STREAM CONNECTED 18610 - /run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 22360 - unix 3 [ ] STREAM CONNECTED 22240 - unix 2 [ ] DGRAM 14029 - unix 3 [ ] STREAM CONNECTED 22363 - unix 3 [ ] STREAM CONNECTED 22357 - unix 3 [ ] STREAM CONNECTED 22329 - unix 3 [ ] STREAM CONNECTED 22241 - /var/run/docker/libcontainerd/docker-containerd.sock unix 3 [ ] STREAM CONNECTED 18418 - unix 3 [ ] STREAM CONNECTED 21303 - /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 18419 - /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 22358 - unix 3 [ ] STREAM CONNECTED 22337 - unix 3 [ ] STREAM CONNECTED 22336 - unix 3 [ ] STREAM CONNECTED 22323 - unix 3 [ ] STREAM CONNECTED 18604 - unix 3 [ ] STREAM CONNECTED 22339 - unix 2 [ ] DGRAM 18730 - unix 2 [ ] DGRAM 18979 - unix 3 [ ] STREAM CONNECTED 22334 - unix 3 [ ] STREAM CONNECTED 22333 - unix 2 [ ] DGRAM 18269 - unix 3 [ ] STREAM CONNECTED 22345 - unix 2 [ ] DGRAM 22293 - unix 3 [ ] STREAM CONNECTED 21302 - unix 3 [ ] STREAM CONNECTED 22346 - unix 3 [ ] STREAM CONNECTED 23046 - unix 2 [ ] DGRAM 14838 - unix 3 [ ] STREAM CONNECTED 22340 - unix 3 [ ] STREAM CONNECTED 22343 - unix 3 [ ] STREAM CONNECTED 14409 - /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 22342 - unix 3 [ ] STREAM CONNECTED 22319 - jc-1.17.3/tests/fixtures/centos-7.7/netstat-r.json000066400000000000000000000011361415226333200216340ustar00rootroot00000000000000[{"destination": "default", "gateway": "gateway", "genmask": "0.0.0.0", "route_flags": "UG", "mss": 0, "window": 0, "irtt": 0, "iface": "ens33", "kind": "route", "route_flags_pretty": ["UP", "GATEWAY"]}, {"destination": "172.17.0.0", "gateway": "0.0.0.0", "genmask": "255.255.0.0", "route_flags": "U", "mss": 0, "window": 0, "irtt": 0, "iface": "docker0", "kind": "route", "route_flags_pretty": ["UP"]}, {"destination": "192.168.71.0", "gateway": "0.0.0.0", "genmask": "255.255.255.0", "route_flags": "U", "mss": 0, "window": 0, "irtt": 0, "iface": "ens33", "kind": "route", "route_flags_pretty": ["UP"]}] jc-1.17.3/tests/fixtures/centos-7.7/netstat-r.out000066400000000000000000000005261415226333200214740ustar00rootroot00000000000000Kernel IP routing table Destination Gateway Genmask Flags MSS Window irtt Iface default gateway 0.0.0.0 UG 0 0 0 ens33 172.17.0.0 0.0.0.0 255.255.0.0 U 0 0 0 docker0 192.168.71.0 0.0.0.0 255.255.255.0 U 0 0 0 ens33 jc-1.17.3/tests/fixtures/centos-7.7/netstat-rne.json000066400000000000000000000011711415226333200221560ustar00rootroot00000000000000[{"destination": "0.0.0.0", "gateway": "192.168.71.2", "genmask": "0.0.0.0", "route_flags": "UG", "metric": 100, "route_refs": 0, "use": 0, "iface": "ens33", "kind": "route", "route_flags_pretty": ["UP", "GATEWAY"]}, {"destination": "172.17.0.0", "gateway": "0.0.0.0", "genmask": "255.255.0.0", "route_flags": "U", "metric": 0, "route_refs": 0, "use": 0, "iface": "docker0", "kind": "route", "route_flags_pretty": ["UP"]}, {"destination": "192.168.71.0", "gateway": "0.0.0.0", "genmask": "255.255.255.0", "route_flags": "U", "metric": 100, "route_refs": 0, "use": 0, "iface": "ens33", "kind": "route", "route_flags_pretty": ["UP"]}] jc-1.17.3/tests/fixtures/centos-7.7/netstat-rne.out000066400000000000000000000005221415226333200220130ustar00rootroot00000000000000Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface 0.0.0.0 192.168.71.2 0.0.0.0 UG 100 0 0 ens33 172.17.0.0 0.0.0.0 255.255.0.0 U 0 0 0 docker0 192.168.71.0 0.0.0.0 255.255.255.0 U 100 0 0 ens33 jc-1.17.3/tests/fixtures/centos-7.7/netstat-rnee.json000066400000000000000000000013361415226333200223260ustar00rootroot00000000000000[{"destination": "0.0.0.0", "gateway": "192.168.71.2", "genmask": "0.0.0.0", "route_flags": "UG", "metric": 100, "route_refs": 0, "use": 0, "iface": "ens33", "mss": 0, "window": 0, "irtt": 0, "kind": "route", "route_flags_pretty": ["UP", "GATEWAY"]}, {"destination": "172.17.0.0", "gateway": "0.0.0.0", "genmask": "255.255.0.0", "route_flags": "U", "metric": 0, "route_refs": 0, "use": 0, "iface": "docker", "mss": 0, "window": 0, "irtt": 0, "kind": "route", "route_flags_pretty": ["UP"]}, {"destination": "192.168.71.0", "gateway": "0.0.0.0", "genmask": "255.255.255.0", "route_flags": "U", "metric": 100, "route_refs": 0, "use": 0, "iface": "ens33", "mss": 0, "window": 0, "irtt": 0, "kind": "route", "route_flags_pretty": ["UP"]}] jc-1.17.3/tests/fixtures/centos-7.7/netstat-rnee.out000066400000000000000000000006331415226333200221630ustar00rootroot00000000000000Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface MSS Window irtt 0.0.0.0 192.168.71.2 0.0.0.0 UG 100 0 0 ens33 0 0 0 172.17.0.0 0.0.0.0 255.255.0.0 U 0 0 0 docker 0 0 0 192.168.71.0 0.0.0.0 255.255.255.0 U 100 0 0 ens33 0 0 0 jc-1.17.3/tests/fixtures/centos-7.7/netstat-sudo-aeep.json000066400000000000000000000710041415226333200232560ustar00rootroot00000000000000[{"proto": "tcp", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "0.0.0.0", "state": "LISTEN", "user": "root", "inode": 22606, "program_name": "master", "kind": "network", "pid": 1489, "local_port": "smtp", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv4"}, {"proto": "tcp", "recv_q": 0, "send_q": 0, "local_address": "0.0.0.0", "foreign_address": "0.0.0.0", "state": "LISTEN", "user": "root", "inode": 21767, "program_name": "sshd", "kind": "network", "pid": 1215, "local_port": "ssh", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv4"}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "[::]", "state": "LISTEN", "user": "root", "inode": 22607, "program_name": "master", "kind": "network", "pid": 1489, "local_port": "smtp", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv6"}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "[::]", "foreign_address": "[::]", "state": "LISTEN", "user": "root", "inode": 21776, "program_name": "sshd", "kind": "network", "pid": 1215, "local_port": "ssh", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv6"}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "localhost", "state": "ESTABLISHED", "user": "root", "inode": 63129, "program_name": "sshd: kbrazil", "kind": "network", "pid": 6492, "local_port": "ssh", "foreign_port": "38134", "transport_protocol": "tcp", "network_protocol": "ipv6", "foreign_port_num": 38134}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "localhost", "state": "ESTABLISHED", "user": "kbrazil", "inode": 63128, "program_name": "ssh", "kind": "network", "pid": 6491, "local_port": "38134", "foreign_port": "ssh", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 38134}, {"proto": "udp", "recv_q": 0, "send_q": 0, "local_address": "0.0.0.0", "foreign_address": "0.0.0.0", "state": null, "user": "root", "inode": 20830, "program_name": "dhclient", "kind": "network", "pid": 1029, "local_port": "bootpc", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "0.0.0.0", "state": null, "user": "root", "inode": 18363, "program_name": "chronyd", "kind": "network", "pid": 795, "local_port": "323", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 323}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "[::]", "state": null, "user": "root", "inode": 18364, "program_name": "chronyd", "kind": "network", "pid": 795, "local_port": "323", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 323}, {"proto": "raw6", "recv_q": 0, "send_q": 0, "local_address": "[::]", "foreign_address": "[::]", "state": "7", "user": "root", "inode": 20819, "program_name": "NetworkManager", "kind": "network", "pid": 878, "local_port": "ipv6-icmp", "foreign_port": "*", "transport_protocol": null, "network_protocol": "ipv6"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 8971, "program_name": "systemd", "path": "/run/systemd/notify", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 8973, "program_name": "systemd", "path": "/run/systemd/cgroups-agent", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 8981, "program_name": "systemd", "path": "/run/systemd/journal/stdout", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22040, "program_name": "dockerd-curren", "path": "/var/run/docker.sock", "kind": "socket", "pid": 1220}, {"proto": "unix", "refcnt": 6, "flags": null, "type": "DGRAM", "state": null, "inode": 8984, "program_name": "systemd", "path": "/run/systemd/journal/socket", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 16, "flags": null, "type": "DGRAM", "state": null, "inode": 8986, "program_name": "systemd", "path": "/dev/log", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22610, "program_name": "master", "path": "public/pickup", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22623, "program_name": "master", "path": "private/tlsmgr", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 20787, "program_name": "NetworkManager", "path": "/var/run/NetworkManager/private-dhcp", "kind": "socket", "pid": 878}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 23141, "program_name": "dockerd-curren", "path": "/run/docker/libnetwork/35ee6333bf93cc6652841e66c2c6dfb2e0a14ff20208fe6c4ad28a33dad48423.sock", "kind": "socket", "pid": 1220}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 17775, "program_name": "systemd", "path": "/run/dbus/system_bus_socket", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22616, "program_name": "master", "path": "public/cleanup", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 14206, "program_name": "systemd", "path": "/run/systemd/shutdownd", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22619, "program_name": "master", "path": "public/qmgr", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22644, "program_name": "master", "path": "public/flush", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 14005, "program_name": "systemd", "path": "/run/lvm/lvmetad.socket", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 14021, "program_name": "systemd", "path": "/run/lvm/lvmpolld.socket", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22659, "program_name": "master", "path": "public/showq", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 18375, "program_name": "chronyd", "path": "/var/run/chrony/chronyd.sock", "kind": "socket", "pid": 795}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22629, "program_name": "master", "path": "private/rewrite", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22632, "program_name": "master", "path": "private/bounce", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22635, "program_name": "master", "path": "private/defer", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22638, "program_name": "master", "path": "private/trace", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22641, "program_name": "master", "path": "private/verify", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22647, "program_name": "master", "path": "private/proxymap", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 13776, "program_name": "systemd", "path": "/run/systemd/private", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22650, "program_name": "master", "path": "private/proxywrite", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22653, "program_name": "master", "path": "private/smtp", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22656, "program_name": "master", "path": "private/relay", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22662, "program_name": "master", "path": "private/error", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22665, "program_name": "master", "path": "private/retry", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22668, "program_name": "master", "path": "private/discard", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22673, "program_name": "master", "path": "private/local", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22676, "program_name": "master", "path": "private/virtual", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22679, "program_name": "master", "path": "private/lmtp", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22682, "program_name": "master", "path": "private/anvil", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22685, "program_name": "master", "path": "private/scache", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22259, "program_name": "docker-contain", "path": "/var/run/docker/libcontainerd/docker-containerd.sock", "kind": "socket", "pid": 1286}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "SEQPACKET", "state": "LISTENING", "inode": 13820, "program_name": "systemd", "path": "/run/udev/control", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22658, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 19150, "program_name": "NetworkManager", "kind": "socket", "pid": 878}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 19064, "program_name": "dbus-daemon", "path": "/run/dbus/system_bus_socket", "kind": "socket", "pid": 787}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22657, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 21607, "program_name": "systemd", "path": "/run/systemd/journal/stdout", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22660, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 19176, "program_name": "dbus-daemon", "path": "/run/dbus/system_bus_socket", "kind": "socket", "pid": 787}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 21606, "program_name": "sshd", "kind": "socket", "pid": 1215}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 14820, "program_name": "systemd-udevd", "kind": "socket", "pid": 578}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22661, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 18334, "program_name": "chronyd", "kind": "socket", "pid": 795}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 17615, "program_name": "auditd", "kind": "socket", "pid": 754}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 14877, "program_name": "systemd-udevd", "kind": "socket", "pid": 578}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22663, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 14878, "program_name": "systemd-udevd", "kind": "socket", "pid": 578}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 18347, "program_name": "systemd-logind", "kind": "socket", "pid": 783}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 63240, "program_name": "sshd: kbrazil", "kind": "socket", "pid": 6492}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 18416, "program_name": "dbus-daemon", "path": "/run/dbus/system_bus_socket", "kind": "socket", "pid": 787}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 21589, "program_name": "python2", "kind": "socket", "pid": 1218}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 18181, "program_name": "systemd", "path": "/run/systemd/journal/stdout", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 14846, "program_name": "systemd-udevd", "kind": "socket", "pid": 578}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22652, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 19253, "program_name": "dbus-daemon", "kind": "socket", "pid": 787}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22651, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 64208, "program_name": "sudo", "kind": "socket", "pid": 6591}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 18180, "program_name": "systemd-logind", "kind": "socket", "pid": 783}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 18817, "program_name": "crond", "kind": "socket", "pid": 826}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22654, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22655, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22645, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 21590, "program_name": "systemd", "path": "/run/systemd/journal/stdout", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22646, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22649, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22648, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 62939, "program_name": "pickup", "kind": "socket", "pid": 6481}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 18818, "program_name": "systemd", "path": "/run/systemd/journal/stdout", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 62145, "program_name": "systemd", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 63245, "program_name": "sshd: kbrazil@", "kind": "socket", "pid": 6496}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22637, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 63246, "program_name": "sshd: kbrazil", "kind": "socket", "pid": 6492}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22636, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 14821, "program_name": "systemd", "path": "/run/systemd/journal/stdout", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22639, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 19063, "program_name": "python2", "kind": "socket", "pid": 844}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 19175, "program_name": "NetworkManager", "kind": "socket", "pid": 878}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 18390, "program_name": "polkitd", "kind": "socket", "pid": 777}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22640, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22643, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22642, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 20820, "program_name": "dhclient", "kind": "socket", "pid": 1029}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22618, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 21745, "program_name": "rsyslogd", "kind": "socket", "pid": 1219}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22617, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22464, "program_name": "docker-contain", "path": "/var/run/docker/libcontainerd/docker-containerd.sock", "kind": "socket", "pid": 1286}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 20314, "program_name": "NetworkManager", "kind": "socket", "pid": 878}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 18299, "program_name": "dbus-daemon", "kind": "socket", "pid": 787}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 20315, "program_name": "dbus-daemon", "path": "/run/dbus/system_bus_socket", "kind": "socket", "pid": 787}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 18300, "program_name": "systemd", "path": "/run/systemd/journal/stdout", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22463, "program_name": "dockerd-curren", "kind": "socket", "pid": 1220}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22633, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22621, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22631, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 21741, "program_name": "systemd", "path": "/run/systemd/journal/stdout", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22620, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 14010, "program_name": "systemd-journal", "kind": "socket", "pid": 545}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 14671, "program_name": "lvmetad", "kind": "socket", "pid": 573}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 21740, "program_name": "dockerd-curren", "kind": "socket", "pid": 1220}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22681, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 18413, "program_name": "dbus-daemon", "kind": "socket", "pid": 787}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22680, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22609, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 18867, "program_name": "crond", "kind": "socket", "pid": 826}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22683, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 18414, "program_name": "dbus-daemon", "kind": "socket", "pid": 787}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 19127, "program_name": "systemd", "path": "/run/systemd/journal/stdout", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22684, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22614, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 14672, "program_name": "systemd", "path": "/run/systemd/journal/stdout", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22687, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22634, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22613, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22686, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22608, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 19126, "program_name": "NetworkManager", "kind": "socket", "pid": 878}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22628, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22675, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22674, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22765, "program_name": "dockerd-curren", "kind": "socket", "pid": 1220}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22677, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 18896, "program_name": "polkitd", "kind": "socket", "pid": 777}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22627, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22766, "program_name": "dbus-daemon", "path": "/run/dbus/system_bus_socket", "kind": "socket", "pid": 787}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 17614, "program_name": "auditd", "kind": "socket", "pid": 754}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22678, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 18318, "program_name": "systemd-logind", "kind": "socket", "pid": 783}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 22793, "program_name": "python2", "kind": "socket", "pid": 844}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 18415, "program_name": "dbus-daemon", "path": "/run/dbus/system_bus_socket", "kind": "socket", "pid": 787}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 22030, "program_name": "dockerd-curren", "kind": "socket", "pid": 1220}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22664, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 18302, "program_name": "systemd", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22667, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 18417, "program_name": "dbus-daemon", "path": "/run/dbus/system_bus_socket", "kind": "socket", "pid": 787}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22666, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 22581, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 23190, "program_name": "python2", "kind": "socket", "pid": 1218}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22669, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22630, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 22715, "program_name": "qmgr", "kind": "socket", "pid": 1498}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 17605, "program_name": "auditd", "kind": "socket", "pid": 754}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22670, "program_name": "master", "kind": "socket", "pid": 1489}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 23191, "program_name": "dbus-daemon", "path": "/run/dbus/system_bus_socket", "kind": "socket", "pid": 787}] jc-1.17.3/tests/fixtures/centos-7.7/netstat-sudo-aeep.out000066400000000000000000000352121415226333200231150ustar00rootroot00000000000000Active Internet connections (servers and established) Proto Recv-Q Send-Q Local Address Foreign Address State User Inode PID/Program name tcp 0 0 localhost:smtp 0.0.0.0:* LISTEN root 22606 1489/master tcp 0 0 0.0.0.0:ssh 0.0.0.0:* LISTEN root 21767 1215/sshd tcp6 0 0 localhost:smtp [::]:* LISTEN root 22607 1489/master tcp6 0 0 [::]:ssh [::]:* LISTEN root 21776 1215/sshd tcp6 0 0 localhost:ssh localhost:38134 ESTABLISHED root 63129 6492/sshd: kbrazil tcp6 0 0 localhost:38134 localhost:ssh ESTABLISHED kbrazil 63128 6491/ssh udp 0 0 0.0.0.0:bootpc 0.0.0.0:* root 20830 1029/dhclient udp 0 0 localhost:323 0.0.0.0:* root 18363 795/chronyd udp6 0 0 localhost:323 [::]:* root 18364 795/chronyd raw6 0 0 [::]:ipv6-icmp [::]:* 7 root 20819 878/NetworkManager Active UNIX domain sockets (servers and established) Proto RefCnt Flags Type State I-Node PID/Program name Path unix 3 [ ] DGRAM 8971 1/systemd /run/systemd/notify unix 2 [ ] DGRAM 8973 1/systemd /run/systemd/cgroups-agent unix 2 [ ACC ] STREAM LISTENING 8981 1/systemd /run/systemd/journal/stdout unix 2 [ ACC ] STREAM LISTENING 22040 1220/dockerd-curren /var/run/docker.sock unix 6 [ ] DGRAM 8984 1/systemd /run/systemd/journal/socket unix 16 [ ] DGRAM 8986 1/systemd /dev/log unix 2 [ ACC ] STREAM LISTENING 22610 1489/master public/pickup unix 2 [ ACC ] STREAM LISTENING 22623 1489/master private/tlsmgr unix 2 [ ACC ] STREAM LISTENING 20787 878/NetworkManager /var/run/NetworkManager/private-dhcp unix 2 [ ACC ] STREAM LISTENING 23141 1220/dockerd-curren /run/docker/libnetwork/35ee6333bf93cc6652841e66c2c6dfb2e0a14ff20208fe6c4ad28a33dad48423.sock unix 2 [ ACC ] STREAM LISTENING 17775 1/systemd /run/dbus/system_bus_socket unix 2 [ ACC ] STREAM LISTENING 22616 1489/master public/cleanup unix 2 [ ] DGRAM 14206 1/systemd /run/systemd/shutdownd unix 2 [ ACC ] STREAM LISTENING 22619 1489/master public/qmgr unix 2 [ ACC ] STREAM LISTENING 22644 1489/master public/flush unix 2 [ ACC ] STREAM LISTENING 14005 1/systemd /run/lvm/lvmetad.socket unix 2 [ ACC ] STREAM LISTENING 14021 1/systemd /run/lvm/lvmpolld.socket unix 2 [ ACC ] STREAM LISTENING 22659 1489/master public/showq unix 2 [ ] DGRAM 18375 795/chronyd /var/run/chrony/chronyd.sock unix 2 [ ACC ] STREAM LISTENING 22629 1489/master private/rewrite unix 2 [ ACC ] STREAM LISTENING 22632 1489/master private/bounce unix 2 [ ACC ] STREAM LISTENING 22635 1489/master private/defer unix 2 [ ACC ] STREAM LISTENING 22638 1489/master private/trace unix 2 [ ACC ] STREAM LISTENING 22641 1489/master private/verify unix 2 [ ACC ] STREAM LISTENING 22647 1489/master private/proxymap unix 2 [ ACC ] STREAM LISTENING 13776 1/systemd /run/systemd/private unix 2 [ ACC ] STREAM LISTENING 22650 1489/master private/proxywrite unix 2 [ ACC ] STREAM LISTENING 22653 1489/master private/smtp unix 2 [ ACC ] STREAM LISTENING 22656 1489/master private/relay unix 2 [ ACC ] STREAM LISTENING 22662 1489/master private/error unix 2 [ ACC ] STREAM LISTENING 22665 1489/master private/retry unix 2 [ ACC ] STREAM LISTENING 22668 1489/master private/discard unix 2 [ ACC ] STREAM LISTENING 22673 1489/master private/local unix 2 [ ACC ] STREAM LISTENING 22676 1489/master private/virtual unix 2 [ ACC ] STREAM LISTENING 22679 1489/master private/lmtp unix 2 [ ACC ] STREAM LISTENING 22682 1489/master private/anvil unix 2 [ ACC ] STREAM LISTENING 22685 1489/master private/scache unix 2 [ ACC ] STREAM LISTENING 22259 1286/docker-contain /var/run/docker/libcontainerd/docker-containerd.sock unix 2 [ ACC ] SEQPACKET LISTENING 13820 1/systemd /run/udev/control unix 3 [ ] STREAM CONNECTED 22658 1489/master unix 2 [ ] DGRAM 19150 878/NetworkManager unix 3 [ ] STREAM CONNECTED 19064 787/dbus-daemon /run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 22657 1489/master unix 3 [ ] STREAM CONNECTED 21607 1/systemd /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 22660 1489/master unix 3 [ ] STREAM CONNECTED 19176 787/dbus-daemon /run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 21606 1215/sshd unix 3 [ ] STREAM CONNECTED 14820 578/systemd-udevd unix 3 [ ] STREAM CONNECTED 22661 1489/master unix 2 [ ] DGRAM 18334 795/chronyd unix 3 [ ] STREAM CONNECTED 17615 754/auditd unix 3 [ ] DGRAM 14877 578/systemd-udevd unix 3 [ ] STREAM CONNECTED 22663 1489/master unix 3 [ ] DGRAM 14878 578/systemd-udevd unix 3 [ ] STREAM CONNECTED 18347 783/systemd-logind unix 2 [ ] DGRAM 63240 6492/sshd: kbrazil unix 3 [ ] STREAM CONNECTED 18416 787/dbus-daemon /run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 21589 1218/python2 unix 3 [ ] STREAM CONNECTED 18181 1/systemd /run/systemd/journal/stdout unix 2 [ ] DGRAM 14846 578/systemd-udevd unix 3 [ ] STREAM CONNECTED 22652 1489/master unix 2 [ ] DGRAM 19253 787/dbus-daemon unix 3 [ ] STREAM CONNECTED 22651 1489/master unix 2 [ ] DGRAM 64208 6591/sudo unix 3 [ ] STREAM CONNECTED 18180 783/systemd-logind unix 3 [ ] STREAM CONNECTED 18817 826/crond unix 3 [ ] STREAM CONNECTED 22654 1489/master unix 3 [ ] STREAM CONNECTED 22655 1489/master unix 3 [ ] STREAM CONNECTED 22645 1489/master unix 3 [ ] STREAM CONNECTED 21590 1/systemd /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 22646 1489/master unix 3 [ ] STREAM CONNECTED 22649 1489/master unix 3 [ ] STREAM CONNECTED 22648 1489/master unix 2 [ ] DGRAM 62939 6481/pickup unix 3 [ ] STREAM CONNECTED 18818 1/systemd /run/systemd/journal/stdout unix 2 [ ] DGRAM 62145 1/systemd unix 3 [ ] STREAM CONNECTED 63245 6496/sshd: kbrazil@ unix 3 [ ] STREAM CONNECTED 22637 1489/master unix 3 [ ] STREAM CONNECTED 63246 6492/sshd: kbrazil unix 3 [ ] STREAM CONNECTED 22636 1489/master unix 3 [ ] STREAM CONNECTED 14821 1/systemd /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 22639 1489/master unix 3 [ ] STREAM CONNECTED 19063 844/python2 unix 3 [ ] STREAM CONNECTED 19175 878/NetworkManager unix 3 [ ] STREAM CONNECTED 18390 777/polkitd unix 3 [ ] STREAM CONNECTED 22640 1489/master unix 3 [ ] STREAM CONNECTED 22643 1489/master unix 3 [ ] STREAM CONNECTED 22642 1489/master unix 2 [ ] DGRAM 20820 1029/dhclient unix 3 [ ] STREAM CONNECTED 22618 1489/master unix 2 [ ] DGRAM 21745 1219/rsyslogd unix 3 [ ] STREAM CONNECTED 22617 1489/master unix 3 [ ] STREAM CONNECTED 22464 1286/docker-contain /var/run/docker/libcontainerd/docker-containerd.sock unix 3 [ ] STREAM CONNECTED 20314 878/NetworkManager unix 3 [ ] STREAM CONNECTED 18299 787/dbus-daemon unix 3 [ ] STREAM CONNECTED 20315 787/dbus-daemon /run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 18300 1/systemd /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 22463 1220/dockerd-curren unix 3 [ ] STREAM CONNECTED 22633 1489/master unix 3 [ ] STREAM CONNECTED 22621 1489/master unix 3 [ ] STREAM CONNECTED 22631 1489/master unix 3 [ ] STREAM CONNECTED 21741 1/systemd /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 22620 1489/master unix 2 [ ] DGRAM 14010 545/systemd-journal unix 3 [ ] STREAM CONNECTED 14671 573/lvmetad unix 3 [ ] STREAM CONNECTED 21740 1220/dockerd-curren unix 3 [ ] STREAM CONNECTED 22681 1489/master unix 3 [ ] STREAM CONNECTED 18413 787/dbus-daemon unix 3 [ ] STREAM CONNECTED 22680 1489/master unix 3 [ ] STREAM CONNECTED 22609 1489/master unix 2 [ ] DGRAM 18867 826/crond unix 3 [ ] STREAM CONNECTED 22683 1489/master unix 3 [ ] STREAM CONNECTED 18414 787/dbus-daemon unix 3 [ ] STREAM CONNECTED 19127 1/systemd /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 22684 1489/master unix 3 [ ] STREAM CONNECTED 22614 1489/master unix 3 [ ] STREAM CONNECTED 14672 1/systemd /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 22687 1489/master unix 3 [ ] STREAM CONNECTED 22634 1489/master unix 3 [ ] STREAM CONNECTED 22613 1489/master unix 3 [ ] STREAM CONNECTED 22686 1489/master unix 3 [ ] STREAM CONNECTED 22608 1489/master unix 3 [ ] STREAM CONNECTED 19126 878/NetworkManager unix 3 [ ] STREAM CONNECTED 22628 1489/master unix 3 [ ] STREAM CONNECTED 22675 1489/master unix 3 [ ] STREAM CONNECTED 22674 1489/master unix 3 [ ] STREAM CONNECTED 22765 1220/dockerd-curren unix 3 [ ] STREAM CONNECTED 22677 1489/master unix 2 [ ] DGRAM 18896 777/polkitd unix 3 [ ] STREAM CONNECTED 22627 1489/master unix 3 [ ] STREAM CONNECTED 22766 787/dbus-daemon /run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 17614 754/auditd unix 3 [ ] STREAM CONNECTED 22678 1489/master unix 2 [ ] DGRAM 18318 783/systemd-logind unix 2 [ ] DGRAM 22793 844/python2 unix 3 [ ] STREAM CONNECTED 18415 787/dbus-daemon /run/dbus/system_bus_socket unix 2 [ ] DGRAM 22030 1220/dockerd-curren unix 3 [ ] STREAM CONNECTED 22664 1489/master unix 3 [ ] STREAM CONNECTED 18302 1/systemd unix 3 [ ] STREAM CONNECTED 22667 1489/master unix 3 [ ] STREAM CONNECTED 18417 787/dbus-daemon /run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 22666 1489/master unix 2 [ ] DGRAM 22581 1489/master unix 3 [ ] STREAM CONNECTED 23190 1218/python2 unix 3 [ ] STREAM CONNECTED 22669 1489/master unix 3 [ ] STREAM CONNECTED 22630 1489/master unix 2 [ ] DGRAM 22715 1498/qmgr unix 2 [ ] DGRAM 17605 754/auditd unix 3 [ ] STREAM CONNECTED 22670 1489/master unix 3 [ ] STREAM CONNECTED 23191 787/dbus-daemon /run/dbus/system_bus_socket jc-1.17.3/tests/fixtures/centos-7.7/netstat-sudo-lnp.json000066400000000000000000000210361415226333200231350ustar00rootroot00000000000000[{"proto": "tcp", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "0.0.0.0", "state": "LISTEN", "program_name": "master", "kind": "network", "pid": 1469, "local_port": "25", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 25}, {"proto": "tcp", "recv_q": 0, "send_q": 0, "local_address": "0.0.0.0", "foreign_address": "0.0.0.0", "state": "LISTEN", "program_name": "sshd", "kind": "network", "pid": 1206, "local_port": "22", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 22}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "::1", "foreign_address": "::", "state": "LISTEN", "program_name": "master", "kind": "network", "pid": 1469, "local_port": "25", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 25}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "::", "foreign_address": "::", "state": "LISTEN", "program_name": "sshd", "kind": "network", "pid": 1206, "local_port": "22", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 22}, {"proto": "udp", "recv_q": 0, "send_q": 0, "local_address": "0.0.0.0", "foreign_address": "0.0.0.0", "state": null, "program_name": "dhclient", "kind": "network", "pid": 1939, "local_port": "68", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 68}, {"proto": "udp", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "0.0.0.0", "state": null, "program_name": "chronyd", "kind": "network", "pid": 795, "local_port": "323", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 323}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "::1", "foreign_address": "::", "state": null, "program_name": "chronyd", "kind": "network", "pid": 795, "local_port": "323", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 323}, {"proto": "raw6", "recv_q": 0, "send_q": 0, "local_address": "::", "foreign_address": "::", "state": "7", "program_name": "NetworkManager", "kind": "network", "pid": 865, "local_port": "58", "foreign_port": "*", "transport_protocol": null, "network_protocol": "ipv6", "local_port_num": 58}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 13851, "program_name": "systemd", "path": "/run/lvm/lvmpolld.socket", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 8991, "program_name": "systemd", "path": "/run/systemd/journal/stdout", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22321, "program_name": "master", "path": "public/pickup", "kind": "socket", "pid": 1469}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22332, "program_name": "master", "path": "private/tlsmgr", "kind": "socket", "pid": 1469}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22839, "program_name": "dockerd-curren", "path": "/run/docker/libnetwork/fe53fe5029258e61eb7a9173ec80150ea3595abe7d69e47af064f451212110bf.sock", "kind": "socket", "pid": 1205}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 21822, "program_name": "dockerd-curren", "path": "/var/run/docker.sock", "kind": "socket", "pid": 1205}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 13918, "program_name": "systemd", "path": "/run/lvm/lvmetad.socket", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 21877, "program_name": "docker-contain", "path": "/var/run/docker/libcontainerd/docker-containerd.sock", "kind": "socket", "pid": 1256}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 20600, "program_name": "NetworkManager", "path": "/var/run/NetworkManager/private-dhcp", "kind": "socket", "pid": 865}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 17785, "program_name": "systemd", "path": "/run/dbus/system_bus_socket", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22325, "program_name": "master", "path": "public/cleanup", "kind": "socket", "pid": 1469}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "SEQPACKET", "state": "LISTENING", "inode": 13962, "program_name": "systemd", "path": "/run/udev/control", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22328, "program_name": "master", "path": "public/qmgr", "kind": "socket", "pid": 1469}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22350, "program_name": "master", "path": "public/flush", "kind": "socket", "pid": 1469}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22365, "program_name": "master", "path": "public/showq", "kind": "socket", "pid": 1469}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22335, "program_name": "master", "path": "private/rewrite", "kind": "socket", "pid": 1469}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 13771, "program_name": "systemd", "path": "/run/systemd/private", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22338, "program_name": "master", "path": "private/bounce", "kind": "socket", "pid": 1469}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22341, "program_name": "master", "path": "private/defer", "kind": "socket", "pid": 1469}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22344, "program_name": "master", "path": "private/trace", "kind": "socket", "pid": 1469}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22347, "program_name": "master", "path": "private/verify", "kind": "socket", "pid": 1469}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22353, "program_name": "master", "path": "private/proxymap", "kind": "socket", "pid": 1469}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22356, "program_name": "master", "path": "private/proxywrite", "kind": "socket", "pid": 1469}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22359, "program_name": "master", "path": "private/smtp", "kind": "socket", "pid": 1469}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22362, "program_name": "master", "path": "private/relay", "kind": "socket", "pid": 1469}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22368, "program_name": "master", "path": "private/error", "kind": "socket", "pid": 1469}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22371, "program_name": "master", "path": "private/retry", "kind": "socket", "pid": 1469}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22374, "program_name": "master", "path": "private/discard", "kind": "socket", "pid": 1469}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22377, "program_name": "master", "path": "private/local", "kind": "socket", "pid": 1469}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22380, "program_name": "master", "path": "private/virtual", "kind": "socket", "pid": 1469}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22383, "program_name": "master", "path": "private/lmtp", "kind": "socket", "pid": 1469}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22386, "program_name": "master", "path": "private/anvil", "kind": "socket", "pid": 1469}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 22389, "program_name": "master", "path": "private/scache", "kind": "socket", "pid": 1469}] jc-1.17.3/tests/fixtures/centos-7.7/netstat-sudo-lnp.out000066400000000000000000000104621415226333200227740ustar00rootroot00000000000000Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN 1469/master tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 1206/sshd tcp6 0 0 ::1:25 :::* LISTEN 1469/master tcp6 0 0 :::22 :::* LISTEN 1206/sshd udp 0 0 0.0.0.0:68 0.0.0.0:* 1939/dhclient udp 0 0 127.0.0.1:323 0.0.0.0:* 795/chronyd udp6 0 0 ::1:323 :::* 795/chronyd raw6 0 0 :::58 :::* 7 865/NetworkManager Active UNIX domain sockets (only servers) Proto RefCnt Flags Type State I-Node PID/Program name Path unix 2 [ ACC ] STREAM LISTENING 13851 1/systemd /run/lvm/lvmpolld.socket unix 2 [ ACC ] STREAM LISTENING 8991 1/systemd /run/systemd/journal/stdout unix 2 [ ACC ] STREAM LISTENING 22321 1469/master public/pickup unix 2 [ ACC ] STREAM LISTENING 22332 1469/master private/tlsmgr unix 2 [ ACC ] STREAM LISTENING 22839 1205/dockerd-curren /run/docker/libnetwork/fe53fe5029258e61eb7a9173ec80150ea3595abe7d69e47af064f451212110bf.sock unix 2 [ ACC ] STREAM LISTENING 21822 1205/dockerd-curren /var/run/docker.sock unix 2 [ ACC ] STREAM LISTENING 13918 1/systemd /run/lvm/lvmetad.socket unix 2 [ ACC ] STREAM LISTENING 21877 1256/docker-contain /var/run/docker/libcontainerd/docker-containerd.sock unix 2 [ ACC ] STREAM LISTENING 20600 865/NetworkManager /var/run/NetworkManager/private-dhcp unix 2 [ ACC ] STREAM LISTENING 17785 1/systemd /run/dbus/system_bus_socket unix 2 [ ACC ] STREAM LISTENING 22325 1469/master public/cleanup unix 2 [ ACC ] SEQPACKET LISTENING 13962 1/systemd /run/udev/control unix 2 [ ACC ] STREAM LISTENING 22328 1469/master public/qmgr unix 2 [ ACC ] STREAM LISTENING 22350 1469/master public/flush unix 2 [ ACC ] STREAM LISTENING 22365 1469/master public/showq unix 2 [ ACC ] STREAM LISTENING 22335 1469/master private/rewrite unix 2 [ ACC ] STREAM LISTENING 13771 1/systemd /run/systemd/private unix 2 [ ACC ] STREAM LISTENING 22338 1469/master private/bounce unix 2 [ ACC ] STREAM LISTENING 22341 1469/master private/defer unix 2 [ ACC ] STREAM LISTENING 22344 1469/master private/trace unix 2 [ ACC ] STREAM LISTENING 22347 1469/master private/verify unix 2 [ ACC ] STREAM LISTENING 22353 1469/master private/proxymap unix 2 [ ACC ] STREAM LISTENING 22356 1469/master private/proxywrite unix 2 [ ACC ] STREAM LISTENING 22359 1469/master private/smtp unix 2 [ ACC ] STREAM LISTENING 22362 1469/master private/relay unix 2 [ ACC ] STREAM LISTENING 22368 1469/master private/error unix 2 [ ACC ] STREAM LISTENING 22371 1469/master private/retry unix 2 [ ACC ] STREAM LISTENING 22374 1469/master private/discard unix 2 [ ACC ] STREAM LISTENING 22377 1469/master private/local unix 2 [ ACC ] STREAM LISTENING 22380 1469/master private/virtual unix 2 [ ACC ] STREAM LISTENING 22383 1469/master private/lmtp unix 2 [ ACC ] STREAM LISTENING 22386 1469/master private/anvil unix 2 [ ACC ] STREAM LISTENING 22389 1469/master private/scache jc-1.17.3/tests/fixtures/centos-7.7/netstat.json000066400000000000000000000364251415226333200214060ustar00rootroot00000000000000[{"proto": "tcp", "recv_q": 0, "send_q": 0, "local_address": "localhost.localdo", "foreign_address": "lb-192-30-255-112", "state": "ESTABLISHED", "kind": "network", "local_port": "35450", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 35450}, {"proto": "tcp", "recv_q": 0, "send_q": 0, "local_address": "localhost.localdoma", "foreign_address": "192.168.71.1", "state": "ESTABLISHED", "kind": "network", "local_port": "ssh", "foreign_port": "58727", "transport_protocol": "tcp", "network_protocol": "ipv4", "foreign_port_num": 58727}, {"proto": "tcp", "recv_q": 0, "send_q": 0, "local_address": "localhost.localdo", "foreign_address": "lb-192-30-255-113", "state": "ESTABLISHED", "kind": "network", "local_port": "47300", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 47300}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 8971, "path": "/run/systemd/notify", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 8973, "path": "/run/systemd/cgroups-agent", "kind": "socket"}, {"proto": "unix", "refcnt": 6, "flags": null, "type": "DGRAM", "state": null, "inode": 8994, "path": "/run/systemd/journal/socket", "kind": "socket"}, {"proto": "unix", "refcnt": 15, "flags": null, "type": "DGRAM", "state": null, "inode": 8996, "path": "/dev/log", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 13864, "path": "/run/systemd/shutdownd", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 18547, "path": "/var/run/chrony/chronyd.sock", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 44430, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22366, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22390, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 21429, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22387, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22388, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 19075, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22385, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 18892, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 17796, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 22409, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 18893, "path": "/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 18364, "path": "/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 44965, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22384, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 21430, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 14760, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 19005, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 17861, "path": "/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 19006, "path": "/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22330, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 17630, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 22509, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 20119, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 21563, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22391, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 18955, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22373, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22478, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 17844, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22372, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 17621, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 44962, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 14759, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22369, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22370, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 17845, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22367, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 21801, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 18363, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22479, "path": "/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 17631, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22381, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 20120, "path": "/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 17859, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22382, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22379, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22364, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 17860, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 44966, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22378, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22375, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 21373, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 18956, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22376, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 21448, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 14873, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 23047, "path": "/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22352, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22327, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22355, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22320, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 14872, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 14408, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22354, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 18498, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22349, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22322, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22326, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22348, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22351, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 18140, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 24201, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 18141, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 18549, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 14252, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22361, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 18610, "path": "/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22360, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22240, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 14029, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22363, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22357, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22329, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22241, "path": "/var/run/docker/libcontainerd/docker-containerd.sock", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 18418, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 21303, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 18419, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22358, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22337, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22336, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22323, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 18604, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22339, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 18730, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 18979, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22334, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22333, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 18269, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22345, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 22293, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 21302, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22346, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 23046, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 14838, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22340, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22343, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 14409, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22342, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 22319, "kind": "socket"}] jc-1.17.3/tests/fixtures/centos-7.7/netstat.out000066400000000000000000000176041415226333200212420ustar00rootroot00000000000000Active Internet connections (w/o servers) Proto Recv-Q Send-Q Local Address Foreign Address State tcp 0 0 localhost.localdo:35450 lb-192-30-255-112:https ESTABLISHED tcp 0 0 localhost.localdoma:ssh 192.168.71.1:58727 ESTABLISHED tcp 0 0 localhost.localdo:47300 lb-192-30-255-113:https ESTABLISHED Active UNIX domain sockets (w/o servers) Proto RefCnt Flags Type State I-Node Path unix 3 [ ] DGRAM 8971 /run/systemd/notify unix 2 [ ] DGRAM 8973 /run/systemd/cgroups-agent unix 6 [ ] DGRAM 8994 /run/systemd/journal/socket unix 15 [ ] DGRAM 8996 /dev/log unix 2 [ ] DGRAM 13864 /run/systemd/shutdownd unix 2 [ ] DGRAM 18547 /var/run/chrony/chronyd.sock unix 2 [ ] DGRAM 44430 unix 3 [ ] STREAM CONNECTED 22366 unix 3 [ ] STREAM CONNECTED 22390 unix 3 [ ] STREAM CONNECTED 21429 unix 3 [ ] STREAM CONNECTED 22387 unix 3 [ ] STREAM CONNECTED 22388 unix 2 [ ] DGRAM 19075 unix 3 [ ] STREAM CONNECTED 22385 unix 3 [ ] STREAM CONNECTED 18892 unix 3 [ ] STREAM CONNECTED 17796 unix 2 [ ] DGRAM 22409 unix 3 [ ] STREAM CONNECTED 18893 /run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 18364 /run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 44965 unix 3 [ ] STREAM CONNECTED 22384 unix 3 [ ] STREAM CONNECTED 21430 /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 14760 /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 19005 unix 3 [ ] STREAM CONNECTED 17861 /run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 19006 /run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 22330 unix 3 [ ] STREAM CONNECTED 17630 unix 2 [ ] DGRAM 22509 unix 3 [ ] STREAM CONNECTED 20119 unix 2 [ ] DGRAM 21563 unix 3 [ ] STREAM CONNECTED 22391 unix 3 [ ] STREAM CONNECTED 18955 unix 3 [ ] STREAM CONNECTED 22373 unix 3 [ ] STREAM CONNECTED 22478 unix 3 [ ] STREAM CONNECTED 17844 unix 3 [ ] STREAM CONNECTED 22372 unix 2 [ ] DGRAM 17621 unix 2 [ ] DGRAM 44962 unix 3 [ ] STREAM CONNECTED 14759 unix 3 [ ] STREAM CONNECTED 22369 unix 3 [ ] STREAM CONNECTED 22370 unix 3 [ ] STREAM CONNECTED 17845 /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 22367 unix 2 [ ] DGRAM 21801 unix 3 [ ] STREAM CONNECTED 18363 unix 3 [ ] STREAM CONNECTED 22479 /run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 17631 unix 3 [ ] STREAM CONNECTED 22381 unix 3 [ ] STREAM CONNECTED 20120 /run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 17859 unix 3 [ ] STREAM CONNECTED 22382 unix 3 [ ] STREAM CONNECTED 22379 unix 3 [ ] STREAM CONNECTED 22364 unix 3 [ ] STREAM CONNECTED 17860 unix 3 [ ] STREAM CONNECTED 44966 unix 3 [ ] STREAM CONNECTED 22378 unix 3 [ ] STREAM CONNECTED 22375 unix 3 [ ] STREAM CONNECTED 21373 unix 3 [ ] STREAM CONNECTED 18956 /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 22376 unix 3 [ ] STREAM CONNECTED 21448 /run/systemd/journal/stdout unix 3 [ ] DGRAM 14873 unix 3 [ ] STREAM CONNECTED 23047 /run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 22352 unix 3 [ ] STREAM CONNECTED 22327 unix 3 [ ] STREAM CONNECTED 22355 unix 3 [ ] STREAM CONNECTED 22320 unix 3 [ ] DGRAM 14872 unix 3 [ ] STREAM CONNECTED 14408 unix 3 [ ] STREAM CONNECTED 22354 unix 2 [ ] DGRAM 18498 unix 3 [ ] STREAM CONNECTED 22349 unix 3 [ ] STREAM CONNECTED 22322 unix 3 [ ] STREAM CONNECTED 22326 unix 3 [ ] STREAM CONNECTED 22348 unix 3 [ ] STREAM CONNECTED 22351 unix 3 [ ] STREAM CONNECTED 18140 unix 2 [ ] DGRAM 24201 unix 3 [ ] STREAM CONNECTED 18141 /run/systemd/journal/stdout unix 2 [ ] DGRAM 18549 unix 2 [ ] DGRAM 14252 unix 3 [ ] STREAM CONNECTED 22361 unix 3 [ ] STREAM CONNECTED 18610 /run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 22360 unix 3 [ ] STREAM CONNECTED 22240 unix 2 [ ] DGRAM 14029 unix 3 [ ] STREAM CONNECTED 22363 unix 3 [ ] STREAM CONNECTED 22357 unix 3 [ ] STREAM CONNECTED 22329 unix 3 [ ] STREAM CONNECTED 22241 /var/run/docker/libcontainerd/docker-containerd.sock unix 3 [ ] STREAM CONNECTED 18418 unix 3 [ ] STREAM CONNECTED 21303 /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 18419 /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 22358 unix 3 [ ] STREAM CONNECTED 22337 unix 3 [ ] STREAM CONNECTED 22336 unix 3 [ ] STREAM CONNECTED 22323 unix 3 [ ] STREAM CONNECTED 18604 unix 3 [ ] STREAM CONNECTED 22339 unix 2 [ ] DGRAM 18730 unix 2 [ ] DGRAM 18979 unix 3 [ ] STREAM CONNECTED 22334 unix 3 [ ] STREAM CONNECTED 22333 unix 2 [ ] DGRAM 18269 unix 3 [ ] STREAM CONNECTED 22345 unix 2 [ ] DGRAM 22293 unix 3 [ ] STREAM CONNECTED 21302 unix 3 [ ] STREAM CONNECTED 22346 unix 3 [ ] STREAM CONNECTED 23046 unix 2 [ ] DGRAM 14838 unix 3 [ ] STREAM CONNECTED 22340 unix 3 [ ] STREAM CONNECTED 22343 unix 3 [ ] STREAM CONNECTED 14409 /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 22342 unix 3 [ ] STREAM CONNECTED 22319 jc-1.17.3/tests/fixtures/centos-7.7/ntpq-p.json000066400000000000000000000013111415226333200211250ustar00rootroot00000000000000[{"state": null, "remote": "44.190.6.254", "refid": "127.67.113.92", "st": 2, "t": "u", "when": 1, "poll": 64, "reach": 1, "delay": 23.399, "offset": -2.805, "jitter": 2.131}, {"state": null, "remote": "ntp.wdc1.us.lea", "refid": "130.133.1.10", "st": 2, "t": "u", "when": null, "poll": 64, "reach": 1, "delay": 93.053, "offset": -0.807, "jitter": 2.839}, {"state": null, "remote": "clock.team-cymr", "refid": "204.9.54.119", "st": 2, "t": "u", "when": null, "poll": 64, "reach": 1, "delay": 70.337, "offset": -2.909, "jitter": 2.6}, {"state": null, "remote": "mirror1.sjc02.s", "refid": "216.218.254.202", "st": 2, "t": "u", "when": 2, "poll": 64, "reach": 1, "delay": 29.325, "offset": 1.044, "jitter": 4.069}] jc-1.17.3/tests/fixtures/centos-7.7/ntpq-p.out000066400000000000000000000007321415226333200207710ustar00rootroot00000000000000 remote refid st t when poll reach delay offset jitter ============================================================================== 44.190.6.254 127.67.113.92 2 u 1 64 1 23.399 -2.805 2.131 ntp.wdc1.us.lea 130.133.1.10 2 u - 64 1 93.053 -0.807 2.839 clock.team-cymr 204.9.54.119 2 u - 64 1 70.337 -2.909 2.600 mirror1.sjc02.s 216.218.254.202 2 u 2 64 1 29.325 1.044 4.069 jc-1.17.3/tests/fixtures/centos-7.7/ntpq-pn.json000066400000000000000000000012741415226333200213130ustar00rootroot00000000000000[{"state": "+", "remote": "44.190.6.254", "refid": "127.67.113.92", "st": 2, "t": "u", "when": 66, "poll": 64, "reach": 377, "delay": 22.69, "offset": -0.392, "jitter": 2.085}, {"state": "-", "remote": "108.59.2.24", "refid": "130.133.1.10", "st": 2, "t": "u", "when": 63, "poll": 64, "reach": 377, "delay": 90.805, "offset": 2.84, "jitter": 1.908}, {"state": "+", "remote": "38.229.71.1", "refid": "204.9.54.119", "st": 2, "t": "u", "when": 64, "poll": 64, "reach": 377, "delay": 68.699, "offset": -0.61, "jitter": 2.576}, {"state": "*", "remote": "72.5.72.15", "refid": "216.218.254.202", "st": 2, "t": "u", "when": 63, "poll": 64, "reach": 377, "delay": 22.654, "offset": 0.231, "jitter": 1.964}] jc-1.17.3/tests/fixtures/centos-7.7/ntpq-pn.out000066400000000000000000000007321415226333200211470ustar00rootroot00000000000000 remote refid st t when poll reach delay offset jitter ============================================================================== +44.190.6.254 127.67.113.92 2 u 66 64 377 22.690 -0.392 2.085 -108.59.2.24 130.133.1.10 2 u 63 64 377 90.805 2.840 1.908 +38.229.71.1 204.9.54.119 2 u 64 64 377 68.699 -0.610 2.576 *72.5.72.15 216.218.254.202 2 u 63 64 377 22.654 0.231 1.964 jc-1.17.3/tests/fixtures/centos-7.7/passwd.json000066400000000000000000000052731415226333200212220ustar00rootroot00000000000000[{"username": "root", "password": "x", "uid": 0, "gid": 0, "comment": "root", "home": "/root", "shell": "/bin/bash"}, {"username": "bin", "password": "x", "uid": 1, "gid": 1, "comment": "bin", "home": "/bin", "shell": "/sbin/nologin"}, {"username": "daemon", "password": "x", "uid": 2, "gid": 2, "comment": "daemon", "home": "/sbin", "shell": "/sbin/nologin"}, {"username": "adm", "password": "x", "uid": 3, "gid": 4, "comment": "adm", "home": "/var/adm", "shell": "/sbin/nologin"}, {"username": "lp", "password": "x", "uid": 4, "gid": 7, "comment": "lp", "home": "/var/spool/lpd", "shell": "/sbin/nologin"}, {"username": "sync", "password": "x", "uid": 5, "gid": 0, "comment": "sync", "home": "/sbin", "shell": "/bin/sync"}, {"username": "shutdown", "password": "x", "uid": 6, "gid": 0, "comment": "shutdown", "home": "/sbin", "shell": "/sbin/shutdown"}, {"username": "halt", "password": "x", "uid": 7, "gid": 0, "comment": "halt", "home": "/sbin", "shell": "/sbin/halt"}, {"username": "mail", "password": "x", "uid": 8, "gid": 12, "comment": "mail", "home": "/var/spool/mail", "shell": "/sbin/nologin"}, {"username": "operator", "password": "x", "uid": 11, "gid": 0, "comment": "operator", "home": "/root", "shell": "/sbin/nologin"}, {"username": "games", "password": "x", "uid": 12, "gid": 100, "comment": "games", "home": "/usr/games", "shell": "/sbin/nologin"}, {"username": "ftp", "password": "x", "uid": 14, "gid": 50, "comment": "FTP User", "home": "/var/ftp", "shell": "/sbin/nologin"}, {"username": "nobody", "password": "x", "uid": 99, "gid": 99, "comment": "Nobody", "home": "/", "shell": "/sbin/nologin"}, {"username": "systemd-network", "password": "x", "uid": 192, "gid": 192, "comment": "systemd Network Management", "home": "/", "shell": "/sbin/nologin"}, {"username": "dbus", "password": "x", "uid": 81, "gid": 81, "comment": "System message bus", "home": "/", "shell": "/sbin/nologin"}, {"username": "polkitd", "password": "x", "uid": 999, "gid": 998, "comment": "User for polkitd", "home": "/", "shell": "/sbin/nologin"}, {"username": "sshd", "password": "x", "uid": 74, "gid": 74, "comment": "Privilege-separated SSH", "home": "/var/empty/sshd", "shell": "/sbin/nologin"}, {"username": "postfix", "password": "x", "uid": 89, "gid": 89, "comment": "", "home": "/var/spool/postfix", "shell": "/sbin/nologin"}, {"username": "chrony", "password": "x", "uid": 998, "gid": 996, "comment": "", "home": "/var/lib/chrony", "shell": "/sbin/nologin"}, {"username": "joeuser", "password": "x", "uid": 1000, "gid": 1000, "comment": "joeuser", "home": "/home/joeuser", "shell": "/bin/bash"}, {"username": "dockerroot", "password": "x", "uid": 997, "gid": 994, "comment": "Docker User", "home": "/var/lib/docker", "shell": "/sbin/nologin"}] jc-1.17.3/tests/fixtures/centos-7.7/passwd.out000066400000000000000000000017011415226333200210500ustar00rootroot00000000000000root:x:0:0:root:/root:/bin/bash bin:x:1:1:bin:/bin:/sbin/nologin daemon:x:2:2:daemon:/sbin:/sbin/nologin adm:x:3:4:adm:/var/adm:/sbin/nologin lp:x:4:7:lp:/var/spool/lpd:/sbin/nologin sync:x:5:0:sync:/sbin:/bin/sync shutdown:x:6:0:shutdown:/sbin:/sbin/shutdown halt:x:7:0:halt:/sbin:/sbin/halt mail:x:8:12:mail:/var/spool/mail:/sbin/nologin operator:x:11:0:operator:/root:/sbin/nologin games:x:12:100:games:/usr/games:/sbin/nologin ftp:x:14:50:FTP User:/var/ftp:/sbin/nologin nobody:x:99:99:Nobody:/:/sbin/nologin systemd-network:x:192:192:systemd Network Management:/:/sbin/nologin dbus:x:81:81:System message bus:/:/sbin/nologin polkitd:x:999:998:User for polkitd:/:/sbin/nologin sshd:x:74:74:Privilege-separated SSH:/var/empty/sshd:/sbin/nologin postfix:x:89:89::/var/spool/postfix:/sbin/nologin chrony:x:998:996::/var/lib/chrony:/sbin/nologin joeuser:x:1000:1000:joeuser:/home/joeuser:/bin/bash dockerroot:x:997:994:Docker User:/var/lib/docker:/sbin/nologin jc-1.17.3/tests/fixtures/centos-7.7/ping-hostname-O-D-p-s-streaming.json000066400000000000000000000113451415226333200255300ustar00rootroot00000000000000[{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1594978465.914536,"response_bytes":1408,"response_ip":"151.101.189.67","icmp_seq":1,"ttl":59,"time_ms":31.4,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1594978465.993009,"response_bytes":1408,"response_ip":"151.101.189.67","icmp_seq":2,"ttl":59,"time_ms":30.3,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1594978467.010196,"response_bytes":1408,"response_ip":"151.101.189.67","icmp_seq":3,"ttl":59,"time_ms":32.0,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1594978468.033743,"response_bytes":1408,"response_ip":"151.101.189.67","icmp_seq":4,"ttl":59,"time_ms":38.8,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1594978469.051227,"response_bytes":1408,"response_ip":"151.101.189.67","icmp_seq":5,"ttl":59,"time_ms":38.0,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1594978470.048764,"response_bytes":1408,"response_ip":"151.101.189.67","icmp_seq":6,"ttl":59,"time_ms":29.9,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1594978471.051945,"response_bytes":1408,"response_ip":"151.101.189.67","icmp_seq":7,"ttl":59,"time_ms":28.9,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1594978472.064206,"response_bytes":1408,"response_ip":"151.101.189.67","icmp_seq":8,"ttl":59,"time_ms":37.4,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1594978473.062587,"response_bytes":1408,"response_ip":"151.101.189.67","icmp_seq":9,"ttl":59,"time_ms":31.5,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1594978474.074343,"response_bytes":1408,"response_ip":"151.101.189.67","icmp_seq":10,"ttl":59,"time_ms":38.3,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1594978475.079703,"response_bytes":1408,"response_ip":"151.101.189.67","icmp_seq":11,"ttl":59,"time_ms":38.8,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1594978476.076383,"response_bytes":1408,"response_ip":"151.101.189.67","icmp_seq":12,"ttl":59,"time_ms":30.7,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1594978477.084119,"response_bytes":1408,"response_ip":"151.101.189.67","icmp_seq":13,"ttl":59,"time_ms":30.7,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1594978478.092207,"response_bytes":1408,"response_ip":"151.101.189.67","icmp_seq":14,"ttl":59,"time_ms":31.6,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1594978479.104358,"response_bytes":1408,"response_ip":"151.101.189.67","icmp_seq":15,"ttl":59,"time_ms":37.7,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1594978480.106907,"response_bytes":1408,"response_ip":"151.101.189.67","icmp_seq":16,"ttl":59,"time_ms":37.5,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1594978481.11558,"response_bytes":1408,"response_ip":"151.101.189.67","icmp_seq":17,"ttl":59,"time_ms":37.3,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1594978482.119872,"response_bytes":1408,"response_ip":"151.101.189.67","icmp_seq":18,"ttl":59,"time_ms":33.8,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1594978483.131901,"response_bytes":1408,"response_ip":"151.101.189.67","icmp_seq":19,"ttl":59,"time_ms":37.0,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1594978484.141117,"response_bytes":1408,"response_ip":"151.101.189.67","icmp_seq":20,"ttl":59,"time_ms":36.9,"duplicate":false},{"type":"summary","destination_ip":"151.101.189.67","sent_bytes":1400,"pattern":"0xabcd","packets_transmitted":20,"packets_received":20,"packet_loss_percent":0.0,"duplicates":0,"time_ms":19146.0,"round_trip_ms_min":28.96,"round_trip_ms_avg":34.468,"round_trip_ms_max":38.892,"round_trip_ms_stddev":3.497}] jc-1.17.3/tests/fixtures/centos-7.7/ping-hostname-O-D-p-s.json000066400000000000000000000070441415226333200235420ustar00rootroot00000000000000{"destination_ip": "151.101.189.67", "data_bytes": 1400, "pattern": "0xabcd", "destination": "turner-tls.map.fastly.net", "packets_transmitted": 20, "packets_received": 20, "packet_loss_percent": 0.0, "duplicates": 0, "time_ms": 19146.0, "round_trip_ms_min": 28.96, "round_trip_ms_avg": 34.468, "round_trip_ms_max": 38.892, "round_trip_ms_stddev": 3.497, "responses": [{"type": "reply", "timestamp": 1594978465.914536, "bytes": 1408, "response_ip": "151.101.189.67", "icmp_seq": 1, "ttl": 59, "time_ms": 31.4, "duplicate": false}, {"type": "reply", "timestamp": 1594978465.993009, "bytes": 1408, "response_ip": "151.101.189.67", "icmp_seq": 2, "ttl": 59, "time_ms": 30.3, "duplicate": false}, {"type": "reply", "timestamp": 1594978467.010196, "bytes": 1408, "response_ip": "151.101.189.67", "icmp_seq": 3, "ttl": 59, "time_ms": 32.0, "duplicate": false}, {"type": "reply", "timestamp": 1594978468.033743, "bytes": 1408, "response_ip": "151.101.189.67", "icmp_seq": 4, "ttl": 59, "time_ms": 38.8, "duplicate": false}, {"type": "reply", "timestamp": 1594978469.051227, "bytes": 1408, "response_ip": "151.101.189.67", "icmp_seq": 5, "ttl": 59, "time_ms": 38.0, "duplicate": false}, {"type": "reply", "timestamp": 1594978470.048764, "bytes": 1408, "response_ip": "151.101.189.67", "icmp_seq": 6, "ttl": 59, "time_ms": 29.9, "duplicate": false}, {"type": "reply", "timestamp": 1594978471.051945, "bytes": 1408, "response_ip": "151.101.189.67", "icmp_seq": 7, "ttl": 59, "time_ms": 28.9, "duplicate": false}, {"type": "reply", "timestamp": 1594978472.064206, "bytes": 1408, "response_ip": "151.101.189.67", "icmp_seq": 8, "ttl": 59, "time_ms": 37.4, "duplicate": false}, {"type": "reply", "timestamp": 1594978473.062587, "bytes": 1408, "response_ip": "151.101.189.67", "icmp_seq": 9, "ttl": 59, "time_ms": 31.5, "duplicate": false}, {"type": "reply", "timestamp": 1594978474.074343, "bytes": 1408, "response_ip": "151.101.189.67", "icmp_seq": 10, "ttl": 59, "time_ms": 38.3, "duplicate": false}, {"type": "reply", "timestamp": 1594978475.079703, "bytes": 1408, "response_ip": "151.101.189.67", "icmp_seq": 11, "ttl": 59, "time_ms": 38.8, "duplicate": false}, {"type": "reply", "timestamp": 1594978476.076383, "bytes": 1408, "response_ip": "151.101.189.67", "icmp_seq": 12, "ttl": 59, "time_ms": 30.7, "duplicate": false}, {"type": "reply", "timestamp": 1594978477.084119, "bytes": 1408, "response_ip": "151.101.189.67", "icmp_seq": 13, "ttl": 59, "time_ms": 30.7, "duplicate": false}, {"type": "reply", "timestamp": 1594978478.092207, "bytes": 1408, "response_ip": "151.101.189.67", "icmp_seq": 14, "ttl": 59, "time_ms": 31.6, "duplicate": false}, {"type": "reply", "timestamp": 1594978479.104358, "bytes": 1408, "response_ip": "151.101.189.67", "icmp_seq": 15, "ttl": 59, "time_ms": 37.7, "duplicate": false}, {"type": "reply", "timestamp": 1594978480.106907, "bytes": 1408, "response_ip": "151.101.189.67", "icmp_seq": 16, "ttl": 59, "time_ms": 37.5, "duplicate": false}, {"type": "reply", "timestamp": 1594978481.11558, "bytes": 1408, "response_ip": "151.101.189.67", "icmp_seq": 17, "ttl": 59, "time_ms": 37.3, "duplicate": false}, {"type": "reply", "timestamp": 1594978482.119872, "bytes": 1408, "response_ip": "151.101.189.67", "icmp_seq": 18, "ttl": 59, "time_ms": 33.8, "duplicate": false}, {"type": "reply", "timestamp": 1594978483.131901, "bytes": 1408, "response_ip": "151.101.189.67", "icmp_seq": 19, "ttl": 59, "time_ms": 37.0, "duplicate": false}, {"type": "reply", "timestamp": 1594978484.141117, "bytes": 1408, "response_ip": "151.101.189.67", "icmp_seq": 20, "ttl": 59, "time_ms": 36.9, "duplicate": false}]} jc-1.17.3/tests/fixtures/centos-7.7/ping-hostname-O-D-p-s.out000066400000000000000000000043371415226333200234020ustar00rootroot00000000000000PATTERN: 0xabcd PING turner-tls.map.fastly.net (151.101.189.67) 1400(1428) bytes of data. [1594978465.914536] 1408 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=1 ttl=59 time=31.4 ms [1594978465.993009] 1408 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=2 ttl=59 time=30.3 ms [1594978467.010196] 1408 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=3 ttl=59 time=32.0 ms [1594978468.033743] 1408 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=4 ttl=59 time=38.8 ms [1594978469.051227] 1408 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=5 ttl=59 time=38.0 ms [1594978470.048764] 1408 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=6 ttl=59 time=29.9 ms [1594978471.051945] 1408 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=7 ttl=59 time=28.9 ms [1594978472.064206] 1408 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=8 ttl=59 time=37.4 ms [1594978473.062587] 1408 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=9 ttl=59 time=31.5 ms [1594978474.074343] 1408 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=10 ttl=59 time=38.3 ms [1594978475.079703] 1408 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=11 ttl=59 time=38.8 ms [1594978476.076383] 1408 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=12 ttl=59 time=30.7 ms [1594978477.084119] 1408 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=13 ttl=59 time=30.7 ms [1594978478.092207] 1408 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=14 ttl=59 time=31.6 ms [1594978479.104358] 1408 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=15 ttl=59 time=37.7 ms [1594978480.106907] 1408 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=16 ttl=59 time=37.5 ms [1594978481.115580] 1408 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=17 ttl=59 time=37.3 ms [1594978482.119872] 1408 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=18 ttl=59 time=33.8 ms [1594978483.131901] 1408 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=19 ttl=59 time=37.0 ms [1594978484.141117] 1408 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=20 ttl=59 time=36.9 ms --- turner-tls.map.fastly.net ping statistics --- 20 packets transmitted, 20 received, 0% packet loss, time 19146ms rtt min/avg/max/mdev = 28.960/34.468/38.892/3.497 ms jc-1.17.3/tests/fixtures/centos-7.7/ping-hostname-O-p-streaming.json000066400000000000000000000106211415226333200251030ustar00rootroot00000000000000[{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.129.67","icmp_seq":1,"ttl":59,"time_ms":24.4,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.129.67","icmp_seq":2,"ttl":59,"time_ms":23.3,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.129.67","icmp_seq":3,"ttl":59,"time_ms":32.6,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.129.67","icmp_seq":4,"ttl":59,"time_ms":32.6,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.129.67","icmp_seq":5,"ttl":59,"time_ms":26.9,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.129.67","icmp_seq":6,"ttl":59,"time_ms":24.1,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.129.67","icmp_seq":7,"ttl":59,"time_ms":24.6,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.129.67","icmp_seq":8,"ttl":59,"time_ms":33.9,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.129.67","icmp_seq":9,"ttl":59,"time_ms":32.7,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.129.67","icmp_seq":10,"ttl":59,"time_ms":31.2,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.129.67","icmp_seq":11,"ttl":59,"time_ms":25.7,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.129.67","icmp_seq":12,"ttl":59,"time_ms":33.8,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.129.67","icmp_seq":13,"ttl":59,"time_ms":23.7,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.129.67","icmp_seq":14,"ttl":59,"time_ms":23.9,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.129.67","icmp_seq":15,"ttl":59,"time_ms":33.6,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.129.67","icmp_seq":16,"ttl":59,"time_ms":24.5,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.129.67","icmp_seq":17,"ttl":59,"time_ms":30.1,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.129.67","icmp_seq":18,"ttl":59,"time_ms":24.1,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.129.67","icmp_seq":19,"ttl":59,"time_ms":32.2,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.129.67","icmp_seq":20,"ttl":59,"time_ms":31.0,"duplicate":false},{"type":"summary","destination_ip":"151.101.129.67","sent_bytes":56,"pattern":"0xabcd","packets_transmitted":20,"packets_received":20,"packet_loss_percent":0.0,"duplicates":0,"time_ms":19233.0,"round_trip_ms_min":23.359,"round_trip_ms_avg":28.495,"round_trip_ms_max":33.979,"round_trip_ms_stddev":4.081}] jc-1.17.3/tests/fixtures/centos-7.7/ping-hostname-O-p.json000066400000000000000000000063701415226333200231220ustar00rootroot00000000000000{"destination_ip": "151.101.129.67", "data_bytes": 56, "pattern": "0xabcd", "destination": "turner-tls.map.fastly.net", "packets_transmitted": 20, "packets_received": 20, "packet_loss_percent": 0.0, "duplicates": 0, "time_ms": 19233.0, "round_trip_ms_min": 23.359, "round_trip_ms_avg": 28.495, "round_trip_ms_max": 33.979, "round_trip_ms_stddev": 4.081, "responses": [{"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.129.67", "icmp_seq": 1, "ttl": 59, "time_ms": 24.4, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.129.67", "icmp_seq": 2, "ttl": 59, "time_ms": 23.3, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.129.67", "icmp_seq": 3, "ttl": 59, "time_ms": 32.6, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.129.67", "icmp_seq": 4, "ttl": 59, "time_ms": 32.6, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.129.67", "icmp_seq": 5, "ttl": 59, "time_ms": 26.9, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.129.67", "icmp_seq": 6, "ttl": 59, "time_ms": 24.1, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.129.67", "icmp_seq": 7, "ttl": 59, "time_ms": 24.6, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.129.67", "icmp_seq": 8, "ttl": 59, "time_ms": 33.9, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.129.67", "icmp_seq": 9, "ttl": 59, "time_ms": 32.7, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.129.67", "icmp_seq": 10, "ttl": 59, "time_ms": 31.2, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.129.67", "icmp_seq": 11, "ttl": 59, "time_ms": 25.7, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.129.67", "icmp_seq": 12, "ttl": 59, "time_ms": 33.8, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.129.67", "icmp_seq": 13, "ttl": 59, "time_ms": 23.7, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.129.67", "icmp_seq": 14, "ttl": 59, "time_ms": 23.9, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.129.67", "icmp_seq": 15, "ttl": 59, "time_ms": 33.6, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.129.67", "icmp_seq": 16, "ttl": 59, "time_ms": 24.5, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.129.67", "icmp_seq": 17, "ttl": 59, "time_ms": 30.1, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.129.67", "icmp_seq": 18, "ttl": 59, "time_ms": 24.1, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.129.67", "icmp_seq": 19, "ttl": 59, "time_ms": 32.2, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.129.67", "icmp_seq": 20, "ttl": 59, "time_ms": 31.0, "duplicate": false}]} jc-1.17.3/tests/fixtures/centos-7.7/ping-hostname-O-p.out000066400000000000000000000034431415226333200227560ustar00rootroot00000000000000PATTERN: 0xabcd PING turner-tls.map.fastly.net (151.101.129.67) 56(84) bytes of data. 64 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=1 ttl=59 time=24.4 ms 64 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=2 ttl=59 time=23.3 ms 64 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=3 ttl=59 time=32.6 ms 64 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=4 ttl=59 time=32.6 ms 64 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=5 ttl=59 time=26.9 ms 64 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=6 ttl=59 time=24.1 ms 64 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=7 ttl=59 time=24.6 ms 64 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=8 ttl=59 time=33.9 ms 64 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=9 ttl=59 time=32.7 ms 64 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=10 ttl=59 time=31.2 ms 64 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=11 ttl=59 time=25.7 ms 64 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=12 ttl=59 time=33.8 ms 64 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=13 ttl=59 time=23.7 ms 64 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=14 ttl=59 time=23.9 ms 64 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=15 ttl=59 time=33.6 ms 64 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=16 ttl=59 time=24.5 ms 64 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=17 ttl=59 time=30.1 ms 64 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=18 ttl=59 time=24.1 ms 64 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=19 ttl=59 time=32.2 ms 64 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=20 ttl=59 time=31.0 ms --- turner-tls.map.fastly.net ping statistics --- 20 packets transmitted, 20 received, 0% packet loss, time 19233ms rtt min/avg/max/mdev = 23.359/28.495/33.979/4.081 ms jc-1.17.3/tests/fixtures/centos-7.7/ping-hostname-O-streaming.json000066400000000000000000000103421415226333200246460ustar00rootroot00000000000000[{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":1,"ttl":59,"time_ms":29.6,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":2,"ttl":59,"time_ms":30.1,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":3,"ttl":59,"time_ms":35.5,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":4,"ttl":59,"time_ms":35.5,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":5,"ttl":59,"time_ms":34.9,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":6,"ttl":59,"time_ms":29.9,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":7,"ttl":59,"time_ms":27.6,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":8,"ttl":59,"time_ms":28.6,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":9,"ttl":59,"time_ms":35.2,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":10,"ttl":59,"time_ms":34.4,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":11,"ttl":59,"time_ms":35.9,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":12,"ttl":59,"time_ms":35.8,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":13,"ttl":59,"time_ms":34.4,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":14,"ttl":59,"time_ms":35.5,"duplicate":false},{"type":"timeout","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":null,"timestamp":null,"icmp_seq":15},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":16,"ttl":59,"time_ms":36.6,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":17,"ttl":59,"time_ms":34.6,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":18,"ttl":59,"time_ms":34.6,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":19,"ttl":59,"time_ms":36.7,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":20,"ttl":59,"time_ms":34.3,"duplicate":false},{"type":"summary","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":null,"packets_transmitted":20,"packets_received":19,"packet_loss_percent":5.0,"duplicates":0,"time_ms":19125.0,"round_trip_ms_min":27.656,"round_trip_ms_avg":33.717,"round_trip_ms_max":36.758,"round_trip_ms_stddev":2.814}] jc-1.17.3/tests/fixtures/centos-7.7/ping-hostname-O.json000066400000000000000000000062301415226333200226600ustar00rootroot00000000000000{"destination_ip": "151.101.189.67", "data_bytes": 56, "pattern": null, "destination": "turner-tls.map.fastly.net", "packets_transmitted": 20, "packets_received": 19, "packet_loss_percent": 5.0, "duplicates": 0, "time_ms": 19125.0, "round_trip_ms_min": 27.656, "round_trip_ms_avg": 33.717, "round_trip_ms_max": 36.758, "round_trip_ms_stddev": 2.814, "responses": [{"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 1, "ttl": 59, "time_ms": 29.6, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 2, "ttl": 59, "time_ms": 30.1, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 3, "ttl": 59, "time_ms": 35.5, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 4, "ttl": 59, "time_ms": 35.5, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 5, "ttl": 59, "time_ms": 34.9, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 6, "ttl": 59, "time_ms": 29.9, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 7, "ttl": 59, "time_ms": 27.6, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 8, "ttl": 59, "time_ms": 28.6, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 9, "ttl": 59, "time_ms": 35.2, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 10, "ttl": 59, "time_ms": 34.4, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 11, "ttl": 59, "time_ms": 35.9, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 12, "ttl": 59, "time_ms": 35.8, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 13, "ttl": 59, "time_ms": 34.4, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 14, "ttl": 59, "time_ms": 35.5, "duplicate": false}, {"type": "timeout", "timestamp": null, "icmp_seq": 15}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 16, "ttl": 59, "time_ms": 36.6, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 17, "ttl": 59, "time_ms": 34.6, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 18, "ttl": 59, "time_ms": 34.6, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 19, "ttl": 59, "time_ms": 36.7, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 20, "ttl": 59, "time_ms": 34.3, "duplicate": false}]} jc-1.17.3/tests/fixtures/centos-7.7/ping-hostname-O.out000066400000000000000000000033421415226333200225170ustar00rootroot00000000000000PING turner-tls.map.fastly.net (151.101.189.67) 56(84) bytes of data. 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=1 ttl=59 time=29.6 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=2 ttl=59 time=30.1 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=3 ttl=59 time=35.5 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=4 ttl=59 time=35.5 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=5 ttl=59 time=34.9 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=6 ttl=59 time=29.9 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=7 ttl=59 time=27.6 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=8 ttl=59 time=28.6 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=9 ttl=59 time=35.2 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=10 ttl=59 time=34.4 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=11 ttl=59 time=35.9 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=12 ttl=59 time=35.8 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=13 ttl=59 time=34.4 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=14 ttl=59 time=35.5 ms no answer yet for icmp_seq=15 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=16 ttl=59 time=36.6 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=17 ttl=59 time=34.6 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=18 ttl=59 time=34.6 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=19 ttl=59 time=36.7 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=20 ttl=59 time=34.3 ms --- turner-tls.map.fastly.net ping statistics --- 20 packets transmitted, 19 received, 5% packet loss, time 19125ms rtt min/avg/max/mdev = 27.656/33.717/36.758/2.814 ms jc-1.17.3/tests/fixtures/centos-7.7/ping-ip-O-D-streaming.json000066400000000000000000000106041415226333200236220ustar00rootroot00000000000000[{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595037214.261953,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":1,"ttl":64,"time_ms":0.041,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595037215.264798,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":2,"ttl":64,"time_ms":0.048,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595037216.272296,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":3,"ttl":64,"time_ms":0.047,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595037217.275851,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":4,"ttl":64,"time_ms":0.062,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595037218.284242,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":5,"ttl":64,"time_ms":0.045,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595037219.283712,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":6,"ttl":64,"time_ms":0.043,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595037220.290949,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":7,"ttl":64,"time_ms":0.046,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595037221.295962,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":8,"ttl":64,"time_ms":0.044,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595037222.30702,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":9,"ttl":64,"time_ms":0.048,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595037223.313919,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":10,"ttl":64,"time_ms":0.081,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595037224.313679,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":11,"ttl":64,"time_ms":0.043,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595037225.320748,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":12,"ttl":64,"time_ms":0.044,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595037226.324322,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":13,"ttl":64,"time_ms":0.045,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595037227.325835,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":14,"ttl":64,"time_ms":0.046,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595037228.327028,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":15,"ttl":64,"time_ms":0.046,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595037229.329891,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":16,"ttl":64,"time_ms":0.052,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595037230.333891,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":17,"ttl":64,"time_ms":0.044,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595037231.338137,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":18,"ttl":64,"time_ms":0.046,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595037232.340475,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":19,"ttl":64,"time_ms":0.048,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595037233.343058,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":20,"ttl":64,"time_ms":0.045,"duplicate":false},{"type":"summary","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"packets_transmitted":20,"packets_received":20,"packet_loss_percent":0.0,"duplicates":0,"time_ms":19081.0,"round_trip_ms_min":0.041,"round_trip_ms_avg":0.048,"round_trip_ms_max":0.081,"round_trip_ms_stddev":0.009}] jc-1.17.3/tests/fixtures/centos-7.7/ping-ip-O-D.json000066400000000000000000000066171415226333200216440ustar00rootroot00000000000000{"destination_ip": "127.0.0.1", "data_bytes": 56, "pattern": null, "destination": "127.0.0.1", "packets_transmitted": 20, "packets_received": 20, "packet_loss_percent": 0.0, "duplicates": 0, "time_ms": 19081.0, "round_trip_ms_min": 0.041, "round_trip_ms_avg": 0.048, "round_trip_ms_max": 0.081, "round_trip_ms_stddev": 0.009, "responses": [{"type": "reply", "timestamp": 1595037214.261953, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 1, "ttl": 64, "time_ms": 0.041, "duplicate": false}, {"type": "reply", "timestamp": 1595037215.264798, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 2, "ttl": 64, "time_ms": 0.048, "duplicate": false}, {"type": "reply", "timestamp": 1595037216.272296, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 3, "ttl": 64, "time_ms": 0.047, "duplicate": false}, {"type": "reply", "timestamp": 1595037217.275851, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 4, "ttl": 64, "time_ms": 0.062, "duplicate": false}, {"type": "reply", "timestamp": 1595037218.284242, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 5, "ttl": 64, "time_ms": 0.045, "duplicate": false}, {"type": "reply", "timestamp": 1595037219.283712, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 6, "ttl": 64, "time_ms": 0.043, "duplicate": false}, {"type": "reply", "timestamp": 1595037220.290949, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 7, "ttl": 64, "time_ms": 0.046, "duplicate": false}, {"type": "reply", "timestamp": 1595037221.295962, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 8, "ttl": 64, "time_ms": 0.044, "duplicate": false}, {"type": "reply", "timestamp": 1595037222.30702, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 9, "ttl": 64, "time_ms": 0.048, "duplicate": false}, {"type": "reply", "timestamp": 1595037223.313919, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 10, "ttl": 64, "time_ms": 0.081, "duplicate": false}, {"type": "reply", "timestamp": 1595037224.313679, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 11, "ttl": 64, "time_ms": 0.043, "duplicate": false}, {"type": "reply", "timestamp": 1595037225.320748, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 12, "ttl": 64, "time_ms": 0.044, "duplicate": false}, {"type": "reply", "timestamp": 1595037226.324322, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 13, "ttl": 64, "time_ms": 0.045, "duplicate": false}, {"type": "reply", "timestamp": 1595037227.325835, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 14, "ttl": 64, "time_ms": 0.046, "duplicate": false}, {"type": "reply", "timestamp": 1595037228.327028, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 15, "ttl": 64, "time_ms": 0.046, "duplicate": false}, {"type": "reply", "timestamp": 1595037229.329891, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 16, "ttl": 64, "time_ms": 0.052, "duplicate": false}, {"type": "reply", "timestamp": 1595037230.333891, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 17, "ttl": 64, "time_ms": 0.044, "duplicate": false}, {"type": "reply", "timestamp": 1595037231.338137, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 18, "ttl": 64, "time_ms": 0.046, "duplicate": false}, {"type": "reply", "timestamp": 1595037232.340475, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 19, "ttl": 64, "time_ms": 0.048, "duplicate": false}, {"type": "reply", "timestamp": 1595037233.343058, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 20, "ttl": 64, "time_ms": 0.045, "duplicate": false}]} jc-1.17.3/tests/fixtures/centos-7.7/ping-ip-O-D.out000066400000000000000000000033271415226333200214750ustar00rootroot00000000000000PING 127.0.0.1 (127.0.0.1) 56(84) bytes of data. [1595037214.261953] 64 bytes from 127.0.0.1: icmp_seq=1 ttl=64 time=0.041 ms [1595037215.264798] 64 bytes from 127.0.0.1: icmp_seq=2 ttl=64 time=0.048 ms [1595037216.272296] 64 bytes from 127.0.0.1: icmp_seq=3 ttl=64 time=0.047 ms [1595037217.275851] 64 bytes from 127.0.0.1: icmp_seq=4 ttl=64 time=0.062 ms [1595037218.284242] 64 bytes from 127.0.0.1: icmp_seq=5 ttl=64 time=0.045 ms [1595037219.283712] 64 bytes from 127.0.0.1: icmp_seq=6 ttl=64 time=0.043 ms [1595037220.290949] 64 bytes from 127.0.0.1: icmp_seq=7 ttl=64 time=0.046 ms [1595037221.295962] 64 bytes from 127.0.0.1: icmp_seq=8 ttl=64 time=0.044 ms [1595037222.307020] 64 bytes from 127.0.0.1: icmp_seq=9 ttl=64 time=0.048 ms [1595037223.313919] 64 bytes from 127.0.0.1: icmp_seq=10 ttl=64 time=0.081 ms [1595037224.313679] 64 bytes from 127.0.0.1: icmp_seq=11 ttl=64 time=0.043 ms [1595037225.320748] 64 bytes from 127.0.0.1: icmp_seq=12 ttl=64 time=0.044 ms [1595037226.324322] 64 bytes from 127.0.0.1: icmp_seq=13 ttl=64 time=0.045 ms [1595037227.325835] 64 bytes from 127.0.0.1: icmp_seq=14 ttl=64 time=0.046 ms [1595037228.327028] 64 bytes from 127.0.0.1: icmp_seq=15 ttl=64 time=0.046 ms [1595037229.329891] 64 bytes from 127.0.0.1: icmp_seq=16 ttl=64 time=0.052 ms [1595037230.333891] 64 bytes from 127.0.0.1: icmp_seq=17 ttl=64 time=0.044 ms [1595037231.338137] 64 bytes from 127.0.0.1: icmp_seq=18 ttl=64 time=0.046 ms [1595037232.340475] 64 bytes from 127.0.0.1: icmp_seq=19 ttl=64 time=0.048 ms [1595037233.343058] 64 bytes from 127.0.0.1: icmp_seq=20 ttl=64 time=0.045 ms --- 127.0.0.1 ping statistics --- 20 packets transmitted, 20 received, 0% packet loss, time 19081ms rtt min/avg/max/mdev = 0.041/0.048/0.081/0.009 ms jc-1.17.3/tests/fixtures/centos-7.7/ping-ip-O-streaming-ignore-exceptions.json000066400000000000000000000113111415226333200270750ustar00rootroot00000000000000[{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":1,"ttl":64,"time_ms":0.038,"duplicate":false,"_jc_meta":{"success":true}},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":2,"ttl":64,"time_ms":0.043,"duplicate":false,"_jc_meta":{"success":true}},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":3,"ttl":64,"time_ms":0.044,"duplicate":false,"_jc_meta":{"success":true}},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":4,"ttl":64,"time_ms":0.052,"duplicate":false,"_jc_meta":{"success":true}},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":5,"ttl":64,"time_ms":0.08,"duplicate":false,"_jc_meta":{"success":true}},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":6,"ttl":64,"time_ms":0.043,"duplicate":false,"_jc_meta":{"success":true}},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":7,"ttl":64,"time_ms":0.047,"duplicate":false,"_jc_meta":{"success":true}},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":8,"ttl":64,"time_ms":0.04,"duplicate":false,"_jc_meta":{"success":true}},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":9,"ttl":64,"time_ms":0.052,"duplicate":false,"_jc_meta":{"success":true}},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":10,"ttl":64,"time_ms":0.044,"duplicate":false,"_jc_meta":{"success":true}},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":11,"ttl":64,"time_ms":0.043,"duplicate":false,"_jc_meta":{"success":true}},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":12,"ttl":64,"time_ms":0.043,"duplicate":false,"_jc_meta":{"success":true}},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":13,"ttl":64,"time_ms":0.05,"duplicate":false,"_jc_meta":{"success":true}},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":14,"ttl":64,"time_ms":0.045,"duplicate":false,"_jc_meta":{"success":true}},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":15,"ttl":64,"time_ms":0.062,"duplicate":false,"_jc_meta":{"success":true}},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":16,"ttl":64,"time_ms":0.046,"duplicate":false,"_jc_meta":{"success":true}},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":17,"ttl":64,"time_ms":0.046,"duplicate":false,"_jc_meta":{"success":true}},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":18,"ttl":64,"time_ms":0.045,"duplicate":false,"_jc_meta":{"success":true}},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":19,"ttl":64,"time_ms":0.044,"duplicate":false,"_jc_meta":{"success":true}},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":20,"ttl":64,"time_ms":0.044,"duplicate":false,"_jc_meta":{"success":true}},{"type":"summary","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"packets_transmitted":20,"packets_received":20,"packet_loss_percent":0.0,"duplicates":0,"time_ms":19070.0,"round_trip_ms_min":0.038,"round_trip_ms_avg":0.047,"round_trip_ms_max":0.08,"round_trip_ms_stddev":0.011,"_jc_meta":{"success":true}}] jc-1.17.3/tests/fixtures/centos-7.7/ping-ip-O-streaming.json000066400000000000000000000101751415226333200234440ustar00rootroot00000000000000[{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":1,"ttl":64,"time_ms":0.038,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":2,"ttl":64,"time_ms":0.043,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":3,"ttl":64,"time_ms":0.044,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":4,"ttl":64,"time_ms":0.052,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":5,"ttl":64,"time_ms":0.08,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":6,"ttl":64,"time_ms":0.043,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":7,"ttl":64,"time_ms":0.047,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":8,"ttl":64,"time_ms":0.04,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":9,"ttl":64,"time_ms":0.052,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":10,"ttl":64,"time_ms":0.044,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":11,"ttl":64,"time_ms":0.043,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":12,"ttl":64,"time_ms":0.043,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":13,"ttl":64,"time_ms":0.05,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":14,"ttl":64,"time_ms":0.045,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":15,"ttl":64,"time_ms":0.062,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":16,"ttl":64,"time_ms":0.046,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":17,"ttl":64,"time_ms":0.046,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":18,"ttl":64,"time_ms":0.045,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":19,"ttl":64,"time_ms":0.044,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":20,"ttl":64,"time_ms":0.044,"duplicate":false},{"type":"summary","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"packets_transmitted":20,"packets_received":20,"packet_loss_percent":0.0,"duplicates":0,"time_ms":19070.0,"round_trip_ms_min":0.038,"round_trip_ms_avg":0.047,"round_trip_ms_max":0.08,"round_trip_ms_stddev":0.011}] jc-1.17.3/tests/fixtures/centos-7.7/ping-ip-O-unparsedlines.json000066400000000000000000000054111415226333200243240ustar00rootroot00000000000000{"destination_ip":"127.0.0.1","data_bytes":56,"pattern":null,"destination":"127.0.0.1","packets_transmitted":20,"packets_received":20,"packet_loss_percent":0.0,"duplicates":0,"time_ms":19070.0,"round_trip_ms_min":0.038,"round_trip_ms_avg":0.047,"round_trip_ms_max":0.08,"round_trip_ms_stddev":0.011,"responses":[{"type":"reply","timestamp":null,"bytes":64,"response_ip":"127.0.0.1","icmp_seq":1,"ttl":64,"time_ms":0.038,"duplicate":false},{"type":"reply","timestamp":null,"bytes":64,"response_ip":"127.0.0.1","icmp_seq":2,"ttl":64,"time_ms":0.043,"duplicate":false},{"type":"reply","timestamp":null,"bytes":64,"response_ip":"127.0.0.1","icmp_seq":3,"ttl":64,"time_ms":0.044,"duplicate":false},{"type":"unparsable_line","unparsed_line":"64 bytes from 127.0.0.1: error - weird error"},{"type":"reply","timestamp":null,"bytes":64,"response_ip":"127.0.0.1","icmp_seq":5,"ttl":64,"time_ms":0.08,"duplicate":false},{"type":"reply","timestamp":null,"bytes":64,"response_ip":"127.0.0.1","icmp_seq":6,"ttl":64,"time_ms":0.043,"duplicate":false},{"type":"reply","timestamp":null,"bytes":64,"response_ip":"127.0.0.1","icmp_seq":7,"ttl":64,"time_ms":0.047,"duplicate":false},{"type":"reply","timestamp":null,"bytes":64,"response_ip":"127.0.0.1","icmp_seq":8,"ttl":64,"time_ms":0.04,"duplicate":false},{"type":"reply","timestamp":null,"bytes":64,"response_ip":"127.0.0.1","icmp_seq":9,"ttl":64,"time_ms":0.052,"duplicate":false},{"type":"reply","timestamp":null,"bytes":64,"response_ip":"127.0.0.1","icmp_seq":10,"ttl":64,"time_ms":0.044,"duplicate":false},{"type":"reply","timestamp":null,"bytes":64,"response_ip":"127.0.0.1","icmp_seq":11,"ttl":64,"time_ms":0.043,"duplicate":false},{"type":"reply","timestamp":null,"bytes":64,"response_ip":"127.0.0.1","icmp_seq":12,"ttl":64,"time_ms":0.043,"duplicate":false},{"type":"reply","timestamp":null,"bytes":64,"response_ip":"127.0.0.1","icmp_seq":13,"ttl":64,"time_ms":0.05,"duplicate":false},{"type":"reply","timestamp":null,"bytes":64,"response_ip":"127.0.0.1","icmp_seq":14,"ttl":64,"time_ms":0.045,"duplicate":false},{"type":"reply","timestamp":null,"bytes":64,"response_ip":"127.0.0.1","icmp_seq":15,"ttl":64,"time_ms":0.062,"duplicate":false},{"type":"reply","timestamp":null,"bytes":64,"response_ip":"127.0.0.1","icmp_seq":16,"ttl":64,"time_ms":0.046,"duplicate":false},{"type":"reply","timestamp":null,"bytes":64,"response_ip":"127.0.0.1","icmp_seq":17,"ttl":64,"time_ms":0.046,"duplicate":false},{"type":"reply","timestamp":null,"bytes":64,"response_ip":"127.0.0.1","icmp_seq":18,"ttl":64,"time_ms":0.045,"duplicate":false},{"type":"reply","timestamp":null,"bytes":64,"response_ip":"127.0.0.1","icmp_seq":19,"ttl":64,"time_ms":0.044,"duplicate":false},{"type":"reply","timestamp":null,"bytes":64,"response_ip":"127.0.0.1","icmp_seq":20,"ttl":64,"time_ms":0.044,"duplicate":false}]} jc-1.17.3/tests/fixtures/centos-7.7/ping-ip-O-unparsedlines.out000066400000000000000000000025741415226333200241710ustar00rootroot00000000000000PING 127.0.0.1 (127.0.0.1) 56(84) bytes of data. 64 bytes from 127.0.0.1: icmp_seq=1 ttl=64 time=0.038 ms 64 bytes from 127.0.0.1: icmp_seq=2 ttl=64 time=0.043 ms: some weird error 64 bytes from 127.0.0.1: icmp_seq=3 ttl=64 time=0.044 ms 64 bytes from 127.0.0.1: error - weird error 64 bytes from 127.0.0.1: icmp_seq=5 ttl=64 time=0.080 ms 64 bytes from 127.0.0.1: icmp_seq=6 ttl=64 time=0.043 ms this is a weird error message 64 bytes from 127.0.0.1: icmp_seq=7 ttl=64 time=0.047 ms 64 bytes from 127.0.0.1: icmp_seq=8 ttl=64 time=0.040 ms 64 bytes from 127.0.0.1: icmp_seq=9 ttl=64 time=0.052 ms 64 bytes from 127.0.0.1: icmp_seq=10 ttl=64 time=0.044 ms 64 bytes from 127.0.0.1: icmp_seq=11 ttl=64 time=0.043 ms unparsable line 64 bytes from 127.0.0.1: icmp_seq=12 ttl=64 time=0.043 ms 64 bytes from 127.0.0.1: icmp_seq=13 ttl=64 time=0.050 ms 64 bytes from 127.0.0.1: icmp_seq=14 ttl=64 time=0.045 ms 64 bytes from 127.0.0.1: icmp_seq=15 ttl=64 time=0.062 ms 64 bytes from 127.0.0.1: icmp_seq=16 ttl=64 time=0.046 ms 64 bytes from 127.0.0.1: icmp_seq=17 ttl=64 time=0.046 ms 64 bytes from 127.0.0.1: icmp_seq=18 ttl=64 time=0.045 ms 64 bytes from 127.0.0.1: icmp_seq=19 ttl=64 time=0.044 ms 64 bytes from 127.0.0.1: icmp_seq=20 ttl=64 time=0.044 ms --- 127.0.0.1 ping statistics --- 20 packets transmitted, 20 received, 0% packet loss, time 19070ms rtt min/avg/max/mdev = 0.038/0.047/0.080/0.011 ms jc-1.17.3/tests/fixtures/centos-7.7/ping-ip-O.json000066400000000000000000000062101415226333200214500ustar00rootroot00000000000000{"destination_ip": "127.0.0.1", "data_bytes": 56, "pattern": null, "destination": "127.0.0.1", "packets_transmitted": 20, "packets_received": 20, "packet_loss_percent": 0.0, "duplicates": 0, "time_ms": 19070.0, "round_trip_ms_min": 0.038, "round_trip_ms_avg": 0.047, "round_trip_ms_max": 0.08, "round_trip_ms_stddev": 0.011, "responses": [{"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 1, "ttl": 64, "time_ms": 0.038, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 2, "ttl": 64, "time_ms": 0.043, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 3, "ttl": 64, "time_ms": 0.044, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 4, "ttl": 64, "time_ms": 0.052, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 5, "ttl": 64, "time_ms": 0.08, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 6, "ttl": 64, "time_ms": 0.043, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 7, "ttl": 64, "time_ms": 0.047, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 8, "ttl": 64, "time_ms": 0.04, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 9, "ttl": 64, "time_ms": 0.052, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 10, "ttl": 64, "time_ms": 0.044, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 11, "ttl": 64, "time_ms": 0.043, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 12, "ttl": 64, "time_ms": 0.043, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 13, "ttl": 64, "time_ms": 0.05, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 14, "ttl": 64, "time_ms": 0.045, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 15, "ttl": 64, "time_ms": 0.062, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 16, "ttl": 64, "time_ms": 0.046, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 17, "ttl": 64, "time_ms": 0.046, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 18, "ttl": 64, "time_ms": 0.045, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 19, "ttl": 64, "time_ms": 0.044, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 20, "ttl": 64, "time_ms": 0.044, "duplicate": false}]} jc-1.17.3/tests/fixtures/centos-7.7/ping-ip-O.out000066400000000000000000000025071415226333200213130ustar00rootroot00000000000000PING 127.0.0.1 (127.0.0.1) 56(84) bytes of data. 64 bytes from 127.0.0.1: icmp_seq=1 ttl=64 time=0.038 ms 64 bytes from 127.0.0.1: icmp_seq=2 ttl=64 time=0.043 ms 64 bytes from 127.0.0.1: icmp_seq=3 ttl=64 time=0.044 ms 64 bytes from 127.0.0.1: icmp_seq=4 ttl=64 time=0.052 ms 64 bytes from 127.0.0.1: icmp_seq=5 ttl=64 time=0.080 ms 64 bytes from 127.0.0.1: icmp_seq=6 ttl=64 time=0.043 ms 64 bytes from 127.0.0.1: icmp_seq=7 ttl=64 time=0.047 ms 64 bytes from 127.0.0.1: icmp_seq=8 ttl=64 time=0.040 ms 64 bytes from 127.0.0.1: icmp_seq=9 ttl=64 time=0.052 ms 64 bytes from 127.0.0.1: icmp_seq=10 ttl=64 time=0.044 ms 64 bytes from 127.0.0.1: icmp_seq=11 ttl=64 time=0.043 ms 64 bytes from 127.0.0.1: icmp_seq=12 ttl=64 time=0.043 ms 64 bytes from 127.0.0.1: icmp_seq=13 ttl=64 time=0.050 ms 64 bytes from 127.0.0.1: icmp_seq=14 ttl=64 time=0.045 ms 64 bytes from 127.0.0.1: icmp_seq=15 ttl=64 time=0.062 ms 64 bytes from 127.0.0.1: icmp_seq=16 ttl=64 time=0.046 ms 64 bytes from 127.0.0.1: icmp_seq=17 ttl=64 time=0.046 ms 64 bytes from 127.0.0.1: icmp_seq=18 ttl=64 time=0.045 ms 64 bytes from 127.0.0.1: icmp_seq=19 ttl=64 time=0.044 ms 64 bytes from 127.0.0.1: icmp_seq=20 ttl=64 time=0.044 ms --- 127.0.0.1 ping statistics --- 20 packets transmitted, 20 received, 0% packet loss, time 19070ms rtt min/avg/max/mdev = 0.038/0.047/0.080/0.011 ms jc-1.17.3/tests/fixtures/centos-7.7/ping-ip-dup-streaming.json000066400000000000000000000107201415226333200240320ustar00rootroot00000000000000[{"type":"reply","destination_ip":"192.168.1.255","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"192.168.1.221","icmp_seq":1,"ttl":64,"time_ms":0.586,"duplicate":false},{"type":"reply","destination_ip":"192.168.1.255","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"192.168.1.88","icmp_seq":1,"ttl":64,"time_ms":382.0,"duplicate":true},{"type":"reply","destination_ip":"192.168.1.255","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"192.168.1.78","icmp_seq":1,"ttl":128,"time_ms":382.0,"duplicate":true},{"type":"reply","destination_ip":"192.168.1.255","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"192.168.1.217","icmp_seq":1,"ttl":255,"time_ms":387.0,"duplicate":true},{"type":"reply","destination_ip":"192.168.1.255","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"192.168.1.186","icmp_seq":1,"ttl":64,"time_ms":389.0,"duplicate":true},{"type":"reply","destination_ip":"192.168.1.255","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"192.168.1.89","icmp_seq":1,"ttl":64,"time_ms":389.0,"duplicate":true},{"type":"reply","destination_ip":"192.168.1.255","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"192.168.1.75","icmp_seq":1,"ttl":64,"time_ms":584.0,"duplicate":true},{"type":"reply","destination_ip":"192.168.1.255","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"192.168.1.221","icmp_seq":2,"ttl":64,"time_ms":0.861,"duplicate":false},{"type":"reply","destination_ip":"192.168.1.255","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"192.168.1.78","icmp_seq":2,"ttl":128,"time_ms":4.17,"duplicate":true},{"type":"reply","destination_ip":"192.168.1.255","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"192.168.1.88","icmp_seq":2,"ttl":64,"time_ms":4.19,"duplicate":true},{"type":"reply","destination_ip":"192.168.1.255","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"192.168.1.89","icmp_seq":2,"ttl":64,"time_ms":12.7,"duplicate":true},{"type":"reply","destination_ip":"192.168.1.255","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"192.168.1.81","icmp_seq":1,"ttl":64,"time_ms":1029.0,"duplicate":true},{"type":"reply","destination_ip":"192.168.1.255","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"192.168.1.72","icmp_seq":1,"ttl":64,"time_ms":1276.0,"duplicate":true},{"type":"reply","destination_ip":"192.168.1.255","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"192.168.1.251","icmp_seq":1,"ttl":64,"time_ms":1276.0,"duplicate":true},{"type":"reply","destination_ip":"192.168.1.255","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"192.168.1.251","icmp_seq":2,"ttl":64,"time_ms":262.0,"duplicate":true},{"type":"reply","destination_ip":"192.168.1.255","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"192.168.1.72","icmp_seq":2,"ttl":64,"time_ms":263.0,"duplicate":true},{"type":"reply","destination_ip":"192.168.1.255","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"192.168.1.246","icmp_seq":2,"ttl":255,"time_ms":263.0,"duplicate":true},{"type":"reply","destination_ip":"192.168.1.255","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"192.168.1.217","icmp_seq":2,"ttl":255,"time_ms":919.0,"duplicate":true},{"type":"reply","destination_ip":"192.168.1.255","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"192.168.1.186","icmp_seq":2,"ttl":64,"time_ms":919.0,"duplicate":true},{"type":"reply","destination_ip":"192.168.1.255","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"192.168.1.75","icmp_seq":2,"ttl":64,"time_ms":919.0,"duplicate":true},{"type":"reply","destination_ip":"192.168.1.255","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"192.168.1.81","icmp_seq":2,"ttl":64,"time_ms":919.0,"duplicate":true},{"type":"summary","destination_ip":"192.168.1.255","sent_bytes":56,"pattern":null,"packets_transmitted":2,"packets_received":2,"packet_loss_percent":0.0,"duplicates":19,"time_ms":1013.0,"round_trip_ms_min":0.586,"round_trip_ms_avg":504.26,"round_trip_ms_max":1276.448,"round_trip_ms_stddev":417.208}] jc-1.17.3/tests/fixtures/centos-7.7/ping-ip-dup.json000066400000000000000000000065261415226333200220540ustar00rootroot00000000000000{"destination_ip": "192.168.1.255", "data_bytes": 56, "pattern": null, "destination": "192.168.1.255", "packets_transmitted": 2, "packets_received": 2, "packet_loss_percent": 0.0, "duplicates": 19, "time_ms": 1013.0, "round_trip_ms_min": 0.586, "round_trip_ms_avg": 504.26, "round_trip_ms_max": 1276.448, "round_trip_ms_stddev": 417.208, "responses": [{"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "192.168.1.221", "icmp_seq": 1, "ttl": 64, "time_ms": 0.586, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "192.168.1.88", "icmp_seq": 1, "ttl": 64, "time_ms": 382.0, "duplicate": true}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "192.168.1.78", "icmp_seq": 1, "ttl": 128, "time_ms": 382.0, "duplicate": true}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "192.168.1.217", "icmp_seq": 1, "ttl": 255, "time_ms": 387.0, "duplicate": true}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "192.168.1.186", "icmp_seq": 1, "ttl": 64, "time_ms": 389.0, "duplicate": true}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "192.168.1.89", "icmp_seq": 1, "ttl": 64, "time_ms": 389.0, "duplicate": true}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "192.168.1.75", "icmp_seq": 1, "ttl": 64, "time_ms": 584.0, "duplicate": true}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "192.168.1.221", "icmp_seq": 2, "ttl": 64, "time_ms": 0.861, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "192.168.1.78", "icmp_seq": 2, "ttl": 128, "time_ms": 4.17, "duplicate": true}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "192.168.1.88", "icmp_seq": 2, "ttl": 64, "time_ms": 4.19, "duplicate": true}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "192.168.1.89", "icmp_seq": 2, "ttl": 64, "time_ms": 12.7, "duplicate": true}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "192.168.1.81", "icmp_seq": 1, "ttl": 64, "time_ms": 1029.0, "duplicate": true}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "192.168.1.72", "icmp_seq": 1, "ttl": 64, "time_ms": 1276.0, "duplicate": true}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "192.168.1.251", "icmp_seq": 1, "ttl": 64, "time_ms": 1276.0, "duplicate": true}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "192.168.1.251", "icmp_seq": 2, "ttl": 64, "time_ms": 262.0, "duplicate": true}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "192.168.1.72", "icmp_seq": 2, "ttl": 64, "time_ms": 263.0, "duplicate": true}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "192.168.1.246", "icmp_seq": 2, "ttl": 255, "time_ms": 263.0, "duplicate": true}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "192.168.1.217", "icmp_seq": 2, "ttl": 255, "time_ms": 919.0, "duplicate": true}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "192.168.1.186", "icmp_seq": 2, "ttl": 64, "time_ms": 919.0, "duplicate": true}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "192.168.1.75", "icmp_seq": 2, "ttl": 64, "time_ms": 919.0, "duplicate": true}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "192.168.1.81", "icmp_seq": 2, "ttl": 64, "time_ms": 919.0, "duplicate": true}]} jc-1.17.3/tests/fixtures/centos-7.7/ping-ip-dup.out000066400000000000000000000031621415226333200217030ustar00rootroot00000000000000WARNING: pinging broadcast address PING 192.168.1.255 (192.168.1.255) 56(84) bytes of data. 64 bytes from 192.168.1.221: icmp_seq=1 ttl=64 time=0.586 ms 64 bytes from 192.168.1.88: icmp_seq=1 ttl=64 time=382 ms (DUP!) 64 bytes from 192.168.1.78: icmp_seq=1 ttl=128 time=382 ms (DUP!) 64 bytes from 192.168.1.217: icmp_seq=1 ttl=255 time=387 ms (DUP!) 64 bytes from 192.168.1.186: icmp_seq=1 ttl=64 time=389 ms (DUP!) 64 bytes from 192.168.1.89: icmp_seq=1 ttl=64 time=389 ms (DUP!) 64 bytes from 192.168.1.75: icmp_seq=1 ttl=64 time=584 ms (DUP!) 64 bytes from 192.168.1.221: icmp_seq=2 ttl=64 time=0.861 ms 64 bytes from 192.168.1.78: icmp_seq=2 ttl=128 time=4.17 ms (DUP!) 64 bytes from 192.168.1.88: icmp_seq=2 ttl=64 time=4.19 ms (DUP!) 64 bytes from 192.168.1.89: icmp_seq=2 ttl=64 time=12.7 ms (DUP!) 64 bytes from 192.168.1.81: icmp_seq=1 ttl=64 time=1029 ms (DUP!) 64 bytes from 192.168.1.72: icmp_seq=1 ttl=64 time=1276 ms (DUP!) 64 bytes from 192.168.1.251: icmp_seq=1 ttl=64 time=1276 ms (DUP!) 64 bytes from 192.168.1.251: icmp_seq=2 ttl=64 time=262 ms (DUP!) 64 bytes from 192.168.1.72: icmp_seq=2 ttl=64 time=263 ms (DUP!) 64 bytes from 192.168.1.246: icmp_seq=2 ttl=255 time=263 ms (DUP!) 64 bytes from 192.168.1.217: icmp_seq=2 ttl=255 time=919 ms (DUP!) 64 bytes from 192.168.1.186: icmp_seq=2 ttl=64 time=919 ms (DUP!) 64 bytes from 192.168.1.75: icmp_seq=2 ttl=64 time=919 ms (DUP!) 64 bytes from 192.168.1.81: icmp_seq=2 ttl=64 time=919 ms (DUP!) --- 192.168.1.255 ping statistics --- 2 packets transmitted, 2 received, +19 duplicates, 0% packet loss, time 1013ms rtt min/avg/max/mdev = 0.586/504.260/1276.448/417.208 ms, pipe 2 jc-1.17.3/tests/fixtures/centos-7.7/ping6-hostname-O-D-p-s-streaming.json000066400000000000000000000115361415226333200256200ustar00rootroot00000000000000[{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1594978345.609669,"response_bytes":1408,"response_ip":"2a04:4e42:2d::323","icmp_seq":1,"ttl":59,"time_ms":32.4,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1594978346.58542,"response_bytes":1408,"response_ip":"2a04:4e42:2d::323","icmp_seq":2,"ttl":59,"time_ms":39.9,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1594978347.594128,"response_bytes":1408,"response_ip":"2a04:4e42:2d::323","icmp_seq":3,"ttl":59,"time_ms":42.3,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1594978348.595221,"response_bytes":1408,"response_ip":"2a04:4e42:2d::323","icmp_seq":4,"ttl":59,"time_ms":40.2,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1594978349.600372,"response_bytes":1408,"response_ip":"2a04:4e42:2d::323","icmp_seq":5,"ttl":59,"time_ms":43.2,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1594978350.590676,"response_bytes":1408,"response_ip":"2a04:4e42:2d::323","icmp_seq":6,"ttl":59,"time_ms":31.8,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1594978351.601527,"response_bytes":1408,"response_ip":"2a04:4e42:2d::323","icmp_seq":7,"ttl":59,"time_ms":41.8,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1594978352.604195,"response_bytes":1408,"response_ip":"2a04:4e42:2d::323","icmp_seq":8,"ttl":59,"time_ms":41.7,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1594978353.607212,"response_bytes":1408,"response_ip":"2a04:4e42:2d::323","icmp_seq":9,"ttl":59,"time_ms":42.0,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1594978354.610771,"response_bytes":1408,"response_ip":"2a04:4e42:2d::323","icmp_seq":10,"ttl":59,"time_ms":40.7,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1594978355.613729,"response_bytes":1408,"response_ip":"2a04:4e42:2d::323","icmp_seq":11,"ttl":59,"time_ms":40.4,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1594978356.611887,"response_bytes":1408,"response_ip":"2a04:4e42:2d::323","icmp_seq":12,"ttl":59,"time_ms":32.6,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1594978357.62481,"response_bytes":1408,"response_ip":"2a04:4e42:2d::323","icmp_seq":13,"ttl":59,"time_ms":40.1,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1594978358.629185,"response_bytes":1408,"response_ip":"2a04:4e42:2d::323","icmp_seq":14,"ttl":59,"time_ms":42.0,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1594978359.634854,"response_bytes":1408,"response_ip":"2a04:4e42:2d::323","icmp_seq":15,"ttl":59,"time_ms":41.2,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1594978360.638344,"response_bytes":1408,"response_ip":"2a04:4e42:2d::323","icmp_seq":16,"ttl":59,"time_ms":40.6,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1594978361.640968,"response_bytes":1408,"response_ip":"2a04:4e42:2d::323","icmp_seq":17,"ttl":59,"time_ms":40.7,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1594978362.645739,"response_bytes":1408,"response_ip":"2a04:4e42:2d::323","icmp_seq":18,"ttl":59,"time_ms":39.9,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1594978363.6467,"response_bytes":1408,"response_ip":"2a04:4e42:2d::323","icmp_seq":19,"ttl":59,"time_ms":37.5,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1594978364.650853,"response_bytes":1408,"response_ip":"2a04:4e42:2d::323","icmp_seq":20,"ttl":59,"time_ms":33.6,"duplicate":false},{"type":"summary","destination_ip":"2a04:4e42:2d::323","sent_bytes":1400,"pattern":"0xabcd","packets_transmitted":20,"packets_received":20,"packet_loss_percent":0.0,"duplicates":0,"time_ms":19077.0,"round_trip_ms_min":31.845,"round_trip_ms_avg":39.274,"round_trip_ms_max":43.243,"round_trip_ms_stddev":3.522}] jc-1.17.3/tests/fixtures/centos-7.7/ping6-hostname-O-D-p-s.json000066400000000000000000000071231415226333200236260ustar00rootroot00000000000000{"destination_ip": "2a04:4e42:2d::323", "data_bytes": 1400, "pattern": "0xabcd", "destination": "www.cnn.com", "packets_transmitted": 20, "packets_received": 20, "packet_loss_percent": 0.0, "duplicates": 0, "time_ms": 19077.0, "round_trip_ms_min": 31.845, "round_trip_ms_avg": 39.274, "round_trip_ms_max": 43.243, "round_trip_ms_stddev": 3.522, "responses": [{"type": "reply", "timestamp": 1594978345.609669, "bytes": 1408, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 1, "ttl": 59, "time_ms": 32.4, "duplicate": false}, {"type": "reply", "timestamp": 1594978346.58542, "bytes": 1408, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 2, "ttl": 59, "time_ms": 39.9, "duplicate": false}, {"type": "reply", "timestamp": 1594978347.594128, "bytes": 1408, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 3, "ttl": 59, "time_ms": 42.3, "duplicate": false}, {"type": "reply", "timestamp": 1594978348.595221, "bytes": 1408, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 4, "ttl": 59, "time_ms": 40.2, "duplicate": false}, {"type": "reply", "timestamp": 1594978349.600372, "bytes": 1408, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 5, "ttl": 59, "time_ms": 43.2, "duplicate": false}, {"type": "reply", "timestamp": 1594978350.590676, "bytes": 1408, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 6, "ttl": 59, "time_ms": 31.8, "duplicate": false}, {"type": "reply", "timestamp": 1594978351.601527, "bytes": 1408, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 7, "ttl": 59, "time_ms": 41.8, "duplicate": false}, {"type": "reply", "timestamp": 1594978352.604195, "bytes": 1408, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 8, "ttl": 59, "time_ms": 41.7, "duplicate": false}, {"type": "reply", "timestamp": 1594978353.607212, "bytes": 1408, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 9, "ttl": 59, "time_ms": 42.0, "duplicate": false}, {"type": "reply", "timestamp": 1594978354.610771, "bytes": 1408, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 10, "ttl": 59, "time_ms": 40.7, "duplicate": false}, {"type": "reply", "timestamp": 1594978355.613729, "bytes": 1408, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 11, "ttl": 59, "time_ms": 40.4, "duplicate": false}, {"type": "reply", "timestamp": 1594978356.611887, "bytes": 1408, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 12, "ttl": 59, "time_ms": 32.6, "duplicate": false}, {"type": "reply", "timestamp": 1594978357.62481, "bytes": 1408, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 13, "ttl": 59, "time_ms": 40.1, "duplicate": false}, {"type": "reply", "timestamp": 1594978358.629185, "bytes": 1408, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 14, "ttl": 59, "time_ms": 42.0, "duplicate": false}, {"type": "reply", "timestamp": 1594978359.634854, "bytes": 1408, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 15, "ttl": 59, "time_ms": 41.2, "duplicate": false}, {"type": "reply", "timestamp": 1594978360.638344, "bytes": 1408, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 16, "ttl": 59, "time_ms": 40.6, "duplicate": false}, {"type": "reply", "timestamp": 1594978361.640968, "bytes": 1408, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 17, "ttl": 59, "time_ms": 40.7, "duplicate": false}, {"type": "reply", "timestamp": 1594978362.645739, "bytes": 1408, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 18, "ttl": 59, "time_ms": 39.9, "duplicate": false}, {"type": "reply", "timestamp": 1594978363.6467, "bytes": 1408, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 19, "ttl": 59, "time_ms": 37.5, "duplicate": false}, {"type": "reply", "timestamp": 1594978364.650853, "bytes": 1408, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 20, "ttl": 59, "time_ms": 33.6, "duplicate": false}]} jc-1.17.3/tests/fixtures/centos-7.7/ping6-hostname-O-D-p-s.out000066400000000000000000000045071415226333200234670ustar00rootroot00000000000000PATTERN: 0xabcd PING www.cnn.com(2a04:4e42:2d::323 (2a04:4e42:2d::323)) 1400 data bytes [1594978345.609669] 1408 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=1 ttl=59 time=32.4 ms [1594978346.585420] 1408 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=2 ttl=59 time=39.9 ms [1594978347.594128] 1408 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=3 ttl=59 time=42.3 ms [1594978348.595221] 1408 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=4 ttl=59 time=40.2 ms [1594978349.600372] 1408 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=5 ttl=59 time=43.2 ms [1594978350.590676] 1408 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=6 ttl=59 time=31.8 ms [1594978351.601527] 1408 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=7 ttl=59 time=41.8 ms [1594978352.604195] 1408 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=8 ttl=59 time=41.7 ms [1594978353.607212] 1408 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=9 ttl=59 time=42.0 ms [1594978354.610771] 1408 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=10 ttl=59 time=40.7 ms [1594978355.613729] 1408 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=11 ttl=59 time=40.4 ms [1594978356.611887] 1408 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=12 ttl=59 time=32.6 ms [1594978357.624810] 1408 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=13 ttl=59 time=40.1 ms [1594978358.629185] 1408 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=14 ttl=59 time=42.0 ms [1594978359.634854] 1408 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=15 ttl=59 time=41.2 ms [1594978360.638344] 1408 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=16 ttl=59 time=40.6 ms [1594978361.640968] 1408 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=17 ttl=59 time=40.7 ms [1594978362.645739] 1408 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=18 ttl=59 time=39.9 ms [1594978363.646700] 1408 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=19 ttl=59 time=37.5 ms [1594978364.650853] 1408 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=20 ttl=59 time=33.6 ms --- www.cnn.com ping statistics --- 20 packets transmitted, 20 received, 0% packet loss, time 19077ms rtt min/avg/max/mdev = 31.845/39.274/43.243/3.522 ms jc-1.17.3/tests/fixtures/centos-7.7/ping6-hostname-O-p-streaming.json000066400000000000000000000110141415226333200251660ustar00rootroot00000000000000[{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:2d::323","icmp_seq":1,"ttl":59,"time_ms":30.9,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:2d::323","icmp_seq":2,"ttl":59,"time_ms":39.0,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:2d::323","icmp_seq":3,"ttl":59,"time_ms":32.6,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:2d::323","icmp_seq":4,"ttl":59,"time_ms":38.4,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:2d::323","icmp_seq":5,"ttl":59,"time_ms":38.8,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:2d::323","icmp_seq":6,"ttl":59,"time_ms":42.6,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:2d::323","icmp_seq":7,"ttl":59,"time_ms":30.7,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:2d::323","icmp_seq":8,"ttl":59,"time_ms":39.4,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:2d::323","icmp_seq":9,"ttl":59,"time_ms":39.3,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:2d::323","icmp_seq":10,"ttl":59,"time_ms":38.9,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:2d::323","icmp_seq":11,"ttl":59,"time_ms":38.6,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:2d::323","icmp_seq":12,"ttl":59,"time_ms":38.2,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:2d::323","icmp_seq":13,"ttl":59,"time_ms":39.6,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:2d::323","icmp_seq":14,"ttl":59,"time_ms":37.4,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:2d::323","icmp_seq":15,"ttl":59,"time_ms":33.7,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:2d::323","icmp_seq":16,"ttl":59,"time_ms":39.4,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:2d::323","icmp_seq":17,"ttl":59,"time_ms":38.9,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:2d::323","icmp_seq":18,"ttl":59,"time_ms":41.3,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:2d::323","icmp_seq":19,"ttl":59,"time_ms":32.2,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:2d::323","icmp_seq":20,"ttl":59,"time_ms":38.4,"duplicate":false},{"type":"summary","destination_ip":"2a04:4e42:2d::323","sent_bytes":56,"pattern":"0xabcd","packets_transmitted":20,"packets_received":20,"packet_loss_percent":0.0,"duplicates":0,"time_ms":19164.0,"round_trip_ms_min":30.757,"round_trip_ms_avg":37.455,"round_trip_ms_max":42.652,"round_trip_ms_stddev":3.338}] jc-1.17.3/tests/fixtures/centos-7.7/ping6-hostname-O-p.json000066400000000000000000000064511415226333200232100ustar00rootroot00000000000000{"destination_ip": "2a04:4e42:2d::323", "data_bytes": 56, "pattern": "0xabcd", "destination": "www.cnn.com", "packets_transmitted": 20, "packets_received": 20, "packet_loss_percent": 0.0, "duplicates": 0, "time_ms": 19164.0, "round_trip_ms_min": 30.757, "round_trip_ms_avg": 37.455, "round_trip_ms_max": 42.652, "round_trip_ms_stddev": 3.338, "responses": [{"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 1, "ttl": 59, "time_ms": 30.9, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 2, "ttl": 59, "time_ms": 39.0, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 3, "ttl": 59, "time_ms": 32.6, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 4, "ttl": 59, "time_ms": 38.4, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 5, "ttl": 59, "time_ms": 38.8, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 6, "ttl": 59, "time_ms": 42.6, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 7, "ttl": 59, "time_ms": 30.7, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 8, "ttl": 59, "time_ms": 39.4, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 9, "ttl": 59, "time_ms": 39.3, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 10, "ttl": 59, "time_ms": 38.9, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 11, "ttl": 59, "time_ms": 38.6, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 12, "ttl": 59, "time_ms": 38.2, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 13, "ttl": 59, "time_ms": 39.6, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 14, "ttl": 59, "time_ms": 37.4, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 15, "ttl": 59, "time_ms": 33.7, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 16, "ttl": 59, "time_ms": 39.4, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 17, "ttl": 59, "time_ms": 38.9, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 18, "ttl": 59, "time_ms": 41.3, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 19, "ttl": 59, "time_ms": 32.2, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 20, "ttl": 59, "time_ms": 38.4, "duplicate": false}]} jc-1.17.3/tests/fixtures/centos-7.7/ping6-hostname-O-p.out000066400000000000000000000036151415226333200230450ustar00rootroot00000000000000PATTERN: 0xabcd PING www.cnn.com(2a04:4e42:2d::323 (2a04:4e42:2d::323)) 56 data bytes 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=1 ttl=59 time=30.9 ms 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=2 ttl=59 time=39.0 ms 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=3 ttl=59 time=32.6 ms 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=4 ttl=59 time=38.4 ms 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=5 ttl=59 time=38.8 ms 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=6 ttl=59 time=42.6 ms 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=7 ttl=59 time=30.7 ms 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=8 ttl=59 time=39.4 ms 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=9 ttl=59 time=39.3 ms 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=10 ttl=59 time=38.9 ms 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=11 ttl=59 time=38.6 ms 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=12 ttl=59 time=38.2 ms 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=13 ttl=59 time=39.6 ms 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=14 ttl=59 time=37.4 ms 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=15 ttl=59 time=33.7 ms 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=16 ttl=59 time=39.4 ms 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=17 ttl=59 time=38.9 ms 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=18 ttl=59 time=41.3 ms 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=19 ttl=59 time=32.2 ms 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=20 ttl=59 time=38.4 ms --- www.cnn.com ping statistics --- 20 packets transmitted, 20 received, 0% packet loss, time 19164ms rtt min/avg/max/mdev = 30.757/37.455/42.652/3.338 ms jc-1.17.3/tests/fixtures/centos-7.7/ping6-ip-O-D-p-streaming.json000066400000000000000000000113271415226333200241500ustar00rootroot00000000000000[{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1594976827.240914,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":1,"ttl":59,"time_ms":28.7,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1594976828.25493,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":2,"ttl":59,"time_ms":37.2,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1594976829.252877,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":3,"ttl":59,"time_ms":29.7,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1594976830.262654,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":4,"ttl":59,"time_ms":37.7,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1594976831.265626,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":5,"ttl":59,"time_ms":34.8,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1594976832.269834,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":6,"ttl":59,"time_ms":35.6,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1594976833.268059,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":7,"ttl":59,"time_ms":28.4,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1594976834.274292,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":8,"ttl":59,"time_ms":28.1,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1594976835.287123,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":9,"ttl":59,"time_ms":34.9,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1594976836.287707,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":10,"ttl":59,"time_ms":34.4,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1594976837.290589,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":11,"ttl":59,"time_ms":35.2,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1594976838.293514,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":12,"ttl":59,"time_ms":35.4,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1594976839.290914,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":13,"ttl":59,"time_ms":29.8,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1594976840.292897,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":14,"ttl":59,"time_ms":28.5,"duplicate":false},{"type":"timeout","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1594976842.269238,"icmp_seq":15},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1594976842.30145,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":16,"ttl":59,"time_ms":31.8,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1594976843.312998,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":17,"ttl":59,"time_ms":39.8,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1594976844.314228,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":18,"ttl":59,"time_ms":35.7,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1594976845.315518,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":19,"ttl":59,"time_ms":35.1,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1594976846.321706,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":20,"ttl":59,"time_ms":35.4,"duplicate":false},{"type":"summary","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","packets_transmitted":20,"packets_received":19,"packet_loss_percent":5.0,"duplicates":0,"time_ms":19074.0,"round_trip_ms_min":28.15,"round_trip_ms_avg":33.534,"round_trip_ms_max":39.843,"round_trip_ms_stddev":3.489}] jc-1.17.3/tests/fixtures/centos-7.7/ping6-ip-O-D-p.json000066400000000000000000000067461415226333200221720ustar00rootroot00000000000000{"destination_ip": "2a04:4e42:600::323", "data_bytes": 56, "pattern": "0xabcd", "destination": "2a04:4e42:600::323", "packets_transmitted": 20, "packets_received": 19, "packet_loss_percent": 5.0, "duplicates": 0, "time_ms": 19074.0, "round_trip_ms_min": 28.15, "round_trip_ms_avg": 33.534, "round_trip_ms_max": 39.843, "round_trip_ms_stddev": 3.489, "responses": [{"type": "reply", "timestamp": 1594976827.240914, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 1, "ttl": 59, "time_ms": 28.7, "duplicate": false}, {"type": "reply", "timestamp": 1594976828.25493, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 2, "ttl": 59, "time_ms": 37.2, "duplicate": false}, {"type": "reply", "timestamp": 1594976829.252877, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 3, "ttl": 59, "time_ms": 29.7, "duplicate": false}, {"type": "reply", "timestamp": 1594976830.262654, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 4, "ttl": 59, "time_ms": 37.7, "duplicate": false}, {"type": "reply", "timestamp": 1594976831.265626, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 5, "ttl": 59, "time_ms": 34.8, "duplicate": false}, {"type": "reply", "timestamp": 1594976832.269834, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 6, "ttl": 59, "time_ms": 35.6, "duplicate": false}, {"type": "reply", "timestamp": 1594976833.268059, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 7, "ttl": 59, "time_ms": 28.4, "duplicate": false}, {"type": "reply", "timestamp": 1594976834.274292, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 8, "ttl": 59, "time_ms": 28.1, "duplicate": false}, {"type": "reply", "timestamp": 1594976835.287123, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 9, "ttl": 59, "time_ms": 34.9, "duplicate": false}, {"type": "reply", "timestamp": 1594976836.287707, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 10, "ttl": 59, "time_ms": 34.4, "duplicate": false}, {"type": "reply", "timestamp": 1594976837.290589, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 11, "ttl": 59, "time_ms": 35.2, "duplicate": false}, {"type": "reply", "timestamp": 1594976838.293514, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 12, "ttl": 59, "time_ms": 35.4, "duplicate": false}, {"type": "reply", "timestamp": 1594976839.290914, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 13, "ttl": 59, "time_ms": 29.8, "duplicate": false}, {"type": "reply", "timestamp": 1594976840.292897, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 14, "ttl": 59, "time_ms": 28.5, "duplicate": false}, {"type": "timeout", "timestamp": 1594976842.269238, "icmp_seq": 15}, {"type": "reply", "timestamp": 1594976842.30145, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 16, "ttl": 59, "time_ms": 31.8, "duplicate": false}, {"type": "reply", "timestamp": 1594976843.312998, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 17, "ttl": 59, "time_ms": 39.8, "duplicate": false}, {"type": "reply", "timestamp": 1594976844.314228, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 18, "ttl": 59, "time_ms": 35.7, "duplicate": false}, {"type": "reply", "timestamp": 1594976845.315518, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 19, "ttl": 59, "time_ms": 35.1, "duplicate": false}, {"type": "reply", "timestamp": 1594976846.321706, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 20, "ttl": 59, "time_ms": 35.4, "duplicate": false}]} jc-1.17.3/tests/fixtures/centos-7.7/ping6-ip-O-D-p.out000066400000000000000000000035701415226333200220200ustar00rootroot00000000000000PATTERN: 0xabcd PING 2a04:4e42:600::323(2a04:4e42:600::323) 56 data bytes [1594976827.240914] 64 bytes from 2a04:4e42:600::323: icmp_seq=1 ttl=59 time=28.7 ms [1594976828.254930] 64 bytes from 2a04:4e42:600::323: icmp_seq=2 ttl=59 time=37.2 ms [1594976829.252877] 64 bytes from 2a04:4e42:600::323: icmp_seq=3 ttl=59 time=29.7 ms [1594976830.262654] 64 bytes from 2a04:4e42:600::323: icmp_seq=4 ttl=59 time=37.7 ms [1594976831.265626] 64 bytes from 2a04:4e42:600::323: icmp_seq=5 ttl=59 time=34.8 ms [1594976832.269834] 64 bytes from 2a04:4e42:600::323: icmp_seq=6 ttl=59 time=35.6 ms [1594976833.268059] 64 bytes from 2a04:4e42:600::323: icmp_seq=7 ttl=59 time=28.4 ms [1594976834.274292] 64 bytes from 2a04:4e42:600::323: icmp_seq=8 ttl=59 time=28.1 ms [1594976835.287123] 64 bytes from 2a04:4e42:600::323: icmp_seq=9 ttl=59 time=34.9 ms [1594976836.287707] 64 bytes from 2a04:4e42:600::323: icmp_seq=10 ttl=59 time=34.4 ms [1594976837.290589] 64 bytes from 2a04:4e42:600::323: icmp_seq=11 ttl=59 time=35.2 ms [1594976838.293514] 64 bytes from 2a04:4e42:600::323: icmp_seq=12 ttl=59 time=35.4 ms [1594976839.290914] 64 bytes from 2a04:4e42:600::323: icmp_seq=13 ttl=59 time=29.8 ms [1594976840.292897] 64 bytes from 2a04:4e42:600::323: icmp_seq=14 ttl=59 time=28.5 ms [1594976842.269238] no answer yet for icmp_seq=15 [1594976842.301450] 64 bytes from 2a04:4e42:600::323: icmp_seq=16 ttl=59 time=31.8 ms [1594976843.312998] 64 bytes from 2a04:4e42:600::323: icmp_seq=17 ttl=59 time=39.8 ms [1594976844.314228] 64 bytes from 2a04:4e42:600::323: icmp_seq=18 ttl=59 time=35.7 ms [1594976845.315518] 64 bytes from 2a04:4e42:600::323: icmp_seq=19 ttl=59 time=35.1 ms [1594976846.321706] 64 bytes from 2a04:4e42:600::323: icmp_seq=20 ttl=59 time=35.4 ms --- 2a04:4e42:600::323 ping statistics --- 20 packets transmitted, 19 received, 5% packet loss, time 19074ms rtt min/avg/max/mdev = 28.150/33.534/39.843/3.489 ms jc-1.17.3/tests/fixtures/centos-7.7/ping6-ip-O-p-streaming.json000066400000000000000000000107261415226333200237710ustar00rootroot00000000000000[{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":1,"ttl":59,"time_ms":27.9,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":2,"ttl":59,"time_ms":28.4,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":3,"ttl":59,"time_ms":36.0,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":4,"ttl":59,"time_ms":28.5,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":5,"ttl":59,"time_ms":35.8,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":6,"ttl":59,"time_ms":34.4,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":7,"ttl":59,"time_ms":30.7,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":8,"ttl":59,"time_ms":28.5,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":9,"ttl":59,"time_ms":36.5,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":10,"ttl":59,"time_ms":36.3,"duplicate":false},{"type":"timeout","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"icmp_seq":11},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":12,"ttl":59,"time_ms":37.4,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":13,"ttl":59,"time_ms":30.7,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":14,"ttl":59,"time_ms":36.5,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":15,"ttl":59,"time_ms":35.4,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":16,"ttl":59,"time_ms":36.3,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":17,"ttl":59,"time_ms":37.5,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":18,"ttl":59,"time_ms":36.2,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":19,"ttl":59,"time_ms":27.0,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":20,"ttl":59,"time_ms":38.1,"duplicate":false},{"type":"summary","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","packets_transmitted":20,"packets_received":19,"packet_loss_percent":5.0,"duplicates":0,"time_ms":19067.0,"round_trip_ms_min":27.064,"round_trip_ms_avg":33.626,"round_trip_ms_max":38.146,"round_trip_ms_stddev":3.803}] jc-1.17.3/tests/fixtures/centos-7.7/ping6-ip-O-p-unparsable.json000066400000000000000000000055531415226333200241360ustar00rootroot00000000000000{"destination_ip":"2a04:4e42:600::323","data_bytes":56,"pattern":"0xabcd","destination":"2a04:4e42:600::323","packets_transmitted":20,"packets_received":19,"packet_loss_percent":5.0,"duplicates":0,"time_ms":19067.0,"round_trip_ms_min":27.064,"round_trip_ms_avg":33.626,"round_trip_ms_max":38.146,"round_trip_ms_stddev":3.803,"responses":[{"type":"unparsable_line","unparsed_line":"64 bytes from 2a04:4e42:600::323: strange error"},{"type":"reply","timestamp":null,"bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":2,"ttl":59,"time_ms":28.4,"duplicate":false},{"type":"reply","timestamp":null,"bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":3,"ttl":59,"time_ms":36.0,"duplicate":false},{"type":"reply","timestamp":null,"bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":4,"ttl":59,"time_ms":28.5,"duplicate":false},{"type":"reply","timestamp":null,"bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":5,"ttl":59,"time_ms":35.8,"duplicate":false},{"type":"reply","timestamp":null,"bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":6,"ttl":59,"time_ms":34.4,"duplicate":false},{"type":"reply","timestamp":null,"bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":7,"ttl":59,"time_ms":30.7,"duplicate":false},{"type":"reply","timestamp":null,"bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":8,"ttl":59,"time_ms":28.5,"duplicate":false},{"type":"reply","timestamp":null,"bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":9,"ttl":59,"time_ms":36.5,"duplicate":false},{"type":"reply","timestamp":null,"bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":10,"ttl":59,"time_ms":36.3,"duplicate":false},{"type":"timeout","timestamp":null,"icmp_seq":11},{"type":"reply","timestamp":null,"bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":12,"ttl":59,"time_ms":37.4,"duplicate":false},{"type":"reply","timestamp":null,"bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":13,"ttl":59,"time_ms":30.7,"duplicate":false},{"type":"reply","timestamp":null,"bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":14,"ttl":59,"time_ms":36.5,"duplicate":false},{"type":"reply","timestamp":null,"bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":15,"ttl":59,"time_ms":35.4,"duplicate":false},{"type":"reply","timestamp":null,"bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":16,"ttl":59,"time_ms":36.3,"duplicate":false},{"type":"reply","timestamp":null,"bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":17,"ttl":59,"time_ms":37.5,"duplicate":false},{"type":"reply","timestamp":null,"bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":18,"ttl":59,"time_ms":36.2,"duplicate":false},{"type":"reply","timestamp":null,"bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":19,"ttl":59,"time_ms":27.0,"duplicate":false},{"type":"reply","timestamp":null,"bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":20,"ttl":59,"time_ms":38.1,"duplicate":false}]} jc-1.17.3/tests/fixtures/centos-7.7/ping6-ip-O-p-unparsable.out000066400000000000000000000027521415226333200237720ustar00rootroot00000000000000PATTERN: 0xabcd PING 2a04:4e42:600::323(2a04:4e42:600::323) 56 data bytes 64 bytes from 2a04:4e42:600::323: strange error 64 bytes from 2a04:4e42:600::323: icmp_seq=2 ttl=59 time=28.4 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=3 ttl=59 time=36.0 ms strange error here 64 bytes from 2a04:4e42:600::323: icmp_seq=4 ttl=59 time=28.5 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=5 ttl=59 time=35.8 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=6 ttl=59 time=34.4 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=7 ttl=59 time=30.7 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=8 ttl=59 time=28.5 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=9 ttl=59 time=36.5 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=10 ttl=59 time=36.3 ms no answer yet for icmp_seq=11 64 bytes from 2a04:4e42:600::323: icmp_seq=12 ttl=59 time=37.4 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=13 ttl=59 time=30.7 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=14 ttl=59 time=36.5 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=15 ttl=59 time=35.4 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=16 ttl=59 time=36.3 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=17 ttl=59 time=37.5 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=18 ttl=59 time=36.2 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=19 ttl=59 time=27.0 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=20 ttl=59 time=38.1 ms --- 2a04:4e42:600::323 ping statistics --- 20 packets transmitted, 19 received, 5% packet loss, time 19067ms rtt min/avg/max/mdev = 27.064/33.626/38.146/3.803 ms jc-1.17.3/tests/fixtures/centos-7.7/ping6-ip-O-p.json000066400000000000000000000063451415226333200220040ustar00rootroot00000000000000{"destination_ip": "2a04:4e42:600::323", "data_bytes": 56, "pattern": "0xabcd", "destination": "2a04:4e42:600::323", "packets_transmitted": 20, "packets_received": 19, "packet_loss_percent": 5.0, "duplicates": 0, "time_ms": 19067.0, "round_trip_ms_min": 27.064, "round_trip_ms_avg": 33.626, "round_trip_ms_max": 38.146, "round_trip_ms_stddev": 3.803, "responses": [{"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 1, "ttl": 59, "time_ms": 27.9, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 2, "ttl": 59, "time_ms": 28.4, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 3, "ttl": 59, "time_ms": 36.0, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 4, "ttl": 59, "time_ms": 28.5, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 5, "ttl": 59, "time_ms": 35.8, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 6, "ttl": 59, "time_ms": 34.4, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 7, "ttl": 59, "time_ms": 30.7, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 8, "ttl": 59, "time_ms": 28.5, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 9, "ttl": 59, "time_ms": 36.5, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 10, "ttl": 59, "time_ms": 36.3, "duplicate": false}, {"type": "timeout", "timestamp": null, "icmp_seq": 11}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 12, "ttl": 59, "time_ms": 37.4, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 13, "ttl": 59, "time_ms": 30.7, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 14, "ttl": 59, "time_ms": 36.5, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 15, "ttl": 59, "time_ms": 35.4, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 16, "ttl": 59, "time_ms": 36.3, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 17, "ttl": 59, "time_ms": 37.5, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 18, "ttl": 59, "time_ms": 36.2, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 19, "ttl": 59, "time_ms": 27.0, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 20, "ttl": 59, "time_ms": 38.1, "duplicate": false}]} jc-1.17.3/tests/fixtures/centos-7.7/ping6-ip-O-p.out000066400000000000000000000027501415226333200216360ustar00rootroot00000000000000PATTERN: 0xabcd PING 2a04:4e42:600::323(2a04:4e42:600::323) 56 data bytes 64 bytes from 2a04:4e42:600::323: icmp_seq=1 ttl=59 time=27.9 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=2 ttl=59 time=28.4 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=3 ttl=59 time=36.0 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=4 ttl=59 time=28.5 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=5 ttl=59 time=35.8 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=6 ttl=59 time=34.4 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=7 ttl=59 time=30.7 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=8 ttl=59 time=28.5 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=9 ttl=59 time=36.5 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=10 ttl=59 time=36.3 ms no answer yet for icmp_seq=11 64 bytes from 2a04:4e42:600::323: icmp_seq=12 ttl=59 time=37.4 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=13 ttl=59 time=30.7 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=14 ttl=59 time=36.5 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=15 ttl=59 time=35.4 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=16 ttl=59 time=36.3 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=17 ttl=59 time=37.5 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=18 ttl=59 time=36.2 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=19 ttl=59 time=27.0 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=20 ttl=59 time=38.1 ms --- 2a04:4e42:600::323 ping statistics --- 20 packets transmitted, 19 received, 5% packet loss, time 19067ms rtt min/avg/max/mdev = 27.064/33.626/38.146/3.803 ms jc-1.17.3/tests/fixtures/centos-7.7/ping6-ip-dup-streaming.json000066400000000000000000000043501415226333200241220ustar00rootroot00000000000000[{"type":"reply","destination_ip":"ff02::1%ens33","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"fe80::c48:5896:526d:81ba%ens33","icmp_seq":1,"ttl":64,"time_ms":0.245,"duplicate":false},{"type":"reply","destination_ip":"ff02::1%ens33","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"fe80::feae:34ff:fea1:3a80%ens33","icmp_seq":1,"ttl":64,"time_ms":3.65,"duplicate":true},{"type":"reply","destination_ip":"ff02::1%ens33","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"fe80::c48:5896:526d:81ba%ens33","icmp_seq":2,"ttl":64,"time_ms":0.329,"duplicate":false},{"type":"reply","destination_ip":"ff02::1%ens33","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"fe80::feae:34ff:fea1:3a80%ens33","icmp_seq":2,"ttl":64,"time_ms":11.7,"duplicate":true},{"type":"reply","destination_ip":"ff02::1%ens33","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"fe80::c48:5896:526d:81ba%ens33","icmp_seq":3,"ttl":64,"time_ms":0.592,"duplicate":false},{"type":"reply","destination_ip":"ff02::1%ens33","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"fe80::feae:34ff:fea1:3a80%ens33","icmp_seq":3,"ttl":64,"time_ms":12.3,"duplicate":true},{"type":"reply","destination_ip":"ff02::1%ens33","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"fe80::c48:5896:526d:81ba%ens33","icmp_seq":4,"ttl":64,"time_ms":0.51,"duplicate":false},{"type":"reply","destination_ip":"ff02::1%ens33","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"fe80::feae:34ff:fea1:3a80%ens33","icmp_seq":4,"ttl":64,"time_ms":12.5,"duplicate":true},{"type":"reply","destination_ip":"ff02::1%ens33","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"fe80::c48:5896:526d:81ba%ens33","icmp_seq":5,"ttl":64,"time_ms":0.538,"duplicate":false},{"type":"summary","destination_ip":"ff02::1%ens33","sent_bytes":56,"pattern":null,"packets_transmitted":5,"packets_received":5,"packet_loss_percent":0.0,"duplicates":4,"time_ms":4017.0,"round_trip_ms_min":0.245,"round_trip_ms_avg":4.726,"round_trip_ms_max":12.568,"round_trip_ms_stddev":5.395}] jc-1.17.3/tests/fixtures/centos-7.7/ping6-ip-dup.json000066400000000000000000000034321415226333200221330ustar00rootroot00000000000000{"destination_ip": "ff02::1%ens33", "data_bytes": 56, "pattern": null, "destination": "ff02::1%ens33", "packets_transmitted": 5, "packets_received": 5, "packet_loss_percent": 0.0, "duplicates": 4, "time_ms": 4017.0, "round_trip_ms_min": 0.245, "round_trip_ms_avg": 4.726, "round_trip_ms_max": 12.568, "round_trip_ms_stddev": 5.395, "responses": [{"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "fe80::c48:5896:526d:81ba%ens33", "icmp_seq": 1, "ttl": 64, "time_ms": 0.245, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "fe80::feae:34ff:fea1:3a80%ens33", "icmp_seq": 1, "ttl": 64, "time_ms": 3.65, "duplicate": true}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "fe80::c48:5896:526d:81ba%ens33", "icmp_seq": 2, "ttl": 64, "time_ms": 0.329, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "fe80::feae:34ff:fea1:3a80%ens33", "icmp_seq": 2, "ttl": 64, "time_ms": 11.7, "duplicate": true}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "fe80::c48:5896:526d:81ba%ens33", "icmp_seq": 3, "ttl": 64, "time_ms": 0.592, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "fe80::feae:34ff:fea1:3a80%ens33", "icmp_seq": 3, "ttl": 64, "time_ms": 12.3, "duplicate": true}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "fe80::c48:5896:526d:81ba%ens33", "icmp_seq": 4, "ttl": 64, "time_ms": 0.51, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "fe80::feae:34ff:fea1:3a80%ens33", "icmp_seq": 4, "ttl": 64, "time_ms": 12.5, "duplicate": true}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "fe80::c48:5896:526d:81ba%ens33", "icmp_seq": 5, "ttl": 64, "time_ms": 0.538, "duplicate": false}]} jc-1.17.3/tests/fixtures/centos-7.7/ping6-ip-dup.out000066400000000000000000000016621415226333200217740ustar00rootroot00000000000000PING ff02::1%ens33(ff02::1%ens33) 56 data bytes 64 bytes from fe80::c48:5896:526d:81ba%ens33: icmp_seq=1 ttl=64 time=0.245 ms 64 bytes from fe80::feae:34ff:fea1:3a80%ens33: icmp_seq=1 ttl=64 time=3.65 ms (DUP!) 64 bytes from fe80::c48:5896:526d:81ba%ens33: icmp_seq=2 ttl=64 time=0.329 ms 64 bytes from fe80::feae:34ff:fea1:3a80%ens33: icmp_seq=2 ttl=64 time=11.7 ms (DUP!) 64 bytes from fe80::c48:5896:526d:81ba%ens33: icmp_seq=3 ttl=64 time=0.592 ms 64 bytes from fe80::feae:34ff:fea1:3a80%ens33: icmp_seq=3 ttl=64 time=12.3 ms (DUP!) 64 bytes from fe80::c48:5896:526d:81ba%ens33: icmp_seq=4 ttl=64 time=0.510 ms 64 bytes from fe80::feae:34ff:fea1:3a80%ens33: icmp_seq=4 ttl=64 time=12.5 ms (DUP!) 64 bytes from fe80::c48:5896:526d:81ba%ens33: icmp_seq=5 ttl=64 time=0.538 ms --- ff02::1%ens33 ping statistics --- 5 packets transmitted, 5 received, +4 duplicates, 0% packet loss, time 4017ms rtt min/avg/max/mdev = 0.245/4.726/12.568/5.395 ms jc-1.17.3/tests/fixtures/centos-7.7/pip-list.json000066400000000000000000000016111415226333200214520ustar00rootroot00000000000000[{"package": "bleach", "version": "3.1.0"}, {"package": "certifi", "version": "2019.9.11"}, {"package": "chardet", "version": "3.0.4"}, {"package": "docutils", "version": "0.15.2"}, {"package": "idna", "version": "2.8"}, {"package": "ifconfig-parser", "version": "0.0.5"}, {"package": "jc", "version": "1.5.1"}, {"package": "pip", "version": "19.3.1"}, {"package": "pkginfo", "version": "1.5.0.1"}, {"package": "Pygments", "version": "2.4.2"}, {"package": "readme-renderer", "version": "24.0"}, {"package": "requests", "version": "2.22.0"}, {"package": "requests-toolbelt", "version": "0.9.1"}, {"package": "setuptools", "version": "39.2.0"}, {"package": "six", "version": "1.12.0"}, {"package": "tqdm", "version": "4.36.1"}, {"package": "twine", "version": "2.0.0"}, {"package": "urllib3", "version": "1.25.6"}, {"package": "webencodings", "version": "0.5.1"}, {"package": "wheel", "version": "0.33.6"}] jc-1.17.3/tests/fixtures/centos-7.7/pip-list.out000066400000000000000000000011501415226333200213060ustar00rootroot00000000000000Package Version ----------------- --------- bleach 3.1.0 certifi 2019.9.11 chardet 3.0.4 docutils 0.15.2 idna 2.8 ifconfig-parser 0.0.5 jc 1.5.1 pip 19.3.1 pkginfo 1.5.0.1 Pygments 2.4.2 readme-renderer 24.0 requests 2.22.0 requests-toolbelt 0.9.1 setuptools 39.2.0 six 1.12.0 tqdm 4.36.1 twine 2.0.0 urllib3 1.25.6 webencodings 0.5.1 wheel 0.33.6 jc-1.17.3/tests/fixtures/centos-7.7/pip-show.json000066400000000000000000000021511415226333200214570ustar00rootroot00000000000000[{"name": "setuptools", "version": "39.2.0", "summary": "Easily download, build, install, upgrade, and uninstall Python packages", "home_page": "https://github.com/pypa/setuptools", "author": "Python Packaging Authority", "author_email": "distutils-sig@python.org", "license": "UNKNOWN", "location": "/usr/lib/python3.6/site-packages", "requires": null, "required_by": "twine"}, {"name": "pkginfo", "version": "1.5.0.1", "summary": "Query metadatdata from sdists / bdists / installed packages.", "home_page": "https://code.launchpad.net/~tseaver/pkginfo/trunk", "author": "Tres Seaver, Agendaless Consulting", "author_email": "tseaver@agendaless.com", "license": "MIT", "location": "/home/kbrazil/.local/lib/python3.6/site-packages", "requires": null, "required_by": "twine"}, {"name": "six", "version": "1.12.0", "summary": "Python 2 and 3 compatibility utilities", "home_page": "https://github.com/benjaminp/six", "author": "Benjamin Peterson", "author_email": "benjamin@python.org", "license": "MIT", "location": "/home/kbrazil/.local/lib/python3.6/site-packages", "requires": null, "required_by": "readme-renderer, bleach"}] jc-1.17.3/tests/fixtures/centos-7.7/pip-show.out000066400000000000000000000017161415226333200213230ustar00rootroot00000000000000Name: setuptools Version: 39.2.0 Summary: Easily download, build, install, upgrade, and uninstall Python packages Home-page: https://github.com/pypa/setuptools Author: Python Packaging Authority Author-email: distutils-sig@python.org License: UNKNOWN Location: /usr/lib/python3.6/site-packages Requires: Required-by: twine --- Name: pkginfo Version: 1.5.0.1 Summary: Query metadatdata from sdists / bdists / installed packages. Home-page: https://code.launchpad.net/~tseaver/pkginfo/trunk Author: Tres Seaver, Agendaless Consulting Author-email: tseaver@agendaless.com License: MIT Location: /home/kbrazil/.local/lib/python3.6/site-packages Requires: Required-by: twine --- Name: six Version: 1.12.0 Summary: Python 2 and 3 compatibility utilities Home-page: https://github.com/benjaminp/six Author: Benjamin Peterson Author-email: benjamin@python.org License: MIT Location: /home/kbrazil/.local/lib/python3.6/site-packages Requires: Required-by: readme-renderer, bleach jc-1.17.3/tests/fixtures/centos-7.7/ps-axu.json000066400000000000000000000507101415226333200211320ustar00rootroot00000000000000[{"user": "root", "pid": 1, "cpu_percent": 0.0, "mem_percent": 0.1, "vsz": 128068, "rss": 6676, "tty": null, "stat": "Ss", "start": "Oct25", "time": "0:03", "command": "/usr/lib/systemd/systemd --switched-root --system --deserialize 22"}, {"user": "root", "pid": 2, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct25", "time": "0:00", "command": "[kthreadd]"}, {"user": "root", "pid": 4, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[kworker/0:0H]"}, {"user": "root", "pid": 5, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct25", "time": "0:00", "command": "[kworker/u256:0]"}, {"user": "root", "pid": 6, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "R", "start": "Oct25", "time": "0:00", "command": "[ksoftirqd/0]"}, {"user": "root", "pid": 7, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct25", "time": "0:00", "command": "[migration/0]"}, {"user": "root", "pid": 8, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct25", "time": "0:00", "command": "[rcu_bh]"}, {"user": "root", "pid": 9, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "R", "start": "Oct25", "time": "0:01", "command": "[rcu_sched]"}, {"user": "root", "pid": 10, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[lru-add-drain]"}, {"user": "root", "pid": 11, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct25", "time": "0:00", "command": "[watchdog/0]"}, {"user": "root", "pid": 13, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct25", "time": "0:00", "command": "[kdevtmpfs]"}, {"user": "root", "pid": 14, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[netns]"}, {"user": "root", "pid": 15, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct25", "time": "0:00", "command": "[khungtaskd]"}, {"user": "root", "pid": 16, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[writeback]"}, {"user": "root", "pid": 17, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[kintegrityd]"}, {"user": "root", "pid": 18, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[bioset]"}, {"user": "root", "pid": 19, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[bioset]"}, {"user": "root", "pid": 20, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[bioset]"}, {"user": "root", "pid": 21, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[kblockd]"}, {"user": "root", "pid": 22, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[md]"}, {"user": "root", "pid": 23, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[edac-poller]"}, {"user": "root", "pid": 24, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[watchdogd]"}, {"user": "root", "pid": 30, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct25", "time": "0:00", "command": "[kswapd0]"}, {"user": "root", "pid": 31, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "SN", "start": "Oct25", "time": "0:00", "command": "[ksmd]"}, {"user": "root", "pid": 32, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "SN", "start": "Oct25", "time": "0:00", "command": "[khugepaged]"}, {"user": "root", "pid": 33, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[crypto]"}, {"user": "root", "pid": 41, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[kthrotld]"}, {"user": "root", "pid": 42, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct25", "time": "0:01", "command": "[kworker/u256:1]"}, {"user": "root", "pid": 43, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[kmpath_rdacd]"}, {"user": "root", "pid": 44, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[kaluad]"}, {"user": "root", "pid": 45, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[kpsmoused]"}, {"user": "root", "pid": 47, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[ipv6_addrconf]"}, {"user": "root", "pid": 60, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[deferwq]"}, {"user": "root", "pid": 95, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct25", "time": "0:00", "command": "[kauditd]"}, {"user": "root", "pid": 272, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[mpt_poll_0]"}, {"user": "root", "pid": 273, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[mpt/0]"}, {"user": "root", "pid": 274, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[ata_sff]"}, {"user": "root", "pid": 275, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[nfit]"}, {"user": "root", "pid": 291, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct25", "time": "0:00", "command": "[scsi_eh_0]"}, {"user": "root", "pid": 295, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[scsi_tmf_0]"}, {"user": "root", "pid": 330, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct25", "time": "0:00", "command": "[scsi_eh_1]"}, {"user": "root", "pid": 331, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[scsi_tmf_1]"}, {"user": "root", "pid": 339, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct25", "time": "0:00", "command": "[scsi_eh_2]"}, {"user": "root", "pid": 346, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[scsi_tmf_2]"}, {"user": "root", "pid": 357, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct25", "time": "0:00", "command": "[irq/16-vmwgfx]"}, {"user": "root", "pid": 358, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[ttm_swap]"}, {"user": "root", "pid": 431, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[kdmflush]"}, {"user": "root", "pid": 432, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[bioset]"}, {"user": "root", "pid": 442, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[kdmflush]"}, {"user": "root", "pid": 443, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[bioset]"}, {"user": "root", "pid": 455, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[bioset]"}, {"user": "root", "pid": 456, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[xfsalloc]"}, {"user": "root", "pid": 457, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[xfs_mru_cache]"}, {"user": "root", "pid": 458, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[xfs-buf/dm-0]"}, {"user": "root", "pid": 459, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[xfs-data/dm-0]"}, {"user": "root", "pid": 460, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[xfs-conv/dm-0]"}, {"user": "root", "pid": 461, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[xfs-cil/dm-0]"}, {"user": "root", "pid": 462, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[xfs-reclaim/dm-]"}, {"user": "root", "pid": 463, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[xfs-log/dm-0]"}, {"user": "root", "pid": 464, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[xfs-eofblocks/d]"}, {"user": "root", "pid": 465, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct25", "time": "0:05", "command": "[xfsaild/dm-0]"}, {"user": "root", "pid": 466, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[kworker/0:1H]"}, {"user": "root", "pid": 544, "cpu_percent": 0.0, "mem_percent": 0.1, "vsz": 39080, "rss": 4636, "tty": null, "stat": "Ss", "start": "Oct25", "time": "0:01", "command": "/usr/lib/systemd/systemd-journald"}, {"user": "root", "pid": 560, "cpu_percent": 0.0, "mem_percent": 0.1, "vsz": 127392, "rss": 4132, "tty": null, "stat": "Ss", "start": "Oct25", "time": "0:00", "command": "/usr/sbin/lvmetad -f"}, {"user": "root", "pid": 577, "cpu_percent": 0.0, "mem_percent": 0.1, "vsz": 48124, "rss": 5324, "tty": null, "stat": "Ss", "start": "Oct25", "time": "0:00", "command": "/usr/lib/systemd/systemd-udevd"}, {"user": "root", "pid": 629, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[xfs-buf/sda1]"}, {"user": "root", "pid": 638, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[xfs-data/sda1]"}, {"user": "root", "pid": 641, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[xfs-conv/sda1]"}, {"user": "root", "pid": 646, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[xfs-cil/sda1]"}, {"user": "root", "pid": 651, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[xfs-reclaim/sda]"}, {"user": "root", "pid": 654, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[xfs-log/sda1]"}, {"user": "root", "pid": 658, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[xfs-eofblocks/s]"}, {"user": "root", "pid": 667, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct25", "time": "0:00", "command": "[xfsaild/sda1]"}, {"user": "root", "pid": 675, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[kworker/u257:0]"}, {"user": "root", "pid": 677, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[hci0]"}, {"user": "root", "pid": 678, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[hci0]"}, {"user": "root", "pid": 681, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S<", "start": "Oct25", "time": "0:00", "command": "[kworker/u257:2]"}, {"user": "root", "pid": 756, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 55528, "rss": 888, "tty": null, "stat": "S","vendor":"CentOS","url":"http://www.gnu.org/software/make/","summary":"A GNU tool which simplifies the build process for users","description":"A GNU tool for controlling the generation of executables and other non-source files of a program from the program's source files. Make allows users to build and install packages without any significant knowledge about the details of the build process. The details about how the program should be built are provided for make in the program's makefile.","build_epoch":1565311645,"build_epoch_utc":null,"install_date_epoch":1571242902,"install_date_epoch_utc":null},{"name":"kbd-legacy","version":"1.15.5","release":"15.el7","architecture":"noarch","install_date":"Thu 15 Aug 2019 10:53:08 AM PDT","group":"System Environment/Base","size":503608,"license":"GPLv2+","signature":"RSA/SHA256, Mon 12 Nov 2018 07:17:49 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"kbd-1.15.5-15.el7.src.rpm","build_date":"Tue 30 Oct 2018 03:40:00 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://ftp.altlinux.org/pub/people/legion/kbd","summary":"Legacy data for kbd package","description":"The kbd-legacy package contains original keymaps for kbd package. Please note that kbd-legacy is not helpful without kbd.","build_epoch":1540939200,"build_epoch_utc":null,"install_date_epoch":1565891588,"install_date_epoch_utc":null},{"name":"libsmartcols","version":"2.23.2","release":"61.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:42 AM PDT","group":"Development/Libraries","size":168712,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:33:02 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"util-linux-2.23.2-61.el7.src.rpm","build_date":"Thu 08 Aug 2019 08:10:20 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://en.wikipedia.org/wiki/Util-linux","summary":"Formatting library for ls-like programs.","description":"This is library for ls-like terminal programs, part of util-linux.","build_epoch":1565320220,"build_epoch_utc":null,"install_date_epoch":1571242902,"install_date_epoch_utc":null},{"name":"ncurses-base","version":"5.9","release":"14.20130511.el7_4","architecture":"noarch","install_date":"Thu 15 Aug 2019 10:53:08 AM PDT","group":"System Environment/Base","size":223432,"license":"MIT","signature":"RSA/SHA256, Thu 07 Sep 2017 05:43:15 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"ncurses-5.9-14.20130511.el7_4.src.rpm","build_date":"Wed 06 Sep 2017 03:08:29 PM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://invisible-island.net/ncurses/ncurses.html","summary":"Descriptions of common terminals","description":"This package contains descriptions of common terminals. Other terminal descriptions are included in the ncurses-term package.","build_epoch":1504735709,"build_epoch_utc":null,"install_date_epoch":1565891588,"install_date_epoch_utc":null},{"name":"procps-ng","version":"3.3.10","release":"26.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:43 AM PDT","group":"Applications/System","size":759403,"license":"GPL+ and GPLv2 and GPLv2+ and GPLv3+ and LGPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:39:53 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"procps-ng-3.3.10-26.el7.src.rpm","build_date":"Thu 08 Aug 2019 06:55:50 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://sourceforge.net/projects/procps-ng/","summary":"System and process monitoring utilities","description":"The procps package contains a set of system utilities that provide system information. Procps includes ps, free, skill, pkill, pgrep, snice, tload, top, uptime, vmstat, w, watch and pwdx. The ps command displays a snapshot of running processes. The top command provides a repetitive update of the statuses of running processes. The free command displays the amounts of free and used memory on your system. The skill command sends a terminate command (or another specified signal) to a specified set of processes. The snice command is used to change the scheduling priority of specified processes. The tload command prints a graph of the current system load average to a specified tty. The uptime command displays the current time, how long the system has been running, how many users are logged on, and system load averages for the past one, five, and fifteen minutes. The w command displays a list of the users who are currently logged on and what they are running. The watch program watches a running program. The vmstat command displays virtual memory statistics about processes, memory, paging, block I/O, traps, and CPU activity. The pwdx command reports the current working directory of a process or processes.","build_epoch":1565315750,"build_epoch_utc":null,"install_date_epoch":1571242903,"install_date_epoch_utc":null},{"name":"postfix","epoch":2,"version":"2.10.1","release":"7.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:53 AM PDT","group":"System Environment/Daemons","size":12766329,"license":"IBM and GPLv2+","signature":"RSA/SHA256, Mon 12 Nov 2018 06:44:41 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"postfix-2.10.1-7.el7.src.rpm","build_date":"Tue 30 Oct 2018 09:50:35 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.postfix.org","summary":"Postfix Mail Transport Agent","description":"Postfix is a Mail Transport Agent (MTA), supporting LDAP, SMTP AUTH (SASL), TLS","build_epoch":1540918235,"build_epoch_utc":null,"install_date_epoch":1565891633,"install_date_epoch_utc":null},{"name":"kmod","version":"20","release":"25.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:44 AM PDT","group":"System Environment/Kernel","size":246109,"license":"GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:28:22 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"kmod-20-25.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:05:58 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary","summary":"Linux kernel module management utilities","description":"The kmod package provides various programs needed for automatic loading and unloading of modules under 2.6, 3.x, and later kernels, as well as other module management programs. Device drivers and filesystems are two examples of loaded and unloaded modules.","build_epoch":1565309158,"build_epoch_utc":null,"install_date_epoch":1571242904,"install_date_epoch_utc":null},{"name":"aic94xx-firmware","version":"30","release":"6.el7","architecture":"noarch","install_date":"Thu 15 Aug 2019 10:53:56 AM PDT","group":"System Environment/Kernel","size":30752,"license":"Redistributable, no modification permitted","signature":"RSA/SHA256, Thu 03 Jul 2014 05:34:22 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"aic94xx-firmware-30-6.el7.src.rpm","build_date":"Mon 09 Jun 2014 11:57:07 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.adaptec.com/en-US/speed/scsi/linux/aic94xx-seq-30-1_tar_gz.htm","summary":"Adaptec SAS 44300, 48300, 58300 Sequencer Firmware for AIC94xx driver","description":"Adaptec SAS 44300, 48300, 58300 Sequencer Firmware for Open-Source AIC94xx Driver.","build_epoch":1402383427,"build_epoch_utc":null,"install_date_epoch":1565891636,"install_date_epoch_utc":null},{"name":"basesystem","version":"10.0","release":"7.el7.centos","architecture":"noarch","install_date":"Thu 15 Aug 2019 10:53:12 AM PDT","group":"System Environment/Base","size":0,"license":"Public Domain","signature":"RSA/SHA256, Thu 03 Jul 2014 05:46:57 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"basesystem-10.0-7.el7.centos.src.rpm","build_date":"Fri 27 Jun 2014 03:37:10 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","summary":"The skeleton package which defines a simple CentOS Linux system","description":"Basesystem defines the components of a basic CentOS Linux system (for example, the package installation order to use during bootstrapping). Basesystem should be in every installation of a system, and it should never be removed.","build_epoch":1403865430,"build_epoch_utc":null,"install_date_epoch":1565891592,"install_date_epoch_utc":null},{"name":"elfutils-default-yama-scope","version":"0.176","release":"2.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:21:47 AM PDT","group":"Development/Tools","size":1810,"license":"GPLv2+ or LGPLv3+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:56:57 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"elfutils-0.176-2.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:16:25 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://elfutils.org/","summary":"Default yama attach scope sysctl setting","description":"Yama sysctl setting to enable default attach scope settings enabling programs to use ptrace attach, access to /proc/PID/{mem,personality,stack,syscall}, and the syscalls process_vm_readv and process_vm_writev which are used for interprocess services, communication and introspection (like synchronisation, signaling, debugging, tracing and profiling) of processes.","build_epoch":1565306185,"build_epoch_utc":null,"install_date_epoch":1571242907,"install_date_epoch_utc":null},{"name":"grub2-tools-minimal","epoch":1,"version":"2.02","release":"0.80.el7.centos","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:49 AM PDT","group":"System Environment/Base","size":686003,"license":"GPLv3+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:25:18 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"grub2-2.02-0.80.el7.centos.src.rpm","build_date":"Thu 08 Aug 2019 04:31:11 AM PDT","build_host":"kbuilder.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/grub/","summary":"Support tools for GRUB.","description":"The GRand Unified Bootloader (GRUB) is a highly configurable and customizable bootloader with modular architecture. It supports a rich variety of kernel formats, file systems, computer architectures and hardware devices. This subpackage provides tools for support of all platforms.","build_epoch":1565263871,"build_epoch_utc":null,"install_date_epoch":1571242909,"install_date_epoch_utc":null},{"name":"ncurses-libs","version":"5.9","release":"14.20130511.el7_4","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:16 AM PDT","group":"System Environment/Libraries","size":1028216,"license":"MIT","signature":"RSA/SHA256, Thu 07 Sep 2017 05:43:31 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"ncurses-5.9-14.20130511.el7_4.src.rpm","build_date":"Wed 06 Sep 2017 03:08:29 PM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://invisible-island.net/ncurses/ncurses.html","summary":"Ncurses libraries","description":"The curses library routines are a terminal-independent method of updating character screens with reasonable optimization. The ncurses (new curses) library is a freely distributable replacement for the discontinued 4.4 BSD classic curses library. This package contains the ncurses libraries.","build_epoch":1504735709,"build_epoch_utc":null,"install_date_epoch":1565891596,"install_date_epoch_utc":null},{"name":"dhcp-libs","epoch":12,"version":"4.2.5","release":"77.el7.centos","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:59 AM PDT","group":"System Environment/Base","size":149200,"license":"ISC","signature":"RSA/SHA256, Thu 22 Aug 2019 02:22:20 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"dhcp-4.2.5-77.el7.centos.src.rpm","build_date":"Thu 08 Aug 2019 04:10:22 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://isc.org/products/DHCP/","summary":"Shared libraries used by ISC dhcp client and server","description":"This package contains shared libraries used by ISC dhcp client and server","build_epoch":1565305822,"build_epoch_utc":null,"install_date_epoch":1571242919,"install_date_epoch_utc":null},{"name":"libffi","version":"3.0.13","release":"18.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:16 AM PDT","group":"System Environment/Libraries","size":47766,"license":"MIT and Public Domain","signature":"RSA/SHA256, Sun 20 Nov 2016 10:39:28 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"libffi-3.0.13-18.el7.src.rpm","build_date":"Sat 05 Nov 2016 09:30:28 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://sourceware.org/libffi","summary":"A portable foreign function interface library","description":"Compilers for high level languages generate code that follow certain conventions. These conventions are necessary, in part, for separate compilation to work. One such convention is the \"calling convention\". The calling convention is a set of assumptions made by the compiler about where function arguments will be found on entry to a function. A calling convention also specifies where the return value for a function is found. Some programs may not know at the time of compilation what arguments are to be passed to a function. For instance, an interpreter may be told at run-time about the number and types of arguments used to call a given function. `Libffi' can be used in such programs to provide a bridge from the interpreter program to compiled code. The `libffi' library provides a portable, high level programming interface to various calling conventions. This allows a programmer to call any function specified by a call interface description at run time. FFI stands for Foreign Function Interface. A foreign function interface is the popular name for the interface that allows code written in one language to call code written in another language. The `libffi' library really only provides the lowest, machine dependent layer of a fully featured foreign function interface. A layer must exist above `libffi' that handles type conversions for values passed between the two languages.","build_epoch":1478363428,"build_epoch_utc":null,"install_date_epoch":1565891596,"install_date_epoch_utc":null},{"name":"dhcp-common","epoch":12,"version":"4.2.5","release":"77.el7.centos","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:01 AM PDT","group":"System Environment/Base","size":245529,"license":"ISC","signature":"RSA/SHA256, Thu 22 Aug 2019 02:22:18 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"dhcp-4.2.5-77.el7.centos.src.rpm","build_date":"Thu 08 Aug 2019 04:10:22 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://isc.org/products/DHCP/","summary":"Common files used by ISC dhcp client and server","description":"DHCP (Dynamic Host Configuration Protocol) is a protocol which allows individual devices on an IP network to get their own network configuration information (IP address, subnetmask, broadcast address, etc.) from a DHCP server. The overall purpose of DHCP is to make it easier to administer a large network. This package provides common files used by dhcp and dhclient package.","build_epoch":1565305822,"build_epoch_utc":null,"install_date_epoch":1571242921,"install_date_epoch_utc":null},{"name":"pcre","version":"8.32","release":"17.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:16 AM PDT","group":"System Environment/Libraries","size":1475532,"license":"BSD","signature":"RSA/SHA256, Thu 10 Aug 2017 12:04:31 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"pcre-8.32-17.el7.src.rpm","build_date":"Tue 01 Aug 2017 08:08:12 PM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.pcre.org/","summary":"Perl-compatible regular expression library","just_provides_a_posix_calling_interface_to_pcre":"the regular expressions","description":"Perl-compatible regular expression library. PCRE has its own native API, but a set of \"wrapper\" functions that are based on the POSIX API are also supplied in the library libpcreposix. Note that this just provides a POSIX calling interface to PCRE: the regular expressions themselves still follow Perl syntax and semantics. The header file for the POSIX-style functions is called pcreposix.h.","build_epoch":1501643292,"build_epoch_utc":null,"install_date_epoch":1565891596,"install_date_epoch_utc":null},{"name":"grub2-tools-extra","epoch":1,"version":"2.02","release":"0.80.el7.centos","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:14 AM PDT","group":"System Environment/Base","size":6342188,"license":"GPLv3+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:25:17 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"grub2-2.02-0.80.el7.centos.src.rpm","build_date":"Thu 08 Aug 2019 04:31:11 AM PDT","build_host":"kbuilder.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/grub/","summary":"Support tools for GRUB.","description":"The GRand Unified Bootloader (GRUB) is a highly configurable and customizable bootloader with modular architecture. It supports a rich variety of kernel formats, file systems, computer architectures and hardware devices. This subpackage provides tools for support of all platforms.","build_epoch":1565263871,"build_epoch_utc":null,"install_date_epoch":1571242934,"install_date_epoch_utc":null},{"name":"p11-kit","version":"0.23.5","release":"3.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:16 AM PDT","group":"Unspecified","size":1337825,"license":"BSD","signature":"RSA/SHA256, Thu 10 Aug 2017 11:44:31 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"p11-kit-0.23.5-3.el7.src.rpm","build_date":"Fri 04 Aug 2017 04:37:00 PM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://p11-glue.freedesktop.org/p11-kit.html","summary":"Library for loading and sharing PKCS#11 modules","description":"p11-kit provides a way to load and enumerate PKCS#11 modules, as well as a standard configuration setup for installing PKCS#11 modules in such a way that they're discoverable.","build_epoch":1501889820,"build_epoch_utc":null,"install_date_epoch":1565891596,"install_date_epoch_utc":null},{"name":"lvm2","epoch":7,"version":"2.02.185","release":"2.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:15 AM PDT","group":"System Environment/Base","size":3117026,"license":"GPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:34:51 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"lvm2-2.02.185-2.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:44:27 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://sources.redhat.com/lvm2","summary":"Userland logical volume management tools","description":"LVM2 includes all of the support for handling read/write operations on physical volumes (hard disks, RAID-Systems, magneto optical, etc., multiple devices (MD), see mdadm(8) or even loop devices, see losetup(8)), creating volume groups (kind of virtual disks) from one or more physical volumes and creating one or more logical volumes (kind of logical partitions) in volume groups.","build_epoch":1565311467,"build_epoch_utc":null,"install_date_epoch":1571242935,"install_date_epoch_utc":null},{"name":"libtasn1","version":"4.10","release":"1.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:16 AM PDT","group":"System Environment/Libraries","size":424486,"license":"GPLv3+ and LGPLv2+","signature":"RSA/SHA256, Thu 10 Aug 2017 10:58:43 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libtasn1-4.10-1.el7.src.rpm","build_date":"Tue 01 Aug 2017 05:21:37 PM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/libtasn1/","summary":"The ASN.1 library used in GNUTLS","description":"A library that provides Abstract Syntax Notation One (ASN.1, as specified by the X.680 ITU-T recommendation) parsing and structures management, and Distinguished Encoding Rules (DER, as per X.690) encoding and decoding functions.","build_epoch":1501633297,"build_epoch_utc":null,"install_date_epoch":1565891596,"install_date_epoch_utc":null},{"name":"systemd-sysv","version":"219","release":"67.el7_7.1","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:16 AM PDT","group":"Unspecified","size":3979,"license":"LGPLv2+","signature":"RSA/SHA256, Sat 14 Sep 2019 04:50:41 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"systemd-219-67.el7_7.1.src.rpm","build_date":"Fri 13 Sep 2019 11:21:31 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.freedesktop.org/wiki/Software/systemd","summary":"SysV tools for systemd","description":"SysV compatibility tools for systemd","build_epoch":1568398891,"build_epoch_utc":null,"install_date_epoch":1571242936,"install_date_epoch_utc":null},{"name":"docker-common","epoch":2,"version":"1.13.1","release":"103.git7f2769b.el7.centos","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:26 AM PDT","group":"Unspecified","size":4481,"license":"ASL 2.0","signature":"RSA/SHA256, Mon 16 Sep 2019 05:33:25 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"docker-1.13.1-103.git7f2769b.el7.centos.src.rpm","build_date":"Sun 15 Sep 2019 07:07:52 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/docker/docker","summary":"Common files for docker and docker-latest","description":"This package contains the common files /usr/bin/docker which will point to /usr/bin/docker-current or /usr/bin/docker-latest configurable via /etc/sysconfig/docker","build_epoch":1568556472,"build_epoch_utc":null,"install_date_epoch":1571242946,"install_date_epoch_utc":null},{"name":"plymouth","version":"0.8.9","release":"0.32.20140113.el7.centos","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:27 AM PDT","group":"System Environment/Base","size":233304,"license":"GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:39:19 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"plymouth-0.8.9-0.32.20140113.el7.centos.src.rpm","build_date":"Thu 08 Aug 2019 04:51:46 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.freedesktop.org/wiki/Software/Plymouth","summary":"Graphical Boot Animation and Logger","description":"Plymouth provides an attractive graphical boot animation in place of the text messages that normally get shown. Text messages are instead redirected to a log file for viewing after boot.","build_epoch":1565265106,"build_epoch_utc":null,"install_date_epoch":1571242947,"install_date_epoch_utc":null},{"name":"irqbalance","epoch":3,"version":"1.0.7","release":"12.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:45 AM PDT","group":"System Environment/Base","size":71212,"license":"GPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:26:22 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"irqbalance-1.0.7-12.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:57:59 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/Irqbalance/irqbalance","summary":"IRQ balancing daemon","description":"irqbalance is a daemon that evenly distributes IRQ load across multiple CPUs for enhanced performance.","build_epoch":1565308679,"build_epoch_utc":null,"install_date_epoch":1571242965,"install_date_epoch_utc":null},{"name":"libcap-ng","version":"0.7.5","release":"4.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:18 AM PDT","group":"System Environment/Libraries","size":50510,"license":"LGPLv2+","signature":"RSA/SHA256, Wed 25 Nov 2015 06:52:00 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"libcap-ng-0.7.5-4.el7.src.rpm","build_date":"Thu 19 Nov 2015 10:38:30 PM PST","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://people.redhat.com/sgrubb/libcap-ng","summary":"An alternate posix capabilities library","description":"Libcap-ng is a library that makes using posix capabilities easier","build_epoch":1448001510,"build_epoch_utc":null,"install_date_epoch":1565891598,"install_date_epoch_utc":null},{"name":"kexec-tools","version":"2.0.15","release":"33.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:49 AM PDT","group":"Applications/System","size":779247,"license":"GPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:28:13 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"kexec-tools-2.0.15-33.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:41:23 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","summary":"The kexec/kdump userspace component.","description":"kexec-tools provides /sbin/kexec binary that facilitates a new kernel to boot using the kernel's kexec feature either on a normal or a panic reboot. This package contains the /sbin/kexec binary and ancillary utilities that together form the userspace component of the kernel's kexec feature.","build_epoch":1565264483,"build_epoch_utc":null,"install_date_epoch":1571242969,"install_date_epoch_utc":null},{"name":"python-backports","version":"1.0","release":"8.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 12:00:19 PM PDT","group":"Unspecified","size":638,"license":"Public Domain","signature":"RSA/SHA256, Sat 14 Mar 2015 01:30:55 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"python-backports-1.0-8.el7.src.rpm","build_date":"Thu 05 Mar 2015 09:10:25 PM PST","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://pypi.python.org/pypi/backports","summary":"Namespace for backported Python features","description":"The backports namespace is a namespace reserved for features backported from the Python standard library to older versions of Python 2. Packages that exist in the backports namespace in Fedora should not provide their own backports/__init__.py, but instead require this package. Backports to earlier versions of Python 3, if they exist, do not need this package because of changes made in Python 3.3 in PEP 420 (http://www.python.org/dev/peps/pep-0420/).","build_epoch":1425618625,"build_epoch_utc":null,"install_date_epoch":1565895619,"install_date_epoch_utc":null},{"name":"cpio","version":"2.11","release":"27.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:18 AM PDT","group":"Applications/Archiving","size":689335,"license":"GPLv3+","signature":"RSA/SHA256, Wed 25 Apr 2018 03:56:03 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"cpio-2.11-27.el7.src.rpm","build_date":"Tue 10 Apr 2018 04:51:52 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/cpio/","summary":"A GNU archiving program","tape,_or_a_pipe.__gnu_cpio_supports_the_following_archive_formats":"binary,","description":"GNU cpio copies files into or out of a cpio or tar archive. Archives are files which contain a collection of other files plus information about them, such as their file name, owner, timestamps, and access permissions. The archive can be another file on the disk, a magnetic tape, or a pipe. GNU cpio supports the following archive formats: binary, old ASCII, new ASCII, crc, HPUX binary, HPUX old ASCII, old tar and POSIX.1 tar. By default, cpio creates binary format archives, so that they are compatible with older cpio programs. When it is extracting files from archives, cpio automatically recognizes which kind of archive it is reading and can read archives created on machines with a different byte-order. Install cpio if you need a program to manage file archives.","build_epoch":1523404312,"build_epoch_utc":null,"install_date_epoch":1565891598,"install_date_epoch_utc":null},{"name":"NetworkManager-tui","epoch":1,"version":"1.18.0","release":"5.el7_7.1","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:49 AM PDT","group":"System Environment/Base","size":659215,"license":"GPLv2+","signature":"RSA/SHA256, Sat 14 Sep 2019 04:49:32 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"NetworkManager-1.18.0-5.el7_7.1.src.rpm","build_date":"Fri 13 Sep 2019 11:05:30 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnome.org/projects/NetworkManager/","summary":"NetworkManager curses-based UI","description":"This adds a curses-based \"TUI\" (Text User Interface) to NetworkManager, to allow performing some of the operations supported by nm-connection-editor and nm-applet in a non-graphical environment.","build_epoch":1568397930,"build_epoch_utc":null,"install_date_epoch":1571242969,"install_date_epoch_utc":null},{"name":"oci-register-machine","epoch":1,"version":"0","release":"6.git2b44233.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 12:00:20 PM PDT","group":"Unspecified","size":3372952,"license":"ASL 2.0","signature":"RSA/SHA256, Fri 09 Mar 2018 04:57:06 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"oci-register-machine-0-6.git2b44233.el7.src.rpm","build_date":"Wed 07 Mar 2018 09:09:27 AM PST","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/projectatomic/oci-register-machine","summary":"Golang binary to register OCI containers with systemd-machined","description":"Golang binary to register OCI containers with systemd-machined","build_epoch":1520442567,"build_epoch_utc":null,"install_date_epoch":1565895620,"install_date_epoch_utc":null},{"name":"which","version":"2.20","release":"7.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:18 AM PDT","group":"Applications/System","size":76962,"license":"GPLv3","signature":"RSA/SHA256, Thu 03 Jul 2014 10:43:07 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"which-2.20-7.el7.src.rpm","build_date":"Mon 09 Jun 2014 07:25:22 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.xs4all.nl/~carlo17/which/","summary":"Displays where a particular program in your path is located","description":"The which command shows the full pathname of a specified program, if the specified program is in your PATH.","build_epoch":1402367122,"build_epoch_utc":null,"install_date_epoch":1565891598,"install_date_epoch_utc":null},{"name":"chrony","version":"3.4","release":"1.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:50 AM PDT","group":"System Environment/Daemons","size":502859,"license":"GPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:21:16 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"chrony-3.4-1.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:42:19 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://chrony.tuxfamily.org","summary":"An NTP client/server","description":"A client/server for the Network Time Protocol, this program keeps your computer's clock accurate. It was specially designed to support systems with intermittent internet connections, but it also works well in permanently connected environments. It can use also hardware reference clocks, system real-time clock or manual input as time references.","build_epoch":1565264539,"build_epoch_utc":null,"install_date_epoch":1571242970,"install_date_epoch_utc":null},{"name":"sqlite","version":"3.7.17","release":"8.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:19 AM PDT","group":"Applications/Databases","size":814231,"license":"Public Domain","signature":"RSA/SHA256, Wed 25 Nov 2015 07:40:39 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"sqlite-3.7.17-8.el7.src.rpm","build_date":"Fri 20 Nov 2015 12:45:59 AM PST","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.sqlite.org/","summary":"Library that implements an embeddable SQL database engine","description":"SQLite is a C library that implements an SQL database engine. A large subset of SQL92 is supported. A complete database is stored in a single disk file. The API is designed for convenience and ease of use. Applications that link against SQLite can enjoy the power and flexibility of an SQL database without the administrative hassles of supporting a separate database server. Version 2 and version 3 binaries are named to permit each to be installed on a single host","build_epoch":1448009159,"build_epoch_utc":null,"install_date_epoch":1565891599,"install_date_epoch_utc":null},{"name":"microcode_ctl","epoch":2,"version":"2.1","release":"53.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:53 AM PDT","group":"System Environment/Base","size":2651210,"license":"GPLv2+ and Redistributable, no modification permitted","signature":"RSA/SHA256, Thu 22 Aug 2019 02:35:33 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"microcode_ctl-2.1-53.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:58:14 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://pagure.io/microcode_ctl","summary":"Tool to transform and deploy CPU microcode update for x86.","description":"The microcode_ctl utility is a companion to the microcode driver written by Tigran Aivazian . The microcode update is volatile and needs to be uploaded on each system boot i.e. it doesn't reflash your cpu permanently, reboot and it reverts back to the old microcode.","build_epoch":1565312294,"build_epoch_utc":null,"install_date_epoch":1571242973,"install_date_epoch_utc":null},{"name":"file-libs","version":"5.11","release":"35.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:19 AM PDT","group":"Applications/File","size":3076831,"license":"BSD","signature":"RSA/SHA256, Mon 12 Nov 2018 06:25:10 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"file-5.11-35.el7.src.rpm","build_date":"Tue 30 Oct 2018 11:16:23 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.darwinsys.com/file/","summary":"Libraries for applications using libmagic","description":"Libraries for applications using libmagic.","build_epoch":1540923383,"build_epoch_utc":null,"install_date_epoch":1565891599,"install_date_epoch_utc":null},{"name":"openssl","epoch":1,"version":"1.0.2k","release":"19.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:58 AM PDT","group":"System Environment/Libraries","size":833707,"license":"OpenSSL","signature":"RSA/SHA256, Thu 22 Aug 2019 02:37:31 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"openssl-1.0.2k-19.el7.src.rpm","build_date":"Thu 08 Aug 2019 06:40:02 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.openssl.org/","summary":"Utilities from the general purpose cryptography library with TLS implementation","description":"The OpenSSL toolkit provides support for secure communications between machines. OpenSSL includes a certificate management tool and shared libraries which provide various cryptographic algorithms and protocols.","build_epoch":1565314802,"build_epoch_utc":null,"install_date_epoch":1571242978,"install_date_epoch_utc":null},{"name":"libcroco","version":"0.6.12","release":"4.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:19 AM PDT","group":"System Environment/Libraries","size":320955,"license":"LGPLv2","signature":"RSA/SHA256, Mon 12 Nov 2018 06:31:55 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"libcroco-0.6.12-4.el7.src.rpm","build_date":"Tue 30 Oct 2018 11:03:18 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","summary":"A CSS2 parsing library","description":"CSS2 parsing and manipulation library for GNOME","build_epoch":1540922598,"build_epoch_utc":null,"install_date_epoch":1565891599,"install_date_epoch_utc":null},{"name":"mariadb-libs","epoch":1,"version":"5.5.64","release":"1.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:23:00 AM PDT","group":"Applications/Databases","size":4615213,"license":"GPLv2 with exceptions and LGPLv2 and BSD","signature":"RSA/SHA256, Thu 22 Aug 2019 02:35:07 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"mariadb-5.5.64-1.el7.src.rpm","build_date":"Thu 08 Aug 2019 07:29:56 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://mariadb.org","summary":"The shared libraries required for MariaDB/MySQL clients","description":"The mariadb-libs package provides the essential shared libraries for any MariaDB/MySQL client program or interface. You will need to install this package to use any other MariaDB package or any clients that need to connect to a MariaDB/MySQL server. MariaDB is a community developed branch of MySQL.","build_epoch":1565274596,"build_epoch_utc":null,"install_date_epoch":1571242980,"install_date_epoch_utc":null},{"name":"libgomp","version":"4.8.5","release":"39.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:23:01 AM PDT","group":"System Environment/Libraries","size":212184,"license":"GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions and LGPLv2+ and BSD","signature":"RSA/SHA256, Thu 22 Aug 2019 02:29:46 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"gcc-4.8.5-39.el7.src.rpm","build_date":"Tue 06 Aug 2019 10:15:38 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://gcc.gnu.org","summary":"GCC OpenMP v3.0 shared support library","description":"This package contains GCC shared support library which is needed for OpenMP v3.0 support.","build_epoch":1565111738,"build_epoch_utc":null,"install_date_epoch":1571242981,"install_date_epoch_utc":null},{"name":"libnl3-cli","version":"3.2.28","release":"4.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:20 AM PDT","group":"Development/Libraries","size":706246,"license":"LGPLv2","signature":"RSA/SHA256, Thu 10 Aug 2017 10:22:53 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libnl3-3.2.28-4.el7.src.rpm","build_date":"Thu 03 Aug 2017 12:49:03 PM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.infradead.org/~tgr/libnl/","summary":"Command line interface utils for libnl3","description":"This package contains various libnl3 utils and additional libraries on which they depend","build_epoch":1501789743,"build_epoch_utc":null,"install_date_epoch":1565891600,"install_date_epoch_utc":null},{"name":"iwl3945-firmware","version":"15.32.2.9","release":"72.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:23:01 AM PDT","group":"System Environment/Kernel","size":287230,"license":"Redistributable, no modification permitted","signature":"RSA/SHA256, Thu 22 Aug 2019 02:58:07 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"linux-firmware-20190429-72.gitddde598.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:22:46 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/","summary":"Firmware for Intel® PRO/Wireless 3945 A/B/G network adaptors","description":"This package contains the firmware required by the iwl3945 driver for Linux. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully.","build_epoch":1565266966,"build_epoch_utc":null,"install_date_epoch":1571242981,"install_date_epoch_utc":null},{"name":"groff-base","version":"1.22.2","release":"8.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:20 AM PDT","group":"Applications/Publishing","size":3453946,"license":"GPLv3+ and GFDL and BSD and MIT","signature":"RSA/SHA256, Thu 03 Jul 2014 06:45:51 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"groff-1.22.2-8.el7.src.rpm","build_date":"Mon 09 Jun 2014 01:17:26 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/groff/","summary":"Parts of the groff formatting system required to display manual pages","description":"The groff-base package contains only necessary parts of groff formatting system which are required to display manual pages, and the groff's default display device (PostScript).","build_epoch":1402345046,"build_epoch_utc":null,"install_date_epoch":1565891600,"install_date_epoch_utc":null},{"name":"iwl5150-firmware","version":"8.24.2.2","release":"72.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:23:02 AM PDT","group":"System Environment/Kernel","size":474530,"license":"Redistributable, no modification permitted","signature":"RSA/SHA256, Thu 22 Aug 2019 02:58:10 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"linux-firmware-20190429-72.gitddde598.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:22:46 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/","summary":"Firmware for Intel® PRO/Wireless 5150 A/G/N network adaptors","description":"This package contains the firmware required by the iwl5150 driver for Linux. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully.","build_epoch":1565266966,"build_epoch_utc":null,"install_date_epoch":1571242982,"install_date_epoch_utc":null},{"name":"libedit","version":"3.0","release":"12.20121213cvs.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:20 AM PDT","group":"System Environment/Libraries","size":244257,"license":"BSD","signature":"RSA/SHA256, Thu 03 Jul 2014 07:44:30 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libedit-3.0-12.20121213cvs.el7.src.rpm","build_date":"Mon 09 Jun 2014 03:33:10 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.thrysoee.dk/editline/","summary":"The NetBSD Editline library","description":"Libedit is an autotool- and libtoolized port of the NetBSD Editline library. It provides generic line editing, history, and tokenization functions, similar to those found in GNU Readline.","build_epoch":1402353190,"build_epoch_utc":null,"install_date_epoch":1565891600,"install_date_epoch_utc":null},{"name":"iwl6000g2a-firmware","version":"17.168.5.3","release":"72.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:23:02 AM PDT","group":"System Environment/Kernel","size":1258554,"license":"Redistributable, no modification permitted","signature":"RSA/SHA256, Thu 22 Aug 2019 02:58:12 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"linux-firmware-20190429-72.gitddde598.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:22:46 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/","summary":"Firmware for Intel(R) Wireless WiFi Link 6005 Series Adapters","description":"This package contains the firmware required by the iwlagn driver for Linux. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully.","build_epoch":1565266966,"build_epoch_utc":null,"install_date_epoch":1571242982,"install_date_epoch_utc":null},{"name":"libnfnetlink","version":"1.0.1","release":"4.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:21 AM PDT","group":"System Environment/Libraries","size":47123,"license":"GPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 08:01:58 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libnfnetlink-1.0.1-4.el7.src.rpm","build_date":"Mon 09 Jun 2014 05:21:22 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://netfilter.org","summary":"Netfilter netlink userspace library","description":"libnfnetlink is a userspace library that provides some low-level nfnetlink handling functions. It is used as a foundation for other, netfilter subsystem specific libraries such as libnfnetlink_conntrack, libnfnetlink_log and libnfnetlink_queue.","build_epoch":1402359682,"build_epoch_utc":null,"install_date_epoch":1565891601,"install_date_epoch_utc":null},{"name":"iwl2030-firmware","version":"18.168.6.1","release":"72.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:23:05 AM PDT","group":"System Environment/Kernel","size":844522,"license":"Redistributable, no modification permitted","signature":"RSA/SHA256, Thu 22 Aug 2019 02:58:05 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"linux-firmware-20190429-72.gitddde598.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:22:46 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/","summary":"Firmware for Intel(R) Centrino Wireless-N 2030 Series Adapters","description":"This package contains the firmware required by the iwlagn driver for Linux to support the iwl2030 hardware. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully.","build_epoch":1565266966,"build_epoch_utc":null,"install_date_epoch":1571242985,"install_date_epoch_utc":null},{"name":"openldap","version":"2.4.44","release":"21.el7_6","architecture":"x86_64","install_date":"Thu 15 Aug 2019 12:01:15 PM PDT","group":"System Environment/Daemons","size":1037424,"license":"OpenLDAP","signature":"RSA/SHA256, Fri 01 Feb 2019 08:21:40 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"openldap-2.4.44-21.el7_6.src.rpm","build_date":"Tue 29 Jan 2019 09:43:41 AM PST","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.openldap.org/","summary":"LDAP support libraries","description":"OpenLDAP is an open source suite of LDAP (Lightweight Directory Access Protocol) applications and development tools. LDAP is a set of protocols for accessing directory services (usually phone book style information, but other information is possible) over the Internet, similar to the way DNS (Domain Name System) information is propagated over the Internet. The openldap package contains configuration files, libraries, and documentation for OpenLDAP.","build_epoch":1548783821,"build_epoch_utc":null,"install_date_epoch":1565895675,"install_date_epoch_utc":null},{"name":"lsof","version":"4.87","release":"6.el7","architecture":"x86_64","install_date":"Tue 22 Oct 2019 03:59:58 PM PDT","group":"Development/Debuggers","size":949035,"license":"zlib and Sendmail and LGPLv2+","signature":"RSA/SHA256, Mon 12 Nov 2018 06:39:26 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"lsof-4.87-6.el7.src.rpm","build_date":"Tue 30 Oct 2018 09:28:20 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://people.freebsd.org/~abe/","summary":"A utility which lists open files on a Linux/UNIX system","lsof_stands_for_list_open_files,_and_it_does_just_that":"it lists","description":"Lsof stands for LiSt Open Files, and it does just that: it lists information about files that are open by the processes running on a UNIX system.","build_epoch":1540916900,"build_epoch_utc":null,"install_date_epoch":1571785198,"install_date_epoch_utc":null},{"name":"sysstat","version":"10.1.5","release":"18.el7","architecture":"x86_64","install_date":"Tue 29 Oct 2019 11:35:07 PM PDT","group":"Applications/System","size":1172464,"license":"GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:44:12 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"sysstat-10.1.5-18.el7.src.rpm","build_date":"Thu 08 Aug 2019 07:54:59 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://sebastien.godard.pagesperso-orange.fr/","summary":"Collection of performance monitoring tools for Linux","description":"The sysstat package contains sar, sadf, mpstat, iostat, pidstat, nfsiostat-sysstat, tapestat, cifsiostat and sa tools for Linux. The sar command collects and reports system activity information. This information can be saved in a file in a binary format for future inspection. The statistics reported by sar concern I/O transfer rates, paging activity, process-related activities, interrupts, network activity, memory and swap space utilization, CPU utilization, kernel activities and TTY statistics, among others. Both UP and SMP machines are fully supported. The sadf command may be used to display data collected by sar in various formats (CSV, XML, etc.). The iostat command reports CPU utilization and I/O statistics for disks. The tapestat command reports statistics for tapes connected to the system. The mpstat command reports global and per-processor statistics. The pidstat command reports statistics for Linux tasks (processes). The nfsiostat-sysstat command reports I/O statistics for network file systems. The cifsiostat command reports I/O statistics for CIFS file systems.","build_epoch":1565319299,"build_epoch_utc":null,"install_date_epoch":1572417307,"install_date_epoch_utc":null},{"name":"pciutils-libs","version":"3.5.1","release":"3.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:22 AM PDT","group":"System Environment/Libraries","size":72691,"license":"GPLv2+","signature":"RSA/SHA256, Wed 25 Apr 2018 04:34:19 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"pciutils-3.5.1-3.el7.src.rpm","build_date":"Tue 10 Apr 2018 07:50:42 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://atrey.karlin.mff.cuni.cz/~mj/pciutils.shtml","summary":"Linux PCI library","description":"This package contains a library for inspecting and setting devices connected to the PCI bus.","build_epoch":1523415042,"build_epoch_utc":null,"install_date_epoch":1565891602,"install_date_epoch_utc":null},{"name":"rubygem-bigdecimal","version":"1.2.0","release":"36.el7","architecture":"x86_64","install_date":"Sat 16 Nov 2019 02:29:24 PM PST","group":"Development/Libraries","size":84611,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 22 Aug 2019 02:42:56 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"ruby-2.0.0.648-36.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:30:13 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://ruby-lang.org/","summary":"BigDecimal provides arbitrary-precision floating point decimal arithmetic","description":"Ruby provides built-in support for arbitrary precision integer arithmetic. For example: 42**13 -> 1265437718438866624512 BigDecimal provides similar support for very large or very accurate floating point numbers. Decimal arithmetic is also useful for general calculation, because it provides the correct answers people expect–whereas normal binary floating point arithmetic often introduces subtle errors because of the conversion between base 10 and base 2.","build_epoch":1565267413,"build_epoch_utc":null,"install_date_epoch":1573943364,"install_date_epoch_utc":null},{"name":"ruby-irb","version":"2.0.0.648","release":"36.el7","architecture":"noarch","install_date":"Sat 16 Nov 2019 02:29:25 PM PST","group":"Development/Libraries","size":160544,"license":"(Ruby or BSD) and Public Domain","signature":"RSA/SHA256, Thu 22 Aug 2019 03:00:54 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"ruby-2.0.0.648-36.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:30:13 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://ruby-lang.org/","summary":"The Interactive Ruby","description":"The irb is acronym for Interactive Ruby. It evaluates ruby expression from the terminal.","build_epoch":1565267413,"build_epoch_utc":null,"install_date_epoch":1573943365,"install_date_epoch_utc":null},{"name":"python-configobj","version":"4.7.2","release":"7.el7","architecture":"noarch","install_date":"Thu 15 Aug 2019 10:53:23 AM PDT","group":"System Environment/Libraries","size":611855,"license":"BSD","signature":"RSA/SHA256, Thu 03 Jul 2014 09:38:24 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"python-configobj-4.7.2-7.el7.src.rpm","build_date":"Mon 09 Jun 2014 11:57:08 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.voidspace.org.uk/python/configobj.html","summary":"Config file reading, writing, and validation","configobj_is_a_simple_but_powerful_config_file_reader_and_writer":"an ini file","description":"ConfigObj is a simple but powerful config file reader and writer: an ini file round tripper. Its main feature is that it is very easy to use, with a straightforward programmer's interface and a simple syntax for config files. It has lots of other features though: * Nested sections (subsections), to any level * List values * Multiple line values * String interpolation (substitution) * Integrated with a powerful validation system o including automatic type checking/conversion o repeated sections o and allowing default values * All comments in the file are preserved * The order of keys/sections is preserved * No external dependencies * Full Unicode support * A powerful unrepr mode for storing basic datatypes","build_epoch":1402383428,"build_epoch_utc":null,"install_date_epoch":1565891603,"install_date_epoch_utc":null},{"name":"unzip","version":"6.0","release":"20.el7","architecture":"x86_64","install_date":"Mon 13 Jan 2020 05:29:48 PM PST","group":"Applications/Archiving","size":373994,"license":"BSD","signature":"RSA/SHA256, Thu 22 Aug 2019 02:44:59 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"unzip-6.0-20.el7.src.rpm","build_date":"Thu 08 Aug 2019 08:09:03 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.info-zip.org/UnZip.html","summary":"A utility for unpacking zip files","description":"The unzip utility is used to list, test, or extract files from a zip archive. Zip archives are commonly found on MS-DOS systems. The zip utility, included in the zip package, creates zip archives. Zip and unzip are both compatible with archives created by PKWARE(R)'s PKZIP for MS-DOS, but the programs' options and default behaviors do differ in some respects. Install the unzip package if you need to list, test or extract files from a zip archive.","build_epoch":1565320143,"build_epoch_utc":null,"install_date_epoch":1578965388,"install_date_epoch_utc":null},{"name":"libnetfilter_conntrack","version":"1.0.6","release":"1.el7_3","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:23 AM PDT","group":"System Environment/Libraries","size":143566,"license":"GPLv2+","signature":"RSA/SHA256, Thu 25 May 2017 04:23:10 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libnetfilter_conntrack-1.0.6-1.el7_3.src.rpm","build_date":"Thu 25 May 2017 12:59:45 PM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://netfilter.org","summary":"Netfilter conntrack userspace library","description":"libnetfilter_conntrack is a userspace library providing a programming interface (API) to the in-kernel connection tracking state table.","build_epoch":1495742385,"build_epoch_utc":null,"install_date_epoch":1565891603,"install_date_epoch_utc":null},{"name":"mpfr","version":"3.1.1","release":"4.el7","architecture":"x86_64","install_date":"Wed 08 Apr 2020 05:17:22 AM PDT","group":"System Environment/Libraries","size":554279,"license":"LGPLv3+ and GPLv3+ and GFDL","signature":"RSA/SHA256, Thu 03 Jul 2014 08:49:45 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"mpfr-3.1.1-4.el7.src.rpm","build_date":"Mon 09 Jun 2014 06:11:54 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.mpfr.org/","summary":"A C library for multiple-precision floating-point computations","description":"The MPFR library is a C library for multiple-precision floating-point computations with \"correct rounding\". The MPFR is efficient and also has a well-defined semantics. It copies the good ideas from the ANSI/IEEE-754 standard for double-precision floating-point arithmetic (53-bit mantissa). MPFR is based on the GMP multiple-precision library.","build_epoch":1402362714,"build_epoch_utc":null,"install_date_epoch":1586348242,"install_date_epoch_utc":null},{"name":"gettext","version":"0.19.8.1","release":"2.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:23 AM PDT","group":"Development/Tools","size":5029340,"license":"GPLv3+ and LGPLv2+","signature":"RSA/SHA256, Thu 10 Aug 2017 09:07:43 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"gettext-0.19.8.1-2.el7.src.rpm","build_date":"Wed 02 Aug 2017 07:28:14 PM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/gettext/","summary":"GNU libraries and utilities for producing multi-lingual messages","description":"The GNU gettext package provides a set of tools and documentation for producing multi-lingual messages in programs. Tools include a set of conventions about how programs should be written to support message catalogs, a directory and file naming organization for the message catalogs, a runtime library which supports the retrieval of translated messages, and stand-alone programs for handling the translatable and the already translated strings. Gettext provides an easy to use library and tools for creating, using, and modifying natural language catalogs and is a powerful and simple method for internationalizing programs.","build_epoch":1501727294,"build_epoch_utc":null,"install_date_epoch":1565891603,"install_date_epoch_utc":null},{"name":"glibc-headers","version":"2.17","release":"292.el7","architecture":"x86_64","install_date":"Wed 08 Apr 2020 05:17:25 AM PDT","group":"Development/Libraries","size":2339702,"license":"LGPLv2+ and LGPLv2+ with exceptions and GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:24:45 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"glibc-2.17-292.el7.src.rpm","build_date":"Tue 06 Aug 2019 04:23:44 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/glibc/","summary":"Header files for development using standard C libraries.","description":"The glibc-headers package contains the header files necessary for developing programs which use the standard C libraries (which are used by nearly all programs). If you are developing programs which will use the standard C libraries, your system needs to have these standard header files available in order to create the executables. Install glibc-headers if you are going to develop programs which will use the standard C libraries.","build_epoch":1565133824,"build_epoch_utc":null,"install_date_epoch":1586348245,"install_date_epoch_utc":null},{"name":"libsepol-devel","version":"2.5","release":"10.el7","architecture":"x86_64","install_date":"Wed 08 Apr 2020 05:24:42 AM PDT","group":"Development/Libraries","size":126580,"license":"LGPLv2+","signature":"RSA/SHA256, Mon 12 Nov 2018 06:37:36 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"libsepol-2.5-10.el7.src.rpm","build_date":"Tue 30 Oct 2018 02:36:15 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/SELinuxProject/selinux/wiki","summary":"Header files and libraries used to build policy manipulation tools","description":"The libsepol-devel package contains the libraries and header files needed for developing applications that manipulate binary policies.","build_epoch":1540935375,"build_epoch_utc":null,"install_date_epoch":1586348682,"install_date_epoch_utc":null},{"name":"gobject-introspection","version":"1.56.1","release":"1.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:24 AM PDT","group":"Unspecified","size":854207,"license":"GPLv2+, LGPLv2+, MIT","signature":"RSA/SHA256, Mon 12 Nov 2018 06:28:00 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"gobject-introspection-1.56.1-1.el7.src.rpm","build_date":"Fri 02 Nov 2018 08:25:09 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://wiki.gnome.org/Projects/GObjectIntrospection","summary":"Introspection system for GObject-based libraries","description":"GObject Introspection can scan C header and source files in order to generate introspection \"typelib\" files. It also provides an API to examine typelib files, useful for creating language bindings among other things.","build_epoch":1541172309,"build_epoch_utc":null,"install_date_epoch":1565891604,"install_date_epoch_utc":null},{"name":"libcom_err-devel","version":"1.42.9","release":"16.el7","architecture":"x86_64","install_date":"Wed 08 Apr 2020 05:24:42 AM PDT","group":"Development/Libraries","size":17196,"license":"MIT","signature":"RSA/SHA256, Thu 22 Aug 2019 02:29:15 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"e2fsprogs-1.42.9-16.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:19:51 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://e2fsprogs.sourceforge.net/","summary":"Common error description library","description":"This is the common error description development library and headers, part of e2fsprogs. It contains the compile_et commmand, used to convert a table listing error-code names and associated messages messages into a C source file suitable for use with the library. libcom_err is an attempt to present a common error-handling mechanism.","build_epoch":1565306391,"build_epoch_utc":null,"install_date_epoch":1586348682,"install_date_epoch_utc":null},{"name":"openssl-devel","epoch":1,"version":"1.0.2k","release":"19.el7","architecture":"x86_64","install_date":"Wed 08 Apr 2020 05:24:44 AM PDT","group":"Development/Libraries","size":3268775,"license":"OpenSSL","signature":"RSA/SHA256, Thu 22 Aug 2019 02:37:32 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"openssl-1.0.2k-19.el7.src.rpm","build_date":"Thu 08 Aug 2019 06:40:02 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.openssl.org/","summary":"Files for development of applications which will use OpenSSL","description":"OpenSSL is a toolkit for supporting cryptography. The openssl-devel package contains include files needed to develop applications which support various cryptographic algorithms and protocols.","build_epoch":1565314802,"build_epoch_utc":null,"install_date_epoch":1586348684,"install_date_epoch_utc":null},{"name":"bzip2","version":"1.0.6","release":"13.el7","architecture":"x86_64","install_date":"Tue 14 Apr 2020 08:13:29 AM PDT","group":"Applications/File","size":83791,"license":"BSD","signature":"RSA/SHA256, Wed 25 Nov 2015 06:18:37 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"bzip2-1.0.6-13.el7.src.rpm","build_date":"Thu 19 Nov 2015 09:04:52 PM PST","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.bzip.org/","summary":"A file compression utility","description":"Bzip2 is a freely available, patent-free, high quality data compressor. Bzip2 compresses files to within 10 to 15 percent of the capabilities of the best techniques available. However, bzip2 has the added benefit of being approximately two times faster at compression and six times faster at decompression than those techniques. Bzip2 is not the fastest compression utility, but it does strike a balance between speed and compression capability. Install bzip2 if you need a compression utility.","build_epoch":1447995892,"build_epoch_utc":null,"install_date_epoch":1586877209,"install_date_epoch_utc":null},{"name":"devtoolset-3-runtime","version":"3.1","release":"12.el7","architecture":"x86_64","install_date":"Tue 14 Apr 2020 08:42:05 AM PDT","group":"Applications/File","size":6212,"license":"GPLv2+","signature":"RSA/SHA1, Sat 28 Nov 2015 06:50:56 AM PST, Key ID 4eb84e71f2ee9d55","source_rpm":"devtoolset-3-3.1-12.el7.src.rpm","build_date":"Mon 05 Oct 2015 03:10:53 PM PDT","build_host":"c1bj.rdu2.centos.org","relocations":"(not relocatable)","packager":"CBS ","vendor":"CentOS","summary":"Package that handles devtoolset-3 Software Collection.","description":"Package shipping essential scripts to work with devtoolset-3 Software Collection.","build_epoch":1444083053,"build_epoch_utc":null,"install_date_epoch":1586878925,"install_date_epoch_utc":null},{"name":"kernel","version":"3.10.0","release":"957.27.2.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 12:01:42 PM PDT","group":"System Environment/Kernel","size":66226363,"license":"GPLv2","signature":"RSA/SHA256, Wed 31 Jul 2019 12:52:32 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"kernel-3.10.0-957.27.2.el7.src.rpm","build_date":"Mon 29 Jul 2019 11:13:51 AM PDT","build_host":"kbuilder.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.kernel.org/","summary":"The Linux kernel","of_the_operating_system":"memory allocation, process allocation, device","description":"The kernel package contains the Linux kernel (vmlinuz), the core of any Linux operating system. The kernel handles the basic functions of the operating system: memory allocation, process allocation, device input and output, etc.","build_epoch":1564424031,"build_epoch_utc":null,"install_date_epoch":1565895702,"install_date_epoch_utc":null},{"name":"python-urlgrabber","version":"3.10","release":"9.el7","architecture":"noarch","install_date":"Thu 15 Aug 2019 10:53:25 AM PDT","group":"Development/Libraries","size":503349,"license":"LGPLv2+","signature":"RSA/SHA256, Mon 12 Nov 2018 07:19:19 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"python-urlgrabber-3.10-9.el7.src.rpm","build_date":"Tue 30 Oct 2018 10:15:12 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://urlgrabber.baseurl.org/","summary":"A high-level cross-protocol url-grabber","description":"A high-level cross-protocol url-grabber for python supporting HTTP, FTP and file locations. Features include keepalive, byte ranges, throttling, authentication, proxies and more.","build_epoch":1540919712,"build_epoch_utc":null,"install_date_epoch":1565891605,"install_date_epoch_utc":null},{"name":"python3-pip","version":"9.0.3","release":"5.el7","architecture":"noarch","install_date":"Tue 15 Oct 2019 11:09:08 AM PDT","group":"Development/Libraries","size":9787341,"license":"MIT and Python and ASL 2.0 and BSD and ISC and LGPLv2 and MPLv2.0 and (ASL 2.0 or BSD)","signature":"RSA/SHA256, Thu 22 Aug 2019 02:59:47 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"python-pip-9.0.3-5.el7.src.rpm","build_date":"Wed 07 Aug 2019 10:05:45 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.pip-installer.org","summary":"A tool for installing and managing Python3 packages","description":"pip is a package management system used to install and manage software packages written in Python. Many packages can be found in the Python Package Index (PyPI). pip is a recursive acronym that can stand for either \"Pip Installs Packages\" or \"Pip Installs Python\".","build_epoch":1565197545,"build_epoch_utc":null,"install_date_epoch":1571162948,"install_date_epoch_utc":null},{"name":"gpg-pubkey","version":"rpm-4.11.3 (NSS-3)","release":"52ae6884","architecture":"(none)","install_date":"Mon 04 Jan 2021 12:31:55 PM PST","group":"Public Keys","size":0,"license":"pubkey","signature":"(none)","source_rpm":"(none)","build_date":"Sun 15 Dec 2013 06:42:12 PM PST","build_host":"localhost","relocations":"(not relocatable)","packager":"Fedora EPEL (7) ","summary":"gpg(Fedora EPEL (7) )","description":"-----BEGIN PGP PUBLIC KEY BLOCK----- Version: rpm-4.11.3 (NSS-3) mQINBFKuaIQBEAC1UphXwMqCAarPUH/ZsOFslabeTVO2pDk5YnO96f+rgZB7xArB OSeQk7B90iqSJ85/c72OAn4OXYvT63gfCeXpJs5M7emXkPsNQWWSju99lW+AqSNm jYWhmRlLRGl0OO7gIwj776dIXvcMNFlzSPj00N2xAqjMbjlnV2n2abAE5gq6VpqP vFXVyfrVa/ualogDVmf6h2t4Rdpifq8qTHsHFU3xpCz+T6/dGWKGQ42ZQfTaLnDM jToAsmY0AyevkIbX6iZVtzGvanYpPcWW4X0RDPcpqfFNZk643xI4lsZ+Y2Er9Yu5 S/8x0ly+tmmIokaE0wwbdUu740YTZjCesroYWiRg5zuQ2xfKxJoV5E+Eh+tYwGDJ n6HfWhRgnudRRwvuJ45ztYVtKulKw8QQpd2STWrcQQDJaRWmnMooX/PATTjCBExB 9dkz38Druvk7IkHMtsIqlkAOQMdsX1d3Tov6BE2XDjIG0zFxLduJGbVwc/6rIc95 T055j36Ez0HrjxdpTGOOHxRqMK5m9flFbaxxtDnS7w77WqzW7HjFrD0VeTx2vnjj GqchHEQpfDpFOzb8LTFhgYidyRNUflQY35WLOzLNV+pV3eQ3Jg11UFwelSNLqfQf uFRGc+zcwkNjHh5yPvm9odR1BIfqJ6sKGPGbtPNXo7ERMRypWyRz0zi0twARAQAB tChGZWRvcmEgRVBFTCAoNykgPGVwZWxAZmVkb3JhcHJvamVjdC5vcmc+iQI4BBMB AgAiBQJSrmiEAhsPBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRBqL66iNSxk 5cfGD/4spqpsTjtDM7qpytKLHKruZtvuWiqt5RfvT9ww9GUUFMZ4ZZGX4nUXg49q ixDLayWR8ddG/s5kyOi3C0uX/6inzaYyRg+Bh70brqKUK14F1BrrPi29eaKfG+Gu MFtXdBG2a7OtPmw3yuKmq9Epv6B0mP6E5KSdvSRSqJWtGcA6wRS/wDzXJENHp5re 9Ism3CYydpy0GLRA5wo4fPB5uLdUhLEUDvh2KK//fMjja3o0L+SNz8N0aDZyn5Ax CU9RB3EHcTecFgoy5umRj99BZrebR1NO+4gBrivIfdvD4fJNfNBHXwhSH9ACGCNv HnXVjHQF9iHWApKkRIeh8Fr2n5dtfJEF7SEX8GbX7FbsWo29kXMrVgNqHNyDnfAB VoPubgQdtJZJkVZAkaHrMu8AytwT62Q4eNqmJI1aWbZQNI5jWYqc6RKuCK6/F99q thFT9gJO17+yRuL6Uv2/vgzVR1RGdwVLKwlUjGPAjYflpCQwWMAASxiv9uPyYPHc ErSrbRG0wjIfAR3vus1OSOx3xZHZpXFfmQTsDP7zVROLzV98R3JwFAxJ4/xqeON4 vCPFU6OsT3lWQ8w7il5ohY95wmujfr6lk89kEzJdOTzcn7DBbUru33CQMGKZ3Evt RjsC7FDbL017qxS+ZVA/HGkyfiu4cpgV8VUnbql5eAZ+1Ll6Dw== =hdPa -----END PGP PUBLIC KEY BLOCK-----","build_epoch":1387161732,"build_epoch_utc":null,"install_date_epoch":1609792315,"install_date_epoch_utc":null},{"name":"perl-HTTP-Tiny","version":"0.033","release":"3.el7","architecture":"noarch","install_date":"Tue 15 Oct 2019 11:27:57 AM PDT","group":"Development/Libraries","size":97210,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 03 Jul 2014 09:19:08 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-HTTP-Tiny-0.033-3.el7.src.rpm","build_date":"Mon 09 Jun 2014 01:53:37 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/HTTP-Tiny/","summary":"Small, simple, correct HTTP/1.1 client","description":"This is a very simple HTTP/1.1 client, designed for doing simple GET requests without the overhead of a large framework like LWP::UserAgent. It is more correct and more complete than HTTP::Lite. It supports proxies (currently only non-authenticating ones) and redirection. It also correctly resumes after EINTR.","build_epoch":1402347217,"build_epoch_utc":null,"install_date_epoch":1571164077,"install_date_epoch_utc":null},{"name":"acl","version":"2.2.51","release":"14.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:27 AM PDT","group":"System Environment/Base","size":201225,"license":"GPLv2+","signature":"RSA/SHA256, Wed 25 Apr 2018 03:52:22 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"acl-2.2.51-14.el7.src.rpm","build_date":"Tue 10 Apr 2018 05:41:24 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://acl.bestbits.at/","summary":"Access control list utilities","description":"This package contains the getfacl and setfacl utilities needed for manipulating access control lists.","build_epoch":1523407284,"build_epoch_utc":null,"install_date_epoch":1565891607,"install_date_epoch_utc":null},{"name":"wireless-tools","epoch":1,"version":"29","release":"13.el7","architecture":"x86_64","install_date":"Mon 04 Jan 2021 12:32:02 PM PST","group":"System Environment/Base","size":242259,"license":"GPL+","signature":"RSA/SHA256, Tue 16 Dec 2014 01:47:54 PM PST, Key ID 6a2faea2352c64e5","source_rpm":"wireless-tools-29-13.el7.src.rpm","build_date":"Mon 15 Dec 2014 01:39:37 PM PST","build_host":"buildhw-09.phx2.fedoraproject.org","relocations":"(not relocatable)","packager":"Fedora Project","vendor":"Fedora Project","url":"http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html","summary":"Wireless ethernet configuration tools","description":"This package contain the Wireless tools, used to manipulate the Wireless Extensions. The Wireless Extension is an interface allowing you to set Wireless LAN specific parameters and get the specific stats for wireless networking equipment.","build_epoch":1418679577,"build_epoch_utc":null,"install_date_epoch":1609792322,"install_date_epoch_utc":null},{"name":"perl-Encode","version":"2.51","release":"7.el7","architecture":"x86_64","install_date":"Tue 15 Oct 2019 11:27:58 AM PDT","group":"Development/Libraries","size":10176350,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 03 Jul 2014 09:17:22 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-Encode-2.51-7.el7.src.rpm","build_date":"Mon 09 Jun 2014 07:49:45 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/Encode/","summary":"Character encodings in Perl","description":"The Encode module provides the interface between Perl strings and the rest of the system. Perl strings are sequences of characters.","build_epoch":1402368585,"build_epoch_utc":null,"install_date_epoch":1571164078,"install_date_epoch_utc":null},{"name":"mozjs17","version":"17.0.0","release":"20.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:28 AM PDT","group":"Development/Languages","size":4045213,"license":"GPLv2+ or LGPLv2+ or MPLv1.1","signature":"RSA/SHA256, Wed 25 Apr 2018 04:27:32 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"mozjs17-17.0.0-20.el7.src.rpm","build_date":"Tue 10 Apr 2018 05:33:07 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.mozilla.org/js/","summary":"JavaScript interpreter and libraries","description":"JavaScript is the Netscape-developed object scripting language used in millions of web pages and server applications worldwide. Netscape's JavaScript is a superset of the ECMA-262 Edition 3 (ECMAScript) standard scripting language, with only mild differences from the published standard.","build_epoch":1523406787,"build_epoch_utc":null,"install_date_epoch":1565891608,"install_date_epoch_utc":null},{"name":"oniguruma","version":"6.8.2","release":"1.el7","architecture":"x86_64","install_date":"Wed 31 Mar 2021 06:30:28 PM PDT","group":"System Environment/Libraries","size":688419,"license":"BSD","signature":"RSA/SHA256, Thu 28 May 2020 09:51:06 AM PDT, Key ID 6a2faea2352c64e5","source_rpm":"oniguruma-6.8.2-1.el7.src.rpm","build_date":"Tue 26 May 2020 12:24:56 PM PDT","build_host":"buildhw-03.phx2.fedoraproject.org","relocations":"(not relocatable)","packager":"Fedora Project","vendor":"Fedora Project","url":"https://github.com/kkos/oniguruma/","bug_url":"https://bugz.fedoraproject.org/oniguruma","summary":"Regular expressions library","(supported_apis":"GNU regex, POSIX and Oniguruma native)","description":"Oniguruma is a regular expressions library. The characteristics of this library is that different character encoding for every regular expression object can be specified. (supported APIs: GNU regex, POSIX and Oniguruma native)","build_epoch":1590521096,"build_epoch_utc":null,"install_date_epoch":1617240628,"install_date_epoch_utc":null},{"name":"perl-macros","epoch":4,"version":"5.16.3","release":"294.el7_6","architecture":"x86_64","install_date":"Tue 15 Oct 2019 11:27:58 AM PDT","group":"Development/Languages","size":5134,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 24 Jan 2019 05:22:17 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-5.16.3-294.el7_6.src.rpm","build_date":"Mon 21 Jan 2019 02:12:20 PM PST","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.perl.org/","summary":"Macros for rpmbuild","description":"Macros for rpmbuild are needed during build of srpm in koji. This sub-package must be installed into buildroot, so it will be needed by perl. Perl is needed because of git.","build_epoch":1548108740,"build_epoch_utc":null,"install_date_epoch":1571164078,"install_date_epoch_utc":null},{"name":"perl-Time-Local","version":"1.2300","release":"2.el7","architecture":"noarch","install_date":"Tue 15 Oct 2019 11:27:58 AM PDT","group":"Development/Libraries","size":44062,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 03 Jul 2014 09:25:36 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-Time-Local-1.2300-2.el7.src.rpm","build_date":"Mon 09 Jun 2014 12:31:30 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/Time-Local/","summary":"Efficiently compute time from local and GMT time","description":"This module provides functions that are the inverse of built-in perl functions localtime() and gmtime(). They accept a date as a six-element array, and return the corresponding time(2) value in seconds since the system epoch (Midnight, January 1, 1970 GMT on Unix, for example). This value can be positive or negative, though POSIX only requires support for positive values, so dates before the system's epoch may not work on all operating systems.","build_epoch":1402342290,"build_epoch_utc":null,"install_date_epoch":1571164078,"install_date_epoch_utc":null},{"name":"perl-PathTools","version":"3.40","release":"5.el7","architecture":"x86_64","install_date":"Tue 15 Oct 2019 11:27:58 AM PDT","group":"Development/Libraries","size":174131,"license":"(GPL+ or Artistic) and BSD","signature":"RSA/SHA256, Thu 03 Jul 2014 09:22:03 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-PathTools-3.40-5.el7.src.rpm","build_date":"Mon 09 Jun 2014 09:11:16 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/PathTools/","summary":"PathTools Perl module (Cwd, File::Spec)","description":"This is the combined distribution for the File::Spec and Cwd modules.","build_epoch":1402373476,"build_epoch_utc":null,"install_date_epoch":1571164078,"install_date_epoch_utc":null},{"name":"libutempter","version":"1.1.6","release":"4.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:29 AM PDT","group":"System Environment/Libraries","size":49749,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 08:23:25 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libutempter-1.1.6-4.el7.src.rpm","build_date":"Mon 09 Jun 2014 07:03:46 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"ftp://ftp.altlinux.org/pub/people/ldv/utempter","summary":"A privileged helper for utmp/wtmp updates","description":"This library provides interface for terminal emulators such as screen and xterm to record user sessions to utmp and wtmp files.","build_epoch":1402365826,"build_epoch_utc":null,"install_date_epoch":1565891609,"install_date_epoch_utc":null},{"name":"perl-threads-shared","version":"1.43","release":"6.el7","architecture":"x86_64","install_date":"Tue 15 Oct 2019 11:27:58 AM PDT","group":"Development/Libraries","size":73972,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 03 Jul 2014 09:25:27 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-threads-shared-1.43-6.el7.src.rpm","build_date":"Mon 09 Jun 2014 11:07:27 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/threads-shared/","summary":"Perl extension for sharing data structures between threads","description":"By default, variables are private to each thread, and each newly created thread gets a private copy of each existing variable. This module allows you to share variables across different threads (and pseudo-forks on Win32). It is used together with the threads module.","build_epoch":1402380447,"build_epoch_utc":null,"install_date_epoch":1571164078,"install_date_epoch_utc":null},{"name":"perl-Getopt-Long","version":"2.40","release":"3.el7","architecture":"noarch","install_date":"Tue 15 Oct 2019 11:27:59 AM PDT","group":"Development/Libraries","size":134846,"license":"GPLv2+ or Artistic","signature":"RSA/SHA256, Wed 25 Apr 2018 04:36:10 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-Getopt-Long-2.40-3.el7.src.rpm","build_date":"Tue 10 Apr 2018 05:34:16 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/Getopt-Long/","summary":"Extended processing of command line options","description":"The Getopt::Long module implements an extended getopt function called GetOptions(). It parses the command line from @ARGV, recognizing and removing specified options and their possible values. It adheres to the POSIX syntax for command line options, with GNU extensions. In general, this means that options have long names instead of single letters, and are introduced with a double dash \"--\". Support for bundling of command line options, as was the case with the more traditional single-letter approach, is provided but not enabled by default.","build_epoch":1523406856,"build_epoch_utc":null,"install_date_epoch":1571164079,"install_date_epoch_utc":null},{"name":"rsync","version":"3.1.2","release":"6.el7_6.1","architecture":"x86_64","install_date":"Tue 15 Oct 2019 11:28:01 AM PDT","group":"Applications/Internet","size":834674,"license":"GPLv3+","signature":"RSA/SHA256, Mon 29 Apr 2019 08:47:46 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"rsync-3.1.2-6.el7_6.1.src.rpm","build_date":"Thu 25 Apr 2019 10:18:00 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://rsync.samba.org/","summary":"A program for synchronizing files over a network","description":"Rsync uses a reliable algorithm to bring remote and host files into sync very quickly. Rsync is fast because it just sends the differences in the files over the network instead of sending the complete files. Rsync is often used as a very powerful mirroring process or just as a more capable replacement for the rcp command. A technical report which describes the rsync algorithm is included in this package.","build_epoch":1556212680,"build_epoch_utc":null,"install_date_epoch":1571164081,"install_date_epoch_utc":null},{"name":"json-c","version":"0.11","release":"4.el7_0","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:29 AM PDT","group":"Development/Libraries","size":65593,"license":"MIT","signature":"RSA/SHA256, Sat 05 Jul 2014 08:25:00 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"json-c-0.11-4.el7_0.src.rpm","build_date":"Tue 24 Jun 2014 05:18:58 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/json-c/json-c/wiki","summary":"A JSON implementation in C","description":"JSON-C implements a reference counting object model that allows you to easily construct JSON objects in C, output them as JSON formatted strings and parse JSON formatted strings back into the C representation of JSON objects.","build_epoch":1403612338,"build_epoch_utc":null,"install_date_epoch":1565891609,"install_date_epoch_utc":null},{"name":"grub2-common","epoch":1,"version":"2.02","release":"0.80.el7.centos","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:21:16 AM PDT","group":"System Environment/Base","size":3915366,"license":"GPLv3+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:57:37 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"grub2-2.02-0.80.el7.centos.src.rpm","build_date":"Thu 08 Aug 2019 04:31:11 AM PDT","build_host":"kbuilder.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/grub/","summary":"grub2 common layout","description":"This package provides some directories which are required by various grub2 subpackages.","build_epoch":1565263871,"build_epoch_utc":null,"install_date_epoch":1571242876,"install_date_epoch_utc":null},{"name":"bind-license","epoch":32,"version":"9.11.4","release":"9.P2.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:21:17 AM PDT","group":"Unspecified","size":29711,"license":"MPLv2.0","signature":"RSA/SHA256, Thu 22 Aug 2019 02:56:52 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"bind-9.11.4-9.P2.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:20:30 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.isc.org/products/BIND/","summary":"License of the BIND DNS suite","description":"Contains license of the BIND DNS suite.","build_epoch":1565266830,"build_epoch_utc":null,"install_date_epoch":1571242877,"install_date_epoch_utc":null},{"name":"bash","version":"4.2.46","release":"33.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:18 AM PDT","group":"System Environment/Shells","size":3667788,"license":"GPLv3+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:20:37 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"bash-4.2.46-33.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:09:21 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/bash","summary":"The GNU Bourne Again shell","description":"The GNU Bourne Again shell (Bash) is a shell or command language interpreter that is compatible with the Bourne shell (sh). Bash incorporates useful features from the Korn shell (ksh) and the C shell (csh). Most sh scripts can be run by bash without modification.","build_epoch":1565266161,"build_epoch_utc":null,"install_date_epoch":1571242878,"install_date_epoch_utc":null},{"name":"nspr","version":"4.21.0","release":"1.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:26 AM PDT","group":"System Environment/Libraries","size":287576,"license":"MPLv2.0","signature":"RSA/SHA256, Thu 22 Aug 2019 02:36:23 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"nspr-4.21.0-1.el7.src.rpm","build_date":"Thu 08 Aug 2019 06:16:40 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.mozilla.org/projects/nspr/","summary":"Netscape Portable Runtime","description":"NSPR provides platform independence for non-GUI operating system facilities. These facilities include threads, thread synchronization, normal file and network I/O, interval timing and calendar time, basic memory management (malloc and free) and shared library linking.","build_epoch":1565313400,"build_epoch_utc":null,"install_date_epoch":1571242886,"install_date_epoch_utc":null},{"name":"polkit-pkla-compat","version":"0.1","release":"4.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:32 AM PDT","group":"Unspecified","size":82409,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 09:32:08 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"polkit-pkla-compat-0.1-4.el7.src.rpm","build_date":"Mon 09 Jun 2014 03:08:34 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://fedorahosted.org/polkit-pkla-compat/","summary":"Rules for polkit to add compatibility with pklocalauthority","description":"A polkit JavaScript rule and associated helpers that mostly provide compatibility with the .pkla file format supported in polkit <= 0.105 for users of later polkit releases.","build_epoch":1402351714,"build_epoch_utc":null,"install_date_epoch":1565891612,"install_date_epoch_utc":null},{"name":"libcap","version":"2.22","release":"10.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:27 AM PDT","group":"System Environment/Libraries","size":107365,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:29:10 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libcap-2.22-10.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:12:45 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://ftp.kernel.org/pub/linux/libs/security/linux-privs/kernel-2.6/","summary":"Library for getting and setting POSIX.1e capabilities","description":"libcap is a library for getting and setting POSIX.1e (formerly POSIX 6) draft 15 capabilities.","build_epoch":1565309565,"build_epoch_utc":null,"install_date_epoch":1571242887,"install_date_epoch_utc":null},{"name":"libuuid","version":"2.23.2","release":"61.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:28 AM PDT","group":"Development/Libraries","size":20278,"license":"BSD","signature":"RSA/SHA256, Thu 22 Aug 2019 02:33:45 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"util-linux-2.23.2-61.el7.src.rpm","build_date":"Thu 08 Aug 2019 08:10:20 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://en.wikipedia.org/wiki/Util-linux","summary":"Universally unique ID library","description":"This is the universally unique ID library, part of util-linux. The libuuid library generates and parses 128-bit universally unique id's (UUID's). A UUID is an identifier that is unique across both space and time, with respect to the space of all UUIDs. A UUID can be used for multiple purposes, from tagging objects with an extremely short lifetime, to reliably identifying very persistent objects across a network. See also the \"uuid\" package, which is a separate implementation.","build_epoch":1565320220,"build_epoch_utc":null,"install_date_epoch":1571242888,"install_date_epoch_utc":null},{"name":"os-prober","version":"1.58","release":"9.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:33 AM PDT","group":"System Environment/Base","size":97946,"license":"GPLv2+ and GPL+","signature":"RSA/SHA256, Sun 20 Nov 2016 11:50:19 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"os-prober-1.58-9.el7.src.rpm","build_date":"Sat 05 Nov 2016 08:30:02 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://kitenet.net/~joey/code/os-prober/","summary":"Probes disks on the system for installed operating systems","description":"This package detects other OSes available on a system and outputs the results in a generic machine-readable format. Support for new OSes and Linux distributions can be added easily.","build_epoch":1478403002,"build_epoch_utc":null,"install_date_epoch":1565891613,"install_date_epoch_utc":null},{"name":"shadow-utils","epoch":2,"version":"4.6","release":"5.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:29 AM PDT","group":"System Environment/Base","size":3887289,"license":"BSD and GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:43:30 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"shadow-utils-4.6-5.el7.src.rpm","build_date":"Thu 08 Aug 2019 07:51:03 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://pkg-shadow.alioth.debian.org/","summary":"Utilities for managing accounts and shadow password files","description":"The shadow-utils package includes the necessary programs for converting UNIX password files to the shadow password format, plus programs for managing user and group accounts. The pwconv command converts passwords to the shadow password format. The pwunconv command unconverts shadow passwords and generates a passwd file (a standard UNIX password file). The pwck command checks the integrity of password and shadow files. The lastlog command prints out the last login times for all users. The useradd, userdel, and usermod commands are used for managing user accounts. The groupadd, groupdel, and groupmod commands are used for managing group accounts.","build_epoch":1565319063,"build_epoch_utc":null,"install_date_epoch":1571242889,"install_date_epoch_utc":null},{"name":"crontabs","version":"1.11","release":"6.20121102git.el7","architecture":"noarch","install_date":"Thu 15 Aug 2019 10:53:33 AM PDT","group":"System Environment/Base","size":3700,"license":"Public Domain and GPLv2","signature":"RSA/SHA256, Thu 03 Jul 2014 06:02:43 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"crontabs-1.11-6.20121102git.el7.src.rpm","build_date":"Mon 09 Jun 2014 03:14:31 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://fedorahosted.org/crontabs","summary":"Root crontab files used to schedule the execution of programs","description":"This package is used by Fedora mainly for executing files by cron. The crontabs package contains root crontab files and directories. You will need to install cron daemon to run the jobs from the crontabs. The cron daemon such as cronie or fcron checks the crontab files to see when particular commands are scheduled to be executed. If commands are scheduled, it executes them. Crontabs handles a basic system function, so it should be installed on your system.","build_epoch":1402352071,"build_epoch_utc":null,"install_date_epoch":1565891613,"install_date_epoch_utc":null},{"name":"diffutils","version":"3.3","release":"5.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:32 AM PDT","group":"Applications/Text","size":1065607,"license":"GPLv3+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:22:21 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"diffutils-3.3-5.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:11:40 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/diffutils/diffutils.html","summary":"A GNU collection of diff utilities","diffutils_includes_four_utilities":"diff, cmp, diff3 and sdiff. Diff","description":"Diffutils includes four utilities: diff, cmp, diff3 and sdiff. Diff compares two files and shows the differences, line by line. The cmp command shows the offset and line numbers where two files differ, or cmp can show the characters that differ between the two files. The diff3 command shows the differences between three files. Diff3 can be used when two people have made independent changes to a common original; diff3 can produce a merged file that contains both sets of changes and warnings about conflicts. The sdiff command can be used to merge two files interactively. Install diffutils if you need to compare text files.","build_epoch":1565305900,"build_epoch_utc":null,"install_date_epoch":1571242892,"install_date_epoch_utc":null},{"name":"nss-pem","version":"1.0.3","release":"7.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:33 AM PDT","group":"Unspecified","size":205531,"license":"MPLv1.1","signature":"RSA/SHA256, Thu 22 Aug 2019 02:36:27 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"nss-pem-1.0.3-7.el7.src.rpm","build_date":"Thu 08 Aug 2019 06:16:30 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/kdudka/nss-pem","summary":"PEM file reader for Network Security Services (NSS)","description":"PEM file reader for Network Security Services (NSS), implemented as a PKCS#11 module.","build_epoch":1565313390,"build_epoch_utc":null,"install_date_epoch":1571242893,"install_date_epoch_utc":null},{"name":"iptables","version":"1.4.21","release":"33.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:34 AM PDT","group":"System Environment/Base","size":1555528,"license":"GPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:26:19 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"iptables-1.4.21-33.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:42:19 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.netfilter.org/","summary":"Tools for managing Linux kernel packet filtering capabilities","description":"The iptables utility controls the network packet filtering code in the Linux kernel. If you need to set up firewalls and/or IP masquerading, you should install this package.","build_epoch":1565264539,"build_epoch_utc":null,"install_date_epoch":1571242894,"install_date_epoch_utc":null},{"name":"device-mapper-persistent-data","version":"0.8.5","release":"1.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:35 AM PDT","group":"System Environment/Base","size":1344378,"license":"GPLv3+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:22:15 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"device-mapper-persistent-data-0.8.5-1.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:09:02 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/jthornber/thin-provisioning-tools","summary":"Device-mapper Persistent Data Tools","description":"thin-provisioning-tools contains check,dump,restore,repair,rmap and metadata_size tools to manage device-mapper thin provisioning target metadata devices; cache check,dump,metadata_size,restore and repair tools to manage device-mapper cache metadata devices are included and era check, dump, restore and invalidate to manage snapshot eras","build_epoch":1565305742,"build_epoch_utc":null,"install_date_epoch":1571242895,"install_date_epoch_utc":null},{"name":"ebtables","version":"2.0.10","release":"16.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:36 AM PDT","group":"System Environment/Base","size":350763,"license":"GPLv2+","signature":"RSA/SHA256, Wed 25 Apr 2018 03:57:57 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"ebtables-2.0.10-16.el7.src.rpm","build_date":"Tue 10 Apr 2018 07:44:57 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://ebtables.sourceforge.net/","summary":"Ethernet Bridge frame table administration tool","description":"Ethernet bridge tables is a firewalling tool to transparently filter network traffic passing a bridge. The filtering possibilities are limited to link layer filtering and some basic filtering on higher network layers. This tool is the userspace control for the bridge and ebtables kernel components. The ebtables tool can be used together with the other Linux filtering tools, like iptables. There are no known incompatibility issues.","build_epoch":1523414697,"build_epoch_utc":null,"install_date_epoch":1565891616,"install_date_epoch_utc":null},{"name":"python-linux-procfs","version":"0.4.11","release":"4.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:21:36 AM PDT","group":"System Environment/Libraries","size":96890,"license":"GPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 03:00:02 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"python-linux-procfs-0.4.11-4.el7.src.rpm","build_date":"Thu 08 Aug 2019 07:08:25 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://git.kernel.org/pub/scm/libs/python/python-linux-procfs/python-linux-procfs.git","summary":"Linux /proc abstraction classes","description":"Abstractions to extract information from the Linux kernel /proc files.","build_epoch":1565316505,"build_epoch_utc":null,"install_date_epoch":1571242896,"install_date_epoch_utc":null},{"name":"grubby","version":"8.28","release":"26.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:37 AM PDT","group":"System Environment/Base","size":131502,"license":"GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:25:19 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"grubby-8.28-26.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:41:34 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://git.fedorahosted.org/git/grubby.git","summary":"Command line tool for updating bootloader configs","description":"grubby is a command line tool for updating and displaying information about the configuration files for the grub, lilo, elilo (ia64), yaboot (powerpc) and zipl (s390) boot loaders. It is primarily designed to be used from scripts which install new kernels and need to find information about the current boot environment.","build_epoch":1565307694,"build_epoch_utc":null,"install_date_epoch":1571242897,"install_date_epoch_utc":null},{"name":"libcurl","version":"7.29.0","release":"54.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:39 AM PDT","group":"Development/Libraries","size":439320,"license":"MIT","signature":"RSA/SHA256, Thu 22 Aug 2019 02:29:16 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"curl-7.29.0-54.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:02:11 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://curl.haxx.se/","summary":"A library for getting files from web servers","description":"libcurl is a free and easy-to-use client-side URL transfer library, supporting FTP, FTPS, HTTP, HTTPS, SCP, SFTP, TFTP, TELNET, DICT, LDAP, LDAPS, FILE, IMAP, SMTP, POP3 and RTSP. libcurl supports SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload, proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate, Kerberos4), file transfer resume, http proxy tunneling and more.","build_epoch":1565265731,"build_epoch_utc":null,"install_date_epoch":1571242899,"install_date_epoch_utc":null},{"name":"rpm","version":"4.11.3","release":"40.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:40 AM PDT","group":"System Environment/Base","size":2622933,"license":"GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:42:32 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"rpm-4.11.3-40.el7.src.rpm","build_date":"Tue 06 Aug 2019 03:50:54 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.rpm.org/","summary":"The RPM package management system","description":"The RPM Package Manager (RPM) is a powerful command line driven package management system capable of installing, uninstalling, verifying, querying, and updating software packages. Each software package consists of an archive of files along with information about the package like its version, a description, etc.","build_epoch":1565131854,"build_epoch_utc":null,"install_date_epoch":1571242900,"install_date_epoch_utc":null},{"name":"yum-plugin-fastestmirror","version":"1.1.31","release":"52.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:21:40 AM PDT","group":"System Environment/Base","size":53895,"license":"GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 03:02:01 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"yum-utils-1.1.31-52.el7.src.rpm","build_date":"Thu 08 Aug 2019 08:26:47 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://yum.baseurl.org/download/yum-utils/","summary":"Yum plugin which chooses fastest repository from a mirrorlist","description":"This plugin sorts each repository's mirrorlist by connection speed prior to downloading packages.","build_epoch":1565321207,"build_epoch_utc":null,"install_date_epoch":1571242900,"install_date_epoch_utc":null},{"name":"oci-umount","epoch":2,"version":"2.5","release":"3.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:41 AM PDT","group":"Applications/Text","size":67399,"license":"GPLv3+","signature":"RSA/SHA256, Mon 16 Sep 2019 05:33:35 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"oci-umount-2.5-3.el7.src.rpm","build_date":"Sun 15 Sep 2019 07:05:17 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/containers/oci-umount","summary":"OCI umount hook for docker","description":"OCI umount hooks umount potential leaked mount points in a containers mount name-spaces","build_epoch":1568556317,"build_epoch_utc":null,"install_date_epoch":1571242901,"install_date_epoch_utc":null},{"name":"kbd","version":"1.15.5","release":"15.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:46 AM PDT","group":"System Environment/Base","size":1383499,"license":"GPLv2+","signature":"RSA/SHA256, Mon 12 Nov 2018 06:30:42 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"kbd-1.15.5-15.el7.src.rpm","build_date":"Tue 30 Oct 2018 03:40:00 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://ftp.altlinux.org/pub/people/legion/kbd","summary":"Tools for configuring the console (keyboard, virtual terminals, etc.)","description":"The kbd package contains tools for managing a Linux system's console's behavior, including the keyboard, the screen fonts, the virtual terminals and font files.","build_epoch":1540939200,"build_epoch_utc":null,"install_date_epoch":1565891626,"install_date_epoch_utc":null},{"name":"libteam","version":"1.27","release":"9.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:41 AM PDT","group":"System Environment/Libraries","size":100748,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:33:33 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libteam-1.27-9.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:33:37 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.libteam.org","summary":"Library for controlling team network device","description":"This package contains a library which is a user-space counterpart for team network driver. It provides an API to control team network devices.","build_epoch":1565310817,"build_epoch_utc":null,"install_date_epoch":1571242901,"install_date_epoch_utc":null},{"name":"ncurses","version":"5.9","release":"14.20130511.el7_4","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:08 AM PDT","group":"System Environment/Base","size":439378,"license":"MIT","signature":"RSA/SHA256, Thu 07 Sep 2017 05:43:11 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"ncurses-5.9-14.20130511.el7_4.src.rpm","build_date":"Wed 06 Sep 2017 03:08:29 PM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://invisible-island.net/ncurses/ncurses.html","summary":"Ncurses support utilities","description":"The curses library routines are a terminal-independent method of updating character screens with reasonable optimization. The ncurses (new curses) library is a freely distributable replacement for the discontinued 4.4 BSD classic curses library. This package contains support utilities, including a terminfo compiler tic, a decompiler infocmp, clear, tput, tset, and a termcap conversion tool captoinfo.","build_epoch":1504735709,"build_epoch_utc":null,"install_date_epoch":1565891588,"install_date_epoch_utc":null},{"name":"filesystem","version":"3.2","release":"25.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:12 AM PDT","group":"System Environment/Base","size":0,"license":"Public Domain","signature":"RSA/SHA256, Wed 25 Apr 2018 03:59:36 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"filesystem-3.2-25.el7.src.rpm","build_date":"Tue 10 Apr 2018 10:00:29 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://pagure.io/filesystem","summary":"The basic directory layout for a Linux system","description":"The filesystem package is one of the basic packages that is installed on a Linux system. Filesystem contains the basic directory layout for a Linux operating system, including the correct permissions for the directories.","build_epoch":1523422829,"build_epoch_utc":null,"install_date_epoch":1565891592,"install_date_epoch_utc":null},{"name":"info","version":"5.1","release":"5.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:16 AM PDT","group":"System Environment/Base","size":494630,"license":"GPLv3+","signature":"RSA/SHA256, Wed 25 Apr 2018 04:05:32 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"texinfo-5.1-5.el7.src.rpm","build_date":"Tue 10 Apr 2018 06:03:36 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/texinfo/","summary":"A stand-alone TTY-based reader for GNU texinfo documentation","description":"The GNU project uses the texinfo file format for much of its documentation. The info package provides a standalone TTY-based browser program for viewing texinfo files.","build_epoch":1523408616,"build_epoch_utc":null,"install_date_epoch":1565891596,"install_date_epoch_utc":null},{"name":"btrfs-progs","version":"4.9.1","release":"1.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:57 AM PDT","group":"System Environment/Base","size":4142307,"license":"GPLv2","signature":"RSA/SHA256, Thu 10 Aug 2017 08:15:01 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"btrfs-progs-4.9.1-1.el7.src.rpm","build_date":"Sun 06 Aug 2017 09:32:37 AM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://btrfs.wiki.kernel.org/index.php/Main_Page","summary":"Userspace programs for btrfs","description":"The btrfs-progs package provides all the userspace programs needed to create, check, modify and correct any inconsistencies in the btrfs filesystem.","build_epoch":1502037157,"build_epoch_utc":null,"install_date_epoch":1565891637,"install_date_epoch_utc":null},{"name":"libsepol","version":"2.5","release":"10.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:16 AM PDT","group":"System Environment/Libraries","size":686640,"license":"LGPLv2+","signature":"RSA/SHA256, Mon 12 Nov 2018 06:37:35 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"libsepol-2.5-10.el7.src.rpm","build_date":"Tue 30 Oct 2018 02:36:15 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/SELinuxProject/selinux/wiki","summary":"SELinux binary policy manipulation library","description":"Security-enhanced Linux is a feature of the Linux® kernel and a number of utilities with enhanced security functionality designed to add mandatory access controls to Linux. The Security-enhanced Linux kernel contains new architectural components originally developed to improve the security of the Flask operating system. These architectural components provide general support for the enforcement of many kinds of mandatory access control policies, including those based on the concepts of Type Enforcement®, Role-based Access Control, and Multi-level Security. libsepol provides an API for the manipulation of SELinux binary policies. It is used by checkpolicy (the policy compiler) and similar tools, as well as by programs like load_policy that need to perform specific transformations on binary policies such as customizing policy boolean settings.","build_epoch":1540935375,"build_epoch_utc":null,"install_date_epoch":1565891596,"install_date_epoch_utc":null},{"name":"libsysfs","version":"2.1.0","release":"16.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:57 AM PDT","group":"System Environment/Libraries","size":149365,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 08:20:01 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"sysfsutils-2.1.0-16.el7.src.rpm","build_date":"Mon 09 Jun 2014 05:06:19 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://sourceforge.net/projects/linux-diag/","summary":"Shared library for interfacing with sysfs","description":"Library used in handling linux kernel sysfs mounts and their various files.","build_epoch":1402358779,"build_epoch_utc":null,"install_date_epoch":1565891637,"install_date_epoch_utc":null},{"name":"libattr","version":"2.4.46","release":"13.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:16 AM PDT","group":"System Environment/Libraries","size":19896,"license":"LGPLv2+","signature":"RSA/SHA256, Wed 25 Apr 2018 04:11:11 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"attr-2.4.46-13.el7.src.rpm","build_date":"Tue 10 Apr 2018 05:40:44 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://acl.bestbits.at/","summary":"Dynamic library for extended attribute support","description":"This package contains the libattr.so dynamic library which contains the extended attribute system calls and library functions.","build_epoch":1523407244,"build_epoch_utc":null,"install_date_epoch":1565891596,"install_date_epoch_utc":null},{"name":"rootfiles","version":"8.1","release":"11.el7","architecture":"noarch","install_date":"Thu 15 Aug 2019 10:53:57 AM PDT","group":"System Environment/Base","size":599,"license":"Public Domain","signature":"RSA/SHA256, Thu 03 Jul 2014 09:50:28 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"rootfiles-8.1-11.el7.src.rpm","build_date":"Mon 09 Jun 2014 01:11:33 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","summary":"The basic required files for the root user's directory","description":"The rootfiles package contains basic required files that are placed in the root user's account. These files are basically the same as those in /etc/skel, which are placed in regular users' home directories.","build_epoch":1402344693,"build_epoch_utc":null,"install_date_epoch":1565891637,"install_date_epoch_utc":null},{"name":"libselinux","version":"2.5","release":"14.1.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:16 AM PDT","group":"System Environment/Libraries","size":217874,"license":"Public Domain","signature":"RSA/SHA256, Mon 12 Nov 2018 06:37:27 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"libselinux-2.5-14.1.el7.src.rpm","build_date":"Tue 30 Oct 2018 02:43:06 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/SELinuxProject/selinux/wiki","summary":"SELinux library and simple utilities","description":"Security-enhanced Linux is a feature of the Linux® kernel and a number of utilities with enhanced security functionality designed to add mandatory access controls to Linux. The Security-enhanced Linux kernel contains new architectural components originally developed to improve the security of the Flask operating system. These architectural components provide general support for the enforcement of many kinds of mandatory access control policies, including those based on the concepts of Type Enforcement®, Role-based Access Control, and Multi-level Security. libselinux provides an API for SELinux applications to get and set process and file security contexts and to obtain security policy decisions. Required for any applications that use the SELinux API.","build_epoch":1540935786,"build_epoch_utc":null,"install_date_epoch":1565891596,"install_date_epoch_utc":null},{"name":"grep","version":"2.20","release":"3.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:16 AM PDT","group":"Applications/Text","size":1195131,"license":"GPLv3+","signature":"RSA/SHA256, Thu 10 Aug 2017 09:26:26 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"grep-2.20-3.el7.src.rpm","build_date":"Wed 02 Aug 2017 11:58:44 PM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/grep/","summary":"Pattern matching utilities","description":"The GNU versions of commonly used grep utilities. Grep searches through textual input for lines which contain a match to a specified pattern and then prints the matching lines. GNU's grep utilities include grep, egrep and fgrep. GNU grep is needed by many scripts, so it shall be installed on every system.","build_epoch":1501743524,"build_epoch_utc":null,"install_date_epoch":1565891596,"install_date_epoch_utc":null},{"name":"keyutils-libs","version":"1.5.8","release":"3.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:16 AM PDT","group":"System Environment/Base","size":42138,"license":"GPLv2+ and LGPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 07:30:59 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"keyutils-1.5.8-3.el7.src.rpm","build_date":"Mon 09 Jun 2014 07:17:55 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://people.redhat.com/~dhowells/keyutils/","summary":"Key utilities library","description":"This package provides a wrapper library for the key management facility system calls.","build_epoch":1402366675,"build_epoch_utc":null,"install_date_epoch":1565891596,"install_date_epoch_utc":null},{"name":"libverto","version":"0.2.5","release":"4.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:16 AM PDT","group":"Unspecified","size":23060,"license":"MIT","signature":"RSA/SHA256, Thu 03 Jul 2014 08:23:48 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libverto-0.2.5-4.el7.src.rpm","build_date":"Tue 10 Jun 2014 12:44:21 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://fedorahosted.org/libverto/","summary":"Main loop abstraction library","description":"libverto provides a way for libraries to expose asynchronous interfaces without having to choose a particular event loop, offloading this decision to the end application which consumes the library. If you are packaging an application, not library, based on libverto, you should depend either on a specific implementation module or you can depend on the virtual provides 'libverto-module-base'. This will ensure that you have at least one module installed that provides io, timeout and signal functionality. Currently glib is the only module that does not provide these three because it lacks signal. However, glib will support signal in the future.","build_epoch":1402386261,"build_epoch_utc":null,"install_date_epoch":1565891596,"install_date_epoch_utc":null},{"name":"p11-kit-trust","version":"0.23.5","release":"3.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:16 AM PDT","group":"Unspecified","size":437261,"license":"BSD","signature":"RSA/SHA256, Thu 10 Aug 2017 11:44:51 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"p11-kit-0.23.5-3.el7.src.rpm","build_date":"Fri 04 Aug 2017 04:37:00 PM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://p11-glue.freedesktop.org/p11-kit.html","summary":"System trust module from p11-kit","description":"The p11-kit-trust package contains a system trust PKCS#11 module which contains certificate anchors and black lists.","build_epoch":1501889820,"build_epoch_utc":null,"install_date_epoch":1565891596,"install_date_epoch_utc":null},{"name":"ivtv-firmware","epoch":2,"version":"20080701","release":"26.el7","architecture":"noarch","install_date":"Thu 15 Aug 2019 10:54:00 AM PDT","group":"System Environment/Kernel","size":857256,"license":"Redistributable, no modification permitted","signature":"RSA/SHA256, Thu 03 Jul 2014 07:10:03 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"ivtv-firmware-20080701-26.el7.src.rpm","build_date":"Mon 09 Jun 2014 05:06:24 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://dl.ivtvdriver.org/ivtv/firmware/","summary":"Firmware for the Hauppauge PVR 250/350/150/500/USB2 model series","description":"This package contains the firmware for WinTV Hauppauge PVR 250/350/150/500/USB2 cards.","build_epoch":1402358784,"build_epoch_utc":null,"install_date_epoch":1565891640,"install_date_epoch_utc":null},{"name":"xz-libs","version":"5.2.2","release":"1.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:18 AM PDT","group":"System Environment/Libraries","size":239967,"license":"LGPLv2+","signature":"RSA/SHA256, Sun 20 Nov 2016 01:02:51 PM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"xz-5.2.2-1.el7.src.rpm","build_date":"Sat 05 Nov 2016 08:28:07 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://tukaani.org/xz/","summary":"Libraries for decoding LZMA compression","description":"Libraries for decoding files compressed with LZMA or XZ utils.","build_epoch":1478359687,"build_epoch_utc":null,"install_date_epoch":1565891598,"install_date_epoch_utc":null},{"name":"gpg-pubkey","version":"rpm-4.11.3 (NSS-3)","release":"53a7ff4b","architecture":"(none)","install_date":"Thu 15 Aug 2019 12:00:08 PM PDT","group":"Public Keys","size":0,"license":"pubkey","signature":"(none)","source_rpm":"(none)","build_date":"Mon 23 Jun 2014 03:19:55 AM PDT","build_host":"localhost","relocations":"(not relocatable)","packager":"CentOS-7 Key (CentOS 7 Official Signing Key) ","summary":"gpg(CentOS-7 Key (CentOS 7 Official Signing Key) )","description":"-----BEGIN PGP PUBLIC KEY BLOCK----- Version: rpm-4.11.3 (NSS-3) mQINBFOn/0sBEADLDyZ+DQHkcTHDQSE0a0B2iYAEXwpPvs67cJ4tmhe/iMOyVMh9 Yw/vBIF8scm6T/vPN5fopsKiW9UsAhGKg0epC6y5ed+NAUHTEa6pSOdo7CyFDwtn 4HF61Esyb4gzPT6QiSr0zvdTtgYBRZjAEPFVu3Dio0oZ5UQZ7fzdZfeixMQ8VMTQ 4y4x5vik9B+cqmGiq9AW71ixlDYVWasgR093fXiD9NLT4DTtK+KLGYNjJ8eMRqfZ Ws7g7C+9aEGHfsGZ/SxLOumx/GfiTloal0dnq8TC7XQ/JuNdB9qjoXzRF+faDUsj WuvNSQEqUXW1dzJjBvroEvgTdfCJfRpIgOrc256qvDMp1SxchMFltPlo5mbSMKu1 x1p4UkAzx543meMlRXOgx2/hnBm6H6L0FsSyDS6P224yF+30eeODD4Ju4BCyQ0jO IpUxmUnApo/m0eRelI6TRl7jK6aGqSYUNhFBuFxSPKgKYBpFhVzRM63Jsvib82rY 438q3sIOUdxZY6pvMOWRkdUVoz7WBExTdx5NtGX4kdW5QtcQHM+2kht6sBnJsvcB JYcYIwAUeA5vdRfwLKuZn6SgAUKdgeOtuf+cPR3/E68LZr784SlokiHLtQkfk98j NXm6fJjXwJvwiM2IiFyg8aUwEEDX5U+QOCA0wYrgUQ/h8iathvBJKSc9jQARAQAB tEJDZW50T1MtNyBLZXkgKENlbnRPUyA3IE9mZmljaWFsIFNpZ25pbmcgS2V5KSA8 c2VjdXJpdHlAY2VudG9zLm9yZz6JAjUEEwECAB8FAlOn/0sCGwMGCwkIBwMCBBUC CAMDFgIBAh4BAheAAAoJECTGqKf0qA61TN0P/2730Th8cM+d1pEON7n0F1YiyxqG QzwpC2Fhr2UIsXpi/lWTXIG6AlRvrajjFhw9HktYjlF4oMG032SnI0XPdmrN29lL F+ee1ANdyvtkw4mMu2yQweVxU7Ku4oATPBvWRv+6pCQPTOMe5xPG0ZPjPGNiJ0xw 4Ns+f5Q6Gqm927oHXpylUQEmuHKsCp3dK/kZaxJOXsmq6syY1gbrLj2Anq0iWWP4 Tq8WMktUrTcc+zQ2pFR7ovEihK0Rvhmk6/N4+4JwAGijfhejxwNX8T6PCuYs5Jiv hQvsI9FdIIlTP4XhFZ4N9ndnEwA4AH7tNBsmB3HEbLqUSmu2Rr8hGiT2Plc4Y9AO aliW1kOMsZFYrX39krfRk2n2NXvieQJ/lw318gSGR67uckkz2ZekbCEpj/0mnHWD 3R6V7m95R6UYqjcw++Q5CtZ2tzmxomZTf42IGIKBbSVmIS75WY+cBULUx3PcZYHD ZqAbB0Dl4MbdEH61kOI8EbN/TLl1i077r+9LXR1mOnlC3GLD03+XfY8eEBQf7137 YSMiW5r/5xwQk7xEcKlbZdmUJp3ZDTQBXT06vavvp3jlkqqH9QOE8ViZZ6aKQLqv pL+4bs52jzuGwTMT7gOR5MzD+vT0fVS7Xm8MjOxvZgbHsAgzyFGlI1ggUQmU7lu3 uPNL0eRx4S1G4Jn5 =OGYX -----END PGP PUBLIC KEY BLOCK-----","build_epoch":1403518795,"build_epoch_utc":null,"install_date_epoch":1565895608,"install_date_epoch_utc":null},{"name":"oci-systemd-hook","epoch":1,"version":"0.2.0","release":"1.git05e6923.el7_6","architecture":"x86_64","install_date":"Thu 15 Aug 2019 12:00:19 PM PDT","group":"Applications/Text","size":72608,"license":"GPLv3+","signature":"RSA/SHA256, Tue 18 Jun 2019 11:59:33 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"oci-systemd-hook-0.2.0-1.git05e6923.el7_6.src.rpm","build_date":"Thu 13 Jun 2019 09:12:26 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/projectatomic/oci-systemd-hook","summary":"OCI systemd hook for docker","description":"OCI systemd hooks enable running systemd in a OCI runc/docker container.","build_epoch":1560442346,"build_epoch_utc":null,"install_date_epoch":1565895619,"install_date_epoch_utc":null},{"name":"python-ipaddress","version":"1.0.16","release":"2.el7","architecture":"noarch","install_date":"Thu 15 Aug 2019 12:00:19 PM PDT","group":"Unspecified","size":232357,"license":"Python","signature":"RSA/SHA256, Sun 20 Nov 2016 12:15:58 PM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"python-ipaddress-1.0.16-2.el7.src.rpm","build_date":"Sat 05 Nov 2016 09:37:10 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://pypi.python.org/pypi/ipaddress/1.0.16","summary":"Port of the python 3.3+ ipaddress module to 2.6+","description":"ipaddress provides the capabilities to create, manipulate and operate on IPv4 and IPv6 addresses and networks. The functions and classes in this module make it straightforward to handle various tasks related to IP addresses, including checking whether or not two hosts are on the same subnet, iterating over all hosts in a particular subnet, checking whether or not a string represents a valid IP address or network definition, and so on.","build_epoch":1478363830,"build_epoch_utc":null,"install_date_epoch":1565895619,"install_date_epoch_utc":null},{"name":"libgpg-error","version":"1.12","release":"3.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:18 AM PDT","group":"System Environment/Libraries","size":350865,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 07:49:22 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libgpg-error-1.12-3.el7.src.rpm","build_date":"Tue 10 Jun 2014 01:46:48 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"ftp://ftp.gnupg.org/gcrypt/libgpg-error/","summary":"Library for error values used by GnuPG components","description":"This is a library that defines common error values for all GnuPG components. Among these are GPG, GPGSM, GPGME, GPG-Agent, libgcrypt, pinentry, SmartCard Daemon and possibly more in the future.","build_epoch":1402390008,"build_epoch_utc":null,"install_date_epoch":1565891598,"install_date_epoch_utc":null},{"name":"libyaml","version":"0.1.4","release":"11.el7_0","architecture":"x86_64","install_date":"Thu 15 Aug 2019 12:00:19 PM PDT","group":"System Environment/Libraries","size":132993,"license":"MIT","signature":"RSA/SHA256, Thu 29 Jan 2015 03:55:31 PM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"libyaml-0.1.4-11.el7_0.src.rpm","build_date":"Thu 29 Jan 2015 03:44:10 PM PST","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://pyyaml.org/","summary":"YAML 1.1 parser and emitter written in C","description":"YAML is a data serialization format designed for human readability and interaction with scripting languages. LibYAML is a YAML parser and emitter written in C.","build_epoch":1422575050,"build_epoch_utc":null,"install_date_epoch":1565895619,"install_date_epoch_utc":null},{"name":"gzip","version":"1.5","release":"10.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:18 AM PDT","group":"Applications/File","size":250440,"license":"GPLv3+ and GFDL","signature":"RSA/SHA256, Wed 25 Apr 2018 04:04:30 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"gzip-1.5-10.el7.src.rpm","build_date":"Tue 10 Apr 2018 05:01:18 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gzip.org/","summary":"The GNU data compression program","description":"The gzip package contains the popular GNU gzip data compression program. Gzipped files have a .gz extension. Gzip should be installed on your system, because it is a very commonly used data compression program.","build_epoch":1523404878,"build_epoch_utc":null,"install_date_epoch":1565891598,"install_date_epoch_utc":null},{"name":"python-backports-ssl_match_hostname","version":"3.5.0.1","release":"1.el7","architecture":"noarch","install_date":"Thu 15 Aug 2019 12:00:19 PM PDT","group":"Unspecified","size":18824,"license":"Python","signature":"RSA/SHA256, Wed 25 Apr 2018 04:38:25 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"python-backports-ssl_match_hostname-3.5.0.1-1.el7.src.rpm","build_date":"Tue 10 Apr 2018 07:25:31 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://bitbucket.org/brandon/backports.ssl_match_hostname","summary":"The ssl.match_hostname() function from Python 3","description":"The Secure Sockets layer is only actually secure if you check the hostname in the certificate returned by the server to which you are connecting, and verify that it matches to hostname that you are trying to reach. But the matching logic, defined in RFC2818, can be a bit tricky to implement on your own. So the ssl package in the Standard Library of Python 3.2 now includes a match_hostname() function for performing this check instead of requiring every application to implement the check separately. This backport brings match_hostname() to users of earlier versions of Python. The actual code is only slightly modified from Python 3.5.","build_epoch":1523413531,"build_epoch_utc":null,"install_date_epoch":1565895619,"install_date_epoch_utc":null},{"name":"expat","version":"2.1.0","release":"10.el7_3","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:18 AM PDT","group":"System Environment/Libraries","size":208315,"license":"MIT","signature":"RSA/SHA256, Mon 28 Nov 2016 02:32:05 PM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"expat-2.1.0-10.el7_3.src.rpm","build_date":"Mon 28 Nov 2016 02:27:00 PM PST","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.libexpat.org/","summary":"An XML parser library","description":"This is expat, the C library for parsing XML, written by James Clark. Expat is a stream oriented XML parser. This means that you register handlers with the parser prior to starting the parse. These handlers are called when the parser discovers the associated structures in the document being parsed. A start tag is an example of the kind of structures for which you may register handlers.","build_epoch":1480372020,"build_epoch_utc":null,"install_date_epoch":1565891598,"install_date_epoch_utc":null},{"name":"checkpolicy","version":"2.5","release":"8.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 12:00:20 PM PDT","group":"Development/System","size":1288327,"license":"GPLv2","signature":"RSA/SHA256, Mon 12 Nov 2018 06:22:21 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"checkpolicy-2.5-8.el7.src.rpm","build_date":"Tue 30 Oct 2018 02:48:39 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","summary":"SELinux policy compiler","description":"Security-enhanced Linux is a feature of the Linux® kernel and a number of utilities with enhanced security functionality designed to add mandatory access controls to Linux. The Security-enhanced Linux kernel contains new architectural components originally developed to improve the security of the Flask operating system. These architectural components provide general support for the enforcement of many kinds of mandatory access control policies, including those based on the concepts of Type Enforcement®, Role-based Access Control, and Multi-level Security. This package contains checkpolicy, the SELinux policy compiler. Only required for building policies.","build_epoch":1540936119,"build_epoch_utc":null,"install_date_epoch":1565895620,"install_date_epoch_utc":null},{"name":"findutils","epoch":1,"version":"4.5.11","release":"6.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:18 AM PDT","group":"Applications/File","size":1855882,"license":"GPLv3+","signature":"RSA/SHA256, Mon 12 Nov 2018 06:25:15 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"findutils-4.5.11-6.el7.src.rpm","build_date":"Tue 30 Oct 2018 09:43:54 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/findutils/","summary":"The GNU versions of find utilities (find and xargs)","description":"The findutils package contains programs which will help you locate files on your system. The find utility searches through a hierarchy of directories looking for files which match a certain set of criteria (such as a file name pattern). The xargs utility builds and executes command lines from standard input arguments (usually lists of file names generated by the find command). You should install findutils because it includes tools that are very useful for finding things on your system.","build_epoch":1540917834,"build_epoch_utc":null,"install_date_epoch":1565891598,"install_date_epoch_utc":null},{"name":"libsemanage-python","version":"2.5","release":"14.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 12:00:20 PM PDT","group":"Development/Libraries","size":451817,"license":"LGPLv2+","signature":"RSA/SHA256, Mon 12 Nov 2018 06:37:33 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"libsemanage-2.5-14.el7.src.rpm","build_date":"Tue 30 Oct 2018 04:44:33 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/SELinuxProject/selinux/wiki","summary":"semanage python bindings for libsemanage","description":"The libsemanage-python package contains the python bindings for developing SELinux management applications.","build_epoch":1540943073,"build_epoch_utc":null,"install_date_epoch":1565895620,"install_date_epoch_utc":null},{"name":"python-pytoml","version":"0.1.14","release":"1.git7dea353.el7","architecture":"noarch","install_date":"Thu 15 Aug 2019 12:00:20 PM PDT","group":"Unspecified","size":37995,"license":"MIT","signature":"RSA/SHA256, Tue 28 Nov 2017 01:46:33 PM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"python-pytoml-0.1.14-1.git7dea353.el7.src.rpm","build_date":"Tue 28 Nov 2017 01:35:01 PM PST","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/avakar/pytoml","summary":"Parser for TOML","description":"A parser for TOML-0.4.0","build_epoch":1511904901,"build_epoch_utc":null,"install_date_epoch":1565895620,"install_date_epoch_utc":null},{"name":"cracklib","version":"2.9.0","release":"11.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:19 AM PDT","group":"System Environment/Libraries","size":209610,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 06:02:11 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"cracklib-2.9.0-11.el7.src.rpm","build_date":"Mon 09 Jun 2014 10:42:13 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://sourceforge.net/projects/cracklib/","summary":"A password-checking library","several_tests_on_passwords":"it tries to generate words from a username","description":"CrackLib tests passwords to determine whether they match certain security-oriented characteristics, with the purpose of stopping users from choosing passwords that are easy to guess. CrackLib performs several tests on passwords: it tries to generate words from a username and gecos entry and checks those words against the password; it checks for simplistic patterns in passwords; and it checks for the password in a dictionary. CrackLib is actually a library containing a particular C function which is used to check the password, as well as other C functions. CrackLib is not a replacement for a passwd program; it must be used in conjunction with an existing passwd program. Install the cracklib package if you need a program to check users' passwords to see if they are at least minimally secure. If you install CrackLib, you will also want to install the cracklib-dicts package.","build_epoch":1402378933,"build_epoch_utc":null,"install_date_epoch":1565891599,"install_date_epoch_utc":null},{"name":"python-IPy","version":"0.75","release":"6.el7","architecture":"noarch","install_date":"Thu 15 Aug 2019 12:00:20 PM PDT","group":"System Environment/Libraries","size":121946,"license":"BSD","signature":"RSA/SHA256, Thu 03 Jul 2014 09:39:22 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"python-IPy-0.75-6.el7.src.rpm","build_date":"Tue 10 Jun 2014 12:18:29 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/haypo/python-ipy","summary":"Python module for handling IPv4 and IPv6 Addresses and Networks","description":"IPy is a Python module for handling IPv4 and IPv6 Addresses and Networks in a fashion similar to perl's Net::IP and friends. The IP class allows a comfortable parsing and handling for most notations in use for IPv4 and IPv6 Addresses and Networks.","build_epoch":1402384709,"build_epoch_utc":null,"install_date_epoch":1565895620,"install_date_epoch_utc":null},{"name":"shared-mime-info","version":"1.8","release":"4.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:19 AM PDT","group":"System Environment/Base","size":2379317,"license":"GPLv2+","signature":"RSA/SHA256, Wed 25 Apr 2018 04:46:39 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"shared-mime-info-1.8-4.el7.src.rpm","build_date":"Tue 10 Apr 2018 05:37:03 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://freedesktop.org/Software/shared-mime-info","summary":"Shared MIME information database","description":"This is the freedesktop.org shared MIME info database. Many programs and desktops use the MIME system to represent the types of files. Frequently, it is necessary to work out the correct MIME type for a file. This is generally done by examining the file's name or contents, and looking up the correct MIME type in a database.","build_epoch":1523407023,"build_epoch_utc":null,"install_date_epoch":1565891599,"install_date_epoch_utc":null},{"name":"file","version":"5.11","release":"35.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:19 AM PDT","group":"Applications/File","size":67448,"license":"BSD","signature":"RSA/SHA256, Mon 12 Nov 2018 06:25:08 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"file-5.11-35.el7.src.rpm","build_date":"Tue 30 Oct 2018 11:16:23 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.darwinsys.com/file/","summary":"A utility for determining file types","description":"The file command is used to identify a particular file according to the type of data contained by the file. File can identify many different file types, including ELF binaries, system libraries, RPM packages, and different graphics formats.","build_epoch":1540923383,"build_epoch_utc":null,"install_date_epoch":1565891599,"install_date_epoch_utc":null},{"name":"libaio","version":"0.3.109","release":"13.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:19 AM PDT","group":"System Environment/Libraries","size":39182,"license":"LGPLv2+","signature":"RSA/SHA256, Wed 25 Nov 2015 06:50:55 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"libaio-0.3.109-13.el7.src.rpm","build_date":"Thu 19 Nov 2015 10:37:04 PM PST","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","summary":"Linux-native asynchronous I/O access library","description":"The Linux-native asynchronous I/O facility (\"async I/O\", or \"aio\") has a richer API and capability set than the simple POSIX async I/O facility. This library, libaio, provides the Linux-native API for async I/O. The POSIX async I/O facility requires this library in order to provide kernel-accelerated async I/O capabilities, as do applications which require the Linux-native async I/O API.","build_epoch":1448001424,"build_epoch_utc":null,"install_date_epoch":1565891599,"install_date_epoch_utc":null},{"name":"cracklib-dicts","version":"2.9.0","release":"11.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:20 AM PDT","group":"System Environment/Libraries","size":9389116,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 06:02:17 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"cracklib-2.9.0-11.el7.src.rpm","build_date":"Mon 09 Jun 2014 10:42:13 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://sourceforge.net/projects/cracklib/","summary":"The standard CrackLib dictionaries","description":"The cracklib-dicts package includes the CrackLib dictionaries. CrackLib will need to use the dictionary appropriate to your system, which is normally put in /usr/share/dict/words. Cracklib-dicts also contains the utilities necessary for the creation of new dictionaries. If you are installing CrackLib, you should also install cracklib-dicts.","build_epoch":1402378933,"build_epoch_utc":null,"install_date_epoch":1565891600,"install_date_epoch_utc":null},{"name":"libpwquality","version":"1.2.3","release":"5.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:20 AM PDT","group":"System Environment/Base","size":332421,"license":"BSD or GPLv2+","signature":"RSA/SHA256, Wed 25 Apr 2018 04:17:46 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libpwquality-1.2.3-5.el7.src.rpm","build_date":"Tue 10 Apr 2018 08:58:19 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/libpwquality/libpwquality/","summary":"A library for password generation and password quality checking","description":"This is a library for password quality checks and generation of random passwords that pass the checks. This library uses the cracklib and cracklib dictionaries to perform some of the checks.","build_epoch":1523419099,"build_epoch_utc":null,"install_date_epoch":1565891600,"install_date_epoch_utc":null},{"name":"libassuan","version":"2.1.0","release":"3.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:20 AM PDT","group":"System Environment/Libraries","size":155391,"license":"LGPLv2+ and GPLv3+","signature":"RSA/SHA256, Thu 03 Jul 2014 07:35:59 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libassuan-2.1.0-3.el7.src.rpm","build_date":"Mon 09 Jun 2014 12:14:00 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnupg.org/","summary":"GnuPG IPC library","description":"This is the IPC library used by GnuPG 2, GPGME and a few other packages.","build_epoch":1402341240,"build_epoch_utc":null,"install_date_epoch":1565891600,"install_date_epoch_utc":null},{"name":"xz","version":"5.2.2","release":"1.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:20 AM PDT","group":"Applications/File","size":798130,"license":"LGPLv2+","signature":"RSA/SHA256, Sun 20 Nov 2016 01:02:27 PM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"xz-5.2.2-1.el7.src.rpm","build_date":"Sat 05 Nov 2016 08:28:07 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://tukaani.org/xz/","summary":"LZMA compression utilities","description":"XZ Utils are an attempt to make LZMA compression easy to use on free (as in freedom) operating systems. This is achieved by providing tools and libraries which are similar to use than the equivalents of the most popular existing compression algorithms. LZMA is a general purpose compression algorithm designed by Igor Pavlov as part of 7-Zip. It provides high compression ratio while keeping the decompression speed fast.","build_epoch":1478359687,"build_epoch_utc":null,"install_date_epoch":1565891600,"install_date_epoch_utc":null},{"name":"libidn","version":"1.28","release":"4.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:20 AM PDT","group":"System Environment/Libraries","size":630407,"license":"LGPLv2+ and GPLv3+ and GFDL","signature":"RSA/SHA256, Wed 25 Nov 2015 06:58:28 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"libidn-1.28-4.el7.src.rpm","build_date":"Sat 21 Nov 2015 09:00:48 AM PST","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/libidn/","summary":"Internationalized Domain Name support library","description":"GNU Libidn is an implementation of the Stringprep, Punycode and IDNA specifications defined by the IETF Internationalized Domain Names (IDN) working group, used for internationalized domain names.","build_epoch":1448125248,"build_epoch_utc":null,"install_date_epoch":1565891600,"install_date_epoch_utc":null},{"name":"sysvinit-tools","version":"2.88","release":"14.dsf.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:21 AM PDT","group":"System Environment/Base","size":109118,"license":"GPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 10:09:36 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"sysvinit-2.88-14.dsf.el7.src.rpm","build_date":"Mon 09 Jun 2014 04:16:44 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://savannah.nongnu.org/projects/sysvinit/","summary":"Tools used for process and utmp management.","description":"The sysvinit-tools package contains various tools used for process management.","build_epoch":1402355804,"build_epoch_utc":null,"install_date_epoch":1565891601,"install_date_epoch_utc":null},{"name":"tcp_wrappers-libs","version":"7.6","release":"77.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:21 AM PDT","group":"System Environment/Libraries","size":134602,"license":"BSD","signature":"RSA/SHA256, Thu 03 Jul 2014 10:11:07 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"tcp_wrappers-7.6-77.el7.src.rpm","build_date":"Mon 09 Jun 2014 09:41:54 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"ftp://ftp.porcupine.org/pub/security/index.html","summary":"Libraries for tcp_wrappers","description":"tcp_wrappers-libs contains the libraries of the tcp_wrappers package.","build_epoch":1402375314,"build_epoch_utc":null,"install_date_epoch":1565891601,"install_date_epoch_utc":null},{"name":"newt","version":"0.52.15","release":"4.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:21 AM PDT","group":"System Environment/Libraries","size":185196,"license":"LGPLv2","signature":"RSA/SHA256, Thu 03 Jul 2014 08:56:55 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"newt-0.52.15-4.el7.src.rpm","build_date":"Tue 10 Jun 2014 12:48:12 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://fedorahosted.org/newt/","summary":"A library for text mode user interfaces","description":"Newt is a programming library for color text mode, widget based user interfaces. Newt can be used to add stacked windows, entry widgets, checkboxes, radio buttons, labels, plain text fields, scrollbars, etc., to text mode user interfaces. This package also contains the shared library needed by programs built with newt, as well as a /usr/bin/dialog replacement called whiptail. Newt is based on the slang library.","build_epoch":1402386492,"build_epoch_utc":null,"install_date_epoch":1565891601,"install_date_epoch_utc":null},{"name":"lzo","version":"2.06","release":"8.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:21 AM PDT","group":"System Environment/Libraries","size":165360,"license":"GPLv2+","signature":"RSA/SHA256, Wed 25 Nov 2015 07:15:43 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"lzo-2.06-8.el7.src.rpm","build_date":"Thu 19 Nov 2015 11:26:41 PM PST","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.oberhumer.com/opensource/lzo/","summary":"Data compression library with very fast (de)compression","description":"LZO is a portable lossless data compression library written in ANSI C. It offers pretty fast compression and very fast decompression. Decompression requires no memory. In addition there are slower compression levels achieving a quite competitive compression ratio while still decompressing at this very high speed.","build_epoch":1448004401,"build_epoch_utc":null,"install_date_epoch":1565891601,"install_date_epoch_utc":null},{"name":"bind-libs","epoch":32,"version":"9.11.4","release":"9.P2.el7","architecture":"x86_64","install_date":"Wed 23 Oct 2019 10:53:22 AM PDT","group":"Unspecified","size":189424,"license":"MPLv2.0","signature":"RSA/SHA256, Thu 22 Aug 2019 02:20:48 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"bind-9.11.4-9.P2.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:20:30 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.isc.org/products/BIND/","summary":"Libraries used by the BIND DNS packages","description":"Contains heavyweight version of BIND suite libraries used by both named DNS server and utilities in bind-utils package.","build_epoch":1565266830,"build_epoch_utc":null,"install_date_epoch":1571853202,"install_date_epoch_utc":null},{"name":"dbus","epoch":1,"version":"1.10.24","release":"13.el7_6","architecture":"x86_64","install_date":"Thu 15 Aug 2019 12:01:17 PM PDT","group":"System Environment/Libraries","size":595216,"license":"(GPLv2+ or AFL) and GPLv2+","signature":"RSA/SHA256, Tue 19 Mar 2019 12:51:06 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"dbus-1.10.24-13.el7_6.src.rpm","build_date":"Thu 14 Mar 2019 03:18:13 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.freedesktop.org/Software/dbus/","summary":"D-BUS message bus","description":"D-BUS is a system for sending messages between applications. It is used both for the system-wide message bus service, and as a per-user-login-session messaging facility.","build_epoch":1552558693,"build_epoch_utc":null,"install_date_epoch":1565895677,"install_date_epoch_utc":null},{"name":"python-decorator","version":"3.4.0","release":"3.el7","architecture":"noarch","install_date":"Thu 15 Aug 2019 10:53:22 AM PDT","group":"Development/Languages","size":72291,"license":"BSD","signature":"RSA/SHA256, Thu 03 Jul 2014 09:38:41 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"python-decorator-3.4.0-3.el7.src.rpm","build_date":"Mon 09 Jun 2014 04:46:01 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://pypi.python.org/pypi/decorator/","summary":"Module to simplify usage of decorators","description":"The aim of the decorator module is to simplify the usage of decorators for the average programmer, and to popularize decorators usage giving examples of useful decorators, such as memoize, tracing, redirecting_stdout, locked, etc. The core of this module is a decorator factory called decorator.","build_epoch":1402357561,"build_epoch_utc":null,"install_date_epoch":1565891602,"install_date_epoch_utc":null},{"name":"lm_sensors-libs","version":"3.4.0","release":"8.20160601gitf9185e5.el7","architecture":"x86_64","install_date":"Tue 29 Oct 2019 11:35:07 PM PDT","group":"System Environment/Libraries","size":61608,"license":"LGPLv2+ and GPLv3+ and GPLv2+ and Verbatim and Public Domain","signature":"RSA/SHA256, Thu 22 Aug 2019 02:34:45 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"lm_sensors-3.4.0-8.20160601gitf9185e5.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:42:14 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://github.com/groeck/lm-sensors/","summary":"Lm_sensors core libraries","description":"Core libraries for lm_sensors applications","build_epoch":1565311334,"build_epoch_utc":null,"install_date_epoch":1572417307,"install_date_epoch_utc":null},{"name":"libnftnl","version":"1.0.8","release":"1.el7","architecture":"x86_64","install_date":"Sun 10 Nov 2019 07:55:14 AM PST","group":"Unspecified","size":222704,"license":"GPLv2+","signature":"RSA/SHA256, Wed 25 Apr 2018 04:16:36 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libnftnl-1.0.8-1.el7.src.rpm","build_date":"Tue 10 Apr 2018 06:42:24 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://netfilter.org/projects/libnftnl/","summary":"Library for low-level interaction with nftables Netlink's API over libmnl","description":"A library for low-level interaction with nftables Netlink's API over libmnl.","build_epoch":1523410944,"build_epoch_utc":null,"install_date_epoch":1573401314,"install_date_epoch_utc":null},{"name":"libselinux-python","version":"2.5","release":"14.1.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:22 AM PDT","group":"Development/Libraries","size":603236,"license":"Public Domain","signature":"RSA/SHA256, Mon 12 Nov 2018 06:37:29 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"libselinux-2.5-14.1.el7.src.rpm","build_date":"Tue 30 Oct 2018 02:43:06 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/SELinuxProject/selinux/wiki","summary":"SELinux python bindings for libselinux","description":"The libselinux-python package contains the python bindings for developing SELinux applications.","build_epoch":1540935786,"build_epoch_utc":null,"install_date_epoch":1565891602,"install_date_epoch_utc":null},{"name":"ruby-libs","version":"2.0.0.648","release":"36.el7","architecture":"x86_64","install_date":"Sat 16 Nov 2019 02:29:24 PM PST","group":"Development/Libraries","size":10883299,"license":"Ruby or BSD","signature":"RSA/SHA256, Thu 22 Aug 2019 02:43:01 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"ruby-2.0.0.648-36.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:30:13 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://ruby-lang.org/","summary":"Libraries necessary to run Ruby","description":"This package includes the libruby, necessary to run Ruby.","build_epoch":1565267413,"build_epoch_utc":null,"install_date_epoch":1573943364,"install_date_epoch_utc":null},{"name":"yum-metadata-parser","version":"1.1.4","release":"10.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:23 AM PDT","group":"Development/Libraries","size":58789,"license":"GPLv2","signature":"RSA/SHA256, Thu 03 Jul 2014 10:53:04 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"yum-metadata-parser-1.1.4-10.el7.src.rpm","build_date":"Tue 10 Jun 2014 01:39:48 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://linux.duke.edu/projects/yum/","summary":"A fast metadata parser for yum","description":"Fast metadata parser for yum implemented in C.","build_epoch":1402389588,"build_epoch_utc":null,"install_date_epoch":1565891603,"install_date_epoch_utc":null},{"name":"rubygem-json","version":"1.7.7","release":"36.el7","architecture":"x86_64","install_date":"Sat 16 Nov 2019 02:29:24 PM PST","group":"Development/Libraries","size":94878,"license":"Ruby or GPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:42:58 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"ruby-2.0.0.648-36.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:30:13 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://ruby-lang.org/","summary":"This is a JSON implementation as a Ruby extension in C","description":"This is a implementation of the JSON specification according to RFC 4627. You can think of it as a low fat alternative to XML, if you want to store data to disk or transmit it over a network rather than use a verbose markup language.","build_epoch":1565267413,"build_epoch_utc":null,"install_date_epoch":1573943364,"install_date_epoch_utc":null},{"name":"pyliblzma","version":"0.5.3","release":"11.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:23 AM PDT","group":"Unspecified","size":190112,"license":"LGPLv3+","signature":"RSA/SHA256, Thu 03 Jul 2014 09:37:13 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"pyliblzma-0.5.3-11.el7.src.rpm","build_date":"Mon 09 Jun 2014 10:20:49 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://launchpad.net/pyliblzma","summary":"Python bindings for lzma","description":"PylibLZMA provides a python interface for the liblzma library to read and write data that has been compressed or can be decompressed by Lasse Collin's lzma utils.","build_epoch":1402377649,"build_epoch_utc":null,"install_date_epoch":1565891603,"install_date_epoch_utc":null},{"name":"rubygem-rdoc","version":"4.0.0","release":"36.el7","architecture":"noarch","install_date":"Sat 16 Nov 2019 02:29:25 PM PST","group":"Development/Libraries","size":1271686,"license":"GPLv2 and Ruby and MIT","signature":"RSA/SHA256, Thu 22 Aug 2019 03:00:51 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"ruby-2.0.0.648-36.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:30:13 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://ruby-lang.org/","summary":"A tool to generate HTML and command-line documentation for Ruby projects","description":"RDoc produces HTML and command-line documentation for Ruby projects. RDoc includes the 'rdoc' and 'ri' tools for generating and displaying online documentation.","build_epoch":1565267413,"build_epoch_utc":null,"install_date_epoch":1573943365,"install_date_epoch_utc":null},{"name":"python-schedutils","version":"0.4","release":"6.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:23 AM PDT","group":"System Environment/Libraries","size":43123,"license":"GPLv2","signature":"RSA/SHA256, Sun 20 Nov 2016 12:17:26 PM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"python-schedutils-0.4-6.el7.src.rpm","build_date":"Sat 05 Nov 2016 02:51:47 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://git.kernel.org/?p=linux/kernel/git/acme/python-schedutils.git","summary":"Linux scheduler python bindings","description":"Python interface for the Linux scheduler sched_{get,set}{affinity,scheduler} functions and friends.","build_epoch":1478382707,"build_epoch_utc":null,"install_date_epoch":1565891603,"install_date_epoch_utc":null},{"name":"ruby","version":"2.0.0.648","release":"36.el7","architecture":"x86_64","install_date":"Sat 16 Nov 2019 02:29:25 PM PST","group":"Development/Languages","size":64795,"license":"(Ruby or BSD) and Public Domain","signature":"RSA/SHA256, Thu 22 Aug 2019 02:42:54 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"ruby-2.0.0.648-36.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:30:13 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://ruby-lang.org/","summary":"An interpreter of object-oriented scripting language","description":"Ruby is the interpreted scripting language for quick and easy object-oriented programming. It has many features to process text files and to do system management tasks (as in Perl). It is simple, straight-forward, and extensible.","build_epoch":1565267413,"build_epoch_utc":null,"install_date_epoch":1573943365,"install_date_epoch_utc":null},{"name":"rubygems","version":"2.0.14.1","release":"36.el7","architecture":"noarch","install_date":"Sat 16 Nov 2019 02:29:25 PM PST","group":"Development/Libraries","size":600230,"license":"Ruby or MIT","signature":"RSA/SHA256, Thu 22 Aug 2019 03:00:52 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"ruby-2.0.0.648-36.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:30:13 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://ruby-lang.org/","summary":"The Ruby standard for packaging ruby libraries","description":"RubyGems is the Ruby standard for publishing and managing third party libraries.","build_epoch":1565267413,"build_epoch_utc":null,"install_date_epoch":1573943365,"install_date_epoch_utc":null},{"name":"pyxattr","version":"0.5.1","release":"5.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:23 AM PDT","group":"Development/Libraries","size":63304,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 09:43:07 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"pyxattr-0.5.1-5.el7.src.rpm","build_date":"Mon 09 Jun 2014 03:24:57 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://pyxattr.sourceforge.net/","summary":"Extended attributes library wrapper for Python","description":"Python extension module wrapper for libattr. It allows to query, list, add and remove extended attributes from files and directories.","build_epoch":1402352697,"build_epoch_utc":null,"install_date_epoch":1565891603,"install_date_epoch_utc":null},{"name":"autogen-libopts","version":"5.18","release":"5.el7","architecture":"x86_64","install_date":"Tue 03 Mar 2020 06:02:09 PM PST","group":"System Environment/Libraries","size":145381,"license":"LGPLv3+","signature":"RSA/SHA256, Thu 03 Jul 2014 05:44:16 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"autogen-5.18-5.el7.src.rpm","build_date":"Mon 09 Jun 2014 08:19:30 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/autogen/","summary":"Automated option processing library based on autogen","description":"Libopts is very powerful command line option parser consisting of a set of AutoGen templates and a run time library that nearly eliminates the hassle of parsing and documenting command line options.","build_epoch":1402370370,"build_epoch_utc":null,"install_date_epoch":1583287329,"install_date_epoch_utc":null},{"name":"ntp","version":"4.2.6p5","release":"29.el7.centos","architecture":"x86_64","install_date":"Tue 03 Mar 2020 06:02:09 PM PST","group":"System Environment/Daemons","size":1434857,"license":"(MIT and BSD and BSD with advertising) and GPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:36:35 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"ntp-4.2.6p5-29.el7.centos.src.rpm","build_date":"Thu 08 Aug 2019 04:48:12 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.ntp.org","summary":"The NTP daemon and utilities","description":"The Network Time Protocol (NTP) is used to synchronize a computer's time with another reference time source. This package includes ntpd (a daemon which continuously adjusts system time) and utilities used to query and configure the ntpd daemon. Perl scripts ntp-wait and ntptrace are in the ntp-perl package, ntpdate is in the ntpdate package and sntp is in the sntp package. The documentation is in the ntp-doc package.","build_epoch":1565264892,"build_epoch_utc":null,"install_date_epoch":1583287329,"install_date_epoch_utc":null},{"name":"gettext-libs","version":"0.19.8.1","release":"2.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:23 AM PDT","group":"System Environment/Libraries","size":1546952,"license":"LGPLv2+ and GPLv3+","signature":"RSA/SHA256, Thu 10 Aug 2017 09:08:05 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"gettext-0.19.8.1-2.el7.src.rpm","build_date":"Wed 02 Aug 2017 07:28:14 PM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/gettext/","summary":"Libraries for gettext","description":"This package contains libraries used internationalization support.","build_epoch":1501727294,"build_epoch_utc":null,"install_date_epoch":1565891603,"install_date_epoch_utc":null},{"name":"libmpc","version":"1.0.1","release":"3.el7","architecture":"x86_64","install_date":"Wed 08 Apr 2020 05:17:22 AM PDT","group":"Development/Tools","size":113833,"license":"LGPLv3+ and GFDL","signature":"RSA/SHA256, Thu 03 Jul 2014 07:59:41 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libmpc-1.0.1-3.el7.src.rpm","build_date":"Mon 09 Jun 2014 12:44:58 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.multiprecision.org/","summary":"C library for multiple precision complex arithmetic","description":"MPC is a C library for the arithmetic of complex numbers with arbitrarily high precision and correct rounding of the result. It is built upon and follows the same principles as Mpfr.","build_epoch":1402343098,"build_epoch_utc":null,"install_date_epoch":1586348242,"install_date_epoch_utc":null},{"name":"less","version":"458","release":"9.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:23 AM PDT","group":"Applications/Text","size":215376,"license":"GPLv3+","signature":"RSA/SHA256, Thu 30 Jul 2015 04:52:46 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"less-458-9.el7.src.rpm","build_date":"Thu 30 Jul 2015 04:50:42 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.greenwoodsoftware.com/less/","summary":"A text file browser similar to more, but better","description":"The less utility is a text file browser that resembles more, but has more capabilities. Less allows you to move backwards in the file as well as forwards. Since less doesn't have to read the entire input file before it starts, less starts up more quickly than text editors (for example, vi). You should install less because it is a basic utility for viewing text files, and you'll use it frequently.","build_epoch":1438300242,"build_epoch_utc":null,"install_date_epoch":1565891603,"install_date_epoch_utc":null},{"name":"kernel-headers","version":"3.10.0","release":"1062.18.1.el7","architecture":"x86_64","install_date":"Wed 08 Apr 2020 05:17:24 AM PDT","group":"Development/System","size":3898858,"license":"GPLv2","signature":"RSA/SHA256, Wed 18 Mar 2020 09:50:23 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"kernel-3.10.0-1062.18.1.el7.src.rpm","build_date":"Tue 17 Mar 2020 05:04:12 PM PDT","build_host":"kbuilder.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.kernel.org/","summary":"Header files for the Linux kernel for use by glibc","description":"Kernel-headers includes the C header files that specify the interface between the Linux kernel and userspace libraries and programs. The header files define structures and constants that are needed for building most standard programs and are also needed for rebuilding the glibc package.","build_epoch":1584489852,"build_epoch_utc":null,"install_date_epoch":1586348244,"install_date_epoch_utc":null},{"name":"glibc-devel","version":"2.17","release":"292.el7","architecture":"x86_64","install_date":"Wed 08 Apr 2020 05:17:25 AM PDT","group":"Development/Libraries","size":1066078,"license":"LGPLv2+ and LGPLv2+ with exceptions and GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:24:44 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"glibc-2.17-292.el7.src.rpm","build_date":"Tue 06 Aug 2019 04:23:44 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/glibc/","summary":"Object files for development using standard C libraries.","description":"The glibc-devel package contains the object files necessary for developing programs which use the standard C libraries (which are used by nearly all programs). If you are developing programs which will use the standard C libraries, your system needs to have these standard object files available in order to create the executables. Install glibc-devel if you are going to develop programs which will use the standard C libraries.","build_epoch":1565133824,"build_epoch_utc":null,"install_date_epoch":1586348245,"install_date_epoch_utc":null},{"name":"keyutils-libs-devel","version":"1.5.8","release":"3.el7","architecture":"x86_64","install_date":"Wed 08 Apr 2020 05:24:42 AM PDT","group":"System Environment/Base","size":29186,"license":"GPLv2+ and LGPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 07:31:03 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"keyutils-1.5.8-3.el7.src.rpm","build_date":"Mon 09 Jun 2014 07:17:55 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://people.redhat.com/~dhowells/keyutils/","summary":"Development package for building Linux key management utilities","description":"This package provides headers and libraries for building key utilities.","build_epoch":1402366675,"build_epoch_utc":null,"install_date_epoch":1586348682,"install_date_epoch_utc":null},{"name":"pkgconfig","epoch":1,"version":"0.27.1","release":"4.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:24 AM PDT","group":"Development/Tools","size":105522,"license":"GPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 09:28:33 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"pkgconfig-0.27.1-4.el7.src.rpm","build_date":"Mon 09 Jun 2014 03:05:48 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://pkgconfig.freedesktop.org","summary":"A tool for determining compilation options","description":"The pkgconfig tool determines compilation options. For each required library, it reads the configuration file and outputs the necessary compiler and linker flags.","build_epoch":1402351548,"build_epoch_utc":null,"install_date_epoch":1565891604,"install_date_epoch_utc":null},{"name":"pcre-devel","version":"8.32","release":"17.el7","architecture":"x86_64","install_date":"Wed 08 Apr 2020 05:24:42 AM PDT","group":"Development/Libraries","size":1505771,"license":"BSD","signature":"RSA/SHA256, Thu 10 Aug 2017 12:04:40 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"pcre-8.32-17.el7.src.rpm","build_date":"Tue 01 Aug 2017 08:08:12 PM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.pcre.org/","summary":"Development files for pcre","description":"Development files (Headers, libraries for dynamic linking, etc) for pcre.","build_epoch":1501643292,"build_epoch_utc":null,"install_date_epoch":1586348682,"install_date_epoch_utc":null},{"name":"python-gobject-base","version":"3.22.0","release":"1.el7_4.1","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:24 AM PDT","group":"Unspecified","size":1123114,"license":"LGPLv2+ and MIT","signature":"RSA/SHA256, Tue 21 Nov 2017 06:17:15 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"pygobject3-3.22.0-1.el7_4.1.src.rpm","build_date":"Tue 21 Nov 2017 04:44:25 AM PST","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://wiki.gnome.org/Projects/PyGObject","summary":"Python 2 bindings for GObject Introspection base package","description":"This package provides the non-cairo specific bits of the GObject Introspection library.","build_epoch":1511268265,"build_epoch_utc":null,"install_date_epoch":1565891604,"install_date_epoch_utc":null},{"name":"libkadm5","version":"1.15.1","release":"37.el7_7.2","architecture":"x86_64","install_date":"Wed 08 Apr 2020 05:24:42 AM PDT","group":"System Environment/Base","size":221000,"license":"MIT","signature":"RSA/SHA256, Sat 14 Sep 2019 04:48:50 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"krb5-1.15.1-37.el7_7.2.src.rpm","build_date":"Fri 13 Sep 2019 11:07:42 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://web.mit.edu/kerberos/www/","summary":"Kerberos 5 Administrative libraries","description":"Kerberos is a network authentication system. The libkadm5 package contains the libkadm5clnt and libkadm5serv shared objects, for use ONLY by kerberos itself. Do not depend on this package.","build_epoch":1568398062,"build_epoch_utc":null,"install_date_epoch":1586348682,"install_date_epoch_utc":null},{"name":"zlib-devel","version":"1.2.7","release":"18.el7","architecture":"x86_64","install_date":"Wed 08 Apr 2020 05:24:42 AM PDT","group":"Development/Libraries","size":135536,"license":"zlib and Boost","signature":"RSA/SHA256, Mon 12 Nov 2018 06:49:54 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"zlib-1.2.7-18.el7.src.rpm","build_date":"Tue 30 Oct 2018 01:24:40 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.zlib.net/","summary":"Header files and libraries for Zlib development","description":"The zlib-devel package contains the header files and libraries needed to develop programs that use the zlib compression and decompression library.","build_epoch":1540931080,"build_epoch_utc":null,"install_date_epoch":1586348682,"install_date_epoch_utc":null},{"name":"fipscheck","version":"1.4.1","release":"6.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:24 AM PDT","group":"System Environment/Libraries","size":38839,"license":"BSD","signature":"RSA/SHA256, Thu 10 Aug 2017 08:53:42 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"fipscheck-1.4.1-6.el7.src.rpm","build_date":"Wed 02 Aug 2017 05:47:49 AM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://fedorahosted.org/fipscheck/","summary":"A library for integrity verification of FIPS validated modules","description":"FIPSCheck is a library for integrity verification of FIPS validated modules. The package also provides helper binaries for creation and verification of the HMAC-SHA256 checksum files.","build_epoch":1501678069,"build_epoch_utc":null,"install_date_epoch":1565891604,"install_date_epoch_utc":null},{"name":"krb5-devel","version":"1.15.1","release":"37.el7_7.2","architecture":"x86_64","install_date":"Wed 08 Apr 2020 05:24:43 AM PDT","group":"Development/Libraries","size":796381,"license":"MIT","signature":"RSA/SHA256, Sat 14 Sep 2019 04:48:30 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"krb5-1.15.1-37.el7_7.2.src.rpm","build_date":"Fri 13 Sep 2019 11:07:42 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://web.mit.edu/kerberos/www/","summary":"Development files needed to compile Kerberos 5 programs","description":"Kerberos is a network authentication system. The krb5-devel package contains the header files and libraries needed for compiling Kerberos 5 programs. If you want to develop Kerberos-aware programs, you need to install this package.","build_epoch":1568398062,"build_epoch_utc":null,"install_date_epoch":1586348683,"install_date_epoch_utc":null},{"name":"gmp-devel","epoch":1,"version":"6.0.0","release":"15.el7","architecture":"x86_64","install_date":"Tue 14 Apr 2020 08:10:08 AM PDT","group":"Development/Libraries","size":348562,"license":"LGPLv3+ or GPLv2+","signature":"RSA/SHA256, Thu 10 Aug 2017 09:14:34 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"gmp-6.0.0-15.el7.src.rpm","build_date":"Wed 02 Aug 2017 06:13:15 PM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://gmplib.org/","summary":"Development tools for the GNU MP arbitrary precision library","description":"The libraries, header files and documentation for using the GNU MP arbitrary precision library in applications. If you want to develop applications which will use the GNU MP library, you'll need to install the gmp-devel package. You'll also need to install the gmp package.","build_epoch":1501722795,"build_epoch_utc":null,"install_date_epoch":1586877008,"install_date_epoch_utc":null},{"name":"libmpc-devel","version":"1.0.1","release":"3.el7","architecture":"x86_64","install_date":"Tue 14 Apr 2020 08:10:08 AM PDT","group":"Development/Libraries","size":35779,"license":"LGPLv3+ and GFDL","signature":"RSA/SHA256, Thu 03 Jul 2014 07:59:52 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libmpc-1.0.1-3.el7.src.rpm","build_date":"Mon 09 Jun 2014 12:44:58 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.multiprecision.org/","summary":"Header and shared development libraries for MPC","description":"Header files and shared object symlinks for MPC is a C library.","build_epoch":1402343098,"build_epoch_utc":null,"install_date_epoch":1586877008,"install_date_epoch_utc":null},{"name":"centos-release-scl-rh","version":"2","release":"3.el7.centos","architecture":"noarch","install_date":"Tue 14 Apr 2020 08:41:32 AM PDT","group":"Unspecified","size":20015,"license":"GPLv2","signature":"RSA/SHA256, Mon 01 Apr 2019 05:41:53 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"centos-release-scl-rh-2-3.el7.centos.src.rpm","build_date":"Mon 29 Oct 2018 02:15:47 AM PDT","build_host":"c1bd.rdu2.centos.org","relocations":"(not relocatable)","packager":"CBS ","vendor":"CentOS","url":"http://wiki.centos.org/SpecialInterestGroup/SCLo","summary":"Software collections from the CentOS SCLo SIG (upstream scl only)","description":"yum Configs and basic docs for Software Collections as delivered via the CentOS SCLo SIG.","build_epoch":1540804547,"build_epoch_utc":null,"install_date_epoch":1586878892,"install_date_epoch_utc":null},{"name":"scl-utils","version":"20130529","release":"19.el7","architecture":"x86_64","install_date":"Tue 14 Apr 2020 08:42:05 AM PDT","group":"Applications/File","size":25141,"license":"GPLv2+","signature":"RSA/SHA256, Mon 12 Nov 2018 06:46:32 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"scl-utils-20130529-19.el7.src.rpm","build_date":"Tue 30 Oct 2018 12:17:57 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://fedorahosted.org/released/scl-utils/","summary":"Utilities for alternative packaging","description":"Run-time utility for alternative packaging.","build_epoch":1540927077,"build_epoch_utc":null,"install_date_epoch":1586878925,"install_date_epoch_utc":null},{"name":"python-pycurl","version":"7.19.0","release":"19.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:25 AM PDT","group":"Development/Languages","size":241513,"license":"LGPLv2+ or MIT","signature":"RSA/SHA256, Sun 20 Nov 2016 12:16:58 PM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"python-pycurl-7.19.0-19.el7.src.rpm","build_date":"Sat 05 Nov 2016 08:10:54 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://pycurl.sourceforge.net/","summary":"A Python interface to libcurl","description":"PycURL is a Python interface to libcurl. PycURL can be used to fetch objects identified by a URL from a Python program, similar to the urllib Python module. PycURL is mature, very fast, and supports a lot of features.","build_epoch":1478358654,"build_epoch_utc":null,"install_date_epoch":1565891605,"install_date_epoch_utc":null},{"name":"devtoolset-3-gcc","version":"4.9.2","release":"6.el7","architecture":"x86_64","install_date":"Tue 14 Apr 2020 08:42:08 AM PDT","group":"Development/Languages","size":53037442,"license":"GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions and LGPLv2+ and BSD","signature":"RSA/SHA1, Sat 28 Nov 2015 06:50:43 AM PST, Key ID 4eb84e71f2ee9d55","source_rpm":"devtoolset-3-gcc-4.9.2-6.el7.src.rpm","build_date":"Sat 03 Oct 2015 08:15:45 AM PDT","build_host":"c1bj.rdu2.centos.org","relocations":"(not relocatable)","packager":"CBS ","vendor":"CentOS","url":"http://gcc.gnu.org","summary":"GCC version 4.9","description":"The devtoolset-3-gcc package contains the GNU Compiler Collection version 4.9.","build_epoch":1443885345,"build_epoch_utc":null,"install_date_epoch":1586878928,"install_date_epoch_utc":null},{"name":"net-tools","version":"2.0","release":"0.25.20131004git.el7","architecture":"x86_64","install_date":"Tue 15 Oct 2019 10:40:39 AM PDT","group":"System Environment/Base","size":938978,"license":"GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:36:04 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"net-tools-2.0-0.25.20131004git.el7.src.rpm","build_date":"Thu 08 Aug 2019 06:10:26 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://sourceforge.net/projects/net-tools/","summary":"Basic networking tools","description":"The net-tools package contains basic networking tools, including ifconfig, netstat, route, and others. Most of them are obsolete. For replacement check iproute package.","build_epoch":1565313026,"build_epoch_utc":null,"install_date_epoch":1571161239,"install_date_epoch_utc":null},{"name":"logrotate","version":"3.8.6","release":"17.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:25 AM PDT","group":"System Environment/Base","size":107156,"license":"GPL+","signature":"RSA/SHA256, Mon 12 Nov 2018 06:39:25 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"logrotate-3.8.6-17.el7.src.rpm","build_date":"Tue 30 Oct 2018 12:13:00 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/logrotate/logrotate","summary":"Rotates, compresses, removes and mails system log files","description":"The logrotate utility is designed to simplify the administration of log files on a system which generates a lot of log files. Logrotate allows for the automatic rotation compression, removal and mailing of log files. Logrotate can be set to handle a log file daily, weekly, monthly or when the log file gets to a certain size. Normally, logrotate runs as a daily cron job. Install the logrotate package if you need a utility to deal with the log files on your system.","build_epoch":1540926780,"build_epoch_utc":null,"install_date_epoch":1565891605,"install_date_epoch_utc":null},{"name":"devtoolset-3-gcc-c++","version":"4.9.2","release":"6.el7","architecture":"x86_64","install_date":"Wed 15 Apr 2020 12:39:17 PM PDT","group":"Development/Languages","size":21072579,"license":"GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions and LGPLv2+ and BSD","signature":"RSA/SHA1, Sat 28 Nov 2015 06:50:43 AM PST, Key ID 4eb84e71f2ee9d55","source_rpm":"devtoolset-3-gcc-4.9.2-6.el7.src.rpm","build_date":"Sat 03 Oct 2015 08:15:45 AM PDT","build_host":"c1bj.rdu2.centos.org","relocations":"(not relocatable)","packager":"CBS ","vendor":"CentOS","url":"http://gcc.gnu.org","summary":"C++ support for GCC version 4.9","description":"This package adds C++ support to the GNU Compiler Collection version 4.9. It includes support for most of the current C++ specification and a lot of support for the upcoming C++ specification.","build_epoch":1443885345,"build_epoch_utc":null,"install_date_epoch":1586979557,"install_date_epoch_utc":null},{"name":"python3-setuptools","version":"39.2.0","release":"10.el7","architecture":"noarch","install_date":"Tue 15 Oct 2019 11:09:07 AM PDT","group":"Applications/System","size":3815469,"license":"MIT and (BSD or ASL 2.0)","signature":"RSA/SHA256, Thu 22 Aug 2019 02:59:50 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"python3-setuptools-39.2.0-10.el7.src.rpm","build_date":"Wed 07 Aug 2019 09:59:57 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://pypi.python.org/pypi/setuptools","summary":"Easily build and distribute Python 3 packages","description":"Setuptools is a collection of enhancements to the Python 3 distutils that allow you to more easily build and distribute Python 3 packages, especially ones that have dependencies on other packages. This package also contains the runtime components of setuptools, necessary to execute the software that requires pkg_resources.py.","build_epoch":1565197197,"build_epoch_utc":null,"install_date_epoch":1571162947,"install_date_epoch_utc":null},{"name":"centos-logos","version":"70.0.6","release":"3.el7.centos","architecture":"noarch","install_date":"Thu 15 Aug 2019 10:53:27 AM PDT","group":"System Environment/Base","size":22548401,"license":"Copyright © 2014 The CentOS Project. All rights reserved.","signature":"RSA/SHA256, Wed 30 Sep 2015 01:10:39 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"centos-logos-70.0.6-3.el7.centos.src.rpm","build_date":"Wed 30 Sep 2015 12:58:32 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.centos.org","summary":"CentOS-related icons and pictures","description":"The redhat-logos package (the \"Package\") contains files created by the CentOS Project to replace the Red Hat \"Shadow Man\" logo and RPM logo. The Red Hat \"Shadow Man\" logo, RPM, and the RPM logo are trademarks or registered trademarks of Red Hat, Inc. The Package and CentOS logos (the \"Marks\") can only used as outlined in the included COPYING file. Please see that file for information on copying and redistribution of the CentOS Marks.","build_epoch":1443643112,"build_epoch_utc":null,"install_date_epoch":1565891607,"install_date_epoch_utc":null},{"name":"python3","version":"3.6.8","release":"10.el7","architecture":"x86_64","install_date":"Tue 15 Oct 2019 11:09:08 AM PDT","group":"Unspecified","size":39976,"license":"Python","signature":"RSA/SHA256, Thu 22 Aug 2019 02:40:07 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"python3-3.6.8-10.el7.src.rpm","build_date":"Wed 07 Aug 2019 11:09:49 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://www.python.org/","summary":"Interpreter of the Python programming language","the_python3_package_provides_the_\"python3\"_executable":"the reference","description":"Python is an accessible, high-level, dynamically typed, interpreted programming language, designed with an emphasis on code readability. It includes an extensive standard library, and has a vast ecosystem of third-party libraries. The python3 package provides the \"python3\" executable: the reference interpreter for the Python language, version 3. The majority of its standard library is provided in the python3-libs package, which should be installed automatically along with python3. The remaining parts of the Python standard library are broken out into the python3-tkinter and python3-test packages, which may need to be installed separately. Documentation for Python is provided in the python3-docs package. Packages containing additional libraries for Python are generally named with the \"python3-\" prefix.","build_epoch":1565201389,"build_epoch_utc":null,"install_date_epoch":1571162948,"install_date_epoch_utc":null},{"name":"libselinux-utils","version":"2.5","release":"14.1.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:27 AM PDT","group":"Development/Libraries","size":172645,"license":"Public Domain","signature":"RSA/SHA256, Mon 12 Nov 2018 06:37:31 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"libselinux-2.5-14.1.el7.src.rpm","build_date":"Tue 30 Oct 2018 02:43:06 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/SELinuxProject/selinux/wiki","summary":"SELinux libselinux utilies","description":"The libselinux-utils package contains the utilities","build_epoch":1540935786,"build_epoch_utc":null,"install_date_epoch":1565891607,"install_date_epoch_utc":null},{"name":"epel-release","version":"7","release":"11","architecture":"noarch","install_date":"Mon 04 Jan 2021 12:31:39 PM PST","group":"System Environment/Base","size":24834,"license":"GPLv2","signature":"RSA/SHA256, Fri 11 May 2018 05:21:29 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"epel-release-7-11.src.rpm","build_date":"Mon 02 Oct 2017 10:45:58 AM PDT","build_host":"buildvm-ppc64le-05.ppc.fedoraproject.org","relocations":"(not relocatable)","packager":"Fedora Project","vendor":"Fedora Project","url":"http://download.fedoraproject.org/pub/epel","summary":"Extra Packages for Enterprise Linux repository configuration","description":"This package contains the Extra Packages for Enterprise Linux (EPEL) repository GPG key as well as configuration for yum.","build_epoch":1506966358,"build_epoch_utc":null,"install_date_epoch":1609792299,"install_date_epoch_utc":null},{"name":"perl-parent","epoch":1,"version":"0.225","release":"244.el7","architecture":"noarch","install_date":"Tue 15 Oct 2019 11:27:57 AM PDT","group":"Development/Libraries","size":8141,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 03 Jul 2014 09:21:55 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-parent-0.225-244.el7.src.rpm","build_date":"Tue 10 Jun 2014 12:15:20 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/parent/","summary":"Establish an ISA relationship with base classes at compile time","description":"Allows you to both load one or more modules, while setting up inheritance from those modules at the same time. Mostly similar in effect to: \tpackage Baz; \tBEGIN { \t\trequire Foo; \t\trequire Bar; \t\tpush @ISA, qw(Foo Bar); \t}","build_epoch":1402384520,"build_epoch_utc":null,"install_date_epoch":1571164077,"install_date_epoch_utc":null},{"name":"libnl","version":"1.1.4","release":"3.el7","architecture":"x86_64","install_date":"Mon 04 Jan 2021 12:32:02 PM PST","group":"Development/Libraries","size":373662,"license":"LGPLv2","signature":"RSA/SHA256, Thu 03 Jul 2014 08:02:21 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libnl-1.1.4-3.el7.src.rpm","build_date":"Tue 10 Jun 2014 01:58:17 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.infradead.org/~tgr/libnl/","summary":"Convenience library for kernel netlink sockets","description":"This package contains a convenience library to simplify using the Linux kernel's netlink sockets interface for network manipulation","build_epoch":1402390697,"build_epoch_utc":null,"install_date_epoch":1609792322,"install_date_epoch_utc":null},{"name":"perl-podlators","version":"2.5.1","release":"3.el7","architecture":"noarch","install_date":"Tue 15 Oct 2019 11:27:57 AM PDT","group":"Development/Libraries","size":287679,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 03 Jul 2014 09:22:34 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-podlators-2.5.1-3.el7.src.rpm","build_date":"Mon 09 Jun 2014 12:56:16 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/podlators/","summary":"Format POD source into various output formats","description":"This package contains Pod::Man and Pod::Text modules which convert POD input to *roff source output, suitable for man pages, or plain text. It also includes several sub-classes of Pod::Text for formatted output to terminals with various capabilities.","build_epoch":1402343776,"build_epoch_utc":null,"install_date_epoch":1571164077,"install_date_epoch_utc":null},{"name":"crda","version":"3.18_2018.05.31","release":"4.el7","architecture":"x86_64","install_date":"Mon 04 Jan 2021 12:32:02 PM PST","group":"System Environment/Base","size":67470,"license":"ISC","signature":"RSA/SHA256, Mon 12 Nov 2018 06:22:57 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"crda-3.18_2018.05.31-4.el7.src.rpm","build_date":"Tue 30 Oct 2018 03:32:16 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://wireless.kernel.org/en/developers/Regulatory/CRDA","summary":"Regulatory compliance daemon for 802.11 wireless networking","description":"CRDA acts as the udev helper for communication between the kernel and userspace for regulatory compliance. It relies on nl80211 for communication. CRDA is intended to be run only through udev communication from the kernel.","build_epoch":1540938736,"build_epoch_utc":null,"install_date_epoch":1609792322,"install_date_epoch_utc":null},{"name":"perl-Pod-Escapes","epoch":1,"version":"1.04","release":"294.el7_6","architecture":"noarch","install_date":"Tue 15 Oct 2019 11:27:57 AM PDT","group":"Development/Libraries","size":21091,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 24 Jan 2019 05:22:34 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-5.16.3-294.el7_6.src.rpm","build_date":"Mon 21 Jan 2019 02:17:44 PM PST","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.perl.org/","summary":"Perl module for resolving POD escape sequences","description":"This module provides things that are useful in decoding Pod E<...> sequences. Presumably, it should be used only by Pod parsers and/or formatters.","build_epoch":1548109064,"build_epoch_utc":null,"install_date_epoch":1571164077,"install_date_epoch_utc":null},{"name":"pinentry","version":"0.8.1","release":"17.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:27 AM PDT","group":"Applications/System","size":159929,"license":"GPLv2+","signature":"RSA/SHA256, Sun 20 Nov 2016 12:05:16 PM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"pinentry-0.8.1-17.el7.src.rpm","build_date":"Sat 05 Nov 2016 08:49:27 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnupg.org/aegypten/","summary":"Collection of simple PIN or passphrase entry dialogs","description":"Pinentry is a collection of simple PIN or passphrase entry dialogs which utilize the Assuan protocol as described by the aegypten project; see http://www.gnupg.org/aegypten/ for details. This package contains the curses (text) based version of the PIN entry dialog.","build_epoch":1478360967,"build_epoch_utc":null,"install_date_epoch":1565891607,"install_date_epoch_utc":null},{"name":"libicu","version":"50.2","release":"4.el7_7","architecture":"x86_64","install_date":"Tue 09 Feb 2021 08:57:09 AM PST","group":"System Environment/Libraries","size":25221945,"license":"MIT and UCD and Public Domain","signature":"RSA/SHA256, Tue 24 Mar 2020 09:17:45 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"icu-50.2-4.el7_7.src.rpm","build_date":"Fri 20 Mar 2020 05:51:27 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.icu-project.org/","summary":"International Components for Unicode - libraries","description":"The International Components for Unicode (ICU) libraries provide robust and full-featured Unicode services on a wide variety of platforms. ICU supports the most current version of the Unicode standard, and they provide support for supplementary Unicode characters (needed for GB 18030 repertoire support). As computing environments become more heterogeneous, software portability becomes more important. ICU lets you produce the same results across all the various platforms you support, without sacrificing performance. It offers great flexibility to extend and customize the supplied services.","build_epoch":1584751887,"build_epoch_utc":null,"install_date_epoch":1612889829,"install_date_epoch_utc":null},{"name":"perl-Text-ParseWords","version":"3.29","release":"4.el7","architecture":"noarch","install_date":"Tue 15 Oct 2019 11:27:58 AM PDT","group":"Development/Libraries","size":16431,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 03 Jul 2014 09:25:15 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-Text-ParseWords-3.29-4.el7.src.rpm","build_date":"Mon 09 Jun 2014 02:14:46 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/Text-ParseWords/","summary":"Parse text into an array of tokens or array of arrays","description":"The nested_quotewords() and quotewords() functions accept a delimiter (which can be a regular expression) and a list of lines and then breaks those lines up into a list of words ignoring delimiters that appear inside quotes. quotewords() returns all of the tokens in a single long list, while nested_quotewords() returns a list of token lists corresponding to the elements of @lines. parse_line() does tokenizing on a single string. The quotewords() functions simply call &parse_line(), so if you're only splitting one line you can call parse_line() directly and save a function call.","build_epoch":1402348486,"build_epoch_utc":null,"install_date_epoch":1571164078,"install_date_epoch_utc":null},{"name":"snappy","version":"1.1.0","release":"3.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:28 AM PDT","group":"System Environment/Libraries","size":119521,"license":"BSD","signature":"RSA/SHA256, Thu 03 Jul 2014 10:02:19 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"snappy-1.1.0-3.el7.src.rpm","build_date":"Tue 10 Jun 2014 12:40:34 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://code.google.com/p/snappy/","summary":"Fast compression and decompression library","description":"Snappy is a compression/decompression library. It does not aim for maximum compression, or compatibility with any other compression library; instead, it aims for very high speeds and reasonable compression. For instance, compared to the fastest mode of zlib, Snappy is an order of magnitude faster for most inputs, but the resulting compressed files are anywhere from 20% to 100% bigger.","build_epoch":1402386034,"build_epoch_utc":null,"install_date_epoch":1565891608,"install_date_epoch_utc":null},{"name":"bluez","version":"5.44","release":"7.el7","architecture":"x86_64","install_date":"Tue 09 Feb 2021 08:57:09 AM PST","group":"Applications/System","size":4933985,"license":"GPLv2+","signature":"RSA/SHA256, Wed 14 Oct 2020 11:47:03 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"bluez-5.44-7.el7.src.rpm","build_date":"Wed 30 Sep 2020 08:50:00 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.bluez.org/","summary":"Bluetooth utilities","description":"Utilities for use in Bluetooth applications: \t- hcitool \t- hciattach \t- hciconfig \t- bluetoothd \t- l2ping \t- rfcomm \t- sdptool \t- bccmd \t- bluetoothctl \t- btmon \t- hcidump \t- l2test \t- rctest \t- gatttool \t- start scripts (Red Hat) \t- pcmcia configuration files The BLUETOOTH trademarks are owned by Bluetooth SIG, Inc., U.S.A.","build_epoch":1601481000,"build_epoch_utc":null,"install_date_epoch":1612889829,"install_date_epoch_utc":null},{"name":"perl-libs","epoch":4,"version":"5.16.3","release":"294.el7_6","architecture":"x86_64","install_date":"Tue 15 Oct 2019 11:27:58 AM PDT","group":"Development/Languages","size":1647344,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 24 Jan 2019 05:22:16 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-5.16.3-294.el7_6.src.rpm","build_date":"Mon 21 Jan 2019 02:12:20 PM PST","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.perl.org/","summary":"The libraries for the perl runtime","description":"The libraries for the perl runtime","build_epoch":1548108740,"build_epoch_utc":null,"install_date_epoch":1571164078,"install_date_epoch_utc":null},{"name":"jq","version":"1.6","release":"2.el7","architecture":"x86_64","install_date":"Wed 31 Mar 2021 06:30:29 PM PDT","group":"Unspecified","size":390033,"license":"MIT and ASL 2.0 and CC-BY and GPLv3","signature":"RSA/SHA256, Thu 28 May 2020 10:31:39 AM PDT, Key ID 6a2faea2352c64e5","source_rpm":"jq-1.6-2.el7.src.rpm","build_date":"Wed 27 May 2020 02:48:09 PM PDT","build_host":"buildvm-14.phx2.fedoraproject.org","relocations":"(not relocatable)","packager":"Fedora Project","vendor":"Fedora Project","url":"http://stedolan.github.io/jq/","bug_url":"https://bugz.fedoraproject.org/jq","summary":"Command-line JSON processor","description":"lightweight and flexible command-line JSON processor jq is like sed for JSON data – you can use it to slice and filter and map and transform structured data with the same ease that sed, awk, grep and friends let you play with text. It is written in portable C, and it has zero runtime dependencies. jq can mangle the data format that you have into the one that you want with very little effort, and the program to do so is often shorter and simpler than you'd expect.","build_epoch":1590616089,"build_epoch_utc":null,"install_date_epoch":1617240629,"install_date_epoch_utc":null},{"name":"perl-Time-HiRes","epoch":4,"version":"1.9725","release":"3.el7","architecture":"x86_64","install_date":"Tue 15 Oct 2019 11:27:58 AM PDT","group":"Development/Libraries","size":94069,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 03 Jul 2014 09:25:35 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-Time-HiRes-1.9725-3.el7.src.rpm","build_date":"Mon 09 Jun 2014 12:57:24 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/Time-HiRes/","summary":"High resolution alarm, sleep, gettimeofday, interval timers","description":"The Time::HiRes module implements a Perl interface to the usleep, nanosleep, ualarm, gettimeofday, and setitimer/getitimer system calls, in other words, high resolution time and timers.","build_epoch":1402343844,"build_epoch_utc":null,"install_date_epoch":1571164078,"install_date_epoch_utc":null},{"name":"libpng","epoch":2,"version":"1.5.13","release":"7.el7_2","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:28 AM PDT","group":"System Environment/Libraries","size":616101,"license":"zlib","signature":"RSA/SHA256, Wed 09 Dec 2015 09:02:06 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"libpng-1.5.13-7.el7_2.src.rpm","build_date":"Wed 09 Dec 2015 08:31:20 AM PST","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.libpng.org/pub/png/","summary":"A library of functions for manipulating PNG image format files","description":"The libpng package contains a library of functions for creating and manipulating PNG (Portable Network Graphics) image format files. PNG is a bit-mapped graphics format similar to the GIF format. PNG was created to replace the GIF format, since GIF uses a patented data compression algorithm. Libpng should be installed if you need to manipulate PNG format image files.","build_epoch":1449678680,"build_epoch_utc":null,"install_date_epoch":1565891608,"install_date_epoch_utc":null},{"name":"perl-constant","version":"1.27","release":"2.el7","architecture":"noarch","install_date":"Tue 15 Oct 2019 11:27:58 AM PDT","group":"Development/Libraries","size":26364,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 03 Jul 2014 09:15:39 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-constant-1.27-2.el7.src.rpm","build_date":"Mon 09 Jun 2014 07:51:22 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/constant/","summary":"Perl pragma to declare constants","description":"This pragma allows you to declare constants at compile-time: use constant PI => 4 * atan2(1, 1); When you declare a constant such as \"PI\" using the method shown above, each machine your script runs upon can have as many digits of accuracy as it can use. Also, your program will be easier to read, more likely to be maintained (and maintained correctly), and far less likely to send a space probe to the wrong planet because nobody noticed the one equation in which you wrote 3.14195. When a constant is used in an expression, Perl replaces it with its value at compile time, and may then optimize the expression further. In particular, any code in an \"if (CONSTANT)\" block will be optimized away if the constant is false.","build_epoch":1402368682,"build_epoch_utc":null,"install_date_epoch":1571164078,"install_date_epoch_utc":null},{"name":"perl-Socket","version":"2.010","release":"4.el7","architecture":"x86_64","install_date":"Tue 15 Oct 2019 11:27:58 AM PDT","group":"Development/Libraries","size":114497,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Sun 20 Nov 2016 12:02:40 PM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-Socket-2.010-4.el7.src.rpm","build_date":"Sat 05 Nov 2016 08:24:51 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/Socket/","summary":"Networking constants and support functions","description":"This module provides a variety of constants, structure manipulators and other functions related to socket-based networking. The values and functions provided are useful when used in conjunction with Perl core functions such as socket(), setsockopt() and bind(). It also provides several other support functions, mostly for dealing with conversions of network addresses between human-readable and native binary forms, and for hostname resolver operations.","build_epoch":1478359491,"build_epoch_utc":null,"install_date_epoch":1571164078,"install_date_epoch_utc":null},{"name":"ustr","version":"1.0.4","release":"16.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:28 AM PDT","group":"System Environment/Libraries","size":285943,"license":"MIT or LGPLv2+ or BSD","signature":"RSA/SHA256, Thu 03 Jul 2014 10:39:11 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"ustr-1.0.4-16.el7.src.rpm","build_date":"Mon 09 Jun 2014 01:12:46 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.and.org/ustr/","summary":"String library, very low memory overhead, simple to import","description":" Micro string library, very low overhead from plain strdup() (Ave. 44% for 0-20B strings). Very easy to use in existing C code. At it's simplest you can just include a single header file into your .c and start using it. This package also distributes pre-built shared libraries.","build_epoch":1402344766,"build_epoch_utc":null,"install_date_epoch":1565891608,"install_date_epoch_utc":null},{"name":"perl-Storable","version":"2.45","release":"3.el7","architecture":"x86_64","install_date":"Tue 15 Oct 2019 11:27:58 AM PDT","group":"Development/Libraries","size":181031,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 03 Jul 2014 09:23:18 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-Storable-2.45-3.el7.src.rpm","build_date":"Mon 09 Jun 2014 07:29:58 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/Storable/","summary":"Persistence for Perl data structures","description":"The Storable package brings persistence to your Perl data structures containing scalar, array, hash or reference objects, i.e. anything that can be conveniently stored to disk and retrieved at a later time.","build_epoch":1402367398,"build_epoch_utc":null,"install_date_epoch":1571164078,"install_date_epoch_utc":null},{"name":"perl-Scalar-List-Utils","version":"1.27","release":"248.el7","architecture":"x86_64","install_date":"Tue 15 Oct 2019 11:27:58 AM PDT","group":"Development/Libraries","size":67994,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 03 Jul 2014 09:23:05 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-Scalar-List-Utils-1.27-248.el7.src.rpm","build_date":"Mon 09 Jun 2014 04:57:00 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/Scalar-List-Utils/","summary":"A selection of general-utility scalar and list subroutines","description":"This package contains a selection of subroutines that people have expressed would be nice to have in the perl core, but the usage would not really be high enough to warrant the use of a keyword, and the size so small such that being individual extensions would be wasteful.","build_epoch":1402358220,"build_epoch_utc":null,"install_date_epoch":1571164078,"install_date_epoch_utc":null},{"name":"perl-File-Path","version":"2.09","release":"2.el7","architecture":"noarch","install_date":"Tue 15 Oct 2019 11:27:58 AM PDT","group":"Development/Libraries","size":50067,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 03 Jul 2014 09:18:06 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-File-Path-2.09-2.el7.src.rpm","build_date":"Mon 09 Jun 2014 05:48:09 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/File-Path/","summary":"Create or remove directory trees","description":"This module provides a convenient way to create directories of arbitrary depth and to delete an entire directory subtree from the file system.","build_epoch":1402361289,"build_epoch_utc":null,"install_date_epoch":1571164078,"install_date_epoch_utc":null},{"name":"hardlink","epoch":1,"version":"1.0","release":"19.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:29 AM PDT","group":"System Environment/Base","size":16545,"license":"GPL+","signature":"RSA/SHA256, Thu 03 Jul 2014 06:53:40 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"hardlink-1.0-19.el7.src.rpm","build_date":"Mon 09 Jun 2014 11:26:04 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://pkgs.fedoraproject.org/gitweb/?p=hardlink.git","summary":"Create a tree of hardlinks","description":"hardlink is used to create a tree of hard links. It's used by kernel installation to dramatically reduce the amount of diskspace used by each kernel package installed.","build_epoch":1402381564,"build_epoch_utc":null,"install_date_epoch":1565891609,"install_date_epoch_utc":null},{"name":"perl-threads","version":"1.87","release":"4.el7","architecture":"x86_64","install_date":"Tue 15 Oct 2019 11:27:58 AM PDT","group":"Development/Libraries","size":98615,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 03 Jul 2014 09:25:24 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-threads-1.87-4.el7.src.rpm","build_date":"Mon 09 Jun 2014 10:22:14 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/threads/","summary":"Perl interpreter-based threads","description":"Since Perl 5.8, thread programming has been available using a model called interpreter threads which provides a new Perl interpreter for each thread, and, by default, results in no data or state information being shared between threads. (Prior to Perl 5.8, 5005threads was available through the \"Thread.pm\" API. This threading model has been deprecated, and was removed as of Perl 5.10.0.)","build_epoch":1402377734,"build_epoch_utc":null,"install_date_epoch":1571164078,"install_date_epoch_utc":null},{"name":"libseccomp","version":"2.3.1","release":"3.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:29 AM PDT","group":"System Environment/Libraries","size":304131,"license":"LGPLv2","signature":"RSA/SHA256, Thu 10 Aug 2017 10:50:45 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libseccomp-2.3.1-3.el7.src.rpm","build_date":"Wed 02 Aug 2017 06:38:21 AM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/seccomp/libseccomp","summary":"Enhanced seccomp library","description":"The libseccomp library provides an easy to use interface to the Linux Kernel's syscall filtering mechanism, seccomp. The libseccomp API allows an application to specify which syscalls, and optionally which syscall arguments, the application is allowed to execute, all of which are enforced by the Linux Kernel.","build_epoch":1501681101,"build_epoch_utc":null,"install_date_epoch":1565891609,"install_date_epoch_utc":null},{"name":"perl-Filter","version":"1.49","release":"3.el7","architecture":"x86_64","install_date":"Tue 15 Oct 2019 11:27:59 AM PDT","group":"Development/Libraries","size":148475,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 03 Jul 2014 09:18:19 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-Filter-1.49-3.el7.src.rpm","build_date":"Mon 09 Jun 2014 03:45:54 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/Filter/","summary":"Perl source filters","description":"Source filters alter the program text of a module before Perl sees it, much as a C preprocessor alters the source text of a C program before the compiler sees it.","build_epoch":1402353954,"build_epoch_utc":null,"install_date_epoch":1571164079,"install_date_epoch_utc":null},{"name":"qrencode-libs","version":"3.4.1","release":"3.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:29 AM PDT","group":"Unspecified","size":126732,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 09:44:21 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"qrencode-3.4.1-3.el7.src.rpm","build_date":"Mon 09 Jun 2014 12:45:31 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://megaui.net/fukuchi/works/qrencode/index.en.html","summary":"QR Code encoding library - Shared libraries","description":"The qrencode-libs package contains the shared libraries and header files for applications that use qrencode.","build_epoch":1402343131,"build_epoch_utc":null,"install_date_epoch":1565891609,"install_date_epoch_utc":null},{"name":"perl","epoch":4,"version":"5.16.3","release":"294.el7_6","architecture":"x86_64","install_date":"Tue 15 Oct 2019 11:28:01 AM PDT","group":"Development/Languages","size":23552128,"license":"(GPL+ or Artistic) and (GPLv2+ or Artistic) and Copyright Only and MIT and Public Domain and UCD","signature":"RSA/SHA256, Thu 24 Jan 2019 05:22:14 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-5.16.3-294.el7_6.src.rpm","build_date":"Mon 21 Jan 2019 02:12:20 PM PST","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.perl.org/","summary":"Practical Extraction and Report Language","description":"Perl is a high-level programming language with roots in C, sed, awk and shell scripting. Perl is good at handling processes and files, and is especially good at handling text. Perl's hallmarks are practicality and efficiency. While it is used to do a lot of different things, Perl's most common applications are system administration utilities and web programming. A large proportion of the CGI scripts on the web are written in Perl. You need the perl package installed on your system so that your system can handle Perl scripts. Install this package if you want to program in Perl or enable your system to handle Perl scripts.","build_epoch":1548108740,"build_epoch_utc":null,"install_date_epoch":1571164081,"install_date_epoch_utc":null},{"name":"libpipeline","version":"1.2.3","release":"3.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:29 AM PDT","group":"Development/Libraries","size":142521,"license":"GPLv3+","signature":"RSA/SHA256, Thu 03 Jul 2014 08:05:55 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libpipeline-1.2.3-3.el7.src.rpm","build_date":"Mon 09 Jun 2014 10:46:23 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://libpipeline.nongnu.org/","summary":"A pipeline manipulation library","description":"libpipeline is a C library for setting up and running pipelines of processes, without needing to involve shell command-line parsing which is often error-prone and insecure. This alleviates programmers of the need to laboriously construct pipelines using lower-level primitives such as fork(2) and execve(2).","build_epoch":1402379183,"build_epoch_utc":null,"install_date_epoch":1565891609,"install_date_epoch_utc":null},{"name":"perl-TermReadKey","version":"2.30","release":"20.el7","architecture":"x86_64","install_date":"Tue 15 Oct 2019 11:28:01 AM PDT","group":"Development/Libraries","size":59999,"license":"(Copyright only) and (Artistic or GPL+)","signature":"RSA/SHA256, Thu 03 Jul 2014 09:23:54 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-TermReadKey-2.30-20.el7.src.rpm","build_date":"Tue 10 Jun 2014 12:29:32 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/~jstowe/TermReadKey/","summary":"A perl module for simple terminal control","description":"Term::ReadKey is a compiled perl module dedicated to providing simple control over terminal driver modes (cbreak, raw, cooked, etc.) support for non-blocking reads, if the architecture allows, and some generalized handy functions for working with terminals. One of the main goals is to have the functions as portable as possible, so you can just plug in \"use Term::ReadKey\" on any architecture and have a good likelyhood of it working.","build_epoch":1402385372,"build_epoch_utc":null,"install_date_epoch":1571164081,"install_date_epoch_utc":null},{"name":"lsscsi","version":"0.27","release":"6.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:29 AM PDT","group":"Applications/System","size":90475,"license":"GPLv2+","signature":"RSA/SHA256, Thu 10 Aug 2017 11:15:48 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"lsscsi-0.27-6.el7.src.rpm","build_date":"Wed 02 Aug 2017 07:11:06 PM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://sg.danny.cz/scsi/lsscsi.html","summary":"List SCSI devices (or hosts) and associated information","description":"Uses information provided by the sysfs pseudo file system in Linux kernel 2.6 series to list SCSI devices or all SCSI hosts. Includes a \"classic\" option to mimic the output of \"cat /proc/scsi/scsi\" that has been widely used prior to the lk 2.6 series. Author: -------- Doug Gilbert ","build_epoch":1501726266,"build_epoch_utc":null,"install_date_epoch":1565891609,"install_date_epoch_utc":null},{"name":"perl-Git","version":"1.8.3.1","release":"20.el7","architecture":"noarch","install_date":"Tue 15 Oct 2019 11:28:01 AM PDT","group":"Development/Libraries","size":58567,"license":"GPLv2","signature":"RSA/SHA256, Tue 20 Nov 2018 12:42:15 PM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"git-1.8.3.1-20.el7.src.rpm","build_date":"Mon 19 Nov 2018 08:23:15 AM PST","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://git-scm.com/","summary":"Perl interface to Git","description":"Perl interface to Git.","build_epoch":1542644595,"build_epoch_utc":null,"install_date_epoch":1571164081,"install_date_epoch_utc":null},{"name":"libgcc","version":"4.8.5","release":"39.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:15 AM PDT","group":"System Environment/Libraries","size":179328,"license":"GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions and LGPLv2+ and BSD","signature":"RSA/SHA256, Thu 22 Aug 2019 02:29:34 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"gcc-4.8.5-39.el7.src.rpm","build_date":"Tue 06 Aug 2019 10:15:38 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://gcc.gnu.org","summary":"GCC version 4.8 shared support library","description":"This package contains GCC shared support library which is needed e.g. for exception handling support.","build_epoch":1565111738,"build_epoch_utc":null,"install_date_epoch":1571242875,"install_date_epoch_utc":null},{"name":"centos-release","version":"7","release":"7.1908.0.el7.centos","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:16 AM PDT","group":"System Environment/Base","size":42295,"license":"GPLv2","signature":"RSA/SHA256, Thu 05 Sep 2019 06:19:24 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"centos-release-7-7.1908.0.el7.centos.src.rpm","build_date":"Thu 05 Sep 2019 06:05:40 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","summary":"CentOS Linux release file","description":"CentOS Linux release files","build_epoch":1567688740,"build_epoch_utc":null,"install_date_epoch":1571242876,"install_date_epoch_utc":null},{"name":"subscription-manager-rhsm-certificates","version":"1.24.13","release":"3.el7.centos","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:17 AM PDT","group":"Development/Libraries","size":0,"license":"GPLv2","signature":"RSA/SHA256, Sat 14 Sep 2019 04:50:33 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"subscription-manager-1.24.13-3.el7.centos.src.rpm","build_date":"Fri 13 Sep 2019 11:16:03 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.candlepinproject.org/","summary":"Certificates required to communicate with a Red Hat Unified Entitlement Platform","description":"This package contains certificates required for communicating with the REST interface of a Red Hat Unified Entitlement Platform, used for the management of system entitlements and to receive access to content.","build_epoch":1568398563,"build_epoch_utc":null,"install_date_epoch":1571242877,"install_date_epoch_utc":null},{"name":"firewalld-filesystem","version":"0.6.3","release":"2.el7_7.1","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:21:17 AM PDT","group":"Unspecified","size":239,"license":"GPLv2+","signature":"RSA/SHA256, Sat 14 Sep 2019 04:52:52 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"firewalld-0.6.3-2.el7_7.1.src.rpm","build_date":"Fri 13 Sep 2019 11:02:20 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.firewalld.org","summary":"Firewalld directory layout and rpm macros","description":"This package provides directories and rpm macros which are required by other packages that add firewalld configuration files.","build_epoch":1568397740,"build_epoch_utc":null,"install_date_epoch":1571242877,"install_date_epoch_utc":null},{"name":"tzdata","version":"2019c","release":"1.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:21:18 AM PDT","group":"System Environment/Base","size":2018657,"license":"Public Domain","signature":"RSA/SHA256, Thu 26 Sep 2019 05:20:57 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"tzdata-2019c-1.el7.src.rpm","build_date":"Thu 26 Sep 2019 04:34:13 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://www.iana.org/time-zones","summary":"Timezone data","description":"This package contains data files with rules for various timezones around the world.","build_epoch":1569497653,"build_epoch_utc":null,"install_date_epoch":1571242878,"install_date_epoch_utc":null},{"name":"nss-softokn-freebl","version":"3.44.0","release":"5.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:18 AM PDT","group":"System Environment/Base","size":569644,"license":"MPLv2.0","signature":"RSA/SHA256, Thu 22 Aug 2019 02:36:30 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"nss-softokn-3.44.0-5.el7.src.rpm","build_date":"Mon 12 Aug 2019 07:47:20 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.mozilla.org/projects/security/pki/nss/","summary":"Freebl library for the Network Security Services","description":"NSS Softoken Cryptographic Module Freebl Library Install the nss-softokn-freebl package if you need the freebl library.","build_epoch":1565621240,"build_epoch_utc":null,"install_date_epoch":1571242878,"install_date_epoch_utc":null},{"name":"glibc","version":"2.17","release":"292.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:26 AM PDT","group":"System Environment/Libraries","size":14101347,"license":"LGPLv2+ and LGPLv2+ with exceptions and GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:24:41 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"glibc-2.17-292.el7.src.rpm","build_date":"Tue 06 Aug 2019 04:23:44 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/glibc/","summary":"The GNU libc libraries","contains_the_most_important_sets_of_shared_libraries":"the standard C","description":"The glibc package contains standard libraries which are used by multiple programs on the system. In order to save disk space and memory, as well as to make upgrading easier, common system code is kept in one place and shared between programs. This particular package contains the most important sets of shared libraries: the standard C library and the standard math library. Without these two libraries, a Linux system will not function.","build_epoch":1565133824,"build_epoch_utc":null,"install_date_epoch":1571242886,"install_date_epoch_utc":null},{"name":"nss-util","version":"3.44.0","release":"3.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:26 AM PDT","group":"System Environment/Libraries","size":198960,"license":"MPLv2.0","signature":"RSA/SHA256, Thu 22 Aug 2019 02:36:34 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"nss-util-3.44.0-3.el7.src.rpm","build_date":"Fri 09 Aug 2019 07:14:13 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.mozilla.org/projects/security/pki/nss/","summary":"Network Security Services Utilities Library","description":"Utilities for Network Security Services and the Softoken module","build_epoch":1565360053,"build_epoch_utc":null,"install_date_epoch":1571242886,"install_date_epoch_utc":null},{"name":"libcom_err","version":"1.42.9","release":"16.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:26 AM PDT","group":"Development/Libraries","size":60489,"license":"MIT","signature":"RSA/SHA256, Thu 22 Aug 2019 02:29:14 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"e2fsprogs-1.42.9-16.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:19:51 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://e2fsprogs.sourceforge.net/","summary":"Common error description library","description":"This is the common error description library, part of e2fsprogs. libcom_err is an attempt to present a common error-handling mechanism.","build_epoch":1565306391,"build_epoch_utc":null,"install_date_epoch":1571242886,"install_date_epoch_utc":null},{"name":"openssl-libs","epoch":1,"version":"1.0.2k","release":"19.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:27 AM PDT","group":"System Environment/Libraries","size":3208684,"license":"OpenSSL","signature":"RSA/SHA256, Thu 22 Aug 2019 02:37:33 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"openssl-1.0.2k-19.el7.src.rpm","build_date":"Thu 08 Aug 2019 06:40:02 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.openssl.org/","summary":"A general purpose cryptography library with TLS implementation","description":"OpenSSL is a toolkit for supporting cryptography. The openssl-libs package contains the libraries that are used by various applications which support cryptographic algorithms and protocols.","build_epoch":1565314802,"build_epoch_utc":null,"install_date_epoch":1571242887,"install_date_epoch_utc":null},{"name":"krb5-libs","version":"1.15.1","release":"37.el7_7.2","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:28 AM PDT","group":"System Environment/Libraries","size":2201033,"license":"MIT","signature":"RSA/SHA256, Sat 14 Sep 2019 04:48:31 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"krb5-1.15.1-37.el7_7.2.src.rpm","build_date":"Fri 13 Sep 2019 11:07:42 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://web.mit.edu/kerberos/www/","summary":"The non-admin shared libraries used by Kerberos 5","description":"Kerberos is a network authentication system. The krb5-libs package contains the shared libraries needed by Kerberos 5. If you are using Kerberos, you need to install this package.","build_epoch":1568398062,"build_epoch_utc":null,"install_date_epoch":1571242888,"install_date_epoch_utc":null},{"name":"wpa_supplicant","epoch":1,"version":"2.6","release":"12.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:33 AM PDT","group":"System Environment/Base","size":4411751,"license":"BSD","signature":"RSA/SHA256, Mon 12 Nov 2018 06:49:13 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"wpa_supplicant-2.6-12.el7.src.rpm","build_date":"Tue 30 Oct 2018 04:03:45 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://w1.fi/wpa_supplicant/","summary":"WPA/WPA2/IEEE 802.1X Supplicant","description":"wpa_supplicant is a WPA Supplicant for Linux, BSD and Windows with support for WPA and WPA2 (IEEE 802.11i / RSN). Supplicant is the IEEE 802.1X/WPA component that is used in the client stations. It implements key negotiation with a WPA Authenticator and it controls the roaming and IEEE 802.11 authentication/association of the wlan driver.","build_epoch":1540940625,"build_epoch_utc":null,"install_date_epoch":1565891613,"install_date_epoch_utc":null},{"name":"libblkid","version":"2.23.2","release":"61.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:28 AM PDT","group":"Development/Libraries","size":265949,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:28:42 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"util-linux-2.23.2-61.el7.src.rpm","build_date":"Thu 08 Aug 2019 08:10:20 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://en.wikipedia.org/wiki/Util-linux","summary":"Block device ID library","description":"This is block device identification library, part of util-linux.","build_epoch":1565320220,"build_epoch_utc":null,"install_date_epoch":1571242888,"install_date_epoch_utc":null},{"name":"elfutils-libelf","version":"0.176","release":"2.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:29 AM PDT","group":"Development/Tools","size":916230,"license":"GPLv2+ or LGPLv3+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:22:50 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"elfutils-0.176-2.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:16:25 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://elfutils.org/","summary":"Library to read and write ELF files","description":"The elfutils-libelf package provides a DSO which allows reading and writing ELF files on a high level. Third party programs depend on this package to read internals of ELF files. The programs of the elfutils package use it also to generate new ELF files.","build_epoch":1565306185,"build_epoch_utc":null,"install_date_epoch":1571242889,"install_date_epoch_utc":null},{"name":"readline","version":"6.2","release":"11.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:30 AM PDT","group":"System Environment/Libraries","size":460424,"license":"GPLv3+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:42:22 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"readline-6.2-11.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:07:39 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html","summary":"A library for editing typed command lines","description":"The Readline library provides a set of functions that allow users to edit command lines. Both Emacs and vi editing modes are available. The Readline library includes additional functions for maintaining a list of previously-entered command lines for recalling or editing those lines, and for performing csh-like history expansion on previous commands.","build_epoch":1565266059,"build_epoch_utc":null,"install_date_epoch":1571242890,"install_date_epoch_utc":null},{"name":"python","version":"2.7.5","release":"86.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:32 AM PDT","group":"Development/Languages","size":80907,"license":"Python","signature":"RSA/SHA256, Thu 22 Aug 2019 02:40:03 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"python-2.7.5-86.el7.src.rpm","build_date":"Tue 06 Aug 2019 06:15:38 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.python.org/","summary":"An interpreted, interactive, object-oriented programming language","description":"Python is an interpreted, interactive, object-oriented programming language often compared to Tcl, Perl, Scheme or Java. Python includes modules, classes, exceptions, very high level dynamic data types and dynamic typing. Python supports interfaces to many system calls and libraries, as well as to various windowing systems (X11, Motif, Tk, Mac and MFC). Programmers can write new built-in modules for Python in C or C++. Python can be used as an extension language for applications that need a programmable interface. Note that documentation for Python is provided in the python-docs package. This package provides the \"python\" executable; most of the actual implementation is within the \"python-libs\" package.","build_epoch":1565140538,"build_epoch_utc":null,"install_date_epoch":1571242892,"install_date_epoch_utc":null},{"name":"libmount","version":"2.23.2","release":"61.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:32 AM PDT","group":"Development/Libraries","size":278157,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:30:26 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"util-linux-2.23.2-61.el7.src.rpm","build_date":"Thu 08 Aug 2019 08:10:20 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://en.wikipedia.org/wiki/Util-linux","summary":"Device mounting library","description":"This is the device mounting library, part of util-linux.","build_epoch":1565320220,"build_epoch_utc":null,"install_date_epoch":1571242892,"install_date_epoch_utc":null},{"name":"nss-softokn","version":"3.44.0","release":"5.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:33 AM PDT","group":"System Environment/Libraries","size":1188606,"license":"MPLv2.0","signature":"RSA/SHA256, Thu 22 Aug 2019 02:36:29 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"nss-softokn-3.44.0-5.el7.src.rpm","build_date":"Mon 12 Aug 2019 07:47:20 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.mozilla.org/projects/security/pki/nss/","summary":"Network Security Services Softoken Module","description":"Network Security Services Softoken Cryptographic Module","build_epoch":1565621240,"build_epoch_utc":null,"install_date_epoch":1571242893,"install_date_epoch_utc":null},{"name":"fxload","version":"2002_04_11","release":"16.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:36 AM PDT","group":"System Environment/Kernel","size":42589,"license":"GPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 06:25:35 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"fxload-2002_04_11-16.el7.src.rpm","build_date":"Mon 09 Jun 2014 09:45:39 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://linux-hotplug.sourceforge.net/","summary":"A helper program to download firmware into FX and FX2 EZ-USB devices","description":"This program is conveniently able to download firmware into FX and FX2 EZ-USB devices, as well as the original AnchorChips EZ-USB. It is intended to be invoked by udev scripts when the unprogrammed device appears on the bus.","build_epoch":1402375539,"build_epoch_utc":null,"install_date_epoch":1565891616,"install_date_epoch_utc":null},{"name":"alsa-tools-firmware","version":"1.1.0","release":"1.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:36 AM PDT","group":"Applications/System","size":86387,"license":"GPLv2+","signature":"RSA/SHA256, Sun 20 Nov 2016 09:07:19 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"alsa-tools-1.1.0-1.el7.src.rpm","build_date":"Sat 05 Nov 2016 11:34:05 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.alsa-project.org/","summary":"ALSA tools for uploading firmware to some soundcards","description":"This package contains tools for flashing firmware into certain sound cards. The following tools are available: * hdsploader - for RME Hammerfall DSP cards * mixartloader - for Digigram miXart soundcards * vxloader - for Digigram VX soundcards * usx2yloader - second phase firmware loader for Tascam USX2Y USB soundcards","build_epoch":1478370845,"build_epoch_utc":null,"install_date_epoch":1565891616,"install_date_epoch_utc":null},{"name":"dbus-glib","version":"0.100","release":"7.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:36 AM PDT","group":"System Environment/Libraries","size":301237,"license":"AFL and GPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 06:06:03 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"dbus-glib-0.100-7.el7.src.rpm","build_date":"Mon 09 Jun 2014 09:06:04 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.freedesktop.org/software/dbus/","summary":"GLib bindings for D-Bus","description":"D-Bus add-on library to integrate the standard D-Bus library with the GLib thread abstraction and main loop.","build_epoch":1402373164,"build_epoch_utc":null,"install_date_epoch":1565891616,"install_date_epoch_utc":null},{"name":"python-slip-dbus","version":"0.4.0","release":"4.el7","architecture":"noarch","install_date":"Thu 15 Aug 2019 10:53:36 AM PDT","group":"System Environment/Libraries","size":76410,"license":"GPLv2+","signature":"RSA/SHA256, Wed 25 Apr 2018 04:39:06 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"python-slip-0.4.0-4.el7.src.rpm","build_date":"Tue 10 Apr 2018 06:49:00 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/nphilipp/python-slip","summary":"Convenience functions for dbus services","description":"The Simple Library for Python packages contain miscellaneous code for convenience, extension and workaround purposes. This package provides slip.dbus.service.Object, which is a dbus.service.Object derivative that ends itself after a certain time without being used and/or if there are no clients anymore on the message bus, as well as convenience functions and decorators for integrating a dbus service with PolicyKit.","build_epoch":1523411340,"build_epoch_utc":null,"install_date_epoch":1565891616,"install_date_epoch_utc":null},{"name":"python-pyudev","version":"0.15","release":"9.el7","architecture":"noarch","install_date":"Thu 15 Aug 2019 10:53:36 AM PDT","group":"Development/Languages","size":241404,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 10 Aug 2017 12:22:56 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"python-pyudev-0.15-9.el7.src.rpm","build_date":"Wed 02 Aug 2017 10:51:26 PM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://pypi.python.org/pypi/pyudev","summary":"A libudev binding","description":"pyudev is a LGPL licensed, pure Python binding for libudev, the device and hardware management and information library for Linux. It supports almost all libudev functionality, you can enumerate devices, query device properties and attributes or monitor devices, including asynchronous monitoring with threads, or within the event loops of Qt, Glib or wxPython. The binding supports CPython_ 2 (2.6 or newer) and 3 (3.1 or newer), and PyPy_ 1.5 or newer. It is tested against udev 151 or newer, earlier versions of udev as found on dated Linux systems may work, but are not officially supported.","build_epoch":1501739486,"build_epoch_utc":null,"install_date_epoch":1565891616,"install_date_epoch_utc":null},{"name":"virt-what","version":"1.18","release":"4.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:36 AM PDT","group":"Unspecified","size":45720,"license":"GPLv2+","signature":"RSA/SHA256, Wed 25 Apr 2018 04:51:38 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"virt-what-1.18-4.el7.src.rpm","build_date":"Tue 10 Apr 2018 06:51:05 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://people.redhat.com/~rjones/virt-what/","summary":"Detect if we are running in a virtual machine","description":"virt-what is a shell script which can be used to detect if the program is running in a virtual machine. The program prints out a list of \"facts\" about the virtual machine, derived from heuristics. One fact is printed per line. If nothing is printed and the script exits with code 0 (no error), then it can mean either that the program is running on bare-metal or the program is running inside a type of virtual machine which we don't know about or can't detect. Current types of virtualization detected: - aws Amazon Web Services cloud guest - bhyve FreeBSD hypervisor - docker Docker container - hyperv Microsoft Hyper-V - ibm_power-kvm IBM POWER KVM - ibm_power-lpar_shared - ibm_power-lpar_dedicated IBM POWER LPAR (hardware partition) - ibm_systemz-* IBM SystemZ Direct / LPAR / z/VM / KVM - ldoms Oracle VM Server for SPARC Logical Domains - linux_vserver Linux VServer container - lxc Linux LXC container - kvm Linux Kernel Virtual Machine (KVM) - lkvm LKVM / kvmtool - openvz OpenVZ or Virtuozzo - ovirt oVirt node - parallels Parallels Virtual Platform - powervm_lx86 IBM PowerVM Lx86 Linux/x86 emulator - qemu QEMU (unaccelerated) - rhev Red Hat Enterprise Virtualization - uml User-Mode Linux (UML) - virtage Hitachi Virtualization Manager (HVM) Virtage LPAR - virtualbox VirtualBox - virtualpc Microsoft VirtualPC - vmm vmm OpenBSD hypervisor - vmware VMware - xen Xen - xen-dom0 Xen dom0 (privileged domain) - xen-domU Xen domU (paravirtualized guest domain) - xen-hvm Xen guest fully virtualized (HVM)","build_epoch":1523411465,"build_epoch_utc":null,"install_date_epoch":1565891616,"install_date_epoch_utc":null},{"name":"gnupg2","version":"2.0.22","release":"5.el7_5","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:37 AM PDT","group":"Applications/System","size":6637796,"license":"GPLv3+","signature":"RSA/SHA256, Fri 13 Jul 2018 08:56:02 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"gnupg2-2.0.22-5.el7_5.src.rpm","build_date":"Fri 13 Jul 2018 06:06:54 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnupg.org/","summary":"Utility for secure communication and data storage","description":"GnuPG is GNU's tool for secure communication and data storage. It can be used to encrypt data and to create digital signatures. It includes an advanced key management facility and is compliant with the proposed OpenPGP Internet standard as described in RFC2440 and the S/MIME standard as described by several RFCs. GnuPG 2.0 is a newer version of GnuPG with additional support for S/MIME. It has a different design philosophy that splits functionality up into several modules. The S/MIME and smartcard functionality is provided by the gnupg2-smime package.","build_epoch":1531487214,"build_epoch_utc":null,"install_date_epoch":1565891617,"install_date_epoch_utc":null},{"name":"pygpgme","version":"0.3","release":"9.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:37 AM PDT","group":"Development/Languages","size":197501,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 09:36:27 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"pygpgme-0.3-9.el7.src.rpm","build_date":"Mon 09 Jun 2014 04:30:47 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://cheeseshop.python.org/pypi/pygpgme","summary":"Python module for working with OpenPGP messages","description":"PyGPGME is a Python module that lets you sign, verify, encrypt and decrypt files using the OpenPGP format. It is built on top of GNU Privacy Guard and the GPGME library.","build_epoch":1402356647,"build_epoch_utc":null,"install_date_epoch":1565891617,"install_date_epoch_utc":null},{"name":"kbd-misc","version":"1.15.5","release":"15.el7","architecture":"noarch","install_date":"Thu 15 Aug 2019 10:53:46 AM PDT","group":"System Environment/Base","size":2419757,"license":"GPLv2+","signature":"RSA/SHA256, Mon 12 Nov 2018 07:17:50 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"kbd-1.15.5-15.el7.src.rpm","build_date":"Tue 30 Oct 2018 03:40:00 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://ftp.altlinux.org/pub/people/legion/kbd","summary":"Data for kbd package","description":"The kbd-misc package contains data for kbd package - console fonts, keymaps etc. Please note that kbd-misc is not helpful without kbd.","build_epoch":1540939200,"build_epoch_utc":null,"install_date_epoch":1565891626,"install_date_epoch_utc":null},{"name":"kernel","version":"3.10.0","release":"957.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:50 AM PDT","group":"System Environment/Kernel","size":66192729,"license":"GPLv2","signature":"RSA/SHA256, Mon 12 Nov 2018 06:30:44 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"kernel-3.10.0-957.el7.src.rpm","build_date":"Thu 08 Nov 2018 04:08:59 PM PST","build_host":"kbuilder.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.kernel.org/","summary":"The Linux kernel","of_the_operating_system":"memory allocation, process allocation, device","description":"The kernel package contains the Linux kernel (vmlinuz), the core of any Linux operating system. The kernel handles the basic functions of the operating system: memory allocation, process allocation, device input and output, etc.","build_epoch":1541722139,"build_epoch_utc":null,"install_date_epoch":1565891630,"install_date_epoch_utc":null},{"name":"libndp","version":"1.2","release":"9.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:42 AM PDT","group":"System Environment/Libraries","size":75708,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:30:31 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libndp-1.2-9.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:25:58 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.libndp.org/","summary":"Library for Neighbor Discovery Protocol","description":"This package contains a library which provides a wrapper for IPv6 Neighbor Discovery Protocol. It also provides a tool named ndptool for sending and receiving NDP messages.","build_epoch":1565310358,"build_epoch_utc":null,"install_date_epoch":1571242902,"install_date_epoch_utc":null},{"name":"vim-minimal","epoch":2,"version":"7.4.629","release":"6.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:42 AM PDT","group":"Applications/Editors","size":935752,"license":"Vim","signature":"RSA/SHA256, Thu 22 Aug 2019 02:45:14 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"vim-7.4.629-6.el7.src.rpm","build_date":"Thu 08 Aug 2019 08:17:37 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.vim.org/","summary":"A minimal version of the VIM editor","present._note":"The online help is only available when the vim-common","description":"VIM (VIsual editor iMproved) is an updated and improved version of the vi editor. Vi was the first real screen-based editor for UNIX, and is still very popular. VIM improves on vi by adding new features: multiple windows, multi-level undo, block highlighting and more. The vim-minimal package includes a minimal version of VIM, which is installed into /bin/vi for use when only the root partition is present. NOTE: The online help is only available when the vim-common package is installed.","build_epoch":1565320657,"build_epoch_utc":null,"install_date_epoch":1571242902,"install_date_epoch_utc":null},{"name":"ipset","version":"7.1","release":"1.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:42 AM PDT","group":"Unspecified","size":62030,"license":"GPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:26:17 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"ipset-7.1-1.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:55:38 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://ipset.netfilter.org/","summary":"Manage Linux IP sets","description":"IP sets are a framework inside the Linux kernel since version 2.4.x, which can be administered by the ipset utility. Depending on the type, currently an IP set may store IP addresses, (TCP/UDP) port numbers or IP addresses with MAC addresses in a way, which ensures lightning speed when matching an entry against a set. If you want to: - store multiple IP addresses or port numbers and match against the collection by iptables at one swoop; - dynamically update iptables rules against IP addresses or ports without performance penalty; - express complex IP address and ports based rulesets with one single iptables rule and benefit from the speed of IP sets then ipset may be the proper tool for you.","build_epoch":1565308538,"build_epoch_utc":null,"install_date_epoch":1571242902,"install_date_epoch_utc":null},{"name":"util-linux","version":"2.23.2","release":"61.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:43 AM PDT","group":"System Environment/Base","size":8482880,"license":"GPLv2 and GPLv2+ and LGPLv2+ and BSD with advertising and Public Domain","signature":"RSA/SHA256, Thu 22 Aug 2019 02:45:03 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"util-linux-2.23.2-61.el7.src.rpm","build_date":"Thu 08 Aug 2019 08:10:20 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://en.wikipedia.org/wiki/Util-linux","summary":"A collection of basic system utilities","description":"The util-linux package contains a large variety of low-level system utilities that are necessary for a Linux system to function. Among others, Util-linux contains the fdisk configuration tool and the login program.","build_epoch":1565320220,"build_epoch_utc":null,"install_date_epoch":1571242903,"install_date_epoch_utc":null},{"name":"device-mapper","epoch":7,"version":"1.02.158","release":"2.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:43 AM PDT","group":"System Environment/Base","size":340425,"license":"GPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:22:06 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"lvm2-2.02.185-2.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:44:27 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://sources.redhat.com/dm","summary":"Device mapper utility","description":"This package contains the supporting userspace utility, dmsetup, for the kernel device-mapper.","build_epoch":1565311467,"build_epoch_utc":null,"install_date_epoch":1571242903,"install_date_epoch_utc":null},{"name":"device-mapper-libs","epoch":7,"version":"1.02.158","release":"2.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:43 AM PDT","group":"System Environment/Libraries","size":400543,"license":"LGPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:22:11 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"lvm2-2.02.185-2.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:44:27 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://sources.redhat.com/lvm2","summary":"Device-mapper shared library","description":"This package contains the device-mapper shared library, libdevmapper.","build_epoch":1565311467,"build_epoch_utc":null,"install_date_epoch":1571242903,"install_date_epoch_utc":null},{"name":"dracut","version":"033","release":"564.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:44 AM PDT","group":"System Environment/Base","size":904892,"license":"GPLv2+ and LGPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:22:24 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"dracut-033-564.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:14:34 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://dracut.wiki.kernel.org/","summary":"Initramfs generator using udev","description":"dracut contains tools to create a bootable initramfs for 2.6 Linux kernels. Unlike existing implementations, dracut does hard-code as little as possible into the initramfs. dracut contains various modules which are driven by the event-based udev. Having root on MD, DM, LVM2, LUKS is supported as well as NFS, iSCSI, NBD, FCoE with the dracut-network package.","build_epoch":1565306074,"build_epoch_utc":null,"install_date_epoch":1571242904,"install_date_epoch_utc":null},{"name":"systemd-libs","version":"219","release":"67.el7_7.1","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:44 AM PDT","group":"Unspecified","size":1258408,"license":"LGPLv2+ and MIT","signature":"RSA/SHA256, Sat 14 Sep 2019 04:50:37 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"systemd-219-67.el7_7.1.src.rpm","build_date":"Fri 13 Sep 2019 11:21:31 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.freedesktop.org/wiki/Software/systemd","summary":"systemd libraries","description":"Libraries for systemd and udev, as well as the systemd PAM module.","build_epoch":1568398891,"build_epoch_utc":null,"install_date_epoch":1571242904,"install_date_epoch_utc":null},{"name":"systemd","version":"219","release":"67.el7_7.1","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:46 AM PDT","group":"Unspecified","size":24404590,"license":"LGPLv2+ and MIT and GPLv2+","signature":"RSA/SHA256, Sat 14 Sep 2019 04:50:34 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"systemd-219-67.el7_7.1.src.rpm","build_date":"Fri 13 Sep 2019 11:21:31 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.freedesktop.org/wiki/Software/systemd","summary":"A System and Service Manager","description":"systemd is a system and service manager for Linux, compatible with SysV and LSB init scripts. systemd provides aggressive parallelization capabilities, uses socket and D-Bus activation for starting services, offers on-demand starting of daemons, keeps track of processes using Linux cgroups, supports snapshotting and restoring of the system state, maintains mount and automount points and implements an elaborate transactional dependency-based service control logic. It can work as a drop-in replacement for sysvinit.","build_epoch":1568398891,"build_epoch_utc":null,"install_date_epoch":1571242906,"install_date_epoch_utc":null},{"name":"policycoreutils","version":"2.5","release":"33.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:48 AM PDT","group":"System Environment/Base","size":5329482,"license":"GPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:39:35 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"policycoreutils-2.5-33.el7.src.rpm","build_date":"Thu 08 Aug 2019 06:47:35 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.selinuxproject.org","summary":"SELinux policy core utilities","description":"Security-enhanced Linux is a feature of the Linux® kernel and a number of utilities with enhanced security functionality designed to add mandatory access controls to Linux. The Security-enhanced Linux kernel contains new architectural components originally developed to improve the security of the Flask operating system. These architectural components provide general support for the enforcement of many kinds of mandatory access control policies, including those based on the concepts of Type Enforcement®, Role-based Access Control, and Multi-level Security. policycoreutils contains the policy core utilities that are required for basic operation of a SELinux system. These utilities include load_policy to load policies, setfiles to label filesystems, newrole to switch roles.","build_epoch":1565315255,"build_epoch_utc":null,"install_date_epoch":1571242908,"install_date_epoch_utc":null},{"name":"device-mapper-event-libs","epoch":7,"version":"1.02.158","release":"2.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:48 AM PDT","group":"System Environment/Libraries","size":50564,"license":"LGPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:22:10 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"lvm2-2.02.185-2.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:44:27 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://sources.redhat.com/lvm2","summary":"Device-mapper event daemon shared library","description":"This package contains the device-mapper event daemon shared library, libdevmapper-event.","build_epoch":1565311467,"build_epoch_utc":null,"install_date_epoch":1571242908,"install_date_epoch_utc":null},{"name":"grub2-tools","epoch":1,"version":"2.02","release":"0.80.el7.centos","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:49 AM PDT","group":"System Environment/Base","size":10080365,"license":"GPLv3+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:25:16 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"grub2-2.02-0.80.el7.centos.src.rpm","build_date":"Thu 08 Aug 2019 04:31:11 AM PDT","build_host":"kbuilder.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/grub/","summary":"Support tools for GRUB.","description":"The GRand Unified Bootloader (GRUB) is a highly configurable and customizable bootloader with modular architecture. It supports a rich variety of kernel formats, file systems, computer architectures and hardware devices. This subpackage provides tools for support of all platforms.","build_epoch":1565263871,"build_epoch_utc":null,"install_date_epoch":1571242909,"install_date_epoch_utc":null},{"name":"polkit","version":"0.112","release":"22.el7_7.1","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:59 AM PDT","group":"System Environment/Libraries","size":487618,"license":"LGPLv2+","signature":"RSA/SHA256, Sat 14 Sep 2019 04:49:51 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"polkit-0.112-22.el7_7.1.src.rpm","build_date":"Fri 13 Sep 2019 11:10:10 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.freedesktop.org/wiki/Software/polkit","summary":"An authorization framework","description":"polkit is a toolkit for defining and handling authorizations. It is used for allowing unprivileged processes to speak to privileged processes.","build_epoch":1568398210,"build_epoch_utc":null,"install_date_epoch":1571242919,"install_date_epoch_utc":null},{"name":"NetworkManager-libnm","epoch":1,"version":"1.18.0","release":"5.el7_7.1","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:00 AM PDT","group":"Development/Libraries","size":9130076,"license":"GPLv2+","signature":"RSA/SHA256, Sat 14 Sep 2019 04:49:28 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"NetworkManager-1.18.0-5.el7_7.1.src.rpm","build_date":"Fri 13 Sep 2019 11:05:30 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnome.org/projects/NetworkManager/","summary":"Libraries for adding NetworkManager support to applications (new API).","description":"This package contains the libraries that make it easier to use some NetworkManager functionality from applications. This is the new NetworkManager API. See also NetworkManager-glib.","build_epoch":1568397930,"build_epoch_utc":null,"install_date_epoch":1571242920,"install_date_epoch_utc":null},{"name":"openssh","version":"7.4p1","release":"21.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:01 AM PDT","group":"Applications/Internet","size":1991172,"license":"BSD","signature":"RSA/SHA256, Thu 22 Aug 2019 02:37:23 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"openssh-7.4p1-21.el7.src.rpm","build_date":"Thu 08 Aug 2019 06:40:49 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.openssh.com/portable.html","summary":"An open source implementation of SSH protocol versions 1 and 2","description":"SSH (Secure SHell) is a program for logging into and executing commands on a remote machine. SSH is intended to replace rlogin and rsh, and to provide secure encrypted communications between two untrusted hosts over an insecure network. X11 connections and arbitrary TCP/IP ports can also be forwarded over the secure channel. OpenSSH is OpenBSD's version of the last free version of SSH, bringing it up to date in terms of security and features. This package includes the core files necessary for both the OpenSSH client and server. To make this package useful, you should also install openssh-clients, openssh-server, or both.","build_epoch":1565314849,"build_epoch_utc":null,"install_date_epoch":1571242921,"install_date_epoch_utc":null},{"name":"dhclient","epoch":12,"version":"4.2.5","release":"77.el7.centos","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:02 AM PDT","group":"System Environment/Base","size":486079,"license":"ISC","signature":"RSA/SHA256, Thu 22 Aug 2019 02:22:16 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"dhcp-4.2.5-77.el7.centos.src.rpm","build_date":"Thu 08 Aug 2019 04:10:22 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://isc.org/products/DHCP/","summary":"Provides the ISC DHCP client daemon and dhclient-script","description":"DHCP (Dynamic Host Configuration Protocol) is a protocol which allows individual devices on an IP network to get their own network configuration information (IP address, subnetmask, broadcast address, etc.) from a DHCP server. The overall purpose of DHCP is to make it easier to administer a large network. To use DHCP on your network, install a DHCP service (or relay agent), and on clients run a DHCP client daemon. The dhclient package provides the ISC DHCP client daemon.","build_epoch":1565305822,"build_epoch_utc":null,"install_date_epoch":1571242922,"install_date_epoch_utc":null},{"name":"selinux-policy-targeted","version":"3.13.1","release":"252.el7.1","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:22:04 AM PDT","group":"System Environment/Base","size":20080630,"license":"GPLv2+","signature":"RSA/SHA256, Sat 14 Sep 2019 10:10:22 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"selinux-policy-3.13.1-252.el7.1.src.rpm","build_date":"Tue 10 Sep 2019 08:01:56 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://oss.tresys.com/repos/refpolicy/","summary":"SELinux targeted base policy","description":"SELinux Reference policy targeted base module.","build_epoch":1568127716,"build_epoch_utc":null,"install_date_epoch":1571242924,"install_date_epoch_utc":null},{"name":"grub2-pc","epoch":1,"version":"2.02","release":"0.80.el7.centos","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:14 AM PDT","group":"System Environment/Base","size":0,"license":"GPLv3+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:25:15 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"grub2-2.02-0.80.el7.centos.src.rpm","build_date":"Thu 08 Aug 2019 04:31:11 AM PDT","build_host":"kbuilder.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/grub/","summary":"Bootloader with support for Linux, Multiboot, and more","description":"The GRand Unified Bootloader (GRUB) is a highly configurable and customizable bootloader with modular architecture. It supports a rich variety of kernel formats, file systems, computer architectures and hardware devices. This subpackage provides support for pc systems.","build_epoch":1565263871,"build_epoch_utc":null,"install_date_epoch":1571242934,"install_date_epoch_utc":null},{"name":"lvm2-libs","epoch":7,"version":"2.02.185","release":"2.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:15 AM PDT","group":"System Environment/Libraries","size":3791460,"license":"LGPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:34:53 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"lvm2-2.02.185-2.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:44:27 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://sources.redhat.com/lvm2","summary":"Shared libraries for lvm2","description":"This package contains shared lvm2 libraries for applications.","build_epoch":1565311467,"build_epoch_utc":null,"install_date_epoch":1571242935,"install_date_epoch_utc":null},{"name":"libdrm","version":"2.4.97","release":"2.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:15 AM PDT","group":"System Environment/Libraries","size":367605,"license":"MIT","signature":"RSA/SHA256, Thu 22 Aug 2019 02:29:31 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libdrm-2.4.97-2.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:15:34 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://dri.sourceforge.net","summary":"Direct Rendering Manager runtime library","description":"Direct Rendering Manager runtime library","build_epoch":1565309734,"build_epoch_utc":null,"install_date_epoch":1571242935,"install_date_epoch_utc":null},{"name":"cronie","version":"1.4.11","release":"23.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:15 AM PDT","group":"System Environment/Base","size":220592,"license":"MIT and BSD and ISC and GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:21:40 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"cronie-1.4.11-23.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:07:25 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/cronie-crond/cronie","summary":"Cron daemon for executing programs at set times","description":"Cronie contains the standard UNIX daemon crond that runs specified programs at scheduled times and related tools. It is a fork of the original vixie-cron and has security and configuration enhancements like the ability to use pam and SELinux.","build_epoch":1565305645,"build_epoch_utc":null,"install_date_epoch":1571242935,"install_date_epoch_utc":null},{"name":"libcgroup","version":"0.41","release":"21.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:16 AM PDT","group":"Development/Libraries","size":137130,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:29:11 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libcgroup-0.41-21.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:14:24 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://libcg.sourceforge.net/","summary":"Library to control and monitor control groups","description":"Control groups infrastructure. The library helps manipulate, control, administrate and monitor control groups and the associated controllers.","build_epoch":1565309664,"build_epoch_utc":null,"install_date_epoch":1571242936,"install_date_epoch_utc":null},{"name":"container-selinux","epoch":2,"version":"2.107","release":"3.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:22:16 AM PDT","group":"Unspecified","size":41133,"license":"GPLv2","signature":"RSA/SHA256, Mon 16 Sep 2019 05:34:22 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"container-selinux-2.107-3.el7.src.rpm","build_date":"Sun 15 Sep 2019 07:05:16 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/containers/container-selinux","summary":"SELinux policies for container runtimes","description":"SELinux policy modules for use with container runtimes.","build_epoch":1568556316,"build_epoch_utc":null,"install_date_epoch":1571242936,"install_date_epoch_utc":null},{"name":"docker-client","epoch":2,"version":"1.13.1","release":"103.git7f2769b.el7.centos","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:27 AM PDT","group":"Unspecified","size":13168359,"license":"ASL 2.0","signature":"RSA/SHA256, Mon 16 Sep 2019 05:33:24 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"docker-1.13.1-103.git7f2769b.el7.centos.src.rpm","build_date":"Sun 15 Sep 2019 07:07:52 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/docker/docker","summary":"Client side files for Docker","description":"Client side files for Docker","build_epoch":1568556472,"build_epoch_utc":null,"install_date_epoch":1571242947,"install_date_epoch_utc":null},{"name":"plymouth-scripts","version":"0.8.9","release":"0.32.20140113.el7.centos","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:27 AM PDT","group":"Applications/System","size":22795,"license":"GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:39:27 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"plymouth-0.8.9-0.32.20140113.el7.centos.src.rpm","build_date":"Thu 08 Aug 2019 04:51:46 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.freedesktop.org/wiki/Software/Plymouth","summary":"Plymouth related scripts","description":"This package contains scripts that help integrate Plymouth with the system.","build_epoch":1565265106,"build_epoch_utc":null,"install_date_epoch":1571242947,"install_date_epoch_utc":null},{"name":"numactl-libs","version":"2.0.12","release":"3.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:27 AM PDT","group":"System Environment/Libraries","size":46608,"license":"LGPLv2 and GPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:36:39 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"numactl-2.0.12-3.el7.src.rpm","build_date":"Thu 08 Aug 2019 06:23:34 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/numactl/numactl","summary":"libnuma libraries","description":"numactl-libs provides libnuma, a library to do allocations with NUMA policy in applications.","build_epoch":1565313814,"build_epoch_utc":null,"install_date_epoch":1571242947,"install_date_epoch_utc":null},{"name":"kernel","version":"3.10.0","release":"1062.1.2.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:43 AM PDT","group":"System Environment/Kernel","size":67075707,"license":"GPLv2","signature":"RSA/SHA256, Wed 02 Oct 2019 07:15:46 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"kernel-3.10.0-1062.1.2.el7.src.rpm","build_date":"Mon 30 Sep 2019 07:39:55 AM PDT","build_host":"kbuilder.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.kernel.org/","summary":"The Linux kernel","of_the_operating_system":"memory allocation, process allocation, device","description":"The kernel package contains the Linux kernel (vmlinuz), the core of any Linux operating system. The kernel handles the basic functions of the operating system: memory allocation, process allocation, device input and output, etc.","build_epoch":1569854395,"build_epoch_utc":null,"install_date_epoch":1571242963,"install_date_epoch_utc":null},{"name":"docker","epoch":2,"version":"1.13.1","release":"103.git7f2769b.el7.centos","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:48 AM PDT","group":"Unspecified","size":67678219,"license":"ASL 2.0","signature":"RSA/SHA256, Mon 16 Sep 2019 05:33:23 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"docker-1.13.1-103.git7f2769b.el7.centos.src.rpm","build_date":"Sun 15 Sep 2019 07:07:52 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/docker/docker","summary":"Automates deployment of containerized applications","description":"Docker is an open-source engine that automates the deployment of any application as a lightweight, portable, self-sufficient container that will run virtually anywhere. Docker containers can encapsulate any payload, and will run consistently on and between virtually any server. The same container that a developer builds and tests on a laptop will run at scale, in production*, on VMs, bare-metal servers, OpenStack clusters, public instances, or combinations of the above.","build_epoch":1568556472,"build_epoch_utc":null,"install_date_epoch":1571242968,"install_date_epoch_utc":null},{"name":"grub2","epoch":1,"version":"2.02","release":"0.80.el7.centos","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:48 AM PDT","group":"System Environment/Base","size":0,"license":"GPLv3+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:25:10 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"grub2-2.02-0.80.el7.centos.src.rpm","build_date":"Thu 08 Aug 2019 04:31:11 AM PDT","build_host":"kbuilder.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/grub/","summary":"Bootloader with support for Linux, Multiboot and more","description":"The GRand Unified Bootloader (GRUB) is a highly configurable and customizable bootloader with modular architecture. It supports a rich variety of kernel formats, file systems, computer architectures and hardware devices.","build_epoch":1565263871,"build_epoch_utc":null,"install_date_epoch":1571242968,"install_date_epoch_utc":null},{"name":"openssh-server","version":"7.4p1","release":"21.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:49 AM PDT","group":"System Environment/Daemons","size":993586,"license":"BSD","signature":"RSA/SHA256, Thu 22 Aug 2019 02:37:29 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"openssh-7.4p1-21.el7.src.rpm","build_date":"Thu 08 Aug 2019 06:40:49 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.openssh.com/portable.html","summary":"An open source SSH server daemon","description":"OpenSSH is a free version of SSH (Secure SHell), a program for logging into and executing commands on a remote machine. This package contains the secure shell daemon (sshd). The sshd daemon allows SSH clients to securely connect to your SSH server.","build_epoch":1565314849,"build_epoch_utc":null,"install_date_epoch":1571242969,"install_date_epoch_utc":null},{"name":"NetworkManager-team","epoch":1,"version":"1.18.0","release":"5.el7_7.1","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:49 AM PDT","group":"System Environment/Base","size":41352,"license":"GPLv2+","signature":"RSA/SHA256, Sat 14 Sep 2019 04:49:32 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"NetworkManager-1.18.0-5.el7_7.1.src.rpm","build_date":"Fri 13 Sep 2019 11:05:30 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnome.org/projects/NetworkManager/","summary":"Team device plugin for NetworkManager","description":"This package contains NetworkManager support for team devices.","build_epoch":1568397930,"build_epoch_utc":null,"install_date_epoch":1571242969,"install_date_epoch_utc":null},{"name":"NetworkManager-wifi","epoch":1,"version":"1.18.0","release":"5.el7_7.1","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:49 AM PDT","group":"System Environment/Base","size":152272,"license":"GPLv2+","signature":"RSA/SHA256, Sat 14 Sep 2019 04:49:33 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"NetworkManager-1.18.0-5.el7_7.1.src.rpm","build_date":"Fri 13 Sep 2019 11:05:30 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnome.org/projects/NetworkManager/","summary":"Wifi plugin for NetworkManager","description":"This package contains NetworkManager support for Wifi and OLPC devices.","build_epoch":1568397930,"build_epoch_utc":null,"install_date_epoch":1571242969,"install_date_epoch_utc":null},{"name":"biosdevname","version":"0.7.3","release":"2.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:50 AM PDT","group":"System Environment/Base","size":59254,"license":"GPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:21:00 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"biosdevname-0.7.3-2.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:01:34 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/dell/biosdevname","summary":"Udev helper for naming devices per BIOS names","description":"biosdevname in its simplest form takes a kernel device name as an argument, and returns the BIOS-given name it \"should\" be. This is necessary on systems where the BIOS name for a given device (e.g. the label on the chassis is \"Gb1\") doesn't map directly and obviously to the kernel name (e.g. eth0).","build_epoch":1565305294,"build_epoch_utc":null,"install_date_epoch":1571242970,"install_date_epoch_utc":null},{"name":"hwdata","version":"0.252","release":"9.3.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:51 AM PDT","group":"System Environment/Base","size":14178032,"license":"GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:25:37 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"hwdata-0.252-9.3.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:47:24 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/vcrhonek/hwdata","summary":"Hardware identification and configuration data","description":"hwdata contains various hardware identification and configuration data, such as the pci.ids and usb.ids databases.","build_epoch":1565308044,"build_epoch_utc":null,"install_date_epoch":1571242971,"install_date_epoch_utc":null},{"name":"rsyslog","version":"8.24.0","release":"41.el7_7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:53 AM PDT","group":"System Environment/Daemons","size":2002492,"license":"(GPLv3+ and ASL 2.0)","signature":"RSA/SHA256, Sat 14 Sep 2019 04:50:07 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"rsyslog-8.24.0-41.el7_7.src.rpm","build_date":"Fri 13 Sep 2019 11:14:54 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.rsyslog.com/","summary":"Enhanced system logging and kernel message trapping daemon","description":"Rsyslog is an enhanced, multi-threaded syslog daemon. It supports MySQL, syslog/TCP, RFC 3195, permitted sender lists, filtering on any message part, and fine grain output format control. It is compatible with stock sysklogd and can be used as a drop-in replacement. Rsyslog is simple to set up, with advanced features suitable for enterprise-class, encryption-protected syslog relay chains.","build_epoch":1568398494,"build_epoch_utc":null,"install_date_epoch":1571242973,"install_date_epoch_utc":null},{"name":"dracut-config-rescue","version":"033","release":"564.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:57 AM PDT","group":"System Environment/Base","size":4067,"license":"GPLv2+ and LGPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:22:27 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"dracut-033-564.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:14:34 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://dracut.wiki.kernel.org/","summary":"dracut configuration to turn on rescue image generation","description":"This package provides the configuration to turn on the rescue initramfs generation with dracut.","build_epoch":1565306074,"build_epoch_utc":null,"install_date_epoch":1571242977,"install_date_epoch_utc":null},{"name":"sudo","version":"1.8.23","release":"4.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:58 AM PDT","group":"Applications/System","size":3195829,"license":"ISC","signature":"RSA/SHA256, Thu 22 Aug 2019 02:44:10 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"sudo-1.8.23-4.el7.src.rpm","build_date":"Thu 08 Aug 2019 07:58:23 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.courtesan.com/sudo/","summary":"Allows restricted root access for specified users","include":"the ability to restrict what commands a user may run on a","description":"Sudo (superuser do) allows a system administrator to give certain users (or groups of users) the ability to run some (or all) commands as root while logging all commands and arguments. Sudo operates on a per-command basis. It is not a replacement for the shell. Features include: the ability to restrict what commands a user may run on a per-host basis, copious logging of each command (providing a clear audit trail of who did what), a configurable timeout of the sudo command, and the ability to use the same configuration file (sudoers) on many different machines.","build_epoch":1565319503,"build_epoch_utc":null,"install_date_epoch":1571242978,"install_date_epoch_utc":null},{"name":"kernel-tools","version":"3.10.0","release":"1062.1.2.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:59 AM PDT","group":"Development/System","size":299146,"license":"GPLv2","signature":"RSA/SHA256, Wed 02 Oct 2019 07:15:58 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"kernel-3.10.0-1062.1.2.el7.src.rpm","build_date":"Mon 30 Sep 2019 07:39:55 AM PDT","build_host":"kbuilder.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.kernel.org/","summary":"Assortment of tools for the Linux kernel","description":"This package contains the tools/ directory from the kernel source and the supporting documentation.","build_epoch":1569854395,"build_epoch_utc":null,"install_date_epoch":1571242979,"install_date_epoch_utc":null},{"name":"bind-libs-lite","epoch":32,"version":"9.11.4","release":"9.P2.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:59 AM PDT","group":"Unspecified","size":3091672,"license":"MPLv2.0","signature":"RSA/SHA256, Thu 22 Aug 2019 02:20:49 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"bind-9.11.4-9.P2.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:20:30 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.isc.org/products/BIND/","summary":"Libraries for working with the DNS protocol","description":"Contains lite version of BIND suite libraries which are used by various programs to work with DNS protocol.","build_epoch":1565266830,"build_epoch_utc":null,"install_date_epoch":1571242979,"install_date_epoch_utc":null},{"name":"nss-tools","version":"3.44.0","release":"4.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:23:00 AM PDT","group":"System Environment/Base","size":2106883,"license":"MPLv2.0","signature":"RSA/SHA256, Thu 22 Aug 2019 02:36:33 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"nss-3.44.0-4.el7.src.rpm","build_date":"Mon 12 Aug 2019 10:02:37 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.mozilla.org/projects/security/pki/nss/","summary":"Tools for the Network Security Services","description":"Network Security Services (NSS) is a set of libraries designed to support cross-platform development of security-enabled client and server applications. Applications built with NSS can support SSL v2 and v3, TLS, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, X.509 v3 certificates, and other security standards. Install the nss-tools package if you need command-line tools to manipulate the NSS certificate and key database.","build_epoch":1565629357,"build_epoch_utc":null,"install_date_epoch":1571242980,"install_date_epoch_utc":null},{"name":"alsa-lib","version":"1.1.8","release":"1.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:23:01 AM PDT","group":"System Environment/Libraries","size":1433144,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:20:17 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"alsa-lib-1.1.8-1.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:01:06 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.alsa-project.org/","summary":"The Advanced Linux Sound Architecture (ALSA) library","description":"The Advanced Linux Sound Architecture (ALSA) provides audio and MIDI functionality to the Linux operating system. This package includes the ALSA runtime libraries to simplify application programming and provide higher level functionality as well as support for the older OSS API, providing binary compatibility for most OSS programs.","build_epoch":1565265666,"build_epoch_utc":null,"install_date_epoch":1571242981,"install_date_epoch_utc":null},{"name":"iprutils","version":"2.4.17.1","release":"2.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:23:01 AM PDT","group":"System Environment/Base","size":955829,"license":"CPL","signature":"RSA/SHA256, Thu 22 Aug 2019 02:26:16 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"iprutils-2.4.17.1-2.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:59:00 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://sourceforge.net/projects/iprdd/","summary":"Utilities for the IBM Power Linux RAID adapters","description":"Provides a suite of utilities to manage and configure SCSI devices supported by the ipr SCSI storage device driver.","build_epoch":1565308740,"build_epoch_utc":null,"install_date_epoch":1571242981,"install_date_epoch_utc":null},{"name":"iwl100-firmware","version":"39.31.5.1","release":"72.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:23:01 AM PDT","group":"System Environment/Kernel","size":474702,"license":"Redistributable, no modification permitted","signature":"RSA/SHA256, Thu 22 Aug 2019 02:58:01 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"linux-firmware-20190429-72.gitddde598.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:22:46 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/","summary":"Firmware for Intel(R) Wireless WiFi Link 100 Series Adapters","description":"This package contains the firmware required by the iwlagn driver for Linux to support the iwl100 hardware. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully.","build_epoch":1565266966,"build_epoch_utc":null,"install_date_epoch":1571242981,"install_date_epoch_utc":null},{"name":"iwl6000g2b-firmware","version":"17.168.5.2","release":"72.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:23:02 AM PDT","group":"System Environment/Kernel","size":1276802,"license":"Redistributable, no modification permitted","signature":"RSA/SHA256, Thu 22 Aug 2019 02:58:13 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"linux-firmware-20190429-72.gitddde598.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:22:46 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/","summary":"Firmware for Intel(R) Wireless WiFi Link 6030 Series Adapters","description":"This package contains the firmware required by the iwlagn driver for Linux. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully.","build_epoch":1565266966,"build_epoch_utc":null,"install_date_epoch":1571242982,"install_date_epoch_utc":null},{"name":"iwl1000-firmware","epoch":1,"version":"39.31.5.1","release":"72.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:23:02 AM PDT","group":"System Environment/Kernel","size":809706,"license":"Redistributable, no modification permitted","signature":"RSA/SHA256, Thu 22 Aug 2019 02:58:00 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"linux-firmware-20190429-72.gitddde598.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:22:46 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/","summary":"Firmware for Intel® PRO/Wireless 1000 B/G/N network adaptors","description":"This package contains the firmware required by the iwlagn driver for Linux to support the iwl1000 hardware. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully.","build_epoch":1565266966,"build_epoch_utc":null,"install_date_epoch":1571242982,"install_date_epoch_utc":null},{"name":"iwl105-firmware","version":"18.168.6.1","release":"72.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:23:02 AM PDT","group":"System Environment/Kernel","size":826810,"license":"Redistributable, no modification permitted","signature":"RSA/SHA256, Thu 22 Aug 2019 02:58:02 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"linux-firmware-20190429-72.gitddde598.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:22:46 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/","summary":"Firmware for Intel(R) Centrino Wireless-N 105 Series Adapters","description":"This package contains the firmware required by the iwlagn driver for Linux to support the iwl105 hardware. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully.","build_epoch":1565266966,"build_epoch_utc":null,"install_date_epoch":1571242982,"install_date_epoch_utc":null},{"name":"iwl4965-firmware","version":"228.61.2.24","release":"72.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:23:02 AM PDT","group":"System Environment/Kernel","size":325102,"license":"Redistributable, no modification permitted","signature":"RSA/SHA256, Thu 22 Aug 2019 02:58:08 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"linux-firmware-20190429-72.gitddde598.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:22:46 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/","summary":"Firmware for Intel® PRO/Wireless 4965 A/G/N network adaptors","description":"This package contains the firmware required by the iwl4965 driver for Linux. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully.","build_epoch":1565266966,"build_epoch_utc":null,"install_date_epoch":1571242982,"install_date_epoch_utc":null},{"name":"iwl6050-firmware","version":"41.28.5.1","release":"72.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:23:02 AM PDT","group":"System Environment/Kernel","size":1070602,"license":"Redistributable, no modification permitted","signature":"RSA/SHA256, Thu 22 Aug 2019 02:58:14 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"linux-firmware-20190429-72.gitddde598.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:22:46 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/","summary":"Firmware for Intel(R) Wireless WiFi Link 6050 Series Adapters","description":"This package contains the firmware required by the iwlagn driver for Linux. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully.","build_epoch":1565266966,"build_epoch_utc":null,"install_date_epoch":1571242982,"install_date_epoch_utc":null},{"name":"iwl5000-firmware","version":"8.83.5.1_1","release":"72.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:23:05 AM PDT","group":"System Environment/Kernel","size":1176074,"license":"Redistributable, no modification permitted","signature":"RSA/SHA256, Thu 22 Aug 2019 02:58:09 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"linux-firmware-20190429-72.gitddde598.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:22:46 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/","summary":"Firmware for Intel® PRO/Wireless 5000 A/G/N network adaptors","description":"This package contains the firmware required by the iwl5000 driver for Linux. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully.","build_epoch":1565266966,"build_epoch_utc":null,"install_date_epoch":1571242985,"install_date_epoch_utc":null},{"name":"iwl2000-firmware","version":"18.168.6.1","release":"72.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:23:05 AM PDT","group":"System Environment/Kernel","size":833006,"license":"Redistributable, no modification permitted","signature":"RSA/SHA256, Thu 22 Aug 2019 02:58:04 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"linux-firmware-20190429-72.gitddde598.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:22:46 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/","summary":"Firmware for Intel(R) Centrino Wireless-N 2000 Series Adapters","description":"This package contains the firmware required by the iwlagn driver for Linux to support the iwl2000 hardware. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully.","build_epoch":1565266966,"build_epoch_utc":null,"install_date_epoch":1571242985,"install_date_epoch_utc":null},{"name":"iwl3160-firmware","version":"22.0.7.0","release":"72.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:23:07 AM PDT","group":"System Environment/Kernel","size":10445414,"license":"Redistributable, no modification permitted","signature":"RSA/SHA256, Thu 22 Aug 2019 02:58:06 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"linux-firmware-20190429-72.gitddde598.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:22:46 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/","summary":"Firmware for Intel(R) Dual Band Wireless-AC 3160 Series Adapters","description":"This package contains the firmware required by the iwlagn driver for Linux to support the iwl3160 hardware. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully.","build_epoch":1565266966,"build_epoch_utc":null,"install_date_epoch":1571242987,"install_date_epoch_utc":null},{"name":"nss-sysinit","version":"3.44.0","release":"4.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:33 AM PDT","group":"System Environment/Base","size":14111,"license":"MPLv2.0","signature":"RSA/SHA256, Thu 22 Aug 2019 02:36:32 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"nss-3.44.0-4.el7.src.rpm","build_date":"Mon 12 Aug 2019 10:02:37 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.mozilla.org/projects/security/pki/nss/","summary":"System NSS Initialization","description":"Default Operating System module that manages applications loading NSS globally on the system. This module loads the system defined PKCS #11 modules for NSS and chains with other NSS modules to load any system or user configured modules.","build_epoch":1565629357,"build_epoch_utc":null,"install_date_epoch":1571242893,"install_date_epoch_utc":null},{"name":"lz4","version":"1.7.5","release":"3.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:34 AM PDT","group":"Unspecified","size":366856,"license":"GPLv2+ and BSD","signature":"RSA/SHA256, Thu 22 Aug 2019 02:34:57 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"lz4-1.7.5-3.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:45:35 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://lz4.github.io/lz4/","summary":"Extremely fast compression algorithm","description":"LZ4 is an extremely fast loss-less compression algorithm, providing compression speed at 400 MB/s per core, scalable with multi-core CPU. It also features an extremely fast decoder, with speed in multiple GB/s per core, typically reaching RAM speed limits on multi-core systems.","build_epoch":1565311535,"build_epoch_utc":null,"install_date_epoch":1571242894,"install_date_epoch_utc":null},{"name":"iproute","version":"4.11.0","release":"25.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:35 AM PDT","group":"Applications/System","size":1901353,"license":"GPLv2+ and Public Domain","signature":"RSA/SHA256, Thu 22 Aug 2019 02:26:13 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"iproute-4.11.0-25.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:55:19 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://kernel.org/pub/linux/utils/net/iproute2/","summary":"Advanced IP routing and network device configuration tools","description":"The iproute package contains networking utilities (ip and rtmon, for example) which are designed to use the advanced networking capabilities of the Linux kernel.","build_epoch":1565308519,"build_epoch_utc":null,"install_date_epoch":1571242895,"install_date_epoch_utc":null},{"name":"libstdc++","version":"4.8.5","release":"39.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:35 AM PDT","group":"System Environment/Libraries","size":1077442,"license":"GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions and LGPLv2+ and BSD","signature":"RSA/SHA256, Thu 22 Aug 2019 02:33:21 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"gcc-4.8.5-39.el7.src.rpm","build_date":"Tue 06 Aug 2019 10:15:38 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://gcc.gnu.org","summary":"GNU Standard C++ Library","description":"The libstdc++ package contains a rewritten standard compliant GCC Standard C++ Library.","build_epoch":1565111738,"build_epoch_utc":null,"install_date_epoch":1571242895,"install_date_epoch_utc":null},{"name":"atomic-registries","epoch":1,"version":"1.22.1","release":"29.gitb507039.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:35 AM PDT","group":"Unspecified","size":43244,"license":"LGPLv2+","signature":"RSA/SHA256, Mon 16 Sep 2019 05:33:09 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"atomic-1.22.1-29.gitb507039.el7.src.rpm","build_date":"Sun 15 Sep 2019 07:10:06 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/projectatomic/atomic","summary":"Parses a global YAML registry file","description":"Utility that parses a global YAML registry file for container runtimes.","build_epoch":1568556606,"build_epoch_utc":null,"install_date_epoch":1571242895,"install_date_epoch_utc":null},{"name":"python-perf","version":"3.10.0","release":"1062.1.2.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:35 AM PDT","group":"Development/Libraries","size":340133,"license":"GPLv2","signature":"RSA/SHA256, Wed 02 Oct 2019 07:16:06 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"kernel-3.10.0-1062.1.2.el7.src.rpm","build_date":"Mon 30 Sep 2019 07:39:55 AM PDT","build_host":"kbuilder.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.kernel.org/","summary":"Python bindings for apps which will manipulate perf events","description":"The python-perf package contains a module that permits applications written in the Python programming language to use the interface to manipulate perf events.","build_epoch":1569854395,"build_epoch_utc":null,"install_date_epoch":1571242895,"install_date_epoch_utc":null},{"name":"python-firewall","version":"0.6.3","release":"2.el7_7.1","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:21:36 AM PDT","group":"Unspecified","size":1971540,"license":"GPLv2+","signature":"RSA/SHA256, Sat 14 Sep 2019 04:53:09 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"firewalld-0.6.3-2.el7_7.1.src.rpm","build_date":"Fri 13 Sep 2019 11:02:20 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.firewalld.org","summary":"Python2 bindings for firewalld","description":"Python2 bindings for firewalld.","build_epoch":1568397740,"build_epoch_utc":null,"install_date_epoch":1571242896,"install_date_epoch_utc":null},{"name":"libdb-utils","version":"5.3.21","release":"25.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:37 AM PDT","group":"Applications/Databases","size":322471,"license":"BSD and LGPLv2 and Sleepycat","signature":"RSA/SHA256, Thu 22 Aug 2019 02:29:28 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libdb-5.3.21-25.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:18:38 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.oracle.com/database/berkeley-db/","summary":"Command line tools for managing Berkeley DB databases","description":"The Berkeley Database (Berkeley DB) is a programmatic toolkit that provides embedded database support for both traditional and client/server applications. Berkeley DB includes B+tree, Extended Linear Hashing, Fixed and Variable-length record access methods, transactions, locking, logging, shared memory caching, and database recovery. DB supports C, C++, Java and Perl APIs.","build_epoch":1565309918,"build_epoch_utc":null,"install_date_epoch":1571242897,"install_date_epoch_utc":null},{"name":"bind-export-libs","epoch":32,"version":"9.11.4","release":"9.P2.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:37 AM PDT","group":"Unspecified","size":3007945,"license":"MPLv2.0","signature":"RSA/SHA256, Thu 22 Aug 2019 02:20:47 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"bind-9.11.4-9.P2.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:20:30 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.isc.org/products/BIND/","summary":"ISC libs for DHCP application","description":"BIND (Berkeley Internet Name Domain) is an implementation of the DNS (Domain Name System) protocols. This package set contains only export version of BIND libraries, that are used for building ISC DHCP.","build_epoch":1565266830,"build_epoch_utc":null,"install_date_epoch":1571242897,"install_date_epoch_utc":null},{"name":"libssh2","version":"1.8.0","release":"3.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:38 AM PDT","group":"System Environment/Libraries","size":191464,"license":"BSD","signature":"RSA/SHA256, Thu 22 Aug 2019 02:33:10 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libssh2-1.8.0-3.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:31:49 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.libssh2.org/","summary":"A library implementing the SSH2 protocol","internet_drafts":"SECSH-TRANS(22), SECSH-USERAUTH(25),","description":"libssh2 is a library implementing the SSH2 protocol as defined by Internet Drafts: SECSH-TRANS(22), SECSH-USERAUTH(25), SECSH-CONNECTION(23), SECSH-ARCH(20), SECSH-FILEXFER(06)*, SECSH-DHGEX(04), and SECSH-NUMBERS(10).","build_epoch":1565310709,"build_epoch_utc":null,"install_date_epoch":1571242898,"install_date_epoch_utc":null},{"name":"geoipupdate","version":"2.5.0","release":"1.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:39 AM PDT","group":"Unspecified","size":62806,"license":"GPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:24:33 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"geoipupdate-2.5.0-1.el7.src.rpm","build_date":"Mon 12 Aug 2019 01:21:19 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://dev.maxmind.com/geoip/geoipupdate/","summary":"Update GeoIP2 and GeoIP Legacy binary databases from MaxMind","description":"The GeoIP Update program performs automatic updates of GeoIP2 and GeoIP Legacy binary databases.","build_epoch":1565641279,"build_epoch_utc":null,"install_date_epoch":1571242899,"install_date_epoch_utc":null},{"name":"curl","version":"7.29.0","release":"54.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:39 AM PDT","group":"Applications/Internet","size":540460,"license":"MIT","signature":"RSA/SHA256, Thu 22 Aug 2019 02:21:58 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"curl-7.29.0-54.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:02:11 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://curl.haxx.se/","summary":"A utility for getting files from remote servers (FTP, HTTP, and others)","description":"curl is a command line tool for transferring data with URL syntax, supporting FTP, FTPS, HTTP, HTTPS, SCP, SFTP, TFTP, TELNET, DICT, LDAP, LDAPS, FILE, IMAP, SMTP, POP3 and RTSP. curl supports SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload, proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate, kerberos...), file transfer resume, proxy tunneling and a busload of other useful tricks.","build_epoch":1565265731,"build_epoch_utc":null,"install_date_epoch":1571242899,"install_date_epoch_utc":null},{"name":"rpm-libs","version":"4.11.3","release":"40.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:40 AM PDT","group":"Development/Libraries","size":611456,"license":"GPLv2+ and LGPLv2+ with exceptions","signature":"RSA/SHA256, Thu 22 Aug 2019 02:42:37 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"rpm-4.11.3-40.el7.src.rpm","build_date":"Tue 06 Aug 2019 03:50:54 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.rpm.org/","summary":"Libraries for manipulating RPM packages","description":"This package contains the RPM shared libraries.","build_epoch":1565131854,"build_epoch_utc":null,"install_date_epoch":1571242900,"install_date_epoch_utc":null},{"name":"rpm-python","version":"4.11.3","release":"40.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:40 AM PDT","group":"Development/Libraries","size":149898,"license":"GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:42:38 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"rpm-4.11.3-40.el7.src.rpm","build_date":"Tue 06 Aug 2019 03:50:54 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.rpm.org/","summary":"Python bindings for apps which will manipulate RPM packages","description":"The rpm-python package contains a module that permits applications written in the Python programming language to use the interface supplied by RPM Package Manager libraries. This package should be installed if you want to develop Python programs that will manipulate RPM packages and databases.","build_epoch":1565131854,"build_epoch_utc":null,"install_date_epoch":1571242900,"install_date_epoch_utc":null},{"name":"yum","version":"3.4.3","release":"163.el7.centos","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:21:41 AM PDT","group":"System Environment/Base","size":5827255,"license":"GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 03:01:55 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"yum-3.4.3-163.el7.centos.src.rpm","build_date":"Thu 08 Aug 2019 04:57:56 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://yum.baseurl.org/","summary":"RPM package installer/updater/manager","description":"Yum is a utility that can check for and automatically download and install updated RPM packages. Dependencies are obtained and downloaded automatically, prompting the user for permission as necessary.","build_epoch":1565265476,"build_epoch_utc":null,"install_date_epoch":1571242901,"install_date_epoch_utc":null},{"name":"e2fsprogs-libs","version":"1.42.9","release":"16.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:41 AM PDT","group":"Development/Libraries","size":363697,"license":"GPLv2 and LGPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:22:41 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"e2fsprogs-1.42.9-16.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:19:51 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://e2fsprogs.sourceforge.net/","summary":"Ext2/3/4 filesystem-specific shared libraries","description":"E2fsprogs-libs contains libe2p and libext2fs, the libraries of the e2fsprogs package. These libraries are used to directly acccess ext2/3/4 filesystems from userspace.","build_epoch":1565306391,"build_epoch_utc":null,"install_date_epoch":1571242901,"install_date_epoch_utc":null},{"name":"kmod-libs","version":"20","release":"25.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:41 AM PDT","group":"System Environment/Libraries","size":91800,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:28:24 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"kmod-20-25.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:05:58 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary","summary":"Libraries to handle kernel module loading and unloading","description":"The kmod-libs package provides runtime libraries for any application that wishes to load or unload Linux kernel modules from the running system.","build_epoch":1565309158,"build_epoch_utc":null,"install_date_epoch":1571242901,"install_date_epoch_utc":null},{"name":"freetype","version":"2.8","release":"14.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:41 AM PDT","group":"System Environment/Libraries","size":824481,"license":"(FTL or GPLv2+) and BSD and MIT and Public Domain and zlib with acknowledgement","signature":"RSA/SHA256, Thu 22 Aug 2019 02:24:12 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"freetype-2.8-14.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:30:28 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.freetype.org","summary":"A free and portable font rendering engine","description":"The FreeType engine is a free and portable font rendering engine, developed to provide advanced font support for a variety of platforms and environments. FreeType is a library which can open and manages font files as well as efficiently load, hint and render individual glyphs. FreeType is not a font server or a complete text-rendering library.","build_epoch":1565307028,"build_epoch_utc":null,"install_date_epoch":1571242901,"install_date_epoch_utc":null},{"name":"teamd","version":"1.27","release":"9.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:41 AM PDT","group":"System Environment/Daemons","size":277924,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:44:34 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libteam-1.27-9.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:33:37 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.libteam.org","summary":"Team network device control daemon","description":"The teamd package contains team network device control daemon.","build_epoch":1565310817,"build_epoch_utc":null,"install_date_epoch":1571242901,"install_date_epoch_utc":null},{"name":"ipset-libs","version":"7.1","release":"1.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:42 AM PDT","group":"Unspecified","size":206400,"license":"GPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:26:18 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"ipset-7.1-1.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:55:38 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://ipset.netfilter.org/","summary":"Shared library providing the IP sets functionality","description":"This package contains the libraries which provide the IP sets funcionality.","build_epoch":1565308538,"build_epoch_utc":null,"install_date_epoch":1571242902,"install_date_epoch_utc":null},{"name":"kpartx","version":"0.4.9","release":"127.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:43 AM PDT","group":"System Environment/Base","size":41363,"license":"GPL+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:28:26 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"device-mapper-multipath-0.4.9-127.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:08:46 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://christophe.varoqui.free.fr/","summary":"Partition device manager for device-mapper devices","description":"kpartx manages partition creation and removal for device-mapper devices.","build_epoch":1565305726,"build_epoch_utc":null,"install_date_epoch":1571242903,"install_date_epoch_utc":null},{"name":"authconfig","version":"6.2.8","release":"30.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:53 AM PDT","group":"System Environment/Base","size":2316601,"license":"GPLv2+","signature":"RSA/SHA256, Thu 10 Aug 2017 08:00:45 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"authconfig-6.2.8-30.el7.src.rpm","build_date":"Fri 04 Aug 2017 02:05:38 AM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://fedorahosted.org/authconfig","summary":"Command line tool for setting up authentication from network services","description":"Authconfig is a command line utility which can configure a workstation to use shadow (more secure) passwords. Authconfig can also configure a system to be a client for certain networked user information and authentication schemes.","build_epoch":1501837538,"build_epoch_utc":null,"install_date_epoch":1565891633,"install_date_epoch_utc":null},{"name":"chkconfig","version":"1.7.4","release":"1.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:08 AM PDT","group":"System Environment/Base","size":779531,"license":"GPLv2","signature":"RSA/SHA256, Thu 10 Aug 2017 08:17:48 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"chkconfig-1.7.4-1.el7.src.rpm","build_date":"Fri 04 Aug 2017 06:45:51 AM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/fedora-sysv/chkconfig","summary":"A system tool for maintaining the /etc/rc*.d hierarchy","description":"Chkconfig is a basic system utility. It updates and queries runlevel information for system services. Chkconfig manipulates the numerous symbolic links in /etc/rc.d, to relieve system administrators of some of the drudgery of manually editing the symbolic links.","build_epoch":1501854351,"build_epoch_utc":null,"install_date_epoch":1565891588,"install_date_epoch_utc":null},{"name":"cryptsetup-libs","version":"2.0.3","release":"5.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:44 AM PDT","group":"System Environment/Libraries","size":1219599,"license":"GPLv2+ and LGPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:21:44 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"cryptsetup-2.0.3-5.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:07:41 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://gitlab.com/cryptsetup/cryptsetup","summary":"Cryptsetup shared library","description":"This package contains the cryptsetup shared library, libcryptsetup.","build_epoch":1565305661,"build_epoch_utc":null,"install_date_epoch":1571242904,"install_date_epoch_utc":null},{"name":"setup","version":"2.8.71","release":"10.el7","architecture":"noarch","install_date":"Thu 15 Aug 2019 10:53:12 AM PDT","group":"System Environment/Base","size":696893,"license":"Public Domain","signature":"RSA/SHA256, Mon 12 Nov 2018 07:19:37 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"setup-2.8.71-10.el7.src.rpm","build_date":"Tue 30 Oct 2018 12:48:11 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://pagure.io/setup/","summary":"A set of system configuration and setup files","description":"The setup package contains a set of important system configuration and setup files, such as passwd, group, and profile.","build_epoch":1540928891,"build_epoch_utc":null,"install_date_epoch":1565891592,"install_date_epoch_utc":null},{"name":"elfutils-libs","version":"0.176","release":"2.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:45 AM PDT","group":"Development/Tools","size":809871,"license":"GPLv2+ or LGPLv3+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:22:53 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"elfutils-0.176-2.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:16:25 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://elfutils.org/","summary":"Libraries to handle compiled objects","description":"The elfutils-libs package contains libraries which implement DWARF, ELF, and machine-specific ELF handling. These libraries are used by the programs in the elfutils package. The elfutils-devel package enables building other programs using these libraries.","build_epoch":1565306185,"build_epoch_utc":null,"install_date_epoch":1571242905,"install_date_epoch_utc":null},{"name":"zlib","version":"1.2.7","release":"18.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:15 AM PDT","group":"System Environment/Libraries","size":185294,"license":"zlib and Boost","signature":"RSA/SHA256, Mon 12 Nov 2018 06:49:53 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"zlib-1.2.7-18.el7.src.rpm","build_date":"Tue 30 Oct 2018 01:24:40 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.zlib.net/","summary":"The compression and decompression library","description":"Zlib is a general-purpose, patent-free, lossless data compression library which is used by many different programs.","build_epoch":1540931080,"build_epoch_utc":null,"install_date_epoch":1565891595,"install_date_epoch_utc":null},{"name":"initscripts","version":"9.49.47","release":"1.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:48 AM PDT","group":"System Environment/Base","size":1523210,"license":"GPLv2 and GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:26:07 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"initscripts-9.49.47-1.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:52:43 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/fedora-sysv/initscripts","summary":"The inittab file and the /etc/init.d scripts","description":"The initscripts package contains basic system scripts used during a boot of the system. It also contains scripts which activate and deactivate most network interfaces.","build_epoch":1565308363,"build_epoch_utc":null,"install_date_epoch":1571242908,"install_date_epoch_utc":null},{"name":"man-db","version":"2.6.3","release":"11.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:56 AM PDT","group":"System Environment/Base","size":2138837,"license":"GPLv2+ and GPLv3+","signature":"RSA/SHA256, Mon 12 Nov 2018 06:39:38 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"man-db-2.6.3-11.el7.src.rpm","build_date":"Tue 30 Oct 2018 01:26:54 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.nongnu.org/man-db/","summary":"Tools for searching and reading man pages","description":"The man-db package includes five tools for browsing man-pages: man, whatis, apropos, manpath and lexgrog. man formats and displays manual pages. whatis searches the manual page names. apropos searches the manual page names and descriptions. manpath determines search path for manual pages. lexgrog directly reads header information in manual pages.","build_epoch":1540931214,"build_epoch_utc":null,"install_date_epoch":1565891636,"install_date_epoch_utc":null},{"name":"popt","version":"1.13","release":"16.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:16 AM PDT","group":"System Environment/Libraries","size":88516,"license":"MIT","signature":"RSA/SHA256, Thu 03 Jul 2014 09:33:04 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"popt-1.13-16.el7.src.rpm","build_date":"Mon 09 Jun 2014 09:03:23 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.rpm5.org/","summary":"C library for parsing command line parameters","description":"Popt is a C library for parsing command line parameters. Popt was heavily influenced by the getopt() and getopt_long() functions, but it improves on them by allowing more powerful argument expansion. Popt can parse arbitrary argv[] style arrays and automatically set variables based on command line arguments. Popt allows command line arguments to be aliased via configuration files and includes utility functions for parsing arbitrary strings into argv[] arrays using shell-like rules.","build_epoch":1402373003,"build_epoch_utc":null,"install_date_epoch":1565891596,"install_date_epoch_utc":null},{"name":"selinux-policy","version":"3.13.1","release":"252.el7.1","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:21:49 AM PDT","group":"System Environment/Base","size":6909,"license":"GPLv2+","signature":"RSA/SHA256, Sat 14 Sep 2019 10:10:14 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"selinux-policy-3.13.1-252.el7.1.src.rpm","build_date":"Tue 10 Sep 2019 08:01:56 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://oss.tresys.com/repos/refpolicy/","summary":"SELinux policy configuration","based_off_of_reference_policy":"Checked out revision 2.20091117","description":"SELinux Reference Policy - modular. Based off of reference policy: Checked out revision 2.20091117","build_epoch":1568127716,"build_epoch_utc":null,"install_date_epoch":1571242909,"install_date_epoch_utc":null},{"name":"gawk","version":"4.0.2","release":"4.el7_3.1","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:16 AM PDT","group":"Applications/Text","size":2435978,"license":"GPLv3+ and GPL and LGPLv3+ and LGPL and BSD","signature":"RSA/SHA256, Thu 29 Jun 2017 05:40:38 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"gawk-4.0.2-4.el7_3.1.src.rpm","build_date":"Wed 28 Jun 2017 02:52:50 PM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/gawk/gawk.html","summary":"The GNU version of the awk text processing utility","description":"The gawk package contains the GNU version of awk, a text processing utility. Awk interprets a special-purpose programming language to do quick and easy text pattern matching and reformatting jobs. Install the gawk package if you need a text processing utility. Gawk is considered to be a standard Linux tool for processing text.","build_epoch":1498686770,"build_epoch_utc":null,"install_date_epoch":1565891596,"install_date_epoch_utc":null},{"name":"NetworkManager","epoch":1,"version":"1.18.0","release":"5.el7_7.1","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:01 AM PDT","group":"System Environment/Base","size":5360883,"license":"GPLv2+","signature":"RSA/SHA256, Sat 14 Sep 2019 04:49:22 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"NetworkManager-1.18.0-5.el7_7.1.src.rpm","build_date":"Fri 13 Sep 2019 11:05:30 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnome.org/projects/NetworkManager/","summary":"Network connection manager and user applications","description":"NetworkManager is a system service that manages network interfaces and connections based on user or automatic configuration. It supports Ethernet, Bridge, Bond, VLAN, Team, InfiniBand, Wi-Fi, mobile broadband (WWAN), PPPoE and other devices, and supports a variety of different VPN services.","build_epoch":1568397930,"build_epoch_utc":null,"install_date_epoch":1571242921,"install_date_epoch_utc":null},{"name":"libacl","version":"2.2.51","release":"14.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:16 AM PDT","group":"System Environment/Libraries","size":37056,"license":"LGPLv2+","signature":"RSA/SHA256, Wed 25 Apr 2018 04:10:52 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"acl-2.2.51-14.el7.src.rpm","build_date":"Tue 10 Apr 2018 05:41:24 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://acl.bestbits.at/","summary":"Dynamic library for access control list support","description":"This package contains the libacl.so dynamic library which contains the POSIX 1003.1e draft standard 17 functions for manipulating access control lists.","build_epoch":1523407284,"build_epoch_utc":null,"install_date_epoch":1565891596,"install_date_epoch_utc":null},{"name":"dracut-network","version":"033","release":"564.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:02 AM PDT","group":"System Environment/Base","size":148891,"license":"GPLv2+ and LGPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:22:29 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"dracut-033-564.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:14:34 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://dracut.wiki.kernel.org/","summary":"dracut modules to build a dracut initramfs with network support","description":"This package requires everything which is needed to build a generic all purpose initramfs with network support with dracut.","build_epoch":1565306074,"build_epoch_utc":null,"install_date_epoch":1571242922,"install_date_epoch_utc":null},{"name":"sed","version":"4.2.2","release":"5.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:16 AM PDT","group":"Applications/Text","size":601208,"license":"GPLv3+","signature":"RSA/SHA256, Thu 03 Jul 2014 09:58:02 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"sed-4.2.2-5.el7.src.rpm","build_date":"Mon 09 Jun 2014 06:01:55 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://sed.sourceforge.net/","summary":"A GNU stream text editor","description":"The sed (Stream EDitor) editor is a stream or batch (non-interactive) editor. Sed takes text as input, performs an operation or set of operations on the text and outputs the modified text. The operations that sed performs (substitutions, deletions, insertions, etc.) can be specified in a script file or from the command line.","build_epoch":1402362115,"build_epoch_utc":null,"install_date_epoch":1565891596,"install_date_epoch_utc":null},{"name":"device-mapper-event","epoch":7,"version":"1.02.158","release":"2.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:14 AM PDT","group":"System Environment/Base","size":42707,"license":"GPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:22:08 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"lvm2-2.02.185-2.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:44:27 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://sources.redhat.com/lvm2","summary":"Device-mapper event daemon","description":"This package contains the dmeventd daemon for monitoring the state of device-mapper devices.","build_epoch":1565311467,"build_epoch_utc":null,"install_date_epoch":1571242934,"install_date_epoch_utc":null},{"name":"gmp","epoch":1,"version":"6.0.0","release":"15.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:16 AM PDT","group":"System Environment/Libraries","size":657046,"license":"LGPLv3+ or GPLv2+","signature":"RSA/SHA256, Thu 10 Aug 2017 09:14:25 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"gmp-6.0.0-15.el7.src.rpm","build_date":"Wed 02 Aug 2017 06:13:15 PM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://gmplib.org/","summary":"A GNU arbitrary precision library","description":"The gmp package contains GNU MP, a library for arbitrary precision arithmetic, signed integers operations, rational numbers and floating point numbers. GNU MP is designed for speed, for both small and very large operands. GNU MP is fast because it uses fullwords as the basic arithmetic type, it uses fast algorithms, it carefully optimizes assembly code for many CPUs' most common inner loops, and it generally emphasizes speed over simplicity/elegance in its operations. Install the gmp package if you need a fast arbitrary precision library.","build_epoch":1501722795,"build_epoch_utc":null,"install_date_epoch":1565891596,"install_date_epoch_utc":null},{"name":"cronie-anacron","version":"1.4.11","release":"23.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:15 AM PDT","group":"System Environment/Base","size":41683,"license":"MIT and BSD and ISC and GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:21:41 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"cronie-1.4.11-23.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:07:25 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/cronie-crond/cronie","summary":"Utility for running regular jobs","description":"Anacron is part of cronie that is used for running jobs with regular periodicity which do not have exact time of day of execution. The default settings of anacron execute the daily, weekly, and monthly jobs, but anacron allows setting arbitrary periodicity of jobs. Using anacron allows running the periodic jobs even if the system is often powered off and it also allows randomizing the time of the job execution for better utilization of resources shared among multiple systems.","build_epoch":1565305645,"build_epoch_utc":null,"install_date_epoch":1571242935,"install_date_epoch_utc":null},{"name":"ca-certificates","version":"2018.2.22","release":"70.0.el7_5","architecture":"noarch","install_date":"Thu 15 Aug 2019 10:53:17 AM PDT","group":"System Environment/Base","size":973960,"license":"Public Domain","signature":"RSA/SHA256, Thu 17 May 2018 06:16:26 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"ca-certificates-2018.2.22-70.0.el7_5.src.rpm","build_date":"Tue 15 May 2018 09:36:08 PM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.mozilla.org/","summary":"The Mozilla CA root certificate bundle","description":"This package contains the set of CA certificates chosen by the Mozilla Foundation for use with the Internet PKI.","build_epoch":1526445368,"build_epoch_utc":null,"install_date_epoch":1565891597,"install_date_epoch_utc":null},{"name":"policycoreutils-python","version":"2.5","release":"33.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:16 AM PDT","group":"System Environment/Base","size":1304826,"license":"GPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:39:39 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"policycoreutils-2.5-33.el7.src.rpm","build_date":"Thu 08 Aug 2019 06:47:35 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.selinuxproject.org","summary":"SELinux policy core python utilities","description":"The policycoreutils-python package contains the management tools use to manage an SELinux environment.","build_epoch":1565315255,"build_epoch_utc":null,"install_date_epoch":1571242936,"install_date_epoch_utc":null},{"name":"plymouth-core-libs","version":"0.8.9","release":"0.32.20140113.el7.centos","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:27 AM PDT","group":"Development/Libraries","size":222840,"license":"GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:39:20 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"plymouth-0.8.9-0.32.20140113.el7.centos.src.rpm","build_date":"Thu 08 Aug 2019 04:51:46 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.freedesktop.org/wiki/Software/Plymouth","summary":"Plymouth core libraries","description":"This package contains the libply and libply-splash-core libraries used by Plymouth.","build_epoch":1565265106,"build_epoch_utc":null,"install_date_epoch":1571242947,"install_date_epoch_utc":null},{"name":"yajl","version":"2.0.4","release":"4.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 12:00:18 PM PDT","group":"Development/Libraries","size":116450,"license":"ISC","signature":"RSA/SHA256, Thu 03 Jul 2014 10:52:29 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"yajl-2.0.4-4.el7.src.rpm","build_date":"Mon 09 Jun 2014 10:00:29 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://lloyd.github.com/yajl/","summary":"Yet Another JSON Library (YAJL)","description":"Yet Another JSON Library. YAJL is a small event-driven (SAX-style) JSON parser written in ANSI C, and a small validating JSON generator.","build_epoch":1402376429,"build_epoch_utc":null,"install_date_epoch":1565895618,"install_date_epoch_utc":null},{"name":"bzip2-libs","version":"1.0.6","release":"13.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:18 AM PDT","group":"System Environment/Libraries","size":70093,"license":"BSD","signature":"RSA/SHA256, Wed 25 Nov 2015 06:18:43 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"bzip2-1.0.6-13.el7.src.rpm","build_date":"Thu 19 Nov 2015 09:04:52 PM PST","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.bzip.org/","summary":"Libraries for applications using bzip2","description":"Libraries for applications using the bzip2 compression format.","build_epoch":1447995892,"build_epoch_utc":null,"install_date_epoch":1565891598,"install_date_epoch_utc":null},{"name":"linux-firmware","version":"20190429","release":"72.gitddde598.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:22:38 AM PDT","group":"System Environment/Kernel","size":340702338,"license":"GPL+ and GPLv2+ and MIT and Redistributable, no modification permitted","signature":"RSA/SHA256, Thu 22 Aug 2019 02:59:09 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"linux-firmware-20190429-72.gitddde598.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:22:46 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/","summary":"Firmware files used by the Linux kernel","description":"Kernel-firmware includes firmware files required for some devices to operate.","build_epoch":1565266966,"build_epoch_utc":null,"install_date_epoch":1571242958,"install_date_epoch_utc":null},{"name":"container-storage-setup","version":"0.11.0","release":"2.git5eaf76c.el7","architecture":"noarch","install_date":"Thu 15 Aug 2019 12:00:19 PM PDT","group":"Unspecified","size":101782,"license":"ASL 2.0","signature":"RSA/SHA256, Tue 21 Aug 2018 12:48:30 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"container-storage-setup-0.11.0-2.git5eaf76c.el7.src.rpm","build_date":"Tue 21 Aug 2018 07:41:44 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/projectatomic/container-storage-setup","summary":"A simple service to setup container storage devices","description":"This is a simple service to configure Container Runtimes to use an LVM-managed thin pool. It also supports auto-growing both the pool as well as the root logical volume and partition table.","build_epoch":1534862504,"build_epoch_utc":null,"install_date_epoch":1565895619,"install_date_epoch_utc":null},{"name":"libxml2","version":"2.9.1","release":"6.el7_2.3","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:18 AM PDT","group":"Development/Libraries","size":1710062,"license":"MIT","signature":"RSA/SHA256, Thu 23 Jun 2016 01:07:58 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libxml2-2.9.1-6.el7_2.3.src.rpm","build_date":"Thu 23 Jun 2016 07:36:41 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://xmlsoft.org/","summary":"Library providing XML and HTML support","description":"This library allows to manipulate XML files. It includes support to read, modify and write XML and HTML files. There is DTDs support this includes parsing and validation even with complex DtDs, either at parse time or later once the document has been modified. The output can be a simple SAX stream or and in-memory DOM like representations. In this case one can use the built-in XPath and XPointer implementation to select sub nodes or ranges. A flexible Input/Output mechanism is available, with existing HTTP and FTP modules and combined to an URI library.","build_epoch":1466692601,"build_epoch_utc":null,"install_date_epoch":1565891598,"install_date_epoch_utc":null},{"name":"audit","version":"2.8.5","release":"4.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:48 AM PDT","group":"System Environment/Daemons","size":660117,"license":"GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:20:29 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"audit-2.8.5-4.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:06:20 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://people.redhat.com/sgrubb/audit/","summary":"User space tools for 2.6 kernel auditing","description":"The audit package contains the user space utilities for storing and searching the audit records generated by the audit subsystem in the Linux 2.6 and later kernels.","build_epoch":1565265980,"build_epoch_utc":null,"install_date_epoch":1571242968,"install_date_epoch_utc":null},{"name":"PyYAML","version":"3.10","release":"11.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 12:00:19 PM PDT","group":"Development/Libraries","size":645110,"license":"MIT","signature":"RSA/SHA256, Thu 03 Jul 2014 09:43:09 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"PyYAML-3.10-11.el7.src.rpm","build_date":"Mon 09 Jun 2014 08:53:05 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://pyyaml.org/","summary":"YAML parser and emitter for Python","description":"YAML is a data serialization format designed for human readability and interaction with scripting languages. PyYAML is a YAML parser and emitter for Python. PyYAML features a complete YAML 1.1 parser, Unicode support, pickle support, capable extension API, and sensible error messages. PyYAML supports standard YAML tags and provides Python-specific tags that allow to represent an arbitrary Python object. PyYAML is applicable for a broad range of tasks from complex configuration files to object serialization and persistance.","build_epoch":1402372385,"build_epoch_utc":null,"install_date_epoch":1565895619,"install_date_epoch_utc":null},{"name":"libgcrypt","version":"1.5.3","release":"14.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:18 AM PDT","group":"System Environment/Libraries","size":597727,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 10 Aug 2017 10:08:59 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libgcrypt-1.5.3-14.el7.src.rpm","build_date":"Wed 02 Aug 2017 08:55:07 AM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnupg.org/","summary":"A general-purpose cryptography library","description":"Libgcrypt is a general purpose crypto library based on the code used in GNU Privacy Guard. This is a development version.","build_epoch":1501689307,"build_epoch_utc":null,"install_date_epoch":1565891598,"install_date_epoch_utc":null},{"name":"openssh-clients","version":"7.4p1","release":"21.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:49 AM PDT","group":"Applications/Internet","size":2643176,"license":"BSD","signature":"RSA/SHA256, Thu 22 Aug 2019 02:37:26 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"openssh-7.4p1-21.el7.src.rpm","build_date":"Thu 08 Aug 2019 06:40:49 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.openssh.com/portable.html","summary":"An open source SSH client applications","description":"OpenSSH is a free version of SSH (Secure SHell), a program for logging into and executing commands on a remote machine. This package includes the clients necessary to make encrypted connections to SSH servers.","build_epoch":1565314849,"build_epoch_utc":null,"install_date_epoch":1571242969,"install_date_epoch_utc":null},{"name":"python-setuptools","version":"0.9.8","release":"7.el7","architecture":"noarch","install_date":"Thu 15 Aug 2019 12:00:19 PM PDT","group":"Applications/System","size":2040815,"license":"Python or ZPLv2.0","signature":"RSA/SHA256, Thu 10 Aug 2017 12:23:40 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"python-setuptools-0.9.8-7.el7.src.rpm","build_date":"Wed 02 Aug 2017 03:18:29 AM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://pypi.python.org/pypi/setuptools","summary":"Easily build and distribute Python packages","description":"Setuptools is a collection of enhancements to the Python distutils that allow you to more easily build and distribute Python packages, especially ones that have dependencies on other packages. This package contains the runtime components of setuptools, necessary to execute the software that requires pkg_resources.py. This package contains the distribute fork of setuptools.","build_epoch":1501669109,"build_epoch_utc":null,"install_date_epoch":1565895619,"install_date_epoch_utc":null},{"name":"lua","version":"5.1.4","release":"15.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:18 AM PDT","group":"Development/Languages","size":640319,"license":"MIT","signature":"RSA/SHA256, Sun 20 Nov 2016 11:22:39 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"lua-5.1.4-15.el7.src.rpm","build_date":"Sat 05 Nov 2016 07:47:35 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.lua.org/","summary":"Powerful light-weight programming language","description":"Lua is a powerful light-weight programming language designed for extending applications. Lua is also frequently used as a general-purpose, stand-alone language. Lua is free software. Lua combines simple procedural syntax with powerful data description constructs based on associative arrays and extensible semantics. Lua is dynamically typed, interpreted from bytecodes, and has automatic memory management with garbage collection, making it ideal for configuration, scripting, and rapid prototyping.","build_epoch":1478400455,"build_epoch_utc":null,"install_date_epoch":1565891598,"install_date_epoch_utc":null},{"name":"tuned","version":"2.11.0","release":"5.el7_7.1","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:22:50 AM PDT","group":"Unspecified","size":815395,"license":"GPLv2+","signature":"RSA/SHA256, Sat 14 Sep 2019 04:53:14 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"tuned-2.11.0-5.el7_7.1.src.rpm","build_date":"Fri 13 Sep 2019 11:16:55 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.tuned-project.org/","summary":"A dynamic adaptive system tuning daemon","description":"The tuned package contains a daemon that tunes system settings dynamically. It does so by monitoring the usage of several system components periodically. Based on that information components will then be put into lower or higher power saving modes to adapt to the current usage. Currently only ethernet network and ATA harddisk devices are implemented.","build_epoch":1568398615,"build_epoch_utc":null,"install_date_epoch":1571242970,"install_date_epoch_utc":null},{"name":"setools-libs","version":"3.3.8","release":"4.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 12:00:20 PM PDT","group":"System Environment/Libraries","size":1917790,"license":"LGPLv2","signature":"RSA/SHA256, Mon 12 Nov 2018 06:46:38 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"setools-3.3.8-4.el7.src.rpm","build_date":"Fri 02 Nov 2018 08:53:43 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://oss.tresys.com/projects/setools","summary":"Policy analysis support libraries for SELinux","description":"SETools is a collection of graphical tools, command-line tools, and libraries designed to facilitate SELinux policy analysis. This package includes the following run-time libraries: libapol policy analysis library libpoldiff semantic policy difference library libqpol library that abstracts policy internals libseaudit parse and filter SELinux audit messages in log files libsefs SELinux file contexts library","build_epoch":1541174023,"build_epoch_utc":null,"install_date_epoch":1565895620,"install_date_epoch_utc":null},{"name":"libnl3","version":"3.2.28","release":"4.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:19 AM PDT","group":"Development/Libraries","size":864984,"license":"LGPLv2","signature":"RSA/SHA256, Thu 10 Aug 2017 10:22:44 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libnl3-3.2.28-4.el7.src.rpm","build_date":"Thu 03 Aug 2017 12:49:03 PM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.infradead.org/~tgr/libnl/","summary":"Convenience library for kernel netlink sockets","description":"This package contains a convenience library to simplify using the Linux kernel's netlink sockets interface for network manipulation","build_epoch":1501789743,"build_epoch_utc":null,"install_date_epoch":1565891599,"install_date_epoch_utc":null},{"name":"firewalld","version":"0.6.3","release":"2.el7_7.1","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:22:52 AM PDT","group":"Unspecified","size":1943890,"license":"GPLv2+","signature":"RSA/SHA256, Sat 14 Sep 2019 04:52:50 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"firewalld-0.6.3-2.el7_7.1.src.rpm","build_date":"Fri 13 Sep 2019 11:02:20 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.firewalld.org","summary":"A firewall daemon with D-Bus interface providing a dynamic firewall","description":"firewalld is a firewall service daemon that provides a dynamic customizable firewall with a D-Bus interface.","build_epoch":1568397740,"build_epoch_utc":null,"install_date_epoch":1571242972,"install_date_epoch_utc":null},{"name":"parted","version":"3.1","release":"31.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:57 AM PDT","group":"Applications/System","size":2336844,"license":"GPLv3+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:37:52 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"parted-3.1-31.el7.src.rpm","build_date":"Thu 08 Aug 2019 06:41:49 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/parted","summary":"The GNU disk partition manipulation program","description":"The GNU Parted program allows you to create, destroy, resize, move, and copy hard disk partitions. Parted can be used for creating space for new operating systems, reorganizing disk usage, and copying data to new hard disks.","build_epoch":1565314909,"build_epoch_utc":null,"install_date_epoch":1571242977,"install_date_epoch_utc":null},{"name":"libmnl","version":"1.0.3","release":"7.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:19 AM PDT","group":"System Environment/Libraries","size":51847,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 07:59:14 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libmnl-1.0.3-7.el7.src.rpm","build_date":"Tue 17 Jun 2014 08:49:02 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://netfilter.org/projects/libmnl","summary":"A minimalistic Netlink library","description":"libmnl is a minimalistic user-space library oriented to Netlink developers. There are a lot of common tasks in parsing, validating, constructing of both the Netlink header and TLVs that are repetitive and easy to get wrong. This library aims to provide simple helpers that allows you to re-use code and to avoid re-inventing the wheel.","build_epoch":1403020142,"build_epoch_utc":null,"install_date_epoch":1565891599,"install_date_epoch_utc":null},{"name":"e2fsprogs","version":"1.42.9","release":"16.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:22:59 AM PDT","group":"System Environment/Base","size":2548941,"license":"GPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:22:40 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"e2fsprogs-1.42.9-16.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:19:51 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://e2fsprogs.sourceforge.net/","summary":"Utilities for managing ext2, ext3, and ext4 filesystems","description":"The e2fsprogs package contains a number of utilities for creating, checking, modifying, and correcting any inconsistencies in second, third and fourth extended (ext2/ext3/ext4) filesystems. E2fsprogs contains e2fsck (used to repair filesystem inconsistencies after an unclean shutdown), mke2fs (used to initialize a partition to contain an empty ext2 filesystem), debugfs (used to examine the internal structure of a filesystem, to manually repair a corrupted filesystem, or to create test cases for e2fsck), tune2fs (used to modify filesystem parameters), and most of the other core ext2fs filesystem utilities. You should install the e2fsprogs package if you need to manage the performance of an ext2, ext3, or ext4 filesystem.","build_epoch":1565306391,"build_epoch_utc":null,"install_date_epoch":1571242979,"install_date_epoch_utc":null},{"name":"passwd","version":"0.79","release":"5.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:23:01 AM PDT","group":"System Environment/Base","size":430226,"license":"BSD or GPL+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:37:53 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"passwd-0.79-5.el7.src.rpm","build_date":"Thu 08 Aug 2019 06:39:01 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://pagure.io/passwd","summary":"An utility for setting or changing passwords using PAM","description":"This package contains a system utility (passwd) which sets or changes passwords, using PAM (Pluggable Authentication Modules) library.","build_epoch":1565314741,"build_epoch_utc":null,"install_date_epoch":1571242981,"install_date_epoch_utc":null},{"name":"pam","version":"1.1.8","release":"22.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:20 AM PDT","group":"System Environment/Base","size":2630324,"license":"BSD and GPLv2+","signature":"RSA/SHA256, Wed 25 Apr 2018 04:33:49 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"pam-1.1.8-22.el7.src.rpm","build_date":"Tue 10 Apr 2018 08:22:15 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.linux-pam.org/","summary":"An extensible library which provides authentication for applications","description":"PAM (Pluggable Authentication Modules) is a system security tool that allows system administrators to set authentication policy without having to recompile programs that handle authentication.","build_epoch":1523416935,"build_epoch_utc":null,"install_date_epoch":1565891600,"install_date_epoch_utc":null},{"name":"dmidecode","epoch":1,"version":"3.2","release":"3.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:23:01 AM PDT","group":"System Environment/Base","size":216235,"license":"GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:22:22 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"dmidecode-3.2-3.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:12:09 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.nongnu.org/dmidecode/","summary":"Tool to analyse BIOS DMI data","description":"dmidecode reports information about x86 & ia64 hardware as described in the system BIOS according to the SMBIOS/DMI standard. This information typically includes system manufacturer, model name, serial number, BIOS version, asset tag as well as a lot of other details of varying level of interest and reliability depending on the manufacturer. This will often include usage status for the CPU sockets, expansion slots (e.g. AGP, PCI, ISA) and memory module slots, and the list of I/O ports (e.g. serial, parallel, USB).","build_epoch":1565305929,"build_epoch_utc":null,"install_date_epoch":1571242981,"install_date_epoch_utc":null},{"name":"cyrus-sasl-lib","version":"2.1.26","release":"23.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:20 AM PDT","group":"System Environment/Libraries","size":396911,"license":"BSD with advertising","signature":"RSA/SHA256, Wed 25 Apr 2018 03:56:48 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"cyrus-sasl-2.1.26-23.el7.src.rpm","build_date":"Tue 10 Apr 2018 09:20:59 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://asg.web.cmu.edu/sasl/sasl-library.html","summary":"Shared libraries needed by applications which use Cyrus SASL","description":"The cyrus-sasl-lib package contains shared libraries which are needed by applications which use the Cyrus SASL library.","build_epoch":1523420459,"build_epoch_utc":null,"install_date_epoch":1565891600,"install_date_epoch_utc":null},{"name":"iwl135-firmware","version":"18.168.6.1","release":"72.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:23:02 AM PDT","group":"System Environment/Kernel","size":838358,"license":"Redistributable, no modification permitted","signature":"RSA/SHA256, Thu 22 Aug 2019 02:58:03 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"linux-firmware-20190429-72.gitddde598.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:22:46 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/","summary":"Firmware for Intel(R) Centrino Wireless-N 135 Series Adapters","description":"This package contains the firmware required by the iwlagn driver for Linux to support the iwl135 hardware. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully.","build_epoch":1565266966,"build_epoch_utc":null,"install_date_epoch":1571242982,"install_date_epoch_utc":null},{"name":"libunistring","version":"0.9.3","release":"9.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:20 AM PDT","group":"System Environment/Libraries","size":1145761,"license":"LGPLv3+","signature":"RSA/SHA256, Thu 03 Jul 2014 08:22:35 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libunistring-0.9.3-9.el7.src.rpm","build_date":"Mon 09 Jun 2014 03:52:46 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/libunistring/","summary":"GNU Unicode string library","description":"This portable C library implements Unicode string types in three flavours: (UTF-8, UTF-16, UTF-32), together with functions for character processing (names, classifications, properties) and functions for string processing (iteration, formatted output, width, word breaks, line breaks, normalization, case folding and regular expressions).","build_epoch":1402354366,"build_epoch_utc":null,"install_date_epoch":1565891600,"install_date_epoch_utc":null},{"name":"iwl6000-firmware","version":"9.221.4.1","release":"72.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:23:02 AM PDT","group":"System Environment/Kernel","size":591738,"license":"Redistributable, no modification permitted","signature":"RSA/SHA256, Thu 22 Aug 2019 02:58:11 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"linux-firmware-20190429-72.gitddde598.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:22:46 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/","summary":"Firmware for Intel(R) Wireless WiFi Link 6000 AGN Adapter","description":"This package contains the firmware required by the iwlagn driver for Linux. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully.","build_epoch":1565266966,"build_epoch_utc":null,"install_date_epoch":1571242982,"install_date_epoch_utc":null},{"name":"jansson","version":"2.10","release":"1.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:21 AM PDT","group":"System Environment/Libraries","size":74998,"license":"MIT","signature":"RSA/SHA256, Thu 10 Aug 2017 09:50:09 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"jansson-2.10-1.el7.src.rpm","build_date":"Wed 02 Aug 2017 05:32:08 PM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.digip.org/jansson/","summary":"C library for encoding, decoding and manipulating JSON data","description":"Small library for parsing and writing JSON documents.","build_epoch":1501720328,"build_epoch_utc":null,"install_date_epoch":1565891601,"install_date_epoch_utc":null},{"name":"iwl7265-firmware","version":"22.0.7.0","release":"72.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:23:05 AM PDT","group":"System Environment/Kernel","size":73429474,"license":"Redistributable, no modification permitted","signature":"RSA/SHA256, Thu 22 Aug 2019 02:58:16 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"linux-firmware-20190429-72.gitddde598.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:22:46 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/","summary":"Firmware for Intel(R) Dual Band Wireless-AC 7265 Series Adapters","description":"This package contains the firmware required by the iwlagn driver for Linux. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully.","build_epoch":1565266966,"build_epoch_utc":null,"install_date_epoch":1571242985,"install_date_epoch_utc":null},{"name":"dbus-libs","epoch":1,"version":"1.10.24","release":"13.el7_6","architecture":"x86_64","install_date":"Thu 15 Aug 2019 12:01:15 PM PDT","group":"Development/Libraries","size":362560,"license":"(GPLv2+ or AFL) and GPLv2+","signature":"RSA/SHA256, Tue 19 Mar 2019 12:51:08 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"dbus-1.10.24-13.el7_6.src.rpm","build_date":"Thu 14 Mar 2019 03:18:13 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.freedesktop.org/Software/dbus/","summary":"Libraries for accessing D-BUS","description":"This package contains lowlevel libraries for accessing D-BUS.","build_epoch":1552558693,"build_epoch_utc":null,"install_date_epoch":1565895675,"install_date_epoch_utc":null},{"name":"slang","version":"2.2.4","release":"11.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:21 AM PDT","group":"System Environment/Libraries","size":1881912,"license":"GPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 10:01:18 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"slang-2.2.4-11.el7.src.rpm","build_date":"Mon 09 Jun 2014 03:12:57 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.jedsoft.org/slang/","summary":"The shared library for the S-Lang extension language","description":"S-Lang is an interpreted language and a programming library. The S-Lang language was designed so that it can be easily embedded into a program to provide the program with a powerful extension language. The S-Lang library, provided in this package, provides the S-Lang extension language. S-Lang's syntax resembles C, which makes it easy to recode S-Lang procedures in C if you need to.","build_epoch":1402351977,"build_epoch_utc":null,"install_date_epoch":1565891601,"install_date_epoch_utc":null},{"name":"iwl7260-firmware","version":"22.0.7.0","release":"72.el7","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:23:06 AM PDT","group":"System Environment/Kernel","size":6520850,"license":"Redistributable, no modification permitted","signature":"RSA/SHA256, Thu 22 Aug 2019 02:58:14 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"linux-firmware-20190429-72.gitddde598.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:22:46 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/","summary":"Firmware for Intel(R) Dual Band Wireless-AC 7260 Series Adapters","description":"This package contains the firmware required by the iwlagn driver for Linux. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully.","build_epoch":1565266966,"build_epoch_utc":null,"install_date_epoch":1571242986,"install_date_epoch_utc":null},{"name":"gdbm","version":"1.10","release":"8.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:21 AM PDT","group":"System Environment/Libraries","size":184322,"license":"GPLv3+","signature":"RSA/SHA256, Thu 03 Jul 2014 06:27:27 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"gdbm-1.10-8.el7.src.rpm","build_date":"Mon 09 Jun 2014 02:39:08 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/gdbm/","summary":"A GNU set of database routines which use extensible hashing","description":"Gdbm is a GNU database indexing library, including routines which use extensible hashing. Gdbm works in a similar way to standard UNIX dbm routines. Gdbm is useful for developers who write C applications and need access to a simple and efficient database or who are building C applications which will use such a database. If you're a C developer and your programs need access to simple database routines, you should install gdbm. You'll also need to install gdbm-devel.","build_epoch":1402349948,"build_epoch_utc":null,"install_date_epoch":1565891601,"install_date_epoch_utc":null},{"name":"bind-utils","epoch":32,"version":"9.11.4","release":"9.P2.el7","architecture":"x86_64","install_date":"Wed 23 Oct 2019 10:53:22 AM PDT","group":"Unspecified","size":598521,"license":"MPLv2.0","signature":"RSA/SHA256, Thu 22 Aug 2019 02:20:56 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"bind-9.11.4-9.P2.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:20:30 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.isc.org/products/BIND/","summary":"Utilities for querying DNS name servers","description":"Bind-utils contains a collection of utilities for querying DNS (Domain Name System) name servers to find out information about Internet hosts. These tools will provide you with the IP addresses for given host names, as well as other information about registered domains and network addresses. You should install bind-utils if you need to get information from DNS name servers.","build_epoch":1565266830,"build_epoch_utc":null,"install_date_epoch":1571853202,"install_date_epoch_utc":null},{"name":"hostname","version":"3.13","release":"3.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:22 AM PDT","group":"System Environment/Base","size":19449,"license":"GPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 06:54:35 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"hostname-3.13-3.el7.src.rpm","build_date":"Mon 09 Jun 2014 02:48:44 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://packages.qa.debian.org/h/hostname.html","summary":"Utility to set/show the host name or domain name","description":"This package provides commands which can be used to display the system's DNS name, and to display or set its hostname or NIS domain name.","build_epoch":1402350524,"build_epoch_utc":null,"install_date_epoch":1565891602,"install_date_epoch_utc":null},{"name":"nftables","epoch":1,"version":"0.8","release":"14.el7","architecture":"x86_64","install_date":"Sun 10 Nov 2019 07:55:14 AM PST","group":"Unspecified","size":500068,"license":"GPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:36:19 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"nftables-0.8-14.el7.src.rpm","build_date":"Thu 08 Aug 2019 06:13:15 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://netfilter.org/projects/nftables/","summary":"Netfilter Tables userspace utillites","description":"Netfilter Tables userspace utilities.","build_epoch":1565313195,"build_epoch_utc":null,"install_date_epoch":1573401314,"install_date_epoch_utc":null},{"name":"python-slip","version":"0.4.0","release":"4.el7","architecture":"noarch","install_date":"Thu 15 Aug 2019 10:53:23 AM PDT","group":"System Environment/Libraries","size":61353,"license":"GPLv2+","signature":"RSA/SHA256, Wed 25 Apr 2018 04:39:05 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"python-slip-0.4.0-4.el7.src.rpm","build_date":"Tue 10 Apr 2018 06:49:00 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/nphilipp/python-slip","summary":"Miscellaneous convenience, extension and workaround code for Python","description":"The Simple Library for Python packages contain miscellaneous code for convenience, extension and workaround purposes. This package provides the \"slip\" and the \"slip.util\" modules.","build_epoch":1523411340,"build_epoch_utc":null,"install_date_epoch":1565891603,"install_date_epoch_utc":null},{"name":"rubygem-io-console","version":"0.4.2","release":"36.el7","architecture":"x86_64","install_date":"Sat 16 Nov 2019 02:29:24 PM PST","group":"Development/Libraries","size":16751,"license":"(Ruby or BSD) and Public Domain","signature":"RSA/SHA256, Thu 22 Aug 2019 02:42:57 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"ruby-2.0.0.648-36.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:30:13 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://ruby-lang.org/","summary":"IO/Console is a simple console utilizing library","description":"IO/Console provides very simple and portable access to console. It doesn't provide higher layer features, such like curses and readline.","build_epoch":1565267413,"build_epoch_utc":null,"install_date_epoch":1573943364,"install_date_epoch_utc":null},{"name":"newt-python","version":"0.52.15","release":"4.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:23 AM PDT","group":"Development/Libraries","size":116916,"license":"LGPLv2","signature":"RSA/SHA256, Thu 03 Jul 2014 08:57:00 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"newt-0.52.15-4.el7.src.rpm","build_date":"Tue 10 Jun 2014 12:48:12 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://fedorahosted.org/newt/","summary":"Python bindings for newt","description":"The newt-python package contains the Python bindings for the newt library providing a python API for creating text mode ionterfaces.","build_epoch":1402386492,"build_epoch_utc":null,"install_date_epoch":1565891603,"install_date_epoch_utc":null},{"name":"rubygem-psych","version":"2.0.0","release":"36.el7","architecture":"x86_64","install_date":"Sat 16 Nov 2019 02:29:25 PM PST","group":"Development/Libraries","size":113146,"license":"MIT","signature":"RSA/SHA256, Thu 22 Aug 2019 02:42:59 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"ruby-2.0.0.648-36.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:30:13 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://ruby-lang.org/","summary":"A libyaml wrapper for Ruby","description":"Psych is a YAML parser and emitter. Psych leverages libyaml[http://pyyaml.org/wiki/LibYAML] for its YAML parsing and emitting capabilities. In addition to wrapping libyaml, Psych also knows how to serialize and de-serialize most Ruby objects to and from the YAML format.","build_epoch":1565267413,"build_epoch_utc":null,"install_date_epoch":1573943365,"install_date_epoch_utc":null},{"name":"python-iniparse","version":"0.4","release":"9.el7","architecture":"noarch","install_date":"Thu 15 Aug 2019 10:53:23 AM PDT","group":"Development/Libraries","size":115166,"license":"MIT","signature":"RSA/SHA256, Thu 03 Jul 2014 09:39:14 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"python-iniparse-0.4-9.el7.src.rpm","build_date":"Mon 09 Jun 2014 03:04:54 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://code.google.com/p/iniparse/","summary":"Python Module for Accessing and Modifying Configuration Data in INI files","description":"iniparse is an INI parser for Python which is API compatible with the standard library's ConfigParser, preserves structure of INI files (order of sections & options, indentation, comments, and blank lines are preserved when data is updated), and is more convenient to use.","build_epoch":1402351494,"build_epoch_utc":null,"install_date_epoch":1565891603,"install_date_epoch_utc":null},{"name":"ntpdate","version":"4.2.6p5","release":"29.el7.centos","architecture":"x86_64","install_date":"Tue 03 Mar 2020 06:02:09 PM PST","group":"Applications/System","size":123845,"license":"(MIT and BSD and BSD with advertising) and GPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:36:36 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"ntp-4.2.6p5-29.el7.centos.src.rpm","build_date":"Thu 08 Aug 2019 04:48:12 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.ntp.org","summary":"Utility to set the date and time via NTP","description":"ntpdate is a program for retrieving the date and time from NTP servers.","build_epoch":1565264892,"build_epoch_utc":null,"install_date_epoch":1583287329,"install_date_epoch_utc":null},{"name":"cpp","version":"4.8.5","release":"39.el7","architecture":"x86_64","install_date":"Wed 08 Apr 2020 05:17:23 AM PDT","group":"Development/Languages","size":15653045,"license":"GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions and LGPLv2+ and BSD","signature":"RSA/SHA256, Thu 22 Aug 2019 02:21:35 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"gcc-4.8.5-39.el7.src.rpm","build_date":"Tue 06 Aug 2019 10:15:38 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://gcc.gnu.org","summary":"The C Preprocessor","the_c_preprocessor_provides_four_separate_functionalities":"the","description":"Cpp is the GNU C-Compatible Compiler Preprocessor. Cpp is a macro processor which is used automatically by the C compiler to transform your program before actual compilation. It is called a macro processor because it allows you to define macros, abbreviations for longer constructs. The C preprocessor provides four separate functionalities: the inclusion of header files (files of declarations that can be substituted into your program); macro expansion (you can define macros, and the C preprocessor will replace the macros with their definitions throughout the program); conditional compilation (using special preprocessing directives, you can include or exclude parts of the program according to various conditions); and line control (if you use a program to combine or rearrange source files into an intermediate file which is then compiled, you can use line control to inform the compiler about where each source line originated). You should install this package if you are a C programmer and you use macros.","build_epoch":1565111738,"build_epoch_utc":null,"install_date_epoch":1586348243,"install_date_epoch_utc":null},{"name":"gcc","version":"4.8.5","release":"39.el7","architecture":"x86_64","install_date":"Wed 08 Apr 2020 05:17:27 AM PDT","group":"Development/Languages","size":39238933,"license":"GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions and LGPLv2+ and BSD","signature":"RSA/SHA256, Thu 22 Aug 2019 02:24:15 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"gcc-4.8.5-39.el7.src.rpm","build_date":"Tue 06 Aug 2019 10:15:38 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://gcc.gnu.org","summary":"Various compilers (C, C++, Objective-C, Java, ...)","description":"The gcc package contains the GNU Compiler Collection version 4.8. You'll need this package in order to compile C code.","build_epoch":1565111738,"build_epoch_utc":null,"install_date_epoch":1586348247,"install_date_epoch_utc":null},{"name":"libselinux-devel","version":"2.5","release":"14.1.el7","architecture":"x86_64","install_date":"Wed 08 Apr 2020 05:24:42 AM PDT","group":"Development/Libraries","size":194101,"license":"Public Domain","signature":"RSA/SHA256, Mon 12 Nov 2018 06:37:28 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"libselinux-2.5-14.1.el7.src.rpm","build_date":"Tue 30 Oct 2018 02:43:06 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/SELinuxProject/selinux/wiki","summary":"Header files and libraries used to build SELinux","description":"The libselinux-devel package contains the libraries and header files needed for developing SELinux applications.","build_epoch":1540935786,"build_epoch_utc":null,"install_date_epoch":1586348682,"install_date_epoch_utc":null},{"name":"libverto-devel","version":"0.2.5","release":"4.el7","architecture":"x86_64","install_date":"Wed 08 Apr 2020 05:24:43 AM PDT","group":"Unspecified","size":25871,"license":"MIT","signature":"RSA/SHA256, Thu 03 Jul 2014 08:23:52 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libverto-0.2.5-4.el7.src.rpm","build_date":"Tue 10 Jun 2014 12:44:21 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://fedorahosted.org/libverto/","summary":"Development files for libverto","description":"The libverto-devel package contains libraries and header files for developing applications that use libverto.","build_epoch":1402386261,"build_epoch_utc":null,"install_date_epoch":1586348683,"install_date_epoch_utc":null},{"name":"fipscheck-lib","version":"1.4.1","release":"6.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:24 AM PDT","group":"System Environment/Libraries","size":11466,"license":"BSD","signature":"RSA/SHA256, Thu 10 Aug 2017 08:53:57 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"fipscheck-1.4.1-6.el7.src.rpm","build_date":"Wed 02 Aug 2017 05:47:49 AM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://fedorahosted.org/fipscheck/","summary":"Library files for fipscheck","description":"This package contains the FIPSCheck library.","build_epoch":1501678069,"build_epoch_utc":null,"install_date_epoch":1565891604,"install_date_epoch_utc":null},{"name":"mpfr-devel","version":"3.1.1","release":"4.el7","architecture":"x86_64","install_date":"Tue 14 Apr 2020 08:10:08 AM PDT","group":"Development/Libraries","size":108827,"license":"LGPLv3+ and GPLv3+ and GFDL","signature":"RSA/SHA256, Thu 03 Jul 2014 08:49:49 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"mpfr-3.1.1-4.el7.src.rpm","build_date":"Mon 09 Jun 2014 06:11:54 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.mpfr.org/","summary":"Development tools A C library for mpfr library","description":"Header files and documentation for using the MPFR multiple-precision floating-point library in applications. If you want to develop applications which will use the MPFR library, you'll need to install the mpfr-devel package. You'll also need to install the mpfr package.","build_epoch":1402362714,"build_epoch_utc":null,"install_date_epoch":1586877008,"install_date_epoch_utc":null},{"name":"gpg-pubkey","version":"rpm-4.11.3 (NSS-3)","release":"560cfc0a","architecture":"(none)","install_date":"Tue 14 Apr 2020 08:41:57 AM PDT","group":"Public Keys","size":0,"license":"pubkey","signature":"(none)","source_rpm":"(none)","build_date":"Thu 01 Oct 2015 02:25:30 AM PDT","build_host":"localhost","relocations":"(not relocatable)","packager":"CentOS SoftwareCollections SIG (https://wiki.centos.org/SpecialInterestGroup/SCLo) ","summary":"gpg(CentOS SoftwareCollections SIG (https://wiki.centos.org/SpecialInterestGroup/SCLo) )","description":"-----BEGIN PGP PUBLIC KEY BLOCK----- Version: rpm-4.11.3 (NSS-3) mQENBFYM/AoBCADR9Q5cb+H5ndx+QkzNBQ88wcD+g112yvnHNlSiBMOnNEGHuKPJ tujZ+eWXP3K6ucJckT91WxfQ2fxPr9jQ0xpZytcHcZdTfn3vKL9+OwR0npp+qmcz rK8/EzVz/SWSgBQ5xT/HUvaeoVAbzBHSng0r2njnBAqABKAoTxgyRGKSCWduKD32 7PF2ZpqeDFFhd99Ykt6ar8SlV8ToqH6F7An0ILeejINVbHUxd6+wsbpcOwQ4mGAa /CPXeqqLGj62ASBv36xQr34hlN/9zQMViaKkacl8zkuvwhuHf4b4VlGVCe6VILpQ 8ytKMV/lcg7YpMfRq4KVWBjCwkvk6zg6KxaHABEBAAG0aENlbnRPUyBTb2Z0d2Fy ZUNvbGxlY3Rpb25zIFNJRyAoaHR0cHM6Ly93aWtpLmNlbnRvcy5vcmcvU3BlY2lh bEludGVyZXN0R3JvdXAvU0NMbykgPHNlY3VyaXR5QGNlbnRvcy5vcmc+iQE5BBMB AgAjBQJWDPwKAhsDBwsJCAcDAgEGFQgCCQoLBBYCAwECHgECF4AACgkQTrhOcfLu nVXNewgAg7RVclomjTY4w80XiztUuUaFlCHyR76KazdaGfx/8XckWH2GdQtwii+3 Tg7+PT2H0Xyuj1aod+jVTPXTPVUr+rEHAjuNDY+xyAJrNljoOHiz111zs9pk7PLX CPwKWQLnmrcKIi8v/51L79FFsUMvhClTBdLUQ51lkCwbcXQi+bOhPvZTVbRhjoB/ a9z0d8t65X16zEzE7fBhnVoj4xye/MPMbTH41Mv+FWVciBTuAepOLmgJ9oxODliv rgZa28IEWkvHQ8m9GLJ0y9mI6olh0cGFybnd5y4Ss1cMttlRGR4qthLhN2gHZpO9 2y4WgkeVXCj1BK1fzVrDMLPbuNNCZQ== =UtPD -----END PGP PUBLIC KEY BLOCK-----","build_epoch":1443691530,"build_epoch_utc":null,"install_date_epoch":1586878917,"install_date_epoch_utc":null},{"name":"libuser","version":"0.60","release":"9.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:25 AM PDT","group":"System Environment/Base","size":1952592,"license":"LGPLv2+","signature":"RSA/SHA256, Wed 25 Apr 2018 04:23:52 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libuser-0.60-9.el7.src.rpm","build_date":"Thu 12 Apr 2018 11:44:54 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://fedorahosted.org/libuser/","summary":"A user and group account administration library","description":"The libuser library implements a standardized interface for manipulating and administering user and group accounts. The library uses pluggable back-ends to interface to its data sources. Sample applications modeled after those included with the shadow password suite are included.","build_epoch":1523558694,"build_epoch_utc":null,"install_date_epoch":1565891605,"install_date_epoch_utc":null},{"name":"devtoolset-3-libstdc++-devel","version":"4.9.2","release":"6.el7","architecture":"x86_64","install_date":"Wed 15 Apr 2020 12:39:16 PM PDT","group":"Development/Libraries","size":12197721,"license":"GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions and LGPLv2+ and BSD","signature":"RSA/SHA1, Sat 28 Nov 2015 06:50:50 AM PST, Key ID 4eb84e71f2ee9d55","source_rpm":"devtoolset-3-gcc-4.9.2-6.el7.src.rpm","build_date":"Sat 03 Oct 2015 08:15:45 AM PDT","build_host":"c1bj.rdu2.centos.org","relocations":"(not relocatable)","packager":"CBS ","vendor":"CentOS","url":"http://gcc.gnu.org","summary":"Header files and libraries for C++ development","description":"This is the GNU implementation of the standard C++ libraries. This package includes the header files and libraries needed for C++ development. This includes rewritten implementation of STL.","build_epoch":1443885345,"build_epoch_utc":null,"install_date_epoch":1586979556,"install_date_epoch_utc":null},{"name":"libtirpc","version":"0.2.4","release":"0.16.el7","architecture":"x86_64","install_date":"Tue 15 Oct 2019 11:09:07 AM PDT","group":"System Environment/Libraries","size":187279,"license":"SISSL and BSD","signature":"RSA/SHA256, Thu 22 Aug 2019 02:33:41 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libtirpc-0.2.4-0.16.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:35:23 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://git.linux-nfs.org/?p=steved/libtirpc.git;a=summary","summary":"Transport Independent RPC Library","description":"This package contains SunLib's implementation of transport-independent RPC (TI-RPC) documentation. This library forms a piece of the base of Open Network Computing (ONC), and is derived directly from the Solaris 2.3 source. TI-RPC is an enhanced version of TS-RPC that requires the UNIX System V Transport Layer Interface (TLI) or an equivalent X/Open Transport Interface (XTI). TI-RPC is on-the-wire compatible with the TS-RPC, which is supported by almost 70 vendors on all major operating systems. TS-RPC source code (RPCSRC 4.0) remains available from several internet sites.","build_epoch":1565310923,"build_epoch_utc":null,"install_date_epoch":1571162947,"install_date_epoch_utc":null},{"name":"traceroute","epoch":3,"version":"2.0.22","release":"2.el7","architecture":"x86_64","install_date":"Tue 21 Jul 2020 12:18:31 PM PDT","group":"Applications/Internet","size":93925,"license":"GPLv2+","signature":"RSA/SHA256, Sun 20 Nov 2016 12:54:56 PM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"traceroute-2.0.22-2.el7.src.rpm","build_date":"Sat 05 Nov 2016 08:27:17 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://traceroute.sourceforge.net","summary":"Traces the route taken by packets over an IPv4/IPv6 network","description":"The traceroute utility displays the route used by IP packets on their way to a specified network (or Internet) host. Traceroute displays the IP number and host name (if possible) of the machines along the route taken by the packets. Traceroute is used as a network debugging tool. If you're having network connectivity problems, traceroute will show you where the trouble is coming from along the route. Install traceroute if you need a tool for diagnosing network connectivity problems.","build_epoch":1478359637,"build_epoch_utc":null,"install_date_epoch":1595359111,"install_date_epoch_utc":null},{"name":"python3-libs","version":"3.6.8","release":"10.el7","architecture":"x86_64","install_date":"Tue 15 Oct 2019 11:09:10 AM PDT","group":"Unspecified","size":36350099,"license":"Python","signature":"RSA/SHA256, Thu 22 Aug 2019 02:40:11 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"python3-3.6.8-10.el7.src.rpm","build_date":"Wed 07 Aug 2019 11:09:49 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://www.python.org/","summary":"Python runtime libraries","description":"This package contains runtime libraries for use by Python: - the majority of the Python standard library - a dynamically linked library for use by applications that embed Python as a scripting language, and by the main \"python3\" executable","build_epoch":1565201389,"build_epoch_utc":null,"install_date_epoch":1571162950,"install_date_epoch_utc":null},{"name":"tar","epoch":2,"version":"1.26","release":"35.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:27 AM PDT","group":"Applications/Archiving","size":2838510,"license":"GPLv3+","signature":"RSA/SHA256, Mon 12 Nov 2018 06:47:46 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"tar-1.26-35.el7.src.rpm","build_date":"Tue 30 Oct 2018 01:29:09 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/tar/","summary":"A GNU file archiving program","description":"The GNU tar program saves many files together in one archive and can restore individual files (or all of the files) from that archive. Tar can also be used to add supplemental files to an archive and to update or list files in the archive. Tar includes multivolume support, automatic archive compression/decompression, the ability to perform remote archives, and the ability to perform incremental and full backups. If you want to use tar for remote backups, you also need to install the rmt package on the remote box.","build_epoch":1540931349,"build_epoch_utc":null,"install_date_epoch":1565891607,"install_date_epoch_utc":null},{"name":"iw","version":"4.3","release":"2.el7","architecture":"x86_64","install_date":"Mon 04 Jan 2021 12:32:02 PM PST","group":"System Environment/Base","size":163217,"license":"ISC","signature":"RSA/SHA256, Mon 12 Nov 2018 06:29:23 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"iw-4.3-2.el7.src.rpm","build_date":"Tue 30 Oct 2018 11:10:33 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://wireless.kernel.org/en/users/Documentation/iw","summary":"A nl80211 based wireless configuration tool","description":"iw is a new nl80211 based CLI configuration utility for wireless devices. Currently you can only use this utility to configure devices which use a mac80211 driver as these are the new drivers being written - only because most new wireless devices being sold are now SoftMAC.","build_epoch":1540923033,"build_epoch_utc":null,"install_date_epoch":1609792322,"install_date_epoch_utc":null},{"name":"perl-Pod-Perldoc","version":"3.20","release":"4.el7","architecture":"noarch","install_date":"Tue 15 Oct 2019 11:27:57 AM PDT","group":"Development/Libraries","size":166910,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 03 Jul 2014 09:22:38 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-Pod-Perldoc-3.20-4.el7.src.rpm","build_date":"Tue 10 Jun 2014 01:17:50 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/Pod-Perldoc/","summary":"Look up Perl documentation in Pod format","description":"perldoc looks up a piece of documentation in .pod format that is embedded in the perl installation tree or in a perl script, and displays it via \"groff -man | $PAGER\". This is primarily used for the documentation for the perl library modules.","build_epoch":1402388270,"build_epoch_utc":null,"install_date_epoch":1571164077,"install_date_epoch_utc":null},{"name":"libical","version":"3.0.3","release":"2.el7","architecture":"x86_64","install_date":"Tue 09 Feb 2021 08:57:09 AM PST","group":"Unspecified","size":1665385,"license":"LGPLv2 or MPLv2.0","signature":"RSA/SHA256, Mon 12 Nov 2018 06:33:03 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"libical-3.0.3-2.el7.src.rpm","build_date":"Tue 30 Oct 2018 12:25:21 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://libical.github.io/libical/","summary":"Reference implementation of the iCalendar data type and serialization format","description":"Reference implementation of the iCalendar data type and serialization format used in dozens of calendaring and scheduling products.","build_epoch":1540927521,"build_epoch_utc":null,"install_date_epoch":1612889829,"install_date_epoch_utc":null},{"name":"perl-Pod-Usage","version":"1.63","release":"3.el7","architecture":"noarch","install_date":"Tue 15 Oct 2019 11:27:58 AM PDT","group":"Development/Libraries","size":44671,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 03 Jul 2014 09:22:48 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-Pod-Usage-1.63-3.el7.src.rpm","build_date":"Tue 10 Jun 2014 01:56:19 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/Pod-Usage/","summary":"Print a usage message from embedded POD documentation","\"verboseness\"":"If the verbose level is 0, then only a synopsis is printed.","description":"pod2usage will print a usage message for the invoking script (using its embedded POD documentation) and then exit the script with the desired exit status. The usage message printed may have any one of three levels of \"verboseness\": If the verbose level is 0, then only a synopsis is printed. If the verbose level is 1, then the synopsis is printed along with a description (if present) of the command line options and arguments. If the verbose level is 2, then the entire manual page is printed.","build_epoch":1402390579,"build_epoch_utc":null,"install_date_epoch":1571164078,"install_date_epoch_utc":null},{"name":"finger","version":"0.17","release":"52.el7","architecture":"x86_64","install_date":"Tue 06 Apr 2021 11:13:28 AM PDT","group":"Applications/Internet","size":32929,"license":"BSD","signature":"RSA/SHA256, Fri 29 Aug 2014 02:57:31 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"finger-0.17-52.el7.src.rpm","build_date":"Fri 29 Aug 2014 02:49:47 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","summary":"The finger client","description":"Finger is a utility which allows users to see information about system users (login name, home directory, name, how long they've been logged in to the system, etc.). The finger package includes a standard finger client. You should install finger if you'd like to retrieve finger information from other systems.","build_epoch":1409305787,"build_epoch_utc":null,"install_date_epoch":1617732808,"install_date_epoch_utc":null},{"name":"perl-Exporter","version":"5.68","release":"3.el7","architecture":"noarch","install_date":"Tue 15 Oct 2019 11:27:58 AM PDT","group":"Development/Libraries","size":56612,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 03 Jul 2014 09:17:36 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-Exporter-5.68-3.el7.src.rpm","build_date":"Mon 09 Jun 2014 09:09:10 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/Exporter/","summary":"Implements default import method for modules","description":"The Exporter module implements an import method which allows a module to export functions and variables to its users' name spaces. Many modules use Exporter rather than implementing their own import method because Exporter provides a highly flexible interface, with an implementation optimized for the common case.","build_epoch":1402373350,"build_epoch_utc":null,"install_date_epoch":1571164078,"install_date_epoch_utc":null},{"name":"perl-Carp","version":"1.26","release":"244.el7","architecture":"noarch","install_date":"Tue 15 Oct 2019 11:27:58 AM PDT","group":"Development/Libraries","size":28276,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 03 Jul 2014 09:15:11 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-Carp-1.26-244.el7.src.rpm","build_date":"Mon 09 Jun 2014 06:12:39 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/Carp/","summary":"Alternative warn and die for modules","description":"The Carp routines are useful in your own modules because they act like die() or warn(), but with a message which is more likely to be useful to a user of your module. In the case of cluck, confess, and longmess that context is a summary of every call in the call-stack. For a shorter message you can use carp or croak which report the error as being from where your module was called. There is no guarantee that that is where the error was, but it is a good educated guess.","build_epoch":1402362759,"build_epoch_utc":null,"install_date_epoch":1571164078,"install_date_epoch_utc":null},{"name":"libsemanage","version":"2.5","release":"14.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:28 AM PDT","group":"System Environment/Libraries","size":302329,"license":"LGPLv2+","signature":"RSA/SHA256, Mon 12 Nov 2018 06:37:32 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"libsemanage-2.5-14.el7.src.rpm","build_date":"Tue 30 Oct 2018 04:44:33 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/SELinuxProject/selinux/wiki","summary":"SELinux binary policy manipulation library","description":"Security-enhanced Linux is a feature of the Linux® kernel and a number of utilities with enhanced security functionality designed to add mandatory access controls to Linux. The Security-enhanced Linux kernel contains new architectural components originally developed to improve the security of the Flask operating system. These architectural components provide general support for the enforcement of many kinds of mandatory access control policies, including those based on the concepts of Type Enforcement®, Role-based Access Control, and Multi-level Security. libsemanage provides an API for the manipulation of SELinux binary policies. It is used by checkpolicy (the policy compiler) and similar tools, as well as by programs like load_policy that need to perform specific transformations on binary policies such as customizing policy boolean settings.","build_epoch":1540943073,"build_epoch_utc":null,"install_date_epoch":1565891608,"install_date_epoch_utc":null},{"name":"perl-File-Temp","version":"0.23.01","release":"3.el7","architecture":"noarch","install_date":"Tue 15 Oct 2019 11:27:58 AM PDT","group":"Development/Libraries","size":158781,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 03 Jul 2014 09:18:15 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-File-Temp-0.23.01-3.el7.src.rpm","build_date":"Tue 10 Jun 2014 12:03:09 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/File-Temp/","summary":"Return name and handle of a temporary file safely","description":"File::Temp can be used to create and open temporary files in a safe way. There is both a function interface and an object-oriented interface. The File::Temp constructor or the tempfile() function can be used to return the name and the open file handle of a temporary file. The tempdir() function can be used to create a temporary directory.","build_epoch":1402383789,"build_epoch_utc":null,"install_date_epoch":1571164078,"install_date_epoch_utc":null},{"name":"libfastjson","version":"0.99.4","release":"3.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:29 AM PDT","group":"Unspecified","size":57273,"license":"MIT","signature":"RSA/SHA256, Mon 12 Nov 2018 06:32:07 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"libfastjson-0.99.4-3.el7.src.rpm","build_date":"Tue 30 Oct 2018 01:01:55 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/rsyslog/libfastjson","summary":"A JSON implementation in C","description":"LIBFASTJSON implements a reference counting object model that allows you to easily construct JSON objects in C, output them as JSON formatted strings and parse JSON formatted strings back into the C representation of JSON objects.","build_epoch":1540929715,"build_epoch_utc":null,"install_date_epoch":1565891609,"install_date_epoch_utc":null},{"name":"perl-Pod-Simple","epoch":1,"version":"3.28","release":"4.el7","architecture":"noarch","install_date":"Tue 15 Oct 2019 11:27:58 AM PDT","group":"Development/Libraries","size":538320,"license":"GPL+ or Artistic","signature":"RSA/SHA256, Thu 03 Jul 2014 09:22:44 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-Pod-Simple-3.28-4.el7.src.rpm","build_date":"Mon 09 Jun 2014 07:00:13 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/Pod-Simple/","summary":"Framework for parsing POD documentation","description":"Pod::Simple is a Perl library for parsing text in the Pod (\"plain old documentation\") markup language that is typically used for writing documentation for Perl and for Perl modules.","build_epoch":1402365613,"build_epoch_utc":null,"install_date_epoch":1571164078,"install_date_epoch_utc":null},{"name":"libdaemon","version":"0.14","release":"7.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:29 AM PDT","group":"System Environment/Libraries","size":62045,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 07:41:19 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libdaemon-0.14-7.el7.src.rpm","build_date":"Mon 09 Jun 2014 09:26:48 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://0pointer.de/lennart/projects/libdaemon/","summary":"Library for writing UNIX daemons","description":"libdaemon is a lightweight C library which eases the writing of UNIX daemons. It consists of the following parts: * A wrapper around fork() which does the correct daemonization procedure of a process * A wrapper around syslog() for simpler and compatible log output to Syslog or STDERR * An API for writing PID files * An API for serializing UNIX signals into a pipe for usage with select() or poll() * An API for running subprocesses with STDOUT and STDERR redirected to syslog.","build_epoch":1402374408,"build_epoch_utc":null,"install_date_epoch":1565891609,"install_date_epoch_utc":null},{"name":"perl-Error","epoch":1,"version":"0.17020","release":"2.el7","architecture":"noarch","install_date":"Tue 15 Oct 2019 11:28:01 AM PDT","group":"Development/Libraries","size":50015,"license":"(GPL+ or Artistic) and MIT","signature":"RSA/SHA256, Thu 03 Jul 2014 09:17:32 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"perl-Error-0.17020-2.el7.src.rpm","build_date":"Mon 09 Jun 2014 01:19:49 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://search.cpan.org/dist/Error/","summary":"Error/exception handling in an OO-ish way","description":"The Error package provides two interfaces. Firstly Error provides a procedural interface to exception handling. Secondly Error is a base class for errors/exceptions that can either be thrown, for subsequent catch, or can simply be recorded.","build_epoch":1402345189,"build_epoch_utc":null,"install_date_epoch":1571164081,"install_date_epoch_utc":null},{"name":"libestr","version":"0.1.9","release":"2.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:29 AM PDT","group":"Unspecified","size":44322,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 07:45:14 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libestr-0.1.9-2.el7.src.rpm","build_date":"Mon 09 Jun 2014 09:27:04 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://libestr.adiscon.com/","summary":"String handling essentials library","description":"This package compiles the string handling essentials library used by the Rsyslog daemon.","build_epoch":1402374424,"build_epoch_utc":null,"install_date_epoch":1565891609,"install_date_epoch_utc":null},{"name":"git","version":"1.8.3.1","release":"20.el7","architecture":"x86_64","install_date":"Tue 15 Oct 2019 11:28:02 AM PDT","group":"Development/Tools","size":23232282,"license":"GPLv2","signature":"RSA/SHA256, Tue 20 Nov 2018 12:34:30 PM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"git-1.8.3.1-20.el7.src.rpm","build_date":"Mon 19 Nov 2018 08:13:01 AM PST","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://git-scm.com/","summary":"Fast Version Control System","description":"Git is a fast, scalable, distributed revision control system with an unusually rich command set that provides both high-level operations and full access to internals. The git rpm installs the core tools with minimal dependencies. To install all git packages, including tools for integrating with other SCMs, install the git-all meta-package.","build_epoch":1542643981,"build_epoch_utc":null,"install_date_epoch":1571164082,"install_date_epoch_utc":null},{"name":"grub2-pc-modules","epoch":1,"version":"2.02","release":"0.80.el7.centos","architecture":"noarch","install_date":"Wed 16 Oct 2019 09:21:17 AM PDT","group":"System Environment/Base","size":2309922,"license":"GPLv3+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:57:42 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"grub2-2.02-0.80.el7.centos.src.rpm","build_date":"Thu 08 Aug 2019 04:31:11 AM PDT","build_host":"kbuilder.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/grub/","summary":"Modules used to build custom grub images","description":"The GRand Unified Bootloader (GRUB) is a highly configurable and customizable bootloader with modular architecture. It supports a rich variety of kernel formats, file systems, computer architectures and hardware devices. This subpackage provides support for rebuilding your own grub.efi.","build_epoch":1565263871,"build_epoch_utc":null,"install_date_epoch":1571242877,"install_date_epoch_utc":null},{"name":"containers-common","epoch":1,"version":"0.1.37","release":"3.el7.centos","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:17 AM PDT","group":"Unspecified","size":20723,"license":"ASL 2.0","signature":"RSA/SHA256, Mon 16 Sep 2019 05:33:22 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"skopeo-0.1.37-3.el7.centos.src.rpm","build_date":"Sun 15 Sep 2019 07:07:25 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/containers/skopeo","summary":"Configuration files for working with image signature","description":"This package installs a default signature store configuration policy under `/etc/containers/`.","build_epoch":1568556445,"build_epoch_utc":null,"install_date_epoch":1571242877,"install_date_epoch_utc":null},{"name":"glibc-common","version":"2.17","release":"292.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:22 AM PDT","group":"System Environment/Base","size":120326282,"license":"LGPLv2+ and LGPLv2+ with exceptions and GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:24:43 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"glibc-2.17-292.el7.src.rpm","build_date":"Tue 06 Aug 2019 04:23:44 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/glibc/","summary":"Common binaries and locale data for glibc","description":"The glibc-common package includes common binaries for the GNU libc libraries, as well as national language (locale) support.","build_epoch":1565133824,"build_epoch_utc":null,"install_date_epoch":1571242882,"install_date_epoch_utc":null},{"name":"audit-libs","version":"2.8.5","release":"4.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:26 AM PDT","group":"Development/Libraries","size":256386,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:20:30 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"audit-2.8.5-4.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:06:20 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://people.redhat.com/sgrubb/audit/","summary":"Dynamic library for libaudit","description":"The audit-libs package contains the dynamic libraries needed for applications to use the audit framework.","build_epoch":1565265980,"build_epoch_utc":null,"install_date_epoch":1571242886,"install_date_epoch_utc":null},{"name":"iputils","version":"20160308","release":"10.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:32 AM PDT","group":"System Environment/Daemons","size":343497,"license":"BSD and GPLv2+","signature":"RSA/SHA256, Thu 10 Aug 2017 09:47:33 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"iputils-20160308-10.el7.src.rpm","build_date":"Fri 04 Aug 2017 01:01:04 AM PDT","build_host":"c1bm.rdu2.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://github.com/iputils/iputils","summary":"Network monitoring tools including ping","description":"The iputils package contains basic utilities for monitoring a network, including ping. The ping command sends a series of ICMP protocol ECHO_REQUEST packets to a specified network host to discover whether the target machine is alive and receiving network traffic.","build_epoch":1501833664,"build_epoch_utc":null,"install_date_epoch":1565891612,"install_date_epoch_utc":null},{"name":"coreutils","version":"8.22","release":"24.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:28 AM PDT","group":"System Environment/Base","size":14593469,"license":"GPLv3+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:21:30 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"coreutils-8.22-24.el7.src.rpm","build_date":"Mon 19 Aug 2019 11:27:26 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/coreutils/","summary":"A set of basic GNU tools commonly used in shell scripts","description":"These are the GNU core utilities. This package is the combination of the old GNU fileutils, sh-utils, and textutils packages.","build_epoch":1566282446,"build_epoch_utc":null,"install_date_epoch":1571242888,"install_date_epoch_utc":null},{"name":"libdb","version":"5.3.21","release":"25.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:29 AM PDT","group":"System Environment/Libraries","size":1858144,"license":"BSD and LGPLv2 and Sleepycat","signature":"RSA/SHA256, Thu 22 Aug 2019 02:29:18 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libdb-5.3.21-25.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:18:38 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.oracle.com/database/berkeley-db/","summary":"The Berkeley DB database library for C","description":"The Berkeley Database (Berkeley DB) is a programmatic toolkit that provides embedded database support for both traditional and client/server applications. The Berkeley DB includes B+tree, Extended Linear Hashing, Fixed and Variable-length record access methods, transactions, locking, logging, shared memory caching, and database recovery. The Berkeley DB supports C, C++, Java, and Perl APIs. It is used by many applications, including Python and Perl, so this should be installed on all systems.","build_epoch":1565309918,"build_epoch_utc":null,"install_date_epoch":1571242889,"install_date_epoch_utc":null},{"name":"python-libs","version":"2.7.5","release":"86.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:32 AM PDT","group":"Applications/System","size":24715873,"license":"Python","signature":"RSA/SHA256, Thu 22 Aug 2019 02:40:21 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"python-2.7.5-86.el7.src.rpm","build_date":"Tue 06 Aug 2019 06:15:38 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.python.org/","summary":"Runtime libraries for Python","description":"This package contains runtime libraries for use by Python: - the libpython dynamic library, for use by applications that embed Python as a scripting language, and by the main \"python\" executable - the Python standard library","build_epoch":1565140538,"build_epoch_utc":null,"install_date_epoch":1571242892,"install_date_epoch_utc":null},{"name":"glib2","version":"2.56.1","release":"5.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:33 AM PDT","group":"Unspecified","size":12170073,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:24:36 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"glib2-2.56.1-5.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:38:20 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gtk.org","summary":"A library of handy utility functions","description":"GLib is the low-level core library that forms the basis for projects such as GTK+ and GNOME. It provides data structure handling for C, portability wrappers, and interfaces for such runtime functionality as an event loop, threads, dynamic loading, and an object system.","build_epoch":1565307500,"build_epoch_utc":null,"install_date_epoch":1571242893,"install_date_epoch_utc":null},{"name":"nss","version":"3.44.0","release":"4.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:34 AM PDT","group":"System Environment/Libraries","size":2475794,"license":"MPLv2.0","signature":"RSA/SHA256, Thu 22 Aug 2019 02:36:25 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"nss-3.44.0-4.el7.src.rpm","build_date":"Mon 12 Aug 2019 10:02:37 AM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.mozilla.org/projects/security/pki/nss/","summary":"Network Security Services","description":"Network Security Services (NSS) is a set of libraries designed to support cross-platform development of security-enabled client and server applications. Applications built with NSS can support SSL v2 and v3, TLS, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, X.509 v3 certificates, and other security standards.","build_epoch":1565629357,"build_epoch_utc":null,"install_date_epoch":1571242894,"install_date_epoch_utc":null},{"name":"ethtool","epoch":2,"version":"4.8","release":"10.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:35 AM PDT","group":"Applications/System","size":354299,"license":"GPLv2","signature":"RSA/SHA256, Thu 22 Aug 2019 02:22:57 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"ethtool-4.8-10.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:16:59 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://www.kernel.org/pub/software/network/ethtool/","summary":"Settings tool for Ethernet NICs","description":"This utility allows querying and changing settings such as speed, port, auto-negotiation, PCI locations and checksum offload on many network devices, especially of Ethernet devices.","build_epoch":1565306219,"build_epoch_utc":null,"install_date_epoch":1571242895,"install_date_epoch_utc":null},{"name":"libpciaccess","version":"0.14","release":"1.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:35 AM PDT","group":"System Environment/Libraries","size":45649,"license":"MIT","signature":"RSA/SHA256, Wed 25 Apr 2018 04:17:01 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"libpciaccess-0.14-1.el7.src.rpm","build_date":"Tue 10 Apr 2018 07:32:03 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://gitweb.freedesktop.org/?p=xorg/lib/libpciaccess.git","summary":"PCI access library","description":"libpciaccess is a library for portable PCI access routines across multiple operating systems.","build_epoch":1523413923,"build_epoch_utc":null,"install_date_epoch":1565891615,"install_date_epoch_utc":null},{"name":"audit-libs-python","version":"2.8.5","release":"4.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:35 AM PDT","group":"Development/Libraries","size":323427,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:20:32 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"audit-2.8.5-4.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:06:20 AM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://people.redhat.com/sgrubb/audit/","summary":"Python bindings for libaudit","description":"The audit-libs-python package contains the bindings so that libaudit and libauparse can be used by python.","build_epoch":1565265980,"build_epoch_utc":null,"install_date_epoch":1571242895,"install_date_epoch_utc":null},{"name":"alsa-firmware","version":"1.0.28","release":"2.el7","architecture":"noarch","install_date":"Thu 15 Aug 2019 10:53:36 AM PDT","group":"Applications/Multimedia","size":9572469,"license":"GPL+ and BSD and GPLv2+ and GPLv2 and LGPLv2+","signature":"RSA/SHA256, Sat 14 Mar 2015 12:36:28 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"alsa-firmware-1.0.28-2.el7.src.rpm","build_date":"Thu 05 Mar 2015 01:58:35 PM PST","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.alsa-project.org/","summary":"Firmware for several ALSA-supported sound cards","description":"This package contains the firmware binaries for a number of sound cards. Some (but not all of these) require firmware loaders which are included in the alsa-tools-firmware package.","build_epoch":1425592715,"build_epoch_utc":null,"install_date_epoch":1565891616,"install_date_epoch_utc":null},{"name":"xfsprogs","version":"4.5.0","release":"20.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:36 AM PDT","group":"System Environment/Base","size":4079279,"license":"GPL+ and LGPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:45:37 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"xfsprogs-4.5.0-20.el7.src.rpm","build_date":"Thu 08 Aug 2019 08:23:27 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"https://xfs.wiki.kernel.org","summary":"Utilities for managing the XFS filesystem","description":"A set of commands to use the XFS filesystem, including mkfs.xfs. XFS is a high performance journaling filesystem which originated on the SGI IRIX platform. It is completely multi-threaded, can support large files and large filesystems, extended attributes, variable block sizes, is extent based, and makes extensive use of Btrees (directories, extents, free space) to aid both performance and scalability.","build_epoch":1565321007,"build_epoch_utc":null,"install_date_epoch":1571242896,"install_date_epoch_utc":null},{"name":"dbus-python","version":"1.1.1","release":"9.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:36 AM PDT","group":"Unspecified","size":848122,"license":"MIT","signature":"RSA/SHA256, Thu 03 Jul 2014 06:06:25 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"dbus-python-1.1.1-9.el7.src.rpm","build_date":"Tue 10 Jun 2014 12:12:40 AM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.freedesktop.org/software/dbus-python","summary":"D-Bus Python Bindings","description":"D-Bus python bindings for use with python programs.","build_epoch":1402384360,"build_epoch_utc":null,"install_date_epoch":1565891616,"install_date_epoch_utc":null},{"name":"binutils","version":"2.27","release":"41.base.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:38 AM PDT","group":"Development/Tools","size":25150234,"license":"GPLv3+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:20:57 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"binutils-2.27-41.base.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:14:36 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://sources.redhat.com/binutils","summary":"A GNU collection of binary utilities","description":"Binutils is a collection of binary utilities, including ar (for creating, modifying and extracting from archives), as (a family of GNU assemblers), gprof (for displaying call graph profile data), ld (the GNU linker), nm (for listing symbols from object files), objcopy (for copying and translating object files), objdump (for displaying information from object files), ranlib (for generating an index for the contents of an archive), readelf (for displaying detailed information about binary files), size (for listing the section sizes of an object or archive file), strings (for listing printable strings from files), strip (for discarding symbols), and addr2line (for converting addresses to file and line).","build_epoch":1565306076,"build_epoch_utc":null,"install_date_epoch":1571242898,"install_date_epoch_utc":null},{"name":"GeoIP","version":"1.5.0","release":"14.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:39 AM PDT","group":"Development/Libraries","size":3865708,"license":"LGPLv2+ and GPLv2+ and CC-BY-SA","signature":"RSA/SHA256, Thu 22 Aug 2019 02:24:31 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"GeoIP-1.5.0-14.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:34:37 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.maxmind.com/app/c","summary":"Library for country/city/organization to IP address or hostname mapping","description":"GeoIP is a C library that enables the user to find the country that any IP address or hostname originates from. It uses a file based database that is accurate as of June 2007 and can optionally be updated on a weekly basis by installing the GeoIP-update package. This database simply contains IP blocks as keys, and countries as values. This database should be more complete and accurate than using reverse DNS lookups. This package includes GeoLite data created by MaxMind, available from http://www.maxmind.com/","build_epoch":1565307277,"build_epoch_utc":null,"install_date_epoch":1571242899,"install_date_epoch_utc":null},{"name":"pth","version":"2.0.7","release":"23.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:36 AM PDT","group":"System Environment/Libraries","size":267851,"license":"LGPLv2+","signature":"RSA/SHA256, Wed 25 Nov 2015 07:32:05 AM PST, Key ID 24c6a8a7f4a80eb5","source_rpm":"pth-2.0.7-23.el7.src.rpm","build_date":"Fri 20 Nov 2015 12:11:52 AM PST","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/pth/","summary":"The GNU Portable Threads library","description":"Pth is a very portable POSIX/ANSI-C based library for Unix platforms which provides non-preemptive priority-based scheduling for multiple threads of execution (\"multithreading\") inside server applications. All threads run in the same address space of the server application, but each thread has it's own individual program-counter, run-time stack, signal mask and errno variable.","build_epoch":1448007112,"build_epoch_utc":null,"install_date_epoch":1565891616,"install_date_epoch_utc":null},{"name":"rpm-build-libs","version":"4.11.3","release":"40.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:40 AM PDT","group":"Development/Libraries","size":166776,"license":"GPLv2+ and LGPLv2+ with exceptions","signature":"RSA/SHA256, Thu 22 Aug 2019 02:42:34 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"rpm-4.11.3-40.el7.src.rpm","build_date":"Tue 06 Aug 2019 03:50:54 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.rpm.org/","summary":"Libraries for building and signing RPM packages","description":"This package contains the RPM shared libraries for building and signing packages.","build_epoch":1565131854,"build_epoch_utc":null,"install_date_epoch":1571242900,"install_date_epoch_utc":null},{"name":"gpgme","version":"1.3.2","release":"5.el7","architecture":"x86_64","install_date":"Thu 15 Aug 2019 10:53:37 AM PDT","group":"Applications/System","size":547534,"license":"LGPLv2+","signature":"RSA/SHA256, Thu 03 Jul 2014 06:44:14 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"gpgme-1.3.2-5.el7.src.rpm","build_date":"Mon 09 Jun 2014 06:03:04 PM PDT","build_host":"worker1.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnupg.org/related_software/gpgme/","summary":"GnuPG Made Easy - high level crypto API","description":"GnuPG Made Easy (GPGME) is a library designed to make access to GnuPG easier for applications. It provides a high-level crypto API for encryption, decryption, signing, signature verification and key management.","build_epoch":1402362184,"build_epoch_utc":null,"install_date_epoch":1565891617,"install_date_epoch_utc":null},{"name":"libss","version":"1.42.9","release":"16.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:41 AM PDT","group":"Development/Libraries","size":73089,"license":"MIT","signature":"RSA/SHA256, Thu 22 Aug 2019 02:33:08 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"e2fsprogs-1.42.9-16.el7.src.rpm","build_date":"Thu 08 Aug 2019 04:19:51 PM PDT","build_host":"x86-02.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://e2fsprogs.sourceforge.net/","summary":"Command line interface parsing library","description":"This is libss, a command line interface parsing library, part of e2fsprogs. This package includes a tool that parses a command table to generate a simple command-line interface parser, the include files needed to compile and use it. It was originally inspired by the Multics SubSystem library.","build_epoch":1565306391,"build_epoch_utc":null,"install_date_epoch":1571242901,"install_date_epoch_utc":null},{"name":"kernel-tools-libs","version":"3.10.0","release":"1062.1.2.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:41 AM PDT","group":"Development/System","size":18640,"license":"GPLv2","signature":"RSA/SHA256, Wed 02 Oct 2019 07:16:00 AM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"kernel-3.10.0-1062.1.2.el7.src.rpm","build_date":"Mon 30 Sep 2019 07:39:55 AM PDT","build_host":"kbuilder.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.kernel.org/","summary":"Libraries for the kernels-tools","description":"This package contains the libraries built from the tools/ directory from the kernel source.","build_epoch":1569854395,"build_epoch_utc":null,"install_date_epoch":1571242901,"install_date_epoch_utc":null}] jc-1.17.3/tests/fixtures/centos-7.7/rpm-qai.out000066400000000000000000014304241415226333200211260ustar00rootroot00000000000000Name : make Epoch : 1 Version : 3.82 Release : 24.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:42 AM PDT Group : Development/Tools Size : 1160660 License : GPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:34:59 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : make-3.82-24.el7.src.rpm Build Date : Thu 08 Aug 2019 05:47:25 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gnu.org/software/make/ Summary : A GNU tool which simplifies the build process for users Description : A GNU tool for controlling the generation of executables and other non-source files of a program from the program's source files. Make allows users to build and install packages without any significant knowledge about the details of the build process. The details about how the program should be built are provided for make in the program's makefile. Name : kbd-legacy Version : 1.15.5 Release : 15.el7 Architecture: noarch Install Date: Thu 15 Aug 2019 10:53:08 AM PDT Group : System Environment/Base Size : 503608 License : GPLv2+ Signature : RSA/SHA256, Mon 12 Nov 2018 07:17:49 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : kbd-1.15.5-15.el7.src.rpm Build Date : Tue 30 Oct 2018 03:40:00 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://ftp.altlinux.org/pub/people/legion/kbd Summary : Legacy data for kbd package Description : The kbd-legacy package contains original keymaps for kbd package. Please note that kbd-legacy is not helpful without kbd. Name : libsmartcols Version : 2.23.2 Release : 61.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:42 AM PDT Group : Development/Libraries Size : 168712 License : LGPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:33:02 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : util-linux-2.23.2-61.el7.src.rpm Build Date : Thu 08 Aug 2019 08:10:20 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://en.wikipedia.org/wiki/Util-linux Summary : Formatting library for ls-like programs. Description : This is library for ls-like terminal programs, part of util-linux. Name : ncurses-base Version : 5.9 Release : 14.20130511.el7_4 Architecture: noarch Install Date: Thu 15 Aug 2019 10:53:08 AM PDT Group : System Environment/Base Size : 223432 License : MIT Signature : RSA/SHA256, Thu 07 Sep 2017 05:43:15 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : ncurses-5.9-14.20130511.el7_4.src.rpm Build Date : Wed 06 Sep 2017 03:08:29 PM PDT Build Host : c1bm.rdu2.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://invisible-island.net/ncurses/ncurses.html Summary : Descriptions of common terminals Description : This package contains descriptions of common terminals. Other terminal descriptions are included in the ncurses-term package. Name : procps-ng Version : 3.3.10 Release : 26.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:43 AM PDT Group : Applications/System Size : 759403 License : GPL+ and GPLv2 and GPLv2+ and GPLv3+ and LGPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:39:53 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : procps-ng-3.3.10-26.el7.src.rpm Build Date : Thu 08 Aug 2019 06:55:50 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://sourceforge.net/projects/procps-ng/ Summary : System and process monitoring utilities Description : The procps package contains a set of system utilities that provide system information. Procps includes ps, free, skill, pkill, pgrep, snice, tload, top, uptime, vmstat, w, watch and pwdx. The ps command displays a snapshot of running processes. The top command provides a repetitive update of the statuses of running processes. The free command displays the amounts of free and used memory on your system. The skill command sends a terminate command (or another specified signal) to a specified set of processes. The snice command is used to change the scheduling priority of specified processes. The tload command prints a graph of the current system load average to a specified tty. The uptime command displays the current time, how long the system has been running, how many users are logged on, and system load averages for the past one, five, and fifteen minutes. The w command displays a list of the users who are currently logged on and what they are running. The watch program watches a running program. The vmstat command displays virtual memory statistics about processes, memory, paging, block I/O, traps, and CPU activity. The pwdx command reports the current working directory of a process or processes. Name : postfix Epoch : 2 Version : 2.10.1 Release : 7.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:53 AM PDT Group : System Environment/Daemons Size : 12766329 License : IBM and GPLv2+ Signature : RSA/SHA256, Mon 12 Nov 2018 06:44:41 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : postfix-2.10.1-7.el7.src.rpm Build Date : Tue 30 Oct 2018 09:50:35 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.postfix.org Summary : Postfix Mail Transport Agent Description : Postfix is a Mail Transport Agent (MTA), supporting LDAP, SMTP AUTH (SASL), TLS Name : kmod Version : 20 Release : 25.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:44 AM PDT Group : System Environment/Kernel Size : 246109 License : GPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:28:22 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : kmod-20-25.el7.src.rpm Build Date : Thu 08 Aug 2019 05:05:58 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary Summary : Linux kernel module management utilities Description : The kmod package provides various programs needed for automatic loading and unloading of modules under 2.6, 3.x, and later kernels, as well as other module management programs. Device drivers and filesystems are two examples of loaded and unloaded modules. Name : aic94xx-firmware Version : 30 Release : 6.el7 Architecture: noarch Install Date: Thu 15 Aug 2019 10:53:56 AM PDT Group : System Environment/Kernel Size : 30752 License : Redistributable, no modification permitted Signature : RSA/SHA256, Thu 03 Jul 2014 05:34:22 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : aic94xx-firmware-30-6.el7.src.rpm Build Date : Mon 09 Jun 2014 11:57:07 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.adaptec.com/en-US/speed/scsi/linux/aic94xx-seq-30-1_tar_gz.htm Summary : Adaptec SAS 44300, 48300, 58300 Sequencer Firmware for AIC94xx driver Description : Adaptec SAS 44300, 48300, 58300 Sequencer Firmware for Open-Source AIC94xx Driver. Name : basesystem Version : 10.0 Release : 7.el7.centos Architecture: noarch Install Date: Thu 15 Aug 2019 10:53:12 AM PDT Group : System Environment/Base Size : 0 License : Public Domain Signature : RSA/SHA256, Thu 03 Jul 2014 05:46:57 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : basesystem-10.0-7.el7.centos.src.rpm Build Date : Fri 27 Jun 2014 03:37:10 AM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS Summary : The skeleton package which defines a simple CentOS Linux system Description : Basesystem defines the components of a basic CentOS Linux system (for example, the package installation order to use during bootstrapping). Basesystem should be in every installation of a system, and it should never be removed. Name : elfutils-default-yama-scope Version : 0.176 Release : 2.el7 Architecture: noarch Install Date: Wed 16 Oct 2019 09:21:47 AM PDT Group : Development/Tools Size : 1810 License : GPLv2+ or LGPLv3+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:56:57 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : elfutils-0.176-2.el7.src.rpm Build Date : Thu 08 Aug 2019 04:16:25 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://elfutils.org/ Summary : Default yama attach scope sysctl setting Description : Yama sysctl setting to enable default attach scope settings enabling programs to use ptrace attach, access to /proc/PID/{mem,personality,stack,syscall}, and the syscalls process_vm_readv and process_vm_writev which are used for interprocess services, communication and introspection (like synchronisation, signaling, debugging, tracing and profiling) of processes. Name : grub2-tools-minimal Epoch : 1 Version : 2.02 Release : 0.80.el7.centos Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:49 AM PDT Group : System Environment/Base Size : 686003 License : GPLv3+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:25:18 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : grub2-2.02-0.80.el7.centos.src.rpm Build Date : Thu 08 Aug 2019 04:31:11 AM PDT Build Host : kbuilder.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gnu.org/software/grub/ Summary : Support tools for GRUB. Description : The GRand Unified Bootloader (GRUB) is a highly configurable and customizable bootloader with modular architecture. It supports a rich variety of kernel formats, file systems, computer architectures and hardware devices. This subpackage provides tools for support of all platforms. Name : ncurses-libs Version : 5.9 Release : 14.20130511.el7_4 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:16 AM PDT Group : System Environment/Libraries Size : 1028216 License : MIT Signature : RSA/SHA256, Thu 07 Sep 2017 05:43:31 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : ncurses-5.9-14.20130511.el7_4.src.rpm Build Date : Wed 06 Sep 2017 03:08:29 PM PDT Build Host : c1bm.rdu2.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://invisible-island.net/ncurses/ncurses.html Summary : Ncurses libraries Description : The curses library routines are a terminal-independent method of updating character screens with reasonable optimization. The ncurses (new curses) library is a freely distributable replacement for the discontinued 4.4 BSD classic curses library. This package contains the ncurses libraries. Name : dhcp-libs Epoch : 12 Version : 4.2.5 Release : 77.el7.centos Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:59 AM PDT Group : System Environment/Base Size : 149200 License : ISC Signature : RSA/SHA256, Thu 22 Aug 2019 02:22:20 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : dhcp-4.2.5-77.el7.centos.src.rpm Build Date : Thu 08 Aug 2019 04:10:22 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://isc.org/products/DHCP/ Summary : Shared libraries used by ISC dhcp client and server Description : This package contains shared libraries used by ISC dhcp client and server Name : libffi Version : 3.0.13 Release : 18.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:16 AM PDT Group : System Environment/Libraries Size : 47766 License : MIT and Public Domain Signature : RSA/SHA256, Sun 20 Nov 2016 10:39:28 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : libffi-3.0.13-18.el7.src.rpm Build Date : Sat 05 Nov 2016 09:30:28 AM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://sourceware.org/libffi Summary : A portable foreign function interface library Description : Compilers for high level languages generate code that follow certain conventions. These conventions are necessary, in part, for separate compilation to work. One such convention is the "calling convention". The calling convention is a set of assumptions made by the compiler about where function arguments will be found on entry to a function. A calling convention also specifies where the return value for a function is found. Some programs may not know at the time of compilation what arguments are to be passed to a function. For instance, an interpreter may be told at run-time about the number and types of arguments used to call a given function. `Libffi' can be used in such programs to provide a bridge from the interpreter program to compiled code. The `libffi' library provides a portable, high level programming interface to various calling conventions. This allows a programmer to call any function specified by a call interface description at run time. FFI stands for Foreign Function Interface. A foreign function interface is the popular name for the interface that allows code written in one language to call code written in another language. The `libffi' library really only provides the lowest, machine dependent layer of a fully featured foreign function interface. A layer must exist above `libffi' that handles type conversions for values passed between the two languages. Name : dhcp-common Epoch : 12 Version : 4.2.5 Release : 77.el7.centos Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:01 AM PDT Group : System Environment/Base Size : 245529 License : ISC Signature : RSA/SHA256, Thu 22 Aug 2019 02:22:18 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : dhcp-4.2.5-77.el7.centos.src.rpm Build Date : Thu 08 Aug 2019 04:10:22 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://isc.org/products/DHCP/ Summary : Common files used by ISC dhcp client and server Description : DHCP (Dynamic Host Configuration Protocol) is a protocol which allows individual devices on an IP network to get their own network configuration information (IP address, subnetmask, broadcast address, etc.) from a DHCP server. The overall purpose of DHCP is to make it easier to administer a large network. This package provides common files used by dhcp and dhclient package. Name : pcre Version : 8.32 Release : 17.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:16 AM PDT Group : System Environment/Libraries Size : 1475532 License : BSD Signature : RSA/SHA256, Thu 10 Aug 2017 12:04:31 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : pcre-8.32-17.el7.src.rpm Build Date : Tue 01 Aug 2017 08:08:12 PM PDT Build Host : c1bm.rdu2.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.pcre.org/ Summary : Perl-compatible regular expression library Description : Perl-compatible regular expression library. PCRE has its own native API, but a set of "wrapper" functions that are based on the POSIX API are also supplied in the library libpcreposix. Note that this just provides a POSIX calling interface to PCRE: the regular expressions themselves still follow Perl syntax and semantics. The header file for the POSIX-style functions is called pcreposix.h. Name : grub2-tools-extra Epoch : 1 Version : 2.02 Release : 0.80.el7.centos Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:14 AM PDT Group : System Environment/Base Size : 6342188 License : GPLv3+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:25:17 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : grub2-2.02-0.80.el7.centos.src.rpm Build Date : Thu 08 Aug 2019 04:31:11 AM PDT Build Host : kbuilder.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gnu.org/software/grub/ Summary : Support tools for GRUB. Description : The GRand Unified Bootloader (GRUB) is a highly configurable and customizable bootloader with modular architecture. It supports a rich variety of kernel formats, file systems, computer architectures and hardware devices. This subpackage provides tools for support of all platforms. Name : p11-kit Version : 0.23.5 Release : 3.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:16 AM PDT Group : Unspecified Size : 1337825 License : BSD Signature : RSA/SHA256, Thu 10 Aug 2017 11:44:31 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : p11-kit-0.23.5-3.el7.src.rpm Build Date : Fri 04 Aug 2017 04:37:00 PM PDT Build Host : c1bm.rdu2.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://p11-glue.freedesktop.org/p11-kit.html Summary : Library for loading and sharing PKCS#11 modules Description : p11-kit provides a way to load and enumerate PKCS#11 modules, as well as a standard configuration setup for installing PKCS#11 modules in such a way that they're discoverable. Name : lvm2 Epoch : 7 Version : 2.02.185 Release : 2.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:15 AM PDT Group : System Environment/Base Size : 3117026 License : GPLv2 Signature : RSA/SHA256, Thu 22 Aug 2019 02:34:51 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : lvm2-2.02.185-2.el7.src.rpm Build Date : Thu 08 Aug 2019 05:44:27 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://sources.redhat.com/lvm2 Summary : Userland logical volume management tools Description : LVM2 includes all of the support for handling read/write operations on physical volumes (hard disks, RAID-Systems, magneto optical, etc., multiple devices (MD), see mdadm(8) or even loop devices, see losetup(8)), creating volume groups (kind of virtual disks) from one or more physical volumes and creating one or more logical volumes (kind of logical partitions) in volume groups. Name : libtasn1 Version : 4.10 Release : 1.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:16 AM PDT Group : System Environment/Libraries Size : 424486 License : GPLv3+ and LGPLv2+ Signature : RSA/SHA256, Thu 10 Aug 2017 10:58:43 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : libtasn1-4.10-1.el7.src.rpm Build Date : Tue 01 Aug 2017 05:21:37 PM PDT Build Host : c1bm.rdu2.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gnu.org/software/libtasn1/ Summary : The ASN.1 library used in GNUTLS Description : A library that provides Abstract Syntax Notation One (ASN.1, as specified by the X.680 ITU-T recommendation) parsing and structures management, and Distinguished Encoding Rules (DER, as per X.690) encoding and decoding functions. Name : systemd-sysv Version : 219 Release : 67.el7_7.1 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:16 AM PDT Group : Unspecified Size : 3979 License : LGPLv2+ Signature : RSA/SHA256, Sat 14 Sep 2019 04:50:41 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : systemd-219-67.el7_7.1.src.rpm Build Date : Fri 13 Sep 2019 11:21:31 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.freedesktop.org/wiki/Software/systemd Summary : SysV tools for systemd Description : SysV compatibility tools for systemd Name : docker-common Epoch : 2 Version : 1.13.1 Release : 103.git7f2769b.el7.centos Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:26 AM PDT Group : Unspecified Size : 4481 License : ASL 2.0 Signature : RSA/SHA256, Mon 16 Sep 2019 05:33:25 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : docker-1.13.1-103.git7f2769b.el7.centos.src.rpm Build Date : Sun 15 Sep 2019 07:07:52 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://github.com/docker/docker Summary : Common files for docker and docker-latest Description : This package contains the common files /usr/bin/docker which will point to /usr/bin/docker-current or /usr/bin/docker-latest configurable via /etc/sysconfig/docker Name : plymouth Version : 0.8.9 Release : 0.32.20140113.el7.centos Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:27 AM PDT Group : System Environment/Base Size : 233304 License : GPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:39:19 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : plymouth-0.8.9-0.32.20140113.el7.centos.src.rpm Build Date : Thu 08 Aug 2019 04:51:46 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.freedesktop.org/wiki/Software/Plymouth Summary : Graphical Boot Animation and Logger Description : Plymouth provides an attractive graphical boot animation in place of the text messages that normally get shown. Text messages are instead redirected to a log file for viewing after boot. Name : irqbalance Epoch : 3 Version : 1.0.7 Release : 12.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:45 AM PDT Group : System Environment/Base Size : 71212 License : GPLv2 Signature : RSA/SHA256, Thu 22 Aug 2019 02:26:22 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : irqbalance-1.0.7-12.el7.src.rpm Build Date : Thu 08 Aug 2019 04:57:59 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://github.com/Irqbalance/irqbalance Summary : IRQ balancing daemon Description : irqbalance is a daemon that evenly distributes IRQ load across multiple CPUs for enhanced performance. Name : libcap-ng Version : 0.7.5 Release : 4.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:18 AM PDT Group : System Environment/Libraries Size : 50510 License : LGPLv2+ Signature : RSA/SHA256, Wed 25 Nov 2015 06:52:00 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : libcap-ng-0.7.5-4.el7.src.rpm Build Date : Thu 19 Nov 2015 10:38:30 PM PST Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://people.redhat.com/sgrubb/libcap-ng Summary : An alternate posix capabilities library Description : Libcap-ng is a library that makes using posix capabilities easier Name : kexec-tools Version : 2.0.15 Release : 33.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:49 AM PDT Group : Applications/System Size : 779247 License : GPLv2 Signature : RSA/SHA256, Thu 22 Aug 2019 02:28:13 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : kexec-tools-2.0.15-33.el7.src.rpm Build Date : Thu 08 Aug 2019 04:41:23 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS Summary : The kexec/kdump userspace component. Description : kexec-tools provides /sbin/kexec binary that facilitates a new kernel to boot using the kernel's kexec feature either on a normal or a panic reboot. This package contains the /sbin/kexec binary and ancillary utilities that together form the userspace component of the kernel's kexec feature. Name : python-backports Version : 1.0 Release : 8.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 12:00:19 PM PDT Group : Unspecified Size : 638 License : Public Domain Signature : RSA/SHA256, Sat 14 Mar 2015 01:30:55 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : python-backports-1.0-8.el7.src.rpm Build Date : Thu 05 Mar 2015 09:10:25 PM PST Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://pypi.python.org/pypi/backports Summary : Namespace for backported Python features Description : The backports namespace is a namespace reserved for features backported from the Python standard library to older versions of Python 2. Packages that exist in the backports namespace in Fedora should not provide their own backports/__init__.py, but instead require this package. Backports to earlier versions of Python 3, if they exist, do not need this package because of changes made in Python 3.3 in PEP 420 (http://www.python.org/dev/peps/pep-0420/). Name : cpio Version : 2.11 Release : 27.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:18 AM PDT Group : Applications/Archiving Size : 689335 License : GPLv3+ Signature : RSA/SHA256, Wed 25 Apr 2018 03:56:03 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : cpio-2.11-27.el7.src.rpm Build Date : Tue 10 Apr 2018 04:51:52 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gnu.org/software/cpio/ Summary : A GNU archiving program Description : GNU cpio copies files into or out of a cpio or tar archive. Archives are files which contain a collection of other files plus information about them, such as their file name, owner, timestamps, and access permissions. The archive can be another file on the disk, a magnetic tape, or a pipe. GNU cpio supports the following archive formats: binary, old ASCII, new ASCII, crc, HPUX binary, HPUX old ASCII, old tar and POSIX.1 tar. By default, cpio creates binary format archives, so that they are compatible with older cpio programs. When it is extracting files from archives, cpio automatically recognizes which kind of archive it is reading and can read archives created on machines with a different byte-order. Install cpio if you need a program to manage file archives. Name : NetworkManager-tui Epoch : 1 Version : 1.18.0 Release : 5.el7_7.1 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:49 AM PDT Group : System Environment/Base Size : 659215 License : GPLv2+ Signature : RSA/SHA256, Sat 14 Sep 2019 04:49:32 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : NetworkManager-1.18.0-5.el7_7.1.src.rpm Build Date : Fri 13 Sep 2019 11:05:30 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gnome.org/projects/NetworkManager/ Summary : NetworkManager curses-based UI Description : This adds a curses-based "TUI" (Text User Interface) to NetworkManager, to allow performing some of the operations supported by nm-connection-editor and nm-applet in a non-graphical environment. Name : oci-register-machine Epoch : 1 Version : 0 Release : 6.git2b44233.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 12:00:20 PM PDT Group : Unspecified Size : 3372952 License : ASL 2.0 Signature : RSA/SHA256, Fri 09 Mar 2018 04:57:06 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : oci-register-machine-0-6.git2b44233.el7.src.rpm Build Date : Wed 07 Mar 2018 09:09:27 AM PST Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://github.com/projectatomic/oci-register-machine Summary : Golang binary to register OCI containers with systemd-machined Description : Golang binary to register OCI containers with systemd-machined Name : which Version : 2.20 Release : 7.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:18 AM PDT Group : Applications/System Size : 76962 License : GPLv3 Signature : RSA/SHA256, Thu 03 Jul 2014 10:43:07 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : which-2.20-7.el7.src.rpm Build Date : Mon 09 Jun 2014 07:25:22 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.xs4all.nl/~carlo17/which/ Summary : Displays where a particular program in your path is located Description : The which command shows the full pathname of a specified program, if the specified program is in your PATH. Name : chrony Version : 3.4 Release : 1.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:50 AM PDT Group : System Environment/Daemons Size : 502859 License : GPLv2 Signature : RSA/SHA256, Thu 22 Aug 2019 02:21:16 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : chrony-3.4-1.el7.src.rpm Build Date : Thu 08 Aug 2019 04:42:19 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://chrony.tuxfamily.org Summary : An NTP client/server Description : A client/server for the Network Time Protocol, this program keeps your computer's clock accurate. It was specially designed to support systems with intermittent internet connections, but it also works well in permanently connected environments. It can use also hardware reference clocks, system real-time clock or manual input as time references. Name : sqlite Version : 3.7.17 Release : 8.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:19 AM PDT Group : Applications/Databases Size : 814231 License : Public Domain Signature : RSA/SHA256, Wed 25 Nov 2015 07:40:39 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : sqlite-3.7.17-8.el7.src.rpm Build Date : Fri 20 Nov 2015 12:45:59 AM PST Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.sqlite.org/ Summary : Library that implements an embeddable SQL database engine Description : SQLite is a C library that implements an SQL database engine. A large subset of SQL92 is supported. A complete database is stored in a single disk file. The API is designed for convenience and ease of use. Applications that link against SQLite can enjoy the power and flexibility of an SQL database without the administrative hassles of supporting a separate database server. Version 2 and version 3 binaries are named to permit each to be installed on a single host Name : microcode_ctl Epoch : 2 Version : 2.1 Release : 53.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:53 AM PDT Group : System Environment/Base Size : 2651210 License : GPLv2+ and Redistributable, no modification permitted Signature : RSA/SHA256, Thu 22 Aug 2019 02:35:33 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : microcode_ctl-2.1-53.el7.src.rpm Build Date : Thu 08 Aug 2019 05:58:14 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://pagure.io/microcode_ctl Summary : Tool to transform and deploy CPU microcode update for x86. Description : The microcode_ctl utility is a companion to the microcode driver written by Tigran Aivazian . The microcode update is volatile and needs to be uploaded on each system boot i.e. it doesn't reflash your cpu permanently, reboot and it reverts back to the old microcode. Name : file-libs Version : 5.11 Release : 35.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:19 AM PDT Group : Applications/File Size : 3076831 License : BSD Signature : RSA/SHA256, Mon 12 Nov 2018 06:25:10 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : file-5.11-35.el7.src.rpm Build Date : Tue 30 Oct 2018 11:16:23 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.darwinsys.com/file/ Summary : Libraries for applications using libmagic Description : Libraries for applications using libmagic. Name : openssl Epoch : 1 Version : 1.0.2k Release : 19.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:58 AM PDT Group : System Environment/Libraries Size : 833707 License : OpenSSL Signature : RSA/SHA256, Thu 22 Aug 2019 02:37:31 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : openssl-1.0.2k-19.el7.src.rpm Build Date : Thu 08 Aug 2019 06:40:02 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.openssl.org/ Summary : Utilities from the general purpose cryptography library with TLS implementation Description : The OpenSSL toolkit provides support for secure communications between machines. OpenSSL includes a certificate management tool and shared libraries which provide various cryptographic algorithms and protocols. Name : libcroco Version : 0.6.12 Release : 4.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:19 AM PDT Group : System Environment/Libraries Size : 320955 License : LGPLv2 Signature : RSA/SHA256, Mon 12 Nov 2018 06:31:55 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : libcroco-0.6.12-4.el7.src.rpm Build Date : Tue 30 Oct 2018 11:03:18 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS Summary : A CSS2 parsing library Description : CSS2 parsing and manipulation library for GNOME Name : mariadb-libs Epoch : 1 Version : 5.5.64 Release : 1.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:23:00 AM PDT Group : Applications/Databases Size : 4615213 License : GPLv2 with exceptions and LGPLv2 and BSD Signature : RSA/SHA256, Thu 22 Aug 2019 02:35:07 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : mariadb-5.5.64-1.el7.src.rpm Build Date : Thu 08 Aug 2019 07:29:56 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://mariadb.org Summary : The shared libraries required for MariaDB/MySQL clients Description : The mariadb-libs package provides the essential shared libraries for any MariaDB/MySQL client program or interface. You will need to install this package to use any other MariaDB package or any clients that need to connect to a MariaDB/MySQL server. MariaDB is a community developed branch of MySQL. Name : libgomp Version : 4.8.5 Release : 39.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:23:01 AM PDT Group : System Environment/Libraries Size : 212184 License : GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions and LGPLv2+ and BSD Signature : RSA/SHA256, Thu 22 Aug 2019 02:29:46 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : gcc-4.8.5-39.el7.src.rpm Build Date : Tue 06 Aug 2019 10:15:38 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://gcc.gnu.org Summary : GCC OpenMP v3.0 shared support library Description : This package contains GCC shared support library which is needed for OpenMP v3.0 support. Name : libnl3-cli Version : 3.2.28 Release : 4.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:20 AM PDT Group : Development/Libraries Size : 706246 License : LGPLv2 Signature : RSA/SHA256, Thu 10 Aug 2017 10:22:53 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : libnl3-3.2.28-4.el7.src.rpm Build Date : Thu 03 Aug 2017 12:49:03 PM PDT Build Host : c1bm.rdu2.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.infradead.org/~tgr/libnl/ Summary : Command line interface utils for libnl3 Description : This package contains various libnl3 utils and additional libraries on which they depend Name : iwl3945-firmware Version : 15.32.2.9 Release : 72.el7 Architecture: noarch Install Date: Wed 16 Oct 2019 09:23:01 AM PDT Group : System Environment/Kernel Size : 287230 License : Redistributable, no modification permitted Signature : RSA/SHA256, Thu 22 Aug 2019 02:58:07 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : linux-firmware-20190429-72.gitddde598.el7.src.rpm Build Date : Thu 08 Aug 2019 05:22:46 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/ Summary : Firmware for Intel® PRO/Wireless 3945 A/B/G network adaptors Description : This package contains the firmware required by the iwl3945 driver for Linux. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully. Name : groff-base Version : 1.22.2 Release : 8.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:20 AM PDT Group : Applications/Publishing Size : 3453946 License : GPLv3+ and GFDL and BSD and MIT Signature : RSA/SHA256, Thu 03 Jul 2014 06:45:51 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : groff-1.22.2-8.el7.src.rpm Build Date : Mon 09 Jun 2014 01:17:26 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gnu.org/software/groff/ Summary : Parts of the groff formatting system required to display manual pages Description : The groff-base package contains only necessary parts of groff formatting system which are required to display manual pages, and the groff's default display device (PostScript). Name : iwl5150-firmware Version : 8.24.2.2 Release : 72.el7 Architecture: noarch Install Date: Wed 16 Oct 2019 09:23:02 AM PDT Group : System Environment/Kernel Size : 474530 License : Redistributable, no modification permitted Signature : RSA/SHA256, Thu 22 Aug 2019 02:58:10 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : linux-firmware-20190429-72.gitddde598.el7.src.rpm Build Date : Thu 08 Aug 2019 05:22:46 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/ Summary : Firmware for Intel® PRO/Wireless 5150 A/G/N network adaptors Description : This package contains the firmware required by the iwl5150 driver for Linux. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully. Name : libedit Version : 3.0 Release : 12.20121213cvs.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:20 AM PDT Group : System Environment/Libraries Size : 244257 License : BSD Signature : RSA/SHA256, Thu 03 Jul 2014 07:44:30 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : libedit-3.0-12.20121213cvs.el7.src.rpm Build Date : Mon 09 Jun 2014 03:33:10 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.thrysoee.dk/editline/ Summary : The NetBSD Editline library Description : Libedit is an autotool- and libtoolized port of the NetBSD Editline library. It provides generic line editing, history, and tokenization functions, similar to those found in GNU Readline. Name : iwl6000g2a-firmware Version : 17.168.5.3 Release : 72.el7 Architecture: noarch Install Date: Wed 16 Oct 2019 09:23:02 AM PDT Group : System Environment/Kernel Size : 1258554 License : Redistributable, no modification permitted Signature : RSA/SHA256, Thu 22 Aug 2019 02:58:12 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : linux-firmware-20190429-72.gitddde598.el7.src.rpm Build Date : Thu 08 Aug 2019 05:22:46 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/ Summary : Firmware for Intel(R) Wireless WiFi Link 6005 Series Adapters Description : This package contains the firmware required by the iwlagn driver for Linux. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully. Name : libnfnetlink Version : 1.0.1 Release : 4.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:21 AM PDT Group : System Environment/Libraries Size : 47123 License : GPLv2+ Signature : RSA/SHA256, Thu 03 Jul 2014 08:01:58 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : libnfnetlink-1.0.1-4.el7.src.rpm Build Date : Mon 09 Jun 2014 05:21:22 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://netfilter.org Summary : Netfilter netlink userspace library Description : libnfnetlink is a userspace library that provides some low-level nfnetlink handling functions. It is used as a foundation for other, netfilter subsystem specific libraries such as libnfnetlink_conntrack, libnfnetlink_log and libnfnetlink_queue. Name : iwl2030-firmware Version : 18.168.6.1 Release : 72.el7 Architecture: noarch Install Date: Wed 16 Oct 2019 09:23:05 AM PDT Group : System Environment/Kernel Size : 844522 License : Redistributable, no modification permitted Signature : RSA/SHA256, Thu 22 Aug 2019 02:58:05 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : linux-firmware-20190429-72.gitddde598.el7.src.rpm Build Date : Thu 08 Aug 2019 05:22:46 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/ Summary : Firmware for Intel(R) Centrino Wireless-N 2030 Series Adapters Description : This package contains the firmware required by the iwlagn driver for Linux to support the iwl2030 hardware. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully. Name : openldap Version : 2.4.44 Release : 21.el7_6 Architecture: x86_64 Install Date: Thu 15 Aug 2019 12:01:15 PM PDT Group : System Environment/Daemons Size : 1037424 License : OpenLDAP Signature : RSA/SHA256, Fri 01 Feb 2019 08:21:40 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : openldap-2.4.44-21.el7_6.src.rpm Build Date : Tue 29 Jan 2019 09:43:41 AM PST Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.openldap.org/ Summary : LDAP support libraries Description : OpenLDAP is an open source suite of LDAP (Lightweight Directory Access Protocol) applications and development tools. LDAP is a set of protocols for accessing directory services (usually phone book style information, but other information is possible) over the Internet, similar to the way DNS (Domain Name System) information is propagated over the Internet. The openldap package contains configuration files, libraries, and documentation for OpenLDAP. Name : lsof Version : 4.87 Release : 6.el7 Architecture: x86_64 Install Date: Tue 22 Oct 2019 03:59:58 PM PDT Group : Development/Debuggers Size : 949035 License : zlib and Sendmail and LGPLv2+ Signature : RSA/SHA256, Mon 12 Nov 2018 06:39:26 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : lsof-4.87-6.el7.src.rpm Build Date : Tue 30 Oct 2018 09:28:20 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://people.freebsd.org/~abe/ Summary : A utility which lists open files on a Linux/UNIX system Description : Lsof stands for LiSt Open Files, and it does just that: it lists information about files that are open by the processes running on a UNIX system. Name : sysstat Version : 10.1.5 Release : 18.el7 Architecture: x86_64 Install Date: Tue 29 Oct 2019 11:35:07 PM PDT Group : Applications/System Size : 1172464 License : GPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:44:12 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : sysstat-10.1.5-18.el7.src.rpm Build Date : Thu 08 Aug 2019 07:54:59 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://sebastien.godard.pagesperso-orange.fr/ Summary : Collection of performance monitoring tools for Linux Description : The sysstat package contains sar, sadf, mpstat, iostat, pidstat, nfsiostat-sysstat, tapestat, cifsiostat and sa tools for Linux. The sar command collects and reports system activity information. This information can be saved in a file in a binary format for future inspection. The statistics reported by sar concern I/O transfer rates, paging activity, process-related activities, interrupts, network activity, memory and swap space utilization, CPU utilization, kernel activities and TTY statistics, among others. Both UP and SMP machines are fully supported. The sadf command may be used to display data collected by sar in various formats (CSV, XML, etc.). The iostat command reports CPU utilization and I/O statistics for disks. The tapestat command reports statistics for tapes connected to the system. The mpstat command reports global and per-processor statistics. The pidstat command reports statistics for Linux tasks (processes). The nfsiostat-sysstat command reports I/O statistics for network file systems. The cifsiostat command reports I/O statistics for CIFS file systems. Name : pciutils-libs Version : 3.5.1 Release : 3.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:22 AM PDT Group : System Environment/Libraries Size : 72691 License : GPLv2+ Signature : RSA/SHA256, Wed 25 Apr 2018 04:34:19 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : pciutils-3.5.1-3.el7.src.rpm Build Date : Tue 10 Apr 2018 07:50:42 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://atrey.karlin.mff.cuni.cz/~mj/pciutils.shtml Summary : Linux PCI library Description : This package contains a library for inspecting and setting devices connected to the PCI bus. Name : rubygem-bigdecimal Version : 1.2.0 Release : 36.el7 Architecture: x86_64 Install Date: Sat 16 Nov 2019 02:29:24 PM PST Group : Development/Libraries Size : 84611 License : GPL+ or Artistic Signature : RSA/SHA256, Thu 22 Aug 2019 02:42:56 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : ruby-2.0.0.648-36.el7.src.rpm Build Date : Thu 08 Aug 2019 05:30:13 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://ruby-lang.org/ Summary : BigDecimal provides arbitrary-precision floating point decimal arithmetic Description : Ruby provides built-in support for arbitrary precision integer arithmetic. For example: 42**13 -> 1265437718438866624512 BigDecimal provides similar support for very large or very accurate floating point numbers. Decimal arithmetic is also useful for general calculation, because it provides the correct answers people expect–whereas normal binary floating point arithmetic often introduces subtle errors because of the conversion between base 10 and base 2. Name : ruby-irb Version : 2.0.0.648 Release : 36.el7 Architecture: noarch Install Date: Sat 16 Nov 2019 02:29:25 PM PST Group : Development/Libraries Size : 160544 License : (Ruby or BSD) and Public Domain Signature : RSA/SHA256, Thu 22 Aug 2019 03:00:54 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : ruby-2.0.0.648-36.el7.src.rpm Build Date : Thu 08 Aug 2019 05:30:13 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://ruby-lang.org/ Summary : The Interactive Ruby Description : The irb is acronym for Interactive Ruby. It evaluates ruby expression from the terminal. Name : python-configobj Version : 4.7.2 Release : 7.el7 Architecture: noarch Install Date: Thu 15 Aug 2019 10:53:23 AM PDT Group : System Environment/Libraries Size : 611855 License : BSD Signature : RSA/SHA256, Thu 03 Jul 2014 09:38:24 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : python-configobj-4.7.2-7.el7.src.rpm Build Date : Mon 09 Jun 2014 11:57:08 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.voidspace.org.uk/python/configobj.html Summary : Config file reading, writing, and validation Description : ConfigObj is a simple but powerful config file reader and writer: an ini file round tripper. Its main feature is that it is very easy to use, with a straightforward programmer's interface and a simple syntax for config files. It has lots of other features though: * Nested sections (subsections), to any level * List values * Multiple line values * String interpolation (substitution) * Integrated with a powerful validation system o including automatic type checking/conversion o repeated sections o and allowing default values * All comments in the file are preserved * The order of keys/sections is preserved * No external dependencies * Full Unicode support * A powerful unrepr mode for storing basic datatypes Name : unzip Version : 6.0 Release : 20.el7 Architecture: x86_64 Install Date: Mon 13 Jan 2020 05:29:48 PM PST Group : Applications/Archiving Size : 373994 License : BSD Signature : RSA/SHA256, Thu 22 Aug 2019 02:44:59 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : unzip-6.0-20.el7.src.rpm Build Date : Thu 08 Aug 2019 08:09:03 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.info-zip.org/UnZip.html Summary : A utility for unpacking zip files Description : The unzip utility is used to list, test, or extract files from a zip archive. Zip archives are commonly found on MS-DOS systems. The zip utility, included in the zip package, creates zip archives. Zip and unzip are both compatible with archives created by PKWARE(R)'s PKZIP for MS-DOS, but the programs' options and default behaviors do differ in some respects. Install the unzip package if you need to list, test or extract files from a zip archive. Name : libnetfilter_conntrack Version : 1.0.6 Release : 1.el7_3 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:23 AM PDT Group : System Environment/Libraries Size : 143566 License : GPLv2+ Signature : RSA/SHA256, Thu 25 May 2017 04:23:10 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : libnetfilter_conntrack-1.0.6-1.el7_3.src.rpm Build Date : Thu 25 May 2017 12:59:45 PM PDT Build Host : c1bm.rdu2.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://netfilter.org Summary : Netfilter conntrack userspace library Description : libnetfilter_conntrack is a userspace library providing a programming interface (API) to the in-kernel connection tracking state table. Name : mpfr Version : 3.1.1 Release : 4.el7 Architecture: x86_64 Install Date: Wed 08 Apr 2020 05:17:22 AM PDT Group : System Environment/Libraries Size : 554279 License : LGPLv3+ and GPLv3+ and GFDL Signature : RSA/SHA256, Thu 03 Jul 2014 08:49:45 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : mpfr-3.1.1-4.el7.src.rpm Build Date : Mon 09 Jun 2014 06:11:54 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.mpfr.org/ Summary : A C library for multiple-precision floating-point computations Description : The MPFR library is a C library for multiple-precision floating-point computations with "correct rounding". The MPFR is efficient and also has a well-defined semantics. It copies the good ideas from the ANSI/IEEE-754 standard for double-precision floating-point arithmetic (53-bit mantissa). MPFR is based on the GMP multiple-precision library. Name : gettext Version : 0.19.8.1 Release : 2.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:23 AM PDT Group : Development/Tools Size : 5029340 License : GPLv3+ and LGPLv2+ Signature : RSA/SHA256, Thu 10 Aug 2017 09:07:43 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : gettext-0.19.8.1-2.el7.src.rpm Build Date : Wed 02 Aug 2017 07:28:14 PM PDT Build Host : c1bm.rdu2.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gnu.org/software/gettext/ Summary : GNU libraries and utilities for producing multi-lingual messages Description : The GNU gettext package provides a set of tools and documentation for producing multi-lingual messages in programs. Tools include a set of conventions about how programs should be written to support message catalogs, a directory and file naming organization for the message catalogs, a runtime library which supports the retrieval of translated messages, and stand-alone programs for handling the translatable and the already translated strings. Gettext provides an easy to use library and tools for creating, using, and modifying natural language catalogs and is a powerful and simple method for internationalizing programs. Name : glibc-headers Version : 2.17 Release : 292.el7 Architecture: x86_64 Install Date: Wed 08 Apr 2020 05:17:25 AM PDT Group : Development/Libraries Size : 2339702 License : LGPLv2+ and LGPLv2+ with exceptions and GPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:24:45 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : glibc-2.17-292.el7.src.rpm Build Date : Tue 06 Aug 2019 04:23:44 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gnu.org/software/glibc/ Summary : Header files for development using standard C libraries. Description : The glibc-headers package contains the header files necessary for developing programs which use the standard C libraries (which are used by nearly all programs). If you are developing programs which will use the standard C libraries, your system needs to have these standard header files available in order to create the executables. Install glibc-headers if you are going to develop programs which will use the standard C libraries. Name : libsepol-devel Version : 2.5 Release : 10.el7 Architecture: x86_64 Install Date: Wed 08 Apr 2020 05:24:42 AM PDT Group : Development/Libraries Size : 126580 License : LGPLv2+ Signature : RSA/SHA256, Mon 12 Nov 2018 06:37:36 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : libsepol-2.5-10.el7.src.rpm Build Date : Tue 30 Oct 2018 02:36:15 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://github.com/SELinuxProject/selinux/wiki Summary : Header files and libraries used to build policy manipulation tools Description : The libsepol-devel package contains the libraries and header files needed for developing applications that manipulate binary policies. Name : gobject-introspection Version : 1.56.1 Release : 1.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:24 AM PDT Group : Unspecified Size : 854207 License : GPLv2+, LGPLv2+, MIT Signature : RSA/SHA256, Mon 12 Nov 2018 06:28:00 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : gobject-introspection-1.56.1-1.el7.src.rpm Build Date : Fri 02 Nov 2018 08:25:09 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://wiki.gnome.org/Projects/GObjectIntrospection Summary : Introspection system for GObject-based libraries Description : GObject Introspection can scan C header and source files in order to generate introspection "typelib" files. It also provides an API to examine typelib files, useful for creating language bindings among other things. Name : libcom_err-devel Version : 1.42.9 Release : 16.el7 Architecture: x86_64 Install Date: Wed 08 Apr 2020 05:24:42 AM PDT Group : Development/Libraries Size : 17196 License : MIT Signature : RSA/SHA256, Thu 22 Aug 2019 02:29:15 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : e2fsprogs-1.42.9-16.el7.src.rpm Build Date : Thu 08 Aug 2019 04:19:51 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://e2fsprogs.sourceforge.net/ Summary : Common error description library Description : This is the common error description development library and headers, part of e2fsprogs. It contains the compile_et commmand, used to convert a table listing error-code names and associated messages messages into a C source file suitable for use with the library. libcom_err is an attempt to present a common error-handling mechanism. Name : openssl-devel Epoch : 1 Version : 1.0.2k Release : 19.el7 Architecture: x86_64 Install Date: Wed 08 Apr 2020 05:24:44 AM PDT Group : Development/Libraries Size : 3268775 License : OpenSSL Signature : RSA/SHA256, Thu 22 Aug 2019 02:37:32 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : openssl-1.0.2k-19.el7.src.rpm Build Date : Thu 08 Aug 2019 06:40:02 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.openssl.org/ Summary : Files for development of applications which will use OpenSSL Description : OpenSSL is a toolkit for supporting cryptography. The openssl-devel package contains include files needed to develop applications which support various cryptographic algorithms and protocols. Name : bzip2 Version : 1.0.6 Release : 13.el7 Architecture: x86_64 Install Date: Tue 14 Apr 2020 08:13:29 AM PDT Group : Applications/File Size : 83791 License : BSD Signature : RSA/SHA256, Wed 25 Nov 2015 06:18:37 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : bzip2-1.0.6-13.el7.src.rpm Build Date : Thu 19 Nov 2015 09:04:52 PM PST Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.bzip.org/ Summary : A file compression utility Description : Bzip2 is a freely available, patent-free, high quality data compressor. Bzip2 compresses files to within 10 to 15 percent of the capabilities of the best techniques available. However, bzip2 has the added benefit of being approximately two times faster at compression and six times faster at decompression than those techniques. Bzip2 is not the fastest compression utility, but it does strike a balance between speed and compression capability. Install bzip2 if you need a compression utility. Name : devtoolset-3-runtime Version : 3.1 Release : 12.el7 Architecture: x86_64 Install Date: Tue 14 Apr 2020 08:42:05 AM PDT Group : Applications/File Size : 6212 License : GPLv2+ Signature : RSA/SHA1, Sat 28 Nov 2015 06:50:56 AM PST, Key ID 4eb84e71f2ee9d55 Source RPM : devtoolset-3-3.1-12.el7.src.rpm Build Date : Mon 05 Oct 2015 03:10:53 PM PDT Build Host : c1bj.rdu2.centos.org Relocations : (not relocatable) Packager : CBS Vendor : CentOS Summary : Package that handles devtoolset-3 Software Collection. Description : Package shipping essential scripts to work with devtoolset-3 Software Collection. Name : kernel Version : 3.10.0 Release : 957.27.2.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 12:01:42 PM PDT Group : System Environment/Kernel Size : 66226363 License : GPLv2 Signature : RSA/SHA256, Wed 31 Jul 2019 12:52:32 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : kernel-3.10.0-957.27.2.el7.src.rpm Build Date : Mon 29 Jul 2019 11:13:51 AM PDT Build Host : kbuilder.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.kernel.org/ Summary : The Linux kernel Description : The kernel package contains the Linux kernel (vmlinuz), the core of any Linux operating system. The kernel handles the basic functions of the operating system: memory allocation, process allocation, device input and output, etc. Name : python-urlgrabber Version : 3.10 Release : 9.el7 Architecture: noarch Install Date: Thu 15 Aug 2019 10:53:25 AM PDT Group : Development/Libraries Size : 503349 License : LGPLv2+ Signature : RSA/SHA256, Mon 12 Nov 2018 07:19:19 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : python-urlgrabber-3.10-9.el7.src.rpm Build Date : Tue 30 Oct 2018 10:15:12 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://urlgrabber.baseurl.org/ Summary : A high-level cross-protocol url-grabber Description : A high-level cross-protocol url-grabber for python supporting HTTP, FTP and file locations. Features include keepalive, byte ranges, throttling, authentication, proxies and more. Name : python3-pip Version : 9.0.3 Release : 5.el7 Architecture: noarch Install Date: Tue 15 Oct 2019 11:09:08 AM PDT Group : Development/Libraries Size : 9787341 License : MIT and Python and ASL 2.0 and BSD and ISC and LGPLv2 and MPLv2.0 and (ASL 2.0 or BSD) Signature : RSA/SHA256, Thu 22 Aug 2019 02:59:47 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : python-pip-9.0.3-5.el7.src.rpm Build Date : Wed 07 Aug 2019 10:05:45 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.pip-installer.org Summary : A tool for installing and managing Python3 packages Description : pip is a package management system used to install and manage software packages written in Python. Many packages can be found in the Python Package Index (PyPI). pip is a recursive acronym that can stand for either "Pip Installs Packages" or "Pip Installs Python". Name : gpg-pubkey Version : 352c64e5 Release : 52ae6884 Architecture: (none) Install Date: Mon 04 Jan 2021 12:31:55 PM PST Group : Public Keys Size : 0 License : pubkey Signature : (none) Source RPM : (none) Build Date : Sun 15 Dec 2013 06:42:12 PM PST Build Host : localhost Relocations : (not relocatable) Packager : Fedora EPEL (7) Summary : gpg(Fedora EPEL (7) ) Description : -----BEGIN PGP PUBLIC KEY BLOCK----- Version: rpm-4.11.3 (NSS-3) mQINBFKuaIQBEAC1UphXwMqCAarPUH/ZsOFslabeTVO2pDk5YnO96f+rgZB7xArB OSeQk7B90iqSJ85/c72OAn4OXYvT63gfCeXpJs5M7emXkPsNQWWSju99lW+AqSNm jYWhmRlLRGl0OO7gIwj776dIXvcMNFlzSPj00N2xAqjMbjlnV2n2abAE5gq6VpqP vFXVyfrVa/ualogDVmf6h2t4Rdpifq8qTHsHFU3xpCz+T6/dGWKGQ42ZQfTaLnDM jToAsmY0AyevkIbX6iZVtzGvanYpPcWW4X0RDPcpqfFNZk643xI4lsZ+Y2Er9Yu5 S/8x0ly+tmmIokaE0wwbdUu740YTZjCesroYWiRg5zuQ2xfKxJoV5E+Eh+tYwGDJ n6HfWhRgnudRRwvuJ45ztYVtKulKw8QQpd2STWrcQQDJaRWmnMooX/PATTjCBExB 9dkz38Druvk7IkHMtsIqlkAOQMdsX1d3Tov6BE2XDjIG0zFxLduJGbVwc/6rIc95 T055j36Ez0HrjxdpTGOOHxRqMK5m9flFbaxxtDnS7w77WqzW7HjFrD0VeTx2vnjj GqchHEQpfDpFOzb8LTFhgYidyRNUflQY35WLOzLNV+pV3eQ3Jg11UFwelSNLqfQf uFRGc+zcwkNjHh5yPvm9odR1BIfqJ6sKGPGbtPNXo7ERMRypWyRz0zi0twARAQAB tChGZWRvcmEgRVBFTCAoNykgPGVwZWxAZmVkb3JhcHJvamVjdC5vcmc+iQI4BBMB AgAiBQJSrmiEAhsPBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRBqL66iNSxk 5cfGD/4spqpsTjtDM7qpytKLHKruZtvuWiqt5RfvT9ww9GUUFMZ4ZZGX4nUXg49q ixDLayWR8ddG/s5kyOi3C0uX/6inzaYyRg+Bh70brqKUK14F1BrrPi29eaKfG+Gu MFtXdBG2a7OtPmw3yuKmq9Epv6B0mP6E5KSdvSRSqJWtGcA6wRS/wDzXJENHp5re 9Ism3CYydpy0GLRA5wo4fPB5uLdUhLEUDvh2KK//fMjja3o0L+SNz8N0aDZyn5Ax CU9RB3EHcTecFgoy5umRj99BZrebR1NO+4gBrivIfdvD4fJNfNBHXwhSH9ACGCNv HnXVjHQF9iHWApKkRIeh8Fr2n5dtfJEF7SEX8GbX7FbsWo29kXMrVgNqHNyDnfAB VoPubgQdtJZJkVZAkaHrMu8AytwT62Q4eNqmJI1aWbZQNI5jWYqc6RKuCK6/F99q thFT9gJO17+yRuL6Uv2/vgzVR1RGdwVLKwlUjGPAjYflpCQwWMAASxiv9uPyYPHc ErSrbRG0wjIfAR3vus1OSOx3xZHZpXFfmQTsDP7zVROLzV98R3JwFAxJ4/xqeON4 vCPFU6OsT3lWQ8w7il5ohY95wmujfr6lk89kEzJdOTzcn7DBbUru33CQMGKZ3Evt RjsC7FDbL017qxS+ZVA/HGkyfiu4cpgV8VUnbql5eAZ+1Ll6Dw== =hdPa -----END PGP PUBLIC KEY BLOCK----- Name : perl-HTTP-Tiny Version : 0.033 Release : 3.el7 Architecture: noarch Install Date: Tue 15 Oct 2019 11:27:57 AM PDT Group : Development/Libraries Size : 97210 License : GPL+ or Artistic Signature : RSA/SHA256, Thu 03 Jul 2014 09:19:08 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : perl-HTTP-Tiny-0.033-3.el7.src.rpm Build Date : Mon 09 Jun 2014 01:53:37 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://search.cpan.org/dist/HTTP-Tiny/ Summary : Small, simple, correct HTTP/1.1 client Description : This is a very simple HTTP/1.1 client, designed for doing simple GET requests without the overhead of a large framework like LWP::UserAgent. It is more correct and more complete than HTTP::Lite. It supports proxies (currently only non-authenticating ones) and redirection. It also correctly resumes after EINTR. Name : acl Version : 2.2.51 Release : 14.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:27 AM PDT Group : System Environment/Base Size : 201225 License : GPLv2+ Signature : RSA/SHA256, Wed 25 Apr 2018 03:52:22 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : acl-2.2.51-14.el7.src.rpm Build Date : Tue 10 Apr 2018 05:41:24 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://acl.bestbits.at/ Summary : Access control list utilities Description : This package contains the getfacl and setfacl utilities needed for manipulating access control lists. Name : wireless-tools Epoch : 1 Version : 29 Release : 13.el7 Architecture: x86_64 Install Date: Mon 04 Jan 2021 12:32:02 PM PST Group : System Environment/Base Size : 242259 License : GPL+ Signature : RSA/SHA256, Tue 16 Dec 2014 01:47:54 PM PST, Key ID 6a2faea2352c64e5 Source RPM : wireless-tools-29-13.el7.src.rpm Build Date : Mon 15 Dec 2014 01:39:37 PM PST Build Host : buildhw-09.phx2.fedoraproject.org Relocations : (not relocatable) Packager : Fedora Project Vendor : Fedora Project URL : http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html Summary : Wireless ethernet configuration tools Description : This package contain the Wireless tools, used to manipulate the Wireless Extensions. The Wireless Extension is an interface allowing you to set Wireless LAN specific parameters and get the specific stats for wireless networking equipment. Name : perl-Encode Version : 2.51 Release : 7.el7 Architecture: x86_64 Install Date: Tue 15 Oct 2019 11:27:58 AM PDT Group : Development/Libraries Size : 10176350 License : GPL+ or Artistic Signature : RSA/SHA256, Thu 03 Jul 2014 09:17:22 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : perl-Encode-2.51-7.el7.src.rpm Build Date : Mon 09 Jun 2014 07:49:45 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://search.cpan.org/dist/Encode/ Summary : Character encodings in Perl Description : The Encode module provides the interface between Perl strings and the rest of the system. Perl strings are sequences of characters. Name : mozjs17 Version : 17.0.0 Release : 20.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:28 AM PDT Group : Development/Languages Size : 4045213 License : GPLv2+ or LGPLv2+ or MPLv1.1 Signature : RSA/SHA256, Wed 25 Apr 2018 04:27:32 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : mozjs17-17.0.0-20.el7.src.rpm Build Date : Tue 10 Apr 2018 05:33:07 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.mozilla.org/js/ Summary : JavaScript interpreter and libraries Description : JavaScript is the Netscape-developed object scripting language used in millions of web pages and server applications worldwide. Netscape's JavaScript is a superset of the ECMA-262 Edition 3 (ECMAScript) standard scripting language, with only mild differences from the published standard. Name : oniguruma Version : 6.8.2 Release : 1.el7 Architecture: x86_64 Install Date: Wed 31 Mar 2021 06:30:28 PM PDT Group : System Environment/Libraries Size : 688419 License : BSD Signature : RSA/SHA256, Thu 28 May 2020 09:51:06 AM PDT, Key ID 6a2faea2352c64e5 Source RPM : oniguruma-6.8.2-1.el7.src.rpm Build Date : Tue 26 May 2020 12:24:56 PM PDT Build Host : buildhw-03.phx2.fedoraproject.org Relocations : (not relocatable) Packager : Fedora Project Vendor : Fedora Project URL : https://github.com/kkos/oniguruma/ Bug URL : https://bugz.fedoraproject.org/oniguruma Summary : Regular expressions library Description : Oniguruma is a regular expressions library. The characteristics of this library is that different character encoding for every regular expression object can be specified. (supported APIs: GNU regex, POSIX and Oniguruma native) Name : perl-macros Epoch : 4 Version : 5.16.3 Release : 294.el7_6 Architecture: x86_64 Install Date: Tue 15 Oct 2019 11:27:58 AM PDT Group : Development/Languages Size : 5134 License : GPL+ or Artistic Signature : RSA/SHA256, Thu 24 Jan 2019 05:22:17 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : perl-5.16.3-294.el7_6.src.rpm Build Date : Mon 21 Jan 2019 02:12:20 PM PST Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.perl.org/ Summary : Macros for rpmbuild Description : Macros for rpmbuild are needed during build of srpm in koji. This sub-package must be installed into buildroot, so it will be needed by perl. Perl is needed because of git. Name : perl-Time-Local Version : 1.2300 Release : 2.el7 Architecture: noarch Install Date: Tue 15 Oct 2019 11:27:58 AM PDT Group : Development/Libraries Size : 44062 License : GPL+ or Artistic Signature : RSA/SHA256, Thu 03 Jul 2014 09:25:36 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : perl-Time-Local-1.2300-2.el7.src.rpm Build Date : Mon 09 Jun 2014 12:31:30 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://search.cpan.org/dist/Time-Local/ Summary : Efficiently compute time from local and GMT time Description : This module provides functions that are the inverse of built-in perl functions localtime() and gmtime(). They accept a date as a six-element array, and return the corresponding time(2) value in seconds since the system epoch (Midnight, January 1, 1970 GMT on Unix, for example). This value can be positive or negative, though POSIX only requires support for positive values, so dates before the system's epoch may not work on all operating systems. Name : perl-PathTools Version : 3.40 Release : 5.el7 Architecture: x86_64 Install Date: Tue 15 Oct 2019 11:27:58 AM PDT Group : Development/Libraries Size : 174131 License : (GPL+ or Artistic) and BSD Signature : RSA/SHA256, Thu 03 Jul 2014 09:22:03 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : perl-PathTools-3.40-5.el7.src.rpm Build Date : Mon 09 Jun 2014 09:11:16 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://search.cpan.org/dist/PathTools/ Summary : PathTools Perl module (Cwd, File::Spec) Description : This is the combined distribution for the File::Spec and Cwd modules. Name : libutempter Version : 1.1.6 Release : 4.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:29 AM PDT Group : System Environment/Libraries Size : 49749 License : LGPLv2+ Signature : RSA/SHA256, Thu 03 Jul 2014 08:23:25 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : libutempter-1.1.6-4.el7.src.rpm Build Date : Mon 09 Jun 2014 07:03:46 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : ftp://ftp.altlinux.org/pub/people/ldv/utempter Summary : A privileged helper for utmp/wtmp updates Description : This library provides interface for terminal emulators such as screen and xterm to record user sessions to utmp and wtmp files. Name : perl-threads-shared Version : 1.43 Release : 6.el7 Architecture: x86_64 Install Date: Tue 15 Oct 2019 11:27:58 AM PDT Group : Development/Libraries Size : 73972 License : GPL+ or Artistic Signature : RSA/SHA256, Thu 03 Jul 2014 09:25:27 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : perl-threads-shared-1.43-6.el7.src.rpm Build Date : Mon 09 Jun 2014 11:07:27 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://search.cpan.org/dist/threads-shared/ Summary : Perl extension for sharing data structures between threads Description : By default, variables are private to each thread, and each newly created thread gets a private copy of each existing variable. This module allows you to share variables across different threads (and pseudo-forks on Win32). It is used together with the threads module. Name : perl-Getopt-Long Version : 2.40 Release : 3.el7 Architecture: noarch Install Date: Tue 15 Oct 2019 11:27:59 AM PDT Group : Development/Libraries Size : 134846 License : GPLv2+ or Artistic Signature : RSA/SHA256, Wed 25 Apr 2018 04:36:10 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : perl-Getopt-Long-2.40-3.el7.src.rpm Build Date : Tue 10 Apr 2018 05:34:16 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://search.cpan.org/dist/Getopt-Long/ Summary : Extended processing of command line options Description : The Getopt::Long module implements an extended getopt function called GetOptions(). It parses the command line from @ARGV, recognizing and removing specified options and their possible values. It adheres to the POSIX syntax for command line options, with GNU extensions. In general, this means that options have long names instead of single letters, and are introduced with a double dash "--". Support for bundling of command line options, as was the case with the more traditional single-letter approach, is provided but not enabled by default. Name : rsync Version : 3.1.2 Release : 6.el7_6.1 Architecture: x86_64 Install Date: Tue 15 Oct 2019 11:28:01 AM PDT Group : Applications/Internet Size : 834674 License : GPLv3+ Signature : RSA/SHA256, Mon 29 Apr 2019 08:47:46 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : rsync-3.1.2-6.el7_6.1.src.rpm Build Date : Thu 25 Apr 2019 10:18:00 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://rsync.samba.org/ Summary : A program for synchronizing files over a network Description : Rsync uses a reliable algorithm to bring remote and host files into sync very quickly. Rsync is fast because it just sends the differences in the files over the network instead of sending the complete files. Rsync is often used as a very powerful mirroring process or just as a more capable replacement for the rcp command. A technical report which describes the rsync algorithm is included in this package. Name : json-c Version : 0.11 Release : 4.el7_0 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:29 AM PDT Group : Development/Libraries Size : 65593 License : MIT Signature : RSA/SHA256, Sat 05 Jul 2014 08:25:00 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : json-c-0.11-4.el7_0.src.rpm Build Date : Tue 24 Jun 2014 05:18:58 AM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://github.com/json-c/json-c/wiki Summary : A JSON implementation in C Description : JSON-C implements a reference counting object model that allows you to easily construct JSON objects in C, output them as JSON formatted strings and parse JSON formatted strings back into the C representation of JSON objects. Name : grub2-common Epoch : 1 Version : 2.02 Release : 0.80.el7.centos Architecture: noarch Install Date: Wed 16 Oct 2019 09:21:16 AM PDT Group : System Environment/Base Size : 3915366 License : GPLv3+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:57:37 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : grub2-2.02-0.80.el7.centos.src.rpm Build Date : Thu 08 Aug 2019 04:31:11 AM PDT Build Host : kbuilder.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gnu.org/software/grub/ Summary : grub2 common layout Description : This package provides some directories which are required by various grub2 subpackages. Name : bind-license Epoch : 32 Version : 9.11.4 Release : 9.P2.el7 Architecture: noarch Install Date: Wed 16 Oct 2019 09:21:17 AM PDT Group : Unspecified Size : 29711 License : MPLv2.0 Signature : RSA/SHA256, Thu 22 Aug 2019 02:56:52 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : bind-9.11.4-9.P2.el7.src.rpm Build Date : Thu 08 Aug 2019 05:20:30 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.isc.org/products/BIND/ Summary : License of the BIND DNS suite Description : Contains license of the BIND DNS suite. Name : bash Version : 4.2.46 Release : 33.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:18 AM PDT Group : System Environment/Shells Size : 3667788 License : GPLv3+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:20:37 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : bash-4.2.46-33.el7.src.rpm Build Date : Thu 08 Aug 2019 05:09:21 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gnu.org/software/bash Summary : The GNU Bourne Again shell Description : The GNU Bourne Again shell (Bash) is a shell or command language interpreter that is compatible with the Bourne shell (sh). Bash incorporates useful features from the Korn shell (ksh) and the C shell (csh). Most sh scripts can be run by bash without modification. Name : nspr Version : 4.21.0 Release : 1.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:26 AM PDT Group : System Environment/Libraries Size : 287576 License : MPLv2.0 Signature : RSA/SHA256, Thu 22 Aug 2019 02:36:23 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : nspr-4.21.0-1.el7.src.rpm Build Date : Thu 08 Aug 2019 06:16:40 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.mozilla.org/projects/nspr/ Summary : Netscape Portable Runtime Description : NSPR provides platform independence for non-GUI operating system facilities. These facilities include threads, thread synchronization, normal file and network I/O, interval timing and calendar time, basic memory management (malloc and free) and shared library linking. Name : polkit-pkla-compat Version : 0.1 Release : 4.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:32 AM PDT Group : Unspecified Size : 82409 License : LGPLv2+ Signature : RSA/SHA256, Thu 03 Jul 2014 09:32:08 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : polkit-pkla-compat-0.1-4.el7.src.rpm Build Date : Mon 09 Jun 2014 03:08:34 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://fedorahosted.org/polkit-pkla-compat/ Summary : Rules for polkit to add compatibility with pklocalauthority Description : A polkit JavaScript rule and associated helpers that mostly provide compatibility with the .pkla file format supported in polkit <= 0.105 for users of later polkit releases. Name : libcap Version : 2.22 Release : 10.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:27 AM PDT Group : System Environment/Libraries Size : 107365 License : LGPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:29:10 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : libcap-2.22-10.el7.src.rpm Build Date : Thu 08 Aug 2019 05:12:45 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://ftp.kernel.org/pub/linux/libs/security/linux-privs/kernel-2.6/ Summary : Library for getting and setting POSIX.1e capabilities Description : libcap is a library for getting and setting POSIX.1e (formerly POSIX 6) draft 15 capabilities. Name : libuuid Version : 2.23.2 Release : 61.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:28 AM PDT Group : Development/Libraries Size : 20278 License : BSD Signature : RSA/SHA256, Thu 22 Aug 2019 02:33:45 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : util-linux-2.23.2-61.el7.src.rpm Build Date : Thu 08 Aug 2019 08:10:20 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://en.wikipedia.org/wiki/Util-linux Summary : Universally unique ID library Description : This is the universally unique ID library, part of util-linux. The libuuid library generates and parses 128-bit universally unique id's (UUID's). A UUID is an identifier that is unique across both space and time, with respect to the space of all UUIDs. A UUID can be used for multiple purposes, from tagging objects with an extremely short lifetime, to reliably identifying very persistent objects across a network. See also the "uuid" package, which is a separate implementation. Name : os-prober Version : 1.58 Release : 9.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:33 AM PDT Group : System Environment/Base Size : 97946 License : GPLv2+ and GPL+ Signature : RSA/SHA256, Sun 20 Nov 2016 11:50:19 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : os-prober-1.58-9.el7.src.rpm Build Date : Sat 05 Nov 2016 08:30:02 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://kitenet.net/~joey/code/os-prober/ Summary : Probes disks on the system for installed operating systems Description : This package detects other OSes available on a system and outputs the results in a generic machine-readable format. Support for new OSes and Linux distributions can be added easily. Name : shadow-utils Epoch : 2 Version : 4.6 Release : 5.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:29 AM PDT Group : System Environment/Base Size : 3887289 License : BSD and GPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:43:30 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : shadow-utils-4.6-5.el7.src.rpm Build Date : Thu 08 Aug 2019 07:51:03 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://pkg-shadow.alioth.debian.org/ Summary : Utilities for managing accounts and shadow password files Description : The shadow-utils package includes the necessary programs for converting UNIX password files to the shadow password format, plus programs for managing user and group accounts. The pwconv command converts passwords to the shadow password format. The pwunconv command unconverts shadow passwords and generates a passwd file (a standard UNIX password file). The pwck command checks the integrity of password and shadow files. The lastlog command prints out the last login times for all users. The useradd, userdel, and usermod commands are used for managing user accounts. The groupadd, groupdel, and groupmod commands are used for managing group accounts. Name : crontabs Version : 1.11 Release : 6.20121102git.el7 Architecture: noarch Install Date: Thu 15 Aug 2019 10:53:33 AM PDT Group : System Environment/Base Size : 3700 License : Public Domain and GPLv2 Signature : RSA/SHA256, Thu 03 Jul 2014 06:02:43 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : crontabs-1.11-6.20121102git.el7.src.rpm Build Date : Mon 09 Jun 2014 03:14:31 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://fedorahosted.org/crontabs Summary : Root crontab files used to schedule the execution of programs Description : This package is used by Fedora mainly for executing files by cron. The crontabs package contains root crontab files and directories. You will need to install cron daemon to run the jobs from the crontabs. The cron daemon such as cronie or fcron checks the crontab files to see when particular commands are scheduled to be executed. If commands are scheduled, it executes them. Crontabs handles a basic system function, so it should be installed on your system. Name : diffutils Version : 3.3 Release : 5.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:32 AM PDT Group : Applications/Text Size : 1065607 License : GPLv3+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:22:21 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : diffutils-3.3-5.el7.src.rpm Build Date : Thu 08 Aug 2019 04:11:40 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gnu.org/software/diffutils/diffutils.html Summary : A GNU collection of diff utilities Description : Diffutils includes four utilities: diff, cmp, diff3 and sdiff. Diff compares two files and shows the differences, line by line. The cmp command shows the offset and line numbers where two files differ, or cmp can show the characters that differ between the two files. The diff3 command shows the differences between three files. Diff3 can be used when two people have made independent changes to a common original; diff3 can produce a merged file that contains both sets of changes and warnings about conflicts. The sdiff command can be used to merge two files interactively. Install diffutils if you need to compare text files. Name : nss-pem Version : 1.0.3 Release : 7.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:33 AM PDT Group : Unspecified Size : 205531 License : MPLv1.1 Signature : RSA/SHA256, Thu 22 Aug 2019 02:36:27 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : nss-pem-1.0.3-7.el7.src.rpm Build Date : Thu 08 Aug 2019 06:16:30 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://github.com/kdudka/nss-pem Summary : PEM file reader for Network Security Services (NSS) Description : PEM file reader for Network Security Services (NSS), implemented as a PKCS#11 module. Name : iptables Version : 1.4.21 Release : 33.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:34 AM PDT Group : System Environment/Base Size : 1555528 License : GPLv2 Signature : RSA/SHA256, Thu 22 Aug 2019 02:26:19 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : iptables-1.4.21-33.el7.src.rpm Build Date : Thu 08 Aug 2019 04:42:19 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.netfilter.org/ Summary : Tools for managing Linux kernel packet filtering capabilities Description : The iptables utility controls the network packet filtering code in the Linux kernel. If you need to set up firewalls and/or IP masquerading, you should install this package. Name : device-mapper-persistent-data Version : 0.8.5 Release : 1.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:35 AM PDT Group : System Environment/Base Size : 1344378 License : GPLv3+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:22:15 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : device-mapper-persistent-data-0.8.5-1.el7.src.rpm Build Date : Thu 08 Aug 2019 04:09:02 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://github.com/jthornber/thin-provisioning-tools Summary : Device-mapper Persistent Data Tools Description : thin-provisioning-tools contains check,dump,restore,repair,rmap and metadata_size tools to manage device-mapper thin provisioning target metadata devices; cache check,dump,metadata_size,restore and repair tools to manage device-mapper cache metadata devices are included and era check, dump, restore and invalidate to manage snapshot eras Name : ebtables Version : 2.0.10 Release : 16.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:36 AM PDT Group : System Environment/Base Size : 350763 License : GPLv2+ Signature : RSA/SHA256, Wed 25 Apr 2018 03:57:57 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : ebtables-2.0.10-16.el7.src.rpm Build Date : Tue 10 Apr 2018 07:44:57 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://ebtables.sourceforge.net/ Summary : Ethernet Bridge frame table administration tool Description : Ethernet bridge tables is a firewalling tool to transparently filter network traffic passing a bridge. The filtering possibilities are limited to link layer filtering and some basic filtering on higher network layers. This tool is the userspace control for the bridge and ebtables kernel components. The ebtables tool can be used together with the other Linux filtering tools, like iptables. There are no known incompatibility issues. Name : python-linux-procfs Version : 0.4.11 Release : 4.el7 Architecture: noarch Install Date: Wed 16 Oct 2019 09:21:36 AM PDT Group : System Environment/Libraries Size : 96890 License : GPLv2 Signature : RSA/SHA256, Thu 22 Aug 2019 03:00:02 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : python-linux-procfs-0.4.11-4.el7.src.rpm Build Date : Thu 08 Aug 2019 07:08:25 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://git.kernel.org/pub/scm/libs/python/python-linux-procfs/python-linux-procfs.git Summary : Linux /proc abstraction classes Description : Abstractions to extract information from the Linux kernel /proc files. Name : grubby Version : 8.28 Release : 26.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:37 AM PDT Group : System Environment/Base Size : 131502 License : GPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:25:19 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : grubby-8.28-26.el7.src.rpm Build Date : Thu 08 Aug 2019 04:41:34 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://git.fedorahosted.org/git/grubby.git Summary : Command line tool for updating bootloader configs Description : grubby is a command line tool for updating and displaying information about the configuration files for the grub, lilo, elilo (ia64), yaboot (powerpc) and zipl (s390) boot loaders. It is primarily designed to be used from scripts which install new kernels and need to find information about the current boot environment. Name : libcurl Version : 7.29.0 Release : 54.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:39 AM PDT Group : Development/Libraries Size : 439320 License : MIT Signature : RSA/SHA256, Thu 22 Aug 2019 02:29:16 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : curl-7.29.0-54.el7.src.rpm Build Date : Thu 08 Aug 2019 05:02:11 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://curl.haxx.se/ Summary : A library for getting files from web servers Description : libcurl is a free and easy-to-use client-side URL transfer library, supporting FTP, FTPS, HTTP, HTTPS, SCP, SFTP, TFTP, TELNET, DICT, LDAP, LDAPS, FILE, IMAP, SMTP, POP3 and RTSP. libcurl supports SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload, proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate, Kerberos4), file transfer resume, http proxy tunneling and more. Name : rpm Version : 4.11.3 Release : 40.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:40 AM PDT Group : System Environment/Base Size : 2622933 License : GPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:42:32 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : rpm-4.11.3-40.el7.src.rpm Build Date : Tue 06 Aug 2019 03:50:54 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.rpm.org/ Summary : The RPM package management system Description : The RPM Package Manager (RPM) is a powerful command line driven package management system capable of installing, uninstalling, verifying, querying, and updating software packages. Each software package consists of an archive of files along with information about the package like its version, a description, etc. Name : yum-plugin-fastestmirror Version : 1.1.31 Release : 52.el7 Architecture: noarch Install Date: Wed 16 Oct 2019 09:21:40 AM PDT Group : System Environment/Base Size : 53895 License : GPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 03:02:01 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : yum-utils-1.1.31-52.el7.src.rpm Build Date : Thu 08 Aug 2019 08:26:47 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://yum.baseurl.org/download/yum-utils/ Summary : Yum plugin which chooses fastest repository from a mirrorlist Description : This plugin sorts each repository's mirrorlist by connection speed prior to downloading packages. Name : oci-umount Epoch : 2 Version : 2.5 Release : 3.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:41 AM PDT Group : Applications/Text Size : 67399 License : GPLv3+ Signature : RSA/SHA256, Mon 16 Sep 2019 05:33:35 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : oci-umount-2.5-3.el7.src.rpm Build Date : Sun 15 Sep 2019 07:05:17 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://github.com/containers/oci-umount Summary : OCI umount hook for docker Description : OCI umount hooks umount potential leaked mount points in a containers mount name-spaces Name : kbd Version : 1.15.5 Release : 15.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:46 AM PDT Group : System Environment/Base Size : 1383499 License : GPLv2+ Signature : RSA/SHA256, Mon 12 Nov 2018 06:30:42 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : kbd-1.15.5-15.el7.src.rpm Build Date : Tue 30 Oct 2018 03:40:00 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://ftp.altlinux.org/pub/people/legion/kbd Summary : Tools for configuring the console (keyboard, virtual terminals, etc.) Description : The kbd package contains tools for managing a Linux system's console's behavior, including the keyboard, the screen fonts, the virtual terminals and font files. Name : libteam Version : 1.27 Release : 9.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:41 AM PDT Group : System Environment/Libraries Size : 100748 License : LGPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:33:33 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : libteam-1.27-9.el7.src.rpm Build Date : Thu 08 Aug 2019 05:33:37 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.libteam.org Summary : Library for controlling team network device Description : This package contains a library which is a user-space counterpart for team network driver. It provides an API to control team network devices. Name : ncurses Version : 5.9 Release : 14.20130511.el7_4 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:08 AM PDT Group : System Environment/Base Size : 439378 License : MIT Signature : RSA/SHA256, Thu 07 Sep 2017 05:43:11 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : ncurses-5.9-14.20130511.el7_4.src.rpm Build Date : Wed 06 Sep 2017 03:08:29 PM PDT Build Host : c1bm.rdu2.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://invisible-island.net/ncurses/ncurses.html Summary : Ncurses support utilities Description : The curses library routines are a terminal-independent method of updating character screens with reasonable optimization. The ncurses (new curses) library is a freely distributable replacement for the discontinued 4.4 BSD classic curses library. This package contains support utilities, including a terminfo compiler tic, a decompiler infocmp, clear, tput, tset, and a termcap conversion tool captoinfo. Name : filesystem Version : 3.2 Release : 25.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:12 AM PDT Group : System Environment/Base Size : 0 License : Public Domain Signature : RSA/SHA256, Wed 25 Apr 2018 03:59:36 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : filesystem-3.2-25.el7.src.rpm Build Date : Tue 10 Apr 2018 10:00:29 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://pagure.io/filesystem Summary : The basic directory layout for a Linux system Description : The filesystem package is one of the basic packages that is installed on a Linux system. Filesystem contains the basic directory layout for a Linux operating system, including the correct permissions for the directories. Name : info Version : 5.1 Release : 5.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:16 AM PDT Group : System Environment/Base Size : 494630 License : GPLv3+ Signature : RSA/SHA256, Wed 25 Apr 2018 04:05:32 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : texinfo-5.1-5.el7.src.rpm Build Date : Tue 10 Apr 2018 06:03:36 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gnu.org/software/texinfo/ Summary : A stand-alone TTY-based reader for GNU texinfo documentation Description : The GNU project uses the texinfo file format for much of its documentation. The info package provides a standalone TTY-based browser program for viewing texinfo files. Name : btrfs-progs Version : 4.9.1 Release : 1.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:57 AM PDT Group : System Environment/Base Size : 4142307 License : GPLv2 Signature : RSA/SHA256, Thu 10 Aug 2017 08:15:01 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : btrfs-progs-4.9.1-1.el7.src.rpm Build Date : Sun 06 Aug 2017 09:32:37 AM PDT Build Host : c1bm.rdu2.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://btrfs.wiki.kernel.org/index.php/Main_Page Summary : Userspace programs for btrfs Description : The btrfs-progs package provides all the userspace programs needed to create, check, modify and correct any inconsistencies in the btrfs filesystem. Name : libsepol Version : 2.5 Release : 10.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:16 AM PDT Group : System Environment/Libraries Size : 686640 License : LGPLv2+ Signature : RSA/SHA256, Mon 12 Nov 2018 06:37:35 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : libsepol-2.5-10.el7.src.rpm Build Date : Tue 30 Oct 2018 02:36:15 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://github.com/SELinuxProject/selinux/wiki Summary : SELinux binary policy manipulation library Description : Security-enhanced Linux is a feature of the Linux® kernel and a number of utilities with enhanced security functionality designed to add mandatory access controls to Linux. The Security-enhanced Linux kernel contains new architectural components originally developed to improve the security of the Flask operating system. These architectural components provide general support for the enforcement of many kinds of mandatory access control policies, including those based on the concepts of Type Enforcement®, Role-based Access Control, and Multi-level Security. libsepol provides an API for the manipulation of SELinux binary policies. It is used by checkpolicy (the policy compiler) and similar tools, as well as by programs like load_policy that need to perform specific transformations on binary policies such as customizing policy boolean settings. Name : libsysfs Version : 2.1.0 Release : 16.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:57 AM PDT Group : System Environment/Libraries Size : 149365 License : LGPLv2+ Signature : RSA/SHA256, Thu 03 Jul 2014 08:20:01 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : sysfsutils-2.1.0-16.el7.src.rpm Build Date : Mon 09 Jun 2014 05:06:19 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://sourceforge.net/projects/linux-diag/ Summary : Shared library for interfacing with sysfs Description : Library used in handling linux kernel sysfs mounts and their various files. Name : libattr Version : 2.4.46 Release : 13.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:16 AM PDT Group : System Environment/Libraries Size : 19896 License : LGPLv2+ Signature : RSA/SHA256, Wed 25 Apr 2018 04:11:11 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : attr-2.4.46-13.el7.src.rpm Build Date : Tue 10 Apr 2018 05:40:44 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://acl.bestbits.at/ Summary : Dynamic library for extended attribute support Description : This package contains the libattr.so dynamic library which contains the extended attribute system calls and library functions. Name : rootfiles Version : 8.1 Release : 11.el7 Architecture: noarch Install Date: Thu 15 Aug 2019 10:53:57 AM PDT Group : System Environment/Base Size : 599 License : Public Domain Signature : RSA/SHA256, Thu 03 Jul 2014 09:50:28 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : rootfiles-8.1-11.el7.src.rpm Build Date : Mon 09 Jun 2014 01:11:33 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS Summary : The basic required files for the root user's directory Description : The rootfiles package contains basic required files that are placed in the root user's account. These files are basically the same as those in /etc/skel, which are placed in regular users' home directories. Name : libselinux Version : 2.5 Release : 14.1.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:16 AM PDT Group : System Environment/Libraries Size : 217874 License : Public Domain Signature : RSA/SHA256, Mon 12 Nov 2018 06:37:27 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : libselinux-2.5-14.1.el7.src.rpm Build Date : Tue 30 Oct 2018 02:43:06 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://github.com/SELinuxProject/selinux/wiki Summary : SELinux library and simple utilities Description : Security-enhanced Linux is a feature of the Linux® kernel and a number of utilities with enhanced security functionality designed to add mandatory access controls to Linux. The Security-enhanced Linux kernel contains new architectural components originally developed to improve the security of the Flask operating system. These architectural components provide general support for the enforcement of many kinds of mandatory access control policies, including those based on the concepts of Type Enforcement®, Role-based Access Control, and Multi-level Security. libselinux provides an API for SELinux applications to get and set process and file security contexts and to obtain security policy decisions. Required for any applications that use the SELinux API. Name : grep Version : 2.20 Release : 3.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:16 AM PDT Group : Applications/Text Size : 1195131 License : GPLv3+ Signature : RSA/SHA256, Thu 10 Aug 2017 09:26:26 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : grep-2.20-3.el7.src.rpm Build Date : Wed 02 Aug 2017 11:58:44 PM PDT Build Host : c1bm.rdu2.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gnu.org/software/grep/ Summary : Pattern matching utilities Description : The GNU versions of commonly used grep utilities. Grep searches through textual input for lines which contain a match to a specified pattern and then prints the matching lines. GNU's grep utilities include grep, egrep and fgrep. GNU grep is needed by many scripts, so it shall be installed on every system. Name : keyutils-libs Version : 1.5.8 Release : 3.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:16 AM PDT Group : System Environment/Base Size : 42138 License : GPLv2+ and LGPLv2+ Signature : RSA/SHA256, Thu 03 Jul 2014 07:30:59 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : keyutils-1.5.8-3.el7.src.rpm Build Date : Mon 09 Jun 2014 07:17:55 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://people.redhat.com/~dhowells/keyutils/ Summary : Key utilities library Description : This package provides a wrapper library for the key management facility system calls. Name : libverto Version : 0.2.5 Release : 4.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:16 AM PDT Group : Unspecified Size : 23060 License : MIT Signature : RSA/SHA256, Thu 03 Jul 2014 08:23:48 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : libverto-0.2.5-4.el7.src.rpm Build Date : Tue 10 Jun 2014 12:44:21 AM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://fedorahosted.org/libverto/ Summary : Main loop abstraction library Description : libverto provides a way for libraries to expose asynchronous interfaces without having to choose a particular event loop, offloading this decision to the end application which consumes the library. If you are packaging an application, not library, based on libverto, you should depend either on a specific implementation module or you can depend on the virtual provides 'libverto-module-base'. This will ensure that you have at least one module installed that provides io, timeout and signal functionality. Currently glib is the only module that does not provide these three because it lacks signal. However, glib will support signal in the future. Name : p11-kit-trust Version : 0.23.5 Release : 3.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:16 AM PDT Group : Unspecified Size : 437261 License : BSD Signature : RSA/SHA256, Thu 10 Aug 2017 11:44:51 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : p11-kit-0.23.5-3.el7.src.rpm Build Date : Fri 04 Aug 2017 04:37:00 PM PDT Build Host : c1bm.rdu2.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://p11-glue.freedesktop.org/p11-kit.html Summary : System trust module from p11-kit Description : The p11-kit-trust package contains a system trust PKCS#11 module which contains certificate anchors and black lists. Name : ivtv-firmware Epoch : 2 Version : 20080701 Release : 26.el7 Architecture: noarch Install Date: Thu 15 Aug 2019 10:54:00 AM PDT Group : System Environment/Kernel Size : 857256 License : Redistributable, no modification permitted Signature : RSA/SHA256, Thu 03 Jul 2014 07:10:03 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : ivtv-firmware-20080701-26.el7.src.rpm Build Date : Mon 09 Jun 2014 05:06:24 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://dl.ivtvdriver.org/ivtv/firmware/ Summary : Firmware for the Hauppauge PVR 250/350/150/500/USB2 model series Description : This package contains the firmware for WinTV Hauppauge PVR 250/350/150/500/USB2 cards. Name : xz-libs Version : 5.2.2 Release : 1.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:18 AM PDT Group : System Environment/Libraries Size : 239967 License : LGPLv2+ Signature : RSA/SHA256, Sun 20 Nov 2016 01:02:51 PM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : xz-5.2.2-1.el7.src.rpm Build Date : Sat 05 Nov 2016 08:28:07 AM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://tukaani.org/xz/ Summary : Libraries for decoding LZMA compression Description : Libraries for decoding files compressed with LZMA or XZ utils. Name : gpg-pubkey Version : f4a80eb5 Release : 53a7ff4b Architecture: (none) Install Date: Thu 15 Aug 2019 12:00:08 PM PDT Group : Public Keys Size : 0 License : pubkey Signature : (none) Source RPM : (none) Build Date : Mon 23 Jun 2014 03:19:55 AM PDT Build Host : localhost Relocations : (not relocatable) Packager : CentOS-7 Key (CentOS 7 Official Signing Key) Summary : gpg(CentOS-7 Key (CentOS 7 Official Signing Key) ) Description : -----BEGIN PGP PUBLIC KEY BLOCK----- Version: rpm-4.11.3 (NSS-3) mQINBFOn/0sBEADLDyZ+DQHkcTHDQSE0a0B2iYAEXwpPvs67cJ4tmhe/iMOyVMh9 Yw/vBIF8scm6T/vPN5fopsKiW9UsAhGKg0epC6y5ed+NAUHTEa6pSOdo7CyFDwtn 4HF61Esyb4gzPT6QiSr0zvdTtgYBRZjAEPFVu3Dio0oZ5UQZ7fzdZfeixMQ8VMTQ 4y4x5vik9B+cqmGiq9AW71ixlDYVWasgR093fXiD9NLT4DTtK+KLGYNjJ8eMRqfZ Ws7g7C+9aEGHfsGZ/SxLOumx/GfiTloal0dnq8TC7XQ/JuNdB9qjoXzRF+faDUsj WuvNSQEqUXW1dzJjBvroEvgTdfCJfRpIgOrc256qvDMp1SxchMFltPlo5mbSMKu1 x1p4UkAzx543meMlRXOgx2/hnBm6H6L0FsSyDS6P224yF+30eeODD4Ju4BCyQ0jO IpUxmUnApo/m0eRelI6TRl7jK6aGqSYUNhFBuFxSPKgKYBpFhVzRM63Jsvib82rY 438q3sIOUdxZY6pvMOWRkdUVoz7WBExTdx5NtGX4kdW5QtcQHM+2kht6sBnJsvcB JYcYIwAUeA5vdRfwLKuZn6SgAUKdgeOtuf+cPR3/E68LZr784SlokiHLtQkfk98j NXm6fJjXwJvwiM2IiFyg8aUwEEDX5U+QOCA0wYrgUQ/h8iathvBJKSc9jQARAQAB tEJDZW50T1MtNyBLZXkgKENlbnRPUyA3IE9mZmljaWFsIFNpZ25pbmcgS2V5KSA8 c2VjdXJpdHlAY2VudG9zLm9yZz6JAjUEEwECAB8FAlOn/0sCGwMGCwkIBwMCBBUC CAMDFgIBAh4BAheAAAoJECTGqKf0qA61TN0P/2730Th8cM+d1pEON7n0F1YiyxqG QzwpC2Fhr2UIsXpi/lWTXIG6AlRvrajjFhw9HktYjlF4oMG032SnI0XPdmrN29lL F+ee1ANdyvtkw4mMu2yQweVxU7Ku4oATPBvWRv+6pCQPTOMe5xPG0ZPjPGNiJ0xw 4Ns+f5Q6Gqm927oHXpylUQEmuHKsCp3dK/kZaxJOXsmq6syY1gbrLj2Anq0iWWP4 Tq8WMktUrTcc+zQ2pFR7ovEihK0Rvhmk6/N4+4JwAGijfhejxwNX8T6PCuYs5Jiv hQvsI9FdIIlTP4XhFZ4N9ndnEwA4AH7tNBsmB3HEbLqUSmu2Rr8hGiT2Plc4Y9AO aliW1kOMsZFYrX39krfRk2n2NXvieQJ/lw318gSGR67uckkz2ZekbCEpj/0mnHWD 3R6V7m95R6UYqjcw++Q5CtZ2tzmxomZTf42IGIKBbSVmIS75WY+cBULUx3PcZYHD ZqAbB0Dl4MbdEH61kOI8EbN/TLl1i077r+9LXR1mOnlC3GLD03+XfY8eEBQf7137 YSMiW5r/5xwQk7xEcKlbZdmUJp3ZDTQBXT06vavvp3jlkqqH9QOE8ViZZ6aKQLqv pL+4bs52jzuGwTMT7gOR5MzD+vT0fVS7Xm8MjOxvZgbHsAgzyFGlI1ggUQmU7lu3 uPNL0eRx4S1G4Jn5 =OGYX -----END PGP PUBLIC KEY BLOCK----- Name : oci-systemd-hook Epoch : 1 Version : 0.2.0 Release : 1.git05e6923.el7_6 Architecture: x86_64 Install Date: Thu 15 Aug 2019 12:00:19 PM PDT Group : Applications/Text Size : 72608 License : GPLv3+ Signature : RSA/SHA256, Tue 18 Jun 2019 11:59:33 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : oci-systemd-hook-0.2.0-1.git05e6923.el7_6.src.rpm Build Date : Thu 13 Jun 2019 09:12:26 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://github.com/projectatomic/oci-systemd-hook Summary : OCI systemd hook for docker Description : OCI systemd hooks enable running systemd in a OCI runc/docker container. Name : python-ipaddress Version : 1.0.16 Release : 2.el7 Architecture: noarch Install Date: Thu 15 Aug 2019 12:00:19 PM PDT Group : Unspecified Size : 232357 License : Python Signature : RSA/SHA256, Sun 20 Nov 2016 12:15:58 PM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : python-ipaddress-1.0.16-2.el7.src.rpm Build Date : Sat 05 Nov 2016 09:37:10 AM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://pypi.python.org/pypi/ipaddress/1.0.16 Summary : Port of the python 3.3+ ipaddress module to 2.6+ Description : ipaddress provides the capabilities to create, manipulate and operate on IPv4 and IPv6 addresses and networks. The functions and classes in this module make it straightforward to handle various tasks related to IP addresses, including checking whether or not two hosts are on the same subnet, iterating over all hosts in a particular subnet, checking whether or not a string represents a valid IP address or network definition, and so on. Name : libgpg-error Version : 1.12 Release : 3.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:18 AM PDT Group : System Environment/Libraries Size : 350865 License : LGPLv2+ Signature : RSA/SHA256, Thu 03 Jul 2014 07:49:22 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : libgpg-error-1.12-3.el7.src.rpm Build Date : Tue 10 Jun 2014 01:46:48 AM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : ftp://ftp.gnupg.org/gcrypt/libgpg-error/ Summary : Library for error values used by GnuPG components Description : This is a library that defines common error values for all GnuPG components. Among these are GPG, GPGSM, GPGME, GPG-Agent, libgcrypt, pinentry, SmartCard Daemon and possibly more in the future. Name : libyaml Version : 0.1.4 Release : 11.el7_0 Architecture: x86_64 Install Date: Thu 15 Aug 2019 12:00:19 PM PDT Group : System Environment/Libraries Size : 132993 License : MIT Signature : RSA/SHA256, Thu 29 Jan 2015 03:55:31 PM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : libyaml-0.1.4-11.el7_0.src.rpm Build Date : Thu 29 Jan 2015 03:44:10 PM PST Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://pyyaml.org/ Summary : YAML 1.1 parser and emitter written in C Description : YAML is a data serialization format designed for human readability and interaction with scripting languages. LibYAML is a YAML parser and emitter written in C. Name : gzip Version : 1.5 Release : 10.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:18 AM PDT Group : Applications/File Size : 250440 License : GPLv3+ and GFDL Signature : RSA/SHA256, Wed 25 Apr 2018 04:04:30 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : gzip-1.5-10.el7.src.rpm Build Date : Tue 10 Apr 2018 05:01:18 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gzip.org/ Summary : The GNU data compression program Description : The gzip package contains the popular GNU gzip data compression program. Gzipped files have a .gz extension. Gzip should be installed on your system, because it is a very commonly used data compression program. Name : python-backports-ssl_match_hostname Version : 3.5.0.1 Release : 1.el7 Architecture: noarch Install Date: Thu 15 Aug 2019 12:00:19 PM PDT Group : Unspecified Size : 18824 License : Python Signature : RSA/SHA256, Wed 25 Apr 2018 04:38:25 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : python-backports-ssl_match_hostname-3.5.0.1-1.el7.src.rpm Build Date : Tue 10 Apr 2018 07:25:31 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://bitbucket.org/brandon/backports.ssl_match_hostname Summary : The ssl.match_hostname() function from Python 3 Description : The Secure Sockets layer is only actually secure if you check the hostname in the certificate returned by the server to which you are connecting, and verify that it matches to hostname that you are trying to reach. But the matching logic, defined in RFC2818, can be a bit tricky to implement on your own. So the ssl package in the Standard Library of Python 3.2 now includes a match_hostname() function for performing this check instead of requiring every application to implement the check separately. This backport brings match_hostname() to users of earlier versions of Python. The actual code is only slightly modified from Python 3.5. Name : expat Version : 2.1.0 Release : 10.el7_3 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:18 AM PDT Group : System Environment/Libraries Size : 208315 License : MIT Signature : RSA/SHA256, Mon 28 Nov 2016 02:32:05 PM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : expat-2.1.0-10.el7_3.src.rpm Build Date : Mon 28 Nov 2016 02:27:00 PM PST Build Host : c1bm.rdu2.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.libexpat.org/ Summary : An XML parser library Description : This is expat, the C library for parsing XML, written by James Clark. Expat is a stream oriented XML parser. This means that you register handlers with the parser prior to starting the parse. These handlers are called when the parser discovers the associated structures in the document being parsed. A start tag is an example of the kind of structures for which you may register handlers. Name : checkpolicy Version : 2.5 Release : 8.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 12:00:20 PM PDT Group : Development/System Size : 1288327 License : GPLv2 Signature : RSA/SHA256, Mon 12 Nov 2018 06:22:21 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : checkpolicy-2.5-8.el7.src.rpm Build Date : Tue 30 Oct 2018 02:48:39 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS Summary : SELinux policy compiler Description : Security-enhanced Linux is a feature of the Linux® kernel and a number of utilities with enhanced security functionality designed to add mandatory access controls to Linux. The Security-enhanced Linux kernel contains new architectural components originally developed to improve the security of the Flask operating system. These architectural components provide general support for the enforcement of many kinds of mandatory access control policies, including those based on the concepts of Type Enforcement®, Role-based Access Control, and Multi-level Security. This package contains checkpolicy, the SELinux policy compiler. Only required for building policies. Name : findutils Epoch : 1 Version : 4.5.11 Release : 6.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:18 AM PDT Group : Applications/File Size : 1855882 License : GPLv3+ Signature : RSA/SHA256, Mon 12 Nov 2018 06:25:15 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : findutils-4.5.11-6.el7.src.rpm Build Date : Tue 30 Oct 2018 09:43:54 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gnu.org/software/findutils/ Summary : The GNU versions of find utilities (find and xargs) Description : The findutils package contains programs which will help you locate files on your system. The find utility searches through a hierarchy of directories looking for files which match a certain set of criteria (such as a file name pattern). The xargs utility builds and executes command lines from standard input arguments (usually lists of file names generated by the find command). You should install findutils because it includes tools that are very useful for finding things on your system. Name : libsemanage-python Version : 2.5 Release : 14.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 12:00:20 PM PDT Group : Development/Libraries Size : 451817 License : LGPLv2+ Signature : RSA/SHA256, Mon 12 Nov 2018 06:37:33 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : libsemanage-2.5-14.el7.src.rpm Build Date : Tue 30 Oct 2018 04:44:33 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://github.com/SELinuxProject/selinux/wiki Summary : semanage python bindings for libsemanage Description : The libsemanage-python package contains the python bindings for developing SELinux management applications. Name : python-pytoml Version : 0.1.14 Release : 1.git7dea353.el7 Architecture: noarch Install Date: Thu 15 Aug 2019 12:00:20 PM PDT Group : Unspecified Size : 37995 License : MIT Signature : RSA/SHA256, Tue 28 Nov 2017 01:46:33 PM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : python-pytoml-0.1.14-1.git7dea353.el7.src.rpm Build Date : Tue 28 Nov 2017 01:35:01 PM PST Build Host : c1bm.rdu2.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://github.com/avakar/pytoml Summary : Parser for TOML Description : A parser for TOML-0.4.0 Name : cracklib Version : 2.9.0 Release : 11.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:19 AM PDT Group : System Environment/Libraries Size : 209610 License : LGPLv2+ Signature : RSA/SHA256, Thu 03 Jul 2014 06:02:11 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : cracklib-2.9.0-11.el7.src.rpm Build Date : Mon 09 Jun 2014 10:42:13 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://sourceforge.net/projects/cracklib/ Summary : A password-checking library Description : CrackLib tests passwords to determine whether they match certain security-oriented characteristics, with the purpose of stopping users from choosing passwords that are easy to guess. CrackLib performs several tests on passwords: it tries to generate words from a username and gecos entry and checks those words against the password; it checks for simplistic patterns in passwords; and it checks for the password in a dictionary. CrackLib is actually a library containing a particular C function which is used to check the password, as well as other C functions. CrackLib is not a replacement for a passwd program; it must be used in conjunction with an existing passwd program. Install the cracklib package if you need a program to check users' passwords to see if they are at least minimally secure. If you install CrackLib, you will also want to install the cracklib-dicts package. Name : python-IPy Version : 0.75 Release : 6.el7 Architecture: noarch Install Date: Thu 15 Aug 2019 12:00:20 PM PDT Group : System Environment/Libraries Size : 121946 License : BSD Signature : RSA/SHA256, Thu 03 Jul 2014 09:39:22 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : python-IPy-0.75-6.el7.src.rpm Build Date : Tue 10 Jun 2014 12:18:29 AM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://github.com/haypo/python-ipy Summary : Python module for handling IPv4 and IPv6 Addresses and Networks Description : IPy is a Python module for handling IPv4 and IPv6 Addresses and Networks in a fashion similar to perl's Net::IP and friends. The IP class allows a comfortable parsing and handling for most notations in use for IPv4 and IPv6 Addresses and Networks. Name : shared-mime-info Version : 1.8 Release : 4.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:19 AM PDT Group : System Environment/Base Size : 2379317 License : GPLv2+ Signature : RSA/SHA256, Wed 25 Apr 2018 04:46:39 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : shared-mime-info-1.8-4.el7.src.rpm Build Date : Tue 10 Apr 2018 05:37:03 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://freedesktop.org/Software/shared-mime-info Summary : Shared MIME information database Description : This is the freedesktop.org shared MIME info database. Many programs and desktops use the MIME system to represent the types of files. Frequently, it is necessary to work out the correct MIME type for a file. This is generally done by examining the file's name or contents, and looking up the correct MIME type in a database. Name : file Version : 5.11 Release : 35.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:19 AM PDT Group : Applications/File Size : 67448 License : BSD Signature : RSA/SHA256, Mon 12 Nov 2018 06:25:08 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : file-5.11-35.el7.src.rpm Build Date : Tue 30 Oct 2018 11:16:23 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.darwinsys.com/file/ Summary : A utility for determining file types Description : The file command is used to identify a particular file according to the type of data contained by the file. File can identify many different file types, including ELF binaries, system libraries, RPM packages, and different graphics formats. Name : libaio Version : 0.3.109 Release : 13.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:19 AM PDT Group : System Environment/Libraries Size : 39182 License : LGPLv2+ Signature : RSA/SHA256, Wed 25 Nov 2015 06:50:55 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : libaio-0.3.109-13.el7.src.rpm Build Date : Thu 19 Nov 2015 10:37:04 PM PST Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS Summary : Linux-native asynchronous I/O access library Description : The Linux-native asynchronous I/O facility ("async I/O", or "aio") has a richer API and capability set than the simple POSIX async I/O facility. This library, libaio, provides the Linux-native API for async I/O. The POSIX async I/O facility requires this library in order to provide kernel-accelerated async I/O capabilities, as do applications which require the Linux-native async I/O API. Name : cracklib-dicts Version : 2.9.0 Release : 11.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:20 AM PDT Group : System Environment/Libraries Size : 9389116 License : LGPLv2+ Signature : RSA/SHA256, Thu 03 Jul 2014 06:02:17 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : cracklib-2.9.0-11.el7.src.rpm Build Date : Mon 09 Jun 2014 10:42:13 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://sourceforge.net/projects/cracklib/ Summary : The standard CrackLib dictionaries Description : The cracklib-dicts package includes the CrackLib dictionaries. CrackLib will need to use the dictionary appropriate to your system, which is normally put in /usr/share/dict/words. Cracklib-dicts also contains the utilities necessary for the creation of new dictionaries. If you are installing CrackLib, you should also install cracklib-dicts. Name : libpwquality Version : 1.2.3 Release : 5.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:20 AM PDT Group : System Environment/Base Size : 332421 License : BSD or GPLv2+ Signature : RSA/SHA256, Wed 25 Apr 2018 04:17:46 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : libpwquality-1.2.3-5.el7.src.rpm Build Date : Tue 10 Apr 2018 08:58:19 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://github.com/libpwquality/libpwquality/ Summary : A library for password generation and password quality checking Description : This is a library for password quality checks and generation of random passwords that pass the checks. This library uses the cracklib and cracklib dictionaries to perform some of the checks. Name : libassuan Version : 2.1.0 Release : 3.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:20 AM PDT Group : System Environment/Libraries Size : 155391 License : LGPLv2+ and GPLv3+ Signature : RSA/SHA256, Thu 03 Jul 2014 07:35:59 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : libassuan-2.1.0-3.el7.src.rpm Build Date : Mon 09 Jun 2014 12:14:00 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gnupg.org/ Summary : GnuPG IPC library Description : This is the IPC library used by GnuPG 2, GPGME and a few other packages. Name : xz Version : 5.2.2 Release : 1.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:20 AM PDT Group : Applications/File Size : 798130 License : LGPLv2+ Signature : RSA/SHA256, Sun 20 Nov 2016 01:02:27 PM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : xz-5.2.2-1.el7.src.rpm Build Date : Sat 05 Nov 2016 08:28:07 AM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://tukaani.org/xz/ Summary : LZMA compression utilities Description : XZ Utils are an attempt to make LZMA compression easy to use on free (as in freedom) operating systems. This is achieved by providing tools and libraries which are similar to use than the equivalents of the most popular existing compression algorithms. LZMA is a general purpose compression algorithm designed by Igor Pavlov as part of 7-Zip. It provides high compression ratio while keeping the decompression speed fast. Name : libidn Version : 1.28 Release : 4.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:20 AM PDT Group : System Environment/Libraries Size : 630407 License : LGPLv2+ and GPLv3+ and GFDL Signature : RSA/SHA256, Wed 25 Nov 2015 06:58:28 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : libidn-1.28-4.el7.src.rpm Build Date : Sat 21 Nov 2015 09:00:48 AM PST Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gnu.org/software/libidn/ Summary : Internationalized Domain Name support library Description : GNU Libidn is an implementation of the Stringprep, Punycode and IDNA specifications defined by the IETF Internationalized Domain Names (IDN) working group, used for internationalized domain names. Name : sysvinit-tools Version : 2.88 Release : 14.dsf.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:21 AM PDT Group : System Environment/Base Size : 109118 License : GPLv2+ Signature : RSA/SHA256, Thu 03 Jul 2014 10:09:36 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : sysvinit-2.88-14.dsf.el7.src.rpm Build Date : Mon 09 Jun 2014 04:16:44 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://savannah.nongnu.org/projects/sysvinit/ Summary : Tools used for process and utmp management. Description : The sysvinit-tools package contains various tools used for process management. Name : tcp_wrappers-libs Version : 7.6 Release : 77.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:21 AM PDT Group : System Environment/Libraries Size : 134602 License : BSD Signature : RSA/SHA256, Thu 03 Jul 2014 10:11:07 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : tcp_wrappers-7.6-77.el7.src.rpm Build Date : Mon 09 Jun 2014 09:41:54 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : ftp://ftp.porcupine.org/pub/security/index.html Summary : Libraries for tcp_wrappers Description : tcp_wrappers-libs contains the libraries of the tcp_wrappers package. Name : newt Version : 0.52.15 Release : 4.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:21 AM PDT Group : System Environment/Libraries Size : 185196 License : LGPLv2 Signature : RSA/SHA256, Thu 03 Jul 2014 08:56:55 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : newt-0.52.15-4.el7.src.rpm Build Date : Tue 10 Jun 2014 12:48:12 AM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://fedorahosted.org/newt/ Summary : A library for text mode user interfaces Description : Newt is a programming library for color text mode, widget based user interfaces. Newt can be used to add stacked windows, entry widgets, checkboxes, radio buttons, labels, plain text fields, scrollbars, etc., to text mode user interfaces. This package also contains the shared library needed by programs built with newt, as well as a /usr/bin/dialog replacement called whiptail. Newt is based on the slang library. Name : lzo Version : 2.06 Release : 8.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:21 AM PDT Group : System Environment/Libraries Size : 165360 License : GPLv2+ Signature : RSA/SHA256, Wed 25 Nov 2015 07:15:43 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : lzo-2.06-8.el7.src.rpm Build Date : Thu 19 Nov 2015 11:26:41 PM PST Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.oberhumer.com/opensource/lzo/ Summary : Data compression library with very fast (de)compression Description : LZO is a portable lossless data compression library written in ANSI C. It offers pretty fast compression and very fast decompression. Decompression requires no memory. In addition there are slower compression levels achieving a quite competitive compression ratio while still decompressing at this very high speed. Name : bind-libs Epoch : 32 Version : 9.11.4 Release : 9.P2.el7 Architecture: x86_64 Install Date: Wed 23 Oct 2019 10:53:22 AM PDT Group : Unspecified Size : 189424 License : MPLv2.0 Signature : RSA/SHA256, Thu 22 Aug 2019 02:20:48 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : bind-9.11.4-9.P2.el7.src.rpm Build Date : Thu 08 Aug 2019 05:20:30 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.isc.org/products/BIND/ Summary : Libraries used by the BIND DNS packages Description : Contains heavyweight version of BIND suite libraries used by both named DNS server and utilities in bind-utils package. Name : dbus Epoch : 1 Version : 1.10.24 Release : 13.el7_6 Architecture: x86_64 Install Date: Thu 15 Aug 2019 12:01:17 PM PDT Group : System Environment/Libraries Size : 595216 License : (GPLv2+ or AFL) and GPLv2+ Signature : RSA/SHA256, Tue 19 Mar 2019 12:51:06 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : dbus-1.10.24-13.el7_6.src.rpm Build Date : Thu 14 Mar 2019 03:18:13 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.freedesktop.org/Software/dbus/ Summary : D-BUS message bus Description : D-BUS is a system for sending messages between applications. It is used both for the system-wide message bus service, and as a per-user-login-session messaging facility. Name : python-decorator Version : 3.4.0 Release : 3.el7 Architecture: noarch Install Date: Thu 15 Aug 2019 10:53:22 AM PDT Group : Development/Languages Size : 72291 License : BSD Signature : RSA/SHA256, Thu 03 Jul 2014 09:38:41 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : python-decorator-3.4.0-3.el7.src.rpm Build Date : Mon 09 Jun 2014 04:46:01 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://pypi.python.org/pypi/decorator/ Summary : Module to simplify usage of decorators Description : The aim of the decorator module is to simplify the usage of decorators for the average programmer, and to popularize decorators usage giving examples of useful decorators, such as memoize, tracing, redirecting_stdout, locked, etc. The core of this module is a decorator factory called decorator. Name : lm_sensors-libs Version : 3.4.0 Release : 8.20160601gitf9185e5.el7 Architecture: x86_64 Install Date: Tue 29 Oct 2019 11:35:07 PM PDT Group : System Environment/Libraries Size : 61608 License : LGPLv2+ and GPLv3+ and GPLv2+ and Verbatim and Public Domain Signature : RSA/SHA256, Thu 22 Aug 2019 02:34:45 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : lm_sensors-3.4.0-8.20160601gitf9185e5.el7.src.rpm Build Date : Thu 08 Aug 2019 05:42:14 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://github.com/groeck/lm-sensors/ Summary : Lm_sensors core libraries Description : Core libraries for lm_sensors applications Name : libnftnl Version : 1.0.8 Release : 1.el7 Architecture: x86_64 Install Date: Sun 10 Nov 2019 07:55:14 AM PST Group : Unspecified Size : 222704 License : GPLv2+ Signature : RSA/SHA256, Wed 25 Apr 2018 04:16:36 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : libnftnl-1.0.8-1.el7.src.rpm Build Date : Tue 10 Apr 2018 06:42:24 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://netfilter.org/projects/libnftnl/ Summary : Library for low-level interaction with nftables Netlink's API over libmnl Description : A library for low-level interaction with nftables Netlink's API over libmnl. Name : libselinux-python Version : 2.5 Release : 14.1.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:22 AM PDT Group : Development/Libraries Size : 603236 License : Public Domain Signature : RSA/SHA256, Mon 12 Nov 2018 06:37:29 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : libselinux-2.5-14.1.el7.src.rpm Build Date : Tue 30 Oct 2018 02:43:06 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://github.com/SELinuxProject/selinux/wiki Summary : SELinux python bindings for libselinux Description : The libselinux-python package contains the python bindings for developing SELinux applications. Name : ruby-libs Version : 2.0.0.648 Release : 36.el7 Architecture: x86_64 Install Date: Sat 16 Nov 2019 02:29:24 PM PST Group : Development/Libraries Size : 10883299 License : Ruby or BSD Signature : RSA/SHA256, Thu 22 Aug 2019 02:43:01 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : ruby-2.0.0.648-36.el7.src.rpm Build Date : Thu 08 Aug 2019 05:30:13 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://ruby-lang.org/ Summary : Libraries necessary to run Ruby Description : This package includes the libruby, necessary to run Ruby. Name : yum-metadata-parser Version : 1.1.4 Release : 10.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:23 AM PDT Group : Development/Libraries Size : 58789 License : GPLv2 Signature : RSA/SHA256, Thu 03 Jul 2014 10:53:04 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : yum-metadata-parser-1.1.4-10.el7.src.rpm Build Date : Tue 10 Jun 2014 01:39:48 AM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://linux.duke.edu/projects/yum/ Summary : A fast metadata parser for yum Description : Fast metadata parser for yum implemented in C. Name : rubygem-json Version : 1.7.7 Release : 36.el7 Architecture: x86_64 Install Date: Sat 16 Nov 2019 02:29:24 PM PST Group : Development/Libraries Size : 94878 License : Ruby or GPLv2 Signature : RSA/SHA256, Thu 22 Aug 2019 02:42:58 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : ruby-2.0.0.648-36.el7.src.rpm Build Date : Thu 08 Aug 2019 05:30:13 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://ruby-lang.org/ Summary : This is a JSON implementation as a Ruby extension in C Description : This is a implementation of the JSON specification according to RFC 4627. You can think of it as a low fat alternative to XML, if you want to store data to disk or transmit it over a network rather than use a verbose markup language. Name : pyliblzma Version : 0.5.3 Release : 11.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:23 AM PDT Group : Unspecified Size : 190112 License : LGPLv3+ Signature : RSA/SHA256, Thu 03 Jul 2014 09:37:13 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : pyliblzma-0.5.3-11.el7.src.rpm Build Date : Mon 09 Jun 2014 10:20:49 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://launchpad.net/pyliblzma Summary : Python bindings for lzma Description : PylibLZMA provides a python interface for the liblzma library to read and write data that has been compressed or can be decompressed by Lasse Collin's lzma utils. Name : rubygem-rdoc Version : 4.0.0 Release : 36.el7 Architecture: noarch Install Date: Sat 16 Nov 2019 02:29:25 PM PST Group : Development/Libraries Size : 1271686 License : GPLv2 and Ruby and MIT Signature : RSA/SHA256, Thu 22 Aug 2019 03:00:51 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : ruby-2.0.0.648-36.el7.src.rpm Build Date : Thu 08 Aug 2019 05:30:13 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://ruby-lang.org/ Summary : A tool to generate HTML and command-line documentation for Ruby projects Description : RDoc produces HTML and command-line documentation for Ruby projects. RDoc includes the 'rdoc' and 'ri' tools for generating and displaying online documentation. Name : python-schedutils Version : 0.4 Release : 6.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:23 AM PDT Group : System Environment/Libraries Size : 43123 License : GPLv2 Signature : RSA/SHA256, Sun 20 Nov 2016 12:17:26 PM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : python-schedutils-0.4-6.el7.src.rpm Build Date : Sat 05 Nov 2016 02:51:47 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://git.kernel.org/?p=linux/kernel/git/acme/python-schedutils.git Summary : Linux scheduler python bindings Description : Python interface for the Linux scheduler sched_{get,set}{affinity,scheduler} functions and friends. Name : ruby Version : 2.0.0.648 Release : 36.el7 Architecture: x86_64 Install Date: Sat 16 Nov 2019 02:29:25 PM PST Group : Development/Languages Size : 64795 License : (Ruby or BSD) and Public Domain Signature : RSA/SHA256, Thu 22 Aug 2019 02:42:54 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : ruby-2.0.0.648-36.el7.src.rpm Build Date : Thu 08 Aug 2019 05:30:13 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://ruby-lang.org/ Summary : An interpreter of object-oriented scripting language Description : Ruby is the interpreted scripting language for quick and easy object-oriented programming. It has many features to process text files and to do system management tasks (as in Perl). It is simple, straight-forward, and extensible. Name : rubygems Version : 2.0.14.1 Release : 36.el7 Architecture: noarch Install Date: Sat 16 Nov 2019 02:29:25 PM PST Group : Development/Libraries Size : 600230 License : Ruby or MIT Signature : RSA/SHA256, Thu 22 Aug 2019 03:00:52 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : ruby-2.0.0.648-36.el7.src.rpm Build Date : Thu 08 Aug 2019 05:30:13 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://ruby-lang.org/ Summary : The Ruby standard for packaging ruby libraries Description : RubyGems is the Ruby standard for publishing and managing third party libraries. Name : pyxattr Version : 0.5.1 Release : 5.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:23 AM PDT Group : Development/Libraries Size : 63304 License : LGPLv2+ Signature : RSA/SHA256, Thu 03 Jul 2014 09:43:07 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : pyxattr-0.5.1-5.el7.src.rpm Build Date : Mon 09 Jun 2014 03:24:57 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://pyxattr.sourceforge.net/ Summary : Extended attributes library wrapper for Python Description : Python extension module wrapper for libattr. It allows to query, list, add and remove extended attributes from files and directories. Name : autogen-libopts Version : 5.18 Release : 5.el7 Architecture: x86_64 Install Date: Tue 03 Mar 2020 06:02:09 PM PST Group : System Environment/Libraries Size : 145381 License : LGPLv3+ Signature : RSA/SHA256, Thu 03 Jul 2014 05:44:16 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : autogen-5.18-5.el7.src.rpm Build Date : Mon 09 Jun 2014 08:19:30 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gnu.org/software/autogen/ Summary : Automated option processing library based on autogen Description : Libopts is very powerful command line option parser consisting of a set of AutoGen templates and a run time library that nearly eliminates the hassle of parsing and documenting command line options. Name : ntp Version : 4.2.6p5 Release : 29.el7.centos Architecture: x86_64 Install Date: Tue 03 Mar 2020 06:02:09 PM PST Group : System Environment/Daemons Size : 1434857 License : (MIT and BSD and BSD with advertising) and GPLv2 Signature : RSA/SHA256, Thu 22 Aug 2019 02:36:35 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : ntp-4.2.6p5-29.el7.centos.src.rpm Build Date : Thu 08 Aug 2019 04:48:12 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.ntp.org Summary : The NTP daemon and utilities Description : The Network Time Protocol (NTP) is used to synchronize a computer's time with another reference time source. This package includes ntpd (a daemon which continuously adjusts system time) and utilities used to query and configure the ntpd daemon. Perl scripts ntp-wait and ntptrace are in the ntp-perl package, ntpdate is in the ntpdate package and sntp is in the sntp package. The documentation is in the ntp-doc package. Name : gettext-libs Version : 0.19.8.1 Release : 2.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:23 AM PDT Group : System Environment/Libraries Size : 1546952 License : LGPLv2+ and GPLv3+ Signature : RSA/SHA256, Thu 10 Aug 2017 09:08:05 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : gettext-0.19.8.1-2.el7.src.rpm Build Date : Wed 02 Aug 2017 07:28:14 PM PDT Build Host : c1bm.rdu2.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gnu.org/software/gettext/ Summary : Libraries for gettext Description : This package contains libraries used internationalization support. Name : libmpc Version : 1.0.1 Release : 3.el7 Architecture: x86_64 Install Date: Wed 08 Apr 2020 05:17:22 AM PDT Group : Development/Tools Size : 113833 License : LGPLv3+ and GFDL Signature : RSA/SHA256, Thu 03 Jul 2014 07:59:41 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : libmpc-1.0.1-3.el7.src.rpm Build Date : Mon 09 Jun 2014 12:44:58 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.multiprecision.org/ Summary : C library for multiple precision complex arithmetic Description : MPC is a C library for the arithmetic of complex numbers with arbitrarily high precision and correct rounding of the result. It is built upon and follows the same principles as Mpfr. Name : less Version : 458 Release : 9.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:23 AM PDT Group : Applications/Text Size : 215376 License : GPLv3+ Signature : RSA/SHA256, Thu 30 Jul 2015 04:52:46 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : less-458-9.el7.src.rpm Build Date : Thu 30 Jul 2015 04:50:42 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.greenwoodsoftware.com/less/ Summary : A text file browser similar to more, but better Description : The less utility is a text file browser that resembles more, but has more capabilities. Less allows you to move backwards in the file as well as forwards. Since less doesn't have to read the entire input file before it starts, less starts up more quickly than text editors (for example, vi). You should install less because it is a basic utility for viewing text files, and you'll use it frequently. Name : kernel-headers Version : 3.10.0 Release : 1062.18.1.el7 Architecture: x86_64 Install Date: Wed 08 Apr 2020 05:17:24 AM PDT Group : Development/System Size : 3898858 License : GPLv2 Signature : RSA/SHA256, Wed 18 Mar 2020 09:50:23 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : kernel-3.10.0-1062.18.1.el7.src.rpm Build Date : Tue 17 Mar 2020 05:04:12 PM PDT Build Host : kbuilder.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.kernel.org/ Summary : Header files for the Linux kernel for use by glibc Description : Kernel-headers includes the C header files that specify the interface between the Linux kernel and userspace libraries and programs. The header files define structures and constants that are needed for building most standard programs and are also needed for rebuilding the glibc package. Name : glibc-devel Version : 2.17 Release : 292.el7 Architecture: x86_64 Install Date: Wed 08 Apr 2020 05:17:25 AM PDT Group : Development/Libraries Size : 1066078 License : LGPLv2+ and LGPLv2+ with exceptions and GPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:24:44 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : glibc-2.17-292.el7.src.rpm Build Date : Tue 06 Aug 2019 04:23:44 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gnu.org/software/glibc/ Summary : Object files for development using standard C libraries. Description : The glibc-devel package contains the object files necessary for developing programs which use the standard C libraries (which are used by nearly all programs). If you are developing programs which will use the standard C libraries, your system needs to have these standard object files available in order to create the executables. Install glibc-devel if you are going to develop programs which will use the standard C libraries. Name : keyutils-libs-devel Version : 1.5.8 Release : 3.el7 Architecture: x86_64 Install Date: Wed 08 Apr 2020 05:24:42 AM PDT Group : System Environment/Base Size : 29186 License : GPLv2+ and LGPLv2+ Signature : RSA/SHA256, Thu 03 Jul 2014 07:31:03 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : keyutils-1.5.8-3.el7.src.rpm Build Date : Mon 09 Jun 2014 07:17:55 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://people.redhat.com/~dhowells/keyutils/ Summary : Development package for building Linux key management utilities Description : This package provides headers and libraries for building key utilities. Name : pkgconfig Epoch : 1 Version : 0.27.1 Release : 4.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:24 AM PDT Group : Development/Tools Size : 105522 License : GPLv2+ Signature : RSA/SHA256, Thu 03 Jul 2014 09:28:33 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : pkgconfig-0.27.1-4.el7.src.rpm Build Date : Mon 09 Jun 2014 03:05:48 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://pkgconfig.freedesktop.org Summary : A tool for determining compilation options Description : The pkgconfig tool determines compilation options. For each required library, it reads the configuration file and outputs the necessary compiler and linker flags. Name : pcre-devel Version : 8.32 Release : 17.el7 Architecture: x86_64 Install Date: Wed 08 Apr 2020 05:24:42 AM PDT Group : Development/Libraries Size : 1505771 License : BSD Signature : RSA/SHA256, Thu 10 Aug 2017 12:04:40 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : pcre-8.32-17.el7.src.rpm Build Date : Tue 01 Aug 2017 08:08:12 PM PDT Build Host : c1bm.rdu2.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.pcre.org/ Summary : Development files for pcre Description : Development files (Headers, libraries for dynamic linking, etc) for pcre. Name : python-gobject-base Version : 3.22.0 Release : 1.el7_4.1 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:24 AM PDT Group : Unspecified Size : 1123114 License : LGPLv2+ and MIT Signature : RSA/SHA256, Tue 21 Nov 2017 06:17:15 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : pygobject3-3.22.0-1.el7_4.1.src.rpm Build Date : Tue 21 Nov 2017 04:44:25 AM PST Build Host : c1bm.rdu2.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://wiki.gnome.org/Projects/PyGObject Summary : Python 2 bindings for GObject Introspection base package Description : This package provides the non-cairo specific bits of the GObject Introspection library. Name : libkadm5 Version : 1.15.1 Release : 37.el7_7.2 Architecture: x86_64 Install Date: Wed 08 Apr 2020 05:24:42 AM PDT Group : System Environment/Base Size : 221000 License : MIT Signature : RSA/SHA256, Sat 14 Sep 2019 04:48:50 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : krb5-1.15.1-37.el7_7.2.src.rpm Build Date : Fri 13 Sep 2019 11:07:42 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://web.mit.edu/kerberos/www/ Summary : Kerberos 5 Administrative libraries Description : Kerberos is a network authentication system. The libkadm5 package contains the libkadm5clnt and libkadm5serv shared objects, for use ONLY by kerberos itself. Do not depend on this package. Name : zlib-devel Version : 1.2.7 Release : 18.el7 Architecture: x86_64 Install Date: Wed 08 Apr 2020 05:24:42 AM PDT Group : Development/Libraries Size : 135536 License : zlib and Boost Signature : RSA/SHA256, Mon 12 Nov 2018 06:49:54 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : zlib-1.2.7-18.el7.src.rpm Build Date : Tue 30 Oct 2018 01:24:40 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.zlib.net/ Summary : Header files and libraries for Zlib development Description : The zlib-devel package contains the header files and libraries needed to develop programs that use the zlib compression and decompression library. Name : fipscheck Version : 1.4.1 Release : 6.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:24 AM PDT Group : System Environment/Libraries Size : 38839 License : BSD Signature : RSA/SHA256, Thu 10 Aug 2017 08:53:42 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : fipscheck-1.4.1-6.el7.src.rpm Build Date : Wed 02 Aug 2017 05:47:49 AM PDT Build Host : c1bm.rdu2.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://fedorahosted.org/fipscheck/ Summary : A library for integrity verification of FIPS validated modules Description : FIPSCheck is a library for integrity verification of FIPS validated modules. The package also provides helper binaries for creation and verification of the HMAC-SHA256 checksum files. Name : krb5-devel Version : 1.15.1 Release : 37.el7_7.2 Architecture: x86_64 Install Date: Wed 08 Apr 2020 05:24:43 AM PDT Group : Development/Libraries Size : 796381 License : MIT Signature : RSA/SHA256, Sat 14 Sep 2019 04:48:30 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : krb5-1.15.1-37.el7_7.2.src.rpm Build Date : Fri 13 Sep 2019 11:07:42 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://web.mit.edu/kerberos/www/ Summary : Development files needed to compile Kerberos 5 programs Description : Kerberos is a network authentication system. The krb5-devel package contains the header files and libraries needed for compiling Kerberos 5 programs. If you want to develop Kerberos-aware programs, you need to install this package. Name : gmp-devel Epoch : 1 Version : 6.0.0 Release : 15.el7 Architecture: x86_64 Install Date: Tue 14 Apr 2020 08:10:08 AM PDT Group : Development/Libraries Size : 348562 License : LGPLv3+ or GPLv2+ Signature : RSA/SHA256, Thu 10 Aug 2017 09:14:34 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : gmp-6.0.0-15.el7.src.rpm Build Date : Wed 02 Aug 2017 06:13:15 PM PDT Build Host : c1bm.rdu2.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://gmplib.org/ Summary : Development tools for the GNU MP arbitrary precision library Description : The libraries, header files and documentation for using the GNU MP arbitrary precision library in applications. If you want to develop applications which will use the GNU MP library, you'll need to install the gmp-devel package. You'll also need to install the gmp package. Name : libmpc-devel Version : 1.0.1 Release : 3.el7 Architecture: x86_64 Install Date: Tue 14 Apr 2020 08:10:08 AM PDT Group : Development/Libraries Size : 35779 License : LGPLv3+ and GFDL Signature : RSA/SHA256, Thu 03 Jul 2014 07:59:52 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : libmpc-1.0.1-3.el7.src.rpm Build Date : Mon 09 Jun 2014 12:44:58 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.multiprecision.org/ Summary : Header and shared development libraries for MPC Description : Header files and shared object symlinks for MPC is a C library. Name : centos-release-scl-rh Version : 2 Release : 3.el7.centos Architecture: noarch Install Date: Tue 14 Apr 2020 08:41:32 AM PDT Group : Unspecified Size : 20015 License : GPLv2 Signature : RSA/SHA256, Mon 01 Apr 2019 05:41:53 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : centos-release-scl-rh-2-3.el7.centos.src.rpm Build Date : Mon 29 Oct 2018 02:15:47 AM PDT Build Host : c1bd.rdu2.centos.org Relocations : (not relocatable) Packager : CBS Vendor : CentOS URL : http://wiki.centos.org/SpecialInterestGroup/SCLo Summary : Software collections from the CentOS SCLo SIG (upstream scl only) Description : yum Configs and basic docs for Software Collections as delivered via the CentOS SCLo SIG. Name : scl-utils Version : 20130529 Release : 19.el7 Architecture: x86_64 Install Date: Tue 14 Apr 2020 08:42:05 AM PDT Group : Applications/File Size : 25141 License : GPLv2+ Signature : RSA/SHA256, Mon 12 Nov 2018 06:46:32 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : scl-utils-20130529-19.el7.src.rpm Build Date : Tue 30 Oct 2018 12:17:57 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://fedorahosted.org/released/scl-utils/ Summary : Utilities for alternative packaging Description : Run-time utility for alternative packaging. Name : python-pycurl Version : 7.19.0 Release : 19.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:25 AM PDT Group : Development/Languages Size : 241513 License : LGPLv2+ or MIT Signature : RSA/SHA256, Sun 20 Nov 2016 12:16:58 PM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : python-pycurl-7.19.0-19.el7.src.rpm Build Date : Sat 05 Nov 2016 08:10:54 AM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://pycurl.sourceforge.net/ Summary : A Python interface to libcurl Description : PycURL is a Python interface to libcurl. PycURL can be used to fetch objects identified by a URL from a Python program, similar to the urllib Python module. PycURL is mature, very fast, and supports a lot of features. Name : devtoolset-3-gcc Version : 4.9.2 Release : 6.el7 Architecture: x86_64 Install Date: Tue 14 Apr 2020 08:42:08 AM PDT Group : Development/Languages Size : 53037442 License : GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions and LGPLv2+ and BSD Signature : RSA/SHA1, Sat 28 Nov 2015 06:50:43 AM PST, Key ID 4eb84e71f2ee9d55 Source RPM : devtoolset-3-gcc-4.9.2-6.el7.src.rpm Build Date : Sat 03 Oct 2015 08:15:45 AM PDT Build Host : c1bj.rdu2.centos.org Relocations : (not relocatable) Packager : CBS Vendor : CentOS URL : http://gcc.gnu.org Summary : GCC version 4.9 Description : The devtoolset-3-gcc package contains the GNU Compiler Collection version 4.9. Name : net-tools Version : 2.0 Release : 0.25.20131004git.el7 Architecture: x86_64 Install Date: Tue 15 Oct 2019 10:40:39 AM PDT Group : System Environment/Base Size : 938978 License : GPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:36:04 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : net-tools-2.0-0.25.20131004git.el7.src.rpm Build Date : Thu 08 Aug 2019 06:10:26 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://sourceforge.net/projects/net-tools/ Summary : Basic networking tools Description : The net-tools package contains basic networking tools, including ifconfig, netstat, route, and others. Most of them are obsolete. For replacement check iproute package. Name : logrotate Version : 3.8.6 Release : 17.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:25 AM PDT Group : System Environment/Base Size : 107156 License : GPL+ Signature : RSA/SHA256, Mon 12 Nov 2018 06:39:25 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : logrotate-3.8.6-17.el7.src.rpm Build Date : Tue 30 Oct 2018 12:13:00 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://github.com/logrotate/logrotate Summary : Rotates, compresses, removes and mails system log files Description : The logrotate utility is designed to simplify the administration of log files on a system which generates a lot of log files. Logrotate allows for the automatic rotation compression, removal and mailing of log files. Logrotate can be set to handle a log file daily, weekly, monthly or when the log file gets to a certain size. Normally, logrotate runs as a daily cron job. Install the logrotate package if you need a utility to deal with the log files on your system. Name : devtoolset-3-gcc-c++ Version : 4.9.2 Release : 6.el7 Architecture: x86_64 Install Date: Wed 15 Apr 2020 12:39:17 PM PDT Group : Development/Languages Size : 21072579 License : GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions and LGPLv2+ and BSD Signature : RSA/SHA1, Sat 28 Nov 2015 06:50:43 AM PST, Key ID 4eb84e71f2ee9d55 Source RPM : devtoolset-3-gcc-4.9.2-6.el7.src.rpm Build Date : Sat 03 Oct 2015 08:15:45 AM PDT Build Host : c1bj.rdu2.centos.org Relocations : (not relocatable) Packager : CBS Vendor : CentOS URL : http://gcc.gnu.org Summary : C++ support for GCC version 4.9 Description : This package adds C++ support to the GNU Compiler Collection version 4.9. It includes support for most of the current C++ specification and a lot of support for the upcoming C++ specification. Name : python3-setuptools Version : 39.2.0 Release : 10.el7 Architecture: noarch Install Date: Tue 15 Oct 2019 11:09:07 AM PDT Group : Applications/System Size : 3815469 License : MIT and (BSD or ASL 2.0) Signature : RSA/SHA256, Thu 22 Aug 2019 02:59:50 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : python3-setuptools-39.2.0-10.el7.src.rpm Build Date : Wed 07 Aug 2019 09:59:57 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://pypi.python.org/pypi/setuptools Summary : Easily build and distribute Python 3 packages Description : Setuptools is a collection of enhancements to the Python 3 distutils that allow you to more easily build and distribute Python 3 packages, especially ones that have dependencies on other packages. This package also contains the runtime components of setuptools, necessary to execute the software that requires pkg_resources.py. Name : centos-logos Version : 70.0.6 Release : 3.el7.centos Architecture: noarch Install Date: Thu 15 Aug 2019 10:53:27 AM PDT Group : System Environment/Base Size : 22548401 License : Copyright © 2014 The CentOS Project. All rights reserved. Signature : RSA/SHA256, Wed 30 Sep 2015 01:10:39 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : centos-logos-70.0.6-3.el7.centos.src.rpm Build Date : Wed 30 Sep 2015 12:58:32 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.centos.org Summary : CentOS-related icons and pictures Description : The redhat-logos package (the "Package") contains files created by the CentOS Project to replace the Red Hat "Shadow Man" logo and RPM logo. The Red Hat "Shadow Man" logo, RPM, and the RPM logo are trademarks or registered trademarks of Red Hat, Inc. The Package and CentOS logos (the "Marks") can only used as outlined in the included COPYING file. Please see that file for information on copying and redistribution of the CentOS Marks. Name : python3 Version : 3.6.8 Release : 10.el7 Architecture: x86_64 Install Date: Tue 15 Oct 2019 11:09:08 AM PDT Group : Unspecified Size : 39976 License : Python Signature : RSA/SHA256, Thu 22 Aug 2019 02:40:07 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : python3-3.6.8-10.el7.src.rpm Build Date : Wed 07 Aug 2019 11:09:49 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://www.python.org/ Summary : Interpreter of the Python programming language Description : Python is an accessible, high-level, dynamically typed, interpreted programming language, designed with an emphasis on code readability. It includes an extensive standard library, and has a vast ecosystem of third-party libraries. The python3 package provides the "python3" executable: the reference interpreter for the Python language, version 3. The majority of its standard library is provided in the python3-libs package, which should be installed automatically along with python3. The remaining parts of the Python standard library are broken out into the python3-tkinter and python3-test packages, which may need to be installed separately. Documentation for Python is provided in the python3-docs package. Packages containing additional libraries for Python are generally named with the "python3-" prefix. Name : libselinux-utils Version : 2.5 Release : 14.1.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:27 AM PDT Group : Development/Libraries Size : 172645 License : Public Domain Signature : RSA/SHA256, Mon 12 Nov 2018 06:37:31 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : libselinux-2.5-14.1.el7.src.rpm Build Date : Tue 30 Oct 2018 02:43:06 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://github.com/SELinuxProject/selinux/wiki Summary : SELinux libselinux utilies Description : The libselinux-utils package contains the utilities Name : epel-release Version : 7 Release : 11 Architecture: noarch Install Date: Mon 04 Jan 2021 12:31:39 PM PST Group : System Environment/Base Size : 24834 License : GPLv2 Signature : RSA/SHA256, Fri 11 May 2018 05:21:29 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : epel-release-7-11.src.rpm Build Date : Mon 02 Oct 2017 10:45:58 AM PDT Build Host : buildvm-ppc64le-05.ppc.fedoraproject.org Relocations : (not relocatable) Packager : Fedora Project Vendor : Fedora Project URL : http://download.fedoraproject.org/pub/epel Summary : Extra Packages for Enterprise Linux repository configuration Description : This package contains the Extra Packages for Enterprise Linux (EPEL) repository GPG key as well as configuration for yum. Name : perl-parent Epoch : 1 Version : 0.225 Release : 244.el7 Architecture: noarch Install Date: Tue 15 Oct 2019 11:27:57 AM PDT Group : Development/Libraries Size : 8141 License : GPL+ or Artistic Signature : RSA/SHA256, Thu 03 Jul 2014 09:21:55 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : perl-parent-0.225-244.el7.src.rpm Build Date : Tue 10 Jun 2014 12:15:20 AM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://search.cpan.org/dist/parent/ Summary : Establish an ISA relationship with base classes at compile time Description : Allows you to both load one or more modules, while setting up inheritance from those modules at the same time. Mostly similar in effect to: package Baz; BEGIN { require Foo; require Bar; push @ISA, qw(Foo Bar); } Name : libnl Version : 1.1.4 Release : 3.el7 Architecture: x86_64 Install Date: Mon 04 Jan 2021 12:32:02 PM PST Group : Development/Libraries Size : 373662 License : LGPLv2 Signature : RSA/SHA256, Thu 03 Jul 2014 08:02:21 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : libnl-1.1.4-3.el7.src.rpm Build Date : Tue 10 Jun 2014 01:58:17 AM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.infradead.org/~tgr/libnl/ Summary : Convenience library for kernel netlink sockets Description : This package contains a convenience library to simplify using the Linux kernel's netlink sockets interface for network manipulation Name : perl-podlators Version : 2.5.1 Release : 3.el7 Architecture: noarch Install Date: Tue 15 Oct 2019 11:27:57 AM PDT Group : Development/Libraries Size : 287679 License : GPL+ or Artistic Signature : RSA/SHA256, Thu 03 Jul 2014 09:22:34 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : perl-podlators-2.5.1-3.el7.src.rpm Build Date : Mon 09 Jun 2014 12:56:16 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://search.cpan.org/dist/podlators/ Summary : Format POD source into various output formats Description : This package contains Pod::Man and Pod::Text modules which convert POD input to *roff source output, suitable for man pages, or plain text. It also includes several sub-classes of Pod::Text for formatted output to terminals with various capabilities. Name : crda Version : 3.18_2018.05.31 Release : 4.el7 Architecture: x86_64 Install Date: Mon 04 Jan 2021 12:32:02 PM PST Group : System Environment/Base Size : 67470 License : ISC Signature : RSA/SHA256, Mon 12 Nov 2018 06:22:57 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : crda-3.18_2018.05.31-4.el7.src.rpm Build Date : Tue 30 Oct 2018 03:32:16 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://wireless.kernel.org/en/developers/Regulatory/CRDA Summary : Regulatory compliance daemon for 802.11 wireless networking Description : CRDA acts as the udev helper for communication between the kernel and userspace for regulatory compliance. It relies on nl80211 for communication. CRDA is intended to be run only through udev communication from the kernel. Name : perl-Pod-Escapes Epoch : 1 Version : 1.04 Release : 294.el7_6 Architecture: noarch Install Date: Tue 15 Oct 2019 11:27:57 AM PDT Group : Development/Libraries Size : 21091 License : GPL+ or Artistic Signature : RSA/SHA256, Thu 24 Jan 2019 05:22:34 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : perl-5.16.3-294.el7_6.src.rpm Build Date : Mon 21 Jan 2019 02:17:44 PM PST Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.perl.org/ Summary : Perl module for resolving POD escape sequences Description : This module provides things that are useful in decoding Pod E<...> sequences. Presumably, it should be used only by Pod parsers and/or formatters. Name : pinentry Version : 0.8.1 Release : 17.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:27 AM PDT Group : Applications/System Size : 159929 License : GPLv2+ Signature : RSA/SHA256, Sun 20 Nov 2016 12:05:16 PM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : pinentry-0.8.1-17.el7.src.rpm Build Date : Sat 05 Nov 2016 08:49:27 AM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gnupg.org/aegypten/ Summary : Collection of simple PIN or passphrase entry dialogs Description : Pinentry is a collection of simple PIN or passphrase entry dialogs which utilize the Assuan protocol as described by the aegypten project; see http://www.gnupg.org/aegypten/ for details. This package contains the curses (text) based version of the PIN entry dialog. Name : libicu Version : 50.2 Release : 4.el7_7 Architecture: x86_64 Install Date: Tue 09 Feb 2021 08:57:09 AM PST Group : System Environment/Libraries Size : 25221945 License : MIT and UCD and Public Domain Signature : RSA/SHA256, Tue 24 Mar 2020 09:17:45 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : icu-50.2-4.el7_7.src.rpm Build Date : Fri 20 Mar 2020 05:51:27 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.icu-project.org/ Summary : International Components for Unicode - libraries Description : The International Components for Unicode (ICU) libraries provide robust and full-featured Unicode services on a wide variety of platforms. ICU supports the most current version of the Unicode standard, and they provide support for supplementary Unicode characters (needed for GB 18030 repertoire support). As computing environments become more heterogeneous, software portability becomes more important. ICU lets you produce the same results across all the various platforms you support, without sacrificing performance. It offers great flexibility to extend and customize the supplied services. Name : perl-Text-ParseWords Version : 3.29 Release : 4.el7 Architecture: noarch Install Date: Tue 15 Oct 2019 11:27:58 AM PDT Group : Development/Libraries Size : 16431 License : GPL+ or Artistic Signature : RSA/SHA256, Thu 03 Jul 2014 09:25:15 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : perl-Text-ParseWords-3.29-4.el7.src.rpm Build Date : Mon 09 Jun 2014 02:14:46 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://search.cpan.org/dist/Text-ParseWords/ Summary : Parse text into an array of tokens or array of arrays Description : The nested_quotewords() and quotewords() functions accept a delimiter (which can be a regular expression) and a list of lines and then breaks those lines up into a list of words ignoring delimiters that appear inside quotes. quotewords() returns all of the tokens in a single long list, while nested_quotewords() returns a list of token lists corresponding to the elements of @lines. parse_line() does tokenizing on a single string. The quotewords() functions simply call &parse_line(), so if you're only splitting one line you can call parse_line() directly and save a function call. Name : snappy Version : 1.1.0 Release : 3.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:28 AM PDT Group : System Environment/Libraries Size : 119521 License : BSD Signature : RSA/SHA256, Thu 03 Jul 2014 10:02:19 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : snappy-1.1.0-3.el7.src.rpm Build Date : Tue 10 Jun 2014 12:40:34 AM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://code.google.com/p/snappy/ Summary : Fast compression and decompression library Description : Snappy is a compression/decompression library. It does not aim for maximum compression, or compatibility with any other compression library; instead, it aims for very high speeds and reasonable compression. For instance, compared to the fastest mode of zlib, Snappy is an order of magnitude faster for most inputs, but the resulting compressed files are anywhere from 20% to 100% bigger. Name : bluez Version : 5.44 Release : 7.el7 Architecture: x86_64 Install Date: Tue 09 Feb 2021 08:57:09 AM PST Group : Applications/System Size : 4933985 License : GPLv2+ Signature : RSA/SHA256, Wed 14 Oct 2020 11:47:03 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : bluez-5.44-7.el7.src.rpm Build Date : Wed 30 Sep 2020 08:50:00 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.bluez.org/ Summary : Bluetooth utilities Description : Utilities for use in Bluetooth applications: - hcitool - hciattach - hciconfig - bluetoothd - l2ping - rfcomm - sdptool - bccmd - bluetoothctl - btmon - hcidump - l2test - rctest - gatttool - start scripts (Red Hat) - pcmcia configuration files The BLUETOOTH trademarks are owned by Bluetooth SIG, Inc., U.S.A. Name : perl-libs Epoch : 4 Version : 5.16.3 Release : 294.el7_6 Architecture: x86_64 Install Date: Tue 15 Oct 2019 11:27:58 AM PDT Group : Development/Languages Size : 1647344 License : GPL+ or Artistic Signature : RSA/SHA256, Thu 24 Jan 2019 05:22:16 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : perl-5.16.3-294.el7_6.src.rpm Build Date : Mon 21 Jan 2019 02:12:20 PM PST Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.perl.org/ Summary : The libraries for the perl runtime Description : The libraries for the perl runtime Name : jq Version : 1.6 Release : 2.el7 Architecture: x86_64 Install Date: Wed 31 Mar 2021 06:30:29 PM PDT Group : Unspecified Size : 390033 License : MIT and ASL 2.0 and CC-BY and GPLv3 Signature : RSA/SHA256, Thu 28 May 2020 10:31:39 AM PDT, Key ID 6a2faea2352c64e5 Source RPM : jq-1.6-2.el7.src.rpm Build Date : Wed 27 May 2020 02:48:09 PM PDT Build Host : buildvm-14.phx2.fedoraproject.org Relocations : (not relocatable) Packager : Fedora Project Vendor : Fedora Project URL : http://stedolan.github.io/jq/ Bug URL : https://bugz.fedoraproject.org/jq Summary : Command-line JSON processor Description : lightweight and flexible command-line JSON processor jq is like sed for JSON data – you can use it to slice and filter and map and transform structured data with the same ease that sed, awk, grep and friends let you play with text. It is written in portable C, and it has zero runtime dependencies. jq can mangle the data format that you have into the one that you want with very little effort, and the program to do so is often shorter and simpler than you'd expect. Name : perl-Time-HiRes Epoch : 4 Version : 1.9725 Release : 3.el7 Architecture: x86_64 Install Date: Tue 15 Oct 2019 11:27:58 AM PDT Group : Development/Libraries Size : 94069 License : GPL+ or Artistic Signature : RSA/SHA256, Thu 03 Jul 2014 09:25:35 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : perl-Time-HiRes-1.9725-3.el7.src.rpm Build Date : Mon 09 Jun 2014 12:57:24 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://search.cpan.org/dist/Time-HiRes/ Summary : High resolution alarm, sleep, gettimeofday, interval timers Description : The Time::HiRes module implements a Perl interface to the usleep, nanosleep, ualarm, gettimeofday, and setitimer/getitimer system calls, in other words, high resolution time and timers. Name : libpng Epoch : 2 Version : 1.5.13 Release : 7.el7_2 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:28 AM PDT Group : System Environment/Libraries Size : 616101 License : zlib Signature : RSA/SHA256, Wed 09 Dec 2015 09:02:06 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : libpng-1.5.13-7.el7_2.src.rpm Build Date : Wed 09 Dec 2015 08:31:20 AM PST Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.libpng.org/pub/png/ Summary : A library of functions for manipulating PNG image format files Description : The libpng package contains a library of functions for creating and manipulating PNG (Portable Network Graphics) image format files. PNG is a bit-mapped graphics format similar to the GIF format. PNG was created to replace the GIF format, since GIF uses a patented data compression algorithm. Libpng should be installed if you need to manipulate PNG format image files. Name : perl-constant Version : 1.27 Release : 2.el7 Architecture: noarch Install Date: Tue 15 Oct 2019 11:27:58 AM PDT Group : Development/Libraries Size : 26364 License : GPL+ or Artistic Signature : RSA/SHA256, Thu 03 Jul 2014 09:15:39 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : perl-constant-1.27-2.el7.src.rpm Build Date : Mon 09 Jun 2014 07:51:22 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://search.cpan.org/dist/constant/ Summary : Perl pragma to declare constants Description : This pragma allows you to declare constants at compile-time: use constant PI => 4 * atan2(1, 1); When you declare a constant such as "PI" using the method shown above, each machine your script runs upon can have as many digits of accuracy as it can use. Also, your program will be easier to read, more likely to be maintained (and maintained correctly), and far less likely to send a space probe to the wrong planet because nobody noticed the one equation in which you wrote 3.14195. When a constant is used in an expression, Perl replaces it with its value at compile time, and may then optimize the expression further. In particular, any code in an "if (CONSTANT)" block will be optimized away if the constant is false. Name : perl-Socket Version : 2.010 Release : 4.el7 Architecture: x86_64 Install Date: Tue 15 Oct 2019 11:27:58 AM PDT Group : Development/Libraries Size : 114497 License : GPL+ or Artistic Signature : RSA/SHA256, Sun 20 Nov 2016 12:02:40 PM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : perl-Socket-2.010-4.el7.src.rpm Build Date : Sat 05 Nov 2016 08:24:51 AM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://search.cpan.org/dist/Socket/ Summary : Networking constants and support functions Description : This module provides a variety of constants, structure manipulators and other functions related to socket-based networking. The values and functions provided are useful when used in conjunction with Perl core functions such as socket(), setsockopt() and bind(). It also provides several other support functions, mostly for dealing with conversions of network addresses between human-readable and native binary forms, and for hostname resolver operations. Name : ustr Version : 1.0.4 Release : 16.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:28 AM PDT Group : System Environment/Libraries Size : 285943 License : MIT or LGPLv2+ or BSD Signature : RSA/SHA256, Thu 03 Jul 2014 10:39:11 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : ustr-1.0.4-16.el7.src.rpm Build Date : Mon 09 Jun 2014 01:12:46 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.and.org/ustr/ Summary : String library, very low memory overhead, simple to import Description : Micro string library, very low overhead from plain strdup() (Ave. 44% for 0-20B strings). Very easy to use in existing C code. At it's simplest you can just include a single header file into your .c and start using it. This package also distributes pre-built shared libraries. Name : perl-Storable Version : 2.45 Release : 3.el7 Architecture: x86_64 Install Date: Tue 15 Oct 2019 11:27:58 AM PDT Group : Development/Libraries Size : 181031 License : GPL+ or Artistic Signature : RSA/SHA256, Thu 03 Jul 2014 09:23:18 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : perl-Storable-2.45-3.el7.src.rpm Build Date : Mon 09 Jun 2014 07:29:58 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://search.cpan.org/dist/Storable/ Summary : Persistence for Perl data structures Description : The Storable package brings persistence to your Perl data structures containing scalar, array, hash or reference objects, i.e. anything that can be conveniently stored to disk and retrieved at a later time. Name : perl-Scalar-List-Utils Version : 1.27 Release : 248.el7 Architecture: x86_64 Install Date: Tue 15 Oct 2019 11:27:58 AM PDT Group : Development/Libraries Size : 67994 License : GPL+ or Artistic Signature : RSA/SHA256, Thu 03 Jul 2014 09:23:05 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : perl-Scalar-List-Utils-1.27-248.el7.src.rpm Build Date : Mon 09 Jun 2014 04:57:00 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://search.cpan.org/dist/Scalar-List-Utils/ Summary : A selection of general-utility scalar and list subroutines Description : This package contains a selection of subroutines that people have expressed would be nice to have in the perl core, but the usage would not really be high enough to warrant the use of a keyword, and the size so small such that being individual extensions would be wasteful. Name : perl-File-Path Version : 2.09 Release : 2.el7 Architecture: noarch Install Date: Tue 15 Oct 2019 11:27:58 AM PDT Group : Development/Libraries Size : 50067 License : GPL+ or Artistic Signature : RSA/SHA256, Thu 03 Jul 2014 09:18:06 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : perl-File-Path-2.09-2.el7.src.rpm Build Date : Mon 09 Jun 2014 05:48:09 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://search.cpan.org/dist/File-Path/ Summary : Create or remove directory trees Description : This module provides a convenient way to create directories of arbitrary depth and to delete an entire directory subtree from the file system. Name : hardlink Epoch : 1 Version : 1.0 Release : 19.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:29 AM PDT Group : System Environment/Base Size : 16545 License : GPL+ Signature : RSA/SHA256, Thu 03 Jul 2014 06:53:40 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : hardlink-1.0-19.el7.src.rpm Build Date : Mon 09 Jun 2014 11:26:04 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://pkgs.fedoraproject.org/gitweb/?p=hardlink.git Summary : Create a tree of hardlinks Description : hardlink is used to create a tree of hard links. It's used by kernel installation to dramatically reduce the amount of diskspace used by each kernel package installed. Name : perl-threads Version : 1.87 Release : 4.el7 Architecture: x86_64 Install Date: Tue 15 Oct 2019 11:27:58 AM PDT Group : Development/Libraries Size : 98615 License : GPL+ or Artistic Signature : RSA/SHA256, Thu 03 Jul 2014 09:25:24 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : perl-threads-1.87-4.el7.src.rpm Build Date : Mon 09 Jun 2014 10:22:14 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://search.cpan.org/dist/threads/ Summary : Perl interpreter-based threads Description : Since Perl 5.8, thread programming has been available using a model called interpreter threads which provides a new Perl interpreter for each thread, and, by default, results in no data or state information being shared between threads. (Prior to Perl 5.8, 5005threads was available through the "Thread.pm" API. This threading model has been deprecated, and was removed as of Perl 5.10.0.) Name : libseccomp Version : 2.3.1 Release : 3.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:29 AM PDT Group : System Environment/Libraries Size : 304131 License : LGPLv2 Signature : RSA/SHA256, Thu 10 Aug 2017 10:50:45 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : libseccomp-2.3.1-3.el7.src.rpm Build Date : Wed 02 Aug 2017 06:38:21 AM PDT Build Host : c1bm.rdu2.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://github.com/seccomp/libseccomp Summary : Enhanced seccomp library Description : The libseccomp library provides an easy to use interface to the Linux Kernel's syscall filtering mechanism, seccomp. The libseccomp API allows an application to specify which syscalls, and optionally which syscall arguments, the application is allowed to execute, all of which are enforced by the Linux Kernel. Name : perl-Filter Version : 1.49 Release : 3.el7 Architecture: x86_64 Install Date: Tue 15 Oct 2019 11:27:59 AM PDT Group : Development/Libraries Size : 148475 License : GPL+ or Artistic Signature : RSA/SHA256, Thu 03 Jul 2014 09:18:19 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : perl-Filter-1.49-3.el7.src.rpm Build Date : Mon 09 Jun 2014 03:45:54 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://search.cpan.org/dist/Filter/ Summary : Perl source filters Description : Source filters alter the program text of a module before Perl sees it, much as a C preprocessor alters the source text of a C program before the compiler sees it. Name : qrencode-libs Version : 3.4.1 Release : 3.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:29 AM PDT Group : Unspecified Size : 126732 License : LGPLv2+ Signature : RSA/SHA256, Thu 03 Jul 2014 09:44:21 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : qrencode-3.4.1-3.el7.src.rpm Build Date : Mon 09 Jun 2014 12:45:31 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://megaui.net/fukuchi/works/qrencode/index.en.html Summary : QR Code encoding library - Shared libraries Description : The qrencode-libs package contains the shared libraries and header files for applications that use qrencode. Name : perl Epoch : 4 Version : 5.16.3 Release : 294.el7_6 Architecture: x86_64 Install Date: Tue 15 Oct 2019 11:28:01 AM PDT Group : Development/Languages Size : 23552128 License : (GPL+ or Artistic) and (GPLv2+ or Artistic) and Copyright Only and MIT and Public Domain and UCD Signature : RSA/SHA256, Thu 24 Jan 2019 05:22:14 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : perl-5.16.3-294.el7_6.src.rpm Build Date : Mon 21 Jan 2019 02:12:20 PM PST Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.perl.org/ Summary : Practical Extraction and Report Language Description : Perl is a high-level programming language with roots in C, sed, awk and shell scripting. Perl is good at handling processes and files, and is especially good at handling text. Perl's hallmarks are practicality and efficiency. While it is used to do a lot of different things, Perl's most common applications are system administration utilities and web programming. A large proportion of the CGI scripts on the web are written in Perl. You need the perl package installed on your system so that your system can handle Perl scripts. Install this package if you want to program in Perl or enable your system to handle Perl scripts. Name : libpipeline Version : 1.2.3 Release : 3.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:29 AM PDT Group : Development/Libraries Size : 142521 License : GPLv3+ Signature : RSA/SHA256, Thu 03 Jul 2014 08:05:55 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : libpipeline-1.2.3-3.el7.src.rpm Build Date : Mon 09 Jun 2014 10:46:23 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://libpipeline.nongnu.org/ Summary : A pipeline manipulation library Description : libpipeline is a C library for setting up and running pipelines of processes, without needing to involve shell command-line parsing which is often error-prone and insecure. This alleviates programmers of the need to laboriously construct pipelines using lower-level primitives such as fork(2) and execve(2). Name : perl-TermReadKey Version : 2.30 Release : 20.el7 Architecture: x86_64 Install Date: Tue 15 Oct 2019 11:28:01 AM PDT Group : Development/Libraries Size : 59999 License : (Copyright only) and (Artistic or GPL+) Signature : RSA/SHA256, Thu 03 Jul 2014 09:23:54 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : perl-TermReadKey-2.30-20.el7.src.rpm Build Date : Tue 10 Jun 2014 12:29:32 AM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://search.cpan.org/~jstowe/TermReadKey/ Summary : A perl module for simple terminal control Description : Term::ReadKey is a compiled perl module dedicated to providing simple control over terminal driver modes (cbreak, raw, cooked, etc.) support for non-blocking reads, if the architecture allows, and some generalized handy functions for working with terminals. One of the main goals is to have the functions as portable as possible, so you can just plug in "use Term::ReadKey" on any architecture and have a good likelyhood of it working. Name : lsscsi Version : 0.27 Release : 6.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:29 AM PDT Group : Applications/System Size : 90475 License : GPLv2+ Signature : RSA/SHA256, Thu 10 Aug 2017 11:15:48 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : lsscsi-0.27-6.el7.src.rpm Build Date : Wed 02 Aug 2017 07:11:06 PM PDT Build Host : c1bm.rdu2.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://sg.danny.cz/scsi/lsscsi.html Summary : List SCSI devices (or hosts) and associated information Description : Uses information provided by the sysfs pseudo file system in Linux kernel 2.6 series to list SCSI devices or all SCSI hosts. Includes a "classic" option to mimic the output of "cat /proc/scsi/scsi" that has been widely used prior to the lk 2.6 series. Author: -------- Doug Gilbert Name : perl-Git Version : 1.8.3.1 Release : 20.el7 Architecture: noarch Install Date: Tue 15 Oct 2019 11:28:01 AM PDT Group : Development/Libraries Size : 58567 License : GPLv2 Signature : RSA/SHA256, Tue 20 Nov 2018 12:42:15 PM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : git-1.8.3.1-20.el7.src.rpm Build Date : Mon 19 Nov 2018 08:23:15 AM PST Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://git-scm.com/ Summary : Perl interface to Git Description : Perl interface to Git. Name : libgcc Version : 4.8.5 Release : 39.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:15 AM PDT Group : System Environment/Libraries Size : 179328 License : GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions and LGPLv2+ and BSD Signature : RSA/SHA256, Thu 22 Aug 2019 02:29:34 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : gcc-4.8.5-39.el7.src.rpm Build Date : Tue 06 Aug 2019 10:15:38 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://gcc.gnu.org Summary : GCC version 4.8 shared support library Description : This package contains GCC shared support library which is needed e.g. for exception handling support. Name : centos-release Version : 7 Release : 7.1908.0.el7.centos Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:16 AM PDT Group : System Environment/Base Size : 42295 License : GPLv2 Signature : RSA/SHA256, Thu 05 Sep 2019 06:19:24 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : centos-release-7-7.1908.0.el7.centos.src.rpm Build Date : Thu 05 Sep 2019 06:05:40 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS Summary : CentOS Linux release file Description : CentOS Linux release files Name : subscription-manager-rhsm-certificates Version : 1.24.13 Release : 3.el7.centos Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:17 AM PDT Group : Development/Libraries Size : 0 License : GPLv2 Signature : RSA/SHA256, Sat 14 Sep 2019 04:50:33 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : subscription-manager-1.24.13-3.el7.centos.src.rpm Build Date : Fri 13 Sep 2019 11:16:03 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.candlepinproject.org/ Summary : Certificates required to communicate with a Red Hat Unified Entitlement Platform Description : This package contains certificates required for communicating with the REST interface of a Red Hat Unified Entitlement Platform, used for the management of system entitlements and to receive access to content. Name : firewalld-filesystem Version : 0.6.3 Release : 2.el7_7.1 Architecture: noarch Install Date: Wed 16 Oct 2019 09:21:17 AM PDT Group : Unspecified Size : 239 License : GPLv2+ Signature : RSA/SHA256, Sat 14 Sep 2019 04:52:52 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : firewalld-0.6.3-2.el7_7.1.src.rpm Build Date : Fri 13 Sep 2019 11:02:20 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.firewalld.org Summary : Firewalld directory layout and rpm macros Description : This package provides directories and rpm macros which are required by other packages that add firewalld configuration files. Name : tzdata Version : 2019c Release : 1.el7 Architecture: noarch Install Date: Wed 16 Oct 2019 09:21:18 AM PDT Group : System Environment/Base Size : 2018657 License : Public Domain Signature : RSA/SHA256, Thu 26 Sep 2019 05:20:57 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : tzdata-2019c-1.el7.src.rpm Build Date : Thu 26 Sep 2019 04:34:13 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://www.iana.org/time-zones Summary : Timezone data Description : This package contains data files with rules for various timezones around the world. Name : nss-softokn-freebl Version : 3.44.0 Release : 5.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:18 AM PDT Group : System Environment/Base Size : 569644 License : MPLv2.0 Signature : RSA/SHA256, Thu 22 Aug 2019 02:36:30 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : nss-softokn-3.44.0-5.el7.src.rpm Build Date : Mon 12 Aug 2019 07:47:20 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.mozilla.org/projects/security/pki/nss/ Summary : Freebl library for the Network Security Services Description : NSS Softoken Cryptographic Module Freebl Library Install the nss-softokn-freebl package if you need the freebl library. Name : glibc Version : 2.17 Release : 292.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:26 AM PDT Group : System Environment/Libraries Size : 14101347 License : LGPLv2+ and LGPLv2+ with exceptions and GPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:24:41 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : glibc-2.17-292.el7.src.rpm Build Date : Tue 06 Aug 2019 04:23:44 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gnu.org/software/glibc/ Summary : The GNU libc libraries Description : The glibc package contains standard libraries which are used by multiple programs on the system. In order to save disk space and memory, as well as to make upgrading easier, common system code is kept in one place and shared between programs. This particular package contains the most important sets of shared libraries: the standard C library and the standard math library. Without these two libraries, a Linux system will not function. Name : nss-util Version : 3.44.0 Release : 3.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:26 AM PDT Group : System Environment/Libraries Size : 198960 License : MPLv2.0 Signature : RSA/SHA256, Thu 22 Aug 2019 02:36:34 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : nss-util-3.44.0-3.el7.src.rpm Build Date : Fri 09 Aug 2019 07:14:13 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.mozilla.org/projects/security/pki/nss/ Summary : Network Security Services Utilities Library Description : Utilities for Network Security Services and the Softoken module Name : libcom_err Version : 1.42.9 Release : 16.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:26 AM PDT Group : Development/Libraries Size : 60489 License : MIT Signature : RSA/SHA256, Thu 22 Aug 2019 02:29:14 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : e2fsprogs-1.42.9-16.el7.src.rpm Build Date : Thu 08 Aug 2019 04:19:51 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://e2fsprogs.sourceforge.net/ Summary : Common error description library Description : This is the common error description library, part of e2fsprogs. libcom_err is an attempt to present a common error-handling mechanism. Name : openssl-libs Epoch : 1 Version : 1.0.2k Release : 19.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:27 AM PDT Group : System Environment/Libraries Size : 3208684 License : OpenSSL Signature : RSA/SHA256, Thu 22 Aug 2019 02:37:33 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : openssl-1.0.2k-19.el7.src.rpm Build Date : Thu 08 Aug 2019 06:40:02 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.openssl.org/ Summary : A general purpose cryptography library with TLS implementation Description : OpenSSL is a toolkit for supporting cryptography. The openssl-libs package contains the libraries that are used by various applications which support cryptographic algorithms and protocols. Name : krb5-libs Version : 1.15.1 Release : 37.el7_7.2 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:28 AM PDT Group : System Environment/Libraries Size : 2201033 License : MIT Signature : RSA/SHA256, Sat 14 Sep 2019 04:48:31 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : krb5-1.15.1-37.el7_7.2.src.rpm Build Date : Fri 13 Sep 2019 11:07:42 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://web.mit.edu/kerberos/www/ Summary : The non-admin shared libraries used by Kerberos 5 Description : Kerberos is a network authentication system. The krb5-libs package contains the shared libraries needed by Kerberos 5. If you are using Kerberos, you need to install this package. Name : wpa_supplicant Epoch : 1 Version : 2.6 Release : 12.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:33 AM PDT Group : System Environment/Base Size : 4411751 License : BSD Signature : RSA/SHA256, Mon 12 Nov 2018 06:49:13 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : wpa_supplicant-2.6-12.el7.src.rpm Build Date : Tue 30 Oct 2018 04:03:45 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://w1.fi/wpa_supplicant/ Summary : WPA/WPA2/IEEE 802.1X Supplicant Description : wpa_supplicant is a WPA Supplicant for Linux, BSD and Windows with support for WPA and WPA2 (IEEE 802.11i / RSN). Supplicant is the IEEE 802.1X/WPA component that is used in the client stations. It implements key negotiation with a WPA Authenticator and it controls the roaming and IEEE 802.11 authentication/association of the wlan driver. Name : libblkid Version : 2.23.2 Release : 61.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:28 AM PDT Group : Development/Libraries Size : 265949 License : LGPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:28:42 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : util-linux-2.23.2-61.el7.src.rpm Build Date : Thu 08 Aug 2019 08:10:20 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://en.wikipedia.org/wiki/Util-linux Summary : Block device ID library Description : This is block device identification library, part of util-linux. Name : elfutils-libelf Version : 0.176 Release : 2.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:29 AM PDT Group : Development/Tools Size : 916230 License : GPLv2+ or LGPLv3+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:22:50 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : elfutils-0.176-2.el7.src.rpm Build Date : Thu 08 Aug 2019 04:16:25 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://elfutils.org/ Summary : Library to read and write ELF files Description : The elfutils-libelf package provides a DSO which allows reading and writing ELF files on a high level. Third party programs depend on this package to read internals of ELF files. The programs of the elfutils package use it also to generate new ELF files. Name : readline Version : 6.2 Release : 11.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:30 AM PDT Group : System Environment/Libraries Size : 460424 License : GPLv3+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:42:22 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : readline-6.2-11.el7.src.rpm Build Date : Thu 08 Aug 2019 05:07:39 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html Summary : A library for editing typed command lines Description : The Readline library provides a set of functions that allow users to edit command lines. Both Emacs and vi editing modes are available. The Readline library includes additional functions for maintaining a list of previously-entered command lines for recalling or editing those lines, and for performing csh-like history expansion on previous commands. Name : python Version : 2.7.5 Release : 86.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:32 AM PDT Group : Development/Languages Size : 80907 License : Python Signature : RSA/SHA256, Thu 22 Aug 2019 02:40:03 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : python-2.7.5-86.el7.src.rpm Build Date : Tue 06 Aug 2019 06:15:38 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.python.org/ Summary : An interpreted, interactive, object-oriented programming language Description : Python is an interpreted, interactive, object-oriented programming language often compared to Tcl, Perl, Scheme or Java. Python includes modules, classes, exceptions, very high level dynamic data types and dynamic typing. Python supports interfaces to many system calls and libraries, as well as to various windowing systems (X11, Motif, Tk, Mac and MFC). Programmers can write new built-in modules for Python in C or C++. Python can be used as an extension language for applications that need a programmable interface. Note that documentation for Python is provided in the python-docs package. This package provides the "python" executable; most of the actual implementation is within the "python-libs" package. Name : libmount Version : 2.23.2 Release : 61.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:32 AM PDT Group : Development/Libraries Size : 278157 License : LGPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:30:26 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : util-linux-2.23.2-61.el7.src.rpm Build Date : Thu 08 Aug 2019 08:10:20 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://en.wikipedia.org/wiki/Util-linux Summary : Device mounting library Description : This is the device mounting library, part of util-linux. Name : nss-softokn Version : 3.44.0 Release : 5.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:33 AM PDT Group : System Environment/Libraries Size : 1188606 License : MPLv2.0 Signature : RSA/SHA256, Thu 22 Aug 2019 02:36:29 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : nss-softokn-3.44.0-5.el7.src.rpm Build Date : Mon 12 Aug 2019 07:47:20 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.mozilla.org/projects/security/pki/nss/ Summary : Network Security Services Softoken Module Description : Network Security Services Softoken Cryptographic Module Name : fxload Version : 2002_04_11 Release : 16.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:36 AM PDT Group : System Environment/Kernel Size : 42589 License : GPLv2+ Signature : RSA/SHA256, Thu 03 Jul 2014 06:25:35 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : fxload-2002_04_11-16.el7.src.rpm Build Date : Mon 09 Jun 2014 09:45:39 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://linux-hotplug.sourceforge.net/ Summary : A helper program to download firmware into FX and FX2 EZ-USB devices Description : This program is conveniently able to download firmware into FX and FX2 EZ-USB devices, as well as the original AnchorChips EZ-USB. It is intended to be invoked by udev scripts when the unprogrammed device appears on the bus. Name : alsa-tools-firmware Version : 1.1.0 Release : 1.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:36 AM PDT Group : Applications/System Size : 86387 License : GPLv2+ Signature : RSA/SHA256, Sun 20 Nov 2016 09:07:19 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : alsa-tools-1.1.0-1.el7.src.rpm Build Date : Sat 05 Nov 2016 11:34:05 AM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.alsa-project.org/ Summary : ALSA tools for uploading firmware to some soundcards Description : This package contains tools for flashing firmware into certain sound cards. The following tools are available: * hdsploader - for RME Hammerfall DSP cards * mixartloader - for Digigram miXart soundcards * vxloader - for Digigram VX soundcards * usx2yloader - second phase firmware loader for Tascam USX2Y USB soundcards Name : dbus-glib Version : 0.100 Release : 7.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:36 AM PDT Group : System Environment/Libraries Size : 301237 License : AFL and GPLv2+ Signature : RSA/SHA256, Thu 03 Jul 2014 06:06:03 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : dbus-glib-0.100-7.el7.src.rpm Build Date : Mon 09 Jun 2014 09:06:04 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.freedesktop.org/software/dbus/ Summary : GLib bindings for D-Bus Description : D-Bus add-on library to integrate the standard D-Bus library with the GLib thread abstraction and main loop. Name : python-slip-dbus Version : 0.4.0 Release : 4.el7 Architecture: noarch Install Date: Thu 15 Aug 2019 10:53:36 AM PDT Group : System Environment/Libraries Size : 76410 License : GPLv2+ Signature : RSA/SHA256, Wed 25 Apr 2018 04:39:06 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : python-slip-0.4.0-4.el7.src.rpm Build Date : Tue 10 Apr 2018 06:49:00 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://github.com/nphilipp/python-slip Summary : Convenience functions for dbus services Description : The Simple Library for Python packages contain miscellaneous code for convenience, extension and workaround purposes. This package provides slip.dbus.service.Object, which is a dbus.service.Object derivative that ends itself after a certain time without being used and/or if there are no clients anymore on the message bus, as well as convenience functions and decorators for integrating a dbus service with PolicyKit. Name : python-pyudev Version : 0.15 Release : 9.el7 Architecture: noarch Install Date: Thu 15 Aug 2019 10:53:36 AM PDT Group : Development/Languages Size : 241404 License : LGPLv2+ Signature : RSA/SHA256, Thu 10 Aug 2017 12:22:56 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : python-pyudev-0.15-9.el7.src.rpm Build Date : Wed 02 Aug 2017 10:51:26 PM PDT Build Host : c1bm.rdu2.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://pypi.python.org/pypi/pyudev Summary : A libudev binding Description : pyudev is a LGPL licensed, pure Python binding for libudev, the device and hardware management and information library for Linux. It supports almost all libudev functionality, you can enumerate devices, query device properties and attributes or monitor devices, including asynchronous monitoring with threads, or within the event loops of Qt, Glib or wxPython. The binding supports CPython_ 2 (2.6 or newer) and 3 (3.1 or newer), and PyPy_ 1.5 or newer. It is tested against udev 151 or newer, earlier versions of udev as found on dated Linux systems may work, but are not officially supported. Name : virt-what Version : 1.18 Release : 4.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:36 AM PDT Group : Unspecified Size : 45720 License : GPLv2+ Signature : RSA/SHA256, Wed 25 Apr 2018 04:51:38 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : virt-what-1.18-4.el7.src.rpm Build Date : Tue 10 Apr 2018 06:51:05 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://people.redhat.com/~rjones/virt-what/ Summary : Detect if we are running in a virtual machine Description : virt-what is a shell script which can be used to detect if the program is running in a virtual machine. The program prints out a list of "facts" about the virtual machine, derived from heuristics. One fact is printed per line. If nothing is printed and the script exits with code 0 (no error), then it can mean either that the program is running on bare-metal or the program is running inside a type of virtual machine which we don't know about or can't detect. Current types of virtualization detected: - aws Amazon Web Services cloud guest - bhyve FreeBSD hypervisor - docker Docker container - hyperv Microsoft Hyper-V - ibm_power-kvm IBM POWER KVM - ibm_power-lpar_shared - ibm_power-lpar_dedicated IBM POWER LPAR (hardware partition) - ibm_systemz-* IBM SystemZ Direct / LPAR / z/VM / KVM - ldoms Oracle VM Server for SPARC Logical Domains - linux_vserver Linux VServer container - lxc Linux LXC container - kvm Linux Kernel Virtual Machine (KVM) - lkvm LKVM / kvmtool - openvz OpenVZ or Virtuozzo - ovirt oVirt node - parallels Parallels Virtual Platform - powervm_lx86 IBM PowerVM Lx86 Linux/x86 emulator - qemu QEMU (unaccelerated) - rhev Red Hat Enterprise Virtualization - uml User-Mode Linux (UML) - virtage Hitachi Virtualization Manager (HVM) Virtage LPAR - virtualbox VirtualBox - virtualpc Microsoft VirtualPC - vmm vmm OpenBSD hypervisor - vmware VMware - xen Xen - xen-dom0 Xen dom0 (privileged domain) - xen-domU Xen domU (paravirtualized guest domain) - xen-hvm Xen guest fully virtualized (HVM) Name : gnupg2 Version : 2.0.22 Release : 5.el7_5 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:37 AM PDT Group : Applications/System Size : 6637796 License : GPLv3+ Signature : RSA/SHA256, Fri 13 Jul 2018 08:56:02 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : gnupg2-2.0.22-5.el7_5.src.rpm Build Date : Fri 13 Jul 2018 06:06:54 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gnupg.org/ Summary : Utility for secure communication and data storage Description : GnuPG is GNU's tool for secure communication and data storage. It can be used to encrypt data and to create digital signatures. It includes an advanced key management facility and is compliant with the proposed OpenPGP Internet standard as described in RFC2440 and the S/MIME standard as described by several RFCs. GnuPG 2.0 is a newer version of GnuPG with additional support for S/MIME. It has a different design philosophy that splits functionality up into several modules. The S/MIME and smartcard functionality is provided by the gnupg2-smime package. Name : pygpgme Version : 0.3 Release : 9.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:37 AM PDT Group : Development/Languages Size : 197501 License : LGPLv2+ Signature : RSA/SHA256, Thu 03 Jul 2014 09:36:27 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : pygpgme-0.3-9.el7.src.rpm Build Date : Mon 09 Jun 2014 04:30:47 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://cheeseshop.python.org/pypi/pygpgme Summary : Python module for working with OpenPGP messages Description : PyGPGME is a Python module that lets you sign, verify, encrypt and decrypt files using the OpenPGP format. It is built on top of GNU Privacy Guard and the GPGME library. Name : kbd-misc Version : 1.15.5 Release : 15.el7 Architecture: noarch Install Date: Thu 15 Aug 2019 10:53:46 AM PDT Group : System Environment/Base Size : 2419757 License : GPLv2+ Signature : RSA/SHA256, Mon 12 Nov 2018 07:17:50 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : kbd-1.15.5-15.el7.src.rpm Build Date : Tue 30 Oct 2018 03:40:00 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://ftp.altlinux.org/pub/people/legion/kbd Summary : Data for kbd package Description : The kbd-misc package contains data for kbd package - console fonts, keymaps etc. Please note that kbd-misc is not helpful without kbd. Name : kernel Version : 3.10.0 Release : 957.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:50 AM PDT Group : System Environment/Kernel Size : 66192729 License : GPLv2 Signature : RSA/SHA256, Mon 12 Nov 2018 06:30:44 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : kernel-3.10.0-957.el7.src.rpm Build Date : Thu 08 Nov 2018 04:08:59 PM PST Build Host : kbuilder.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.kernel.org/ Summary : The Linux kernel Description : The kernel package contains the Linux kernel (vmlinuz), the core of any Linux operating system. The kernel handles the basic functions of the operating system: memory allocation, process allocation, device input and output, etc. Name : libndp Version : 1.2 Release : 9.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:42 AM PDT Group : System Environment/Libraries Size : 75708 License : LGPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:30:31 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : libndp-1.2-9.el7.src.rpm Build Date : Thu 08 Aug 2019 05:25:58 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.libndp.org/ Summary : Library for Neighbor Discovery Protocol Description : This package contains a library which provides a wrapper for IPv6 Neighbor Discovery Protocol. It also provides a tool named ndptool for sending and receiving NDP messages. Name : vim-minimal Epoch : 2 Version : 7.4.629 Release : 6.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:42 AM PDT Group : Applications/Editors Size : 935752 License : Vim Signature : RSA/SHA256, Thu 22 Aug 2019 02:45:14 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : vim-7.4.629-6.el7.src.rpm Build Date : Thu 08 Aug 2019 08:17:37 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.vim.org/ Summary : A minimal version of the VIM editor Description : VIM (VIsual editor iMproved) is an updated and improved version of the vi editor. Vi was the first real screen-based editor for UNIX, and is still very popular. VIM improves on vi by adding new features: multiple windows, multi-level undo, block highlighting and more. The vim-minimal package includes a minimal version of VIM, which is installed into /bin/vi for use when only the root partition is present. NOTE: The online help is only available when the vim-common package is installed. Name : ipset Version : 7.1 Release : 1.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:42 AM PDT Group : Unspecified Size : 62030 License : GPLv2 Signature : RSA/SHA256, Thu 22 Aug 2019 02:26:17 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : ipset-7.1-1.el7.src.rpm Build Date : Thu 08 Aug 2019 04:55:38 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://ipset.netfilter.org/ Summary : Manage Linux IP sets Description : IP sets are a framework inside the Linux kernel since version 2.4.x, which can be administered by the ipset utility. Depending on the type, currently an IP set may store IP addresses, (TCP/UDP) port numbers or IP addresses with MAC addresses in a way, which ensures lightning speed when matching an entry against a set. If you want to: - store multiple IP addresses or port numbers and match against the collection by iptables at one swoop; - dynamically update iptables rules against IP addresses or ports without performance penalty; - express complex IP address and ports based rulesets with one single iptables rule and benefit from the speed of IP sets then ipset may be the proper tool for you. Name : util-linux Version : 2.23.2 Release : 61.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:43 AM PDT Group : System Environment/Base Size : 8482880 License : GPLv2 and GPLv2+ and LGPLv2+ and BSD with advertising and Public Domain Signature : RSA/SHA256, Thu 22 Aug 2019 02:45:03 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : util-linux-2.23.2-61.el7.src.rpm Build Date : Thu 08 Aug 2019 08:10:20 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://en.wikipedia.org/wiki/Util-linux Summary : A collection of basic system utilities Description : The util-linux package contains a large variety of low-level system utilities that are necessary for a Linux system to function. Among others, Util-linux contains the fdisk configuration tool and the login program. Name : device-mapper Epoch : 7 Version : 1.02.158 Release : 2.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:43 AM PDT Group : System Environment/Base Size : 340425 License : GPLv2 Signature : RSA/SHA256, Thu 22 Aug 2019 02:22:06 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : lvm2-2.02.185-2.el7.src.rpm Build Date : Thu 08 Aug 2019 05:44:27 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://sources.redhat.com/dm Summary : Device mapper utility Description : This package contains the supporting userspace utility, dmsetup, for the kernel device-mapper. Name : device-mapper-libs Epoch : 7 Version : 1.02.158 Release : 2.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:43 AM PDT Group : System Environment/Libraries Size : 400543 License : LGPLv2 Signature : RSA/SHA256, Thu 22 Aug 2019 02:22:11 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : lvm2-2.02.185-2.el7.src.rpm Build Date : Thu 08 Aug 2019 05:44:27 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://sources.redhat.com/lvm2 Summary : Device-mapper shared library Description : This package contains the device-mapper shared library, libdevmapper. Name : dracut Version : 033 Release : 564.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:44 AM PDT Group : System Environment/Base Size : 904892 License : GPLv2+ and LGPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:22:24 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : dracut-033-564.el7.src.rpm Build Date : Thu 08 Aug 2019 04:14:34 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://dracut.wiki.kernel.org/ Summary : Initramfs generator using udev Description : dracut contains tools to create a bootable initramfs for 2.6 Linux kernels. Unlike existing implementations, dracut does hard-code as little as possible into the initramfs. dracut contains various modules which are driven by the event-based udev. Having root on MD, DM, LVM2, LUKS is supported as well as NFS, iSCSI, NBD, FCoE with the dracut-network package. Name : systemd-libs Version : 219 Release : 67.el7_7.1 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:44 AM PDT Group : Unspecified Size : 1258408 License : LGPLv2+ and MIT Signature : RSA/SHA256, Sat 14 Sep 2019 04:50:37 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : systemd-219-67.el7_7.1.src.rpm Build Date : Fri 13 Sep 2019 11:21:31 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.freedesktop.org/wiki/Software/systemd Summary : systemd libraries Description : Libraries for systemd and udev, as well as the systemd PAM module. Name : systemd Version : 219 Release : 67.el7_7.1 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:46 AM PDT Group : Unspecified Size : 24404590 License : LGPLv2+ and MIT and GPLv2+ Signature : RSA/SHA256, Sat 14 Sep 2019 04:50:34 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : systemd-219-67.el7_7.1.src.rpm Build Date : Fri 13 Sep 2019 11:21:31 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.freedesktop.org/wiki/Software/systemd Summary : A System and Service Manager Description : systemd is a system and service manager for Linux, compatible with SysV and LSB init scripts. systemd provides aggressive parallelization capabilities, uses socket and D-Bus activation for starting services, offers on-demand starting of daemons, keeps track of processes using Linux cgroups, supports snapshotting and restoring of the system state, maintains mount and automount points and implements an elaborate transactional dependency-based service control logic. It can work as a drop-in replacement for sysvinit. Name : policycoreutils Version : 2.5 Release : 33.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:48 AM PDT Group : System Environment/Base Size : 5329482 License : GPLv2 Signature : RSA/SHA256, Thu 22 Aug 2019 02:39:35 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : policycoreutils-2.5-33.el7.src.rpm Build Date : Thu 08 Aug 2019 06:47:35 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.selinuxproject.org Summary : SELinux policy core utilities Description : Security-enhanced Linux is a feature of the Linux® kernel and a number of utilities with enhanced security functionality designed to add mandatory access controls to Linux. The Security-enhanced Linux kernel contains new architectural components originally developed to improve the security of the Flask operating system. These architectural components provide general support for the enforcement of many kinds of mandatory access control policies, including those based on the concepts of Type Enforcement®, Role-based Access Control, and Multi-level Security. policycoreutils contains the policy core utilities that are required for basic operation of a SELinux system. These utilities include load_policy to load policies, setfiles to label filesystems, newrole to switch roles. Name : device-mapper-event-libs Epoch : 7 Version : 1.02.158 Release : 2.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:48 AM PDT Group : System Environment/Libraries Size : 50564 License : LGPLv2 Signature : RSA/SHA256, Thu 22 Aug 2019 02:22:10 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : lvm2-2.02.185-2.el7.src.rpm Build Date : Thu 08 Aug 2019 05:44:27 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://sources.redhat.com/lvm2 Summary : Device-mapper event daemon shared library Description : This package contains the device-mapper event daemon shared library, libdevmapper-event. Name : grub2-tools Epoch : 1 Version : 2.02 Release : 0.80.el7.centos Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:49 AM PDT Group : System Environment/Base Size : 10080365 License : GPLv3+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:25:16 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : grub2-2.02-0.80.el7.centos.src.rpm Build Date : Thu 08 Aug 2019 04:31:11 AM PDT Build Host : kbuilder.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gnu.org/software/grub/ Summary : Support tools for GRUB. Description : The GRand Unified Bootloader (GRUB) is a highly configurable and customizable bootloader with modular architecture. It supports a rich variety of kernel formats, file systems, computer architectures and hardware devices. This subpackage provides tools for support of all platforms. Name : polkit Version : 0.112 Release : 22.el7_7.1 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:59 AM PDT Group : System Environment/Libraries Size : 487618 License : LGPLv2+ Signature : RSA/SHA256, Sat 14 Sep 2019 04:49:51 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : polkit-0.112-22.el7_7.1.src.rpm Build Date : Fri 13 Sep 2019 11:10:10 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.freedesktop.org/wiki/Software/polkit Summary : An authorization framework Description : polkit is a toolkit for defining and handling authorizations. It is used for allowing unprivileged processes to speak to privileged processes. Name : NetworkManager-libnm Epoch : 1 Version : 1.18.0 Release : 5.el7_7.1 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:00 AM PDT Group : Development/Libraries Size : 9130076 License : GPLv2+ Signature : RSA/SHA256, Sat 14 Sep 2019 04:49:28 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : NetworkManager-1.18.0-5.el7_7.1.src.rpm Build Date : Fri 13 Sep 2019 11:05:30 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gnome.org/projects/NetworkManager/ Summary : Libraries for adding NetworkManager support to applications (new API). Description : This package contains the libraries that make it easier to use some NetworkManager functionality from applications. This is the new NetworkManager API. See also NetworkManager-glib. Name : openssh Version : 7.4p1 Release : 21.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:01 AM PDT Group : Applications/Internet Size : 1991172 License : BSD Signature : RSA/SHA256, Thu 22 Aug 2019 02:37:23 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : openssh-7.4p1-21.el7.src.rpm Build Date : Thu 08 Aug 2019 06:40:49 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.openssh.com/portable.html Summary : An open source implementation of SSH protocol versions 1 and 2 Description : SSH (Secure SHell) is a program for logging into and executing commands on a remote machine. SSH is intended to replace rlogin and rsh, and to provide secure encrypted communications between two untrusted hosts over an insecure network. X11 connections and arbitrary TCP/IP ports can also be forwarded over the secure channel. OpenSSH is OpenBSD's version of the last free version of SSH, bringing it up to date in terms of security and features. This package includes the core files necessary for both the OpenSSH client and server. To make this package useful, you should also install openssh-clients, openssh-server, or both. Name : dhclient Epoch : 12 Version : 4.2.5 Release : 77.el7.centos Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:02 AM PDT Group : System Environment/Base Size : 486079 License : ISC Signature : RSA/SHA256, Thu 22 Aug 2019 02:22:16 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : dhcp-4.2.5-77.el7.centos.src.rpm Build Date : Thu 08 Aug 2019 04:10:22 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://isc.org/products/DHCP/ Summary : Provides the ISC DHCP client daemon and dhclient-script Description : DHCP (Dynamic Host Configuration Protocol) is a protocol which allows individual devices on an IP network to get their own network configuration information (IP address, subnetmask, broadcast address, etc.) from a DHCP server. The overall purpose of DHCP is to make it easier to administer a large network. To use DHCP on your network, install a DHCP service (or relay agent), and on clients run a DHCP client daemon. The dhclient package provides the ISC DHCP client daemon. Name : selinux-policy-targeted Version : 3.13.1 Release : 252.el7.1 Architecture: noarch Install Date: Wed 16 Oct 2019 09:22:04 AM PDT Group : System Environment/Base Size : 20080630 License : GPLv2+ Signature : RSA/SHA256, Sat 14 Sep 2019 10:10:22 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : selinux-policy-3.13.1-252.el7.1.src.rpm Build Date : Tue 10 Sep 2019 08:01:56 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://oss.tresys.com/repos/refpolicy/ Summary : SELinux targeted base policy Description : SELinux Reference policy targeted base module. Name : grub2-pc Epoch : 1 Version : 2.02 Release : 0.80.el7.centos Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:14 AM PDT Group : System Environment/Base Size : 0 License : GPLv3+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:25:15 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : grub2-2.02-0.80.el7.centos.src.rpm Build Date : Thu 08 Aug 2019 04:31:11 AM PDT Build Host : kbuilder.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gnu.org/software/grub/ Summary : Bootloader with support for Linux, Multiboot, and more Description : The GRand Unified Bootloader (GRUB) is a highly configurable and customizable bootloader with modular architecture. It supports a rich variety of kernel formats, file systems, computer architectures and hardware devices. This subpackage provides support for pc systems. Name : lvm2-libs Epoch : 7 Version : 2.02.185 Release : 2.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:15 AM PDT Group : System Environment/Libraries Size : 3791460 License : LGPLv2 Signature : RSA/SHA256, Thu 22 Aug 2019 02:34:53 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : lvm2-2.02.185-2.el7.src.rpm Build Date : Thu 08 Aug 2019 05:44:27 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://sources.redhat.com/lvm2 Summary : Shared libraries for lvm2 Description : This package contains shared lvm2 libraries for applications. Name : libdrm Version : 2.4.97 Release : 2.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:15 AM PDT Group : System Environment/Libraries Size : 367605 License : MIT Signature : RSA/SHA256, Thu 22 Aug 2019 02:29:31 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : libdrm-2.4.97-2.el7.src.rpm Build Date : Thu 08 Aug 2019 05:15:34 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://dri.sourceforge.net Summary : Direct Rendering Manager runtime library Description : Direct Rendering Manager runtime library Name : cronie Version : 1.4.11 Release : 23.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:15 AM PDT Group : System Environment/Base Size : 220592 License : MIT and BSD and ISC and GPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:21:40 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : cronie-1.4.11-23.el7.src.rpm Build Date : Thu 08 Aug 2019 04:07:25 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://github.com/cronie-crond/cronie Summary : Cron daemon for executing programs at set times Description : Cronie contains the standard UNIX daemon crond that runs specified programs at scheduled times and related tools. It is a fork of the original vixie-cron and has security and configuration enhancements like the ability to use pam and SELinux. Name : libcgroup Version : 0.41 Release : 21.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:16 AM PDT Group : Development/Libraries Size : 137130 License : LGPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:29:11 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : libcgroup-0.41-21.el7.src.rpm Build Date : Thu 08 Aug 2019 05:14:24 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://libcg.sourceforge.net/ Summary : Library to control and monitor control groups Description : Control groups infrastructure. The library helps manipulate, control, administrate and monitor control groups and the associated controllers. Name : container-selinux Epoch : 2 Version : 2.107 Release : 3.el7 Architecture: noarch Install Date: Wed 16 Oct 2019 09:22:16 AM PDT Group : Unspecified Size : 41133 License : GPLv2 Signature : RSA/SHA256, Mon 16 Sep 2019 05:34:22 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : container-selinux-2.107-3.el7.src.rpm Build Date : Sun 15 Sep 2019 07:05:16 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://github.com/containers/container-selinux Summary : SELinux policies for container runtimes Description : SELinux policy modules for use with container runtimes. Name : docker-client Epoch : 2 Version : 1.13.1 Release : 103.git7f2769b.el7.centos Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:27 AM PDT Group : Unspecified Size : 13168359 License : ASL 2.0 Signature : RSA/SHA256, Mon 16 Sep 2019 05:33:24 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : docker-1.13.1-103.git7f2769b.el7.centos.src.rpm Build Date : Sun 15 Sep 2019 07:07:52 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://github.com/docker/docker Summary : Client side files for Docker Description : Client side files for Docker Name : plymouth-scripts Version : 0.8.9 Release : 0.32.20140113.el7.centos Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:27 AM PDT Group : Applications/System Size : 22795 License : GPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:39:27 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : plymouth-0.8.9-0.32.20140113.el7.centos.src.rpm Build Date : Thu 08 Aug 2019 04:51:46 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.freedesktop.org/wiki/Software/Plymouth Summary : Plymouth related scripts Description : This package contains scripts that help integrate Plymouth with the system. Name : numactl-libs Version : 2.0.12 Release : 3.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:27 AM PDT Group : System Environment/Libraries Size : 46608 License : LGPLv2 and GPLv2 Signature : RSA/SHA256, Thu 22 Aug 2019 02:36:39 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : numactl-2.0.12-3.el7.src.rpm Build Date : Thu 08 Aug 2019 06:23:34 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://github.com/numactl/numactl Summary : libnuma libraries Description : numactl-libs provides libnuma, a library to do allocations with NUMA policy in applications. Name : kernel Version : 3.10.0 Release : 1062.1.2.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:43 AM PDT Group : System Environment/Kernel Size : 67075707 License : GPLv2 Signature : RSA/SHA256, Wed 02 Oct 2019 07:15:46 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : kernel-3.10.0-1062.1.2.el7.src.rpm Build Date : Mon 30 Sep 2019 07:39:55 AM PDT Build Host : kbuilder.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.kernel.org/ Summary : The Linux kernel Description : The kernel package contains the Linux kernel (vmlinuz), the core of any Linux operating system. The kernel handles the basic functions of the operating system: memory allocation, process allocation, device input and output, etc. Name : docker Epoch : 2 Version : 1.13.1 Release : 103.git7f2769b.el7.centos Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:48 AM PDT Group : Unspecified Size : 67678219 License : ASL 2.0 Signature : RSA/SHA256, Mon 16 Sep 2019 05:33:23 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : docker-1.13.1-103.git7f2769b.el7.centos.src.rpm Build Date : Sun 15 Sep 2019 07:07:52 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://github.com/docker/docker Summary : Automates deployment of containerized applications Description : Docker is an open-source engine that automates the deployment of any application as a lightweight, portable, self-sufficient container that will run virtually anywhere. Docker containers can encapsulate any payload, and will run consistently on and between virtually any server. The same container that a developer builds and tests on a laptop will run at scale, in production*, on VMs, bare-metal servers, OpenStack clusters, public instances, or combinations of the above. Name : grub2 Epoch : 1 Version : 2.02 Release : 0.80.el7.centos Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:48 AM PDT Group : System Environment/Base Size : 0 License : GPLv3+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:25:10 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : grub2-2.02-0.80.el7.centos.src.rpm Build Date : Thu 08 Aug 2019 04:31:11 AM PDT Build Host : kbuilder.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gnu.org/software/grub/ Summary : Bootloader with support for Linux, Multiboot and more Description : The GRand Unified Bootloader (GRUB) is a highly configurable and customizable bootloader with modular architecture. It supports a rich variety of kernel formats, file systems, computer architectures and hardware devices. Name : openssh-server Version : 7.4p1 Release : 21.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:49 AM PDT Group : System Environment/Daemons Size : 993586 License : BSD Signature : RSA/SHA256, Thu 22 Aug 2019 02:37:29 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : openssh-7.4p1-21.el7.src.rpm Build Date : Thu 08 Aug 2019 06:40:49 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.openssh.com/portable.html Summary : An open source SSH server daemon Description : OpenSSH is a free version of SSH (Secure SHell), a program for logging into and executing commands on a remote machine. This package contains the secure shell daemon (sshd). The sshd daemon allows SSH clients to securely connect to your SSH server. Name : NetworkManager-team Epoch : 1 Version : 1.18.0 Release : 5.el7_7.1 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:49 AM PDT Group : System Environment/Base Size : 41352 License : GPLv2+ Signature : RSA/SHA256, Sat 14 Sep 2019 04:49:32 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : NetworkManager-1.18.0-5.el7_7.1.src.rpm Build Date : Fri 13 Sep 2019 11:05:30 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gnome.org/projects/NetworkManager/ Summary : Team device plugin for NetworkManager Description : This package contains NetworkManager support for team devices. Name : NetworkManager-wifi Epoch : 1 Version : 1.18.0 Release : 5.el7_7.1 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:49 AM PDT Group : System Environment/Base Size : 152272 License : GPLv2+ Signature : RSA/SHA256, Sat 14 Sep 2019 04:49:33 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : NetworkManager-1.18.0-5.el7_7.1.src.rpm Build Date : Fri 13 Sep 2019 11:05:30 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gnome.org/projects/NetworkManager/ Summary : Wifi plugin for NetworkManager Description : This package contains NetworkManager support for Wifi and OLPC devices. Name : biosdevname Version : 0.7.3 Release : 2.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:50 AM PDT Group : System Environment/Base Size : 59254 License : GPLv2 Signature : RSA/SHA256, Thu 22 Aug 2019 02:21:00 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : biosdevname-0.7.3-2.el7.src.rpm Build Date : Thu 08 Aug 2019 04:01:34 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://github.com/dell/biosdevname Summary : Udev helper for naming devices per BIOS names Description : biosdevname in its simplest form takes a kernel device name as an argument, and returns the BIOS-given name it "should" be. This is necessary on systems where the BIOS name for a given device (e.g. the label on the chassis is "Gb1") doesn't map directly and obviously to the kernel name (e.g. eth0). Name : hwdata Version : 0.252 Release : 9.3.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:51 AM PDT Group : System Environment/Base Size : 14178032 License : GPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:25:37 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : hwdata-0.252-9.3.el7.src.rpm Build Date : Thu 08 Aug 2019 04:47:24 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://github.com/vcrhonek/hwdata Summary : Hardware identification and configuration data Description : hwdata contains various hardware identification and configuration data, such as the pci.ids and usb.ids databases. Name : rsyslog Version : 8.24.0 Release : 41.el7_7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:53 AM PDT Group : System Environment/Daemons Size : 2002492 License : (GPLv3+ and ASL 2.0) Signature : RSA/SHA256, Sat 14 Sep 2019 04:50:07 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : rsyslog-8.24.0-41.el7_7.src.rpm Build Date : Fri 13 Sep 2019 11:14:54 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.rsyslog.com/ Summary : Enhanced system logging and kernel message trapping daemon Description : Rsyslog is an enhanced, multi-threaded syslog daemon. It supports MySQL, syslog/TCP, RFC 3195, permitted sender lists, filtering on any message part, and fine grain output format control. It is compatible with stock sysklogd and can be used as a drop-in replacement. Rsyslog is simple to set up, with advanced features suitable for enterprise-class, encryption-protected syslog relay chains. Name : dracut-config-rescue Version : 033 Release : 564.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:57 AM PDT Group : System Environment/Base Size : 4067 License : GPLv2+ and LGPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:22:27 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : dracut-033-564.el7.src.rpm Build Date : Thu 08 Aug 2019 04:14:34 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://dracut.wiki.kernel.org/ Summary : dracut configuration to turn on rescue image generation Description : This package provides the configuration to turn on the rescue initramfs generation with dracut. Name : sudo Version : 1.8.23 Release : 4.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:58 AM PDT Group : Applications/System Size : 3195829 License : ISC Signature : RSA/SHA256, Thu 22 Aug 2019 02:44:10 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : sudo-1.8.23-4.el7.src.rpm Build Date : Thu 08 Aug 2019 07:58:23 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.courtesan.com/sudo/ Summary : Allows restricted root access for specified users Description : Sudo (superuser do) allows a system administrator to give certain users (or groups of users) the ability to run some (or all) commands as root while logging all commands and arguments. Sudo operates on a per-command basis. It is not a replacement for the shell. Features include: the ability to restrict what commands a user may run on a per-host basis, copious logging of each command (providing a clear audit trail of who did what), a configurable timeout of the sudo command, and the ability to use the same configuration file (sudoers) on many different machines. Name : kernel-tools Version : 3.10.0 Release : 1062.1.2.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:59 AM PDT Group : Development/System Size : 299146 License : GPLv2 Signature : RSA/SHA256, Wed 02 Oct 2019 07:15:58 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : kernel-3.10.0-1062.1.2.el7.src.rpm Build Date : Mon 30 Sep 2019 07:39:55 AM PDT Build Host : kbuilder.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.kernel.org/ Summary : Assortment of tools for the Linux kernel Description : This package contains the tools/ directory from the kernel source and the supporting documentation. Name : bind-libs-lite Epoch : 32 Version : 9.11.4 Release : 9.P2.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:59 AM PDT Group : Unspecified Size : 3091672 License : MPLv2.0 Signature : RSA/SHA256, Thu 22 Aug 2019 02:20:49 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : bind-9.11.4-9.P2.el7.src.rpm Build Date : Thu 08 Aug 2019 05:20:30 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.isc.org/products/BIND/ Summary : Libraries for working with the DNS protocol Description : Contains lite version of BIND suite libraries which are used by various programs to work with DNS protocol. Name : nss-tools Version : 3.44.0 Release : 4.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:23:00 AM PDT Group : System Environment/Base Size : 2106883 License : MPLv2.0 Signature : RSA/SHA256, Thu 22 Aug 2019 02:36:33 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : nss-3.44.0-4.el7.src.rpm Build Date : Mon 12 Aug 2019 10:02:37 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.mozilla.org/projects/security/pki/nss/ Summary : Tools for the Network Security Services Description : Network Security Services (NSS) is a set of libraries designed to support cross-platform development of security-enabled client and server applications. Applications built with NSS can support SSL v2 and v3, TLS, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, X.509 v3 certificates, and other security standards. Install the nss-tools package if you need command-line tools to manipulate the NSS certificate and key database. Name : alsa-lib Version : 1.1.8 Release : 1.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:23:01 AM PDT Group : System Environment/Libraries Size : 1433144 License : LGPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:20:17 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : alsa-lib-1.1.8-1.el7.src.rpm Build Date : Thu 08 Aug 2019 05:01:06 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.alsa-project.org/ Summary : The Advanced Linux Sound Architecture (ALSA) library Description : The Advanced Linux Sound Architecture (ALSA) provides audio and MIDI functionality to the Linux operating system. This package includes the ALSA runtime libraries to simplify application programming and provide higher level functionality as well as support for the older OSS API, providing binary compatibility for most OSS programs. Name : iprutils Version : 2.4.17.1 Release : 2.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:23:01 AM PDT Group : System Environment/Base Size : 955829 License : CPL Signature : RSA/SHA256, Thu 22 Aug 2019 02:26:16 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : iprutils-2.4.17.1-2.el7.src.rpm Build Date : Thu 08 Aug 2019 04:59:00 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://sourceforge.net/projects/iprdd/ Summary : Utilities for the IBM Power Linux RAID adapters Description : Provides a suite of utilities to manage and configure SCSI devices supported by the ipr SCSI storage device driver. Name : iwl100-firmware Version : 39.31.5.1 Release : 72.el7 Architecture: noarch Install Date: Wed 16 Oct 2019 09:23:01 AM PDT Group : System Environment/Kernel Size : 474702 License : Redistributable, no modification permitted Signature : RSA/SHA256, Thu 22 Aug 2019 02:58:01 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : linux-firmware-20190429-72.gitddde598.el7.src.rpm Build Date : Thu 08 Aug 2019 05:22:46 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/ Summary : Firmware for Intel(R) Wireless WiFi Link 100 Series Adapters Description : This package contains the firmware required by the iwlagn driver for Linux to support the iwl100 hardware. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully. Name : iwl6000g2b-firmware Version : 17.168.5.2 Release : 72.el7 Architecture: noarch Install Date: Wed 16 Oct 2019 09:23:02 AM PDT Group : System Environment/Kernel Size : 1276802 License : Redistributable, no modification permitted Signature : RSA/SHA256, Thu 22 Aug 2019 02:58:13 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : linux-firmware-20190429-72.gitddde598.el7.src.rpm Build Date : Thu 08 Aug 2019 05:22:46 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/ Summary : Firmware for Intel(R) Wireless WiFi Link 6030 Series Adapters Description : This package contains the firmware required by the iwlagn driver for Linux. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully. Name : iwl1000-firmware Epoch : 1 Version : 39.31.5.1 Release : 72.el7 Architecture: noarch Install Date: Wed 16 Oct 2019 09:23:02 AM PDT Group : System Environment/Kernel Size : 809706 License : Redistributable, no modification permitted Signature : RSA/SHA256, Thu 22 Aug 2019 02:58:00 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : linux-firmware-20190429-72.gitddde598.el7.src.rpm Build Date : Thu 08 Aug 2019 05:22:46 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/ Summary : Firmware for Intel® PRO/Wireless 1000 B/G/N network adaptors Description : This package contains the firmware required by the iwlagn driver for Linux to support the iwl1000 hardware. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully. Name : iwl105-firmware Version : 18.168.6.1 Release : 72.el7 Architecture: noarch Install Date: Wed 16 Oct 2019 09:23:02 AM PDT Group : System Environment/Kernel Size : 826810 License : Redistributable, no modification permitted Signature : RSA/SHA256, Thu 22 Aug 2019 02:58:02 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : linux-firmware-20190429-72.gitddde598.el7.src.rpm Build Date : Thu 08 Aug 2019 05:22:46 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/ Summary : Firmware for Intel(R) Centrino Wireless-N 105 Series Adapters Description : This package contains the firmware required by the iwlagn driver for Linux to support the iwl105 hardware. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully. Name : iwl4965-firmware Version : 228.61.2.24 Release : 72.el7 Architecture: noarch Install Date: Wed 16 Oct 2019 09:23:02 AM PDT Group : System Environment/Kernel Size : 325102 License : Redistributable, no modification permitted Signature : RSA/SHA256, Thu 22 Aug 2019 02:58:08 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : linux-firmware-20190429-72.gitddde598.el7.src.rpm Build Date : Thu 08 Aug 2019 05:22:46 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/ Summary : Firmware for Intel® PRO/Wireless 4965 A/G/N network adaptors Description : This package contains the firmware required by the iwl4965 driver for Linux. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully. Name : iwl6050-firmware Version : 41.28.5.1 Release : 72.el7 Architecture: noarch Install Date: Wed 16 Oct 2019 09:23:02 AM PDT Group : System Environment/Kernel Size : 1070602 License : Redistributable, no modification permitted Signature : RSA/SHA256, Thu 22 Aug 2019 02:58:14 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : linux-firmware-20190429-72.gitddde598.el7.src.rpm Build Date : Thu 08 Aug 2019 05:22:46 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/ Summary : Firmware for Intel(R) Wireless WiFi Link 6050 Series Adapters Description : This package contains the firmware required by the iwlagn driver for Linux. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully. Name : iwl5000-firmware Version : 8.83.5.1_1 Release : 72.el7 Architecture: noarch Install Date: Wed 16 Oct 2019 09:23:05 AM PDT Group : System Environment/Kernel Size : 1176074 License : Redistributable, no modification permitted Signature : RSA/SHA256, Thu 22 Aug 2019 02:58:09 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : linux-firmware-20190429-72.gitddde598.el7.src.rpm Build Date : Thu 08 Aug 2019 05:22:46 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/ Summary : Firmware for Intel® PRO/Wireless 5000 A/G/N network adaptors Description : This package contains the firmware required by the iwl5000 driver for Linux. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully. Name : iwl2000-firmware Version : 18.168.6.1 Release : 72.el7 Architecture: noarch Install Date: Wed 16 Oct 2019 09:23:05 AM PDT Group : System Environment/Kernel Size : 833006 License : Redistributable, no modification permitted Signature : RSA/SHA256, Thu 22 Aug 2019 02:58:04 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : linux-firmware-20190429-72.gitddde598.el7.src.rpm Build Date : Thu 08 Aug 2019 05:22:46 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/ Summary : Firmware for Intel(R) Centrino Wireless-N 2000 Series Adapters Description : This package contains the firmware required by the iwlagn driver for Linux to support the iwl2000 hardware. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully. Name : iwl3160-firmware Version : 22.0.7.0 Release : 72.el7 Architecture: noarch Install Date: Wed 16 Oct 2019 09:23:07 AM PDT Group : System Environment/Kernel Size : 10445414 License : Redistributable, no modification permitted Signature : RSA/SHA256, Thu 22 Aug 2019 02:58:06 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : linux-firmware-20190429-72.gitddde598.el7.src.rpm Build Date : Thu 08 Aug 2019 05:22:46 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/ Summary : Firmware for Intel(R) Dual Band Wireless-AC 3160 Series Adapters Description : This package contains the firmware required by the iwlagn driver for Linux to support the iwl3160 hardware. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully. Name : nss-sysinit Version : 3.44.0 Release : 4.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:33 AM PDT Group : System Environment/Base Size : 14111 License : MPLv2.0 Signature : RSA/SHA256, Thu 22 Aug 2019 02:36:32 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : nss-3.44.0-4.el7.src.rpm Build Date : Mon 12 Aug 2019 10:02:37 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.mozilla.org/projects/security/pki/nss/ Summary : System NSS Initialization Description : Default Operating System module that manages applications loading NSS globally on the system. This module loads the system defined PKCS #11 modules for NSS and chains with other NSS modules to load any system or user configured modules. Name : lz4 Version : 1.7.5 Release : 3.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:34 AM PDT Group : Unspecified Size : 366856 License : GPLv2+ and BSD Signature : RSA/SHA256, Thu 22 Aug 2019 02:34:57 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : lz4-1.7.5-3.el7.src.rpm Build Date : Thu 08 Aug 2019 05:45:35 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://lz4.github.io/lz4/ Summary : Extremely fast compression algorithm Description : LZ4 is an extremely fast loss-less compression algorithm, providing compression speed at 400 MB/s per core, scalable with multi-core CPU. It also features an extremely fast decoder, with speed in multiple GB/s per core, typically reaching RAM speed limits on multi-core systems. Name : iproute Version : 4.11.0 Release : 25.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:35 AM PDT Group : Applications/System Size : 1901353 License : GPLv2+ and Public Domain Signature : RSA/SHA256, Thu 22 Aug 2019 02:26:13 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : iproute-4.11.0-25.el7.src.rpm Build Date : Thu 08 Aug 2019 04:55:19 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://kernel.org/pub/linux/utils/net/iproute2/ Summary : Advanced IP routing and network device configuration tools Description : The iproute package contains networking utilities (ip and rtmon, for example) which are designed to use the advanced networking capabilities of the Linux kernel. Name : libstdc++ Version : 4.8.5 Release : 39.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:35 AM PDT Group : System Environment/Libraries Size : 1077442 License : GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions and LGPLv2+ and BSD Signature : RSA/SHA256, Thu 22 Aug 2019 02:33:21 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : gcc-4.8.5-39.el7.src.rpm Build Date : Tue 06 Aug 2019 10:15:38 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://gcc.gnu.org Summary : GNU Standard C++ Library Description : The libstdc++ package contains a rewritten standard compliant GCC Standard C++ Library. Name : atomic-registries Epoch : 1 Version : 1.22.1 Release : 29.gitb507039.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:35 AM PDT Group : Unspecified Size : 43244 License : LGPLv2+ Signature : RSA/SHA256, Mon 16 Sep 2019 05:33:09 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : atomic-1.22.1-29.gitb507039.el7.src.rpm Build Date : Sun 15 Sep 2019 07:10:06 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://github.com/projectatomic/atomic Summary : Parses a global YAML registry file Description : Utility that parses a global YAML registry file for container runtimes. Name : python-perf Version : 3.10.0 Release : 1062.1.2.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:35 AM PDT Group : Development/Libraries Size : 340133 License : GPLv2 Signature : RSA/SHA256, Wed 02 Oct 2019 07:16:06 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : kernel-3.10.0-1062.1.2.el7.src.rpm Build Date : Mon 30 Sep 2019 07:39:55 AM PDT Build Host : kbuilder.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.kernel.org/ Summary : Python bindings for apps which will manipulate perf events Description : The python-perf package contains a module that permits applications written in the Python programming language to use the interface to manipulate perf events. Name : python-firewall Version : 0.6.3 Release : 2.el7_7.1 Architecture: noarch Install Date: Wed 16 Oct 2019 09:21:36 AM PDT Group : Unspecified Size : 1971540 License : GPLv2+ Signature : RSA/SHA256, Sat 14 Sep 2019 04:53:09 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : firewalld-0.6.3-2.el7_7.1.src.rpm Build Date : Fri 13 Sep 2019 11:02:20 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.firewalld.org Summary : Python2 bindings for firewalld Description : Python2 bindings for firewalld. Name : libdb-utils Version : 5.3.21 Release : 25.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:37 AM PDT Group : Applications/Databases Size : 322471 License : BSD and LGPLv2 and Sleepycat Signature : RSA/SHA256, Thu 22 Aug 2019 02:29:28 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : libdb-5.3.21-25.el7.src.rpm Build Date : Thu 08 Aug 2019 05:18:38 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.oracle.com/database/berkeley-db/ Summary : Command line tools for managing Berkeley DB databases Description : The Berkeley Database (Berkeley DB) is a programmatic toolkit that provides embedded database support for both traditional and client/server applications. Berkeley DB includes B+tree, Extended Linear Hashing, Fixed and Variable-length record access methods, transactions, locking, logging, shared memory caching, and database recovery. DB supports C, C++, Java and Perl APIs. Name : bind-export-libs Epoch : 32 Version : 9.11.4 Release : 9.P2.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:37 AM PDT Group : Unspecified Size : 3007945 License : MPLv2.0 Signature : RSA/SHA256, Thu 22 Aug 2019 02:20:47 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : bind-9.11.4-9.P2.el7.src.rpm Build Date : Thu 08 Aug 2019 05:20:30 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.isc.org/products/BIND/ Summary : ISC libs for DHCP application Description : BIND (Berkeley Internet Name Domain) is an implementation of the DNS (Domain Name System) protocols. This package set contains only export version of BIND libraries, that are used for building ISC DHCP. Name : libssh2 Version : 1.8.0 Release : 3.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:38 AM PDT Group : System Environment/Libraries Size : 191464 License : BSD Signature : RSA/SHA256, Thu 22 Aug 2019 02:33:10 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : libssh2-1.8.0-3.el7.src.rpm Build Date : Thu 08 Aug 2019 05:31:49 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.libssh2.org/ Summary : A library implementing the SSH2 protocol Description : libssh2 is a library implementing the SSH2 protocol as defined by Internet Drafts: SECSH-TRANS(22), SECSH-USERAUTH(25), SECSH-CONNECTION(23), SECSH-ARCH(20), SECSH-FILEXFER(06)*, SECSH-DHGEX(04), and SECSH-NUMBERS(10). Name : geoipupdate Version : 2.5.0 Release : 1.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:39 AM PDT Group : Unspecified Size : 62806 License : GPLv2 Signature : RSA/SHA256, Thu 22 Aug 2019 02:24:33 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : geoipupdate-2.5.0-1.el7.src.rpm Build Date : Mon 12 Aug 2019 01:21:19 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://dev.maxmind.com/geoip/geoipupdate/ Summary : Update GeoIP2 and GeoIP Legacy binary databases from MaxMind Description : The GeoIP Update program performs automatic updates of GeoIP2 and GeoIP Legacy binary databases. Name : curl Version : 7.29.0 Release : 54.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:39 AM PDT Group : Applications/Internet Size : 540460 License : MIT Signature : RSA/SHA256, Thu 22 Aug 2019 02:21:58 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : curl-7.29.0-54.el7.src.rpm Build Date : Thu 08 Aug 2019 05:02:11 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://curl.haxx.se/ Summary : A utility for getting files from remote servers (FTP, HTTP, and others) Description : curl is a command line tool for transferring data with URL syntax, supporting FTP, FTPS, HTTP, HTTPS, SCP, SFTP, TFTP, TELNET, DICT, LDAP, LDAPS, FILE, IMAP, SMTP, POP3 and RTSP. curl supports SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload, proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate, kerberos...), file transfer resume, proxy tunneling and a busload of other useful tricks. Name : rpm-libs Version : 4.11.3 Release : 40.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:40 AM PDT Group : Development/Libraries Size : 611456 License : GPLv2+ and LGPLv2+ with exceptions Signature : RSA/SHA256, Thu 22 Aug 2019 02:42:37 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : rpm-4.11.3-40.el7.src.rpm Build Date : Tue 06 Aug 2019 03:50:54 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.rpm.org/ Summary : Libraries for manipulating RPM packages Description : This package contains the RPM shared libraries. Name : rpm-python Version : 4.11.3 Release : 40.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:40 AM PDT Group : Development/Libraries Size : 149898 License : GPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:42:38 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : rpm-4.11.3-40.el7.src.rpm Build Date : Tue 06 Aug 2019 03:50:54 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.rpm.org/ Summary : Python bindings for apps which will manipulate RPM packages Description : The rpm-python package contains a module that permits applications written in the Python programming language to use the interface supplied by RPM Package Manager libraries. This package should be installed if you want to develop Python programs that will manipulate RPM packages and databases. Name : yum Version : 3.4.3 Release : 163.el7.centos Architecture: noarch Install Date: Wed 16 Oct 2019 09:21:41 AM PDT Group : System Environment/Base Size : 5827255 License : GPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 03:01:55 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : yum-3.4.3-163.el7.centos.src.rpm Build Date : Thu 08 Aug 2019 04:57:56 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://yum.baseurl.org/ Summary : RPM package installer/updater/manager Description : Yum is a utility that can check for and automatically download and install updated RPM packages. Dependencies are obtained and downloaded automatically, prompting the user for permission as necessary. Name : e2fsprogs-libs Version : 1.42.9 Release : 16.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:41 AM PDT Group : Development/Libraries Size : 363697 License : GPLv2 and LGPLv2 Signature : RSA/SHA256, Thu 22 Aug 2019 02:22:41 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : e2fsprogs-1.42.9-16.el7.src.rpm Build Date : Thu 08 Aug 2019 04:19:51 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://e2fsprogs.sourceforge.net/ Summary : Ext2/3/4 filesystem-specific shared libraries Description : E2fsprogs-libs contains libe2p and libext2fs, the libraries of the e2fsprogs package. These libraries are used to directly acccess ext2/3/4 filesystems from userspace. Name : kmod-libs Version : 20 Release : 25.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:41 AM PDT Group : System Environment/Libraries Size : 91800 License : LGPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:28:24 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : kmod-20-25.el7.src.rpm Build Date : Thu 08 Aug 2019 05:05:58 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary Summary : Libraries to handle kernel module loading and unloading Description : The kmod-libs package provides runtime libraries for any application that wishes to load or unload Linux kernel modules from the running system. Name : freetype Version : 2.8 Release : 14.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:41 AM PDT Group : System Environment/Libraries Size : 824481 License : (FTL or GPLv2+) and BSD and MIT and Public Domain and zlib with acknowledgement Signature : RSA/SHA256, Thu 22 Aug 2019 02:24:12 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : freetype-2.8-14.el7.src.rpm Build Date : Thu 08 Aug 2019 04:30:28 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.freetype.org Summary : A free and portable font rendering engine Description : The FreeType engine is a free and portable font rendering engine, developed to provide advanced font support for a variety of platforms and environments. FreeType is a library which can open and manages font files as well as efficiently load, hint and render individual glyphs. FreeType is not a font server or a complete text-rendering library. Name : teamd Version : 1.27 Release : 9.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:41 AM PDT Group : System Environment/Daemons Size : 277924 License : LGPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:44:34 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : libteam-1.27-9.el7.src.rpm Build Date : Thu 08 Aug 2019 05:33:37 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.libteam.org Summary : Team network device control daemon Description : The teamd package contains team network device control daemon. Name : ipset-libs Version : 7.1 Release : 1.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:42 AM PDT Group : Unspecified Size : 206400 License : GPLv2 Signature : RSA/SHA256, Thu 22 Aug 2019 02:26:18 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : ipset-7.1-1.el7.src.rpm Build Date : Thu 08 Aug 2019 04:55:38 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://ipset.netfilter.org/ Summary : Shared library providing the IP sets functionality Description : This package contains the libraries which provide the IP sets funcionality. Name : kpartx Version : 0.4.9 Release : 127.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:43 AM PDT Group : System Environment/Base Size : 41363 License : GPL+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:28:26 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : device-mapper-multipath-0.4.9-127.el7.src.rpm Build Date : Thu 08 Aug 2019 04:08:46 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://christophe.varoqui.free.fr/ Summary : Partition device manager for device-mapper devices Description : kpartx manages partition creation and removal for device-mapper devices. Name : authconfig Version : 6.2.8 Release : 30.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:53 AM PDT Group : System Environment/Base Size : 2316601 License : GPLv2+ Signature : RSA/SHA256, Thu 10 Aug 2017 08:00:45 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : authconfig-6.2.8-30.el7.src.rpm Build Date : Fri 04 Aug 2017 02:05:38 AM PDT Build Host : c1bm.rdu2.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://fedorahosted.org/authconfig Summary : Command line tool for setting up authentication from network services Description : Authconfig is a command line utility which can configure a workstation to use shadow (more secure) passwords. Authconfig can also configure a system to be a client for certain networked user information and authentication schemes. Name : chkconfig Version : 1.7.4 Release : 1.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:08 AM PDT Group : System Environment/Base Size : 779531 License : GPLv2 Signature : RSA/SHA256, Thu 10 Aug 2017 08:17:48 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : chkconfig-1.7.4-1.el7.src.rpm Build Date : Fri 04 Aug 2017 06:45:51 AM PDT Build Host : c1bm.rdu2.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://github.com/fedora-sysv/chkconfig Summary : A system tool for maintaining the /etc/rc*.d hierarchy Description : Chkconfig is a basic system utility. It updates and queries runlevel information for system services. Chkconfig manipulates the numerous symbolic links in /etc/rc.d, to relieve system administrators of some of the drudgery of manually editing the symbolic links. Name : cryptsetup-libs Version : 2.0.3 Release : 5.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:44 AM PDT Group : System Environment/Libraries Size : 1219599 License : GPLv2+ and LGPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:21:44 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : cryptsetup-2.0.3-5.el7.src.rpm Build Date : Thu 08 Aug 2019 04:07:41 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://gitlab.com/cryptsetup/cryptsetup Summary : Cryptsetup shared library Description : This package contains the cryptsetup shared library, libcryptsetup. Name : setup Version : 2.8.71 Release : 10.el7 Architecture: noarch Install Date: Thu 15 Aug 2019 10:53:12 AM PDT Group : System Environment/Base Size : 696893 License : Public Domain Signature : RSA/SHA256, Mon 12 Nov 2018 07:19:37 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : setup-2.8.71-10.el7.src.rpm Build Date : Tue 30 Oct 2018 12:48:11 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://pagure.io/setup/ Summary : A set of system configuration and setup files Description : The setup package contains a set of important system configuration and setup files, such as passwd, group, and profile. Name : elfutils-libs Version : 0.176 Release : 2.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:45 AM PDT Group : Development/Tools Size : 809871 License : GPLv2+ or LGPLv3+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:22:53 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : elfutils-0.176-2.el7.src.rpm Build Date : Thu 08 Aug 2019 04:16:25 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://elfutils.org/ Summary : Libraries to handle compiled objects Description : The elfutils-libs package contains libraries which implement DWARF, ELF, and machine-specific ELF handling. These libraries are used by the programs in the elfutils package. The elfutils-devel package enables building other programs using these libraries. Name : zlib Version : 1.2.7 Release : 18.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:15 AM PDT Group : System Environment/Libraries Size : 185294 License : zlib and Boost Signature : RSA/SHA256, Mon 12 Nov 2018 06:49:53 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : zlib-1.2.7-18.el7.src.rpm Build Date : Tue 30 Oct 2018 01:24:40 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.zlib.net/ Summary : The compression and decompression library Description : Zlib is a general-purpose, patent-free, lossless data compression library which is used by many different programs. Name : initscripts Version : 9.49.47 Release : 1.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:48 AM PDT Group : System Environment/Base Size : 1523210 License : GPLv2 and GPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:26:07 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : initscripts-9.49.47-1.el7.src.rpm Build Date : Thu 08 Aug 2019 04:52:43 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://github.com/fedora-sysv/initscripts Summary : The inittab file and the /etc/init.d scripts Description : The initscripts package contains basic system scripts used during a boot of the system. It also contains scripts which activate and deactivate most network interfaces. Name : man-db Version : 2.6.3 Release : 11.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:56 AM PDT Group : System Environment/Base Size : 2138837 License : GPLv2+ and GPLv3+ Signature : RSA/SHA256, Mon 12 Nov 2018 06:39:38 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : man-db-2.6.3-11.el7.src.rpm Build Date : Tue 30 Oct 2018 01:26:54 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.nongnu.org/man-db/ Summary : Tools for searching and reading man pages Description : The man-db package includes five tools for browsing man-pages: man, whatis, apropos, manpath and lexgrog. man formats and displays manual pages. whatis searches the manual page names. apropos searches the manual page names and descriptions. manpath determines search path for manual pages. lexgrog directly reads header information in manual pages. Name : popt Version : 1.13 Release : 16.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:16 AM PDT Group : System Environment/Libraries Size : 88516 License : MIT Signature : RSA/SHA256, Thu 03 Jul 2014 09:33:04 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : popt-1.13-16.el7.src.rpm Build Date : Mon 09 Jun 2014 09:03:23 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.rpm5.org/ Summary : C library for parsing command line parameters Description : Popt is a C library for parsing command line parameters. Popt was heavily influenced by the getopt() and getopt_long() functions, but it improves on them by allowing more powerful argument expansion. Popt can parse arbitrary argv[] style arrays and automatically set variables based on command line arguments. Popt allows command line arguments to be aliased via configuration files and includes utility functions for parsing arbitrary strings into argv[] arrays using shell-like rules. Name : selinux-policy Version : 3.13.1 Release : 252.el7.1 Architecture: noarch Install Date: Wed 16 Oct 2019 09:21:49 AM PDT Group : System Environment/Base Size : 6909 License : GPLv2+ Signature : RSA/SHA256, Sat 14 Sep 2019 10:10:14 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : selinux-policy-3.13.1-252.el7.1.src.rpm Build Date : Tue 10 Sep 2019 08:01:56 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://oss.tresys.com/repos/refpolicy/ Summary : SELinux policy configuration Description : SELinux Reference Policy - modular. Based off of reference policy: Checked out revision 2.20091117 Name : gawk Version : 4.0.2 Release : 4.el7_3.1 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:16 AM PDT Group : Applications/Text Size : 2435978 License : GPLv3+ and GPL and LGPLv3+ and LGPL and BSD Signature : RSA/SHA256, Thu 29 Jun 2017 05:40:38 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : gawk-4.0.2-4.el7_3.1.src.rpm Build Date : Wed 28 Jun 2017 02:52:50 PM PDT Build Host : c1bm.rdu2.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gnu.org/software/gawk/gawk.html Summary : The GNU version of the awk text processing utility Description : The gawk package contains the GNU version of awk, a text processing utility. Awk interprets a special-purpose programming language to do quick and easy text pattern matching and reformatting jobs. Install the gawk package if you need a text processing utility. Gawk is considered to be a standard Linux tool for processing text. Name : NetworkManager Epoch : 1 Version : 1.18.0 Release : 5.el7_7.1 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:01 AM PDT Group : System Environment/Base Size : 5360883 License : GPLv2+ Signature : RSA/SHA256, Sat 14 Sep 2019 04:49:22 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : NetworkManager-1.18.0-5.el7_7.1.src.rpm Build Date : Fri 13 Sep 2019 11:05:30 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gnome.org/projects/NetworkManager/ Summary : Network connection manager and user applications Description : NetworkManager is a system service that manages network interfaces and connections based on user or automatic configuration. It supports Ethernet, Bridge, Bond, VLAN, Team, InfiniBand, Wi-Fi, mobile broadband (WWAN), PPPoE and other devices, and supports a variety of different VPN services. Name : libacl Version : 2.2.51 Release : 14.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:16 AM PDT Group : System Environment/Libraries Size : 37056 License : LGPLv2+ Signature : RSA/SHA256, Wed 25 Apr 2018 04:10:52 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : acl-2.2.51-14.el7.src.rpm Build Date : Tue 10 Apr 2018 05:41:24 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://acl.bestbits.at/ Summary : Dynamic library for access control list support Description : This package contains the libacl.so dynamic library which contains the POSIX 1003.1e draft standard 17 functions for manipulating access control lists. Name : dracut-network Version : 033 Release : 564.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:02 AM PDT Group : System Environment/Base Size : 148891 License : GPLv2+ and LGPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:22:29 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : dracut-033-564.el7.src.rpm Build Date : Thu 08 Aug 2019 04:14:34 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://dracut.wiki.kernel.org/ Summary : dracut modules to build a dracut initramfs with network support Description : This package requires everything which is needed to build a generic all purpose initramfs with network support with dracut. Name : sed Version : 4.2.2 Release : 5.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:16 AM PDT Group : Applications/Text Size : 601208 License : GPLv3+ Signature : RSA/SHA256, Thu 03 Jul 2014 09:58:02 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : sed-4.2.2-5.el7.src.rpm Build Date : Mon 09 Jun 2014 06:01:55 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://sed.sourceforge.net/ Summary : A GNU stream text editor Description : The sed (Stream EDitor) editor is a stream or batch (non-interactive) editor. Sed takes text as input, performs an operation or set of operations on the text and outputs the modified text. The operations that sed performs (substitutions, deletions, insertions, etc.) can be specified in a script file or from the command line. Name : device-mapper-event Epoch : 7 Version : 1.02.158 Release : 2.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:14 AM PDT Group : System Environment/Base Size : 42707 License : GPLv2 Signature : RSA/SHA256, Thu 22 Aug 2019 02:22:08 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : lvm2-2.02.185-2.el7.src.rpm Build Date : Thu 08 Aug 2019 05:44:27 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://sources.redhat.com/lvm2 Summary : Device-mapper event daemon Description : This package contains the dmeventd daemon for monitoring the state of device-mapper devices. Name : gmp Epoch : 1 Version : 6.0.0 Release : 15.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:16 AM PDT Group : System Environment/Libraries Size : 657046 License : LGPLv3+ or GPLv2+ Signature : RSA/SHA256, Thu 10 Aug 2017 09:14:25 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : gmp-6.0.0-15.el7.src.rpm Build Date : Wed 02 Aug 2017 06:13:15 PM PDT Build Host : c1bm.rdu2.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://gmplib.org/ Summary : A GNU arbitrary precision library Description : The gmp package contains GNU MP, a library for arbitrary precision arithmetic, signed integers operations, rational numbers and floating point numbers. GNU MP is designed for speed, for both small and very large operands. GNU MP is fast because it uses fullwords as the basic arithmetic type, it uses fast algorithms, it carefully optimizes assembly code for many CPUs' most common inner loops, and it generally emphasizes speed over simplicity/elegance in its operations. Install the gmp package if you need a fast arbitrary precision library. Name : cronie-anacron Version : 1.4.11 Release : 23.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:15 AM PDT Group : System Environment/Base Size : 41683 License : MIT and BSD and ISC and GPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:21:41 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : cronie-1.4.11-23.el7.src.rpm Build Date : Thu 08 Aug 2019 04:07:25 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://github.com/cronie-crond/cronie Summary : Utility for running regular jobs Description : Anacron is part of cronie that is used for running jobs with regular periodicity which do not have exact time of day of execution. The default settings of anacron execute the daily, weekly, and monthly jobs, but anacron allows setting arbitrary periodicity of jobs. Using anacron allows running the periodic jobs even if the system is often powered off and it also allows randomizing the time of the job execution for better utilization of resources shared among multiple systems. Name : ca-certificates Version : 2018.2.22 Release : 70.0.el7_5 Architecture: noarch Install Date: Thu 15 Aug 2019 10:53:17 AM PDT Group : System Environment/Base Size : 973960 License : Public Domain Signature : RSA/SHA256, Thu 17 May 2018 06:16:26 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : ca-certificates-2018.2.22-70.0.el7_5.src.rpm Build Date : Tue 15 May 2018 09:36:08 PM PDT Build Host : c1bm.rdu2.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.mozilla.org/ Summary : The Mozilla CA root certificate bundle Description : This package contains the set of CA certificates chosen by the Mozilla Foundation for use with the Internet PKI. Name : policycoreutils-python Version : 2.5 Release : 33.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:16 AM PDT Group : System Environment/Base Size : 1304826 License : GPLv2 Signature : RSA/SHA256, Thu 22 Aug 2019 02:39:39 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : policycoreutils-2.5-33.el7.src.rpm Build Date : Thu 08 Aug 2019 06:47:35 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.selinuxproject.org Summary : SELinux policy core python utilities Description : The policycoreutils-python package contains the management tools use to manage an SELinux environment. Name : plymouth-core-libs Version : 0.8.9 Release : 0.32.20140113.el7.centos Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:27 AM PDT Group : Development/Libraries Size : 222840 License : GPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:39:20 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : plymouth-0.8.9-0.32.20140113.el7.centos.src.rpm Build Date : Thu 08 Aug 2019 04:51:46 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.freedesktop.org/wiki/Software/Plymouth Summary : Plymouth core libraries Description : This package contains the libply and libply-splash-core libraries used by Plymouth. Name : yajl Version : 2.0.4 Release : 4.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 12:00:18 PM PDT Group : Development/Libraries Size : 116450 License : ISC Signature : RSA/SHA256, Thu 03 Jul 2014 10:52:29 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : yajl-2.0.4-4.el7.src.rpm Build Date : Mon 09 Jun 2014 10:00:29 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://lloyd.github.com/yajl/ Summary : Yet Another JSON Library (YAJL) Description : Yet Another JSON Library. YAJL is a small event-driven (SAX-style) JSON parser written in ANSI C, and a small validating JSON generator. Name : bzip2-libs Version : 1.0.6 Release : 13.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:18 AM PDT Group : System Environment/Libraries Size : 70093 License : BSD Signature : RSA/SHA256, Wed 25 Nov 2015 06:18:43 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : bzip2-1.0.6-13.el7.src.rpm Build Date : Thu 19 Nov 2015 09:04:52 PM PST Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.bzip.org/ Summary : Libraries for applications using bzip2 Description : Libraries for applications using the bzip2 compression format. Name : linux-firmware Version : 20190429 Release : 72.gitddde598.el7 Architecture: noarch Install Date: Wed 16 Oct 2019 09:22:38 AM PDT Group : System Environment/Kernel Size : 340702338 License : GPL+ and GPLv2+ and MIT and Redistributable, no modification permitted Signature : RSA/SHA256, Thu 22 Aug 2019 02:59:09 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : linux-firmware-20190429-72.gitddde598.el7.src.rpm Build Date : Thu 08 Aug 2019 05:22:46 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/ Summary : Firmware files used by the Linux kernel Description : Kernel-firmware includes firmware files required for some devices to operate. Name : container-storage-setup Version : 0.11.0 Release : 2.git5eaf76c.el7 Architecture: noarch Install Date: Thu 15 Aug 2019 12:00:19 PM PDT Group : Unspecified Size : 101782 License : ASL 2.0 Signature : RSA/SHA256, Tue 21 Aug 2018 12:48:30 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : container-storage-setup-0.11.0-2.git5eaf76c.el7.src.rpm Build Date : Tue 21 Aug 2018 07:41:44 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://github.com/projectatomic/container-storage-setup Summary : A simple service to setup container storage devices Description : This is a simple service to configure Container Runtimes to use an LVM-managed thin pool. It also supports auto-growing both the pool as well as the root logical volume and partition table. Name : libxml2 Version : 2.9.1 Release : 6.el7_2.3 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:18 AM PDT Group : Development/Libraries Size : 1710062 License : MIT Signature : RSA/SHA256, Thu 23 Jun 2016 01:07:58 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : libxml2-2.9.1-6.el7_2.3.src.rpm Build Date : Thu 23 Jun 2016 07:36:41 AM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://xmlsoft.org/ Summary : Library providing XML and HTML support Description : This library allows to manipulate XML files. It includes support to read, modify and write XML and HTML files. There is DTDs support this includes parsing and validation even with complex DtDs, either at parse time or later once the document has been modified. The output can be a simple SAX stream or and in-memory DOM like representations. In this case one can use the built-in XPath and XPointer implementation to select sub nodes or ranges. A flexible Input/Output mechanism is available, with existing HTTP and FTP modules and combined to an URI library. Name : audit Version : 2.8.5 Release : 4.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:48 AM PDT Group : System Environment/Daemons Size : 660117 License : GPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:20:29 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : audit-2.8.5-4.el7.src.rpm Build Date : Thu 08 Aug 2019 05:06:20 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://people.redhat.com/sgrubb/audit/ Summary : User space tools for 2.6 kernel auditing Description : The audit package contains the user space utilities for storing and searching the audit records generated by the audit subsystem in the Linux 2.6 and later kernels. Name : PyYAML Version : 3.10 Release : 11.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 12:00:19 PM PDT Group : Development/Libraries Size : 645110 License : MIT Signature : RSA/SHA256, Thu 03 Jul 2014 09:43:09 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : PyYAML-3.10-11.el7.src.rpm Build Date : Mon 09 Jun 2014 08:53:05 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://pyyaml.org/ Summary : YAML parser and emitter for Python Description : YAML is a data serialization format designed for human readability and interaction with scripting languages. PyYAML is a YAML parser and emitter for Python. PyYAML features a complete YAML 1.1 parser, Unicode support, pickle support, capable extension API, and sensible error messages. PyYAML supports standard YAML tags and provides Python-specific tags that allow to represent an arbitrary Python object. PyYAML is applicable for a broad range of tasks from complex configuration files to object serialization and persistance. Name : libgcrypt Version : 1.5.3 Release : 14.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:18 AM PDT Group : System Environment/Libraries Size : 597727 License : LGPLv2+ Signature : RSA/SHA256, Thu 10 Aug 2017 10:08:59 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : libgcrypt-1.5.3-14.el7.src.rpm Build Date : Wed 02 Aug 2017 08:55:07 AM PDT Build Host : c1bm.rdu2.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gnupg.org/ Summary : A general-purpose cryptography library Description : Libgcrypt is a general purpose crypto library based on the code used in GNU Privacy Guard. This is a development version. Name : openssh-clients Version : 7.4p1 Release : 21.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:49 AM PDT Group : Applications/Internet Size : 2643176 License : BSD Signature : RSA/SHA256, Thu 22 Aug 2019 02:37:26 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : openssh-7.4p1-21.el7.src.rpm Build Date : Thu 08 Aug 2019 06:40:49 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.openssh.com/portable.html Summary : An open source SSH client applications Description : OpenSSH is a free version of SSH (Secure SHell), a program for logging into and executing commands on a remote machine. This package includes the clients necessary to make encrypted connections to SSH servers. Name : python-setuptools Version : 0.9.8 Release : 7.el7 Architecture: noarch Install Date: Thu 15 Aug 2019 12:00:19 PM PDT Group : Applications/System Size : 2040815 License : Python or ZPLv2.0 Signature : RSA/SHA256, Thu 10 Aug 2017 12:23:40 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : python-setuptools-0.9.8-7.el7.src.rpm Build Date : Wed 02 Aug 2017 03:18:29 AM PDT Build Host : c1bm.rdu2.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://pypi.python.org/pypi/setuptools Summary : Easily build and distribute Python packages Description : Setuptools is a collection of enhancements to the Python distutils that allow you to more easily build and distribute Python packages, especially ones that have dependencies on other packages. This package contains the runtime components of setuptools, necessary to execute the software that requires pkg_resources.py. This package contains the distribute fork of setuptools. Name : lua Version : 5.1.4 Release : 15.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:18 AM PDT Group : Development/Languages Size : 640319 License : MIT Signature : RSA/SHA256, Sun 20 Nov 2016 11:22:39 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : lua-5.1.4-15.el7.src.rpm Build Date : Sat 05 Nov 2016 07:47:35 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.lua.org/ Summary : Powerful light-weight programming language Description : Lua is a powerful light-weight programming language designed for extending applications. Lua is also frequently used as a general-purpose, stand-alone language. Lua is free software. Lua combines simple procedural syntax with powerful data description constructs based on associative arrays and extensible semantics. Lua is dynamically typed, interpreted from bytecodes, and has automatic memory management with garbage collection, making it ideal for configuration, scripting, and rapid prototyping. Name : tuned Version : 2.11.0 Release : 5.el7_7.1 Architecture: noarch Install Date: Wed 16 Oct 2019 09:22:50 AM PDT Group : Unspecified Size : 815395 License : GPLv2+ Signature : RSA/SHA256, Sat 14 Sep 2019 04:53:14 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : tuned-2.11.0-5.el7_7.1.src.rpm Build Date : Fri 13 Sep 2019 11:16:55 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.tuned-project.org/ Summary : A dynamic adaptive system tuning daemon Description : The tuned package contains a daemon that tunes system settings dynamically. It does so by monitoring the usage of several system components periodically. Based on that information components will then be put into lower or higher power saving modes to adapt to the current usage. Currently only ethernet network and ATA harddisk devices are implemented. Name : setools-libs Version : 3.3.8 Release : 4.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 12:00:20 PM PDT Group : System Environment/Libraries Size : 1917790 License : LGPLv2 Signature : RSA/SHA256, Mon 12 Nov 2018 06:46:38 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : setools-3.3.8-4.el7.src.rpm Build Date : Fri 02 Nov 2018 08:53:43 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://oss.tresys.com/projects/setools Summary : Policy analysis support libraries for SELinux Description : SETools is a collection of graphical tools, command-line tools, and libraries designed to facilitate SELinux policy analysis. This package includes the following run-time libraries: libapol policy analysis library libpoldiff semantic policy difference library libqpol library that abstracts policy internals libseaudit parse and filter SELinux audit messages in log files libsefs SELinux file contexts library Name : libnl3 Version : 3.2.28 Release : 4.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:19 AM PDT Group : Development/Libraries Size : 864984 License : LGPLv2 Signature : RSA/SHA256, Thu 10 Aug 2017 10:22:44 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : libnl3-3.2.28-4.el7.src.rpm Build Date : Thu 03 Aug 2017 12:49:03 PM PDT Build Host : c1bm.rdu2.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.infradead.org/~tgr/libnl/ Summary : Convenience library for kernel netlink sockets Description : This package contains a convenience library to simplify using the Linux kernel's netlink sockets interface for network manipulation Name : firewalld Version : 0.6.3 Release : 2.el7_7.1 Architecture: noarch Install Date: Wed 16 Oct 2019 09:22:52 AM PDT Group : Unspecified Size : 1943890 License : GPLv2+ Signature : RSA/SHA256, Sat 14 Sep 2019 04:52:50 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : firewalld-0.6.3-2.el7_7.1.src.rpm Build Date : Fri 13 Sep 2019 11:02:20 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.firewalld.org Summary : A firewall daemon with D-Bus interface providing a dynamic firewall Description : firewalld is a firewall service daemon that provides a dynamic customizable firewall with a D-Bus interface. Name : parted Version : 3.1 Release : 31.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:57 AM PDT Group : Applications/System Size : 2336844 License : GPLv3+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:37:52 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : parted-3.1-31.el7.src.rpm Build Date : Thu 08 Aug 2019 06:41:49 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gnu.org/software/parted Summary : The GNU disk partition manipulation program Description : The GNU Parted program allows you to create, destroy, resize, move, and copy hard disk partitions. Parted can be used for creating space for new operating systems, reorganizing disk usage, and copying data to new hard disks. Name : libmnl Version : 1.0.3 Release : 7.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:19 AM PDT Group : System Environment/Libraries Size : 51847 License : LGPLv2+ Signature : RSA/SHA256, Thu 03 Jul 2014 07:59:14 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : libmnl-1.0.3-7.el7.src.rpm Build Date : Tue 17 Jun 2014 08:49:02 AM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://netfilter.org/projects/libmnl Summary : A minimalistic Netlink library Description : libmnl is a minimalistic user-space library oriented to Netlink developers. There are a lot of common tasks in parsing, validating, constructing of both the Netlink header and TLVs that are repetitive and easy to get wrong. This library aims to provide simple helpers that allows you to re-use code and to avoid re-inventing the wheel. Name : e2fsprogs Version : 1.42.9 Release : 16.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:22:59 AM PDT Group : System Environment/Base Size : 2548941 License : GPLv2 Signature : RSA/SHA256, Thu 22 Aug 2019 02:22:40 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : e2fsprogs-1.42.9-16.el7.src.rpm Build Date : Thu 08 Aug 2019 04:19:51 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://e2fsprogs.sourceforge.net/ Summary : Utilities for managing ext2, ext3, and ext4 filesystems Description : The e2fsprogs package contains a number of utilities for creating, checking, modifying, and correcting any inconsistencies in second, third and fourth extended (ext2/ext3/ext4) filesystems. E2fsprogs contains e2fsck (used to repair filesystem inconsistencies after an unclean shutdown), mke2fs (used to initialize a partition to contain an empty ext2 filesystem), debugfs (used to examine the internal structure of a filesystem, to manually repair a corrupted filesystem, or to create test cases for e2fsck), tune2fs (used to modify filesystem parameters), and most of the other core ext2fs filesystem utilities. You should install the e2fsprogs package if you need to manage the performance of an ext2, ext3, or ext4 filesystem. Name : passwd Version : 0.79 Release : 5.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:23:01 AM PDT Group : System Environment/Base Size : 430226 License : BSD or GPL+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:37:53 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : passwd-0.79-5.el7.src.rpm Build Date : Thu 08 Aug 2019 06:39:01 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://pagure.io/passwd Summary : An utility for setting or changing passwords using PAM Description : This package contains a system utility (passwd) which sets or changes passwords, using PAM (Pluggable Authentication Modules) library. Name : pam Version : 1.1.8 Release : 22.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:20 AM PDT Group : System Environment/Base Size : 2630324 License : BSD and GPLv2+ Signature : RSA/SHA256, Wed 25 Apr 2018 04:33:49 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : pam-1.1.8-22.el7.src.rpm Build Date : Tue 10 Apr 2018 08:22:15 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.linux-pam.org/ Summary : An extensible library which provides authentication for applications Description : PAM (Pluggable Authentication Modules) is a system security tool that allows system administrators to set authentication policy without having to recompile programs that handle authentication. Name : dmidecode Epoch : 1 Version : 3.2 Release : 3.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:23:01 AM PDT Group : System Environment/Base Size : 216235 License : GPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:22:22 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : dmidecode-3.2-3.el7.src.rpm Build Date : Thu 08 Aug 2019 04:12:09 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.nongnu.org/dmidecode/ Summary : Tool to analyse BIOS DMI data Description : dmidecode reports information about x86 & ia64 hardware as described in the system BIOS according to the SMBIOS/DMI standard. This information typically includes system manufacturer, model name, serial number, BIOS version, asset tag as well as a lot of other details of varying level of interest and reliability depending on the manufacturer. This will often include usage status for the CPU sockets, expansion slots (e.g. AGP, PCI, ISA) and memory module slots, and the list of I/O ports (e.g. serial, parallel, USB). Name : cyrus-sasl-lib Version : 2.1.26 Release : 23.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:20 AM PDT Group : System Environment/Libraries Size : 396911 License : BSD with advertising Signature : RSA/SHA256, Wed 25 Apr 2018 03:56:48 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : cyrus-sasl-2.1.26-23.el7.src.rpm Build Date : Tue 10 Apr 2018 09:20:59 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://asg.web.cmu.edu/sasl/sasl-library.html Summary : Shared libraries needed by applications which use Cyrus SASL Description : The cyrus-sasl-lib package contains shared libraries which are needed by applications which use the Cyrus SASL library. Name : iwl135-firmware Version : 18.168.6.1 Release : 72.el7 Architecture: noarch Install Date: Wed 16 Oct 2019 09:23:02 AM PDT Group : System Environment/Kernel Size : 838358 License : Redistributable, no modification permitted Signature : RSA/SHA256, Thu 22 Aug 2019 02:58:03 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : linux-firmware-20190429-72.gitddde598.el7.src.rpm Build Date : Thu 08 Aug 2019 05:22:46 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/ Summary : Firmware for Intel(R) Centrino Wireless-N 135 Series Adapters Description : This package contains the firmware required by the iwlagn driver for Linux to support the iwl135 hardware. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully. Name : libunistring Version : 0.9.3 Release : 9.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:20 AM PDT Group : System Environment/Libraries Size : 1145761 License : LGPLv3+ Signature : RSA/SHA256, Thu 03 Jul 2014 08:22:35 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : libunistring-0.9.3-9.el7.src.rpm Build Date : Mon 09 Jun 2014 03:52:46 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gnu.org/software/libunistring/ Summary : GNU Unicode string library Description : This portable C library implements Unicode string types in three flavours: (UTF-8, UTF-16, UTF-32), together with functions for character processing (names, classifications, properties) and functions for string processing (iteration, formatted output, width, word breaks, line breaks, normalization, case folding and regular expressions). Name : iwl6000-firmware Version : 9.221.4.1 Release : 72.el7 Architecture: noarch Install Date: Wed 16 Oct 2019 09:23:02 AM PDT Group : System Environment/Kernel Size : 591738 License : Redistributable, no modification permitted Signature : RSA/SHA256, Thu 22 Aug 2019 02:58:11 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : linux-firmware-20190429-72.gitddde598.el7.src.rpm Build Date : Thu 08 Aug 2019 05:22:46 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/ Summary : Firmware for Intel(R) Wireless WiFi Link 6000 AGN Adapter Description : This package contains the firmware required by the iwlagn driver for Linux. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully. Name : jansson Version : 2.10 Release : 1.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:21 AM PDT Group : System Environment/Libraries Size : 74998 License : MIT Signature : RSA/SHA256, Thu 10 Aug 2017 09:50:09 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : jansson-2.10-1.el7.src.rpm Build Date : Wed 02 Aug 2017 05:32:08 PM PDT Build Host : c1bm.rdu2.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.digip.org/jansson/ Summary : C library for encoding, decoding and manipulating JSON data Description : Small library for parsing and writing JSON documents. Name : iwl7265-firmware Version : 22.0.7.0 Release : 72.el7 Architecture: noarch Install Date: Wed 16 Oct 2019 09:23:05 AM PDT Group : System Environment/Kernel Size : 73429474 License : Redistributable, no modification permitted Signature : RSA/SHA256, Thu 22 Aug 2019 02:58:16 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : linux-firmware-20190429-72.gitddde598.el7.src.rpm Build Date : Thu 08 Aug 2019 05:22:46 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/ Summary : Firmware for Intel(R) Dual Band Wireless-AC 7265 Series Adapters Description : This package contains the firmware required by the iwlagn driver for Linux. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully. Name : dbus-libs Epoch : 1 Version : 1.10.24 Release : 13.el7_6 Architecture: x86_64 Install Date: Thu 15 Aug 2019 12:01:15 PM PDT Group : Development/Libraries Size : 362560 License : (GPLv2+ or AFL) and GPLv2+ Signature : RSA/SHA256, Tue 19 Mar 2019 12:51:08 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : dbus-1.10.24-13.el7_6.src.rpm Build Date : Thu 14 Mar 2019 03:18:13 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.freedesktop.org/Software/dbus/ Summary : Libraries for accessing D-BUS Description : This package contains lowlevel libraries for accessing D-BUS. Name : slang Version : 2.2.4 Release : 11.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:21 AM PDT Group : System Environment/Libraries Size : 1881912 License : GPLv2+ Signature : RSA/SHA256, Thu 03 Jul 2014 10:01:18 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : slang-2.2.4-11.el7.src.rpm Build Date : Mon 09 Jun 2014 03:12:57 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.jedsoft.org/slang/ Summary : The shared library for the S-Lang extension language Description : S-Lang is an interpreted language and a programming library. The S-Lang language was designed so that it can be easily embedded into a program to provide the program with a powerful extension language. The S-Lang library, provided in this package, provides the S-Lang extension language. S-Lang's syntax resembles C, which makes it easy to recode S-Lang procedures in C if you need to. Name : iwl7260-firmware Version : 22.0.7.0 Release : 72.el7 Architecture: noarch Install Date: Wed 16 Oct 2019 09:23:06 AM PDT Group : System Environment/Kernel Size : 6520850 License : Redistributable, no modification permitted Signature : RSA/SHA256, Thu 22 Aug 2019 02:58:14 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : linux-firmware-20190429-72.gitddde598.el7.src.rpm Build Date : Thu 08 Aug 2019 05:22:46 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/ Summary : Firmware for Intel(R) Dual Band Wireless-AC 7260 Series Adapters Description : This package contains the firmware required by the iwlagn driver for Linux. Usage of the firmware is subject to the terms and conditions contained inside the provided LICENSE file. Please read it carefully. Name : gdbm Version : 1.10 Release : 8.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:21 AM PDT Group : System Environment/Libraries Size : 184322 License : GPLv3+ Signature : RSA/SHA256, Thu 03 Jul 2014 06:27:27 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : gdbm-1.10-8.el7.src.rpm Build Date : Mon 09 Jun 2014 02:39:08 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gnu.org/software/gdbm/ Summary : A GNU set of database routines which use extensible hashing Description : Gdbm is a GNU database indexing library, including routines which use extensible hashing. Gdbm works in a similar way to standard UNIX dbm routines. Gdbm is useful for developers who write C applications and need access to a simple and efficient database or who are building C applications which will use such a database. If you're a C developer and your programs need access to simple database routines, you should install gdbm. You'll also need to install gdbm-devel. Name : bind-utils Epoch : 32 Version : 9.11.4 Release : 9.P2.el7 Architecture: x86_64 Install Date: Wed 23 Oct 2019 10:53:22 AM PDT Group : Unspecified Size : 598521 License : MPLv2.0 Signature : RSA/SHA256, Thu 22 Aug 2019 02:20:56 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : bind-9.11.4-9.P2.el7.src.rpm Build Date : Thu 08 Aug 2019 05:20:30 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.isc.org/products/BIND/ Summary : Utilities for querying DNS name servers Description : Bind-utils contains a collection of utilities for querying DNS (Domain Name System) name servers to find out information about Internet hosts. These tools will provide you with the IP addresses for given host names, as well as other information about registered domains and network addresses. You should install bind-utils if you need to get information from DNS name servers. Name : hostname Version : 3.13 Release : 3.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:22 AM PDT Group : System Environment/Base Size : 19449 License : GPLv2+ Signature : RSA/SHA256, Thu 03 Jul 2014 06:54:35 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : hostname-3.13-3.el7.src.rpm Build Date : Mon 09 Jun 2014 02:48:44 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://packages.qa.debian.org/h/hostname.html Summary : Utility to set/show the host name or domain name Description : This package provides commands which can be used to display the system's DNS name, and to display or set its hostname or NIS domain name. Name : nftables Epoch : 1 Version : 0.8 Release : 14.el7 Architecture: x86_64 Install Date: Sun 10 Nov 2019 07:55:14 AM PST Group : Unspecified Size : 500068 License : GPLv2 Signature : RSA/SHA256, Thu 22 Aug 2019 02:36:19 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : nftables-0.8-14.el7.src.rpm Build Date : Thu 08 Aug 2019 06:13:15 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://netfilter.org/projects/nftables/ Summary : Netfilter Tables userspace utillites Description : Netfilter Tables userspace utilities. Name : python-slip Version : 0.4.0 Release : 4.el7 Architecture: noarch Install Date: Thu 15 Aug 2019 10:53:23 AM PDT Group : System Environment/Libraries Size : 61353 License : GPLv2+ Signature : RSA/SHA256, Wed 25 Apr 2018 04:39:05 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : python-slip-0.4.0-4.el7.src.rpm Build Date : Tue 10 Apr 2018 06:49:00 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://github.com/nphilipp/python-slip Summary : Miscellaneous convenience, extension and workaround code for Python Description : The Simple Library for Python packages contain miscellaneous code for convenience, extension and workaround purposes. This package provides the "slip" and the "slip.util" modules. Name : rubygem-io-console Version : 0.4.2 Release : 36.el7 Architecture: x86_64 Install Date: Sat 16 Nov 2019 02:29:24 PM PST Group : Development/Libraries Size : 16751 License : (Ruby or BSD) and Public Domain Signature : RSA/SHA256, Thu 22 Aug 2019 02:42:57 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : ruby-2.0.0.648-36.el7.src.rpm Build Date : Thu 08 Aug 2019 05:30:13 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://ruby-lang.org/ Summary : IO/Console is a simple console utilizing library Description : IO/Console provides very simple and portable access to console. It doesn't provide higher layer features, such like curses and readline. Name : newt-python Version : 0.52.15 Release : 4.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:23 AM PDT Group : Development/Libraries Size : 116916 License : LGPLv2 Signature : RSA/SHA256, Thu 03 Jul 2014 08:57:00 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : newt-0.52.15-4.el7.src.rpm Build Date : Tue 10 Jun 2014 12:48:12 AM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://fedorahosted.org/newt/ Summary : Python bindings for newt Description : The newt-python package contains the Python bindings for the newt library providing a python API for creating text mode ionterfaces. Name : rubygem-psych Version : 2.0.0 Release : 36.el7 Architecture: x86_64 Install Date: Sat 16 Nov 2019 02:29:25 PM PST Group : Development/Libraries Size : 113146 License : MIT Signature : RSA/SHA256, Thu 22 Aug 2019 02:42:59 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : ruby-2.0.0.648-36.el7.src.rpm Build Date : Thu 08 Aug 2019 05:30:13 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://ruby-lang.org/ Summary : A libyaml wrapper for Ruby Description : Psych is a YAML parser and emitter. Psych leverages libyaml[http://pyyaml.org/wiki/LibYAML] for its YAML parsing and emitting capabilities. In addition to wrapping libyaml, Psych also knows how to serialize and de-serialize most Ruby objects to and from the YAML format. Name : python-iniparse Version : 0.4 Release : 9.el7 Architecture: noarch Install Date: Thu 15 Aug 2019 10:53:23 AM PDT Group : Development/Libraries Size : 115166 License : MIT Signature : RSA/SHA256, Thu 03 Jul 2014 09:39:14 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : python-iniparse-0.4-9.el7.src.rpm Build Date : Mon 09 Jun 2014 03:04:54 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://code.google.com/p/iniparse/ Summary : Python Module for Accessing and Modifying Configuration Data in INI files Description : iniparse is an INI parser for Python which is API compatible with the standard library's ConfigParser, preserves structure of INI files (order of sections & options, indentation, comments, and blank lines are preserved when data is updated), and is more convenient to use. Name : ntpdate Version : 4.2.6p5 Release : 29.el7.centos Architecture: x86_64 Install Date: Tue 03 Mar 2020 06:02:09 PM PST Group : Applications/System Size : 123845 License : (MIT and BSD and BSD with advertising) and GPLv2 Signature : RSA/SHA256, Thu 22 Aug 2019 02:36:36 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : ntp-4.2.6p5-29.el7.centos.src.rpm Build Date : Thu 08 Aug 2019 04:48:12 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.ntp.org Summary : Utility to set the date and time via NTP Description : ntpdate is a program for retrieving the date and time from NTP servers. Name : cpp Version : 4.8.5 Release : 39.el7 Architecture: x86_64 Install Date: Wed 08 Apr 2020 05:17:23 AM PDT Group : Development/Languages Size : 15653045 License : GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions and LGPLv2+ and BSD Signature : RSA/SHA256, Thu 22 Aug 2019 02:21:35 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : gcc-4.8.5-39.el7.src.rpm Build Date : Tue 06 Aug 2019 10:15:38 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://gcc.gnu.org Summary : The C Preprocessor Description : Cpp is the GNU C-Compatible Compiler Preprocessor. Cpp is a macro processor which is used automatically by the C compiler to transform your program before actual compilation. It is called a macro processor because it allows you to define macros, abbreviations for longer constructs. The C preprocessor provides four separate functionalities: the inclusion of header files (files of declarations that can be substituted into your program); macro expansion (you can define macros, and the C preprocessor will replace the macros with their definitions throughout the program); conditional compilation (using special preprocessing directives, you can include or exclude parts of the program according to various conditions); and line control (if you use a program to combine or rearrange source files into an intermediate file which is then compiled, you can use line control to inform the compiler about where each source line originated). You should install this package if you are a C programmer and you use macros. Name : gcc Version : 4.8.5 Release : 39.el7 Architecture: x86_64 Install Date: Wed 08 Apr 2020 05:17:27 AM PDT Group : Development/Languages Size : 39238933 License : GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions and LGPLv2+ and BSD Signature : RSA/SHA256, Thu 22 Aug 2019 02:24:15 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : gcc-4.8.5-39.el7.src.rpm Build Date : Tue 06 Aug 2019 10:15:38 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://gcc.gnu.org Summary : Various compilers (C, C++, Objective-C, Java, ...) Description : The gcc package contains the GNU Compiler Collection version 4.8. You'll need this package in order to compile C code. Name : libselinux-devel Version : 2.5 Release : 14.1.el7 Architecture: x86_64 Install Date: Wed 08 Apr 2020 05:24:42 AM PDT Group : Development/Libraries Size : 194101 License : Public Domain Signature : RSA/SHA256, Mon 12 Nov 2018 06:37:28 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : libselinux-2.5-14.1.el7.src.rpm Build Date : Tue 30 Oct 2018 02:43:06 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://github.com/SELinuxProject/selinux/wiki Summary : Header files and libraries used to build SELinux Description : The libselinux-devel package contains the libraries and header files needed for developing SELinux applications. Name : libverto-devel Version : 0.2.5 Release : 4.el7 Architecture: x86_64 Install Date: Wed 08 Apr 2020 05:24:43 AM PDT Group : Unspecified Size : 25871 License : MIT Signature : RSA/SHA256, Thu 03 Jul 2014 08:23:52 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : libverto-0.2.5-4.el7.src.rpm Build Date : Tue 10 Jun 2014 12:44:21 AM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://fedorahosted.org/libverto/ Summary : Development files for libverto Description : The libverto-devel package contains libraries and header files for developing applications that use libverto. Name : fipscheck-lib Version : 1.4.1 Release : 6.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:24 AM PDT Group : System Environment/Libraries Size : 11466 License : BSD Signature : RSA/SHA256, Thu 10 Aug 2017 08:53:57 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : fipscheck-1.4.1-6.el7.src.rpm Build Date : Wed 02 Aug 2017 05:47:49 AM PDT Build Host : c1bm.rdu2.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://fedorahosted.org/fipscheck/ Summary : Library files for fipscheck Description : This package contains the FIPSCheck library. Name : mpfr-devel Version : 3.1.1 Release : 4.el7 Architecture: x86_64 Install Date: Tue 14 Apr 2020 08:10:08 AM PDT Group : Development/Libraries Size : 108827 License : LGPLv3+ and GPLv3+ and GFDL Signature : RSA/SHA256, Thu 03 Jul 2014 08:49:49 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : mpfr-3.1.1-4.el7.src.rpm Build Date : Mon 09 Jun 2014 06:11:54 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.mpfr.org/ Summary : Development tools A C library for mpfr library Description : Header files and documentation for using the MPFR multiple-precision floating-point library in applications. If you want to develop applications which will use the MPFR library, you'll need to install the mpfr-devel package. You'll also need to install the mpfr package. Name : gpg-pubkey Version : f2ee9d55 Release : 560cfc0a Architecture: (none) Install Date: Tue 14 Apr 2020 08:41:57 AM PDT Group : Public Keys Size : 0 License : pubkey Signature : (none) Source RPM : (none) Build Date : Thu 01 Oct 2015 02:25:30 AM PDT Build Host : localhost Relocations : (not relocatable) Packager : CentOS SoftwareCollections SIG (https://wiki.centos.org/SpecialInterestGroup/SCLo) Summary : gpg(CentOS SoftwareCollections SIG (https://wiki.centos.org/SpecialInterestGroup/SCLo) ) Description : -----BEGIN PGP PUBLIC KEY BLOCK----- Version: rpm-4.11.3 (NSS-3) mQENBFYM/AoBCADR9Q5cb+H5ndx+QkzNBQ88wcD+g112yvnHNlSiBMOnNEGHuKPJ tujZ+eWXP3K6ucJckT91WxfQ2fxPr9jQ0xpZytcHcZdTfn3vKL9+OwR0npp+qmcz rK8/EzVz/SWSgBQ5xT/HUvaeoVAbzBHSng0r2njnBAqABKAoTxgyRGKSCWduKD32 7PF2ZpqeDFFhd99Ykt6ar8SlV8ToqH6F7An0ILeejINVbHUxd6+wsbpcOwQ4mGAa /CPXeqqLGj62ASBv36xQr34hlN/9zQMViaKkacl8zkuvwhuHf4b4VlGVCe6VILpQ 8ytKMV/lcg7YpMfRq4KVWBjCwkvk6zg6KxaHABEBAAG0aENlbnRPUyBTb2Z0d2Fy ZUNvbGxlY3Rpb25zIFNJRyAoaHR0cHM6Ly93aWtpLmNlbnRvcy5vcmcvU3BlY2lh bEludGVyZXN0R3JvdXAvU0NMbykgPHNlY3VyaXR5QGNlbnRvcy5vcmc+iQE5BBMB AgAjBQJWDPwKAhsDBwsJCAcDAgEGFQgCCQoLBBYCAwECHgECF4AACgkQTrhOcfLu nVXNewgAg7RVclomjTY4w80XiztUuUaFlCHyR76KazdaGfx/8XckWH2GdQtwii+3 Tg7+PT2H0Xyuj1aod+jVTPXTPVUr+rEHAjuNDY+xyAJrNljoOHiz111zs9pk7PLX CPwKWQLnmrcKIi8v/51L79FFsUMvhClTBdLUQ51lkCwbcXQi+bOhPvZTVbRhjoB/ a9z0d8t65X16zEzE7fBhnVoj4xye/MPMbTH41Mv+FWVciBTuAepOLmgJ9oxODliv rgZa28IEWkvHQ8m9GLJ0y9mI6olh0cGFybnd5y4Ss1cMttlRGR4qthLhN2gHZpO9 2y4WgkeVXCj1BK1fzVrDMLPbuNNCZQ== =UtPD -----END PGP PUBLIC KEY BLOCK----- Name : libuser Version : 0.60 Release : 9.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:25 AM PDT Group : System Environment/Base Size : 1952592 License : LGPLv2+ Signature : RSA/SHA256, Wed 25 Apr 2018 04:23:52 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : libuser-0.60-9.el7.src.rpm Build Date : Thu 12 Apr 2018 11:44:54 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://fedorahosted.org/libuser/ Summary : A user and group account administration library Description : The libuser library implements a standardized interface for manipulating and administering user and group accounts. The library uses pluggable back-ends to interface to its data sources. Sample applications modeled after those included with the shadow password suite are included. Name : devtoolset-3-libstdc++-devel Version : 4.9.2 Release : 6.el7 Architecture: x86_64 Install Date: Wed 15 Apr 2020 12:39:16 PM PDT Group : Development/Libraries Size : 12197721 License : GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions and LGPLv2+ and BSD Signature : RSA/SHA1, Sat 28 Nov 2015 06:50:50 AM PST, Key ID 4eb84e71f2ee9d55 Source RPM : devtoolset-3-gcc-4.9.2-6.el7.src.rpm Build Date : Sat 03 Oct 2015 08:15:45 AM PDT Build Host : c1bj.rdu2.centos.org Relocations : (not relocatable) Packager : CBS Vendor : CentOS URL : http://gcc.gnu.org Summary : Header files and libraries for C++ development Description : This is the GNU implementation of the standard C++ libraries. This package includes the header files and libraries needed for C++ development. This includes rewritten implementation of STL. Name : libtirpc Version : 0.2.4 Release : 0.16.el7 Architecture: x86_64 Install Date: Tue 15 Oct 2019 11:09:07 AM PDT Group : System Environment/Libraries Size : 187279 License : SISSL and BSD Signature : RSA/SHA256, Thu 22 Aug 2019 02:33:41 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : libtirpc-0.2.4-0.16.el7.src.rpm Build Date : Thu 08 Aug 2019 05:35:23 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://git.linux-nfs.org/?p=steved/libtirpc.git;a=summary Summary : Transport Independent RPC Library Description : This package contains SunLib's implementation of transport-independent RPC (TI-RPC) documentation. This library forms a piece of the base of Open Network Computing (ONC), and is derived directly from the Solaris 2.3 source. TI-RPC is an enhanced version of TS-RPC that requires the UNIX System V Transport Layer Interface (TLI) or an equivalent X/Open Transport Interface (XTI). TI-RPC is on-the-wire compatible with the TS-RPC, which is supported by almost 70 vendors on all major operating systems. TS-RPC source code (RPCSRC 4.0) remains available from several internet sites. Name : traceroute Epoch : 3 Version : 2.0.22 Release : 2.el7 Architecture: x86_64 Install Date: Tue 21 Jul 2020 12:18:31 PM PDT Group : Applications/Internet Size : 93925 License : GPLv2+ Signature : RSA/SHA256, Sun 20 Nov 2016 12:54:56 PM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : traceroute-2.0.22-2.el7.src.rpm Build Date : Sat 05 Nov 2016 08:27:17 AM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://traceroute.sourceforge.net Summary : Traces the route taken by packets over an IPv4/IPv6 network Description : The traceroute utility displays the route used by IP packets on their way to a specified network (or Internet) host. Traceroute displays the IP number and host name (if possible) of the machines along the route taken by the packets. Traceroute is used as a network debugging tool. If you're having network connectivity problems, traceroute will show you where the trouble is coming from along the route. Install traceroute if you need a tool for diagnosing network connectivity problems. Name : python3-libs Version : 3.6.8 Release : 10.el7 Architecture: x86_64 Install Date: Tue 15 Oct 2019 11:09:10 AM PDT Group : Unspecified Size : 36350099 License : Python Signature : RSA/SHA256, Thu 22 Aug 2019 02:40:11 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : python3-3.6.8-10.el7.src.rpm Build Date : Wed 07 Aug 2019 11:09:49 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://www.python.org/ Summary : Python runtime libraries Description : This package contains runtime libraries for use by Python: - the majority of the Python standard library - a dynamically linked library for use by applications that embed Python as a scripting language, and by the main "python3" executable Name : tar Epoch : 2 Version : 1.26 Release : 35.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:27 AM PDT Group : Applications/Archiving Size : 2838510 License : GPLv3+ Signature : RSA/SHA256, Mon 12 Nov 2018 06:47:46 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : tar-1.26-35.el7.src.rpm Build Date : Tue 30 Oct 2018 01:29:09 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gnu.org/software/tar/ Summary : A GNU file archiving program Description : The GNU tar program saves many files together in one archive and can restore individual files (or all of the files) from that archive. Tar can also be used to add supplemental files to an archive and to update or list files in the archive. Tar includes multivolume support, automatic archive compression/decompression, the ability to perform remote archives, and the ability to perform incremental and full backups. If you want to use tar for remote backups, you also need to install the rmt package on the remote box. Name : iw Version : 4.3 Release : 2.el7 Architecture: x86_64 Install Date: Mon 04 Jan 2021 12:32:02 PM PST Group : System Environment/Base Size : 163217 License : ISC Signature : RSA/SHA256, Mon 12 Nov 2018 06:29:23 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : iw-4.3-2.el7.src.rpm Build Date : Tue 30 Oct 2018 11:10:33 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://wireless.kernel.org/en/users/Documentation/iw Summary : A nl80211 based wireless configuration tool Description : iw is a new nl80211 based CLI configuration utility for wireless devices. Currently you can only use this utility to configure devices which use a mac80211 driver as these are the new drivers being written - only because most new wireless devices being sold are now SoftMAC. Name : perl-Pod-Perldoc Version : 3.20 Release : 4.el7 Architecture: noarch Install Date: Tue 15 Oct 2019 11:27:57 AM PDT Group : Development/Libraries Size : 166910 License : GPL+ or Artistic Signature : RSA/SHA256, Thu 03 Jul 2014 09:22:38 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : perl-Pod-Perldoc-3.20-4.el7.src.rpm Build Date : Tue 10 Jun 2014 01:17:50 AM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://search.cpan.org/dist/Pod-Perldoc/ Summary : Look up Perl documentation in Pod format Description : perldoc looks up a piece of documentation in .pod format that is embedded in the perl installation tree or in a perl script, and displays it via "groff -man | $PAGER". This is primarily used for the documentation for the perl library modules. Name : libical Version : 3.0.3 Release : 2.el7 Architecture: x86_64 Install Date: Tue 09 Feb 2021 08:57:09 AM PST Group : Unspecified Size : 1665385 License : LGPLv2 or MPLv2.0 Signature : RSA/SHA256, Mon 12 Nov 2018 06:33:03 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : libical-3.0.3-2.el7.src.rpm Build Date : Tue 30 Oct 2018 12:25:21 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://libical.github.io/libical/ Summary : Reference implementation of the iCalendar data type and serialization format Description : Reference implementation of the iCalendar data type and serialization format used in dozens of calendaring and scheduling products. Name : perl-Pod-Usage Version : 1.63 Release : 3.el7 Architecture: noarch Install Date: Tue 15 Oct 2019 11:27:58 AM PDT Group : Development/Libraries Size : 44671 License : GPL+ or Artistic Signature : RSA/SHA256, Thu 03 Jul 2014 09:22:48 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : perl-Pod-Usage-1.63-3.el7.src.rpm Build Date : Tue 10 Jun 2014 01:56:19 AM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://search.cpan.org/dist/Pod-Usage/ Summary : Print a usage message from embedded POD documentation Description : pod2usage will print a usage message for the invoking script (using its embedded POD documentation) and then exit the script with the desired exit status. The usage message printed may have any one of three levels of "verboseness": If the verbose level is 0, then only a synopsis is printed. If the verbose level is 1, then the synopsis is printed along with a description (if present) of the command line options and arguments. If the verbose level is 2, then the entire manual page is printed. Name : finger Version : 0.17 Release : 52.el7 Architecture: x86_64 Install Date: Tue 06 Apr 2021 11:13:28 AM PDT Group : Applications/Internet Size : 32929 License : BSD Signature : RSA/SHA256, Fri 29 Aug 2014 02:57:31 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : finger-0.17-52.el7.src.rpm Build Date : Fri 29 Aug 2014 02:49:47 AM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS Summary : The finger client Description : Finger is a utility which allows users to see information about system users (login name, home directory, name, how long they've been logged in to the system, etc.). The finger package includes a standard finger client. You should install finger if you'd like to retrieve finger information from other systems. Name : perl-Exporter Version : 5.68 Release : 3.el7 Architecture: noarch Install Date: Tue 15 Oct 2019 11:27:58 AM PDT Group : Development/Libraries Size : 56612 License : GPL+ or Artistic Signature : RSA/SHA256, Thu 03 Jul 2014 09:17:36 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : perl-Exporter-5.68-3.el7.src.rpm Build Date : Mon 09 Jun 2014 09:09:10 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://search.cpan.org/dist/Exporter/ Summary : Implements default import method for modules Description : The Exporter module implements an import method which allows a module to export functions and variables to its users' name spaces. Many modules use Exporter rather than implementing their own import method because Exporter provides a highly flexible interface, with an implementation optimized for the common case. Name : perl-Carp Version : 1.26 Release : 244.el7 Architecture: noarch Install Date: Tue 15 Oct 2019 11:27:58 AM PDT Group : Development/Libraries Size : 28276 License : GPL+ or Artistic Signature : RSA/SHA256, Thu 03 Jul 2014 09:15:11 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : perl-Carp-1.26-244.el7.src.rpm Build Date : Mon 09 Jun 2014 06:12:39 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://search.cpan.org/dist/Carp/ Summary : Alternative warn and die for modules Description : The Carp routines are useful in your own modules because they act like die() or warn(), but with a message which is more likely to be useful to a user of your module. In the case of cluck, confess, and longmess that context is a summary of every call in the call-stack. For a shorter message you can use carp or croak which report the error as being from where your module was called. There is no guarantee that that is where the error was, but it is a good educated guess. Name : libsemanage Version : 2.5 Release : 14.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:28 AM PDT Group : System Environment/Libraries Size : 302329 License : LGPLv2+ Signature : RSA/SHA256, Mon 12 Nov 2018 06:37:32 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : libsemanage-2.5-14.el7.src.rpm Build Date : Tue 30 Oct 2018 04:44:33 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://github.com/SELinuxProject/selinux/wiki Summary : SELinux binary policy manipulation library Description : Security-enhanced Linux is a feature of the Linux® kernel and a number of utilities with enhanced security functionality designed to add mandatory access controls to Linux. The Security-enhanced Linux kernel contains new architectural components originally developed to improve the security of the Flask operating system. These architectural components provide general support for the enforcement of many kinds of mandatory access control policies, including those based on the concepts of Type Enforcement®, Role-based Access Control, and Multi-level Security. libsemanage provides an API for the manipulation of SELinux binary policies. It is used by checkpolicy (the policy compiler) and similar tools, as well as by programs like load_policy that need to perform specific transformations on binary policies such as customizing policy boolean settings. Name : perl-File-Temp Version : 0.23.01 Release : 3.el7 Architecture: noarch Install Date: Tue 15 Oct 2019 11:27:58 AM PDT Group : Development/Libraries Size : 158781 License : GPL+ or Artistic Signature : RSA/SHA256, Thu 03 Jul 2014 09:18:15 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : perl-File-Temp-0.23.01-3.el7.src.rpm Build Date : Tue 10 Jun 2014 12:03:09 AM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://search.cpan.org/dist/File-Temp/ Summary : Return name and handle of a temporary file safely Description : File::Temp can be used to create and open temporary files in a safe way. There is both a function interface and an object-oriented interface. The File::Temp constructor or the tempfile() function can be used to return the name and the open file handle of a temporary file. The tempdir() function can be used to create a temporary directory. Name : libfastjson Version : 0.99.4 Release : 3.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:29 AM PDT Group : Unspecified Size : 57273 License : MIT Signature : RSA/SHA256, Mon 12 Nov 2018 06:32:07 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : libfastjson-0.99.4-3.el7.src.rpm Build Date : Tue 30 Oct 2018 01:01:55 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://github.com/rsyslog/libfastjson Summary : A JSON implementation in C Description : LIBFASTJSON implements a reference counting object model that allows you to easily construct JSON objects in C, output them as JSON formatted strings and parse JSON formatted strings back into the C representation of JSON objects. Name : perl-Pod-Simple Epoch : 1 Version : 3.28 Release : 4.el7 Architecture: noarch Install Date: Tue 15 Oct 2019 11:27:58 AM PDT Group : Development/Libraries Size : 538320 License : GPL+ or Artistic Signature : RSA/SHA256, Thu 03 Jul 2014 09:22:44 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : perl-Pod-Simple-3.28-4.el7.src.rpm Build Date : Mon 09 Jun 2014 07:00:13 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://search.cpan.org/dist/Pod-Simple/ Summary : Framework for parsing POD documentation Description : Pod::Simple is a Perl library for parsing text in the Pod ("plain old documentation") markup language that is typically used for writing documentation for Perl and for Perl modules. Name : libdaemon Version : 0.14 Release : 7.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:29 AM PDT Group : System Environment/Libraries Size : 62045 License : LGPLv2+ Signature : RSA/SHA256, Thu 03 Jul 2014 07:41:19 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : libdaemon-0.14-7.el7.src.rpm Build Date : Mon 09 Jun 2014 09:26:48 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://0pointer.de/lennart/projects/libdaemon/ Summary : Library for writing UNIX daemons Description : libdaemon is a lightweight C library which eases the writing of UNIX daemons. It consists of the following parts: * A wrapper around fork() which does the correct daemonization procedure of a process * A wrapper around syslog() for simpler and compatible log output to Syslog or STDERR * An API for writing PID files * An API for serializing UNIX signals into a pipe for usage with select() or poll() * An API for running subprocesses with STDOUT and STDERR redirected to syslog. Name : perl-Error Epoch : 1 Version : 0.17020 Release : 2.el7 Architecture: noarch Install Date: Tue 15 Oct 2019 11:28:01 AM PDT Group : Development/Libraries Size : 50015 License : (GPL+ or Artistic) and MIT Signature : RSA/SHA256, Thu 03 Jul 2014 09:17:32 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : perl-Error-0.17020-2.el7.src.rpm Build Date : Mon 09 Jun 2014 01:19:49 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://search.cpan.org/dist/Error/ Summary : Error/exception handling in an OO-ish way Description : The Error package provides two interfaces. Firstly Error provides a procedural interface to exception handling. Secondly Error is a base class for errors/exceptions that can either be thrown, for subsequent catch, or can simply be recorded. Name : libestr Version : 0.1.9 Release : 2.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:29 AM PDT Group : Unspecified Size : 44322 License : LGPLv2+ Signature : RSA/SHA256, Thu 03 Jul 2014 07:45:14 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : libestr-0.1.9-2.el7.src.rpm Build Date : Mon 09 Jun 2014 09:27:04 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://libestr.adiscon.com/ Summary : String handling essentials library Description : This package compiles the string handling essentials library used by the Rsyslog daemon. Name : git Version : 1.8.3.1 Release : 20.el7 Architecture: x86_64 Install Date: Tue 15 Oct 2019 11:28:02 AM PDT Group : Development/Tools Size : 23232282 License : GPLv2 Signature : RSA/SHA256, Tue 20 Nov 2018 12:34:30 PM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : git-1.8.3.1-20.el7.src.rpm Build Date : Mon 19 Nov 2018 08:13:01 AM PST Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://git-scm.com/ Summary : Fast Version Control System Description : Git is a fast, scalable, distributed revision control system with an unusually rich command set that provides both high-level operations and full access to internals. The git rpm installs the core tools with minimal dependencies. To install all git packages, including tools for integrating with other SCMs, install the git-all meta-package. Name : grub2-pc-modules Epoch : 1 Version : 2.02 Release : 0.80.el7.centos Architecture: noarch Install Date: Wed 16 Oct 2019 09:21:17 AM PDT Group : System Environment/Base Size : 2309922 License : GPLv3+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:57:42 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : grub2-2.02-0.80.el7.centos.src.rpm Build Date : Thu 08 Aug 2019 04:31:11 AM PDT Build Host : kbuilder.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gnu.org/software/grub/ Summary : Modules used to build custom grub images Description : The GRand Unified Bootloader (GRUB) is a highly configurable and customizable bootloader with modular architecture. It supports a rich variety of kernel formats, file systems, computer architectures and hardware devices. This subpackage provides support for rebuilding your own grub.efi. Name : containers-common Epoch : 1 Version : 0.1.37 Release : 3.el7.centos Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:17 AM PDT Group : Unspecified Size : 20723 License : ASL 2.0 Signature : RSA/SHA256, Mon 16 Sep 2019 05:33:22 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : skopeo-0.1.37-3.el7.centos.src.rpm Build Date : Sun 15 Sep 2019 07:07:25 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://github.com/containers/skopeo Summary : Configuration files for working with image signature Description : This package installs a default signature store configuration policy under `/etc/containers/`. Name : glibc-common Version : 2.17 Release : 292.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:22 AM PDT Group : System Environment/Base Size : 120326282 License : LGPLv2+ and LGPLv2+ with exceptions and GPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:24:43 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : glibc-2.17-292.el7.src.rpm Build Date : Tue 06 Aug 2019 04:23:44 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gnu.org/software/glibc/ Summary : Common binaries and locale data for glibc Description : The glibc-common package includes common binaries for the GNU libc libraries, as well as national language (locale) support. Name : audit-libs Version : 2.8.5 Release : 4.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:26 AM PDT Group : Development/Libraries Size : 256386 License : LGPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:20:30 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : audit-2.8.5-4.el7.src.rpm Build Date : Thu 08 Aug 2019 05:06:20 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://people.redhat.com/sgrubb/audit/ Summary : Dynamic library for libaudit Description : The audit-libs package contains the dynamic libraries needed for applications to use the audit framework. Name : iputils Version : 20160308 Release : 10.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:32 AM PDT Group : System Environment/Daemons Size : 343497 License : BSD and GPLv2+ Signature : RSA/SHA256, Thu 10 Aug 2017 09:47:33 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : iputils-20160308-10.el7.src.rpm Build Date : Fri 04 Aug 2017 01:01:04 AM PDT Build Host : c1bm.rdu2.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://github.com/iputils/iputils Summary : Network monitoring tools including ping Description : The iputils package contains basic utilities for monitoring a network, including ping. The ping command sends a series of ICMP protocol ECHO_REQUEST packets to a specified network host to discover whether the target machine is alive and receiving network traffic. Name : coreutils Version : 8.22 Release : 24.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:28 AM PDT Group : System Environment/Base Size : 14593469 License : GPLv3+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:21:30 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : coreutils-8.22-24.el7.src.rpm Build Date : Mon 19 Aug 2019 11:27:26 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gnu.org/software/coreutils/ Summary : A set of basic GNU tools commonly used in shell scripts Description : These are the GNU core utilities. This package is the combination of the old GNU fileutils, sh-utils, and textutils packages. Name : libdb Version : 5.3.21 Release : 25.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:29 AM PDT Group : System Environment/Libraries Size : 1858144 License : BSD and LGPLv2 and Sleepycat Signature : RSA/SHA256, Thu 22 Aug 2019 02:29:18 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : libdb-5.3.21-25.el7.src.rpm Build Date : Thu 08 Aug 2019 05:18:38 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.oracle.com/database/berkeley-db/ Summary : The Berkeley DB database library for C Description : The Berkeley Database (Berkeley DB) is a programmatic toolkit that provides embedded database support for both traditional and client/server applications. The Berkeley DB includes B+tree, Extended Linear Hashing, Fixed and Variable-length record access methods, transactions, locking, logging, shared memory caching, and database recovery. The Berkeley DB supports C, C++, Java, and Perl APIs. It is used by many applications, including Python and Perl, so this should be installed on all systems. Name : python-libs Version : 2.7.5 Release : 86.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:32 AM PDT Group : Applications/System Size : 24715873 License : Python Signature : RSA/SHA256, Thu 22 Aug 2019 02:40:21 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : python-2.7.5-86.el7.src.rpm Build Date : Tue 06 Aug 2019 06:15:38 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.python.org/ Summary : Runtime libraries for Python Description : This package contains runtime libraries for use by Python: - the libpython dynamic library, for use by applications that embed Python as a scripting language, and by the main "python" executable - the Python standard library Name : glib2 Version : 2.56.1 Release : 5.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:33 AM PDT Group : Unspecified Size : 12170073 License : LGPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:24:36 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : glib2-2.56.1-5.el7.src.rpm Build Date : Thu 08 Aug 2019 04:38:20 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gtk.org Summary : A library of handy utility functions Description : GLib is the low-level core library that forms the basis for projects such as GTK+ and GNOME. It provides data structure handling for C, portability wrappers, and interfaces for such runtime functionality as an event loop, threads, dynamic loading, and an object system. Name : nss Version : 3.44.0 Release : 4.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:34 AM PDT Group : System Environment/Libraries Size : 2475794 License : MPLv2.0 Signature : RSA/SHA256, Thu 22 Aug 2019 02:36:25 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : nss-3.44.0-4.el7.src.rpm Build Date : Mon 12 Aug 2019 10:02:37 AM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.mozilla.org/projects/security/pki/nss/ Summary : Network Security Services Description : Network Security Services (NSS) is a set of libraries designed to support cross-platform development of security-enabled client and server applications. Applications built with NSS can support SSL v2 and v3, TLS, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, X.509 v3 certificates, and other security standards. Name : ethtool Epoch : 2 Version : 4.8 Release : 10.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:35 AM PDT Group : Applications/System Size : 354299 License : GPLv2 Signature : RSA/SHA256, Thu 22 Aug 2019 02:22:57 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : ethtool-4.8-10.el7.src.rpm Build Date : Thu 08 Aug 2019 04:16:59 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://www.kernel.org/pub/software/network/ethtool/ Summary : Settings tool for Ethernet NICs Description : This utility allows querying and changing settings such as speed, port, auto-negotiation, PCI locations and checksum offload on many network devices, especially of Ethernet devices. Name : libpciaccess Version : 0.14 Release : 1.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:35 AM PDT Group : System Environment/Libraries Size : 45649 License : MIT Signature : RSA/SHA256, Wed 25 Apr 2018 04:17:01 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : libpciaccess-0.14-1.el7.src.rpm Build Date : Tue 10 Apr 2018 07:32:03 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://gitweb.freedesktop.org/?p=xorg/lib/libpciaccess.git Summary : PCI access library Description : libpciaccess is a library for portable PCI access routines across multiple operating systems. Name : audit-libs-python Version : 2.8.5 Release : 4.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:35 AM PDT Group : Development/Libraries Size : 323427 License : LGPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:20:32 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : audit-2.8.5-4.el7.src.rpm Build Date : Thu 08 Aug 2019 05:06:20 AM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://people.redhat.com/sgrubb/audit/ Summary : Python bindings for libaudit Description : The audit-libs-python package contains the bindings so that libaudit and libauparse can be used by python. Name : alsa-firmware Version : 1.0.28 Release : 2.el7 Architecture: noarch Install Date: Thu 15 Aug 2019 10:53:36 AM PDT Group : Applications/Multimedia Size : 9572469 License : GPL+ and BSD and GPLv2+ and GPLv2 and LGPLv2+ Signature : RSA/SHA256, Sat 14 Mar 2015 12:36:28 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : alsa-firmware-1.0.28-2.el7.src.rpm Build Date : Thu 05 Mar 2015 01:58:35 PM PST Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.alsa-project.org/ Summary : Firmware for several ALSA-supported sound cards Description : This package contains the firmware binaries for a number of sound cards. Some (but not all of these) require firmware loaders which are included in the alsa-tools-firmware package. Name : xfsprogs Version : 4.5.0 Release : 20.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:36 AM PDT Group : System Environment/Base Size : 4079279 License : GPL+ and LGPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:45:37 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : xfsprogs-4.5.0-20.el7.src.rpm Build Date : Thu 08 Aug 2019 08:23:27 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : https://xfs.wiki.kernel.org Summary : Utilities for managing the XFS filesystem Description : A set of commands to use the XFS filesystem, including mkfs.xfs. XFS is a high performance journaling filesystem which originated on the SGI IRIX platform. It is completely multi-threaded, can support large files and large filesystems, extended attributes, variable block sizes, is extent based, and makes extensive use of Btrees (directories, extents, free space) to aid both performance and scalability. Name : dbus-python Version : 1.1.1 Release : 9.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:36 AM PDT Group : Unspecified Size : 848122 License : MIT Signature : RSA/SHA256, Thu 03 Jul 2014 06:06:25 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : dbus-python-1.1.1-9.el7.src.rpm Build Date : Tue 10 Jun 2014 12:12:40 AM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.freedesktop.org/software/dbus-python Summary : D-Bus Python Bindings Description : D-Bus python bindings for use with python programs. Name : binutils Version : 2.27 Release : 41.base.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:38 AM PDT Group : Development/Tools Size : 25150234 License : GPLv3+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:20:57 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : binutils-2.27-41.base.el7.src.rpm Build Date : Thu 08 Aug 2019 04:14:36 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://sources.redhat.com/binutils Summary : A GNU collection of binary utilities Description : Binutils is a collection of binary utilities, including ar (for creating, modifying and extracting from archives), as (a family of GNU assemblers), gprof (for displaying call graph profile data), ld (the GNU linker), nm (for listing symbols from object files), objcopy (for copying and translating object files), objdump (for displaying information from object files), ranlib (for generating an index for the contents of an archive), readelf (for displaying detailed information about binary files), size (for listing the section sizes of an object or archive file), strings (for listing printable strings from files), strip (for discarding symbols), and addr2line (for converting addresses to file and line). Name : GeoIP Version : 1.5.0 Release : 14.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:39 AM PDT Group : Development/Libraries Size : 3865708 License : LGPLv2+ and GPLv2+ and CC-BY-SA Signature : RSA/SHA256, Thu 22 Aug 2019 02:24:31 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : GeoIP-1.5.0-14.el7.src.rpm Build Date : Thu 08 Aug 2019 04:34:37 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.maxmind.com/app/c Summary : Library for country/city/organization to IP address or hostname mapping Description : GeoIP is a C library that enables the user to find the country that any IP address or hostname originates from. It uses a file based database that is accurate as of June 2007 and can optionally be updated on a weekly basis by installing the GeoIP-update package. This database simply contains IP blocks as keys, and countries as values. This database should be more complete and accurate than using reverse DNS lookups. This package includes GeoLite data created by MaxMind, available from http://www.maxmind.com/ Name : pth Version : 2.0.7 Release : 23.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:36 AM PDT Group : System Environment/Libraries Size : 267851 License : LGPLv2+ Signature : RSA/SHA256, Wed 25 Nov 2015 07:32:05 AM PST, Key ID 24c6a8a7f4a80eb5 Source RPM : pth-2.0.7-23.el7.src.rpm Build Date : Fri 20 Nov 2015 12:11:52 AM PST Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gnu.org/software/pth/ Summary : The GNU Portable Threads library Description : Pth is a very portable POSIX/ANSI-C based library for Unix platforms which provides non-preemptive priority-based scheduling for multiple threads of execution ("multithreading") inside server applications. All threads run in the same address space of the server application, but each thread has it's own individual program-counter, run-time stack, signal mask and errno variable. Name : rpm-build-libs Version : 4.11.3 Release : 40.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:40 AM PDT Group : Development/Libraries Size : 166776 License : GPLv2+ and LGPLv2+ with exceptions Signature : RSA/SHA256, Thu 22 Aug 2019 02:42:34 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : rpm-4.11.3-40.el7.src.rpm Build Date : Tue 06 Aug 2019 03:50:54 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.rpm.org/ Summary : Libraries for building and signing RPM packages Description : This package contains the RPM shared libraries for building and signing packages. Name : gpgme Version : 1.3.2 Release : 5.el7 Architecture: x86_64 Install Date: Thu 15 Aug 2019 10:53:37 AM PDT Group : Applications/System Size : 547534 License : LGPLv2+ Signature : RSA/SHA256, Thu 03 Jul 2014 06:44:14 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : gpgme-1.3.2-5.el7.src.rpm Build Date : Mon 09 Jun 2014 06:03:04 PM PDT Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gnupg.org/related_software/gpgme/ Summary : GnuPG Made Easy - high level crypto API Description : GnuPG Made Easy (GPGME) is a library designed to make access to GnuPG easier for applications. It provides a high-level crypto API for encryption, decryption, signing, signature verification and key management. Name : libss Version : 1.42.9 Release : 16.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:41 AM PDT Group : Development/Libraries Size : 73089 License : MIT Signature : RSA/SHA256, Thu 22 Aug 2019 02:33:08 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : e2fsprogs-1.42.9-16.el7.src.rpm Build Date : Thu 08 Aug 2019 04:19:51 PM PDT Build Host : x86-02.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://e2fsprogs.sourceforge.net/ Summary : Command line interface parsing library Description : This is libss, a command line interface parsing library, part of e2fsprogs. This package includes a tool that parses a command table to generate a simple command-line interface parser, the include files needed to compile and use it. It was originally inspired by the Multics SubSystem library. Name : kernel-tools-libs Version : 3.10.0 Release : 1062.1.2.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:41 AM PDT Group : Development/System Size : 18640 License : GPLv2 Signature : RSA/SHA256, Wed 02 Oct 2019 07:16:00 AM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : kernel-3.10.0-1062.1.2.el7.src.rpm Build Date : Mon 30 Sep 2019 07:39:55 AM PDT Build Host : kbuilder.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.kernel.org/ Summary : Libraries for the kernels-tools Description : This package contains the libraries built from the tools/ directory from the kernel source. jc-1.17.3/tests/fixtures/centos-7.7/rpm-qi-package.json000066400000000000000000000021171415226333200225110ustar00rootroot00000000000000[{"name":"make","epoch":1,"version":"3.82","release":"24.el7","architecture":"x86_64","install_date":"Wed 16 Oct 2019 09:21:42 AM PDT","group":"Development/Tools","size":1160660,"license":"GPLv2+","signature":"RSA/SHA256, Thu 22 Aug 2019 02:34:59 PM PDT, Key ID 24c6a8a7f4a80eb5","source_rpm":"make-3.82-24.el7.src.rpm","build_date":"Thu 08 Aug 2019 05:47:25 PM PDT","build_host":"x86-01.bsys.centos.org","relocations":"(not relocatable)","packager":"CentOS BuildSystem ","vendor":"CentOS","url":"http://www.gnu.org/software/make/","summary":"A GNU tool which simplifies the build process for users","description":"A GNU tool for controlling the generation of executables and other non-source files of a program from the program's source files. Make allows users to build and install packages without any significant knowledge about the details of the build process. The details about how the program should be built are provided for make in the program's makefile.","build_epoch":1565311645,"build_epoch_utc":null,"install_date_epoch":1571242902,"install_date_epoch_utc":null}] jc-1.17.3/tests/fixtures/centos-7.7/rpm-qi-package.out000066400000000000000000000017711415226333200223540ustar00rootroot00000000000000Name : make Epoch : 1 Version : 3.82 Release : 24.el7 Architecture: x86_64 Install Date: Wed 16 Oct 2019 09:21:42 AM PDT Group : Development/Tools Size : 1160660 License : GPLv2+ Signature : RSA/SHA256, Thu 22 Aug 2019 02:34:59 PM PDT, Key ID 24c6a8a7f4a80eb5 Source RPM : make-3.82-24.el7.src.rpm Build Date : Thu 08 Aug 2019 05:47:25 PM PDT Build Host : x86-01.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : http://www.gnu.org/software/make/ Summary : A GNU tool which simplifies the build process for users Description : A GNU tool for controlling the generation of executables and other non-source files of a program from the program's source files. Make allows users to build and install packages without any significant knowledge about the details of the build process. The details about how the program should be built are provided for make in the program's makefile. jc-1.17.3/tests/fixtures/centos-7.7/sfdisk-d-multi.json000066400000000000000000000012321415226333200225440ustar00rootroot00000000000000[{"disk":"/dev/sda","units":"sectors","partitions":[{"device":"/dev/sda1","start":2048,"size":2097152,"id":"83","boot":true},{"device":"/dev/sda2","start":2099200,"size":39843840,"id":"8e","boot":false},{"device":"/dev/sda3","start":0,"size":0,"id":"0","boot":false},{"device":"/dev/sda4","start":0,"size":0,"id":"0","boot":false}]},{"disk":"/dev/sdb","units":"sectors","partitions":[{"device":"/dev/sdb1","start":2048,"size":2097152,"id":"83","boot":true},{"device":"/dev/sdb2","start":2099200,"size":39843840,"id":"8e","boot":false},{"device":"/dev/sdb3","start":0,"size":0,"id":"0","boot":false},{"device":"/dev/sdb4","start":0,"size":0,"id":"0","boot":false}]}] jc-1.17.3/tests/fixtures/centos-7.7/sfdisk-d-multi.out000066400000000000000000000010101415226333200223740ustar00rootroot00000000000000# partition table of /dev/sda unit: sectors /dev/sda1 : start= 2048, size= 2097152, Id=83, bootable /dev/sda2 : start= 2099200, size= 39843840, Id=8e /dev/sda3 : start= 0, size= 0, Id= 0 /dev/sda4 : start= 0, size= 0, Id= 0 # partition table of /dev/sdb unit: sectors /dev/sdb1 : start= 2048, size= 2097152, Id=83, bootable /dev/sdb2 : start= 2099200, size= 39843840, Id=8e /dev/sdb3 : start= 0, size= 0, Id= 0 /dev/sdb4 : start= 0, size= 0, Id= 0 jc-1.17.3/tests/fixtures/centos-7.7/sfdisk-d.json000066400000000000000000000005161415226333200214200ustar00rootroot00000000000000[{"disk":"/dev/sda","units":"sectors","partitions":[{"device":"/dev/sda1","start":2048,"size":2097152,"id":"83","boot":true},{"device":"/dev/sda2","start":2099200,"size":39843840,"id":"8e","boot":false},{"device":"/dev/sda3","start":0,"size":0,"id":"0","boot":false},{"device":"/dev/sda4","start":0,"size":0,"id":"0","boot":false}]}] jc-1.17.3/tests/fixtures/centos-7.7/sfdisk-d.out000066400000000000000000000004031415226333200212510ustar00rootroot00000000000000# partition table of /dev/sda unit: sectors /dev/sda1 : start= 2048, size= 2097152, Id=83, bootable /dev/sda2 : start= 2099200, size= 39843840, Id=8e /dev/sda3 : start= 0, size= 0, Id= 0 /dev/sda4 : start= 0, size= 0, Id= 0 jc-1.17.3/tests/fixtures/centos-7.7/sfdisk-l-multi.json000066400000000000000000000024251415226333200225610ustar00rootroot00000000000000[{"disk":"/dev/sda","cylinders":2610,"heads":255,"sectors_per_track":63,"units":"cylinders of 8225280 bytes, blocks of 1024 bytes, counting from 0","partitions":[{"device":"/dev/sda1","boot":true,"start":0,"end":130,"cyls":131,"blocks":1048576,"id":"83","system":"Linux"},{"device":"/dev/sda2","boot":false,"start":130,"end":2610,"cyls":2481,"blocks":19921920,"id":"8e","system":"Linux LVM"},{"device":"/dev/sda3","boot":false,"start":0,"end":null,"cyls":0,"blocks":0,"id":"0","system":"Empty"},{"device":"/dev/sda4","boot":false,"start":0,"end":null,"cyls":0,"blocks":0,"id":"0","system":"Empty"}]},{"disk":"/dev/mapper/centos-root","cylinders":2218,"heads":255,"sectors_per_track":63},{"disk":"/dev/mapper/centos-swap","cylinders":261,"heads":255,"sectors_per_track":63,"units":"cylinders of 8225280 bytes, blocks of 1024 bytes, counting from 0","partitions":[{"device":"/dev/sda1","boot":true,"start":0,"end":130,"cyls":131,"blocks":1048576,"id":"83","system":"Linux"},{"device":"/dev/sda2","boot":false,"start":130,"end":2610,"cyls":2481,"blocks":19921920,"id":"8e","system":"Linux LVM"},{"device":"/dev/sda3","boot":false,"start":0,"end":null,"cyls":0,"blocks":0,"id":"0","system":"Empty"},{"device":"/dev/sda4","boot":false,"start":0,"end":null,"cyls":0,"blocks":0,"id":"0","system":"Empty"}]}] jc-1.17.3/tests/fixtures/centos-7.7/sfdisk-l-multi.out000066400000000000000000000017101415226333200224130ustar00rootroot00000000000000 Disk /dev/sda: 2610 cylinders, 255 heads, 63 sectors/track Units: cylinders of 8225280 bytes, blocks of 1024 bytes, counting from 0 Device Boot Start End #cyls #blocks Id System /dev/sda1 * 0+ 130- 131- 1048576 83 Linux /dev/sda2 130+ 2610- 2481- 19921920 8e Linux LVM /dev/sda3 0 - 0 0 0 Empty /dev/sda4 0 - 0 0 0 Empty Disk /dev/mapper/centos-root: 2218 cylinders, 255 heads, 63 sectors/track Disk /dev/mapper/centos-swap: 261 cylinders, 255 heads, 63 sectors/track Units: cylinders of 8225280 bytes, blocks of 1024 bytes, counting from 0 Device Boot Start End #cyls #blocks Id System /dev/sda1 * 0+ 130- 131- 1048576 83 Linux /dev/sda2 130+ 2610- 2481- 19921920 8e Linux LVM /dev/sda3 0 - 0 0 0 Empty /dev/sda4 0 - 0 0 0 Empty jc-1.17.3/tests/fixtures/centos-7.7/sfdisk-l.json000066400000000000000000000014061415226333200214270ustar00rootroot00000000000000[{"disk":"/dev/sda","cylinders":2610,"heads":255,"sectors_per_track":63,"units":"cylinders of 8225280 bytes, blocks of 1024 bytes, counting from 0","partitions":[{"device":"/dev/sda1","boot":true,"start":0,"end":130,"cyls":131,"blocks":1048576,"id":"83","system":"Linux"},{"device":"/dev/sda2","boot":false,"start":130,"end":2610,"cyls":2481,"blocks":19921920,"id":"8e","system":"Linux LVM"},{"device":"/dev/sda3","boot":false,"start":0,"end":null,"cyls":0,"blocks":0,"id":"0","system":"Empty"},{"device":"/dev/sda4","boot":false,"start":0,"end":null,"cyls":0,"blocks":0,"id":"0","system":"Empty"}]},{"disk":"/dev/mapper/centos-root","cylinders":2218,"heads":255,"sectors_per_track":63},{"disk":"/dev/mapper/centos-swap","cylinders":261,"heads":255,"sectors_per_track":63}] jc-1.17.3/tests/fixtures/centos-7.7/sfdisk-l.out000066400000000000000000000011151415226333200212620ustar00rootroot00000000000000 Disk /dev/sda: 2610 cylinders, 255 heads, 63 sectors/track Units: cylinders of 8225280 bytes, blocks of 1024 bytes, counting from 0 Device Boot Start End #cyls #blocks Id System /dev/sda1 * 0+ 130- 131- 1048576 83 Linux /dev/sda2 130+ 2610- 2481- 19921920 8e Linux LVM /dev/sda3 0 - 0 0 0 Empty /dev/sda4 0 - 0 0 0 Empty Disk /dev/mapper/centos-root: 2218 cylinders, 255 heads, 63 sectors/track Disk /dev/mapper/centos-swap: 261 cylinders, 255 heads, 63 sectors/track jc-1.17.3/tests/fixtures/centos-7.7/sfdisk-luB.json000066400000000000000000000013201415226333200217110ustar00rootroot00000000000000[{"disk":"/dev/sda","cylinders":2610,"heads":255,"sectors_per_track":63,"units":"blocks of 1024 bytes, counting from 0","partitions":[{"device":"/dev/sda1","boot":true,"start":1024,"end":1049599,"blocks":1048576,"id":"83","system":"Linux"},{"device":"/dev/sda2","boot":false,"start":1049600,"end":20971519,"blocks":19921920,"id":"8e","system":"Linux LVM"},{"device":"/dev/sda3","boot":false,"start":0,"end":null,"blocks":0,"id":"0","system":"Empty"},{"device":"/dev/sda4","boot":false,"start":0,"end":null,"blocks":0,"id":"0","system":"Empty"}]},{"disk":"/dev/mapper/centos-root","cylinders":2218,"heads":255,"sectors_per_track":63},{"disk":"/dev/mapper/centos-swap","cylinders":261,"heads":255,"sectors_per_track":63}] jc-1.17.3/tests/fixtures/centos-7.7/sfdisk-luB.out000066400000000000000000000010351415226333200215520ustar00rootroot00000000000000 Disk /dev/sda: 2610 cylinders, 255 heads, 63 sectors/track Units: blocks of 1024 bytes, counting from 0 Device Boot Start End #blocks Id System /dev/sda1 * 1024 1049599 1048576 83 Linux /dev/sda2 1049600 20971519 19921920 8e Linux LVM /dev/sda3 0 - 0 0 Empty /dev/sda4 0 - 0 0 Empty Disk /dev/mapper/centos-root: 2218 cylinders, 255 heads, 63 sectors/track Disk /dev/mapper/centos-swap: 261 cylinders, 255 heads, 63 sectors/track jc-1.17.3/tests/fixtures/centos-7.7/sfdisk-luM.json000066400000000000000000000014031415226333200217260ustar00rootroot00000000000000[{"disk":"/dev/sda","cylinders":2610,"heads":255,"sectors_per_track":63,"units":"1MiB = 1024*1024 bytes, blocks of 1024 bytes, counting from 0","partitions":[{"device":"/dev/sda1","boot":true,"start":1,"end":1024,"mib":1024,"blocks":1048576,"id":"83","system":"Linux"},{"device":"/dev/sda2","boot":false,"start":1025,"end":20479,"mib":19455,"blocks":19921920,"id":"8e","system":"Linux LVM"},{"device":"/dev/sda3","boot":false,"start":0,"end":null,"mib":0,"blocks":0,"id":"0","system":"Empty"},{"device":"/dev/sda4","boot":false,"start":0,"end":null,"mib":0,"blocks":0,"id":"0","system":"Empty"}]},{"disk":"/dev/mapper/centos-root","cylinders":2218,"heads":255,"sectors_per_track":63},{"disk":"/dev/mapper/centos-swap","cylinders":261,"heads":255,"sectors_per_track":63}] jc-1.17.3/tests/fixtures/centos-7.7/sfdisk-luM.out000066400000000000000000000010721415226333200215660ustar00rootroot00000000000000 Disk /dev/sda: 2610 cylinders, 255 heads, 63 sectors/track Units: 1MiB = 1024*1024 bytes, blocks of 1024 bytes, counting from 0 Device Boot Start End MiB #blocks Id System /dev/sda1 * 1 1024 1024 1048576 83 Linux /dev/sda2 1025 20479 19455 19921920 8e Linux LVM /dev/sda3 0 - 0 0 0 Empty /dev/sda4 0 - 0 0 0 Empty Disk /dev/mapper/centos-root: 2218 cylinders, 255 heads, 63 sectors/track Disk /dev/mapper/centos-swap: 261 cylinders, 255 heads, 63 sectors/track jc-1.17.3/tests/fixtures/centos-7.7/sfdisk-luS.json000066400000000000000000000013241415226333200217360ustar00rootroot00000000000000[{"disk":"/dev/sda","cylinders":2610,"heads":255,"sectors_per_track":63,"units":"sectors of 512 bytes, counting from 0","partitions":[{"device":"/dev/sda1","boot":true,"start":2048,"end":2099199,"sectors":2097152,"id":"83","system":"Linux"},{"device":"/dev/sda2","boot":false,"start":2099200,"end":41943039,"sectors":39843840,"id":"8e","system":"Linux LVM"},{"device":"/dev/sda3","boot":false,"start":0,"end":null,"sectors":0,"id":"0","system":"Empty"},{"device":"/dev/sda4","boot":false,"start":0,"end":null,"sectors":0,"id":"0","system":"Empty"}]},{"disk":"/dev/mapper/centos-root","cylinders":2218,"heads":255,"sectors_per_track":63},{"disk":"/dev/mapper/centos-swap","cylinders":261,"heads":255,"sectors_per_track":63}] jc-1.17.3/tests/fixtures/centos-7.7/sfdisk-luS.out000066400000000000000000000010351415226333200215730ustar00rootroot00000000000000 Disk /dev/sda: 2610 cylinders, 255 heads, 63 sectors/track Units: sectors of 512 bytes, counting from 0 Device Boot Start End #sectors Id System /dev/sda1 * 2048 2099199 2097152 83 Linux /dev/sda2 2099200 41943039 39843840 8e Linux LVM /dev/sda3 0 - 0 0 Empty /dev/sda4 0 - 0 0 Empty Disk /dev/mapper/centos-root: 2218 cylinders, 255 heads, 63 sectors/track Disk /dev/mapper/centos-swap: 261 cylinders, 255 heads, 63 sectors/track jc-1.17.3/tests/fixtures/centos-7.7/sha256sum.json000066400000000000000000000136421415226333200214550ustar00rootroot00000000000000[{"filename": "devtoolset-3-gcc-4.9.2-6.el7.x86_64.rpm", "hash": "1955249927f4d64b17188766c346ecb8db77010efd9e44f875b41debe8255b44"}, {"filename": "digout", "hash": "ce1b491e2ef2a20964b52dc852b411b0fdeaae8f5b5d30efed1f44657c01777b"}, {"filename": "dmidecode.out", "hash": "59f22892a2c115a41e1f0b26c64150ea8d3b00f1ea25f1909a0b67e5f6b1dcb6"}, {"filename": "file with spaces in the name", "hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"}, {"filename": "id-centos.out", "hash": "0757f114c4383437d1b013ebf335360ff24475253ea54d2708a0f28ceddbc7a8"}, {"filename": "ifcfg.json", "hash": "7afa0e7d4404ff0f45e51176430261eab140ed1940743f298323646a27ce3005"}, {"filename": "ifconfig.out", "hash": "a06f5e6c47eabfb1b7e32cee847d120d25f8c7393345546001405b792f762173"}, {"filename": "jc", "hash": "2a2faee2eea4ce0a6d10069cd95932bbc5ae4b70c6dc913502edbfe39a3f759f"}, {"filename": "jc-1.10.5-linux.sha256", "hash": "1545a9426548e5fd74f32ad7db964c513b933e2bf6608abc08ba562908fa5c19"}, {"filename": "jc-1.10.5-linux.tar.gz", "hash": "89d4d3b5f978fdf8ad379501c011723486ae09923d778d68ae381b74b3eb0255"}, {"filename": "jc-1.10.5.rpm", "hash": "e46c5a7921629157c42416d2f47ea30ab815be016a7502f6e4b0f56788c15ba2"}, {"filename": "jc-1.11.1-linux.sha256", "hash": "18587497e5b8155d4fb063a0712e968f49770f9f2c3166e5ac6dacbaf24dbfc6"}, {"filename": "jc-1.11.1-linux.tar.gz", "hash": "70c0c66b9f687eb8b214984238578fba1424f8e5dbf90fe6eab4a5e0db55c40d"}, {"filename": "jc-1.11.1.sha256", "hash": "4f0069a8501a7f9b6e52187ce1e5ec3606ab0be94eeec887a813cae29c3d4c44"}, {"filename": "jc-1.11.1.tar.gz", "hash": "4847c84a14e76365b81278120261450565344d499b20472f55bb501a3da87350"}, {"filename": "jc-1.11.2-linux.sha256", "hash": "11c00413590b4f84d6b816d00e9de146f3033de1a800584b50679bc819e6a727"}, {"filename": "jc-1.11.2-linux.tar.gz", "hash": "bc4a507c807972bff6c736c6932875556d0534ae4ff95530120e75c0d61ddc85"}, {"filename": "jc-1.11.8-linux.sha256", "hash": "649b292cec88e0792a81113288782a536a7a068652675b971bd114ddd110efa2"}, {"filename": "jc-1.11.8-linux.tar.gz", "hash": "11b9b8d775d2c9c912f26c851f4e1d8b7ed1274148856e644713f9c48f9a3d04"}, {"filename": "jc-1.13.1-linux.sha256", "hash": "47f56c6b164cd7cc5875c6a8f29d5fe34ebb6288352a8c6526621563803e2dcb"}, {"filename": "jc-1.13.1-linux.tar.gz", "hash": "6bd22a6cd7fd25d002f167fa9e1af46abc581ac3da8aacbcfec31a403fd2021d"}, {"filename": "jc-1.13.2-linux.sha256", "hash": "b170212b843b6de279937f9601345f955f28ccf41fcfd94d802fc3cc7611c358"}, {"filename": "jc-1.13.2-linux.tar.gz", "hash": "3e1a4bb0af20f90e040b68eab2a8fe84fa4818099eae5c834a95a5042019007d"}, {"filename": "jc-1.13.4-linux.sha256", "hash": "9c1168b67782627617f806c4e7282a2a9fe133cbbf592baa0ec96dec46e6f27e"}, {"filename": "jc-1.13.4-linux.tar.gz", "hash": "e5419e799b71127636f7c630396c531c358c5f94660a73b3bf03b51ee0982b83"}, {"filename": "jello-1.2.8-linux.sha256", "hash": "3c2084cebfeb26aa237c893c1543371a0c29aa356114d05c091b5c2e9b188054"}, {"filename": "jello-1.2.8-linux.tar.gz", "hash": "65afd200472dcf20d8f629f2f20ee2e2bddaabd60cebb751e7cc9ed814f458ce"}, {"filename": "jello-1.2.9-linux.sha256", "hash": "9aac7a7bbdcb5f64b75cc2a5f17d206510ce064d93b58dee13fa5236ea5ad28e"}, {"filename": "jello-1.2.9-linux.tar.gz", "hash": "a95e7d67721430e00e6a342e6aac9fb6343069d6197b0b3c057262e6bf53c4ca"}, {"filename": "journaljson", "hash": "fc49676c9cd6282009389f91758ec50bc1ee2110ccd8ec5aa70bb27c2d6a6532"}, {"filename": "jp", "hash": "cd381415eb8283c41aba775bf18b8557c969a1502024f366d39fd89f72671f95"}, {"filename": "jp_1.1.12_linux_x86_64.zip", "hash": "4edf3eb53ed6e039cb07727cd14c4a6f4d6707fbd04d5cb0e3618fa3b791b329"}, {"filename": "jq_twitter.json", "hash": "3205543a4e6a28b40c86c4bf8509fb767242883e3ed0713a619d5432e308ae16"}, {"filename": "jtbl-1.1.6-linux.sha256", "hash": "dcc894867b1db84699df8a79d6a1d414151d444cec7feed42e8e136bf844d08c"}, {"filename": "jtbl-1.1.6-linux.tar.gz", "hash": "d18d1bb545c534e4cabc9754881fec08a1a3adb96f3c4578517ad191bd49604b"}, {"filename": "kbls.out", "hash": "54bd2863b30de34da9733e7a46edd2485c32ecd74cf2ed7a4af1e59902dd99bd"}, {"filename": "lastb.out", "hash": "cff67b694bd444870dbc499267a455a0a5fd4809e283a644126579930aee614a"}, {"filename": "lsblk-cols", "hash": "46cf694a46f04293b3e5faf0dd1fa00d53e9f04a590136aa0df96611d9af3bdb"}, {"filename": "ping-ip-O-D.out", "hash": "3d27980f6cff1b2ebea4c7e27f00d9d4239022ffc976e146eada539867e89a66"}, {"filename": "ping-ip-O.out", "hash": "3cbed448e88079c7a4cbf801146e877c844b68ecd35b5181bf85f5efef62864b"}, {"filename": "psfile.txt", "hash": "98cd30e314cce9f9fe96f6fd4935358ef336da46e001781ab4f09970c02cc8f9"}, {"filename": "resizeterm.sh", "hash": "dc0224031da7b5cecf2a2f17f2d3478e14de1ea14a12fb074972f5fa3ecac751"}, {"filename": "route-6-n.out", "hash": "c60aecaa7f75e7675d1e9fb6dac4ff12d111bdab81e1cc92e3f8f5ba257bf31e"}, {"filename": "route-6.out", "hash": "d9aee0bbfab4b35e2c09aab45f9859ba74cd4384f30a3a728696d29e6b8c6be0"}, {"filename": "routeout", "hash": "4e72611aea8d9a1a65acbcc516e7ac255fc7d94a4f2915b0746193ccb00d7fd9"}, {"filename": "ss-aeep.out", "hash": "9793d970259c55437667bae568d913a7e4a2c0894ac758214e8478847405dc06"}, {"filename": "ssout", "hash": "5a3b23c271fe17c4fb34bb96c20233d1eb64e1a3c5f07d8818cd86cc53f97a54"}, {"filename": "systemctl.out", "hash": "5ebf02f674876f72fe2f4282fa81af22f4b799e1999122bb18ed4d03c8f6eb60"}, {"filename": "top.out", "hash": "a66c17407fe22279bf76d35080ada3918cd96c65f7bc4160ce4267c13a9743d2"}, {"filename": "tracepath6.out", "hash": "45cfd9c83a151e21efa57b7d7b08691810b6ed4cfd55cb91671a7a6c1cd02487"}, {"filename": "tracepath-cnn.out", "hash": "8e9fdb6774a59eed03a81430bbbe4ea44e3df544e92265d774112090b00f051d"}, {"filename": "tr.out", "hash": "891c97e4c4f32263c1c99c52f50c6d4e8e3fbab94bdf2d6f71f7a44fa4e00239"}, {"filename": "who-aH.out", "hash": "a8494cbbc24713274d96c522c40b44d8528be25e8beb35096f34efdf95679771"}, {"filename": "who.out", "hash": "1956b4a9ebf50db3734976d4f2cab0fb929aca2a81043bf37f2b219c4c4c9a1f"}, {"filename": "whotext", "hash": "64f0a22247fcb0b3aad4be8300a0da942cd09b90e5fea2eab00fae1529e781d1"}] jc-1.17.3/tests/fixtures/centos-7.7/sha256sum.out000066400000000000000000000107241415226333200213110ustar00rootroot000000000000001955249927f4d64b17188766c346ecb8db77010efd9e44f875b41debe8255b44 devtoolset-3-gcc-4.9.2-6.el7.x86_64.rpm ce1b491e2ef2a20964b52dc852b411b0fdeaae8f5b5d30efed1f44657c01777b digout 59f22892a2c115a41e1f0b26c64150ea8d3b00f1ea25f1909a0b67e5f6b1dcb6 dmidecode.out e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 file with spaces in the name 0757f114c4383437d1b013ebf335360ff24475253ea54d2708a0f28ceddbc7a8 id-centos.out 7afa0e7d4404ff0f45e51176430261eab140ed1940743f298323646a27ce3005 ifcfg.json a06f5e6c47eabfb1b7e32cee847d120d25f8c7393345546001405b792f762173 ifconfig.out 2a2faee2eea4ce0a6d10069cd95932bbc5ae4b70c6dc913502edbfe39a3f759f jc 1545a9426548e5fd74f32ad7db964c513b933e2bf6608abc08ba562908fa5c19 jc-1.10.5-linux.sha256 89d4d3b5f978fdf8ad379501c011723486ae09923d778d68ae381b74b3eb0255 jc-1.10.5-linux.tar.gz e46c5a7921629157c42416d2f47ea30ab815be016a7502f6e4b0f56788c15ba2 jc-1.10.5.rpm 18587497e5b8155d4fb063a0712e968f49770f9f2c3166e5ac6dacbaf24dbfc6 jc-1.11.1-linux.sha256 70c0c66b9f687eb8b214984238578fba1424f8e5dbf90fe6eab4a5e0db55c40d jc-1.11.1-linux.tar.gz 4f0069a8501a7f9b6e52187ce1e5ec3606ab0be94eeec887a813cae29c3d4c44 jc-1.11.1.sha256 4847c84a14e76365b81278120261450565344d499b20472f55bb501a3da87350 jc-1.11.1.tar.gz 11c00413590b4f84d6b816d00e9de146f3033de1a800584b50679bc819e6a727 jc-1.11.2-linux.sha256 bc4a507c807972bff6c736c6932875556d0534ae4ff95530120e75c0d61ddc85 jc-1.11.2-linux.tar.gz 649b292cec88e0792a81113288782a536a7a068652675b971bd114ddd110efa2 jc-1.11.8-linux.sha256 11b9b8d775d2c9c912f26c851f4e1d8b7ed1274148856e644713f9c48f9a3d04 jc-1.11.8-linux.tar.gz 47f56c6b164cd7cc5875c6a8f29d5fe34ebb6288352a8c6526621563803e2dcb jc-1.13.1-linux.sha256 6bd22a6cd7fd25d002f167fa9e1af46abc581ac3da8aacbcfec31a403fd2021d jc-1.13.1-linux.tar.gz b170212b843b6de279937f9601345f955f28ccf41fcfd94d802fc3cc7611c358 jc-1.13.2-linux.sha256 3e1a4bb0af20f90e040b68eab2a8fe84fa4818099eae5c834a95a5042019007d jc-1.13.2-linux.tar.gz 9c1168b67782627617f806c4e7282a2a9fe133cbbf592baa0ec96dec46e6f27e jc-1.13.4-linux.sha256 e5419e799b71127636f7c630396c531c358c5f94660a73b3bf03b51ee0982b83 jc-1.13.4-linux.tar.gz 3c2084cebfeb26aa237c893c1543371a0c29aa356114d05c091b5c2e9b188054 jello-1.2.8-linux.sha256 65afd200472dcf20d8f629f2f20ee2e2bddaabd60cebb751e7cc9ed814f458ce jello-1.2.8-linux.tar.gz 9aac7a7bbdcb5f64b75cc2a5f17d206510ce064d93b58dee13fa5236ea5ad28e jello-1.2.9-linux.sha256 a95e7d67721430e00e6a342e6aac9fb6343069d6197b0b3c057262e6bf53c4ca jello-1.2.9-linux.tar.gz fc49676c9cd6282009389f91758ec50bc1ee2110ccd8ec5aa70bb27c2d6a6532 journaljson cd381415eb8283c41aba775bf18b8557c969a1502024f366d39fd89f72671f95 jp 4edf3eb53ed6e039cb07727cd14c4a6f4d6707fbd04d5cb0e3618fa3b791b329 jp_1.1.12_linux_x86_64.zip 3205543a4e6a28b40c86c4bf8509fb767242883e3ed0713a619d5432e308ae16 jq_twitter.json dcc894867b1db84699df8a79d6a1d414151d444cec7feed42e8e136bf844d08c jtbl-1.1.6-linux.sha256 d18d1bb545c534e4cabc9754881fec08a1a3adb96f3c4578517ad191bd49604b jtbl-1.1.6-linux.tar.gz 54bd2863b30de34da9733e7a46edd2485c32ecd74cf2ed7a4af1e59902dd99bd kbls.out cff67b694bd444870dbc499267a455a0a5fd4809e283a644126579930aee614a lastb.out 46cf694a46f04293b3e5faf0dd1fa00d53e9f04a590136aa0df96611d9af3bdb lsblk-cols 3d27980f6cff1b2ebea4c7e27f00d9d4239022ffc976e146eada539867e89a66 ping-ip-O-D.out 3cbed448e88079c7a4cbf801146e877c844b68ecd35b5181bf85f5efef62864b ping-ip-O.out 98cd30e314cce9f9fe96f6fd4935358ef336da46e001781ab4f09970c02cc8f9 psfile.txt dc0224031da7b5cecf2a2f17f2d3478e14de1ea14a12fb074972f5fa3ecac751 resizeterm.sh c60aecaa7f75e7675d1e9fb6dac4ff12d111bdab81e1cc92e3f8f5ba257bf31e route-6-n.out d9aee0bbfab4b35e2c09aab45f9859ba74cd4384f30a3a728696d29e6b8c6be0 route-6.out 4e72611aea8d9a1a65acbcc516e7ac255fc7d94a4f2915b0746193ccb00d7fd9 routeout 9793d970259c55437667bae568d913a7e4a2c0894ac758214e8478847405dc06 ss-aeep.out 5a3b23c271fe17c4fb34bb96c20233d1eb64e1a3c5f07d8818cd86cc53f97a54 ssout 5ebf02f674876f72fe2f4282fa81af22f4b799e1999122bb18ed4d03c8f6eb60 systemctl.out a66c17407fe22279bf76d35080ada3918cd96c65f7bc4160ce4267c13a9743d2 top.out 45cfd9c83a151e21efa57b7d7b08691810b6ed4cfd55cb91671a7a6c1cd02487 tracepath6.out 8e9fdb6774a59eed03a81430bbbe4ea44e3df544e92265d774112090b00f051d tracepath-cnn.out 891c97e4c4f32263c1c99c52f50c6d4e8e3fbab94bdf2d6f71f7a44fa4e00239 tr.out a8494cbbc24713274d96c522c40b44d8528be25e8beb35096f34efdf95679771 who-aH.out 1956b4a9ebf50db3734976d4f2cab0fb929aca2a81043bf37f2b219c4c4c9a1f who.out 64f0a22247fcb0b3aad4be8300a0da942cd09b90e5fea2eab00fae1529e781d1 whotext jc-1.17.3/tests/fixtures/centos-7.7/sha384sum.json000066400000000000000000000174131415226333200214570ustar00rootroot00000000000000[{"filename": "devtoolset-3-gcc-4.9.2-6.el7.x86_64.rpm", "hash": "13dfec928ddd0b8ca477868a2aa8c56b6cf85fe8745f952671e0b0fe52315c4f8500b94ebabfd572cc6f942875c4f17f"}, {"filename": "digout", "hash": "75f6c510781b37878f4168a3224b64f49fe6320289fa004579928d58fefb5ceaf91b5af6d431713e2b43dae1b2aefb4a"}, {"filename": "dmidecode.out", "hash": "31ca9016e7cdfeba9b8ddef08e34efcf7a45369e890ac4bd57e5336617ebead1f911d8fcc91a8bdb1a86c3512f024a1f"}, {"filename": "file with spaces in the name", "hash": "38b060a751ac96384cd9327eb1b1e36a21fdb71114be07434c0cc7bf63f6e1da274edebfe76f65fbd51ad2f14898b95b"}, {"filename": "id-centos.out", "hash": "10efecdd95d23b6a29ae311dd906b24a5c90e2ccd59872b77bdcaa7f55d32d9a95e145b9e1a1208708e9b7cadbe9edab"}, {"filename": "ifcfg.json", "hash": "012fdcea79d9d6a59dcd474f2d9535b2ac9d3a2740709b7de6f54674976537e1361da8f46af4cf465840663267f0f55e"}, {"filename": "ifconfig.out", "hash": "480e4ba8cfd4fdd25113f518e1b5fb875b398c23b02959bec87ea0cb47e5b6fcfc1d8bc80c208777101c54fc5903cb98"}, {"filename": "jc", "hash": "485c03f413b3beb95efc2bda08b16804904ccac985eadecb75d52dd91bba2c2601145d51d5ae26568319bf54d0d688ca"}, {"filename": "jc-1.10.5-linux.sha256", "hash": "e732bea551ada4e3254fc339aeaf424859bfc02718e985ad66fee9fed41dcc61cc87f07d648dbf69d32f72eee268ffdb"}, {"filename": "jc-1.10.5-linux.tar.gz", "hash": "2d7400f179eb7c2a43eaa0879c074ed46acd867aafd1947ffd7e9916d32fef55d48c93ac34c75d5931ac84f2b39b4101"}, {"filename": "jc-1.10.5.rpm", "hash": "5a9762aa33c4dfcf9fdd7fa8c94574f489117497bedced5527e4881c16712a90e2fca9da9a5254ef7dbe294d0a7cd736"}, {"filename": "jc-1.11.1-linux.sha256", "hash": "b16c7a5c51f15bbab9d30270f24f2a95cec840dc24e30fc52806cc110b55a2440c9597f69115f1db7bb9bc3d4fefbbf2"}, {"filename": "jc-1.11.1-linux.tar.gz", "hash": "4ef3741864807f19da58e2c74a0ff2a95f2cc92030f315b9cca5d8a1592f64493bc91ad8a567a4c01e4fd5068964ff9c"}, {"filename": "jc-1.11.1.sha256", "hash": "04bb4b8b79c4dfb6b978ce467b9451a71d3b1e3c5c42d16eab4b918308ffc9ceb7730cab077764705f8e5cc7d4a2fa3e"}, {"filename": "jc-1.11.1.tar.gz", "hash": "7b507374c22cb5f169980453d9e2a661505bb20260f079d3e0cd0c4b751ec75f3d3390b8f8d7290b6d748e9057af7377"}, {"filename": "jc-1.11.2-linux.sha256", "hash": "1020219aa19a10478b870c9195602c1f22766aed751d05272ea8a6a1dd04c0f8bc030b8906eb6dbbb0194fbd63a5c204"}, {"filename": "jc-1.11.2-linux.tar.gz", "hash": "40207fa8a89b7d9dbbbbf76d155e12f2f8664f929c88367eac6257b0f617343d08b27e8daea1598ac77e27d47d3f9e28"}, {"filename": "jc-1.11.8-linux.sha256", "hash": "2b5bf8c4e623f02f8e75ba352206e36f5c5e049d8b8dc4f33e3fe93465947c0a28af2a4505cd55ae6f8f328dd7db978f"}, {"filename": "jc-1.11.8-linux.tar.gz", "hash": "76bf73980528612ce2229e4fa0ae6111092c31e1a5593efd3870aba40e1a2c8651ef9cb3e9fbb607a1cfab246f489327"}, {"filename": "jc-1.13.1-linux.sha256", "hash": "3d6bc8c0e43d5d46c786e5a6ca1fe21001997a3eae0aee3b04faec8f592ee4bd40bc84511cec23b1d8bd74569499d3cb"}, {"filename": "jc-1.13.1-linux.tar.gz", "hash": "adc8bea97698073f9c382788a7f60f906019255e23f98b4997ebae0146351f7ae365d12cf60b359c6c94ee338524a729"}, {"filename": "jc-1.13.2-linux.sha256", "hash": "60b43d3431dd2a4d214b66b1752449a8c43ec01b3ace18661dd5485d4d3bae98fd83ea4c01c2cff5f9038ac7cec4f7b4"}, {"filename": "jc-1.13.2-linux.tar.gz", "hash": "8a44aa9777fa63320ffc16b75da5cfa5c45ca8d6a47f49d06b719e251c7296aef23b471c3ba55d12bb530fedaf962303"}, {"filename": "jc-1.13.4-linux.sha256", "hash": "03991acac3c3ae520604c949e8e3dbc62ab13a9d031b29a983b7ff28853adff1fe206f14937035f4219c7f5e56dc2571"}, {"filename": "jc-1.13.4-linux.tar.gz", "hash": "60f2939c9dcb700e3ef7b258e460e49d3ec650c36a4bab107ac6eb55c7f587b242fcb50d81b0fd1739df6261b26674c0"}, {"filename": "jello-1.2.8-linux.sha256", "hash": "367a0c7423ea4541372b6e04ecd453b9d39346b05739debbfdf2e7e037db469bfc7b16b25be3a252b1927284023201c9"}, {"filename": "jello-1.2.8-linux.tar.gz", "hash": "d44cd208c480d0cb212483225e16fe85944dbd608d67ad9e40ee5868948a3822f64087567e4da096ae0004cb60055f15"}, {"filename": "jello-1.2.9-linux.sha256", "hash": "008370792aa150cdcb54eb13810e9acce56ae1ebfe2d63cc75529e3caf86f5f9573157dca932d448a43c7f3e05c242b3"}, {"filename": "jello-1.2.9-linux.tar.gz", "hash": "4433710be95f6a2bddf213fbd6d0c85a763c6043b09d00a863f6903d09d00c6167277bd32ae77c8fc943d7753f682a0b"}, {"filename": "journaljson", "hash": "655ef2c57cf0bccc47853bc11e20b3ebf4c3fb6a65c63d2389983425e95081ab1f2e70a557932037846b35c5f3db7b2a"}, {"filename": "jp", "hash": "a7723d2c9aad90303866d1bed77cca43a7f88bdd6956a23d6b24767c1abadbd26d3a5d01d39af5305f0f0be49c596313"}, {"filename": "jp_1.1.12_linux_x86_64.zip", "hash": "3410d5208919ab9b336fdedcb06f647666eb5be9c2cb887256aa67406f971b845985ba6c3c9f7152f3ded6b6f4c683d3"}, {"filename": "jq_twitter.json", "hash": "1c9a0249597bdf89590091c41a21020c4805adb89e9c40a85359c99a2faac2cb4b9c3c80c4535064e3a263c285a773f6"}, {"filename": "jtbl-1.1.6-linux.sha256", "hash": "351c7b0459e35fd87e9ce2957d58a73e5c55d72ddf2429f37a989bd69d9c9ad5c7e8a9885f989e3e56ee1d50a9627a55"}, {"filename": "jtbl-1.1.6-linux.tar.gz", "hash": "b6053a4bdf2bcc87c6ee2dc6d1c5572c1a78b1060d8a7f21dd6bca950cdf1518515df16b1f83dfecea2f498f1be23fac"}, {"filename": "kbls.out", "hash": "6f149d8f1a8c41a480b21f815537beabd97107358038c406b88f285c6637504c7d70f0fe4f3609ea55be35cc6267fb45"}, {"filename": "lastb.out", "hash": "343bb57833a3629596d7fbfb0a7a56a5b775a5bb660773071f8c68ab9c8c84ceb3bdaf9ef8067fedc655627ba4d61a8b"}, {"filename": "lsblk-cols", "hash": "de0c500038bdeb1f57aa3789f74c630862cf3dbb83e9a8140d071959e048d8c144f190a9039975fe1d28c97982d80675"}, {"filename": "ping-ip-O-D.out", "hash": "8debc85c75c169ded39bc8e91ce752c791d63df52f7aa8c7d110a755f764e41f2cbb4ef89650652971e7e76576662982"}, {"filename": "ping-ip-O.out", "hash": "b93bf926e1e202a13cf5d122be10ffc69f15843f7f419f4b8e631d5ad0d4efd4123e5d9fc64b220ee906a5731c169d84"}, {"filename": "psfile.txt", "hash": "61f62147b30c6027548e04154c79548667853afdd930223183c96d13c484bda9251150e81ab8da86fcd15be8eb533aa8"}, {"filename": "resizeterm.sh", "hash": "82fa64a5e3fd3c54a9f7c32c7407b2134bbc3826b66d66a95c7f673a5c6b8c9190cfdfba6c0dde858399cd680cf4ddaa"}, {"filename": "route-6-n.out", "hash": "1da45fcd09bb7fe5d4805fc4a550dfa893c99c968568ca28c3c075f201579ff862f160bb80bcdda0b2276f35ebe0300f"}, {"filename": "route-6.out", "hash": "5ae84602fda703c954ae735d99a5b9b8ba31ae4967c2e647f91ea4199da1bd3a7467346272cdc217eecdf157802d4e45"}, {"filename": "routeout", "hash": "dfc31420a5bc92730403711c71cc8e7939792c6c43d9cdead33673e6a37615a37d109c844643dc0308f84187d6ce51ff"}, {"filename": "shafile.txt", "hash": "0d16335ada920c8003d571a33087ebc67e2183c069231ff949bb2f0f90df0bad99903a5db7aa5d21954de476a77b1ff9"}, {"filename": "ss-aeep.out", "hash": "dceaccf3fa9161ca1f658f14dfb2b005f0737b8bc128d459ed60850964182e7a311446019ed93d00341f300aa2c4dc33"}, {"filename": "ssout", "hash": "9d72cdff3306fb0c14fd270e5dac3a07cd01163a529d57d6d36b761e9d4bfda458f73ddf55c2e352cd382e8d8d1cd7b5"}, {"filename": "systemctl.out", "hash": "7a33126d2954e2b295da2672219b1a4e6a30775c9c5da56832b1e9c89c9827846394bef5d22960e3b24e1dfd721061ad"}, {"filename": "top.out", "hash": "90ce1a3b0ec04b9c96d50abe52956ef66327324dc9295cac734d69386ce2a280bc95baadd87b9f175f1272066b90804d"}, {"filename": "tracepath6.out", "hash": "0435b36b1ca56d7af51d42c73cc12c5fca6e559047c264e0945426958143aa6380d2e7ed22ced18cf4efdbfe454b23dd"}, {"filename": "tracepath-cnn.out", "hash": "ab22a6cd069cc3e92da92aa09c807e75aa4fb98c495ae51a09b7231e2299773af32a901fadccd4d1dfbea6bfdfaafdfb"}, {"filename": "tr.out", "hash": "ad02ffb0876c5a7407034d128b5bc3a158e9cea4ba060b99062d2d2c12f2c1130826e8196b879f271254a46d69e9e450"}, {"filename": "who-aH.out", "hash": "2c3b90566c37f9a900497ff58824943ad029c13a7db4b3e04d453cd7163c21e2da330a7e8b45084da68755d7aa7771e6"}, {"filename": "who.out", "hash": "873f8c55de4f8e24f1a355fde9da07bba0b8cd74271c194a101f7478e7b5464bf4e8f708da48d9439af0be8c298a94eb"}, {"filename": "whotext", "hash": "230ddb573e3b9c83389fcb358603d944bb20ed3603cdd45727bcda6f1e366cb6715676ec4bc19c6db8e427e45ca696b6"}] jc-1.17.3/tests/fixtures/centos-7.7/sha384sum.out000066400000000000000000000144421415226333200213140ustar00rootroot0000000000000013dfec928ddd0b8ca477868a2aa8c56b6cf85fe8745f952671e0b0fe52315c4f8500b94ebabfd572cc6f942875c4f17f devtoolset-3-gcc-4.9.2-6.el7.x86_64.rpm 75f6c510781b37878f4168a3224b64f49fe6320289fa004579928d58fefb5ceaf91b5af6d431713e2b43dae1b2aefb4a digout 31ca9016e7cdfeba9b8ddef08e34efcf7a45369e890ac4bd57e5336617ebead1f911d8fcc91a8bdb1a86c3512f024a1f dmidecode.out 38b060a751ac96384cd9327eb1b1e36a21fdb71114be07434c0cc7bf63f6e1da274edebfe76f65fbd51ad2f14898b95b file with spaces in the name 10efecdd95d23b6a29ae311dd906b24a5c90e2ccd59872b77bdcaa7f55d32d9a95e145b9e1a1208708e9b7cadbe9edab id-centos.out 012fdcea79d9d6a59dcd474f2d9535b2ac9d3a2740709b7de6f54674976537e1361da8f46af4cf465840663267f0f55e ifcfg.json 480e4ba8cfd4fdd25113f518e1b5fb875b398c23b02959bec87ea0cb47e5b6fcfc1d8bc80c208777101c54fc5903cb98 ifconfig.out 485c03f413b3beb95efc2bda08b16804904ccac985eadecb75d52dd91bba2c2601145d51d5ae26568319bf54d0d688ca jc e732bea551ada4e3254fc339aeaf424859bfc02718e985ad66fee9fed41dcc61cc87f07d648dbf69d32f72eee268ffdb jc-1.10.5-linux.sha256 2d7400f179eb7c2a43eaa0879c074ed46acd867aafd1947ffd7e9916d32fef55d48c93ac34c75d5931ac84f2b39b4101 jc-1.10.5-linux.tar.gz 5a9762aa33c4dfcf9fdd7fa8c94574f489117497bedced5527e4881c16712a90e2fca9da9a5254ef7dbe294d0a7cd736 jc-1.10.5.rpm b16c7a5c51f15bbab9d30270f24f2a95cec840dc24e30fc52806cc110b55a2440c9597f69115f1db7bb9bc3d4fefbbf2 jc-1.11.1-linux.sha256 4ef3741864807f19da58e2c74a0ff2a95f2cc92030f315b9cca5d8a1592f64493bc91ad8a567a4c01e4fd5068964ff9c jc-1.11.1-linux.tar.gz 04bb4b8b79c4dfb6b978ce467b9451a71d3b1e3c5c42d16eab4b918308ffc9ceb7730cab077764705f8e5cc7d4a2fa3e jc-1.11.1.sha256 7b507374c22cb5f169980453d9e2a661505bb20260f079d3e0cd0c4b751ec75f3d3390b8f8d7290b6d748e9057af7377 jc-1.11.1.tar.gz 1020219aa19a10478b870c9195602c1f22766aed751d05272ea8a6a1dd04c0f8bc030b8906eb6dbbb0194fbd63a5c204 jc-1.11.2-linux.sha256 40207fa8a89b7d9dbbbbf76d155e12f2f8664f929c88367eac6257b0f617343d08b27e8daea1598ac77e27d47d3f9e28 jc-1.11.2-linux.tar.gz 2b5bf8c4e623f02f8e75ba352206e36f5c5e049d8b8dc4f33e3fe93465947c0a28af2a4505cd55ae6f8f328dd7db978f jc-1.11.8-linux.sha256 76bf73980528612ce2229e4fa0ae6111092c31e1a5593efd3870aba40e1a2c8651ef9cb3e9fbb607a1cfab246f489327 jc-1.11.8-linux.tar.gz 3d6bc8c0e43d5d46c786e5a6ca1fe21001997a3eae0aee3b04faec8f592ee4bd40bc84511cec23b1d8bd74569499d3cb jc-1.13.1-linux.sha256 adc8bea97698073f9c382788a7f60f906019255e23f98b4997ebae0146351f7ae365d12cf60b359c6c94ee338524a729 jc-1.13.1-linux.tar.gz 60b43d3431dd2a4d214b66b1752449a8c43ec01b3ace18661dd5485d4d3bae98fd83ea4c01c2cff5f9038ac7cec4f7b4 jc-1.13.2-linux.sha256 8a44aa9777fa63320ffc16b75da5cfa5c45ca8d6a47f49d06b719e251c7296aef23b471c3ba55d12bb530fedaf962303 jc-1.13.2-linux.tar.gz 03991acac3c3ae520604c949e8e3dbc62ab13a9d031b29a983b7ff28853adff1fe206f14937035f4219c7f5e56dc2571 jc-1.13.4-linux.sha256 60f2939c9dcb700e3ef7b258e460e49d3ec650c36a4bab107ac6eb55c7f587b242fcb50d81b0fd1739df6261b26674c0 jc-1.13.4-linux.tar.gz 367a0c7423ea4541372b6e04ecd453b9d39346b05739debbfdf2e7e037db469bfc7b16b25be3a252b1927284023201c9 jello-1.2.8-linux.sha256 d44cd208c480d0cb212483225e16fe85944dbd608d67ad9e40ee5868948a3822f64087567e4da096ae0004cb60055f15 jello-1.2.8-linux.tar.gz 008370792aa150cdcb54eb13810e9acce56ae1ebfe2d63cc75529e3caf86f5f9573157dca932d448a43c7f3e05c242b3 jello-1.2.9-linux.sha256 4433710be95f6a2bddf213fbd6d0c85a763c6043b09d00a863f6903d09d00c6167277bd32ae77c8fc943d7753f682a0b jello-1.2.9-linux.tar.gz 655ef2c57cf0bccc47853bc11e20b3ebf4c3fb6a65c63d2389983425e95081ab1f2e70a557932037846b35c5f3db7b2a journaljson a7723d2c9aad90303866d1bed77cca43a7f88bdd6956a23d6b24767c1abadbd26d3a5d01d39af5305f0f0be49c596313 jp 3410d5208919ab9b336fdedcb06f647666eb5be9c2cb887256aa67406f971b845985ba6c3c9f7152f3ded6b6f4c683d3 jp_1.1.12_linux_x86_64.zip 1c9a0249597bdf89590091c41a21020c4805adb89e9c40a85359c99a2faac2cb4b9c3c80c4535064e3a263c285a773f6 jq_twitter.json 351c7b0459e35fd87e9ce2957d58a73e5c55d72ddf2429f37a989bd69d9c9ad5c7e8a9885f989e3e56ee1d50a9627a55 jtbl-1.1.6-linux.sha256 b6053a4bdf2bcc87c6ee2dc6d1c5572c1a78b1060d8a7f21dd6bca950cdf1518515df16b1f83dfecea2f498f1be23fac jtbl-1.1.6-linux.tar.gz 6f149d8f1a8c41a480b21f815537beabd97107358038c406b88f285c6637504c7d70f0fe4f3609ea55be35cc6267fb45 kbls.out 343bb57833a3629596d7fbfb0a7a56a5b775a5bb660773071f8c68ab9c8c84ceb3bdaf9ef8067fedc655627ba4d61a8b lastb.out de0c500038bdeb1f57aa3789f74c630862cf3dbb83e9a8140d071959e048d8c144f190a9039975fe1d28c97982d80675 lsblk-cols 8debc85c75c169ded39bc8e91ce752c791d63df52f7aa8c7d110a755f764e41f2cbb4ef89650652971e7e76576662982 ping-ip-O-D.out b93bf926e1e202a13cf5d122be10ffc69f15843f7f419f4b8e631d5ad0d4efd4123e5d9fc64b220ee906a5731c169d84 ping-ip-O.out 61f62147b30c6027548e04154c79548667853afdd930223183c96d13c484bda9251150e81ab8da86fcd15be8eb533aa8 psfile.txt 82fa64a5e3fd3c54a9f7c32c7407b2134bbc3826b66d66a95c7f673a5c6b8c9190cfdfba6c0dde858399cd680cf4ddaa resizeterm.sh 1da45fcd09bb7fe5d4805fc4a550dfa893c99c968568ca28c3c075f201579ff862f160bb80bcdda0b2276f35ebe0300f route-6-n.out 5ae84602fda703c954ae735d99a5b9b8ba31ae4967c2e647f91ea4199da1bd3a7467346272cdc217eecdf157802d4e45 route-6.out dfc31420a5bc92730403711c71cc8e7939792c6c43d9cdead33673e6a37615a37d109c844643dc0308f84187d6ce51ff routeout 0d16335ada920c8003d571a33087ebc67e2183c069231ff949bb2f0f90df0bad99903a5db7aa5d21954de476a77b1ff9 shafile.txt dceaccf3fa9161ca1f658f14dfb2b005f0737b8bc128d459ed60850964182e7a311446019ed93d00341f300aa2c4dc33 ss-aeep.out 9d72cdff3306fb0c14fd270e5dac3a07cd01163a529d57d6d36b761e9d4bfda458f73ddf55c2e352cd382e8d8d1cd7b5 ssout 7a33126d2954e2b295da2672219b1a4e6a30775c9c5da56832b1e9c89c9827846394bef5d22960e3b24e1dfd721061ad systemctl.out 90ce1a3b0ec04b9c96d50abe52956ef66327324dc9295cac734d69386ce2a280bc95baadd87b9f175f1272066b90804d top.out 0435b36b1ca56d7af51d42c73cc12c5fca6e559047c264e0945426958143aa6380d2e7ed22ced18cf4efdbfe454b23dd tracepath6.out ab22a6cd069cc3e92da92aa09c807e75aa4fb98c495ae51a09b7231e2299773af32a901fadccd4d1dfbea6bfdfaafdfb tracepath-cnn.out ad02ffb0876c5a7407034d128b5bc3a158e9cea4ba060b99062d2d2c12f2c1130826e8196b879f271254a46d69e9e450 tr.out 2c3b90566c37f9a900497ff58824943ad029c13a7db4b3e04d453cd7163c21e2da330a7e8b45084da68755d7aa7771e6 who-aH.out 873f8c55de4f8e24f1a355fde9da07bba0b8cd74271c194a101f7478e7b5464bf4e8f708da48d9439af0be8c298a94eb who.out 230ddb573e3b9c83389fcb358603d944bb20ed3603cdd45727bcda6f1e366cb6715676ec4bc19c6db8e427e45ca696b6 whotext jc-1.17.3/tests/fixtures/centos-7.7/shadow.json000066400000000000000000000062061415226333200212030ustar00rootroot00000000000000[{"username": "root", "password": "$6$27lBiByDWdiM7lvJ$ulWkJyfKNbqDnrIKPLhUCGanKcS5TdY3ZasKMR/v2dl0mHn0s28LcxTXMqqOV0d6tww0U4gmgYZezgAf/F8Pz.", "last_changed": null, "minimum": 0, "maximum": 99999, "warn": 7, "inactive": null, "expire": null}, {"username": "bin", "password": "*", "last_changed": 17834, "minimum": 0, "maximum": 99999, "warn": 7, "inactive": null, "expire": null}, {"username": "daemon", "password": "*", "last_changed": 17834, "minimum": 0, "maximum": 99999, "warn": 7, "inactive": null, "expire": null}, {"username": "adm", "password": "*", "last_changed": 17834, "minimum": 0, "maximum": 99999, "warn": 7, "inactive": null, "expire": null}, {"username": "lp", "password": "*", "last_changed": 17834, "minimum": 0, "maximum": 99999, "warn": 7, "inactive": null, "expire": null}, {"username": "sync", "password": "*", "last_changed": 17834, "minimum": 0, "maximum": 99999, "warn": 7, "inactive": null, "expire": null}, {"username": "shutdown", "password": "*", "last_changed": 17834, "minimum": 0, "maximum": 99999, "warn": 7, "inactive": null, "expire": null}, {"username": "halt", "password": "*", "last_changed": 17834, "minimum": 0, "maximum": 99999, "warn": 7, "inactive": null, "expire": null}, {"username": "mail", "password": "*", "last_changed": 17834, "minimum": 0, "maximum": 99999, "warn": 7, "inactive": null, "expire": null}, {"username": "operator", "password": "*", "last_changed": 17834, "minimum": 0, "maximum": 99999, "warn": 7, "inactive": null, "expire": null}, {"username": "games", "password": "*", "last_changed": 17834, "minimum": 0, "maximum": 99999, "warn": 7, "inactive": null, "expire": null}, {"username": "ftp", "password": "*", "last_changed": 17834, "minimum": 0, "maximum": 99999, "warn": 7, "inactive": null, "expire": null}, {"username": "nobody", "password": "*", "last_changed": 17834, "minimum": 0, "maximum": 99999, "warn": 7, "inactive": null, "expire": null}, {"username": "systemd-network", "password": "!!", "last_changed": 18123, "minimum": null, "maximum": null, "warn": null, "inactive": null, "expire": null}, {"username": "dbus", "password": "!!", "last_changed": 18123, "minimum": null, "maximum": null, "warn": null, "inactive": null, "expire": null}, {"username": "polkitd", "password": "!!", "last_changed": 18123, "minimum": null, "maximum": null, "warn": null, "inactive": null, "expire": null}, {"username": "sshd", "password": "!!", "last_changed": 18123, "minimum": null, "maximum": null, "warn": null, "inactive": null, "expire": null}, {"username": "postfix", "password": "!!", "last_changed": 18123, "minimum": null, "maximum": null, "warn": null, "inactive": null, "expire": null}, {"username": "chrony", "password": "!!", "last_changed": 18123, "minimum": null, "maximum": null, "warn": null, "inactive": null, "expire": null}, {"username": "joeuser", "password": "$6$sR1OEFM1KVuMeBUt$NhanSmm91.BspCYlMtrjYhc71FElgaCP7uSUAwhtQVFGcYa7.8VPMmRce77yS8FLy6XSYBtcCeZCJhnLOicc/.", "last_changed": null, "minimum": 0, "maximum": 99999, "warn": 7, "inactive": null, "expire": null}, {"username": "dockerroot", "password": "!!", "last_changed": 18123, "minimum": null, "maximum": null, "warn": null, "inactive": null, "expire": null}] jc-1.17.3/tests/fixtures/centos-7.7/shadow.out000066400000000000000000000013441415226333200210370ustar00rootroot00000000000000root:$6$27lBiByDWdiM7lvJ$ulWkJyfKNbqDnrIKPLhUCGanKcS5TdY3ZasKMR/v2dl0mHn0s28LcxTXMqqOV0d6tww0U4gmgYZezgAf/F8Pz.::0:99999:7::: bin:*:17834:0:99999:7::: daemon:*:17834:0:99999:7::: adm:*:17834:0:99999:7::: lp:*:17834:0:99999:7::: sync:*:17834:0:99999:7::: shutdown:*:17834:0:99999:7::: halt:*:17834:0:99999:7::: mail:*:17834:0:99999:7::: operator:*:17834:0:99999:7::: games:*:17834:0:99999:7::: ftp:*:17834:0:99999:7::: nobody:*:17834:0:99999:7::: systemd-network:!!:18123:::::: dbus:!!:18123:::::: polkitd:!!:18123:::::: sshd:!!:18123:::::: postfix:!!:18123:::::: chrony:!!:18123:::::: joeuser:$6$sR1OEFM1KVuMeBUt$NhanSmm91.BspCYlMtrjYhc71FElgaCP7uSUAwhtQVFGcYa7.8VPMmRce77yS8FLy6XSYBtcCeZCJhnLOicc/.::0:99999:7::: dockerroot:!!:18123:::::: jc-1.17.3/tests/fixtures/centos-7.7/ss-sudo-a.json000066400000000000000000001072771415226333200215430ustar00rootroot00000000000000[{"netid": "nl", "state": "UNCONN", "recv_q": 768, "send_q": 0, "peer_address": "*", "pid": 1220, "channel": "rtnl:dockerd-current"}, {"netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "channel": "rtnl:kernel"}, {"netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "pid": 878, "channel": "rtnl:NetworkManager"}, {"netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "pid": 878, "channel": "rtnl:NetworkManager"}, {"netid": "nl", "state": "UNCONN", "recv_q": 4352, "send_q": 0, "peer_address": "*", "pid": 11360, "channel": "tcpdiag:ss"}, {"netid": "nl", "state": "UNCONN", "recv_q": 768, "send_q": 0, "peer_address": "*", "channel": "tcpdiag:kernel"}, {"netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "pid": 1220, "channel": "xfrm:dockerd-current"}, {"netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "channel": "xfrm:kernel"}, {"netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "channel": "selinux:kernel"}, {"netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "pid": 1, "channel": "selinux:systemd"}, {"netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "pid": 787, "channel": "selinux:dbus-daemon"}, {"netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "pid": 787, "channel": "selinux:dbus-daemon"}, {"netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "pid": 1, "channel": "selinux:systemd"}, {"netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "channel": "audit:kernel"}, {"netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "pid": 754, "channel": "audit:auditd"}, {"netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "pid": 11358, "channel": "audit:sudo"}, {"netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "pid": 1, "channel": "audit:systemd"}, {"netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "channel": "fiblookup:kernel"}, {"netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "channel": "connector:kernel"}, {"netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "channel": "nft:kernel"}, {"netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "pid": 1218, "channel": "uevent:tuned"}, {"netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "channel": "uevent:-4118"}, {"netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "channel": "uevent:-4120"}, {"netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "channel": "uevent:-4107"}, {"netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "pid": 783, "channel": "uevent:systemd-logind"}, {"netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "channel": "uevent:-4117"}, {"netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "channel": "uevent:kernel"}, {"netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "pid": 878, "channel": "uevent:NetworkManager"}, {"netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "channel": "uevent:-4119"}, {"netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "pid": 1, "channel": "uevent:systemd"}, {"netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "pid": 1218, "channel": "uevent:tuned"}, {"netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "channel": "uevent:-4120"}, {"netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "pid": 878, "channel": "uevent:NetworkManager"}, {"netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "channel": "uevent:-4119"}, {"netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "channel": "uevent:-4118"}, {"netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "channel": "uevent:-4117"}, {"netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "pid": 783, "channel": "uevent:systemd-logind"}, {"netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "channel": "uevent:-4107"}, {"netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "pid": 1, "channel": "uevent:systemd"}, {"netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "channel": "genl:kernel"}, {"netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "pid": 878, "channel": "genl:NetworkManager"}, {"netid": "nl", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "channel": "scsi-trans:kernel"}, {"netid": "p_raw", "state": "UNCONN", "recv_q": 0, "send_q": 0, "peer_address": "*", "link_layer": "*", "interface": "ens33"}, {"netid": "u_dgr", "state": "UNCONN", "recv_q": 0, "send_q": 0, "local_port": "8971", "peer_address": "*", "peer_port": "0", "path": "/run/systemd/notify", "local_port_num": 8971, "peer_port_num": 0}, {"netid": "u_dgr", "state": "UNCONN", "recv_q": 0, "send_q": 0, "local_port": "8973", "peer_address": "*", "peer_port": "0", "path": "/run/systemd/cgroups-agent", "local_port_num": 8973, "peer_port_num": 0}, {"netid": "u_str", "state": "LISTEN", "recv_q": 0, "send_q": 128, "local_port": "8981", "peer_address": "*", "peer_port": "0", "path": "/run/systemd/journal/stdout", "local_port_num": 8981, "peer_port_num": 0}, {"netid": "u_str", "state": "LISTEN", "recv_q": 0, "send_q": 128, "local_port": "22040", "peer_address": "*", "peer_port": "0", "path": "/var/run/docker.sock", "local_port_num": 22040, "peer_port_num": 0}, {"netid": "u_dgr", "state": "UNCONN", "recv_q": 0, "send_q": 0, "local_port": "8984", "peer_address": "*", "peer_port": "0", "path": "/run/systemd/journal/socket", "local_port_num": 8984, "peer_port_num": 0}, {"netid": "u_dgr", "state": "UNCONN", "recv_q": 0, "send_q": 0, "local_port": "8986", "peer_address": "*", "peer_port": "0", "path": "/dev/log", "local_port_num": 8986, "peer_port_num": 0}, {"netid": "u_str", "state": "LISTEN", "recv_q": 0, "send_q": 100, "local_port": "22610", "peer_address": "*", "peer_port": "0", "path": "public/pickup", "local_port_num": 22610, "peer_port_num": 0}, {"netid": "u_str", "state": "LISTEN", "recv_q": 0, "send_q": 100, "local_port": "22623", "peer_address": "*", "peer_port": "0", "path": "private/tlsmgr", "local_port_num": 22623, "peer_port_num": 0}, {"netid": "u_str", "state": "LISTEN", "recv_q": 0, "send_q": 10, "local_port": "20787", "peer_address": "*", "peer_port": "0", "path": "/var/run/NetworkManager/private-dhcp", "local_port_num": 20787, "peer_port_num": 0}, {"netid": "u_str", "state": "LISTEN", "recv_q": 0, "send_q": 128, "local_port": "23141", "peer_address": "*", "peer_port": "0", "path": "/run/docker/libnetwork/35ee6333bf93cc6652841e66c2c6dfb2e0a14ff20208fe6c4ad28a33dad48423.sock", "local_port_num": 23141, "peer_port_num": 0}, {"netid": "u_str", "state": "LISTEN", "recv_q": 0, "send_q": 128, "local_port": "17775", "peer_address": "*", "peer_port": "0", "path": "/run/dbus/system_bus_socket", "local_port_num": 17775, "peer_port_num": 0}, {"netid": "u_str", "state": "LISTEN", "recv_q": 0, "send_q": 100, "local_port": "22616", "peer_address": "*", "peer_port": "0", "path": "public/cleanup", "local_port_num": 22616, "peer_port_num": 0}, {"netid": "u_dgr", "state": "UNCONN", "recv_q": 0, "send_q": 0, "local_port": "14206", "peer_address": "*", "peer_port": "0", "path": "/run/systemd/shutdownd", "local_port_num": 14206, "peer_port_num": 0}, {"netid": "u_str", "state": "LISTEN", "recv_q": 0, "send_q": 100, "local_port": "22619", "peer_address": "*", "peer_port": "0", "path": "public/qmgr", "local_port_num": 22619, "peer_port_num": 0}, {"netid": "u_str", "state": "LISTEN", "recv_q": 0, "send_q": 100, "local_port": "22644", "peer_address": "*", "peer_port": "0", "path": "public/flush", "local_port_num": 22644, "peer_port_num": 0}, {"netid": "u_str", "state": "LISTEN", "recv_q": 0, "send_q": 128, "local_port": "14005", "peer_address": "*", "peer_port": "0", "path": "/run/lvm/lvmetad.socket", "local_port_num": 14005, "peer_port_num": 0}, {"netid": "u_str", "state": "LISTEN", "recv_q": 0, "send_q": 128, "local_port": "14021", "peer_address": "*", "peer_port": "0", "path": "/run/lvm/lvmpolld.socket", "local_port_num": 14021, "peer_port_num": 0}, {"netid": "u_str", "state": "LISTEN", "recv_q": 0, "send_q": 100, "local_port": "22659", "peer_address": "*", "peer_port": "0", "path": "public/showq", "local_port_num": 22659, "peer_port_num": 0}, {"netid": "u_dgr", "state": "UNCONN", "recv_q": 0, "send_q": 0, "local_port": "18375", "peer_address": "*", "peer_port": "0", "path": "/var/run/chrony/chronyd.sock", "local_port_num": 18375, "peer_port_num": 0}, {"netid": "u_str", "state": "LISTEN", "recv_q": 0, "send_q": 100, "local_port": "22629", "peer_address": "*", "peer_port": "0", "path": "private/rewrite", "local_port_num": 22629, "peer_port_num": 0}, {"netid": "u_str", "state": "LISTEN", "recv_q": 0, "send_q": 100, "local_port": "22632", "peer_address": "*", "peer_port": "0", "path": "private/bounce", "local_port_num": 22632, "peer_port_num": 0}, {"netid": "u_str", "state": "LISTEN", "recv_q": 0, "send_q": 100, "local_port": "22635", "peer_address": "*", "peer_port": "0", "path": "private/defer", "local_port_num": 22635, "peer_port_num": 0}, {"netid": "u_str", "state": "LISTEN", "recv_q": 0, "send_q": 100, "local_port": "22638", "peer_address": "*", "peer_port": "0", "path": "private/trace", "local_port_num": 22638, "peer_port_num": 0}, {"netid": "u_str", "state": "LISTEN", "recv_q": 0, "send_q": 100, "local_port": "22641", "peer_address": "*", "peer_port": "0", "path": "private/verify", "local_port_num": 22641, "peer_port_num": 0}, {"netid": "u_str", "state": "LISTEN", "recv_q": 0, "send_q": 100, "local_port": "22647", "peer_address": "*", "peer_port": "0", "path": "private/proxymap", "local_port_num": 22647, "peer_port_num": 0}, {"netid": "u_str", "state": "LISTEN", "recv_q": 0, "send_q": 128, "local_port": "13776", "peer_address": "*", "peer_port": "0", "path": "/run/systemd/private", "local_port_num": 13776, "peer_port_num": 0}, {"netid": "u_str", "state": "LISTEN", "recv_q": 0, "send_q": 100, "local_port": "22650", "peer_address": "*", "peer_port": "0", "path": "private/proxywrite", "local_port_num": 22650, "peer_port_num": 0}, {"netid": "u_str", "state": "LISTEN", "recv_q": 0, "send_q": 100, "local_port": "22653", "peer_address": "*", "peer_port": "0", "path": "private/smtp", "local_port_num": 22653, "peer_port_num": 0}, {"netid": "u_str", "state": "LISTEN", "recv_q": 0, "send_q": 100, "local_port": "22656", "peer_address": "*", "peer_port": "0", "path": "private/relay", "local_port_num": 22656, "peer_port_num": 0}, {"netid": "u_str", "state": "LISTEN", "recv_q": 0, "send_q": 100, "local_port": "22662", "peer_address": "*", "peer_port": "0", "path": "private/error", "local_port_num": 22662, "peer_port_num": 0}, {"netid": "u_str", "state": "LISTEN", "recv_q": 0, "send_q": 100, "local_port": "22665", "peer_address": "*", "peer_port": "0", "path": "private/retry", "local_port_num": 22665, "peer_port_num": 0}, {"netid": "u_str", "state": "LISTEN", "recv_q": 0, "send_q": 100, "local_port": "22668", "peer_address": "*", "peer_port": "0", "path": "private/discard", "local_port_num": 22668, "peer_port_num": 0}, {"netid": "u_str", "state": "LISTEN", "recv_q": 0, "send_q": 100, "local_port": "22673", "peer_address": "*", "peer_port": "0", "path": "private/local", "local_port_num": 22673, "peer_port_num": 0}, {"netid": "u_str", "state": "LISTEN", "recv_q": 0, "send_q": 100, "local_port": "22676", "peer_address": "*", "peer_port": "0", "path": "private/virtual", "local_port_num": 22676, "peer_port_num": 0}, {"netid": "u_str", "state": "LISTEN", "recv_q": 0, "send_q": 100, "local_port": "22679", "peer_address": "*", "peer_port": "0", "path": "private/lmtp", "local_port_num": 22679, "peer_port_num": 0}, {"netid": "u_str", "state": "LISTEN", "recv_q": 0, "send_q": 100, "local_port": "22682", "peer_address": "*", "peer_port": "0", "path": "private/anvil", "local_port_num": 22682, "peer_port_num": 0}, {"netid": "u_str", "state": "LISTEN", "recv_q": 0, "send_q": 100, "local_port": "22685", "peer_address": "*", "peer_port": "0", "path": "private/scache", "local_port_num": 22685, "peer_port_num": 0}, {"netid": "u_str", "state": "LISTEN", "recv_q": 0, "send_q": 128, "local_port": "22259", "peer_address": "*", "peer_port": "0", "path": "/var/run/docker/libcontainerd/docker-containerd.sock", "local_port_num": 22259, "peer_port_num": 0}, {"netid": "u_seq", "state": "LISTEN", "recv_q": 0, "send_q": 128, "local_port": "13820", "peer_address": "*", "peer_port": "0", "path": "/run/udev/control", "local_port_num": 13820, "peer_port_num": 0}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22658", "peer_address": "*", "peer_port": "22657", "path": "*", "local_port_num": 22658, "peer_port_num": 22657}, {"netid": "u_dgr", "state": "UNCONN", "recv_q": 0, "send_q": 0, "local_port": "19150", "peer_address": "*", "peer_port": "8986", "path": "*", "local_port_num": 19150, "peer_port_num": 8986}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "19064", "peer_address": "*", "peer_port": "19063", "path": "/run/dbus/system_bus_socket", "local_port_num": 19064, "peer_port_num": 19063}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22657", "peer_address": "*", "peer_port": "22658", "path": "*", "local_port_num": 22657, "peer_port_num": 22658}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "21607", "peer_address": "*", "peer_port": "21606", "path": "/run/systemd/journal/stdout", "local_port_num": 21607, "peer_port_num": 21606}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22660", "peer_address": "*", "peer_port": "22661", "path": "*", "local_port_num": 22660, "peer_port_num": 22661}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "19176", "peer_address": "*", "peer_port": "19175", "path": "/run/dbus/system_bus_socket", "local_port_num": 19176, "peer_port_num": 19175}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "21606", "peer_address": "*", "peer_port": "21607", "path": "*", "local_port_num": 21606, "peer_port_num": 21607}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "14820", "peer_address": "*", "peer_port": "14821", "path": "*", "local_port_num": 14820, "peer_port_num": 14821}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22661", "peer_address": "*", "peer_port": "22660", "path": "*", "local_port_num": 22661, "peer_port_num": 22660}, {"netid": "u_dgr", "state": "UNCONN", "recv_q": 0, "send_q": 0, "local_port": "18334", "peer_address": "*", "peer_port": "8986", "path": "*", "local_port_num": 18334, "peer_port_num": 8986}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "17615", "peer_address": "*", "peer_port": "17614", "path": "*", "local_port_num": 17615, "peer_port_num": 17614}, {"netid": "u_dgr", "state": "UNCONN", "recv_q": 0, "send_q": 0, "local_port": "14877", "peer_address": "*", "peer_port": "14878", "path": "*", "local_port_num": 14877, "peer_port_num": 14878}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22663", "peer_address": "*", "peer_port": "22664", "path": "*", "local_port_num": 22663, "peer_port_num": 22664}, {"netid": "u_dgr", "state": "UNCONN", "recv_q": 0, "send_q": 0, "local_port": "14878", "peer_address": "*", "peer_port": "14877", "path": "*", "local_port_num": 14878, "peer_port_num": 14877}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "18347", "peer_address": "*", "peer_port": "18416", "path": "*", "local_port_num": 18347, "peer_port_num": 18416}, {"netid": "u_dgr", "state": "UNCONN", "recv_q": 0, "send_q": 0, "local_port": "63240", "peer_address": "*", "peer_port": "8986", "path": "*", "local_port_num": 63240, "peer_port_num": 8986}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "18416", "peer_address": "*", "peer_port": "18347", "path": "/run/dbus/system_bus_socket", "local_port_num": 18416, "peer_port_num": 18347}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "21589", "peer_address": "*", "peer_port": "21590", "path": "*", "local_port_num": 21589, "peer_port_num": 21590}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "18181", "peer_address": "*", "peer_port": "18180", "path": "/run/systemd/journal/stdout", "local_port_num": 18181, "peer_port_num": 18180}, {"netid": "u_dgr", "state": "UNCONN", "recv_q": 0, "send_q": 0, "local_port": "14846", "peer_address": "*", "peer_port": "8984", "path": "*", "local_port_num": 14846, "peer_port_num": 8984}, {"netid": "u_dgr", "state": "UNCONN", "recv_q": 0, "send_q": 0, "local_port": "108562", "peer_address": "*", "peer_port": "8986", "path": "*", "local_port_num": 108562, "peer_port_num": 8986}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22652", "peer_address": "*", "peer_port": "22651", "path": "*", "local_port_num": 22652, "peer_port_num": 22651}, {"netid": "u_dgr", "state": "UNCONN", "recv_q": 0, "send_q": 0, "local_port": "19253", "peer_address": "*", "peer_port": "8986", "path": "*", "local_port_num": 19253, "peer_port_num": 8986}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22651", "peer_address": "*", "peer_port": "22652", "path": "*", "local_port_num": 22651, "peer_port_num": 22652}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "18180", "peer_address": "*", "peer_port": "18181", "path": "*", "local_port_num": 18180, "peer_port_num": 18181}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "18817", "peer_address": "*", "peer_port": "18818", "path": "*", "local_port_num": 18817, "peer_port_num": 18818}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22654", "peer_address": "*", "peer_port": "22655", "path": "*", "local_port_num": 22654, "peer_port_num": 22655}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22655", "peer_address": "*", "peer_port": "22654", "path": "*", "local_port_num": 22655, "peer_port_num": 22654}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22645", "peer_address": "*", "peer_port": "22646", "path": "*", "local_port_num": 22645, "peer_port_num": 22646}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "21590", "peer_address": "*", "peer_port": "21589", "path": "/run/systemd/journal/stdout", "local_port_num": 21590, "peer_port_num": 21589}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22646", "peer_address": "*", "peer_port": "22645", "path": "*", "local_port_num": 22646, "peer_port_num": 22645}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22649", "peer_address": "*", "peer_port": "22648", "path": "*", "local_port_num": 22649, "peer_port_num": 22648}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22648", "peer_address": "*", "peer_port": "22649", "path": "*", "local_port_num": 22648, "peer_port_num": 22649}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "18818", "peer_address": "*", "peer_port": "18817", "path": "/run/systemd/journal/stdout", "local_port_num": 18818, "peer_port_num": 18817}, {"netid": "u_dgr", "state": "UNCONN", "recv_q": 0, "send_q": 0, "local_port": "62145", "peer_address": "*", "peer_port": "8984", "path": "*", "local_port_num": 62145, "peer_port_num": 8984}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "63245", "peer_address": "*", "peer_port": "63246", "path": "*", "local_port_num": 63245, "peer_port_num": 63246}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22637", "peer_address": "*", "peer_port": "22636", "path": "*", "local_port_num": 22637, "peer_port_num": 22636}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "63246", "peer_address": "*", "peer_port": "63245", "path": "*", "local_port_num": 63246, "peer_port_num": 63245}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22636", "peer_address": "*", "peer_port": "22637", "path": "*", "local_port_num": 22636, "peer_port_num": 22637}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "14821", "peer_address": "*", "peer_port": "14820", "path": "/run/systemd/journal/stdout", "local_port_num": 14821, "peer_port_num": 14820}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22639", "peer_address": "*", "peer_port": "22640", "path": "*", "local_port_num": 22639, "peer_port_num": 22640}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "19063", "peer_address": "*", "peer_port": "19064", "path": "*", "local_port_num": 19063, "peer_port_num": 19064}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "19175", "peer_address": "*", "peer_port": "19176", "path": "*", "local_port_num": 19175, "peer_port_num": 19176}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "18390", "peer_address": "*", "peer_port": "18417", "path": "*", "local_port_num": 18390, "peer_port_num": 18417}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22640", "peer_address": "*", "peer_port": "22639", "path": "*", "local_port_num": 22640, "peer_port_num": 22639}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22643", "peer_address": "*", "peer_port": "22642", "path": "*", "local_port_num": 22643, "peer_port_num": 22642}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22642", "peer_address": "*", "peer_port": "22643", "path": "*", "local_port_num": 22642, "peer_port_num": 22643}, {"netid": "u_dgr", "state": "UNCONN", "recv_q": 0, "send_q": 0, "local_port": "107686", "peer_address": "*", "peer_port": "8986", "path": "*", "local_port_num": 107686, "peer_port_num": 8986}, {"netid": "u_dgr", "state": "UNCONN", "recv_q": 0, "send_q": 0, "local_port": "20820", "peer_address": "*", "peer_port": "8986", "path": "*", "local_port_num": 20820, "peer_port_num": 8986}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22618", "peer_address": "*", "peer_port": "22617", "path": "*", "local_port_num": 22618, "peer_port_num": 22617}, {"netid": "u_dgr", "state": "UNCONN", "recv_q": 0, "send_q": 0, "local_port": "21745", "peer_address": "*", "peer_port": "8986", "path": "*", "local_port_num": 21745, "peer_port_num": 8986}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22617", "peer_address": "*", "peer_port": "22618", "path": "*", "local_port_num": 22617, "peer_port_num": 22618}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22464", "peer_address": "*", "peer_port": "22463", "path": "/var/run/docker/libcontainerd/docker-containerd.sock", "local_port_num": 22464, "peer_port_num": 22463}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "20314", "peer_address": "*", "peer_port": "20315", "path": "*", "local_port_num": 20314, "peer_port_num": 20315}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "18299", "peer_address": "*", "peer_port": "18300", "path": "*", "local_port_num": 18299, "peer_port_num": 18300}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "20315", "peer_address": "*", "peer_port": "20314", "path": "/run/dbus/system_bus_socket", "local_port_num": 20315, "peer_port_num": 20314}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "18300", "peer_address": "*", "peer_port": "18299", "path": "/run/systemd/journal/stdout", "local_port_num": 18300, "peer_port_num": 18299}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22463", "peer_address": "*", "peer_port": "22464", "path": "*", "local_port_num": 22463, "peer_port_num": 22464}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22633", "peer_address": "*", "peer_port": "22634", "path": "*", "local_port_num": 22633, "peer_port_num": 22634}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22621", "peer_address": "*", "peer_port": "22620", "path": "*", "local_port_num": 22621, "peer_port_num": 22620}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22631", "peer_address": "*", "peer_port": "22630", "path": "*", "local_port_num": 22631, "peer_port_num": 22630}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "21741", "peer_address": "*", "peer_port": "21740", "path": "/run/systemd/journal/stdout", "local_port_num": 21741, "peer_port_num": 21740}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22620", "peer_address": "*", "peer_port": "22621", "path": "*", "local_port_num": 22620, "peer_port_num": 22621}, {"netid": "u_dgr", "state": "UNCONN", "recv_q": 0, "send_q": 0, "local_port": "14010", "peer_address": "*", "peer_port": "8971", "path": "*", "local_port_num": 14010, "peer_port_num": 8971}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "14671", "peer_address": "*", "peer_port": "14672", "path": "*", "local_port_num": 14671, "peer_port_num": 14672}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "21740", "peer_address": "*", "peer_port": "21741", "path": "*", "local_port_num": 21740, "peer_port_num": 21741}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22681", "peer_address": "*", "peer_port": "22680", "path": "*", "local_port_num": 22681, "peer_port_num": 22680}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "18413", "peer_address": "*", "peer_port": "18414", "path": "*", "local_port_num": 18413, "peer_port_num": 18414}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22680", "peer_address": "*", "peer_port": "22681", "path": "*", "local_port_num": 22680, "peer_port_num": 22681}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22609", "peer_address": "*", "peer_port": "22608", "path": "*", "local_port_num": 22609, "peer_port_num": 22608}, {"netid": "u_dgr", "state": "UNCONN", "recv_q": 0, "send_q": 0, "local_port": "18867", "peer_address": "*", "peer_port": "8986", "path": "*", "local_port_num": 18867, "peer_port_num": 8986}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22683", "peer_address": "*", "peer_port": "22684", "path": "*", "local_port_num": 22683, "peer_port_num": 22684}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "18414", "peer_address": "*", "peer_port": "18413", "path": "*", "local_port_num": 18414, "peer_port_num": 18413}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "19127", "peer_address": "*", "peer_port": "19126", "path": "/run/systemd/journal/stdout", "local_port_num": 19127, "peer_port_num": 19126}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22684", "peer_address": "*", "peer_port": "22683", "path": "*", "local_port_num": 22684, "peer_port_num": 22683}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22614", "peer_address": "*", "peer_port": "22613", "path": "*", "local_port_num": 22614, "peer_port_num": 22613}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "14672", "peer_address": "*", "peer_port": "14671", "path": "/run/systemd/journal/stdout", "local_port_num": 14672, "peer_port_num": 14671}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22687", "peer_address": "*", "peer_port": "22686", "path": "*", "local_port_num": 22687, "peer_port_num": 22686}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22634", "peer_address": "*", "peer_port": "22633", "path": "*", "local_port_num": 22634, "peer_port_num": 22633}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22613", "peer_address": "*", "peer_port": "22614", "path": "*", "local_port_num": 22613, "peer_port_num": 22614}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22686", "peer_address": "*", "peer_port": "22687", "path": "*", "local_port_num": 22686, "peer_port_num": 22687}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22608", "peer_address": "*", "peer_port": "22609", "path": "*", "local_port_num": 22608, "peer_port_num": 22609}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "19126", "peer_address": "*", "peer_port": "19127", "path": "*", "local_port_num": 19126, "peer_port_num": 19127}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22628", "peer_address": "*", "peer_port": "22627", "path": "*", "local_port_num": 22628, "peer_port_num": 22627}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22675", "peer_address": "*", "peer_port": "22674", "path": "*", "local_port_num": 22675, "peer_port_num": 22674}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22674", "peer_address": "*", "peer_port": "22675", "path": "*", "local_port_num": 22674, "peer_port_num": 22675}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22765", "peer_address": "*", "peer_port": "22766", "path": "*", "local_port_num": 22765, "peer_port_num": 22766}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22677", "peer_address": "*", "peer_port": "22678", "path": "*", "local_port_num": 22677, "peer_port_num": 22678}, {"netid": "u_dgr", "state": "UNCONN", "recv_q": 0, "send_q": 0, "local_port": "18896", "peer_address": "*", "peer_port": "8986", "path": "*", "local_port_num": 18896, "peer_port_num": 8986}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22627", "peer_address": "*", "peer_port": "22628", "path": "*", "local_port_num": 22627, "peer_port_num": 22628}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22766", "peer_address": "*", "peer_port": "22765", "path": "/run/dbus/system_bus_socket", "local_port_num": 22766, "peer_port_num": 22765}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "17614", "peer_address": "*", "peer_port": "17615", "path": "*", "local_port_num": 17614, "peer_port_num": 17615}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22678", "peer_address": "*", "peer_port": "22677", "path": "*", "local_port_num": 22678, "peer_port_num": 22677}, {"netid": "u_dgr", "state": "UNCONN", "recv_q": 0, "send_q": 0, "local_port": "18318", "peer_address": "*", "peer_port": "8984", "path": "*", "local_port_num": 18318, "peer_port_num": 8984}, {"netid": "u_dgr", "state": "UNCONN", "recv_q": 0, "send_q": 0, "local_port": "22793", "peer_address": "*", "peer_port": "8986", "path": "*", "local_port_num": 22793, "peer_port_num": 8986}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "18415", "peer_address": "*", "peer_port": "18302", "path": "/run/dbus/system_bus_socket", "local_port_num": 18415, "peer_port_num": 18302}, {"netid": "u_dgr", "state": "UNCONN", "recv_q": 0, "send_q": 0, "local_port": "22030", "peer_address": "*", "peer_port": "8984", "path": "*", "local_port_num": 22030, "peer_port_num": 8984}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22664", "peer_address": "*", "peer_port": "22663", "path": "*", "local_port_num": 22664, "peer_port_num": 22663}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "18302", "peer_address": "*", "peer_port": "18415", "path": "*", "local_port_num": 18302, "peer_port_num": 18415}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22667", "peer_address": "*", "peer_port": "22666", "path": "*", "local_port_num": 22667, "peer_port_num": 22666}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "18417", "peer_address": "*", "peer_port": "18390", "path": "/run/dbus/system_bus_socket", "local_port_num": 18417, "peer_port_num": 18390}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22666", "peer_address": "*", "peer_port": "22667", "path": "*", "local_port_num": 22666, "peer_port_num": 22667}, {"netid": "u_dgr", "state": "UNCONN", "recv_q": 0, "send_q": 0, "local_port": "22581", "peer_address": "*", "peer_port": "8986", "path": "*", "local_port_num": 22581, "peer_port_num": 8986}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "23190", "peer_address": "*", "peer_port": "23191", "path": "*", "local_port_num": 23190, "peer_port_num": 23191}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22669", "peer_address": "*", "peer_port": "22670", "path": "*", "local_port_num": 22669, "peer_port_num": 22670}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22630", "peer_address": "*", "peer_port": "22631", "path": "*", "local_port_num": 22630, "peer_port_num": 22631}, {"netid": "u_dgr", "state": "UNCONN", "recv_q": 0, "send_q": 0, "local_port": "22715", "peer_address": "*", "peer_port": "8986", "path": "*", "local_port_num": 22715, "peer_port_num": 8986}, {"netid": "u_dgr", "state": "UNCONN", "recv_q": 0, "send_q": 0, "local_port": "17605", "peer_address": "*", "peer_port": "8986", "path": "*", "local_port_num": 17605, "peer_port_num": 8986}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "22670", "peer_address": "*", "peer_port": "22669", "path": "*", "local_port_num": 22670, "peer_port_num": 22669}, {"netid": "u_str", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_port": "23191", "peer_address": "*", "peer_port": "23190", "path": "/run/dbus/system_bus_socket", "local_port_num": 23191, "peer_port_num": 23190}, {"netid": "raw", "state": "UNCONN", "recv_q": 0, "send_q": 0, "local_address": "[::]", "local_port": "ipv6-icmp", "peer_address": "[::]", "peer_port": "*"}, {"netid": "udp", "state": "UNCONN", "recv_q": 0, "send_q": 0, "local_address": "*", "local_port": "bootpc", "peer_address": "*", "peer_port": "*"}, {"netid": "udp", "state": "UNCONN", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "local_port": "323", "peer_address": "*", "peer_port": "*", "local_port_num": 323}, {"netid": "udp", "state": "UNCONN", "recv_q": 0, "send_q": 0, "local_address": "[::1]", "local_port": "323", "peer_address": "[::]", "peer_port": "*", "local_port_num": 323}, {"netid": "tcp", "state": "LISTEN", "recv_q": 0, "send_q": 100, "local_address": "127.0.0.1", "local_port": "smtp", "peer_address": "*", "peer_port": "*"}, {"netid": "tcp", "state": "LISTEN", "recv_q": 0, "send_q": 128, "local_address": "*", "local_port": "ssh", "peer_address": "*", "peer_port": "*"}, {"netid": "tcp", "state": "LISTEN", "recv_q": 0, "send_q": 100, "local_address": "[::1]", "local_port": "smtp", "peer_address": "[::]", "peer_port": "*"}, {"netid": "tcp", "state": "LISTEN", "recv_q": 0, "send_q": 128, "local_address": "[::]", "local_port": "ssh", "peer_address": "[::]", "peer_port": "*"}, {"netid": "tcp", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_address": "[::1]", "local_port": "ssh", "peer_address": "[::1]", "peer_port": "38134", "peer_port_num": 38134}, {"netid": "tcp", "state": "ESTAB", "recv_q": 0, "send_q": 0, "local_address": "[::1]", "local_port": "38134", "peer_address": "[::1]", "peer_port": "ssh", "local_port_num": 38134}] jc-1.17.3/tests/fixtures/centos-7.7/ss-sudo-a.out000066400000000000000000000430311415226333200213640ustar00rootroot00000000000000Netid State Recv-Q Send-Q Local Address:Port Peer Address:Port nl UNCONN 768 0 rtnl:dockerd-current/1220 * nl UNCONN 0 0 rtnl:kernel * nl UNCONN 0 0 rtnl:NetworkManager/878 * nl UNCONN 0 0 rtnl:NetworkManager/878 * nl UNCONN 4352 0 tcpdiag:ss/11360 * nl UNCONN 768 0 tcpdiag:kernel * nl UNCONN 0 0 xfrm:dockerd-current/1220 * nl UNCONN 0 0 xfrm:kernel * nl UNCONN 0 0 selinux:kernel * nl UNCONN 0 0 selinux:systemd/1 * nl UNCONN 0 0 selinux:dbus-daemon/787 * nl UNCONN 0 0 selinux:dbus-daemon/787 * nl UNCONN 0 0 selinux:systemd/1 * nl UNCONN 0 0 audit:kernel * nl UNCONN 0 0 audit:auditd/754 * nl UNCONN 0 0 audit:sudo/11358 * nl UNCONN 0 0 audit:systemd/1 * nl UNCONN 0 0 fiblookup:kernel * nl UNCONN 0 0 connector:kernel * nl UNCONN 0 0 nft:kernel * nl UNCONN 0 0 uevent:tuned/1218 * nl UNCONN 0 0 uevent:-4118 * nl UNCONN 0 0 uevent:-4120 * nl UNCONN 0 0 uevent:-4107 * nl UNCONN 0 0 uevent:systemd-logind/783 * nl UNCONN 0 0 uevent:-4117 * nl UNCONN 0 0 uevent:kernel * nl UNCONN 0 0 uevent:NetworkManager/878 * nl UNCONN 0 0 uevent:-4119 * nl UNCONN 0 0 uevent:systemd/1 * nl UNCONN 0 0 uevent:tuned/1218 * nl UNCONN 0 0 uevent:-4120 * nl UNCONN 0 0 uevent:NetworkManager/878 * nl UNCONN 0 0 uevent:-4119 * nl UNCONN 0 0 uevent:-4118 * nl UNCONN 0 0 uevent:-4117 * nl UNCONN 0 0 uevent:systemd-logind/783 * nl UNCONN 0 0 uevent:-4107 * nl UNCONN 0 0 uevent:systemd/1 * nl UNCONN 0 0 genl:kernel * nl UNCONN 0 0 genl:NetworkManager/878 * nl UNCONN 0 0 scsi-trans:kernel * p_raw UNCONN 0 0 *:ens33 * u_dgr UNCONN 0 0 /run/systemd/notify 8971 * 0 u_dgr UNCONN 0 0 /run/systemd/cgroups-agent 8973 * 0 u_str LISTEN 0 128 /run/systemd/journal/stdout 8981 * 0 u_str LISTEN 0 128 /var/run/docker.sock 22040 * 0 u_dgr UNCONN 0 0 /run/systemd/journal/socket 8984 * 0 u_dgr UNCONN 0 0 /dev/log 8986 * 0 u_str LISTEN 0 100 public/pickup 22610 * 0 u_str LISTEN 0 100 private/tlsmgr 22623 * 0 u_str LISTEN 0 10 /var/run/NetworkManager/private-dhcp 20787 * 0 u_str LISTEN 0 128 /run/docker/libnetwork/35ee6333bf93cc6652841e66c2c6dfb2e0a14ff20208fe6c4ad28a33dad48423.sock 23141 * 0 u_str LISTEN 0 128 /run/dbus/system_bus_socket 17775 * 0 u_str LISTEN 0 100 public/cleanup 22616 * 0 u_dgr UNCONN 0 0 /run/systemd/shutdownd 14206 * 0 u_str LISTEN 0 100 public/qmgr 22619 * 0 u_str LISTEN 0 100 public/flush 22644 * 0 u_str LISTEN 0 128 /run/lvm/lvmetad.socket 14005 * 0 u_str LISTEN 0 128 /run/lvm/lvmpolld.socket 14021 * 0 u_str LISTEN 0 100 public/showq 22659 * 0 u_dgr UNCONN 0 0 /var/run/chrony/chronyd.sock 18375 * 0 u_str LISTEN 0 100 private/rewrite 22629 * 0 u_str LISTEN 0 100 private/bounce 22632 * 0 u_str LISTEN 0 100 private/defer 22635 * 0 u_str LISTEN 0 100 private/trace 22638 * 0 u_str LISTEN 0 100 private/verify 22641 * 0 u_str LISTEN 0 100 private/proxymap 22647 * 0 u_str LISTEN 0 128 /run/systemd/private 13776 * 0 u_str LISTEN 0 100 private/proxywrite 22650 * 0 u_str LISTEN 0 100 private/smtp 22653 * 0 u_str LISTEN 0 100 private/relay 22656 * 0 u_str LISTEN 0 100 private/error 22662 * 0 u_str LISTEN 0 100 private/retry 22665 * 0 u_str LISTEN 0 100 private/discard 22668 * 0 u_str LISTEN 0 100 private/local 22673 * 0 u_str LISTEN 0 100 private/virtual 22676 * 0 u_str LISTEN 0 100 private/lmtp 22679 * 0 u_str LISTEN 0 100 private/anvil 22682 * 0 u_str LISTEN 0 100 private/scache 22685 * 0 u_str LISTEN 0 128 /var/run/docker/libcontainerd/docker-containerd.sock 22259 * 0 u_seq LISTEN 0 128 /run/udev/control 13820 * 0 u_str ESTAB 0 0 * 22658 * 22657 u_dgr UNCONN 0 0 * 19150 * 8986 u_str ESTAB 0 0 /run/dbus/system_bus_socket 19064 * 19063 u_str ESTAB 0 0 * 22657 * 22658 u_str ESTAB 0 0 /run/systemd/journal/stdout 21607 * 21606 u_str ESTAB 0 0 * 22660 * 22661 u_str ESTAB 0 0 /run/dbus/system_bus_socket 19176 * 19175 u_str ESTAB 0 0 * 21606 * 21607 u_str ESTAB 0 0 * 14820 * 14821 u_str ESTAB 0 0 * 22661 * 22660 u_dgr UNCONN 0 0 * 18334 * 8986 u_str ESTAB 0 0 * 17615 * 17614 u_dgr UNCONN 0 0 * 14877 * 14878 u_str ESTAB 0 0 * 22663 * 22664 u_dgr UNCONN 0 0 * 14878 * 14877 u_str ESTAB 0 0 * 18347 * 18416 u_dgr UNCONN 0 0 * 63240 * 8986 u_str ESTAB 0 0 /run/dbus/system_bus_socket 18416 * 18347 u_str ESTAB 0 0 * 21589 * 21590 u_str ESTAB 0 0 /run/systemd/journal/stdout 18181 * 18180 u_dgr UNCONN 0 0 * 14846 * 8984 u_dgr UNCONN 0 0 * 108562 * 8986 u_str ESTAB 0 0 * 22652 * 22651 u_dgr UNCONN 0 0 * 19253 * 8986 u_str ESTAB 0 0 * 22651 * 22652 u_str ESTAB 0 0 * 18180 * 18181 u_str ESTAB 0 0 * 18817 * 18818 u_str ESTAB 0 0 * 22654 * 22655 u_str ESTAB 0 0 * 22655 * 22654 u_str ESTAB 0 0 * 22645 * 22646 u_str ESTAB 0 0 /run/systemd/journal/stdout 21590 * 21589 u_str ESTAB 0 0 * 22646 * 22645 u_str ESTAB 0 0 * 22649 * 22648 u_str ESTAB 0 0 * 22648 * 22649 u_str ESTAB 0 0 /run/systemd/journal/stdout 18818 * 18817 u_dgr UNCONN 0 0 * 62145 * 8984 u_str ESTAB 0 0 * 63245 * 63246 u_str ESTAB 0 0 * 22637 * 22636 u_str ESTAB 0 0 * 63246 * 63245 u_str ESTAB 0 0 * 22636 * 22637 u_str ESTAB 0 0 /run/systemd/journal/stdout 14821 * 14820 u_str ESTAB 0 0 * 22639 * 22640 u_str ESTAB 0 0 * 19063 * 19064 u_str ESTAB 0 0 * 19175 * 19176 u_str ESTAB 0 0 * 18390 * 18417 u_str ESTAB 0 0 * 22640 * 22639 u_str ESTAB 0 0 * 22643 * 22642 u_str ESTAB 0 0 * 22642 * 22643 u_dgr UNCONN 0 0 * 107686 * 8986 u_dgr UNCONN 0 0 * 20820 * 8986 u_str ESTAB 0 0 * 22618 * 22617 u_dgr UNCONN 0 0 * 21745 * 8986 u_str ESTAB 0 0 * 22617 * 22618 u_str ESTAB 0 0 /var/run/docker/libcontainerd/docker-containerd.sock 22464 * 22463 u_str ESTAB 0 0 * 20314 * 20315 u_str ESTAB 0 0 * 18299 * 18300 u_str ESTAB 0 0 /run/dbus/system_bus_socket 20315 * 20314 u_str ESTAB 0 0 /run/systemd/journal/stdout 18300 * 18299 u_str ESTAB 0 0 * 22463 * 22464 u_str ESTAB 0 0 * 22633 * 22634 u_str ESTAB 0 0 * 22621 * 22620 u_str ESTAB 0 0 * 22631 * 22630 u_str ESTAB 0 0 /run/systemd/journal/stdout 21741 * 21740 u_str ESTAB 0 0 * 22620 * 22621 u_dgr UNCONN 0 0 * 14010 * 8971 u_str ESTAB 0 0 * 14671 * 14672 u_str ESTAB 0 0 * 21740 * 21741 u_str ESTAB 0 0 * 22681 * 22680 u_str ESTAB 0 0 * 18413 * 18414 u_str ESTAB 0 0 * 22680 * 22681 u_str ESTAB 0 0 * 22609 * 22608 u_dgr UNCONN 0 0 * 18867 * 8986 u_str ESTAB 0 0 * 22683 * 22684 u_str ESTAB 0 0 * 18414 * 18413 u_str ESTAB 0 0 /run/systemd/journal/stdout 19127 * 19126 u_str ESTAB 0 0 * 22684 * 22683 u_str ESTAB 0 0 * 22614 * 22613 u_str ESTAB 0 0 /run/systemd/journal/stdout 14672 * 14671 u_str ESTAB 0 0 * 22687 * 22686 u_str ESTAB 0 0 * 22634 * 22633 u_str ESTAB 0 0 * 22613 * 22614 u_str ESTAB 0 0 * 22686 * 22687 u_str ESTAB 0 0 * 22608 * 22609 u_str ESTAB 0 0 * 19126 * 19127 u_str ESTAB 0 0 * 22628 * 22627 u_str ESTAB 0 0 * 22675 * 22674 u_str ESTAB 0 0 * 22674 * 22675 u_str ESTAB 0 0 * 22765 * 22766 u_str ESTAB 0 0 * 22677 * 22678 u_dgr UNCONN 0 0 * 18896 * 8986 u_str ESTAB 0 0 * 22627 * 22628 u_str ESTAB 0 0 /run/dbus/system_bus_socket 22766 * 22765 u_str ESTAB 0 0 * 17614 * 17615 u_str ESTAB 0 0 * 22678 * 22677 u_dgr UNCONN 0 0 * 18318 * 8984 u_dgr UNCONN 0 0 * 22793 * 8986 u_str ESTAB 0 0 /run/dbus/system_bus_socket 18415 * 18302 u_dgr UNCONN 0 0 * 22030 * 8984 u_str ESTAB 0 0 * 22664 * 22663 u_str ESTAB 0 0 * 18302 * 18415 u_str ESTAB 0 0 * 22667 * 22666 u_str ESTAB 0 0 /run/dbus/system_bus_socket 18417 * 18390 u_str ESTAB 0 0 * 22666 * 22667 u_dgr UNCONN 0 0 * 22581 * 8986 u_str ESTAB 0 0 * 23190 * 23191 u_str ESTAB 0 0 * 22669 * 22670 u_str ESTAB 0 0 * 22630 * 22631 u_dgr UNCONN 0 0 * 22715 * 8986 u_dgr UNCONN 0 0 * 17605 * 8986 u_str ESTAB 0 0 * 22670 * 22669 u_str ESTAB 0 0 /run/dbus/system_bus_socket 23191 * 23190 raw UNCONN 0 0 [::]:ipv6-icmp [::]:* udp UNCONN 0 0 *:bootpc *:* udp UNCONN 0 0 127.0.0.1:323 *:* udp UNCONN 0 0 [::1]:323 [::]:* tcp LISTEN 0 100 127.0.0.1:smtp *:* tcp LISTEN 0 128 *:ssh *:* tcp LISTEN 0 100 [::1]:smtp [::]:* tcp LISTEN 0 128 [::]:ssh [::]:* tcp ESTAB 0 0 [::1]:ssh [::1]:38134 tcp ESTAB 0 0 [::1]:38134 [::1]:ssh jc-1.17.3/tests/fixtures/centos-7.7/stat.json000066400000000000000000016206451415226333200207030ustar00rootroot00000000000000[{"file":"/bin/[","size":41488,"blocks":88,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332811,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.422473404 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/a2p","size":107904,"blocks":216,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":51051551,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-01-21 14:10:13.000000000 -0800","modify_time":"2019-01-21 14:10:13.000000000 -0800","change_time":"2019-10-15 11:27:59.084410287 -0700","birth_time":null,"access_time_epoch":1548108613,"access_time_epoch_utc":null,"modify_time_epoch":1548108613,"modify_time_epoch_utc":null,"change_time_epoch":1571164079,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/addr2line","size":29200,"blocks":64,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50356928,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 16:14:33.000000000 -0700","modify_time":"2019-08-08 16:14:33.000000000 -0700","change_time":"2019-10-16 09:21:37.594083400 -0700","birth_time":null,"access_time_epoch":1565306073,"access_time_epoch_utc":null,"modify_time_epoch":1565306073,"modify_time_epoch_utc":null,"change_time_epoch":1571242897,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/alias","size":29,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332500,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 05:06:55.000000000 -0700","modify_time":"2019-08-08 05:06:55.000000000 -0700","change_time":"2019-10-16 09:21:18.468553218 -0700","birth_time":null,"access_time_epoch":1565266015,"access_time_epoch_utc":null,"modify_time_epoch":1565266015,"modify_time_epoch_utc":null,"change_time_epoch":1571242878,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/apropos","link_to":"whatis","size":6,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50696669,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.364014882 -0800","modify_time":"2019-08-15 10:53:56.781085248 -0700","change_time":"2019-08-15 10:53:56.781085248 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1565891636,"modify_time_epoch_utc":null,"change_time_epoch":1565891636,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/ar","size":62744,"blocks":128,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50356929,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 16:14:33.000000000 -0700","modify_time":"2019-08-08 16:14:33.000000000 -0700","change_time":"2019-10-16 09:21:37.597333462 -0700","birth_time":null,"access_time_epoch":1565306073,"access_time_epoch_utc":null,"modify_time_epoch":1565306073,"modify_time_epoch_utc":null,"change_time_epoch":1571242897,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/arch","size":33080,"blocks":72,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332812,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-21 13:17:58.677388778 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.423556758 -0700","birth_time":null,"access_time_epoch":1571689078,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/as","size":378128,"blocks":744,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50356930,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 16:14:33.000000000 -0700","modify_time":"2019-08-08 16:14:33.000000000 -0700","change_time":"2019-10-16 09:21:37.619000540 -0700","birth_time":null,"access_time_epoch":1565306073,"access_time_epoch_utc":null,"modify_time_epoch":1565306073,"modify_time_epoch_utc":null,"change_time_epoch":1571242897,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/aserver","size":28888,"blocks":64,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50696840,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 05:00:59.000000000 -0700","modify_time":"2019-08-08 05:00:59.000000000 -0700","change_time":"2019-10-16 09:23:01.333008340 -0700","birth_time":null,"access_time_epoch":1565265659,"access_time_epoch_utc":null,"modify_time_epoch":1565265659,"modify_time_epoch_utc":null,"change_time_epoch":1571242981,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/audit2allow","size":14554,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50358246,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 18:47:27.000000000 -0700","modify_time":"2019-08-08 18:47:27.000000000 -0700","change_time":"2019-10-16 09:22:16.308819242 -0700","birth_time":null,"access_time_epoch":1565315247,"access_time_epoch_utc":null,"modify_time_epoch":1565315247,"modify_time_epoch_utc":null,"change_time_epoch":1571242936,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/audit2why","link_to":"audit2allow","size":11,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50360924,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.364014882 -0800","modify_time":"2019-10-16 09:22:16.308819242 -0700","change_time":"2019-10-16 09:22:16.309902596 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1571242936,"modify_time_epoch_utc":null,"change_time_epoch":1571242936,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/aulast","size":15856,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50705021,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 05:06:06.000000000 -0700","modify_time":"2019-08-08 05:06:06.000000000 -0700","change_time":"2019-10-16 09:22:48.610099852 -0700","birth_time":null,"access_time_epoch":1565265966,"access_time_epoch_utc":null,"modify_time_epoch":1565265966,"modify_time_epoch_utc":null,"change_time_epoch":1571242968,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/aulastlog","size":11624,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50705022,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 05:06:06.000000000 -0700","modify_time":"2019-08-08 05:06:06.000000000 -0700","change_time":"2019-10-16 09:22:48.614433268 -0700","birth_time":null,"access_time_epoch":1565265966,"access_time_epoch_utc":null,"modify_time_epoch":1565265966,"modify_time_epoch_utc":null,"change_time_epoch":1571242968,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/ausyscall","size":11448,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50705023,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 05:06:06.000000000 -0700","modify_time":"2019-08-08 05:06:06.000000000 -0700","change_time":"2019-10-16 09:22:48.619850037 -0700","birth_time":null,"access_time_epoch":1565265966,"access_time_epoch_utc":null,"modify_time_epoch":1565265966,"modify_time_epoch_utc":null,"change_time_epoch":1571242968,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/auvirt","size":32696,"blocks":64,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50705024,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 05:06:06.000000000 -0700","modify_time":"2019-08-08 05:06:06.000000000 -0700","change_time":"2019-10-16 09:22:48.626350161 -0700","birth_time":null,"access_time_epoch":1565265966,"access_time_epoch_utc":null,"modify_time_epoch":1565265966,"modify_time_epoch_utc":null,"change_time_epoch":1571242968,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/awk","link_to":"gawk","size":4,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50338321,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 11:01:01.910381617 -0800","modify_time":"2019-08-15 10:53:16.252660657 -0700","change_time":"2019-08-15 10:53:16.252660657 -0700","birth_time":null,"access_time_epoch":1573498861,"access_time_epoch_utc":null,"modify_time_epoch":1565891596,"modify_time_epoch_utc":null,"change_time_epoch":1565891596,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/base64","size":37360,"blocks":80,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332813,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.425723465 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/basename","size":29032,"blocks":64,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332814,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 12:01:01.542856390 -0800","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.433306943 -0700","birth_time":null,"access_time_epoch":1573502461,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/bash","size":964600,"blocks":1888,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332501,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 10:40:01.506631148 -0800","modify_time":"2019-08-08 05:06:56.000000000 -0700","change_time":"2019-10-16 09:21:18.568221779 -0700","birth_time":null,"access_time_epoch":1573497601,"access_time_epoch_utc":null,"modify_time_epoch":1565266016,"modify_time_epoch_utc":null,"change_time_epoch":1571242878,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/bashbug","link_to":"bashbug-64","size":10,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50332502,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.365098237 -0800","modify_time":"2019-10-16 09:21:18.568221779 -0700","change_time":"2019-10-16 09:21:18.568221779 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1571242878,"modify_time_epoch_utc":null,"change_time_epoch":1571242878,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/bashbug-64","size":6964,"blocks":16,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332503,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 05:06:52.000000000 -0700","modify_time":"2019-08-08 05:06:52.000000000 -0700","change_time":"2019-10-16 09:21:18.569305133 -0700","birth_time":null,"access_time_epoch":1565266012,"access_time_epoch_utc":null,"modify_time_epoch":1565266012,"modify_time_epoch_utc":null,"change_time_epoch":1571242878,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/bg","size":26,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332504,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 05:06:55.000000000 -0700","modify_time":"2019-08-08 05:06:55.000000000 -0700","change_time":"2019-10-16 09:21:18.570388487 -0700","birth_time":null,"access_time_epoch":1565266015,"access_time_epoch_utc":null,"modify_time_epoch":1565266015,"modify_time_epoch_utc":null,"change_time_epoch":1571242878,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/bond2team","size":23289,"blocks":48,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50357045,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-03-17 10:41:23.000000000 -0700","modify_time":"2017-03-17 10:41:23.000000000 -0700","change_time":"2019-10-16 09:21:41.884164941 -0700","birth_time":null,"access_time_epoch":1489772483,"access_time_epoch_utc":null,"modify_time_epoch":1489772483,"modify_time_epoch_utc":null,"change_time_epoch":1571242901,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/bootctl","size":70648,"blocks":144,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359981,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-09-13 11:21:23.000000000 -0700","modify_time":"2019-09-13 11:21:23.000000000 -0700","change_time":"2019-10-16 09:21:45.240395398 -0700","birth_time":null,"access_time_epoch":1568398883,"access_time_epoch_utc":null,"modify_time_epoch":1568398883,"modify_time_epoch_utc":null,"change_time_epoch":1571242905,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/busctl","size":408680,"blocks":800,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359982,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-09-13 11:21:23.000000000 -0700","modify_time":"2019-09-13 11:21:23.000000000 -0700","change_time":"2019-10-16 09:21:45.269645954 -0700","birth_time":null,"access_time_epoch":1568398883,"access_time_epoch_utc":null,"modify_time_epoch":1568398883,"modify_time_epoch_utc":null,"change_time_epoch":1571242905,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/c2ph","size":36607,"blocks":72,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":51052239,"links":2,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-01-21 14:09:44.000000000 -0800","modify_time":"2019-01-21 14:09:44.000000000 -0800","change_time":"2019-10-15 11:28:01.078451844 -0700","birth_time":null,"access_time_epoch":1548108584,"access_time_epoch_utc":null,"modify_time_epoch":1548108584,"modify_time_epoch_utc":null,"change_time_epoch":1571164081,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/cal","size":37688,"blocks":80,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50358260,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.525510464 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/ca-legacy","size":1638,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338431,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-15 10:53:17.048660672 -0700","modify_time":"2018-05-14 07:10:13.000000000 -0700","change_time":"2019-08-15 10:53:16.999660671 -0700","birth_time":null,"access_time_epoch":1565891597,"access_time_epoch_utc":null,"modify_time_epoch":1526307013,"modify_time_epoch_utc":null,"change_time_epoch":1565891596,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/captoinfo","link_to":"tic","size":3,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50332896,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.366181591 -0800","modify_time":"2019-08-15 10:53:08.877660512 -0700","change_time":"2019-08-15 10:53:08.877660512 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1565891588,"modify_time_epoch_utc":null,"change_time_epoch":1565891588,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/cat","size":54080,"blocks":112,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332815,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 10:45:43.162713038 -0800","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.436557005 -0700","birth_time":null,"access_time_epoch":1573497943,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/catchsegv","size":3336,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332742,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-06 16:02:59.000000000 -0700","modify_time":"2019-08-06 16:02:59.000000000 -0700","change_time":"2019-10-16 09:21:18.993979872 -0700","birth_time":null,"access_time_epoch":1565132579,"access_time_epoch_utc":null,"modify_time_epoch":1565132579,"modify_time_epoch_utc":null,"change_time_epoch":1571242878,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/catman","size":37632,"blocks":80,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50696670,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-10-30 13:26:36.000000000 -0700","modify_time":"2018-10-30 13:26:36.000000000 -0700","change_time":"2019-08-15 10:53:56.782085265 -0700","birth_time":null,"access_time_epoch":1540931196,"access_time_epoch_utc":null,"modify_time_epoch":1540931196,"modify_time_epoch_utc":null,"change_time_epoch":1565891636,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/cd","size":26,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332508,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 05:06:55.000000000 -0700","modify_time":"2019-08-08 05:06:55.000000000 -0700","change_time":"2019-10-16 09:21:18.570388487 -0700","birth_time":null,"access_time_epoch":1565266015,"access_time_epoch_utc":null,"modify_time_epoch":1565266015,"modify_time_epoch_utc":null,"change_time_epoch":1571242878,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/centrino-decode","size":6280,"blocks":16,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50392013,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-09-30 07:30:32.000000000 -0700","modify_time":"2019-09-30 07:30:32.000000000 -0700","change_time":"2019-10-16 09:22:58.976713551 -0700","birth_time":null,"access_time_epoch":1569853832,"access_time_epoch_utc":null,"modify_time_epoch":1569853832,"modify_time_epoch_utc":null,"change_time_epoch":1571242978,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/certutil","size":175760,"blocks":344,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359404,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-12 08:55:47.000000000 -0700","modify_time":"2019-08-12 08:55:47.000000000 -0700","change_time":"2019-10-16 09:23:00.585494132 -0700","birth_time":null,"access_time_epoch":1565625347,"access_time_epoch_utc":null,"modify_time_epoch":1565625347,"modify_time_epoch_utc":null,"change_time_epoch":1571242980,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/c++filt","size":28664,"blocks":56,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50356931,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 16:14:33.000000000 -0700","modify_time":"2019-08-08 16:14:33.000000000 -0700","change_time":"2019-10-16 09:21:37.619000540 -0700","birth_time":null,"access_time_epoch":1565306073,"access_time_epoch_utc":null,"modify_time_epoch":1565306073,"modify_time_epoch_utc":null,"change_time_epoch":1571242897,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/chacl","size":15640,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359693,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-04-10 17:41:22.000000000 -0700","modify_time":"2018-04-10 17:41:22.000000000 -0700","change_time":"2019-08-15 10:53:27.668660881 -0700","birth_time":null,"access_time_epoch":1523407282,"access_time_epoch_utc":null,"modify_time_epoch":1523407282,"modify_time_epoch_utc":null,"change_time_epoch":1565891607,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/chage","size":73888,"blocks":152,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338547,"links":1,"access":"4755","flags":"-rwsr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 19:51:01.000000000 -0700","modify_time":"2019-08-08 19:51:01.000000000 -0700","change_time":"2019-10-16 09:21:29.348676681 -0700","birth_time":null,"access_time_epoch":1565319061,"access_time_epoch_utc":null,"modify_time_epoch":1565319061,"modify_time_epoch_utc":null,"change_time_epoch":1571242889,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/chattr","size":11616,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360036,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 16:15:11.000000000 -0700","modify_time":"2019-08-08 16:15:11.000000000 -0700","change_time":"2019-10-16 09:22:59.199884461 -0700","birth_time":null,"access_time_epoch":1565306111,"access_time_epoch_utc":null,"modify_time_epoch":1565306111,"modify_time_epoch_utc":null,"change_time_epoch":1571242979,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/chcat","size":13430,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360959,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 18:47:27.000000000 -0700","modify_time":"2019-08-08 18:47:27.000000000 -0700","change_time":"2019-10-16 09:22:16.314236011 -0700","birth_time":null,"access_time_epoch":1565315247,"access_time_epoch_utc":null,"modify_time_epoch":1565315247,"modify_time_epoch_utc":null,"change_time_epoch":1571242936,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/chcon","size":62936,"blocks":128,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332816,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-16 09:21:43.413860682 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.440890420 -0700","birth_time":null,"access_time_epoch":1571242903,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/checkmodule","size":410096,"blocks":808,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50742503,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-10-30 14:48:39.000000000 -0700","modify_time":"2018-10-30 14:48:39.000000000 -0700","change_time":"2019-08-15 12:00:20.000613469 -0700","birth_time":null,"access_time_epoch":1540936119,"access_time_epoch_utc":null,"modify_time_epoch":1540936119,"modify_time_epoch_utc":null,"change_time_epoch":1565895620,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/checkpolicy","size":422360,"blocks":832,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50742504,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-10-30 14:48:39.000000000 -0700","modify_time":"2018-10-30 14:48:39.000000000 -0700","change_time":"2019-08-15 12:00:20.024613944 -0700","birth_time":null,"access_time_epoch":1540936119,"access_time_epoch_utc":null,"modify_time_epoch":1540936119,"modify_time_epoch_utc":null,"change_time_epoch":1565895620,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/chfn","size":23968,"blocks":48,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50358261,"links":1,"access":"4711","flags":"-rws--x--x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.526593818 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/chgrp","size":62784,"blocks":128,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332817,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-16 09:21:47.447187342 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.448473897 -0700","birth_time":null,"access_time_epoch":1571242907,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/chmem","size":41400,"blocks":88,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50358262,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.534177294 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/chmod","size":58592,"blocks":120,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332818,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-26 09:54:51.937914557 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.449557251 -0700","birth_time":null,"access_time_epoch":1572108891,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/chown","size":62824,"blocks":128,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332819,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-16 09:21:43.401943789 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.457140729 -0700","birth_time":null,"access_time_epoch":1571242903,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/chronyc","size":87072,"blocks":176,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50705053,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:54:20.263739421 -0800","modify_time":"2019-08-08 04:40:18.000000000 -0700","change_time":"2019-10-16 09:22:50.569887101 -0700","birth_time":null,"access_time_epoch":1573509260,"access_time_epoch_utc":null,"modify_time_epoch":1565264418,"modify_time_epoch_utc":null,"change_time_epoch":1571242970,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/chrt","size":32944,"blocks":72,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50358263,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.535260648 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/chsh","size":23880,"blocks":48,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50358264,"links":1,"access":"4711","flags":"-rws--x--x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.536344002 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/chvt","size":11480,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50572243,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-10-30 15:39:49.000000000 -0700","modify_time":"2018-10-30 15:39:49.000000000 -0700","change_time":"2019-08-15 10:53:46.180899675 -0700","birth_time":null,"access_time_epoch":1540939189,"access_time_epoch_utc":null,"modify_time_epoch":1540939189,"modify_time_epoch_utc":null,"change_time_epoch":1565891626,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/cifsiostat","size":49672,"blocks":104,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50426652,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 19:54:58.000000000 -0700","modify_time":"2019-08-08 19:54:58.000000000 -0700","change_time":"2019-10-29 23:35:07.178779359 -0700","birth_time":null,"access_time_epoch":1565319298,"access_time_epoch_utc":null,"modify_time_epoch":1565319298,"modify_time_epoch_utc":null,"change_time_epoch":1572417307,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/cksum","size":33152,"blocks":72,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332820,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.458224083 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/clear","size":7192,"blocks":16,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332897,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-03 11:02:44.257553638 -0800","modify_time":"2017-09-06 15:08:20.000000000 -0700","change_time":"2019-08-15 10:53:08.877660512 -0700","birth_time":null,"access_time_epoch":1572807764,"access_time_epoch_utc":null,"modify_time_epoch":1504735700,"modify_time_epoch_utc":null,"change_time_epoch":1565891588,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/cmp","size":45272,"blocks":96,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359090,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:30.283999927 -0800","modify_time":"2019-08-08 16:11:12.000000000 -0700","change_time":"2019-10-16 09:21:32.349567052 -0700","birth_time":null,"access_time_epoch":1573324470,"access_time_epoch_utc":null,"modify_time_epoch":1565305872,"modify_time_epoch_utc":null,"change_time_epoch":1571242892,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/cmsutil","size":104912,"blocks":208,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360903,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-12 08:55:47.000000000 -0700","modify_time":"2019-08-12 08:55:47.000000000 -0700","change_time":"2019-10-16 09:23:00.597411025 -0700","birth_time":null,"access_time_epoch":1565625347,"access_time_epoch_utc":null,"modify_time_epoch":1565625347,"modify_time_epoch_utc":null,"change_time_epoch":1571242980,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/col","size":24448,"blocks":48,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50358265,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.542844126 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/colcrt","size":11560,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50358266,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.543927480 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/colrm","size":24352,"blocks":48,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50358267,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.543927480 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/column","size":28664,"blocks":56,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50358268,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-10 07:30:04.116422612 -0800","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.545010834 -0700","birth_time":null,"access_time_epoch":1573399804,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/comm","size":37424,"blocks":80,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332821,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-16 09:23:37.785701188 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.459307436 -0700","birth_time":null,"access_time_epoch":1571243017,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/command","size":31,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332509,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 05:06:55.000000000 -0700","modify_time":"2019-08-08 05:06:55.000000000 -0700","change_time":"2019-10-16 09:21:18.570388487 -0700","birth_time":null,"access_time_epoch":1565266015,"access_time_epoch_utc":null,"modify_time_epoch":1565266015,"modify_time_epoch_utc":null,"change_time_epoch":1571242878,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/container-storage-setup","size":75750,"blocks":152,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50742450,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:30.449999925 -0800","modify_time":"2018-06-12 12:44:45.000000000 -0700","change_time":"2019-08-15 12:00:19.392601456 -0700","birth_time":null,"access_time_epoch":1573324470,"access_time_epoch_utc":null,"modify_time_epoch":1528832685,"modify_time_epoch_utc":null,"change_time_epoch":1565895619,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/coredumpctl","size":158200,"blocks":312,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359983,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-09-13 11:21:23.000000000 -0700","modify_time":"2019-09-13 11:21:23.000000000 -0700","change_time":"2019-10-16 09:21:45.275062724 -0700","birth_time":null,"access_time_epoch":1568398883,"access_time_epoch_utc":null,"modify_time_epoch":1568398883,"modify_time_epoch_utc":null,"change_time_epoch":1571242905,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/cp","size":155176,"blocks":304,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332822,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-21 13:17:58.642388174 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.469057622 -0700","birth_time":null,"access_time_epoch":1571689078,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/cpio","size":145960,"blocks":288,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338658,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:35.794776806 -0800","modify_time":"2018-04-10 16:51:51.000000000 -0700","change_time":"2019-08-15 10:53:18.748660706 -0700","birth_time":null,"access_time_epoch":1573324475,"access_time_epoch_utc":null,"modify_time_epoch":1523404311,"modify_time_epoch_utc":null,"change_time_epoch":1565891598,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/cpupower","size":67928,"blocks":136,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50392014,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-09-30 07:30:32.000000000 -0700","modify_time":"2019-09-30 07:30:32.000000000 -0700","change_time":"2019-10-16 09:22:58.990797152 -0700","birth_time":null,"access_time_epoch":1569853832,"access_time_epoch_utc":null,"modify_time_epoch":1569853832,"modify_time_epoch_utc":null,"change_time_epoch":1571242978,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/crlutil","size":121744,"blocks":240,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359243,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-12 08:55:47.000000000 -0700","modify_time":"2019-08-12 08:55:47.000000000 -0700","change_time":"2019-10-16 09:23:00.610411272 -0700","birth_time":null,"access_time_epoch":1565625347,"access_time_epoch_utc":null,"modify_time_epoch":1565625347,"modify_time_epoch_utc":null,"change_time_epoch":1571242980,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/crontab","size":57656,"blocks":120,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50358244,"links":1,"access":"4755","flags":"-rwsr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-10 15:29:40.128315155 -0800","modify_time":"2019-08-08 16:07:24.000000000 -0700","change_time":"2019-10-16 09:22:15.850560532 -0700","birth_time":null,"access_time_epoch":1573428580,"access_time_epoch_utc":null,"modify_time_epoch":1565305644,"modify_time_epoch_utc":null,"change_time_epoch":1571242935,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/csplit","size":49992,"blocks":104,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332823,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.475557745 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/csslint-0.6","size":20096,"blocks":40,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338827,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-10-30 11:03:17.000000000 -0700","modify_time":"2018-10-30 11:03:17.000000000 -0700","change_time":"2019-08-15 10:53:19.717660725 -0700","birth_time":null,"access_time_epoch":1540922597,"access_time_epoch_utc":null,"modify_time_epoch":1540922597,"modify_time_epoch_utc":null,"change_time_epoch":1565891599,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/curl","size":156728,"blocks":312,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50357005,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-01 15:20:53.366401162 -0700","modify_time":"2019-08-08 04:42:29.000000000 -0700","change_time":"2019-10-16 09:21:39.578787789 -0700","birth_time":null,"access_time_epoch":1572646853,"access_time_epoch_utc":null,"modify_time_epoch":1565264549,"modify_time_epoch_utc":null,"change_time_epoch":1571242899,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/cut","size":41576,"blocks":88,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332824,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:35.060761919 -0800","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.476641099 -0700","birth_time":null,"access_time_epoch":1573324475,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/cvtsudoers","size":247440,"blocks":488,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50705100,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 19:58:09.000000000 -0700","modify_time":"2019-08-08 19:58:09.000000000 -0700","change_time":"2019-10-16 09:22:58.006028438 -0700","birth_time":null,"access_time_epoch":1565319489,"access_time_epoch_utc":null,"modify_time_epoch":1565319489,"modify_time_epoch_utc":null,"change_time_epoch":1571242978,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/date","size":62200,"blocks":128,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332825,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 10:40:01.512047915 -0800","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.480974515 -0700","birth_time":null,"access_time_epoch":1573497601,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/db_archive","size":11496,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359726,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 17:18:22.000000000 -0700","modify_time":"2019-08-08 17:18:22.000000000 -0700","change_time":"2019-10-16 09:21:36.933237505 -0700","birth_time":null,"access_time_epoch":1565309902,"access_time_epoch_utc":null,"modify_time_epoch":1565309902,"modify_time_epoch_utc":null,"change_time_epoch":1571242896,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/db_checkpoint","size":11576,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359372,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 17:18:22.000000000 -0700","modify_time":"2019-08-08 17:18:22.000000000 -0700","change_time":"2019-10-16 09:21:36.939737629 -0700","birth_time":null,"access_time_epoch":1565309902,"access_time_epoch_utc":null,"modify_time_epoch":1565309902,"modify_time_epoch_utc":null,"change_time_epoch":1571242896,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/db_deadlock","size":11584,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359373,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 17:18:22.000000000 -0700","modify_time":"2019-08-08 17:18:22.000000000 -0700","change_time":"2019-10-16 09:21:36.945154399 -0700","birth_time":null,"access_time_epoch":1565309902,"access_time_epoch_utc":null,"modify_time_epoch":1565309902,"modify_time_epoch_utc":null,"change_time_epoch":1571242896,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/db_dump","size":15696,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359374,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 17:18:22.000000000 -0700","modify_time":"2019-08-08 17:18:22.000000000 -0700","change_time":"2019-10-16 09:21:36.950571168 -0700","birth_time":null,"access_time_epoch":1565309902,"access_time_epoch_utc":null,"modify_time_epoch":1565309902,"modify_time_epoch_utc":null,"change_time_epoch":1571242896,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/db_dump185","size":65992,"blocks":136,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359375,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 17:18:22.000000000 -0700","modify_time":"2019-08-08 17:18:22.000000000 -0700","change_time":"2019-10-16 09:21:36.957071292 -0700","birth_time":null,"access_time_epoch":1565309902,"access_time_epoch_utc":null,"modify_time_epoch":1565309902,"modify_time_epoch_utc":null,"change_time_epoch":1571242896,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/db_hotbackup","size":15712,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359376,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 17:18:22.000000000 -0700","modify_time":"2019-08-08 17:18:22.000000000 -0700","change_time":"2019-10-16 09:21:36.962488062 -0700","birth_time":null,"access_time_epoch":1565309902,"access_time_epoch_utc":null,"modify_time_epoch":1565309902,"modify_time_epoch_utc":null,"change_time_epoch":1571242896,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/db_load","size":28168,"blocks":56,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359377,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 17:18:22.000000000 -0700","modify_time":"2019-08-08 17:18:22.000000000 -0700","change_time":"2019-10-16 09:21:36.968988185 -0700","birth_time":null,"access_time_epoch":1565309902,"access_time_epoch_utc":null,"modify_time_epoch":1565309902,"modify_time_epoch_utc":null,"change_time_epoch":1571242896,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/db_log_verify","size":15704,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359378,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 17:18:22.000000000 -0700","modify_time":"2019-08-08 17:18:22.000000000 -0700","change_time":"2019-10-16 09:21:36.973321601 -0700","birth_time":null,"access_time_epoch":1565309902,"access_time_epoch_utc":null,"modify_time_epoch":1565309902,"modify_time_epoch_utc":null,"change_time_epoch":1571242896,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/db_printlog","size":33032,"blocks":72,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359379,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 17:18:22.000000000 -0700","modify_time":"2019-08-08 17:18:22.000000000 -0700","change_time":"2019-10-16 09:21:36.978738371 -0700","birth_time":null,"access_time_epoch":1565309902,"access_time_epoch_utc":null,"modify_time_epoch":1565309902,"modify_time_epoch_utc":null,"change_time_epoch":1571242896,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/db_recover","size":11600,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359380,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 17:18:22.000000000 -0700","modify_time":"2019-08-08 17:18:22.000000000 -0700","change_time":"2019-10-16 09:21:36.984155140 -0700","birth_time":null,"access_time_epoch":1565309902,"access_time_epoch_utc":null,"modify_time_epoch":1565309902,"modify_time_epoch_utc":null,"change_time_epoch":1571242896,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/db_replicate","size":15712,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359381,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 17:18:22.000000000 -0700","modify_time":"2019-08-08 17:18:22.000000000 -0700","change_time":"2019-10-16 09:21:36.988488556 -0700","birth_time":null,"access_time_epoch":1565309902,"access_time_epoch_utc":null,"modify_time_epoch":1565309902,"modify_time_epoch_utc":null,"change_time_epoch":1571242896,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/db_stat","size":15624,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359382,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-16 09:23:43.984550264 -0700","modify_time":"2019-08-08 17:18:22.000000000 -0700","change_time":"2019-10-16 09:21:36.993905326 -0700","birth_time":null,"access_time_epoch":1571243023,"access_time_epoch_utc":null,"modify_time_epoch":1565309902,"modify_time_epoch_utc":null,"change_time_epoch":1571242896,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/db_tuner","size":19792,"blocks":40,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359383,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 17:18:22.000000000 -0700","modify_time":"2019-08-08 17:18:22.000000000 -0700","change_time":"2019-10-16 09:21:36.999322095 -0700","birth_time":null,"access_time_epoch":1565309902,"access_time_epoch_utc":null,"modify_time_epoch":1565309902,"modify_time_epoch_utc":null,"change_time_epoch":1571242896,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/db_upgrade","size":11504,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359384,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 17:18:22.000000000 -0700","modify_time":"2019-08-08 17:18:22.000000000 -0700","change_time":"2019-10-16 09:21:37.005822219 -0700","birth_time":null,"access_time_epoch":1565309902,"access_time_epoch_utc":null,"modify_time_epoch":1565309902,"modify_time_epoch_utc":null,"change_time_epoch":1571242897,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/dbus-binding-tool","size":96760,"blocks":192,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50400619,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2014-06-09 21:06:04.000000000 -0700","modify_time":"2014-06-09 21:06:04.000000000 -0700","change_time":"2019-08-15 10:53:36.501730065 -0700","birth_time":null,"access_time_epoch":1402373164,"access_time_epoch_utc":null,"modify_time_epoch":1402373164,"modify_time_epoch_utc":null,"change_time_epoch":1565891616,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/dbus-cleanup-sockets","size":11344,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360531,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-03-14 03:18:08.000000000 -0700","modify_time":"2019-03-14 03:18:08.000000000 -0700","change_time":"2019-08-15 12:01:16.983924641 -0700","birth_time":null,"access_time_epoch":1552558688,"access_time_epoch_utc":null,"modify_time_epoch":1552558688,"modify_time_epoch_utc":null,"change_time_epoch":1565895676,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/dbus-daemon","size":223320,"blocks":440,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360532,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:30.457999925 -0800","modify_time":"2019-03-14 03:18:08.000000000 -0700","change_time":"2019-08-15 12:01:17.003925119 -0700","birth_time":null,"access_time_epoch":1573324470,"access_time_epoch_utc":null,"modify_time_epoch":1552558688,"modify_time_epoch_utc":null,"change_time_epoch":1565895677,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/dbus-monitor","size":23760,"blocks":48,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360538,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-10 20:47:12.907472714 -0800","modify_time":"2019-03-14 03:18:08.000000000 -0700","change_time":"2019-08-15 12:01:17.006925191 -0700","birth_time":null,"access_time_epoch":1573447632,"access_time_epoch_utc":null,"modify_time_epoch":1552558688,"modify_time_epoch_utc":null,"change_time_epoch":1565895677,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/dbus-run-session","size":15408,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360540,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-03-14 03:18:08.000000000 -0700","modify_time":"2019-03-14 03:18:08.000000000 -0700","change_time":"2019-08-15 12:01:17.009925263 -0700","birth_time":null,"access_time_epoch":1552558688,"access_time_epoch_utc":null,"modify_time_epoch":1552558688,"modify_time_epoch_utc":null,"change_time_epoch":1565895677,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/dbus-send","size":27800,"blocks":56,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360541,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:34.447749486 -0800","modify_time":"2019-03-14 03:18:08.000000000 -0700","change_time":"2019-08-15 12:01:17.013925358 -0700","birth_time":null,"access_time_epoch":1573324474,"access_time_epoch_utc":null,"modify_time_epoch":1552558688,"modify_time_epoch_utc":null,"change_time_epoch":1565895677,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/dbus-test-tool","size":23768,"blocks":48,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360542,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-03-14 03:18:08.000000000 -0700","modify_time":"2019-03-14 03:18:08.000000000 -0700","change_time":"2019-08-15 12:01:17.017925454 -0700","birth_time":null,"access_time_epoch":1552558688,"access_time_epoch_utc":null,"modify_time_epoch":1552558688,"modify_time_epoch_utc":null,"change_time_epoch":1565895677,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/dbus-update-activation-environment","size":15480,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360543,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-03-14 03:18:08.000000000 -0700","modify_time":"2019-03-14 03:18:08.000000000 -0700","change_time":"2019-08-15 12:01:17.020925526 -0700","birth_time":null,"access_time_epoch":1552558688,"access_time_epoch_utc":null,"modify_time_epoch":1552558688,"modify_time_epoch_utc":null,"change_time_epoch":1565895677,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/dbus-uuidgen","size":11328,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360544,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-03-14 03:18:08.000000000 -0700","modify_time":"2019-03-14 03:18:08.000000000 -0700","change_time":"2019-08-15 12:01:17.023925597 -0700","birth_time":null,"access_time_epoch":1552558688,"access_time_epoch_utc":null,"modify_time_epoch":1552558688,"modify_time_epoch_utc":null,"change_time_epoch":1565895677,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/db_verify","size":11520,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359385,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 17:18:22.000000000 -0700","modify_time":"2019-08-08 17:18:22.000000000 -0700","change_time":"2019-10-16 09:21:37.011238988 -0700","birth_time":null,"access_time_epoch":1565309902,"access_time_epoch_utc":null,"modify_time_epoch":1565309902,"modify_time_epoch_utc":null,"change_time_epoch":1571242897,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/dd","size":74896,"blocks":152,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332826,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-21 13:18:11.553804686 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.487474639 -0700","birth_time":null,"access_time_epoch":1571689091,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/deallocvt","size":11496,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50572244,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-10-30 15:39:49.000000000 -0700","modify_time":"2018-10-30 15:39:49.000000000 -0700","change_time":"2019-08-15 10:53:46.180899675 -0700","birth_time":null,"access_time_epoch":1540939189,"access_time_epoch_utc":null,"modify_time_epoch":1540939189,"modify_time_epoch_utc":null,"change_time_epoch":1565891626,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/delv","size":41032,"blocks":88,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50422068,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 05:16:33.000000000 -0700","modify_time":"2019-08-08 05:16:33.000000000 -0700","change_time":"2019-10-23 10:53:22.845149927 -0700","birth_time":null,"access_time_epoch":1565266593,"access_time_epoch_utc":null,"modify_time_epoch":1565266593,"modify_time_epoch_utc":null,"change_time_epoch":1571853202,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/df","size":105016,"blocks":208,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332827,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-10 14:52:10.807465771 -0800","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.490724700 -0700","birth_time":null,"access_time_epoch":1573426330,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/dgawk","size":514168,"blocks":1008,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338322,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-06-28 14:52:48.000000000 -0700","modify_time":"2017-06-28 14:52:48.000000000 -0700","change_time":"2019-08-15 10:53:16.275660657 -0700","birth_time":null,"access_time_epoch":1498686768,"access_time_epoch_utc":null,"modify_time_epoch":1498686768,"modify_time_epoch_utc":null,"change_time_epoch":1565891596,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/diff","size":200224,"blocks":392,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359091,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-16 09:22:13.729353548 -0700","modify_time":"2019-08-08 16:11:12.000000000 -0700","change_time":"2019-10-16 09:21:32.372317484 -0700","birth_time":null,"access_time_epoch":1571242933,"access_time_epoch_utc":null,"modify_time_epoch":1565305872,"modify_time_epoch_utc":null,"change_time_epoch":1571242892,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/diff3","size":62200,"blocks":128,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359092,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 16:11:12.000000000 -0700","modify_time":"2019-08-08 16:11:12.000000000 -0700","change_time":"2019-10-16 09:21:32.378817608 -0700","birth_time":null,"access_time_epoch":1565305872,"access_time_epoch_utc":null,"modify_time_epoch":1565305872,"modify_time_epoch_utc":null,"change_time_epoch":1571242892,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/dig","size":150568,"blocks":296,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50422069,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-02 03:58:57.795047423 -0700","modify_time":"2019-08-08 05:16:33.000000000 -0700","change_time":"2019-10-23 10:53:22.867900350 -0700","birth_time":null,"access_time_epoch":1572692337,"access_time_epoch_utc":null,"modify_time_epoch":1565266593,"modify_time_epoch_utc":null,"change_time_epoch":1571853202,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/dir","size":117608,"blocks":232,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332828,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.499391532 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/dircolors","size":41408,"blocks":88,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332829,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:48.477638581 -0800","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.505891656 -0700","birth_time":null,"access_time_epoch":1573324488,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/dirname","size":28992,"blocks":64,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332830,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:30.526669989 -0800","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.506975009 -0700","birth_time":null,"access_time_epoch":1573324470,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/dmesg","size":49680,"blocks":104,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50358269,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:30.472999925 -0800","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.553677665 -0700","birth_time":null,"access_time_epoch":1573324470,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/dnsdomainname","link_to":"hostname","size":8,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50359101,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.371598363 -0800","modify_time":"2019-08-15 10:53:22.912660788 -0700","change_time":"2019-08-15 10:53:22.912660788 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1565891602,"modify_time_epoch_utc":null,"change_time_epoch":1565891602,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/docker","size":735,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50392665,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 11:00:01.841671312 -0800","modify_time":"2019-09-13 07:25:05.000000000 -0700","change_time":"2019-10-16 09:22:26.378593969 -0700","birth_time":null,"access_time_epoch":1573498801,"access_time_epoch_utc":null,"modify_time_epoch":1568384705,"modify_time_epoch_utc":null,"change_time_epoch":1571242946,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/docker-containerd","size":717,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50392666,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:35.380768409 -0800","modify_time":"2019-09-13 07:25:05.000000000 -0700","change_time":"2019-10-16 09:22:26.382927385 -0700","birth_time":null,"access_time_epoch":1573324475,"access_time_epoch_utc":null,"modify_time_epoch":1568384705,"modify_time_epoch_utc":null,"change_time_epoch":1571242946,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/docker-containerd-current","size":10806520,"blocks":21112,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50705012,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:35.403768876 -0800","modify_time":"2019-09-15 07:07:49.000000000 -0700","change_time":"2019-10-16 09:22:45.732711828 -0700","birth_time":null,"access_time_epoch":1573324475,"access_time_epoch_utc":null,"modify_time_epoch":1568556469,"modify_time_epoch_utc":null,"change_time_epoch":1571242965,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/docker-containerd-shim","size":797,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50392667,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-09-13 07:25:05.000000000 -0700","modify_time":"2019-09-13 07:25:05.000000000 -0700","change_time":"2019-10-16 09:22:26.388344154 -0700","birth_time":null,"access_time_epoch":1568384705,"access_time_epoch_utc":null,"modify_time_epoch":1568384705,"modify_time_epoch_utc":null,"change_time_epoch":1571242946,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/docker-containerd-shim-current","size":2585896,"blocks":5056,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50705013,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-09-15 07:07:46.000000000 -0700","modify_time":"2019-09-15 07:07:46.000000000 -0700","change_time":"2019-10-16 09:22:45.839963867 -0700","birth_time":null,"access_time_epoch":1568556466,"access_time_epoch_utc":null,"modify_time_epoch":1568556466,"modify_time_epoch_utc":null,"change_time_epoch":1571242965,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/docker-ctr-current","size":10015448,"blocks":19568,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50705014,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-09-15 07:07:48.000000000 -0700","modify_time":"2019-09-15 07:07:48.000000000 -0700","change_time":"2019-10-16 09:22:46.300389285 -0700","birth_time":null,"access_time_epoch":1568556468,"access_time_epoch_utc":null,"modify_time_epoch":1568556468,"modify_time_epoch_utc":null,"change_time_epoch":1571242966,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/docker-current","size":13156296,"blocks":25696,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50392669,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 11:00:01.847088079 -0800","modify_time":"2019-09-15 07:07:48.000000000 -0700","change_time":"2019-10-16 09:22:27.317861822 -0700","birth_time":null,"access_time_epoch":1573498801,"access_time_epoch_utc":null,"modify_time_epoch":1568556468,"modify_time_epoch_utc":null,"change_time_epoch":1571242947,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/dockerd","size":740,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50392668,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-09-13 07:25:05.000000000 -0700","modify_time":"2019-09-13 07:25:05.000000000 -0700","change_time":"2019-10-16 09:22:26.394844278 -0700","birth_time":null,"access_time_epoch":1568384705,"access_time_epoch_utc":null,"modify_time_epoch":1568384705,"modify_time_epoch_utc":null,"change_time_epoch":1571242946,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/dockerd-current","size":33407632,"blocks":65256,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50705016,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:34.692754456 -0800","modify_time":"2019-09-15 07:07:46.000000000 -0700","change_time":"2019-10-16 09:22:47.881002661 -0700","birth_time":null,"access_time_epoch":1573324474,"access_time_epoch_utc":null,"modify_time_epoch":1568556466,"modify_time_epoch_utc":null,"change_time_epoch":1571242967,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/docker-storage-setup","link_to":"/usr/bin/container-storage-setup","size":32,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50705015,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.372681717 -0800","modify_time":"2019-10-16 09:22:46.300389285 -0700","change_time":"2019-10-16 09:22:46.302555993 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1571242966,"modify_time_epoch_utc":null,"change_time_epoch":1571242966,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/domainname","link_to":"hostname","size":8,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50359102,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.372681717 -0800","modify_time":"2019-08-15 10:53:22.912660788 -0700","change_time":"2019-08-15 10:53:22.912660788 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1565891602,"modify_time_epoch_utc":null,"change_time_epoch":1565891602,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/dracut","size":57002,"blocks":112,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359963,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-21 13:17:58.517386018 -0700","modify_time":"2019-08-08 16:14:24.000000000 -0700","change_time":"2019-10-16 09:21:44.151624704 -0700","birth_time":null,"access_time_epoch":1571689078,"access_time_epoch_utc":null,"modify_time_epoch":1565306064,"modify_time_epoch_utc":null,"change_time_epoch":1571242904,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/du","size":112992,"blocks":224,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332913,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-21 13:18:18.094917499 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.514558487 -0700","birth_time":null,"access_time_epoch":1571689098,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/dumpkeys","size":79440,"blocks":160,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50572236,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-10-30 15:39:49.000000000 -0700","modify_time":"2018-10-30 15:39:49.000000000 -0700","change_time":"2019-08-15 10:53:46.171899517 -0700","birth_time":null,"access_time_epoch":1540939189,"access_time_epoch_utc":null,"modify_time_epoch":1540939189,"modify_time_epoch_utc":null,"change_time_epoch":1565891626,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/dwp","size":3178136,"blocks":6208,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50356932,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 16:14:33.000000000 -0700","modify_time":"2019-08-08 16:14:33.000000000 -0700","change_time":"2019-10-16 09:21:37.775003505 -0700","birth_time":null,"access_time_epoch":1565306073,"access_time_epoch_utc":null,"modify_time_epoch":1565306073,"modify_time_epoch_utc":null,"change_time_epoch":1571242897,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/easy_install","size":320,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50742461,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-02 03:18:27.000000000 -0700","modify_time":"2017-08-02 03:18:27.000000000 -0700","change_time":"2019-08-15 12:00:19.737608273 -0700","birth_time":null,"access_time_epoch":1501669107,"access_time_epoch_utc":null,"modify_time_epoch":1501669107,"modify_time_epoch_utc":null,"change_time_epoch":1565895619,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/easy_install-2.7","size":328,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50742462,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-02 03:18:27.000000000 -0700","modify_time":"2017-08-02 03:18:27.000000000 -0700","change_time":"2019-08-15 12:00:19.737608273 -0700","birth_time":null,"access_time_epoch":1501669107,"access_time_epoch_utc":null,"modify_time_epoch":1501669107,"modify_time_epoch_utc":null,"change_time_epoch":1565895619,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/easy_install-3.6","size":234,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50358925,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-07 09:59:54.000000000 -0700","modify_time":"2019-08-07 09:59:54.000000000 -0700","change_time":"2019-10-15 11:09:07.257104127 -0700","birth_time":null,"access_time_epoch":1565197194,"access_time_epoch_utc":null,"modify_time_epoch":1565197194,"modify_time_epoch_utc":null,"change_time_epoch":1571162947,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/echo","size":33088,"blocks":72,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332914,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-21 13:18:11.122797252 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.515641841 -0700","birth_time":null,"access_time_epoch":1571689091,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/egrep","size":290,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338386,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:35.115763035 -0800","modify_time":"2017-08-02 23:58:17.000000000 -0700","change_time":"2019-08-15 10:53:16.666660665 -0700","birth_time":null,"access_time_epoch":1573324475,"access_time_epoch_utc":null,"modify_time_epoch":1501743497,"modify_time_epoch_utc":null,"change_time_epoch":1565891596,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/eject","size":49984,"blocks":104,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50358270,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.561261143 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/elfedit","size":33040,"blocks":72,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50356933,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 16:14:33.000000000 -0700","modify_time":"2019-08-08 16:14:33.000000000 -0700","change_time":"2019-10-16 09:21:37.776086859 -0700","birth_time":null,"access_time_epoch":1565306073,"access_time_epoch_utc":null,"modify_time_epoch":1565306073,"modify_time_epoch_utc":null,"change_time_epoch":1571242897,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/env","size":29008,"blocks":64,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332915,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-02 05:06:41.950149595 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.516725195 -0700","birth_time":null,"access_time_epoch":1572696401,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/envsubst","size":36872,"blocks":80,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359171,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-02 19:24:25.000000000 -0700","modify_time":"2017-08-02 19:24:25.000000000 -0700","change_time":"2019-08-15 10:53:23.686660803 -0700","birth_time":null,"access_time_epoch":1501727065,"access_time_epoch_utc":null,"modify_time_epoch":1501727065,"modify_time_epoch_utc":null,"change_time_epoch":1565891603,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/eqn","size":147880,"blocks":296,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339142,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2014-06-09 13:17:22.000000000 -0700","modify_time":"2014-06-09 13:17:22.000000000 -0700","change_time":"2019-08-15 10:53:20.626660743 -0700","birth_time":null,"access_time_epoch":1402345042,"access_time_epoch_utc":null,"modify_time_epoch":1402345042,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/ex","link_to":"vi","size":2,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50359446,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.373765072 -0800","modify_time":"2019-10-16 09:21:42.248171859 -0700","change_time":"2019-10-16 09:21:42.248171859 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1571242902,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/expand","size":33264,"blocks":72,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332916,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.517808549 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/expr","size":37408,"blocks":80,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332917,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:37.566812745 -0800","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.519975257 -0700","birth_time":null,"access_time_epoch":1573324477,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/factor","size":95528,"blocks":192,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332918,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.528642088 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/fallocate","size":28512,"blocks":56,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50358271,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.562344497 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/false","size":28928,"blocks":64,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332919,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.529725442 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/fc","size":26,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332510,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 05:06:55.000000000 -0700","modify_time":"2019-08-08 05:06:55.000000000 -0700","change_time":"2019-10-16 09:21:18.571471841 -0700","birth_time":null,"access_time_epoch":1565266015,"access_time_epoch_utc":null,"modify_time_epoch":1565266015,"modify_time_epoch_utc":null,"change_time_epoch":1571242878,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/fg","size":26,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332511,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 05:06:55.000000000 -0700","modify_time":"2019-08-08 05:06:55.000000000 -0700","change_time":"2019-10-16 09:21:18.571471841 -0700","birth_time":null,"access_time_epoch":1565266015,"access_time_epoch_utc":null,"modify_time_epoch":1565266015,"modify_time_epoch_utc":null,"change_time_epoch":1571242878,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/fgconsole","size":11504,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50572245,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-10-30 15:39:49.000000000 -0700","modify_time":"2018-10-30 15:39:49.000000000 -0700","change_time":"2019-08-15 10:53:46.181899692 -0700","birth_time":null,"access_time_epoch":1540939189,"access_time_epoch_utc":null,"modify_time_epoch":1540939189,"modify_time_epoch_utc":null,"change_time_epoch":1565891626,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/fgrep","size":290,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338387,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-02 23:58:17.000000000 -0700","modify_time":"2017-08-02 23:58:17.000000000 -0700","change_time":"2019-08-15 10:53:16.667660665 -0700","birth_time":null,"access_time_epoch":1501743497,"access_time_epoch_utc":null,"modify_time_epoch":1501743497,"modify_time_epoch_utc":null,"change_time_epoch":1565891596,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/file","size":19848,"blocks":40,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338826,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-10-30 11:16:23.000000000 -0700","modify_time":"2018-10-30 11:16:23.000000000 -0700","change_time":"2019-08-15 10:53:19.669660724 -0700","birth_time":null,"access_time_epoch":1540923383,"access_time_epoch_utc":null,"modify_time_epoch":1540923383,"modify_time_epoch_utc":null,"change_time_epoch":1565891599,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/find","size":199304,"blocks":392,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338676,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-10 23:53:01.539403007 -0800","modify_time":"2018-10-30 09:42:55.000000000 -0700","change_time":"2019-08-15 10:53:18.853660708 -0700","birth_time":null,"access_time_epoch":1573458781,"access_time_epoch_utc":null,"modify_time_epoch":1540917775,"modify_time_epoch_utc":null,"change_time_epoch":1565891598,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/find2perl","size":23614,"blocks":48,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":51051552,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-01-21 14:09:44.000000000 -0800","modify_time":"2019-01-21 14:09:44.000000000 -0800","change_time":"2019-10-15 11:27:59.085410308 -0700","birth_time":null,"access_time_epoch":1548108584,"access_time_epoch_utc":null,"modify_time_epoch":1548108584,"modify_time_epoch_utc":null,"change_time_epoch":1571164079,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/findmnt","size":59768,"blocks":120,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50358272,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:37.628814002 -0800","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.569927974 -0700","birth_time":null,"access_time_epoch":1573324477,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/fipscheck","size":15736,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359387,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-02 05:47:49.000000000 -0700","modify_time":"2017-08-02 05:47:49.000000000 -0700","change_time":"2019-08-15 10:53:24.343660816 -0700","birth_time":null,"access_time_epoch":1501678069,"access_time_epoch_utc":null,"modify_time_epoch":1501678069,"modify_time_epoch_utc":null,"change_time_epoch":1565891604,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/fipshmac","size":11576,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359388,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-02 05:47:49.000000000 -0700","modify_time":"2017-08-02 05:47:49.000000000 -0700","change_time":"2019-08-15 10:53:24.344660816 -0700","birth_time":null,"access_time_epoch":1501678069,"access_time_epoch_utc":null,"modify_time_epoch":1501678069,"modify_time_epoch_utc":null,"change_time_epoch":1565891604,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/firewall-cmd","size":116196,"blocks":232,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50440148,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-09-13 11:02:15.000000000 -0700","modify_time":"2019-09-13 11:02:15.000000000 -0700","change_time":"2019-10-16 09:22:52.168917494 -0700","birth_time":null,"access_time_epoch":1568397735,"access_time_epoch_utc":null,"modify_time_epoch":1568397735,"modify_time_epoch_utc":null,"change_time_epoch":1571242972,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/firewall-offline-cmd","size":103607,"blocks":208,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50440149,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-09-13 11:02:15.000000000 -0700","modify_time":"2019-09-13 11:02:15.000000000 -0700","change_time":"2019-10-16 09:22:52.180834387 -0700","birth_time":null,"access_time_epoch":1568397735,"access_time_epoch_utc":null,"modify_time_epoch":1568397735,"modify_time_epoch_utc":null,"change_time_epoch":1571242972,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/flock","size":24448,"blocks":48,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50358273,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:34.766755957 -0800","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.569927974 -0700","birth_time":null,"access_time_epoch":1573324474,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/fmt","size":37360,"blocks":80,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332921,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.537308920 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/fold","size":37336,"blocks":80,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332922,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.538392274 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/free","size":19792,"blocks":40,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50358300,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-02 05:34:48.619054875 -0700","modify_time":"2019-08-08 18:55:49.000000000 -0700","change_time":"2019-10-16 09:21:43.595864141 -0700","birth_time":null,"access_time_epoch":1572698088,"access_time_epoch_utc":null,"modify_time_epoch":1565315749,"modify_time_epoch_utc":null,"change_time_epoch":1571242903,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/gapplication","size":19944,"blocks":40,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338754,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 16:38:09.000000000 -0700","modify_time":"2019-08-08 16:38:09.000000000 -0700","change_time":"2019-10-16 09:21:32.670239813 -0700","birth_time":null,"access_time_epoch":1565307489,"access_time_epoch_utc":null,"modify_time_epoch":1565307489,"modify_time_epoch_utc":null,"change_time_epoch":1571242892,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/gawk","size":428584,"blocks":840,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338323,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 11:01:01.910381617 -0800","modify_time":"2017-06-28 14:52:48.000000000 -0700","change_time":"2019-08-15 10:53:16.284660657 -0700","birth_time":null,"access_time_epoch":1573498861,"access_time_epoch_utc":null,"modify_time_epoch":1498686768,"modify_time_epoch_utc":null,"change_time_epoch":1565891596,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/gdbus","size":41136,"blocks":88,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338613,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 16:38:09.000000000 -0700","modify_time":"2019-08-08 16:38:09.000000000 -0700","change_time":"2019-10-16 09:21:32.672406521 -0700","birth_time":null,"access_time_epoch":1565307489,"access_time_epoch_utc":null,"modify_time_epoch":1565307489,"modify_time_epoch_utc":null,"change_time_epoch":1571242892,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/gencat","size":23136,"blocks":48,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332743,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-06 16:23:28.000000000 -0700","modify_time":"2019-08-06 16:23:28.000000000 -0700","change_time":"2019-10-16 09:21:18.993979872 -0700","birth_time":null,"access_time_epoch":1565133808,"access_time_epoch_utc":null,"modify_time_epoch":1565133808,"modify_time_epoch_utc":null,"change_time_epoch":1571242878,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/genl-ctrl-list","size":11544,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":10313,"links":2,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.487660740 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/geoiplookup","size":15648,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50357003,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 16:34:37.000000000 -0700","modify_time":"2019-08-08 16:34:37.000000000 -0700","change_time":"2019-10-16 09:21:39.098862001 -0700","birth_time":null,"access_time_epoch":1565307277,"access_time_epoch_utc":null,"modify_time_epoch":1565307277,"modify_time_epoch_utc":null,"change_time_epoch":1571242899,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/geoiplookup6","size":11424,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50357004,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 16:34:37.000000000 -0700","modify_time":"2019-08-08 16:34:37.000000000 -0700","change_time":"2019-10-16 09:21:39.099945355 -0700","birth_time":null,"access_time_epoch":1565307277,"access_time_epoch_utc":null,"modify_time_epoch":1565307277,"modify_time_epoch_utc":null,"change_time_epoch":1571242899,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/geoipupdate","size":32072,"blocks":64,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50357000,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-12 13:21:19.000000000 -0700","modify_time":"2019-08-12 13:21:19.000000000 -0700","change_time":"2019-10-16 09:21:39.043610951 -0700","birth_time":null,"access_time_epoch":1565641279,"access_time_epoch_utc":null,"modify_time_epoch":1565641279,"modify_time_epoch_utc":null,"change_time_epoch":1571242899,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/geqn","link_to":"eqn","size":3,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50339143,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.374848426 -0800","modify_time":"2019-08-15 10:53:20.626660743 -0700","change_time":"2019-08-15 10:53:20.627660743 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1565891600,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/getconf","size":22920,"blocks":48,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332809,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-06 16:23:28.000000000 -0700","modify_time":"2019-08-06 16:23:28.000000000 -0700","change_time":"2019-10-16 09:21:22.911387663 -0700","birth_time":null,"access_time_epoch":1565133808,"access_time_epoch_utc":null,"modify_time_epoch":1565133808,"modify_time_epoch_utc":null,"change_time_epoch":1571242882,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/getent","size":27896,"blocks":56,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332744,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-16 09:21:45.178644224 -0700","modify_time":"2019-08-06 16:23:28.000000000 -0700","change_time":"2019-10-16 09:21:18.996146580 -0700","birth_time":null,"access_time_epoch":1571242905,"access_time_epoch_utc":null,"modify_time_epoch":1565133808,"modify_time_epoch_utc":null,"change_time_epoch":1571242878,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/getfacl","size":24872,"blocks":56,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359694,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-04-10 17:41:22.000000000 -0700","modify_time":"2018-04-10 17:41:22.000000000 -0700","change_time":"2019-08-15 10:53:27.669660881 -0700","birth_time":null,"access_time_epoch":1523407282,"access_time_epoch_utc":null,"modify_time_epoch":1523407282,"modify_time_epoch_utc":null,"change_time_epoch":1565891607,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/getkeycodes","size":11496,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50572246,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-10-30 15:39:49.000000000 -0700","modify_time":"2018-10-30 15:39:49.000000000 -0700","change_time":"2019-08-15 10:53:46.181899692 -0700","birth_time":null,"access_time_epoch":1540939189,"access_time_epoch_utc":null,"modify_time_epoch":1540939189,"modify_time_epoch_utc":null,"change_time_epoch":1565891626,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/getopt","size":15752,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50358274,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:30.642672325 -0800","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.571011328 -0700","birth_time":null,"access_time_epoch":1573324470,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/getopts","size":31,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332720,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 05:06:55.000000000 -0700","modify_time":"2019-08-08 05:06:55.000000000 -0700","change_time":"2019-10-16 09:21:18.571471841 -0700","birth_time":null,"access_time_epoch":1565266015,"access_time_epoch_utc":null,"modify_time_epoch":1565266015,"modify_time_epoch_utc":null,"change_time_epoch":1571242878,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/gettext","size":36800,"blocks":72,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359172,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-15 10:56:06.019320481 -0700","modify_time":"2017-08-02 19:24:25.000000000 -0700","change_time":"2019-08-15 10:53:23.687660803 -0700","birth_time":null,"access_time_epoch":1565891766,"access_time_epoch_utc":null,"modify_time_epoch":1501727065,"modify_time_epoch_utc":null,"change_time_epoch":1565891603,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/gettext.sh","size":4629,"blocks":16,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359173,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-02 19:22:43.000000000 -0700","modify_time":"2017-08-02 19:22:43.000000000 -0700","change_time":"2019-08-15 10:53:23.687660803 -0700","birth_time":null,"access_time_epoch":1501726963,"access_time_epoch_utc":null,"modify_time_epoch":1501726963,"modify_time_epoch_utc":null,"change_time_epoch":1565891603,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/gio","size":75176,"blocks":152,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338755,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 16:38:09.000000000 -0700","modify_time":"2019-08-08 16:38:09.000000000 -0700","change_time":"2019-10-16 09:21:32.682156706 -0700","birth_time":null,"access_time_epoch":1565307489,"access_time_epoch_utc":null,"modify_time_epoch":1565307489,"modify_time_epoch_utc":null,"change_time_epoch":1571242892,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/gio-querymodules-64","size":11592,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338756,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-16 09:21:33.567256863 -0700","modify_time":"2019-08-08 16:38:09.000000000 -0700","change_time":"2019-10-16 09:21:32.683240060 -0700","birth_time":null,"access_time_epoch":1571242893,"access_time_epoch_utc":null,"modify_time_epoch":1565307489,"modify_time_epoch_utc":null,"change_time_epoch":1571242892,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/git","size":1523792,"blocks":2984,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":33937065,"links":113,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 09:24:29.856896555 -0800","modify_time":"2018-11-19 08:06:35.000000000 -0800","change_time":"2019-10-15 11:28:02.773487170 -0700","birth_time":null,"access_time_epoch":1573493069,"access_time_epoch_utc":null,"modify_time_epoch":1542643595,"modify_time_epoch_utc":null,"change_time_epoch":1571164082,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/git-receive-pack","size":1523792,"blocks":2984,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":33937065,"links":113,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 09:24:29.856896555 -0800","modify_time":"2018-11-19 08:06:35.000000000 -0800","change_time":"2019-10-15 11:28:02.773487170 -0700","birth_time":null,"access_time_epoch":1573493069,"access_time_epoch_utc":null,"modify_time_epoch":1542643595,"modify_time_epoch_utc":null,"change_time_epoch":1571164082,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/git-shell","size":735288,"blocks":1440,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":33937066,"links":2,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-11-19 08:06:35.000000000 -0800","modify_time":"2018-11-19 08:06:35.000000000 -0800","change_time":"2019-10-15 11:28:02.799487712 -0700","birth_time":null,"access_time_epoch":1542643595,"access_time_epoch_utc":null,"modify_time_epoch":1542643595,"modify_time_epoch_utc":null,"change_time_epoch":1571164082,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/git-upload-archive","size":1523792,"blocks":2984,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":33937065,"links":113,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 09:24:29.856896555 -0800","modify_time":"2018-11-19 08:06:35.000000000 -0800","change_time":"2019-10-15 11:28:02.773487170 -0700","birth_time":null,"access_time_epoch":1573493069,"access_time_epoch_utc":null,"modify_time_epoch":1542643595,"modify_time_epoch_utc":null,"change_time_epoch":1571164082,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/git-upload-pack","size":810448,"blocks":1584,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":33937067,"links":2,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-11-19 08:06:35.000000000 -0800","modify_time":"2018-11-19 08:06:35.000000000 -0800","change_time":"2019-10-15 11:28:02.826488275 -0700","birth_time":null,"access_time_epoch":1542643595,"access_time_epoch_utc":null,"modify_time_epoch":1542643595,"modify_time_epoch_utc":null,"change_time_epoch":1571164082,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/glib-compile-schemas","size":45440,"blocks":96,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338778,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 16:38:09.000000000 -0700","modify_time":"2019-08-08 16:38:09.000000000 -0700","change_time":"2019-10-16 09:21:32.685406768 -0700","birth_time":null,"access_time_epoch":1565307489,"access_time_epoch_utc":null,"modify_time_epoch":1565307489,"modify_time_epoch_utc":null,"change_time_epoch":1571242892,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/gmake","link_to":"make","size":4,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50357049,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.499434185 -0800","modify_time":"2019-10-16 09:21:42.040167906 -0700","change_time":"2019-10-16 09:21:42.040167906 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1571242902,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/gneqn","link_to":"neqn","size":4,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50339144,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.499434185 -0800","modify_time":"2019-08-15 10:53:20.627660743 -0700","change_time":"2019-08-15 10:53:20.627660743 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1565891600,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/gnroff","link_to":"nroff","size":5,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50339145,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.499434185 -0800","modify_time":"2019-08-15 10:53:20.627660743 -0700","change_time":"2019-08-15 10:53:20.627660743 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1565891600,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/gpasswd","size":78408,"blocks":160,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338548,"links":1,"access":"4755","flags":"-rwsr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 19:51:01.000000000 -0700","modify_time":"2019-08-08 19:51:01.000000000 -0700","change_time":"2019-10-16 09:21:29.355176805 -0700","birth_time":null,"access_time_epoch":1565319061,"access_time_epoch_utc":null,"modify_time_epoch":1565319061,"modify_time_epoch_utc":null,"change_time_epoch":1571242889,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/gpg","link_to":"gpg2","size":4,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50400689,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.500517539 -0800","modify_time":"2019-08-15 10:53:36.870736564 -0700","change_time":"2019-08-15 10:53:36.870736564 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1565891616,"modify_time_epoch_utc":null,"change_time_epoch":1565891616,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/gpg2","size":749976,"blocks":1472,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50400693,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-07-13 06:05:25.000000000 -0700","modify_time":"2018-07-13 06:05:25.000000000 -0700","change_time":"2019-08-15 10:53:36.911737287 -0700","birth_time":null,"access_time_epoch":1531487125,"access_time_epoch_utc":null,"modify_time_epoch":1531487125,"modify_time_epoch_utc":null,"change_time_epoch":1565891616,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/gpg-agent","size":296696,"blocks":584,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50400690,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-07-13 06:05:25.000000000 -0700","modify_time":"2018-07-13 06:05:25.000000000 -0700","change_time":"2019-08-15 10:53:36.882736776 -0700","birth_time":null,"access_time_epoch":1531487125,"access_time_epoch_utc":null,"modify_time_epoch":1531487125,"modify_time_epoch_utc":null,"change_time_epoch":1565891616,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/gpgconf","size":143680,"blocks":288,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50400694,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-07-13 06:05:25.000000000 -0700","modify_time":"2018-07-13 06:05:25.000000000 -0700","change_time":"2019-08-15 10:53:36.915737357 -0700","birth_time":null,"access_time_epoch":1531487125,"access_time_epoch_utc":null,"modify_time_epoch":1531487125,"modify_time_epoch_utc":null,"change_time_epoch":1565891616,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/gpg-connect-agent","size":156352,"blocks":312,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50400691,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-07-13 06:05:25.000000000 -0700","modify_time":"2018-07-13 06:05:25.000000000 -0700","change_time":"2019-08-15 10:53:36.886736846 -0700","birth_time":null,"access_time_epoch":1531487125,"access_time_epoch_utc":null,"modify_time_epoch":1531487125,"modify_time_epoch_utc":null,"change_time_epoch":1565891616,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/gpg-error","size":23736,"blocks":48,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338630,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2014-06-10 01:46:48.000000000 -0700","modify_time":"2014-06-10 01:46:48.000000000 -0700","change_time":"2019-08-15 10:53:18.589660703 -0700","birth_time":null,"access_time_epoch":1402390008,"access_time_epoch_utc":null,"modify_time_epoch":1402390008,"modify_time_epoch_utc":null,"change_time_epoch":1565891598,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/gpgparsemail","size":24272,"blocks":48,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50400695,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-07-13 06:05:25.000000000 -0700","modify_time":"2018-07-13 06:05:25.000000000 -0700","change_time":"2019-08-15 10:53:36.916737375 -0700","birth_time":null,"access_time_epoch":1531487125,"access_time_epoch_utc":null,"modify_time_epoch":1531487125,"modify_time_epoch_utc":null,"change_time_epoch":1565891616,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/gpgsplit","size":50056,"blocks":104,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50400696,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-07-13 06:05:25.000000000 -0700","modify_time":"2018-07-13 06:05:25.000000000 -0700","change_time":"2019-08-15 10:53:36.917737392 -0700","birth_time":null,"access_time_epoch":1531487125,"access_time_epoch_utc":null,"modify_time_epoch":1531487125,"modify_time_epoch_utc":null,"change_time_epoch":1565891616,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/gpgv","link_to":"gpgv2","size":5,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50400697,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.500517539 -0800","modify_time":"2019-08-15 10:53:36.917737392 -0700","change_time":"2019-08-15 10:53:36.917737392 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1565891616,"modify_time_epoch_utc":null,"change_time_epoch":1565891616,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/gpgv2","size":353672,"blocks":696,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50400698,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-07-13 06:05:25.000000000 -0700","modify_time":"2018-07-13 06:05:25.000000000 -0700","change_time":"2019-08-15 10:53:36.924737516 -0700","birth_time":null,"access_time_epoch":1531487125,"access_time_epoch_utc":null,"modify_time_epoch":1531487125,"modify_time_epoch_utc":null,"change_time_epoch":1565891616,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/gpg-zip","size":3307,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50400692,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-07-13 06:05:12.000000000 -0700","modify_time":"2018-07-13 06:05:12.000000000 -0700","change_time":"2019-08-15 10:53:36.886736846 -0700","birth_time":null,"access_time_epoch":1531487112,"access_time_epoch_utc":null,"modify_time_epoch":1531487112,"modify_time_epoch_utc":null,"change_time_epoch":1565891616,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/gpic","link_to":"pic","size":3,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50339146,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.501600893 -0800","modify_time":"2019-08-15 10:53:20.627660743 -0700","change_time":"2019-08-15 10:53:20.627660743 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1565891600,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/gprof","size":100832,"blocks":200,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50356934,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 16:14:33.000000000 -0700","modify_time":"2019-08-08 16:14:33.000000000 -0700","change_time":"2019-10-16 09:21:37.785837044 -0700","birth_time":null,"access_time_epoch":1565306073,"access_time_epoch_utc":null,"modify_time_epoch":1565306073,"modify_time_epoch_utc":null,"change_time_epoch":1571242897,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/grep","size":159024,"blocks":312,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338388,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 10:45:43.169213160 -0800","modify_time":"2017-08-02 23:58:18.000000000 -0700","change_time":"2019-08-15 10:53:16.673660665 -0700","birth_time":null,"access_time_epoch":1573497943,"access_time_epoch_utc":null,"modify_time_epoch":1501743498,"modify_time_epoch_utc":null,"change_time_epoch":1565891596,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/groff","size":83584,"blocks":168,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339147,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-10 17:39:49.472469785 -0800","modify_time":"2014-06-09 13:17:22.000000000 -0700","change_time":"2019-08-15 10:53:20.630660743 -0700","birth_time":null,"access_time_epoch":1573436389,"access_time_epoch_utc":null,"modify_time_epoch":1402345042,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/grops","size":144232,"blocks":288,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339148,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2014-06-09 13:17:22.000000000 -0700","modify_time":"2014-06-09 13:17:22.000000000 -0700","change_time":"2019-08-15 10:53:20.635660743 -0700","birth_time":null,"access_time_epoch":1402345042,"access_time_epoch_utc":null,"modify_time_epoch":1402345042,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/grotty","size":100952,"blocks":200,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339149,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-10 17:39:49.473553141 -0800","modify_time":"2014-06-09 13:17:22.000000000 -0700","change_time":"2019-08-15 10:53:20.637660743 -0700","birth_time":null,"access_time_epoch":1573436389,"access_time_epoch_utc":null,"modify_time_epoch":1402345042,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/groups","size":33192,"blocks":72,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332923,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.539475627 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/grub2-editenv","size":401448,"blocks":792,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360677,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-17 11:27:34.996854218 -0700","modify_time":"2019-08-08 04:31:09.000000000 -0700","change_time":"2019-10-16 09:21:49.081968414 -0700","birth_time":null,"access_time_epoch":1571336854,"access_time_epoch_utc":null,"modify_time_epoch":1565263869,"modify_time_epoch_utc":null,"change_time_epoch":1571242909,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/grub2-file","size":833888,"blocks":1632,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359991,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 04:31:09.000000000 -0700","modify_time":"2019-08-08 04:31:09.000000000 -0700","change_time":"2019-10-16 09:21:49.210887531 -0700","birth_time":null,"access_time_epoch":1565263869,"access_time_epoch_utc":null,"modify_time_epoch":1565263869,"modify_time_epoch_utc":null,"change_time_epoch":1571242909,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/grub2-fstest","size":1062640,"blocks":2080,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50391962,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 04:31:09.000000000 -0700","modify_time":"2019-08-08 04:31:09.000000000 -0700","change_time":"2019-10-16 09:22:13.976358243 -0700","birth_time":null,"access_time_epoch":1565263869,"access_time_epoch_utc":null,"modify_time_epoch":1565263869,"modify_time_epoch_utc":null,"change_time_epoch":1571242933,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/grub2-glue-efi","size":260920,"blocks":512,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50391963,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 04:31:09.000000000 -0700","modify_time":"2019-08-08 04:31:09.000000000 -0700","change_time":"2019-10-16 09:22:14.000192029 -0700","birth_time":null,"access_time_epoch":1565263869,"access_time_epoch_utc":null,"modify_time_epoch":1565263869,"modify_time_epoch_utc":null,"change_time_epoch":1571242934,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/grub2-kbdcomp","size":1668,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50391964,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 04:31:03.000000000 -0700","modify_time":"2019-08-08 04:31:03.000000000 -0700","change_time":"2019-10-16 09:22:14.001275383 -0700","birth_time":null,"access_time_epoch":1565263863,"access_time_epoch_utc":null,"modify_time_epoch":1565263863,"modify_time_epoch_utc":null,"change_time_epoch":1571242934,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/grub2-menulst2cfg","size":243520,"blocks":480,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359992,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 04:31:09.000000000 -0700","modify_time":"2019-08-08 04:31:09.000000000 -0700","change_time":"2019-10-16 09:21:49.231471256 -0700","birth_time":null,"access_time_epoch":1565263869,"access_time_epoch_utc":null,"modify_time_epoch":1565263869,"modify_time_epoch_utc":null,"change_time_epoch":1571242909,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/grub2-mkfont","size":290400,"blocks":568,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50391965,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 04:31:09.000000000 -0700","modify_time":"2019-08-08 04:31:09.000000000 -0700","change_time":"2019-10-16 09:22:14.024025815 -0700","birth_time":null,"access_time_epoch":1565263869,"access_time_epoch_utc":null,"modify_time_epoch":1565263869,"modify_time_epoch_utc":null,"change_time_epoch":1571242934,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/grub2-mkimage","size":384136,"blocks":752,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50391966,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 04:31:09.000000000 -0700","modify_time":"2019-08-08 04:31:09.000000000 -0700","change_time":"2019-10-16 09:22:14.059776495 -0700","birth_time":null,"access_time_epoch":1565263869,"access_time_epoch_utc":null,"modify_time_epoch":1565263869,"modify_time_epoch_utc":null,"change_time_epoch":1571242934,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/grub2-mklayout","size":267120,"blocks":528,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359998,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 04:31:09.000000000 -0700","modify_time":"2019-08-08 04:31:09.000000000 -0700","change_time":"2019-10-16 09:22:14.086860343 -0700","birth_time":null,"access_time_epoch":1565263869,"access_time_epoch_utc":null,"modify_time_epoch":1565263869,"modify_time_epoch_utc":null,"change_time_epoch":1571242934,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/grub2-mknetdir","size":435960,"blocks":856,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360012,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 04:31:09.000000000 -0700","modify_time":"2019-08-08 04:31:09.000000000 -0700","change_time":"2019-10-16 09:22:14.124777731 -0700","birth_time":null,"access_time_epoch":1565263869,"access_time_epoch_utc":null,"modify_time_epoch":1565263869,"modify_time_epoch_utc":null,"change_time_epoch":1571242934,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/grub2-mkpasswd-pbkdf2","size":273720,"blocks":536,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359954,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 04:31:09.000000000 -0700","modify_time":"2019-08-08 04:31:09.000000000 -0700","change_time":"2019-10-16 09:21:49.107968908 -0700","birth_time":null,"access_time_epoch":1565263869,"access_time_epoch_utc":null,"modify_time_epoch":1565263869,"modify_time_epoch_utc":null,"change_time_epoch":1571242909,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/grub2-mkrelpath","size":260568,"blocks":512,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359993,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 04:31:09.000000000 -0700","modify_time":"2019-08-08 04:31:09.000000000 -0700","change_time":"2019-10-16 09:21:49.245554857 -0700","birth_time":null,"access_time_epoch":1565263869,"access_time_epoch_utc":null,"modify_time_epoch":1565263869,"modify_time_epoch_utc":null,"change_time_epoch":1571242909,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/grub2-mkrescue","size":1025760,"blocks":2008,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360013,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 04:31:09.000000000 -0700","modify_time":"2019-08-08 04:31:09.000000000 -0700","change_time":"2019-10-16 09:22:14.221196229 -0700","birth_time":null,"access_time_epoch":1565263869,"access_time_epoch_utc":null,"modify_time_epoch":1565263869,"modify_time_epoch_utc":null,"change_time_epoch":1571242934,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/grub2-mkstandalone","size":538880,"blocks":1056,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360014,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 04:31:09.000000000 -0700","modify_time":"2019-08-08 04:31:09.000000000 -0700","change_time":"2019-10-16 09:22:14.267780448 -0700","birth_time":null,"access_time_epoch":1565263869,"access_time_epoch_utc":null,"modify_time_epoch":1565263869,"modify_time_epoch_utc":null,"change_time_epoch":1571242934,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/grub2-render-label","size":842904,"blocks":1648,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359994,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 04:31:09.000000000 -0700","modify_time":"2019-08-08 04:31:09.000000000 -0700","change_time":"2019-10-16 09:21:49.297555845 -0700","birth_time":null,"access_time_epoch":1565263869,"access_time_epoch_utc":null,"modify_time_epoch":1565263869,"modify_time_epoch_utc":null,"change_time_epoch":1571242909,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/grub2-script-check","size":298368,"blocks":584,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359995,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 04:31:09.000000000 -0700","modify_time":"2019-08-08 04:31:09.000000000 -0700","change_time":"2019-10-16 09:21:49.315972862 -0700","birth_time":null,"access_time_epoch":1565263869,"access_time_epoch_utc":null,"modify_time_epoch":1565263869,"modify_time_epoch_utc":null,"change_time_epoch":1571242909,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/grub2-syslinux2cfg","size":769672,"blocks":1504,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360016,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 04:31:09.000000000 -0700","modify_time":"2019-08-08 04:31:09.000000000 -0700","change_time":"2019-10-16 09:22:14.337115099 -0700","birth_time":null,"access_time_epoch":1565263869,"access_time_epoch_utc":null,"modify_time_epoch":1565263869,"modify_time_epoch_utc":null,"change_time_epoch":1571242934,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/gsettings","size":24376,"blocks":48,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338779,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 16:38:09.000000000 -0700","modify_time":"2019-08-08 16:38:09.000000000 -0700","change_time":"2019-10-16 09:21:32.686490122 -0700","birth_time":null,"access_time_epoch":1565307489,"access_time_epoch_utc":null,"modify_time_epoch":1565307489,"modify_time_epoch_utc":null,"change_time_epoch":1571242892,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/gsoelim","link_to":"soelim","size":6,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50339150,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.502684248 -0800","modify_time":"2019-08-15 10:53:20.637660743 -0700","change_time":"2019-08-15 10:53:20.637660743 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1565891600,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/gtar","link_to":"tar","size":3,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50359668,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.502684248 -0800","modify_time":"2019-08-15 10:53:27.467660877 -0700","change_time":"2019-08-15 10:53:27.467660877 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1565891607,"modify_time_epoch_utc":null,"change_time_epoch":1565891607,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/gtbl","link_to":"tbl","size":3,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50339151,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.502684248 -0800","modify_time":"2019-08-15 10:53:20.637660743 -0700","change_time":"2019-08-15 10:53:20.637660743 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1565891600,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/gtroff","link_to":"troff","size":5,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50339152,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.502684248 -0800","modify_time":"2019-08-15 10:53:20.637660743 -0700","change_time":"2019-08-15 10:53:20.637660743 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1565891600,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/gunzip","size":2253,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338644,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-04-10 17:01:18.000000000 -0700","modify_time":"2018-04-10 17:01:18.000000000 -0700","change_time":"2019-08-15 10:53:18.708660705 -0700","birth_time":null,"access_time_epoch":1523404878,"access_time_epoch_utc":null,"modify_time_epoch":1523404878,"modify_time_epoch_utc":null,"change_time_epoch":1565891598,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/gzexe","size":5931,"blocks":16,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338645,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-04-10 17:01:18.000000000 -0700","modify_time":"2018-04-10 17:01:18.000000000 -0700","change_time":"2019-08-15 10:53:18.708660705 -0700","birth_time":null,"access_time_epoch":1523404878,"access_time_epoch_utc":null,"modify_time_epoch":1523404878,"modify_time_epoch_utc":null,"change_time_epoch":1565891598,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/gzip","size":100800,"blocks":200,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338646,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:28.932999944 -0800","modify_time":"2018-04-10 17:01:18.000000000 -0700","change_time":"2019-08-15 10:53:18.712660705 -0700","birth_time":null,"access_time_epoch":1573324468,"access_time_epoch_utc":null,"modify_time_epoch":1523404878,"modify_time_epoch_utc":null,"change_time_epoch":1565891598,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/h2ph","size":28310,"blocks":56,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":51051553,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-01-21 14:09:44.000000000 -0800","modify_time":"2019-01-21 14:09:44.000000000 -0800","change_time":"2019-10-15 11:27:59.087410350 -0700","birth_time":null,"access_time_epoch":1548108584,"access_time_epoch_utc":null,"modify_time_epoch":1548108584,"modify_time_epoch_utc":null,"change_time_epoch":1571164079,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/hdsploader","size":11448,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50400587,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2016-11-05 11:34:04.000000000 -0700","modify_time":"2016-11-05 11:34:04.000000000 -0700","change_time":"2019-08-15 10:53:36.443729043 -0700","birth_time":null,"access_time_epoch":1478370844,"access_time_epoch_utc":null,"modify_time_epoch":1478370844,"modify_time_epoch_utc":null,"change_time_epoch":1565891616,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/head","size":41472,"blocks":88,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332924,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-22 16:17:02.007854934 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.540558981 -0700","birth_time":null,"access_time_epoch":1571786222,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/hexdump","size":32784,"blocks":72,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50358275,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.577511452 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/host","size":130136,"blocks":256,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50422070,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 05:16:33.000000000 -0700","modify_time":"2019-08-08 05:16:33.000000000 -0700","change_time":"2019-10-23 10:53:22.881983945 -0700","birth_time":null,"access_time_epoch":1565266593,"access_time_epoch_utc":null,"modify_time_epoch":1565266593,"modify_time_epoch_utc":null,"change_time_epoch":1571853202,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/hostid","size":28984,"blocks":64,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332925,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.545975751 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/hostname","size":15768,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359103,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 10:45:43.157296270 -0800","modify_time":"2014-06-09 14:48:44.000000000 -0700","change_time":"2019-08-15 10:53:22.912660788 -0700","birth_time":null,"access_time_epoch":1573497943,"access_time_epoch_utc":null,"modify_time_epoch":1402350524,"modify_time_epoch_utc":null,"change_time_epoch":1565891602,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/hostnamectl","size":325712,"blocks":640,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359984,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-09-13 11:21:23.000000000 -0700","modify_time":"2019-09-13 11:21:23.000000000 -0700","change_time":"2019-10-16 09:21:45.292396387 -0700","birth_time":null,"access_time_epoch":1568398883,"access_time_epoch_utc":null,"modify_time_epoch":1568398883,"modify_time_epoch_utc":null,"change_time_epoch":1571242905,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/i386","link_to":"setarch","size":7,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50358276,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.503767602 -0800","modify_time":"2019-10-16 09:21:42.577511452 -0700","change_time":"2019-10-16 09:21:42.577511452 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1571242902,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/iconv","size":60376,"blocks":120,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332745,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-06 16:23:28.000000000 -0700","modify_time":"2019-08-06 16:23:28.000000000 -0700","change_time":"2019-10-16 09:21:18.999396642 -0700","birth_time":null,"access_time_epoch":1565133808,"access_time_epoch_utc":null,"modify_time_epoch":1565133808,"modify_time_epoch_utc":null,"change_time_epoch":1571242878,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/id","size":37400,"blocks":80,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332926,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-10 17:21:10.871361454 -0800","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.547059105 -0700","birth_time":null,"access_time_epoch":1573435270,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/idiag-socket-details","size":11608,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339049,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.453660739 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/idn","size":33232,"blocks":72,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339255,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2015-11-21 09:00:47.000000000 -0800","modify_time":"2015-11-21 09:00:47.000000000 -0800","change_time":"2019-08-15 10:53:20.849660747 -0700","birth_time":null,"access_time_epoch":1448125247,"access_time_epoch_utc":null,"modify_time_epoch":1448125247,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/igawk","size":3188,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338324,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-06-28 14:52:45.000000000 -0700","modify_time":"2017-06-28 14:52:45.000000000 -0700","change_time":"2019-08-15 10:53:16.285660657 -0700","birth_time":null,"access_time_epoch":1498686765,"access_time_epoch_utc":null,"modify_time_epoch":1498686765,"modify_time_epoch_utc":null,"change_time_epoch":1565891596,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/info","size":271552,"blocks":536,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338316,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-04-10 18:03:35.000000000 -0700","modify_time":"2018-04-10 18:03:35.000000000 -0700","change_time":"2019-08-15 10:53:16.217660656 -0700","birth_time":null,"access_time_epoch":1523408615,"access_time_epoch_utc":null,"modify_time_epoch":1523408615,"modify_time_epoch_utc":null,"change_time_epoch":1565891596,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/infocmp","size":57416,"blocks":120,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332898,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-09-06 15:08:20.000000000 -0700","modify_time":"2017-09-06 15:08:20.000000000 -0700","change_time":"2019-08-15 10:53:08.880660512 -0700","birth_time":null,"access_time_epoch":1504735700,"access_time_epoch_utc":null,"modify_time_epoch":1504735700,"modify_time_epoch_utc":null,"change_time_epoch":1565891588,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/infokey","size":21984,"blocks":48,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338317,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-04-10 18:03:35.000000000 -0700","modify_time":"2018-04-10 18:03:35.000000000 -0700","change_time":"2019-08-15 10:53:16.219660656 -0700","birth_time":null,"access_time_epoch":1523408615,"access_time_epoch_utc":null,"modify_time_epoch":1523408615,"modify_time_epoch_utc":null,"change_time_epoch":1565891596,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/infotocap","link_to":"tic","size":3,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50332899,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.503767602 -0800","modify_time":"2019-08-15 10:53:08.880660512 -0700","change_time":"2019-08-15 10:53:08.880660512 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1565891588,"modify_time_epoch_utc":null,"change_time_epoch":1565891588,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/install","size":142944,"blocks":280,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332927,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-22 03:54:33.351560481 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.554642583 -0700","birth_time":null,"access_time_epoch":1571741673,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/ionice","size":24432,"blocks":48,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50358277,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 03:50:06.632335442 -0800","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.578594806 -0700","birth_time":null,"access_time_epoch":1573473006,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/iostat","size":62232,"blocks":128,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50426653,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 19:54:58.000000000 -0700","modify_time":"2019-08-08 19:54:58.000000000 -0700","change_time":"2019-10-29 23:35:07.185279478 -0700","birth_time":null,"access_time_epoch":1565319298,"access_time_epoch_utc":null,"modify_time_epoch":1565319298,"modify_time_epoch_utc":null,"change_time_epoch":1572417307,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/ipcalc","size":15416,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360588,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:34.473750014 -0800","modify_time":"2019-08-08 16:52:41.000000000 -0700","change_time":"2019-10-16 09:21:48.266202909 -0700","birth_time":null,"access_time_epoch":1573324474,"access_time_epoch_utc":null,"modify_time_epoch":1565308361,"modify_time_epoch_utc":null,"change_time_epoch":1571242908,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/ipcmk","size":24584,"blocks":56,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50358278,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.579678160 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/ipcrm","size":28520,"blocks":56,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50358279,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.580761514 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/ipcs","size":49520,"blocks":104,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50358280,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.586178283 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/iptables-xml","link_to":"/usr/sbin/xtables-multi","size":23,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50359095,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.504850957 -0800","modify_time":"2019-10-16 09:21:34.235686234 -0700","change_time":"2019-10-16 09:21:34.235686234 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1571242894,"modify_time_epoch_utc":null,"change_time_epoch":1571242894,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/isosize","size":24400,"blocks":48,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50358281,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.587261637 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/jobs","size":28,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332721,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 05:06:55.000000000 -0700","modify_time":"2019-08-08 05:06:55.000000000 -0700","change_time":"2019-10-16 09:21:18.572555195 -0700","birth_time":null,"access_time_epoch":1565266015,"access_time_epoch_utc":null,"modify_time_epoch":1565266015,"modify_time_epoch_utc":null,"change_time_epoch":1571242878,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/join","size":49920,"blocks":104,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332932,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.556809290 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/journalctl","size":550752,"blocks":1080,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359985,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-10 15:34:51.804364249 -0800","modify_time":"2019-09-13 11:21:23.000000000 -0700","change_time":"2019-10-16 09:21:45.315146819 -0700","birth_time":null,"access_time_epoch":1573428891,"access_time_epoch_utc":null,"modify_time_epoch":1568398883,"modify_time_epoch_utc":null,"change_time_epoch":1571242905,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/json_reformat","size":36752,"blocks":72,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50742403,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2014-06-09 22:00:23.000000000 -0700","modify_time":"2014-06-09 22:00:23.000000000 -0700","change_time":"2019-08-15 12:00:18.920592129 -0700","birth_time":null,"access_time_epoch":1402376423,"access_time_epoch_utc":null,"modify_time_epoch":1402376423,"modify_time_epoch_utc":null,"change_time_epoch":1565895618,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/json_verify","size":28176,"blocks":56,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50742404,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-15 14:32:23.244892145 -0700","modify_time":"2014-06-09 22:00:23.000000000 -0700","change_time":"2019-08-15 12:00:18.923592189 -0700","birth_time":null,"access_time_epoch":1565904743,"access_time_epoch_utc":null,"modify_time_epoch":1402376423,"modify_time_epoch_utc":null,"change_time_epoch":1565895618,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/kbdinfo","size":11528,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50572247,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-10-30 15:39:49.000000000 -0700","modify_time":"2018-10-30 15:39:49.000000000 -0700","change_time":"2019-08-15 10:53:46.182899710 -0700","birth_time":null,"access_time_epoch":1540939189,"access_time_epoch_utc":null,"modify_time_epoch":1540939189,"modify_time_epoch_utc":null,"change_time_epoch":1565891626,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/kbd_mode","size":11504,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50572237,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-21 13:17:59.953410785 -0700","modify_time":"2018-10-30 15:39:49.000000000 -0700","change_time":"2019-08-15 10:53:46.172899535 -0700","birth_time":null,"access_time_epoch":1571689079,"access_time_epoch_utc":null,"modify_time_epoch":1540939189,"modify_time_epoch_utc":null,"change_time_epoch":1565891626,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/kbdrate","size":11560,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50572248,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-10-30 15:39:49.000000000 -0700","modify_time":"2018-10-30 15:39:49.000000000 -0700","change_time":"2019-08-15 10:53:46.183899727 -0700","birth_time":null,"access_time_epoch":1540939189,"access_time_epoch_utc":null,"modify_time_epoch":1540939189,"modify_time_epoch_utc":null,"change_time_epoch":1565891626,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/kdumpctl","size":32623,"blocks":64,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50705028,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:34.661753827 -0800","modify_time":"2019-08-08 04:41:21.000000000 -0700","change_time":"2019-10-16 09:22:48.974106770 -0700","birth_time":null,"access_time_epoch":1573324474,"access_time_epoch_utc":null,"modify_time_epoch":1565264481,"modify_time_epoch_utc":null,"change_time_epoch":1571242968,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/kernel-install","size":4811,"blocks":16,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359986,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-09-13 11:19:23.000000000 -0700","modify_time":"2019-09-13 11:19:23.000000000 -0700","change_time":"2019-10-16 09:21:45.317313527 -0700","birth_time":null,"access_time_epoch":1568398763,"access_time_epoch_utc":null,"modify_time_epoch":1568398763,"modify_time_epoch_utc":null,"change_time_epoch":1571242905,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/kill","size":33608,"blocks":72,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50358282,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-10 03:50:01.553940261 -0800","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.592678407 -0700","birth_time":null,"access_time_epoch":1573386601,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/kmod","size":146688,"blocks":288,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359978,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:28.323999952 -0800","modify_time":"2019-08-08 17:05:58.000000000 -0700","change_time":"2019-10-16 09:21:44.614216830 -0700","birth_time":null,"access_time_epoch":1573324468,"access_time_epoch_utc":null,"modify_time_epoch":1565309158,"modify_time_epoch_utc":null,"change_time_epoch":1571242904,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/last","size":19568,"blocks":40,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339280,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2014-06-09 16:16:44.000000000 -0700","modify_time":"2014-06-09 16:16:44.000000000 -0700","change_time":"2019-08-15 10:53:21.089660752 -0700","birth_time":null,"access_time_epoch":1402355804,"access_time_epoch_utc":null,"modify_time_epoch":1402355804,"modify_time_epoch_utc":null,"change_time_epoch":1565891601,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/lastb","link_to":"last","size":4,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50339281,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.505934311 -0800","modify_time":"2019-08-15 10:53:21.089660752 -0700","change_time":"2019-08-15 10:53:21.089660752 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1565891601,"modify_time_epoch_utc":null,"change_time_epoch":1565891601,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/lastlog","size":19608,"blocks":40,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338549,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 19:51:01.000000000 -0700","modify_time":"2019-08-08 19:51:01.000000000 -0700","change_time":"2019-10-16 09:21:29.360593574 -0700","birth_time":null,"access_time_epoch":1565319061,"access_time_epoch_utc":null,"modify_time_epoch":1565319061,"modify_time_epoch_utc":null,"change_time_epoch":1571242889,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/lchfn","size":15896,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359494,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-04-12 11:44:23.000000000 -0700","modify_time":"2018-04-12 11:44:23.000000000 -0700","change_time":"2019-08-15 10:53:25.138660831 -0700","birth_time":null,"access_time_epoch":1523558663,"access_time_epoch_utc":null,"modify_time_epoch":1523558663,"modify_time_epoch_utc":null,"change_time_epoch":1565891605,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/lchsh","size":15864,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359495,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-04-12 11:44:23.000000000 -0700","modify_time":"2018-04-12 11:44:23.000000000 -0700","change_time":"2019-08-15 10:53:25.139660831 -0700","birth_time":null,"access_time_epoch":1523558663,"access_time_epoch_utc":null,"modify_time_epoch":1523558663,"modify_time_epoch_utc":null,"change_time_epoch":1565891605,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/ld","link_to":"/etc/alternatives/ld","size":20,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50356999,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.505934311 -0800","modify_time":"2019-10-16 09:21:38.839940413 -0700","change_time":"2019-10-16 09:21:38.839940413 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1571242898,"modify_time_epoch_utc":null,"change_time_epoch":1571242898,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/ld.bfd","size":1006224,"blocks":1968,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50356935,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 16:14:33.000000000 -0700","modify_time":"2019-08-08 16:14:33.000000000 -0700","change_time":"2019-10-16 09:21:37.822671078 -0700","birth_time":null,"access_time_epoch":1565306073,"access_time_epoch_utc":null,"modify_time_epoch":1565306073,"modify_time_epoch_utc":null,"change_time_epoch":1571242897,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/ldd","size":5302,"blocks":16,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332746,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-21 13:17:58.591387294 -0700","modify_time":"2019-08-06 16:03:05.000000000 -0700","change_time":"2019-10-16 09:21:18.999396642 -0700","birth_time":null,"access_time_epoch":1571689078,"access_time_epoch_utc":null,"modify_time_epoch":1565132585,"modify_time_epoch_utc":null,"change_time_epoch":1571242878,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/ld.gold","size":5354368,"blocks":10464,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50356998,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 16:14:33.000000000 -0700","modify_time":"2019-08-08 16:14:33.000000000 -0700","change_time":"2019-10-16 09:21:38.759772222 -0700","birth_time":null,"access_time_epoch":1565306073,"access_time_epoch_utc":null,"modify_time_epoch":1565306073,"modify_time_epoch_utc":null,"change_time_epoch":1571242898,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/less","size":158240,"blocks":312,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359238,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-10 15:34:51.815197806 -0800","modify_time":"2015-07-30 16:50:42.000000000 -0700","change_time":"2019-08-15 10:53:23.881660807 -0700","birth_time":null,"access_time_epoch":1573428891,"access_time_epoch_utc":null,"modify_time_epoch":1438300242,"modify_time_epoch_utc":null,"change_time_epoch":1565891603,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/lessecho","size":11376,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359239,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2015-07-30 16:50:42.000000000 -0700","modify_time":"2015-07-30 16:50:42.000000000 -0700","change_time":"2019-08-15 10:53:23.881660807 -0700","birth_time":null,"access_time_epoch":1438300242,"access_time_epoch_utc":null,"modify_time_epoch":1438300242,"modify_time_epoch_utc":null,"change_time_epoch":1565891603,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/lesskey","size":17056,"blocks":40,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359240,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2015-07-30 16:50:42.000000000 -0700","modify_time":"2015-07-30 16:50:42.000000000 -0700","change_time":"2019-08-15 10:53:23.882660807 -0700","birth_time":null,"access_time_epoch":1438300242,"access_time_epoch_utc":null,"modify_time_epoch":1438300242,"modify_time_epoch_utc":null,"change_time_epoch":1565891603,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/lesspipe.sh","size":2291,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359241,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2015-07-30 16:47:02.000000000 -0700","modify_time":"2015-07-30 16:47:02.000000000 -0700","change_time":"2019-08-15 10:53:23.882660807 -0700","birth_time":null,"access_time_epoch":1438300022,"access_time_epoch_utc":null,"modify_time_epoch":1438300022,"modify_time_epoch_utc":null,"change_time_epoch":1565891603,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/lexgrog","size":87128,"blocks":176,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50696671,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-10-30 13:26:36.000000000 -0700","modify_time":"2018-10-30 13:26:36.000000000 -0700","change_time":"2019-08-15 10:53:56.786085335 -0700","birth_time":null,"access_time_epoch":1540931196,"access_time_epoch_utc":null,"modify_time_epoch":1540931196,"modify_time_epoch_utc":null,"change_time_epoch":1565891636,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/link","size":28984,"blocks":64,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332933,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.557892644 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/linux32","link_to":"setarch","size":7,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50358283,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.507017665 -0800","modify_time":"2019-10-16 09:21:42.592678407 -0700","change_time":"2019-10-16 09:21:42.592678407 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1571242902,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/linux64","link_to":"setarch","size":7,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50358284,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.507017665 -0800","modify_time":"2019-10-16 09:21:42.592678407 -0700","change_time":"2019-10-16 09:21:42.593761761 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1571242902,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/linux-boot-prober","size":5995,"blocks":16,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360757,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2016-11-05 20:30:02.000000000 -0700","modify_time":"2016-11-05 20:30:02.000000000 -0700","change_time":"2019-08-15 10:53:33.074669703 -0700","birth_time":null,"access_time_epoch":1478403002,"access_time_epoch_utc":null,"modify_time_epoch":1478403002,"modify_time_epoch_utc":null,"change_time_epoch":1565891613,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/ln","size":58592,"blocks":120,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332934,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-21 13:17:58.627387915 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.564392768 -0700","birth_time":null,"access_time_epoch":1571689078,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/loadkeys","size":113184,"blocks":224,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50572238,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:28.948999944 -0800","modify_time":"2018-10-30 15:39:49.000000000 -0700","change_time":"2019-08-15 10:53:46.176899605 -0700","birth_time":null,"access_time_epoch":1573324468,"access_time_epoch_utc":null,"modify_time_epoch":1540939189,"modify_time_epoch_utc":null,"change_time_epoch":1565891626,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/loadunimap","size":24544,"blocks":48,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50572249,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-10-30 15:39:49.000000000 -0700","modify_time":"2018-10-30 15:39:49.000000000 -0700","change_time":"2019-08-15 10:53:46.184899745 -0700","birth_time":null,"access_time_epoch":1540939189,"access_time_epoch_utc":null,"modify_time_epoch":1540939189,"modify_time_epoch_utc":null,"change_time_epoch":1565891626,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/locale","size":38720,"blocks":80,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332747,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-10 17:39:49.470303075 -0800","modify_time":"2019-08-06 16:23:28.000000000 -0700","change_time":"2019-10-16 09:21:19.001563349 -0700","birth_time":null,"access_time_epoch":1573436389,"access_time_epoch_utc":null,"modify_time_epoch":1565133808,"modify_time_epoch_utc":null,"change_time_epoch":1571242879,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/localectl","size":334016,"blocks":656,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359987,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-09-13 11:21:23.000000000 -0700","modify_time":"2019-09-13 11:21:23.000000000 -0700","change_time":"2019-10-16 09:21:45.329230420 -0700","birth_time":null,"access_time_epoch":1568398883,"access_time_epoch_utc":null,"modify_time_epoch":1568398883,"modify_time_epoch_utc":null,"change_time_epoch":1571242905,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/localedef","size":322928,"blocks":632,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332748,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-06 16:23:28.000000000 -0700","modify_time":"2019-08-06 16:23:28.000000000 -0700","change_time":"2019-10-16 09:21:19.013480243 -0700","birth_time":null,"access_time_epoch":1565133808,"access_time_epoch_utc":null,"modify_time_epoch":1565133808,"modify_time_epoch_utc":null,"change_time_epoch":1571242879,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/logger","size":29312,"blocks":64,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50358285,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 12:01:01.543939744 -0800","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.594845115 -0700","birth_time":null,"access_time_epoch":1573502461,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/login","size":37248,"blocks":80,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50358286,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:38.962841058 -0800","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.600261884 -0700","birth_time":null,"access_time_epoch":1573324478,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/loginctl","size":501344,"blocks":984,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359988,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-21 13:18:10.882793113 -0700","modify_time":"2019-09-13 11:21:23.000000000 -0700","change_time":"2019-10-16 09:21:45.349814145 -0700","birth_time":null,"access_time_epoch":1571689090,"access_time_epoch_utc":null,"modify_time_epoch":1568398883,"modify_time_epoch_utc":null,"change_time_epoch":1571242905,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/logname","size":28984,"blocks":64,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332935,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.565476122 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/look","size":11544,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359451,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.600261884 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/ls","size":117608,"blocks":232,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332936,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 14:03:07.529095891 -0800","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.570892891 -0700","birth_time":null,"access_time_epoch":1573509787,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/lsattr","size":11600,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50696652,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 16:15:11.000000000 -0700","modify_time":"2019-08-08 16:15:11.000000000 -0700","change_time":"2019-10-16 09:22:59.200967815 -0700","birth_time":null,"access_time_epoch":1565306111,"access_time_epoch_utc":null,"modify_time_epoch":1565306111,"modify_time_epoch_utc":null,"change_time_epoch":1571242979,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/lsblk","size":81072,"blocks":160,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359452,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 11:02:12.824443669 -0800","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.607845362 -0700","birth_time":null,"access_time_epoch":1573326132,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/lscpu","size":62208,"blocks":128,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359453,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.610012070 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/lsinitrd","size":6410,"blocks":16,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359964,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:35.741775731 -0800","modify_time":"2019-08-08 16:14:24.000000000 -0700","change_time":"2019-10-16 09:21:44.152708058 -0700","birth_time":null,"access_time_epoch":1573324475,"access_time_epoch_utc":null,"modify_time_epoch":1565306064,"modify_time_epoch_utc":null,"change_time_epoch":1571242904,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/lsipc","size":62432,"blocks":128,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359454,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.616512193 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/lslocks","size":42000,"blocks":88,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359455,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.621928963 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/lslogins","size":54152,"blocks":112,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359488,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.623012317 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/lsmem","size":41760,"blocks":88,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359616,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.629512441 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/lsns","size":37304,"blocks":80,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359617,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.630595794 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/lsscsi","size":57832,"blocks":120,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359937,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-02 19:11:06.000000000 -0700","modify_time":"2017-08-02 19:11:06.000000000 -0700","change_time":"2019-08-15 10:53:29.640660920 -0700","birth_time":null,"access_time_epoch":1501726266,"access_time_epoch_utc":null,"modify_time_epoch":1501726266,"modify_time_epoch_utc":null,"change_time_epoch":1565891609,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/lua","size":15840,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338672,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2016-11-05 19:47:35.000000000 -0700","modify_time":"2016-11-05 19:47:35.000000000 -0700","change_time":"2019-08-15 10:53:18.815660707 -0700","birth_time":null,"access_time_epoch":1478400455,"access_time_epoch_utc":null,"modify_time_epoch":1478400455,"modify_time_epoch_utc":null,"change_time_epoch":1565891598,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/luac","size":121888,"blocks":240,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338673,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2016-11-05 19:47:35.000000000 -0700","modify_time":"2016-11-05 19:47:35.000000000 -0700","change_time":"2019-08-15 10:53:18.819660707 -0700","birth_time":null,"access_time_epoch":1478400455,"access_time_epoch_utc":null,"modify_time_epoch":1478400455,"modify_time_epoch_utc":null,"change_time_epoch":1565891598,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/lz4","size":124344,"blocks":248,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338835,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 17:45:35.000000000 -0700","modify_time":"2019-08-08 17:45:35.000000000 -0700","change_time":"2019-10-16 09:21:34.154434690 -0700","birth_time":null,"access_time_epoch":1565311535,"access_time_epoch_utc":null,"modify_time_epoch":1565311535,"modify_time_epoch_utc":null,"change_time_epoch":1571242894,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/lz4c","size":124344,"blocks":248,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50358682,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 17:45:35.000000000 -0700","modify_time":"2019-08-08 17:45:35.000000000 -0700","change_time":"2019-10-16 09:21:34.166351583 -0700","birth_time":null,"access_time_epoch":1565311535,"access_time_epoch_utc":null,"modify_time_epoch":1565311535,"modify_time_epoch_utc":null,"change_time_epoch":1571242894,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/lz4cat","link_to":"lz4","size":3,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50358683,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.508101020 -0800","modify_time":"2019-10-16 09:21:34.166351583 -0700","change_time":"2019-10-16 09:21:34.166351583 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1571242894,"modify_time_epoch_utc":null,"change_time_epoch":1571242894,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/machinectl","size":546704,"blocks":1072,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359990,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-09-13 11:21:23.000000000 -0700","modify_time":"2019-09-13 11:21:23.000000000 -0700","change_time":"2019-10-16 09:21:45.375814639 -0700","birth_time":null,"access_time_epoch":1568398883,"access_time_epoch_utc":null,"modify_time_epoch":1568398883,"modify_time_epoch_utc":null,"change_time_epoch":1571242905,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/mailq","link_to":"/etc/alternatives/mta-mailq","size":27,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50611098,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.508101020 -0800","modify_time":"2019-08-15 10:53:54.531045857 -0700","change_time":"2019-08-15 10:53:54.531045857 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1565891634,"modify_time_epoch_utc":null,"change_time_epoch":1565891634,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/mailq.postfix","link_to":"../../usr/sbin/sendmail.postfix","size":31,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50611080,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.508101020 -0800","modify_time":"2019-08-15 10:53:53.471027300 -0700","change_time":"2019-08-15 10:53:53.471027300 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1565891633,"modify_time_epoch_utc":null,"change_time_epoch":1565891633,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/make","size":182752,"blocks":360,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50357050,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-22 03:54:34.415415265 -0700","modify_time":"2019-08-08 17:46:49.000000000 -0700","change_time":"2019-10-16 09:21:42.062918338 -0700","birth_time":null,"access_time_epoch":1571741674,"access_time_epoch_utc":null,"modify_time_epoch":1565311609,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/makedb","size":19072,"blocks":40,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332749,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-06 16:23:28.000000000 -0700","modify_time":"2019-08-06 16:23:28.000000000 -0700","change_time":"2019-10-16 09:21:19.014563596 -0700","birth_time":null,"access_time_epoch":1565133808,"access_time_epoch_utc":null,"modify_time_epoch":1565133808,"modify_time_epoch_utc":null,"change_time_epoch":1571242879,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/man","size":102848,"blocks":208,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50696672,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-10 17:39:49.445385903 -0800","modify_time":"2018-10-30 13:26:36.000000000 -0700","change_time":"2019-08-15 10:53:56.790085405 -0700","birth_time":null,"access_time_epoch":1573436389,"access_time_epoch_utc":null,"modify_time_epoch":1540931196,"modify_time_epoch_utc":null,"change_time_epoch":1565891636,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/mandb","size":125184,"blocks":248,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50696673,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 03:50:06.634502148 -0800","modify_time":"2018-10-30 13:26:36.000000000 -0700","change_time":"2019-08-15 10:53:56.793085458 -0700","birth_time":null,"access_time_epoch":1573473006,"access_time_epoch_utc":null,"modify_time_epoch":1540931196,"modify_time_epoch_utc":null,"change_time_epoch":1565891636,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/manpath","size":33336,"blocks":72,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50696674,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-10-30 13:26:36.000000000 -0700","modify_time":"2018-10-30 13:26:36.000000000 -0700","change_time":"2019-08-15 10:53:56.795085493 -0700","birth_time":null,"access_time_epoch":1540931196,"access_time_epoch_utc":null,"modify_time_epoch":1540931196,"modify_time_epoch_utc":null,"change_time_epoch":1565891636,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/mapscrn","size":20344,"blocks":40,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50572250,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-10-30 15:39:49.000000000 -0700","modify_time":"2018-10-30 15:39:49.000000000 -0700","change_time":"2019-08-15 10:53:46.185899762 -0700","birth_time":null,"access_time_epoch":1540939189,"access_time_epoch_utc":null,"modify_time_epoch":1540939189,"modify_time_epoch_utc":null,"change_time_epoch":1565891626,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/mcookie","size":15808,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359618,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.631679148 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/md5sum","size":41504,"blocks":88,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332937,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.571976245 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/mdig","size":45328,"blocks":96,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50422071,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 05:16:33.000000000 -0700","modify_time":"2019-08-08 05:16:33.000000000 -0700","change_time":"2019-10-23 10:53:22.889567419 -0700","birth_time":null,"access_time_epoch":1565266593,"access_time_epoch_utc":null,"modify_time_epoch":1565266593,"modify_time_epoch_utc":null,"change_time_epoch":1571853202,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/mesg","size":11240,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339282,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2014-06-09 16:16:44.000000000 -0700","modify_time":"2014-06-09 16:16:44.000000000 -0700","change_time":"2019-08-15 10:53:21.091660752 -0700","birth_time":null,"access_time_epoch":1402355804,"access_time_epoch_utc":null,"modify_time_epoch":1402355804,"modify_time_epoch_utc":null,"change_time_epoch":1565891601,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/mixartloader","size":15744,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50400588,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2016-11-05 11:34:04.000000000 -0700","modify_time":"2016-11-05 11:34:04.000000000 -0700","change_time":"2019-08-15 10:53:36.444729061 -0700","birth_time":null,"access_time_epoch":1478370844,"access_time_epoch_utc":null,"modify_time_epoch":1478370844,"modify_time_epoch_utc":null,"change_time_epoch":1565891616,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/mkdir","size":79768,"blocks":160,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332938,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:31.295685559 -0800","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.580643077 -0700","birth_time":null,"access_time_epoch":1573324471,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/mkfifo","size":63056,"blocks":128,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332939,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-21 13:17:58.621387812 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.581726431 -0700","birth_time":null,"access_time_epoch":1571689078,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/mkinitrd","size":3013,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359965,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 16:14:24.000000000 -0700","modify_time":"2019-08-08 16:14:24.000000000 -0700","change_time":"2019-10-16 09:21:44.158124828 -0700","birth_time":null,"access_time_epoch":1565306064,"access_time_epoch_utc":null,"modify_time_epoch":1565306064,"modify_time_epoch_utc":null,"change_time_epoch":1571242904,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/mknod","size":67184,"blocks":136,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332941,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-21 13:17:59.915410130 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.583893138 -0700","birth_time":null,"access_time_epoch":1571689079,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/mktemp","size":41632,"blocks":88,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332942,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:30.267999927 -0800","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.590393262 -0700","birth_time":null,"access_time_epoch":1573324470,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/modutil","size":161480,"blocks":320,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359244,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-12 08:55:47.000000000 -0700","modify_time":"2019-08-12 08:55:47.000000000 -0700","change_time":"2019-10-16 09:23:00.629911643 -0700","birth_time":null,"access_time_epoch":1565625347,"access_time_epoch_utc":null,"modify_time_epoch":1565625347,"modify_time_epoch_utc":null,"change_time_epoch":1571242980,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/more","size":41112,"blocks":88,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359619,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 22:20:43.812066637 -0800","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.639262626 -0700","birth_time":null,"access_time_epoch":1573366843,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/mount","size":44264,"blocks":88,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359620,"links":1,"access":"4755","flags":"-rwsr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:29.052999943 -0800","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.640345980 -0700","birth_time":null,"access_time_epoch":1573324469,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/mountpoint","size":15688,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359621,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-17 11:27:35.221858494 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.641429334 -0700","birth_time":null,"access_time_epoch":1571336855,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/mpstat","size":53792,"blocks":112,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50426654,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 19:54:58.000000000 -0700","modify_time":"2019-08-08 19:54:58.000000000 -0700","change_time":"2019-10-29 23:35:07.190696244 -0700","birth_time":null,"access_time_epoch":1565319298,"access_time_epoch_utc":null,"modify_time_epoch":1565319298,"modify_time_epoch_utc":null,"change_time_epoch":1572417307,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/msgattrib","size":23920,"blocks":48,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359174,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-02 19:24:25.000000000 -0700","modify_time":"2017-08-02 19:24:25.000000000 -0700","change_time":"2019-08-15 10:53:23.688660803 -0700","birth_time":null,"access_time_epoch":1501727065,"access_time_epoch_utc":null,"modify_time_epoch":1501727065,"modify_time_epoch_utc":null,"change_time_epoch":1565891603,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/msgcat","size":23880,"blocks":48,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359175,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-02 19:24:25.000000000 -0700","modify_time":"2017-08-02 19:24:25.000000000 -0700","change_time":"2019-08-15 10:53:23.688660803 -0700","birth_time":null,"access_time_epoch":1501727065,"access_time_epoch_utc":null,"modify_time_epoch":1501727065,"modify_time_epoch_utc":null,"change_time_epoch":1565891603,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/msgcmp","size":24144,"blocks":48,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359176,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-02 19:24:25.000000000 -0700","modify_time":"2017-08-02 19:24:25.000000000 -0700","change_time":"2019-08-15 10:53:23.689660803 -0700","birth_time":null,"access_time_epoch":1501727065,"access_time_epoch_utc":null,"modify_time_epoch":1501727065,"modify_time_epoch_utc":null,"change_time_epoch":1565891603,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/msgcomm","size":23872,"blocks":48,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359177,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-02 19:24:25.000000000 -0700","modify_time":"2017-08-02 19:24:25.000000000 -0700","change_time":"2019-08-15 10:53:23.690660803 -0700","birth_time":null,"access_time_epoch":1501727065,"access_time_epoch_utc":null,"modify_time_epoch":1501727065,"modify_time_epoch_utc":null,"change_time_epoch":1565891603,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/msgconv","size":19760,"blocks":40,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359178,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-02 19:24:25.000000000 -0700","modify_time":"2017-08-02 19:24:25.000000000 -0700","change_time":"2019-08-15 10:53:23.690660803 -0700","birth_time":null,"access_time_epoch":1501727065,"access_time_epoch_utc":null,"modify_time_epoch":1501727065,"modify_time_epoch_utc":null,"change_time_epoch":1565891603,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/msgen","size":19752,"blocks":40,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359179,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-02 19:24:25.000000000 -0700","modify_time":"2017-08-02 19:24:25.000000000 -0700","change_time":"2019-08-15 10:53:23.691660803 -0700","birth_time":null,"access_time_epoch":1501727065,"access_time_epoch_utc":null,"modify_time_epoch":1501727065,"modify_time_epoch_utc":null,"change_time_epoch":1565891603,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/msgexec","size":15696,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359180,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-02 19:24:25.000000000 -0700","modify_time":"2017-08-02 19:24:25.000000000 -0700","change_time":"2019-08-15 10:53:23.691660803 -0700","birth_time":null,"access_time_epoch":1501727065,"access_time_epoch_utc":null,"modify_time_epoch":1501727065,"modify_time_epoch_utc":null,"change_time_epoch":1565891603,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/msgfilter","size":28224,"blocks":56,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359181,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-02 19:24:25.000000000 -0700","modify_time":"2017-08-02 19:24:25.000000000 -0700","change_time":"2019-08-15 10:53:23.692660803 -0700","birth_time":null,"access_time_epoch":1501727065,"access_time_epoch_utc":null,"modify_time_epoch":1501727065,"modify_time_epoch_utc":null,"change_time_epoch":1565891603,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/msgfmt","size":78984,"blocks":160,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359182,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-02 19:24:25.000000000 -0700","modify_time":"2017-08-02 19:24:25.000000000 -0700","change_time":"2019-08-15 10:53:23.695660803 -0700","birth_time":null,"access_time_epoch":1501727065,"access_time_epoch_utc":null,"modify_time_epoch":1501727065,"modify_time_epoch_utc":null,"change_time_epoch":1565891603,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/msggrep","size":36816,"blocks":72,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359183,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-02 19:24:25.000000000 -0700","modify_time":"2017-08-02 19:24:25.000000000 -0700","change_time":"2019-08-15 10:53:23.696660803 -0700","birth_time":null,"access_time_epoch":1501727065,"access_time_epoch_utc":null,"modify_time_epoch":1501727065,"modify_time_epoch_utc":null,"change_time_epoch":1565891603,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/msghack","size":12751,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359184,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-03-15 06:00:13.000000000 -0700","modify_time":"2017-03-15 06:00:13.000000000 -0700","change_time":"2019-08-15 10:53:23.697660803 -0700","birth_time":null,"access_time_epoch":1489582813,"access_time_epoch_utc":null,"modify_time_epoch":1489582813,"modify_time_epoch_utc":null,"change_time_epoch":1565891603,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/msginit","size":45440,"blocks":96,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359185,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-02 19:24:25.000000000 -0700","modify_time":"2017-08-02 19:24:25.000000000 -0700","change_time":"2019-08-15 10:53:23.698660803 -0700","birth_time":null,"access_time_epoch":1501727065,"access_time_epoch_utc":null,"modify_time_epoch":1501727065,"modify_time_epoch_utc":null,"change_time_epoch":1565891603,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/msgmerge","size":53848,"blocks":112,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359186,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-02 19:24:25.000000000 -0700","modify_time":"2017-08-02 19:24:25.000000000 -0700","change_time":"2019-08-15 10:53:23.700660803 -0700","birth_time":null,"access_time_epoch":1501727065,"access_time_epoch_utc":null,"modify_time_epoch":1501727065,"modify_time_epoch_utc":null,"change_time_epoch":1565891603,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/msgunfmt","size":32448,"blocks":64,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359187,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-02 19:24:25.000000000 -0700","modify_time":"2017-08-02 19:24:25.000000000 -0700","change_time":"2019-08-15 10:53:23.701660803 -0700","birth_time":null,"access_time_epoch":1501727065,"access_time_epoch_utc":null,"modify_time_epoch":1501727065,"modify_time_epoch_utc":null,"change_time_epoch":1565891603,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/msguniq","size":19776,"blocks":40,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359188,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-02 19:24:25.000000000 -0700","modify_time":"2017-08-02 19:24:25.000000000 -0700","change_time":"2019-08-15 10:53:23.701660803 -0700","birth_time":null,"access_time_epoch":1501727065,"access_time_epoch_utc":null,"modify_time_epoch":1501727065,"modify_time_epoch_utc":null,"change_time_epoch":1565891603,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/mv","size":130360,"blocks":256,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332943,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:30.430999925 -0800","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.597976739 -0700","birth_time":null,"access_time_epoch":1573324470,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/namei","size":28616,"blocks":56,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359622,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.646846103 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/ndptool","size":24192,"blocks":48,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50357048,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 17:25:58.000000000 -0700","modify_time":"2019-08-08 17:25:58.000000000 -0700","change_time":"2019-10-16 09:21:41.987083563 -0700","birth_time":null,"access_time_epoch":1565310358,"access_time_epoch_utc":null,"modify_time_epoch":1565310358,"modify_time_epoch_utc":null,"change_time_epoch":1571242901,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/neqn","size":271,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339153,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2014-06-09 13:17:13.000000000 -0700","modify_time":"2014-06-09 13:17:13.000000000 -0700","change_time":"2019-08-15 10:53:20.638660743 -0700","birth_time":null,"access_time_epoch":1402345033,"access_time_epoch_utc":null,"modify_time_epoch":1402345033,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/netstat","size":155008,"blocks":304,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50358898,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-10 08:21:10.907959846 -0800","modify_time":"2019-08-08 18:10:25.000000000 -0700","change_time":"2019-10-15 10:40:39.390276189 -0700","birth_time":null,"access_time_epoch":1573402870,"access_time_epoch_utc":null,"modify_time_epoch":1565313025,"modify_time_epoch_utc":null,"change_time_epoch":1571161239,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/newaliases","link_to":"/etc/alternatives/mta-newaliases","size":32,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50611099,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.510267729 -0800","modify_time":"2019-08-15 10:53:54.531045857 -0700","change_time":"2019-08-15 10:53:54.531045857 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1565891634,"modify_time_epoch_utc":null,"change_time_epoch":1565891634,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/newaliases.postfix","link_to":"../../usr/sbin/sendmail.postfix","size":31,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50611081,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.510267729 -0800","modify_time":"2019-08-15 10:53:53.471027300 -0700","change_time":"2019-08-15 10:53:53.471027300 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1565891633,"modify_time_epoch_utc":null,"change_time_epoch":1565891633,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/newgidmap","size":39000,"blocks":80,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338550,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 19:51:01.000000000 -0700","modify_time":"2019-08-08 19:51:01.000000000 -0700","change_time":"2019-10-16 09:21:29.366010344 -0700","birth_time":null,"access_time_epoch":1565319061,"access_time_epoch_utc":null,"modify_time_epoch":1565319061,"modify_time_epoch_utc":null,"change_time_epoch":1571242889,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/newgrp","size":41936,"blocks":88,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338551,"links":1,"access":"4755","flags":"-rwsr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 19:51:01.000000000 -0700","modify_time":"2019-08-08 19:51:01.000000000 -0700","change_time":"2019-10-16 09:21:29.372510467 -0700","birth_time":null,"access_time_epoch":1565319061,"access_time_epoch_utc":null,"modify_time_epoch":1565319061,"modify_time_epoch_utc":null,"change_time_epoch":1571242889,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/newuidmap","size":38976,"blocks":80,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338552,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 19:51:01.000000000 -0700","modify_time":"2019-08-08 19:51:01.000000000 -0700","change_time":"2019-10-16 09:21:29.379010591 -0700","birth_time":null,"access_time_epoch":1565319061,"access_time_epoch_utc":null,"modify_time_epoch":1565319061,"modify_time_epoch_utc":null,"change_time_epoch":1571242889,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nf-ct-add","size":12088,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339050,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.454660739 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nf-ct-list","size":16216,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339051,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.454660739 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nf-exp-add","size":16600,"blocks":40,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339052,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.455660739 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nf-exp-delete","size":16376,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339053,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.455660739 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nf-exp-list","size":12088,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339054,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.456660739 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nf-log","size":11504,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339055,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.456660739 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nf-monitor","size":11448,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339056,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.457660739 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nf-queue","size":11544,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339057,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.457660739 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nfsiostat-sysstat","size":53784,"blocks":112,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50426655,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 19:54:58.000000000 -0700","modify_time":"2019-08-08 19:54:58.000000000 -0700","change_time":"2019-10-29 23:35:07.196113009 -0700","birth_time":null,"access_time_epoch":1565319298,"access_time_epoch_utc":null,"modify_time_epoch":1565319298,"modify_time_epoch_utc":null,"change_time_epoch":1572417307,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/ngettext","size":36816,"blocks":72,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359189,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-02 19:24:25.000000000 -0700","modify_time":"2017-08-02 19:24:25.000000000 -0700","change_time":"2019-08-15 10:53:23.702660803 -0700","birth_time":null,"access_time_epoch":1501727065,"access_time_epoch_utc":null,"modify_time_epoch":1501727065,"modify_time_epoch_utc":null,"change_time_epoch":1565891603,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nice","size":33096,"blocks":72,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50333242,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 03:50:06.597668151 -0800","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.597976739 -0700","birth_time":null,"access_time_epoch":1573473006,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nisdomainname","link_to":"hostname","size":8,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50359136,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.511351083 -0800","modify_time":"2019-08-15 10:53:22.912660788 -0700","change_time":"2019-08-15 10:53:22.913660788 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1565891602,"modify_time_epoch_utc":null,"change_time_epoch":1565891602,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nl","size":41576,"blocks":88,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50333243,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.599060093 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nl-addr-add","size":11928,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339058,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.457660739 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nl-addr-delete","size":12016,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339059,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.458660739 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nl-addr-list","size":16256,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339060,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.459660739 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nl-class-add","size":11976,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":10314,"links":2,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.488660740 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nl-class-delete","size":11824,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":10315,"links":2,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.488660740 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nl-classid-lookup","size":11560,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":10317,"links":2,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.490660740 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nl-class-list","size":11752,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":10316,"links":2,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.489660740 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nl-cls-add","size":12040,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":10318,"links":2,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.490660740 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nl-cls-delete","size":11960,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":10319,"links":2,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.491660740 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nl-cls-list","size":11856,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":10320,"links":2,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.491660740 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nl-fib-lookup","size":11688,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339061,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.459660739 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nl-link-enslave","size":7216,"blocks":16,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339062,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.460660739 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nl-link-ifindex2name","size":7232,"blocks":16,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339063,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.460660739 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nl-link-list","size":11800,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":10321,"links":2,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.492660740 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nl-link-name2ifindex","size":7216,"blocks":16,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339064,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.461660739 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nl-link-release","size":7216,"blocks":16,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339065,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.461660739 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nl-link-set","size":11920,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339066,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.461660739 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nl-link-stats","size":11664,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339067,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.462660739 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nl-list-caches","size":11344,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339068,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.462660739 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nl-list-sockets","size":7232,"blocks":16,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339069,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.463660739 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nl-monitor","size":11464,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339070,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.463660739 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nl-neigh-add","size":11784,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339071,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.464660739 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nl-neigh-delete","size":11848,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339072,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.464660739 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nl-neigh-list","size":11736,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339073,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.465660739 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nl-neightbl-list","size":11536,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339074,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.465660739 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nl-pktloc-lookup","size":11632,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":10322,"links":2,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.493660740 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nl-qdisc-add","size":11880,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":10323,"links":2,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.493660740 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nl-qdisc-delete","size":11816,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":10324,"links":2,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.494660740 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nl-qdisc-list","size":11904,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":10325,"links":2,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.495660740 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nl-route-add","size":12016,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339075,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.465660739 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nl-route-delete","size":16240,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339076,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.466660739 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nl-route-get","size":11448,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339077,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.466660739 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nl-route-list","size":12056,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339078,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.467660739 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nl-rule-list","size":11568,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339079,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.467660739 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nl-tctree-list","size":11808,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339080,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.468660740 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nl-util-addr","size":7200,"blocks":16,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339081,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-03 12:48:51.000000000 -0700","modify_time":"2017-08-03 12:48:51.000000000 -0700","change_time":"2019-08-15 10:53:20.469660740 -0700","birth_time":null,"access_time_epoch":1501789731,"access_time_epoch_utc":null,"modify_time_epoch":1501789731,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nm","size":42472,"blocks":88,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50356936,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 16:14:33.000000000 -0700","modify_time":"2019-08-08 16:14:33.000000000 -0700","change_time":"2019-10-16 09:21:37.824837785 -0700","birth_time":null,"access_time_epoch":1565306073,"access_time_epoch_utc":null,"modify_time_epoch":1565306073,"modify_time_epoch_utc":null,"change_time_epoch":1571242897,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nmcli","size":824448,"blocks":1616,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360911,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:34.378748086 -0800","modify_time":"2019-09-13 11:04:57.000000000 -0700","change_time":"2019-10-16 09:22:00.435517542 -0700","birth_time":null,"access_time_epoch":1573324474,"access_time_epoch_utc":null,"modify_time_epoch":1568397897,"modify_time_epoch_utc":null,"change_time_epoch":1571242920,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nm-online","size":15528,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360910,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:32.109702069 -0800","modify_time":"2019-09-13 11:04:57.000000000 -0700","change_time":"2019-10-16 09:22:00.261097560 -0700","birth_time":null,"access_time_epoch":1573324472,"access_time_epoch_utc":null,"modify_time_epoch":1568397897,"modify_time_epoch_utc":null,"change_time_epoch":1571242920,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nmtui","size":658184,"blocks":1288,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50392029,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-09-13 11:04:57.000000000 -0700","modify_time":"2019-09-13 11:04:57.000000000 -0700","change_time":"2019-10-16 09:22:49.770371905 -0700","birth_time":null,"access_time_epoch":1568397897,"access_time_epoch_utc":null,"modify_time_epoch":1568397897,"modify_time_epoch_utc":null,"change_time_epoch":1571242969,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nmtui-connect","link_to":"nmtui","size":5,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50392019,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.513517792 -0800","modify_time":"2019-10-16 09:22:49.770371905 -0700","change_time":"2019-10-16 09:22:49.771455259 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1571242969,"modify_time_epoch_utc":null,"change_time_epoch":1571242969,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nmtui-edit","link_to":"nmtui","size":5,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50392020,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.513517792 -0800","modify_time":"2019-10-16 09:22:49.771455259 -0700","change_time":"2019-10-16 09:22:49.771455259 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1571242969,"modify_time_epoch_utc":null,"change_time_epoch":1571242969,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nmtui-hostname","link_to":"nmtui","size":5,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50392021,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.513517792 -0800","modify_time":"2019-10-16 09:22:49.771455259 -0700","change_time":"2019-10-16 09:22:49.771455259 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1571242969,"modify_time_epoch_utc":null,"change_time_epoch":1571242969,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nohup","size":33200,"blocks":72,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338444,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.602310155 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nproc","size":33144,"blocks":72,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338445,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.609893633 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nroff","size":3392,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339154,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-10 17:39:49.467053009 -0800","modify_time":"2014-06-09 13:17:15.000000000 -0700","change_time":"2019-08-15 10:53:20.638660743 -0700","birth_time":null,"access_time_epoch":1573436389,"access_time_epoch_utc":null,"modify_time_epoch":1402345035,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nsenter","size":28896,"blocks":64,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359623,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.647929457 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nslookup","size":134128,"blocks":264,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50422072,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-01 11:29:01.410358369 -0700","modify_time":"2019-08-08 05:16:33.000000000 -0700","change_time":"2019-10-23 10:53:22.905817721 -0700","birth_time":null,"access_time_epoch":1572632941,"access_time_epoch_utc":null,"modify_time_epoch":1565266593,"modify_time_epoch_utc":null,"change_time_epoch":1571853202,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nss-policy-check","size":11472,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359245,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-12 08:55:47.000000000 -0700","modify_time":"2019-08-12 08:55:47.000000000 -0700","change_time":"2019-10-16 09:23:00.636411766 -0700","birth_time":null,"access_time_epoch":1565625347,"access_time_epoch_utc":null,"modify_time_epoch":1565625347,"modify_time_epoch_utc":null,"change_time_epoch":1571242980,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/nsupdate","size":66616,"blocks":136,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50422073,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 05:16:33.000000000 -0700","modify_time":"2019-08-08 05:16:33.000000000 -0700","change_time":"2019-10-23 10:53:22.915567903 -0700","birth_time":null,"access_time_epoch":1565266593,"access_time_epoch_utc":null,"modify_time_epoch":1565266593,"modify_time_epoch_utc":null,"change_time_epoch":1571853202,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/numfmt","size":66264,"blocks":136,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338446,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.610976987 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/objcopy","size":232864,"blocks":456,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50356937,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 16:14:33.000000000 -0700","modify_time":"2019-08-08 16:14:33.000000000 -0700","change_time":"2019-10-16 09:21:37.840004741 -0700","birth_time":null,"access_time_epoch":1565306073,"access_time_epoch_utc":null,"modify_time_epoch":1565306073,"modify_time_epoch_utc":null,"change_time_epoch":1571242897,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/objdump","size":366336,"blocks":720,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50356938,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 16:14:33.000000000 -0700","modify_time":"2019-08-08 16:14:33.000000000 -0700","change_time":"2019-10-16 09:21:37.855171696 -0700","birth_time":null,"access_time_epoch":1565306073,"access_time_epoch_utc":null,"modify_time_epoch":1565306073,"modify_time_epoch_utc":null,"change_time_epoch":1571242897,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/od","size":66368,"blocks":136,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338447,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.614227048 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/oldfind","size":190880,"blocks":376,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338677,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-10-30 09:42:55.000000000 -0700","modify_time":"2018-10-30 09:42:55.000000000 -0700","change_time":"2019-08-15 10:53:18.857660708 -0700","birth_time":null,"access_time_epoch":1540917775,"access_time_epoch_utc":null,"modify_time_epoch":1540917775,"modify_time_epoch_utc":null,"change_time_epoch":1565891598,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/open","link_to":"openvt","size":6,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50572251,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.513517792 -0800","modify_time":"2019-08-15 10:53:46.185899762 -0700","change_time":"2019-08-15 10:53:46.185899762 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1565891626,"modify_time_epoch_utc":null,"change_time_epoch":1565891626,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/openssl","size":555288,"blocks":1088,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359723,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 18:38:34.000000000 -0700","modify_time":"2019-08-08 18:38:34.000000000 -0700","change_time":"2019-10-16 09:22:58.589956203 -0700","birth_time":null,"access_time_epoch":1565314714,"access_time_epoch_utc":null,"modify_time_epoch":1565314714,"modify_time_epoch_utc":null,"change_time_epoch":1571242978,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/openvt","size":20024,"blocks":40,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50572252,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-10-30 15:39:49.000000000 -0700","modify_time":"2018-10-30 15:39:49.000000000 -0700","change_time":"2019-08-15 10:53:46.186899780 -0700","birth_time":null,"access_time_epoch":1540939189,"access_time_epoch_utc":null,"modify_time_epoch":1540939189,"modify_time_epoch_utc":null,"change_time_epoch":1565891626,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/os-prober","size":5643,"blocks":16,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360758,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-15 10:56:06.609332845 -0700","modify_time":"2016-11-05 20:30:02.000000000 -0700","change_time":"2019-08-15 10:53:33.075669720 -0700","birth_time":null,"access_time_epoch":1565891766,"access_time_epoch_utc":null,"modify_time_epoch":1478403002,"modify_time_epoch_utc":null,"change_time_epoch":1565891613,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/p11-kit","size":32952,"blocks":72,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338411,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-15 10:53:17.052660672 -0700","modify_time":"2017-08-04 16:36:46.000000000 -0700","change_time":"2019-08-15 10:53:16.750660666 -0700","birth_time":null,"access_time_epoch":1565891597,"access_time_epoch_utc":null,"modify_time_epoch":1501889806,"modify_time_epoch_utc":null,"change_time_epoch":1565891596,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/passwd","size":27856,"blocks":56,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50696794,"links":1,"access":"4755","flags":"-rwsr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 18:39:01.000000000 -0700","modify_time":"2019-08-08 18:39:01.000000000 -0700","change_time":"2019-10-16 09:23:00.870416214 -0700","birth_time":null,"access_time_epoch":1565314741,"access_time_epoch_utc":null,"modify_time_epoch":1565314741,"modify_time_epoch_utc":null,"change_time_epoch":1571242980,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/paste","size":33128,"blocks":72,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338448,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.619643818 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/pathchk","size":33088,"blocks":72,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338449,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.620727172 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/pchrt","size":4024,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359148,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2016-11-05 14:51:47.000000000 -0700","modify_time":"2016-11-05 14:51:47.000000000 -0700","change_time":"2019-08-15 10:53:23.068660791 -0700","birth_time":null,"access_time_epoch":1478382707,"access_time_epoch_utc":null,"modify_time_epoch":1478382707,"modify_time_epoch_utc":null,"change_time_epoch":1565891603,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/perl","size":11488,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":51052240,"links":2,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-01-21 14:10:13.000000000 -0800","modify_time":"2019-01-21 14:10:13.000000000 -0800","change_time":"2019-10-15 11:28:01.079451865 -0700","birth_time":null,"access_time_epoch":1548108613,"access_time_epoch_utc":null,"modify_time_epoch":1548108613,"modify_time_epoch_utc":null,"change_time_epoch":1571164081,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/perl5.16.3","size":11488,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":51052240,"links":2,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-01-21 14:10:13.000000000 -0800","modify_time":"2019-01-21 14:10:13.000000000 -0800","change_time":"2019-10-15 11:28:01.079451865 -0700","birth_time":null,"access_time_epoch":1548108613,"access_time_epoch_utc":null,"modify_time_epoch":1548108613,"modify_time_epoch_utc":null,"change_time_epoch":1571164081,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/perlbug","size":44351,"blocks":88,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":51052241,"links":2,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-01-21 14:09:44.000000000 -0800","modify_time":"2019-01-21 14:09:44.000000000 -0800","change_time":"2019-10-15 11:28:01.081451907 -0700","birth_time":null,"access_time_epoch":1548108584,"access_time_epoch_utc":null,"modify_time_epoch":1548108584,"modify_time_epoch_utc":null,"change_time_epoch":1571164081,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/perldoc","size":203,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50422111,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2014-06-10 01:17:48.000000000 -0700","modify_time":"2014-06-10 01:17:48.000000000 -0700","change_time":"2019-10-15 11:27:57.751382506 -0700","birth_time":null,"access_time_epoch":1402388268,"access_time_epoch_utc":null,"modify_time_epoch":1402388268,"modify_time_epoch_utc":null,"change_time_epoch":1571164077,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/perlthanks","size":44351,"blocks":88,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":51052241,"links":2,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-01-21 14:09:44.000000000 -0800","modify_time":"2019-01-21 14:09:44.000000000 -0800","change_time":"2019-10-15 11:28:01.081451907 -0700","birth_time":null,"access_time_epoch":1548108584,"access_time_epoch_utc":null,"modify_time_epoch":1548108584,"modify_time_epoch_utc":null,"change_time_epoch":1571164081,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/pflags","size":2111,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338313,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 19:08:24.000000000 -0700","modify_time":"2019-08-08 19:08:24.000000000 -0700","change_time":"2019-10-16 09:21:35.991802946 -0700","birth_time":null,"access_time_epoch":1565316504,"access_time_epoch_utc":null,"modify_time_epoch":1565316504,"modify_time_epoch_utc":null,"change_time_epoch":1571242895,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/pgawk","size":428672,"blocks":840,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338325,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-06-28 14:52:48.000000000 -0700","modify_time":"2017-06-28 14:52:48.000000000 -0700","change_time":"2019-08-15 10:53:16.291660657 -0700","birth_time":null,"access_time_epoch":1498686768,"access_time_epoch_utc":null,"modify_time_epoch":1498686768,"modify_time_epoch_utc":null,"change_time_epoch":1565891596,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/pgrep","size":28336,"blocks":56,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50358301,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 18:55:49.000000000 -0700","modify_time":"2019-08-08 18:55:49.000000000 -0700","change_time":"2019-10-16 09:21:43.601280911 -0700","birth_time":null,"access_time_epoch":1565315749,"access_time_epoch_utc":null,"modify_time_epoch":1565315749,"modify_time_epoch_utc":null,"change_time_epoch":1571242903,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/pic","size":184736,"blocks":368,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339155,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2014-06-09 13:17:22.000000000 -0700","modify_time":"2014-06-09 13:17:22.000000000 -0700","change_time":"2019-08-15 10:53:20.644660743 -0700","birth_time":null,"access_time_epoch":1402345042,"access_time_epoch_utc":null,"modify_time_epoch":1402345042,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/piconv","size":8177,"blocks":16,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":51051499,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2014-06-09 19:49:27.000000000 -0700","modify_time":"2014-06-09 19:49:27.000000000 -0700","change_time":"2019-10-15 11:27:57.838384319 -0700","birth_time":null,"access_time_epoch":1402368567,"access_time_epoch_utc":null,"modify_time_epoch":1402368567,"modify_time_epoch_utc":null,"change_time_epoch":1571164077,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/pidstat","size":70536,"blocks":144,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50426656,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 19:54:58.000000000 -0700","modify_time":"2019-08-08 19:54:58.000000000 -0700","change_time":"2019-10-29 23:35:07.202613128 -0700","birth_time":null,"access_time_epoch":1565319298,"access_time_epoch_utc":null,"modify_time_epoch":1565319298,"modify_time_epoch_utc":null,"change_time_epoch":1572417307,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/pinentry","size":2602,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359728,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2016-11-04 11:02:54.000000000 -0700","modify_time":"2016-11-04 11:02:54.000000000 -0700","change_time":"2019-08-15 10:53:27.888660885 -0700","birth_time":null,"access_time_epoch":1478282574,"access_time_epoch_utc":null,"modify_time_epoch":1478282574,"modify_time_epoch_utc":null,"change_time_epoch":1565891607,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/pinentry-curses","size":50368,"blocks":104,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359729,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2016-11-05 08:49:27.000000000 -0700","modify_time":"2016-11-05 08:49:27.000000000 -0700","change_time":"2019-08-15 10:53:27.897660885 -0700","birth_time":null,"access_time_epoch":1478360967,"access_time_epoch_utc":null,"modify_time_epoch":1478360967,"modify_time_epoch_utc":null,"change_time_epoch":1565891607,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/ping","size":66176,"blocks":136,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360574,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-17 11:27:36.477882364 -0700","modify_time":"2017-08-04 01:01:04.000000000 -0700","change_time":"2019-08-15 10:53:32.455660975 -0700","birth_time":null,"access_time_epoch":1571336856,"access_time_epoch_utc":null,"modify_time_epoch":1501833664,"modify_time_epoch_utc":null,"change_time_epoch":1565891612,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/ping6","link_to":"ping","size":4,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50360575,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.515684501 -0800","modify_time":"2019-08-15 10:53:32.455660975 -0700","change_time":"2019-08-15 10:53:32.455660975 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1565891612,"modify_time_epoch_utc":null,"change_time_epoch":1565891612,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/pinky","size":37448,"blocks":80,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338450,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.622893880 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/pip3","size":407,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50419491,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-25 16:26:42.002912868 -0700","modify_time":"2019-08-07 10:05:35.000000000 -0700","change_time":"2019-10-15 11:09:07.560110312 -0700","birth_time":null,"access_time_epoch":1572046002,"access_time_epoch_utc":null,"modify_time_epoch":1565197535,"modify_time_epoch_utc":null,"change_time_epoch":1571162947,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/pip-3","link_to":"./pip-3.6","size":9,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50419489,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.515684501 -0800","modify_time":"2019-10-15 11:09:07.560110312 -0700","change_time":"2019-10-15 11:09:07.560110312 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1571162947,"modify_time_epoch_utc":null,"change_time_epoch":1571162947,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/pip-3.6","link_to":"./pip3.6","size":8,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50419490,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.515684501 -0800","modify_time":"2019-10-15 11:09:07.560110312 -0700","change_time":"2019-10-15 11:09:07.560110312 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1571162947,"modify_time_epoch_utc":null,"change_time_epoch":1571162947,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/pip3.6","size":407,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50419492,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-07 10:05:35.000000000 -0700","modify_time":"2019-08-07 10:05:35.000000000 -0700","change_time":"2019-10-15 11:09:07.561110333 -0700","birth_time":null,"access_time_epoch":1565197535,"access_time_epoch_utc":null,"modify_time_epoch":1565197535,"modify_time_epoch_utc":null,"change_time_epoch":1571162947,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/pk12util","size":97296,"blocks":192,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50696792,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-12 08:55:47.000000000 -0700","modify_time":"2019-08-12 08:55:47.000000000 -0700","change_time":"2019-10-16 09:23:00.648328659 -0700","birth_time":null,"access_time_epoch":1565625347,"access_time_epoch_utc":null,"modify_time_epoch":1565625347,"modify_time_epoch_utc":null,"change_time_epoch":1571242980,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/pkaction","size":15360,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50394396,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-09-13 11:10:09.000000000 -0700","modify_time":"2019-09-13 11:10:09.000000000 -0700","change_time":"2019-10-16 09:21:58.933989003 -0700","birth_time":null,"access_time_epoch":1568398209,"access_time_epoch_utc":null,"modify_time_epoch":1568398209,"modify_time_epoch_utc":null,"change_time_epoch":1571242918,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/pkcheck","size":23576,"blocks":48,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360552,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-09-13 11:10:09.000000000 -0700","modify_time":"2019-09-13 11:10:09.000000000 -0700","change_time":"2019-10-16 09:21:58.940489126 -0700","birth_time":null,"access_time_epoch":1568398209,"access_time_epoch_utc":null,"modify_time_epoch":1568398209,"modify_time_epoch_utc":null,"change_time_epoch":1571242918,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/pkexec","size":23576,"blocks":48,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360553,"links":1,"access":"4755","flags":"-rwsr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-09-13 11:10:09.000000000 -0700","modify_time":"2019-09-13 11:10:09.000000000 -0700","change_time":"2019-10-16 09:21:58.955656080 -0700","birth_time":null,"access_time_epoch":1568398209,"access_time_epoch_utc":null,"modify_time_epoch":1568398209,"modify_time_epoch_utc":null,"change_time_epoch":1571242918,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/pkg-config","size":45448,"blocks":96,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359329,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-21 13:17:59.169397263 -0700","modify_time":"2014-06-09 15:05:48.000000000 -0700","change_time":"2019-08-15 10:53:24.113660811 -0700","birth_time":null,"access_time_epoch":1571689079,"access_time_epoch_utc":null,"modify_time_epoch":1402351548,"modify_time_epoch_utc":null,"change_time_epoch":1565891604,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/pkill","size":28336,"blocks":56,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50358302,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 18:55:49.000000000 -0700","modify_time":"2019-08-08 18:55:49.000000000 -0700","change_time":"2019-10-16 09:21:43.605614326 -0700","birth_time":null,"access_time_epoch":1565315749,"access_time_epoch_utc":null,"modify_time_epoch":1565315749,"modify_time_epoch_utc":null,"change_time_epoch":1571242903,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/pkla-admin-identities","size":19688,"blocks":40,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360568,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-25 17:13:40.779314785 -0700","modify_time":"2014-06-09 15:08:33.000000000 -0700","change_time":"2019-08-15 10:53:32.427660974 -0700","birth_time":null,"access_time_epoch":1572048820,"access_time_epoch_utc":null,"modify_time_epoch":1402351713,"modify_time_epoch_utc":null,"change_time_epoch":1565891612,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/pkla-check-authorization","size":27960,"blocks":56,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360569,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-25 17:13:40.689396312 -0700","modify_time":"2014-06-09 15:08:33.000000000 -0700","change_time":"2019-08-15 10:53:32.428660975 -0700","birth_time":null,"access_time_epoch":1572048820,"access_time_epoch_utc":null,"modify_time_epoch":1402351713,"modify_time_epoch_utc":null,"change_time_epoch":1565891612,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/pkttyagent","size":19440,"blocks":40,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360554,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-01 11:36:43.016701766 -0700","modify_time":"2019-09-13 11:10:09.000000000 -0700","change_time":"2019-10-16 09:21:58.962156204 -0700","birth_time":null,"access_time_epoch":1572633403,"access_time_epoch_utc":null,"modify_time_epoch":1568398209,"modify_time_epoch_utc":null,"change_time_epoch":1571242918,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/pl2pm","size":4531,"blocks":16,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":51051554,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-01-21 14:09:22.000000000 -0800","modify_time":"2019-01-21 14:09:22.000000000 -0800","change_time":"2019-10-15 11:27:59.088410371 -0700","birth_time":null,"access_time_epoch":1548108562,"access_time_epoch_utc":null,"modify_time_epoch":1548108562,"modify_time_epoch_utc":null,"change_time_epoch":1571164079,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/pldd","size":14872,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332750,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-06 16:23:28.000000000 -0700","modify_time":"2019-08-06 16:23:28.000000000 -0700","change_time":"2019-10-16 09:21:19.015646950 -0700","birth_time":null,"access_time_epoch":1565133808,"access_time_epoch_utc":null,"modify_time_epoch":1565133808,"modify_time_epoch_utc":null,"change_time_epoch":1571242879,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/plymouth","size":40808,"blocks":80,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360051,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:29.983999931 -0800","modify_time":"2019-08-08 04:51:43.000000000 -0700","change_time":"2019-10-16 09:22:27.458697832 -0700","birth_time":null,"access_time_epoch":1573324469,"access_time_epoch_utc":null,"modify_time_epoch":1565265103,"modify_time_epoch_utc":null,"change_time_epoch":1571242947,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/pmap","size":28272,"blocks":56,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50358303,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 18:55:49.000000000 -0700","modify_time":"2019-08-08 18:55:49.000000000 -0700","change_time":"2019-10-16 09:21:43.611031096 -0700","birth_time":null,"access_time_epoch":1565315749,"access_time_epoch_utc":null,"modify_time_epoch":1565315749,"modify_time_epoch_utc":null,"change_time_epoch":1571242903,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/pod2html","size":4096,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":51051555,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-01-21 14:09:44.000000000 -0800","modify_time":"2019-01-21 14:09:44.000000000 -0800","change_time":"2019-10-15 11:27:59.088410371 -0700","birth_time":null,"access_time_epoch":1548108584,"access_time_epoch_utc":null,"modify_time_epoch":1548108584,"modify_time_epoch_utc":null,"change_time_epoch":1571164079,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/pod2man","size":13581,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50422103,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2014-06-09 12:56:13.000000000 -0700","modify_time":"2014-06-09 12:56:13.000000000 -0700","change_time":"2019-10-15 11:27:57.690381235 -0700","birth_time":null,"access_time_epoch":1402343773,"access_time_epoch_utc":null,"modify_time_epoch":1402343773,"modify_time_epoch_utc":null,"change_time_epoch":1571164077,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/pod2text","size":11004,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50422104,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2014-06-09 12:56:13.000000000 -0700","modify_time":"2014-06-09 12:56:13.000000000 -0700","change_time":"2019-10-15 11:27:57.693381297 -0700","birth_time":null,"access_time_epoch":1402343773,"access_time_epoch_utc":null,"modify_time_epoch":1402343773,"modify_time_epoch_utc":null,"change_time_epoch":1571164077,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/pod2usage","size":3755,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":51051508,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2014-06-10 01:56:18.000000000 -0700","modify_time":"2014-06-10 01:56:18.000000000 -0700","change_time":"2019-10-15 11:27:58.244392781 -0700","birth_time":null,"access_time_epoch":1402390578,"access_time_epoch_utc":null,"modify_time_epoch":1402390578,"modify_time_epoch_utc":null,"change_time_epoch":1571164078,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/post-grohtml","size":192048,"blocks":376,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339156,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2014-06-09 13:17:22.000000000 -0700","modify_time":"2014-06-09 13:17:22.000000000 -0700","change_time":"2019-08-15 10:53:20.650660743 -0700","birth_time":null,"access_time_epoch":1402345042,"access_time_epoch_utc":null,"modify_time_epoch":1402345042,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/powernow-k8-decode","size":6296,"blocks":16,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50392015,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-09-30 07:30:32.000000000 -0700","modify_time":"2019-09-30 07:30:32.000000000 -0700","change_time":"2019-10-16 09:22:58.999463984 -0700","birth_time":null,"access_time_epoch":1569853832,"access_time_epoch_utc":null,"modify_time_epoch":1569853832,"modify_time_epoch_utc":null,"change_time_epoch":1571242978,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/pr","size":66672,"blocks":136,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338451,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.629394003 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/preconv","size":41864,"blocks":88,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339158,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-10 17:39:49.463802943 -0800","modify_time":"2014-06-09 13:17:22.000000000 -0700","change_time":"2019-08-15 10:53:20.654660743 -0700","birth_time":null,"access_time_epoch":1573436389,"access_time_epoch_utc":null,"modify_time_epoch":1402345042,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/pre-grohtml","size":88312,"blocks":176,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339157,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2014-06-09 13:17:22.000000000 -0700","modify_time":"2014-06-09 13:17:22.000000000 -0700","change_time":"2019-08-15 10:53:20.653660743 -0700","birth_time":null,"access_time_epoch":1402345042,"access_time_epoch_utc":null,"modify_time_epoch":1402345042,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/printenv","size":28968,"blocks":64,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338452,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.630477357 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/printf","size":49768,"blocks":104,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338453,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-21 13:18:11.628805979 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.631560711 -0700","birth_time":null,"access_time_epoch":1571689091,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/prlimit","size":42184,"blocks":88,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359688,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.653346227 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/ps","size":100112,"blocks":200,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359242,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-10 07:12:50.562620231 -0800","modify_time":"2019-08-08 18:55:49.000000000 -0700","change_time":"2019-10-16 09:21:43.622947989 -0700","birth_time":null,"access_time_epoch":1573398770,"access_time_epoch_utc":null,"modify_time_epoch":1565315749,"modify_time_epoch_utc":null,"change_time_epoch":1571242903,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/psed","size":53329,"blocks":112,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":51052242,"links":2,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-01-21 14:09:44.000000000 -0800","modify_time":"2019-01-21 14:09:44.000000000 -0800","change_time":"2019-10-15 11:28:01.084451969 -0700","birth_time":null,"access_time_epoch":1548108584,"access_time_epoch_utc":null,"modify_time_epoch":1548108584,"modify_time_epoch_utc":null,"change_time_epoch":1571164081,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/psfaddtable","link_to":"psfxtable","size":9,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50572253,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.517851210 -0800","modify_time":"2019-08-15 10:53:46.186899780 -0700","change_time":"2019-08-15 10:53:46.186899780 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1565891626,"modify_time_epoch_utc":null,"change_time_epoch":1565891626,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/psfgettable","link_to":"psfxtable","size":9,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50572254,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.517851210 -0800","modify_time":"2019-08-15 10:53:46.186899780 -0700","change_time":"2019-08-15 10:53:46.186899780 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1565891626,"modify_time_epoch_utc":null,"change_time_epoch":1565891626,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/psfstriptable","link_to":"psfxtable","size":9,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50572255,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.517851210 -0800","modify_time":"2019-08-15 10:53:46.186899780 -0700","change_time":"2019-08-15 10:53:46.186899780 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1565891626,"modify_time_epoch_utc":null,"change_time_epoch":1565891626,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/psfxtable","size":20008,"blocks":40,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50572256,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-10-30 15:39:49.000000000 -0700","modify_time":"2018-10-30 15:39:49.000000000 -0700","change_time":"2019-08-15 10:53:46.187899797 -0700","birth_time":null,"access_time_epoch":1540939189,"access_time_epoch_utc":null,"modify_time_epoch":1540939189,"modify_time_epoch_utc":null,"change_time_epoch":1565891626,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/pstruct","size":36607,"blocks":72,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":51052239,"links":2,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-01-21 14:09:44.000000000 -0800","modify_time":"2019-01-21 14:09:44.000000000 -0800","change_time":"2019-10-15 11:28:01.078451844 -0700","birth_time":null,"access_time_epoch":1548108584,"access_time_epoch_utc":null,"modify_time_epoch":1548108584,"modify_time_epoch_utc":null,"change_time_epoch":1571164081,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/ptaskset","size":3891,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359149,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2016-11-05 14:51:47.000000000 -0700","modify_time":"2016-11-05 14:51:47.000000000 -0700","change_time":"2019-08-15 10:53:23.069660791 -0700","birth_time":null,"access_time_epoch":1478382707,"access_time_epoch_utc":null,"modify_time_epoch":1478382707,"modify_time_epoch_utc":null,"change_time_epoch":1565891603,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/ptx","size":66640,"blocks":136,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338454,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.638060835 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/pwd","size":33232,"blocks":72,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338455,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.639144189 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/pwdx","size":11536,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359718,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 18:55:49.000000000 -0700","modify_time":"2019-08-08 18:55:49.000000000 -0700","change_time":"2019-10-16 09:21:43.627281405 -0700","birth_time":null,"access_time_epoch":1565315749,"access_time_epoch_utc":null,"modify_time_epoch":1565315749,"modify_time_epoch_utc":null,"change_time_epoch":1571242903,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/pwmake","size":11392,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339021,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-04-10 20:58:18.000000000 -0700","modify_time":"2018-04-10 20:58:18.000000000 -0700","change_time":"2019-08-15 10:53:20.411660738 -0700","birth_time":null,"access_time_epoch":1523419098,"access_time_epoch_utc":null,"modify_time_epoch":1523419098,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/pwscore","size":11392,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339022,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-04-10 20:58:18.000000000 -0700","modify_time":"2018-04-10 20:58:18.000000000 -0700","change_time":"2019-08-15 10:53:20.412660738 -0700","birth_time":null,"access_time_epoch":1523419098,"access_time_epoch_utc":null,"modify_time_epoch":1523419098,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/pydoc","size":78,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359086,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-06 17:51:47.000000000 -0700","modify_time":"2019-08-06 17:51:47.000000000 -0700","change_time":"2019-10-16 09:21:32.291065940 -0700","birth_time":null,"access_time_epoch":1565139107,"access_time_epoch_utc":null,"modify_time_epoch":1565139107,"modify_time_epoch_utc":null,"change_time_epoch":1571242892,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/pydoc3","link_to":"pydoc3.6","size":8,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50420322,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.517851210 -0800","modify_time":"2019-10-15 11:09:08.289125193 -0700","change_time":"2019-10-15 11:09:08.289125193 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1571162948,"modify_time_epoch_utc":null,"change_time_epoch":1571162948,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/pydoc3.6","size":78,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50420323,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-07 10:29:25.000000000 -0700","modify_time":"2019-08-07 10:29:25.000000000 -0700","change_time":"2019-10-15 11:09:08.289125193 -0700","birth_time":null,"access_time_epoch":1565198965,"access_time_epoch_utc":null,"modify_time_epoch":1565198965,"modify_time_epoch_utc":null,"change_time_epoch":1571162948,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/python","link_to":"python2","size":7,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50359087,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 12:41:12.801607310 -0800","modify_time":"2019-10-16 09:21:32.291065940 -0700","change_time":"2019-10-16 09:21:32.292149294 -0700","birth_time":null,"access_time_epoch":1573504872,"access_time_epoch_utc":null,"modify_time_epoch":1571242892,"modify_time_epoch_utc":null,"change_time_epoch":1571242892,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/python2","link_to":"python2.7","size":9,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50359088,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.517851210 -0800","modify_time":"2019-10-16 09:21:32.292149294 -0700","change_time":"2019-10-16 09:21:32.292149294 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1571242892,"modify_time_epoch_utc":null,"change_time_epoch":1571242892,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/python2.7","size":7216,"blocks":16,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359089,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:30.802675561 -0800","modify_time":"2019-08-06 17:52:02.000000000 -0700","change_time":"2019-10-16 09:21:32.298649417 -0700","birth_time":null,"access_time_epoch":1573324470,"access_time_epoch_utc":null,"modify_time_epoch":1565139122,"modify_time_epoch_utc":null,"change_time_epoch":1571242892,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/python3","link_to":"python3.6","size":9,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50420324,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.351014629 -0800","modify_time":"2019-10-15 11:09:08.289125193 -0700","change_time":"2019-10-15 11:09:08.289125193 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1571162948,"modify_time_epoch_utc":null,"change_time_epoch":1571162948,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/python3.6","size":11408,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50420329,"links":2,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.351014629 -0800","modify_time":"2019-08-07 10:29:51.000000000 -0700","change_time":"2019-10-15 11:09:08.304125499 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1565198991,"modify_time_epoch_utc":null,"change_time_epoch":1571162948,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/python3.6m","size":11408,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50420329,"links":2,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.351014629 -0800","modify_time":"2019-08-07 10:29:51.000000000 -0700","change_time":"2019-10-15 11:09:08.304125499 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1565198991,"modify_time_epoch_utc":null,"change_time_epoch":1571162948,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/pyvenv","link_to":"pyvenv-3.6","size":10,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50420325,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.518934564 -0800","modify_time":"2019-10-15 11:09:08.289125193 -0700","change_time":"2019-10-15 11:09:08.290125213 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1571162948,"modify_time_epoch_utc":null,"change_time_epoch":1571162948,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/pyvenv-3.6","size":435,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50420326,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-07 10:29:25.000000000 -0700","modify_time":"2019-08-07 10:29:25.000000000 -0700","change_time":"2019-10-15 11:09:08.290125213 -0700","birth_time":null,"access_time_epoch":1565198965,"access_time_epoch_utc":null,"modify_time_epoch":1565198965,"modify_time_epoch_utc":null,"change_time_epoch":1571162948,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/ranlib","size":62744,"blocks":128,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50356939,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 16:14:33.000000000 -0700","modify_time":"2019-08-08 16:14:33.000000000 -0700","change_time":"2019-10-16 09:21:37.857338403 -0700","birth_time":null,"access_time_epoch":1565306073,"access_time_epoch_utc":null,"modify_time_epoch":1565306073,"modify_time_epoch_utc":null,"change_time_epoch":1571242897,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/raw","size":15640,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359689,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.653346227 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/read","size":28,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332722,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 05:06:55.000000000 -0700","modify_time":"2019-08-08 05:06:55.000000000 -0700","change_time":"2019-10-16 09:21:18.572555195 -0700","birth_time":null,"access_time_epoch":1565266015,"access_time_epoch_utc":null,"modify_time_epoch":1565266015,"modify_time_epoch_utc":null,"change_time_epoch":1571242878,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/readelf","size":517992,"blocks":1016,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50356940,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 16:14:33.000000000 -0700","modify_time":"2019-08-08 16:14:33.000000000 -0700","change_time":"2019-10-16 09:21:37.882255544 -0700","birth_time":null,"access_time_epoch":1565306073,"access_time_epoch_utc":null,"modify_time_epoch":1565306073,"modify_time_epoch_utc":null,"change_time_epoch":1571242897,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/readlink","size":41800,"blocks":88,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338456,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-21 13:17:58.544386484 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.640227542 -0700","birth_time":null,"access_time_epoch":1571689078,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/realpath","size":62696,"blocks":128,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338457,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-16 09:21:37.147741583 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.646727666 -0700","birth_time":null,"access_time_epoch":1571242897,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/recode-sr-latin","size":15648,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359190,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-02 19:24:25.000000000 -0700","modify_time":"2017-08-02 19:24:25.000000000 -0700","change_time":"2019-08-15 10:53:23.703660803 -0700","birth_time":null,"access_time_epoch":1501727065,"access_time_epoch_utc":null,"modify_time_epoch":1501727065,"modify_time_epoch_utc":null,"change_time_epoch":1565891603,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/rename","size":11528,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359690,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.654429581 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/renice","size":11480,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359691,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 03:50:06.631252090 -0800","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.655512935 -0700","birth_time":null,"access_time_epoch":1573473006,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/reset","link_to":"tset","size":4,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50332900,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.518934564 -0800","modify_time":"2019-08-15 10:53:08.880660512 -0700","change_time":"2019-08-15 10:53:08.880660512 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1565891588,"modify_time_epoch_utc":null,"change_time_epoch":1565891588,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/resizecons","size":20176,"blocks":40,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50572257,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-10-30 15:39:49.000000000 -0700","modify_time":"2018-10-30 15:39:49.000000000 -0700","change_time":"2019-08-15 10:53:46.188899815 -0700","birth_time":null,"access_time_epoch":1540939189,"access_time_epoch_utc":null,"modify_time_epoch":1540939189,"modify_time_epoch_utc":null,"change_time_epoch":1565891626,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/rev","size":11528,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359699,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.655512935 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/rm","size":62872,"blocks":128,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338458,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 10:45:43.173546574 -0800","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.647811020 -0700","birth_time":null,"access_time_epoch":1573497943,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/rmail","link_to":"/etc/alternatives/mta-rmail","size":27,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50611101,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.520017919 -0800","modify_time":"2019-08-15 10:53:54.531045857 -0700","change_time":"2019-08-15 10:53:54.531045857 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1565891634,"modify_time_epoch_utc":null,"change_time_epoch":1565891634,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/rmail.postfix","size":262,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50611082,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-10-30 09:50:24.000000000 -0700","modify_time":"2018-10-30 09:50:24.000000000 -0700","change_time":"2019-08-15 10:53:53.471027300 -0700","birth_time":null,"access_time_epoch":1540918224,"access_time_epoch_utc":null,"modify_time_epoch":1540918224,"modify_time_epoch_utc":null,"change_time_epoch":1565891633,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/rmdir","size":45528,"blocks":96,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338459,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-10 23:53:01.545903135 -0800","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.649977728 -0700","birth_time":null,"access_time_epoch":1573458781,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/rpcgen","size":93144,"blocks":184,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332751,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-06 16:23:28.000000000 -0700","modify_time":"2019-08-06 16:23:28.000000000 -0700","change_time":"2019-10-16 09:21:19.019980366 -0700","birth_time":null,"access_time_epoch":1565133808,"access_time_epoch_utc":null,"modify_time_epoch":1565133808,"modify_time_epoch_utc":null,"change_time_epoch":1571242879,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/rpm","size":16208,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50357006,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-06 15:50:50.000000000 -0700","modify_time":"2019-08-06 15:50:50.000000000 -0700","change_time":"2019-10-16 09:21:39.668706165 -0700","birth_time":null,"access_time_epoch":1565131850,"access_time_epoch_utc":null,"modify_time_epoch":1565131850,"modify_time_epoch_utc":null,"change_time_epoch":1571242899,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/rpm2cpio","size":11496,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50357007,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-06 15:50:50.000000000 -0700","modify_time":"2019-08-06 15:50:50.000000000 -0700","change_time":"2019-10-16 09:21:39.674122935 -0700","birth_time":null,"access_time_epoch":1565131850,"access_time_epoch_utc":null,"modify_time_epoch":1565131850,"modify_time_epoch_utc":null,"change_time_epoch":1571242899,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/rpmdb","size":12096,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50357008,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-06 15:50:50.000000000 -0700","modify_time":"2019-08-06 15:50:50.000000000 -0700","change_time":"2019-10-16 09:21:39.675206289 -0700","birth_time":null,"access_time_epoch":1565131850,"access_time_epoch_utc":null,"modify_time_epoch":1565131850,"modify_time_epoch_utc":null,"change_time_epoch":1571242899,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/rpmkeys","size":12096,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50357009,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-06 15:50:50.000000000 -0700","modify_time":"2019-08-06 15:50:50.000000000 -0700","change_time":"2019-10-16 09:21:39.676289642 -0700","birth_time":null,"access_time_epoch":1565131850,"access_time_epoch_utc":null,"modify_time_epoch":1565131850,"modify_time_epoch_utc":null,"change_time_epoch":1571242899,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/rpmquery","link_to":"../../bin/rpm","size":13,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50357010,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.520017919 -0800","modify_time":"2019-10-16 09:21:39.676289642 -0700","change_time":"2019-10-16 09:21:39.676289642 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1571242899,"modify_time_epoch_utc":null,"change_time_epoch":1571242899,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/rpmverify","link_to":"../../bin/rpm","size":13,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50357011,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.520017919 -0800","modify_time":"2019-10-16 09:21:39.676289642 -0700","change_time":"2019-10-16 09:21:39.676289642 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1571242899,"modify_time_epoch_utc":null,"change_time_epoch":1571242899,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/rsync","size":495896,"blocks":976,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":51052249,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-04-25 10:17:07.000000000 -0700","modify_time":"2019-04-25 10:17:07.000000000 -0700","change_time":"2019-10-15 11:28:01.227454950 -0700","birth_time":null,"access_time_epoch":1556212627,"access_time_epoch_utc":null,"modify_time_epoch":1556212627,"modify_time_epoch_utc":null,"change_time_epoch":1571164081,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/rsyslog-recover-qi.pl","size":6098,"blocks":16,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50610503,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-09-13 11:14:24.000000000 -0700","modify_time":"2019-09-13 11:14:24.000000000 -0700","change_time":"2019-10-16 09:22:52.701927624 -0700","birth_time":null,"access_time_epoch":1568398464,"access_time_epoch_utc":null,"modify_time_epoch":1568398464,"modify_time_epoch_utc":null,"change_time_epoch":1571242972,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/runcon","size":33248,"blocks":72,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338460,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.655394498 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/run-parts","size":2086,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360782,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 12:01:01.536356267 -0800","modify_time":"2014-06-09 15:14:31.000000000 -0700","change_time":"2019-08-15 10:53:33.570678439 -0700","birth_time":null,"access_time_epoch":1573502461,"access_time_epoch_utc":null,"modify_time_epoch":1402352071,"modify_time_epoch_utc":null,"change_time_epoch":1565891613,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/rvi","link_to":"vi","size":2,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50338315,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.520017919 -0800","modify_time":"2019-10-16 09:21:42.248171859 -0700","change_time":"2019-10-16 09:21:42.249255213 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1571242902,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/rview","link_to":"vi","size":2,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50359447,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.520017919 -0800","modify_time":"2019-10-16 09:21:42.249255213 -0700","change_time":"2019-10-16 09:21:42.249255213 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1571242902,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/s2p","size":53329,"blocks":112,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":51052242,"links":2,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-01-21 14:09:44.000000000 -0800","modify_time":"2019-01-21 14:09:44.000000000 -0800","change_time":"2019-10-15 11:28:01.084451969 -0700","birth_time":null,"access_time_epoch":1548108584,"access_time_epoch_utc":null,"modify_time_epoch":1548108584,"modify_time_epoch_utc":null,"change_time_epoch":1571164081,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/sadf","size":172488,"blocks":344,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50426657,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-10 15:42:07.249449913 -0800","modify_time":"2019-08-08 19:54:58.000000000 -0700","change_time":"2019-10-29 23:35:07.223196838 -0700","birth_time":null,"access_time_epoch":1573429327,"access_time_epoch_utc":null,"modify_time_epoch":1565319298,"modify_time_epoch_utc":null,"change_time_epoch":1572417307,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/sandbox","size":17939,"blocks":40,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50382823,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 18:47:27.000000000 -0700","modify_time":"2019-08-08 18:47:27.000000000 -0700","change_time":"2019-10-16 09:22:16.319652781 -0700","birth_time":null,"access_time_epoch":1565315247,"access_time_epoch_utc":null,"modify_time_epoch":1565315247,"modify_time_epoch_utc":null,"change_time_epoch":1571242936,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/sar","size":97656,"blocks":192,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50426658,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-10 23:53:01.470068317 -0800","modify_time":"2019-08-08 19:54:58.000000000 -0700","change_time":"2019-10-29 23:35:07.235113722 -0700","birth_time":null,"access_time_epoch":1573458781,"access_time_epoch_utc":null,"modify_time_epoch":1565319298,"modify_time_epoch_utc":null,"change_time_epoch":1572417307,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/scp","size":91384,"blocks":184,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50705035,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 09:28:45.953755883 -0800","modify_time":"2019-08-08 18:40:47.000000000 -0700","change_time":"2019-10-16 09:22:49.357614060 -0700","birth_time":null,"access_time_epoch":1573493325,"access_time_epoch_utc":null,"modify_time_epoch":1565314847,"modify_time_epoch_utc":null,"change_time_epoch":1571242969,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/script","size":20080,"blocks":40,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359700,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.662013058 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/scriptreplay","size":15656,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359701,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.663096412 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/sdiff","size":49640,"blocks":104,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338703,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 16:11:12.000000000 -0700","modify_time":"2019-08-08 16:11:12.000000000 -0700","change_time":"2019-10-16 09:21:32.385317731 -0700","birth_time":null,"access_time_epoch":1565305872,"access_time_epoch_utc":null,"modify_time_epoch":1565305872,"modify_time_epoch_utc":null,"change_time_epoch":1571242892,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/secon","size":24640,"blocks":56,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360473,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 18:47:31.000000000 -0700","modify_time":"2019-08-08 18:47:31.000000000 -0700","change_time":"2019-10-16 09:21:47.538189072 -0700","birth_time":null,"access_time_epoch":1565315251,"access_time_epoch_utc":null,"modify_time_epoch":1565315251,"modify_time_epoch_utc":null,"change_time_epoch":1571242907,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/sed","size":76016,"blocks":152,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338357,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:28.830999945 -0800","modify_time":"2014-06-09 18:01:50.000000000 -0700","change_time":"2019-08-15 10:53:16.600660663 -0700","birth_time":null,"access_time_epoch":1573324468,"access_time_epoch_utc":null,"modify_time_epoch":1402362110,"modify_time_epoch_utc":null,"change_time_epoch":1565891596,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/sedismod","size":255408,"blocks":504,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50742505,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-10-30 14:48:39.000000000 -0700","modify_time":"2018-10-30 14:48:39.000000000 -0700","change_time":"2019-08-15 12:00:20.039614240 -0700","birth_time":null,"access_time_epoch":1540936119,"access_time_epoch_utc":null,"modify_time_epoch":1540936119,"modify_time_epoch_utc":null,"change_time_epoch":1565895620,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/sedispol","size":180552,"blocks":360,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50742506,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-10-30 14:48:39.000000000 -0700","modify_time":"2018-10-30 14:48:39.000000000 -0700","change_time":"2019-08-15 12:00:20.051614477 -0700","birth_time":null,"access_time_epoch":1540936119,"access_time_epoch_utc":null,"modify_time_epoch":1540936119,"modify_time_epoch_utc":null,"change_time_epoch":1565895620,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/semodule_package","size":15672,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50382824,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 18:47:31.000000000 -0700","modify_time":"2019-08-08 18:47:31.000000000 -0700","change_time":"2019-10-16 09:22:16.325069551 -0700","birth_time":null,"access_time_epoch":1565315251,"access_time_epoch_utc":null,"modify_time_epoch":1565315251,"modify_time_epoch_utc":null,"change_time_epoch":1571242936,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/seq","size":49640,"blocks":104,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338461,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.657561205 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/setarch","size":15640,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359702,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.664179766 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/setfacl","size":37616,"blocks":80,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359695,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-04-10 17:41:22.000000000 -0700","modify_time":"2018-04-10 17:41:22.000000000 -0700","change_time":"2019-08-15 10:53:27.671660881 -0700","birth_time":null,"access_time_epoch":1523407282,"access_time_epoch_utc":null,"modify_time_epoch":1523407282,"modify_time_epoch_utc":null,"change_time_epoch":1565891607,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/setfont","size":41432,"blocks":88,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50572239,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:28.880999945 -0800","modify_time":"2018-10-30 15:39:49.000000000 -0700","change_time":"2019-08-15 10:53:46.178899640 -0700","birth_time":null,"access_time_epoch":1573324468,"access_time_epoch_utc":null,"modify_time_epoch":1540939189,"modify_time_epoch_utc":null,"change_time_epoch":1565891626,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/setkeycodes","size":11496,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50572258,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-10-30 15:39:49.000000000 -0700","modify_time":"2018-10-30 15:39:49.000000000 -0700","change_time":"2019-08-15 10:53:46.189899832 -0700","birth_time":null,"access_time_epoch":1540939189,"access_time_epoch_utc":null,"modify_time_epoch":1540939189,"modify_time_epoch_utc":null,"change_time_epoch":1565891626,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/setleds","size":11520,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50572259,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-10-30 15:39:49.000000000 -0700","modify_time":"2018-10-30 15:39:49.000000000 -0700","change_time":"2019-08-15 10:53:46.190899850 -0700","birth_time":null,"access_time_epoch":1540939189,"access_time_epoch_utc":null,"modify_time_epoch":1540939189,"modify_time_epoch_utc":null,"change_time_epoch":1565891626,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/setmetamode","size":11568,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50572260,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-10-30 15:39:49.000000000 -0700","modify_time":"2018-10-30 15:39:49.000000000 -0700","change_time":"2019-08-15 10:53:46.191899867 -0700","birth_time":null,"access_time_epoch":1540939189,"access_time_epoch_utc":null,"modify_time_epoch":1540939189,"modify_time_epoch_utc":null,"change_time_epoch":1565891626,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/setpriv","size":36928,"blocks":80,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359703,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.665263120 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/setsid","size":11496,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359704,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-21 13:18:11.345801098 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.666346474 -0700","birth_time":null,"access_time_epoch":1571689091,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/setterm","size":28144,"blocks":56,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359705,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.673929951 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/setup-nsssysinit","link_to":"setup-nsssysinit.sh","size":19,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50338833,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.521101273 -0800","modify_time":"2019-10-16 09:21:33.792594478 -0700","change_time":"2019-10-16 09:21:33.798011248 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1571242893,"modify_time_epoch_utc":null,"change_time_epoch":1571242893,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/setup-nsssysinit.sh","size":1539,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338834,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-12 08:55:23.000000000 -0700","modify_time":"2019-08-12 08:55:23.000000000 -0700","change_time":"2019-10-16 09:21:33.802344664 -0700","birth_time":null,"access_time_epoch":1565625323,"access_time_epoch_utc":null,"modify_time_epoch":1565625323,"modify_time_epoch_utc":null,"change_time_epoch":1571242893,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/setvtrgb","size":11688,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50572261,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-10-30 15:39:49.000000000 -0700","modify_time":"2018-10-30 15:39:49.000000000 -0700","change_time":"2019-08-15 10:53:46.191899867 -0700","birth_time":null,"access_time_epoch":1540939189,"access_time_epoch_utc":null,"modify_time_epoch":1540939189,"modify_time_epoch_utc":null,"change_time_epoch":1565891626,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/sftp","size":145424,"blocks":288,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50705036,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 18:40:47.000000000 -0700","modify_time":"2019-08-08 18:40:47.000000000 -0700","change_time":"2019-10-16 09:22:49.378197784 -0700","birth_time":null,"access_time_epoch":1565314847,"access_time_epoch_utc":null,"modify_time_epoch":1565314847,"modify_time_epoch_utc":null,"change_time_epoch":1571242969,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/sg","link_to":"newgrp","size":6,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50338553,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.521101273 -0800","modify_time":"2019-10-16 09:21:29.379010591 -0700","change_time":"2019-10-16 09:21:29.379010591 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1571242889,"modify_time_epoch_utc":null,"change_time_epoch":1571242889,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/sh","link_to":"bash","size":4,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50332723,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 10:40:01.506631148 -0800","modify_time":"2019-10-16 09:21:18.572555195 -0700","change_time":"2019-10-16 09:21:18.572555195 -0700","birth_time":null,"access_time_epoch":1573497601,"access_time_epoch_utc":null,"modify_time_epoch":1571242878,"modify_time_epoch_utc":null,"change_time_epoch":1571242878,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/sha1sum","size":37448,"blocks":80,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338462,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.658644559 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/sha224sum","size":41608,"blocks":88,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338463,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.659727913 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/sha256sum","size":41608,"blocks":88,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338464,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.665144683 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/sha384sum","size":41624,"blocks":88,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338465,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.666228037 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/sha512sum","size":41624,"blocks":88,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338466,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-16 09:22:02.338970387 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.667311391 -0700","birth_time":null,"access_time_epoch":1571242922,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/showconsolefont","size":15912,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50572262,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-10-30 15:39:49.000000000 -0700","modify_time":"2018-10-30 15:39:49.000000000 -0700","change_time":"2019-08-15 10:53:46.192899885 -0700","birth_time":null,"access_time_epoch":1540939189,"access_time_epoch_utc":null,"modify_time_epoch":1540939189,"modify_time_epoch_utc":null,"change_time_epoch":1565891626,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/showkey","size":15680,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50572263,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-10-30 15:39:49.000000000 -0700","modify_time":"2018-10-30 15:39:49.000000000 -0700","change_time":"2019-08-15 10:53:46.193899902 -0700","birth_time":null,"access_time_epoch":1540939189,"access_time_epoch_utc":null,"modify_time_epoch":1540939189,"modify_time_epoch_utc":null,"change_time_epoch":1565891626,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/shred","size":54208,"blocks":112,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338467,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.673811514 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/shuf","size":50312,"blocks":104,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338468,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.675978222 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/signver","size":96664,"blocks":192,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359246,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-12 08:55:47.000000000 -0700","modify_time":"2019-08-12 08:55:47.000000000 -0700","change_time":"2019-10-16 09:23:00.660245552 -0700","birth_time":null,"access_time_epoch":1565625347,"access_time_epoch_utc":null,"modify_time_epoch":1565625347,"modify_time_epoch_utc":null,"change_time_epoch":1571242980,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/size","size":33216,"blocks":72,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50356941,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 16:14:33.000000000 -0700","modify_time":"2019-08-08 16:14:33.000000000 -0700","change_time":"2019-10-16 09:21:37.888755667 -0700","birth_time":null,"access_time_epoch":1565306073,"access_time_epoch_utc":null,"modify_time_epoch":1565306073,"modify_time_epoch_utc":null,"change_time_epoch":1571242897,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/skill","size":24184,"blocks":48,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359743,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 18:55:49.000000000 -0700","modify_time":"2019-08-08 18:55:49.000000000 -0700","change_time":"2019-10-16 09:21:43.632698174 -0700","birth_time":null,"access_time_epoch":1565315749,"access_time_epoch_utc":null,"modify_time_epoch":1565315749,"modify_time_epoch_utc":null,"change_time_epoch":1571242903,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/slabtop","size":19984,"blocks":40,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359929,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 18:55:49.000000000 -0700","modify_time":"2019-08-08 18:55:49.000000000 -0700","change_time":"2019-10-16 09:21:43.638114944 -0700","birth_time":null,"access_time_epoch":1565315749,"access_time_epoch_utc":null,"modify_time_epoch":1565315749,"modify_time_epoch_utc":null,"change_time_epoch":1571242903,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/sleep","size":33128,"blocks":72,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338469,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-01 15:20:53.365401158 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.675978222 -0700","birth_time":null,"access_time_epoch":1572646853,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/slogin","link_to":"./ssh","size":5,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50705037,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.522184627 -0800","modify_time":"2019-10-16 09:22:49.378197784 -0700","change_time":"2019-10-16 09:22:49.378197784 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1571242969,"modify_time_epoch_utc":null,"change_time_epoch":1571242969,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/snice","size":24184,"blocks":48,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359938,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 18:55:49.000000000 -0700","modify_time":"2019-08-08 18:55:49.000000000 -0700","change_time":"2019-10-16 09:21:43.642448360 -0700","birth_time":null,"access_time_epoch":1565315749,"access_time_epoch_utc":null,"modify_time_epoch":1565315749,"modify_time_epoch_utc":null,"change_time_epoch":1571242903,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/soelim","size":33368,"blocks":72,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339159,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2014-06-09 13:17:22.000000000 -0700","modify_time":"2014-06-09 13:17:22.000000000 -0700","change_time":"2019-08-15 10:53:20.655660743 -0700","birth_time":null,"access_time_epoch":1402345042,"access_time_epoch_utc":null,"modify_time_epoch":1402345042,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/sort","size":117704,"blocks":232,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338470,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:34.285746199 -0800","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.684645053 -0700","birth_time":null,"access_time_epoch":1573324474,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/sotruss","size":4341,"blocks":16,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332752,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-06 16:03:05.000000000 -0700","modify_time":"2019-08-06 16:03:05.000000000 -0700","change_time":"2019-10-16 09:21:19.019980366 -0700","birth_time":null,"access_time_epoch":1565132585,"access_time_epoch_utc":null,"modify_time_epoch":1565132585,"modify_time_epoch_utc":null,"change_time_epoch":1571242879,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/splain","size":18459,"blocks":40,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":51051556,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-01-21 14:09:44.000000000 -0800","modify_time":"2019-01-21 14:09:44.000000000 -0800","change_time":"2019-10-15 11:27:59.089410391 -0700","birth_time":null,"access_time_epoch":1548108584,"access_time_epoch_utc":null,"modify_time_epoch":1548108584,"modify_time_epoch_utc":null,"change_time_epoch":1571164079,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/split","size":71128,"blocks":144,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338471,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.691145177 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/sprof","size":23224,"blocks":48,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332753,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-06 16:23:28.000000000 -0700","modify_time":"2019-08-06 16:23:28.000000000 -0700","change_time":"2019-10-16 09:21:19.021063720 -0700","birth_time":null,"access_time_epoch":1565133808,"access_time_epoch_utc":null,"modify_time_epoch":1565133808,"modify_time_epoch_utc":null,"change_time_epoch":1571242879,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/sqlite3","size":56240,"blocks":112,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338775,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2015-11-20 00:39:02.000000000 -0800","modify_time":"2015-11-20 00:39:02.000000000 -0800","change_time":"2019-08-15 10:53:19.108660713 -0700","birth_time":null,"access_time_epoch":1448008742,"access_time_epoch_utc":null,"modify_time_epoch":1448008742,"modify_time_epoch_utc":null,"change_time_epoch":1565891599,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/ssh","size":774568,"blocks":1520,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50705038,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-10 08:21:32.602136508 -0800","modify_time":"2019-08-08 18:40:47.000000000 -0700","change_time":"2019-10-16 09:22:49.475699637 -0700","birth_time":null,"access_time_epoch":1573402892,"access_time_epoch_utc":null,"modify_time_epoch":1565314847,"modify_time_epoch_utc":null,"change_time_epoch":1571242969,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/ssh-add","size":360920,"blocks":712,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50705039,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 18:40:47.000000000 -0700","modify_time":"2019-08-08 18:40:47.000000000 -0700","change_time":"2019-10-16 09:22:49.517950440 -0700","birth_time":null,"access_time_epoch":1565314847,"access_time_epoch_utc":null,"modify_time_epoch":1565314847,"modify_time_epoch_utc":null,"change_time_epoch":1571242969,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/ssh-agent","size":382216,"blocks":752,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50705040,"links":1,"access":"2111","flags":"---x--s--x","uid":0,"user":"root","gid":99,"group":"nobody","access_time":"2019-08-08 18:40:47.000000000 -0700","modify_time":"2019-08-08 18:40:47.000000000 -0700","change_time":"2019-10-16 09:22:49.555867828 -0700","birth_time":null,"access_time_epoch":1565314847,"access_time_epoch_utc":null,"modify_time_epoch":1565314847,"modify_time_epoch_utc":null,"change_time_epoch":1571242969,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/ssh-copy-id","size":10469,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50705041,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 18:40:39.000000000 -0700","modify_time":"2019-08-08 18:40:39.000000000 -0700","change_time":"2019-10-16 09:22:49.556951182 -0700","birth_time":null,"access_time_epoch":1565314839,"access_time_epoch_utc":null,"modify_time_epoch":1565314839,"modify_time_epoch_utc":null,"change_time_epoch":1571242969,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/ssh-keygen","size":419208,"blocks":824,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50358242,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 18:40:47.000000000 -0700","modify_time":"2019-08-08 18:40:47.000000000 -0700","change_time":"2019-10-16 09:22:01.735542251 -0700","birth_time":null,"access_time_epoch":1565314847,"access_time_epoch_utc":null,"modify_time_epoch":1565314847,"modify_time_epoch_utc":null,"change_time_epoch":1571242921,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/ssh-keyscan","size":441024,"blocks":864,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50392028,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 18:40:47.000000000 -0700","modify_time":"2019-08-08 18:40:47.000000000 -0700","change_time":"2019-10-16 09:22:49.598118631 -0700","birth_time":null,"access_time_epoch":1565314847,"access_time_epoch_utc":null,"modify_time_epoch":1565314847,"modify_time_epoch_utc":null,"change_time_epoch":1571242969,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/ssltap","size":112928,"blocks":224,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359248,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-12 08:55:47.000000000 -0700","modify_time":"2019-08-12 08:55:47.000000000 -0700","change_time":"2019-10-16 09:23:00.673245800 -0700","birth_time":null,"access_time_epoch":1565625347,"access_time_epoch_utc":null,"modify_time_epoch":1565625347,"modify_time_epoch_utc":null,"change_time_epoch":1571242980,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/stat","size":79040,"blocks":160,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338472,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-10 15:27:50.256535962 -0800","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.693311885 -0700","birth_time":null,"access_time_epoch":1573428470,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/stdbuf","size":66440,"blocks":136,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338473,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.699812008 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/strings","size":29192,"blocks":64,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50356942,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 16:14:33.000000000 -0700","modify_time":"2019-08-08 16:14:33.000000000 -0700","change_time":"2019-10-16 09:21:37.889839021 -0700","birth_time":null,"access_time_epoch":1565306073,"access_time_epoch_utc":null,"modify_time_epoch":1565306073,"modify_time_epoch_utc":null,"change_time_epoch":1571242897,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/strip","size":232856,"blocks":456,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50356943,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-21 13:18:12.975829211 -0700","modify_time":"2019-08-08 16:14:33.000000000 -0700","change_time":"2019-10-16 09:21:37.897422499 -0700","birth_time":null,"access_time_epoch":1571689092,"access_time_epoch_utc":null,"modify_time_epoch":1565306073,"modify_time_epoch_utc":null,"change_time_epoch":1571242897,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/stty","size":70256,"blocks":144,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338474,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:52.364684908 -0800","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.701978716 -0700","birth_time":null,"access_time_epoch":1573324492,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/su","size":32128,"blocks":64,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359706,"links":1,"access":"4755","flags":"-rwsr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.675013305 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/sudo","size":147320,"blocks":288,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50705101,"links":1,"access":"4111","flags":"---s--x--x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 09:25:10.159759774 -0800","modify_time":"2019-08-08 19:58:09.000000000 -0700","change_time":"2019-10-16 09:22:58.025528809 -0700","birth_time":null,"access_time_epoch":1573493110,"access_time_epoch_utc":null,"modify_time_epoch":1565319489,"modify_time_epoch_utc":null,"change_time_epoch":1571242978,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/sudoedit","link_to":"sudo","size":4,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50705102,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.523267982 -0800","modify_time":"2019-10-16 09:22:58.025528809 -0700","change_time":"2019-10-16 09:22:58.025528809 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1571242978,"modify_time_epoch_utc":null,"change_time_epoch":1571242978,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/sudoreplay","size":57456,"blocks":120,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50705103,"links":1,"access":"0111","flags":"---x--x--x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 19:58:09.000000000 -0700","modify_time":"2019-08-08 19:58:09.000000000 -0700","change_time":"2019-10-16 09:22:58.033112286 -0700","birth_time":null,"access_time_epoch":1565319489,"access_time_epoch_utc":null,"modify_time_epoch":1565319489,"modify_time_epoch_utc":null,"change_time_epoch":1571242978,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/sum","size":37432,"blocks":80,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338475,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.703062070 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/sync","size":28976,"blocks":64,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338476,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-21 13:18:11.561804824 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.704145424 -0700","birth_time":null,"access_time_epoch":1571689091,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/systemctl","size":717568,"blocks":1408,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360063,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:29.012999943 -0800","modify_time":"2019-09-13 11:21:23.000000000 -0700","change_time":"2019-10-16 09:21:45.411565318 -0700","birth_time":null,"access_time_epoch":1573324469,"access_time_epoch_utc":null,"modify_time_epoch":1568398883,"modify_time_epoch_utc":null,"change_time_epoch":1571242905,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/systemd-analyze","size":1558080,"blocks":3048,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360119,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-09-13 11:21:23.000000000 -0700","modify_time":"2019-09-13 11:21:23.000000000 -0700","change_time":"2019-10-16 09:21:45.502567048 -0700","birth_time":null,"access_time_epoch":1568398883,"access_time_epoch_utc":null,"modify_time_epoch":1568398883,"modify_time_epoch_utc":null,"change_time_epoch":1571242905,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/systemd-ask-password","size":61824,"blocks":128,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360120,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-09-13 11:21:23.000000000 -0700","modify_time":"2019-09-13 11:21:23.000000000 -0700","change_time":"2019-10-16 09:21:45.504733756 -0700","birth_time":null,"access_time_epoch":1568398883,"access_time_epoch_utc":null,"modify_time_epoch":1568398883,"modify_time_epoch_utc":null,"change_time_epoch":1571242905,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/systemd-cat","size":40952,"blocks":80,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360121,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-21 13:17:58.616387726 -0700","modify_time":"2019-09-13 11:21:23.000000000 -0700","change_time":"2019-10-16 09:21:45.506900464 -0700","birth_time":null,"access_time_epoch":1571689078,"access_time_epoch_utc":null,"modify_time_epoch":1568398883,"modify_time_epoch_utc":null,"change_time_epoch":1571242905,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/systemd-cgls","size":334112,"blocks":656,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360123,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-21 13:18:11.126797321 -0700","modify_time":"2019-09-13 11:21:23.000000000 -0700","change_time":"2019-10-16 09:21:45.522067419 -0700","birth_time":null,"access_time_epoch":1571689091,"access_time_epoch_utc":null,"modify_time_epoch":1568398883,"modify_time_epoch_utc":null,"change_time_epoch":1571242905,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/systemd-cgtop","size":87128,"blocks":176,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360124,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-09-13 11:21:23.000000000 -0700","modify_time":"2019-09-13 11:21:23.000000000 -0700","change_time":"2019-10-16 09:21:45.525317480 -0700","birth_time":null,"access_time_epoch":1568398883,"access_time_epoch_utc":null,"modify_time_epoch":1568398883,"modify_time_epoch_utc":null,"change_time_epoch":1571242905,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/systemd-coredumpctl","link_to":"coredumpctl","size":11,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50360125,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.524351336 -0800","modify_time":"2019-10-16 09:21:45.525317480 -0700","change_time":"2019-10-16 09:21:45.525317480 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1571242905,"modify_time_epoch_utc":null,"change_time_epoch":1571242905,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/systemd-delta","size":78680,"blocks":160,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360126,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-09-13 11:21:23.000000000 -0700","modify_time":"2019-09-13 11:21:23.000000000 -0700","change_time":"2019-10-16 09:21:45.527484188 -0700","birth_time":null,"access_time_epoch":1568398883,"access_time_epoch_utc":null,"modify_time_epoch":1568398883,"modify_time_epoch_utc":null,"change_time_epoch":1571242905,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/systemd-detect-virt","size":40928,"blocks":80,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360127,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:28.545999949 -0800","modify_time":"2019-09-13 11:21:23.000000000 -0700","change_time":"2019-10-16 09:21:45.529650896 -0700","birth_time":null,"access_time_epoch":1573324468,"access_time_epoch_utc":null,"modify_time_epoch":1568398883,"modify_time_epoch_utc":null,"change_time_epoch":1571242905,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/systemd-escape","size":49352,"blocks":104,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360173,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-21 13:18:11.115797132 -0700","modify_time":"2019-09-13 11:21:23.000000000 -0700","change_time":"2019-10-16 09:21:45.539401081 -0700","birth_time":null,"access_time_epoch":1571689091,"access_time_epoch_utc":null,"modify_time_epoch":1568398883,"modify_time_epoch_utc":null,"change_time_epoch":1571242905,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/systemd-firstboot","size":103952,"blocks":208,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360175,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-09-13 11:21:23.000000000 -0700","modify_time":"2019-09-13 11:21:23.000000000 -0700","change_time":"2019-10-16 09:21:45.542651143 -0700","birth_time":null,"access_time_epoch":1568398883,"access_time_epoch_utc":null,"modify_time_epoch":1568398883,"modify_time_epoch_utc":null,"change_time_epoch":1571242905,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/systemd-hwdb","size":87344,"blocks":176,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360176,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-09-13 11:21:23.000000000 -0700","modify_time":"2019-09-13 11:21:23.000000000 -0700","change_time":"2019-10-16 09:21:45.545901205 -0700","birth_time":null,"access_time_epoch":1568398883,"access_time_epoch_utc":null,"modify_time_epoch":1568398883,"modify_time_epoch_utc":null,"change_time_epoch":1571242905,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/systemd-inhibit","size":313200,"blocks":616,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360179,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-09-13 11:21:23.000000000 -0700","modify_time":"2019-09-13 11:21:23.000000000 -0700","change_time":"2019-10-16 09:21:45.562151514 -0700","birth_time":null,"access_time_epoch":1568398883,"access_time_epoch_utc":null,"modify_time_epoch":1568398883,"modify_time_epoch_utc":null,"change_time_epoch":1571242905,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/systemd-loginctl","link_to":"loginctl","size":8,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50360180,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.525434691 -0800","modify_time":"2019-10-16 09:21:45.562151514 -0700","change_time":"2019-10-16 09:21:45.562151514 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1571242905,"modify_time_epoch_utc":null,"change_time_epoch":1571242905,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/systemd-machine-id-setup","size":53488,"blocks":112,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360181,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-16 09:21:46.782008033 -0700","modify_time":"2019-09-13 11:21:23.000000000 -0700","change_time":"2019-10-16 09:21:45.564318221 -0700","birth_time":null,"access_time_epoch":1571242906,"access_time_epoch_utc":null,"modify_time_epoch":1568398883,"modify_time_epoch_utc":null,"change_time_epoch":1571242905,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/systemd-notify","size":49288,"blocks":104,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360182,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-09-13 11:21:23.000000000 -0700","modify_time":"2019-09-13 11:21:23.000000000 -0700","change_time":"2019-10-16 09:21:45.566484929 -0700","birth_time":null,"access_time_epoch":1568398883,"access_time_epoch_utc":null,"modify_time_epoch":1568398883,"modify_time_epoch_utc":null,"change_time_epoch":1571242905,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/systemd-nspawn","size":558912,"blocks":1096,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360183,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-09-13 11:21:23.000000000 -0700","modify_time":"2019-09-13 11:21:23.000000000 -0700","change_time":"2019-10-16 09:21:45.591402070 -0700","birth_time":null,"access_time_epoch":1568398883,"access_time_epoch_utc":null,"modify_time_epoch":1568398883,"modify_time_epoch_utc":null,"change_time_epoch":1571242905,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/systemd-path","size":53416,"blocks":112,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360184,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-09-13 11:21:23.000000000 -0700","modify_time":"2019-09-13 11:21:23.000000000 -0700","change_time":"2019-10-16 09:21:45.597902193 -0700","birth_time":null,"access_time_epoch":1568398883,"access_time_epoch_utc":null,"modify_time_epoch":1568398883,"modify_time_epoch_utc":null,"change_time_epoch":1571242905,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/systemd-run","size":392216,"blocks":768,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360185,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-21 13:18:10.535787128 -0700","modify_time":"2019-09-13 11:21:23.000000000 -0700","change_time":"2019-10-16 09:21:45.611985794 -0700","birth_time":null,"access_time_epoch":1571689090,"access_time_epoch_utc":null,"modify_time_epoch":1568398883,"modify_time_epoch_utc":null,"change_time_epoch":1571242905,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/systemd-stdio-bridge","size":313136,"blocks":616,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360186,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-09-13 11:21:23.000000000 -0700","modify_time":"2019-09-13 11:21:23.000000000 -0700","change_time":"2019-10-16 09:21:45.624986041 -0700","birth_time":null,"access_time_epoch":1568398883,"access_time_epoch_utc":null,"modify_time_epoch":1568398883,"modify_time_epoch_utc":null,"change_time_epoch":1571242905,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/systemd-sysv-convert","size":3979,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50358245,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-09-13 11:19:27.000000000 -0700","modify_time":"2019-09-13 11:19:27.000000000 -0700","change_time":"2019-10-16 09:22:16.026063868 -0700","birth_time":null,"access_time_epoch":1568398767,"access_time_epoch_utc":null,"modify_time_epoch":1568398767,"modify_time_epoch_utc":null,"change_time_epoch":1571242936,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/systemd-tmpfiles","size":145536,"blocks":288,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360187,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 10:50:01.656267060 -0800","modify_time":"2019-09-13 11:21:23.000000000 -0700","change_time":"2019-10-16 09:21:45.633652872 -0700","birth_time":null,"access_time_epoch":1573498201,"access_time_epoch_utc":null,"modify_time_epoch":1568398883,"modify_time_epoch_utc":null,"change_time_epoch":1571242905,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/systemd-tty-ask-password-agent","size":86784,"blocks":176,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360188,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-01 11:36:43.016701766 -0700","modify_time":"2019-09-13 11:21:23.000000000 -0700","change_time":"2019-10-16 09:21:45.637986288 -0700","birth_time":null,"access_time_epoch":1572633403,"access_time_epoch_utc":null,"modify_time_epoch":1568398883,"modify_time_epoch_utc":null,"change_time_epoch":1571242905,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/tabs","size":15680,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332901,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-09-06 15:08:20.000000000 -0700","modify_time":"2017-09-06 15:08:20.000000000 -0700","change_time":"2019-08-15 10:53:08.882660512 -0700","birth_time":null,"access_time_epoch":1504735700,"access_time_epoch_utc":null,"modify_time_epoch":1504735700,"modify_time_epoch_utc":null,"change_time_epoch":1565891588,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/tac","size":33264,"blocks":72,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338477,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.711728902 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/tail","size":66824,"blocks":136,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338478,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:35.059761899 -0800","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.713895609 -0700","birth_time":null,"access_time_epoch":1573324475,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/tailf","size":24456,"blocks":48,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359707,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.675013305 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/tapestat","size":53816,"blocks":112,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50426659,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 19:54:58.000000000 -0700","modify_time":"2019-08-08 19:54:58.000000000 -0700","change_time":"2019-10-29 23:35:07.239447135 -0700","birth_time":null,"access_time_epoch":1565319298,"access_time_epoch_utc":null,"modify_time_epoch":1565319298,"modify_time_epoch_utc":null,"change_time_epoch":1572417307,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/tar","size":346136,"blocks":680,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359669,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-10-30 13:24:30.000000000 -0700","modify_time":"2018-10-30 13:24:30.000000000 -0700","change_time":"2019-08-15 10:53:27.480660877 -0700","birth_time":null,"access_time_epoch":1540931070,"access_time_epoch_utc":null,"modify_time_epoch":1540931070,"modify_time_epoch_utc":null,"change_time_epoch":1565891607,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/taskset","size":32992,"blocks":72,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359708,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.681513429 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/tbl","size":118744,"blocks":232,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339160,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-10 17:39:49.464886298 -0800","modify_time":"2014-06-09 13:17:22.000000000 -0700","change_time":"2019-08-15 10:53:20.659660743 -0700","birth_time":null,"access_time_epoch":1573436389,"access_time_epoch_utc":null,"modify_time_epoch":1402345042,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/teamd","size":154648,"blocks":304,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50357046,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-17 11:27:36.481882439 -0700","modify_time":"2019-08-08 17:33:36.000000000 -0700","change_time":"2019-10-16 09:21:41.902581957 -0700","birth_time":null,"access_time_epoch":1571336856,"access_time_epoch_utc":null,"modify_time_epoch":1565310816,"modify_time_epoch_utc":null,"change_time_epoch":1571242901,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/teamdctl","size":29672,"blocks":64,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50357047,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-17 11:27:36.482882458 -0700","modify_time":"2019-08-08 17:33:36.000000000 -0700","change_time":"2019-10-16 09:21:41.907998727 -0700","birth_time":null,"access_time_epoch":1571336856,"access_time_epoch_utc":null,"modify_time_epoch":1565310816,"modify_time_epoch_utc":null,"change_time_epoch":1571242901,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/teamnl","size":19560,"blocks":40,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50357044,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-17 11:27:36.484882497 -0700","modify_time":"2019-08-08 17:33:36.000000000 -0700","change_time":"2019-10-16 09:21:41.741162222 -0700","birth_time":null,"access_time_epoch":1571336856,"access_time_epoch_utc":null,"modify_time_epoch":1565310816,"modify_time_epoch_utc":null,"change_time_epoch":1571242901,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/tee","size":33160,"blocks":72,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338479,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.716062317 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/test","size":37336,"blocks":80,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338480,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.722562441 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/testgdbm","size":30488,"blocks":64,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50358686,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2014-06-09 14:39:03.000000000 -0700","modify_time":"2014-06-09 14:39:03.000000000 -0700","change_time":"2019-08-15 10:53:21.466660759 -0700","birth_time":null,"access_time_epoch":1402349943,"access_time_epoch_utc":null,"modify_time_epoch":1402349943,"modify_time_epoch_utc":null,"change_time_epoch":1565891601,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/tic","size":65800,"blocks":136,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332902,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-09-06 15:08:20.000000000 -0700","modify_time":"2017-09-06 15:08:20.000000000 -0700","change_time":"2019-08-15 10:53:08.885660512 -0700","birth_time":null,"access_time_epoch":1504735700,"access_time_epoch_utc":null,"modify_time_epoch":1504735700,"modify_time_epoch_utc":null,"change_time_epoch":1565891588,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/timedatectl","size":338104,"blocks":664,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360189,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-09-13 11:21:23.000000000 -0700","modify_time":"2019-09-13 11:21:23.000000000 -0700","change_time":"2019-10-16 09:21:45.654236597 -0700","birth_time":null,"access_time_epoch":1568398883,"access_time_epoch_utc":null,"modify_time_epoch":1568398883,"modify_time_epoch_utc":null,"change_time_epoch":1571242905,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/timeout","size":54592,"blocks":112,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338481,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-01 11:36:44.343729969 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.724729149 -0700","birth_time":null,"access_time_epoch":1572633404,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/tload","size":15744,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359939,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 18:55:49.000000000 -0700","modify_time":"2019-08-08 18:55:49.000000000 -0700","change_time":"2019-10-16 09:21:43.647865129 -0700","birth_time":null,"access_time_epoch":1565315749,"access_time_epoch_utc":null,"modify_time_epoch":1565315749,"modify_time_epoch_utc":null,"change_time_epoch":1571242903,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/tmon","size":31856,"blocks":64,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50392016,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-09-30 07:30:32.000000000 -0700","modify_time":"2019-09-30 07:30:32.000000000 -0700","change_time":"2019-10-16 09:22:59.007047461 -0700","birth_time":null,"access_time_epoch":1569853832,"access_time_epoch_utc":null,"modify_time_epoch":1569853832,"modify_time_epoch_utc":null,"change_time_epoch":1571242979,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/toe","size":15800,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332903,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-09-06 15:08:20.000000000 -0700","modify_time":"2017-09-06 15:08:20.000000000 -0700","change_time":"2019-08-15 10:53:08.886660512 -0700","birth_time":null,"access_time_epoch":1504735700,"access_time_epoch_utc":null,"modify_time_epoch":1504735700,"modify_time_epoch_utc":null,"change_time_epoch":1565891588,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/top","size":106880,"blocks":216,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359940,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 18:55:49.000000000 -0700","modify_time":"2019-08-08 18:55:49.000000000 -0700","change_time":"2019-10-16 09:21:43.661948730 -0700","birth_time":null,"access_time_epoch":1565315749,"access_time_epoch_utc":null,"modify_time_epoch":1565315749,"modify_time_epoch_utc":null,"change_time_epoch":1571242903,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/touch","size":62480,"blocks":128,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338482,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 03:50:06.633418795 -0800","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.726895856 -0700","birth_time":null,"access_time_epoch":1573473006,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/tput","size":15784,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332904,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:48.472640920 -0800","modify_time":"2017-09-06 15:08:20.000000000 -0700","change_time":"2019-08-15 10:53:08.886660512 -0700","birth_time":null,"access_time_epoch":1573324488,"access_time_epoch_utc":null,"modify_time_epoch":1504735700,"modify_time_epoch_utc":null,"change_time_epoch":1565891588,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/tr","size":45680,"blocks":96,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338483,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:34.552751616 -0800","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.733395980 -0700","birth_time":null,"access_time_epoch":1573324474,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/tracepath","size":15408,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360576,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-04 01:01:04.000000000 -0700","modify_time":"2017-08-04 01:01:04.000000000 -0700","change_time":"2019-08-15 10:53:32.456660975 -0700","birth_time":null,"access_time_epoch":1501833664,"access_time_epoch_utc":null,"modify_time_epoch":1501833664,"modify_time_epoch_utc":null,"change_time_epoch":1565891612,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/tracepath6","size":15408,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360577,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-04 01:01:04.000000000 -0700","modify_time":"2017-08-04 01:01:04.000000000 -0700","change_time":"2019-08-15 10:53:32.456660975 -0700","birth_time":null,"access_time_epoch":1501833664,"access_time_epoch_utc":null,"modify_time_epoch":1501833664,"modify_time_epoch_utc":null,"change_time_epoch":1565891612,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/troff","size":525272,"blocks":1032,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339161,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-10 17:39:49.474636496 -0800","modify_time":"2014-06-09 13:17:22.000000000 -0700","change_time":"2019-08-15 10:53:20.675660744 -0700","birth_time":null,"access_time_epoch":1573436389,"access_time_epoch_utc":null,"modify_time_epoch":1402345042,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/true","size":28936,"blocks":64,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338484,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-21 13:18:11.190798425 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.734479334 -0700","birth_time":null,"access_time_epoch":1571689091,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/truncate","size":53936,"blocks":112,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338485,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.735562688 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/trust","size":183376,"blocks":360,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338422,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-15 10:53:17.053660672 -0700","modify_time":"2017-08-04 16:36:46.000000000 -0700","change_time":"2019-08-15 10:53:16.953660670 -0700","birth_time":null,"access_time_epoch":1565891597,"access_time_epoch_utc":null,"modify_time_epoch":1501889806,"modify_time_epoch_utc":null,"change_time_epoch":1565891596,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/tset","size":20072,"blocks":40,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332905,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-09-06 15:08:20.000000000 -0700","modify_time":"2017-09-06 15:08:20.000000000 -0700","change_time":"2019-08-15 10:53:08.888660512 -0700","birth_time":null,"access_time_epoch":1504735700,"access_time_epoch_utc":null,"modify_time_epoch":1504735700,"modify_time_epoch_utc":null,"change_time_epoch":1565891588,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/tsort","size":37344,"blocks":80,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338486,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.740979457 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/tty","size":28968,"blocks":64,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338487,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:48.468642791 -0800","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.740979457 -0700","birth_time":null,"access_time_epoch":1573324488,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/turbostat","size":115864,"blocks":232,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50392017,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-09-30 07:30:32.000000000 -0700","modify_time":"2019-09-30 07:30:32.000000000 -0700","change_time":"2019-10-16 09:22:59.021131062 -0700","birth_time":null,"access_time_epoch":1569853832,"access_time_epoch_utc":null,"modify_time_epoch":1569853832,"modify_time_epoch_utc":null,"change_time_epoch":1571242979,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/tzselect","size":7339,"blocks":16,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332754,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-06 16:02:23.000000000 -0700","modify_time":"2019-08-06 16:02:23.000000000 -0700","change_time":"2019-10-16 09:21:19.021063720 -0700","birth_time":null,"access_time_epoch":1565132543,"access_time_epoch_utc":null,"modify_time_epoch":1565132543,"modify_time_epoch_utc":null,"change_time_epoch":1571242879,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/udevadm","size":424208,"blocks":832,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360190,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:27.128999967 -0800","modify_time":"2019-09-13 11:21:23.000000000 -0700","change_time":"2019-10-16 09:21:45.678070384 -0700","birth_time":null,"access_time_epoch":1573324467,"access_time_epoch_utc":null,"modify_time_epoch":1568398883,"modify_time_epoch_utc":null,"change_time_epoch":1571242905,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/ul","size":19936,"blocks":40,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359709,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.682596783 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/umask","size":29,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332724,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 05:06:55.000000000 -0700","modify_time":"2019-08-08 05:06:55.000000000 -0700","change_time":"2019-10-16 09:21:18.573638549 -0700","birth_time":null,"access_time_epoch":1565266015,"access_time_epoch_utc":null,"modify_time_epoch":1565266015,"modify_time_epoch_utc":null,"change_time_epoch":1571242878,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/umount","size":31984,"blocks":64,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359710,"links":1,"access":"4755","flags":"-rwsr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-01 11:36:44.731738216 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.683680137 -0700","birth_time":null,"access_time_epoch":1572633404,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/unalias","size":31,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332725,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 05:06:55.000000000 -0700","modify_time":"2019-08-08 05:06:55.000000000 -0700","change_time":"2019-10-16 09:21:18.573638549 -0700","birth_time":null,"access_time_epoch":1565266015,"access_time_epoch_utc":null,"modify_time_epoch":1565266015,"modify_time_epoch_utc":null,"change_time_epoch":1571242878,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/uname","size":33080,"blocks":72,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338488,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-10 18:50:52.754811740 -0800","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.742062811 -0700","birth_time":null,"access_time_epoch":1573440652,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/unexpand","size":33232,"blocks":72,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338489,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.745312873 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/unicode_start","size":2555,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50572240,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-10-30 15:38:31.000000000 -0700","modify_time":"2018-10-30 15:38:31.000000000 -0700","change_time":"2019-08-15 10:53:46.179899657 -0700","birth_time":null,"access_time_epoch":1540939111,"access_time_epoch_utc":null,"modify_time_epoch":1540939111,"modify_time_epoch_utc":null,"change_time_epoch":1565891626,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/unicode_stop","size":363,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50572241,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-10-30 15:38:31.000000000 -0700","modify_time":"2018-10-30 15:38:31.000000000 -0700","change_time":"2019-08-15 10:53:46.179899657 -0700","birth_time":null,"access_time_epoch":1540939111,"access_time_epoch_utc":null,"modify_time_epoch":1540939111,"modify_time_epoch_utc":null,"change_time_epoch":1565891626,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/uniq","size":45784,"blocks":96,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338490,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-21 13:17:58.603387501 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.752896351 -0700","birth_time":null,"access_time_epoch":1571689078,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/unlink","size":28984,"blocks":64,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338491,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.753979705 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/unlz4","link_to":"lz4","size":3,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50358684,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.528684754 -0800","modify_time":"2019-10-16 09:21:34.166351583 -0700","change_time":"2019-10-16 09:21:34.166351583 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1571242894,"modify_time_epoch_utc":null,"change_time_epoch":1571242894,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/unshare","size":15824,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359711,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:31.313685924 -0800","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.689096906 -0700","birth_time":null,"access_time_epoch":1573324471,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/unxz","link_to":"xz","size":2,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50339098,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.528684754 -0800","modify_time":"2019-08-15 10:53:20.583660742 -0700","change_time":"2019-08-15 10:53:20.583660742 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1565891600,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/update-ca-trust","size":1054,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338432,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-15 10:53:17.051660672 -0700","modify_time":"2018-05-14 07:10:13.000000000 -0700","change_time":"2019-08-15 10:53:16.999660671 -0700","birth_time":null,"access_time_epoch":1565891597,"access_time_epoch_utc":null,"modify_time_epoch":1526307013,"modify_time_epoch_utc":null,"change_time_epoch":1565891596,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/update-mime-database","size":54080,"blocks":112,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338822,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-15 10:54:00.942158094 -0700","modify_time":"2018-04-10 17:37:03.000000000 -0700","change_time":"2019-08-15 10:53:19.529660721 -0700","birth_time":null,"access_time_epoch":1565891640,"access_time_epoch_utc":null,"modify_time_epoch":1523407023,"modify_time_epoch_utc":null,"change_time_epoch":1565891599,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/uptime","size":11488,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359941,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-08 06:39:50.344926237 -0800","modify_time":"2019-08-08 18:55:49.000000000 -0700","change_time":"2019-10-16 09:21:43.666282146 -0700","birth_time":null,"access_time_epoch":1573223990,"access_time_epoch_utc":null,"modify_time_epoch":1565315749,"modify_time_epoch_utc":null,"change_time_epoch":1571242903,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/urlgrabber","size":12465,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359538,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-10-30 10:15:11.000000000 -0700","modify_time":"2018-10-30 10:15:11.000000000 -0700","change_time":"2019-08-15 10:53:25.275660834 -0700","birth_time":null,"access_time_epoch":1540919711,"access_time_epoch_utc":null,"modify_time_epoch":1540919711,"modify_time_epoch_utc":null,"change_time_epoch":1565891605,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/users","size":33200,"blocks":72,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338492,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.753979705 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/usleep","size":11208,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50360589,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 16:52:41.000000000 -0700","modify_time":"2019-08-08 16:52:41.000000000 -0700","change_time":"2019-10-16 09:21:48.270536325 -0700","birth_time":null,"access_time_epoch":1565308361,"access_time_epoch_utc":null,"modify_time_epoch":1565308361,"modify_time_epoch_utc":null,"change_time_epoch":1571242908,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/usx2yloader","size":15776,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50400589,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2016-11-05 11:34:04.000000000 -0700","modify_time":"2016-11-05 11:34:04.000000000 -0700","change_time":"2019-08-15 10:53:36.445729079 -0700","birth_time":null,"access_time_epoch":1478370844,"access_time_epoch_utc":null,"modify_time_epoch":1478370844,"modify_time_epoch_utc":null,"change_time_epoch":1565891616,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/utmpdump","size":15816,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359712,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.689096906 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/uuidgen","size":11480,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359713,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.690180260 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/vdir","size":117608,"blocks":232,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338493,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.763729890 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/vi","size":928184,"blocks":1816,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359448,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-10 18:58:36.765650984 -0800","modify_time":"2019-08-08 20:17:25.000000000 -0700","change_time":"2019-10-16 09:21:42.353257189 -0700","birth_time":null,"access_time_epoch":1573441116,"access_time_epoch_utc":null,"modify_time_epoch":1565320645,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/view","link_to":"vi","size":2,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50359449,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.528684754 -0800","modify_time":"2019-10-16 09:21:42.353257189 -0700","change_time":"2019-10-16 09:21:42.353257189 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1571242902,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/vlock","size":16160,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50572264,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-10-30 15:39:49.000000000 -0700","modify_time":"2018-10-30 15:39:49.000000000 -0700","change_time":"2019-08-15 10:53:46.194899920 -0700","birth_time":null,"access_time_epoch":1540939189,"access_time_epoch_utc":null,"modify_time_epoch":1540939189,"modify_time_epoch_utc":null,"change_time_epoch":1565891626,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/vmstat","size":32232,"blocks":64,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359942,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 18:55:49.000000000 -0700","modify_time":"2019-08-08 18:55:49.000000000 -0700","change_time":"2019-10-16 09:21:43.671698916 -0700","birth_time":null,"access_time_epoch":1565315749,"access_time_epoch_utc":null,"modify_time_epoch":1565315749,"modify_time_epoch_utc":null,"change_time_epoch":1571242903,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/vxloader","size":15744,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50400590,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2016-11-05 11:34:04.000000000 -0700","modify_time":"2016-11-05 11:34:04.000000000 -0700","change_time":"2019-08-15 10:53:36.445729079 -0700","birth_time":null,"access_time_epoch":1478370844,"access_time_epoch_utc":null,"modify_time_epoch":1478370844,"modify_time_epoch_utc":null,"change_time_epoch":1565891616,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/w","size":19912,"blocks":40,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359943,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-10 19:15:55.706660548 -0800","modify_time":"2019-08-08 18:55:49.000000000 -0700","change_time":"2019-10-16 09:21:43.677115685 -0700","birth_time":null,"access_time_epoch":1573442155,"access_time_epoch_utc":null,"modify_time_epoch":1565315749,"modify_time_epoch_utc":null,"change_time_epoch":1571242903,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/wait","size":28,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50332726,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 05:06:55.000000000 -0700","modify_time":"2019-08-08 05:06:55.000000000 -0700","change_time":"2019-10-16 09:21:18.573638549 -0700","birth_time":null,"access_time_epoch":1565266015,"access_time_epoch_utc":null,"modify_time_epoch":1565266015,"modify_time_epoch_utc":null,"change_time_epoch":1571242878,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/wall","size":15344,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339283,"links":1,"access":"2555","flags":"-r-xr-sr-x","uid":0,"user":"root","gid":5,"group":"tty","access_time":"2014-06-09 16:16:44.000000000 -0700","modify_time":"2014-06-09 16:16:44.000000000 -0700","change_time":"2019-08-15 10:53:21.091660752 -0700","birth_time":null,"access_time_epoch":1402355804,"access_time_epoch_utc":null,"modify_time_epoch":1402355804,"modify_time_epoch_utc":null,"change_time_epoch":1565891601,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/watch","size":24728,"blocks":56,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359944,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 18:55:49.000000000 -0700","modify_time":"2019-08-08 18:55:49.000000000 -0700","change_time":"2019-10-16 09:21:43.682532454 -0700","birth_time":null,"access_time_epoch":1565315749,"access_time_epoch_utc":null,"modify_time_epoch":1565315749,"modify_time_epoch_utc":null,"change_time_epoch":1571242903,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/watchgnupg","size":15720,"blocks":32,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50400699,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-07-13 06:05:25.000000000 -0700","modify_time":"2018-07-13 06:05:25.000000000 -0700","change_time":"2019-08-15 10:53:36.925737533 -0700","birth_time":null,"access_time_epoch":1531487125,"access_time_epoch_utc":null,"modify_time_epoch":1531487125,"modify_time_epoch_utc":null,"change_time_epoch":1565891616,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/wc","size":41648,"blocks":88,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338494,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:34.895758573 -0800","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.764813244 -0700","birth_time":null,"access_time_epoch":1573324474,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/wdctl","size":41672,"blocks":88,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359714,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.691263614 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/whatis","size":46584,"blocks":96,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50696675,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-10-30 13:26:36.000000000 -0700","modify_time":"2018-10-30 13:26:36.000000000 -0700","change_time":"2019-08-15 10:53:56.797085528 -0700","birth_time":null,"access_time_epoch":1540931196,"access_time_epoch_utc":null,"modify_time_epoch":1540931196,"modify_time_epoch_utc":null,"change_time_epoch":1565891636,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/whereis","size":20680,"blocks":48,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359715,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.698847092 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/which","size":24336,"blocks":48,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338701,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:35.648773845 -0800","modify_time":"2014-06-09 19:25:22.000000000 -0700","change_time":"2019-08-15 10:53:18.930660709 -0700","birth_time":null,"access_time_epoch":1573324475,"access_time_epoch_utc":null,"modify_time_epoch":1402367122,"modify_time_epoch_utc":null,"change_time_epoch":1565891598,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/whiptail","size":28504,"blocks":56,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339287,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2014-06-10 00:48:12.000000000 -0700","modify_time":"2014-06-10 00:48:12.000000000 -0700","change_time":"2019-08-15 10:53:21.361660757 -0700","birth_time":null,"access_time_epoch":1402386492,"access_time_epoch_utc":null,"modify_time_epoch":1402386492,"modify_time_epoch_utc":null,"change_time_epoch":1565891601,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/who","size":49872,"blocks":104,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338495,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.766979952 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/whoami","size":28984,"blocks":64,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338528,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.773480075 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/write","size":19544,"blocks":40,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359716,"links":1,"access":"2755","flags":"-rwxr-sr-x","uid":0,"user":"root","gid":5,"group":"tty","access_time":"2019-08-08 20:10:18.000000000 -0700","modify_time":"2019-08-08 20:10:18.000000000 -0700","change_time":"2019-10-16 09:21:42.699930446 -0700","birth_time":null,"access_time_epoch":1565320218,"access_time_epoch_utc":null,"modify_time_epoch":1565320218,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/x86_64","link_to":"setarch","size":7,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50359717,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.529768108 -0800","modify_time":"2019-10-16 09:21:42.699930446 -0700","change_time":"2019-10-16 09:21:42.699930446 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1571242902,"modify_time_epoch_utc":null,"change_time_epoch":1571242902,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/x86_energy_perf_policy","size":10480,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50392018,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:37.876819032 -0800","modify_time":"2019-09-30 07:30:32.000000000 -0700","change_time":"2019-10-16 09:22:59.025464478 -0700","birth_time":null,"access_time_epoch":1573324477,"access_time_epoch_utc":null,"modify_time_epoch":1569853832,"modify_time_epoch_utc":null,"change_time_epoch":1571242979,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/xargs","size":62368,"blocks":128,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338678,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:30.050999930 -0800","modify_time":"2018-10-30 09:42:55.000000000 -0700","change_time":"2019-08-15 10:53:18.859660708 -0700","birth_time":null,"access_time_epoch":1573324470,"access_time_epoch_utc":null,"modify_time_epoch":1540917775,"modify_time_epoch_utc":null,"change_time_epoch":1565891598,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/xgettext","size":271784,"blocks":536,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50359191,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2017-08-02 19:24:25.000000000 -0700","modify_time":"2017-08-02 19:24:25.000000000 -0700","change_time":"2019-08-15 10:53:23.711660803 -0700","birth_time":null,"access_time_epoch":1501727065,"access_time_epoch_utc":null,"modify_time_epoch":1501727065,"modify_time_epoch_utc":null,"change_time_epoch":1565891603,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/xmlcatalog","size":19752,"blocks":40,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338622,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2016-06-23 07:36:19.000000000 -0700","modify_time":"2016-06-23 07:36:19.000000000 -0700","change_time":"2019-08-15 10:53:18.506660701 -0700","birth_time":null,"access_time_epoch":1466692579,"access_time_epoch_utc":null,"modify_time_epoch":1466692579,"modify_time_epoch_utc":null,"change_time_epoch":1565891598,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/xmllint","size":63408,"blocks":128,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338623,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2016-06-23 07:36:19.000000000 -0700","modify_time":"2016-06-23 07:36:19.000000000 -0700","change_time":"2019-08-15 10:53:18.510660701 -0700","birth_time":null,"access_time_epoch":1466692579,"access_time_epoch_utc":null,"modify_time_epoch":1466692579,"modify_time_epoch_utc":null,"change_time_epoch":1565891598,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/xmlwf","size":24568,"blocks":48,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338671,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2016-11-28 14:26:58.000000000 -0800","modify_time":"2016-11-28 14:26:58.000000000 -0800","change_time":"2019-08-15 10:53:18.788660706 -0700","birth_time":null,"access_time_epoch":1480372018,"access_time_epoch_utc":null,"modify_time_epoch":1480372018,"modify_time_epoch_utc":null,"change_time_epoch":1565891598,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/xz","size":75280,"blocks":152,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339099,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-21 13:18:00.131413855 -0700","modify_time":"2016-11-05 08:27:57.000000000 -0700","change_time":"2019-08-15 10:53:20.586660742 -0700","birth_time":null,"access_time_epoch":1571689080,"access_time_epoch_utc":null,"modify_time_epoch":1478359677,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/xzcat","link_to":"xz","size":2,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50339100,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.530851463 -0800","modify_time":"2019-08-15 10:53:20.586660742 -0700","change_time":"2019-08-15 10:53:20.586660742 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1565891600,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/xzcmp","link_to":"xzdiff","size":6,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50339101,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.530851463 -0800","modify_time":"2019-08-15 10:53:20.586660742 -0700","change_time":"2019-08-15 10:53:20.586660742 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1565891600,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/xzdec","size":11472,"blocks":24,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339102,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2016-11-05 08:27:57.000000000 -0700","modify_time":"2016-11-05 08:27:57.000000000 -0700","change_time":"2019-08-15 10:53:20.587660742 -0700","birth_time":null,"access_time_epoch":1478359677,"access_time_epoch_utc":null,"modify_time_epoch":1478359677,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/xzdiff","size":6632,"blocks":16,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339103,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2016-11-05 08:27:43.000000000 -0700","modify_time":"2016-11-05 08:27:43.000000000 -0700","change_time":"2019-08-15 10:53:20.587660742 -0700","birth_time":null,"access_time_epoch":1478359663,"access_time_epoch_utc":null,"modify_time_epoch":1478359663,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/xzegrep","link_to":"xzgrep","size":6,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50339136,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.530851463 -0800","modify_time":"2019-08-15 10:53:20.587660742 -0700","change_time":"2019-08-15 10:53:20.587660742 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1565891600,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/xzfgrep","link_to":"xzgrep","size":6,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50339137,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.530851463 -0800","modify_time":"2019-08-15 10:53:20.587660742 -0700","change_time":"2019-08-15 10:53:20.587660742 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1565891600,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/xzgrep","size":5628,"blocks":16,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339138,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2016-11-05 08:27:43.000000000 -0700","modify_time":"2016-11-05 08:27:43.000000000 -0700","change_time":"2019-08-15 10:53:20.588660742 -0700","birth_time":null,"access_time_epoch":1478359663,"access_time_epoch_utc":null,"modify_time_epoch":1478359663,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/xzless","size":1802,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339139,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2016-11-05 08:27:43.000000000 -0700","modify_time":"2016-11-05 08:27:43.000000000 -0700","change_time":"2019-08-15 10:53:20.588660742 -0700","birth_time":null,"access_time_epoch":1478359663,"access_time_epoch_utc":null,"modify_time_epoch":1478359663,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/xzmore","size":2161,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50339140,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2016-11-05 08:27:43.000000000 -0700","modify_time":"2016-11-05 08:27:43.000000000 -0700","change_time":"2019-08-15 10:53:20.588660742 -0700","birth_time":null,"access_time_epoch":1478359663,"access_time_epoch_utc":null,"modify_time_epoch":1478359663,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/yes","size":28984,"blocks":64,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338529,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-08-19 23:25:31.000000000 -0700","modify_time":"2019-08-19 23:25:31.000000000 -0700","change_time":"2019-10-16 09:21:27.774563429 -0700","birth_time":null,"access_time_epoch":1566282331,"access_time_epoch_utc":null,"modify_time_epoch":1566282331,"modify_time_epoch_utc":null,"change_time_epoch":1571242887,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/ypdomainname","link_to":"hostname","size":8,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50359137,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.530851463 -0800","modify_time":"2019-08-15 10:53:22.913660788 -0700","change_time":"2019-08-15 10:53:22.913660788 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1565891602,"modify_time_epoch_utc":null,"change_time_epoch":1565891602,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/yum","size":801,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50357024,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-10 07:54:55.934168114 -0800","modify_time":"2019-08-08 04:57:48.000000000 -0700","change_time":"2019-10-16 09:21:40.397803356 -0700","birth_time":null,"access_time_epoch":1573401295,"access_time_epoch_utc":null,"modify_time_epoch":1565265468,"modify_time_epoch_utc":null,"change_time_epoch":1571242900,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/zcat","size":1941,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338647,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-09 10:34:36.059782181 -0800","modify_time":"2018-04-10 17:01:18.000000000 -0700","change_time":"2019-08-15 10:53:18.713660705 -0700","birth_time":null,"access_time_epoch":1573324476,"access_time_epoch_utc":null,"modify_time_epoch":1523404878,"modify_time_epoch_utc":null,"change_time_epoch":1565891598,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/zcmp","size":1760,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338648,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-04-10 17:01:18.000000000 -0700","modify_time":"2018-04-10 17:01:18.000000000 -0700","change_time":"2019-08-15 10:53:18.713660705 -0700","birth_time":null,"access_time_epoch":1523404878,"access_time_epoch_utc":null,"modify_time_epoch":1523404878,"modify_time_epoch_utc":null,"change_time_epoch":1565891598,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/zdiff","size":5768,"blocks":16,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338649,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-04-10 17:01:18.000000000 -0700","modify_time":"2018-04-10 17:01:18.000000000 -0700","change_time":"2019-08-15 10:53:18.713660705 -0700","birth_time":null,"access_time_epoch":1523404878,"access_time_epoch_utc":null,"modify_time_epoch":1523404878,"modify_time_epoch_utc":null,"change_time_epoch":1565891598,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/zegrep","size":123,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338650,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-04-10 17:01:18.000000000 -0700","modify_time":"2018-04-10 17:01:18.000000000 -0700","change_time":"2019-08-15 10:53:18.713660705 -0700","birth_time":null,"access_time_epoch":1523404878,"access_time_epoch_utc":null,"modify_time_epoch":1523404878,"modify_time_epoch_utc":null,"change_time_epoch":1565891598,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/zfgrep","size":123,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338651,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-04-10 17:01:18.000000000 -0700","modify_time":"2018-04-10 17:01:18.000000000 -0700","change_time":"2019-08-15 10:53:18.714660705 -0700","birth_time":null,"access_time_epoch":1523404878,"access_time_epoch_utc":null,"modify_time_epoch":1523404878,"modify_time_epoch_utc":null,"change_time_epoch":1565891598,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/zforce","size":2144,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338652,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-04-10 17:01:18.000000000 -0700","modify_time":"2018-04-10 17:01:18.000000000 -0700","change_time":"2019-08-15 10:53:18.714660705 -0700","birth_time":null,"access_time_epoch":1523404878,"access_time_epoch_utc":null,"modify_time_epoch":1523404878,"modify_time_epoch_utc":null,"change_time_epoch":1565891598,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/zgrep","size":6132,"blocks":16,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338653,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-10-21 13:17:59.965410992 -0700","modify_time":"2018-04-10 17:01:18.000000000 -0700","change_time":"2019-08-15 10:53:18.714660705 -0700","birth_time":null,"access_time_epoch":1571689079,"access_time_epoch_utc":null,"modify_time_epoch":1523404878,"modify_time_epoch_utc":null,"change_time_epoch":1565891598,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/zless","size":2041,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338654,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-04-10 17:01:18.000000000 -0700","modify_time":"2018-04-10 17:01:18.000000000 -0700","change_time":"2019-08-15 10:53:18.714660705 -0700","birth_time":null,"access_time_epoch":1523404878,"access_time_epoch_utc":null,"modify_time_epoch":1523404878,"modify_time_epoch_utc":null,"change_time_epoch":1565891598,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/zmore","size":2859,"blocks":8,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338655,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-04-10 17:01:18.000000000 -0700","modify_time":"2018-04-10 17:01:18.000000000 -0700","change_time":"2019-08-15 10:53:18.715660705 -0700","birth_time":null,"access_time_epoch":1523404878,"access_time_epoch_utc":null,"modify_time_epoch":1523404878,"modify_time_epoch_utc":null,"change_time_epoch":1565891598,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/znew","size":5343,"blocks":16,"io_blocks":4096,"type":"regular file","device":"fd00h/64768d","inode":50338656,"links":1,"access":"0755","flags":"-rwxr-xr-x","uid":0,"user":"root","gid":0,"group":"root","access_time":"2018-04-10 17:01:18.000000000 -0700","modify_time":"2018-04-10 17:01:18.000000000 -0700","change_time":"2019-08-15 10:53:18.715660705 -0700","birth_time":null,"access_time_epoch":1523404878,"access_time_epoch_utc":null,"modify_time_epoch":1523404878,"modify_time_epoch_utc":null,"change_time_epoch":1565891598,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null},{"file":"/bin/zsoelim","link_to":"soelim","size":6,"blocks":0,"io_blocks":4096,"type":"symbolic link","device":"fd00h/64768d","inode":50339162,"links":1,"access":"0777","flags":"lrwxrwxrwx","uid":0,"user":"root","gid":0,"group":"root","access_time":"2019-11-11 13:58:08.531934817 -0800","modify_time":"2019-08-15 10:53:20.675660744 -0700","change_time":"2019-08-15 10:53:20.675660744 -0700","birth_time":null,"access_time_epoch":1573509488,"access_time_epoch_utc":null,"modify_time_epoch":1565891600,"modify_time_epoch_utc":null,"change_time_epoch":1565891600,"change_time_epoch_utc":null,"birth_time_epoch":null,"birth_time_epoch_utc":null}] jc-1.17.3/tests/fixtures/centos-7.7/stat.out000066400000000000000000011015411415226333200205260ustar00rootroot00000000000000 File: ‘/bin/[’ Size: 41488 Blocks: 88 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332811 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.422473404 -0700 Birth: - File: ‘/bin/a2p’ Size: 107904 Blocks: 216 IO Block: 4096 regular file Device: fd00h/64768d Inode: 51051551 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-01-21 14:10:13.000000000 -0800 Modify: 2019-01-21 14:10:13.000000000 -0800 Change: 2019-10-15 11:27:59.084410287 -0700 Birth: - File: ‘/bin/addr2line’ Size: 29200 Blocks: 64 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50356928 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 16:14:33.000000000 -0700 Modify: 2019-08-08 16:14:33.000000000 -0700 Change: 2019-10-16 09:21:37.594083400 -0700 Birth: - File: ‘/bin/alias’ Size: 29 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332500 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 05:06:55.000000000 -0700 Modify: 2019-08-08 05:06:55.000000000 -0700 Change: 2019-10-16 09:21:18.468553218 -0700 Birth: - File: ‘/bin/apropos’ -> ‘whatis’ Size: 6 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50696669 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.364014882 -0800 Modify: 2019-08-15 10:53:56.781085248 -0700 Change: 2019-08-15 10:53:56.781085248 -0700 Birth: - File: ‘/bin/ar’ Size: 62744 Blocks: 128 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50356929 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 16:14:33.000000000 -0700 Modify: 2019-08-08 16:14:33.000000000 -0700 Change: 2019-10-16 09:21:37.597333462 -0700 Birth: - File: ‘/bin/arch’ Size: 33080 Blocks: 72 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332812 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-21 13:17:58.677388778 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.423556758 -0700 Birth: - File: ‘/bin/as’ Size: 378128 Blocks: 744 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50356930 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 16:14:33.000000000 -0700 Modify: 2019-08-08 16:14:33.000000000 -0700 Change: 2019-10-16 09:21:37.619000540 -0700 Birth: - File: ‘/bin/aserver’ Size: 28888 Blocks: 64 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50696840 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 05:00:59.000000000 -0700 Modify: 2019-08-08 05:00:59.000000000 -0700 Change: 2019-10-16 09:23:01.333008340 -0700 Birth: - File: ‘/bin/audit2allow’ Size: 14554 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50358246 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 18:47:27.000000000 -0700 Modify: 2019-08-08 18:47:27.000000000 -0700 Change: 2019-10-16 09:22:16.308819242 -0700 Birth: - File: ‘/bin/audit2why’ -> ‘audit2allow’ Size: 11 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50360924 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.364014882 -0800 Modify: 2019-10-16 09:22:16.308819242 -0700 Change: 2019-10-16 09:22:16.309902596 -0700 Birth: - File: ‘/bin/aulast’ Size: 15856 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50705021 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 05:06:06.000000000 -0700 Modify: 2019-08-08 05:06:06.000000000 -0700 Change: 2019-10-16 09:22:48.610099852 -0700 Birth: - File: ‘/bin/aulastlog’ Size: 11624 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50705022 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 05:06:06.000000000 -0700 Modify: 2019-08-08 05:06:06.000000000 -0700 Change: 2019-10-16 09:22:48.614433268 -0700 Birth: - File: ‘/bin/ausyscall’ Size: 11448 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50705023 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 05:06:06.000000000 -0700 Modify: 2019-08-08 05:06:06.000000000 -0700 Change: 2019-10-16 09:22:48.619850037 -0700 Birth: - File: ‘/bin/auvirt’ Size: 32696 Blocks: 64 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50705024 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 05:06:06.000000000 -0700 Modify: 2019-08-08 05:06:06.000000000 -0700 Change: 2019-10-16 09:22:48.626350161 -0700 Birth: - File: ‘/bin/awk’ -> ‘gawk’ Size: 4 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50338321 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 11:01:01.910381617 -0800 Modify: 2019-08-15 10:53:16.252660657 -0700 Change: 2019-08-15 10:53:16.252660657 -0700 Birth: - File: ‘/bin/base64’ Size: 37360 Blocks: 80 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332813 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.425723465 -0700 Birth: - File: ‘/bin/basename’ Size: 29032 Blocks: 64 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332814 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 12:01:01.542856390 -0800 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.433306943 -0700 Birth: - File: ‘/bin/bash’ Size: 964600 Blocks: 1888 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332501 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:shell_exec_t:s0 Access: 2019-11-11 10:40:01.506631148 -0800 Modify: 2019-08-08 05:06:56.000000000 -0700 Change: 2019-10-16 09:21:18.568221779 -0700 Birth: - File: ‘/bin/bashbug’ -> ‘bashbug-64’ Size: 10 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50332502 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.365098237 -0800 Modify: 2019-10-16 09:21:18.568221779 -0700 Change: 2019-10-16 09:21:18.568221779 -0700 Birth: - File: ‘/bin/bashbug-64’ Size: 6964 Blocks: 16 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332503 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 05:06:52.000000000 -0700 Modify: 2019-08-08 05:06:52.000000000 -0700 Change: 2019-10-16 09:21:18.569305133 -0700 Birth: - File: ‘/bin/bg’ Size: 26 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332504 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 05:06:55.000000000 -0700 Modify: 2019-08-08 05:06:55.000000000 -0700 Change: 2019-10-16 09:21:18.570388487 -0700 Birth: - File: ‘/bin/bond2team’ Size: 23289 Blocks: 48 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50357045 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-03-17 10:41:23.000000000 -0700 Modify: 2017-03-17 10:41:23.000000000 -0700 Change: 2019-10-16 09:21:41.884164941 -0700 Birth: - File: ‘/bin/bootctl’ Size: 70648 Blocks: 144 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359981 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-09-13 11:21:23.000000000 -0700 Modify: 2019-09-13 11:21:23.000000000 -0700 Change: 2019-10-16 09:21:45.240395398 -0700 Birth: - File: ‘/bin/busctl’ Size: 408680 Blocks: 800 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359982 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-09-13 11:21:23.000000000 -0700 Modify: 2019-09-13 11:21:23.000000000 -0700 Change: 2019-10-16 09:21:45.269645954 -0700 Birth: - File: ‘/bin/c2ph’ Size: 36607 Blocks: 72 IO Block: 4096 regular file Device: fd00h/64768d Inode: 51052239 Links: 2 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-01-21 14:09:44.000000000 -0800 Modify: 2019-01-21 14:09:44.000000000 -0800 Change: 2019-10-15 11:28:01.078451844 -0700 Birth: - File: ‘/bin/cal’ Size: 37688 Blocks: 80 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50358260 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.525510464 -0700 Birth: - File: ‘/bin/ca-legacy’ Size: 1638 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338431 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-15 10:53:17.048660672 -0700 Modify: 2018-05-14 07:10:13.000000000 -0700 Change: 2019-08-15 10:53:16.999660671 -0700 Birth: - File: ‘/bin/captoinfo’ -> ‘tic’ Size: 3 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50332896 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.366181591 -0800 Modify: 2019-08-15 10:53:08.877660512 -0700 Change: 2019-08-15 10:53:08.877660512 -0700 Birth: - File: ‘/bin/cat’ Size: 54080 Blocks: 112 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332815 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 10:45:43.162713038 -0800 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.436557005 -0700 Birth: - File: ‘/bin/catchsegv’ Size: 3336 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332742 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-06 16:02:59.000000000 -0700 Modify: 2019-08-06 16:02:59.000000000 -0700 Change: 2019-10-16 09:21:18.993979872 -0700 Birth: - File: ‘/bin/catman’ Size: 37632 Blocks: 80 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50696670 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-10-30 13:26:36.000000000 -0700 Modify: 2018-10-30 13:26:36.000000000 -0700 Change: 2019-08-15 10:53:56.782085265 -0700 Birth: - File: ‘/bin/cd’ Size: 26 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332508 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 05:06:55.000000000 -0700 Modify: 2019-08-08 05:06:55.000000000 -0700 Change: 2019-10-16 09:21:18.570388487 -0700 Birth: - File: ‘/bin/centrino-decode’ Size: 6280 Blocks: 16 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50392013 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-09-30 07:30:32.000000000 -0700 Modify: 2019-09-30 07:30:32.000000000 -0700 Change: 2019-10-16 09:22:58.976713551 -0700 Birth: - File: ‘/bin/certutil’ Size: 175760 Blocks: 344 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359404 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-12 08:55:47.000000000 -0700 Modify: 2019-08-12 08:55:47.000000000 -0700 Change: 2019-10-16 09:23:00.585494132 -0700 Birth: - File: ‘/bin/c++filt’ Size: 28664 Blocks: 56 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50356931 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 16:14:33.000000000 -0700 Modify: 2019-08-08 16:14:33.000000000 -0700 Change: 2019-10-16 09:21:37.619000540 -0700 Birth: - File: ‘/bin/chacl’ Size: 15640 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359693 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-04-10 17:41:22.000000000 -0700 Modify: 2018-04-10 17:41:22.000000000 -0700 Change: 2019-08-15 10:53:27.668660881 -0700 Birth: - File: ‘/bin/chage’ Size: 73888 Blocks: 152 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338547 Links: 1 Access: (4755/-rwsr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:passwd_exec_t:s0 Access: 2019-08-08 19:51:01.000000000 -0700 Modify: 2019-08-08 19:51:01.000000000 -0700 Change: 2019-10-16 09:21:29.348676681 -0700 Birth: - File: ‘/bin/chattr’ Size: 11616 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360036 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 16:15:11.000000000 -0700 Modify: 2019-08-08 16:15:11.000000000 -0700 Change: 2019-10-16 09:22:59.199884461 -0700 Birth: - File: ‘/bin/chcat’ Size: 13430 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360959 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 18:47:27.000000000 -0700 Modify: 2019-08-08 18:47:27.000000000 -0700 Change: 2019-10-16 09:22:16.314236011 -0700 Birth: - File: ‘/bin/chcon’ Size: 62936 Blocks: 128 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332816 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-16 09:21:43.413860682 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.440890420 -0700 Birth: - File: ‘/bin/checkmodule’ Size: 410096 Blocks: 808 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50742503 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-10-30 14:48:39.000000000 -0700 Modify: 2018-10-30 14:48:39.000000000 -0700 Change: 2019-08-15 12:00:20.000613469 -0700 Birth: - File: ‘/bin/checkpolicy’ Size: 422360 Blocks: 832 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50742504 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:checkpolicy_exec_t:s0 Access: 2018-10-30 14:48:39.000000000 -0700 Modify: 2018-10-30 14:48:39.000000000 -0700 Change: 2019-08-15 12:00:20.024613944 -0700 Birth: - File: ‘/bin/chfn’ Size: 23968 Blocks: 48 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50358261 Links: 1 Access: (4711/-rws--x--x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:chfn_exec_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.526593818 -0700 Birth: - File: ‘/bin/chgrp’ Size: 62784 Blocks: 128 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332817 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-16 09:21:47.447187342 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.448473897 -0700 Birth: - File: ‘/bin/chmem’ Size: 41400 Blocks: 88 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50358262 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.534177294 -0700 Birth: - File: ‘/bin/chmod’ Size: 58592 Blocks: 120 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332818 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-26 09:54:51.937914557 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.449557251 -0700 Birth: - File: ‘/bin/chown’ Size: 62824 Blocks: 128 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332819 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-16 09:21:43.401943789 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.457140729 -0700 Birth: - File: ‘/bin/chronyc’ Size: 87072 Blocks: 176 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50705053 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:chronyc_exec_t:s0 Access: 2019-11-11 13:54:20.263739421 -0800 Modify: 2019-08-08 04:40:18.000000000 -0700 Change: 2019-10-16 09:22:50.569887101 -0700 Birth: - File: ‘/bin/chrt’ Size: 32944 Blocks: 72 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50358263 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.535260648 -0700 Birth: - File: ‘/bin/chsh’ Size: 23880 Blocks: 48 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50358264 Links: 1 Access: (4711/-rws--x--x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:chfn_exec_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.536344002 -0700 Birth: - File: ‘/bin/chvt’ Size: 11480 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50572243 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-10-30 15:39:49.000000000 -0700 Modify: 2018-10-30 15:39:49.000000000 -0700 Change: 2019-08-15 10:53:46.180899675 -0700 Birth: - File: ‘/bin/cifsiostat’ Size: 49672 Blocks: 104 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50426652 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 19:54:58.000000000 -0700 Modify: 2019-08-08 19:54:58.000000000 -0700 Change: 2019-10-29 23:35:07.178779359 -0700 Birth: - File: ‘/bin/cksum’ Size: 33152 Blocks: 72 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332820 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.458224083 -0700 Birth: - File: ‘/bin/clear’ Size: 7192 Blocks: 16 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332897 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-03 11:02:44.257553638 -0800 Modify: 2017-09-06 15:08:20.000000000 -0700 Change: 2019-08-15 10:53:08.877660512 -0700 Birth: - File: ‘/bin/cmp’ Size: 45272 Blocks: 96 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359090 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-09 10:34:30.283999927 -0800 Modify: 2019-08-08 16:11:12.000000000 -0700 Change: 2019-10-16 09:21:32.349567052 -0700 Birth: - File: ‘/bin/cmsutil’ Size: 104912 Blocks: 208 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360903 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-12 08:55:47.000000000 -0700 Modify: 2019-08-12 08:55:47.000000000 -0700 Change: 2019-10-16 09:23:00.597411025 -0700 Birth: - File: ‘/bin/col’ Size: 24448 Blocks: 48 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50358265 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.542844126 -0700 Birth: - File: ‘/bin/colcrt’ Size: 11560 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50358266 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.543927480 -0700 Birth: - File: ‘/bin/colrm’ Size: 24352 Blocks: 48 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50358267 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.543927480 -0700 Birth: - File: ‘/bin/column’ Size: 28664 Blocks: 56 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50358268 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-10 07:30:04.116422612 -0800 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.545010834 -0700 Birth: - File: ‘/bin/comm’ Size: 37424 Blocks: 80 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332821 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-16 09:23:37.785701188 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.459307436 -0700 Birth: - File: ‘/bin/command’ Size: 31 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332509 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 05:06:55.000000000 -0700 Modify: 2019-08-08 05:06:55.000000000 -0700 Change: 2019-10-16 09:21:18.570388487 -0700 Birth: - File: ‘/bin/container-storage-setup’ Size: 75750 Blocks: 152 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50742450 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-09 10:34:30.449999925 -0800 Modify: 2018-06-12 12:44:45.000000000 -0700 Change: 2019-08-15 12:00:19.392601456 -0700 Birth: - File: ‘/bin/coredumpctl’ Size: 158200 Blocks: 312 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359983 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-09-13 11:21:23.000000000 -0700 Modify: 2019-09-13 11:21:23.000000000 -0700 Change: 2019-10-16 09:21:45.275062724 -0700 Birth: - File: ‘/bin/cp’ Size: 155176 Blocks: 304 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332822 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-21 13:17:58.642388174 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.469057622 -0700 Birth: - File: ‘/bin/cpio’ Size: 145960 Blocks: 288 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338658 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-09 10:34:35.794776806 -0800 Modify: 2018-04-10 16:51:51.000000000 -0700 Change: 2019-08-15 10:53:18.748660706 -0700 Birth: - File: ‘/bin/cpupower’ Size: 67928 Blocks: 136 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50392014 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-09-30 07:30:32.000000000 -0700 Modify: 2019-09-30 07:30:32.000000000 -0700 Change: 2019-10-16 09:22:58.990797152 -0700 Birth: - File: ‘/bin/crlutil’ Size: 121744 Blocks: 240 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359243 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-12 08:55:47.000000000 -0700 Modify: 2019-08-12 08:55:47.000000000 -0700 Change: 2019-10-16 09:23:00.610411272 -0700 Birth: - File: ‘/bin/crontab’ Size: 57656 Blocks: 120 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50358244 Links: 1 Access: (4755/-rwsr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:crontab_exec_t:s0 Access: 2019-11-10 15:29:40.128315155 -0800 Modify: 2019-08-08 16:07:24.000000000 -0700 Change: 2019-10-16 09:22:15.850560532 -0700 Birth: - File: ‘/bin/csplit’ Size: 49992 Blocks: 104 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332823 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.475557745 -0700 Birth: - File: ‘/bin/csslint-0.6’ Size: 20096 Blocks: 40 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338827 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-10-30 11:03:17.000000000 -0700 Modify: 2018-10-30 11:03:17.000000000 -0700 Change: 2019-08-15 10:53:19.717660725 -0700 Birth: - File: ‘/bin/curl’ Size: 156728 Blocks: 312 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50357005 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-01 15:20:53.366401162 -0700 Modify: 2019-08-08 04:42:29.000000000 -0700 Change: 2019-10-16 09:21:39.578787789 -0700 Birth: - File: ‘/bin/cut’ Size: 41576 Blocks: 88 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332824 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-09 10:34:35.060761919 -0800 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.476641099 -0700 Birth: - File: ‘/bin/cvtsudoers’ Size: 247440 Blocks: 488 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50705100 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 19:58:09.000000000 -0700 Modify: 2019-08-08 19:58:09.000000000 -0700 Change: 2019-10-16 09:22:58.006028438 -0700 Birth: - File: ‘/bin/date’ Size: 62200 Blocks: 128 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332825 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 10:40:01.512047915 -0800 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.480974515 -0700 Birth: - File: ‘/bin/db_archive’ Size: 11496 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359726 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 17:18:22.000000000 -0700 Modify: 2019-08-08 17:18:22.000000000 -0700 Change: 2019-10-16 09:21:36.933237505 -0700 Birth: - File: ‘/bin/db_checkpoint’ Size: 11576 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359372 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 17:18:22.000000000 -0700 Modify: 2019-08-08 17:18:22.000000000 -0700 Change: 2019-10-16 09:21:36.939737629 -0700 Birth: - File: ‘/bin/db_deadlock’ Size: 11584 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359373 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 17:18:22.000000000 -0700 Modify: 2019-08-08 17:18:22.000000000 -0700 Change: 2019-10-16 09:21:36.945154399 -0700 Birth: - File: ‘/bin/db_dump’ Size: 15696 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359374 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 17:18:22.000000000 -0700 Modify: 2019-08-08 17:18:22.000000000 -0700 Change: 2019-10-16 09:21:36.950571168 -0700 Birth: - File: ‘/bin/db_dump185’ Size: 65992 Blocks: 136 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359375 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 17:18:22.000000000 -0700 Modify: 2019-08-08 17:18:22.000000000 -0700 Change: 2019-10-16 09:21:36.957071292 -0700 Birth: - File: ‘/bin/db_hotbackup’ Size: 15712 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359376 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 17:18:22.000000000 -0700 Modify: 2019-08-08 17:18:22.000000000 -0700 Change: 2019-10-16 09:21:36.962488062 -0700 Birth: - File: ‘/bin/db_load’ Size: 28168 Blocks: 56 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359377 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 17:18:22.000000000 -0700 Modify: 2019-08-08 17:18:22.000000000 -0700 Change: 2019-10-16 09:21:36.968988185 -0700 Birth: - File: ‘/bin/db_log_verify’ Size: 15704 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359378 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 17:18:22.000000000 -0700 Modify: 2019-08-08 17:18:22.000000000 -0700 Change: 2019-10-16 09:21:36.973321601 -0700 Birth: - File: ‘/bin/db_printlog’ Size: 33032 Blocks: 72 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359379 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 17:18:22.000000000 -0700 Modify: 2019-08-08 17:18:22.000000000 -0700 Change: 2019-10-16 09:21:36.978738371 -0700 Birth: - File: ‘/bin/db_recover’ Size: 11600 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359380 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 17:18:22.000000000 -0700 Modify: 2019-08-08 17:18:22.000000000 -0700 Change: 2019-10-16 09:21:36.984155140 -0700 Birth: - File: ‘/bin/db_replicate’ Size: 15712 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359381 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 17:18:22.000000000 -0700 Modify: 2019-08-08 17:18:22.000000000 -0700 Change: 2019-10-16 09:21:36.988488556 -0700 Birth: - File: ‘/bin/db_stat’ Size: 15624 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359382 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-16 09:23:43.984550264 -0700 Modify: 2019-08-08 17:18:22.000000000 -0700 Change: 2019-10-16 09:21:36.993905326 -0700 Birth: - File: ‘/bin/db_tuner’ Size: 19792 Blocks: 40 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359383 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 17:18:22.000000000 -0700 Modify: 2019-08-08 17:18:22.000000000 -0700 Change: 2019-10-16 09:21:36.999322095 -0700 Birth: - File: ‘/bin/db_upgrade’ Size: 11504 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359384 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 17:18:22.000000000 -0700 Modify: 2019-08-08 17:18:22.000000000 -0700 Change: 2019-10-16 09:21:37.005822219 -0700 Birth: - File: ‘/bin/dbus-binding-tool’ Size: 96760 Blocks: 192 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50400619 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2014-06-09 21:06:04.000000000 -0700 Modify: 2014-06-09 21:06:04.000000000 -0700 Change: 2019-08-15 10:53:36.501730065 -0700 Birth: - File: ‘/bin/dbus-cleanup-sockets’ Size: 11344 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360531 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-03-14 03:18:08.000000000 -0700 Modify: 2019-03-14 03:18:08.000000000 -0700 Change: 2019-08-15 12:01:16.983924641 -0700 Birth: - File: ‘/bin/dbus-daemon’ Size: 223320 Blocks: 440 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360532 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:dbusd_exec_t:s0 Access: 2019-11-09 10:34:30.457999925 -0800 Modify: 2019-03-14 03:18:08.000000000 -0700 Change: 2019-08-15 12:01:17.003925119 -0700 Birth: - File: ‘/bin/dbus-monitor’ Size: 23760 Blocks: 48 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360538 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-10 20:47:12.907472714 -0800 Modify: 2019-03-14 03:18:08.000000000 -0700 Change: 2019-08-15 12:01:17.006925191 -0700 Birth: - File: ‘/bin/dbus-run-session’ Size: 15408 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360540 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-03-14 03:18:08.000000000 -0700 Modify: 2019-03-14 03:18:08.000000000 -0700 Change: 2019-08-15 12:01:17.009925263 -0700 Birth: - File: ‘/bin/dbus-send’ Size: 27800 Blocks: 56 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360541 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-09 10:34:34.447749486 -0800 Modify: 2019-03-14 03:18:08.000000000 -0700 Change: 2019-08-15 12:01:17.013925358 -0700 Birth: - File: ‘/bin/dbus-test-tool’ Size: 23768 Blocks: 48 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360542 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-03-14 03:18:08.000000000 -0700 Modify: 2019-03-14 03:18:08.000000000 -0700 Change: 2019-08-15 12:01:17.017925454 -0700 Birth: - File: ‘/bin/dbus-update-activation-environment’ Size: 15480 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360543 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-03-14 03:18:08.000000000 -0700 Modify: 2019-03-14 03:18:08.000000000 -0700 Change: 2019-08-15 12:01:17.020925526 -0700 Birth: - File: ‘/bin/dbus-uuidgen’ Size: 11328 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360544 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-03-14 03:18:08.000000000 -0700 Modify: 2019-03-14 03:18:08.000000000 -0700 Change: 2019-08-15 12:01:17.023925597 -0700 Birth: - File: ‘/bin/db_verify’ Size: 11520 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359385 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 17:18:22.000000000 -0700 Modify: 2019-08-08 17:18:22.000000000 -0700 Change: 2019-10-16 09:21:37.011238988 -0700 Birth: - File: ‘/bin/dd’ Size: 74896 Blocks: 152 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332826 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-21 13:18:11.553804686 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.487474639 -0700 Birth: - File: ‘/bin/deallocvt’ Size: 11496 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50572244 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-10-30 15:39:49.000000000 -0700 Modify: 2018-10-30 15:39:49.000000000 -0700 Change: 2019-08-15 10:53:46.180899675 -0700 Birth: - File: ‘/bin/delv’ Size: 41032 Blocks: 88 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50422068 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 05:16:33.000000000 -0700 Modify: 2019-08-08 05:16:33.000000000 -0700 Change: 2019-10-23 10:53:22.845149927 -0700 Birth: - File: ‘/bin/df’ Size: 105016 Blocks: 208 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332827 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-10 14:52:10.807465771 -0800 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.490724700 -0700 Birth: - File: ‘/bin/dgawk’ Size: 514168 Blocks: 1008 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338322 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-06-28 14:52:48.000000000 -0700 Modify: 2017-06-28 14:52:48.000000000 -0700 Change: 2019-08-15 10:53:16.275660657 -0700 Birth: - File: ‘/bin/diff’ Size: 200224 Blocks: 392 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359091 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-16 09:22:13.729353548 -0700 Modify: 2019-08-08 16:11:12.000000000 -0700 Change: 2019-10-16 09:21:32.372317484 -0700 Birth: - File: ‘/bin/diff3’ Size: 62200 Blocks: 128 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359092 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 16:11:12.000000000 -0700 Modify: 2019-08-08 16:11:12.000000000 -0700 Change: 2019-10-16 09:21:32.378817608 -0700 Birth: - File: ‘/bin/dig’ Size: 150568 Blocks: 296 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50422069 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-02 03:58:57.795047423 -0700 Modify: 2019-08-08 05:16:33.000000000 -0700 Change: 2019-10-23 10:53:22.867900350 -0700 Birth: - File: ‘/bin/dir’ Size: 117608 Blocks: 232 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332828 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.499391532 -0700 Birth: - File: ‘/bin/dircolors’ Size: 41408 Blocks: 88 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332829 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-09 10:34:48.477638581 -0800 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.505891656 -0700 Birth: - File: ‘/bin/dirname’ Size: 28992 Blocks: 64 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332830 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-09 10:34:30.526669989 -0800 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.506975009 -0700 Birth: - File: ‘/bin/dmesg’ Size: 49680 Blocks: 104 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50358269 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:dmesg_exec_t:s0 Access: 2019-11-09 10:34:30.472999925 -0800 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.553677665 -0700 Birth: - File: ‘/bin/dnsdomainname’ -> ‘hostname’ Size: 8 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50359101 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.371598363 -0800 Modify: 2019-08-15 10:53:22.912660788 -0700 Change: 2019-08-15 10:53:22.912660788 -0700 Birth: - File: ‘/bin/docker’ Size: 735 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50392665 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:container_runtime_exec_t:s0 Access: 2019-11-11 11:00:01.841671312 -0800 Modify: 2019-09-13 07:25:05.000000000 -0700 Change: 2019-10-16 09:22:26.378593969 -0700 Birth: - File: ‘/bin/docker-containerd’ Size: 717 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50392666 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:container_runtime_exec_t:s0 Access: 2019-11-09 10:34:35.380768409 -0800 Modify: 2019-09-13 07:25:05.000000000 -0700 Change: 2019-10-16 09:22:26.382927385 -0700 Birth: - File: ‘/bin/docker-containerd-current’ Size: 10806520 Blocks: 21112 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50705012 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:container_runtime_exec_t:s0 Access: 2019-11-09 10:34:35.403768876 -0800 Modify: 2019-09-15 07:07:49.000000000 -0700 Change: 2019-10-16 09:22:45.732711828 -0700 Birth: - File: ‘/bin/docker-containerd-shim’ Size: 797 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50392667 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:container_runtime_exec_t:s0 Access: 2019-09-13 07:25:05.000000000 -0700 Modify: 2019-09-13 07:25:05.000000000 -0700 Change: 2019-10-16 09:22:26.388344154 -0700 Birth: - File: ‘/bin/docker-containerd-shim-current’ Size: 2585896 Blocks: 5056 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50705013 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:container_runtime_exec_t:s0 Access: 2019-09-15 07:07:46.000000000 -0700 Modify: 2019-09-15 07:07:46.000000000 -0700 Change: 2019-10-16 09:22:45.839963867 -0700 Birth: - File: ‘/bin/docker-ctr-current’ Size: 10015448 Blocks: 19568 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50705014 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:container_runtime_exec_t:s0 Access: 2019-09-15 07:07:48.000000000 -0700 Modify: 2019-09-15 07:07:48.000000000 -0700 Change: 2019-10-16 09:22:46.300389285 -0700 Birth: - File: ‘/bin/docker-current’ Size: 13156296 Blocks: 25696 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50392669 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:container_runtime_exec_t:s0 Access: 2019-11-11 11:00:01.847088079 -0800 Modify: 2019-09-15 07:07:48.000000000 -0700 Change: 2019-10-16 09:22:27.317861822 -0700 Birth: - File: ‘/bin/dockerd’ Size: 740 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50392668 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:container_runtime_exec_t:s0 Access: 2019-09-13 07:25:05.000000000 -0700 Modify: 2019-09-13 07:25:05.000000000 -0700 Change: 2019-10-16 09:22:26.394844278 -0700 Birth: - File: ‘/bin/dockerd-current’ Size: 33407632 Blocks: 65256 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50705016 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:container_runtime_exec_t:s0 Access: 2019-11-09 10:34:34.692754456 -0800 Modify: 2019-09-15 07:07:46.000000000 -0700 Change: 2019-10-16 09:22:47.881002661 -0700 Birth: - File: ‘/bin/docker-storage-setup’ -> ‘/usr/bin/container-storage-setup’ Size: 32 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50705015 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.372681717 -0800 Modify: 2019-10-16 09:22:46.300389285 -0700 Change: 2019-10-16 09:22:46.302555993 -0700 Birth: - File: ‘/bin/domainname’ -> ‘hostname’ Size: 8 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50359102 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.372681717 -0800 Modify: 2019-08-15 10:53:22.912660788 -0700 Change: 2019-08-15 10:53:22.912660788 -0700 Birth: - File: ‘/bin/dracut’ Size: 57002 Blocks: 112 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359963 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-21 13:17:58.517386018 -0700 Modify: 2019-08-08 16:14:24.000000000 -0700 Change: 2019-10-16 09:21:44.151624704 -0700 Birth: - File: ‘/bin/du’ Size: 112992 Blocks: 224 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332913 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-21 13:18:18.094917499 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.514558487 -0700 Birth: - File: ‘/bin/dumpkeys’ Size: 79440 Blocks: 160 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50572236 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-10-30 15:39:49.000000000 -0700 Modify: 2018-10-30 15:39:49.000000000 -0700 Change: 2019-08-15 10:53:46.171899517 -0700 Birth: - File: ‘/bin/dwp’ Size: 3178136 Blocks: 6208 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50356932 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 16:14:33.000000000 -0700 Modify: 2019-08-08 16:14:33.000000000 -0700 Change: 2019-10-16 09:21:37.775003505 -0700 Birth: - File: ‘/bin/easy_install’ Size: 320 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50742461 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-02 03:18:27.000000000 -0700 Modify: 2017-08-02 03:18:27.000000000 -0700 Change: 2019-08-15 12:00:19.737608273 -0700 Birth: - File: ‘/bin/easy_install-2.7’ Size: 328 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50742462 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-02 03:18:27.000000000 -0700 Modify: 2017-08-02 03:18:27.000000000 -0700 Change: 2019-08-15 12:00:19.737608273 -0700 Birth: - File: ‘/bin/easy_install-3.6’ Size: 234 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50358925 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-07 09:59:54.000000000 -0700 Modify: 2019-08-07 09:59:54.000000000 -0700 Change: 2019-10-15 11:09:07.257104127 -0700 Birth: - File: ‘/bin/echo’ Size: 33088 Blocks: 72 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332914 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-21 13:18:11.122797252 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.515641841 -0700 Birth: - File: ‘/bin/egrep’ Size: 290 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338386 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-09 10:34:35.115763035 -0800 Modify: 2017-08-02 23:58:17.000000000 -0700 Change: 2019-08-15 10:53:16.666660665 -0700 Birth: - File: ‘/bin/eject’ Size: 49984 Blocks: 104 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50358270 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.561261143 -0700 Birth: - File: ‘/bin/elfedit’ Size: 33040 Blocks: 72 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50356933 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 16:14:33.000000000 -0700 Modify: 2019-08-08 16:14:33.000000000 -0700 Change: 2019-10-16 09:21:37.776086859 -0700 Birth: - File: ‘/bin/env’ Size: 29008 Blocks: 64 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332915 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-02 05:06:41.950149595 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.516725195 -0700 Birth: - File: ‘/bin/envsubst’ Size: 36872 Blocks: 80 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359171 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-02 19:24:25.000000000 -0700 Modify: 2017-08-02 19:24:25.000000000 -0700 Change: 2019-08-15 10:53:23.686660803 -0700 Birth: - File: ‘/bin/eqn’ Size: 147880 Blocks: 296 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339142 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2014-06-09 13:17:22.000000000 -0700 Modify: 2014-06-09 13:17:22.000000000 -0700 Change: 2019-08-15 10:53:20.626660743 -0700 Birth: - File: ‘/bin/ex’ -> ‘vi’ Size: 2 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50359446 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.373765072 -0800 Modify: 2019-10-16 09:21:42.248171859 -0700 Change: 2019-10-16 09:21:42.248171859 -0700 Birth: - File: ‘/bin/expand’ Size: 33264 Blocks: 72 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332916 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.517808549 -0700 Birth: - File: ‘/bin/expr’ Size: 37408 Blocks: 80 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332917 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-09 10:34:37.566812745 -0800 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.519975257 -0700 Birth: - File: ‘/bin/factor’ Size: 95528 Blocks: 192 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332918 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.528642088 -0700 Birth: - File: ‘/bin/fallocate’ Size: 28512 Blocks: 56 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50358271 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.562344497 -0700 Birth: - File: ‘/bin/false’ Size: 28928 Blocks: 64 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332919 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.529725442 -0700 Birth: - File: ‘/bin/fc’ Size: 26 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332510 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 05:06:55.000000000 -0700 Modify: 2019-08-08 05:06:55.000000000 -0700 Change: 2019-10-16 09:21:18.571471841 -0700 Birth: - File: ‘/bin/fg’ Size: 26 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332511 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 05:06:55.000000000 -0700 Modify: 2019-08-08 05:06:55.000000000 -0700 Change: 2019-10-16 09:21:18.571471841 -0700 Birth: - File: ‘/bin/fgconsole’ Size: 11504 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50572245 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-10-30 15:39:49.000000000 -0700 Modify: 2018-10-30 15:39:49.000000000 -0700 Change: 2019-08-15 10:53:46.181899692 -0700 Birth: - File: ‘/bin/fgrep’ Size: 290 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338387 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-02 23:58:17.000000000 -0700 Modify: 2017-08-02 23:58:17.000000000 -0700 Change: 2019-08-15 10:53:16.667660665 -0700 Birth: - File: ‘/bin/file’ Size: 19848 Blocks: 40 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338826 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-10-30 11:16:23.000000000 -0700 Modify: 2018-10-30 11:16:23.000000000 -0700 Change: 2019-08-15 10:53:19.669660724 -0700 Birth: - File: ‘/bin/find’ Size: 199304 Blocks: 392 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338676 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-10 23:53:01.539403007 -0800 Modify: 2018-10-30 09:42:55.000000000 -0700 Change: 2019-08-15 10:53:18.853660708 -0700 Birth: - File: ‘/bin/find2perl’ Size: 23614 Blocks: 48 IO Block: 4096 regular file Device: fd00h/64768d Inode: 51051552 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-01-21 14:09:44.000000000 -0800 Modify: 2019-01-21 14:09:44.000000000 -0800 Change: 2019-10-15 11:27:59.085410308 -0700 Birth: - File: ‘/bin/findmnt’ Size: 59768 Blocks: 120 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50358272 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-09 10:34:37.628814002 -0800 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.569927974 -0700 Birth: - File: ‘/bin/fipscheck’ Size: 15736 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359387 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-02 05:47:49.000000000 -0700 Modify: 2017-08-02 05:47:49.000000000 -0700 Change: 2019-08-15 10:53:24.343660816 -0700 Birth: - File: ‘/bin/fipshmac’ Size: 11576 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359388 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-02 05:47:49.000000000 -0700 Modify: 2017-08-02 05:47:49.000000000 -0700 Change: 2019-08-15 10:53:24.344660816 -0700 Birth: - File: ‘/bin/firewall-cmd’ Size: 116196 Blocks: 232 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50440148 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-09-13 11:02:15.000000000 -0700 Modify: 2019-09-13 11:02:15.000000000 -0700 Change: 2019-10-16 09:22:52.168917494 -0700 Birth: - File: ‘/bin/firewall-offline-cmd’ Size: 103607 Blocks: 208 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50440149 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-09-13 11:02:15.000000000 -0700 Modify: 2019-09-13 11:02:15.000000000 -0700 Change: 2019-10-16 09:22:52.180834387 -0700 Birth: - File: ‘/bin/flock’ Size: 24448 Blocks: 48 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50358273 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-09 10:34:34.766755957 -0800 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.569927974 -0700 Birth: - File: ‘/bin/fmt’ Size: 37360 Blocks: 80 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332921 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.537308920 -0700 Birth: - File: ‘/bin/fold’ Size: 37336 Blocks: 80 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332922 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.538392274 -0700 Birth: - File: ‘/bin/free’ Size: 19792 Blocks: 40 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50358300 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-02 05:34:48.619054875 -0700 Modify: 2019-08-08 18:55:49.000000000 -0700 Change: 2019-10-16 09:21:43.595864141 -0700 Birth: - File: ‘/bin/gapplication’ Size: 19944 Blocks: 40 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338754 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 16:38:09.000000000 -0700 Modify: 2019-08-08 16:38:09.000000000 -0700 Change: 2019-10-16 09:21:32.670239813 -0700 Birth: - File: ‘/bin/gawk’ Size: 428584 Blocks: 840 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338323 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 11:01:01.910381617 -0800 Modify: 2017-06-28 14:52:48.000000000 -0700 Change: 2019-08-15 10:53:16.284660657 -0700 Birth: - File: ‘/bin/gdbus’ Size: 41136 Blocks: 88 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338613 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 16:38:09.000000000 -0700 Modify: 2019-08-08 16:38:09.000000000 -0700 Change: 2019-10-16 09:21:32.672406521 -0700 Birth: - File: ‘/bin/gencat’ Size: 23136 Blocks: 48 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332743 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-06 16:23:28.000000000 -0700 Modify: 2019-08-06 16:23:28.000000000 -0700 Change: 2019-10-16 09:21:18.993979872 -0700 Birth: - File: ‘/bin/genl-ctrl-list’ Size: 11544 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 10313 Links: 2 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.487660740 -0700 Birth: - File: ‘/bin/geoiplookup’ Size: 15648 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50357003 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 16:34:37.000000000 -0700 Modify: 2019-08-08 16:34:37.000000000 -0700 Change: 2019-10-16 09:21:39.098862001 -0700 Birth: - File: ‘/bin/geoiplookup6’ Size: 11424 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50357004 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 16:34:37.000000000 -0700 Modify: 2019-08-08 16:34:37.000000000 -0700 Change: 2019-10-16 09:21:39.099945355 -0700 Birth: - File: ‘/bin/geoipupdate’ Size: 32072 Blocks: 64 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50357000 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-12 13:21:19.000000000 -0700 Modify: 2019-08-12 13:21:19.000000000 -0700 Change: 2019-10-16 09:21:39.043610951 -0700 Birth: - File: ‘/bin/geqn’ -> ‘eqn’ Size: 3 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50339143 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.374848426 -0800 Modify: 2019-08-15 10:53:20.626660743 -0700 Change: 2019-08-15 10:53:20.627660743 -0700 Birth: - File: ‘/bin/getconf’ Size: 22920 Blocks: 48 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332809 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-06 16:23:28.000000000 -0700 Modify: 2019-08-06 16:23:28.000000000 -0700 Change: 2019-10-16 09:21:22.911387663 -0700 Birth: - File: ‘/bin/getent’ Size: 27896 Blocks: 56 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332744 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-16 09:21:45.178644224 -0700 Modify: 2019-08-06 16:23:28.000000000 -0700 Change: 2019-10-16 09:21:18.996146580 -0700 Birth: - File: ‘/bin/getfacl’ Size: 24872 Blocks: 56 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359694 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-04-10 17:41:22.000000000 -0700 Modify: 2018-04-10 17:41:22.000000000 -0700 Change: 2019-08-15 10:53:27.669660881 -0700 Birth: - File: ‘/bin/getkeycodes’ Size: 11496 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50572246 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-10-30 15:39:49.000000000 -0700 Modify: 2018-10-30 15:39:49.000000000 -0700 Change: 2019-08-15 10:53:46.181899692 -0700 Birth: - File: ‘/bin/getopt’ Size: 15752 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50358274 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-09 10:34:30.642672325 -0800 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.571011328 -0700 Birth: - File: ‘/bin/getopts’ Size: 31 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332720 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 05:06:55.000000000 -0700 Modify: 2019-08-08 05:06:55.000000000 -0700 Change: 2019-10-16 09:21:18.571471841 -0700 Birth: - File: ‘/bin/gettext’ Size: 36800 Blocks: 72 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359172 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-15 10:56:06.019320481 -0700 Modify: 2017-08-02 19:24:25.000000000 -0700 Change: 2019-08-15 10:53:23.687660803 -0700 Birth: - File: ‘/bin/gettext.sh’ Size: 4629 Blocks: 16 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359173 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-02 19:22:43.000000000 -0700 Modify: 2017-08-02 19:22:43.000000000 -0700 Change: 2019-08-15 10:53:23.687660803 -0700 Birth: - File: ‘/bin/gio’ Size: 75176 Blocks: 152 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338755 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 16:38:09.000000000 -0700 Modify: 2019-08-08 16:38:09.000000000 -0700 Change: 2019-10-16 09:21:32.682156706 -0700 Birth: - File: ‘/bin/gio-querymodules-64’ Size: 11592 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338756 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-16 09:21:33.567256863 -0700 Modify: 2019-08-08 16:38:09.000000000 -0700 Change: 2019-10-16 09:21:32.683240060 -0700 Birth: - File: ‘/bin/git’ Size: 1523792 Blocks: 2984 IO Block: 4096 regular file Device: fd00h/64768d Inode: 33937065 Links: 113 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 09:24:29.856896555 -0800 Modify: 2018-11-19 08:06:35.000000000 -0800 Change: 2019-10-15 11:28:02.773487170 -0700 Birth: - File: ‘/bin/git-receive-pack’ Size: 1523792 Blocks: 2984 IO Block: 4096 regular file Device: fd00h/64768d Inode: 33937065 Links: 113 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 09:24:29.856896555 -0800 Modify: 2018-11-19 08:06:35.000000000 -0800 Change: 2019-10-15 11:28:02.773487170 -0700 Birth: - File: ‘/bin/git-shell’ Size: 735288 Blocks: 1440 IO Block: 4096 regular file Device: fd00h/64768d Inode: 33937066 Links: 2 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:shell_exec_t:s0 Access: 2018-11-19 08:06:35.000000000 -0800 Modify: 2018-11-19 08:06:35.000000000 -0800 Change: 2019-10-15 11:28:02.799487712 -0700 Birth: - File: ‘/bin/git-upload-archive’ Size: 1523792 Blocks: 2984 IO Block: 4096 regular file Device: fd00h/64768d Inode: 33937065 Links: 113 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 09:24:29.856896555 -0800 Modify: 2018-11-19 08:06:35.000000000 -0800 Change: 2019-10-15 11:28:02.773487170 -0700 Birth: - File: ‘/bin/git-upload-pack’ Size: 810448 Blocks: 1584 IO Block: 4096 regular file Device: fd00h/64768d Inode: 33937067 Links: 2 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-11-19 08:06:35.000000000 -0800 Modify: 2018-11-19 08:06:35.000000000 -0800 Change: 2019-10-15 11:28:02.826488275 -0700 Birth: - File: ‘/bin/glib-compile-schemas’ Size: 45440 Blocks: 96 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338778 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 16:38:09.000000000 -0700 Modify: 2019-08-08 16:38:09.000000000 -0700 Change: 2019-10-16 09:21:32.685406768 -0700 Birth: - File: ‘/bin/gmake’ -> ‘make’ Size: 4 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50357049 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.499434185 -0800 Modify: 2019-10-16 09:21:42.040167906 -0700 Change: 2019-10-16 09:21:42.040167906 -0700 Birth: - File: ‘/bin/gneqn’ -> ‘neqn’ Size: 4 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50339144 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.499434185 -0800 Modify: 2019-08-15 10:53:20.627660743 -0700 Change: 2019-08-15 10:53:20.627660743 -0700 Birth: - File: ‘/bin/gnroff’ -> ‘nroff’ Size: 5 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50339145 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.499434185 -0800 Modify: 2019-08-15 10:53:20.627660743 -0700 Change: 2019-08-15 10:53:20.627660743 -0700 Birth: - File: ‘/bin/gpasswd’ Size: 78408 Blocks: 160 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338548 Links: 1 Access: (4755/-rwsr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:groupadd_exec_t:s0 Access: 2019-08-08 19:51:01.000000000 -0700 Modify: 2019-08-08 19:51:01.000000000 -0700 Change: 2019-10-16 09:21:29.355176805 -0700 Birth: - File: ‘/bin/gpg’ -> ‘gpg2’ Size: 4 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50400689 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.500517539 -0800 Modify: 2019-08-15 10:53:36.870736564 -0700 Change: 2019-08-15 10:53:36.870736564 -0700 Birth: - File: ‘/bin/gpg2’ Size: 749976 Blocks: 1472 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50400693 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:gpg_exec_t:s0 Access: 2018-07-13 06:05:25.000000000 -0700 Modify: 2018-07-13 06:05:25.000000000 -0700 Change: 2019-08-15 10:53:36.911737287 -0700 Birth: - File: ‘/bin/gpg-agent’ Size: 296696 Blocks: 584 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50400690 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:gpg_agent_exec_t:s0 Access: 2018-07-13 06:05:25.000000000 -0700 Modify: 2018-07-13 06:05:25.000000000 -0700 Change: 2019-08-15 10:53:36.882736776 -0700 Birth: - File: ‘/bin/gpgconf’ Size: 143680 Blocks: 288 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50400694 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-07-13 06:05:25.000000000 -0700 Modify: 2018-07-13 06:05:25.000000000 -0700 Change: 2019-08-15 10:53:36.915737357 -0700 Birth: - File: ‘/bin/gpg-connect-agent’ Size: 156352 Blocks: 312 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50400691 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-07-13 06:05:25.000000000 -0700 Modify: 2018-07-13 06:05:25.000000000 -0700 Change: 2019-08-15 10:53:36.886736846 -0700 Birth: - File: ‘/bin/gpg-error’ Size: 23736 Blocks: 48 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338630 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2014-06-10 01:46:48.000000000 -0700 Modify: 2014-06-10 01:46:48.000000000 -0700 Change: 2019-08-15 10:53:18.589660703 -0700 Birth: - File: ‘/bin/gpgparsemail’ Size: 24272 Blocks: 48 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50400695 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-07-13 06:05:25.000000000 -0700 Modify: 2018-07-13 06:05:25.000000000 -0700 Change: 2019-08-15 10:53:36.916737375 -0700 Birth: - File: ‘/bin/gpgsplit’ Size: 50056 Blocks: 104 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50400696 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-07-13 06:05:25.000000000 -0700 Modify: 2018-07-13 06:05:25.000000000 -0700 Change: 2019-08-15 10:53:36.917737392 -0700 Birth: - File: ‘/bin/gpgv’ -> ‘gpgv2’ Size: 5 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50400697 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.500517539 -0800 Modify: 2019-08-15 10:53:36.917737392 -0700 Change: 2019-08-15 10:53:36.917737392 -0700 Birth: - File: ‘/bin/gpgv2’ Size: 353672 Blocks: 696 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50400698 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-07-13 06:05:25.000000000 -0700 Modify: 2018-07-13 06:05:25.000000000 -0700 Change: 2019-08-15 10:53:36.924737516 -0700 Birth: - File: ‘/bin/gpg-zip’ Size: 3307 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50400692 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-07-13 06:05:12.000000000 -0700 Modify: 2018-07-13 06:05:12.000000000 -0700 Change: 2019-08-15 10:53:36.886736846 -0700 Birth: - File: ‘/bin/gpic’ -> ‘pic’ Size: 3 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50339146 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.501600893 -0800 Modify: 2019-08-15 10:53:20.627660743 -0700 Change: 2019-08-15 10:53:20.627660743 -0700 Birth: - File: ‘/bin/gprof’ Size: 100832 Blocks: 200 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50356934 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 16:14:33.000000000 -0700 Modify: 2019-08-08 16:14:33.000000000 -0700 Change: 2019-10-16 09:21:37.785837044 -0700 Birth: - File: ‘/bin/grep’ Size: 159024 Blocks: 312 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338388 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 10:45:43.169213160 -0800 Modify: 2017-08-02 23:58:18.000000000 -0700 Change: 2019-08-15 10:53:16.673660665 -0700 Birth: - File: ‘/bin/groff’ Size: 83584 Blocks: 168 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339147 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-10 17:39:49.472469785 -0800 Modify: 2014-06-09 13:17:22.000000000 -0700 Change: 2019-08-15 10:53:20.630660743 -0700 Birth: - File: ‘/bin/grops’ Size: 144232 Blocks: 288 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339148 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2014-06-09 13:17:22.000000000 -0700 Modify: 2014-06-09 13:17:22.000000000 -0700 Change: 2019-08-15 10:53:20.635660743 -0700 Birth: - File: ‘/bin/grotty’ Size: 100952 Blocks: 200 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339149 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-10 17:39:49.473553141 -0800 Modify: 2014-06-09 13:17:22.000000000 -0700 Change: 2019-08-15 10:53:20.637660743 -0700 Birth: - File: ‘/bin/groups’ Size: 33192 Blocks: 72 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332923 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.539475627 -0700 Birth: - File: ‘/bin/grub2-editenv’ Size: 401448 Blocks: 792 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360677 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-17 11:27:34.996854218 -0700 Modify: 2019-08-08 04:31:09.000000000 -0700 Change: 2019-10-16 09:21:49.081968414 -0700 Birth: - File: ‘/bin/grub2-file’ Size: 833888 Blocks: 1632 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359991 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 04:31:09.000000000 -0700 Modify: 2019-08-08 04:31:09.000000000 -0700 Change: 2019-10-16 09:21:49.210887531 -0700 Birth: - File: ‘/bin/grub2-fstest’ Size: 1062640 Blocks: 2080 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50391962 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 04:31:09.000000000 -0700 Modify: 2019-08-08 04:31:09.000000000 -0700 Change: 2019-10-16 09:22:13.976358243 -0700 Birth: - File: ‘/bin/grub2-glue-efi’ Size: 260920 Blocks: 512 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50391963 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 04:31:09.000000000 -0700 Modify: 2019-08-08 04:31:09.000000000 -0700 Change: 2019-10-16 09:22:14.000192029 -0700 Birth: - File: ‘/bin/grub2-kbdcomp’ Size: 1668 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50391964 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 04:31:03.000000000 -0700 Modify: 2019-08-08 04:31:03.000000000 -0700 Change: 2019-10-16 09:22:14.001275383 -0700 Birth: - File: ‘/bin/grub2-menulst2cfg’ Size: 243520 Blocks: 480 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359992 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 04:31:09.000000000 -0700 Modify: 2019-08-08 04:31:09.000000000 -0700 Change: 2019-10-16 09:21:49.231471256 -0700 Birth: - File: ‘/bin/grub2-mkfont’ Size: 290400 Blocks: 568 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50391965 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 04:31:09.000000000 -0700 Modify: 2019-08-08 04:31:09.000000000 -0700 Change: 2019-10-16 09:22:14.024025815 -0700 Birth: - File: ‘/bin/grub2-mkimage’ Size: 384136 Blocks: 752 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50391966 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 04:31:09.000000000 -0700 Modify: 2019-08-08 04:31:09.000000000 -0700 Change: 2019-10-16 09:22:14.059776495 -0700 Birth: - File: ‘/bin/grub2-mklayout’ Size: 267120 Blocks: 528 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359998 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 04:31:09.000000000 -0700 Modify: 2019-08-08 04:31:09.000000000 -0700 Change: 2019-10-16 09:22:14.086860343 -0700 Birth: - File: ‘/bin/grub2-mknetdir’ Size: 435960 Blocks: 856 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360012 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 04:31:09.000000000 -0700 Modify: 2019-08-08 04:31:09.000000000 -0700 Change: 2019-10-16 09:22:14.124777731 -0700 Birth: - File: ‘/bin/grub2-mkpasswd-pbkdf2’ Size: 273720 Blocks: 536 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359954 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 04:31:09.000000000 -0700 Modify: 2019-08-08 04:31:09.000000000 -0700 Change: 2019-10-16 09:21:49.107968908 -0700 Birth: - File: ‘/bin/grub2-mkrelpath’ Size: 260568 Blocks: 512 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359993 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 04:31:09.000000000 -0700 Modify: 2019-08-08 04:31:09.000000000 -0700 Change: 2019-10-16 09:21:49.245554857 -0700 Birth: - File: ‘/bin/grub2-mkrescue’ Size: 1025760 Blocks: 2008 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360013 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 04:31:09.000000000 -0700 Modify: 2019-08-08 04:31:09.000000000 -0700 Change: 2019-10-16 09:22:14.221196229 -0700 Birth: - File: ‘/bin/grub2-mkstandalone’ Size: 538880 Blocks: 1056 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360014 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 04:31:09.000000000 -0700 Modify: 2019-08-08 04:31:09.000000000 -0700 Change: 2019-10-16 09:22:14.267780448 -0700 Birth: - File: ‘/bin/grub2-render-label’ Size: 842904 Blocks: 1648 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359994 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 04:31:09.000000000 -0700 Modify: 2019-08-08 04:31:09.000000000 -0700 Change: 2019-10-16 09:21:49.297555845 -0700 Birth: - File: ‘/bin/grub2-script-check’ Size: 298368 Blocks: 584 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359995 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 04:31:09.000000000 -0700 Modify: 2019-08-08 04:31:09.000000000 -0700 Change: 2019-10-16 09:21:49.315972862 -0700 Birth: - File: ‘/bin/grub2-syslinux2cfg’ Size: 769672 Blocks: 1504 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360016 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 04:31:09.000000000 -0700 Modify: 2019-08-08 04:31:09.000000000 -0700 Change: 2019-10-16 09:22:14.337115099 -0700 Birth: - File: ‘/bin/gsettings’ Size: 24376 Blocks: 48 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338779 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 16:38:09.000000000 -0700 Modify: 2019-08-08 16:38:09.000000000 -0700 Change: 2019-10-16 09:21:32.686490122 -0700 Birth: - File: ‘/bin/gsoelim’ -> ‘soelim’ Size: 6 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50339150 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.502684248 -0800 Modify: 2019-08-15 10:53:20.637660743 -0700 Change: 2019-08-15 10:53:20.637660743 -0700 Birth: - File: ‘/bin/gtar’ -> ‘tar’ Size: 3 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50359668 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.502684248 -0800 Modify: 2019-08-15 10:53:27.467660877 -0700 Change: 2019-08-15 10:53:27.467660877 -0700 Birth: - File: ‘/bin/gtbl’ -> ‘tbl’ Size: 3 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50339151 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.502684248 -0800 Modify: 2019-08-15 10:53:20.637660743 -0700 Change: 2019-08-15 10:53:20.637660743 -0700 Birth: - File: ‘/bin/gtroff’ -> ‘troff’ Size: 5 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50339152 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.502684248 -0800 Modify: 2019-08-15 10:53:20.637660743 -0700 Change: 2019-08-15 10:53:20.637660743 -0700 Birth: - File: ‘/bin/gunzip’ Size: 2253 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338644 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-04-10 17:01:18.000000000 -0700 Modify: 2018-04-10 17:01:18.000000000 -0700 Change: 2019-08-15 10:53:18.708660705 -0700 Birth: - File: ‘/bin/gzexe’ Size: 5931 Blocks: 16 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338645 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-04-10 17:01:18.000000000 -0700 Modify: 2018-04-10 17:01:18.000000000 -0700 Change: 2019-08-15 10:53:18.708660705 -0700 Birth: - File: ‘/bin/gzip’ Size: 100800 Blocks: 200 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338646 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-09 10:34:28.932999944 -0800 Modify: 2018-04-10 17:01:18.000000000 -0700 Change: 2019-08-15 10:53:18.712660705 -0700 Birth: - File: ‘/bin/h2ph’ Size: 28310 Blocks: 56 IO Block: 4096 regular file Device: fd00h/64768d Inode: 51051553 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-01-21 14:09:44.000000000 -0800 Modify: 2019-01-21 14:09:44.000000000 -0800 Change: 2019-10-15 11:27:59.087410350 -0700 Birth: - File: ‘/bin/hdsploader’ Size: 11448 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50400587 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2016-11-05 11:34:04.000000000 -0700 Modify: 2016-11-05 11:34:04.000000000 -0700 Change: 2019-08-15 10:53:36.443729043 -0700 Birth: - File: ‘/bin/head’ Size: 41472 Blocks: 88 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332924 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-22 16:17:02.007854934 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.540558981 -0700 Birth: - File: ‘/bin/hexdump’ Size: 32784 Blocks: 72 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50358275 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.577511452 -0700 Birth: - File: ‘/bin/host’ Size: 130136 Blocks: 256 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50422070 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 05:16:33.000000000 -0700 Modify: 2019-08-08 05:16:33.000000000 -0700 Change: 2019-10-23 10:53:22.881983945 -0700 Birth: - File: ‘/bin/hostid’ Size: 28984 Blocks: 64 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332925 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.545975751 -0700 Birth: - File: ‘/bin/hostname’ Size: 15768 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359103 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:hostname_exec_t:s0 Access: 2019-11-11 10:45:43.157296270 -0800 Modify: 2014-06-09 14:48:44.000000000 -0700 Change: 2019-08-15 10:53:22.912660788 -0700 Birth: - File: ‘/bin/hostnamectl’ Size: 325712 Blocks: 640 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359984 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-09-13 11:21:23.000000000 -0700 Modify: 2019-09-13 11:21:23.000000000 -0700 Change: 2019-10-16 09:21:45.292396387 -0700 Birth: - File: ‘/bin/i386’ -> ‘setarch’ Size: 7 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50358276 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.503767602 -0800 Modify: 2019-10-16 09:21:42.577511452 -0700 Change: 2019-10-16 09:21:42.577511452 -0700 Birth: - File: ‘/bin/iconv’ Size: 60376 Blocks: 120 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332745 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-06 16:23:28.000000000 -0700 Modify: 2019-08-06 16:23:28.000000000 -0700 Change: 2019-10-16 09:21:18.999396642 -0700 Birth: - File: ‘/bin/id’ Size: 37400 Blocks: 80 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332926 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-10 17:21:10.871361454 -0800 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.547059105 -0700 Birth: - File: ‘/bin/idiag-socket-details’ Size: 11608 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339049 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.453660739 -0700 Birth: - File: ‘/bin/idn’ Size: 33232 Blocks: 72 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339255 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2015-11-21 09:00:47.000000000 -0800 Modify: 2015-11-21 09:00:47.000000000 -0800 Change: 2019-08-15 10:53:20.849660747 -0700 Birth: - File: ‘/bin/igawk’ Size: 3188 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338324 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-06-28 14:52:45.000000000 -0700 Modify: 2017-06-28 14:52:45.000000000 -0700 Change: 2019-08-15 10:53:16.285660657 -0700 Birth: - File: ‘/bin/info’ Size: 271552 Blocks: 536 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338316 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-04-10 18:03:35.000000000 -0700 Modify: 2018-04-10 18:03:35.000000000 -0700 Change: 2019-08-15 10:53:16.217660656 -0700 Birth: - File: ‘/bin/infocmp’ Size: 57416 Blocks: 120 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332898 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-09-06 15:08:20.000000000 -0700 Modify: 2017-09-06 15:08:20.000000000 -0700 Change: 2019-08-15 10:53:08.880660512 -0700 Birth: - File: ‘/bin/infokey’ Size: 21984 Blocks: 48 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338317 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-04-10 18:03:35.000000000 -0700 Modify: 2018-04-10 18:03:35.000000000 -0700 Change: 2019-08-15 10:53:16.219660656 -0700 Birth: - File: ‘/bin/infotocap’ -> ‘tic’ Size: 3 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50332899 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.503767602 -0800 Modify: 2019-08-15 10:53:08.880660512 -0700 Change: 2019-08-15 10:53:08.880660512 -0700 Birth: - File: ‘/bin/install’ Size: 142944 Blocks: 280 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332927 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-22 03:54:33.351560481 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.554642583 -0700 Birth: - File: ‘/bin/ionice’ Size: 24432 Blocks: 48 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50358277 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 03:50:06.632335442 -0800 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.578594806 -0700 Birth: - File: ‘/bin/iostat’ Size: 62232 Blocks: 128 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50426653 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 19:54:58.000000000 -0700 Modify: 2019-08-08 19:54:58.000000000 -0700 Change: 2019-10-29 23:35:07.185279478 -0700 Birth: - File: ‘/bin/ipcalc’ Size: 15416 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360588 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-09 10:34:34.473750014 -0800 Modify: 2019-08-08 16:52:41.000000000 -0700 Change: 2019-10-16 09:21:48.266202909 -0700 Birth: - File: ‘/bin/ipcmk’ Size: 24584 Blocks: 56 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50358278 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.579678160 -0700 Birth: - File: ‘/bin/ipcrm’ Size: 28520 Blocks: 56 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50358279 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.580761514 -0700 Birth: - File: ‘/bin/ipcs’ Size: 49520 Blocks: 104 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50358280 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.586178283 -0700 Birth: - File: ‘/bin/iptables-xml’ -> ‘/usr/sbin/xtables-multi’ Size: 23 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50359095 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.504850957 -0800 Modify: 2019-10-16 09:21:34.235686234 -0700 Change: 2019-10-16 09:21:34.235686234 -0700 Birth: - File: ‘/bin/isosize’ Size: 24400 Blocks: 48 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50358281 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.587261637 -0700 Birth: - File: ‘/bin/jobs’ Size: 28 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332721 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 05:06:55.000000000 -0700 Modify: 2019-08-08 05:06:55.000000000 -0700 Change: 2019-10-16 09:21:18.572555195 -0700 Birth: - File: ‘/bin/join’ Size: 49920 Blocks: 104 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332932 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.556809290 -0700 Birth: - File: ‘/bin/journalctl’ Size: 550752 Blocks: 1080 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359985 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:journalctl_exec_t:s0 Access: 2019-11-10 15:34:51.804364249 -0800 Modify: 2019-09-13 11:21:23.000000000 -0700 Change: 2019-10-16 09:21:45.315146819 -0700 Birth: - File: ‘/bin/json_reformat’ Size: 36752 Blocks: 72 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50742403 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2014-06-09 22:00:23.000000000 -0700 Modify: 2014-06-09 22:00:23.000000000 -0700 Change: 2019-08-15 12:00:18.920592129 -0700 Birth: - File: ‘/bin/json_verify’ Size: 28176 Blocks: 56 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50742404 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-15 14:32:23.244892145 -0700 Modify: 2014-06-09 22:00:23.000000000 -0700 Change: 2019-08-15 12:00:18.923592189 -0700 Birth: - File: ‘/bin/kbdinfo’ Size: 11528 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50572247 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-10-30 15:39:49.000000000 -0700 Modify: 2018-10-30 15:39:49.000000000 -0700 Change: 2019-08-15 10:53:46.182899710 -0700 Birth: - File: ‘/bin/kbd_mode’ Size: 11504 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50572237 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-21 13:17:59.953410785 -0700 Modify: 2018-10-30 15:39:49.000000000 -0700 Change: 2019-08-15 10:53:46.172899535 -0700 Birth: - File: ‘/bin/kbdrate’ Size: 11560 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50572248 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-10-30 15:39:49.000000000 -0700 Modify: 2018-10-30 15:39:49.000000000 -0700 Change: 2019-08-15 10:53:46.183899727 -0700 Birth: - File: ‘/bin/kdumpctl’ Size: 32623 Blocks: 64 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50705028 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:kdumpctl_exec_t:s0 Access: 2019-11-09 10:34:34.661753827 -0800 Modify: 2019-08-08 04:41:21.000000000 -0700 Change: 2019-10-16 09:22:48.974106770 -0700 Birth: - File: ‘/bin/kernel-install’ Size: 4811 Blocks: 16 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359986 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-09-13 11:19:23.000000000 -0700 Modify: 2019-09-13 11:19:23.000000000 -0700 Change: 2019-10-16 09:21:45.317313527 -0700 Birth: - File: ‘/bin/kill’ Size: 33608 Blocks: 72 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50358282 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-10 03:50:01.553940261 -0800 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.592678407 -0700 Birth: - File: ‘/bin/kmod’ Size: 146688 Blocks: 288 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359978 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:insmod_exec_t:s0 Access: 2019-11-09 10:34:28.323999952 -0800 Modify: 2019-08-08 17:05:58.000000000 -0700 Change: 2019-10-16 09:21:44.614216830 -0700 Birth: - File: ‘/bin/last’ Size: 19568 Blocks: 40 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339280 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2014-06-09 16:16:44.000000000 -0700 Modify: 2014-06-09 16:16:44.000000000 -0700 Change: 2019-08-15 10:53:21.089660752 -0700 Birth: - File: ‘/bin/lastb’ -> ‘last’ Size: 4 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50339281 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.505934311 -0800 Modify: 2019-08-15 10:53:21.089660752 -0700 Change: 2019-08-15 10:53:21.089660752 -0700 Birth: - File: ‘/bin/lastlog’ Size: 19608 Blocks: 40 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338549 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 19:51:01.000000000 -0700 Modify: 2019-08-08 19:51:01.000000000 -0700 Change: 2019-10-16 09:21:29.360593574 -0700 Birth: - File: ‘/bin/lchfn’ Size: 15896 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359494 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-04-12 11:44:23.000000000 -0700 Modify: 2018-04-12 11:44:23.000000000 -0700 Change: 2019-08-15 10:53:25.138660831 -0700 Birth: - File: ‘/bin/lchsh’ Size: 15864 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359495 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-04-12 11:44:23.000000000 -0700 Modify: 2018-04-12 11:44:23.000000000 -0700 Change: 2019-08-15 10:53:25.139660831 -0700 Birth: - File: ‘/bin/ld’ -> ‘/etc/alternatives/ld’ Size: 20 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50356999 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: unconfined_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.505934311 -0800 Modify: 2019-10-16 09:21:38.839940413 -0700 Change: 2019-10-16 09:21:38.839940413 -0700 Birth: - File: ‘/bin/ld.bfd’ Size: 1006224 Blocks: 1968 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50356935 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 16:14:33.000000000 -0700 Modify: 2019-08-08 16:14:33.000000000 -0700 Change: 2019-10-16 09:21:37.822671078 -0700 Birth: - File: ‘/bin/ldd’ Size: 5302 Blocks: 16 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332746 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-21 13:17:58.591387294 -0700 Modify: 2019-08-06 16:03:05.000000000 -0700 Change: 2019-10-16 09:21:18.999396642 -0700 Birth: - File: ‘/bin/ld.gold’ Size: 5354368 Blocks: 10464 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50356998 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 16:14:33.000000000 -0700 Modify: 2019-08-08 16:14:33.000000000 -0700 Change: 2019-10-16 09:21:38.759772222 -0700 Birth: - File: ‘/bin/less’ Size: 158240 Blocks: 312 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359238 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-10 15:34:51.815197806 -0800 Modify: 2015-07-30 16:50:42.000000000 -0700 Change: 2019-08-15 10:53:23.881660807 -0700 Birth: - File: ‘/bin/lessecho’ Size: 11376 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359239 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2015-07-30 16:50:42.000000000 -0700 Modify: 2015-07-30 16:50:42.000000000 -0700 Change: 2019-08-15 10:53:23.881660807 -0700 Birth: - File: ‘/bin/lesskey’ Size: 17056 Blocks: 40 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359240 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2015-07-30 16:50:42.000000000 -0700 Modify: 2015-07-30 16:50:42.000000000 -0700 Change: 2019-08-15 10:53:23.882660807 -0700 Birth: - File: ‘/bin/lesspipe.sh’ Size: 2291 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359241 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2015-07-30 16:47:02.000000000 -0700 Modify: 2015-07-30 16:47:02.000000000 -0700 Change: 2019-08-15 10:53:23.882660807 -0700 Birth: - File: ‘/bin/lexgrog’ Size: 87128 Blocks: 176 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50696671 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-10-30 13:26:36.000000000 -0700 Modify: 2018-10-30 13:26:36.000000000 -0700 Change: 2019-08-15 10:53:56.786085335 -0700 Birth: - File: ‘/bin/link’ Size: 28984 Blocks: 64 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332933 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.557892644 -0700 Birth: - File: ‘/bin/linux32’ -> ‘setarch’ Size: 7 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50358283 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.507017665 -0800 Modify: 2019-10-16 09:21:42.592678407 -0700 Change: 2019-10-16 09:21:42.592678407 -0700 Birth: - File: ‘/bin/linux64’ -> ‘setarch’ Size: 7 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50358284 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.507017665 -0800 Modify: 2019-10-16 09:21:42.592678407 -0700 Change: 2019-10-16 09:21:42.593761761 -0700 Birth: - File: ‘/bin/linux-boot-prober’ Size: 5995 Blocks: 16 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360757 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2016-11-05 20:30:02.000000000 -0700 Modify: 2016-11-05 20:30:02.000000000 -0700 Change: 2019-08-15 10:53:33.074669703 -0700 Birth: - File: ‘/bin/ln’ Size: 58592 Blocks: 120 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332934 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-21 13:17:58.627387915 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.564392768 -0700 Birth: - File: ‘/bin/loadkeys’ Size: 113184 Blocks: 224 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50572238 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:loadkeys_exec_t:s0 Access: 2019-11-09 10:34:28.948999944 -0800 Modify: 2018-10-30 15:39:49.000000000 -0700 Change: 2019-08-15 10:53:46.176899605 -0700 Birth: - File: ‘/bin/loadunimap’ Size: 24544 Blocks: 48 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50572249 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-10-30 15:39:49.000000000 -0700 Modify: 2018-10-30 15:39:49.000000000 -0700 Change: 2019-08-15 10:53:46.184899745 -0700 Birth: - File: ‘/bin/locale’ Size: 38720 Blocks: 80 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332747 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-10 17:39:49.470303075 -0800 Modify: 2019-08-06 16:23:28.000000000 -0700 Change: 2019-10-16 09:21:19.001563349 -0700 Birth: - File: ‘/bin/localectl’ Size: 334016 Blocks: 656 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359987 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-09-13 11:21:23.000000000 -0700 Modify: 2019-09-13 11:21:23.000000000 -0700 Change: 2019-10-16 09:21:45.329230420 -0700 Birth: - File: ‘/bin/localedef’ Size: 322928 Blocks: 632 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332748 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-06 16:23:28.000000000 -0700 Modify: 2019-08-06 16:23:28.000000000 -0700 Change: 2019-10-16 09:21:19.013480243 -0700 Birth: - File: ‘/bin/logger’ Size: 29312 Blocks: 64 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50358285 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 12:01:01.543939744 -0800 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.594845115 -0700 Birth: - File: ‘/bin/login’ Size: 37248 Blocks: 80 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50358286 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:login_exec_t:s0 Access: 2019-11-09 10:34:38.962841058 -0800 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.600261884 -0700 Birth: - File: ‘/bin/loginctl’ Size: 501344 Blocks: 984 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359988 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-21 13:18:10.882793113 -0700 Modify: 2019-09-13 11:21:23.000000000 -0700 Change: 2019-10-16 09:21:45.349814145 -0700 Birth: - File: ‘/bin/logname’ Size: 28984 Blocks: 64 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332935 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.565476122 -0700 Birth: - File: ‘/bin/look’ Size: 11544 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359451 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.600261884 -0700 Birth: - File: ‘/bin/ls’ Size: 117608 Blocks: 232 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332936 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 14:03:07.529095891 -0800 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.570892891 -0700 Birth: - File: ‘/bin/lsattr’ Size: 11600 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50696652 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 16:15:11.000000000 -0700 Modify: 2019-08-08 16:15:11.000000000 -0700 Change: 2019-10-16 09:22:59.200967815 -0700 Birth: - File: ‘/bin/lsblk’ Size: 81072 Blocks: 160 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359452 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-09 11:02:12.824443669 -0800 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.607845362 -0700 Birth: - File: ‘/bin/lscpu’ Size: 62208 Blocks: 128 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359453 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.610012070 -0700 Birth: - File: ‘/bin/lsinitrd’ Size: 6410 Blocks: 16 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359964 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-09 10:34:35.741775731 -0800 Modify: 2019-08-08 16:14:24.000000000 -0700 Change: 2019-10-16 09:21:44.152708058 -0700 Birth: - File: ‘/bin/lsipc’ Size: 62432 Blocks: 128 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359454 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.616512193 -0700 Birth: - File: ‘/bin/lslocks’ Size: 42000 Blocks: 88 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359455 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.621928963 -0700 Birth: - File: ‘/bin/lslogins’ Size: 54152 Blocks: 112 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359488 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.623012317 -0700 Birth: - File: ‘/bin/lsmem’ Size: 41760 Blocks: 88 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359616 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.629512441 -0700 Birth: - File: ‘/bin/lsns’ Size: 37304 Blocks: 80 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359617 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.630595794 -0700 Birth: - File: ‘/bin/lsscsi’ Size: 57832 Blocks: 120 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359937 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-02 19:11:06.000000000 -0700 Modify: 2017-08-02 19:11:06.000000000 -0700 Change: 2019-08-15 10:53:29.640660920 -0700 Birth: - File: ‘/bin/lua’ Size: 15840 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338672 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2016-11-05 19:47:35.000000000 -0700 Modify: 2016-11-05 19:47:35.000000000 -0700 Change: 2019-08-15 10:53:18.815660707 -0700 Birth: - File: ‘/bin/luac’ Size: 121888 Blocks: 240 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338673 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2016-11-05 19:47:35.000000000 -0700 Modify: 2016-11-05 19:47:35.000000000 -0700 Change: 2019-08-15 10:53:18.819660707 -0700 Birth: - File: ‘/bin/lz4’ Size: 124344 Blocks: 248 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338835 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 17:45:35.000000000 -0700 Modify: 2019-08-08 17:45:35.000000000 -0700 Change: 2019-10-16 09:21:34.154434690 -0700 Birth: - File: ‘/bin/lz4c’ Size: 124344 Blocks: 248 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50358682 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 17:45:35.000000000 -0700 Modify: 2019-08-08 17:45:35.000000000 -0700 Change: 2019-10-16 09:21:34.166351583 -0700 Birth: - File: ‘/bin/lz4cat’ -> ‘lz4’ Size: 3 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50358683 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.508101020 -0800 Modify: 2019-10-16 09:21:34.166351583 -0700 Change: 2019-10-16 09:21:34.166351583 -0700 Birth: - File: ‘/bin/machinectl’ Size: 546704 Blocks: 1072 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359990 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-09-13 11:21:23.000000000 -0700 Modify: 2019-09-13 11:21:23.000000000 -0700 Change: 2019-10-16 09:21:45.375814639 -0700 Birth: - File: ‘/bin/mailq’ -> ‘/etc/alternatives/mta-mailq’ Size: 27 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50611098 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.508101020 -0800 Modify: 2019-08-15 10:53:54.531045857 -0700 Change: 2019-08-15 10:53:54.531045857 -0700 Birth: - File: ‘/bin/mailq.postfix’ -> ‘../../usr/sbin/sendmail.postfix’ Size: 31 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50611080 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.508101020 -0800 Modify: 2019-08-15 10:53:53.471027300 -0700 Change: 2019-08-15 10:53:53.471027300 -0700 Birth: - File: ‘/bin/make’ Size: 182752 Blocks: 360 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50357050 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-22 03:54:34.415415265 -0700 Modify: 2019-08-08 17:46:49.000000000 -0700 Change: 2019-10-16 09:21:42.062918338 -0700 Birth: - File: ‘/bin/makedb’ Size: 19072 Blocks: 40 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332749 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-06 16:23:28.000000000 -0700 Modify: 2019-08-06 16:23:28.000000000 -0700 Change: 2019-10-16 09:21:19.014563596 -0700 Birth: - File: ‘/bin/man’ Size: 102848 Blocks: 208 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50696672 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-10 17:39:49.445385903 -0800 Modify: 2018-10-30 13:26:36.000000000 -0700 Change: 2019-08-15 10:53:56.790085405 -0700 Birth: - File: ‘/bin/mandb’ Size: 125184 Blocks: 248 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50696673 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:mandb_exec_t:s0 Access: 2019-11-11 03:50:06.634502148 -0800 Modify: 2018-10-30 13:26:36.000000000 -0700 Change: 2019-08-15 10:53:56.793085458 -0700 Birth: - File: ‘/bin/manpath’ Size: 33336 Blocks: 72 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50696674 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-10-30 13:26:36.000000000 -0700 Modify: 2018-10-30 13:26:36.000000000 -0700 Change: 2019-08-15 10:53:56.795085493 -0700 Birth: - File: ‘/bin/mapscrn’ Size: 20344 Blocks: 40 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50572250 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-10-30 15:39:49.000000000 -0700 Modify: 2018-10-30 15:39:49.000000000 -0700 Change: 2019-08-15 10:53:46.185899762 -0700 Birth: - File: ‘/bin/mcookie’ Size: 15808 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359618 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.631679148 -0700 Birth: - File: ‘/bin/md5sum’ Size: 41504 Blocks: 88 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332937 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.571976245 -0700 Birth: - File: ‘/bin/mdig’ Size: 45328 Blocks: 96 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50422071 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 05:16:33.000000000 -0700 Modify: 2019-08-08 05:16:33.000000000 -0700 Change: 2019-10-23 10:53:22.889567419 -0700 Birth: - File: ‘/bin/mesg’ Size: 11240 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339282 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2014-06-09 16:16:44.000000000 -0700 Modify: 2014-06-09 16:16:44.000000000 -0700 Change: 2019-08-15 10:53:21.091660752 -0700 Birth: - File: ‘/bin/mixartloader’ Size: 15744 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50400588 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2016-11-05 11:34:04.000000000 -0700 Modify: 2016-11-05 11:34:04.000000000 -0700 Change: 2019-08-15 10:53:36.444729061 -0700 Birth: - File: ‘/bin/mkdir’ Size: 79768 Blocks: 160 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332938 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-09 10:34:31.295685559 -0800 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.580643077 -0700 Birth: - File: ‘/bin/mkfifo’ Size: 63056 Blocks: 128 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332939 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-21 13:17:58.621387812 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.581726431 -0700 Birth: - File: ‘/bin/mkinitrd’ Size: 3013 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359965 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 16:14:24.000000000 -0700 Modify: 2019-08-08 16:14:24.000000000 -0700 Change: 2019-10-16 09:21:44.158124828 -0700 Birth: - File: ‘/bin/mknod’ Size: 67184 Blocks: 136 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332941 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-21 13:17:59.915410130 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.583893138 -0700 Birth: - File: ‘/bin/mktemp’ Size: 41632 Blocks: 88 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332942 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-09 10:34:30.267999927 -0800 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.590393262 -0700 Birth: - File: ‘/bin/modutil’ Size: 161480 Blocks: 320 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359244 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-12 08:55:47.000000000 -0700 Modify: 2019-08-12 08:55:47.000000000 -0700 Change: 2019-10-16 09:23:00.629911643 -0700 Birth: - File: ‘/bin/more’ Size: 41112 Blocks: 88 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359619 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-09 22:20:43.812066637 -0800 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.639262626 -0700 Birth: - File: ‘/bin/mount’ Size: 44264 Blocks: 88 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359620 Links: 1 Access: (4755/-rwsr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:mount_exec_t:s0 Access: 2019-11-09 10:34:29.052999943 -0800 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.640345980 -0700 Birth: - File: ‘/bin/mountpoint’ Size: 15688 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359621 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-17 11:27:35.221858494 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.641429334 -0700 Birth: - File: ‘/bin/mpstat’ Size: 53792 Blocks: 112 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50426654 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 19:54:58.000000000 -0700 Modify: 2019-08-08 19:54:58.000000000 -0700 Change: 2019-10-29 23:35:07.190696244 -0700 Birth: - File: ‘/bin/msgattrib’ Size: 23920 Blocks: 48 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359174 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-02 19:24:25.000000000 -0700 Modify: 2017-08-02 19:24:25.000000000 -0700 Change: 2019-08-15 10:53:23.688660803 -0700 Birth: - File: ‘/bin/msgcat’ Size: 23880 Blocks: 48 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359175 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-02 19:24:25.000000000 -0700 Modify: 2017-08-02 19:24:25.000000000 -0700 Change: 2019-08-15 10:53:23.688660803 -0700 Birth: - File: ‘/bin/msgcmp’ Size: 24144 Blocks: 48 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359176 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-02 19:24:25.000000000 -0700 Modify: 2017-08-02 19:24:25.000000000 -0700 Change: 2019-08-15 10:53:23.689660803 -0700 Birth: - File: ‘/bin/msgcomm’ Size: 23872 Blocks: 48 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359177 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-02 19:24:25.000000000 -0700 Modify: 2017-08-02 19:24:25.000000000 -0700 Change: 2019-08-15 10:53:23.690660803 -0700 Birth: - File: ‘/bin/msgconv’ Size: 19760 Blocks: 40 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359178 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-02 19:24:25.000000000 -0700 Modify: 2017-08-02 19:24:25.000000000 -0700 Change: 2019-08-15 10:53:23.690660803 -0700 Birth: - File: ‘/bin/msgen’ Size: 19752 Blocks: 40 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359179 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-02 19:24:25.000000000 -0700 Modify: 2017-08-02 19:24:25.000000000 -0700 Change: 2019-08-15 10:53:23.691660803 -0700 Birth: - File: ‘/bin/msgexec’ Size: 15696 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359180 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-02 19:24:25.000000000 -0700 Modify: 2017-08-02 19:24:25.000000000 -0700 Change: 2019-08-15 10:53:23.691660803 -0700 Birth: - File: ‘/bin/msgfilter’ Size: 28224 Blocks: 56 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359181 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-02 19:24:25.000000000 -0700 Modify: 2017-08-02 19:24:25.000000000 -0700 Change: 2019-08-15 10:53:23.692660803 -0700 Birth: - File: ‘/bin/msgfmt’ Size: 78984 Blocks: 160 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359182 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-02 19:24:25.000000000 -0700 Modify: 2017-08-02 19:24:25.000000000 -0700 Change: 2019-08-15 10:53:23.695660803 -0700 Birth: - File: ‘/bin/msggrep’ Size: 36816 Blocks: 72 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359183 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-02 19:24:25.000000000 -0700 Modify: 2017-08-02 19:24:25.000000000 -0700 Change: 2019-08-15 10:53:23.696660803 -0700 Birth: - File: ‘/bin/msghack’ Size: 12751 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359184 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-03-15 06:00:13.000000000 -0700 Modify: 2017-03-15 06:00:13.000000000 -0700 Change: 2019-08-15 10:53:23.697660803 -0700 Birth: - File: ‘/bin/msginit’ Size: 45440 Blocks: 96 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359185 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-02 19:24:25.000000000 -0700 Modify: 2017-08-02 19:24:25.000000000 -0700 Change: 2019-08-15 10:53:23.698660803 -0700 Birth: - File: ‘/bin/msgmerge’ Size: 53848 Blocks: 112 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359186 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-02 19:24:25.000000000 -0700 Modify: 2017-08-02 19:24:25.000000000 -0700 Change: 2019-08-15 10:53:23.700660803 -0700 Birth: - File: ‘/bin/msgunfmt’ Size: 32448 Blocks: 64 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359187 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-02 19:24:25.000000000 -0700 Modify: 2017-08-02 19:24:25.000000000 -0700 Change: 2019-08-15 10:53:23.701660803 -0700 Birth: - File: ‘/bin/msguniq’ Size: 19776 Blocks: 40 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359188 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-02 19:24:25.000000000 -0700 Modify: 2017-08-02 19:24:25.000000000 -0700 Change: 2019-08-15 10:53:23.701660803 -0700 Birth: - File: ‘/bin/mv’ Size: 130360 Blocks: 256 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332943 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-09 10:34:30.430999925 -0800 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.597976739 -0700 Birth: - File: ‘/bin/namei’ Size: 28616 Blocks: 56 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359622 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.646846103 -0700 Birth: - File: ‘/bin/ndptool’ Size: 24192 Blocks: 48 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50357048 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 17:25:58.000000000 -0700 Modify: 2019-08-08 17:25:58.000000000 -0700 Change: 2019-10-16 09:21:41.987083563 -0700 Birth: - File: ‘/bin/neqn’ Size: 271 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339153 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2014-06-09 13:17:13.000000000 -0700 Modify: 2014-06-09 13:17:13.000000000 -0700 Change: 2019-08-15 10:53:20.638660743 -0700 Birth: - File: ‘/bin/netstat’ Size: 155008 Blocks: 304 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50358898 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-10 08:21:10.907959846 -0800 Modify: 2019-08-08 18:10:25.000000000 -0700 Change: 2019-10-15 10:40:39.390276189 -0700 Birth: - File: ‘/bin/newaliases’ -> ‘/etc/alternatives/mta-newaliases’ Size: 32 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50611099 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.510267729 -0800 Modify: 2019-08-15 10:53:54.531045857 -0700 Change: 2019-08-15 10:53:54.531045857 -0700 Birth: - File: ‘/bin/newaliases.postfix’ -> ‘../../usr/sbin/sendmail.postfix’ Size: 31 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50611081 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.510267729 -0800 Modify: 2019-08-15 10:53:53.471027300 -0700 Change: 2019-08-15 10:53:53.471027300 -0700 Birth: - File: ‘/bin/newgidmap’ Size: 39000 Blocks: 80 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338550 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 19:51:01.000000000 -0700 Modify: 2019-08-08 19:51:01.000000000 -0700 Change: 2019-10-16 09:21:29.366010344 -0700 Birth: - File: ‘/bin/newgrp’ Size: 41936 Blocks: 88 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338551 Links: 1 Access: (4755/-rwsr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 19:51:01.000000000 -0700 Modify: 2019-08-08 19:51:01.000000000 -0700 Change: 2019-10-16 09:21:29.372510467 -0700 Birth: - File: ‘/bin/newuidmap’ Size: 38976 Blocks: 80 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338552 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 19:51:01.000000000 -0700 Modify: 2019-08-08 19:51:01.000000000 -0700 Change: 2019-10-16 09:21:29.379010591 -0700 Birth: - File: ‘/bin/nf-ct-add’ Size: 12088 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339050 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.454660739 -0700 Birth: - File: ‘/bin/nf-ct-list’ Size: 16216 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339051 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.454660739 -0700 Birth: - File: ‘/bin/nf-exp-add’ Size: 16600 Blocks: 40 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339052 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.455660739 -0700 Birth: - File: ‘/bin/nf-exp-delete’ Size: 16376 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339053 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.455660739 -0700 Birth: - File: ‘/bin/nf-exp-list’ Size: 12088 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339054 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.456660739 -0700 Birth: - File: ‘/bin/nf-log’ Size: 11504 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339055 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.456660739 -0700 Birth: - File: ‘/bin/nf-monitor’ Size: 11448 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339056 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.457660739 -0700 Birth: - File: ‘/bin/nf-queue’ Size: 11544 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339057 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.457660739 -0700 Birth: - File: ‘/bin/nfsiostat-sysstat’ Size: 53784 Blocks: 112 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50426655 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 19:54:58.000000000 -0700 Modify: 2019-08-08 19:54:58.000000000 -0700 Change: 2019-10-29 23:35:07.196113009 -0700 Birth: - File: ‘/bin/ngettext’ Size: 36816 Blocks: 72 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359189 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-02 19:24:25.000000000 -0700 Modify: 2017-08-02 19:24:25.000000000 -0700 Change: 2019-08-15 10:53:23.702660803 -0700 Birth: - File: ‘/bin/nice’ Size: 33096 Blocks: 72 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50333242 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 03:50:06.597668151 -0800 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.597976739 -0700 Birth: - File: ‘/bin/nisdomainname’ -> ‘hostname’ Size: 8 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50359136 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.511351083 -0800 Modify: 2019-08-15 10:53:22.912660788 -0700 Change: 2019-08-15 10:53:22.913660788 -0700 Birth: - File: ‘/bin/nl’ Size: 41576 Blocks: 88 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50333243 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.599060093 -0700 Birth: - File: ‘/bin/nl-addr-add’ Size: 11928 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339058 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.457660739 -0700 Birth: - File: ‘/bin/nl-addr-delete’ Size: 12016 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339059 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.458660739 -0700 Birth: - File: ‘/bin/nl-addr-list’ Size: 16256 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339060 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.459660739 -0700 Birth: - File: ‘/bin/nl-class-add’ Size: 11976 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 10314 Links: 2 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.488660740 -0700 Birth: - File: ‘/bin/nl-class-delete’ Size: 11824 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 10315 Links: 2 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.488660740 -0700 Birth: - File: ‘/bin/nl-classid-lookup’ Size: 11560 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 10317 Links: 2 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.490660740 -0700 Birth: - File: ‘/bin/nl-class-list’ Size: 11752 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 10316 Links: 2 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.489660740 -0700 Birth: - File: ‘/bin/nl-cls-add’ Size: 12040 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 10318 Links: 2 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.490660740 -0700 Birth: - File: ‘/bin/nl-cls-delete’ Size: 11960 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 10319 Links: 2 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.491660740 -0700 Birth: - File: ‘/bin/nl-cls-list’ Size: 11856 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 10320 Links: 2 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.491660740 -0700 Birth: - File: ‘/bin/nl-fib-lookup’ Size: 11688 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339061 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.459660739 -0700 Birth: - File: ‘/bin/nl-link-enslave’ Size: 7216 Blocks: 16 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339062 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.460660739 -0700 Birth: - File: ‘/bin/nl-link-ifindex2name’ Size: 7232 Blocks: 16 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339063 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.460660739 -0700 Birth: - File: ‘/bin/nl-link-list’ Size: 11800 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 10321 Links: 2 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.492660740 -0700 Birth: - File: ‘/bin/nl-link-name2ifindex’ Size: 7216 Blocks: 16 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339064 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.461660739 -0700 Birth: - File: ‘/bin/nl-link-release’ Size: 7216 Blocks: 16 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339065 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.461660739 -0700 Birth: - File: ‘/bin/nl-link-set’ Size: 11920 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339066 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.461660739 -0700 Birth: - File: ‘/bin/nl-link-stats’ Size: 11664 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339067 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.462660739 -0700 Birth: - File: ‘/bin/nl-list-caches’ Size: 11344 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339068 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.462660739 -0700 Birth: - File: ‘/bin/nl-list-sockets’ Size: 7232 Blocks: 16 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339069 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.463660739 -0700 Birth: - File: ‘/bin/nl-monitor’ Size: 11464 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339070 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.463660739 -0700 Birth: - File: ‘/bin/nl-neigh-add’ Size: 11784 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339071 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.464660739 -0700 Birth: - File: ‘/bin/nl-neigh-delete’ Size: 11848 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339072 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.464660739 -0700 Birth: - File: ‘/bin/nl-neigh-list’ Size: 11736 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339073 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.465660739 -0700 Birth: - File: ‘/bin/nl-neightbl-list’ Size: 11536 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339074 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.465660739 -0700 Birth: - File: ‘/bin/nl-pktloc-lookup’ Size: 11632 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 10322 Links: 2 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.493660740 -0700 Birth: - File: ‘/bin/nl-qdisc-add’ Size: 11880 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 10323 Links: 2 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.493660740 -0700 Birth: - File: ‘/bin/nl-qdisc-delete’ Size: 11816 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 10324 Links: 2 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.494660740 -0700 Birth: - File: ‘/bin/nl-qdisc-list’ Size: 11904 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 10325 Links: 2 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.495660740 -0700 Birth: - File: ‘/bin/nl-route-add’ Size: 12016 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339075 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.465660739 -0700 Birth: - File: ‘/bin/nl-route-delete’ Size: 16240 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339076 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.466660739 -0700 Birth: - File: ‘/bin/nl-route-get’ Size: 11448 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339077 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.466660739 -0700 Birth: - File: ‘/bin/nl-route-list’ Size: 12056 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339078 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.467660739 -0700 Birth: - File: ‘/bin/nl-rule-list’ Size: 11568 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339079 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.467660739 -0700 Birth: - File: ‘/bin/nl-tctree-list’ Size: 11808 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339080 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.468660740 -0700 Birth: - File: ‘/bin/nl-util-addr’ Size: 7200 Blocks: 16 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339081 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-03 12:48:51.000000000 -0700 Modify: 2017-08-03 12:48:51.000000000 -0700 Change: 2019-08-15 10:53:20.469660740 -0700 Birth: - File: ‘/bin/nm’ Size: 42472 Blocks: 88 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50356936 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 16:14:33.000000000 -0700 Modify: 2019-08-08 16:14:33.000000000 -0700 Change: 2019-10-16 09:21:37.824837785 -0700 Birth: - File: ‘/bin/nmcli’ Size: 824448 Blocks: 1616 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360911 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-09 10:34:34.378748086 -0800 Modify: 2019-09-13 11:04:57.000000000 -0700 Change: 2019-10-16 09:22:00.435517542 -0700 Birth: - File: ‘/bin/nm-online’ Size: 15528 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360910 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-09 10:34:32.109702069 -0800 Modify: 2019-09-13 11:04:57.000000000 -0700 Change: 2019-10-16 09:22:00.261097560 -0700 Birth: - File: ‘/bin/nmtui’ Size: 658184 Blocks: 1288 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50392029 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-09-13 11:04:57.000000000 -0700 Modify: 2019-09-13 11:04:57.000000000 -0700 Change: 2019-10-16 09:22:49.770371905 -0700 Birth: - File: ‘/bin/nmtui-connect’ -> ‘nmtui’ Size: 5 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50392019 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.513517792 -0800 Modify: 2019-10-16 09:22:49.770371905 -0700 Change: 2019-10-16 09:22:49.771455259 -0700 Birth: - File: ‘/bin/nmtui-edit’ -> ‘nmtui’ Size: 5 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50392020 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.513517792 -0800 Modify: 2019-10-16 09:22:49.771455259 -0700 Change: 2019-10-16 09:22:49.771455259 -0700 Birth: - File: ‘/bin/nmtui-hostname’ -> ‘nmtui’ Size: 5 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50392021 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.513517792 -0800 Modify: 2019-10-16 09:22:49.771455259 -0700 Change: 2019-10-16 09:22:49.771455259 -0700 Birth: - File: ‘/bin/nohup’ Size: 33200 Blocks: 72 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338444 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.602310155 -0700 Birth: - File: ‘/bin/nproc’ Size: 33144 Blocks: 72 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338445 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.609893633 -0700 Birth: - File: ‘/bin/nroff’ Size: 3392 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339154 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-10 17:39:49.467053009 -0800 Modify: 2014-06-09 13:17:15.000000000 -0700 Change: 2019-08-15 10:53:20.638660743 -0700 Birth: - File: ‘/bin/nsenter’ Size: 28896 Blocks: 64 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359623 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.647929457 -0700 Birth: - File: ‘/bin/nslookup’ Size: 134128 Blocks: 264 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50422072 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-01 11:29:01.410358369 -0700 Modify: 2019-08-08 05:16:33.000000000 -0700 Change: 2019-10-23 10:53:22.905817721 -0700 Birth: - File: ‘/bin/nss-policy-check’ Size: 11472 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359245 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-12 08:55:47.000000000 -0700 Modify: 2019-08-12 08:55:47.000000000 -0700 Change: 2019-10-16 09:23:00.636411766 -0700 Birth: - File: ‘/bin/nsupdate’ Size: 66616 Blocks: 136 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50422073 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 05:16:33.000000000 -0700 Modify: 2019-08-08 05:16:33.000000000 -0700 Change: 2019-10-23 10:53:22.915567903 -0700 Birth: - File: ‘/bin/numfmt’ Size: 66264 Blocks: 136 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338446 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.610976987 -0700 Birth: - File: ‘/bin/objcopy’ Size: 232864 Blocks: 456 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50356937 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 16:14:33.000000000 -0700 Modify: 2019-08-08 16:14:33.000000000 -0700 Change: 2019-10-16 09:21:37.840004741 -0700 Birth: - File: ‘/bin/objdump’ Size: 366336 Blocks: 720 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50356938 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 16:14:33.000000000 -0700 Modify: 2019-08-08 16:14:33.000000000 -0700 Change: 2019-10-16 09:21:37.855171696 -0700 Birth: - File: ‘/bin/od’ Size: 66368 Blocks: 136 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338447 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.614227048 -0700 Birth: - File: ‘/bin/oldfind’ Size: 190880 Blocks: 376 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338677 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-10-30 09:42:55.000000000 -0700 Modify: 2018-10-30 09:42:55.000000000 -0700 Change: 2019-08-15 10:53:18.857660708 -0700 Birth: - File: ‘/bin/open’ -> ‘openvt’ Size: 6 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50572251 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.513517792 -0800 Modify: 2019-08-15 10:53:46.185899762 -0700 Change: 2019-08-15 10:53:46.185899762 -0700 Birth: - File: ‘/bin/openssl’ Size: 555288 Blocks: 1088 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359723 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 18:38:34.000000000 -0700 Modify: 2019-08-08 18:38:34.000000000 -0700 Change: 2019-10-16 09:22:58.589956203 -0700 Birth: - File: ‘/bin/openvt’ Size: 20024 Blocks: 40 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50572252 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-10-30 15:39:49.000000000 -0700 Modify: 2018-10-30 15:39:49.000000000 -0700 Change: 2019-08-15 10:53:46.186899780 -0700 Birth: - File: ‘/bin/os-prober’ Size: 5643 Blocks: 16 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360758 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-15 10:56:06.609332845 -0700 Modify: 2016-11-05 20:30:02.000000000 -0700 Change: 2019-08-15 10:53:33.075669720 -0700 Birth: - File: ‘/bin/p11-kit’ Size: 32952 Blocks: 72 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338411 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-15 10:53:17.052660672 -0700 Modify: 2017-08-04 16:36:46.000000000 -0700 Change: 2019-08-15 10:53:16.750660666 -0700 Birth: - File: ‘/bin/passwd’ Size: 27856 Blocks: 56 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50696794 Links: 1 Access: (4755/-rwsr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:passwd_exec_t:s0 Access: 2019-08-08 18:39:01.000000000 -0700 Modify: 2019-08-08 18:39:01.000000000 -0700 Change: 2019-10-16 09:23:00.870416214 -0700 Birth: - File: ‘/bin/paste’ Size: 33128 Blocks: 72 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338448 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.619643818 -0700 Birth: - File: ‘/bin/pathchk’ Size: 33088 Blocks: 72 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338449 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.620727172 -0700 Birth: - File: ‘/bin/pchrt’ Size: 4024 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359148 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2016-11-05 14:51:47.000000000 -0700 Modify: 2016-11-05 14:51:47.000000000 -0700 Change: 2019-08-15 10:53:23.068660791 -0700 Birth: - File: ‘/bin/perl’ Size: 11488 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 51052240 Links: 2 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-01-21 14:10:13.000000000 -0800 Modify: 2019-01-21 14:10:13.000000000 -0800 Change: 2019-10-15 11:28:01.079451865 -0700 Birth: - File: ‘/bin/perl5.16.3’ Size: 11488 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 51052240 Links: 2 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-01-21 14:10:13.000000000 -0800 Modify: 2019-01-21 14:10:13.000000000 -0800 Change: 2019-10-15 11:28:01.079451865 -0700 Birth: - File: ‘/bin/perlbug’ Size: 44351 Blocks: 88 IO Block: 4096 regular file Device: fd00h/64768d Inode: 51052241 Links: 2 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-01-21 14:09:44.000000000 -0800 Modify: 2019-01-21 14:09:44.000000000 -0800 Change: 2019-10-15 11:28:01.081451907 -0700 Birth: - File: ‘/bin/perldoc’ Size: 203 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50422111 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2014-06-10 01:17:48.000000000 -0700 Modify: 2014-06-10 01:17:48.000000000 -0700 Change: 2019-10-15 11:27:57.751382506 -0700 Birth: - File: ‘/bin/perlthanks’ Size: 44351 Blocks: 88 IO Block: 4096 regular file Device: fd00h/64768d Inode: 51052241 Links: 2 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-01-21 14:09:44.000000000 -0800 Modify: 2019-01-21 14:09:44.000000000 -0800 Change: 2019-10-15 11:28:01.081451907 -0700 Birth: - File: ‘/bin/pflags’ Size: 2111 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338313 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 19:08:24.000000000 -0700 Modify: 2019-08-08 19:08:24.000000000 -0700 Change: 2019-10-16 09:21:35.991802946 -0700 Birth: - File: ‘/bin/pgawk’ Size: 428672 Blocks: 840 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338325 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-06-28 14:52:48.000000000 -0700 Modify: 2017-06-28 14:52:48.000000000 -0700 Change: 2019-08-15 10:53:16.291660657 -0700 Birth: - File: ‘/bin/pgrep’ Size: 28336 Blocks: 56 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50358301 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 18:55:49.000000000 -0700 Modify: 2019-08-08 18:55:49.000000000 -0700 Change: 2019-10-16 09:21:43.601280911 -0700 Birth: - File: ‘/bin/pic’ Size: 184736 Blocks: 368 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339155 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2014-06-09 13:17:22.000000000 -0700 Modify: 2014-06-09 13:17:22.000000000 -0700 Change: 2019-08-15 10:53:20.644660743 -0700 Birth: - File: ‘/bin/piconv’ Size: 8177 Blocks: 16 IO Block: 4096 regular file Device: fd00h/64768d Inode: 51051499 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2014-06-09 19:49:27.000000000 -0700 Modify: 2014-06-09 19:49:27.000000000 -0700 Change: 2019-10-15 11:27:57.838384319 -0700 Birth: - File: ‘/bin/pidstat’ Size: 70536 Blocks: 144 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50426656 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 19:54:58.000000000 -0700 Modify: 2019-08-08 19:54:58.000000000 -0700 Change: 2019-10-29 23:35:07.202613128 -0700 Birth: - File: ‘/bin/pinentry’ Size: 2602 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359728 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:pinentry_exec_t:s0 Access: 2016-11-04 11:02:54.000000000 -0700 Modify: 2016-11-04 11:02:54.000000000 -0700 Change: 2019-08-15 10:53:27.888660885 -0700 Birth: - File: ‘/bin/pinentry-curses’ Size: 50368 Blocks: 104 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359729 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:pinentry_exec_t:s0 Access: 2016-11-05 08:49:27.000000000 -0700 Modify: 2016-11-05 08:49:27.000000000 -0700 Change: 2019-08-15 10:53:27.897660885 -0700 Birth: - File: ‘/bin/ping’ Size: 66176 Blocks: 136 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360574 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:ping_exec_t:s0 Access: 2019-10-17 11:27:36.477882364 -0700 Modify: 2017-08-04 01:01:04.000000000 -0700 Change: 2019-08-15 10:53:32.455660975 -0700 Birth: - File: ‘/bin/ping6’ -> ‘ping’ Size: 4 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50360575 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.515684501 -0800 Modify: 2019-08-15 10:53:32.455660975 -0700 Change: 2019-08-15 10:53:32.455660975 -0700 Birth: - File: ‘/bin/pinky’ Size: 37448 Blocks: 80 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338450 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.622893880 -0700 Birth: - File: ‘/bin/pip3’ Size: 407 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50419491 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-25 16:26:42.002912868 -0700 Modify: 2019-08-07 10:05:35.000000000 -0700 Change: 2019-10-15 11:09:07.560110312 -0700 Birth: - File: ‘/bin/pip-3’ -> ‘./pip-3.6’ Size: 9 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50419489 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.515684501 -0800 Modify: 2019-10-15 11:09:07.560110312 -0700 Change: 2019-10-15 11:09:07.560110312 -0700 Birth: - File: ‘/bin/pip-3.6’ -> ‘./pip3.6’ Size: 8 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50419490 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.515684501 -0800 Modify: 2019-10-15 11:09:07.560110312 -0700 Change: 2019-10-15 11:09:07.560110312 -0700 Birth: - File: ‘/bin/pip3.6’ Size: 407 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50419492 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-07 10:05:35.000000000 -0700 Modify: 2019-08-07 10:05:35.000000000 -0700 Change: 2019-10-15 11:09:07.561110333 -0700 Birth: - File: ‘/bin/pk12util’ Size: 97296 Blocks: 192 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50696792 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-12 08:55:47.000000000 -0700 Modify: 2019-08-12 08:55:47.000000000 -0700 Change: 2019-10-16 09:23:00.648328659 -0700 Birth: - File: ‘/bin/pkaction’ Size: 15360 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50394396 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-09-13 11:10:09.000000000 -0700 Modify: 2019-09-13 11:10:09.000000000 -0700 Change: 2019-10-16 09:21:58.933989003 -0700 Birth: - File: ‘/bin/pkcheck’ Size: 23576 Blocks: 48 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360552 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-09-13 11:10:09.000000000 -0700 Modify: 2019-09-13 11:10:09.000000000 -0700 Change: 2019-10-16 09:21:58.940489126 -0700 Birth: - File: ‘/bin/pkexec’ Size: 23576 Blocks: 48 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360553 Links: 1 Access: (4755/-rwsr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-09-13 11:10:09.000000000 -0700 Modify: 2019-09-13 11:10:09.000000000 -0700 Change: 2019-10-16 09:21:58.955656080 -0700 Birth: - File: ‘/bin/pkg-config’ Size: 45448 Blocks: 96 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359329 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-21 13:17:59.169397263 -0700 Modify: 2014-06-09 15:05:48.000000000 -0700 Change: 2019-08-15 10:53:24.113660811 -0700 Birth: - File: ‘/bin/pkill’ Size: 28336 Blocks: 56 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50358302 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 18:55:49.000000000 -0700 Modify: 2019-08-08 18:55:49.000000000 -0700 Change: 2019-10-16 09:21:43.605614326 -0700 Birth: - File: ‘/bin/pkla-admin-identities’ Size: 19688 Blocks: 40 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360568 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-25 17:13:40.779314785 -0700 Modify: 2014-06-09 15:08:33.000000000 -0700 Change: 2019-08-15 10:53:32.427660974 -0700 Birth: - File: ‘/bin/pkla-check-authorization’ Size: 27960 Blocks: 56 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360569 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:policykit_auth_exec_t:s0 Access: 2019-10-25 17:13:40.689396312 -0700 Modify: 2014-06-09 15:08:33.000000000 -0700 Change: 2019-08-15 10:53:32.428660975 -0700 Birth: - File: ‘/bin/pkttyagent’ Size: 19440 Blocks: 40 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360554 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-01 11:36:43.016701766 -0700 Modify: 2019-09-13 11:10:09.000000000 -0700 Change: 2019-10-16 09:21:58.962156204 -0700 Birth: - File: ‘/bin/pl2pm’ Size: 4531 Blocks: 16 IO Block: 4096 regular file Device: fd00h/64768d Inode: 51051554 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-01-21 14:09:22.000000000 -0800 Modify: 2019-01-21 14:09:22.000000000 -0800 Change: 2019-10-15 11:27:59.088410371 -0700 Birth: - File: ‘/bin/pldd’ Size: 14872 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332750 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-06 16:23:28.000000000 -0700 Modify: 2019-08-06 16:23:28.000000000 -0700 Change: 2019-10-16 09:21:19.015646950 -0700 Birth: - File: ‘/bin/plymouth’ Size: 40808 Blocks: 80 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360051 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:plymouth_exec_t:s0 Access: 2019-11-09 10:34:29.983999931 -0800 Modify: 2019-08-08 04:51:43.000000000 -0700 Change: 2019-10-16 09:22:27.458697832 -0700 Birth: - File: ‘/bin/pmap’ Size: 28272 Blocks: 56 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50358303 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 18:55:49.000000000 -0700 Modify: 2019-08-08 18:55:49.000000000 -0700 Change: 2019-10-16 09:21:43.611031096 -0700 Birth: - File: ‘/bin/pod2html’ Size: 4096 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 51051555 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-01-21 14:09:44.000000000 -0800 Modify: 2019-01-21 14:09:44.000000000 -0800 Change: 2019-10-15 11:27:59.088410371 -0700 Birth: - File: ‘/bin/pod2man’ Size: 13581 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50422103 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2014-06-09 12:56:13.000000000 -0700 Modify: 2014-06-09 12:56:13.000000000 -0700 Change: 2019-10-15 11:27:57.690381235 -0700 Birth: - File: ‘/bin/pod2text’ Size: 11004 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50422104 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2014-06-09 12:56:13.000000000 -0700 Modify: 2014-06-09 12:56:13.000000000 -0700 Change: 2019-10-15 11:27:57.693381297 -0700 Birth: - File: ‘/bin/pod2usage’ Size: 3755 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 51051508 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2014-06-10 01:56:18.000000000 -0700 Modify: 2014-06-10 01:56:18.000000000 -0700 Change: 2019-10-15 11:27:58.244392781 -0700 Birth: - File: ‘/bin/post-grohtml’ Size: 192048 Blocks: 376 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339156 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2014-06-09 13:17:22.000000000 -0700 Modify: 2014-06-09 13:17:22.000000000 -0700 Change: 2019-08-15 10:53:20.650660743 -0700 Birth: - File: ‘/bin/powernow-k8-decode’ Size: 6296 Blocks: 16 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50392015 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-09-30 07:30:32.000000000 -0700 Modify: 2019-09-30 07:30:32.000000000 -0700 Change: 2019-10-16 09:22:58.999463984 -0700 Birth: - File: ‘/bin/pr’ Size: 66672 Blocks: 136 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338451 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.629394003 -0700 Birth: - File: ‘/bin/preconv’ Size: 41864 Blocks: 88 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339158 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-10 17:39:49.463802943 -0800 Modify: 2014-06-09 13:17:22.000000000 -0700 Change: 2019-08-15 10:53:20.654660743 -0700 Birth: - File: ‘/bin/pre-grohtml’ Size: 88312 Blocks: 176 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339157 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2014-06-09 13:17:22.000000000 -0700 Modify: 2014-06-09 13:17:22.000000000 -0700 Change: 2019-08-15 10:53:20.653660743 -0700 Birth: - File: ‘/bin/printenv’ Size: 28968 Blocks: 64 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338452 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.630477357 -0700 Birth: - File: ‘/bin/printf’ Size: 49768 Blocks: 104 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338453 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-21 13:18:11.628805979 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.631560711 -0700 Birth: - File: ‘/bin/prlimit’ Size: 42184 Blocks: 88 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359688 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.653346227 -0700 Birth: - File: ‘/bin/ps’ Size: 100112 Blocks: 200 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359242 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-10 07:12:50.562620231 -0800 Modify: 2019-08-08 18:55:49.000000000 -0700 Change: 2019-10-16 09:21:43.622947989 -0700 Birth: - File: ‘/bin/psed’ Size: 53329 Blocks: 112 IO Block: 4096 regular file Device: fd00h/64768d Inode: 51052242 Links: 2 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-01-21 14:09:44.000000000 -0800 Modify: 2019-01-21 14:09:44.000000000 -0800 Change: 2019-10-15 11:28:01.084451969 -0700 Birth: - File: ‘/bin/psfaddtable’ -> ‘psfxtable’ Size: 9 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50572253 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.517851210 -0800 Modify: 2019-08-15 10:53:46.186899780 -0700 Change: 2019-08-15 10:53:46.186899780 -0700 Birth: - File: ‘/bin/psfgettable’ -> ‘psfxtable’ Size: 9 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50572254 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.517851210 -0800 Modify: 2019-08-15 10:53:46.186899780 -0700 Change: 2019-08-15 10:53:46.186899780 -0700 Birth: - File: ‘/bin/psfstriptable’ -> ‘psfxtable’ Size: 9 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50572255 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.517851210 -0800 Modify: 2019-08-15 10:53:46.186899780 -0700 Change: 2019-08-15 10:53:46.186899780 -0700 Birth: - File: ‘/bin/psfxtable’ Size: 20008 Blocks: 40 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50572256 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-10-30 15:39:49.000000000 -0700 Modify: 2018-10-30 15:39:49.000000000 -0700 Change: 2019-08-15 10:53:46.187899797 -0700 Birth: - File: ‘/bin/pstruct’ Size: 36607 Blocks: 72 IO Block: 4096 regular file Device: fd00h/64768d Inode: 51052239 Links: 2 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-01-21 14:09:44.000000000 -0800 Modify: 2019-01-21 14:09:44.000000000 -0800 Change: 2019-10-15 11:28:01.078451844 -0700 Birth: - File: ‘/bin/ptaskset’ Size: 3891 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359149 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2016-11-05 14:51:47.000000000 -0700 Modify: 2016-11-05 14:51:47.000000000 -0700 Change: 2019-08-15 10:53:23.069660791 -0700 Birth: - File: ‘/bin/ptx’ Size: 66640 Blocks: 136 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338454 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.638060835 -0700 Birth: - File: ‘/bin/pwd’ Size: 33232 Blocks: 72 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338455 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.639144189 -0700 Birth: - File: ‘/bin/pwdx’ Size: 11536 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359718 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 18:55:49.000000000 -0700 Modify: 2019-08-08 18:55:49.000000000 -0700 Change: 2019-10-16 09:21:43.627281405 -0700 Birth: - File: ‘/bin/pwmake’ Size: 11392 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339021 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-04-10 20:58:18.000000000 -0700 Modify: 2018-04-10 20:58:18.000000000 -0700 Change: 2019-08-15 10:53:20.411660738 -0700 Birth: - File: ‘/bin/pwscore’ Size: 11392 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339022 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-04-10 20:58:18.000000000 -0700 Modify: 2018-04-10 20:58:18.000000000 -0700 Change: 2019-08-15 10:53:20.412660738 -0700 Birth: - File: ‘/bin/pydoc’ Size: 78 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359086 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-06 17:51:47.000000000 -0700 Modify: 2019-08-06 17:51:47.000000000 -0700 Change: 2019-10-16 09:21:32.291065940 -0700 Birth: - File: ‘/bin/pydoc3’ -> ‘pydoc3.6’ Size: 8 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50420322 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.517851210 -0800 Modify: 2019-10-15 11:09:08.289125193 -0700 Change: 2019-10-15 11:09:08.289125193 -0700 Birth: - File: ‘/bin/pydoc3.6’ Size: 78 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50420323 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-07 10:29:25.000000000 -0700 Modify: 2019-08-07 10:29:25.000000000 -0700 Change: 2019-10-15 11:09:08.289125193 -0700 Birth: - File: ‘/bin/python’ -> ‘python2’ Size: 7 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50359087 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 12:41:12.801607310 -0800 Modify: 2019-10-16 09:21:32.291065940 -0700 Change: 2019-10-16 09:21:32.292149294 -0700 Birth: - File: ‘/bin/python2’ -> ‘python2.7’ Size: 9 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50359088 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.517851210 -0800 Modify: 2019-10-16 09:21:32.292149294 -0700 Change: 2019-10-16 09:21:32.292149294 -0700 Birth: - File: ‘/bin/python2.7’ Size: 7216 Blocks: 16 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359089 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-09 10:34:30.802675561 -0800 Modify: 2019-08-06 17:52:02.000000000 -0700 Change: 2019-10-16 09:21:32.298649417 -0700 Birth: - File: ‘/bin/python3’ -> ‘python3.6’ Size: 9 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50420324 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.351014629 -0800 Modify: 2019-10-15 11:09:08.289125193 -0700 Change: 2019-10-15 11:09:08.289125193 -0700 Birth: - File: ‘/bin/python3.6’ Size: 11408 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50420329 Links: 2 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.351014629 -0800 Modify: 2019-08-07 10:29:51.000000000 -0700 Change: 2019-10-15 11:09:08.304125499 -0700 Birth: - File: ‘/bin/python3.6m’ Size: 11408 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50420329 Links: 2 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.351014629 -0800 Modify: 2019-08-07 10:29:51.000000000 -0700 Change: 2019-10-15 11:09:08.304125499 -0700 Birth: - File: ‘/bin/pyvenv’ -> ‘pyvenv-3.6’ Size: 10 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50420325 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.518934564 -0800 Modify: 2019-10-15 11:09:08.289125193 -0700 Change: 2019-10-15 11:09:08.290125213 -0700 Birth: - File: ‘/bin/pyvenv-3.6’ Size: 435 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50420326 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-07 10:29:25.000000000 -0700 Modify: 2019-08-07 10:29:25.000000000 -0700 Change: 2019-10-15 11:09:08.290125213 -0700 Birth: - File: ‘/bin/ranlib’ Size: 62744 Blocks: 128 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50356939 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 16:14:33.000000000 -0700 Modify: 2019-08-08 16:14:33.000000000 -0700 Change: 2019-10-16 09:21:37.857338403 -0700 Birth: - File: ‘/bin/raw’ Size: 15640 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359689 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:fsadm_exec_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.653346227 -0700 Birth: - File: ‘/bin/read’ Size: 28 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332722 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 05:06:55.000000000 -0700 Modify: 2019-08-08 05:06:55.000000000 -0700 Change: 2019-10-16 09:21:18.572555195 -0700 Birth: - File: ‘/bin/readelf’ Size: 517992 Blocks: 1016 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50356940 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 16:14:33.000000000 -0700 Modify: 2019-08-08 16:14:33.000000000 -0700 Change: 2019-10-16 09:21:37.882255544 -0700 Birth: - File: ‘/bin/readlink’ Size: 41800 Blocks: 88 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338456 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-21 13:17:58.544386484 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.640227542 -0700 Birth: - File: ‘/bin/realpath’ Size: 62696 Blocks: 128 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338457 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-16 09:21:37.147741583 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.646727666 -0700 Birth: - File: ‘/bin/recode-sr-latin’ Size: 15648 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359190 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-02 19:24:25.000000000 -0700 Modify: 2017-08-02 19:24:25.000000000 -0700 Change: 2019-08-15 10:53:23.703660803 -0700 Birth: - File: ‘/bin/rename’ Size: 11528 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359690 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.654429581 -0700 Birth: - File: ‘/bin/renice’ Size: 11480 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359691 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 03:50:06.631252090 -0800 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.655512935 -0700 Birth: - File: ‘/bin/reset’ -> ‘tset’ Size: 4 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50332900 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.518934564 -0800 Modify: 2019-08-15 10:53:08.880660512 -0700 Change: 2019-08-15 10:53:08.880660512 -0700 Birth: - File: ‘/bin/resizecons’ Size: 20176 Blocks: 40 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50572257 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-10-30 15:39:49.000000000 -0700 Modify: 2018-10-30 15:39:49.000000000 -0700 Change: 2019-08-15 10:53:46.188899815 -0700 Birth: - File: ‘/bin/rev’ Size: 11528 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359699 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.655512935 -0700 Birth: - File: ‘/bin/rm’ Size: 62872 Blocks: 128 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338458 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 10:45:43.173546574 -0800 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.647811020 -0700 Birth: - File: ‘/bin/rmail’ -> ‘/etc/alternatives/mta-rmail’ Size: 27 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50611101 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.520017919 -0800 Modify: 2019-08-15 10:53:54.531045857 -0700 Change: 2019-08-15 10:53:54.531045857 -0700 Birth: - File: ‘/bin/rmail.postfix’ Size: 262 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50611082 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-10-30 09:50:24.000000000 -0700 Modify: 2018-10-30 09:50:24.000000000 -0700 Change: 2019-08-15 10:53:53.471027300 -0700 Birth: - File: ‘/bin/rmdir’ Size: 45528 Blocks: 96 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338459 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-10 23:53:01.545903135 -0800 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.649977728 -0700 Birth: - File: ‘/bin/rpcgen’ Size: 93144 Blocks: 184 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332751 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-06 16:23:28.000000000 -0700 Modify: 2019-08-06 16:23:28.000000000 -0700 Change: 2019-10-16 09:21:19.019980366 -0700 Birth: - File: ‘/bin/rpm’ Size: 16208 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50357006 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:rpm_exec_t:s0 Access: 2019-08-06 15:50:50.000000000 -0700 Modify: 2019-08-06 15:50:50.000000000 -0700 Change: 2019-10-16 09:21:39.668706165 -0700 Birth: - File: ‘/bin/rpm2cpio’ Size: 11496 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50357007 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-06 15:50:50.000000000 -0700 Modify: 2019-08-06 15:50:50.000000000 -0700 Change: 2019-10-16 09:21:39.674122935 -0700 Birth: - File: ‘/bin/rpmdb’ Size: 12096 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50357008 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-06 15:50:50.000000000 -0700 Modify: 2019-08-06 15:50:50.000000000 -0700 Change: 2019-10-16 09:21:39.675206289 -0700 Birth: - File: ‘/bin/rpmkeys’ Size: 12096 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50357009 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-06 15:50:50.000000000 -0700 Modify: 2019-08-06 15:50:50.000000000 -0700 Change: 2019-10-16 09:21:39.676289642 -0700 Birth: - File: ‘/bin/rpmquery’ -> ‘../../bin/rpm’ Size: 13 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50357010 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.520017919 -0800 Modify: 2019-10-16 09:21:39.676289642 -0700 Change: 2019-10-16 09:21:39.676289642 -0700 Birth: - File: ‘/bin/rpmverify’ -> ‘../../bin/rpm’ Size: 13 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50357011 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.520017919 -0800 Modify: 2019-10-16 09:21:39.676289642 -0700 Change: 2019-10-16 09:21:39.676289642 -0700 Birth: - File: ‘/bin/rsync’ Size: 495896 Blocks: 976 IO Block: 4096 regular file Device: fd00h/64768d Inode: 51052249 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:rsync_exec_t:s0 Access: 2019-04-25 10:17:07.000000000 -0700 Modify: 2019-04-25 10:17:07.000000000 -0700 Change: 2019-10-15 11:28:01.227454950 -0700 Birth: - File: ‘/bin/rsyslog-recover-qi.pl’ Size: 6098 Blocks: 16 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50610503 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-09-13 11:14:24.000000000 -0700 Modify: 2019-09-13 11:14:24.000000000 -0700 Change: 2019-10-16 09:22:52.701927624 -0700 Birth: - File: ‘/bin/runcon’ Size: 33248 Blocks: 72 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338460 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.655394498 -0700 Birth: - File: ‘/bin/run-parts’ Size: 2086 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360782 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 12:01:01.536356267 -0800 Modify: 2014-06-09 15:14:31.000000000 -0700 Change: 2019-08-15 10:53:33.570678439 -0700 Birth: - File: ‘/bin/rvi’ -> ‘vi’ Size: 2 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50338315 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.520017919 -0800 Modify: 2019-10-16 09:21:42.248171859 -0700 Change: 2019-10-16 09:21:42.249255213 -0700 Birth: - File: ‘/bin/rview’ -> ‘vi’ Size: 2 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50359447 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.520017919 -0800 Modify: 2019-10-16 09:21:42.249255213 -0700 Change: 2019-10-16 09:21:42.249255213 -0700 Birth: - File: ‘/bin/s2p’ Size: 53329 Blocks: 112 IO Block: 4096 regular file Device: fd00h/64768d Inode: 51052242 Links: 2 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-01-21 14:09:44.000000000 -0800 Modify: 2019-01-21 14:09:44.000000000 -0800 Change: 2019-10-15 11:28:01.084451969 -0700 Birth: - File: ‘/bin/sadf’ Size: 172488 Blocks: 344 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50426657 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-10 15:42:07.249449913 -0800 Modify: 2019-08-08 19:54:58.000000000 -0700 Change: 2019-10-29 23:35:07.223196838 -0700 Birth: - File: ‘/bin/sandbox’ Size: 17939 Blocks: 40 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50382823 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 18:47:27.000000000 -0700 Modify: 2019-08-08 18:47:27.000000000 -0700 Change: 2019-10-16 09:22:16.319652781 -0700 Birth: - File: ‘/bin/sar’ Size: 97656 Blocks: 192 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50426658 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-10 23:53:01.470068317 -0800 Modify: 2019-08-08 19:54:58.000000000 -0700 Change: 2019-10-29 23:35:07.235113722 -0700 Birth: - File: ‘/bin/scp’ Size: 91384 Blocks: 184 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50705035 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 09:28:45.953755883 -0800 Modify: 2019-08-08 18:40:47.000000000 -0700 Change: 2019-10-16 09:22:49.357614060 -0700 Birth: - File: ‘/bin/script’ Size: 20080 Blocks: 40 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359700 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.662013058 -0700 Birth: - File: ‘/bin/scriptreplay’ Size: 15656 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359701 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.663096412 -0700 Birth: - File: ‘/bin/sdiff’ Size: 49640 Blocks: 104 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338703 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 16:11:12.000000000 -0700 Modify: 2019-08-08 16:11:12.000000000 -0700 Change: 2019-10-16 09:21:32.385317731 -0700 Birth: - File: ‘/bin/secon’ Size: 24640 Blocks: 56 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360473 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 18:47:31.000000000 -0700 Modify: 2019-08-08 18:47:31.000000000 -0700 Change: 2019-10-16 09:21:47.538189072 -0700 Birth: - File: ‘/bin/sed’ Size: 76016 Blocks: 152 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338357 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-09 10:34:28.830999945 -0800 Modify: 2014-06-09 18:01:50.000000000 -0700 Change: 2019-08-15 10:53:16.600660663 -0700 Birth: - File: ‘/bin/sedismod’ Size: 255408 Blocks: 504 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50742505 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-10-30 14:48:39.000000000 -0700 Modify: 2018-10-30 14:48:39.000000000 -0700 Change: 2019-08-15 12:00:20.039614240 -0700 Birth: - File: ‘/bin/sedispol’ Size: 180552 Blocks: 360 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50742506 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-10-30 14:48:39.000000000 -0700 Modify: 2018-10-30 14:48:39.000000000 -0700 Change: 2019-08-15 12:00:20.051614477 -0700 Birth: - File: ‘/bin/semodule_package’ Size: 15672 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50382824 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 18:47:31.000000000 -0700 Modify: 2019-08-08 18:47:31.000000000 -0700 Change: 2019-10-16 09:22:16.325069551 -0700 Birth: - File: ‘/bin/seq’ Size: 49640 Blocks: 104 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338461 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.657561205 -0700 Birth: - File: ‘/bin/setarch’ Size: 15640 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359702 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.664179766 -0700 Birth: - File: ‘/bin/setfacl’ Size: 37616 Blocks: 80 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359695 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-04-10 17:41:22.000000000 -0700 Modify: 2018-04-10 17:41:22.000000000 -0700 Change: 2019-08-15 10:53:27.671660881 -0700 Birth: - File: ‘/bin/setfont’ Size: 41432 Blocks: 88 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50572239 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-09 10:34:28.880999945 -0800 Modify: 2018-10-30 15:39:49.000000000 -0700 Change: 2019-08-15 10:53:46.178899640 -0700 Birth: - File: ‘/bin/setkeycodes’ Size: 11496 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50572258 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-10-30 15:39:49.000000000 -0700 Modify: 2018-10-30 15:39:49.000000000 -0700 Change: 2019-08-15 10:53:46.189899832 -0700 Birth: - File: ‘/bin/setleds’ Size: 11520 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50572259 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-10-30 15:39:49.000000000 -0700 Modify: 2018-10-30 15:39:49.000000000 -0700 Change: 2019-08-15 10:53:46.190899850 -0700 Birth: - File: ‘/bin/setmetamode’ Size: 11568 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50572260 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-10-30 15:39:49.000000000 -0700 Modify: 2018-10-30 15:39:49.000000000 -0700 Change: 2019-08-15 10:53:46.191899867 -0700 Birth: - File: ‘/bin/setpriv’ Size: 36928 Blocks: 80 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359703 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.665263120 -0700 Birth: - File: ‘/bin/setsid’ Size: 11496 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359704 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-21 13:18:11.345801098 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.666346474 -0700 Birth: - File: ‘/bin/setterm’ Size: 28144 Blocks: 56 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359705 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.673929951 -0700 Birth: - File: ‘/bin/setup-nsssysinit’ -> ‘setup-nsssysinit.sh’ Size: 19 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50338833 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.521101273 -0800 Modify: 2019-10-16 09:21:33.792594478 -0700 Change: 2019-10-16 09:21:33.798011248 -0700 Birth: - File: ‘/bin/setup-nsssysinit.sh’ Size: 1539 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338834 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-12 08:55:23.000000000 -0700 Modify: 2019-08-12 08:55:23.000000000 -0700 Change: 2019-10-16 09:21:33.802344664 -0700 Birth: - File: ‘/bin/setvtrgb’ Size: 11688 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50572261 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-10-30 15:39:49.000000000 -0700 Modify: 2018-10-30 15:39:49.000000000 -0700 Change: 2019-08-15 10:53:46.191899867 -0700 Birth: - File: ‘/bin/sftp’ Size: 145424 Blocks: 288 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50705036 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 18:40:47.000000000 -0700 Modify: 2019-08-08 18:40:47.000000000 -0700 Change: 2019-10-16 09:22:49.378197784 -0700 Birth: - File: ‘/bin/sg’ -> ‘newgrp’ Size: 6 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50338553 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.521101273 -0800 Modify: 2019-10-16 09:21:29.379010591 -0700 Change: 2019-10-16 09:21:29.379010591 -0700 Birth: - File: ‘/bin/sh’ -> ‘bash’ Size: 4 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50332723 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 10:40:01.506631148 -0800 Modify: 2019-10-16 09:21:18.572555195 -0700 Change: 2019-10-16 09:21:18.572555195 -0700 Birth: - File: ‘/bin/sha1sum’ Size: 37448 Blocks: 80 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338462 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.658644559 -0700 Birth: - File: ‘/bin/sha224sum’ Size: 41608 Blocks: 88 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338463 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.659727913 -0700 Birth: - File: ‘/bin/sha256sum’ Size: 41608 Blocks: 88 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338464 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.665144683 -0700 Birth: - File: ‘/bin/sha384sum’ Size: 41624 Blocks: 88 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338465 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.666228037 -0700 Birth: - File: ‘/bin/sha512sum’ Size: 41624 Blocks: 88 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338466 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-16 09:22:02.338970387 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.667311391 -0700 Birth: - File: ‘/bin/showconsolefont’ Size: 15912 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50572262 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-10-30 15:39:49.000000000 -0700 Modify: 2018-10-30 15:39:49.000000000 -0700 Change: 2019-08-15 10:53:46.192899885 -0700 Birth: - File: ‘/bin/showkey’ Size: 15680 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50572263 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-10-30 15:39:49.000000000 -0700 Modify: 2018-10-30 15:39:49.000000000 -0700 Change: 2019-08-15 10:53:46.193899902 -0700 Birth: - File: ‘/bin/shred’ Size: 54208 Blocks: 112 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338467 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.673811514 -0700 Birth: - File: ‘/bin/shuf’ Size: 50312 Blocks: 104 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338468 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.675978222 -0700 Birth: - File: ‘/bin/signver’ Size: 96664 Blocks: 192 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359246 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-12 08:55:47.000000000 -0700 Modify: 2019-08-12 08:55:47.000000000 -0700 Change: 2019-10-16 09:23:00.660245552 -0700 Birth: - File: ‘/bin/size’ Size: 33216 Blocks: 72 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50356941 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 16:14:33.000000000 -0700 Modify: 2019-08-08 16:14:33.000000000 -0700 Change: 2019-10-16 09:21:37.888755667 -0700 Birth: - File: ‘/bin/skill’ Size: 24184 Blocks: 48 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359743 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 18:55:49.000000000 -0700 Modify: 2019-08-08 18:55:49.000000000 -0700 Change: 2019-10-16 09:21:43.632698174 -0700 Birth: - File: ‘/bin/slabtop’ Size: 19984 Blocks: 40 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359929 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 18:55:49.000000000 -0700 Modify: 2019-08-08 18:55:49.000000000 -0700 Change: 2019-10-16 09:21:43.638114944 -0700 Birth: - File: ‘/bin/sleep’ Size: 33128 Blocks: 72 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338469 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-01 15:20:53.365401158 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.675978222 -0700 Birth: - File: ‘/bin/slogin’ -> ‘./ssh’ Size: 5 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50705037 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.522184627 -0800 Modify: 2019-10-16 09:22:49.378197784 -0700 Change: 2019-10-16 09:22:49.378197784 -0700 Birth: - File: ‘/bin/snice’ Size: 24184 Blocks: 48 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359938 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 18:55:49.000000000 -0700 Modify: 2019-08-08 18:55:49.000000000 -0700 Change: 2019-10-16 09:21:43.642448360 -0700 Birth: - File: ‘/bin/soelim’ Size: 33368 Blocks: 72 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339159 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2014-06-09 13:17:22.000000000 -0700 Modify: 2014-06-09 13:17:22.000000000 -0700 Change: 2019-08-15 10:53:20.655660743 -0700 Birth: - File: ‘/bin/sort’ Size: 117704 Blocks: 232 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338470 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-09 10:34:34.285746199 -0800 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.684645053 -0700 Birth: - File: ‘/bin/sotruss’ Size: 4341 Blocks: 16 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332752 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-06 16:03:05.000000000 -0700 Modify: 2019-08-06 16:03:05.000000000 -0700 Change: 2019-10-16 09:21:19.019980366 -0700 Birth: - File: ‘/bin/splain’ Size: 18459 Blocks: 40 IO Block: 4096 regular file Device: fd00h/64768d Inode: 51051556 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-01-21 14:09:44.000000000 -0800 Modify: 2019-01-21 14:09:44.000000000 -0800 Change: 2019-10-15 11:27:59.089410391 -0700 Birth: - File: ‘/bin/split’ Size: 71128 Blocks: 144 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338471 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.691145177 -0700 Birth: - File: ‘/bin/sprof’ Size: 23224 Blocks: 48 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332753 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-06 16:23:28.000000000 -0700 Modify: 2019-08-06 16:23:28.000000000 -0700 Change: 2019-10-16 09:21:19.021063720 -0700 Birth: - File: ‘/bin/sqlite3’ Size: 56240 Blocks: 112 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338775 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2015-11-20 00:39:02.000000000 -0800 Modify: 2015-11-20 00:39:02.000000000 -0800 Change: 2019-08-15 10:53:19.108660713 -0700 Birth: - File: ‘/bin/ssh’ Size: 774568 Blocks: 1520 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50705038 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:ssh_exec_t:s0 Access: 2019-11-10 08:21:32.602136508 -0800 Modify: 2019-08-08 18:40:47.000000000 -0700 Change: 2019-10-16 09:22:49.475699637 -0700 Birth: - File: ‘/bin/ssh-add’ Size: 360920 Blocks: 712 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50705039 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 18:40:47.000000000 -0700 Modify: 2019-08-08 18:40:47.000000000 -0700 Change: 2019-10-16 09:22:49.517950440 -0700 Birth: - File: ‘/bin/ssh-agent’ Size: 382216 Blocks: 752 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50705040 Links: 1 Access: (2111/---x--s--x) Uid: ( 0/ root) Gid: ( 99/ nobody) Context: system_u:object_r:ssh_agent_exec_t:s0 Access: 2019-08-08 18:40:47.000000000 -0700 Modify: 2019-08-08 18:40:47.000000000 -0700 Change: 2019-10-16 09:22:49.555867828 -0700 Birth: - File: ‘/bin/ssh-copy-id’ Size: 10469 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50705041 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 18:40:39.000000000 -0700 Modify: 2019-08-08 18:40:39.000000000 -0700 Change: 2019-10-16 09:22:49.556951182 -0700 Birth: - File: ‘/bin/ssh-keygen’ Size: 419208 Blocks: 824 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50358242 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:ssh_keygen_exec_t:s0 Access: 2019-08-08 18:40:47.000000000 -0700 Modify: 2019-08-08 18:40:47.000000000 -0700 Change: 2019-10-16 09:22:01.735542251 -0700 Birth: - File: ‘/bin/ssh-keyscan’ Size: 441024 Blocks: 864 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50392028 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 18:40:47.000000000 -0700 Modify: 2019-08-08 18:40:47.000000000 -0700 Change: 2019-10-16 09:22:49.598118631 -0700 Birth: - File: ‘/bin/ssltap’ Size: 112928 Blocks: 224 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359248 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-12 08:55:47.000000000 -0700 Modify: 2019-08-12 08:55:47.000000000 -0700 Change: 2019-10-16 09:23:00.673245800 -0700 Birth: - File: ‘/bin/stat’ Size: 79040 Blocks: 160 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338472 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-10 15:27:50.256535962 -0800 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.693311885 -0700 Birth: - File: ‘/bin/stdbuf’ Size: 66440 Blocks: 136 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338473 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.699812008 -0700 Birth: - File: ‘/bin/strings’ Size: 29192 Blocks: 64 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50356942 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 16:14:33.000000000 -0700 Modify: 2019-08-08 16:14:33.000000000 -0700 Change: 2019-10-16 09:21:37.889839021 -0700 Birth: - File: ‘/bin/strip’ Size: 232856 Blocks: 456 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50356943 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-21 13:18:12.975829211 -0700 Modify: 2019-08-08 16:14:33.000000000 -0700 Change: 2019-10-16 09:21:37.897422499 -0700 Birth: - File: ‘/bin/stty’ Size: 70256 Blocks: 144 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338474 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-09 10:34:52.364684908 -0800 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.701978716 -0700 Birth: - File: ‘/bin/su’ Size: 32128 Blocks: 64 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359706 Links: 1 Access: (4755/-rwsr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:su_exec_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.675013305 -0700 Birth: - File: ‘/bin/sudo’ Size: 147320 Blocks: 288 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50705101 Links: 1 Access: (4111/---s--x--x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:sudo_exec_t:s0 Access: 2019-11-11 09:25:10.159759774 -0800 Modify: 2019-08-08 19:58:09.000000000 -0700 Change: 2019-10-16 09:22:58.025528809 -0700 Birth: - File: ‘/bin/sudoedit’ -> ‘sudo’ Size: 4 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50705102 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.523267982 -0800 Modify: 2019-10-16 09:22:58.025528809 -0700 Change: 2019-10-16 09:22:58.025528809 -0700 Birth: - File: ‘/bin/sudoreplay’ Size: 57456 Blocks: 120 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50705103 Links: 1 Access: (0111/---x--x--x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 19:58:09.000000000 -0700 Modify: 2019-08-08 19:58:09.000000000 -0700 Change: 2019-10-16 09:22:58.033112286 -0700 Birth: - File: ‘/bin/sum’ Size: 37432 Blocks: 80 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338475 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.703062070 -0700 Birth: - File: ‘/bin/sync’ Size: 28976 Blocks: 64 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338476 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-21 13:18:11.561804824 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.704145424 -0700 Birth: - File: ‘/bin/systemctl’ Size: 717568 Blocks: 1408 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360063 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:systemd_systemctl_exec_t:s0 Access: 2019-11-09 10:34:29.012999943 -0800 Modify: 2019-09-13 11:21:23.000000000 -0700 Change: 2019-10-16 09:21:45.411565318 -0700 Birth: - File: ‘/bin/systemd-analyze’ Size: 1558080 Blocks: 3048 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360119 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-09-13 11:21:23.000000000 -0700 Modify: 2019-09-13 11:21:23.000000000 -0700 Change: 2019-10-16 09:21:45.502567048 -0700 Birth: - File: ‘/bin/systemd-ask-password’ Size: 61824 Blocks: 128 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360120 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-09-13 11:21:23.000000000 -0700 Modify: 2019-09-13 11:21:23.000000000 -0700 Change: 2019-10-16 09:21:45.504733756 -0700 Birth: - File: ‘/bin/systemd-cat’ Size: 40952 Blocks: 80 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360121 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-21 13:17:58.616387726 -0700 Modify: 2019-09-13 11:21:23.000000000 -0700 Change: 2019-10-16 09:21:45.506900464 -0700 Birth: - File: ‘/bin/systemd-cgls’ Size: 334112 Blocks: 656 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360123 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-21 13:18:11.126797321 -0700 Modify: 2019-09-13 11:21:23.000000000 -0700 Change: 2019-10-16 09:21:45.522067419 -0700 Birth: - File: ‘/bin/systemd-cgtop’ Size: 87128 Blocks: 176 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360124 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-09-13 11:21:23.000000000 -0700 Modify: 2019-09-13 11:21:23.000000000 -0700 Change: 2019-10-16 09:21:45.525317480 -0700 Birth: - File: ‘/bin/systemd-coredumpctl’ -> ‘coredumpctl’ Size: 11 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50360125 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.524351336 -0800 Modify: 2019-10-16 09:21:45.525317480 -0700 Change: 2019-10-16 09:21:45.525317480 -0700 Birth: - File: ‘/bin/systemd-delta’ Size: 78680 Blocks: 160 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360126 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-09-13 11:21:23.000000000 -0700 Modify: 2019-09-13 11:21:23.000000000 -0700 Change: 2019-10-16 09:21:45.527484188 -0700 Birth: - File: ‘/bin/systemd-detect-virt’ Size: 40928 Blocks: 80 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360127 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-09 10:34:28.545999949 -0800 Modify: 2019-09-13 11:21:23.000000000 -0700 Change: 2019-10-16 09:21:45.529650896 -0700 Birth: - File: ‘/bin/systemd-escape’ Size: 49352 Blocks: 104 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360173 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-21 13:18:11.115797132 -0700 Modify: 2019-09-13 11:21:23.000000000 -0700 Change: 2019-10-16 09:21:45.539401081 -0700 Birth: - File: ‘/bin/systemd-firstboot’ Size: 103952 Blocks: 208 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360175 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-09-13 11:21:23.000000000 -0700 Modify: 2019-09-13 11:21:23.000000000 -0700 Change: 2019-10-16 09:21:45.542651143 -0700 Birth: - File: ‘/bin/systemd-hwdb’ Size: 87344 Blocks: 176 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360176 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:systemd_hwdb_exec_t:s0 Access: 2019-09-13 11:21:23.000000000 -0700 Modify: 2019-09-13 11:21:23.000000000 -0700 Change: 2019-10-16 09:21:45.545901205 -0700 Birth: - File: ‘/bin/systemd-inhibit’ Size: 313200 Blocks: 616 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360179 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-09-13 11:21:23.000000000 -0700 Modify: 2019-09-13 11:21:23.000000000 -0700 Change: 2019-10-16 09:21:45.562151514 -0700 Birth: - File: ‘/bin/systemd-loginctl’ -> ‘loginctl’ Size: 8 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50360180 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.525434691 -0800 Modify: 2019-10-16 09:21:45.562151514 -0700 Change: 2019-10-16 09:21:45.562151514 -0700 Birth: - File: ‘/bin/systemd-machine-id-setup’ Size: 53488 Blocks: 112 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360181 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-16 09:21:46.782008033 -0700 Modify: 2019-09-13 11:21:23.000000000 -0700 Change: 2019-10-16 09:21:45.564318221 -0700 Birth: - File: ‘/bin/systemd-notify’ Size: 49288 Blocks: 104 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360182 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:systemd_notify_exec_t:s0 Access: 2019-09-13 11:21:23.000000000 -0700 Modify: 2019-09-13 11:21:23.000000000 -0700 Change: 2019-10-16 09:21:45.566484929 -0700 Birth: - File: ‘/bin/systemd-nspawn’ Size: 558912 Blocks: 1096 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360183 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-09-13 11:21:23.000000000 -0700 Modify: 2019-09-13 11:21:23.000000000 -0700 Change: 2019-10-16 09:21:45.591402070 -0700 Birth: - File: ‘/bin/systemd-path’ Size: 53416 Blocks: 112 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360184 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-09-13 11:21:23.000000000 -0700 Modify: 2019-09-13 11:21:23.000000000 -0700 Change: 2019-10-16 09:21:45.597902193 -0700 Birth: - File: ‘/bin/systemd-run’ Size: 392216 Blocks: 768 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360185 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-21 13:18:10.535787128 -0700 Modify: 2019-09-13 11:21:23.000000000 -0700 Change: 2019-10-16 09:21:45.611985794 -0700 Birth: - File: ‘/bin/systemd-stdio-bridge’ Size: 313136 Blocks: 616 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360186 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-09-13 11:21:23.000000000 -0700 Modify: 2019-09-13 11:21:23.000000000 -0700 Change: 2019-10-16 09:21:45.624986041 -0700 Birth: - File: ‘/bin/systemd-sysv-convert’ Size: 3979 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50358245 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-09-13 11:19:27.000000000 -0700 Modify: 2019-09-13 11:19:27.000000000 -0700 Change: 2019-10-16 09:22:16.026063868 -0700 Birth: - File: ‘/bin/systemd-tmpfiles’ Size: 145536 Blocks: 288 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360187 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:systemd_tmpfiles_exec_t:s0 Access: 2019-11-11 10:50:01.656267060 -0800 Modify: 2019-09-13 11:21:23.000000000 -0700 Change: 2019-10-16 09:21:45.633652872 -0700 Birth: - File: ‘/bin/systemd-tty-ask-password-agent’ Size: 86784 Blocks: 176 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360188 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:systemd_passwd_agent_exec_t:s0 Access: 2019-11-01 11:36:43.016701766 -0700 Modify: 2019-09-13 11:21:23.000000000 -0700 Change: 2019-10-16 09:21:45.637986288 -0700 Birth: - File: ‘/bin/tabs’ Size: 15680 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332901 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-09-06 15:08:20.000000000 -0700 Modify: 2017-09-06 15:08:20.000000000 -0700 Change: 2019-08-15 10:53:08.882660512 -0700 Birth: - File: ‘/bin/tac’ Size: 33264 Blocks: 72 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338477 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.711728902 -0700 Birth: - File: ‘/bin/tail’ Size: 66824 Blocks: 136 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338478 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-09 10:34:35.059761899 -0800 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.713895609 -0700 Birth: - File: ‘/bin/tailf’ Size: 24456 Blocks: 48 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359707 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.675013305 -0700 Birth: - File: ‘/bin/tapestat’ Size: 53816 Blocks: 112 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50426659 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 19:54:58.000000000 -0700 Modify: 2019-08-08 19:54:58.000000000 -0700 Change: 2019-10-29 23:35:07.239447135 -0700 Birth: - File: ‘/bin/tar’ Size: 346136 Blocks: 680 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359669 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-10-30 13:24:30.000000000 -0700 Modify: 2018-10-30 13:24:30.000000000 -0700 Change: 2019-08-15 10:53:27.480660877 -0700 Birth: - File: ‘/bin/taskset’ Size: 32992 Blocks: 72 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359708 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.681513429 -0700 Birth: - File: ‘/bin/tbl’ Size: 118744 Blocks: 232 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339160 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-10 17:39:49.464886298 -0800 Modify: 2014-06-09 13:17:22.000000000 -0700 Change: 2019-08-15 10:53:20.659660743 -0700 Birth: - File: ‘/bin/teamd’ Size: 154648 Blocks: 304 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50357046 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:NetworkManager_exec_t:s0 Access: 2019-10-17 11:27:36.481882439 -0700 Modify: 2019-08-08 17:33:36.000000000 -0700 Change: 2019-10-16 09:21:41.902581957 -0700 Birth: - File: ‘/bin/teamdctl’ Size: 29672 Blocks: 64 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50357047 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-17 11:27:36.482882458 -0700 Modify: 2019-08-08 17:33:36.000000000 -0700 Change: 2019-10-16 09:21:41.907998727 -0700 Birth: - File: ‘/bin/teamnl’ Size: 19560 Blocks: 40 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50357044 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-17 11:27:36.484882497 -0700 Modify: 2019-08-08 17:33:36.000000000 -0700 Change: 2019-10-16 09:21:41.741162222 -0700 Birth: - File: ‘/bin/tee’ Size: 33160 Blocks: 72 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338479 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.716062317 -0700 Birth: - File: ‘/bin/test’ Size: 37336 Blocks: 80 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338480 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.722562441 -0700 Birth: - File: ‘/bin/testgdbm’ Size: 30488 Blocks: 64 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50358686 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2014-06-09 14:39:03.000000000 -0700 Modify: 2014-06-09 14:39:03.000000000 -0700 Change: 2019-08-15 10:53:21.466660759 -0700 Birth: - File: ‘/bin/tic’ Size: 65800 Blocks: 136 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332902 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-09-06 15:08:20.000000000 -0700 Modify: 2017-09-06 15:08:20.000000000 -0700 Change: 2019-08-15 10:53:08.885660512 -0700 Birth: - File: ‘/bin/timedatectl’ Size: 338104 Blocks: 664 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360189 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-09-13 11:21:23.000000000 -0700 Modify: 2019-09-13 11:21:23.000000000 -0700 Change: 2019-10-16 09:21:45.654236597 -0700 Birth: - File: ‘/bin/timeout’ Size: 54592 Blocks: 112 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338481 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-01 11:36:44.343729969 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.724729149 -0700 Birth: - File: ‘/bin/tload’ Size: 15744 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359939 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 18:55:49.000000000 -0700 Modify: 2019-08-08 18:55:49.000000000 -0700 Change: 2019-10-16 09:21:43.647865129 -0700 Birth: - File: ‘/bin/tmon’ Size: 31856 Blocks: 64 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50392016 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-09-30 07:30:32.000000000 -0700 Modify: 2019-09-30 07:30:32.000000000 -0700 Change: 2019-10-16 09:22:59.007047461 -0700 Birth: - File: ‘/bin/toe’ Size: 15800 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332903 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-09-06 15:08:20.000000000 -0700 Modify: 2017-09-06 15:08:20.000000000 -0700 Change: 2019-08-15 10:53:08.886660512 -0700 Birth: - File: ‘/bin/top’ Size: 106880 Blocks: 216 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359940 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 18:55:49.000000000 -0700 Modify: 2019-08-08 18:55:49.000000000 -0700 Change: 2019-10-16 09:21:43.661948730 -0700 Birth: - File: ‘/bin/touch’ Size: 62480 Blocks: 128 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338482 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 03:50:06.633418795 -0800 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.726895856 -0700 Birth: - File: ‘/bin/tput’ Size: 15784 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332904 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-09 10:34:48.472640920 -0800 Modify: 2017-09-06 15:08:20.000000000 -0700 Change: 2019-08-15 10:53:08.886660512 -0700 Birth: - File: ‘/bin/tr’ Size: 45680 Blocks: 96 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338483 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-09 10:34:34.552751616 -0800 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.733395980 -0700 Birth: - File: ‘/bin/tracepath’ Size: 15408 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360576 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:traceroute_exec_t:s0 Access: 2017-08-04 01:01:04.000000000 -0700 Modify: 2017-08-04 01:01:04.000000000 -0700 Change: 2019-08-15 10:53:32.456660975 -0700 Birth: - File: ‘/bin/tracepath6’ Size: 15408 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360577 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:traceroute_exec_t:s0 Access: 2017-08-04 01:01:04.000000000 -0700 Modify: 2017-08-04 01:01:04.000000000 -0700 Change: 2019-08-15 10:53:32.456660975 -0700 Birth: - File: ‘/bin/troff’ Size: 525272 Blocks: 1032 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339161 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-10 17:39:49.474636496 -0800 Modify: 2014-06-09 13:17:22.000000000 -0700 Change: 2019-08-15 10:53:20.675660744 -0700 Birth: - File: ‘/bin/true’ Size: 28936 Blocks: 64 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338484 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-21 13:18:11.190798425 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.734479334 -0700 Birth: - File: ‘/bin/truncate’ Size: 53936 Blocks: 112 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338485 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.735562688 -0700 Birth: - File: ‘/bin/trust’ Size: 183376 Blocks: 360 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338422 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-15 10:53:17.053660672 -0700 Modify: 2017-08-04 16:36:46.000000000 -0700 Change: 2019-08-15 10:53:16.953660670 -0700 Birth: - File: ‘/bin/tset’ Size: 20072 Blocks: 40 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332905 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-09-06 15:08:20.000000000 -0700 Modify: 2017-09-06 15:08:20.000000000 -0700 Change: 2019-08-15 10:53:08.888660512 -0700 Birth: - File: ‘/bin/tsort’ Size: 37344 Blocks: 80 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338486 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.740979457 -0700 Birth: - File: ‘/bin/tty’ Size: 28968 Blocks: 64 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338487 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-09 10:34:48.468642791 -0800 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.740979457 -0700 Birth: - File: ‘/bin/turbostat’ Size: 115864 Blocks: 232 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50392017 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-09-30 07:30:32.000000000 -0700 Modify: 2019-09-30 07:30:32.000000000 -0700 Change: 2019-10-16 09:22:59.021131062 -0700 Birth: - File: ‘/bin/tzselect’ Size: 7339 Blocks: 16 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332754 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-06 16:02:23.000000000 -0700 Modify: 2019-08-06 16:02:23.000000000 -0700 Change: 2019-10-16 09:21:19.021063720 -0700 Birth: - File: ‘/bin/udevadm’ Size: 424208 Blocks: 832 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360190 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:udev_exec_t:s0 Access: 2019-11-09 10:34:27.128999967 -0800 Modify: 2019-09-13 11:21:23.000000000 -0700 Change: 2019-10-16 09:21:45.678070384 -0700 Birth: - File: ‘/bin/ul’ Size: 19936 Blocks: 40 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359709 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.682596783 -0700 Birth: - File: ‘/bin/umask’ Size: 29 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332724 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 05:06:55.000000000 -0700 Modify: 2019-08-08 05:06:55.000000000 -0700 Change: 2019-10-16 09:21:18.573638549 -0700 Birth: - File: ‘/bin/umount’ Size: 31984 Blocks: 64 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359710 Links: 1 Access: (4755/-rwsr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:mount_exec_t:s0 Access: 2019-11-01 11:36:44.731738216 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.683680137 -0700 Birth: - File: ‘/bin/unalias’ Size: 31 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332725 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 05:06:55.000000000 -0700 Modify: 2019-08-08 05:06:55.000000000 -0700 Change: 2019-10-16 09:21:18.573638549 -0700 Birth: - File: ‘/bin/uname’ Size: 33080 Blocks: 72 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338488 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-10 18:50:52.754811740 -0800 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.742062811 -0700 Birth: - File: ‘/bin/unexpand’ Size: 33232 Blocks: 72 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338489 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.745312873 -0700 Birth: - File: ‘/bin/unicode_start’ Size: 2555 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50572240 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-10-30 15:38:31.000000000 -0700 Modify: 2018-10-30 15:38:31.000000000 -0700 Change: 2019-08-15 10:53:46.179899657 -0700 Birth: - File: ‘/bin/unicode_stop’ Size: 363 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50572241 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-10-30 15:38:31.000000000 -0700 Modify: 2018-10-30 15:38:31.000000000 -0700 Change: 2019-08-15 10:53:46.179899657 -0700 Birth: - File: ‘/bin/uniq’ Size: 45784 Blocks: 96 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338490 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-21 13:17:58.603387501 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.752896351 -0700 Birth: - File: ‘/bin/unlink’ Size: 28984 Blocks: 64 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338491 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.753979705 -0700 Birth: - File: ‘/bin/unlz4’ -> ‘lz4’ Size: 3 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50358684 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.528684754 -0800 Modify: 2019-10-16 09:21:34.166351583 -0700 Change: 2019-10-16 09:21:34.166351583 -0700 Birth: - File: ‘/bin/unshare’ Size: 15824 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359711 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-09 10:34:31.313685924 -0800 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.689096906 -0700 Birth: - File: ‘/bin/unxz’ -> ‘xz’ Size: 2 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50339098 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.528684754 -0800 Modify: 2019-08-15 10:53:20.583660742 -0700 Change: 2019-08-15 10:53:20.583660742 -0700 Birth: - File: ‘/bin/update-ca-trust’ Size: 1054 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338432 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-15 10:53:17.051660672 -0700 Modify: 2018-05-14 07:10:13.000000000 -0700 Change: 2019-08-15 10:53:16.999660671 -0700 Birth: - File: ‘/bin/update-mime-database’ Size: 54080 Blocks: 112 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338822 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-15 10:54:00.942158094 -0700 Modify: 2018-04-10 17:37:03.000000000 -0700 Change: 2019-08-15 10:53:19.529660721 -0700 Birth: - File: ‘/bin/uptime’ Size: 11488 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359941 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-08 06:39:50.344926237 -0800 Modify: 2019-08-08 18:55:49.000000000 -0700 Change: 2019-10-16 09:21:43.666282146 -0700 Birth: - File: ‘/bin/urlgrabber’ Size: 12465 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359538 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-10-30 10:15:11.000000000 -0700 Modify: 2018-10-30 10:15:11.000000000 -0700 Change: 2019-08-15 10:53:25.275660834 -0700 Birth: - File: ‘/bin/users’ Size: 33200 Blocks: 72 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338492 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.753979705 -0700 Birth: - File: ‘/bin/usleep’ Size: 11208 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50360589 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 16:52:41.000000000 -0700 Modify: 2019-08-08 16:52:41.000000000 -0700 Change: 2019-10-16 09:21:48.270536325 -0700 Birth: - File: ‘/bin/usx2yloader’ Size: 15776 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50400589 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2016-11-05 11:34:04.000000000 -0700 Modify: 2016-11-05 11:34:04.000000000 -0700 Change: 2019-08-15 10:53:36.445729079 -0700 Birth: - File: ‘/bin/utmpdump’ Size: 15816 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359712 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.689096906 -0700 Birth: - File: ‘/bin/uuidgen’ Size: 11480 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359713 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.690180260 -0700 Birth: - File: ‘/bin/vdir’ Size: 117608 Blocks: 232 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338493 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.763729890 -0700 Birth: - File: ‘/bin/vi’ Size: 928184 Blocks: 1816 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359448 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-10 18:58:36.765650984 -0800 Modify: 2019-08-08 20:17:25.000000000 -0700 Change: 2019-10-16 09:21:42.353257189 -0700 Birth: - File: ‘/bin/view’ -> ‘vi’ Size: 2 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50359449 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.528684754 -0800 Modify: 2019-10-16 09:21:42.353257189 -0700 Change: 2019-10-16 09:21:42.353257189 -0700 Birth: - File: ‘/bin/vlock’ Size: 16160 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50572264 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:vlock_exec_t:s0 Access: 2018-10-30 15:39:49.000000000 -0700 Modify: 2018-10-30 15:39:49.000000000 -0700 Change: 2019-08-15 10:53:46.194899920 -0700 Birth: - File: ‘/bin/vmstat’ Size: 32232 Blocks: 64 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359942 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 18:55:49.000000000 -0700 Modify: 2019-08-08 18:55:49.000000000 -0700 Change: 2019-10-16 09:21:43.671698916 -0700 Birth: - File: ‘/bin/vxloader’ Size: 15744 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50400590 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2016-11-05 11:34:04.000000000 -0700 Modify: 2016-11-05 11:34:04.000000000 -0700 Change: 2019-08-15 10:53:36.445729079 -0700 Birth: - File: ‘/bin/w’ Size: 19912 Blocks: 40 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359943 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-10 19:15:55.706660548 -0800 Modify: 2019-08-08 18:55:49.000000000 -0700 Change: 2019-10-16 09:21:43.677115685 -0700 Birth: - File: ‘/bin/wait’ Size: 28 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50332726 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 05:06:55.000000000 -0700 Modify: 2019-08-08 05:06:55.000000000 -0700 Change: 2019-10-16 09:21:18.573638549 -0700 Birth: - File: ‘/bin/wall’ Size: 15344 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339283 Links: 1 Access: (2555/-r-xr-sr-x) Uid: ( 0/ root) Gid: ( 5/ tty) Context: system_u:object_r:bin_t:s0 Access: 2014-06-09 16:16:44.000000000 -0700 Modify: 2014-06-09 16:16:44.000000000 -0700 Change: 2019-08-15 10:53:21.091660752 -0700 Birth: - File: ‘/bin/watch’ Size: 24728 Blocks: 56 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359944 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 18:55:49.000000000 -0700 Modify: 2019-08-08 18:55:49.000000000 -0700 Change: 2019-10-16 09:21:43.682532454 -0700 Birth: - File: ‘/bin/watchgnupg’ Size: 15720 Blocks: 32 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50400699 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-07-13 06:05:25.000000000 -0700 Modify: 2018-07-13 06:05:25.000000000 -0700 Change: 2019-08-15 10:53:36.925737533 -0700 Birth: - File: ‘/bin/wc’ Size: 41648 Blocks: 88 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338494 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-09 10:34:34.895758573 -0800 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.764813244 -0700 Birth: - File: ‘/bin/wdctl’ Size: 41672 Blocks: 88 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359714 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.691263614 -0700 Birth: - File: ‘/bin/whatis’ Size: 46584 Blocks: 96 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50696675 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-10-30 13:26:36.000000000 -0700 Modify: 2018-10-30 13:26:36.000000000 -0700 Change: 2019-08-15 10:53:56.797085528 -0700 Birth: - File: ‘/bin/whereis’ Size: 20680 Blocks: 48 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359715 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.698847092 -0700 Birth: - File: ‘/bin/which’ Size: 24336 Blocks: 48 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338701 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-09 10:34:35.648773845 -0800 Modify: 2014-06-09 19:25:22.000000000 -0700 Change: 2019-08-15 10:53:18.930660709 -0700 Birth: - File: ‘/bin/whiptail’ Size: 28504 Blocks: 56 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339287 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2014-06-10 00:48:12.000000000 -0700 Modify: 2014-06-10 00:48:12.000000000 -0700 Change: 2019-08-15 10:53:21.361660757 -0700 Birth: - File: ‘/bin/who’ Size: 49872 Blocks: 104 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338495 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.766979952 -0700 Birth: - File: ‘/bin/whoami’ Size: 28984 Blocks: 64 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338528 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.773480075 -0700 Birth: - File: ‘/bin/write’ Size: 19544 Blocks: 40 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359716 Links: 1 Access: (2755/-rwxr-sr-x) Uid: ( 0/ root) Gid: ( 5/ tty) Context: system_u:object_r:bin_t:s0 Access: 2019-08-08 20:10:18.000000000 -0700 Modify: 2019-08-08 20:10:18.000000000 -0700 Change: 2019-10-16 09:21:42.699930446 -0700 Birth: - File: ‘/bin/x86_64’ -> ‘setarch’ Size: 7 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50359717 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.529768108 -0800 Modify: 2019-10-16 09:21:42.699930446 -0700 Change: 2019-10-16 09:21:42.699930446 -0700 Birth: - File: ‘/bin/x86_energy_perf_policy’ Size: 10480 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50392018 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-09 10:34:37.876819032 -0800 Modify: 2019-09-30 07:30:32.000000000 -0700 Change: 2019-10-16 09:22:59.025464478 -0700 Birth: - File: ‘/bin/xargs’ Size: 62368 Blocks: 128 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338678 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-09 10:34:30.050999930 -0800 Modify: 2018-10-30 09:42:55.000000000 -0700 Change: 2019-08-15 10:53:18.859660708 -0700 Birth: - File: ‘/bin/xgettext’ Size: 271784 Blocks: 536 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50359191 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2017-08-02 19:24:25.000000000 -0700 Modify: 2017-08-02 19:24:25.000000000 -0700 Change: 2019-08-15 10:53:23.711660803 -0700 Birth: - File: ‘/bin/xmlcatalog’ Size: 19752 Blocks: 40 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338622 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2016-06-23 07:36:19.000000000 -0700 Modify: 2016-06-23 07:36:19.000000000 -0700 Change: 2019-08-15 10:53:18.506660701 -0700 Birth: - File: ‘/bin/xmllint’ Size: 63408 Blocks: 128 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338623 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2016-06-23 07:36:19.000000000 -0700 Modify: 2016-06-23 07:36:19.000000000 -0700 Change: 2019-08-15 10:53:18.510660701 -0700 Birth: - File: ‘/bin/xmlwf’ Size: 24568 Blocks: 48 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338671 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2016-11-28 14:26:58.000000000 -0800 Modify: 2016-11-28 14:26:58.000000000 -0800 Change: 2019-08-15 10:53:18.788660706 -0700 Birth: - File: ‘/bin/xz’ Size: 75280 Blocks: 152 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339099 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-21 13:18:00.131413855 -0700 Modify: 2016-11-05 08:27:57.000000000 -0700 Change: 2019-08-15 10:53:20.586660742 -0700 Birth: - File: ‘/bin/xzcat’ -> ‘xz’ Size: 2 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50339100 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.530851463 -0800 Modify: 2019-08-15 10:53:20.586660742 -0700 Change: 2019-08-15 10:53:20.586660742 -0700 Birth: - File: ‘/bin/xzcmp’ -> ‘xzdiff’ Size: 6 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50339101 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.530851463 -0800 Modify: 2019-08-15 10:53:20.586660742 -0700 Change: 2019-08-15 10:53:20.586660742 -0700 Birth: - File: ‘/bin/xzdec’ Size: 11472 Blocks: 24 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339102 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2016-11-05 08:27:57.000000000 -0700 Modify: 2016-11-05 08:27:57.000000000 -0700 Change: 2019-08-15 10:53:20.587660742 -0700 Birth: - File: ‘/bin/xzdiff’ Size: 6632 Blocks: 16 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339103 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2016-11-05 08:27:43.000000000 -0700 Modify: 2016-11-05 08:27:43.000000000 -0700 Change: 2019-08-15 10:53:20.587660742 -0700 Birth: - File: ‘/bin/xzegrep’ -> ‘xzgrep’ Size: 6 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50339136 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.530851463 -0800 Modify: 2019-08-15 10:53:20.587660742 -0700 Change: 2019-08-15 10:53:20.587660742 -0700 Birth: - File: ‘/bin/xzfgrep’ -> ‘xzgrep’ Size: 6 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50339137 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.530851463 -0800 Modify: 2019-08-15 10:53:20.587660742 -0700 Change: 2019-08-15 10:53:20.587660742 -0700 Birth: - File: ‘/bin/xzgrep’ Size: 5628 Blocks: 16 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339138 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2016-11-05 08:27:43.000000000 -0700 Modify: 2016-11-05 08:27:43.000000000 -0700 Change: 2019-08-15 10:53:20.588660742 -0700 Birth: - File: ‘/bin/xzless’ Size: 1802 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339139 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2016-11-05 08:27:43.000000000 -0700 Modify: 2016-11-05 08:27:43.000000000 -0700 Change: 2019-08-15 10:53:20.588660742 -0700 Birth: - File: ‘/bin/xzmore’ Size: 2161 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50339140 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2016-11-05 08:27:43.000000000 -0700 Modify: 2016-11-05 08:27:43.000000000 -0700 Change: 2019-08-15 10:53:20.588660742 -0700 Birth: - File: ‘/bin/yes’ Size: 28984 Blocks: 64 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338529 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-08-19 23:25:31.000000000 -0700 Modify: 2019-08-19 23:25:31.000000000 -0700 Change: 2019-10-16 09:21:27.774563429 -0700 Birth: - File: ‘/bin/ypdomainname’ -> ‘hostname’ Size: 8 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50359137 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.530851463 -0800 Modify: 2019-08-15 10:53:22.913660788 -0700 Change: 2019-08-15 10:53:22.913660788 -0700 Birth: - File: ‘/bin/yum’ Size: 801 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50357024 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:rpm_exec_t:s0 Access: 2019-11-10 07:54:55.934168114 -0800 Modify: 2019-08-08 04:57:48.000000000 -0700 Change: 2019-10-16 09:21:40.397803356 -0700 Birth: - File: ‘/bin/zcat’ Size: 1941 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338647 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-09 10:34:36.059782181 -0800 Modify: 2018-04-10 17:01:18.000000000 -0700 Change: 2019-08-15 10:53:18.713660705 -0700 Birth: - File: ‘/bin/zcmp’ Size: 1760 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338648 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-04-10 17:01:18.000000000 -0700 Modify: 2018-04-10 17:01:18.000000000 -0700 Change: 2019-08-15 10:53:18.713660705 -0700 Birth: - File: ‘/bin/zdiff’ Size: 5768 Blocks: 16 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338649 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-04-10 17:01:18.000000000 -0700 Modify: 2018-04-10 17:01:18.000000000 -0700 Change: 2019-08-15 10:53:18.713660705 -0700 Birth: - File: ‘/bin/zegrep’ Size: 123 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338650 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-04-10 17:01:18.000000000 -0700 Modify: 2018-04-10 17:01:18.000000000 -0700 Change: 2019-08-15 10:53:18.713660705 -0700 Birth: - File: ‘/bin/zfgrep’ Size: 123 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338651 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-04-10 17:01:18.000000000 -0700 Modify: 2018-04-10 17:01:18.000000000 -0700 Change: 2019-08-15 10:53:18.714660705 -0700 Birth: - File: ‘/bin/zforce’ Size: 2144 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338652 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-04-10 17:01:18.000000000 -0700 Modify: 2018-04-10 17:01:18.000000000 -0700 Change: 2019-08-15 10:53:18.714660705 -0700 Birth: - File: ‘/bin/zgrep’ Size: 6132 Blocks: 16 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338653 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-10-21 13:17:59.965410992 -0700 Modify: 2018-04-10 17:01:18.000000000 -0700 Change: 2019-08-15 10:53:18.714660705 -0700 Birth: - File: ‘/bin/zless’ Size: 2041 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338654 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-04-10 17:01:18.000000000 -0700 Modify: 2018-04-10 17:01:18.000000000 -0700 Change: 2019-08-15 10:53:18.714660705 -0700 Birth: - File: ‘/bin/zmore’ Size: 2859 Blocks: 8 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338655 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-04-10 17:01:18.000000000 -0700 Modify: 2018-04-10 17:01:18.000000000 -0700 Change: 2019-08-15 10:53:18.715660705 -0700 Birth: - File: ‘/bin/znew’ Size: 5343 Blocks: 16 IO Block: 4096 regular file Device: fd00h/64768d Inode: 50338656 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2018-04-10 17:01:18.000000000 -0700 Modify: 2018-04-10 17:01:18.000000000 -0700 Change: 2019-08-15 10:53:18.715660705 -0700 Birth: - File: ‘/bin/zsoelim’ -> ‘soelim’ Size: 6 Blocks: 0 IO Block: 4096 symbolic link Device: fd00h/64768d Inode: 50339162 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Context: system_u:object_r:bin_t:s0 Access: 2019-11-11 13:58:08.531934817 -0800 Modify: 2019-08-15 10:53:20.675660744 -0700 Change: 2019-08-15 10:53:20.675660744 -0700 Birth: - jc-1.17.3/tests/fixtures/centos-7.7/sum.json000066400000000000000000000074351415226333200205270ustar00rootroot00000000000000[{"filename": "devtoolset-3-gcc-4.9.2-6.el7.x86_64.rpm", "checksum": 7391, "blocks": 23585}, {"filename": "digout", "checksum": 64318, "blocks": 2}, {"filename": "dmidecode.out", "checksum": 35461, "blocks": 271}, {"filename": "ethtool.out", "checksum": 13394, "blocks": 1}, {"filename": "file with spaces in the name", "checksum": 0, "blocks": 0}, {"filename": "id-centos.out", "checksum": 57353, "blocks": 1}, {"filename": "ifcfg.json", "checksum": 15991, "blocks": 2}, {"filename": "ifconfig.out", "checksum": 16654, "blocks": 2}, {"filename": "jc", "checksum": 12379, "blocks": 57387}, {"filename": "jc-1.10.5-linux.sha256", "checksum": 33170, "blocks": 1}, {"filename": "jc-1.10.5-linux.tar.gz", "checksum": 38975, "blocks": 21464}, {"filename": "jc-1.10.5.rpm", "checksum": 36555, "blocks": 21208}, {"filename": "jc-1.11.1-linux.sha256", "checksum": 5771, "blocks": 1}, {"filename": "jc-1.11.1-linux.tar.gz", "checksum": 33621, "blocks": 19753}, {"filename": "jc-1.11.1.sha256", "checksum": 63721, "blocks": 1}, {"filename": "jc-1.11.1.tar.gz", "checksum": 25235, "blocks": 19752}, {"filename": "jc-1.11.2-linux.sha256", "checksum": 3427, "blocks": 1}, {"filename": "jc-1.11.2-linux.tar.gz", "checksum": 64653, "blocks": 19758}, {"filename": "jc-1.11.8-linux.sha256", "checksum": 61535, "blocks": 1}, {"filename": "jc-1.11.8-linux.tar.gz", "checksum": 11356, "blocks": 19768}, {"filename": "jc-1.13.1-linux.sha256", "checksum": 413, "blocks": 1}, {"filename": "jc-1.13.1-linux.tar.gz", "checksum": 5236, "blocks": 19794}, {"filename": "jc-1.13.2-linux.sha256", "checksum": 30467, "blocks": 1}, {"filename": "jc-1.13.2-linux.tar.gz", "checksum": 6369, "blocks": 19789}, {"filename": "jc-1.13.4-linux.sha256", "checksum": 3858, "blocks": 1}, {"filename": "jc-1.13.4-linux.tar.gz", "checksum": 48299, "blocks": 19790}, {"filename": "jello-1.2.8-linux.sha256", "checksum": 9721, "blocks": 1}, {"filename": "jello-1.2.8-linux.tar.gz", "checksum": 22933, "blocks": 19434}, {"filename": "jello-1.2.9-linux.sha256", "checksum": 22600, "blocks": 1}, {"filename": "jello-1.2.9-linux.tar.gz", "checksum": 42077, "blocks": 19435}, {"filename": "journaljson", "checksum": 13482, "blocks": 5874}, {"filename": "jp", "checksum": 32520, "blocks": 3347}, {"filename": "jp_1.1.12_linux_x86_64.zip", "checksum": 10701, "blocks": 1147}, {"filename": "jq_twitter.json", "checksum": 44828, "blocks": 721}, {"filename": "jtbl-1.1.6-linux.sha256", "checksum": 41413, "blocks": 1}, {"filename": "jtbl-1.1.6-linux.tar.gz", "checksum": 3616, "blocks": 17798}, {"filename": "kbls.out", "checksum": 54702, "blocks": 5}, {"filename": "lastb.out", "checksum": 14781, "blocks": 1}, {"filename": "lsblk-cols", "checksum": 12059, "blocks": 2}, {"filename": "ping-ip-O-D.out", "checksum": 18274, "blocks": 2}, {"filename": "ping-ip-O.out", "checksum": 7583, "blocks": 2}, {"filename": "psfile.txt", "checksum": 25564, "blocks": 8}, {"filename": "resizeterm.sh", "checksum": 14654, "blocks": 1}, {"filename": "route-6-n.out", "checksum": 332, "blocks": 2}, {"filename": "route-6.out", "checksum": 18331, "blocks": 2}, {"filename": "routeout", "checksum": 54044, "blocks": 1}, {"filename": "sha384sum.out", "checksum": 27372, "blocks": 7}, {"filename": "shafile.txt", "checksum": 29060, "blocks": 3}, {"filename": "ss-aeep.out", "checksum": 17438, "blocks": 27}, {"filename": "ssout", "checksum": 13282, "blocks": 20}, {"filename": "systemctl.out", "checksum": 14760, "blocks": 38}, {"filename": "top.out", "checksum": 12654, "blocks": 6}, {"filename": "tracepath6.out", "checksum": 1877, "blocks": 1}, {"filename": "tracepath-cnn.out", "checksum": 57607, "blocks": 1}, {"filename": "tr.out", "checksum": 33493, "blocks": 2}, {"filename": "who-aH.out", "checksum": 11896, "blocks": 1}, {"filename": "who.out", "checksum": 56023, "blocks": 1}, {"filename": "whotext", "checksum": 20360, "blocks": 1}] jc-1.17.3/tests/fixtures/centos-7.7/sum.out000066400000000000000000000032041415226333200203530ustar00rootroot0000000000000007391 23585 devtoolset-3-gcc-4.9.2-6.el7.x86_64.rpm 64318 2 digout 35461 271 dmidecode.out 13394 1 ethtool.out 00000 0 file with spaces in the name 57353 1 id-centos.out 15991 2 ifcfg.json 16654 2 ifconfig.out 12379 57387 jc 33170 1 jc-1.10.5-linux.sha256 38975 21464 jc-1.10.5-linux.tar.gz 36555 21208 jc-1.10.5.rpm 05771 1 jc-1.11.1-linux.sha256 33621 19753 jc-1.11.1-linux.tar.gz 63721 1 jc-1.11.1.sha256 25235 19752 jc-1.11.1.tar.gz 03427 1 jc-1.11.2-linux.sha256 64653 19758 jc-1.11.2-linux.tar.gz 61535 1 jc-1.11.8-linux.sha256 11356 19768 jc-1.11.8-linux.tar.gz 00413 1 jc-1.13.1-linux.sha256 05236 19794 jc-1.13.1-linux.tar.gz 30467 1 jc-1.13.2-linux.sha256 06369 19789 jc-1.13.2-linux.tar.gz 03858 1 jc-1.13.4-linux.sha256 48299 19790 jc-1.13.4-linux.tar.gz 09721 1 jello-1.2.8-linux.sha256 22933 19434 jello-1.2.8-linux.tar.gz 22600 1 jello-1.2.9-linux.sha256 42077 19435 jello-1.2.9-linux.tar.gz 13482 5874 journaljson 32520 3347 jp 10701 1147 jp_1.1.12_linux_x86_64.zip 44828 721 jq_twitter.json 41413 1 jtbl-1.1.6-linux.sha256 03616 17798 jtbl-1.1.6-linux.tar.gz 54702 5 kbls.out 14781 1 lastb.out 12059 2 lsblk-cols 18274 2 ping-ip-O-D.out 07583 2 ping-ip-O.out 25564 8 psfile.txt 14654 1 resizeterm.sh 00332 2 route-6-n.out 18331 2 route-6.out 54044 1 routeout 27372 7 sha384sum.out 29060 3 shafile.txt 17438 27 ss-aeep.out 13282 20 ssout 14760 38 systemctl.out 12654 6 top.out 01877 1 tracepath6.out 57607 1 tracepath-cnn.out 33493 2 tr.out 11896 1 who-aH.out 56023 1 who.out 20360 1 whotext jc-1.17.3/tests/fixtures/centos-7.7/sysctl-a.json000066400000000000000000001045451415226333200214620ustar00rootroot00000000000000{"abi.vsyscall32": 1, "crypto.fips_enabled": 0, "debug.exception-trace": 1, "debug.kprobes-optimization": 1, "debug.panic_on_rcu_stall": 0, "dev.cdrom.autoclose": 1, "dev.cdrom.autoeject": 0, "dev.cdrom.check_media": 0, "dev.cdrom.debug": 0, "dev.cdrom.info": "CD-ROM information, Id: cdrom.c 3.20 2003/12/17\n\ndrive name:\t\tsr0\ndrive speed:\t\t1\ndrive # of slots:\t1\nCan close tray:\t\t1\nCan open tray:\t\t1\nCan lock tray:\t\t1\nCan change speed:\t1\nCan select disk:\t0\nCan read multisession:\t1\nCan read MCN:\t\t1\nReports media changed:\t1\nCan play audio:\t\t1\nCan write CD-R:\t\t1\nCan write CD-RW:\t1\nCan read DVD:\t\t1\nCan write DVD-R:\t1\nCan write DVD-RAM:\t1\nCan read MRW:\t\t1\nCan write MRW:\t\t1\nCan write RAM:\t\t1\n\n", "dev.cdrom.lock": 1, "dev.hpet.max-user-freq": 64, "dev.mac_hid.mouse_button2_keycode": 97, "dev.mac_hid.mouse_button3_keycode": 100, "dev.mac_hid.mouse_button_emulation": 0, "dev.parport.default.spintime": 500, "dev.parport.default.timeslice": 200, "dev.raid.speed_limit_max": 200000, "dev.raid.speed_limit_min": 1000, "dev.scsi.logging_level": 0, "fs.aio-max-nr": 65536, "fs.aio-nr": 0, "fs.binfmt_misc.status": "enabled", "fs.dentry-state": "182164\t165608\t45\t0\t149757\t0", "fs.dir-notify-enable": 1, "fs.epoll.max_user_watches": 785940, "fs.file-max": 379085, "fs.file-nr": "1152\t0\t379085", "fs.inode-nr": "34807\t2263", "fs.inode-state": "34807\t2263\t0\t0\t0\t0\t0", "fs.inotify.max_queued_events": 16384, "fs.inotify.max_user_instances": 128, "fs.inotify.max_user_watches": 8192, "fs.lease-break-time": 45, "fs.leases-enable": 1, "fs.may_detach_mounts": 1, "fs.mount-max": 100000, "fs.mqueue.msg_default": 10, "fs.mqueue.msg_max": 10, "fs.mqueue.msgsize_default": 8192, "fs.mqueue.msgsize_max": 8192, "fs.mqueue.queues_max": 256, "fs.nr_open": 1048576, "fs.overflowgid": 65534, "fs.overflowuid": 65534, "fs.pipe-max-size": 1048576, "fs.pipe-user-pages-hard": 0, "fs.pipe-user-pages-soft": 16384, "fs.quota.allocated_dquots": 0, "fs.quota.cache_hits": 0, "fs.quota.drops": 0, "fs.quota.free_dquots": 0, "fs.quota.lookups": 0, "fs.quota.reads": 0, "fs.quota.syncs": 0, "fs.quota.warnings": 1, "fs.quota.writes": 0, "fs.suid_dumpable": 0, "fs.xfs.age_buffer_centisecs": 1500, "fs.xfs.error_level": 3, "fs.xfs.filestream_centisecs": 3000, "fs.xfs.inherit_noatime": 1, "fs.xfs.inherit_nodefrag": 1, "fs.xfs.inherit_nodump": 1, "fs.xfs.inherit_nosymlinks": 0, "fs.xfs.inherit_sync": 1, "fs.xfs.irix_sgid_inherit": 0, "fs.xfs.irix_symlink_mode": 0, "fs.xfs.panic_mask": 0, "fs.xfs.rotorstep": 1, "fs.xfs.speculative_prealloc_lifetime": 300, "fs.xfs.stats_clear": 0, "fs.xfs.xfsbufd_centisecs": 100, "fs.xfs.xfssyncd_centisecs": 3000, "kernel.acct": "4\t2\t30", "kernel.acpi_video_flags": 0, "kernel.auto_msgmni": 1, "kernel.bootloader_type": 114, "kernel.bootloader_version": 2, "kernel.cap_last_cap": 36, "kernel.compat-log": 1, "kernel.core_pattern": "core", "kernel.core_pipe_limit": 0, "kernel.core_uses_pid": 1, "kernel.ctrl-alt-del": 0, "kernel.dmesg_restrict": 0, "kernel.domainname": "(none)", "kernel.ftrace_dump_on_oops": 0, "kernel.ftrace_enabled": 1, "kernel.hardlockup_all_cpu_backtrace": 0, "kernel.hardlockup_panic": 1, "kernel.hostname": "localhost.localdomain", "kernel.hotplug": "", "kernel.hung_task_check_count": 4194304, "kernel.hung_task_panic": 0, "kernel.hung_task_timeout_secs": 120, "kernel.hung_task_warnings": 10, "kernel.io_delay_type": 0, "kernel.kexec_load_disabled": 0, "kernel.keys.gc_delay": 300, "kernel.keys.maxbytes": 20000, "kernel.keys.maxkeys": 200, "kernel.keys.persistent_keyring_expiry": 259200, "kernel.keys.root_maxbytes": 25000000, "kernel.keys.root_maxkeys": 1000000, "kernel.kptr_restrict": 0, "kernel.max_lock_depth": 1024, "kernel.modprobe": "/sbin/modprobe", "kernel.modules_disabled": 0, "kernel.msg_next_id": -1, "kernel.msgmax": 8192, "kernel.msgmnb": 16384, "kernel.msgmni": 7535, "kernel.ngroups_max": 65536, "kernel.nmi_watchdog": 1, "kernel.ns_last_pid": 49181, "kernel.numa_balancing": 0, "kernel.numa_balancing_scan_delay_ms": 1000, "kernel.numa_balancing_scan_period_max_ms": 60000, "kernel.numa_balancing_scan_period_min_ms": 1000, "kernel.numa_balancing_scan_size_mb": 256, "kernel.numa_balancing_settle_count": 4, "kernel.osrelease": "3.10.0-1062.1.2.el7.x86_64", "kernel.ostype": "Linux", "kernel.overflowgid": 65534, "kernel.overflowuid": 65534, "kernel.panic": 0, "kernel.panic_on_io_nmi": 0, "kernel.panic_on_oops": 1, "kernel.panic_on_stackoverflow": 0, "kernel.panic_on_unrecovered_nmi": 0, "kernel.panic_on_warn": 0, "kernel.perf_cpu_time_max_percent": 25, "kernel.perf_event_max_sample_rate": 100000, "kernel.perf_event_mlock_kb": 516, "kernel.perf_event_paranoid": 2, "kernel.pid_max": 131072, "kernel.poweroff_cmd": "/sbin/poweroff", "kernel.print-fatal-signals": 0, "kernel.printk": "4\t4\t1\t7", "kernel.printk_delay": 0, "kernel.printk_ratelimit": 5, "kernel.printk_ratelimit_burst": 10, "kernel.pty.max": 4096, "kernel.pty.nr": 0, "kernel.pty.reserve": 1024, "kernel.random.boot_id": "9e51ba01-3e54-4fbd-b007-a9563d0156d5", "kernel.random.entropy_avail": 744, "kernel.random.poolsize": 4096, "kernel.random.read_wakeup_threshold": 64, "kernel.random.urandom_min_reseed_secs": 60, "kernel.random.uuid": "91912f7c-e25e-48ef-8e53-c1ee7f8b38c8", "kernel.random.write_wakeup_threshold": 896, "kernel.randomize_va_space": 2, "kernel.real-root-dev": 0, "kernel.sched_autogroup_enabled": 0, "kernel.sched_cfs_bandwidth_slice_us": 5000, "kernel.sched_child_runs_first": 0, "kernel.sched_latency_ns": 6000000, "kernel.sched_migration_cost_ns": 500000, "kernel.sched_min_granularity_ns": 10000000, "kernel.sched_nr_migrate": 32, "kernel.sched_rr_timeslice_ms": 100, "kernel.sched_rt_period_us": 1000000, "kernel.sched_rt_runtime_us": 950000, "kernel.sched_schedstats": 0, "kernel.sched_shares_window_ns": 10000000, "kernel.sched_time_avg_ms": 1000, "kernel.sched_tunable_scaling": 1, "kernel.sched_wakeup_granularity_ns": 15000000, "kernel.seccomp.actions_avail": "kill trap errno trace allow", "kernel.seccomp.actions_logged": "kill trap errno trace", "kernel.sem": "250\t32000\t32\t128", "kernel.sem_next_id": -1, "kernel.shm_next_id": -1, "kernel.shm_rmid_forced": 0, "kernel.shmall": 18446744073692774399, "kernel.shmmax": 18446744073692774399, "kernel.shmmni": 4096, "kernel.softlockup_all_cpu_backtrace": 0, "kernel.softlockup_panic": 0, "kernel.stack_tracer_enabled": 0, "kernel.sysctl_writes_strict": 1, "kernel.sysrq": 16, "kernel.tainted": 536870912, "kernel.threads-max": 29981, "kernel.timer_migration": 1, "kernel.traceoff_on_warning": 0, "kernel.unknown_nmi_panic": 0, "kernel.version": "#1 SMP Mon Sep 30 14:19:46 UTC 2019", "kernel.watchdog": 1, "kernel.watchdog_cpumask": "0-127", "kernel.watchdog_thresh": 10, "kernel.yama.ptrace_scope": 0, "net.bridge.bridge-nf-call-arptables": 0, "net.bridge.bridge-nf-call-ip6tables": 0, "net.bridge.bridge-nf-call-iptables": 0, "net.bridge.bridge-nf-filter-pppoe-tagged": 0, "net.bridge.bridge-nf-filter-vlan-tagged": 0, "net.bridge.bridge-nf-pass-vlan-input-dev": 0, "net.core.bpf_jit_enable": 1, "net.core.busy_poll": 0, "net.core.busy_read": 0, "net.core.default_qdisc": "pfifo_fast", "net.core.dev_weight": 64, "net.core.dev_weight_rx_bias": 1, "net.core.dev_weight_tx_bias": 1, "net.core.message_burst": 10, "net.core.message_cost": 5, "net.core.netdev_budget": 300, "net.core.netdev_max_backlog": 1000, "net.core.netdev_rss_key": "00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00", "net.core.netdev_tstamp_prequeue": 1, "net.core.optmem_max": 20480, "net.core.rmem_default": 212992, "net.core.rmem_max": 212992, "net.core.rps_sock_flow_entries": 0, "net.core.somaxconn": 128, "net.core.warnings": 1, "net.core.wmem_default": 212992, "net.core.wmem_max": 212992, "net.core.xfrm_acq_expires": 30, "net.core.xfrm_aevent_etime": 10, "net.core.xfrm_aevent_rseqth": 2, "net.core.xfrm_larval_drop": 1, "net.ipv4.cipso_cache_bucket_size": 10, "net.ipv4.cipso_cache_enable": 1, "net.ipv4.cipso_rbm_optfmt": 0, "net.ipv4.cipso_rbm_strictvalid": 1, "net.ipv4.conf.all.accept_local": 0, "net.ipv4.conf.all.accept_redirects": 0, "net.ipv4.conf.all.accept_source_route": 0, "net.ipv4.conf.all.arp_accept": 0, "net.ipv4.conf.all.arp_announce": 0, "net.ipv4.conf.all.arp_filter": 0, "net.ipv4.conf.all.arp_ignore": 0, "net.ipv4.conf.all.arp_notify": 0, "net.ipv4.conf.all.bootp_relay": 0, "net.ipv4.conf.all.disable_policy": 0, "net.ipv4.conf.all.disable_xfrm": 0, "net.ipv4.conf.all.force_igmp_version": 0, "net.ipv4.conf.all.forwarding": 1, "net.ipv4.conf.all.igmpv2_unsolicited_report_interval": 10000, "net.ipv4.conf.all.igmpv3_unsolicited_report_interval": 1000, "net.ipv4.conf.all.log_martians": 0, "net.ipv4.conf.all.mc_forwarding": 0, "net.ipv4.conf.all.medium_id": 0, "net.ipv4.conf.all.promote_secondaries": 1, "net.ipv4.conf.all.proxy_arp": 0, "net.ipv4.conf.all.proxy_arp_pvlan": 0, "net.ipv4.conf.all.route_localnet": 0, "net.ipv4.conf.all.rp_filter": 1, "net.ipv4.conf.all.secure_redirects": 1, "net.ipv4.conf.all.send_redirects": 1, "net.ipv4.conf.all.shared_media": 1, "net.ipv4.conf.all.src_valid_mark": 0, "net.ipv4.conf.all.tag": 0, "net.ipv4.conf.default.accept_local": 0, "net.ipv4.conf.default.accept_redirects": 1, "net.ipv4.conf.default.accept_source_route": 0, "net.ipv4.conf.default.arp_accept": 0, "net.ipv4.conf.default.arp_announce": 0, "net.ipv4.conf.default.arp_filter": 0, "net.ipv4.conf.default.arp_ignore": 0, "net.ipv4.conf.default.arp_notify": 0, "net.ipv4.conf.default.bootp_relay": 0, "net.ipv4.conf.default.disable_policy": 0, "net.ipv4.conf.default.disable_xfrm": 0, "net.ipv4.conf.default.force_igmp_version": 0, "net.ipv4.conf.default.forwarding": 1, "net.ipv4.conf.default.igmpv2_unsolicited_report_interval": 10000, "net.ipv4.conf.default.igmpv3_unsolicited_report_interval": 1000, "net.ipv4.conf.default.log_martians": 0, "net.ipv4.conf.default.mc_forwarding": 0, "net.ipv4.conf.default.medium_id": 0, "net.ipv4.conf.default.promote_secondaries": 1, "net.ipv4.conf.default.proxy_arp": 0, "net.ipv4.conf.default.proxy_arp_pvlan": 0, "net.ipv4.conf.default.route_localnet": 0, "net.ipv4.conf.default.rp_filter": 1, "net.ipv4.conf.default.secure_redirects": 1, "net.ipv4.conf.default.send_redirects": 1, "net.ipv4.conf.default.shared_media": 1, "net.ipv4.conf.default.src_valid_mark": 0, "net.ipv4.conf.default.tag": 0, "net.ipv4.conf.docker0.accept_local": 0, "net.ipv4.conf.docker0.accept_redirects": 1, "net.ipv4.conf.docker0.accept_source_route": 0, "net.ipv4.conf.docker0.arp_accept": 0, "net.ipv4.conf.docker0.arp_announce": 0, "net.ipv4.conf.docker0.arp_filter": 0, "net.ipv4.conf.docker0.arp_ignore": 0, "net.ipv4.conf.docker0.arp_notify": 0, "net.ipv4.conf.docker0.bootp_relay": 0, "net.ipv4.conf.docker0.disable_policy": 0, "net.ipv4.conf.docker0.disable_xfrm": 0, "net.ipv4.conf.docker0.force_igmp_version": 0, "net.ipv4.conf.docker0.forwarding": 1, "net.ipv4.conf.docker0.igmpv2_unsolicited_report_interval": 10000, "net.ipv4.conf.docker0.igmpv3_unsolicited_report_interval": 1000, "net.ipv4.conf.docker0.log_martians": 0, "net.ipv4.conf.docker0.mc_forwarding": 0, "net.ipv4.conf.docker0.medium_id": 0, "net.ipv4.conf.docker0.promote_secondaries": 1, "net.ipv4.conf.docker0.proxy_arp": 0, "net.ipv4.conf.docker0.proxy_arp_pvlan": 0, "net.ipv4.conf.docker0.route_localnet": 0, "net.ipv4.conf.docker0.rp_filter": 1, "net.ipv4.conf.docker0.secure_redirects": 1, "net.ipv4.conf.docker0.send_redirects": 1, "net.ipv4.conf.docker0.shared_media": 1, "net.ipv4.conf.docker0.src_valid_mark": 0, "net.ipv4.conf.docker0.tag": 0, "net.ipv4.conf.ens33.accept_local": 0, "net.ipv4.conf.ens33.accept_redirects": 1, "net.ipv4.conf.ens33.accept_source_route": 0, "net.ipv4.conf.ens33.arp_accept": 0, "net.ipv4.conf.ens33.arp_announce": 0, "net.ipv4.conf.ens33.arp_filter": 0, "net.ipv4.conf.ens33.arp_ignore": 0, "net.ipv4.conf.ens33.arp_notify": 0, "net.ipv4.conf.ens33.bootp_relay": 0, "net.ipv4.conf.ens33.disable_policy": 0, "net.ipv4.conf.ens33.disable_xfrm": 0, "net.ipv4.conf.ens33.force_igmp_version": 0, "net.ipv4.conf.ens33.forwarding": 1, "net.ipv4.conf.ens33.igmpv2_unsolicited_report_interval": 10000, "net.ipv4.conf.ens33.igmpv3_unsolicited_report_interval": 1000, "net.ipv4.conf.ens33.log_martians": 0, "net.ipv4.conf.ens33.mc_forwarding": 0, "net.ipv4.conf.ens33.medium_id": 0, "net.ipv4.conf.ens33.promote_secondaries": 1, "net.ipv4.conf.ens33.proxy_arp": 0, "net.ipv4.conf.ens33.proxy_arp_pvlan": 0, "net.ipv4.conf.ens33.route_localnet": 0, "net.ipv4.conf.ens33.rp_filter": 1, "net.ipv4.conf.ens33.secure_redirects": 1, "net.ipv4.conf.ens33.send_redirects": 1, "net.ipv4.conf.ens33.shared_media": 1, "net.ipv4.conf.ens33.src_valid_mark": 0, "net.ipv4.conf.ens33.tag": 0, "net.ipv4.conf.lo.accept_local": 0, "net.ipv4.conf.lo.accept_redirects": 1, "net.ipv4.conf.lo.accept_source_route": 1, "net.ipv4.conf.lo.arp_accept": 0, "net.ipv4.conf.lo.arp_announce": 0, "net.ipv4.conf.lo.arp_filter": 0, "net.ipv4.conf.lo.arp_ignore": 0, "net.ipv4.conf.lo.arp_notify": 0, "net.ipv4.conf.lo.bootp_relay": 0, "net.ipv4.conf.lo.disable_policy": 1, "net.ipv4.conf.lo.disable_xfrm": 1, "net.ipv4.conf.lo.force_igmp_version": 0, "net.ipv4.conf.lo.forwarding": 1, "net.ipv4.conf.lo.igmpv2_unsolicited_report_interval": 10000, "net.ipv4.conf.lo.igmpv3_unsolicited_report_interval": 1000, "net.ipv4.conf.lo.log_martians": 0, "net.ipv4.conf.lo.mc_forwarding": 0, "net.ipv4.conf.lo.medium_id": 0, "net.ipv4.conf.lo.promote_secondaries": 0, "net.ipv4.conf.lo.proxy_arp": 0, "net.ipv4.conf.lo.proxy_arp_pvlan": 0, "net.ipv4.conf.lo.route_localnet": 0, "net.ipv4.conf.lo.rp_filter": 0, "net.ipv4.conf.lo.secure_redirects": 1, "net.ipv4.conf.lo.send_redirects": 1, "net.ipv4.conf.lo.shared_media": 1, "net.ipv4.conf.lo.src_valid_mark": 0, "net.ipv4.conf.lo.tag": 0, "net.ipv4.fib_multipath_hash_policy": 0, "net.ipv4.fwmark_reflect": 0, "net.ipv4.icmp_echo_ignore_all": 0, "net.ipv4.icmp_echo_ignore_broadcasts": 1, "net.ipv4.icmp_errors_use_inbound_ifaddr": 0, "net.ipv4.icmp_ignore_bogus_error_responses": 1, "net.ipv4.icmp_msgs_burst": 50, "net.ipv4.icmp_msgs_per_sec": 1000, "net.ipv4.icmp_ratelimit": 1000, "net.ipv4.icmp_ratemask": 6168, "net.ipv4.igmp_max_memberships": 20, "net.ipv4.igmp_max_msf": 10, "net.ipv4.igmp_qrv": 2, "net.ipv4.inet_peer_maxttl": 600, "net.ipv4.inet_peer_minttl": 120, "net.ipv4.inet_peer_threshold": 65664, "net.ipv4.ip_default_ttl": 64, "net.ipv4.ip_dynaddr": 0, "net.ipv4.ip_early_demux": 1, "net.ipv4.ip_forward": 1, "net.ipv4.ip_forward_use_pmtu": 0, "net.ipv4.ip_local_port_range": "32768\t60999", "net.ipv4.ip_local_reserved_ports": "", "net.ipv4.ip_no_pmtu_disc": 0, "net.ipv4.ip_nonlocal_bind": 0, "net.ipv4.ipfrag_high_thresh": 4194304, "net.ipv4.ipfrag_low_thresh": 3145728, "net.ipv4.ipfrag_max_dist": 64, "net.ipv4.ipfrag_secret_interval": 600, "net.ipv4.ipfrag_time": 30, "net.ipv4.neigh.default.anycast_delay": 100, "net.ipv4.neigh.default.app_solicit": 0, "net.ipv4.neigh.default.base_reachable_time_ms": 30000, "net.ipv4.neigh.default.delay_first_probe_time": 5, "net.ipv4.neigh.default.gc_interval": 30, "net.ipv4.neigh.default.gc_stale_time": 60, "net.ipv4.neigh.default.gc_thresh1": 128, "net.ipv4.neigh.default.gc_thresh2": 512, "net.ipv4.neigh.default.gc_thresh3": 1024, "net.ipv4.neigh.default.locktime": 100, "net.ipv4.neigh.default.mcast_solicit": 3, "net.ipv4.neigh.default.proxy_delay": 80, "net.ipv4.neigh.default.proxy_qlen": 64, "net.ipv4.neigh.default.retrans_time_ms": 1000, "net.ipv4.neigh.default.ucast_solicit": 3, "net.ipv4.neigh.default.unres_qlen": 31, "net.ipv4.neigh.default.unres_qlen_bytes": 65536, "net.ipv4.neigh.docker0.anycast_delay": 100, "net.ipv4.neigh.docker0.app_solicit": 0, "net.ipv4.neigh.docker0.base_reachable_time_ms": 30000, "net.ipv4.neigh.docker0.delay_first_probe_time": 5, "net.ipv4.neigh.docker0.gc_stale_time": 60, "net.ipv4.neigh.docker0.locktime": 100, "net.ipv4.neigh.docker0.mcast_solicit": 3, "net.ipv4.neigh.docker0.proxy_delay": 80, "net.ipv4.neigh.docker0.proxy_qlen": 64, "net.ipv4.neigh.docker0.retrans_time_ms": 1000, "net.ipv4.neigh.docker0.ucast_solicit": 3, "net.ipv4.neigh.docker0.unres_qlen": 31, "net.ipv4.neigh.docker0.unres_qlen_bytes": 65536, "net.ipv4.neigh.ens33.anycast_delay": 100, "net.ipv4.neigh.ens33.app_solicit": 0, "net.ipv4.neigh.ens33.base_reachable_time_ms": 30000, "net.ipv4.neigh.ens33.delay_first_probe_time": 5, "net.ipv4.neigh.ens33.gc_stale_time": 60, "net.ipv4.neigh.ens33.locktime": 100, "net.ipv4.neigh.ens33.mcast_solicit": 3, "net.ipv4.neigh.ens33.proxy_delay": 80, "net.ipv4.neigh.ens33.proxy_qlen": 64, "net.ipv4.neigh.ens33.retrans_time_ms": 1000, "net.ipv4.neigh.ens33.ucast_solicit": 3, "net.ipv4.neigh.ens33.unres_qlen": 31, "net.ipv4.neigh.ens33.unres_qlen_bytes": 65536, "net.ipv4.neigh.lo.anycast_delay": 100, "net.ipv4.neigh.lo.app_solicit": 0, "net.ipv4.neigh.lo.base_reachable_time_ms": 30000, "net.ipv4.neigh.lo.delay_first_probe_time": 5, "net.ipv4.neigh.lo.gc_stale_time": 60, "net.ipv4.neigh.lo.locktime": 100, "net.ipv4.neigh.lo.mcast_solicit": 3, "net.ipv4.neigh.lo.proxy_delay": 80, "net.ipv4.neigh.lo.proxy_qlen": 64, "net.ipv4.neigh.lo.retrans_time_ms": 1000, "net.ipv4.neigh.lo.ucast_solicit": 3, "net.ipv4.neigh.lo.unres_qlen": 31, "net.ipv4.neigh.lo.unres_qlen_bytes": 65536, "net.ipv4.ping_group_range": "1\t0", "net.ipv4.route.error_burst": 5000, "net.ipv4.route.error_cost": 1000, "net.ipv4.route.gc_elasticity": 8, "net.ipv4.route.gc_interval": 60, "net.ipv4.route.gc_min_interval": 0, "net.ipv4.route.gc_min_interval_ms": 500, "net.ipv4.route.gc_thresh": -1, "net.ipv4.route.gc_timeout": 300, "net.ipv4.route.max_size": 2147483647, "net.ipv4.route.min_adv_mss": 256, "net.ipv4.route.min_pmtu": 552, "net.ipv4.route.mtu_expires": 600, "net.ipv4.route.redirect_load": 20, "net.ipv4.route.redirect_number": 9, "net.ipv4.route.redirect_silence": 20480, "net.ipv4.tcp_abort_on_overflow": 0, "net.ipv4.tcp_adv_win_scale": 1, "net.ipv4.tcp_allowed_congestion_control": "cubic reno", "net.ipv4.tcp_app_win": 31, "net.ipv4.tcp_autocorking": 1, "net.ipv4.tcp_available_congestion_control": "cubic reno", "net.ipv4.tcp_base_mss": 512, "net.ipv4.tcp_challenge_ack_limit": 1000, "net.ipv4.tcp_congestion_control": "cubic", "net.ipv4.tcp_dsack": 1, "net.ipv4.tcp_early_retrans": 3, "net.ipv4.tcp_ecn": 2, "net.ipv4.tcp_fack": 1, "net.ipv4.tcp_fastopen": 0, "net.ipv4.tcp_fin_timeout": 60, "net.ipv4.tcp_frto": 2, "net.ipv4.tcp_invalid_ratelimit": 500, "net.ipv4.tcp_keepalive_intvl": 75, "net.ipv4.tcp_keepalive_probes": 9, "net.ipv4.tcp_keepalive_time": 7200, "net.ipv4.tcp_limit_output_bytes": 262144, "net.ipv4.tcp_low_latency": 0, "net.ipv4.tcp_max_orphans": 16384, "net.ipv4.tcp_max_ssthresh": 0, "net.ipv4.tcp_max_syn_backlog": 128, "net.ipv4.tcp_max_tw_buckets": 16384, "net.ipv4.tcp_mem": "88053\t117406\t176106", "net.ipv4.tcp_min_snd_mss": 48, "net.ipv4.tcp_min_tso_segs": 2, "net.ipv4.tcp_moderate_rcvbuf": 1, "net.ipv4.tcp_mtu_probing": 0, "net.ipv4.tcp_no_metrics_save": 0, "net.ipv4.tcp_notsent_lowat": -1, "net.ipv4.tcp_orphan_retries": 0, "net.ipv4.tcp_reordering": 3, "net.ipv4.tcp_retrans_collapse": 1, "net.ipv4.tcp_retries1": 3, "net.ipv4.tcp_retries2": 15, "net.ipv4.tcp_rfc1337": 0, "net.ipv4.tcp_rmem": "4096\t87380\t6291456", "net.ipv4.tcp_sack": 1, "net.ipv4.tcp_slow_start_after_idle": 1, "net.ipv4.tcp_stdurg": 0, "net.ipv4.tcp_syn_retries": 6, "net.ipv4.tcp_synack_retries": 5, "net.ipv4.tcp_syncookies": 1, "net.ipv4.tcp_thin_dupack": 0, "net.ipv4.tcp_thin_linear_timeouts": 0, "net.ipv4.tcp_timestamps": 1, "net.ipv4.tcp_tso_win_divisor": 3, "net.ipv4.tcp_tw_recycle": 0, "net.ipv4.tcp_tw_reuse": 0, "net.ipv4.tcp_window_scaling": 1, "net.ipv4.tcp_wmem": "4096\t16384\t4194304", "net.ipv4.tcp_workaround_signed_windows": 0, "net.ipv4.udp_mem": "89943\t119926\t179886", "net.ipv4.udp_rmem_min": 4096, "net.ipv4.udp_wmem_min": 4096, "net.ipv4.xfrm4_gc_thresh": 32768, "net.ipv6.anycast_src_echo_reply": 0, "net.ipv6.bindv6only": 0, "net.ipv6.conf.all.accept_dad": 0, "net.ipv6.conf.all.accept_ra": 1, "net.ipv6.conf.all.accept_ra_defrtr": 1, "net.ipv6.conf.all.accept_ra_pinfo": 1, "net.ipv6.conf.all.accept_ra_rt_info_max_plen": 0, "net.ipv6.conf.all.accept_ra_rtr_pref": 1, "net.ipv6.conf.all.accept_redirects": 1, "net.ipv6.conf.all.accept_source_route": 0, "net.ipv6.conf.all.autoconf": 1, "net.ipv6.conf.all.dad_transmits": 1, "net.ipv6.conf.all.disable_ipv6": 0, "net.ipv6.conf.all.enhanced_dad": 1, "net.ipv6.conf.all.force_mld_version": 0, "net.ipv6.conf.all.force_tllao": 0, "net.ipv6.conf.all.forwarding": 0, "net.ipv6.conf.all.hop_limit": 64, "net.ipv6.conf.all.keep_addr_on_down": 0, "net.ipv6.conf.all.max_addresses": 16, "net.ipv6.conf.all.max_desync_factor": 600, "net.ipv6.conf.all.mc_forwarding": 0, "net.ipv6.conf.all.mldv1_unsolicited_report_interval": 10000, "net.ipv6.conf.all.mldv2_unsolicited_report_interval": 1000, "net.ipv6.conf.all.mtu": 1280, "net.ipv6.conf.all.ndisc_notify": 0, "net.ipv6.conf.all.optimistic_dad": 0, "net.ipv6.conf.all.proxy_ndp": 0, "net.ipv6.conf.all.regen_max_retry": 3, "net.ipv6.conf.all.router_probe_interval": 60, "net.ipv6.conf.all.router_solicitation_delay": 1, "net.ipv6.conf.all.router_solicitation_interval": 4, "net.ipv6.conf.all.router_solicitations": 3, "net.ipv6.conf.all.temp_prefered_lft": 86400, "net.ipv6.conf.all.temp_valid_lft": 604800, "net.ipv6.conf.all.use_optimistic": 0, "net.ipv6.conf.all.use_tempaddr": 0, "net.ipv6.conf.default.accept_dad": 1, "net.ipv6.conf.default.accept_ra": 1, "net.ipv6.conf.default.accept_ra_defrtr": 1, "net.ipv6.conf.default.accept_ra_pinfo": 1, "net.ipv6.conf.default.accept_ra_rt_info_max_plen": 0, "net.ipv6.conf.default.accept_ra_rtr_pref": 1, "net.ipv6.conf.default.accept_redirects": 1, "net.ipv6.conf.default.accept_source_route": 0, "net.ipv6.conf.default.autoconf": 1, "net.ipv6.conf.default.dad_transmits": 1, "net.ipv6.conf.default.disable_ipv6": 0, "net.ipv6.conf.default.enhanced_dad": 1, "net.ipv6.conf.default.force_mld_version": 0, "net.ipv6.conf.default.force_tllao": 0, "net.ipv6.conf.default.forwarding": 0, "net.ipv6.conf.default.hop_limit": 64, "net.ipv6.conf.default.keep_addr_on_down": 0, "net.ipv6.conf.default.max_addresses": 16, "net.ipv6.conf.default.max_desync_factor": 600, "net.ipv6.conf.default.mc_forwarding": 0, "net.ipv6.conf.default.mldv1_unsolicited_report_interval": 10000, "net.ipv6.conf.default.mldv2_unsolicited_report_interval": 1000, "net.ipv6.conf.default.mtu": 1280, "net.ipv6.conf.default.ndisc_notify": 0, "net.ipv6.conf.default.optimistic_dad": 0, "net.ipv6.conf.default.proxy_ndp": 0, "net.ipv6.conf.default.regen_max_retry": 3, "net.ipv6.conf.default.router_probe_interval": 60, "net.ipv6.conf.default.router_solicitation_delay": 1, "net.ipv6.conf.default.router_solicitation_interval": 4, "net.ipv6.conf.default.router_solicitations": 3, "net.ipv6.conf.default.temp_prefered_lft": 86400, "net.ipv6.conf.default.temp_valid_lft": 604800, "net.ipv6.conf.default.use_optimistic": 0, "net.ipv6.conf.default.use_tempaddr": 0, "net.ipv6.conf.docker0.accept_dad": 1, "net.ipv6.conf.docker0.accept_ra": 1, "net.ipv6.conf.docker0.accept_ra_defrtr": 1, "net.ipv6.conf.docker0.accept_ra_pinfo": 1, "net.ipv6.conf.docker0.accept_ra_rt_info_max_plen": 0, "net.ipv6.conf.docker0.accept_ra_rtr_pref": 1, "net.ipv6.conf.docker0.accept_redirects": 1, "net.ipv6.conf.docker0.accept_source_route": 0, "net.ipv6.conf.docker0.autoconf": 1, "net.ipv6.conf.docker0.dad_transmits": 1, "net.ipv6.conf.docker0.disable_ipv6": 0, "net.ipv6.conf.docker0.enhanced_dad": 1, "net.ipv6.conf.docker0.force_mld_version": 0, "net.ipv6.conf.docker0.force_tllao": 0, "net.ipv6.conf.docker0.forwarding": 0, "net.ipv6.conf.docker0.hop_limit": 64, "net.ipv6.conf.docker0.keep_addr_on_down": 0, "net.ipv6.conf.docker0.max_addresses": 16, "net.ipv6.conf.docker0.max_desync_factor": 600, "net.ipv6.conf.docker0.mc_forwarding": 0, "net.ipv6.conf.docker0.mldv1_unsolicited_report_interval": 10000, "net.ipv6.conf.docker0.mldv2_unsolicited_report_interval": 1000, "net.ipv6.conf.docker0.mtu": 1500, "net.ipv6.conf.docker0.ndisc_notify": 0, "net.ipv6.conf.docker0.optimistic_dad": 0, "net.ipv6.conf.docker0.proxy_ndp": 0, "net.ipv6.conf.docker0.regen_max_retry": 3, "net.ipv6.conf.docker0.router_probe_interval": 60, "net.ipv6.conf.docker0.router_solicitation_delay": 1, "net.ipv6.conf.docker0.router_solicitation_interval": 4, "net.ipv6.conf.docker0.router_solicitations": 3, "net.ipv6.conf.docker0.temp_prefered_lft": 86400, "net.ipv6.conf.docker0.temp_valid_lft": 604800, "net.ipv6.conf.docker0.use_optimistic": 0, "net.ipv6.conf.docker0.use_tempaddr": 0, "net.ipv6.conf.ens33.accept_dad": 1, "net.ipv6.conf.ens33.accept_ra": 1, "net.ipv6.conf.ens33.accept_ra_defrtr": 0, "net.ipv6.conf.ens33.accept_ra_pinfo": 0, "net.ipv6.conf.ens33.accept_ra_rt_info_max_plen": 0, "net.ipv6.conf.ens33.accept_ra_rtr_pref": 0, "net.ipv6.conf.ens33.accept_redirects": 1, "net.ipv6.conf.ens33.accept_source_route": 0, "net.ipv6.conf.ens33.autoconf": 1, "net.ipv6.conf.ens33.dad_transmits": 1, "net.ipv6.conf.ens33.disable_ipv6": 0, "net.ipv6.conf.ens33.enhanced_dad": 1, "net.ipv6.conf.ens33.force_mld_version": 0, "net.ipv6.conf.ens33.force_tllao": 0, "net.ipv6.conf.ens33.forwarding": 0, "net.ipv6.conf.ens33.hop_limit": 64, "net.ipv6.conf.ens33.keep_addr_on_down": 0, "net.ipv6.conf.ens33.max_addresses": 16, "net.ipv6.conf.ens33.max_desync_factor": 600, "net.ipv6.conf.ens33.mc_forwarding": 0, "net.ipv6.conf.ens33.mldv1_unsolicited_report_interval": 10000, "net.ipv6.conf.ens33.mldv2_unsolicited_report_interval": 1000, "net.ipv6.conf.ens33.mtu": 1500, "net.ipv6.conf.ens33.ndisc_notify": 0, "net.ipv6.conf.ens33.optimistic_dad": 0, "net.ipv6.conf.ens33.proxy_ndp": 0, "net.ipv6.conf.ens33.regen_max_retry": 3, "net.ipv6.conf.ens33.router_probe_interval": 60, "net.ipv6.conf.ens33.router_solicitation_delay": 1, "net.ipv6.conf.ens33.router_solicitation_interval": 4, "net.ipv6.conf.ens33.router_solicitations": 3, "net.ipv6.conf.ens33.temp_prefered_lft": 86400, "net.ipv6.conf.ens33.temp_valid_lft": 604800, "net.ipv6.conf.ens33.use_optimistic": 0, "net.ipv6.conf.ens33.use_tempaddr": 0, "net.ipv6.conf.lo.accept_dad": -1, "net.ipv6.conf.lo.accept_ra": 1, "net.ipv6.conf.lo.accept_ra_defrtr": 1, "net.ipv6.conf.lo.accept_ra_pinfo": 1, "net.ipv6.conf.lo.accept_ra_rt_info_max_plen": 0, "net.ipv6.conf.lo.accept_ra_rtr_pref": 1, "net.ipv6.conf.lo.accept_redirects": 1, "net.ipv6.conf.lo.accept_source_route": 0, "net.ipv6.conf.lo.autoconf": 1, "net.ipv6.conf.lo.dad_transmits": 1, "net.ipv6.conf.lo.disable_ipv6": 0, "net.ipv6.conf.lo.enhanced_dad": 1, "net.ipv6.conf.lo.force_mld_version": 0, "net.ipv6.conf.lo.force_tllao": 0, "net.ipv6.conf.lo.forwarding": 0, "net.ipv6.conf.lo.hop_limit": 64, "net.ipv6.conf.lo.keep_addr_on_down": 0, "net.ipv6.conf.lo.max_addresses": 16, "net.ipv6.conf.lo.max_desync_factor": 600, "net.ipv6.conf.lo.mc_forwarding": 0, "net.ipv6.conf.lo.mldv1_unsolicited_report_interval": 10000, "net.ipv6.conf.lo.mldv2_unsolicited_report_interval": 1000, "net.ipv6.conf.lo.mtu": 65536, "net.ipv6.conf.lo.ndisc_notify": 0, "net.ipv6.conf.lo.optimistic_dad": 0, "net.ipv6.conf.lo.proxy_ndp": 0, "net.ipv6.conf.lo.regen_max_retry": 3, "net.ipv6.conf.lo.router_probe_interval": 60, "net.ipv6.conf.lo.router_solicitation_delay": 1, "net.ipv6.conf.lo.router_solicitation_interval": 4, "net.ipv6.conf.lo.router_solicitations": 3, "net.ipv6.conf.lo.temp_prefered_lft": 86400, "net.ipv6.conf.lo.temp_valid_lft": 604800, "net.ipv6.conf.lo.use_optimistic": 0, "net.ipv6.conf.lo.use_tempaddr": -1, "net.ipv6.fwmark_reflect": 0, "net.ipv6.icmp.ratelimit": 1000, "net.ipv6.idgen_delay": 1, "net.ipv6.idgen_retries": 3, "net.ipv6.ip6frag_high_thresh": 4194304, "net.ipv6.ip6frag_low_thresh": 3145728, "net.ipv6.ip6frag_secret_interval": 600, "net.ipv6.ip6frag_time": 60, "net.ipv6.ip_nonlocal_bind": 0, "net.ipv6.mld_max_msf": 64, "net.ipv6.mld_qrv": 2, "net.ipv6.neigh.default.anycast_delay": 100, "net.ipv6.neigh.default.app_solicit": 0, "net.ipv6.neigh.default.base_reachable_time_ms": 30000, "net.ipv6.neigh.default.delay_first_probe_time": 5, "net.ipv6.neigh.default.gc_interval": 30, "net.ipv6.neigh.default.gc_stale_time": 60, "net.ipv6.neigh.default.gc_thresh1": 128, "net.ipv6.neigh.default.gc_thresh2": 512, "net.ipv6.neigh.default.gc_thresh3": 1024, "net.ipv6.neigh.default.locktime": 0, "net.ipv6.neigh.default.mcast_solicit": 3, "net.ipv6.neigh.default.proxy_delay": 80, "net.ipv6.neigh.default.proxy_qlen": 64, "net.ipv6.neigh.default.retrans_time_ms": 1000, "net.ipv6.neigh.default.ucast_solicit": 3, "net.ipv6.neigh.default.unres_qlen": 31, "net.ipv6.neigh.default.unres_qlen_bytes": 65536, "net.ipv6.neigh.docker0.anycast_delay": 100, "net.ipv6.neigh.docker0.app_solicit": 0, "net.ipv6.neigh.docker0.base_reachable_time_ms": 30000, "net.ipv6.neigh.docker0.delay_first_probe_time": 5, "net.ipv6.neigh.docker0.gc_stale_time": 60, "net.ipv6.neigh.docker0.locktime": 0, "net.ipv6.neigh.docker0.mcast_solicit": 3, "net.ipv6.neigh.docker0.proxy_delay": 80, "net.ipv6.neigh.docker0.proxy_qlen": 64, "net.ipv6.neigh.docker0.retrans_time_ms": 1000, "net.ipv6.neigh.docker0.ucast_solicit": 3, "net.ipv6.neigh.docker0.unres_qlen": 31, "net.ipv6.neigh.docker0.unres_qlen_bytes": 65536, "net.ipv6.neigh.ens33.anycast_delay": 100, "net.ipv6.neigh.ens33.app_solicit": 0, "net.ipv6.neigh.ens33.base_reachable_time_ms": 30000, "net.ipv6.neigh.ens33.delay_first_probe_time": 5, "net.ipv6.neigh.ens33.gc_stale_time": 60, "net.ipv6.neigh.ens33.locktime": 0, "net.ipv6.neigh.ens33.mcast_solicit": 3, "net.ipv6.neigh.ens33.proxy_delay": 80, "net.ipv6.neigh.ens33.proxy_qlen": 64, "net.ipv6.neigh.ens33.retrans_time_ms": 1000, "net.ipv6.neigh.ens33.ucast_solicit": 3, "net.ipv6.neigh.ens33.unres_qlen": 31, "net.ipv6.neigh.ens33.unres_qlen_bytes": 65536, "net.ipv6.neigh.lo.anycast_delay": 100, "net.ipv6.neigh.lo.app_solicit": 0, "net.ipv6.neigh.lo.base_reachable_time_ms": 30000, "net.ipv6.neigh.lo.delay_first_probe_time": 5, "net.ipv6.neigh.lo.gc_stale_time": 60, "net.ipv6.neigh.lo.locktime": 0, "net.ipv6.neigh.lo.mcast_solicit": 3, "net.ipv6.neigh.lo.proxy_delay": 80, "net.ipv6.neigh.lo.proxy_qlen": 64, "net.ipv6.neigh.lo.retrans_time_ms": 1000, "net.ipv6.neigh.lo.ucast_solicit": 3, "net.ipv6.neigh.lo.unres_qlen": 31, "net.ipv6.neigh.lo.unres_qlen_bytes": 65536, "net.ipv6.route.gc_elasticity": 9, "net.ipv6.route.gc_interval": 30, "net.ipv6.route.gc_min_interval": 0, "net.ipv6.route.gc_min_interval_ms": 500, "net.ipv6.route.gc_thresh": 1024, "net.ipv6.route.gc_timeout": 60, "net.ipv6.route.max_size": 16384, "net.ipv6.route.min_adv_mss": 1220, "net.ipv6.route.mtu_expires": 600, "net.ipv6.xfrm6_gc_thresh": 32768, "net.netfilter.nf_conntrack_acct": 0, "net.netfilter.nf_conntrack_buckets": 16384, "net.netfilter.nf_conntrack_checksum": 1, "net.netfilter.nf_conntrack_count": 2, "net.netfilter.nf_conntrack_dccp_loose": 1, "net.netfilter.nf_conntrack_dccp_timeout_closereq": 64, "net.netfilter.nf_conntrack_dccp_timeout_closing": 64, "net.netfilter.nf_conntrack_dccp_timeout_open": 43200, "net.netfilter.nf_conntrack_dccp_timeout_partopen": 480, "net.netfilter.nf_conntrack_dccp_timeout_request": 240, "net.netfilter.nf_conntrack_dccp_timeout_respond": 480, "net.netfilter.nf_conntrack_dccp_timeout_timewait": 240, "net.netfilter.nf_conntrack_events": 1, "net.netfilter.nf_conntrack_events_retry_timeout": 15, "net.netfilter.nf_conntrack_expect_max": 256, "net.netfilter.nf_conntrack_frag6_high_thresh": 4194304, "net.netfilter.nf_conntrack_frag6_low_thresh": 3145728, "net.netfilter.nf_conntrack_frag6_timeout": 60, "net.netfilter.nf_conntrack_generic_timeout": 600, "net.netfilter.nf_conntrack_helper": 1, "net.netfilter.nf_conntrack_icmp_timeout": 30, "net.netfilter.nf_conntrack_icmpv6_timeout": 30, "net.netfilter.nf_conntrack_log_invalid": 0, "net.netfilter.nf_conntrack_max": 65536, "net.netfilter.nf_conntrack_sctp_timeout_closed": 10, "net.netfilter.nf_conntrack_sctp_timeout_cookie_echoed": 3, "net.netfilter.nf_conntrack_sctp_timeout_cookie_wait": 3, "net.netfilter.nf_conntrack_sctp_timeout_established": 432000, "net.netfilter.nf_conntrack_sctp_timeout_heartbeat_acked": 210, "net.netfilter.nf_conntrack_sctp_timeout_heartbeat_sent": 30, "net.netfilter.nf_conntrack_sctp_timeout_shutdown_ack_sent": 3, "net.netfilter.nf_conntrack_sctp_timeout_shutdown_recd": 0, "net.netfilter.nf_conntrack_sctp_timeout_shutdown_sent": 0, "net.netfilter.nf_conntrack_tcp_be_liberal": 0, "net.netfilter.nf_conntrack_tcp_loose": 1, "net.netfilter.nf_conntrack_tcp_max_retrans": 3, "net.netfilter.nf_conntrack_tcp_timeout_close": 10, "net.netfilter.nf_conntrack_tcp_timeout_close_wait": 60, "net.netfilter.nf_conntrack_tcp_timeout_established": 432000, "net.netfilter.nf_conntrack_tcp_timeout_fin_wait": 120, "net.netfilter.nf_conntrack_tcp_timeout_last_ack": 30, "net.netfilter.nf_conntrack_tcp_timeout_max_retrans": 300, "net.netfilter.nf_conntrack_tcp_timeout_syn_recv": 60, "net.netfilter.nf_conntrack_tcp_timeout_syn_sent": 120, "net.netfilter.nf_conntrack_tcp_timeout_time_wait": 120, "net.netfilter.nf_conntrack_tcp_timeout_unacknowledged": 300, "net.netfilter.nf_conntrack_timestamp": 0, "net.netfilter.nf_conntrack_udp_timeout": 30, "net.netfilter.nf_conntrack_udp_timeout_stream": 180, "net.netfilter.nf_log.0": "NONE", "net.netfilter.nf_log.1": "NONE", "net.netfilter.nf_log.10": "NONE", "net.netfilter.nf_log.11": "NONE", "net.netfilter.nf_log.12": "NONE", "net.netfilter.nf_log.2": "NONE", "net.netfilter.nf_log.3": "NONE", "net.netfilter.nf_log.4": "NONE", "net.netfilter.nf_log.5": "NONE", "net.netfilter.nf_log.6": "NONE", "net.netfilter.nf_log.7": "NONE", "net.netfilter.nf_log.8": "NONE", "net.netfilter.nf_log.9": "NONE", "net.netfilter.nf_log_all_netns": 0, "net.nf_conntrack_max": 65536, "net.unix.max_dgram_qlen": 512, "user.max_ipc_namespaces": 14990, "user.max_mnt_namespaces": 14990, "user.max_net_namespaces": 14990, "user.max_pid_namespaces": 14990, "user.max_user_namespaces": 0, "user.max_uts_namespaces": 14990, "vm.admin_reserve_kbytes": 8192, "vm.block_dump": 0, "vm.dirty_background_bytes": 0, "vm.dirty_background_ratio": 10, "vm.dirty_bytes": 0, "vm.dirty_expire_centisecs": 3000, "vm.dirty_ratio": 30, "vm.dirty_writeback_centisecs": 500, "vm.drop_caches": 0, "vm.extfrag_threshold": 500, "vm.hugepages_treat_as_movable": 0, "vm.hugetlb_shm_group": 0, "vm.laptop_mode": 0, "vm.legacy_va_layout": 0, "vm.lowmem_reserve_ratio": "256\t256\t32", "vm.max_map_count": 65530, "vm.memory_failure_early_kill": 0, "vm.memory_failure_recovery": 1, "vm.min_free_kbytes": 67584, "vm.min_slab_ratio": 5, "vm.min_unmapped_ratio": 1, "vm.mmap_min_addr": 4096, "vm.nr_hugepages": 0, "vm.nr_hugepages_mempolicy": 0, "vm.nr_overcommit_hugepages": 0, "vm.nr_pdflush_threads": 0, "vm.numa_zonelist_order": "default", "vm.oom_dump_tasks": 1, "vm.oom_kill_allocating_task": 0, "vm.overcommit_kbytes": 0, "vm.overcommit_memory": 0, "vm.overcommit_ratio": 50, "vm.page-cluster": 3, "vm.panic_on_oom": 0, "vm.percpu_pagelist_fraction": 0, "vm.stat_interval": 1, "vm.swappiness": 30, "vm.user_reserve_kbytes": 117506, "vm.vfs_cache_pressure": 100, "vm.zone_reclaim_mode": 0} jc-1.17.3/tests/fixtures/centos-7.7/sysctl-a.out000066400000000000000000001014601415226333200213110ustar00rootroot00000000000000abi.vsyscall32 = 1 crypto.fips_enabled = 0 debug.exception-trace = 1 debug.kprobes-optimization = 1 debug.panic_on_rcu_stall = 0 dev.cdrom.autoclose = 1 dev.cdrom.autoeject = 0 dev.cdrom.check_media = 0 dev.cdrom.debug = 0 dev.cdrom.info = CD-ROM information, Id: cdrom.c 3.20 2003/12/17 dev.cdrom.info = dev.cdrom.info = drive name: sr0 dev.cdrom.info = drive speed: 1 dev.cdrom.info = drive # of slots: 1 dev.cdrom.info = Can close tray: 1 dev.cdrom.info = Can open tray: 1 dev.cdrom.info = Can lock tray: 1 dev.cdrom.info = Can change speed: 1 dev.cdrom.info = Can select disk: 0 dev.cdrom.info = Can read multisession: 1 dev.cdrom.info = Can read MCN: 1 dev.cdrom.info = Reports media changed: 1 dev.cdrom.info = Can play audio: 1 dev.cdrom.info = Can write CD-R: 1 dev.cdrom.info = Can write CD-RW: 1 dev.cdrom.info = Can read DVD: 1 dev.cdrom.info = Can write DVD-R: 1 dev.cdrom.info = Can write DVD-RAM: 1 dev.cdrom.info = Can read MRW: 1 dev.cdrom.info = Can write MRW: 1 dev.cdrom.info = Can write RAM: 1 dev.cdrom.info = dev.cdrom.info = dev.cdrom.lock = 1 dev.hpet.max-user-freq = 64 dev.mac_hid.mouse_button2_keycode = 97 dev.mac_hid.mouse_button3_keycode = 100 dev.mac_hid.mouse_button_emulation = 0 dev.parport.default.spintime = 500 dev.parport.default.timeslice = 200 dev.raid.speed_limit_max = 200000 dev.raid.speed_limit_min = 1000 dev.scsi.logging_level = 0 fs.aio-max-nr = 65536 fs.aio-nr = 0 fs.binfmt_misc.status = enabled fs.dentry-state = 182164 165608 45 0 149757 0 fs.dir-notify-enable = 1 fs.epoll.max_user_watches = 785940 fs.file-max = 379085 fs.file-nr = 1152 0 379085 fs.inode-nr = 34807 2263 fs.inode-state = 34807 2263 0 0 0 0 0 fs.inotify.max_queued_events = 16384 fs.inotify.max_user_instances = 128 fs.inotify.max_user_watches = 8192 fs.lease-break-time = 45 fs.leases-enable = 1 fs.may_detach_mounts = 1 fs.mount-max = 100000 fs.mqueue.msg_default = 10 fs.mqueue.msg_max = 10 fs.mqueue.msgsize_default = 8192 fs.mqueue.msgsize_max = 8192 fs.mqueue.queues_max = 256 fs.nr_open = 1048576 fs.overflowgid = 65534 fs.overflowuid = 65534 fs.pipe-max-size = 1048576 fs.pipe-user-pages-hard = 0 fs.pipe-user-pages-soft = 16384 fs.quota.allocated_dquots = 0 fs.quota.cache_hits = 0 fs.quota.drops = 0 fs.quota.free_dquots = 0 fs.quota.lookups = 0 fs.quota.reads = 0 fs.quota.syncs = 0 fs.quota.warnings = 1 fs.quota.writes = 0 fs.suid_dumpable = 0 fs.xfs.age_buffer_centisecs = 1500 fs.xfs.error_level = 3 fs.xfs.filestream_centisecs = 3000 fs.xfs.inherit_noatime = 1 fs.xfs.inherit_nodefrag = 1 fs.xfs.inherit_nodump = 1 fs.xfs.inherit_nosymlinks = 0 fs.xfs.inherit_sync = 1 fs.xfs.irix_sgid_inherit = 0 fs.xfs.irix_symlink_mode = 0 fs.xfs.panic_mask = 0 fs.xfs.rotorstep = 1 fs.xfs.speculative_prealloc_lifetime = 300 fs.xfs.stats_clear = 0 fs.xfs.xfsbufd_centisecs = 100 fs.xfs.xfssyncd_centisecs = 3000 kernel.acct = 4 2 30 kernel.acpi_video_flags = 0 kernel.auto_msgmni = 1 kernel.bootloader_type = 114 kernel.bootloader_version = 2 kernel.cap_last_cap = 36 kernel.compat-log = 1 kernel.core_pattern = core kernel.core_pipe_limit = 0 kernel.core_uses_pid = 1 kernel.ctrl-alt-del = 0 kernel.dmesg_restrict = 0 kernel.domainname = (none) kernel.ftrace_dump_on_oops = 0 kernel.ftrace_enabled = 1 kernel.hardlockup_all_cpu_backtrace = 0 kernel.hardlockup_panic = 1 kernel.hostname = localhost.localdomain kernel.hotplug = kernel.hung_task_check_count = 4194304 kernel.hung_task_panic = 0 kernel.hung_task_timeout_secs = 120 kernel.hung_task_warnings = 10 kernel.io_delay_type = 0 kernel.kexec_load_disabled = 0 kernel.keys.gc_delay = 300 kernel.keys.maxbytes = 20000 kernel.keys.maxkeys = 200 kernel.keys.persistent_keyring_expiry = 259200 kernel.keys.root_maxbytes = 25000000 kernel.keys.root_maxkeys = 1000000 kernel.kptr_restrict = 0 kernel.max_lock_depth = 1024 kernel.modprobe = /sbin/modprobe kernel.modules_disabled = 0 kernel.msg_next_id = -1 kernel.msgmax = 8192 kernel.msgmnb = 16384 kernel.msgmni = 7535 kernel.ngroups_max = 65536 kernel.nmi_watchdog = 1 kernel.ns_last_pid = 49181 kernel.numa_balancing = 0 kernel.numa_balancing_scan_delay_ms = 1000 kernel.numa_balancing_scan_period_max_ms = 60000 kernel.numa_balancing_scan_period_min_ms = 1000 kernel.numa_balancing_scan_size_mb = 256 kernel.numa_balancing_settle_count = 4 kernel.osrelease = 3.10.0-1062.1.2.el7.x86_64 kernel.ostype = Linux kernel.overflowgid = 65534 kernel.overflowuid = 65534 kernel.panic = 0 kernel.panic_on_io_nmi = 0 kernel.panic_on_oops = 1 kernel.panic_on_stackoverflow = 0 kernel.panic_on_unrecovered_nmi = 0 kernel.panic_on_warn = 0 kernel.perf_cpu_time_max_percent = 25 kernel.perf_event_max_sample_rate = 100000 kernel.perf_event_mlock_kb = 516 kernel.perf_event_paranoid = 2 kernel.pid_max = 131072 kernel.poweroff_cmd = /sbin/poweroff kernel.print-fatal-signals = 0 kernel.printk = 4 4 1 7 kernel.printk_delay = 0 kernel.printk_ratelimit = 5 kernel.printk_ratelimit_burst = 10 kernel.pty.max = 4096 kernel.pty.nr = 0 kernel.pty.reserve = 1024 kernel.random.boot_id = 9e51ba01-3e54-4fbd-b007-a9563d0156d5 kernel.random.entropy_avail = 744 kernel.random.poolsize = 4096 kernel.random.read_wakeup_threshold = 64 kernel.random.urandom_min_reseed_secs = 60 kernel.random.uuid = 91912f7c-e25e-48ef-8e53-c1ee7f8b38c8 kernel.random.write_wakeup_threshold = 896 kernel.randomize_va_space = 2 kernel.real-root-dev = 0 kernel.sched_autogroup_enabled = 0 kernel.sched_cfs_bandwidth_slice_us = 5000 kernel.sched_child_runs_first = 0 kernel.sched_latency_ns = 6000000 kernel.sched_migration_cost_ns = 500000 kernel.sched_min_granularity_ns = 10000000 kernel.sched_nr_migrate = 32 kernel.sched_rr_timeslice_ms = 100 kernel.sched_rt_period_us = 1000000 kernel.sched_rt_runtime_us = 950000 kernel.sched_schedstats = 0 kernel.sched_shares_window_ns = 10000000 kernel.sched_time_avg_ms = 1000 kernel.sched_tunable_scaling = 1 kernel.sched_wakeup_granularity_ns = 15000000 kernel.seccomp.actions_avail = kill trap errno trace allow kernel.seccomp.actions_logged = kill trap errno trace kernel.sem = 250 32000 32 128 kernel.sem_next_id = -1 kernel.shm_next_id = -1 kernel.shm_rmid_forced = 0 kernel.shmall = 18446744073692774399 kernel.shmmax = 18446744073692774399 kernel.shmmni = 4096 kernel.softlockup_all_cpu_backtrace = 0 kernel.softlockup_panic = 0 kernel.stack_tracer_enabled = 0 kernel.sysctl_writes_strict = 1 kernel.sysrq = 16 kernel.tainted = 536870912 kernel.threads-max = 29981 kernel.timer_migration = 1 kernel.traceoff_on_warning = 0 kernel.unknown_nmi_panic = 0 kernel.version = #1 SMP Mon Sep 30 14:19:46 UTC 2019 kernel.watchdog = 1 kernel.watchdog_cpumask = 0-127 kernel.watchdog_thresh = 10 kernel.yama.ptrace_scope = 0 net.bridge.bridge-nf-call-arptables = 0 net.bridge.bridge-nf-call-ip6tables = 0 net.bridge.bridge-nf-call-iptables = 0 net.bridge.bridge-nf-filter-pppoe-tagged = 0 net.bridge.bridge-nf-filter-vlan-tagged = 0 net.bridge.bridge-nf-pass-vlan-input-dev = 0 net.core.bpf_jit_enable = 1 net.core.busy_poll = 0 net.core.busy_read = 0 net.core.default_qdisc = pfifo_fast net.core.dev_weight = 64 net.core.dev_weight_rx_bias = 1 net.core.dev_weight_tx_bias = 1 net.core.message_burst = 10 net.core.message_cost = 5 net.core.netdev_budget = 300 net.core.netdev_max_backlog = 1000 net.core.netdev_rss_key = 00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00 net.core.netdev_tstamp_prequeue = 1 net.core.optmem_max = 20480 net.core.rmem_default = 212992 net.core.rmem_max = 212992 net.core.rps_sock_flow_entries = 0 net.core.somaxconn = 128 net.core.warnings = 1 net.core.wmem_default = 212992 net.core.wmem_max = 212992 net.core.xfrm_acq_expires = 30 net.core.xfrm_aevent_etime = 10 net.core.xfrm_aevent_rseqth = 2 net.core.xfrm_larval_drop = 1 net.ipv4.cipso_cache_bucket_size = 10 net.ipv4.cipso_cache_enable = 1 net.ipv4.cipso_rbm_optfmt = 0 net.ipv4.cipso_rbm_strictvalid = 1 net.ipv4.conf.all.accept_local = 0 net.ipv4.conf.all.accept_redirects = 0 net.ipv4.conf.all.accept_source_route = 0 net.ipv4.conf.all.arp_accept = 0 net.ipv4.conf.all.arp_announce = 0 net.ipv4.conf.all.arp_filter = 0 net.ipv4.conf.all.arp_ignore = 0 net.ipv4.conf.all.arp_notify = 0 net.ipv4.conf.all.bootp_relay = 0 net.ipv4.conf.all.disable_policy = 0 net.ipv4.conf.all.disable_xfrm = 0 net.ipv4.conf.all.force_igmp_version = 0 net.ipv4.conf.all.forwarding = 1 net.ipv4.conf.all.igmpv2_unsolicited_report_interval = 10000 net.ipv4.conf.all.igmpv3_unsolicited_report_interval = 1000 net.ipv4.conf.all.log_martians = 0 net.ipv4.conf.all.mc_forwarding = 0 net.ipv4.conf.all.medium_id = 0 net.ipv4.conf.all.promote_secondaries = 1 net.ipv4.conf.all.proxy_arp = 0 net.ipv4.conf.all.proxy_arp_pvlan = 0 net.ipv4.conf.all.route_localnet = 0 net.ipv4.conf.all.rp_filter = 1 net.ipv4.conf.all.secure_redirects = 1 net.ipv4.conf.all.send_redirects = 1 net.ipv4.conf.all.shared_media = 1 net.ipv4.conf.all.src_valid_mark = 0 net.ipv4.conf.all.tag = 0 net.ipv4.conf.default.accept_local = 0 net.ipv4.conf.default.accept_redirects = 1 net.ipv4.conf.default.accept_source_route = 0 net.ipv4.conf.default.arp_accept = 0 net.ipv4.conf.default.arp_announce = 0 net.ipv4.conf.default.arp_filter = 0 net.ipv4.conf.default.arp_ignore = 0 net.ipv4.conf.default.arp_notify = 0 net.ipv4.conf.default.bootp_relay = 0 net.ipv4.conf.default.disable_policy = 0 net.ipv4.conf.default.disable_xfrm = 0 net.ipv4.conf.default.force_igmp_version = 0 net.ipv4.conf.default.forwarding = 1 net.ipv4.conf.default.igmpv2_unsolicited_report_interval = 10000 net.ipv4.conf.default.igmpv3_unsolicited_report_interval = 1000 net.ipv4.conf.default.log_martians = 0 net.ipv4.conf.default.mc_forwarding = 0 net.ipv4.conf.default.medium_id = 0 net.ipv4.conf.default.promote_secondaries = 1 net.ipv4.conf.default.proxy_arp = 0 net.ipv4.conf.default.proxy_arp_pvlan = 0 net.ipv4.conf.default.route_localnet = 0 net.ipv4.conf.default.rp_filter = 1 net.ipv4.conf.default.secure_redirects = 1 net.ipv4.conf.default.send_redirects = 1 net.ipv4.conf.default.shared_media = 1 net.ipv4.conf.default.src_valid_mark = 0 net.ipv4.conf.default.tag = 0 net.ipv4.conf.docker0.accept_local = 0 net.ipv4.conf.docker0.accept_redirects = 1 net.ipv4.conf.docker0.accept_source_route = 0 net.ipv4.conf.docker0.arp_accept = 0 net.ipv4.conf.docker0.arp_announce = 0 net.ipv4.conf.docker0.arp_filter = 0 net.ipv4.conf.docker0.arp_ignore = 0 net.ipv4.conf.docker0.arp_notify = 0 net.ipv4.conf.docker0.bootp_relay = 0 net.ipv4.conf.docker0.disable_policy = 0 net.ipv4.conf.docker0.disable_xfrm = 0 net.ipv4.conf.docker0.force_igmp_version = 0 net.ipv4.conf.docker0.forwarding = 1 net.ipv4.conf.docker0.igmpv2_unsolicited_report_interval = 10000 net.ipv4.conf.docker0.igmpv3_unsolicited_report_interval = 1000 net.ipv4.conf.docker0.log_martians = 0 net.ipv4.conf.docker0.mc_forwarding = 0 net.ipv4.conf.docker0.medium_id = 0 net.ipv4.conf.docker0.promote_secondaries = 1 net.ipv4.conf.docker0.proxy_arp = 0 net.ipv4.conf.docker0.proxy_arp_pvlan = 0 net.ipv4.conf.docker0.route_localnet = 0 net.ipv4.conf.docker0.rp_filter = 1 net.ipv4.conf.docker0.secure_redirects = 1 net.ipv4.conf.docker0.send_redirects = 1 net.ipv4.conf.docker0.shared_media = 1 net.ipv4.conf.docker0.src_valid_mark = 0 net.ipv4.conf.docker0.tag = 0 net.ipv4.conf.ens33.accept_local = 0 net.ipv4.conf.ens33.accept_redirects = 1 net.ipv4.conf.ens33.accept_source_route = 0 net.ipv4.conf.ens33.arp_accept = 0 net.ipv4.conf.ens33.arp_announce = 0 net.ipv4.conf.ens33.arp_filter = 0 net.ipv4.conf.ens33.arp_ignore = 0 net.ipv4.conf.ens33.arp_notify = 0 net.ipv4.conf.ens33.bootp_relay = 0 net.ipv4.conf.ens33.disable_policy = 0 net.ipv4.conf.ens33.disable_xfrm = 0 net.ipv4.conf.ens33.force_igmp_version = 0 net.ipv4.conf.ens33.forwarding = 1 net.ipv4.conf.ens33.igmpv2_unsolicited_report_interval = 10000 net.ipv4.conf.ens33.igmpv3_unsolicited_report_interval = 1000 net.ipv4.conf.ens33.log_martians = 0 net.ipv4.conf.ens33.mc_forwarding = 0 net.ipv4.conf.ens33.medium_id = 0 net.ipv4.conf.ens33.promote_secondaries = 1 net.ipv4.conf.ens33.proxy_arp = 0 net.ipv4.conf.ens33.proxy_arp_pvlan = 0 net.ipv4.conf.ens33.route_localnet = 0 net.ipv4.conf.ens33.rp_filter = 1 net.ipv4.conf.ens33.secure_redirects = 1 net.ipv4.conf.ens33.send_redirects = 1 net.ipv4.conf.ens33.shared_media = 1 net.ipv4.conf.ens33.src_valid_mark = 0 net.ipv4.conf.ens33.tag = 0 net.ipv4.conf.lo.accept_local = 0 net.ipv4.conf.lo.accept_redirects = 1 net.ipv4.conf.lo.accept_source_route = 1 net.ipv4.conf.lo.arp_accept = 0 net.ipv4.conf.lo.arp_announce = 0 net.ipv4.conf.lo.arp_filter = 0 net.ipv4.conf.lo.arp_ignore = 0 net.ipv4.conf.lo.arp_notify = 0 net.ipv4.conf.lo.bootp_relay = 0 net.ipv4.conf.lo.disable_policy = 1 net.ipv4.conf.lo.disable_xfrm = 1 net.ipv4.conf.lo.force_igmp_version = 0 net.ipv4.conf.lo.forwarding = 1 net.ipv4.conf.lo.igmpv2_unsolicited_report_interval = 10000 net.ipv4.conf.lo.igmpv3_unsolicited_report_interval = 1000 net.ipv4.conf.lo.log_martians = 0 net.ipv4.conf.lo.mc_forwarding = 0 net.ipv4.conf.lo.medium_id = 0 net.ipv4.conf.lo.promote_secondaries = 0 net.ipv4.conf.lo.proxy_arp = 0 net.ipv4.conf.lo.proxy_arp_pvlan = 0 net.ipv4.conf.lo.route_localnet = 0 net.ipv4.conf.lo.rp_filter = 0 net.ipv4.conf.lo.secure_redirects = 1 net.ipv4.conf.lo.send_redirects = 1 net.ipv4.conf.lo.shared_media = 1 net.ipv4.conf.lo.src_valid_mark = 0 net.ipv4.conf.lo.tag = 0 net.ipv4.fib_multipath_hash_policy = 0 net.ipv4.fwmark_reflect = 0 net.ipv4.icmp_echo_ignore_all = 0 net.ipv4.icmp_echo_ignore_broadcasts = 1 net.ipv4.icmp_errors_use_inbound_ifaddr = 0 net.ipv4.icmp_ignore_bogus_error_responses = 1 net.ipv4.icmp_msgs_burst = 50 net.ipv4.icmp_msgs_per_sec = 1000 net.ipv4.icmp_ratelimit = 1000 net.ipv4.icmp_ratemask = 6168 net.ipv4.igmp_max_memberships = 20 net.ipv4.igmp_max_msf = 10 net.ipv4.igmp_qrv = 2 net.ipv4.inet_peer_maxttl = 600 net.ipv4.inet_peer_minttl = 120 net.ipv4.inet_peer_threshold = 65664 net.ipv4.ip_default_ttl = 64 net.ipv4.ip_dynaddr = 0 net.ipv4.ip_early_demux = 1 net.ipv4.ip_forward = 1 net.ipv4.ip_forward_use_pmtu = 0 net.ipv4.ip_local_port_range = 32768 60999 net.ipv4.ip_local_reserved_ports = net.ipv4.ip_no_pmtu_disc = 0 net.ipv4.ip_nonlocal_bind = 0 net.ipv4.ipfrag_high_thresh = 4194304 net.ipv4.ipfrag_low_thresh = 3145728 net.ipv4.ipfrag_max_dist = 64 net.ipv4.ipfrag_secret_interval = 600 net.ipv4.ipfrag_time = 30 net.ipv4.neigh.default.anycast_delay = 100 net.ipv4.neigh.default.app_solicit = 0 net.ipv4.neigh.default.base_reachable_time_ms = 30000 net.ipv4.neigh.default.delay_first_probe_time = 5 net.ipv4.neigh.default.gc_interval = 30 net.ipv4.neigh.default.gc_stale_time = 60 net.ipv4.neigh.default.gc_thresh1 = 128 net.ipv4.neigh.default.gc_thresh2 = 512 net.ipv4.neigh.default.gc_thresh3 = 1024 net.ipv4.neigh.default.locktime = 100 net.ipv4.neigh.default.mcast_solicit = 3 net.ipv4.neigh.default.proxy_delay = 80 net.ipv4.neigh.default.proxy_qlen = 64 net.ipv4.neigh.default.retrans_time_ms = 1000 net.ipv4.neigh.default.ucast_solicit = 3 net.ipv4.neigh.default.unres_qlen = 31 net.ipv4.neigh.default.unres_qlen_bytes = 65536 net.ipv4.neigh.docker0.anycast_delay = 100 net.ipv4.neigh.docker0.app_solicit = 0 net.ipv4.neigh.docker0.base_reachable_time_ms = 30000 net.ipv4.neigh.docker0.delay_first_probe_time = 5 net.ipv4.neigh.docker0.gc_stale_time = 60 net.ipv4.neigh.docker0.locktime = 100 net.ipv4.neigh.docker0.mcast_solicit = 3 net.ipv4.neigh.docker0.proxy_delay = 80 net.ipv4.neigh.docker0.proxy_qlen = 64 net.ipv4.neigh.docker0.retrans_time_ms = 1000 net.ipv4.neigh.docker0.ucast_solicit = 3 net.ipv4.neigh.docker0.unres_qlen = 31 net.ipv4.neigh.docker0.unres_qlen_bytes = 65536 net.ipv4.neigh.ens33.anycast_delay = 100 net.ipv4.neigh.ens33.app_solicit = 0 net.ipv4.neigh.ens33.base_reachable_time_ms = 30000 net.ipv4.neigh.ens33.delay_first_probe_time = 5 net.ipv4.neigh.ens33.gc_stale_time = 60 net.ipv4.neigh.ens33.locktime = 100 net.ipv4.neigh.ens33.mcast_solicit = 3 net.ipv4.neigh.ens33.proxy_delay = 80 net.ipv4.neigh.ens33.proxy_qlen = 64 net.ipv4.neigh.ens33.retrans_time_ms = 1000 net.ipv4.neigh.ens33.ucast_solicit = 3 net.ipv4.neigh.ens33.unres_qlen = 31 net.ipv4.neigh.ens33.unres_qlen_bytes = 65536 net.ipv4.neigh.lo.anycast_delay = 100 net.ipv4.neigh.lo.app_solicit = 0 net.ipv4.neigh.lo.base_reachable_time_ms = 30000 net.ipv4.neigh.lo.delay_first_probe_time = 5 net.ipv4.neigh.lo.gc_stale_time = 60 net.ipv4.neigh.lo.locktime = 100 net.ipv4.neigh.lo.mcast_solicit = 3 net.ipv4.neigh.lo.proxy_delay = 80 net.ipv4.neigh.lo.proxy_qlen = 64 net.ipv4.neigh.lo.retrans_time_ms = 1000 net.ipv4.neigh.lo.ucast_solicit = 3 net.ipv4.neigh.lo.unres_qlen = 31 net.ipv4.neigh.lo.unres_qlen_bytes = 65536 net.ipv4.ping_group_range = 1 0 net.ipv4.route.error_burst = 5000 net.ipv4.route.error_cost = 1000 net.ipv4.route.gc_elasticity = 8 net.ipv4.route.gc_interval = 60 net.ipv4.route.gc_min_interval = 0 net.ipv4.route.gc_min_interval_ms = 500 net.ipv4.route.gc_thresh = -1 net.ipv4.route.gc_timeout = 300 net.ipv4.route.max_size = 2147483647 net.ipv4.route.min_adv_mss = 256 net.ipv4.route.min_pmtu = 552 net.ipv4.route.mtu_expires = 600 net.ipv4.route.redirect_load = 20 net.ipv4.route.redirect_number = 9 net.ipv4.route.redirect_silence = 20480 net.ipv4.tcp_abort_on_overflow = 0 net.ipv4.tcp_adv_win_scale = 1 net.ipv4.tcp_allowed_congestion_control = cubic reno net.ipv4.tcp_app_win = 31 net.ipv4.tcp_autocorking = 1 net.ipv4.tcp_available_congestion_control = cubic reno net.ipv4.tcp_base_mss = 512 net.ipv4.tcp_challenge_ack_limit = 1000 net.ipv4.tcp_congestion_control = cubic net.ipv4.tcp_dsack = 1 net.ipv4.tcp_early_retrans = 3 net.ipv4.tcp_ecn = 2 net.ipv4.tcp_fack = 1 net.ipv4.tcp_fastopen = 0 net.ipv4.tcp_fin_timeout = 60 net.ipv4.tcp_frto = 2 net.ipv4.tcp_invalid_ratelimit = 500 net.ipv4.tcp_keepalive_intvl = 75 net.ipv4.tcp_keepalive_probes = 9 net.ipv4.tcp_keepalive_time = 7200 net.ipv4.tcp_limit_output_bytes = 262144 net.ipv4.tcp_low_latency = 0 net.ipv4.tcp_max_orphans = 16384 net.ipv4.tcp_max_ssthresh = 0 net.ipv4.tcp_max_syn_backlog = 128 net.ipv4.tcp_max_tw_buckets = 16384 net.ipv4.tcp_mem = 88053 117406 176106 net.ipv4.tcp_min_snd_mss = 48 net.ipv4.tcp_min_tso_segs = 2 net.ipv4.tcp_moderate_rcvbuf = 1 net.ipv4.tcp_mtu_probing = 0 net.ipv4.tcp_no_metrics_save = 0 net.ipv4.tcp_notsent_lowat = -1 net.ipv4.tcp_orphan_retries = 0 net.ipv4.tcp_reordering = 3 net.ipv4.tcp_retrans_collapse = 1 net.ipv4.tcp_retries1 = 3 net.ipv4.tcp_retries2 = 15 net.ipv4.tcp_rfc1337 = 0 net.ipv4.tcp_rmem = 4096 87380 6291456 net.ipv4.tcp_sack = 1 net.ipv4.tcp_slow_start_after_idle = 1 net.ipv4.tcp_stdurg = 0 net.ipv4.tcp_syn_retries = 6 net.ipv4.tcp_synack_retries = 5 net.ipv4.tcp_syncookies = 1 net.ipv4.tcp_thin_dupack = 0 net.ipv4.tcp_thin_linear_timeouts = 0 net.ipv4.tcp_timestamps = 1 net.ipv4.tcp_tso_win_divisor = 3 net.ipv4.tcp_tw_recycle = 0 net.ipv4.tcp_tw_reuse = 0 net.ipv4.tcp_window_scaling = 1 net.ipv4.tcp_wmem = 4096 16384 4194304 net.ipv4.tcp_workaround_signed_windows = 0 net.ipv4.udp_mem = 89943 119926 179886 net.ipv4.udp_rmem_min = 4096 net.ipv4.udp_wmem_min = 4096 net.ipv4.xfrm4_gc_thresh = 32768 net.ipv6.anycast_src_echo_reply = 0 net.ipv6.bindv6only = 0 net.ipv6.conf.all.accept_dad = 0 net.ipv6.conf.all.accept_ra = 1 net.ipv6.conf.all.accept_ra_defrtr = 1 net.ipv6.conf.all.accept_ra_pinfo = 1 net.ipv6.conf.all.accept_ra_rt_info_max_plen = 0 net.ipv6.conf.all.accept_ra_rtr_pref = 1 net.ipv6.conf.all.accept_redirects = 1 net.ipv6.conf.all.accept_source_route = 0 net.ipv6.conf.all.autoconf = 1 net.ipv6.conf.all.dad_transmits = 1 net.ipv6.conf.all.disable_ipv6 = 0 net.ipv6.conf.all.enhanced_dad = 1 net.ipv6.conf.all.force_mld_version = 0 net.ipv6.conf.all.force_tllao = 0 net.ipv6.conf.all.forwarding = 0 net.ipv6.conf.all.hop_limit = 64 net.ipv6.conf.all.keep_addr_on_down = 0 net.ipv6.conf.all.max_addresses = 16 net.ipv6.conf.all.max_desync_factor = 600 net.ipv6.conf.all.mc_forwarding = 0 net.ipv6.conf.all.mldv1_unsolicited_report_interval = 10000 net.ipv6.conf.all.mldv2_unsolicited_report_interval = 1000 net.ipv6.conf.all.mtu = 1280 net.ipv6.conf.all.ndisc_notify = 0 net.ipv6.conf.all.optimistic_dad = 0 net.ipv6.conf.all.proxy_ndp = 0 net.ipv6.conf.all.regen_max_retry = 3 net.ipv6.conf.all.router_probe_interval = 60 net.ipv6.conf.all.router_solicitation_delay = 1 net.ipv6.conf.all.router_solicitation_interval = 4 net.ipv6.conf.all.router_solicitations = 3 net.ipv6.conf.all.temp_prefered_lft = 86400 net.ipv6.conf.all.temp_valid_lft = 604800 net.ipv6.conf.all.use_optimistic = 0 net.ipv6.conf.all.use_tempaddr = 0 net.ipv6.conf.default.accept_dad = 1 net.ipv6.conf.default.accept_ra = 1 net.ipv6.conf.default.accept_ra_defrtr = 1 net.ipv6.conf.default.accept_ra_pinfo = 1 net.ipv6.conf.default.accept_ra_rt_info_max_plen = 0 net.ipv6.conf.default.accept_ra_rtr_pref = 1 net.ipv6.conf.default.accept_redirects = 1 net.ipv6.conf.default.accept_source_route = 0 net.ipv6.conf.default.autoconf = 1 net.ipv6.conf.default.dad_transmits = 1 net.ipv6.conf.default.disable_ipv6 = 0 net.ipv6.conf.default.enhanced_dad = 1 net.ipv6.conf.default.force_mld_version = 0 net.ipv6.conf.default.force_tllao = 0 net.ipv6.conf.default.forwarding = 0 net.ipv6.conf.default.hop_limit = 64 net.ipv6.conf.default.keep_addr_on_down = 0 net.ipv6.conf.default.max_addresses = 16 net.ipv6.conf.default.max_desync_factor = 600 net.ipv6.conf.default.mc_forwarding = 0 net.ipv6.conf.default.mldv1_unsolicited_report_interval = 10000 net.ipv6.conf.default.mldv2_unsolicited_report_interval = 1000 net.ipv6.conf.default.mtu = 1280 net.ipv6.conf.default.ndisc_notify = 0 net.ipv6.conf.default.optimistic_dad = 0 net.ipv6.conf.default.proxy_ndp = 0 net.ipv6.conf.default.regen_max_retry = 3 net.ipv6.conf.default.router_probe_interval = 60 net.ipv6.conf.default.router_solicitation_delay = 1 net.ipv6.conf.default.router_solicitation_interval = 4 net.ipv6.conf.default.router_solicitations = 3 net.ipv6.conf.default.temp_prefered_lft = 86400 net.ipv6.conf.default.temp_valid_lft = 604800 net.ipv6.conf.default.use_optimistic = 0 net.ipv6.conf.default.use_tempaddr = 0 net.ipv6.conf.docker0.accept_dad = 1 net.ipv6.conf.docker0.accept_ra = 1 net.ipv6.conf.docker0.accept_ra_defrtr = 1 net.ipv6.conf.docker0.accept_ra_pinfo = 1 net.ipv6.conf.docker0.accept_ra_rt_info_max_plen = 0 net.ipv6.conf.docker0.accept_ra_rtr_pref = 1 net.ipv6.conf.docker0.accept_redirects = 1 net.ipv6.conf.docker0.accept_source_route = 0 net.ipv6.conf.docker0.autoconf = 1 net.ipv6.conf.docker0.dad_transmits = 1 net.ipv6.conf.docker0.disable_ipv6 = 0 net.ipv6.conf.docker0.enhanced_dad = 1 net.ipv6.conf.docker0.force_mld_version = 0 net.ipv6.conf.docker0.force_tllao = 0 net.ipv6.conf.docker0.forwarding = 0 net.ipv6.conf.docker0.hop_limit = 64 net.ipv6.conf.docker0.keep_addr_on_down = 0 net.ipv6.conf.docker0.max_addresses = 16 net.ipv6.conf.docker0.max_desync_factor = 600 net.ipv6.conf.docker0.mc_forwarding = 0 net.ipv6.conf.docker0.mldv1_unsolicited_report_interval = 10000 net.ipv6.conf.docker0.mldv2_unsolicited_report_interval = 1000 net.ipv6.conf.docker0.mtu = 1500 net.ipv6.conf.docker0.ndisc_notify = 0 net.ipv6.conf.docker0.optimistic_dad = 0 net.ipv6.conf.docker0.proxy_ndp = 0 net.ipv6.conf.docker0.regen_max_retry = 3 net.ipv6.conf.docker0.router_probe_interval = 60 net.ipv6.conf.docker0.router_solicitation_delay = 1 net.ipv6.conf.docker0.router_solicitation_interval = 4 net.ipv6.conf.docker0.router_solicitations = 3 net.ipv6.conf.docker0.temp_prefered_lft = 86400 net.ipv6.conf.docker0.temp_valid_lft = 604800 net.ipv6.conf.docker0.use_optimistic = 0 net.ipv6.conf.docker0.use_tempaddr = 0 net.ipv6.conf.ens33.accept_dad = 1 net.ipv6.conf.ens33.accept_ra = 1 net.ipv6.conf.ens33.accept_ra_defrtr = 0 net.ipv6.conf.ens33.accept_ra_pinfo = 0 net.ipv6.conf.ens33.accept_ra_rt_info_max_plen = 0 net.ipv6.conf.ens33.accept_ra_rtr_pref = 0 net.ipv6.conf.ens33.accept_redirects = 1 net.ipv6.conf.ens33.accept_source_route = 0 net.ipv6.conf.ens33.autoconf = 1 net.ipv6.conf.ens33.dad_transmits = 1 net.ipv6.conf.ens33.disable_ipv6 = 0 net.ipv6.conf.ens33.enhanced_dad = 1 net.ipv6.conf.ens33.force_mld_version = 0 net.ipv6.conf.ens33.force_tllao = 0 net.ipv6.conf.ens33.forwarding = 0 net.ipv6.conf.ens33.hop_limit = 64 net.ipv6.conf.ens33.keep_addr_on_down = 0 net.ipv6.conf.ens33.max_addresses = 16 net.ipv6.conf.ens33.max_desync_factor = 600 net.ipv6.conf.ens33.mc_forwarding = 0 net.ipv6.conf.ens33.mldv1_unsolicited_report_interval = 10000 net.ipv6.conf.ens33.mldv2_unsolicited_report_interval = 1000 net.ipv6.conf.ens33.mtu = 1500 net.ipv6.conf.ens33.ndisc_notify = 0 net.ipv6.conf.ens33.optimistic_dad = 0 net.ipv6.conf.ens33.proxy_ndp = 0 net.ipv6.conf.ens33.regen_max_retry = 3 net.ipv6.conf.ens33.router_probe_interval = 60 net.ipv6.conf.ens33.router_solicitation_delay = 1 net.ipv6.conf.ens33.router_solicitation_interval = 4 net.ipv6.conf.ens33.router_solicitations = 3 net.ipv6.conf.ens33.temp_prefered_lft = 86400 net.ipv6.conf.ens33.temp_valid_lft = 604800 net.ipv6.conf.ens33.use_optimistic = 0 net.ipv6.conf.ens33.use_tempaddr = 0 net.ipv6.conf.lo.accept_dad = -1 net.ipv6.conf.lo.accept_ra = 1 net.ipv6.conf.lo.accept_ra_defrtr = 1 net.ipv6.conf.lo.accept_ra_pinfo = 1 net.ipv6.conf.lo.accept_ra_rt_info_max_plen = 0 net.ipv6.conf.lo.accept_ra_rtr_pref = 1 net.ipv6.conf.lo.accept_redirects = 1 net.ipv6.conf.lo.accept_source_route = 0 net.ipv6.conf.lo.autoconf = 1 net.ipv6.conf.lo.dad_transmits = 1 net.ipv6.conf.lo.disable_ipv6 = 0 net.ipv6.conf.lo.enhanced_dad = 1 net.ipv6.conf.lo.force_mld_version = 0 net.ipv6.conf.lo.force_tllao = 0 net.ipv6.conf.lo.forwarding = 0 net.ipv6.conf.lo.hop_limit = 64 net.ipv6.conf.lo.keep_addr_on_down = 0 net.ipv6.conf.lo.max_addresses = 16 net.ipv6.conf.lo.max_desync_factor = 600 net.ipv6.conf.lo.mc_forwarding = 0 net.ipv6.conf.lo.mldv1_unsolicited_report_interval = 10000 net.ipv6.conf.lo.mldv2_unsolicited_report_interval = 1000 net.ipv6.conf.lo.mtu = 65536 net.ipv6.conf.lo.ndisc_notify = 0 net.ipv6.conf.lo.optimistic_dad = 0 net.ipv6.conf.lo.proxy_ndp = 0 net.ipv6.conf.lo.regen_max_retry = 3 net.ipv6.conf.lo.router_probe_interval = 60 net.ipv6.conf.lo.router_solicitation_delay = 1 net.ipv6.conf.lo.router_solicitation_interval = 4 net.ipv6.conf.lo.router_solicitations = 3 net.ipv6.conf.lo.temp_prefered_lft = 86400 net.ipv6.conf.lo.temp_valid_lft = 604800 net.ipv6.conf.lo.use_optimistic = 0 net.ipv6.conf.lo.use_tempaddr = -1 net.ipv6.fwmark_reflect = 0 net.ipv6.icmp.ratelimit = 1000 net.ipv6.idgen_delay = 1 net.ipv6.idgen_retries = 3 net.ipv6.ip6frag_high_thresh = 4194304 net.ipv6.ip6frag_low_thresh = 3145728 net.ipv6.ip6frag_secret_interval = 600 net.ipv6.ip6frag_time = 60 net.ipv6.ip_nonlocal_bind = 0 net.ipv6.mld_max_msf = 64 net.ipv6.mld_qrv = 2 net.ipv6.neigh.default.anycast_delay = 100 net.ipv6.neigh.default.app_solicit = 0 net.ipv6.neigh.default.base_reachable_time_ms = 30000 net.ipv6.neigh.default.delay_first_probe_time = 5 net.ipv6.neigh.default.gc_interval = 30 net.ipv6.neigh.default.gc_stale_time = 60 net.ipv6.neigh.default.gc_thresh1 = 128 net.ipv6.neigh.default.gc_thresh2 = 512 net.ipv6.neigh.default.gc_thresh3 = 1024 net.ipv6.neigh.default.locktime = 0 net.ipv6.neigh.default.mcast_solicit = 3 net.ipv6.neigh.default.proxy_delay = 80 net.ipv6.neigh.default.proxy_qlen = 64 net.ipv6.neigh.default.retrans_time_ms = 1000 net.ipv6.neigh.default.ucast_solicit = 3 net.ipv6.neigh.default.unres_qlen = 31 net.ipv6.neigh.default.unres_qlen_bytes = 65536 net.ipv6.neigh.docker0.anycast_delay = 100 net.ipv6.neigh.docker0.app_solicit = 0 net.ipv6.neigh.docker0.base_reachable_time_ms = 30000 net.ipv6.neigh.docker0.delay_first_probe_time = 5 net.ipv6.neigh.docker0.gc_stale_time = 60 net.ipv6.neigh.docker0.locktime = 0 net.ipv6.neigh.docker0.mcast_solicit = 3 net.ipv6.neigh.docker0.proxy_delay = 80 net.ipv6.neigh.docker0.proxy_qlen = 64 net.ipv6.neigh.docker0.retrans_time_ms = 1000 net.ipv6.neigh.docker0.ucast_solicit = 3 net.ipv6.neigh.docker0.unres_qlen = 31 net.ipv6.neigh.docker0.unres_qlen_bytes = 65536 net.ipv6.neigh.ens33.anycast_delay = 100 net.ipv6.neigh.ens33.app_solicit = 0 net.ipv6.neigh.ens33.base_reachable_time_ms = 30000 net.ipv6.neigh.ens33.delay_first_probe_time = 5 net.ipv6.neigh.ens33.gc_stale_time = 60 net.ipv6.neigh.ens33.locktime = 0 net.ipv6.neigh.ens33.mcast_solicit = 3 net.ipv6.neigh.ens33.proxy_delay = 80 net.ipv6.neigh.ens33.proxy_qlen = 64 net.ipv6.neigh.ens33.retrans_time_ms = 1000 net.ipv6.neigh.ens33.ucast_solicit = 3 net.ipv6.neigh.ens33.unres_qlen = 31 net.ipv6.neigh.ens33.unres_qlen_bytes = 65536 net.ipv6.neigh.lo.anycast_delay = 100 net.ipv6.neigh.lo.app_solicit = 0 net.ipv6.neigh.lo.base_reachable_time_ms = 30000 net.ipv6.neigh.lo.delay_first_probe_time = 5 net.ipv6.neigh.lo.gc_stale_time = 60 net.ipv6.neigh.lo.locktime = 0 net.ipv6.neigh.lo.mcast_solicit = 3 net.ipv6.neigh.lo.proxy_delay = 80 net.ipv6.neigh.lo.proxy_qlen = 64 net.ipv6.neigh.lo.retrans_time_ms = 1000 net.ipv6.neigh.lo.ucast_solicit = 3 net.ipv6.neigh.lo.unres_qlen = 31 net.ipv6.neigh.lo.unres_qlen_bytes = 65536 net.ipv6.route.gc_elasticity = 9 net.ipv6.route.gc_interval = 30 net.ipv6.route.gc_min_interval = 0 net.ipv6.route.gc_min_interval_ms = 500 net.ipv6.route.gc_thresh = 1024 net.ipv6.route.gc_timeout = 60 net.ipv6.route.max_size = 16384 net.ipv6.route.min_adv_mss = 1220 net.ipv6.route.mtu_expires = 600 net.ipv6.xfrm6_gc_thresh = 32768 net.netfilter.nf_conntrack_acct = 0 net.netfilter.nf_conntrack_buckets = 16384 net.netfilter.nf_conntrack_checksum = 1 net.netfilter.nf_conntrack_count = 2 net.netfilter.nf_conntrack_dccp_loose = 1 net.netfilter.nf_conntrack_dccp_timeout_closereq = 64 net.netfilter.nf_conntrack_dccp_timeout_closing = 64 net.netfilter.nf_conntrack_dccp_timeout_open = 43200 net.netfilter.nf_conntrack_dccp_timeout_partopen = 480 net.netfilter.nf_conntrack_dccp_timeout_request = 240 net.netfilter.nf_conntrack_dccp_timeout_respond = 480 net.netfilter.nf_conntrack_dccp_timeout_timewait = 240 net.netfilter.nf_conntrack_events = 1 net.netfilter.nf_conntrack_events_retry_timeout = 15 net.netfilter.nf_conntrack_expect_max = 256 net.netfilter.nf_conntrack_frag6_high_thresh = 4194304 net.netfilter.nf_conntrack_frag6_low_thresh = 3145728 net.netfilter.nf_conntrack_frag6_timeout = 60 net.netfilter.nf_conntrack_generic_timeout = 600 net.netfilter.nf_conntrack_helper = 1 net.netfilter.nf_conntrack_icmp_timeout = 30 net.netfilter.nf_conntrack_icmpv6_timeout = 30 net.netfilter.nf_conntrack_log_invalid = 0 net.netfilter.nf_conntrack_max = 65536 net.netfilter.nf_conntrack_sctp_timeout_closed = 10 net.netfilter.nf_conntrack_sctp_timeout_cookie_echoed = 3 net.netfilter.nf_conntrack_sctp_timeout_cookie_wait = 3 net.netfilter.nf_conntrack_sctp_timeout_established = 432000 net.netfilter.nf_conntrack_sctp_timeout_heartbeat_acked = 210 net.netfilter.nf_conntrack_sctp_timeout_heartbeat_sent = 30 net.netfilter.nf_conntrack_sctp_timeout_shutdown_ack_sent = 3 net.netfilter.nf_conntrack_sctp_timeout_shutdown_recd = 0 net.netfilter.nf_conntrack_sctp_timeout_shutdown_sent = 0 net.netfilter.nf_conntrack_tcp_be_liberal = 0 net.netfilter.nf_conntrack_tcp_loose = 1 net.netfilter.nf_conntrack_tcp_max_retrans = 3 net.netfilter.nf_conntrack_tcp_timeout_close = 10 net.netfilter.nf_conntrack_tcp_timeout_close_wait = 60 net.netfilter.nf_conntrack_tcp_timeout_established = 432000 net.netfilter.nf_conntrack_tcp_timeout_fin_wait = 120 net.netfilter.nf_conntrack_tcp_timeout_last_ack = 30 net.netfilter.nf_conntrack_tcp_timeout_max_retrans = 300 net.netfilter.nf_conntrack_tcp_timeout_syn_recv = 60 net.netfilter.nf_conntrack_tcp_timeout_syn_sent = 120 net.netfilter.nf_conntrack_tcp_timeout_time_wait = 120 net.netfilter.nf_conntrack_tcp_timeout_unacknowledged = 300 net.netfilter.nf_conntrack_timestamp = 0 net.netfilter.nf_conntrack_udp_timeout = 30 net.netfilter.nf_conntrack_udp_timeout_stream = 180 net.netfilter.nf_log.0 = NONE net.netfilter.nf_log.1 = NONE net.netfilter.nf_log.10 = NONE net.netfilter.nf_log.11 = NONE net.netfilter.nf_log.12 = NONE net.netfilter.nf_log.2 = NONE net.netfilter.nf_log.3 = NONE net.netfilter.nf_log.4 = NONE net.netfilter.nf_log.5 = NONE net.netfilter.nf_log.6 = NONE net.netfilter.nf_log.7 = NONE net.netfilter.nf_log.8 = NONE net.netfilter.nf_log.9 = NONE net.netfilter.nf_log_all_netns = 0 net.nf_conntrack_max = 65536 net.unix.max_dgram_qlen = 512 user.max_ipc_namespaces = 14990 user.max_mnt_namespaces = 14990 user.max_net_namespaces = 14990 user.max_pid_namespaces = 14990 user.max_user_namespaces = 0 user.max_uts_namespaces = 14990 vm.admin_reserve_kbytes = 8192 vm.block_dump = 0 vm.dirty_background_bytes = 0 vm.dirty_background_ratio = 10 vm.dirty_bytes = 0 vm.dirty_expire_centisecs = 3000 vm.dirty_ratio = 30 vm.dirty_writeback_centisecs = 500 vm.drop_caches = 0 vm.extfrag_threshold = 500 vm.hugepages_treat_as_movable = 0 vm.hugetlb_shm_group = 0 vm.laptop_mode = 0 vm.legacy_va_layout = 0 vm.lowmem_reserve_ratio = 256 256 32 vm.max_map_count = 65530 vm.memory_failure_early_kill = 0 vm.memory_failure_recovery = 1 vm.min_free_kbytes = 67584 vm.min_slab_ratio = 5 vm.min_unmapped_ratio = 1 vm.mmap_min_addr = 4096 vm.nr_hugepages = 0 vm.nr_hugepages_mempolicy = 0 vm.nr_overcommit_hugepages = 0 vm.nr_pdflush_threads = 0 vm.numa_zonelist_order = default vm.oom_dump_tasks = 1 vm.oom_kill_allocating_task = 0 vm.overcommit_kbytes = 0 vm.overcommit_memory = 0 vm.overcommit_ratio = 50 vm.page-cluster = 3 vm.panic_on_oom = 0 vm.percpu_pagelist_fraction = 0 vm.stat_interval = 1 vm.swappiness = 30 vm.user_reserve_kbytes = 117506 vm.vfs_cache_pressure = 100 vm.zone_reclaim_mode = 0 jc-1.17.3/tests/fixtures/centos-7.7/systemctl-ls.json000066400000000000000000000026371415226333200223650ustar00rootroot00000000000000[{"listen": "/dev/log", "unit": "systemd-journald.socket", "activates": "systemd-journald.service"}, {"listen": "/run/dbus/system_bus_socket", "unit": "dbus.socket", "activates": "dbus.service"}, {"listen": "/run/dmeventd-client", "unit": "dm-event.socket", "activates": "dm-event.service"}, {"listen": "/run/dmeventd-server", "unit": "dm-event.socket", "activates": "dm-event.service"}, {"listen": "/run/lvm/lvmetad.socket", "unit": "lvm2-lvmetad.socket", "activates": "lvm2-lvmetad.service"}, {"listen": "/run/lvm/lvmpolld.socket", "unit": "lvm2-lvmpolld.socket", "activates": "lvm2-lvmpolld.service"}, {"listen": "/run/systemd/initctl/fifo", "unit": "systemd-initctl.socket", "activates": "systemd-initctl.service"}, {"listen": "/run/systemd/journal/socket", "unit": "systemd-journald.socket", "activates": "systemd-journald.service"}, {"listen": "/run/systemd/journal/stdout", "unit": "systemd-journald.socket", "activates": "systemd-journald.service"}, {"listen": "/run/systemd/journal/syslog", "unit": "syslog.socket", "activates": "syslog.service"}, {"listen": "/run/systemd/shutdownd", "unit": "systemd-shutdownd.socket", "activates": "systemd-shutdownd.service"}, {"listen": "/run/udev/control", "unit": "systemd-udevd-control.socket", "activates": "systemd-udevd.service"}, {"listen": "[::]:22", "unit": "sshd.socket"}, {"listen": "kobject-uevent 1", "unit": "systemd-udevd-kernel.socket", "activates": "systemd-udevd.service"}] jc-1.17.3/tests/fixtures/centos-7.7/systemctl-ls.out000066400000000000000000000022071415226333200222140ustar00rootroot00000000000000LISTEN UNIT ACTIVATES /dev/log systemd-journald.socket systemd-journald.service /run/dbus/system_bus_socket dbus.socket dbus.service /run/dmeventd-client dm-event.socket dm-event.service /run/dmeventd-server dm-event.socket dm-event.service /run/lvm/lvmetad.socket lvm2-lvmetad.socket lvm2-lvmetad.service /run/lvm/lvmpolld.socket lvm2-lvmpolld.socket lvm2-lvmpolld.service /run/systemd/initctl/fifo systemd-initctl.socket systemd-initctl.service /run/systemd/journal/socket systemd-journald.socket systemd-journald.service /run/systemd/journal/stdout systemd-journald.socket systemd-journald.service /run/systemd/journal/syslog syslog.socket syslog.service /run/systemd/shutdownd systemd-shutdownd.socket systemd-shutdownd.service /run/udev/control systemd-udevd-control.socket systemd-udevd.service [::]:22 sshd.socket kobject-uevent 1 systemd-udevd-kernel.socket systemd-udevd.service 14 sockets listed. jc-1.17.3/tests/fixtures/centos-7.7/systemctl-luf.json000066400000000000000000000343561415226333200225400ustar00rootroot00000000000000[{"unit_file": "proc-sys-fs-binfmt_misc.automount", "state": "static"}, {"unit_file": "dev-hugepages.mount", "state": "static"}, {"unit_file": "dev-mqueue.mount", "state": "static"}, {"unit_file": "proc-sys-fs-binfmt_misc.mount", "state": "static"}, {"unit_file": "sys-fs-fuse-connections.mount", "state": "static"}, {"unit_file": "sys-kernel-config.mount", "state": "static"}, {"unit_file": "sys-kernel-debug.mount", "state": "static"}, {"unit_file": "tmp.mount", "state": "disabled"}, {"unit_file": "brandbot.path", "state": "disabled"}, {"unit_file": "systemd-ask-password-console.path", "state": "static"}, {"unit_file": "systemd-ask-password-plymouth.path", "state": "static"}, {"unit_file": "systemd-ask-password-wall.path", "state": "static"}, {"unit_file": "session-1.scope", "state": "static"}, {"unit_file": "arp-ethers.service", "state": "disabled"}, {"unit_file": "auditd.service", "state": "enabled"}, {"unit_file": "autovt@.service", "state": "enabled"}, {"unit_file": "blk-availability.service", "state": "disabled"}, {"unit_file": "brandbot.service", "state": "static"}, {"unit_file": "chrony-dnssrv@.service", "state": "static"}, {"unit_file": "chrony-wait.service", "state": "disabled"}, {"unit_file": "chronyd.service", "state": "enabled"}, {"unit_file": "console-getty.service", "state": "disabled"}, {"unit_file": "console-shell.service", "state": "disabled"}, {"unit_file": "container-getty@.service", "state": "static"}, {"unit_file": "cpupower.service", "state": "disabled"}, {"unit_file": "crond.service", "state": "enabled"}, {"unit_file": "dbus-org.fedoraproject.FirewallD1.service", "state": "enabled"}, {"unit_file": "dbus-org.freedesktop.hostname1.service", "state": "static"}, {"unit_file": "dbus-org.freedesktop.import1.service", "state": "static"}, {"unit_file": "dbus-org.freedesktop.locale1.service", "state": "static"}, {"unit_file": "dbus-org.freedesktop.login1.service", "state": "static"}, {"unit_file": "dbus-org.freedesktop.machine1.service", "state": "static"}, {"unit_file": "dbus-org.freedesktop.NetworkManager.service", "state": "enabled"}, {"unit_file": "dbus-org.freedesktop.nm-dispatcher.service", "state": "enabled"}, {"unit_file": "dbus-org.freedesktop.timedate1.service", "state": "static"}, {"unit_file": "dbus.service", "state": "static"}, {"unit_file": "debug-shell.service", "state": "disabled"}, {"unit_file": "dm-event.service", "state": "static"}, {"unit_file": "docker-cleanup.service", "state": "disabled"}, {"unit_file": "docker-storage-setup.service", "state": "disabled"}, {"unit_file": "docker.service", "state": "enabled"}, {"unit_file": "dracut-cmdline.service", "state": "static"}, {"unit_file": "dracut-initqueue.service", "state": "static"}, {"unit_file": "dracut-mount.service", "state": "static"}, {"unit_file": "dracut-pre-mount.service", "state": "static"}, {"unit_file": "dracut-pre-pivot.service", "state": "static"}, {"unit_file": "dracut-pre-trigger.service", "state": "static"}, {"unit_file": "dracut-pre-udev.service", "state": "static"}, {"unit_file": "dracut-shutdown.service", "state": "static"}, {"unit_file": "ebtables.service", "state": "disabled"}, {"unit_file": "emergency.service", "state": "static"}, {"unit_file": "firewalld.service", "state": "enabled"}, {"unit_file": "fstrim.service", "state": "static"}, {"unit_file": "getty@.service", "state": "enabled"}, {"unit_file": "halt-local.service", "state": "static"}, {"unit_file": "initrd-cleanup.service", "state": "static"}, {"unit_file": "initrd-parse-etc.service", "state": "static"}, {"unit_file": "initrd-switch-root.service", "state": "static"}, {"unit_file": "initrd-udevadm-cleanup-db.service", "state": "static"}, {"unit_file": "iprdump.service", "state": "disabled"}, {"unit_file": "iprinit.service", "state": "disabled"}, {"unit_file": "iprupdate.service", "state": "disabled"}, {"unit_file": "irqbalance.service", "state": "enabled"}, {"unit_file": "kdump.service", "state": "enabled"}, {"unit_file": "kmod-static-nodes.service", "state": "static"}, {"unit_file": "lvm2-lvmetad.service", "state": "static"}, {"unit_file": "lvm2-lvmpolld.service", "state": "static"}, {"unit_file": "lvm2-monitor.service", "state": "enabled"}, {"unit_file": "lvm2-pvscan@.service", "state": "static"}, {"unit_file": "messagebus.service", "state": "static"}, {"unit_file": "microcode.service", "state": "enabled"}, {"unit_file": "NetworkManager-dispatcher.service", "state": "enabled"}, {"unit_file": "NetworkManager-wait-online.service", "state": "enabled"}, {"unit_file": "NetworkManager.service", "state": "enabled"}, {"unit_file": "nftables.service", "state": "disabled"}, {"unit_file": "plymouth-halt.service", "state": "disabled"}, {"unit_file": "plymouth-kexec.service", "state": "disabled"}, {"unit_file": "plymouth-poweroff.service", "state": "disabled"}, {"unit_file": "plymouth-quit-wait.service", "state": "disabled"}, {"unit_file": "plymouth-quit.service", "state": "disabled"}, {"unit_file": "plymouth-read-write.service", "state": "disabled"}, {"unit_file": "plymouth-reboot.service", "state": "disabled"}, {"unit_file": "plymouth-start.service", "state": "disabled"}, {"unit_file": "plymouth-switch-root.service", "state": "static"}, {"unit_file": "polkit.service", "state": "static"}, {"unit_file": "postfix.service", "state": "enabled"}, {"unit_file": "quotaon.service", "state": "static"}, {"unit_file": "rc-local.service", "state": "static"}, {"unit_file": "rdisc.service", "state": "disabled"}, {"unit_file": "registries.service", "state": "disabled"}, {"unit_file": "rescue.service", "state": "static"}, {"unit_file": "rhel-autorelabel-mark.service", "state": "disabled"}, {"unit_file": "rhel-autorelabel.service", "state": "enabled"}, {"unit_file": "rhel-configure.service", "state": "enabled"}, {"unit_file": "rhel-dmesg.service", "state": "enabled"}, {"unit_file": "rhel-domainname.service", "state": "enabled"}, {"unit_file": "rhel-import-state.service", "state": "enabled"}, {"unit_file": "rhel-loadmodules.service", "state": "enabled"}, {"unit_file": "rhel-readonly.service", "state": "enabled"}, {"unit_file": "rsyncd.service", "state": "disabled"}, {"unit_file": "rsyncd@.service", "state": "static"}, {"unit_file": "rsyslog.service", "state": "enabled"}, {"unit_file": "selinux-policy-migrate-local-changes@.service", "state": "static"}, {"unit_file": "serial-getty@.service", "state": "disabled"}, {"unit_file": "sshd-keygen.service", "state": "static"}, {"unit_file": "sshd.service", "state": "enabled"}, {"unit_file": "sshd@.service", "state": "static"}, {"unit_file": "sysstat.service", "state": "enabled"}, {"unit_file": "systemd-ask-password-console.service", "state": "static"}, {"unit_file": "systemd-ask-password-plymouth.service", "state": "static"}, {"unit_file": "systemd-ask-password-wall.service", "state": "static"}, {"unit_file": "systemd-backlight@.service", "state": "static"}, {"unit_file": "systemd-binfmt.service", "state": "static"}, {"unit_file": "systemd-bootchart.service", "state": "disabled"}, {"unit_file": "systemd-firstboot.service", "state": "static"}, {"unit_file": "systemd-fsck-root.service", "state": "static"}, {"unit_file": "systemd-fsck@.service", "state": "static"}, {"unit_file": "systemd-halt.service", "state": "static"}, {"unit_file": "systemd-hibernate-resume@.service", "state": "static"}, {"unit_file": "systemd-hibernate.service", "state": "static"}, {"unit_file": "systemd-hostnamed.service", "state": "static"}, {"unit_file": "systemd-hwdb-update.service", "state": "static"}, {"unit_file": "systemd-hybrid-sleep.service", "state": "static"}, {"unit_file": "systemd-importd.service", "state": "static"}, {"unit_file": "systemd-initctl.service", "state": "static"}, {"unit_file": "systemd-journal-catalog-update.service", "state": "static"}, {"unit_file": "systemd-journal-flush.service", "state": "static"}, {"unit_file": "systemd-journald.service", "state": "static"}, {"unit_file": "systemd-kexec.service", "state": "static"}, {"unit_file": "systemd-localed.service", "state": "static"}, {"unit_file": "systemd-logind.service", "state": "static"}, {"unit_file": "systemd-machine-id-commit.service", "state": "static"}, {"unit_file": "systemd-machined.service", "state": "static"}, {"unit_file": "systemd-modules-load.service", "state": "static"}, {"unit_file": "systemd-nspawn@.service", "state": "disabled"}, {"unit_file": "systemd-poweroff.service", "state": "static"}, {"unit_file": "systemd-quotacheck.service", "state": "static"}, {"unit_file": "systemd-random-seed.service", "state": "static"}, {"unit_file": "systemd-readahead-collect.service", "state": "enabled"}, {"unit_file": "systemd-readahead-done.service", "state": "indirect"}, {"unit_file": "systemd-readahead-drop.service", "state": "enabled"}, {"unit_file": "systemd-readahead-replay.service", "state": "enabled"}, {"unit_file": "systemd-reboot.service", "state": "static"}, {"unit_file": "systemd-remount-fs.service", "state": "static"}, {"unit_file": "systemd-rfkill@.service", "state": "static"}, {"unit_file": "systemd-shutdownd.service", "state": "static"}, {"unit_file": "systemd-suspend.service", "state": "static"}, {"unit_file": "systemd-sysctl.service", "state": "static"}, {"unit_file": "systemd-timedated.service", "state": "static"}, {"unit_file": "systemd-tmpfiles-clean.service", "state": "static"}, {"unit_file": "systemd-tmpfiles-setup-dev.service", "state": "static"}, {"unit_file": "systemd-tmpfiles-setup.service", "state": "static"}, {"unit_file": "systemd-udev-settle.service", "state": "static"}, {"unit_file": "systemd-udev-trigger.service", "state": "static"}, {"unit_file": "systemd-udevd.service", "state": "static"}, {"unit_file": "systemd-update-done.service", "state": "static"}, {"unit_file": "systemd-update-utmp-runlevel.service", "state": "static"}, {"unit_file": "systemd-update-utmp.service", "state": "static"}, {"unit_file": "systemd-user-sessions.service", "state": "static"}, {"unit_file": "systemd-vconsole-setup.service", "state": "static"}, {"unit_file": "teamd@.service", "state": "static"}, {"unit_file": "tuned.service", "state": "enabled"}, {"unit_file": "wpa_supplicant.service", "state": "disabled"}, {"unit_file": "-.slice", "state": "static"}, {"unit_file": "machine.slice", "state": "static"}, {"unit_file": "system.slice", "state": "static"}, {"unit_file": "user-1000.slice", "state": "static"}, {"unit_file": "user.slice", "state": "static"}, {"unit_file": "dbus.socket", "state": "static"}, {"unit_file": "dm-event.socket", "state": "enabled"}, {"unit_file": "lvm2-lvmetad.socket", "state": "enabled"}, {"unit_file": "lvm2-lvmpolld.socket", "state": "enabled"}, {"unit_file": "rsyncd.socket", "state": "disabled"}, {"unit_file": "sshd.socket", "state": "disabled"}, {"unit_file": "syslog.socket", "state": "static"}, {"unit_file": "systemd-initctl.socket", "state": "static"}, {"unit_file": "systemd-journald.socket", "state": "static"}, {"unit_file": "systemd-shutdownd.socket", "state": "static"}, {"unit_file": "systemd-udevd-control.socket", "state": "static"}, {"unit_file": "systemd-udevd-kernel.socket", "state": "static"}, {"unit_file": "basic.target", "state": "static"}, {"unit_file": "bluetooth.target", "state": "static"}, {"unit_file": "cryptsetup-pre.target", "state": "static"}, {"unit_file": "cryptsetup.target", "state": "static"}, {"unit_file": "ctrl-alt-del.target", "state": "disabled"}, {"unit_file": "default.target", "state": "enabled"}, {"unit_file": "emergency.target", "state": "static"}, {"unit_file": "final.target", "state": "static"}, {"unit_file": "getty-pre.target", "state": "static"}, {"unit_file": "getty.target", "state": "static"}, {"unit_file": "graphical.target", "state": "static"}, {"unit_file": "halt.target", "state": "disabled"}, {"unit_file": "hibernate.target", "state": "static"}, {"unit_file": "hybrid-sleep.target", "state": "static"}, {"unit_file": "initrd-fs.target", "state": "static"}, {"unit_file": "initrd-root-fs.target", "state": "static"}, {"unit_file": "initrd-switch-root.target", "state": "static"}, {"unit_file": "initrd.target", "state": "static"}, {"unit_file": "iprutils.target", "state": "disabled"}, {"unit_file": "kexec.target", "state": "disabled"}, {"unit_file": "local-fs-pre.target", "state": "static"}, {"unit_file": "local-fs.target", "state": "static"}, {"unit_file": "machines.target", "state": "disabled"}, {"unit_file": "multi-user.target", "state": "enabled"}, {"unit_file": "network-online.target", "state": "static"}, {"unit_file": "network-pre.target", "state": "static"}, {"unit_file": "network.target", "state": "static"}, {"unit_file": "nss-lookup.target", "state": "static"}, {"unit_file": "nss-user-lookup.target", "state": "static"}, {"unit_file": "paths.target", "state": "static"}, {"unit_file": "poweroff.target", "state": "disabled"}, {"unit_file": "printer.target", "state": "static"}, {"unit_file": "reboot.target", "state": "disabled"}, {"unit_file": "remote-cryptsetup.target", "state": "disabled"}, {"unit_file": "remote-fs-pre.target", "state": "static"}, {"unit_file": "remote-fs.target", "state": "enabled"}, {"unit_file": "rescue.target", "state": "disabled"}, {"unit_file": "rpcbind.target", "state": "static"}, {"unit_file": "runlevel0.target", "state": "disabled"}, {"unit_file": "runlevel1.target", "state": "disabled"}, {"unit_file": "runlevel2.target", "state": "enabled"}, {"unit_file": "runlevel3.target", "state": "enabled"}, {"unit_file": "runlevel4.target", "state": "enabled"}, {"unit_file": "runlevel5.target", "state": "static"}, {"unit_file": "runlevel6.target", "state": "disabled"}, {"unit_file": "shutdown.target", "state": "static"}, {"unit_file": "sigpwr.target", "state": "static"}, {"unit_file": "sleep.target", "state": "static"}, {"unit_file": "slices.target", "state": "static"}, {"unit_file": "smartcard.target", "state": "static"}, {"unit_file": "sockets.target", "state": "static"}, {"unit_file": "sound.target", "state": "static"}, {"unit_file": "suspend.target", "state": "static"}, {"unit_file": "swap.target", "state": "static"}, {"unit_file": "sysinit.target", "state": "static"}, {"unit_file": "system-update.target", "state": "static"}, {"unit_file": "time-sync.target", "state": "static"}, {"unit_file": "timers.target", "state": "static"}, {"unit_file": "umount.target", "state": "static"}, {"unit_file": "chrony-dnssrv@.timer", "state": "disabled"}, {"unit_file": "docker-cleanup.timer", "state": "disabled"}, {"unit_file": "fstrim.timer", "state": "disabled"}, {"unit_file": "systemd-readahead-done.timer", "state": "indirect"}, {"unit_file": "systemd-tmpfiles-clean.timer", "state": "static"}] jc-1.17.3/tests/fixtures/centos-7.7/systemctl-luf.out000066400000000000000000000322731415226333200223720ustar00rootroot00000000000000UNIT FILE STATE proc-sys-fs-binfmt_misc.automount static dev-hugepages.mount static dev-mqueue.mount static proc-sys-fs-binfmt_misc.mount static sys-fs-fuse-connections.mount static sys-kernel-config.mount static sys-kernel-debug.mount static tmp.mount disabled brandbot.path disabled systemd-ask-password-console.path static systemd-ask-password-plymouth.path static systemd-ask-password-wall.path static session-1.scope static arp-ethers.service disabled auditd.service enabled autovt@.service enabled blk-availability.service disabled brandbot.service static chrony-dnssrv@.service static chrony-wait.service disabled chronyd.service enabled console-getty.service disabled console-shell.service disabled container-getty@.service static cpupower.service disabled crond.service enabled dbus-org.fedoraproject.FirewallD1.service enabled dbus-org.freedesktop.hostname1.service static dbus-org.freedesktop.import1.service static dbus-org.freedesktop.locale1.service static dbus-org.freedesktop.login1.service static dbus-org.freedesktop.machine1.service static dbus-org.freedesktop.NetworkManager.service enabled dbus-org.freedesktop.nm-dispatcher.service enabled dbus-org.freedesktop.timedate1.service static dbus.service static debug-shell.service disabled dm-event.service static docker-cleanup.service disabled docker-storage-setup.service disabled docker.service enabled dracut-cmdline.service static dracut-initqueue.service static dracut-mount.service static dracut-pre-mount.service static dracut-pre-pivot.service static dracut-pre-trigger.service static dracut-pre-udev.service static dracut-shutdown.service static ebtables.service disabled emergency.service static firewalld.service enabled fstrim.service static getty@.service enabled halt-local.service static initrd-cleanup.service static initrd-parse-etc.service static initrd-switch-root.service static initrd-udevadm-cleanup-db.service static iprdump.service disabled iprinit.service disabled iprupdate.service disabled irqbalance.service enabled kdump.service enabled kmod-static-nodes.service static lvm2-lvmetad.service static lvm2-lvmpolld.service static lvm2-monitor.service enabled lvm2-pvscan@.service static messagebus.service static microcode.service enabled NetworkManager-dispatcher.service enabled NetworkManager-wait-online.service enabled NetworkManager.service enabled nftables.service disabled plymouth-halt.service disabled plymouth-kexec.service disabled plymouth-poweroff.service disabled plymouth-quit-wait.service disabled plymouth-quit.service disabled plymouth-read-write.service disabled plymouth-reboot.service disabled plymouth-start.service disabled plymouth-switch-root.service static polkit.service static postfix.service enabled quotaon.service static rc-local.service static rdisc.service disabled registries.service disabled rescue.service static rhel-autorelabel-mark.service disabled rhel-autorelabel.service enabled rhel-configure.service enabled rhel-dmesg.service enabled rhel-domainname.service enabled rhel-import-state.service enabled rhel-loadmodules.service enabled rhel-readonly.service enabled rsyncd.service disabled rsyncd@.service static rsyslog.service enabled selinux-policy-migrate-local-changes@.service static serial-getty@.service disabled sshd-keygen.service static sshd.service enabled sshd@.service static sysstat.service enabled systemd-ask-password-console.service static systemd-ask-password-plymouth.service static systemd-ask-password-wall.service static systemd-backlight@.service static systemd-binfmt.service static systemd-bootchart.service disabled systemd-firstboot.service static systemd-fsck-root.service static systemd-fsck@.service static systemd-halt.service static systemd-hibernate-resume@.service static systemd-hibernate.service static systemd-hostnamed.service static systemd-hwdb-update.service static systemd-hybrid-sleep.service static systemd-importd.service static systemd-initctl.service static systemd-journal-catalog-update.service static systemd-journal-flush.service static systemd-journald.service static systemd-kexec.service static systemd-localed.service static systemd-logind.service static systemd-machine-id-commit.service static systemd-machined.service static systemd-modules-load.service static systemd-nspawn@.service disabled systemd-poweroff.service static systemd-quotacheck.service static systemd-random-seed.service static systemd-readahead-collect.service enabled systemd-readahead-done.service indirect systemd-readahead-drop.service enabled systemd-readahead-replay.service enabled systemd-reboot.service static systemd-remount-fs.service static systemd-rfkill@.service static systemd-shutdownd.service static systemd-suspend.service static systemd-sysctl.service static systemd-timedated.service static systemd-tmpfiles-clean.service static systemd-tmpfiles-setup-dev.service static systemd-tmpfiles-setup.service static systemd-udev-settle.service static systemd-udev-trigger.service static systemd-udevd.service static systemd-update-done.service static systemd-update-utmp-runlevel.service static systemd-update-utmp.service static systemd-user-sessions.service static systemd-vconsole-setup.service static teamd@.service static tuned.service enabled wpa_supplicant.service disabled -.slice static machine.slice static system.slice static user-1000.slice static user.slice static dbus.socket static dm-event.socket enabled lvm2-lvmetad.socket enabled lvm2-lvmpolld.socket enabled rsyncd.socket disabled sshd.socket disabled syslog.socket static systemd-initctl.socket static systemd-journald.socket static systemd-shutdownd.socket static systemd-udevd-control.socket static systemd-udevd-kernel.socket static basic.target static bluetooth.target static cryptsetup-pre.target static cryptsetup.target static ctrl-alt-del.target disabled default.target enabled emergency.target static final.target static getty-pre.target static getty.target static graphical.target static halt.target disabled hibernate.target static hybrid-sleep.target static initrd-fs.target static initrd-root-fs.target static initrd-switch-root.target static initrd.target static iprutils.target disabled kexec.target disabled local-fs-pre.target static local-fs.target static machines.target disabled multi-user.target enabled network-online.target static network-pre.target static network.target static nss-lookup.target static nss-user-lookup.target static paths.target static poweroff.target disabled printer.target static reboot.target disabled remote-cryptsetup.target disabled remote-fs-pre.target static remote-fs.target enabled rescue.target disabled rpcbind.target static runlevel0.target disabled runlevel1.target disabled runlevel2.target enabled runlevel3.target enabled runlevel4.target enabled runlevel5.target static runlevel6.target disabled shutdown.target static sigpwr.target static sleep.target static slices.target static smartcard.target static sockets.target static sound.target static suspend.target static swap.target static sysinit.target static system-update.target static time-sync.target static timers.target static umount.target static chrony-dnssrv@.timer disabled docker-cleanup.timer disabled fstrim.timer disabled systemd-readahead-done.timer indirect systemd-tmpfiles-clean.timer static 244 unit files listed. jc-1.17.3/tests/fixtures/centos-7.7/systemctl.json000066400000000000000000000763401415226333200217530ustar00rootroot00000000000000[{"unit": "proc-sys-fs-binfmt_misc.automount", "load": "loaded", "active": "active", "sub": "waiting", "description": "Arbitrary Executable File Formats File System Automount Point"}, {"unit": "dev-block-8:2.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "LVM PV 3klkIj-w1qk-DkJi-0XBJ-y3o7-i2Ac-vHqWBM on /dev/sda2 2"}, {"unit": "dev-cdrom.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "VMware_Virtual_IDE_CDROM_Drive"}, {"unit": "dev-centos-root.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/centos/root"}, {"unit": "dev-centos-swap.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/centos/swap"}, {"unit": "dev-disk-by\\x2did-ata\\x2dVMware_Virtual_IDE_CDROM_Drive_10000000000000000001.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "VMware_Virtual_IDE_CDROM_Drive"}, {"unit": "dev-disk-by\\x2did-dm\\x2dname\\x2dcentos\\x2droot.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/disk/by-id/dm-name-centos-root"}, {"unit": "dev-disk-by\\x2did-dm\\x2dname\\x2dcentos\\x2dswap.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/disk/by-id/dm-name-centos-swap"}, {"unit": "dev-disk-by\\x2did-dm\\x2duuid\\x2dLVM\\x2dh68ze5IiKlTsLYPCc0MZYJ7wcin2QzP1smehAPSq6LXkM54sNRY3sncGbbkFLuEa.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/disk/by-id/dm-uuid-LVM-h68ze5IiKlTsLYPCc0MZYJ7wcin2QzP1smehAPSq6LXkM54sNRY3sncGbbkFLuEa"}, {"unit": "dev-disk-by\\x2did-dm\\x2duuid\\x2dLVM\\x2dh68ze5IiKlTsLYPCc0MZYJ7wcin2QzP1X9yq5NOn1nxOIuDLIZUagWAFM1bJV5pL.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/disk/by-id/dm-uuid-LVM-h68ze5IiKlTsLYPCc0MZYJ7wcin2QzP1X9yq5NOn1nxOIuDLIZUagWAFM1bJV5pL"}, {"unit": "dev-disk-by\\x2did-lvm\\x2dpv\\x2duuid\\x2d3klkIj\\x2dw1qk\\x2dDkJi\\x2d0XBJ\\x2dy3o7\\x2di2Ac\\x2dvHqWBM.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "LVM PV 3klkIj-w1qk-DkJi-0XBJ-y3o7-i2Ac-vHqWBM on /dev/sda2 2"}, {"unit": "dev-disk-by\\x2dpath-pci\\x2d0000:00:07.1\\x2data\\x2d2.0.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "VMware_Virtual_IDE_CDROM_Drive"}, {"unit": "dev-disk-by\\x2dpath-pci\\x2d0000:00:10.0\\x2dscsi\\x2d0:0:0:0.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "VMware_Virtual_S"}, {"unit": "dev-disk-by\\x2dpath-pci\\x2d0000:00:10.0\\x2dscsi\\x2d0:0:0:0\\x2dpart1.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "VMware_Virtual_S 1"}, {"unit": "dev-disk-by\\x2dpath-pci\\x2d0000:00:10.0\\x2dscsi\\x2d0:0:0:0\\x2dpart2.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "LVM PV 3klkIj-w1qk-DkJi-0XBJ-y3o7-i2Ac-vHqWBM on /dev/sda2 2"}, {"unit": "dev-disk-by\\x2duuid-05d927bb\\x2d5875\\x2d49e3\\x2dada1\\x2d7f46cb31c932.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "VMware_Virtual_S 1"}, {"unit": "dev-disk-by\\x2duuid-07d718ef\\x2d950c\\x2d4e5b\\x2d98e0\\x2d42a1147b77d9.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/disk/by-uuid/07d718ef-950c-4e5b-98e0-42a1147b77d9"}, {"unit": "dev-disk-by\\x2duuid-615eb89d\\x2dbcbf\\x2d46ad\\x2d80e3\\x2dc483ef5c931f.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/disk/by-uuid/615eb89d-bcbf-46ad-80e3-c483ef5c931f"}, {"unit": "dev-dm\\x2d0.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/dm-0"}, {"unit": "dev-dm\\x2d1.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/dm-1"}, {"unit": "dev-mapper-centos\\x2droot.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/mapper/centos-root"}, {"unit": "dev-mapper-centos\\x2dswap.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/mapper/centos-swap"}, {"unit": "dev-sda.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "VMware_Virtual_S"}, {"unit": "dev-sda1.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "VMware_Virtual_S 1"}, {"unit": "dev-sda2.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "LVM PV 3klkIj-w1qk-DkJi-0XBJ-y3o7-i2Ac-vHqWBM on /dev/sda2 2"}, {"unit": "dev-sr0.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "VMware_Virtual_IDE_CDROM_Drive"}, {"unit": "dev-ttyS0.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/ttyS0"}, {"unit": "dev-ttyS1.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/ttyS1"}, {"unit": "dev-ttyS2.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/ttyS2"}, {"unit": "dev-ttyS3.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/ttyS3"}, {"unit": "sys-devices-pci0000:00-0000:00:07.1-ata2-host2-target2:0:0-2:0:0:0-block-sr0.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "VMware_Virtual_IDE_CDROM_Drive"}, {"unit": "sys-devices-pci0000:00-0000:00:10.0-host0-target0:0:0-0:0:0:0-block-sda-sda1.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "VMware_Virtual_S 1"}, {"unit": "sys-devices-pci0000:00-0000:00:10.0-host0-target0:0:0-0:0:0:0-block-sda-sda2.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "LVM PV 3klkIj-w1qk-DkJi-0XBJ-y3o7-i2Ac-vHqWBM on /dev/sda2 2"}, {"unit": "sys-devices-pci0000:00-0000:00:10.0-host0-target0:0:0-0:0:0:0-block-sda.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "VMware_Virtual_S"}, {"unit": "sys-devices-pci0000:00-0000:00:11.0-0000:02:00.0-usb2-2\\x2d2-2\\x2d2.1-2\\x2d2.1:1.0-bluetooth-hci0-rfkill0.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/pci0000:00/0000:00:11.0/0000:02:00.0/usb2/2-2/2-2.1/2-2.1:1.0/bluetooth/hci0/rfkill0"}, {"unit": "sys-devices-pci0000:00-0000:00:11.0-0000:02:00.0-usb2-2\\x2d2-2\\x2d2.1-2\\x2d2.1:1.0-bluetooth-hci0.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/pci0000:00/0000:00:11.0/0000:02:00.0/usb2/2-2/2-2.1/2-2.1:1.0/bluetooth/hci0"}, {"unit": "sys-devices-pci0000:00-0000:00:11.0-0000:02:01.0-net-ens33.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "82545EM Gigabit Ethernet Controller (Copper) (PRO/1000 MT Single Port Adapter)"}, {"unit": "sys-devices-platform-serial8250-tty-ttyS1.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/platform/serial8250/tty/ttyS1"}, {"unit": "sys-devices-platform-serial8250-tty-ttyS2.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/platform/serial8250/tty/ttyS2"}, {"unit": "sys-devices-platform-serial8250-tty-ttyS3.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/platform/serial8250/tty/ttyS3"}, {"unit": "sys-devices-pnp0-00:05-tty-ttyS0.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/pnp0/00:05/tty/ttyS0"}, {"unit": "sys-devices-virtual-block-dm\\x2d0.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/virtual/block/dm-0"}, {"unit": "sys-devices-virtual-block-dm\\x2d1.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/virtual/block/dm-1"}, {"unit": "sys-devices-virtual-net-docker0.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/virtual/net/docker0"}, {"unit": "sys-module-configfs.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/module/configfs"}, {"unit": "sys-subsystem-bluetooth-devices-hci0.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/subsystem/bluetooth/devices/hci0"}, {"unit": "sys-subsystem-net-devices-docker0.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/subsystem/net/devices/docker0"}, {"unit": "sys-subsystem-net-devices-ens33.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "82545EM Gigabit Ethernet Controller (Copper) (PRO/1000 MT Single Port Adapter)"}, {"unit": "sys-subsystem-rfkill-devices-rfkill0.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/subsystem/rfkill/devices/rfkill0"}, {"unit": "-.mount", "load": "loaded", "active": "active", "sub": "mounted", "description": "/"}, {"unit": "boot.mount", "load": "loaded", "active": "active", "sub": "mounted", "description": "/boot"}, {"unit": "dev-hugepages.mount", "load": "loaded", "active": "active", "sub": "mounted", "description": "Huge Pages File System"}, {"unit": "dev-mqueue.mount", "load": "loaded", "active": "active", "sub": "mounted", "description": "POSIX Message Queue File System"}, {"unit": "proc-sys-fs-binfmt_misc.mount", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Arbitrary Executable File Formats File System"}, {"unit": "run-user-1000.mount", "load": "loaded", "active": "active", "sub": "mounted", "description": "/run/user/1000"}, {"unit": "sys-fs-fuse-connections.mount", "load": "loaded", "active": "inactive", "sub": "dead", "description": "FUSE Control File System"}, {"unit": "sys-kernel-config.mount", "load": "loaded", "active": "active", "sub": "mounted", "description": "Configuration File System"}, {"unit": "sys-kernel-debug.mount", "load": "loaded", "active": "active", "sub": "mounted", "description": "Debug File System"}, {"unit": "tmp.mount", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Temporary Directory"}, {"unit": "var-lib-docker-containers.mount", "load": "loaded", "active": "active", "sub": "mounted", "description": "/var/lib/docker/containers"}, {"unit": "var-lib-docker-overlay2.mount", "load": "loaded", "active": "active", "sub": "mounted", "description": "/var/lib/docker/overlay2"}, {"unit": "systemd-ask-password-console.path", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Dispatch Password Requests to Console Directory Watch"}, {"unit": "systemd-ask-password-plymouth.path", "load": "loaded", "active": "active", "sub": "waiting", "description": "Forward Password Requests to Plymouth Directory Watch"}, {"unit": "systemd-ask-password-wall.path", "load": "loaded", "active": "active", "sub": "waiting", "description": "Forward Password Requests to Wall Directory Watch"}, {"unit": "session-1.scope", "load": "loaded", "active": "active", "sub": "running", "description": "Session 1 of user kbrazil"}, {"unit": "auditd.service", "load": "loaded", "active": "active", "sub": "running", "description": "Security Auditing Service"}, {"unit": "chronyd.service", "load": "loaded", "active": "active", "sub": "running", "description": "NTP client/server"}, {"unit": "cloud-init.service", "load": "not-found", "active": "inactive", "sub": "dead", "description": "cloud-init.service"}, {"unit": "cpupower.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Configure CPU power related settings"}, {"unit": "crond.service", "load": "loaded", "active": "active", "sub": "running", "description": "Command Scheduler"}, {"unit": "dbus.service", "load": "loaded", "active": "active", "sub": "running", "description": "D-Bus System Message Bus"}, {"unit": "display-manager.service", "load": "not-found", "active": "inactive", "sub": "dead", "description": "display-manager.service"}, {"unit": "dm-event.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Device-mapper event daemon"}, {"unit": "docker-cleanup.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Docker Cleanup"}, {"unit": "docker-storage-setup.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Docker Storage Setup"}, {"unit": "docker.service", "load": "loaded", "active": "active", "sub": "running", "description": "Docker Application Container Engine"}, {"unit": "dracut-shutdown.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Restore /run/initramfs"}, {"unit": "ebtables.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Ethernet Bridge Filtering tables"}, {"unit": "emergency.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Emergency Shell"}, {"unit": "exim.service", "load": "not-found", "active": "inactive", "sub": "dead", "description": "exim.service"}, {"unit": "firewalld.service", "load": "loaded", "active": "active", "sub": "running", "description": "firewalld - dynamic firewall daemon"}, {"unit": "getty@tty1.service", "load": "loaded", "active": "active", "sub": "running", "description": "Getty on tty1"}, {"unit": "ip6tables.service", "load": "not-found", "active": "inactive", "sub": "dead", "description": "ip6tables.service"}, {"unit": "ipset.service", "load": "not-found", "active": "inactive", "sub": "dead", "description": "ipset.service"}, {"unit": "iptables.service", "load": "not-found", "active": "inactive", "sub": "dead", "description": "iptables.service"}, {"unit": "irqbalance.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "irqbalance daemon"}, {"unit": "kdump.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Crash recovery kernel arming"}, {"unit": "kmod-static-nodes.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Create list of required static device nodes for the current kernel"}, {"unit": "lvm2-activation.service", "load": "not-found", "active": "inactive", "sub": "dead", "description": "lvm2-activation.service"}, {"unit": "lvm2-lvmetad.service", "load": "loaded", "active": "active", "sub": "running", "description": "LVM2 metadata daemon"}, {"unit": "lvm2-lvmpolld.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "LVM2 poll daemon"}, {"unit": "lvm2-monitor.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling"}, {"unit": "lvm2-pvscan@8:2.service", "load": "loaded", "active": "active", "sub": "exited", "description": "LVM2 PV scan on device 8:2"}, {"unit": "microcode.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Load CPU microcode update"}, {"unit": "network.service", "load": "loaded", "active": "active", "sub": "exited", "description": "LSB: Bring up/down networking"}, {"unit": "NetworkManager-wait-online.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Network Manager Wait Online"}, {"unit": "NetworkManager.service", "load": "loaded", "active": "active", "sub": "running", "description": "Network Manager"}, {"unit": "ntpd.service", "load": "not-found", "active": "inactive", "sub": "dead", "description": "ntpd.service"}, {"unit": "ntpdate.service", "load": "not-found", "active": "inactive", "sub": "dead", "description": "ntpdate.service"}, {"unit": "plymouth-quit-wait.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Wait for Plymouth Boot Screen to Quit"}, {"unit": "plymouth-quit.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Terminate Plymouth Boot Screen"}, {"unit": "plymouth-read-write.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Tell Plymouth To Write Out Runtime Data"}, {"unit": "plymouth-start.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Show Plymouth Boot Screen"}, {"unit": "polkit.service", "load": "loaded", "active": "active", "sub": "running", "description": "Authorization Manager"}, {"unit": "postfix.service", "load": "loaded", "active": "active", "sub": "running", "description": "Postfix Mail Transport Agent"}, {"unit": "rc-local.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "/etc/rc.d/rc.local Compatibility"}, {"unit": "rescue.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Rescue Shell"}, {"unit": "rhel-autorelabel.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Relabel all filesystems, if necessary"}, {"unit": "rhel-configure.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Reconfigure the system on administrator request"}, {"unit": "rhel-dmesg.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Dump dmesg to /var/log/dmesg"}, {"unit": "rhel-domainname.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Read and set NIS domainname from /etc/sysconfig/network"}, {"unit": "rhel-import-state.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Import network configuration from initramfs"}, {"unit": "rhel-loadmodules.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Load legacy module configuration"}, {"unit": "rhel-readonly.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Configure read-only root support"}, {"unit": "rsyslog.service", "load": "loaded", "active": "active", "sub": "running", "description": "System Logging Service"}, {"unit": "selinux-policy-migrate-local-changes@targeted.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Migrate local SELinux policy changes from the old store structure to the new structure"}, {"unit": "sendmail.service", "load": "not-found", "active": "inactive", "sub": "dead", "description": "sendmail.service"}, {"unit": "serial-getty@ttyS0.service", "load": "loaded", "active": "active", "sub": "running", "description": "Serial Getty on ttyS0"}, {"unit": "sntp.service", "load": "not-found", "active": "inactive", "sub": "dead", "description": "sntp.service"}, {"unit": "sshd-keygen.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "OpenSSH Server Key Generation"}, {"unit": "sshd.service", "load": "loaded", "active": "active", "sub": "running", "description": "OpenSSH server daemon"}, {"unit": "syslog.service", "load": "not-found", "active": "inactive", "sub": "dead", "description": "syslog.service"}, {"unit": "sysstat.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Resets System Activity Logs"}, {"unit": "systemd-ask-password-console.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Dispatch Password Requests to Console"}, {"unit": "systemd-ask-password-plymouth.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Forward Password Requests to Plymouth"}, {"unit": "systemd-ask-password-wall.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Forward Password Requests to Wall"}, {"unit": "systemd-binfmt.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Set Up Additional Binary Formats"}, {"unit": "systemd-firstboot.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "First Boot Wizard"}, {"unit": "systemd-fsck-root.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "File System Check on Root Device"}, {"unit": "systemd-hwdb-update.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Rebuild Hardware Database"}, {"unit": "systemd-initctl.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "/dev/initctl Compatibility Daemon"}, {"unit": "systemd-journal-catalog-update.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Rebuild Journal Catalog"}, {"unit": "systemd-journal-flush.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Flush Journal to Persistent Storage"}, {"unit": "systemd-journald.service", "load": "loaded", "active": "active", "sub": "running", "description": "Journal Service"}, {"unit": "systemd-logind.service", "load": "loaded", "active": "active", "sub": "running", "description": "Login Service"}, {"unit": "systemd-machine-id-commit.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Commit a transient machine-id on disk"}, {"unit": "systemd-modules-load.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Load Kernel Modules"}, {"unit": "systemd-random-seed.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Load/Save Random Seed"}, {"unit": "systemd-readahead-collect.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Collect Read-Ahead Data"}, {"unit": "systemd-readahead-done.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Stop Read-Ahead Data Collection"}, {"unit": "systemd-readahead-replay.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Replay Read-Ahead Data"}, {"unit": "systemd-reboot.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Reboot"}, {"unit": "systemd-remount-fs.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Remount Root and Kernel File Systems"}, {"unit": "systemd-rfkill@rfkill0.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Load/Save RF Kill Switch Status of rfkill0"}, {"unit": "systemd-shutdownd.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Delayed Shutdown Service"}, {"unit": "systemd-sysctl.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Apply Kernel Variables"}, {"unit": "systemd-sysusers.service", "load": "not-found", "active": "inactive", "sub": "dead", "description": "systemd-sysusers.service"}, {"unit": "systemd-timesyncd.service", "load": "not-found", "active": "inactive", "sub": "dead", "description": "systemd-timesyncd.service"}, {"unit": "systemd-tmpfiles-clean.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Cleanup of Temporary Directories"}, {"unit": "systemd-tmpfiles-setup-dev.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Create Static Device Nodes in /dev"}, {"unit": "systemd-tmpfiles-setup.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Create Volatile Files and Directories"}, {"unit": "systemd-udev-trigger.service", "load": "loaded", "active": "active", "sub": "exited", "description": "udev Coldplug all Devices"}, {"unit": "systemd-udevd.service", "load": "loaded", "active": "active", "sub": "running", "description": "udev Kernel Device Manager"}, {"unit": "systemd-update-done.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Update is Completed"}, {"unit": "systemd-update-utmp-runlevel.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Update UTMP about System Runlevel Changes"}, {"unit": "systemd-update-utmp.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Update UTMP about System Boot/Shutdown"}, {"unit": "systemd-user-sessions.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Permit User Sessions"}, {"unit": "systemd-vconsole-setup.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Setup Virtual Console"}, {"unit": "tuned.service", "load": "loaded", "active": "active", "sub": "running", "description": "Dynamic System Tuning Daemon"}, {"unit": "ypbind.service", "load": "not-found", "active": "inactive", "sub": "dead", "description": "ypbind.service"}, {"unit": "yppasswdd.service", "load": "not-found", "active": "inactive", "sub": "dead", "description": "yppasswdd.service"}, {"unit": "ypserv.service", "load": "not-found", "active": "inactive", "sub": "dead", "description": "ypserv.service"}, {"unit": "ypxfrd.service", "load": "not-found", "active": "inactive", "sub": "dead", "description": "ypxfrd.service"}, {"unit": "-.slice", "load": "loaded", "active": "active", "sub": "active", "description": "Root Slice"}, {"unit": "system-getty.slice", "load": "loaded", "active": "active", "sub": "active", "description": "system-getty.slice"}, {"unit": "system-lvm2\\x2dpvscan.slice", "load": "loaded", "active": "active", "sub": "active", "description": "system-lvm2\\x2dpvscan.slice"}, {"unit": "system-selinux\\x2dpolicy\\x2dmigrate\\x2dlocal\\x2dchanges.slice", "load": "loaded", "active": "active", "sub": "active", "description": "system-selinux\\x2dpolicy\\x2dmigrate\\x2dlocal\\x2dchanges.slice"}, {"unit": "system-serial\\x2dgetty.slice", "load": "loaded", "active": "active", "sub": "active", "description": "system-serial\\x2dgetty.slice"}, {"unit": "system-systemd\\x2drfkill.slice", "load": "loaded", "active": "active", "sub": "active", "description": "system-systemd\\x2drfkill.slice"}, {"unit": "system.slice", "load": "loaded", "active": "active", "sub": "active", "description": "System Slice"}, {"unit": "user-1000.slice", "load": "loaded", "active": "active", "sub": "active", "description": "User Slice of kbrazil"}, {"unit": "user.slice", "load": "loaded", "active": "active", "sub": "active", "description": "User and Session Slice"}, {"unit": "dbus.socket", "load": "loaded", "active": "active", "sub": "running", "description": "D-Bus System Message Bus Socket"}, {"unit": "dm-event.socket", "load": "loaded", "active": "active", "sub": "listening", "description": "Device-mapper event daemon FIFOs"}, {"unit": "lvm2-lvmetad.socket", "load": "loaded", "active": "active", "sub": "running", "description": "LVM2 metadata daemon socket"}, {"unit": "lvm2-lvmpolld.socket", "load": "loaded", "active": "active", "sub": "listening", "description": "LVM2 poll daemon socket"}, {"unit": "sshd.socket", "load": "loaded", "active": "inactive", "sub": "dead", "description": "OpenSSH Server Socket"}, {"unit": "syslog.socket", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Syslog Socket"}, {"unit": "systemd-initctl.socket", "load": "loaded", "active": "active", "sub": "listening", "description": "/dev/initctl Compatibility Named Pipe"}, {"unit": "systemd-journald.socket", "load": "loaded", "active": "active", "sub": "running", "description": "Journal Socket"}, {"unit": "systemd-shutdownd.socket", "load": "loaded", "active": "active", "sub": "listening", "description": "Delayed Shutdown Socket"}, {"unit": "systemd-udevd-control.socket", "load": "loaded", "active": "active", "sub": "running", "description": "udev Control Socket"}, {"unit": "systemd-udevd-kernel.socket", "load": "loaded", "active": "active", "sub": "running", "description": "udev Kernel Socket"}, {"unit": "dev-centos-swap.swap", "load": "loaded", "active": "active", "sub": "active", "description": "/dev/centos/swap"}, {"unit": "dev-disk-by\\x2did-dm\\x2dname\\x2dcentos\\x2dswap.swap", "load": "loaded", "active": "active", "sub": "active", "description": "/dev/disk/by-id/dm-name-centos-swap"}, {"unit": "dev-disk-by\\x2did-dm\\x2duuid\\x2dLVM\\x2dh68ze5IiKlTsLYPCc0MZYJ7wcin2QzP1X9yq5NOn1nxOIuDLIZUagWAFM1bJV5pL.swap", "load": "loaded", "active": "active", "sub": "active", "description": "/dev/disk/by-id/dm-uuid-LVM-h68ze5IiKlTsLYPCc0MZYJ7wcin2QzP1X9yq5NOn1nxOIuDLIZUagWAFM1bJV5pL"}, {"unit": "dev-disk-by\\x2duuid-615eb89d\\x2dbcbf\\x2d46ad\\x2d80e3\\x2dc483ef5c931f.swap", "load": "loaded", "active": "active", "sub": "active", "description": "/dev/disk/by-uuid/615eb89d-bcbf-46ad-80e3-c483ef5c931f"}, {"unit": "dev-dm\\x2d1.swap", "load": "loaded", "active": "active", "sub": "active", "description": "/dev/dm-1"}, {"unit": "dev-mapper-centos\\x2dswap.swap", "load": "loaded", "active": "active", "sub": "active", "description": "/dev/mapper/centos-swap"}, {"unit": "basic.target", "load": "loaded", "active": "active", "sub": "active", "description": "Basic System"}, {"unit": "bluetooth.target", "load": "loaded", "active": "active", "sub": "active", "description": "Bluetooth"}, {"unit": "cryptsetup.target", "load": "loaded", "active": "active", "sub": "active", "description": "Local Encrypted Volumes"}, {"unit": "emergency.target", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Emergency Mode"}, {"unit": "final.target", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Final Step"}, {"unit": "getty-pre.target", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Login Prompts (Pre)"}, {"unit": "getty.target", "load": "loaded", "active": "active", "sub": "active", "description": "Login Prompts"}, {"unit": "graphical.target", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Graphical Interface"}, {"unit": "local-fs-pre.target", "load": "loaded", "active": "active", "sub": "active", "description": "Local File Systems (Pre)"}, {"unit": "local-fs.target", "load": "loaded", "active": "active", "sub": "active", "description": "Local File Systems"}, {"unit": "multi-user.target", "load": "loaded", "active": "active", "sub": "active", "description": "Multi-User System"}, {"unit": "network-online.target", "load": "loaded", "active": "active", "sub": "active", "description": "Network is Online"}, {"unit": "network-pre.target", "load": "loaded", "active": "active", "sub": "active", "description": "Network (Pre)"}, {"unit": "network.target", "load": "loaded", "active": "active", "sub": "active", "description": "Network"}, {"unit": "nss-user-lookup.target", "load": "loaded", "active": "inactive", "sub": "dead", "description": "User and Group Name Lookups"}, {"unit": "paths.target", "load": "loaded", "active": "active", "sub": "active", "description": "Paths"}, {"unit": "remote-fs-pre.target", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Remote File Systems (Pre)"}, {"unit": "remote-fs.target", "load": "loaded", "active": "active", "sub": "active", "description": "Remote File Systems"}, {"unit": "rescue.target", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Rescue Mode"}, {"unit": "shutdown.target", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Shutdown"}, {"unit": "slices.target", "load": "loaded", "active": "active", "sub": "active", "description": "Slices"}, {"unit": "sockets.target", "load": "loaded", "active": "active", "sub": "active", "description": "Sockets"}, {"unit": "swap.target", "load": "loaded", "active": "active", "sub": "active", "description": "Swap"}, {"unit": "sysinit.target", "load": "loaded", "active": "active", "sub": "active", "description": "System Initialization"}, {"unit": "syslog.target", "load": "not-found", "active": "inactive", "sub": "dead", "description": "syslog.target"}, {"unit": "time-sync.target", "load": "loaded", "active": "inactive", "sub": "dead", "description": "System Time Synchronized"}, {"unit": "timers.target", "load": "loaded", "active": "active", "sub": "active", "description": "Timers"}, {"unit": "umount.target", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Unmount All Filesystems"}, {"unit": "docker-cleanup.timer", "load": "loaded", "active": "active", "sub": "waiting", "description": "Run docker-cleanup every hour"}, {"unit": "systemd-readahead-done.timer", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Stop Read-Ahead Data Collection 10s After Completed Startup"}, {"unit": "systemd-tmpfiles-clean.timer", "load": "loaded", "active": "active", "sub": "waiting", "description": "Daily Cleanup of Temporary Directories"}] jc-1.17.3/tests/fixtures/centos-7.7/systemctl.out000066400000000000000000001132401415226333200216000ustar00rootroot00000000000000 UNIT LOAD ACTIVE SUB DESCRIPTION proc-sys-fs-binfmt_misc.automount loaded active waiting Arbitrary Executable File Formats File System Automount Point dev-block-8:2.device loaded active plugged LVM PV 3klkIj-w1qk-DkJi-0XBJ-y3o7-i2Ac-vHqWBM on /dev/sda2 2 dev-cdrom.device loaded active plugged VMware_Virtual_IDE_CDROM_Drive dev-centos-root.device loaded active plugged /dev/centos/root dev-centos-swap.device loaded active plugged /dev/centos/swap dev-disk-by\x2did-ata\x2dVMware_Virtual_IDE_CDROM_Drive_10000000000000000001.device loaded active plugged VMware_Virtual_IDE_CDROM_Drive dev-disk-by\x2did-dm\x2dname\x2dcentos\x2droot.device loaded active plugged /dev/disk/by-id/dm-name-centos-root dev-disk-by\x2did-dm\x2dname\x2dcentos\x2dswap.device loaded active plugged /dev/disk/by-id/dm-name-centos-swap dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dh68ze5IiKlTsLYPCc0MZYJ7wcin2QzP1smehAPSq6LXkM54sNRY3sncGbbkFLuEa.device loaded active plugged /dev/disk/by-id/dm-uuid-LVM-h68ze5IiKlTsLYPCc0MZYJ7wcin2QzP1smehAPSq6LXkM54sNRY3sncGbbkFLuEa dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dh68ze5IiKlTsLYPCc0MZYJ7wcin2QzP1X9yq5NOn1nxOIuDLIZUagWAFM1bJV5pL.device loaded active plugged /dev/disk/by-id/dm-uuid-LVM-h68ze5IiKlTsLYPCc0MZYJ7wcin2QzP1X9yq5NOn1nxOIuDLIZUagWAFM1bJV5pL dev-disk-by\x2did-lvm\x2dpv\x2duuid\x2d3klkIj\x2dw1qk\x2dDkJi\x2d0XBJ\x2dy3o7\x2di2Ac\x2dvHqWBM.device loaded active plugged LVM PV 3klkIj-w1qk-DkJi-0XBJ-y3o7-i2Ac-vHqWBM on /dev/sda2 2 dev-disk-by\x2dpath-pci\x2d0000:00:07.1\x2data\x2d2.0.device loaded active plugged VMware_Virtual_IDE_CDROM_Drive dev-disk-by\x2dpath-pci\x2d0000:00:10.0\x2dscsi\x2d0:0:0:0.device loaded active plugged VMware_Virtual_S dev-disk-by\x2dpath-pci\x2d0000:00:10.0\x2dscsi\x2d0:0:0:0\x2dpart1.device loaded active plugged VMware_Virtual_S 1 dev-disk-by\x2dpath-pci\x2d0000:00:10.0\x2dscsi\x2d0:0:0:0\x2dpart2.device loaded active plugged LVM PV 3klkIj-w1qk-DkJi-0XBJ-y3o7-i2Ac-vHqWBM on /dev/sda2 2 dev-disk-by\x2duuid-05d927bb\x2d5875\x2d49e3\x2dada1\x2d7f46cb31c932.device loaded active plugged VMware_Virtual_S 1 dev-disk-by\x2duuid-07d718ef\x2d950c\x2d4e5b\x2d98e0\x2d42a1147b77d9.device loaded active plugged /dev/disk/by-uuid/07d718ef-950c-4e5b-98e0-42a1147b77d9 dev-disk-by\x2duuid-615eb89d\x2dbcbf\x2d46ad\x2d80e3\x2dc483ef5c931f.device loaded active plugged /dev/disk/by-uuid/615eb89d-bcbf-46ad-80e3-c483ef5c931f dev-dm\x2d0.device loaded active plugged /dev/dm-0 dev-dm\x2d1.device loaded active plugged /dev/dm-1 dev-mapper-centos\x2droot.device loaded active plugged /dev/mapper/centos-root dev-mapper-centos\x2dswap.device loaded active plugged /dev/mapper/centos-swap dev-sda.device loaded active plugged VMware_Virtual_S dev-sda1.device loaded active plugged VMware_Virtual_S 1 dev-sda2.device loaded active plugged LVM PV 3klkIj-w1qk-DkJi-0XBJ-y3o7-i2Ac-vHqWBM on /dev/sda2 2 dev-sr0.device loaded active plugged VMware_Virtual_IDE_CDROM_Drive dev-ttyS0.device loaded active plugged /dev/ttyS0 dev-ttyS1.device loaded active plugged /dev/ttyS1 dev-ttyS2.device loaded active plugged /dev/ttyS2 dev-ttyS3.device loaded active plugged /dev/ttyS3 sys-devices-pci0000:00-0000:00:07.1-ata2-host2-target2:0:0-2:0:0:0-block-sr0.device loaded active plugged VMware_Virtual_IDE_CDROM_Drive sys-devices-pci0000:00-0000:00:10.0-host0-target0:0:0-0:0:0:0-block-sda-sda1.device loaded active plugged VMware_Virtual_S 1 sys-devices-pci0000:00-0000:00:10.0-host0-target0:0:0-0:0:0:0-block-sda-sda2.device loaded active plugged LVM PV 3klkIj-w1qk-DkJi-0XBJ-y3o7-i2Ac-vHqWBM on /dev/sda2 2 sys-devices-pci0000:00-0000:00:10.0-host0-target0:0:0-0:0:0:0-block-sda.device loaded active plugged VMware_Virtual_S sys-devices-pci0000:00-0000:00:11.0-0000:02:00.0-usb2-2\x2d2-2\x2d2.1-2\x2d2.1:1.0-bluetooth-hci0-rfkill0.device loaded active plugged /sys/devices/pci0000:00/0000:00:11.0/0000:02:00.0/usb2/2-2/2-2.1/2-2.1:1.0/bluetooth/hci0/rfkill0 sys-devices-pci0000:00-0000:00:11.0-0000:02:00.0-usb2-2\x2d2-2\x2d2.1-2\x2d2.1:1.0-bluetooth-hci0.device loaded active plugged /sys/devices/pci0000:00/0000:00:11.0/0000:02:00.0/usb2/2-2/2-2.1/2-2.1:1.0/bluetooth/hci0 sys-devices-pci0000:00-0000:00:11.0-0000:02:01.0-net-ens33.device loaded active plugged 82545EM Gigabit Ethernet Controller (Copper) (PRO/1000 MT Single Port Adapter) sys-devices-platform-serial8250-tty-ttyS1.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS1 sys-devices-platform-serial8250-tty-ttyS2.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS2 sys-devices-platform-serial8250-tty-ttyS3.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS3 sys-devices-pnp0-00:05-tty-ttyS0.device loaded active plugged /sys/devices/pnp0/00:05/tty/ttyS0 sys-devices-virtual-block-dm\x2d0.device loaded active plugged /sys/devices/virtual/block/dm-0 sys-devices-virtual-block-dm\x2d1.device loaded active plugged /sys/devices/virtual/block/dm-1 sys-devices-virtual-net-docker0.device loaded active plugged /sys/devices/virtual/net/docker0 sys-module-configfs.device loaded active plugged /sys/module/configfs sys-subsystem-bluetooth-devices-hci0.device loaded active plugged /sys/subsystem/bluetooth/devices/hci0 sys-subsystem-net-devices-docker0.device loaded active plugged /sys/subsystem/net/devices/docker0 sys-subsystem-net-devices-ens33.device loaded active plugged 82545EM Gigabit Ethernet Controller (Copper) (PRO/1000 MT Single Port Adapter) sys-subsystem-rfkill-devices-rfkill0.device loaded active plugged /sys/subsystem/rfkill/devices/rfkill0 -.mount loaded active mounted / boot.mount loaded active mounted /boot dev-hugepages.mount loaded active mounted Huge Pages File System dev-mqueue.mount loaded active mounted POSIX Message Queue File System proc-sys-fs-binfmt_misc.mount loaded inactive dead Arbitrary Executable File Formats File System run-user-1000.mount loaded active mounted /run/user/1000 sys-fs-fuse-connections.mount loaded inactive dead FUSE Control File System sys-kernel-config.mount loaded active mounted Configuration File System sys-kernel-debug.mount loaded active mounted Debug File System tmp.mount loaded inactive dead Temporary Directory var-lib-docker-containers.mount loaded active mounted /var/lib/docker/containers var-lib-docker-overlay2.mount loaded active mounted /var/lib/docker/overlay2 systemd-ask-password-console.path loaded inactive dead Dispatch Password Requests to Console Directory Watch systemd-ask-password-plymouth.path loaded active waiting Forward Password Requests to Plymouth Directory Watch systemd-ask-password-wall.path loaded active waiting Forward Password Requests to Wall Directory Watch session-1.scope loaded active running Session 1 of user kbrazil auditd.service loaded active running Security Auditing Service chronyd.service loaded active running NTP client/server ● cloud-init.service not-found inactive dead cloud-init.service cpupower.service loaded inactive dead Configure CPU power related settings crond.service loaded active running Command Scheduler dbus.service loaded active running D-Bus System Message Bus ● display-manager.service not-found inactive dead display-manager.service dm-event.service loaded inactive dead Device-mapper event daemon docker-cleanup.service loaded inactive dead Docker Cleanup docker-storage-setup.service loaded inactive dead Docker Storage Setup docker.service loaded active running Docker Application Container Engine dracut-shutdown.service loaded inactive dead Restore /run/initramfs ebtables.service loaded inactive dead Ethernet Bridge Filtering tables emergency.service loaded inactive dead Emergency Shell ● exim.service not-found inactive dead exim.service firewalld.service loaded active running firewalld - dynamic firewall daemon getty@tty1.service loaded active running Getty on tty1 ● ip6tables.service not-found inactive dead ip6tables.service ● ipset.service not-found inactive dead ipset.service ● iptables.service not-found inactive dead iptables.service irqbalance.service loaded inactive dead irqbalance daemon kdump.service loaded active exited Crash recovery kernel arming kmod-static-nodes.service loaded active exited Create list of required static device nodes for the current kernel ● lvm2-activation.service not-found inactive dead lvm2-activation.service lvm2-lvmetad.service loaded active running LVM2 metadata daemon lvm2-lvmpolld.service loaded inactive dead LVM2 poll daemon lvm2-monitor.service loaded active exited Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling lvm2-pvscan@8:2.service loaded active exited LVM2 PV scan on device 8:2 microcode.service loaded inactive dead Load CPU microcode update network.service loaded active exited LSB: Bring up/down networking NetworkManager-wait-online.service loaded active exited Network Manager Wait Online NetworkManager.service loaded active running Network Manager ● ntpd.service not-found inactive dead ntpd.service ● ntpdate.service not-found inactive dead ntpdate.service plymouth-quit-wait.service loaded inactive dead Wait for Plymouth Boot Screen to Quit plymouth-quit.service loaded inactive dead Terminate Plymouth Boot Screen plymouth-read-write.service loaded inactive dead Tell Plymouth To Write Out Runtime Data plymouth-start.service loaded inactive dead Show Plymouth Boot Screen polkit.service loaded active running Authorization Manager postfix.service loaded active running Postfix Mail Transport Agent rc-local.service loaded inactive dead /etc/rc.d/rc.local Compatibility rescue.service loaded inactive dead Rescue Shell rhel-autorelabel.service loaded inactive dead Relabel all filesystems, if necessary rhel-configure.service loaded inactive dead Reconfigure the system on administrator request rhel-dmesg.service loaded active exited Dump dmesg to /var/log/dmesg rhel-domainname.service loaded active exited Read and set NIS domainname from /etc/sysconfig/network rhel-import-state.service loaded active exited Import network configuration from initramfs rhel-loadmodules.service loaded inactive dead Load legacy module configuration rhel-readonly.service loaded active exited Configure read-only root support rsyslog.service loaded active running System Logging Service selinux-policy-migrate-local-changes@targeted.service loaded inactive dead Migrate local SELinux policy changes from the old store structure to the new structure ● sendmail.service not-found inactive dead sendmail.service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 ● sntp.service not-found inactive dead sntp.service sshd-keygen.service loaded inactive dead OpenSSH Server Key Generation sshd.service loaded active running OpenSSH server daemon ● syslog.service not-found inactive dead syslog.service sysstat.service loaded active exited Resets System Activity Logs systemd-ask-password-console.service loaded inactive dead Dispatch Password Requests to Console systemd-ask-password-plymouth.service loaded inactive dead Forward Password Requests to Plymouth systemd-ask-password-wall.service loaded inactive dead Forward Password Requests to Wall systemd-binfmt.service loaded inactive dead Set Up Additional Binary Formats systemd-firstboot.service loaded inactive dead First Boot Wizard systemd-fsck-root.service loaded inactive dead File System Check on Root Device systemd-hwdb-update.service loaded inactive dead Rebuild Hardware Database systemd-initctl.service loaded inactive dead /dev/initctl Compatibility Daemon systemd-journal-catalog-update.service loaded inactive dead Rebuild Journal Catalog systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-machine-id-commit.service loaded inactive dead Commit a transient machine-id on disk systemd-modules-load.service loaded inactive dead Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-readahead-collect.service loaded inactive dead Collect Read-Ahead Data systemd-readahead-done.service loaded inactive dead Stop Read-Ahead Data Collection systemd-readahead-replay.service loaded inactive dead Replay Read-Ahead Data systemd-reboot.service loaded inactive dead Reboot systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-rfkill@rfkill0.service loaded active exited Load/Save RF Kill Switch Status of rfkill0 systemd-shutdownd.service loaded inactive dead Delayed Shutdown Service systemd-sysctl.service loaded active exited Apply Kernel Variables ● systemd-sysusers.service not-found inactive dead systemd-sysusers.service ● systemd-timesyncd.service not-found inactive dead systemd-timesyncd.service systemd-tmpfiles-clean.service loaded inactive dead Cleanup of Temporary Directories systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-done.service loaded inactive dead Update is Completed systemd-update-utmp-runlevel.service loaded inactive dead Update UTMP about System Runlevel Changes systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions systemd-vconsole-setup.service loaded active exited Setup Virtual Console tuned.service loaded active running Dynamic System Tuning Daemon ● ypbind.service not-found inactive dead ypbind.service ● yppasswdd.service not-found inactive dead yppasswdd.service ● ypserv.service not-found inactive dead ypserv.service ● ypxfrd.service not-found inactive dead ypxfrd.service -.slice loaded active active Root Slice system-getty.slice loaded active active system-getty.slice system-lvm2\x2dpvscan.slice loaded active active system-lvm2\x2dpvscan.slice system-selinux\x2dpolicy\x2dmigrate\x2dlocal\x2dchanges.slice loaded active active system-selinux\x2dpolicy\x2dmigrate\x2dlocal\x2dchanges.slice system-serial\x2dgetty.slice loaded active active system-serial\x2dgetty.slice system-systemd\x2drfkill.slice loaded active active system-systemd\x2drfkill.slice system.slice loaded active active System Slice user-1000.slice loaded active active User Slice of kbrazil user.slice loaded active active User and Session Slice dbus.socket loaded active running D-Bus System Message Bus Socket dm-event.socket loaded active listening Device-mapper event daemon FIFOs lvm2-lvmetad.socket loaded active running LVM2 metadata daemon socket lvm2-lvmpolld.socket loaded active listening LVM2 poll daemon socket sshd.socket loaded inactive dead OpenSSH Server Socket syslog.socket loaded inactive dead Syslog Socket systemd-initctl.socket loaded active listening /dev/initctl Compatibility Named Pipe systemd-journald.socket loaded active running Journal Socket systemd-shutdownd.socket loaded active listening Delayed Shutdown Socket systemd-udevd-control.socket loaded active running udev Control Socket systemd-udevd-kernel.socket loaded active running udev Kernel Socket dev-centos-swap.swap loaded active active /dev/centos/swap dev-disk-by\x2did-dm\x2dname\x2dcentos\x2dswap.swap loaded active active /dev/disk/by-id/dm-name-centos-swap dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dh68ze5IiKlTsLYPCc0MZYJ7wcin2QzP1X9yq5NOn1nxOIuDLIZUagWAFM1bJV5pL.swap loaded active active /dev/disk/by-id/dm-uuid-LVM-h68ze5IiKlTsLYPCc0MZYJ7wcin2QzP1X9yq5NOn1nxOIuDLIZUagWAFM1bJV5pL dev-disk-by\x2duuid-615eb89d\x2dbcbf\x2d46ad\x2d80e3\x2dc483ef5c931f.swap loaded active active /dev/disk/by-uuid/615eb89d-bcbf-46ad-80e3-c483ef5c931f dev-dm\x2d1.swap loaded active active /dev/dm-1 dev-mapper-centos\x2dswap.swap loaded active active /dev/mapper/centos-swap basic.target loaded active active Basic System bluetooth.target loaded active active Bluetooth cryptsetup.target loaded active active Local Encrypted Volumes emergency.target loaded inactive dead Emergency Mode final.target loaded inactive dead Final Step getty-pre.target loaded inactive dead Login Prompts (Pre) getty.target loaded active active Login Prompts graphical.target loaded inactive dead Graphical Interface local-fs-pre.target loaded active active Local File Systems (Pre) local-fs.target loaded active active Local File Systems multi-user.target loaded active active Multi-User System network-online.target loaded active active Network is Online network-pre.target loaded active active Network (Pre) network.target loaded active active Network nss-user-lookup.target loaded inactive dead User and Group Name Lookups paths.target loaded active active Paths remote-fs-pre.target loaded inactive dead Remote File Systems (Pre) remote-fs.target loaded active active Remote File Systems rescue.target loaded inactive dead Rescue Mode shutdown.target loaded inactive dead Shutdown slices.target loaded active active Slices sockets.target loaded active active Sockets swap.target loaded active active Swap sysinit.target loaded active active System Initialization ● syslog.target not-found inactive dead syslog.target time-sync.target loaded inactive dead System Time Synchronized timers.target loaded active active Timers umount.target loaded inactive dead Unmount All Filesystems docker-cleanup.timer loaded active waiting Run docker-cleanup every hour systemd-readahead-done.timer loaded inactive dead Stop Read-Ahead Data Collection 10s After Completed Startup systemd-tmpfiles-clean.timer loaded active waiting Daily Cleanup of Temporary Directories LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 220 loaded units listed. To show all installed unit files use 'systemctl list-unit-files'. jc-1.17.3/tests/fixtures/centos-7.7/timedatectl.json000066400000000000000000000004341415226333200222120ustar00rootroot00000000000000{"local_time":"Tue 2020-03-10 17:53:21 PDT","universal_time":"Wed 2020-03-11 00:53:21 UTC","rtc_time":"Wed 2020-03-11 00:53:21","time_zone":"America/Los_Angeles (PDT, -0700)","ntp_enabled":true,"ntp_synchronized":true,"rtc_in_local_tz":false,"dst_active":true,"epoch_utc":1583888001} jc-1.17.3/tests/fixtures/centos-7.7/timedatectl.out000066400000000000000000000010521415226333200220450ustar00rootroot00000000000000 Local time: Tue 2020-03-10 17:53:21 PDT Universal time: Wed 2020-03-11 00:53:21 UTC RTC time: Wed 2020-03-11 00:53:21 Time zone: America/Los_Angeles (PDT, -0700) NTP enabled: yes NTP synchronized: yes RTC in local TZ: no DST active: yes Last DST change: DST began at Sun 2020-03-08 01:59:59 PST Sun 2020-03-08 03:00:00 PDT Next DST change: DST ends (the clock jumps one hour backwards) at Sun 2020-11-01 01:59:59 PDT Sun 2020-11-01 01:00:00 PST jc-1.17.3/tests/fixtures/centos-7.7/tracepath.json000066400000000000000000000101211415226333200216600ustar00rootroot00000000000000{"pmtu": 1500, "forward_hops": null, "return_hops": null, "hops": [{"ttl": 1, "guess": true, "host": "[LOCALHOST]", "reply_ms": null, "pmtu": 1500, "asymmetric_difference": null, "reached": false}, {"ttl": 1, "guess": false, "host": "dsldevice.attlocal.net", "reply_ms": 4.063, "pmtu": null, "asymmetric_difference": null, "reached": false}, {"ttl": 1, "guess": false, "host": "dsldevice.attlocal.net", "reply_ms": 6.368, "pmtu": null, "asymmetric_difference": null, "reached": false}, {"ttl": 2, "guess": false, "host": "76-220-24-1.lightspeed.sntcca.sbcglobal.net", "reply_ms": 24.092, "pmtu": null, "asymmetric_difference": null, "reached": false}, {"ttl": 3, "guess": false, "host": null, "reply_ms": null, "pmtu": null, "asymmetric_difference": null, "reached": false}, {"ttl": 4, "guess": false, "host": "12.242.117.16", "reply_ms": 161.527, "pmtu": null, "asymmetric_difference": null, "reached": false}, {"ttl": 5, "guess": false, "host": null, "reply_ms": null, "pmtu": null, "asymmetric_difference": null, "reached": false}, {"ttl": 6, "guess": false, "host": null, "reply_ms": null, "pmtu": null, "asymmetric_difference": null, "reached": false}, {"ttl": 3, "guess": false, "host": "71.148.149.0", "reply_ms": 12000.559, "pmtu": null, "asymmetric_difference": null, "reached": false}, {"ttl": 3, "guess": false, "host": "71.148.149.0", "reply_ms": 11967.523, "pmtu": null, "asymmetric_difference": null, "reached": false}, {"ttl": 3, "guess": false, "host": "71.148.149.0", "reply_ms": 11829.634, "pmtu": null, "asymmetric_difference": null, "reached": false}, {"ttl": 10, "guess": false, "host": null, "reply_ms": null, "pmtu": null, "asymmetric_difference": null, "reached": false}, {"ttl": 11, "guess": false, "host": null, "reply_ms": null, "pmtu": null, "asymmetric_difference": null, "reached": false}, {"ttl": 12, "guess": false, "host": null, "reply_ms": null, "pmtu": null, "asymmetric_difference": null, "reached": false}, {"ttl": 13, "guess": false, "host": null, "reply_ms": null, "pmtu": null, "asymmetric_difference": null, "reached": false}, {"ttl": 14, "guess": false, "host": null, "reply_ms": null, "pmtu": null, "asymmetric_difference": null, "reached": false}, {"ttl": 15, "guess": false, "host": null, "reply_ms": null, "pmtu": null, "asymmetric_difference": null, "reached": false}, {"ttl": 16, "guess": false, "host": null, "reply_ms": null, "pmtu": null, "asymmetric_difference": null, "reached": false}, {"ttl": 17, "guess": false, "host": null, "reply_ms": null, "pmtu": null, "asymmetric_difference": null, "reached": false}, {"ttl": 18, "guess": false, "host": null, "reply_ms": null, "pmtu": null, "asymmetric_difference": null, "reached": false}, {"ttl": 19, "guess": false, "host": null, "reply_ms": null, "pmtu": null, "asymmetric_difference": null, "reached": false}, {"ttl": 20, "guess": false, "host": null, "reply_ms": null, "pmtu": null, "asymmetric_difference": null, "reached": false}, {"ttl": 21, "guess": false, "host": null, "reply_ms": null, "pmtu": null, "asymmetric_difference": null, "reached": false}, {"ttl": 22, "guess": false, "host": null, "reply_ms": null, "pmtu": null, "asymmetric_difference": null, "reached": false}, {"ttl": 23, "guess": false, "host": null, "reply_ms": null, "pmtu": null, "asymmetric_difference": null, "reached": false}, {"ttl": 24, "guess": false, "host": null, "reply_ms": null, "pmtu": null, "asymmetric_difference": null, "reached": false}, {"ttl": 25, "guess": false, "host": null, "reply_ms": null, "pmtu": null, "asymmetric_difference": null, "reached": false}, {"ttl": 26, "guess": false, "host": null, "reply_ms": null, "pmtu": null, "asymmetric_difference": null, "reached": false}, {"ttl": 27, "guess": false, "host": null, "reply_ms": null, "pmtu": null, "asymmetric_difference": null, "reached": false}, {"ttl": 28, "guess": false, "host": null, "reply_ms": null, "pmtu": null, "asymmetric_difference": null, "reached": false}, {"ttl": 29, "guess": false, "host": null, "reply_ms": null, "pmtu": null, "asymmetric_difference": null, "reached": false}, {"ttl": 30, "guess": false, "host": null, "reply_ms": null, "pmtu": null, "asymmetric_difference": null, "reached": false}]} jc-1.17.3/tests/fixtures/centos-7.7/tracepath.out000066400000000000000000000016521415226333200215270ustar00rootroot00000000000000 1?: [LOCALHOST] pmtu 1500 1: dsldevice.attlocal.net 4.063ms 1: dsldevice.attlocal.net 6.368ms 2: 76-220-24-1.lightspeed.sntcca.sbcglobal.net 24.092ms 3: no reply 4: 12.242.117.16 161.527ms 5: no reply 6: no reply 3: 71.148.149.0 12000.559ms 3: 71.148.149.0 11967.523ms 3: 71.148.149.0 11829.634ms 10: no reply 11: no reply 12: no reply 13: no reply 14: no reply 15: no reply 16: no reply 17: no reply 18: no reply 19: no reply 20: no reply 21: no reply 22: no reply 23: no reply 24: no reply 25: no reply 26: no reply 27: no reply 28: no reply 29: no reply 30: no reply Too many hops: pmtu 1500 Resume: pmtu 1500 jc-1.17.3/tests/fixtures/centos-7.7/tracepath6.json000066400000000000000000000011321415226333200217500ustar00rootroot00000000000000{"pmtu": 1480, "forward_hops": 2, "return_hops": 2, "hops": [{"ttl": 1, "guess": true, "host": "[LOCALHOST]", "reply_ms": null, "pmtu": 1500, "asymmetric_difference": null, "reached": false}, {"ttl": 1, "guess": false, "host": "dust.inr.ac.ru", "reply_ms": 0.411, "pmtu": null, "asymmetric_difference": null, "reached": false}, {"ttl": 2, "guess": false, "host": "dust.inr.ac.ru", "reply_ms": 0.39, "pmtu": 1480, "asymmetric_difference": 1, "reached": false}, {"ttl": 2, "guess": false, "host": "3ffe:2400:0:109::2", "reply_ms": 463.514, "pmtu": null, "asymmetric_difference": null, "reached": true}]} jc-1.17.3/tests/fixtures/centos-7.7/tracepath6.out000066400000000000000000000003731415226333200216140ustar00rootroot00000000000000 1?: [LOCALHOST] pmtu 1500 1: dust.inr.ac.ru 0.411ms 2: dust.inr.ac.ru asymm 1 0.390ms pmtu 1480 2: 3ffe:2400:0:109::2 463.514ms reached Resume: pmtu 1480 hops 2 back 2 jc-1.17.3/tests/fixtures/centos-7.7/traceroute.json000066400000000000000000000053101415226333200220660ustar00rootroot00000000000000{"destination_ip": "151.101.197.67", "destination_name": "www.cnn.com", "hops": [{"hop": 1, "probes": [{"annotation": null, "asn": null, "ip": "192.168.1.254", "name": "dsldevice.attlocal.net", "rtt": 4.024}, {"annotation": null, "asn": null, "ip": "192.168.1.254", "name": "dsldevice.attlocal.net", "rtt": 3.683}, {"annotation": null, "asn": null, "ip": "192.168.1.254", "name": "dsldevice.attlocal.net", "rtt": 3.706}]}, {"hop": 2, "probes": [{"annotation": null, "asn": null, "ip": "76.220.24.1", "name": "76-220-24-1.lightspeed.sntcca.sbcglobal.net", "rtt": 24.038}, {"annotation": null, "asn": null, "ip": "76.220.24.1", "name": "76-220-24-1.lightspeed.sntcca.sbcglobal.net", "rtt": 23.911}, {"annotation": null, "asn": null, "ip": "76.220.24.1", "name": "76-220-24-1.lightspeed.sntcca.sbcglobal.net", "rtt": 23.724}]}, {"hop": 3, "probes": []}, {"hop": 4, "probes": [{"annotation": null, "asn": null, "ip": "12.122.149.186", "name": "12.122.149.186", "rtt": 42.273}, {"annotation": null, "asn": null, "ip": "12.122.149.186", "name": "12.122.149.186", "rtt": 42.213}, {"annotation": null, "asn": null, "ip": "12.122.149.186", "name": "12.122.149.186", "rtt": 42.083}]}, {"hop": 5, "probes": [{"annotation": null, "asn": null, "ip": "12.122.2.77", "name": "12.122.2.77", "rtt": 36.789}, {"annotation": null, "asn": null, "ip": "12.122.2.77", "name": "12.122.2.77", "rtt": 43.691}, {"annotation": null, "asn": null, "ip": "12.122.2.77", "name": "12.122.2.77", "rtt": 36.597}]}, {"hop": 6, "probes": [{"annotation": null, "asn": null, "ip": "12.122.2.94", "name": "sd2ca21crs.ip.att.net", "rtt": 41.587}, {"annotation": null, "asn": null, "ip": "12.122.2.94", "name": "sd2ca21crs.ip.att.net", "rtt": 40.24}, {"annotation": null, "asn": null, "ip": "12.122.2.94", "name": "sd2ca21crs.ip.att.net", "rtt": 44.659}]}, {"hop": 7, "probes": [{"annotation": null, "asn": null, "ip": "12.123.215.161", "name": "12.123.215.161", "rtt": 37.858}, {"annotation": null, "asn": null, "ip": "12.123.215.161", "name": "12.123.215.161", "rtt": 37.321}, {"annotation": null, "asn": null, "ip": "12.123.215.161", "name": "12.123.215.161", "rtt": 37.092}]}, {"hop": 8, "probes": []}, {"hop": 9, "probes": []}, {"hop": 10, "probes": []}, {"hop": 11, "probes": []}, {"hop": 12, "probes": []}, {"hop": 13, "probes": []}, {"hop": 14, "probes": []}, {"hop": 15, "probes": []}, {"hop": 16, "probes": []}, {"hop": 17, "probes": []}, {"hop": 18, "probes": []}, {"hop": 19, "probes": []}, {"hop": 20, "probes": []}, {"hop": 21, "probes": []}, {"hop": 22, "probes": []}, {"hop": 23, "probes": []}, {"hop": 24, "probes": []}, {"hop": 25, "probes": []}, {"hop": 26, "probes": []}, {"hop": 27, "probes": []}, {"hop": 28, "probes": []}, {"hop": 29, "probes": []}, {"hop": 30, "probes": []}]} jc-1.17.3/tests/fixtures/centos-7.7/traceroute.out000066400000000000000000000013641415226333200217310ustar00rootroot00000000000000traceroute to www.cnn.com (151.101.197.67), 30 hops max, 60 byte packets 1 dsldevice.attlocal.net (192.168.1.254) 4.024 ms 3.683 ms 3.706 ms 2 76-220-24-1.lightspeed.sntcca.sbcglobal.net (76.220.24.1) 24.038 ms 23.911 ms 23.724 ms 3 * * * 4 12.122.149.186 (12.122.149.186) 42.273 ms 42.213 ms 42.083 ms 5 12.122.2.77 (12.122.2.77) 36.789 ms 43.691 ms 36.597 ms 6 sd2ca21crs.ip.att.net (12.122.2.94) 41.587 ms 40.240 ms 44.659 ms 7 12.123.215.161 (12.123.215.161) 37.858 ms 37.321 ms 37.092 ms 8 * * * 9 * * * 10 * * * 11 * * * 12 * * * 13 * * * 14 * * * 15 * * * 16 * * * 17 * * * 18 * * * 19 * * * 20 * * * 21 * * * 22 * * * 23 * * * 24 * * * 25 * * * 26 * * * 27 * * * 28 * * * 29 * * * 30 * * * jc-1.17.3/tests/fixtures/centos-7.7/uname-a.json000066400000000000000000000004241415226333200212350ustar00rootroot00000000000000{"kernel_name": "Linux", "node_name": "localhost.localdomain", "kernel_release": "3.10.0-1062.1.2.el7.x86_64", "operating_system": "GNU/Linux", "hardware_platform": "x86_64", "processor": "x86_64", "machine": "x86_64", "kernel_version": "#1 SMP Mon Sep 30 14:19:46 UTC 2019"} jc-1.17.3/tests/fixtures/centos-7.7/uname-a.out000066400000000000000000000001721415226333200210730ustar00rootroot00000000000000Linux localhost.localdomain 3.10.0-1062.1.2.el7.x86_64 #1 SMP Mon Sep 30 14:19:46 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux jc-1.17.3/tests/fixtures/centos-7.7/uname.out000066400000000000000000000000061415226333200206510ustar00rootroot00000000000000Linux jc-1.17.3/tests/fixtures/centos-7.7/uptime.json000066400000000000000000000003701415226333200212150ustar00rootroot00000000000000{"time": "10:25:20", "uptime": "16:03", "users": 2, "load_1m": 0.0, "load_5m": 0.01, "load_15m": 0.05, "time_hour": 10, "time_minute": 25, "time_second": 20, "uptime_days": 0, "uptime_hours": 16, "uptime_minutes": 3, "uptime_total_seconds": 57780} jc-1.17.3/tests/fixtures/centos-7.7/uptime.out000066400000000000000000000000761415226333200210560ustar00rootroot00000000000000 10:25:20 up 16:03, 2 users, load average: 0.00, 0.01, 0.05 jc-1.17.3/tests/fixtures/centos-7.7/vmstat-a-streaming.json000066400000000000000000000005721415226333200234410ustar00rootroot00000000000000[{"runnable_procs":2,"uninterruptible_sleeping_procs":0,"virtual_mem_used":0,"free_mem":2794696,"buffer_mem":null,"cache_mem":null,"inactive_mem":295968,"active_mem":312736,"swap_in":0,"swap_out":0,"blocks_in":1,"blocks_out":3,"interrupts":29,"context_switches":57,"user_time":0,"system_time":0,"idle_time":99,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null}] jc-1.17.3/tests/fixtures/centos-7.7/vmstat-a.json000066400000000000000000000005721415226333200214520ustar00rootroot00000000000000[{"runnable_procs":2,"uninterruptible_sleeping_procs":0,"virtual_mem_used":0,"free_mem":2794696,"buffer_mem":null,"cache_mem":null,"inactive_mem":295968,"active_mem":312736,"swap_in":0,"swap_out":0,"blocks_in":1,"blocks_out":3,"interrupts":29,"context_switches":57,"user_time":0,"system_time":0,"idle_time":99,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null}] jc-1.17.3/tests/fixtures/centos-7.7/vmstat-a.out000066400000000000000000000003651415226333200213100ustar00rootroot00000000000000procs -----------memory---------- ---swap-- -----io---- -system-- ------cpu----- r b swpd free inact active si so bi bo in cs us sy id wa st 2 0 0 2794696 295968 312736 0 0 1 3 29 57 0 0 99 0 0 jc-1.17.3/tests/fixtures/centos-7.7/vmstat-at-5-10-streaming.json000066400000000000000000000032751415226333200242100ustar00rootroot00000000000000[{"runnable_procs":2,"uninterruptible_sleeping_procs":0,"virtual_mem_used":0,"free_mem":2794716,"buffer_mem":null,"cache_mem":null,"inactive_mem":295968,"active_mem":312724,"swap_in":0,"swap_out":0,"blocks_in":1,"blocks_out":3,"interrupts":29,"context_switches":57,"user_time":0,"system_time":0,"idle_time":99,"io_wait_time":0,"stolen_time":0,"timestamp":"2021-09-16 20:33:13","timezone":"PDT","epoch":1631849593,"epoch_utc":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":0,"free_mem":2794716,"buffer_mem":null,"cache_mem":null,"inactive_mem":295968,"active_mem":312744,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":41,"context_switches":84,"user_time":0,"system_time":0,"idle_time":100,"io_wait_time":0,"stolen_time":0,"timestamp":"2021-09-16 20:33:18","timezone":"PDT","epoch":1631849598,"epoch_utc":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":0,"free_mem":2794716,"buffer_mem":null,"cache_mem":null,"inactive_mem":295968,"active_mem":312752,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":41,"context_switches":84,"user_time":0,"system_time":0,"idle_time":100,"io_wait_time":0,"stolen_time":0,"timestamp":"2021-09-16 20:33:23","timezone":"PDT","epoch":1631849603,"epoch_utc":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":0,"free_mem":2794716,"buffer_mem":null,"cache_mem":null,"inactive_mem":295968,"active_mem":312752,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":44,"context_switches":87,"user_time":0,"system_time":0,"idle_time":100,"io_wait_time":0,"stolen_time":0,"timestamp":"2021-09-16 20:33:28","timezone":"PDT","epoch":1631849608,"epoch_utc":null}] jc-1.17.3/tests/fixtures/centos-7.7/vmstat-at-5-10.json000066400000000000000000000032751415226333200222210ustar00rootroot00000000000000[{"runnable_procs":2,"uninterruptible_sleeping_procs":0,"virtual_mem_used":0,"free_mem":2794716,"buffer_mem":null,"cache_mem":null,"inactive_mem":295968,"active_mem":312724,"swap_in":0,"swap_out":0,"blocks_in":1,"blocks_out":3,"interrupts":29,"context_switches":57,"user_time":0,"system_time":0,"idle_time":99,"io_wait_time":0,"stolen_time":0,"timestamp":"2021-09-16 20:33:13","timezone":"PDT","epoch":1631849593,"epoch_utc":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":0,"free_mem":2794716,"buffer_mem":null,"cache_mem":null,"inactive_mem":295968,"active_mem":312744,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":41,"context_switches":84,"user_time":0,"system_time":0,"idle_time":100,"io_wait_time":0,"stolen_time":0,"timestamp":"2021-09-16 20:33:18","timezone":"PDT","epoch":1631849598,"epoch_utc":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":0,"free_mem":2794716,"buffer_mem":null,"cache_mem":null,"inactive_mem":295968,"active_mem":312752,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":41,"context_switches":84,"user_time":0,"system_time":0,"idle_time":100,"io_wait_time":0,"stolen_time":0,"timestamp":"2021-09-16 20:33:23","timezone":"PDT","epoch":1631849603,"epoch_utc":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":0,"free_mem":2794716,"buffer_mem":null,"cache_mem":null,"inactive_mem":295968,"active_mem":312752,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":44,"context_switches":87,"user_time":0,"system_time":0,"idle_time":100,"io_wait_time":0,"stolen_time":0,"timestamp":"2021-09-16 20:33:28","timezone":"PDT","epoch":1631849608,"epoch_utc":null}] jc-1.17.3/tests/fixtures/centos-7.7/vmstat-at-5-10.out000066400000000000000000000011461415226333200220520ustar00rootroot00000000000000procs -----------memory---------- ---swap-- -----io---- -system-- ------cpu----- -----timestamp----- r b swpd free inact active si so bi bo in cs us sy id wa st PDT 2 0 0 2794716 295968 312724 0 0 1 3 29 57 0 0 99 0 0 2021-09-16 20:33:13 0 0 0 2794716 295968 312744 0 0 0 0 41 84 0 0 100 0 0 2021-09-16 20:33:18 0 0 0 2794716 295968 312752 0 0 0 0 41 84 0 0 100 0 0 2021-09-16 20:33:23 0 0 0 2794716 295968 312752 0 0 0 0 44 87 0 0 100 0 0 2021-09-16 20:33:28 jc-1.17.3/tests/fixtures/centos-7.7/vmstat-awt-streaming.json000066400000000000000000000006601415226333200240120ustar00rootroot00000000000000[{"runnable_procs":2,"uninterruptible_sleeping_procs":0,"virtual_mem_used":0,"free_mem":2794864,"buffer_mem":null,"cache_mem":null,"inactive_mem":295968,"active_mem":312724,"swap_in":0,"swap_out":0,"blocks_in":1,"blocks_out":3,"interrupts":29,"context_switches":57,"user_time":0,"system_time":0,"idle_time":99,"io_wait_time":0,"stolen_time":0,"timestamp":"2021-09-16 20:31:30","timezone":"PDT","epoch":1631849490,"epoch_utc":null}] jc-1.17.3/tests/fixtures/centos-7.7/vmstat-awt.json000066400000000000000000000006601415226333200220230ustar00rootroot00000000000000[{"runnable_procs":2,"uninterruptible_sleeping_procs":0,"virtual_mem_used":0,"free_mem":2794864,"buffer_mem":null,"cache_mem":null,"inactive_mem":295968,"active_mem":312724,"swap_in":0,"swap_out":0,"blocks_in":1,"blocks_out":3,"interrupts":29,"context_switches":57,"user_time":0,"system_time":0,"idle_time":99,"io_wait_time":0,"stolen_time":0,"timestamp":"2021-09-16 20:31:30","timezone":"PDT","epoch":1631849490,"epoch_utc":null}] jc-1.17.3/tests/fixtures/centos-7.7/vmstat-awt.out000066400000000000000000000006071415226333200216620ustar00rootroot00000000000000procs -----------------------memory---------------------- ---swap-- -----io---- -system-- --------cpu-------- -----timestamp----- r b swpd free inact active si so bi bo in cs us sy id wa st PDT 2 0 0 2794864 295968 312724 0 0 1 3 29 57 0 0 99 0 0 2021-09-16 20:31:30 jc-1.17.3/tests/fixtures/centos-7.7/vmstat-d-streaming.json000066400000000000000000000016321415226333200234420ustar00rootroot00000000000000[{"disk":"sda","total_reads":15257,"merged_reads":100,"sectors_read":841035,"reading_ms":8395,"total_writes":50851,"merged_writes":5502,"sectors_written":1648657,"writing_ms":146540,"current_io":0,"io_seconds":44,"timestamp":null,"timezone":null},{"disk":"sr0","total_reads":0,"merged_reads":0,"sectors_read":0,"reading_ms":0,"total_writes":0,"merged_writes":0,"sectors_written":0,"writing_ms":0,"current_io":0,"io_seconds":0,"timestamp":null,"timezone":null},{"disk":"dm-0","total_reads":14910,"merged_reads":0,"sectors_read":775075,"reading_ms":8350,"total_writes":56343,"merged_writes":0,"sectors_written":1644520,"writing_ms":180880,"current_io":0,"io_seconds":44,"timestamp":null,"timezone":null},{"disk":"dm-1","total_reads":88,"merged_reads":0,"sectors_read":4408,"reading_ms":13,"total_writes":0,"merged_writes":0,"sectors_written":0,"writing_ms":0,"current_io":0,"io_seconds":0,"timestamp":null,"timezone":null}] jc-1.17.3/tests/fixtures/centos-7.7/vmstat-d.json000066400000000000000000000016321415226333200214530ustar00rootroot00000000000000[{"disk":"sda","total_reads":15257,"merged_reads":100,"sectors_read":841035,"reading_ms":8395,"total_writes":50851,"merged_writes":5502,"sectors_written":1648657,"writing_ms":146540,"current_io":0,"io_seconds":44,"timestamp":null,"timezone":null},{"disk":"sr0","total_reads":0,"merged_reads":0,"sectors_read":0,"reading_ms":0,"total_writes":0,"merged_writes":0,"sectors_written":0,"writing_ms":0,"current_io":0,"io_seconds":0,"timestamp":null,"timezone":null},{"disk":"dm-0","total_reads":14910,"merged_reads":0,"sectors_read":775075,"reading_ms":8350,"total_writes":56343,"merged_writes":0,"sectors_written":1644520,"writing_ms":180880,"current_io":0,"io_seconds":44,"timestamp":null,"timezone":null},{"disk":"dm-1","total_reads":88,"merged_reads":0,"sectors_read":4408,"reading_ms":13,"total_writes":0,"merged_writes":0,"sectors_written":0,"writing_ms":0,"current_io":0,"io_seconds":0,"timestamp":null,"timezone":null}] jc-1.17.3/tests/fixtures/centos-7.7/vmstat-d.out000066400000000000000000000007411415226333200213110ustar00rootroot00000000000000disk- ------------reads------------ ------------writes----------- -----IO------ total merged sectors ms total merged sectors ms cur sec sda 15257 100 841035 8395 50851 5502 1648657 146540 0 44 sr0 0 0 0 0 0 0 0 0 0 0 dm-0 14910 0 775075 8350 56343 0 1644520 180880 0 44 dm-1 88 0 4408 13 0 0 0 0 0 0 jc-1.17.3/tests/fixtures/centos-7.7/vmstat-dt-streaming.json000066400000000000000000000022121415226333200236210ustar00rootroot00000000000000[{"disk":"sda","total_reads":15257,"merged_reads":100,"sectors_read":841035,"reading_ms":8395,"total_writes":50851,"merged_writes":5502,"sectors_written":1648657,"writing_ms":146540,"current_io":0,"io_seconds":44,"timestamp":"2021-09-16 20:32:28","timezone":"UTC","epoch":1631849548,"epoch_utc":1631824348},{"disk":"sr0","total_reads":0,"merged_reads":0,"sectors_read":0,"reading_ms":0,"total_writes":0,"merged_writes":0,"sectors_written":0,"writing_ms":0,"current_io":0,"io_seconds":0,"timestamp":"2021-09-16 20:32:28","timezone":"UTC","epoch":1631849548,"epoch_utc":1631824348},{"disk":"dm-0","total_reads":14910,"merged_reads":0,"sectors_read":775075,"reading_ms":8350,"total_writes":56343,"merged_writes":0,"sectors_written":1644520,"writing_ms":180880,"current_io":0,"io_seconds":44,"timestamp":"2021-09-16 20:32:28","timezone":"UTC","epoch":1631849548,"epoch_utc":1631824348},{"disk":"dm-1","total_reads":88,"merged_reads":0,"sectors_read":4408,"reading_ms":13,"total_writes":0,"merged_writes":0,"sectors_written":0,"writing_ms":0,"current_io":0,"io_seconds":0,"timestamp":"2021-09-16 20:32:28","timezone":"UTC","epoch":1631849548,"epoch_utc":1631824348}] jc-1.17.3/tests/fixtures/centos-7.7/vmstat-dt.json000066400000000000000000000022121415226333200216320ustar00rootroot00000000000000[{"disk":"sda","total_reads":15257,"merged_reads":100,"sectors_read":841035,"reading_ms":8395,"total_writes":50851,"merged_writes":5502,"sectors_written":1648657,"writing_ms":146540,"current_io":0,"io_seconds":44,"timestamp":"2021-09-16 20:32:28","timezone":"UTC","epoch":1631849548,"epoch_utc":1631824348},{"disk":"sr0","total_reads":0,"merged_reads":0,"sectors_read":0,"reading_ms":0,"total_writes":0,"merged_writes":0,"sectors_written":0,"writing_ms":0,"current_io":0,"io_seconds":0,"timestamp":"2021-09-16 20:32:28","timezone":"UTC","epoch":1631849548,"epoch_utc":1631824348},{"disk":"dm-0","total_reads":14910,"merged_reads":0,"sectors_read":775075,"reading_ms":8350,"total_writes":56343,"merged_writes":0,"sectors_written":1644520,"writing_ms":180880,"current_io":0,"io_seconds":44,"timestamp":"2021-09-16 20:32:28","timezone":"UTC","epoch":1631849548,"epoch_utc":1631824348},{"disk":"dm-1","total_reads":88,"merged_reads":0,"sectors_read":4408,"reading_ms":13,"total_writes":0,"merged_writes":0,"sectors_written":0,"writing_ms":0,"current_io":0,"io_seconds":0,"timestamp":"2021-09-16 20:32:28","timezone":"UTC","epoch":1631849548,"epoch_utc":1631824348}] jc-1.17.3/tests/fixtures/centos-7.7/vmstat-dt.out000066400000000000000000000011311415226333200214670ustar00rootroot00000000000000disk- ------------reads------------ ------------writes----------- -----IO------ -----timestamp----- total merged sectors ms total merged sectors ms cur sec UTC sda 15257 100 841035 8395 50851 5502 1648657 146540 0 44 2021-09-16 20:32:28 sr0 0 0 0 0 0 0 0 0 0 0 2021-09-16 20:32:28 dm-0 14910 0 775075 8350 56343 0 1644520 180880 0 44 2021-09-16 20:32:28 dm-1 88 0 4408 13 0 0 0 0 0 0 2021-09-16 20:32:28 jc-1.17.3/tests/fixtures/centos-7.7/vmstat-streaming.json000066400000000000000000000005701415226333200232210ustar00rootroot00000000000000[{"runnable_procs":2,"uninterruptible_sleeping_procs":0,"virtual_mem_used":0,"free_mem":2794468,"buffer_mem":2108,"cache_mem":741208,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":1,"blocks_out":3,"interrupts":29,"context_switches":57,"user_time":0,"system_time":0,"idle_time":99,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null}] jc-1.17.3/tests/fixtures/centos-7.7/vmstat-w-streaming.json000066400000000000000000000005701415226333200234650ustar00rootroot00000000000000[{"runnable_procs":2,"uninterruptible_sleeping_procs":0,"virtual_mem_used":0,"free_mem":2794484,"buffer_mem":2108,"cache_mem":741208,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":1,"blocks_out":3,"interrupts":29,"context_switches":57,"user_time":0,"system_time":0,"idle_time":99,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null}] jc-1.17.3/tests/fixtures/centos-7.7/vmstat-w.json000066400000000000000000000005701415226333200214760ustar00rootroot00000000000000[{"runnable_procs":2,"uninterruptible_sleeping_procs":0,"virtual_mem_used":0,"free_mem":2794484,"buffer_mem":2108,"cache_mem":741208,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":1,"blocks_out":3,"interrupts":29,"context_switches":57,"user_time":0,"system_time":0,"idle_time":99,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null}] jc-1.17.3/tests/fixtures/centos-7.7/vmstat-w.out000066400000000000000000000005131415226333200213310ustar00rootroot00000000000000procs -----------------------memory---------------------- ---swap-- -----io---- -system-- --------cpu-------- r b swpd free buff cache si so bi bo in cs us sy id wa st 2 0 0 2794484 2108 741208 0 0 1 3 29 57 0 0 99 0 0 jc-1.17.3/tests/fixtures/centos-7.7/vmstat.json000066400000000000000000000005701415226333200212320ustar00rootroot00000000000000[{"runnable_procs":2,"uninterruptible_sleeping_procs":0,"virtual_mem_used":0,"free_mem":2794468,"buffer_mem":2108,"cache_mem":741208,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":1,"blocks_out":3,"interrupts":29,"context_switches":57,"user_time":0,"system_time":0,"idle_time":99,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null}] jc-1.17.3/tests/fixtures/centos-7.7/vmstat.out000066400000000000000000000003651415226333200210720ustar00rootroot00000000000000procs -----------memory---------- ---swap-- -----io---- -system-- ------cpu----- r b swpd free buff cache si so bi bo in cs us sy id wa st 2 0 0 2794468 2108 741208 0 0 1 3 29 57 0 0 99 0 0 jc-1.17.3/tests/fixtures/centos-7.7/w.json000066400000000000000000000004371415226333200201640ustar00rootroot00000000000000[{"user": "kbrazil", "tty": "ttyS0", "from": null, "login_at": "Fri18", "idle": "32:16", "jcpu": "2.66s", "pcpu": "2.66s", "what": "-bash"}, {"user": "kbrazil", "tty": "pts/0", "from": "192.168.71.1", "login_at": "09:53", "idle": "8.00s", "jcpu": "0.10s", "pcpu": "0.00s", "what": "w"}] jc-1.17.3/tests/fixtures/centos-7.7/w.out000066400000000000000000000004121415226333200200130ustar00rootroot00000000000000 10:25:20 up 16:03, 2 users, load average: 0.00, 0.01, 0.05 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT kbrazil ttyS0 Fri18 32:16 2.66s 2.66s -bash kbrazil pts/0 192.168.71.1 09:53 8.00s 0.10s 0.00s w jc-1.17.3/tests/fixtures/centos-7.7/wc.json000066400000000000000000000124351415226333200203300ustar00rootroot00000000000000[{"filename": "bin", "lines": 0, "words": 0, "characters": 0}, {"filename": "cksum.out", "lines": 59, "words": 182, "characters": 1943}, {"filename": "devtoolset-3-gcc-4.9.2-6.el7.x86_64.rpm", "lines": 97735, "words": 543757, "characters": 24150660}, {"filename": "digout", "lines": 41, "words": 173, "characters": 1196}, {"filename": "dmidecode.out", "lines": 11810, "words": 38755, "characters": 277288}, {"filename": "Downloads", "lines": 0, "words": 0, "characters": 0}, {"filename": "ethtool.out", "lines": 24, "words": 77, "characters": 748}, {"filename": "file with spaces in the name", "lines": 0, "words": 0, "characters": 0}, {"filename": "git", "lines": 0, "words": 0, "characters": 0}, {"filename": "id-centos.out", "lines": 1, "words": 4, "characters": 129}, {"filename": "ifcfg.json", "lines": 1, "words": 164, "characters": 1600}, {"filename": "ifconfig.out", "lines": 26, "words": 157, "characters": 1278}, {"filename": "iptables-tests", "lines": 0, "words": 0, "characters": 0}, {"filename": "jc", "lines": 455649, "words": 1920906, "characters": 58764280}, {"filename": "jc-1.10.5-linux.sha256", "lines": 1, "words": 2, "characters": 69}, {"filename": "jc-1.10.5-linux.tar.gz", "lines": 80475, "words": 458331, "characters": 21978413}, {"filename": "jc-1.10.5.rpm", "lines": 80635, "words": 456923, "characters": 21716708}, {"filename": "jc-1.11.1-linux.sha256", "lines": 1, "words": 2, "characters": 69}, {"filename": "jc-1.11.1-linux.tar.gz", "lines": 74510, "words": 421533, "characters": 20226936}, {"filename": "jc-1.11.1.sha256", "lines": 1, "words": 2, "characters": 69}, {"filename": "jc-1.11.1.tar.gz", "lines": 73756, "words": 421486, "characters": 20225785}, {"filename": "jc-1.11.2-linux.sha256", "lines": 1, "words": 2, "characters": 69}, {"filename": "jc-1.11.2-linux.tar.gz", "lines": 73861, "words": 421614, "characters": 20231427}, {"filename": "jc-1.11.8-linux.sha256", "lines": 1, "words": 2, "characters": 69}, {"filename": "jc-1.11.8-linux.tar.gz", "lines": 74127, "words": 421977, "characters": 20241790}, {"filename": "jc-1.13.1-linux.sha256", "lines": 1, "words": 2, "characters": 69}, {"filename": "jc-1.13.1-linux.tar.gz", "lines": 74620, "words": 421848, "characters": 20268540}, {"filename": "jc-1.13.2-linux.sha256", "lines": 1, "words": 2, "characters": 69}, {"filename": "jc-1.13.2-linux.tar.gz", "lines": 74786, "words": 423881, "characters": 20263630}, {"filename": "jc-1.13.4-linux.sha256", "lines": 1, "words": 2, "characters": 69}, {"filename": "jc-1.13.4-linux.tar.gz", "lines": 74763, "words": 423408, "characters": 20264188}, {"filename": "jello-1.2.8-linux.sha256", "lines": 1, "words": 2, "characters": 72}, {"filename": "jello-1.2.8-linux.tar.gz", "lines": 72997, "words": 415356, "characters": 19899656}, {"filename": "jello-1.2.9-linux.sha256", "lines": 1, "words": 2, "characters": 72}, {"filename": "jello-1.2.9-linux.tar.gz", "lines": 73111, "words": 414558, "characters": 19901109}, {"filename": "journaljson", "lines": 6557, "words": 479675, "characters": 6014042}, {"filename": "jp", "lines": 19009, "words": 66861, "characters": 3426382}, {"filename": "jp_1.1.12_linux_x86_64.zip", "lines": 4154, "words": 24072, "characters": 1174326}, {"filename": "jq_twitter.json", "lines": 144, "words": 55888, "characters": 738160}, {"filename": "jtbl-1.1.6-linux.sha256", "lines": 1, "words": 2, "characters": 71}, {"filename": "jtbl-1.1.6-linux.tar.gz", "lines": 66057, "words": 377780, "characters": 18224334}, {"filename": "kbls.out", "lines": 58, "words": 520, "characters": 4152}, {"filename": "lastb.out", "lines": 5, "words": 35, "characters": 269}, {"filename": "lsblk-cols", "lines": 7, "words": 95, "characters": 1559}, {"filename": "ping-ip-O-D.out", "lines": 25, "words": 207, "characters": 1751}, {"filename": "ping-ip-O.out", "lines": 25, "words": 187, "characters": 1351}, {"filename": "psfile.txt", "lines": 104, "words": 912, "characters": 7786}, {"filename": "resizeterm.sh", "lines": 16, "words": 53, "characters": 355}, {"filename": "route-6-n.out", "lines": 23, "words": 159, "characters": 1802}, {"filename": "route-6.out", "lines": 23, "words": 159, "characters": 1814}, {"filename": "routeout", "lines": 41, "words": 74, "characters": 690}, {"filename": "sha384sum.out", "lines": 56, "words": 117, "characters": 6434}, {"filename": "shafile.txt", "lines": 56, "words": 117, "characters": 2850}, {"filename": "ss-aeep.out", "lines": 205, "words": 2004, "characters": 26724}, {"filename": "ssout", "lines": 205, "words": 1843, "characters": 20190}, {"filename": "sum.out", "lines": 58, "words": 179, "characters": 1668}, {"filename": "systemctl.out", "lines": 229, "words": 1609, "characters": 38746}, {"filename": "testfiles", "lines": 0, "words": 0, "characters": 0}, {"filename": "tmp", "lines": 0, "words": 0, "characters": 0}, {"filename": "top.out", "lines": 34, "words": 457, "characters": 5314}, {"filename": "tracepath6.out", "lines": 6, "words": 25, "characters": 252}, {"filename": "tracepath-cnn.out", "lines": 34, "words": 105, "characters": 939}, {"filename": "tr.out", "lines": 34, "words": 113, "characters": 1137}, {"filename": "who-aH.out", "lines": 6, "words": 36, "characters": 355}, {"filename": "who.out", "lines": 2, "words": 9, "characters": 93}, {"filename": "whotext", "lines": 5, "words": 28, "characters": 281}, {"filename": "total", "lines": 1490176, "words": 8218431, "characters": 338121827}] jc-1.17.3/tests/fixtures/centos-7.7/wc.out000066400000000000000000000057551415226333200201750ustar00rootroot00000000000000 0 0 0 bin 59 182 1943 cksum.out 97735 543757 24150660 devtoolset-3-gcc-4.9.2-6.el7.x86_64.rpm 41 173 1196 digout 11810 38755 277288 dmidecode.out 0 0 0 Downloads 24 77 748 ethtool.out 0 0 0 file with spaces in the name 0 0 0 git 1 4 129 id-centos.out 1 164 1600 ifcfg.json 26 157 1278 ifconfig.out 0 0 0 iptables-tests 455649 1920906 58764280 jc 1 2 69 jc-1.10.5-linux.sha256 80475 458331 21978413 jc-1.10.5-linux.tar.gz 80635 456923 21716708 jc-1.10.5.rpm 1 2 69 jc-1.11.1-linux.sha256 74510 421533 20226936 jc-1.11.1-linux.tar.gz 1 2 69 jc-1.11.1.sha256 73756 421486 20225785 jc-1.11.1.tar.gz 1 2 69 jc-1.11.2-linux.sha256 73861 421614 20231427 jc-1.11.2-linux.tar.gz 1 2 69 jc-1.11.8-linux.sha256 74127 421977 20241790 jc-1.11.8-linux.tar.gz 1 2 69 jc-1.13.1-linux.sha256 74620 421848 20268540 jc-1.13.1-linux.tar.gz 1 2 69 jc-1.13.2-linux.sha256 74786 423881 20263630 jc-1.13.2-linux.tar.gz 1 2 69 jc-1.13.4-linux.sha256 74763 423408 20264188 jc-1.13.4-linux.tar.gz 1 2 72 jello-1.2.8-linux.sha256 72997 415356 19899656 jello-1.2.8-linux.tar.gz 1 2 72 jello-1.2.9-linux.sha256 73111 414558 19901109 jello-1.2.9-linux.tar.gz 6557 479675 6014042 journaljson 19009 66861 3426382 jp 4154 24072 1174326 jp_1.1.12_linux_x86_64.zip 144 55888 738160 jq_twitter.json 1 2 71 jtbl-1.1.6-linux.sha256 66057 377780 18224334 jtbl-1.1.6-linux.tar.gz 58 520 4152 kbls.out 5 35 269 lastb.out 7 95 1559 lsblk-cols 25 207 1751 ping-ip-O-D.out 25 187 1351 ping-ip-O.out 104 912 7786 psfile.txt 16 53 355 resizeterm.sh 23 159 1802 route-6-n.out 23 159 1814 route-6.out 41 74 690 routeout 56 117 6434 sha384sum.out 56 117 2850 shafile.txt 205 2004 26724 ss-aeep.out 205 1843 20190 ssout 58 179 1668 sum.out 229 1609 38746 systemctl.out 0 0 0 testfiles 0 0 0 tmp 34 457 5314 top.out 6 25 252 tracepath6.out 34 105 939 tracepath-cnn.out 34 113 1137 tr.out 6 36 355 who-aH.out 2 9 93 who.out 5 28 281 whotext 1490176 8218431 338121827 total jc-1.17.3/tests/fixtures/centos-7.7/who-a.json000066400000000000000000000011441415226333200207250ustar00rootroot00000000000000[{"event":"reboot","time":"2020-02-29 12:13","epoch":1583007180},{"event":"login","tty":"tty1","time":"2020-02-29 12:13","pid":841,"comment":"id=tty1","epoch":1583007180},{"user":"kbrazil","writeable_tty":"+","tty":"ttyS0","time":"2020-02-29 12:14","idle":".","pid":840,"epoch":1583007240},{"event":"run-level 3","time":"2020-02-29 12:13","epoch":1583007180},{"user":"kbrazil","writeable_tty":"+","tty":"pts/0","time":"2020-02-29 18:43","idle":"00:11","pid":3709,"from":"192.168.71.1","epoch":1583030580},{"tty":"pts/1","time":"2020-02-29 18:28","pid":3381,"comment":"id=ts/1 term=0 exit=0","epoch":1583029680}] jc-1.17.3/tests/fixtures/centos-7.7/who-a.out000066400000000000000000000005541415226333200205670ustar00rootroot00000000000000 system boot 2020-02-29 12:13 LOGIN tty1 2020-02-29 12:13 841 id=tty1 kbrazil + ttyS0 2020-02-29 12:14 . 840 run-level 3 2020-02-29 12:13 kbrazil + pts/0 2020-02-29 18:43 00:11 3709 (192.168.71.1) pts/1 2020-02-29 18:28 3381 id=ts/1 term=0 exit=0 jc-1.17.3/tests/fixtures/centos-7.7/who.json000066400000000000000000000002641415226333200205110ustar00rootroot00000000000000[{"user":"kbrazil","tty":"ttyS0","time":"2020-02-29 12:14","epoch":1583007240},{"user":"kbrazil","tty":"pts/0","time":"2020-02-29 18:43","from":"192.168.71.1","epoch":1583030580}] jc-1.17.3/tests/fixtures/centos-7.7/who.out000066400000000000000000000001351415226333200203440ustar00rootroot00000000000000kbrazil ttyS0 2020-02-29 12:14 kbrazil pts/0 2020-02-29 18:43 (192.168.71.1) jc-1.17.3/tests/fixtures/centos-8/000077500000000000000000000000001415226333200166535ustar00rootroot00000000000000jc-1.17.3/tests/fixtures/centos-8/sfdisk-F.json000066400000000000000000000002531415226333200212140ustar00rootroot00000000000000[{"disk":"/dev/sda","free_disk_size":"0 B","free_bytes":0,"free_sectors":0,"units":"sectors of 1 * 512 = 512 bytes","logical_sector_size":512,"physical_sector_size":512}] jc-1.17.3/tests/fixtures/centos-8/sfdisk-F.out000066400000000000000000000002301415226333200210450ustar00rootroot00000000000000Unpartitioned space /dev/sda: 0 B, 0 bytes, 0 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes jc-1.17.3/tests/fixtures/centos-8/sfdisk-l.json000066400000000000000000000017221415226333200212640ustar00rootroot00000000000000[{"disk":"/dev/sda","disk_size":"20 GiB","bytes":21474836480,"sectors":41943040,"units":"sectors of 1 * 512 = 512 bytes","logical_sector_size":512,"physical_sector_size":512,"min_io_size":512,"optimal_io_size":512,"disk_label_type":"dos","disk_identifier":"0x94988ac4","partitions":[{"device":"/dev/sda1","boot":true,"start":2048,"end":2099199,"sectors":2097152,"size":"1G","id":"83","type":"Linux"},{"device":"/dev/sda2","boot":false,"start":2099200,"end":41943039,"sectors":39843840,"size":"19G","id":"8e","type":"Linux LVM"}]},{"disk":"/dev/mapper/cl-root","disk_size":"17 GiB","bytes":18249416704,"sectors":35643392,"units":"sectors of 1 * 512 = 512 bytes","logical_sector_size":512,"physical_sector_size":512,"min_io_size":512,"optimal_io_size":512},{"disk":"/dev/mapper/cl-swap","disk_size":"2 GiB","bytes":2147483648,"sectors":4194304,"units":"sectors of 1 * 512 = 512 bytes","logical_sector_size":512,"physical_sector_size":512,"min_io_size":512,"optimal_io_size":512}] jc-1.17.3/tests/fixtures/centos-8/sfdisk-l.out000066400000000000000000000015201415226333200211160ustar00rootroot00000000000000Disk /dev/sda: 20 GiB, 21474836480 bytes, 41943040 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disklabel type: dos Disk identifier: 0x94988ac4 Device Boot Start End Sectors Size Id Type /dev/sda1 * 2048 2099199 2097152 1G 83 Linux /dev/sda2 2099200 41943039 39843840 19G 8e Linux LVM Disk /dev/mapper/cl-root: 17 GiB, 18249416704 bytes, 35643392 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk /dev/mapper/cl-swap: 2 GiB, 2147483648 bytes, 4194304 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes jc-1.17.3/tests/fixtures/create_fixtures.sh000066400000000000000000000106611415226333200207470ustar00rootroot00000000000000#!/bin/bash arp > arp.out arp -v > arp-v.out arp -a > arp-a.out df > df.out df -h > df-h.out dig www.google.com AAAA > dig-aaaa.out dig www.cnn.com www.google.com > dig.out dig -x 1.1.1.1 > dig-x.out env > env.out free > free.out free -h > free-h.out history > history.out ifconfig > ifconfig.out sudo iptables -A INPUT -i lo -j ACCEPT sudo iptables -A OUTPUT -o lo -j ACCEPT sudo iptables -A INPUT -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT sudo iptables -A OUTPUT -m conntrack --ctstate ESTABLISHED -j ACCEPT sudo iptables -A INPUT -m conntrack --ctstate INVALID -j DROP sudo iptables -A INPUT -i lo -s 15.15.15.51 -j DROP sudo iptables -A INPUT -p tcp -s 15.15.15.0/24 --dport 22 -m conntrack --ctstate NEW,ESTABLISHED -j ACCEPT sudo iptables -A OUTPUT -p tcp --sport 22 -m conntrack --ctstate ESTABLISHED -j ACCEPT sudo iptables -L -t filter > iptables-filter.out sudo iptables --line-numbers -L -t filter > iptables-filter-line-numbers.out sudo iptables -L -t nat > iptables-nat.out sudo iptables -L -t mangle > iptables-mangle.out sudo iptables -L -t raw > iptables-raw.out sudo iptables -nvL -t filter > iptables-filter-nv.out sleep 11 & sleep 12 & sleep 13 & sleep 14 & jobs > jobs.out ls / > ls.out ls -al / > ls-al.out ls -alh / > ls-alh.out ls -R /usr > ls-R.out ls -alR /usr > ls-alR.out ls /usr/* > ls-glob.out cd /tmp/lstest touch 'a regular filename' touch $'\nthis file starts with one newline' touch $'\n\n\n\nthis file starts with four newlines' touch $'this file has\na newline inside' touch $'this file has\n\n\n\nfour contiguous newlines inside' touch $'this file\nhas\nsix\n\nnewlines\n\nwithin' touch $'\n\nthis file has\na combination\n\n\nof everything\n\n\n\n' cd /tmp ls -R > ~/utils/ls-R-newlines.out ls -lR > ~/utils/ls-lR-newlines.out cd lstest ls > ~/utils/ls-newlines.out ls -l > ~/utils/ls-l-newlines.out lsblk > lsblk.out lsblk -o +KNAME,FSTYPE,LABEL,UUID,PARTLABEL,PARTUUID,RA,MODEL,SERIAL,STATE,OWNER,GROUP,MODE,ALIGNMENT,MIN-IO,OPT-IO,PHY-SEC,LOG-SEC,ROTA,SCHED,RQ-SIZE,DISC-ALN,DISC-GRAN,DISC-MAX,DISC-ZERO,WSAME,WWN,RAND,PKNAME,HCTL,TRAN,REV,VENDOR > lsblk-allcols.out lsmod > lsmod.out lsof > lsof.out sudo lsof > lsof-sudo.out mount > mount.out rm -rf /tmp/jc git clone https://github.com/kellyjonbrazil/jc.git /tmp/jc & sleep 1; netstat > netstat.out netstat -p > netstat-p.out netstat -l > netstat-l.out sudo netstat -lnp > netstat-sudo-lnp.out sudo netstat -aeep > netstat-sudo-aeep.out ps -ef > ps-ef.out ps axu > ps-axu.out route > route.out route -vn > route-vn.out uname -a > uname-a.out uptime > uptime.out w > w.out cat /etc/hosts > hosts.out cat /etc/fstab > fstab.out systemctl -a > systemctl.out systemctl -a list-unit-files > systemctl-luf.out systemctl -a list-sockets > systemctl-ls.out systemctl -a list-jobs > systemctl-jobs.out du /usr > du.out pip3 list > pip-list.out pip3 show wheel pip jc > pip-show.out blkid > blkid.out blkid /dev/sda2 > blkid-sda2.out sudo blkid -ip /dev/sda2 /dev/sda1 > blkid-ip-multi.out sudo blkid -o udev -ip /dev/sr0 > blkid-ip-udev.out sudo blkid -o udev -ip /dev/sda2 /dev/sda1 > blkid-ip-udev-multi.out last > last.out last -w | cat > last-w.out sudo lastb > lastb.out cat /etc/group > group.out sudo cat /etc/gshadow > gshadow.out # linux: ping -4 www.cnn.com -c 20 -O > ping-hostname-O.out ping -4 www.cnn.com -c 20 -O -p abcd > ping-hostname-O-p.out ping -4 www.cnn.com -c 20 -O -D -p abcd -s 1400 > ping-hostname-O-D-p-s.out ping 127.0.0.1 -c 20 -O > ping-ip-O.out ping 127.0.0.1 -c 20 -O -D > ping-ip-O-D.out ping6 2a04:4e42:600::323 -c 20 -O -p abcd > ping6-ip-O-p.out ping6 2a04:4e42:600::323 -c 20 -O -D -p abcd > ping6-ip-O-D-p.out ping6 www.cnn.com -c 20 -O -D -p abcd -s 1400 > ping6-hostname-O-D-p-s.out ping6 www.cnn.com -c 20 -O -D -p abcd > ping6-hostname-O-D-p.out ping6 www.cnn.com -c 20 -O -p abcd > ping6-hostname-O-p.out # osx/bsd: ping -c 3 -s 40 127.0.0.1 > ping-ip-s.out ping -c 3 -s 40 localhost > ping-hostname-s.out ping -c 3 -p ff 127.0.0.1 > ping-ip-p.out ping -c 3 127.0.0.1 > ping-ip.out ping -c 3 -p ff cnn.com > ping-hostname-p.out ping -c 3 cnn.com > ping-hostname.out ping6 -c 3 -s 40 localhost > ping6-hostname-s.out ping6 -c 3 -s 40 ::1 > ping6-ip-s.out ping6 -c 3 -p ff ::1 > ping6-ip-p.out ping6 -c 3 ::1 > ping6-ip.out ping6 -c 3 -p ff localhost > ping6-hostname-p.out ping6 -c 3 localhost > ping6-hostname.out jc-1.17.3/tests/fixtures/debian10/000077500000000000000000000000001415226333200165765ustar00rootroot00000000000000jc-1.17.3/tests/fixtures/debian10/crontab-u.json000066400000000000000000000007051415226333200213650ustar00rootroot00000000000000{"variables": [], "schedule": [{"minute": ["30"], "hour": ["3"], "day_of_month": ["*"], "month": ["*"], "day_of_week": ["0"], "user": "root", "command": "test -e /run/systemd/system || SERVICE_MODE=1 /usr/lib/x86_64-linux-gnu/e2fsprogs/e2scrub_all_cron"}, {"minute": ["10"], "hour": ["3"], "day_of_month": ["*"], "month": ["*"], "day_of_week": ["*"], "user": "root", "command": "test -e /run/systemd/system || SERVICE_MODE=1 /sbin/e2scrub_all -A -r"}]} jc-1.17.3/tests/fixtures/debian10/crontab-u.out000066400000000000000000000003111415226333200212140ustar00rootroot0000000000000030 3 * * 0 root test -e /run/systemd/system || SERVICE_MODE=1 /usr/lib/x86_64-linux-gnu/e2fsprogs/e2scrub_all_cron 10 3 * * * root test -e /run/systemd/system || SERVICE_MODE=1 /sbin/e2scrub_all -A -r jc-1.17.3/tests/fixtures/debian10/sfdisk-F.json000066400000000000000000000002531415226333200211370ustar00rootroot00000000000000[{"disk":"/dev/sda","free_disk_size":"0 B","free_bytes":0,"free_sectors":0,"units":"sectors of 1 * 512 = 512 bytes","logical_sector_size":512,"physical_sector_size":512}] jc-1.17.3/tests/fixtures/debian10/sfdisk-F.out000066400000000000000000000002221415226333200207710ustar00rootroot00000000000000Unpartitioned space /dev/sda: 0 B, 0 bytes, 0 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes jc-1.17.3/tests/fixtures/debian10/sfdisk-F2.json000066400000000000000000000004111415226333200212150ustar00rootroot00000000000000[{"disk":"/dev/sdc","free_disk_size":"1 GiB","free_bytes":1073741824,"free_sectors":2097152,"units":"sectors of 1 * 512 = 512 bytes","logical_sector_size":512,"physical_sector_size":512,"partitions":[{"start":4194304,"end":6291455,"sectors":2097152,"size":"1G"}]}] jc-1.17.3/tests/fixtures/debian10/sfdisk-F2.out000066400000000000000000000003361415226333200210610ustar00rootroot00000000000000Unpartitioned space /dev/sdc: 1 GiB, 1073741824 bytes, 2097152 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes Start End Sectors Size 4194304 6291455 2097152 1G jc-1.17.3/tests/fixtures/debian10/sfdisk-l.json000066400000000000000000000013011415226333200212000ustar00rootroot00000000000000[{"disk":"/dev/sda","disk_size":"20 GiB","bytes":21474836480,"sectors":41943040,"disk_model":"VMware Virtual S","units":"sectors of 1 * 512 = 512 bytes","logical_sector_size":512,"physical_sector_size":512,"min_io_size":512,"optimal_io_size":512,"disk_label_type":"dos","disk_identifier":"0x3719ef0f","partitions":[{"device":"/dev/sda1","boot":true,"start":2048,"end":39942143,"sectors":39940096,"size":"19G","id":"83","type":"Linux"},{"device":"/dev/sda2","boot":false,"start":39944190,"end":41940991,"sectors":1996802,"size":"975M","id":"5","type":"Extended"},{"device":"/dev/sda5","boot":false,"start":39944192,"end":41940991,"sectors":1996800,"size":"975M","id":"82","type":"Linux swap / Solaris"}]}] jc-1.17.3/tests/fixtures/debian10/sfdisk-l.out000066400000000000000000000010201415226333200210340ustar00rootroot00000000000000Disk /dev/sda: 20 GiB, 21474836480 bytes, 41943040 sectors Disk model: VMware Virtual S Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disklabel type: dos Disk identifier: 0x3719ef0f Device Boot Start End Sectors Size Id Type /dev/sda1 * 2048 39942143 39940096 19G 83 Linux /dev/sda2 39944190 41940991 1996802 975M 5 Extended /dev/sda5 39944192 41940991 1996800 975M 82 Linux swap / Solaris jc-1.17.3/tests/fixtures/debian10/sfdisk-l2.json000066400000000000000000000020721415226333200212700ustar00rootroot00000000000000[{"disk":"/dev/sda","disk_size":"32 GiB","bytes":34359738368,"sectors":67108864,"disk_model":"QEMU HARDDISK","units":"sectors of 1 * 512 = 512 bytes","logical_sector_size":512,"physical_sector_size":512,"min_io_size":512,"optimal_io_size":512,"disk_label_type":"dos","disk_identifier":"0x4f1ce2bf","partitions":[{"device":"/dev/sda1","boot":true,"start":2048,"end":13260799,"sectors":13258752,"size":"6.3G","id":"83","type":"Linux"},{"device":"/dev/sda2","boot":false,"start":13262846,"end":67106815,"sectors":53843970,"size":"25.7G","id":"5","type":"Extended"},{"device":"/dev/sda5","boot":false,"start":13262848,"end":18331647,"sectors":5068800,"size":"2.4G","id":"83","type":"Linux"},{"device":"/dev/sda6","boot":false,"start":18333696,"end":20332543,"sectors":1998848,"size":"976M","id":"82","type":"Linux swap / Solaris"},{"device":"/dev/sda7","boot":false,"start":20334592,"end":21352447,"sectors":1017856,"size":"497M","id":"83","type":"Linux"},{"device":"/dev/sda8","boot":false,"start":21354496,"end":67106815,"sectors":45752320,"size":"21.8G","id":"83","type":"Linux"}]}] jc-1.17.3/tests/fixtures/debian10/sfdisk-l2.out000066400000000000000000000012761415226333200211330ustar00rootroot00000000000000Disk /dev/sda: 32 GiB, 34359738368 bytes, 67108864 sectors Disk model: QEMU HARDDISK Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disklabel type: dos Disk identifier: 0x4f1ce2bf Device Boot Start End Sectors Size Id Type /dev/sda1 * 2048 13260799 13258752 6.3G 83 Linux /dev/sda2 13262846 67106815 53843970 25.7G 5 Extended /dev/sda5 13262848 18331647 5068800 2.4G 83 Linux /dev/sda6 18333696 20332543 1998848 976M 82 Linux swap / Solaris /dev/sda7 20334592 21352447 1017856 497M 83 Linux /dev/sda8 21354496 67106815 45752320 21.8G 83 Linux jc-1.17.3/tests/fixtures/debian10/sfdisk-l3.json000066400000000000000000000014251415226333200212720ustar00rootroot00000000000000[{"disk":"/dev/sda","disk_size":"238.5 GiB","bytes":256060514304,"sectors":500118192,"disk_model":"NT-256","units":"sectors of 1 * 512 = 512 bytes","logical_sector_size":512,"physical_sector_size":512,"min_io_size":512,"optimal_io_size":512,"disk_label_type":"gpt","disk_identifier":"50DEF501-A333-48D1-B1FC-C2F1CCFD5715","partitions":[{"device":"/dev/sda1","start":2048,"end":526335,"sectors":524288,"size":"256M","type":"Linux root (x86)"},{"device":"/dev/sda2","start":526336,"end":138545151,"sectors":138018816,"size":"65.8G","type":"Linux root (x86)"},{"device":"/dev/sda3","start":483684352,"end":500117503,"sectors":16433152,"size":"7.9G","type":"Linux swap"},{"device":"/dev/sda4","start":138545152,"end":483684351,"sectors":345139200,"size":"164.6G","type":"Linux filesystem"}]}] jc-1.17.3/tests/fixtures/debian10/sfdisk-l3.out000066400000000000000000000011511415226333200211240ustar00rootroot00000000000000Disk /dev/sda: 238.5 GiB, 256060514304 bytes, 500118192 sectors Disk model: NT-256 Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disklabel type: gpt Disk identifier: 50DEF501-A333-48D1-B1FC-C2F1CCFD5715 Device Start End Sectors Size Type /dev/sda1 2048 526335 524288 256M Linux root (x86) /dev/sda2 526336 138545151 138018816 65.8G Linux root (x86) /dev/sda3 483684352 500117503 16433152 7.9G Linux swap /dev/sda4 138545152 483684351 345139200 164.6G Linux filesystem jc-1.17.3/tests/fixtures/debian10/uname-a.json000066400000000000000000000004141415226333200210130ustar00rootroot00000000000000{ "kernel_name": "Linux", "node_name": "debian", "kernel_release": "5.7.0-2-amd64", "operating_system": "GNU/Linux", "processor": "unknown", "hardware_platform": "unknown", "machine": "x86_64", "kernel_version": "#1 SMP Debian 5.7.10-1 (2020-07-26)" } jc-1.17.3/tests/fixtures/debian10/uname-a.out000066400000000000000000000001211415226333200206440ustar00rootroot00000000000000Linux debian 5.7.0-2-amd64 #1 SMP Debian 5.7.10-1 (2020-07-26) x86_64 GNU/Linux jc-1.17.3/tests/fixtures/fedora32/000077500000000000000000000000001415226333200166205ustar00rootroot00000000000000jc-1.17.3/tests/fixtures/fedora32/dmidecode.json000066400000000000000000012232731415226333200214420ustar00rootroot00000000000000[{"handle": "0x0000", "type": 0, "bytes": 24, "description": "BIOS Information", "values": {"vendor": "Phoenix Technologies LTD", "version": "6.00", "release_date": "04/13/2018", "address": "0xEA490", "runtime_size": "88944 bytes", "rom_size": "64 kB", "characteristics": ["ISA is supported", "PCI is supported", "PC Card (PCMCIA) is supported", "PNP is supported", "APM is supported", "BIOS is upgradeable", "BIOS shadowing is allowed", "ESCD support is available", "Boot from CD is supported", "Selectable boot is supported", "EDD is supported", "Print screen service is supported (int 5h)", "8042 keyboard services are supported (int 9h)", "Serial services are supported (int 14h)", "Printer services are supported (int 17h)", "CGA/mono video services are supported (int 10h)", "ACPI is supported", "Smart battery is supported", "BIOS boot specification is supported", "Function key-initiated network boot is supported", "Targeted content distribution is supported"], "bios_revision": "4.6", "firmware_revision": "0.0"}}, {"handle": "0x0001", "type": 1, "bytes": 27, "description": "System Information", "values": {"manufacturer": "VMware, Inc.", "product_name": "VMware Virtual Platform", "version": "None", "serial_number": "VMware-56 4d bf 23 01 aa 4e 9f-c3 92 24 bd 7b 66 16 68", "uuid": "23bf4d56-aa01-9f4e-c392-24bd7b661668", "wake-up_type": "Power Switch", "sku_number": "Not Specified", "family": "Not Specified"}}, {"handle": "0x0002", "type": 2, "bytes": 15, "description": "Base Board Information", "values": {"manufacturer": "Intel Corporation", "product_name": "440BX Desktop Reference Platform", "version": "None", "serial_number": "None", "asset_tag": "Not Specified", "features": "None", "location_in_chassis": "Not Specified", "chassis_handle": "0x0000", "type": "Unknown", "contained_object_handles": "0"}}, {"handle": "0x0003", "type": 3, "bytes": 21, "description": "Chassis Information", "values": {"manufacturer": "No Enclosure", "type": "Other", "lock": "Not Present", "version": "N/A", "serial_number": "None", "asset_tag": "No Asset Tag", "boot-up_state": "Safe", "power_supply_state": "Safe", "thermal_state": "Safe", "security_status": "None", "oem_information": "0x00001234", "height": "Unspecified", "number_of_power_cords": "Unspecified", "contained_elements": "0"}}, {"handle": "0x0004", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #000", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 08 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Enabled", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0094", "l2_cache_handle": "0x0114", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0005", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #001", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0095", "l2_cache_handle": "0x0115", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0006", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #002", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0096", "l2_cache_handle": "0x0116", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0007", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #003", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0097", "l2_cache_handle": "0x0117", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0008", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #004", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0098", "l2_cache_handle": "0x0118", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0009", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #005", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0099", "l2_cache_handle": "0x0119", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #006", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009A", "l2_cache_handle": "0x011A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #007", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009B", "l2_cache_handle": "0x011B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #008", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009C", "l2_cache_handle": "0x011C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #009", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009D", "l2_cache_handle": "0x011D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #010", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009E", "l2_cache_handle": "0x011E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #011", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009F", "l2_cache_handle": "0x011F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0010", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #012", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A0", "l2_cache_handle": "0x0120", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0011", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #013", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A1", "l2_cache_handle": "0x0121", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0012", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #014", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A2", "l2_cache_handle": "0x0122", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0013", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #015", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A3", "l2_cache_handle": "0x0123", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0014", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #016", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A4", "l2_cache_handle": "0x0124", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0015", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #017", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A5", "l2_cache_handle": "0x0125", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0016", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #018", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A6", "l2_cache_handle": "0x0126", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0017", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #019", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A7", "l2_cache_handle": "0x0127", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0018", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #020", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A8", "l2_cache_handle": "0x0128", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0019", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #021", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A9", "l2_cache_handle": "0x0129", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #022", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AA", "l2_cache_handle": "0x012A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #023", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AB", "l2_cache_handle": "0x012B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #024", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AC", "l2_cache_handle": "0x012C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #025", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AD", "l2_cache_handle": "0x012D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #026", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AE", "l2_cache_handle": "0x012E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #027", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AF", "l2_cache_handle": "0x012F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0020", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #028", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B0", "l2_cache_handle": "0x0130", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0021", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #029", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B1", "l2_cache_handle": "0x0131", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0022", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #030", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B2", "l2_cache_handle": "0x0132", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0023", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #031", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B3", "l2_cache_handle": "0x0133", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0024", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #032", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B4", "l2_cache_handle": "0x0134", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0025", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #033", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B5", "l2_cache_handle": "0x0135", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0026", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #034", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B6", "l2_cache_handle": "0x0136", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0027", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #035", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B7", "l2_cache_handle": "0x0137", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0028", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #036", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B8", "l2_cache_handle": "0x0138", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0029", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #037", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B9", "l2_cache_handle": "0x0139", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #038", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BA", "l2_cache_handle": "0x013A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #039", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BB", "l2_cache_handle": "0x013B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #040", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BC", "l2_cache_handle": "0x013C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #041", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BD", "l2_cache_handle": "0x013D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #042", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BE", "l2_cache_handle": "0x013E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #043", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BF", "l2_cache_handle": "0x013F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0030", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #044", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C0", "l2_cache_handle": "0x0140", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0031", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #045", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C1", "l2_cache_handle": "0x0141", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0032", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #046", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C2", "l2_cache_handle": "0x0142", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0033", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #047", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C3", "l2_cache_handle": "0x0143", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0034", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #048", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C4", "l2_cache_handle": "0x0144", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0035", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #049", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C5", "l2_cache_handle": "0x0145", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0036", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #050", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C6", "l2_cache_handle": "0x0146", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0037", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #051", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C7", "l2_cache_handle": "0x0147", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0038", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #052", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C8", "l2_cache_handle": "0x0148", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0039", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #053", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C9", "l2_cache_handle": "0x0149", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #054", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CA", "l2_cache_handle": "0x014A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #055", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CB", "l2_cache_handle": "0x014B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #056", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CC", "l2_cache_handle": "0x014C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #057", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CD", "l2_cache_handle": "0x014D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #058", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CE", "l2_cache_handle": "0x014E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #059", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CF", "l2_cache_handle": "0x014F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0040", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #060", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D0", "l2_cache_handle": "0x0150", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0041", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #061", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D1", "l2_cache_handle": "0x0151", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0042", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #062", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D2", "l2_cache_handle": "0x0152", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0043", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #063", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D3", "l2_cache_handle": "0x0153", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0044", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #064", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D4", "l2_cache_handle": "0x0154", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0045", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #065", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D5", "l2_cache_handle": "0x0155", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0046", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #066", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D6", "l2_cache_handle": "0x0156", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0047", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #067", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D7", "l2_cache_handle": "0x0157", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0048", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #068", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D8", "l2_cache_handle": "0x0158", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0049", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #069", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D9", "l2_cache_handle": "0x0159", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #070", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DA", "l2_cache_handle": "0x015A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #071", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DB", "l2_cache_handle": "0x015B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #072", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DC", "l2_cache_handle": "0x015C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #073", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DD", "l2_cache_handle": "0x015D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #074", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DE", "l2_cache_handle": "0x015E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #075", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DF", "l2_cache_handle": "0x015F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0050", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #076", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E0", "l2_cache_handle": "0x0160", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0051", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #077", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E1", "l2_cache_handle": "0x0161", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0052", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #078", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E2", "l2_cache_handle": "0x0162", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0053", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #079", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E3", "l2_cache_handle": "0x0163", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0054", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #080", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E4", "l2_cache_handle": "0x0164", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0055", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #081", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E5", "l2_cache_handle": "0x0165", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0056", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #082", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E6", "l2_cache_handle": "0x0166", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0057", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #083", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E7", "l2_cache_handle": "0x0167", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0058", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #084", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E8", "l2_cache_handle": "0x0168", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0059", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #085", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E9", "l2_cache_handle": "0x0169", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #086", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EA", "l2_cache_handle": "0x016A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #087", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EB", "l2_cache_handle": "0x016B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #088", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EC", "l2_cache_handle": "0x016C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #089", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00ED", "l2_cache_handle": "0x016D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #090", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EE", "l2_cache_handle": "0x016E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #091", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EF", "l2_cache_handle": "0x016F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0060", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #092", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F0", "l2_cache_handle": "0x0170", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0061", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #093", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F1", "l2_cache_handle": "0x0171", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0062", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #094", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F2", "l2_cache_handle": "0x0172", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0063", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #095", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F3", "l2_cache_handle": "0x0173", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0064", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #096", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F4", "l2_cache_handle": "0x0174", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0065", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #097", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F5", "l2_cache_handle": "0x0175", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0066", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #098", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F6", "l2_cache_handle": "0x0176", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0067", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #099", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F7", "l2_cache_handle": "0x0177", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0068", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #100", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F8", "l2_cache_handle": "0x0178", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0069", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #101", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F9", "l2_cache_handle": "0x0179", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #102", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FA", "l2_cache_handle": "0x017A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #103", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FB", "l2_cache_handle": "0x017B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #104", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FC", "l2_cache_handle": "0x017C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #105", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FD", "l2_cache_handle": "0x017D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #106", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FE", "l2_cache_handle": "0x017E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #107", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FF", "l2_cache_handle": "0x017F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0070", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #108", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0100", "l2_cache_handle": "0x0180", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0071", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #109", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0101", "l2_cache_handle": "0x0181", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0072", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #110", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0102", "l2_cache_handle": "0x0182", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0073", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #111", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0103", "l2_cache_handle": "0x0183", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0074", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #112", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0104", "l2_cache_handle": "0x0184", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0075", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #113", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0105", "l2_cache_handle": "0x0185", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0076", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #114", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0106", "l2_cache_handle": "0x0186", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0077", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #115", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0107", "l2_cache_handle": "0x0187", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0078", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #116", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0108", "l2_cache_handle": "0x0188", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0079", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #117", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0109", "l2_cache_handle": "0x0189", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #118", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010A", "l2_cache_handle": "0x018A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #119", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010B", "l2_cache_handle": "0x018B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #120", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010C", "l2_cache_handle": "0x018C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #121", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010D", "l2_cache_handle": "0x018D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #122", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010E", "l2_cache_handle": "0x018E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #123", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010F", "l2_cache_handle": "0x018F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0080", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #124", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0110", "l2_cache_handle": "0x0190", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0081", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #125", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0111", "l2_cache_handle": "0x0191", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0082", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #126", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0112", "l2_cache_handle": "0x0192", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0083", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #127", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0113", "l2_cache_handle": "0x0193", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0084", "type": 5, "bytes": 46, "description": "Memory Controller Information", "values": {"error_detecting_method": "None", "error_correcting_capabilities": ["None"], "supported_interleave": "One-way Interleave", "current_interleave": "One-way Interleave", "maximum_memory_module_size": "32768 MB", "maximum_total_memory_size": "491520 MB", "supported_speeds": ["70 ns", "60 ns"], "supported_memory_types": ["FPM", "EDO", "DIMM", "SDRAM"], "memory_module_voltage": "3.3 V", "associated_memory_slots": "15", "associated_memory_slots_data": ["0x0006", "0x0007", "0x0008", "0x0009", "0x000A", "0x000B", "0x000C", "0x000D", "0x000E", "0x000F", "0x0010", "0x0011", "0x0012", "0x0013", "0x0014"], "enabled_error_correcting_capabilities": ["None"]}}, {"handle": "0x0085", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #0", "bank_connections": "None", "current_speed": "Unknown", "type": "EDO DIMM", "installed_size": "4096 MB (Single-bank Connection)", "enabled_size": "4096 MB (Single-bank Connection)", "error_status": "OK"}}, {"handle": "0x0086", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #1", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0087", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #2", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0088", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #3", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0089", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #4", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008A", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #5", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008B", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #6", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008C", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #7", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008D", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #8", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008E", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #9", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008F", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #10", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0090", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #11", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0091", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #12", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0092", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #13", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0093", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #14", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0094", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0095", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0096", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0097", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0098", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0099", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00ED", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0100", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0101", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0102", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0103", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0104", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0105", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0106", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0107", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0108", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0109", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0110", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0111", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0112", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0113", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0114", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0115", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0116", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0117", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0118", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0119", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0120", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0121", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0122", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0123", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0124", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0125", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0126", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0127", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0128", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0129", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0130", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0131", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0132", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0133", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0134", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0135", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0136", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0137", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0138", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0139", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0140", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0141", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0142", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0143", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0144", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0145", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0146", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0147", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0148", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0149", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0150", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0151", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0152", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0153", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0154", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0155", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0156", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0157", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0158", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0159", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0160", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0161", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0162", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0163", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0164", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0165", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0166", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0167", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0168", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0169", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0170", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0171", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0172", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0173", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0174", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0175", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0176", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0177", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0178", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0179", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0180", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0181", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0182", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0183", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0184", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0185", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0186", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0187", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0188", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0189", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0190", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0191", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0192", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0193", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24 MB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0194", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J19", "internal_connector_type": "9 Pin Dual Inline (pin 10 cut)", "external_reference_designator": "COM 1", "external_connector_type": "DB-9 male", "port_type": "Serial Port 16550A Compatible"}}, {"handle": "0x0195", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J23", "internal_connector_type": "25 Pin Dual Inline (pin 26 cut)", "external_reference_designator": "Parallel", "external_connector_type": "DB-25 female", "port_type": "Parallel Port ECP/EPP"}}, {"handle": "0x0196", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J11", "internal_connector_type": "None", "external_reference_designator": "Keyboard", "external_connector_type": "Circular DIN-8 male", "port_type": "Keyboard Port"}}, {"handle": "0x0197", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J12", "internal_connector_type": "None", "external_reference_designator": "PS/2 Mouse", "external_connector_type": "Circular DIN-8 male", "port_type": "Keyboard Port"}}, {"handle": "0x0198", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "ISA Slot J8", "type": "16-bit ISA", "current_usage": "Unknown", "length": "Short", "characteristics": ["5.0 V is provided"], "bus_address": "00ff:ff:1f.7"}}, {"handle": "0x0199", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "ISA Slot J9", "type": "16-bit ISA", "current_usage": "Unknown", "length": "Short", "characteristics": ["5.0 V is provided"], "bus_address": "00ff:ff:1f.7"}}, {"handle": "0x019A", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "ISA Slot J10", "type": "16-bit ISA", "current_usage": "Unknown", "length": "Short", "characteristics": ["5.0 V is provided"], "bus_address": "00ff:ff:1f.7"}}, {"handle": "0x019B", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J11", "type": "32-bit PCI", "current_usage": "In Use", "length": "Long", "id": "1", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:0f.0"}}, {"handle": "0x019C", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J12", "type": "32-bit PCI", "current_usage": "In Use", "length": "Long", "id": "2", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:10.0"}}, {"handle": "0x019D", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J13", "type": "32-bit PCI", "current_usage": "In Use", "length": "Long", "id": "3", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:11.0"}}, {"handle": "0x019E", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J14", "type": "32-bit PCI", "current_usage": "Available", "length": "Long", "id": "4", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:12.0"}}, {"handle": "0x019F", "type": 10, "bytes": 8, "description": "On Board Device 1 Information", "values": {"type": "Video", "status": "Disabled", "description": "VMware SVGA II"}}, {"handle": "0x019F", "type": 10, "bytes": 8, "description": "On Board Device 2 Information", "values": {"type": "Sound", "status": "Disabled", "description": "ES1371"}}, {"handle": "0x01A0", "type": 11, "bytes": 5, "description": "OEM Strings", "values": {"string_1": "[MS_VM_CERT/SHA1/27d66596a61c48dd3dc7216fd715126e33f59ae7]", "string_2": "Welcome to the Virtual Machine"}}, {"handle": "0x01A1", "type": 15, "bytes": 29, "description": "System Event Log", "values": {"area_length": "16 bytes", "header_start_offset": "0x0000", "header_length": "16 bytes", "data_start_offset": "0x0010", "access_method": "General-purpose non-volatile data functions", "access_address": "0x0000", "status": "Invalid, Full", "change_token": "0x00000036", "header_format": "Type 1", "supported_log_type_descriptors": "3", "descriptor_1": "POST error", "data_format_1": "POST results bitmap", "descriptor_2": "Single-bit ECC memory error", "data_format_2": "Multiple-event", "descriptor_3": "Multi-bit ECC memory error", "data_format_3": "Multiple-event"}}, {"handle": "0x01A2", "type": 16, "bytes": 23, "description": "Physical Memory Array", "values": {"location": "System Board Or Motherboard", "use": "System Memory", "error_correction_type": "None", "maximum_capacity": "65 GB", "error_information_handle": "Not Provided", "number_of_devices": "64"}}, {"handle": "0x01A3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "4 GB", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #0", "bank_locator": "RAM slot #0", "type": "DRAM", "type_detail": "EDO", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #1", "bank_locator": "RAM slot #1", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #2", "bank_locator": "RAM slot #2", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #3", "bank_locator": "RAM slot #3", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #4", "bank_locator": "RAM slot #4", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #5", "bank_locator": "RAM slot #5", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01A9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #6", "bank_locator": "RAM slot #6", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #7", "bank_locator": "RAM slot #7", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #8", "bank_locator": "RAM slot #8", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #9", "bank_locator": "RAM slot #9", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #10", "bank_locator": "RAM slot #10", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #11", "bank_locator": "RAM slot #11", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01AF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #12", "bank_locator": "RAM slot #12", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #13", "bank_locator": "RAM slot #13", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #14", "bank_locator": "RAM slot #14", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #15", "bank_locator": "RAM slot #15", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #16", "bank_locator": "RAM slot #16", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #17", "bank_locator": "RAM slot #17", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #18", "bank_locator": "RAM slot #18", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #19", "bank_locator": "RAM slot #19", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #20", "bank_locator": "RAM slot #20", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #21", "bank_locator": "RAM slot #21", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01B9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #22", "bank_locator": "RAM slot #22", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #23", "bank_locator": "RAM slot #23", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #24", "bank_locator": "RAM slot #24", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #25", "bank_locator": "RAM slot #25", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #26", "bank_locator": "RAM slot #26", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #27", "bank_locator": "RAM slot #27", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01BF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #28", "bank_locator": "RAM slot #28", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #29", "bank_locator": "RAM slot #29", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #30", "bank_locator": "RAM slot #30", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #31", "bank_locator": "RAM slot #31", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #32", "bank_locator": "RAM slot #32", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #33", "bank_locator": "RAM slot #33", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #34", "bank_locator": "RAM slot #34", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #35", "bank_locator": "RAM slot #35", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #36", "bank_locator": "RAM slot #36", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #37", "bank_locator": "RAM slot #37", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01C9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #38", "bank_locator": "RAM slot #38", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #39", "bank_locator": "RAM slot #39", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #40", "bank_locator": "RAM slot #40", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #41", "bank_locator": "RAM slot #41", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #42", "bank_locator": "RAM slot #42", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #43", "bank_locator": "RAM slot #43", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01CF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #44", "bank_locator": "RAM slot #44", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #45", "bank_locator": "RAM slot #45", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #46", "bank_locator": "RAM slot #46", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #47", "bank_locator": "RAM slot #47", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #48", "bank_locator": "RAM slot #48", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #49", "bank_locator": "RAM slot #49", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #50", "bank_locator": "RAM slot #50", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #51", "bank_locator": "RAM slot #51", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #52", "bank_locator": "RAM slot #52", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #53", "bank_locator": "RAM slot #53", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01D9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #54", "bank_locator": "RAM slot #54", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #55", "bank_locator": "RAM slot #55", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #56", "bank_locator": "RAM slot #56", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #57", "bank_locator": "RAM slot #57", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #58", "bank_locator": "RAM slot #58", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #59", "bank_locator": "RAM slot #59", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01DF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #60", "bank_locator": "RAM slot #60", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #61", "bank_locator": "RAM slot #61", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #62", "bank_locator": "RAM slot #62", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #63", "bank_locator": "RAM slot #63", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #0", "bank_locator": "NVD #0", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #1", "bank_locator": "NVD #1", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #2", "bank_locator": "NVD #2", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #3", "bank_locator": "NVD #3", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #4", "bank_locator": "NVD #4", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #5", "bank_locator": "NVD #5", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01E9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #6", "bank_locator": "NVD #6", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01EA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #7", "bank_locator": "NVD #7", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01EB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #8", "bank_locator": "NVD #8", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01EC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #9", "bank_locator": "NVD #9", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01ED", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #10", "bank_locator": "NVD #10", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01EE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #11", "bank_locator": "NVD #11", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01EF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #12", "bank_locator": "NVD #12", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #13", "bank_locator": "NVD #13", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #14", "bank_locator": "NVD #14", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #15", "bank_locator": "NVD #15", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #16", "bank_locator": "NVD #16", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #17", "bank_locator": "NVD #17", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #18", "bank_locator": "NVD #18", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #19", "bank_locator": "NVD #19", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #20", "bank_locator": "NVD #20", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #21", "bank_locator": "NVD #21", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01F9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #22", "bank_locator": "NVD #22", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #23", "bank_locator": "NVD #23", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #24", "bank_locator": "NVD #24", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #25", "bank_locator": "NVD #25", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #26", "bank_locator": "NVD #26", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #27", "bank_locator": "NVD #27", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x01FF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #28", "bank_locator": "NVD #28", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0200", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #29", "bank_locator": "NVD #29", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0201", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #30", "bank_locator": "NVD #30", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0202", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #31", "bank_locator": "NVD #31", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0203", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #32", "bank_locator": "NVD #32", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0204", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #33", "bank_locator": "NVD #33", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0205", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #34", "bank_locator": "NVD #34", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0206", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #35", "bank_locator": "NVD #35", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0207", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #36", "bank_locator": "NVD #36", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0208", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #37", "bank_locator": "NVD #37", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0209", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #38", "bank_locator": "NVD #38", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020A", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #39", "bank_locator": "NVD #39", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020B", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #40", "bank_locator": "NVD #40", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020C", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #41", "bank_locator": "NVD #41", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020D", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #42", "bank_locator": "NVD #42", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020E", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #43", "bank_locator": "NVD #43", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x020F", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #44", "bank_locator": "NVD #44", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0210", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #45", "bank_locator": "NVD #45", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0211", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #46", "bank_locator": "NVD #46", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0212", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #47", "bank_locator": "NVD #47", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0213", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #48", "bank_locator": "NVD #48", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0214", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #49", "bank_locator": "NVD #49", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0215", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #50", "bank_locator": "NVD #50", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0216", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #51", "bank_locator": "NVD #51", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0217", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #52", "bank_locator": "NVD #52", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0218", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #53", "bank_locator": "NVD #53", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0219", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #54", "bank_locator": "NVD #54", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021A", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #55", "bank_locator": "NVD #55", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021B", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #56", "bank_locator": "NVD #56", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021C", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #57", "bank_locator": "NVD #57", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021D", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #58", "bank_locator": "NVD #58", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021E", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #59", "bank_locator": "NVD #59", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x021F", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #60", "bank_locator": "NVD #60", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0220", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #61", "bank_locator": "NVD #61", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0221", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #62", "bank_locator": "NVD #62", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0222", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #63", "bank_locator": "NVD #63", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_memory_speed": "Unknown"}}, {"handle": "0x0223", "type": 18, "bytes": 23, "description": "32-bit Memory Error Information", "values": {"type": "OK", "granularity": "Unknown", "operation": "Unknown", "vendor_syndrome": "Unknown", "memory_array_address": "Unknown", "device_address": "Unknown", "resolution": "Unknown"}}, {"handle": "0x0224", "type": 19, "bytes": 31, "description": "Memory Array Mapped Address", "values": {"starting_address": "0x00000000000", "ending_address": "0x000FFFFFFFF", "range_size": "4 GB", "physical_array_handle": "0x0025", "partition_width": "64"}}, {"handle": "0x0225", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0026", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0226", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0027", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0227", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0028", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0228", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0029", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0229", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0030", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0230", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0031", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0231", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0032", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0232", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0033", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0233", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0034", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0234", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0035", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0235", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0036", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0236", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0037", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0237", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0038", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0238", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0039", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0239", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0040", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0240", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0041", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0241", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0042", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0242", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0043", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0243", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0044", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0244", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0045", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0245", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0046", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0246", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0047", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0247", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0048", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0248", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0049", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0249", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0050", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0250", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0051", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0251", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0052", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0252", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0053", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0253", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0054", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0254", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0055", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0255", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0056", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0256", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0057", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0257", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0058", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0258", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0059", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0259", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0060", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0260", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0061", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0261", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0062", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0262", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0063", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0263", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0064", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0264", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00100000000", "ending_address": "0x010BFEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0065", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0265", "type": 23, "bytes": 13, "description": "System Reset", "values": {"status": "Enabled", "watchdog_timer": "Present", "boot_option": "Do Not Reboot", "boot_option_on_limit": "Do Not Reboot", "reset_count": "Unknown", "reset_limit": "Unknown", "timer_interval": "Unknown", "timeout": "Unknown"}}, {"handle": "0x0266", "type": 24, "bytes": 5, "description": "Hardware Security", "values": {"power-on_password_status": "Disabled", "keyboard_password_status": "Unknown", "administrator_password_status": "Enabled", "front_panel_reset_status": "Unknown"}}, {"handle": "0x0267", "type": 30, "bytes": 6, "description": "Out-of-band Remote Access", "values": {"manufacturer_name": "Intel", "inbound_connection": "Enabled", "outbound_connection": "Disabled"}}, {"handle": "0x0268", "type": 32, "bytes": 20, "description": "System Boot Information", "values": {"status": "No errors detected"}}, {"handle": "0x0269", "type": 33, "bytes": 31, "description": "64-bit Memory Error Information", "values": {"type": "OK", "granularity": "Unknown", "operation": "Unknown", "vendor_syndrome": "Unknown", "memory_array_address": "Unknown", "device_address": "Unknown", "resolution": "Unknown"}}, {"handle": "0x026A", "type": 126, "bytes": 4, "description": "Inactive", "values": null}, {"handle": "0x026B", "type": 127, "bytes": 4, "description": "End Of Table", "values": null}] jc-1.17.3/tests/fixtures/fedora32/dmidecode.out000066400000000000000000010354451415226333200213020ustar00rootroot00000000000000# dmidecode 3.2 Getting SMBIOS data from sysfs. SMBIOS 2.7 present. 620 structures occupying 29060 bytes. Table at 0x000E0010. Handle 0x0000, DMI type 0, 24 bytes BIOS Information Vendor: Phoenix Technologies LTD Version: 6.00 Release Date: 04/13/2018 Address: 0xEA490 Runtime Size: 88944 bytes ROM Size: 64 kB Characteristics: ISA is supported PCI is supported PC Card (PCMCIA) is supported PNP is supported APM is supported BIOS is upgradeable BIOS shadowing is allowed ESCD support is available Boot from CD is supported Selectable boot is supported EDD is supported Print screen service is supported (int 5h) 8042 keyboard services are supported (int 9h) Serial services are supported (int 14h) Printer services are supported (int 17h) CGA/mono video services are supported (int 10h) ACPI is supported Smart battery is supported BIOS boot specification is supported Function key-initiated network boot is supported Targeted content distribution is supported BIOS Revision: 4.6 Firmware Revision: 0.0 Handle 0x0001, DMI type 1, 27 bytes System Information Manufacturer: VMware, Inc. Product Name: VMware Virtual Platform Version: None Serial Number: VMware-56 4d bf 23 01 aa 4e 9f-c3 92 24 bd 7b 66 16 68 UUID: 23bf4d56-aa01-9f4e-c392-24bd7b661668 Wake-up Type: Power Switch SKU Number: Not Specified Family: Not Specified Handle 0x0002, DMI type 2, 15 bytes Base Board Information Manufacturer: Intel Corporation Product Name: 440BX Desktop Reference Platform Version: None Serial Number: None Asset Tag: Not Specified Features: None Location In Chassis: Not Specified Chassis Handle: 0x0000 Type: Unknown Contained Object Handles: 0 Handle 0x0003, DMI type 3, 21 bytes Chassis Information Manufacturer: No Enclosure Type: Other Lock: Not Present Version: N/A Serial Number: None Asset Tag: No Asset Tag Boot-up State: Safe Power Supply State: Safe Thermal State: Safe Security Status: None OEM Information: 0x00001234 Height: Unspecified Number Of Power Cords: Unspecified Contained Elements: 0 Handle 0x0004, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #000 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 08 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Enabled Upgrade: ZIF Socket L1 Cache Handle: 0x0094 L2 Cache Handle: 0x0114 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0005, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #001 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0095 L2 Cache Handle: 0x0115 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0006, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #002 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0096 L2 Cache Handle: 0x0116 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0007, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #003 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0097 L2 Cache Handle: 0x0117 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0008, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #004 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0098 L2 Cache Handle: 0x0118 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0009, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #005 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0099 L2 Cache Handle: 0x0119 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x000A, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #006 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x009A L2 Cache Handle: 0x011A L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x000B, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #007 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x009B L2 Cache Handle: 0x011B L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x000C, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #008 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x009C L2 Cache Handle: 0x011C L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x000D, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #009 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x009D L2 Cache Handle: 0x011D L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x000E, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #010 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x009E L2 Cache Handle: 0x011E L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x000F, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #011 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x009F L2 Cache Handle: 0x011F L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0010, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #012 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00A0 L2 Cache Handle: 0x0120 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0011, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #013 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00A1 L2 Cache Handle: 0x0121 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0012, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #014 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00A2 L2 Cache Handle: 0x0122 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0013, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #015 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00A3 L2 Cache Handle: 0x0123 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0014, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #016 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00A4 L2 Cache Handle: 0x0124 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0015, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #017 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00A5 L2 Cache Handle: 0x0125 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0016, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #018 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00A6 L2 Cache Handle: 0x0126 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0017, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #019 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00A7 L2 Cache Handle: 0x0127 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0018, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #020 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00A8 L2 Cache Handle: 0x0128 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0019, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #021 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00A9 L2 Cache Handle: 0x0129 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x001A, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #022 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00AA L2 Cache Handle: 0x012A L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x001B, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #023 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00AB L2 Cache Handle: 0x012B L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x001C, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #024 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00AC L2 Cache Handle: 0x012C L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x001D, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #025 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00AD L2 Cache Handle: 0x012D L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x001E, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #026 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00AE L2 Cache Handle: 0x012E L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x001F, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #027 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00AF L2 Cache Handle: 0x012F L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0020, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #028 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00B0 L2 Cache Handle: 0x0130 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0021, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #029 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00B1 L2 Cache Handle: 0x0131 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0022, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #030 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00B2 L2 Cache Handle: 0x0132 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0023, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #031 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00B3 L2 Cache Handle: 0x0133 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0024, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #032 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00B4 L2 Cache Handle: 0x0134 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0025, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #033 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00B5 L2 Cache Handle: 0x0135 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0026, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #034 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00B6 L2 Cache Handle: 0x0136 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0027, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #035 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00B7 L2 Cache Handle: 0x0137 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0028, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #036 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00B8 L2 Cache Handle: 0x0138 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0029, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #037 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00B9 L2 Cache Handle: 0x0139 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x002A, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #038 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00BA L2 Cache Handle: 0x013A L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x002B, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #039 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00BB L2 Cache Handle: 0x013B L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x002C, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #040 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00BC L2 Cache Handle: 0x013C L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x002D, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #041 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00BD L2 Cache Handle: 0x013D L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x002E, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #042 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00BE L2 Cache Handle: 0x013E L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x002F, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #043 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00BF L2 Cache Handle: 0x013F L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0030, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #044 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00C0 L2 Cache Handle: 0x0140 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0031, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #045 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00C1 L2 Cache Handle: 0x0141 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0032, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #046 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00C2 L2 Cache Handle: 0x0142 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0033, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #047 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00C3 L2 Cache Handle: 0x0143 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0034, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #048 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00C4 L2 Cache Handle: 0x0144 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0035, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #049 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00C5 L2 Cache Handle: 0x0145 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0036, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #050 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00C6 L2 Cache Handle: 0x0146 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0037, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #051 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00C7 L2 Cache Handle: 0x0147 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0038, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #052 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00C8 L2 Cache Handle: 0x0148 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0039, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #053 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00C9 L2 Cache Handle: 0x0149 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x003A, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #054 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00CA L2 Cache Handle: 0x014A L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x003B, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #055 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00CB L2 Cache Handle: 0x014B L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x003C, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #056 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00CC L2 Cache Handle: 0x014C L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x003D, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #057 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00CD L2 Cache Handle: 0x014D L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x003E, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #058 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00CE L2 Cache Handle: 0x014E L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x003F, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #059 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00CF L2 Cache Handle: 0x014F L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0040, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #060 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00D0 L2 Cache Handle: 0x0150 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0041, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #061 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00D1 L2 Cache Handle: 0x0151 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0042, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #062 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00D2 L2 Cache Handle: 0x0152 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0043, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #063 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00D3 L2 Cache Handle: 0x0153 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0044, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #064 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00D4 L2 Cache Handle: 0x0154 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0045, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #065 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00D5 L2 Cache Handle: 0x0155 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0046, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #066 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00D6 L2 Cache Handle: 0x0156 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0047, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #067 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00D7 L2 Cache Handle: 0x0157 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0048, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #068 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00D8 L2 Cache Handle: 0x0158 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0049, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #069 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00D9 L2 Cache Handle: 0x0159 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x004A, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #070 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00DA L2 Cache Handle: 0x015A L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x004B, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #071 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00DB L2 Cache Handle: 0x015B L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x004C, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #072 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00DC L2 Cache Handle: 0x015C L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x004D, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #073 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00DD L2 Cache Handle: 0x015D L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x004E, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #074 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00DE L2 Cache Handle: 0x015E L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x004F, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #075 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00DF L2 Cache Handle: 0x015F L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0050, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #076 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00E0 L2 Cache Handle: 0x0160 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0051, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #077 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00E1 L2 Cache Handle: 0x0161 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0052, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #078 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00E2 L2 Cache Handle: 0x0162 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0053, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #079 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00E3 L2 Cache Handle: 0x0163 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0054, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #080 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00E4 L2 Cache Handle: 0x0164 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0055, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #081 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00E5 L2 Cache Handle: 0x0165 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0056, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #082 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00E6 L2 Cache Handle: 0x0166 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0057, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #083 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00E7 L2 Cache Handle: 0x0167 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0058, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #084 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00E8 L2 Cache Handle: 0x0168 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0059, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #085 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00E9 L2 Cache Handle: 0x0169 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x005A, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #086 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00EA L2 Cache Handle: 0x016A L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x005B, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #087 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00EB L2 Cache Handle: 0x016B L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x005C, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #088 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00EC L2 Cache Handle: 0x016C L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x005D, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #089 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00ED L2 Cache Handle: 0x016D L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x005E, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #090 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00EE L2 Cache Handle: 0x016E L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x005F, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #091 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00EF L2 Cache Handle: 0x016F L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0060, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #092 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00F0 L2 Cache Handle: 0x0170 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0061, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #093 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00F1 L2 Cache Handle: 0x0171 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0062, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #094 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00F2 L2 Cache Handle: 0x0172 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0063, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #095 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00F3 L2 Cache Handle: 0x0173 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0064, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #096 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00F4 L2 Cache Handle: 0x0174 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0065, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #097 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00F5 L2 Cache Handle: 0x0175 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0066, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #098 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00F6 L2 Cache Handle: 0x0176 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0067, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #099 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00F7 L2 Cache Handle: 0x0177 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0068, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #100 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00F8 L2 Cache Handle: 0x0178 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0069, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #101 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00F9 L2 Cache Handle: 0x0179 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x006A, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #102 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00FA L2 Cache Handle: 0x017A L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x006B, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #103 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00FB L2 Cache Handle: 0x017B L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x006C, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #104 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00FC L2 Cache Handle: 0x017C L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x006D, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #105 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00FD L2 Cache Handle: 0x017D L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x006E, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #106 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00FE L2 Cache Handle: 0x017E L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x006F, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #107 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00FF L2 Cache Handle: 0x017F L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0070, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #108 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0100 L2 Cache Handle: 0x0180 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0071, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #109 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0101 L2 Cache Handle: 0x0181 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0072, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #110 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0102 L2 Cache Handle: 0x0182 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0073, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #111 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0103 L2 Cache Handle: 0x0183 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0074, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #112 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0104 L2 Cache Handle: 0x0184 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0075, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #113 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0105 L2 Cache Handle: 0x0185 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0076, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #114 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0106 L2 Cache Handle: 0x0186 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0077, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #115 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0107 L2 Cache Handle: 0x0187 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0078, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #116 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0108 L2 Cache Handle: 0x0188 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0079, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #117 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0109 L2 Cache Handle: 0x0189 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x007A, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #118 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x010A L2 Cache Handle: 0x018A L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x007B, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #119 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x010B L2 Cache Handle: 0x018B L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x007C, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #120 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x010C L2 Cache Handle: 0x018C L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x007D, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #121 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x010D L2 Cache Handle: 0x018D L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x007E, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #122 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x010E L2 Cache Handle: 0x018E L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x007F, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #123 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x010F L2 Cache Handle: 0x018F L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0080, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #124 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0110 L2 Cache Handle: 0x0190 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0081, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #125 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0111 L2 Cache Handle: 0x0191 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0082, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #126 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0112 L2 Cache Handle: 0x0192 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0083, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #127 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0113 L2 Cache Handle: 0x0193 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0084, DMI type 5, 46 bytes Memory Controller Information Error Detecting Method: None Error Correcting Capabilities: None Supported Interleave: One-way Interleave Current Interleave: One-way Interleave Maximum Memory Module Size: 32768 MB Maximum Total Memory Size: 491520 MB Supported Speeds: 70 ns 60 ns Supported Memory Types: FPM EDO DIMM SDRAM Memory Module Voltage: 3.3 V Associated Memory Slots: 15 0x0006 0x0007 0x0008 0x0009 0x000A 0x000B 0x000C 0x000D 0x000E 0x000F 0x0010 0x0011 0x0012 0x0013 0x0014 Enabled Error Correcting Capabilities: None Handle 0x0085, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #0 Bank Connections: None Current Speed: Unknown Type: EDO DIMM Installed Size: 4096 MB (Single-bank Connection) Enabled Size: 4096 MB (Single-bank Connection) Error Status: OK Handle 0x0086, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #1 Bank Connections: None Current Speed: Unknown Type: DIMM Installed Size: Not Installed Enabled Size: Not Installed Error Status: OK Handle 0x0087, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #2 Bank Connections: None Current Speed: Unknown Type: DIMM Installed Size: Not Installed Enabled Size: Not Installed Error Status: OK Handle 0x0088, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #3 Bank Connections: None Current Speed: Unknown Type: DIMM Installed Size: Not Installed Enabled Size: Not Installed Error Status: OK Handle 0x0089, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #4 Bank Connections: None Current Speed: Unknown Type: DIMM Installed Size: Not Installed Enabled Size: Not Installed Error Status: OK Handle 0x008A, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #5 Bank Connections: None Current Speed: Unknown Type: DIMM Installed Size: Not Installed Enabled Size: Not Installed Error Status: OK Handle 0x008B, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #6 Bank Connections: None Current Speed: Unknown Type: DIMM Installed Size: Not Installed Enabled Size: Not Installed Error Status: OK Handle 0x008C, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #7 Bank Connections: None Current Speed: Unknown Type: DIMM Installed Size: Not Installed Enabled Size: Not Installed Error Status: OK Handle 0x008D, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #8 Bank Connections: None Current Speed: Unknown Type: DIMM Installed Size: Not Installed Enabled Size: Not Installed Error Status: OK Handle 0x008E, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #9 Bank Connections: None Current Speed: Unknown Type: DIMM Installed Size: Not Installed Enabled Size: Not Installed Error Status: OK Handle 0x008F, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #10 Bank Connections: None Current Speed: Unknown Type: DIMM Installed Size: Not Installed Enabled Size: Not Installed Error Status: OK Handle 0x0090, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #11 Bank Connections: None Current Speed: Unknown Type: DIMM Installed Size: Not Installed Enabled Size: Not Installed Error Status: OK Handle 0x0091, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #12 Bank Connections: None Current Speed: Unknown Type: DIMM Installed Size: Not Installed Enabled Size: Not Installed Error Status: OK Handle 0x0092, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #13 Bank Connections: None Current Speed: Unknown Type: DIMM Installed Size: Not Installed Enabled Size: Not Installed Error Status: OK Handle 0x0093, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #14 Bank Connections: None Current Speed: Unknown Type: DIMM Installed Size: Not Installed Enabled Size: Not Installed Error Status: OK Handle 0x0094, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0095, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0096, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0097, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0098, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0099, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x009A, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x009B, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x009C, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x009D, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x009E, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x009F, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00A0, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00A1, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00A2, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00A3, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00A4, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00A5, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00A6, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00A7, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00A8, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00A9, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00AA, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00AB, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00AC, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00AD, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00AE, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00AF, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00B0, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00B1, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00B2, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00B3, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00B4, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00B5, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00B6, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00B7, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00B8, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00B9, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00BA, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00BB, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00BC, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00BD, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00BE, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00BF, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00C0, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00C1, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00C2, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00C3, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00C4, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00C5, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00C6, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00C7, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00C8, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00C9, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00CA, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00CB, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00CC, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00CD, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00CE, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00CF, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00D0, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00D1, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00D2, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00D3, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00D4, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00D5, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00D6, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00D7, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00D8, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00D9, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00DA, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00DB, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00DC, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00DD, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00DE, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00DF, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00E0, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00E1, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00E2, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00E3, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00E4, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00E5, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00E6, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00E7, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00E8, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00E9, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00EA, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00EB, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00EC, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00ED, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00EE, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00EF, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00F0, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00F1, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00F2, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00F3, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00F4, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00F5, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00F6, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00F7, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00F8, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00F9, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00FA, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00FB, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00FC, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00FD, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00FE, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00FF, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0100, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0101, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0102, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0103, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0104, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0105, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0106, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0107, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0108, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0109, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x010A, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x010B, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x010C, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x010D, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x010E, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x010F, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0110, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0111, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0112, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0113, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0114, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0115, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0116, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0117, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0118, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0119, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x011A, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x011B, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x011C, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x011D, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x011E, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x011F, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0120, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0121, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0122, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0123, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0124, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0125, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0126, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0127, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0128, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0129, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x012A, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x012B, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x012C, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x012D, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x012E, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x012F, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0130, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0131, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0132, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0133, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0134, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0135, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0136, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0137, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0138, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0139, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x013A, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x013B, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x013C, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x013D, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x013E, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x013F, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0140, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0141, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0142, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0143, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0144, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0145, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0146, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0147, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0148, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0149, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x014A, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x014B, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x014C, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x014D, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x014E, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x014F, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0150, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0151, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0152, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0153, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0154, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0155, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0156, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0157, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0158, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0159, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x015A, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x015B, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x015C, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x015D, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x015E, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x015F, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0160, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0161, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0162, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0163, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0164, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0165, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0166, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0167, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0168, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0169, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x016A, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x016B, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x016C, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x016D, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x016E, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x016F, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0170, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0171, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0172, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0173, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0174, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0175, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0176, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0177, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0178, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0179, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x017A, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x017B, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x017C, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x017D, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x017E, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x017F, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0180, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0181, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0182, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0183, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0184, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0185, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0186, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0187, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0188, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0189, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x018A, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x018B, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x018C, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x018D, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x018E, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x018F, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0190, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0191, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0192, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0193, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24 MB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0194, DMI type 8, 9 bytes Port Connector Information Internal Reference Designator: J19 Internal Connector Type: 9 Pin Dual Inline (pin 10 cut) External Reference Designator: COM 1 External Connector Type: DB-9 male Port Type: Serial Port 16550A Compatible Handle 0x0195, DMI type 8, 9 bytes Port Connector Information Internal Reference Designator: J23 Internal Connector Type: 25 Pin Dual Inline (pin 26 cut) External Reference Designator: Parallel External Connector Type: DB-25 female Port Type: Parallel Port ECP/EPP Handle 0x0196, DMI type 8, 9 bytes Port Connector Information Internal Reference Designator: J11 Internal Connector Type: None External Reference Designator: Keyboard External Connector Type: Circular DIN-8 male Port Type: Keyboard Port Handle 0x0197, DMI type 8, 9 bytes Port Connector Information Internal Reference Designator: J12 Internal Connector Type: None External Reference Designator: PS/2 Mouse External Connector Type: Circular DIN-8 male Port Type: Keyboard Port Handle 0x0198, DMI type 9, 17 bytes System Slot Information Designation: ISA Slot J8 Type: 16-bit ISA Current Usage: Unknown Length: Short Characteristics: 5.0 V is provided Bus Address: 00ff:ff:1f.7 Handle 0x0199, DMI type 9, 17 bytes System Slot Information Designation: ISA Slot J9 Type: 16-bit ISA Current Usage: Unknown Length: Short Characteristics: 5.0 V is provided Bus Address: 00ff:ff:1f.7 Handle 0x019A, DMI type 9, 17 bytes System Slot Information Designation: ISA Slot J10 Type: 16-bit ISA Current Usage: Unknown Length: Short Characteristics: 5.0 V is provided Bus Address: 00ff:ff:1f.7 Handle 0x019B, DMI type 9, 17 bytes System Slot Information Designation: PCI Slot J11 Type: 32-bit PCI Current Usage: In Use Length: Long ID: 1 Characteristics: 5.0 V is provided 3.3 V is provided Bus Address: 0000:00:0f.0 Handle 0x019C, DMI type 9, 17 bytes System Slot Information Designation: PCI Slot J12 Type: 32-bit PCI Current Usage: In Use Length: Long ID: 2 Characteristics: 5.0 V is provided 3.3 V is provided Bus Address: 0000:00:10.0 Handle 0x019D, DMI type 9, 17 bytes System Slot Information Designation: PCI Slot J13 Type: 32-bit PCI Current Usage: In Use Length: Long ID: 3 Characteristics: 5.0 V is provided 3.3 V is provided Bus Address: 0000:00:11.0 Handle 0x019E, DMI type 9, 17 bytes System Slot Information Designation: PCI Slot J14 Type: 32-bit PCI Current Usage: Available Length: Long ID: 4 Characteristics: 5.0 V is provided 3.3 V is provided Bus Address: 0000:00:12.0 Handle 0x019F, DMI type 10, 8 bytes On Board Device 1 Information Type: Video Status: Disabled Description: VMware SVGA II On Board Device 2 Information Type: Sound Status: Disabled Description: ES1371 Handle 0x01A0, DMI type 11, 5 bytes OEM Strings String 1: [MS_VM_CERT/SHA1/27d66596a61c48dd3dc7216fd715126e33f59ae7] String 2: Welcome to the Virtual Machine Handle 0x01A1, DMI type 15, 29 bytes System Event Log Area Length: 16 bytes Header Start Offset: 0x0000 Header Length: 16 bytes Data Start Offset: 0x0010 Access Method: General-purpose non-volatile data functions Access Address: 0x0000 Status: Invalid, Full Change Token: 0x00000036 Header Format: Type 1 Supported Log Type Descriptors: 3 Descriptor 1: POST error Data Format 1: POST results bitmap Descriptor 2: Single-bit ECC memory error Data Format 2: Multiple-event Descriptor 3: Multi-bit ECC memory error Data Format 3: Multiple-event Handle 0x01A2, DMI type 16, 23 bytes Physical Memory Array Location: System Board Or Motherboard Use: System Memory Error Correction Type: None Maximum Capacity: 65 GB Error Information Handle: Not Provided Number Of Devices: 64 Handle 0x01A3, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: 4 GB Form Factor: DIMM Set: None Locator: RAM slot #0 Bank Locator: RAM slot #0 Type: DRAM Type Detail: EDO Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01A4, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #1 Bank Locator: RAM slot #1 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01A5, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #2 Bank Locator: RAM slot #2 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01A6, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #3 Bank Locator: RAM slot #3 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01A7, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #4 Bank Locator: RAM slot #4 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01A8, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #5 Bank Locator: RAM slot #5 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01A9, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #6 Bank Locator: RAM slot #6 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01AA, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #7 Bank Locator: RAM slot #7 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01AB, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #8 Bank Locator: RAM slot #8 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01AC, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #9 Bank Locator: RAM slot #9 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01AD, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #10 Bank Locator: RAM slot #10 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01AE, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #11 Bank Locator: RAM slot #11 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01AF, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #12 Bank Locator: RAM slot #12 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01B0, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #13 Bank Locator: RAM slot #13 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01B1, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #14 Bank Locator: RAM slot #14 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01B2, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #15 Bank Locator: RAM slot #15 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01B3, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #16 Bank Locator: RAM slot #16 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01B4, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #17 Bank Locator: RAM slot #17 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01B5, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #18 Bank Locator: RAM slot #18 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01B6, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #19 Bank Locator: RAM slot #19 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01B7, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #20 Bank Locator: RAM slot #20 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01B8, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #21 Bank Locator: RAM slot #21 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01B9, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #22 Bank Locator: RAM slot #22 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01BA, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #23 Bank Locator: RAM slot #23 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01BB, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #24 Bank Locator: RAM slot #24 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01BC, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #25 Bank Locator: RAM slot #25 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01BD, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #26 Bank Locator: RAM slot #26 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01BE, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #27 Bank Locator: RAM slot #27 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01BF, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #28 Bank Locator: RAM slot #28 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01C0, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #29 Bank Locator: RAM slot #29 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01C1, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #30 Bank Locator: RAM slot #30 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01C2, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #31 Bank Locator: RAM slot #31 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01C3, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #32 Bank Locator: RAM slot #32 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01C4, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #33 Bank Locator: RAM slot #33 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01C5, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #34 Bank Locator: RAM slot #34 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01C6, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #35 Bank Locator: RAM slot #35 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01C7, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #36 Bank Locator: RAM slot #36 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01C8, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #37 Bank Locator: RAM slot #37 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01C9, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #38 Bank Locator: RAM slot #38 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01CA, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #39 Bank Locator: RAM slot #39 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01CB, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #40 Bank Locator: RAM slot #40 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01CC, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #41 Bank Locator: RAM slot #41 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01CD, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #42 Bank Locator: RAM slot #42 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01CE, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #43 Bank Locator: RAM slot #43 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01CF, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #44 Bank Locator: RAM slot #44 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01D0, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #45 Bank Locator: RAM slot #45 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01D1, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #46 Bank Locator: RAM slot #46 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01D2, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #47 Bank Locator: RAM slot #47 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01D3, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #48 Bank Locator: RAM slot #48 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01D4, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #49 Bank Locator: RAM slot #49 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01D5, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #50 Bank Locator: RAM slot #50 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01D6, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #51 Bank Locator: RAM slot #51 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01D7, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #52 Bank Locator: RAM slot #52 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01D8, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #53 Bank Locator: RAM slot #53 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01D9, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #54 Bank Locator: RAM slot #54 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01DA, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #55 Bank Locator: RAM slot #55 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01DB, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #56 Bank Locator: RAM slot #56 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01DC, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #57 Bank Locator: RAM slot #57 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01DD, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #58 Bank Locator: RAM slot #58 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01DE, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #59 Bank Locator: RAM slot #59 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01DF, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #60 Bank Locator: RAM slot #60 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01E0, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #61 Bank Locator: RAM slot #61 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01E1, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #62 Bank Locator: RAM slot #62 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01E2, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #63 Bank Locator: RAM slot #63 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01E3, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #0 Bank Locator: NVD #0 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01E4, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #1 Bank Locator: NVD #1 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01E5, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #2 Bank Locator: NVD #2 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01E6, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #3 Bank Locator: NVD #3 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01E7, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #4 Bank Locator: NVD #4 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01E8, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #5 Bank Locator: NVD #5 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01E9, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #6 Bank Locator: NVD #6 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01EA, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #7 Bank Locator: NVD #7 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01EB, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #8 Bank Locator: NVD #8 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01EC, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #9 Bank Locator: NVD #9 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01ED, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #10 Bank Locator: NVD #10 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01EE, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #11 Bank Locator: NVD #11 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01EF, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #12 Bank Locator: NVD #12 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01F0, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #13 Bank Locator: NVD #13 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01F1, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #14 Bank Locator: NVD #14 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01F2, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #15 Bank Locator: NVD #15 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01F3, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #16 Bank Locator: NVD #16 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01F4, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #17 Bank Locator: NVD #17 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01F5, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #18 Bank Locator: NVD #18 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01F6, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #19 Bank Locator: NVD #19 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01F7, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #20 Bank Locator: NVD #20 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01F8, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #21 Bank Locator: NVD #21 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01F9, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #22 Bank Locator: NVD #22 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01FA, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #23 Bank Locator: NVD #23 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01FB, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #24 Bank Locator: NVD #24 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01FC, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #25 Bank Locator: NVD #25 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01FD, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #26 Bank Locator: NVD #26 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01FE, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #27 Bank Locator: NVD #27 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x01FF, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #28 Bank Locator: NVD #28 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0200, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #29 Bank Locator: NVD #29 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0201, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #30 Bank Locator: NVD #30 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0202, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #31 Bank Locator: NVD #31 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0203, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #32 Bank Locator: NVD #32 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0204, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #33 Bank Locator: NVD #33 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0205, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #34 Bank Locator: NVD #34 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0206, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #35 Bank Locator: NVD #35 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0207, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #36 Bank Locator: NVD #36 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0208, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #37 Bank Locator: NVD #37 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0209, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #38 Bank Locator: NVD #38 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x020A, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #39 Bank Locator: NVD #39 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x020B, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #40 Bank Locator: NVD #40 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x020C, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #41 Bank Locator: NVD #41 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x020D, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #42 Bank Locator: NVD #42 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x020E, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #43 Bank Locator: NVD #43 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x020F, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #44 Bank Locator: NVD #44 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0210, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #45 Bank Locator: NVD #45 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0211, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #46 Bank Locator: NVD #46 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0212, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #47 Bank Locator: NVD #47 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0213, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #48 Bank Locator: NVD #48 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0214, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #49 Bank Locator: NVD #49 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0215, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #50 Bank Locator: NVD #50 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0216, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #51 Bank Locator: NVD #51 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0217, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #52 Bank Locator: NVD #52 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0218, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #53 Bank Locator: NVD #53 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0219, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #54 Bank Locator: NVD #54 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x021A, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #55 Bank Locator: NVD #55 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x021B, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #56 Bank Locator: NVD #56 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x021C, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #57 Bank Locator: NVD #57 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x021D, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #58 Bank Locator: NVD #58 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x021E, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #59 Bank Locator: NVD #59 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x021F, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #60 Bank Locator: NVD #60 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0220, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #61 Bank Locator: NVD #61 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0221, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #62 Bank Locator: NVD #62 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0222, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #63 Bank Locator: NVD #63 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Handle 0x0223, DMI type 18, 23 bytes 32-bit Memory Error Information Type: OK Granularity: Unknown Operation: Unknown Vendor Syndrome: Unknown Memory Array Address: Unknown Device Address: Unknown Resolution: Unknown Handle 0x0224, DMI type 19, 31 bytes Memory Array Mapped Address Starting Address: 0x00000000000 Ending Address: 0x000FFFFFFFF Range Size: 4 GB Physical Array Handle: 0x0025 Partition Width: 64 Handle 0x0225, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0026 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0226, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0027 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0227, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0028 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0228, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0029 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0229, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x002A Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x022A, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x002B Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x022B, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x002C Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x022C, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x002D Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x022D, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x002E Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x022E, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x002F Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x022F, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0030 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0230, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0031 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0231, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0032 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0232, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0033 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0233, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0034 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0234, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0035 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0235, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0036 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0236, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0037 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0237, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0038 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0238, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0039 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0239, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x003A Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x023A, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x003B Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x023B, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x003C Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x023C, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x003D Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x023D, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x003E Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x023E, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x003F Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x023F, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0040 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0240, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0041 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0241, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0042 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0242, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0043 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0243, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0044 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0244, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0045 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0245, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0046 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0246, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0047 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0247, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0048 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0248, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0049 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0249, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x004A Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x024A, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x004B Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x024B, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x004C Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x024C, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x004D Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x024D, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x004E Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x024E, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x004F Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x024F, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0050 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0250, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0051 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0251, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0052 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0252, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0053 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0253, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0054 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0254, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0055 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0255, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0056 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0256, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0057 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0257, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0058 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0258, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0059 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0259, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x005A Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x025A, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x005B Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x025B, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x005C Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x025C, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x005D Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x025D, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x005E Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x025E, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x005F Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x025F, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0060 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0260, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0061 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0261, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0062 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0262, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0063 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0263, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0064 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0264, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00100000000 Ending Address: 0x010BFEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0065 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0265, DMI type 23, 13 bytes System Reset Status: Enabled Watchdog Timer: Present Boot Option: Do Not Reboot Boot Option On Limit: Do Not Reboot Reset Count: Unknown Reset Limit: Unknown Timer Interval: Unknown Timeout: Unknown Handle 0x0266, DMI type 24, 5 bytes Hardware Security Power-On Password Status: Disabled Keyboard Password Status: Unknown Administrator Password Status: Enabled Front Panel Reset Status: Unknown Handle 0x0267, DMI type 30, 6 bytes Out-of-band Remote Access Manufacturer Name: Intel Inbound Connection: Enabled Outbound Connection: Disabled Handle 0x0268, DMI type 32, 20 bytes System Boot Information Status: No errors detected Handle 0x0269, DMI type 33, 31 bytes 64-bit Memory Error Information Type: OK Granularity: Unknown Operation: Unknown Vendor Syndrome: Unknown Memory Array Address: Unknown Device Address: Unknown Resolution: Unknown Handle 0x026A, DMI type 126, 4 bytes Inactive Handle 0x026B, DMI type 127, 4 bytes End Of Table jc-1.17.3/tests/fixtures/fedora32/last.json000066400000000000000000000013661415226333200204640ustar00rootroot00000000000000[{"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Fri May 1 15:25", "logout": "gone - no logout"}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Fri May 1 15:24", "logout": "gone - no logout"}, {"user": "reboot", "tty": "system boot", "hostname": "5.6.6-300.fc32.x", "login": "Fri May 1 15:24", "logout": "running"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Thu Apr 30 15:27", "logout": "15:22", "duration": "23:55"}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Thu Apr 30 15:25", "logout": "down", "duration": "23:57"}, {"user": "reboot", "tty": "system boot", "hostname": "5.6.6-300.fc32.x", "login": "Thu Apr 30 15:22", "logout": "15:22", "duration": "24:00"}] jc-1.17.3/tests/fixtures/fedora32/last.out000066400000000000000000000007421415226333200203170ustar00rootroot00000000000000kbrazil pts/0 192.168.71.1 Fri May 1 15:25 gone - no logout kbrazil tty1 Fri May 1 15:24 gone - no logout reboot system boot 5.6.6-300.fc32.x Fri May 1 15:24 still running kbrazil pts/0 192.168.71.1 Thu Apr 30 15:27 - 15:22 (23:55) kbrazil tty1 Thu Apr 30 15:25 - down (23:57) reboot system boot 5.6.6-300.fc32.x Thu Apr 30 15:22 - 15:22 (1+00:00) wtmp begins Thu Apr 30 15:22:02 2020 jc-1.17.3/tests/fixtures/fedora32/netstat.json000066400000000000000000000423761415226333200212110ustar00rootroot00000000000000[{"proto": "tcp", "recv_q": 0, "send_q": 0, "local_address": "localhost.localdoma", "foreign_address": "192.168.71.1", "state": "ESTABLISHED", "kind": "network", "local_port": "ssh", "foreign_port": "52882", "transport_protocol": "tcp", "network_protocol": "ipv4", "foreign_port_num": 52882}, {"proto": "udp", "recv_q": 0, "send_q": 0, "local_address": "localhost.locald", "foreign_address": "192.168.71.254", "state": "ESTABLISHED", "kind": "network", "local_port": "bootpc", "foreign_port": "bootps", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 36371, "path": "/run/user/1000/systemd/notify", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 15453, "path": "/run/systemd/notify", "kind": "socket"}, {"proto": "unix", "refcnt": 9, "flags": null, "type": "DGRAM", "state": null, "inode": 15471, "path": "/run/systemd/journal/dev-log", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 165956, "path": "@userdb-9bf8f59ca8f2bcce47a377edbaf8985d", "kind": "socket"}, {"proto": "unix", "refcnt": 12, "flags": null, "type": "DGRAM", "state": null, "inode": 15479, "path": "/run/systemd/journal/socket", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 29064, "path": "/var/run/chrony/chronyd.sock", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 165866, "path": "@userdb-3f208fa7c8c6d98822a696ee7ca5e3ad", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 165863, "path": "@userdb-da253950013f5ea3bc51a4049480d04e", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 165865, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 36476, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 31389, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 30999, "path": "/var/lib/sss/pipes/private/sbus-dp_implicit_files.692", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 33770, "path": "/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 30731, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 24653, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 31370, "path": "/var/lib/sss/pipes/private/sbus-dp_implicit_files.692", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 165862, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 33725, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 33885, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 31173, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 31019, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 33886, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 30735, "path": "/var/lib/sss/pipes/private/sbus-monitor", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 166231, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 30987, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 24745, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 165955, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 30575, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 31062, "path": "/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 35419, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 31399, "path": "/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 32430, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 29403, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 166232, "path": "/var/lib/sss/pipes/nss", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 31127, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 29538, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 33876, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 31020, "path": "/var/lib/sss/pipes/private/sbus-monitor", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 30998, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 36475, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 36002, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 33769, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 31390, "path": "/var/lib/sss/pipes/private/sbus-monitor", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 33132, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 31398, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 30022, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 24748, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 24747, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 36348, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 32085, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 31168, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 15455, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 30830, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 26911, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 35960, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 24662, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 36345, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 32538, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 28747, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 31026, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 28615, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 31713, "path": "/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 31167, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 35989, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 36303, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 31809, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29396, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 34911, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 36374, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 32241, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 32057, "path": "/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 32000, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 33083, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 31017, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 36373, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 34101, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 32539, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 26914, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29395, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 31022, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 15456, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29251, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 26915, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 33052, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 31999, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 29496, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 28400, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 36378, "path": "/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 31808, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29250, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 24582, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 32056, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 31347, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 28678, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 30980, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 31348, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 28677, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 34102, "path": "/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 24805, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29322, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 36357, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 30832, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 26913, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 32010, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 28748, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 28602, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 28401, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 31069, "path": "/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 28616, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 32334, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 31712, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 36302, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 32333, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 32093, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 26912, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 35774, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29321, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 31025, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 28470, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 32094, "path": "/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 31259, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 36471, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 31054, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 31064, "path": "/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 28471, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 36377, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 35788, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 31258, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 31065, "path": "/run/dbus/system_bus_socket", "kind": "socket"}] jc-1.17.3/tests/fixtures/fedora32/netstat.out000066400000000000000000000226131415226333200210370ustar00rootroot00000000000000Active Internet connections (w/o servers) Proto Recv-Q Send-Q Local Address Foreign Address State tcp 0 0 localhost.localdoma:ssh 192.168.71.1:52882 ESTABLISHED udp 0 0 localhost.locald:bootpc 192.168.71.254:bootps ESTABLISHED Active UNIX domain sockets (w/o servers) Proto RefCnt Flags Type State I-Node Path unix 2 [ ] DGRAM 36371 /run/user/1000/systemd/notify unix 3 [ ] DGRAM 15453 /run/systemd/notify unix 9 [ ] DGRAM 15471 /run/systemd/journal/dev-log unix 2 [ ] DGRAM 165956 @userdb-9bf8f59ca8f2bcce47a377edbaf8985d unix 12 [ ] DGRAM 15479 /run/systemd/journal/socket unix 2 [ ] DGRAM 29064 /var/run/chrony/chronyd.sock unix 2 [ ] DGRAM 165866 @userdb-3f208fa7c8c6d98822a696ee7ca5e3ad unix 2 [ ] DGRAM 165863 @userdb-da253950013f5ea3bc51a4049480d04e unix 2 [ ] DGRAM 165865 unix 3 [ ] STREAM CONNECTED 36476 unix 3 [ ] STREAM CONNECTED 31389 unix 3 [ ] STREAM CONNECTED 30999 /var/lib/sss/pipes/private/sbus-dp_implicit_files.692 unix 3 [ ] STREAM CONNECTED 33770 /run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 30731 unix 2 [ ] DGRAM 24653 unix 3 [ ] STREAM CONNECTED 31370 /var/lib/sss/pipes/private/sbus-dp_implicit_files.692 unix 2 [ ] DGRAM 165862 unix 2 [ ] DGRAM 33725 unix 3 [ ] STREAM CONNECTED 33885 unix 3 [ ] STREAM CONNECTED 31173 unix 3 [ ] STREAM CONNECTED 31019 unix 3 [ ] STREAM CONNECTED 33886 unix 3 [ ] STREAM CONNECTED 30735 /var/lib/sss/pipes/private/sbus-monitor unix 3 [ ] STREAM CONNECTED 166231 unix 2 [ ] DGRAM 30987 unix 2 [ ] DGRAM 24745 unix 2 [ ] DGRAM 165955 unix 2 [ ] DGRAM 30575 unix 3 [ ] STREAM CONNECTED 31062 /run/dbus/system_bus_socket unix 2 [ ] STREAM CONNECTED 35419 unix 3 [ ] STREAM CONNECTED 31399 /run/dbus/system_bus_socket unix 2 [ ] DGRAM 32430 unix 2 [ ] DGRAM 29403 unix 3 [ ] STREAM CONNECTED 166232 /var/lib/sss/pipes/nss unix 2 [ ] DGRAM 31127 unix 2 [ ] DGRAM 29538 unix 2 [ ] STREAM CONNECTED 33876 unix 3 [ ] STREAM CONNECTED 31020 /var/lib/sss/pipes/private/sbus-monitor unix 3 [ ] STREAM CONNECTED 30998 unix 3 [ ] STREAM CONNECTED 36475 unix 2 [ ] DGRAM 36002 unix 3 [ ] STREAM CONNECTED 33769 unix 3 [ ] STREAM CONNECTED 31390 /var/lib/sss/pipes/private/sbus-monitor unix 2 [ ] STREAM CONNECTED 33132 unix 3 [ ] STREAM CONNECTED 31398 unix 3 [ ] STREAM CONNECTED 30022 unix 3 [ ] DGRAM 24748 unix 3 [ ] DGRAM 24747 unix 2 [ ] DGRAM 36348 unix 2 [ ] DGRAM 32085 unix 3 [ ] STREAM CONNECTED 31168 /run/systemd/journal/stdout unix 3 [ ] DGRAM 15455 unix 3 [ ] STREAM CONNECTED 30830 unix 3 [ ] STREAM CONNECTED 26911 unix 3 [ ] STREAM CONNECTED 35960 unix 2 [ ] DGRAM 24662 unix 2 [ ] STREAM CONNECTED 36345 unix 3 [ ] STREAM CONNECTED 32538 unix 3 [ ] STREAM CONNECTED 28747 unix 3 [ ] STREAM CONNECTED 31026 unix 3 [ ] DGRAM 28615 unix 3 [ ] STREAM CONNECTED 31713 /run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 31167 unix 3 [ ] STREAM CONNECTED 35989 /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 36303 /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 31809 /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 29396 /run/systemd/journal/stdout unix 2 [ ] STREAM CONNECTED 34911 unix 3 [ ] DGRAM 36374 unix 2 [ ] STREAM CONNECTED 32241 unix 3 [ ] STREAM CONNECTED 32057 /run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 32000 /run/systemd/journal/stdout unix 2 [ ] DGRAM 33083 unix 3 [ ] STREAM CONNECTED 31017 unix 3 [ ] DGRAM 36373 unix 3 [ ] STREAM CONNECTED 34101 unix 3 [ ] STREAM CONNECTED 32539 /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 26914 unix 3 [ ] STREAM CONNECTED 29395 unix 3 [ ] STREAM CONNECTED 31022 unix 3 [ ] DGRAM 15456 unix 3 [ ] STREAM CONNECTED 29251 /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 26915 unix 2 [ ] STREAM CONNECTED 33052 unix 3 [ ] STREAM CONNECTED 31999 unix 2 [ ] DGRAM 29496 unix 3 [ ] STREAM CONNECTED 28400 unix 3 [ ] STREAM CONNECTED 36378 /run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 31808 unix 3 [ ] STREAM CONNECTED 29250 unix 3 [ ] STREAM CONNECTED 24582 unix 3 [ ] STREAM CONNECTED 32056 unix 3 [ ] STREAM CONNECTED 31347 unix 3 [ ] STREAM CONNECTED 28678 /run/systemd/journal/stdout unix 2 [ ] DGRAM 30980 unix 3 [ ] STREAM CONNECTED 31348 /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 28677 unix 3 [ ] STREAM CONNECTED 34102 /run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 24805 /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 29322 /run/systemd/journal/stdout unix 2 [ ] DGRAM 36357 unix 3 [ ] STREAM CONNECTED 30832 /run/systemd/journal/stdout unix 2 [ ] DGRAM 26913 unix 2 [ ] STREAM CONNECTED 32010 unix 3 [ ] STREAM CONNECTED 28748 /run/systemd/journal/stdout unix 2 [ ] DGRAM 28602 unix 3 [ ] STREAM CONNECTED 28401 /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 31069 /run/dbus/system_bus_socket unix 3 [ ] DGRAM 28616 unix 3 [ ] STREAM CONNECTED 32334 /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 31712 unix 3 [ ] STREAM CONNECTED 36302 unix 3 [ ] STREAM CONNECTED 32333 unix 3 [ ] STREAM CONNECTED 32093 unix 3 [ ] STREAM CONNECTED 26912 unix 2 [ ] STREAM CONNECTED 35774 unix 3 [ ] STREAM CONNECTED 29321 unix 3 [ ] STREAM CONNECTED 31025 unix 3 [ ] STREAM CONNECTED 28470 unix 3 [ ] STREAM CONNECTED 32094 /run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 31259 /run/systemd/journal/stdout unix 2 [ ] DGRAM 36471 unix 3 [ ] STREAM CONNECTED 31054 unix 3 [ ] STREAM CONNECTED 31064 /run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 28471 /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 36377 unix 2 [ ] STREAM CONNECTED 35788 unix 3 [ ] STREAM CONNECTED 31258 unix 3 [ ] STREAM CONNECTED 31065 /run/dbus/system_bus_socket Active Bluetooth connections (w/o servers) Proto Destination Source State PSM DCID SCID IMTU OMTU Security Proto Destination Source State Channel jc-1.17.3/tests/fixtures/fedora32/ping-hostname-O-D-p-s-streaming.json000066400000000000000000000113471415226333200253330ustar00rootroot00000000000000[{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595191335.548399,"response_bytes":1408,"response_ip":"151.101.129.67","icmp_seq":1,"ttl":59,"time_ms":46.1,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595191336.134174,"response_bytes":1408,"response_ip":"151.101.129.67","icmp_seq":2,"ttl":59,"time_ms":61.5,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595191337.101575,"response_bytes":1408,"response_ip":"151.101.129.67","icmp_seq":3,"ttl":59,"time_ms":26.3,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595191338.108023,"response_bytes":1408,"response_ip":"151.101.129.67","icmp_seq":4,"ttl":59,"time_ms":30.9,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595191339.229213,"response_bytes":1408,"response_ip":"151.101.129.67","icmp_seq":5,"ttl":59,"time_ms":149.0,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595191340.114026,"response_bytes":1408,"response_ip":"151.101.129.67","icmp_seq":6,"ttl":59,"time_ms":32.4,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595191341.122628,"response_bytes":1408,"response_ip":"151.101.129.67","icmp_seq":7,"ttl":59,"time_ms":37.9,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595191342.110785,"response_bytes":1408,"response_ip":"151.101.129.67","icmp_seq":8,"ttl":59,"time_ms":26.0,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595191343.118652,"response_bytes":1408,"response_ip":"151.101.129.67","icmp_seq":9,"ttl":59,"time_ms":32.3,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595191344.1303,"response_bytes":1408,"response_ip":"151.101.129.67","icmp_seq":10,"ttl":59,"time_ms":43.4,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595191345.162284,"response_bytes":1408,"response_ip":"151.101.129.67","icmp_seq":11,"ttl":59,"time_ms":71.9,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595191346.123086,"response_bytes":1408,"response_ip":"151.101.129.67","icmp_seq":12,"ttl":59,"time_ms":31.1,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595191347.127689,"response_bytes":1408,"response_ip":"151.101.129.67","icmp_seq":13,"ttl":59,"time_ms":33.6,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595191348.142817,"response_bytes":1408,"response_ip":"151.101.129.67","icmp_seq":14,"ttl":59,"time_ms":45.6,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595191349.125383,"response_bytes":1408,"response_ip":"151.101.129.67","icmp_seq":15,"ttl":59,"time_ms":25.9,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595191350.136294,"response_bytes":1408,"response_ip":"151.101.129.67","icmp_seq":16,"ttl":59,"time_ms":34.0,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595191351.135889,"response_bytes":1408,"response_ip":"151.101.129.67","icmp_seq":17,"ttl":59,"time_ms":31.2,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595191352.134199,"response_bytes":1408,"response_ip":"151.101.129.67","icmp_seq":18,"ttl":59,"time_ms":26.2,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595191353.147391,"response_bytes":1408,"response_ip":"151.101.129.67","icmp_seq":19,"ttl":59,"time_ms":38.5,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595191354.15064,"response_bytes":1408,"response_ip":"151.101.129.67","icmp_seq":20,"ttl":59,"time_ms":39.5,"duplicate":false},{"type":"summary","destination_ip":"151.101.129.67","sent_bytes":1400,"pattern":"0xabcd","packets_transmitted":20,"packets_received":20,"packet_loss_percent":0.0,"duplicates":0,"time_ms":19040.0,"round_trip_ms_min":25.934,"round_trip_ms_avg":43.176,"round_trip_ms_max":149.271,"round_trip_ms_stddev":26.937}] jc-1.17.3/tests/fixtures/fedora32/ping-hostname-O-D-p-s.json000066400000000000000000000070461415226333200233450ustar00rootroot00000000000000{"destination_ip": "151.101.129.67", "data_bytes": 1400, "pattern": "0xabcd", "destination": "turner-tls.map.fastly.net", "packets_transmitted": 20, "packets_received": 20, "packet_loss_percent": 0.0, "duplicates": 0, "time_ms": 19040.0, "round_trip_ms_min": 25.934, "round_trip_ms_avg": 43.176, "round_trip_ms_max": 149.271, "round_trip_ms_stddev": 26.937, "responses": [{"type": "reply", "timestamp": 1595191335.548399, "bytes": 1408, "response_ip": "151.101.129.67", "icmp_seq": 1, "ttl": 59, "time_ms": 46.1, "duplicate": false}, {"type": "reply", "timestamp": 1595191336.134174, "bytes": 1408, "response_ip": "151.101.129.67", "icmp_seq": 2, "ttl": 59, "time_ms": 61.5, "duplicate": false}, {"type": "reply", "timestamp": 1595191337.101575, "bytes": 1408, "response_ip": "151.101.129.67", "icmp_seq": 3, "ttl": 59, "time_ms": 26.3, "duplicate": false}, {"type": "reply", "timestamp": 1595191338.108023, "bytes": 1408, "response_ip": "151.101.129.67", "icmp_seq": 4, "ttl": 59, "time_ms": 30.9, "duplicate": false}, {"type": "reply", "timestamp": 1595191339.229213, "bytes": 1408, "response_ip": "151.101.129.67", "icmp_seq": 5, "ttl": 59, "time_ms": 149.0, "duplicate": false}, {"type": "reply", "timestamp": 1595191340.114026, "bytes": 1408, "response_ip": "151.101.129.67", "icmp_seq": 6, "ttl": 59, "time_ms": 32.4, "duplicate": false}, {"type": "reply", "timestamp": 1595191341.122628, "bytes": 1408, "response_ip": "151.101.129.67", "icmp_seq": 7, "ttl": 59, "time_ms": 37.9, "duplicate": false}, {"type": "reply", "timestamp": 1595191342.110785, "bytes": 1408, "response_ip": "151.101.129.67", "icmp_seq": 8, "ttl": 59, "time_ms": 26.0, "duplicate": false}, {"type": "reply", "timestamp": 1595191343.118652, "bytes": 1408, "response_ip": "151.101.129.67", "icmp_seq": 9, "ttl": 59, "time_ms": 32.3, "duplicate": false}, {"type": "reply", "timestamp": 1595191344.1303, "bytes": 1408, "response_ip": "151.101.129.67", "icmp_seq": 10, "ttl": 59, "time_ms": 43.4, "duplicate": false}, {"type": "reply", "timestamp": 1595191345.162284, "bytes": 1408, "response_ip": "151.101.129.67", "icmp_seq": 11, "ttl": 59, "time_ms": 71.9, "duplicate": false}, {"type": "reply", "timestamp": 1595191346.123086, "bytes": 1408, "response_ip": "151.101.129.67", "icmp_seq": 12, "ttl": 59, "time_ms": 31.1, "duplicate": false}, {"type": "reply", "timestamp": 1595191347.127689, "bytes": 1408, "response_ip": "151.101.129.67", "icmp_seq": 13, "ttl": 59, "time_ms": 33.6, "duplicate": false}, {"type": "reply", "timestamp": 1595191348.142817, "bytes": 1408, "response_ip": "151.101.129.67", "icmp_seq": 14, "ttl": 59, "time_ms": 45.6, "duplicate": false}, {"type": "reply", "timestamp": 1595191349.125383, "bytes": 1408, "response_ip": "151.101.129.67", "icmp_seq": 15, "ttl": 59, "time_ms": 25.9, "duplicate": false}, {"type": "reply", "timestamp": 1595191350.136294, "bytes": 1408, "response_ip": "151.101.129.67", "icmp_seq": 16, "ttl": 59, "time_ms": 34.0, "duplicate": false}, {"type": "reply", "timestamp": 1595191351.135889, "bytes": 1408, "response_ip": "151.101.129.67", "icmp_seq": 17, "ttl": 59, "time_ms": 31.2, "duplicate": false}, {"type": "reply", "timestamp": 1595191352.134199, "bytes": 1408, "response_ip": "151.101.129.67", "icmp_seq": 18, "ttl": 59, "time_ms": 26.2, "duplicate": false}, {"type": "reply", "timestamp": 1595191353.147391, "bytes": 1408, "response_ip": "151.101.129.67", "icmp_seq": 19, "ttl": 59, "time_ms": 38.5, "duplicate": false}, {"type": "reply", "timestamp": 1595191354.15064, "bytes": 1408, "response_ip": "151.101.129.67", "icmp_seq": 20, "ttl": 59, "time_ms": 39.5, "duplicate": false}]} jc-1.17.3/tests/fixtures/fedora32/ping-hostname-O-D-p-s.out000066400000000000000000000043401415226333200231750ustar00rootroot00000000000000PATTERN: 0xabcd PING turner-tls.map.fastly.net (151.101.129.67) 1400(1428) bytes of data. [1595191335.548399] 1408 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=1 ttl=59 time=46.1 ms [1595191336.134174] 1408 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=2 ttl=59 time=61.5 ms [1595191337.101575] 1408 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=3 ttl=59 time=26.3 ms [1595191338.108023] 1408 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=4 ttl=59 time=30.9 ms [1595191339.229213] 1408 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=5 ttl=59 time=149 ms [1595191340.114026] 1408 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=6 ttl=59 time=32.4 ms [1595191341.122628] 1408 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=7 ttl=59 time=37.9 ms [1595191342.110785] 1408 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=8 ttl=59 time=26.0 ms [1595191343.118652] 1408 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=9 ttl=59 time=32.3 ms [1595191344.130300] 1408 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=10 ttl=59 time=43.4 ms [1595191345.162284] 1408 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=11 ttl=59 time=71.9 ms [1595191346.123086] 1408 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=12 ttl=59 time=31.1 ms [1595191347.127689] 1408 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=13 ttl=59 time=33.6 ms [1595191348.142817] 1408 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=14 ttl=59 time=45.6 ms [1595191349.125383] 1408 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=15 ttl=59 time=25.9 ms [1595191350.136294] 1408 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=16 ttl=59 time=34.0 ms [1595191351.135889] 1408 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=17 ttl=59 time=31.2 ms [1595191352.134199] 1408 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=18 ttl=59 time=26.2 ms [1595191353.147391] 1408 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=19 ttl=59 time=38.5 ms [1595191354.150640] 1408 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=20 ttl=59 time=39.5 ms --- turner-tls.map.fastly.net ping statistics --- 20 packets transmitted, 20 received, 0% packet loss, time 19040ms rtt min/avg/max/mdev = 25.934/43.176/149.271/26.937 ms jc-1.17.3/tests/fixtures/fedora32/ping-hostname-O-p-streaming.json000066400000000000000000000106211415226333200247040ustar00rootroot00000000000000[{"type":"reply","destination_ip":"151.101.197.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.197.67","icmp_seq":1,"ttl":56,"time_ms":38.2,"duplicate":false},{"type":"reply","destination_ip":"151.101.197.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.197.67","icmp_seq":2,"ttl":56,"time_ms":38.5,"duplicate":false},{"type":"reply","destination_ip":"151.101.197.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.197.67","icmp_seq":3,"ttl":56,"time_ms":39.3,"duplicate":false},{"type":"reply","destination_ip":"151.101.197.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.197.67","icmp_seq":4,"ttl":56,"time_ms":49.2,"duplicate":false},{"type":"reply","destination_ip":"151.101.197.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.197.67","icmp_seq":5,"ttl":56,"time_ms":47.4,"duplicate":false},{"type":"reply","destination_ip":"151.101.197.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.197.67","icmp_seq":6,"ttl":56,"time_ms":48.2,"duplicate":false},{"type":"reply","destination_ip":"151.101.197.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.197.67","icmp_seq":7,"ttl":56,"time_ms":53.4,"duplicate":false},{"type":"reply","destination_ip":"151.101.197.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.197.67","icmp_seq":8,"ttl":56,"time_ms":47.1,"duplicate":false},{"type":"reply","destination_ip":"151.101.197.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.197.67","icmp_seq":9,"ttl":56,"time_ms":47.3,"duplicate":false},{"type":"reply","destination_ip":"151.101.197.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.197.67","icmp_seq":10,"ttl":56,"time_ms":51.8,"duplicate":false},{"type":"reply","destination_ip":"151.101.197.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.197.67","icmp_seq":11,"ttl":56,"time_ms":55.1,"duplicate":false},{"type":"reply","destination_ip":"151.101.197.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.197.67","icmp_seq":12,"ttl":56,"time_ms":40.6,"duplicate":false},{"type":"reply","destination_ip":"151.101.197.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.197.67","icmp_seq":13,"ttl":56,"time_ms":39.5,"duplicate":false},{"type":"reply","destination_ip":"151.101.197.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.197.67","icmp_seq":14,"ttl":56,"time_ms":40.1,"duplicate":false},{"type":"reply","destination_ip":"151.101.197.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.197.67","icmp_seq":15,"ttl":56,"time_ms":41.4,"duplicate":false},{"type":"reply","destination_ip":"151.101.197.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.197.67","icmp_seq":16,"ttl":56,"time_ms":57.9,"duplicate":false},{"type":"reply","destination_ip":"151.101.197.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.197.67","icmp_seq":17,"ttl":56,"time_ms":45.7,"duplicate":false},{"type":"reply","destination_ip":"151.101.197.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.197.67","icmp_seq":18,"ttl":56,"time_ms":39.3,"duplicate":false},{"type":"reply","destination_ip":"151.101.197.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.197.67","icmp_seq":19,"ttl":56,"time_ms":37.4,"duplicate":false},{"type":"reply","destination_ip":"151.101.197.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.197.67","icmp_seq":20,"ttl":56,"time_ms":40.4,"duplicate":false},{"type":"summary","destination_ip":"151.101.197.67","sent_bytes":56,"pattern":"0xabcd","packets_transmitted":20,"packets_received":20,"packet_loss_percent":0.0,"duplicates":0,"time_ms":19026.0,"round_trip_ms_min":37.406,"round_trip_ms_avg":44.894,"round_trip_ms_max":57.881,"round_trip_ms_stddev":6.101}] jc-1.17.3/tests/fixtures/fedora32/ping-hostname-O-p.json000066400000000000000000000063701415226333200227230ustar00rootroot00000000000000{"destination_ip": "151.101.197.67", "data_bytes": 56, "pattern": "0xabcd", "destination": "turner-tls.map.fastly.net", "packets_transmitted": 20, "packets_received": 20, "packet_loss_percent": 0.0, "duplicates": 0, "time_ms": 19026.0, "round_trip_ms_min": 37.406, "round_trip_ms_avg": 44.894, "round_trip_ms_max": 57.881, "round_trip_ms_stddev": 6.101, "responses": [{"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.197.67", "icmp_seq": 1, "ttl": 56, "time_ms": 38.2, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.197.67", "icmp_seq": 2, "ttl": 56, "time_ms": 38.5, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.197.67", "icmp_seq": 3, "ttl": 56, "time_ms": 39.3, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.197.67", "icmp_seq": 4, "ttl": 56, "time_ms": 49.2, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.197.67", "icmp_seq": 5, "ttl": 56, "time_ms": 47.4, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.197.67", "icmp_seq": 6, "ttl": 56, "time_ms": 48.2, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.197.67", "icmp_seq": 7, "ttl": 56, "time_ms": 53.4, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.197.67", "icmp_seq": 8, "ttl": 56, "time_ms": 47.1, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.197.67", "icmp_seq": 9, "ttl": 56, "time_ms": 47.3, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.197.67", "icmp_seq": 10, "ttl": 56, "time_ms": 51.8, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.197.67", "icmp_seq": 11, "ttl": 56, "time_ms": 55.1, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.197.67", "icmp_seq": 12, "ttl": 56, "time_ms": 40.6, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.197.67", "icmp_seq": 13, "ttl": 56, "time_ms": 39.5, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.197.67", "icmp_seq": 14, "ttl": 56, "time_ms": 40.1, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.197.67", "icmp_seq": 15, "ttl": 56, "time_ms": 41.4, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.197.67", "icmp_seq": 16, "ttl": 56, "time_ms": 57.9, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.197.67", "icmp_seq": 17, "ttl": 56, "time_ms": 45.7, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.197.67", "icmp_seq": 18, "ttl": 56, "time_ms": 39.3, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.197.67", "icmp_seq": 19, "ttl": 56, "time_ms": 37.4, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.197.67", "icmp_seq": 20, "ttl": 56, "time_ms": 40.4, "duplicate": false}]} jc-1.17.3/tests/fixtures/fedora32/ping-hostname-O-p.out000066400000000000000000000034431415226333200225570ustar00rootroot00000000000000PATTERN: 0xabcd PING turner-tls.map.fastly.net (151.101.197.67) 56(84) bytes of data. 64 bytes from 151.101.197.67 (151.101.197.67): icmp_seq=1 ttl=56 time=38.2 ms 64 bytes from 151.101.197.67 (151.101.197.67): icmp_seq=2 ttl=56 time=38.5 ms 64 bytes from 151.101.197.67 (151.101.197.67): icmp_seq=3 ttl=56 time=39.3 ms 64 bytes from 151.101.197.67 (151.101.197.67): icmp_seq=4 ttl=56 time=49.2 ms 64 bytes from 151.101.197.67 (151.101.197.67): icmp_seq=5 ttl=56 time=47.4 ms 64 bytes from 151.101.197.67 (151.101.197.67): icmp_seq=6 ttl=56 time=48.2 ms 64 bytes from 151.101.197.67 (151.101.197.67): icmp_seq=7 ttl=56 time=53.4 ms 64 bytes from 151.101.197.67 (151.101.197.67): icmp_seq=8 ttl=56 time=47.1 ms 64 bytes from 151.101.197.67 (151.101.197.67): icmp_seq=9 ttl=56 time=47.3 ms 64 bytes from 151.101.197.67 (151.101.197.67): icmp_seq=10 ttl=56 time=51.8 ms 64 bytes from 151.101.197.67 (151.101.197.67): icmp_seq=11 ttl=56 time=55.1 ms 64 bytes from 151.101.197.67 (151.101.197.67): icmp_seq=12 ttl=56 time=40.6 ms 64 bytes from 151.101.197.67 (151.101.197.67): icmp_seq=13 ttl=56 time=39.5 ms 64 bytes from 151.101.197.67 (151.101.197.67): icmp_seq=14 ttl=56 time=40.1 ms 64 bytes from 151.101.197.67 (151.101.197.67): icmp_seq=15 ttl=56 time=41.4 ms 64 bytes from 151.101.197.67 (151.101.197.67): icmp_seq=16 ttl=56 time=57.9 ms 64 bytes from 151.101.197.67 (151.101.197.67): icmp_seq=17 ttl=56 time=45.7 ms 64 bytes from 151.101.197.67 (151.101.197.67): icmp_seq=18 ttl=56 time=39.3 ms 64 bytes from 151.101.197.67 (151.101.197.67): icmp_seq=19 ttl=56 time=37.4 ms 64 bytes from 151.101.197.67 (151.101.197.67): icmp_seq=20 ttl=56 time=40.4 ms --- turner-tls.map.fastly.net ping statistics --- 20 packets transmitted, 20 received, 0% packet loss, time 19026ms rtt min/avg/max/mdev = 37.406/44.894/57.881/6.101 ms jc-1.17.3/tests/fixtures/fedora32/ping-hostname-O-streaming.json000066400000000000000000000103461415226333200244530ustar00rootroot00000000000000[{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.129.67","icmp_seq":1,"ttl":59,"time_ms":27.5,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.129.67","icmp_seq":2,"ttl":59,"time_ms":31.5,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.129.67","icmp_seq":3,"ttl":59,"time_ms":25.5,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.129.67","icmp_seq":4,"ttl":59,"time_ms":65.1,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.129.67","icmp_seq":5,"ttl":59,"time_ms":32.4,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.129.67","icmp_seq":6,"ttl":59,"time_ms":32.2,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.129.67","icmp_seq":7,"ttl":59,"time_ms":156.0,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.129.67","icmp_seq":8,"ttl":59,"time_ms":216.0,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.129.67","icmp_seq":9,"ttl":59,"time_ms":275.0,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.129.67","icmp_seq":10,"ttl":59,"time_ms":25.7,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.129.67","icmp_seq":11,"ttl":59,"time_ms":29.5,"duplicate":false},{"type":"timeout","destination_ip":"151.101.129.67","sent_bytes":56,"pattern":null,"timestamp":null,"icmp_seq":12},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.129.67","icmp_seq":13,"ttl":59,"time_ms":25.9,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.129.67","icmp_seq":14,"ttl":59,"time_ms":33.0,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.129.67","icmp_seq":15,"ttl":59,"time_ms":24.3,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.129.67","icmp_seq":16,"ttl":59,"time_ms":35.8,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.129.67","icmp_seq":17,"ttl":59,"time_ms":24.8,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.129.67","icmp_seq":18,"ttl":59,"time_ms":34.0,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.129.67","icmp_seq":19,"ttl":59,"time_ms":30.7,"duplicate":false},{"type":"reply","destination_ip":"151.101.129.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.129.67","icmp_seq":20,"ttl":59,"time_ms":45.8,"duplicate":false},{"type":"summary","destination_ip":"151.101.129.67","sent_bytes":56,"pattern":null,"packets_transmitted":20,"packets_received":19,"packet_loss_percent":5.0,"duplicates":0,"time_ms":19075.0,"round_trip_ms_min":24.317,"round_trip_ms_avg":61.577,"round_trip_ms_max":274.537,"round_trip_ms_stddev":69.94}] jc-1.17.3/tests/fixtures/fedora32/ping-hostname-O.json000066400000000000000000000062341415226333200224650ustar00rootroot00000000000000{"destination_ip": "151.101.129.67", "data_bytes": 56, "pattern": null, "destination": "turner-tls.map.fastly.net", "packets_transmitted": 20, "packets_received": 19, "packet_loss_percent": 5.0, "duplicates": 0, "time_ms": 19075.0, "round_trip_ms_min": 24.317, "round_trip_ms_avg": 61.577, "round_trip_ms_max": 274.537, "round_trip_ms_stddev": 69.94, "responses": [{"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.129.67", "icmp_seq": 1, "ttl": 59, "time_ms": 27.5, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.129.67", "icmp_seq": 2, "ttl": 59, "time_ms": 31.5, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.129.67", "icmp_seq": 3, "ttl": 59, "time_ms": 25.5, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.129.67", "icmp_seq": 4, "ttl": 59, "time_ms": 65.1, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.129.67", "icmp_seq": 5, "ttl": 59, "time_ms": 32.4, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.129.67", "icmp_seq": 6, "ttl": 59, "time_ms": 32.2, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.129.67", "icmp_seq": 7, "ttl": 59, "time_ms": 156.0, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.129.67", "icmp_seq": 8, "ttl": 59, "time_ms": 216.0, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.129.67", "icmp_seq": 9, "ttl": 59, "time_ms": 275.0, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.129.67", "icmp_seq": 10, "ttl": 59, "time_ms": 25.7, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.129.67", "icmp_seq": 11, "ttl": 59, "time_ms": 29.5, "duplicate": false}, {"type": "timeout", "timestamp": null, "icmp_seq": 12}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.129.67", "icmp_seq": 13, "ttl": 59, "time_ms": 25.9, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.129.67", "icmp_seq": 14, "ttl": 59, "time_ms": 33.0, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.129.67", "icmp_seq": 15, "ttl": 59, "time_ms": 24.3, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.129.67", "icmp_seq": 16, "ttl": 59, "time_ms": 35.8, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.129.67", "icmp_seq": 17, "ttl": 59, "time_ms": 24.8, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.129.67", "icmp_seq": 18, "ttl": 59, "time_ms": 34.0, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.129.67", "icmp_seq": 19, "ttl": 59, "time_ms": 30.7, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.129.67", "icmp_seq": 20, "ttl": 59, "time_ms": 45.8, "duplicate": false}]} jc-1.17.3/tests/fixtures/fedora32/ping-hostname-O.out000066400000000000000000000033411415226333200223170ustar00rootroot00000000000000PING turner-tls.map.fastly.net (151.101.129.67) 56(84) bytes of data. 64 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=1 ttl=59 time=27.5 ms 64 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=2 ttl=59 time=31.5 ms 64 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=3 ttl=59 time=25.5 ms 64 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=4 ttl=59 time=65.1 ms 64 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=5 ttl=59 time=32.4 ms 64 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=6 ttl=59 time=32.2 ms 64 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=7 ttl=59 time=156 ms 64 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=8 ttl=59 time=216 ms 64 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=9 ttl=59 time=275 ms 64 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=10 ttl=59 time=25.7 ms 64 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=11 ttl=59 time=29.5 ms no answer yet for icmp_seq=12 64 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=13 ttl=59 time=25.9 ms 64 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=14 ttl=59 time=33.0 ms 64 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=15 ttl=59 time=24.3 ms 64 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=16 ttl=59 time=35.8 ms 64 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=17 ttl=59 time=24.8 ms 64 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=18 ttl=59 time=34.0 ms 64 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=19 ttl=59 time=30.7 ms 64 bytes from 151.101.129.67 (151.101.129.67): icmp_seq=20 ttl=59 time=45.8 ms --- turner-tls.map.fastly.net ping statistics --- 20 packets transmitted, 19 received, 5% packet loss, time 19075ms rtt min/avg/max/mdev = 24.317/61.577/274.537/69.940 ms jc-1.17.3/tests/fixtures/fedora32/ping-ip-O-D-streaming.json000066400000000000000000000106011415226333200234200ustar00rootroot00000000000000[{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595191373.643436,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":1,"ttl":64,"time_ms":0.043,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595191374.662543,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":2,"ttl":64,"time_ms":0.083,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595191375.685291,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":3,"ttl":64,"time_ms":0.091,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595191376.709678,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":4,"ttl":64,"time_ms":0.092,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595191377.734105,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":5,"ttl":64,"time_ms":0.09,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595191378.758107,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":6,"ttl":64,"time_ms":0.089,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595191379.781215,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":7,"ttl":64,"time_ms":0.087,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595191380.80601,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":8,"ttl":64,"time_ms":0.092,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595191381.829806,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":9,"ttl":64,"time_ms":0.088,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595191382.853166,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":10,"ttl":64,"time_ms":0.135,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595191383.876966,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":11,"ttl":64,"time_ms":0.101,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595191384.900636,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":12,"ttl":64,"time_ms":0.084,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595191385.925055,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":13,"ttl":64,"time_ms":0.071,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595191386.94986,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":14,"ttl":64,"time_ms":0.087,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595191387.973041,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":15,"ttl":64,"time_ms":0.087,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595191388.997049,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":16,"ttl":64,"time_ms":0.073,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595191390.021265,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":17,"ttl":64,"time_ms":0.074,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595191391.044904,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":18,"ttl":64,"time_ms":0.089,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595191392.069285,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":19,"ttl":64,"time_ms":0.09,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595191393.093307,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":20,"ttl":64,"time_ms":0.084,"duplicate":false},{"type":"summary","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"packets_transmitted":20,"packets_received":20,"packet_loss_percent":0.0,"duplicates":0,"time_ms":19450.0,"round_trip_ms_min":0.043,"round_trip_ms_avg":0.086,"round_trip_ms_max":0.135,"round_trip_ms_stddev":0.016}] jc-1.17.3/tests/fixtures/fedora32/ping-ip-O-D.json000066400000000000000000000066141415226333200214420ustar00rootroot00000000000000{"destination_ip": "127.0.0.1", "data_bytes": 56, "pattern": null, "destination": "127.0.0.1", "packets_transmitted": 20, "packets_received": 20, "packet_loss_percent": 0.0, "duplicates": 0, "time_ms": 19450.0, "round_trip_ms_min": 0.043, "round_trip_ms_avg": 0.086, "round_trip_ms_max": 0.135, "round_trip_ms_stddev": 0.016, "responses": [{"type": "reply", "timestamp": 1595191373.643436, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 1, "ttl": 64, "time_ms": 0.043, "duplicate": false}, {"type": "reply", "timestamp": 1595191374.662543, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 2, "ttl": 64, "time_ms": 0.083, "duplicate": false}, {"type": "reply", "timestamp": 1595191375.685291, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 3, "ttl": 64, "time_ms": 0.091, "duplicate": false}, {"type": "reply", "timestamp": 1595191376.709678, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 4, "ttl": 64, "time_ms": 0.092, "duplicate": false}, {"type": "reply", "timestamp": 1595191377.734105, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 5, "ttl": 64, "time_ms": 0.09, "duplicate": false}, {"type": "reply", "timestamp": 1595191378.758107, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 6, "ttl": 64, "time_ms": 0.089, "duplicate": false}, {"type": "reply", "timestamp": 1595191379.781215, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 7, "ttl": 64, "time_ms": 0.087, "duplicate": false}, {"type": "reply", "timestamp": 1595191380.80601, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 8, "ttl": 64, "time_ms": 0.092, "duplicate": false}, {"type": "reply", "timestamp": 1595191381.829806, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 9, "ttl": 64, "time_ms": 0.088, "duplicate": false}, {"type": "reply", "timestamp": 1595191382.853166, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 10, "ttl": 64, "time_ms": 0.135, "duplicate": false}, {"type": "reply", "timestamp": 1595191383.876966, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 11, "ttl": 64, "time_ms": 0.101, "duplicate": false}, {"type": "reply", "timestamp": 1595191384.900636, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 12, "ttl": 64, "time_ms": 0.084, "duplicate": false}, {"type": "reply", "timestamp": 1595191385.925055, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 13, "ttl": 64, "time_ms": 0.071, "duplicate": false}, {"type": "reply", "timestamp": 1595191386.94986, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 14, "ttl": 64, "time_ms": 0.087, "duplicate": false}, {"type": "reply", "timestamp": 1595191387.973041, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 15, "ttl": 64, "time_ms": 0.087, "duplicate": false}, {"type": "reply", "timestamp": 1595191388.997049, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 16, "ttl": 64, "time_ms": 0.073, "duplicate": false}, {"type": "reply", "timestamp": 1595191390.021265, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 17, "ttl": 64, "time_ms": 0.074, "duplicate": false}, {"type": "reply", "timestamp": 1595191391.044904, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 18, "ttl": 64, "time_ms": 0.089, "duplicate": false}, {"type": "reply", "timestamp": 1595191392.069285, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 19, "ttl": 64, "time_ms": 0.09, "duplicate": false}, {"type": "reply", "timestamp": 1595191393.093307, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 20, "ttl": 64, "time_ms": 0.084, "duplicate": false}]} jc-1.17.3/tests/fixtures/fedora32/ping-ip-O-D.out000066400000000000000000000033271415226333200212760ustar00rootroot00000000000000PING 127.0.0.1 (127.0.0.1) 56(84) bytes of data. [1595191373.643436] 64 bytes from 127.0.0.1: icmp_seq=1 ttl=64 time=0.043 ms [1595191374.662543] 64 bytes from 127.0.0.1: icmp_seq=2 ttl=64 time=0.083 ms [1595191375.685291] 64 bytes from 127.0.0.1: icmp_seq=3 ttl=64 time=0.091 ms [1595191376.709678] 64 bytes from 127.0.0.1: icmp_seq=4 ttl=64 time=0.092 ms [1595191377.734105] 64 bytes from 127.0.0.1: icmp_seq=5 ttl=64 time=0.090 ms [1595191378.758107] 64 bytes from 127.0.0.1: icmp_seq=6 ttl=64 time=0.089 ms [1595191379.781215] 64 bytes from 127.0.0.1: icmp_seq=7 ttl=64 time=0.087 ms [1595191380.806010] 64 bytes from 127.0.0.1: icmp_seq=8 ttl=64 time=0.092 ms [1595191381.829806] 64 bytes from 127.0.0.1: icmp_seq=9 ttl=64 time=0.088 ms [1595191382.853166] 64 bytes from 127.0.0.1: icmp_seq=10 ttl=64 time=0.135 ms [1595191383.876966] 64 bytes from 127.0.0.1: icmp_seq=11 ttl=64 time=0.101 ms [1595191384.900636] 64 bytes from 127.0.0.1: icmp_seq=12 ttl=64 time=0.084 ms [1595191385.925055] 64 bytes from 127.0.0.1: icmp_seq=13 ttl=64 time=0.071 ms [1595191386.949860] 64 bytes from 127.0.0.1: icmp_seq=14 ttl=64 time=0.087 ms [1595191387.973041] 64 bytes from 127.0.0.1: icmp_seq=15 ttl=64 time=0.087 ms [1595191388.997049] 64 bytes from 127.0.0.1: icmp_seq=16 ttl=64 time=0.073 ms [1595191390.021265] 64 bytes from 127.0.0.1: icmp_seq=17 ttl=64 time=0.074 ms [1595191391.044904] 64 bytes from 127.0.0.1: icmp_seq=18 ttl=64 time=0.089 ms [1595191392.069285] 64 bytes from 127.0.0.1: icmp_seq=19 ttl=64 time=0.090 ms [1595191393.093307] 64 bytes from 127.0.0.1: icmp_seq=20 ttl=64 time=0.084 ms --- 127.0.0.1 ping statistics --- 20 packets transmitted, 20 received, 0% packet loss, time 19450ms rtt min/avg/max/mdev = 0.043/0.086/0.135/0.016 ms jc-1.17.3/tests/fixtures/fedora32/ping-ip-O-streaming.json000066400000000000000000000101731415226333200232430ustar00rootroot00000000000000[{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":1,"ttl":64,"time_ms":0.043,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":2,"ttl":64,"time_ms":0.07,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":3,"ttl":64,"time_ms":0.09,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":4,"ttl":64,"time_ms":0.093,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":5,"ttl":64,"time_ms":0.078,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":6,"ttl":64,"time_ms":0.16,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":7,"ttl":64,"time_ms":0.089,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":8,"ttl":64,"time_ms":0.155,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":9,"ttl":64,"time_ms":0.084,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":10,"ttl":64,"time_ms":0.111,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":11,"ttl":64,"time_ms":0.079,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":12,"ttl":64,"time_ms":0.103,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":13,"ttl":64,"time_ms":0.105,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":14,"ttl":64,"time_ms":0.087,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":15,"ttl":64,"time_ms":0.081,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":16,"ttl":64,"time_ms":0.089,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":17,"ttl":64,"time_ms":0.09,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":18,"ttl":64,"time_ms":0.089,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":19,"ttl":64,"time_ms":0.09,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":20,"ttl":64,"time_ms":0.092,"duplicate":false},{"type":"summary","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"packets_transmitted":20,"packets_received":20,"packet_loss_percent":0.0,"duplicates":0,"time_ms":19480.0,"round_trip_ms_min":0.043,"round_trip_ms_avg":0.093,"round_trip_ms_max":0.16,"round_trip_ms_stddev":0.025}] jc-1.17.3/tests/fixtures/fedora32/ping-ip-O.json000066400000000000000000000062061415226333200212560ustar00rootroot00000000000000{"destination_ip": "127.0.0.1", "data_bytes": 56, "pattern": null, "destination": "127.0.0.1", "packets_transmitted": 20, "packets_received": 20, "packet_loss_percent": 0.0, "duplicates": 0, "time_ms": 19480.0, "round_trip_ms_min": 0.043, "round_trip_ms_avg": 0.093, "round_trip_ms_max": 0.16, "round_trip_ms_stddev": 0.025, "responses": [{"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 1, "ttl": 64, "time_ms": 0.043, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 2, "ttl": 64, "time_ms": 0.07, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 3, "ttl": 64, "time_ms": 0.09, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 4, "ttl": 64, "time_ms": 0.093, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 5, "ttl": 64, "time_ms": 0.078, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 6, "ttl": 64, "time_ms": 0.16, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 7, "ttl": 64, "time_ms": 0.089, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 8, "ttl": 64, "time_ms": 0.155, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 9, "ttl": 64, "time_ms": 0.084, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 10, "ttl": 64, "time_ms": 0.111, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 11, "ttl": 64, "time_ms": 0.079, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 12, "ttl": 64, "time_ms": 0.103, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 13, "ttl": 64, "time_ms": 0.105, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 14, "ttl": 64, "time_ms": 0.087, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 15, "ttl": 64, "time_ms": 0.081, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 16, "ttl": 64, "time_ms": 0.089, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 17, "ttl": 64, "time_ms": 0.09, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 18, "ttl": 64, "time_ms": 0.089, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 19, "ttl": 64, "time_ms": 0.09, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 20, "ttl": 64, "time_ms": 0.092, "duplicate": false}]} jc-1.17.3/tests/fixtures/fedora32/ping-ip-O.out000066400000000000000000000025071415226333200211140ustar00rootroot00000000000000PING 127.0.0.1 (127.0.0.1) 56(84) bytes of data. 64 bytes from 127.0.0.1: icmp_seq=1 ttl=64 time=0.043 ms 64 bytes from 127.0.0.1: icmp_seq=2 ttl=64 time=0.070 ms 64 bytes from 127.0.0.1: icmp_seq=3 ttl=64 time=0.090 ms 64 bytes from 127.0.0.1: icmp_seq=4 ttl=64 time=0.093 ms 64 bytes from 127.0.0.1: icmp_seq=5 ttl=64 time=0.078 ms 64 bytes from 127.0.0.1: icmp_seq=6 ttl=64 time=0.160 ms 64 bytes from 127.0.0.1: icmp_seq=7 ttl=64 time=0.089 ms 64 bytes from 127.0.0.1: icmp_seq=8 ttl=64 time=0.155 ms 64 bytes from 127.0.0.1: icmp_seq=9 ttl=64 time=0.084 ms 64 bytes from 127.0.0.1: icmp_seq=10 ttl=64 time=0.111 ms 64 bytes from 127.0.0.1: icmp_seq=11 ttl=64 time=0.079 ms 64 bytes from 127.0.0.1: icmp_seq=12 ttl=64 time=0.103 ms 64 bytes from 127.0.0.1: icmp_seq=13 ttl=64 time=0.105 ms 64 bytes from 127.0.0.1: icmp_seq=14 ttl=64 time=0.087 ms 64 bytes from 127.0.0.1: icmp_seq=15 ttl=64 time=0.081 ms 64 bytes from 127.0.0.1: icmp_seq=16 ttl=64 time=0.089 ms 64 bytes from 127.0.0.1: icmp_seq=17 ttl=64 time=0.090 ms 64 bytes from 127.0.0.1: icmp_seq=18 ttl=64 time=0.089 ms 64 bytes from 127.0.0.1: icmp_seq=19 ttl=64 time=0.090 ms 64 bytes from 127.0.0.1: icmp_seq=20 ttl=64 time=0.092 ms --- 127.0.0.1 ping statistics --- 20 packets transmitted, 20 received, 0% packet loss, time 19480ms rtt min/avg/max/mdev = 0.043/0.093/0.160/0.025 ms jc-1.17.3/tests/fixtures/fedora32/ping6-hostname-O-D-p-s-streaming.json000066400000000000000000000116071415226333200254200ustar00rootroot00000000000000[{"type":"reply","destination_ip":"2a04:4e42:200::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595191433.391154,"response_bytes":1408,"response_ip":"2a04:4e42:200::323","icmp_seq":1,"ttl":59,"time_ms":34.6,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:200::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595191434.063086,"response_bytes":1408,"response_ip":"2a04:4e42:200::323","icmp_seq":2,"ttl":59,"time_ms":37.2,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:200::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595191435.071905,"response_bytes":1408,"response_ip":"2a04:4e42:200::323","icmp_seq":3,"ttl":59,"time_ms":44.3,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:200::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595191436.067128,"response_bytes":1408,"response_ip":"2a04:4e42:200::323","icmp_seq":4,"ttl":59,"time_ms":37.3,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:200::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595191437.06455,"response_bytes":1408,"response_ip":"2a04:4e42:200::323","icmp_seq":5,"ttl":59,"time_ms":32.2,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:200::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595191438.06541,"response_bytes":1408,"response_ip":"2a04:4e42:200::323","icmp_seq":6,"ttl":59,"time_ms":30.8,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:200::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595191439.076718,"response_bytes":1408,"response_ip":"2a04:4e42:200::323","icmp_seq":7,"ttl":59,"time_ms":40.6,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:200::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595191440.076357,"response_bytes":1408,"response_ip":"2a04:4e42:200::323","icmp_seq":8,"ttl":59,"time_ms":38.2,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:200::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595191441.079078,"response_bytes":1408,"response_ip":"2a04:4e42:200::323","icmp_seq":9,"ttl":59,"time_ms":39.0,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:200::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595191442.077537,"response_bytes":1408,"response_ip":"2a04:4e42:200::323","icmp_seq":10,"ttl":59,"time_ms":34.3,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:200::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595191443.104345,"response_bytes":1408,"response_ip":"2a04:4e42:200::323","icmp_seq":11,"ttl":59,"time_ms":59.0,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:200::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595191444.083741,"response_bytes":1408,"response_ip":"2a04:4e42:200::323","icmp_seq":12,"ttl":59,"time_ms":36.8,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:200::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595191445.086748,"response_bytes":1408,"response_ip":"2a04:4e42:200::323","icmp_seq":13,"ttl":59,"time_ms":37.6,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:200::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595191446.088958,"response_bytes":1408,"response_ip":"2a04:4e42:200::323","icmp_seq":14,"ttl":59,"time_ms":37.3,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:200::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595191447.086122,"response_bytes":1408,"response_ip":"2a04:4e42:200::323","icmp_seq":15,"ttl":59,"time_ms":30.9,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:200::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595191448.088312,"response_bytes":1408,"response_ip":"2a04:4e42:200::323","icmp_seq":16,"ttl":59,"time_ms":30.8,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:200::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595191449.098353,"response_bytes":1408,"response_ip":"2a04:4e42:200::323","icmp_seq":17,"ttl":59,"time_ms":38.9,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:200::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595191450.09959,"response_bytes":1408,"response_ip":"2a04:4e42:200::323","icmp_seq":18,"ttl":59,"time_ms":38.1,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:200::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595191451.10105,"response_bytes":1408,"response_ip":"2a04:4e42:200::323","icmp_seq":19,"ttl":59,"time_ms":37.8,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:200::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595191452.100239,"response_bytes":1408,"response_ip":"2a04:4e42:200::323","icmp_seq":20,"ttl":59,"time_ms":35.0,"duplicate":false},{"type":"summary","destination_ip":"2a04:4e42:200::323","sent_bytes":1400,"pattern":"0xabcd","packets_transmitted":20,"packets_received":20,"packet_loss_percent":0.0,"duplicates":0,"time_ms":19042.0,"round_trip_ms_min":30.757,"round_trip_ms_avg":37.536,"round_trip_ms_max":59.021,"round_trip_ms_stddev":5.967}] jc-1.17.3/tests/fixtures/fedora32/ping6-hostname-O-D-p-s.json000066400000000000000000000071501415226333200234270ustar00rootroot00000000000000{"destination_ip": "2a04:4e42:200::323", "data_bytes": 1400, "pattern": "0xabcd", "destination": "www.cnn.com", "packets_transmitted": 20, "packets_received": 20, "packet_loss_percent": 0.0, "duplicates": 0, "time_ms": 19042.0, "round_trip_ms_min": 30.757, "round_trip_ms_avg": 37.536, "round_trip_ms_max": 59.021, "round_trip_ms_stddev": 5.967, "responses": [{"type": "reply", "timestamp": 1595191433.391154, "bytes": 1408, "response_ip": "2a04:4e42:200::323", "icmp_seq": 1, "ttl": 59, "time_ms": 34.6, "duplicate": false}, {"type": "reply", "timestamp": 1595191434.063086, "bytes": 1408, "response_ip": "2a04:4e42:200::323", "icmp_seq": 2, "ttl": 59, "time_ms": 37.2, "duplicate": false}, {"type": "reply", "timestamp": 1595191435.071905, "bytes": 1408, "response_ip": "2a04:4e42:200::323", "icmp_seq": 3, "ttl": 59, "time_ms": 44.3, "duplicate": false}, {"type": "reply", "timestamp": 1595191436.067128, "bytes": 1408, "response_ip": "2a04:4e42:200::323", "icmp_seq": 4, "ttl": 59, "time_ms": 37.3, "duplicate": false}, {"type": "reply", "timestamp": 1595191437.06455, "bytes": 1408, "response_ip": "2a04:4e42:200::323", "icmp_seq": 5, "ttl": 59, "time_ms": 32.2, "duplicate": false}, {"type": "reply", "timestamp": 1595191438.06541, "bytes": 1408, "response_ip": "2a04:4e42:200::323", "icmp_seq": 6, "ttl": 59, "time_ms": 30.8, "duplicate": false}, {"type": "reply", "timestamp": 1595191439.076718, "bytes": 1408, "response_ip": "2a04:4e42:200::323", "icmp_seq": 7, "ttl": 59, "time_ms": 40.6, "duplicate": false}, {"type": "reply", "timestamp": 1595191440.076357, "bytes": 1408, "response_ip": "2a04:4e42:200::323", "icmp_seq": 8, "ttl": 59, "time_ms": 38.2, "duplicate": false}, {"type": "reply", "timestamp": 1595191441.079078, "bytes": 1408, "response_ip": "2a04:4e42:200::323", "icmp_seq": 9, "ttl": 59, "time_ms": 39.0, "duplicate": false}, {"type": "reply", "timestamp": 1595191442.077537, "bytes": 1408, "response_ip": "2a04:4e42:200::323", "icmp_seq": 10, "ttl": 59, "time_ms": 34.3, "duplicate": false}, {"type": "reply", "timestamp": 1595191443.104345, "bytes": 1408, "response_ip": "2a04:4e42:200::323", "icmp_seq": 11, "ttl": 59, "time_ms": 59.0, "duplicate": false}, {"type": "reply", "timestamp": 1595191444.083741, "bytes": 1408, "response_ip": "2a04:4e42:200::323", "icmp_seq": 12, "ttl": 59, "time_ms": 36.8, "duplicate": false}, {"type": "reply", "timestamp": 1595191445.086748, "bytes": 1408, "response_ip": "2a04:4e42:200::323", "icmp_seq": 13, "ttl": 59, "time_ms": 37.6, "duplicate": false}, {"type": "reply", "timestamp": 1595191446.088958, "bytes": 1408, "response_ip": "2a04:4e42:200::323", "icmp_seq": 14, "ttl": 59, "time_ms": 37.3, "duplicate": false}, {"type": "reply", "timestamp": 1595191447.086122, "bytes": 1408, "response_ip": "2a04:4e42:200::323", "icmp_seq": 15, "ttl": 59, "time_ms": 30.9, "duplicate": false}, {"type": "reply", "timestamp": 1595191448.088312, "bytes": 1408, "response_ip": "2a04:4e42:200::323", "icmp_seq": 16, "ttl": 59, "time_ms": 30.8, "duplicate": false}, {"type": "reply", "timestamp": 1595191449.098353, "bytes": 1408, "response_ip": "2a04:4e42:200::323", "icmp_seq": 17, "ttl": 59, "time_ms": 38.9, "duplicate": false}, {"type": "reply", "timestamp": 1595191450.09959, "bytes": 1408, "response_ip": "2a04:4e42:200::323", "icmp_seq": 18, "ttl": 59, "time_ms": 38.1, "duplicate": false}, {"type": "reply", "timestamp": 1595191451.10105, "bytes": 1408, "response_ip": "2a04:4e42:200::323", "icmp_seq": 19, "ttl": 59, "time_ms": 37.8, "duplicate": false}, {"type": "reply", "timestamp": 1595191452.100239, "bytes": 1408, "response_ip": "2a04:4e42:200::323", "icmp_seq": 20, "ttl": 59, "time_ms": 35.0, "duplicate": false}]} jc-1.17.3/tests/fixtures/fedora32/ping6-hostname-O-D-p-s.out000066400000000000000000000045611415226333200232700ustar00rootroot00000000000000PATTERN: 0xabcd PING www.cnn.com(2a04:4e42:200::323 (2a04:4e42:200::323)) 1400 data bytes [1595191433.391154] 1408 bytes from 2a04:4e42:200::323 (2a04:4e42:200::323): icmp_seq=1 ttl=59 time=34.6 ms [1595191434.063086] 1408 bytes from 2a04:4e42:200::323 (2a04:4e42:200::323): icmp_seq=2 ttl=59 time=37.2 ms [1595191435.071905] 1408 bytes from 2a04:4e42:200::323 (2a04:4e42:200::323): icmp_seq=3 ttl=59 time=44.3 ms [1595191436.067128] 1408 bytes from 2a04:4e42:200::323 (2a04:4e42:200::323): icmp_seq=4 ttl=59 time=37.3 ms [1595191437.064550] 1408 bytes from 2a04:4e42:200::323 (2a04:4e42:200::323): icmp_seq=5 ttl=59 time=32.2 ms [1595191438.065410] 1408 bytes from 2a04:4e42:200::323 (2a04:4e42:200::323): icmp_seq=6 ttl=59 time=30.8 ms [1595191439.076718] 1408 bytes from 2a04:4e42:200::323 (2a04:4e42:200::323): icmp_seq=7 ttl=59 time=40.6 ms [1595191440.076357] 1408 bytes from 2a04:4e42:200::323 (2a04:4e42:200::323): icmp_seq=8 ttl=59 time=38.2 ms [1595191441.079078] 1408 bytes from 2a04:4e42:200::323 (2a04:4e42:200::323): icmp_seq=9 ttl=59 time=39.0 ms [1595191442.077537] 1408 bytes from 2a04:4e42:200::323 (2a04:4e42:200::323): icmp_seq=10 ttl=59 time=34.3 ms [1595191443.104345] 1408 bytes from 2a04:4e42:200::323 (2a04:4e42:200::323): icmp_seq=11 ttl=59 time=59.0 ms [1595191444.083741] 1408 bytes from 2a04:4e42:200::323 (2a04:4e42:200::323): icmp_seq=12 ttl=59 time=36.8 ms [1595191445.086748] 1408 bytes from 2a04:4e42:200::323 (2a04:4e42:200::323): icmp_seq=13 ttl=59 time=37.6 ms [1595191446.088958] 1408 bytes from 2a04:4e42:200::323 (2a04:4e42:200::323): icmp_seq=14 ttl=59 time=37.3 ms [1595191447.086122] 1408 bytes from 2a04:4e42:200::323 (2a04:4e42:200::323): icmp_seq=15 ttl=59 time=30.9 ms [1595191448.088312] 1408 bytes from 2a04:4e42:200::323 (2a04:4e42:200::323): icmp_seq=16 ttl=59 time=30.8 ms [1595191449.098353] 1408 bytes from 2a04:4e42:200::323 (2a04:4e42:200::323): icmp_seq=17 ttl=59 time=38.9 ms [1595191450.099590] 1408 bytes from 2a04:4e42:200::323 (2a04:4e42:200::323): icmp_seq=18 ttl=59 time=38.1 ms [1595191451.101050] 1408 bytes from 2a04:4e42:200::323 (2a04:4e42:200::323): icmp_seq=19 ttl=59 time=37.8 ms [1595191452.100239] 1408 bytes from 2a04:4e42:200::323 (2a04:4e42:200::323): icmp_seq=20 ttl=59 time=35.0 ms --- www.cnn.com ping statistics --- 20 packets transmitted, 20 received, 0% packet loss, time 19042ms rtt min/avg/max/mdev = 30.757/37.536/59.021/5.967 ms jc-1.17.3/tests/fixtures/fedora32/ping6-hostname-O-D-p.json000066400000000000000000000070521415226333200231700ustar00rootroot00000000000000{"destination_ip": "2a04:4e42:2e::323", "data_bytes": 56, "pattern": "0xabcd", "destination": "www.cnn.com", "packets_transmitted": 20, "packets_received": 20, "packet_loss_percent": 0.0, "duplicates": 0, "time_ms": 19043.0, "round_trip_ms_min": 38.533, "round_trip_ms_avg": 44.877, "round_trip_ms_max": 51.366, "round_trip_ms_stddev": 3.83, "responses": [{"type": "reply", "timestamp": 1595191452.2553, "bytes": 64, "response_ip": "2a04:4e42:2e::323", "icmp_seq": 1, "ttl": 56, "time_ms": 39.1, "duplicate": false}, {"type": "reply", "timestamp": 1595191453.229184, "bytes": 64, "response_ip": "2a04:4e42:2e::323", "icmp_seq": 2, "ttl": 56, "time_ms": 47.9, "duplicate": false}, {"type": "reply", "timestamp": 1595191454.229065, "bytes": 64, "response_ip": "2a04:4e42:2e::323", "icmp_seq": 3, "ttl": 56, "time_ms": 46.4, "duplicate": false}, {"type": "reply", "timestamp": 1595191455.230571, "bytes": 64, "response_ip": "2a04:4e42:2e::323", "icmp_seq": 4, "ttl": 56, "time_ms": 45.1, "duplicate": false}, {"type": "reply", "timestamp": 1595191456.233811, "bytes": 64, "response_ip": "2a04:4e42:2e::323", "icmp_seq": 5, "ttl": 56, "time_ms": 45.7, "duplicate": false}, {"type": "reply", "timestamp": 1595191457.228052, "bytes": 64, "response_ip": "2a04:4e42:2e::323", "icmp_seq": 6, "ttl": 56, "time_ms": 38.9, "duplicate": false}, {"type": "reply", "timestamp": 1595191458.228764, "bytes": 64, "response_ip": "2a04:4e42:2e::323", "icmp_seq": 7, "ttl": 56, "time_ms": 39.0, "duplicate": false}, {"type": "reply", "timestamp": 1595191459.243633, "bytes": 64, "response_ip": "2a04:4e42:2e::323", "icmp_seq": 8, "ttl": 56, "time_ms": 51.4, "duplicate": false}, {"type": "reply", "timestamp": 1595191460.243509, "bytes": 64, "response_ip": "2a04:4e42:2e::323", "icmp_seq": 9, "ttl": 56, "time_ms": 49.1, "duplicate": false}, {"type": "reply", "timestamp": 1595191461.242713, "bytes": 64, "response_ip": "2a04:4e42:2e::323", "icmp_seq": 10, "ttl": 56, "time_ms": 46.6, "duplicate": false}, {"type": "reply", "timestamp": 1595191462.246016, "bytes": 64, "response_ip": "2a04:4e42:2e::323", "icmp_seq": 11, "ttl": 56, "time_ms": 47.1, "duplicate": false}, {"type": "reply", "timestamp": 1595191463.240552, "bytes": 64, "response_ip": "2a04:4e42:2e::323", "icmp_seq": 12, "ttl": 56, "time_ms": 38.6, "duplicate": false}, {"type": "reply", "timestamp": 1595191464.248594, "bytes": 64, "response_ip": "2a04:4e42:2e::323", "icmp_seq": 13, "ttl": 56, "time_ms": 44.3, "duplicate": false}, {"type": "reply", "timestamp": 1595191465.254128, "bytes": 64, "response_ip": "2a04:4e42:2e::323", "icmp_seq": 14, "ttl": 56, "time_ms": 48.8, "duplicate": false}, {"type": "reply", "timestamp": 1595191466.253777, "bytes": 64, "response_ip": "2a04:4e42:2e::323", "icmp_seq": 15, "ttl": 56, "time_ms": 45.2, "duplicate": false}, {"type": "reply", "timestamp": 1595191467.259039, "bytes": 64, "response_ip": "2a04:4e42:2e::323", "icmp_seq": 16, "ttl": 56, "time_ms": 47.3, "duplicate": false}, {"type": "reply", "timestamp": 1595191468.252991, "bytes": 64, "response_ip": "2a04:4e42:2e::323", "icmp_seq": 17, "ttl": 56, "time_ms": 38.5, "duplicate": false}, {"type": "reply", "timestamp": 1595191469.263167, "bytes": 64, "response_ip": "2a04:4e42:2e::323", "icmp_seq": 18, "ttl": 56, "time_ms": 47.0, "duplicate": false}, {"type": "reply", "timestamp": 1595191470.264838, "bytes": 64, "response_ip": "2a04:4e42:2e::323", "icmp_seq": 19, "ttl": 56, "time_ms": 46.3, "duplicate": false}, {"type": "reply", "timestamp": 1595191471.266951, "bytes": 64, "response_ip": "2a04:4e42:2e::323", "icmp_seq": 20, "ttl": 56, "time_ms": 45.4, "duplicate": false}]} jc-1.17.3/tests/fixtures/fedora32/ping6-hostname-O-D-p.out000066400000000000000000000044351415226333200230300ustar00rootroot00000000000000PATTERN: 0xabcd PING www.cnn.com(2a04:4e42:2e::323 (2a04:4e42:2e::323)) 56 data bytes [1595191452.255300] 64 bytes from 2a04:4e42:2e::323 (2a04:4e42:2e::323): icmp_seq=1 ttl=56 time=39.1 ms [1595191453.229184] 64 bytes from 2a04:4e42:2e::323 (2a04:4e42:2e::323): icmp_seq=2 ttl=56 time=47.9 ms [1595191454.229065] 64 bytes from 2a04:4e42:2e::323 (2a04:4e42:2e::323): icmp_seq=3 ttl=56 time=46.4 ms [1595191455.230571] 64 bytes from 2a04:4e42:2e::323 (2a04:4e42:2e::323): icmp_seq=4 ttl=56 time=45.1 ms [1595191456.233811] 64 bytes from 2a04:4e42:2e::323 (2a04:4e42:2e::323): icmp_seq=5 ttl=56 time=45.7 ms [1595191457.228052] 64 bytes from 2a04:4e42:2e::323 (2a04:4e42:2e::323): icmp_seq=6 ttl=56 time=38.9 ms [1595191458.228764] 64 bytes from 2a04:4e42:2e::323 (2a04:4e42:2e::323): icmp_seq=7 ttl=56 time=39.0 ms [1595191459.243633] 64 bytes from 2a04:4e42:2e::323 (2a04:4e42:2e::323): icmp_seq=8 ttl=56 time=51.4 ms [1595191460.243509] 64 bytes from 2a04:4e42:2e::323 (2a04:4e42:2e::323): icmp_seq=9 ttl=56 time=49.1 ms [1595191461.242713] 64 bytes from 2a04:4e42:2e::323 (2a04:4e42:2e::323): icmp_seq=10 ttl=56 time=46.6 ms [1595191462.246016] 64 bytes from 2a04:4e42:2e::323 (2a04:4e42:2e::323): icmp_seq=11 ttl=56 time=47.1 ms [1595191463.240552] 64 bytes from 2a04:4e42:2e::323 (2a04:4e42:2e::323): icmp_seq=12 ttl=56 time=38.6 ms [1595191464.248594] 64 bytes from 2a04:4e42:2e::323 (2a04:4e42:2e::323): icmp_seq=13 ttl=56 time=44.3 ms [1595191465.254128] 64 bytes from 2a04:4e42:2e::323 (2a04:4e42:2e::323): icmp_seq=14 ttl=56 time=48.8 ms [1595191466.253777] 64 bytes from 2a04:4e42:2e::323 (2a04:4e42:2e::323): icmp_seq=15 ttl=56 time=45.2 ms [1595191467.259039] 64 bytes from 2a04:4e42:2e::323 (2a04:4e42:2e::323): icmp_seq=16 ttl=56 time=47.3 ms [1595191468.252991] 64 bytes from 2a04:4e42:2e::323 (2a04:4e42:2e::323): icmp_seq=17 ttl=56 time=38.5 ms [1595191469.263167] 64 bytes from 2a04:4e42:2e::323 (2a04:4e42:2e::323): icmp_seq=18 ttl=56 time=47.0 ms [1595191470.264838] 64 bytes from 2a04:4e42:2e::323 (2a04:4e42:2e::323): icmp_seq=19 ttl=56 time=46.3 ms [1595191471.266951] 64 bytes from 2a04:4e42:2e::323 (2a04:4e42:2e::323): icmp_seq=20 ttl=56 time=45.4 ms --- www.cnn.com ping statistics --- 20 packets transmitted, 20 received, 0% packet loss, time 19043ms rtt min/avg/max/mdev = 38.533/44.877/51.366/3.830 ms jc-1.17.3/tests/fixtures/fedora32/ping6-hostname-O-p-streaming.json000066400000000000000000000107331415226333200247760ustar00rootroot00000000000000[{"type":"reply","destination_ip":"2a04:4e42:400::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:400::323","icmp_seq":1,"ttl":59,"time_ms":24.0,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:400::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:400::323","icmp_seq":2,"ttl":59,"time_ms":30.5,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:400::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:400::323","icmp_seq":3,"ttl":59,"time_ms":23.6,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:400::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:400::323","icmp_seq":4,"ttl":59,"time_ms":35.8,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:400::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:400::323","icmp_seq":5,"ttl":59,"time_ms":32.3,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:400::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:400::323","icmp_seq":6,"ttl":59,"time_ms":32.4,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:400::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:400::323","icmp_seq":7,"ttl":59,"time_ms":26.5,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:400::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:400::323","icmp_seq":8,"ttl":59,"time_ms":31.1,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:400::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:400::323","icmp_seq":9,"ttl":59,"time_ms":33.9,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:400::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:400::323","icmp_seq":10,"ttl":59,"time_ms":32.5,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:400::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:400::323","icmp_seq":11,"ttl":59,"time_ms":31.0,"duplicate":false},{"type":"timeout","destination_ip":"2a04:4e42:400::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"icmp_seq":12},{"type":"reply","destination_ip":"2a04:4e42:400::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:400::323","icmp_seq":13,"ttl":59,"time_ms":31.9,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:400::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:400::323","icmp_seq":14,"ttl":59,"time_ms":112.0,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:400::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:400::323","icmp_seq":15,"ttl":59,"time_ms":162.0,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:400::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:400::323","icmp_seq":16,"ttl":59,"time_ms":223.0,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:400::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:400::323","icmp_seq":17,"ttl":59,"time_ms":281.0,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:400::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:400::323","icmp_seq":18,"ttl":59,"time_ms":33.4,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:400::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:400::323","icmp_seq":19,"ttl":59,"time_ms":32.7,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:400::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:400::323","icmp_seq":20,"ttl":59,"time_ms":42.3,"duplicate":false},{"type":"summary","destination_ip":"2a04:4e42:400::323","sent_bytes":56,"pattern":"0xabcd","packets_transmitted":20,"packets_received":19,"packet_loss_percent":5.0,"duplicates":0,"time_ms":19049.0,"round_trip_ms_min":23.598,"round_trip_ms_avg":65.877,"round_trip_ms_max":281.064,"round_trip_ms_stddev":72.64}] jc-1.17.3/tests/fixtures/fedora32/ping6-hostname-O-p.json000066400000000000000000000063431415226333200230110ustar00rootroot00000000000000{"destination_ip": "2a04:4e42:400::323", "data_bytes": 56, "pattern": "0xabcd", "destination": "www.cnn.com", "packets_transmitted": 20, "packets_received": 19, "packet_loss_percent": 5.0, "duplicates": 0, "time_ms": 19049.0, "round_trip_ms_min": 23.598, "round_trip_ms_avg": 65.877, "round_trip_ms_max": 281.064, "round_trip_ms_stddev": 72.64, "responses": [{"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:400::323", "icmp_seq": 1, "ttl": 59, "time_ms": 24.0, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:400::323", "icmp_seq": 2, "ttl": 59, "time_ms": 30.5, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:400::323", "icmp_seq": 3, "ttl": 59, "time_ms": 23.6, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:400::323", "icmp_seq": 4, "ttl": 59, "time_ms": 35.8, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:400::323", "icmp_seq": 5, "ttl": 59, "time_ms": 32.3, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:400::323", "icmp_seq": 6, "ttl": 59, "time_ms": 32.4, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:400::323", "icmp_seq": 7, "ttl": 59, "time_ms": 26.5, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:400::323", "icmp_seq": 8, "ttl": 59, "time_ms": 31.1, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:400::323", "icmp_seq": 9, "ttl": 59, "time_ms": 33.9, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:400::323", "icmp_seq": 10, "ttl": 59, "time_ms": 32.5, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:400::323", "icmp_seq": 11, "ttl": 59, "time_ms": 31.0, "duplicate": false}, {"type": "timeout", "timestamp": null, "icmp_seq": 12}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:400::323", "icmp_seq": 13, "ttl": 59, "time_ms": 31.9, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:400::323", "icmp_seq": 14, "ttl": 59, "time_ms": 112.0, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:400::323", "icmp_seq": 15, "ttl": 59, "time_ms": 162.0, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:400::323", "icmp_seq": 16, "ttl": 59, "time_ms": 223.0, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:400::323", "icmp_seq": 17, "ttl": 59, "time_ms": 281.0, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:400::323", "icmp_seq": 18, "ttl": 59, "time_ms": 33.4, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:400::323", "icmp_seq": 19, "ttl": 59, "time_ms": 32.7, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:400::323", "icmp_seq": 20, "ttl": 59, "time_ms": 42.3, "duplicate": false}]} jc-1.17.3/tests/fixtures/fedora32/ping6-hostname-O-p.out000066400000000000000000000035741415226333200226520ustar00rootroot00000000000000PATTERN: 0xabcd PING www.cnn.com(2a04:4e42:400::323 (2a04:4e42:400::323)) 56 data bytes 64 bytes from 2a04:4e42:400::323 (2a04:4e42:400::323): icmp_seq=1 ttl=59 time=24.0 ms 64 bytes from 2a04:4e42:400::323 (2a04:4e42:400::323): icmp_seq=2 ttl=59 time=30.5 ms 64 bytes from 2a04:4e42:400::323 (2a04:4e42:400::323): icmp_seq=3 ttl=59 time=23.6 ms 64 bytes from 2a04:4e42:400::323 (2a04:4e42:400::323): icmp_seq=4 ttl=59 time=35.8 ms 64 bytes from 2a04:4e42:400::323 (2a04:4e42:400::323): icmp_seq=5 ttl=59 time=32.3 ms 64 bytes from 2a04:4e42:400::323 (2a04:4e42:400::323): icmp_seq=6 ttl=59 time=32.4 ms 64 bytes from 2a04:4e42:400::323 (2a04:4e42:400::323): icmp_seq=7 ttl=59 time=26.5 ms 64 bytes from 2a04:4e42:400::323 (2a04:4e42:400::323): icmp_seq=8 ttl=59 time=31.1 ms 64 bytes from 2a04:4e42:400::323 (2a04:4e42:400::323): icmp_seq=9 ttl=59 time=33.9 ms 64 bytes from 2a04:4e42:400::323 (2a04:4e42:400::323): icmp_seq=10 ttl=59 time=32.5 ms 64 bytes from 2a04:4e42:400::323 (2a04:4e42:400::323): icmp_seq=11 ttl=59 time=31.0 ms no answer yet for icmp_seq=12 64 bytes from 2a04:4e42:400::323 (2a04:4e42:400::323): icmp_seq=13 ttl=59 time=31.9 ms 64 bytes from 2a04:4e42:400::323 (2a04:4e42:400::323): icmp_seq=14 ttl=59 time=112 ms 64 bytes from 2a04:4e42:400::323 (2a04:4e42:400::323): icmp_seq=15 ttl=59 time=162 ms 64 bytes from 2a04:4e42:400::323 (2a04:4e42:400::323): icmp_seq=16 ttl=59 time=223 ms 64 bytes from 2a04:4e42:400::323 (2a04:4e42:400::323): icmp_seq=17 ttl=59 time=281 ms 64 bytes from 2a04:4e42:400::323 (2a04:4e42:400::323): icmp_seq=18 ttl=59 time=33.4 ms 64 bytes from 2a04:4e42:400::323 (2a04:4e42:400::323): icmp_seq=19 ttl=59 time=32.7 ms 64 bytes from 2a04:4e42:400::323 (2a04:4e42:400::323): icmp_seq=20 ttl=59 time=42.3 ms --- www.cnn.com ping statistics --- 20 packets transmitted, 19 received, 5% packet loss, time 19049ms rtt min/avg/max/mdev = 23.598/65.877/281.064/72.640 ms jc-1.17.3/tests/fixtures/fedora32/ping6-ip-O-D-p-streaming.json000066400000000000000000000114721415226333200237520ustar00rootroot00000000000000[{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1595191413.333769,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":1,"ttl":59,"time_ms":34.6,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1595191414.342973,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":2,"ttl":59,"time_ms":41.9,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1595191415.332214,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":3,"ttl":59,"time_ms":28.8,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1595191416.342603,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":4,"ttl":59,"time_ms":36.8,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1595191417.344996,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":5,"ttl":59,"time_ms":37.6,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1595191418.348619,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":6,"ttl":59,"time_ms":37.9,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1595191419.357154,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":7,"ttl":59,"time_ms":44.4,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1595191420.350087,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":8,"ttl":59,"time_ms":35.1,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1595191421.346691,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":9,"ttl":59,"time_ms":29.9,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1595191422.355843,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":10,"ttl":59,"time_ms":37.4,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1595191423.397934,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":11,"ttl":59,"time_ms":76.7,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1595191424.470798,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":12,"ttl":59,"time_ms":148.0,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1595191425.358652,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":13,"ttl":59,"time_ms":33.6,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1595191426.404587,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":14,"ttl":59,"time_ms":77.2,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1595191427.359785,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":15,"ttl":59,"time_ms":29.7,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1595191428.367539,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":16,"ttl":59,"time_ms":34.9,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1595191429.372551,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":17,"ttl":59,"time_ms":37.2,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1595191430.364571,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":18,"ttl":59,"time_ms":27.9,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1595191431.375232,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":19,"ttl":59,"time_ms":37.1,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1595191432.375802,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":20,"ttl":59,"time_ms":34.3,"duplicate":false},{"type":"summary","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","packets_transmitted":20,"packets_received":20,"packet_loss_percent":0.0,"duplicates":0,"time_ms":19042.0,"round_trip_ms_min":27.88,"round_trip_ms_avg":45.072,"round_trip_ms_max":148.38,"round_trip_ms_stddev":27.078}] jc-1.17.3/tests/fixtures/fedora32/ping6-ip-O-D-p.json000066400000000000000000000071121415226333200217570ustar00rootroot00000000000000{"destination_ip": "2a04:4e42:600::323", "data_bytes": 56, "pattern": "0xabcd", "destination": "2a04:4e42:600::323", "packets_transmitted": 20, "packets_received": 20, "packet_loss_percent": 0.0, "duplicates": 0, "time_ms": 19042.0, "round_trip_ms_min": 27.88, "round_trip_ms_avg": 45.072, "round_trip_ms_max": 148.38, "round_trip_ms_stddev": 27.078, "responses": [{"type": "reply", "timestamp": 1595191413.333769, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 1, "ttl": 59, "time_ms": 34.6, "duplicate": false}, {"type": "reply", "timestamp": 1595191414.342973, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 2, "ttl": 59, "time_ms": 41.9, "duplicate": false}, {"type": "reply", "timestamp": 1595191415.332214, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 3, "ttl": 59, "time_ms": 28.8, "duplicate": false}, {"type": "reply", "timestamp": 1595191416.342603, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 4, "ttl": 59, "time_ms": 36.8, "duplicate": false}, {"type": "reply", "timestamp": 1595191417.344996, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 5, "ttl": 59, "time_ms": 37.6, "duplicate": false}, {"type": "reply", "timestamp": 1595191418.348619, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 6, "ttl": 59, "time_ms": 37.9, "duplicate": false}, {"type": "reply", "timestamp": 1595191419.357154, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 7, "ttl": 59, "time_ms": 44.4, "duplicate": false}, {"type": "reply", "timestamp": 1595191420.350087, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 8, "ttl": 59, "time_ms": 35.1, "duplicate": false}, {"type": "reply", "timestamp": 1595191421.346691, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 9, "ttl": 59, "time_ms": 29.9, "duplicate": false}, {"type": "reply", "timestamp": 1595191422.355843, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 10, "ttl": 59, "time_ms": 37.4, "duplicate": false}, {"type": "reply", "timestamp": 1595191423.397934, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 11, "ttl": 59, "time_ms": 76.7, "duplicate": false}, {"type": "reply", "timestamp": 1595191424.470798, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 12, "ttl": 59, "time_ms": 148.0, "duplicate": false}, {"type": "reply", "timestamp": 1595191425.358652, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 13, "ttl": 59, "time_ms": 33.6, "duplicate": false}, {"type": "reply", "timestamp": 1595191426.404587, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 14, "ttl": 59, "time_ms": 77.2, "duplicate": false}, {"type": "reply", "timestamp": 1595191427.359785, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 15, "ttl": 59, "time_ms": 29.7, "duplicate": false}, {"type": "reply", "timestamp": 1595191428.367539, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 16, "ttl": 59, "time_ms": 34.9, "duplicate": false}, {"type": "reply", "timestamp": 1595191429.372551, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 17, "ttl": 59, "time_ms": 37.2, "duplicate": false}, {"type": "reply", "timestamp": 1595191430.364571, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 18, "ttl": 59, "time_ms": 27.9, "duplicate": false}, {"type": "reply", "timestamp": 1595191431.375232, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 19, "ttl": 59, "time_ms": 37.1, "duplicate": false}, {"type": "reply", "timestamp": 1595191432.375802, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 20, "ttl": 59, "time_ms": 34.3, "duplicate": false}]} jc-1.17.3/tests/fixtures/fedora32/ping6-ip-O-D-p.out000066400000000000000000000036351415226333200216230ustar00rootroot00000000000000PATTERN: 0xabcd PING 2a04:4e42:600::323(2a04:4e42:600::323) 56 data bytes [1595191413.333769] 64 bytes from 2a04:4e42:600::323: icmp_seq=1 ttl=59 time=34.6 ms [1595191414.342973] 64 bytes from 2a04:4e42:600::323: icmp_seq=2 ttl=59 time=41.9 ms [1595191415.332214] 64 bytes from 2a04:4e42:600::323: icmp_seq=3 ttl=59 time=28.8 ms [1595191416.342603] 64 bytes from 2a04:4e42:600::323: icmp_seq=4 ttl=59 time=36.8 ms [1595191417.344996] 64 bytes from 2a04:4e42:600::323: icmp_seq=5 ttl=59 time=37.6 ms [1595191418.348619] 64 bytes from 2a04:4e42:600::323: icmp_seq=6 ttl=59 time=37.9 ms [1595191419.357154] 64 bytes from 2a04:4e42:600::323: icmp_seq=7 ttl=59 time=44.4 ms [1595191420.350087] 64 bytes from 2a04:4e42:600::323: icmp_seq=8 ttl=59 time=35.1 ms [1595191421.346691] 64 bytes from 2a04:4e42:600::323: icmp_seq=9 ttl=59 time=29.9 ms [1595191422.355843] 64 bytes from 2a04:4e42:600::323: icmp_seq=10 ttl=59 time=37.4 ms [1595191423.397934] 64 bytes from 2a04:4e42:600::323: icmp_seq=11 ttl=59 time=76.7 ms [1595191424.470798] 64 bytes from 2a04:4e42:600::323: icmp_seq=12 ttl=59 time=148 ms [1595191425.358652] 64 bytes from 2a04:4e42:600::323: icmp_seq=13 ttl=59 time=33.6 ms [1595191426.404587] 64 bytes from 2a04:4e42:600::323: icmp_seq=14 ttl=59 time=77.2 ms [1595191427.359785] 64 bytes from 2a04:4e42:600::323: icmp_seq=15 ttl=59 time=29.7 ms [1595191428.367539] 64 bytes from 2a04:4e42:600::323: icmp_seq=16 ttl=59 time=34.9 ms [1595191429.372551] 64 bytes from 2a04:4e42:600::323: icmp_seq=17 ttl=59 time=37.2 ms [1595191430.364571] 64 bytes from 2a04:4e42:600::323: icmp_seq=18 ttl=59 time=27.9 ms [1595191431.375232] 64 bytes from 2a04:4e42:600::323: icmp_seq=19 ttl=59 time=37.1 ms [1595191432.375802] 64 bytes from 2a04:4e42:600::323: icmp_seq=20 ttl=59 time=34.3 ms --- 2a04:4e42:600::323 ping statistics --- 20 packets transmitted, 20 received, 0% packet loss, time 19042ms rtt min/avg/max/mdev = 27.880/45.072/148.380/27.078 ms jc-1.17.3/tests/fixtures/fedora32/ping6-ip-O-p-streaming.json000066400000000000000000000104311415226333200235630ustar00rootroot00000000000000[{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":1,"ttl":59,"time_ms":34.9,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":2,"ttl":59,"time_ms":36.6,"duplicate":false},{"type":"timeout","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"icmp_seq":3},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":4,"ttl":59,"time_ms":28.9,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":5,"ttl":59,"time_ms":36.8,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":6,"ttl":59,"time_ms":28.9,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":7,"ttl":59,"time_ms":39.5,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":8,"ttl":59,"time_ms":28.2,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":9,"ttl":59,"time_ms":28.9,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":10,"ttl":59,"time_ms":36.5,"duplicate":false},{"type":"timeout","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"icmp_seq":11},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":12,"ttl":59,"time_ms":33.9,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":13,"ttl":59,"time_ms":28.1,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":14,"ttl":59,"time_ms":27.6,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":15,"ttl":59,"time_ms":36.0,"duplicate":false},{"type":"timeout","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"icmp_seq":16},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":17,"ttl":59,"time_ms":26.6,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":18,"ttl":59,"time_ms":38.5,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":19,"ttl":59,"time_ms":43.9,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":20,"ttl":59,"time_ms":37.9,"duplicate":false},{"type":"summary","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","packets_transmitted":20,"packets_received":17,"packet_loss_percent":15.0,"duplicates":0,"time_ms":19193.0,"round_trip_ms_min":26.566,"round_trip_ms_avg":33.623,"round_trip_ms_max":43.945,"round_trip_ms_stddev":5.029}] jc-1.17.3/tests/fixtures/fedora32/ping6-ip-O-p.json000066400000000000000000000060461415226333200216030ustar00rootroot00000000000000{"destination_ip": "2a04:4e42:600::323", "data_bytes": 56, "pattern": "0xabcd", "destination": "2a04:4e42:600::323", "packets_transmitted": 20, "packets_received": 17, "packet_loss_percent": 15.0, "duplicates": 0, "time_ms": 19193.0, "round_trip_ms_min": 26.566, "round_trip_ms_avg": 33.623, "round_trip_ms_max": 43.945, "round_trip_ms_stddev": 5.029, "responses": [{"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 1, "ttl": 59, "time_ms": 34.9, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 2, "ttl": 59, "time_ms": 36.6, "duplicate": false}, {"type": "timeout", "timestamp": null, "icmp_seq": 3}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 4, "ttl": 59, "time_ms": 28.9, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 5, "ttl": 59, "time_ms": 36.8, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 6, "ttl": 59, "time_ms": 28.9, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 7, "ttl": 59, "time_ms": 39.5, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 8, "ttl": 59, "time_ms": 28.2, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 9, "ttl": 59, "time_ms": 28.9, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 10, "ttl": 59, "time_ms": 36.5, "duplicate": false}, {"type": "timeout", "timestamp": null, "icmp_seq": 11}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 12, "ttl": 59, "time_ms": 33.9, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 13, "ttl": 59, "time_ms": 28.1, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 14, "ttl": 59, "time_ms": 27.6, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 15, "ttl": 59, "time_ms": 36.0, "duplicate": false}, {"type": "timeout", "timestamp": null, "icmp_seq": 16}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 17, "ttl": 59, "time_ms": 26.6, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 18, "ttl": 59, "time_ms": 38.5, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 19, "ttl": 59, "time_ms": 43.9, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 20, "ttl": 59, "time_ms": 37.9, "duplicate": false}]} jc-1.17.3/tests/fixtures/fedora32/ping6-ip-O-p.out000066400000000000000000000026411415226333200214360ustar00rootroot00000000000000PATTERN: 0xabcd PING 2a04:4e42:600::323(2a04:4e42:600::323) 56 data bytes 64 bytes from 2a04:4e42:600::323: icmp_seq=1 ttl=59 time=34.9 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=2 ttl=59 time=36.6 ms no answer yet for icmp_seq=3 64 bytes from 2a04:4e42:600::323: icmp_seq=4 ttl=59 time=28.9 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=5 ttl=59 time=36.8 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=6 ttl=59 time=28.9 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=7 ttl=59 time=39.5 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=8 ttl=59 time=28.2 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=9 ttl=59 time=28.9 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=10 ttl=59 time=36.5 ms no answer yet for icmp_seq=11 64 bytes from 2a04:4e42:600::323: icmp_seq=12 ttl=59 time=33.9 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=13 ttl=59 time=28.1 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=14 ttl=59 time=27.6 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=15 ttl=59 time=36.0 ms no answer yet for icmp_seq=16 64 bytes from 2a04:4e42:600::323: icmp_seq=17 ttl=59 time=26.6 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=18 ttl=59 time=38.5 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=19 ttl=59 time=43.9 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=20 ttl=59 time=37.9 ms --- 2a04:4e42:600::323 ping statistics --- 20 packets transmitted, 17 received, 15% packet loss, time 19193ms rtt min/avg/max/mdev = 26.566/33.623/43.945/5.029 ms jc-1.17.3/tests/fixtures/freebsd12/000077500000000000000000000000001415226333200167705ustar00rootroot00000000000000jc-1.17.3/tests/fixtures/freebsd12/arp-a.json000066400000000000000000000006701415226333200206660ustar00rootroot00000000000000[{"name": null, "address": "192.168.71.163", "hwtype": "ethernet", "hwaddress": "00:0c:29:1a:4e:3b", "iface": "em0", "permanent": true}, {"name": null, "address": "192.168.71.2", "hwtype": "ethernet", "hwaddress": "00:50:56:f7:4a:fc", "iface": "em0", "permanent": false, "expires": 942}, {"name": null, "address": "192.168.71.1", "hwtype": "ethernet", "hwaddress": "00:50:56:c0:00:08", "iface": "em0", "permanent": false, "expires": 1182}] jc-1.17.3/tests/fixtures/freebsd12/arp-a.out000066400000000000000000000003431415226333200205210ustar00rootroot00000000000000? (192.168.71.163) at 00:0c:29:1a:4e:3b on em0 permanent [ethernet] ? (192.168.71.2) at 00:50:56:f7:4a:fc on em0 expires in 942 seconds [ethernet] ? (192.168.71.1) at 00:50:56:c0:00:08 on em0 expires in 1182 seconds [ethernet] jc-1.17.3/tests/fixtures/freebsd12/last.json000066400000000000000000000015131415226333200206260ustar00rootroot00000000000000[{"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Thu May 28 21:29", "logout": "still logged in"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Thu May 28 04:13", "logout": "21:29", "duration": "17:16"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Wed May 27 16:09", "logout": "04:13", "duration": "12:03"}, {"user": "root", "tty": "ttyv0", "hostname": null, "login": "Wed May 27 12:48", "logout": "still logged in"}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Wed May 27 12:47", "logout": "16:09", "duration": "03:22"}, {"user": "kbrazil", "tty": "ttyv0", "hostname": null, "login": "Wed May 27 12:46", "logout": "12:48", "duration": "00:01"}, {"user": "boot time", "tty": null, "hostname": null, "login": "Wed May 27 12:46"}] jc-1.17.3/tests/fixtures/freebsd12/last.out000066400000000000000000000010711415226333200204630ustar00rootroot00000000000000kbrazil pts/0 192.168.71.1 Thu May 28 21:29 still logged in kbrazil pts/0 192.168.71.1 Thu May 28 04:13 - 21:29 (17:16) kbrazil pts/0 192.168.71.1 Wed May 27 16:09 - 04:13 (12:03) root ttyv0 Wed May 27 12:48 still logged in kbrazil pts/0 192.168.71.1 Wed May 27 12:47 - 16:09 (03:22) kbrazil ttyv0 Wed May 27 12:46 - 12:48 (00:01) boot time Wed May 27 12:46 utx.log begins Wed May 27 12:46:05 PDT 2020 jc-1.17.3/tests/fixtures/freebsd12/netstat-Aa.json000066400000000000000000000100631415226333200216640ustar00rootroot00000000000000[{"tcpcb": "fffff80003df43d0", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.71.1", "foreign_address": "192.168.71.1", "state": "ESTABLISHED", "kind": "network", "local_port": "ssh", "foreign_port": "56321", "transport_protocol": "tcp", "network_protocol": "ipv4", "foreign_port_num": 56321}, {"tcpcb": "fffff80003df47a0", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "*", "state": "LISTEN", "kind": "network", "local_port": "smtp", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv4"}, {"tcpcb": "fffff80003df4b70", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": "LISTEN", "kind": "network", "local_port": "ssh", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv4"}, {"tcpcb": "fffff80003df0000", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": "LISTEN", "kind": "network", "local_port": "ssh", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv6"}, {"tcpcb": "fffff80003ae81e8", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "kind": "network", "local_port": "syslog", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"tcpcb": "fffff80003ae87a0", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "kind": "network", "local_port": "syslog", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6"}, {"address": "fffff80003ab6100", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6200", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "fffff80003ab6200", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6100", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "fffff80003ab6300", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "fffff80003ab6800", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6900", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "fffff80003ab6900", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6800", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "fffff80003abf000", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "fffff80003c581e0", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/devd.pipe", "kind": "socket"}, {"address": "fffff80003ac3e00", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6c00", "refs": "0", "nextref": "fffff80003ab6400", "kind": "socket"}, {"address": "fffff80003ab6400", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6c00", "refs": "0", "nextref": "fffff80003ab6000", "kind": "socket"}, {"address": "fffff80003ab6000", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6c00", "refs": "0", "nextref": "fffff80003ab6600", "kind": "socket"}, {"address": "fffff80003ab6500", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6d00", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "fffff80003ab6600", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6c00", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "fffff80003ab6c00", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "fffff80003c59d20", "conn": "0", "refs": "fffff80003ac3e00", "nextref": "0", "addr": "/var/run/logpriv", "kind": "socket"}, {"address": "fffff80003ab6d00", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "fffff80003c67000", "conn": "0", "refs": "fffff80003ab6500", "nextref": "0", "addr": "/var/run/log", "kind": "socket"}, {"address": "fffff80003ab6e00", "type": "seqpac", "recv_q": 0, "send_q": 0, "unix_inode": "fffff80003c58000", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/devd.seqpacket.pipe", "kind": "socket"}] jc-1.17.3/tests/fixtures/freebsd12/netstat-Aa.out000066400000000000000000000044371415226333200215320ustar00rootroot00000000000000Active Internet connections (including servers) Tcpcb Proto Recv-Q Send-Q Local Address Foreign Address (state) fffff80003df43d0 tcp4 0 0 192.168.71.1.ssh 192.168.71.1.56321 ESTABLISHED fffff80003df47a0 tcp4 0 0 localhost.smtp *.* LISTEN fffff80003df4b70 tcp4 0 0 *.ssh *.* LISTEN fffff80003df0000 tcp6 0 0 *.ssh *.* LISTEN fffff80003ae81e8 udp4 0 0 *.syslog *.* fffff80003ae87a0 udp6 0 0 *.syslog *.* Active UNIX domain sockets Address Type Recv-Q Send-Q Inode Conn Refs Nextref Addr fffff80003ab6100 stream 0 0 0 fffff80003ab6200 0 0 fffff80003ab6200 stream 0 0 0 fffff80003ab6100 0 0 fffff80003ab6300 stream 0 0 0 0 0 0 fffff80003ab6800 stream 0 0 0 fffff80003ab6900 0 0 fffff80003ab6900 stream 0 0 0 fffff80003ab6800 0 0 fffff80003abf000 stream 0 0 fffff80003c581e0 0 0 0 /var/run/devd.pipe fffff80003ac3e00 dgram 0 0 0 fffff80003ab6c00 0 fffff80003ab6400 fffff80003ab6400 dgram 0 0 0 fffff80003ab6c00 0 fffff80003ab6000 fffff80003ab6000 dgram 0 0 0 fffff80003ab6c00 0 fffff80003ab6600 fffff80003ab6500 dgram 0 0 0 fffff80003ab6d00 0 0 fffff80003ab6600 dgram 0 0 0 fffff80003ab6c00 0 0 fffff80003ab6c00 dgram 0 0 fffff80003c59d20 0 fffff80003ac3e00 0 /var/run/logpriv fffff80003ab6d00 dgram 0 0 fffff80003c67000 0 fffff80003ab6500 0 /var/run/log fffff80003ab6e00 seqpac 0 0 fffff80003c58000 0 0 0 /var/run/devd.seqpacket.pipe jc-1.17.3/tests/fixtures/freebsd12/netstat-AaT.json000066400000000000000000000075501415226333200220170ustar00rootroot00000000000000[{"tcpcb": "fffff80003df43d0", "proto": "tcp4", "rexmit": 3, "ooorcv": 0, "0_win": 0, "local_address": "192.168.71.1", "foreign_address": "192.168.71.1", "kind": "network", "local_port": "ssh", "foreign_port": "64330", "transport_protocol": "tcp", "network_protocol": "ipv4", "foreign_port_num": 64330}, {"tcpcb": "fffff80003df47a0", "proto": "tcp4", "rexmit": 0, "ooorcv": 0, "0_win": 0, "local_address": "localhost", "foreign_address": "*", "kind": "network", "local_port": "smtp", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv4"}, {"tcpcb": "fffff80003df4b70", "proto": "tcp4", "rexmit": 0, "ooorcv": 0, "0_win": 0, "local_address": "*", "foreign_address": "*", "kind": "network", "local_port": "ssh", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv4"}, {"tcpcb": "fffff80003df0000", "proto": "tcp6", "rexmit": 0, "ooorcv": 0, "0_win": 0, "local_address": "*", "foreign_address": "*", "kind": "network", "local_port": "ssh", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv6"}, {"tcpcb": "fffff80003ae81e8", "proto": "udp4", "rexmit": null, "ooorcv": null, "kind": "network", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"tcpcb": "fffff80003ae87a0", "proto": "udp6", "rexmit": null, "ooorcv": null, "kind": "network", "transport_protocol": "udp", "network_protocol": "ipv6"}, {"address": "fffff80003ab6200", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6100", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "fffff80003ab6100", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6200", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "fffff80003ab6300", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "fffff80003ab6800", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6900", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "fffff80003ab6900", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6800", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "fffff80003abf000", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "fffff80003c581e0", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/devd.pipe", "kind": "socket"}, {"address": "fffff80003ac3e00", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6c00", "refs": "0", "nextref": "fffff80003ab6400", "kind": "socket"}, {"address": "fffff80003ab6400", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6c00", "refs": "0", "nextref": "fffff80003ab6000", "kind": "socket"}, {"address": "fffff80003ab6000", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6c00", "refs": "0", "nextref": "fffff80003ab6600", "kind": "socket"}, {"address": "fffff80003ab6500", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6d00", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "fffff80003ab6600", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6c00", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "fffff80003ab6c00", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "fffff80003c59d20", "conn": "0", "refs": "fffff80003ac3e00", "nextref": "0", "addr": "/var/run/logpriv", "kind": "socket"}, {"address": "fffff80003ab6d00", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "fffff80003c67000", "conn": "0", "refs": "fffff80003ab6500", "nextref": "0", "addr": "/var/run/log", "kind": "socket"}, {"address": "fffff80003ab6e00", "type": "seqpac", "recv_q": 0, "send_q": 0, "unix_inode": "fffff80003c58000", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/devd.seqpacket.pipe", "kind": "socket"}] jc-1.17.3/tests/fixtures/freebsd12/netstat-AaT.out000066400000000000000000000044251415226333200216530ustar00rootroot00000000000000Active Internet connections (including servers) Tcpcb Proto Rexmit OOORcv 0-win Local Address Foreign Address fffff80003df43d0 tcp4 3 0 0 192.168.71.1.ssh 192.168.71.1.64330 fffff80003df47a0 tcp4 0 0 0 localhost.smtp *.* fffff80003df4b70 tcp4 0 0 0 *.ssh *.* fffff80003df0000 tcp6 0 0 0 *.ssh *.* fffff80003ae81e8 udp4 *.syslog *.* fffff80003ae87a0 udp6 *.syslog *.* Active UNIX domain sockets Address Type Recv-Q Send-Q Inode Conn Refs Nextref Addr fffff80003ab6200 stream 0 0 0 fffff80003ab6100 0 0 fffff80003ab6100 stream 0 0 0 fffff80003ab6200 0 0 fffff80003ab6300 stream 0 0 0 0 0 0 fffff80003ab6800 stream 0 0 0 fffff80003ab6900 0 0 fffff80003ab6900 stream 0 0 0 fffff80003ab6800 0 0 fffff80003abf000 stream 0 0 fffff80003c581e0 0 0 0 /var/run/devd.pipe fffff80003ac3e00 dgram 0 0 0 fffff80003ab6c00 0 fffff80003ab6400 fffff80003ab6400 dgram 0 0 0 fffff80003ab6c00 0 fffff80003ab6000 fffff80003ab6000 dgram 0 0 0 fffff80003ab6c00 0 fffff80003ab6600 fffff80003ab6500 dgram 0 0 0 fffff80003ab6d00 0 0 fffff80003ab6600 dgram 0 0 0 fffff80003ab6c00 0 0 fffff80003ab6c00 dgram 0 0 fffff80003c59d20 0 fffff80003ac3e00 0 /var/run/logpriv fffff80003ab6d00 dgram 0 0 fffff80003c67000 0 fffff80003ab6500 0 /var/run/log fffff80003ab6e00 seqpac 0 0 fffff80003c58000 0 0 0 /var/run/devd.seqpacket.pipe jc-1.17.3/tests/fixtures/freebsd12/netstat-AanP.json000066400000000000000000000103401415226333200221600ustar00rootroot00000000000000[{"tcpcb": "fffff80003df43d0", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.71.163", "foreign_address": "192.168.71.1", "state": "ESTABLISHED", "log": "-", "kind": "network", "local_port": "22", "foreign_port": "64330", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 22, "foreign_port_num": 64330}, {"tcpcb": "fffff80003df47a0", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "*", "state": "LISTEN", "log": "-", "kind": "network", "local_port": "25", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 25}, {"tcpcb": "fffff80003df4b70", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": "LISTEN", "log": "-", "kind": "network", "local_port": "22", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 22}, {"tcpcb": "fffff80003df0000", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": "LISTEN", "log": "-", "kind": "network", "local_port": "22", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 22}, {"tcpcb": "fffff80003ae81e8", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "kind": "network", "local_port": "514", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 514}, {"tcpcb": "fffff80003ae87a0", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "kind": "network", "local_port": "514", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 514}, {"address": "fffff80003ab6200", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6100", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "fffff80003ab6100", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6200", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "fffff80003ab6300", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "fffff80003ab6800", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6900", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "fffff80003ab6900", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6800", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "fffff80003abf000", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "fffff80003c581e0", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/devd.pipe", "kind": "socket"}, {"address": "fffff80003ac3e00", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6c00", "refs": "0", "nextref": "fffff80003ab6400", "kind": "socket"}, {"address": "fffff80003ab6400", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6c00", "refs": "0", "nextref": "fffff80003ab6000", "kind": "socket"}, {"address": "fffff80003ab6000", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6c00", "refs": "0", "nextref": "fffff80003ab6600", "kind": "socket"}, {"address": "fffff80003ab6500", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6d00", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "fffff80003ab6600", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6c00", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "fffff80003ab6c00", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "fffff80003c59d20", "conn": "0", "refs": "fffff80003ac3e00", "nextref": "0", "addr": "/var/run/logpriv", "kind": "socket"}, {"address": "fffff80003ab6d00", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "fffff80003c67000", "conn": "0", "refs": "fffff80003ab6500", "nextref": "0", "addr": "/var/run/log", "kind": "socket"}, {"address": "fffff80003ab6e00", "type": "seqpac", "recv_q": 0, "send_q": 0, "unix_inode": "fffff80003c58000", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/devd.seqpacket.pipe", "kind": "socket"}] jc-1.17.3/tests/fixtures/freebsd12/netstat-AanP.out000066400000000000000000000044561415226333200220310ustar00rootroot00000000000000Active Internet connections (including servers) Tcpcb Proto Recv-Q Send-Q Local Address Foreign Address (state) Log ID fffff80003df43d0 tcp4 0 0 192.168.71.163.22 192.168.71.1.64330 ESTABLISHED - fffff80003df47a0 tcp4 0 0 127.0.0.1.25 *.* LISTEN - fffff80003df4b70 tcp4 0 0 *.22 *.* LISTEN - fffff80003df0000 tcp6 0 0 *.22 *.* LISTEN - fffff80003ae81e8 udp4 0 0 *.514 *.* fffff80003ae87a0 udp6 0 0 *.514 *.* Active UNIX domain sockets Address Type Recv-Q Send-Q Inode Conn Refs Nextref Addr fffff80003ab6200 stream 0 0 0 fffff80003ab6100 0 0 fffff80003ab6100 stream 0 0 0 fffff80003ab6200 0 0 fffff80003ab6300 stream 0 0 0 0 0 0 fffff80003ab6800 stream 0 0 0 fffff80003ab6900 0 0 fffff80003ab6900 stream 0 0 0 fffff80003ab6800 0 0 fffff80003abf000 stream 0 0 fffff80003c581e0 0 0 0 /var/run/devd.pipe fffff80003ac3e00 dgram 0 0 0 fffff80003ab6c00 0 fffff80003ab6400 fffff80003ab6400 dgram 0 0 0 fffff80003ab6c00 0 fffff80003ab6000 fffff80003ab6000 dgram 0 0 0 fffff80003ab6c00 0 fffff80003ab6600 fffff80003ab6500 dgram 0 0 0 fffff80003ab6d00 0 0 fffff80003ab6600 dgram 0 0 0 fffff80003ab6c00 0 0 fffff80003ab6c00 dgram 0 0 fffff80003c59d20 0 fffff80003ac3e00 0 /var/run/logpriv fffff80003ab6d00 dgram 0 0 fffff80003c67000 0 fffff80003ab6500 0 /var/run/log fffff80003ab6e00 seqpac 0 0 fffff80003c58000 0 0 0 /var/run/devd.seqpacket.pipe jc-1.17.3/tests/fixtures/freebsd12/netstat-Aax.json000066400000000000000000000124371415226333200220630ustar00rootroot00000000000000[{"tcpcb": "fffff80003df43d0", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.71.1", "foreign_address": "192.168.71.1", "r_mbuf": 0, "s_mbuf": 0, "r_clus": 0, "s_clus": 0, "r_hiwa": 65700, "s_hiwa": 33580, "r_lowa": 1, "s_lowa": 2048, "r_bcnt": 0, "s_bcnt": 0, "r_bmax": 525600, "s_bmax": 268640, "rexmt": 0.0, "persist": 0.0, "keep": 5079.93, "2msl": 0.0, "delack": 0.0, "rcvtime": 0.0, "kind": "network", "local_port": "ssh", "foreign_port": "64330", "transport_protocol": "tcp", "network_protocol": "ipv4", "foreign_port_num": 64330}, {"tcpcb": "fffff80003df47a0", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "*", "r_mbuf": 0, "s_mbuf": 0, "r_clus": 0, "s_clus": 0, "r_hiwa": 0, "s_hiwa": 0, "r_lowa": 0, "s_lowa": 0, "r_bcnt": 0, "s_bcnt": 0, "r_bmax": 0, "s_bmax": 0, "rexmt": 0.0, "persist": 0.0, "keep": 0.0, "2msl": 0.0, "delack": 0.0, "rcvtime": 8841.63, "kind": "network", "local_port": "smtp", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv4"}, {"tcpcb": "fffff80003df4b70", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "r_mbuf": 0, "s_mbuf": 0, "r_clus": 0, "s_clus": 0, "r_hiwa": 0, "s_hiwa": 0, "r_lowa": 0, "s_lowa": 0, "r_bcnt": 0, "s_bcnt": 0, "r_bmax": 0, "s_bmax": 0, "rexmt": 0.0, "persist": 0.0, "keep": 0.0, "2msl": 0.0, "delack": 0.0, "rcvtime": 8857.24, "kind": "network", "local_port": "ssh", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv4"}, {"tcpcb": "fffff80003df0000", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "r_mbuf": 0, "s_mbuf": 0, "r_clus": 0, "s_clus": 0, "r_hiwa": 0, "s_hiwa": 0, "r_lowa": 0, "s_lowa": 0, "r_bcnt": 0, "s_bcnt": 0, "r_bmax": 0, "s_bmax": 0, "rexmt": 0.0, "persist": 0.0, "keep": 0.0, "2msl": 0.0, "delack": 0.0, "rcvtime": 8857.24, "kind": "network", "local_port": "ssh", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv6"}, {"tcpcb": "fffff80003ae81e8", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "r_mbuf": 0, "s_mbuf": 0, "r_clus": 0, "s_clus": 0, "r_hiwa": 0, "s_hiwa": 9216, "r_lowa": 0, "s_lowa": 2048, "r_bcnt": 0, "s_bcnt": 0, "r_bmax": 0, "s_bmax": 73728, "kind": "network", "local_port": "syslog", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"tcpcb": "fffff80003ae87a0", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "r_mbuf": 0, "s_mbuf": 0, "r_clus": 0, "s_clus": 0, "r_hiwa": 0, "s_hiwa": 9216, "r_lowa": 0, "s_lowa": 2048, "r_bcnt": 0, "s_bcnt": 0, "r_bmax": 0, "s_bmax": 73728, "kind": "network", "local_port": "syslog", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6"}, {"address": "fffff80003ab6200", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6100", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "fffff80003ab6100", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6200", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "fffff80003ab6300", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "fffff80003ab6800", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6900", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "fffff80003ab6900", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6800", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "fffff80003abf000", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "fffff80003c581e0", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/devd.pipe", "kind": "socket"}, {"address": "fffff80003ac3e00", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6c00", "refs": "0", "nextref": "fffff80003ab6400", "kind": "socket"}, {"address": "fffff80003ab6400", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6c00", "refs": "0", "nextref": "fffff80003ab6000", "kind": "socket"}, {"address": "fffff80003ab6000", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6c00", "refs": "0", "nextref": "fffff80003ab6600", "kind": "socket"}, {"address": "fffff80003ab6500", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6d00", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "fffff80003ab6600", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6c00", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "fffff80003ab6c00", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "fffff80003c59d20", "conn": "0", "refs": "fffff80003ac3e00", "nextref": "0", "addr": "/var/run/logpriv", "kind": "socket"}, {"address": "fffff80003ab6d00", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "fffff80003c67000", "conn": "0", "refs": "fffff80003ab6500", "nextref": "0", "addr": "/var/run/log", "kind": "socket"}, {"address": "fffff80003ab6e00", "type": "seqpac", "recv_q": 0, "send_q": 0, "unix_inode": "fffff80003c58000", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/devd.seqpacket.pipe", "kind": "socket"}] jc-1.17.3/tests/fixtures/freebsd12/netstat-Aax.out000066400000000000000000000060351415226333200217160ustar00rootroot00000000000000Active Internet connections (including servers) Tcpcb Proto Recv-Q Send-Q Local Address Foreign Address R-MBUF S-MBUF R-CLUS S-CLUS R-HIWA S-HIWA R-LOWA S-LOWA R-BCNT S-BCNT R-BMAX S-BMAX rexmt persist keep 2msl delack rcvtime fffff80003df43d0 tcp4 0 0 192.168.71.1.ssh 192.168.71.1.64330 0 0 0 0 65700 33580 1 2048 0 0 525600 268640 0.00 0.00 5079.93 0.00 0.00 0.00 fffff80003df47a0 tcp4 0 0 localhost.smtp *.* 0 0 0 0 0 0 0 0 0 0 0 0 0.00 0.00 0.00 0.00 0.00 8841.63 fffff80003df4b70 tcp4 0 0 *.ssh *.* 0 0 0 0 0 0 0 0 0 0 0 0 0.00 0.00 0.00 0.00 0.00 8857.24 fffff80003df0000 tcp6 0 0 *.ssh *.* 0 0 0 0 0 0 0 0 0 0 0 0 0.00 0.00 0.00 0.00 0.00 8857.24 fffff80003ae81e8 udp4 0 0 *.syslog *.* 0 0 0 0 0 9216 0 2048 0 0 0 73728 fffff80003ae87a0 udp6 0 0 *.syslog *.* 0 0 0 0 0 9216 0 2048 0 0 0 73728 Active UNIX domain sockets Address Type Recv-Q Send-Q Inode Conn Refs Nextref Addr fffff80003ab6200 stream 0 0 0 fffff80003ab6100 0 0 fffff80003ab6100 stream 0 0 0 fffff80003ab6200 0 0 fffff80003ab6300 stream 0 0 0 0 0 0 fffff80003ab6800 stream 0 0 0 fffff80003ab6900 0 0 fffff80003ab6900 stream 0 0 0 fffff80003ab6800 0 0 fffff80003abf000 stream 0 0 fffff80003c581e0 0 0 0 /var/run/devd.pipe fffff80003ac3e00 dgram 0 0 0 fffff80003ab6c00 0 fffff80003ab6400 fffff80003ab6400 dgram 0 0 0 fffff80003ab6c00 0 fffff80003ab6000 fffff80003ab6000 dgram 0 0 0 fffff80003ab6c00 0 fffff80003ab6600 fffff80003ab6500 dgram 0 0 0 fffff80003ab6d00 0 0 fffff80003ab6600 dgram 0 0 0 fffff80003ab6c00 0 0 fffff80003ab6c00 dgram 0 0 fffff80003c59d20 0 fffff80003ac3e00 0 /var/run/logpriv fffff80003ab6d00 dgram 0 0 fffff80003c67000 0 fffff80003ab6500 0 /var/run/log fffff80003ab6e00 seqpac 0 0 fffff80003c58000 0 0 0 /var/run/devd.seqpacket.pipe jc-1.17.3/tests/fixtures/freebsd12/netstat-aT.json000066400000000000000000000076201415226333200217140ustar00rootroot00000000000000[{"proto": "tcp4", "rexmit": 3, "ooorcv": 0, "0_win": 0, "local_address": "192.168.71.163", "foreign_address": "192.168.71.1", "kind": "network", "local_port": "ssh", "foreign_port": "64330", "transport_protocol": "tcp", "network_protocol": "ipv4", "foreign_port_num": 64330}, {"proto": "tcp4", "rexmit": 0, "ooorcv": 0, "0_win": 0, "local_address": "localhost", "foreign_address": "*", "kind": "network", "local_port": "smtp", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv4"}, {"proto": "tcp4", "rexmit": 0, "ooorcv": 0, "0_win": 0, "local_address": "*", "foreign_address": "*", "kind": "network", "local_port": "ssh", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv4"}, {"proto": "tcp6", "rexmit": 0, "ooorcv": 0, "0_win": 0, "local_address": "*", "foreign_address": "*", "kind": "network", "local_port": "ssh", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv6"}, {"proto": "udp4", "rexmit": null, "ooorcv": null, "0_win": null, "local_address": "*", "foreign_address": "*", "kind": "network", "local_port": "syslog", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp6", "rexmit": null, "ooorcv": null, "0_win": null, "local_address": "*", "foreign_address": "*", "kind": "network", "local_port": "syslog", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6"}, {"address": "fffff80003ab6200", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6100", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "fffff80003ab6100", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6200", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "fffff80003ab6300", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "fffff80003ab6800", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6900", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "fffff80003ab6900", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6800", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "fffff80003abf000", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "fffff80003c581e0", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/devd.pipe", "kind": "socket"}, {"address": "fffff80003ac3e00", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6c00", "refs": "0", "nextref": "fffff80003ab6400", "kind": "socket"}, {"address": "fffff80003ab6400", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6c00", "refs": "0", "nextref": "fffff80003ab6000", "kind": "socket"}, {"address": "fffff80003ab6000", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6c00", "refs": "0", "nextref": "fffff80003ab6600", "kind": "socket"}, {"address": "fffff80003ab6500", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6d00", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "fffff80003ab6600", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6c00", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "fffff80003ab6c00", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "fffff80003c59d20", "conn": "0", "refs": "fffff80003ac3e00", "nextref": "0", "addr": "/var/run/logpriv", "kind": "socket"}, {"address": "fffff80003ab6d00", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "fffff80003c67000", "conn": "0", "refs": "fffff80003ab6500", "nextref": "0", "addr": "/var/run/log", "kind": "socket"}, {"address": "fffff80003ab6e00", "type": "seqpac", "recv_q": 0, "send_q": 0, "unix_inode": "fffff80003c58000", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/devd.seqpacket.pipe", "kind": "socket"}] jc-1.17.3/tests/fixtures/freebsd12/netstat-aT.out000066400000000000000000000043221415226333200215460ustar00rootroot00000000000000Active Internet connections (including servers) Proto Rexmit OOORcv 0-win Local Address Foreign Address tcp4 3 0 0 192.168.71.163.ssh 192.168.71.1.64330 tcp4 0 0 0 localhost.smtp *.* tcp4 0 0 0 *.ssh *.* tcp6 0 0 0 *.ssh *.* udp4 *.syslog *.* udp6 *.syslog *.* Active UNIX domain sockets Address Type Recv-Q Send-Q Inode Conn Refs Nextref Addr fffff80003ab6200 stream 0 0 0 fffff80003ab6100 0 0 fffff80003ab6100 stream 0 0 0 fffff80003ab6200 0 0 fffff80003ab6300 stream 0 0 0 0 0 0 fffff80003ab6800 stream 0 0 0 fffff80003ab6900 0 0 fffff80003ab6900 stream 0 0 0 fffff80003ab6800 0 0 fffff80003abf000 stream 0 0 fffff80003c581e0 0 0 0 /var/run/devd.pipe fffff80003ac3e00 dgram 0 0 0 fffff80003ab6c00 0 fffff80003ab6400 fffff80003ab6400 dgram 0 0 0 fffff80003ab6c00 0 fffff80003ab6000 fffff80003ab6000 dgram 0 0 0 fffff80003ab6c00 0 fffff80003ab6600 fffff80003ab6500 dgram 0 0 0 fffff80003ab6d00 0 0 fffff80003ab6600 dgram 0 0 0 fffff80003ab6c00 0 0 fffff80003ab6c00 dgram 0 0 fffff80003c59d20 0 fffff80003ac3e00 0 /var/run/logpriv fffff80003ab6d00 dgram 0 0 fffff80003c67000 0 fffff80003ab6500 0 /var/run/log fffff80003ab6e00 seqpac 0 0 fffff80003c58000 0 0 0 /var/run/devd.seqpacket.pipe jc-1.17.3/tests/fixtures/freebsd12/netstat-an.json000066400000000000000000000100401415226333200217340ustar00rootroot00000000000000[{"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.71.163", "foreign_address": "192.168.71.1", "state": "ESTABLISHED", "kind": "network", "local_port": "22", "foreign_port": "56321", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 22, "foreign_port_num": 56321}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "*", "state": "LISTEN", "kind": "network", "local_port": "25", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 25}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": "LISTEN", "kind": "network", "local_port": "22", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 22}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": "LISTEN", "kind": "network", "local_port": "22", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 22}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "514", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 514}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "514", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 514}, {"address": "fffff80003ab6100", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6200", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "fffff80003ab6200", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6100", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "fffff80003ab6300", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "fffff80003ab6800", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6900", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "fffff80003ab6900", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6800", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "fffff80003abf000", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "fffff80003c581e0", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/devd.pipe", "kind": "socket"}, {"address": "fffff80003ac3e00", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6c00", "refs": "0", "nextref": "fffff80003ab6400", "kind": "socket"}, {"address": "fffff80003ab6400", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6c00", "refs": "0", "nextref": "fffff80003ab6000", "kind": "socket"}, {"address": "fffff80003ab6000", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6c00", "refs": "0", "nextref": "fffff80003ab6600", "kind": "socket"}, {"address": "fffff80003ab6500", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6d00", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "fffff80003ab6600", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "fffff80003ab6c00", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "fffff80003ab6c00", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "fffff80003c59d20", "conn": "0", "refs": "fffff80003ac3e00", "nextref": "0", "addr": "/var/run/logpriv", "kind": "socket"}, {"address": "fffff80003ab6d00", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "fffff80003c67000", "conn": "0", "refs": "fffff80003ab6500", "nextref": "0", "addr": "/var/run/log", "kind": "socket"}, {"address": "fffff80003ab6e00", "type": "seqpac", "recv_q": 0, "send_q": 0, "unix_inode": "fffff80003c58000", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/devd.seqpacket.pipe", "kind": "socket"}] jc-1.17.3/tests/fixtures/freebsd12/netstat-an.out000066400000000000000000000043401415226333200216000ustar00rootroot00000000000000Active Internet connections (including servers) Proto Recv-Q Send-Q Local Address Foreign Address (state) tcp4 0 0 192.168.71.163.22 192.168.71.1.56321 ESTABLISHED tcp4 0 0 127.0.0.1.25 *.* LISTEN tcp4 0 0 *.22 *.* LISTEN tcp6 0 0 *.22 *.* LISTEN udp4 0 0 *.514 *.* udp6 0 0 *.514 *.* Active UNIX domain sockets Address Type Recv-Q Send-Q Inode Conn Refs Nextref Addr fffff80003ab6100 stream 0 0 0 fffff80003ab6200 0 0 fffff80003ab6200 stream 0 0 0 fffff80003ab6100 0 0 fffff80003ab6300 stream 0 0 0 0 0 0 fffff80003ab6800 stream 0 0 0 fffff80003ab6900 0 0 fffff80003ab6900 stream 0 0 0 fffff80003ab6800 0 0 fffff80003abf000 stream 0 0 fffff80003c581e0 0 0 0 /var/run/devd.pipe fffff80003ac3e00 dgram 0 0 0 fffff80003ab6c00 0 fffff80003ab6400 fffff80003ab6400 dgram 0 0 0 fffff80003ab6c00 0 fffff80003ab6000 fffff80003ab6000 dgram 0 0 0 fffff80003ab6c00 0 fffff80003ab6600 fffff80003ab6500 dgram 0 0 0 fffff80003ab6d00 0 0 fffff80003ab6600 dgram 0 0 0 fffff80003ab6c00 0 0 fffff80003ab6c00 dgram 0 0 fffff80003c59d20 0 fffff80003ac3e00 0 /var/run/logpriv fffff80003ab6d00 dgram 0 0 fffff80003c67000 0 fffff80003ab6500 0 /var/run/log fffff80003ab6e00 seqpac 0 0 fffff80003c58000 0 0 0 /var/run/devd.seqpacket.pipe jc-1.17.3/tests/fixtures/freebsd12/netstat-i.json000066400000000000000000000024341415226333200215760ustar00rootroot00000000000000[{"iface": "em0", "mtu": 1500, "network": "", "address": "00:0c:29:1a:4e:3b", "ipkts": 189449, "ierrs": 0, "idrop": 0, "opkts": 211310, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "em0", "mtu": null, "network": "fe80::%em0/64", "address": "fe80::20c:29ff:fe", "ipkts": 0, "ierrs": null, "idrop": null, "opkts": 4, "oerrs": null, "coll": null, "kind": "interface"}, {"iface": "em0", "mtu": null, "network": "192.168.71.0/", "address": "192.168.71.163", "ipkts": 92481, "ierrs": null, "idrop": null, "opkts": 172946, "oerrs": null, "coll": null, "kind": "interface"}, {"iface": "lo0", "mtu": 16384, "network": "", "address": "lo0", "ipkts": 26, "ierrs": 0, "idrop": 0, "opkts": 26, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "lo0", "mtu": null, "network": "localhost", "address": "localhost", "ipkts": 23, "ierrs": null, "idrop": null, "opkts": 23, "oerrs": null, "coll": null, "kind": "interface"}, {"iface": "lo0", "mtu": null, "network": "fe80::%lo0/64", "address": "fe80::1%lo0", "ipkts": 0, "ierrs": null, "idrop": null, "opkts": 0, "oerrs": null, "coll": null, "kind": "interface"}, {"iface": "lo0", "mtu": null, "network": "your-net", "address": "localhost", "ipkts": 3, "ierrs": null, "idrop": null, "opkts": 3, "oerrs": null, "coll": null, "kind": "interface"}] jc-1.17.3/tests/fixtures/freebsd12/netstat-i.out000066400000000000000000000012601415226333200214300ustar00rootroot00000000000000Name Mtu Network Address Ipkts Ierrs Idrop Opkts Oerrs Coll em0 1500 00:0c:29:1a:4e:3b 189449 0 0 211310 0 0 em0 - fe80::%em0/64 fe80::20c:29ff:fe 0 - - 4 - - em0 - 192.168.71.0/ 192.168.71.163 92481 - - 172946 - - lo0 16384 lo0 26 0 0 26 0 0 lo0 - localhost localhost 23 - - 23 - - lo0 - fe80::%lo0/64 fe80::1%lo0 0 - - 0 - - lo0 - your-net localhost 3 - - 3 - - jc-1.17.3/tests/fixtures/freebsd12/netstat-ib.json000066400000000000000000000030131415226333200217320ustar00rootroot00000000000000[{"iface": "em0", "mtu": 1500, "network": "", "address": "00:0c:29:1a:4e:3b", "ipkts": 372717, "ierrs": 0, "idrop": 0, "ibytes": 372538087, "opkts": 213821, "oerrs": 0, "obytes": 198573339, "coll": 0, "kind": "interface"}, {"iface": "em0", "mtu": null, "network": "fe80::%em0/64", "address": "fe80::20c:29ff:fe", "ipkts": 0, "ierrs": null, "idrop": null, "ibytes": 0, "opkts": 4, "oerrs": null, "obytes": 264, "coll": null, "kind": "interface"}, {"iface": "em0", "mtu": null, "network": "192.168.71.0/", "address": "192.168.71.163", "ipkts": 97396, "ierrs": null, "idrop": null, "ibytes": 68178099, "opkts": 175413, "oerrs": null, "obytes": 193957797, "coll": null, "kind": "interface"}, {"iface": "lo0", "mtu": 16384, "network": "", "address": "lo0", "ipkts": 98, "ierrs": 0, "idrop": 0, "ibytes": 21024, "opkts": 98, "oerrs": 0, "obytes": 21024, "coll": 0, "kind": "interface"}, {"iface": "lo0", "mtu": null, "network": "localhost", "address": "localhost", "ipkts": 25, "ierrs": null, "idrop": null, "ibytes": 4829, "opkts": 25, "oerrs": null, "obytes": 4829, "coll": null, "kind": "interface"}, {"iface": "lo0", "mtu": null, "network": "fe80::%lo0/64", "address": "fe80::1%lo0", "ipkts": 0, "ierrs": null, "idrop": null, "ibytes": 0, "opkts": 0, "oerrs": null, "obytes": 0, "coll": null, "kind": "interface"}, {"iface": "lo0", "mtu": null, "network": "your-net", "address": "localhost", "ipkts": 73, "ierrs": null, "idrop": null, "ibytes": 16195, "opkts": 73, "oerrs": null, "obytes": 16195, "coll": null, "kind": "interface"}] jc-1.17.3/tests/fixtures/freebsd12/netstat-ib.out000066400000000000000000000015401415226333200215730ustar00rootroot00000000000000Name Mtu Network Address Ipkts Ierrs Idrop Ibytes Opkts Oerrs Obytes Coll em0 1500 00:0c:29:1a:4e:3b 372717 0 0 372538087 213821 0 198573339 0 em0 - fe80::%em0/64 fe80::20c:29ff:fe 0 - - 0 4 - 264 - em0 - 192.168.71.0/ 192.168.71.163 97396 - - 68178099 175413 - 193957797 - lo0 16384 lo0 98 0 0 21024 98 0 21024 0 lo0 - localhost localhost 25 - - 4829 25 - 4829 - lo0 - fe80::%lo0/64 fe80::1%lo0 0 - - 0 0 - 0 - lo0 - your-net localhost 73 - - 16195 73 - 16195 - jc-1.17.3/tests/fixtures/freebsd12/netstat-r.json000066400000000000000000000037561415226333200216170ustar00rootroot00000000000000[{"destination": "default", "gateway": "192.168.71.2", "route_flags": "UGS", "iface": "em0", "kind": "route", "route_flags_pretty": ["UP", "GATEWAY", "STATIC"]}, {"destination": "localhost", "gateway": "link#2", "route_flags": "UH", "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "HOST"]}, {"destination": "192.168.71.0/24", "gateway": "link#1", "route_flags": "U", "iface": "em0", "kind": "route", "route_flags_pretty": ["UP"]}, {"destination": "192.168.71.163", "gateway": "link#1", "route_flags": "UHS", "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "STATIC"]}, {"destination": "::/96", "gateway": "localhost", "route_flags": "UGRS", "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "GATEWAY", "REJECT", "STATIC"]}, {"destination": "localhost", "gateway": "link#2", "route_flags": "UH", "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "HOST"]}, {"destination": "::ffff:0.0.0.0/96", "gateway": "localhost", "route_flags": "UGRS", "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "GATEWAY", "REJECT", "STATIC"]}, {"destination": "fe80::/10", "gateway": "localhost", "route_flags": "UGRS", "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "GATEWAY", "REJECT", "STATIC"]}, {"destination": "fe80::%em0/64", "gateway": "link#1", "route_flags": "U", "iface": "em0", "kind": "route", "route_flags_pretty": ["UP"]}, {"destination": "fe80::20c:29ff:fe1", "gateway": "link#1", "route_flags": "UHS", "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "STATIC"]}, {"destination": "fe80::%lo0/64", "gateway": "link#2", "route_flags": "U", "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP"]}, {"destination": "fe80::1%lo0", "gateway": "link#2", "route_flags": "UHS", "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "STATIC"]}, {"destination": "ff02::/16", "gateway": "localhost", "route_flags": "UGRS", "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "GATEWAY", "REJECT", "STATIC"]}] jc-1.17.3/tests/fixtures/freebsd12/netstat-r.out000066400000000000000000000015361415226333200214470ustar00rootroot00000000000000Routing tables Internet: Destination Gateway Flags Netif Expire default 192.168.71.2 UGS em0 localhost link#2 UH lo0 192.168.71.0/24 link#1 U em0 192.168.71.163 link#1 UHS lo0 Internet6: Destination Gateway Flags Netif Expire ::/96 localhost UGRS lo0 localhost link#2 UH lo0 ::ffff:0.0.0.0/96 localhost UGRS lo0 fe80::/10 localhost UGRS lo0 fe80::%em0/64 link#1 U em0 fe80::20c:29ff:fe1 link#1 UHS lo0 fe80::%lo0/64 link#2 U lo0 fe80::1%lo0 link#2 UHS lo0 ff02::/16 localhost UGRS lo0 jc-1.17.3/tests/fixtures/freebsd12/ntpq-p.json000066400000000000000000000015711415226333200211060ustar00rootroot00000000000000[{"remote": "0.freebsd.pool.", "refid": ".POOL.", "st": 16, "t": "p", "when": null, "poll": 64, "reach": 0, "delay": 0.0, "offset": 0.0, "jitter": 0.0, "state": null}, {"remote": "vf1.bbnx.net", "refid": "252.74.143.178", "st": 2, "t": "u", "when": 1, "poll": 64, "reach": 1, "delay": 387.363, "offset": 1589483.0, "jitter": 39.556, "state": null}, {"remote": "time.airgapped.", "refid": "132.163.96.1", "st": 2, "t": "u", "when": 2, "poll": 64, "reach": 1, "delay": 70.572, "offset": 1589483.0, "jitter": 0.724, "state": null}, {"remote": "clock.trit.net", "refid": "43.77.130.254", "st": 2, "t": "u", "when": 2, "poll": 64, "reach": 1, "delay": 55.717, "offset": 1589483.0, "jitter": 2.021, "state": null}, {"remote": "time.nullrouten", "refid": "132.163.97.1", "st": 2, "t": "u", "when": 1, "poll": 64, "reach": 1, "delay": 59.682, "offset": 1589483.0, "jitter": 7.573, "state": null}] jc-1.17.3/tests/fixtures/freebsd12/ntpq-p.out000066400000000000000000000010511415226333200207350ustar00rootroot00000000000000 remote refid st t when poll reach delay offset jitter ============================================================================== 0.freebsd.pool. .POOL. 16 p - 64 0 0.000 0.000 0.000 vf1.bbnx.net 252.74.143.178 2 u 1 64 1 387.363 1589483 39.556 time.airgapped. 132.163.96.1 2 u 2 64 1 70.572 1589483 0.724 clock.trit.net 43.77.130.254 2 u 2 64 1 55.717 1589483 2.021 time.nullrouten 132.163.97.1 2 u 1 64 1 59.682 1589483 7.573 jc-1.17.3/tests/fixtures/freebsd12/ping-hostname-p-streaming.json000066400000000000000000000014271415226333200246640ustar00rootroot00000000000000[{"type":"reply","destination_ip":"151.101.1.67","sent_bytes":56,"pattern":"0xff","response_bytes":64,"response_ip":"151.101.1.67","icmp_seq":0,"ttl":59,"time_ms":32.34},{"type":"reply","destination_ip":"151.101.1.67","sent_bytes":56,"pattern":"0xff","response_bytes":64,"response_ip":"151.101.1.67","icmp_seq":1,"ttl":59,"time_ms":34.505},{"type":"reply","destination_ip":"151.101.1.67","sent_bytes":56,"pattern":"0xff","response_bytes":64,"response_ip":"151.101.1.67","icmp_seq":2,"ttl":59,"time_ms":28.389},{"type":"summary","destination_ip":"151.101.1.67","sent_bytes":56,"pattern":"0xff","packets_transmitted":3,"packets_received":3,"packet_loss_percent":0.0,"duplicates":0,"round_trip_ms_min":28.389,"round_trip_ms_avg":31.745,"round_trip_ms_max":34.505,"round_trip_ms_stddev":2.532}] jc-1.17.3/tests/fixtures/freebsd12/ping-hostname-p.json000066400000000000000000000013041415226333200226670ustar00rootroot00000000000000{"destination_ip": "151.101.1.67", "data_bytes": 56, "pattern": "0xff", "destination": "cnn.com", "packets_transmitted": 3, "packets_received": 3, "packet_loss_percent": 0.0, "duplicates": 0, "round_trip_ms_min": 28.389, "round_trip_ms_avg": 31.745, "round_trip_ms_max": 34.505, "round_trip_ms_stddev": 2.532, "responses": [{"type": "reply", "bytes": 64, "response_ip": "151.101.1.67", "icmp_seq": 0, "ttl": 59, "time_ms": 32.34, "duplicate": false}, {"type": "reply", "bytes": 64, "response_ip": "151.101.1.67", "icmp_seq": 1, "ttl": 59, "time_ms": 34.505, "duplicate": false}, {"type": "reply", "bytes": 64, "response_ip": "151.101.1.67", "icmp_seq": 2, "ttl": 59, "time_ms": 28.389, "duplicate": false}]} jc-1.17.3/tests/fixtures/freebsd12/ping-hostname-p.out000066400000000000000000000006131415226333200225270ustar00rootroot00000000000000PATTERN: 0xff PING cnn.com (151.101.1.67): 56 data bytes 64 bytes from 151.101.1.67: icmp_seq=0 ttl=59 time=32.340 ms 64 bytes from 151.101.1.67: icmp_seq=1 ttl=59 time=34.505 ms 64 bytes from 151.101.1.67: icmp_seq=2 ttl=59 time=28.389 ms --- cnn.com ping statistics --- 3 packets transmitted, 3 packets received, 0.0% packet loss round-trip min/avg/max/stddev = 28.389/31.745/34.505/2.532 ms jc-1.17.3/tests/fixtures/freebsd12/ping-hostname-s-streaming.json000066400000000000000000000013631415226333200246660ustar00rootroot00000000000000[{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":40,"pattern":null,"response_bytes":48,"response_ip":"127.0.0.1","icmp_seq":0,"ttl":64,"time_ms":0.022},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":40,"pattern":null,"response_bytes":48,"response_ip":"127.0.0.1","icmp_seq":1,"ttl":64,"time_ms":0.038},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":40,"pattern":null,"response_bytes":48,"response_ip":"127.0.0.1","icmp_seq":2,"ttl":64,"time_ms":0.03},{"type":"summary","destination_ip":"127.0.0.1","sent_bytes":40,"pattern":null,"packets_transmitted":3,"packets_received":3,"packet_loss_percent":0.0,"duplicates":0,"round_trip_ms_min":0.022,"round_trip_ms_avg":0.03,"round_trip_ms_max":0.038,"round_trip_ms_stddev":0.006}] jc-1.17.3/tests/fixtures/freebsd12/ping-hostname-s.json000066400000000000000000000012611415226333200226740ustar00rootroot00000000000000{"destination_ip": "127.0.0.1", "data_bytes": 40, "pattern": null, "destination": "localhost", "packets_transmitted": 3, "packets_received": 3, "packet_loss_percent": 0.0, "duplicates": 0, "round_trip_ms_min": 0.022, "round_trip_ms_avg": 0.03, "round_trip_ms_max": 0.038, "round_trip_ms_stddev": 0.006, "responses": [{"type": "reply", "bytes": 48, "response_ip": "127.0.0.1", "icmp_seq": 0, "ttl": 64, "time_ms": 0.022, "duplicate": false}, {"type": "reply", "bytes": 48, "response_ip": "127.0.0.1", "icmp_seq": 1, "ttl": 64, "time_ms": 0.038, "duplicate": false}, {"type": "reply", "bytes": 48, "response_ip": "127.0.0.1", "icmp_seq": 2, "ttl": 64, "time_ms": 0.03, "duplicate": false}]} jc-1.17.3/tests/fixtures/freebsd12/ping-hostname-s.out000066400000000000000000000005571415226333200225410ustar00rootroot00000000000000PING localhost (127.0.0.1): 40 data bytes 48 bytes from 127.0.0.1: icmp_seq=0 ttl=64 time=0.022 ms 48 bytes from 127.0.0.1: icmp_seq=1 ttl=64 time=0.038 ms 48 bytes from 127.0.0.1: icmp_seq=2 ttl=64 time=0.030 ms --- localhost ping statistics --- 3 packets transmitted, 3 packets received, 0.0% packet loss round-trip min/avg/max/stddev = 0.022/0.030/0.038/0.006 ms jc-1.17.3/tests/fixtures/freebsd12/ping-hostname-streaming.json000066400000000000000000000014251415226333200244250ustar00rootroot00000000000000[{"type":"reply","destination_ip":"151.101.65.67","sent_bytes":56,"pattern":null,"response_bytes":64,"response_ip":"151.101.65.67","icmp_seq":0,"ttl":59,"time_ms":27.01},{"type":"reply","destination_ip":"151.101.65.67","sent_bytes":56,"pattern":null,"response_bytes":64,"response_ip":"151.101.65.67","icmp_seq":1,"ttl":59,"time_ms":31.978},{"type":"reply","destination_ip":"151.101.65.67","sent_bytes":56,"pattern":null,"response_bytes":64,"response_ip":"151.101.65.67","icmp_seq":2,"ttl":59,"time_ms":42.506},{"type":"summary","destination_ip":"151.101.65.67","sent_bytes":56,"pattern":null,"packets_transmitted":3,"packets_received":3,"packet_loss_percent":0.0,"duplicates":0,"round_trip_ms_min":27.01,"round_trip_ms_avg":33.831,"round_trip_ms_max":42.506,"round_trip_ms_stddev":6.461}] jc-1.17.3/tests/fixtures/freebsd12/ping-hostname.json000066400000000000000000000013051415226333200224330ustar00rootroot00000000000000{"destination_ip": "151.101.65.67", "data_bytes": 56, "pattern": null, "destination": "cnn.com", "packets_transmitted": 3, "packets_received": 3, "packet_loss_percent": 0.0, "duplicates": 0, "round_trip_ms_min": 27.01, "round_trip_ms_avg": 33.831, "round_trip_ms_max": 42.506, "round_trip_ms_stddev": 6.461, "responses": [{"type": "reply", "bytes": 64, "response_ip": "151.101.65.67", "icmp_seq": 0, "ttl": 59, "time_ms": 27.01, "duplicate": false}, {"type": "reply", "bytes": 64, "response_ip": "151.101.65.67", "icmp_seq": 1, "ttl": 59, "time_ms": 31.978, "duplicate": false}, {"type": "reply", "bytes": 64, "response_ip": "151.101.65.67", "icmp_seq": 2, "ttl": 59, "time_ms": 42.506, "duplicate": false}]} jc-1.17.3/tests/fixtures/freebsd12/ping-hostname.out000066400000000000000000000006011415226333200222670ustar00rootroot00000000000000PING cnn.com (151.101.65.67): 56 data bytes 64 bytes from 151.101.65.67: icmp_seq=0 ttl=59 time=27.010 ms 64 bytes from 151.101.65.67: icmp_seq=1 ttl=59 time=31.978 ms 64 bytes from 151.101.65.67: icmp_seq=2 ttl=59 time=42.506 ms --- cnn.com ping statistics --- 3 packets transmitted, 3 packets received, 0.0% packet loss round-trip min/avg/max/stddev = 27.010/33.831/42.506/6.461 ms jc-1.17.3/tests/fixtures/freebsd12/ping-ip-p-streaming.json000066400000000000000000000013751415226333200234600ustar00rootroot00000000000000[{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":"0xff","response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":0,"ttl":64,"time_ms":0.036},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":"0xff","response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":1,"ttl":64,"time_ms":0.042},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":"0xff","response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":2,"ttl":64,"time_ms":0.034},{"type":"summary","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":"0xff","packets_transmitted":3,"packets_received":3,"packet_loss_percent":0.0,"duplicates":0,"round_trip_ms_min":0.034,"round_trip_ms_avg":0.037,"round_trip_ms_max":0.042,"round_trip_ms_stddev":0.003}] jc-1.17.3/tests/fixtures/freebsd12/ping-ip-p.json000066400000000000000000000012651415226333200214670ustar00rootroot00000000000000{"destination_ip": "127.0.0.1", "data_bytes": 56, "pattern": "0xff", "destination": "127.0.0.1", "packets_transmitted": 3, "packets_received": 3, "packet_loss_percent": 0.0, "duplicates": 0, "round_trip_ms_min": 0.034, "round_trip_ms_avg": 0.037, "round_trip_ms_max": 0.042, "round_trip_ms_stddev": 0.003, "responses": [{"type": "reply", "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 0, "ttl": 64, "time_ms": 0.036, "duplicate": false}, {"type": "reply", "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 1, "ttl": 64, "time_ms": 0.042, "duplicate": false}, {"type": "reply", "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 2, "ttl": 64, "time_ms": 0.034, "duplicate": false}]} jc-1.17.3/tests/fixtures/freebsd12/ping-ip-p.out000066400000000000000000000005751415226333200213300ustar00rootroot00000000000000PATTERN: 0xff PING 127.0.0.1 (127.0.0.1): 56 data bytes 64 bytes from 127.0.0.1: icmp_seq=0 ttl=64 time=0.036 ms 64 bytes from 127.0.0.1: icmp_seq=1 ttl=64 time=0.042 ms 64 bytes from 127.0.0.1: icmp_seq=2 ttl=64 time=0.034 ms --- 127.0.0.1 ping statistics --- 3 packets transmitted, 3 packets received, 0.0% packet loss round-trip min/avg/max/stddev = 0.034/0.037/0.042/0.003 ms jc-1.17.3/tests/fixtures/freebsd12/ping-ip-s-streaming.json000066400000000000000000000013651415226333200234620ustar00rootroot00000000000000[{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":40,"pattern":null,"response_bytes":48,"response_ip":"127.0.0.1","icmp_seq":0,"ttl":64,"time_ms":0.024},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":40,"pattern":null,"response_bytes":48,"response_ip":"127.0.0.1","icmp_seq":1,"ttl":64,"time_ms":0.036},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":40,"pattern":null,"response_bytes":48,"response_ip":"127.0.0.1","icmp_seq":2,"ttl":64,"time_ms":0.036},{"type":"summary","destination_ip":"127.0.0.1","sent_bytes":40,"pattern":null,"packets_transmitted":3,"packets_received":3,"packet_loss_percent":0.0,"duplicates":0,"round_trip_ms_min":0.024,"round_trip_ms_avg":0.032,"round_trip_ms_max":0.036,"round_trip_ms_stddev":0.006}] jc-1.17.3/tests/fixtures/freebsd12/ping-ip-s.json000066400000000000000000000012631415226333200214700ustar00rootroot00000000000000{"destination_ip": "127.0.0.1", "data_bytes": 40, "pattern": null, "destination": "127.0.0.1", "packets_transmitted": 3, "packets_received": 3, "packet_loss_percent": 0.0, "duplicates": 0, "round_trip_ms_min": 0.024, "round_trip_ms_avg": 0.032, "round_trip_ms_max": 0.036, "round_trip_ms_stddev": 0.006, "responses": [{"type": "reply", "bytes": 48, "response_ip": "127.0.0.1", "icmp_seq": 0, "ttl": 64, "time_ms": 0.024, "duplicate": false}, {"type": "reply", "bytes": 48, "response_ip": "127.0.0.1", "icmp_seq": 1, "ttl": 64, "time_ms": 0.036, "duplicate": false}, {"type": "reply", "bytes": 48, "response_ip": "127.0.0.1", "icmp_seq": 2, "ttl": 64, "time_ms": 0.036, "duplicate": false}]} jc-1.17.3/tests/fixtures/freebsd12/ping-ip-s.out000066400000000000000000000005571415226333200213330ustar00rootroot00000000000000PING 127.0.0.1 (127.0.0.1): 40 data bytes 48 bytes from 127.0.0.1: icmp_seq=0 ttl=64 time=0.024 ms 48 bytes from 127.0.0.1: icmp_seq=1 ttl=64 time=0.036 ms 48 bytes from 127.0.0.1: icmp_seq=2 ttl=64 time=0.036 ms --- 127.0.0.1 ping statistics --- 3 packets transmitted, 3 packets received, 0.0% packet loss round-trip min/avg/max/stddev = 0.024/0.032/0.036/0.006 ms jc-1.17.3/tests/fixtures/freebsd12/ping-ip-streaming.json000066400000000000000000000013651415226333200232220ustar00rootroot00000000000000[{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":0,"ttl":64,"time_ms":0.022},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":1,"ttl":64,"time_ms":0.036},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":2,"ttl":64,"time_ms":0.041},{"type":"summary","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"packets_transmitted":3,"packets_received":3,"packet_loss_percent":0.0,"duplicates":0,"round_trip_ms_min":0.022,"round_trip_ms_avg":0.033,"round_trip_ms_max":0.041,"round_trip_ms_stddev":0.008}] jc-1.17.3/tests/fixtures/freebsd12/ping-ip.json000066400000000000000000000012631415226333200212300ustar00rootroot00000000000000{"destination_ip": "127.0.0.1", "data_bytes": 56, "pattern": null, "destination": "127.0.0.1", "packets_transmitted": 3, "packets_received": 3, "packet_loss_percent": 0.0, "duplicates": 0, "round_trip_ms_min": 0.022, "round_trip_ms_avg": 0.033, "round_trip_ms_max": 0.041, "round_trip_ms_stddev": 0.008, "responses": [{"type": "reply", "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 0, "ttl": 64, "time_ms": 0.022, "duplicate": false}, {"type": "reply", "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 1, "ttl": 64, "time_ms": 0.036, "duplicate": false}, {"type": "reply", "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 2, "ttl": 64, "time_ms": 0.041, "duplicate": false}]} jc-1.17.3/tests/fixtures/freebsd12/ping-ip.out000066400000000000000000000005571415226333200210730ustar00rootroot00000000000000PING 127.0.0.1 (127.0.0.1): 56 data bytes 64 bytes from 127.0.0.1: icmp_seq=0 ttl=64 time=0.022 ms 64 bytes from 127.0.0.1: icmp_seq=1 ttl=64 time=0.036 ms 64 bytes from 127.0.0.1: icmp_seq=2 ttl=64 time=0.041 ms --- 127.0.0.1 ping statistics --- 3 packets transmitted, 3 packets received, 0.0% packet loss round-trip min/avg/max/stddev = 0.022/0.033/0.041/0.008 ms jc-1.17.3/tests/fixtures/freebsd12/ping6-hostname-p-streaming.json000066400000000000000000000012761415226333200247540ustar00rootroot00000000000000[{"type":"reply","destination_ip":"::1","sent_bytes":56,"pattern":"0xff","bytes":"16","response_ip":"::1","icmp_seq":0,"ttl":64,"time_ms":0.036},{"type":"reply","destination_ip":"::1","sent_bytes":56,"pattern":"0xff","bytes":"16","response_ip":"::1","icmp_seq":1,"ttl":64,"time_ms":0.051},{"type":"reply","destination_ip":"::1","sent_bytes":56,"pattern":"0xff","bytes":"16","response_ip":"::1","icmp_seq":2,"ttl":64,"time_ms":0.048},{"type":"summary","destination_ip":"::1","sent_bytes":56,"pattern":"0xff","packets_transmitted":3,"packets_received":3,"packet_loss_percent":0.0,"duplicates":0,"round_trip_ms_min":0.036,"round_trip_ms_avg":0.045,"round_trip_ms_max":0.051,"round_trip_ms_stddev":0.007}] jc-1.17.3/tests/fixtures/freebsd12/ping6-hostname-p.json000066400000000000000000000012611415226333200227570ustar00rootroot00000000000000{"source_ip": "::1", "destination_ip": "::1", "data_bytes": 56, "pattern": "0xff", "destination": "localhost", "packets_transmitted": 3, "packets_received": 3, "packet_loss_percent": 0.0, "duplicates": 0, "round_trip_ms_min": 0.036, "round_trip_ms_avg": 0.045, "round_trip_ms_max": 0.051, "round_trip_ms_stddev": 0.007, "responses": [{"type": "reply", "bytes": 16, "response_ip": "::1", "icmp_seq": 0, "ttl": 64, "time_ms": 0.036, "duplicate": false}, {"type": "reply", "bytes": 16, "response_ip": "::1", "icmp_seq": 1, "ttl": 64, "time_ms": 0.051, "duplicate": false}, {"type": "reply", "bytes": 16, "response_ip": "::1", "icmp_seq": 2, "ttl": 64, "time_ms": 0.048, "duplicate": false}]} jc-1.17.3/tests/fixtures/freebsd12/ping6-hostname-p.out000066400000000000000000000005511415226333200226160ustar00rootroot00000000000000PATTERN: 0xff PING6(56=40+8+8 bytes) ::1 --> ::1 16 bytes from ::1, icmp_seq=0 hlim=64 time=0.036 ms 16 bytes from ::1, icmp_seq=1 hlim=64 time=0.051 ms 16 bytes from ::1, icmp_seq=2 hlim=64 time=0.048 ms --- localhost ping6 statistics --- 3 packets transmitted, 3 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.036/0.045/0.051/0.007 ms jc-1.17.3/tests/fixtures/freebsd12/ping6-hostname-s-streaming.json000066400000000000000000000012661415226333200247560ustar00rootroot00000000000000[{"type":"reply","destination_ip":"::1","sent_bytes":88,"pattern":null,"bytes":"48","response_ip":"::1","icmp_seq":0,"ttl":64,"time_ms":0.035},{"type":"reply","destination_ip":"::1","sent_bytes":88,"pattern":null,"bytes":"48","response_ip":"::1","icmp_seq":1,"ttl":64,"time_ms":0.082},{"type":"reply","destination_ip":"::1","sent_bytes":88,"pattern":null,"bytes":"48","response_ip":"::1","icmp_seq":2,"ttl":64,"time_ms":0.051},{"type":"summary","destination_ip":"::1","sent_bytes":88,"pattern":null,"packets_transmitted":3,"packets_received":3,"packet_loss_percent":0.0,"duplicates":0,"round_trip_ms_min":0.035,"round_trip_ms_avg":0.056,"round_trip_ms_max":0.082,"round_trip_ms_stddev":0.019}] jc-1.17.3/tests/fixtures/freebsd12/ping6-hostname-s.json000066400000000000000000000012571415226333200227670ustar00rootroot00000000000000{"source_ip": "::1", "destination_ip": "::1", "data_bytes": 88, "pattern": null, "destination": "localhost", "packets_transmitted": 3, "packets_received": 3, "packet_loss_percent": 0.0, "duplicates": 0, "round_trip_ms_min": 0.035, "round_trip_ms_avg": 0.056, "round_trip_ms_max": 0.082, "round_trip_ms_stddev": 0.019, "responses": [{"type": "reply", "bytes": 48, "response_ip": "::1", "icmp_seq": 0, "ttl": 64, "time_ms": 0.035, "duplicate": false}, {"type": "reply", "bytes": 48, "response_ip": "::1", "icmp_seq": 1, "ttl": 64, "time_ms": 0.082, "duplicate": false}, {"type": "reply", "bytes": 48, "response_ip": "::1", "icmp_seq": 2, "ttl": 64, "time_ms": 0.051, "duplicate": false}]} jc-1.17.3/tests/fixtures/freebsd12/ping6-hostname-s.out000066400000000000000000000005341415226333200226220ustar00rootroot00000000000000PING6(88=40+8+40 bytes) ::1 --> ::1 48 bytes from ::1, icmp_seq=0 hlim=64 time=0.035 ms 48 bytes from ::1, icmp_seq=1 hlim=64 time=0.082 ms 48 bytes from ::1, icmp_seq=2 hlim=64 time=0.051 ms --- localhost ping6 statistics --- 3 packets transmitted, 3 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.035/0.056/0.082/0.019 ms jc-1.17.3/tests/fixtures/freebsd12/ping6-hostname-streaming.json000066400000000000000000000012661415226333200245160ustar00rootroot00000000000000[{"type":"reply","destination_ip":"::1","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"::1","icmp_seq":0,"ttl":64,"time_ms":0.036},{"type":"reply","destination_ip":"::1","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"::1","icmp_seq":1,"ttl":64,"time_ms":0.041},{"type":"reply","destination_ip":"::1","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"::1","icmp_seq":2,"ttl":64,"time_ms":0.048},{"type":"summary","destination_ip":"::1","sent_bytes":56,"pattern":null,"packets_transmitted":3,"packets_received":3,"packet_loss_percent":0.0,"duplicates":0,"round_trip_ms_min":0.036,"round_trip_ms_avg":0.042,"round_trip_ms_max":0.048,"round_trip_ms_stddev":0.005}] jc-1.17.3/tests/fixtures/freebsd12/ping6-hostname.json000066400000000000000000000012571415226333200225270ustar00rootroot00000000000000{"source_ip": "::1", "destination_ip": "::1", "data_bytes": 56, "pattern": null, "destination": "localhost", "packets_transmitted": 3, "packets_received": 3, "packet_loss_percent": 0.0, "duplicates": 0, "round_trip_ms_min": 0.036, "round_trip_ms_avg": 0.042, "round_trip_ms_max": 0.048, "round_trip_ms_stddev": 0.005, "responses": [{"type": "reply", "bytes": 16, "response_ip": "::1", "icmp_seq": 0, "ttl": 64, "time_ms": 0.036, "duplicate": false}, {"type": "reply", "bytes": 16, "response_ip": "::1", "icmp_seq": 1, "ttl": 64, "time_ms": 0.041, "duplicate": false}, {"type": "reply", "bytes": 16, "response_ip": "::1", "icmp_seq": 2, "ttl": 64, "time_ms": 0.048, "duplicate": false}]} jc-1.17.3/tests/fixtures/freebsd12/ping6-hostname.out000066400000000000000000000005331415226333200223610ustar00rootroot00000000000000PING6(56=40+8+8 bytes) ::1 --> ::1 16 bytes from ::1, icmp_seq=0 hlim=64 time=0.036 ms 16 bytes from ::1, icmp_seq=1 hlim=64 time=0.041 ms 16 bytes from ::1, icmp_seq=2 hlim=64 time=0.048 ms --- localhost ping6 statistics --- 3 packets transmitted, 3 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.036/0.042/0.048/0.005 ms jc-1.17.3/tests/fixtures/freebsd12/ping6-ip-p-streaming.json000066400000000000000000000012761415226333200235460ustar00rootroot00000000000000[{"type":"reply","destination_ip":"::1","sent_bytes":56,"pattern":"0xff","bytes":"16","response_ip":"::1","icmp_seq":0,"ttl":64,"time_ms":0.036},{"type":"reply","destination_ip":"::1","sent_bytes":56,"pattern":"0xff","bytes":"16","response_ip":"::1","icmp_seq":1,"ttl":64,"time_ms":0.054},{"type":"reply","destination_ip":"::1","sent_bytes":56,"pattern":"0xff","bytes":"16","response_ip":"::1","icmp_seq":2,"ttl":64,"time_ms":0.045},{"type":"summary","destination_ip":"::1","sent_bytes":56,"pattern":"0xff","packets_transmitted":3,"packets_received":3,"packet_loss_percent":0.0,"duplicates":0,"round_trip_ms_min":0.036,"round_trip_ms_avg":0.045,"round_trip_ms_max":0.054,"round_trip_ms_stddev":0.007}] jc-1.17.3/tests/fixtures/freebsd12/ping6-ip-p.json000066400000000000000000000012531415226333200215520ustar00rootroot00000000000000{"source_ip": "::1", "destination_ip": "::1", "data_bytes": 56, "pattern": "0xff", "destination": "::1", "packets_transmitted": 3, "packets_received": 3, "packet_loss_percent": 0.0, "duplicates": 0, "round_trip_ms_min": 0.036, "round_trip_ms_avg": 0.045, "round_trip_ms_max": 0.054, "round_trip_ms_stddev": 0.007, "responses": [{"type": "reply", "bytes": 16, "response_ip": "::1", "icmp_seq": 0, "ttl": 64, "time_ms": 0.036, "duplicate": false}, {"type": "reply", "bytes": 16, "response_ip": "::1", "icmp_seq": 1, "ttl": 64, "time_ms": 0.054, "duplicate": false}, {"type": "reply", "bytes": 16, "response_ip": "::1", "icmp_seq": 2, "ttl": 64, "time_ms": 0.045, "duplicate": false}]} jc-1.17.3/tests/fixtures/freebsd12/ping6-ip-p.out000066400000000000000000000005431415226333200214110ustar00rootroot00000000000000PATTERN: 0xff PING6(56=40+8+8 bytes) ::1 --> ::1 16 bytes from ::1, icmp_seq=0 hlim=64 time=0.036 ms 16 bytes from ::1, icmp_seq=1 hlim=64 time=0.054 ms 16 bytes from ::1, icmp_seq=2 hlim=64 time=0.045 ms --- ::1 ping6 statistics --- 3 packets transmitted, 3 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.036/0.045/0.054/0.007 ms jc-1.17.3/tests/fixtures/freebsd12/ping6-ip-s-streaming.json000066400000000000000000000012661415226333200235500ustar00rootroot00000000000000[{"type":"reply","destination_ip":"::1","sent_bytes":88,"pattern":null,"bytes":"48","response_ip":"::1","icmp_seq":0,"ttl":64,"time_ms":0.036},{"type":"reply","destination_ip":"::1","sent_bytes":88,"pattern":null,"bytes":"48","response_ip":"::1","icmp_seq":1,"ttl":64,"time_ms":0.088},{"type":"reply","destination_ip":"::1","sent_bytes":88,"pattern":null,"bytes":"48","response_ip":"::1","icmp_seq":2,"ttl":64,"time_ms":0.049},{"type":"summary","destination_ip":"::1","sent_bytes":88,"pattern":null,"packets_transmitted":3,"packets_received":3,"packet_loss_percent":0.0,"duplicates":0,"round_trip_ms_min":0.036,"round_trip_ms_avg":0.058,"round_trip_ms_max":0.088,"round_trip_ms_stddev":0.022}] jc-1.17.3/tests/fixtures/freebsd12/ping6-ip-s.json000066400000000000000000000012511415226333200215530ustar00rootroot00000000000000{"source_ip": "::1", "destination_ip": "::1", "data_bytes": 88, "pattern": null, "destination": "::1", "packets_transmitted": 3, "packets_received": 3, "packet_loss_percent": 0.0, "duplicates": 0, "round_trip_ms_min": 0.036, "round_trip_ms_avg": 0.058, "round_trip_ms_max": 0.088, "round_trip_ms_stddev": 0.022, "responses": [{"type": "reply", "bytes": 48, "response_ip": "::1", "icmp_seq": 0, "ttl": 64, "time_ms": 0.036, "duplicate": false}, {"type": "reply", "bytes": 48, "response_ip": "::1", "icmp_seq": 1, "ttl": 64, "time_ms": 0.088, "duplicate": false}, {"type": "reply", "bytes": 48, "response_ip": "::1", "icmp_seq": 2, "ttl": 64, "time_ms": 0.049, "duplicate": false}]} jc-1.17.3/tests/fixtures/freebsd12/ping6-ip-s.out000066400000000000000000000005261415226333200214150ustar00rootroot00000000000000PING6(88=40+8+40 bytes) ::1 --> ::1 48 bytes from ::1, icmp_seq=0 hlim=64 time=0.036 ms 48 bytes from ::1, icmp_seq=1 hlim=64 time=0.088 ms 48 bytes from ::1, icmp_seq=2 hlim=64 time=0.049 ms --- ::1 ping6 statistics --- 3 packets transmitted, 3 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.036/0.058/0.088/0.022 ms jc-1.17.3/tests/fixtures/freebsd12/ping6-ip-streaming.json000066400000000000000000000012661415226333200233100ustar00rootroot00000000000000[{"type":"reply","destination_ip":"::1","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"::1","icmp_seq":0,"ttl":64,"time_ms":0.034},{"type":"reply","destination_ip":"::1","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"::1","icmp_seq":1,"ttl":64,"time_ms":0.053},{"type":"reply","destination_ip":"::1","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"::1","icmp_seq":2,"ttl":64,"time_ms":0.045},{"type":"summary","destination_ip":"::1","sent_bytes":56,"pattern":null,"packets_transmitted":3,"packets_received":3,"packet_loss_percent":0.0,"duplicates":0,"round_trip_ms_min":0.034,"round_trip_ms_avg":0.044,"round_trip_ms_max":0.053,"round_trip_ms_stddev":0.008}] jc-1.17.3/tests/fixtures/freebsd12/ping6-ip.json000066400000000000000000000012511415226333200213130ustar00rootroot00000000000000{"source_ip": "::1", "destination_ip": "::1", "data_bytes": 56, "pattern": null, "destination": "::1", "packets_transmitted": 3, "packets_received": 3, "packet_loss_percent": 0.0, "duplicates": 0, "round_trip_ms_min": 0.034, "round_trip_ms_avg": 0.044, "round_trip_ms_max": 0.053, "round_trip_ms_stddev": 0.008, "responses": [{"type": "reply", "bytes": 16, "response_ip": "::1", "icmp_seq": 0, "ttl": 64, "time_ms": 0.034, "duplicate": false}, {"type": "reply", "bytes": 16, "response_ip": "::1", "icmp_seq": 1, "ttl": 64, "time_ms": 0.053, "duplicate": false}, {"type": "reply", "bytes": 16, "response_ip": "::1", "icmp_seq": 2, "ttl": 64, "time_ms": 0.045, "duplicate": false}]} jc-1.17.3/tests/fixtures/freebsd12/ping6-ip.out000066400000000000000000000005251415226333200211540ustar00rootroot00000000000000PING6(56=40+8+8 bytes) ::1 --> ::1 16 bytes from ::1, icmp_seq=0 hlim=64 time=0.034 ms 16 bytes from ::1, icmp_seq=1 hlim=64 time=0.053 ms 16 bytes from ::1, icmp_seq=2 hlim=64 time=0.045 ms --- ::1 ping6 statistics --- 3 packets transmitted, 3 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.034/0.044/0.053/0.008 ms jc-1.17.3/tests/fixtures/freebsd12/stat.json000066400000000000000000001706741415226333200206550ustar00rootroot00000000000000[{"file":"/etc/X11","unix_device":93,"inode":1685475,"flags":"drwxr-xr-x","links":2,"user":"root","group":"wheel","rdev":3370961,"size":512,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:25:13 2019","change_time":"May 27 05:40:25 2020","birth_time":"Oct 31 21:25:13 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582313,"modify_time_epoch_utc":null,"change_time_epoch":1590583225,"change_time_epoch_utc":null,"birth_time_epoch":1572582313,"birth_time_epoch_utc":null},{"file":"/etc/aliases","unix_device":93,"inode":1685419,"flags":"lrwxr-xr-x","links":1,"user":"root","group":"wheel","rdev":7596553527777386861,"size":12,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:32:27 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:32:27 2019","block_size":32768,"blocks":0,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582747,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582747,"birth_time_epoch_utc":null},{"file":"/etc/amd.map","unix_device":93,"inode":1685412,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377398,"size":225,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:31:22 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:31:22 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582682,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582682,"birth_time_epoch_utc":null},{"file":"/etc/auto_master","unix_device":93,"inode":1685417,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377407,"size":373,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:31:24 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:31:24 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582684,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582684,"birth_time_epoch_utc":null},{"file":"/etc/autofs","unix_device":93,"inode":1685474,"flags":"drwxr-xr-x","links":2,"user":"root","group":"wheel","rdev":3370960,"size":512,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:31:24 2019","change_time":"May 27 05:40:25 2020","birth_time":"Oct 31 21:31:24 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582684,"modify_time_epoch_utc":null,"change_time_epoch":1590583225,"change_time_epoch_utc":null,"birth_time_epoch":1572582684,"birth_time_epoch_utc":null},{"file":"/etc/blacklistd.conf","unix_device":93,"inode":1685392,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377374,"size":473,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:31:25 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:31:25 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582685,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582685,"birth_time_epoch_utc":null},{"file":"/etc/bluetooth","unix_device":93,"inode":1685458,"flags":"drwxr-xr-x","links":2,"user":"root","group":"wheel","rdev":3370957,"size":512,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:31:25 2019","change_time":"May 27 05:40:25 2020","birth_time":"Oct 31 21:31:25 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582685,"modify_time_epoch_utc":null,"change_time_epoch":1590583225,"change_time_epoch_utc":null,"birth_time_epoch":1572582685,"birth_time_epoch_utc":null},{"file":"/etc/cron.d","unix_device":93,"inode":1685408,"flags":"drwxr-xr-x","links":2,"user":"root","group":"wheel","rdev":3377394,"size":512,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:30:12 2019","change_time":"May 27 05:40:25 2020","birth_time":"Oct 31 21:30:12 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582612,"modify_time_epoch_utc":null,"change_time_epoch":1590583225,"change_time_epoch_utc":null,"birth_time_epoch":1572582612,"birth_time_epoch_utc":null},{"file":"/etc/crontab","unix_device":93,"inode":1685463,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377509,"size":731,"access_time":"May 28 08:31:19 2020","modify_time":"Oct 31 21:30:54 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:30:54 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590679879,"access_time_epoch_utc":null,"modify_time_epoch":1572582654,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582654,"birth_time_epoch_utc":null},{"file":"/etc/csh.cshrc","unix_device":93,"inode":1685466,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377512,"size":116,"access_time":"May 28 23:00:16 2020","modify_time":"Oct 31 21:27:28 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:27:28 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590732016,"access_time_epoch_utc":null,"modify_time_epoch":1572582448,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582448,"birth_time_epoch_utc":null},{"file":"/etc/csh.login","unix_device":93,"inode":1685422,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377421,"size":486,"access_time":"May 27 12:48:15 2020","modify_time":"Oct 31 21:27:28 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:27:28 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590608895,"access_time_epoch_utc":null,"modify_time_epoch":1572582448,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582448,"birth_time_epoch_utc":null},{"file":"/etc/csh.logout","unix_device":93,"inode":1685385,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377351,"size":118,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:27:28 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:27:28 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582448,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582448,"birth_time_epoch_utc":null},{"file":"/etc/ddb.conf","unix_device":93,"inode":1685381,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377347,"size":569,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:27:58 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:27:58 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582478,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582478,"birth_time_epoch_utc":null},{"file":"/etc/defaults","unix_device":93,"inode":1685390,"flags":"drwxr-xr-x","links":2,"user":"root","group":"wheel","rdev":3377372,"size":512,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:31:25 2019","change_time":"May 27 05:40:25 2020","birth_time":"Oct 31 21:31:25 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582685,"modify_time_epoch_utc":null,"change_time_epoch":1590583225,"change_time_epoch_utc":null,"birth_time_epoch":1572582685,"birth_time_epoch_utc":null},{"file":"/etc/devd","unix_device":93,"inode":1685425,"flags":"drwxr-xr-x","links":2,"user":"root","group":"wheel","rdev":3370944,"size":512,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:31:28 2019","change_time":"May 27 05:40:25 2020","birth_time":"Oct 31 21:31:28 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582688,"modify_time_epoch_utc":null,"change_time_epoch":1590583225,"change_time_epoch_utc":null,"birth_time_epoch":1572582688,"birth_time_epoch_utc":null},{"file":"/etc/devd.conf","unix_device":93,"inode":1685418,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377416,"size":10504,"access_time":"May 27 05:45:37 2020","modify_time":"Oct 31 21:28:05 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:28:05 2019","block_size":32768,"blocks":24,"unix_flags":"0","access_time_epoch":1590583537,"access_time_epoch_utc":null,"modify_time_epoch":1572582485,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582485,"birth_time_epoch_utc":null},{"file":"/etc/devfs.conf","unix_device":93,"inode":1685406,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377392,"size":1998,"access_time":"May 27 12:46:05 2020","modify_time":"Oct 31 21:27:58 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:27:58 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590608765,"access_time_epoch_utc":null,"modify_time_epoch":1572582478,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582478,"birth_time_epoch_utc":null},{"file":"/etc/dhclient.conf","unix_device":93,"inode":1685404,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377390,"size":279,"access_time":"May 27 05:45:37 2020","modify_time":"Oct 31 21:27:58 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:27:58 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583537,"access_time_epoch_utc":null,"modify_time_epoch":1572582478,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582478,"birth_time_epoch_utc":null},{"file":"/etc/disktab","unix_device":93,"inode":1685430,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3370950,"size":5909,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:28:05 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:28:05 2019","block_size":32768,"blocks":16,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582485,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582485,"birth_time_epoch_utc":null},{"file":"/etc/dma","unix_device":93,"inode":1685472,"flags":"drwxr-xr-x","links":2,"user":"root","group":"wheel","rdev":3377518,"size":512,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:27:17 2019","change_time":"May 27 05:40:25 2020","birth_time":"Oct 31 21:27:17 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582437,"modify_time_epoch_utc":null,"change_time_epoch":1590583225,"change_time_epoch_utc":null,"birth_time_epoch":1572582437,"birth_time_epoch_utc":null},{"file":"/etc/dumpdates","unix_device":93,"inode":1685433,"flags":"-rw-rw-r--","links":1,"user":"root","group":"operator","rdev":0,"size":0,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:27:59 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:27:59 2019","block_size":32768,"blocks":0,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582479,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582479,"birth_time_epoch_utc":null},{"file":"/etc/fbtab","unix_device":93,"inode":1685434,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377430,"size":156,"access_time":"May 27 12:48:15 2020","modify_time":"Oct 31 21:29:55 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:29:55 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590608895,"access_time_epoch_utc":null,"modify_time_epoch":1572582595,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582595,"birth_time_epoch_utc":null},{"file":"/etc/freebsd-update.conf","unix_device":93,"inode":1685428,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3370948,"size":2910,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:31:34 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:31:34 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582694,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582694,"birth_time_epoch_utc":null},{"file":"/etc/fstab","unix_device":93,"inode":1685383,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377350,"size":102,"access_time":"May 28 03:02:18 2020","modify_time":"May 27 05:44:32 2020","change_time":"May 27 05:44:32 2020","birth_time":"May 27 05:44:32 2020","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590660138,"access_time_epoch_utc":null,"modify_time_epoch":1590583472,"modify_time_epoch_utc":null,"change_time_epoch":1590583472,"change_time_epoch_utc":null,"birth_time_epoch":1590583472,"birth_time_epoch_utc":null},{"file":"/etc/ftpusers","unix_device":93,"inode":1685398,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377382,"size":292,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:27:20 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:27:20 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582440,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582440,"birth_time_epoch_utc":null},{"file":"/etc/gettytab","unix_device":93,"inode":1685399,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377384,"size":6201,"access_time":"May 27 12:48:12 2020","modify_time":"Oct 31 21:27:17 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:27:17 2019","block_size":32768,"blocks":16,"unix_flags":"0","access_time_epoch":1590608892,"access_time_epoch_utc":null,"modify_time_epoch":1572582437,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582437,"birth_time_epoch_utc":null},{"file":"/etc/group","unix_device":93,"inode":1685439,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3415435,"size":539,"access_time":"May 28 23:36:49 2020","modify_time":"May 28 21:36:50 2020","change_time":"May 28 21:36:50 2020","birth_time":"May 28 21:36:50 2020","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590734209,"access_time_epoch_utc":null,"modify_time_epoch":1590727010,"modify_time_epoch_utc":null,"change_time_epoch":1590727010,"change_time_epoch_utc":null,"birth_time_epoch":1590727010,"birth_time_epoch_utc":null},{"file":"/etc/gss","unix_device":93,"inode":1685424,"flags":"drwxr-xr-x","links":2,"user":"root","group":"wheel","rdev":3377423,"size":512,"access_time":"May 28 22:08:32 2020","modify_time":"Oct 31 21:32:27 2019","change_time":"May 27 05:40:25 2020","birth_time":"Oct 31 21:32:27 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590728912,"access_time_epoch_utc":null,"modify_time_epoch":1572582747,"modify_time_epoch_utc":null,"change_time_epoch":1590583225,"change_time_epoch_utc":null,"birth_time_epoch":1572582747,"birth_time_epoch_utc":null},{"file":"/etc/host.conf","unix_device":93,"inode":1710162,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3403621,"size":46,"access_time":"May 27 05:45:40 2020","modify_time":"May 27 05:45:40 2020","change_time":"May 27 05:45:40 2020","birth_time":"May 27 05:45:40 2020","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583540,"access_time_epoch_utc":null,"modify_time_epoch":1590583540,"modify_time_epoch_utc":null,"change_time_epoch":1590583540,"change_time_epoch_utc":null,"birth_time_epoch":1590583540,"birth_time_epoch_utc":null},{"file":"/etc/hostid","unix_device":93,"inode":1710160,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377383,"size":37,"access_time":"May 27 05:45:21 2020","modify_time":"May 27 05:45:21 2020","change_time":"May 27 05:45:21 2020","birth_time":"May 27 05:45:21 2020","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583521,"access_time_epoch_utc":null,"modify_time_epoch":1590583521,"modify_time_epoch_utc":null,"change_time_epoch":1590583521,"change_time_epoch_utc":null,"birth_time_epoch":1590583521,"birth_time_epoch_utc":null},{"file":"/etc/hosts","unix_device":93,"inode":1685465,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377511,"size":1096,"access_time":"May 28 23:02:58 2020","modify_time":"Oct 31 21:25:54 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:25:54 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590732178,"access_time_epoch_utc":null,"modify_time_epoch":1572582354,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582354,"birth_time_epoch_utc":null},{"file":"/etc/hosts.allow","unix_device":93,"inode":1685421,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377420,"size":3467,"access_time":"May 28 23:01:05 2020","modify_time":"Oct 31 21:26:42 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:26:42 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590732065,"access_time_epoch_utc":null,"modify_time_epoch":1572582402,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582402,"birth_time_epoch_utc":null},{"file":"/etc/hosts.equiv","unix_device":93,"inode":1685378,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3370941,"size":124,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:25:54 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:25:54 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582354,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582354,"birth_time_epoch_utc":null},{"file":"/etc/hosts.lpd","unix_device":93,"inode":1685454,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3370953,"size":116,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:31:37 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:31:37 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582697,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582697,"birth_time_epoch_utc":null},{"file":"/etc/inetd.conf","unix_device":93,"inode":1685395,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377377,"size":5290,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:31:35 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:31:35 2019","block_size":32768,"blocks":16,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582695,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582695,"birth_time_epoch_utc":null},{"file":"/etc/libalias.conf","unix_device":93,"inode":1685455,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3370954,"size":252,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:26:05 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:26:05 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582365,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582365,"birth_time_epoch_utc":null},{"file":"/etc/libmap.conf","unix_device":93,"inode":1685782,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377823,"size":122,"access_time":"May 28 23:36:49 2020","modify_time":"Oct 31 21:33:42 2019","change_time":"May 27 05:40:37 2020","birth_time":"Oct 31 21:33:42 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590734209,"access_time_epoch_utc":null,"modify_time_epoch":1572582822,"modify_time_epoch_utc":null,"change_time_epoch":1590583237,"change_time_epoch_utc":null,"birth_time_epoch":1572582822,"birth_time_epoch_utc":null},{"file":"/etc/localtime","unix_device":93,"inode":1685384,"flags":"-r--r--r--","links":1,"user":"root","group":"wheel","rdev":3377429,"size":2819,"access_time":"May 28 23:36:49 2020","modify_time":"May 27 05:42:43 2020","change_time":"May 27 05:42:43 2020","birth_time":"May 27 05:42:43 2020","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590734209,"access_time_epoch_utc":null,"modify_time_epoch":1590583363,"modify_time_epoch_utc":null,"change_time_epoch":1590583363,"change_time_epoch_utc":null,"birth_time_epoch":1590583363,"birth_time_epoch_utc":null},{"file":"/etc/locate.rc","unix_device":93,"inode":1685473,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377519,"size":969,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:30:24 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:30:24 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582624,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582624,"birth_time_epoch_utc":null},{"file":"/etc/login.access","unix_device":93,"inode":1685389,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377371,"size":1853,"access_time":"May 28 23:01:07 2020","modify_time":"Oct 31 21:32:27 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:32:27 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590732067,"access_time_epoch_utc":null,"modify_time_epoch":1572582747,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582747,"birth_time_epoch_utc":null},{"file":"/etc/login.conf","unix_device":93,"inode":1685445,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377486,"size":6800,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:29:55 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:29:55 2019","block_size":32768,"blocks":16,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582595,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582595,"birth_time_epoch_utc":null},{"file":"/etc/login.conf.db","unix_device":93,"inode":1685441,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377466,"size":16384,"access_time":"May 28 23:35:00 2020","modify_time":"Oct 31 21:29:55 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:29:55 2019","block_size":32768,"blocks":32,"unix_flags":"0","access_time_epoch":1590734100,"access_time_epoch_utc":null,"modify_time_epoch":1572582595,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582595,"birth_time_epoch_utc":null},{"file":"/etc/mac.conf","unix_device":93,"inode":1685437,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377454,"size":579,"access_time":"May 28 22:11:10 2020","modify_time":"Oct 31 21:25:54 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:25:54 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590729070,"access_time_epoch_utc":null,"modify_time_epoch":1572582354,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582354,"birth_time_epoch_utc":null},{"file":"/etc/mail","unix_device":93,"inode":1685429,"flags":"drwxr-xr-x","links":3,"user":"root","group":"wheel","rdev":3370949,"size":512,"access_time":"May 27 05:40:02 2020","modify_time":"May 27 12:46:06 2020","change_time":"May 27 12:46:06 2020","birth_time":"Oct 31 21:32:27 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1590608766,"modify_time_epoch_utc":null,"change_time_epoch":1590608766,"change_time_epoch_utc":null,"birth_time_epoch":1572582747,"birth_time_epoch_utc":null},{"file":"/etc/mail.rc","unix_device":93,"inode":1685460,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3370959,"size":106,"access_time":"May 28 03:01:45 2020","modify_time":"Oct 31 21:30:25 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:30:25 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590660105,"access_time_epoch_utc":null,"modify_time_epoch":1572582625,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582625,"birth_time_epoch_utc":null},{"file":"/etc/master.passwd","unix_device":93,"inode":1685443,"flags":"-rw-------","links":1,"user":"root","group":"wheel","rdev":3370947,"size":2199,"access_time":"May 28 21:36:50 2020","modify_time":"May 28 21:36:50 2020","change_time":"May 28 21:36:51 2020","birth_time":"May 28 21:36:50 2020","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590727010,"access_time_epoch_utc":null,"modify_time_epoch":1590727010,"modify_time_epoch_utc":null,"change_time_epoch":1590727011,"change_time_epoch_utc":null,"birth_time_epoch":1590727010,"birth_time_epoch_utc":null},{"file":"/etc/motd","unix_device":93,"inode":1685394,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3404046,"size":903,"access_time":"May 28 21:29:24 2020","modify_time":"May 27 12:46:05 2020","change_time":"May 27 12:46:05 2020","birth_time":"Oct 31 21:29:55 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590726564,"access_time_epoch_utc":null,"modify_time_epoch":1590608765,"modify_time_epoch_utc":null,"change_time_epoch":1590608765,"change_time_epoch_utc":null,"birth_time_epoch":1572582595,"birth_time_epoch_utc":null},{"file":"/etc/mtree","unix_device":93,"inode":1685410,"flags":"drwxr-xr-x","links":2,"user":"root","group":"wheel","rdev":3377396,"size":512,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:32:27 2019","change_time":"May 27 05:40:25 2020","birth_time":"Oct 31 21:32:27 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582747,"modify_time_epoch_utc":null,"change_time_epoch":1590583225,"change_time_epoch_utc":null,"birth_time_epoch":1572582747,"birth_time_epoch_utc":null},{"file":"/etc/netconfig","unix_device":93,"inode":1685402,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377387,"size":798,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:25:54 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:25:54 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582354,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582354,"birth_time_epoch_utc":null},{"file":"/etc/netstart","unix_device":93,"inode":1685456,"flags":"-rwxr-xr-x","links":1,"user":"root","group":"wheel","rdev":3370955,"size":2211,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:27:18 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:27:18 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582438,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582438,"birth_time_epoch_utc":null},{"file":"/etc/network.subr","unix_device":93,"inode":1685450,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377496,"size":37552,"access_time":"May 27 12:46:36 2020","modify_time":"Oct 31 21:27:18 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:27:18 2019","block_size":32768,"blocks":80,"unix_flags":"0","access_time_epoch":1590608796,"access_time_epoch_utc":null,"modify_time_epoch":1572582438,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582438,"birth_time_epoch_utc":null},{"file":"/etc/networks","unix_device":93,"inode":1685416,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377406,"size":378,"access_time":"May 28 22:50:30 2020","modify_time":"Oct 31 21:25:54 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:25:54 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590731430,"access_time_epoch_utc":null,"modify_time_epoch":1572582354,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582354,"birth_time_epoch_utc":null},{"file":"/etc/newsyslog.conf","unix_device":93,"inode":1685449,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377491,"size":1726,"access_time":"May 28 23:00:00 2020","modify_time":"Oct 31 21:31:01 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:31:01 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590732000,"access_time_epoch_utc":null,"modify_time_epoch":1572582661,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582661,"birth_time_epoch_utc":null},{"file":"/etc/newsyslog.conf.d","unix_device":93,"inode":1685409,"flags":"drwxr-xr-x","links":2,"user":"root","group":"wheel","rdev":3377395,"size":512,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:31:01 2019","change_time":"May 27 05:40:25 2020","birth_time":"Oct 31 21:31:01 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582661,"modify_time_epoch_utc":null,"change_time_epoch":1590583225,"change_time_epoch_utc":null,"birth_time_epoch":1572582661,"birth_time_epoch_utc":null},{"file":"/etc/nscd.conf","unix_device":93,"inode":1685401,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377386,"size":301,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:31:37 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:31:37 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582697,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582697,"birth_time_epoch_utc":null},{"file":"/etc/nsmb.conf","unix_device":93,"inode":1685464,"flags":"-rw-------","links":1,"user":"root","group":"wheel","rdev":3377510,"size":1702,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:26:35 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:26:35 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582395,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582395,"birth_time_epoch_utc":null},{"file":"/etc/nsswitch.conf","unix_device":93,"inode":1685391,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377373,"size":345,"access_time":"May 28 23:36:49 2020","modify_time":"Oct 31 21:25:54 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:25:54 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590734209,"access_time_epoch_utc":null,"modify_time_epoch":1572582354,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582354,"birth_time_epoch_utc":null},{"file":"/etc/ntp","unix_device":93,"inode":1685407,"flags":"drwx------","links":2,"user":"root","group":"wheel","rdev":3377393,"size":512,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:31:42 2019","change_time":"May 27 05:40:25 2020","birth_time":"Oct 31 21:31:42 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582702,"modify_time_epoch_utc":null,"change_time_epoch":1590583225,"change_time_epoch_utc":null,"birth_time_epoch":1572582702,"birth_time_epoch_utc":null},{"file":"/etc/ntp.conf","unix_device":93,"inode":1685442,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377470,"size":3997,"access_time":"May 28 23:00:16 2020","modify_time":"Oct 31 21:31:42 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:31:42 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590732016,"access_time_epoch_utc":null,"modify_time_epoch":1572582702,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582702,"birth_time_epoch_utc":null},{"file":"/etc/opieaccess","unix_device":93,"inode":1685420,"flags":"-rw-------","links":1,"user":"root","group":"wheel","rdev":3377419,"size":446,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:26:26 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:26:26 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582386,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582386,"birth_time_epoch_utc":null},{"file":"/etc/opiekeys","unix_device":93,"inode":1710173,"flags":"-rw-------","links":1,"user":"root","group":"wheel","rdev":0,"size":0,"access_time":"May 28 23:01:05 2020","modify_time":"May 27 12:46:39 2020","change_time":"May 27 12:46:39 2020","birth_time":"May 27 12:46:39 2020","block_size":32768,"blocks":0,"unix_flags":"0","access_time_epoch":1590732065,"access_time_epoch_utc":null,"modify_time_epoch":1590608799,"modify_time_epoch_utc":null,"change_time_epoch":1590608799,"change_time_epoch_utc":null,"birth_time_epoch":1590608799,"birth_time_epoch_utc":null},{"file":"/etc/pam.d","unix_device":93,"inode":1685470,"flags":"drwxr-xr-x","links":2,"user":"root","group":"wheel","rdev":3377516,"size":512,"access_time":"May 27 05:40:37 2020","modify_time":"May 27 05:40:37 2020","change_time":"May 27 05:40:37 2020","birth_time":"Oct 31 21:26:29 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583237,"access_time_epoch_utc":null,"modify_time_epoch":1590583237,"modify_time_epoch_utc":null,"change_time_epoch":1590583237,"change_time_epoch_utc":null,"birth_time_epoch":1572582389,"birth_time_epoch_utc":null},{"file":"/etc/passwd","unix_device":93,"inode":1711921,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377348,"size":1838,"access_time":"May 28 23:10:18 2020","modify_time":"May 28 21:36:50 2020","change_time":"May 28 21:36:50 2020","birth_time":"May 28 21:36:50 2020","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590732618,"access_time_epoch_utc":null,"modify_time_epoch":1590727010,"modify_time_epoch_utc":null,"change_time_epoch":1590727010,"change_time_epoch_utc":null,"birth_time_epoch":1590727010,"birth_time_epoch_utc":null},{"file":"/etc/pccard_ether","unix_device":93,"inode":1685387,"flags":"-rwxr-xr-x","links":1,"user":"root","group":"wheel","rdev":3377369,"size":2816,"access_time":"May 27 05:45:37 2020","modify_time":"Oct 31 21:27:18 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:27:18 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583537,"access_time_epoch_utc":null,"modify_time_epoch":1572582438,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582438,"birth_time_epoch_utc":null},{"file":"/etc/periodic","unix_device":93,"inode":1685459,"flags":"drwxr-xr-x","links":6,"user":"root","group":"wheel","rdev":3370958,"size":512,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:25:13 2019","change_time":"May 27 05:40:25 2020","birth_time":"Oct 31 21:25:13 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582313,"modify_time_epoch_utc":null,"change_time_epoch":1590583225,"change_time_epoch_utc":null,"birth_time_epoch":1572582313,"birth_time_epoch_utc":null},{"file":"/etc/pf.os","unix_device":93,"inode":1685382,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377352,"size":29348,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:28:10 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:28:10 2019","block_size":32768,"blocks":64,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582490,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582490,"birth_time_epoch_utc":null},{"file":"/etc/phones","unix_device":93,"inode":1685462,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377508,"size":252,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:30:08 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:30:08 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582608,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582608,"birth_time_epoch_utc":null},{"file":"/etc/pkg","unix_device":93,"inode":1685393,"flags":"drwxr-xr-x","links":2,"user":"root","group":"wheel","rdev":3377375,"size":512,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:31:45 2019","change_time":"May 27 05:40:25 2020","birth_time":"Oct 31 21:31:45 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582705,"modify_time_epoch_utc":null,"change_time_epoch":1590583225,"change_time_epoch_utc":null,"birth_time_epoch":1572582705,"birth_time_epoch_utc":null},{"file":"/etc/portsnap.conf","unix_device":93,"inode":1685457,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3370956,"size":1512,"access_time":"May 27 13:02:42 2020","modify_time":"Oct 31 21:31:46 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:31:46 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590609762,"access_time_epoch_utc":null,"modify_time_epoch":1572582706,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582706,"birth_time_epoch_utc":null},{"file":"/etc/ppp","unix_device":93,"inode":1685448,"flags":"drwxr-xr-x","links":2,"user":"root","group":"wheel","rdev":3377490,"size":512,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:31:47 2019","change_time":"May 27 05:40:25 2020","birth_time":"Oct 31 21:31:47 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582707,"modify_time_epoch_utc":null,"change_time_epoch":1590583225,"change_time_epoch_utc":null,"birth_time_epoch":1572582707,"birth_time_epoch_utc":null},{"file":"/etc/printcap","unix_device":93,"inode":1685423,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377422,"size":2072,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:31:37 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:31:37 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582697,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582697,"birth_time_epoch_utc":null},{"file":"/etc/profile","unix_device":93,"inode":1685388,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377370,"size":623,"access_time":"May 28 21:29:24 2020","modify_time":"Oct 31 21:27:26 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:27:26 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590726564,"access_time_epoch_utc":null,"modify_time_epoch":1572582446,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582446,"birth_time_epoch_utc":null},{"file":"/etc/protocols","unix_device":93,"inode":1685403,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377388,"size":6463,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:25:54 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:25:54 2019","block_size":32768,"blocks":16,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582354,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582354,"birth_time_epoch_utc":null},{"file":"/etc/pwd.db","unix_device":93,"inode":1710163,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377360,"size":40960,"access_time":"May 28 23:36:49 2020","modify_time":"May 28 21:36:50 2020","change_time":"May 28 21:36:50 2020","birth_time":"May 28 21:36:50 2020","block_size":32768,"blocks":80,"unix_flags":"0","access_time_epoch":1590734209,"access_time_epoch_utc":null,"modify_time_epoch":1590727010,"modify_time_epoch_utc":null,"change_time_epoch":1590727010,"change_time_epoch_utc":null,"birth_time_epoch":1590727010,"birth_time_epoch_utc":null},{"file":"/etc/rc","unix_device":93,"inode":1685469,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377514,"size":5043,"access_time":"May 27 05:45:38 2020","modify_time":"Oct 31 21:27:18 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:27:18 2019","block_size":32768,"blocks":16,"unix_flags":"0","access_time_epoch":1590583538,"access_time_epoch_utc":null,"modify_time_epoch":1572582438,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582438,"birth_time_epoch_utc":null},{"file":"/etc/rc.bsdextended","unix_device":93,"inode":1685396,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377379,"size":4612,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:32:27 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:32:27 2019","block_size":32768,"blocks":16,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582747,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582747,"birth_time_epoch_utc":null},{"file":"/etc/rc.conf","unix_device":93,"inode":1710165,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3403953,"size":213,"access_time":"May 28 23:33:00 2020","modify_time":"May 27 05:44:32 2020","change_time":"May 27 05:44:32 2020","birth_time":"May 27 05:44:32 2020","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590733980,"access_time_epoch_utc":null,"modify_time_epoch":1590583472,"modify_time_epoch_utc":null,"change_time_epoch":1590583472,"change_time_epoch_utc":null,"birth_time_epoch":1590583472,"birth_time_epoch_utc":null},{"file":"/etc/rc.conf.d","unix_device":93,"inode":1685411,"flags":"drwxr-xr-x","links":2,"user":"root","group":"wheel","rdev":3377397,"size":512,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:25:13 2019","change_time":"May 27 05:40:25 2020","birth_time":"Oct 31 21:25:13 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582313,"modify_time_epoch_utc":null,"change_time_epoch":1590583225,"change_time_epoch_utc":null,"birth_time_epoch":1572582313,"birth_time_epoch_utc":null},{"file":"/etc/rc.d","unix_device":93,"inode":1685405,"flags":"drwxr-xr-x","links":2,"user":"root","group":"wheel","rdev":3377391,"size":3072,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:27:18 2019","change_time":"May 27 05:40:25 2020","birth_time":"Oct 31 21:27:18 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582438,"modify_time_epoch_utc":null,"change_time_epoch":1590583225,"change_time_epoch_utc":null,"birth_time_epoch":1572582438,"birth_time_epoch_utc":null},{"file":"/etc/rc.firewall","unix_device":93,"inode":1685431,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377424,"size":18803,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:32:27 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:32:27 2019","block_size":32768,"blocks":40,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582747,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582747,"birth_time_epoch_utc":null},{"file":"/etc/rc.initdiskless","unix_device":93,"inode":1685461,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377504,"size":13660,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:27:18 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:27:18 2019","block_size":32768,"blocks":32,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582438,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582438,"birth_time_epoch_utc":null},{"file":"/etc/rc.resume","unix_device":93,"inode":1685386,"flags":"-rwxr-xr-x","links":1,"user":"root","group":"wheel","rdev":3377368,"size":2522,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:27:18 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:27:18 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582438,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582438,"birth_time_epoch_utc":null},{"file":"/etc/rc.sendmail","unix_device":93,"inode":1685426,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3370945,"size":5791,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:32:27 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:32:27 2019","block_size":32768,"blocks":16,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582747,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582747,"birth_time_epoch_utc":null},{"file":"/etc/rc.shutdown","unix_device":93,"inode":1685414,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377400,"size":3440,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:27:18 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:27:18 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582438,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582438,"birth_time_epoch_utc":null},{"file":"/etc/rc.subr","unix_device":93,"inode":1685415,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377408,"size":50816,"access_time":"May 28 23:00:16 2020","modify_time":"Oct 31 21:27:18 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:27:18 2019","block_size":32768,"blocks":104,"unix_flags":"0","access_time_epoch":1590732016,"access_time_epoch_utc":null,"modify_time_epoch":1572582438,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582438,"birth_time_epoch_utc":null},{"file":"/etc/rc.suspend","unix_device":93,"inode":1685446,"flags":"-rwxr-xr-x","links":1,"user":"root","group":"wheel","rdev":3377488,"size":2334,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:27:18 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:27:18 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582438,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582438,"birth_time_epoch_utc":null},{"file":"/etc/regdomain.xml","unix_device":93,"inode":1685444,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377472,"size":53728,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:26:26 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:26:26 2019","block_size":32768,"blocks":112,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582386,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582386,"birth_time_epoch_utc":null},{"file":"/etc/remote","unix_device":93,"inode":1685413,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377399,"size":2708,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:30:08 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:30:08 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582608,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582608,"birth_time_epoch_utc":null},{"file":"/etc/resolv.conf","unix_device":93,"inode":1710166,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3401639,"size":70,"access_time":"May 28 23:01:05 2020","modify_time":"May 27 13:01:01 2020","change_time":"May 27 13:01:01 2020","birth_time":"May 27 05:44:32 2020","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590732065,"access_time_epoch_utc":null,"modify_time_epoch":1590609661,"modify_time_epoch_utc":null,"change_time_epoch":1590609661,"change_time_epoch_utc":null,"birth_time_epoch":1590583472,"birth_time_epoch_utc":null},{"file":"/etc/resolv.conf.bak","unix_device":93,"inode":1710161,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3401638,"size":44,"access_time":"May 27 13:00:57 2020","modify_time":"May 27 13:01:01 2020","change_time":"May 27 13:01:01 2020","birth_time":"May 27 05:45:40 2020","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590609657,"access_time_epoch_utc":null,"modify_time_epoch":1590609661,"modify_time_epoch_utc":null,"change_time_epoch":1590609661,"change_time_epoch_utc":null,"birth_time_epoch":1590583540,"birth_time_epoch_utc":null},{"file":"/etc/rmt","unix_device":93,"inode":1685379,"flags":"lrwxr-xr-x","links":1,"user":"root","group":"wheel","rdev":8299978478479945262,"size":15,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:32:27 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:32:27 2019","block_size":32768,"blocks":0,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582747,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582747,"birth_time_epoch_utc":null},{"file":"/etc/rpc","unix_device":93,"inode":1685471,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377517,"size":1683,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:25:54 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:25:54 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582354,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582354,"birth_time_epoch_utc":null},{"file":"/etc/security","unix_device":93,"inode":1685447,"flags":"drwxr-xr-x","links":2,"user":"root","group":"wheel","rdev":3377489,"size":512,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:31:23 2019","change_time":"May 27 05:40:25 2020","birth_time":"Oct 31 21:31:23 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582683,"modify_time_epoch_utc":null,"change_time_epoch":1590583225,"change_time_epoch_utc":null,"birth_time_epoch":1572582683,"birth_time_epoch_utc":null},{"file":"/etc/services","unix_device":93,"inode":1685436,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377432,"size":86637,"access_time":"May 28 23:02:58 2020","modify_time":"Oct 31 21:31:06 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:31:06 2019","block_size":32768,"blocks":176,"unix_flags":"0","access_time_epoch":1590732178,"access_time_epoch_utc":null,"modify_time_epoch":1572582666,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582666,"birth_time_epoch_utc":null},{"file":"/etc/shells","unix_device":93,"inode":1685427,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377471,"size":310,"access_time":"May 28 21:36:52 2020","modify_time":"May 28 21:36:52 2020","change_time":"May 28 21:36:52 2020","birth_time":"Oct 31 21:25:54 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590727012,"access_time_epoch_utc":null,"modify_time_epoch":1590727012,"modify_time_epoch_utc":null,"change_time_epoch":1590727012,"change_time_epoch_utc":null,"birth_time_epoch":1572582354,"birth_time_epoch_utc":null},{"file":"/etc/snmpd.config","unix_device":93,"inode":1685380,"flags":"-rw-------","links":1,"user":"root","group":"wheel","rdev":3377344,"size":9896,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:31:29 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:31:29 2019","block_size":32768,"blocks":24,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582689,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582689,"birth_time_epoch_utc":null},{"file":"/etc/spwd.db","unix_device":93,"inode":1710164,"flags":"-rw-------","links":1,"user":"root","group":"wheel","rdev":3377456,"size":40960,"access_time":"May 28 23:35:00 2020","modify_time":"May 28 21:36:50 2020","change_time":"May 28 21:36:50 2020","birth_time":"May 28 21:36:50 2020","block_size":32768,"blocks":80,"unix_flags":"0","access_time_epoch":1590734100,"access_time_epoch_utc":null,"modify_time_epoch":1590727010,"modify_time_epoch_utc":null,"change_time_epoch":1590727010,"change_time_epoch_utc":null,"birth_time_epoch":1590727010,"birth_time_epoch_utc":null},{"file":"/etc/ssh","unix_device":93,"inode":1685435,"flags":"drwxr-xr-x","links":2,"user":"root","group":"wheel","rdev":3377431,"size":512,"access_time":"May 27 05:40:02 2020","modify_time":"May 27 12:46:05 2020","change_time":"May 27 12:46:05 2020","birth_time":"Oct 31 21:28:52 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1590608765,"modify_time_epoch_utc":null,"change_time_epoch":1590608765,"change_time_epoch_utc":null,"birth_time_epoch":1572582532,"birth_time_epoch_utc":null},{"file":"/etc/ssl","unix_device":93,"inode":1685468,"flags":"drwxr-xr-x","links":2,"user":"root","group":"wheel","rdev":3377513,"size":512,"access_time":"May 27 05:40:02 2020","modify_time":"May 28 21:36:37 2020","change_time":"May 28 21:36:37 2020","birth_time":"Oct 31 21:28:49 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1590726997,"modify_time_epoch_utc":null,"change_time_epoch":1590726997,"change_time_epoch_utc":null,"birth_time_epoch":1572582529,"birth_time_epoch_utc":null},{"file":"/etc/sysctl.conf","unix_device":93,"inode":1685400,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3403619,"size":381,"access_time":"May 27 12:46:36 2020","modify_time":"May 27 05:44:32 2020","change_time":"May 27 05:44:32 2020","birth_time":"Oct 31 21:28:05 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590608796,"access_time_epoch_utc":null,"modify_time_epoch":1590583472,"modify_time_epoch_utc":null,"change_time_epoch":1590583472,"change_time_epoch_utc":null,"birth_time_epoch":1572582485,"birth_time_epoch_utc":null},{"file":"/etc/syslog.conf","unix_device":93,"inode":1685438,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377455,"size":1472,"access_time":"May 28 00:00:00 2020","modify_time":"Oct 31 21:31:07 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:31:07 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590649200,"access_time_epoch_utc":null,"modify_time_epoch":1572582667,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582667,"birth_time_epoch_utc":null},{"file":"/etc/syslog.d","unix_device":93,"inode":1685451,"flags":"drwxr-xr-x","links":2,"user":"root","group":"wheel","rdev":3377494,"size":512,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:31:07 2019","change_time":"May 27 05:40:25 2020","birth_time":"Oct 31 21:31:07 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582667,"modify_time_epoch_utc":null,"change_time_epoch":1590583225,"change_time_epoch_utc":null,"birth_time_epoch":1572582667,"birth_time_epoch_utc":null},{"file":"/etc/termcap","unix_device":93,"inode":1685467,"flags":"lrwxr-xr-x","links":1,"user":"root","group":"wheel","rdev":7018986666877744431,"size":23,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:32:27 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:32:27 2019","block_size":32768,"blocks":0,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582747,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582747,"birth_time_epoch_utc":null},{"file":"/etc/termcap.small","unix_device":93,"inode":1685377,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3370937,"size":12297,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:32:27 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:32:27 2019","block_size":32768,"blocks":32,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582747,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582747,"birth_time_epoch_utc":null},{"file":"/etc/ttys","unix_device":93,"inode":1685452,"flags":"-rw-r--r--","links":1,"user":"root","group":"wheel","rdev":3377495,"size":2153,"access_time":"May 28 23:00:16 2020","modify_time":"Oct 31 21:28:02 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:28:02 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590732016,"access_time_epoch_utc":null,"modify_time_epoch":1572582482,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582482,"birth_time_epoch_utc":null},{"file":"/etc/unbound","unix_device":93,"inode":1685440,"flags":"lrwxr-xr-x","links":1,"user":"root","group":"wheel","rdev":8444093589263167022,"size":14,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:32:27 2019","change_time":"May 27 05:40:03 2020","birth_time":"Oct 31 21:32:27 2019","block_size":32768,"blocks":0,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582747,"modify_time_epoch_utc":null,"change_time_epoch":1590583203,"change_time_epoch_utc":null,"birth_time_epoch":1572582747,"birth_time_epoch_utc":null},{"file":"/etc/zfs","unix_device":93,"inode":1685453,"flags":"drwxr-xr-x","links":2,"user":"root","group":"wheel","rdev":3370952,"size":512,"access_time":"May 27 05:40:02 2020","modify_time":"Oct 31 21:25:13 2019","change_time":"May 27 05:40:25 2020","birth_time":"Oct 31 21:25:13 2019","block_size":32768,"blocks":8,"unix_flags":"0","access_time_epoch":1590583202,"access_time_epoch_utc":null,"modify_time_epoch":1572582313,"modify_time_epoch_utc":null,"change_time_epoch":1590583225,"change_time_epoch_utc":null,"birth_time_epoch":1572582313,"birth_time_epoch_utc":null}] jc-1.17.3/tests/fixtures/freebsd12/stat.out000066400000000000000000000422601415226333200205000ustar00rootroot0000000000000093 1685475 drwxr-xr-x 2 root wheel 3370961 512 "May 27 05:40:02 2020" "Oct 31 21:25:13 2019" "May 27 05:40:25 2020" "Oct 31 21:25:13 2019" 32768 8 0 /etc/X11 93 1685419 lrwxr-xr-x 1 root wheel 7596553527777386861 12 "May 27 05:40:02 2020" "Oct 31 21:32:27 2019" "May 27 05:40:03 2020" "Oct 31 21:32:27 2019" 32768 0 0 /etc/aliases 93 1685412 -rw-r--r-- 1 root wheel 3377398 225 "May 27 05:40:02 2020" "Oct 31 21:31:22 2019" "May 27 05:40:03 2020" "Oct 31 21:31:22 2019" 32768 8 0 /etc/amd.map 93 1685417 -rw-r--r-- 1 root wheel 3377407 373 "May 27 05:40:02 2020" "Oct 31 21:31:24 2019" "May 27 05:40:03 2020" "Oct 31 21:31:24 2019" 32768 8 0 /etc/auto_master 93 1685474 drwxr-xr-x 2 root wheel 3370960 512 "May 27 05:40:02 2020" "Oct 31 21:31:24 2019" "May 27 05:40:25 2020" "Oct 31 21:31:24 2019" 32768 8 0 /etc/autofs 93 1685392 -rw-r--r-- 1 root wheel 3377374 473 "May 27 05:40:02 2020" "Oct 31 21:31:25 2019" "May 27 05:40:03 2020" "Oct 31 21:31:25 2019" 32768 8 0 /etc/blacklistd.conf 93 1685458 drwxr-xr-x 2 root wheel 3370957 512 "May 27 05:40:02 2020" "Oct 31 21:31:25 2019" "May 27 05:40:25 2020" "Oct 31 21:31:25 2019" 32768 8 0 /etc/bluetooth 93 1685408 drwxr-xr-x 2 root wheel 3377394 512 "May 27 05:40:02 2020" "Oct 31 21:30:12 2019" "May 27 05:40:25 2020" "Oct 31 21:30:12 2019" 32768 8 0 /etc/cron.d 93 1685463 -rw-r--r-- 1 root wheel 3377509 731 "May 28 08:31:19 2020" "Oct 31 21:30:54 2019" "May 27 05:40:03 2020" "Oct 31 21:30:54 2019" 32768 8 0 /etc/crontab 93 1685466 -rw-r--r-- 1 root wheel 3377512 116 "May 28 23:00:16 2020" "Oct 31 21:27:28 2019" "May 27 05:40:03 2020" "Oct 31 21:27:28 2019" 32768 8 0 /etc/csh.cshrc 93 1685422 -rw-r--r-- 1 root wheel 3377421 486 "May 27 12:48:15 2020" "Oct 31 21:27:28 2019" "May 27 05:40:03 2020" "Oct 31 21:27:28 2019" 32768 8 0 /etc/csh.login 93 1685385 -rw-r--r-- 1 root wheel 3377351 118 "May 27 05:40:02 2020" "Oct 31 21:27:28 2019" "May 27 05:40:03 2020" "Oct 31 21:27:28 2019" 32768 8 0 /etc/csh.logout 93 1685381 -rw-r--r-- 1 root wheel 3377347 569 "May 27 05:40:02 2020" "Oct 31 21:27:58 2019" "May 27 05:40:03 2020" "Oct 31 21:27:58 2019" 32768 8 0 /etc/ddb.conf 93 1685390 drwxr-xr-x 2 root wheel 3377372 512 "May 27 05:40:02 2020" "Oct 31 21:31:25 2019" "May 27 05:40:25 2020" "Oct 31 21:31:25 2019" 32768 8 0 /etc/defaults 93 1685425 drwxr-xr-x 2 root wheel 3370944 512 "May 27 05:40:02 2020" "Oct 31 21:31:28 2019" "May 27 05:40:25 2020" "Oct 31 21:31:28 2019" 32768 8 0 /etc/devd 93 1685418 -rw-r--r-- 1 root wheel 3377416 10504 "May 27 05:45:37 2020" "Oct 31 21:28:05 2019" "May 27 05:40:03 2020" "Oct 31 21:28:05 2019" 32768 24 0 /etc/devd.conf 93 1685406 -rw-r--r-- 1 root wheel 3377392 1998 "May 27 12:46:05 2020" "Oct 31 21:27:58 2019" "May 27 05:40:03 2020" "Oct 31 21:27:58 2019" 32768 8 0 /etc/devfs.conf 93 1685404 -rw-r--r-- 1 root wheel 3377390 279 "May 27 05:45:37 2020" "Oct 31 21:27:58 2019" "May 27 05:40:03 2020" "Oct 31 21:27:58 2019" 32768 8 0 /etc/dhclient.conf 93 1685430 -rw-r--r-- 1 root wheel 3370950 5909 "May 27 05:40:02 2020" "Oct 31 21:28:05 2019" "May 27 05:40:03 2020" "Oct 31 21:28:05 2019" 32768 16 0 /etc/disktab 93 1685472 drwxr-xr-x 2 root wheel 3377518 512 "May 27 05:40:02 2020" "Oct 31 21:27:17 2019" "May 27 05:40:25 2020" "Oct 31 21:27:17 2019" 32768 8 0 /etc/dma 93 1685433 -rw-rw-r-- 1 root operator 0 0 "May 27 05:40:02 2020" "Oct 31 21:27:59 2019" "May 27 05:40:03 2020" "Oct 31 21:27:59 2019" 32768 0 0 /etc/dumpdates 93 1685434 -rw-r--r-- 1 root wheel 3377430 156 "May 27 12:48:15 2020" "Oct 31 21:29:55 2019" "May 27 05:40:03 2020" "Oct 31 21:29:55 2019" 32768 8 0 /etc/fbtab 93 1685428 -rw-r--r-- 1 root wheel 3370948 2910 "May 27 05:40:02 2020" "Oct 31 21:31:34 2019" "May 27 05:40:03 2020" "Oct 31 21:31:34 2019" 32768 8 0 /etc/freebsd-update.conf 93 1685383 -rw-r--r-- 1 root wheel 3377350 102 "May 28 03:02:18 2020" "May 27 05:44:32 2020" "May 27 05:44:32 2020" "May 27 05:44:32 2020" 32768 8 0 /etc/fstab 93 1685398 -rw-r--r-- 1 root wheel 3377382 292 "May 27 05:40:02 2020" "Oct 31 21:27:20 2019" "May 27 05:40:03 2020" "Oct 31 21:27:20 2019" 32768 8 0 /etc/ftpusers 93 1685399 -rw-r--r-- 1 root wheel 3377384 6201 "May 27 12:48:12 2020" "Oct 31 21:27:17 2019" "May 27 05:40:03 2020" "Oct 31 21:27:17 2019" 32768 16 0 /etc/gettytab 93 1685439 -rw-r--r-- 1 root wheel 3415435 539 "May 28 23:36:49 2020" "May 28 21:36:50 2020" "May 28 21:36:50 2020" "May 28 21:36:50 2020" 32768 8 0 /etc/group 93 1685424 drwxr-xr-x 2 root wheel 3377423 512 "May 28 22:08:32 2020" "Oct 31 21:32:27 2019" "May 27 05:40:25 2020" "Oct 31 21:32:27 2019" 32768 8 0 /etc/gss 93 1710162 -rw-r--r-- 1 root wheel 3403621 46 "May 27 05:45:40 2020" "May 27 05:45:40 2020" "May 27 05:45:40 2020" "May 27 05:45:40 2020" 32768 8 0 /etc/host.conf 93 1710160 -rw-r--r-- 1 root wheel 3377383 37 "May 27 05:45:21 2020" "May 27 05:45:21 2020" "May 27 05:45:21 2020" "May 27 05:45:21 2020" 32768 8 0 /etc/hostid 93 1685465 -rw-r--r-- 1 root wheel 3377511 1096 "May 28 23:02:58 2020" "Oct 31 21:25:54 2019" "May 27 05:40:03 2020" "Oct 31 21:25:54 2019" 32768 8 0 /etc/hosts 93 1685421 -rw-r--r-- 1 root wheel 3377420 3467 "May 28 23:01:05 2020" "Oct 31 21:26:42 2019" "May 27 05:40:03 2020" "Oct 31 21:26:42 2019" 32768 8 0 /etc/hosts.allow 93 1685378 -rw-r--r-- 1 root wheel 3370941 124 "May 27 05:40:02 2020" "Oct 31 21:25:54 2019" "May 27 05:40:03 2020" "Oct 31 21:25:54 2019" 32768 8 0 /etc/hosts.equiv 93 1685454 -rw-r--r-- 1 root wheel 3370953 116 "May 27 05:40:02 2020" "Oct 31 21:31:37 2019" "May 27 05:40:03 2020" "Oct 31 21:31:37 2019" 32768 8 0 /etc/hosts.lpd 93 1685395 -rw-r--r-- 1 root wheel 3377377 5290 "May 27 05:40:02 2020" "Oct 31 21:31:35 2019" "May 27 05:40:03 2020" "Oct 31 21:31:35 2019" 32768 16 0 /etc/inetd.conf 93 1685455 -rw-r--r-- 1 root wheel 3370954 252 "May 27 05:40:02 2020" "Oct 31 21:26:05 2019" "May 27 05:40:03 2020" "Oct 31 21:26:05 2019" 32768 8 0 /etc/libalias.conf 93 1685782 -rw-r--r-- 1 root wheel 3377823 122 "May 28 23:36:49 2020" "Oct 31 21:33:42 2019" "May 27 05:40:37 2020" "Oct 31 21:33:42 2019" 32768 8 0 /etc/libmap.conf 93 1685384 -r--r--r-- 1 root wheel 3377429 2819 "May 28 23:36:49 2020" "May 27 05:42:43 2020" "May 27 05:42:43 2020" "May 27 05:42:43 2020" 32768 8 0 /etc/localtime 93 1685473 -rw-r--r-- 1 root wheel 3377519 969 "May 27 05:40:02 2020" "Oct 31 21:30:24 2019" "May 27 05:40:03 2020" "Oct 31 21:30:24 2019" 32768 8 0 /etc/locate.rc 93 1685389 -rw-r--r-- 1 root wheel 3377371 1853 "May 28 23:01:07 2020" "Oct 31 21:32:27 2019" "May 27 05:40:03 2020" "Oct 31 21:32:27 2019" 32768 8 0 /etc/login.access 93 1685445 -rw-r--r-- 1 root wheel 3377486 6800 "May 27 05:40:02 2020" "Oct 31 21:29:55 2019" "May 27 05:40:03 2020" "Oct 31 21:29:55 2019" 32768 16 0 /etc/login.conf 93 1685441 -rw-r--r-- 1 root wheel 3377466 16384 "May 28 23:35:00 2020" "Oct 31 21:29:55 2019" "May 27 05:40:03 2020" "Oct 31 21:29:55 2019" 32768 32 0 /etc/login.conf.db 93 1685437 -rw-r--r-- 1 root wheel 3377454 579 "May 28 22:11:10 2020" "Oct 31 21:25:54 2019" "May 27 05:40:03 2020" "Oct 31 21:25:54 2019" 32768 8 0 /etc/mac.conf 93 1685429 drwxr-xr-x 3 root wheel 3370949 512 "May 27 05:40:02 2020" "May 27 12:46:06 2020" "May 27 12:46:06 2020" "Oct 31 21:32:27 2019" 32768 8 0 /etc/mail 93 1685460 -rw-r--r-- 1 root wheel 3370959 106 "May 28 03:01:45 2020" "Oct 31 21:30:25 2019" "May 27 05:40:03 2020" "Oct 31 21:30:25 2019" 32768 8 0 /etc/mail.rc 93 1685443 -rw------- 1 root wheel 3370947 2199 "May 28 21:36:50 2020" "May 28 21:36:50 2020" "May 28 21:36:51 2020" "May 28 21:36:50 2020" 32768 8 0 /etc/master.passwd 93 1685394 -rw-r--r-- 1 root wheel 3404046 903 "May 28 21:29:24 2020" "May 27 12:46:05 2020" "May 27 12:46:05 2020" "Oct 31 21:29:55 2019" 32768 8 0 /etc/motd 93 1685410 drwxr-xr-x 2 root wheel 3377396 512 "May 27 05:40:02 2020" "Oct 31 21:32:27 2019" "May 27 05:40:25 2020" "Oct 31 21:32:27 2019" 32768 8 0 /etc/mtree 93 1685402 -rw-r--r-- 1 root wheel 3377387 798 "May 27 05:40:02 2020" "Oct 31 21:25:54 2019" "May 27 05:40:03 2020" "Oct 31 21:25:54 2019" 32768 8 0 /etc/netconfig 93 1685456 -rwxr-xr-x 1 root wheel 3370955 2211 "May 27 05:40:02 2020" "Oct 31 21:27:18 2019" "May 27 05:40:03 2020" "Oct 31 21:27:18 2019" 32768 8 0 /etc/netstart 93 1685450 -rw-r--r-- 1 root wheel 3377496 37552 "May 27 12:46:36 2020" "Oct 31 21:27:18 2019" "May 27 05:40:03 2020" "Oct 31 21:27:18 2019" 32768 80 0 /etc/network.subr 93 1685416 -rw-r--r-- 1 root wheel 3377406 378 "May 28 22:50:30 2020" "Oct 31 21:25:54 2019" "May 27 05:40:03 2020" "Oct 31 21:25:54 2019" 32768 8 0 /etc/networks 93 1685449 -rw-r--r-- 1 root wheel 3377491 1726 "May 28 23:00:00 2020" "Oct 31 21:31:01 2019" "May 27 05:40:03 2020" "Oct 31 21:31:01 2019" 32768 8 0 /etc/newsyslog.conf 93 1685409 drwxr-xr-x 2 root wheel 3377395 512 "May 27 05:40:02 2020" "Oct 31 21:31:01 2019" "May 27 05:40:25 2020" "Oct 31 21:31:01 2019" 32768 8 0 /etc/newsyslog.conf.d 93 1685401 -rw-r--r-- 1 root wheel 3377386 301 "May 27 05:40:02 2020" "Oct 31 21:31:37 2019" "May 27 05:40:03 2020" "Oct 31 21:31:37 2019" 32768 8 0 /etc/nscd.conf 93 1685464 -rw------- 1 root wheel 3377510 1702 "May 27 05:40:02 2020" "Oct 31 21:26:35 2019" "May 27 05:40:03 2020" "Oct 31 21:26:35 2019" 32768 8 0 /etc/nsmb.conf 93 1685391 -rw-r--r-- 1 root wheel 3377373 345 "May 28 23:36:49 2020" "Oct 31 21:25:54 2019" "May 27 05:40:03 2020" "Oct 31 21:25:54 2019" 32768 8 0 /etc/nsswitch.conf 93 1685407 drwx------ 2 root wheel 3377393 512 "May 27 05:40:02 2020" "Oct 31 21:31:42 2019" "May 27 05:40:25 2020" "Oct 31 21:31:42 2019" 32768 8 0 /etc/ntp 93 1685442 -rw-r--r-- 1 root wheel 3377470 3997 "May 28 23:00:16 2020" "Oct 31 21:31:42 2019" "May 27 05:40:03 2020" "Oct 31 21:31:42 2019" 32768 8 0 /etc/ntp.conf 93 1685420 -rw------- 1 root wheel 3377419 446 "May 27 05:40:02 2020" "Oct 31 21:26:26 2019" "May 27 05:40:03 2020" "Oct 31 21:26:26 2019" 32768 8 0 /etc/opieaccess 93 1710173 -rw------- 1 root wheel 0 0 "May 28 23:01:05 2020" "May 27 12:46:39 2020" "May 27 12:46:39 2020" "May 27 12:46:39 2020" 32768 0 0 /etc/opiekeys 93 1685470 drwxr-xr-x 2 root wheel 3377516 512 "May 27 05:40:37 2020" "May 27 05:40:37 2020" "May 27 05:40:37 2020" "Oct 31 21:26:29 2019" 32768 8 0 /etc/pam.d 93 1711921 -rw-r--r-- 1 root wheel 3377348 1838 "May 28 23:10:18 2020" "May 28 21:36:50 2020" "May 28 21:36:50 2020" "May 28 21:36:50 2020" 32768 8 0 /etc/passwd 93 1685387 -rwxr-xr-x 1 root wheel 3377369 2816 "May 27 05:45:37 2020" "Oct 31 21:27:18 2019" "May 27 05:40:03 2020" "Oct 31 21:27:18 2019" 32768 8 0 /etc/pccard_ether 93 1685459 drwxr-xr-x 6 root wheel 3370958 512 "May 27 05:40:02 2020" "Oct 31 21:25:13 2019" "May 27 05:40:25 2020" "Oct 31 21:25:13 2019" 32768 8 0 /etc/periodic 93 1685382 -rw-r--r-- 1 root wheel 3377352 29348 "May 27 05:40:02 2020" "Oct 31 21:28:10 2019" "May 27 05:40:03 2020" "Oct 31 21:28:10 2019" 32768 64 0 /etc/pf.os 93 1685462 -rw-r--r-- 1 root wheel 3377508 252 "May 27 05:40:02 2020" "Oct 31 21:30:08 2019" "May 27 05:40:03 2020" "Oct 31 21:30:08 2019" 32768 8 0 /etc/phones 93 1685393 drwxr-xr-x 2 root wheel 3377375 512 "May 27 05:40:02 2020" "Oct 31 21:31:45 2019" "May 27 05:40:25 2020" "Oct 31 21:31:45 2019" 32768 8 0 /etc/pkg 93 1685457 -rw-r--r-- 1 root wheel 3370956 1512 "May 27 13:02:42 2020" "Oct 31 21:31:46 2019" "May 27 05:40:03 2020" "Oct 31 21:31:46 2019" 32768 8 0 /etc/portsnap.conf 93 1685448 drwxr-xr-x 2 root wheel 3377490 512 "May 27 05:40:02 2020" "Oct 31 21:31:47 2019" "May 27 05:40:25 2020" "Oct 31 21:31:47 2019" 32768 8 0 /etc/ppp 93 1685423 -rw-r--r-- 1 root wheel 3377422 2072 "May 27 05:40:02 2020" "Oct 31 21:31:37 2019" "May 27 05:40:03 2020" "Oct 31 21:31:37 2019" 32768 8 0 /etc/printcap 93 1685388 -rw-r--r-- 1 root wheel 3377370 623 "May 28 21:29:24 2020" "Oct 31 21:27:26 2019" "May 27 05:40:03 2020" "Oct 31 21:27:26 2019" 32768 8 0 /etc/profile 93 1685403 -rw-r--r-- 1 root wheel 3377388 6463 "May 27 05:40:02 2020" "Oct 31 21:25:54 2019" "May 27 05:40:03 2020" "Oct 31 21:25:54 2019" 32768 16 0 /etc/protocols 93 1710163 -rw-r--r-- 1 root wheel 3377360 40960 "May 28 23:36:49 2020" "May 28 21:36:50 2020" "May 28 21:36:50 2020" "May 28 21:36:50 2020" 32768 80 0 /etc/pwd.db 93 1685469 -rw-r--r-- 1 root wheel 3377514 5043 "May 27 05:45:38 2020" "Oct 31 21:27:18 2019" "May 27 05:40:03 2020" "Oct 31 21:27:18 2019" 32768 16 0 /etc/rc 93 1685396 -rw-r--r-- 1 root wheel 3377379 4612 "May 27 05:40:02 2020" "Oct 31 21:32:27 2019" "May 27 05:40:03 2020" "Oct 31 21:32:27 2019" 32768 16 0 /etc/rc.bsdextended 93 1710165 -rw-r--r-- 1 root wheel 3403953 213 "May 28 23:33:00 2020" "May 27 05:44:32 2020" "May 27 05:44:32 2020" "May 27 05:44:32 2020" 32768 8 0 /etc/rc.conf 93 1685411 drwxr-xr-x 2 root wheel 3377397 512 "May 27 05:40:02 2020" "Oct 31 21:25:13 2019" "May 27 05:40:25 2020" "Oct 31 21:25:13 2019" 32768 8 0 /etc/rc.conf.d 93 1685405 drwxr-xr-x 2 root wheel 3377391 3072 "May 27 05:40:02 2020" "Oct 31 21:27:18 2019" "May 27 05:40:25 2020" "Oct 31 21:27:18 2019" 32768 8 0 /etc/rc.d 93 1685431 -rw-r--r-- 1 root wheel 3377424 18803 "May 27 05:40:02 2020" "Oct 31 21:32:27 2019" "May 27 05:40:03 2020" "Oct 31 21:32:27 2019" 32768 40 0 /etc/rc.firewall 93 1685461 -rw-r--r-- 1 root wheel 3377504 13660 "May 27 05:40:02 2020" "Oct 31 21:27:18 2019" "May 27 05:40:03 2020" "Oct 31 21:27:18 2019" 32768 32 0 /etc/rc.initdiskless 93 1685386 -rwxr-xr-x 1 root wheel 3377368 2522 "May 27 05:40:02 2020" "Oct 31 21:27:18 2019" "May 27 05:40:03 2020" "Oct 31 21:27:18 2019" 32768 8 0 /etc/rc.resume 93 1685426 -rw-r--r-- 1 root wheel 3370945 5791 "May 27 05:40:02 2020" "Oct 31 21:32:27 2019" "May 27 05:40:03 2020" "Oct 31 21:32:27 2019" 32768 16 0 /etc/rc.sendmail 93 1685414 -rw-r--r-- 1 root wheel 3377400 3440 "May 27 05:40:02 2020" "Oct 31 21:27:18 2019" "May 27 05:40:03 2020" "Oct 31 21:27:18 2019" 32768 8 0 /etc/rc.shutdown 93 1685415 -rw-r--r-- 1 root wheel 3377408 50816 "May 28 23:00:16 2020" "Oct 31 21:27:18 2019" "May 27 05:40:03 2020" "Oct 31 21:27:18 2019" 32768 104 0 /etc/rc.subr 93 1685446 -rwxr-xr-x 1 root wheel 3377488 2334 "May 27 05:40:02 2020" "Oct 31 21:27:18 2019" "May 27 05:40:03 2020" "Oct 31 21:27:18 2019" 32768 8 0 /etc/rc.suspend 93 1685444 -rw-r--r-- 1 root wheel 3377472 53728 "May 27 05:40:02 2020" "Oct 31 21:26:26 2019" "May 27 05:40:03 2020" "Oct 31 21:26:26 2019" 32768 112 0 /etc/regdomain.xml 93 1685413 -rw-r--r-- 1 root wheel 3377399 2708 "May 27 05:40:02 2020" "Oct 31 21:30:08 2019" "May 27 05:40:03 2020" "Oct 31 21:30:08 2019" 32768 8 0 /etc/remote 93 1710166 -rw-r--r-- 1 root wheel 3401639 70 "May 28 23:01:05 2020" "May 27 13:01:01 2020" "May 27 13:01:01 2020" "May 27 05:44:32 2020" 32768 8 0 /etc/resolv.conf 93 1710161 -rw-r--r-- 1 root wheel 3401638 44 "May 27 13:00:57 2020" "May 27 13:01:01 2020" "May 27 13:01:01 2020" "May 27 05:45:40 2020" 32768 8 0 /etc/resolv.conf.bak 93 1685379 lrwxr-xr-x 1 root wheel 8299978478479945262 15 "May 27 05:40:02 2020" "Oct 31 21:32:27 2019" "May 27 05:40:03 2020" "Oct 31 21:32:27 2019" 32768 0 0 /etc/rmt 93 1685471 -rw-r--r-- 1 root wheel 3377517 1683 "May 27 05:40:02 2020" "Oct 31 21:25:54 2019" "May 27 05:40:03 2020" "Oct 31 21:25:54 2019" 32768 8 0 /etc/rpc 93 1685447 drwxr-xr-x 2 root wheel 3377489 512 "May 27 05:40:02 2020" "Oct 31 21:31:23 2019" "May 27 05:40:25 2020" "Oct 31 21:31:23 2019" 32768 8 0 /etc/security 93 1685436 -rw-r--r-- 1 root wheel 3377432 86637 "May 28 23:02:58 2020" "Oct 31 21:31:06 2019" "May 27 05:40:03 2020" "Oct 31 21:31:06 2019" 32768 176 0 /etc/services 93 1685427 -rw-r--r-- 1 root wheel 3377471 310 "May 28 21:36:52 2020" "May 28 21:36:52 2020" "May 28 21:36:52 2020" "Oct 31 21:25:54 2019" 32768 8 0 /etc/shells 93 1685380 -rw------- 1 root wheel 3377344 9896 "May 27 05:40:02 2020" "Oct 31 21:31:29 2019" "May 27 05:40:03 2020" "Oct 31 21:31:29 2019" 32768 24 0 /etc/snmpd.config 93 1710164 -rw------- 1 root wheel 3377456 40960 "May 28 23:35:00 2020" "May 28 21:36:50 2020" "May 28 21:36:50 2020" "May 28 21:36:50 2020" 32768 80 0 /etc/spwd.db 93 1685435 drwxr-xr-x 2 root wheel 3377431 512 "May 27 05:40:02 2020" "May 27 12:46:05 2020" "May 27 12:46:05 2020" "Oct 31 21:28:52 2019" 32768 8 0 /etc/ssh 93 1685468 drwxr-xr-x 2 root wheel 3377513 512 "May 27 05:40:02 2020" "May 28 21:36:37 2020" "May 28 21:36:37 2020" "Oct 31 21:28:49 2019" 32768 8 0 /etc/ssl 93 1685400 -rw-r--r-- 1 root wheel 3403619 381 "May 27 12:46:36 2020" "May 27 05:44:32 2020" "May 27 05:44:32 2020" "Oct 31 21:28:05 2019" 32768 8 0 /etc/sysctl.conf 93 1685438 -rw-r--r-- 1 root wheel 3377455 1472 "May 28 00:00:00 2020" "Oct 31 21:31:07 2019" "May 27 05:40:03 2020" "Oct 31 21:31:07 2019" 32768 8 0 /etc/syslog.conf 93 1685451 drwxr-xr-x 2 root wheel 3377494 512 "May 27 05:40:02 2020" "Oct 31 21:31:07 2019" "May 27 05:40:25 2020" "Oct 31 21:31:07 2019" 32768 8 0 /etc/syslog.d 93 1685467 lrwxr-xr-x 1 root wheel 7018986666877744431 23 "May 27 05:40:02 2020" "Oct 31 21:32:27 2019" "May 27 05:40:03 2020" "Oct 31 21:32:27 2019" 32768 0 0 /etc/termcap 93 1685377 -rw-r--r-- 1 root wheel 3370937 12297 "May 27 05:40:02 2020" "Oct 31 21:32:27 2019" "May 27 05:40:03 2020" "Oct 31 21:32:27 2019" 32768 32 0 /etc/termcap.small 93 1685452 -rw-r--r-- 1 root wheel 3377495 2153 "May 28 23:00:16 2020" "Oct 31 21:28:02 2019" "May 27 05:40:03 2020" "Oct 31 21:28:02 2019" 32768 8 0 /etc/ttys 93 1685440 lrwxr-xr-x 1 root wheel 8444093589263167022 14 "May 27 05:40:02 2020" "Oct 31 21:32:27 2019" "May 27 05:40:03 2020" "Oct 31 21:32:27 2019" 32768 0 0 /etc/unbound 93 1685453 drwxr-xr-x 2 root wheel 3370952 512 "May 27 05:40:02 2020" "Oct 31 21:25:13 2019" "May 27 05:40:25 2020" "Oct 31 21:25:13 2019" 32768 8 0 /etc/zfs jc-1.17.3/tests/fixtures/freebsd12/sysctl-a.json000066400000000000000000003573471415226333200214450ustar00rootroot00000000000000{"kern.ostype": "FreeBSD", "kern.osrelease": "12.1-RELEASE", "kern.osrevision": 199506, "kern.version": "FreeBSD 12.1-RELEASE r354233 GENERIC\n", "kern.maxvnodes": 112422, "kern.maxproc": 7396, "kern.maxfiles": 64303, "kern.argmax": 262144, "kern.securelevel": -1, "kern.hostname": "freebsd", "kern.hostid": 1940785866, "kern.clockrate": "{ hz = 100, tick = 10000, profhz = 8128, stathz = 127 }", "kern.posix1version": 200112, "kern.ngroups": 1023, "kern.job_control": 1, "kern.saved_ids": 0, "kern.boottime": "{ sec = 1594339054, usec = 740932 } Thu Jul 9 16:57:34 2020", "kern.domainname": "", "kern.osreldate": 1201000, "kern.bootfile": "/boot/kernel/kernel", "kern.maxfilesperproc": 57870, "kern.maxprocperuid": 6656, "kern.ipc.maxsockbuf": 2097152, "kern.ipc.sockbuf_waste_factor": 8, "kern.ipc.max_linkhdr": 16, "kern.ipc.max_protohdr": 60, "kern.ipc.max_hdr": 76, "kern.ipc.max_datalen": 92, "kern.ipc.maxsockets": 64304, "kern.ipc.numopensockets": 22, "kern.ipc.soacceptqueue": 128, "kern.ipc.shm_allow_removed": 1, "kern.ipc.shm_use_phys": 0, "kern.ipc.shmall": 131072, "kern.ipc.shmseg": 128, "kern.ipc.shmmni": 192, "kern.ipc.shmmin": 1, "kern.ipc.shmmax": 536870912, "kern.ipc.semaem": 16384, "kern.ipc.semvmx": 32767, "kern.ipc.semusz": 632, "kern.ipc.semume": 50, "kern.ipc.semopm": 100, "kern.ipc.semmsl": 340, "kern.ipc.semmnu": 150, "kern.ipc.semmns": 340, "kern.ipc.semmni": 50, "kern.ipc.msgseg": 2048, "kern.ipc.msgssz": 8, "kern.ipc.msgtql": 40, "kern.ipc.msgmnb": 2048, "kern.ipc.msgmni": 40, "kern.ipc.msgmax": 16384, "kern.ipc.aio.lifetime": 3000, "kern.ipc.aio.target_procs": 4, "kern.ipc.aio.num_procs": 4, "kern.ipc.aio.max_procs": 32, "kern.ipc.aio.empty_retries": 0, "kern.ipc.aio.empty_results": 0, "kern.ipc.piperesizeallowed": 1, "kern.ipc.piperesizefail": 0, "kern.ipc.pipeallocfail": 0, "kern.ipc.pipefragretry": 0, "kern.ipc.pipekva": 53248, "kern.ipc.maxpipekva": 32919552, "kern.ipc.umtx_max_robust": 1000, "kern.ipc.umtx_vnode_persistent": 0, "kern.ipc.nmbufs": 801240, "kern.ipc.nmbjumbo16": 10432, "kern.ipc.nmbjumbo9": 18547, "kern.ipc.nmbjumbop": 62596, "kern.ipc.nmbclusters": 125192, "kern.ipc.maxmbufmem": 1025576960, "kern.dummy": 0, "kern.ps_strings": 140737488351200, "kern.usrstack": 140737488351232, "kern.logsigexit": 1, "kern.iov_max": 1024, "kern.hostuuid": "a2d24d56-1cb8-623d-9c1f-7320d01a4e3b", "kern.maxphys": 131072, "kern.cryptodevallowsoft": 0, "kern.userasymcrypto": 1, "kern.crypto_workers_num": 1, "kern.minvnodes": 28105, "kern.metadelay": 28, "kern.dirdelay": 29, "kern.filedelay": 30, "kern.tty_nout": 4511126, "kern.tty_nin": 74336, "kern.tty_inq_flush_secure": 1, "kern.tty_drainwait": 300, "kern.trap_enotcap": 0, "kern.smp.forward_signal_enabled": 1, "kern.smp.topology": 0, "kern.smp.cpus": 1, "kern.smp.disabled": 0, "kern.smp.active": 0, "kern.smp.maxcpus": 256, "kern.smp.maxid": 0, "kern.msgbuf_clear": 0, "kern.msgbuf": "", "kern.always_console_output": 0, "kern.log_console_add_linefeed": 0, "kern.log_console_output": 1, "kern.boot_tag": "---<>---", "kern.vm_guest": "vmware", "kern.sgrowsiz": 131072, "kern.maxssiz": 536870912, "kern.dflssiz": 8388608, "kern.maxdsiz": 34359738368, "kern.dfldsiz": 34359738368, "kern.maxtsiz": 34359738368, "kern.bio_transient_maxcnt": 1024, "kern.maxbcache": 0, "kern.maxswzone": 0, "kern.msgbufsize": 98304, "kern.nswbuf": 256, "kern.nbuf": 13525, "kern.hz": 100, "kern.msgbuf_show_timestamp": 0, "kern.log_wakeups_per_second": 5, "kern.kobj_methodcount": 341, "kern.epoch.stats.epoch_call_tasks": 111, "kern.epoch.stats.epoch_calls": 449, "kern.epoch.stats.switches": 0, "kern.epoch.stats.ncontended": 0, "kern.epoch.stats.migrations": 0, "kern.epoch.stats.nblocked": 0, "kern.devstat.version": 6, "kern.devstat.generation": 82, "kern.devstat.numdevs": 4, "kern.ccpu": 0, "kern.sched.topology_spec": "\n \n 0\n \n\n", "kern.sched.always_steal": 0, "kern.sched.trysteal_limit": 2, "kern.sched.steal_thresh": 2, "kern.sched.steal_idle": 1, "kern.sched.balance_interval": 127, "kern.sched.balance": 1, "kern.sched.affinity": 1, "kern.sched.idlespinthresh": 157, "kern.sched.idlespins": 10000, "kern.sched.static_boost": 152, "kern.sched.preempt_thresh": 80, "kern.sched.interact": 30, "kern.sched.slice": 12, "kern.sched.quantum": 94488, "kern.sched.name": "ULE", "kern.sched.preemption": 1, "kern.sched.cpusetsize": 32, "kern.callout_stat": 0, "kern.pin_pcpu_swi": 0, "kern.pin_default_swi": 0, "kern.ncallout": 18508, "kern.threads.max_threads_hits": 0, "kern.threads.max_threads_per_proc": 1500, "kern.timecounter.tsc_shift": 1, "kern.timecounter.smp_tsc_adjust": 0, "kern.timecounter.smp_tsc": 0, "kern.timecounter.invariant_tsc": 1, "kern.timecounter.fast_gettime": 1, "kern.timecounter.tick": 1, "kern.timecounter.choice": "ACPI-fast(900) i8254(0) HPET(950) TSC-low(1000) dummy(-1000000)", "kern.timecounter.hardware": "TSC-low", "kern.timecounter.alloweddeviation": 5, "kern.timecounter.timehands_count": 2, "kern.timecounter.stepwarnings": 0, "kern.timecounter.tc.ACPI-fast.quality": 900, "kern.timecounter.tc.ACPI-fast.frequency": 3579545, "kern.timecounter.tc.ACPI-fast.counter": 7761236, "kern.timecounter.tc.ACPI-fast.mask": 16777215, "kern.timecounter.tc.i8254.quality": 0, "kern.timecounter.tc.i8254.frequency": 1193182, "kern.timecounter.tc.i8254.counter": 57213, "kern.timecounter.tc.i8254.mask": 65535, "kern.timecounter.tc.HPET.quality": 950, "kern.timecounter.tc.HPET.frequency": 14318180, "kern.timecounter.tc.HPET.counter": 26721736, "kern.timecounter.tc.HPET.mask": 4294967295, "kern.timecounter.tc.TSC-low.quality": 1000, "kern.timecounter.tc.TSC-low.frequency": 1199985500, "kern.timecounter.tc.TSC-low.counter": 1010228270, "kern.timecounter.tc.TSC-low.mask": 4294967295, "kern.fscale": 2048, "kern.corefile": "%N.core", "kern.compress_user_cores_level": 6, "kern.compress_user_cores": 0, "kern.coredump_devctl": 0, "kern.nodump_coredump": 0, "kern.coredump": 1, "kern.capmode_coredump": 0, "kern.sugid_coredump": 0, "kern.lognosys": 0, "kern.sigqueue.alloc_fail": 0, "kern.sigqueue.overflow": 0, "kern.sigqueue.preallocate": 1024, "kern.sigqueue.max_pending_per_proc": 128, "kern.forcesigexit": 1, "kern.kerneldump_gzlevel": 6, "kern.suspend_blocked": 0, "kern.shutdown.dumpdevname": "da0s1b", "kern.shutdown.kproc_shutdown_wait": 60, "kern.shutdown.poweroff_delay": 5000, "kern.shutdown.show_busybufs": 0, "kern.powercycle_on_panic": 0, "kern.poweroff_on_panic": 0, "kern.sync_on_panic": 0, "kern.panic_reboot_wait_time": 15, "kern.racct.rctl.throttle_pct2": 4294967295, "kern.racct.rctl.throttle_pct": 4294967295, "kern.racct.rctl.throttle_max": 4294967295, "kern.racct.rctl.throttle_min": 4294967295, "kern.racct.rctl.devctl_rate_limit": 10, "kern.racct.rctl.log_rate_limit": 10, "kern.racct.rctl.maxbufsize": 16777216, "kern.racct.pcpu_threshold": 1, "kern.racct.enable": 0, "kern.proc_vmmap_skip_resident_count": 0, "kern.kstack_pages": 4, "kern.hwpmc.softevents": 16, "kern.fallback_elf_brand": -1, "kern.pid_max": 99999, "kern.features.ufs_quota64": 1, "kern.features.ufs_quota": 1, "kern.features.ufs_gjournal": 1, "kern.features.ufs_acl": 1, "kern.features.softupdates": 1, "kern.features.ffs_snapshot": 1, "kern.features.security_mac": 1, "kern.features.audit": 1, "kern.features.ipsec_natt": 1, "kern.features.ipsec": 1, "kern.features.inet6": 1, "kern.features.netdump": 1, "kern.features.sctp": 1, "kern.features.inet": 1, "kern.features.vimage": 1, "kern.features.aio": 1, "kern.features.posix_shm": 1, "kern.features.sysv_shm": 1, "kern.features.sysv_sem": 1, "kern.features.sysv_msg": 1, "kern.features.process_descriptors": 1, "kern.features.security_capabilities": 1, "kern.features.security_capability_mode": 1, "kern.features.stack": 1, "kern.features.ekcd": 1, "kern.features.rctl": 1, "kern.features.racct": 1, "kern.features.hwpmc_hooks": 1, "kern.features.compat_freebsd7": 1, "kern.features.compat_freebsd6": 1, "kern.features.compat_freebsd5": 1, "kern.features.compat_freebsd4": 1, "kern.features.ktrace": 1, "kern.features.kdtrace_hooks": 1, "kern.features.kposix_priority_scheduling": 1, "kern.features.geom_part_mbr": 1, "kern.features.geom_part_gpt": 1, "kern.features.geom_part_ebr_compat": 1, "kern.features.geom_part_ebr": 1, "kern.features.geom_part_bsd": 1, "kern.features.geom_label": 1, "kern.features.nfsd": 1, "kern.features.nfscl": 1, "kern.features.evdev_support": 1, "kern.features.evdev": 1, "kern.features.ata_cam": 1, "kern.features.compat_freebsd_32bit": 1, "kern.features.scbus": 1, "kern.conftxt": "options\tCONFIG_AUTOGENERATED\nident\tGENERIC\nmachine\tamd64\ncpu\tHAMMER\nmakeoptions\tWITH_CTF=1\nmakeoptions\tDEBUG=-g\noptions\tEVDEV_SUPPORT\noptions\tXENHVM\noptions\tUSB_DEBUG\noptions\tATH_ENABLE_11N\noptions\tAH_AR5416_INTERRUPT_MITIGATION\noptions\tAH_SUPPORT_AR5416\noptions\tIEEE80211_SUPPORT_MESH\noptions\tIEEE80211_AMPDU_AGE\noptions\tIEEE80211_DEBUG\noptions\tSC_PIXEL_MODE\noptions\tVESA\noptions\tPCI_IOV\noptions\tPCI_HP\noptions\tACPI_DMAR\noptions\tEARLY_AP_STARTUP\noptions\tSMP\noptions\tNETDUMP\noptions\tZSTDIO\noptions\tGZIO\noptions\tEKCD\noptions\tKDB_TRACE\noptions\tKDB\noptions\tRCTL\noptions\tRACCT_DEFAULT_TO_DISABLED\noptions\tRACCT\noptions\tINCLUDE_CONFIG_FILE\noptions\tDDB_CTF\noptions\tKDTRACE_HOOKS\noptions\tKDTRACE_FRAME\noptions\tMAC\noptions\tCAPABILITIES\noptions\tCAPABILITY_MODE\noptions\tAUDIT\noptions\tHWPMC_HOOKS\noptions\tKBD_INSTALL_CDEV\noptions\tPRINTF_BUFR_SIZE=128\noptions\t_KPOSIX_PRIORITY_SCHEDULING\noptions\tSYSVSEM\noptions\tSYSVMSG\noptions\tSYSVSHM\noptions\tSTACK\noptions\tKTRACE\noptions\tSCSI_DELAY=5000\noptions\tCOMPAT_FREEBSD11\noptions\tCOMPAT_FREEBSD10\noptions\tCOMPAT_FREEBSD9\noptions\tCOMPAT_FREEBSD7\noptions\tCOMPAT_FREEBSD6\noptions\tCOMPAT_FREEBSD5\noptions\tCOMPAT_FREEBSD4\noptions\tCOMPAT_FREEBSD32\noptions\tEFIRT\noptions\tGEOM_LABEL\noptions\tGEOM_RAID\noptions\tPSEUDOFS\noptions\tPROCFS\noptions\tCD9660\noptions\tMSDOSFS\noptions\tNFS_ROOT\noptions\tNFSLOCKD\noptions\tNFSD\noptions\tNFSCL\noptions\tMD_ROOT\noptions\tQUOTA\noptions\tUFS_GJOURNAL\noptions\tUFS_DIRHASH\noptions\tUFS_ACL\noptions\tSOFTUPDATES\noptions\tFFS\noptions\tSCTP\noptions\tTCP_RFC7413\noptions\tTCP_HHOOK\noptions\tTCP_BLACKBOX\noptions\tTCP_OFFLOAD\noptions\tIPSEC_SUPPORT\noptions\tIPSEC\noptions\tINET6\noptions\tINET\noptions\tVIMAGE\noptions\tPREEMPTION\noptions\tNUMA\noptions\tSCHED_ULE\noptions\tNEW_PCIB\noptions\tGEOM_PART_GPT\noptions\tGEOM_PART_MBR\noptions\tGEOM_PART_EBR_COMPAT\noptions\tGEOM_PART_EBR\noptions\tGEOM_PART_BSD\ndevice\tisa\ndevice\tmem\ndevice\tio\ndevice\tuart_ns8250\ndevice\tcpufreq\ndevice\tacpi\ndevice\tpci\ndevice\tfdc\ndevice\tahci\ndevice\tata\ndevice\tmvs\ndevice\tsiis\ndevice\tahc\ndevice\tahd\ndevice\tesp\ndevice\thptiop\ndevice\tisp\ndevice\tmpt\ndevice\tmps\ndevice\tmpr\ndevice\tsym\ndevice\ttrm\ndevice\tisci\ndevice\tocs_fc\ndevice\tscbus\ndevice\tch\ndevice\tda\ndevice\tsa\ndevice\tcd\ndevice\tpass\ndevice\tses\ndevice\tamr\ndevice\tarcmsr\ndevice\tciss\ndevice\tdpt\ndevice\thptmv\ndevice\thptnr\ndevice\thptrr\ndevice\thpt27xx\ndevice\tiir\ndevice\tips\ndevice\tmly\ndevice\ttwa\ndevice\tsmartpqi\ndevice\ttws\ndevice\taac\ndevice\taacp\ndevice\taacraid\ndevice\tida\ndevice\tmfi\ndevice\tmlx\ndevice\tmrsas\ndevice\tpmspcv\ndevice\ttwe\ndevice\tnvme\ndevice\tnvd\ndevice\tatkbdc\ndevice\tatkbd\ndevice\tpsm\ndevice\tkbdmux\ndevice\tvga\ndevice\tsplash\ndevice\tsc\ndevice\tvt\ndevice\tvt_vga\ndevice\tvt_efifb\ndevice\tagp\ndevice\tcbb\ndevice\tpccard\ndevice\tcardbus\ndevice\tuart\ndevice\tppc\ndevice\tppbus\ndevice\tlpt\ndevice\tppi\ndevice\tpuc\ndevice\tiflib\ndevice\tem\ndevice\tix\ndevice\tixv\ndevice\tixl\ndevice\tiavf\ndevice\tvmx\ndevice\tbxe\ndevice\tde\ndevice\tle\ndevice\tti\ndevice\ttxp\ndevice\tvx\ndevice\tmiibus\ndevice\tae\ndevice\tage\ndevice\talc\ndevice\tale\ndevice\tbce\ndevice\tbfe\ndevice\tbge\ndevice\tcas\ndevice\tdc\ndevice\tet\ndevice\tfxp\ndevice\tgem\ndevice\thme\ndevice\tjme\ndevice\tlge\ndevice\tmsk\ndevice\tnfe\ndevice\tnge\ndevice\tpcn\ndevice\tre\ndevice\trl\ndevice\tsf\ndevice\tsge\ndevice\tsis\ndevice\tsk\ndevice\tste\ndevice\tstge\ndevice\ttl\ndevice\ttx\ndevice\tvge\ndevice\tvr\ndevice\twb\ndevice\txl\ndevice\twlan\ndevice\twlan_wep\ndevice\twlan_ccmp\ndevice\twlan_tkip\ndevice\twlan_amrr\ndevice\tan\ndevice\tath\ndevice\tath_pci\ndevice\tath_hal\ndevice\tath_rate_sample\ndevice\tipw\ndevice\tiwi\ndevice\tiwn\ndevice\tmalo\ndevice\tmwl\ndevice\tral\ndevice\twi\ndevice\twpi\ndevice\tcrypto\ndevice\tloop\ndevice\trandom\ndevice\tpadlock_rng\ndevice\trdrand_rng\ndevice\tether\ndevice\tvlan\ndevice\ttun\ndevice\tmd\ndevice\tgif\ndevice\tfirmware\ndevice\tbpf\ndevice\tuhci\ndevice\tohci\ndevice\tehci\ndevice\txhci\ndevice\tusb\ndevice\tukbd\ndevice\tumass\ndevice\tsound\ndevice\tsnd_cmi\ndevice\tsnd_csa\ndevice\tsnd_emu10kx\ndevice\tsnd_es137x\ndevice\tsnd_hda\ndevice\tsnd_ich\ndevice\tsnd_via8233\ndevice\tmmc\ndevice\tmmcsd\ndevice\tsdhci\ndevice\tvirtio\ndevice\tvirtio_pci\ndevice\tvtnet\ndevice\tvirtio_blk\ndevice\tvirtio_scsi\ndevice\tvirtio_balloon\ndevice\thyperv\ndevice\txenpci\ndevice\tnetmap\ndevice\tevdev\ndevice\tuinput\n", "kern.supported_archs": "amd64 i386", "kern.maxusers": 461, "kern.compiler_version": "FreeBSD clang version 8.0.1 (tags/RELEASE_801/final 366581) (based on LLVM 8.0.1)", "kern.ident": "GENERIC", "kern.malloc_count": 422, "kern.module_path": "/boot/kernel;/boot/modules;/boot/dtb;/boot/dtb/overlays", "kern.ktrace.request_pool": 100, "kern.ktrace.genio_size": 4096, "kern.randompid": 0, "kern.lastpid": 1861, "kern.disallow_high_osrel": 0, "kern.ps_arg_cache_limit": 256, "kern.stackprot": 7, "kern.coredump_pack_vmmapinfo": 1, "kern.coredump_pack_fileinfo": 1, "kern.kq_calloutmax": 4096, "kern.eventtimer.periodic": 0, "kern.eventtimer.timer": "LAPIC", "kern.eventtimer.idletick": 0, "kern.eventtimer.singlemul": 4, "kern.eventtimer.choice": "LAPIC(600) i8254(100) RTC(0)", "kern.eventtimer.et.RTC.quality": 0, "kern.eventtimer.et.RTC.frequency": 32768, "kern.eventtimer.et.RTC.flags": 17, "kern.eventtimer.et.i8254.quality": 100, "kern.eventtimer.et.i8254.frequency": 1193182, "kern.eventtimer.et.i8254.flags": 1, "kern.eventtimer.et.LAPIC.quality": 600, "kern.eventtimer.et.LAPIC.frequency": 2399971000, "kern.eventtimer.et.LAPIC.flags": 7, "kern.openfiles": 79, "kern.chroot_allow_open_directories": 1, "kern.vty": "vt", "kern.constty_wakeups_per_second": 5, "kern.consmsgbuf_size": 8192, "kern.consmute": 0, "kern.console": "ttyv0,/ttyv0,", "kern.cp_times": "1306 0 20708 3886 2221637", "kern.cp_time": "1306 0 20708 3886 2221637", "kern.acct_suspended": 0, "kern.acct_configured": 0, "kern.acct_chkfreq": 15, "kern.acct_resume": 4, "kern.acct_suspend": 2, "kern.init_shutdown_timeout": 120, "kern.init_path": "/sbin/init:/sbin/oinit:/sbin/init.bak:/rescue/init", "kern.elf32.aslr.stack_gap": 3, "kern.elf32.aslr.honor_sbrk": 1, "kern.elf32.aslr.pie_enable": 0, "kern.elf32.aslr.enable": 0, "kern.elf32.read_exec": 0, "kern.elf32.nxstack": 1, "kern.elf32.fallback_brand": -1, "kern.elf64.aslr.stack_gap": 3, "kern.elf64.aslr.honor_sbrk": 1, "kern.elf64.aslr.pie_enable": 0, "kern.elf64.aslr.enable": 0, "kern.elf64.nxstack": 1, "kern.elf64.fallback_brand": -1, "kern.geom.raid.raid5.enable": 1, "kern.geom.raid.raid1e.enable": 1, "kern.geom.raid.raid1e.rebuild_meta_update": 1024, "kern.geom.raid.raid1e.rebuild_cluster_idle": 100, "kern.geom.raid.raid1e.rebuild_fair_io": 20, "kern.geom.raid.raid1e.rebuild_slab_size": 1048576, "kern.geom.raid.raid1.enable": 1, "kern.geom.raid.raid1.rebuild_meta_update": 1024, "kern.geom.raid.raid1.rebuild_cluster_idle": 100, "kern.geom.raid.raid1.rebuild_fair_io": 20, "kern.geom.raid.raid1.rebuild_slab_size": 1048576, "kern.geom.raid.raid0.enable": 1, "kern.geom.raid.concat.enable": 1, "kern.geom.raid.sii.enable": 1, "kern.geom.raid.promise.enable": 1, "kern.geom.raid.nvidia.enable": 1, "kern.geom.raid.jmicron.enable": 1, "kern.geom.raid.intel.enable": 1, "kern.geom.raid.ddf.enable": 1, "kern.geom.raid.idle_threshold": 1000000, "kern.geom.raid.name_format": 0, "kern.geom.raid.disconnect_on_failure": 1, "kern.geom.raid.clean_time": 5, "kern.geom.raid.start_timeout": 30, "kern.geom.raid.read_err_thresh": 10, "kern.geom.raid.debug": 0, "kern.geom.raid.aggressive_spare": 0, "kern.geom.raid.enable": 1, "kern.geom.part.mbr.enforce_chs": 0, "kern.geom.part.gpt.allow_nesting": 0, "kern.geom.part.allow_nesting": 0, "kern.geom.part.auto_resize": 1, "kern.geom.part.check_integrity": 1, "kern.geom.label.disk_ident.enable": 1, "kern.geom.label.gptid.enable": 1, "kern.geom.label.gpt.enable": 1, "kern.geom.label.ufs.enable": 1, "kern.geom.label.ufsid.enable": 1, "kern.geom.label.reiserfs.enable": 1, "kern.geom.label.ntfs.enable": 1, "kern.geom.label.msdosfs.enable": 1, "kern.geom.label.iso9660.enable": 1, "kern.geom.label.flashmap.enable": 1, "kern.geom.label.ext2fs.enable": 1, "kern.geom.label.debug": 0, "kern.geom.collectstats": 1, "kern.geom.notaste": 0, "kern.geom.debugflags": 0, "kern.geom.conftxt": "0 DISK da0 21474836480 512 hd 255 sc 63\n1 PART da0s1 21474803712 512 i 1 o 32768 ty freebsd xs MBR xt 165\n2 PART da0s1b 1073709056 512 i 2 o 20401094656 ty freebsd-swap xs BSD xt 1\n2 PART da0s1a 20401094656 512 i 1 o 0 ty freebsd-ufs xs BSD xt 7\n0 DISK cd0 4466092032 2048 hd 0 sc 0\n1 LABEL iso9660/12_1_RELEASE_AMD64_DVD 4466092032 2048 i 0 o 0\n", "kern.geom.confdot": "digraph geom {\nz0xfffff80003a16b00 [shape=box,label=\"DEV\\nda0s1b\\nr#4\"];\nz0xfffff80003a0ae80 [label=\"r0w0e0\"];\nz0xfffff80003a0ae80 -> z0xfffff80003a16a00;\nz0xfffff80003a16b00 -> z0xfffff80003a0ae80;\nz0xfffff80003a16d00 [shape=box,label=\"DEV\\nda0s1a\\nr#4\"];\nz0xfffff80003a0af00 [label=\"r0w0e0\"];\nz0xfffff80003a0af00 -> z0xfffff80003a16c00;\nz0xfffff80003a16d00 -> z0xfffff80003a0af00;\nz0xfffff80003a15500 [shape=box,label=\"DEV\\nda0s1\\nr#3\"];\nz0xfffff80003a09280 [label=\"r0w0e0\"];\nz0xfffff80003a09280 -> z0xfffff80003a15400;\nz0xfffff80003a15500 -> z0xfffff80003a09280;\nz0xfffff80003a15e00 [shape=box,label=\"DEV\\niso9660/12_1_RELEASE_AMD64_DVD\\nr#3\"];\nz0xfffff80003a09480 [label=\"r0w0e0\"];\nz0xfffff80003a09480 -> z0xfffff80003a15a00;\nz0xfffff80003a15e00 -> z0xfffff80003a09480;\nz0xfffff80003a14200 [shape=box,label=\"DEV\\nda0\\nr#2\"];\nz0xfffff80003a09680 [label=\"r0w0e0\"];\nz0xfffff80003a09680 -> z0xfffff80003a14000;\nz0xfffff80003a14200 -> z0xfffff80003a09680;\nz0xfffff80003898d00 [shape=box,label=\"DEV\\ncd0\\nr#2\"];\nz0xfffff800034d7f00 [label=\"r0w0e0\"];\nz0xfffff800034d7f00 -> z0xfffff80003a14300;\nz0xfffff80003898d00 -> z0xfffff800034d7f00;\nz0xfffff80003a05c00 [shape=box,label=\"SWAP\\nswap\\nr#4\"];\nz0xfffff80003a0a280 [label=\"r1w1e0\"];\nz0xfffff80003a0a280 -> z0xfffff80003a16a00;\nz0xfffff80003a05c00 -> z0xfffff80003a0a280;\nz0xfffff80003a15900 [shape=box,label=\"PART\\nda0s1\\nr#3\"];\nz0xfffff80003a09200 [label=\"r2w2e3\"];\nz0xfffff80003a09200 -> z0xfffff80003a15400;\nz0xfffff80003a15900 -> z0xfffff80003a09200;\nz0xfffff80003a16a00 [shape=hexagon,label=\"da0s1b\\nr1w1e0\\nerr#0\\nsector=512\\nstripe=0\"];\nz0xfffff80003a16a00 -> z0xfffff80003a15900;\nz0xfffff80003a16c00 [shape=hexagon,label=\"da0s1a\\nr1w1e1\\nerr#0\\nsector=512\\nstripe=0\"];\nz0xfffff80003a16c00 -> z0xfffff80003a15900;\nz0xfffff80003a15000 [shape=box,label=\"PART\\niso9660/12_1_RELEASE_AMD64_DVD\\nr#3\"];\nz0xfffff80003a09300 [label=\"r0w0e0\"];\nz0xfffff80003a09300 -> z0xfffff80003a15a00;\nz0xfffff80003a15000 -> z0xfffff80003a09300;\nz0xfffff80003a15600 [shape=box,label=\"PART\\nda0\\nr#2\"];\nz0xfffff80003a09600 [label=\"r2w2e5\"];\nz0xfffff80003a09600 -> z0xfffff80003a14000;\nz0xfffff80003a15600 -> z0xfffff80003a09600;\nz0xfffff80003a15400 [shape=hexagon,label=\"da0s1\\nr2w2e3\\nerr#0\\nsector=512\\nstripe=0\"];\nz0xfffff80003a15400 -> z0xfffff80003a15600;\nz0xfffff80003a15d00 [shape=box,label=\"PART\\ncd0\\nr#2\"];\nz0xfffff80003a09800 [label=\"r0w0e0\"];\nz0xfffff80003a09800 -> z0xfffff80003a14300;\nz0xfffff80003a15d00 -> z0xfffff80003a09800;\nz0xfffff80003a15b00 [shape=box,label=\"LABEL\\ncd0\\nr#2\"];\nz0xfffff80003a09700 [label=\"r0w0e0\"];\nz0xfffff80003a09700 -> z0xfffff80003a14300;\nz0xfffff80003a15b00 -> z0xfffff80003a09700;\nz0xfffff80003a15a00 [shape=hexagon,label=\"iso9660/12_1_RELEASE_AMD64_DVD\\nr0w0e0\\nerr#0\\nsector=2048\\nstripe=0\"];\nz0xfffff80003a15a00 -> z0xfffff80003a15b00;\nz0xfffff80003a03300 [shape=box,label=\"VFS\\nffs.da0s1a\\nr#4\"];\nz0xfffff80003a09780 [label=\"r1w1e1\"];\nz0xfffff80003a09780 -> z0xfffff80003a16c00;\nz0xfffff80003a03300 -> z0xfffff80003a09780;\nz0xfffff80003a14100 [shape=box,label=\"DISK\\nda0\\nr#1\"];\nz0xfffff80003a14000 [shape=hexagon,label=\"da0\\nr2w2e5\\nerr#0\\nsector=512\\nstripe=0\"];\nz0xfffff80003a14000 -> z0xfffff80003a14100;\nz0xfffff80003a14400 [shape=box,label=\"DISK\\ncd0\\nr#1\"];\nz0xfffff80003a14300 [shape=hexagon,label=\"cd0\\nr0w0e0\\nerr#0\\nsector=2048\\nstripe=0\"];\nz0xfffff80003a14300 -> z0xfffff80003a14400;\n}\n", "kern.geom.confxml": "\n \n FD\n \n \n RAID\n \n \n DEV\n \n \n da0s1b\n 4\n\t\n\t \n\t \n\t r0w0e0\n\t\n \n \n \n da0s1a\n 4\n\t\n\t \n\t \n\t r0w0e0\n\t\n \n \n \n da0s1\n 3\n\t\n\t \n\t \n\t r0w0e0\n\t\n \n \n \n iso9660/12_1_RELEASE_AMD64_DVD\n 3\n\t\n\t \n\t \n\t r0w0e0\n\t\n \n \n \n da0\n 2\n\t\n\t \n\t \n\t r0w0e0\n\t\n \n \n \n cd0\n 2\n\t\n\t \n\t \n\t r0w0e0\n\t\n \n \n \n MD\n \n \n SWAP\n \n \n swap\n 4\n\t\n\t \n\t \n\t r1w1e0\n\t\n \n \n \n PART\n \n \n da0s1\n 3\n \n\tBSD\n\t8\n\t0\n\t41942975\n\t63\n\t255\n\tOK\n\tfalse\n \n\t\n\t \n\t \n\t r2w2e3\n\t \n\t \n\t\n\t\n\t \n\t r1w1e0\n\t da0s1b\n\t 1073709056\n\t 512\n\t 0\n\t 3221258240\n\t \n\t 39845888\n\t 41942975\n\t 2\n\t freebsd-swap\n\t 20401094656\n\t 1073709056\n\t 1\n\t \n\t\n\t\n\t \n\t r1w1e1\n\t da0s1a\n\t 20401094656\n\t 512\n\t 0\n\t 32768\n\t \n\t 0\n\t 39845887\n\t 1\n\t freebsd-ufs\n\t 0\n\t 20401094656\n\t 7\n\t \n\t\n \n \n \n iso9660/12_1_RELEASE_AMD64_DVD\n 3\n \n\tMBR\n\t4\n\t17\n\t2180708\n\t17\n\t255\n\tOK\n\tfalse\n \n\t\n\t \n\t \n\t r0w0e0\n\t \n\t \n\t\n \n \n \n da0\n 2\n \n\tMBR\n\t4\n\t63\n\t41943039\n\t63\n\t255\n\tOK\n\tfalse\n \n\t\n\t \n\t \n\t r2w2e5\n\t \n\t \n\t\n\t\n\t \n\t r2w2e3\n\t da0s1\n\t 21474803712\n\t 512\n\t 0\n\t 32768\n\t \n\t 64\n\t 41943039\n\t 1\n\t freebsd\n\t 32768\n\t 21474803712\n\t 165\n\t active\n\t HD(1,MBR,0x90909090,0x40,0x27fffc0)\n\t \n\t\n \n \n \n cd0\n 2\n \n\tMBR\n\t4\n\t17\n\t2180708\n\t17\n\t255\n\tOK\n\tfalse\n \n\t\n\t \n\t \n\t r0w0e0\n\t \n\t \n\t\n \n \n \n LABEL\n \n \n cd0\n 2\n \n \n\t\n\t \n\t \n\t r0w0e0\n\t \n\t \n\t\n\t\n\t \n\t r0w0e0\n\t iso9660/12_1_RELEASE_AMD64_DVD\n\t 4466092032\n\t 2048\n\t 0\n\t 0\n\t \n\t 0\n\t 4466092032\n\t 8722836\n\t 0\n\t 0\n\t \n\t\n \n \n \n VFS\n \n \n ffs.da0s1a\n 4\n\t\n\t \n\t \n\t r1w1e1\n\t\n \n \n \n Flashmap\n \n \n DISK\n \n \n da0\n 1\n \n \n\t\n\t \n\t r2w2e5\n\t da0\n\t 21474836480\n\t 512\n\t 0\n\t 0\n\t \n\t 255\n\t 63\n\t 0\n\t \n\t VMware, VMware Virtual S\n\t \n\t\n \n \n \n cd0\n 1\n \n \n\t\n\t \n\t r0w0e0\n\t cd0\n\t 4466092032\n\t 2048\n\t 0\n\t 0\n\t \n\t 0\n\t 0\n\t unknown\n\t \n\t NECVMWar VMware IDE CDR10\n\t \n\t\n \n \n\n", "kern.geom.inflight_transient_maps": 0, "kern.geom.transient_map_soft_failures": 0, "kern.geom.transient_map_hard_failures": 0, "kern.geom.transient_map_retries": 10, "kern.geom.transient_maps": 0, "kern.geom.disk.da0.flags": "ba", "kern.geom.disk.da0.led": "", "kern.geom.disk.cd0.flags": 0, "kern.geom.disk.cd0.led": "", "kern.geom.dev.delete_max_sectors": 262144, "kern.disks": "da0 cd0", "kern.vt.splash_cpu_duration": 10, "kern.vt.splash_cpu_style": 2, "kern.vt.splash_ncpu": 0, "kern.vt.splash_cpu": 0, "kern.vt.kbd_panic": 0, "kern.vt.kbd_debug": 1, "kern.vt.kbd_reboot": 1, "kern.vt.kbd_poweroff": 1, "kern.vt.kbd_halt": 1, "kern.vt.suspendswitch": 1, "kern.vt.deadtimer": 15, "kern.vt.debug": 0, "kern.vt.enable_bell": 1, "kern.vt.enable_altgr": 1, "kern.random.fortuna.minpoolsize": 64, "kern.random.harvest.mask_symbolic": "PURE_RDRAND,[UMA],[FS_ATIME],SWI,INTERRUPT,NET_NG,NET_ETHER,NET_TUN,MOUSE,KEYBOARD,ATTACH,CACHED", "kern.random.harvest.mask_bin": 10000000111111111, "kern.random.harvest.mask": 66047, "kern.random.random_sources": "'Intel Secure Key RNG'", "kern.evdev.input.3.uniq": "", "kern.evdev.input.3.phys": "psm0", "kern.evdev.input.3.id": "{ bustype = 0x0011, vendor = 0x0002, product = 0x0001, version = 0x0000 }", "kern.evdev.input.3.name": "IntelliMouse", "kern.evdev.input.2.uniq": "", "kern.evdev.input.2.phys": "atkbd0", "kern.evdev.input.2.id": "{ bustype = 0x0011, vendor = 0x0001, product = 0x0001, version = 0x0000 }", "kern.evdev.input.2.name": "AT keyboard", "kern.evdev.input.1.uniq": "", "kern.evdev.input.1.phys": "sysmouse", "kern.evdev.input.1.id": "{ bustype = 0x0006, vendor = 0x0000, product = 0x0000, version = 0x0000 }", "kern.evdev.input.1.name": "System mouse", "kern.evdev.input.0.uniq": "", "kern.evdev.input.0.phys": "kbdmux0", "kern.evdev.input.0.id": "{ bustype = 0x0006, vendor = 0x0000, product = 0x0000, version = 0x0000 }", "kern.evdev.input.0.name": "System keyboard multiplexer", "kern.evdev.sysmouse_t_axis": 0, "kern.evdev.rcpt_mask": 3, "kern.cam.enc.emulate_array_devices": 1, "kern.cam.enc.verbose": 0, "kern.cam.sa.allow_io_split": 0, "kern.cam.da.0.sort_io_queue": 0, "kern.cam.da.0.p_type": 0, "kern.cam.da.0.rotating": 0, "kern.cam.da.0.unmapped_io": 1, "kern.cam.da.0.error_inject": 0, "kern.cam.da.0.max_seq_zones": 0, "kern.cam.da.0.optimal_nonseq_zones": 0, "kern.cam.da.0.optimal_seq_zones": 0, "kern.cam.da.0.zone_support": "None", "kern.cam.da.0.zone_mode": "Not Zoned", "kern.cam.da.0.minimum_cmd_size": 6, "kern.cam.da.0.delete_max": 131072, "kern.cam.da.0.delete_method": "NONE", "kern.cam.da.default_softtimeout": 0, "kern.cam.da.disable_wp_detection": 0, "kern.cam.da.send_ordered": 1, "kern.cam.da.default_timeout": 60, "kern.cam.da.retry_count": 4, "kern.cam.da.poll_period": 3, "kern.cam.ada.write_cache": 1, "kern.cam.ada.read_ahead": 1, "kern.cam.ada.spindown_suspend": 1, "kern.cam.ada.spindown_shutdown": 1, "kern.cam.ada.send_ordered": 1, "kern.cam.ada.default_timeout": 30, "kern.cam.ada.retry_count": 4, "kern.cam.cd.0.minimum_cmd_size": 6, "kern.cam.cd.timeout": 30000, "kern.cam.cd.retry_count": 4, "kern.cam.cd.poll_period": 3, "kern.cam.scsi_delay": 5000, "kern.cam.cam_srch_hi": 0, "kern.cam.nda.max_trim": 256, "kern.cam.pmp.hide_special": 1, "kern.cam.pmp.default_timeout": 30, "kern.cam.pmp.retry_count": 1, "kern.cam.debug_delay": 0, "kern.cam.dflags": 0, "kern.cam.num_doneqs": 1, "kern.cam.announce_nosbuf": 0, "kern.cam.xpt_generation": 43, "kern.cam.boot_delay": 0, "kern.cam.mapmem_thresh": 65536, "kern.cam.sort_io_queues": 1, "vm.vmtotal": "\nSystem wide totals computed every five seconds: (values in kilobytes)\n===============================================\nProcesses:\t\t(RUNQ: 1 Disk Wait: 0 Page Wait: 0 Sleep: 21)\nVirtual Memory:\t\t(Total: 278176K Active: 261408K)\nReal Memory:\t\t(Total: 30400K Active: 28876K)\nShared Virtual Memory:\t(Total: 28588K Active: 11892K)\nShared Real Memory:\t(Total: 12260K Active: 10784K)\nFree Memory:\t1870520K", "vm.loadavg": "{ 0.33 0.33 0.37 }", "vm.v_free_min": 3220, "vm.v_free_target": 10726, "vm.v_free_reserved": 718, "vm.v_inactive_target": 16089, "vm.v_pageout_free_min": 34, "vm.swap_enabled": 1, "vm.overcommit": 0, "vm.domain.0.pidctrl.kdd": 8, "vm.domain.0.pidctrl.kid": 4, "vm.domain.0.pidctrl.kpd": 3, "vm.domain.0.pidctrl.bound": 171616, "vm.domain.0.pidctrl.interval": 10, "vm.domain.0.pidctrl.setpoint": 10726, "vm.domain.0.pidctrl.ticks": -2145773934, "vm.domain.0.pidctrl.output": 0, "vm.domain.0.pidctrl.input": 467630, "vm.domain.0.pidctrl.derivative": 128, "vm.domain.0.pidctrl.integral": 0, "vm.domain.0.pidctrl.olderror": -457032, "vm.domain.0.pidctrl.error": -456904, "vm.domain.0.stats.free_severe": 1969, "vm.domain.0.stats.free_min": 3220, "vm.domain.0.stats.free_reserved": 718, "vm.domain.0.stats.free_target": 10726, "vm.domain.0.stats.inactive_target": 16089, "vm.domain.0.stats.unswppdpgs": 0, "vm.domain.0.stats.unswappable": 0, "vm.domain.0.stats.laundpdpgs": 0, "vm.domain.0.stats.laundry": 0, "vm.domain.0.stats.inactpdpgs": 0, "vm.domain.0.stats.inactive": 3584, "vm.domain.0.stats.actpdpgs": 32748, "vm.domain.0.stats.active": 504, "vm.domain.0.stats.free_count": 467629, "vm.kvm_free": 2198561878016, "vm.kvm_size": 2199023251456, "vm.pmap.pdpe.demotions": 0, "vm.pmap.pde.promotions": 116, "vm.pmap.pde.p_failures": 0, "vm.pmap.pde.mappings": 14, "vm.pmap.pde.demotions": 13, "vm.pmap.di_locked": 0, "vm.pmap.pcid_save_cnt": 152651, "vm.pmap.pti": 1, "vm.pmap.invpcid_works": 1, "vm.pmap.pcid_enabled": 1, "vm.pmap.pg_ps_enabled": 1, "vm.pmap.pat_works": 1, "vm.swap_idle_threshold2": 10, "vm.swap_idle_threshold1": 2, "vm.swap_idle_enabled": 0, "vm.reserv.reclaimed": 0, "vm.reserv.partpopq": "\nDOMAIN LEVEL SIZE NUMBER\n\n 0, -1, 205124K, 106\n", "vm.reserv.fullpop": 6, "vm.reserv.freed": 6094, "vm.reserv.broken": 0, "vm.ndomains": 1, "vm.phys_locality": "\n0: -1 \n", "vm.phys_segs": "\nSEGMENT 0:\n\nstart: 0x1000\nend: 0x9f000\ndomain: 0\nfree list: 0xffffffff81fadaf0\n\nSEGMENT 1:\n\nstart: 0x100000\nend: 0x1000000\ndomain: 0\nfree list: 0xffffffff81fadaf0\n\nSEGMENT 2:\n\nstart: 0x1000000\nend: 0x265d000\ndomain: 0\nfree list: 0xffffffff81fad880\n\nSEGMENT 3:\n\nstart: 0x2666000\nend: 0x269b000\ndomain: 0\nfree list: 0xffffffff81fad880\n\nSEGMENT 4:\n\nstart: 0x2800000\nend: 0x7caa1000\ndomain: 0\nfree list: 0xffffffff81fad880\n\nSEGMENT 5:\n\nstart: 0x7ff03000\nend: 0x7ffe6000\ndomain: 0\nfree list: 0xffffffff81fad880\n", "vm.phys_free": "\nDOMAIN 0:\n\nFREE LIST 0:\n\n ORDER (SIZE) | NUMBER\n | POOL 0 | POOL 1\n-- -- -- -- -- --\n 12 ( 16384K) | 93 | 0\n 11 ( 8192K) | 5 | 1\n 10 ( 4096K) | 11 | 0\n 9 ( 2048K) | 13 | 0\n 8 ( 1024K) | 3 | 0\n 7 ( 512K) | 5 | 1\n 6 ( 256K) | 9 | 0\n 5 ( 128K) | 15 | 1\n 4 ( 64K) | 35 | 1\n 3 ( 32K) | 53 | 0\n 2 ( 16K) | 119 | 0\n 1 ( 8K) | 234 | 1\n 0 ( 4K) | 489 | 1\n\nFREE LIST 1:\n\n ORDER (SIZE) | NUMBER\n | POOL 0 | POOL 1\n-- -- -- -- -- --\n 12 ( 16384K) | 0 | 0\n 11 ( 8192K) | 0 | 0\n 10 ( 4096K) | 0 | 0\n 9 ( 2048K) | 0 | 0\n 8 ( 1024K) | 0 | 0\n 7 ( 512K) | 0 | 0\n 6 ( 256K) | 1 | 0\n 5 ( 128K) | 1 | 0\n 4 ( 64K) | 2 | 0\n 3 ( 32K) | 2 | 0\n 2 ( 16K) | 2 | 0\n 1 ( 8K) | 0 | 0\n 0 ( 4K) | 0 | 0\n", "vm.oom_pf_secs": 10, "vm.max_wired": 164694, "vm.background_launder_max": 20480, "vm.background_launder_rate": 4096, "vm.act_scan_laundry_weight": 3, "vm.pageout_oom_seq": 12, "vm.pageout_lock_miss": 0, "vm.disable_swapspace_pageouts": 0, "vm.lowmem_period": 10, "vm.pageout_update_period": 600, "vm.panic_on_oom": 0, "vm.page_blacklist": "", "vm.tryrelock_restart": 0, "vm.boot_pages": 5, "vm.old_msync": 0, "vm.mincore_mapped": 1, "vm.old_mlock": 0, "vm.stats.object.bypasses": 683, "vm.stats.object.collapses": 4318, "vm.stats.vm.v_pdpages": 32748, "vm.stats.vm.v_tcached": 0, "vm.stats.vm.v_cache_count": 0, "vm.stats.vm.v_free_severe": 1969, "vm.stats.vm.v_interrupt_free_min": 2, "vm.stats.vm.v_pageout_free_min": 34, "vm.stats.vm.v_laundry_count": 0, "vm.stats.vm.v_inactive_count": 3584, "vm.stats.vm.v_inactive_target": 16089, "vm.stats.vm.v_active_count": 504, "vm.stats.vm.v_wire_count": 28334, "vm.stats.vm.v_free_count": 467629, "vm.stats.vm.v_free_min": 3220, "vm.stats.vm.v_free_target": 10726, "vm.stats.vm.v_free_reserved": 718, "vm.stats.vm.v_page_count": 500770, "vm.stats.vm.v_page_size": 4096, "vm.stats.vm.v_kthreadpages": 0, "vm.stats.vm.v_rforkpages": 114, "vm.stats.vm.v_vforkpages": 25068, "vm.stats.vm.v_forkpages": 62603, "vm.stats.vm.v_kthreads": 22, "vm.stats.vm.v_rforks": 2, "vm.stats.vm.v_vforks": 699, "vm.stats.vm.v_forks": 1138, "vm.stats.vm.v_tfree": 532683, "vm.stats.vm.v_pfree": 207587, "vm.stats.vm.v_dfree": 0, "vm.stats.vm.v_pdshortfalls": 0, "vm.stats.vm.v_pdwakeups": 0, "vm.stats.vm.v_reactivated": 0, "vm.stats.vm.v_intrans": 0, "vm.stats.vm.v_vnodepgsout": 0, "vm.stats.vm.v_vnodepgsin": 7981, "vm.stats.vm.v_vnodeout": 0, "vm.stats.vm.v_vnodein": 1075, "vm.stats.vm.v_swappgsout": 0, "vm.stats.vm.v_swappgsin": 0, "vm.stats.vm.v_swapout": 0, "vm.stats.vm.v_swapin": 0, "vm.stats.vm.v_ozfod": 0, "vm.stats.vm.v_zfod": 306807, "vm.stats.vm.v_cow_optim": 26, "vm.stats.vm.v_cow_faults": 71061, "vm.stats.vm.v_io_faults": 946, "vm.stats.vm.v_vm_faults": 515528, "vm.stats.sys.v_soft": 255400, "vm.stats.sys.v_intr": 75266, "vm.stats.sys.v_syscall": 1808001, "vm.stats.sys.v_trap": 525747, "vm.stats.sys.v_swtch": 1750830, "vm.v_free_severe": 1969, "vm.aslr_restarts": 0, "vm.cluster_anon": 1, "vm.max_kernel_address": 18446744073709547520, "vm.min_kernel_address": 18446741874686296064, "vm.kstacks": 128, "vm.kstack_cache_size": 128, "vm.pfault_oom_wait": 10, "vm.pfault_oom_attempts": 3, "vm.zone_warnings": 1, "vm.zone_count": 126, "vm.uma_kmem_total": 28069888, "vm.uma_kmem_limit": 2051153920, "vm.nswapdev": 1, "vm.dmmax": 32, "vm.swap_fragmentation": "\nFree space on device da0s1b:\nnumber of maximal free ranges: 1\nlargest free range: 262134\naverage maximal free range size: 262134\nnumber of maximal free ranges of different sizes:\n count | size range\n ----- | ----------\n 1 | 262134\n", "vm.swap_async_max": 4, "vm.swap_maxpages": 4006176, "vm.swzone": 34052496, "vm.swap_total": 1073709056, "vm.swap_reserved": 346550272, "vm.phys_pager_cluster": 1024, "vm.kmem_map_free": 2023084032, "vm.kmem_map_size": 28069888, "vm.kmem_size_scale": 1, "vm.kmem_size_max": 1319413950874, "vm.kmem_size_min": 0, "vm.kmem_zmax": 65536, "vm.kmem_size": 2051153920, "vm.md_malloc_wait": 0, "vfs.msdosfs.use_buf_pager": 1, "vfs.ufs.rename_restarts": 0, "vfs.ufs.dirhash_reclaimpercent": 10, "vfs.ufs.dirhash_lowmemcount": 0, "vfs.ufs.dirhash_docheck": 0, "vfs.ufs.dirhash_mem": 156106, "vfs.ufs.dirhash_maxmem": 3452928, "vfs.ufs.dirhash_minsize": 2560, "vfs.nfs.downdelayinitial": 12, "vfs.nfs.downdelayinterval": 30, "vfs.nfs.defect": 0, "vfs.nfs.iodmax": 20, "vfs.nfs.iodmin": 0, "vfs.nfs.iodmaxidle": 120, "vfs.nfs.use_buf_pager": 1, "vfs.nfs.fileid_maxwarnings": 10, "vfs.nfs.diskless_rootpath": "", "vfs.nfs.diskless_valid": 0, "vfs.nfs.nfs_ip_paranoia": 1, "vfs.nfs.nfs_directio_allow_mmap": 1, "vfs.nfs.nfs_keep_dirty_on_error": 0, "vfs.nfs.nfs_directio_enable": 0, "vfs.nfs.clean_pages_on_close": 1, "vfs.nfs.commit_on_close": 0, "vfs.nfs.prime_access_cache": 0, "vfs.nfs.access_cache_timeout": 60, "vfs.nfs.dssameconn": 0, "vfs.nfs.ignore_eexist": 0, "vfs.nfs.pnfsiothreads": -1, "vfs.nfs.userhashsize": 100, "vfs.nfs.debuglevel": 0, "vfs.nfs.callback_addr": "", "vfs.nfs.realign_count": 0, "vfs.nfs.realign_test": 0, "vfs.nfs.pnfsmirror": 1, "vfs.nfs.enable_uidtostring": 0, "vfs.nfs.dsretries": 2, "vfs.nfs.skip_wcc_data_onerr": 1, "vfs.nfs.nfs3_jukebox_delay": 10, "vfs.nfs.reconnects": 0, "vfs.nfs.bufpackets": 4, "vfs.devfs.dotimes": 0, "vfs.devfs.rule_depth": 1, "vfs.devfs.generation": 102, "vfs.cd9660.use_buf_pager": 1, "vfs.ffs.use_buf_pager": 1, "vfs.ffs.compute_summary_at_mount": 0, "vfs.ffs.doasyncinodeinit": 1, "vfs.ffs.maxclustersearch": 10, "vfs.ffs.dotrimcons": 1, "vfs.ffs.doreallocblks": 1, "vfs.ffs.doasyncfree": 1, "vfs.ino64_trunc_error": 0, "vfs.worklist_len": 3, "vfs.timestamp_precision": 2, "vfs.free_owe_inact": 0, "vfs.reassignbufcalls": 11412, "vfs.recycles": 0, "vfs.freevnodes": 600, "vfs.wantfreevnodes": 28105, "vfs.mnt_free_list_batch": 128, "vfs.vnodes_created": 4256, "vfs.numvnodes": 2917, "vfs.root_mount_hold": "", "vfs.root_mount_always_wait": 0, "vfs.default_autoro": 0, "vfs.usermount": 0, "vfs.lookup_cap_dotdot_nonlocal": 1, "vfs.lookup_cap_dotdot": 1, "vfs.typenumhash": 1, "vfs.read_min": 1, "vfs.read_max": 64, "vfs.write_behind": 1, "vfs.cache.yield": 0, "vfs.cache.cache_lock_vnodes_cel_3_failures": 0, "vfs.cache.zap_and_exit_bucket_fail": 0, "vfs.cache.numfullpathfound": 541, "vfs.cache.numfullpathfail4": 0, "vfs.cache.numfullpathfail2": 0, "vfs.cache.numfullpathfail1": 0, "vfs.cache.numfullpathcalls": 541, "vfs.cache.numneghits": 11742, "vfs.cache.numnegzaps": 0, "vfs.cache.numposhits": 499876, "vfs.cache.numposzaps": 1701, "vfs.cache.nummisszap": 1534, "vfs.cache.nummiss": 7247, "vfs.cache.numchecks": 515435, "vfs.cache.dotdothits": 101, "vfs.cache.dothits": 767, "vfs.cache.numcalls": 522968, "vfs.cache.numcache": 2269, "vfs.cache.numneg": 187, "vfs.ncneghitsrequeue": 8, "vfs.ncpurgeminvnodes": 128, "vfs.ncsizefactor": 2, "vfs.ncnegfactor": 12, "vfs.buf_pager_relbuf": 0, "vfs.flushwithdeps": 0, "vfs.maxbcachebuf": 65536, "vfs.unmapped_buf_allowed": 1, "vfs.barrierwrites": 0, "vfs.notbufdflushes": 0, "vfs.flushbufqtarget": 100, "vfs.numbufallocfails": 0, "vfs.mappingrestarts": 0, "vfs.getnewbufrestarts": 0, "vfs.getnewbufcalls": 5320, "vfs.hifreebuffers": 192, "vfs.lofreebuffers": 128, "vfs.numfreebuffers": 13525, "vfs.dirtybufthresh": 3060, "vfs.hidirtybuffers": 3401, "vfs.lodirtybuffers": 1700, "vfs.numdirtybuffers": 11, "vfs.recursiveflushes": 428, "vfs.altbufferflushes": 0, "vfs.bdwriteskip": 0, "vfs.dirtybufferflushes": 0, "vfs.hirunningspace": 3473408, "vfs.lorunningspace": 2359296, "vfs.bufdefragcnt": 0, "vfs.buffreekvacnt": 762, "vfs.bufspacethresh": 215414784, "vfs.hibufspace": 220938240, "vfs.lobufspace": 209891328, "vfs.maxmallocbufspace": 11046912, "vfs.bufmallocspace": 0, "vfs.maxbufspace": 221593600, "vfs.bufkvaspace": 16580608, "vfs.bufspace": 74547200, "vfs.runningbufspace": 0, "vfs.vmiodirenable": 1, "vfs.aio.max_buf_aio": 16, "vfs.aio.max_aio_queue_per_proc": 256, "vfs.aio.max_aio_per_proc": 32, "vfs.aio.aiod_lifetime": 3000, "vfs.aio.num_unmapped_aio": 0, "vfs.aio.num_buf_aio": 0, "vfs.aio.num_queue_count": 0, "vfs.aio.max_aio_queue": 1024, "vfs.aio.target_aio_procs": 4, "vfs.aio.num_aio_procs": 0, "vfs.aio.max_aio_procs": 32, "vfs.aio.unsafe_warningcnt": 1, "vfs.aio.enable_unsafe": 0, "vfs.acl_nfs4_old_semantics": 0, "vfs.pfs.vncache.misses": 0, "vfs.pfs.vncache.hits": 0, "vfs.pfs.vncache.maxentries": 0, "vfs.pfs.vncache.entries": 0, "vfs.nfsd.fha.fhe_stats": "No file handle entries.", "vfs.nfsd.fha.max_reqs_per_nfsd": 0, "vfs.nfsd.fha.max_nfsds_per_fh": 8, "vfs.nfsd.fha.bin_shift": 22, "vfs.nfsd.fha.write": 1, "vfs.nfsd.fha.read": 1, "vfs.nfsd.fha.enable": 1, "vfs.nfsd.request_space_throttle_count": 0, "vfs.nfsd.request_space_throttled": 0, "vfs.nfsd.request_space_low": 42732202, "vfs.nfsd.request_space_high": 64098304, "vfs.nfsd.request_space_used_highest": 0, "vfs.nfsd.request_space_used": 0, "vfs.nfsd.groups": 1, "vfs.nfsd.threads": 0, "vfs.nfsd.maxthreads": 1, "vfs.nfsd.minthreads": 1, "vfs.nfsd.cachetcp": 1, "vfs.nfsd.tcpcachetimeo": 43200, "vfs.nfsd.udphighwater": 500, "vfs.nfsd.tcphighwater": 0, "vfs.nfsd.dsdirsize": 20, "vfs.nfsd.pnfsgetdsattr": 1, "vfs.nfsd.enable_stringtouid": 0, "vfs.nfsd.debuglevel": 0, "vfs.nfsd.enable_locallocks": 0, "vfs.nfsd.issue_delegations": 0, "vfs.nfsd.commit_miss": 0, "vfs.nfsd.commit_blks": 0, "vfs.nfsd.mirrormnt": 1, "vfs.nfsd.default_flexfile": 0, "vfs.nfsd.async": 0, "vfs.nfsd.server_max_nfsvers": 4, "vfs.nfsd.server_min_nfsvers": 2, "vfs.nfsd.nfs_privport": 0, "vfs.nfsd.flexlinuxhack": 0, "vfs.nfsd.pnfsstrictatime": 0, "vfs.nfsd.allowreadforwriteopen": 1, "vfs.nfsd.writedelegifpos": 0, "vfs.nfsd.v4statelimit": 500000, "vfs.nfsd.layouthighwater": 1000000, "vfs.nfsd.sessionhashsize": 20, "vfs.nfsd.fhhashsize": 20, "vfs.nfsd.clienthashsize": 20, "vfs.nfsd.statehashsize": 10, "vfs.nfsd.enable_nogroupcheck": 1, "vfs.nfsd.enable_nobodycheck": 1, "vfs.nfsd.enable_checkutf8": 1, "net.local.stream.recvspace": 8192, "net.local.stream.sendspace": 8192, "net.local.dgram.recvspace": 4096, "net.local.dgram.maxdgram": 2048, "net.local.seqpacket.recvspace": 8192, "net.local.seqpacket.maxseqpacket": 8192, "net.local.taskcount": 1, "net.local.recycled": 0, "net.local.deferred": 0, "net.local.inflight": 0, "net.inet.ip.portrange.randomtime": 45, "net.inet.ip.portrange.randomcps": 10, "net.inet.ip.portrange.randomized": 1, "net.inet.ip.portrange.reservedlow": 0, "net.inet.ip.portrange.reservedhigh": 1023, "net.inet.ip.portrange.hilast": 65535, "net.inet.ip.portrange.hifirst": 49152, "net.inet.ip.portrange.last": 65535, "net.inet.ip.portrange.first": 10000, "net.inet.ip.portrange.lowlast": 600, "net.inet.ip.portrange.lowfirst": 1023, "net.inet.ip.forwarding": 0, "net.inet.ip.redirect": 1, "net.inet.ip.ttl": 64, "net.inet.ip.sourceroute": 0, "net.inet.ip.intr_queue_maxlen": 256, "net.inet.ip.intr_queue_drops": 0, "net.inet.ip.accept_sourceroute": 0, "net.inet.ip.gifttl": 30, "net.inet.ip.maxfragbucketsize": 7, "net.inet.ip.maxfragsperpacket": 16, "net.inet.ip.fragpackets": 0, "net.inet.ip.maxfragpackets": 3976, "net.inet.ip.curfrags": 0, "net.inet.ip.maxfrags": 3912, "net.inet.ip.process_options": 1, "net.inet.ip.check_interface": 0, "net.inet.ip.mcast.loop": 1, "net.inet.ip.mcast.maxsocksrc": 128, "net.inet.ip.mcast.maxgrpsrc": 512, "net.inet.ip.random_id_total": 0, "net.inet.ip.random_id_collisions": 0, "net.inet.ip.random_id_period": 0, "net.inet.ip.rfc6864": 1, "net.inet.ip.random_id": 0, "net.inet.ip.no_same_prefix": 0, "net.inet.icmp.maskrepl": 0, "net.inet.icmp.icmplim": 200, "net.inet.icmp.error_keeptags": 0, "net.inet.icmp.tstamprepl": 1, "net.inet.icmp.bmcastecho": 0, "net.inet.icmp.quotelen": 548, "net.inet.icmp.reply_from_interface": 0, "net.inet.icmp.reply_src": "", "net.inet.icmp.log_redirect": 0, "net.inet.icmp.drop_redirect": 0, "net.inet.icmp.maskfake": 0, "net.inet.icmp.icmplim_output": 1, "net.inet.igmp.gsrdelay": 10, "net.inet.igmp.default_version": 3, "net.inet.igmp.legacysupp": 0, "net.inet.igmp.v2enable": 1, "net.inet.igmp.v1enable": 1, "net.inet.igmp.sendlocal": 1, "net.inet.igmp.sendra": 1, "net.inet.igmp.recvifkludge": 1, "net.inet.tcp.rfc1323": 1, "net.inet.tcp.mssdflt": 536, "net.inet.tcp.keepidle": 7200000, "net.inet.tcp.keepintvl": 75000, "net.inet.tcp.sendspace": 32768, "net.inet.tcp.recvspace": 65536, "net.inet.tcp.keepinit": 75000, "net.inet.tcp.delacktime": 100, "net.inet.tcp.v6mssdflt": 1220, "net.inet.tcp.nolocaltimewait": 0, "net.inet.tcp.maxtcptw": 12860, "net.inet.tcp.per_cpu_timers": 0, "net.inet.tcp.v6pmtud_blackhole_mss": 1220, "net.inet.tcp.pmtud_blackhole_mss": 1200, "net.inet.tcp.pmtud_blackhole_detection": 0, "net.inet.tcp.rexmit_drop_options": 0, "net.inet.tcp.keepcnt": 8, "net.inet.tcp.finwait2_timeout": 60000, "net.inet.tcp.fast_finwait2_recycle": 0, "net.inet.tcp.always_keepalive": 1, "net.inet.tcp.rexmit_slop": 200, "net.inet.tcp.rexmit_min": 30, "net.inet.tcp.rexmit_initial": 1000, "net.inet.tcp.msl": 30000, "net.inet.tcp.persmax": 60000, "net.inet.tcp.persmin": 5000, "net.inet.tcp.syncache.rst_on_sock_fail": 1, "net.inet.tcp.syncache.rexmtlimit": 3, "net.inet.tcp.syncache.hashsize": 512, "net.inet.tcp.syncache.count": 0, "net.inet.tcp.syncache.cachelimit": 15364, "net.inet.tcp.syncache.bucketlimit": 30, "net.inet.tcp.functions_inherit_listen_socket_stack": 1, "net.inet.tcp.syncookies_only": 0, "net.inet.tcp.syncookies": 1, "net.inet.tcp.functions_available": "\nStack D Alias PCB count\nfreebsd * freebsd 4\n", "net.inet.tcp.functions_default": "freebsd", "net.inet.tcp.soreceive_stream": 0, "net.inet.tcp.isn_reseed_interval": 0, "net.inet.tcp.icmp_may_rst": 1, "net.inet.tcp.pcbcount": 4, "net.inet.tcp.do_tcpdrain": 1, "net.inet.tcp.tcbhashsize": 16384, "net.inet.tcp.log_debug": 0, "net.inet.tcp.ts_offset_per_conn": 1, "net.inet.tcp.minmss": 216, "net.inet.tcp.sack.globalholes": 0, "net.inet.tcp.sack.globalmaxholes": 65536, "net.inet.tcp.sack.maxholes": 128, "net.inet.tcp.sack.enable": 1, "net.inet.tcp.reass.queueguard": 16, "net.inet.tcp.reass.new_limit": 0, "net.inet.tcp.reass.maxqueuelen": 100, "net.inet.tcp.reass.cursegments": 0, "net.inet.tcp.reass.maxsegments": 7885, "net.inet.tcp.sendbuf_auto_lowat": 0, "net.inet.tcp.sendbuf_max": 2097152, "net.inet.tcp.sendbuf_inc": 8192, "net.inet.tcp.sendbuf_auto": 1, "net.inet.tcp.tso": 1, "net.inet.tcp.path_mtu_discovery": 1, "net.inet.tcp.lro.entries": 8, "net.inet.tcp.bb.log_auto_all": 0, "net.inet.tcp.bb.log_auto_mode": 1, "net.inet.tcp.bb.log_auto_ratio": 0, "net.inet.tcp.bb.log_version": 6, "net.inet.tcp.bb.log_id_tcpcb_entries": 0, "net.inet.tcp.bb.log_id_tcpcb_limit": 0, "net.inet.tcp.bb.log_id_entries": 0, "net.inet.tcp.bb.log_id_limit": 0, "net.inet.tcp.bb.log_global_entries": 0, "net.inet.tcp.bb.log_global_limit": 1000000, "net.inet.tcp.bb.log_session_limit": 10000, "net.inet.tcp.bb.log_verbose": 0, "net.inet.tcp.recvbuf_max": 2097152, "net.inet.tcp.recvbuf_inc": 16384, "net.inet.tcp.recvbuf_auto": 1, "net.inet.tcp.insecure_rst": 0, "net.inet.tcp.insecure_syn": 0, "net.inet.tcp.ecn.maxretries": 1, "net.inet.tcp.ecn.enable": 2, "net.inet.tcp.abc_l_var": 2, "net.inet.tcp.rfc3465": 1, "net.inet.tcp.initcwnd_segments": 10, "net.inet.tcp.rfc3390": 1, "net.inet.tcp.rfc3042": 1, "net.inet.tcp.rfc6675_pipe": 0, "net.inet.tcp.drop_synfin": 0, "net.inet.tcp.delayed_ack": 1, "net.inet.tcp.blackhole": 0, "net.inet.tcp.log_in_vain": 0, "net.inet.tcp.hostcache.purgenow": 0, "net.inet.tcp.hostcache.purge": 0, "net.inet.tcp.hostcache.prune": 300, "net.inet.tcp.hostcache.expire": 3600, "net.inet.tcp.hostcache.count": 0, "net.inet.tcp.hostcache.bucketlimit": 30, "net.inet.tcp.hostcache.hashsize": 512, "net.inet.tcp.hostcache.cachelimit": 15360, "net.inet.tcp.hostcache.enable": 1, "net.inet.tcp.fastopen.server_enable": 0, "net.inet.tcp.fastopen.psk_enable": 0, "net.inet.tcp.fastopen.path_disable_time": 900, "net.inet.tcp.fastopen.numpsks": 0, "net.inet.tcp.fastopen.numkeys": 0, "net.inet.tcp.fastopen.maxpsks": 2, "net.inet.tcp.fastopen.maxkeys": 2, "net.inet.tcp.fastopen.keylen": 16, "net.inet.tcp.fastopen.client_enable": 1, "net.inet.tcp.fastopen.ccache_buckets": 2048, "net.inet.tcp.fastopen.ccache_bucket_limit": 16, "net.inet.tcp.fastopen.autokey": 120, "net.inet.tcp.fastopen.acceptany": 0, "net.inet.tcp.cc.newreno.beta_ecn": 80, "net.inet.tcp.cc.newreno.beta": 50, "net.inet.tcp.cc.abe_frlossreduce": 0, "net.inet.tcp.cc.abe": 0, "net.inet.tcp.cc.available": "newreno", "net.inet.tcp.cc.algorithm": "newreno", "net.inet.udp.checksum": 1, "net.inet.udp.maxdgram": 9216, "net.inet.udp.recvspace": 42080, "net.inet.udp.blackhole": 0, "net.inet.udp.log_in_vain": 0, "net.inet.esp.esp_enable": 1, "net.inet.ah.ah_cleartos": 1, "net.inet.ah.ah_enable": 1, "net.inet.ipcomp.ipcomp_enable": 1, "net.inet.sctp.diag_info_code": 0, "net.inet.sctp.blackhole": 0, "net.inet.sctp.use_dcccecn": 1, "net.inet.sctp.rttvar_steady_step": 20, "net.inet.sctp.rttvar_eqret": 0, "net.inet.sctp.rttvar_rtt": 5, "net.inet.sctp.rttvar_bw": 4, "net.inet.sctp.initial_cwnd": 3, "net.inet.sctp.buffer_splitting": 0, "net.inet.sctp.vtag_time_wait": 60, "net.inet.sctp.nat_friendly_init": 0, "net.inet.sctp.enable_sack_immediately": 1, "net.inet.sctp.udp_tunneling_port": 0, "net.inet.sctp.mobility_fasthandoff": 0, "net.inet.sctp.mobility_base": 0, "net.inet.sctp.default_frag_interleave": 1, "net.inet.sctp.default_ss_module": 0, "net.inet.sctp.default_cc_module": 0, "net.inet.sctp.log_level": 0, "net.inet.sctp.max_retran_chunk": 30, "net.inet.sctp.min_residual": 1452, "net.inet.sctp.abort_at_limit": 0, "net.inet.sctp.hb_max_burst": 4, "net.inet.sctp.do_sctp_drain": 1, "net.inet.sctp.max_chained_mbufs": 5, "net.inet.sctp.abc_l_var": 2, "net.inet.sctp.nat_friendly": 1, "net.inet.sctp.cwnd_maxburst": 1, "net.inet.sctp.cmt_use_dac": 0, "net.inet.sctp.cmt_on_off": 0, "net.inet.sctp.outgoing_streams": 10, "net.inet.sctp.incoming_streams": 2048, "net.inet.sctp.add_more_on_output": 1452, "net.inet.sctp.path_pf_threshold": 65535, "net.inet.sctp.path_rtx_max": 5, "net.inet.sctp.assoc_rtx_max": 10, "net.inet.sctp.init_rtx_max": 8, "net.inet.sctp.valid_cookie_life": 60000, "net.inet.sctp.init_rto_max": 60000, "net.inet.sctp.rto_initial": 3000, "net.inet.sctp.rto_min": 1000, "net.inet.sctp.rto_max": 60000, "net.inet.sctp.secret_lifetime": 3600, "net.inet.sctp.shutdown_guard_time": 0, "net.inet.sctp.pmtu_raise_time": 600, "net.inet.sctp.heartbeat_interval": 30000, "net.inet.sctp.asoc_resource": 10, "net.inet.sctp.sys_resource": 1000, "net.inet.sctp.sack_freq": 2, "net.inet.sctp.delayed_sack_time": 200, "net.inet.sctp.chunkscale": 10, "net.inet.sctp.min_split_point": 2904, "net.inet.sctp.pcbhashsize": 256, "net.inet.sctp.tcbhashsize": 1024, "net.inet.sctp.maxchunks": 15649, "net.inet.sctp.fr_maxburst": 4, "net.inet.sctp.maxburst": 4, "net.inet.sctp.peer_chkoh": 256, "net.inet.sctp.pktdrop_enable": 0, "net.inet.sctp.nrsack_enable": 0, "net.inet.sctp.reconfig_enable": 1, "net.inet.sctp.asconf_enable": 1, "net.inet.sctp.auth_enable": 1, "net.inet.sctp.pr_enable": 1, "net.inet.sctp.ecn_enable": 1, "net.inet.sctp.auto_asconf": 1, "net.inet.sctp.recvspace": 1864135, "net.inet.sctp.sendspace": 1864135, "net.inet.ipsec.def_policy": 1, "net.inet.ipsec.esp_trans_deflev": 1, "net.inet.ipsec.esp_net_deflev": 1, "net.inet.ipsec.ah_trans_deflev": 1, "net.inet.ipsec.ah_net_deflev": 1, "net.inet.ipsec.ah_cleartos": 1, "net.inet.ipsec.dfbit": 0, "net.inet.ipsec.ecn": 0, "net.inet.ipsec.debug": 0, "net.inet.ipsec.crypto_warn_interval": 1, "net.inet.ipsec.filtertunnel": 0, "net.inet.ipsec.natt_cksum_policy": 0, "net.inet.ipsec.check_policy_history": 0, "net.inet.ipsec.async_crypto": 0, "net.inet.ipsec.crypto_support": 50331648, "net.inet.raw.recvspace": 9216, "net.inet.raw.maxdgram": 9216, "net.link.generic.system.ifcount": 2, "net.link.ether.inet.allow_multicast": 0, "net.link.ether.inet.log_arp_permanent_modify": 1, "net.link.ether.inet.log_arp_movements": 1, "net.link.ether.inet.log_arp_wrong_iface": 1, "net.link.ether.inet.garp_rexmit_count": 0, "net.link.ether.inet.max_log_per_second": 1, "net.link.ether.inet.maxhold": 1, "net.link.ether.inet.wait": 20, "net.link.ether.inet.proxyall": 0, "net.link.ether.inet.maxtries": 5, "net.link.ether.inet.max_age": 1200, "net.link.vlan.mtag_pcp": 0, "net.link.vlan.soft_pad": 0, "net.link.gif.max_nesting": 1, "net.link.tun.devfs_cloning": 1, "net.link.log_promisc_mode_change": 1, "net.link.log_link_state_change": 1, "net.link.ifqmaxlen": 50, "net.key.debug": 0, "net.key.spi_trycnt": 1000, "net.key.spi_minval": 256, "net.key.spi_maxval": 268435455, "net.key.int_random": 60, "net.key.larval_lifetime": 30, "net.key.blockacq_count": 10, "net.key.blockacq_lifetime": 20, "net.key.esp_keymin": 256, "net.key.esp_auth": 0, "net.key.ah_keymin": 128, "net.key.preferred_oldsa": 1, "net.key.spdcache.threshold": 32, "net.key.spdcache.maxentries": 0, "net.inet6.ip6.forwarding": 0, "net.inet6.ip6.redirect": 1, "net.inet6.ip6.hlim": 64, "net.inet6.ip6.maxfragpackets": 3912, "net.inet6.ip6.accept_rtadv": 0, "net.inet6.ip6.log_interval": 5, "net.inet6.ip6.hdrnestlimit": 15, "net.inet6.ip6.dad_count": 1, "net.inet6.ip6.auto_flowlabel": 1, "net.inet6.ip6.defmcasthlim": 1, "net.inet6.ip6.gifhlim": 30, "net.inet6.ip6.kame_version": "FreeBSD", "net.inet6.ip6.use_deprecated": 1, "net.inet6.ip6.rr_prune": 5, "net.inet6.ip6.v6only": 1, "net.inet6.ip6.use_tempaddr": 0, "net.inet6.ip6.temppltime": 86400, "net.inet6.ip6.tempvltime": 604800, "net.inet6.ip6.auto_linklocal": 1, "net.inet6.ip6.prefer_tempaddr": 0, "net.inet6.ip6.use_defaultzone": 0, "net.inet6.ip6.maxfrags": 3912, "net.inet6.ip6.mcast_pmtu": 0, "net.inet6.ip6.no_radr": 0, "net.inet6.ip6.norbit_raif": 0, "net.inet6.ip6.rfc6204w3": 0, "net.inet6.ip6.intr_queue_maxlen": 256, "net.inet6.ip6.maxfragsperpacket": 64, "net.inet6.ip6.maxfragbucketsize": 7, "net.inet6.ip6.deembed_scopeid": 1, "net.inet6.ip6.dad_enhanced": 1, "net.inet6.ip6.mcast.loop": 1, "net.inet6.ip6.mcast.maxsocksrc": 128, "net.inet6.ip6.mcast.maxgrpsrc": 512, "net.inet6.ipsec6.def_policy": 1, "net.inet6.ipsec6.esp_trans_deflev": 1, "net.inet6.ipsec6.esp_net_deflev": 1, "net.inet6.ipsec6.ah_trans_deflev": 1, "net.inet6.ipsec6.ah_net_deflev": 1, "net.inet6.ipsec6.ecn": 0, "net.inet6.ipsec6.debug": 0, "net.inet6.ipsec6.filtertunnel": 0, "net.inet6.icmp6.rediraccept": 1, "net.inet6.icmp6.redirtimeout": 600, "net.inet6.icmp6.nd6_prune": 1, "net.inet6.icmp6.nd6_delay": 5, "net.inet6.icmp6.nd6_umaxtries": 3, "net.inet6.icmp6.nd6_mmaxtries": 3, "net.inet6.icmp6.nd6_useloopback": 1, "net.inet6.icmp6.nodeinfo": 3, "net.inet6.icmp6.errppslimit": 100, "net.inet6.icmp6.nd6_maxnudhint": 0, "net.inet6.icmp6.nd6_debug": 0, "net.inet6.icmp6.nd6_maxqueuelen": 1, "net.inet6.icmp6.nodeinfo_oldmcprefix": 1, "net.inet6.icmp6.nd6_onlink_ns_rfc4861": 0, "net.inet6.icmp6.nd6_gctimer": 86400, "net.inet6.mld.use_allow": 1, "net.inet6.mld.v2enable": 1, "net.inet6.mld.v1enable": 1, "net.inet6.mld.gsrdelay": 10, "net.netdump.arp_retries": 3, "net.netdump.retries": 10, "net.netdump.polls": 2000, "net.netdump.path": "", "net.netdump.enabled": 0, "net.netdump.debug": 0, "net.wlan.mesh.maxholding": 2, "net.wlan.mesh.maxretries": 2, "net.wlan.mesh.backofftimeout": 5000, "net.wlan.mesh.confirmtimeout": 40, "net.wlan.mesh.holdingtimeout": 40, "net.wlan.mesh.retrytimeout": 40, "net.wlan.mesh.gateint": 10000, "net.wlan.hwmp.inact": 5000, "net.wlan.hwmp.rootconfint": 2000, "net.wlan.hwmp.rannint": 1000, "net.wlan.hwmp.rootint": 2000, "net.wlan.hwmp.roottimeout": 5000, "net.wlan.hwmp.net_diameter_traversal_time": 510, "net.wlan.hwmp.maxpreq_retries": 30, "net.wlan.hwmp.pathlifetime": 5000, "net.wlan.hwmp.targetonly": 0, "net.wlan.addba_maxtries": 3, "net.wlan.addba_backoff": 10000, "net.wlan.addba_timeout": 250, "net.wlan.recv_bar": 1, "net.wlan.ampdu_age": 500, "net.wlan.debug": 0, "net.wlan.cac_timeout": 60, "net.wlan.nol_timeout": 1800, "net.wlan.devices": "", "net.route.netisr_maxqlen": 256, "net.my_fibnum": 0, "net.add_addr_allfibs": 1, "net.fibs": 1, "net.raw.recvspace": 8192, "net.raw.sendspace": 8192, "net.isr.numthreads": 1, "net.isr.maxprot": 16, "net.isr.defaultqlimit": 256, "net.isr.maxqlimit": 10240, "net.isr.bindthreads": 0, "net.isr.maxthreads": 1, "net.isr.dispatch": "direct", "net.iflib.no_tx_batch": 0, "net.iflib.min_tx_latency": 0, "net.ifdescr_maxlen": 1024, "net.bpf.maxbufsize": 524288, "net.bpf.bufsize": 4096, "net.bpf.optimize_writers": 0, "net.bpf.zerocopy_enable": 0, "net.bpf.maxinsns": 512, "net.accf.unloadable": 0, "debug.minidump": 1, "debug.hwpstate_verify": 0, "debug.hwpstate_verbose": 0, "debug.x86bios.int": 0, "debug.x86bios.call": 0, "debug.fdc.settle": 0, "debug.fdc.spec2": 16, "debug.fdc.spec1": 175, "debug.fdc.retries": 10, "debug.fdc.debugflags": 0, "debug.fdc.fifo": 8, "debug.vesa.shadow_rom": 0, "debug.psm.pkterrthresh": 2, "debug.psm.usecs": 500000, "debug.psm.secs": 0, "debug.psm.errusecs": 0, "debug.psm.errsecs": 2, "debug.psm.hz": 20, "debug.psm.loglevel": 0, "debug.efi_time": 0, "debug.vnode_domainset": "", "debug.vm_lowmem": 0, "debug.dircheck": 0, "debug.dobkgrdwrite": 1, "debug.bigcgs": 0, "debug.softdep.print_threads": 0, "debug.softdep.emptyjblocks": 43, "debug.softdep.flushcache": 0, "debug.softdep.cleanup_failures": 0, "debug.softdep.cleanup_retries": 0, "debug.softdep.cleanup_high_delay": 0, "debug.softdep.cleanup_inorequests": 0, "debug.softdep.cleanup_blkrequests": 0, "debug.softdep.jwait_newblk": 48, "debug.softdep.jwait_inode": 19, "debug.softdep.jwait_freeblks": 0, "debug.softdep.jwait_filepage": 27, "debug.softdep.journal_wait": 94, "debug.softdep.journal_min": 0, "debug.softdep.journal_low": 0, "debug.softdep.jnewblk_rollback": 24, "debug.softdep.jaddref_rollback": 36, "debug.softdep.dir_entry": 21, "debug.softdep.direct_blk_ptrs": 71, "debug.softdep.inode_bitmap": 42, "debug.softdep.indir_blk_ptrs": 0, "debug.softdep.sync_limit_hit": 0, "debug.softdep.ino_limit_hit": 0, "debug.softdep.blk_limit_hit": 0, "debug.softdep.ino_limit_push": 0, "debug.softdep.blk_limit_push": 0, "debug.softdep.worklist_push": 0, "debug.softdep.flush_threads": 1, "debug.softdep.tickdelay": 2, "debug.softdep.max_softdeps": 449688, "debug.softdep.write.jfsync": 0, "debug.softdep.write.jtrunc": 0, "debug.softdep.write.sbdep": 181, "debug.softdep.write.jsegdep": 132, "debug.softdep.write.jseg": 286, "debug.softdep.write.jfreefrag": 0, "debug.softdep.write.jfreeblk": 0, "debug.softdep.write.jnewblk": 0, "debug.softdep.write.jmvref": 0, "debug.softdep.write.jremref": 0, "debug.softdep.write.jaddref": 0, "debug.softdep.write.freedep": 0, "debug.softdep.write.freework": 0, "debug.softdep.write.newdirblk": 0, "debug.softdep.write.dirrem": 0, "debug.softdep.write.mkdir": 0, "debug.softdep.write.diradd": 0, "debug.softdep.write.freefile": 0, "debug.softdep.write.freeblks": 1166, "debug.softdep.write.freefrag": 0, "debug.softdep.write.allocindir": 203, "debug.softdep.write.indirdep": 11, "debug.softdep.write.allocdirect": 1473, "debug.softdep.write.newblk": 0, "debug.softdep.write.bmsafemap": 282, "debug.softdep.write.inodedep": 5259, "debug.softdep.write.pagedep": 258, "debug.softdep.current.jfsync": 0, "debug.softdep.current.jtrunc": 0, "debug.softdep.current.sbdep": 0, "debug.softdep.current.jsegdep": 4, "debug.softdep.current.jseg": 0, "debug.softdep.current.jfreefrag": 0, "debug.softdep.current.jfreeblk": 0, "debug.softdep.current.jnewblk": 3, "debug.softdep.current.jmvref": 0, "debug.softdep.current.jremref": 0, "debug.softdep.current.jaddref": 1, "debug.softdep.current.freedep": 0, "debug.softdep.current.freework": 0, "debug.softdep.current.newdirblk": 0, "debug.softdep.current.dirrem": 0, "debug.softdep.current.mkdir": 0, "debug.softdep.current.diradd": 1, "debug.softdep.current.freefile": 0, "debug.softdep.current.freeblks": 0, "debug.softdep.current.freefrag": 1, "debug.softdep.current.allocindir": 0, "debug.softdep.current.indirdep": 0, "debug.softdep.current.allocdirect": 2, "debug.softdep.current.newblk": 0, "debug.softdep.current.bmsafemap": 1, "debug.softdep.current.inodedep": 1, "debug.softdep.current.pagedep": 1, "debug.softdep.highuse.jfsync": 0, "debug.softdep.highuse.jtrunc": 0, "debug.softdep.highuse.sbdep": 1, "debug.softdep.highuse.jsegdep": 2302, "debug.softdep.highuse.jseg": 27, "debug.softdep.highuse.jfreefrag": 1, "debug.softdep.highuse.jfreeblk": 0, "debug.softdep.highuse.jnewblk": 558, "debug.softdep.highuse.jmvref": 15, "debug.softdep.highuse.jremref": 182, "debug.softdep.highuse.jaddref": 392, "debug.softdep.highuse.freedep": 11, "debug.softdep.highuse.freework": 1300, "debug.softdep.highuse.newdirblk": 30, "debug.softdep.highuse.dirrem": 880, "debug.softdep.highuse.mkdir": 47, "debug.softdep.highuse.diradd": 837, "debug.softdep.highuse.freefile": 879, "debug.softdep.highuse.freeblks": 878, "debug.softdep.highuse.freefrag": 55, "debug.softdep.highuse.allocindir": 127, "debug.softdep.highuse.indirdep": 10, "debug.softdep.highuse.allocdirect": 1229, "debug.softdep.highuse.newblk": 3, "debug.softdep.highuse.bmsafemap": 6, "debug.softdep.highuse.inodedep": 884, "debug.softdep.highuse.pagedep": 34, "debug.softdep.total.jfsync": 0, "debug.softdep.total.jtrunc": 0, "debug.softdep.total.sbdep": 181, "debug.softdep.total.jsegdep": 6064, "debug.softdep.total.jseg": 286, "debug.softdep.total.jfreefrag": 154, "debug.softdep.total.jfreeblk": 0, "debug.softdep.total.jnewblk": 2433, "debug.softdep.total.jmvref": 15, "debug.softdep.total.jremref": 1804, "debug.softdep.total.jaddref": 1673, "debug.softdep.total.freedep": 11, "debug.softdep.total.freework": 1683, "debug.softdep.total.newdirblk": 68, "debug.softdep.total.dirrem": 1656, "debug.softdep.total.mkdir": 136, "debug.softdep.total.diradd": 1537, "debug.softdep.total.freefile": 1337, "debug.softdep.total.freeblks": 1258, "debug.softdep.total.freefrag": 154, "debug.softdep.total.allocindir": 206, "debug.softdep.total.indirdep": 11, "debug.softdep.total.allocdirect": 2227, "debug.softdep.total.newblk": 2434, "debug.softdep.total.bmsafemap": 1351, "debug.softdep.total.inodedep": 2770, "debug.softdep.total.pagedep": 304, "debug.collectsnapstats": 0, "debug.snapdebug": 0, "debug.dopersistence": 0, "debug.fsckcmds": 0, "debug.crypto_timing": 0, "debug.nlm_debug": 0, "debug.if_tun_debug": 0, "debug.vn_io_faults": 1724, "debug.vn_io_fault_prefault": 0, "debug.vn_io_fault_enable": 1, "debug.max_vnlru_free": 10000, "debug.vnlru_nowhere": 0, "debug.rush_requests": 0, "debug.disablefullpath": 0, "debug.disablecwd": 0, "debug.vfscache": 1, "debug.numcachehv": 275, "debug.numcache": 2269, "debug.numneg": 187, "debug.nchash": 131071, "debug.devfs_iosize_max_clamp": 1, "debug.iosize_max_clamp": 0, "debug.clock_do_io": 0, "debug.clock_show_io": 0, "debug.rman_debug": 0, "debug.lock.delay.restrict_starvation": 0, "debug.lock.delay.starvation_limit": 131072, "debug.kdb.alt_break_to_debugger": 0, "debug.kdb.break_to_debugger": 0, "debug.kdb.stack_overflow": 0, "debug.kdb.trap_code": 0, "debug.kdb.trap": 0, "debug.kdb.panic": 0, "debug.kdb.enter": 0, "debug.kdb.current": "", "debug.kdb.available": "", "debug.bioq_batchsize": 0, "debug.clocktime": 0, "debug.obsolete_panic": 0, "debug.umtx.robust_faults_verbose": 1, "debug.umtx.umtx_pi_allocated": 0, "debug.allow_insane_settime": 0, "debug.sx.delay_max": 512, "debug.sx.delay_base": 1, "debug.sx.loops": 10000, "debug.sx.retries": 10, "debug.ncores": 5, "debug.trace_all_panics": 1, "debug.trace_on_panic": 1, "debug.debugger_on_trap": 0, "debug.debugger_on_panic": 1, "debug.rwlock.delay_max": 512, "debug.rwlock.delay_base": 1, "debug.rwlock.loops": 10000, "debug.rwlock.retry": 10, "debug.osd": 0, "debug.mtx_spin.delay_max": 512, "debug.mtx_spin.delay_base": 1, "debug.mtx.delay_max": 512, "debug.mtx.delay_base": 1, "debug.adaptive_machine_arch": 1, "debug.sizeof.namecache": 72, "debug.sizeof.devstat": 288, "debug.sizeof.pcb": 320, "debug.sizeof.kinfo_proc": 1088, "debug.sizeof.buf": 568, "debug.sizeof.bio": 376, "debug.sizeof.proc": 1328, "debug.sizeof.vnode": 480, "debug.sizeof.g_bioq": 56, "debug.sizeof.g_consumer": 96, "debug.sizeof.g_provider": 136, "debug.sizeof.g_geom": 184, "debug.sizeof.g_class": 176, "debug.sizeof.cdev_priv": 376, "debug.sizeof.cdev": 288, "debug.fail_point.status_nlm_deny_grant": "off\nsleeping_thread_stacks = {\n},\nsleeping_thread_count = 0,\npaused_thread_stacks = {\n},\npaused_thread_count = 0\n", "debug.fail_point.nlm_deny_grant": "off", "debug.fail_point.status_fill_kinfo_vnode__random_path": "off\nsleeping_thread_stacks = {\n},\nsleeping_thread_count = 0,\npaused_thread_stacks = {\n},\npaused_thread_count = 0\n", "debug.fail_point.fill_kinfo_vnode__random_path": "off", "debug.fail_point.status_sysctl_running": "off\nsleeping_thread_stacks = {\n},\nsleeping_thread_count = 0,\npaused_thread_stacks = {\n},\npaused_thread_count = 0\n", "debug.fail_point.sysctl_running": "off", "debug.fail_point.status_test_fail_point": "off\nsleeping_thread_stacks = {\n},\nsleeping_thread_count = 0,\npaused_thread_stacks = {\n},\npaused_thread_count = 0\n", "debug.fail_point.test_fail_point": "off", "debug.fail_point.test_trigger_fail_point": "", "debug.fail_point.status_nfscl_force_fileid_warning": "off\nsleeping_thread_stacks = {\n},\nsleeping_thread_count = 0,\npaused_thread_stacks = {\n},\npaused_thread_count = 0\n", "debug.fail_point.nfscl_force_fileid_warning": "off", "debug.cpufreq.verbose": 0, "debug.cpufreq.lowest": 0, "debug.bootverbose": 0, "debug.boothowto": 0, "debug.elf32_legacy_coredump": 0, "debug.elf64_legacy_coredump": 0, "debug.uart_force_poll": 0, "debug.uart_poll_freq": 50, "debug.mddebug": 0, "debug.iwi": 0, "debug.ipw": 0, "debug.acpi.resume_beep": 0, "debug.acpi.batt.batt_sleep_ms": 0, "debug.acpi.ec.timeout": 750, "debug.acpi.ec.polled": 0, "debug.acpi.ec.burst": 0, "debug.acpi.cpu_unordered": 0, "debug.acpi.suspend_bounce": 0, "debug.acpi.default_register_width": 1, "debug.acpi.interpreter_slack": 1, "debug.acpi.enable_debug_objects": 0, "debug.acpi.acpi_ca_version": 20181213, "debug.acpi.max_threads": 3, "debug.acpi.tasks_hiwater": 0, "debug.acpi.max_tasks": 1024, "hw.machine": "amd64", "hw.model": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "hw.ncpu": 1, "hw.byteorder": 1234, "hw.physmem": 2107092992, "hw.usermem": 1991008256, "hw.pagesize": 4096, "hw.floatingpoint": 1, "hw.machine_arch": "amd64", "hw.realmem": 2147483648, "hw.acpi.acline": 1, "hw.acpi.cpu.cx_lowest": "C1", "hw.acpi.reset_video": 0, "hw.acpi.handle_reboot": 1, "hw.acpi.disable_on_reboot": 0, "hw.acpi.verbose": 0, "hw.acpi.s4bios": 0, "hw.acpi.sleep_delay": 1, "hw.acpi.suspend_state": "NONE", "hw.acpi.standby_state": "S1", "hw.acpi.lid_switch_state": "NONE", "hw.acpi.sleep_button_state": "S1", "hw.acpi.power_button_state": "S5", "hw.acpi.supported_sleep_state": "S1 S4 S5", "hw.mca.cmc_throttle": 60, "hw.mca.force_scan": 0, "hw.mca.interval": 3600, "hw.mca.count": 0, "hw.mca.erratum383": 0, "hw.mca.intel6h_HSD131": 0, "hw.mca.amd10h_L1TP": 1, "hw.mca.enabled": 1, "hw.apic.timer_tsc_deadline": 1, "hw.apic.eoi_suppression": 0, "hw.apic.x2apic_mode": 1, "hw.apic.enable_extint": 0, "hw.intrs": "irq0: attimer0:3 @cpu0(domain0): 0\nirq1: atkbd0:1 @cpu0(domain0): 348\nirq3::5 @cpu0(domain0): 0\nirq4::7 @cpu0(domain0): 0\nirq5::9 @cpu0(domain0): 0\nirq6::11 @cpu0(domain0): 0\nirq7::13 @cpu0(domain0): 0\nirq8: atrtc0:15 @cpu0(domain0): 0\nirq9: acpi0:17 @cpu0(domain0): 0\nirq10::19 @cpu0(domain0): 0\nirq11::21 @cpu0(domain0): 0\nirq12: psm0:23 @cpu0(domain0): 0\nirq13::25 @cpu0(domain0): 0\nirq14: ata0:27 @cpu0(domain0): 0\nirq15: ata1:29 @cpu0(domain0): 5977\nirq16: pcm0:31 @cpu0(domain0): 0\nirq17: mpt0 ehci0:33 @cpu0(domain0): 6701\nirq18: uhci0:35 @cpu0(domain0): 30871\nirq19: em0:irq0:37 @cpu0(domain0): 31369\nirq20::39 @cpu0(domain0): 0\nirq21::41 @cpu0(domain0): 0\nirq22::43 @cpu0(domain0): 0\nirq23::45 @cpu0(domain0): 0\nirq256: pcib3:48 @cpu0(domain0): 0\nirq257: pcib4:50 @cpu0(domain0): 0\nirq258: pcib5:52 @cpu0(domain0): 0\nirq259: pcib6:54 @cpu0(domain0): 0\nirq260: pcib7:56 @cpu0(domain0): 0\nirq261: pcib8:58 @cpu0(domain0): 0\nirq262: pcib9:60 @cpu0(domain0): 0\nirq263: pcib10:62 @cpu0(domain0): 0\nirq264: pcib11:64 @cpu0(domain0): 0\nirq265: pcib12:66 @cpu0(domain0): 0\nirq266: pcib13:68 @cpu0(domain0): 0\nirq267: pcib14:70 @cpu0(domain0): 0\nirq268: pcib15:72 @cpu0(domain0): 0\nirq269: pcib16:74 @cpu0(domain0): 0\nirq270: pcib17:76 @cpu0(domain0): 0\nirq271: pcib18:78 @cpu0(domain0): 0\nirq272: pcib19:80 @cpu0(domain0): 0\nirq273: pcib20:82 @cpu0(domain0): 0\nirq274: pcib21:84 @cpu0(domain0): 0\nirq275: pcib22:86 @cpu0(domain0): 0\nirq276: pcib23:88 @cpu0(domain0): 0\nirq277: pcib24:90 @cpu0(domain0): 0\nirq278: pcib25:92 @cpu0(domain0): 0\nirq279: pcib26:94 @cpu0(domain0): 0\nirq280: pcib27:96 @cpu0(domain0): 0\nirq281: pcib28:98 @cpu0(domain0): 0\nirq282: pcib29:100 @cpu0(domain0): 0\nirq283: pcib30:102 @cpu0(domain0): 0\nirq284: pcib31:104 @cpu0(domain0): 0\nirq285: pcib32:106 @cpu0(domain0): 0\nirq286: pcib33:108 @cpu0(domain0): 0\nirq287: pcib34:110 @cpu0(domain0): 0\n", "hw.intrbalance": 0, "hw.hv_vendor": "VMwareVMware", "hw.clockrate": 2399, "hw.via_feature_xcrypt": 0, "hw.via_feature_rng": 0, "hw.mds_disable": 0, "hw.mds_disable_state": "inactive", "hw.spec_store_bypass_disable": 0, "hw.spec_store_bypass_disable_active": 0, "hw.ibrs_disable": 1, "hw.ibrs_active": 0, "hw.busdma.zone0.domain": 0, "hw.busdma.zone0.alignment": 4096, "hw.busdma.zone0.lowaddr": "0xffffffff", "hw.busdma.zone0.total_deferred": 0, "hw.busdma.zone0.total_bounced": 0, "hw.busdma.zone0.active_bpages": 0, "hw.busdma.zone0.reserved_bpages": 0, "hw.busdma.zone0.free_bpages": 64, "hw.busdma.zone0.total_bpages": 64, "hw.busdma.total_bpages": 64, "hw.dmar.timeout": 1000000, "hw.dmar.batch_coalesce": 100, "hw.dmar.tbl_pagecnt": 0, "hw.vmbus.pin_evttask": 1, "hw.hvtimesync.sample_verbose": 0, "hw.hvtimesync.sample_thresh": 100, "hw.hvtimesync.ignore_sync": 0, "hw.storvsc.chan_cnt": 0, "hw.storvsc.max_io": 512, "hw.storvsc.ringbuffer_size": 262144, "hw.storvsc.use_pim_unmapped": 1, "hw.storvsc.use_win8ext_flags": 1, "hw.hn.vf_xpnt_attwait": 2, "hw.hn.vf_xpnt_accbpf": 0, "hw.hn.vf_transparent": 1, "hw.hn.vfmap": "", "hw.hn.vflist": "", "hw.hn.tx_agg_pkts": -1, "hw.hn.tx_agg_size": -1, "hw.hn.lro_mbufq_depth": 0, "hw.hn.tx_swq_depth": 0, "hw.hn.tx_ring_cnt": 0, "hw.hn.chan_cnt": 0, "hw.hn.use_if_start": 0, "hw.hn.use_txdesc_bufring": 1, "hw.hn.tx_taskq_mode": 0, "hw.hn.tx_taskq_cnt": 1, "hw.hn.lro_entry_count": 128, "hw.hn.direct_tx_size": 128, "hw.hn.tx_chimney_size": 0, "hw.hn.tso_maxlen": 65535, "hw.hn.udpcs_fixup_mtu": 1420, "hw.hn.udpcs_fixup": 0, "hw.hn.enable_udp6cs": 1, "hw.hn.enable_udp4cs": 1, "hw.hn.trust_hostip": 1, "hw.hn.trust_hostudp": 1, "hw.hn.trust_hosttcp": 1, "hw.iavf.tx_itr": 122, "hw.iavf.rx_itr": 62, "hw.iavf.shared_debug_mask": 0, "hw.iavf.core_debug_mask": 0, "hw.iavf.enable_head_writeback": 0, "hw.ixl.tx_itr": 122, "hw.ixl.rx_itr": 62, "hw.ixl.shared_debug_mask": 0, "hw.ixl.core_debug_mask": 0, "hw.ixl.enable_head_writeback": 1, "hw.ixl.enable_vf_loopback": 1, "hw.ixl.i2c_access_method": 0, "hw.ixl.enable_tx_fc_filter": 1, "hw.bxe.udp_rss": 0, "hw.bxe.autogreeen": 0, "hw.bxe.mrrs": -1, "hw.bxe.max_aggregation_size": 0, "hw.bxe.rx_budget": -1, "hw.bxe.hc_tx_ticks": 50, "hw.bxe.hc_rx_ticks": 25, "hw.bxe.max_rx_bufs": 0, "hw.bxe.queue_count": 4, "hw.bxe.interrupt_mode": 2, "hw.bxe.debug": 0, "hw.psm.elantech_support": 0, "hw.psm.trackpoint_support": 0, "hw.psm.synaptics_support": 0, "hw.psm.tap_timeout": 125000, "hw.psm.tap_threshold": 25, "hw.psm.tap_enabled": -1, "hw.lower_amd64_sharedpage": 0, "hw.instruction_sse": 1, "hw.lazy_fpu_switch": 0, "hw.bus.devctl_queue": 1000, "hw.bus.devctl_disable": 0, "hw.pagesizes": "4096 2097152 0", "hw.availpages": 514427, "hw.intr_storm_threshold": 1000, "hw.xbd.xbd_enable_indirect": 1, "hw.wi.debug": 0, "hw.wi.txerate": 0, "hw.watchdog.wd_last_u_secs": 0, "hw.watchdog.wd_last_u": 0, "hw.vtnet.rx_process_limit": 512, "hw.vtnet.mq_max_pairs": 8, "hw.vtnet.mq_disable": 0, "hw.vtnet.lro_disable": 0, "hw.vtnet.tso_disable": 0, "hw.vtnet.csum_disable": 0, "hw.usb.wmt.debug": 0, "hw.usb.uhid.debug": 0, "hw.usb.ukbd.pollrate": 0, "hw.usb.ukbd.no_leds": 0, "hw.usb.ukbd.debug": 0, "hw.usb.full_ddesc": 0, "hw.usb.no_cs_fail": 0, "hw.usb.proc.debug": 0, "hw.usb.disable_port_power": 0, "hw.usb.disable_enumeration": 0, "hw.usb.power_timeout": 30, "hw.usb.uhub.debug": 0, "hw.usb.ugen.debug": 0, "hw.usb.usb_lang_mask": 255, "hw.usb.usb_lang_id": 9, "hw.usb.template": -1, "hw.usb.dev.debug": 0, "hw.usb.timings.extra_power_up_time": 20, "hw.usb.timings.resume_recovery": 50, "hw.usb.timings.resume_wait": 50, "hw.usb.timings.resume_delay": 250, "hw.usb.timings.set_address_settle": 10, "hw.usb.timings.port_resume_delay": 40, "hw.usb.timings.port_powerup_delay": 300, "hw.usb.timings.port_reset_recovery": 250, "hw.usb.timings.port_root_reset_delay": 200, "hw.usb.timings.port_reset_delay": 50, "hw.usb.debug": 0, "hw.usb.umass.throttle": 0, "hw.usb.umass.debug": 0, "hw.usb.no_shutdown_wait": 0, "hw.usb.no_suspend_wait": 0, "hw.usb.no_boot_wait": 0, "hw.usb.ctrl.debug": 0, "hw.usb.xhci.ctlstep": 0, "hw.usb.xhci.dma32": 0, "hw.usb.xhci.use_polling": 0, "hw.usb.xhci.xhci_port_route": 0, "hw.usb.xhci.debug": 0, "hw.usb.xhci.streams": 0, "hw.usb.uhci.loop": 0, "hw.usb.uhci.debug": 0, "hw.usb.ohci.debug": 0, "hw.usb.ehci.lostintrbug": 0, "hw.usb.ehci.iaadbug": 0, "hw.usb.ehci.no_hs": 0, "hw.usb.ehci.debug": 0, "hw.broken_txfifo": 0, "hw.syscons.sc_no_suspend_vtswitch": 0, "hw.syscons.kbd_debug": 1, "hw.syscons.kbd_reboot": 1, "hw.syscons.bell": 1, "hw.syscons.saver.keybonly": 1, "hw.midi.seq.debug": 0, "hw.midi.instroff": 0, "hw.midi.dumpraw": 0, "hw.midi.debug": 0, "hw.midi.stat.verbose": 0, "hw.snd.maxautovchans": 16, "hw.snd.default_unit": 0, "hw.snd.version": "2009061500/amd64", "hw.snd.default_auto": 1, "hw.snd.verbose": 0, "hw.snd.vpc_mixer_bypass": 1, "hw.snd.feeder_rate_quality": 1, "hw.snd.feeder_rate_round": 25, "hw.snd.feeder_rate_max": 2016000, "hw.snd.feeder_rate_min": 1, "hw.snd.feeder_rate_polyphase_max": 183040, "hw.snd.feeder_rate_presets": "100:8:0.85 100:36:0.92 100:164:0.97", "hw.snd.feeder_eq_exact_rate": 0, "hw.snd.feeder_eq_presets": "PEQ:16000,0.2500,62,0.2500:-9,9,1.0:44100,48000,88200,96000,176400,192000", "hw.snd.basename_clone": 1, "hw.snd.compat_linux_mmap": 0, "hw.snd.syncdelay": -1, "hw.snd.usefrags": 0, "hw.snd.vpc_reset": 0, "hw.snd.vpc_0db": 45, "hw.snd.vpc_autoreset": 1, "hw.snd.timeout": 5, "hw.snd.latency_profile": 1, "hw.snd.latency": 2, "hw.snd.report_soft_matrix": 1, "hw.snd.report_soft_formats": 1, "hw.sdhci.enable_msi": 1, "hw.sdhci.quirk_set": 0, "hw.sdhci.quirk_clear": 0, "hw.sdhci.debug": 0, "hw.puc.msi_disable": 0, "hw.pci.host_mem_start": 2147483648, "hw.pci.mcfg": 1, "hw.pci.default_vgapci_unit": 0, "hw.pci.enable_pcie_hp": 1, "hw.pci.clear_pcib": 0, "hw.pci.iov_max_config": 1048576, "hw.pci.clear_aer_on_attach": 0, "hw.pci.enable_ari": 1, "hw.pci.clear_buses": 0, "hw.pci.clear_bars": 0, "hw.pci.usb_early_takeover": 1, "hw.pci.honor_msi_blacklist": 1, "hw.pci.msix_rewrite_table": 0, "hw.pci.enable_msix": 1, "hw.pci.enable_msi": 1, "hw.pci.do_power_suspend": 1, "hw.pci.do_power_resume": 1, "hw.pci.do_power_nodriver": 0, "hw.pci.realloc_bars": 0, "hw.pci.enable_io_modes": 1, "hw.pcic.pd6722_vsense": 1, "hw.pcic.intr_mask": 57016, "hw.cbb.debug": 0, "hw.cbb.start_32_io": 4096, "hw.cbb.start_16_io": 256, "hw.cbb.start_memory": 2281701376, "hw.pccard.cis_debug": 0, "hw.pccard.debug": 0, "hw.nvme.verbose_cmd_dump": 0, "hw.nvme.use_nvd": 1, "hw.nvd.delete_max": 1073741824, "hw.mwl.rxdmalow": 3, "hw.mwl.rxquota": 640, "hw.mwl.txcoalesce": 8, "hw.mwl.txbuf": 256, "hw.mwl.rxbuf": 640, "hw.mwl.rxdesc": 256, "hw.mmcsd.cache": 1, "hw.mmc.debug": 0, "hw.mfi.mrsas_enable": 0, "hw.mfi.msi": 1, "hw.mfi.cmd_timeout": 30, "hw.mfi.polled_cmd_timeout": 60, "hw.mfi.detect_jbod_change": 1, "hw.mfi.max_cmds": 128, "hw.mfi.event_class": 0, "hw.mfi.event_locale": 65535, "hw.malo.pci.msi_disable": 0, "hw.malo.txbuf": 256, "hw.malo.rxquota": 256, "hw.malo.rxbuf": 256, "hw.malo.txcoalesce": 8, "hw.kbd.keymap_restrict_change": 0, "hw.ix.enable_rss": 1, "hw.ix.enable_fdir": 0, "hw.ix.unsupported_sfp": 0, "hw.ix.enable_msix": 1, "hw.ix.advertise_speed": 0, "hw.ix.flow_control": 3, "hw.ix.max_interrupt_rate": 31250, "hw.em.max_interrupt_rate": 8000, "hw.em.eee_setting": 1, "hw.em.rx_process_limit": 100, "hw.em.sbp": 1, "hw.em.smart_pwr_down": 0, "hw.em.rx_abs_int_delay": 66, "hw.em.tx_abs_int_delay": 66, "hw.em.rx_int_delay": 0, "hw.em.tx_int_delay": 66, "hw.em.disable_crc_stripping": 0, "hw.cardbus.cis_debug": 0, "hw.cardbus.debug": 0, "hw.bge.allow_asf": 1, "hw.bce.rx_ticks": 18, "hw.bce.rx_ticks_int": 18, "hw.bce.rx_quick_cons_trip": 6, "hw.bce.rx_quick_cons_trip_int": 6, "hw.bce.tx_ticks": 80, "hw.bce.tx_ticks_int": 80, "hw.bce.tx_quick_cons_trip": 20, "hw.bce.tx_quick_cons_trip_int": 20, "hw.bce.strict_rx_mtu": 0, "hw.bce.hdr_split": 1, "hw.bce.tx_pages": 2, "hw.bce.rx_pages": 2, "hw.bce.msi_enable": 1, "hw.bce.tso_enable": 1, "hw.bce.verbose": 1, "hw.ath.bstuck": 4, "hw.ath.txbuf_mgmt": 32, "hw.ath.txbuf": 512, "hw.ath.rxbuf": 512, "hw.ath.anical": 100, "hw.ath.resetcal": 1200, "hw.ath.shortcal": 100, "hw.ath.longcal": 30, "hw.ata.ata_dma_check_80pin": 1, "hw.an.an_cache_iponly": 1, "hw.an.an_cache_mcastonly": 0, "hw.an.an_cache_mode": "dbm", "hw.an.an_dump": "off", "hw.amr.force_sg32": 0, "hw.aac.enable_msi": 1, "machdep.tsc_freq": 2399971000, "machdep.disable_tsc_calibration": 0, "machdep.disable_tsc": 0, "machdep.disable_msix_migration": 0, "machdep.num_msi_irqs": 512, "machdep.hyperthreading_allowed": 1, "machdep.disable_mtrrs": 0, "machdep.kdb_on_nmi": 1, "machdep.nmi_is_broadcast": 1, "machdep.panic_on_nmi": 1, "machdep.idle": "acpi", "machdep.idle_available": "spin, hlt, acpi", "machdep.idle_apl31": 0, "machdep.idle_mwait": 1, "machdep.i8254_freq": 1193182, "machdep.acpi_root": 1010192, "machdep.vga_aspect_scale": 100, "machdep.acpi_timer_freq": 3579545, "machdep.syscall_ret_flush_l1d": 0, "machdep.nmi_flush_l1d_sw": 0, "machdep.uprintf_signal": 0, "machdep.prot_fault_translation": 0, "machdep.max_ldt_segment": 512, "machdep.nkpt": 53, "machdep.dump_retry_count": 5, "machdep.smap": "\nSMAP type=01, xattr=00, base=0000000000000000, len=000000000009f800\nSMAP type=02, xattr=00, base=000000000009f800, len=0000000000000800\nSMAP type=02, xattr=00, base=00000000000dc000, len=0000000000024000\nSMAP type=01, xattr=00, base=0000000000100000, len=000000007fde0000\nSMAP type=03, xattr=00, base=000000007fee0000, len=000000000001f000\nSMAP type=04, xattr=00, base=000000007feff000, len=0000000000001000\nSMAP type=01, xattr=00, base=000000007ff00000, len=0000000000100000\nSMAP type=02, xattr=00, base=00000000f0000000, len=0000000008000000\nSMAP type=02, xattr=00, base=00000000fec00000, len=0000000000010000\nSMAP type=02, xattr=00, base=00000000fee00000, len=0000000000001000\nSMAP type=02, xattr=00, base=00000000fffe0000, len=0000000000020000", "machdep.bootmethod": "BIOS", "machdep.disable_rtc_set": 0, "machdep.wall_cmos_clock": 0, "machdep.adjkerntz": 0, "machdep.rtc_save_period": 1800, "machdep.enable_panic_key": 0, "machdep.efi_rt_handle_faults": 1, "user.cs_path": "/usr/bin:/bin:/usr/sbin:/sbin", "user.bc_base_max": 99, "user.bc_dim_max": 2048, "user.bc_scale_max": 99, "user.bc_string_max": 1000, "user.coll_weights_max": 10, "user.expr_nest_max": 32, "user.line_max": 2048, "user.re_dup_max": 255, "user.posix2_version": 199212, "user.posix2_c_bind": 0, "user.posix2_c_dev": 0, "user.posix2_char_term": 0, "user.posix2_fort_dev": 0, "user.posix2_fort_run": 0, "user.posix2_localedef": 0, "user.posix2_sw_dev": 0, "user.posix2_upe": 0, "user.stream_max": 20, "user.tzname_max": 255, "p1003_1b.asynchronous_io": 200112, "p1003_1b.mapped_files": 200112, "p1003_1b.memlock": 0, "p1003_1b.memlock_range": 0, "p1003_1b.memory_protection": 0, "p1003_1b.message_passing": 0, "p1003_1b.prioritized_io": 0, "p1003_1b.priority_scheduling": 200112, "p1003_1b.realtime_signals": 200112, "p1003_1b.semaphores": 0, "p1003_1b.fsync": 200112, "p1003_1b.shared_memory_objects": 200112, "p1003_1b.synchronized_io": 0, "p1003_1b.timers": 200112, "p1003_1b.aio_listio_max": 256, "p1003_1b.aio_max": 1024, "p1003_1b.aio_prio_delta_max": 0, "p1003_1b.delaytimer_max": 2147483647, "p1003_1b.mq_open_max": 0, "p1003_1b.pagesize": 4096, "p1003_1b.rtsig_max": 62, "p1003_1b.sem_nsems_max": 0, "p1003_1b.sem_value_max": 0, "p1003_1b.sigqueue_max": 128, "p1003_1b.timer_max": 32, "hptmv.status": "RocketRAID 18xx SATA Controller driver Version v1.16\n", "dev.uhid.1.%parent": "uhub1", "dev.uhid.1.%pnpinfo": "vendor=0x0e0f product=0x0003 devclass=0x00 devsubclass=0x00 devproto=0x00 sernum=\"\" release=0x0102 mode=host intclass=0x03 intsubclass=0x00 intprotocol=0x00", "dev.uhid.1.%location": "bus=0 hubaddr=1 port=1 devaddr=2 interface=1 ugen=ugen0.2", "dev.uhid.1.%driver": "uhid", "dev.uhid.1.%desc": "VMware", "dev.uhid.0.%parent": "uhub1", "dev.uhid.0.%pnpinfo": "vendor=0x0e0f product=0x0003 devclass=0x00 devsubclass=0x00 devproto=0x00 sernum=\"\" release=0x0102 mode=host intclass=0x03 intsubclass=0x00 intprotocol=0x00", "dev.uhid.0.%location": "bus=0 hubaddr=1 port=1 devaddr=2 interface=0 ugen=ugen0.2", "dev.uhid.0.%driver": "uhid", "dev.uhid.0.%desc": "VMware", "dev.uhid.%parent": "", "dev.smbus.0.%parent": "intsmb0", "dev.smbus.0.%pnpinfo": "", "dev.smbus.0.%location": "", "dev.smbus.0.%driver": "smbus", "dev.smbus.0.%desc": "System Management Bus", "dev.smbus.%parent": "", "dev.intsmb.0.%parent": "pci0", "dev.intsmb.0.%pnpinfo": "vendor=0x8086 device=0x7113 subvendor=0x15ad subdevice=0x1976 class=0x068000", "dev.intsmb.0.%location": "slot=7 function=3 dbsf=pci0:0:7:3 handle=\\_SB_.PCI0.PWR_", "dev.intsmb.0.%driver": "intsmb", "dev.intsmb.0.%desc": "Intel PIIX4 SMBUS Interface", "dev.intsmb.%parent": "", "dev.uhub.2.disable_port_power": 0, "dev.uhub.2.disable_enumeration": 0, "dev.uhub.2.%parent": "uhub1", "dev.uhub.2.%pnpinfo": "vendor=0x0e0f product=0x0002 devclass=0x09 devsubclass=0x00 devproto=0x00 sernum=\"\" release=0x0100 mode=host intclass=0x09 intsubclass=0x00 intprotocol=0x00", "dev.uhub.2.%location": "bus=0 hubaddr=1 port=2 devaddr=3 interface=0 ugen=ugen0.3", "dev.uhub.2.%driver": "uhub", "dev.uhub.2.%desc": "VMware Virtual USB Hub", "dev.uhub.1.disable_port_power": 0, "dev.uhub.1.disable_enumeration": 0, "dev.uhub.1.%parent": "usbus0", "dev.uhub.1.%pnpinfo": "", "dev.uhub.1.%location": "", "dev.uhub.1.%driver": "uhub", "dev.uhub.1.%desc": "(0x15ad) UHCI root HUB, class 9/0, rev 1.00/1.00, addr 1", "dev.uhub.0.disable_port_power": 0, "dev.uhub.0.disable_enumeration": 0, "dev.uhub.0.%parent": "usbus1", "dev.uhub.0.%pnpinfo": "", "dev.uhub.0.%location": "", "dev.uhub.0.%driver": "uhub", "dev.uhub.0.%desc": "(0x15ad) EHCI root HUB, class 9/0, rev 2.00/1.00, addr 1", "dev.uhub.%parent": "", "dev.vga.0.%parent": "isa0", "dev.vga.0.%pnpinfo": "pnpid=PNP0900", "dev.vga.0.%location": "", "dev.vga.0.%driver": "vga", "dev.vga.0.%desc": "Generic ISA VGA", "dev.vga.%parent": "", "dev.orm.0.%parent": "isa0", "dev.orm.0.%pnpinfo": "pnpid=ORM0000", "dev.orm.0.%location": "", "dev.orm.0.%driver": "orm", "dev.orm.0.%desc": "ISA Option ROMs", "dev.orm.%parent": "", "dev.apic.0.%parent": "nexus0", "dev.apic.0.%pnpinfo": "", "dev.apic.0.%location": "", "dev.apic.0.%driver": "apic", "dev.apic.0.%desc": "APIC resources", "dev.apic.%parent": "", "dev.acpi_syscontainer.0.%parent": "acpi0", "dev.acpi_syscontainer.0.%pnpinfo": "_HID=PNP0A05 _UID=0", "dev.acpi_syscontainer.0.%location": "handle=\\_SB_.PCI0.ISA_.SIO_", "dev.acpi_syscontainer.0.%driver": "acpi_syscontainer", "dev.acpi_syscontainer.0.%desc": "System Container", "dev.acpi_syscontainer.%parent": "", "dev.psm.0.%parent": "atkbdc0", "dev.psm.0.%pnpinfo": "", "dev.psm.0.%location": "", "dev.psm.0.%driver": "psm", "dev.psm.0.%desc": "PS/2 Mouse", "dev.psm.%parent": "", "dev.psmcpnp.0.%parent": "acpi0", "dev.psmcpnp.0.%pnpinfo": "_HID=VMW0003 _UID=0", "dev.psmcpnp.0.%location": "handle=\\_SB_.PCI0.ISA_.MOUS", "dev.psmcpnp.0.%driver": "psmcpnp", "dev.psmcpnp.0.%desc": "PS/2 mouse port", "dev.psmcpnp.%parent": "", "dev.atkbd.0.%parent": "atkbdc0", "dev.atkbd.0.%pnpinfo": "", "dev.atkbd.0.%location": "", "dev.atkbd.0.%driver": "atkbd", "dev.atkbd.0.%desc": "AT Keyboard", "dev.atkbd.%parent": "", "dev.atkbdc.0.%parent": "acpi0", "dev.atkbdc.0.%pnpinfo": "_HID=PNP0303 _UID=0", "dev.atkbdc.0.%location": "handle=\\_SB_.PCI0.ISA_.KBC_", "dev.atkbdc.0.%driver": "atkbdc", "dev.atkbdc.0.%desc": "Keyboard controller (i8042)", "dev.atkbdc.%parent": "", "dev.atdma.0.%parent": "acpi0", "dev.atdma.0.%pnpinfo": "_HID=PNP0200 _UID=0", "dev.atdma.0.%location": "handle=\\_SB_.PCI0.ISA_.DMAC", "dev.atdma.0.%driver": "atdma", "dev.atdma.0.%desc": "AT DMA controller", "dev.atdma.%parent": "", "dev.acpi_acad.0.%parent": "acpi0", "dev.acpi_acad.0.%pnpinfo": "_HID=ACPI0003 _UID=1", "dev.acpi_acad.0.%location": "handle=\\_SB_.ACAD", "dev.acpi_acad.0.%driver": "acpi_acad", "dev.acpi_acad.0.%desc": "AC Adapter", "dev.acpi_acad.%parent": "", "dev.ehci.0.wake": 0, "dev.ehci.0.%parent": "pci2", "dev.ehci.0.%pnpinfo": "vendor=0x15ad device=0x0770 subvendor=0x15ad subdevice=0x0770 class=0x0c0320", "dev.ehci.0.%location": "slot=3 function=0 dbsf=pci0:2:3:0 handle=\\_SB_.PCI0.P2P0.S4F0", "dev.ehci.0.%driver": "ehci", "dev.ehci.0.%desc": "EHCI (generic) USB 2.0 controller", "dev.ehci.%parent": "", "dev.pcm.0.wake": 0, "dev.pcm.0.bitperfect": 0, "dev.pcm.0.buffersize": 4096, "dev.pcm.0.polling": 0, "dev.pcm.0.latency_timer": 64, "dev.pcm.0.rec.vchanformat": "s16le:2.0", "dev.pcm.0.rec.vchanrate": 48000, "dev.pcm.0.rec.vchanmode": "fixed", "dev.pcm.0.rec.vchans": 1, "dev.pcm.0.play.vchanformat": "s16le:2.0", "dev.pcm.0.play.vchanrate": 48000, "dev.pcm.0.play.vchanmode": "fixed", "dev.pcm.0.play.vchans": 1, "dev.pcm.0.%parent": "pci2", "dev.pcm.0.%pnpinfo": "vendor=0x1274 device=0x1371 subvendor=0x1274 subdevice=0x1371 class=0x040100", "dev.pcm.0.%location": "slot=2 function=0 dbsf=pci0:2:2:0 handle=\\_SB_.PCI0.P2P0.S3F0", "dev.pcm.0.%driver": "pcm", "dev.pcm.0.%desc": "AudioPCI ES1371-A", "dev.pcm.%parent": "", "dev.em.0.wake": 0, "dev.em.0.interrupts.rx_overrun": 0, "dev.em.0.interrupts.rx_desc_min_thresh": 0, "dev.em.0.interrupts.tx_queue_min_thresh": 0, "dev.em.0.interrupts.tx_queue_empty": 0, "dev.em.0.interrupts.tx_abs_timer": 0, "dev.em.0.interrupts.tx_pkt_timer": 0, "dev.em.0.interrupts.rx_abs_timer": 0, "dev.em.0.interrupts.rx_pkt_timer": 0, "dev.em.0.interrupts.asserts": 0, "dev.em.0.mac_stats.tso_ctx_fail": 0, "dev.em.0.mac_stats.tso_txd": 0, "dev.em.0.mac_stats.tx_frames_1024_1522": 2199, "dev.em.0.mac_stats.tx_frames_512_1023": 2119, "dev.em.0.mac_stats.tx_frames_256_511": 89, "dev.em.0.mac_stats.tx_frames_128_255": 2548, "dev.em.0.mac_stats.tx_frames_65_127": 16005, "dev.em.0.mac_stats.tx_frames_64": 1113, "dev.em.0.mac_stats.mcast_pkts_txd": 0, "dev.em.0.mac_stats.bcast_pkts_txd": 0, "dev.em.0.mac_stats.good_pkts_txd": 24073, "dev.em.0.mac_stats.total_pkts_txd": 24073, "dev.em.0.mac_stats.good_octets_txd": 6835399, "dev.em.0.mac_stats.good_octets_recvd": 5407948, "dev.em.0.mac_stats.rx_frames_1024_1522": 2104, "dev.em.0.mac_stats.rx_frames_512_1023": 238, "dev.em.0.mac_stats.rx_frames_256_511": 442, "dev.em.0.mac_stats.rx_frames_128_255": 344, "dev.em.0.mac_stats.rx_frames_65_127": 25380, "dev.em.0.mac_stats.rx_frames_64": 0, "dev.em.0.mac_stats.mcast_pkts_recvd": 0, "dev.em.0.mac_stats.bcast_pkts_recvd": 0, "dev.em.0.mac_stats.good_pkts_recvd": 28508, "dev.em.0.mac_stats.total_pkts_recvd": 28508, "dev.em.0.mac_stats.xoff_txd": 0, "dev.em.0.mac_stats.xoff_recvd": 0, "dev.em.0.mac_stats.xon_txd": 0, "dev.em.0.mac_stats.xon_recvd": 0, "dev.em.0.mac_stats.coll_ext_errs": 0, "dev.em.0.mac_stats.alignment_errs": 0, "dev.em.0.mac_stats.crc_errs": 0, "dev.em.0.mac_stats.recv_errs": 0, "dev.em.0.mac_stats.recv_jabber": 0, "dev.em.0.mac_stats.recv_oversize": 0, "dev.em.0.mac_stats.recv_fragmented": 0, "dev.em.0.mac_stats.recv_undersize": 0, "dev.em.0.mac_stats.recv_no_buff": 0, "dev.em.0.mac_stats.missed_packets": 0, "dev.em.0.mac_stats.defer_count": 0, "dev.em.0.mac_stats.sequence_errors": 0, "dev.em.0.mac_stats.symbol_errors": 0, "dev.em.0.mac_stats.collision_count": 0, "dev.em.0.mac_stats.late_coll": 0, "dev.em.0.mac_stats.multiple_coll": 0, "dev.em.0.mac_stats.single_coll": 0, "dev.em.0.mac_stats.excess_coll": 0, "dev.em.0.queue_rx_0.rx_irq": 0, "dev.em.0.queue_rx_0.rxd_tail": 860, "dev.em.0.queue_rx_0.rxd_head": 862, "dev.em.0.queue_tx_0.tx_irq": 0, "dev.em.0.queue_tx_0.txd_tail": 60, "dev.em.0.queue_tx_0.txd_head": 60, "dev.em.0.fc_low_water": 45604, "dev.em.0.fc_high_water": 47104, "dev.em.0.rx_control": 67141662, "dev.em.0.device_control": 12583497, "dev.em.0.watchdog_timeouts": 0, "dev.em.0.rx_overruns": 0, "dev.em.0.link_irq": 0, "dev.em.0.dropped": 0, "dev.em.0.eee_control": 1, "dev.em.0.itr": 488, "dev.em.0.tx_abs_int_delay": 66, "dev.em.0.rx_abs_int_delay": 66, "dev.em.0.tx_int_delay": 66, "dev.em.0.rx_int_delay": 0, "dev.em.0.rs_dump": 0, "dev.em.0.reg_dump": "General Registers\n\tCTRL\t 00c00249\n\tSTATUS\t 0000cb83\n\tCTRL_EXIT\t 00000cc0\n\nInterrupt Registers\n\tICR\t 00000000\n\nRX Registers\n\tRCTL\t 0400801e\n\tRDLEN\t 00004000\n\tRDH\t 0000035e\n\tRDT\t 0000035c\n\tRXDCTL\t 01010000\n\tRDBAL\t 7c1e8000\n\tRDBAH\t 00000000\n\nTX Registers\n\tTCTL\t 0103f0fa\n\tTDBAL\t 7c1e0000\n\tTDBAH\t 00000000\n\tTDLEN\t 00004000\n\tTDH\t 0000003c\n\tTDT\t 0000003c\n\tTXDCTL\t 0301011f\n\tTDFH\t 00000000\n\tTDFT\t 00000000\n\tTDFHS\t 00000000\n\tTDFPC\t 00000000\n\n", "dev.em.0.fc": 3, "dev.em.0.debug": -1, "dev.em.0.nvm": -1, "dev.em.0.iflib.rxq0.rxq_fl0.credits": 1023, "dev.em.0.iflib.rxq0.rxq_fl0.cidx": 862, "dev.em.0.iflib.rxq0.rxq_fl0.pidx": 861, "dev.em.0.iflib.txq0.r_abdications": 0, "dev.em.0.iflib.txq0.r_restarts": 0, "dev.em.0.iflib.txq0.r_stalls": 0, "dev.em.0.iflib.txq0.r_starts": 24057, "dev.em.0.iflib.txq0.r_drops": 0, "dev.em.0.iflib.txq0.r_enqueues": 29353, "dev.em.0.iflib.txq0.ring_state": "pidx_head: 0681 pidx_tail: 0681 cidx: 0681 state: IDLE", "dev.em.0.iflib.txq0.txq_cleaned": 28692, "dev.em.0.iflib.txq0.txq_processed": 28732, "dev.em.0.iflib.txq0.txq_in_use": 40, "dev.em.0.iflib.txq0.txq_cidx_processed": 60, "dev.em.0.iflib.txq0.txq_cidx": 20, "dev.em.0.iflib.txq0.txq_pidx": 60, "dev.em.0.iflib.txq0.no_tx_dma_setup": 0, "dev.em.0.iflib.txq0.txd_encap_efbig": 0, "dev.em.0.iflib.txq0.tx_map_failed": 0, "dev.em.0.iflib.txq0.no_desc_avail": 0, "dev.em.0.iflib.txq0.mbuf_defrag_failed": 0, "dev.em.0.iflib.txq0.m_pullups": 0, "dev.em.0.iflib.txq0.mbuf_defrag": 0, "dev.em.0.iflib.override_nrxds": 0, "dev.em.0.iflib.override_ntxds": 0, "dev.em.0.iflib.separate_txrx": 0, "dev.em.0.iflib.core_offset": 0, "dev.em.0.iflib.tx_abdicate": 0, "dev.em.0.iflib.rx_budget": 0, "dev.em.0.iflib.disable_msix": 0, "dev.em.0.iflib.override_qs_enable": 0, "dev.em.0.iflib.override_nrxqs": 0, "dev.em.0.iflib.override_ntxqs": 0, "dev.em.0.iflib.driver_version": "7.6.1-k", "dev.em.0.%parent": "pci2", "dev.em.0.%pnpinfo": "vendor=0x8086 device=0x100f subvendor=0x15ad subdevice=0x0750 class=0x020000", "dev.em.0.%location": "slot=1 function=0 dbsf=pci0:2:1:0 handle=\\_SB_.PCI0.P2P0.S2F0", "dev.em.0.%driver": "em", "dev.em.0.%desc": "Intel(R) PRO/1000 Network Connection", "dev.em.%parent": "", "dev.usbus.1.%parent": "ehci0", "dev.usbus.1.%pnpinfo": "", "dev.usbus.1.%location": "", "dev.usbus.1.%driver": "usbus", "dev.usbus.1.%desc": "", "dev.usbus.0.%parent": "uhci0", "dev.usbus.0.%pnpinfo": "", "dev.usbus.0.%location": "", "dev.usbus.0.%driver": "usbus", "dev.usbus.0.%desc": "", "dev.usbus.%parent": "", "dev.uhci.0.wake": 0, "dev.uhci.0.%parent": "pci2", "dev.uhci.0.%pnpinfo": "vendor=0x15ad device=0x0774 subvendor=0x15ad subdevice=0x1976 class=0x0c0300", "dev.uhci.0.%location": "slot=0 function=0 dbsf=pci0:2:0:0 handle=\\_SB_.PCI0.P2P0.S1F0", "dev.uhci.0.%driver": "uhci", "dev.uhci.0.%desc": "UHCI (generic) USB controller", "dev.uhci.%parent": "", "dev.mpt.0.role": 1, "dev.mpt.0.debug": 3, "dev.mpt.0.%parent": "pci0", "dev.mpt.0.%pnpinfo": "vendor=0x1000 device=0x0030 subvendor=0x15ad subdevice=0x1976 class=0x010000", "dev.mpt.0.%location": "slot=16 function=0 dbsf=pci0:0:16:0", "dev.mpt.0.%driver": "mpt", "dev.mpt.0.%desc": "LSILogic 1030 Ultra4 Adapter", "dev.mpt.%parent": "", "dev.vgapci.0.%parent": "pci0", "dev.vgapci.0.%pnpinfo": "vendor=0x15ad device=0x0405 subvendor=0x15ad subdevice=0x0405 class=0x030000", "dev.vgapci.0.%location": "slot=15 function=0 dbsf=pci0:0:15:0", "dev.vgapci.0.%driver": "vgapci", "dev.vgapci.0.%desc": "VGA-compatible display", "dev.vgapci.%parent": "", "dev.ata.1.%parent": "atapci0", "dev.ata.1.%pnpinfo": "", "dev.ata.1.%location": "channel=1", "dev.ata.1.%driver": "ata", "dev.ata.1.%desc": "ATA channel", "dev.ata.0.%parent": "atapci0", "dev.ata.0.%pnpinfo": "", "dev.ata.0.%location": "channel=0", "dev.ata.0.%driver": "ata", "dev.ata.0.%desc": "ATA channel", "dev.ata.%parent": "", "dev.atapci.0.%parent": "pci0", "dev.atapci.0.%pnpinfo": "vendor=0x8086 device=0x7111 subvendor=0x15ad subdevice=0x1976 class=0x01018a", "dev.atapci.0.%location": "slot=7 function=1 dbsf=pci0:0:7:1 handle=\\_SB_.PCI0.IDE_", "dev.atapci.0.%driver": "atapci", "dev.atapci.0.%desc": "Intel PIIX4 UDMA33 controller", "dev.atapci.%parent": "", "dev.isa.0.%parent": "isab0", "dev.isa.0.%pnpinfo": "", "dev.isa.0.%location": "", "dev.isa.0.%driver": "isa", "dev.isa.0.%desc": "ISA bus", "dev.isa.%parent": "", "dev.isab.0.%parent": "pci0", "dev.isab.0.%pnpinfo": "vendor=0x8086 device=0x7110 subvendor=0x15ad subdevice=0x1976 class=0x060100", "dev.isab.0.%location": "slot=7 function=0 dbsf=pci0:0:7:0 handle=\\_SB_.PCI0.ISA_", "dev.isab.0.%driver": "isab", "dev.isab.0.%desc": "PCI-ISA bridge", "dev.isab.%parent": "", "dev.hostb.0.%parent": "pci0", "dev.hostb.0.%pnpinfo": "vendor=0x8086 device=0x7190 subvendor=0x15ad subdevice=0x1976 class=0x060000", "dev.hostb.0.%location": "slot=0 function=0 dbsf=pci0:0:0:0", "dev.hostb.0.%driver": "hostb", "dev.hostb.0.%desc": "Host to PCI bridge", "dev.hostb.%parent": "", "dev.pci.2.wake": 0, "dev.pci.2.%parent": "pcib2", "dev.pci.2.%pnpinfo": "", "dev.pci.2.%location": "", "dev.pci.2.%driver": "pci", "dev.pci.2.%desc": "ACPI PCI bus", "dev.pci.1.%parent": "pcib1", "dev.pci.1.%pnpinfo": "", "dev.pci.1.%location": "", "dev.pci.1.%driver": "pci", "dev.pci.1.%desc": "ACPI PCI bus", "dev.pci.0.wake": 0, "dev.pci.0.%parent": "pcib0", "dev.pci.0.%pnpinfo": "", "dev.pci.0.%location": "", "dev.pci.0.%driver": "pci", "dev.pci.0.%desc": "ACPI PCI bus", "dev.pci.%parent": "", "dev.pcib.34.wake": 0, "dev.pcib.34.subbus": 34, "dev.pcib.34.secbus": 34, "dev.pcib.34.pribus": 0, "dev.pcib.34.domain": 0, "dev.pcib.34.%parent": "pci0", "dev.pcib.34.%pnpinfo": "vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400", "dev.pcib.34.%location": "slot=24 function=7 dbsf=pci0:0:24:7 handle=\\_SB_.PCI0.PE77", "dev.pcib.34.%driver": "pcib", "dev.pcib.34.%desc": "ACPI PCI-PCI bridge", "dev.pcib.33.wake": 0, "dev.pcib.33.subbus": 33, "dev.pcib.33.secbus": 33, "dev.pcib.33.pribus": 0, "dev.pcib.33.domain": 0, "dev.pcib.33.%parent": "pci0", "dev.pcib.33.%pnpinfo": "vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400", "dev.pcib.33.%location": "slot=24 function=6 dbsf=pci0:0:24:6 handle=\\_SB_.PCI0.PE76", "dev.pcib.33.%driver": "pcib", "dev.pcib.33.%desc": "ACPI PCI-PCI bridge", "dev.pcib.32.wake": 0, "dev.pcib.32.subbus": 32, "dev.pcib.32.secbus": 32, "dev.pcib.32.pribus": 0, "dev.pcib.32.domain": 0, "dev.pcib.32.%parent": "pci0", "dev.pcib.32.%pnpinfo": "vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400", "dev.pcib.32.%location": "slot=24 function=5 dbsf=pci0:0:24:5 handle=\\_SB_.PCI0.PE75", "dev.pcib.32.%driver": "pcib", "dev.pcib.32.%desc": "ACPI PCI-PCI bridge", "dev.pcib.31.wake": 0, "dev.pcib.31.subbus": 31, "dev.pcib.31.secbus": 31, "dev.pcib.31.pribus": 0, "dev.pcib.31.domain": 0, "dev.pcib.31.%parent": "pci0", "dev.pcib.31.%pnpinfo": "vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400", "dev.pcib.31.%location": "slot=24 function=4 dbsf=pci0:0:24:4 handle=\\_SB_.PCI0.PE74", "dev.pcib.31.%driver": "pcib", "dev.pcib.31.%desc": "ACPI PCI-PCI bridge", "dev.pcib.30.wake": 0, "dev.pcib.30.subbus": 30, "dev.pcib.30.secbus": 30, "dev.pcib.30.pribus": 0, "dev.pcib.30.domain": 0, "dev.pcib.30.%parent": "pci0", "dev.pcib.30.%pnpinfo": "vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400", "dev.pcib.30.%location": "slot=24 function=3 dbsf=pci0:0:24:3 handle=\\_SB_.PCI0.PE73", "dev.pcib.30.%driver": "pcib", "dev.pcib.30.%desc": "ACPI PCI-PCI bridge", "dev.pcib.29.wake": 0, "dev.pcib.29.subbus": 29, "dev.pcib.29.secbus": 29, "dev.pcib.29.pribus": 0, "dev.pcib.29.domain": 0, "dev.pcib.29.%parent": "pci0", "dev.pcib.29.%pnpinfo": "vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400", "dev.pcib.29.%location": "slot=24 function=2 dbsf=pci0:0:24:2 handle=\\_SB_.PCI0.PE72", "dev.pcib.29.%driver": "pcib", "dev.pcib.29.%desc": "ACPI PCI-PCI bridge", "dev.pcib.28.wake": 0, "dev.pcib.28.subbus": 28, "dev.pcib.28.secbus": 28, "dev.pcib.28.pribus": 0, "dev.pcib.28.domain": 0, "dev.pcib.28.%parent": "pci0", "dev.pcib.28.%pnpinfo": "vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400", "dev.pcib.28.%location": "slot=24 function=1 dbsf=pci0:0:24:1 handle=\\_SB_.PCI0.PE71", "dev.pcib.28.%driver": "pcib", "dev.pcib.28.%desc": "ACPI PCI-PCI bridge", "dev.pcib.27.wake": 0, "dev.pcib.27.subbus": 27, "dev.pcib.27.secbus": 27, "dev.pcib.27.pribus": 0, "dev.pcib.27.domain": 0, "dev.pcib.27.%parent": "pci0", "dev.pcib.27.%pnpinfo": "vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400", "dev.pcib.27.%location": "slot=24 function=0 dbsf=pci0:0:24:0 handle=\\_SB_.PCI0.PE70", "dev.pcib.27.%driver": "pcib", "dev.pcib.27.%desc": "ACPI PCI-PCI bridge", "dev.pcib.26.wake": 0, "dev.pcib.26.subbus": 26, "dev.pcib.26.secbus": 26, "dev.pcib.26.pribus": 0, "dev.pcib.26.domain": 0, "dev.pcib.26.%parent": "pci0", "dev.pcib.26.%pnpinfo": "vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400", "dev.pcib.26.%location": "slot=23 function=7 dbsf=pci0:0:23:7 handle=\\_SB_.PCI0.PE67", "dev.pcib.26.%driver": "pcib", "dev.pcib.26.%desc": "ACPI PCI-PCI bridge", "dev.pcib.25.wake": 0, "dev.pcib.25.subbus": 25, "dev.pcib.25.secbus": 25, "dev.pcib.25.pribus": 0, "dev.pcib.25.domain": 0, "dev.pcib.25.%parent": "pci0", "dev.pcib.25.%pnpinfo": "vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400", "dev.pcib.25.%location": "slot=23 function=6 dbsf=pci0:0:23:6 handle=\\_SB_.PCI0.PE66", "dev.pcib.25.%driver": "pcib", "dev.pcib.25.%desc": "ACPI PCI-PCI bridge", "dev.pcib.24.wake": 0, "dev.pcib.24.subbus": 24, "dev.pcib.24.secbus": 24, "dev.pcib.24.pribus": 0, "dev.pcib.24.domain": 0, "dev.pcib.24.%parent": "pci0", "dev.pcib.24.%pnpinfo": "vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400", "dev.pcib.24.%location": "slot=23 function=5 dbsf=pci0:0:23:5 handle=\\_SB_.PCI0.PE65", "dev.pcib.24.%driver": "pcib", "dev.pcib.24.%desc": "ACPI PCI-PCI bridge", "dev.pcib.23.wake": 0, "dev.pcib.23.subbus": 23, "dev.pcib.23.secbus": 23, "dev.pcib.23.pribus": 0, "dev.pcib.23.domain": 0, "dev.pcib.23.%parent": "pci0", "dev.pcib.23.%pnpinfo": "vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400", "dev.pcib.23.%location": "slot=23 function=4 dbsf=pci0:0:23:4 handle=\\_SB_.PCI0.PE64", "dev.pcib.23.%driver": "pcib", "dev.pcib.23.%desc": "ACPI PCI-PCI bridge", "dev.pcib.22.wake": 0, "dev.pcib.22.subbus": 22, "dev.pcib.22.secbus": 22, "dev.pcib.22.pribus": 0, "dev.pcib.22.domain": 0, "dev.pcib.22.%parent": "pci0", "dev.pcib.22.%pnpinfo": "vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400", "dev.pcib.22.%location": "slot=23 function=3 dbsf=pci0:0:23:3 handle=\\_SB_.PCI0.PE63", "dev.pcib.22.%driver": "pcib", "dev.pcib.22.%desc": "ACPI PCI-PCI bridge", "dev.pcib.21.wake": 0, "dev.pcib.21.subbus": 21, "dev.pcib.21.secbus": 21, "dev.pcib.21.pribus": 0, "dev.pcib.21.domain": 0, "dev.pcib.21.%parent": "pci0", "dev.pcib.21.%pnpinfo": "vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400", "dev.pcib.21.%location": "slot=23 function=2 dbsf=pci0:0:23:2 handle=\\_SB_.PCI0.PE62", "dev.pcib.21.%driver": "pcib", "dev.pcib.21.%desc": "ACPI PCI-PCI bridge", "dev.pcib.20.wake": 0, "dev.pcib.20.subbus": 20, "dev.pcib.20.secbus": 20, "dev.pcib.20.pribus": 0, "dev.pcib.20.domain": 0, "dev.pcib.20.%parent": "pci0", "dev.pcib.20.%pnpinfo": "vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400", "dev.pcib.20.%location": "slot=23 function=1 dbsf=pci0:0:23:1 handle=\\_SB_.PCI0.PE61", "dev.pcib.20.%driver": "pcib", "dev.pcib.20.%desc": "ACPI PCI-PCI bridge", "dev.pcib.19.wake": 0, "dev.pcib.19.subbus": 19, "dev.pcib.19.secbus": 19, "dev.pcib.19.pribus": 0, "dev.pcib.19.domain": 0, "dev.pcib.19.%parent": "pci0", "dev.pcib.19.%pnpinfo": "vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400", "dev.pcib.19.%location": "slot=23 function=0 dbsf=pci0:0:23:0 handle=\\_SB_.PCI0.PE60", "dev.pcib.19.%driver": "pcib", "dev.pcib.19.%desc": "ACPI PCI-PCI bridge", "dev.pcib.18.wake": 0, "dev.pcib.18.subbus": 18, "dev.pcib.18.secbus": 18, "dev.pcib.18.pribus": 0, "dev.pcib.18.domain": 0, "dev.pcib.18.%parent": "pci0", "dev.pcib.18.%pnpinfo": "vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400", "dev.pcib.18.%location": "slot=22 function=7 dbsf=pci0:0:22:7 handle=\\_SB_.PCI0.PE57", "dev.pcib.18.%driver": "pcib", "dev.pcib.18.%desc": "ACPI PCI-PCI bridge", "dev.pcib.17.wake": 0, "dev.pcib.17.subbus": 17, "dev.pcib.17.secbus": 17, "dev.pcib.17.pribus": 0, "dev.pcib.17.domain": 0, "dev.pcib.17.%parent": "pci0", "dev.pcib.17.%pnpinfo": "vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400", "dev.pcib.17.%location": "slot=22 function=6 dbsf=pci0:0:22:6 handle=\\_SB_.PCI0.PE56", "dev.pcib.17.%driver": "pcib", "dev.pcib.17.%desc": "ACPI PCI-PCI bridge", "dev.pcib.16.wake": 0, "dev.pcib.16.subbus": 16, "dev.pcib.16.secbus": 16, "dev.pcib.16.pribus": 0, "dev.pcib.16.domain": 0, "dev.pcib.16.%parent": "pci0", "dev.pcib.16.%pnpinfo": "vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400", "dev.pcib.16.%location": "slot=22 function=5 dbsf=pci0:0:22:5 handle=\\_SB_.PCI0.PE55", "dev.pcib.16.%driver": "pcib", "dev.pcib.16.%desc": "ACPI PCI-PCI bridge", "dev.pcib.15.wake": 0, "dev.pcib.15.subbus": 15, "dev.pcib.15.secbus": 15, "dev.pcib.15.pribus": 0, "dev.pcib.15.domain": 0, "dev.pcib.15.%parent": "pci0", "dev.pcib.15.%pnpinfo": "vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400", "dev.pcib.15.%location": "slot=22 function=4 dbsf=pci0:0:22:4 handle=\\_SB_.PCI0.PE54", "dev.pcib.15.%driver": "pcib", "dev.pcib.15.%desc": "ACPI PCI-PCI bridge", "dev.pcib.14.wake": 0, "dev.pcib.14.subbus": 14, "dev.pcib.14.secbus": 14, "dev.pcib.14.pribus": 0, "dev.pcib.14.domain": 0, "dev.pcib.14.%parent": "pci0", "dev.pcib.14.%pnpinfo": "vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400", "dev.pcib.14.%location": "slot=22 function=3 dbsf=pci0:0:22:3 handle=\\_SB_.PCI0.PE53", "dev.pcib.14.%driver": "pcib", "dev.pcib.14.%desc": "ACPI PCI-PCI bridge", "dev.pcib.13.wake": 0, "dev.pcib.13.subbus": 13, "dev.pcib.13.secbus": 13, "dev.pcib.13.pribus": 0, "dev.pcib.13.domain": 0, "dev.pcib.13.%parent": "pci0", "dev.pcib.13.%pnpinfo": "vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400", "dev.pcib.13.%location": "slot=22 function=2 dbsf=pci0:0:22:2 handle=\\_SB_.PCI0.PE52", "dev.pcib.13.%driver": "pcib", "dev.pcib.13.%desc": "ACPI PCI-PCI bridge", "dev.pcib.12.wake": 0, "dev.pcib.12.subbus": 12, "dev.pcib.12.secbus": 12, "dev.pcib.12.pribus": 0, "dev.pcib.12.domain": 0, "dev.pcib.12.%parent": "pci0", "dev.pcib.12.%pnpinfo": "vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400", "dev.pcib.12.%location": "slot=22 function=1 dbsf=pci0:0:22:1 handle=\\_SB_.PCI0.PE51", "dev.pcib.12.%driver": "pcib", "dev.pcib.12.%desc": "ACPI PCI-PCI bridge", "dev.pcib.11.wake": 0, "dev.pcib.11.subbus": 11, "dev.pcib.11.secbus": 11, "dev.pcib.11.pribus": 0, "dev.pcib.11.domain": 0, "dev.pcib.11.%parent": "pci0", "dev.pcib.11.%pnpinfo": "vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400", "dev.pcib.11.%location": "slot=22 function=0 dbsf=pci0:0:22:0 handle=\\_SB_.PCI0.PE50", "dev.pcib.11.%driver": "pcib", "dev.pcib.11.%desc": "ACPI PCI-PCI bridge", "dev.pcib.10.wake": 0, "dev.pcib.10.subbus": 10, "dev.pcib.10.secbus": 10, "dev.pcib.10.pribus": 0, "dev.pcib.10.domain": 0, "dev.pcib.10.%parent": "pci0", "dev.pcib.10.%pnpinfo": "vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400", "dev.pcib.10.%location": "slot=21 function=7 dbsf=pci0:0:21:7 handle=\\_SB_.PCI0.PE47", "dev.pcib.10.%driver": "pcib", "dev.pcib.10.%desc": "ACPI PCI-PCI bridge", "dev.pcib.9.wake": 0, "dev.pcib.9.subbus": 9, "dev.pcib.9.secbus": 9, "dev.pcib.9.pribus": 0, "dev.pcib.9.domain": 0, "dev.pcib.9.%parent": "pci0", "dev.pcib.9.%pnpinfo": "vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400", "dev.pcib.9.%location": "slot=21 function=6 dbsf=pci0:0:21:6 handle=\\_SB_.PCI0.PE46", "dev.pcib.9.%driver": "pcib", "dev.pcib.9.%desc": "ACPI PCI-PCI bridge", "dev.pcib.8.wake": 0, "dev.pcib.8.subbus": 8, "dev.pcib.8.secbus": 8, "dev.pcib.8.pribus": 0, "dev.pcib.8.domain": 0, "dev.pcib.8.%parent": "pci0", "dev.pcib.8.%pnpinfo": "vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400", "dev.pcib.8.%location": "slot=21 function=5 dbsf=pci0:0:21:5 handle=\\_SB_.PCI0.PE45", "dev.pcib.8.%driver": "pcib", "dev.pcib.8.%desc": "ACPI PCI-PCI bridge", "dev.pcib.7.wake": 0, "dev.pcib.7.subbus": 7, "dev.pcib.7.secbus": 7, "dev.pcib.7.pribus": 0, "dev.pcib.7.domain": 0, "dev.pcib.7.%parent": "pci0", "dev.pcib.7.%pnpinfo": "vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400", "dev.pcib.7.%location": "slot=21 function=4 dbsf=pci0:0:21:4 handle=\\_SB_.PCI0.PE44", "dev.pcib.7.%driver": "pcib", "dev.pcib.7.%desc": "ACPI PCI-PCI bridge", "dev.pcib.6.wake": 0, "dev.pcib.6.subbus": 6, "dev.pcib.6.secbus": 6, "dev.pcib.6.pribus": 0, "dev.pcib.6.domain": 0, "dev.pcib.6.%parent": "pci0", "dev.pcib.6.%pnpinfo": "vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400", "dev.pcib.6.%location": "slot=21 function=3 dbsf=pci0:0:21:3 handle=\\_SB_.PCI0.PE43", "dev.pcib.6.%driver": "pcib", "dev.pcib.6.%desc": "ACPI PCI-PCI bridge", "dev.pcib.5.wake": 0, "dev.pcib.5.subbus": 5, "dev.pcib.5.secbus": 5, "dev.pcib.5.pribus": 0, "dev.pcib.5.domain": 0, "dev.pcib.5.%parent": "pci0", "dev.pcib.5.%pnpinfo": "vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400", "dev.pcib.5.%location": "slot=21 function=2 dbsf=pci0:0:21:2 handle=\\_SB_.PCI0.PE42", "dev.pcib.5.%driver": "pcib", "dev.pcib.5.%desc": "ACPI PCI-PCI bridge", "dev.pcib.4.wake": 0, "dev.pcib.4.subbus": 4, "dev.pcib.4.secbus": 4, "dev.pcib.4.pribus": 0, "dev.pcib.4.domain": 0, "dev.pcib.4.%parent": "pci0", "dev.pcib.4.%pnpinfo": "vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400", "dev.pcib.4.%location": "slot=21 function=1 dbsf=pci0:0:21:1 handle=\\_SB_.PCI0.PE41", "dev.pcib.4.%driver": "pcib", "dev.pcib.4.%desc": "ACPI PCI-PCI bridge", "dev.pcib.3.wake": 0, "dev.pcib.3.subbus": 3, "dev.pcib.3.secbus": 3, "dev.pcib.3.pribus": 0, "dev.pcib.3.domain": 0, "dev.pcib.3.%parent": "pci0", "dev.pcib.3.%pnpinfo": "vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400", "dev.pcib.3.%location": "slot=21 function=0 dbsf=pci0:0:21:0 handle=\\_SB_.PCI0.PE40", "dev.pcib.3.%driver": "pcib", "dev.pcib.3.%desc": "ACPI PCI-PCI bridge", "dev.pcib.2.wake": 0, "dev.pcib.2.subbus": 2, "dev.pcib.2.secbus": 2, "dev.pcib.2.pribus": 0, "dev.pcib.2.domain": 0, "dev.pcib.2.%parent": "pci0", "dev.pcib.2.%pnpinfo": "vendor=0x15ad device=0x0790 subvendor=0x15ad subdevice=0x0790 class=0x060401", "dev.pcib.2.%location": "slot=17 function=0 dbsf=pci0:0:17:0 handle=\\_SB_.PCI0.P2P0", "dev.pcib.2.%driver": "pcib", "dev.pcib.2.%desc": "ACPI PCI-PCI bridge", "dev.pcib.1.subbus": 1, "dev.pcib.1.secbus": 1, "dev.pcib.1.pribus": 0, "dev.pcib.1.domain": 0, "dev.pcib.1.%parent": "pci0", "dev.pcib.1.%pnpinfo": "vendor=0x8086 device=0x7191 subvendor=0x0000 subdevice=0x0000 class=0x060400", "dev.pcib.1.%location": "slot=1 function=0 dbsf=pci0:0:1:0 handle=\\_SB_.PCI0.AGP_", "dev.pcib.1.%driver": "pcib", "dev.pcib.1.%desc": "ACPI PCI-PCI bridge", "dev.pcib.0.wake": 0, "dev.pcib.0.%parent": "acpi0", "dev.pcib.0.%pnpinfo": "_HID=PNP0A03 _UID=0", "dev.pcib.0.%location": "handle=\\_SB_.PCI0", "dev.pcib.0.%driver": "pcib", "dev.pcib.0.%desc": "ACPI Host-PCI bridge", "dev.pcib.%parent": "", "dev.pci_link.3.%parent": "acpi0", "dev.pci_link.3.%pnpinfo": "_HID=PNP0C0F _UID=4", "dev.pci_link.3.%location": "handle=\\_SB_.PCI0.ISA_.LNKD", "dev.pci_link.3.%driver": "pci_link", "dev.pci_link.3.%desc": "ACPI PCI Link LNKD", "dev.pci_link.2.%parent": "acpi0", "dev.pci_link.2.%pnpinfo": "_HID=PNP0C0F _UID=3", "dev.pci_link.2.%location": "handle=\\_SB_.PCI0.ISA_.LNKC", "dev.pci_link.2.%driver": "pci_link", "dev.pci_link.2.%desc": "ACPI PCI Link LNKC", "dev.pci_link.1.%parent": "acpi0", "dev.pci_link.1.%pnpinfo": "_HID=PNP0C0F _UID=2", "dev.pci_link.1.%location": "handle=\\_SB_.PCI0.ISA_.LNKB", "dev.pci_link.1.%driver": "pci_link", "dev.pci_link.1.%desc": "ACPI PCI Link LNKB", "dev.pci_link.0.%parent": "acpi0", "dev.pci_link.0.%pnpinfo": "_HID=PNP0C0F _UID=1", "dev.pci_link.0.%location": "handle=\\_SB_.PCI0.ISA_.LNKA", "dev.pci_link.0.%driver": "pci_link", "dev.pci_link.0.%desc": "ACPI PCI Link LNKA", "dev.pci_link.%parent": "", "dev.acpi_timer.0.%parent": "acpi0", "dev.acpi_timer.0.%pnpinfo": "unknown", "dev.acpi_timer.0.%location": "", "dev.acpi_timer.0.%driver": "acpi_timer", "dev.acpi_timer.0.%desc": "24-bit timer at 3.579545MHz", "dev.acpi_timer.%parent": "", "dev.atrtc.0.%parent": "acpi0", "dev.atrtc.0.%pnpinfo": "_HID=PNP0B00 _UID=0", "dev.atrtc.0.%location": "handle=\\_SB_.PCI0.ISA_.RTC_", "dev.atrtc.0.%driver": "atrtc", "dev.atrtc.0.%desc": "AT realtime clock", "dev.atrtc.%parent": "", "dev.attimer.0.%parent": "acpi0", "dev.attimer.0.%pnpinfo": "_HID=PNP0100 _UID=0", "dev.attimer.0.%location": "handle=\\_SB_.PCI0.ISA_.TIME", "dev.attimer.0.%driver": "attimer", "dev.attimer.0.%desc": "AT timer", "dev.attimer.%parent": "", "dev.cpu.0.cx_method": "C1/hlt", "dev.cpu.0.cx_usage_counters": 403453, "dev.cpu.0.cx_usage": "100.00% last 29614us", "dev.cpu.0.cx_lowest": "C1", "dev.cpu.0.cx_supported": "C1/1/0", "dev.cpu.0.%domain": 0, "dev.cpu.0.%parent": "acpi0", "dev.cpu.0.%pnpinfo": "_HID=none _UID=0", "dev.cpu.0.%location": "handle=\\_SB_.CP00 _PXM=0", "dev.cpu.0.%driver": "cpu", "dev.cpu.0.%desc": "ACPI CPU", "dev.cpu.%parent": "", "dev.hpet.0.mmap_allow_write": 0, "dev.hpet.0.mmap_allow": 1, "dev.hpet.0.%parent": "acpi0", "dev.hpet.0.%pnpinfo": "_HID=PNP0103 _UID=0", "dev.hpet.0.%location": "handle=\\_SB_.PCI0.ISA_.HPET", "dev.hpet.0.%driver": "hpet", "dev.hpet.0.%desc": "High Precision Event Timer", "dev.hpet.%parent": "", "dev.acpi_sysresource.1.%parent": "acpi0", "dev.acpi_sysresource.1.%pnpinfo": "_HID=PNP0C02 _UID=4", "dev.acpi_sysresource.1.%location": "handle=\\_SB_.PCI0.EXPL", "dev.acpi_sysresource.1.%driver": "acpi_sysresource", "dev.acpi_sysresource.1.%desc": "System Resource", "dev.acpi_sysresource.0.%parent": "acpi0", "dev.acpi_sysresource.0.%pnpinfo": "_HID=PNP0C02 _UID=31", "dev.acpi_sysresource.0.%location": "handle=\\_SB_.PCI0.ISA_.MBRD", "dev.acpi_sysresource.0.%driver": "acpi_sysresource", "dev.acpi_sysresource.0.%desc": "System Resource", "dev.acpi_sysresource.%parent": "", "dev.acpi.0.%parent": "nexus0", "dev.acpi.0.%pnpinfo": "", "dev.acpi.0.%location": "", "dev.acpi.0.%driver": "acpi", "dev.acpi.0.%desc": "INTEL 440BX", "dev.acpi.%parent": "", "dev.cryptosoft.0.%parent": "nexus0", "dev.cryptosoft.0.%pnpinfo": "", "dev.cryptosoft.0.%location": "", "dev.cryptosoft.0.%driver": "cryptosoft", "dev.cryptosoft.0.%desc": "software crypto", "dev.cryptosoft.%parent": "", "dev.ram.0.%parent": "nexus0", "dev.ram.0.%pnpinfo": "", "dev.ram.0.%location": "", "dev.ram.0.%driver": "ram", "dev.ram.0.%desc": "System RAM", "dev.ram.%parent": "", "dev.vtvga.0.%parent": "nexus0", "dev.vtvga.0.%pnpinfo": "", "dev.vtvga.0.%location": "", "dev.vtvga.0.%driver": "vtvga", "dev.vtvga.0.%desc": "VT VGA driver", "dev.vtvga.%parent": "", "dev.nexus.0.%parent": "root0", "dev.nexus.0.%pnpinfo": "", "dev.nexus.0.%location": "", "dev.nexus.0.%driver": "nexus", "dev.nexus.0.%desc": "", "dev.nexus.%parent": "", "dev.xen.xsd_kva": 0, "dev.xen.xsd_port": 0, "dev.xen.balloon.high_mem": 0, "dev.xen.balloon.low_mem": 0, "dev.xen.balloon.hard_limit": 0, "dev.xen.balloon.driver_pages": 0, "dev.xen.balloon.target": 0, "dev.xen.balloon.current": 0, "dev.netmap.iflib_rx_miss_bufs": 0, "dev.netmap.iflib_rx_miss": 0, "dev.netmap.iflib_crcstrip": 1, "dev.netmap.bridge_batch": 1024, "dev.netmap.default_pipes": 0, "dev.netmap.priv_buf_num": 4098, "dev.netmap.priv_buf_size": 2048, "dev.netmap.buf_curr_num": 0, "dev.netmap.buf_num": 163840, "dev.netmap.buf_curr_size": 0, "dev.netmap.buf_size": 2048, "dev.netmap.priv_ring_num": 4, "dev.netmap.priv_ring_size": 20480, "dev.netmap.ring_curr_num": 0, "dev.netmap.ring_num": 200, "dev.netmap.ring_curr_size": 0, "dev.netmap.ring_size": 36864, "dev.netmap.priv_if_num": 2, "dev.netmap.priv_if_size": 1024, "dev.netmap.if_curr_num": 0, "dev.netmap.if_num": 100, "dev.netmap.if_curr_size": 0, "dev.netmap.if_size": 1024, "dev.netmap.ptnet_vnet_hdr": 1, "dev.netmap.generic_rings": 1, "dev.netmap.generic_ringsize": 1024, "dev.netmap.generic_mit": 100000, "dev.netmap.generic_hwcsum": 0, "dev.netmap.admode": 0, "dev.netmap.fwd": 0, "dev.netmap.txsync_retry": 2, "dev.netmap.no_pendintr": 1, "dev.netmap.no_timestamp": 0, "dev.netmap.verbose": 0, "security.mac.ntpd.uid": 123, "security.mac.ntpd.enabled": 1, "security.mac.mmap_revocation_via_cow": 0, "security.mac.mmap_revocation": 1, "security.mac.labeled": 0, "security.mac.max_slots": 4, "security.mac.version": 4, "security.bsd.stack_guard_page": 1, "security.bsd.unprivileged_get_quota": 0, "security.bsd.hardlink_check_gid": 0, "security.bsd.hardlink_check_uid": 0, "security.bsd.unprivileged_idprio": 0, "security.bsd.unprivileged_proc_debug": 1, "security.bsd.conservative_signals": 1, "security.bsd.see_jail_proc": 1, "security.bsd.see_other_gids": 1, "security.bsd.see_other_uids": 1, "security.bsd.unprivileged_read_msgbuf": 1, "security.bsd.unprivileged_mlock": 1, "security.bsd.suser_enabled": 1, "security.bsd.map_at_zero": 0, "security.jail.mount_procfs_allowed": 0, "security.jail.mount_devfs_allowed": 0, "security.jail.param.sysvshm.": 0, "security.jail.param.sysvsem.": 0, "security.jail.param.sysvmsg.": 0, "security.jail.param.allow.mount.procfs": 0, "security.jail.param.allow.mount.devfs": 0, "security.jail.param.allow.mount.": 0, "security.jail.param.allow.read_msgbuf": 0, "security.jail.param.allow.reserved_ports": 0, "security.jail.param.allow.mlock": 0, "security.jail.param.allow.socket_af": 0, "security.jail.param.allow.quotas": 0, "security.jail.param.allow.chflags": 0, "security.jail.param.allow.raw_sockets": 0, "security.jail.param.allow.sysvipc": 0, "security.jail.param.allow.set_hostname": 0, "security.jail.param.ip6.saddrsel": 0, "security.jail.param.ip6.": 0, "security.jail.param.ip4.saddrsel": 0, "security.jail.param.ip4.": 0, "security.jail.param.cpuset.id": 0, "security.jail.param.host.hostid": 0, "security.jail.param.host.hostuuid": 64, "security.jail.param.host.domainname": 256, "security.jail.param.host.hostname": 256, "security.jail.param.host.": 0, "security.jail.param.children.max": 0, "security.jail.param.children.cur": 0, "security.jail.param.dying": 0, "security.jail.param.vnet": 0, "security.jail.param.persist": 0, "security.jail.param.devfs_ruleset": 0, "security.jail.param.enforce_statfs": 0, "security.jail.param.osrelease": 32, "security.jail.param.osreldate": 0, "security.jail.param.securelevel": 0, "security.jail.param.path": 1024, "security.jail.param.name": 256, "security.jail.param.parent": 0, "security.jail.param.jid": 0, "security.jail.devfs_ruleset": 0, "security.jail.enforce_statfs": 2, "security.jail.mount_allowed": 0, "security.jail.chflags_allowed": 0, "security.jail.allow_raw_sockets": 0, "security.jail.sysvipc_allowed": 0, "security.jail.socket_unixiproute_only": 1, "security.jail.set_hostname_allowed": 1, "security.jail.jail_max_af_ips": 255, "security.jail.vnet": 0, "security.jail.jailed": 0, "compat.ia32.maxvmem": 0, "compat.ia32.maxssiz": 67108864, "compat.ia32.maxdsiz": 536870912} jc-1.17.3/tests/fixtures/freebsd12/sysctl-a.out000066400000000000000000003306331415226333200212700ustar00rootroot00000000000000kern.ostype: FreeBSD kern.osrelease: 12.1-RELEASE kern.osrevision: 199506 kern.version: FreeBSD 12.1-RELEASE r354233 GENERIC kern.maxvnodes: 112422 kern.maxproc: 7396 kern.maxfiles: 64303 kern.argmax: 262144 kern.securelevel: -1 kern.hostname: freebsd kern.hostid: 1940785866 kern.clockrate: { hz = 100, tick = 10000, profhz = 8128, stathz = 127 } kern.posix1version: 200112 kern.ngroups: 1023 kern.job_control: 1 kern.saved_ids: 0 kern.boottime: { sec = 1594339054, usec = 740932 } Thu Jul 9 16:57:34 2020 kern.domainname: kern.osreldate: 1201000 kern.bootfile: /boot/kernel/kernel kern.maxfilesperproc: 57870 kern.maxprocperuid: 6656 kern.ipc.maxsockbuf: 2097152 kern.ipc.sockbuf_waste_factor: 8 kern.ipc.max_linkhdr: 16 kern.ipc.max_protohdr: 60 kern.ipc.max_hdr: 76 kern.ipc.max_datalen: 92 kern.ipc.maxsockets: 64304 kern.ipc.numopensockets: 22 kern.ipc.soacceptqueue: 128 kern.ipc.shm_allow_removed: 1 kern.ipc.shm_use_phys: 0 kern.ipc.shmall: 131072 kern.ipc.shmseg: 128 kern.ipc.shmmni: 192 kern.ipc.shmmin: 1 kern.ipc.shmmax: 536870912 kern.ipc.semaem: 16384 kern.ipc.semvmx: 32767 kern.ipc.semusz: 632 kern.ipc.semume: 50 kern.ipc.semopm: 100 kern.ipc.semmsl: 340 kern.ipc.semmnu: 150 kern.ipc.semmns: 340 kern.ipc.semmni: 50 kern.ipc.msgseg: 2048 kern.ipc.msgssz: 8 kern.ipc.msgtql: 40 kern.ipc.msgmnb: 2048 kern.ipc.msgmni: 40 kern.ipc.msgmax: 16384 kern.ipc.aio.lifetime: 3000 kern.ipc.aio.target_procs: 4 kern.ipc.aio.num_procs: 4 kern.ipc.aio.max_procs: 32 kern.ipc.aio.empty_retries: 0 kern.ipc.aio.empty_results: 0 kern.ipc.piperesizeallowed: 1 kern.ipc.piperesizefail: 0 kern.ipc.pipeallocfail: 0 kern.ipc.pipefragretry: 0 kern.ipc.pipekva: 53248 kern.ipc.maxpipekva: 32919552 kern.ipc.umtx_max_robust: 1000 kern.ipc.umtx_vnode_persistent: 0 kern.ipc.nmbufs: 801240 kern.ipc.nmbjumbo16: 10432 kern.ipc.nmbjumbo9: 18547 kern.ipc.nmbjumbop: 62596 kern.ipc.nmbclusters: 125192 kern.ipc.maxmbufmem: 1025576960 kern.dummy: 0 kern.ps_strings: 140737488351200 kern.usrstack: 140737488351232 kern.logsigexit: 1 kern.iov_max: 1024 kern.hostuuid: a2d24d56-1cb8-623d-9c1f-7320d01a4e3b kern.maxphys: 131072 kern.cryptodevallowsoft: 0 kern.userasymcrypto: 1 kern.crypto_workers_num: 1 kern.minvnodes: 28105 kern.metadelay: 28 kern.dirdelay: 29 kern.filedelay: 30 kern.tty_nout: 4511126 kern.tty_nin: 74336 kern.tty_inq_flush_secure: 1 kern.tty_drainwait: 300 kern.trap_enotcap: 0 kern.smp.forward_signal_enabled: 1 kern.smp.topology: 0 kern.smp.cpus: 1 kern.smp.disabled: 0 kern.smp.active: 0 kern.smp.maxcpus: 256 kern.smp.maxid: 0 kern.msgbuf_clear: 0 kern.msgbuf: kern.always_console_output: 0 kern.log_console_add_linefeed: 0 kern.log_console_output: 1 kern.boot_tag: ---<>--- kern.vm_guest: vmware kern.sgrowsiz: 131072 kern.maxssiz: 536870912 kern.dflssiz: 8388608 kern.maxdsiz: 34359738368 kern.dfldsiz: 34359738368 kern.maxtsiz: 34359738368 kern.bio_transient_maxcnt: 1024 kern.maxbcache: 0 kern.maxswzone: 0 kern.msgbufsize: 98304 kern.nswbuf: 256 kern.nbuf: 13525 kern.hz: 100 kern.msgbuf_show_timestamp: 0 kern.log_wakeups_per_second: 5 kern.kobj_methodcount: 341 kern.epoch.stats.epoch_call_tasks: 111 kern.epoch.stats.epoch_calls: 449 kern.epoch.stats.switches: 0 kern.epoch.stats.ncontended: 0 kern.epoch.stats.migrations: 0 kern.epoch.stats.nblocked: 0 kern.devstat.version: 6 kern.devstat.generation: 82 kern.devstat.numdevs: 4 kern.ccpu: 0 kern.sched.topology_spec: 0 kern.sched.always_steal: 0 kern.sched.trysteal_limit: 2 kern.sched.steal_thresh: 2 kern.sched.steal_idle: 1 kern.sched.balance_interval: 127 kern.sched.balance: 1 kern.sched.affinity: 1 kern.sched.idlespinthresh: 157 kern.sched.idlespins: 10000 kern.sched.static_boost: 152 kern.sched.preempt_thresh: 80 kern.sched.interact: 30 kern.sched.slice: 12 kern.sched.quantum: 94488 kern.sched.name: ULE kern.sched.preemption: 1 kern.sched.cpusetsize: 32 kern.callout_stat: 0 kern.pin_pcpu_swi: 0 kern.pin_default_swi: 0 kern.ncallout: 18508 kern.threads.max_threads_hits: 0 kern.threads.max_threads_per_proc: 1500 kern.timecounter.tsc_shift: 1 kern.timecounter.smp_tsc_adjust: 0 kern.timecounter.smp_tsc: 0 kern.timecounter.invariant_tsc: 1 kern.timecounter.fast_gettime: 1 kern.timecounter.tick: 1 kern.timecounter.choice: ACPI-fast(900) i8254(0) HPET(950) TSC-low(1000) dummy(-1000000) kern.timecounter.hardware: TSC-low kern.timecounter.alloweddeviation: 5 kern.timecounter.timehands_count: 2 kern.timecounter.stepwarnings: 0 kern.timecounter.tc.ACPI-fast.quality: 900 kern.timecounter.tc.ACPI-fast.frequency: 3579545 kern.timecounter.tc.ACPI-fast.counter: 7761236 kern.timecounter.tc.ACPI-fast.mask: 16777215 kern.timecounter.tc.i8254.quality: 0 kern.timecounter.tc.i8254.frequency: 1193182 kern.timecounter.tc.i8254.counter: 57213 kern.timecounter.tc.i8254.mask: 65535 kern.timecounter.tc.HPET.quality: 950 kern.timecounter.tc.HPET.frequency: 14318180 kern.timecounter.tc.HPET.counter: 26721736 kern.timecounter.tc.HPET.mask: 4294967295 kern.timecounter.tc.TSC-low.quality: 1000 kern.timecounter.tc.TSC-low.frequency: 1199985500 kern.timecounter.tc.TSC-low.counter: 1010228270 kern.timecounter.tc.TSC-low.mask: 4294967295 kern.fscale: 2048 kern.corefile: %N.core kern.compress_user_cores_level: 6 kern.compress_user_cores: 0 kern.coredump_devctl: 0 kern.nodump_coredump: 0 kern.coredump: 1 kern.capmode_coredump: 0 kern.sugid_coredump: 0 kern.lognosys: 0 kern.sigqueue.alloc_fail: 0 kern.sigqueue.overflow: 0 kern.sigqueue.preallocate: 1024 kern.sigqueue.max_pending_per_proc: 128 kern.forcesigexit: 1 kern.kerneldump_gzlevel: 6 kern.suspend_blocked: 0 kern.shutdown.dumpdevname: da0s1b kern.shutdown.kproc_shutdown_wait: 60 kern.shutdown.poweroff_delay: 5000 kern.shutdown.show_busybufs: 0 kern.powercycle_on_panic: 0 kern.poweroff_on_panic: 0 kern.sync_on_panic: 0 kern.panic_reboot_wait_time: 15 kern.racct.rctl.throttle_pct2: 4294967295 kern.racct.rctl.throttle_pct: 4294967295 kern.racct.rctl.throttle_max: 4294967295 kern.racct.rctl.throttle_min: 4294967295 kern.racct.rctl.devctl_rate_limit: 10 kern.racct.rctl.log_rate_limit: 10 kern.racct.rctl.maxbufsize: 16777216 kern.racct.pcpu_threshold: 1 kern.racct.enable: 0 kern.proc_vmmap_skip_resident_count: 0 kern.kstack_pages: 4 kern.hwpmc.softevents: 16 kern.fallback_elf_brand: -1 kern.pid_max: 99999 kern.features.ufs_quota64: 1 kern.features.ufs_quota: 1 kern.features.ufs_gjournal: 1 kern.features.ufs_acl: 1 kern.features.softupdates: 1 kern.features.ffs_snapshot: 1 kern.features.security_mac: 1 kern.features.audit: 1 kern.features.ipsec_natt: 1 kern.features.ipsec: 1 kern.features.inet6: 1 kern.features.netdump: 1 kern.features.sctp: 1 kern.features.inet: 1 kern.features.vimage: 1 kern.features.aio: 1 kern.features.posix_shm: 1 kern.features.sysv_shm: 1 kern.features.sysv_sem: 1 kern.features.sysv_msg: 1 kern.features.process_descriptors: 1 kern.features.security_capabilities: 1 kern.features.security_capability_mode: 1 kern.features.stack: 1 kern.features.ekcd: 1 kern.features.rctl: 1 kern.features.racct: 1 kern.features.hwpmc_hooks: 1 kern.features.compat_freebsd7: 1 kern.features.compat_freebsd6: 1 kern.features.compat_freebsd5: 1 kern.features.compat_freebsd4: 1 kern.features.ktrace: 1 kern.features.kdtrace_hooks: 1 kern.features.kposix_priority_scheduling: 1 kern.features.geom_part_mbr: 1 kern.features.geom_part_gpt: 1 kern.features.geom_part_ebr_compat: 1 kern.features.geom_part_ebr: 1 kern.features.geom_part_bsd: 1 kern.features.geom_label: 1 kern.features.nfsd: 1 kern.features.nfscl: 1 kern.features.evdev_support: 1 kern.features.evdev: 1 kern.features.ata_cam: 1 kern.features.compat_freebsd_32bit: 1 kern.features.scbus: 1 kern.conftxt: options CONFIG_AUTOGENERATED ident GENERIC machine amd64 cpu HAMMER makeoptions WITH_CTF=1 makeoptions DEBUG=-g options EVDEV_SUPPORT options XENHVM options USB_DEBUG options ATH_ENABLE_11N options AH_AR5416_INTERRUPT_MITIGATION options AH_SUPPORT_AR5416 options IEEE80211_SUPPORT_MESH options IEEE80211_AMPDU_AGE options IEEE80211_DEBUG options SC_PIXEL_MODE options VESA options PCI_IOV options PCI_HP options ACPI_DMAR options EARLY_AP_STARTUP options SMP options NETDUMP options ZSTDIO options GZIO options EKCD options KDB_TRACE options KDB options RCTL options RACCT_DEFAULT_TO_DISABLED options RACCT options INCLUDE_CONFIG_FILE options DDB_CTF options KDTRACE_HOOKS options KDTRACE_FRAME options MAC options CAPABILITIES options CAPABILITY_MODE options AUDIT options HWPMC_HOOKS options KBD_INSTALL_CDEV options PRINTF_BUFR_SIZE=128 options _KPOSIX_PRIORITY_SCHEDULING options SYSVSEM options SYSVMSG options SYSVSHM options STACK options KTRACE options SCSI_DELAY=5000 options COMPAT_FREEBSD11 options COMPAT_FREEBSD10 options COMPAT_FREEBSD9 options COMPAT_FREEBSD7 options COMPAT_FREEBSD6 options COMPAT_FREEBSD5 options COMPAT_FREEBSD4 options COMPAT_FREEBSD32 options EFIRT options GEOM_LABEL options GEOM_RAID options PSEUDOFS options PROCFS options CD9660 options MSDOSFS options NFS_ROOT options NFSLOCKD options NFSD options NFSCL options MD_ROOT options QUOTA options UFS_GJOURNAL options UFS_DIRHASH options UFS_ACL options SOFTUPDATES options FFS options SCTP options TCP_RFC7413 options TCP_HHOOK options TCP_BLACKBOX options TCP_OFFLOAD options IPSEC_SUPPORT options IPSEC options INET6 options INET options VIMAGE options PREEMPTION options NUMA options SCHED_ULE options NEW_PCIB options GEOM_PART_GPT options GEOM_PART_MBR options GEOM_PART_EBR_COMPAT options GEOM_PART_EBR options GEOM_PART_BSD device isa device mem device io device uart_ns8250 device cpufreq device acpi device pci device fdc device ahci device ata device mvs device siis device ahc device ahd device esp device hptiop device isp device mpt device mps device mpr device sym device trm device isci device ocs_fc device scbus device ch device da device sa device cd device pass device ses device amr device arcmsr device ciss device dpt device hptmv device hptnr device hptrr device hpt27xx device iir device ips device mly device twa device smartpqi device tws device aac device aacp device aacraid device ida device mfi device mlx device mrsas device pmspcv device twe device nvme device nvd device atkbdc device atkbd device psm device kbdmux device vga device splash device sc device vt device vt_vga device vt_efifb device agp device cbb device pccard device cardbus device uart device ppc device ppbus device lpt device ppi device puc device iflib device em device ix device ixv device ixl device iavf device vmx device bxe device de device le device ti device txp device vx device miibus device ae device age device alc device ale device bce device bfe device bge device cas device dc device et device fxp device gem device hme device jme device lge device msk device nfe device nge device pcn device re device rl device sf device sge device sis device sk device ste device stge device tl device tx device vge device vr device wb device xl device wlan device wlan_wep device wlan_ccmp device wlan_tkip device wlan_amrr device an device ath device ath_pci device ath_hal device ath_rate_sample device ipw device iwi device iwn device malo device mwl device ral device wi device wpi device crypto device loop device random device padlock_rng device rdrand_rng device ether device vlan device tun device md device gif device firmware device bpf device uhci device ohci device ehci device xhci device usb device ukbd device umass device sound device snd_cmi device snd_csa device snd_emu10kx device snd_es137x device snd_hda device snd_ich device snd_via8233 device mmc device mmcsd device sdhci device virtio device virtio_pci device vtnet device virtio_blk device virtio_scsi device virtio_balloon device hyperv device xenpci device netmap device evdev device uinput kern.supported_archs: amd64 i386 kern.maxusers: 461 kern.compiler_version: FreeBSD clang version 8.0.1 (tags/RELEASE_801/final 366581) (based on LLVM 8.0.1) kern.ident: GENERIC kern.malloc_count: 422 kern.module_path: /boot/kernel;/boot/modules;/boot/dtb;/boot/dtb/overlays kern.ktrace.request_pool: 100 kern.ktrace.genio_size: 4096 kern.randompid: 0 kern.lastpid: 1861 kern.disallow_high_osrel: 0 kern.ps_arg_cache_limit: 256 kern.stackprot: 7 kern.coredump_pack_vmmapinfo: 1 kern.coredump_pack_fileinfo: 1 kern.kq_calloutmax: 4096 kern.eventtimer.periodic: 0 kern.eventtimer.timer: LAPIC kern.eventtimer.idletick: 0 kern.eventtimer.singlemul: 4 kern.eventtimer.choice: LAPIC(600) i8254(100) RTC(0) kern.eventtimer.et.RTC.quality: 0 kern.eventtimer.et.RTC.frequency: 32768 kern.eventtimer.et.RTC.flags: 17 kern.eventtimer.et.i8254.quality: 100 kern.eventtimer.et.i8254.frequency: 1193182 kern.eventtimer.et.i8254.flags: 1 kern.eventtimer.et.LAPIC.quality: 600 kern.eventtimer.et.LAPIC.frequency: 2399971000 kern.eventtimer.et.LAPIC.flags: 7 kern.openfiles: 79 kern.chroot_allow_open_directories: 1 kern.vty: vt kern.constty_wakeups_per_second: 5 kern.consmsgbuf_size: 8192 kern.consmute: 0 kern.console: ttyv0,/ttyv0, kern.cp_times: 1306 0 20708 3886 2221637 kern.cp_time: 1306 0 20708 3886 2221637 kern.acct_suspended: 0 kern.acct_configured: 0 kern.acct_chkfreq: 15 kern.acct_resume: 4 kern.acct_suspend: 2 kern.init_shutdown_timeout: 120 kern.init_path: /sbin/init:/sbin/oinit:/sbin/init.bak:/rescue/init kern.elf32.aslr.stack_gap: 3 kern.elf32.aslr.honor_sbrk: 1 kern.elf32.aslr.pie_enable: 0 kern.elf32.aslr.enable: 0 kern.elf32.read_exec: 0 kern.elf32.nxstack: 1 kern.elf32.fallback_brand: -1 kern.elf64.aslr.stack_gap: 3 kern.elf64.aslr.honor_sbrk: 1 kern.elf64.aslr.pie_enable: 0 kern.elf64.aslr.enable: 0 kern.elf64.nxstack: 1 kern.elf64.fallback_brand: -1 kern.geom.raid.raid5.enable: 1 kern.geom.raid.raid1e.enable: 1 kern.geom.raid.raid1e.rebuild_meta_update: 1024 kern.geom.raid.raid1e.rebuild_cluster_idle: 100 kern.geom.raid.raid1e.rebuild_fair_io: 20 kern.geom.raid.raid1e.rebuild_slab_size: 1048576 kern.geom.raid.raid1.enable: 1 kern.geom.raid.raid1.rebuild_meta_update: 1024 kern.geom.raid.raid1.rebuild_cluster_idle: 100 kern.geom.raid.raid1.rebuild_fair_io: 20 kern.geom.raid.raid1.rebuild_slab_size: 1048576 kern.geom.raid.raid0.enable: 1 kern.geom.raid.concat.enable: 1 kern.geom.raid.sii.enable: 1 kern.geom.raid.promise.enable: 1 kern.geom.raid.nvidia.enable: 1 kern.geom.raid.jmicron.enable: 1 kern.geom.raid.intel.enable: 1 kern.geom.raid.ddf.enable: 1 kern.geom.raid.idle_threshold: 1000000 kern.geom.raid.name_format: 0 kern.geom.raid.disconnect_on_failure: 1 kern.geom.raid.clean_time: 5 kern.geom.raid.start_timeout: 30 kern.geom.raid.read_err_thresh: 10 kern.geom.raid.debug: 0 kern.geom.raid.aggressive_spare: 0 kern.geom.raid.enable: 1 kern.geom.part.mbr.enforce_chs: 0 kern.geom.part.gpt.allow_nesting: 0 kern.geom.part.allow_nesting: 0 kern.geom.part.auto_resize: 1 kern.geom.part.check_integrity: 1 kern.geom.label.disk_ident.enable: 1 kern.geom.label.gptid.enable: 1 kern.geom.label.gpt.enable: 1 kern.geom.label.ufs.enable: 1 kern.geom.label.ufsid.enable: 1 kern.geom.label.reiserfs.enable: 1 kern.geom.label.ntfs.enable: 1 kern.geom.label.msdosfs.enable: 1 kern.geom.label.iso9660.enable: 1 kern.geom.label.flashmap.enable: 1 kern.geom.label.ext2fs.enable: 1 kern.geom.label.debug: 0 kern.geom.collectstats: 1 kern.geom.notaste: 0 kern.geom.debugflags: 0 kern.geom.conftxt: 0 DISK da0 21474836480 512 hd 255 sc 63 1 PART da0s1 21474803712 512 i 1 o 32768 ty freebsd xs MBR xt 165 2 PART da0s1b 1073709056 512 i 2 o 20401094656 ty freebsd-swap xs BSD xt 1 2 PART da0s1a 20401094656 512 i 1 o 0 ty freebsd-ufs xs BSD xt 7 0 DISK cd0 4466092032 2048 hd 0 sc 0 1 LABEL iso9660/12_1_RELEASE_AMD64_DVD 4466092032 2048 i 0 o 0 kern.geom.confdot: digraph geom { z0xfffff80003a16b00 [shape=box,label="DEV\nda0s1b\nr#4"]; z0xfffff80003a0ae80 [label="r0w0e0"]; z0xfffff80003a0ae80 -> z0xfffff80003a16a00; z0xfffff80003a16b00 -> z0xfffff80003a0ae80; z0xfffff80003a16d00 [shape=box,label="DEV\nda0s1a\nr#4"]; z0xfffff80003a0af00 [label="r0w0e0"]; z0xfffff80003a0af00 -> z0xfffff80003a16c00; z0xfffff80003a16d00 -> z0xfffff80003a0af00; z0xfffff80003a15500 [shape=box,label="DEV\nda0s1\nr#3"]; z0xfffff80003a09280 [label="r0w0e0"]; z0xfffff80003a09280 -> z0xfffff80003a15400; z0xfffff80003a15500 -> z0xfffff80003a09280; z0xfffff80003a15e00 [shape=box,label="DEV\niso9660/12_1_RELEASE_AMD64_DVD\nr#3"]; z0xfffff80003a09480 [label="r0w0e0"]; z0xfffff80003a09480 -> z0xfffff80003a15a00; z0xfffff80003a15e00 -> z0xfffff80003a09480; z0xfffff80003a14200 [shape=box,label="DEV\nda0\nr#2"]; z0xfffff80003a09680 [label="r0w0e0"]; z0xfffff80003a09680 -> z0xfffff80003a14000; z0xfffff80003a14200 -> z0xfffff80003a09680; z0xfffff80003898d00 [shape=box,label="DEV\ncd0\nr#2"]; z0xfffff800034d7f00 [label="r0w0e0"]; z0xfffff800034d7f00 -> z0xfffff80003a14300; z0xfffff80003898d00 -> z0xfffff800034d7f00; z0xfffff80003a05c00 [shape=box,label="SWAP\nswap\nr#4"]; z0xfffff80003a0a280 [label="r1w1e0"]; z0xfffff80003a0a280 -> z0xfffff80003a16a00; z0xfffff80003a05c00 -> z0xfffff80003a0a280; z0xfffff80003a15900 [shape=box,label="PART\nda0s1\nr#3"]; z0xfffff80003a09200 [label="r2w2e3"]; z0xfffff80003a09200 -> z0xfffff80003a15400; z0xfffff80003a15900 -> z0xfffff80003a09200; z0xfffff80003a16a00 [shape=hexagon,label="da0s1b\nr1w1e0\nerr#0\nsector=512\nstripe=0"]; z0xfffff80003a16a00 -> z0xfffff80003a15900; z0xfffff80003a16c00 [shape=hexagon,label="da0s1a\nr1w1e1\nerr#0\nsector=512\nstripe=0"]; z0xfffff80003a16c00 -> z0xfffff80003a15900; z0xfffff80003a15000 [shape=box,label="PART\niso9660/12_1_RELEASE_AMD64_DVD\nr#3"]; z0xfffff80003a09300 [label="r0w0e0"]; z0xfffff80003a09300 -> z0xfffff80003a15a00; z0xfffff80003a15000 -> z0xfffff80003a09300; z0xfffff80003a15600 [shape=box,label="PART\nda0\nr#2"]; z0xfffff80003a09600 [label="r2w2e5"]; z0xfffff80003a09600 -> z0xfffff80003a14000; z0xfffff80003a15600 -> z0xfffff80003a09600; z0xfffff80003a15400 [shape=hexagon,label="da0s1\nr2w2e3\nerr#0\nsector=512\nstripe=0"]; z0xfffff80003a15400 -> z0xfffff80003a15600; z0xfffff80003a15d00 [shape=box,label="PART\ncd0\nr#2"]; z0xfffff80003a09800 [label="r0w0e0"]; z0xfffff80003a09800 -> z0xfffff80003a14300; z0xfffff80003a15d00 -> z0xfffff80003a09800; z0xfffff80003a15b00 [shape=box,label="LABEL\ncd0\nr#2"]; z0xfffff80003a09700 [label="r0w0e0"]; z0xfffff80003a09700 -> z0xfffff80003a14300; z0xfffff80003a15b00 -> z0xfffff80003a09700; z0xfffff80003a15a00 [shape=hexagon,label="iso9660/12_1_RELEASE_AMD64_DVD\nr0w0e0\nerr#0\nsector=2048\nstripe=0"]; z0xfffff80003a15a00 -> z0xfffff80003a15b00; z0xfffff80003a03300 [shape=box,label="VFS\nffs.da0s1a\nr#4"]; z0xfffff80003a09780 [label="r1w1e1"]; z0xfffff80003a09780 -> z0xfffff80003a16c00; z0xfffff80003a03300 -> z0xfffff80003a09780; z0xfffff80003a14100 [shape=box,label="DISK\nda0\nr#1"]; z0xfffff80003a14000 [shape=hexagon,label="da0\nr2w2e5\nerr#0\nsector=512\nstripe=0"]; z0xfffff80003a14000 -> z0xfffff80003a14100; z0xfffff80003a14400 [shape=box,label="DISK\ncd0\nr#1"]; z0xfffff80003a14300 [shape=hexagon,label="cd0\nr0w0e0\nerr#0\nsector=2048\nstripe=0"]; z0xfffff80003a14300 -> z0xfffff80003a14400; } kern.geom.confxml: FD RAID DEV da0s1b 4 r0w0e0 da0s1a 4 r0w0e0 da0s1 3 r0w0e0 iso9660/12_1_RELEASE_AMD64_DVD 3 r0w0e0 da0 2 r0w0e0 cd0 2 r0w0e0 MD SWAP swap 4 r1w1e0 PART da0s1 3 BSD 8 0 41942975 63 255 OK false r2w2e3 r1w1e0 da0s1b 1073709056 512 0 3221258240 39845888 41942975 2 freebsd-swap 20401094656 1073709056 1 r1w1e1 da0s1a 20401094656 512 0 32768 0 39845887 1 freebsd-ufs 0 20401094656 7 iso9660/12_1_RELEASE_AMD64_DVD 3 MBR 4 17 2180708 17 255 OK false r0w0e0 da0 2 MBR 4 63 41943039 63 255 OK false r2w2e5 r2w2e3 da0s1 21474803712 512 0 32768 64 41943039 1 freebsd 32768 21474803712 165 active HD(1,MBR,0x90909090,0x40,0x27fffc0) cd0 2 MBR 4 17 2180708 17 255 OK false r0w0e0 LABEL cd0 2 r0w0e0 r0w0e0 iso9660/12_1_RELEASE_AMD64_DVD 4466092032 2048 0 0 0 4466092032 8722836 0 0 VFS ffs.da0s1a 4 r1w1e1 Flashmap DISK da0 1 r2w2e5 da0 21474836480 512 0 0 255 63 0 VMware, VMware Virtual S cd0 1 r0w0e0 cd0 4466092032 2048 0 0 0 0 unknown NECVMWar VMware IDE CDR10 kern.geom.inflight_transient_maps: 0 kern.geom.transient_map_soft_failures: 0 kern.geom.transient_map_hard_failures: 0 kern.geom.transient_map_retries: 10 kern.geom.transient_maps: 0 kern.geom.disk.da0.flags: ba kern.geom.disk.da0.led: kern.geom.disk.cd0.flags: 0 kern.geom.disk.cd0.led: kern.geom.dev.delete_max_sectors: 262144 kern.disks: da0 cd0 kern.vt.splash_cpu_duration: 10 kern.vt.splash_cpu_style: 2 kern.vt.splash_ncpu: 0 kern.vt.splash_cpu: 0 kern.vt.kbd_panic: 0 kern.vt.kbd_debug: 1 kern.vt.kbd_reboot: 1 kern.vt.kbd_poweroff: 1 kern.vt.kbd_halt: 1 kern.vt.suspendswitch: 1 kern.vt.deadtimer: 15 kern.vt.debug: 0 kern.vt.enable_bell: 1 kern.vt.enable_altgr: 1 kern.random.fortuna.minpoolsize: 64 kern.random.harvest.mask_symbolic: PURE_RDRAND,[UMA],[FS_ATIME],SWI,INTERRUPT,NET_NG,NET_ETHER,NET_TUN,MOUSE,KEYBOARD,ATTACH,CACHED kern.random.harvest.mask_bin: 000000010000000111111111 kern.random.harvest.mask: 66047 kern.random.random_sources: 'Intel Secure Key RNG' kern.evdev.input.3.uniq: kern.evdev.input.3.phys: psm0 kern.evdev.input.3.id: { bustype = 0x0011, vendor = 0x0002, product = 0x0001, version = 0x0000 } kern.evdev.input.3.name: IntelliMouse kern.evdev.input.2.uniq: kern.evdev.input.2.phys: atkbd0 kern.evdev.input.2.id: { bustype = 0x0011, vendor = 0x0001, product = 0x0001, version = 0x0000 } kern.evdev.input.2.name: AT keyboard kern.evdev.input.1.uniq: kern.evdev.input.1.phys: sysmouse kern.evdev.input.1.id: { bustype = 0x0006, vendor = 0x0000, product = 0x0000, version = 0x0000 } kern.evdev.input.1.name: System mouse kern.evdev.input.0.uniq: kern.evdev.input.0.phys: kbdmux0 kern.evdev.input.0.id: { bustype = 0x0006, vendor = 0x0000, product = 0x0000, version = 0x0000 } kern.evdev.input.0.name: System keyboard multiplexer kern.evdev.sysmouse_t_axis: 0 kern.evdev.rcpt_mask: 3 kern.cam.enc.emulate_array_devices: 1 kern.cam.enc.verbose: 0 kern.cam.sa.allow_io_split: 0 kern.cam.da.0.sort_io_queue: 0 kern.cam.da.0.p_type: 0 kern.cam.da.0.rotating: 0 kern.cam.da.0.unmapped_io: 1 kern.cam.da.0.error_inject: 0 kern.cam.da.0.max_seq_zones: 0 kern.cam.da.0.optimal_nonseq_zones: 0 kern.cam.da.0.optimal_seq_zones: 0 kern.cam.da.0.zone_support: None kern.cam.da.0.zone_mode: Not Zoned kern.cam.da.0.minimum_cmd_size: 6 kern.cam.da.0.delete_max: 131072 kern.cam.da.0.delete_method: NONE kern.cam.da.default_softtimeout: 0 kern.cam.da.disable_wp_detection: 0 kern.cam.da.send_ordered: 1 kern.cam.da.default_timeout: 60 kern.cam.da.retry_count: 4 kern.cam.da.poll_period: 3 kern.cam.ada.write_cache: 1 kern.cam.ada.read_ahead: 1 kern.cam.ada.spindown_suspend: 1 kern.cam.ada.spindown_shutdown: 1 kern.cam.ada.send_ordered: 1 kern.cam.ada.default_timeout: 30 kern.cam.ada.retry_count: 4 kern.cam.cd.0.minimum_cmd_size: 6 kern.cam.cd.timeout: 30000 kern.cam.cd.retry_count: 4 kern.cam.cd.poll_period: 3 kern.cam.scsi_delay: 5000 kern.cam.cam_srch_hi: 0 kern.cam.nda.max_trim: 256 kern.cam.pmp.hide_special: 1 kern.cam.pmp.default_timeout: 30 kern.cam.pmp.retry_count: 1 kern.cam.debug_delay: 0 kern.cam.dflags: 0 kern.cam.num_doneqs: 1 kern.cam.announce_nosbuf: 0 kern.cam.xpt_generation: 43 kern.cam.boot_delay: 0 kern.cam.mapmem_thresh: 65536 kern.cam.sort_io_queues: 1 vm.vmtotal: System wide totals computed every five seconds: (values in kilobytes) =============================================== Processes: (RUNQ: 1 Disk Wait: 0 Page Wait: 0 Sleep: 21) Virtual Memory: (Total: 278176K Active: 261408K) Real Memory: (Total: 30400K Active: 28876K) Shared Virtual Memory: (Total: 28588K Active: 11892K) Shared Real Memory: (Total: 12260K Active: 10784K) Free Memory: 1870520K vm.loadavg: { 0.33 0.33 0.37 } vm.v_free_min: 3220 vm.v_free_target: 10726 vm.v_free_reserved: 718 vm.v_inactive_target: 16089 vm.v_pageout_free_min: 34 vm.swap_enabled: 1 vm.overcommit: 0 vm.domain.0.pidctrl.kdd: 8 vm.domain.0.pidctrl.kid: 4 vm.domain.0.pidctrl.kpd: 3 vm.domain.0.pidctrl.bound: 171616 vm.domain.0.pidctrl.interval: 10 vm.domain.0.pidctrl.setpoint: 10726 vm.domain.0.pidctrl.ticks: -2145773934 vm.domain.0.pidctrl.output: 0 vm.domain.0.pidctrl.input: 467630 vm.domain.0.pidctrl.derivative: 128 vm.domain.0.pidctrl.integral: 0 vm.domain.0.pidctrl.olderror: -457032 vm.domain.0.pidctrl.error: -456904 vm.domain.0.stats.free_severe: 1969 vm.domain.0.stats.free_min: 3220 vm.domain.0.stats.free_reserved: 718 vm.domain.0.stats.free_target: 10726 vm.domain.0.stats.inactive_target: 16089 vm.domain.0.stats.unswppdpgs: 0 vm.domain.0.stats.unswappable: 0 vm.domain.0.stats.laundpdpgs: 0 vm.domain.0.stats.laundry: 0 vm.domain.0.stats.inactpdpgs: 0 vm.domain.0.stats.inactive: 3584 vm.domain.0.stats.actpdpgs: 32748 vm.domain.0.stats.active: 504 vm.domain.0.stats.free_count: 467629 vm.kvm_free: 2198561878016 vm.kvm_size: 2199023251456 vm.pmap.pdpe.demotions: 0 vm.pmap.pde.promotions: 116 vm.pmap.pde.p_failures: 0 vm.pmap.pde.mappings: 14 vm.pmap.pde.demotions: 13 vm.pmap.di_locked: 0 vm.pmap.pcid_save_cnt: 152651 vm.pmap.pti: 1 vm.pmap.invpcid_works: 1 vm.pmap.pcid_enabled: 1 vm.pmap.pg_ps_enabled: 1 vm.pmap.pat_works: 1 vm.swap_idle_threshold2: 10 vm.swap_idle_threshold1: 2 vm.swap_idle_enabled: 0 vm.reserv.reclaimed: 0 vm.reserv.partpopq: DOMAIN LEVEL SIZE NUMBER 0, -1, 205124K, 106 vm.reserv.fullpop: 6 vm.reserv.freed: 6094 vm.reserv.broken: 0 vm.ndomains: 1 vm.phys_locality: 0: -1 vm.phys_segs: SEGMENT 0: start: 0x1000 end: 0x9f000 domain: 0 free list: 0xffffffff81fadaf0 SEGMENT 1: start: 0x100000 end: 0x1000000 domain: 0 free list: 0xffffffff81fadaf0 SEGMENT 2: start: 0x1000000 end: 0x265d000 domain: 0 free list: 0xffffffff81fad880 SEGMENT 3: start: 0x2666000 end: 0x269b000 domain: 0 free list: 0xffffffff81fad880 SEGMENT 4: start: 0x2800000 end: 0x7caa1000 domain: 0 free list: 0xffffffff81fad880 SEGMENT 5: start: 0x7ff03000 end: 0x7ffe6000 domain: 0 free list: 0xffffffff81fad880 vm.phys_free: DOMAIN 0: FREE LIST 0: ORDER (SIZE) | NUMBER | POOL 0 | POOL 1 -- -- -- -- -- -- 12 ( 16384K) | 93 | 0 11 ( 8192K) | 5 | 1 10 ( 4096K) | 11 | 0 9 ( 2048K) | 13 | 0 8 ( 1024K) | 3 | 0 7 ( 512K) | 5 | 1 6 ( 256K) | 9 | 0 5 ( 128K) | 15 | 1 4 ( 64K) | 35 | 1 3 ( 32K) | 53 | 0 2 ( 16K) | 119 | 0 1 ( 8K) | 234 | 1 0 ( 4K) | 489 | 1 FREE LIST 1: ORDER (SIZE) | NUMBER | POOL 0 | POOL 1 -- -- -- -- -- -- 12 ( 16384K) | 0 | 0 11 ( 8192K) | 0 | 0 10 ( 4096K) | 0 | 0 9 ( 2048K) | 0 | 0 8 ( 1024K) | 0 | 0 7 ( 512K) | 0 | 0 6 ( 256K) | 1 | 0 5 ( 128K) | 1 | 0 4 ( 64K) | 2 | 0 3 ( 32K) | 2 | 0 2 ( 16K) | 2 | 0 1 ( 8K) | 0 | 0 0 ( 4K) | 0 | 0 vm.oom_pf_secs: 10 vm.max_wired: 164694 vm.background_launder_max: 20480 vm.background_launder_rate: 4096 vm.act_scan_laundry_weight: 3 vm.pageout_oom_seq: 12 vm.pageout_lock_miss: 0 vm.disable_swapspace_pageouts: 0 vm.lowmem_period: 10 vm.pageout_update_period: 600 vm.panic_on_oom: 0 vm.page_blacklist: vm.tryrelock_restart: 0 vm.boot_pages: 5 vm.old_msync: 0 vm.mincore_mapped: 1 vm.old_mlock: 0 vm.stats.object.bypasses: 683 vm.stats.object.collapses: 4318 vm.stats.vm.v_pdpages: 32748 vm.stats.vm.v_tcached: 0 vm.stats.vm.v_cache_count: 0 vm.stats.vm.v_free_severe: 1969 vm.stats.vm.v_interrupt_free_min: 2 vm.stats.vm.v_pageout_free_min: 34 vm.stats.vm.v_laundry_count: 0 vm.stats.vm.v_inactive_count: 3584 vm.stats.vm.v_inactive_target: 16089 vm.stats.vm.v_active_count: 504 vm.stats.vm.v_wire_count: 28334 vm.stats.vm.v_free_count: 467629 vm.stats.vm.v_free_min: 3220 vm.stats.vm.v_free_target: 10726 vm.stats.vm.v_free_reserved: 718 vm.stats.vm.v_page_count: 500770 vm.stats.vm.v_page_size: 4096 vm.stats.vm.v_kthreadpages: 0 vm.stats.vm.v_rforkpages: 114 vm.stats.vm.v_vforkpages: 25068 vm.stats.vm.v_forkpages: 62603 vm.stats.vm.v_kthreads: 22 vm.stats.vm.v_rforks: 2 vm.stats.vm.v_vforks: 699 vm.stats.vm.v_forks: 1138 vm.stats.vm.v_tfree: 532683 vm.stats.vm.v_pfree: 207587 vm.stats.vm.v_dfree: 0 vm.stats.vm.v_pdshortfalls: 0 vm.stats.vm.v_pdwakeups: 0 vm.stats.vm.v_reactivated: 0 vm.stats.vm.v_intrans: 0 vm.stats.vm.v_vnodepgsout: 0 vm.stats.vm.v_vnodepgsin: 7981 vm.stats.vm.v_vnodeout: 0 vm.stats.vm.v_vnodein: 1075 vm.stats.vm.v_swappgsout: 0 vm.stats.vm.v_swappgsin: 0 vm.stats.vm.v_swapout: 0 vm.stats.vm.v_swapin: 0 vm.stats.vm.v_ozfod: 0 vm.stats.vm.v_zfod: 306807 vm.stats.vm.v_cow_optim: 26 vm.stats.vm.v_cow_faults: 71061 vm.stats.vm.v_io_faults: 946 vm.stats.vm.v_vm_faults: 515528 vm.stats.sys.v_soft: 255400 vm.stats.sys.v_intr: 75266 vm.stats.sys.v_syscall: 1808001 vm.stats.sys.v_trap: 525747 vm.stats.sys.v_swtch: 1750830 vm.v_free_severe: 1969 vm.aslr_restarts: 0 vm.cluster_anon: 1 vm.max_kernel_address: 18446744073709547520 vm.min_kernel_address: 18446741874686296064 vm.kstacks: 128 vm.kstack_cache_size: 128 vm.pfault_oom_wait: 10 vm.pfault_oom_attempts: 3 vm.zone_warnings: 1 vm.zone_count: 126 vm.uma_kmem_total: 28069888 vm.uma_kmem_limit: 2051153920 vm.nswapdev: 1 vm.dmmax: 32 vm.swap_fragmentation: Free space on device da0s1b: number of maximal free ranges: 1 largest free range: 262134 average maximal free range size: 262134 number of maximal free ranges of different sizes: count | size range ----- | ---------- 1 | 262134 vm.swap_async_max: 4 vm.swap_maxpages: 4006176 vm.swzone: 34052496 vm.swap_total: 1073709056 vm.swap_reserved: 346550272 vm.phys_pager_cluster: 1024 vm.kmem_map_free: 2023084032 vm.kmem_map_size: 28069888 vm.kmem_size_scale: 1 vm.kmem_size_max: 1319413950874 vm.kmem_size_min: 0 vm.kmem_zmax: 65536 vm.kmem_size: 2051153920 vm.md_malloc_wait: 0 vfs.msdosfs.use_buf_pager: 1 vfs.ufs.rename_restarts: 0 vfs.ufs.dirhash_reclaimpercent: 10 vfs.ufs.dirhash_lowmemcount: 0 vfs.ufs.dirhash_docheck: 0 vfs.ufs.dirhash_mem: 156106 vfs.ufs.dirhash_maxmem: 3452928 vfs.ufs.dirhash_minsize: 2560 vfs.nfs.downdelayinitial: 12 vfs.nfs.downdelayinterval: 30 vfs.nfs.defect: 0 vfs.nfs.iodmax: 20 vfs.nfs.iodmin: 0 vfs.nfs.iodmaxidle: 120 vfs.nfs.use_buf_pager: 1 vfs.nfs.fileid_maxwarnings: 10 vfs.nfs.diskless_rootpath: vfs.nfs.diskless_valid: 0 vfs.nfs.nfs_ip_paranoia: 1 vfs.nfs.nfs_directio_allow_mmap: 1 vfs.nfs.nfs_keep_dirty_on_error: 0 vfs.nfs.nfs_directio_enable: 0 vfs.nfs.clean_pages_on_close: 1 vfs.nfs.commit_on_close: 0 vfs.nfs.prime_access_cache: 0 vfs.nfs.access_cache_timeout: 60 vfs.nfs.dssameconn: 0 vfs.nfs.ignore_eexist: 0 vfs.nfs.pnfsiothreads: -1 vfs.nfs.userhashsize: 100 vfs.nfs.debuglevel: 0 vfs.nfs.callback_addr: vfs.nfs.realign_count: 0 vfs.nfs.realign_test: 0 vfs.nfs.pnfsmirror: 1 vfs.nfs.enable_uidtostring: 0 vfs.nfs.dsretries: 2 vfs.nfs.skip_wcc_data_onerr: 1 vfs.nfs.nfs3_jukebox_delay: 10 vfs.nfs.reconnects: 0 vfs.nfs.bufpackets: 4 vfs.devfs.dotimes: 0 vfs.devfs.rule_depth: 1 vfs.devfs.generation: 102 vfs.cd9660.use_buf_pager: 1 vfs.ffs.use_buf_pager: 1 vfs.ffs.compute_summary_at_mount: 0 vfs.ffs.doasyncinodeinit: 1 vfs.ffs.maxclustersearch: 10 vfs.ffs.dotrimcons: 1 vfs.ffs.doreallocblks: 1 vfs.ffs.doasyncfree: 1 vfs.ino64_trunc_error: 0 vfs.worklist_len: 3 vfs.timestamp_precision: 2 vfs.free_owe_inact: 0 vfs.reassignbufcalls: 11412 vfs.recycles: 0 vfs.freevnodes: 600 vfs.wantfreevnodes: 28105 vfs.mnt_free_list_batch: 128 vfs.vnodes_created: 4256 vfs.numvnodes: 2917 vfs.root_mount_hold: vfs.root_mount_always_wait: 0 vfs.default_autoro: 0 vfs.usermount: 0 vfs.lookup_cap_dotdot_nonlocal: 1 vfs.lookup_cap_dotdot: 1 vfs.typenumhash: 1 vfs.read_min: 1 vfs.read_max: 64 vfs.write_behind: 1 vfs.cache.yield: 0 vfs.cache.cache_lock_vnodes_cel_3_failures: 0 vfs.cache.zap_and_exit_bucket_fail: 0 vfs.cache.numfullpathfound: 541 vfs.cache.numfullpathfail4: 0 vfs.cache.numfullpathfail2: 0 vfs.cache.numfullpathfail1: 0 vfs.cache.numfullpathcalls: 541 vfs.cache.numneghits: 11742 vfs.cache.numnegzaps: 0 vfs.cache.numposhits: 499876 vfs.cache.numposzaps: 1701 vfs.cache.nummisszap: 1534 vfs.cache.nummiss: 7247 vfs.cache.numchecks: 515435 vfs.cache.dotdothits: 101 vfs.cache.dothits: 767 vfs.cache.numcalls: 522968 vfs.cache.numcache: 2269 vfs.cache.numneg: 187 vfs.ncneghitsrequeue: 8 vfs.ncpurgeminvnodes: 128 vfs.ncsizefactor: 2 vfs.ncnegfactor: 12 vfs.buf_pager_relbuf: 0 vfs.flushwithdeps: 0 vfs.maxbcachebuf: 65536 vfs.unmapped_buf_allowed: 1 vfs.barrierwrites: 0 vfs.notbufdflushes: 0 vfs.flushbufqtarget: 100 vfs.numbufallocfails: 0 vfs.mappingrestarts: 0 vfs.getnewbufrestarts: 0 vfs.getnewbufcalls: 5320 vfs.hifreebuffers: 192 vfs.lofreebuffers: 128 vfs.numfreebuffers: 13525 vfs.dirtybufthresh: 3060 vfs.hidirtybuffers: 3401 vfs.lodirtybuffers: 1700 vfs.numdirtybuffers: 11 vfs.recursiveflushes: 428 vfs.altbufferflushes: 0 vfs.bdwriteskip: 0 vfs.dirtybufferflushes: 0 vfs.hirunningspace: 3473408 vfs.lorunningspace: 2359296 vfs.bufdefragcnt: 0 vfs.buffreekvacnt: 762 vfs.bufspacethresh: 215414784 vfs.hibufspace: 220938240 vfs.lobufspace: 209891328 vfs.maxmallocbufspace: 11046912 vfs.bufmallocspace: 0 vfs.maxbufspace: 221593600 vfs.bufkvaspace: 16580608 vfs.bufspace: 74547200 vfs.runningbufspace: 0 vfs.vmiodirenable: 1 vfs.aio.max_buf_aio: 16 vfs.aio.max_aio_queue_per_proc: 256 vfs.aio.max_aio_per_proc: 32 vfs.aio.aiod_lifetime: 3000 vfs.aio.num_unmapped_aio: 0 vfs.aio.num_buf_aio: 0 vfs.aio.num_queue_count: 0 vfs.aio.max_aio_queue: 1024 vfs.aio.target_aio_procs: 4 vfs.aio.num_aio_procs: 0 vfs.aio.max_aio_procs: 32 vfs.aio.unsafe_warningcnt: 1 vfs.aio.enable_unsafe: 0 vfs.acl_nfs4_old_semantics: 0 vfs.pfs.vncache.misses: 0 vfs.pfs.vncache.hits: 0 vfs.pfs.vncache.maxentries: 0 vfs.pfs.vncache.entries: 0 vfs.nfsd.fha.fhe_stats: No file handle entries. vfs.nfsd.fha.max_reqs_per_nfsd: 0 vfs.nfsd.fha.max_nfsds_per_fh: 8 vfs.nfsd.fha.bin_shift: 22 vfs.nfsd.fha.write: 1 vfs.nfsd.fha.read: 1 vfs.nfsd.fha.enable: 1 vfs.nfsd.request_space_throttle_count: 0 vfs.nfsd.request_space_throttled: 0 vfs.nfsd.request_space_low: 42732202 vfs.nfsd.request_space_high: 64098304 vfs.nfsd.request_space_used_highest: 0 vfs.nfsd.request_space_used: 0 vfs.nfsd.groups: 1 vfs.nfsd.threads: 0 vfs.nfsd.maxthreads: 1 vfs.nfsd.minthreads: 1 vfs.nfsd.cachetcp: 1 vfs.nfsd.tcpcachetimeo: 43200 vfs.nfsd.udphighwater: 500 vfs.nfsd.tcphighwater: 0 vfs.nfsd.dsdirsize: 20 vfs.nfsd.pnfsgetdsattr: 1 vfs.nfsd.enable_stringtouid: 0 vfs.nfsd.debuglevel: 0 vfs.nfsd.enable_locallocks: 0 vfs.nfsd.issue_delegations: 0 vfs.nfsd.commit_miss: 0 vfs.nfsd.commit_blks: 0 vfs.nfsd.mirrormnt: 1 vfs.nfsd.default_flexfile: 0 vfs.nfsd.async: 0 vfs.nfsd.server_max_nfsvers: 4 vfs.nfsd.server_min_nfsvers: 2 vfs.nfsd.nfs_privport: 0 vfs.nfsd.flexlinuxhack: 0 vfs.nfsd.pnfsstrictatime: 0 vfs.nfsd.allowreadforwriteopen: 1 vfs.nfsd.writedelegifpos: 0 vfs.nfsd.v4statelimit: 500000 vfs.nfsd.layouthighwater: 1000000 vfs.nfsd.sessionhashsize: 20 vfs.nfsd.fhhashsize: 20 vfs.nfsd.clienthashsize: 20 vfs.nfsd.statehashsize: 10 vfs.nfsd.enable_nogroupcheck: 1 vfs.nfsd.enable_nobodycheck: 1 vfs.nfsd.enable_checkutf8: 1 net.local.stream.recvspace: 8192 net.local.stream.sendspace: 8192 net.local.dgram.recvspace: 4096 net.local.dgram.maxdgram: 2048 net.local.seqpacket.recvspace: 8192 net.local.seqpacket.maxseqpacket: 8192 net.local.taskcount: 1 net.local.recycled: 0 net.local.deferred: 0 net.local.inflight: 0 net.inet.ip.portrange.randomtime: 45 net.inet.ip.portrange.randomcps: 10 net.inet.ip.portrange.randomized: 1 net.inet.ip.portrange.reservedlow: 0 net.inet.ip.portrange.reservedhigh: 1023 net.inet.ip.portrange.hilast: 65535 net.inet.ip.portrange.hifirst: 49152 net.inet.ip.portrange.last: 65535 net.inet.ip.portrange.first: 10000 net.inet.ip.portrange.lowlast: 600 net.inet.ip.portrange.lowfirst: 1023 net.inet.ip.forwarding: 0 net.inet.ip.redirect: 1 net.inet.ip.ttl: 64 net.inet.ip.sourceroute: 0 net.inet.ip.intr_queue_maxlen: 256 net.inet.ip.intr_queue_drops: 0 net.inet.ip.accept_sourceroute: 0 net.inet.ip.gifttl: 30 net.inet.ip.maxfragbucketsize: 7 net.inet.ip.maxfragsperpacket: 16 net.inet.ip.fragpackets: 0 net.inet.ip.maxfragpackets: 3976 net.inet.ip.curfrags: 0 net.inet.ip.maxfrags: 3912 net.inet.ip.process_options: 1 net.inet.ip.check_interface: 0 net.inet.ip.mcast.loop: 1 net.inet.ip.mcast.maxsocksrc: 128 net.inet.ip.mcast.maxgrpsrc: 512 net.inet.ip.random_id_total: 0 net.inet.ip.random_id_collisions: 0 net.inet.ip.random_id_period: 0 net.inet.ip.rfc6864: 1 net.inet.ip.random_id: 0 net.inet.ip.no_same_prefix: 0 net.inet.icmp.maskrepl: 0 net.inet.icmp.icmplim: 200 net.inet.icmp.error_keeptags: 0 net.inet.icmp.tstamprepl: 1 net.inet.icmp.bmcastecho: 0 net.inet.icmp.quotelen: 548 net.inet.icmp.reply_from_interface: 0 net.inet.icmp.reply_src: net.inet.icmp.log_redirect: 0 net.inet.icmp.drop_redirect: 0 net.inet.icmp.maskfake: 0 net.inet.icmp.icmplim_output: 1 net.inet.igmp.gsrdelay: 10 net.inet.igmp.default_version: 3 net.inet.igmp.legacysupp: 0 net.inet.igmp.v2enable: 1 net.inet.igmp.v1enable: 1 net.inet.igmp.sendlocal: 1 net.inet.igmp.sendra: 1 net.inet.igmp.recvifkludge: 1 net.inet.tcp.rfc1323: 1 net.inet.tcp.mssdflt: 536 net.inet.tcp.keepidle: 7200000 net.inet.tcp.keepintvl: 75000 net.inet.tcp.sendspace: 32768 net.inet.tcp.recvspace: 65536 net.inet.tcp.keepinit: 75000 net.inet.tcp.delacktime: 100 net.inet.tcp.v6mssdflt: 1220 net.inet.tcp.nolocaltimewait: 0 net.inet.tcp.maxtcptw: 12860 net.inet.tcp.per_cpu_timers: 0 net.inet.tcp.v6pmtud_blackhole_mss: 1220 net.inet.tcp.pmtud_blackhole_mss: 1200 net.inet.tcp.pmtud_blackhole_detection: 0 net.inet.tcp.rexmit_drop_options: 0 net.inet.tcp.keepcnt: 8 net.inet.tcp.finwait2_timeout: 60000 net.inet.tcp.fast_finwait2_recycle: 0 net.inet.tcp.always_keepalive: 1 net.inet.tcp.rexmit_slop: 200 net.inet.tcp.rexmit_min: 30 net.inet.tcp.rexmit_initial: 1000 net.inet.tcp.msl: 30000 net.inet.tcp.persmax: 60000 net.inet.tcp.persmin: 5000 net.inet.tcp.syncache.rst_on_sock_fail: 1 net.inet.tcp.syncache.rexmtlimit: 3 net.inet.tcp.syncache.hashsize: 512 net.inet.tcp.syncache.count: 0 net.inet.tcp.syncache.cachelimit: 15364 net.inet.tcp.syncache.bucketlimit: 30 net.inet.tcp.functions_inherit_listen_socket_stack: 1 net.inet.tcp.syncookies_only: 0 net.inet.tcp.syncookies: 1 net.inet.tcp.functions_available: Stack D Alias PCB count freebsd * freebsd 4 net.inet.tcp.functions_default: freebsd net.inet.tcp.soreceive_stream: 0 net.inet.tcp.isn_reseed_interval: 0 net.inet.tcp.icmp_may_rst: 1 net.inet.tcp.pcbcount: 4 net.inet.tcp.do_tcpdrain: 1 net.inet.tcp.tcbhashsize: 16384 net.inet.tcp.log_debug: 0 net.inet.tcp.ts_offset_per_conn: 1 net.inet.tcp.minmss: 216 net.inet.tcp.sack.globalholes: 0 net.inet.tcp.sack.globalmaxholes: 65536 net.inet.tcp.sack.maxholes: 128 net.inet.tcp.sack.enable: 1 net.inet.tcp.reass.queueguard: 16 net.inet.tcp.reass.new_limit: 0 net.inet.tcp.reass.maxqueuelen: 100 net.inet.tcp.reass.cursegments: 0 net.inet.tcp.reass.maxsegments: 7885 net.inet.tcp.sendbuf_auto_lowat: 0 net.inet.tcp.sendbuf_max: 2097152 net.inet.tcp.sendbuf_inc: 8192 net.inet.tcp.sendbuf_auto: 1 net.inet.tcp.tso: 1 net.inet.tcp.path_mtu_discovery: 1 net.inet.tcp.lro.entries: 8 net.inet.tcp.bb.log_auto_all: 0 net.inet.tcp.bb.log_auto_mode: 1 net.inet.tcp.bb.log_auto_ratio: 0 net.inet.tcp.bb.log_version: 6 net.inet.tcp.bb.log_id_tcpcb_entries: 0 net.inet.tcp.bb.log_id_tcpcb_limit: 0 net.inet.tcp.bb.log_id_entries: 0 net.inet.tcp.bb.log_id_limit: 0 net.inet.tcp.bb.log_global_entries: 0 net.inet.tcp.bb.log_global_limit: 1000000 net.inet.tcp.bb.log_session_limit: 10000 net.inet.tcp.bb.log_verbose: 0 net.inet.tcp.recvbuf_max: 2097152 net.inet.tcp.recvbuf_inc: 16384 net.inet.tcp.recvbuf_auto: 1 net.inet.tcp.insecure_rst: 0 net.inet.tcp.insecure_syn: 0 net.inet.tcp.ecn.maxretries: 1 net.inet.tcp.ecn.enable: 2 net.inet.tcp.abc_l_var: 2 net.inet.tcp.rfc3465: 1 net.inet.tcp.initcwnd_segments: 10 net.inet.tcp.rfc3390: 1 net.inet.tcp.rfc3042: 1 net.inet.tcp.rfc6675_pipe: 0 net.inet.tcp.drop_synfin: 0 net.inet.tcp.delayed_ack: 1 net.inet.tcp.blackhole: 0 net.inet.tcp.log_in_vain: 0 net.inet.tcp.hostcache.purgenow: 0 net.inet.tcp.hostcache.purge: 0 net.inet.tcp.hostcache.prune: 300 net.inet.tcp.hostcache.expire: 3600 net.inet.tcp.hostcache.count: 0 net.inet.tcp.hostcache.bucketlimit: 30 net.inet.tcp.hostcache.hashsize: 512 net.inet.tcp.hostcache.cachelimit: 15360 net.inet.tcp.hostcache.enable: 1 net.inet.tcp.fastopen.server_enable: 0 net.inet.tcp.fastopen.psk_enable: 0 net.inet.tcp.fastopen.path_disable_time: 900 net.inet.tcp.fastopen.numpsks: 0 net.inet.tcp.fastopen.numkeys: 0 net.inet.tcp.fastopen.maxpsks: 2 net.inet.tcp.fastopen.maxkeys: 2 net.inet.tcp.fastopen.keylen: 16 net.inet.tcp.fastopen.client_enable: 1 net.inet.tcp.fastopen.ccache_buckets: 2048 net.inet.tcp.fastopen.ccache_bucket_limit: 16 net.inet.tcp.fastopen.autokey: 120 net.inet.tcp.fastopen.acceptany: 0 net.inet.tcp.cc.newreno.beta_ecn: 80 net.inet.tcp.cc.newreno.beta: 50 net.inet.tcp.cc.abe_frlossreduce: 0 net.inet.tcp.cc.abe: 0 net.inet.tcp.cc.available: newreno net.inet.tcp.cc.algorithm: newreno net.inet.udp.checksum: 1 net.inet.udp.maxdgram: 9216 net.inet.udp.recvspace: 42080 net.inet.udp.blackhole: 0 net.inet.udp.log_in_vain: 0 net.inet.esp.esp_enable: 1 net.inet.ah.ah_cleartos: 1 net.inet.ah.ah_enable: 1 net.inet.ipcomp.ipcomp_enable: 1 net.inet.sctp.diag_info_code: 0 net.inet.sctp.blackhole: 0 net.inet.sctp.use_dcccecn: 1 net.inet.sctp.rttvar_steady_step: 20 net.inet.sctp.rttvar_eqret: 0 net.inet.sctp.rttvar_rtt: 5 net.inet.sctp.rttvar_bw: 4 net.inet.sctp.initial_cwnd: 3 net.inet.sctp.buffer_splitting: 0 net.inet.sctp.vtag_time_wait: 60 net.inet.sctp.nat_friendly_init: 0 net.inet.sctp.enable_sack_immediately: 1 net.inet.sctp.udp_tunneling_port: 0 net.inet.sctp.mobility_fasthandoff: 0 net.inet.sctp.mobility_base: 0 net.inet.sctp.default_frag_interleave: 1 net.inet.sctp.default_ss_module: 0 net.inet.sctp.default_cc_module: 0 net.inet.sctp.log_level: 0 net.inet.sctp.max_retran_chunk: 30 net.inet.sctp.min_residual: 1452 net.inet.sctp.abort_at_limit: 0 net.inet.sctp.hb_max_burst: 4 net.inet.sctp.do_sctp_drain: 1 net.inet.sctp.max_chained_mbufs: 5 net.inet.sctp.abc_l_var: 2 net.inet.sctp.nat_friendly: 1 net.inet.sctp.cwnd_maxburst: 1 net.inet.sctp.cmt_use_dac: 0 net.inet.sctp.cmt_on_off: 0 net.inet.sctp.outgoing_streams: 10 net.inet.sctp.incoming_streams: 2048 net.inet.sctp.add_more_on_output: 1452 net.inet.sctp.path_pf_threshold: 65535 net.inet.sctp.path_rtx_max: 5 net.inet.sctp.assoc_rtx_max: 10 net.inet.sctp.init_rtx_max: 8 net.inet.sctp.valid_cookie_life: 60000 net.inet.sctp.init_rto_max: 60000 net.inet.sctp.rto_initial: 3000 net.inet.sctp.rto_min: 1000 net.inet.sctp.rto_max: 60000 net.inet.sctp.secret_lifetime: 3600 net.inet.sctp.shutdown_guard_time: 0 net.inet.sctp.pmtu_raise_time: 600 net.inet.sctp.heartbeat_interval: 30000 net.inet.sctp.asoc_resource: 10 net.inet.sctp.sys_resource: 1000 net.inet.sctp.sack_freq: 2 net.inet.sctp.delayed_sack_time: 200 net.inet.sctp.chunkscale: 10 net.inet.sctp.min_split_point: 2904 net.inet.sctp.pcbhashsize: 256 net.inet.sctp.tcbhashsize: 1024 net.inet.sctp.maxchunks: 15649 net.inet.sctp.fr_maxburst: 4 net.inet.sctp.maxburst: 4 net.inet.sctp.peer_chkoh: 256 net.inet.sctp.pktdrop_enable: 0 net.inet.sctp.nrsack_enable: 0 net.inet.sctp.reconfig_enable: 1 net.inet.sctp.asconf_enable: 1 net.inet.sctp.auth_enable: 1 net.inet.sctp.pr_enable: 1 net.inet.sctp.ecn_enable: 1 net.inet.sctp.auto_asconf: 1 net.inet.sctp.recvspace: 1864135 net.inet.sctp.sendspace: 1864135 net.inet.ipsec.def_policy: 1 net.inet.ipsec.esp_trans_deflev: 1 net.inet.ipsec.esp_net_deflev: 1 net.inet.ipsec.ah_trans_deflev: 1 net.inet.ipsec.ah_net_deflev: 1 net.inet.ipsec.ah_cleartos: 1 net.inet.ipsec.dfbit: 0 net.inet.ipsec.ecn: 0 net.inet.ipsec.debug: 0 net.inet.ipsec.crypto_warn_interval: 1 net.inet.ipsec.filtertunnel: 0 net.inet.ipsec.natt_cksum_policy: 0 net.inet.ipsec.check_policy_history: 0 net.inet.ipsec.async_crypto: 0 net.inet.ipsec.crypto_support: 50331648 net.inet.raw.recvspace: 9216 net.inet.raw.maxdgram: 9216 net.link.generic.system.ifcount: 2 net.link.ether.inet.allow_multicast: 0 net.link.ether.inet.log_arp_permanent_modify: 1 net.link.ether.inet.log_arp_movements: 1 net.link.ether.inet.log_arp_wrong_iface: 1 net.link.ether.inet.garp_rexmit_count: 0 net.link.ether.inet.max_log_per_second: 1 net.link.ether.inet.maxhold: 1 net.link.ether.inet.wait: 20 net.link.ether.inet.proxyall: 0 net.link.ether.inet.maxtries: 5 net.link.ether.inet.max_age: 1200 net.link.vlan.mtag_pcp: 0 net.link.vlan.soft_pad: 0 net.link.gif.max_nesting: 1 net.link.tun.devfs_cloning: 1 net.link.log_promisc_mode_change: 1 net.link.log_link_state_change: 1 net.link.ifqmaxlen: 50 net.key.debug: 0 net.key.spi_trycnt: 1000 net.key.spi_minval: 256 net.key.spi_maxval: 268435455 net.key.int_random: 60 net.key.larval_lifetime: 30 net.key.blockacq_count: 10 net.key.blockacq_lifetime: 20 net.key.esp_keymin: 256 net.key.esp_auth: 0 net.key.ah_keymin: 128 net.key.preferred_oldsa: 1 net.key.spdcache.threshold: 32 net.key.spdcache.maxentries: 0 net.inet6.ip6.forwarding: 0 net.inet6.ip6.redirect: 1 net.inet6.ip6.hlim: 64 net.inet6.ip6.maxfragpackets: 3912 net.inet6.ip6.accept_rtadv: 0 net.inet6.ip6.log_interval: 5 net.inet6.ip6.hdrnestlimit: 15 net.inet6.ip6.dad_count: 1 net.inet6.ip6.auto_flowlabel: 1 net.inet6.ip6.defmcasthlim: 1 net.inet6.ip6.gifhlim: 30 net.inet6.ip6.kame_version: FreeBSD net.inet6.ip6.use_deprecated: 1 net.inet6.ip6.rr_prune: 5 net.inet6.ip6.v6only: 1 net.inet6.ip6.use_tempaddr: 0 net.inet6.ip6.temppltime: 86400 net.inet6.ip6.tempvltime: 604800 net.inet6.ip6.auto_linklocal: 1 net.inet6.ip6.prefer_tempaddr: 0 net.inet6.ip6.use_defaultzone: 0 net.inet6.ip6.maxfrags: 3912 net.inet6.ip6.mcast_pmtu: 0 net.inet6.ip6.no_radr: 0 net.inet6.ip6.norbit_raif: 0 net.inet6.ip6.rfc6204w3: 0 net.inet6.ip6.intr_queue_maxlen: 256 net.inet6.ip6.maxfragsperpacket: 64 net.inet6.ip6.maxfragbucketsize: 7 net.inet6.ip6.deembed_scopeid: 1 net.inet6.ip6.dad_enhanced: 1 net.inet6.ip6.mcast.loop: 1 net.inet6.ip6.mcast.maxsocksrc: 128 net.inet6.ip6.mcast.maxgrpsrc: 512 net.inet6.ipsec6.def_policy: 1 net.inet6.ipsec6.esp_trans_deflev: 1 net.inet6.ipsec6.esp_net_deflev: 1 net.inet6.ipsec6.ah_trans_deflev: 1 net.inet6.ipsec6.ah_net_deflev: 1 net.inet6.ipsec6.ecn: 0 net.inet6.ipsec6.debug: 0 net.inet6.ipsec6.filtertunnel: 0 net.inet6.icmp6.rediraccept: 1 net.inet6.icmp6.redirtimeout: 600 net.inet6.icmp6.nd6_prune: 1 net.inet6.icmp6.nd6_delay: 5 net.inet6.icmp6.nd6_umaxtries: 3 net.inet6.icmp6.nd6_mmaxtries: 3 net.inet6.icmp6.nd6_useloopback: 1 net.inet6.icmp6.nodeinfo: 3 net.inet6.icmp6.errppslimit: 100 net.inet6.icmp6.nd6_maxnudhint: 0 net.inet6.icmp6.nd6_debug: 0 net.inet6.icmp6.nd6_maxqueuelen: 1 net.inet6.icmp6.nodeinfo_oldmcprefix: 1 net.inet6.icmp6.nd6_onlink_ns_rfc4861: 0 net.inet6.icmp6.nd6_gctimer: 86400 net.inet6.mld.use_allow: 1 net.inet6.mld.v2enable: 1 net.inet6.mld.v1enable: 1 net.inet6.mld.gsrdelay: 10 net.netdump.arp_retries: 3 net.netdump.retries: 10 net.netdump.polls: 2000 net.netdump.path: net.netdump.enabled: 0 net.netdump.debug: 0 net.wlan.mesh.maxholding: 2 net.wlan.mesh.maxretries: 2 net.wlan.mesh.backofftimeout: 5000 net.wlan.mesh.confirmtimeout: 40 net.wlan.mesh.holdingtimeout: 40 net.wlan.mesh.retrytimeout: 40 net.wlan.mesh.gateint: 10000 net.wlan.hwmp.inact: 5000 net.wlan.hwmp.rootconfint: 2000 net.wlan.hwmp.rannint: 1000 net.wlan.hwmp.rootint: 2000 net.wlan.hwmp.roottimeout: 5000 net.wlan.hwmp.net_diameter_traversal_time: 510 net.wlan.hwmp.maxpreq_retries: 30 net.wlan.hwmp.pathlifetime: 5000 net.wlan.hwmp.targetonly: 0 net.wlan.addba_maxtries: 3 net.wlan.addba_backoff: 10000 net.wlan.addba_timeout: 250 net.wlan.recv_bar: 1 net.wlan.ampdu_age: 500 net.wlan.debug: 0 net.wlan.cac_timeout: 60 net.wlan.nol_timeout: 1800 net.wlan.devices: net.route.netisr_maxqlen: 256 net.my_fibnum: 0 net.add_addr_allfibs: 1 net.fibs: 1 net.raw.recvspace: 8192 net.raw.sendspace: 8192 net.isr.numthreads: 1 net.isr.maxprot: 16 net.isr.defaultqlimit: 256 net.isr.maxqlimit: 10240 net.isr.bindthreads: 0 net.isr.maxthreads: 1 net.isr.dispatch: direct net.iflib.no_tx_batch: 0 net.iflib.min_tx_latency: 0 net.ifdescr_maxlen: 1024 net.bpf.maxbufsize: 524288 net.bpf.bufsize: 4096 net.bpf.optimize_writers: 0 net.bpf.zerocopy_enable: 0 net.bpf.maxinsns: 512 net.accf.unloadable: 0 debug.minidump: 1 debug.hwpstate_verify: 0 debug.hwpstate_verbose: 0 debug.x86bios.int: 0 debug.x86bios.call: 0 debug.fdc.settle: 0 debug.fdc.spec2: 16 debug.fdc.spec1: 175 debug.fdc.retries: 10 debug.fdc.debugflags: 0 debug.fdc.fifo: 8 debug.vesa.shadow_rom: 0 debug.psm.pkterrthresh: 2 debug.psm.usecs: 500000 debug.psm.secs: 0 debug.psm.errusecs: 0 debug.psm.errsecs: 2 debug.psm.hz: 20 debug.psm.loglevel: 0 debug.efi_time: 0 debug.vnode_domainset: debug.vm_lowmem: 0 debug.dircheck: 0 debug.dobkgrdwrite: 1 debug.bigcgs: 0 debug.softdep.print_threads: 0 debug.softdep.emptyjblocks: 43 debug.softdep.flushcache: 0 debug.softdep.cleanup_failures: 0 debug.softdep.cleanup_retries: 0 debug.softdep.cleanup_high_delay: 0 debug.softdep.cleanup_inorequests: 0 debug.softdep.cleanup_blkrequests: 0 debug.softdep.jwait_newblk: 48 debug.softdep.jwait_inode: 19 debug.softdep.jwait_freeblks: 0 debug.softdep.jwait_filepage: 27 debug.softdep.journal_wait: 94 debug.softdep.journal_min: 0 debug.softdep.journal_low: 0 debug.softdep.jnewblk_rollback: 24 debug.softdep.jaddref_rollback: 36 debug.softdep.dir_entry: 21 debug.softdep.direct_blk_ptrs: 71 debug.softdep.inode_bitmap: 42 debug.softdep.indir_blk_ptrs: 0 debug.softdep.sync_limit_hit: 0 debug.softdep.ino_limit_hit: 0 debug.softdep.blk_limit_hit: 0 debug.softdep.ino_limit_push: 0 debug.softdep.blk_limit_push: 0 debug.softdep.worklist_push: 0 debug.softdep.flush_threads: 1 debug.softdep.tickdelay: 2 debug.softdep.max_softdeps: 449688 debug.softdep.write.jfsync: 0 debug.softdep.write.jtrunc: 0 debug.softdep.write.sbdep: 181 debug.softdep.write.jsegdep: 132 debug.softdep.write.jseg: 286 debug.softdep.write.jfreefrag: 0 debug.softdep.write.jfreeblk: 0 debug.softdep.write.jnewblk: 0 debug.softdep.write.jmvref: 0 debug.softdep.write.jremref: 0 debug.softdep.write.jaddref: 0 debug.softdep.write.freedep: 0 debug.softdep.write.freework: 0 debug.softdep.write.newdirblk: 0 debug.softdep.write.dirrem: 0 debug.softdep.write.mkdir: 0 debug.softdep.write.diradd: 0 debug.softdep.write.freefile: 0 debug.softdep.write.freeblks: 1166 debug.softdep.write.freefrag: 0 debug.softdep.write.allocindir: 203 debug.softdep.write.indirdep: 11 debug.softdep.write.allocdirect: 1473 debug.softdep.write.newblk: 0 debug.softdep.write.bmsafemap: 282 debug.softdep.write.inodedep: 5259 debug.softdep.write.pagedep: 258 debug.softdep.current.jfsync: 0 debug.softdep.current.jtrunc: 0 debug.softdep.current.sbdep: 0 debug.softdep.current.jsegdep: 4 debug.softdep.current.jseg: 0 debug.softdep.current.jfreefrag: 0 debug.softdep.current.jfreeblk: 0 debug.softdep.current.jnewblk: 3 debug.softdep.current.jmvref: 0 debug.softdep.current.jremref: 0 debug.softdep.current.jaddref: 1 debug.softdep.current.freedep: 0 debug.softdep.current.freework: 0 debug.softdep.current.newdirblk: 0 debug.softdep.current.dirrem: 0 debug.softdep.current.mkdir: 0 debug.softdep.current.diradd: 1 debug.softdep.current.freefile: 0 debug.softdep.current.freeblks: 0 debug.softdep.current.freefrag: 1 debug.softdep.current.allocindir: 0 debug.softdep.current.indirdep: 0 debug.softdep.current.allocdirect: 2 debug.softdep.current.newblk: 0 debug.softdep.current.bmsafemap: 1 debug.softdep.current.inodedep: 1 debug.softdep.current.pagedep: 1 debug.softdep.highuse.jfsync: 0 debug.softdep.highuse.jtrunc: 0 debug.softdep.highuse.sbdep: 1 debug.softdep.highuse.jsegdep: 2302 debug.softdep.highuse.jseg: 27 debug.softdep.highuse.jfreefrag: 1 debug.softdep.highuse.jfreeblk: 0 debug.softdep.highuse.jnewblk: 558 debug.softdep.highuse.jmvref: 15 debug.softdep.highuse.jremref: 182 debug.softdep.highuse.jaddref: 392 debug.softdep.highuse.freedep: 11 debug.softdep.highuse.freework: 1300 debug.softdep.highuse.newdirblk: 30 debug.softdep.highuse.dirrem: 880 debug.softdep.highuse.mkdir: 47 debug.softdep.highuse.diradd: 837 debug.softdep.highuse.freefile: 879 debug.softdep.highuse.freeblks: 878 debug.softdep.highuse.freefrag: 55 debug.softdep.highuse.allocindir: 127 debug.softdep.highuse.indirdep: 10 debug.softdep.highuse.allocdirect: 1229 debug.softdep.highuse.newblk: 3 debug.softdep.highuse.bmsafemap: 6 debug.softdep.highuse.inodedep: 884 debug.softdep.highuse.pagedep: 34 debug.softdep.total.jfsync: 0 debug.softdep.total.jtrunc: 0 debug.softdep.total.sbdep: 181 debug.softdep.total.jsegdep: 6064 debug.softdep.total.jseg: 286 debug.softdep.total.jfreefrag: 154 debug.softdep.total.jfreeblk: 0 debug.softdep.total.jnewblk: 2433 debug.softdep.total.jmvref: 15 debug.softdep.total.jremref: 1804 debug.softdep.total.jaddref: 1673 debug.softdep.total.freedep: 11 debug.softdep.total.freework: 1683 debug.softdep.total.newdirblk: 68 debug.softdep.total.dirrem: 1656 debug.softdep.total.mkdir: 136 debug.softdep.total.diradd: 1537 debug.softdep.total.freefile: 1337 debug.softdep.total.freeblks: 1258 debug.softdep.total.freefrag: 154 debug.softdep.total.allocindir: 206 debug.softdep.total.indirdep: 11 debug.softdep.total.allocdirect: 2227 debug.softdep.total.newblk: 2434 debug.softdep.total.bmsafemap: 1351 debug.softdep.total.inodedep: 2770 debug.softdep.total.pagedep: 304 debug.collectsnapstats: 0 debug.snapdebug: 0 debug.dopersistence: 0 debug.fsckcmds: 0 debug.crypto_timing: 0 debug.nlm_debug: 0 debug.if_tun_debug: 0 debug.vn_io_faults: 1724 debug.vn_io_fault_prefault: 0 debug.vn_io_fault_enable: 1 debug.max_vnlru_free: 10000 debug.vnlru_nowhere: 0 debug.rush_requests: 0 debug.disablefullpath: 0 debug.disablecwd: 0 debug.vfscache: 1 debug.numcachehv: 275 debug.numcache: 2269 debug.numneg: 187 debug.nchash: 131071 debug.devfs_iosize_max_clamp: 1 debug.iosize_max_clamp: 0 debug.clock_do_io: 0 debug.clock_show_io: 0 debug.rman_debug: 0 debug.lock.delay.restrict_starvation: 0 debug.lock.delay.starvation_limit: 131072 debug.kdb.alt_break_to_debugger: 0 debug.kdb.break_to_debugger: 0 debug.kdb.stack_overflow: 0 debug.kdb.trap_code: 0 debug.kdb.trap: 0 debug.kdb.panic: 0 debug.kdb.enter: 0 debug.kdb.current: debug.kdb.available: debug.bioq_batchsize: 0 debug.clocktime: 0 debug.obsolete_panic: 0 debug.umtx.robust_faults_verbose: 1 debug.umtx.umtx_pi_allocated: 0 debug.allow_insane_settime: 0 debug.sx.delay_max: 512 debug.sx.delay_base: 1 debug.sx.loops: 10000 debug.sx.retries: 10 debug.ncores: 5 debug.trace_all_panics: 1 debug.trace_on_panic: 1 debug.debugger_on_trap: 0 debug.debugger_on_panic: 1 debug.rwlock.delay_max: 512 debug.rwlock.delay_base: 1 debug.rwlock.loops: 10000 debug.rwlock.retry: 10 debug.osd: 0 debug.mtx_spin.delay_max: 512 debug.mtx_spin.delay_base: 1 debug.mtx.delay_max: 512 debug.mtx.delay_base: 1 debug.adaptive_machine_arch: 1 debug.sizeof.namecache: 72 debug.sizeof.devstat: 288 debug.sizeof.pcb: 320 debug.sizeof.kinfo_proc: 1088 debug.sizeof.buf: 568 debug.sizeof.bio: 376 debug.sizeof.proc: 1328 debug.sizeof.vnode: 480 debug.sizeof.g_bioq: 56 debug.sizeof.g_consumer: 96 debug.sizeof.g_provider: 136 debug.sizeof.g_geom: 184 debug.sizeof.g_class: 176 debug.sizeof.cdev_priv: 376 debug.sizeof.cdev: 288 debug.fail_point.status_nlm_deny_grant: off sleeping_thread_stacks = { }, sleeping_thread_count = 0, paused_thread_stacks = { }, paused_thread_count = 0 debug.fail_point.nlm_deny_grant: off debug.fail_point.status_fill_kinfo_vnode__random_path: off sleeping_thread_stacks = { }, sleeping_thread_count = 0, paused_thread_stacks = { }, paused_thread_count = 0 debug.fail_point.fill_kinfo_vnode__random_path: off debug.fail_point.status_sysctl_running: off sleeping_thread_stacks = { }, sleeping_thread_count = 0, paused_thread_stacks = { }, paused_thread_count = 0 debug.fail_point.sysctl_running: off debug.fail_point.status_test_fail_point: off sleeping_thread_stacks = { }, sleeping_thread_count = 0, paused_thread_stacks = { }, paused_thread_count = 0 debug.fail_point.test_fail_point: off debug.fail_point.test_trigger_fail_point: debug.fail_point.status_nfscl_force_fileid_warning: off sleeping_thread_stacks = { }, sleeping_thread_count = 0, paused_thread_stacks = { }, paused_thread_count = 0 debug.fail_point.nfscl_force_fileid_warning: off debug.cpufreq.verbose: 0 debug.cpufreq.lowest: 0 debug.bootverbose: 0 debug.boothowto: 0 debug.elf32_legacy_coredump: 0 debug.elf64_legacy_coredump: 0 debug.uart_force_poll: 0 debug.uart_poll_freq: 50 debug.mddebug: 0 debug.iwi: 0 debug.ipw: 0 debug.acpi.resume_beep: 0 debug.acpi.batt.batt_sleep_ms: 0 debug.acpi.ec.timeout: 750 debug.acpi.ec.polled: 0 debug.acpi.ec.burst: 0 debug.acpi.cpu_unordered: 0 debug.acpi.suspend_bounce: 0 debug.acpi.default_register_width: 1 debug.acpi.interpreter_slack: 1 debug.acpi.enable_debug_objects: 0 debug.acpi.acpi_ca_version: 20181213 debug.acpi.max_threads: 3 debug.acpi.tasks_hiwater: 0 debug.acpi.max_tasks: 1024 hw.machine: amd64 hw.model: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz hw.ncpu: 1 hw.byteorder: 1234 hw.physmem: 2107092992 hw.usermem: 1991008256 hw.pagesize: 4096 hw.floatingpoint: 1 hw.machine_arch: amd64 hw.realmem: 2147483648 hw.acpi.acline: 1 hw.acpi.cpu.cx_lowest: C1 hw.acpi.reset_video: 0 hw.acpi.handle_reboot: 1 hw.acpi.disable_on_reboot: 0 hw.acpi.verbose: 0 hw.acpi.s4bios: 0 hw.acpi.sleep_delay: 1 hw.acpi.suspend_state: NONE hw.acpi.standby_state: S1 hw.acpi.lid_switch_state: NONE hw.acpi.sleep_button_state: S1 hw.acpi.power_button_state: S5 hw.acpi.supported_sleep_state: S1 S4 S5 hw.mca.cmc_throttle: 60 hw.mca.force_scan: 0 hw.mca.interval: 3600 hw.mca.count: 0 hw.mca.erratum383: 0 hw.mca.intel6h_HSD131: 0 hw.mca.amd10h_L1TP: 1 hw.mca.enabled: 1 hw.apic.timer_tsc_deadline: 1 hw.apic.eoi_suppression: 0 hw.apic.x2apic_mode: 1 hw.apic.enable_extint: 0 hw.intrs: irq0: attimer0:3 @cpu0(domain0): 0 irq1: atkbd0:1 @cpu0(domain0): 348 irq3::5 @cpu0(domain0): 0 irq4::7 @cpu0(domain0): 0 irq5::9 @cpu0(domain0): 0 irq6::11 @cpu0(domain0): 0 irq7::13 @cpu0(domain0): 0 irq8: atrtc0:15 @cpu0(domain0): 0 irq9: acpi0:17 @cpu0(domain0): 0 irq10::19 @cpu0(domain0): 0 irq11::21 @cpu0(domain0): 0 irq12: psm0:23 @cpu0(domain0): 0 irq13::25 @cpu0(domain0): 0 irq14: ata0:27 @cpu0(domain0): 0 irq15: ata1:29 @cpu0(domain0): 5977 irq16: pcm0:31 @cpu0(domain0): 0 irq17: mpt0 ehci0:33 @cpu0(domain0): 6701 irq18: uhci0:35 @cpu0(domain0): 30871 irq19: em0:irq0:37 @cpu0(domain0): 31369 irq20::39 @cpu0(domain0): 0 irq21::41 @cpu0(domain0): 0 irq22::43 @cpu0(domain0): 0 irq23::45 @cpu0(domain0): 0 irq256: pcib3:48 @cpu0(domain0): 0 irq257: pcib4:50 @cpu0(domain0): 0 irq258: pcib5:52 @cpu0(domain0): 0 irq259: pcib6:54 @cpu0(domain0): 0 irq260: pcib7:56 @cpu0(domain0): 0 irq261: pcib8:58 @cpu0(domain0): 0 irq262: pcib9:60 @cpu0(domain0): 0 irq263: pcib10:62 @cpu0(domain0): 0 irq264: pcib11:64 @cpu0(domain0): 0 irq265: pcib12:66 @cpu0(domain0): 0 irq266: pcib13:68 @cpu0(domain0): 0 irq267: pcib14:70 @cpu0(domain0): 0 irq268: pcib15:72 @cpu0(domain0): 0 irq269: pcib16:74 @cpu0(domain0): 0 irq270: pcib17:76 @cpu0(domain0): 0 irq271: pcib18:78 @cpu0(domain0): 0 irq272: pcib19:80 @cpu0(domain0): 0 irq273: pcib20:82 @cpu0(domain0): 0 irq274: pcib21:84 @cpu0(domain0): 0 irq275: pcib22:86 @cpu0(domain0): 0 irq276: pcib23:88 @cpu0(domain0): 0 irq277: pcib24:90 @cpu0(domain0): 0 irq278: pcib25:92 @cpu0(domain0): 0 irq279: pcib26:94 @cpu0(domain0): 0 irq280: pcib27:96 @cpu0(domain0): 0 irq281: pcib28:98 @cpu0(domain0): 0 irq282: pcib29:100 @cpu0(domain0): 0 irq283: pcib30:102 @cpu0(domain0): 0 irq284: pcib31:104 @cpu0(domain0): 0 irq285: pcib32:106 @cpu0(domain0): 0 irq286: pcib33:108 @cpu0(domain0): 0 irq287: pcib34:110 @cpu0(domain0): 0 hw.intrbalance: 0 hw.hv_vendor: VMwareVMware hw.clockrate: 2399 hw.via_feature_xcrypt: 0 hw.via_feature_rng: 0 hw.mds_disable: 0 hw.mds_disable_state: inactive hw.spec_store_bypass_disable: 0 hw.spec_store_bypass_disable_active: 0 hw.ibrs_disable: 1 hw.ibrs_active: 0 hw.busdma.zone0.domain: 0 hw.busdma.zone0.alignment: 4096 hw.busdma.zone0.lowaddr: 0xffffffff hw.busdma.zone0.total_deferred: 0 hw.busdma.zone0.total_bounced: 0 hw.busdma.zone0.active_bpages: 0 hw.busdma.zone0.reserved_bpages: 0 hw.busdma.zone0.free_bpages: 64 hw.busdma.zone0.total_bpages: 64 hw.busdma.total_bpages: 64 hw.dmar.timeout: 1000000 hw.dmar.batch_coalesce: 100 hw.dmar.tbl_pagecnt: 0 hw.vmbus.pin_evttask: 1 hw.hvtimesync.sample_verbose: 0 hw.hvtimesync.sample_thresh: 100 hw.hvtimesync.ignore_sync: 0 hw.storvsc.chan_cnt: 0 hw.storvsc.max_io: 512 hw.storvsc.ringbuffer_size: 262144 hw.storvsc.use_pim_unmapped: 1 hw.storvsc.use_win8ext_flags: 1 hw.hn.vf_xpnt_attwait: 2 hw.hn.vf_xpnt_accbpf: 0 hw.hn.vf_transparent: 1 hw.hn.vfmap: hw.hn.vflist: hw.hn.tx_agg_pkts: -1 hw.hn.tx_agg_size: -1 hw.hn.lro_mbufq_depth: 0 hw.hn.tx_swq_depth: 0 hw.hn.tx_ring_cnt: 0 hw.hn.chan_cnt: 0 hw.hn.use_if_start: 0 hw.hn.use_txdesc_bufring: 1 hw.hn.tx_taskq_mode: 0 hw.hn.tx_taskq_cnt: 1 hw.hn.lro_entry_count: 128 hw.hn.direct_tx_size: 128 hw.hn.tx_chimney_size: 0 hw.hn.tso_maxlen: 65535 hw.hn.udpcs_fixup_mtu: 1420 hw.hn.udpcs_fixup: 0 hw.hn.enable_udp6cs: 1 hw.hn.enable_udp4cs: 1 hw.hn.trust_hostip: 1 hw.hn.trust_hostudp: 1 hw.hn.trust_hosttcp: 1 hw.iavf.tx_itr: 122 hw.iavf.rx_itr: 62 hw.iavf.shared_debug_mask: 0 hw.iavf.core_debug_mask: 0 hw.iavf.enable_head_writeback: 0 hw.ixl.tx_itr: 122 hw.ixl.rx_itr: 62 hw.ixl.shared_debug_mask: 0 hw.ixl.core_debug_mask: 0 hw.ixl.enable_head_writeback: 1 hw.ixl.enable_vf_loopback: 1 hw.ixl.i2c_access_method: 0 hw.ixl.enable_tx_fc_filter: 1 hw.bxe.udp_rss: 0 hw.bxe.autogreeen: 0 hw.bxe.mrrs: -1 hw.bxe.max_aggregation_size: 0 hw.bxe.rx_budget: -1 hw.bxe.hc_tx_ticks: 50 hw.bxe.hc_rx_ticks: 25 hw.bxe.max_rx_bufs: 0 hw.bxe.queue_count: 4 hw.bxe.interrupt_mode: 2 hw.bxe.debug: 0 hw.psm.elantech_support: 0 hw.psm.trackpoint_support: 0 hw.psm.synaptics_support: 0 hw.psm.tap_timeout: 125000 hw.psm.tap_threshold: 25 hw.psm.tap_enabled: -1 hw.lower_amd64_sharedpage: 0 hw.instruction_sse: 1 hw.lazy_fpu_switch: 0 hw.bus.devctl_queue: 1000 hw.bus.devctl_disable: 0 hw.pagesizes: 4096 2097152 0 hw.availpages: 514427 hw.intr_storm_threshold: 1000 hw.xbd.xbd_enable_indirect: 1 hw.wi.debug: 0 hw.wi.txerate: 0 hw.watchdog.wd_last_u_secs: 0 hw.watchdog.wd_last_u: 0 hw.vtnet.rx_process_limit: 512 hw.vtnet.mq_max_pairs: 8 hw.vtnet.mq_disable: 0 hw.vtnet.lro_disable: 0 hw.vtnet.tso_disable: 0 hw.vtnet.csum_disable: 0 hw.usb.wmt.debug: 0 hw.usb.uhid.debug: 0 hw.usb.ukbd.pollrate: 0 hw.usb.ukbd.no_leds: 0 hw.usb.ukbd.debug: 0 hw.usb.full_ddesc: 0 hw.usb.no_cs_fail: 0 hw.usb.proc.debug: 0 hw.usb.disable_port_power: 0 hw.usb.disable_enumeration: 0 hw.usb.power_timeout: 30 hw.usb.uhub.debug: 0 hw.usb.ugen.debug: 0 hw.usb.usb_lang_mask: 255 hw.usb.usb_lang_id: 9 hw.usb.template: -1 hw.usb.dev.debug: 0 hw.usb.timings.extra_power_up_time: 20 hw.usb.timings.resume_recovery: 50 hw.usb.timings.resume_wait: 50 hw.usb.timings.resume_delay: 250 hw.usb.timings.set_address_settle: 10 hw.usb.timings.port_resume_delay: 40 hw.usb.timings.port_powerup_delay: 300 hw.usb.timings.port_reset_recovery: 250 hw.usb.timings.port_root_reset_delay: 200 hw.usb.timings.port_reset_delay: 50 hw.usb.debug: 0 hw.usb.umass.throttle: 0 hw.usb.umass.debug: 0 hw.usb.no_shutdown_wait: 0 hw.usb.no_suspend_wait: 0 hw.usb.no_boot_wait: 0 hw.usb.ctrl.debug: 0 hw.usb.xhci.ctlstep: 0 hw.usb.xhci.dma32: 0 hw.usb.xhci.use_polling: 0 hw.usb.xhci.xhci_port_route: 0 hw.usb.xhci.debug: 0 hw.usb.xhci.streams: 0 hw.usb.uhci.loop: 0 hw.usb.uhci.debug: 0 hw.usb.ohci.debug: 0 hw.usb.ehci.lostintrbug: 0 hw.usb.ehci.iaadbug: 0 hw.usb.ehci.no_hs: 0 hw.usb.ehci.debug: 0 hw.broken_txfifo: 0 hw.syscons.sc_no_suspend_vtswitch: 0 hw.syscons.kbd_debug: 1 hw.syscons.kbd_reboot: 1 hw.syscons.bell: 1 hw.syscons.saver.keybonly: 1 hw.midi.seq.debug: 0 hw.midi.instroff: 0 hw.midi.dumpraw: 0 hw.midi.debug: 0 hw.midi.stat.verbose: 0 hw.snd.maxautovchans: 16 hw.snd.default_unit: 0 hw.snd.version: 2009061500/amd64 hw.snd.default_auto: 1 hw.snd.verbose: 0 hw.snd.vpc_mixer_bypass: 1 hw.snd.feeder_rate_quality: 1 hw.snd.feeder_rate_round: 25 hw.snd.feeder_rate_max: 2016000 hw.snd.feeder_rate_min: 1 hw.snd.feeder_rate_polyphase_max: 183040 hw.snd.feeder_rate_presets: 100:8:0.85 100:36:0.92 100:164:0.97 hw.snd.feeder_eq_exact_rate: 0 hw.snd.feeder_eq_presets: PEQ:16000,0.2500,62,0.2500:-9,9,1.0:44100,48000,88200,96000,176400,192000 hw.snd.basename_clone: 1 hw.snd.compat_linux_mmap: 0 hw.snd.syncdelay: -1 hw.snd.usefrags: 0 hw.snd.vpc_reset: 0 hw.snd.vpc_0db: 45 hw.snd.vpc_autoreset: 1 hw.snd.timeout: 5 hw.snd.latency_profile: 1 hw.snd.latency: 2 hw.snd.report_soft_matrix: 1 hw.snd.report_soft_formats: 1 hw.sdhci.enable_msi: 1 hw.sdhci.quirk_set: 0 hw.sdhci.quirk_clear: 0 hw.sdhci.debug: 0 hw.puc.msi_disable: 0 hw.pci.host_mem_start: 2147483648 hw.pci.mcfg: 1 hw.pci.default_vgapci_unit: 0 hw.pci.enable_pcie_hp: 1 hw.pci.clear_pcib: 0 hw.pci.iov_max_config: 1048576 hw.pci.clear_aer_on_attach: 0 hw.pci.enable_ari: 1 hw.pci.clear_buses: 0 hw.pci.clear_bars: 0 hw.pci.usb_early_takeover: 1 hw.pci.honor_msi_blacklist: 1 hw.pci.msix_rewrite_table: 0 hw.pci.enable_msix: 1 hw.pci.enable_msi: 1 hw.pci.do_power_suspend: 1 hw.pci.do_power_resume: 1 hw.pci.do_power_nodriver: 0 hw.pci.realloc_bars: 0 hw.pci.enable_io_modes: 1 hw.pcic.pd6722_vsense: 1 hw.pcic.intr_mask: 57016 hw.cbb.debug: 0 hw.cbb.start_32_io: 4096 hw.cbb.start_16_io: 256 hw.cbb.start_memory: 2281701376 hw.pccard.cis_debug: 0 hw.pccard.debug: 0 hw.nvme.verbose_cmd_dump: 0 hw.nvme.use_nvd: 1 hw.nvd.delete_max: 1073741824 hw.mwl.rxdmalow: 3 hw.mwl.rxquota: 640 hw.mwl.txcoalesce: 8 hw.mwl.txbuf: 256 hw.mwl.rxbuf: 640 hw.mwl.rxdesc: 256 hw.mmcsd.cache: 1 hw.mmc.debug: 0 hw.mfi.mrsas_enable: 0 hw.mfi.msi: 1 hw.mfi.cmd_timeout: 30 hw.mfi.polled_cmd_timeout: 60 hw.mfi.detect_jbod_change: 1 hw.mfi.max_cmds: 128 hw.mfi.event_class: 0 hw.mfi.event_locale: 65535 hw.malo.pci.msi_disable: 0 hw.malo.txbuf: 256 hw.malo.rxquota: 256 hw.malo.rxbuf: 256 hw.malo.txcoalesce: 8 hw.kbd.keymap_restrict_change: 0 hw.ix.enable_rss: 1 hw.ix.enable_fdir: 0 hw.ix.unsupported_sfp: 0 hw.ix.enable_msix: 1 hw.ix.advertise_speed: 0 hw.ix.flow_control: 3 hw.ix.max_interrupt_rate: 31250 hw.em.max_interrupt_rate: 8000 hw.em.eee_setting: 1 hw.em.rx_process_limit: 100 hw.em.sbp: 1 hw.em.smart_pwr_down: 0 hw.em.rx_abs_int_delay: 66 hw.em.tx_abs_int_delay: 66 hw.em.rx_int_delay: 0 hw.em.tx_int_delay: 66 hw.em.disable_crc_stripping: 0 hw.cardbus.cis_debug: 0 hw.cardbus.debug: 0 hw.bge.allow_asf: 1 hw.bce.rx_ticks: 18 hw.bce.rx_ticks_int: 18 hw.bce.rx_quick_cons_trip: 6 hw.bce.rx_quick_cons_trip_int: 6 hw.bce.tx_ticks: 80 hw.bce.tx_ticks_int: 80 hw.bce.tx_quick_cons_trip: 20 hw.bce.tx_quick_cons_trip_int: 20 hw.bce.strict_rx_mtu: 0 hw.bce.hdr_split: 1 hw.bce.tx_pages: 2 hw.bce.rx_pages: 2 hw.bce.msi_enable: 1 hw.bce.tso_enable: 1 hw.bce.verbose: 1 hw.ath.bstuck: 4 hw.ath.txbuf_mgmt: 32 hw.ath.txbuf: 512 hw.ath.rxbuf: 512 hw.ath.anical: 100 hw.ath.resetcal: 1200 hw.ath.shortcal: 100 hw.ath.longcal: 30 hw.ata.ata_dma_check_80pin: 1 hw.an.an_cache_iponly: 1 hw.an.an_cache_mcastonly: 0 hw.an.an_cache_mode: dbm hw.an.an_dump: off hw.amr.force_sg32: 0 hw.aac.enable_msi: 1 machdep.tsc_freq: 2399971000 machdep.disable_tsc_calibration: 0 machdep.disable_tsc: 0 machdep.disable_msix_migration: 0 machdep.num_msi_irqs: 512 machdep.hyperthreading_allowed: 1 machdep.disable_mtrrs: 0 machdep.kdb_on_nmi: 1 machdep.nmi_is_broadcast: 1 machdep.panic_on_nmi: 1 machdep.idle: acpi machdep.idle_available: spin, hlt, acpi machdep.idle_apl31: 0 machdep.idle_mwait: 1 machdep.i8254_freq: 1193182 machdep.acpi_root: 1010192 machdep.vga_aspect_scale: 100 machdep.acpi_timer_freq: 3579545 machdep.syscall_ret_flush_l1d: 0 machdep.nmi_flush_l1d_sw: 0 machdep.uprintf_signal: 0 machdep.prot_fault_translation: 0 machdep.max_ldt_segment: 512 machdep.nkpt: 53 machdep.dump_retry_count: 5 machdep.smap: SMAP type=01, xattr=00, base=0000000000000000, len=000000000009f800 SMAP type=02, xattr=00, base=000000000009f800, len=0000000000000800 SMAP type=02, xattr=00, base=00000000000dc000, len=0000000000024000 SMAP type=01, xattr=00, base=0000000000100000, len=000000007fde0000 SMAP type=03, xattr=00, base=000000007fee0000, len=000000000001f000 SMAP type=04, xattr=00, base=000000007feff000, len=0000000000001000 SMAP type=01, xattr=00, base=000000007ff00000, len=0000000000100000 SMAP type=02, xattr=00, base=00000000f0000000, len=0000000008000000 SMAP type=02, xattr=00, base=00000000fec00000, len=0000000000010000 SMAP type=02, xattr=00, base=00000000fee00000, len=0000000000001000 SMAP type=02, xattr=00, base=00000000fffe0000, len=0000000000020000 machdep.bootmethod: BIOS machdep.disable_rtc_set: 0 machdep.wall_cmos_clock: 0 machdep.adjkerntz: 0 machdep.rtc_save_period: 1800 machdep.enable_panic_key: 0 machdep.efi_rt_handle_faults: 1 user.cs_path: /usr/bin:/bin:/usr/sbin:/sbin user.bc_base_max: 99 user.bc_dim_max: 2048 user.bc_scale_max: 99 user.bc_string_max: 1000 user.coll_weights_max: 10 user.expr_nest_max: 32 user.line_max: 2048 user.re_dup_max: 255 user.posix2_version: 199212 user.posix2_c_bind: 0 user.posix2_c_dev: 0 user.posix2_char_term: 0 user.posix2_fort_dev: 0 user.posix2_fort_run: 0 user.posix2_localedef: 0 user.posix2_sw_dev: 0 user.posix2_upe: 0 user.stream_max: 20 user.tzname_max: 255 p1003_1b.asynchronous_io: 200112 p1003_1b.mapped_files: 200112 p1003_1b.memlock: 0 p1003_1b.memlock_range: 0 p1003_1b.memory_protection: 0 p1003_1b.message_passing: 0 p1003_1b.prioritized_io: 0 p1003_1b.priority_scheduling: 200112 p1003_1b.realtime_signals: 200112 p1003_1b.semaphores: 0 p1003_1b.fsync: 200112 p1003_1b.shared_memory_objects: 200112 p1003_1b.synchronized_io: 0 p1003_1b.timers: 200112 p1003_1b.aio_listio_max: 256 p1003_1b.aio_max: 1024 p1003_1b.aio_prio_delta_max: 0 p1003_1b.delaytimer_max: 2147483647 p1003_1b.mq_open_max: 0 p1003_1b.pagesize: 4096 p1003_1b.rtsig_max: 62 p1003_1b.sem_nsems_max: 0 p1003_1b.sem_value_max: 0 p1003_1b.sigqueue_max: 128 p1003_1b.timer_max: 32 hptmv.status: RocketRAID 18xx SATA Controller driver Version v1.16 dev.uhid.1.%parent: uhub1 dev.uhid.1.%pnpinfo: vendor=0x0e0f product=0x0003 devclass=0x00 devsubclass=0x00 devproto=0x00 sernum="" release=0x0102 mode=host intclass=0x03 intsubclass=0x00 intprotocol=0x00 dev.uhid.1.%location: bus=0 hubaddr=1 port=1 devaddr=2 interface=1 ugen=ugen0.2 dev.uhid.1.%driver: uhid dev.uhid.1.%desc: VMware dev.uhid.0.%parent: uhub1 dev.uhid.0.%pnpinfo: vendor=0x0e0f product=0x0003 devclass=0x00 devsubclass=0x00 devproto=0x00 sernum="" release=0x0102 mode=host intclass=0x03 intsubclass=0x00 intprotocol=0x00 dev.uhid.0.%location: bus=0 hubaddr=1 port=1 devaddr=2 interface=0 ugen=ugen0.2 dev.uhid.0.%driver: uhid dev.uhid.0.%desc: VMware dev.uhid.%parent: dev.smbus.0.%parent: intsmb0 dev.smbus.0.%pnpinfo: dev.smbus.0.%location: dev.smbus.0.%driver: smbus dev.smbus.0.%desc: System Management Bus dev.smbus.%parent: dev.intsmb.0.%parent: pci0 dev.intsmb.0.%pnpinfo: vendor=0x8086 device=0x7113 subvendor=0x15ad subdevice=0x1976 class=0x068000 dev.intsmb.0.%location: slot=7 function=3 dbsf=pci0:0:7:3 handle=\_SB_.PCI0.PWR_ dev.intsmb.0.%driver: intsmb dev.intsmb.0.%desc: Intel PIIX4 SMBUS Interface dev.intsmb.%parent: dev.uhub.2.disable_port_power: 0 dev.uhub.2.disable_enumeration: 0 dev.uhub.2.%parent: uhub1 dev.uhub.2.%pnpinfo: vendor=0x0e0f product=0x0002 devclass=0x09 devsubclass=0x00 devproto=0x00 sernum="" release=0x0100 mode=host intclass=0x09 intsubclass=0x00 intprotocol=0x00 dev.uhub.2.%location: bus=0 hubaddr=1 port=2 devaddr=3 interface=0 ugen=ugen0.3 dev.uhub.2.%driver: uhub dev.uhub.2.%desc: VMware Virtual USB Hub dev.uhub.1.disable_port_power: 0 dev.uhub.1.disable_enumeration: 0 dev.uhub.1.%parent: usbus0 dev.uhub.1.%pnpinfo: dev.uhub.1.%location: dev.uhub.1.%driver: uhub dev.uhub.1.%desc: (0x15ad) UHCI root HUB, class 9/0, rev 1.00/1.00, addr 1 dev.uhub.0.disable_port_power: 0 dev.uhub.0.disable_enumeration: 0 dev.uhub.0.%parent: usbus1 dev.uhub.0.%pnpinfo: dev.uhub.0.%location: dev.uhub.0.%driver: uhub dev.uhub.0.%desc: (0x15ad) EHCI root HUB, class 9/0, rev 2.00/1.00, addr 1 dev.uhub.%parent: dev.vga.0.%parent: isa0 dev.vga.0.%pnpinfo: pnpid=PNP0900 dev.vga.0.%location: dev.vga.0.%driver: vga dev.vga.0.%desc: Generic ISA VGA dev.vga.%parent: dev.orm.0.%parent: isa0 dev.orm.0.%pnpinfo: pnpid=ORM0000 dev.orm.0.%location: dev.orm.0.%driver: orm dev.orm.0.%desc: ISA Option ROMs dev.orm.%parent: dev.apic.0.%parent: nexus0 dev.apic.0.%pnpinfo: dev.apic.0.%location: dev.apic.0.%driver: apic dev.apic.0.%desc: APIC resources dev.apic.%parent: dev.acpi_syscontainer.0.%parent: acpi0 dev.acpi_syscontainer.0.%pnpinfo: _HID=PNP0A05 _UID=0 dev.acpi_syscontainer.0.%location: handle=\_SB_.PCI0.ISA_.SIO_ dev.acpi_syscontainer.0.%driver: acpi_syscontainer dev.acpi_syscontainer.0.%desc: System Container dev.acpi_syscontainer.%parent: dev.psm.0.%parent: atkbdc0 dev.psm.0.%pnpinfo: dev.psm.0.%location: dev.psm.0.%driver: psm dev.psm.0.%desc: PS/2 Mouse dev.psm.%parent: dev.psmcpnp.0.%parent: acpi0 dev.psmcpnp.0.%pnpinfo: _HID=VMW0003 _UID=0 dev.psmcpnp.0.%location: handle=\_SB_.PCI0.ISA_.MOUS dev.psmcpnp.0.%driver: psmcpnp dev.psmcpnp.0.%desc: PS/2 mouse port dev.psmcpnp.%parent: dev.atkbd.0.%parent: atkbdc0 dev.atkbd.0.%pnpinfo: dev.atkbd.0.%location: dev.atkbd.0.%driver: atkbd dev.atkbd.0.%desc: AT Keyboard dev.atkbd.%parent: dev.atkbdc.0.%parent: acpi0 dev.atkbdc.0.%pnpinfo: _HID=PNP0303 _UID=0 dev.atkbdc.0.%location: handle=\_SB_.PCI0.ISA_.KBC_ dev.atkbdc.0.%driver: atkbdc dev.atkbdc.0.%desc: Keyboard controller (i8042) dev.atkbdc.%parent: dev.atdma.0.%parent: acpi0 dev.atdma.0.%pnpinfo: _HID=PNP0200 _UID=0 dev.atdma.0.%location: handle=\_SB_.PCI0.ISA_.DMAC dev.atdma.0.%driver: atdma dev.atdma.0.%desc: AT DMA controller dev.atdma.%parent: dev.acpi_acad.0.%parent: acpi0 dev.acpi_acad.0.%pnpinfo: _HID=ACPI0003 _UID=1 dev.acpi_acad.0.%location: handle=\_SB_.ACAD dev.acpi_acad.0.%driver: acpi_acad dev.acpi_acad.0.%desc: AC Adapter dev.acpi_acad.%parent: dev.ehci.0.wake: 0 dev.ehci.0.%parent: pci2 dev.ehci.0.%pnpinfo: vendor=0x15ad device=0x0770 subvendor=0x15ad subdevice=0x0770 class=0x0c0320 dev.ehci.0.%location: slot=3 function=0 dbsf=pci0:2:3:0 handle=\_SB_.PCI0.P2P0.S4F0 dev.ehci.0.%driver: ehci dev.ehci.0.%desc: EHCI (generic) USB 2.0 controller dev.ehci.%parent: dev.pcm.0.wake: 0 dev.pcm.0.bitperfect: 0 dev.pcm.0.buffersize: 4096 dev.pcm.0.polling: 0 dev.pcm.0.latency_timer: 64 dev.pcm.0.rec.vchanformat: s16le:2.0 dev.pcm.0.rec.vchanrate: 48000 dev.pcm.0.rec.vchanmode: fixed dev.pcm.0.rec.vchans: 1 dev.pcm.0.play.vchanformat: s16le:2.0 dev.pcm.0.play.vchanrate: 48000 dev.pcm.0.play.vchanmode: fixed dev.pcm.0.play.vchans: 1 dev.pcm.0.%parent: pci2 dev.pcm.0.%pnpinfo: vendor=0x1274 device=0x1371 subvendor=0x1274 subdevice=0x1371 class=0x040100 dev.pcm.0.%location: slot=2 function=0 dbsf=pci0:2:2:0 handle=\_SB_.PCI0.P2P0.S3F0 dev.pcm.0.%driver: pcm dev.pcm.0.%desc: AudioPCI ES1371-A dev.pcm.%parent: dev.em.0.wake: 0 dev.em.0.interrupts.rx_overrun: 0 dev.em.0.interrupts.rx_desc_min_thresh: 0 dev.em.0.interrupts.tx_queue_min_thresh: 0 dev.em.0.interrupts.tx_queue_empty: 0 dev.em.0.interrupts.tx_abs_timer: 0 dev.em.0.interrupts.tx_pkt_timer: 0 dev.em.0.interrupts.rx_abs_timer: 0 dev.em.0.interrupts.rx_pkt_timer: 0 dev.em.0.interrupts.asserts: 0 dev.em.0.mac_stats.tso_ctx_fail: 0 dev.em.0.mac_stats.tso_txd: 0 dev.em.0.mac_stats.tx_frames_1024_1522: 2199 dev.em.0.mac_stats.tx_frames_512_1023: 2119 dev.em.0.mac_stats.tx_frames_256_511: 89 dev.em.0.mac_stats.tx_frames_128_255: 2548 dev.em.0.mac_stats.tx_frames_65_127: 16005 dev.em.0.mac_stats.tx_frames_64: 1113 dev.em.0.mac_stats.mcast_pkts_txd: 0 dev.em.0.mac_stats.bcast_pkts_txd: 0 dev.em.0.mac_stats.good_pkts_txd: 24073 dev.em.0.mac_stats.total_pkts_txd: 24073 dev.em.0.mac_stats.good_octets_txd: 6835399 dev.em.0.mac_stats.good_octets_recvd: 5407948 dev.em.0.mac_stats.rx_frames_1024_1522: 2104 dev.em.0.mac_stats.rx_frames_512_1023: 238 dev.em.0.mac_stats.rx_frames_256_511: 442 dev.em.0.mac_stats.rx_frames_128_255: 344 dev.em.0.mac_stats.rx_frames_65_127: 25380 dev.em.0.mac_stats.rx_frames_64: 0 dev.em.0.mac_stats.mcast_pkts_recvd: 0 dev.em.0.mac_stats.bcast_pkts_recvd: 0 dev.em.0.mac_stats.good_pkts_recvd: 28508 dev.em.0.mac_stats.total_pkts_recvd: 28508 dev.em.0.mac_stats.xoff_txd: 0 dev.em.0.mac_stats.xoff_recvd: 0 dev.em.0.mac_stats.xon_txd: 0 dev.em.0.mac_stats.xon_recvd: 0 dev.em.0.mac_stats.coll_ext_errs: 0 dev.em.0.mac_stats.alignment_errs: 0 dev.em.0.mac_stats.crc_errs: 0 dev.em.0.mac_stats.recv_errs: 0 dev.em.0.mac_stats.recv_jabber: 0 dev.em.0.mac_stats.recv_oversize: 0 dev.em.0.mac_stats.recv_fragmented: 0 dev.em.0.mac_stats.recv_undersize: 0 dev.em.0.mac_stats.recv_no_buff: 0 dev.em.0.mac_stats.missed_packets: 0 dev.em.0.mac_stats.defer_count: 0 dev.em.0.mac_stats.sequence_errors: 0 dev.em.0.mac_stats.symbol_errors: 0 dev.em.0.mac_stats.collision_count: 0 dev.em.0.mac_stats.late_coll: 0 dev.em.0.mac_stats.multiple_coll: 0 dev.em.0.mac_stats.single_coll: 0 dev.em.0.mac_stats.excess_coll: 0 dev.em.0.queue_rx_0.rx_irq: 0 dev.em.0.queue_rx_0.rxd_tail: 860 dev.em.0.queue_rx_0.rxd_head: 862 dev.em.0.queue_tx_0.tx_irq: 0 dev.em.0.queue_tx_0.txd_tail: 60 dev.em.0.queue_tx_0.txd_head: 60 dev.em.0.fc_low_water: 45604 dev.em.0.fc_high_water: 47104 dev.em.0.rx_control: 67141662 dev.em.0.device_control: 12583497 dev.em.0.watchdog_timeouts: 0 dev.em.0.rx_overruns: 0 dev.em.0.link_irq: 0 dev.em.0.dropped: 0 dev.em.0.eee_control: 1 dev.em.0.itr: 488 dev.em.0.tx_abs_int_delay: 66 dev.em.0.rx_abs_int_delay: 66 dev.em.0.tx_int_delay: 66 dev.em.0.rx_int_delay: 0 dev.em.0.rs_dump: 0 dev.em.0.reg_dump: General Registers CTRL 00c00249 STATUS 0000cb83 CTRL_EXIT 00000cc0 Interrupt Registers ICR 00000000 RX Registers RCTL 0400801e RDLEN 00004000 RDH 0000035e RDT 0000035c RXDCTL 01010000 RDBAL 7c1e8000 RDBAH 00000000 TX Registers TCTL 0103f0fa TDBAL 7c1e0000 TDBAH 00000000 TDLEN 00004000 TDH 0000003c TDT 0000003c TXDCTL 0301011f TDFH 00000000 TDFT 00000000 TDFHS 00000000 TDFPC 00000000 dev.em.0.fc: 3 dev.em.0.debug: -1 dev.em.0.nvm: -1 dev.em.0.iflib.rxq0.rxq_fl0.credits: 1023 dev.em.0.iflib.rxq0.rxq_fl0.cidx: 862 dev.em.0.iflib.rxq0.rxq_fl0.pidx: 861 dev.em.0.iflib.txq0.r_abdications: 0 dev.em.0.iflib.txq0.r_restarts: 0 dev.em.0.iflib.txq0.r_stalls: 0 dev.em.0.iflib.txq0.r_starts: 24057 dev.em.0.iflib.txq0.r_drops: 0 dev.em.0.iflib.txq0.r_enqueues: 29353 dev.em.0.iflib.txq0.ring_state: pidx_head: 0681 pidx_tail: 0681 cidx: 0681 state: IDLE dev.em.0.iflib.txq0.txq_cleaned: 28692 dev.em.0.iflib.txq0.txq_processed: 28732 dev.em.0.iflib.txq0.txq_in_use: 40 dev.em.0.iflib.txq0.txq_cidx_processed: 60 dev.em.0.iflib.txq0.txq_cidx: 20 dev.em.0.iflib.txq0.txq_pidx: 60 dev.em.0.iflib.txq0.no_tx_dma_setup: 0 dev.em.0.iflib.txq0.txd_encap_efbig: 0 dev.em.0.iflib.txq0.tx_map_failed: 0 dev.em.0.iflib.txq0.no_desc_avail: 0 dev.em.0.iflib.txq0.mbuf_defrag_failed: 0 dev.em.0.iflib.txq0.m_pullups: 0 dev.em.0.iflib.txq0.mbuf_defrag: 0 dev.em.0.iflib.override_nrxds: 0 dev.em.0.iflib.override_ntxds: 0 dev.em.0.iflib.separate_txrx: 0 dev.em.0.iflib.core_offset: 0 dev.em.0.iflib.tx_abdicate: 0 dev.em.0.iflib.rx_budget: 0 dev.em.0.iflib.disable_msix: 0 dev.em.0.iflib.override_qs_enable: 0 dev.em.0.iflib.override_nrxqs: 0 dev.em.0.iflib.override_ntxqs: 0 dev.em.0.iflib.driver_version: 7.6.1-k dev.em.0.%parent: pci2 dev.em.0.%pnpinfo: vendor=0x8086 device=0x100f subvendor=0x15ad subdevice=0x0750 class=0x020000 dev.em.0.%location: slot=1 function=0 dbsf=pci0:2:1:0 handle=\_SB_.PCI0.P2P0.S2F0 dev.em.0.%driver: em dev.em.0.%desc: Intel(R) PRO/1000 Network Connection dev.em.%parent: dev.usbus.1.%parent: ehci0 dev.usbus.1.%pnpinfo: dev.usbus.1.%location: dev.usbus.1.%driver: usbus dev.usbus.1.%desc: dev.usbus.0.%parent: uhci0 dev.usbus.0.%pnpinfo: dev.usbus.0.%location: dev.usbus.0.%driver: usbus dev.usbus.0.%desc: dev.usbus.%parent: dev.uhci.0.wake: 0 dev.uhci.0.%parent: pci2 dev.uhci.0.%pnpinfo: vendor=0x15ad device=0x0774 subvendor=0x15ad subdevice=0x1976 class=0x0c0300 dev.uhci.0.%location: slot=0 function=0 dbsf=pci0:2:0:0 handle=\_SB_.PCI0.P2P0.S1F0 dev.uhci.0.%driver: uhci dev.uhci.0.%desc: UHCI (generic) USB controller dev.uhci.%parent: dev.mpt.0.role: 1 dev.mpt.0.debug: 3 dev.mpt.0.%parent: pci0 dev.mpt.0.%pnpinfo: vendor=0x1000 device=0x0030 subvendor=0x15ad subdevice=0x1976 class=0x010000 dev.mpt.0.%location: slot=16 function=0 dbsf=pci0:0:16:0 dev.mpt.0.%driver: mpt dev.mpt.0.%desc: LSILogic 1030 Ultra4 Adapter dev.mpt.%parent: dev.vgapci.0.%parent: pci0 dev.vgapci.0.%pnpinfo: vendor=0x15ad device=0x0405 subvendor=0x15ad subdevice=0x0405 class=0x030000 dev.vgapci.0.%location: slot=15 function=0 dbsf=pci0:0:15:0 dev.vgapci.0.%driver: vgapci dev.vgapci.0.%desc: VGA-compatible display dev.vgapci.%parent: dev.ata.1.%parent: atapci0 dev.ata.1.%pnpinfo: dev.ata.1.%location: channel=1 dev.ata.1.%driver: ata dev.ata.1.%desc: ATA channel dev.ata.0.%parent: atapci0 dev.ata.0.%pnpinfo: dev.ata.0.%location: channel=0 dev.ata.0.%driver: ata dev.ata.0.%desc: ATA channel dev.ata.%parent: dev.atapci.0.%parent: pci0 dev.atapci.0.%pnpinfo: vendor=0x8086 device=0x7111 subvendor=0x15ad subdevice=0x1976 class=0x01018a dev.atapci.0.%location: slot=7 function=1 dbsf=pci0:0:7:1 handle=\_SB_.PCI0.IDE_ dev.atapci.0.%driver: atapci dev.atapci.0.%desc: Intel PIIX4 UDMA33 controller dev.atapci.%parent: dev.isa.0.%parent: isab0 dev.isa.0.%pnpinfo: dev.isa.0.%location: dev.isa.0.%driver: isa dev.isa.0.%desc: ISA bus dev.isa.%parent: dev.isab.0.%parent: pci0 dev.isab.0.%pnpinfo: vendor=0x8086 device=0x7110 subvendor=0x15ad subdevice=0x1976 class=0x060100 dev.isab.0.%location: slot=7 function=0 dbsf=pci0:0:7:0 handle=\_SB_.PCI0.ISA_ dev.isab.0.%driver: isab dev.isab.0.%desc: PCI-ISA bridge dev.isab.%parent: dev.hostb.0.%parent: pci0 dev.hostb.0.%pnpinfo: vendor=0x8086 device=0x7190 subvendor=0x15ad subdevice=0x1976 class=0x060000 dev.hostb.0.%location: slot=0 function=0 dbsf=pci0:0:0:0 dev.hostb.0.%driver: hostb dev.hostb.0.%desc: Host to PCI bridge dev.hostb.%parent: dev.pci.2.wake: 0 dev.pci.2.%parent: pcib2 dev.pci.2.%pnpinfo: dev.pci.2.%location: dev.pci.2.%driver: pci dev.pci.2.%desc: ACPI PCI bus dev.pci.1.%parent: pcib1 dev.pci.1.%pnpinfo: dev.pci.1.%location: dev.pci.1.%driver: pci dev.pci.1.%desc: ACPI PCI bus dev.pci.0.wake: 0 dev.pci.0.%parent: pcib0 dev.pci.0.%pnpinfo: dev.pci.0.%location: dev.pci.0.%driver: pci dev.pci.0.%desc: ACPI PCI bus dev.pci.%parent: dev.pcib.34.wake: 0 dev.pcib.34.subbus: 34 dev.pcib.34.secbus: 34 dev.pcib.34.pribus: 0 dev.pcib.34.domain: 0 dev.pcib.34.%parent: pci0 dev.pcib.34.%pnpinfo: vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400 dev.pcib.34.%location: slot=24 function=7 dbsf=pci0:0:24:7 handle=\_SB_.PCI0.PE77 dev.pcib.34.%driver: pcib dev.pcib.34.%desc: ACPI PCI-PCI bridge dev.pcib.33.wake: 0 dev.pcib.33.subbus: 33 dev.pcib.33.secbus: 33 dev.pcib.33.pribus: 0 dev.pcib.33.domain: 0 dev.pcib.33.%parent: pci0 dev.pcib.33.%pnpinfo: vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400 dev.pcib.33.%location: slot=24 function=6 dbsf=pci0:0:24:6 handle=\_SB_.PCI0.PE76 dev.pcib.33.%driver: pcib dev.pcib.33.%desc: ACPI PCI-PCI bridge dev.pcib.32.wake: 0 dev.pcib.32.subbus: 32 dev.pcib.32.secbus: 32 dev.pcib.32.pribus: 0 dev.pcib.32.domain: 0 dev.pcib.32.%parent: pci0 dev.pcib.32.%pnpinfo: vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400 dev.pcib.32.%location: slot=24 function=5 dbsf=pci0:0:24:5 handle=\_SB_.PCI0.PE75 dev.pcib.32.%driver: pcib dev.pcib.32.%desc: ACPI PCI-PCI bridge dev.pcib.31.wake: 0 dev.pcib.31.subbus: 31 dev.pcib.31.secbus: 31 dev.pcib.31.pribus: 0 dev.pcib.31.domain: 0 dev.pcib.31.%parent: pci0 dev.pcib.31.%pnpinfo: vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400 dev.pcib.31.%location: slot=24 function=4 dbsf=pci0:0:24:4 handle=\_SB_.PCI0.PE74 dev.pcib.31.%driver: pcib dev.pcib.31.%desc: ACPI PCI-PCI bridge dev.pcib.30.wake: 0 dev.pcib.30.subbus: 30 dev.pcib.30.secbus: 30 dev.pcib.30.pribus: 0 dev.pcib.30.domain: 0 dev.pcib.30.%parent: pci0 dev.pcib.30.%pnpinfo: vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400 dev.pcib.30.%location: slot=24 function=3 dbsf=pci0:0:24:3 handle=\_SB_.PCI0.PE73 dev.pcib.30.%driver: pcib dev.pcib.30.%desc: ACPI PCI-PCI bridge dev.pcib.29.wake: 0 dev.pcib.29.subbus: 29 dev.pcib.29.secbus: 29 dev.pcib.29.pribus: 0 dev.pcib.29.domain: 0 dev.pcib.29.%parent: pci0 dev.pcib.29.%pnpinfo: vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400 dev.pcib.29.%location: slot=24 function=2 dbsf=pci0:0:24:2 handle=\_SB_.PCI0.PE72 dev.pcib.29.%driver: pcib dev.pcib.29.%desc: ACPI PCI-PCI bridge dev.pcib.28.wake: 0 dev.pcib.28.subbus: 28 dev.pcib.28.secbus: 28 dev.pcib.28.pribus: 0 dev.pcib.28.domain: 0 dev.pcib.28.%parent: pci0 dev.pcib.28.%pnpinfo: vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400 dev.pcib.28.%location: slot=24 function=1 dbsf=pci0:0:24:1 handle=\_SB_.PCI0.PE71 dev.pcib.28.%driver: pcib dev.pcib.28.%desc: ACPI PCI-PCI bridge dev.pcib.27.wake: 0 dev.pcib.27.subbus: 27 dev.pcib.27.secbus: 27 dev.pcib.27.pribus: 0 dev.pcib.27.domain: 0 dev.pcib.27.%parent: pci0 dev.pcib.27.%pnpinfo: vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400 dev.pcib.27.%location: slot=24 function=0 dbsf=pci0:0:24:0 handle=\_SB_.PCI0.PE70 dev.pcib.27.%driver: pcib dev.pcib.27.%desc: ACPI PCI-PCI bridge dev.pcib.26.wake: 0 dev.pcib.26.subbus: 26 dev.pcib.26.secbus: 26 dev.pcib.26.pribus: 0 dev.pcib.26.domain: 0 dev.pcib.26.%parent: pci0 dev.pcib.26.%pnpinfo: vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400 dev.pcib.26.%location: slot=23 function=7 dbsf=pci0:0:23:7 handle=\_SB_.PCI0.PE67 dev.pcib.26.%driver: pcib dev.pcib.26.%desc: ACPI PCI-PCI bridge dev.pcib.25.wake: 0 dev.pcib.25.subbus: 25 dev.pcib.25.secbus: 25 dev.pcib.25.pribus: 0 dev.pcib.25.domain: 0 dev.pcib.25.%parent: pci0 dev.pcib.25.%pnpinfo: vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400 dev.pcib.25.%location: slot=23 function=6 dbsf=pci0:0:23:6 handle=\_SB_.PCI0.PE66 dev.pcib.25.%driver: pcib dev.pcib.25.%desc: ACPI PCI-PCI bridge dev.pcib.24.wake: 0 dev.pcib.24.subbus: 24 dev.pcib.24.secbus: 24 dev.pcib.24.pribus: 0 dev.pcib.24.domain: 0 dev.pcib.24.%parent: pci0 dev.pcib.24.%pnpinfo: vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400 dev.pcib.24.%location: slot=23 function=5 dbsf=pci0:0:23:5 handle=\_SB_.PCI0.PE65 dev.pcib.24.%driver: pcib dev.pcib.24.%desc: ACPI PCI-PCI bridge dev.pcib.23.wake: 0 dev.pcib.23.subbus: 23 dev.pcib.23.secbus: 23 dev.pcib.23.pribus: 0 dev.pcib.23.domain: 0 dev.pcib.23.%parent: pci0 dev.pcib.23.%pnpinfo: vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400 dev.pcib.23.%location: slot=23 function=4 dbsf=pci0:0:23:4 handle=\_SB_.PCI0.PE64 dev.pcib.23.%driver: pcib dev.pcib.23.%desc: ACPI PCI-PCI bridge dev.pcib.22.wake: 0 dev.pcib.22.subbus: 22 dev.pcib.22.secbus: 22 dev.pcib.22.pribus: 0 dev.pcib.22.domain: 0 dev.pcib.22.%parent: pci0 dev.pcib.22.%pnpinfo: vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400 dev.pcib.22.%location: slot=23 function=3 dbsf=pci0:0:23:3 handle=\_SB_.PCI0.PE63 dev.pcib.22.%driver: pcib dev.pcib.22.%desc: ACPI PCI-PCI bridge dev.pcib.21.wake: 0 dev.pcib.21.subbus: 21 dev.pcib.21.secbus: 21 dev.pcib.21.pribus: 0 dev.pcib.21.domain: 0 dev.pcib.21.%parent: pci0 dev.pcib.21.%pnpinfo: vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400 dev.pcib.21.%location: slot=23 function=2 dbsf=pci0:0:23:2 handle=\_SB_.PCI0.PE62 dev.pcib.21.%driver: pcib dev.pcib.21.%desc: ACPI PCI-PCI bridge dev.pcib.20.wake: 0 dev.pcib.20.subbus: 20 dev.pcib.20.secbus: 20 dev.pcib.20.pribus: 0 dev.pcib.20.domain: 0 dev.pcib.20.%parent: pci0 dev.pcib.20.%pnpinfo: vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400 dev.pcib.20.%location: slot=23 function=1 dbsf=pci0:0:23:1 handle=\_SB_.PCI0.PE61 dev.pcib.20.%driver: pcib dev.pcib.20.%desc: ACPI PCI-PCI bridge dev.pcib.19.wake: 0 dev.pcib.19.subbus: 19 dev.pcib.19.secbus: 19 dev.pcib.19.pribus: 0 dev.pcib.19.domain: 0 dev.pcib.19.%parent: pci0 dev.pcib.19.%pnpinfo: vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400 dev.pcib.19.%location: slot=23 function=0 dbsf=pci0:0:23:0 handle=\_SB_.PCI0.PE60 dev.pcib.19.%driver: pcib dev.pcib.19.%desc: ACPI PCI-PCI bridge dev.pcib.18.wake: 0 dev.pcib.18.subbus: 18 dev.pcib.18.secbus: 18 dev.pcib.18.pribus: 0 dev.pcib.18.domain: 0 dev.pcib.18.%parent: pci0 dev.pcib.18.%pnpinfo: vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400 dev.pcib.18.%location: slot=22 function=7 dbsf=pci0:0:22:7 handle=\_SB_.PCI0.PE57 dev.pcib.18.%driver: pcib dev.pcib.18.%desc: ACPI PCI-PCI bridge dev.pcib.17.wake: 0 dev.pcib.17.subbus: 17 dev.pcib.17.secbus: 17 dev.pcib.17.pribus: 0 dev.pcib.17.domain: 0 dev.pcib.17.%parent: pci0 dev.pcib.17.%pnpinfo: vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400 dev.pcib.17.%location: slot=22 function=6 dbsf=pci0:0:22:6 handle=\_SB_.PCI0.PE56 dev.pcib.17.%driver: pcib dev.pcib.17.%desc: ACPI PCI-PCI bridge dev.pcib.16.wake: 0 dev.pcib.16.subbus: 16 dev.pcib.16.secbus: 16 dev.pcib.16.pribus: 0 dev.pcib.16.domain: 0 dev.pcib.16.%parent: pci0 dev.pcib.16.%pnpinfo: vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400 dev.pcib.16.%location: slot=22 function=5 dbsf=pci0:0:22:5 handle=\_SB_.PCI0.PE55 dev.pcib.16.%driver: pcib dev.pcib.16.%desc: ACPI PCI-PCI bridge dev.pcib.15.wake: 0 dev.pcib.15.subbus: 15 dev.pcib.15.secbus: 15 dev.pcib.15.pribus: 0 dev.pcib.15.domain: 0 dev.pcib.15.%parent: pci0 dev.pcib.15.%pnpinfo: vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400 dev.pcib.15.%location: slot=22 function=4 dbsf=pci0:0:22:4 handle=\_SB_.PCI0.PE54 dev.pcib.15.%driver: pcib dev.pcib.15.%desc: ACPI PCI-PCI bridge dev.pcib.14.wake: 0 dev.pcib.14.subbus: 14 dev.pcib.14.secbus: 14 dev.pcib.14.pribus: 0 dev.pcib.14.domain: 0 dev.pcib.14.%parent: pci0 dev.pcib.14.%pnpinfo: vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400 dev.pcib.14.%location: slot=22 function=3 dbsf=pci0:0:22:3 handle=\_SB_.PCI0.PE53 dev.pcib.14.%driver: pcib dev.pcib.14.%desc: ACPI PCI-PCI bridge dev.pcib.13.wake: 0 dev.pcib.13.subbus: 13 dev.pcib.13.secbus: 13 dev.pcib.13.pribus: 0 dev.pcib.13.domain: 0 dev.pcib.13.%parent: pci0 dev.pcib.13.%pnpinfo: vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400 dev.pcib.13.%location: slot=22 function=2 dbsf=pci0:0:22:2 handle=\_SB_.PCI0.PE52 dev.pcib.13.%driver: pcib dev.pcib.13.%desc: ACPI PCI-PCI bridge dev.pcib.12.wake: 0 dev.pcib.12.subbus: 12 dev.pcib.12.secbus: 12 dev.pcib.12.pribus: 0 dev.pcib.12.domain: 0 dev.pcib.12.%parent: pci0 dev.pcib.12.%pnpinfo: vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400 dev.pcib.12.%location: slot=22 function=1 dbsf=pci0:0:22:1 handle=\_SB_.PCI0.PE51 dev.pcib.12.%driver: pcib dev.pcib.12.%desc: ACPI PCI-PCI bridge dev.pcib.11.wake: 0 dev.pcib.11.subbus: 11 dev.pcib.11.secbus: 11 dev.pcib.11.pribus: 0 dev.pcib.11.domain: 0 dev.pcib.11.%parent: pci0 dev.pcib.11.%pnpinfo: vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400 dev.pcib.11.%location: slot=22 function=0 dbsf=pci0:0:22:0 handle=\_SB_.PCI0.PE50 dev.pcib.11.%driver: pcib dev.pcib.11.%desc: ACPI PCI-PCI bridge dev.pcib.10.wake: 0 dev.pcib.10.subbus: 10 dev.pcib.10.secbus: 10 dev.pcib.10.pribus: 0 dev.pcib.10.domain: 0 dev.pcib.10.%parent: pci0 dev.pcib.10.%pnpinfo: vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400 dev.pcib.10.%location: slot=21 function=7 dbsf=pci0:0:21:7 handle=\_SB_.PCI0.PE47 dev.pcib.10.%driver: pcib dev.pcib.10.%desc: ACPI PCI-PCI bridge dev.pcib.9.wake: 0 dev.pcib.9.subbus: 9 dev.pcib.9.secbus: 9 dev.pcib.9.pribus: 0 dev.pcib.9.domain: 0 dev.pcib.9.%parent: pci0 dev.pcib.9.%pnpinfo: vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400 dev.pcib.9.%location: slot=21 function=6 dbsf=pci0:0:21:6 handle=\_SB_.PCI0.PE46 dev.pcib.9.%driver: pcib dev.pcib.9.%desc: ACPI PCI-PCI bridge dev.pcib.8.wake: 0 dev.pcib.8.subbus: 8 dev.pcib.8.secbus: 8 dev.pcib.8.pribus: 0 dev.pcib.8.domain: 0 dev.pcib.8.%parent: pci0 dev.pcib.8.%pnpinfo: vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400 dev.pcib.8.%location: slot=21 function=5 dbsf=pci0:0:21:5 handle=\_SB_.PCI0.PE45 dev.pcib.8.%driver: pcib dev.pcib.8.%desc: ACPI PCI-PCI bridge dev.pcib.7.wake: 0 dev.pcib.7.subbus: 7 dev.pcib.7.secbus: 7 dev.pcib.7.pribus: 0 dev.pcib.7.domain: 0 dev.pcib.7.%parent: pci0 dev.pcib.7.%pnpinfo: vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400 dev.pcib.7.%location: slot=21 function=4 dbsf=pci0:0:21:4 handle=\_SB_.PCI0.PE44 dev.pcib.7.%driver: pcib dev.pcib.7.%desc: ACPI PCI-PCI bridge dev.pcib.6.wake: 0 dev.pcib.6.subbus: 6 dev.pcib.6.secbus: 6 dev.pcib.6.pribus: 0 dev.pcib.6.domain: 0 dev.pcib.6.%parent: pci0 dev.pcib.6.%pnpinfo: vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400 dev.pcib.6.%location: slot=21 function=3 dbsf=pci0:0:21:3 handle=\_SB_.PCI0.PE43 dev.pcib.6.%driver: pcib dev.pcib.6.%desc: ACPI PCI-PCI bridge dev.pcib.5.wake: 0 dev.pcib.5.subbus: 5 dev.pcib.5.secbus: 5 dev.pcib.5.pribus: 0 dev.pcib.5.domain: 0 dev.pcib.5.%parent: pci0 dev.pcib.5.%pnpinfo: vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400 dev.pcib.5.%location: slot=21 function=2 dbsf=pci0:0:21:2 handle=\_SB_.PCI0.PE42 dev.pcib.5.%driver: pcib dev.pcib.5.%desc: ACPI PCI-PCI bridge dev.pcib.4.wake: 0 dev.pcib.4.subbus: 4 dev.pcib.4.secbus: 4 dev.pcib.4.pribus: 0 dev.pcib.4.domain: 0 dev.pcib.4.%parent: pci0 dev.pcib.4.%pnpinfo: vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400 dev.pcib.4.%location: slot=21 function=1 dbsf=pci0:0:21:1 handle=\_SB_.PCI0.PE41 dev.pcib.4.%driver: pcib dev.pcib.4.%desc: ACPI PCI-PCI bridge dev.pcib.3.wake: 0 dev.pcib.3.subbus: 3 dev.pcib.3.secbus: 3 dev.pcib.3.pribus: 0 dev.pcib.3.domain: 0 dev.pcib.3.%parent: pci0 dev.pcib.3.%pnpinfo: vendor=0x15ad device=0x07a0 subvendor=0x15ad subdevice=0x07a0 class=0x060400 dev.pcib.3.%location: slot=21 function=0 dbsf=pci0:0:21:0 handle=\_SB_.PCI0.PE40 dev.pcib.3.%driver: pcib dev.pcib.3.%desc: ACPI PCI-PCI bridge dev.pcib.2.wake: 0 dev.pcib.2.subbus: 2 dev.pcib.2.secbus: 2 dev.pcib.2.pribus: 0 dev.pcib.2.domain: 0 dev.pcib.2.%parent: pci0 dev.pcib.2.%pnpinfo: vendor=0x15ad device=0x0790 subvendor=0x15ad subdevice=0x0790 class=0x060401 dev.pcib.2.%location: slot=17 function=0 dbsf=pci0:0:17:0 handle=\_SB_.PCI0.P2P0 dev.pcib.2.%driver: pcib dev.pcib.2.%desc: ACPI PCI-PCI bridge dev.pcib.1.subbus: 1 dev.pcib.1.secbus: 1 dev.pcib.1.pribus: 0 dev.pcib.1.domain: 0 dev.pcib.1.%parent: pci0 dev.pcib.1.%pnpinfo: vendor=0x8086 device=0x7191 subvendor=0x0000 subdevice=0x0000 class=0x060400 dev.pcib.1.%location: slot=1 function=0 dbsf=pci0:0:1:0 handle=\_SB_.PCI0.AGP_ dev.pcib.1.%driver: pcib dev.pcib.1.%desc: ACPI PCI-PCI bridge dev.pcib.0.wake: 0 dev.pcib.0.%parent: acpi0 dev.pcib.0.%pnpinfo: _HID=PNP0A03 _UID=0 dev.pcib.0.%location: handle=\_SB_.PCI0 dev.pcib.0.%driver: pcib dev.pcib.0.%desc: ACPI Host-PCI bridge dev.pcib.%parent: dev.pci_link.3.%parent: acpi0 dev.pci_link.3.%pnpinfo: _HID=PNP0C0F _UID=4 dev.pci_link.3.%location: handle=\_SB_.PCI0.ISA_.LNKD dev.pci_link.3.%driver: pci_link dev.pci_link.3.%desc: ACPI PCI Link LNKD dev.pci_link.2.%parent: acpi0 dev.pci_link.2.%pnpinfo: _HID=PNP0C0F _UID=3 dev.pci_link.2.%location: handle=\_SB_.PCI0.ISA_.LNKC dev.pci_link.2.%driver: pci_link dev.pci_link.2.%desc: ACPI PCI Link LNKC dev.pci_link.1.%parent: acpi0 dev.pci_link.1.%pnpinfo: _HID=PNP0C0F _UID=2 dev.pci_link.1.%location: handle=\_SB_.PCI0.ISA_.LNKB dev.pci_link.1.%driver: pci_link dev.pci_link.1.%desc: ACPI PCI Link LNKB dev.pci_link.0.%parent: acpi0 dev.pci_link.0.%pnpinfo: _HID=PNP0C0F _UID=1 dev.pci_link.0.%location: handle=\_SB_.PCI0.ISA_.LNKA dev.pci_link.0.%driver: pci_link dev.pci_link.0.%desc: ACPI PCI Link LNKA dev.pci_link.%parent: dev.acpi_timer.0.%parent: acpi0 dev.acpi_timer.0.%pnpinfo: unknown dev.acpi_timer.0.%location: dev.acpi_timer.0.%driver: acpi_timer dev.acpi_timer.0.%desc: 24-bit timer at 3.579545MHz dev.acpi_timer.%parent: dev.atrtc.0.%parent: acpi0 dev.atrtc.0.%pnpinfo: _HID=PNP0B00 _UID=0 dev.atrtc.0.%location: handle=\_SB_.PCI0.ISA_.RTC_ dev.atrtc.0.%driver: atrtc dev.atrtc.0.%desc: AT realtime clock dev.atrtc.%parent: dev.attimer.0.%parent: acpi0 dev.attimer.0.%pnpinfo: _HID=PNP0100 _UID=0 dev.attimer.0.%location: handle=\_SB_.PCI0.ISA_.TIME dev.attimer.0.%driver: attimer dev.attimer.0.%desc: AT timer dev.attimer.%parent: dev.cpu.0.cx_method: C1/hlt dev.cpu.0.cx_usage_counters: 403453 dev.cpu.0.cx_usage: 100.00% last 29614us dev.cpu.0.cx_lowest: C1 dev.cpu.0.cx_supported: C1/1/0 dev.cpu.0.%domain: 0 dev.cpu.0.%parent: acpi0 dev.cpu.0.%pnpinfo: _HID=none _UID=0 dev.cpu.0.%location: handle=\_SB_.CP00 _PXM=0 dev.cpu.0.%driver: cpu dev.cpu.0.%desc: ACPI CPU dev.cpu.%parent: dev.hpet.0.mmap_allow_write: 0 dev.hpet.0.mmap_allow: 1 dev.hpet.0.%parent: acpi0 dev.hpet.0.%pnpinfo: _HID=PNP0103 _UID=0 dev.hpet.0.%location: handle=\_SB_.PCI0.ISA_.HPET dev.hpet.0.%driver: hpet dev.hpet.0.%desc: High Precision Event Timer dev.hpet.%parent: dev.acpi_sysresource.1.%parent: acpi0 dev.acpi_sysresource.1.%pnpinfo: _HID=PNP0C02 _UID=4 dev.acpi_sysresource.1.%location: handle=\_SB_.PCI0.EXPL dev.acpi_sysresource.1.%driver: acpi_sysresource dev.acpi_sysresource.1.%desc: System Resource dev.acpi_sysresource.0.%parent: acpi0 dev.acpi_sysresource.0.%pnpinfo: _HID=PNP0C02 _UID=31 dev.acpi_sysresource.0.%location: handle=\_SB_.PCI0.ISA_.MBRD dev.acpi_sysresource.0.%driver: acpi_sysresource dev.acpi_sysresource.0.%desc: System Resource dev.acpi_sysresource.%parent: dev.acpi.0.%parent: nexus0 dev.acpi.0.%pnpinfo: dev.acpi.0.%location: dev.acpi.0.%driver: acpi dev.acpi.0.%desc: INTEL 440BX dev.acpi.%parent: dev.cryptosoft.0.%parent: nexus0 dev.cryptosoft.0.%pnpinfo: dev.cryptosoft.0.%location: dev.cryptosoft.0.%driver: cryptosoft dev.cryptosoft.0.%desc: software crypto dev.cryptosoft.%parent: dev.ram.0.%parent: nexus0 dev.ram.0.%pnpinfo: dev.ram.0.%location: dev.ram.0.%driver: ram dev.ram.0.%desc: System RAM dev.ram.%parent: dev.vtvga.0.%parent: nexus0 dev.vtvga.0.%pnpinfo: dev.vtvga.0.%location: dev.vtvga.0.%driver: vtvga dev.vtvga.0.%desc: VT VGA driver dev.vtvga.%parent: dev.nexus.0.%parent: root0 dev.nexus.0.%pnpinfo: dev.nexus.0.%location: dev.nexus.0.%driver: nexus dev.nexus.0.%desc: dev.nexus.%parent: dev.xen.xsd_kva: 0 dev.xen.xsd_port: 0 dev.xen.balloon.high_mem: 0 dev.xen.balloon.low_mem: 0 dev.xen.balloon.hard_limit: 0 dev.xen.balloon.driver_pages: 0 dev.xen.balloon.target: 0 dev.xen.balloon.current: 0 dev.netmap.iflib_rx_miss_bufs: 0 dev.netmap.iflib_rx_miss: 0 dev.netmap.iflib_crcstrip: 1 dev.netmap.bridge_batch: 1024 dev.netmap.default_pipes: 0 dev.netmap.priv_buf_num: 4098 dev.netmap.priv_buf_size: 2048 dev.netmap.buf_curr_num: 0 dev.netmap.buf_num: 163840 dev.netmap.buf_curr_size: 0 dev.netmap.buf_size: 2048 dev.netmap.priv_ring_num: 4 dev.netmap.priv_ring_size: 20480 dev.netmap.ring_curr_num: 0 dev.netmap.ring_num: 200 dev.netmap.ring_curr_size: 0 dev.netmap.ring_size: 36864 dev.netmap.priv_if_num: 2 dev.netmap.priv_if_size: 1024 dev.netmap.if_curr_num: 0 dev.netmap.if_num: 100 dev.netmap.if_curr_size: 0 dev.netmap.if_size: 1024 dev.netmap.ptnet_vnet_hdr: 1 dev.netmap.generic_rings: 1 dev.netmap.generic_ringsize: 1024 dev.netmap.generic_mit: 100000 dev.netmap.generic_hwcsum: 0 dev.netmap.admode: 0 dev.netmap.fwd: 0 dev.netmap.txsync_retry: 2 dev.netmap.no_pendintr: 1 dev.netmap.no_timestamp: 0 dev.netmap.verbose: 0 security.mac.ntpd.uid: 123 security.mac.ntpd.enabled: 1 security.mac.mmap_revocation_via_cow: 0 security.mac.mmap_revocation: 1 security.mac.labeled: 0 security.mac.max_slots: 4 security.mac.version: 4 security.bsd.stack_guard_page: 1 security.bsd.unprivileged_get_quota: 0 security.bsd.hardlink_check_gid: 0 security.bsd.hardlink_check_uid: 0 security.bsd.unprivileged_idprio: 0 security.bsd.unprivileged_proc_debug: 1 security.bsd.conservative_signals: 1 security.bsd.see_jail_proc: 1 security.bsd.see_other_gids: 1 security.bsd.see_other_uids: 1 security.bsd.unprivileged_read_msgbuf: 1 security.bsd.unprivileged_mlock: 1 security.bsd.suser_enabled: 1 security.bsd.map_at_zero: 0 security.jail.mount_procfs_allowed: 0 security.jail.mount_devfs_allowed: 0 security.jail.param.sysvshm.: 0 security.jail.param.sysvsem.: 0 security.jail.param.sysvmsg.: 0 security.jail.param.allow.mount.procfs: 0 security.jail.param.allow.mount.devfs: 0 security.jail.param.allow.mount.: 0 security.jail.param.allow.read_msgbuf: 0 security.jail.param.allow.reserved_ports: 0 security.jail.param.allow.mlock: 0 security.jail.param.allow.socket_af: 0 security.jail.param.allow.quotas: 0 security.jail.param.allow.chflags: 0 security.jail.param.allow.raw_sockets: 0 security.jail.param.allow.sysvipc: 0 security.jail.param.allow.set_hostname: 0 security.jail.param.ip6.saddrsel: 0 security.jail.param.ip6.: 0 security.jail.param.ip4.saddrsel: 0 security.jail.param.ip4.: 0 security.jail.param.cpuset.id: 0 security.jail.param.host.hostid: 0 security.jail.param.host.hostuuid: 64 security.jail.param.host.domainname: 256 security.jail.param.host.hostname: 256 security.jail.param.host.: 0 security.jail.param.children.max: 0 security.jail.param.children.cur: 0 security.jail.param.dying: 0 security.jail.param.vnet: 0 security.jail.param.persist: 0 security.jail.param.devfs_ruleset: 0 security.jail.param.enforce_statfs: 0 security.jail.param.osrelease: 32 security.jail.param.osreldate: 0 security.jail.param.securelevel: 0 security.jail.param.path: 1024 security.jail.param.name: 256 security.jail.param.parent: 0 security.jail.param.jid: 0 security.jail.devfs_ruleset: 0 security.jail.enforce_statfs: 2 security.jail.mount_allowed: 0 security.jail.chflags_allowed: 0 security.jail.allow_raw_sockets: 0 security.jail.sysvipc_allowed: 0 security.jail.socket_unixiproute_only: 1 security.jail.set_hostname_allowed: 1 security.jail.jail_max_af_ips: 255 security.jail.vnet: 0 security.jail.jailed: 0 compat.ia32.maxvmem: 0 compat.ia32.maxssiz: 67108864 compat.ia32.maxdsiz: 536870912 jc-1.17.3/tests/fixtures/freebsd12/traceroute.json000066400000000000000000000050101415226333200220340ustar00rootroot00000000000000{"destination_ip": "8.8.8.8", "destination_name": "8.8.8.8", "hops": [{"hop": 1, "probes": [{"annotation": null, "asn": null, "ip": "192.168.1.254", "name": "dsldevice.attlocal.net", "rtt": 3.263}, {"annotation": null, "asn": null, "ip": "192.168.1.254", "name": "dsldevice.attlocal.net", "rtt": 4.146}, {"annotation": null, "asn": null, "ip": "192.168.1.254", "name": "dsldevice.attlocal.net", "rtt": 4.273}]}, {"hop": 2, "probes": [{"annotation": null, "asn": null, "ip": "76.220.24.1", "name": "76-220-24-1.lightspeed.sntcca.sbcglobal.net", "rtt": 20.839}, {"annotation": null, "asn": null, "ip": "76.220.24.1", "name": "76-220-24-1.lightspeed.sntcca.sbcglobal.net", "rtt": 23.434}, {"annotation": null, "asn": null, "ip": "76.220.24.1", "name": "76-220-24-1.lightspeed.sntcca.sbcglobal.net", "rtt": 22.032}]}, {"hop": 3, "probes": []}, {"hop": 4, "probes": [{"annotation": null, "asn": null, "ip": "12.122.149.186", "name": "12.122.149.186", "rtt": 33.17}, {"annotation": null, "asn": null, "ip": "12.122.149.186", "name": "12.122.149.186", "rtt": 26.593}, {"annotation": null, "asn": null, "ip": "12.122.149.186", "name": "12.122.149.186", "rtt": 32.851}]}, {"hop": 5, "probes": [{"annotation": null, "asn": null, "ip": "12.122.3.70", "name": "sffca22crs.ip.att.net", "rtt": 26.045}, {"annotation": null, "asn": null, "ip": "12.122.3.70", "name": "sffca22crs.ip.att.net", "rtt": 29.235}, {"annotation": null, "asn": null, "ip": "12.122.3.70", "name": "sffca22crs.ip.att.net", "rtt": 28.28}]}, {"hop": 6, "probes": [{"annotation": null, "asn": null, "ip": "12.122.163.61", "name": "12.122.163.61", "rtt": 25.3}, {"annotation": null, "asn": null, "ip": "12.122.163.61", "name": "12.122.163.61", "rtt": 24.156}, {"annotation": null, "asn": null, "ip": "12.122.163.61", "name": "12.122.163.61", "rtt": 24.849}]}, {"hop": 7, "probes": [{"annotation": null, "asn": null, "ip": "12.255.10.226", "name": "12.255.10.226", "rtt": 25.375}, {"annotation": null, "asn": null, "ip": "12.255.10.224", "name": "12.255.10.224", "rtt": 24.011}, {"annotation": null, "asn": null, "ip": "12.255.10.224", "name": "12.255.10.224", "rtt": 25.322}]}, {"hop": 8, "probes": [{"annotation": null, "asn": null, "ip": "108.170.243.1", "name": "108.170.243.1", "rtt": 29.376}]}, {"hop": 9, "probes": [{"annotation": null, "asn": null, "ip": "8.8.8.8", "name": "dns.google", "rtt": 23.228}, {"annotation": null, "asn": null, "ip": "209.85.252.251", "name": "209.85.252.251", "rtt": 24.548}, {"annotation": null, "asn": null, "ip": "108.170.237.23", "name": "108.170.237.23", "rtt": 24.332}]}]} jc-1.17.3/tests/fixtures/freebsd12/traceroute.out000066400000000000000000000013321415226333200216750ustar00rootroot00000000000000traceroute to 8.8.8.8 (8.8.8.8), 64 hops max, 40 byte packets 1 dsldevice.attlocal.net (192.168.1.254) 3.263 ms 4.146 ms 4.273 ms 2 76-220-24-1.lightspeed.sntcca.sbcglobal.net (76.220.24.1) 20.839 ms 23.434 ms 22.032 ms 3 * * * 4 12.122.149.186 (12.122.149.186) 33.170 ms 26.593 ms 32.851 ms 5 sffca22crs.ip.att.net (12.122.3.70) 26.045 ms 29.235 ms 28.280 ms 6 12.122.163.61 (12.122.163.61) 25.300 ms 24.156 ms 24.849 ms 7 12.255.10.226 (12.255.10.226) 25.375 ms 12.255.10.224 (12.255.10.224) 24.011 ms 25.322 ms 8 * 108.170.243.1 (108.170.243.1) 29.376 ms * 9 dns.google (8.8.8.8) 23.228 ms 209.85.252.251 (209.85.252.251) 24.548 ms 108.170.237.23 (108.170.237.23) 24.332 ms jc-1.17.3/tests/fixtures/freebsd12/traceroute6.json000066400000000000000000000030211415226333200221220ustar00rootroot00000000000000{"destination_ip": "2a04:4e42::323", "destination_name": "turner-tls.map.fastly.net", "hops": [{"hop": 1, "probes": []}, {"hop": 2, "probes": [{"annotation": null, "asn": null, "ip": "2001:506:6000:11b:71:156:212:143", "name": null, "rtt": 27.603}, {"annotation": null, "asn": null, "ip": "2001:506:6000:11b:71:156:212:143", "name": null, "rtt": 28.659}, {"annotation": null, "asn": null, "ip": "2001:506:6000:11b:71:156:212:143", "name": null, "rtt": 33.235}]}, {"hop": 3, "probes": []}, {"hop": 4, "probes": [{"annotation": null, "asn": null, "ip": "2001:1890:ff:ff08:12:242:117:16", "name": null, "rtt": 36.731}, {"annotation": null, "asn": null, "ip": "2001:1890:ff:ff08:12:242:117:16", "name": null, "rtt": 28.875}, {"annotation": null, "asn": null, "ip": "2001:1890:ff:ff08:12:242:117:16", "name": null, "rtt": 28.959}]}, {"hop": 5, "probes": []}, {"hop": 6, "probes": []}, {"hop": 7, "probes": []}, {"hop": 8, "probes": []}, {"hop": 9, "probes": []}, {"hop": 10, "probes": []}, {"hop": 11, "probes": []}, {"hop": 12, "probes": []}, {"hop": 13, "probes": []}, {"hop": 14, "probes": []}, {"hop": 15, "probes": []}, {"hop": 16, "probes": []}, {"hop": 17, "probes": []}, {"hop": 18, "probes": []}, {"hop": 19, "probes": []}, {"hop": 20, "probes": []}, {"hop": 21, "probes": []}, {"hop": 22, "probes": []}, {"hop": 23, "probes": []}, {"hop": 24, "probes": []}, {"hop": 25, "probes": []}, {"hop": 26, "probes": []}, {"hop": 27, "probes": []}, {"hop": 28, "probes": []}, {"hop": 29, "probes": []}, {"hop": 30, "probes": []}, {"hop": 31, "probes": []}]} jc-1.17.3/tests/fixtures/freebsd12/traceroute6.out000066400000000000000000000012161415226333200217640ustar00rootroot00000000000000traceroute6: Warning: turner-tls.map.fastly.net has multiple addresses; using 2a04:4e42::323 traceroute6 to turner-tls.map.fastly.net (2a04:4e42::323) from 2600:1700:bab0:d40:250:56ff:fe26:c5b4, 64 hops max, 20 byte packets 1 * * * 2 2001:506:6000:11b:71:156:212:143 27.603 ms 28.659 ms 33.235 ms 3 * * * 4 2001:1890:ff:ff08:12:242:117:16 36.731 ms 28.875 ms 28.959 ms 5 * * * 6 * * * 7 * * * 8 * * * 9 * * * 10 * * * 11 * * * 12 * * * 13 * * * 14 * * * 15 * * * 16 * * * 17 * * * 18 * * * 19 * * * 20 * * * 21 * * * 22 * * * 23 * * * 24 * * * 25 * * * 26 * * * 27 * * * 28 * * * 29 * * * 30 * * * 31 * * * jc-1.17.3/tests/fixtures/freebsd12/uname-a.json000066400000000000000000000002321415226333200212030ustar00rootroot00000000000000{"machine":"amd64","kernel_name":"FreeBSD","node_name":"freebsd","kernel_release":"12.1-RELEASE","kernel_version":"FreeBSD 12.1-RELEASE r354233 GENERIC"} jc-1.17.3/tests/fixtures/freebsd12/uname-a.out000066400000000000000000000001121415226333200210360ustar00rootroot00000000000000FreeBSD freebsd 12.1-RELEASE FreeBSD 12.1-RELEASE r354233 GENERIC amd64 jc-1.17.3/tests/fixtures/freebsd12/uname-a2.json000066400000000000000000000004101415226333200212630ustar00rootroot00000000000000{ "machine": "amd64", "kernel_name": "FreeBSD", "node_name": "freebsd", "kernel_release": "10.1-RELEASE-p10", "kernel_version": "FreeBSD 10.1-RELEASE-p10 #0: Wed May 13 06:54:13 UTC 2015 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC" } jc-1.17.3/tests/fixtures/freebsd12/uname-a2.out000066400000000000000000000002441415226333200211260ustar00rootroot00000000000000FreeBSD freebsd 10.1-RELEASE-p10 FreeBSD 10.1-RELEASE-p10 #0: Wed May 13 06:54:13 UTC 2015 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 jc-1.17.3/tests/fixtures/generic/000077500000000000000000000000001415226333200166275ustar00rootroot00000000000000jc-1.17.3/tests/fixtures/generic/acpi-V.json000066400000000000000000000033271415226333200206460ustar00rootroot00000000000000[{"type":"Battery","id":0,"state":"Charging","charge_percent":71,"until_charged":"00:29:20","design_capacity_mah":2110,"last_full_capacity":2271,"last_full_capacity_percent":100,"until_charged_hours":0,"until_charged_minutes":29,"until_charged_seconds":20,"until_charged_total_seconds":1760},{"type":"Battery","id":1,"state":"Discharging","charge_percent":98,"charge_remaining":"01:43:14","design_capacity_mah":4400,"last_full_capacity":3013,"last_full_capacity_percent":68,"charge_remaining_hours":1,"charge_remaining_minutes":43,"charge_remaining_seconds":14,"charge_remaining_total_seconds":6194},{"type":"Battery","id":2,"state":"Discharging","charge_percent":0},{"type":"Battery","id":3,"state":"Full","charge_percent":100},{"type":"Adapter","id":0,"on-line":true},{"type":"Adapter","id":1,"on-line":false},{"type":"Thermal","id":0,"mode":"ok","temperature":46.0,"temperature_unit":"C","trip_points":[{"id":0,"switches_to_mode":"critical","temperature":127.0,"temperature_unit":"C"},{"id":1,"switches_to_mode":"hot","temperature":127.0,"temperature_unit":"C"}]},{"type":"Thermal","id":1,"mode":"ok","temperature":55.0,"temperature_unit":"C","trip_points":[{"id":0,"switches_to_mode":"critical","temperature":130.0,"temperature_unit":"C"},{"id":1,"switches_to_mode":"hot","temperature":100.0,"temperature_unit":"C"}]},{"type":"Cooling","id":0,"messages":["Processor 0 of 10"]},{"type":"Cooling","id":1,"messages":["Processor 0 of 10"]},{"type":"Cooling","id":2,"messages":["x86_pkg_temp no state information available"]},{"type":"Cooling","id":3,"messages":["Processor 0 of 10"]},{"type":"Cooling","id":4,"messages":["intel_powerclamp no state information available","another message"]},{"type":"Cooling","id":5,"messages":["Processor 0 of 10"]}] jc-1.17.3/tests/fixtures/generic/acpi-V.out000066400000000000000000000017351415226333200205050ustar00rootroot00000000000000Battery 0: Charging, 71%, 00:29:20 until charged Battery 0: design capacity 2110 mAh, last full capacity 2271 mAh = 100% Battery 1: Discharging, 98%, 01:43:14 remaining Battery 1: design capacity 4400 mAh, last full capacity 3013 mAh = 68% Battery 2: Discharging, 0%, rate information unavailable Battery 3: Full, 100% Adapter 0: on-line Adapter 1: off-line Thermal 0: ok, 46.0 degrees C Thermal 0: trip point 0 switches to mode critical at temperature 127.0 degrees C Thermal 0: trip point 1 switches to mode hot at temperature 127.0 degrees C Thermal 1: ok, 55.0 degrees C Thermal 1: trip point 0 switches to mode critical at temperature 130.0 degrees C Thermal 1: trip point 1 switches to mode hot at temperature 100.0 degrees C Cooling 0: Processor 0 of 10 Cooling 1: Processor 0 of 10 Cooling 2: x86_pkg_temp no state information available Cooling 3: Processor 0 of 10 Cooling 4: intel_powerclamp no state information available Cooling 4: another message Cooling 5: Processor 0 of 10 jc-1.17.3/tests/fixtures/generic/acpi-V2.json000066400000000000000000000017471415226333200207340ustar00rootroot00000000000000[{"type":"Battery","id":0,"state":"Charging","charge_percent":71,"until_charged":"00:29:20","design_capacity_mah":2110,"last_full_capacity":2271,"last_full_capacity_percent":100,"until_charged_hours":0,"until_charged_minutes":29,"until_charged_seconds":20,"until_charged_total_seconds":1760},{"type":"Adapter","id":0,"on-line":true},{"type":"Thermal","id":0,"mode":"ok","temperature":46.0,"temperature_unit":"C","trip_points":[{"id":0,"switches_to_mode":"critical","temperature":127.0,"temperature_unit":"C"},{"id":1,"switches_to_mode":"hot","temperature":127.0,"temperature_unit":"C"}]},{"type":"Cooling","id":0,"messages":["Processor 0 of 10"]},{"type":"Cooling","id":1,"messages":["Processor 0 of 10"]},{"type":"Cooling","id":2,"messages":["x86_pkg_temp no state information available"]},{"type":"Cooling","id":3,"messages":["Processor 0 of 10"]},{"type":"Cooling","id":4,"messages":["intel_powerclamp no state information available"]},{"type":"Cooling","id":5,"messages":["Processor 0 of 10"]}] jc-1.17.3/tests/fixtures/generic/acpi-V2.out000066400000000000000000000010551415226333200205620ustar00rootroot00000000000000Battery 0: Charging, 71%, 00:29:20 until charged Battery 0: design capacity 2110 mAh, last full capacity 2271 mAh = 100% Adapter 0: on-line Thermal 0: ok, 46.0 degrees C Thermal 0: trip point 0 switches to mode critical at temperature 127.0 degrees C Thermal 0: trip point 1 switches to mode hot at temperature 127.0 degrees C Cooling 0: Processor 0 of 10 Cooling 1: Processor 0 of 10 Cooling 2: x86_pkg_temp no state information available Cooling 3: Processor 0 of 10 Cooling 4: intel_powerclamp no state information available Cooling 5: Processor 0 of 10 jc-1.17.3/tests/fixtures/generic/acpi-V3.json000066400000000000000000000020371415226333200207260ustar00rootroot00000000000000[{"type":"Battery","id":0,"state":"Discharging","charge_percent":98,"charge_remaining":"01:43:14","design_capacity_mah":4400,"last_full_capacity":3013,"last_full_capacity_percent":68,"charge_remaining_hours":1,"charge_remaining_minutes":43,"charge_remaining_seconds":14,"charge_remaining_total_seconds":6194},{"type":"Battery","id":1,"state":"Discharging","charge_percent":0},{"type":"Adapter","id":0,"on-line":false},{"type":"Thermal","id":0,"mode":"ok","temperature":60.5,"temperature_unit":"C","trip_points":[{"id":0,"switches_to_mode":"critical","temperature":84.0,"temperature_unit":"C"}]},{"type":"Cooling","id":0,"messages":["Processor 0 of 3"]},{"type":"Cooling","id":1,"messages":["intel_powerclamp no state information available"]},{"type":"Cooling","id":2,"messages":["Processor 0 of 3"]},{"type":"Cooling","id":3,"messages":["x86_pkg_temp no state information available"]},{"type":"Cooling","id":4,"messages":["Processor 0 of 3"]},{"type":"Cooling","id":5,"messages":["LCD 0 of 15"]},{"type":"Cooling","id":6,"messages":["Processor 0 of 3"]}] jc-1.17.3/tests/fixtures/generic/acpi-V3.out000066400000000000000000000010531415226333200205610ustar00rootroot00000000000000Battery 0: Discharging, 98%, 01:43:14 remaining Battery 0: design capacity 4400 mAh, last full capacity 3013 mAh = 68% Battery 1: Discharging, 0%, rate information unavailable Adapter 0: off-line Thermal 0: ok, 60.5 degrees C Thermal 0: trip point 0 switches to mode critical at temperature 84.0 degrees C Cooling 0: Processor 0 of 3 Cooling 1: intel_powerclamp no state information available Cooling 2: Processor 0 of 3 Cooling 3: x86_pkg_temp no state information available Cooling 4: Processor 0 of 3 Cooling 5: LCD 0 of 15 Cooling 6: Processor 0 of 3 jc-1.17.3/tests/fixtures/generic/acpi-V4.json000066400000000000000000000015301415226333200207240ustar00rootroot00000000000000[{"type":"Battery","id":0,"state":"Full","charge_percent":100,"design_capacity_mah":1969,"last_full_capacity":2118,"last_full_capacity_percent":100},{"type":"Adapter","id":0,"on-line":true},{"type":"Thermal","id":0,"mode":"ok","temperature":45.0,"temperature_unit":"C","trip_points":[{"id":0,"switches_to_mode":"critical","temperature":127.0,"temperature_unit":"C"},{"id":1,"switches_to_mode":"hot","temperature":127.0,"temperature_unit":"C"}]},{"type":"Cooling","id":0,"messages":["Processor 0 of 10"]},{"type":"Cooling","id":1,"messages":["Processor 0 of 10"]},{"type":"Cooling","id":2,"messages":["x86_pkg_temp no state information available"]},{"type":"Cooling","id":3,"messages":["Processor 0 of 10"]},{"type":"Cooling","id":4,"messages":["intel_powerclamp no state information available"]},{"type":"Cooling","id":5,"messages":["Processor 0 of 10"]}] jc-1.17.3/tests/fixtures/generic/acpi-V4.out000066400000000000000000000010221415226333200205560ustar00rootroot00000000000000Battery 0: Full, 100% Battery 0: design capacity 1969 mAh, last full capacity 2118 mAh = 100% Adapter 0: on-line Thermal 0: ok, 45.0 degrees C Thermal 0: trip point 0 switches to mode critical at temperature 127.0 degrees C Thermal 0: trip point 1 switches to mode hot at temperature 127.0 degrees C Cooling 0: Processor 0 of 10 Cooling 1: Processor 0 of 10 Cooling 2: x86_pkg_temp no state information available Cooling 3: Processor 0 of 10 Cooling 4: intel_powerclamp no state information available Cooling 5: Processor 0 of 10 jc-1.17.3/tests/fixtures/generic/csv-10k-sales-records-streaming.json000066400000000000000000146346661415226333200254730ustar00rootroot00000000000000[{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"1/27/2011","Order ID":"292494523","Ship Date":"2/12/2011","Units Sold":"4484","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2920025.64","Total Cost":"2353920.64","Total Profit":"566105.00"},{"Region":"Europe","Country":"Latvia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"12/28/2015","Order ID":"361825549","Ship Date":"1/23/2016","Units Sold":"1075","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"51008.75","Total Cost":"34174.25","Total Profit":"16834.50"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/13/2011","Order ID":"141515767","Ship Date":"2/1/2011","Units Sold":"6515","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1003700.90","Total Cost":"592408.95","Total Profit":"411291.95"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"9/11/2012","Order ID":"500364005","Ship Date":"10/6/2012","Units Sold":"7683","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5134318.41","Total Cost":"3861014.82","Total Profit":"1273303.59"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"10/27/2015","Order ID":"127481591","Ship Date":"12/5/2015","Units Sold":"3491","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"165647.95","Total Cost":"110978.89","Total Profit":"54669.06"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/10/2012","Order ID":"482292354","Ship Date":"8/21/2012","Units Sold":"9880","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"468806.00","Total Cost":"314085.20","Total Profit":"154720.80"},{"Region":"Asia","Country":"Laos","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"2/20/2011","Order ID":"844532620","Ship Date":"3/20/2011","Units Sold":"4825","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"743339.50","Total Cost":"438737.25","Total Profit":"304602.25"},{"Region":"Asia","Country":"China","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"4/10/2017","Order ID":"564251220","Ship Date":"5/12/2017","Units Sold":"3330","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"850082.40","Total Cost":"530868.60","Total Profit":"319213.80"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"11/21/2014","Order ID":"411809480","Ship Date":"1/10/2015","Units Sold":"2431","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1025614.59","Total Cost":"886561.39","Total Profit":"139053.20"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"7/4/2015","Order ID":"327881228","Ship Date":"7/20/2015","Units Sold":"6197","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4035548.37","Total Cost":"3253177.12","Total Profit":"782371.25"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/26/2016","Order ID":"773452794","Ship Date":"8/24/2016","Units Sold":"724","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"148926.80","Total Cost":"84787.64","Total Profit":"64139.16"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/20/2012","Order ID":"479823005","Ship Date":"11/15/2012","Units Sold":"9145","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2334535.60","Total Cost":"1457895.90","Total Profit":"876639.70"},{"Region":"Europe","Country":"Germany","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"2/22/2015","Order ID":"498603188","Ship Date":"2/27/2015","Units Sold":"6618","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4309707.78","Total Cost":"3474185.28","Total Profit":"835522.50"},{"Region":"Asia","Country":"India","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"8/27/2016","Order ID":"151717174","Ship Date":"9/2/2016","Units Sold":"5338","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3567225.26","Total Cost":"2682558.52","Total Profit":"884666.74"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/21/2011","Order ID":"181401288","Ship Date":"7/21/2011","Units Sold":"9527","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1041110.56","Total Cost":"341447.68","Total Profit":"699662.88"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/19/2013","Order ID":"500204360","Ship Date":"10/4/2013","Units Sold":"441","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"67287.78","Total Cost":"42971.04","Total Profit":"24316.74"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"11/15/2015","Order ID":"640987718","Ship Date":"11/30/2015","Units Sold":"1365","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"64769.25","Total Cost":"43393.35","Total Profit":"21375.90"},{"Region":"Europe","Country":"Vatican City","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"4/6/2015","Order ID":"206925189","Ship Date":"4/27/2015","Units Sold":"2617","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"124176.65","Total Cost":"83194.43","Total Profit":"40982.22"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/12/2010","Order ID":"221503102","Ship Date":"5/19/2010","Units Sold":"6545","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"534922.85","Total Cost":"370905.15","Total Profit":"164017.70"},{"Region":"Europe","Country":"Lithuania","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/26/2011","Order ID":"878520286","Ship Date":"10/2/2011","Units Sold":"2530","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"386027.40","Total Cost":"246523.20","Total Profit":"139504.20"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/14/2016","Order ID":"192088067","Ship Date":"6/18/2016","Units Sold":"1983","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"866967.60","Total Cost":"522183.39","Total Profit":"344784.21"},{"Region":"Europe","Country":"Ukraine","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"8/14/2010","Order ID":"746630275","Ship Date":"8/31/2010","Units Sold":"3345","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2178297.45","Total Cost":"1755991.20","Total Profit":"422306.25"},{"Region":"Europe","Country":"Russia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/13/2012","Order ID":"246883237","Ship Date":"4/22/2012","Units Sold":"7091","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1081944.78","Total Cost":"690947.04","Total Profit":"390997.74"},{"Region":"Asia","Country":"Japan","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/19/2013","Order ID":"967895781","Ship Date":"9/28/2013","Units Sold":"725","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"316970.00","Total Cost":"190914.25","Total Profit":"126055.75"},{"Region":"Europe","Country":"Russia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/2/2015","Order ID":"305029237","Ship Date":"12/26/2015","Units Sold":"3784","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1596431.76","Total Cost":"1379986.96","Total Profit":"216444.80"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/26/2017","Order ID":"223957431","Ship Date":"2/28/2017","Units Sold":"2835","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"436760.10","Total Cost":"257786.55","Total Profit":"178973.55"},{"Region":"Europe","Country":"Greece","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"10/9/2016","Order ID":"510666692","Ship Date":"10/13/2016","Units Sold":"6477","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"707806.56","Total Cost":"232135.68","Total Profit":"475670.88"},{"Region":"Europe","Country":"Albania","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/20/2011","Order ID":"121455848","Ship Date":"6/19/2011","Units Sold":"339","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"86539.92","Total Cost":"54043.38","Total Profit":"32496.54"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"10/24/2013","Order ID":"332936227","Ship Date":"12/3/2013","Units Sold":"2083","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"531748.24","Total Cost":"332071.86","Total Profit":"199676.38"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/14/2011","Order ID":"692031657","Ship Date":"7/20/2011","Units Sold":"6401","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"303727.45","Total Cost":"203487.79","Total Profit":"100239.66"},{"Region":"Europe","Country":"Andorra","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"6/20/2015","Order ID":"365978467","Ship Date":"7/21/2015","Units Sold":"16","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"10419.36","Total Cost":"8399.36","Total Profit":"2020.00"},{"Region":"Europe","Country":"Switzerland","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"8/5/2011","Order ID":"392325484","Ship Date":"9/1/2011","Units Sold":"6684","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"546283.32","Total Cost":"378782.28","Total Profit":"167501.04"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/30/2016","Order ID":"528934037","Ship Date":"1/9/2017","Units Sold":"2191","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"559318.48","Total Cost":"349289.22","Total Profit":"210029.26"},{"Region":"Europe","Country":"San Marino","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"7/5/2015","Order ID":"603977954","Ship Date":"7/29/2015","Units Sold":"9353","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1440923.18","Total Cost":"850468.29","Total Profit":"590454.89"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"3/25/2015","Order ID":"965943562","Ship Date":"5/9/2015","Units Sold":"3020","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"28176.60","Total Cost":"20898.40","Total Profit":"7278.20"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"8/22/2013","Order ID":"233629691","Ship Date":"8/30/2013","Units Sold":"5072","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2217478.40","Total Cost":"1335609.76","Total Profit":"881868.64"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"12/11/2016","Order ID":"246147668","Ship Date":"1/13/2017","Units Sold":"9420","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"769896.60","Total Cost":"533831.40","Total Profit":"236065.20"},{"Region":"Europe","Country":"Serbia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"6/23/2013","Order ID":"212921321","Ship Date":"7/18/2013","Units Sold":"7005","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"332387.25","Total Cost":"222688.95","Total Profit":"109698.30"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/8/2015","Order ID":"763686978","Ship Date":"5/13/2015","Units Sold":"803","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"7491.99","Total Cost":"5556.76","Total Profit":"1935.23"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/24/2016","Order ID":"798493468","Ship Date":"11/24/2016","Units Sold":"816","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"208308.48","Total Cost":"130086.72","Total Profit":"78221.76"},{"Region":"Europe","Country":"Italy","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/10/2013","Order ID":"637702119","Ship Date":"4/4/2013","Units Sold":"9083","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1868373.10","Total Cost":"1063710.13","Total Profit":"804662.97"},{"Region":"Asia","Country":"Bhutan","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/18/2012","Order ID":"671986758","Ship Date":"5/4/2012","Units Sold":"4670","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"510337.60","Total Cost":"167372.80","Total Profit":"342964.80"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"2/11/2015","Order ID":"912333714","Ship Date":"3/2/2015","Units Sold":"8675","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"948004.00","Total Cost":"310912.00","Total Profit":"637092.00"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/30/2012","Order ID":"540041816","Ship Date":"11/3/2012","Units Sold":"9229","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4034918.80","Total Cost":"2430272.57","Total Profit":"1604646.23"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/6/2012","Order ID":"156722390","Ship Date":"8/1/2012","Units Sold":"6493","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4339077.11","Total Cost":"3262992.22","Total Profit":"1076084.89"},{"Region":"Europe","Country":"Poland","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/4/2011","Order ID":"434299266","Ship Date":"2/21/2011","Units Sold":"7659","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1575456.30","Total Cost":"896945.49","Total Profit":"678510.81"},{"Region":"Europe","Country":"France","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/25/2013","Order ID":"765008771","Ship Date":"12/10/2013","Units Sold":"1950","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"497796.00","Total Cost":"310869.00","Total Profit":"186927.00"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/16/2016","Order ID":"611399734","Ship Date":"3/22/2016","Units Sold":"5623","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1435439.44","Total Cost":"896418.66","Total Profit":"539020.78"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"3/16/2014","Order ID":"856333482","Ship Date":"4/27/2014","Units Sold":"6962","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"569004.26","Total Cost":"394536.54","Total Profit":"174467.72"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/24/2016","Order ID":"652983844","Ship Date":"10/29/2016","Units Sold":"1285","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"11989.05","Total Cost":"8892.20","Total Profit":"3096.85"},{"Region":"Europe","Country":"Slovenia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"9/30/2010","Order ID":"574837148","Ship Date":"11/11/2010","Units Sold":"5941","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2597405.20","Total Cost":"1564443.53","Total Profit":"1032961.67"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/5/2010","Order ID":"365692222","Ship Date":"12/5/2010","Units Sold":"5310","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"580276.80","Total Cost":"190310.40","Total Profit":"389966.40"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"7/21/2017","Order ID":"289660394","Ship Date":"8/22/2017","Units Sold":"5802","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1193471.40","Total Cost":"679472.22","Total Profit":"513999.18"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"7/10/2013","Order ID":"681165492","Ship Date":"7/26/2013","Units Sold":"861","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"132645.66","Total Cost":"78290.73","Total Profit":"54354.93"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/6/2012","Order ID":"594943845","Ship Date":"10/21/2012","Units Sold":"5959","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3880560.39","Total Cost":"3128236.64","Total Profit":"752323.75"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"6/4/2011","Order ID":"956044280","Ship Date":"7/24/2011","Units Sold":"3603","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1520069.67","Total Cost":"1313978.07","Total Profit":"206091.60"},{"Region":"Europe","Country":"Spain","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/12/2014","Order ID":"509828126","Ship Date":"4/15/2014","Units Sold":"8327","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"77690.91","Total Cost":"57622.84","Total Profit":"20068.07"},{"Region":"Europe","Country":"Moldova ","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"10/26/2015","Order ID":"771969211","Ship Date":"12/15/2015","Units Sold":"1699","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"138859.27","Total Cost":"96282.33","Total Profit":"42576.94"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"8/4/2011","Order ID":"178453862","Ship Date":"8/27/2011","Units Sold":"7318","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1505312.60","Total Cost":"857010.98","Total Profit":"648301.62"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"2/24/2017","Order ID":"835580909","Ship Date":"4/14/2017","Units Sold":"5814","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"475178.22","Total Cost":"329479.38","Total Profit":"145698.84"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/30/2011","Order ID":"869961678","Ship Date":"4/12/2011","Units Sold":"9848","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6413116.08","Total Cost":"5169806.08","Total Profit":"1243310.00"},{"Region":"Central America and the Caribbean","Country":"Saint Lucia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"5/2/2015","Order ID":"278519999","Ship Date":"6/14/2015","Units Sold":"9112","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"85014.96","Total Cost":"63055.04","Total Profit":"21959.92"},{"Region":"Europe","Country":"Georgia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/1/2014","Order ID":"478492200","Ship Date":"2/26/2014","Units Sold":"5330","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"821139.80","Total Cost":"484656.90","Total Profit":"336482.90"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/3/2012","Order ID":"257427108","Ship Date":"4/10/2012","Units Sold":"7257","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3172760.40","Total Cost":"1910985.81","Total Profit":"1261774.59"},{"Region":"Europe","Country":"Iceland","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"4/22/2015","Order ID":"723186051","Ship Date":"5/13/2015","Units Sold":"5678","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"866349.24","Total Cost":"553264.32","Total Profit":"313084.92"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"5/12/2011","Order ID":"353942859","Ship Date":"5/15/2011","Units Sold":"8412","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"687512.76","Total Cost":"476708.04","Total Profit":"210804.72"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"12/21/2011","Order ID":"848183858","Ship Date":"1/18/2012","Units Sold":"5307","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3455971.47","Total Cost":"2785962.72","Total Profit":"670008.75"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"12/2/2010","Order ID":"374707877","Ship Date":"12/25/2010","Units Sold":"3243","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1368189.27","Total Cost":"1182689.67","Total Profit":"185499.60"},{"Region":"Europe","Country":"Montenegro","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"8/14/2010","Order ID":"322626245","Ship Date":"9/16/2010","Units Sold":"1130","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"92354.90","Total Cost":"64037.10","Total Profit":"28317.80"},{"Region":"Europe","Country":"Germany","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"10/5/2010","Order ID":"351362788","Ship Date":"11/14/2010","Units Sold":"4912","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3282542.24","Total Cost":"2468476.48","Total Profit":"814065.76"},{"Region":"Europe","Country":"Estonia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/8/2012","Order ID":"640653836","Ship Date":"3/18/2012","Units Sold":"2562","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1080882.18","Total Cost":"934335.78","Total Profit":"146546.40"},{"Region":"Europe","Country":"Serbia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"9/8/2012","Order ID":"540548217","Ship Date":"9/20/2012","Units Sold":"9084","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"992699.52","Total Cost":"325570.56","Total Profit":"667128.96"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/11/2011","Order ID":"821407258","Ship Date":"8/19/2011","Units Sold":"1516","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"387004.48","Total Cost":"241680.72","Total Profit":"145323.76"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/28/2012","Order ID":"523904788","Ship Date":"11/7/2012","Units Sold":"3924","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"186193.80","Total Cost":"124743.96","Total Profit":"61449.84"},{"Region":"Europe","Country":"Hungary","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"10/11/2013","Order ID":"109027135","Ship Date":"10/27/2013","Units Sold":"2407","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"263036.96","Total Cost":"86266.88","Total Profit":"176770.08"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"10/6/2016","Order ID":"108073127","Ship Date":"10/20/2016","Units Sold":"95","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"41534.00","Total Cost":"25016.35","Total Profit":"16517.65"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/28/2017","Order ID":"672654092","Ship Date":"7/31/2017","Units Sold":"2148","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"20040.84","Total Cost":"14864.16","Total Profit":"5176.68"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"11/4/2016","Order ID":"224693858","Ship Date":"11/25/2016","Units Sold":"761","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"117239.66","Total Cost":"69197.73","Total Profit":"48041.93"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"4/12/2016","Order ID":"406428754","Ship Date":"5/1/2016","Units Sold":"155","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"12668.15","Total Cost":"8783.85","Total Profit":"3884.30"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"11/13/2014","Order ID":"230407607","Ship Date":"12/20/2014","Units Sold":"1586","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"404874.08","Total Cost":"252840.12","Total Profit":"152033.96"},{"Region":"Asia","Country":"Cambodia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"8/26/2012","Order ID":"129491746","Ship Date":"9/22/2012","Units Sold":"8340","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"681628.20","Total Cost":"472627.80","Total Profit":"209000.40"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"7/15/2014","Order ID":"606854999","Ship Date":"8/15/2014","Units Sold":"735","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"113234.10","Total Cost":"66833.55","Total Profit":"46400.55"},{"Region":"North America","Country":"United States of America","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/2/2011","Order ID":"885983693","Ship Date":"5/4/2011","Units Sold":"1118","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"285403.04","Total Cost":"178231.56","Total Profit":"107171.48"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/11/2013","Order ID":"260676658","Ship Date":"12/17/2013","Units Sold":"8871","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5776883.91","Total Cost":"4656920.16","Total Profit":"1119963.75"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/14/2011","Order ID":"345045220","Ship Date":"5/20/2011","Units Sold":"5403","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2362191.60","Total Cost":"1422771.99","Total Profit":"939419.61"},{"Region":"Europe","Country":"Albania","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"10/4/2012","Order ID":"123513209","Ship Date":"11/21/2012","Units Sold":"9158","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2337854.24","Total Cost":"1459968.36","Total Profit":"877885.88"},{"Region":"Europe","Country":"Switzerland","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"5/14/2013","Order ID":"900816953","Ship Date":"6/10/2013","Units Sold":"609","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"93822.54","Total Cost":"55376.37","Total Profit":"38446.17"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"1/12/2013","Order ID":"452005279","Ship Date":"2/2/2013","Units Sold":"7261","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4852308.47","Total Cost":"3648942.94","Total Profit":"1203365.53"},{"Region":"Europe","Country":"Austria","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"10/3/2012","Order ID":"672439515","Ship Date":"11/12/2012","Units Sold":"8650","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1332619.00","Total Cost":"786544.50","Total Profit":"546074.50"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/23/2010","Order ID":"827793490","Ship Date":"11/20/2010","Units Sold":"1344","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"898154.88","Total Cost":"675413.76","Total Profit":"222741.12"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"2/6/2014","Order ID":"704053533","Ship Date":"3/28/2014","Units Sold":"3941","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"430672.48","Total Cost":"141245.44","Total Profit":"289427.04"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/4/2011","Order ID":"157518470","Ship Date":"9/4/2011","Units Sold":"2070","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"528429.60","Total Cost":"329999.40","Total Profit":"198430.20"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/12/2016","Order ID":"464799630","Ship Date":"6/26/2016","Units Sold":"3394","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1483856.80","Total Cost":"893742.02","Total Profit":"590114.78"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"7/19/2015","Order ID":"272820842","Ship Date":"8/20/2015","Units Sold":"2605","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1696402.05","Total Cost":"1367520.80","Total Profit":"328881.25"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"10/28/2012","Order ID":"548818433","Ship Date":"11/24/2012","Units Sold":"6425","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"525115.25","Total Cost":"364104.75","Total Profit":"161010.50"},{"Region":"Europe","Country":"Hungary","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"8/25/2016","Order ID":"530341231","Ship Date":"9/25/2016","Units Sold":"8611","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3632894.79","Total Cost":"3140345.59","Total Profit":"492549.20"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/25/2013","Order ID":"875250566","Ship Date":"11/3/2013","Units Sold":"4947","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"234735.15","Total Cost":"157265.13","Total Profit":"77470.02"},{"Region":"Europe","Country":"Moldova ","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/11/2011","Order ID":"511720263","Ship Date":"2/26/2011","Units Sold":"8252","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"674435.96","Total Cost":"467640.84","Total Profit":"206795.12"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/27/2016","Order ID":"688236653","Ship Date":"6/13/2016","Units Sold":"3375","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"160143.75","Total Cost":"107291.25","Total Profit":"52852.50"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"2/6/2012","Order ID":"923598563","Ship Date":"2/26/2012","Units Sold":"2194","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"179315.62","Total Cost":"124333.98","Total Profit":"54981.64"},{"Region":"Central America and the Caribbean","Country":"Saint Lucia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"12/25/2011","Order ID":"356917321","Ship Date":"2/4/2012","Units Sold":"8622","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1315544.76","Total Cost":"840127.68","Total Profit":"475417.08"},{"Region":"Europe","Country":"Sweden","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/13/2011","Order ID":"897616755","Ship Date":"1/20/2012","Units Sold":"3600","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"554616.00","Total Cost":"327348.00","Total Profit":"227268.00"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"7/20/2016","Order ID":"475433194","Ship Date":"8/19/2016","Units Sold":"102","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"26038.56","Total Cost":"16260.84","Total Profit":"9777.72"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/18/2012","Order ID":"690415465","Ship Date":"7/14/2012","Units Sold":"8134","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1253124.04","Total Cost":"739624.62","Total Profit":"513499.42"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"2/23/2010","Order ID":"962924897","Ship Date":"4/12/2010","Units Sold":"9730","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4253956.00","Total Cost":"2562200.90","Total Profit":"1691755.10"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"5/5/2017","Order ID":"783635318","Ship Date":"5/9/2017","Units Sold":"3960","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"604216.80","Total Cost":"385862.40","Total Profit":"218354.40"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"7/23/2012","Order ID":"163533055","Ship Date":"8/13/2012","Units Sold":"1920","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"394944.00","Total Cost":"224851.20","Total Profit":"170092.80"},{"Region":"Asia","Country":"Taiwan","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"1/11/2017","Order ID":"983916938","Ship Date":"1/17/2017","Units Sold":"1742","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"82657.90","Total Cost":"55378.18","Total Profit":"27279.72"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"3/7/2015","Order ID":"246398293","Ship Date":"4/14/2015","Units Sold":"3585","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"737434.50","Total Cost":"419839.35","Total Profit":"317595.15"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/9/2011","Order ID":"422900950","Ship Date":"7/5/2011","Units Sold":"4644","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3024219.24","Total Cost":"2437914.24","Total Profit":"586305.00"},{"Region":"Asia","Country":"Indonesia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/17/2011","Order ID":"905661237","Ship Date":"6/5/2011","Units Sold":"4141","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2696660.61","Total Cost":"2173859.36","Total Profit":"522801.25"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"7/7/2017","Order ID":"257227981","Ship Date":"7/27/2017","Units Sold":"8330","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"910302.40","Total Cost":"298547.20","Total Profit":"611755.20"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/22/2011","Order ID":"260462510","Ship Date":"4/9/2011","Units Sold":"5500","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"839190.00","Total Cost":"535920.00","Total Profit":"303270.00"},{"Region":"Europe","Country":"Portugal","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/29/2016","Order ID":"968538653","Ship Date":"4/6/2016","Units Sold":"965","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"9003.45","Total Cost":"6677.80","Total Profit":"2325.65"},{"Region":"Europe","Country":"Hungary","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"1/14/2012","Order ID":"254942739","Ship Date":"2/4/2012","Units Sold":"2077","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"427238.90","Total Cost":"243237.47","Total Profit":"184001.43"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"3/17/2013","Order ID":"563473594","Ship Date":"4/10/2013","Units Sold":"3213","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"152456.85","Total Cost":"102141.27","Total Profit":"50315.58"},{"Region":"Europe","Country":"Armenia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"9/15/2012","Order ID":"358242547","Ship Date":"11/2/2012","Units Sold":"785","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"64158.05","Total Cost":"44485.95","Total Profit":"19672.10"},{"Region":"Asia","Country":"North Korea","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"11/26/2015","Order ID":"873673427","Ship Date":"12/6/2015","Units Sold":"8237","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3475107.93","Total Cost":"3003951.53","Total Profit":"471156.40"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/1/2014","Order ID":"264502561","Ship Date":"3/20/2014","Units Sold":"1040","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"438765.60","Total Cost":"379277.60","Total Profit":"59488.00"},{"Region":"Asia","Country":"India","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/23/2010","Order ID":"355778777","Ship Date":"1/18/2011","Units Sold":"1701","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"139022.73","Total Cost":"96395.67","Total Profit":"42627.06"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"5/10/2011","Order ID":"792863404","Ship Date":"6/12/2011","Units Sold":"4755","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3177623.85","Total Cost":"2389577.70","Total Profit":"788046.15"},{"Region":"Europe","Country":"Armenia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/12/2017","Order ID":"391430270","Ship Date":"5/22/2017","Units Sold":"1770","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"746745.30","Total Cost":"645501.30","Total Profit":"101244.00"},{"Region":"Europe","Country":"Georgia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"9/23/2016","Order ID":"287465703","Ship Date":"10/25/2016","Units Sold":"6344","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"693272.32","Total Cost":"227368.96","Total Profit":"465903.36"},{"Region":"Europe","Country":"Serbia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/8/2010","Order ID":"787268531","Ship Date":"3/14/2010","Units Sold":"9108","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3982017.60","Total Cost":"2398409.64","Total Profit":"1583607.96"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/10/2014","Order ID":"917450082","Ship Date":"2/11/2014","Units Sold":"2722","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1190058.40","Total Cost":"716784.26","Total Profit":"473274.14"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"2/3/2012","Order ID":"674934184","Ship Date":"2/6/2012","Units Sold":"6878","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1059624.68","Total Cost":"625416.54","Total Profit":"434208.14"},{"Region":"Sub-Saharan Africa","Country":"Mali","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/6/2011","Order ID":"576957166","Ship Date":"10/11/2011","Units Sold":"3301","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"679015.70","Total Cost":"386580.11","Total Profit":"292435.59"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"6/18/2017","Order ID":"311067855","Ship Date":"6/23/2017","Units Sold":"746","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"498529.42","Total Cost":"374894.84","Total Profit":"123634.58"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/10/2012","Order ID":"985127580","Ship Date":"6/13/2012","Units Sold":"9997","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1540137.82","Total Cost":"909027.21","Total Profit":"631110.61"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/10/2014","Order ID":"177310168","Ship Date":"10/19/2014","Units Sold":"8874","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1367128.44","Total Cost":"806912.82","Total Profit":"560215.62"},{"Region":"Europe","Country":"Netherlands","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/19/2013","Order ID":"486101949","Ship Date":"6/2/2013","Units Sold":"7224","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4827582.48","Total Cost":"3630348.96","Total Profit":"1197233.52"},{"Region":"Asia","Country":"Laos","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"3/9/2017","Order ID":"980301749","Ship Date":"4/27/2017","Units Sold":"1927","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1254881.67","Total Cost":"1011597.92","Total Profit":"243283.75"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"6/18/2013","Order ID":"349020898","Ship Date":"6/23/2013","Units Sold":"1895","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1234042.95","Total Cost":"994799.20","Total Profit":"239243.75"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"1/16/2017","Order ID":"951683223","Ship Date":"2/1/2017","Units Sold":"3069","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2050920.63","Total Cost":"1542295.26","Total Profit":"508625.37"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/18/2013","Order ID":"268025052","Ship Date":"8/15/2013","Units Sold":"3424","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"522433.92","Total Cost":"333634.56","Total Profit":"188799.36"},{"Region":"Asia","Country":"Bhutan","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"2/23/2016","Order ID":"348095214","Ship Date":"3/15/2016","Units Sold":"7964","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5322102.28","Total Cost":"4002228.56","Total Profit":"1319873.72"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/17/2016","Order ID":"162255036","Ship Date":"7/1/2016","Units Sold":"3726","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2489974.02","Total Cost":"1872464.04","Total Profit":"617509.98"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/14/2010","Order ID":"551178348","Ship Date":"9/15/2010","Units Sold":"4776","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"390342.48","Total Cost":"270655.92","Total Profit":"119686.56"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/18/2011","Order ID":"175851476","Ship Date":"7/20/2011","Units Sold":"7214","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4820899.78","Total Cost":"3625323.56","Total Profit":"1195576.22"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"8/17/2013","Order ID":"467573249","Ship Date":"9/17/2013","Units Sold":"4170","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1759281.30","Total Cost":"1520757.30","Total Profit":"238524.00"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/26/2012","Order ID":"677954995","Ship Date":"12/25/2012","Units Sold":"804","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"7501.32","Total Cost":"5563.68","Total Profit":"1937.64"},{"Region":"Europe","Country":"Estonia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/4/2017","Order ID":"128920543","Ship Date":"7/17/2017","Units Sold":"9308","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"86843.64","Total Cost":"64411.36","Total Profit":"22432.28"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"12/29/2013","Order ID":"462706220","Ship Date":"2/3/2014","Units Sold":"3908","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1648746.12","Total Cost":"1425208.52","Total Profit":"223537.60"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"6/29/2016","Order ID":"691860854","Ship Date":"8/4/2016","Units Sold":"5856","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"902175.36","Total Cost":"532486.08","Total Profit":"369689.28"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/24/2017","Order ID":"349245774","Ship Date":"7/10/2017","Units Sold":"8440","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5496212.40","Total Cost":"4430662.40","Total Profit":"1065550.00"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"4/13/2014","Order ID":"838034808","Ship Date":"5/2/2014","Units Sold":"1978","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"93856.10","Total Cost":"62880.62","Total Profit":"30975.48"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/10/2012","Order ID":"481714284","Ship Date":"12/27/2012","Units Sold":"8816","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"720531.68","Total Cost":"499602.72","Total Profit":"220928.96"},{"Region":"Europe","Country":"Austria","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/17/2016","Order ID":"374083030","Ship Date":"7/31/2016","Units Sold":"8336","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3644499.20","Total Cost":"2195118.88","Total Profit":"1449380.32"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"3/31/2014","Order ID":"329252374","Ship Date":"4/15/2014","Units Sold":"1949","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"300262.94","Total Cost":"177222.57","Total Profit":"123040.37"},{"Region":"Asia","Country":"Myanmar","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"5/17/2015","Order ID":"231646144","Ship Date":"5/22/2015","Units Sold":"8097","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1235440.26","Total Cost":"788971.68","Total Profit":"446468.58"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"12/4/2014","Order ID":"486000669","Ship Date":"12/27/2014","Units Sold":"7253","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1851545.84","Total Cost":"1156273.26","Total Profit":"695272.58"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/28/2012","Order ID":"667364776","Ship Date":"11/9/2012","Units Sold":"6922","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1066403.32","Total Cost":"629417.46","Total Profit":"436985.86"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"1/26/2010","Order ID":"871099793","Ship Date":"2/28/2010","Units Sold":"6641","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1023112.46","Total Cost":"603866.13","Total Profit":"419246.33"},{"Region":"Asia","Country":"Singapore","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"7/4/2012","Order ID":"362879550","Ship Date":"8/6/2012","Units Sold":"2978","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1301981.60","Total Cost":"784196.74","Total Profit":"517784.86"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/26/2011","Order ID":"728690373","Ship Date":"12/17/2011","Units Sold":"4529","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1156163.12","Total Cost":"722013.18","Total Profit":"434149.94"},{"Region":"Europe","Country":"Macedonia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"6/10/2012","Order ID":"924831092","Ship Date":"7/29/2012","Units Sold":"6927","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1424883.90","Total Cost":"811220.97","Total Profit":"613662.93"},{"Region":"North America","Country":"Canada","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/24/2011","Order ID":"427913033","Ship Date":"11/20/2011","Units Sold":"7831","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5099625.51","Total Cost":"4110961.76","Total Profit":"988663.75"},{"Region":"Europe","Country":"Malta","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"7/16/2012","Order ID":"584860026","Ship Date":"7/22/2012","Units Sold":"1934","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"397823.80","Total Cost":"226490.74","Total Profit":"171333.06"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"8/28/2010","Order ID":"562908399","Ship Date":"8/28/2010","Units Sold":"5959","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"909224.22","Total Cost":"580644.96","Total Profit":"328579.26"},{"Region":"Europe","Country":"Austria","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/10/2014","Order ID":"499606978","Ship Date":"8/22/2014","Units Sold":"3662","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"299295.26","Total Cost":"207525.54","Total Profit":"91769.72"},{"Region":"Asia","Country":"Thailand","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"3/10/2011","Order ID":"152817094","Ship Date":"3/16/2011","Units Sold":"829","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"170525.30","Total Cost":"97084.19","Total Profit":"73441.11"},{"Region":"Europe","Country":"Netherlands","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"10/6/2014","Order ID":"250712573","Ship Date":"11/11/2014","Units Sold":"277","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"13143.65","Total Cost":"8805.83","Total Profit":"4337.82"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"6/23/2010","Order ID":"241779744","Ship Date":"7/11/2010","Units Sold":"6854","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"749005.12","Total Cost":"245647.36","Total Profit":"503357.76"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/13/2011","Order ID":"544817435","Ship Date":"1/22/2011","Units Sold":"2441","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"502113.70","Total Cost":"285865.51","Total Profit":"216248.19"},{"Region":"Europe","Country":"Georgia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/23/2015","Order ID":"298936975","Ship Date":"2/19/2015","Units Sold":"949","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"146202.94","Total Cost":"86292.57","Total Profit":"59910.37"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"11/24/2010","Order ID":"513562190","Ship Date":"12/22/2010","Units Sold":"3319","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"157486.55","Total Cost":"105511.01","Total Profit":"51975.54"},{"Region":"Europe","Country":"Slovakia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"8/27/2010","Order ID":"918429410","Ship Date":"9/28/2010","Units Sold":"2527","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"119906.15","Total Cost":"80333.33","Total Profit":"39572.82"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"2/28/2016","Order ID":"413587462","Ship Date":"4/17/2016","Units Sold":"8576","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1308526.08","Total Cost":"835645.44","Total Profit":"472880.64"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"2/25/2015","Order ID":"219397675","Ship Date":"4/15/2015","Units Sold":"3503","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1477880.67","Total Cost":"1277509.07","Total Profit":"200371.60"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/17/2015","Order ID":"726533877","Ship Date":"6/27/2015","Units Sold":"6374","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2786712.80","Total Cost":"1678465.42","Total Profit":"1108247.38"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/24/2010","Order ID":"145982396","Ship Date":"6/24/2010","Units Sold":"8290","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"677541.70","Total Cost":"469794.30","Total Profit":"207747.40"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/16/2014","Order ID":"359042060","Ship Date":"3/26/2014","Units Sold":"7379","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"350133.55","Total Cost":"234578.41","Total Profit":"115555.14"},{"Region":"Europe","Country":"Finland","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"9/30/2010","Order ID":"167324197","Ship Date":"10/27/2010","Units Sold":"3803","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"415591.84","Total Cost":"136299.52","Total Profit":"279292.32"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"5/3/2012","Order ID":"242752635","Ship Date":"6/5/2012","Units Sold":"4754","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"225577.30","Total Cost":"151129.66","Total Profit":"74447.64"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/24/2016","Order ID":"877563703","Ship Date":"11/23/2016","Units Sold":"9456","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2413927.68","Total Cost":"1507475.52","Total Profit":"906452.16"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/21/2011","Order ID":"634306228","Ship Date":"11/24/2011","Units Sold":"4163","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2782008.01","Total Cost":"2092074.02","Total Profit":"689933.99"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"4/13/2016","Order ID":"395841538","Ship Date":"5/5/2016","Units Sold":"7163","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"66830.79","Total Cost":"49567.96","Total Profit":"17262.83"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"3/23/2016","Order ID":"215343463","Ship Date":"4/2/2016","Units Sold":"3771","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2455712.91","Total Cost":"1979624.16","Total Profit":"476088.75"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/20/2013","Order ID":"666298329","Ship Date":"11/18/2013","Units Sold":"1337","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"12474.21","Total Cost":"9252.04","Total Profit":"3222.17"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/18/2016","Order ID":"592504966","Ship Date":"3/4/2016","Units Sold":"4241","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"39568.53","Total Cost":"29347.72","Total Profit":"10220.81"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"11/27/2015","Order ID":"258074700","Ship Date":"1/7/2016","Units Sold":"8894","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5791861.74","Total Cost":"4668994.24","Total Profit":"1122867.50"},{"Region":"Europe","Country":"Latvia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"3/7/2011","Order ID":"897431361","Ship Date":"4/9/2011","Units Sold":"8738","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"414618.10","Total Cost":"277781.02","Total Profit":"136837.08"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"11/18/2015","Order ID":"665311276","Ship Date":"11/24/2015","Units Sold":"9246","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1010402.88","Total Cost":"331376.64","Total Profit":"679026.24"},{"Region":"Europe","Country":"France","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/2/2011","Order ID":"486763274","Ship Date":"2/2/2011","Units Sold":"2925","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"138791.25","Total Cost":"92985.75","Total Profit":"45805.50"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/23/2016","Order ID":"907148683","Ship Date":"8/2/2016","Units Sold":"4309","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"40202.97","Total Cost":"29818.28","Total Profit":"10384.69"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"8/23/2011","Order ID":"742141330","Ship Date":"8/30/2011","Units Sold":"4966","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"405871.18","Total Cost":"281423.22","Total Profit":"124447.96"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/7/2014","Order ID":"227727544","Ship Date":"10/25/2014","Units Sold":"8496","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"694378.08","Total Cost":"481468.32","Total Profit":"212909.76"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"2/10/2011","Order ID":"570206153","Ship Date":"3/29/2011","Units Sold":"5527","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"262256.15","Total Cost":"175703.33","Total Profit":"86552.82"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/14/2017","Order ID":"796188485","Ship Date":"5/13/2017","Units Sold":"8721","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1793909.70","Total Cost":"1021316.31","Total Profit":"772593.39"},{"Region":"North America","Country":"United States of America","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"11/23/2016","Order ID":"902598369","Ship Date":"1/4/2017","Units Sold":"7770","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5192457.90","Total Cost":"3904735.80","Total Profit":"1287722.10"},{"Region":"Europe","Country":"Cyprus","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/27/2017","Order ID":"506672132","Ship Date":"5/20/2017","Units Sold":"4398","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"208685.10","Total Cost":"139812.42","Total Profit":"68872.68"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"8/28/2015","Order ID":"195958602","Ship Date":"8/29/2015","Units Sold":"7360","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1133881.60","Total Cost":"669244.80","Total Profit":"464636.80"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"1/19/2010","Order ID":"178319108","Ship Date":"2/3/2010","Units Sold":"7442","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1530819.40","Total Cost":"871532.62","Total Profit":"659286.78"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/2/2011","Order ID":"731927478","Ship Date":"3/18/2011","Units Sold":"2461","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"379141.66","Total Cost":"223778.73","Total Profit":"155362.93"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"4/7/2015","Order ID":"855270040","Ship Date":"5/7/2015","Units Sold":"2266","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"990695.20","Total Cost":"596705.78","Total Profit":"393989.42"},{"Region":"Europe","Country":"Estonia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/10/2016","Order ID":"517145621","Ship Date":"5/12/2016","Units Sold":"3736","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"305343.28","Total Cost":"211719.12","Total Profit":"93624.16"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"10/12/2016","Order ID":"206665551","Ship Date":"10/17/2016","Units Sold":"5784","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2440211.76","Total Cost":"2109366.96","Total Profit":"330844.80"},{"Region":"Europe","Country":"Vatican City","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/24/2016","Order ID":"483253657","Ship Date":"4/14/2016","Units Sold":"4351","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"206454.95","Total Cost":"138318.29","Total Profit":"68136.66"},{"Region":"Asia","Country":"Laos","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"6/16/2015","Order ID":"626646268","Ship Date":"7/31/2015","Units Sold":"7411","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1141738.66","Total Cost":"673882.23","Total Profit":"467856.43"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/3/2012","Order ID":"886892211","Ship Date":"7/11/2012","Units Sold":"9969","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1089412.32","Total Cost":"357288.96","Total Profit":"732123.36"},{"Region":"Asia","Country":"Nepal","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"1/17/2014","Order ID":"234352815","Ship Date":"1/26/2014","Units Sold":"9061","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"740555.53","Total Cost":"513486.87","Total Profit":"227068.66"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/16/2016","Order ID":"409701907","Ship Date":"7/18/2016","Units Sold":"8754","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3693225.06","Total Cost":"3192496.26","Total Profit":"500728.80"},{"Region":"Europe","Country":"Serbia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"3/10/2017","Order ID":"973925817","Ship Date":"4/5/2017","Units Sold":"5147","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"785329.26","Total Cost":"501523.68","Total Profit":"283805.58"},{"Region":"Europe","Country":"Cyprus","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/17/2010","Order ID":"658323371","Ship Date":"1/12/2011","Units Sold":"1370","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"281809.00","Total Cost":"160440.70","Total Profit":"121368.30"},{"Region":"Asia","Country":"Indonesia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"4/13/2016","Order ID":"514505898","Ship Date":"5/16/2016","Units Sold":"2584","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1090163.76","Total Cost":"942358.96","Total Profit":"147804.80"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"1/26/2011","Order ID":"764397227","Ship Date":"3/1/2011","Units Sold":"981","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"151132.86","Total Cost":"89202.33","Total Profit":"61930.53"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/6/2012","Order ID":"350233685","Ship Date":"4/6/2012","Units Sold":"785","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"85784.80","Total Cost":"28134.40","Total Profit":"57650.40"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/7/2011","Order ID":"984564101","Ship Date":"1/20/2011","Units Sold":"3252","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"496190.16","Total Cost":"316874.88","Total Profit":"179315.28"},{"Region":"Asia","Country":"Mongolia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/17/2015","Order ID":"400249803","Ship Date":"4/21/2015","Units Sold":"1666","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1084915.86","Total Cost":"874583.36","Total Profit":"210332.50"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/2/2014","Order ID":"900464618","Ship Date":"8/6/2014","Units Sold":"6346","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"693490.88","Total Cost":"227440.64","Total Profit":"466050.24"},{"Region":"Europe","Country":"Moldova ","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/11/2014","Order ID":"808694875","Ship Date":"11/30/2014","Units Sold":"9639","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1484984.34","Total Cost":"876474.27","Total Profit":"608510.07"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/18/2011","Order ID":"318739402","Ship Date":"1/17/2012","Units Sold":"927","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"190683.90","Total Cost":"108560.97","Total Profit":"82122.93"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"2/10/2010","Order ID":"144709527","Ship Date":"3/5/2010","Units Sold":"1620","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1082597.40","Total Cost":"814114.80","Total Profit":"268482.60"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"11/22/2010","Order ID":"171029078","Ship Date":"1/4/2011","Units Sold":"160","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"24412.80","Total Cost":"15590.40","Total Profit":"8822.40"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/15/2016","Order ID":"802434384","Ship Date":"1/31/2017","Units Sold":"7021","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1071264.18","Total Cost":"684126.24","Total Profit":"387137.94"},{"Region":"Europe","Country":"Lithuania","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"2/1/2013","Order ID":"713974273","Ship Date":"3/4/2013","Units Sold":"9708","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"90575.64","Total Cost":"67179.36","Total Profit":"23396.28"},{"Region":"Asia","Country":"Tajikistan","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/6/2015","Order ID":"901010072","Ship Date":"6/10/2015","Units Sold":"7758","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3273022.62","Total Cost":"2829265.02","Total Profit":"443757.60"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"9/5/2014","Order ID":"629215610","Ship Date":"9/19/2014","Units Sold":"7736","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1180358.88","Total Cost":"753795.84","Total Profit":"426563.04"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"3/5/2010","Order ID":"584577214","Ship Date":"3/27/2010","Units Sold":"8243","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5367924.03","Total Cost":"4327245.28","Total Profit":"1040678.75"},{"Region":"Asia","Country":"Myanmar","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"9/6/2013","Order ID":"623393714","Ship Date":"10/2/2013","Units Sold":"4908","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2070636.12","Total Cost":"1789898.52","Total Profit":"280737.60"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"4/22/2015","Order ID":"222276437","Ship Date":"5/30/2015","Units Sold":"5392","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1376469.76","Total Cost":"859592.64","Total Profit":"516877.12"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/3/2010","Order ID":"728149211","Ship Date":"1/12/2010","Units Sold":"4387","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1119913.36","Total Cost":"699375.54","Total Profit":"420537.82"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/13/2016","Order ID":"408248364","Ship Date":"7/16/2016","Units Sold":"8618","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1327689.08","Total Cost":"783634.74","Total Profit":"544054.34"},{"Region":"Europe","Country":"Albania","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"1/13/2013","Order ID":"300122725","Ship Date":"2/4/2013","Units Sold":"1839","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"87260.55","Total Cost":"58461.81","Total Profit":"28798.74"},{"Region":"Europe","Country":"Norway","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"8/9/2016","Order ID":"161633622","Ship Date":"9/9/2016","Units Sold":"9836","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6405301.56","Total Cost":"5163506.56","Total Profit":"1241795.00"},{"Region":"Europe","Country":"Vatican City","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/26/2011","Order ID":"720954883","Ship Date":"5/30/2011","Units Sold":"5426","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2289175.14","Total Cost":"1978807.94","Total Profit":"310367.20"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"8/6/2012","Order ID":"526572835","Ship Date":"9/23/2012","Units Sold":"3458","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"527621.64","Total Cost":"336947.52","Total Profit":"190674.12"},{"Region":"Europe","Country":"Hungary","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"6/10/2010","Order ID":"897286307","Ship Date":"7/7/2010","Units Sold":"5813","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"886947.54","Total Cost":"566418.72","Total Profit":"320528.82"},{"Region":"Asia","Country":"Tajikistan","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/16/2011","Order ID":"972206628","Ship Date":"2/27/2011","Units Sold":"6401","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1634047.28","Total Cost":"1020447.42","Total Profit":"613599.86"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/26/2010","Order ID":"860757625","Ship Date":"6/12/2010","Units Sold":"6164","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4119216.28","Total Cost":"3097656.56","Total Profit":"1021559.72"},{"Region":"Europe","Country":"Macedonia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/20/2012","Order ID":"292675626","Ship Date":"11/2/2012","Units Sold":"8076","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1661233.20","Total Cost":"945780.36","Total Profit":"715452.84"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"10/2/2012","Order ID":"868009459","Ship Date":"11/21/2012","Units Sold":"2143","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"904110.27","Total Cost":"781530.67","Total Profit":"122579.60"},{"Region":"Europe","Country":"Denmark","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/21/2013","Order ID":"207120454","Ship Date":"2/17/2013","Units Sold":"400","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"18980.00","Total Cost":"12716.00","Total Profit":"6264.00"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"11/16/2013","Order ID":"500682437","Ship Date":"11/21/2013","Units Sold":"1914","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"156431.22","Total Cost":"108466.38","Total Profit":"47964.84"},{"Region":"Europe","Country":"Moldova ","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/11/2016","Order ID":"859681737","Ship Date":"6/19/2016","Units Sold":"7785","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1199357.10","Total Cost":"707890.05","Total Profit":"491467.05"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"9/13/2011","Order ID":"465417182","Ship Date":"10/30/2011","Units Sold":"6142","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1263409.40","Total Cost":"719289.62","Total Profit":"544119.78"},{"Region":"Europe","Country":"Slovenia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/12/2014","Order ID":"819500100","Ship Date":"6/26/2014","Units Sold":"7146","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3014825.94","Total Cost":"2606074.74","Total Profit":"408751.20"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"9/16/2013","Order ID":"793854320","Ship Date":"10/3/2013","Units Sold":"7989","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"652940.97","Total Cost":"452736.63","Total Profit":"200204.34"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"3/28/2015","Order ID":"680716168","Ship Date":"5/7/2015","Units Sold":"7896","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"862874.88","Total Cost":"282992.64","Total Profit":"579882.24"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"2/19/2014","Order ID":"842634475","Ship Date":"3/17/2014","Units Sold":"3121","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"341062.88","Total Cost":"111856.64","Total Profit":"229206.24"},{"Region":"Asia","Country":"Brunei","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"4/1/2014","Order ID":"362470567","Ship Date":"4/5/2014","Units Sold":"1950","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"92527.50","Total Cost":"61990.50","Total Profit":"30537.00"},{"Region":"Asia","Country":"Myanmar","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"9/5/2016","Order ID":"193398272","Ship Date":"10/16/2016","Units Sold":"9701","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1480178.58","Total Cost":"945265.44","Total Profit":"534913.14"},{"Region":"Europe","Country":"Croatia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/16/2016","Order ID":"908903920","Ship Date":"1/31/2016","Units Sold":"3723","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2487969.21","Total Cost":"1870956.42","Total Profit":"617012.79"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"10/14/2011","Order ID":"452786338","Ship Date":"11/29/2011","Units Sold":"8394","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"917296.32","Total Cost":"300840.96","Total Profit":"616455.36"},{"Region":"Europe","Country":"Belarus","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"1/3/2012","Order ID":"889156854","Ship Date":"1/15/2012","Units Sold":"127","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"19565.62","Total Cost":"11548.11","Total Profit":"8017.51"},{"Region":"Sub-Saharan Africa","Country":"Mali","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"7/4/2014","Order ID":"752439296","Ship Date":"8/7/2014","Units Sold":"2363","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"996926.07","Total Cost":"861762.47","Total Profit":"135163.60"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/29/2010","Order ID":"897369992","Ship Date":"9/11/2010","Units Sold":"577","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"252264.40","Total Cost":"151941.41","Total Profit":"100322.99"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"7/4/2011","Order ID":"448997771","Ship Date":"7/17/2011","Units Sold":"7273","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4736250.33","Total Cost":"3818034.08","Total Profit":"918216.25"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"7/2/2014","Order ID":"852683961","Ship Date":"7/28/2014","Units Sold":"6987","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1783641.36","Total Cost":"1113867.54","Total Profit":"669773.82"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/18/2014","Order ID":"924102389","Ship Date":"1/21/2014","Units Sold":"1287","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"196370.46","Total Cost":"125405.28","Total Profit":"70965.18"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/11/2013","Order ID":"899239385","Ship Date":"5/14/2013","Units Sold":"3772","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1591369.08","Total Cost":"1375610.68","Total Profit":"215758.40"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/2/2012","Order ID":"184393775","Ship Date":"9/8/2012","Units Sold":"5071","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"773733.18","Total Cost":"494118.24","Total Profit":"279614.94"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/12/2013","Order ID":"506176888","Ship Date":"6/16/2013","Units Sold":"7845","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3429834.00","Total Cost":"2065823.85","Total Profit":"1364010.15"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/7/2014","Order ID":"961512553","Ship Date":"8/15/2014","Units Sold":"1786","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"780839.20","Total Cost":"470307.38","Total Profit":"310531.82"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/11/2015","Order ID":"267637097","Ship Date":"12/21/2015","Units Sold":"8619","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2200258.32","Total Cost":"1374040.98","Total Profit":"826217.34"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/28/2014","Order ID":"812099349","Ship Date":"5/23/2014","Units Sold":"7099","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"66233.67","Total Cost":"49125.08","Total Profit":"17108.59"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/15/2015","Order ID":"102760636","Ship Date":"9/19/2015","Units Sold":"8011","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2045048.08","Total Cost":"1277113.62","Total Profit":"767934.46"},{"Region":"Europe","Country":"Romania","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"6/13/2015","Order ID":"217794787","Ship Date":"6/19/2015","Units Sold":"9172","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3869575.08","Total Cost":"3344936.68","Total Profit":"524638.40"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"1/18/2010","Order ID":"155688130","Ship Date":"2/10/2010","Units Sold":"432","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"47208.96","Total Cost":"15482.88","Total Profit":"31726.08"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/31/2015","Order ID":"785239493","Ship Date":"2/3/2016","Units Sold":"8671","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"411438.95","Total Cost":"275651.09","Total Profit":"135787.86"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/30/2012","Order ID":"795560204","Ship Date":"2/2/2013","Units Sold":"2798","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"305765.44","Total Cost":"100280.32","Total Profit":"205485.12"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"11/20/2015","Order ID":"746074092","Ship Date":"11/24/2015","Units Sold":"8758","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"81712.14","Total Cost":"60605.36","Total Profit":"21106.78"},{"Region":"Europe","Country":"Vatican City","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/9/2010","Order ID":"816517484","Ship Date":"5/18/2010","Units Sold":"4523","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"930381.10","Total Cost":"529688.53","Total Profit":"400692.57"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"11/28/2016","Order ID":"356939208","Ship Date":"12/21/2016","Units Sold":"5098","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1301417.44","Total Cost":"812723.16","Total Profit":"488694.28"},{"Region":"Europe","Country":"Estonia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/9/2012","Order ID":"137700593","Ship Date":"3/10/2012","Units Sold":"7520","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5025390.40","Total Cost":"3779100.80","Total Profit":"1246289.60"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/14/2015","Order ID":"999475467","Ship Date":"3/24/2015","Units Sold":"5856","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"478610.88","Total Cost":"331859.52","Total Profit":"146751.36"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"10/26/2015","Order ID":"703250157","Ship Date":"12/13/2015","Units Sold":"6204","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1276162.80","Total Cost":"726550.44","Total Profit":"549612.36"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"5/5/2016","Order ID":"680323493","Ship Date":"6/23/2016","Units Sold":"1695","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"258623.10","Total Cost":"165160.80","Total Profit":"93462.30"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/23/2012","Order ID":"182306802","Ship Date":"8/6/2012","Units Sold":"7489","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1142671.62","Total Cost":"729728.16","Total Profit":"412943.46"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"9/5/2012","Order ID":"331123912","Ship Date":"10/8/2012","Units Sold":"5779","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"472317.67","Total Cost":"327495.93","Total Profit":"144821.74"},{"Region":"Asia","Country":"Vietnam","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"11/2/2010","Order ID":"969011151","Ship Date":"11/6/2010","Units Sold":"788","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"162091.60","Total Cost":"92282.68","Total Profit":"69808.92"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/3/2013","Order ID":"208517348","Ship Date":"8/23/2013","Units Sold":"3772","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1591369.08","Total Cost":"1375610.68","Total Profit":"215758.40"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"5/29/2013","Order ID":"282503831","Ship Date":"6/29/2013","Units Sold":"8016","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5356852.32","Total Cost":"4028360.64","Total Profit":"1328491.68"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/12/2015","Order ID":"794144427","Ship Date":"4/10/2015","Units Sold":"3839","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2565488.53","Total Cost":"1929251.06","Total Profit":"636237.47"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/3/2017","Order ID":"966925466","Ship Date":"5/22/2017","Units Sold":"3587","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"33466.71","Total Cost":"24822.04","Total Profit":"8644.67"},{"Region":"Europe","Country":"Macedonia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"7/6/2015","Order ID":"994645774","Ship Date":"8/19/2015","Units Sold":"6643","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"61979.19","Total Cost":"45969.56","Total Profit":"16009.63"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/8/2014","Order ID":"691416680","Ship Date":"1/16/2014","Units Sold":"4415","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"41191.95","Total Cost":"30551.80","Total Profit":"10640.15"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/15/2014","Order ID":"841662013","Ship Date":"6/22/2014","Units Sold":"5348","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1365237.44","Total Cost":"852578.16","Total Profit":"512659.28"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/20/2011","Order ID":"950118100","Ship Date":"1/8/2012","Units Sold":"9914","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1512678.12","Total Cost":"966020.16","Total Profit":"546657.96"},{"Region":"Europe","Country":"Cyprus","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/28/2013","Order ID":"591833770","Ship Date":"11/25/2013","Units Sold":"5619","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"865663.14","Total Cost":"510935.67","Total Profit":"354727.47"},{"Region":"Asia","Country":"Thailand","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/8/2013","Order ID":"762170350","Ship Date":"9/12/2013","Units Sold":"1999","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"305007.42","Total Cost":"194782.56","Total Profit":"110224.86"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/28/2017","Order ID":"726801669","Ship Date":"5/23/2017","Units Sold":"5620","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3755677.40","Total Cost":"2824274.80","Total Profit":"931402.60"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/30/2016","Order ID":"271714055","Ship Date":"6/30/2016","Units Sold":"5082","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1297332.96","Total Cost":"810172.44","Total Profit":"487160.52"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/25/2015","Order ID":"153206336","Ship Date":"6/25/2015","Units Sold":"6014","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1535253.92","Total Cost":"958751.88","Total Profit":"576502.04"},{"Region":"Europe","Country":"Hungary","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"9/14/2011","Order ID":"747889840","Ship Date":"10/11/2011","Units Sold":"6078","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4061745.06","Total Cost":"3054438.12","Total Profit":"1007306.94"},{"Region":"Europe","Country":"Switzerland","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"7/11/2015","Order ID":"702688395","Ship Date":"8/20/2015","Units Sold":"9966","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"2050006.20","Total Cost":"1167118.26","Total Profit":"882887.94"},{"Region":"Europe","Country":"Denmark","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/24/2015","Order ID":"984838330","Ship Date":"5/28/2015","Units Sold":"4402","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1123742.56","Total Cost":"701766.84","Total Profit":"421975.72"},{"Region":"Europe","Country":"Cyprus","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/9/2011","Order ID":"831888473","Ship Date":"12/19/2011","Units Sold":"3140","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2044799.40","Total Cost":"1648374.40","Total Profit":"396425.00"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/4/2014","Order ID":"901700150","Ship Date":"1/7/2015","Units Sold":"1967","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"93334.15","Total Cost":"62530.93","Total Profit":"30803.22"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"11/30/2015","Order ID":"122447192","Ship Date":"12/10/2015","Units Sold":"3700","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"570022.00","Total Cost":"336441.00","Total Profit":"233581.00"},{"Region":"Europe","Country":"Norway","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"3/11/2015","Order ID":"642615926","Ship Date":"3/15/2015","Units Sold":"3188","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"655771.60","Total Cost":"373346.68","Total Profit":"282424.92"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/26/2010","Order ID":"181005179","Ship Date":"5/19/2010","Units Sold":"2310","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"252436.80","Total Cost":"82790.40","Total Profit":"169646.40"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"1/27/2015","Order ID":"576726281","Ship Date":"3/2/2015","Units Sold":"4978","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"759543.24","Total Cost":"485056.32","Total Profit":"274486.92"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/18/2010","Order ID":"139203059","Ship Date":"5/1/2010","Units Sold":"2133","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1425419.91","Total Cost":"1071917.82","Total Profit":"353502.09"},{"Region":"Europe","Country":"Lithuania","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"6/5/2015","Order ID":"398171842","Ship Date":"6/27/2015","Units Sold":"6751","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4396318.71","Total Cost":"3544004.96","Total Profit":"852313.75"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/25/2017","Order ID":"253681457","Ship Date":"6/22/2017","Units Sold":"8835","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1361120.10","Total Cost":"803366.55","Total Profit":"557753.55"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/8/2011","Order ID":"926093232","Ship Date":"7/12/2011","Units Sold":"422","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"34490.06","Total Cost":"23914.74","Total Profit":"10575.32"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"11/7/2012","Order ID":"106080996","Ship Date":"12/25/2012","Units Sold":"579","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"5402.07","Total Cost":"4006.68","Total Profit":"1395.39"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/24/2015","Order ID":"504631078","Ship Date":"6/7/2015","Units Sold":"405","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"177066.00","Total Cost":"106648.65","Total Profit":"70417.35"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"4/26/2017","Order ID":"403042304","Ship Date":"5/29/2017","Units Sold":"8029","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5228565.09","Total Cost":"4214903.84","Total Profit":"1013661.25"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/16/2010","Order ID":"402926003","Ship Date":"12/27/2010","Units Sold":"3613","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1524288.57","Total Cost":"1317624.97","Total Profit":"206663.60"},{"Region":"Europe","Country":"Netherlands","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"7/22/2015","Order ID":"276206004","Ship Date":"8/21/2015","Units Sold":"4349","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2832112.29","Total Cost":"2283051.04","Total Profit":"549061.25"},{"Region":"Europe","Country":"Portugal","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"2/17/2014","Order ID":"315118634","Ship Date":"3/16/2014","Units Sold":"9461","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1033898.08","Total Cost":"339082.24","Total Profit":"694815.84"},{"Region":"Europe","Country":"Spain","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"12/11/2016","Order ID":"882212722","Ship Date":"1/26/2017","Units Sold":"5204","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1328477.12","Total Cost":"829621.68","Total Profit":"498855.44"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/7/2012","Order ID":"160349595","Ship Date":"9/21/2012","Units Sold":"9863","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1077828.64","Total Cost":"353489.92","Total Profit":"724338.72"},{"Region":"Europe","Country":"Slovenia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"1/14/2010","Order ID":"902703082","Ship Date":"3/5/2010","Units Sold":"8757","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1349103.42","Total Cost":"796274.01","Total Profit":"552829.41"},{"Region":"Europe","Country":"Ireland","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"3/7/2011","Order ID":"982759511","Ship Date":"4/6/2011","Units Sold":"9233","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4036667.60","Total Cost":"2431325.89","Total Profit":"1605341.71"},{"Region":"Asia","Country":"Taiwan","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"7/27/2015","Order ID":"144317710","Ship Date":"8/19/2015","Units Sold":"5672","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2392960.08","Total Cost":"2068521.68","Total Profit":"324438.40"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/25/2016","Order ID":"451489007","Ship Date":"3/7/2016","Units Sold":"4485","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1892176.65","Total Cost":"1635634.65","Total Profit":"256542.00"},{"Region":"Europe","Country":"Armenia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"9/25/2010","Order ID":"438697230","Ship Date":"10/7/2010","Units Sold":"9114","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"85033.62","Total Cost":"63068.88","Total Profit":"21964.74"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/26/2013","Order ID":"960678708","Ship Date":"5/6/2013","Units Sold":"5033","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"550006.24","Total Cost":"180382.72","Total Profit":"369623.52"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"6/23/2012","Order ID":"242482268","Ship Date":"7/17/2012","Units Sold":"4747","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"976457.90","Total Cost":"555921.17","Total Profit":"420536.73"},{"Region":"Europe","Country":"Andorra","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"12/29/2012","Order ID":"629469239","Ship Date":"2/7/2013","Units Sold":"2791","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"712486.48","Total Cost":"444941.22","Total Profit":"267545.26"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"12/6/2016","Order ID":"937313449","Ship Date":"1/3/2017","Units Sold":"734","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"113080.04","Total Cost":"66742.62","Total Profit":"46337.42"},{"Region":"Asia","Country":"Bhutan","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"4/5/2012","Order ID":"502001225","Ship Date":"5/1/2012","Units Sold":"2173","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"237465.44","Total Cost":"77880.32","Total Profit":"159585.12"},{"Region":"Asia","Country":"Mongolia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"7/15/2014","Order ID":"529831397","Ship Date":"7/21/2014","Units Sold":"7739","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"367215.55","Total Cost":"246022.81","Total Profit":"121192.74"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/29/2010","Order ID":"947415292","Ship Date":"2/5/2010","Units Sold":"93","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"60562.53","Total Cost":"48821.28","Total Profit":"11741.25"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/11/2012","Order ID":"851676738","Ship Date":"10/14/2012","Units Sold":"8928","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"975651.84","Total Cost":"319979.52","Total Profit":"655672.32"},{"Region":"North America","Country":"Greenland","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/16/2014","Order ID":"759852063","Ship Date":"12/21/2014","Units Sold":"5966","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"55662.78","Total Cost":"41284.72","Total Profit":"14378.06"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"6/17/2013","Order ID":"359490096","Ship Date":"7/14/2013","Units Sold":"9963","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1534899.78","Total Cost":"905935.59","Total Profit":"628964.19"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"4/6/2014","Order ID":"758452165","Ship Date":"4/27/2014","Units Sold":"1705","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"350718.50","Total Cost":"199672.55","Total Profit":"151045.95"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"9/16/2012","Order ID":"434912097","Ship Date":"11/2/2012","Units Sold":"9009","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"427477.05","Total Cost":"286396.11","Total Profit":"141080.94"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/16/2012","Order ID":"187356221","Ship Date":"12/30/2012","Units Sold":"1724","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"140902.52","Total Cost":"97699.08","Total Profit":"43203.44"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"2/12/2016","Order ID":"884583365","Ship Date":"3/28/2016","Units Sold":"6730","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4382643.30","Total Cost":"3532980.80","Total Profit":"849662.50"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"4/6/2017","Order ID":"315704858","Ship Date":"5/17/2017","Units Sold":"2938","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1284493.60","Total Cost":"773663.54","Total Profit":"510830.06"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/6/2016","Order ID":"840144526","Ship Date":"1/21/2016","Units Sold":"6290","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"959728.20","Total Cost":"612897.60","Total Profit":"346830.60"},{"Region":"Asia","Country":"North Korea","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"2/16/2013","Order ID":"837638700","Ship Date":"2/28/2013","Units Sold":"4760","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1215132.80","Total Cost":"758839.20","Total Profit":"456293.60"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/20/2014","Order ID":"558236205","Ship Date":"4/5/2014","Units Sold":"3353","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1414597.17","Total Cost":"1222805.57","Total Profit":"191791.60"},{"Region":"Central America and the Caribbean","Country":"Saint Lucia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"10/20/2010","Order ID":"772298371","Ship Date":"11/11/2010","Units Sold":"9105","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"432032.25","Total Cost":"289447.95","Total Profit":"142584.30"},{"Region":"Europe","Country":"Ukraine","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/31/2014","Order ID":"520499026","Ship Date":"6/17/2014","Units Sold":"6083","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"928144.14","Total Cost":"592727.52","Total Profit":"335416.62"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/3/2014","Order ID":"263824498","Ship Date":"1/19/2015","Units Sold":"387","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"31629.51","Total Cost":"21931.29","Total Profit":"9698.22"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/16/2014","Order ID":"533573615","Ship Date":"10/5/2014","Units Sold":"5145","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"562245.60","Total Cost":"184396.80","Total Profit":"377848.80"},{"Region":"Europe","Country":"Romania","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"11/18/2016","Order ID":"581357705","Ship Date":"12/13/2016","Units Sold":"5519","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3594027.99","Total Cost":"2897254.24","Total Profit":"696773.75"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"10/6/2014","Order ID":"629100596","Ship Date":"10/15/2014","Units Sold":"3701","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"761295.70","Total Cost":"433424.11","Total Profit":"327871.59"},{"Region":"North America","Country":"United States of America","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/17/2017","Order ID":"519038617","Ship Date":"7/23/2017","Units Sold":"3916","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2616945.32","Total Cost":"1967946.64","Total Profit":"648998.68"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/19/2016","Order ID":"163720595","Ship Date":"8/22/2016","Units Sold":"7417","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1142663.02","Total Cost":"674427.81","Total Profit":"468235.21"},{"Region":"Europe","Country":"Latvia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/30/2012","Order ID":"896007859","Ship Date":"2/4/2012","Units Sold":"7492","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1541104.40","Total Cost":"877388.12","Total Profit":"663716.28"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"5/11/2016","Order ID":"519074237","Ship Date":"5/12/2016","Units Sold":"4457","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"680049.06","Total Cost":"434290.08","Total Profit":"245758.98"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"9/17/2012","Order ID":"956406056","Ship Date":"11/4/2012","Units Sold":"660","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"429798.60","Total Cost":"346473.60","Total Profit":"83325.00"},{"Region":"Asia","Country":"Maldives","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"12/16/2011","Order ID":"601802146","Ship Date":"1/21/2012","Units Sold":"5483","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"448125.59","Total Cost":"310721.61","Total Profit":"137403.98"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"10/30/2010","Order ID":"169373834","Ship Date":"11/21/2010","Units Sold":"336","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"85774.08","Total Cost":"53565.12","Total Profit":"32208.96"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"12/1/2010","Order ID":"443544948","Ship Date":"12/1/2010","Units Sold":"3661","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"564013.66","Total Cost":"332894.73","Total Profit":"231118.93"},{"Region":"Europe","Country":"Armenia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"11/12/2014","Order ID":"929051816","Ship Date":"12/11/2014","Units Sold":"5933","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1514576.24","Total Cost":"945838.86","Total Profit":"568737.38"},{"Region":"Europe","Country":"Belarus","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"1/13/2015","Order ID":"300943267","Ship Date":"1/15/2015","Units Sold":"4655","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"380453.15","Total Cost":"263798.85","Total Profit":"116654.30"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"6/3/2012","Order ID":"454580628","Ship Date":"7/5/2012","Units Sold":"9365","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6098581.65","Total Cost":"4916250.40","Total Profit":"1182331.25"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"11/13/2012","Order ID":"655637729","Ship Date":"11/26/2012","Units Sold":"6628","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"724307.84","Total Cost":"237547.52","Total Profit":"486760.32"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"9/20/2015","Order ID":"690100896","Ship Date":"9/27/2015","Units Sold":"5046","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"551426.88","Total Cost":"180848.64","Total Profit":"370578.24"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"1/4/2010","Order ID":"414268958","Ship Date":"1/18/2010","Units Sold":"246","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"26882.88","Total Cost":"8816.64","Total Profit":"18066.24"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"2/22/2016","Order ID":"204753243","Ship Date":"4/6/2016","Units Sold":"9890","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4172492.10","Total Cost":"3606784.10","Total Profit":"565708.00"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/9/2013","Order ID":"508477580","Ship Date":"1/27/2014","Units Sold":"8670","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1335700.20","Total Cost":"788363.10","Total Profit":"547337.10"},{"Region":"Europe","Country":"Sweden","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"7/24/2014","Order ID":"492678296","Ship Date":"9/5/2014","Units Sold":"3311","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"505192.38","Total Cost":"322623.84","Total Profit":"182568.54"},{"Region":"Europe","Country":"Moldova ","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/26/2011","Order ID":"294904220","Ship Date":"5/22/2011","Units Sold":"7567","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1556531.90","Total Cost":"886171.37","Total Profit":"670360.53"},{"Region":"Europe","Country":"Belgium","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/19/2013","Order ID":"573016679","Ship Date":"10/4/2013","Units Sold":"7224","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"590417.52","Total Cost":"409384.08","Total Profit":"181033.44"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"5/30/2013","Order ID":"255189502","Ship Date":"6/13/2013","Units Sold":"5099","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"47573.67","Total Cost":"35285.08","Total Profit":"12288.59"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"9/7/2010","Order ID":"589909017","Ship Date":"10/17/2010","Units Sold":"6042","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2549059.38","Total Cost":"2203456.98","Total Profit":"345602.40"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"9/2/2010","Order ID":"195974051","Ship Date":"10/20/2010","Units Sold":"1932","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"91673.40","Total Cost":"61418.28","Total Profit":"30255.12"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"1/1/2012","Order ID":"912495934","Ship Date":"1/5/2012","Units Sold":"6680","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1019234.40","Total Cost":"650899.20","Total Profit":"368335.20"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"7/30/2010","Order ID":"148898494","Ship Date":"8/17/2010","Units Sold":"1228","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"134195.84","Total Cost":"44011.52","Total Profit":"90184.32"},{"Region":"Europe","Country":"Portugal","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"12/13/2010","Order ID":"334918057","Ship Date":"12/22/2010","Units Sold":"8551","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"405744.95","Total Cost":"271836.29","Total Profit":"133908.66"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"12/9/2014","Order ID":"370603454","Ship Date":"1/14/2015","Units Sold":"8652","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5634268.92","Total Cost":"4541953.92","Total Profit":"1092315.00"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"4/14/2010","Order ID":"576316010","Ship Date":"5/2/2010","Units Sold":"3569","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1505725.41","Total Cost":"1301578.61","Total Profit":"204146.80"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"4/20/2012","Order ID":"442729556","Ship Date":"5/8/2012","Units Sold":"2369","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1035726.80","Total Cost":"623828.77","Total Profit":"411898.03"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/26/2014","Order ID":"880830419","Ship Date":"9/2/2014","Units Sold":"6150","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"57379.50","Total Cost":"42558.00","Total Profit":"14821.50"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/2/2015","Order ID":"171917426","Ship Date":"12/21/2015","Units Sold":"3042","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"144342.90","Total Cost":"96705.18","Total Profit":"47637.72"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"6/9/2015","Order ID":"717601907","Ship Date":"6/24/2015","Units Sold":"3206","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2142473.62","Total Cost":"1611143.24","Total Profit":"531330.38"},{"Region":"Europe","Country":"France","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"4/21/2010","Order ID":"489807689","Ship Date":"5/12/2010","Units Sold":"3835","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1617948.15","Total Cost":"1398586.15","Total Profit":"219362.00"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"7/2/2013","Order ID":"680771100","Ship Date":"8/14/2013","Units Sold":"4152","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"633512.16","Total Cost":"404570.88","Total Profit":"228941.28"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"8/26/2012","Order ID":"753040969","Ship Date":"10/9/2012","Units Sold":"412","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"173818.68","Total Cost":"150252.28","Total Profit":"23566.40"},{"Region":"Europe","Country":"Kosovo","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/6/2011","Order ID":"689478623","Ship Date":"8/8/2011","Units Sold":"901","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"98461.28","Total Cost":"32291.84","Total Profit":"66169.44"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"6/10/2011","Order ID":"543257892","Ship Date":"7/16/2011","Units Sold":"937","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"192740.90","Total Cost":"109732.07","Total Profit":"83008.83"},{"Region":"Europe","Country":"Sweden","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/13/2014","Order ID":"887865102","Ship Date":"6/4/2014","Units Sold":"7869","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"373384.05","Total Cost":"250155.51","Total Profit":"123228.54"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"4/2/2012","Order ID":"567099082","Ship Date":"5/2/2012","Units Sold":"6075","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3956100.75","Total Cost":"3189132.00","Total Profit":"766968.75"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/14/2013","Order ID":"745071160","Ship Date":"4/22/2013","Units Sold":"1968","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"300277.44","Total Cost":"191761.92","Total Profit":"108515.52"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"1/2/2015","Order ID":"856205165","Ship Date":"1/22/2015","Units Sold":"8990","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3930428.00","Total Cost":"2367336.70","Total Profit":"1563091.30"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"7/13/2016","Order ID":"855237424","Ship Date":"7/17/2016","Units Sold":"2614","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"213642.22","Total Cost":"148135.38","Total Profit":"65506.84"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/4/2013","Order ID":"767216765","Ship Date":"12/17/2013","Units Sold":"5345","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"253620.25","Total Cost":"169917.55","Total Profit":"83702.70"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/19/2011","Order ID":"237504518","Ship Date":"1/20/2012","Units Sold":"1719","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"353598.30","Total Cost":"201312.09","Total Profit":"152286.21"},{"Region":"Europe","Country":"Croatia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"9/17/2012","Order ID":"781774508","Ship Date":"10/18/2012","Units Sold":"3305","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"843700.40","Total Cost":"526883.10","Total Profit":"316817.30"},{"Region":"Asia","Country":"Cambodia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"9/20/2011","Order ID":"836013066","Ship Date":"11/6/2011","Units Sold":"3699","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"760884.30","Total Cost":"433189.89","Total Profit":"327694.41"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"12/16/2016","Order ID":"706519019","Ship Date":"12/19/2016","Units Sold":"3533","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"32962.89","Total Cost":"24448.36","Total Profit":"8514.53"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"10/4/2014","Order ID":"319903695","Ship Date":"11/11/2014","Units Sold":"5467","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"259409.15","Total Cost":"173795.93","Total Profit":"85613.22"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"6/6/2011","Order ID":"573090922","Ship Date":"7/2/2011","Units Sold":"9194","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6144074.38","Total Cost":"4620352.76","Total Profit":"1523721.62"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"5/13/2014","Order ID":"183317029","Ship Date":"5/20/2014","Units Sold":"6437","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"703435.36","Total Cost":"230702.08","Total Profit":"472733.28"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"1/27/2013","Order ID":"638130843","Ship Date":"2/3/2013","Units Sold":"5952","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"486456.96","Total Cost":"337299.84","Total Profit":"149157.12"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"4/16/2013","Order ID":"345393693","Ship Date":"5/3/2013","Units Sold":"8524","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5550914.04","Total Cost":"4474759.04","Total Profit":"1076155.00"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"6/11/2010","Order ID":"483279407","Ship Date":"6/26/2010","Units Sold":"1971","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1283534.91","Total Cost":"1034696.16","Total Profit":"248838.75"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/7/2016","Order ID":"950274312","Ship Date":"4/20/2016","Units Sold":"6141","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4103846.07","Total Cost":"3086098.14","Total Profit":"1017747.93"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/14/2016","Order ID":"815177237","Ship Date":"10/16/2016","Units Sold":"7914","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3460000.80","Total Cost":"2083993.62","Total Profit":"1376007.18"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"6/6/2014","Order ID":"567099511","Ship Date":"7/1/2014","Units Sold":"6202","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"946301.16","Total Cost":"604322.88","Total Profit":"341978.28"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"8/14/2016","Order ID":"765464961","Ship Date":"8/17/2016","Units Sold":"6947","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"567778.31","Total Cost":"393686.49","Total Profit":"174091.82"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/18/2016","Order ID":"690009915","Ship Date":"7/1/2016","Units Sold":"8122","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1670695.40","Total Cost":"951167.42","Total Profit":"719527.98"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/29/2011","Order ID":"590783202","Ship Date":"2/4/2012","Units Sold":"4733","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2069267.60","Total Cost":"1246340.89","Total Profit":"822926.71"},{"Region":"Asia","Country":"Brunei","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/17/2017","Order ID":"338146150","Ship Date":"7/8/2017","Units Sold":"3815","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"587738.90","Total Cost":"346897.95","Total Profit":"240840.95"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/5/2014","Order ID":"772772586","Ship Date":"2/6/2014","Units Sold":"9436","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"88037.88","Total Cost":"65297.12","Total Profit":"22740.76"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/1/2014","Order ID":"555648839","Ship Date":"7/26/2014","Units Sold":"7694","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"71785.02","Total Cost":"53242.48","Total Profit":"18542.54"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"5/19/2013","Order ID":"218073737","Ship Date":"6/17/2013","Units Sold":"1720","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"262437.60","Total Cost":"167596.80","Total Profit":"94840.80"},{"Region":"Europe","Country":"Andorra","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/8/2014","Order ID":"811658608","Ship Date":"2/21/2014","Units Sold":"6674","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"62268.42","Total Cost":"46184.08","Total Profit":"16084.34"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"4/27/2017","Order ID":"758327281","Ship Date":"5/11/2017","Units Sold":"4749","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"518970.72","Total Cost":"170204.16","Total Profit":"348766.56"},{"Region":"Asia","Country":"Cambodia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"2/23/2017","Order ID":"800316083","Ship Date":"3/31/2017","Units Sold":"169","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"110054.49","Total Cost":"88718.24","Total Profit":"21336.25"},{"Region":"Europe","Country":"Poland","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/30/2012","Order ID":"850173842","Ship Date":"8/15/2012","Units Sold":"4188","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2727267.48","Total Cost":"2198532.48","Total Profit":"528735.00"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/25/2011","Order ID":"440761888","Ship Date":"4/1/2011","Units Sold":"92","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"61480.84","Total Cost":"46233.68","Total Profit":"15247.16"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"6/4/2010","Order ID":"975254046","Ship Date":"6/6/2010","Units Sold":"8200","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3585040.00","Total Cost":"2159306.00","Total Profit":"1425734.00"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"2/19/2016","Order ID":"777136647","Ship Date":"2/22/2016","Units Sold":"858","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"573375.66","Total Cost":"431179.32","Total Profit":"142196.34"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/14/2016","Order ID":"940208518","Ship Date":"6/19/2016","Units Sold":"7449","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1532259.30","Total Cost":"872352.39","Total Profit":"659906.91"},{"Region":"Asia","Country":"India","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"9/8/2015","Order ID":"378580987","Ship Date":"9/21/2015","Units Sold":"9382","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"445175.90","Total Cost":"298253.78","Total Profit":"146922.12"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/4/2015","Order ID":"776677882","Ship Date":"6/25/2015","Units Sold":"5100","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"778158.00","Total Cost":"496944.00","Total Profit":"281214.00"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/29/2010","Order ID":"739235532","Ship Date":"11/5/2010","Units Sold":"5076","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3305541.96","Total Cost":"2664696.96","Total Profit":"640845.00"},{"Region":"Europe","Country":"Denmark","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/19/2016","Order ID":"741302764","Ship Date":"9/25/2016","Units Sold":"6816","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1402051.20","Total Cost":"798221.76","Total Profit":"603829.44"},{"Region":"Europe","Country":"Denmark","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/18/2011","Order ID":"878240907","Ship Date":"9/25/2011","Units Sold":"9856","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4309043.20","Total Cost":"2595380.48","Total Profit":"1713662.72"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/17/2016","Order ID":"415723788","Ship Date":"7/17/2016","Units Sold":"762","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"194523.36","Total Cost":"121478.04","Total Profit":"73045.32"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"5/31/2015","Order ID":"939737737","Ship Date":"7/13/2015","Units Sold":"8134","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"888883.52","Total Cost":"291522.56","Total Profit":"597360.96"},{"Region":"Europe","Country":"Portugal","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/1/2012","Order ID":"506581580","Ship Date":"9/26/2012","Units Sold":"7602","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"621311.46","Total Cost":"430805.34","Total Profit":"190506.12"},{"Region":"Europe","Country":"Poland","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"6/27/2013","Order ID":"392866647","Ship Date":"8/6/2013","Units Sold":"6826","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"557888.98","Total Cost":"386829.42","Total Profit":"171059.56"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"10/28/2012","Order ID":"145516765","Ship Date":"12/3/2012","Units Sold":"499","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"54530.72","Total Cost":"17884.16","Total Profit":"36646.56"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/14/2014","Order ID":"731768262","Ship Date":"5/13/2014","Units Sold":"5345","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"253620.25","Total Cost":"169917.55","Total Profit":"83702.70"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/2/2011","Order ID":"489169967","Ship Date":"3/22/2011","Units Sold":"5118","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"242849.10","Total Cost":"162701.22","Total Profit":"80147.88"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/24/2012","Order ID":"975583207","Ship Date":"1/18/2013","Units Sold":"5605","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2364693.45","Total Cost":"2044087.45","Total Profit":"320606.00"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/20/2011","Order ID":"219181811","Ship Date":"7/7/2011","Units Sold":"9624","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6267245.04","Total Cost":"5052215.04","Total Profit":"1215030.00"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"3/23/2014","Order ID":"368452107","Ship Date":"3/26/2014","Units Sold":"2021","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"415719.70","Total Cost":"236679.31","Total Profit":"179040.39"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"7/1/2011","Order ID":"942192924","Ship Date":"8/20/2011","Units Sold":"4679","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"43655.07","Total Cost":"32378.68","Total Profit":"11276.39"},{"Region":"Sub-Saharan Africa","Country":"Mali","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"12/22/2016","Order ID":"179515588","Ship Date":"12/25/2016","Units Sold":"1507","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"309989.90","Total Cost":"176484.77","Total Profit":"133505.13"},{"Region":"North America","Country":"Mexico","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"6/2/2011","Order ID":"889843928","Ship Date":"6/23/2011","Units Sold":"3448","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1507465.60","Total Cost":"907961.84","Total Profit":"599503.76"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"7/9/2014","Order ID":"102914273","Ship Date":"8/2/2014","Units Sold":"3475","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"284011.75","Total Cost":"196928.25","Total Profit":"87083.50"},{"Region":"Europe","Country":"Switzerland","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/14/2012","Order ID":"318775451","Ship Date":"1/3/2013","Units Sold":"1595","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1065890.65","Total Cost":"801551.30","Total Profit":"264339.35"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"3/8/2017","Order ID":"957788789","Ship Date":"4/8/2017","Units Sold":"9842","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4152241.38","Total Cost":"3589278.98","Total Profit":"562962.40"},{"Region":"Europe","Country":"Romania","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"3/23/2012","Order ID":"610628116","Ship Date":"4/8/2012","Units Sold":"7284","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3184564.80","Total Cost":"1918095.72","Total Profit":"1266469.08"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/18/2014","Order ID":"188279759","Ship Date":"8/7/2014","Units Sold":"5020","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2117887.80","Total Cost":"1830743.80","Total Profit":"287144.00"},{"Region":"Asia","Country":"Nepal","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"10/30/2014","Order ID":"672042548","Ship Date":"12/11/2014","Units Sold":"1179","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"96359.67","Total Cost":"66813.93","Total Profit":"29545.74"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"11/23/2012","Order ID":"863527810","Ship Date":"12/10/2012","Units Sold":"5923","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1218361.10","Total Cost":"693642.53","Total Profit":"524718.57"},{"Region":"Europe","Country":"Croatia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"2/4/2013","Order ID":"534659373","Ship Date":"3/17/2013","Units Sold":"6445","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"704309.60","Total Cost":"230988.80","Total Profit":"473320.80"},{"Region":"Europe","Country":"Latvia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/5/2013","Order ID":"877673566","Ship Date":"6/10/2013","Units Sold":"1967","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"859972.40","Total Cost":"517970.11","Total Profit":"342002.29"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"5/28/2016","Order ID":"455119216","Ship Date":"6/17/2016","Units Sold":"8745","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3823314.00","Total Cost":"2302820.85","Total Profit":"1520493.15"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"12/24/2010","Order ID":"149857652","Ship Date":"1/12/2011","Units Sold":"5064","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"240286.80","Total Cost":"160984.56","Total Profit":"79302.24"},{"Region":"Europe","Country":"Spain","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"4/25/2013","Order ID":"915062701","Ship Date":"4/25/2013","Units Sold":"6243","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1284185.10","Total Cost":"731117.73","Total Profit":"553067.37"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"6/13/2010","Order ID":"624220693","Ship Date":"7/26/2010","Units Sold":"9629","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1469192.82","Total Cost":"938249.76","Total Profit":"530943.06"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/25/2016","Order ID":"821130454","Ship Date":"1/7/2017","Units Sold":"9604","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4051831.56","Total Cost":"3502482.76","Total Profit":"549348.80"},{"Region":"Europe","Country":"Albania","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"9/20/2010","Order ID":"869903314","Ship Date":"11/4/2010","Units Sold":"2577","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"397012.62","Total Cost":"234326.61","Total Profit":"162686.01"},{"Region":"Europe","Country":"Macedonia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/5/2012","Order ID":"204963099","Ship Date":"3/9/2012","Units Sold":"1991","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"306733.46","Total Cost":"181041.63","Total Profit":"125691.83"},{"Region":"Europe","Country":"Poland","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"8/24/2012","Order ID":"581046140","Ship Date":"9/19/2012","Units Sold":"3320","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"271343.60","Total Cost":"188144.40","Total Profit":"83199.20"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"11/5/2015","Order ID":"223201262","Ship Date":"12/6/2015","Units Sold":"9068","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2314879.04","Total Cost":"1445620.56","Total Profit":"869258.48"},{"Region":"North America","Country":"United States of America","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/30/2011","Order ID":"576789796","Ship Date":"5/31/2011","Units Sold":"3773","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2457015.33","Total Cost":"1980674.08","Total Profit":"476341.25"},{"Region":"Europe","Country":"Serbia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/16/2016","Order ID":"457485568","Ship Date":"7/27/2016","Units Sold":"9001","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1373372.58","Total Cost":"877057.44","Total Profit":"496315.14"},{"Region":"Asia","Country":"Myanmar","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"8/26/2011","Order ID":"101274907","Ship Date":"10/11/2011","Units Sold":"8350","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5580054.50","Total Cost":"4196209.00","Total Profit":"1383845.50"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/13/2012","Order ID":"714456641","Ship Date":"5/12/2012","Units Sold":"2452","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"267954.56","Total Cost":"87879.68","Total Profit":"180074.88"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"5/2/2012","Order ID":"423642098","Ship Date":"6/19/2012","Units Sold":"3966","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"324141.18","Total Cost":"224753.22","Total Profit":"99387.96"},{"Region":"Asia","Country":"Philippines","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/22/2010","Order ID":"125755107","Ship Date":"8/19/2010","Units Sold":"2586","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1728146.22","Total Cost":"1299568.44","Total Profit":"428577.78"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/28/2014","Order ID":"338031995","Ship Date":"5/5/2014","Units Sold":"34","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"5238.04","Total Cost":"3091.62","Total Profit":"2146.42"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"2/27/2013","Order ID":"748021590","Ship Date":"3/14/2013","Units Sold":"5066","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1042076.20","Total Cost":"593279.26","Total Profit":"448796.94"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/16/2012","Order ID":"663585221","Ship Date":"11/26/2012","Units Sold":"8468","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"401806.60","Total Cost":"269197.72","Total Profit":"132608.88"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"3/23/2016","Order ID":"362896716","Ship Date":"4/3/2016","Units Sold":"8058","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3522957.60","Total Cost":"2121913.14","Total Profit":"1401044.46"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/20/2012","Order ID":"644442403","Ship Date":"6/10/2012","Units Sold":"3683","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"561952.14","Total Cost":"358871.52","Total Profit":"203080.62"},{"Region":"Asia","Country":"Japan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"3/12/2010","Order ID":"577021110","Ship Date":"4/30/2010","Units Sold":"2224","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"457476.80","Total Cost":"260452.64","Total Profit":"197024.16"},{"Region":"Europe","Country":"Monaco","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/25/2012","Order ID":"649744164","Ship Date":"3/3/2012","Units Sold":"2592","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"211844.16","Total Cost":"146888.64","Total Profit":"64955.52"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/14/2010","Order ID":"522035396","Ship Date":"3/7/2010","Units Sold":"729","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"307557.81","Total Cost":"265859.01","Total Profit":"41698.80"},{"Region":"Europe","Country":"Armenia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/11/2012","Order ID":"373631131","Ship Date":"10/24/2012","Units Sold":"4609","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"710062.54","Total Cost":"419096.37","Total Profit":"290966.17"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"3/31/2010","Order ID":"454580199","Ship Date":"5/6/2010","Units Sold":"9238","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2358276.64","Total Cost":"1472721.96","Total Profit":"885554.68"},{"Region":"Europe","Country":"Montenegro","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/8/2017","Order ID":"635243928","Ship Date":"2/26/2017","Units Sold":"1650","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"421212.00","Total Cost":"263043.00","Total Profit":"158169.00"},{"Region":"Europe","Country":"Croatia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/5/2014","Order ID":"856296145","Ship Date":"4/19/2014","Units Sold":"5913","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"280571.85","Total Cost":"187974.27","Total Profit":"92597.58"},{"Region":"Europe","Country":"Portugal","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"7/19/2014","Order ID":"678723180","Ship Date":"8/19/2014","Units Sold":"8126","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1671518.20","Total Cost":"951635.86","Total Profit":"719882.34"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"8/10/2012","Order ID":"633823859","Ship Date":"9/15/2012","Units Sold":"1420","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"620824.00","Total Cost":"373928.60","Total Profit":"246895.40"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/21/2011","Order ID":"873209512","Ship Date":"11/19/2011","Units Sold":"954","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"417088.80","Total Cost":"251216.82","Total Profit":"165871.98"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/10/2012","Order ID":"718803966","Ship Date":"11/27/2012","Units Sold":"8922","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"729195.06","Total Cost":"505609.74","Total Profit":"223585.32"},{"Region":"North America","Country":"United States of America","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/24/2017","Order ID":"912843549","Ship Date":"5/7/2017","Units Sold":"9546","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1470656.76","Total Cost":"868017.78","Total Profit":"602638.98"},{"Region":"Europe","Country":"Malta","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/26/2016","Order ID":"467877089","Ship Date":"8/1/2016","Units Sold":"4083","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2728546.41","Total Cost":"2051870.82","Total Profit":"676675.59"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/6/2010","Order ID":"716765916","Ship Date":"12/14/2010","Units Sold":"5817","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3788088.57","Total Cost":"3053692.32","Total Profit":"734396.25"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/15/2012","Order ID":"362683856","Ship Date":"8/15/2012","Units Sold":"5067","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"553721.76","Total Cost":"181601.28","Total Profit":"372120.48"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/15/2012","Order ID":"429117238","Ship Date":"7/24/2012","Units Sold":"4182","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"39018.06","Total Cost":"28939.44","Total Profit":"10078.62"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/5/2013","Order ID":"209864890","Ship Date":"11/8/2013","Units Sold":"2539","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"277461.92","Total Cost":"90997.76","Total Profit":"186464.16"},{"Region":"Europe","Country":"Armenia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"6/11/2013","Order ID":"419038140","Ship Date":"7/14/2013","Units Sold":"1553","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"396449.84","Total Cost":"247579.26","Total Profit":"148870.58"},{"Region":"Asia","Country":"Taiwan","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/31/2012","Order ID":"941060817","Ship Date":"11/20/2012","Units Sold":"9663","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"789756.99","Total Cost":"547602.21","Total Profit":"242154.78"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"9/1/2014","Order ID":"380669248","Ship Date":"9/24/2014","Units Sold":"7345","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1875031.60","Total Cost":"1170939.90","Total Profit":"704091.70"},{"Region":"Europe","Country":"Monaco","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/21/2011","Order ID":"112912261","Ship Date":"5/29/2011","Units Sold":"2102","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"229706.56","Total Cost":"75335.68","Total Profit":"154370.88"},{"Region":"Europe","Country":"Vatican City","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/23/2011","Order ID":"233151185","Ship Date":"5/15/2011","Units Sold":"3472","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"714190.40","Total Cost":"406605.92","Total Profit":"307584.48"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"12/14/2012","Order ID":"907059848","Ship Date":"1/8/2013","Units Sold":"8021","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5223355.41","Total Cost":"4210704.16","Total Profit":"1012651.25"},{"Region":"Europe","Country":"Albania","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/31/2015","Order ID":"120624577","Ship Date":"8/5/2015","Units Sold":"4348","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"206312.60","Total Cost":"138222.92","Total Profit":"68089.68"},{"Region":"Europe","Country":"Ireland","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"10/20/2015","Order ID":"430144202","Ship Date":"11/3/2015","Units Sold":"8083","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"883310.24","Total Cost":"289694.72","Total Profit":"593615.52"},{"Region":"Asia","Country":"Nepal","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"4/21/2011","Order ID":"412230050","Ship Date":"5/3/2011","Units Sold":"6887","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1050818.46","Total Cost":"671069.28","Total Profit":"379749.18"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"3/9/2012","Order ID":"513805949","Ship Date":"3/10/2012","Units Sold":"5453","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3551048.13","Total Cost":"2862606.88","Total Profit":"688441.25"},{"Region":"Asia","Country":"India","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"6/25/2014","Order ID":"802108228","Ship Date":"8/8/2014","Units Sold":"504","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"103672.80","Total Cost":"59023.44","Total Profit":"44649.36"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/28/2011","Order ID":"514685714","Ship Date":"8/10/2011","Units Sold":"5795","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1479347.60","Total Cost":"923838.90","Total Profit":"555508.70"},{"Region":"Europe","Country":"Kosovo","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/20/2012","Order ID":"309399735","Ship Date":"10/2/2012","Units Sold":"7112","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"581263.76","Total Cost":"403037.04","Total Profit":"178226.72"},{"Region":"Europe","Country":"Romania","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/26/2017","Order ID":"914424121","Ship Date":"6/3/2017","Units Sold":"7273","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"794793.44","Total Cost":"260664.32","Total Profit":"534129.12"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/31/2010","Order ID":"878245198","Ship Date":"10/16/2010","Units Sold":"1126","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"53428.70","Total Cost":"35795.54","Total Profit":"17633.16"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/17/2012","Order ID":"619661796","Ship Date":"11/16/2012","Units Sold":"550","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"367548.50","Total Cost":"276397.00","Total Profit":"91151.50"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"11/6/2014","Order ID":"177785241","Ship Date":"12/6/2014","Units Sold":"9458","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3990235.62","Total Cost":"3449238.02","Total Profit":"540997.60"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/24/2012","Order ID":"562039363","Ship Date":"9/26/2012","Units Sold":"8792","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5875429.84","Total Cost":"4418331.68","Total Profit":"1457098.16"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/28/2010","Order ID":"602160489","Ship Date":"1/15/2011","Units Sold":"1525","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"993095.25","Total Cost":"800564.00","Total Profit":"192531.25"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"6/11/2011","Order ID":"998197448","Ship Date":"7/15/2011","Units Sold":"7662","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3349826.40","Total Cost":"2017634.46","Total Profit":"1332191.94"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"12/24/2016","Order ID":"270511567","Ship Date":"1/15/2017","Units Sold":"9239","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1009637.92","Total Cost":"331125.76","Total Profit":"678512.16"},{"Region":"Europe","Country":"Moldova ","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/15/2012","Order ID":"609776675","Ship Date":"9/28/2012","Units Sold":"5324","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3467042.04","Total Cost":"2794887.04","Total Profit":"672155.00"},{"Region":"North America","Country":"Canada","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"10/1/2014","Order ID":"226979100","Ship Date":"10/20/2014","Units Sold":"7015","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1790789.20","Total Cost":"1118331.30","Total Profit":"672457.90"},{"Region":"Europe","Country":"Andorra","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/17/2014","Order ID":"103417670","Ship Date":"4/30/2014","Units Sold":"2442","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1030255.38","Total Cost":"890572.98","Total Profit":"139682.40"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/31/2010","Order ID":"840703713","Ship Date":"12/18/2010","Units Sold":"1766","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"144335.18","Total Cost":"100079.22","Total Profit":"44255.96"},{"Region":"Europe","Country":"Finland","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"5/12/2016","Order ID":"410761058","Ship Date":"6/19/2016","Units Sold":"2180","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"953096.00","Total Cost":"574059.40","Total Profit":"379036.60"},{"Region":"Europe","Country":"Poland","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"8/28/2013","Order ID":"905826032","Ship Date":"9/5/2013","Units Sold":"2907","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"317676.96","Total Cost":"104186.88","Total Profit":"213490.08"},{"Region":"Sub-Saharan Africa","Country":"Mali","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/23/2013","Order ID":"888447463","Ship Date":"2/16/2013","Units Sold":"202","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"51566.56","Total Cost":"32202.84","Total Profit":"19363.72"},{"Region":"Asia","Country":"Brunei","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"11/1/2010","Order ID":"341486680","Ship Date":"11/15/2010","Units Sold":"2352","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"21944.16","Total Cost":"16275.84","Total Profit":"5668.32"},{"Region":"Asia","Country":"Nepal","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/31/2015","Order ID":"218117511","Ship Date":"10/13/2015","Units Sold":"4673","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2043035.60","Total Cost":"1230541.09","Total Profit":"812494.51"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/31/2014","Order ID":"191826283","Ship Date":"9/11/2014","Units Sold":"4515","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"214236.75","Total Cost":"143531.85","Total Profit":"70704.90"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"8/12/2014","Order ID":"906411826","Ship Date":"9/7/2014","Units Sold":"6257","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"954693.06","Total Cost":"609682.08","Total Profit":"345010.98"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"4/14/2016","Order ID":"825985467","Ship Date":"5/13/2016","Units Sold":"6310","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1610816.80","Total Cost":"1005940.20","Total Profit":"604876.60"},{"Region":"Asia","Country":"Maldives","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/24/2017","Order ID":"284971034","Ship Date":"6/11/2017","Units Sold":"8117","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5424347.59","Total Cost":"4079117.18","Total Profit":"1345230.41"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/22/2016","Order ID":"138104856","Ship Date":"11/18/2016","Units Sold":"7151","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"781461.28","Total Cost":"256291.84","Total Profit":"525169.44"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/31/2010","Order ID":"410435760","Ship Date":"9/26/2010","Units Sold":"5917","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"55205.61","Total Cost":"40945.64","Total Profit":"14259.97"},{"Region":"Europe","Country":"Albania","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"4/29/2011","Order ID":"747325074","Ship Date":"6/18/2011","Units Sold":"8952","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2285266.56","Total Cost":"1427127.84","Total Profit":"858138.72"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/9/2013","Order ID":"864446628","Ship Date":"4/29/2013","Units Sold":"7822","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1193480.76","Total Cost":"762175.68","Total Profit":"431305.08"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"1/20/2012","Order ID":"997786748","Ship Date":"2/12/2012","Units Sold":"6127","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3989963.67","Total Cost":"3216429.92","Total Profit":"773533.75"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"8/27/2015","Order ID":"553644263","Ship Date":"9/28/2015","Units Sold":"4496","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1896817.44","Total Cost":"1639646.24","Total Profit":"257171.20"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/22/2010","Order ID":"358630502","Ship Date":"6/26/2010","Units Sold":"5590","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3640263.90","Total Cost":"2934526.40","Total Profit":"705737.50"},{"Region":"Europe","Country":"Kosovo","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"2/25/2010","Order ID":"409669291","Ship Date":"3/3/2010","Units Sold":"9102","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"431889.90","Total Cost":"289352.58","Total Profit":"142537.32"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"10/4/2014","Order ID":"323996961","Ship Date":"11/10/2014","Units Sold":"6755","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2953286.00","Total Cost":"1778794.15","Total Profit":"1174491.85"},{"Region":"Europe","Country":"France","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"9/20/2013","Order ID":"689162337","Ship Date":"9/21/2013","Units Sold":"7305","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4881712.35","Total Cost":"3671054.70","Total Profit":"1210657.65"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/7/2012","Order ID":"813026750","Ship Date":"11/18/2012","Units Sold":"1537","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"125619.01","Total Cost":"87101.79","Total Profit":"38517.22"},{"Region":"North America","Country":"Canada","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"11/27/2014","Order ID":"973764026","Ship Date":"1/3/2015","Units Sold":"7269","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1495233.30","Total Cost":"851272.59","Total Profit":"643960.71"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/19/2016","Order ID":"169860494","Ship Date":"9/15/2016","Units Sold":"4350","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"40585.50","Total Cost":"30102.00","Total Profit":"10483.50"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/24/2011","Order ID":"170114982","Ship Date":"11/6/2011","Units Sold":"9658","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4222477.60","Total Cost":"2543241.14","Total Profit":"1679236.46"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/6/2010","Order ID":"563638818","Ship Date":"4/4/2010","Units Sold":"2106","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"172123.38","Total Cost":"119347.02","Total Profit":"52776.36"},{"Region":"North America","Country":"Greenland","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"9/4/2011","Order ID":"109855830","Ship Date":"9/20/2011","Units Sold":"7636","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5102909.72","Total Cost":"3837395.44","Total Profit":"1265514.28"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/22/2016","Order ID":"788502347","Ship Date":"12/22/2016","Units Sold":"4222","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"644192.76","Total Cost":"411391.68","Total Profit":"232801.08"},{"Region":"Europe","Country":"Poland","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/18/2016","Order ID":"149627196","Ship Date":"7/31/2016","Units Sold":"6867","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1412541.90","Total Cost":"804194.37","Total Profit":"608347.53"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"1/21/2017","Order ID":"763591706","Ship Date":"1/24/2017","Units Sold":"2609","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"398081.22","Total Cost":"254220.96","Total Profit":"143860.26"},{"Region":"Sub-Saharan Africa","Country":"Mali","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"11/22/2014","Order ID":"771069705","Ship Date":"11/26/2014","Units Sold":"5515","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"602679.20","Total Cost":"197657.60","Total Profit":"405021.60"},{"Region":"Europe","Country":"Greece","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/26/2015","Order ID":"633047521","Ship Date":"2/10/2015","Units Sold":"1684","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"736244.80","Total Cost":"443447.72","Total Profit":"292797.08"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/23/2012","Order ID":"880823981","Ship Date":"5/14/2012","Units Sold":"4245","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2836806.15","Total Cost":"2133282.30","Total Profit":"703523.85"},{"Region":"Asia","Country":"Mongolia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"7/19/2017","Order ID":"766010415","Ship Date":"8/11/2017","Units Sold":"8359","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1287787.54","Total Cost":"760083.87","Total Profit":"527703.67"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"4/12/2016","Order ID":"510530650","Ship Date":"4/21/2016","Units Sold":"6219","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"508278.87","Total Cost":"352430.73","Total Profit":"155848.14"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"3/17/2010","Order ID":"856621015","Ship Date":"4/16/2010","Units Sold":"2049","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1334329.29","Total Cost":"1075643.04","Total Profit":"258686.25"},{"Region":"Europe","Country":"Poland","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/17/2013","Order ID":"816830337","Ship Date":"7/11/2013","Units Sold":"7103","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1461087.10","Total Cost":"831832.33","Total Profit":"629254.77"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/10/2010","Order ID":"824019944","Ship Date":"1/26/2011","Units Sold":"4668","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3039848.28","Total Cost":"2450513.28","Total Profit":"589335.00"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/15/2015","Order ID":"481363666","Ship Date":"3/25/2015","Units Sold":"5060","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3295122.60","Total Cost":"2656297.60","Total Profit":"638825.00"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/28/2016","Order ID":"812347829","Ship Date":"10/29/2016","Units Sold":"630","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"29893.50","Total Cost":"20027.70","Total Profit":"9865.80"},{"Region":"Europe","Country":"Moldova ","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/18/2011","Order ID":"210771262","Ship Date":"10/18/2011","Units Sold":"755","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"504543.85","Total Cost":"379417.70","Total Profit":"125126.15"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"9/3/2011","Order ID":"290745294","Ship Date":"10/4/2011","Units Sold":"6848","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1055002.88","Total Cost":"622688.64","Total Profit":"432314.24"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/19/2010","Order ID":"936693751","Ship Date":"11/6/2010","Units Sold":"7351","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3101313.39","Total Cost":"2680836.19","Total Profit":"420477.20"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/29/2011","Order ID":"753352963","Ship Date":"8/6/2011","Units Sold":"2738","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"299208.64","Total Cost":"98129.92","Total Profit":"201078.72"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"12/7/2013","Order ID":"215771758","Ship Date":"1/23/2014","Units Sold":"513","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"41927.49","Total Cost":"29071.71","Total Profit":"12855.78"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/17/2011","Order ID":"319311463","Ship Date":"7/21/2011","Units Sold":"213","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"93123.60","Total Cost":"56089.29","Total Profit":"37034.31"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"6/28/2017","Order ID":"329645907","Ship Date":"8/15/2017","Units Sold":"8404","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1728702.80","Total Cost":"984192.44","Total Profit":"744510.36"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/21/2016","Order ID":"932761418","Ship Date":"5/7/2016","Units Sold":"3687","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"34399.71","Total Cost":"25514.04","Total Profit":"8885.67"},{"Region":"Europe","Country":"Germany","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"11/2/2011","Order ID":"184956824","Ship Date":"12/4/2011","Units Sold":"1689","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"431167.92","Total Cost":"269260.38","Total Profit":"161907.54"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/1/2017","Order ID":"262843453","Ship Date":"3/15/2017","Units Sold":"74","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"11400.44","Total Cost":"6728.82","Total Profit":"4671.62"},{"Region":"Europe","Country":"Montenegro","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/9/2012","Order ID":"713345134","Ship Date":"2/23/2012","Units Sold":"3532","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"32953.56","Total Cost":"24441.44","Total Profit":"8512.12"},{"Region":"Europe","Country":"Kosovo","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/25/2015","Order ID":"703698194","Ship Date":"4/3/2015","Units Sold":"8788","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3707569.32","Total Cost":"3204895.72","Total Profit":"502673.60"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"4/13/2012","Order ID":"371451461","Ship Date":"5/26/2012","Units Sold":"9597","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4195808.40","Total Cost":"2527178.01","Total Profit":"1668630.39"},{"Region":"Asia","Country":"India","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/6/2012","Order ID":"374466264","Ship Date":"1/3/2013","Units Sold":"1744","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"266099.52","Total Cost":"169935.36","Total Profit":"96164.16"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"4/26/2016","Order ID":"540916430","Ship Date":"6/12/2016","Units Sold":"8047","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"75078.51","Total Cost":"55685.24","Total Profit":"19393.27"},{"Region":"Europe","Country":"Albania","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/24/2015","Order ID":"319288289","Ship Date":"3/11/2015","Units Sold":"3355","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"159194.75","Total Cost":"106655.45","Total Profit":"52539.30"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/27/2014","Order ID":"128380668","Ship Date":"9/3/2014","Units Sold":"9547","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6217101.87","Total Cost":"5011793.12","Total Profit":"1205308.75"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"3/13/2013","Order ID":"907304894","Ship Date":"4/17/2013","Units Sold":"535","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"110049.50","Total Cost":"62653.85","Total Profit":"47395.65"},{"Region":"Europe","Country":"Latvia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"7/9/2014","Order ID":"965484797","Ship Date":"7/21/2014","Units Sold":"7262","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4729087.02","Total Cost":"3812259.52","Total Profit":"916827.50"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"7/4/2015","Order ID":"932656705","Ship Date":"8/13/2015","Units Sold":"2700","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1139103.00","Total Cost":"984663.00","Total Profit":"154440.00"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"5/28/2010","Order ID":"608869445","Ship Date":"6/22/2010","Units Sold":"6854","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"749005.12","Total Cost":"245647.36","Total Profit":"503357.76"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"4/2/2017","Order ID":"314484345","Ship Date":"5/14/2017","Units Sold":"1761","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"769909.20","Total Cost":"463724.13","Total Profit":"306185.07"},{"Region":"Europe","Country":"Norway","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"6/29/2013","Order ID":"440175235","Ship Date":"8/17/2013","Units Sold":"6488","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"989939.04","Total Cost":"632190.72","Total Profit":"357748.32"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/5/2015","Order ID":"996928441","Ship Date":"7/23/2015","Units Sold":"2135","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1426756.45","Total Cost":"1072922.90","Total Profit":"353833.55"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"3/26/2014","Order ID":"266042792","Ship Date":"4/7/2014","Units Sold":"6829","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"558134.17","Total Cost":"386999.43","Total Profit":"171134.74"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"10/23/2016","Order ID":"649129617","Ship Date":"10/29/2016","Units Sold":"734","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"113080.04","Total Cost":"66742.62","Total Profit":"46337.42"},{"Region":"Europe","Country":"Monaco","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"7/12/2012","Order ID":"118112742","Ship Date":"7/25/2012","Units Sold":"1040","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"113651.20","Total Cost":"37273.60","Total Profit":"76377.60"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"6/12/2014","Order ID":"765228497","Ship Date":"6/20/2014","Units Sold":"6972","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4540236.12","Total Cost":"3660021.12","Total Profit":"880215.00"},{"Region":"Europe","Country":"Hungary","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"3/11/2010","Order ID":"253025710","Ship Date":"3/17/2010","Units Sold":"4785","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1221514.80","Total Cost":"762824.70","Total Profit":"458690.10"},{"Region":"Europe","Country":"Macedonia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"3/2/2011","Order ID":"364365708","Ship Date":"4/8/2011","Units Sold":"2765","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"421883.70","Total Cost":"269421.60","Total Profit":"152462.10"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/30/2010","Order ID":"252422320","Ship Date":"12/14/2010","Units Sold":"6229","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2627952.81","Total Cost":"2271654.01","Total Profit":"356298.80"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/12/2011","Order ID":"490681874","Ship Date":"8/30/2011","Units Sold":"2525","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1103930.00","Total Cost":"664908.25","Total Profit":"439021.75"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/19/2012","Order ID":"822943198","Ship Date":"10/5/2012","Units Sold":"6035","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"929752.10","Total Cost":"548762.55","Total Profit":"380989.55"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"10/2/2014","Order ID":"613317620","Ship Date":"11/12/2014","Units Sold":"3168","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"150321.60","Total Cost":"100710.72","Total Profit":"49610.88"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"7/7/2015","Order ID":"196228969","Ship Date":"7/16/2015","Units Sold":"7367","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3220852.40","Total Cost":"1939952.11","Total Profit":"1280900.29"},{"Region":"Europe","Country":"Lithuania","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/13/2013","Order ID":"426413571","Ship Date":"11/18/2013","Units Sold":"4106","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"844604.20","Total Cost":"480853.66","Total Profit":"363750.54"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"7/13/2013","Order ID":"428920257","Ship Date":"9/1/2013","Units Sold":"5890","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3936110.30","Total Cost":"2959960.60","Total Profit":"976149.70"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"9/18/2011","Order ID":"749110352","Ship Date":"10/14/2011","Units Sold":"7255","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4848298.85","Total Cost":"3645927.70","Total Profit":"1202371.15"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/22/2010","Order ID":"202657687","Ship Date":"6/28/2010","Units Sold":"9768","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"2009277.60","Total Cost":"1143930.48","Total Profit":"865347.12"},{"Region":"Europe","Country":"Malta","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"12/6/2012","Order ID":"825548589","Ship Date":"1/3/2013","Units Sold":"7028","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1082733.68","Total Cost":"639056.04","Total Profit":"443677.64"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/4/2011","Order ID":"224081885","Ship Date":"12/17/2011","Units Sold":"9664","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1488835.84","Total Cost":"878747.52","Total Profit":"610088.32"},{"Region":"Europe","Country":"Austria","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"6/27/2016","Order ID":"124868905","Ship Date":"6/27/2016","Units Sold":"339","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"143020.71","Total Cost":"123629.91","Total Profit":"19390.80"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/23/2010","Order ID":"524833476","Ship Date":"4/6/2010","Units Sold":"8743","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1346946.58","Total Cost":"795000.99","Total Profit":"551945.59"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/31/2015","Order ID":"141211926","Ship Date":"10/14/2015","Units Sold":"6602","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2886394.40","Total Cost":"1738504.66","Total Profit":"1147889.74"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/2/2014","Order ID":"461553084","Ship Date":"10/18/2014","Units Sold":"2669","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1126024.41","Total Cost":"973357.61","Total Profit":"152666.80"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"3/20/2013","Order ID":"793718278","Ship Date":"4/11/2013","Units Sold":"7731","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5034504.51","Total Cost":"4058465.76","Total Profit":"976038.75"},{"Region":"Europe","Country":"Poland","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/22/2014","Order ID":"515881335","Ship Date":"3/2/2014","Units Sold":"9606","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4199743.20","Total Cost":"2529547.98","Total Profit":"1670195.22"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/14/2013","Order ID":"426528584","Ship Date":"10/24/2013","Units Sold":"8141","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1242153.78","Total Cost":"793259.04","Total Profit":"448894.74"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/27/2013","Order ID":"494458854","Ship Date":"10/12/2013","Units Sold":"218","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"141963.78","Total Cost":"114441.28","Total Profit":"27522.50"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"5/2/2016","Order ID":"308783471","Ship Date":"6/19/2016","Units Sold":"4746","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"724144.68","Total Cost":"462450.24","Total Profit":"261694.44"},{"Region":"Europe","Country":"Vatican City","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"9/12/2013","Order ID":"428926265","Ship Date":"10/22/2013","Units Sold":"7668","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"363846.60","Total Cost":"243765.72","Total Profit":"120080.88"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/26/2014","Order ID":"134623563","Ship Date":"4/3/2014","Units Sold":"6959","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2935932.51","Total Cost":"2537877.71","Total Profit":"398054.80"},{"Region":"Europe","Country":"Macedonia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"9/29/2015","Order ID":"575924193","Ship Date":"10/18/2015","Units Sold":"7622","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"71113.26","Total Cost":"52744.24","Total Profit":"18369.02"},{"Region":"Europe","Country":"Slovakia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"7/25/2017","Order ID":"723189485","Ship Date":"8/31/2017","Units Sold":"6694","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1021370.52","Total Cost":"652263.36","Total Profit":"369107.16"},{"Region":"Europe","Country":"Greece","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"12/31/2015","Order ID":"517093265","Ship Date":"1/23/2016","Units Sold":"8243","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"900795.04","Total Cost":"295429.12","Total Profit":"605365.92"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"1/24/2016","Order ID":"418621861","Ship Date":"2/21/2016","Units Sold":"8366","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5448022.86","Total Cost":"4391815.36","Total Profit":"1056207.50"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/26/2012","Order ID":"959074103","Ship Date":"7/31/2012","Units Sold":"195","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"30041.70","Total Cost":"17731.35","Total Profit":"12310.35"},{"Region":"Asia","Country":"Maldives","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"3/11/2016","Order ID":"490061318","Ship Date":"4/26/2016","Units Sold":"8889","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5940252.03","Total Cost":"4467078.06","Total Profit":"1473173.97"},{"Region":"Europe","Country":"Ireland","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/6/2012","Order ID":"133507335","Ship Date":"10/25/2012","Units Sold":"6642","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1013436.36","Total Cost":"647196.48","Total Profit":"366239.88"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"3/26/2011","Order ID":"631648480","Ship Date":"5/9/2011","Units Sold":"7677","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"838942.56","Total Cost":"275143.68","Total Profit":"563798.88"},{"Region":"North America","Country":"United States of America","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/28/2010","Order ID":"997033584","Ship Date":"11/18/2010","Units Sold":"3249","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"355050.72","Total Cost":"116444.16","Total Profit":"238606.56"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"7/5/2011","Order ID":"762523972","Ship Date":"8/8/2011","Units Sold":"6643","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"542932.39","Total Cost":"376458.81","Total Profit":"166473.58"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/11/2010","Order ID":"431293475","Ship Date":"9/2/2010","Units Sold":"8178","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1259902.68","Total Cost":"743625.54","Total Profit":"516277.14"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"2/3/2014","Order ID":"126828420","Ship Date":"3/17/2014","Units Sold":"203","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"22183.84","Total Cost":"7275.52","Total Profit":"14908.32"},{"Region":"Europe","Country":"Estonia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/20/2010","Order ID":"942927634","Ship Date":"2/24/2010","Units Sold":"2096","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"229050.88","Total Cost":"75120.64","Total Profit":"153930.24"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/18/2010","Order ID":"893702447","Ship Date":"5/25/2010","Units Sold":"5269","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"575796.32","Total Cost":"188840.96","Total Profit":"386955.36"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"8/23/2016","Order ID":"763576686","Ship Date":"8/26/2016","Units Sold":"8165","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5456424.55","Total Cost":"4103239.10","Total Profit":"1353185.45"},{"Region":"Asia","Country":"South Korea","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/12/2016","Order ID":"957286679","Ship Date":"6/11/2016","Units Sold":"1256","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"137255.68","Total Cost":"45015.04","Total Profit":"92240.64"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"1/13/2017","Order ID":"149881255","Ship Date":"2/16/2017","Units Sold":"2049","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"167464.77","Total Cost":"116116.83","Total Profit":"51347.94"},{"Region":"Asia","Country":"Singapore","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/1/2012","Order ID":"236721742","Ship Date":"2/26/2012","Units Sold":"79","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"33329.31","Total Cost":"28810.51","Total Profit":"4518.80"},{"Region":"North America","Country":"Mexico","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/6/2014","Order ID":"483481967","Ship Date":"1/24/2015","Units Sold":"1913","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"291885.54","Total Cost":"186402.72","Total Profit":"105482.82"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"5/2/2017","Order ID":"676148259","Ship Date":"5/18/2017","Units Sold":"6150","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"672072.00","Total Cost":"220416.00","Total Profit":"451656.00"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/1/2015","Order ID":"671019446","Ship Date":"12/28/2015","Units Sold":"8421","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3552735.69","Total Cost":"3071054.49","Total Profit":"481681.20"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"12/5/2015","Order ID":"844706857","Ship Date":"1/18/2016","Units Sold":"6385","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"302968.25","Total Cost":"202979.15","Total Profit":"99989.10"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/30/2012","Order ID":"744134318","Ship Date":"5/16/2012","Units Sold":"4736","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"44186.88","Total Cost":"32773.12","Total Profit":"11413.76"},{"Region":"Sub-Saharan Africa","Country":"Mali","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"4/18/2016","Order ID":"436538159","Ship Date":"4/25/2016","Units Sold":"197","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"86128.40","Total Cost":"51876.01","Total Profit":"34252.39"},{"Region":"Europe","Country":"Slovakia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/21/2013","Order ID":"959467208","Ship Date":"8/11/2013","Units Sold":"6523","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"533124.79","Total Cost":"369658.41","Total Profit":"163466.38"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"8/13/2013","Order ID":"270782792","Ship Date":"9/4/2013","Units Sold":"9500","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1463570.00","Total Cost":"863835.00","Total Profit":"599735.00"},{"Region":"Europe","Country":"Croatia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"9/16/2015","Order ID":"898658740","Ship Date":"9/29/2015","Units Sold":"1946","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"496774.88","Total Cost":"310231.32","Total Profit":"186543.56"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"7/15/2012","Order ID":"491581380","Ship Date":"7/28/2012","Units Sold":"8709","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1791441.30","Total Cost":"1019910.99","Total Profit":"771530.31"},{"Region":"Europe","Country":"Serbia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/24/2016","Order ID":"368349540","Ship Date":"11/18/2016","Units Sold":"1669","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"15571.77","Total Cost":"11549.48","Total Profit":"4022.29"},{"Region":"Asia","Country":"North Korea","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"1/8/2012","Order ID":"568074548","Ship Date":"1/26/2012","Units Sold":"4737","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"722771.46","Total Cost":"461573.28","Total Profit":"261198.18"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/12/2016","Order ID":"300180232","Ship Date":"12/1/2016","Units Sold":"8856","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"82626.48","Total Cost":"61283.52","Total Profit":"21342.96"},{"Region":"Europe","Country":"Belarus","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/2/2012","Order ID":"194402921","Ship Date":"1/10/2013","Units Sold":"6999","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"764850.72","Total Cost":"250844.16","Total Profit":"514006.56"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/31/2017","Order ID":"950791442","Ship Date":"7/15/2017","Units Sold":"9171","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"749545.83","Total Cost":"519720.57","Total Profit":"229825.26"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"6/4/2010","Order ID":"189707124","Ship Date":"7/13/2010","Units Sold":"7408","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"809546.24","Total Cost":"265502.72","Total Profit":"544043.52"},{"Region":"North America","Country":"Mexico","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"11/2/2014","Order ID":"101823794","Ship Date":"12/3/2014","Units Sold":"778","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"506641.38","Total Cost":"408418.88","Total Profit":"98222.50"},{"Region":"Europe","Country":"Poland","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"9/27/2016","Order ID":"698127782","Ship Date":"11/11/2016","Units Sold":"379","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"246808.59","Total Cost":"198959.84","Total Profit":"47848.75"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/23/2014","Order ID":"259917914","Ship Date":"10/2/2014","Units Sold":"4342","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"662502.36","Total Cost":"423084.48","Total Profit":"239417.88"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/10/2015","Order ID":"288805520","Ship Date":"10/23/2015","Units Sold":"2826","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"26366.58","Total Cost":"19555.92","Total Profit":"6810.66"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/27/2016","Order ID":"556714427","Ship Date":"10/13/2016","Units Sold":"3025","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"247233.25","Total Cost":"171426.75","Total Profit":"75806.50"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"9/16/2015","Order ID":"455880963","Ship Date":"10/22/2015","Units Sold":"4163","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"641351.78","Total Cost":"378541.59","Total Profit":"262810.19"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/14/2015","Order ID":"348853957","Ship Date":"5/31/2015","Units Sold":"2493","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"23259.69","Total Cost":"17251.56","Total Profit":"6008.13"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"12/21/2011","Order ID":"218494737","Ship Date":"1/28/2012","Units Sold":"6303","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"515144.19","Total Cost":"357191.01","Total Profit":"157953.18"},{"Region":"Europe","Country":"Romania","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"3/18/2014","Order ID":"117977130","Ship Date":"3/31/2014","Units Sold":"909","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"232049.52","Total Cost":"144912.78","Total Profit":"87136.74"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"9/9/2016","Order ID":"620787465","Ship Date":"10/2/2016","Units Sold":"3661","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2446536.47","Total Cost":"1839798.94","Total Profit":"606737.53"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/19/2011","Order ID":"570724570","Ship Date":"5/24/2011","Units Sold":"8938","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2281692.64","Total Cost":"1424895.96","Total Profit":"856796.68"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"9/10/2013","Order ID":"231899774","Ship Date":"10/11/2013","Units Sold":"3151","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"804387.28","Total Cost":"502332.42","Total Profit":"302054.86"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"2/8/2014","Order ID":"838736903","Ship Date":"3/9/2014","Units Sold":"9743","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"462305.35","Total Cost":"309729.97","Total Profit":"152575.38"},{"Region":"Europe","Country":"Russia","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"5/28/2011","Order ID":"545972287","Ship Date":"6/9/2011","Units Sold":"4187","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2798046.49","Total Cost":"2104134.98","Total Profit":"693911.51"},{"Region":"Europe","Country":"Denmark","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"11/14/2016","Order ID":"278654754","Ship Date":"11/15/2016","Units Sold":"8989","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"83867.37","Total Cost":"62203.88","Total Profit":"21663.49"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"7/29/2012","Order ID":"582145631","Ship Date":"8/28/2012","Units Sold":"8684","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"709743.32","Total Cost":"492122.28","Total Profit":"217621.04"},{"Region":"Europe","Country":"Georgia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/20/2015","Order ID":"272118747","Ship Date":"10/12/2015","Units Sold":"4839","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3151205.19","Total Cost":"2540281.44","Total Profit":"610923.75"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/13/2014","Order ID":"484560430","Ship Date":"4/24/2014","Units Sold":"1054","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"444672.06","Total Cost":"384383.26","Total Profit":"60288.80"},{"Region":"Europe","Country":"Cyprus","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/28/2016","Order ID":"625769507","Ship Date":"4/20/2016","Units Sold":"7958","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5182329.18","Total Cost":"4177631.68","Total Profit":"1004697.50"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/27/2015","Order ID":"622357308","Ship Date":"8/10/2015","Units Sold":"8213","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5488501.51","Total Cost":"4127361.02","Total Profit":"1361140.49"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"10/8/2010","Order ID":"471247661","Ship Date":"11/27/2010","Units Sold":"1510","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"71649.50","Total Cost":"48002.90","Total Profit":"23646.60"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"1/16/2017","Order ID":"689676892","Ship Date":"2/14/2017","Units Sold":"9573","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6234033.33","Total Cost":"5025442.08","Total Profit":"1208591.25"},{"Region":"Asia","Country":"Laos","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/4/2016","Order ID":"965193831","Ship Date":"4/12/2016","Units Sold":"1158","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"488548.62","Total Cost":"422311.02","Total Profit":"66237.60"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/19/2014","Order ID":"605659806","Ship Date":"3/21/2014","Units Sold":"7051","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2974746.39","Total Cost":"2571429.19","Total Profit":"403317.20"},{"Region":"Europe","Country":"Montenegro","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"9/8/2013","Order ID":"789248645","Ship Date":"9/28/2013","Units Sold":"5068","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2138138.52","Total Cost":"1848248.92","Total Profit":"289889.60"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/30/2011","Order ID":"514446675","Ship Date":"6/21/2011","Units Sold":"5058","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"413390.34","Total Cost":"286636.86","Total Profit":"126753.48"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/21/2016","Order ID":"650052726","Ship Date":"4/6/2016","Units Sold":"3902","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"185149.90","Total Cost":"124044.58","Total Profit":"61105.32"},{"Region":"Europe","Country":"Albania","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"5/24/2015","Order ID":"785178124","Ship Date":"7/9/2015","Units Sold":"510","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"222972.00","Total Cost":"134298.30","Total Profit":"88673.70"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/12/2016","Order ID":"579246699","Ship Date":"4/23/2016","Units Sold":"825","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"537248.25","Total Cost":"433092.00","Total Profit":"104156.25"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/22/2011","Order ID":"211994779","Ship Date":"12/11/2011","Units Sold":"2821","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"434603.26","Total Cost":"256513.53","Total Profit":"178089.73"},{"Region":"Europe","Country":"Montenegro","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/1/2015","Order ID":"833471190","Ship Date":"6/3/2015","Units Sold":"1502","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1003741.54","Total Cost":"754815.08","Total Profit":"248926.46"},{"Region":"Asia","Country":"Singapore","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/22/2010","Order ID":"514037263","Ship Date":"2/9/2011","Units Sold":"3904","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"996613.12","Total Cost":"622375.68","Total Profit":"374237.44"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"1/3/2010","Order ID":"994366824","Ship Date":"1/23/2010","Units Sold":"4095","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"194307.75","Total Cost":"130180.05","Total Profit":"64127.70"},{"Region":"Europe","Country":"Georgia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/14/2017","Order ID":"935446202","Ship Date":"8/1/2017","Units Sold":"8174","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1247188.92","Total Cost":"796474.56","Total Profit":"450714.36"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"2/17/2013","Order ID":"868574225","Ship Date":"3/16/2013","Units Sold":"9270","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4052844.00","Total Cost":"2441069.10","Total Profit":"1611774.90"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/24/2015","Order ID":"945362222","Ship Date":"6/10/2015","Units Sold":"2544","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1112236.80","Total Cost":"669911.52","Total Profit":"442325.28"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/17/2017","Order ID":"487734019","Ship Date":"3/5/2017","Units Sold":"190","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"83068.00","Total Cost":"50032.70","Total Profit":"33035.30"},{"Region":"Europe","Country":"Switzerland","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/24/2012","Order ID":"237925946","Ship Date":"10/30/2012","Units Sold":"6430","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"59991.90","Total Cost":"44495.60","Total Profit":"15496.30"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"3/27/2016","Order ID":"108486831","Ship Date":"5/12/2016","Units Sold":"2519","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1062740.91","Total Cost":"918654.11","Total Profit":"144086.80"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"7/19/2012","Order ID":"532278001","Ship Date":"9/6/2012","Units Sold":"1744","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"82752.80","Total Cost":"55441.76","Total Profit":"27311.04"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"2/21/2014","Order ID":"212473285","Ship Date":"3/29/2014","Units Sold":"4421","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2878999.41","Total Cost":"2320848.16","Total Profit":"558151.25"},{"Region":"Europe","Country":"San Marino","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/1/2011","Order ID":"172559010","Ship Date":"11/12/2011","Units Sold":"2901","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"442634.58","Total Cost":"282673.44","Total Profit":"159961.14"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/10/2016","Order ID":"606334006","Ship Date":"6/27/2016","Units Sold":"6561","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1674892.08","Total Cost":"1045954.62","Total Profit":"628937.46"},{"Region":"Europe","Country":"Macedonia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/15/2017","Order ID":"427909600","Ship Date":"2/26/2017","Units Sold":"6815","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4437996.15","Total Cost":"3577602.40","Total Profit":"860393.75"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"6/22/2015","Order ID":"421709620","Ship Date":"7/29/2015","Units Sold":"2103","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"99787.35","Total Cost":"66854.37","Total Profit":"32932.98"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"2/18/2014","Order ID":"992470395","Ship Date":"2/18/2014","Units Sold":"2900","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"442482.00","Total Cost":"282576.00","Total Profit":"159906.00"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"1/15/2013","Order ID":"815240752","Ship Date":"3/6/2013","Units Sold":"6710","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1023811.80","Total Cost":"653822.40","Total Profit":"369989.40"},{"Region":"Europe","Country":"Slovakia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"3/9/2013","Order ID":"885382020","Ship Date":"4/21/2013","Units Sold":"3070","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"783709.60","Total Cost":"489419.40","Total Profit":"294290.20"},{"Region":"Europe","Country":"Moldova ","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/3/2012","Order ID":"468568027","Ship Date":"11/30/2012","Units Sold":"8547","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1304101.26","Total Cost":"832819.68","Total Profit":"471281.58"},{"Region":"Europe","Country":"Portugal","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/8/2011","Order ID":"250785100","Ship Date":"5/21/2011","Units Sold":"1739","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"733666.71","Total Cost":"634195.91","Total Profit":"99470.80"},{"Region":"Europe","Country":"Switzerland","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/23/2012","Order ID":"988332068","Ship Date":"11/23/2012","Units Sold":"8277","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3618704.40","Total Cost":"2179582.41","Total Profit":"1439121.99"},{"Region":"Europe","Country":"Ireland","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/1/2015","Order ID":"357820260","Ship Date":"3/2/2015","Units Sold":"5821","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"636118.88","Total Cost":"208624.64","Total Profit":"427494.24"},{"Region":"Europe","Country":"Andorra","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"2/10/2013","Order ID":"606173503","Ship Date":"2/25/2013","Units Sold":"9065","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5903218.65","Total Cost":"4758762.40","Total Profit":"1144456.25"},{"Region":"Europe","Country":"Belarus","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/4/2010","Order ID":"900628125","Ship Date":"5/11/2010","Units Sold":"4731","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"224485.95","Total Cost":"150398.49","Total Profit":"74087.46"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/19/2015","Order ID":"478732955","Ship Date":"5/17/2015","Units Sold":"6575","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"61344.75","Total Cost":"45499.00","Total Profit":"15845.75"},{"Region":"Europe","Country":"Spain","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"10/11/2014","Order ID":"898349320","Ship Date":"11/25/2014","Units Sold":"382","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"18125.90","Total Cost":"12143.78","Total Profit":"5982.12"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"7/29/2015","Order ID":"187651050","Ship Date":"8/6/2015","Units Sold":"8970","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1368642.60","Total Cost":"874036.80","Total Profit":"494605.80"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"5/25/2010","Order ID":"495124471","Ship Date":"7/3/2010","Units Sold":"7188","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4680897.48","Total Cost":"3773412.48","Total Profit":"907485.00"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/17/2011","Order ID":"439568412","Ship Date":"1/26/2012","Units Sold":"6916","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1065478.96","Total Cost":"628871.88","Total Profit":"436607.08"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"4/25/2011","Order ID":"960094201","Ship Date":"5/24/2011","Units Sold":"2064","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"314925.12","Total Cost":"201116.16","Total Profit":"113808.96"},{"Region":"Europe","Country":"Spain","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"12/10/2011","Order ID":"366125667","Ship Date":"12/25/2011","Units Sold":"3576","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2328726.96","Total Cost":"1877256.96","Total Profit":"451470.00"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"10/24/2010","Order ID":"187399137","Ship Date":"11/10/2010","Units Sold":"4424","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1934172.80","Total Cost":"1164971.92","Total Profit":"769200.88"},{"Region":"Europe","Country":"France","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/28/2017","Order ID":"223963439","Ship Date":"6/10/2017","Units Sold":"4613","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"377020.49","Total Cost":"261418.71","Total Profit":"115601.78"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/23/2011","Order ID":"796179902","Ship Date":"9/6/2011","Units Sold":"6181","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"505173.13","Total Cost":"350277.27","Total Profit":"154895.86"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"8/26/2016","Order ID":"494722354","Ship Date":"10/7/2016","Units Sold":"8193","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"76440.69","Total Cost":"56695.56","Total Profit":"19745.13"},{"Region":"Asia","Country":"Brunei","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/15/2010","Order ID":"230577123","Ship Date":"1/3/2011","Units Sold":"1749","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"737885.61","Total Cost":"637842.81","Total Profit":"100042.80"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"7/12/2015","Order ID":"985043036","Ship Date":"8/27/2015","Units Sold":"4979","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"767064.74","Total Cost":"452740.47","Total Profit":"314324.27"},{"Region":"Europe","Country":"Croatia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"1/17/2015","Order ID":"659731423","Ship Date":"1/24/2015","Units Sold":"8044","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5238333.24","Total Cost":"4222778.24","Total Profit":"1015555.00"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/8/2013","Order ID":"826566112","Ship Date":"12/26/2013","Units Sold":"8135","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"664873.55","Total Cost":"461010.45","Total Profit":"203863.10"},{"Region":"Asia","Country":"Cambodia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"6/11/2017","Order ID":"877783429","Ship Date":"7/24/2017","Units Sold":"4478","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2916118.38","Total Cost":"2350770.88","Total Profit":"565347.50"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"6/9/2013","Order ID":"275932204","Ship Date":"6/15/2013","Units Sold":"3326","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2222666.02","Total Cost":"1671448.04","Total Profit":"551217.98"},{"Region":"Europe","Country":"Macedonia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"3/31/2013","Order ID":"803873765","Ship Date":"4/16/2013","Units Sold":"2966","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1251325.74","Total Cost":"1081670.54","Total Profit":"169655.20"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"5/29/2010","Order ID":"714781939","Ship Date":"7/8/2010","Units Sold":"8715","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5823973.05","Total Cost":"4379636.10","Total Profit":"1444336.95"},{"Region":"Asia","Country":"Maldives","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"9/2/2014","Order ID":"582143056","Ship Date":"9/7/2014","Units Sold":"7922","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1220463.32","Total Cost":"720347.46","Total Profit":"500115.86"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/7/2010","Order ID":"149755942","Ship Date":"6/8/2010","Units Sold":"4966","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"757712.28","Total Cost":"483887.04","Total Profit":"273825.24"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"2/7/2013","Order ID":"581731927","Ship Date":"3/28/2013","Units Sold":"6259","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"58396.47","Total Cost":"43312.28","Total Profit":"15084.19"},{"Region":"Europe","Country":"Montenegro","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"3/4/2013","Order ID":"412494838","Ship Date":"3/30/2013","Units Sold":"5244","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"573064.32","Total Cost":"187944.96","Total Profit":"385119.36"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/25/2016","Order ID":"496781003","Ship Date":"2/10/2017","Units Sold":"7393","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1138965.58","Total Cost":"672245.49","Total Profit":"466720.09"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/10/2013","Order ID":"859639251","Ship Date":"3/13/2013","Units Sold":"5212","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1072108.40","Total Cost":"610377.32","Total Profit":"461731.08"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"11/29/2013","Order ID":"246430909","Ship Date":"12/12/2013","Units Sold":"3237","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2163189.99","Total Cost":"1626721.98","Total Profit":"536468.01"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/13/2013","Order ID":"172829806","Ship Date":"11/28/2013","Units Sold":"3035","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"774774.80","Total Cost":"483839.70","Total Profit":"290935.10"},{"Region":"Asia","Country":"Bhutan","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/9/2016","Order ID":"874822270","Ship Date":"3/3/2016","Units Sold":"8205","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"896642.40","Total Cost":"294067.20","Total Profit":"602575.20"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/16/2013","Order ID":"858707129","Ship Date":"6/26/2013","Units Sold":"9377","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6266367.79","Total Cost":"4712317.58","Total Profit":"1554050.21"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/16/2014","Order ID":"951095712","Ship Date":"1/1/2015","Units Sold":"9211","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1894702.70","Total Cost":"1078700.21","Total Profit":"816002.49"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/15/2011","Order ID":"248911845","Ship Date":"10/28/2011","Units Sold":"7401","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4945866.27","Total Cost":"3719298.54","Total Profit":"1226567.73"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"4/29/2011","Order ID":"169391858","Ship Date":"6/10/2011","Units Sold":"5670","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"619617.60","Total Cost":"203212.80","Total Profit":"416404.80"},{"Region":"Asia","Country":"Cambodia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/31/2010","Order ID":"400084578","Ship Date":"9/30/2010","Units Sold":"2772","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"302924.16","Total Cost":"99348.48","Total Profit":"203575.68"},{"Region":"North America","Country":"Canada","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"7/14/2015","Order ID":"248851335","Ship Date":"7/29/2015","Units Sold":"9495","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6345223.65","Total Cost":"4771617.30","Total Profit":"1573606.35"},{"Region":"Europe","Country":"Slovakia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/15/2013","Order ID":"893865954","Ship Date":"11/13/2013","Units Sold":"3654","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"932793.12","Total Cost":"582520.68","Total Profit":"350272.44"},{"Region":"Asia","Country":"Japan","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/28/2017","Order ID":"433614766","Ship Date":"2/9/2017","Units Sold":"5100","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"416823.00","Total Cost":"289017.00","Total Profit":"127806.00"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/9/2011","Order ID":"636896598","Ship Date":"9/23/2011","Units Sold":"711","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"299963.79","Total Cost":"259294.59","Total Profit":"40669.20"},{"Region":"Asia","Country":"Brunei","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"12/4/2014","Order ID":"192822778","Ship Date":"12/24/2014","Units Sold":"9400","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1027232.00","Total Cost":"336896.00","Total Profit":"690336.00"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/5/2011","Order ID":"560817134","Ship Date":"8/26/2011","Units Sold":"7107","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1461909.90","Total Cost":"832300.77","Total Profit":"629609.13"},{"Region":"Europe","Country":"Slovenia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/4/2017","Order ID":"120615994","Ship Date":"8/14/2017","Units Sold":"1808","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"278540.48","Total Cost":"164401.44","Total Profit":"114139.04"},{"Region":"Europe","Country":"Vatican City","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"7/24/2015","Order ID":"922268187","Ship Date":"8/7/2015","Units Sold":"8506","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"79360.98","Total Cost":"58861.52","Total Profit":"20499.46"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"6/5/2012","Order ID":"136135041","Ship Date":"7/13/2012","Units Sold":"4239","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2760479.19","Total Cost":"2225305.44","Total Profit":"535173.75"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"1/23/2012","Order ID":"402890384","Ship Date":"3/9/2012","Units Sold":"3073","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"473426.38","Total Cost":"279427.89","Total Profit":"193998.49"},{"Region":"Europe","Country":"Montenegro","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"11/26/2011","Order ID":"383520543","Ship Date":"1/2/2012","Units Sold":"1106","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"720238.26","Total Cost":"580605.76","Total Profit":"139632.50"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/3/2014","Order ID":"609324347","Ship Date":"5/20/2014","Units Sold":"1470","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"13715.10","Total Cost":"10172.40","Total Profit":"3542.70"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/25/2014","Order ID":"331913125","Ship Date":"12/21/2014","Units Sold":"9324","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"442423.80","Total Cost":"296409.96","Total Profit":"146013.84"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/25/2014","Order ID":"673210704","Ship Date":"7/6/2014","Units Sold":"6862","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"749879.36","Total Cost":"245934.08","Total Profit":"503945.28"},{"Region":"Europe","Country":"Austria","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/14/2014","Order ID":"575453412","Ship Date":"9/20/2014","Units Sold":"8307","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"394167.15","Total Cost":"264079.53","Total Profit":"130087.62"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"7/19/2014","Order ID":"851190078","Ship Date":"9/6/2014","Units Sold":"4914","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2073167.46","Total Cost":"1792086.66","Total Profit":"281080.80"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"1/23/2014","Order ID":"133282029","Ship Date":"3/6/2014","Units Sold":"9969","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6491912.49","Total Cost":"5233326.24","Total Profit":"1258586.25"},{"Region":"North America","Country":"Mexico","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/29/2010","Order ID":"724903094","Ship Date":"8/25/2010","Units Sold":"3789","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"414061.92","Total Cost":"135797.76","Total Profit":"278264.16"},{"Region":"Europe","Country":"Netherlands","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/18/2010","Order ID":"949539601","Ship Date":"1/26/2010","Units Sold":"8724","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1794526.80","Total Cost":"1021667.64","Total Profit":"772859.16"},{"Region":"Europe","Country":"France","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/24/2015","Order ID":"100990378","Ship Date":"10/22/2015","Units Sold":"4152","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2703823.92","Total Cost":"2179633.92","Total Profit":"524190.00"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"10/10/2016","Order ID":"693366754","Ship Date":"11/23/2016","Units Sold":"1485","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"228779.10","Total Cost":"135031.05","Total Profit":"93748.05"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/10/2014","Order ID":"811092555","Ship Date":"11/28/2014","Units Sold":"9166","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5968990.86","Total Cost":"4811783.36","Total Profit":"1157207.50"},{"Region":"Europe","Country":"Cyprus","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"5/18/2012","Order ID":"858904111","Ship Date":"7/7/2012","Units Sold":"7668","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3352449.60","Total Cost":"2019214.44","Total Profit":"1333235.16"},{"Region":"Europe","Country":"Portugal","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"2/2/2017","Order ID":"411850249","Ship Date":"3/18/2017","Units Sold":"4496","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1965651.20","Total Cost":"1183931.68","Total Profit":"781719.52"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"10/4/2014","Order ID":"465292298","Ship Date":"11/13/2014","Units Sold":"9186","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6138728.22","Total Cost":"4616332.44","Total Profit":"1522395.78"},{"Region":"Europe","Country":"Iceland","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"3/24/2011","Order ID":"284904086","Ship Date":"4/28/2011","Units Sold":"8305","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2120100.40","Total Cost":"1323983.10","Total Profit":"796117.30"},{"Region":"Europe","Country":"Croatia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"5/30/2013","Order ID":"556671941","Ship Date":"7/8/2013","Units Sold":"453","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"294998.13","Total Cost":"237806.88","Total Profit":"57191.25"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"5/8/2010","Order ID":"236894690","Ship Date":"5/10/2010","Units Sold":"1258","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"321142.24","Total Cost":"200550.36","Total Profit":"120591.88"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/15/2014","Order ID":"602183663","Ship Date":"12/22/2014","Units Sold":"8383","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"916094.24","Total Cost":"300446.72","Total Profit":"615647.52"},{"Region":"Europe","Country":"Austria","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/14/2014","Order ID":"299462687","Ship Date":"6/26/2014","Units Sold":"6519","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"994669.02","Total Cost":"635211.36","Total Profit":"359457.66"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/6/2012","Order ID":"295968091","Ship Date":"7/11/2012","Units Sold":"2390","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"113405.50","Total Cost":"75978.10","Total Profit":"37427.40"},{"Region":"Europe","Country":"Kosovo","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/6/2017","Order ID":"729248702","Ship Date":"7/19/2017","Units Sold":"9751","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2489235.28","Total Cost":"1554504.42","Total Profit":"934730.86"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/29/2016","Order ID":"457165849","Ship Date":"7/13/2016","Units Sold":"4389","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"479629.92","Total Cost":"157301.76","Total Profit":"322328.16"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"11/29/2015","Order ID":"207893359","Ship Date":"12/31/2015","Units Sold":"9120","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"432744.00","Total Cost":"289924.80","Total Profit":"142819.20"},{"Region":"Europe","Country":"Belarus","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"4/21/2016","Order ID":"329917562","Ship Date":"6/3/2016","Units Sold":"8793","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2244677.04","Total Cost":"1401780.06","Total Profit":"842896.98"},{"Region":"Asia","Country":"Cambodia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/25/2015","Order ID":"342037284","Ship Date":"3/29/2015","Units Sold":"5288","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"432188.24","Total Cost":"299670.96","Total Profit":"132517.28"},{"Region":"North America","Country":"Canada","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/31/2011","Order ID":"283363854","Ship Date":"2/18/2011","Units Sold":"2516","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"119384.20","Total Cost":"79983.64","Total Profit":"39400.56"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"2/24/2015","Order ID":"263321101","Ship Date":"3/4/2015","Units Sold":"1420","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"948943.40","Total Cost":"713606.80","Total Profit":"235336.60"},{"Region":"Asia","Country":"Myanmar","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"9/30/2016","Order ID":"911645352","Ship Date":"10/22/2016","Units Sold":"4973","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"758780.34","Total Cost":"484569.12","Total Profit":"274211.22"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"2/17/2010","Order ID":"228385436","Ship Date":"3/7/2010","Units Sold":"3181","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"347619.68","Total Cost":"114007.04","Total Profit":"233612.64"},{"Region":"Europe","Country":"Albania","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/1/2013","Order ID":"333902680","Ship Date":"5/19/2013","Units Sold":"8078","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3408027.42","Total Cost":"2945965.82","Total Profit":"462061.60"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"5/16/2011","Order ID":"718870913","Ship Date":"6/16/2011","Units Sold":"8733","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3818067.60","Total Cost":"2299660.89","Total Profit":"1518406.71"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"1/19/2013","Order ID":"494276463","Ship Date":"2/19/2013","Units Sold":"6244","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4172677.88","Total Cost":"3137859.76","Total Profit":"1034818.12"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"11/19/2016","Order ID":"641418159","Ship Date":"12/18/2016","Units Sold":"8742","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"414807.90","Total Cost":"277908.18","Total Profit":"136899.72"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"11/15/2014","Order ID":"861907327","Ship Date":"11/15/2014","Units Sold":"6386","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4267572.22","Total Cost":"3209220.44","Total Profit":"1058351.78"},{"Region":"Asia","Country":"Mongolia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"6/11/2011","Order ID":"927667796","Ship Date":"6/18/2011","Units Sold":"6371","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"696222.88","Total Cost":"228336.64","Total Profit":"467886.24"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"1/30/2012","Order ID":"230935895","Ship Date":"2/26/2012","Units Sold":"7918","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"865279.04","Total Cost":"283781.12","Total Profit":"581497.92"},{"Region":"Europe","Country":"Moldova ","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/27/2011","Order ID":"934260451","Ship Date":"1/19/2012","Units Sold":"7284","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"67959.72","Total Cost":"50405.28","Total Profit":"17554.44"},{"Region":"Asia","Country":"Brunei","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/30/2014","Order ID":"320502793","Ship Date":"1/23/2015","Units Sold":"2754","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1840415.58","Total Cost":"1383995.16","Total Profit":"456420.42"},{"Region":"Asia","Country":"Philippines","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/25/2014","Order ID":"242836749","Ship Date":"10/10/2014","Units Sold":"9645","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"788285.85","Total Cost":"546582.15","Total Profit":"241703.70"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/13/2013","Order ID":"374748647","Ship Date":"3/2/2013","Units Sold":"5307","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2320220.40","Total Cost":"1397492.31","Total Profit":"922728.09"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/11/2017","Order ID":"460037314","Ship Date":"6/17/2017","Units Sold":"4119","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"628477.02","Total Cost":"401355.36","Total Profit":"227121.66"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/28/2012","Order ID":"762814080","Ship Date":"2/12/2013","Units Sold":"2493","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1665997.11","Total Cost":"1252832.22","Total Profit":"413164.89"},{"Region":"Europe","Country":"France","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"9/16/2012","Order ID":"717502772","Ship Date":"9/18/2012","Units Sold":"3870","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"590484.60","Total Cost":"377092.80","Total Profit":"213391.80"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"6/20/2015","Order ID":"278839719","Ship Date":"6/29/2015","Units Sold":"3724","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"573719.44","Total Cost":"338623.32","Total Profit":"235096.12"},{"Region":"Asia","Country":"Indonesia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/26/2017","Order ID":"371873748","Ship Date":"7/4/2017","Units Sold":"4561","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"938197.70","Total Cost":"534138.71","Total Profit":"404058.99"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"9/21/2015","Order ID":"641966187","Ship Date":"10/14/2015","Units Sold":"916","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"43464.20","Total Cost":"29119.64","Total Profit":"14344.56"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"6/28/2012","Order ID":"804790866","Ship Date":"8/3/2012","Units Sold":"4356","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"664638.48","Total Cost":"424448.64","Total Profit":"240189.84"},{"Region":"Europe","Country":"Kosovo","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"10/31/2010","Order ID":"196334111","Ship Date":"11/12/2010","Units Sold":"8481","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"79127.73","Total Cost":"58688.52","Total Profit":"20439.21"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"2/23/2011","Order ID":"922894752","Ship Date":"3/22/2011","Units Sold":"3921","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"806549.70","Total Cost":"459188.31","Total Profit":"347361.39"},{"Region":"Europe","Country":"Germany","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/26/2014","Order ID":"211084115","Ship Date":"12/11/2014","Units Sold":"3335","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2228680.45","Total Cost":"1675970.90","Total Profit":"552709.55"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/12/2013","Order ID":"757826030","Ship Date":"4/17/2013","Units Sold":"6418","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4288956.86","Total Cost":"3225301.72","Total Profit":"1063655.14"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"8/26/2013","Order ID":"380356824","Ship Date":"9/29/2013","Units Sold":"4891","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"753507.46","Total Cost":"444738.63","Total Profit":"308768.83"},{"Region":"Asia","Country":"Indonesia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/12/2013","Order ID":"566225326","Ship Date":"3/12/2013","Units Sold":"7511","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1545012.70","Total Cost":"879613.21","Total Profit":"665399.49"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/26/2017","Order ID":"623292863","Ship Date":"6/25/2017","Units Sold":"5064","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2213980.80","Total Cost":"1333503.12","Total Profit":"880477.68"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"5/13/2014","Order ID":"829733264","Ship Date":"5/29/2014","Units Sold":"5366","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3585936.82","Total Cost":"2696629.64","Total Profit":"889307.18"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"8/25/2015","Order ID":"184032857","Ship Date":"9/25/2015","Units Sold":"8267","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5524588.09","Total Cost":"4154498.18","Total Profit":"1370089.91"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"1/12/2015","Order ID":"454990470","Ship Date":"1/13/2015","Units Sold":"646","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"99522.76","Total Cost":"58740.78","Total Profit":"40781.98"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"12/6/2014","Order ID":"331717431","Ship Date":"12/30/2014","Units Sold":"1414","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"596552.46","Total Cost":"515671.66","Total Profit":"80880.80"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/14/2015","Order ID":"373637568","Ship Date":"2/12/2015","Units Sold":"6514","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1662893.92","Total Cost":"1038461.88","Total Profit":"624432.04"},{"Region":"Europe","Country":"Norway","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"2/9/2016","Order ID":"760487210","Ship Date":"2/20/2016","Units Sold":"3920","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"320381.60","Total Cost":"222146.40","Total Profit":"98235.20"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/6/2016","Order ID":"842315185","Ship Date":"3/10/2016","Units Sold":"8636","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1776425.20","Total Cost":"1011361.96","Total Profit":"765063.24"},{"Region":"Europe","Country":"Vatican City","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/10/2014","Order ID":"489482820","Ship Date":"5/15/2014","Units Sold":"7699","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"365317.55","Total Cost":"244751.21","Total Profit":"120566.34"},{"Region":"Europe","Country":"Lithuania","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"8/2/2014","Order ID":"542663943","Ship Date":"9/20/2014","Units Sold":"5175","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"245553.75","Total Cost":"164513.25","Total Profit":"81040.50"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/27/2014","Order ID":"562844884","Ship Date":"5/30/2014","Units Sold":"7164","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"66840.12","Total Cost":"49574.88","Total Profit":"17265.24"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"11/7/2015","Order ID":"181324470","Ship Date":"12/22/2015","Units Sold":"6795","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4424971.95","Total Cost":"3567103.20","Total Profit":"857868.75"},{"Region":"Europe","Country":"Montenegro","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/18/2014","Order ID":"449714028","Ship Date":"1/20/2015","Units Sold":"9229","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1008545.12","Total Cost":"330767.36","Total Profit":"677777.76"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"4/21/2012","Order ID":"689937388","Ship Date":"5/27/2012","Units Sold":"6660","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"544321.80","Total Cost":"377422.20","Total Profit":"166899.60"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"2/23/2017","Order ID":"744230878","Ship Date":"2/27/2017","Units Sold":"3310","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"505039.80","Total Cost":"322526.40","Total Profit":"182513.40"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/1/2013","Order ID":"525143325","Ship Date":"5/30/2013","Units Sold":"435","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"47536.80","Total Cost":"15590.40","Total Profit":"31946.40"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"1/19/2016","Order ID":"465536057","Ship Date":"2/1/2016","Units Sold":"1319","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"576666.80","Total Cost":"347332.27","Total Profit":"229334.53"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"1/20/2015","Order ID":"168582904","Ship Date":"3/7/2015","Units Sold":"6282","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"58611.06","Total Cost":"43471.44","Total Profit":"15139.62"},{"Region":"Europe","Country":"San Marino","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/23/2016","Order ID":"657770192","Ship Date":"5/26/2016","Units Sold":"7672","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"627032.56","Total Cost":"434772.24","Total Profit":"192260.32"},{"Region":"Europe","Country":"Montenegro","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/28/2015","Order ID":"326896750","Ship Date":"7/15/2015","Units Sold":"4868","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1001347.60","Total Cost":"570091.48","Total Profit":"431256.12"},{"Region":"Europe","Country":"Slovenia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/24/2016","Order ID":"790073907","Ship Date":"11/28/2016","Units Sold":"9281","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1429830.86","Total Cost":"843921.33","Total Profit":"585909.53"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/20/2014","Order ID":"131725490","Ship Date":"8/27/2014","Units Sold":"9354","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1924117.80","Total Cost":"1095446.94","Total Profit":"828670.86"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/5/2011","Order ID":"556587827","Ship Date":"3/4/2011","Units Sold":"5561","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3716249.47","Total Cost":"2794624.94","Total Profit":"921624.53"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"1/15/2014","Order ID":"739709746","Ship Date":"1/30/2014","Units Sold":"5407","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"590876.96","Total Cost":"193786.88","Total Profit":"397090.08"},{"Region":"Europe","Country":"Montenegro","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"10/20/2016","Order ID":"776452577","Ship Date":"11/3/2016","Units Sold":"8427","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3555267.03","Total Cost":"3073242.63","Total Profit":"482024.40"},{"Region":"Europe","Country":"Ireland","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"2/1/2010","Order ID":"832490146","Ship Date":"2/21/2010","Units Sold":"1189","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"774288.69","Total Cost":"624177.44","Total Profit":"150111.25"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/11/2015","Order ID":"693808782","Ship Date":"1/23/2016","Units Sold":"2291","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"966549.99","Total Cost":"835504.79","Total Profit":"131045.20"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"11/6/2015","Order ID":"216707313","Ship Date":"12/9/2015","Units Sold":"7364","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1879881.92","Total Cost":"1173968.88","Total Profit":"705913.04"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/20/2015","Order ID":"677797067","Ship Date":"1/21/2015","Units Sold":"4069","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"193074.05","Total Cost":"129353.51","Total Profit":"63720.54"},{"Region":"Europe","Country":"Greece","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"2/4/2016","Order ID":"724001872","Ship Date":"3/24/2016","Units Sold":"7098","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1093517.88","Total Cost":"645421.14","Total Profit":"448096.74"},{"Region":"Europe","Country":"Netherlands","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"12/29/2014","Order ID":"422558057","Ship Date":"2/7/2015","Units Sold":"3174","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"652891.80","Total Cost":"371707.14","Total Profit":"281184.66"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/17/2012","Order ID":"811014449","Ship Date":"9/12/2012","Units Sold":"6053","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1545209.84","Total Cost":"964969.26","Total Profit":"580240.58"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/10/2010","Order ID":"747232377","Ship Date":"1/1/2011","Units Sold":"1520","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"166105.60","Total Cost":"54476.80","Total Profit":"111628.80"},{"Region":"Asia","Country":"North Korea","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"9/20/2016","Order ID":"959385669","Ship Date":"10/23/2016","Units Sold":"2394","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1046656.80","Total Cost":"630412.02","Total Profit":"416244.78"},{"Region":"Asia","Country":"Nepal","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"2/10/2015","Order ID":"895960652","Ship Date":"3/7/2015","Units Sold":"3522","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"384884.16","Total Cost":"126228.48","Total Profit":"258655.68"},{"Region":"Europe","Country":"Ireland","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/31/2011","Order ID":"975756156","Ship Date":"4/3/2011","Units Sold":"6785","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1732074.80","Total Cost":"1081664.70","Total Profit":"650410.10"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/29/2011","Order ID":"337883508","Ship Date":"6/4/2011","Units Sold":"6093","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"938687.58","Total Cost":"554036.49","Total Profit":"384651.09"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"4/4/2011","Order ID":"891766536","Ship Date":"5/5/2011","Units Sold":"2390","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1044908.00","Total Cost":"629358.70","Total Profit":"415549.30"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/2/2015","Order ID":"567141568","Ship Date":"8/8/2015","Units Sold":"8648","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5779198.96","Total Cost":"4345965.92","Total Profit":"1433233.04"},{"Region":"Central America and the Caribbean","Country":"Saint Lucia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/26/2010","Order ID":"964057433","Ship Date":"1/17/2011","Units Sold":"4873","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2130475.60","Total Cost":"1283207.09","Total Profit":"847268.51"},{"Region":"North America","Country":"United States of America","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"7/1/2015","Order ID":"602875459","Ship Date":"8/20/2015","Units Sold":"3100","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2071637.00","Total Cost":"1557874.00","Total Profit":"513763.00"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/18/2014","Order ID":"774269473","Ship Date":"4/8/2014","Units Sold":"2398","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"369435.88","Total Cost":"218050.14","Total Profit":"151385.74"},{"Region":"Europe","Country":"Croatia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"9/15/2015","Order ID":"589225804","Ship Date":"10/27/2015","Units Sold":"3864","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"794824.80","Total Cost":"452513.04","Total Profit":"342311.76"},{"Region":"Asia","Country":"Thailand","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/22/2011","Order ID":"129043281","Ship Date":"4/5/2011","Units Sold":"5629","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"615137.12","Total Cost":"201743.36","Total Profit":"413393.76"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/5/2015","Order ID":"895333230","Ship Date":"3/26/2015","Units Sold":"7854","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3433768.80","Total Cost":"2068193.82","Total Profit":"1365574.98"},{"Region":"Europe","Country":"Malta","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"1/27/2017","Order ID":"860019481","Ship Date":"3/14/2017","Units Sold":"7731","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3379993.20","Total Cost":"2035804.23","Total Profit":"1344188.97"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/6/2014","Order ID":"315338361","Ship Date":"11/15/2014","Units Sold":"4483","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1959967.60","Total Cost":"1180508.39","Total Profit":"779459.21"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"1/3/2011","Order ID":"523838698","Ship Date":"1/21/2011","Units Sold":"4367","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1114807.76","Total Cost":"696187.14","Total Profit":"418620.62"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/21/2017","Order ID":"568381822","Ship Date":"3/30/2017","Units Sold":"5667","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1446671.76","Total Cost":"903433.14","Total Profit":"543238.62"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"10/17/2011","Order ID":"502141559","Ship Date":"11/15/2011","Units Sold":"3701","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2473267.27","Total Cost":"1859900.54","Total Profit":"613366.73"},{"Region":"Asia","Country":"Vietnam","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/18/2012","Order ID":"898604238","Ship Date":"1/24/2012","Units Sold":"5818","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"54281.94","Total Cost":"40260.56","Total Profit":"14021.38"},{"Region":"Europe","Country":"Kosovo","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"6/10/2017","Order ID":"601568686","Ship Date":"6/19/2017","Units Sold":"6397","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1315862.90","Total Cost":"749152.67","Total Profit":"566710.23"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"5/8/2013","Order ID":"775146234","Ship Date":"5/28/2013","Units Sold":"1851","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"285165.06","Total Cost":"168311.43","Total Profit":"116853.63"},{"Region":"Europe","Country":"Cyprus","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"9/21/2012","Order ID":"853760707","Ship Date":"9/27/2012","Units Sold":"5620","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1156034.00","Total Cost":"658158.20","Total Profit":"497875.80"},{"Region":"Asia","Country":"South Korea","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/3/2014","Order ID":"792148435","Ship Date":"6/3/2014","Units Sold":"3180","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2070847.80","Total Cost":"1669372.80","Total Profit":"401475.00"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"8/3/2014","Order ID":"615358245","Ship Date":"8/28/2014","Units Sold":"7034","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"65627.22","Total Cost":"48675.28","Total Profit":"16951.94"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/7/2010","Order ID":"868751466","Ship Date":"6/19/2010","Units Sold":"1719","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1119429.99","Total Cost":"902406.24","Total Profit":"217023.75"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/2/2011","Order ID":"368001925","Ship Date":"9/7/2011","Units Sold":"8802","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"961882.56","Total Cost":"315463.68","Total Profit":"646418.88"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"8/8/2013","Order ID":"249095952","Ship Date":"9/7/2013","Units Sold":"1883","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"480692.24","Total Cost":"300187.86","Total Profit":"180504.38"},{"Region":"Europe","Country":"Macedonia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/18/2016","Order ID":"818332374","Ship Date":"12/9/2016","Units Sold":"1589","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"173645.92","Total Cost":"56949.76","Total Profit":"116696.16"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"4/28/2015","Order ID":"202322518","Ship Date":"6/11/2015","Units Sold":"584","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"246383.76","Total Cost":"212978.96","Total Profit":"33404.80"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"3/30/2015","Order ID":"197990214","Ship Date":"4/24/2015","Units Sold":"8559","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1305932.22","Total Cost":"833988.96","Total Profit":"471943.26"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"6/14/2016","Order ID":"422571790","Ship Date":"6/17/2016","Units Sold":"7238","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1488856.60","Total Cost":"847642.18","Total Profit":"641214.42"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/17/2016","Order ID":"563616073","Ship Date":"1/22/2016","Units Sold":"5376","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3592619.52","Total Cost":"2701655.04","Total Profit":"890964.48"},{"Region":"Europe","Country":"Croatia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"3/3/2012","Order ID":"828984391","Ship Date":"3/25/2012","Units Sold":"3758","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"410674.24","Total Cost":"134686.72","Total Profit":"275987.52"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/31/2015","Order ID":"596850574","Ship Date":"7/2/2015","Units Sold":"203","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"85643.67","Total Cost":"74032.07","Total Profit":"11611.60"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"9/10/2014","Order ID":"665700948","Ship Date":"10/7/2014","Units Sold":"4559","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1163821.52","Total Cost":"726795.78","Total Profit":"437025.74"},{"Region":"Europe","Country":"Portugal","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/13/2011","Order ID":"104334342","Ship Date":"6/19/2011","Units Sold":"3705","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2412733.05","Total Cost":"1944976.80","Total Profit":"467756.25"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"5/30/2015","Order ID":"301862084","Ship Date":"6/4/2015","Units Sold":"6554","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4268030.34","Total Cost":"3440587.84","Total Profit":"827442.50"},{"Region":"Asia","Country":"Singapore","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/19/2011","Order ID":"917708003","Ship Date":"6/2/2011","Units Sold":"9046","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1860762.20","Total Cost":"1059377.06","Total Profit":"801385.14"},{"Region":"Europe","Country":"Russia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/7/2015","Order ID":"331608426","Ship Date":"3/16/2015","Units Sold":"9157","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2337598.96","Total Cost":"1459808.94","Total Profit":"877790.02"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/9/2017","Order ID":"593612182","Ship Date":"5/1/2017","Units Sold":"1891","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"388978.70","Total Cost":"221455.01","Total Profit":"167523.69"},{"Region":"Europe","Country":"Denmark","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"10/3/2016","Order ID":"674080598","Ship Date":"10/4/2016","Units Sold":"4283","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"468046.24","Total Cost":"153502.72","Total Profit":"314543.52"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"1/5/2010","Order ID":"513687503","Ship Date":"2/4/2010","Units Sold":"402","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"268644.54","Total Cost":"202021.08","Total Profit":"66623.46"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/17/2017","Order ID":"573419225","Ship Date":"3/25/2017","Units Sold":"6346","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2774471.20","Total Cost":"1671092.18","Total Profit":"1103379.02"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/6/2010","Order ID":"484574592","Ship Date":"5/26/2010","Units Sold":"5245","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"800282.10","Total Cost":"511072.80","Total Profit":"289209.30"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/3/2015","Order ID":"398764932","Ship Date":"7/20/2015","Units Sold":"2260","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"344830.80","Total Cost":"220214.40","Total Profit":"124616.40"},{"Region":"Europe","Country":"Slovenia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"8/8/2010","Order ID":"537914073","Ship Date":"9/15/2010","Units Sold":"9583","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4042971.87","Total Cost":"3494824.27","Total Profit":"548147.60"},{"Region":"Asia","Country":"Indonesia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/29/2012","Order ID":"744258344","Ship Date":"7/30/2012","Units Sold":"1438","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"219410.04","Total Cost":"140118.72","Total Profit":"79291.32"},{"Region":"North America","Country":"Mexico","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/3/2012","Order ID":"930346572","Ship Date":"9/11/2012","Units Sold":"9080","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1867756.00","Total Cost":"1063358.80","Total Profit":"804397.20"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"12/8/2010","Order ID":"629040086","Ship Date":"12/20/2010","Units Sold":"5795","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1192031.50","Total Cost":"678652.45","Total Profit":"513379.05"},{"Region":"Europe","Country":"Germany","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"6/7/2012","Order ID":"343512713","Ship Date":"7/21/2012","Units Sold":"1900","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"289902.00","Total Cost":"185136.00","Total Profit":"104766.00"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/22/2015","Order ID":"197250783","Ship Date":"7/29/2015","Units Sold":"9745","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4260514.00","Total Cost":"2566150.85","Total Profit":"1694363.15"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"9/22/2015","Order ID":"384053122","Ship Date":"10/26/2015","Units Sold":"8708","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"413194.60","Total Cost":"276827.32","Total Profit":"136367.28"},{"Region":"Asia","Country":"Tajikistan","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"6/30/2017","Order ID":"718031060","Ship Date":"8/12/2017","Units Sold":"202","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"16509.46","Total Cost":"11447.34","Total Profit":"5062.12"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"10/19/2014","Order ID":"183608424","Ship Date":"10/25/2014","Units Sold":"2668","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"126596.60","Total Cost":"84815.72","Total Profit":"41780.88"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/16/2010","Order ID":"985521543","Ship Date":"5/18/2010","Units Sold":"6580","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4284961.80","Total Cost":"3454236.80","Total Profit":"830725.00"},{"Region":"Europe","Country":"France","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"6/19/2011","Order ID":"898819243","Ship Date":"7/5/2011","Units Sold":"9443","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"771776.39","Total Cost":"535134.81","Total Profit":"236641.58"},{"Region":"Asia","Country":"Brunei","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"10/2/2011","Order ID":"918862855","Ship Date":"10/19/2011","Units Sold":"793","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"64811.89","Total Cost":"44939.31","Total Profit":"19872.58"},{"Region":"Europe","Country":"Poland","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"12/28/2016","Order ID":"311326205","Ship Date":"1/30/2017","Units Sold":"7197","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1837250.16","Total Cost":"1147345.74","Total Profit":"689904.42"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/19/2011","Order ID":"662195622","Ship Date":"6/13/2011","Units Sold":"7255","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"792826.40","Total Cost":"260019.20","Total Profit":"532807.20"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/1/2014","Order ID":"927769935","Ship Date":"5/12/2014","Units Sold":"6596","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"61540.68","Total Cost":"45644.32","Total Profit":"15896.36"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/17/2015","Order ID":"584660470","Ship Date":"10/31/2015","Units Sold":"2880","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"443692.80","Total Cost":"261878.40","Total Profit":"181814.40"},{"Region":"Europe","Country":"Sweden","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/21/2010","Order ID":"979791057","Ship Date":"10/24/2010","Units Sold":"802","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"164971.40","Total Cost":"93922.22","Total Profit":"71049.18"},{"Region":"Asia","Country":"Taiwan","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"6/16/2010","Order ID":"380398023","Ship Date":"7/9/2010","Units Sold":"7083","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4612520.43","Total Cost":"3718291.68","Total Profit":"894228.75"},{"Region":"North America","Country":"United States of America","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/16/2015","Order ID":"724030196","Ship Date":"11/2/2015","Units Sold":"5479","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2395418.80","Total Cost":"1442785.07","Total Profit":"952633.73"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"7/8/2013","Order ID":"868548905","Ship Date":"8/6/2013","Units Sold":"1777","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"453632.56","Total Cost":"283289.34","Total Profit":"170343.22"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/7/2010","Order ID":"642127978","Ship Date":"6/19/2010","Units Sold":"8793","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5876098.11","Total Cost":"4418834.22","Total Profit":"1457263.89"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"5/23/2014","Order ID":"393253743","Ship Date":"6/28/2014","Units Sold":"1376","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"919539.52","Total Cost":"691495.04","Total Profit":"228044.48"},{"Region":"Sub-Saharan Africa","Country":"Mali","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/20/2015","Order ID":"540725028","Ship Date":"5/22/2015","Units Sold":"1407","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"114994.11","Total Cost":"79734.69","Total Profit":"35259.42"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/15/2012","Order ID":"223653161","Ship Date":"2/16/2012","Units Sold":"2795","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"426461.10","Total Cost":"272344.80","Total Profit":"154116.30"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"5/30/2015","Order ID":"451461970","Ship Date":"6/30/2015","Units Sold":"6484","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"708571.52","Total Cost":"232386.56","Total Profit":"476184.96"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/23/2014","Order ID":"953887784","Ship Date":"12/11/2014","Units Sold":"5448","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3640734.96","Total Cost":"2737837.92","Total Profit":"902897.04"},{"Region":"Europe","Country":"Italy","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"4/25/2012","Order ID":"630979430","Ship Date":"4/29/2012","Units Sold":"9690","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1058923.20","Total Cost":"347289.60","Total Profit":"711633.60"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"7/24/2010","Order ID":"703098237","Ship Date":"8/2/2010","Units Sold":"1248","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"318589.44","Total Cost":"198956.16","Total Profit":"119633.28"},{"Region":"Europe","Country":"Ukraine","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"5/15/2017","Order ID":"660918033","Ship Date":"6/28/2017","Units Sold":"9188","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1004064.64","Total Cost":"329297.92","Total Profit":"674766.72"},{"Region":"Asia","Country":"South Korea","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"4/4/2011","Order ID":"515425145","Ship Date":"5/5/2011","Units Sold":"4609","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3080056.43","Total Cost":"2316206.86","Total Profit":"763849.57"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/13/2013","Order ID":"347918403","Ship Date":"7/15/2013","Units Sold":"5642","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"616557.76","Total Cost":"202209.28","Total Profit":"414348.48"},{"Region":"Europe","Country":"Poland","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/13/2015","Order ID":"760009133","Ship Date":"1/3/2016","Units Sold":"2446","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"373210.68","Total Cost":"238338.24","Total Profit":"134872.44"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"8/10/2015","Order ID":"623621165","Ship Date":"8/21/2015","Units Sold":"2216","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1480886.32","Total Cost":"1113628.64","Total Profit":"367257.68"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/6/2010","Order ID":"230990827","Ship Date":"6/5/2010","Units Sold":"4174","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"636868.92","Total Cost":"406714.56","Total Profit":"230154.36"},{"Region":"Asia","Country":"Taiwan","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"7/3/2010","Order ID":"844666945","Ship Date":"8/13/2010","Units Sold":"4574","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1167650.72","Total Cost":"729187.08","Total Profit":"438463.64"},{"Region":"Europe","Country":"Kosovo","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"5/5/2012","Order ID":"647510850","Ship Date":"5/27/2012","Units Sold":"1704","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"718900.56","Total Cost":"621431.76","Total Profit":"97468.80"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/24/2016","Order ID":"592696368","Ship Date":"2/2/2017","Units Sold":"881","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"41803.45","Total Cost":"28006.99","Total Profit":"13796.46"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/12/2011","Order ID":"353709828","Ship Date":"7/6/2011","Units Sold":"9453","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6155888.13","Total Cost":"4962446.88","Total Profit":"1193441.25"},{"Region":"Asia","Country":"Maldives","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/4/2010","Order ID":"574350059","Ship Date":"6/14/2010","Units Sold":"1801","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"759823.89","Total Cost":"656806.69","Total Profit":"103017.20"},{"Region":"Asia","Country":"Mongolia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/9/2014","Order ID":"618728387","Ship Date":"3/31/2014","Units Sold":"4334","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1894824.80","Total Cost":"1141272.22","Total Profit":"753552.58"},{"Region":"Europe","Country":"Germany","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/17/2013","Order ID":"821268641","Ship Date":"4/24/2013","Units Sold":"496","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"40538.08","Total Cost":"28108.32","Total Profit":"12429.76"},{"Region":"Europe","Country":"Iceland","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/6/2013","Order ID":"236707150","Ship Date":"11/26/2013","Units Sold":"5761","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"629562.08","Total Cost":"206474.24","Total Profit":"423087.84"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"3/31/2012","Order ID":"690092742","Ship Date":"5/9/2012","Units Sold":"2633","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"215195.09","Total Cost":"149212.11","Total Profit":"65982.98"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/9/2013","Order ID":"926786744","Ship Date":"4/7/2013","Units Sold":"5648","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1161793.60","Total Cost":"661437.28","Total Profit":"500356.32"},{"Region":"Europe","Country":"Kosovo","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"2/26/2011","Order ID":"662462985","Ship Date":"3/11/2011","Units Sold":"6374","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"302446.30","Total Cost":"202629.46","Total Profit":"99816.84"},{"Region":"Europe","Country":"France","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/5/2016","Order ID":"133107793","Ship Date":"12/1/2016","Units Sold":"8409","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1283045.22","Total Cost":"819372.96","Total Profit":"463672.26"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"7/9/2015","Order ID":"545019996","Ship Date":"8/21/2015","Units Sold":"2383","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1005363.87","Total Cost":"869056.27","Total Profit":"136307.60"},{"Region":"Europe","Country":"Ireland","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"3/19/2016","Order ID":"924810922","Ship Date":"5/8/2016","Units Sold":"958","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"623859.18","Total Cost":"502911.68","Total Profit":"120947.50"},{"Region":"Europe","Country":"Romania","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"2/9/2010","Order ID":"369404399","Ship Date":"3/4/2010","Units Sold":"3825","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1672290.00","Total Cost":"1007237.25","Total Profit":"665052.75"},{"Region":"Asia","Country":"Philippines","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"2/26/2012","Order ID":"296036756","Ship Date":"2/26/2012","Units Sold":"2709","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"557241.30","Total Cost":"317250.99","Total Profit":"239990.31"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/14/2011","Order ID":"392256820","Ship Date":"11/24/2011","Units Sold":"6365","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4144951.65","Total Cost":"3341370.40","Total Profit":"803581.25"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/26/2014","Order ID":"865925920","Ship Date":"2/7/2015","Units Sold":"5577","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2352880.53","Total Cost":"2033876.13","Total Profit":"319004.40"},{"Region":"Asia","Country":"Bhutan","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/6/2016","Order ID":"195217883","Ship Date":"12/31/2016","Units Sold":"8165","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"667325.45","Total Cost":"462710.55","Total Profit":"204614.90"},{"Region":"Asia","Country":"Indonesia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/17/2014","Order ID":"978619039","Ship Date":"3/18/2014","Units Sold":"3975","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"324876.75","Total Cost":"225263.25","Total Profit":"99613.50"},{"Region":"Europe","Country":"Macedonia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"9/27/2015","Order ID":"484928214","Ship Date":"11/16/2015","Units Sold":"9890","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"808309.70","Total Cost":"560466.30","Total Profit":"247843.40"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/11/2016","Order ID":"103256738","Ship Date":"5/26/2016","Units Sold":"4818","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2032666.02","Total Cost":"1757076.42","Total Profit":"275589.60"},{"Region":"Europe","Country":"Lithuania","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/9/2015","Order ID":"393028438","Ship Date":"11/7/2015","Units Sold":"4704","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"724698.24","Total Cost":"427734.72","Total Profit":"296963.52"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"9/22/2014","Order ID":"633979642","Ship Date":"10/27/2014","Units Sold":"7519","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"614527.87","Total Cost":"426101.73","Total Profit":"188426.14"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"4/7/2011","Order ID":"176159179","Ship Date":"4/25/2011","Units Sold":"8270","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"77159.10","Total Cost":"57228.40","Total Profit":"19930.70"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"1/22/2012","Order ID":"689928376","Ship Date":"2/16/2012","Units Sold":"3993","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2668402.11","Total Cost":"2006642.22","Total Profit":"661759.89"},{"Region":"Asia","Country":"Maldives","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"6/27/2013","Order ID":"315961062","Ship Date":"8/6/2013","Units Sold":"8755","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"715546.15","Total Cost":"496145.85","Total Profit":"219400.30"},{"Region":"Asia","Country":"Maldives","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"12/30/2012","Order ID":"415243566","Ship Date":"1/10/2013","Units Sold":"8654","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1333235.24","Total Cost":"786908.22","Total Profit":"546327.02"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/19/2012","Order ID":"619074714","Ship Date":"12/14/2012","Units Sold":"6820","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2877289.80","Total Cost":"2487185.80","Total Profit":"390104.00"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/6/2016","Order ID":"179065835","Ship Date":"8/6/2016","Units Sold":"8415","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3679038.00","Total Cost":"2215921.95","Total Profit":"1463116.05"},{"Region":"Europe","Country":"Moldova ","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"12/11/2016","Order ID":"217140758","Ship Date":"12/28/2016","Units Sold":"5630","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3762360.10","Total Cost":"2829300.20","Total Profit":"933059.90"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"11/20/2015","Order ID":"575535809","Ship Date":"12/26/2015","Units Sold":"2691","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"553538.70","Total Cost":"315143.01","Total Profit":"238395.69"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/27/2012","Order ID":"266799819","Ship Date":"5/23/2012","Units Sold":"850","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"568029.50","Total Cost":"427159.00","Total Profit":"140870.50"},{"Region":"Europe","Country":"Latvia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"11/14/2013","Order ID":"623794114","Ship Date":"12/24/2013","Units Sold":"3395","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1484294.00","Total Cost":"894005.35","Total Profit":"590288.65"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/15/2010","Order ID":"349692523","Ship Date":"5/4/2010","Units Sold":"643","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"70267.04","Total Cost":"23045.12","Total Profit":"47221.92"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"2/9/2015","Order ID":"467981374","Ship Date":"2/27/2015","Units Sold":"4943","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1261849.04","Total Cost":"788013.06","Total Profit":"473835.98"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"6/6/2016","Order ID":"272459495","Ship Date":"7/5/2016","Units Sold":"5674","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"269231.30","Total Cost":"180376.46","Total Profit":"88854.84"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/29/2010","Order ID":"477238214","Ship Date":"1/7/2011","Units Sold":"4248","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1084429.44","Total Cost":"677216.16","Total Profit":"407213.28"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"7/10/2015","Order ID":"966741359","Ship Date":"7/12/2015","Units Sold":"9106","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2324579.68","Total Cost":"1451678.52","Total Profit":"872901.16"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/11/2017","Order ID":"345705258","Ship Date":"7/26/2017","Units Sold":"723","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"111385.38","Total Cost":"65742.39","Total Profit":"45642.99"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"12/7/2016","Order ID":"889178740","Ship Date":"1/20/2017","Units Sold":"6604","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2786161.56","Total Cost":"2408412.76","Total Profit":"377748.80"},{"Region":"Central America and the Caribbean","Country":"Saint Lucia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"9/29/2014","Order ID":"892523133","Ship Date":"11/16/2014","Units Sold":"6284","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"958812.72","Total Cost":"612312.96","Total Profit":"346499.76"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"10/17/2016","Order ID":"521412265","Ship Date":"11/11/2016","Units Sold":"6331","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4230817.37","Total Cost":"3181580.74","Total Profit":"1049236.63"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/10/2014","Order ID":"461832463","Ship Date":"12/15/2014","Units Sold":"5344","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"49859.52","Total Cost":"36980.48","Total Profit":"12879.04"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"2/13/2013","Order ID":"570082557","Ship Date":"3/12/2013","Units Sold":"8952","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5982353.04","Total Cost":"4498738.08","Total Profit":"1483614.96"},{"Region":"Europe","Country":"Belgium","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"11/2/2016","Order ID":"322773873","Ship Date":"11/15/2016","Units Sold":"4817","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"228566.65","Total Cost":"153132.43","Total Profit":"75434.22"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"5/25/2013","Order ID":"166830241","Ship Date":"7/9/2013","Units Sold":"7631","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1569696.70","Total Cost":"893666.41","Total Profit":"676030.29"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"12/20/2013","Order ID":"169487988","Ship Date":"1/24/2014","Units Sold":"4117","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1050987.76","Total Cost":"656332.14","Total Profit":"394655.62"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/8/2011","Order ID":"468295943","Ship Date":"12/14/2011","Units Sold":"8031","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3388198.59","Total Cost":"2928825.39","Total Profit":"459373.20"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"7/27/2016","Order ID":"821115434","Ship Date":"8/9/2016","Units Sold":"5159","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3359592.39","Total Cost":"2708268.64","Total Profit":"651323.75"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"3/10/2012","Order ID":"156120288","Ship Date":"3/30/2012","Units Sold":"8317","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1281317.02","Total Cost":"756264.81","Total Profit":"525052.21"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/22/2014","Order ID":"621796834","Ship Date":"3/18/2014","Units Sold":"2356","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"257463.68","Total Cost":"84439.04","Total Profit":"173024.64"},{"Region":"Europe","Country":"Belarus","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"6/3/2012","Order ID":"836943900","Ship Date":"7/3/2012","Units Sold":"9154","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5961176.34","Total Cost":"4805483.84","Total Profit":"1155692.50"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/24/2013","Order ID":"840672814","Ship Date":"3/29/2013","Units Sold":"2622","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1106195.58","Total Cost":"956217.18","Total Profit":"149978.40"},{"Region":"Europe","Country":"Poland","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"6/18/2012","Order ID":"742407405","Ship Date":"6/26/2012","Units Sold":"3704","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2475272.08","Total Cost":"1861408.16","Total Profit":"613863.92"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"9/4/2014","Order ID":"271884000","Ship Date":"9/13/2014","Units Sold":"5372","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"819659.76","Total Cost":"523447.68","Total Profit":"296212.08"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/12/2014","Order ID":"129151427","Ship Date":"2/26/2014","Units Sold":"7632","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3219864.48","Total Cost":"2783314.08","Total Profit":"436550.40"},{"Region":"Europe","Country":"Armenia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/2/2013","Order ID":"634571015","Ship Date":"10/20/2013","Units Sold":"2520","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"205959.60","Total Cost":"142808.40","Total Profit":"63151.20"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/4/2013","Order ID":"378816592","Ship Date":"7/22/2013","Units Sold":"9103","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"84930.99","Total Cost":"62992.76","Total Profit":"21938.23"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"11/9/2014","Order ID":"272874486","Ship Date":"12/27/2014","Units Sold":"8479","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5521609.59","Total Cost":"4451135.84","Total Profit":"1070473.75"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/24/2016","Order ID":"398043525","Ship Date":"5/13/2016","Units Sold":"8779","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2241103.12","Total Cost":"1399548.18","Total Profit":"841554.94"},{"Region":"Europe","Country":"Belgium","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"3/12/2017","Order ID":"455935037","Ship Date":"4/29/2017","Units Sold":"164","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"17921.92","Total Cost":"5877.76","Total Profit":"12044.16"},{"Region":"Europe","Country":"Belarus","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"8/12/2014","Order ID":"218472850","Ship Date":"8/17/2014","Units Sold":"9826","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6398789.46","Total Cost":"5158256.96","Total Profit":"1240532.50"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"12/21/2013","Order ID":"877893292","Ship Date":"2/8/2014","Units Sold":"6989","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4670539.03","Total Cost":"3512252.06","Total Profit":"1158286.97"},{"Region":"Asia","Country":"North Korea","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/21/2010","Order ID":"996745193","Ship Date":"8/3/2010","Units Sold":"7907","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1626469.90","Total Cost":"925988.77","Total Profit":"700481.13"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"7/7/2015","Order ID":"557889878","Ship Date":"7/21/2015","Units Sold":"867","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"379052.40","Total Cost":"228307.11","Total Profit":"150745.29"},{"Region":"Asia","Country":"Bhutan","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"1/26/2015","Order ID":"514501178","Ship Date":"2/25/2015","Units Sold":"1187","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"182869.22","Total Cost":"107933.91","Total Profit":"74935.31"},{"Region":"Europe","Country":"Portugal","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/26/2011","Order ID":"540065419","Ship Date":"5/15/2011","Units Sold":"6214","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"948132.12","Total Cost":"605492.16","Total Profit":"342639.96"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/14/2011","Order ID":"378381431","Ship Date":"4/14/2011","Units Sold":"329","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"67675.30","Total Cost":"38529.19","Total Profit":"29146.11"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"6/29/2015","Order ID":"293560540","Ship Date":"7/2/2015","Units Sold":"9942","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4346642.40","Total Cost":"2618026.86","Total Profit":"1728615.54"},{"Region":"Europe","Country":"Poland","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/2/2014","Order ID":"620026576","Ship Date":"4/20/2014","Units Sold":"8497","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"79277.01","Total Cost":"58799.24","Total Profit":"20477.77"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"10/1/2013","Order ID":"412515866","Ship Date":"10/18/2013","Units Sold":"1467","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"641372.40","Total Cost":"386305.11","Total Profit":"255067.29"},{"Region":"Asia","Country":"South Korea","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/20/2010","Order ID":"596077239","Ship Date":"6/20/2010","Units Sold":"1356","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"592843.20","Total Cost":"357075.48","Total Profit":"235767.72"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"6/1/2016","Order ID":"816072022","Ship Date":"6/25/2016","Units Sold":"2701","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"128162.45","Total Cost":"85864.79","Total Profit":"42297.66"},{"Region":"Asia","Country":"South Korea","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/13/2011","Order ID":"788174045","Ship Date":"3/31/2011","Units Sold":"7070","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"65963.10","Total Cost":"48924.40","Total Profit":"17038.70"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/27/2012","Order ID":"748369634","Ship Date":"12/27/2012","Units Sold":"8060","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"382447.00","Total Cost":"256227.40","Total Profit":"126219.60"},{"Region":"Asia","Country":"Thailand","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"8/18/2014","Order ID":"102957618","Ship Date":"9/30/2014","Units Sold":"6302","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2658750.78","Total Cost":"2298276.38","Total Profit":"360474.40"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/3/2010","Order ID":"578549325","Ship Date":"2/6/2010","Units Sold":"4457","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"364270.61","Total Cost":"252578.19","Total Profit":"111692.42"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/7/2013","Order ID":"372068583","Ship Date":"2/25/2013","Units Sold":"2217","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"242273.76","Total Cost":"79457.28","Total Profit":"162816.48"},{"Region":"Europe","Country":"Greece","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/25/2015","Order ID":"900751721","Ship Date":"12/22/2015","Units Sold":"1306","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"570983.20","Total Cost":"343908.98","Total Profit":"227074.22"},{"Region":"Europe","Country":"Norway","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/29/2015","Order ID":"952147567","Ship Date":"11/12/2015","Units Sold":"479","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"311929.59","Total Cost":"251455.84","Total Profit":"60473.75"},{"Region":"Europe","Country":"Finland","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/13/2010","Order ID":"734117448","Ship Date":"10/24/2010","Units Sold":"521","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"219804.69","Total Cost":"190003.49","Total Profit":"29801.20"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/9/2011","Order ID":"524835193","Ship Date":"6/25/2011","Units Sold":"9251","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1411517.58","Total Cost":"901417.44","Total Profit":"510100.14"},{"Region":"Europe","Country":"Slovakia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"3/14/2014","Order ID":"222787129","Ship Date":"3/17/2014","Units Sold":"6517","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"60803.61","Total Cost":"45097.64","Total Profit":"15705.97"},{"Region":"Europe","Country":"Montenegro","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"1/5/2013","Order ID":"696772086","Ship Date":"2/15/2013","Units Sold":"9199","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2348320.72","Total Cost":"1466504.58","Total Profit":"881816.14"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/19/2010","Order ID":"635901391","Ship Date":"3/21/2010","Units Sold":"6208","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"947216.64","Total Cost":"604907.52","Total Profit":"342309.12"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/22/2013","Order ID":"599598872","Ship Date":"2/12/2013","Units Sold":"3486","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"380950.08","Total Cost":"124938.24","Total Profit":"256011.84"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/30/2014","Order ID":"767600858","Ship Date":"11/9/2014","Units Sold":"9006","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5864797.26","Total Cost":"4727789.76","Total Profit":"1137007.50"},{"Region":"Europe","Country":"Slovakia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"4/20/2013","Order ID":"489956176","Ship Date":"6/2/2013","Units Sold":"7775","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"635450.75","Total Cost":"440609.25","Total Profit":"194841.50"},{"Region":"Asia","Country":"Thailand","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"5/28/2015","Order ID":"537026154","Ship Date":"6/24/2015","Units Sold":"6828","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"746163.84","Total Cost":"244715.52","Total Profit":"501448.32"},{"Region":"Asia","Country":"Brunei","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/7/2017","Order ID":"849484622","Ship Date":"7/5/2017","Units Sold":"232","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"25352.96","Total Cost":"8314.88","Total Profit":"17038.08"},{"Region":"Europe","Country":"Macedonia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"10/31/2016","Order ID":"988317906","Ship Date":"12/12/2016","Units Sold":"4086","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"446518.08","Total Cost":"146442.24","Total Profit":"300075.84"},{"Region":"Asia","Country":"Brunei","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/25/2015","Order ID":"584824836","Ship Date":"12/1/2015","Units Sold":"1520","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"14181.60","Total Cost":"10518.40","Total Profit":"3663.20"},{"Region":"Europe","Country":"Greece","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"6/4/2010","Order ID":"690616738","Ship Date":"6/26/2010","Units Sold":"7695","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"628912.35","Total Cost":"436075.65","Total Profit":"192836.70"},{"Region":"Europe","Country":"Malta","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/9/2016","Order ID":"627617442","Ship Date":"4/4/2016","Units Sold":"4803","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1226109.84","Total Cost":"765694.26","Total Profit":"460415.58"},{"Region":"Asia","Country":"India","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/6/2012","Order ID":"238063275","Ship Date":"3/24/2012","Units Sold":"7068","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2981918.52","Total Cost":"2577628.92","Total Profit":"404289.60"},{"Region":"Europe","Country":"Macedonia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/11/2012","Order ID":"334503066","Ship Date":"8/21/2012","Units Sold":"5745","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3741201.45","Total Cost":"3015895.20","Total Profit":"725306.25"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"4/11/2017","Order ID":"449798142","Ship Date":"5/26/2017","Units Sold":"4121","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2683636.41","Total Cost":"2163360.16","Total Profit":"520276.25"},{"Region":"Europe","Country":"Malta","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"3/8/2016","Order ID":"187122333","Ship Date":"3/30/2016","Units Sold":"2511","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"274402.08","Total Cost":"89994.24","Total Profit":"184407.84"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"3/20/2015","Order ID":"569961965","Ship Date":"4/16/2015","Units Sold":"3266","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"833744.48","Total Cost":"520665.72","Total Profit":"313078.76"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"1/15/2010","Order ID":"892115867","Ship Date":"1/17/2010","Units Sold":"5765","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1185860.50","Total Cost":"675139.15","Total Profit":"510721.35"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"7/14/2012","Order ID":"967695367","Ship Date":"7/18/2012","Units Sold":"1418","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"115893.14","Total Cost":"80358.06","Total Profit":"35535.08"},{"Region":"Europe","Country":"Lithuania","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"9/19/2016","Order ID":"681124293","Ship Date":"10/15/2016","Units Sold":"8669","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"80881.77","Total Cost":"59989.48","Total Profit":"20892.29"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/3/2010","Order ID":"437138974","Ship Date":"3/1/2010","Units Sold":"7992","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5204470.32","Total Cost":"4195480.32","Total Profit":"1008990.00"},{"Region":"Europe","Country":"Slovakia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/22/2015","Order ID":"710788238","Ship Date":"4/22/2015","Units Sold":"6890","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4604380.30","Total Cost":"3462500.60","Total Profit":"1141879.70"},{"Region":"Europe","Country":"Estonia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"8/21/2010","Order ID":"697433412","Ship Date":"8/28/2010","Units Sold":"4900","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"45717.00","Total Cost":"33908.00","Total Profit":"11809.00"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"1/27/2017","Order ID":"562748324","Ship Date":"3/13/2017","Units Sold":"8590","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5740439.30","Total Cost":"4316818.60","Total Profit":"1423620.70"},{"Region":"Europe","Country":"Georgia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/29/2011","Order ID":"992719304","Ship Date":"4/21/2011","Units Sold":"6557","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"311129.65","Total Cost":"208447.03","Total Profit":"102682.62"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"6/20/2012","Order ID":"943645179","Ship Date":"7/31/2012","Units Sold":"4433","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"41359.89","Total Cost":"30676.36","Total Profit":"10683.53"},{"Region":"Europe","Country":"Montenegro","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/13/2010","Order ID":"792137277","Ship Date":"11/24/2010","Units Sold":"9878","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6601171.06","Total Cost":"4964090.12","Total Profit":"1637080.94"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/18/2016","Order ID":"985119426","Ship Date":"8/22/2016","Units Sold":"7584","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3315724.80","Total Cost":"1997094.72","Total Profit":"1318630.08"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"5/19/2010","Order ID":"689827954","Ship Date":"6/13/2010","Units Sold":"4276","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2857522.52","Total Cost":"2148861.04","Total Profit":"708661.48"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"12/18/2015","Order ID":"943811690","Ship Date":"1/21/2016","Units Sold":"3708","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"762735.60","Total Cost":"434243.88","Total Profit":"328491.72"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"7/10/2012","Order ID":"604931962","Ship Date":"8/5/2012","Units Sold":"1665","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"425041.20","Total Cost":"265434.30","Total Profit":"159606.90"},{"Region":"Europe","Country":"Georgia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"6/3/2014","Order ID":"401362597","Ship Date":"6/9/2014","Units Sold":"967","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"422772.40","Total Cost":"254640.11","Total Profit":"168132.29"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/16/2014","Order ID":"681589925","Ship Date":"6/26/2014","Units Sold":"6460","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1328822.00","Total Cost":"756530.60","Total Profit":"572291.40"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"7/5/2017","Order ID":"964412772","Ship Date":"8/9/2017","Units Sold":"26","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"16931.46","Total Cost":"13648.96","Total Profit":"3282.50"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"11/21/2014","Order ID":"388942468","Ship Date":"11/28/2014","Units Sold":"5574","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3629844.54","Total Cost":"2926127.04","Total Profit":"703717.50"},{"Region":"Europe","Country":"Georgia","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"7/25/2017","Order ID":"864602839","Ship Date":"8/9/2017","Units Sold":"4048","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2705156.96","Total Cost":"2034281.92","Total Profit":"670875.04"},{"Region":"Europe","Country":"Malta","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"12/7/2014","Order ID":"321130216","Ship Date":"1/3/2015","Units Sold":"8422","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"78577.26","Total Cost":"58280.24","Total Profit":"20297.02"},{"Region":"Asia","Country":"South Korea","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"5/23/2016","Order ID":"358573424","Ship Date":"5/26/2016","Units Sold":"8699","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5664875.79","Total Cost":"4566627.04","Total Profit":"1098248.75"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"4/3/2017","Order ID":"397293794","Ship Date":"4/17/2017","Units Sold":"6917","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1065633.02","Total Cost":"628962.81","Total Profit":"436670.21"},{"Region":"Europe","Country":"Iceland","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/12/2010","Order ID":"827965152","Ship Date":"3/3/2010","Units Sold":"2142","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"546809.76","Total Cost":"341477.64","Total Profit":"205332.12"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"5/10/2011","Order ID":"761573827","Ship Date":"6/22/2011","Units Sold":"5474","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"843324.44","Total Cost":"497750.82","Total Profit":"345573.62"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/27/2011","Order ID":"279418647","Ship Date":"1/12/2012","Units Sold":"5042","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3283400.82","Total Cost":"2646848.32","Total Profit":"636552.50"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/6/2011","Order ID":"883110940","Ship Date":"5/9/2011","Units Sold":"1007","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"110044.96","Total Cost":"36090.88","Total Profit":"73954.08"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"2/3/2014","Order ID":"544574534","Ship Date":"3/3/2014","Units Sold":"561","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"86427.66","Total Cost":"51011.73","Total Profit":"35415.93"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"7/3/2010","Order ID":"456045758","Ship Date":"8/18/2010","Units Sold":"2929","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1957362.83","Total Cost":"1471939.66","Total Profit":"485423.17"},{"Region":"Asia","Country":"North Korea","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/29/2010","Order ID":"980073440","Ship Date":"12/20/2010","Units Sold":"4365","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1841549.85","Total Cost":"1591871.85","Total Profit":"249678.00"},{"Region":"Asia","Country":"Brunei","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/2/2011","Order ID":"299518907","Ship Date":"9/5/2011","Units Sold":"3155","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"805408.40","Total Cost":"502970.10","Total Profit":"302438.30"},{"Region":"Asia","Country":"Philippines","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"8/19/2013","Order ID":"267555987","Ship Date":"10/6/2013","Units Sold":"4617","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1178627.76","Total Cost":"736042.14","Total Profit":"442585.62"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/30/2011","Order ID":"557671010","Ship Date":"10/12/2011","Units Sold":"6099","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2573107.11","Total Cost":"2224244.31","Total Profit":"348862.80"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/13/2012","Order ID":"913662803","Ship Date":"10/21/2012","Units Sold":"1982","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"94045.90","Total Cost":"63007.78","Total Profit":"31038.12"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/9/2017","Order ID":"699642693","Ship Date":"4/21/2017","Units Sold":"8675","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1336470.50","Total Cost":"788817.75","Total Profit":"547652.75"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"8/7/2015","Order ID":"250034511","Ship Date":"9/13/2015","Units Sold":"9623","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2456559.44","Total Cost":"1534098.66","Total Profit":"922460.78"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"2/15/2014","Order ID":"419574582","Ship Date":"3/30/2014","Units Sold":"298","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"45468.84","Total Cost":"29037.12","Total Profit":"16431.72"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"7/24/2016","Order ID":"333311736","Ship Date":"7/25/2016","Units Sold":"3204","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"152029.80","Total Cost":"101855.16","Total Profit":"50174.64"},{"Region":"Europe","Country":"Estonia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"7/18/2012","Order ID":"536607301","Ship Date":"9/4/2012","Units Sold":"2880","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"136656.00","Total Cost":"91555.20","Total Profit":"45100.80"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"9/17/2011","Order ID":"745135104","Ship Date":"9/19/2011","Units Sold":"891","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"135948.78","Total Cost":"86819.04","Total Profit":"49129.74"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/7/2017","Order ID":"294881474","Ship Date":"3/9/2017","Units Sold":"836","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"365499.20","Total Cost":"220143.88","Total Profit":"145355.32"},{"Region":"Asia","Country":"Maldives","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"3/19/2014","Order ID":"392145240","Ship Date":"4/9/2014","Units Sold":"3346","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"365650.88","Total Cost":"119920.64","Total Profit":"245730.24"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/6/2011","Order ID":"963537728","Ship Date":"12/23/2011","Units Sold":"1081","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"275957.68","Total Cost":"172333.02","Total Profit":"103624.66"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"5/27/2016","Order ID":"205982768","Ship Date":"5/30/2016","Units Sold":"3733","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1574915.37","Total Cost":"1361387.77","Total Profit":"213527.60"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/19/2012","Order ID":"436716687","Ship Date":"8/19/2012","Units Sold":"3027","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1277061.03","Total Cost":"1103916.63","Total Profit":"173144.40"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"7/7/2012","Order ID":"443288314","Ship Date":"7/12/2012","Units Sold":"7718","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"630792.14","Total Cost":"437379.06","Total Profit":"193413.08"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"6/18/2014","Order ID":"433558976","Ship Date":"7/6/2014","Units Sold":"8591","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5741107.57","Total Cost":"4317321.14","Total Profit":"1423786.43"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/27/2013","Order ID":"685702502","Ship Date":"12/13/2013","Units Sold":"3463","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"32309.79","Total Cost":"23963.96","Total Profit":"8345.83"},{"Region":"Asia","Country":"Bhutan","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/30/2014","Order ID":"198205220","Ship Date":"10/3/2014","Units Sold":"2184","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"954844.80","Total Cost":"575112.72","Total Profit":"379732.08"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"10/6/2010","Order ID":"739865958","Ship Date":"10/16/2010","Units Sold":"1633","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"133465.09","Total Cost":"92542.11","Total Profit":"40922.98"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"2/10/2012","Order ID":"999796044","Ship Date":"2/29/2012","Units Sold":"722","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"111231.32","Total Cost":"65651.46","Total Profit":"45579.86"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/29/2010","Order ID":"637419307","Ship Date":"12/9/2010","Units Sold":"5393","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"830845.58","Total Cost":"490385.49","Total Profit":"340460.09"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/29/2015","Order ID":"732472074","Ship Date":"4/20/2015","Units Sold":"3619","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"557543.14","Total Cost":"329075.67","Total Profit":"228467.47"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/25/2015","Order ID":"635003173","Ship Date":"12/10/2015","Units Sold":"405","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"83308.50","Total Cost":"47429.55","Total Profit":"35878.95"},{"Region":"Asia","Country":"Tajikistan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"8/27/2011","Order ID":"215373933","Ship Date":"9/3/2011","Units Sold":"2788","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"573491.60","Total Cost":"326502.68","Total Profit":"246988.92"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/13/2014","Order ID":"314258182","Ship Date":"5/27/2014","Units Sold":"4834","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"994353.80","Total Cost":"566109.74","Total Profit":"428244.06"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"7/27/2013","Order ID":"492642247","Ship Date":"7/28/2013","Units Sold":"2643","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"24659.19","Total Cost":"18289.56","Total Profit":"6369.63"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/25/2011","Order ID":"381824958","Ship Date":"11/11/2011","Units Sold":"9345","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"87188.85","Total Cost":"64667.40","Total Profit":"22521.45"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"5/19/2012","Order ID":"133417642","Ship Date":"6/30/2012","Units Sold":"100","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"933.00","Total Cost":"692.00","Total Profit":"241.00"},{"Region":"Europe","Country":"Serbia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"11/27/2015","Order ID":"869344127","Ship Date":"12/9/2015","Units Sold":"7101","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2995840.89","Total Cost":"2589663.69","Total Profit":"406177.20"},{"Region":"Asia","Country":"Tajikistan","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/8/2016","Order ID":"631840741","Ship Date":"8/7/2016","Units Sold":"4571","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1998441.20","Total Cost":"1203681.43","Total Profit":"794759.77"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/15/2013","Order ID":"233456313","Ship Date":"4/18/2013","Units Sold":"3766","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"580189.96","Total Cost":"342442.38","Total Profit":"237747.58"},{"Region":"Asia","Country":"Mongolia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/1/2013","Order ID":"107052171","Ship Date":"8/30/2013","Units Sold":"7971","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"378223.95","Total Cost":"253398.09","Total Profit":"124825.86"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/26/2014","Order ID":"755802142","Ship Date":"12/30/2014","Units Sold":"7504","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1915621.12","Total Cost":"1196287.68","Total Profit":"719333.44"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/19/2015","Order ID":"503192555","Ship Date":"11/3/2015","Units Sold":"4714","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2060960.80","Total Cost":"1241337.62","Total Profit":"819623.18"},{"Region":"Europe","Country":"Poland","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"9/11/2011","Order ID":"443022239","Ship Date":"9/15/2011","Units Sold":"8980","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3788572.20","Total Cost":"3274916.20","Total Profit":"513656.00"},{"Region":"Europe","Country":"Ireland","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/21/2014","Order ID":"389402520","Ship Date":"8/17/2014","Units Sold":"1714","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1116173.94","Total Cost":"899781.44","Total Profit":"216392.50"},{"Region":"Asia","Country":"Philippines","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"10/24/2010","Order ID":"226757228","Ship Date":"11/22/2010","Units Sold":"1358","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"907510.66","Total Cost":"682449.32","Total Profit":"225061.34"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/14/2010","Order ID":"359822690","Ship Date":"9/29/2010","Units Sold":"8385","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5603443.95","Total Cost":"4213797.90","Total Profit":"1389646.05"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/24/2014","Order ID":"363647735","Ship Date":"3/31/2014","Units Sold":"301","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"76839.28","Total Cost":"47985.42","Total Profit":"28853.86"},{"Region":"Asia","Country":"Philippines","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"7/29/2014","Order ID":"333593690","Ship Date":"9/12/2014","Units Sold":"6641","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"315115.45","Total Cost":"211117.39","Total Profit":"103998.06"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/3/2010","Order ID":"435334384","Ship Date":"5/16/2010","Units Sold":"3973","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"434169.44","Total Cost":"142392.32","Total Profit":"291777.12"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"9/1/2015","Order ID":"454856145","Ship Date":"10/10/2015","Units Sold":"896","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"97914.88","Total Cost":"32112.64","Total Profit":"65802.24"},{"Region":"Europe","Country":"Netherlands","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"4/15/2012","Order ID":"248457801","Ship Date":"5/19/2012","Units Sold":"3039","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"775795.92","Total Cost":"484477.38","Total Profit":"291318.54"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/10/2012","Order ID":"192750680","Ship Date":"1/17/2013","Units Sold":"8064","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"659070.72","Total Cost":"456986.88","Total Profit":"202083.84"},{"Region":"Europe","Country":"Austria","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/5/2012","Order ID":"734658610","Ship Date":"8/8/2012","Units Sold":"663","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"279713.07","Total Cost":"241789.47","Total Profit":"37923.60"},{"Region":"Europe","Country":"Spain","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"11/1/2014","Order ID":"141417920","Ship Date":"12/14/2014","Units Sold":"7560","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"617878.80","Total Cost":"428425.20","Total Profit":"189453.60"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"12/21/2012","Order ID":"350577437","Ship Date":"12/30/2012","Units Sold":"2509","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"382823.22","Total Cost":"244476.96","Total Profit":"138346.26"},{"Region":"Europe","Country":"Lithuania","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/9/2016","Order ID":"219998490","Ship Date":"7/25/2016","Units Sold":"1297","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"141736.16","Total Cost":"46484.48","Total Profit":"95251.68"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"2/15/2017","Order ID":"477854907","Ship Date":"3/7/2017","Units Sold":"6741","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2947165.20","Total Cost":"1775107.53","Total Profit":"1172057.67"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"1/26/2015","Order ID":"572633016","Ship Date":"3/2/2015","Units Sold":"3689","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"301501.97","Total Cost":"209055.63","Total Profit":"92446.34"},{"Region":"Europe","Country":"Poland","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/30/2015","Order ID":"923131644","Ship Date":"7/18/2015","Units Sold":"4022","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"328718.06","Total Cost":"227926.74","Total Profit":"100791.32"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/8/2017","Order ID":"668462121","Ship Date":"2/14/2017","Units Sold":"1651","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"696540.39","Total Cost":"602103.19","Total Profit":"94437.20"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/26/2015","Order ID":"818048274","Ship Date":"9/14/2015","Units Sold":"7518","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"356729.10","Total Cost":"238997.22","Total Profit":"117731.88"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"8/31/2015","Order ID":"201626431","Ship Date":"9/24/2015","Units Sold":"4597","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"502360.16","Total Cost":"164756.48","Total Profit":"337603.68"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/27/2011","Order ID":"419245421","Ship Date":"8/15/2011","Units Sold":"2892","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"236363.16","Total Cost":"163889.64","Total Profit":"72473.52"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/28/2013","Order ID":"891266572","Ship Date":"10/6/2013","Units Sold":"4439","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"41415.87","Total Cost":"30717.88","Total Profit":"10697.99"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/10/2014","Order ID":"208363711","Ship Date":"11/29/2014","Units Sold":"8307","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"394167.15","Total Cost":"264079.53","Total Profit":"130087.62"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/26/2015","Order ID":"181523168","Ship Date":"12/12/2015","Units Sold":"5594","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2360052.66","Total Cost":"2040075.86","Total Profit":"319976.80"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/19/2015","Order ID":"892043769","Ship Date":"9/8/2015","Units Sold":"4429","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"210156.05","Total Cost":"140797.91","Total Profit":"69358.14"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"7/15/2013","Order ID":"241536843","Ship Date":"8/21/2013","Units Sold":"4974","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1269762.72","Total Cost":"792955.08","Total Profit":"476807.64"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/17/2014","Order ID":"701926219","Ship Date":"2/14/2014","Units Sold":"4421","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1865175.69","Total Cost":"1612294.49","Total Profit":"252881.20"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/29/2015","Order ID":"765448224","Ship Date":"2/18/2015","Units Sold":"1994","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"94615.30","Total Cost":"63389.26","Total Profit":"31226.04"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"10/29/2011","Order ID":"794651687","Ship Date":"11/27/2011","Units Sold":"3948","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1007845.44","Total Cost":"629390.16","Total Profit":"378455.28"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"9/14/2015","Order ID":"772397935","Ship Date":"10/15/2015","Units Sold":"8568","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1762437.60","Total Cost":"1003398.48","Total Profit":"759039.12"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/1/2012","Order ID":"751860797","Ship Date":"10/15/2012","Units Sold":"1173","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"128185.44","Total Cost":"42040.32","Total Profit":"86145.12"},{"Region":"Asia","Country":"India","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"6/24/2012","Order ID":"406526601","Ship Date":"8/8/2012","Units Sold":"9110","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"84996.30","Total Cost":"63041.20","Total Profit":"21955.10"},{"Region":"Europe","Country":"Vatican City","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/4/2014","Order ID":"380194175","Ship Date":"8/6/2014","Units Sold":"6760","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"320762.00","Total Cost":"214900.40","Total Profit":"105861.60"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/14/2011","Order ID":"936974847","Ship Date":"2/2/2012","Units Sold":"534","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"58355.52","Total Cost":"19138.56","Total Profit":"39216.96"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"7/3/2017","Order ID":"611292445","Ship Date":"7/5/2017","Units Sold":"3874","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"796881.80","Total Cost":"453684.14","Total Profit":"343197.66"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/21/2014","Order ID":"257883298","Ship Date":"2/5/2015","Units Sold":"2253","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"246207.84","Total Cost":"80747.52","Total Profit":"165460.32"},{"Region":"Europe","Country":"Ireland","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/23/2015","Order ID":"801796233","Ship Date":"10/12/2015","Units Sold":"8178","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1247799.24","Total Cost":"796864.32","Total Profit":"450934.92"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"9/21/2016","Order ID":"988392579","Ship Date":"11/9/2016","Units Sold":"6183","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2703207.60","Total Cost":"1628169.39","Total Profit":"1075038.21"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"9/12/2012","Order ID":"533346164","Ship Date":"9/26/2012","Units Sold":"7837","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3306351.93","Total Cost":"2858075.53","Total Profit":"448276.40"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"4/10/2014","Order ID":"572643315","Ship Date":"5/13/2014","Units Sold":"6737","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"550615.01","Total Cost":"381785.79","Total Profit":"168829.22"},{"Region":"Asia","Country":"Myanmar","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"4/9/2014","Order ID":"512582862","Ship Date":"5/7/2014","Units Sold":"3514","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"722829.80","Total Cost":"411524.54","Total Profit":"311305.26"},{"Region":"Europe","Country":"Italy","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"2/27/2014","Order ID":"279776132","Ship Date":"4/5/2014","Units Sold":"829","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"349746.81","Total Cost":"302328.01","Total Profit":"47418.80"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/8/2012","Order ID":"771146953","Ship Date":"10/14/2012","Units Sold":"8375","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5453883.75","Total Cost":"4396540.00","Total Profit":"1057343.75"},{"Region":"Asia","Country":"Maldives","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"3/29/2017","Order ID":"703931653","Ship Date":"4/10/2017","Units Sold":"7874","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2010074.72","Total Cost":"1255273.08","Total Profit":"754801.64"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"5/2/2017","Order ID":"665679061","Ship Date":"6/16/2017","Units Sold":"8082","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1233151.56","Total Cost":"787510.08","Total Profit":"445641.48"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/15/2011","Order ID":"864250504","Ship Date":"3/9/2011","Units Sold":"9785","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"2012774.50","Total Cost":"1145921.35","Total Profit":"866853.15"},{"Region":"Asia","Country":"Myanmar","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/5/2016","Order ID":"677819812","Ship Date":"10/30/2016","Units Sold":"800","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"122064.00","Total Cost":"77952.00","Total Profit":"44112.00"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"8/7/2015","Order ID":"904873311","Ship Date":"9/19/2015","Units Sold":"976","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"9106.08","Total Cost":"6753.92","Total Profit":"2352.16"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/22/2016","Order ID":"614209830","Ship Date":"7/30/2016","Units Sold":"7193","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1108153.58","Total Cost":"654059.49","Total Profit":"454094.09"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"6/25/2014","Order ID":"294940698","Ship Date":"7/8/2014","Units Sold":"8362","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2134651.36","Total Cost":"1333070.04","Total Profit":"801581.32"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"8/20/2016","Order ID":"506489741","Ship Date":"9/29/2016","Units Sold":"425","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"185810.00","Total Cost":"111915.25","Total Profit":"73894.75"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"3/16/2016","Order ID":"528593289","Ship Date":"4/18/2016","Units Sold":"1356","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"572082.84","Total Cost":"494519.64","Total Profit":"77563.20"},{"Region":"Europe","Country":"France","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"3/24/2011","Order ID":"611300170","Ship Date":"4/19/2011","Units Sold":"6160","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"939892.80","Total Cost":"600230.40","Total Profit":"339662.40"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"12/12/2015","Order ID":"624971711","Ship Date":"12/27/2015","Units Sold":"1872","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"152998.56","Total Cost":"106086.24","Total Profit":"46912.32"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"8/8/2011","Order ID":"510281741","Ship Date":"9/14/2011","Units Sold":"2562","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"209392.26","Total Cost":"145188.54","Total Profit":"64203.72"},{"Region":"Europe","Country":"Andorra","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"10/12/2010","Order ID":"728216588","Ship Date":"11/20/2010","Units Sold":"4326","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1104341.28","Total Cost":"689650.92","Total Profit":"414690.36"},{"Region":"Europe","Country":"Sweden","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"10/11/2015","Order ID":"910075080","Ship Date":"10/16/2015","Units Sold":"295","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"192106.95","Total Cost":"154863.20","Total Profit":"37243.75"},{"Region":"Europe","Country":"Belgium","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/23/2014","Order ID":"307468545","Ship Date":"12/1/2014","Units Sold":"5630","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1158091.00","Total Cost":"659329.30","Total Profit":"498761.70"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"2/4/2016","Order ID":"942320811","Ship Date":"3/1/2016","Units Sold":"2523","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"23539.59","Total Cost":"17459.16","Total Profit":"6080.43"},{"Region":"Europe","Country":"Andorra","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"10/3/2013","Order ID":"856868207","Ship Date":"10/21/2013","Units Sold":"5199","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"246692.55","Total Cost":"165276.21","Total Profit":"81416.34"},{"Region":"North America","Country":"Mexico","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"5/10/2014","Order ID":"863659560","Ship Date":"5/15/2014","Units Sold":"4911","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3198092.31","Total Cost":"2578078.56","Total Profit":"620013.75"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/13/2010","Order ID":"495556199","Ship Date":"6/23/2010","Units Sold":"4947","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"404318.31","Total Cost":"280346.49","Total Profit":"123971.82"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"4/4/2014","Order ID":"255731952","Ship Date":"4/18/2014","Units Sold":"5622","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3661102.62","Total Cost":"2951325.12","Total Profit":"709777.50"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"11/7/2016","Order ID":"267673146","Ship Date":"12/8/2016","Units Sold":"9287","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"759026.51","Total Cost":"526294.29","Total Profit":"232732.22"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/27/2013","Order ID":"725178611","Ship Date":"11/30/2013","Units Sold":"5321","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1094529.70","Total Cost":"623142.31","Total Profit":"471387.39"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/15/2017","Order ID":"542359673","Ship Date":"2/12/2017","Units Sold":"5135","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3343963.35","Total Cost":"2695669.60","Total Profit":"648293.75"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"12/15/2012","Order ID":"503640162","Ship Date":"12/24/2012","Units Sold":"7171","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"66905.43","Total Cost":"49623.32","Total Profit":"17282.11"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"10/15/2011","Order ID":"113756406","Ship Date":"11/17/2011","Units Sold":"1903","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"391447.10","Total Cost":"222860.33","Total Profit":"168586.77"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"6/19/2013","Order ID":"747757232","Ship Date":"8/6/2013","Units Sold":"6837","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2884461.93","Total Cost":"2493385.53","Total Profit":"391076.40"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/1/2011","Order ID":"701003968","Ship Date":"6/10/2011","Units Sold":"1507","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1007082.89","Total Cost":"757327.78","Total Profit":"249755.11"},{"Region":"Europe","Country":"Greece","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"6/24/2011","Order ID":"139170444","Ship Date":"7/12/2011","Units Sold":"2482","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"510547.40","Total Cost":"290667.02","Total Profit":"219880.38"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/29/2012","Order ID":"648242986","Ship Date":"1/31/2013","Units Sold":"8360","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"913580.80","Total Cost":"299622.40","Total Profit":"613958.40"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"7/31/2012","Order ID":"284520423","Ship Date":"8/4/2012","Units Sold":"4771","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1217940.88","Total Cost":"760592.82","Total Profit":"457348.06"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"6/29/2015","Order ID":"324614083","Ship Date":"8/11/2015","Units Sold":"9376","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1024609.28","Total Cost":"336035.84","Total Profit":"688573.44"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"9/8/2016","Order ID":"315447795","Ship Date":"10/28/2016","Units Sold":"6867","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1753007.76","Total Cost":"1094737.14","Total Profit":"658270.62"},{"Region":"Europe","Country":"Macedonia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"3/11/2012","Order ID":"324257886","Ship Date":"4/19/2012","Units Sold":"3969","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"433732.32","Total Cost":"142248.96","Total Profit":"291483.36"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"6/16/2010","Order ID":"488593184","Ship Date":"6/28/2010","Units Sold":"4436","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"484766.08","Total Cost":"158986.24","Total Profit":"325779.84"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"6/2/2013","Order ID":"566315019","Ship Date":"7/8/2013","Units Sold":"4054","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2709166.58","Total Cost":"2037297.16","Total Profit":"671869.42"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/23/2012","Order ID":"385597217","Ship Date":"10/4/2012","Units Sold":"5640","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"868898.40","Total Cost":"512845.20","Total Profit":"356053.20"},{"Region":"Asia","Country":"China","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"3/30/2016","Order ID":"294926106","Ship Date":"4/7/2016","Units Sold":"4044","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"37730.52","Total Cost":"27984.48","Total Profit":"9746.04"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/14/2013","Order ID":"713100516","Ship Date":"1/13/2014","Units Sold":"1144","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"54282.80","Total Cost":"36367.76","Total Profit":"17915.04"},{"Region":"Europe","Country":"Portugal","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/22/2012","Order ID":"779231774","Ship Date":"3/8/2012","Units Sold":"853","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"130150.74","Total Cost":"83116.32","Total Profit":"47034.42"},{"Region":"Europe","Country":"Denmark","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"1/14/2014","Order ID":"602743709","Ship Date":"1/25/2014","Units Sold":"4113","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"38374.29","Total Cost":"28461.96","Total Profit":"9912.33"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"11/12/2016","Order ID":"813372647","Ship Date":"12/31/2016","Units Sold":"3896","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1643683.44","Total Cost":"1420832.24","Total Profit":"222851.20"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/16/2014","Order ID":"311167418","Ship Date":"10/30/2014","Units Sold":"209","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"9917.05","Total Cost":"6644.11","Total Profit":"3272.94"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"9/12/2010","Order ID":"316489350","Ship Date":"10/12/2010","Units Sold":"5087","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"783703.22","Total Cost":"462560.91","Total Profit":"321142.31"},{"Region":"Europe","Country":"Slovakia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"5/1/2012","Order ID":"320012271","Ship Date":"5/8/2012","Units Sold":"7597","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1939362.16","Total Cost":"1211113.74","Total Profit":"728248.42"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/7/2013","Order ID":"332722508","Ship Date":"5/24/2013","Units Sold":"8839","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1348654.62","Total Cost":"861272.16","Total Profit":"487382.46"},{"Region":"North America","Country":"Mexico","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/3/2012","Order ID":"435918891","Ship Date":"4/26/2012","Units Sold":"6942","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"758621.76","Total Cost":"248801.28","Total Profit":"509820.48"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/15/2016","Order ID":"331212747","Ship Date":"5/3/2016","Units Sold":"2067","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1346051.07","Total Cost":"1085092.32","Total Profit":"260958.75"},{"Region":"Asia","Country":"Laos","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"6/22/2014","Order ID":"690527904","Ship Date":"6/28/2014","Units Sold":"1407","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"153756.96","Total Cost":"50426.88","Total Profit":"103330.08"},{"Region":"Europe","Country":"Sweden","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"7/21/2012","Order ID":"906100690","Ship Date":"8/14/2012","Units Sold":"4185","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"644741.10","Total Cost":"380542.05","Total Profit":"264199.05"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"3/19/2013","Order ID":"440479934","Ship Date":"4/2/2013","Units Sold":"6656","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4448005.12","Total Cost":"3344906.24","Total Profit":"1103098.88"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/19/2012","Order ID":"176526963","Ship Date":"9/26/2012","Units Sold":"7106","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1094750.36","Total Cost":"646148.58","Total Profit":"448601.78"},{"Region":"Europe","Country":"San Marino","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/6/2012","Order ID":"167415606","Ship Date":"3/23/2012","Units Sold":"853","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"93215.84","Total Cost":"30571.52","Total Profit":"62644.32"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"10/9/2013","Order ID":"986632192","Ship Date":"11/2/2013","Units Sold":"5246","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"48945.18","Total Cost":"36302.32","Total Profit":"12642.86"},{"Region":"Europe","Country":"Romania","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"12/15/2016","Order ID":"577975547","Ship Date":"1/31/2017","Units Sold":"4663","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"959179.10","Total Cost":"546083.93","Total Profit":"413095.17"},{"Region":"Europe","Country":"France","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/5/2014","Order ID":"105557000","Ship Date":"9/19/2014","Units Sold":"5517","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"849949.02","Total Cost":"501660.81","Total Profit":"348288.21"},{"Region":"Asia","Country":"Thailand","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/23/2012","Order ID":"803800380","Ship Date":"6/10/2012","Units Sold":"1249","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"11653.17","Total Cost":"8643.08","Total Profit":"3010.09"},{"Region":"Europe","Country":"Albania","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"4/17/2016","Order ID":"827442014","Ship Date":"5/15/2016","Units Sold":"7334","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"801459.52","Total Cost":"262850.56","Total Profit":"538608.96"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"3/13/2015","Order ID":"201530730","Ship Date":"4/8/2015","Units Sold":"6276","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"297796.20","Total Cost":"199514.04","Total Profit":"98282.16"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"10/19/2013","Order ID":"371427857","Ship Date":"11/16/2013","Units Sold":"2612","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1101976.68","Total Cost":"952570.28","Total Profit":"149406.40"},{"Region":"Europe","Country":"Malta","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"2/28/2014","Order ID":"152807223","Ship Date":"3/4/2014","Units Sold":"7908","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5149768.68","Total Cost":"4151383.68","Total Profit":"998385.00"},{"Region":"Asia","Country":"Brunei","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"11/2/2011","Order ID":"681655156","Ship Date":"12/13/2011","Units Sold":"5763","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2519583.60","Total Cost":"1517570.79","Total Profit":"1002012.81"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/19/2014","Order ID":"464270484","Ship Date":"10/31/2014","Units Sold":"6808","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4549582.16","Total Cost":"3421292.32","Total Profit":"1128289.84"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/11/2016","Order ID":"327264535","Ship Date":"12/16/2016","Units Sold":"3703","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"34548.99","Total Cost":"25624.76","Total Profit":"8924.23"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"1/7/2017","Order ID":"267561137","Ship Date":"2/22/2017","Units Sold":"6141","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2590826.49","Total Cost":"2239561.29","Total Profit":"351265.20"},{"Region":"Europe","Country":"Vatican City","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"11/1/2014","Order ID":"802396619","Ship Date":"11/24/2014","Units Sold":"5845","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"638741.60","Total Cost":"209484.80","Total Profit":"429256.80"},{"Region":"Europe","Country":"Monaco","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/21/2015","Order ID":"719319808","Ship Date":"2/2/2015","Units Sold":"1571","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1023050.91","Total Cost":"824712.16","Total Profit":"198338.75"},{"Region":"Europe","Country":"Germany","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"11/1/2015","Order ID":"226192033","Ship Date":"11/6/2015","Units Sold":"4104","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"335419.92","Total Cost":"232573.68","Total Profit":"102846.24"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"8/8/2012","Order ID":"501187121","Ship Date":"9/8/2012","Units Sold":"1262","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"843356.74","Total Cost":"634205.48","Total Profit":"209151.26"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/3/2017","Order ID":"542791402","Ship Date":"2/2/2017","Units Sold":"2893","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1220527.77","Total Cost":"1055048.17","Total Profit":"165479.60"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/3/2015","Order ID":"319803702","Ship Date":"5/7/2015","Units Sold":"5877","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"905410.62","Total Cost":"534395.61","Total Profit":"371015.01"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/29/2017","Order ID":"321335351","Ship Date":"6/3/2017","Units Sold":"9126","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"433028.70","Total Cost":"290115.54","Total Profit":"142913.16"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"5/7/2015","Order ID":"206810176","Ship Date":"5/23/2015","Units Sold":"8582","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3752050.40","Total Cost":"2259898.06","Total Profit":"1492152.34"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"1/26/2010","Order ID":"155964505","Ship Date":"2/16/2010","Units Sold":"2218","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"338422.44","Total Cost":"216121.92","Total Profit":"122300.52"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/7/2014","Order ID":"418847167","Ship Date":"10/12/2014","Units Sold":"5039","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"550661.92","Total Cost":"180597.76","Total Profit":"370064.16"},{"Region":"Europe","Country":"Belarus","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"2/21/2013","Order ID":"865819489","Ship Date":"2/23/2013","Units Sold":"4082","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"628872.92","Total Cost":"371176.26","Total Profit":"257696.66"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"12/19/2016","Order ID":"537555301","Ship Date":"12/28/2016","Units Sold":"3414","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"31852.62","Total Cost":"23624.88","Total Profit":"8227.74"},{"Region":"Sub-Saharan Africa","Country":"Mali","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"1/13/2016","Order ID":"795040929","Ship Date":"1/16/2016","Units Sold":"9133","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"433360.85","Total Cost":"290338.07","Total Profit":"143022.78"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/21/2012","Order ID":"369575202","Ship Date":"9/12/2012","Units Sold":"4370","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"666774.60","Total Cost":"425812.80","Total Profit":"240961.80"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/21/2010","Order ID":"312769448","Ship Date":"3/7/2010","Units Sold":"4285","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"881424.50","Total Cost":"501816.35","Total Profit":"379608.15"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"10/3/2016","Order ID":"846547496","Ship Date":"10/22/2016","Units Sold":"1071","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"468241.20","Total Cost":"282026.43","Total Profit":"186214.77"},{"Region":"Europe","Country":"Slovenia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"6/20/2011","Order ID":"913145673","Ship Date":"7/26/2011","Units Sold":"8952","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"424772.40","Total Cost":"284584.08","Total Profit":"140188.32"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"12/24/2015","Order ID":"425112807","Ship Date":"12/29/2015","Units Sold":"9181","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1003299.68","Total Cost":"329047.04","Total Profit":"674252.64"},{"Region":"Asia","Country":"China","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"3/11/2015","Order ID":"715310227","Ship Date":"4/11/2015","Units Sold":"5047","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3286656.87","Total Cost":"2649473.12","Total Profit":"637183.75"},{"Region":"Europe","Country":"Slovakia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/1/2014","Order ID":"486911761","Ship Date":"1/3/2014","Units Sold":"6865","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1752497.20","Total Cost":"1094418.30","Total Profit":"658078.90"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/22/2010","Order ID":"763403737","Ship Date":"11/16/2010","Units Sold":"6985","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3053842.00","Total Cost":"1839360.05","Total Profit":"1214481.95"},{"Region":"Europe","Country":"Estonia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"6/3/2016","Order ID":"838584983","Ship Date":"7/15/2016","Units Sold":"4787","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"730400.46","Total Cost":"466445.28","Total Profit":"263955.18"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"6/6/2012","Order ID":"526566827","Ship Date":"6/13/2012","Units Sold":"1680","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"137306.40","Total Cost":"95205.60","Total Profit":"42100.80"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/28/2015","Order ID":"611773097","Ship Date":"8/14/2015","Units Sold":"6109","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1256621.30","Total Cost":"715424.99","Total Profit":"541196.31"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"5/6/2013","Order ID":"598940122","Ship Date":"6/4/2013","Units Sold":"8547","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"934016.16","Total Cost":"306324.48","Total Profit":"627691.68"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/4/2013","Order ID":"963116729","Ship Date":"5/12/2013","Units Sold":"6497","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"60617.01","Total Cost":"44959.24","Total Profit":"15657.77"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/20/2016","Order ID":"899664247","Ship Date":"4/23/2016","Units Sold":"9498","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6347228.46","Total Cost":"4773124.92","Total Profit":"1574103.54"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"3/5/2013","Order ID":"574256503","Ship Date":"3/27/2013","Units Sold":"4115","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"336318.95","Total Cost":"233197.05","Total Profit":"103121.90"},{"Region":"Asia","Country":"Japan","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"10/18/2010","Order ID":"672879827","Ship Date":"10/23/2010","Units Sold":"8948","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2284245.44","Total Cost":"1426490.16","Total Profit":"857755.28"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/7/2013","Order ID":"151833045","Ship Date":"5/9/2013","Units Sold":"9627","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4208924.40","Total Cost":"2535077.91","Total Profit":"1673846.49"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"12/10/2010","Order ID":"287727487","Ship Date":"1/5/2011","Units Sold":"3812","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"973127.36","Total Cost":"607709.04","Total Profit":"365418.32"},{"Region":"Asia","Country":"Thailand","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/6/2013","Order ID":"627486979","Ship Date":"9/30/2013","Units Sold":"6196","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"677098.88","Total Cost":"222064.64","Total Profit":"455034.24"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"1/9/2010","Order ID":"338347852","Ship Date":"1/22/2010","Units Sold":"3503","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"894245.84","Total Cost":"558448.26","Total Profit":"335797.58"},{"Region":"Europe","Country":"Vatican City","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/26/2015","Order ID":"457858932","Ship Date":"2/8/2016","Units Sold":"9487","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1447526.46","Total Cost":"924413.28","Total Profit":"523113.18"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/16/2010","Order ID":"743881547","Ship Date":"11/18/2010","Units Sold":"9935","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1515882.30","Total Cost":"968066.40","Total Profit":"547815.90"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/19/2016","Order ID":"124589526","Ship Date":"6/20/2016","Units Sold":"7664","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"837521.92","Total Cost":"274677.76","Total Profit":"562844.16"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/26/2010","Order ID":"748469197","Ship Date":"5/5/2010","Units Sold":"7523","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1547481.10","Total Cost":"881018.53","Total Profit":"666462.57"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/19/2012","Order ID":"334319388","Ship Date":"12/8/2012","Units Sold":"1391","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"586848.99","Total Cost":"507283.79","Total Profit":"79565.20"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"2/20/2015","Order ID":"721251428","Ship Date":"3/24/2015","Units Sold":"3180","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"29669.40","Total Cost":"22005.60","Total Profit":"7663.80"},{"Region":"Europe","Country":"Macedonia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/26/2012","Order ID":"218689143","Ship Date":"12/28/2012","Units Sold":"3832","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"181828.40","Total Cost":"121819.28","Total Profit":"60009.12"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"12/20/2010","Order ID":"356368863","Ship Date":"12/21/2010","Units Sold":"6321","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2666766.69","Total Cost":"2305205.49","Total Profit":"361561.20"},{"Region":"Asia","Country":"India","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"11/29/2010","Order ID":"934339416","Ship Date":"1/5/2011","Units Sold":"651","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"423937.71","Total Cost":"341748.96","Total Profit":"82188.75"},{"Region":"Europe","Country":"Spain","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"9/14/2015","Order ID":"472962129","Ship Date":"10/15/2015","Units Sold":"8859","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"724046.07","Total Cost":"502039.53","Total Profit":"222006.54"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"5/12/2010","Order ID":"262910830","Ship Date":"6/25/2010","Units Sold":"12","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1848.72","Total Cost":"1091.16","Total Profit":"757.56"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"4/8/2011","Order ID":"315171849","Ship Date":"5/25/2011","Units Sold":"5209","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"802498.54","Total Cost":"473654.37","Total Profit":"328844.17"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/4/2016","Order ID":"711044013","Ship Date":"12/7/2016","Units Sold":"2579","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1723468.33","Total Cost":"1296050.66","Total Profit":"427417.67"},{"Region":"Europe","Country":"Armenia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/9/2011","Order ID":"252138650","Ship Date":"11/16/2011","Units Sold":"2284","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"583059.52","Total Cost":"364115.28","Total Profit":"218944.24"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/16/2015","Order ID":"510379588","Ship Date":"5/29/2015","Units Sold":"1517","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"14153.61","Total Cost":"10497.64","Total Profit":"3655.97"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/2/2010","Order ID":"878003156","Ship Date":"7/6/2010","Units Sold":"9500","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"450775.00","Total Cost":"302005.00","Total Profit":"148770.00"},{"Region":"Europe","Country":"Malta","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"1/28/2015","Order ID":"817558181","Ship Date":"2/25/2015","Units Sold":"2489","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"203425.97","Total Cost":"141051.63","Total Profit":"62374.34"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"3/17/2010","Order ID":"311905992","Ship Date":"3/28/2010","Units Sold":"8769","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"958276.32","Total Cost":"314280.96","Total Profit":"643995.36"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"2/28/2012","Order ID":"314220416","Ship Date":"3/18/2012","Units Sold":"3659","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"934069.52","Total Cost":"583317.78","Total Profit":"350751.74"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/15/2015","Order ID":"497987782","Ship Date":"8/17/2015","Units Sold":"4506","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2934352.26","Total Cost":"2365469.76","Total Profit":"568882.50"},{"Region":"Europe","Country":"Russia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/21/2012","Order ID":"607006919","Ship Date":"4/8/2012","Units Sold":"5691","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3706036.11","Total Cost":"2987547.36","Total Profit":"718488.75"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/21/2010","Order ID":"905389153","Ship Date":"4/28/2010","Units Sold":"3625","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"745662.50","Total Cost":"424523.75","Total Profit":"321138.75"},{"Region":"Europe","Country":"San Marino","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/1/2015","Order ID":"827558314","Ship Date":"3/21/2015","Units Sold":"1750","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1169472.50","Total Cost":"879445.00","Total Profit":"290027.50"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/7/2010","Order ID":"328250730","Ship Date":"8/14/2010","Units Sold":"5540","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1414251.20","Total Cost":"883186.80","Total Profit":"531064.40"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"3/23/2015","Order ID":"332515227","Ship Date":"4/23/2015","Units Sold":"7500","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"69975.00","Total Cost":"51900.00","Total Profit":"18075.00"},{"Region":"Europe","Country":"Kosovo","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"5/8/2011","Order ID":"485713136","Ship Date":"6/13/2011","Units Sold":"2165","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"445340.50","Total Cost":"253543.15","Total Profit":"191797.35"},{"Region":"Europe","Country":"Estonia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"2/5/2016","Order ID":"503518283","Ship Date":"2/27/2016","Units Sold":"1104","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"465766.56","Total Cost":"402617.76","Total Profit":"63148.80"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"6/12/2017","Order ID":"621916997","Ship Date":"7/10/2017","Units Sold":"7915","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2020541.20","Total Cost":"1261809.30","Total Profit":"758731.90"},{"Region":"Europe","Country":"Belarus","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"10/21/2015","Order ID":"247208106","Ship Date":"11/15/2015","Units Sold":"3227","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2101454.67","Total Cost":"1694045.92","Total Profit":"407408.75"},{"Region":"Asia","Country":"Indonesia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"8/18/2012","Order ID":"206002938","Ship Date":"8/20/2012","Units Sold":"9702","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4241714.40","Total Cost":"2554827.66","Total Profit":"1686886.74"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"4/2/2014","Order ID":"495225322","Ship Date":"5/7/2014","Units Sold":"7033","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"768566.24","Total Cost":"252062.72","Total Profit":"516503.52"},{"Region":"Asia","Country":"Japan","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"11/25/2012","Order ID":"732111585","Ship Date":"12/6/2012","Units Sold":"6942","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"567369.66","Total Cost":"393403.14","Total Profit":"173966.52"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/1/2013","Order ID":"604210555","Ship Date":"4/9/2013","Units Sold":"8185","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1683654.50","Total Cost":"958545.35","Total Profit":"725109.15"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"6/10/2013","Order ID":"319383561","Ship Date":"6/26/2013","Units Sold":"1548","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"238484.88","Total Cost":"140759.64","Total Profit":"97725.24"},{"Region":"Asia","Country":"Tajikistan","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"6/28/2016","Order ID":"155804431","Ship Date":"7/13/2016","Units Sold":"4848","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3239772.96","Total Cost":"2436313.92","Total Profit":"803459.04"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"4/27/2011","Order ID":"911959493","Ship Date":"6/11/2011","Units Sold":"7934","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2025391.52","Total Cost":"1264838.28","Total Profit":"760553.24"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"6/4/2014","Order ID":"756647574","Ship Date":"7/12/2014","Units Sold":"7687","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3243068.43","Total Cost":"2803372.03","Total Profit":"439696.40"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"1/26/2013","Order ID":"178980004","Ship Date":"3/2/2013","Units Sold":"3015","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"143061.75","Total Cost":"95846.85","Total Profit":"47214.90"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/13/2014","Order ID":"638380610","Ship Date":"8/2/2014","Units Sold":"9864","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1519647.84","Total Cost":"896933.52","Total Profit":"622714.32"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/26/2011","Order ID":"514585721","Ship Date":"2/2/2012","Units Sold":"6205","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4040758.05","Total Cost":"3257376.80","Total Profit":"783381.25"},{"Region":"Europe","Country":"Poland","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"1/16/2011","Order ID":"957644164","Ship Date":"2/6/2011","Units Sold":"7044","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1074773.52","Total Cost":"686367.36","Total Profit":"388406.16"},{"Region":"Europe","Country":"Russia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/23/2010","Order ID":"937917268","Ship Date":"11/8/2010","Units Sold":"9417","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4117112.40","Total Cost":"2479778.61","Total Profit":"1637333.79"},{"Region":"Europe","Country":"Germany","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"3/27/2015","Order ID":"396078860","Ship Date":"4/5/2015","Units Sold":"7391","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3231345.20","Total Cost":"1946272.03","Total Profit":"1285073.17"},{"Region":"Europe","Country":"Kosovo","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/11/2014","Order ID":"693115270","Ship Date":"4/28/2014","Units Sold":"7066","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1803808.48","Total Cost":"1126461.72","Total Profit":"677346.76"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"7/19/2017","Order ID":"560325324","Ship Date":"8/5/2017","Units Sold":"1570","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"241874.20","Total Cost":"142760.10","Total Profit":"99114.10"},{"Region":"Europe","Country":"San Marino","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"7/9/2013","Order ID":"149320352","Ship Date":"7/27/2013","Units Sold":"6065","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"934373.90","Total Cost":"551490.45","Total Profit":"382883.45"},{"Region":"Asia","Country":"Japan","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"4/27/2010","Order ID":"582024180","Ship Date":"6/6/2010","Units Sold":"2744","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"25601.52","Total Cost":"18988.48","Total Profit":"6613.04"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/24/2017","Order ID":"800673139","Ship Date":"4/24/2017","Units Sold":"5829","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2548438.80","Total Cost":"1534950.57","Total Profit":"1013488.23"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/3/2010","Order ID":"717816054","Ship Date":"8/5/2010","Units Sold":"6577","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"61363.41","Total Cost":"45512.84","Total Profit":"15850.57"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"12/1/2012","Order ID":"766314256","Ship Date":"1/19/2013","Units Sold":"8272","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5386809.12","Total Cost":"4342469.12","Total Profit":"1044340.00"},{"Region":"Europe","Country":"Belgium","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"3/23/2014","Order ID":"549341571","Ship Date":"4/10/2014","Units Sold":"1233","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"134742.24","Total Cost":"44190.72","Total Profit":"90551.52"},{"Region":"Europe","Country":"Portugal","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"10/23/2012","Order ID":"190384328","Ship Date":"12/9/2012","Units Sold":"7808","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"370489.60","Total Cost":"248216.32","Total Profit":"122273.28"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"12/3/2011","Order ID":"783241355","Ship Date":"12/30/2011","Units Sold":"7377","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"806158.56","Total Cost":"264391.68","Total Profit":"541766.88"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"11/13/2015","Order ID":"342023980","Ship Date":"11/27/2015","Units Sold":"1351","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"64104.95","Total Cost":"42948.29","Total Profit":"21156.66"},{"Region":"North America","Country":"United States of America","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/1/2011","Order ID":"551156032","Ship Date":"2/5/2011","Units Sold":"8173","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2086403.44","Total Cost":"1302939.66","Total Profit":"783463.78"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/18/2015","Order ID":"915373837","Ship Date":"5/20/2015","Units Sold":"8315","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"679584.95","Total Cost":"471211.05","Total Profit":"208373.90"},{"Region":"Europe","Country":"Ukraine","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"7/9/2013","Order ID":"109726226","Ship Date":"7/15/2013","Units Sold":"9283","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1909513.10","Total Cost":"1087132.13","Total Profit":"822380.97"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"2/1/2014","Order ID":"929574525","Ship Date":"2/26/2014","Units Sold":"614","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"93684.12","Total Cost":"59828.16","Total Profit":"33855.96"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"5/8/2015","Order ID":"840592563","Ship Date":"5/12/2015","Units Sold":"8874","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"82794.42","Total Cost":"61408.08","Total Profit":"21386.34"},{"Region":"Europe","Country":"Kosovo","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/23/2016","Order ID":"528766667","Ship Date":"8/29/2016","Units Sold":"2662","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"410107.72","Total Cost":"242055.66","Total Profit":"168052.06"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/3/2014","Order ID":"750395667","Ship Date":"9/2/2014","Units Sold":"7608","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3209739.12","Total Cost":"2774561.52","Total Profit":"435177.60"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/9/2014","Order ID":"982090890","Ship Date":"7/16/2014","Units Sold":"1373","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"579254.97","Total Cost":"500719.37","Total Profit":"78535.60"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"2/25/2011","Order ID":"770776164","Ship Date":"3/24/2011","Units Sold":"8650","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"706964.50","Total Cost":"490195.50","Total Profit":"216769.00"},{"Region":"Europe","Country":"Netherlands","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/25/2015","Order ID":"183687818","Ship Date":"12/10/2015","Units Sold":"6162","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2599686.18","Total Cost":"2247219.78","Total Profit":"352466.40"},{"Region":"Europe","Country":"Switzerland","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/1/2014","Order ID":"258374679","Ship Date":"6/4/2014","Units Sold":"7664","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3350700.80","Total Cost":"2018161.12","Total Profit":"1332539.68"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/17/2016","Order ID":"752698075","Ship Date":"3/24/2016","Units Sold":"8942","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3909442.40","Total Cost":"2354696.86","Total Profit":"1554745.54"},{"Region":"Europe","Country":"Belarus","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/6/2012","Order ID":"594831836","Ship Date":"1/5/2013","Units Sold":"2814","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"433524.84","Total Cost":"255877.02","Total Profit":"177647.82"},{"Region":"Europe","Country":"Monaco","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/9/2012","Order ID":"133262288","Ship Date":"7/17/2012","Units Sold":"4127","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1804324.40","Total Cost":"1086762.91","Total Profit":"717561.49"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/16/2012","Order ID":"686788260","Ship Date":"5/24/2012","Units Sold":"4763","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"44438.79","Total Cost":"32959.96","Total Profit":"11478.83"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"2/14/2011","Order ID":"494521081","Ship Date":"4/1/2011","Units Sold":"8632","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"409588.40","Total Cost":"274411.28","Total Profit":"135177.12"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"5/28/2012","Order ID":"565884578","Ship Date":"6/18/2012","Units Sold":"6677","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4462038.79","Total Cost":"3355459.58","Total Profit":"1106579.21"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/12/2013","Order ID":"630615079","Ship Date":"3/16/2013","Units Sold":"1870","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"152835.10","Total Cost":"105972.90","Total Profit":"46862.20"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/30/2015","Order ID":"488761413","Ship Date":"3/9/2015","Units Sold":"4218","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"867642.60","Total Cost":"493969.98","Total Profit":"373672.62"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"8/10/2013","Order ID":"460684907","Ship Date":"8/19/2013","Units Sold":"5756","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1184009.20","Total Cost":"674085.16","Total Profit":"509924.04"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"6/9/2016","Order ID":"937059390","Ship Date":"6/16/2016","Units Sold":"5552","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"606722.56","Total Cost":"198983.68","Total Profit":"407738.88"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/26/2017","Order ID":"128871190","Ship Date":"3/30/2017","Units Sold":"4704","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1200837.12","Total Cost":"749911.68","Total Profit":"450925.44"},{"Region":"Europe","Country":"Finland","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"7/1/2014","Order ID":"817419135","Ship Date":"7/13/2014","Units Sold":"1342","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"204762.36","Total Cost":"130764.48","Total Profit":"73997.88"},{"Region":"Europe","Country":"Monaco","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"5/21/2015","Order ID":"904314553","Ship Date":"5/27/2015","Units Sold":"5627","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"858567.66","Total Cost":"548294.88","Total Profit":"310272.78"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"9/29/2016","Order ID":"161481273","Ship Date":"11/16/2016","Units Sold":"4752","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"225482.40","Total Cost":"151066.08","Total Profit":"74416.32"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"6/30/2016","Order ID":"681155622","Ship Date":"7/14/2016","Units Sold":"7940","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5306063.80","Total Cost":"3990167.60","Total Profit":"1315896.20"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/30/2017","Order ID":"125886428","Ship Date":"6/19/2017","Units Sold":"1446","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"966318.42","Total Cost":"726672.84","Total Profit":"239645.58"},{"Region":"Asia","Country":"Cambodia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"9/30/2015","Order ID":"278535020","Ship Date":"11/13/2015","Units Sold":"3557","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2316353.97","Total Cost":"1867282.72","Total Profit":"449071.25"},{"Region":"Asia","Country":"Singapore","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/13/2012","Order ID":"292275226","Ship Date":"10/2/2012","Units Sold":"9589","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1477281.34","Total Cost":"871927.77","Total Profit":"605353.57"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/15/2010","Order ID":"740593373","Ship Date":"4/2/2010","Units Sold":"6892","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"753157.76","Total Cost":"247009.28","Total Profit":"506148.48"},{"Region":"North America","Country":"Greenland","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"7/13/2015","Order ID":"467288291","Ship Date":"7/31/2015","Units Sold":"9844","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"467097.80","Total Cost":"312940.76","Total Profit":"154157.04"},{"Region":"Europe","Country":"Germany","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/23/2013","Order ID":"636471307","Ship Date":"1/21/2014","Units Sold":"4858","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1240150.24","Total Cost":"774462.36","Total Profit":"465687.88"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/1/2010","Order ID":"682566249","Ship Date":"12/21/2010","Units Sold":"5376","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"50158.08","Total Cost":"37201.92","Total Profit":"12956.16"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"10/13/2012","Order ID":"560309445","Ship Date":"11/7/2012","Units Sold":"6871","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4474463.91","Total Cost":"3607000.16","Total Profit":"867463.75"},{"Region":"Europe","Country":"Finland","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/22/2015","Order ID":"294749724","Ship Date":"10/6/2015","Units Sold":"1848","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"201949.44","Total Cost":"66232.32","Total Profit":"135717.12"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"12/10/2016","Order ID":"431248414","Ship Date":"12/31/2016","Units Sold":"4844","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"229847.80","Total Cost":"153990.76","Total Profit":"75857.04"},{"Region":"Europe","Country":"Croatia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"12/7/2010","Order ID":"685479342","Ship Date":"12/25/2010","Units Sold":"7425","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"811404.00","Total Cost":"266112.00","Total Profit":"545292.00"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/16/2015","Order ID":"393428838","Ship Date":"1/28/2016","Units Sold":"3191","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"814598.48","Total Cost":"508709.22","Total Profit":"305889.26"},{"Region":"Europe","Country":"Slovenia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"4/12/2017","Order ID":"761395728","Ship Date":"4/28/2017","Units Sold":"2771","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"426900.26","Total Cost":"251967.03","Total Profit":"174933.23"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/12/2016","Order ID":"815991342","Ship Date":"6/8/2016","Units Sold":"8826","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"82346.58","Total Cost":"61075.92","Total Profit":"21270.66"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/16/2011","Order ID":"554139506","Ship Date":"12/17/2011","Units Sold":"1049","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"9787.17","Total Cost":"7259.08","Total Profit":"2528.09"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"6/11/2011","Order ID":"493076550","Ship Date":"7/8/2011","Units Sold":"1163","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"777198.01","Total Cost":"584454.02","Total Profit":"192743.99"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/30/2011","Order ID":"320351302","Ship Date":"1/1/2012","Units Sold":"7924","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2022838.72","Total Cost":"1263244.08","Total Profit":"759594.64"},{"Region":"Asia","Country":"Cambodia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"7/11/2011","Order ID":"243825089","Ship Date":"7/16/2011","Units Sold":"2117","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"19751.61","Total Cost":"14649.64","Total Profit":"5101.97"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/11/2013","Order ID":"541671741","Ship Date":"5/8/2013","Units Sold":"1560","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"238024.80","Total Cost":"152006.40","Total Profit":"86018.40"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"9/4/2013","Order ID":"212377583","Ship Date":"10/12/2013","Units Sold":"6101","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4077115.27","Total Cost":"3065996.54","Total Profit":"1011118.73"},{"Region":"Europe","Country":"Romania","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"1/24/2014","Order ID":"124741446","Ship Date":"2/12/2014","Units Sold":"2621","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"399912.18","Total Cost":"255390.24","Total Profit":"144521.94"},{"Region":"Europe","Country":"Russia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/11/2016","Order ID":"767874658","Ship Date":"11/24/2016","Units Sold":"30","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"13116.00","Total Cost":"7899.90","Total Profit":"5216.10"},{"Region":"North America","Country":"Canada","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"3/10/2014","Order ID":"901201045","Ship Date":"3/13/2014","Units Sold":"4271","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"466734.88","Total Cost":"153072.64","Total Profit":"313662.24"},{"Region":"Europe","Country":"Iceland","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"5/16/2014","Order ID":"704456937","Ship Date":"6/18/2014","Units Sold":"3317","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"682306.90","Total Cost":"388453.87","Total Profit":"293853.03"},{"Region":"Asia","Country":"Singapore","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"6/13/2015","Order ID":"427691161","Ship Date":"7/19/2015","Units Sold":"2174","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"447191.80","Total Cost":"254597.14","Total Profit":"192594.66"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"7/10/2016","Order ID":"841265046","Ship Date":"7/19/2016","Units Sold":"7877","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"73492.41","Total Cost":"54508.84","Total Profit":"18983.57"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"12/22/2013","Order ID":"985852420","Ship Date":"1/29/2014","Units Sold":"4494","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"41929.02","Total Cost":"31098.48","Total Profit":"10830.54"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"10/26/2012","Order ID":"422439610","Ship Date":"11/14/2012","Units Sold":"8123","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1251429.38","Total Cost":"738624.39","Total Profit":"512804.99"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/10/2015","Order ID":"582325446","Ship Date":"6/19/2015","Units Sold":"1895","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"389801.50","Total Cost":"221923.45","Total Profit":"167878.05"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/15/2017","Order ID":"717121255","Ship Date":"5/15/2017","Units Sold":"970","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"648221.90","Total Cost":"487463.80","Total Profit":"160758.10"},{"Region":"Europe","Country":"France","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"12/6/2011","Order ID":"148750865","Ship Date":"1/13/2012","Units Sold":"7541","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3181472.49","Total Cost":"2750127.29","Total Profit":"431345.20"},{"Region":"Asia","Country":"Taiwan","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/20/2015","Order ID":"519450604","Ship Date":"11/24/2015","Units Sold":"5832","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2460462.48","Total Cost":"2126872.08","Total Profit":"333590.40"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/27/2013","Order ID":"841769301","Ship Date":"3/7/2013","Units Sold":"7097","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"336752.65","Total Cost":"225613.63","Total Profit":"111139.02"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"2/13/2011","Order ID":"648568284","Ship Date":"3/30/2011","Units Sold":"4623","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3089412.21","Total Cost":"2323242.42","Total Profit":"766169.79"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"12/1/2014","Order ID":"443021380","Ship Date":"12/13/2014","Units Sold":"8726","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"953577.28","Total Cost":"312739.84","Total Profit":"640837.44"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"4/15/2015","Order ID":"348614919","Ship Date":"6/2/2015","Units Sold":"1756","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"267930.48","Total Cost":"171104.64","Total Profit":"96825.84"},{"Region":"Europe","Country":"Romania","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/21/2015","Order ID":"559147727","Ship Date":"8/1/2015","Units Sold":"3093","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"146762.85","Total Cost":"98326.47","Total Profit":"48436.38"},{"Region":"Europe","Country":"Albania","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"3/15/2012","Order ID":"888731133","Ship Date":"3/15/2012","Units Sold":"4147","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2700567.87","Total Cost":"2177009.12","Total Profit":"523558.75"},{"Region":"Europe","Country":"Slovenia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"8/25/2014","Order ID":"321788966","Ship Date":"9/13/2014","Units Sold":"3361","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"31358.13","Total Cost":"23258.12","Total Profit":"8100.01"},{"Region":"Asia","Country":"Nepal","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/23/2010","Order ID":"163057553","Ship Date":"4/27/2010","Units Sold":"1208","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"98729.84","Total Cost":"68457.36","Total Profit":"30272.48"},{"Region":"Europe","Country":"Moldova ","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/4/2014","Order ID":"887585723","Ship Date":"4/7/2014","Units Sold":"5194","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2270816.80","Total Cost":"1367736.02","Total Profit":"903080.78"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"5/6/2012","Order ID":"790734803","Ship Date":"5/30/2012","Units Sold":"4855","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"45297.15","Total Cost":"33596.60","Total Profit":"11700.55"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/3/2010","Order ID":"938178622","Ship Date":"6/17/2010","Units Sold":"6758","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1390120.60","Total Cost":"791429.38","Total Profit":"598691.22"},{"Region":"Sub-Saharan Africa","Country":"Mali","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"5/23/2015","Order ID":"215903508","Ship Date":"6/27/2015","Units Sold":"9501","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2425415.28","Total Cost":"1514649.42","Total Profit":"910765.86"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/20/2016","Order ID":"280208289","Ship Date":"5/25/2016","Units Sold":"8714","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2224509.92","Total Cost":"1389185.88","Total Profit":"835324.04"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/1/2010","Order ID":"607704293","Ship Date":"11/26/2010","Units Sold":"2060","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"19219.80","Total Cost":"14255.20","Total Profit":"4964.60"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"8/31/2016","Order ID":"745315349","Ship Date":"9/8/2016","Units Sold":"4229","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2826113.83","Total Cost":"2125241.66","Total Profit":"700872.17"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/5/2014","Order ID":"760277783","Ship Date":"10/21/2014","Units Sold":"1946","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"850791.20","Total Cost":"512440.18","Total Profit":"338351.02"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"4/26/2013","Order ID":"790140426","Ship Date":"6/7/2013","Units Sold":"8965","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"732709.45","Total Cost":"508046.55","Total Profit":"224662.90"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"7/12/2014","Order ID":"592764604","Ship Date":"7/22/2014","Units Sold":"1074","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"717721.98","Total Cost":"539727.96","Total Profit":"177994.02"},{"Region":"Europe","Country":"Monaco","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"7/12/2017","Order ID":"896324145","Ship Date":"7/18/2017","Units Sold":"1088","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"223801.60","Total Cost":"127415.68","Total Profit":"96385.92"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/12/2015","Order ID":"249305379","Ship Date":"2/27/2015","Units Sold":"3857","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2511716.97","Total Cost":"2024770.72","Total Profit":"486946.25"},{"Region":"North America","Country":"Canada","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/3/2012","Order ID":"870507133","Ship Date":"4/5/2012","Units Sold":"1260","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"550872.00","Total Cost":"331795.80","Total Profit":"219076.20"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/24/2015","Order ID":"999040734","Ship Date":"4/4/2015","Units Sold":"7209","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"787799.52","Total Cost":"258370.56","Total Profit":"529428.96"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"4/19/2012","Order ID":"744330012","Ship Date":"5/6/2012","Units Sold":"2646","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1768242.42","Total Cost":"1329720.84","Total Profit":"438521.58"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/28/2015","Order ID":"736111295","Ship Date":"11/8/2015","Units Sold":"545","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"25860.25","Total Cost":"17325.55","Total Profit":"8534.70"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"2/24/2012","Order ID":"774433410","Ship Date":"3/11/2012","Units Sold":"910","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"43179.50","Total Cost":"28928.90","Total Profit":"14250.60"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/26/2011","Order ID":"279657685","Ship Date":"1/11/2012","Units Sold":"5779","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"631529.12","Total Cost":"207119.36","Total Profit":"424409.76"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/1/2015","Order ID":"542457950","Ship Date":"7/21/2015","Units Sold":"4217","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2746152.57","Total Cost":"2213756.32","Total Profit":"532396.25"},{"Region":"Asia","Country":"Cambodia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"2/6/2016","Order ID":"673820531","Ship Date":"3/18/2016","Units Sold":"7324","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"347523.80","Total Cost":"232829.96","Total Profit":"114693.84"},{"Region":"Europe","Country":"Finland","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"7/17/2012","Order ID":"755044257","Ship Date":"9/5/2012","Units Sold":"3229","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1411718.80","Total Cost":"850292.57","Total Profit":"561426.23"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/25/2011","Order ID":"487740457","Ship Date":"11/26/2011","Units Sold":"2095","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"319655.10","Total Cost":"204136.80","Total Profit":"115518.30"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/7/2011","Order ID":"543832957","Ship Date":"1/17/2011","Units Sold":"1112","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"169668.96","Total Cost":"108353.28","Total Profit":"61315.68"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"5/24/2015","Order ID":"315558087","Ship Date":"5/25/2015","Units Sold":"9505","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6351906.35","Total Cost":"4776642.70","Total Profit":"1575263.65"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"8/23/2012","Order ID":"165464675","Ship Date":"10/2/2012","Units Sold":"3529","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"900883.12","Total Cost":"562593.18","Total Profit":"338289.94"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/8/2014","Order ID":"976414048","Ship Date":"3/11/2014","Units Sold":"1470","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"13715.10","Total Cost":"10172.40","Total Profit":"3542.70"},{"Region":"Europe","Country":"Ukraine","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"7/18/2013","Order ID":"101580035","Ship Date":"7/25/2013","Units Sold":"8645","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"410205.25","Total Cost":"274824.55","Total Profit":"135380.70"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"11/29/2012","Order ID":"814448964","Ship Date":"1/1/2013","Units Sold":"2402","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"22410.66","Total Cost":"16621.84","Total Profit":"5788.82"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"9/28/2011","Order ID":"158819663","Ship Date":"11/13/2011","Units Sold":"7122","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4759418.94","Total Cost":"3579089.88","Total Profit":"1180329.06"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"7/20/2010","Order ID":"198803460","Ship Date":"8/17/2010","Units Sold":"9217","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4029672.40","Total Cost":"2427112.61","Total Profit":"1602559.79"},{"Region":"Europe","Country":"Greece","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"9/18/2014","Order ID":"368824183","Ship Date":"11/7/2014","Units Sold":"2127","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"542980.56","Total Cost":"339086.34","Total Profit":"203894.22"},{"Region":"Europe","Country":"Georgia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"7/11/2015","Order ID":"623618161","Ship Date":"8/22/2015","Units Sold":"1327","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"272963.90","Total Cost":"155404.97","Total Profit":"117558.93"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/11/2016","Order ID":"988234221","Ship Date":"10/6/2016","Units Sold":"9322","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6070579.62","Total Cost":"4893677.12","Total Profit":"1176902.50"},{"Region":"Europe","Country":"Lithuania","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"6/10/2015","Order ID":"208033692","Ship Date":"7/15/2015","Units Sold":"647","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"98719.26","Total Cost":"63043.68","Total Profit":"35675.58"},{"Region":"Europe","Country":"Germany","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/24/2013","Order ID":"698690402","Ship Date":"12/6/2013","Units Sold":"6871","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"64106.43","Total Cost":"47547.32","Total Profit":"16559.11"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"12/10/2014","Order ID":"896190679","Ship Date":"1/14/2015","Units Sold":"1592","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"696022.40","Total Cost":"419221.36","Total Profit":"276801.04"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"8/28/2011","Order ID":"206833350","Ship Date":"10/2/2011","Units Sold":"5439","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2294659.71","Total Cost":"1983548.91","Total Profit":"311110.80"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/29/2012","Order ID":"357229745","Ship Date":"1/28/2013","Units Sold":"1075","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"453531.75","Total Cost":"392041.75","Total Profit":"61490.00"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/18/2010","Order ID":"444303691","Ship Date":"4/6/2010","Units Sold":"8190","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"388615.50","Total Cost":"260360.10","Total Profit":"128255.40"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"6/16/2010","Order ID":"985291516","Ship Date":"7/8/2010","Units Sold":"8510","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"403799.50","Total Cost":"270532.90","Total Profit":"133266.60"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/20/2011","Order ID":"767742049","Ship Date":"2/23/2011","Units Sold":"788","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"162091.60","Total Cost":"92282.68","Total Profit":"69808.92"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/29/2010","Order ID":"899516618","Ship Date":"2/21/2010","Units Sold":"5811","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"895242.66","Total Cost":"528394.23","Total Profit":"366848.43"},{"Region":"Europe","Country":"Lithuania","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/16/2010","Order ID":"758789050","Ship Date":"8/2/2010","Units Sold":"1397","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"610768.40","Total Cost":"367872.01","Total Profit":"242896.39"},{"Region":"North America","Country":"Canada","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/3/2016","Order ID":"244045674","Ship Date":"7/12/2016","Units Sold":"7393","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3119032.77","Total Cost":"2696153.17","Total Profit":"422879.60"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/7/2014","Order ID":"224085319","Ship Date":"4/5/2014","Units Sold":"680","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"104760.80","Total Cost":"61832.40","Total Profit":"42928.40"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"7/21/2013","Order ID":"288019311","Ship Date":"8/10/2013","Units Sold":"169","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"112937.63","Total Cost":"84929.26","Total Profit":"28008.37"},{"Region":"Europe","Country":"Albania","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/26/2014","Order ID":"995271480","Ship Date":"5/10/2014","Units Sold":"1803","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"277770.18","Total Cost":"163946.79","Total Profit":"113823.39"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/25/2017","Order ID":"725578153","Ship Date":"3/31/2017","Units Sold":"3554","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"907265.12","Total Cost":"566578.68","Total Profit":"340686.44"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/2/2012","Order ID":"628988158","Ship Date":"10/31/2012","Units Sold":"428","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"34980.44","Total Cost":"24254.76","Total Profit":"10725.68"},{"Region":"Asia","Country":"Cambodia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/20/2015","Order ID":"575862824","Ship Date":"3/22/2015","Units Sold":"9462","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3991923.18","Total Cost":"3450696.78","Total Profit":"541226.40"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"3/10/2013","Order ID":"506875979","Ship Date":"4/23/2013","Units Sold":"4721","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1991742.69","Total Cost":"1721701.49","Total Profit":"270041.20"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/3/2011","Order ID":"883013951","Ship Date":"12/22/2011","Units Sold":"2306","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"351849.48","Total Cost":"224696.64","Total Profit":"127152.84"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"8/21/2013","Order ID":"435575568","Ship Date":"10/1/2013","Units Sold":"5345","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1364471.60","Total Cost":"852099.90","Total Profit":"512371.70"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"2/13/2014","Order ID":"216172158","Ship Date":"2/23/2014","Units Sold":"9000","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"83970.00","Total Cost":"62280.00","Total Profit":"21690.00"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/5/2014","Order ID":"446727550","Ship Date":"1/20/2014","Units Sold":"5464","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"259266.80","Total Cost":"173700.56","Total Profit":"85566.24"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/7/2015","Order ID":"969478070","Ship Date":"1/13/2015","Units Sold":"8960","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1843072.00","Total Cost":"1049305.60","Total Profit":"793766.40"},{"Region":"North America","Country":"Greenland","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"2/13/2016","Order ID":"796972548","Ship Date":"3/7/2016","Units Sold":"742","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"113214.36","Total Cost":"72300.48","Total Profit":"40913.88"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"5/13/2017","Order ID":"362072312","Ship Date":"6/1/2017","Units Sold":"4098","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"842958.60","Total Cost":"479916.78","Total Profit":"363041.82"},{"Region":"Asia","Country":"Taiwan","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/30/2016","Order ID":"167951190","Ship Date":"3/5/2016","Units Sold":"9344","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"443372.80","Total Cost":"297045.76","Total Profit":"146327.04"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"8/29/2010","Order ID":"338095510","Ship Date":"9/23/2010","Units Sold":"8829","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2253867.12","Total Cost":"1407519.18","Total Profit":"846347.94"},{"Region":"Asia","Country":"Thailand","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/2/2011","Order ID":"166304099","Ship Date":"1/4/2012","Units Sold":"1933","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"18034.89","Total Cost":"13376.36","Total Profit":"4658.53"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"8/2/2016","Order ID":"366688287","Ship Date":"8/15/2016","Units Sold":"68","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"29729.60","Total Cost":"17906.44","Total Profit":"11823.16"},{"Region":"Europe","Country":"Spain","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"2/10/2011","Order ID":"823671901","Ship Date":"2/22/2011","Units Sold":"1674","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"136816.02","Total Cost":"94865.58","Total Profit":"41950.44"},{"Region":"Europe","Country":"Ireland","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"4/14/2013","Order ID":"141991269","Ship Date":"5/19/2013","Units Sold":"7227","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1102695.66","Total Cost":"704198.88","Total Profit":"398496.78"},{"Region":"Europe","Country":"Lithuania","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"6/20/2015","Order ID":"596695220","Ship Date":"7/19/2015","Units Sold":"4230","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1784594.70","Total Cost":"1542638.70","Total Profit":"241956.00"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"1/29/2011","Order ID":"483145081","Ship Date":"1/31/2011","Units Sold":"2221","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"242710.88","Total Cost":"79600.64","Total Profit":"163110.24"},{"Region":"Europe","Country":"Andorra","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/16/2013","Order ID":"867014682","Ship Date":"7/19/2013","Units Sold":"7766","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3395295.20","Total Cost":"2045020.78","Total Profit":"1350274.42"},{"Region":"Europe","Country":"Austria","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/12/2014","Order ID":"634290349","Ship Date":"9/23/2014","Units Sold":"9464","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1034225.92","Total Cost":"339189.76","Total Profit":"695036.16"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/30/2010","Order ID":"541270911","Ship Date":"12/17/2010","Units Sold":"2946","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"321938.88","Total Cost":"105584.64","Total Profit":"216354.24"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"4/11/2015","Order ID":"964567697","Ship Date":"5/24/2015","Units Sold":"5871","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1207664.70","Total Cost":"687552.81","Total Profit":"520111.89"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"1/30/2015","Order ID":"551104533","Ship Date":"2/16/2015","Units Sold":"2933","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"139170.85","Total Cost":"93240.07","Total Profit":"45930.78"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"12/5/2013","Order ID":"268117749","Ship Date":"12/9/2013","Units Sold":"855","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"218264.40","Total Cost":"136304.10","Total Profit":"81960.30"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"9/10/2012","Order ID":"253156173","Ship Date":"9/18/2012","Units Sold":"3392","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"31647.36","Total Cost":"23472.64","Total Profit":"8174.72"},{"Region":"Asia","Country":"North Korea","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/27/2013","Order ID":"264081132","Ship Date":"6/8/2013","Units Sold":"6330","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"975199.80","Total Cost":"575586.90","Total Profit":"399612.90"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/10/2015","Order ID":"129066455","Ship Date":"1/20/2015","Units Sold":"2487","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"511575.90","Total Cost":"291252.57","Total Profit":"220323.33"},{"Region":"Asia","Country":"Nepal","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/11/2010","Order ID":"196598470","Ship Date":"8/11/2010","Units Sold":"6711","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1023964.38","Total Cost":"653919.84","Total Profit":"370044.54"},{"Region":"Europe","Country":"Poland","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"7/10/2012","Order ID":"885476005","Ship Date":"7/17/2012","Units Sold":"882","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"135880.92","Total Cost":"80200.26","Total Profit":"55680.66"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/29/2012","Order ID":"434810388","Ship Date":"2/7/2012","Units Sold":"8911","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1359640.38","Total Cost":"868287.84","Total Profit":"491352.54"},{"Region":"Asia","Country":"Japan","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/1/2012","Order ID":"754025447","Ship Date":"10/14/2012","Units Sold":"1741","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"190256.48","Total Cost":"62397.44","Total Profit":"127859.04"},{"Region":"Sub-Saharan Africa","Country":"Mali","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"4/7/2011","Order ID":"672857511","Ship Date":"5/5/2011","Units Sold":"2345","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1527087.45","Total Cost":"1231031.20","Total Profit":"296056.25"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"4/7/2017","Order ID":"891355407","Ship Date":"5/1/2017","Units Sold":"728","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"185843.84","Total Cost":"116057.76","Total Profit":"69786.08"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"11/2/2010","Order ID":"829880464","Ship Date":"11/3/2010","Units Sold":"8926","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"729521.98","Total Cost":"505836.42","Total Profit":"223685.56"},{"Region":"Europe","Country":"Portugal","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"11/12/2014","Order ID":"879106509","Ship Date":"12/2/2014","Units Sold":"6007","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"925438.42","Total Cost":"546216.51","Total Profit":"379221.91"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"6/9/2015","Order ID":"150019872","Ship Date":"6/13/2015","Units Sold":"3069","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"783454.32","Total Cost":"489259.98","Total Profit":"294194.34"},{"Region":"Europe","Country":"Latvia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/23/2011","Order ID":"523919379","Ship Date":"2/6/2011","Units Sold":"8242","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5507881.34","Total Cost":"4141934.68","Total Profit":"1365946.66"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/17/2016","Order ID":"802416360","Ship Date":"7/13/2016","Units Sold":"1687","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"430657.36","Total Cost":"268941.54","Total Profit":"161715.82"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/4/2013","Order ID":"757434642","Ship Date":"5/5/2013","Units Sold":"597","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"91090.26","Total Cost":"58171.68","Total Profit":"32918.58"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/5/2014","Order ID":"681210553","Ship Date":"10/22/2014","Units Sold":"4196","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"458538.88","Total Cost":"150384.64","Total Profit":"308154.24"},{"Region":"Europe","Country":"Germany","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/5/2015","Order ID":"936292922","Ship Date":"1/12/2016","Units Sold":"8737","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5689621.77","Total Cost":"4586575.52","Total Profit":"1103046.25"},{"Region":"Europe","Country":"Kosovo","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/3/2013","Order ID":"605543076","Ship Date":"3/17/2013","Units Sold":"2508","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"23399.64","Total Cost":"17355.36","Total Profit":"6044.28"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/13/2014","Order ID":"642134845","Ship Date":"1/27/2015","Units Sold":"825","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"551322.75","Total Cost":"414595.50","Total Profit":"136727.25"},{"Region":"Asia","Country":"Japan","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/6/2016","Order ID":"719554555","Ship Date":"3/2/2016","Units Sold":"1038","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"264980.64","Total Cost":"165477.96","Total Profit":"99502.68"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"12/31/2015","Order ID":"581601035","Ship Date":"1/2/2016","Units Sold":"7526","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"615099.98","Total Cost":"426498.42","Total Profit":"188601.56"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"3/4/2015","Order ID":"492385613","Ship Date":"3/10/2015","Units Sold":"6700","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2826663.00","Total Cost":"2443423.00","Total Profit":"383240.00"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/31/2011","Order ID":"786332118","Ship Date":"6/6/2011","Units Sold":"2003","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"95042.35","Total Cost":"63675.37","Total Profit":"31366.98"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"3/2/2011","Order ID":"518176877","Ship Date":"4/7/2011","Units Sold":"8908","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1359182.64","Total Cost":"867995.52","Total Profit":"491187.12"},{"Region":"Europe","Country":"Belarus","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"7/28/2010","Order ID":"612968719","Ship Date":"8/11/2010","Units Sold":"9920","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"92553.60","Total Cost":"68646.40","Total Profit":"23907.20"},{"Region":"Asia","Country":"Bhutan","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/30/2014","Order ID":"716068971","Ship Date":"6/26/2014","Units Sold":"9576","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2444561.28","Total Cost":"1526605.92","Total Profit":"917955.36"},{"Region":"Europe","Country":"Portugal","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/3/2017","Order ID":"543151462","Ship Date":"4/18/2017","Units Sold":"9442","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"448022.90","Total Cost":"300161.18","Total Profit":"147861.72"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"5/26/2014","Order ID":"330202519","Ship Date":"5/31/2014","Units Sold":"3118","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"254834.14","Total Cost":"176697.06","Total Profit":"78137.08"},{"Region":"Asia","Country":"Maldives","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"1/29/2014","Order ID":"383520972","Ship Date":"3/2/2014","Units Sold":"1233","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"188131.14","Total Cost":"120143.52","Total Profit":"67987.62"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"2/6/2010","Order ID":"629718148","Ship Date":"2/17/2010","Units Sold":"6449","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1646300.72","Total Cost":"1028099.58","Total Profit":"618201.14"},{"Region":"Asia","Country":"Malaysia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"5/11/2016","Order ID":"165717875","Ship Date":"5/30/2016","Units Sold":"8457","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"924180.96","Total Cost":"303098.88","Total Profit":"621082.08"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/8/2017","Order ID":"408756482","Ship Date":"8/22/2017","Units Sold":"8981","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5848517.01","Total Cost":"4714665.76","Total Profit":"1133851.25"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/1/2010","Order ID":"146382796","Ship Date":"9/15/2010","Units Sold":"6777","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1044064.62","Total Cost":"616232.61","Total Profit":"427832.01"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/5/2016","Order ID":"486458146","Ship Date":"9/23/2016","Units Sold":"2630","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1757550.10","Total Cost":"1321680.20","Total Profit":"435869.90"},{"Region":"Asia","Country":"Vietnam","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/6/2015","Order ID":"807156360","Ship Date":"12/12/2015","Units Sold":"4358","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"476242.24","Total Cost":"156190.72","Total Profit":"320051.52"},{"Region":"Europe","Country":"Malta","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/27/2012","Order ID":"106963765","Ship Date":"4/5/2012","Units Sold":"1810","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"763620.90","Total Cost":"660088.90","Total Profit":"103532.00"},{"Region":"Europe","Country":"Cyprus","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/8/2014","Order ID":"154679191","Ship Date":"10/25/2014","Units Sold":"1865","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"383630.50","Total Cost":"218410.15","Total Profit":"165220.35"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"9/20/2010","Order ID":"539413964","Ship Date":"9/24/2010","Units Sold":"3434","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"32039.22","Total Cost":"23763.28","Total Profit":"8275.94"},{"Region":"Asia","Country":"Malaysia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"12/3/2014","Order ID":"920591914","Ship Date":"12/6/2014","Units Sold":"2460","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"506022.00","Total Cost":"288090.60","Total Profit":"217931.40"},{"Region":"Europe","Country":"San Marino","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"12/27/2012","Order ID":"577949368","Ship Date":"1/3/2013","Units Sold":"6916","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1422621.20","Total Cost":"809932.76","Total Profit":"612688.44"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/14/2010","Order ID":"661535155","Ship Date":"7/14/2010","Units Sold":"1808","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"16868.64","Total Cost":"12511.36","Total Profit":"4357.28"},{"Region":"Europe","Country":"Italy","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"3/24/2014","Order ID":"141710603","Ship Date":"4/22/2014","Units Sold":"4171","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1064772.88","Total Cost":"664940.82","Total Profit":"399832.06"},{"Region":"Europe","Country":"Andorra","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"11/15/2012","Order ID":"759149539","Ship Date":"12/14/2012","Units Sold":"8073","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"383063.85","Total Cost":"256640.67","Total Profit":"126423.18"},{"Region":"North America","Country":"Canada","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/1/2011","Order ID":"274838292","Ship Date":"8/17/2011","Units Sold":"9613","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4055628.57","Total Cost":"3505764.97","Total Profit":"549863.60"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/23/2012","Order ID":"120075690","Ship Date":"6/12/2012","Units Sold":"1920","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"394944.00","Total Cost":"224851.20","Total Profit":"170092.80"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/6/2011","Order ID":"446473062","Ship Date":"6/24/2011","Units Sold":"155","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"39568.40","Total Cost":"24710.10","Total Profit":"14858.30"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/26/2016","Order ID":"575954234","Ship Date":"8/15/2016","Units Sold":"6512","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"532225.76","Total Cost":"369035.04","Total Profit":"163190.72"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/16/2014","Order ID":"350755536","Ship Date":"9/21/2014","Units Sold":"5213","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"795399.54","Total Cost":"507954.72","Total Profit":"287444.82"},{"Region":"Europe","Country":"Netherlands","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/24/2012","Order ID":"583425796","Ship Date":"2/28/2012","Units Sold":"7513","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1146333.54","Total Cost":"732066.72","Total Profit":"414266.82"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"7/6/2016","Order ID":"806826341","Ship Date":"7/27/2016","Units Sold":"6699","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4476740.73","Total Cost":"3366515.46","Total Profit":"1110225.27"},{"Region":"Asia","Country":"Taiwan","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/23/2010","Order ID":"624131000","Ship Date":"3/31/2010","Units Sold":"3087","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"28801.71","Total Cost":"21362.04","Total Profit":"7439.67"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"1/30/2014","Order ID":"158826100","Ship Date":"3/3/2014","Units Sold":"9027","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1390699.62","Total Cost":"820825.11","Total Profit":"569874.51"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"5/30/2016","Order ID":"504710471","Ship Date":"6/2/2016","Units Sold":"3899","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"426082.72","Total Cost":"139740.16","Total Profit":"286342.56"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"11/14/2013","Order ID":"575895440","Ship Date":"11/19/2013","Units Sold":"9113","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1874544.10","Total Cost":"1067223.43","Total Profit":"807320.67"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/15/2015","Order ID":"256804835","Ship Date":"9/17/2015","Units Sold":"3112","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"640138.40","Total Cost":"364446.32","Total Profit":"275692.08"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/26/2016","Order ID":"852174985","Ship Date":"11/8/2016","Units Sold":"6370","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2784964.00","Total Cost":"1677412.10","Total Profit":"1107551.90"},{"Region":"Europe","Country":"Netherlands","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/24/2017","Order ID":"137054717","Ship Date":"3/28/2017","Units Sold":"6391","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"303252.95","Total Cost":"203169.89","Total Profit":"100083.06"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"4/14/2010","Order ID":"906805360","Ship Date":"4/22/2010","Units Sold":"2712","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1144165.68","Total Cost":"989039.28","Total Profit":"155126.40"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/17/2017","Order ID":"627100741","Ship Date":"3/9/2017","Units Sold":"1900","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1237299.00","Total Cost":"997424.00","Total Profit":"239875.00"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/22/2014","Order ID":"883927190","Ship Date":"5/19/2014","Units Sold":"2553","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"278991.84","Total Cost":"91499.52","Total Profit":"187492.32"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/29/2013","Order ID":"633583533","Ship Date":"8/27/2013","Units Sold":"302","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"201817.54","Total Cost":"151767.08","Total Profit":"50050.46"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/13/2012","Order ID":"252681100","Ship Date":"9/20/2012","Units Sold":"2807","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1227220.40","Total Cost":"739167.31","Total Profit":"488053.09"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/20/2013","Order ID":"188143718","Ship Date":"12/23/2013","Units Sold":"4762","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3101062.02","Total Cost":"2499859.52","Total Profit":"601202.50"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/26/2013","Order ID":"507207715","Ship Date":"10/7/2013","Units Sold":"2889","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"594267.30","Total Cost":"338330.79","Total Profit":"255936.51"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/17/2012","Order ID":"447421920","Ship Date":"7/19/2012","Units Sold":"944","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"412716.80","Total Cost":"248583.52","Total Profit":"164133.28"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"8/2/2012","Order ID":"666647660","Ship Date":"8/3/2012","Units Sold":"4712","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"43962.96","Total Cost":"32607.04","Total Profit":"11355.92"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"12/30/2012","Order ID":"993058764","Ship Date":"2/12/2013","Units Sold":"7011","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3065209.20","Total Cost":"1846206.63","Total Profit":"1219002.57"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/24/2014","Order ID":"875141561","Ship Date":"3/10/2014","Units Sold":"2690","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1751754.90","Total Cost":"1412142.40","Total Profit":"339612.50"},{"Region":"Europe","Country":"Netherlands","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"5/7/2013","Order ID":"731694877","Ship Date":"5/16/2013","Units Sold":"3629","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"296598.17","Total Cost":"205655.43","Total Profit":"90942.74"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"1/19/2017","Order ID":"601830041","Ship Date":"1/26/2017","Units Sold":"3738","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"954236.64","Total Cost":"595911.96","Total Profit":"358324.68"},{"Region":"Europe","Country":"Iceland","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/5/2013","Order ID":"594970881","Ship Date":"8/20/2013","Units Sold":"3960","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1731312.00","Total Cost":"1042786.80","Total Profit":"688525.20"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"11/1/2014","Order ID":"440853726","Ship Date":"12/15/2014","Units Sold":"7269","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1495233.30","Total Cost":"851272.59","Total Profit":"643960.71"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"4/13/2015","Order ID":"839527404","Ship Date":"4/21/2015","Units Sold":"3670","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"34241.10","Total Cost":"25396.40","Total Profit":"8844.70"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"2/28/2010","Order ID":"311353242","Ship Date":"3/14/2010","Units Sold":"5198","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3473667.46","Total Cost":"2612202.92","Total Profit":"861464.54"},{"Region":"Europe","Country":"Germany","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"10/15/2014","Order ID":"147005069","Ship Date":"11/3/2014","Units Sold":"921","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"141889.26","Total Cost":"83746.53","Total Profit":"58142.73"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"4/2/2015","Order ID":"357469213","Ship Date":"5/19/2015","Units Sold":"1939","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"18090.87","Total Cost":"13417.88","Total Profit":"4672.99"},{"Region":"Europe","Country":"Ukraine","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/20/2010","Order ID":"124044501","Ship Date":"1/27/2010","Units Sold":"6379","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"982748.74","Total Cost":"580042.47","Total Profit":"402706.27"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/2/2013","Order ID":"948342263","Ship Date":"12/30/2013","Units Sold":"4405","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"678634.30","Total Cost":"400546.65","Total Profit":"278087.65"},{"Region":"Europe","Country":"Albania","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/18/2016","Order ID":"802286326","Ship Date":"3/10/2016","Units Sold":"3207","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"659679.90","Total Cost":"375571.77","Total Profit":"284108.13"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/9/2014","Order ID":"878113019","Ship Date":"8/20/2014","Units Sold":"2011","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"413662.70","Total Cost":"235508.21","Total Profit":"178154.49"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/9/2012","Order ID":"638371169","Ship Date":"2/23/2012","Units Sold":"7070","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1454299.00","Total Cost":"827967.70","Total Profit":"626331.30"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"6/23/2012","Order ID":"965922105","Ship Date":"7/1/2012","Units Sold":"6671","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4344221.91","Total Cost":"3502008.16","Total Profit":"842213.75"},{"Region":"Europe","Country":"Ukraine","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"10/28/2016","Order ID":"113939654","Ship Date":"11/6/2016","Units Sold":"6131","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"501086.63","Total Cost":"347443.77","Total Profit":"153642.86"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"3/8/2012","Order ID":"455910146","Ship Date":"4/23/2012","Units Sold":"2798","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"132765.10","Total Cost":"88948.42","Total Profit":"43816.68"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/26/2013","Order ID":"835632407","Ship Date":"4/4/2013","Units Sold":"1054","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"704356.58","Total Cost":"529677.16","Total Profit":"174679.42"},{"Region":"Europe","Country":"Estonia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/9/2012","Order ID":"617217767","Ship Date":"9/21/2012","Units Sold":"7308","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1865586.24","Total Cost":"1165041.36","Total Profit":"700544.88"},{"Region":"Europe","Country":"Spain","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"2/28/2016","Order ID":"135090053","Ship Date":"4/10/2016","Units Sold":"5003","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1029117.10","Total Cost":"585901.33","Total Profit":"443215.77"},{"Region":"Asia","Country":"North Korea","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"11/8/2014","Order ID":"243985593","Ship Date":"11/15/2014","Units Sold":"9614","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1466904.12","Total Cost":"936788.16","Total Profit":"530115.96"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/28/2012","Order ID":"968953216","Ship Date":"7/29/2012","Units Sold":"3644","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"561394.64","Total Cost":"331348.92","Total Profit":"230045.72"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/7/2013","Order ID":"155354249","Ship Date":"12/24/2013","Units Sold":"1629","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"250963.74","Total Cost":"148124.97","Total Profit":"102838.77"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"6/4/2013","Order ID":"218862521","Ship Date":"6/30/2013","Units Sold":"5138","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"561480.64","Total Cost":"184145.92","Total Profit":"377334.72"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/1/2014","Order ID":"495464360","Ship Date":"5/5/2014","Units Sold":"7769","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3396606.80","Total Cost":"2045810.77","Total Profit":"1350796.03"},{"Region":"Europe","Country":"Portugal","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/22/2016","Order ID":"391458594","Ship Date":"12/29/2016","Units Sold":"152","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"23417.12","Total Cost":"13821.36","Total Profit":"9595.76"},{"Region":"Asia","Country":"Mongolia","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"4/3/2015","Order ID":"733456552","Ship Date":"4/24/2015","Units Sold":"4947","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3305931.69","Total Cost":"2486065.38","Total Profit":"819866.31"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"6/26/2015","Order ID":"618382060","Ship Date":"7/16/2015","Units Sold":"1848","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"281967.84","Total Cost":"180069.12","Total Profit":"101898.72"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"6/23/2017","Order ID":"563471448","Ship Date":"8/8/2017","Units Sold":"2578","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"658111.84","Total Cost":"410984.76","Total Profit":"247127.08"},{"Region":"Europe","Country":"Cyprus","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"10/2/2010","Order ID":"256273543","Ship Date":"10/24/2010","Units Sold":"5891","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"643768.48","Total Cost":"211133.44","Total Profit":"432635.04"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"3/7/2016","Order ID":"804649674","Ship Date":"4/18/2016","Units Sold":"2575","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1125790.00","Total Cost":"678074.75","Total Profit":"447715.25"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/20/2014","Order ID":"686773669","Ship Date":"2/22/2014","Units Sold":"445","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"187741.05","Total Cost":"162287.05","Total Profit":"25454.00"},{"Region":"Europe","Country":"Ireland","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/5/2016","Order ID":"701131856","Ship Date":"2/11/2016","Units Sold":"9352","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6249661.04","Total Cost":"4699754.08","Total Profit":"1549906.96"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/1/2015","Order ID":"816523063","Ship Date":"12/5/2015","Units Sold":"6174","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"292956.30","Total Cost":"196271.46","Total Profit":"96684.84"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/6/2015","Order ID":"622058618","Ship Date":"12/23/2015","Units Sold":"9823","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"2020591.10","Total Cost":"1150371.53","Total Profit":"870219.57"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/31/2015","Order ID":"677162349","Ship Date":"1/20/2016","Units Sold":"6242","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1593457.76","Total Cost":"995099.64","Total Profit":"598358.12"},{"Region":"Asia","Country":"Thailand","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"10/18/2016","Order ID":"261570584","Ship Date":"11/24/2016","Units Sold":"3403","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2216067.63","Total Cost":"1786438.88","Total Profit":"429628.75"},{"Region":"Europe","Country":"Macedonia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"5/11/2016","Order ID":"525332152","Ship Date":"6/30/2016","Units Sold":"6313","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1298584.10","Total Cost":"739315.43","Total Profit":"559268.67"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"10/14/2013","Order ID":"438808381","Ship Date":"10/20/2013","Units Sold":"2006","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"163950.38","Total Cost":"113680.02","Total Profit":"50270.36"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"1/13/2013","Order ID":"842673099","Ship Date":"2/23/2013","Units Sold":"4551","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"371953.23","Total Cost":"257905.17","Total Profit":"114048.06"},{"Region":"Europe","Country":"Hungary","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/19/2011","Order ID":"397912633","Ship Date":"7/21/2011","Units Sold":"45","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"6932.70","Total Cost":"4091.85","Total Profit":"2840.85"},{"Region":"Europe","Country":"San Marino","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/15/2011","Order ID":"535825812","Ship Date":"9/12/2011","Units Sold":"1620","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1054960.20","Total Cost":"850435.20","Total Profit":"204525.00"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/12/2016","Order ID":"508023965","Ship Date":"8/27/2016","Units Sold":"4435","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1132166.80","Total Cost":"707027.70","Total Profit":"425139.10"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"1/10/2012","Order ID":"536430919","Ship Date":"1/13/2012","Units Sold":"684","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"445427.64","Total Cost":"359072.64","Total Profit":"86355.00"},{"Region":"Europe","Country":"Ukraine","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/14/2014","Order ID":"463283002","Ship Date":"10/28/2014","Units Sold":"4590","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"501595.20","Total Cost":"164505.60","Total Profit":"337089.60"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"1/21/2016","Order ID":"201129043","Ship Date":"2/16/2016","Units Sold":"7408","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1523825.60","Total Cost":"867550.88","Total Profit":"656274.72"},{"Region":"Europe","Country":"Portugal","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"2/18/2016","Order ID":"182830369","Ship Date":"2/20/2016","Units Sold":"2424","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1578533.04","Total Cost":"1272503.04","Total Profit":"306030.00"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"4/5/2012","Order ID":"911560809","Ship Date":"4/19/2012","Units Sold":"9955","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1087882.40","Total Cost":"356787.20","Total Profit":"731095.20"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/28/2010","Order ID":"710806691","Ship Date":"6/13/2010","Units Sold":"2350","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"358563.00","Total Cost":"228984.00","Total Profit":"129579.00"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"10/21/2013","Order ID":"674366843","Ship Date":"10/22/2013","Units Sold":"8990","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5854377.90","Total Cost":"4719390.40","Total Profit":"1134987.50"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"8/18/2011","Order ID":"616352593","Ship Date":"9/12/2011","Units Sold":"1284","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"561364.80","Total Cost":"338115.72","Total Profit":"223249.08"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"1/11/2013","Order ID":"421187770","Ship Date":"2/12/2013","Units Sold":"7676","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1171204.08","Total Cost":"747949.44","Total Profit":"423254.64"},{"Region":"Asia","Country":"Vietnam","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"2/1/2013","Order ID":"493608701","Ship Date":"3/2/2013","Units Sold":"8638","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"943960.64","Total Cost":"309585.92","Total Profit":"634374.72"},{"Region":"North America","Country":"Mexico","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/26/2011","Order ID":"408664214","Ship Date":"10/9/2011","Units Sold":"1677","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"137061.21","Total Cost":"95035.59","Total Profit":"42025.62"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"7/15/2017","Order ID":"261715638","Ship Date":"8/27/2017","Units Sold":"6328","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4120856.88","Total Cost":"3321946.88","Total Profit":"798910.00"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"8/15/2013","Order ID":"218436801","Ship Date":"8/29/2013","Units Sold":"9158","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1397327.64","Total Cost":"892355.52","Total Profit":"504972.12"},{"Region":"Europe","Country":"Monaco","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"6/22/2014","Order ID":"964814031","Ship Date":"8/1/2014","Units Sold":"8767","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1337668.86","Total Cost":"854256.48","Total Profit":"483412.38"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/15/2016","Order ID":"557146155","Ship Date":"10/3/2016","Units Sold":"783","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"85566.24","Total Cost":"28062.72","Total Profit":"57503.52"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"6/8/2010","Order ID":"272044503","Ship Date":"6/19/2010","Units Sold":"2869","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1868321.49","Total Cost":"1506110.24","Total Profit":"362211.25"},{"Region":"Europe","Country":"Croatia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/1/2013","Order ID":"556432902","Ship Date":"5/20/2013","Units Sold":"9716","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2480300.48","Total Cost":"1548924.72","Total Profit":"931375.76"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"11/6/2013","Order ID":"577547681","Ship Date":"11/12/2013","Units Sold":"8048","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"75087.84","Total Cost":"55692.16","Total Profit":"19395.68"},{"Region":"Asia","Country":"Malaysia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/12/2012","Order ID":"472937667","Ship Date":"12/6/2012","Units Sold":"1620","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"708264.00","Total Cost":"426594.60","Total Profit":"281669.40"},{"Region":"Asia","Country":"Vietnam","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/28/2012","Order ID":"900464189","Ship Date":"6/6/2012","Units Sold":"6219","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"958099.14","Total Cost":"565493.67","Total Profit":"392605.47"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"6/11/2011","Order ID":"788301074","Ship Date":"6/14/2011","Units Sold":"4660","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1966007.40","Total Cost":"1699455.40","Total Profit":"266552.00"},{"Region":"Asia","Country":"Bhutan","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"7/4/2010","Order ID":"484934651","Ship Date":"8/9/2010","Units Sold":"1795","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"16747.35","Total Cost":"12421.40","Total Profit":"4325.95"},{"Region":"Europe","Country":"Slovenia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/25/2014","Order ID":"409163749","Ship Date":"10/4/2014","Units Sold":"9501","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1954355.70","Total Cost":"1112662.11","Total Profit":"841693.59"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/5/2014","Order ID":"600099694","Ship Date":"1/9/2015","Units Sold":"1690","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1100544.90","Total Cost":"887182.40","Total Profit":"213362.50"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"10/27/2014","Order ID":"267166316","Ship Date":"11/23/2014","Units Sold":"9305","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6218252.35","Total Cost":"4676134.70","Total Profit":"1542117.65"},{"Region":"Asia","Country":"Philippines","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/21/2011","Order ID":"940099942","Ship Date":"5/28/2011","Units Sold":"5319","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1357834.32","Total Cost":"847954.98","Total Profit":"509879.34"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/8/2013","Order ID":"618949401","Ship Date":"10/30/2013","Units Sold":"9737","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1064059.36","Total Cost":"348974.08","Total Profit":"715085.28"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/13/2017","Order ID":"524076020","Ship Date":"7/18/2017","Units Sold":"4595","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"701105.10","Total Cost":"447736.80","Total Profit":"253368.30"},{"Region":"Europe","Country":"Cyprus","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/9/2015","Order ID":"146153628","Ship Date":"4/24/2015","Units Sold":"8961","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"732382.53","Total Cost":"507819.87","Total Profit":"224562.66"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/15/2015","Order ID":"396168553","Ship Date":"7/31/2015","Units Sold":"3934","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"429907.52","Total Cost":"140994.56","Total Profit":"288912.96"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/3/2017","Order ID":"455419623","Ship Date":"3/4/2017","Units Sold":"7642","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"71299.86","Total Cost":"52882.64","Total Profit":"18417.22"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"11/9/2011","Order ID":"925518167","Ship Date":"11/17/2011","Units Sold":"247","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"11720.15","Total Cost":"7852.13","Total Profit":"3868.02"},{"Region":"Europe","Country":"Belgium","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/29/2011","Order ID":"678388011","Ship Date":"11/16/2011","Units Sold":"8943","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3772962.27","Total Cost":"3261422.67","Total Profit":"511539.60"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"12/2/2014","Order ID":"906265485","Ship Date":"1/4/2015","Units Sold":"2951","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1972064.77","Total Cost":"1482995.54","Total Profit":"489069.23"},{"Region":"Europe","Country":"Belarus","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"5/2/2016","Order ID":"171699416","Ship Date":"5/21/2016","Units Sold":"8528","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"404653.60","Total Cost":"271105.12","Total Profit":"133548.48"},{"Region":"Asia","Country":"Cambodia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"5/1/2012","Order ID":"257551133","Ship Date":"5/3/2012","Units Sold":"3959","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"604064.22","Total Cost":"385764.96","Total Profit":"218299.26"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/8/2011","Order ID":"316994464","Ship Date":"8/9/2011","Units Sold":"4561","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"498426.08","Total Cost":"163466.24","Total Profit":"334959.84"},{"Region":"Europe","Country":"Serbia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/25/2016","Order ID":"923515737","Ship Date":"6/9/2016","Units Sold":"7684","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1961571.52","Total Cost":"1224983.28","Total Profit":"736588.24"},{"Region":"Europe","Country":"Malta","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"10/15/2010","Order ID":"920913779","Ship Date":"12/3/2010","Units Sold":"7707","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1967442.96","Total Cost":"1228649.94","Total Profit":"738793.02"},{"Region":"Asia","Country":"Thailand","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/7/2010","Order ID":"573299920","Ship Date":"10/23/2010","Units Sold":"1041","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"695669.07","Total Cost":"523144.14","Total Profit":"172524.93"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"10/21/2013","Order ID":"215097987","Ship Date":"10/25/2013","Units Sold":"1129","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"735216.09","Total Cost":"592679.84","Total Profit":"142536.25"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/11/2011","Order ID":"701044309","Ship Date":"6/19/2011","Units Sold":"3445","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"879439.60","Total Cost":"549201.90","Total Profit":"330237.70"},{"Region":"Europe","Country":"Slovenia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"11/19/2014","Order ID":"256187713","Ship Date":"12/16/2014","Units Sold":"492","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"40211.16","Total Cost":"27881.64","Total Profit":"12329.52"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"10/8/2013","Order ID":"325889527","Ship Date":"11/22/2013","Units Sold":"6808","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1038764.64","Total Cost":"663371.52","Total Profit":"375393.12"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"2/25/2010","Order ID":"625823581","Ship Date":"4/1/2010","Units Sold":"3960","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"432748.80","Total Cost":"141926.40","Total Profit":"290822.40"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"9/26/2014","Order ID":"491976201","Ship Date":"10/28/2014","Units Sold":"5546","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"263157.70","Total Cost":"176307.34","Total Profit":"86850.36"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"10/9/2012","Order ID":"230646216","Ship Date":"10/19/2012","Units Sold":"2196","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"560594.88","Total Cost":"350086.32","Total Profit":"210508.56"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/22/2013","Order ID":"668444955","Ship Date":"4/30/2013","Units Sold":"6571","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2772239.19","Total Cost":"2396377.99","Total Profit":"375861.20"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"1/30/2015","Order ID":"902296245","Ship Date":"3/21/2015","Units Sold":"8365","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2135417.20","Total Cost":"1333548.30","Total Profit":"801868.90"},{"Region":"North America","Country":"United States of America","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/4/2010","Order ID":"549436414","Ship Date":"5/28/2010","Units Sold":"9299","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1418841.42","Total Cost":"906094.56","Total Profit":"512746.86"},{"Region":"Asia","Country":"Mongolia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"4/25/2011","Order ID":"197414290","Ship Date":"5/3/2011","Units Sold":"8130","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5294337.30","Total Cost":"4267924.80","Total Profit":"1026412.50"},{"Region":"Asia","Country":"Mongolia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"2/27/2016","Order ID":"954091203","Ship Date":"4/11/2016","Units Sold":"5644","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"861161.52","Total Cost":"549951.36","Total Profit":"311210.16"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/25/2012","Order ID":"397640979","Ship Date":"10/2/2012","Units Sold":"9657","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6288734.97","Total Cost":"5069538.72","Total Profit":"1219196.25"},{"Region":"Europe","Country":"Latvia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/8/2012","Order ID":"226549947","Ship Date":"10/20/2012","Units Sold":"19","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"3908.30","Total Cost":"2225.09","Total Profit":"1683.21"},{"Region":"Europe","Country":"Macedonia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/14/2017","Order ID":"409616935","Ship Date":"6/11/2017","Units Sold":"3608","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"742165.60","Total Cost":"422532.88","Total Profit":"319632.72"},{"Region":"Europe","Country":"Belgium","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/16/2014","Order ID":"535953271","Ship Date":"1/24/2014","Units Sold":"9338","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1920826.60","Total Cost":"1093573.18","Total Profit":"827253.42"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"7/20/2017","Order ID":"264982783","Ship Date":"8/4/2017","Units Sold":"3149","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"647749.30","Total Cost":"368779.39","Total Profit":"278969.91"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/3/2013","Order ID":"676441800","Ship Date":"8/16/2013","Units Sold":"3016","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"460181.28","Total Cost":"293879.04","Total Profit":"166302.24"},{"Region":"Europe","Country":"Croatia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"1/31/2015","Order ID":"220379149","Ship Date":"2/27/2015","Units Sold":"3942","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1723442.40","Total Cost":"1038046.86","Total Profit":"685395.54"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/27/2013","Order ID":"567156159","Ship Date":"11/7/2013","Units Sold":"2966","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1931488.86","Total Cost":"1557031.36","Total Profit":"374457.50"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/1/2013","Order ID":"757446658","Ship Date":"10/3/2013","Units Sold":"4153","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2704475.13","Total Cost":"2180158.88","Total Profit":"524316.25"},{"Region":"Europe","Country":"Albania","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/26/2012","Order ID":"352236974","Ship Date":"3/3/2012","Units Sold":"3603","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2346309.63","Total Cost":"1891430.88","Total Profit":"454878.75"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"4/28/2011","Order ID":"782825934","Ship Date":"5/11/2011","Units Sold":"4445","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"210915.25","Total Cost":"141306.55","Total Profit":"69608.70"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"10/14/2014","Order ID":"400824868","Ship Date":"10/23/2014","Units Sold":"1841","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"804885.20","Total Cost":"484790.53","Total Profit":"320094.67"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"7/12/2015","Order ID":"328157603","Ship Date":"7/26/2015","Units Sold":"7982","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5197958.22","Total Cost":"4190230.72","Total Profit":"1007727.50"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"4/3/2015","Order ID":"407060468","Ship Date":"5/3/2015","Units Sold":"7093","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1082249.94","Total Cost":"691141.92","Total Profit":"391108.02"},{"Region":"Europe","Country":"Montenegro","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/11/2012","Order ID":"550082290","Ship Date":"1/24/2013","Units Sold":"428","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"34980.44","Total Cost":"24254.76","Total Profit":"10725.68"},{"Region":"Europe","Country":"Estonia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"3/23/2016","Order ID":"290084397","Ship Date":"4/2/2016","Units Sold":"1274","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"829641.54","Total Cost":"668799.04","Total Profit":"160842.50"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/5/2014","Order ID":"130240619","Ship Date":"11/26/2014","Units Sold":"9948","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4196961.72","Total Cost":"3627936.12","Total Profit":"569025.60"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"10/9/2014","Order ID":"194037282","Ship Date":"11/7/2014","Units Sold":"8799","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3712210.11","Total Cost":"3208907.31","Total Profit":"503302.80"},{"Region":"Europe","Country":"San Marino","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/3/2011","Order ID":"675273215","Ship Date":"10/1/2011","Units Sold":"7205","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1110002.30","Total Cost":"655150.65","Total Profit":"454851.65"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"6/6/2017","Order ID":"488059747","Ship Date":"6/29/2017","Units Sold":"6580","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2776036.20","Total Cost":"2399660.20","Total Profit":"376376.00"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"11/29/2010","Order ID":"416820704","Ship Date":"12/8/2010","Units Sold":"5364","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"586177.92","Total Cost":"192245.76","Total Profit":"393932.16"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/27/2017","Order ID":"866292417","Ship Date":"8/10/2017","Units Sold":"4032","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"329535.36","Total Cost":"228493.44","Total Profit":"101041.92"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"5/14/2014","Order ID":"511523711","Ship Date":"6/5/2014","Units Sold":"88","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"57306.48","Total Cost":"46196.48","Total Profit":"11110.00"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/12/2010","Order ID":"347875916","Ship Date":"2/16/2010","Units Sold":"3069","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"250829.37","Total Cost":"173920.23","Total Profit":"76909.14"},{"Region":"Europe","Country":"Greece","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/3/2010","Order ID":"541022861","Ship Date":"9/9/2010","Units Sold":"9542","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4025674.38","Total Cost":"3479871.98","Total Profit":"545802.40"},{"Region":"Asia","Country":"Philippines","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"2/11/2015","Order ID":"876950871","Ship Date":"3/14/2015","Units Sold":"8106","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3543943.20","Total Cost":"2134552.98","Total Profit":"1409390.22"},{"Region":"North America","Country":"Greenland","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/28/2012","Order ID":"311958777","Ship Date":"11/3/2012","Units Sold":"4390","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1120679.20","Total Cost":"699853.80","Total Profit":"420825.40"},{"Region":"Europe","Country":"Serbia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/18/2016","Order ID":"122657907","Ship Date":"4/30/2016","Units Sold":"6055","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"923871.90","Total Cost":"589999.20","Total Profit":"333872.70"},{"Region":"Asia","Country":"Vietnam","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"3/1/2013","Order ID":"755972087","Ship Date":"3/13/2013","Units Sold":"7795","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1189361.10","Total Cost":"759544.80","Total Profit":"429816.30"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/9/2014","Order ID":"479137647","Ship Date":"8/28/2014","Units Sold":"6332","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4231485.64","Total Cost":"3182083.28","Total Profit":"1049402.36"},{"Region":"Europe","Country":"Greece","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/30/2013","Order ID":"329703414","Ship Date":"9/24/2013","Units Sold":"5422","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3530860.62","Total Cost":"2846333.12","Total Profit":"684527.50"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"7/15/2012","Order ID":"965530717","Ship Date":"7/19/2012","Units Sold":"850","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"69470.50","Total Cost":"48169.50","Total Profit":"21301.00"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"5/12/2010","Order ID":"414793384","Ship Date":"6/24/2010","Units Sold":"5435","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1117979.50","Total Cost":"636492.85","Total Profit":"481486.65"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"12/28/2014","Order ID":"825977742","Ship Date":"1/2/2015","Units Sold":"4024","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"37543.92","Total Cost":"27846.08","Total Profit":"9697.84"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/2/2016","Order ID":"817882621","Ship Date":"7/21/2016","Units Sold":"8498","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"928661.44","Total Cost":"304568.32","Total Profit":"624093.12"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"4/11/2013","Order ID":"429619348","Ship Date":"5/21/2013","Units Sold":"2767","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"706359.76","Total Cost":"441115.14","Total Profit":"265244.62"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/10/2016","Order ID":"670611751","Ship Date":"9/15/2016","Units Sold":"7774","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1197662.44","Total Cost":"706889.82","Total Profit":"490772.62"},{"Region":"Europe","Country":"Estonia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"10/27/2015","Order ID":"370596158","Ship Date":"11/4/2015","Units Sold":"6493","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1335610.10","Total Cost":"760395.23","Total Profit":"575214.87"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/24/2012","Order ID":"229621398","Ship Date":"10/7/2012","Units Sold":"8929","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1375601.74","Total Cost":"811913.97","Total Profit":"563687.77"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"3/25/2010","Order ID":"568048799","Ship Date":"4/18/2010","Units Sold":"7118","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"66410.94","Total Cost":"49256.56","Total Profit":"17154.38"},{"Region":"Europe","Country":"France","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"1/21/2016","Order ID":"876552188","Ship Date":"1/21/2016","Units Sold":"126","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"32165.28","Total Cost":"20086.92","Total Profit":"12078.36"},{"Region":"Europe","Country":"Hungary","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/18/2016","Order ID":"266117894","Ship Date":"5/2/2016","Units Sold":"9053","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1394705.18","Total Cost":"823189.29","Total Profit":"571515.89"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/11/2017","Order ID":"618044745","Ship Date":"2/9/2017","Units Sold":"2029","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"312587.74","Total Cost":"184496.97","Total Profit":"128090.77"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/6/2010","Order ID":"733944070","Ship Date":"4/23/2010","Units Sold":"9215","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6158108.05","Total Cost":"4630906.10","Total Profit":"1527201.95"},{"Region":"Europe","Country":"Kosovo","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/26/2015","Order ID":"385739696","Ship Date":"9/8/2015","Units Sold":"7803","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3411471.60","Total Cost":"2054763.99","Total Profit":"1356707.61"},{"Region":"Asia","Country":"North Korea","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/16/2015","Order ID":"765667951","Ship Date":"10/19/2015","Units Sold":"7016","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1080884.96","Total Cost":"637964.88","Total Profit":"442920.08"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"6/18/2013","Order ID":"436277663","Ship Date":"6/19/2013","Units Sold":"3110","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"793920.80","Total Cost":"495796.20","Total Profit":"298124.60"},{"Region":"Europe","Country":"Malta","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"8/30/2012","Order ID":"280430161","Ship Date":"9/25/2012","Units Sold":"4371","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"673396.26","Total Cost":"397455.03","Total Profit":"275941.23"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/4/2014","Order ID":"351299273","Ship Date":"6/26/2014","Units Sold":"6117","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1258266.90","Total Cost":"716361.87","Total Profit":"541905.03"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"5/7/2013","Order ID":"322371327","Ship Date":"5/28/2013","Units Sold":"5694","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"877217.64","Total Cost":"517755.42","Total Profit":"359462.22"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/18/2016","Order ID":"837445151","Ship Date":"7/27/2016","Units Sold":"7485","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4874306.85","Total Cost":"3929325.60","Total Profit":"944981.25"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/21/2016","Order ID":"360632073","Ship Date":"9/28/2016","Units Sold":"7899","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"645585.27","Total Cost":"447636.33","Total Profit":"197948.94"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/4/2011","Order ID":"126355922","Ship Date":"1/19/2012","Units Sold":"380","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"18031.00","Total Cost":"12080.20","Total Profit":"5950.80"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"1/29/2016","Order ID":"989353024","Ship Date":"3/6/2016","Units Sold":"400","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"260484.00","Total Cost":"209984.00","Total Profit":"50500.00"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/6/2010","Order ID":"274672210","Ship Date":"3/6/2010","Units Sold":"466","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"118960.48","Total Cost":"74289.72","Total Profit":"44670.76"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/27/2014","Order ID":"327674806","Ship Date":"3/20/2014","Units Sold":"5111","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"417722.03","Total Cost":"289640.37","Total Profit":"128081.66"},{"Region":"Asia","Country":"Vietnam","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/5/2014","Order ID":"864034640","Ship Date":"12/26/2014","Units Sold":"5906","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1507683.68","Total Cost":"941534.52","Total Profit":"566149.16"},{"Region":"Asia","Country":"Mongolia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"8/12/2015","Order ID":"319738042","Ship Date":"9/19/2015","Units Sold":"6447","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"983683.26","Total Cost":"628195.68","Total Profit":"355487.58"},{"Region":"Europe","Country":"Malta","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/12/2016","Order ID":"801083838","Ship Date":"9/24/2016","Units Sold":"7365","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1123751.70","Total Cost":"717645.60","Total Profit":"406106.10"},{"Region":"Europe","Country":"Serbia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/31/2011","Order ID":"434683358","Ship Date":"11/24/2011","Units Sold":"1320","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"556894.80","Total Cost":"481390.80","Total Profit":"75504.00"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"2/25/2015","Order ID":"117460429","Ship Date":"3/4/2015","Units Sold":"8006","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5213587.26","Total Cost":"4202829.76","Total Profit":"1010757.50"},{"Region":"Europe","Country":"Montenegro","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"3/31/2011","Order ID":"366651380","Ship Date":"5/1/2011","Units Sold":"9146","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1395496.68","Total Cost":"891186.24","Total Profit":"504310.44"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/6/2012","Order ID":"869805037","Ship Date":"5/29/2012","Units Sold":"3494","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"32599.02","Total Cost":"24178.48","Total Profit":"8420.54"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/9/2016","Order ID":"934782731","Ship Date":"9/1/2016","Units Sold":"1838","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1228280.26","Total Cost":"923668.52","Total Profit":"304611.74"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/21/2011","Order ID":"839758288","Ship Date":"12/1/2011","Units Sold":"1994","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"841248.66","Total Cost":"727191.86","Total Profit":"114056.80"},{"Region":"Europe","Country":"San Marino","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/30/2017","Order ID":"483218038","Ship Date":"6/25/2017","Units Sold":"3810","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2546108.70","Total Cost":"1914677.40","Total Profit":"631431.30"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/21/2011","Order ID":"733960807","Ship Date":"10/21/2011","Units Sold":"4168","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"642122.08","Total Cost":"378996.24","Total Profit":"263125.84"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"8/17/2012","Order ID":"281097924","Ship Date":"9/14/2012","Units Sold":"1977","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"18445.41","Total Cost":"13680.84","Total Profit":"4764.57"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"1/1/2012","Order ID":"584053218","Ship Date":"2/9/2012","Units Sold":"3181","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2071499.01","Total Cost":"1669897.76","Total Profit":"401601.25"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/6/2010","Order ID":"922563016","Ship Date":"10/5/2010","Units Sold":"5753","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2427133.17","Total Cost":"2098061.57","Total Profit":"329071.60"},{"Region":"Europe","Country":"Andorra","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"4/13/2014","Order ID":"646676146","Ship Date":"5/15/2014","Units Sold":"4697","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"723619.82","Total Cost":"427098.21","Total Profit":"296521.61"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/30/2014","Order ID":"526753938","Ship Date":"6/14/2014","Units Sold":"7051","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4591681.71","Total Cost":"3701492.96","Total Profit":"890188.75"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/10/2014","Order ID":"503470218","Ship Date":"10/10/2014","Units Sold":"6880","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4480324.80","Total Cost":"3611724.80","Total Profit":"868600.00"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"1/24/2013","Order ID":"137811315","Ship Date":"3/15/2013","Units Sold":"285","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"23293.05","Total Cost":"16150.95","Total Profit":"7142.10"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"7/1/2011","Order ID":"861076056","Ship Date":"7/27/2011","Units Sold":"395","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"32283.35","Total Cost":"22384.65","Total Profit":"9898.70"},{"Region":"Europe","Country":"Ukraine","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"6/6/2013","Order ID":"124875771","Ship Date":"7/8/2013","Units Sold":"2371","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1000301.19","Total Cost":"864679.99","Total Profit":"135621.20"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/7/2011","Order ID":"851134288","Ship Date":"12/10/2011","Units Sold":"8405","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5616809.35","Total Cost":"4223848.70","Total Profit":"1392960.65"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/12/2016","Order ID":"182087934","Ship Date":"5/26/2016","Units Sold":"2721","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1189621.20","Total Cost":"716520.93","Total Profit":"473100.27"},{"Region":"North America","Country":"Greenland","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/24/2010","Order ID":"730285537","Ship Date":"6/4/2010","Units Sold":"6574","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2874152.80","Total Cost":"1731131.42","Total Profit":"1143021.38"},{"Region":"Europe","Country":"Albania","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/16/2016","Order ID":"228588426","Ship Date":"12/3/2016","Units Sold":"3250","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"265622.50","Total Cost":"184177.50","Total Profit":"81445.00"},{"Region":"Europe","Country":"Slovenia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"5/2/2010","Order ID":"980170428","Ship Date":"5/8/2010","Units Sold":"3066","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1996609.86","Total Cost":"1609527.36","Total Profit":"387082.50"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/15/2012","Order ID":"408517873","Ship Date":"2/4/2012","Units Sold":"8372","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5451930.12","Total Cost":"4394965.12","Total Profit":"1056965.00"},{"Region":"Europe","Country":"Kosovo","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"1/5/2010","Order ID":"507429587","Ship Date":"2/7/2010","Units Sold":"8546","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5565240.66","Total Cost":"4486308.16","Total Profit":"1078932.50"},{"Region":"North America","Country":"Mexico","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/19/2016","Order ID":"191016900","Ship Date":"4/9/2016","Units Sold":"5000","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1276400.00","Total Cost":"797100.00","Total Profit":"479300.00"},{"Region":"Asia","Country":"Vietnam","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"11/3/2016","Order ID":"243703639","Ship Date":"11/17/2016","Units Sold":"6177","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"293098.65","Total Cost":"196366.83","Total Profit":"96731.82"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/14/2014","Order ID":"170226132","Ship Date":"11/20/2014","Units Sold":"2550","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1075819.50","Total Cost":"929959.50","Total Profit":"145860.00"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"6/20/2017","Order ID":"445633208","Ship Date":"6/30/2017","Units Sold":"1624","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1057565.04","Total Cost":"852535.04","Total Profit":"205030.00"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/29/2010","Order ID":"265286195","Ship Date":"11/13/2010","Units Sold":"2935","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"447822.30","Total Cost":"285986.40","Total Profit":"161835.90"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"8/7/2015","Order ID":"694858920","Ship Date":"9/14/2015","Units Sold":"3051","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"28465.83","Total Cost":"21112.92","Total Profit":"7352.91"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/24/2016","Order ID":"620337712","Ship Date":"3/24/2016","Units Sold":"569","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"62180.32","Total Cost":"20392.96","Total Profit":"41787.36"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"10/27/2016","Order ID":"798021399","Ship Date":"11/27/2016","Units Sold":"1121","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"472938.69","Total Cost":"408817.49","Total Profit":"64121.20"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/22/2015","Order ID":"704521310","Ship Date":"3/5/2015","Units Sold":"2366","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"998191.74","Total Cost":"862856.54","Total Profit":"135335.20"},{"Region":"Asia","Country":"India","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"6/22/2013","Order ID":"786761271","Ship Date":"7/26/2013","Units Sold":"8999","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1373067.42","Total Cost":"876862.56","Total Profit":"496204.86"},{"Region":"Asia","Country":"India","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"8/31/2015","Order ID":"211977612","Ship Date":"9/20/2015","Units Sold":"7741","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1192578.46","Total Cost":"703889.13","Total Profit":"488689.33"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/7/2014","Order ID":"917719161","Ship Date":"12/10/2014","Units Sold":"2348","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"358257.84","Total Cost":"228789.12","Total Profit":"129468.72"},{"Region":"Europe","Country":"Slovakia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/22/2013","Order ID":"861847245","Ship Date":"5/10/2013","Units Sold":"8607","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1770459.90","Total Cost":"1007965.77","Total Profit":"762494.13"},{"Region":"Asia","Country":"Mongolia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"4/28/2017","Order ID":"772535693","Ship Date":"5/7/2017","Units Sold":"9334","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1020019.52","Total Cost":"334530.56","Total Profit":"685488.96"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/18/2012","Order ID":"998270833","Ship Date":"5/21/2012","Units Sold":"9378","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6107047.38","Total Cost":"4923074.88","Total Profit":"1183972.50"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"2/3/2011","Order ID":"157851493","Ship Date":"3/10/2011","Units Sold":"619","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"413659.13","Total Cost":"311072.26","Total Profit":"102586.87"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/5/2012","Order ID":"990389001","Ship Date":"2/28/2012","Units Sold":"6969","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"761572.32","Total Cost":"249768.96","Total Profit":"511803.36"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"4/19/2011","Order ID":"905307185","Ship Date":"5/13/2011","Units Sold":"9369","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"87412.77","Total Cost":"64833.48","Total Profit":"22579.29"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/27/2013","Order ID":"532342374","Ship Date":"4/3/2013","Units Sold":"793","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"122169.58","Total Cost":"72107.49","Total Profit":"50062.09"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"3/1/2012","Order ID":"571543395","Ship Date":"4/3/2012","Units Sold":"1246","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"544751.20","Total Cost":"328109.18","Total Profit":"216642.02"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"12/22/2010","Order ID":"443271577","Ship Date":"1/13/2011","Units Sold":"2765","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"131199.25","Total Cost":"87899.35","Total Profit":"43299.90"},{"Region":"Europe","Country":"Monaco","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"5/26/2017","Order ID":"538200747","Ship Date":"6/28/2017","Units Sold":"4416","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"360919.68","Total Cost":"250254.72","Total Profit":"110664.96"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"7/12/2017","Order ID":"867317235","Ship Date":"8/22/2017","Units Sold":"7298","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3190685.60","Total Cost":"1921782.34","Total Profit":"1268903.26"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/10/2017","Order ID":"611919867","Ship Date":"6/16/2017","Units Sold":"9542","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"779867.66","Total Cost":"540745.14","Total Profit":"239122.52"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"9/18/2016","Order ID":"373619973","Ship Date":"9/21/2016","Units Sold":"1308","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"106902.84","Total Cost":"74124.36","Total Profit":"32778.48"},{"Region":"North America","Country":"Mexico","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"3/15/2012","Order ID":"824341380","Ship Date":"5/1/2012","Units Sold":"9788","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2498680.64","Total Cost":"1560402.96","Total Profit":"938277.68"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"12/20/2016","Order ID":"456320416","Ship Date":"12/31/2016","Units Sold":"4207","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"39251.31","Total Cost":"29112.44","Total Profit":"10138.87"},{"Region":"Europe","Country":"San Marino","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"1/24/2011","Order ID":"532105910","Ship Date":"2/5/2011","Units Sold":"818","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"357629.60","Total Cost":"215403.94","Total Profit":"142225.66"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"6/20/2013","Order ID":"134559190","Ship Date":"7/17/2013","Units Sold":"7909","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1626881.30","Total Cost":"926222.99","Total Profit":"700658.31"},{"Region":"Europe","Country":"Slovakia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"2/23/2010","Order ID":"216854083","Ship Date":"3/16/2010","Units Sold":"797","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"65138.81","Total Cost":"45165.99","Total Profit":"19972.82"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/7/2010","Order ID":"452476918","Ship Date":"12/3/2010","Units Sold":"6830","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"746382.40","Total Cost":"244787.20","Total Profit":"501595.20"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/16/2015","Order ID":"585226523","Ship Date":"1/23/2015","Units Sold":"388","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"79811.60","Total Cost":"45438.68","Total Profit":"34372.92"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/31/2015","Order ID":"879214227","Ship Date":"10/18/2015","Units Sold":"7883","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5267972.41","Total Cost":"3961522.82","Total Profit":"1306449.59"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"7/8/2010","Order ID":"768863856","Ship Date":"7/23/2010","Units Sold":"2756","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1841752.12","Total Cost":"1385000.24","Total Profit":"456751.88"},{"Region":"Asia","Country":"Malaysia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/11/2013","Order ID":"208911740","Ship Date":"9/24/2013","Units Sold":"481","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"22823.45","Total Cost":"15290.99","Total Profit":"7532.46"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/8/2013","Order ID":"124406707","Ship Date":"7/9/2013","Units Sold":"3564","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2381714.28","Total Cost":"1791052.56","Total Profit":"590661.72"},{"Region":"Asia","Country":"Japan","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"1/8/2015","Order ID":"160710084","Ship Date":"2/2/2015","Units Sold":"6540","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2759160.60","Total Cost":"2385072.60","Total Profit":"374088.00"},{"Region":"Europe","Country":"Slovenia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"8/8/2012","Order ID":"933495700","Ship Date":"9/14/2012","Units Sold":"977","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"636232.17","Total Cost":"512885.92","Total Profit":"123346.25"},{"Region":"Europe","Country":"Finland","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"12/18/2016","Order ID":"878749883","Ship Date":"1/8/2017","Units Sold":"473","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"22443.85","Total Cost":"15036.67","Total Profit":"7407.18"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/11/2013","Order ID":"302771461","Ship Date":"5/12/2013","Units Sold":"5658","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"268472.10","Total Cost":"179867.82","Total Profit":"88604.28"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"10/31/2010","Order ID":"932171761","Ship Date":"11/17/2010","Units Sold":"9194","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1004720.32","Total Cost":"329512.96","Total Profit":"675207.36"},{"Region":"Europe","Country":"Iceland","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"9/12/2015","Order ID":"963874614","Ship Date":"10/25/2015","Units Sold":"772","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"197076.16","Total Cost":"123072.24","Total Profit":"74003.92"},{"Region":"Europe","Country":"Kosovo","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/16/2012","Order ID":"915116345","Ship Date":"9/1/2012","Units Sold":"2117","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"435466.90","Total Cost":"247921.87","Total Profit":"187545.03"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/7/2013","Order ID":"473445785","Ship Date":"11/23/2013","Units Sold":"1984","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"18510.72","Total Cost":"13729.28","Total Profit":"4781.44"},{"Region":"Europe","Country":"Slovakia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/12/2017","Order ID":"746724259","Ship Date":"8/12/2017","Units Sold":"1157","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"126436.96","Total Cost":"41466.88","Total Profit":"84970.08"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/8/2011","Order ID":"213125598","Ship Date":"8/18/2011","Units Sold":"7455","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1137483.90","Total Cost":"726415.20","Total Profit":"411068.70"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/13/2015","Order ID":"571136128","Ship Date":"2/20/2015","Units Sold":"727","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"473429.67","Total Cost":"381645.92","Total Profit":"91783.75"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"4/15/2014","Order ID":"889554679","Ship Date":"4/16/2014","Units Sold":"7852","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"858066.56","Total Cost":"281415.68","Total Profit":"576650.88"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"9/8/2011","Order ID":"757492578","Ship Date":"10/3/2011","Units Sold":"7742","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"632753.66","Total Cost":"438739.14","Total Profit":"194014.52"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/1/2014","Order ID":"734373652","Ship Date":"8/11/2014","Units Sold":"6338","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"300738.10","Total Cost":"201485.02","Total Profit":"99253.08"},{"Region":"Europe","Country":"Montenegro","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"11/28/2015","Order ID":"999934232","Ship Date":"1/10/2016","Units Sold":"1615","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"248806.90","Total Cost":"146851.95","Total Profit":"101954.95"},{"Region":"Europe","Country":"Belgium","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"12/15/2013","Order ID":"904223144","Ship Date":"12/31/2013","Units Sold":"8577","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"937294.56","Total Cost":"307399.68","Total Profit":"629894.88"},{"Region":"Europe","Country":"Serbia","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"4/24/2015","Order ID":"317601716","Ship Date":"4/30/2015","Units Sold":"4260","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2846830.20","Total Cost":"2140820.40","Total Profit":"706009.80"},{"Region":"Europe","Country":"Iceland","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/10/2016","Order ID":"980743777","Ship Date":"6/27/2016","Units Sold":"2733","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"223368.09","Total Cost":"154879.11","Total Profit":"68488.98"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/15/2014","Order ID":"654635655","Ship Date":"8/24/2014","Units Sold":"93","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"23741.04","Total Cost":"14826.06","Total Profit":"8914.98"},{"Region":"Sub-Saharan Africa","Country":"Mali","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/23/2012","Order ID":"770576179","Ship Date":"3/12/2012","Units Sold":"9470","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6166958.70","Total Cost":"4971371.20","Total Profit":"1195587.50"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/19/2012","Order ID":"580176675","Ship Date":"8/21/2012","Units Sold":"6026","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1538317.28","Total Cost":"960664.92","Total Profit":"577652.36"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"5/19/2016","Order ID":"305360972","Ship Date":"6/9/2016","Units Sold":"1952","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"401526.40","Total Cost":"228598.72","Total Profit":"172927.68"},{"Region":"Europe","Country":"San Marino","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"3/16/2010","Order ID":"688365399","Ship Date":"4/21/2010","Units Sold":"1474","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"985029.98","Total Cost":"740743.96","Total Profit":"244286.02"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"9/21/2015","Order ID":"741738784","Ship Date":"10/6/2015","Units Sold":"5844","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1491856.32","Total Cost":"931650.48","Total Profit":"560205.84"},{"Region":"Europe","Country":"Albania","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/5/2010","Order ID":"898342454","Ship Date":"4/17/2010","Units Sold":"8350","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"396207.50","Total Cost":"265446.50","Total Profit":"130761.00"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/12/2013","Order ID":"761350238","Ship Date":"12/1/2013","Units Sold":"9309","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3927374.01","Total Cost":"3394899.21","Total Profit":"532474.80"},{"Region":"Europe","Country":"Switzerland","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"5/10/2017","Order ID":"454248464","Ship Date":"6/18/2017","Units Sold":"1070","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"696794.70","Total Cost":"561707.20","Total Profit":"135087.50"},{"Region":"Europe","Country":"Germany","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"5/26/2016","Order ID":"170835959","Ship Date":"6/10/2016","Units Sold":"3012","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2012829.24","Total Cost":"1513650.48","Total Profit":"499178.76"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/24/2015","Order ID":"625224053","Ship Date":"4/27/2015","Units Sold":"6546","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4374495.42","Total Cost":"3289626.84","Total Profit":"1084868.58"},{"Region":"Europe","Country":"Portugal","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"9/2/2015","Order ID":"801836574","Ship Date":"10/21/2015","Units Sold":"116","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"50715.20","Total Cost":"30546.28","Total Profit":"20168.92"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/22/2012","Order ID":"205409848","Ship Date":"7/29/2012","Units Sold":"4194","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2802724.38","Total Cost":"2107652.76","Total Profit":"695071.62"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"6/22/2013","Order ID":"210992705","Ship Date":"7/18/2013","Units Sold":"6285","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4200076.95","Total Cost":"3158463.90","Total Profit":"1041613.05"},{"Region":"Asia","Country":"Taiwan","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"11/4/2011","Order ID":"913946473","Ship Date":"11/17/2011","Units Sold":"5926","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"912959.56","Total Cost":"538851.18","Total Profit":"374108.38"},{"Region":"Asia","Country":"Malaysia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"7/6/2013","Order ID":"679944980","Ship Date":"7/23/2013","Units Sold":"9684","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"90351.72","Total Cost":"67013.28","Total Profit":"23338.44"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"3/30/2010","Order ID":"194974553","Ship Date":"5/17/2010","Units Sold":"6158","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4010151.18","Total Cost":"3232703.68","Total Profit":"777447.50"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"10/20/2013","Order ID":"215334022","Ship Date":"10/24/2013","Units Sold":"977","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"427144.40","Total Cost":"257273.41","Total Profit":"169870.99"},{"Region":"Asia","Country":"Laos","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"4/18/2014","Order ID":"217634713","Ship Date":"6/7/2014","Units Sold":"1803","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"277770.18","Total Cost":"163946.79","Total Profit":"113823.39"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/3/2014","Order ID":"648800456","Ship Date":"5/6/2014","Units Sold":"3328","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"849571.84","Total Cost":"530549.76","Total Profit":"319022.08"},{"Region":"Europe","Country":"Ukraine","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/12/2017","Order ID":"676067578","Ship Date":"5/1/2017","Units Sold":"2275","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"467967.50","Total Cost":"266425.25","Total Profit":"201542.25"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/3/2016","Order ID":"436984908","Ship Date":"9/13/2016","Units Sold":"2400","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1562904.00","Total Cost":"1259904.00","Total Profit":"303000.00"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/19/2014","Order ID":"589413774","Ship Date":"6/9/2014","Units Sold":"9489","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6341214.03","Total Cost":"4768602.06","Total Profit":"1572611.97"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/10/2017","Order ID":"961528003","Ship Date":"3/14/2017","Units Sold":"6358","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4248860.66","Total Cost":"3195149.32","Total Profit":"1053711.34"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"3/28/2010","Order ID":"101813924","Ship Date":"4/26/2010","Units Sold":"7857","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"858612.96","Total Cost":"281594.88","Total Profit":"577018.08"},{"Region":"Asia","Country":"Cambodia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"10/24/2013","Order ID":"229070365","Ship Date":"12/13/2013","Units Sold":"5866","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"641036.48","Total Cost":"210237.44","Total Profit":"430799.04"},{"Region":"Asia","Country":"Malaysia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/24/2011","Order ID":"482408654","Ship Date":"6/27/2011","Units Sold":"4296","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"469466.88","Total Cost":"153968.64","Total Profit":"315498.24"},{"Region":"Europe","Country":"Denmark","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/11/2014","Order ID":"971252620","Ship Date":"2/19/2014","Units Sold":"4088","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"629797.28","Total Cost":"371721.84","Total Profit":"258075.44"},{"Region":"Asia","Country":"Bhutan","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"2/16/2011","Order ID":"525338590","Ship Date":"3/24/2011","Units Sold":"8218","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"898063.04","Total Cost":"294533.12","Total Profit":"603529.92"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"1/28/2012","Order ID":"744715392","Ship Date":"2/28/2012","Units Sold":"6689","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2924430.80","Total Cost":"1761414.37","Total Profit":"1163016.43"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"3/11/2012","Order ID":"149744355","Ship Date":"4/28/2012","Units Sold":"1537","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1027130.99","Total Cost":"772403.98","Total Profit":"254727.01"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/23/2011","Order ID":"931099307","Ship Date":"10/7/2011","Units Sold":"1831","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1192365.51","Total Cost":"961201.76","Total Profit":"231163.75"},{"Region":"Europe","Country":"Macedonia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"8/30/2011","Order ID":"399766576","Ship Date":"10/15/2011","Units Sold":"8668","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3789649.60","Total Cost":"2282544.44","Total Profit":"1507105.16"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"10/3/2010","Order ID":"437044990","Ship Date":"10/15/2010","Units Sold":"179","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"36820.30","Total Cost":"20962.69","Total Profit":"15857.61"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/26/2016","Order ID":"744545876","Ship Date":"2/13/2016","Units Sold":"6525","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4360461.75","Total Cost":"3279073.50","Total Profit":"1081388.25"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"11/21/2016","Order ID":"194193065","Ship Date":"12/19/2016","Units Sold":"4898","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"232410.10","Total Cost":"155707.42","Total Profit":"76702.68"},{"Region":"Europe","Country":"Slovakia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/18/2011","Order ID":"878222882","Ship Date":"3/7/2011","Units Sold":"4522","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"696659.32","Total Cost":"411185.46","Total Profit":"285473.86"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"9/17/2016","Order ID":"459184157","Ship Date":"9/17/2016","Units Sold":"1651","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"134936.23","Total Cost":"93562.17","Total Profit":"41374.06"},{"Region":"Europe","Country":"Malta","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"9/29/2014","Order ID":"719938218","Ship Date":"10/4/2014","Units Sold":"4572","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"940460.40","Total Cost":"535426.92","Total Profit":"405033.48"},{"Region":"Europe","Country":"Albania","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"11/30/2013","Order ID":"813658893","Ship Date":"1/18/2014","Units Sold":"8602","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"80256.66","Total Cost":"59525.84","Total Profit":"20730.82"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/27/2016","Order ID":"413832509","Ship Date":"6/5/2016","Units Sold":"1091","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"710470.11","Total Cost":"572731.36","Total Profit":"137738.75"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"2/3/2014","Order ID":"164257895","Ship Date":"2/7/2014","Units Sold":"6416","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1637876.48","Total Cost":"1022838.72","Total Profit":"615037.76"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/28/2015","Order ID":"329046380","Ship Date":"2/13/2015","Units Sold":"991","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"47022.95","Total Cost":"31503.89","Total Profit":"15519.06"},{"Region":"Europe","Country":"Ukraine","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/25/2017","Order ID":"342621791","Ship Date":"3/10/2017","Units Sold":"8257","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3483545.73","Total Cost":"3011245.33","Total Profit":"472300.40"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"8/15/2011","Order ID":"159720456","Ship Date":"9/12/2011","Units Sold":"3687","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2463911.49","Total Cost":"1852864.98","Total Profit":"611046.51"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"5/1/2017","Order ID":"705391204","Ship Date":"6/2/2017","Units Sold":"9787","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6373392.27","Total Cost":"5137783.52","Total Profit":"1235608.75"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/10/2016","Order ID":"724995362","Ship Date":"5/18/2016","Units Sold":"1094","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"89412.62","Total Cost":"61996.98","Total Profit":"27415.64"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/2/2010","Order ID":"834206759","Ship Date":"11/1/2010","Units Sold":"9173","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2341683.44","Total Cost":"1462359.66","Total Profit":"879323.78"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"3/20/2011","Order ID":"369011723","Ship Date":"4/21/2011","Units Sold":"7624","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"71131.92","Total Cost":"52758.08","Total Profit":"18373.84"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/29/2010","Order ID":"535709083","Ship Date":"9/7/2010","Units Sold":"7077","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3094064.40","Total Cost":"1863586.41","Total Profit":"1230477.99"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/21/2010","Order ID":"360910165","Ship Date":"5/30/2010","Units Sold":"193","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"84379.60","Total Cost":"50822.69","Total Profit":"33556.91"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/18/2016","Order ID":"741538798","Ship Date":"9/24/2016","Units Sold":"6664","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1016793.12","Total Cost":"649340.16","Total Profit":"367452.96"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/24/2014","Order ID":"394831311","Ship Date":"7/24/2014","Units Sold":"8214","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5349038.94","Total Cost":"4312021.44","Total Profit":"1037017.50"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"10/31/2015","Order ID":"808336532","Ship Date":"12/7/2015","Units Sold":"3598","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2343053.58","Total Cost":"1888806.08","Total Profit":"454247.50"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/9/2011","Order ID":"389915788","Ship Date":"5/26/2011","Units Sold":"3601","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"919263.28","Total Cost":"574071.42","Total Profit":"345191.86"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"8/14/2011","Order ID":"317742908","Ship Date":"8/14/2011","Units Sold":"6042","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"930830.52","Total Cost":"549399.06","Total Profit":"381431.46"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/17/2013","Order ID":"490304219","Ship Date":"3/17/2013","Units Sold":"769","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"500780.49","Total Cost":"403694.24","Total Profit":"97086.25"},{"Region":"North America","Country":"Greenland","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"3/29/2017","Order ID":"876398551","Ship Date":"4/28/2017","Units Sold":"4662","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3035941.02","Total Cost":"2447363.52","Total Profit":"588577.50"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/21/2011","Order ID":"165137231","Ship Date":"3/21/2011","Units Sold":"6631","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2899073.20","Total Cost":"1746141.23","Total Profit":"1152931.97"},{"Region":"Asia","Country":"China","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/20/2017","Order ID":"715944087","Ship Date":"7/10/2017","Units Sold":"2620","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"214132.60","Total Cost":"148475.40","Total Profit":"65657.20"},{"Region":"Europe","Country":"Estonia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"1/13/2014","Order ID":"908555448","Ship Date":"2/17/2014","Units Sold":"602","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"392028.42","Total Cost":"316025.92","Total Profit":"76002.50"},{"Region":"Europe","Country":"Italy","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"2/6/2014","Order ID":"993020141","Ship Date":"3/6/2014","Units Sold":"5582","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3635054.22","Total Cost":"2930326.72","Total Profit":"704727.50"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/6/2016","Order ID":"839699494","Ship Date":"11/21/2016","Units Sold":"4595","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1173011.60","Total Cost":"732534.90","Total Profit":"440476.70"},{"Region":"Asia","Country":"South Korea","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/2/2010","Order ID":"389267337","Ship Date":"11/25/2010","Units Sold":"1710","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"436528.80","Total Cost":"272608.20","Total Profit":"163920.60"},{"Region":"Europe","Country":"France","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/23/2016","Order ID":"102709996","Ship Date":"7/1/2016","Units Sold":"3025","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2021516.75","Total Cost":"1520183.50","Total Profit":"501333.25"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/7/2013","Order ID":"511326301","Ship Date":"5/15/2013","Units Sold":"1670","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"704556.30","Total Cost":"609032.30","Total Profit":"95524.00"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/20/2012","Order ID":"866727578","Ship Date":"3/2/2012","Units Sold":"2806","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1875165.62","Total Cost":"1410127.24","Total Profit":"465038.38"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/24/2013","Order ID":"490837657","Ship Date":"10/11/2013","Units Sold":"8625","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5763828.75","Total Cost":"4334407.50","Total Profit":"1429421.25"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/6/2012","Order ID":"125892865","Ship Date":"3/12/2012","Units Sold":"3351","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"516255.06","Total Cost":"304706.43","Total Profit":"211548.63"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"1/12/2014","Order ID":"584442031","Ship Date":"1/30/2014","Units Sold":"8239","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2103251.92","Total Cost":"1313461.38","Total Profit":"789790.54"},{"Region":"Europe","Country":"Estonia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/10/2011","Order ID":"499346482","Ship Date":"10/15/2011","Units Sold":"6576","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4282356.96","Total Cost":"3452136.96","Total Profit":"830220.00"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/19/2010","Order ID":"373780047","Ship Date":"4/29/2010","Units Sold":"8677","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1323936.66","Total Cost":"845486.88","Total Profit":"478449.78"},{"Region":"Europe","Country":"San Marino","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/28/2015","Order ID":"331229054","Ship Date":"9/2/2015","Units Sold":"6893","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"753267.04","Total Cost":"247045.12","Total Profit":"506221.92"},{"Region":"Europe","Country":"Latvia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"9/9/2015","Order ID":"565492331","Ship Date":"10/5/2015","Units Sold":"602","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"123831.40","Total Cost":"70500.22","Total Profit":"53331.18"},{"Region":"Europe","Country":"Slovakia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"12/17/2014","Order ID":"890681207","Ship Date":"1/22/2015","Units Sold":"1217","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"513440.13","Total Cost":"443827.73","Total Profit":"69612.40"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/21/2014","Order ID":"291219508","Ship Date":"12/31/2014","Units Sold":"7179","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4797510.33","Total Cost":"3607734.66","Total Profit":"1189775.67"},{"Region":"Europe","Country":"Macedonia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/20/2010","Order ID":"971843564","Ship Date":"10/25/2010","Units Sold":"8962","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2287819.36","Total Cost":"1428722.04","Total Profit":"859097.32"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"7/10/2017","Order ID":"707602202","Ship Date":"7/29/2017","Units Sold":"4071","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1039244.88","Total Cost":"648998.82","Total Profit":"390246.06"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"6/1/2013","Order ID":"493856751","Ship Date":"6/10/2013","Units Sold":"2042","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"420039.40","Total Cost":"239138.62","Total Profit":"180900.78"},{"Region":"Asia","Country":"Cambodia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/24/2011","Order ID":"496281039","Ship Date":"12/18/2011","Units Sold":"9443","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3983907.27","Total Cost":"3443767.67","Total Profit":"540139.60"},{"Region":"Europe","Country":"Russia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/21/2012","Order ID":"500861394","Ship Date":"5/14/2012","Units Sold":"4872","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"750580.32","Total Cost":"443010.96","Total Profit":"307569.36"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/3/2011","Order ID":"363896644","Ship Date":"4/9/2011","Units Sold":"3958","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1010398.24","Total Cost":"630984.36","Total Profit":"379413.88"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"1/1/2014","Order ID":"461998116","Ship Date":"2/6/2014","Units Sold":"4364","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"672317.84","Total Cost":"396818.52","Total Profit":"275499.32"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/5/2015","Order ID":"342089641","Ship Date":"7/16/2015","Units Sold":"781","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"508595.01","Total Cost":"409993.76","Total Profit":"98601.25"},{"Region":"Asia","Country":"South Korea","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/19/2011","Order ID":"971407544","Ship Date":"12/5/2011","Units Sold":"9934","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"2043423.80","Total Cost":"1163370.74","Total Profit":"880053.06"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"4/27/2011","Order ID":"687500655","Ship Date":"6/11/2011","Units Sold":"5577","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"52033.41","Total Cost":"38592.84","Total Profit":"13440.57"},{"Region":"Asia","Country":"Mongolia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"1/5/2016","Order ID":"148230302","Ship Date":"1/26/2016","Units Sold":"3495","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1474505.55","Total Cost":"1274591.55","Total Profit":"199914.00"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"7/11/2017","Order ID":"981770312","Ship Date":"8/8/2017","Units Sold":"6507","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"711084.96","Total Cost":"233210.88","Total Profit":"477874.08"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/23/2016","Order ID":"836607015","Ship Date":"3/28/2016","Units Sold":"9462","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1457715.72","Total Cost":"860379.66","Total Profit":"597336.06"},{"Region":"Europe","Country":"Cyprus","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"1/2/2017","Order ID":"131539237","Ship Date":"2/14/2017","Units Sold":"4238","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"201093.10","Total Cost":"134726.02","Total Profit":"66367.08"},{"Region":"Europe","Country":"Finland","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"2/28/2011","Order ID":"705678308","Ship Date":"3/23/2011","Units Sold":"4748","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"225292.60","Total Cost":"150938.92","Total Profit":"74353.68"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/28/2017","Order ID":"868448054","Ship Date":"4/30/2017","Units Sold":"1933","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1291765.91","Total Cost":"971409.82","Total Profit":"320356.09"},{"Region":"Europe","Country":"Monaco","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"1/23/2017","Order ID":"349584805","Ship Date":"3/6/2017","Units Sold":"8767","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1350644.02","Total Cost":"797183.31","Total Profit":"553460.71"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/16/2012","Order ID":"749137389","Ship Date":"6/22/2012","Units Sold":"5256","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"809739.36","Total Cost":"477928.08","Total Profit":"331811.28"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"11/18/2013","Order ID":"587467133","Ship Date":"11/18/2013","Units Sold":"3434","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2294839.18","Total Cost":"1725722.36","Total Profit":"569116.82"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"12/7/2013","Order ID":"255247867","Ship Date":"1/10/2014","Units Sold":"2371","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1544018.91","Total Cost":"1244680.16","Total Profit":"299338.75"},{"Region":"Asia","Country":"Japan","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/3/2013","Order ID":"663465917","Ship Date":"12/1/2013","Units Sold":"3163","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2059777.23","Total Cost":"1660448.48","Total Profit":"399328.75"},{"Region":"Asia","Country":"South Korea","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"2/11/2012","Order ID":"993420112","Ship Date":"3/28/2012","Units Sold":"3942","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2634320.34","Total Cost":"1981012.68","Total Profit":"653307.66"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/24/2015","Order ID":"946721780","Ship Date":"12/5/2015","Units Sold":"4868","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1242703.04","Total Cost":"776056.56","Total Profit":"466646.48"},{"Region":"Asia","Country":"Japan","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/23/2014","Order ID":"295294749","Ship Date":"7/31/2014","Units Sold":"3133","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1369747.60","Total Cost":"825012.89","Total Profit":"544734.71"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"5/4/2013","Order ID":"231375348","Ship Date":"5/5/2013","Units Sold":"7962","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5320765.74","Total Cost":"4001223.48","Total Profit":"1319542.26"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"4/5/2015","Order ID":"217512404","Ship Date":"4/22/2015","Units Sold":"5609","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2452254.80","Total Cost":"1477017.97","Total Profit":"975236.83"},{"Region":"Asia","Country":"Cambodia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/29/2016","Order ID":"236567246","Ship Date":"7/11/2016","Units Sold":"4360","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1906192.00","Total Cost":"1148118.80","Total Profit":"758073.20"},{"Region":"Asia","Country":"Taiwan","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"8/2/2010","Order ID":"341713702","Ship Date":"8/5/2010","Units Sold":"9533","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4167827.60","Total Cost":"2510324.89","Total Profit":"1657502.71"},{"Region":"Asia","Country":"Taiwan","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/9/2014","Order ID":"206438100","Ship Date":"11/29/2014","Units Sold":"8476","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"79081.08","Total Cost":"58653.92","Total Profit":"20427.16"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/13/2013","Order ID":"474539268","Ship Date":"9/11/2013","Units Sold":"5569","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1421654.32","Total Cost":"887809.98","Total Profit":"533844.34"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"12/18/2014","Order ID":"510128533","Ship Date":"12/30/2014","Units Sold":"7224","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1112929.44","Total Cost":"656878.32","Total Profit":"456051.12"},{"Region":"Europe","Country":"Moldova ","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"9/10/2016","Order ID":"647629725","Ship Date":"10/19/2016","Units Sold":"6882","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"562465.86","Total Cost":"390002.94","Total Profit":"172462.92"},{"Region":"Europe","Country":"Latvia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/6/2010","Order ID":"841779172","Ship Date":"3/19/2010","Units Sold":"18","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"1471.14","Total Cost":"1020.06","Total Profit":"451.08"},{"Region":"Central America and the Caribbean","Country":"Saint Lucia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"1/17/2014","Order ID":"217625701","Ship Date":"2/26/2014","Units Sold":"9136","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5949454.56","Total Cost":"4796034.56","Total Profit":"1153420.00"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"8/5/2010","Order ID":"220530641","Ship Date":"8/23/2010","Units Sold":"8772","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1338431.76","Total Cost":"854743.68","Total Profit":"483688.08"},{"Region":"Europe","Country":"Kosovo","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"12/11/2016","Order ID":"566167819","Ship Date":"12/11/2016","Units Sold":"494","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"53984.32","Total Cost":"17704.96","Total Profit":"36279.36"},{"Region":"Asia","Country":"North Korea","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/6/2013","Order ID":"590523564","Ship Date":"7/28/2013","Units Sold":"7900","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"863312.00","Total Cost":"283136.00","Total Profit":"580176.00"},{"Region":"Europe","Country":"Denmark","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"11/3/2015","Order ID":"599896705","Ship Date":"11/8/2015","Units Sold":"1621","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"132484.33","Total Cost":"91862.07","Total Profit":"40622.26"},{"Region":"North America","Country":"United States of America","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/1/2010","Order ID":"520898568","Ship Date":"5/10/2010","Units Sold":"4317","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"471761.76","Total Cost":"154721.28","Total Profit":"317040.48"},{"Region":"Europe","Country":"Latvia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/20/2010","Order ID":"350452983","Ship Date":"10/7/2010","Units Sold":"5680","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"866654.40","Total Cost":"553459.20","Total Profit":"313195.20"},{"Region":"Europe","Country":"San Marino","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/21/2016","Order ID":"605796277","Ship Date":"11/11/2016","Units Sold":"7435","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1898006.80","Total Cost":"1185287.70","Total Profit":"712719.10"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"9/17/2010","Order ID":"974477279","Ship Date":"10/23/2010","Units Sold":"8337","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1272059.46","Total Cost":"812357.28","Total Profit":"459702.18"},{"Region":"Asia","Country":"Vietnam","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/21/2013","Order ID":"764357316","Ship Date":"4/21/2013","Units Sold":"9170","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5971595.70","Total Cost":"4813883.20","Total Profit":"1157712.50"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"3/11/2012","Order ID":"253610217","Ship Date":"4/18/2012","Units Sold":"7754","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1979441.12","Total Cost":"1236142.68","Total Profit":"743298.44"},{"Region":"Asia","Country":"Nepal","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"9/14/2011","Order ID":"240722310","Ship Date":"10/30/2011","Units Sold":"3936","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"321689.28","Total Cost":"223053.12","Total Profit":"98636.16"},{"Region":"Europe","Country":"Hungary","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/5/2013","Order ID":"694492423","Ship Date":"3/14/2013","Units Sold":"4596","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"42880.68","Total Cost":"31804.32","Total Profit":"11076.36"},{"Region":"Asia","Country":"Thailand","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"3/22/2011","Order ID":"304031884","Ship Date":"3/25/2011","Units Sold":"8646","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"410252.70","Total Cost":"274856.34","Total Profit":"135396.36"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/4/2013","Order ID":"528764522","Ship Date":"6/1/2013","Units Sold":"2027","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"855171.03","Total Cost":"739226.63","Total Profit":"115944.40"},{"Region":"Europe","Country":"Belgium","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/20/2012","Order ID":"648426663","Ship Date":"8/24/2012","Units Sold":"2714","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1813684.78","Total Cost":"1363893.56","Total Profit":"449791.22"},{"Region":"North America","Country":"Canada","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/20/2014","Order ID":"913067138","Ship Date":"10/7/2014","Units Sold":"5711","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2496849.20","Total Cost":"1503877.63","Total Profit":"992971.57"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"2/13/2011","Order ID":"293047273","Ship Date":"2/26/2011","Units Sold":"8055","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"658335.15","Total Cost":"456476.85","Total Profit":"201858.30"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/12/2013","Order ID":"529040896","Ship Date":"6/7/2013","Units Sold":"3813","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"311636.49","Total Cost":"216082.71","Total Profit":"95553.78"},{"Region":"Europe","Country":"Spain","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"4/27/2011","Order ID":"282034337","Ship Date":"5/2/2011","Units Sold":"9083","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5914940.43","Total Cost":"4768211.68","Total Profit":"1146728.75"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/11/2014","Order ID":"983326423","Ship Date":"12/17/2014","Units Sold":"6995","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"764413.60","Total Cost":"250700.80","Total Profit":"513712.80"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/15/2012","Order ID":"984528481","Ship Date":"4/2/2012","Units Sold":"2711","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"221570.03","Total Cost":"153632.37","Total Profit":"67937.66"},{"Region":"Asia","Country":"Maldives","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"7/22/2011","Order ID":"507564342","Ship Date":"9/1/2011","Units Sold":"8423","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5485141.83","Total Cost":"4421738.08","Total Profit":"1063403.75"},{"Region":"Asia","Country":"Philippines","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"8/16/2014","Order ID":"294670331","Ship Date":"8/20/2014","Units Sold":"8354","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"77942.82","Total Cost":"57809.68","Total Profit":"20133.14"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/25/2012","Order ID":"258395278","Ship Date":"12/13/2012","Units Sold":"3760","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1643872.00","Total Cost":"990120.80","Total Profit":"653751.20"},{"Region":"Europe","Country":"Portugal","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/5/2013","Order ID":"831600511","Ship Date":"11/1/2013","Units Sold":"7926","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3465247.20","Total Cost":"2087153.58","Total Profit":"1378093.62"},{"Region":"Europe","Country":"Monaco","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"10/11/2014","Order ID":"717459857","Ship Date":"11/9/2014","Units Sold":"1170","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"10916.10","Total Cost":"8096.40","Total Profit":"2819.70"},{"Region":"Europe","Country":"Ukraine","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"4/5/2014","Order ID":"939459645","Ship Date":"4/16/2014","Units Sold":"5841","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2553685.20","Total Cost":"1538110.53","Total Profit":"1015574.67"},{"Region":"Europe","Country":"Slovenia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"6/14/2015","Order ID":"791398704","Ship Date":"6/29/2015","Units Sold":"1318","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"144031.04","Total Cost":"47237.12","Total Profit":"96793.92"},{"Region":"Asia","Country":"South Korea","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/31/2015","Order ID":"987388360","Ship Date":"3/19/2015","Units Sold":"9013","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"736632.49","Total Cost":"510766.71","Total Profit":"225865.78"},{"Region":"Europe","Country":"Armenia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/30/2014","Order ID":"511852443","Ship Date":"11/19/2014","Units Sold":"7367","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1134960.02","Total Cost":"669881.31","Total Profit":"465078.71"},{"Region":"Asia","Country":"Vietnam","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/2/2017","Order ID":"669527280","Ship Date":"3/7/2017","Units Sold":"6855","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2892055.95","Total Cost":"2499949.95","Total Profit":"392106.00"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"6/22/2014","Order ID":"135461699","Ship Date":"8/3/2014","Units Sold":"4982","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"407178.86","Total Cost":"282329.94","Total Profit":"124848.92"},{"Region":"Asia","Country":"Laos","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/18/2015","Order ID":"805017030","Ship Date":"7/23/2015","Units Sold":"1283","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"60878.35","Total Cost":"40786.57","Total Profit":"20091.78"},{"Region":"Asia","Country":"China","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"10/3/2010","Order ID":"143867099","Ship Date":"10/12/2010","Units Sold":"2326","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"354901.08","Total Cost":"226645.44","Total Profit":"128255.64"},{"Region":"Europe","Country":"Kosovo","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"11/2/2014","Order ID":"637998235","Ship Date":"11/29/2014","Units Sold":"6710","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4369619.10","Total Cost":"3522481.60","Total Profit":"847137.50"},{"Region":"Asia","Country":"Maldives","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/2/2016","Order ID":"343709266","Ship Date":"11/8/2016","Units Sold":"65","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"16593.20","Total Cost":"10362.30","Total Profit":"6230.90"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/9/2014","Order ID":"537611520","Ship Date":"4/28/2014","Units Sold":"50","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"21094.50","Total Cost":"18234.50","Total Profit":"2860.00"},{"Region":"Asia","Country":"Malaysia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/28/2017","Order ID":"766628825","Ship Date":"4/14/2017","Units Sold":"1360","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"347180.80","Total Cost":"216811.20","Total Profit":"130369.60"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"5/12/2014","Order ID":"197997510","Ship Date":"5/14/2014","Units Sold":"718","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"6698.94","Total Cost":"4968.56","Total Profit":"1730.38"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"1/3/2014","Order ID":"769266402","Ship Date":"1/10/2014","Units Sold":"1878","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"17521.74","Total Cost":"12995.76","Total Profit":"4525.98"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"7/18/2010","Order ID":"438296830","Ship Date":"9/5/2010","Units Sold":"627","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"51244.71","Total Cost":"35532.09","Total Profit":"15712.62"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"10/6/2010","Order ID":"833262622","Ship Date":"11/4/2010","Units Sold":"9782","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2497148.96","Total Cost":"1559446.44","Total Profit":"937702.52"},{"Region":"Europe","Country":"Iceland","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/14/2014","Order ID":"502650105","Ship Date":"12/29/2014","Units Sold":"4191","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"862088.70","Total Cost":"490808.01","Total Profit":"371280.69"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/4/2013","Order ID":"765258109","Ship Date":"2/17/2013","Units Sold":"5735","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3734689.35","Total Cost":"3010645.60","Total Profit":"724043.75"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"5/27/2011","Order ID":"760197961","Ship Date":"7/7/2011","Units Sold":"8325","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"77672.25","Total Cost":"57609.00","Total Profit":"20063.25"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/6/2013","Order ID":"596893489","Ship Date":"5/10/2013","Units Sold":"2903","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"597147.10","Total Cost":"339970.33","Total Profit":"257176.77"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/25/2015","Order ID":"905081021","Ship Date":"12/20/2015","Units Sold":"2442","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1067642.40","Total Cost":"643051.86","Total Profit":"424590.54"},{"Region":"Asia","Country":"Bhutan","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/24/2013","Order ID":"584809386","Ship Date":"5/4/2013","Units Sold":"6948","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"759277.44","Total Cost":"249016.32","Total Profit":"510261.12"},{"Region":"Europe","Country":"Malta","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/18/2016","Order ID":"856439912","Ship Date":"2/20/2016","Units Sold":"8457","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1290369.06","Total Cost":"824050.08","Total Profit":"466318.98"},{"Region":"Asia","Country":"Laos","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"9/11/2016","Order ID":"310646426","Ship Date":"9/11/2016","Units Sold":"6036","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"493322.28","Total Cost":"342060.12","Total Profit":"151262.16"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"6/28/2016","Order ID":"758415257","Ship Date":"8/6/2016","Units Sold":"783","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"85566.24","Total Cost":"28062.72","Total Profit":"57503.52"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/11/2013","Order ID":"481045234","Ship Date":"12/18/2013","Units Sold":"829","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"349746.81","Total Cost":"302328.01","Total Profit":"47418.80"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"3/13/2016","Order ID":"980147683","Ship Date":"4/15/2016","Units Sold":"6335","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2672673.15","Total Cost":"2310311.15","Total Profit":"362362.00"},{"Region":"Europe","Country":"Ireland","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/15/2012","Order ID":"227646434","Ship Date":"8/10/2012","Units Sold":"4493","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1895551.77","Total Cost":"1638552.17","Total Profit":"256999.60"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/9/2016","Order ID":"315777814","Ship Date":"1/23/2016","Units Sold":"4527","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"931203.90","Total Cost":"530156.97","Total Profit":"401046.93"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/13/2014","Order ID":"707090651","Ship Date":"4/25/2014","Units Sold":"2692","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"687213.76","Total Cost":"429158.64","Total Profit":"258055.12"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/22/2011","Order ID":"484446275","Ship Date":"4/11/2011","Units Sold":"7273","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3068405.97","Total Cost":"2652390.37","Total Profit":"416015.60"},{"Region":"Asia","Country":"China","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"4/20/2015","Order ID":"601018512","Ship Date":"5/27/2015","Units Sold":"3588","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1568673.60","Total Cost":"944828.04","Total Profit":"623845.56"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/12/2013","Order ID":"730293691","Ship Date":"10/21/2013","Units Sold":"8987","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1384537.22","Total Cost":"817187.91","Total Profit":"567349.31"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"8/12/2013","Order ID":"616070640","Ship Date":"9/13/2013","Units Sold":"7848","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"73221.84","Total Cost":"54308.16","Total Profit":"18913.68"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"4/28/2015","Order ID":"522460687","Ship Date":"6/4/2015","Units Sold":"6582","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1680252.96","Total Cost":"1049302.44","Total Profit":"630950.52"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/14/2016","Order ID":"783887660","Ship Date":"10/27/2016","Units Sold":"8633","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1317223.14","Total Cost":"841199.52","Total Profit":"476023.62"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"8/17/2016","Order ID":"455087888","Ship Date":"9/18/2016","Units Sold":"9474","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6331189.98","Total Cost":"4761063.96","Total Profit":"1570126.02"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/27/2011","Order ID":"461110198","Ship Date":"4/21/2011","Units Sold":"1609","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"131503.57","Total Cost":"91182.03","Total Profit":"40321.54"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/16/2012","Order ID":"447315919","Ship Date":"11/23/2012","Units Sold":"9576","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1475278.56","Total Cost":"870745.68","Total Profit":"604532.88"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"1/16/2016","Order ID":"129378879","Ship Date":"1/16/2016","Units Sold":"4940","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"539843.20","Total Cost":"177049.60","Total Profit":"362793.60"},{"Region":"Europe","Country":"Slovenia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"4/13/2016","Order ID":"643285405","Ship Date":"5/23/2016","Units Sold":"1301","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"847224.21","Total Cost":"682972.96","Total Profit":"164251.25"},{"Region":"Asia","Country":"Nepal","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"1/1/2014","Order ID":"495334327","Ship Date":"2/20/2014","Units Sold":"9290","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"86675.70","Total Cost":"64286.80","Total Profit":"22388.90"},{"Region":"Asia","Country":"India","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/1/2010","Order ID":"512136971","Ship Date":"9/18/2010","Units Sold":"1566","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"127989.18","Total Cost":"88745.22","Total Profit":"39243.96"},{"Region":"Asia","Country":"Bhutan","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"8/6/2012","Order ID":"690617167","Ship Date":"8/24/2012","Units Sold":"7822","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1996800.16","Total Cost":"1246983.24","Total Profit":"749816.92"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/13/2012","Order ID":"648011243","Ship Date":"2/23/2012","Units Sold":"9782","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1068976.96","Total Cost":"350586.88","Total Profit":"718390.08"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"8/21/2013","Order ID":"971868026","Ship Date":"9/2/2013","Units Sold":"6201","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4038153.21","Total Cost":"3255276.96","Total Profit":"782876.25"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/24/2015","Order ID":"970048844","Ship Date":"8/17/2015","Units Sold":"7865","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2007777.20","Total Cost":"1253838.30","Total Profit":"753938.90"},{"Region":"Asia","Country":"Japan","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"3/29/2013","Order ID":"920727527","Ship Date":"3/31/2013","Units Sold":"2591","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"395334.78","Total Cost":"252467.04","Total Profit":"142867.74"},{"Region":"Europe","Country":"Malta","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"9/30/2010","Order ID":"722390401","Ship Date":"11/12/2010","Units Sold":"228","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"10818.60","Total Cost":"7248.12","Total Profit":"3570.48"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/31/2016","Order ID":"343836295","Ship Date":"1/22/2017","Units Sold":"7655","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1179329.30","Total Cost":"696069.15","Total Profit":"483260.15"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"9/13/2011","Order ID":"274176537","Ship Date":"10/18/2011","Units Sold":"3785","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"577515.30","Total Cost":"368810.40","Total Profit":"208704.90"},{"Region":"Europe","Country":"Montenegro","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/3/2017","Order ID":"172834956","Ship Date":"4/16/2017","Units Sold":"4559","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"372607.07","Total Cost":"258358.53","Total Profit":"114248.54"},{"Region":"Europe","Country":"Cyprus","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"9/16/2011","Order ID":"219547879","Ship Date":"9/18/2011","Units Sold":"7951","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2029731.28","Total Cost":"1267548.42","Total Profit":"762182.86"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/24/2015","Order ID":"664364135","Ship Date":"11/29/2015","Units Sold":"8966","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3919935.20","Total Cost":"2361016.78","Total Profit":"1558918.42"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/9/2013","Order ID":"477645051","Ship Date":"7/18/2013","Units Sold":"4640","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"714838.40","Total Cost":"421915.20","Total Profit":"292923.20"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/12/2016","Order ID":"500064456","Ship Date":"5/19/2016","Units Sold":"9040","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1392702.40","Total Cost":"822007.20","Total Profit":"570695.20"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"3/18/2014","Order ID":"292608678","Ship Date":"4/17/2014","Units Sold":"8265","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5382250.65","Total Cost":"4338794.40","Total Profit":"1043456.25"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/5/2016","Order ID":"386576545","Ship Date":"12/16/2016","Units Sold":"5445","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2380554.00","Total Cost":"1433831.85","Total Profit":"946722.15"},{"Region":"Asia","Country":"Thailand","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/27/2012","Order ID":"933579385","Ship Date":"9/30/2012","Units Sold":"5741","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3836538.07","Total Cost":"2885082.14","Total Profit":"951455.93"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"6/4/2017","Order ID":"355541026","Ship Date":"7/17/2017","Units Sold":"1345","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"875877.45","Total Cost":"706071.20","Total Profit":"169806.25"},{"Region":"Asia","Country":"Bhutan","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"7/17/2017","Order ID":"294697797","Ship Date":"8/17/2017","Units Sold":"6482","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"60477.06","Total Cost":"44855.44","Total Profit":"15621.62"},{"Region":"North America","Country":"Canada","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/28/2012","Order ID":"663598525","Ship Date":"2/4/2012","Units Sold":"2405","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"196560.65","Total Cost":"136291.35","Total Profit":"60269.30"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/21/2016","Order ID":"995104539","Ship Date":"4/16/2016","Units Sold":"2401","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"493885.70","Total Cost":"281181.11","Total Profit":"212704.59"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"2/27/2012","Order ID":"892389667","Ship Date":"3/25/2012","Units Sold":"6788","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"322090.60","Total Cost":"215790.52","Total Profit":"106300.08"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"6/3/2013","Order ID":"478940236","Ship Date":"6/17/2013","Units Sold":"7914","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"864841.92","Total Cost":"283637.76","Total Profit":"581204.16"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/7/2015","Order ID":"848555076","Ship Date":"10/9/2015","Units Sold":"5159","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"421645.07","Total Cost":"292360.53","Total Profit":"129284.54"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"9/6/2015","Order ID":"915345513","Ship Date":"10/11/2015","Units Sold":"9933","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1085478.24","Total Cost":"355998.72","Total Profit":"729479.52"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"12/30/2014","Order ID":"563735377","Ship Date":"1/16/2015","Units Sold":"680","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"297296.00","Total Cost":"179064.40","Total Profit":"118231.60"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/13/2016","Order ID":"198460996","Ship Date":"5/21/2016","Units Sold":"7874","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3442512.80","Total Cost":"2073460.42","Total Profit":"1369052.38"},{"Region":"Europe","Country":"Portugal","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"11/24/2011","Order ID":"294571197","Ship Date":"1/5/2012","Units Sold":"9018","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5872611.78","Total Cost":"4734089.28","Total Profit":"1138522.50"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/29/2010","Order ID":"947427308","Ship Date":"7/6/2010","Units Sold":"3649","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"931516.72","Total Cost":"581723.58","Total Profit":"349793.14"},{"Region":"Asia","Country":"Philippines","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/1/2010","Order ID":"522703158","Ship Date":"2/24/2010","Units Sold":"8335","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5427835.35","Total Cost":"4375541.60","Total Profit":"1052293.75"},{"Region":"Europe","Country":"Hungary","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/10/2010","Order ID":"606385076","Ship Date":"4/19/2010","Units Sold":"1674","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"182934.72","Total Cost":"59996.16","Total Profit":"122938.56"},{"Region":"Europe","Country":"Hungary","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/26/2015","Order ID":"154771888","Ship Date":"4/12/2015","Units Sold":"9296","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"86731.68","Total Cost":"64328.32","Total Profit":"22403.36"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/3/2014","Order ID":"444474923","Ship Date":"12/15/2014","Units Sold":"8862","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"420501.90","Total Cost":"281722.98","Total Profit":"138778.92"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/13/2011","Order ID":"122418010","Ship Date":"11/13/2011","Units Sold":"5064","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"553393.92","Total Cost":"181493.76","Total Profit":"371900.16"},{"Region":"Europe","Country":"Estonia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"5/25/2017","Order ID":"155837476","Ship Date":"6/30/2017","Units Sold":"4627","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"378164.71","Total Cost":"262212.09","Total Profit":"115952.62"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/3/2017","Order ID":"682282149","Ship Date":"4/21/2017","Units Sold":"1305","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"849829.05","Total Cost":"685072.80","Total Profit":"164756.25"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"2/14/2013","Order ID":"559613358","Ship Date":"2/19/2013","Units Sold":"883","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"96494.24","Total Cost":"31646.72","Total Profit":"64847.52"},{"Region":"Europe","Country":"Vatican City","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"1/18/2012","Order ID":"516004931","Ship Date":"1/26/2012","Units Sold":"6181","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2607702.09","Total Cost":"2254148.89","Total Profit":"353553.20"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/26/2014","Order ID":"899943196","Ship Date":"4/21/2014","Units Sold":"2045","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"522047.60","Total Cost":"326013.90","Total Profit":"196033.70"},{"Region":"Asia","Country":"Singapore","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"3/27/2017","Order ID":"330226981","Ship Date":"4/8/2017","Units Sold":"357","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"91134.96","Total Cost":"56912.94","Total Profit":"34222.02"},{"Region":"Asia","Country":"Malaysia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/12/2012","Order ID":"645967614","Ship Date":"3/20/2012","Units Sold":"5027","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"549350.56","Total Cost":"180167.68","Total Profit":"369182.88"},{"Region":"Europe","Country":"Poland","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/1/2017","Order ID":"156588923","Ship Date":"7/5/2017","Units Sold":"6997","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"764632.16","Total Cost":"250772.48","Total Profit":"513859.68"},{"Region":"Europe","Country":"San Marino","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/17/2015","Order ID":"391827237","Ship Date":"4/24/2015","Units Sold":"9242","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4040602.40","Total Cost":"2433695.86","Total Profit":"1606906.54"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/22/2014","Order ID":"251731383","Ship Date":"10/4/2014","Units Sold":"1765","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"271915.90","Total Cost":"160491.45","Total Profit":"111424.45"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"2/10/2011","Order ID":"956662690","Ship Date":"3/25/2011","Units Sold":"6604","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2887268.80","Total Cost":"1739031.32","Total Profit":"1148237.48"},{"Region":"Europe","Country":"Lithuania","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"5/11/2012","Order ID":"197294986","Ship Date":"6/27/2012","Units Sold":"2825","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"134046.25","Total Cost":"89806.75","Total Profit":"44239.50"},{"Region":"Europe","Country":"Romania","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/17/2012","Order ID":"684614598","Ship Date":"2/14/2012","Units Sold":"1528","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"235403.68","Total Cost":"138941.04","Total Profit":"96462.64"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/31/2016","Order ID":"699920356","Ship Date":"5/18/2016","Units Sold":"842","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"68816.66","Total Cost":"47716.14","Total Profit":"21100.52"},{"Region":"Europe","Country":"Latvia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"12/21/2016","Order ID":"844823586","Ship Date":"1/22/2017","Units Sold":"928","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"405721.60","Total Cost":"244370.24","Total Profit":"161351.36"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/26/2011","Order ID":"891248118","Ship Date":"3/9/2011","Units Sold":"8979","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1846980.30","Total Cost":"1051530.69","Total Profit":"795449.61"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/10/2011","Order ID":"231430280","Ship Date":"8/14/2011","Units Sold":"4218","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"460943.04","Total Cost":"151173.12","Total Profit":"309769.92"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/10/2013","Order ID":"127918899","Ship Date":"11/15/2013","Units Sold":"2900","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"137605.00","Total Cost":"92191.00","Total Profit":"45414.00"},{"Region":"Europe","Country":"Kosovo","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"11/3/2013","Order ID":"563575303","Ship Date":"11/14/2013","Units Sold":"3311","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"845232.08","Total Cost":"527839.62","Total Profit":"317392.46"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"12/1/2012","Order ID":"691573321","Ship Date":"1/19/2013","Units Sold":"769","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"500780.49","Total Cost":"403694.24","Total Profit":"97086.25"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"3/6/2013","Order ID":"185399281","Ship Date":"4/2/2013","Units Sold":"2622","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"214296.06","Total Cost":"148588.74","Total Profit":"65707.32"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/31/2014","Order ID":"588852012","Ship Date":"2/13/2014","Units Sold":"3251","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2172545.77","Total Cost":"1633757.54","Total Profit":"538788.23"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/27/2016","Order ID":"366042840","Ship Date":"4/7/2016","Units Sold":"9065","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1383137.70","Total Cost":"883293.60","Total Profit":"499844.10"},{"Region":"Europe","Country":"Montenegro","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"3/11/2017","Order ID":"751395595","Ship Date":"4/5/2017","Units Sold":"3509","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"540596.54","Total Cost":"319073.37","Total Profit":"221523.17"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"1/21/2016","Order ID":"799646604","Ship Date":"1/21/2016","Units Sold":"2055","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"524600.40","Total Cost":"327608.10","Total Profit":"196992.30"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/19/2016","Order ID":"535844695","Ship Date":"7/29/2016","Units Sold":"7208","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1840058.24","Total Cost":"1149099.36","Total Profit":"690958.88"},{"Region":"Asia","Country":"Malaysia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/19/2015","Order ID":"505351197","Ship Date":"9/12/2015","Units Sold":"3504","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"166264.80","Total Cost":"111392.16","Total Profit":"54872.64"},{"Region":"North America","Country":"Canada","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/11/2015","Order ID":"423839938","Ship Date":"9/8/2015","Units Sold":"2511","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"383128.38","Total Cost":"244671.84","Total Profit":"138456.54"},{"Region":"Asia","Country":"Bhutan","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/15/2011","Order ID":"527297246","Ship Date":"1/20/2012","Units Sold":"7828","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1205981.68","Total Cost":"711800.04","Total Profit":"494181.64"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"8/21/2012","Order ID":"222021949","Ship Date":"9/12/2012","Units Sold":"83","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"17073.10","Total Cost":"9720.13","Total Profit":"7352.97"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/24/2011","Order ID":"334625375","Ship Date":"8/16/2011","Units Sold":"1939","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"818044.71","Total Cost":"707133.91","Total Profit":"110910.80"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"1/14/2015","Order ID":"862031352","Ship Date":"1/30/2015","Units Sold":"3088","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"475737.28","Total Cost":"280791.84","Total Profit":"194945.44"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/23/2015","Order ID":"521476209","Ship Date":"5/31/2015","Units Sold":"5253","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"574047.84","Total Cost":"188267.52","Total Profit":"385780.32"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"1/13/2017","Order ID":"800508773","Ship Date":"1/30/2017","Units Sold":"7190","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3143468.00","Total Cost":"1893342.70","Total Profit":"1250125.30"},{"Region":"Asia","Country":"North Korea","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"10/21/2010","Order ID":"106990373","Ship Date":"12/4/2010","Units Sold":"9684","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1477584.72","Total Cost":"943608.96","Total Profit":"533975.76"},{"Region":"Europe","Country":"Andorra","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"10/5/2014","Order ID":"519094836","Ship Date":"11/21/2014","Units Sold":"552","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"26192.40","Total Cost":"17548.08","Total Profit":"8644.32"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"4/6/2010","Order ID":"135308492","Ship Date":"4/23/2010","Units Sold":"9644","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6280269.24","Total Cost":"5062714.24","Total Profit":"1217555.00"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"10/20/2013","Order ID":"724430167","Ship Date":"11/24/2013","Units Sold":"3840","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1620057.60","Total Cost":"1400409.60","Total Profit":"219648.00"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"8/26/2012","Order ID":"975571191","Ship Date":"10/10/2012","Units Sold":"2050","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"523324.00","Total Cost":"326811.00","Total Profit":"196513.00"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/27/2014","Order ID":"548155391","Ship Date":"2/24/2014","Units Sold":"216","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"32957.28","Total Cost":"21047.04","Total Profit":"11910.24"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"4/3/2011","Order ID":"521919095","Ship Date":"5/2/2011","Units Sold":"6313","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4218788.51","Total Cost":"3172535.02","Total Profit":"1046253.49"},{"Region":"Asia","Country":"Cambodia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"5/17/2017","Order ID":"246911132","Ship Date":"6/18/2017","Units Sold":"5346","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"823604.76","Total Cost":"486111.78","Total Profit":"337492.98"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"5/24/2016","Order ID":"493492829","Ship Date":"6/26/2016","Units Sold":"4350","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"40585.50","Total Cost":"30102.00","Total Profit":"10483.50"},{"Region":"Europe","Country":"Russia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/6/2012","Order ID":"302338016","Ship Date":"4/23/2012","Units Sold":"7392","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"68967.36","Total Cost":"51152.64","Total Profit":"17814.72"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/28/2017","Order ID":"134433019","Ship Date":"8/30/2017","Units Sold":"572","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"46749.56","Total Cost":"32415.24","Total Profit":"14334.32"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/25/2011","Order ID":"521076667","Ship Date":"12/11/2011","Units Sold":"7020","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"767145.60","Total Cost":"251596.80","Total Profit":"515548.80"},{"Region":"Europe","Country":"Monaco","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/1/2013","Order ID":"713880288","Ship Date":"10/17/2013","Units Sold":"1896","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"89965.20","Total Cost":"60273.84","Total Profit":"29691.36"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/11/2016","Order ID":"934767711","Ship Date":"4/3/2016","Units Sold":"7393","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3119032.77","Total Cost":"2696153.17","Total Profit":"422879.60"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"5/12/2013","Order ID":"125975263","Ship Date":"6/17/2013","Units Sold":"7735","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3263319.15","Total Cost":"2820877.15","Total Profit":"442442.00"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/22/2011","Order ID":"900051772","Ship Date":"12/6/2011","Units Sold":"4175","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"858797.50","Total Cost":"488934.25","Total Profit":"369863.25"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/1/2011","Order ID":"989858567","Ship Date":"8/4/2011","Units Sold":"2","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"874.40","Total Cost":"526.66","Total Profit":"347.74"},{"Region":"Europe","Country":"Iceland","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/3/2010","Order ID":"898569476","Ship Date":"1/5/2010","Units Sold":"5531","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"604427.68","Total Cost":"198231.04","Total Profit":"406196.64"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/20/2013","Order ID":"749670827","Ship Date":"3/7/2013","Units Sold":"3112","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"254343.76","Total Cost":"176357.04","Total Profit":"77986.72"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/22/2016","Order ID":"736961448","Ship Date":"6/18/2016","Units Sold":"2124","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"173594.52","Total Cost":"120367.08","Total Profit":"53227.44"},{"Region":"Europe","Country":"Iceland","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/1/2016","Order ID":"674552667","Ship Date":"10/2/2016","Units Sold":"3979","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1739618.80","Total Cost":"1047790.07","Total Profit":"691828.73"},{"Region":"Europe","Country":"Georgia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/20/2015","Order ID":"446868312","Ship Date":"10/3/2015","Units Sold":"7119","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"66420.27","Total Cost":"49263.48","Total Profit":"17156.79"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"12/13/2015","Order ID":"458644711","Ship Date":"1/3/2016","Units Sold":"2017","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"414896.90","Total Cost":"236210.87","Total Profit":"178686.03"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"5/14/2017","Order ID":"284930694","Ship Date":"6/2/2017","Units Sold":"6179","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"951936.74","Total Cost":"561856.47","Total Profit":"390080.27"},{"Region":"Europe","Country":"Albania","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/26/2013","Order ID":"921087586","Ship Date":"6/13/2013","Units Sold":"9140","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"85276.20","Total Cost":"63248.80","Total Profit":"22027.40"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"6/19/2017","Order ID":"732789218","Ship Date":"7/3/2017","Units Sold":"7469","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3265446.80","Total Cost":"1966811.77","Total Profit":"1298635.03"},{"Region":"Europe","Country":"Lithuania","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"10/2/2013","Order ID":"406021916","Ship Date":"10/21/2013","Units Sold":"9763","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4268383.60","Total Cost":"2570890.79","Total Profit":"1697492.81"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/10/2014","Order ID":"697084510","Ship Date":"2/10/2014","Units Sold":"1652","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1103982.04","Total Cost":"830196.08","Total Profit":"273785.96"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/21/2015","Order ID":"182588326","Ship Date":"1/2/2016","Units Sold":"798","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"519665.58","Total Cost":"418918.08","Total Profit":"100747.50"},{"Region":"Europe","Country":"Lithuania","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/16/2014","Order ID":"209457194","Ship Date":"7/29/2014","Units Sold":"1893","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1265035.11","Total Cost":"951308.22","Total Profit":"313726.89"},{"Region":"Asia","Country":"Laos","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"5/3/2013","Order ID":"844927442","Ship Date":"6/20/2013","Units Sold":"1661","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"726189.20","Total Cost":"437391.13","Total Profit":"288798.07"},{"Region":"Europe","Country":"Poland","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/26/2013","Order ID":"426547896","Ship Date":"4/13/2013","Units Sold":"3856","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"421383.68","Total Cost":"138199.04","Total Profit":"283184.64"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"3/4/2016","Order ID":"512179887","Ship Date":"4/13/2016","Units Sold":"4265","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1864658.00","Total Cost":"1123102.45","Total Profit":"741555.55"},{"Region":"Europe","Country":"Belarus","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"10/21/2013","Order ID":"929997241","Ship Date":"11/6/2013","Units Sold":"5705","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1173518.50","Total Cost":"668112.55","Total Profit":"505405.95"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"12/26/2013","Order ID":"228486287","Ship Date":"1/9/2014","Units Sold":"3025","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"622242.50","Total Cost":"354257.75","Total Profit":"267984.75"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/11/2014","Order ID":"626445853","Ship Date":"5/21/2014","Units Sold":"8104","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1236508.32","Total Cost":"789653.76","Total Profit":"446854.56"},{"Region":"Europe","Country":"Vatican City","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"4/21/2013","Order ID":"362987267","Ship Date":"5/1/2013","Units Sold":"4854","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2047854.06","Total Cost":"1770205.26","Total Profit":"277648.80"},{"Region":"Europe","Country":"Austria","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/21/2014","Order ID":"447534358","Ship Date":"8/23/2014","Units Sold":"4217","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"344655.41","Total Cost":"238977.39","Total Profit":"105678.02"},{"Region":"Asia","Country":"Nepal","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"12/28/2014","Order ID":"609823453","Ship Date":"1/25/2015","Units Sold":"9166","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5968990.86","Total Cost":"4811783.36","Total Profit":"1157207.50"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/10/2016","Order ID":"649903380","Ship Date":"6/12/2016","Units Sold":"9707","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1996729.90","Total Cost":"1136786.77","Total Profit":"859943.13"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/23/2014","Order ID":"888135468","Ship Date":"4/23/2014","Units Sold":"7876","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5263294.52","Total Cost":"3958005.04","Total Profit":"1305289.48"},{"Region":"Sub-Saharan Africa","Country":"Mali","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/26/2016","Order ID":"815193545","Ship Date":"2/15/2016","Units Sold":"2740","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1784315.40","Total Cost":"1438390.40","Total Profit":"345925.00"},{"Region":"Europe","Country":"Albania","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"8/24/2015","Order ID":"442063939","Ship Date":"10/8/2015","Units Sold":"5398","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1110368.60","Total Cost":"632159.78","Total Profit":"478208.82"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"6/15/2011","Order ID":"750045478","Ship Date":"7/1/2011","Units Sold":"3979","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"434825.12","Total Cost":"142607.36","Total Profit":"292217.76"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/24/2010","Order ID":"540749490","Ship Date":"9/1/2010","Units Sold":"8646","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2207150.88","Total Cost":"1378345.32","Total Profit":"828805.56"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/28/2010","Order ID":"486099803","Ship Date":"3/5/2010","Units Sold":"6589","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1005349.62","Total Cost":"642032.16","Total Profit":"363317.46"},{"Region":"Asia","Country":"Singapore","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"3/27/2015","Order ID":"878332746","Ship Date":"4/20/2015","Units Sold":"7033","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"574807.09","Total Cost":"398560.11","Total Profit":"176246.98"},{"Region":"North America","Country":"Greenland","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"9/28/2013","Order ID":"279997146","Ship Date":"11/4/2013","Units Sold":"6232","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1281922.40","Total Cost":"729829.52","Total Profit":"552092.88"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"1/4/2017","Order ID":"473954331","Ship Date":"1/6/2017","Units Sold":"2474","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1653299.98","Total Cost":"1243283.96","Total Profit":"410016.02"},{"Region":"Asia","Country":"China","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/3/2011","Order ID":"613378131","Ship Date":"2/10/2011","Units Sold":"1074","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"50961.30","Total Cost":"34142.46","Total Profit":"16818.84"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/18/2013","Order ID":"371754872","Ship Date":"2/9/2013","Units Sold":"9383","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2395292.24","Total Cost":"1495837.86","Total Profit":"899454.38"},{"Region":"Europe","Country":"Ireland","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"1/11/2015","Order ID":"392883384","Ship Date":"2/3/2015","Units Sold":"1779","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"16598.07","Total Cost":"12310.68","Total Profit":"4287.39"},{"Region":"Europe","Country":"Hungary","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/18/2017","Order ID":"940874993","Ship Date":"7/8/2017","Units Sold":"4674","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"713158.92","Total Cost":"455434.56","Total Profit":"257724.36"},{"Region":"North America","Country":"Greenland","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"7/30/2010","Order ID":"550153529","Ship Date":"9/3/2010","Units Sold":"1510","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"71649.50","Total Cost":"48002.90","Total Profit":"23646.60"},{"Region":"Europe","Country":"Georgia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/16/2015","Order ID":"975455319","Ship Date":"2/3/2016","Units Sold":"7761","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3274288.29","Total Cost":"2830359.09","Total Profit":"443929.20"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"8/8/2014","Order ID":"441829192","Ship Date":"9/9/2014","Units Sold":"5931","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2502229.59","Total Cost":"2162976.39","Total Profit":"339253.20"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"4/16/2011","Order ID":"394636476","Ship Date":"5/5/2011","Units Sold":"558","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"60978.24","Total Cost":"19998.72","Total Profit":"40979.52"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/27/2015","Order ID":"549550998","Ship Date":"9/30/2015","Units Sold":"3207","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1402100.40","Total Cost":"844499.31","Total Profit":"557601.09"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/3/2015","Order ID":"242559087","Ship Date":"9/12/2015","Units Sold":"7479","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4870399.59","Total Cost":"3926175.84","Total Profit":"944223.75"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/1/2011","Order ID":"679959571","Ship Date":"10/23/2011","Units Sold":"4002","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"823211.40","Total Cost":"468674.22","Total Profit":"354537.18"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"12/4/2012","Order ID":"888363778","Ship Date":"12/11/2012","Units Sold":"5438","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3634052.26","Total Cost":"2732812.52","Total Profit":"901239.74"},{"Region":"Europe","Country":"Lithuania","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/17/2010","Order ID":"864695537","Ship Date":"6/28/2010","Units Sold":"1480","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"225818.40","Total Cost":"144211.20","Total Profit":"81607.20"},{"Region":"Asia","Country":"Mongolia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"6/25/2011","Order ID":"226191174","Ship Date":"7/9/2011","Units Sold":"3850","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"587433.00","Total Cost":"375144.00","Total Profit":"212289.00"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"5/3/2013","Order ID":"460399520","Ship Date":"5/3/2013","Units Sold":"1304","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"268232.80","Total Cost":"152711.44","Total Profit":"115521.36"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"2/3/2014","Order ID":"875181901","Ship Date":"3/18/2014","Units Sold":"4628","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"505747.84","Total Cost":"165867.52","Total Profit":"339880.32"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/3/2016","Order ID":"848712146","Ship Date":"10/21/2016","Units Sold":"1639","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"716570.80","Total Cost":"431597.87","Total Profit":"284972.93"},{"Region":"Europe","Country":"Albania","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"4/3/2010","Order ID":"279476583","Ship Date":"4/22/2010","Units Sold":"2186","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"449660.20","Total Cost":"256002.46","Total Profit":"193657.74"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/29/2011","Order ID":"936274039","Ship Date":"2/24/2011","Units Sold":"3149","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"149420.05","Total Cost":"100106.71","Total Profit":"49313.34"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"1/28/2014","Order ID":"608215844","Ship Date":"3/2/2014","Units Sold":"3439","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"32085.87","Total Cost":"23797.88","Total Profit":"8287.99"},{"Region":"Asia","Country":"Singapore","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/13/2011","Order ID":"754725825","Ship Date":"6/2/2011","Units Sold":"8998","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"83951.34","Total Cost":"62266.16","Total Profit":"21685.18"},{"Region":"North America","Country":"United States of America","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"4/10/2011","Order ID":"655540311","Ship Date":"5/13/2011","Units Sold":"7800","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5079438.00","Total Cost":"4094688.00","Total Profit":"984750.00"},{"Region":"Europe","Country":"Georgia","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"11/4/2011","Order ID":"560708129","Ship Date":"11/10/2011","Units Sold":"4850","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3241109.50","Total Cost":"2437319.00","Total Profit":"803790.50"},{"Region":"Europe","Country":"Sweden","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/3/2012","Order ID":"340590608","Ship Date":"4/7/2012","Units Sold":"7184","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4678292.64","Total Cost":"3771312.64","Total Profit":"906980.00"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"3/17/2016","Order ID":"835861575","Ship Date":"3/21/2016","Units Sold":"8870","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5776232.70","Total Cost":"4656395.20","Total Profit":"1119837.50"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/1/2013","Order ID":"707507359","Ship Date":"11/14/2013","Units Sold":"6005","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"284937.25","Total Cost":"190898.95","Total Profit":"94038.30"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"11/30/2014","Order ID":"486826789","Ship Date":"1/18/2015","Units Sold":"1720","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"140575.60","Total Cost":"97472.40","Total Profit":"43103.20"},{"Region":"Sub-Saharan Africa","Country":"Mali","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"3/27/2015","Order ID":"325431191","Ship Date":"4/4/2015","Units Sold":"1176","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"765822.96","Total Cost":"617352.96","Total Profit":"148470.00"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/9/2015","Order ID":"445244395","Ship Date":"7/10/2015","Units Sold":"6566","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1001840.28","Total Cost":"639791.04","Total Profit":"362049.24"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/23/2017","Order ID":"688502728","Ship Date":"4/10/2017","Units Sold":"2112","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"100214.40","Total Cost":"67140.48","Total Profit":"33073.92"},{"Region":"Europe","Country":"Lithuania","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/5/2012","Order ID":"967755019","Ship Date":"1/15/2012","Units Sold":"9071","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1384053.18","Total Cost":"883878.24","Total Profit":"500174.94"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/27/2014","Order ID":"815862596","Ship Date":"1/5/2015","Units Sold":"727","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"306714.03","Total Cost":"265129.63","Total Profit":"41584.40"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/28/2015","Order ID":"735999286","Ship Date":"12/4/2015","Units Sold":"7399","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1128939.42","Total Cost":"720958.56","Total Profit":"407980.86"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/1/2013","Order ID":"851651418","Ship Date":"3/6/2013","Units Sold":"1435","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"117282.55","Total Cost":"81321.45","Total Profit":"35961.10"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"7/28/2017","Order ID":"456617820","Ship Date":"7/28/2017","Units Sold":"2215","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"242055.20","Total Cost":"79385.60","Total Profit":"162669.60"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"9/20/2010","Order ID":"265009820","Ship Date":"11/6/2010","Units Sold":"1150","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"175467.00","Total Cost":"112056.00","Total Profit":"63411.00"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"11/29/2016","Order ID":"161251246","Ship Date":"1/6/2017","Units Sold":"6682","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2819068.98","Total Cost":"2436858.58","Total Profit":"382210.40"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/1/2016","Order ID":"550078427","Ship Date":"3/5/2016","Units Sold":"9285","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4059402.00","Total Cost":"2445019.05","Total Profit":"1614382.95"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/27/2015","Order ID":"106540191","Ship Date":"10/23/2015","Units Sold":"6465","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2727518.85","Total Cost":"2357720.85","Total Profit":"369798.00"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"11/12/2016","Order ID":"725997865","Ship Date":"12/9/2016","Units Sold":"7756","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5183102.12","Total Cost":"3897700.24","Total Profit":"1285401.88"},{"Region":"Europe","Country":"Moldova ","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/4/2010","Order ID":"774125277","Ship Date":"4/7/2010","Units Sold":"9727","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"2000843.90","Total Cost":"1139128.97","Total Profit":"861714.93"},{"Region":"Europe","Country":"Ukraine","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"2/18/2010","Order ID":"936908757","Ship Date":"2/25/2010","Units Sold":"976","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"148918.08","Total Cost":"95101.44","Total Profit":"53816.64"},{"Region":"Asia","Country":"Vietnam","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/17/2013","Order ID":"170647132","Ship Date":"7/1/2013","Units Sold":"7133","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"66550.89","Total Cost":"49360.36","Total Profit":"17190.53"},{"Region":"Asia","Country":"Thailand","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/28/2017","Order ID":"651951730","Ship Date":"8/7/2017","Units Sold":"5860","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2561992.00","Total Cost":"1543113.80","Total Profit":"1018878.20"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"2/11/2010","Order ID":"127746379","Ship Date":"2/14/2010","Units Sold":"1847","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"281815.26","Total Cost":"179971.68","Total Profit":"101843.58"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"4/27/2017","Order ID":"465267407","Ship Date":"6/4/2017","Units Sold":"1820","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"277695.60","Total Cost":"177340.80","Total Profit":"100354.80"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"5/5/2017","Order ID":"902063643","Ship Date":"5/20/2017","Units Sold":"9533","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"88942.89","Total Cost":"65968.36","Total Profit":"22974.53"},{"Region":"Asia","Country":"Cambodia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/16/2012","Order ID":"295996415","Ship Date":"2/18/2012","Units Sold":"772","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"84364.16","Total Cost":"27668.48","Total Profit":"56695.68"},{"Region":"Asia","Country":"Tajikistan","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/14/2016","Order ID":"275239551","Ship Date":"1/15/2016","Units Sold":"8354","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"396397.30","Total Cost":"265573.66","Total Profit":"130823.64"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"3/19/2014","Order ID":"288279378","Ship Date":"4/19/2014","Units Sold":"7129","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4642476.09","Total Cost":"3742439.84","Total Profit":"900036.25"},{"Region":"Asia","Country":"Vietnam","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/15/2011","Order ID":"753914725","Ship Date":"11/29/2011","Units Sold":"8976","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1369558.08","Total Cost":"874621.44","Total Profit":"494936.64"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/19/2014","Order ID":"811256921","Ship Date":"12/31/2014","Units Sold":"7806","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5083345.26","Total Cost":"4097837.76","Total Profit":"985507.50"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/30/2012","Order ID":"569729793","Ship Date":"3/9/2012","Units Sold":"4561","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3047979.47","Total Cost":"2292084.94","Total Profit":"755894.53"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"4/1/2015","Order ID":"659069669","Ship Date":"5/17/2015","Units Sold":"2216","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"242164.48","Total Cost":"79421.44","Total Profit":"162743.04"},{"Region":"Europe","Country":"Macedonia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/22/2011","Order ID":"879325377","Ship Date":"4/5/2011","Units Sold":"775","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"197842.00","Total Cost":"123550.50","Total Profit":"74291.50"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/27/2010","Order ID":"650858247","Ship Date":"5/13/2010","Units Sold":"2274","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1480851.54","Total Cost":"1193759.04","Total Profit":"287092.50"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"9/5/2012","Order ID":"364342105","Ship Date":"9/27/2012","Units Sold":"5780","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2527016.00","Total Cost":"1522047.40","Total Profit":"1004968.60"},{"Region":"Asia","Country":"Vietnam","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"2/22/2012","Order ID":"930763280","Ship Date":"4/2/2012","Units Sold":"2393","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"492240.10","Total Cost":"280244.23","Total Profit":"211995.87"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/15/2014","Order ID":"631420600","Ship Date":"9/27/2014","Units Sold":"242","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"105802.40","Total Cost":"63725.86","Total Profit":"42076.54"},{"Region":"Asia","Country":"Vietnam","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"5/14/2012","Order ID":"967925393","Ship Date":"5/28/2012","Units Sold":"9488","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1951681.60","Total Cost":"1111139.68","Total Profit":"840541.92"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/16/2017","Order ID":"812201488","Ship Date":"2/24/2017","Units Sold":"7324","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"800366.72","Total Cost":"262492.16","Total Profit":"537874.56"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/6/2011","Order ID":"456485211","Ship Date":"10/26/2011","Units Sold":"2973","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"242983.29","Total Cost":"168479.91","Total Profit":"74503.38"},{"Region":"North America","Country":"Greenland","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"3/9/2014","Order ID":"263325393","Ship Date":"3/25/2014","Units Sold":"2690","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1751754.90","Total Cost":"1412142.40","Total Profit":"339612.50"},{"Region":"Asia","Country":"Cambodia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/30/2013","Order ID":"215583360","Ship Date":"2/21/2013","Units Sold":"4762","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"389198.26","Total Cost":"269862.54","Total Profit":"119335.72"},{"Region":"Asia","Country":"Tajikistan","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"2/21/2017","Order ID":"366432940","Ship Date":"2/26/2017","Units Sold":"4505","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1900614.45","Total Cost":"1642928.45","Total Profit":"257686.00"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/25/2013","Order ID":"389360463","Ship Date":"7/10/2013","Units Sold":"9268","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"757473.64","Total Cost":"525217.56","Total Profit":"232256.08"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/12/2016","Order ID":"928164756","Ship Date":"6/22/2016","Units Sold":"3432","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"705962.40","Total Cost":"401921.52","Total Profit":"304040.88"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"9/2/2011","Order ID":"446957147","Ship Date":"10/1/2011","Units Sold":"3407","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"700819.90","Total Cost":"398993.77","Total Profit":"301826.13"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/4/2012","Order ID":"180161464","Ship Date":"1/27/2012","Units Sold":"2636","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"288062.08","Total Cost":"94474.24","Total Profit":"193587.84"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/1/2016","Order ID":"982514035","Ship Date":"5/25/2016","Units Sold":"6592","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2882022.40","Total Cost":"1735871.36","Total Profit":"1146151.04"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/17/2013","Order ID":"179063689","Ship Date":"3/19/2013","Units Sold":"7780","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"72587.40","Total Cost":"53837.60","Total Profit":"18749.80"},{"Region":"Europe","Country":"Portugal","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/28/2014","Order ID":"115171754","Ship Date":"2/9/2015","Units Sold":"736","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"112298.88","Total Cost":"71715.84","Total Profit":"40583.04"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"3/2/2016","Order ID":"506512057","Ship Date":"3/19/2016","Units Sold":"7028","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"768019.84","Total Cost":"251883.52","Total Profit":"516136.32"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/15/2012","Order ID":"689070928","Ship Date":"4/26/2012","Units Sold":"255","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"20841.15","Total Cost":"14450.85","Total Profit":"6390.30"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"5/2/2011","Order ID":"969147193","Ship Date":"5/2/2011","Units Sold":"1046","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"9759.18","Total Cost":"7238.32","Total Profit":"2520.86"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"10/6/2014","Order ID":"373352181","Ship Date":"10/26/2014","Units Sold":"2062","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"526387.36","Total Cost":"328724.04","Total Profit":"197663.32"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"10/4/2013","Order ID":"698609721","Ship Date":"11/20/2013","Units Sold":"2996","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"244863.08","Total Cost":"169783.32","Total Profit":"75079.76"},{"Region":"Europe","Country":"Lithuania","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"9/14/2015","Order ID":"662156140","Ship Date":"10/2/2015","Units Sold":"5571","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2435641.20","Total Cost":"1467011.43","Total Profit":"968629.77"},{"Region":"Europe","Country":"Poland","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/9/2010","Order ID":"851540267","Ship Date":"2/21/2010","Units Sold":"8543","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"79706.19","Total Cost":"59117.56","Total Profit":"20588.63"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/13/2010","Order ID":"574623429","Ship Date":"5/2/2010","Units Sold":"2697","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"127972.65","Total Cost":"85737.63","Total Profit":"42235.02"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"8/26/2011","Order ID":"109579455","Ship Date":"9/13/2011","Units Sold":"5851","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"478202.23","Total Cost":"331576.17","Total Profit":"146626.06"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/19/2010","Order ID":"254894673","Ship Date":"11/8/2010","Units Sold":"7853","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2004713.84","Total Cost":"1251925.26","Total Profit":"752788.58"},{"Region":"Europe","Country":"Croatia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"5/26/2016","Order ID":"979367911","Ship Date":"7/11/2016","Units Sold":"5584","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2355833.76","Total Cost":"2036428.96","Total Profit":"319404.80"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/22/2015","Order ID":"972110497","Ship Date":"2/9/2016","Units Sold":"7954","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"869213.12","Total Cost":"285071.36","Total Profit":"584141.76"},{"Region":"North America","Country":"Canada","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/13/2016","Order ID":"792546260","Ship Date":"10/23/2016","Units Sold":"905","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"138084.90","Total Cost":"88183.20","Total Profit":"49901.70"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"10/7/2011","Order ID":"620411527","Ship Date":"10/22/2011","Units Sold":"2413","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1571369.73","Total Cost":"1266728.48","Total Profit":"304641.25"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/9/2014","Order ID":"705755126","Ship Date":"5/17/2014","Units Sold":"7480","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3270256.00","Total Cost":"1969708.40","Total Profit":"1300547.60"},{"Region":"Europe","Country":"Spain","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/28/2015","Order ID":"918938386","Ship Date":"1/12/2016","Units Sold":"3144","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"343576.32","Total Cost":"112680.96","Total Profit":"230895.36"},{"Region":"Europe","Country":"Latvia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"1/21/2013","Order ID":"300635135","Ship Date":"2/10/2013","Units Sold":"3472","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"379420.16","Total Cost":"124436.48","Total Profit":"254983.68"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"7/28/2010","Order ID":"211831700","Ship Date":"8/20/2010","Units Sold":"4562","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1924662.18","Total Cost":"1663715.78","Total Profit":"260946.40"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"10/30/2010","Order ID":"283826911","Ship Date":"11/7/2010","Units Sold":"9545","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"780112.85","Total Cost":"540915.15","Total Profit":"239197.70"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"3/11/2017","Order ID":"668232095","Ship Date":"4/7/2017","Units Sold":"3581","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"736611.70","Total Cost":"419370.91","Total Profit":"317240.79"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"2/25/2015","Order ID":"686971080","Ship Date":"3/14/2015","Units Sold":"8863","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5771674.23","Total Cost":"4652720.48","Total Profit":"1118953.75"},{"Region":"Asia","Country":"Nepal","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"12/28/2013","Order ID":"182280194","Ship Date":"1/27/2014","Units Sold":"9615","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"785833.95","Total Cost":"544882.05","Total Profit":"240951.90"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/8/2012","Order ID":"866708266","Ship Date":"9/11/2012","Units Sold":"7091","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"774904.48","Total Cost":"254141.44","Total Profit":"520763.04"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"4/18/2011","Order ID":"473116624","Ship Date":"5/31/2011","Units Sold":"4578","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"217226.10","Total Cost":"145534.62","Total Profit":"71691.48"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"9/16/2014","Order ID":"404679095","Ship Date":"10/24/2014","Units Sold":"2392","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"610629.76","Total Cost":"381332.64","Total Profit":"229297.12"},{"Region":"Europe","Country":"Albania","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"9/29/2013","Order ID":"784882009","Ship Date":"11/12/2013","Units Sold":"2883","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"439888.14","Total Cost":"280919.52","Total Profit":"158968.62"},{"Region":"Europe","Country":"Sweden","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/27/2011","Order ID":"907524192","Ship Date":"8/28/2011","Units Sold":"5430","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2373996.00","Total Cost":"1429881.90","Total Profit":"944114.10"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/26/2012","Order ID":"586716973","Ship Date":"10/15/2012","Units Sold":"1445","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"118099.85","Total Cost":"81888.15","Total Profit":"36211.70"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/4/2011","Order ID":"606884181","Ship Date":"2/13/2011","Units Sold":"9370","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"444606.50","Total Cost":"297872.30","Total Profit":"146734.20"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/11/2016","Order ID":"472762143","Ship Date":"10/3/2016","Units Sold":"9679","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6303061.59","Total Cost":"5081087.84","Total Profit":"1221973.75"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/1/2014","Order ID":"659399688","Ship Date":"8/11/2014","Units Sold":"9876","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1506880.08","Total Cost":"962317.44","Total Profit":"544562.64"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/26/2013","Order ID":"362158143","Ship Date":"4/9/2013","Units Sold":"9497","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"88607.01","Total Cost":"65719.24","Total Profit":"22887.77"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"12/3/2010","Order ID":"646711337","Ship Date":"1/4/2011","Units Sold":"5111","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2234529.20","Total Cost":"1345879.63","Total Profit":"888649.57"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/24/2014","Order ID":"399045598","Ship Date":"8/16/2014","Units Sold":"5315","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3551855.05","Total Cost":"2671000.10","Total Profit":"880854.95"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/12/2013","Order ID":"375459754","Ship Date":"4/19/2013","Units Sold":"5740","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1465307.20","Total Cost":"915070.80","Total Profit":"550236.40"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/28/2012","Order ID":"952565133","Ship Date":"3/5/2012","Units Sold":"4046","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1768911.20","Total Cost":"1065433.18","Total Profit":"703478.02"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"9/26/2013","Order ID":"777285563","Ship Date":"10/17/2013","Units Sold":"4926","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2153647.20","Total Cost":"1297163.58","Total Profit":"856483.62"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"3/15/2014","Order ID":"816857373","Ship Date":"3/20/2014","Units Sold":"5104","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"557765.12","Total Cost":"182927.36","Total Profit":"374837.76"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/9/2014","Order ID":"308829391","Ship Date":"6/19/2014","Units Sold":"8334","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2127503.52","Total Cost":"1328606.28","Total Profit":"798897.24"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"2/15/2016","Order ID":"811062943","Ship Date":"3/29/2016","Units Sold":"403","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"170021.67","Total Cost":"146970.07","Total Profit":"23051.60"},{"Region":"Asia","Country":"Brunei","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"3/3/2011","Order ID":"351731860","Ship Date":"3/19/2011","Units Sold":"4129","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1054051.12","Total Cost":"658245.18","Total Profit":"395805.94"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/29/2014","Order ID":"179322469","Ship Date":"12/25/2014","Units Sold":"4358","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"206787.10","Total Cost":"138540.82","Total Profit":"68246.28"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"5/7/2017","Order ID":"712633597","Ship Date":"6/4/2017","Units Sold":"2973","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"758947.44","Total Cost":"473955.66","Total Profit":"284991.78"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"2/6/2017","Order ID":"190776574","Ship Date":"3/20/2017","Units Sold":"3883","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1638198.87","Total Cost":"1416091.27","Total Profit":"222107.60"},{"Region":"Asia","Country":"Vietnam","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"1/30/2010","Order ID":"523175227","Ship Date":"2/22/2010","Units Sold":"8031","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1225369.98","Total Cost":"782540.64","Total Profit":"442829.34"},{"Region":"Europe","Country":"Switzerland","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"12/23/2015","Order ID":"539565885","Ship Date":"2/4/2016","Units Sold":"8390","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1292563.40","Total Cost":"762902.70","Total Profit":"529660.70"},{"Region":"Europe","Country":"France","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"11/22/2013","Order ID":"939997375","Ship Date":"11/29/2013","Units Sold":"4967","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2171572.40","Total Cost":"1307960.11","Total Profit":"863612.29"},{"Region":"Asia","Country":"Vietnam","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/17/2014","Order ID":"244831025","Ship Date":"5/28/2014","Units Sold":"9796","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1509171.76","Total Cost":"890750.28","Total Profit":"618421.48"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/3/2017","Order ID":"644740664","Ship Date":"5/4/2017","Units Sold":"1945","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"400086.50","Total Cost":"227778.95","Total Profit":"172307.55"},{"Region":"Asia","Country":"Malaysia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"9/8/2016","Order ID":"350712621","Ship Date":"9/21/2016","Units Sold":"2513","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"23446.29","Total Cost":"17389.96","Total Profit":"6056.33"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"11/9/2010","Order ID":"344045722","Ship Date":"12/16/2010","Units Sold":"9629","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1052257.12","Total Cost":"345103.36","Total Profit":"707153.76"},{"Region":"Asia","Country":"Singapore","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/24/2014","Order ID":"326351296","Ship Date":"9/10/2014","Units Sold":"3456","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"532431.36","Total Cost":"314254.08","Total Profit":"218177.28"},{"Region":"Europe","Country":"Hungary","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"1/30/2017","Order ID":"969553172","Ship Date":"2/7/2017","Units Sold":"1184","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"180654.72","Total Cost":"115368.96","Total Profit":"65285.76"},{"Region":"Europe","Country":"Austria","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"5/3/2016","Order ID":"765887677","Ship Date":"6/18/2016","Units Sold":"2038","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"310958.04","Total Cost":"198582.72","Total Profit":"112375.32"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/6/2015","Order ID":"977903640","Ship Date":"3/1/2015","Units Sold":"2273","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"107853.85","Total Cost":"72258.67","Total Profit":"35595.18"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"3/14/2017","Order ID":"688462388","Ship Date":"4/3/2017","Units Sold":"175","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"14302.75","Total Cost":"9917.25","Total Profit":"4385.50"},{"Region":"Europe","Country":"Andorra","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/6/2016","Order ID":"850737750","Ship Date":"3/7/2016","Units Sold":"1060","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"163303.60","Total Cost":"96385.80","Total Profit":"66917.80"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/19/2014","Order ID":"238216054","Ship Date":"5/6/2014","Units Sold":"2279","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"351102.74","Total Cost":"207229.47","Total Profit":"143873.27"},{"Region":"Asia","Country":"Maldives","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/6/2010","Order ID":"394696128","Ship Date":"10/31/2010","Units Sold":"8210","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2095848.80","Total Cost":"1308838.20","Total Profit":"787010.60"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"12/3/2013","Order ID":"684289300","Ship Date":"12/19/2013","Units Sold":"5265","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3428620.65","Total Cost":"2763914.40","Total Profit":"664706.25"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/30/2013","Order ID":"541419398","Ship Date":"1/9/2014","Units Sold":"6886","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1050665.88","Total Cost":"670971.84","Total Profit":"379694.04"},{"Region":"Europe","Country":"Belgium","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"3/7/2017","Order ID":"820822751","Ship Date":"4/3/2017","Units Sold":"8547","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2181878.16","Total Cost":"1362562.74","Total Profit":"819315.42"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"4/15/2012","Order ID":"647548186","Ship Date":"4/15/2012","Units Sold":"2753","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1203611.60","Total Cost":"724947.49","Total Profit":"478664.11"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"8/5/2011","Order ID":"566957032","Ship Date":"9/18/2011","Units Sold":"4040","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1031331.20","Total Cost":"644056.80","Total Profit":"387274.40"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/26/2017","Order ID":"294723117","Ship Date":"3/27/2017","Units Sold":"3975","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2588559.75","Total Cost":"2086716.00","Total Profit":"501843.75"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"12/14/2016","Order ID":"966832768","Ship Date":"1/25/2017","Units Sold":"6156","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1266289.20","Total Cost":"720929.16","Total Profit":"545360.04"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"5/22/2011","Order ID":"189584815","Ship Date":"5/28/2011","Units Sold":"1215","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"99301.95","Total Cost":"68854.05","Total Profit":"30447.90"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"1/28/2017","Order ID":"589590585","Ship Date":"2/7/2017","Units Sold":"1811","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"148013.03","Total Cost":"102629.37","Total Profit":"45383.66"},{"Region":"Asia","Country":"South Korea","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/17/2010","Order ID":"363773906","Ship Date":"2/15/2010","Units Sold":"7637","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3221973.93","Total Cost":"2785137.53","Total Profit":"436836.40"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/27/2012","Order ID":"929371106","Ship Date":"12/16/2012","Units Sold":"418","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"279336.86","Total Cost":"210061.72","Total Profit":"69275.14"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/5/2014","Order ID":"173931014","Ship Date":"12/6/2014","Units Sold":"8907","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"727969.11","Total Cost":"504759.69","Total Profit":"223209.42"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/7/2014","Order ID":"105314958","Ship Date":"7/31/2014","Units Sold":"3891","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"599447.46","Total Cost":"353808.63","Total Profit":"245638.83"},{"Region":"Europe","Country":"Germany","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"8/4/2014","Order ID":"101696765","Ship Date":"9/19/2014","Units Sold":"3188","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1393793.60","Total Cost":"839496.04","Total Profit":"554297.56"},{"Region":"Europe","Country":"Hungary","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"8/27/2011","Order ID":"961562764","Ship Date":"9/4/2011","Units Sold":"6645","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1366876.50","Total Cost":"778195.95","Total Profit":"588680.55"},{"Region":"Europe","Country":"Portugal","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/16/2014","Order ID":"853711783","Ship Date":"9/28/2014","Units Sold":"1143","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"10664.19","Total Cost":"7909.56","Total Profit":"2754.63"},{"Region":"Asia","Country":"Malaysia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"10/9/2010","Order ID":"267255151","Ship Date":"11/21/2010","Units Sold":"5593","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2359630.77","Total Cost":"2039711.17","Total Profit":"319919.60"},{"Region":"Asia","Country":"Cambodia","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"12/9/2014","Order ID":"661616694","Ship Date":"1/17/2015","Units Sold":"5937","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3967518.99","Total Cost":"2983579.98","Total Profit":"983939.01"},{"Region":"Asia","Country":"India","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/24/2012","Order ID":"416532742","Ship Date":"10/20/2012","Units Sold":"150","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"12259.50","Total Cost":"8500.50","Total Profit":"3759.00"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/4/2017","Order ID":"682052123","Ship Date":"6/12/2017","Units Sold":"3235","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"153500.75","Total Cost":"102840.65","Total Profit":"50660.10"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"9/17/2012","Order ID":"428536164","Ship Date":"10/10/2012","Units Sold":"2229","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"20796.57","Total Cost":"15424.68","Total Profit":"5371.89"},{"Region":"Europe","Country":"Norway","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/18/2010","Order ID":"496658694","Ship Date":"6/1/2010","Units Sold":"1199","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"11186.67","Total Cost":"8297.08","Total Profit":"2889.59"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/9/2015","Order ID":"447406041","Ship Date":"5/19/2015","Units Sold":"6245","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"58265.85","Total Cost":"43215.40","Total Profit":"15050.45"},{"Region":"Europe","Country":"Moldova ","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/16/2014","Order ID":"812077033","Ship Date":"12/3/2014","Units Sold":"495","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"54093.60","Total Cost":"17740.80","Total Profit":"36352.80"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/19/2012","Order ID":"842282998","Ship Date":"2/13/2012","Units Sold":"9111","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"432316.95","Total Cost":"289638.69","Total Profit":"142678.26"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"5/6/2015","Order ID":"759947764","Ship Date":"6/7/2015","Units Sold":"4286","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"881630.20","Total Cost":"501933.46","Total Profit":"379696.74"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/26/2011","Order ID":"407307660","Ship Date":"4/13/2011","Units Sold":"243","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"37436.58","Total Cost":"22095.99","Total Profit":"15340.59"},{"Region":"Europe","Country":"Vatican City","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"11/3/2013","Order ID":"596911513","Ship Date":"11/28/2013","Units Sold":"8236","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"390798.20","Total Cost":"261822.44","Total Profit":"128975.76"},{"Region":"Asia","Country":"China","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"8/25/2015","Order ID":"861620652","Ship Date":"8/29/2015","Units Sold":"1553","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"126926.69","Total Cost":"88008.51","Total Profit":"38918.18"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/24/2013","Order ID":"804608905","Ship Date":"2/10/2014","Units Sold":"510","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"332117.10","Total Cost":"267729.60","Total Profit":"64387.50"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"10/20/2014","Order ID":"549362599","Ship Date":"10/29/2014","Units Sold":"7456","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3259763.20","Total Cost":"1963388.48","Total Profit":"1296374.72"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"10/12/2013","Order ID":"289680564","Ship Date":"11/12/2013","Units Sold":"1771","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"193534.88","Total Cost":"63472.64","Total Profit":"130062.24"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/24/2015","Order ID":"739674127","Ship Date":"4/13/2015","Units Sold":"4866","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"397698.18","Total Cost":"275756.22","Total Profit":"121941.96"},{"Region":"Europe","Country":"Monaco","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"2/24/2013","Order ID":"883767116","Ship Date":"3/16/2013","Units Sold":"5184","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2187077.76","Total Cost":"1890552.96","Total Profit":"296524.80"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/17/2010","Order ID":"226695859","Ship Date":"4/26/2010","Units Sold":"3197","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"151697.65","Total Cost":"101632.63","Total Profit":"50065.02"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"11/24/2013","Order ID":"143509185","Ship Date":"12/17/2013","Units Sold":"6412","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"987832.72","Total Cost":"583043.16","Total Profit":"404789.56"},{"Region":"North America","Country":"United States of America","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"1/27/2010","Order ID":"729568421","Ship Date":"2/26/2010","Units Sold":"4363","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"897469.10","Total Cost":"510950.93","Total Profit":"386518.17"},{"Region":"Asia","Country":"Bhutan","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"2/24/2012","Order ID":"350547397","Ship Date":"3/3/2012","Units Sold":"3619","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1526819.91","Total Cost":"1319813.11","Total Profit":"207006.80"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"11/21/2011","Order ID":"592432439","Ship Date":"12/8/2011","Units Sold":"2779","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"303689.12","Total Cost":"99599.36","Total Profit":"204089.76"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/27/2013","Order ID":"411522376","Ship Date":"7/5/2013","Units Sold":"7471","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1907196.88","Total Cost":"1191026.82","Total Profit":"716170.06"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"8/16/2014","Order ID":"184428536","Ship Date":"9/26/2014","Units Sold":"5357","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"49980.81","Total Cost":"37070.44","Total Profit":"12910.37"},{"Region":"Europe","Country":"Italy","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/4/2010","Order ID":"358074748","Ship Date":"4/22/2010","Units Sold":"1130","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"755145.10","Total Cost":"567870.20","Total Profit":"187274.90"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"7/24/2011","Order ID":"999697339","Ship Date":"7/25/2011","Units Sold":"1513","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"71791.85","Total Cost":"48098.27","Total Profit":"23693.58"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"11/2/2011","Order ID":"446845138","Ship Date":"12/17/2011","Units Sold":"261","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"12384.45","Total Cost":"8297.19","Total Profit":"4087.26"},{"Region":"Europe","Country":"Greece","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"1/9/2013","Order ID":"257379472","Ship Date":"1/21/2013","Units Sold":"3160","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2057823.60","Total Cost":"1658873.60","Total Profit":"398950.00"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/6/2014","Order ID":"259474170","Ship Date":"5/13/2014","Units Sold":"3028","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1323841.60","Total Cost":"797363.24","Total Profit":"526478.36"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/1/2016","Order ID":"801615560","Ship Date":"3/21/2016","Units Sold":"4713","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"385193.49","Total Cost":"267085.71","Total Profit":"118107.78"},{"Region":"Europe","Country":"Monaco","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/22/2015","Order ID":"502602469","Ship Date":"12/1/2015","Units Sold":"94","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"14481.64","Total Cost":"8547.42","Total Profit":"5934.22"},{"Region":"Europe","Country":"Albania","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/19/2012","Order ID":"301546227","Ship Date":"4/9/2012","Units Sold":"3085","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"337128.80","Total Cost":"110566.40","Total Profit":"226562.40"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/16/2016","Order ID":"307870662","Ship Date":"3/23/2016","Units Sold":"4625","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"43151.25","Total Cost":"32005.00","Total Profit":"11146.25"},{"Region":"Europe","Country":"Croatia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"3/7/2017","Order ID":"251312100","Ship Date":"3/24/2017","Units Sold":"7690","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1581833.00","Total Cost":"900575.90","Total Profit":"681257.10"},{"Region":"Europe","Country":"Estonia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"2/11/2017","Order ID":"831919372","Ship Date":"2/13/2017","Units Sold":"2284","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"963596.76","Total Cost":"832951.96","Total Profit":"130644.80"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"4/2/2011","Order ID":"570053803","Ship Date":"4/15/2011","Units Sold":"443","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"288486.03","Total Cost":"232557.28","Total Profit":"55928.75"},{"Region":"Europe","Country":"Ireland","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"11/23/2014","Order ID":"756389224","Ship Date":"12/2/2014","Units Sold":"1235","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"539942.00","Total Cost":"325212.55","Total Profit":"214729.45"},{"Region":"Asia","Country":"Laos","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/19/2014","Order ID":"501911962","Ship Date":"3/5/2014","Units Sold":"5758","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2429242.62","Total Cost":"2099885.02","Total Profit":"329357.60"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/20/2015","Order ID":"787920844","Ship Date":"3/1/2015","Units Sold":"2142","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"903688.38","Total Cost":"781165.98","Total Profit":"122522.40"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"3/24/2017","Order ID":"416027200","Ship Date":"4/2/2017","Units Sold":"548","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"59885.44","Total Cost":"19640.32","Total Profit":"40245.12"},{"Region":"Asia","Country":"China","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"7/5/2017","Order ID":"958154857","Ship Date":"8/11/2017","Units Sold":"8169","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3571486.80","Total Cost":"2151142.77","Total Profit":"1420344.03"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"10/24/2013","Order ID":"906540143","Ship Date":"12/12/2013","Units Sold":"4229","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"39456.57","Total Cost":"29264.68","Total Profit":"10191.89"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/26/2016","Order ID":"623731887","Ship Date":"7/5/2016","Units Sold":"4981","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3328652.87","Total Cost":"2503151.74","Total Profit":"825501.13"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/20/2014","Order ID":"992591416","Ship Date":"5/5/2014","Units Sold":"8713","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1329429.54","Total Cost":"848994.72","Total Profit":"480434.82"},{"Region":"Europe","Country":"Slovenia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/8/2015","Order ID":"266292560","Ship Date":"10/4/2015","Units Sold":"741","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"114158.46","Total Cost":"67379.13","Total Profit":"46779.33"},{"Region":"Europe","Country":"Montenegro","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/4/2015","Order ID":"818321645","Ship Date":"7/31/2015","Units Sold":"8414","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1296260.84","Total Cost":"765085.02","Total Profit":"531175.82"},{"Region":"Asia","Country":"Cambodia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"2/16/2013","Order ID":"592477500","Ship Date":"3/7/2013","Units Sold":"6113","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2672603.60","Total Cost":"1609736.29","Total Profit":"1062867.31"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"8/24/2016","Order ID":"752871453","Ship Date":"9/24/2016","Units Sold":"248","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"63309.44","Total Cost":"39536.16","Total Profit":"23773.28"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"4/17/2016","Order ID":"733927333","Ship Date":"5/21/2016","Units Sold":"4262","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1088003.36","Total Cost":"679448.04","Total Profit":"408555.32"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"12/5/2010","Order ID":"490381467","Ship Date":"12/13/2010","Units Sold":"3628","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"746279.60","Total Cost":"424875.08","Total Profit":"321404.52"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/4/2011","Order ID":"947282683","Ship Date":"12/1/2011","Units Sold":"852","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"131259.12","Total Cost":"77472.36","Total Profit":"53786.76"},{"Region":"Asia","Country":"Singapore","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"3/29/2016","Order ID":"849992311","Ship Date":"4/21/2016","Units Sold":"468","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"304766.28","Total Cost":"245681.28","Total Profit":"59085.00"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"1/17/2011","Order ID":"814184176","Ship Date":"2/5/2011","Units Sold":"4046","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"623326.76","Total Cost":"367902.78","Total Profit":"255423.98"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/8/2014","Order ID":"175844609","Ship Date":"7/8/2014","Units Sold":"5182","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3462975.14","Total Cost":"2604162.28","Total Profit":"858812.86"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/2/2011","Order ID":"141272437","Ship Date":"1/13/2012","Units Sold":"4508","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1970897.60","Total Cost":"1187091.64","Total Profit":"783805.96"},{"Region":"Europe","Country":"Hungary","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"4/15/2012","Order ID":"637078988","Ship Date":"5/14/2012","Units Sold":"4685","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"43711.05","Total Cost":"32420.20","Total Profit":"11290.85"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"5/17/2014","Order ID":"760188090","Ship Date":"6/25/2014","Units Sold":"5404","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"441668.92","Total Cost":"306244.68","Total Profit":"135424.24"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/1/2010","Order ID":"127836072","Ship Date":"6/11/2010","Units Sold":"8389","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5463000.69","Total Cost":"4403889.44","Total Profit":"1059111.25"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"8/24/2012","Order ID":"227571761","Ship Date":"9/12/2012","Units Sold":"2396","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"492857.20","Total Cost":"280595.56","Total Profit":"212261.64"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"8/26/2011","Order ID":"367256486","Ship Date":"9/2/2011","Units Sold":"8210","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1252681.80","Total Cost":"799982.40","Total Profit":"452699.40"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/7/2010","Order ID":"825064074","Ship Date":"6/8/2010","Units Sold":"3649","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"931516.72","Total Cost":"581723.58","Total Profit":"349793.14"},{"Region":"Asia","Country":"Brunei","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"1/23/2013","Order ID":"599480855","Ship Date":"3/10/2013","Units Sold":"8562","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5575660.02","Total Cost":"4494707.52","Total Profit":"1080952.50"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/27/2013","Order ID":"559305655","Ship Date":"5/16/2013","Units Sold":"9827","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"91685.91","Total Cost":"68002.84","Total Profit":"23683.07"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/13/2013","Order ID":"293649804","Ship Date":"8/27/2013","Units Sold":"6357","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"979359.42","Total Cost":"578042.01","Total Profit":"401317.41"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"8/25/2013","Order ID":"361937129","Ship Date":"9/9/2013","Units Sold":"4094","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2735897.38","Total Cost":"2057398.76","Total Profit":"678498.62"},{"Region":"Europe","Country":"Greece","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/4/2014","Order ID":"943903958","Ship Date":"3/19/2014","Units Sold":"1012","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"48019.40","Total Cost":"32171.48","Total Profit":"15847.92"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/23/2013","Order ID":"489599120","Ship Date":"5/10/2013","Units Sold":"2114","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"322554.12","Total Cost":"205988.16","Total Profit":"116565.96"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/24/2017","Order ID":"669383943","Ship Date":"7/4/2017","Units Sold":"4439","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"210630.55","Total Cost":"141115.81","Total Profit":"69514.74"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/29/2015","Order ID":"523932254","Ship Date":"11/5/2015","Units Sold":"2052","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"97367.40","Total Cost":"65233.08","Total Profit":"32134.32"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"1/13/2013","Order ID":"514230382","Ship Date":"2/8/2013","Units Sold":"1052","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"459934.40","Total Cost":"277023.16","Total Profit":"182911.24"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/26/2011","Order ID":"271577155","Ship Date":"9/8/2011","Units Sold":"4570","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"940049.00","Total Cost":"535192.70","Total Profit":"404856.30"},{"Region":"Europe","Country":"Belarus","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/14/2014","Order ID":"847583901","Ship Date":"12/14/2014","Units Sold":"7766","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"368496.70","Total Cost":"246881.14","Total Profit":"121615.56"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"1/3/2016","Order ID":"664174449","Ship Date":"1/27/2016","Units Sold":"2834","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"723463.52","Total Cost":"451796.28","Total Profit":"271667.24"},{"Region":"Europe","Country":"Romania","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/7/2016","Order ID":"463585126","Ship Date":"8/12/2016","Units Sold":"3995","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"615469.70","Total Cost":"363265.35","Total Profit":"252204.35"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"6/19/2015","Order ID":"158364760","Ship Date":"7/14/2015","Units Sold":"2507","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"23390.31","Total Cost":"17348.44","Total Profit":"6041.87"},{"Region":"Europe","Country":"Vatican City","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/25/2012","Order ID":"181374680","Ship Date":"1/9/2013","Units Sold":"1653","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1076450.13","Total Cost":"867758.88","Total Profit":"208691.25"},{"Region":"Asia","Country":"Bhutan","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/22/2013","Order ID":"135788714","Ship Date":"10/28/2013","Units Sold":"1753","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"447505.84","Total Cost":"279463.26","Total Profit":"168042.58"},{"Region":"Asia","Country":"China","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"4/30/2016","Order ID":"145093190","Ship Date":"5/2/2016","Units Sold":"5154","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"563229.12","Total Cost":"184719.36","Total Profit":"378509.76"},{"Region":"Europe","Country":"Italy","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/19/2016","Order ID":"403086936","Ship Date":"6/27/2016","Units Sold":"1237","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"521877.93","Total Cost":"451121.53","Total Profit":"70756.40"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"8/13/2010","Order ID":"723881280","Ship Date":"10/2/2010","Units Sold":"1412","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"154303.36","Total Cost":"50606.08","Total Profit":"103697.28"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/8/2015","Order ID":"991900050","Ship Date":"11/6/2015","Units Sold":"4122","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"635035.32","Total Cost":"374813.46","Total Profit":"260221.86"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/7/2011","Order ID":"711879575","Ship Date":"11/11/2011","Units Sold":"9841","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4151819.49","Total Cost":"3588914.29","Total Profit":"562905.20"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/9/2013","Order ID":"358868682","Ship Date":"9/22/2013","Units Sold":"6073","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1249216.10","Total Cost":"711209.03","Total Profit":"538007.07"},{"Region":"Europe","Country":"Moldova ","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"12/16/2014","Order ID":"928228700","Ship Date":"1/8/2015","Units Sold":"2354","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"484217.80","Total Cost":"275676.94","Total Profit":"208540.86"},{"Region":"Europe","Country":"Kosovo","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/5/2013","Order ID":"785633456","Ship Date":"11/17/2013","Units Sold":"5253","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1340985.84","Total Cost":"837433.26","Total Profit":"503552.58"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/6/2017","Order ID":"617069280","Ship Date":"5/16/2017","Units Sold":"3367","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"159764.15","Total Cost":"107036.93","Total Profit":"52727.22"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"4/3/2014","Order ID":"278834998","Ship Date":"4/9/2014","Units Sold":"2327","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1017364.40","Total Cost":"612768.91","Total Profit":"404595.49"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"1/27/2010","Order ID":"147541940","Ship Date":"2/20/2010","Units Sold":"9794","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"800463.62","Total Cost":"555025.98","Total Profit":"245437.64"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/29/2014","Order ID":"670113933","Ship Date":"12/11/2014","Units Sold":"459","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"70713.54","Total Cost":"41736.87","Total Profit":"28976.67"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"12/18/2016","Order ID":"113787305","Ship Date":"1/13/2017","Units Sold":"1047","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"457748.40","Total Cost":"275706.51","Total Profit":"182041.89"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/13/2017","Order ID":"416110885","Ship Date":"6/8/2017","Units Sold":"5313","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1092884.10","Total Cost":"622205.43","Total Profit":"470678.67"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/25/2010","Order ID":"434946000","Ship Date":"6/3/2010","Units Sold":"9042","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"739002.66","Total Cost":"512410.14","Total Profit":"226592.52"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/4/2010","Order ID":"898466479","Ship Date":"7/2/2010","Units Sold":"5052","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"412899.96","Total Cost":"286296.84","Total Profit":"126603.12"},{"Region":"Europe","Country":"Serbia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"2/27/2010","Order ID":"355158650","Ship Date":"4/18/2010","Units Sold":"8192","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5334712.32","Total Cost":"4300472.32","Total Profit":"1034240.00"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"9/27/2014","Order ID":"123821341","Ship Date":"10/27/2014","Units Sold":"341","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"16180.45","Total Cost":"10840.39","Total Profit":"5340.06"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"3/21/2015","Order ID":"243565881","Ship Date":"4/26/2015","Units Sold":"5412","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"50493.96","Total Cost":"37451.04","Total Profit":"13042.92"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"1/28/2015","Order ID":"823816096","Ship Date":"2/23/2015","Units Sold":"4345","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"662960.10","Total Cost":"423376.80","Total Profit":"239583.30"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"4/14/2011","Order ID":"694308316","Ship Date":"5/4/2011","Units Sold":"115","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"29357.20","Total Cost":"18333.30","Total Profit":"11023.90"},{"Region":"Europe","Country":"Kosovo","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/28/2013","Order ID":"555091369","Ship Date":"4/22/2013","Units Sold":"2726","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"695893.28","Total Cost":"434578.92","Total Profit":"261314.36"},{"Region":"Europe","Country":"Ireland","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/2/2016","Order ID":"726526582","Ship Date":"4/15/2016","Units Sold":"4215","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"460615.20","Total Cost":"151065.60","Total Profit":"309549.60"},{"Region":"Asia","Country":"India","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"12/3/2012","Order ID":"699287784","Ship Date":"1/18/2013","Units Sold":"3650","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1539898.50","Total Cost":"1331118.50","Total Profit":"208780.00"},{"Region":"Asia","Country":"Thailand","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"1/21/2012","Order ID":"484361302","Ship Date":"3/5/2012","Units Sold":"2128","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"437729.60","Total Cost":"249210.08","Total Profit":"188519.52"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/26/2012","Order ID":"163045966","Ship Date":"3/17/2012","Units Sold":"7779","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5065762.59","Total Cost":"4083663.84","Total Profit":"982098.75"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"10/17/2012","Order ID":"336953103","Ship Date":"12/5/2012","Units Sold":"766","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"118009.96","Total Cost":"69652.38","Total Profit":"48357.58"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/1/2010","Order ID":"778006541","Ship Date":"12/15/2010","Units Sold":"8279","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5532607.33","Total Cost":"4160528.66","Total Profit":"1372078.67"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"10/6/2011","Order ID":"878442609","Ship Date":"11/5/2011","Units Sold":"9544","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1456223.52","Total Cost":"929967.36","Total Profit":"526256.16"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/10/2010","Order ID":"100810134","Ship Date":"11/2/2010","Units Sold":"814","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"66528.22","Total Cost":"46129.38","Total Profit":"20398.84"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"9/15/2011","Order ID":"227970445","Ship Date":"9/15/2011","Units Sold":"375","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"57772.50","Total Cost":"34098.75","Total Profit":"23673.75"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/2/2015","Order ID":"413097369","Ship Date":"9/30/2015","Units Sold":"3546","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1496021.94","Total Cost":"1293190.74","Total Profit":"202831.20"},{"Region":"Europe","Country":"Ireland","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"4/9/2017","Order ID":"329677236","Ship Date":"5/15/2017","Units Sold":"7675","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3238005.75","Total Cost":"2798995.75","Total Profit":"439010.00"},{"Region":"Asia","Country":"Cambodia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"12/19/2015","Order ID":"621508872","Ship Date":"1/29/2016","Units Sold":"7141","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"583633.93","Total Cost":"404680.47","Total Profit":"178953.46"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/10/2012","Order ID":"652703607","Ship Date":"5/5/2012","Units Sold":"8357","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"913252.96","Total Cost":"299514.88","Total Profit":"613738.08"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/29/2011","Order ID":"757685267","Ship Date":"8/4/2011","Units Sold":"4763","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3101713.23","Total Cost":"2500384.48","Total Profit":"601328.75"},{"Region":"Europe","Country":"Spain","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"9/21/2012","Order ID":"891190183","Ship Date":"10/9/2012","Units Sold":"1834","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"282546.04","Total Cost":"166765.62","Total Profit":"115780.42"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/14/2011","Order ID":"178267180","Ship Date":"12/16/2011","Units Sold":"2075","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"169589.75","Total Cost":"117590.25","Total Profit":"51999.50"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"10/16/2013","Order ID":"964277589","Ship Date":"11/16/2013","Units Sold":"22","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"5616.16","Total Cost":"3507.24","Total Profit":"2108.92"},{"Region":"Europe","Country":"Serbia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/23/2012","Order ID":"264895236","Ship Date":"1/29/2013","Units Sold":"7242","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4716062.82","Total Cost":"3801760.32","Total Profit":"914302.50"},{"Region":"Europe","Country":"Slovenia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"7/21/2012","Order ID":"116106450","Ship Date":"8/27/2012","Units Sold":"7334","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3094141.26","Total Cost":"2674636.46","Total Profit":"419504.80"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"12/2/2012","Order ID":"824210059","Ship Date":"12/6/2012","Units Sold":"927","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"43986.15","Total Cost":"29469.33","Total Profit":"14516.82"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"7/20/2015","Order ID":"515817391","Ship Date":"8/15/2015","Units Sold":"684","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"299044.80","Total Cost":"180117.72","Total Profit":"118927.08"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"8/10/2011","Order ID":"987852275","Ship Date":"9/7/2011","Units Sold":"6295","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"298697.75","Total Cost":"200118.05","Total Profit":"98579.70"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/22/2016","Order ID":"957551038","Ship Date":"3/11/2016","Units Sold":"9486","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"88504.38","Total Cost":"65643.12","Total Profit":"22861.26"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/3/2010","Order ID":"112462508","Ship Date":"11/18/2010","Units Sold":"9010","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1374745.80","Total Cost":"877934.40","Total Profit":"496811.40"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/31/2016","Order ID":"460448014","Ship Date":"11/18/2016","Units Sold":"5654","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"462101.42","Total Cost":"320412.18","Total Profit":"141689.24"},{"Region":"Europe","Country":"Kosovo","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/27/2014","Order ID":"479681384","Ship Date":"6/2/2014","Units Sold":"7236","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"343348.20","Total Cost":"230032.44","Total Profit":"113315.76"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"12/12/2014","Order ID":"968648946","Ship Date":"12/22/2014","Units Sold":"3603","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"549745.74","Total Cost":"351076.32","Total Profit":"198669.42"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"6/27/2012","Order ID":"996149528","Ship Date":"7/19/2012","Units Sold":"1637","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1066030.77","Total Cost":"859359.52","Total Profit":"206671.25"},{"Region":"Europe","Country":"Serbia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/7/2016","Order ID":"151294457","Ship Date":"12/22/2016","Units Sold":"247","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"160848.87","Total Cost":"129665.12","Total Profit":"31183.75"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/31/2012","Order ID":"793507564","Ship Date":"11/19/2012","Units Sold":"5376","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"820270.08","Total Cost":"523837.44","Total Profit":"296432.64"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/1/2016","Order ID":"402525174","Ship Date":"3/4/2016","Units Sold":"4999","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3255398.79","Total Cost":"2624275.04","Total Profit":"631123.75"},{"Region":"Europe","Country":"Croatia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"2/26/2017","Order ID":"128396117","Ship Date":"4/2/2017","Units Sold":"4119","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"195446.55","Total Cost":"130943.01","Total Profit":"64503.54"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"2/23/2015","Order ID":"741481721","Ship Date":"3/19/2015","Units Sold":"9773","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1491164.34","Total Cost":"952281.12","Total Profit":"538883.22"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/4/2014","Order ID":"382455813","Ship Date":"2/10/2014","Units Sold":"6029","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"919904.82","Total Cost":"587465.76","Total Profit":"332439.06"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/11/2011","Order ID":"412304723","Ship Date":"3/30/2011","Units Sold":"8985","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"83830.05","Total Cost":"62176.20","Total Profit":"21653.85"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/23/2016","Order ID":"462327277","Ship Date":"7/31/2016","Units Sold":"1770","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"144662.10","Total Cost":"100305.90","Total Profit":"44356.20"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"10/4/2010","Order ID":"684134805","Ship Date":"10/8/2010","Units Sold":"9547","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1963817.90","Total Cost":"1118049.17","Total Profit":"845768.73"},{"Region":"Europe","Country":"Slovenia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"2/21/2017","Order ID":"399651134","Ship Date":"4/7/2017","Units Sold":"4506","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"926884.20","Total Cost":"527697.66","Total Profit":"399186.54"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"9/13/2014","Order ID":"351112592","Ship Date":"10/14/2014","Units Sold":"873","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"71350.29","Total Cost":"49472.91","Total Profit":"21877.38"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/24/2017","Order ID":"451068007","Ship Date":"7/26/2017","Units Sold":"9902","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1082090.56","Total Cost":"354887.68","Total Profit":"727202.88"},{"Region":"Asia","Country":"Myanmar","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/18/2010","Order ID":"232378709","Ship Date":"8/30/2010","Units Sold":"4879","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2058401.31","Total Cost":"1779322.51","Total Profit":"279078.80"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/11/2013","Order ID":"198218524","Ship Date":"12/12/2013","Units Sold":"6121","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"933942.18","Total Cost":"596430.24","Total Profit":"337511.94"},{"Region":"Europe","Country":"Spain","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"10/4/2010","Order ID":"472073781","Ship Date":"10/29/2010","Units Sold":"5977","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2521636.53","Total Cost":"2179752.13","Total Profit":"341884.40"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/19/2011","Order ID":"347743308","Ship Date":"12/14/2011","Units Sold":"3827","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2492180.67","Total Cost":"2009021.92","Total Profit":"483158.75"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/19/2014","Order ID":"539338433","Ship Date":"1/25/2014","Units Sold":"1083","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"222773.10","Total Cost":"126830.13","Total Profit":"95942.97"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/14/2011","Order ID":"931282985","Ship Date":"4/30/2011","Units Sold":"6185","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"57706.05","Total Cost":"42800.20","Total Profit":"14905.85"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"10/18/2013","Order ID":"128313291","Ship Date":"10/27/2013","Units Sold":"9609","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1480362.54","Total Cost":"873746.37","Total Profit":"606616.17"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"12/14/2013","Order ID":"405478179","Ship Date":"1/15/2014","Units Sold":"8859","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"420359.55","Total Cost":"281627.61","Total Profit":"138731.94"},{"Region":"Europe","Country":"Iceland","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/29/2012","Order ID":"958138978","Ship Date":"11/13/2012","Units Sold":"3470","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"32375.10","Total Cost":"24012.40","Total Profit":"8362.70"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/7/2016","Order ID":"151969516","Ship Date":"2/21/2016","Units Sold":"12","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"8019.24","Total Cost":"6030.48","Total Profit":"1988.76"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/16/2015","Order ID":"472956120","Ship Date":"8/26/2015","Units Sold":"7081","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1090898.86","Total Cost":"643875.33","Total Profit":"447023.53"},{"Region":"Europe","Country":"Monaco","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/30/2015","Order ID":"877397620","Ship Date":"8/3/2015","Units Sold":"308","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"129942.12","Total Cost":"112324.52","Total Profit":"17617.60"},{"Region":"Europe","Country":"Belgium","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/27/2013","Order ID":"841905343","Ship Date":"8/31/2013","Units Sold":"7355","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1512923.50","Total Cost":"861344.05","Total Profit":"651579.45"},{"Region":"Europe","Country":"France","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/17/2012","Order ID":"813403117","Ship Date":"6/1/2012","Units Sold":"2913","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"27178.29","Total Cost":"20157.96","Total Profit":"7020.33"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/8/2015","Order ID":"859127271","Ship Date":"5/6/2015","Units Sold":"3706","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2476608.62","Total Cost":"1862413.24","Total Profit":"614195.38"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/18/2015","Order ID":"216626632","Ship Date":"11/23/2015","Units Sold":"3489","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"537515.34","Total Cost":"317254.77","Total Profit":"220260.57"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/25/2015","Order ID":"443762528","Ship Date":"11/28/2015","Units Sold":"8048","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"381877.60","Total Cost":"255845.92","Total Profit":"126031.68"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/19/2014","Order ID":"468708789","Ship Date":"8/14/2014","Units Sold":"201","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"87877.20","Total Cost":"52929.33","Total Profit":"34947.87"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"4/12/2012","Order ID":"639951741","Ship Date":"5/11/2012","Units Sold":"4796","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2023384.44","Total Cost":"1749053.24","Total Profit":"274331.20"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/22/2014","Order ID":"476290214","Ship Date":"4/11/2014","Units Sold":"3713","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2481286.51","Total Cost":"1865931.02","Total Profit":"615355.49"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"3/14/2011","Order ID":"916835534","Ship Date":"3/14/2011","Units Sold":"864","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"131829.12","Total Cost":"84188.16","Total Profit":"47640.96"},{"Region":"Europe","Country":"Kosovo","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/30/2014","Order ID":"271011531","Ship Date":"8/14/2014","Units Sold":"7189","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4804193.03","Total Cost":"3612760.06","Total Profit":"1191432.97"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/7/2013","Order ID":"968554532","Ship Date":"6/7/2013","Units Sold":"5664","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2476300.80","Total Cost":"1491501.12","Total Profit":"984799.68"},{"Region":"Europe","Country":"Switzerland","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/28/2017","Order ID":"109513366","Ship Date":"6/23/2017","Units Sold":"6293","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4205423.11","Total Cost":"3162484.22","Total Profit":"1042938.89"},{"Region":"Asia","Country":"Myanmar","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"2/27/2014","Order ID":"714249360","Ship Date":"4/11/2014","Units Sold":"1113","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"10384.29","Total Cost":"7701.96","Total Profit":"2682.33"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/6/2011","Order ID":"473436343","Ship Date":"6/15/2011","Units Sold":"9190","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2346023.20","Total Cost":"1465069.80","Total Profit":"880953.40"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"6/13/2010","Order ID":"298060643","Ship Date":"6/14/2010","Units Sold":"1623","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"177361.44","Total Cost":"58168.32","Total Profit":"119193.12"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"4/19/2017","Order ID":"269421088","Ship Date":"5/18/2017","Units Sold":"6542","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"534677.66","Total Cost":"370735.14","Total Profit":"163942.52"},{"Region":"Europe","Country":"Iceland","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"5/29/2016","Order ID":"989129006","Ship Date":"6/15/2016","Units Sold":"4108","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1796017.60","Total Cost":"1081759.64","Total Profit":"714257.96"},{"Region":"Europe","Country":"Ukraine","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/17/2012","Order ID":"429108226","Ship Date":"4/14/2012","Units Sold":"1515","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"233400.90","Total Cost":"137758.95","Total Profit":"95641.95"},{"Region":"North America","Country":"Canada","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/9/2010","Order ID":"681595075","Ship Date":"4/17/2010","Units Sold":"7984","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"652532.32","Total Cost":"452453.28","Total Profit":"200079.04"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/9/2013","Order ID":"309138381","Ship Date":"2/23/2013","Units Sold":"9772","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6530334.44","Total Cost":"4910820.88","Total Profit":"1619513.56"},{"Region":"Asia","Country":"Cambodia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"3/30/2017","Order ID":"194599473","Ship Date":"5/1/2017","Units Sold":"5163","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"244984.35","Total Cost":"164131.77","Total Profit":"80852.58"},{"Region":"Asia","Country":"Thailand","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/16/2016","Order ID":"391152179","Ship Date":"2/24/2016","Units Sold":"9477","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"449683.65","Total Cost":"301273.83","Total Profit":"148409.82"},{"Region":"Europe","Country":"Ireland","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"12/8/2011","Order ID":"572282826","Ship Date":"12/30/2011","Units Sold":"61","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"9307.38","Total Cost":"5943.84","Total Profit":"3363.54"},{"Region":"Asia","Country":"Mongolia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"9/14/2011","Order ID":"481790244","Ship Date":"10/25/2011","Units Sold":"1295","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"266381.50","Total Cost":"151657.45","Total Profit":"114724.05"},{"Region":"Europe","Country":"Malta","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"12/13/2015","Order ID":"383785760","Ship Date":"1/28/2016","Units Sold":"9590","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1047995.20","Total Cost":"343705.60","Total Profit":"704289.60"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"11/24/2014","Order ID":"612693202","Ship Date":"12/1/2014","Units Sold":"8389","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2141543.92","Total Cost":"1337374.38","Total Profit":"804169.54"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/28/2014","Order ID":"223248898","Ship Date":"1/3/2015","Units Sold":"3165","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"345871.20","Total Cost":"113433.60","Total Profit":"232437.60"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"5/15/2012","Order ID":"140501677","Ship Date":"5/30/2012","Units Sold":"6423","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1321211.10","Total Cost":"752197.53","Total Profit":"569013.57"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/25/2011","Order ID":"909812867","Ship Date":"11/10/2011","Units Sold":"2700","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"295056.00","Total Cost":"96768.00","Total Profit":"198288.00"},{"Region":"Europe","Country":"Portugal","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/22/2015","Order ID":"446856296","Ship Date":"6/24/2015","Units Sold":"3563","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"389364.64","Total Cost":"127697.92","Total Profit":"261666.72"},{"Region":"Europe","Country":"Ireland","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"1/25/2011","Order ID":"787618291","Ship Date":"1/26/2011","Units Sold":"2610","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1101132.90","Total Cost":"951840.90","Total Profit":"149292.00"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"5/26/2014","Order ID":"438397681","Ship Date":"7/10/2014","Units Sold":"471","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"22348.95","Total Cost":"14973.09","Total Profit":"7375.86"},{"Region":"Asia","Country":"Vietnam","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"9/16/2011","Order ID":"225805795","Ship Date":"9/16/2011","Units Sold":"9807","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1510866.42","Total Cost":"891750.51","Total Profit":"619115.91"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/19/2016","Order ID":"146766459","Ship Date":"1/3/2017","Units Sold":"312","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"48066.72","Total Cost":"28370.16","Total Profit":"19696.56"},{"Region":"Europe","Country":"Estonia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/6/2014","Order ID":"718516004","Ship Date":"8/20/2014","Units Sold":"3707","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"571100.42","Total Cost":"337077.51","Total Profit":"234022.91"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"1/29/2017","Order ID":"728603255","Ship Date":"3/9/2017","Units Sold":"8749","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5846694.23","Total Cost":"4396722.46","Total Profit":"1449971.77"},{"Region":"Europe","Country":"Albania","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/30/2014","Order ID":"384889543","Ship Date":"12/7/2014","Units Sold":"6224","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2625843.36","Total Cost":"2269830.56","Total Profit":"356012.80"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"2/9/2011","Order ID":"865548694","Ship Date":"3/30/2011","Units Sold":"3948","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1726065.60","Total Cost":"1039626.84","Total Profit":"686438.76"},{"Region":"Europe","Country":"Serbia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"4/21/2017","Order ID":"269067037","Ship Date":"4/24/2017","Units Sold":"1770","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"746745.30","Total Cost":"645501.30","Total Profit":"101244.00"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"2/18/2012","Order ID":"364243400","Ship Date":"2/22/2012","Units Sold":"6571","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"718078.88","Total Cost":"235504.64","Total Profit":"482574.24"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/25/2013","Order ID":"740189111","Ship Date":"4/10/2013","Units Sold":"7261","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4852308.47","Total Cost":"3648942.94","Total Profit":"1203365.53"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"6/28/2012","Order ID":"156327998","Ship Date":"6/30/2012","Units Sold":"9783","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"91275.39","Total Cost":"67698.36","Total Profit":"23577.03"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/24/2010","Order ID":"592396390","Ship Date":"12/21/2010","Units Sold":"2111","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"922929.20","Total Cost":"555889.63","Total Profit":"367039.57"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/27/2013","Order ID":"498443114","Ship Date":"2/15/2014","Units Sold":"9249","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4043662.80","Total Cost":"2435539.17","Total Profit":"1608123.63"},{"Region":"Asia","Country":"Nepal","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"4/15/2013","Order ID":"644829499","Ship Date":"5/2/2013","Units Sold":"8233","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"390655.85","Total Cost":"261727.07","Total Profit":"128928.78"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/1/2012","Order ID":"972229373","Ship Date":"10/16/2012","Units Sold":"3131","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"148565.95","Total Cost":"99534.49","Total Profit":"49031.46"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/24/2017","Order ID":"141629064","Ship Date":"7/4/2017","Units Sold":"42","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"3432.66","Total Cost":"2380.14","Total Profit":"1052.52"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/15/2014","Order ID":"484327399","Ship Date":"6/16/2014","Units Sold":"2095","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"322755.70","Total Cost":"190498.35","Total Profit":"132257.35"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/10/2014","Order ID":"351935708","Ship Date":"9/16/2014","Units Sold":"4452","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1878254.28","Total Cost":"1623599.88","Total Profit":"254654.40"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"3/7/2011","Order ID":"866377818","Ship Date":"4/20/2011","Units Sold":"9304","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1433374.24","Total Cost":"846012.72","Total Profit":"587361.52"},{"Region":"Asia","Country":"Myanmar","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/11/2013","Order ID":"969890058","Ship Date":"5/15/2013","Units Sold":"876","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"41566.20","Total Cost":"27848.04","Total Profit":"13718.16"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/24/2012","Order ID":"575021255","Ship Date":"8/1/2012","Units Sold":"422","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"274810.62","Total Cost":"221533.12","Total Profit":"53277.50"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/27/2016","Order ID":"114632737","Ship Date":"6/4/2016","Units Sold":"1229","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"821303.83","Total Cost":"617621.66","Total Profit":"203682.17"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/21/2014","Order ID":"991898334","Ship Date":"10/7/2014","Units Sold":"3614","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"551424.12","Total Cost":"352148.16","Total Profit":"199275.96"},{"Region":"Asia","Country":"India","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"3/26/2013","Order ID":"630304372","Ship Date":"4/20/2013","Units Sold":"9925","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6463259.25","Total Cost":"5210228.00","Total Profit":"1253031.25"},{"Region":"Europe","Country":"Ukraine","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"6/6/2015","Order ID":"123649680","Ship Date":"7/15/2015","Units Sold":"9543","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"779949.39","Total Cost":"540801.81","Total Profit":"239147.58"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"5/22/2010","Order ID":"186045587","Ship Date":"7/4/2010","Units Sold":"3878","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2591551.06","Total Cost":"1948850.12","Total Profit":"642700.94"},{"Region":"Asia","Country":"Malaysia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"11/5/2014","Order ID":"701915919","Ship Date":"12/6/2014","Units Sold":"1374","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"894762.54","Total Cost":"721295.04","Total Profit":"173467.50"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/20/2016","Order ID":"275997006","Ship Date":"5/1/2016","Units Sold":"2502","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1629327.42","Total Cost":"1313449.92","Total Profit":"315877.50"},{"Region":"North America","Country":"Mexico","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/9/2014","Order ID":"283337676","Ship Date":"10/8/2014","Units Sold":"4770","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1217685.60","Total Cost":"760433.40","Total Profit":"457252.20"},{"Region":"Europe","Country":"Ireland","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"1/2/2011","Order ID":"819299256","Ship Date":"2/16/2011","Units Sold":"7711","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"630220.03","Total Cost":"436982.37","Total Profit":"193237.66"},{"Region":"Europe","Country":"France","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/2/2011","Order ID":"249555575","Ship Date":"2/6/2011","Units Sold":"7895","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"645258.35","Total Cost":"447409.65","Total Profit":"197848.70"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/14/2014","Order ID":"160092961","Ship Date":"5/3/2014","Units Sold":"3920","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"186004.00","Total Cost":"124616.80","Total Profit":"61387.20"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"3/17/2017","Order ID":"407210242","Ship Date":"4/25/2017","Units Sold":"1415","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"291065.50","Total Cost":"165710.65","Total Profit":"125354.85"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/15/2017","Order ID":"467518746","Ship Date":"8/8/2017","Units Sold":"8041","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1226895.78","Total Cost":"783515.04","Total Profit":"443380.74"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/27/2010","Order ID":"787942302","Ship Date":"4/22/2010","Units Sold":"8492","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1308277.52","Total Cost":"772177.56","Total Profit":"536099.96"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/17/2014","Order ID":"535717236","Ship Date":"1/25/2014","Units Sold":"9490","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1462029.40","Total Cost":"862925.70","Total Profit":"599103.70"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"9/12/2014","Order ID":"748392379","Ship Date":"10/6/2014","Units Sold":"4791","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"731010.78","Total Cost":"466835.04","Total Profit":"264175.74"},{"Region":"Europe","Country":"France","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"2/18/2014","Order ID":"283829057","Ship Date":"3/27/2014","Units Sold":"180","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"117217.80","Total Cost":"94492.80","Total Profit":"22725.00"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/28/2011","Order ID":"770201098","Ship Date":"7/30/2011","Units Sold":"8475","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"402138.75","Total Cost":"269420.25","Total Profit":"132718.50"},{"Region":"Asia","Country":"Cambodia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"11/15/2014","Order ID":"755994832","Ship Date":"12/21/2014","Units Sold":"4526","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"494601.28","Total Cost":"162211.84","Total Profit":"332389.44"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"1/9/2014","Order ID":"660009086","Ship Date":"2/22/2014","Units Sold":"210","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"17163.30","Total Cost":"11900.70","Total Profit":"5262.60"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/24/2015","Order ID":"521355187","Ship Date":"5/6/2015","Units Sold":"9440","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1031603.20","Total Cost":"338329.60","Total Profit":"693273.60"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/22/2014","Order ID":"449456965","Ship Date":"7/3/2014","Units Sold":"3159","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"258185.07","Total Cost":"179020.53","Total Profit":"79164.54"},{"Region":"Asia","Country":"Philippines","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/21/2016","Order ID":"174050748","Ship Date":"1/30/2016","Units Sold":"4339","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2825600.19","Total Cost":"2277801.44","Total Profit":"547798.75"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"6/23/2014","Order ID":"395185363","Ship Date":"6/27/2014","Units Sold":"2986","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"244045.78","Total Cost":"169216.62","Total Profit":"74829.16"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"7/15/2012","Order ID":"533222138","Ship Date":"9/2/2012","Units Sold":"1135","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"53855.75","Total Cost":"36081.65","Total Profit":"17774.10"},{"Region":"Europe","Country":"Ukraine","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/28/2010","Order ID":"978834903","Ship Date":"5/30/2010","Units Sold":"7854","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5248592.58","Total Cost":"3946949.16","Total Profit":"1301643.42"},{"Region":"Europe","Country":"Malta","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/19/2016","Order ID":"843009984","Ship Date":"12/26/2016","Units Sold":"4243","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2835469.61","Total Cost":"2132277.22","Total Profit":"703192.39"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"5/6/2015","Order ID":"207046210","Ship Date":"5/22/2015","Units Sold":"8429","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"399956.05","Total Cost":"267957.91","Total Profit":"131998.14"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"12/3/2012","Order ID":"572554910","Ship Date":"12/16/2012","Units Sold":"576","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"251827.20","Total Cost":"151678.08","Total Profit":"100149.12"},{"Region":"Europe","Country":"Germany","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"1/20/2014","Order ID":"811459910","Ship Date":"3/2/2014","Units Sold":"7875","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3442950.00","Total Cost":"2073723.75","Total Profit":"1369226.25"},{"Region":"Europe","Country":"Lithuania","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"8/26/2016","Order ID":"315997540","Ship Date":"9/22/2016","Units Sold":"9549","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"780439.77","Total Cost":"541141.83","Total Profit":"239297.94"},{"Region":"Europe","Country":"Russia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/1/2015","Order ID":"348716628","Ship Date":"1/5/2016","Units Sold":"1854","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"87972.30","Total Cost":"58938.66","Total Profit":"29033.64"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/6/2015","Order ID":"892478501","Ship Date":"10/19/2015","Units Sold":"3076","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"336145.28","Total Cost":"110243.84","Total Profit":"225901.44"},{"Region":"North America","Country":"Canada","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"1/20/2017","Order ID":"200456988","Ship Date":"2/5/2017","Units Sold":"8532","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3599565.48","Total Cost":"3111535.08","Total Profit":"488030.40"},{"Region":"Europe","Country":"Netherlands","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"8/25/2014","Order ID":"646138417","Ship Date":"9/30/2014","Units Sold":"5571","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"858268.26","Total Cost":"506571.03","Total Profit":"351697.23"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"6/27/2015","Order ID":"173321616","Ship Date":"7/15/2015","Units Sold":"8573","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1308068.34","Total Cost":"835353.12","Total Profit":"472715.22"},{"Region":"Asia","Country":"Cambodia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/9/2012","Order ID":"846117913","Ship Date":"8/24/2012","Units Sold":"3948","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"602385.84","Total Cost":"384693.12","Total Profit":"217692.72"},{"Region":"Europe","Country":"Netherlands","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/15/2011","Order ID":"298951137","Ship Date":"3/23/2011","Units Sold":"5140","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"561699.20","Total Cost":"184217.60","Total Profit":"377481.60"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"2/27/2010","Order ID":"286557614","Ship Date":"3/21/2010","Units Sold":"7621","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1174091.26","Total Cost":"692977.53","Total Profit":"481113.73"},{"Region":"Europe","Country":"Latvia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"5/5/2013","Order ID":"833986175","Ship Date":"5/31/2013","Units Sold":"3897","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"425864.16","Total Cost":"139668.48","Total Profit":"286195.68"},{"Region":"North America","Country":"Greenland","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"4/24/2010","Order ID":"686598145","Ship Date":"5/24/2010","Units Sold":"8504","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"929317.12","Total Cost":"304783.36","Total Profit":"624533.76"},{"Region":"Europe","Country":"Spain","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/12/2010","Order ID":"460067355","Ship Date":"9/19/2010","Units Sold":"3009","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1315534.80","Total Cost":"792359.97","Total Profit":"523174.83"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"1/19/2010","Order ID":"390380132","Ship Date":"3/5/2010","Units Sold":"1011","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"675620.97","Total Cost":"508067.94","Total Profit":"167553.03"},{"Region":"Europe","Country":"Moldova ","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/7/2016","Order ID":"783835303","Ship Date":"5/21/2016","Units Sold":"3140","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"801579.20","Total Cost":"500578.80","Total Profit":"301000.40"},{"Region":"Asia","Country":"Tajikistan","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"11/30/2015","Order ID":"667044198","Ship Date":"12/3/2015","Units Sold":"2056","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"168036.88","Total Cost":"116513.52","Total Profit":"51523.36"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/24/2015","Order ID":"936930644","Ship Date":"3/4/2015","Units Sold":"7453","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1902601.84","Total Cost":"1188157.26","Total Profit":"714444.58"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/11/2013","Order ID":"310730969","Ship Date":"8/20/2013","Units Sold":"1054","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"86143.42","Total Cost":"59730.18","Total Profit":"26413.24"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"3/21/2016","Order ID":"275994002","Ship Date":"5/1/2016","Units Sold":"1613","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"176268.64","Total Cost":"57809.92","Total Profit":"118458.72"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/21/2013","Order ID":"140581071","Ship Date":"7/15/2013","Units Sold":"9918","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"810598.14","Total Cost":"562053.06","Total Profit":"248545.08"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"12/10/2015","Order ID":"182666003","Ship Date":"1/18/2016","Units Sold":"3784","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1596431.76","Total Cost":"1379986.96","Total Profit":"216444.80"},{"Region":"Europe","Country":"Croatia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/23/2012","Order ID":"300735127","Ship Date":"8/17/2012","Units Sold":"3062","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"471731.72","Total Cost":"278427.66","Total Profit":"193304.06"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/31/2012","Order ID":"463587272","Ship Date":"4/14/2012","Units Sold":"4630","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"43197.90","Total Cost":"32039.60","Total Profit":"11158.30"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"6/2/2017","Order ID":"260333764","Ship Date":"7/22/2017","Units Sold":"7401","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1522385.70","Total Cost":"866731.11","Total Profit":"655654.59"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/14/2012","Order ID":"250398433","Ship Date":"8/27/2012","Units Sold":"7316","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1116275.28","Total Cost":"712871.04","Total Profit":"403404.24"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/4/2013","Order ID":"613517606","Ship Date":"11/23/2013","Units Sold":"2348","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"482983.60","Total Cost":"274974.28","Total Profit":"208009.32"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"4/18/2011","Order ID":"699740111","Ship Date":"5/31/2011","Units Sold":"7504","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5014698.08","Total Cost":"3771060.16","Total Profit":"1243637.92"},{"Region":"Europe","Country":"Latvia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"11/26/2011","Order ID":"379427278","Ship Date":"1/3/2012","Units Sold":"9818","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4292429.60","Total Cost":"2585373.94","Total Profit":"1707055.66"},{"Region":"Europe","Country":"Belgium","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/19/2011","Order ID":"493252933","Ship Date":"1/9/2012","Units Sold":"3359","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1468554.80","Total Cost":"884525.47","Total Profit":"584029.33"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"6/30/2016","Order ID":"602203404","Ship Date":"8/10/2016","Units Sold":"4225","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1078558.00","Total Cost":"673549.50","Total Profit":"405008.50"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/25/2012","Order ID":"337577521","Ship Date":"9/27/2012","Units Sold":"5545","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"51734.85","Total Cost":"38371.40","Total Profit":"13363.45"},{"Region":"Europe","Country":"France","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"5/11/2011","Order ID":"750986611","Ship Date":"6/27/2011","Units Sold":"2482","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"510547.40","Total Cost":"290667.02","Total Profit":"219880.38"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/6/2013","Order ID":"264354503","Ship Date":"4/26/2013","Units Sold":"7227","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1102695.66","Total Cost":"704198.88","Total Profit":"398496.78"},{"Region":"Europe","Country":"Slovenia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"6/28/2012","Order ID":"519917523","Ship Date":"7/4/2012","Units Sold":"4004","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1689247.56","Total Cost":"1460218.76","Total Profit":"229028.80"},{"Region":"Europe","Country":"Vatican City","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"8/9/2015","Order ID":"530224502","Ship Date":"9/21/2015","Units Sold":"4068","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"37954.44","Total Cost":"28150.56","Total Profit":"9803.88"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/28/2015","Order ID":"728136765","Ship Date":"3/2/2015","Units Sold":"705","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"145018.50","Total Cost":"82562.55","Total Profit":"62455.95"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"10/21/2015","Order ID":"716828143","Ship Date":"11/8/2015","Units Sold":"4232","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"200808.40","Total Cost":"134535.28","Total Profit":"66273.12"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/7/2016","Order ID":"619784963","Ship Date":"3/10/2016","Units Sold":"6998","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"571946.54","Total Cost":"396576.66","Total Profit":"175369.88"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"11/17/2011","Order ID":"630806052","Ship Date":"12/18/2011","Units Sold":"8384","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1279230.72","Total Cost":"816936.96","Total Profit":"462293.76"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"10/9/2014","Order ID":"564002740","Ship Date":"10/14/2014","Units Sold":"9799","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1509633.94","Total Cost":"891023.07","Total Profit":"618610.87"},{"Region":"Asia","Country":"Maldives","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/23/2011","Order ID":"303798854","Ship Date":"5/16/2011","Units Sold":"9687","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1478042.46","Total Cost":"943901.28","Total Profit":"534141.18"},{"Region":"Europe","Country":"San Marino","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"9/16/2011","Order ID":"254930722","Ship Date":"10/27/2011","Units Sold":"8521","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"696421.33","Total Cost":"482885.07","Total Profit":"213536.26"},{"Region":"Europe","Country":"Ukraine","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"11/25/2015","Order ID":"892447173","Ship Date":"11/29/2015","Units Sold":"3806","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"586352.36","Total Cost":"346079.58","Total Profit":"240272.78"},{"Region":"Europe","Country":"Norway","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/23/2017","Order ID":"511709535","Ship Date":"5/15/2017","Units Sold":"5077","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2219664.40","Total Cost":"1336926.41","Total Profit":"882737.99"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/17/2014","Order ID":"178391635","Ship Date":"4/29/2014","Units Sold":"8904","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"727723.92","Total Cost":"504589.68","Total Profit":"223134.24"},{"Region":"Europe","Country":"Netherlands","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"7/4/2013","Order ID":"578479802","Ship Date":"7/30/2013","Units Sold":"3883","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"424334.24","Total Cost":"139166.72","Total Profit":"285167.52"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"10/27/2011","Order ID":"668272864","Ship Date":"11/17/2011","Units Sold":"5646","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"616994.88","Total Cost":"202352.64","Total Profit":"414642.24"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/29/2014","Order ID":"824382150","Ship Date":"7/9/2014","Units Sold":"1853","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1238304.31","Total Cost":"931206.62","Total Profit":"307097.69"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/22/2016","Order ID":"593731486","Ship Date":"4/26/2016","Units Sold":"7196","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"588129.08","Total Cost":"407797.32","Total Profit":"180331.76"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"4/18/2013","Order ID":"943557202","Ship Date":"5/5/2013","Units Sold":"8399","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3672042.80","Total Cost":"2211708.67","Total Profit":"1460334.13"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"1/27/2014","Order ID":"211408126","Ship Date":"3/8/2014","Units Sold":"9217","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3888560.13","Total Cost":"3361347.73","Total Profit":"527212.40"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"12/4/2012","Order ID":"855145585","Ship Date":"12/22/2012","Units Sold":"5437","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1118390.90","Total Cost":"636727.07","Total Profit":"481663.83"},{"Region":"Europe","Country":"Lithuania","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/22/2016","Order ID":"902943408","Ship Date":"8/28/2016","Units Sold":"9875","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1506727.50","Total Cost":"962220.00","Total Profit":"544507.50"},{"Region":"Europe","Country":"Ireland","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/14/2010","Order ID":"703287923","Ship Date":"6/4/2010","Units Sold":"7380","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3226536.00","Total Cost":"1943375.40","Total Profit":"1283160.60"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/17/2014","Order ID":"674977958","Ship Date":"6/3/2014","Units Sold":"9832","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6570430.64","Total Cost":"4940973.28","Total Profit":"1629457.36"},{"Region":"Europe","Country":"San Marino","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"2/26/2012","Order ID":"857124841","Ship Date":"3/10/2012","Units Sold":"1142","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"124797.76","Total Cost":"40929.28","Total Profit":"83868.48"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"10/4/2014","Order ID":"459152400","Ship Date":"10/21/2014","Units Sold":"2253","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"246207.84","Total Cost":"80747.52","Total Profit":"165460.32"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"7/31/2011","Order ID":"110796964","Ship Date":"9/16/2011","Units Sold":"6139","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"291295.55","Total Cost":"195158.81","Total Profit":"96136.74"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/7/2012","Order ID":"512107360","Ship Date":"1/19/2012","Units Sold":"2803","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"229089.19","Total Cost":"158846.01","Total Profit":"70243.18"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/22/2011","Order ID":"183444917","Ship Date":"6/25/2011","Units Sold":"4282","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"467936.96","Total Cost":"153466.88","Total Profit":"314470.08"},{"Region":"Europe","Country":"Georgia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"6/5/2017","Order ID":"415483462","Ship Date":"6/27/2017","Units Sold":"9644","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4068707.16","Total Cost":"3517070.36","Total Profit":"551636.80"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"3/23/2016","Order ID":"319209325","Ship Date":"3/24/2016","Units Sold":"9988","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1091488.64","Total Cost":"357969.92","Total Profit":"733518.72"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/11/2013","Order ID":"875921332","Ship Date":"12/12/2013","Units Sold":"3442","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2241464.82","Total Cost":"1806912.32","Total Profit":"434552.50"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"6/26/2017","Order ID":"887230813","Ship Date":"8/2/2017","Units Sold":"169","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"26036.14","Total Cost":"15367.17","Total Profit":"10668.97"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"5/16/2016","Order ID":"125061595","Ship Date":"6/17/2016","Units Sold":"7360","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"68668.80","Total Cost":"50931.20","Total Profit":"17737.60"},{"Region":"Europe","Country":"Finland","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/9/2016","Order ID":"681650006","Ship Date":"2/21/2016","Units Sold":"4239","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2832796.53","Total Cost":"2130267.06","Total Profit":"702529.47"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"8/17/2011","Order ID":"219544875","Ship Date":"9/19/2011","Units Sold":"7062","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4598845.02","Total Cost":"3707267.52","Total Profit":"891577.50"},{"Region":"Europe","Country":"Kosovo","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/4/2014","Order ID":"521607530","Ship Date":"9/4/2014","Units Sold":"4114","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"449577.92","Total Cost":"147445.76","Total Profit":"302132.16"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/19/2010","Order ID":"741011798","Ship Date":"11/21/2010","Units Sold":"713","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"6652.29","Total Cost":"4933.96","Total Profit":"1718.33"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"4/5/2010","Order ID":"551244008","Ship Date":"5/3/2010","Units Sold":"4207","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"865379.90","Total Cost":"492681.77","Total Profit":"372698.13"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"3/3/2012","Order ID":"596102988","Ship Date":"3/28/2012","Units Sold":"8976","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"980897.28","Total Cost":"321699.84","Total Profit":"659197.44"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/20/2017","Order ID":"239700067","Ship Date":"3/15/2017","Units Sold":"1431","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"625633.20","Total Cost":"376825.23","Total Profit":"248807.97"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/25/2015","Order ID":"716459071","Ship Date":"7/7/2015","Units Sold":"5015","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3351374.05","Total Cost":"2520238.10","Total Profit":"831135.95"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/16/2013","Order ID":"181116330","Ship Date":"6/1/2013","Units Sold":"5202","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2274314.40","Total Cost":"1369842.66","Total Profit":"904471.74"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/16/2014","Order ID":"458720672","Ship Date":"10/31/2014","Units Sold":"4495","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3003873.65","Total Cost":"2258917.30","Total Profit":"744956.35"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/8/2016","Order ID":"294633424","Ship Date":"11/30/2016","Units Sold":"7432","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"352648.40","Total Cost":"236263.28","Total Profit":"116385.12"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/19/2014","Order ID":"304528415","Ship Date":"1/29/2014","Units Sold":"5580","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"851396.40","Total Cost":"543715.20","Total Profit":"307681.20"},{"Region":"Europe","Country":"Estonia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"1/29/2017","Order ID":"724391973","Ship Date":"2/13/2017","Units Sold":"2537","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"521860.90","Total Cost":"297108.07","Total Profit":"224752.83"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/14/2011","Order ID":"960522925","Ship Date":"3/25/2011","Units Sold":"8933","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1376217.98","Total Cost":"812277.69","Total Profit":"563940.29"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/7/2013","Order ID":"939532601","Ship Date":"2/11/2013","Units Sold":"7430","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1528351.00","Total Cost":"870127.30","Total Profit":"658223.70"},{"Region":"Europe","Country":"Andorra","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"9/18/2013","Order ID":"658344829","Ship Date":"9/30/2013","Units Sold":"7720","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1177917.60","Total Cost":"752236.80","Total Profit":"425680.80"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"2/5/2013","Order ID":"634195935","Ship Date":"3/9/2013","Units Sold":"1525","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"313692.50","Total Cost":"178592.75","Total Profit":"135099.75"},{"Region":"Europe","Country":"Georgia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"11/1/2015","Order ID":"554634749","Ship Date":"11/22/2015","Units Sold":"7602","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1940638.56","Total Cost":"1211910.84","Total Profit":"728727.72"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/1/2012","Order ID":"627522599","Ship Date":"7/21/2012","Units Sold":"6737","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"319670.65","Total Cost":"214169.23","Total Profit":"105501.42"},{"Region":"Europe","Country":"Lithuania","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/4/2013","Order ID":"231033313","Ship Date":"9/11/2013","Units Sold":"6746","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1722118.88","Total Cost":"1075447.32","Total Profit":"646671.56"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"11/12/2015","Order ID":"163653218","Ship Date":"12/6/2015","Units Sold":"7479","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1152214.74","Total Cost":"680065.47","Total Profit":"472149.27"},{"Region":"Asia","Country":"Taiwan","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"11/1/2012","Order ID":"394181144","Ship Date":"11/3/2012","Units Sold":"5815","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"275921.75","Total Cost":"184858.85","Total Profit":"91062.90"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/1/2014","Order ID":"511728417","Ship Date":"9/5/2014","Units Sold":"665","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"444399.55","Total Cost":"334189.10","Total Profit":"110210.45"},{"Region":"Europe","Country":"Lithuania","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"3/23/2013","Order ID":"175718867","Ship Date":"3/25/2013","Units Sold":"7973","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"651633.29","Total Cost":"451829.91","Total Profit":"199803.38"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/2/2017","Order ID":"465888822","Ship Date":"2/2/2017","Units Sold":"5710","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2496412.00","Total Cost":"1503614.30","Total Profit":"992797.70"},{"Region":"Europe","Country":"Netherlands","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"8/24/2016","Order ID":"732287108","Ship Date":"9/6/2016","Units Sold":"8883","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1368514.98","Total Cost":"807731.19","Total Profit":"560783.79"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/28/2010","Order ID":"845275056","Ship Date":"2/3/2011","Units Sold":"4528","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"370073.44","Total Cost":"256601.76","Total Profit":"113471.68"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"8/26/2011","Order ID":"745526492","Ship Date":"8/31/2011","Units Sold":"6711","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"548490.03","Total Cost":"380312.37","Total Profit":"168177.66"},{"Region":"Europe","Country":"Montenegro","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"1/27/2016","Order ID":"894027745","Ship Date":"2/14/2016","Units Sold":"1532","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1023789.64","Total Cost":"769891.28","Total Profit":"253898.36"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/28/2011","Order ID":"922077643","Ship Date":"6/8/2011","Units Sold":"2120","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1380565.20","Total Cost":"1112915.20","Total Profit":"267650.00"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/27/2016","Order ID":"981287515","Ship Date":"4/2/2016","Units Sold":"3637","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"554933.46","Total Cost":"354389.28","Total Profit":"200544.18"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/26/2015","Order ID":"393581187","Ship Date":"11/20/2015","Units Sold":"8274","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3490717.86","Total Cost":"3017445.06","Total Profit":"473272.80"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/5/2012","Order ID":"801194989","Ship Date":"3/12/2012","Units Sold":"256","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"2388.48","Total Cost":"1771.52","Total Profit":"616.96"},{"Region":"Europe","Country":"Moldova ","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/20/2011","Order ID":"316677749","Ship Date":"7/24/2011","Units Sold":"838","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"129102.28","Total Cost":"76199.34","Total Profit":"52902.94"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/23/2014","Order ID":"272890794","Ship Date":"4/28/2014","Units Sold":"3305","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2208632.35","Total Cost":"1660894.70","Total Profit":"547737.65"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"6/11/2017","Order ID":"273007953","Ship Date":"6/30/2017","Units Sold":"7975","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1228628.50","Total Cost":"725166.75","Total Profit":"503461.75"},{"Region":"Europe","Country":"Armenia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/12/2012","Order ID":"440515553","Ship Date":"1/22/2012","Units Sold":"7196","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"341450.20","Total Cost":"228760.84","Total Profit":"112689.36"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/15/2016","Order ID":"969212424","Ship Date":"5/15/2016","Units Sold":"349","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"227272.29","Total Cost":"183211.04","Total Profit":"44061.25"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"1/21/2012","Order ID":"773209893","Ship Date":"3/9/2012","Units Sold":"8845","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"82523.85","Total Cost":"61207.40","Total Profit":"21316.45"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"10/26/2015","Order ID":"636931788","Ship Date":"12/10/2015","Units Sold":"1125","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"173317.50","Total Cost":"102296.25","Total Profit":"71021.25"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"2/27/2015","Order ID":"965114438","Ship Date":"4/18/2015","Units Sold":"7664","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1956465.92","Total Cost":"1221794.88","Total Profit":"734671.04"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/4/2010","Order ID":"432806670","Ship Date":"1/11/2010","Units Sold":"5966","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"651964.48","Total Cost":"213821.44","Total Profit":"438143.04"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"7/7/2016","Order ID":"935369813","Ship Date":"8/4/2016","Units Sold":"5568","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"264201.60","Total Cost":"177006.72","Total Profit":"87194.88"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"3/24/2010","Order ID":"838477694","Ship Date":"4/2/2010","Units Sold":"3037","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"463385.46","Total Cost":"295925.28","Total Profit":"167460.18"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"3/14/2013","Order ID":"828116643","Ship Date":"3/25/2013","Units Sold":"6972","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4659178.44","Total Cost":"3503708.88","Total Profit":"1155469.56"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"6/25/2014","Order ID":"760585486","Ship Date":"7/28/2014","Units Sold":"3002","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2006146.54","Total Cost":"1508625.08","Total Profit":"497521.46"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/1/2011","Order ID":"112495553","Ship Date":"11/6/2011","Units Sold":"8789","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"960461.92","Total Cost":"314997.76","Total Profit":"645464.16"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/10/2015","Order ID":"230770671","Ship Date":"3/4/2015","Units Sold":"9025","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2303902.00","Total Cost":"1438765.50","Total Profit":"865136.50"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/7/2013","Order ID":"282647168","Ship Date":"1/10/2013","Units Sold":"433","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"4039.89","Total Cost":"2996.36","Total Profit":"1043.53"},{"Region":"Asia","Country":"Malaysia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/3/2013","Order ID":"405673873","Ship Date":"1/6/2014","Units Sold":"6769","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1042832.14","Total Cost":"615505.17","Total Profit":"427326.97"},{"Region":"Europe","Country":"Croatia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"3/10/2012","Order ID":"357712113","Ship Date":"4/7/2012","Units Sold":"3818","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"974659.04","Total Cost":"608665.56","Total Profit":"365993.48"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"8/12/2014","Order ID":"866935718","Ship Date":"9/21/2014","Units Sold":"4399","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1122976.72","Total Cost":"701288.58","Total Profit":"421688.14"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"11/27/2013","Order ID":"481831014","Ship Date":"1/1/2014","Units Sold":"3359","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"512516.22","Total Cost":"327300.96","Total Profit":"185215.26"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/15/2015","Order ID":"521196830","Ship Date":"4/3/2015","Units Sold":"2579","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"658367.12","Total Cost":"411144.18","Total Profit":"247222.94"},{"Region":"Europe","Country":"Monaco","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/16/2017","Order ID":"124144494","Ship Date":"2/28/2017","Units Sold":"5969","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"283229.05","Total Cost":"189754.51","Total Profit":"93474.54"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"8/7/2015","Order ID":"300097835","Ship Date":"8/27/2015","Units Sold":"4473","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"920096.10","Total Cost":"523833.03","Total Profit":"396263.07"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"2/24/2015","Order ID":"778793179","Ship Date":"3/8/2015","Units Sold":"1063","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"710371.01","Total Cost":"534200.02","Total Profit":"176170.99"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"1/12/2010","Order ID":"460279357","Ship Date":"2/28/2010","Units Sold":"5745","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"876572.10","Total Cost":"559792.80","Total Profit":"316779.30"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"9/17/2010","Order ID":"564917695","Ship Date":"11/3/2010","Units Sold":"555","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"60650.40","Total Cost":"19891.20","Total Profit":"40759.20"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"5/8/2017","Order ID":"583382022","Ship Date":"5/29/2017","Units Sold":"4559","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1923396.51","Total Cost":"1662621.71","Total Profit":"260774.80"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"1/15/2016","Order ID":"526658666","Ship Date":"2/27/2016","Units Sold":"8858","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2261270.24","Total Cost":"1412142.36","Total Profit":"849127.88"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/7/2012","Order ID":"476046454","Ship Date":"12/1/2012","Units Sold":"1580","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"690776.00","Total Cost":"416061.40","Total Profit":"274714.60"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"12/11/2014","Order ID":"133156716","Ship Date":"1/19/2015","Units Sold":"2886","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1928627.22","Total Cost":"1450330.44","Total Profit":"478296.78"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"8/5/2011","Order ID":"169913280","Ship Date":"8/6/2011","Units Sold":"9970","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4206243.30","Total Cost":"3635959.30","Total Profit":"570284.00"},{"Region":"Europe","Country":"Finland","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"11/12/2015","Order ID":"878552472","Ship Date":"12/18/2015","Units Sold":"2055","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"524600.40","Total Cost":"327608.10","Total Profit":"196992.30"},{"Region":"Europe","Country":"Armenia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"5/19/2015","Order ID":"821623122","Ship Date":"5/28/2015","Units Sold":"5395","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1109751.50","Total Cost":"631808.45","Total Profit":"477943.05"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"12/22/2013","Order ID":"881986558","Ship Date":"2/8/2014","Units Sold":"8277","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"392743.65","Total Cost":"263125.83","Total Profit":"129617.82"},{"Region":"North America","Country":"Canada","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/5/2012","Order ID":"212816607","Ship Date":"10/22/2012","Units Sold":"6018","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2631069.60","Total Cost":"1584719.94","Total Profit":"1046349.66"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"12/1/2013","Order ID":"287599599","Ship Date":"1/19/2014","Units Sold":"5967","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1523255.76","Total Cost":"951259.14","Total Profit":"571996.62"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"11/25/2016","Order ID":"850134360","Ship Date":"12/4/2016","Units Sold":"2504","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"382060.32","Total Cost":"243989.76","Total Profit":"138070.56"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"8/30/2014","Order ID":"364532220","Ship Date":"9/28/2014","Units Sold":"2039","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1362602.53","Total Cost":"1024679.06","Total Profit":"337923.47"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"7/26/2012","Order ID":"965217006","Ship Date":"8/23/2012","Units Sold":"8016","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1223081.28","Total Cost":"781079.04","Total Profit":"442002.24"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/22/2017","Order ID":"806925046","Ship Date":"3/2/2017","Units Sold":"5908","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2582977.60","Total Cost":"1555753.64","Total Profit":"1027223.96"},{"Region":"Europe","Country":"Russia","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"9/16/2016","Order ID":"814705169","Ship Date":"10/18/2016","Units Sold":"8219","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5492511.13","Total Cost":"4130376.26","Total Profit":"1362134.87"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/18/2016","Order ID":"633918702","Ship Date":"5/30/2016","Units Sold":"9486","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"88504.38","Total Cost":"65643.12","Total Profit":"22861.26"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"4/22/2010","Order ID":"880239474","Ship Date":"6/2/2010","Units Sold":"1276","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"852712.52","Total Cost":"641241.04","Total Profit":"211471.48"},{"Region":"Europe","Country":"Lithuania","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/4/2017","Order ID":"889653813","Ship Date":"1/18/2017","Units Sold":"7188","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"587475.24","Total Cost":"407343.96","Total Profit":"180131.28"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"2/4/2014","Order ID":"968460547","Ship Date":"3/12/2014","Units Sold":"7852","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1198058.16","Total Cost":"765098.88","Total Profit":"432959.28"},{"Region":"Europe","Country":"Albania","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/7/2010","Order ID":"143271005","Ship Date":"9/20/2010","Units Sold":"5929","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"647921.12","Total Cost":"212495.36","Total Profit":"435425.76"},{"Region":"Europe","Country":"Switzerland","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"11/2/2012","Order ID":"211009013","Ship Date":"11/15/2012","Units Sold":"1111","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"52716.95","Total Cost":"35318.69","Total Profit":"17398.26"},{"Region":"Europe","Country":"Netherlands","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/22/2013","Order ID":"788910901","Ship Date":"2/24/2013","Units Sold":"5122","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3422878.94","Total Cost":"2574009.88","Total Profit":"848869.06"},{"Region":"Asia","Country":"South Korea","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/2/2015","Order ID":"664525496","Ship Date":"12/31/2015","Units Sold":"6716","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2833413.24","Total Cost":"2449258.04","Total Profit":"384155.20"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"1/1/2012","Order ID":"945714128","Ship Date":"2/14/2012","Units Sold":"6681","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4350734.01","Total Cost":"3507257.76","Total Profit":"843476.25"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"11/19/2011","Order ID":"110650622","Ship Date":"11/22/2011","Units Sold":"2833","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"309590.24","Total Cost":"101534.72","Total Profit":"208055.52"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/25/2012","Order ID":"757821309","Ship Date":"1/27/2012","Units Sold":"5021","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"410366.33","Total Cost":"284540.07","Total Profit":"125826.26"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/24/2013","Order ID":"156025016","Ship Date":"12/13/2013","Units Sold":"124","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"18919.92","Total Cost":"12082.56","Total Profit":"6837.36"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"3/22/2012","Order ID":"594373071","Ship Date":"5/9/2012","Units Sold":"7055","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2976433.95","Total Cost":"2572887.95","Total Profit":"403546.00"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/20/2014","Order ID":"832289302","Ship Date":"5/9/2014","Units Sold":"1755","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"740416.95","Total Cost":"640030.95","Total Profit":"100386.00"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/28/2013","Order ID":"149510037","Ship Date":"5/28/2013","Units Sold":"2197","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1430708.37","Total Cost":"1153337.12","Total Profit":"277371.25"},{"Region":"Europe","Country":"Armenia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/24/2014","Order ID":"596084105","Ship Date":"12/6/2014","Units Sold":"3388","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1481233.60","Total Cost":"892162.04","Total Profit":"589071.56"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/21/2010","Order ID":"242372834","Ship Date":"8/4/2010","Units Sold":"2363","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"22046.79","Total Cost":"16351.96","Total Profit":"5694.83"},{"Region":"Asia","Country":"Philippines","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/24/2011","Order ID":"829050052","Ship Date":"11/11/2011","Units Sold":"3188","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"29744.04","Total Cost":"22060.96","Total Profit":"7683.08"},{"Region":"Europe","Country":"Andorra","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/14/2016","Order ID":"117102086","Ship Date":"3/10/2016","Units Sold":"1964","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"160517.72","Total Cost":"111299.88","Total Profit":"49217.84"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/19/2010","Order ID":"437827765","Ship Date":"9/7/2010","Units Sold":"1820","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1216251.40","Total Cost":"914622.80","Total Profit":"301628.60"},{"Region":"Asia","Country":"India","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/8/2013","Order ID":"142838418","Ship Date":"11/8/2013","Units Sold":"7917","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1207975.86","Total Cost":"771432.48","Total Profit":"436543.38"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"4/11/2011","Order ID":"354057872","Ship Date":"4/19/2011","Units Sold":"2447","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"376984.82","Total Cost":"222505.71","Total Profit":"154479.11"},{"Region":"Europe","Country":"Slovakia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"3/5/2012","Order ID":"913722455","Ship Date":"4/18/2012","Units Sold":"9634","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4211984.80","Total Cost":"2536921.22","Total Profit":"1675063.58"},{"Region":"Europe","Country":"Latvia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"7/17/2015","Order ID":"834380996","Ship Date":"8/31/2015","Units Sold":"733","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"59908.09","Total Cost":"41539.11","Total Profit":"18368.98"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/4/2013","Order ID":"548894822","Ship Date":"11/20/2013","Units Sold":"9030","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3809666.70","Total Cost":"3293150.70","Total Profit":"516516.00"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"12/25/2011","Order ID":"560437762","Ship Date":"2/11/2012","Units Sold":"4843","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"738944.94","Total Cost":"471901.92","Total Profit":"267043.02"},{"Region":"Asia","Country":"Bhutan","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"12/4/2015","Order ID":"992496144","Ship Date":"1/18/2016","Units Sold":"519","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"337977.99","Total Cost":"272454.24","Total Profit":"65523.75"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/6/2013","Order ID":"238868796","Ship Date":"11/25/2013","Units Sold":"5440","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1119008.00","Total Cost":"637078.40","Total Profit":"481929.60"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/21/2017","Order ID":"813667047","Ship Date":"6/7/2017","Units Sold":"1015","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"660978.15","Total Cost":"532834.40","Total Profit":"128143.75"},{"Region":"Europe","Country":"Andorra","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"3/23/2013","Order ID":"801314723","Ship Date":"5/6/2013","Units Sold":"5688","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1170021.60","Total Cost":"666121.68","Total Profit":"503899.92"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"7/6/2011","Order ID":"606548154","Ship Date":"8/11/2011","Units Sold":"9932","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"811742.36","Total Cost":"562846.44","Total Profit":"248895.92"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/2/2012","Order ID":"704416167","Ship Date":"4/10/2012","Units Sold":"1252","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"815314.92","Total Cost":"657249.92","Total Profit":"158065.00"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/12/2016","Order ID":"290280091","Ship Date":"3/24/2016","Units Sold":"9185","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1401447.30","Total Cost":"894986.40","Total Profit":"506460.90"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/17/2014","Order ID":"429813754","Ship Date":"4/21/2014","Units Sold":"296","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"2761.68","Total Cost":"2048.32","Total Profit":"713.36"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/14/2013","Order ID":"909003484","Ship Date":"6/7/2013","Units Sold":"3186","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"486119.88","Total Cost":"310443.84","Total Profit":"175676.04"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"1/15/2010","Order ID":"684148108","Ship Date":"2/6/2010","Units Sold":"3483","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"380622.24","Total Cost":"124830.72","Total Profit":"255791.52"},{"Region":"Europe","Country":"Russia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/19/2017","Order ID":"131858956","Ship Date":"2/28/2017","Units Sold":"8850","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2259228.00","Total Cost":"1410867.00","Total Profit":"848361.00"},{"Region":"Asia","Country":"China","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/22/2014","Order ID":"599059855","Ship Date":"7/29/2014","Units Sold":"3979","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2659046.33","Total Cost":"1999606.66","Total Profit":"659439.67"},{"Region":"Europe","Country":"Russia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"3/20/2013","Order ID":"352987134","Ship Date":"4/7/2013","Units Sold":"5592","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3641566.32","Total Cost":"2935576.32","Total Profit":"705990.00"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/31/2014","Order ID":"431189620","Ship Date":"4/6/2014","Units Sold":"7445","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4848258.45","Total Cost":"3908327.20","Total Profit":"939931.25"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"12/6/2011","Order ID":"591528642","Ship Date":"12/21/2011","Units Sold":"5325","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1095352.50","Total Cost":"623610.75","Total Profit":"471741.75"},{"Region":"Asia","Country":"Bhutan","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"1/21/2013","Order ID":"662178027","Ship Date":"3/12/2013","Units Sold":"2048","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"315514.88","Total Cost":"186224.64","Total Profit":"129290.24"},{"Region":"Europe","Country":"Austria","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/7/2010","Order ID":"991624104","Ship Date":"6/2/2010","Units Sold":"2463","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"201300.99","Total Cost":"139578.21","Total Profit":"61722.78"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"7/2/2016","Order ID":"198665702","Ship Date":"8/21/2016","Units Sold":"8451","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3565392.39","Total Cost":"3081995.19","Total Profit":"483397.20"},{"Region":"Europe","Country":"Poland","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/2/2015","Order ID":"122414147","Ship Date":"2/10/2015","Units Sold":"3921","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"604069.26","Total Cost":"356536.53","Total Profit":"247532.73"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/28/2016","Order ID":"872293269","Ship Date":"11/28/2016","Units Sold":"9817","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6560406.59","Total Cost":"4933435.18","Total Profit":"1626971.41"},{"Region":"Europe","Country":"Netherlands","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"8/14/2011","Order ID":"378039395","Ship Date":"8/19/2011","Units Sold":"9113","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3844683.57","Total Cost":"3323419.97","Total Profit":"521263.60"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/4/2016","Order ID":"239701354","Ship Date":"2/14/2016","Units Sold":"1812","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"279156.72","Total Cost":"164765.16","Total Profit":"114391.56"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/5/2010","Order ID":"777640473","Ship Date":"8/12/2010","Units Sold":"9952","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2540546.56","Total Cost":"1586547.84","Total Profit":"953998.72"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"3/5/2010","Order ID":"582530581","Ship Date":"4/22/2010","Units Sold":"2599","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"284018.72","Total Cost":"93148.16","Total Profit":"190870.56"},{"Region":"Europe","Country":"France","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"4/28/2016","Order ID":"565358006","Ship Date":"5/11/2016","Units Sold":"852","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"554830.92","Total Cost":"447265.92","Total Profit":"107565.00"},{"Region":"Asia","Country":"Thailand","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"4/26/2012","Order ID":"807421576","Ship Date":"6/11/2012","Units Sold":"2842","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"725505.76","Total Cost":"453071.64","Total Profit":"272434.12"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/17/2012","Order ID":"110332620","Ship Date":"12/6/2012","Units Sold":"8729","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"81441.57","Total Cost":"60404.68","Total Profit":"21036.89"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/10/2014","Order ID":"946014964","Ship Date":"12/29/2014","Units Sold":"5705","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"270702.25","Total Cost":"181361.95","Total Profit":"89340.30"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/6/2016","Order ID":"906704938","Ship Date":"3/14/2016","Units Sold":"2995","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"244781.35","Total Cost":"169726.65","Total Profit":"75054.70"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/13/2012","Order ID":"354951369","Ship Date":"1/26/2012","Units Sold":"6853","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"325174.85","Total Cost":"217856.87","Total Profit":"107317.98"},{"Region":"Asia","Country":"Cambodia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/30/2013","Order ID":"173615586","Ship Date":"12/11/2013","Units Sold":"5565","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"857343.90","Total Cost":"506025.45","Total Profit":"351318.45"},{"Region":"Asia","Country":"Thailand","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"2/10/2015","Order ID":"415871417","Ship Date":"2/20/2015","Units Sold":"4449","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"685412.94","Total Cost":"404547.57","Total Profit":"280865.37"},{"Region":"Asia","Country":"Brunei","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"6/23/2010","Order ID":"755205190","Ship Date":"8/10/2010","Units Sold":"853","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"175462.10","Total Cost":"99894.83","Total Profit":"75567.27"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"7/14/2014","Order ID":"935415732","Ship Date":"8/4/2014","Units Sold":"9157","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1883594.90","Total Cost":"1072376.27","Total Profit":"811218.63"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/27/2012","Order ID":"320614373","Ship Date":"9/9/2012","Units Sold":"5773","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3759435.33","Total Cost":"3030594.08","Total Profit":"728841.25"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"3/19/2010","Order ID":"145224940","Ship Date":"4/30/2010","Units Sold":"4142","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1810882.40","Total Cost":"1090712.86","Total Profit":"720169.54"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"8/25/2013","Order ID":"363983762","Ship Date":"10/3/2013","Units Sold":"9738","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1500236.28","Total Cost":"885476.34","Total Profit":"614759.94"},{"Region":"Asia","Country":"Singapore","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/13/2011","Order ID":"101939666","Ship Date":"8/9/2011","Units Sold":"5067","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"240429.15","Total Cost":"161079.93","Total Profit":"79349.22"},{"Region":"Europe","Country":"Vatican City","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/18/2016","Order ID":"804453980","Ship Date":"4/27/2016","Units Sold":"4664","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"509681.92","Total Cost":"167157.76","Total Profit":"342524.16"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/10/2014","Order ID":"387200534","Ship Date":"9/29/2014","Units Sold":"97","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"64822.19","Total Cost":"48746.38","Total Profit":"16075.81"},{"Region":"North America","Country":"Mexico","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"6/1/2017","Order ID":"886165654","Ship Date":"7/13/2017","Units Sold":"4964","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"764753.84","Total Cost":"451376.52","Total Profit":"313377.32"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"6/19/2017","Order ID":"807648169","Ship Date":"7/29/2017","Units Sold":"9896","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4175023.44","Total Cost":"3608972.24","Total Profit":"566051.20"},{"Region":"Europe","Country":"Montenegro","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"3/22/2016","Order ID":"978259408","Ship Date":"4/23/2016","Units Sold":"7553","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"617306.69","Total Cost":"428028.51","Total Profit":"189278.18"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/9/2012","Order ID":"494923198","Ship Date":"7/22/2012","Units Sold":"7627","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3334524.40","Total Cost":"2008417.91","Total Profit":"1326106.49"},{"Region":"Europe","Country":"Albania","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"6/29/2013","Order ID":"774875867","Ship Date":"7/10/2013","Units Sold":"1843","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"777543.27","Total Cost":"672123.67","Total Profit":"105419.60"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/23/2016","Order ID":"605666244","Ship Date":"7/8/2016","Units Sold":"8956","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1842249.20","Total Cost":"1048837.16","Total Profit":"793412.04"},{"Region":"Europe","Country":"Denmark","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"12/23/2011","Order ID":"195155656","Ship Date":"2/6/2012","Units Sold":"9750","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"2005575.00","Total Cost":"1141822.50","Total Profit":"863752.50"},{"Region":"Asia","Country":"Laos","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/25/2010","Order ID":"721517932","Ship Date":"8/22/2010","Units Sold":"2045","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1366612.15","Total Cost":"1027694.30","Total Profit":"338917.85"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/25/2016","Order ID":"283239400","Ship Date":"5/2/2016","Units Sold":"5687","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"269848.15","Total Cost":"180789.73","Total Profit":"89058.42"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"6/8/2015","Order ID":"649118888","Ship Date":"6/21/2015","Units Sold":"7559","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"358674.55","Total Cost":"240300.61","Total Profit":"118373.94"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"5/2/2010","Order ID":"508267724","Ship Date":"6/9/2010","Units Sold":"6569","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2771395.41","Total Cost":"2395648.61","Total Profit":"375746.80"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"11/8/2015","Order ID":"420109736","Ship Date":"11/22/2015","Units Sold":"8662","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"707945.26","Total Cost":"490875.54","Total Profit":"217069.72"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"1/11/2010","Order ID":"564381253","Ship Date":"2/18/2010","Units Sold":"1809","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"85837.05","Total Cost":"57508.11","Total Profit":"28328.94"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"8/16/2013","Order ID":"291131103","Ship Date":"9/25/2013","Units Sold":"1018","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"9497.94","Total Cost":"7044.56","Total Profit":"2453.38"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"8/2/2010","Order ID":"370720613","Ship Date":"8/21/2010","Units Sold":"3322","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"683335.40","Total Cost":"389039.42","Total Profit":"294295.98"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"6/11/2012","Order ID":"743823611","Ship Date":"6/20/2012","Units Sold":"2791","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"574108.70","Total Cost":"326854.01","Total Profit":"247254.69"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/23/2016","Order ID":"971426427","Ship Date":"8/31/2016","Units Sold":"5522","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"451313.06","Total Cost":"312931.74","Total Profit":"138381.32"},{"Region":"Asia","Country":"Taiwan","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"5/3/2010","Order ID":"684827888","Ship Date":"5/7/2010","Units Sold":"4645","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2030794.00","Total Cost":"1223167.85","Total Profit":"807626.15"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"1/9/2012","Order ID":"935639321","Ship Date":"2/24/2012","Units Sold":"5322","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1358600.16","Total Cost":"848433.24","Total Profit":"510166.92"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"10/11/2014","Order ID":"145784556","Ship Date":"10/31/2014","Units Sold":"9745","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1501314.70","Total Cost":"886112.85","Total Profit":"615201.85"},{"Region":"Asia","Country":"Maldives","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/23/2012","Order ID":"857499921","Ship Date":"10/22/2012","Units Sold":"2137","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"19938.21","Total Cost":"14788.04","Total Profit":"5150.17"},{"Region":"Europe","Country":"Moldova ","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/7/2012","Order ID":"283334243","Ship Date":"6/20/2012","Units Sold":"3754","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"958321.12","Total Cost":"598462.68","Total Profit":"359858.44"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/8/2013","Order ID":"656148850","Ship Date":"1/2/2014","Units Sold":"7881","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5132186.01","Total Cost":"4137209.76","Total Profit":"994976.25"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"7/27/2014","Order ID":"679117572","Ship Date":"7/31/2014","Units Sold":"4836","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"395246.28","Total Cost":"274056.12","Total Profit":"121190.16"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"9/20/2012","Order ID":"475726735","Ship Date":"9/27/2012","Units Sold":"6967","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1433111.90","Total Cost":"815905.37","Total Profit":"617206.53"},{"Region":"Europe","Country":"Vatican City","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"8/19/2011","Order ID":"239775168","Ship Date":"9/13/2011","Units Sold":"3656","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"933303.68","Total Cost":"582839.52","Total Profit":"350464.16"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"8/13/2015","Order ID":"685374200","Ship Date":"8/28/2015","Units Sold":"6311","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4217451.97","Total Cost":"3171529.94","Total Profit":"1045922.03"},{"Region":"Europe","Country":"Romania","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"2/9/2011","Order ID":"796947658","Ship Date":"3/2/2011","Units Sold":"3377","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"862080.56","Total Cost":"538361.34","Total Profit":"323719.22"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"11/28/2015","Order ID":"979231870","Ship Date":"1/17/2016","Units Sold":"5326","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"820523.56","Total Cost":"484293.18","Total Profit":"336230.38"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"10/19/2014","Order ID":"807275664","Ship Date":"12/7/2014","Units Sold":"9663","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"90155.79","Total Cost":"66867.96","Total Profit":"23287.83"},{"Region":"Asia","Country":"Japan","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"5/7/2016","Order ID":"376440370","Ship Date":"6/1/2016","Units Sold":"5926","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"281188.70","Total Cost":"188387.54","Total Profit":"92801.16"},{"Region":"Asia","Country":"Bhutan","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/4/2011","Order ID":"752399814","Ship Date":"5/1/2011","Units Sold":"680","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"32266.00","Total Cost":"21617.20","Total Profit":"10648.80"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/3/2014","Order ID":"821140325","Ship Date":"1/18/2014","Units Sold":"2524","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1103492.80","Total Cost":"664644.92","Total Profit":"438847.88"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"8/24/2013","Order ID":"438960731","Ship Date":"10/3/2013","Units Sold":"7090","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1458413.00","Total Cost":"830309.90","Total Profit":"628103.10"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/5/2015","Order ID":"882472360","Ship Date":"6/15/2015","Units Sold":"2037","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1326514.77","Total Cost":"1069343.52","Total Profit":"257171.25"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"4/23/2014","Order ID":"798599040","Ship Date":"5/23/2014","Units Sold":"2057","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1339538.97","Total Cost":"1079842.72","Total Profit":"259696.25"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/20/2013","Order ID":"254577100","Ship Date":"12/1/2013","Units Sold":"3876","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"591400.08","Total Cost":"377677.44","Total Profit":"213722.64"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/16/2015","Order ID":"287955367","Ship Date":"1/22/2015","Units Sold":"1247","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"101917.31","Total Cost":"70667.49","Total Profit":"31249.82"},{"Region":"North America","Country":"Greenland","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"2/21/2012","Order ID":"656595170","Ship Date":"3/23/2012","Units Sold":"9957","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1533975.42","Total Cost":"905390.01","Total Profit":"628585.41"},{"Region":"Europe","Country":"Latvia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/23/2011","Order ID":"288670337","Ship Date":"1/31/2012","Units Sold":"2822","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"430580.76","Total Cost":"274975.68","Total Profit":"155605.08"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/31/2014","Order ID":"432667195","Ship Date":"12/16/2014","Units Sold":"4693","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"383558.89","Total Cost":"265952.31","Total Profit":"117606.58"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"9/13/2010","Order ID":"607384574","Ship Date":"9/21/2010","Units Sold":"7448","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3256265.60","Total Cost":"1961281.84","Total Profit":"1294983.76"},{"Region":"North America","Country":"Greenland","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/9/2013","Order ID":"851933801","Ship Date":"6/23/2013","Units Sold":"4998","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"237155.10","Total Cost":"158886.42","Total Profit":"78268.68"},{"Region":"Asia","Country":"South Korea","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"2/15/2011","Order ID":"375738704","Ship Date":"2/25/2011","Units Sold":"8287","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1276695.22","Total Cost":"753536.91","Total Profit":"523158.31"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"2/19/2016","Order ID":"708535611","Ship Date":"3/17/2016","Units Sold":"287","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"23456.51","Total Cost":"16264.29","Total Profit":"7192.22"},{"Region":"Asia","Country":"India","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/21/2015","Order ID":"750373351","Ship Date":"1/22/2015","Units Sold":"1004","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"47639.80","Total Cost":"31917.16","Total Profit":"15722.64"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"10/12/2010","Order ID":"821613252","Ship Date":"10/19/2010","Units Sold":"2474","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1611093.54","Total Cost":"1298751.04","Total Profit":"312342.50"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"1/17/2011","Order ID":"412929141","Ship Date":"1/19/2011","Units Sold":"3764","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1645620.80","Total Cost":"991174.12","Total Profit":"654446.68"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"1/30/2017","Order ID":"435307347","Ship Date":"2/10/2017","Units Sold":"5972","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1228440.40","Total Cost":"699380.92","Total Profit":"529059.48"},{"Region":"Europe","Country":"Hungary","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/3/2012","Order ID":"970046699","Ship Date":"5/18/2012","Units Sold":"7230","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1487211.00","Total Cost":"846705.30","Total Profit":"640505.70"},{"Region":"Asia","Country":"Maldives","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"4/15/2011","Order ID":"818758523","Ship Date":"5/13/2011","Units Sold":"7696","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1964634.88","Total Cost":"1226896.32","Total Profit":"737738.56"},{"Region":"Europe","Country":"France","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"1/10/2011","Order ID":"653366649","Ship Date":"2/3/2011","Units Sold":"4565","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1925927.85","Total Cost":"1664809.85","Total Profit":"261118.00"},{"Region":"Europe","Country":"Vatican City","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/19/2016","Order ID":"766107404","Ship Date":"12/27/2016","Units Sold":"7060","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"65869.80","Total Cost":"48855.20","Total Profit":"17014.60"},{"Region":"Europe","Country":"Finland","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/25/2016","Order ID":"619529616","Ship Date":"11/10/2016","Units Sold":"1436","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"68138.20","Total Cost":"45650.44","Total Profit":"22487.76"},{"Region":"Europe","Country":"Malta","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"2/28/2014","Order ID":"196494615","Ship Date":"3/14/2014","Units Sold":"5978","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"912123.24","Total Cost":"582496.32","Total Profit":"329626.92"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/12/2010","Order ID":"450176227","Ship Date":"6/12/2010","Units Sold":"6004","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"490706.92","Total Cost":"340246.68","Total Profit":"150460.24"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"1/30/2015","Order ID":"154060781","Ship Date":"2/23/2015","Units Sold":"8863","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5771674.23","Total Cost":"4652720.48","Total Profit":"1118953.75"},{"Region":"Europe","Country":"Georgia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/20/2012","Order ID":"851947104","Ship Date":"8/31/2012","Units Sold":"8935","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"730257.55","Total Cost":"506346.45","Total Profit":"223911.10"},{"Region":"Asia","Country":"Indonesia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"2/14/2011","Order ID":"107946527","Ship Date":"3/11/2011","Units Sold":"2631","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"24547.23","Total Cost":"18206.52","Total Profit":"6340.71"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/27/2015","Order ID":"956482875","Ship Date":"12/30/2015","Units Sold":"3393","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2267440.11","Total Cost":"1705118.22","Total Profit":"562321.89"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"9/17/2010","Order ID":"652292478","Ship Date":"10/5/2010","Units Sold":"6694","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4473399.38","Total Cost":"3364002.76","Total Profit":"1109396.62"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"5/26/2014","Order ID":"120424163","Ship Date":"5/26/2014","Units Sold":"5041","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"776616.46","Total Cost":"458378.13","Total Profit":"318238.33"},{"Region":"Europe","Country":"Croatia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/8/2016","Order ID":"806239259","Ship Date":"8/24/2016","Units Sold":"2968","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1932791.28","Total Cost":"1558081.28","Total Profit":"374710.00"},{"Region":"Europe","Country":"Austria","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"10/23/2011","Order ID":"625411593","Ship Date":"11/29/2011","Units Sold":"2043","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"96940.35","Total Cost":"64946.97","Total Profit":"31993.38"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"9/20/2010","Order ID":"713927495","Ship Date":"11/6/2010","Units Sold":"5866","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"903715.96","Total Cost":"533395.38","Total Profit":"370320.58"},{"Region":"Asia","Country":"Philippines","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/25/2013","Order ID":"478085792","Ship Date":"10/16/2013","Units Sold":"5065","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3298378.65","Total Cost":"2658922.40","Total Profit":"639456.25"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"10/1/2014","Order ID":"744497811","Ship Date":"11/17/2014","Units Sold":"2302","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"188142.46","Total Cost":"130454.34","Total Profit":"57688.12"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"7/5/2012","Order ID":"610087382","Ship Date":"8/24/2012","Units Sold":"7269","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"594095.37","Total Cost":"411934.23","Total Profit":"182161.14"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/26/2014","Order ID":"592090833","Ship Date":"6/13/2014","Units Sold":"1690","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"712994.10","Total Cost":"616326.10","Total Profit":"96668.00"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"7/6/2017","Order ID":"378056991","Ship Date":"8/5/2017","Units Sold":"4320","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"204984.00","Total Cost":"137332.80","Total Profit":"67651.20"},{"Region":"Europe","Country":"Sweden","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/4/2012","Order ID":"175847184","Ship Date":"6/29/2012","Units Sold":"5944","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"282042.80","Total Cost":"188959.76","Total Profit":"93083.04"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"4/17/2017","Order ID":"263635241","Ship Date":"5/18/2017","Units Sold":"4381","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"668452.98","Total Cost":"426884.64","Total Profit":"241568.34"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/19/2013","Order ID":"539907491","Ship Date":"7/31/2013","Units Sold":"9479","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3999095.31","Total Cost":"3456896.51","Total Profit":"542198.80"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/11/2017","Order ID":"973462760","Ship Date":"7/17/2017","Units Sold":"8118","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"75740.94","Total Cost":"56176.56","Total Profit":"19564.38"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/28/2016","Order ID":"253412377","Ship Date":"7/5/2016","Units Sold":"9209","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6154098.43","Total Cost":"4627890.86","Total Profit":"1526207.57"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"4/21/2010","Order ID":"739180171","Ship Date":"5/29/2010","Units Sold":"8694","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"412530.30","Total Cost":"276382.26","Total Profit":"136148.04"},{"Region":"Europe","Country":"Poland","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"10/13/2014","Order ID":"810502469","Ship Date":"11/5/2014","Units Sold":"4547","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"371626.31","Total Cost":"257678.49","Total Profit":"113947.82"},{"Region":"Asia","Country":"Vietnam","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/27/2012","Order ID":"717428100","Ship Date":"12/12/2012","Units Sold":"1772","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1153944.12","Total Cost":"930229.12","Total Profit":"223715.00"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"2/4/2011","Order ID":"330318391","Ship Date":"2/6/2011","Units Sold":"7407","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1523619.90","Total Cost":"867433.77","Total Profit":"656186.13"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/20/2013","Order ID":"489847171","Ship Date":"8/17/2013","Units Sold":"5518","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1135052.60","Total Cost":"646212.98","Total Profit":"488839.62"},{"Region":"Asia","Country":"Vietnam","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/25/2010","Order ID":"757000768","Ship Date":"2/15/2010","Units Sold":"2204","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"336286.32","Total Cost":"214757.76","Total Profit":"121528.56"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"7/5/2010","Order ID":"763078010","Ship Date":"7/23/2010","Units Sold":"595","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"90785.10","Total Cost":"57976.80","Total Profit":"32808.30"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"9/1/2010","Order ID":"659690225","Ship Date":"9/19/2010","Units Sold":"5852","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"901559.12","Total Cost":"532122.36","Total Profit":"369436.76"},{"Region":"Europe","Country":"Austria","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/8/2011","Order ID":"668761241","Ship Date":"3/17/2011","Units Sold":"167","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"70455.63","Total Cost":"60903.23","Total Profit":"9552.40"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/2/2013","Order ID":"632527387","Ship Date":"11/15/2013","Units Sold":"7765","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"634633.45","Total Cost":"440042.55","Total Profit":"194590.90"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/15/2017","Order ID":"463537490","Ship Date":"5/25/2017","Units Sold":"9899","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6615204.73","Total Cost":"4974643.46","Total Profit":"1640561.27"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"7/3/2014","Order ID":"594652879","Ship Date":"7/14/2014","Units Sold":"9856","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"805530.88","Total Cost":"558539.52","Total Profit":"246991.36"},{"Region":"Asia","Country":"Brunei","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"1/20/2010","Order ID":"629047381","Ship Date":"3/1/2010","Units Sold":"7954","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3355713.06","Total Cost":"2900744.26","Total Profit":"454968.80"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"7/24/2017","Order ID":"690207326","Ship Date":"9/10/2017","Units Sold":"6541","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1669786.48","Total Cost":"1042766.22","Total Profit":"627020.26"},{"Region":"Europe","Country":"Montenegro","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/18/2017","Order ID":"971931540","Ship Date":"8/17/2017","Units Sold":"4996","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1275378.88","Total Cost":"796462.32","Total Profit":"478916.56"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/26/2014","Order ID":"388331353","Ship Date":"6/7/2014","Units Sold":"4732","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2068830.40","Total Cost":"1246077.56","Total Profit":"822752.84"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/13/2017","Order ID":"623830592","Ship Date":"2/8/2017","Units Sold":"4190","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"861883.00","Total Cost":"490690.90","Total Profit":"371192.10"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"3/16/2013","Order ID":"283165585","Ship Date":"4/28/2013","Units Sold":"3844","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"592206.64","Total Cost":"349534.92","Total Profit":"242671.72"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"4/30/2010","Order ID":"741385161","Ship Date":"6/5/2010","Units Sold":"1199","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"11186.67","Total Cost":"8297.08","Total Profit":"2889.59"},{"Region":"Europe","Country":"Germany","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"12/22/2016","Order ID":"293850648","Ship Date":"1/6/2017","Units Sold":"5792","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"54039.36","Total Cost":"40080.64","Total Profit":"13958.72"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"4/8/2016","Order ID":"906235873","Ship Date":"5/6/2016","Units Sold":"4188","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"457664.64","Total Cost":"150097.92","Total Profit":"307566.72"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"2/14/2015","Order ID":"564527165","Ship Date":"3/21/2015","Units Sold":"4988","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"545088.64","Total Cost":"178769.92","Total Profit":"366318.72"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/26/2010","Order ID":"925023353","Ship Date":"4/2/2010","Units Sold":"3821","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1612041.69","Total Cost":"1393480.49","Total Profit":"218561.20"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/10/2014","Order ID":"564335763","Ship Date":"4/20/2014","Units Sold":"8348","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1717183.60","Total Cost":"977634.28","Total Profit":"739549.32"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"8/13/2014","Order ID":"829388225","Ship Date":"8/14/2014","Units Sold":"3261","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2123595.81","Total Cost":"1711894.56","Total Profit":"411701.25"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"1/12/2015","Order ID":"887417066","Ship Date":"2/14/2015","Units Sold":"5285","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2229688.65","Total Cost":"1927386.65","Total Profit":"302302.00"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/24/2016","Order ID":"875971114","Ship Date":"5/30/2016","Units Sold":"8174","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1681391.80","Total Cost":"957257.14","Total Profit":"724134.66"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/28/2012","Order ID":"552911698","Ship Date":"11/22/2012","Units Sold":"7713","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1176849.54","Total Cost":"751554.72","Total Profit":"425294.82"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"5/15/2011","Order ID":"646412646","Ship Date":"5/20/2011","Units Sold":"6722","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"549389.06","Total Cost":"380935.74","Total Profit":"168453.32"},{"Region":"Europe","Country":"Norway","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"3/21/2012","Order ID":"604960286","Ship Date":"5/4/2012","Units Sold":"47","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"5136.16","Total Cost":"1684.48","Total Profit":"3451.68"},{"Region":"Asia","Country":"Mongolia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/11/2012","Order ID":"847353446","Ship Date":"1/25/2013","Units Sold":"9570","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1968549.00","Total Cost":"1120742.70","Total Profit":"847806.30"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"3/5/2012","Order ID":"512703454","Ship Date":"4/1/2012","Units Sold":"9200","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1005376.00","Total Cost":"329728.00","Total Profit":"675648.00"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/21/2013","Order ID":"610434138","Ship Date":"7/8/2013","Units Sold":"9882","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"92199.06","Total Cost":"68383.44","Total Profit":"23815.62"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"7/20/2013","Order ID":"870281827","Ship Date":"8/15/2013","Units Sold":"4587","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"699884.46","Total Cost":"446957.28","Total Profit":"252927.18"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"6/29/2014","Order ID":"192295348","Ship Date":"7/20/2014","Units Sold":"3322","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"363028.16","Total Cost":"119060.48","Total Profit":"243967.68"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/11/2011","Order ID":"696836030","Ship Date":"7/15/2011","Units Sold":"8121","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2073128.88","Total Cost":"1294649.82","Total Profit":"778479.06"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"5/22/2012","Order ID":"974577701","Ship Date":"6/27/2012","Units Sold":"8054","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"880141.12","Total Cost":"288655.36","Total Profit":"591485.76"},{"Region":"Europe","Country":"Albania","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/28/2010","Order ID":"136506688","Ship Date":"11/5/2010","Units Sold":"4217","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"200096.65","Total Cost":"134058.43","Total Profit":"66038.22"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/1/2012","Order ID":"963921821","Ship Date":"9/23/2012","Units Sold":"4742","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3088037.82","Total Cost":"2489360.32","Total Profit":"598677.50"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/2/2010","Order ID":"458434426","Ship Date":"3/16/2010","Units Sold":"9789","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"464488.05","Total Cost":"311192.31","Total Profit":"153295.74"},{"Region":"Europe","Country":"Spain","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/29/2015","Order ID":"191968333","Ship Date":"4/25/2015","Units Sold":"6551","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1009247.06","Total Cost":"595682.43","Total Profit":"413564.63"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/28/2010","Order ID":"456759870","Ship Date":"10/3/2010","Units Sold":"4250","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1858100.00","Total Cost":"1119152.50","Total Profit":"738947.50"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/3/2014","Order ID":"715357863","Ship Date":"5/9/2014","Units Sold":"9143","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3997319.60","Total Cost":"2407626.19","Total Profit":"1589693.41"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/19/2014","Order ID":"950623643","Ship Date":"1/3/2015","Units Sold":"9516","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"777742.68","Total Cost":"539271.72","Total Profit":"238470.96"},{"Region":"Europe","Country":"Sweden","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/27/2013","Order ID":"315731036","Ship Date":"9/26/2013","Units Sold":"685","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"140904.50","Total Cost":"80220.35","Total Profit":"60684.15"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/2/2012","Order ID":"284166371","Ship Date":"8/31/2012","Units Sold":"9999","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1525647.42","Total Cost":"974302.56","Total Profit":"551344.86"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/20/2011","Order ID":"599728477","Ship Date":"4/19/2011","Units Sold":"1838","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"17148.54","Total Cost":"12718.96","Total Profit":"4429.58"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"1/22/2010","Order ID":"626528680","Ship Date":"2/6/2010","Units Sold":"2614","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"402712.84","Total Cost":"237691.02","Total Profit":"165021.82"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/1/2014","Order ID":"698990809","Ship Date":"7/3/2014","Units Sold":"5768","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"888618.08","Total Cost":"524484.24","Total Profit":"364133.84"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"10/26/2015","Order ID":"771851193","Ship Date":"11/19/2015","Units Sold":"6775","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"63210.75","Total Cost":"46883.00","Total Profit":"16327.75"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"3/2/2010","Order ID":"870158660","Ship Date":"3/4/2010","Units Sold":"8139","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2077723.92","Total Cost":"1297519.38","Total Profit":"780204.54"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"6/19/2017","Order ID":"639274537","Ship Date":"7/10/2017","Units Sold":"4396","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"677247.76","Total Cost":"399728.28","Total Profit":"277519.48"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"1/21/2017","Order ID":"694872653","Ship Date":"1/22/2017","Units Sold":"7114","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1095982.84","Total Cost":"646876.02","Total Profit":"449106.82"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"1/27/2012","Order ID":"372939336","Ship Date":"2/26/2012","Units Sold":"9892","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6441769.32","Total Cost":"5192904.32","Total Profit":"1248865.00"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"6/24/2010","Order ID":"879773414","Ship Date":"7/25/2010","Units Sold":"3358","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2186763.18","Total Cost":"1762815.68","Total Profit":"423947.50"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"9/30/2013","Order ID":"341986215","Ship Date":"11/10/2013","Units Sold":"175","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"26701.50","Total Cost":"17052.00","Total Profit":"9649.50"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"1/20/2013","Order ID":"556501567","Ship Date":"2/25/2013","Units Sold":"35","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"15302.00","Total Cost":"9216.55","Total Profit":"6085.45"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"10/12/2015","Order ID":"240555799","Ship Date":"10/15/2015","Units Sold":"4661","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"509354.08","Total Cost":"167050.24","Total Profit":"342303.84"},{"Region":"North America","Country":"Greenland","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"6/12/2011","Order ID":"881697738","Ship Date":"7/5/2011","Units Sold":"2809","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"133287.05","Total Cost":"89298.11","Total Profit":"43988.94"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"5/6/2013","Order ID":"887788712","Ship Date":"6/8/2013","Units Sold":"5264","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1343793.92","Total Cost":"839186.88","Total Profit":"504607.04"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"12/2/2016","Order ID":"537002551","Ship Date":"12/14/2016","Units Sold":"9843","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"2024705.10","Total Cost":"1152713.73","Total Profit":"871991.37"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"2/2/2011","Order ID":"627825582","Ship Date":"2/5/2011","Units Sold":"6396","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"985367.76","Total Cost":"581588.28","Total Profit":"403779.48"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"5/9/2012","Order ID":"229056632","Ship Date":"6/14/2012","Units Sold":"1802","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1204222.54","Total Cost":"905577.08","Total Profit":"298645.46"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"7/20/2015","Order ID":"729807031","Ship Date":"7/24/2015","Units Sold":"4973","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1022946.10","Total Cost":"582388.03","Total Profit":"440558.07"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/19/2012","Order ID":"889500606","Ship Date":"11/28/2012","Units Sold":"1851","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1205389.71","Total Cost":"971700.96","Total Profit":"233688.75"},{"Region":"Europe","Country":"Austria","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/8/2012","Order ID":"887873685","Ship Date":"7/15/2012","Units Sold":"409","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"266344.89","Total Cost":"214708.64","Total Profit":"51636.25"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"6/29/2012","Order ID":"974975097","Ship Date":"7/28/2012","Units Sold":"5652","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"862382.16","Total Cost":"550730.88","Total Profit":"311651.28"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/28/2012","Order ID":"121166169","Ship Date":"2/10/2012","Units Sold":"4617","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"43076.61","Total Cost":"31949.64","Total Profit":"11126.97"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"2/18/2015","Order ID":"967120730","Ship Date":"3/15/2015","Units Sold":"1371","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"12791.43","Total Cost":"9487.32","Total Profit":"3304.11"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/15/2011","Order ID":"373825109","Ship Date":"7/26/2011","Units Sold":"2012","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"18771.96","Total Cost":"13923.04","Total Profit":"4848.92"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"2/27/2011","Order ID":"672578132","Ship Date":"3/8/2011","Units Sold":"9670","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1056737.60","Total Cost":"346572.80","Total Profit":"710164.80"},{"Region":"Asia","Country":"Brunei","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/11/2017","Order ID":"214991128","Ship Date":"5/29/2017","Units Sold":"9507","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1450578.06","Total Cost":"926362.08","Total Profit":"524215.98"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"8/19/2015","Order ID":"122987926","Ship Date":"9/15/2015","Units Sold":"3715","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"176276.75","Total Cost":"118099.85","Total Profit":"58176.90"},{"Region":"Europe","Country":"Norway","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"4/3/2015","Order ID":"238804852","Ship Date":"5/9/2015","Units Sold":"6517","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1340546.90","Total Cost":"763205.87","Total Profit":"577341.03"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/17/2015","Order ID":"474990737","Ship Date":"4/21/2015","Units Sold":"9169","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5970944.49","Total Cost":"4813358.24","Total Profit":"1157586.25"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"7/18/2015","Order ID":"364406907","Ship Date":"8/14/2015","Units Sold":"4957","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"235209.65","Total Cost":"157583.03","Total Profit":"77626.62"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"8/3/2013","Order ID":"410227191","Ship Date":"8/5/2013","Units Sold":"4197","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"343020.81","Total Cost":"237843.99","Total Profit":"105176.82"},{"Region":"North America","Country":"Mexico","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"4/21/2015","Order ID":"735937917","Ship Date":"5/8/2015","Units Sold":"9239","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1900462.30","Total Cost":"1081979.29","Total Profit":"818483.01"},{"Region":"Europe","Country":"Lithuania","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"5/11/2016","Order ID":"635337913","Ship Date":"5/23/2016","Units Sold":"9462","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1457715.72","Total Cost":"860379.66","Total Profit":"597336.06"},{"Region":"North America","Country":"United States of America","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/30/2013","Order ID":"822538506","Ship Date":"8/15/2013","Units Sold":"6278","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"957897.24","Total Cost":"611728.32","Total Profit":"346168.92"},{"Region":"Asia","Country":"Japan","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/12/2015","Order ID":"281963527","Ship Date":"11/22/2015","Units Sold":"8128","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5293034.88","Total Cost":"4266874.88","Total Profit":"1026160.00"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/23/2010","Order ID":"318349301","Ship Date":"1/5/2011","Units Sold":"5488","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3573840.48","Total Cost":"2880980.48","Total Profit":"692860.00"},{"Region":"Europe","Country":"Denmark","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"11/27/2013","Order ID":"506744658","Ship Date":"11/28/2013","Units Sold":"5860","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2472275.40","Total Cost":"2137083.40","Total Profit":"335192.00"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/2/2010","Order ID":"942510926","Ship Date":"8/5/2010","Units Sold":"8783","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"959806.24","Total Cost":"314782.72","Total Profit":"645023.52"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"3/7/2014","Order ID":"891321933","Ship Date":"3/13/2014","Units Sold":"822","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"549317.94","Total Cost":"413087.88","Total Profit":"136230.06"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"9/16/2016","Order ID":"139164006","Ship Date":"10/18/2016","Units Sold":"577","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"375748.17","Total Cost":"302901.92","Total Profit":"72846.25"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/16/2014","Order ID":"342335975","Ship Date":"9/24/2014","Units Sold":"3677","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1607584.40","Total Cost":"968264.41","Total Profit":"639319.99"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"6/4/2013","Order ID":"977449166","Ship Date":"7/22/2013","Units Sold":"7784","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"369350.80","Total Cost":"247453.36","Total Profit":"121897.44"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"5/25/2015","Order ID":"691427409","Ship Date":"5/26/2015","Units Sold":"7590","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5072169.30","Total Cost":"3814278.60","Total Profit":"1257890.70"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/24/2016","Order ID":"451507031","Ship Date":"9/25/2016","Units Sold":"9819","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"91611.27","Total Cost":"67947.48","Total Profit":"23663.79"},{"Region":"Europe","Country":"Ireland","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/25/2010","Order ID":"395236861","Ship Date":"8/6/2010","Units Sold":"8225","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5496520.75","Total Cost":"4133391.50","Total Profit":"1363129.25"},{"Region":"Asia","Country":"Bhutan","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/26/2013","Order ID":"280478227","Ship Date":"2/12/2014","Units Sold":"8595","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5597149.95","Total Cost":"4512031.20","Total Profit":"1085118.75"},{"Region":"Europe","Country":"Hungary","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/26/2011","Order ID":"835404956","Ship Date":"3/26/2011","Units Sold":"3746","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1580399.94","Total Cost":"1366128.74","Total Profit":"214271.20"},{"Region":"Asia","Country":"Thailand","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/29/2010","Order ID":"608503377","Ship Date":"2/18/2010","Units Sold":"8526","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3727567.20","Total Cost":"2245151.58","Total Profit":"1482415.62"},{"Region":"Europe","Country":"Cyprus","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"8/31/2015","Order ID":"918572318","Ship Date":"9/9/2015","Units Sold":"4816","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"990651.20","Total Cost":"564001.76","Total Profit":"426649.44"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"6/21/2011","Order ID":"904723107","Ship Date":"7/30/2011","Units Sold":"6527","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4361798.29","Total Cost":"3280078.58","Total Profit":"1081719.71"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"2/13/2016","Order ID":"676379573","Ship Date":"2/26/2016","Units Sold":"4601","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"708830.06","Total Cost":"418368.93","Total Profit":"290461.13"},{"Region":"Europe","Country":"Georgia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"6/10/2011","Order ID":"863278043","Ship Date":"6/14/2011","Units Sold":"2012","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"18771.96","Total Cost":"13923.04","Total Profit":"4848.92"},{"Region":"Asia","Country":"Malaysia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"5/27/2014","Order ID":"365467345","Ship Date":"6/15/2014","Units Sold":"8764","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"957729.92","Total Cost":"314101.76","Total Profit":"643628.16"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"9/28/2012","Order ID":"403308808","Ship Date":"10/28/2012","Units Sold":"6894","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1051886.52","Total Cost":"671751.36","Total Profit":"380135.16"},{"Region":"Europe","Country":"San Marino","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/16/2014","Order ID":"467476260","Ship Date":"5/2/2014","Units Sold":"5469","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"446981.37","Total Cost":"309928.23","Total Profit":"137053.14"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/12/2012","Order ID":"568956029","Ship Date":"7/25/2012","Units Sold":"5587","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"265103.15","Total Cost":"177610.73","Total Profit":"87492.42"},{"Region":"Asia","Country":"North Korea","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/21/2013","Order ID":"789046943","Ship Date":"8/18/2013","Units Sold":"5380","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"820880.40","Total Cost":"524227.20","Total Profit":"296653.20"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"2/3/2017","Order ID":"829360330","Ship Date":"3/4/2017","Units Sold":"5007","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1278186.96","Total Cost":"798215.94","Total Profit":"479971.02"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/9/2012","Order ID":"461820018","Ship Date":"5/17/2012","Units Sold":"1661","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"255893.66","Total Cost":"151034.73","Total Profit":"104858.93"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/23/2012","Order ID":"878662335","Ship Date":"7/5/2012","Units Sold":"4566","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"42600.78","Total Cost":"31596.72","Total Profit":"11004.06"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/30/2012","Order ID":"642436110","Ship Date":"7/14/2012","Units Sold":"9976","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"815338.48","Total Cost":"565339.92","Total Profit":"249998.56"},{"Region":"Europe","Country":"Malta","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"3/29/2016","Order ID":"636002671","Ship Date":"5/13/2016","Units Sold":"6179","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"505009.67","Total Cost":"350163.93","Total Profit":"154845.74"},{"Region":"Europe","Country":"Austria","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/4/2017","Order ID":"912535846","Ship Date":"6/11/2017","Units Sold":"8490","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1295404.20","Total Cost":"827265.60","Total Profit":"468138.60"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/26/2010","Order ID":"245521962","Ship Date":"8/7/2010","Units Sold":"4259","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1796829.51","Total Cost":"1553214.71","Total Profit":"243614.80"},{"Region":"Europe","Country":"Belarus","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"4/7/2010","Order ID":"178759849","Ship Date":"5/4/2010","Units Sold":"7866","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1618036.20","Total Cost":"921187.26","Total Profit":"696848.94"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"1/17/2017","Order ID":"976360833","Ship Date":"2/19/2017","Units Sold":"5722","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"467659.06","Total Cost":"324265.74","Total Profit":"143393.32"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/25/2013","Order ID":"272748744","Ship Date":"9/13/2013","Units Sold":"1269","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"11839.77","Total Cost":"8781.48","Total Profit":"3058.29"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"10/29/2013","Order ID":"722659909","Ship Date":"11/7/2013","Units Sold":"9981","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"473598.45","Total Cost":"317295.99","Total Profit":"156302.46"},{"Region":"Europe","Country":"Iceland","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/23/2013","Order ID":"551143157","Ship Date":"1/24/2014","Units Sold":"4363","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"476788.64","Total Cost":"156369.92","Total Profit":"320418.72"},{"Region":"Asia","Country":"Mongolia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/25/2011","Order ID":"303559815","Ship Date":"3/28/2011","Units Sold":"8950","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5828329.50","Total Cost":"4698392.00","Total Profit":"1129937.50"},{"Region":"Asia","Country":"South Korea","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"3/17/2015","Order ID":"595583713","Ship Date":"5/1/2015","Units Sold":"5311","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"252006.95","Total Cost":"168836.69","Total Profit":"83170.26"},{"Region":"Europe","Country":"Cyprus","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"11/23/2013","Order ID":"763201177","Ship Date":"1/4/2014","Units Sold":"7043","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"769659.04","Total Cost":"252421.12","Total Profit":"517237.92"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/8/2015","Order ID":"212711036","Ship Date":"4/26/2015","Units Sold":"4777","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3192325.79","Total Cost":"2400633.58","Total Profit":"791692.21"},{"Region":"Europe","Country":"Cyprus","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"3/21/2013","Order ID":"670724618","Ship Date":"4/2/2013","Units Sold":"1174","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"10953.42","Total Cost":"8124.08","Total Profit":"2829.34"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"1/26/2014","Order ID":"334165751","Ship Date":"3/17/2014","Units Sold":"5927","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"281236.15","Total Cost":"188419.33","Total Profit":"92816.82"},{"Region":"Asia","Country":"Thailand","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"1/23/2010","Order ID":"620270764","Ship Date":"2/9/2010","Units Sold":"758","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"155920.60","Total Cost":"88769.38","Total Profit":"67151.22"},{"Region":"Europe","Country":"Slovenia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/4/2013","Order ID":"316588485","Ship Date":"7/18/2013","Units Sold":"4423","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1933735.60","Total Cost":"1164708.59","Total Profit":"769027.01"},{"Region":"Asia","Country":"Indonesia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/28/2014","Order ID":"530980241","Ship Date":"10/17/2014","Units Sold":"7708","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"71915.64","Total Cost":"53339.36","Total Profit":"18576.28"},{"Region":"Asia","Country":"China","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/8/2017","Order ID":"641619861","Ship Date":"1/29/2017","Units Sold":"8430","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"688983.90","Total Cost":"477728.10","Total Profit":"211255.80"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/4/2016","Order ID":"546993672","Ship Date":"11/17/2016","Units Sold":"6438","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"60066.54","Total Cost":"44550.96","Total Profit":"15515.58"},{"Region":"Europe","Country":"Estonia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"4/23/2015","Order ID":"215900504","Ship Date":"5/8/2015","Units Sold":"8612","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1326764.72","Total Cost":"783089.16","Total Profit":"543675.56"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/30/2015","Order ID":"137451684","Ship Date":"3/1/2015","Units Sold":"3863","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"315722.99","Total Cost":"218916.21","Total Profit":"96806.78"},{"Region":"Europe","Country":"Georgia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/9/2015","Order ID":"871071040","Ship Date":"10/28/2015","Units Sold":"8133","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1672958.10","Total Cost":"952455.63","Total Profit":"720502.47"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/25/2010","Order ID":"796494901","Ship Date":"8/23/2010","Units Sold":"9396","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6118769.16","Total Cost":"4932524.16","Total Profit":"1186245.00"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/21/2012","Order ID":"163772094","Ship Date":"10/1/2012","Units Sold":"2657","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1120961.73","Total Cost":"968981.33","Total Profit":"151980.40"},{"Region":"North America","Country":"Greenland","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/12/2013","Order ID":"643263947","Ship Date":"7/15/2013","Units Sold":"4952","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3309273.04","Total Cost":"2488578.08","Total Profit":"820694.96"},{"Region":"Europe","Country":"Norway","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"3/9/2017","Order ID":"375644290","Ship Date":"3/9/2017","Units Sold":"348","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"232557.96","Total Cost":"174883.92","Total Profit":"57674.04"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/24/2013","Order ID":"721899449","Ship Date":"7/24/2013","Units Sold":"4944","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"754355.52","Total Cost":"481743.36","Total Profit":"272612.16"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"4/12/2012","Order ID":"413328254","Ship Date":"5/11/2012","Units Sold":"1870","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"204353.60","Total Cost":"67020.80","Total Profit":"137332.80"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/12/2016","Order ID":"501542031","Ship Date":"1/29/2017","Units Sold":"6287","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2652422.43","Total Cost":"2292806.03","Total Profit":"359616.40"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/24/2012","Order ID":"308464610","Ship Date":"1/15/2013","Units Sold":"388","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"163693.32","Total Cost":"141499.72","Total Profit":"22193.60"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"3/23/2017","Order ID":"576332318","Ship Date":"3/29/2017","Units Sold":"8395","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"917405.60","Total Cost":"300876.80","Total Profit":"616528.80"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"7/9/2013","Order ID":"317693984","Ship Date":"8/16/2013","Units Sold":"1565","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1019143.65","Total Cost":"821562.40","Total Profit":"197581.25"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"1/21/2017","Order ID":"865410935","Ship Date":"2/9/2017","Units Sold":"3182","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1342453.98","Total Cost":"1160443.58","Total Profit":"182010.40"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"1/8/2010","Order ID":"922657001","Ship Date":"2/21/2010","Units Sold":"3565","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"543947.70","Total Cost":"347373.60","Total Profit":"196574.10"},{"Region":"Europe","Country":"Ukraine","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"7/8/2013","Order ID":"612918508","Ship Date":"7/22/2013","Units Sold":"5062","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"779851.72","Total Cost":"460287.66","Total Profit":"319564.06"},{"Region":"Europe","Country":"Netherlands","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/25/2015","Order ID":"129994285","Ship Date":"9/17/2015","Units Sold":"7052","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"770642.56","Total Cost":"252743.68","Total Profit":"517898.88"},{"Region":"Asia","Country":"South Korea","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/22/2013","Order ID":"187995660","Ship Date":"3/22/2013","Units Sold":"948","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"633519.96","Total Cost":"476407.92","Total Profit":"157112.04"},{"Region":"Europe","Country":"Malta","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/3/2015","Order ID":"671346461","Ship Date":"3/24/2015","Units Sold":"5192","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"246360.40","Total Cost":"165053.68","Total Profit":"81306.72"},{"Region":"Europe","Country":"Switzerland","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/17/2016","Order ID":"184783017","Ship Date":"10/29/2016","Units Sold":"256","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"27975.68","Total Cost":"9175.04","Total Profit":"18800.64"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"5/20/2010","Order ID":"103354156","Ship Date":"7/5/2010","Units Sold":"3646","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"556306.68","Total Cost":"355266.24","Total Profit":"201040.44"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/28/2012","Order ID":"522421205","Ship Date":"2/27/2012","Units Sold":"4899","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3190277.79","Total Cost":"2571779.04","Total Profit":"618498.75"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/25/2012","Order ID":"707657992","Ship Date":"8/8/2012","Units Sold":"581","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"27568.45","Total Cost":"18469.99","Total Profit":"9098.46"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"3/14/2011","Order ID":"445050847","Ship Date":"3/21/2011","Units Sold":"9291","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1431371.46","Total Cost":"844830.63","Total Profit":"586540.83"},{"Region":"Asia","Country":"China","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"2/28/2012","Order ID":"490898597","Ship Date":"3/9/2012","Units Sold":"6658","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1699654.24","Total Cost":"1061418.36","Total Profit":"638235.88"},{"Region":"Central America and the Caribbean","Country":"Saint Lucia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"2/18/2013","Order ID":"321812570","Ship Date":"3/24/2013","Units Sold":"346","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"16417.70","Total Cost":"10999.34","Total Profit":"5418.36"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"8/26/2016","Order ID":"384716594","Ship Date":"9/24/2016","Units Sold":"5044","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1287632.32","Total Cost":"804114.48","Total Profit":"483517.84"},{"Region":"Europe","Country":"Andorra","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/2/2011","Order ID":"746846997","Ship Date":"3/11/2011","Units Sold":"7478","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"69769.74","Total Cost":"51747.76","Total Profit":"18021.98"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"9/12/2012","Order ID":"645752608","Ship Date":"10/9/2012","Units Sold":"1402","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"912996.42","Total Cost":"735993.92","Total Profit":"177002.50"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"8/14/2015","Order ID":"739294755","Ship Date":"10/1/2015","Units Sold":"2602","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"24276.66","Total Cost":"18005.84","Total Profit":"6270.82"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"7/27/2011","Order ID":"855647265","Ship Date":"8/20/2011","Units Sold":"3895","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"318338.35","Total Cost":"220729.65","Total Profit":"97608.70"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"12/26/2015","Order ID":"443296468","Ship Date":"1/19/2016","Units Sold":"131","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"87543.37","Total Cost":"65832.74","Total Profit":"21710.63"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/14/2011","Order ID":"821041190","Ship Date":"4/16/2011","Units Sold":"3188","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"491143.28","Total Cost":"289884.84","Total Profit":"201258.44"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/28/2011","Order ID":"227992761","Ship Date":"4/25/2011","Units Sold":"6979","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1064855.82","Total Cost":"680033.76","Total Profit":"384822.06"},{"Region":"Sub-Saharan Africa","Country":"Mali","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/3/2011","Order ID":"573575007","Ship Date":"10/10/2011","Units Sold":"2446","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1634588.42","Total Cost":"1229212.84","Total Profit":"405375.58"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"5/17/2017","Order ID":"687524259","Ship Date":"5/27/2017","Units Sold":"2561","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"121519.45","Total Cost":"81414.19","Total Profit":"40105.26"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/13/2014","Order ID":"369889342","Ship Date":"11/27/2014","Units Sold":"7331","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"347855.95","Total Cost":"233052.49","Total Profit":"114803.46"},{"Region":"Asia","Country":"India","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"6/8/2014","Order ID":"841031587","Ship Date":"7/12/2014","Units Sold":"8791","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"960680.48","Total Cost":"315069.44","Total Profit":"645611.04"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/30/2016","Order ID":"691624820","Ship Date":"8/5/2016","Units Sold":"6008","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"491033.84","Total Cost":"340473.36","Total Profit":"150560.48"},{"Region":"Europe","Country":"Norway","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/17/2014","Order ID":"832655370","Ship Date":"9/11/2014","Units Sold":"82","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"16867.40","Total Cost":"9603.02","Total Profit":"7264.38"},{"Region":"Europe","Country":"Serbia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/29/2014","Order ID":"445422065","Ship Date":"12/11/2014","Units Sold":"9142","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3856918.38","Total Cost":"3333995.98","Total Profit":"522922.40"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"12/2/2016","Order ID":"131536233","Ship Date":"12/24/2016","Units Sold":"3349","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"515946.94","Total Cost":"304524.57","Total Profit":"211422.37"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"7/6/2017","Order ID":"562921702","Ship Date":"7/24/2017","Units Sold":"9896","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4175023.44","Total Cost":"3608972.24","Total Profit":"566051.20"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/8/2014","Order ID":"231814801","Ship Date":"9/4/2014","Units Sold":"8006","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3377651.34","Total Cost":"2919708.14","Total Profit":"457943.20"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/16/2010","Order ID":"400764358","Ship Date":"12/28/2010","Units Sold":"3934","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1719944.80","Total Cost":"1035940.22","Total Profit":"684004.58"},{"Region":"Asia","Country":"Cambodia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/2/2010","Order ID":"152631700","Ship Date":"6/3/2010","Units Sold":"5967","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3987567.09","Total Cost":"2998656.18","Total Profit":"988910.91"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"2/4/2014","Order ID":"440590655","Ship Date":"2/16/2014","Units Sold":"9421","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6295771.67","Total Cost":"4734429.34","Total Profit":"1561342.33"},{"Region":"Central America and the Caribbean","Country":"Saint Lucia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"8/3/2016","Order ID":"938127553","Ship Date":"8/26/2016","Units Sold":"1645","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1071240.45","Total Cost":"863559.20","Total Profit":"207681.25"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/12/2017","Order ID":"489041221","Ship Date":"5/13/2017","Units Sold":"7020","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3069144.00","Total Cost":"1848576.60","Total Profit":"1220567.40"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/7/2016","Order ID":"257442986","Ship Date":"1/6/2017","Units Sold":"1956","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"402349.20","Total Cost":"229067.16","Total Profit":"173282.04"},{"Region":"Europe","Country":"Switzerland","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/6/2013","Order ID":"577756679","Ship Date":"3/3/2013","Units Sold":"9895","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1524423.70","Total Cost":"899752.35","Total Profit":"624671.35"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"4/22/2012","Order ID":"504718625","Ship Date":"5/14/2012","Units Sold":"6312","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"299504.40","Total Cost":"200658.48","Total Profit":"98845.92"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/10/2010","Order ID":"963377654","Ship Date":"10/20/2010","Units Sold":"3711","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"405538.08","Total Cost":"133002.24","Total Profit":"272535.84"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/14/2013","Order ID":"699095094","Ship Date":"1/28/2013","Units Sold":"6629","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"724417.12","Total Cost":"237583.36","Total Profit":"486833.76"},{"Region":"North America","Country":"Canada","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/30/2013","Order ID":"327544772","Ship Date":"11/14/2013","Units Sold":"6632","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4431966.64","Total Cost":"3332845.28","Total Profit":"1099121.36"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/11/2016","Order ID":"984713017","Ship Date":"4/11/2016","Units Sold":"7319","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"68286.27","Total Cost":"50647.48","Total Profit":"17638.79"},{"Region":"Asia","Country":"Bhutan","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"12/16/2012","Order ID":"276898658","Ship Date":"1/19/2013","Units Sold":"9321","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4075141.20","Total Cost":"2454498.93","Total Profit":"1620642.27"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"3/2/2013","Order ID":"830713021","Ship Date":"3/14/2013","Units Sold":"5298","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"808368.84","Total Cost":"516237.12","Total Profit":"292131.72"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"7/25/2015","Order ID":"843079936","Ship Date":"9/4/2015","Units Sold":"4943","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"234545.35","Total Cost":"157137.97","Total Profit":"77407.38"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"5/21/2012","Order ID":"831235730","Ship Date":"5/29/2012","Units Sold":"9979","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6668666.33","Total Cost":"5014846.66","Total Profit":"1653819.67"},{"Region":"Europe","Country":"Sweden","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"11/17/2015","Order ID":"482729232","Ship Date":"12/30/2015","Units Sold":"9162","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3865356.18","Total Cost":"3341289.78","Total Profit":"524066.40"},{"Region":"Europe","Country":"Latvia","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"8/10/2016","Order ID":"905421769","Ship Date":"9/12/2016","Units Sold":"3277","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2189920.79","Total Cost":"1646823.58","Total Profit":"543097.21"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/8/2010","Order ID":"577487170","Ship Date":"1/16/2010","Units Sold":"142","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"1324.86","Total Cost":"982.64","Total Profit":"342.22"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"5/1/2015","Order ID":"297411763","Ship Date":"5/12/2015","Units Sold":"9605","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6254872.05","Total Cost":"5042240.80","Total Profit":"1212631.25"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/2/2011","Order ID":"933994376","Ship Date":"3/24/2011","Units Sold":"8546","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3736311.20","Total Cost":"2250418.18","Total Profit":"1485893.02"},{"Region":"Europe","Country":"Montenegro","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"2/1/2015","Order ID":"276346337","Ship Date":"3/6/2015","Units Sold":"5877","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"905410.62","Total Cost":"534395.61","Total Profit":"371015.01"},{"Region":"Europe","Country":"Vatican City","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/23/2011","Order ID":"683891475","Ship Date":"9/19/2011","Units Sold":"7540","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1924811.20","Total Cost":"1202026.80","Total Profit":"722784.40"},{"Region":"Asia","Country":"Vietnam","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/25/2016","Order ID":"536366117","Ship Date":"11/13/2016","Units Sold":"1508","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1007751.16","Total Cost":"757830.32","Total Profit":"249920.84"},{"Region":"Europe","Country":"Latvia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"4/4/2013","Order ID":"983819091","Ship Date":"5/5/2013","Units Sold":"2786","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"25993.38","Total Cost":"19279.12","Total Profit":"6714.26"},{"Region":"Europe","Country":"Armenia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/16/2015","Order ID":"996611726","Ship Date":"7/7/2015","Units Sold":"8411","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"78474.63","Total Cost":"58204.12","Total Profit":"20270.51"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"2/20/2012","Order ID":"515417850","Ship Date":"2/23/2012","Units Sold":"2450","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"22858.50","Total Cost":"16954.00","Total Profit":"5904.50"},{"Region":"Europe","Country":"Lithuania","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"11/23/2015","Order ID":"901223790","Ship Date":"12/20/2015","Units Sold":"1002","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"669606.54","Total Cost":"503545.08","Total Profit":"166061.46"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/15/2013","Order ID":"885328376","Ship Date":"12/12/2013","Units Sold":"7195","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1836739.60","Total Cost":"1147026.90","Total Profit":"689712.70"},{"Region":"Europe","Country":"Cyprus","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"1/5/2017","Order ID":"619342935","Ship Date":"1/9/2017","Units Sold":"6192","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4032292.32","Total Cost":"3250552.32","Total Profit":"781740.00"},{"Region":"North America","Country":"Canada","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"10/21/2010","Order ID":"325191295","Ship Date":"12/7/2010","Units Sold":"185","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"1726.05","Total Cost":"1280.20","Total Profit":"445.85"},{"Region":"Asia","Country":"Malaysia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/5/2012","Order ID":"745109784","Ship Date":"2/9/2012","Units Sold":"3398","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"277718.54","Total Cost":"192564.66","Total Profit":"85153.88"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/21/2012","Order ID":"891647231","Ship Date":"5/9/2012","Units Sold":"7085","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4734692.95","Total Cost":"3560495.90","Total Profit":"1174197.05"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"6/22/2011","Order ID":"297664964","Ship Date":"8/2/2011","Units Sold":"4532","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1981390.40","Total Cost":"1193411.56","Total Profit":"787978.84"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/2/2014","Order ID":"366336810","Ship Date":"7/15/2014","Units Sold":"6058","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"933295.48","Total Cost":"550853.94","Total Profit":"382441.54"},{"Region":"North America","Country":"United States of America","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"3/16/2012","Order ID":"321149098","Ship Date":"4/24/2012","Units Sold":"4010","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"438212.80","Total Cost":"143718.40","Total Profit":"294494.40"},{"Region":"North America","Country":"Mexico","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/30/2015","Order ID":"355900657","Ship Date":"6/11/2015","Units Sold":"7768","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5058599.28","Total Cost":"4077889.28","Total Profit":"980710.00"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/8/2013","Order ID":"284702813","Ship Date":"5/17/2013","Units Sold":"8744","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"955544.32","Total Cost":"313384.96","Total Profit":"642159.36"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"12/11/2014","Order ID":"891979396","Ship Date":"12/22/2014","Units Sold":"5380","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"439707.40","Total Cost":"304884.60","Total Profit":"134822.80"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"7/7/2015","Order ID":"782466733","Ship Date":"8/15/2015","Units Sold":"8149","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"76030.17","Total Cost":"56391.08","Total Profit":"19639.09"},{"Region":"Asia","Country":"Philippines","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"11/27/2014","Order ID":"431213653","Ship Date":"12/14/2014","Units Sold":"4557","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2967563.97","Total Cost":"2392242.72","Total Profit":"575321.25"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"2/13/2014","Order ID":"833581483","Ship Date":"2/17/2014","Units Sold":"4140","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"637808.40","Total Cost":"376450.20","Total Profit":"261358.20"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/4/2011","Order ID":"355244052","Ship Date":"7/24/2011","Units Sold":"3464","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"32319.12","Total Cost":"23970.88","Total Profit":"8348.24"},{"Region":"North America","Country":"United States of America","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"9/25/2013","Order ID":"582187688","Ship Date":"10/6/2013","Units Sold":"1129","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"735216.09","Total Cost":"592679.84","Total Profit":"142536.25"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"2/1/2010","Order ID":"470711219","Ship Date":"3/14/2010","Units Sold":"2765","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"568760.50","Total Cost":"323809.15","Total Profit":"244951.35"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/26/2013","Order ID":"397425973","Ship Date":"6/13/2013","Units Sold":"6032","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1240782.40","Total Cost":"706407.52","Total Profit":"534374.88"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/22/2010","Order ID":"809255778","Ship Date":"11/26/2010","Units Sold":"5623","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"459567.79","Total Cost":"318655.41","Total Profit":"140912.38"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"9/23/2013","Order ID":"873436963","Ship Date":"10/7/2013","Units Sold":"8262","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5380297.02","Total Cost":"4337219.52","Total Profit":"1043077.50"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"5/22/2015","Order ID":"727518355","Ship Date":"7/1/2015","Units Sold":"7703","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5016270.63","Total Cost":"4043766.88","Total Profit":"972503.75"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"2/24/2010","Order ID":"129361283","Ship Date":"3/21/2010","Units Sold":"9733","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1499465.98","Total Cost":"885021.69","Total Profit":"614444.29"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/18/2012","Order ID":"707139575","Ship Date":"6/12/2012","Units Sold":"7169","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1093846.02","Total Cost":"698547.36","Total Profit":"395298.66"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/17/2014","Order ID":"109339559","Ship Date":"10/23/2014","Units Sold":"4860","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3164880.60","Total Cost":"2551305.60","Total Profit":"613575.00"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"12/13/2014","Order ID":"554760062","Ship Date":"1/5/2015","Units Sold":"4685","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"511976.80","Total Cost":"167910.40","Total Profit":"344066.40"},{"Region":"Europe","Country":"Slovenia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/25/2011","Order ID":"282512414","Ship Date":"8/10/2011","Units Sold":"556","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"243083.20","Total Cost":"146411.48","Total Profit":"96671.72"},{"Region":"Europe","Country":"Ukraine","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"6/8/2015","Order ID":"302020442","Ship Date":"7/7/2015","Units Sold":"3415","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"702465.50","Total Cost":"399930.65","Total Profit":"302534.85"},{"Region":"Europe","Country":"Albania","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/18/2016","Order ID":"343020474","Ship Date":"5/1/2016","Units Sold":"6236","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"681470.08","Total Cost":"223498.24","Total Profit":"457971.84"},{"Region":"Europe","Country":"Hungary","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"8/22/2015","Order ID":"205561339","Ship Date":"10/10/2015","Units Sold":"9023","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1390083.38","Total Cost":"820461.39","Total Profit":"569621.99"},{"Region":"Europe","Country":"Belgium","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/6/2016","Order ID":"210004365","Ship Date":"8/21/2016","Units Sold":"3813","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"180926.85","Total Cost":"121215.27","Total Profit":"59711.58"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"9/8/2011","Order ID":"747023379","Ship Date":"9/11/2011","Units Sold":"9673","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1057065.44","Total Cost":"346680.32","Total Profit":"710385.12"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/12/2017","Order ID":"927604711","Ship Date":"5/18/2017","Units Sold":"7702","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3249396.78","Total Cost":"2808842.38","Total Profit":"440554.40"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"9/28/2016","Order ID":"833047187","Ship Date":"10/22/2016","Units Sold":"6030","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"928981.80","Total Cost":"548307.90","Total Profit":"380673.90"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/22/2017","Order ID":"164962136","Ship Date":"5/5/2017","Units Sold":"4817","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"734977.86","Total Cost":"469368.48","Total Profit":"265609.38"},{"Region":"Europe","Country":"Estonia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/29/2015","Order ID":"495273387","Ship Date":"8/4/2015","Units Sold":"1256","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"191640.48","Total Cost":"122384.64","Total Profit":"69255.84"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"4/14/2017","Order ID":"316217267","Ship Date":"5/23/2017","Units Sold":"4571","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1166884.88","Total Cost":"728708.82","Total Profit":"438176.06"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/21/2017","Order ID":"890342605","Ship Date":"7/27/2017","Units Sold":"1017","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"48256.65","Total Cost":"32330.43","Total Profit":"15926.22"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/22/2012","Order ID":"400510728","Ship Date":"9/28/2012","Units Sold":"8879","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2266631.12","Total Cost":"1415490.18","Total Profit":"851140.94"},{"Region":"Asia","Country":"Japan","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/28/2011","Order ID":"699895465","Ship Date":"5/13/2011","Units Sold":"3476","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"379857.28","Total Cost":"124579.84","Total Profit":"255277.44"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"7/7/2015","Order ID":"561983144","Ship Date":"7/19/2015","Units Sold":"2156","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1404008.76","Total Cost":"1131813.76","Total Profit":"272195.00"},{"Region":"Europe","Country":"Slovakia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"5/11/2017","Order ID":"630572593","Ship Date":"5/15/2017","Units Sold":"9298","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6054950.58","Total Cost":"4881078.08","Total Profit":"1173872.50"},{"Region":"Asia","Country":"North Korea","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/17/2017","Order ID":"269775140","Ship Date":"4/21/2017","Units Sold":"1314","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"878106.78","Total Cost":"660337.56","Total Profit":"217769.22"},{"Region":"Europe","Country":"Serbia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/11/2013","Order ID":"714014613","Ship Date":"3/12/2013","Units Sold":"1646","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"134527.58","Total Cost":"93278.82","Total Profit":"41248.76"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/6/2011","Order ID":"118027341","Ship Date":"4/19/2011","Units Sold":"5768","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1472455.04","Total Cost":"919534.56","Total Profit":"552920.48"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"6/15/2015","Order ID":"306862151","Ship Date":"7/11/2015","Units Sold":"6185","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"293478.25","Total Cost":"196621.15","Total Profit":"96857.10"},{"Region":"Asia","Country":"Philippines","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"4/27/2015","Order ID":"925880372","Ship Date":"4/29/2015","Units Sold":"7432","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3249270.40","Total Cost":"1957068.56","Total Profit":"1292201.84"},{"Region":"Asia","Country":"Malaysia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/3/2012","Order ID":"790755832","Ship Date":"12/18/2012","Units Sold":"1078","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"720395.06","Total Cost":"541738.12","Total Profit":"178656.94"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/23/2011","Order ID":"137474858","Ship Date":"7/11/2011","Units Sold":"720","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"34164.00","Total Cost":"22888.80","Total Profit":"11275.20"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"2/14/2011","Order ID":"172336280","Ship Date":"3/14/2011","Units Sold":"6990","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"763867.20","Total Cost":"250521.60","Total Profit":"513345.60"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/2/2013","Order ID":"821951425","Ship Date":"9/12/2013","Units Sold":"2547","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"208166.31","Total Cost":"144338.49","Total Profit":"63827.82"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/12/2017","Order ID":"283244121","Ship Date":"7/22/2017","Units Sold":"7084","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1457178.80","Total Cost":"829607.24","Total Profit":"627571.56"},{"Region":"Europe","Country":"Estonia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"3/10/2015","Order ID":"873450696","Ship Date":"4/7/2015","Units Sold":"2326","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1514714.46","Total Cost":"1221056.96","Total Profit":"293657.50"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/25/2011","Order ID":"480119979","Ship Date":"4/13/2011","Units Sold":"7026","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1445248.20","Total Cost":"822814.86","Total Profit":"622433.34"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"5/19/2011","Order ID":"211113297","Ship Date":"6/13/2011","Units Sold":"1971","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"18389.43","Total Cost":"13639.32","Total Profit":"4750.11"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"1/26/2011","Order ID":"344604480","Ship Date":"2/19/2011","Units Sold":"4978","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2176381.60","Total Cost":"1310856.74","Total Profit":"865524.86"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"5/17/2014","Order ID":"779079854","Ship Date":"5/24/2014","Units Sold":"5897","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"644424.16","Total Cost":"211348.48","Total Profit":"433075.68"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/25/2015","Order ID":"583338248","Ship Date":"2/1/2015","Units Sold":"1606","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"702143.20","Total Cost":"422907.98","Total Profit":"279235.22"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/25/2015","Order ID":"246490991","Ship Date":"8/8/2015","Units Sold":"1017","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"156679.02","Total Cost":"92475.81","Total Profit":"64203.21"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/23/2015","Order ID":"327961909","Ship Date":"8/5/2015","Units Sold":"72","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"14810.40","Total Cost":"8431.92","Total Profit":"6378.48"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/23/2015","Order ID":"107487332","Ship Date":"12/9/2015","Units Sold":"6745","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1387446.50","Total Cost":"789906.95","Total Profit":"597539.55"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"5/8/2014","Order ID":"735116088","Ship Date":"6/26/2014","Units Sold":"6041","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"56362.53","Total Cost":"41803.72","Total Profit":"14558.81"},{"Region":"Asia","Country":"Myanmar","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/14/2010","Order ID":"281209504","Ship Date":"5/1/2010","Units Sold":"4996","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1275378.88","Total Cost":"796462.32","Total Profit":"478916.56"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"2/20/2015","Order ID":"486441409","Ship Date":"3/27/2015","Units Sold":"7678","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1960039.84","Total Cost":"1224026.76","Total Profit":"736013.08"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"3/18/2011","Order ID":"911798131","Ship Date":"3/19/2011","Units Sold":"184","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"122961.68","Total Cost":"92467.36","Total Profit":"30494.32"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"12/11/2015","Order ID":"288578498","Ship Date":"12/14/2015","Units Sold":"5645","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3676080.45","Total Cost":"2963399.20","Total Profit":"712681.25"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/20/2017","Order ID":"568393838","Ship Date":"8/29/2017","Units Sold":"9222","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3890669.58","Total Cost":"3363171.18","Total Profit":"527498.40"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"9/3/2016","Order ID":"173167979","Ship Date":"10/22/2016","Units Sold":"3108","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"28997.64","Total Cost":"21507.36","Total Profit":"7490.28"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"1/6/2015","Order ID":"745137250","Ship Date":"2/6/2015","Units Sold":"1526","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1019780.02","Total Cost":"766876.04","Total Profit":"252903.98"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/25/2011","Order ID":"396850478","Ship Date":"8/21/2011","Units Sold":"5730","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1462754.40","Total Cost":"913476.60","Total Profit":"549277.80"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"12/6/2013","Order ID":"461168992","Ship Date":"1/15/2014","Units Sold":"9008","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1852945.60","Total Cost":"1054926.88","Total Profit":"798018.72"},{"Region":"Europe","Country":"Kosovo","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/17/2011","Order ID":"541266620","Ship Date":"11/27/2011","Units Sold":"1676","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"427849.28","Total Cost":"267187.92","Total Profit":"160661.36"},{"Region":"Central America and the Caribbean","Country":"Saint Lucia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"5/15/2011","Order ID":"760629689","Ship Date":"6/27/2011","Units Sold":"6083","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3961310.43","Total Cost":"3193331.68","Total Profit":"767978.75"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"8/23/2015","Order ID":"413057029","Ship Date":"9/21/2015","Units Sold":"1609","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"703454.80","Total Cost":"423697.97","Total Profit":"279756.83"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"11/12/2013","Order ID":"212659966","Ship Date":"12/9/2013","Units Sold":"9665","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2467281.20","Total Cost":"1540794.30","Total Profit":"926486.90"},{"Region":"Europe","Country":"Hungary","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/12/2015","Order ID":"943862330","Ship Date":"4/10/2015","Units Sold":"8693","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5660968.53","Total Cost":"4563477.28","Total Profit":"1097491.25"},{"Region":"Asia","Country":"China","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/14/2014","Order ID":"311400449","Ship Date":"10/28/2014","Units Sold":"9168","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2340407.04","Total Cost":"1461562.56","Total Profit":"878844.48"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"4/30/2012","Order ID":"590323150","Ship Date":"5/17/2012","Units Sold":"8593","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"80172.69","Total Cost":"59463.56","Total Profit":"20709.13"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/21/2016","Order ID":"975991761","Ship Date":"8/28/2016","Units Sold":"6506","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1002314.36","Total Cost":"591590.58","Total Profit":"410723.78"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/3/2010","Order ID":"734080111","Ship Date":"10/16/2010","Units Sold":"9473","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1445390.34","Total Cost":"923049.12","Total Profit":"522341.22"},{"Region":"Europe","Country":"Vatican City","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"9/27/2016","Order ID":"550574529","Ship Date":"11/10/2016","Units Sold":"6093","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4071769.11","Total Cost":"3061976.22","Total Profit":"1009792.89"},{"Region":"North America","Country":"Mexico","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"1/23/2016","Order ID":"281773841","Ship Date":"3/12/2016","Units Sold":"1996","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"18622.68","Total Cost":"13812.32","Total Profit":"4810.36"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"12/21/2013","Order ID":"304289376","Ship Date":"1/30/2014","Units Sold":"4843","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3153810.03","Total Cost":"2542381.28","Total Profit":"611428.75"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"1/3/2013","Order ID":"165044963","Ship Date":"1/21/2013","Units Sold":"9327","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1436917.62","Total Cost":"848104.11","Total Profit":"588813.51"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"10/7/2016","Order ID":"831276929","Ship Date":"11/25/2016","Units Sold":"2171","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"237246.88","Total Cost":"77808.64","Total Profit":"159438.24"},{"Region":"Asia","Country":"Cambodia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/23/2010","Order ID":"640534102","Ship Date":"1/23/2011","Units Sold":"7130","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"582734.90","Total Cost":"404057.10","Total Profit":"178677.80"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/22/2012","Order ID":"250677812","Ship Date":"10/24/2012","Units Sold":"9990","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4214681.10","Total Cost":"3643253.10","Total Profit":"571428.00"},{"Region":"Europe","Country":"Belarus","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"8/31/2013","Order ID":"389881885","Ship Date":"9/4/2013","Units Sold":"3569","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"33298.77","Total Cost":"24697.48","Total Profit":"8601.29"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"1/27/2014","Order ID":"506632649","Ship Date":"2/12/2014","Units Sold":"2714","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"418118.84","Total Cost":"246784.02","Total Profit":"171334.82"},{"Region":"Europe","Country":"Lithuania","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"7/8/2011","Order ID":"119728934","Ship Date":"7/30/2011","Units Sold":"9307","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6060811.47","Total Cost":"4885802.72","Total Profit":"1175008.75"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"3/12/2012","Order ID":"168282067","Ship Date":"4/22/2012","Units Sold":"7258","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"793154.24","Total Cost":"260126.72","Total Profit":"533027.52"},{"Region":"Europe","Country":"Austria","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"1/6/2012","Order ID":"761715877","Ship Date":"2/4/2012","Units Sold":"7510","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"820692.80","Total Cost":"269158.40","Total Profit":"551534.40"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/10/2015","Order ID":"729766690","Ship Date":"7/16/2015","Units Sold":"3036","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"331774.08","Total Cost":"108810.24","Total Profit":"222963.84"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/19/2016","Order ID":"772483336","Ship Date":"1/19/2017","Units Sold":"3840","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"182208.00","Total Cost":"122073.60","Total Profit":"60134.40"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/31/2011","Order ID":"310227143","Ship Date":"9/25/2011","Units Sold":"1960","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"301957.60","Total Cost":"178222.80","Total Profit":"123734.80"},{"Region":"Europe","Country":"Belgium","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"12/3/2014","Order ID":"633671939","Ship Date":"1/21/2015","Units Sold":"6463","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1329439.10","Total Cost":"756881.93","Total Profit":"572557.17"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/31/2012","Order ID":"853804051","Ship Date":"11/24/2012","Units Sold":"8447","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1737547.90","Total Cost":"989228.17","Total Profit":"748319.73"},{"Region":"North America","Country":"Canada","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/23/2011","Order ID":"151922309","Ship Date":"7/7/2011","Units Sold":"6042","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"930830.52","Total Cost":"549399.06","Total Profit":"381431.46"},{"Region":"Europe","Country":"Estonia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/4/2010","Order ID":"929638040","Ship Date":"7/17/2010","Units Sold":"9409","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3969563.01","Total Cost":"3431368.21","Total Profit":"538194.80"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"2/8/2014","Order ID":"258875072","Ship Date":"3/2/2014","Units Sold":"5741","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3738596.61","Total Cost":"3013795.36","Total Profit":"724801.25"},{"Region":"Asia","Country":"Maldives","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"11/12/2012","Order ID":"231869733","Ship Date":"12/12/2012","Units Sold":"4261","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2847498.47","Total Cost":"2141322.94","Total Profit":"706175.53"},{"Region":"Asia","Country":"Myanmar","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/17/2017","Order ID":"311170852","Ship Date":"2/16/2017","Units Sold":"1225","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"58126.25","Total Cost":"38942.75","Total Profit":"19183.50"},{"Region":"Europe","Country":"Latvia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"5/4/2015","Order ID":"479639756","Ship Date":"5/4/2015","Units Sold":"4917","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2074433.13","Total Cost":"1793180.73","Total Profit":"281252.40"},{"Region":"Asia","Country":"Bhutan","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"6/4/2016","Order ID":"790450274","Ship Date":"6/11/2016","Units Sold":"657","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"167718.96","Total Cost":"104738.94","Total Profit":"62980.02"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"11/30/2014","Order ID":"917088735","Ship Date":"12/30/2014","Units Sold":"5791","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3869951.57","Total Cost":"2910209.14","Total Profit":"959742.43"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/4/2010","Order ID":"603353965","Ship Date":"5/10/2010","Units Sold":"4701","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"717278.58","Total Cost":"458065.44","Total Profit":"259213.14"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"7/21/2010","Order ID":"113357293","Ship Date":"7/27/2010","Units Sold":"3797","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1601916.33","Total Cost":"1384727.93","Total Profit":"217188.40"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"8/7/2013","Order ID":"681522548","Ship Date":"8/18/2013","Units Sold":"6522","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1341575.40","Total Cost":"763791.42","Total Profit":"577783.98"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/9/2010","Order ID":"462586057","Ship Date":"10/11/2010","Units Sold":"8349","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"77896.17","Total Cost":"57775.08","Total Profit":"20121.09"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"2/10/2013","Order ID":"381596648","Ship Date":"3/22/2013","Units Sold":"1783","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"274688.98","Total Cost":"162128.19","Total Profit":"112560.79"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"7/3/2010","Order ID":"983915650","Ship Date":"7/22/2010","Units Sold":"1361","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"207661.38","Total Cost":"132615.84","Total Profit":"75045.54"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"6/29/2012","Order ID":"185216891","Ship Date":"8/11/2012","Units Sold":"8649","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1319664.42","Total Cost":"842758.56","Total Profit":"476905.86"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/20/2014","Order ID":"921486699","Ship Date":"10/4/2014","Units Sold":"7247","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"791952.16","Total Cost":"259732.48","Total Profit":"532219.68"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/1/2017","Order ID":"799023902","Ship Date":"5/1/2017","Units Sold":"7784","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"636186.32","Total Cost":"441119.28","Total Profit":"195067.04"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/24/2014","Order ID":"644439828","Ship Date":"8/10/2014","Units Sold":"2921","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"238733.33","Total Cost":"165533.07","Total Profit":"73200.26"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"5/23/2012","Order ID":"454658305","Ship Date":"5/31/2012","Units Sold":"2351","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1530994.71","Total Cost":"1234180.96","Total Profit":"296813.75"},{"Region":"North America","Country":"Mexico","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"11/21/2010","Order ID":"746915662","Ship Date":"12/17/2010","Units Sold":"7797","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5077484.37","Total Cost":"4093113.12","Total Profit":"984371.25"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"8/18/2014","Order ID":"308760726","Ship Date":"9/11/2014","Units Sold":"8015","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"380311.75","Total Cost":"254796.85","Total Profit":"125514.90"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"3/12/2014","Order ID":"248054826","Ship Date":"4/27/2014","Units Sold":"3790","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"779603.00","Total Cost":"443846.90","Total Profit":"335756.10"},{"Region":"North America","Country":"Mexico","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/3/2012","Order ID":"842971789","Ship Date":"8/20/2012","Units Sold":"2940","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1285368.00","Total Cost":"774190.20","Total Profit":"511177.80"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"11/21/2013","Order ID":"191997945","Ship Date":"12/23/2013","Units Sold":"5313","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"49570.29","Total Cost":"36765.96","Total Profit":"12804.33"},{"Region":"Asia","Country":"Cambodia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/14/2011","Order ID":"963932120","Ship Date":"12/4/2011","Units Sold":"7790","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5072925.90","Total Cost":"4089438.40","Total Profit":"983487.50"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"7/7/2016","Order ID":"947885644","Ship Date":"7/31/2016","Units Sold":"9281","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6043880.01","Total Cost":"4872153.76","Total Profit":"1171726.25"},{"Region":"Asia","Country":"Malaysia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/17/2012","Order ID":"703282344","Ship Date":"6/13/2012","Units Sold":"5729","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"882609.74","Total Cost":"520937.97","Total Profit":"361671.77"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/10/2015","Order ID":"409858548","Ship Date":"6/2/2015","Units Sold":"5107","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3412854.89","Total Cost":"2566471.78","Total Profit":"846383.11"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/1/2015","Order ID":"317663085","Ship Date":"1/15/2016","Units Sold":"2421","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1576579.41","Total Cost":"1270928.16","Total Profit":"305651.25"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/27/2013","Order ID":"297057282","Ship Date":"4/9/2013","Units Sold":"4706","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"223299.70","Total Cost":"149603.74","Total Profit":"73695.96"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"1/15/2011","Order ID":"288714969","Ship Date":"3/1/2011","Units Sold":"6030","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"286123.50","Total Cost":"191693.70","Total Profit":"94429.80"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/28/2014","Order ID":"753622472","Ship Date":"8/1/2014","Units Sold":"2491","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"380076.78","Total Cost":"242723.04","Total Profit":"137353.74"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"11/29/2010","Order ID":"423078620","Ship Date":"12/6/2010","Units Sold":"7220","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1843121.60","Total Cost":"1151012.40","Total Profit":"692109.20"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/27/2010","Order ID":"348694741","Ship Date":"12/29/2010","Units Sold":"5378","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"587707.84","Total Cost":"192747.52","Total Profit":"394960.32"},{"Region":"Europe","Country":"Estonia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/11/2015","Order ID":"752394664","Ship Date":"7/9/2015","Units Sold":"9156","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5962478.76","Total Cost":"4806533.76","Total Profit":"1155945.00"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/1/2010","Order ID":"576414716","Ship Date":"12/7/2010","Units Sold":"2778","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"131816.10","Total Cost":"88312.62","Total Profit":"43503.48"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"4/17/2011","Order ID":"633303725","Ship Date":"5/1/2011","Units Sold":"7501","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"613056.73","Total Cost":"425081.67","Total Profit":"187975.06"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"11/12/2016","Order ID":"455923020","Ship Date":"11/29/2016","Units Sold":"6608","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2889017.60","Total Cost":"1740084.64","Total Profit":"1148932.96"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"4/21/2017","Order ID":"547446429","Ship Date":"5/27/2017","Units Sold":"419","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"63931.02","Total Cost":"40827.36","Total Profit":"23103.66"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/2/2011","Order ID":"131360280","Ship Date":"1/26/2011","Units Sold":"1281","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"560053.20","Total Cost":"337325.73","Total Profit":"222727.47"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"5/8/2016","Order ID":"301463401","Ship Date":"6/2/2016","Units Sold":"8574","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3748552.80","Total Cost":"2257791.42","Total Profit":"1490761.38"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/7/2014","Order ID":"871867120","Ship Date":"1/20/2015","Units Sold":"3710","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2415989.10","Total Cost":"1947601.60","Total Profit":"468387.50"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/30/2015","Order ID":"826995265","Ship Date":"12/25/2015","Units Sold":"5131","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2164717.59","Total Cost":"1871224.39","Total Profit":"293493.20"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"5/15/2014","Order ID":"571584165","Ship Date":"6/11/2014","Units Sold":"3311","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"157106.95","Total Cost":"105256.69","Total Profit":"51850.26"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"3/24/2010","Order ID":"580682647","Ship Date":"5/9/2010","Units Sold":"5754","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2515648.80","Total Cost":"1515200.82","Total Profit":"1000447.98"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"1/22/2012","Order ID":"949652040","Ship Date":"3/1/2012","Units Sold":"1997","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"163214.81","Total Cost":"113169.99","Total Profit":"50044.82"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/24/2010","Order ID":"944166171","Ship Date":"7/28/2010","Units Sold":"8606","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"703368.38","Total Cost":"487702.02","Total Profit":"215666.36"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/24/2012","Order ID":"350211369","Ship Date":"8/27/2012","Units Sold":"4182","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1828370.40","Total Cost":"1101246.06","Total Profit":"727124.34"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"12/7/2014","Order ID":"824086463","Ship Date":"1/11/2015","Units Sold":"4352","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2908311.04","Total Cost":"2187054.08","Total Profit":"721256.96"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/6/2015","Order ID":"942402780","Ship Date":"2/16/2015","Units Sold":"6780","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1730798.40","Total Cost":"1080867.60","Total Profit":"649930.80"},{"Region":"Asia","Country":"Taiwan","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"9/7/2015","Order ID":"252084147","Ship Date":"10/8/2015","Units Sold":"6156","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"948393.36","Total Cost":"559765.08","Total Profit":"388628.28"},{"Region":"Europe","Country":"Austria","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"9/14/2012","Order ID":"620366895","Ship Date":"9/24/2012","Units Sold":"9205","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1418122.30","Total Cost":"837010.65","Total Profit":"581111.65"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/12/2014","Order ID":"384799849","Ship Date":"8/12/2014","Units Sold":"9681","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"459363.45","Total Cost":"307758.99","Total Profit":"151604.46"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/12/2015","Order ID":"203244340","Ship Date":"10/28/2015","Units Sold":"3372","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"160001.40","Total Cost":"107195.88","Total Profit":"52805.52"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"6/4/2015","Order ID":"803874194","Ship Date":"6/16/2015","Units Sold":"3093","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"146762.85","Total Cost":"98326.47","Total Profit":"48436.38"},{"Region":"Europe","Country":"Netherlands","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/29/2013","Order ID":"735175740","Ship Date":"11/3/2013","Units Sold":"3694","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1558461.66","Total Cost":"1347164.86","Total Profit":"211296.80"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/16/2016","Order ID":"415947806","Ship Date":"4/6/2016","Units Sold":"7054","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3084008.80","Total Cost":"1857529.82","Total Profit":"1226478.98"},{"Region":"Europe","Country":"Finland","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"5/20/2013","Order ID":"785301721","Ship Date":"6/3/2013","Units Sold":"7085","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4613822.85","Total Cost":"3719341.60","Total Profit":"894481.25"},{"Region":"Asia","Country":"Tajikistan","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/22/2016","Order ID":"152661311","Ship Date":"8/28/2016","Units Sold":"4729","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"386501.17","Total Cost":"267992.43","Total Profit":"118508.74"},{"Region":"Europe","Country":"Montenegro","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"4/22/2015","Order ID":"947762906","Ship Date":"6/8/2015","Units Sold":"2960","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"140452.00","Total Cost":"94098.40","Total Profit":"46353.60"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"3/13/2011","Order ID":"270655333","Ship Date":"4/23/2011","Units Sold":"1783","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1191525.41","Total Cost":"896028.82","Total Profit":"295496.59"},{"Region":"Asia","Country":"Indonesia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/10/2014","Order ID":"241699922","Ship Date":"10/23/2014","Units Sold":"3233","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"493291.14","Total Cost":"315023.52","Total Profit":"178267.62"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/22/2011","Order ID":"351570498","Ship Date":"2/13/2011","Units Sold":"6378","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"521273.94","Total Cost":"361441.26","Total Profit":"159832.68"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/6/2016","Order ID":"611253392","Ship Date":"7/18/2016","Units Sold":"2317","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"353527.86","Total Cost":"225768.48","Total Profit":"127759.38"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"4/3/2014","Order ID":"202047431","Ship Date":"5/5/2014","Units Sold":"9180","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3872950.20","Total Cost":"3347854.20","Total Profit":"525096.00"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"9/2/2011","Order ID":"625563943","Ship Date":"9/21/2011","Units Sold":"7127","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1097985.62","Total Cost":"648058.11","Total Profit":"449927.51"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/10/2013","Order ID":"753726756","Ship Date":"2/26/2013","Units Sold":"3351","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1465057.20","Total Cost":"882418.83","Total Profit":"582638.37"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/29/2016","Order ID":"878772199","Ship Date":"8/17/2016","Units Sold":"7077","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2985715.53","Total Cost":"2580911.13","Total Profit":"404804.40"},{"Region":"Asia","Country":"China","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"1/6/2017","Order ID":"463249099","Ship Date":"2/6/2017","Units Sold":"4558","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1163566.24","Total Cost":"726636.36","Total Profit":"436929.88"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"12/8/2010","Order ID":"390018784","Ship Date":"1/19/2011","Units Sold":"4080","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1783776.00","Total Cost":"1074386.40","Total Profit":"709389.60"},{"Region":"Asia","Country":"Japan","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/7/2014","Order ID":"712255084","Ship Date":"8/23/2014","Units Sold":"962","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"626464.02","Total Cost":"505011.52","Total Profit":"121452.50"},{"Region":"North America","Country":"Canada","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"10/14/2014","Order ID":"203444325","Ship Date":"11/8/2014","Units Sold":"2552","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"524946.40","Total Cost":"298864.72","Total Profit":"226081.68"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"3/15/2011","Order ID":"407385337","Ship Date":"4/30/2011","Units Sold":"3229","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2102757.09","Total Cost":"1695095.84","Total Profit":"407661.25"},{"Region":"Europe","Country":"Monaco","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"11/11/2011","Order ID":"688189446","Ship Date":"12/19/2011","Units Sold":"9405","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"768670.65","Total Cost":"532981.35","Total Profit":"235689.30"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/24/2014","Order ID":"480280482","Ship Date":"8/14/2014","Units Sold":"4522","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3021916.94","Total Cost":"2272485.88","Total Profit":"749431.06"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/4/2010","Order ID":"638394773","Ship Date":"9/2/2010","Units Sold":"4055","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"443130.40","Total Cost":"145331.20","Total Profit":"297799.20"},{"Region":"Europe","Country":"Andorra","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/1/2011","Order ID":"287581145","Ship Date":"5/4/2011","Units Sold":"506","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"77205.48","Total Cost":"49304.64","Total Profit":"27900.84"},{"Region":"Europe","Country":"Greece","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/24/2013","Order ID":"873200929","Ship Date":"10/8/2013","Units Sold":"8414","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5622823.78","Total Cost":"4228371.56","Total Profit":"1394452.22"},{"Region":"Europe","Country":"Finland","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"7/14/2012","Order ID":"310927951","Ship Date":"9/1/2012","Units Sold":"9345","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4085634.00","Total Cost":"2460818.85","Total Profit":"1624815.15"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/12/2010","Order ID":"636748540","Ship Date":"10/31/2010","Units Sold":"6898","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1052496.84","Total Cost":"672141.12","Total Profit":"380355.72"},{"Region":"Europe","Country":"San Marino","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/10/2016","Order ID":"356961524","Ship Date":"6/10/2016","Units Sold":"1702","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"139104.46","Total Cost":"96452.34","Total Profit":"42652.12"},{"Region":"Europe","Country":"Greece","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"11/4/2015","Order ID":"298178231","Ship Date":"12/5/2015","Units Sold":"6420","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"701577.60","Total Cost":"230092.80","Total Profit":"471484.80"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/22/2015","Order ID":"457322490","Ship Date":"5/27/2015","Units Sold":"742","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"189417.76","Total Cost":"118289.64","Total Profit":"71128.12"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/21/2014","Order ID":"451630628","Ship Date":"8/22/2014","Units Sold":"6394","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2697564.66","Total Cost":"2331827.86","Total Profit":"365736.80"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"12/5/2010","Order ID":"868651473","Ship Date":"12/12/2010","Units Sold":"2129","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"324842.82","Total Cost":"207449.76","Total Profit":"117393.06"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"6/25/2017","Order ID":"116246354","Ship Date":"8/8/2017","Units Sold":"8734","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2229615.52","Total Cost":"1392374.28","Total Profit":"837241.24"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"8/2/2014","Order ID":"272589099","Ship Date":"9/10/2014","Units Sold":"4027","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2622422.67","Total Cost":"2114013.92","Total Profit":"508408.75"},{"Region":"Asia","Country":"South Korea","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"11/17/2013","Order ID":"336166036","Ship Date":"12/22/2013","Units Sold":"7855","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2005224.40","Total Cost":"1252244.10","Total Profit":"752980.30"},{"Region":"Asia","Country":"Indonesia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/19/2016","Order ID":"275775992","Ship Date":"9/30/2016","Units Sold":"7099","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1083165.42","Total Cost":"691726.56","Total Profit":"391438.86"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"5/14/2010","Order ID":"580530297","Ship Date":"5/26/2010","Units Sold":"670","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"73217.60","Total Cost":"24012.80","Total Profit":"49204.80"},{"Region":"Europe","Country":"Monaco","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/28/2017","Order ID":"909852778","Ship Date":"4/16/2017","Units Sold":"4511","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"492962.08","Total Cost":"161674.24","Total Profit":"331287.84"},{"Region":"Europe","Country":"Latvia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"5/17/2015","Order ID":"543479764","Ship Date":"6/13/2015","Units Sold":"6594","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4294078.74","Total Cost":"3461586.24","Total Profit":"832492.50"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/19/2010","Order ID":"631460082","Ship Date":"6/7/2010","Units Sold":"1926","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"210473.28","Total Cost":"69027.84","Total Profit":"141445.44"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"7/4/2016","Order ID":"144155061","Ship Date":"8/16/2016","Units Sold":"7541","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1551183.70","Total Cost":"883126.51","Total Profit":"668057.19"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/26/2014","Order ID":"822238528","Ship Date":"1/27/2015","Units Sold":"7507","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1544189.90","Total Cost":"879144.77","Total Profit":"665045.13"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/1/2010","Order ID":"426696813","Ship Date":"12/7/2010","Units Sold":"7924","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3464372.80","Total Cost":"2086626.92","Total Profit":"1377745.88"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/4/2013","Order ID":"388828742","Ship Date":"1/13/2014","Units Sold":"1920","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"292953.60","Total Cost":"187084.80","Total Profit":"105868.80"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"6/21/2012","Order ID":"860245645","Ship Date":"8/4/2012","Units Sold":"4658","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"43459.14","Total Cost":"32233.36","Total Profit":"11225.78"},{"Region":"Europe","Country":"Estonia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/8/2014","Order ID":"262871348","Ship Date":"10/15/2014","Units Sold":"8328","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"910083.84","Total Cost":"298475.52","Total Profit":"611608.32"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"9/13/2014","Order ID":"238942182","Ship Date":"10/1/2014","Units Sold":"7156","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1102453.36","Total Cost":"650695.08","Total Profit":"451758.28"},{"Region":"Europe","Country":"Kosovo","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/1/2011","Order ID":"701006972","Ship Date":"7/31/2011","Units Sold":"2396","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"369127.76","Total Cost":"217868.28","Total Profit":"151259.48"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"9/12/2012","Order ID":"281927049","Ship Date":"10/5/2012","Units Sold":"7334","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3094141.26","Total Cost":"2674636.46","Total Profit":"419504.80"},{"Region":"Europe","Country":"Poland","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"8/19/2015","Order ID":"384876239","Ship Date":"9/28/2015","Units Sold":"2287","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"348950.46","Total Cost":"222845.28","Total Profit":"126105.18"},{"Region":"Asia","Country":"China","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/10/2011","Order ID":"233340871","Ship Date":"3/16/2011","Units Sold":"9604","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"89605.32","Total Cost":"66459.68","Total Profit":"23145.64"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/13/2017","Order ID":"921119773","Ship Date":"8/30/2017","Units Sold":"8665","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5642734.65","Total Cost":"4548778.40","Total Profit":"1093956.25"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/23/2016","Order ID":"462324273","Ship Date":"8/1/2016","Units Sold":"881","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"224901.68","Total Cost":"140449.02","Total Profit":"84452.66"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/9/2017","Order ID":"541378200","Ship Date":"3/31/2017","Units Sold":"4695","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"513069.60","Total Cost":"168268.80","Total Profit":"344800.80"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/4/2014","Order ID":"663017880","Ship Date":"8/12/2014","Units Sold":"579","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"147807.12","Total Cost":"92304.18","Total Profit":"55502.94"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/3/2016","Order ID":"402292144","Ship Date":"3/4/2016","Units Sold":"6040","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"930522.40","Total Cost":"549217.20","Total Profit":"381305.20"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/11/2015","Order ID":"754562318","Ship Date":"8/28/2015","Units Sold":"613","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"156486.64","Total Cost":"97724.46","Total Profit":"58762.18"},{"Region":"Asia","Country":"Malaysia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/3/2010","Order ID":"985502231","Ship Date":"11/27/2010","Units Sold":"865","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"364934.85","Total Cost":"315456.85","Total Profit":"49478.00"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/7/2016","Order ID":"881098210","Ship Date":"9/18/2016","Units Sold":"5395","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"823169.10","Total Cost":"525688.80","Total Profit":"297480.30"},{"Region":"Europe","Country":"Croatia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"4/13/2014","Order ID":"297649085","Ship Date":"6/1/2014","Units Sold":"9834","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"91751.22","Total Cost":"68051.28","Total Profit":"23699.94"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"9/14/2016","Order ID":"511766183","Ship Date":"9/22/2016","Units Sold":"1841","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"201184.48","Total Cost":"65981.44","Total Profit":"135203.04"},{"Region":"Europe","Country":"Iceland","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/5/2011","Order ID":"170373332","Ship Date":"4/26/2011","Units Sold":"6110","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3978893.10","Total Cost":"3207505.60","Total Profit":"771387.50"},{"Region":"Asia","Country":"Mongolia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"9/8/2016","Order ID":"240706861","Ship Date":"10/28/2016","Units Sold":"9364","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2390441.92","Total Cost":"1492808.88","Total Profit":"897633.04"},{"Region":"Europe","Country":"Malta","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/24/2011","Order ID":"860315597","Ship Date":"4/13/2011","Units Sold":"5358","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2260486.62","Total Cost":"1954009.02","Total Profit":"306477.60"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/25/2011","Order ID":"887060868","Ship Date":"10/24/2011","Units Sold":"9878","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4167429.42","Total Cost":"3602407.82","Total Profit":"565021.60"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/29/2010","Order ID":"149116504","Ship Date":"3/18/2010","Units Sold":"5742","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"627485.76","Total Cost":"205793.28","Total Profit":"421692.48"},{"Region":"Europe","Country":"Moldova ","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/19/2014","Order ID":"794968831","Ship Date":"2/9/2014","Units Sold":"7798","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"852165.44","Total Cost":"279480.32","Total Profit":"572685.12"},{"Region":"Europe","Country":"Netherlands","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/22/2013","Order ID":"543416678","Ship Date":"8/27/2013","Units Sold":"7926","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3465247.20","Total Cost":"2087153.58","Total Profit":"1378093.62"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"1/16/2015","Order ID":"333571374","Ship Date":"2/1/2015","Units Sold":"37","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"5700.22","Total Cost":"3364.41","Total Profit":"2335.81"},{"Region":"Asia","Country":"Brunei","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"3/3/2014","Order ID":"274856746","Ship Date":"3/16/2014","Units Sold":"5074","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3390801.98","Total Cost":"2549887.96","Total Profit":"840914.02"},{"Region":"Asia","Country":"Taiwan","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/25/2015","Order ID":"997009122","Ship Date":"8/8/2015","Units Sold":"6010","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"925900.60","Total Cost":"546489.30","Total Profit":"379411.30"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/21/2013","Order ID":"500077331","Ship Date":"7/21/2013","Units Sold":"2850","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"232930.50","Total Cost":"161509.50","Total Profit":"71421.00"},{"Region":"Europe","Country":"Spain","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/14/2010","Order ID":"904422700","Ship Date":"11/12/2010","Units Sold":"7630","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"623599.90","Total Cost":"432392.10","Total Profit":"191207.80"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"3/30/2015","Order ID":"800719058","Ship Date":"4/23/2015","Units Sold":"9418","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1450937.08","Total Cost":"856378.74","Total Profit":"594558.34"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/6/2012","Order ID":"199952733","Ship Date":"1/12/2013","Units Sold":"9312","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1420824.96","Total Cost":"907361.28","Total Profit":"513463.68"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"7/3/2017","Order ID":"983422553","Ship Date":"8/1/2017","Units Sold":"5442","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"258222.90","Total Cost":"173001.18","Total Profit":"85221.72"},{"Region":"Asia","Country":"Mongolia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/23/2013","Order ID":"152739846","Ship Date":"6/17/2013","Units Sold":"7970","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5190143.70","Total Cost":"4183931.20","Total Profit":"1006212.50"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"8/4/2012","Order ID":"179828441","Ship Date":"9/12/2012","Units Sold":"4087","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"840695.90","Total Cost":"478628.57","Total Profit":"362067.33"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/9/2013","Order ID":"456924664","Ship Date":"2/24/2013","Units Sold":"3017","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1272842.13","Total Cost":"1100269.73","Total Profit":"172572.40"},{"Region":"Asia","Country":"China","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"6/16/2017","Order ID":"446577346","Ship Date":"6/26/2017","Units Sold":"1015","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"660978.15","Total Cost":"532834.40","Total Profit":"128143.75"},{"Region":"Asia","Country":"Cambodia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"7/31/2014","Order ID":"131647813","Ship Date":"8/11/2014","Units Sold":"6368","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1309897.60","Total Cost":"745756.48","Total Profit":"564141.12"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/28/2013","Order ID":"465309894","Ship Date":"2/11/2013","Units Sold":"4393","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"903640.10","Total Cost":"514464.23","Total Profit":"389175.87"},{"Region":"Europe","Country":"Armenia","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"2/17/2015","Order ID":"221049916","Ship Date":"4/7/2015","Units Sold":"2437","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1628573.99","Total Cost":"1224689.98","Total Profit":"403884.01"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/14/2012","Order ID":"942666709","Ship Date":"9/16/2012","Units Sold":"4882","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2134410.40","Total Cost":"1285577.06","Total Profit":"848833.34"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/22/2013","Order ID":"194271600","Ship Date":"10/8/2013","Units Sold":"8138","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"889320.64","Total Cost":"291665.92","Total Profit":"597654.72"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/29/2015","Order ID":"110288417","Ship Date":"1/7/2016","Units Sold":"5648","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2382834.72","Total Cost":"2059769.12","Total Profit":"323065.60"},{"Region":"Europe","Country":"Kosovo","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"12/19/2010","Order ID":"645453488","Ship Date":"12/23/2010","Units Sold":"2885","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1878740.85","Total Cost":"1514509.60","Total Profit":"364231.25"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"6/5/2017","Order ID":"924815642","Ship Date":"6/7/2017","Units Sold":"2355","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"192474.15","Total Cost":"133457.85","Total Profit":"59016.30"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/8/2017","Order ID":"593736207","Ship Date":"7/16/2017","Units Sold":"8593","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5742444.11","Total Cost":"4318326.22","Total Profit":"1424117.89"},{"Region":"Asia","Country":"Laos","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/18/2013","Order ID":"267889010","Ship Date":"2/19/2013","Units Sold":"3166","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2115742.82","Total Cost":"1591041.64","Total Profit":"524701.18"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/20/2014","Order ID":"183260381","Ship Date":"1/10/2015","Units Sold":"9674","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1989941.80","Total Cost":"1132922.14","Total Profit":"857019.66"},{"Region":"Europe","Country":"Malta","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"1/10/2016","Order ID":"646149146","Ship Date":"2/8/2016","Units Sold":"8746","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"955762.88","Total Cost":"313456.64","Total Profit":"642306.24"},{"Region":"Asia","Country":"Indonesia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"2/9/2010","Order ID":"683166635","Ship Date":"3/25/2010","Units Sold":"3043","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"625945.10","Total Cost":"356365.73","Total Profit":"269579.37"},{"Region":"Europe","Country":"Lithuania","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/12/2011","Order ID":"291236674","Ship Date":"3/23/2011","Units Sold":"2259","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1509621.93","Total Cost":"1135237.86","Total Profit":"374384.07"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/14/2011","Order ID":"887595593","Ship Date":"4/19/2011","Units Sold":"8115","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1238186.70","Total Cost":"790725.60","Total Profit":"447461.10"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"4/11/2015","Order ID":"359792220","Ship Date":"4/30/2015","Units Sold":"9368","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2391463.04","Total Cost":"1493446.56","Total Profit":"898016.48"},{"Region":"Europe","Country":"Portugal","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/2/2013","Order ID":"715687882","Ship Date":"9/23/2013","Units Sold":"6803","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2974271.60","Total Cost":"1791433.99","Total Profit":"1182837.61"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/19/2017","Order ID":"433456408","Ship Date":"2/27/2017","Units Sold":"8238","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1256954.04","Total Cost":"802710.72","Total Profit":"454243.32"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/6/2014","Order ID":"311584126","Ship Date":"5/21/2014","Units Sold":"3522","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"537386.76","Total Cost":"343183.68","Total Profit":"194203.08"},{"Region":"Asia","Country":"Taiwan","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/20/2014","Order ID":"318869864","Ship Date":"7/21/2014","Units Sold":"9534","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6208636.14","Total Cost":"5004968.64","Total Profit":"1203667.50"},{"Region":"Europe","Country":"Albania","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/7/2012","Order ID":"944424951","Ship Date":"5/5/2012","Units Sold":"5185","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"48376.05","Total Cost":"35880.20","Total Profit":"12495.85"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/2/2015","Order ID":"947673213","Ship Date":"2/10/2015","Units Sold":"6418","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"988757.08","Total Cost":"583588.74","Total Profit":"405168.34"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/13/2015","Order ID":"508350980","Ship Date":"11/22/2015","Units Sold":"1206","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"785359.26","Total Cost":"633101.76","Total Profit":"152257.50"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"11/22/2012","Order ID":"776507079","Ship Date":"12/14/2012","Units Sold":"4555","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"42498.15","Total Cost":"31520.60","Total Profit":"10977.55"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"10/2/2012","Order ID":"722502839","Ship Date":"10/25/2012","Units Sold":"3501","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2279886.21","Total Cost":"1837884.96","Total Profit":"442001.25"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/1/2011","Order ID":"287012088","Ship Date":"12/19/2011","Units Sold":"2110","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1374053.10","Total Cost":"1107665.60","Total Profit":"266387.50"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/22/2015","Order ID":"831021153","Ship Date":"4/8/2015","Units Sold":"6481","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"708243.68","Total Cost":"232279.04","Total Profit":"475964.64"},{"Region":"Asia","Country":"Maldives","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/31/2017","Order ID":"185828864","Ship Date":"7/20/2017","Units Sold":"9745","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1486892.10","Total Cost":"949552.80","Total Profit":"537339.30"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/6/2014","Order ID":"303046548","Ship Date":"6/19/2014","Units Sold":"7063","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1077672.54","Total Cost":"688218.72","Total Profit":"389453.82"},{"Region":"Europe","Country":"Latvia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"5/27/2014","Order ID":"504598033","Ship Date":"6/19/2014","Units Sold":"626","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"5840.58","Total Cost":"4331.92","Total Profit":"1508.66"},{"Region":"Asia","Country":"Laos","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"6/20/2011","Order ID":"632719647","Ship Date":"7/19/2011","Units Sold":"4659","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1189349.52","Total Cost":"742737.78","Total Profit":"446611.74"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/5/2012","Order ID":"599960219","Ship Date":"3/28/2012","Units Sold":"416","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"3881.28","Total Cost":"2878.72","Total Profit":"1002.56"},{"Region":"Asia","Country":"Myanmar","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/30/2016","Order ID":"839181077","Ship Date":"8/5/2016","Units Sold":"1184","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"56180.80","Total Cost":"37639.36","Total Profit":"18541.44"},{"Region":"Asia","Country":"Mongolia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"6/6/2014","Order ID":"953556048","Ship Date":"6/27/2014","Units Sold":"7280","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1497496.00","Total Cost":"852560.80","Total Profit":"644935.20"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/11/2011","Order ID":"166571462","Ship Date":"10/2/2011","Units Sold":"1052","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"685072.92","Total Cost":"552257.92","Total Profit":"132815.00"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"8/12/2011","Order ID":"472026145","Ship Date":"10/1/2011","Units Sold":"1881","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"205555.68","Total Cost":"67415.04","Total Profit":"138140.64"},{"Region":"Europe","Country":"Switzerland","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/2/2010","Order ID":"784031426","Ship Date":"12/13/2010","Units Sold":"1177","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"128622.56","Total Cost":"42183.68","Total Profit":"86438.88"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/17/2011","Order ID":"987011134","Ship Date":"3/18/2011","Units Sold":"7383","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3227847.60","Total Cost":"1944165.39","Total Profit":"1283682.21"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"2/13/2015","Order ID":"585701596","Ship Date":"3/13/2015","Units Sold":"973","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"9078.09","Total Cost":"6733.16","Total Profit":"2344.93"},{"Region":"Europe","Country":"Iceland","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/6/2015","Order ID":"955151641","Ship Date":"2/11/2015","Units Sold":"9451","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6315819.77","Total Cost":"4749505.54","Total Profit":"1566314.23"},{"Region":"Europe","Country":"Georgia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/22/2011","Order ID":"390722596","Ship Date":"12/27/2011","Units Sold":"2354","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1573107.58","Total Cost":"1182979.16","Total Profit":"390128.42"},{"Region":"Europe","Country":"Denmark","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"8/5/2011","Order ID":"858088290","Ship Date":"8/27/2011","Units Sold":"6249","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"510730.77","Total Cost":"354130.83","Total Profit":"156599.94"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"6/16/2013","Order ID":"343235051","Ship Date":"6/23/2013","Units Sold":"9734","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6504940.18","Total Cost":"4891724.36","Total Profit":"1613215.82"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/6/2014","Order ID":"502461707","Ship Date":"3/20/2014","Units Sold":"8440","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1736108.00","Total Cost":"988408.40","Total Profit":"747699.60"},{"Region":"Asia","Country":"Cambodia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"3/17/2011","Order ID":"812379586","Ship Date":"4/21/2011","Units Sold":"27","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"2950.56","Total Cost":"967.68","Total Profit":"1982.88"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/17/2014","Order ID":"819912517","Ship Date":"12/26/2014","Units Sold":"9189","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1004173.92","Total Cost":"329333.76","Total Profit":"674840.16"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"7/28/2013","Order ID":"592296826","Ship Date":"8/15/2013","Units Sold":"2648","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"125647.60","Total Cost":"84179.92","Total Profit":"41467.68"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/25/2015","Order ID":"267081344","Ship Date":"10/18/2015","Units Sold":"4160","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"38812.80","Total Cost":"28787.20","Total Profit":"10025.60"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"9/24/2015","Order ID":"502127397","Ship Date":"10/13/2015","Units Sold":"9510","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"88728.30","Total Cost":"65809.20","Total Profit":"22919.10"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/13/2012","Order ID":"225608813","Ship Date":"10/24/2012","Units Sold":"1516","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"165668.48","Total Cost":"54333.44","Total Profit":"111335.04"},{"Region":"Europe","Country":"San Marino","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"10/2/2014","Order ID":"686011922","Ship Date":"10/18/2014","Units Sold":"5027","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"46901.91","Total Cost":"34786.84","Total Profit":"12115.07"},{"Region":"Asia","Country":"South Korea","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"8/17/2011","Order ID":"502135550","Ship Date":"9/25/2011","Units Sold":"1923","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1252276.83","Total Cost":"1009498.08","Total Profit":"242778.75"},{"Region":"Europe","Country":"Netherlands","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"3/6/2017","Order ID":"613091027","Ship Date":"4/22/2017","Units Sold":"6114","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3981497.94","Total Cost":"3209605.44","Total Profit":"771892.50"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/3/2012","Order ID":"228302180","Ship Date":"4/20/2012","Units Sold":"8543","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1303490.94","Total Cost":"832429.92","Total Profit":"471061.02"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"4/16/2016","Order ID":"877505338","Ship Date":"4/27/2016","Units Sold":"2184","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"333234.72","Total Cost":"212808.96","Total Profit":"120425.76"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"3/21/2016","Order ID":"560749328","Ship Date":"5/6/2016","Units Sold":"7042","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"769549.76","Total Cost":"252385.28","Total Profit":"517164.48"},{"Region":"Asia","Country":"Cambodia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/4/2014","Order ID":"498395478","Ship Date":"11/27/2014","Units Sold":"5152","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2173577.28","Total Cost":"1878882.88","Total Profit":"294694.40"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/29/2012","Order ID":"181117618","Ship Date":"5/2/2012","Units Sold":"5583","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"52089.39","Total Cost":"38634.36","Total Profit":"13455.03"},{"Region":"Europe","Country":"Serbia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"6/23/2017","Order ID":"519902074","Ship Date":"7/2/2017","Units Sold":"9432","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"447548.40","Total Cost":"299843.28","Total Profit":"147705.12"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"8/28/2013","Order ID":"696047675","Ship Date":"8/31/2013","Units Sold":"4830","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2037728.70","Total Cost":"1761452.70","Total Profit":"276276.00"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"8/2/2015","Order ID":"411165750","Ship Date":"8/10/2015","Units Sold":"1937","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1294438.99","Total Cost":"973419.98","Total Profit":"321019.01"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/18/2012","Order ID":"337180125","Ship Date":"8/26/2012","Units Sold":"7947","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3474428.40","Total Cost":"2092683.51","Total Profit":"1381744.89"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"1/10/2010","Order ID":"766327130","Ship Date":"1/30/2010","Units Sold":"2082","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"227520.96","Total Cost":"74618.88","Total Profit":"152902.08"},{"Region":"Asia","Country":"Myanmar","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"10/19/2010","Order ID":"261155593","Ship Date":"11/6/2010","Units Sold":"598","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"28375.10","Total Cost":"19010.42","Total Profit":"9364.68"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"2/15/2011","Order ID":"604526841","Ship Date":"2/24/2011","Units Sold":"1781","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"366351.70","Total Cost":"208572.91","Total Profit":"157778.79"},{"Region":"Europe","Country":"Belarus","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"2/11/2012","Order ID":"949614703","Ship Date":"2/21/2012","Units Sold":"948","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"44982.60","Total Cost":"30136.92","Total Profit":"14845.68"},{"Region":"Asia","Country":"Nepal","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/13/2015","Order ID":"969905507","Ship Date":"12/13/2015","Units Sold":"5448","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3547792.08","Total Cost":"2859982.08","Total Profit":"687810.00"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/5/2014","Order ID":"409198081","Ship Date":"8/22/2014","Units Sold":"9660","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4223352.00","Total Cost":"2543767.80","Total Profit":"1679584.20"},{"Region":"Asia","Country":"Laos","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"11/23/2015","Order ID":"431603753","Ship Date":"12/27/2015","Units Sold":"9997","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4370688.40","Total Cost":"2632510.01","Total Profit":"1738178.39"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/29/2010","Order ID":"471546351","Ship Date":"5/25/2010","Units Sold":"9899","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4176289.11","Total Cost":"3610066.31","Total Profit":"566222.80"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/25/2011","Order ID":"483762204","Ship Date":"11/2/2011","Units Sold":"4841","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"745804.46","Total Cost":"440192.13","Total Profit":"305612.33"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/4/2016","Order ID":"493300139","Ship Date":"7/5/2016","Units Sold":"7328","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3091609.92","Total Cost":"2672448.32","Total Profit":"419161.60"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"1/14/2014","Order ID":"145521485","Ship Date":"2/22/2014","Units Sold":"1896","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"89965.20","Total Cost":"60273.84","Total Profit":"29691.36"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/14/2014","Order ID":"956100070","Ship Date":"2/27/2014","Units Sold":"112","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"17254.72","Total Cost":"10184.16","Total Profit":"7070.56"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/23/2012","Order ID":"461022222","Ship Date":"1/24/2012","Units Sold":"5575","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2352036.75","Total Cost":"2033146.75","Total Profit":"318890.00"},{"Region":"Europe","Country":"Monaco","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"1/30/2016","Order ID":"766586768","Ship Date":"3/6/2016","Units Sold":"8915","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3897638.00","Total Cost":"2347586.95","Total Profit":"1550051.05"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/3/2012","Order ID":"899405038","Ship Date":"7/7/2012","Units Sold":"2792","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1865809.84","Total Cost":"1403091.68","Total Profit":"462718.16"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/22/2014","Order ID":"856400859","Ship Date":"1/12/2015","Units Sold":"6900","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"563937.00","Total Cost":"391023.00","Total Profit":"172914.00"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"12/23/2015","Order ID":"254810559","Ship Date":"1/30/2016","Units Sold":"2962","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"456325.72","Total Cost":"269334.66","Total Profit":"186991.06"},{"Region":"Europe","Country":"Ukraine","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"7/9/2012","Order ID":"582182967","Ship Date":"7/17/2012","Units Sold":"9732","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"90799.56","Total Cost":"67345.44","Total Profit":"23454.12"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"5/2/2010","Order ID":"246379411","Ship Date":"5/27/2010","Units Sold":"7998","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"653676.54","Total Cost":"453246.66","Total Profit":"200429.88"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/2/2012","Order ID":"425573718","Ship Date":"6/19/2012","Units Sold":"5575","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2352036.75","Total Cost":"2033146.75","Total Profit":"318890.00"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"4/13/2015","Order ID":"118252217","Ship Date":"5/7/2015","Units Sold":"2314","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"109799.30","Total Cost":"73562.06","Total Profit":"36237.24"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"9/9/2012","Order ID":"193213737","Ship Date":"10/7/2012","Units Sold":"5093","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2226659.60","Total Cost":"1341139.69","Total Profit":"885519.91"},{"Region":"Europe","Country":"Italy","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/21/2014","Order ID":"239569604","Ship Date":"9/12/2014","Units Sold":"2824","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"133998.80","Total Cost":"89774.96","Total Profit":"44223.84"},{"Region":"Europe","Country":"Georgia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"3/29/2013","Order ID":"816743648","Ship Date":"5/6/2013","Units Sold":"1450","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"633940.00","Total Cost":"381828.50","Total Profit":"252111.50"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"10/31/2016","Order ID":"304472196","Ship Date":"11/20/2016","Units Sold":"8944","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"730993.12","Total Cost":"506856.48","Total Profit":"224136.64"},{"Region":"Asia","Country":"Malaysia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/17/2015","Order ID":"752804076","Ship Date":"11/19/2015","Units Sold":"310","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"79136.80","Total Cost":"49420.20","Total Profit":"29716.60"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/18/2017","Order ID":"232100617","Ship Date":"2/18/2017","Units Sold":"2585","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"122658.25","Total Cost":"82177.15","Total Profit":"40481.10"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"9/22/2016","Order ID":"483035647","Ship Date":"11/3/2016","Units Sold":"9837","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"466765.65","Total Cost":"312718.23","Total Profit":"154047.42"},{"Region":"Asia","Country":"Philippines","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/9/2012","Order ID":"166595494","Ship Date":"6/10/2012","Units Sold":"8164","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5316478.44","Total Cost":"4285773.44","Total Profit":"1030705.00"},{"Region":"Europe","Country":"Georgia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"10/20/2013","Order ID":"714078986","Ship Date":"11/28/2013","Units Sold":"695","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"177419.60","Total Cost":"110796.90","Total Profit":"66622.70"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/10/2016","Order ID":"477097451","Ship Date":"11/20/2016","Units Sold":"2593","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1732824.11","Total Cost":"1303086.22","Total Profit":"429737.89"},{"Region":"Europe","Country":"Ukraine","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"8/5/2014","Order ID":"577574717","Ship Date":"9/11/2014","Units Sold":"6049","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1544188.72","Total Cost":"964331.58","Total Profit":"579857.14"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/11/2016","Order ID":"857747113","Ship Date":"4/29/2016","Units Sold":"5287","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"577763.36","Total Cost":"189486.08","Total Profit":"388277.28"},{"Region":"Europe","Country":"Ukraine","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/29/2013","Order ID":"330163466","Ship Date":"6/13/2013","Units Sold":"1562","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"240641.72","Total Cost":"142032.66","Total Profit":"98609.06"},{"Region":"Europe","Country":"Vatican City","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/11/2013","Order ID":"327685105","Ship Date":"5/29/2013","Units Sold":"8159","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"666835.07","Total Cost":"462370.53","Total Profit":"204464.54"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"9/14/2013","Order ID":"453485858","Ship Date":"10/15/2013","Units Sold":"5398","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2277362.22","Total Cost":"1968596.62","Total Profit":"308765.60"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/30/2012","Order ID":"831052052","Ship Date":"11/6/2012","Units Sold":"5625","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"614700.00","Total Cost":"201600.00","Total Profit":"413100.00"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/27/2013","Order ID":"754182517","Ship Date":"10/26/2013","Units Sold":"8221","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1266527.26","Total Cost":"747535.53","Total Profit":"518991.73"},{"Region":"Europe","Country":"Kosovo","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/30/2013","Order ID":"936988580","Ship Date":"6/11/2013","Units Sold":"4598","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"502469.44","Total Cost":"164792.32","Total Profit":"337677.12"},{"Region":"Asia","Country":"Brunei","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/7/2013","Order ID":"363894069","Ship Date":"6/8/2013","Units Sold":"3196","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"349258.88","Total Cost":"114544.64","Total Profit":"234714.24"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/15/2016","Order ID":"339635312","Ship Date":"4/30/2016","Units Sold":"4491","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3001200.57","Total Cost":"2256907.14","Total Profit":"744293.43"},{"Region":"Asia","Country":"Philippines","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"5/1/2014","Order ID":"439261138","Ship Date":"6/19/2014","Units Sold":"5987","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2617516.40","Total Cost":"1576556.71","Total Profit":"1040959.69"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/20/2016","Order ID":"758132874","Ship Date":"4/20/2016","Units Sold":"7220","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4701736.20","Total Cost":"3790211.20","Total Profit":"911525.00"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"10/25/2012","Order ID":"561924350","Ship Date":"12/12/2012","Units Sold":"4757","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"225719.65","Total Cost":"151225.03","Total Profit":"74494.62"},{"Region":"Asia","Country":"Laos","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"10/13/2010","Order ID":"536621892","Ship Date":"10/14/2010","Units Sold":"7198","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4810207.46","Total Cost":"3617282.92","Total Profit":"1192924.54"},{"Region":"Europe","Country":"Estonia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/24/2014","Order ID":"538524329","Ship Date":"6/5/2014","Units Sold":"171","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"43652.88","Total Cost":"27260.82","Total Profit":"16392.06"},{"Region":"Europe","Country":"Andorra","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"10/3/2013","Order ID":"944242990","Ship Date":"11/12/2013","Units Sold":"1339","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"204304.62","Total Cost":"130472.16","Total Profit":"73832.46"},{"Region":"Asia","Country":"Myanmar","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"5/27/2011","Order ID":"400701701","Ship Date":"7/2/2011","Units Sold":"5393","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"50316.69","Total Cost":"37319.56","Total Profit":"12997.13"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"12/5/2010","Order ID":"775136792","Ship Date":"12/19/2010","Units Sold":"9057","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1863024.90","Total Cost":"1060665.27","Total Profit":"802359.63"},{"Region":"Asia","Country":"Maldives","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/19/2013","Order ID":"405097091","Ship Date":"4/14/2013","Units Sold":"6086","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2660799.20","Total Cost":"1602626.38","Total Profit":"1058172.82"},{"Region":"Asia","Country":"Taiwan","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/17/2012","Order ID":"848443925","Ship Date":"9/25/2012","Units Sold":"2267","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"991132.40","Total Cost":"596969.11","Total Profit":"394163.29"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/18/2015","Order ID":"133351123","Ship Date":"12/21/2015","Units Sold":"415","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"105941.20","Total Cost":"66159.30","Total Profit":"39781.90"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"12/5/2015","Order ID":"408305013","Ship Date":"1/13/2016","Units Sold":"5382","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"255375.90","Total Cost":"171093.78","Total Profit":"84282.12"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"1/31/2010","Order ID":"292104423","Ship Date":"3/22/2010","Units Sold":"9045","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"988437.60","Total Cost":"324172.80","Total Profit":"664264.80"},{"Region":"Asia","Country":"Myanmar","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"3/19/2012","Order ID":"723860681","Ship Date":"3/23/2012","Units Sold":"5316","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3552523.32","Total Cost":"2671502.64","Total Profit":"881020.68"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"8/23/2010","Order ID":"912997615","Ship Date":"9/1/2010","Units Sold":"5138","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"47937.54","Total Cost":"35554.96","Total Profit":"12382.58"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/29/2017","Order ID":"589251554","Ship Date":"8/4/2017","Units Sold":"1484","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"121287.32","Total Cost":"84098.28","Total Profit":"37189.04"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"11/14/2011","Order ID":"452671325","Ship Date":"12/25/2011","Units Sold":"4359","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"896646.30","Total Cost":"510482.49","Total Profit":"386163.81"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/20/2011","Order ID":"823618257","Ship Date":"12/5/2011","Units Sold":"5800","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"474034.00","Total Cost":"328686.00","Total Profit":"145348.00"},{"Region":"Europe","Country":"Albania","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"6/16/2017","Order ID":"292766177","Ship Date":"6/27/2017","Units Sold":"4873","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3173346.33","Total Cost":"2558130.08","Total Profit":"615216.25"},{"Region":"Europe","Country":"San Marino","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"12/3/2014","Order ID":"671101415","Ship Date":"12/14/2014","Units Sold":"2677","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"24976.41","Total Cost":"18524.84","Total Profit":"6451.57"},{"Region":"Europe","Country":"Kosovo","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"4/13/2010","Order ID":"239922797","Ship Date":"4/18/2010","Units Sold":"7342","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"68500.86","Total Cost":"50806.64","Total Profit":"17694.22"},{"Region":"Asia","Country":"Malaysia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/5/2010","Order ID":"500841653","Ship Date":"9/25/2010","Units Sold":"9030","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1857471.00","Total Cost":"1057503.30","Total Profit":"799967.70"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/20/2012","Order ID":"325781810","Ship Date":"1/6/2013","Units Sold":"4932","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2080761.48","Total Cost":"1798651.08","Total Profit":"282110.40"},{"Region":"Europe","Country":"Netherlands","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/28/2015","Order ID":"906979596","Ship Date":"2/20/2015","Units Sold":"4272","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1867718.40","Total Cost":"1124945.76","Total Profit":"742772.64"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"3/9/2012","Order ID":"806983840","Ship Date":"3/12/2012","Units Sold":"3306","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2209300.62","Total Cost":"1661397.24","Total Profit":"547903.38"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"9/18/2015","Order ID":"908655869","Ship Date":"10/23/2015","Units Sold":"319","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"49145.14","Total Cost":"29006.67","Total Profit":"20138.47"},{"Region":"Europe","Country":"Ukraine","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"8/16/2011","Order ID":"365169513","Ship Date":"9/19/2011","Units Sold":"629","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"29846.05","Total Cost":"19995.91","Total Profit":"9850.14"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/29/2017","Order ID":"650011098","Ship Date":"4/29/2017","Units Sold":"1583","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1030865.43","Total Cost":"831011.68","Total Profit":"199853.75"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"11/15/2016","Order ID":"606979453","Ship Date":"12/27/2016","Units Sold":"7563","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1165155.78","Total Cost":"687703.59","Total Profit":"477452.19"},{"Region":"Europe","Country":"San Marino","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/17/2011","Order ID":"500185906","Ship Date":"3/7/2011","Units Sold":"4980","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3327984.60","Total Cost":"2502649.20","Total Profit":"825335.40"},{"Region":"Europe","Country":"Austria","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"9/13/2012","Order ID":"664054286","Ship Date":"10/3/2012","Units Sold":"7275","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"795012.00","Total Cost":"260736.00","Total Profit":"534276.00"},{"Region":"Europe","Country":"Romania","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/19/2013","Order ID":"153320920","Ship Date":"3/31/2013","Units Sold":"9922","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1528583.32","Total Cost":"902207.46","Total Profit":"626375.86"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"1/23/2016","Order ID":"793034636","Ship Date":"2/20/2016","Units Sold":"5427","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3626701.29","Total Cost":"2727284.58","Total Profit":"899416.71"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/11/2011","Order ID":"428556764","Ship Date":"3/1/2011","Units Sold":"8325","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1282549.50","Total Cost":"756992.25","Total Profit":"525557.25"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/2/2015","Order ID":"575561130","Ship Date":"8/5/2015","Units Sold":"183","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"1707.39","Total Cost":"1266.36","Total Profit":"441.03"},{"Region":"Europe","Country":"Denmark","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/13/2017","Order ID":"570034062","Ship Date":"3/22/2017","Units Sold":"4601","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2011557.20","Total Cost":"1211581.33","Total Profit":"799975.87"},{"Region":"Europe","Country":"Switzerland","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"8/11/2016","Order ID":"718274390","Ship Date":"8/31/2016","Units Sold":"2209","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"241399.52","Total Cost":"79170.56","Total Profit":"162228.96"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/17/2015","Order ID":"946893441","Ship Date":"3/19/2015","Units Sold":"5666","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"872903.96","Total Cost":"515209.38","Total Profit":"357694.58"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/25/2011","Order ID":"352815043","Ship Date":"10/27/2011","Units Sold":"4667","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"510009.76","Total Cost":"167265.28","Total Profit":"342744.48"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"7/27/2013","Order ID":"353275525","Ship Date":"9/13/2013","Units Sold":"933","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"191918.10","Total Cost":"109263.63","Total Profit":"82654.47"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"3/29/2010","Order ID":"635823714","Ship Date":"4/24/2010","Units Sold":"3221","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"491460.18","Total Cost":"313854.24","Total Profit":"177605.94"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/16/2015","Order ID":"508320939","Ship Date":"1/24/2015","Units Sold":"2317","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"476606.90","Total Cost":"271343.87","Total Profit":"205263.03"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/1/2015","Order ID":"248941028","Ship Date":"11/24/2015","Units Sold":"6037","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"56325.21","Total Cost":"41776.04","Total Profit":"14549.17"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"9/9/2016","Order ID":"656170308","Ship Date":"9/20/2016","Units Sold":"4231","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"39475.23","Total Cost":"29278.52","Total Profit":"10196.71"},{"Region":"Europe","Country":"Romania","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/21/2011","Order ID":"798807609","Ship Date":"5/24/2011","Units Sold":"3778","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1651741.60","Total Cost":"994860.74","Total Profit":"656880.86"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/25/2017","Order ID":"265964257","Ship Date":"8/9/2017","Units Sold":"3589","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"392205.92","Total Cost":"128629.76","Total Profit":"263576.16"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"12/14/2011","Order ID":"517064082","Ship Date":"12/28/2011","Units Sold":"9607","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4200180.40","Total Cost":"2529811.31","Total Profit":"1670369.09"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/13/2010","Order ID":"831843411","Ship Date":"9/21/2010","Units Sold":"9806","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"465294.70","Total Cost":"311732.74","Total Profit":"153561.96"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"10/6/2011","Order ID":"560351073","Ship Date":"10/17/2011","Units Sold":"9190","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"436065.50","Total Cost":"292150.10","Total Profit":"143915.40"},{"Region":"Asia","Country":"North Korea","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/30/2014","Order ID":"472948396","Ship Date":"4/16/2014","Units Sold":"4795","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"391895.35","Total Cost":"271732.65","Total Profit":"120162.70"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"7/9/2014","Order ID":"510309207","Ship Date":"7/22/2014","Units Sold":"689","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"56311.97","Total Cost":"39045.63","Total Profit":"17266.34"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/14/2010","Order ID":"233419835","Ship Date":"3/3/2010","Units Sold":"2971","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1934744.91","Total Cost":"1559656.16","Total Profit":"375088.75"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"8/31/2010","Order ID":"173579108","Ship Date":"9/5/2010","Units Sold":"4770","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"734866.20","Total Cost":"433736.10","Total Profit":"301130.10"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/10/2012","Order ID":"482398355","Ship Date":"4/16/2012","Units Sold":"1248","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"136381.44","Total Cost":"44728.32","Total Profit":"91653.12"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"4/4/2015","Order ID":"481801402","Ship Date":"5/4/2015","Units Sold":"4596","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"701257.68","Total Cost":"447834.24","Total Profit":"253423.44"},{"Region":"Europe","Country":"Monaco","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/28/2013","Order ID":"914024579","Ship Date":"2/2/2014","Units Sold":"9039","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"987781.92","Total Cost":"323957.76","Total Profit":"663824.16"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/13/2014","Order ID":"791616714","Ship Date":"1/27/2015","Units Sold":"5832","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3897350.64","Total Cost":"2930813.28","Total Profit":"966537.36"},{"Region":"Asia","Country":"India","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"8/12/2010","Order ID":"547439134","Ship Date":"8/20/2010","Units Sold":"8260","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5378994.60","Total Cost":"4336169.60","Total Profit":"1042825.00"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"6/13/2013","Order ID":"684665668","Ship Date":"7/2/2013","Units Sold":"6641","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1366053.70","Total Cost":"777727.51","Total Profit":"588326.19"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"4/11/2014","Order ID":"426782643","Ship Date":"5/12/2014","Units Sold":"3323","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"511941.38","Total Cost":"302160.39","Total Profit":"209780.99"},{"Region":"Europe","Country":"Monaco","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"5/4/2016","Order ID":"867588889","Ship Date":"6/10/2016","Units Sold":"7687","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1581215.90","Total Cost":"900224.57","Total Profit":"680991.33"},{"Region":"Europe","Country":"Denmark","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"5/16/2016","Order ID":"921195733","Ship Date":"6/27/2016","Units Sold":"1143","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"54235.35","Total Cost":"36335.97","Total Profit":"17899.38"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"12/18/2015","Order ID":"472027003","Ship Date":"1/28/2016","Units Sold":"2135","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"900735.15","Total Cost":"778613.15","Total Profit":"122122.00"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/10/2010","Order ID":"824819028","Ship Date":"4/21/2010","Units Sold":"1135","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"174858.10","Total Cost":"103205.55","Total Profit":"71652.55"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/14/2014","Order ID":"654620635","Ship Date":"3/26/2014","Units Sold":"5648","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"267997.60","Total Cost":"179549.92","Total Profit":"88447.68"},{"Region":"Asia","Country":"South Korea","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"8/13/2013","Order ID":"956793153","Ship Date":"9/26/2013","Units Sold":"5211","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3393455.31","Total Cost":"2735566.56","Total Profit":"657888.75"},{"Region":"Asia","Country":"Indonesia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/7/2014","Order ID":"997010409","Ship Date":"7/8/2014","Units Sold":"6391","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4161883.11","Total Cost":"3355019.36","Total Profit":"806863.75"},{"Region":"Europe","Country":"Germany","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"2/27/2016","Order ID":"561258733","Ship Date":"3/22/2016","Units Sold":"7786","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"369445.70","Total Cost":"247516.94","Total Profit":"121928.76"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"2/28/2015","Order ID":"405836951","Ship Date":"3/10/2015","Units Sold":"5027","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2197804.40","Total Cost":"1323759.91","Total Profit":"874044.49"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"10/11/2016","Order ID":"907356393","Ship Date":"11/2/2016","Units Sold":"5775","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2524830.00","Total Cost":"1520730.75","Total Profit":"1004099.25"},{"Region":"North America","Country":"Mexico","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"12/20/2015","Order ID":"712740886","Ship Date":"12/30/2015","Units Sold":"4722","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"224058.90","Total Cost":"150112.38","Total Profit":"73946.52"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"5/1/2016","Order ID":"789226758","Ship Date":"6/8/2016","Units Sold":"8591","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1323529.46","Total Cost":"781179.63","Total Profit":"542349.83"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/4/2011","Order ID":"374362838","Ship Date":"3/12/2011","Units Sold":"1138","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"10617.54","Total Cost":"7874.96","Total Profit":"2742.58"},{"Region":"Europe","Country":"Ireland","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"7/28/2017","Order ID":"126010453","Ship Date":"9/2/2017","Units Sold":"8148","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1255280.88","Total Cost":"740897.64","Total Profit":"514383.24"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/15/2012","Order ID":"772343432","Ship Date":"2/8/2012","Units Sold":"2440","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"375906.40","Total Cost":"221869.20","Total Profit":"154037.20"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/28/2017","Order ID":"861848104","Ship Date":"9/6/2017","Units Sold":"8861","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1352011.38","Total Cost":"863415.84","Total Profit":"488595.54"},{"Region":"Europe","Country":"Romania","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/4/2016","Order ID":"813323295","Ship Date":"9/13/2016","Units Sold":"9292","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1431525.52","Total Cost":"844921.56","Total Profit":"586603.96"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/18/2015","Order ID":"665880334","Ship Date":"5/29/2015","Units Sold":"7643","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3341519.60","Total Cost":"2012631.19","Total Profit":"1328888.41"},{"Region":"Asia","Country":"Maldives","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/1/2017","Order ID":"528943049","Ship Date":"3/1/2017","Units Sold":"4857","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"741081.06","Total Cost":"473266.08","Total Profit":"267814.98"},{"Region":"Europe","Country":"Vatican City","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"8/7/2011","Order ID":"132247769","Ship Date":"9/15/2011","Units Sold":"3909","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"319482.57","Total Cost":"221523.03","Total Profit":"97959.54"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/25/2015","Order ID":"175843322","Ship Date":"8/7/2015","Units Sold":"4801","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"392385.73","Total Cost":"272072.67","Total Profit":"120313.06"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/21/2016","Order ID":"980091035","Ship Date":"12/7/2016","Units Sold":"9572","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1460495.76","Total Cost":"932695.68","Total Profit":"527800.08"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"6/27/2015","Order ID":"235664737","Ship Date":"8/14/2015","Units Sold":"7287","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4869683.49","Total Cost":"3662008.98","Total Profit":"1207674.51"},{"Region":"North America","Country":"Canada","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/3/2012","Order ID":"653550755","Ship Date":"12/14/2012","Units Sold":"9047","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"988656.16","Total Cost":"324244.48","Total Profit":"664411.68"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"12/14/2014","Order ID":"515047919","Ship Date":"1/20/2015","Units Sold":"2980","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"27803.40","Total Cost":"20621.60","Total Profit":"7181.80"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"10/26/2013","Order ID":"421767556","Ship Date":"11/4/2013","Units Sold":"9247","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6179492.69","Total Cost":"4646987.38","Total Profit":"1532505.31"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"11/14/2013","Order ID":"145633494","Ship Date":"12/8/2013","Units Sold":"5042","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1287121.76","Total Cost":"803795.64","Total Profit":"483326.12"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"1/9/2013","Order ID":"878882062","Ship Date":"1/13/2013","Units Sold":"9588","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1047776.64","Total Cost":"343633.92","Total Profit":"704142.72"},{"Region":"Europe","Country":"Latvia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/17/2014","Order ID":"284062087","Ship Date":"2/3/2014","Units Sold":"9139","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3855652.71","Total Cost":"3332901.91","Total Profit":"522750.80"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"3/15/2013","Order ID":"144034898","Ship Date":"4/23/2013","Units Sold":"1982","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"302413.56","Total Cost":"193126.08","Total Profit":"109287.48"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/10/2011","Order ID":"511974322","Ship Date":"9/16/2011","Units Sold":"3434","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"706373.80","Total Cost":"402155.74","Total Profit":"304218.06"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"6/7/2011","Order ID":"161366689","Ship Date":"7/16/2011","Units Sold":"844","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"68980.12","Total Cost":"47829.48","Total Profit":"21150.64"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"2/20/2012","Order ID":"636010825","Ship Date":"3/4/2012","Units Sold":"8592","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5741775.84","Total Cost":"4317823.68","Total Profit":"1423952.16"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"3/31/2014","Order ID":"400018060","Ship Date":"5/12/2014","Units Sold":"3088","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1302796.32","Total Cost":"1126162.72","Total Profit":"176633.60"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"7/22/2015","Order ID":"687812221","Ship Date":"9/3/2015","Units Sold":"7776","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3399667.20","Total Cost":"2047654.08","Total Profit":"1352013.12"},{"Region":"Asia","Country":"Nepal","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/6/2014","Order ID":"554129636","Ship Date":"1/25/2015","Units Sold":"8128","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"664301.44","Total Cost":"460613.76","Total Profit":"203687.68"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"2/2/2016","Order ID":"924019134","Ship Date":"3/6/2016","Units Sold":"6650","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"315542.50","Total Cost":"211403.50","Total Profit":"104139.00"},{"Region":"Central America and the Caribbean","Country":"Saint Lucia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"3/27/2016","Order ID":"542842042","Ship Date":"4/22/2016","Units Sold":"7878","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"373811.10","Total Cost":"250441.62","Total Profit":"123369.48"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/8/2017","Order ID":"926272189","Ship Date":"6/9/2017","Units Sold":"3379","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"520568.74","Total Cost":"307252.47","Total Profit":"213316.27"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"3/28/2015","Order ID":"510295903","Ship Date":"5/14/2015","Units Sold":"6753","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1723905.84","Total Cost":"1076563.26","Total Profit":"647342.58"},{"Region":"Central America and the Caribbean","Country":"Saint Lucia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"1/15/2010","Order ID":"501212012","Ship Date":"2/17/2010","Units Sold":"8627","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3639645.03","Total Cost":"3146180.63","Total Profit":"493464.40"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/22/2010","Order ID":"825631844","Ship Date":"1/11/2011","Units Sold":"1665","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"15534.45","Total Cost":"11521.80","Total Profit":"4012.65"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/15/2016","Order ID":"580479228","Ship Date":"8/4/2016","Units Sold":"5558","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1418846.24","Total Cost":"886056.36","Total Profit":"532789.88"},{"Region":"Europe","Country":"Serbia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"8/22/2011","Order ID":"282990491","Ship Date":"9/27/2011","Units Sold":"2030","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"96323.50","Total Cost":"64533.70","Total Profit":"31789.80"},{"Region":"Europe","Country":"Germany","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"1/3/2016","Order ID":"520714461","Ship Date":"1/25/2016","Units Sold":"9835","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4149288.15","Total Cost":"3586726.15","Total Profit":"562562.00"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"8/25/2012","Order ID":"601512467","Ship Date":"9/13/2012","Units Sold":"9761","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1489333.38","Total Cost":"951111.84","Total Profit":"538221.54"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/24/2012","Order ID":"803558337","Ship Date":"3/1/2012","Units Sold":"9624","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"89791.92","Total Cost":"66598.08","Total Profit":"23193.84"},{"Region":"Europe","Country":"Spain","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"1/1/2011","Order ID":"125338399","Ship Date":"1/27/2011","Units Sold":"9272","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6196199.44","Total Cost":"4659550.88","Total Profit":"1536648.56"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"7/22/2010","Order ID":"335651481","Ship Date":"7/29/2010","Units Sold":"5587","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"52126.71","Total Cost":"38662.04","Total Profit":"13464.67"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/24/2013","Order ID":"123608911","Ship Date":"5/8/2013","Units Sold":"7478","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1140993.24","Total Cost":"728656.32","Total Profit":"412336.92"},{"Region":"Europe","Country":"Ukraine","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/19/2011","Order ID":"948634517","Ship Date":"3/10/2011","Units Sold":"889","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"136959.34","Total Cost":"80836.77","Total Profit":"56122.57"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"8/12/2012","Order ID":"290464627","Ship Date":"9/6/2012","Units Sold":"3793","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1600228.77","Total Cost":"1383269.17","Total Profit":"216959.60"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/12/2015","Order ID":"199148070","Ship Date":"10/30/2015","Units Sold":"1194","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"304804.32","Total Cost":"190347.48","Total Profit":"114456.84"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/29/2011","Order ID":"545046174","Ship Date":"12/31/2011","Units Sold":"130","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"54845.70","Total Cost":"47409.70","Total Profit":"7436.00"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"10/14/2012","Order ID":"368832767","Ship Date":"10/28/2012","Units Sold":"4667","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1968960.63","Total Cost":"1702008.23","Total Profit":"266952.40"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/7/2015","Order ID":"131494176","Ship Date":"11/17/2015","Units Sold":"904","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"381388.56","Total Cost":"329679.76","Total Profit":"51708.80"},{"Region":"Asia","Country":"Nepal","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/29/2015","Order ID":"364329230","Ship Date":"9/17/2015","Units Sold":"1970","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"93476.50","Total Cost":"62626.30","Total Profit":"30850.20"},{"Region":"Europe","Country":"Germany","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"7/27/2015","Order ID":"318949258","Ship Date":"9/6/2015","Units Sold":"3028","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"143678.60","Total Cost":"96260.12","Total Profit":"47418.48"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"5/23/2016","Order ID":"217278087","Ship Date":"5/23/2016","Units Sold":"6269","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"297464.05","Total Cost":"199291.51","Total Profit":"98172.54"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"3/5/2012","Order ID":"801552045","Ship Date":"4/5/2012","Units Sold":"5917","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1510491.76","Total Cost":"943288.14","Total Profit":"567203.62"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"1/18/2017","Order ID":"184319961","Ship Date":"2/9/2017","Units Sold":"3227","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1410844.40","Total Cost":"849765.91","Total Profit":"561078.49"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"11/30/2015","Order ID":"598443162","Ship Date":"12/27/2015","Units Sold":"1485","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"626506.65","Total Cost":"541564.65","Total Profit":"84942.00"},{"Region":"Europe","Country":"Estonia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/1/2013","Order ID":"747095477","Ship Date":"10/7/2013","Units Sold":"1009","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"47877.05","Total Cost":"32076.11","Total Profit":"15800.94"},{"Region":"North America","Country":"Canada","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/11/2016","Order ID":"753763234","Ship Date":"4/14/2016","Units Sold":"4146","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"852832.20","Total Cost":"485538.06","Total Profit":"367294.14"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"11/4/2011","Order ID":"812245261","Ship Date":"11/26/2011","Units Sold":"278","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"57184.60","Total Cost":"32556.58","Total Profit":"24628.02"},{"Region":"Europe","Country":"Estonia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/27/2012","Order ID":"736652886","Ship Date":"5/15/2012","Units Sold":"814","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"125404.84","Total Cost":"74017.02","Total Profit":"51387.82"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"6/24/2011","Order ID":"411409938","Ship Date":"7/21/2011","Units Sold":"4198","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1771094.22","Total Cost":"1530968.62","Total Profit":"240125.60"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"3/21/2012","Order ID":"241252744","Ship Date":"4/5/2012","Units Sold":"903","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"394791.60","Total Cost":"237786.99","Total Profit":"157004.61"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"5/21/2014","Order ID":"701230132","Ship Date":"5/29/2014","Units Sold":"8434","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"921667.52","Total Cost":"302274.56","Total Profit":"619392.96"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/27/2011","Order ID":"986703431","Ship Date":"6/11/2011","Units Sold":"6327","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"517105.71","Total Cost":"358551.09","Total Profit":"158554.62"},{"Region":"Europe","Country":"Serbia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/8/2016","Order ID":"363346469","Ship Date":"10/12/2016","Units Sold":"1149","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"236349.30","Total Cost":"134559.39","Total Profit":"101789.91"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"6/7/2014","Order ID":"417145574","Ship Date":"7/2/2014","Units Sold":"1500","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"231090.00","Total Cost":"136395.00","Total Profit":"94695.00"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"5/26/2016","Order ID":"104399573","Ship Date":"7/3/2016","Units Sold":"3009","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1269467.01","Total Cost":"1097352.21","Total Profit":"172114.80"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/12/2012","Order ID":"701719796","Ship Date":"10/15/2012","Units Sold":"3336","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2229348.72","Total Cost":"1676473.44","Total Profit":"552875.28"},{"Region":"Asia","Country":"North Korea","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/8/2013","Order ID":"856030070","Ship Date":"6/21/2013","Units Sold":"7176","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1094914.08","Total Cost":"699229.44","Total Profit":"395684.64"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/20/2014","Order ID":"634566724","Ship Date":"9/30/2014","Units Sold":"1250","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"190725.00","Total Cost":"121800.00","Total Profit":"68925.00"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/4/2017","Order ID":"174878585","Ship Date":"3/22/2017","Units Sold":"9314","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"761233.22","Total Cost":"527824.38","Total Profit":"233408.84"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"6/2/2015","Order ID":"134826982","Ship Date":"6/12/2015","Units Sold":"7155","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4781471.85","Total Cost":"3595673.70","Total Profit":"1185798.15"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/29/2016","Order ID":"342585742","Ship Date":"3/22/2016","Units Sold":"7589","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"360098.05","Total Cost":"241254.31","Total Profit":"118843.74"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"2/13/2012","Order ID":"246641194","Ship Date":"3/3/2012","Units Sold":"5465","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"833849.70","Total Cost":"532509.60","Total Profit":"301340.10"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"12/31/2015","Order ID":"265792167","Ship Date":"1/7/2016","Units Sold":"2663","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"547779.10","Total Cost":"311863.93","Total Profit":"235915.17"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/11/2011","Order ID":"439149987","Ship Date":"4/16/2011","Units Sold":"3095","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"472235.10","Total Cost":"301576.80","Total Profit":"170658.30"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"8/1/2016","Order ID":"876138484","Ship Date":"8/20/2016","Units Sold":"7702","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5147015.54","Total Cost":"3870563.08","Total Profit":"1276452.46"},{"Region":"Europe","Country":"Poland","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/30/2013","Order ID":"406493985","Ship Date":"10/19/2013","Units Sold":"9458","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6320497.66","Total Cost":"4753023.32","Total Profit":"1567474.34"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"2/28/2012","Order ID":"630265319","Ship Date":"3/13/2012","Units Sold":"8369","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"78082.77","Total Cost":"57913.48","Total Profit":"20169.29"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"9/16/2014","Order ID":"967813813","Ship Date":"10/11/2014","Units Sold":"6469","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"996614.14","Total Cost":"588226.17","Total Profit":"408387.97"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/28/2013","Order ID":"909813296","Ship Date":"1/9/2014","Units Sold":"2827","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1235964.40","Total Cost":"744433.91","Total Profit":"491530.49"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/27/2011","Order ID":"467250096","Ship Date":"5/15/2011","Units Sold":"8542","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3603784.38","Total Cost":"3115181.98","Total Profit":"488602.40"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/10/2012","Order ID":"621423041","Ship Date":"8/25/2012","Units Sold":"1742","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"268372.52","Total Cost":"158400.06","Total Profit":"109972.46"},{"Region":"Europe","Country":"Croatia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/7/2017","Order ID":"173943459","Ship Date":"7/5/2017","Units Sold":"2590","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1092695.10","Total Cost":"944547.10","Total Profit":"148148.00"},{"Region":"Europe","Country":"Russia","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"3/31/2015","Order ID":"696735179","Ship Date":"4/8/2015","Units Sold":"8277","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5531270.79","Total Cost":"4159523.58","Total Profit":"1371747.21"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/12/2011","Order ID":"682034528","Ship Date":"6/26/2011","Units Sold":"8028","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3386932.92","Total Cost":"2927731.32","Total Profit":"459201.60"},{"Region":"Central America and the Caribbean","Country":"Saint Lucia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"5/19/2016","Order ID":"492390334","Ship Date":"5/28/2016","Units Sold":"8097","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"661767.81","Total Cost":"458856.99","Total Profit":"202910.82"},{"Region":"Asia","Country":"Cambodia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"3/3/2011","Order ID":"110663926","Ship Date":"3/24/2011","Units Sold":"6770","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4408691.70","Total Cost":"3553979.20","Total Profit":"854712.50"},{"Region":"Asia","Country":"Vietnam","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/23/2012","Order ID":"490029132","Ship Date":"2/8/2012","Units Sold":"9365","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3950999.85","Total Cost":"3415321.85","Total Profit":"535678.00"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"9/2/2013","Order ID":"403972280","Ship Date":"9/27/2013","Units Sold":"3230","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"153263.50","Total Cost":"102681.70","Total Profit":"50581.80"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"6/13/2015","Order ID":"496292197","Ship Date":"6/26/2015","Units Sold":"2745","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"25610.85","Total Cost":"18995.40","Total Profit":"6615.45"},{"Region":"Europe","Country":"Slovakia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/7/2010","Order ID":"131100213","Ship Date":"5/20/2010","Units Sold":"4321","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2813878.41","Total Cost":"2268352.16","Total Profit":"545526.25"},{"Region":"Asia","Country":"North Korea","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"4/23/2011","Order ID":"542820155","Ship Date":"6/6/2011","Units Sold":"1401","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"153101.28","Total Cost":"50211.84","Total Profit":"102889.44"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/13/2017","Order ID":"786188352","Ship Date":"4/20/2017","Units Sold":"9459","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2414693.52","Total Cost":"1507953.78","Total Profit":"906739.74"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/3/2016","Order ID":"886253631","Ship Date":"8/18/2016","Units Sold":"999","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"650558.79","Total Cost":"524435.04","Total Profit":"126123.75"},{"Region":"Asia","Country":"Tajikistan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/5/2014","Order ID":"488377320","Ship Date":"4/16/2014","Units Sold":"557","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"372226.39","Total Cost":"279914.78","Total Profit":"92311.61"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/9/2012","Order ID":"208233249","Ship Date":"5/28/2012","Units Sold":"9701","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6482887.27","Total Cost":"4875140.54","Total Profit":"1607746.73"},{"Region":"Asia","Country":"Indonesia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"9/30/2013","Order ID":"281807744","Ship Date":"10/11/2013","Units Sold":"2029","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"517963.12","Total Cost":"323463.18","Total Profit":"194499.94"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"7/9/2011","Order ID":"115399634","Ship Date":"8/2/2011","Units Sold":"8171","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5321036.91","Total Cost":"4289448.16","Total Profit":"1031588.75"},{"Region":"Europe","Country":"Denmark","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"8/16/2014","Order ID":"535620248","Ship Date":"9/9/2014","Units Sold":"789","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"121553.34","Total Cost":"71743.77","Total Profit":"49809.57"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"3/29/2014","Order ID":"639393413","Ship Date":"5/5/2014","Units Sold":"9574","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4039174.86","Total Cost":"3491542.06","Total Profit":"547632.80"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"3/6/2010","Order ID":"943955457","Ship Date":"3/8/2010","Units Sold":"6251","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1595755.28","Total Cost":"996534.42","Total Profit":"599220.86"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/3/2014","Order ID":"236855208","Ship Date":"10/19/2014","Units Sold":"9574","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6234684.54","Total Cost":"5025967.04","Total Profit":"1208717.50"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/25/2010","Order ID":"525953996","Ship Date":"10/3/2010","Units Sold":"330","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"36062.40","Total Cost":"11827.20","Total Profit":"24235.20"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/5/2016","Order ID":"289425647","Ship Date":"7/24/2016","Units Sold":"6335","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4125415.35","Total Cost":"3325621.60","Total Profit":"799793.75"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"5/10/2013","Order ID":"325756490","Ship Date":"5/29/2013","Units Sold":"7439","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1146052.34","Total Cost":"676428.27","Total Profit":"469624.07"},{"Region":"Asia","Country":"Laos","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"3/13/2010","Order ID":"603745353","Ship Date":"4/22/2010","Units Sold":"521","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"42581.33","Total Cost":"29525.07","Total Profit":"13056.26"},{"Region":"Asia","Country":"Philippines","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/6/2017","Order ID":"712503564","Ship Date":"1/29/2017","Units Sold":"4493","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"924210.10","Total Cost":"526175.23","Total Profit":"398034.87"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/17/2010","Order ID":"311454951","Ship Date":"10/18/2010","Units Sold":"5296","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"578746.88","Total Cost":"189808.64","Total Profit":"388938.24"},{"Region":"Asia","Country":"Laos","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"12/31/2014","Order ID":"480335843","Ship Date":"1/20/2015","Units Sold":"905","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"395666.00","Total Cost":"238313.65","Total Profit":"157352.35"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/11/2012","Order ID":"569195067","Ship Date":"7/23/2012","Units Sold":"6324","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"59002.92","Total Cost":"43762.08","Total Profit":"15240.84"},{"Region":"Europe","Country":"Russia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/19/2010","Order ID":"448393952","Ship Date":"2/13/2010","Units Sold":"8590","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3624035.10","Total Cost":"3132687.10","Total Profit":"491348.00"},{"Region":"Europe","Country":"Kosovo","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"7/12/2011","Order ID":"958606326","Ship Date":"8/23/2011","Units Sold":"1769","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"144580.37","Total Cost":"100249.23","Total Profit":"44331.14"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/24/2014","Order ID":"760818517","Ship Date":"6/5/2014","Units Sold":"1961","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"214298.08","Total Cost":"70282.24","Total Profit":"144015.84"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"5/19/2013","Order ID":"386329352","Ship Date":"6/11/2013","Units Sold":"2295","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1533679.65","Total Cost":"1153329.30","Total Profit":"380350.35"},{"Region":"Asia","Country":"Japan","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"11/5/2011","Order ID":"886750161","Ship Date":"11/27/2011","Units Sold":"7933","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1222157.98","Total Cost":"721347.69","Total Profit":"500810.29"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"6/6/2010","Order ID":"684004771","Ship Date":"7/25/2010","Units Sold":"1067","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"9955.11","Total Cost":"7383.64","Total Profit":"2571.47"},{"Region":"Asia","Country":"South Korea","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"11/1/2010","Order ID":"520329511","Ship Date":"11/5/2010","Units Sold":"5920","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"912035.20","Total Cost":"538305.60","Total Profit":"373729.60"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/18/2012","Order ID":"308273208","Ship Date":"2/15/2012","Units Sold":"3748","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"571869.84","Total Cost":"365205.12","Total Profit":"206664.72"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"2/11/2014","Order ID":"480697190","Ship Date":"3/6/2014","Units Sold":"7836","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5236563.72","Total Cost":"3937903.44","Total Profit":"1298660.28"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/12/2014","Order ID":"640775287","Ship Date":"6/11/2014","Units Sold":"8502","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1297235.16","Total Cost":"828434.88","Total Profit":"468800.28"},{"Region":"Asia","Country":"Laos","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/7/2011","Order ID":"911993825","Ship Date":"3/10/2011","Units Sold":"8094","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1664935.80","Total Cost":"947888.34","Total Profit":"717047.46"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"5/22/2015","Order ID":"588151633","Ship Date":"6/27/2015","Units Sold":"5993","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2620139.60","Total Cost":"1578136.69","Total Profit":"1042002.91"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"2/23/2016","Order ID":"383360040","Ship Date":"3/29/2016","Units Sold":"3610","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"550813.80","Total Cost":"351758.40","Total Profit":"199055.40"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/15/2015","Order ID":"182042872","Ship Date":"2/26/2015","Units Sold":"9386","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6272382.22","Total Cost":"4716840.44","Total Profit":"1555541.78"},{"Region":"Europe","Country":"Armenia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"9/21/2014","Order ID":"388936460","Ship Date":"10/8/2014","Units Sold":"3796","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1659611.20","Total Cost":"999600.68","Total Profit":"660010.52"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/14/2015","Order ID":"579089629","Ship Date":"2/19/2015","Units Sold":"4345","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"662960.10","Total Cost":"423376.80","Total Profit":"239583.30"},{"Region":"Asia","Country":"Bhutan","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/27/2017","Order ID":"847863709","Ship Date":"4/11/2017","Units Sold":"568","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"144999.04","Total Cost":"90550.56","Total Profit":"54448.48"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"10/5/2011","Order ID":"460932528","Ship Date":"11/19/2011","Units Sold":"9033","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2305944.24","Total Cost":"1440040.86","Total Profit":"865903.38"},{"Region":"Asia","Country":"Thailand","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"3/7/2013","Order ID":"104282414","Ship Date":"3/10/2013","Units Sold":"8339","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"395685.55","Total Cost":"265096.81","Total Profit":"130588.74"},{"Region":"Europe","Country":"Finland","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/17/2010","Order ID":"534212195","Ship Date":"8/29/2010","Units Sold":"4115","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"846455.50","Total Cost":"481907.65","Total Profit":"364547.85"},{"Region":"Europe","Country":"Montenegro","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"9/1/2016","Order ID":"327333199","Ship Date":"9/23/2016","Units Sold":"4023","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"619783.38","Total Cost":"365811.39","Total Profit":"253971.99"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"5/19/2011","Order ID":"830569255","Ship Date":"7/2/2011","Units Sold":"2754","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"130677.30","Total Cost":"87549.66","Total Profit":"43127.64"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/31/2013","Order ID":"311156690","Ship Date":"6/21/2013","Units Sold":"7034","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2967574.26","Total Cost":"2565229.46","Total Profit":"402344.80"},{"Region":"Asia","Country":"India","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"1/29/2016","Order ID":"706644332","Ship Date":"2/3/2016","Units Sold":"616","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"157252.48","Total Cost":"98202.72","Total Profit":"59049.76"},{"Region":"Asia","Country":"Philippines","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"9/26/2013","Order ID":"874893510","Ship Date":"10/9/2013","Units Sold":"9286","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4059839.20","Total Cost":"2445282.38","Total Profit":"1614556.82"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/10/2013","Order ID":"644078052","Ship Date":"4/28/2013","Units Sold":"5863","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"640708.64","Total Cost":"210129.92","Total Profit":"430578.72"},{"Region":"Europe","Country":"Belgium","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/18/2014","Order ID":"362684285","Ship Date":"10/14/2014","Units Sold":"5194","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1068405.80","Total Cost":"608269.34","Total Profit":"460136.46"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"11/16/2015","Order ID":"449511039","Ship Date":"11/19/2015","Units Sold":"9160","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2338364.80","Total Cost":"1460287.20","Total Profit":"878077.60"},{"Region":"Europe","Country":"Latvia","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"4/22/2015","Order ID":"943669641","Ship Date":"6/9/2015","Units Sold":"1672","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1117347.44","Total Cost":"840246.88","Total Profit":"277100.56"},{"Region":"Europe","Country":"Moldova ","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"6/24/2016","Order ID":"154583919","Ship Date":"7/10/2016","Units Sold":"3672","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"300112.56","Total Cost":"208092.24","Total Profit":"92020.32"},{"Region":"Europe","Country":"Netherlands","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/15/2016","Order ID":"511990201","Ship Date":"6/12/2016","Units Sold":"8133","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2076192.24","Total Cost":"1296562.86","Total Profit":"779629.38"},{"Region":"Asia","Country":"North Korea","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/19/2016","Order ID":"915937316","Ship Date":"12/1/2016","Units Sold":"5061","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2212669.20","Total Cost":"1332713.13","Total Profit":"879956.07"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"2/1/2013","Order ID":"786786592","Ship Date":"3/5/2013","Units Sold":"6491","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1657022.48","Total Cost":"1034795.22","Total Profit":"622227.26"},{"Region":"Europe","Country":"Lithuania","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/19/2012","Order ID":"515211856","Ship Date":"12/23/2012","Units Sold":"1492","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"227649.36","Total Cost":"145380.48","Total Profit":"82268.88"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/6/2010","Order ID":"112199437","Ship Date":"3/12/2010","Units Sold":"1162","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"179017.72","Total Cost":"105660.66","Total Profit":"73357.06"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/27/2010","Order ID":"559048163","Ship Date":"8/28/2010","Units Sold":"3630","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2425820.10","Total Cost":"1824220.20","Total Profit":"601599.90"},{"Region":"North America","Country":"Canada","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/12/2013","Order ID":"657369363","Ship Date":"1/5/2014","Units Sold":"9058","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3821479.62","Total Cost":"3303362.02","Total Profit":"518117.60"},{"Region":"Europe","Country":"Croatia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/2/2017","Order ID":"179086863","Ship Date":"2/23/2017","Units Sold":"4637","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"378982.01","Total Cost":"262778.79","Total Profit":"116203.22"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/5/2010","Order ID":"316436994","Ship Date":"5/6/2010","Units Sold":"9593","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4047190.77","Total Cost":"3498471.17","Total Profit":"548719.60"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"8/14/2011","Order ID":"531968581","Ship Date":"9/12/2011","Units Sold":"180","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"8541.00","Total Cost":"5722.20","Total Profit":"2818.80"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/6/2017","Order ID":"808542954","Ship Date":"4/6/2017","Units Sold":"4683","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"43692.39","Total Cost":"32406.36","Total Profit":"11286.03"},{"Region":"North America","Country":"United States of America","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/28/2012","Order ID":"299333941","Ship Date":"1/22/2013","Units Sold":"8420","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2149457.60","Total Cost":"1342316.40","Total Profit":"807141.20"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/19/2016","Order ID":"477827870","Ship Date":"6/27/2016","Units Sold":"8740","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3687318.60","Total Cost":"3187390.60","Total Profit":"499928.00"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"8/29/2011","Order ID":"187823569","Ship Date":"10/9/2011","Units Sold":"23","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"5871.44","Total Cost":"3666.66","Total Profit":"2204.78"},{"Region":"Asia","Country":"Mongolia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"6/29/2014","Order ID":"593432366","Ship Date":"7/11/2014","Units Sold":"8679","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"709334.67","Total Cost":"491838.93","Total Profit":"217495.74"},{"Region":"Europe","Country":"Vatican City","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/8/2015","Order ID":"229078090","Ship Date":"3/3/2015","Units Sold":"8152","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3439247.28","Total Cost":"2972952.88","Total Profit":"466294.40"},{"Region":"North America","Country":"United States of America","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/14/2012","Order ID":"849497067","Ship Date":"5/17/2012","Units Sold":"3915","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2616277.05","Total Cost":"1967444.10","Total Profit":"648832.95"},{"Region":"Asia","Country":"Bhutan","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/24/2017","Order ID":"679738128","Ship Date":"8/19/2017","Units Sold":"8472","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1742690.40","Total Cost":"992155.92","Total Profit":"750534.48"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/3/2012","Order ID":"265162599","Ship Date":"10/28/2012","Units Sold":"6360","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"519802.80","Total Cost":"360421.20","Total Profit":"159381.60"},{"Region":"Central America and the Caribbean","Country":"Saint Lucia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"2/25/2015","Order ID":"221444308","Ship Date":"3/19/2015","Units Sold":"9147","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1881537.90","Total Cost":"1071205.17","Total Profit":"810332.73"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/24/2012","Order ID":"784569585","Ship Date":"9/27/2012","Units Sold":"430","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"187996.00","Total Cost":"113231.90","Total Profit":"74764.10"},{"Region":"Asia","Country":"Singapore","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/20/2013","Order ID":"460837256","Ship Date":"8/2/2013","Units Sold":"840","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"354387.60","Total Cost":"306339.60","Total Profit":"48048.00"},{"Region":"Europe","Country":"Croatia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/4/2011","Order ID":"976858651","Ship Date":"5/1/2011","Units Sold":"3038","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2030204.26","Total Cost":"1526716.52","Total Profit":"503487.74"},{"Region":"Europe","Country":"Croatia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"6/2/2012","Order ID":"529557597","Ship Date":"7/4/2012","Units Sold":"6716","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2936235.20","Total Cost":"1768524.28","Total Profit":"1167710.92"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"10/6/2016","Order ID":"536170423","Ship Date":"11/22/2016","Units Sold":"3598","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"33569.34","Total Cost":"24898.16","Total Profit":"8671.18"},{"Region":"Europe","Country":"Norway","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"10/24/2013","Order ID":"684245955","Ship Date":"12/11/2013","Units Sold":"2439","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1028989.71","Total Cost":"889478.91","Total Profit":"139510.80"},{"Region":"Europe","Country":"Netherlands","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"11/10/2016","Order ID":"281645524","Ship Date":"12/6/2016","Units Sold":"4024","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"190938.80","Total Cost":"127922.96","Total Profit":"63015.84"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/9/2013","Order ID":"506542956","Ship Date":"10/18/2013","Units Sold":"6172","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"941723.76","Total Cost":"601399.68","Total Profit":"340324.08"},{"Region":"Asia","Country":"Philippines","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/9/2016","Order ID":"357424581","Ship Date":"4/19/2016","Units Sold":"8731","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3817193.20","Total Cost":"2299134.23","Total Profit":"1518058.97"},{"Region":"Europe","Country":"Portugal","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"4/25/2010","Order ID":"703089225","Ship Date":"6/14/2010","Units Sold":"8581","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3751613.20","Total Cost":"2259634.73","Total Profit":"1491978.47"},{"Region":"Europe","Country":"Portugal","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/16/2013","Order ID":"232648217","Ship Date":"10/15/2013","Units Sold":"4632","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1954194.48","Total Cost":"1689244.08","Total Profit":"264950.40"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/4/2010","Order ID":"405525386","Ship Date":"12/16/2010","Units Sold":"2828","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"26385.24","Total Cost":"19569.76","Total Profit":"6815.48"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"4/15/2010","Order ID":"501457059","Ship Date":"5/29/2010","Units Sold":"1142","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"234909.40","Total Cost":"133739.62","Total Profit":"101169.78"},{"Region":"North America","Country":"Greenland","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"5/28/2017","Order ID":"770492064","Ship Date":"6/2/2017","Units Sold":"4579","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"500393.12","Total Cost":"164111.36","Total Profit":"336281.76"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/28/2016","Order ID":"182991731","Ship Date":"5/13/2016","Units Sold":"174","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"26548.92","Total Cost":"16954.56","Total Profit":"9594.36"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"9/28/2010","Order ID":"479629886","Ship Date":"11/16/2010","Units Sold":"1996","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"304549.68","Total Cost":"194490.24","Total Profit":"110059.44"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"7/1/2013","Order ID":"321392858","Ship Date":"7/13/2013","Units Sold":"6143","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"57314.19","Total Cost":"42509.56","Total Profit":"14804.63"},{"Region":"Asia","Country":"Mongolia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/30/2011","Order ID":"239579474","Ship Date":"9/23/2011","Units Sold":"5745","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"469538.85","Total Cost":"325569.15","Total Profit":"143969.70"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"3/2/2016","Order ID":"385801064","Ship Date":"4/3/2016","Units Sold":"5963","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"282944.35","Total Cost":"189563.77","Total Profit":"93380.58"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/5/2012","Order ID":"981981456","Ship Date":"7/31/2012","Units Sold":"8989","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6007079.03","Total Cost":"4517332.06","Total Profit":"1489746.97"},{"Region":"Europe","Country":"Portugal","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"7/16/2017","Order ID":"970356976","Ship Date":"7/22/2017","Units Sold":"9048","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"429327.60","Total Cost":"287635.92","Total Profit":"141691.68"},{"Region":"Europe","Country":"Switzerland","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"2/3/2015","Order ID":"263476455","Ship Date":"2/15/2015","Units Sold":"7393","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"807907.04","Total Cost":"264965.12","Total Profit":"542941.92"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"10/14/2012","Order ID":"194201219","Ship Date":"11/30/2012","Units Sold":"7311","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1503872.70","Total Cost":"856191.21","Total Profit":"647681.49"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"7/12/2015","Order ID":"365705096","Ship Date":"7/14/2015","Units Sold":"9120","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2328153.60","Total Cost":"1453910.40","Total Profit":"874243.20"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"2/16/2014","Order ID":"901474416","Ship Date":"3/20/2014","Units Sold":"5167","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2259012.40","Total Cost":"1360626.11","Total Profit":"898386.29"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"11/2/2011","Order ID":"195308005","Ship Date":"11/30/2011","Units Sold":"4834","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2039416.26","Total Cost":"1762911.46","Total Profit":"276504.80"},{"Region":"North America","Country":"Canada","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"12/15/2012","Order ID":"761317193","Ship Date":"2/1/2013","Units Sold":"9530","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"778886.90","Total Cost":"540065.10","Total Profit":"238821.80"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/3/2011","Order ID":"683925807","Ship Date":"8/7/2011","Units Sold":"7699","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1583684.30","Total Cost":"901629.89","Total Profit":"682054.41"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"2/16/2010","Order ID":"367870175","Ship Date":"4/5/2010","Units Sold":"9815","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6391626.15","Total Cost":"5152482.40","Total Profit":"1239143.75"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"5/1/2016","Order ID":"288199126","Ship Date":"5/31/2016","Units Sold":"3381","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1478173.20","Total Cost":"890318.73","Total Profit":"587854.47"},{"Region":"Asia","Country":"Maldives","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"12/20/2015","Order ID":"540273988","Ship Date":"2/1/2016","Units Sold":"7934","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"648445.82","Total Cost":"449619.78","Total Profit":"198826.04"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/17/2014","Order ID":"389768588","Ship Date":"12/20/2014","Units Sold":"42","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"10721.76","Total Cost":"6695.64","Total Profit":"4026.12"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/26/2012","Order ID":"522669255","Ship Date":"6/5/2012","Units Sold":"8302","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5547977.54","Total Cost":"4172087.08","Total Profit":"1375890.46"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/22/2012","Order ID":"795274817","Ship Date":"10/17/2012","Units Sold":"8346","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"912050.88","Total Cost":"299120.64","Total Profit":"612930.24"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/15/2013","Order ID":"684196603","Ship Date":"8/23/2013","Units Sold":"7834","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"73091.22","Total Cost":"54211.28","Total Profit":"18879.94"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/14/2017","Order ID":"636358439","Ship Date":"5/16/2017","Units Sold":"1458","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"637437.60","Total Cost":"383935.14","Total Profit":"253502.46"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"8/30/2012","Order ID":"718996655","Ship Date":"9/29/2012","Units Sold":"5943","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"915578.58","Total Cost":"540396.99","Total Profit":"375181.59"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"6/15/2015","Order ID":"169660079","Ship Date":"7/7/2015","Units Sold":"5042","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3369417.34","Total Cost":"2533806.68","Total Profit":"835610.66"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"7/12/2012","Order ID":"546210038","Ship Date":"8/26/2012","Units Sold":"4543","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"215565.35","Total Cost":"144421.97","Total Profit":"71143.38"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/8/2010","Order ID":"776820361","Ship Date":"9/10/2010","Units Sold":"7262","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4852976.74","Total Cost":"3649445.48","Total Profit":"1203531.26"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"3/17/2010","Order ID":"309977376","Ship Date":"3/29/2010","Units Sold":"8049","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3395792.61","Total Cost":"2935389.81","Total Profit":"460402.80"},{"Region":"Asia","Country":"South Korea","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"3/24/2016","Order ID":"464479911","Ship Date":"4/21/2016","Units Sold":"8782","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1806457.40","Total Cost":"1028460.02","Total Profit":"777997.38"},{"Region":"Europe","Country":"Belarus","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"3/26/2012","Order ID":"379439294","Ship Date":"4/13/2012","Units Sold":"3374","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2254742.98","Total Cost":"1695569.96","Total Profit":"559173.02"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/5/2016","Order ID":"164279353","Ship Date":"12/16/2016","Units Sold":"2766","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"302268.48","Total Cost":"99133.44","Total Profit":"203135.04"},{"Region":"Europe","Country":"Spain","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"11/23/2011","Order ID":"448736417","Ship Date":"12/8/2011","Units Sold":"9933","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4190633.37","Total Cost":"3622465.77","Total Profit":"568167.60"},{"Region":"Europe","Country":"Austria","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/6/2014","Order ID":"132859313","Ship Date":"5/6/2014","Units Sold":"4878","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2132661.60","Total Cost":"1284523.74","Total Profit":"848137.86"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/9/2011","Order ID":"437009370","Ship Date":"12/25/2011","Units Sold":"9639","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1470718.62","Total Cost":"939224.16","Total Profit":"531494.46"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"6/1/2012","Order ID":"851860415","Ship Date":"6/26/2012","Units Sold":"3282","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2193262.14","Total Cost":"1649336.28","Total Profit":"543925.86"},{"Region":"Asia","Country":"Maldives","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/5/2017","Order ID":"488398778","Ship Date":"2/22/2017","Units Sold":"6907","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4497907.47","Total Cost":"3625898.72","Total Profit":"872008.75"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"8/29/2016","Order ID":"327923285","Ship Date":"10/16/2016","Units Sold":"8642","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"80629.86","Total Cost":"59802.64","Total Profit":"20827.22"},{"Region":"Sub-Saharan Africa","Country":"Mali","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"12/8/2010","Order ID":"972045266","Ship Date":"1/25/2011","Units Sold":"8650","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5780535.50","Total Cost":"4346971.00","Total Profit":"1433564.50"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"11/2/2011","Order ID":"392688548","Ship Date":"11/14/2011","Units Sold":"4123","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"336972.79","Total Cost":"233650.41","Total Profit":"103322.38"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"4/13/2017","Order ID":"682089459","Ship Date":"4/30/2017","Units Sold":"4283","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"350049.59","Total Cost":"242717.61","Total Profit":"107331.98"},{"Region":"Europe","Country":"Denmark","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/24/2014","Order ID":"402796828","Ship Date":"12/21/2014","Units Sold":"5387","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"829921.22","Total Cost":"489839.91","Total Profit":"340081.31"},{"Region":"Europe","Country":"Latvia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/2/2016","Order ID":"437671983","Ship Date":"2/22/2016","Units Sold":"5721","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"53376.93","Total Cost":"39589.32","Total Profit":"13787.61"},{"Region":"Asia","Country":"Cambodia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/24/2014","Order ID":"839888751","Ship Date":"6/4/2014","Units Sold":"600","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"65568.00","Total Cost":"21504.00","Total Profit":"44064.00"},{"Region":"Asia","Country":"Singapore","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"12/29/2011","Order ID":"382933461","Ship Date":"1/29/2012","Units Sold":"7376","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3224787.20","Total Cost":"1942322.08","Total Profit":"1282465.12"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"12/1/2015","Order ID":"610604941","Ship Date":"1/18/2016","Units Sold":"426","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"20213.70","Total Cost":"13542.54","Total Profit":"6671.16"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"7/16/2011","Order ID":"887014520","Ship Date":"8/26/2011","Units Sold":"6163","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"292434.35","Total Cost":"195921.77","Total Profit":"96512.58"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"10/22/2011","Order ID":"646586024","Ship Date":"11/21/2011","Units Sold":"8028","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5227913.88","Total Cost":"4214378.88","Total Profit":"1013535.00"},{"Region":"Europe","Country":"Greece","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"8/1/2015","Order ID":"744055783","Ship Date":"9/18/2015","Units Sold":"1496","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"974210.16","Total Cost":"785340.16","Total Profit":"188870.00"},{"Region":"Europe","Country":"Ukraine","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/9/2011","Order ID":"304472625","Ship Date":"6/24/2011","Units Sold":"9071","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2315644.88","Total Cost":"1446098.82","Total Profit":"869546.06"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"9/22/2011","Order ID":"773197877","Ship Date":"10/9/2011","Units Sold":"5289","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"577981.92","Total Cost":"189557.76","Total Profit":"388424.16"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"12/7/2010","Order ID":"965905368","Ship Date":"1/1/2011","Units Sold":"1718","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"187743.04","Total Cost":"61573.12","Total Profit":"126169.92"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"3/10/2012","Order ID":"218581426","Ship Date":"4/3/2012","Units Sold":"1956","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"825216.84","Total Cost":"713333.64","Total Profit":"111883.20"},{"Region":"Europe","Country":"Moldova ","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/22/2015","Order ID":"637524878","Ship Date":"1/1/2016","Units Sold":"6634","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1012215.72","Total Cost":"646416.96","Total Profit":"365798.76"},{"Region":"Europe","Country":"Georgia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"12/8/2015","Order ID":"349347054","Ship Date":"12/16/2015","Units Sold":"8412","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3677726.40","Total Cost":"2215131.96","Total Profit":"1462594.44"},{"Region":"Europe","Country":"Serbia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/26/2011","Order ID":"250971782","Ship Date":"1/31/2011","Units Sold":"6982","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1782364.96","Total Cost":"1113070.44","Total Profit":"669294.52"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/2/2016","Order ID":"859635388","Ship Date":"4/21/2016","Units Sold":"4069","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"444660.32","Total Cost":"145832.96","Total Profit":"298827.36"},{"Region":"Asia","Country":"Nepal","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/4/2013","Order ID":"962886703","Ship Date":"7/2/2013","Units Sold":"8428","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"921011.84","Total Cost":"302059.52","Total Profit":"618952.32"},{"Region":"Europe","Country":"Moldova ","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"11/21/2015","Order ID":"768587052","Ship Date":"12/12/2015","Units Sold":"843","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"368559.60","Total Cost":"221987.19","Total Profit":"146572.41"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"7/4/2011","Order ID":"554910266","Ship Date":"8/1/2011","Units Sold":"9134","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1407184.04","Total Cost":"830554.62","Total Profit":"576629.42"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"12/2/2011","Order ID":"220342671","Ship Date":"1/11/2012","Units Sold":"3148","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1376305.60","Total Cost":"828962.84","Total Profit":"547342.76"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"11/26/2010","Order ID":"633683097","Ship Date":"1/3/2011","Units Sold":"9765","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1489943.70","Total Cost":"951501.60","Total Profit":"538442.10"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/16/2010","Order ID":"484042870","Ship Date":"11/30/2010","Units Sold":"7897","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3452568.40","Total Cost":"2079517.01","Total Profit":"1373051.39"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/12/2011","Order ID":"330845820","Ship Date":"7/13/2011","Units Sold":"3485","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"889650.80","Total Cost":"555578.70","Total Profit":"334072.10"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"8/14/2013","Order ID":"353828275","Ship Date":"9/28/2013","Units Sold":"4504","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1969148.80","Total Cost":"1186038.32","Total Profit":"783110.48"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"3/9/2015","Order ID":"803039062","Ship Date":"4/5/2015","Units Sold":"5958","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3879909.18","Total Cost":"3127711.68","Total Profit":"752197.50"},{"Region":"Asia","Country":"Vietnam","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"4/30/2015","Order ID":"648839509","Ship Date":"6/14/2015","Units Sold":"4884","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"45567.72","Total Cost":"33797.28","Total Profit":"11770.44"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/5/2010","Order ID":"731903445","Ship Date":"7/8/2010","Units Sold":"5349","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"824066.94","Total Cost":"486384.57","Total Profit":"337682.37"},{"Region":"Europe","Country":"France","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"1/27/2013","Order ID":"613217198","Ship Date":"3/9/2013","Units Sold":"3451","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"163749.95","Total Cost":"109707.29","Total Profit":"54042.66"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"6/2/2010","Order ID":"824079596","Ship Date":"6/4/2010","Units Sold":"2320","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1550386.40","Total Cost":"1165892.80","Total Profit":"384493.60"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/24/2013","Order ID":"616101968","Ship Date":"6/13/2013","Units Sold":"7118","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4756745.86","Total Cost":"3577079.72","Total Profit":"1179666.14"},{"Region":"Asia","Country":"Laos","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/25/2015","Order ID":"211208140","Ship Date":"2/25/2015","Units Sold":"37","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"5700.22","Total Cost":"3364.41","Total Profit":"2335.81"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"2/22/2017","Order ID":"351634442","Ship Date":"3/30/2017","Units Sold":"5300","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3541831.00","Total Cost":"2663462.00","Total Profit":"878369.00"},{"Region":"Europe","Country":"Macedonia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"1/14/2011","Order ID":"949929702","Ship Date":"2/7/2011","Units Sold":"4163","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"635190.54","Total Cost":"405642.72","Total Profit":"229547.82"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"12/8/2011","Order ID":"638955247","Ship Date":"1/27/2012","Units Sold":"9911","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6623223.97","Total Cost":"4980673.94","Total Profit":"1642550.03"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"3/2/2017","Order ID":"821884906","Ship Date":"3/4/2017","Units Sold":"2863","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"441073.78","Total Cost":"260332.59","Total Profit":"180741.19"},{"Region":"Europe","Country":"Cyprus","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"7/20/2017","Order ID":"722205007","Ship Date":"8/27/2017","Units Sold":"5365","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2263439.85","Total Cost":"1956561.85","Total Profit":"306878.00"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"4/30/2016","Order ID":"533714377","Ship Date":"6/18/2016","Units Sold":"6799","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1735648.72","Total Cost":"1083896.58","Total Profit":"651752.14"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"3/29/2010","Order ID":"970524346","Ship Date":"5/8/2010","Units Sold":"8576","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3618128.64","Total Cost":"3127581.44","Total Profit":"490547.20"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"1/5/2016","Order ID":"117058742","Ship Date":"1/11/2016","Units Sold":"9138","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"746848.74","Total Cost":"517850.46","Total Profit":"228998.28"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"7/31/2013","Order ID":"178053891","Ship Date":"8/5/2013","Units Sold":"8958","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"978930.24","Total Cost":"321054.72","Total Profit":"657875.52"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/11/2010","Order ID":"728558623","Ship Date":"7/14/2010","Units Sold":"5542","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"452947.66","Total Cost":"314065.14","Total Profit":"138882.52"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/5/2015","Order ID":"963934266","Ship Date":"4/23/2015","Units Sold":"8425","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"78605.25","Total Cost":"58301.00","Total Profit":"20304.25"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"11/24/2010","Order ID":"149854648","Ship Date":"1/13/2011","Units Sold":"4175","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"38952.75","Total Cost":"28891.00","Total Profit":"10061.75"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/4/2012","Order ID":"772306096","Ship Date":"3/21/2012","Units Sold":"1391","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"929563.57","Total Cost":"699033.14","Total Profit":"230530.43"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/22/2015","Order ID":"887587440","Ship Date":"6/28/2015","Units Sold":"5702","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3810475.54","Total Cost":"2865483.08","Total Profit":"944992.46"},{"Region":"Europe","Country":"Vatican City","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/18/2010","Order ID":"872310006","Ship Date":"12/22/2010","Units Sold":"4770","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"734866.20","Total Cost":"433736.10","Total Profit":"301130.10"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"4/2/2016","Order ID":"273397624","Ship Date":"5/12/2016","Units Sold":"3287","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"268646.51","Total Cost":"186274.29","Total Profit":"82372.22"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/21/2012","Order ID":"958086621","Ship Date":"6/6/2012","Units Sold":"7977","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5194702.17","Total Cost":"4187605.92","Total Profit":"1007096.25"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/21/2015","Order ID":"363925826","Ship Date":"5/7/2015","Units Sold":"2594","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"212007.62","Total Cost":"147001.98","Total Profit":"65005.64"},{"Region":"Asia","Country":"Malaysia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/18/2011","Order ID":"948776566","Ship Date":"10/22/2011","Units Sold":"2925","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"319644.00","Total Cost":"104832.00","Total Profit":"214812.00"},{"Region":"Europe","Country":"Netherlands","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"3/25/2016","Order ID":"740812671","Ship Date":"4/29/2016","Units Sold":"1787","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"272660.46","Total Cost":"174125.28","Total Profit":"98535.18"},{"Region":"Asia","Country":"Myanmar","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/30/2013","Order ID":"988520467","Ship Date":"10/25/2013","Units Sold":"4028","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1761041.60","Total Cost":"1060693.24","Total Profit":"700348.36"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"1/20/2017","Order ID":"310698783","Ship Date":"2/19/2017","Units Sold":"1529","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"995700.09","Total Cost":"802663.84","Total Profit":"193036.25"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"3/17/2017","Order ID":"546458947","Ship Date":"4/3/2017","Units Sold":"8201","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"389137.45","Total Cost":"260709.79","Total Profit":"128427.66"},{"Region":"Asia","Country":"Indonesia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/11/2010","Order ID":"905224788","Ship Date":"3/27/2010","Units Sold":"4986","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1025620.20","Total Cost":"583910.46","Total Profit":"441709.74"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"6/18/2015","Order ID":"216732633","Ship Date":"7/19/2015","Units Sold":"4857","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2123480.40","Total Cost":"1278993.81","Total Profit":"844486.59"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/11/2012","Order ID":"981031310","Ship Date":"6/15/2012","Units Sold":"7820","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5092462.20","Total Cost":"4105187.20","Total Profit":"987275.00"},{"Region":"Europe","Country":"Russia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"4/6/2011","Order ID":"818482148","Ship Date":"5/6/2011","Units Sold":"5911","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"280476.95","Total Cost":"187910.69","Total Profit":"92566.26"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"5/4/2012","Order ID":"119758975","Ship Date":"5/27/2012","Units Sold":"8197","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"895768.16","Total Cost":"293780.48","Total Profit":"601987.68"},{"Region":"Europe","Country":"Italy","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/28/2016","Order ID":"695848119","Ship Date":"12/7/2016","Units Sold":"5776","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"631201.28","Total Cost":"207011.84","Total Profit":"424189.44"},{"Region":"Europe","Country":"Greece","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/27/2015","Order ID":"828048408","Ship Date":"10/7/2015","Units Sold":"6780","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"321711.00","Total Cost":"215536.20","Total Profit":"106174.80"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/21/2015","Order ID":"217971169","Ship Date":"12/21/2015","Units Sold":"1368","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"349223.04","Total Cost":"218086.56","Total Profit":"131136.48"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/18/2014","Order ID":"437540233","Ship Date":"9/19/2014","Units Sold":"6733","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1027321.14","Total Cost":"656063.52","Total Profit":"371257.62"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"2/15/2017","Order ID":"878991925","Ship Date":"2/26/2017","Units Sold":"2099","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"99597.55","Total Cost":"66727.21","Total Profit":"32870.34"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/29/2011","Order ID":"104875075","Ship Date":"2/1/2011","Units Sold":"3720","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"949641.60","Total Cost":"593042.40","Total Profit":"356599.20"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"6/22/2015","Order ID":"798051011","Ship Date":"7/28/2015","Units Sold":"9883","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6435908.43","Total Cost":"5188179.68","Total Profit":"1247728.75"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/8/2016","Order ID":"311693561","Ship Date":"5/4/2016","Units Sold":"5906","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"645407.68","Total Cost":"211671.04","Total Profit":"433736.64"},{"Region":"Europe","Country":"Belarus","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/27/2015","Order ID":"119289052","Ship Date":"8/28/2015","Units Sold":"9136","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1879275.20","Total Cost":"1069916.96","Total Profit":"809358.24"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"1/27/2013","Order ID":"864636313","Ship Date":"2/28/2013","Units Sold":"3954","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1009377.12","Total Cost":"630346.68","Total Profit":"379030.44"},{"Region":"Europe","Country":"Romania","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/18/2016","Order ID":"111846673","Ship Date":"10/3/2016","Units Sold":"6771","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4409342.91","Total Cost":"3554504.16","Total Profit":"854838.75"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/20/2016","Order ID":"895343959","Ship Date":"8/3/2016","Units Sold":"1029","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"84100.17","Total Cost":"58313.43","Total Profit":"25786.74"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"9/12/2011","Order ID":"469864499","Ship Date":"10/2/2011","Units Sold":"2202","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1433964.42","Total Cost":"1155961.92","Total Profit":"278002.50"},{"Region":"Asia","Country":"Mongolia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/10/2013","Order ID":"660457122","Ship Date":"6/12/2013","Units Sold":"2794","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"713252.32","Total Cost":"445419.48","Total Profit":"267832.84"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"3/3/2011","Order ID":"212483155","Ship Date":"4/9/2011","Units Sold":"7342","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1510249.40","Total Cost":"859821.62","Total Profit":"650427.78"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/6/2014","Order ID":"641616427","Ship Date":"10/11/2014","Units Sold":"7414","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"605946.22","Total Cost":"420151.38","Total Profit":"185794.84"},{"Region":"Asia","Country":"Laos","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/13/2012","Order ID":"383843266","Ship Date":"3/7/2012","Units Sold":"6607","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1359059.90","Total Cost":"773745.77","Total Profit":"585314.13"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"3/20/2011","Order ID":"645462501","Ship Date":"4/4/2011","Units Sold":"5552","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"855341.12","Total Cost":"504843.36","Total Profit":"350497.76"},{"Region":"Europe","Country":"Portugal","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"7/7/2013","Order ID":"453085458","Ship Date":"7/24/2013","Units Sold":"6910","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"755124.80","Total Cost":"247654.40","Total Profit":"507470.40"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"3/13/2010","Order ID":"703635966","Ship Date":"3/19/2010","Units Sold":"374","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"95474.72","Total Cost":"59623.08","Total Profit":"35851.64"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"3/19/2016","Order ID":"114350354","Ship Date":"4/8/2016","Units Sold":"7666","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1181023.96","Total Cost":"697069.38","Total Profit":"483954.58"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"7/6/2013","Order ID":"172777450","Ship Date":"8/11/2013","Units Sold":"7542","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3297362.40","Total Cost":"1986034.86","Total Profit":"1311327.54"},{"Region":"Europe","Country":"San Marino","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/23/2015","Order ID":"186778581","Ship Date":"7/7/2015","Units Sold":"788","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"526596.76","Total Cost":"396001.52","Total Profit":"130595.24"},{"Region":"Europe","Country":"San Marino","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/14/2017","Order ID":"434527575","Ship Date":"5/9/2017","Units Sold":"5221","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1073959.70","Total Cost":"611431.31","Total Profit":"462528.39"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/11/2015","Order ID":"814510762","Ship Date":"9/28/2015","Units Sold":"690","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"449334.90","Total Cost":"362222.40","Total Profit":"87112.50"},{"Region":"Europe","Country":"Monaco","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/19/2011","Order ID":"395526969","Ship Date":"12/22/2011","Units Sold":"4074","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"445206.72","Total Cost":"146012.16","Total Profit":"299194.56"},{"Region":"Europe","Country":"Ireland","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"2/1/2016","Order ID":"566687524","Ship Date":"2/28/2016","Units Sold":"4286","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"203370.70","Total Cost":"136251.94","Total Profit":"67118.76"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/9/2012","Order ID":"987416255","Ship Date":"8/27/2012","Units Sold":"7267","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1855119.76","Total Cost":"1158505.14","Total Profit":"696614.62"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"6/4/2017","Order ID":"937449491","Ship Date":"6/28/2017","Units Sold":"991","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"418092.99","Total Cost":"361407.79","Total Profit":"56685.20"},{"Region":"Asia","Country":"Vietnam","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/9/2013","Order ID":"666836059","Ship Date":"7/5/2013","Units Sold":"463","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"4319.79","Total Cost":"3203.96","Total Profit":"1115.83"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/21/2014","Order ID":"945937287","Ship Date":"12/12/2014","Units Sold":"2719","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"414865.02","Total Cost":"264939.36","Total Profit":"149925.66"},{"Region":"Europe","Country":"Slovenia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/3/2010","Order ID":"815427005","Ship Date":"9/18/2010","Units Sold":"1826","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"86643.70","Total Cost":"58048.54","Total Profit":"28595.16"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/14/2013","Order ID":"736291539","Ship Date":"4/2/2013","Units Sold":"3883","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"424334.24","Total Cost":"139166.72","Total Profit":"285167.52"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"3/21/2017","Order ID":"339829719","Ship Date":"3/31/2017","Units Sold":"2020","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"515665.60","Total Cost":"322028.40","Total Profit":"193637.20"},{"Region":"Europe","Country":"Romania","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"2/3/2011","Order ID":"677652871","Ship Date":"3/12/2011","Units Sold":"1398","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"934241.46","Total Cost":"702550.92","Total Profit":"231690.54"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"7/11/2010","Order ID":"171684825","Ship Date":"7/25/2010","Units Sold":"4210","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1840612.00","Total Cost":"1108619.30","Total Profit":"731992.70"},{"Region":"Europe","Country":"Portugal","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"3/23/2017","Order ID":"464161908","Ship Date":"5/6/2017","Units Sold":"4678","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"382332.94","Total Cost":"265102.26","Total Profit":"117230.68"},{"Region":"Europe","Country":"Italy","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"1/10/2015","Order ID":"567632949","Ship Date":"1/24/2015","Units Sold":"4058","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"834730.60","Total Cost":"475232.38","Total Profit":"359498.22"},{"Region":"Europe","Country":"Romania","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/22/2011","Order ID":"914959275","Ship Date":"8/21/2011","Units Sold":"5637","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2378193.93","Total Cost":"2055757.53","Total Profit":"322436.40"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/15/2011","Order ID":"209314715","Ship Date":"10/16/2011","Units Sold":"9731","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"461735.95","Total Cost":"309348.49","Total Profit":"152387.46"},{"Region":"Asia","Country":"Japan","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/15/2013","Order ID":"374185597","Ship Date":"12/8/2013","Units Sold":"8688","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2217872.64","Total Cost":"1385040.96","Total Profit":"832831.68"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"9/21/2013","Order ID":"703370749","Ship Date":"11/7/2013","Units Sold":"1890","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"206539.20","Total Cost":"67737.60","Total Profit":"138801.60"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/27/2015","Order ID":"110981500","Ship Date":"8/5/2015","Units Sold":"747","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"61052.31","Total Cost":"42332.49","Total Profit":"18719.82"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/3/2013","Order ID":"281441676","Ship Date":"6/8/2013","Units Sold":"3701","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"570176.06","Total Cost":"336531.93","Total Profit":"233644.13"},{"Region":"Europe","Country":"Denmark","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"7/3/2017","Order ID":"719487607","Ship Date":"8/14/2017","Units Sold":"1226","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"188877.56","Total Cost":"111480.18","Total Profit":"77397.38"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/7/2012","Order ID":"100168120","Ship Date":"8/21/2012","Units Sold":"828","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"7725.24","Total Cost":"5729.76","Total Profit":"1995.48"},{"Region":"Europe","Country":"Lithuania","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"11/8/2014","Order ID":"318844544","Ship Date":"12/11/2014","Units Sold":"2041","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"19042.53","Total Cost":"14123.72","Total Profit":"4918.81"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/17/2014","Order ID":"641190707","Ship Date":"1/30/2015","Units Sold":"1434","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"156707.52","Total Cost":"51394.56","Total Profit":"105312.96"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"4/6/2012","Order ID":"853192937","Ship Date":"4/14/2012","Units Sold":"7605","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1160370.90","Total Cost":"741031.20","Total Profit":"419339.70"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/12/2010","Order ID":"811150062","Ship Date":"1/7/2011","Units Sold":"6184","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"675787.52","Total Cost":"221634.56","Total Profit":"454152.96"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/8/2016","Order ID":"891673409","Ship Date":"4/15/2016","Units Sold":"4832","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"394919.36","Total Cost":"273829.44","Total Profit":"121089.92"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"8/13/2015","Order ID":"641686809","Ship Date":"8/17/2015","Units Sold":"8241","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"76888.53","Total Cost":"57027.72","Total Profit":"19860.81"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"8/1/2012","Order ID":"128426587","Ship Date":"9/1/2012","Units Sold":"3136","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"256305.28","Total Cost":"177717.12","Total Profit":"78588.16"},{"Region":"North America","Country":"Mexico","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"8/17/2015","Order ID":"389441573","Ship Date":"9/25/2015","Units Sold":"3271","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"267338.83","Total Cost":"185367.57","Total Profit":"81971.26"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"7/14/2011","Order ID":"282593095","Ship Date":"8/25/2011","Units Sold":"4431","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"676081.98","Total Cost":"431756.64","Total Profit":"244325.34"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"9/3/2014","Order ID":"536054980","Ship Date":"10/19/2014","Units Sold":"9436","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4125419.20","Total Cost":"2484781.88","Total Profit":"1640637.32"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"3/9/2010","Order ID":"598313558","Ship Date":"3/26/2010","Units Sold":"3132","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"148613.40","Total Cost":"99566.28","Total Profit":"49047.12"},{"Region":"Asia","Country":"Nepal","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/12/2010","Order ID":"888167655","Ship Date":"10/22/2010","Units Sold":"7401","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"351177.45","Total Cost":"235277.79","Total Profit":"115899.66"},{"Region":"Europe","Country":"Albania","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"1/31/2015","Order ID":"544728600","Ship Date":"3/16/2015","Units Sold":"6153","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"947931.18","Total Cost":"559492.29","Total Profit":"388438.89"},{"Region":"Europe","Country":"Moldova ","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"6/6/2011","Order ID":"577420222","Ship Date":"7/1/2011","Units Sold":"330","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"220529.10","Total Cost":"165838.20","Total Profit":"54690.90"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"12/7/2011","Order ID":"715978848","Ship Date":"12/31/2011","Units Sold":"2907","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"597969.90","Total Cost":"340438.77","Total Profit":"257531.13"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"11/6/2010","Order ID":"760453307","Ship Date":"12/25/2010","Units Sold":"3887","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"184438.15","Total Cost":"123567.73","Total Profit":"60870.42"},{"Region":"Europe","Country":"Monaco","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/23/2011","Order ID":"131204926","Ship Date":"2/13/2011","Units Sold":"5308","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2320657.60","Total Cost":"1397755.64","Total Profit":"922901.96"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"9/26/2012","Order ID":"118907535","Ship Date":"9/26/2012","Units Sold":"6237","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"295945.65","Total Cost":"198274.23","Total Profit":"97671.42"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"2/10/2017","Order ID":"734547460","Ship Date":"2/20/2017","Units Sold":"7771","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3397481.20","Total Cost":"2046337.43","Total Profit":"1351143.77"},{"Region":"North America","Country":"United States of America","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"2/12/2015","Order ID":"259423530","Ship Date":"2/24/2015","Units Sold":"8042","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1227048.36","Total Cost":"783612.48","Total Profit":"443435.88"},{"Region":"North America","Country":"United States of America","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"11/26/2013","Order ID":"195147073","Ship Date":"12/26/2013","Units Sold":"7210","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"589273.30","Total Cost":"408590.70","Total Profit":"180682.60"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"4/28/2010","Order ID":"313641917","Ship Date":"5/27/2010","Units Sold":"2468","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"23026.44","Total Cost":"17078.56","Total Profit":"5947.88"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/10/2017","Order ID":"907144391","Ship Date":"7/13/2017","Units Sold":"3039","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1282123.71","Total Cost":"1108292.91","Total Profit":"173830.80"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"4/22/2015","Order ID":"538203322","Ship Date":"4/29/2015","Units Sold":"5178","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"790059.24","Total Cost":"504544.32","Total Profit":"285514.92"},{"Region":"Asia","Country":"China","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/30/2015","Order ID":"989680039","Ship Date":"5/31/2015","Units Sold":"7171","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1094151.18","Total Cost":"698742.24","Total Profit":"395408.94"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"1/17/2011","Order ID":"514748370","Ship Date":"2/5/2011","Units Sold":"4336","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"661586.88","Total Cost":"422499.84","Total Profit":"239087.04"},{"Region":"North America","Country":"United States of America","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"3/18/2012","Order ID":"586894643","Ship Date":"3/18/2012","Units Sold":"4022","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"37525.26","Total Cost":"27832.24","Total Profit":"9693.02"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"9/15/2010","Order ID":"949917685","Ship Date":"10/29/2010","Units Sold":"607","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"5663.31","Total Cost":"4200.44","Total Profit":"1462.87"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"8/17/2014","Order ID":"967928826","Ship Date":"9/16/2014","Units Sold":"504","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"103672.80","Total Cost":"59023.44","Total Profit":"44649.36"},{"Region":"Europe","Country":"Cyprus","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/13/2014","Order ID":"975351893","Ship Date":"4/10/2014","Units Sold":"7155","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"339504.75","Total Cost":"227457.45","Total Profit":"112047.30"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/9/2015","Order ID":"926923215","Ship Date":"11/29/2015","Units Sold":"6032","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"492995.36","Total Cost":"341833.44","Total Profit":"151161.92"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"10/1/2015","Order ID":"847691619","Ship Date":"10/29/2015","Units Sold":"9642","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"89959.86","Total Cost":"66722.64","Total Profit":"23237.22"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/31/2011","Order ID":"383018434","Ship Date":"3/7/2011","Units Sold":"2521","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1684708.67","Total Cost":"1266903.34","Total Profit":"417805.33"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/29/2011","Order ID":"148577487","Ship Date":"7/13/2011","Units Sold":"6235","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"509586.55","Total Cost":"353337.45","Total Profit":"156249.10"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"7/10/2012","Order ID":"380355107","Ship Date":"7/10/2012","Units Sold":"4383","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"668758.14","Total Cost":"427079.52","Total Profit":"241678.62"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"8/2/2014","Order ID":"484650123","Ship Date":"8/20/2014","Units Sold":"7596","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1939106.88","Total Cost":"1210954.32","Total Profit":"728152.56"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"7/27/2011","Order ID":"388073861","Ship Date":"7/31/2011","Units Sold":"8534","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5703016.18","Total Cost":"4288676.36","Total Profit":"1414339.82"},{"Region":"Asia","Country":"Bhutan","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/14/2017","Order ID":"987550151","Ship Date":"6/19/2017","Units Sold":"6890","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"64283.70","Total Cost":"47678.80","Total Profit":"16604.90"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/24/2016","Order ID":"100315320","Ship Date":"10/12/2016","Units Sold":"4387","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1917996.40","Total Cost":"1155228.71","Total Profit":"762767.69"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"1/26/2014","Order ID":"113918197","Ship Date":"2/17/2014","Units Sold":"9781","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1492384.98","Total Cost":"953060.64","Total Profit":"539324.34"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/14/2015","Order ID":"336220109","Ship Date":"6/30/2015","Units Sold":"3857","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"594209.42","Total Cost":"350717.01","Total Profit":"243492.41"},{"Region":"Europe","Country":"Estonia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"12/20/2015","Order ID":"145394885","Ship Date":"2/8/2016","Units Sold":"4432","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1131400.96","Total Cost":"706549.44","Total Profit":"424851.52"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/15/2012","Order ID":"339928853","Ship Date":"6/7/2012","Units Sold":"1356","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"206898.48","Total Cost":"132128.64","Total Profit":"74769.84"},{"Region":"Asia","Country":"Cambodia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"7/2/2013","Order ID":"888620841","Ship Date":"8/20/2013","Units Sold":"1509","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"230243.22","Total Cost":"147036.96","Total Profit":"83206.26"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"3/13/2014","Order ID":"480582177","Ship Date":"3/31/2014","Units Sold":"3801","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"180357.45","Total Cost":"120833.79","Total Profit":"59523.66"},{"Region":"Europe","Country":"Vatican City","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"2/26/2014","Order ID":"575236690","Ship Date":"3/12/2014","Units Sold":"4174","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"858591.80","Total Cost":"488817.14","Total Profit":"369774.66"},{"Region":"Europe","Country":"Vatican City","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/17/2014","Order ID":"452320706","Ship Date":"3/20/2014","Units Sold":"603","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"28612.35","Total Cost":"19169.37","Total Profit":"9442.98"},{"Region":"Asia","Country":"Japan","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/29/2012","Order ID":"361883056","Ship Date":"3/3/2012","Units Sold":"8093","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1246807.58","Total Cost":"735896.49","Total Profit":"510911.09"},{"Region":"Asia","Country":"Laos","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"12/3/2014","Order ID":"174285066","Ship Date":"12/30/2014","Units Sold":"3679","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2458565.33","Total Cost":"1848844.66","Total Profit":"609720.67"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"3/22/2011","Order ID":"730200564","Ship Date":"4/28/2011","Units Sold":"1429","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"156161.12","Total Cost":"51215.36","Total Profit":"104945.76"},{"Region":"Asia","Country":"Myanmar","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"8/24/2013","Order ID":"690615880","Ship Date":"9/24/2013","Units Sold":"7441","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1135347.78","Total Cost":"725051.04","Total Profit":"410296.74"},{"Region":"Asia","Country":"Japan","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/2/2016","Order ID":"586829841","Ship Date":"1/17/2017","Units Sold":"4845","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3155112.45","Total Cost":"2543431.20","Total Profit":"611681.25"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/1/2016","Order ID":"570453774","Ship Date":"12/2/2016","Units Sold":"8803","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"961991.84","Total Cost":"315499.52","Total Profit":"646492.32"},{"Region":"Asia","Country":"Tajikistan","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"1/10/2014","Order ID":"863411509","Ship Date":"2/4/2014","Units Sold":"1507","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"658860.40","Total Cost":"396838.31","Total Profit":"262022.09"},{"Region":"Asia","Country":"North Korea","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/15/2010","Order ID":"407939374","Ship Date":"4/13/2010","Units Sold":"7181","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4798846.87","Total Cost":"3608739.74","Total Profit":"1190107.13"},{"Region":"Europe","Country":"Macedonia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"12/2/2011","Order ID":"916586196","Ship Date":"1/4/2012","Units Sold":"7079","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2986559.31","Total Cost":"2581640.51","Total Profit":"404918.80"},{"Region":"Europe","Country":"Finland","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"8/25/2011","Order ID":"122213304","Ship Date":"10/3/2011","Units Sold":"4487","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2921979.27","Total Cost":"2355495.52","Total Profit":"566483.75"},{"Region":"Europe","Country":"Finland","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/17/2014","Order ID":"327994525","Ship Date":"5/25/2014","Units Sold":"9724","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"794742.52","Total Cost":"551059.08","Total Profit":"243683.44"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/1/2010","Order ID":"757416188","Ship Date":"10/6/2010","Units Sold":"5136","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3432234.72","Total Cost":"2581045.44","Total Profit":"851189.28"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/5/2011","Order ID":"704277122","Ship Date":"8/28/2011","Units Sold":"106","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"8663.38","Total Cost":"6007.02","Total Profit":"2656.36"},{"Region":"Europe","Country":"Belarus","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/19/2013","Order ID":"882688653","Ship Date":"10/26/2013","Units Sold":"6043","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"286740.35","Total Cost":"192106.97","Total Profit":"94633.38"},{"Region":"Asia","Country":"North Korea","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"4/21/2011","Order ID":"277074611","Ship Date":"5/24/2011","Units Sold":"1389","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"12959.37","Total Cost":"9611.88","Total Profit":"3347.49"},{"Region":"Sub-Saharan Africa","Country":"Mali","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"4/30/2014","Order ID":"192171323","Ship Date":"5/6/2014","Units Sold":"6620","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2894264.00","Total Cost":"1743244.60","Total Profit":"1151019.40"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"3/26/2015","Order ID":"203027617","Ship Date":"4/19/2015","Units Sold":"9239","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1900462.30","Total Cost":"1081979.29","Total Profit":"818483.01"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/3/2015","Order ID":"405004823","Ship Date":"2/17/2015","Units Sold":"8782","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1352954.92","Total Cost":"798547.26","Total Profit":"554407.66"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/5/2011","Order ID":"963776767","Ship Date":"12/21/2011","Units Sold":"1817","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"279927.02","Total Cost":"165219.81","Total Profit":"114707.21"},{"Region":"Europe","Country":"Macedonia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"11/26/2012","Order ID":"765329778","Ship Date":"1/15/2013","Units Sold":"6943","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3035479.60","Total Cost":"1828300.19","Total Profit":"1207179.41"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/21/2014","Order ID":"565962684","Ship Date":"9/3/2014","Units Sold":"9790","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"2013803.00","Total Cost":"1146506.90","Total Profit":"867296.10"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"7/23/2014","Order ID":"742286813","Ship Date":"8/1/2014","Units Sold":"8018","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2046835.04","Total Cost":"1278229.56","Total Profit":"768605.48"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/14/2015","Order ID":"841225993","Ship Date":"8/2/2015","Units Sold":"6320","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1300024.00","Total Cost":"740135.20","Total Profit":"559888.80"},{"Region":"Asia","Country":"North Korea","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/3/2013","Order ID":"930016553","Ship Date":"4/27/2013","Units Sold":"1420","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"362497.60","Total Cost":"226376.40","Total Profit":"136121.20"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/3/2016","Order ID":"246207320","Ship Date":"7/12/2016","Units Sold":"7072","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1079045.76","Total Cost":"689095.68","Total Profit":"389950.08"},{"Region":"Europe","Country":"Austria","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/30/2011","Order ID":"347659623","Ship Date":"10/7/2011","Units Sold":"9063","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1864259.10","Total Cost":"1061367.93","Total Profit":"802891.17"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/4/2013","Order ID":"162547290","Ship Date":"9/8/2013","Units Sold":"210","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"140336.70","Total Cost":"105533.40","Total Profit":"34803.30"},{"Region":"Asia","Country":"Tajikistan","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"9/3/2014","Order ID":"939356648","Ship Date":"10/10/2014","Units Sold":"5362","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"254426.90","Total Cost":"170457.98","Total Profit":"83968.92"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"7/21/2012","Order ID":"396886527","Ship Date":"8/8/2012","Units Sold":"6398","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"522908.54","Total Cost":"362574.66","Total Profit":"160333.88"},{"Region":"Europe","Country":"Georgia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"6/6/2013","Order ID":"374248254","Ship Date":"7/25/2013","Units Sold":"7230","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"343063.50","Total Cost":"229841.70","Total Profit":"113221.80"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/19/2013","Order ID":"980865657","Ship Date":"4/23/2013","Units Sold":"8800","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1355728.00","Total Cost":"800184.00","Total Profit":"555544.00"},{"Region":"Asia","Country":"India","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"6/13/2016","Order ID":"146475064","Ship Date":"7/29/2016","Units Sold":"4081","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1784213.20","Total Cost":"1074649.73","Total Profit":"709563.47"},{"Region":"Europe","Country":"Kosovo","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"5/20/2017","Order ID":"371125304","Ship Date":"6/29/2017","Units Sold":"3080","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1299421.20","Total Cost":"1123245.20","Total Profit":"176176.00"},{"Region":"Europe","Country":"Portugal","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"5/2/2011","Order ID":"175177705","Ship Date":"6/11/2011","Units Sold":"7831","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"640027.63","Total Cost":"443782.77","Total Profit":"196244.86"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"8/10/2013","Order ID":"849306094","Ship Date":"8/14/2013","Units Sold":"7402","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1140352.12","Total Cost":"673063.86","Total Profit":"467288.26"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"4/19/2010","Order ID":"604496800","Ship Date":"4/27/2010","Units Sold":"2891","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"441108.78","Total Cost":"281699.04","Total Profit":"159409.74"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/21/2015","Order ID":"422048652","Ship Date":"2/1/2015","Units Sold":"2430","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"115303.50","Total Cost":"77249.70","Total Profit":"38053.80"},{"Region":"Asia","Country":"Cambodia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/23/2012","Order ID":"903572976","Ship Date":"6/1/2012","Units Sold":"6178","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"951782.68","Total Cost":"561765.54","Total Profit":"390017.14"},{"Region":"Europe","Country":"Belgium","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"1/23/2014","Order ID":"920993602","Ship Date":"1/27/2014","Units Sold":"1328","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"63013.60","Total Cost":"42217.12","Total Profit":"20796.48"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"8/28/2010","Order ID":"766546857","Ship Date":"9/30/2010","Units Sold":"7104","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3105868.80","Total Cost":"1870696.32","Total Profit":"1235172.48"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"6/7/2012","Order ID":"802781569","Ship Date":"7/17/2012","Units Sold":"9761","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"463159.45","Total Cost":"310302.19","Total Profit":"152857.26"},{"Region":"Europe","Country":"Moldova ","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"8/29/2015","Order ID":"112559068","Ship Date":"9/1/2015","Units Sold":"7584","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1168391.04","Total Cost":"689613.12","Total Profit":"478777.92"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"11/13/2013","Order ID":"549053180","Ship Date":"12/23/2013","Units Sold":"5892","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2575982.40","Total Cost":"1551540.36","Total Profit":"1024442.04"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"10/25/2016","Order ID":"885750234","Ship Date":"11/21/2016","Units Sold":"2032","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"857280.48","Total Cost":"741050.08","Total Profit":"116230.40"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/19/2016","Order ID":"866449058","Ship Date":"6/22/2016","Units Sold":"385","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"42072.80","Total Cost":"13798.40","Total Profit":"28274.40"},{"Region":"Asia","Country":"Philippines","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/2/2013","Order ID":"755260980","Ship Date":"3/16/2013","Units Sold":"7362","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1879371.36","Total Cost":"1173650.04","Total Profit":"705721.32"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"4/25/2012","Order ID":"886609828","Ship Date":"5/14/2012","Units Sold":"6405","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4171000.05","Total Cost":"3362368.80","Total Profit":"808631.25"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/1/2012","Order ID":"315231931","Ship Date":"1/19/2013","Units Sold":"2988","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"141780.60","Total Cost":"94988.52","Total Profit":"46792.08"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/17/2011","Order ID":"866176116","Ship Date":"1/18/2011","Units Sold":"9616","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6426084.32","Total Cost":"4832424.64","Total Profit":"1593659.68"},{"Region":"Europe","Country":"Netherlands","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/22/2011","Order ID":"384803712","Ship Date":"7/3/2011","Units Sold":"824","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"126945.44","Total Cost":"74926.32","Total Profit":"52019.12"},{"Region":"Europe","Country":"Moldova ","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/7/2016","Order ID":"386788547","Ship Date":"4/8/2016","Units Sold":"8181","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1248256.98","Total Cost":"797156.64","Total Profit":"451100.34"},{"Region":"Europe","Country":"Latvia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/27/2013","Order ID":"208116948","Ship Date":"6/2/2013","Units Sold":"5285","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"577544.80","Total Cost":"189414.40","Total Profit":"388130.40"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/8/2010","Order ID":"155087745","Ship Date":"12/28/2010","Units Sold":"2765","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"131199.25","Total Cost":"87899.35","Total Profit":"43299.90"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"2/3/2010","Order ID":"154312264","Ship Date":"2/23/2010","Units Sold":"3283","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2193930.41","Total Cost":"1649838.82","Total Profit":"544091.59"},{"Region":"Europe","Country":"Greece","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"6/9/2017","Order ID":"202714335","Ship Date":"7/22/2017","Units Sold":"6531","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4364471.37","Total Cost":"3282088.74","Total Profit":"1082382.63"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"7/21/2017","Order ID":"817530286","Ship Date":"7/27/2017","Units Sold":"4234","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1851104.80","Total Cost":"1114939.22","Total Profit":"736165.58"},{"Region":"Europe","Country":"Italy","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/7/2015","Order ID":"786308944","Ship Date":"3/16/2015","Units Sold":"5145","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3438249.15","Total Cost":"2585568.30","Total Profit":"852680.85"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"10/25/2015","Order ID":"316911637","Ship Date":"11/20/2015","Units Sold":"51","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"22297.20","Total Cost":"13429.83","Total Profit":"8867.37"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/14/2015","Order ID":"587512195","Ship Date":"2/16/2015","Units Sold":"6769","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1392383.30","Total Cost":"792717.59","Total Profit":"599665.71"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/3/2017","Order ID":"596596944","Ship Date":"2/10/2017","Units Sold":"5148","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3352429.08","Total Cost":"2702494.08","Total Profit":"649935.00"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"7/6/2015","Order ID":"312964713","Ship Date":"7/27/2015","Units Sold":"2068","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"425387.60","Total Cost":"242183.48","Total Profit":"183204.12"},{"Region":"North America","Country":"Mexico","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/12/2012","Order ID":"225726830","Ship Date":"11/18/2012","Units Sold":"6440","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2815568.00","Total Cost":"1695845.20","Total Profit":"1119722.80"},{"Region":"Europe","Country":"Ukraine","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"3/6/2016","Order ID":"894307124","Ship Date":"4/12/2016","Units Sold":"4206","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2738989.26","Total Cost":"2207981.76","Total Profit":"531007.50"},{"Region":"Europe","Country":"Belgium","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/24/2011","Order ID":"698441922","Ship Date":"5/10/2011","Units Sold":"3341","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"273059.93","Total Cost":"189334.47","Total Profit":"83725.46"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/12/2011","Order ID":"788180053","Ship Date":"5/20/2011","Units Sold":"8848","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3732882.72","Total Cost":"3226777.12","Total Profit":"506105.60"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"6/7/2015","Order ID":"133882844","Ship Date":"6/17/2015","Units Sold":"7764","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5188448.28","Total Cost":"3901720.56","Total Profit":"1286727.72"},{"Region":"North America","Country":"Mexico","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"4/29/2012","Order ID":"476224124","Ship Date":"5/4/2012","Units Sold":"4156","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"454167.68","Total Cost":"148951.04","Total Profit":"305216.64"},{"Region":"Asia","Country":"North Korea","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/22/2014","Order ID":"476190221","Ship Date":"10/4/2014","Units Sold":"4123","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"848101.10","Total Cost":"482844.53","Total Profit":"365256.57"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/4/2017","Order ID":"665079963","Ship Date":"2/13/2017","Units Sold":"795","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"163531.50","Total Cost":"93102.45","Total Profit":"70429.05"},{"Region":"Europe","Country":"Latvia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/24/2015","Order ID":"294504678","Ship Date":"6/27/2015","Units Sold":"9334","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1920003.80","Total Cost":"1093104.74","Total Profit":"826899.06"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"6/6/2010","Order ID":"486388194","Ship Date":"6/20/2010","Units Sold":"1930","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1256835.30","Total Cost":"1013172.80","Total Profit":"243662.50"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"3/25/2011","Order ID":"182966840","Ship Date":"5/8/2011","Units Sold":"2809","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"717081.52","Total Cost":"447810.78","Total Profit":"269270.74"},{"Region":"Europe","Country":"Switzerland","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"11/8/2016","Order ID":"196789443","Ship Date":"12/7/2016","Units Sold":"3224","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"663176.80","Total Cost":"377562.64","Total Profit":"285614.16"},{"Region":"Europe","Country":"Andorra","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/19/2012","Order ID":"960717332","Ship Date":"4/14/2012","Units Sold":"6463","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"528220.99","Total Cost":"366258.21","Total Profit":"161962.78"},{"Region":"North America","Country":"Canada","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/8/2017","Order ID":"277924335","Ship Date":"5/31/2017","Units Sold":"2842","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1199011.38","Total Cost":"1036448.98","Total Profit":"162562.40"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"7/5/2015","Order ID":"971896779","Ship Date":"7/31/2015","Units Sold":"4709","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"384866.57","Total Cost":"266859.03","Total Profit":"118007.54"},{"Region":"Europe","Country":"Slovakia","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"7/4/2017","Order ID":"536433494","Ship Date":"8/1/2017","Units Sold":"1446","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"966318.42","Total Cost":"726672.84","Total Profit":"239645.58"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/2/2012","Order ID":"585645806","Ship Date":"8/5/2012","Units Sold":"4463","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"687569.78","Total Cost":"405820.59","Total Profit":"281749.19"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/26/2017","Order ID":"103957545","Ship Date":"5/3/2017","Units Sold":"2203","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"339394.18","Total Cost":"200318.79","Total Profit":"139075.39"},{"Region":"Europe","Country":"France","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"8/17/2011","Order ID":"396105039","Ship Date":"10/5/2011","Units Sold":"5138","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1056886.60","Total Cost":"601711.18","Total Profit":"455175.42"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"10/5/2010","Order ID":"137137115","Ship Date":"10/16/2010","Units Sold":"775","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"159417.50","Total Cost":"90760.25","Total Profit":"68657.25"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/19/2015","Order ID":"322415101","Ship Date":"9/23/2015","Units Sold":"8648","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5779198.96","Total Cost":"4345965.92","Total Profit":"1433233.04"},{"Region":"Europe","Country":"Russia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/8/2016","Order ID":"217612826","Ship Date":"12/25/2016","Units Sold":"5326","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2328527.20","Total Cost":"1402495.58","Total Profit":"926031.62"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/7/2014","Order ID":"508716619","Ship Date":"1/26/2014","Units Sold":"9407","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6286415.89","Total Cost":"4727393.78","Total Profit":"1559022.11"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"1/22/2011","Order ID":"152025306","Ship Date":"3/2/2011","Units Sold":"6521","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2751144.69","Total Cost":"2378143.49","Total Profit":"373001.20"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"4/27/2013","Order ID":"424150216","Ship Date":"6/5/2013","Units Sold":"4329","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2892940.83","Total Cost":"2175495.66","Total Profit":"717445.17"},{"Region":"Europe","Country":"Montenegro","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/4/2015","Order ID":"872015178","Ship Date":"10/23/2015","Units Sold":"7524","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1547686.80","Total Cost":"881135.64","Total Profit":"666551.16"},{"Region":"Europe","Country":"Russia","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"5/26/2014","Order ID":"662856519","Ship Date":"7/10/2014","Units Sold":"2829","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1890535.83","Total Cost":"1421685.66","Total Profit":"468850.17"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"2/12/2010","Order ID":"834223067","Ship Date":"3/1/2010","Units Sold":"3999","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"37310.67","Total Cost":"27673.08","Total Profit":"9637.59"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"6/6/2012","Order ID":"243976151","Ship Date":"6/7/2012","Units Sold":"6820","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"557398.60","Total Cost":"386489.40","Total Profit":"170909.20"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"12/25/2012","Order ID":"520289599","Ship Date":"12/26/2012","Units Sold":"4109","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"633032.54","Total Cost":"373631.37","Total Profit":"259401.17"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/23/2012","Order ID":"211649739","Ship Date":"2/27/2012","Units Sold":"716","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"147281.20","Total Cost":"83850.76","Total Profit":"63430.44"},{"Region":"Europe","Country":"Ireland","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/19/2014","Order ID":"636855399","Ship Date":"10/24/2014","Units Sold":"8520","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5548309.20","Total Cost":"4472659.20","Total Profit":"1075650.00"},{"Region":"Europe","Country":"Spain","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"4/2/2012","Order ID":"935017907","Ship Date":"5/4/2012","Units Sold":"1432","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"956962.64","Total Cost":"719637.28","Total Profit":"237325.36"},{"Region":"Europe","Country":"Lithuania","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"6/23/2015","Order ID":"315561091","Ship Date":"7/15/2015","Units Sold":"394","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"3676.02","Total Cost":"2726.48","Total Profit":"949.54"},{"Region":"Europe","Country":"Denmark","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"11/12/2013","Order ID":"308221280","Ship Date":"12/27/2013","Units Sold":"8381","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5457791.01","Total Cost":"4399689.76","Total Profit":"1058101.25"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/25/2016","Order ID":"713047301","Ship Date":"11/3/2016","Units Sold":"5397","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"831461.82","Total Cost":"490749.21","Total Profit":"340712.61"},{"Region":"North America","Country":"United States of America","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/28/2012","Order ID":"950400483","Ship Date":"3/5/2012","Units Sold":"3478","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1520581.60","Total Cost":"915861.74","Total Profit":"604719.86"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"12/14/2014","Order ID":"510954654","Ship Date":"1/21/2015","Units Sold":"1691","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"431678.48","Total Cost":"269579.22","Total Profit":"162099.26"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/13/2011","Order ID":"305696141","Ship Date":"8/17/2011","Units Sold":"1136","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"759154.72","Total Cost":"570885.44","Total Profit":"188269.28"},{"Region":"Asia","Country":"Singapore","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"6/20/2015","Order ID":"415923774","Ship Date":"7/29/2015","Units Sold":"9942","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4346642.40","Total Cost":"2618026.86","Total Profit":"1728615.54"},{"Region":"North America","Country":"Mexico","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"3/11/2011","Order ID":"543248879","Ship Date":"4/5/2011","Units Sold":"8270","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"77159.10","Total Cost":"57228.40","Total Profit":"19930.70"},{"Region":"Europe","Country":"Poland","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"9/14/2010","Order ID":"459595286","Ship Date":"9/21/2010","Units Sold":"3313","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2213978.51","Total Cost":"1664915.02","Total Profit":"549063.49"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/2/2011","Order ID":"457199323","Ship Date":"12/13/2011","Units Sold":"4294","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"883275.80","Total Cost":"502870.34","Total Profit":"380405.46"},{"Region":"Europe","Country":"Poland","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/13/2010","Order ID":"898609817","Ship Date":"1/13/2010","Units Sold":"7469","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1536373.30","Total Cost":"874694.59","Total Profit":"661678.71"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/18/2016","Order ID":"866688096","Ship Date":"6/22/2016","Units Sold":"1122","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"230795.40","Total Cost":"131397.42","Total Profit":"99397.98"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/1/2017","Order ID":"414607989","Ship Date":"4/9/2017","Units Sold":"572","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"382250.44","Total Cost":"287452.88","Total Profit":"94797.56"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/27/2014","Order ID":"115855824","Ship Date":"5/29/2014","Units Sold":"3168","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"808727.04","Total Cost":"505042.56","Total Profit":"303684.48"},{"Region":"Europe","Country":"Finland","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/17/2014","Order ID":"614230430","Ship Date":"12/19/2014","Units Sold":"3289","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2141829.69","Total Cost":"1726593.44","Total Profit":"415236.25"},{"Region":"Asia","Country":"Brunei","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"1/12/2012","Order ID":"373843133","Ship Date":"2/13/2012","Units Sold":"7346","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1511072.20","Total Cost":"860290.06","Total Profit":"650782.14"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/28/2010","Order ID":"629117763","Ship Date":"1/6/2011","Units Sold":"8781","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1806251.70","Total Cost":"1028342.91","Total Profit":"777908.79"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/15/2010","Order ID":"434790647","Ship Date":"6/20/2010","Units Sold":"3069","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1294780.41","Total Cost":"1119233.61","Total Profit":"175546.80"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/21/2014","Order ID":"715910613","Ship Date":"5/24/2014","Units Sold":"2714","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"418118.84","Total Cost":"246784.02","Total Profit":"171334.82"},{"Region":"Europe","Country":"Belarus","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/2/2012","Order ID":"217838990","Ship Date":"5/18/2012","Units Sold":"2253","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"21020.49","Total Cost":"15590.76","Total Profit":"5429.73"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/10/2013","Order ID":"456249606","Ship Date":"12/26/2013","Units Sold":"3252","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"30341.16","Total Cost":"22503.84","Total Profit":"7837.32"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"10/2/2014","Order ID":"767128789","Ship Date":"11/11/2014","Units Sold":"9311","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"441806.95","Total Cost":"295996.69","Total Profit":"145810.26"},{"Region":"Europe","Country":"France","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"3/4/2015","Order ID":"556775367","Ship Date":"3/13/2015","Units Sold":"1059","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"270341.52","Total Cost":"168825.78","Total Profit":"101515.74"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/31/2016","Order ID":"651800668","Ship Date":"9/14/2016","Units Sold":"1157","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"54899.65","Total Cost":"36781.03","Total Profit":"18118.62"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/30/2010","Order ID":"149128520","Ship Date":"6/27/2010","Units Sold":"9298","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"86750.34","Total Cost":"64342.16","Total Profit":"22408.18"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/13/2011","Order ID":"465995252","Ship Date":"6/23/2011","Units Sold":"7205","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1110002.30","Total Cost":"655150.65","Total Profit":"454851.65"},{"Region":"Europe","Country":"Andorra","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/10/2016","Order ID":"389949691","Ship Date":"9/9/2016","Units Sold":"3634","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2428493.18","Total Cost":"1826230.36","Total Profit":"602262.82"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"9/26/2016","Order ID":"128853166","Ship Date":"10/30/2016","Units Sold":"9370","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"87422.10","Total Cost":"64840.40","Total Profit":"22581.70"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/1/2014","Order ID":"860879504","Ship Date":"11/3/2014","Units Sold":"2231","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1452849.51","Total Cost":"1171185.76","Total Profit":"281663.75"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"9/19/2014","Order ID":"684515035","Ship Date":"10/8/2014","Units Sold":"2065","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"902818.00","Total Cost":"543776.45","Total Profit":"359041.55"},{"Region":"Europe","Country":"Greece","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/2/2010","Order ID":"468558585","Ship Date":"6/23/2010","Units Sold":"5753","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"470192.69","Total Cost":"326022.51","Total Profit":"144170.18"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/3/2011","Order ID":"702121484","Ship Date":"12/7/2011","Units Sold":"2205","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"930267.45","Total Cost":"804141.45","Total Profit":"126126.00"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/7/2011","Order ID":"144627559","Ship Date":"3/18/2011","Units Sold":"7363","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"349374.35","Total Cost":"234069.77","Total Profit":"115304.58"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"7/15/2016","Order ID":"775813138","Ship Date":"8/14/2016","Units Sold":"9203","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5993085.63","Total Cost":"4831206.88","Total Profit":"1161878.75"},{"Region":"Asia","Country":"China","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/13/2011","Order ID":"145727050","Ship Date":"2/25/2011","Units Sold":"2727","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"129396.15","Total Cost":"86691.33","Total Profit":"42704.82"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"5/30/2016","Order ID":"824730622","Ship Date":"6/20/2016","Units Sold":"4973","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"235968.85","Total Cost":"158091.67","Total Profit":"77877.18"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/27/2013","Order ID":"953497684","Ship Date":"11/29/2013","Units Sold":"8","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2042.24","Total Cost":"1275.36","Total Profit":"766.88"},{"Region":"Asia","Country":"Maldives","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"2/10/2016","Order ID":"993014562","Ship Date":"3/14/2016","Units Sold":"3931","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1658449.59","Total Cost":"1433596.39","Total Profit":"224853.20"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"3/4/2010","Order ID":"574580085","Ship Date":"3/4/2010","Units Sold":"9870","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2519613.60","Total Cost":"1573475.40","Total Profit":"946138.20"},{"Region":"Europe","Country":"Poland","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/6/2014","Order ID":"749805581","Ship Date":"8/10/2014","Units Sold":"2989","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1997459.03","Total Cost":"1502092.06","Total Profit":"495366.97"},{"Region":"Europe","Country":"Moldova ","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"11/18/2014","Order ID":"840614879","Ship Date":"12/20/2014","Units Sold":"5478","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"835833.24","Total Cost":"533776.32","Total Profit":"302056.92"},{"Region":"Europe","Country":"Malta","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/22/2012","Order ID":"689244306","Ship Date":"10/28/2012","Units Sold":"1561","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"658570.29","Total Cost":"569281.09","Total Profit":"89289.20"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/11/2014","Order ID":"208242690","Ship Date":"9/15/2014","Units Sold":"2494","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"118340.30","Total Cost":"79284.26","Total Profit":"39056.04"},{"Region":"Europe","Country":"Andorra","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"4/3/2013","Order ID":"730471360","Ship Date":"5/14/2013","Units Sold":"1563","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"74164.35","Total Cost":"49687.77","Total Profit":"24476.58"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"4/23/2013","Order ID":"959104144","Ship Date":"5/29/2013","Units Sold":"9085","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"742517.05","Total Cost":"514846.95","Total Profit":"227670.10"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/2/2013","Order ID":"117627370","Ship Date":"5/17/2013","Units Sold":"7408","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4950544.16","Total Cost":"3722816.32","Total Profit":"1227727.84"},{"Region":"Europe","Country":"Portugal","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/26/2016","Order ID":"199839866","Ship Date":"5/6/2016","Units Sold":"5912","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"280524.40","Total Cost":"187942.48","Total Profit":"92581.92"},{"Region":"Asia","Country":"Taiwan","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"9/6/2011","Order ID":"119852960","Ship Date":"10/14/2011","Units Sold":"6009","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1533977.52","Total Cost":"957954.78","Total Profit":"576022.74"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/23/2016","Order ID":"662090480","Ship Date":"2/13/2016","Units Sold":"6141","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4103846.07","Total Cost":"3086098.14","Total Profit":"1017747.93"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/20/2016","Order ID":"431288754","Ship Date":"1/8/2017","Units Sold":"6781","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"63266.73","Total Cost":"46924.52","Total Profit":"16342.21"},{"Region":"Europe","Country":"Netherlands","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"5/4/2014","Order ID":"802496612","Ship Date":"5/31/2014","Units Sold":"5435","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"837316.10","Total Cost":"494204.55","Total Profit":"343111.55"},{"Region":"Europe","Country":"Hungary","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"9/24/2016","Order ID":"971075379","Ship Date":"9/27/2016","Units Sold":"1639","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"716570.80","Total Cost":"431597.87","Total Profit":"284972.93"},{"Region":"Europe","Country":"Germany","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/7/2014","Order ID":"202698886","Ship Date":"12/24/2014","Units Sold":"1960","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"856912.00","Total Cost":"516126.80","Total Profit":"340785.20"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/9/2015","Order ID":"983353459","Ship Date":"8/25/2015","Units Sold":"4996","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3253445.16","Total Cost":"2622700.16","Total Profit":"630745.00"},{"Region":"Asia","Country":"India","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"8/12/2015","Order ID":"469337928","Ship Date":"8/24/2015","Units Sold":"6377","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2788024.40","Total Cost":"1679255.41","Total Profit":"1108768.99"},{"Region":"Europe","Country":"Norway","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/22/2012","Order ID":"837263619","Ship Date":"9/7/2012","Units Sold":"3766","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2452456.86","Total Cost":"1976999.36","Total Profit":"475457.50"},{"Region":"Europe","Country":"Kosovo","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"7/16/2016","Order ID":"734054362","Ship Date":"8/4/2016","Units Sold":"1853","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"17288.49","Total Cost":"12822.76","Total Profit":"4465.73"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/6/2016","Order ID":"226946485","Ship Date":"2/20/2016","Units Sold":"7363","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4794859.23","Total Cost":"3865280.48","Total Profit":"929578.75"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/11/2011","Order ID":"353488814","Ship Date":"12/5/2011","Units Sold":"4050","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"617949.00","Total Cost":"394632.00","Total Profit":"223317.00"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"8/3/2013","Order ID":"871542680","Ship Date":"8/27/2013","Units Sold":"7701","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"71850.33","Total Cost":"53290.92","Total Profit":"18559.41"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/5/2012","Order ID":"709281909","Ship Date":"12/22/2012","Units Sold":"1134","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"10580.22","Total Cost":"7847.28","Total Profit":"2732.94"},{"Region":"Europe","Country":"Lithuania","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"6/29/2017","Order ID":"215192830","Ship Date":"7/9/2017","Units Sold":"9195","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3879278.55","Total Cost":"3353324.55","Total Profit":"525954.00"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/8/2017","Order ID":"708074271","Ship Date":"7/28/2017","Units Sold":"3767","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1589259.63","Total Cost":"1373787.23","Total Profit":"215472.40"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"7/19/2011","Order ID":"427037560","Ship Date":"8/31/2011","Units Sold":"8759","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5853376.93","Total Cost":"4401747.86","Total Profit":"1451629.07"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/20/2010","Order ID":"381506526","Ship Date":"9/27/2010","Units Sold":"5114","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"787862.84","Total Cost":"465016.02","Total Profit":"322846.82"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"10/3/2011","Order ID":"301217496","Ship Date":"10/26/2011","Units Sold":"5806","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"885879.48","Total Cost":"565736.64","Total Profit":"320142.84"},{"Region":"Europe","Country":"Monaco","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/22/2016","Order ID":"886219298","Ship Date":"9/29/2016","Units Sold":"839","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"129256.34","Total Cost":"76290.27","Total Profit":"52966.07"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"4/17/2013","Order ID":"656873261","Ship Date":"4/29/2013","Units Sold":"2250","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"106762.50","Total Cost":"71527.50","Total Profit":"35235.00"},{"Region":"Europe","Country":"Hungary","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/7/2016","Order ID":"903853213","Ship Date":"11/25/2016","Units Sold":"9106","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"995103.68","Total Cost":"326359.04","Total Profit":"668744.64"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/27/2013","Order ID":"738145482","Ship Date":"5/5/2013","Units Sold":"2506","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1674684.62","Total Cost":"1259365.24","Total Profit":"415319.38"},{"Region":"Europe","Country":"Russia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/8/2016","Order ID":"241048896","Ship Date":"6/22/2016","Units Sold":"580","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"47403.40","Total Cost":"32868.60","Total Profit":"14534.80"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/19/2010","Order ID":"914174783","Ship Date":"8/29/2010","Units Sold":"3488","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"537361.28","Total Cost":"317163.84","Total Profit":"220197.44"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"5/23/2015","Order ID":"729446971","Ship Date":"7/1/2015","Units Sold":"8423","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5628838.21","Total Cost":"4232894.42","Total Profit":"1395943.79"},{"Region":"Europe","Country":"Moldova ","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"8/27/2013","Order ID":"879101788","Ship Date":"9/13/2013","Units Sold":"4610","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2015492.00","Total Cost":"1213951.30","Total Profit":"801540.70"},{"Region":"Asia","Country":"Vietnam","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"9/7/2015","Order ID":"825688064","Ship Date":"10/17/2015","Units Sold":"8301","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3502108.89","Total Cost":"3027291.69","Total Profit":"474817.20"},{"Region":"Europe","Country":"Moldova ","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"3/2/2010","Order ID":"552067124","Ship Date":"4/5/2010","Units Sold":"7785","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1601374.50","Total Cost":"911701.35","Total Profit":"689673.15"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/12/2013","Order ID":"111412799","Ship Date":"5/27/2013","Units Sold":"8378","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1290714.68","Total Cost":"761811.54","Total Profit":"528903.14"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/19/2012","Order ID":"977211415","Ship Date":"5/4/2012","Units Sold":"7428","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4963909.56","Total Cost":"3732867.12","Total Profit":"1231042.44"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"1/4/2014","Order ID":"193261802","Ship Date":"2/23/2014","Units Sold":"9317","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"86927.61","Total Cost":"64473.64","Total Profit":"22453.97"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/12/2011","Order ID":"723675286","Ship Date":"6/12/2011","Units Sold":"454","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"69943.24","Total Cost":"41282.22","Total Profit":"28661.02"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"7/18/2017","Order ID":"202875697","Ship Date":"8/24/2017","Units Sold":"4282","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1093108.96","Total Cost":"682636.44","Total Profit":"410472.52"},{"Region":"Europe","Country":"Latvia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/13/2016","Order ID":"385599362","Ship Date":"2/23/2016","Units Sold":"6275","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"58545.75","Total Cost":"43423.00","Total Profit":"15122.75"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"8/16/2010","Order ID":"396895110","Ship Date":"9/18/2010","Units Sold":"8938","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1838546.60","Total Cost":"1046729.18","Total Profit":"791817.42"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/2/2013","Order ID":"782124269","Ship Date":"10/21/2013","Units Sold":"6806","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1048532.36","Total Cost":"618869.58","Total Profit":"429662.78"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/3/2012","Order ID":"356960666","Ship Date":"2/12/2012","Units Sold":"1448","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"220935.84","Total Cost":"141093.12","Total Profit":"79842.72"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"7/29/2016","Order ID":"257390630","Ship Date":"7/29/2016","Units Sold":"6462","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"60290.46","Total Cost":"44717.04","Total Profit":"15573.42"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/21/2012","Order ID":"789712989","Ship Date":"7/8/2012","Units Sold":"2477","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"23110.41","Total Cost":"17140.84","Total Profit":"5969.57"},{"Region":"Europe","Country":"Switzerland","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"2/20/2016","Order ID":"980539071","Ship Date":"3/27/2016","Units Sold":"2156","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"332153.36","Total Cost":"196045.08","Total Profit":"136108.28"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"6/6/2011","Order ID":"826792705","Ship Date":"7/18/2011","Units Sold":"5189","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1067377.30","Total Cost":"607683.79","Total Profit":"459693.51"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/20/2013","Order ID":"845710217","Ship Date":"3/24/2013","Units Sold":"3302","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"360842.56","Total Cost":"118343.68","Total Profit":"242498.88"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"1/6/2011","Order ID":"724840438","Ship Date":"1/6/2011","Units Sold":"5248","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"800739.84","Total Cost":"511365.12","Total Profit":"289374.72"},{"Region":"Europe","Country":"Austria","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"7/23/2010","Order ID":"672044694","Ship Date":"8/12/2010","Units Sold":"1814","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"765308.46","Total Cost":"661547.66","Total Profit":"103760.80"},{"Region":"Europe","Country":"Belarus","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"11/7/2014","Order ID":"965496814","Ship Date":"12/20/2014","Units Sold":"818","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"38814.10","Total Cost":"26004.22","Total Profit":"12809.88"},{"Region":"Europe","Country":"Kosovo","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"10/24/2012","Order ID":"603683125","Ship Date":"11/2/2012","Units Sold":"2107","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"433409.90","Total Cost":"246750.77","Total Profit":"186659.13"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/17/2013","Order ID":"455402457","Ship Date":"5/17/2013","Units Sold":"2562","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"23903.46","Total Cost":"17729.04","Total Profit":"6174.42"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/16/2011","Order ID":"109766137","Ship Date":"5/25/2011","Units Sold":"1094","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"225035.80","Total Cost":"128118.34","Total Profit":"96917.46"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/27/2014","Order ID":"126197993","Ship Date":"2/14/2014","Units Sold":"3645","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"297905.85","Total Cost":"206562.15","Total Profit":"91343.70"},{"Region":"Asia","Country":"India","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/31/2014","Order ID":"684434354","Ship Date":"9/22/2014","Units Sold":"8190","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3455279.10","Total Cost":"2986811.10","Total Profit":"468468.00"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/7/2011","Order ID":"234524047","Ship Date":"3/11/2011","Units Sold":"9732","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"795396.36","Total Cost":"551512.44","Total Profit":"243883.92"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"4/17/2010","Order ID":"446828401","Ship Date":"4/28/2010","Units Sold":"5308","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"49523.64","Total Cost":"36731.36","Total Profit":"12792.28"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/17/2015","Order ID":"362021243","Ship Date":"1/14/2016","Units Sold":"8986","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1384383.16","Total Cost":"817096.98","Total Profit":"567286.18"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/24/2010","Order ID":"441088902","Ship Date":"6/25/2010","Units Sold":"6863","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1411719.10","Total Cost":"803725.93","Total Profit":"607993.17"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/17/2011","Order ID":"315330207","Ship Date":"5/7/2011","Units Sold":"2070","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"528429.60","Total Cost":"329999.40","Total Profit":"198430.20"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/9/2014","Order ID":"136356484","Ship Date":"4/11/2014","Units Sold":"9769","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1505012.14","Total Cost":"888295.17","Total Profit":"616716.97"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"3/25/2012","Order ID":"126091563","Ship Date":"4/22/2012","Units Sold":"2150","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1400101.50","Total Cost":"1128664.00","Total Profit":"271437.50"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"9/13/2014","Order ID":"126771771","Ship Date":"9/19/2014","Units Sold":"3439","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1503530.80","Total Cost":"905591.87","Total Profit":"597938.93"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/2/2013","Order ID":"950945937","Ship Date":"1/8/2013","Units Sold":"4890","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"232030.50","Total Cost":"155453.10","Total Profit":"76577.40"},{"Region":"Europe","Country":"Finland","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/8/2014","Order ID":"331475389","Ship Date":"11/11/2014","Units Sold":"9788","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4129459.32","Total Cost":"3569585.72","Total Profit":"559873.60"},{"Region":"Asia","Country":"Nepal","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/25/2017","Order ID":"571533954","Ship Date":"5/22/2017","Units Sold":"8452","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"401047.40","Total Cost":"268689.08","Total Profit":"132358.32"},{"Region":"North America","Country":"United States of America","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"6/20/2011","Order ID":"894607961","Ship Date":"8/1/2011","Units Sold":"3231","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"153310.95","Total Cost":"102713.49","Total Profit":"50597.46"},{"Region":"Europe","Country":"Slovenia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"8/10/2015","Order ID":"594496238","Ship Date":"8/31/2015","Units Sold":"3503","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2281188.63","Total Cost":"1838934.88","Total Profit":"442253.75"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/1/2011","Order ID":"385310113","Ship Date":"5/21/2011","Units Sold":"680","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"32266.00","Total Cost":"21617.20","Total Profit":"10648.80"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"5/13/2015","Order ID":"151473414","Ship Date":"6/15/2015","Units Sold":"3204","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1400788.80","Total Cost":"843709.32","Total Profit":"557079.48"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/20/2015","Order ID":"297722470","Ship Date":"4/7/2015","Units Sold":"1550","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"126681.50","Total Cost":"87838.50","Total Profit":"38843.00"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"10/25/2010","Order ID":"399106109","Ship Date":"11/15/2010","Units Sold":"3221","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2152497.67","Total Cost":"1618681.34","Total Profit":"533816.33"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"9/24/2010","Order ID":"550985658","Ship Date":"9/24/2010","Units Sold":"7755","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1183257.90","Total Cost":"755647.20","Total Profit":"427610.70"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/27/2013","Order ID":"919034945","Ship Date":"3/30/2013","Units Sold":"1718","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"264675.08","Total Cost":"156217.74","Total Profit":"108457.34"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/3/2010","Order ID":"389240300","Ship Date":"3/17/2010","Units Sold":"3709","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"571408.54","Total Cost":"337259.37","Total Profit":"234149.17"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/24/2013","Order ID":"617900550","Ship Date":"2/7/2013","Units Sold":"9359","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1925146.30","Total Cost":"1096032.49","Total Profit":"829113.81"},{"Region":"Europe","Country":"Estonia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/7/2012","Order ID":"181627023","Ship Date":"5/9/2012","Units Sold":"6327","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4120205.67","Total Cost":"3321421.92","Total Profit":"798783.75"},{"Region":"Europe","Country":"Lithuania","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/22/2010","Order ID":"427343547","Ship Date":"5/8/2010","Units Sold":"9307","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6219588.89","Total Cost":"4677139.78","Total Profit":"1542449.11"},{"Region":"Europe","Country":"Spain","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/14/2010","Order ID":"522286450","Ship Date":"8/5/2010","Units Sold":"5022","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3270376.62","Total Cost":"2636349.12","Total Profit":"634027.50"},{"Region":"Asia","Country":"Singapore","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"1/28/2014","Order ID":"604004561","Ship Date":"2/5/2014","Units Sold":"7227","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4829587.29","Total Cost":"3631856.58","Total Profit":"1197730.71"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/22/2015","Order ID":"430359208","Ship Date":"4/15/2015","Units Sold":"1708","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"436018.24","Total Cost":"272289.36","Total Profit":"163728.88"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"3/8/2013","Order ID":"729524219","Ship Date":"3/28/2013","Units Sold":"1283","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"197658.98","Total Cost":"116663.19","Total Profit":"80995.79"},{"Region":"Asia","Country":"Vietnam","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/29/2015","Order ID":"949985921","Ship Date":"11/12/2015","Units Sold":"800","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"204224.00","Total Cost":"127536.00","Total Profit":"76688.00"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/19/2013","Order ID":"610543143","Ship Date":"3/3/2013","Units Sold":"2139","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"233749.92","Total Cost":"76661.76","Total Profit":"157088.16"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/26/2011","Order ID":"650307214","Ship Date":"5/29/2011","Units Sold":"9211","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1006578.08","Total Cost":"330122.24","Total Profit":"676455.84"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"11/4/2013","Order ID":"278701961","Ship Date":"12/5/2013","Units Sold":"2958","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1976742.66","Total Cost":"1486513.32","Total Profit":"490229.34"},{"Region":"Asia","Country":"Thailand","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"2/12/2010","Order ID":"125463712","Ship Date":"3/13/2010","Units Sold":"6355","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4138439.55","Total Cost":"3336120.80","Total Profit":"802318.75"},{"Region":"Asia","Country":"North Korea","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"2/9/2017","Order ID":"890641295","Ship Date":"3/14/2017","Units Sold":"9406","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3968297.34","Total Cost":"3430274.14","Total Profit":"538023.20"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"12/26/2014","Order ID":"194596040","Ship Date":"1/11/2015","Units Sold":"4147","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"196775.15","Total Cost":"131833.13","Total Profit":"64942.02"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/27/2011","Order ID":"228001773","Ship Date":"8/4/2011","Units Sold":"9646","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1054114.88","Total Cost":"345712.64","Total Profit":"708402.24"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"6/1/2015","Order ID":"101844823","Ship Date":"6/23/2015","Units Sold":"7001","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1068212.58","Total Cost":"682177.44","Total Profit":"386035.14"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/19/2010","Order ID":"797424018","Ship Date":"3/19/2010","Units Sold":"4342","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"40510.86","Total Cost":"30046.64","Total Profit":"10464.22"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/16/2010","Order ID":"216350686","Ship Date":"6/18/2010","Units Sold":"1831","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1223602.37","Total Cost":"920150.74","Total Profit":"303451.63"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"12/22/2012","Order ID":"830548655","Ship Date":"2/9/2013","Units Sold":"6659","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1016030.22","Total Cost":"648852.96","Total Profit":"367177.26"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/12/2015","Order ID":"232254254","Ship Date":"11/13/2015","Units Sold":"8050","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5242240.50","Total Cost":"4225928.00","Total Profit":"1016312.50"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/26/2014","Order ID":"584016311","Ship Date":"4/1/2014","Units Sold":"2259","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"464676.30","Total Cost":"264551.49","Total Profit":"200124.81"},{"Region":"Asia","Country":"China","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/1/2011","Order ID":"968696153","Ship Date":"1/11/2012","Units Sold":"7573","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3310915.60","Total Cost":"1994198.09","Total Profit":"1316717.51"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"1/11/2010","Order ID":"539467608","Ship Date":"2/1/2010","Units Sold":"9308","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"86843.64","Total Cost":"64411.36","Total Profit":"22432.28"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"10/2/2010","Order ID":"769817006","Ship Date":"10/28/2010","Units Sold":"4814","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2030978.46","Total Cost":"1755617.66","Total Profit":"275360.80"},{"Region":"Europe","Country":"Lithuania","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/14/2013","Order ID":"503543174","Ship Date":"8/7/2013","Units Sold":"8470","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1304888.20","Total Cost":"770177.10","Total Profit":"534711.10"},{"Region":"Asia","Country":"Cambodia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"5/2/2011","Order ID":"904757440","Ship Date":"6/18/2011","Units Sold":"6687","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"730755.36","Total Cost":"239662.08","Total Profit":"491093.28"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/31/2017","Order ID":"507883632","Ship Date":"2/12/2017","Units Sold":"2908","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"598175.60","Total Cost":"340555.88","Total Profit":"257619.72"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/8/2014","Order ID":"167658078","Ship Date":"7/11/2014","Units Sold":"2606","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1139343.20","Total Cost":"686237.98","Total Profit":"453105.22"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"11/29/2014","Order ID":"809129607","Ship Date":"1/9/2015","Units Sold":"8286","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1704430.20","Total Cost":"970373.46","Total Profit":"734056.74"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/25/2015","Order ID":"277659547","Ship Date":"7/4/2015","Units Sold":"4485","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"366559.05","Total Cost":"254164.95","Total Profit":"112394.10"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/17/2010","Order ID":"988921725","Ship Date":"10/18/2010","Units Sold":"2769","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"226310.37","Total Cost":"156919.23","Total Profit":"69391.14"},{"Region":"Europe","Country":"Greece","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/20/2011","Order ID":"478902471","Ship Date":"5/31/2011","Units Sold":"6738","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4502803.26","Total Cost":"3386114.52","Total Profit":"1116688.74"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"1/29/2010","Order ID":"853900611","Ship Date":"2/11/2010","Units Sold":"7021","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4691923.67","Total Cost":"3528333.34","Total Profit":"1163590.33"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/31/2016","Order ID":"240527474","Ship Date":"3/7/2016","Units Sold":"6280","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"297986.00","Total Cost":"199641.20","Total Profit":"98344.80"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"12/2/2012","Order ID":"435706889","Ship Date":"1/5/2013","Units Sold":"4206","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1073707.68","Total Cost":"670520.52","Total Profit":"403187.16"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/18/2015","Order ID":"156675183","Ship Date":"9/2/2015","Units Sold":"2523","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"388693.38","Total Cost":"229416.39","Total Profit":"159276.99"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/20/2013","Order ID":"890981185","Ship Date":"8/9/2013","Units Sold":"9987","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"93178.71","Total Cost":"69110.04","Total Profit":"24068.67"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"6/5/2012","Order ID":"146486222","Ship Date":"7/9/2012","Units Sold":"7383","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"350323.35","Total Cost":"234705.57","Total Profit":"115617.78"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"6/4/2015","Order ID":"901364123","Ship Date":"7/4/2015","Units Sold":"2529","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"206695.17","Total Cost":"143318.43","Total Profit":"63376.74"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"5/21/2011","Order ID":"354101216","Ship Date":"6/17/2011","Units Sold":"5274","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"49206.42","Total Cost":"36496.08","Total Profit":"12710.34"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"10/20/2016","Order ID":"273496329","Ship Date":"10/27/2016","Units Sold":"2496","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"513427.20","Total Cost":"292306.56","Total Profit":"221120.64"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/18/2011","Order ID":"248660790","Ship Date":"5/30/2011","Units Sold":"3109","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"474371.22","Total Cost":"302940.96","Total Profit":"171430.26"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"7/8/2017","Order ID":"839018428","Ship Date":"8/3/2017","Units Sold":"3053","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1288030.17","Total Cost":"1113398.57","Total Profit":"174631.60"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"4/6/2013","Order ID":"424305570","Ship Date":"5/18/2013","Units Sold":"302","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"201817.54","Total Cost":"151767.08","Total Profit":"50050.46"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"10/19/2011","Order ID":"154571044","Ship Date":"12/2/2011","Units Sold":"9862","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1519339.72","Total Cost":"896751.66","Total Profit":"622588.06"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"3/22/2012","Order ID":"800176179","Ship Date":"4/20/2012","Units Sold":"8768","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1337821.44","Total Cost":"854353.92","Total Profit":"483467.52"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/30/2010","Order ID":"501794803","Ship Date":"12/31/2010","Units Sold":"1088","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"51625.60","Total Cost":"34587.52","Total Profit":"17038.08"},{"Region":"Europe","Country":"Croatia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"11/23/2012","Order ID":"620413243","Ship Date":"1/11/2013","Units Sold":"2920","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"138554.00","Total Cost":"92826.80","Total Profit":"45727.20"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"11/20/2012","Order ID":"787330329","Ship Date":"12/8/2012","Units Sold":"7395","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"68995.35","Total Cost":"51173.40","Total Profit":"17821.95"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"4/2/2014","Order ID":"254157388","Ship Date":"5/12/2014","Units Sold":"9674","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"90258.42","Total Cost":"66944.08","Total Profit":"23314.34"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"1/20/2010","Order ID":"142818248","Ship Date":"1/21/2010","Units Sold":"1948","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"851665.60","Total Cost":"512966.84","Total Profit":"338698.76"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/22/2017","Order ID":"295549237","Ship Date":"2/26/2017","Units Sold":"8442","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2155073.76","Total Cost":"1345823.64","Total Profit":"809250.12"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"10/16/2011","Order ID":"624899184","Ship Date":"11/23/2011","Units Sold":"410","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"84337.00","Total Cost":"48015.10","Total Profit":"36321.90"},{"Region":"Europe","Country":"Romania","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/3/2016","Order ID":"663729417","Ship Date":"10/7/2016","Units Sold":"1139","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"497970.80","Total Cost":"299932.87","Total Profit":"198037.93"},{"Region":"Europe","Country":"Russia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"3/22/2014","Order ID":"915213763","Ship Date":"5/8/2014","Units Sold":"945","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"615393.45","Total Cost":"496087.20","Total Profit":"119306.25"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/26/2010","Order ID":"602838551","Ship Date":"3/15/2010","Units Sold":"2179","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"335696.74","Total Cost":"198136.47","Total Profit":"137560.27"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"5/15/2015","Order ID":"820402610","Ship Date":"5/25/2015","Units Sold":"4218","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1076771.04","Total Cost":"672433.56","Total Profit":"404337.48"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/15/2011","Order ID":"482017266","Ship Date":"7/16/2011","Units Sold":"8475","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"402138.75","Total Cost":"269420.25","Total Profit":"132718.50"},{"Region":"Europe","Country":"Netherlands","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"2/20/2015","Order ID":"372106349","Ship Date":"3/15/2015","Units Sold":"3393","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"517703.94","Total Cost":"330613.92","Total Profit":"187090.02"},{"Region":"Europe","Country":"Denmark","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"12/7/2013","Order ID":"895406186","Ship Date":"1/22/2014","Units Sold":"9443","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1942425.10","Total Cost":"1105869.73","Total Profit":"836555.37"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"5/4/2015","Order ID":"726965606","Ship Date":"6/16/2015","Units Sold":"4132","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"38551.56","Total Cost":"28593.44","Total Profit":"9958.12"},{"Region":"Europe","Country":"Cyprus","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"10/11/2012","Order ID":"862145936","Ship Date":"11/5/2012","Units Sold":"6996","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4675216.92","Total Cost":"3515769.84","Total Profit":"1159447.08"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/4/2012","Order ID":"566621005","Ship Date":"3/14/2012","Units Sold":"4602","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3075378.54","Total Cost":"2312689.08","Total Profit":"762689.46"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/17/2012","Order ID":"526377141","Ship Date":"10/2/2012","Units Sold":"5548","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3612913.08","Total Cost":"2912478.08","Total Profit":"700435.00"},{"Region":"Europe","Country":"Moldova ","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/29/2010","Order ID":"597713172","Ship Date":"2/11/2011","Units Sold":"5465","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1124150.50","Total Cost":"640006.15","Total Profit":"484144.35"},{"Region":"Europe","Country":"Armenia","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"6/12/2012","Order ID":"257240426","Ship Date":"7/29/2012","Units Sold":"2013","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1345227.51","Total Cost":"1011613.02","Total Profit":"333614.49"},{"Region":"Europe","Country":"Serbia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"12/13/2011","Order ID":"851882731","Ship Date":"12/15/2011","Units Sold":"9886","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"92236.38","Total Cost":"68411.12","Total Profit":"23825.26"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"2/4/2013","Order ID":"648876416","Ship Date":"3/3/2013","Units Sold":"5806","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"474524.38","Total Cost":"329026.02","Total Profit":"145498.36"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"10/7/2016","Order ID":"685770308","Ship Date":"10/29/2016","Units Sold":"3528","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2357656.56","Total Cost":"1772961.12","Total Profit":"584695.44"},{"Region":"Europe","Country":"San Marino","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/29/2017","Order ID":"720425736","Ship Date":"4/30/2017","Units Sold":"8840","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1818388.00","Total Cost":"1035252.40","Total Profit":"783135.60"},{"Region":"Europe","Country":"Germany","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/30/2013","Order ID":"581016528","Ship Date":"1/20/2014","Units Sold":"4557","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"372443.61","Total Cost":"258245.19","Total Profit":"114198.42"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"8/20/2014","Order ID":"616029012","Ship Date":"10/6/2014","Units Sold":"5529","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"604209.12","Total Cost":"198159.36","Total Profit":"406049.76"},{"Region":"Europe","Country":"Armenia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/20/2016","Order ID":"344262015","Ship Date":"11/23/2016","Units Sold":"3635","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1589222.00","Total Cost":"957204.55","Total Profit":"632017.45"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/23/2011","Order ID":"704826867","Ship Date":"9/11/2011","Units Sold":"2788","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1218913.60","Total Cost":"734164.04","Total Profit":"484749.56"},{"Region":"Europe","Country":"France","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/10/2017","Order ID":"907147395","Ship Date":"7/13/2017","Units Sold":"3928","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"807989.60","Total Cost":"460008.08","Total Profit":"347981.52"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/11/2016","Order ID":"680959928","Ship Date":"7/23/2016","Units Sold":"30","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"279.90","Total Cost":"207.60","Total Profit":"72.30"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"5/23/2010","Order ID":"726313292","Ship Date":"6/29/2010","Units Sold":"1098","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"52100.10","Total Cost":"34905.42","Total Profit":"17194.68"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/23/2017","Order ID":"463568818","Ship Date":"4/13/2017","Units Sold":"9170","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1886269.00","Total Cost":"1073898.70","Total Profit":"812370.30"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"4/1/2014","Order ID":"283400332","Ship Date":"4/6/2014","Units Sold":"3311","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"157106.95","Total Cost":"105256.69","Total Profit":"51850.26"},{"Region":"North America","Country":"Greenland","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"6/30/2010","Order ID":"196794164","Ship Date":"8/2/2010","Units Sold":"4621","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"43113.93","Total Cost":"31977.32","Total Profit":"11136.61"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"12/20/2011","Order ID":"285049140","Ship Date":"1/30/2012","Units Sold":"1230","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"253011.00","Total Cost":"144045.30","Total Profit":"108965.70"},{"Region":"Europe","Country":"Spain","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"9/3/2010","Order ID":"249776589","Ship Date":"9/7/2010","Units Sold":"3298","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1441885.60","Total Cost":"868462.34","Total Profit":"573423.26"},{"Region":"Europe","Country":"Austria","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"1/13/2011","Order ID":"762900340","Ship Date":"2/19/2011","Units Sold":"8019","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"74817.27","Total Cost":"55491.48","Total Profit":"19325.79"},{"Region":"Asia","Country":"Taiwan","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"12/21/2010","Order ID":"316656720","Ship Date":"1/4/2011","Units Sold":"4615","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"218981.75","Total Cost":"146710.85","Total Profit":"72270.90"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"4/2/2013","Order ID":"173594558","Ship Date":"4/3/2013","Units Sold":"9342","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"443277.90","Total Cost":"296982.18","Total Profit":"146295.72"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/20/2014","Order ID":"316575181","Ship Date":"3/18/2014","Units Sold":"486","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"205038.54","Total Cost":"177239.34","Total Profit":"27799.20"},{"Region":"Asia","Country":"South Korea","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/30/2014","Order ID":"798772418","Ship Date":"10/4/2014","Units Sold":"3364","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"518257.84","Total Cost":"305888.52","Total Profit":"212369.32"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"4/1/2017","Order ID":"393672597","Ship Date":"4/16/2017","Units Sold":"5325","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2246564.25","Total Cost":"1941974.25","Total Profit":"304590.00"},{"Region":"Asia","Country":"Japan","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"7/14/2013","Order ID":"645074546","Ship Date":"8/10/2013","Units Sold":"748","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"315573.72","Total Cost":"272788.12","Total Profit":"42785.60"},{"Region":"Asia","Country":"Taiwan","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"9/10/2011","Order ID":"917089593","Ship Date":"10/1/2011","Units Sold":"6045","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3936564.45","Total Cost":"3173383.20","Total Profit":"763181.25"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"2/5/2017","Order ID":"644141566","Ship Date":"2/21/2017","Units Sold":"4659","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"717765.54","Total Cost":"423642.87","Total Profit":"294122.67"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/21/2013","Order ID":"680966794","Ship Date":"8/5/2013","Units Sold":"2062","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"19238.46","Total Cost":"14269.04","Total Profit":"4969.42"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/6/2012","Order ID":"152614104","Ship Date":"3/4/2012","Units Sold":"760","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"7090.80","Total Cost":"5259.20","Total Profit":"1831.60"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"3/11/2010","Order ID":"504444825","Ship Date":"4/28/2010","Units Sold":"5289","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1087947.30","Total Cost":"619394.79","Total Profit":"468552.51"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/19/2017","Order ID":"552132785","Ship Date":"6/18/2017","Units Sold":"7215","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"589681.95","Total Cost":"408874.05","Total Profit":"180807.90"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/26/2014","Order ID":"531664311","Ship Date":"2/3/2014","Units Sold":"139","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"90518.19","Total Cost":"72969.44","Total Profit":"17548.75"},{"Region":"Europe","Country":"Montenegro","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"10/25/2015","Order ID":"749338233","Ship Date":"11/1/2015","Units Sold":"4690","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"43757.70","Total Cost":"32454.80","Total Profit":"11302.90"},{"Region":"Europe","Country":"Lithuania","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"7/2/2016","Order ID":"231765878","Ship Date":"7/15/2016","Units Sold":"3528","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2357656.56","Total Cost":"1772961.12","Total Profit":"584695.44"},{"Region":"Europe","Country":"Macedonia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/19/2014","Order ID":"775871074","Ship Date":"11/22/2014","Units Sold":"6347","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2774908.40","Total Cost":"1671355.51","Total Profit":"1103552.89"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/8/2010","Order ID":"198890149","Ship Date":"10/23/2010","Units Sold":"4870","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1001759.00","Total Cost":"570325.70","Total Profit":"431433.30"},{"Region":"Europe","Country":"Cyprus","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"5/24/2016","Order ID":"888371932","Ship Date":"6/19/2016","Units Sold":"7851","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1197905.58","Total Cost":"765001.44","Total Profit":"432904.14"},{"Region":"Asia","Country":"Malaysia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"10/8/2014","Order ID":"352177751","Ship Date":"11/4/2014","Units Sold":"6077","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2563825.53","Total Cost":"2216221.13","Total Profit":"347604.40"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/21/2016","Order ID":"668481433","Ship Date":"8/5/2016","Units Sold":"7366","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4796812.86","Total Cost":"3866855.36","Total Profit":"929957.50"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/6/2010","Order ID":"835769307","Ship Date":"6/29/2010","Units Sold":"1565","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"127907.45","Total Cost":"88688.55","Total Profit":"39218.90"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"2/17/2013","Order ID":"822840201","Ship Date":"3/31/2013","Units Sold":"5556","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1142869.20","Total Cost":"650663.16","Total Profit":"492206.04"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/9/2011","Order ID":"218805444","Ship Date":"12/24/2011","Units Sold":"8248","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"901341.44","Total Cost":"295608.32","Total Profit":"605733.12"},{"Region":"Asia","Country":"Philippines","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/11/2013","Order ID":"483088862","Ship Date":"11/23/2013","Units Sold":"5585","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2356255.65","Total Cost":"2036793.65","Total Profit":"319462.00"},{"Region":"Asia","Country":"Brunei","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"5/3/2012","Order ID":"895426785","Ship Date":"6/12/2012","Units Sold":"5539","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1139372.30","Total Cost":"648672.29","Total Profit":"490700.01"},{"Region":"Europe","Country":"Romania","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"11/21/2012","Order ID":"805868041","Ship Date":"12/3/2012","Units Sold":"3116","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"480050.96","Total Cost":"283337.88","Total Profit":"196713.08"},{"Region":"Europe","Country":"Portugal","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"8/16/2014","Order ID":"984773957","Ship Date":"9/9/2014","Units Sold":"5353","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"437500.69","Total Cost":"303354.51","Total Profit":"134146.18"},{"Region":"Europe","Country":"Kosovo","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/30/2013","Order ID":"472818362","Ship Date":"12/12/2013","Units Sold":"6315","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4220125.05","Total Cost":"3173540.10","Total Profit":"1046584.95"},{"Region":"Europe","Country":"Vatican City","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"10/14/2015","Order ID":"630987584","Ship Date":"11/6/2015","Units Sold":"2103","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"99787.35","Total Cost":"66854.37","Total Profit":"32932.98"},{"Region":"North America","Country":"United States of America","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/15/2014","Order ID":"190580451","Ship Date":"1/29/2015","Units Sold":"5845","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3906038.15","Total Cost":"2937346.30","Total Profit":"968691.85"},{"Region":"Asia","Country":"Bhutan","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/15/2014","Order ID":"203208291","Ship Date":"11/9/2014","Units Sold":"2704","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"416578.24","Total Cost":"245874.72","Total Profit":"170703.52"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"12/3/2015","Order ID":"890794932","Ship Date":"12/6/2015","Units Sold":"4871","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1001964.70","Total Cost":"570442.81","Total Profit":"431521.89"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/28/2012","Order ID":"295576703","Ship Date":"7/29/2012","Units Sold":"6570","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1351449.00","Total Cost":"769412.70","Total Profit":"582036.30"},{"Region":"Europe","Country":"Sweden","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/18/2011","Order ID":"130102431","Ship Date":"3/6/2011","Units Sold":"9055","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3820213.95","Total Cost":"3302267.95","Total Profit":"517946.00"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/23/2011","Order ID":"827233445","Ship Date":"8/27/2011","Units Sold":"5614","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1154799.80","Total Cost":"657455.54","Total Profit":"497344.26"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"8/8/2011","Order ID":"190143573","Ship Date":"9/21/2011","Units Sold":"6563","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1675402.64","Total Cost":"1046273.46","Total Profit":"629129.18"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/20/2016","Order ID":"142319142","Ship Date":"12/10/2016","Units Sold":"4252","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1085450.56","Total Cost":"677853.84","Total Profit":"407596.72"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/8/2015","Order ID":"877558982","Ship Date":"9/4/2015","Units Sold":"8059","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1229642.22","Total Cost":"785268.96","Total Profit":"444373.26"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/18/2012","Order ID":"409974420","Ship Date":"2/6/2012","Units Sold":"9396","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4107931.20","Total Cost":"2474248.68","Total Profit":"1633682.52"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/22/2015","Order ID":"423989284","Ship Date":"7/2/2015","Units Sold":"6706","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4481418.62","Total Cost":"3370033.24","Total Profit":"1111385.38"},{"Region":"Asia","Country":"Tajikistan","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"2/15/2013","Order ID":"424339902","Ship Date":"2/15/2013","Units Sold":"462","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"50487.36","Total Cost":"16558.08","Total Profit":"33929.28"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"10/5/2012","Order ID":"886075103","Ship Date":"11/17/2012","Units Sold":"8168","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1680157.60","Total Cost":"956554.48","Total Profit":"723603.12"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"4/19/2015","Order ID":"104556214","Ship Date":"5/17/2015","Units Sold":"9362","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1023079.36","Total Cost":"335534.08","Total Profit":"687545.28"},{"Region":"Europe","Country":"Italy","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"6/5/2011","Order ID":"945457065","Ship Date":"6/7/2011","Units Sold":"610","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"5691.30","Total Cost":"4221.20","Total Profit":"1470.10"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/20/2015","Order ID":"494763982","Ship Date":"9/17/2015","Units Sold":"512","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"342154.24","Total Cost":"257300.48","Total Profit":"84853.76"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/19/2016","Order ID":"408775794","Ship Date":"12/21/2016","Units Sold":"4696","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"723465.76","Total Cost":"427007.28","Total Profit":"296458.48"},{"Region":"Europe","Country":"Belgium","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"2/7/2013","Order ID":"164103829","Ship Date":"3/18/2013","Units Sold":"825","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"210606.00","Total Cost":"131521.50","Total Profit":"79084.50"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/24/2014","Order ID":"207671916","Ship Date":"4/2/2014","Units Sold":"3590","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"916455.20","Total Cost":"572317.80","Total Profit":"344137.40"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"2/19/2016","Order ID":"606716382","Ship Date":"2/29/2016","Units Sold":"9715","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"460976.75","Total Cost":"308839.85","Total Profit":"152136.90"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/10/2012","Order ID":"598786056","Ship Date":"5/23/2012","Units Sold":"2955","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"450873.90","Total Cost":"287935.20","Total Profit":"162938.70"},{"Region":"Europe","Country":"Moldova ","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/1/2012","Order ID":"841742265","Ship Date":"5/9/2012","Units Sold":"9096","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"84865.68","Total Cost":"62944.32","Total Profit":"21921.36"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"4/13/2015","Order ID":"263758838","Ship Date":"4/13/2015","Units Sold":"956","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"196649.20","Total Cost":"111957.16","Total Profit":"84692.04"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/30/2013","Order ID":"113322103","Ship Date":"12/7/2013","Units Sold":"3383","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2260757.41","Total Cost":"1700092.82","Total Profit":"560664.59"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/14/2013","Order ID":"809230887","Ship Date":"6/16/2013","Units Sold":"8257","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1259853.06","Total Cost":"804562.08","Total Profit":"455290.98"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/9/2012","Order ID":"590596520","Ship Date":"5/25/2012","Units Sold":"9490","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6341882.30","Total Cost":"4769104.60","Total Profit":"1572777.70"},{"Region":"Asia","Country":"Taiwan","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/7/2014","Order ID":"466842830","Ship Date":"2/9/2014","Units Sold":"8022","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"876644.16","Total Cost":"287508.48","Total Profit":"589135.68"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/2/2015","Order ID":"167706143","Ship Date":"11/27/2015","Units Sold":"6829","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"63714.57","Total Cost":"47256.68","Total Profit":"16457.89"},{"Region":"Europe","Country":"Russia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"9/20/2011","Order ID":"393235290","Ship Date":"10/9/2011","Units Sold":"5916","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2495901.24","Total Cost":"2157506.04","Total Profit":"338395.20"},{"Region":"Europe","Country":"Ukraine","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/19/2012","Order ID":"563791596","Ship Date":"3/27/2012","Units Sold":"7317","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4764903.57","Total Cost":"3841132.32","Total Profit":"923771.25"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"6/26/2017","Order ID":"170048892","Ship Date":"6/26/2017","Units Sold":"101","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"942.33","Total Cost":"698.92","Total Profit":"243.41"},{"Region":"Europe","Country":"Armenia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"8/15/2013","Order ID":"122993505","Ship Date":"9/5/2013","Units Sold":"5366","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"818744.28","Total Cost":"522863.04","Total Profit":"295881.24"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"4/10/2014","Order ID":"503924262","Ship Date":"5/11/2014","Units Sold":"1242","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"255479.40","Total Cost":"145450.62","Total Profit":"110028.78"},{"Region":"Europe","Country":"Andorra","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"6/13/2011","Order ID":"114452493","Ship Date":"6/16/2011","Units Sold":"7891","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1204008.78","Total Cost":"768899.04","Total Profit":"435109.74"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/21/2017","Order ID":"526502025","Ship Date":"2/23/2017","Units Sold":"2504","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"273637.12","Total Cost":"89743.36","Total Profit":"183893.76"},{"Region":"North America","Country":"United States of America","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"2/16/2014","Order ID":"232309186","Ship Date":"2/20/2014","Units Sold":"4305","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"351847.65","Total Cost":"243964.35","Total Profit":"107883.30"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"9/30/2012","Order ID":"494422805","Ship Date":"10/24/2012","Units Sold":"9550","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1457139.00","Total Cost":"930552.00","Total Profit":"526587.00"},{"Region":"Europe","Country":"Latvia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"11/1/2016","Order ID":"395704209","Ship Date":"12/11/2016","Units Sold":"6524","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1665446.72","Total Cost":"1040056.08","Total Profit":"625390.64"},{"Region":"Asia","Country":"India","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"5/12/2012","Order ID":"889327228","Ship Date":"5/27/2012","Units Sold":"544","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"44461.12","Total Cost":"30828.48","Total Profit":"13632.64"},{"Region":"Europe","Country":"Iceland","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"8/24/2016","Order ID":"748778188","Ship Date":"9/26/2016","Units Sold":"8960","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"979148.80","Total Cost":"321126.40","Total Profit":"658022.40"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/1/2014","Order ID":"617855918","Ship Date":"1/9/2014","Units Sold":"6151","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"291864.95","Total Cost":"195540.29","Total Profit":"96324.66"},{"Region":"Europe","Country":"Andorra","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/10/2012","Order ID":"760671746","Ship Date":"8/3/2012","Units Sold":"8528","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"79566.24","Total Cost":"59013.76","Total Profit":"20552.48"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/4/2010","Order ID":"611649501","Ship Date":"2/21/2010","Units Sold":"9534","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1454697.72","Total Cost":"928992.96","Total Profit":"525704.76"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/24/2012","Order ID":"125525510","Ship Date":"12/7/2012","Units Sold":"4643","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"379472.39","Total Cost":"263118.81","Total Profit":"116353.58"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/1/2017","Order ID":"227348601","Ship Date":"6/11/2017","Units Sold":"6358","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4248860.66","Total Cost":"3195149.32","Total Profit":"1053711.34"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"12/12/2012","Order ID":"562480103","Ship Date":"12/27/2012","Units Sold":"9217","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6159444.59","Total Cost":"4631911.18","Total Profit":"1527533.41"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"12/12/2016","Order ID":"846593844","Ship Date":"12/19/2016","Units Sold":"4787","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"523123.36","Total Cost":"171566.08","Total Profit":"351557.28"},{"Region":"Europe","Country":"Cyprus","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/25/2017","Order ID":"415676152","Ship Date":"4/29/2017","Units Sold":"6666","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"62193.78","Total Cost":"46128.72","Total Profit":"16065.06"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/14/2014","Order ID":"476025855","Ship Date":"7/13/2014","Units Sold":"5484","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1128058.80","Total Cost":"642231.24","Total Profit":"485827.56"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"5/24/2017","Order ID":"954254281","Ship Date":"6/13/2017","Units Sold":"3902","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2607589.54","Total Cost":"1960911.08","Total Profit":"646678.46"},{"Region":"Asia","Country":"Myanmar","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/28/2017","Order ID":"947285258","Ship Date":"4/29/2017","Units Sold":"1614","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"131912.22","Total Cost":"91465.38","Total Profit":"40446.84"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/16/2014","Order ID":"972355115","Ship Date":"1/29/2014","Units Sold":"341","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"87050.48","Total Cost":"54362.22","Total Profit":"32688.26"},{"Region":"Europe","Country":"Portugal","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/22/2012","Order ID":"717012679","Ship Date":"4/22/2012","Units Sold":"8840","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"722493.20","Total Cost":"500962.80","Total Profit":"221530.40"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/5/2010","Order ID":"389119279","Ship Date":"2/21/2010","Units Sold":"7897","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1216611.82","Total Cost":"718074.21","Total Profit":"498537.61"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"6/3/2010","Order ID":"266848742","Ship Date":"7/12/2010","Units Sold":"5328","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2247829.92","Total Cost":"1943068.32","Total Profit":"304761.60"},{"Region":"Europe","Country":"Italy","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"7/8/2017","Order ID":"248687398","Ship Date":"8/25/2017","Units Sold":"982","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"201997.40","Total Cost":"115002.02","Total Profit":"86995.38"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/5/2017","Order ID":"303434073","Ship Date":"7/10/2017","Units Sold":"1740","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"268064.40","Total Cost":"158218.20","Total Profit":"109846.20"},{"Region":"North America","Country":"United States of America","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"10/21/2012","Order ID":"920200097","Ship Date":"10/24/2012","Units Sold":"6512","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"993600.96","Total Cost":"634529.28","Total Profit":"359071.68"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"9/5/2010","Order ID":"858409297","Ship Date":"10/1/2010","Units Sold":"1242","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"135725.76","Total Cost":"44513.28","Total Profit":"91212.48"},{"Region":"Asia","Country":"Nepal","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"11/19/2011","Order ID":"297798001","Ship Date":"12/5/2011","Units Sold":"3901","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"426301.28","Total Cost":"139811.84","Total Profit":"286489.44"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/15/2014","Order ID":"388415038","Ship Date":"6/23/2014","Units Sold":"9496","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4006267.44","Total Cost":"3463096.24","Total Profit":"543171.20"},{"Region":"Europe","Country":"Denmark","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"6/30/2017","Order ID":"100621736","Ship Date":"8/18/2017","Units Sold":"5062","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"413717.26","Total Cost":"286863.54","Total Profit":"126853.72"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/22/2017","Order ID":"275091922","Ship Date":"6/13/2017","Units Sold":"4668","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3119484.36","Total Cost":"2345856.72","Total Profit":"773627.64"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/29/2011","Order ID":"472811925","Ship Date":"8/24/2011","Units Sold":"4410","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"907137.00","Total Cost":"516455.10","Total Profit":"390681.90"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"6/30/2017","Order ID":"325080573","Ship Date":"8/18/2017","Units Sold":"7420","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1143125.20","Total Cost":"674700.60","Total Profit":"468424.60"},{"Region":"Europe","Country":"Croatia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/19/2015","Order ID":"883509194","Ship Date":"11/27/2015","Units Sold":"8859","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"724046.07","Total Cost":"502039.53","Total Profit":"222006.54"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/10/2014","Order ID":"570021617","Ship Date":"10/14/2014","Units Sold":"918","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"8564.94","Total Cost":"6352.56","Total Profit":"2212.38"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/19/2015","Order ID":"126854169","Ship Date":"12/25/2015","Units Sold":"7822","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1205057.32","Total Cost":"711254.46","Total Profit":"493802.86"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"10/12/2010","Order ID":"366555678","Ship Date":"11/15/2010","Units Sold":"826","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"210861.28","Total Cost":"131680.92","Total Profit":"79180.36"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/30/2014","Order ID":"821987473","Ship Date":"8/31/2014","Units Sold":"3215","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1405598.00","Total Cost":"846605.95","Total Profit":"558992.05"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/10/2017","Order ID":"196323382","Ship Date":"1/29/2017","Units Sold":"5306","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"251769.70","Total Cost":"168677.74","Total Profit":"83091.96"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"7/10/2016","Order ID":"413049733","Ship Date":"7/12/2016","Units Sold":"9450","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1441881.00","Total Cost":"920808.00","Total Profit":"521073.00"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/23/2016","Order ID":"765965354","Ship Date":"5/15/2016","Units Sold":"5025","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"766714.50","Total Cost":"489636.00","Total Profit":"277078.50"},{"Region":"Europe","Country":"Sweden","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/12/2013","Order ID":"169181573","Ship Date":"3/20/2013","Units Sold":"3442","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"281314.66","Total Cost":"195058.14","Total Profit":"86256.52"},{"Region":"Europe","Country":"Ukraine","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"2/10/2016","Order ID":"307122218","Ship Date":"3/18/2016","Units Sold":"3144","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"343576.32","Total Cost":"112680.96","Total Profit":"230895.36"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"10/15/2012","Order ID":"684523618","Ship Date":"11/18/2012","Units Sold":"4605","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3077383.35","Total Cost":"2314196.70","Total Profit":"763186.65"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"8/29/2010","Order ID":"876434600","Ship Date":"9/19/2010","Units Sold":"5329","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1360387.12","Total Cost":"849549.18","Total Profit":"510837.94"},{"Region":"Europe","Country":"Vatican City","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/19/2010","Order ID":"978216493","Ship Date":"9/27/2010","Units Sold":"4853","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1238873.84","Total Cost":"773665.26","Total Profit":"465208.58"},{"Region":"Europe","Country":"Ukraine","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/26/2011","Order ID":"255543124","Ship Date":"5/9/2011","Units Sold":"9744","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2487448.32","Total Cost":"1553388.48","Total Profit":"934059.84"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"7/17/2011","Order ID":"294400823","Ship Date":"8/24/2011","Units Sold":"8601","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3760357.20","Total Cost":"2264901.33","Total Profit":"1495455.87"},{"Region":"Asia","Country":"Malaysia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/3/2015","Order ID":"951088416","Ship Date":"12/12/2015","Units Sold":"7052","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4712640.04","Total Cost":"3543912.08","Total Profit":"1168727.96"},{"Region":"Europe","Country":"Hungary","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"3/26/2014","Order ID":"802217233","Ship Date":"4/3/2014","Units Sold":"2761","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"225656.53","Total Cost":"156465.87","Total Profit":"69190.66"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/28/2016","Order ID":"294711101","Ship Date":"12/16/2016","Units Sold":"419","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"19881.55","Total Cost":"13320.01","Total Profit":"6561.54"},{"Region":"Europe","Country":"Switzerland","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"1/27/2012","Order ID":"395806348","Ship Date":"2/18/2012","Units Sold":"6749","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2847335.61","Total Cost":"2461292.81","Total Profit":"386042.80"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"12/29/2015","Order ID":"343051803","Ship Date":"1/30/2016","Units Sold":"5507","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2407660.40","Total Cost":"1450158.31","Total Profit":"957502.09"},{"Region":"Europe","Country":"Netherlands","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/20/2015","Order ID":"794308793","Ship Date":"7/2/2015","Units Sold":"2478","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1655973.06","Total Cost":"1245294.12","Total Profit":"410678.94"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"1/14/2017","Order ID":"677751147","Ship Date":"1/22/2017","Units Sold":"480","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"52454.40","Total Cost":"17203.20","Total Profit":"35251.20"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"9/1/2013","Order ID":"341865193","Ship Date":"10/17/2013","Units Sold":"4363","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"665706.54","Total Cost":"425130.72","Total Profit":"240575.82"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"5/29/2010","Order ID":"205449759","Ship Date":"6/7/2010","Units Sold":"6004","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"490706.92","Total Cost":"340246.68","Total Profit":"150460.24"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/17/2013","Order ID":"307616174","Ship Date":"7/6/2013","Units Sold":"9317","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1435377.02","Total Cost":"847194.81","Total Profit":"588182.21"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"2/27/2011","Order ID":"757788264","Ship Date":"3/30/2011","Units Sold":"5242","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"428428.66","Total Cost":"297064.14","Total Profit":"131364.52"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/15/2015","Order ID":"385702359","Ship Date":"8/30/2015","Units Sold":"6754","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4398272.34","Total Cost":"3545579.84","Total Profit":"852692.50"},{"Region":"Europe","Country":"Albania","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"7/9/2013","Order ID":"791407287","Ship Date":"8/7/2013","Units Sold":"3858","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"35995.14","Total Cost":"26697.36","Total Profit":"9297.78"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"4/29/2015","Order ID":"495264375","Ship Date":"6/14/2015","Units Sold":"8589","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2192599.92","Total Cost":"1369258.38","Total Profit":"823341.54"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/15/2013","Order ID":"787947452","Ship Date":"9/8/2013","Units Sold":"16","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"2441.28","Total Cost":"1559.04","Total Profit":"882.24"},{"Region":"Asia","Country":"Myanmar","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/21/2017","Order ID":"780442845","Ship Date":"4/29/2017","Units Sold":"9236","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"754858.28","Total Cost":"523404.12","Total Profit":"231454.16"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/19/2017","Order ID":"554049384","Ship Date":"3/9/2017","Units Sold":"4380","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"674782.80","Total Cost":"398273.40","Total Profit":"276509.40"},{"Region":"Asia","Country":"Taiwan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/11/2012","Order ID":"710378396","Ship Date":"10/12/2012","Units Sold":"5608","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3747658.16","Total Cost":"2818244.32","Total Profit":"929413.84"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"2/24/2016","Order ID":"121353709","Ship Date":"4/11/2016","Units Sold":"114","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"48095.46","Total Cost":"41574.66","Total Profit":"6520.80"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/8/2010","Order ID":"879211652","Ship Date":"3/31/2010","Units Sold":"7121","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4637266.41","Total Cost":"3738240.16","Total Profit":"899026.25"},{"Region":"Europe","Country":"Switzerland","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/18/2012","Order ID":"646501052","Ship Date":"10/14/2012","Units Sold":"2883","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"735972.24","Total Cost":"459607.86","Total Profit":"276364.38"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"6/7/2012","Order ID":"306083238","Ship Date":"7/8/2012","Units Sold":"5687","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3800451.49","Total Cost":"2857944.98","Total Profit":"942506.51"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/14/2010","Order ID":"811132037","Ship Date":"6/19/2010","Units Sold":"850","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"216988.00","Total Cost":"135507.00","Total Profit":"81481.00"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"7/8/2016","Order ID":"935133779","Ship Date":"8/5/2016","Units Sold":"5721","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2501221.20","Total Cost":"1506510.93","Total Profit":"994710.27"},{"Region":"Europe","Country":"Serbia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"12/12/2014","Order ID":"421887290","Ship Date":"12/30/2014","Units Sold":"4679","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"382414.67","Total Cost":"265158.93","Total Profit":"117255.74"},{"Region":"Europe","Country":"Spain","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/30/2013","Order ID":"435503900","Ship Date":"11/3/2013","Units Sold":"4137","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"38598.21","Total Cost":"28628.04","Total Profit":"9970.17"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/20/2010","Order ID":"410407435","Ship Date":"12/28/2010","Units Sold":"7535","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4906867.35","Total Cost":"3955573.60","Total Profit":"951293.75"},{"Region":"North America","Country":"Mexico","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"10/19/2012","Order ID":"301334226","Ship Date":"10/29/2012","Units Sold":"349","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"71789.30","Total Cost":"40871.39","Total Profit":"30917.91"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"6/20/2015","Order ID":"133333098","Ship Date":"7/23/2015","Units Sold":"5082","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2221850.40","Total Cost":"1338243.06","Total Profit":"883607.34"},{"Region":"Europe","Country":"Slovenia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/5/2016","Order ID":"451765382","Ship Date":"3/14/2016","Units Sold":"6271","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"512528.83","Total Cost":"355377.57","Total Profit":"157151.26"},{"Region":"Europe","Country":"Serbia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"12/27/2016","Order ID":"972304904","Ship Date":"1/9/2017","Units Sold":"5483","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1127853.10","Total Cost":"642114.13","Total Profit":"485738.97"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/17/2013","Order ID":"130937993","Ship Date":"7/15/2013","Units Sold":"6317","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"973197.02","Total Cost":"574404.81","Total Profit":"398792.21"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/24/2013","Order ID":"933963477","Ship Date":"8/23/2013","Units Sold":"9402","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1933991.40","Total Cost":"1101068.22","Total Profit":"832923.18"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/10/2011","Order ID":"607992684","Ship Date":"3/14/2011","Units Sold":"7401","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1129244.58","Total Cost":"721153.44","Total Profit":"408091.14"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/29/2012","Order ID":"949949443","Ship Date":"9/26/2012","Units Sold":"5","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1028.50","Total Cost":"585.55","Total Profit":"442.95"},{"Region":"Europe","Country":"Vatican City","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"3/21/2010","Order ID":"677070081","Ship Date":"4/29/2010","Units Sold":"8938","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3907693.60","Total Cost":"2353643.54","Total Profit":"1554050.06"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/4/2016","Order ID":"376903426","Ship Date":"2/18/2016","Units Sold":"2954","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1246263.06","Total Cost":"1077294.26","Total Profit":"168968.80"},{"Region":"Asia","Country":"Singapore","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/20/2013","Order ID":"257310807","Ship Date":"6/5/2013","Units Sold":"2841","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"437684.46","Total Cost":"258332.13","Total Profit":"179352.33"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/31/2012","Order ID":"596466052","Ship Date":"6/10/2012","Units Sold":"6414","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"700921.92","Total Cost":"229877.76","Total Profit":"471044.16"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"7/4/2017","Order ID":"392855489","Ship Date":"7/4/2017","Units Sold":"3524","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"537691.92","Total Cost":"343378.56","Total Profit":"194313.36"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"10/14/2014","Order ID":"515277945","Ship Date":"11/30/2014","Units Sold":"1050","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"701683.50","Total Cost":"527667.00","Total Profit":"174016.50"},{"Region":"North America","Country":"Greenland","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"3/26/2014","Order ID":"552844750","Ship Date":"5/7/2014","Units Sold":"7902","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3454754.40","Total Cost":"2080833.66","Total Profit":"1373920.74"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/18/2015","Order ID":"164979732","Ship Date":"8/5/2015","Units Sold":"24","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"223.92","Total Cost":"166.08","Total Profit":"57.84"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/26/2011","Order ID":"431419217","Ship Date":"12/16/2011","Units Sold":"5388","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2273143.32","Total Cost":"1964949.72","Total Profit":"308193.60"},{"Region":"Asia","Country":"Malaysia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/29/2016","Order ID":"702212035","Ship Date":"8/1/2016","Units Sold":"9001","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1373372.58","Total Cost":"877057.44","Total Profit":"496315.14"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/9/2013","Order ID":"847719514","Ship Date":"4/9/2013","Units Sold":"7897","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5277328.19","Total Cost":"3968558.38","Total Profit":"1308769.81"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"10/5/2013","Order ID":"808615481","Ship Date":"10/14/2013","Units Sold":"6145","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"671525.60","Total Cost":"220236.80","Total Profit":"451288.80"},{"Region":"Asia","Country":"Vietnam","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"5/30/2015","Order ID":"145886266","Ship Date":"6/6/2015","Units Sold":"9843","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6409860.03","Total Cost":"5167181.28","Total Profit":"1242678.75"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/9/2012","Order ID":"290830695","Ship Date":"1/9/2013","Units Sold":"2120","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"436084.00","Total Cost":"248273.20","Total Profit":"187810.80"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/13/2017","Order ID":"495060098","Ship Date":"5/13/2017","Units Sold":"8139","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1674192.30","Total Cost":"953158.29","Total Profit":"721034.01"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/8/2013","Order ID":"980498301","Ship Date":"1/19/2014","Units Sold":"91","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"7437.43","Total Cost":"5156.97","Total Profit":"2280.46"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/4/2012","Order ID":"689381635","Ship Date":"3/22/2012","Units Sold":"2200","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"240416.00","Total Cost":"78848.00","Total Profit":"161568.00"},{"Region":"Europe","Country":"Ireland","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/25/2010","Order ID":"434258925","Ship Date":"2/13/2011","Units Sold":"5721","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"625190.88","Total Cost":"205040.64","Total Profit":"420150.24"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/30/2010","Order ID":"647991502","Ship Date":"7/6/2010","Units Sold":"3940","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1662246.60","Total Cost":"1436878.60","Total Profit":"225368.00"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"5/10/2015","Order ID":"933753192","Ship Date":"6/2/2015","Units Sold":"7174","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"340406.30","Total Cost":"228061.46","Total Profit":"112344.84"},{"Region":"Asia","Country":"South Korea","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"8/19/2016","Order ID":"515030324","Ship Date":"8/30/2016","Units Sold":"7773","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1186004.34","Total Cost":"757401.12","Total Profit":"428603.22"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"6/28/2017","Order ID":"485621726","Ship Date":"8/13/2017","Units Sold":"5115","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1052155.50","Total Cost":"599017.65","Total Profit":"453137.85"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/30/2014","Order ID":"659638726","Ship Date":"9/30/2014","Units Sold":"613","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"268003.60","Total Cost":"161421.29","Total Profit":"106582.31"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/22/2017","Order ID":"921505153","Ship Date":"5/3/2017","Units Sold":"2707","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"128447.15","Total Cost":"86055.53","Total Profit":"42391.62"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"12/5/2012","Order ID":"775957334","Ship Date":"1/19/2013","Units Sold":"1873","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"204681.44","Total Cost":"67128.32","Total Profit":"137553.12"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/8/2016","Order ID":"698044097","Ship Date":"9/4/2016","Units Sold":"5615","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2454878.00","Total Cost":"1478597.95","Total Profit":"976280.05"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"3/8/2014","Order ID":"783126771","Ship Date":"3/26/2014","Units Sold":"3469","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2259047.49","Total Cost":"1821086.24","Total Profit":"437961.25"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/5/2011","Order ID":"296879184","Ship Date":"7/19/2011","Units Sold":"2003","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"95042.35","Total Cost":"63675.37","Total Profit":"31366.98"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"7/1/2015","Order ID":"825287663","Ship Date":"7/27/2015","Units Sold":"9814","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1497420.12","Total Cost":"956276.16","Total Profit":"541143.96"},{"Region":"Europe","Country":"Slovenia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/10/2015","Order ID":"424651038","Ship Date":"3/12/2015","Units Sold":"2534","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"390388.04","Total Cost":"230416.62","Total Profit":"159971.42"},{"Region":"Europe","Country":"Switzerland","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"11/1/2015","Order ID":"371580636","Ship Date":"11/7/2015","Units Sold":"7822","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1205057.32","Total Cost":"711254.46","Total Profit":"493802.86"},{"Region":"Asia","Country":"Mongolia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/26/2012","Order ID":"213000285","Ship Date":"7/4/2012","Units Sold":"373","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"76726.10","Total Cost":"43682.03","Total Profit":"33044.07"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"1/21/2016","Order ID":"916146314","Ship Date":"2/2/2016","Units Sold":"6908","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3020177.60","Total Cost":"1819083.64","Total Profit":"1201093.96"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/12/2012","Order ID":"818567550","Ship Date":"8/10/2012","Units Sold":"1183","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"790563.41","Total Cost":"594504.82","Total Profit":"196058.59"},{"Region":"Europe","Country":"Vatican City","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/3/2011","Order ID":"578125321","Ship Date":"5/8/2011","Units Sold":"8985","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"83830.05","Total Cost":"62176.20","Total Profit":"21653.85"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/12/2011","Order ID":"922993457","Ship Date":"10/26/2011","Units Sold":"3130","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"255814.90","Total Cost":"177377.10","Total Profit":"78437.80"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"11/22/2013","Order ID":"401658284","Ship Date":"12/4/2013","Units Sold":"8467","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3701772.40","Total Cost":"2229615.11","Total Profit":"1472157.29"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"6/29/2015","Order ID":"332918632","Ship Date":"7/14/2015","Units Sold":"6876","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"561975.48","Total Cost":"389662.92","Total Profit":"172312.56"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"2/14/2015","Order ID":"755885827","Ship Date":"3/7/2015","Units Sold":"2269","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"21169.77","Total Cost":"15701.48","Total Profit":"5468.29"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/4/2016","Order ID":"879983699","Ship Date":"5/11/2016","Units Sold":"5587","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3733624.49","Total Cost":"2807690.98","Total Profit":"925933.51"},{"Region":"Europe","Country":"Portugal","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/16/2015","Order ID":"434948575","Ship Date":"12/19/2015","Units Sold":"9804","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1495894.32","Total Cost":"955301.76","Total Profit":"540592.56"},{"Region":"Asia","Country":"Vietnam","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"10/19/2015","Order ID":"120829284","Ship Date":"11/5/2015","Units Sold":"4925","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2153210.00","Total Cost":"1296900.25","Total Profit":"856309.75"},{"Region":"Europe","Country":"Iceland","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/3/2011","Order ID":"257987153","Ship Date":"5/15/2011","Units Sold":"2986","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1995454.22","Total Cost":"1500584.44","Total Profit":"494869.78"},{"Region":"Asia","Country":"South Korea","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"3/26/2010","Order ID":"337096011","Ship Date":"4/21/2010","Units Sold":"3056","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1289295.84","Total Cost":"1114492.64","Total Profit":"174803.20"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"9/19/2013","Order ID":"369142186","Ship Date":"10/23/2013","Units Sold":"6231","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2628796.59","Total Cost":"2272383.39","Total Profit":"356413.20"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"9/23/2012","Order ID":"435424506","Ship Date":"11/7/2012","Units Sold":"642","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"429029.34","Total Cost":"322630.68","Total Profit":"106398.66"},{"Region":"Asia","Country":"Cambodia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"6/1/2014","Order ID":"237554299","Ship Date":"7/7/2014","Units Sold":"6451","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"704965.28","Total Cost":"231203.84","Total Profit":"473761.44"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/18/2015","Order ID":"447455394","Ship Date":"9/6/2015","Units Sold":"849","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"552877.29","Total Cost":"445691.04","Total Profit":"107186.25"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/14/2014","Order ID":"457364118","Ship Date":"5/4/2014","Units Sold":"3061","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1993353.81","Total Cost":"1606902.56","Total Profit":"386451.25"},{"Region":"Europe","Country":"Switzerland","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/26/2013","Order ID":"629829299","Ship Date":"3/2/2013","Units Sold":"9341","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1439074.46","Total Cost":"849377.13","Total Profit":"589697.33"},{"Region":"Asia","Country":"China","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"1/29/2016","Order ID":"947712266","Ship Date":"1/29/2016","Units Sold":"7975","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"651796.75","Total Cost":"451943.25","Total Profit":"199853.50"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/2/2016","Order ID":"564186847","Ship Date":"8/25/2016","Units Sold":"4280","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2860195.60","Total Cost":"2150871.20","Total Profit":"709324.40"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"11/11/2016","Order ID":"952739369","Ship Date":"11/12/2016","Units Sold":"5606","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"612623.68","Total Cost":"200919.04","Total Profit":"411704.64"},{"Region":"Europe","Country":"Belarus","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/13/2016","Order ID":"957168662","Ship Date":"5/18/2016","Units Sold":"6332","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"975507.92","Total Cost":"575768.76","Total Profit":"399739.16"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"8/11/2015","Order ID":"841586053","Ship Date":"8/24/2015","Units Sold":"2870","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1868972.70","Total Cost":"1506635.20","Total Profit":"362337.50"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"5/26/2012","Order ID":"940415370","Ship Date":"7/12/2012","Units Sold":"8661","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"80807.13","Total Cost":"59934.12","Total Profit":"20873.01"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"3/5/2013","Order ID":"308392941","Ship Date":"4/10/2013","Units Sold":"9179","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1003081.12","Total Cost":"328975.36","Total Profit":"674105.76"},{"Region":"Asia","Country":"China","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/27/2014","Order ID":"770567595","Ship Date":"1/30/2014","Units Sold":"6930","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"328828.50","Total Cost":"220304.70","Total Profit":"108523.80"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/22/2012","Order ID":"172300660","Ship Date":"5/25/2012","Units Sold":"6449","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"527076.77","Total Cost":"365464.83","Total Profit":"161611.94"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"7/4/2017","Order ID":"929265964","Ship Date":"8/20/2017","Units Sold":"9304","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"760415.92","Total Cost":"527257.68","Total Profit":"233158.24"},{"Region":"North America","Country":"Canada","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/29/2010","Order ID":"577449834","Ship Date":"2/28/2010","Units Sold":"9093","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"743170.89","Total Cost":"515300.31","Total Profit":"227870.58"},{"Region":"Asia","Country":"Philippines","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"2/22/2013","Order ID":"323151099","Ship Date":"3/2/2013","Units Sold":"6446","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"993070.76","Total Cost":"586134.78","Total Profit":"406935.98"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/10/2013","Order ID":"992981088","Ship Date":"1/26/2013","Units Sold":"4025","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1759730.00","Total Cost":"1059903.25","Total Profit":"699826.75"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/17/2016","Order ID":"783863627","Ship Date":"2/18/2016","Units Sold":"1521","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"232074.18","Total Cost":"148206.24","Total Profit":"83867.94"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"6/9/2014","Order ID":"213035047","Ship Date":"7/22/2014","Units Sold":"659","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"278025.51","Total Cost":"240330.71","Total Profit":"37694.80"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"11/13/2012","Order ID":"768044173","Ship Date":"12/9/2012","Units Sold":"193","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"128976.11","Total Cost":"96990.22","Total Profit":"31985.89"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"1/23/2017","Order ID":"856752336","Ship Date":"2/14/2017","Units Sold":"910","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"383919.90","Total Cost":"331867.90","Total Profit":"52052.00"},{"Region":"Europe","Country":"Russia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"11/18/2014","Order ID":"757333362","Ship Date":"11/28/2014","Units Sold":"626","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"273687.20","Total Cost":"164844.58","Total Profit":"108842.62"},{"Region":"Europe","Country":"Germany","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/26/2010","Order ID":"368273580","Ship Date":"6/26/2010","Units Sold":"9191","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1004392.48","Total Cost":"329405.44","Total Profit":"674987.04"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/14/2012","Order ID":"558371818","Ship Date":"7/30/2012","Units Sold":"3484","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"32505.72","Total Cost":"24109.28","Total Profit":"8396.44"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/17/2016","Order ID":"916739404","Ship Date":"2/24/2016","Units Sold":"2416","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1614540.32","Total Cost":"1214136.64","Total Profit":"400403.68"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/22/2013","Order ID":"202800166","Ship Date":"5/31/2013","Units Sold":"1931","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"294631.98","Total Cost":"188156.64","Total Profit":"106475.34"},{"Region":"Europe","Country":"Norway","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/24/2012","Order ID":"396290433","Ship Date":"5/27/2012","Units Sold":"10000","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4218900.00","Total Cost":"3646900.00","Total Profit":"572000.00"},{"Region":"Europe","Country":"Russia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"6/7/2011","Order ID":"847259032","Ship Date":"7/12/2011","Units Sold":"1630","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"251117.80","Total Cost":"148215.90","Total Profit":"102901.90"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/3/2017","Order ID":"526067292","Ship Date":"3/6/2017","Units Sold":"3857","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"984614.96","Total Cost":"614882.94","Total Profit":"369732.02"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"8/11/2010","Order ID":"273389041","Ship Date":"9/5/2010","Units Sold":"747","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"153657.90","Total Cost":"87481.17","Total Profit":"66176.73"},{"Region":"North America","Country":"Mexico","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/23/2012","Order ID":"550210607","Ship Date":"3/10/2012","Units Sold":"8400","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"398580.00","Total Cost":"267036.00","Total Profit":"131544.00"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/5/2016","Order ID":"987830817","Ship Date":"7/17/2016","Units Sold":"9945","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"2045686.50","Total Cost":"1164658.95","Total Profit":"881027.55"},{"Region":"Asia","Country":"Tajikistan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/1/2011","Order ID":"837861001","Ship Date":"10/21/2011","Units Sold":"544","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"363538.88","Total Cost":"273381.76","Total Profit":"90157.12"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"8/26/2013","Order ID":"322224986","Ship Date":"9/23/2013","Units Sold":"2389","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"491417.30","Total Cost":"279775.79","Total Profit":"211641.51"},{"Region":"Asia","Country":"Indonesia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/6/2016","Order ID":"183159101","Ship Date":"8/4/2016","Units Sold":"9703","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6318690.63","Total Cost":"5093686.88","Total Profit":"1225003.75"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"8/30/2011","Order ID":"333212172","Ship Date":"10/12/2011","Units Sold":"3741","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"408816.48","Total Cost":"134077.44","Total Profit":"274739.04"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"4/16/2014","Order ID":"305245530","Ship Date":"5/7/2014","Units Sold":"7790","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"369635.50","Total Cost":"247644.10","Total Profit":"121991.40"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/25/2014","Order ID":"602433001","Ship Date":"3/1/2014","Units Sold":"2167","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"947412.40","Total Cost":"570636.11","Total Profit":"376776.29"},{"Region":"Europe","Country":"Estonia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/19/2017","Order ID":"448260915","Ship Date":"5/8/2017","Units Sold":"9221","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2353936.88","Total Cost":"1470011.82","Total Profit":"883925.06"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/28/2011","Order ID":"936528098","Ship Date":"9/13/2011","Units Sold":"8331","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5425230.51","Total Cost":"4373441.76","Total Profit":"1051788.75"},{"Region":"Asia","Country":"Maldives","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"9/4/2016","Order ID":"981345880","Ship Date":"9/7/2016","Units Sold":"908","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"231794.24","Total Cost":"144753.36","Total Profit":"87040.88"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"5/27/2011","Order ID":"467138087","Ship Date":"6/9/2011","Units Sold":"5396","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3513929.16","Total Cost":"2832684.16","Total Profit":"681245.00"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"7/16/2013","Order ID":"698641049","Ship Date":"8/19/2013","Units Sold":"2267","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"578719.76","Total Cost":"361405.14","Total Profit":"217314.62"},{"Region":"Europe","Country":"Slovakia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/13/2015","Order ID":"350903594","Ship Date":"6/24/2015","Units Sold":"9026","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3807979.14","Total Cost":"3291691.94","Total Profit":"516287.20"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"7/20/2010","Order ID":"419287049","Ship Date":"7/25/2010","Units Sold":"5210","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1330008.80","Total Cost":"830578.20","Total Profit":"499430.60"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/5/2012","Order ID":"169465243","Ship Date":"4/16/2012","Units Sold":"7386","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1519300.20","Total Cost":"864974.46","Total Profit":"654325.74"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/8/2012","Order ID":"287424504","Ship Date":"6/19/2012","Units Sold":"4153","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2775325.31","Total Cost":"2087048.62","Total Profit":"688276.69"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"1/3/2015","Order ID":"629463660","Ship Date":"2/17/2015","Units Sold":"1140","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"234498.00","Total Cost":"133505.40","Total Profit":"100992.60"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"5/3/2010","Order ID":"672194039","Ship Date":"6/5/2010","Units Sold":"6009","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"56063.97","Total Cost":"41582.28","Total Profit":"14481.69"},{"Region":"Europe","Country":"Lithuania","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/9/2016","Order ID":"862539470","Ship Date":"1/16/2016","Units Sold":"3451","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"531661.06","Total Cost":"313799.43","Total Profit":"217861.63"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"12/9/2012","Order ID":"367736279","Ship Date":"1/8/2013","Units Sold":"192","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"39494.40","Total Cost":"22485.12","Total Profit":"17009.28"},{"Region":"Europe","Country":"Poland","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/10/2017","Order ID":"225333297","Ship Date":"2/14/2017","Units Sold":"9985","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6502331.85","Total Cost":"5241725.60","Total Profit":"1260606.25"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/2/2015","Order ID":"193191850","Ship Date":"6/17/2015","Units Sold":"8616","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2199492.48","Total Cost":"1373562.72","Total Profit":"825929.76"},{"Region":"North America","Country":"United States of America","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/26/2014","Order ID":"999485766","Ship Date":"6/2/2014","Units Sold":"8904","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"727723.92","Total Cost":"504589.68","Total Profit":"223134.24"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/5/2014","Order ID":"292701375","Ship Date":"8/11/2014","Units Sold":"5696","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"465534.08","Total Cost":"322792.32","Total Profit":"142741.76"},{"Region":"Europe","Country":"Georgia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/24/2013","Order ID":"291637504","Ship Date":"8/12/2013","Units Sold":"873","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"95401.44","Total Cost":"31288.32","Total Profit":"64113.12"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/3/2017","Order ID":"135405480","Ship Date":"4/4/2017","Units Sold":"8346","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1285784.76","Total Cost":"758901.78","Total Profit":"526882.98"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"4/5/2014","Order ID":"833429133","Ship Date":"4/26/2014","Units Sold":"9056","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1381764.48","Total Cost":"882416.64","Total Profit":"499347.84"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"8/9/2016","Order ID":"315444791","Ship Date":"9/8/2016","Units Sold":"5978","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3892933.38","Total Cost":"3138210.88","Total Profit":"754722.50"},{"Region":"Asia","Country":"Malaysia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/21/2010","Order ID":"181501281","Ship Date":"1/24/2011","Units Sold":"9117","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1404565.02","Total Cost":"829008.81","Total Profit":"575556.21"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"5/24/2015","Order ID":"751959931","Ship Date":"5/30/2015","Units Sold":"509","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"41600.57","Total Cost":"28845.03","Total Profit":"12755.54"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/21/2014","Order ID":"617494571","Ship Date":"11/27/2014","Units Sold":"9220","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6004156.20","Total Cost":"4840131.20","Total Profit":"1164025.00"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/10/2010","Order ID":"689091527","Ship Date":"9/16/2010","Units Sold":"6351","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4244182.77","Total Cost":"3191631.54","Total Profit":"1052551.23"},{"Region":"Asia","Country":"Bhutan","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/15/2016","Order ID":"148049628","Ship Date":"7/4/2016","Units Sold":"30","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"279.90","Total Cost":"207.60","Total Profit":"72.30"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/10/2016","Order ID":"495980203","Ship Date":"8/29/2016","Units Sold":"419","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"106962.32","Total Cost":"66796.98","Total Profit":"40165.34"},{"Region":"Europe","Country":"Andorra","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"8/1/2015","Order ID":"604807078","Ship Date":"8/20/2015","Units Sold":"4709","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"384866.57","Total Cost":"266859.03","Total Profit":"118007.54"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/15/2011","Order ID":"766766583","Ship Date":"5/31/2011","Units Sold":"2126","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1420742.02","Total Cost":"1068400.04","Total Profit":"352341.98"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"1/26/2014","Order ID":"444407546","Ship Date":"2/7/2014","Units Sold":"8923","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1361471.34","Total Cost":"869457.12","Total Profit":"492014.22"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"8/15/2012","Order ID":"520591294","Ship Date":"10/3/2012","Units Sold":"3388","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"276901.24","Total Cost":"191997.96","Total Profit":"84903.28"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"8/16/2015","Order ID":"148491656","Ship Date":"9/4/2015","Units Sold":"836","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"544411.56","Total Cost":"438866.56","Total Profit":"105545.00"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/9/2010","Order ID":"801594960","Ship Date":"2/12/2010","Units Sold":"8617","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"704267.41","Total Cost":"488325.39","Total Profit":"215942.02"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/7/2010","Order ID":"423700034","Ship Date":"9/27/2010","Units Sold":"1111","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"171160.66","Total Cost":"101023.23","Total Profit":"70137.43"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/16/2010","Order ID":"178918206","Ship Date":"4/16/2010","Units Sold":"4728","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"721398.24","Total Cost":"460696.32","Total Profit":"260701.92"},{"Region":"Asia","Country":"Mongolia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"4/22/2014","Order ID":"401673305","Ship Date":"5/4/2014","Units Sold":"2912","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"27168.96","Total Cost":"20151.04","Total Profit":"7017.92"},{"Region":"Europe","Country":"Slovenia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"1/8/2014","Order ID":"146701657","Ship Date":"2/17/2014","Units Sold":"1135","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"92763.55","Total Cost":"64320.45","Total Profit":"28443.10"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/25/2013","Order ID":"339052093","Ship Date":"2/27/2013","Units Sold":"1904","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"290512.32","Total Cost":"185525.76","Total Profit":"104986.56"},{"Region":"Asia","Country":"Bhutan","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"6/25/2016","Order ID":"624085938","Ship Date":"7/29/2016","Units Sold":"9753","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1065807.84","Total Cost":"349547.52","Total Profit":"716260.32"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"12/3/2010","Order ID":"717477023","Ship Date":"12/11/2010","Units Sold":"6250","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"962875.00","Total Cost":"568312.50","Total Profit":"394562.50"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/28/2014","Order ID":"855211675","Ship Date":"10/8/2014","Units Sold":"4994","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1274868.32","Total Cost":"796143.48","Total Profit":"478724.84"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"3/14/2013","Order ID":"443588721","Ship Date":"3/28/2013","Units Sold":"6615","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4420606.05","Total Cost":"3324302.10","Total Profit":"1096303.95"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/4/2015","Order ID":"309219491","Ship Date":"5/11/2015","Units Sold":"3774","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2522050.98","Total Cost":"1896585.96","Total Profit":"625465.02"},{"Region":"Europe","Country":"Romania","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/30/2012","Order ID":"449027812","Ship Date":"5/14/2012","Units Sold":"6163","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"673492.64","Total Cost":"220881.92","Total Profit":"452610.72"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/23/2011","Order ID":"480250012","Ship Date":"8/17/2011","Units Sold":"5506","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1405571.68","Total Cost":"877766.52","Total Profit":"527805.16"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"2/11/2010","Order ID":"990434920","Ship Date":"2/26/2010","Units Sold":"557","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"142190.96","Total Cost":"88796.94","Total Profit":"53394.02"},{"Region":"Europe","Country":"Italy","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"9/21/2013","Order ID":"387443864","Ship Date":"10/18/2013","Units Sold":"2104","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"321028.32","Total Cost":"205013.76","Total Profit":"116014.56"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/1/2010","Order ID":"749450671","Ship Date":"5/9/2010","Units Sold":"7963","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"870196.64","Total Cost":"285393.92","Total Profit":"584802.72"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"5/3/2011","Order ID":"174941670","Ship Date":"6/12/2011","Units Sold":"7983","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1218046.14","Total Cost":"777863.52","Total Profit":"440182.62"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"10/3/2010","Order ID":"432715690","Ship Date":"10/16/2010","Units Sold":"9043","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1860145.10","Total Cost":"1059025.73","Total Profit":"801119.37"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/5/2010","Order ID":"211884057","Ship Date":"12/6/2010","Units Sold":"56","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"8627.36","Total Cost":"5092.08","Total Profit":"3535.28"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"7/18/2011","Order ID":"971870601","Ship Date":"8/24/2011","Units Sold":"6963","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4653164.01","Total Cost":"3499186.02","Total Profit":"1153977.99"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"5/12/2013","Order ID":"192411649","Ship Date":"5/25/2013","Units Sold":"7738","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"632426.74","Total Cost":"438512.46","Total Profit":"193914.28"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"6/2/2014","Order ID":"823556029","Ship Date":"6/17/2014","Units Sold":"7385","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1519094.50","Total Cost":"864857.35","Total Profit":"654237.15"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"10/24/2013","Order ID":"935665071","Ship Date":"12/2/2013","Units Sold":"2942","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1241200.38","Total Cost":"1072917.98","Total Profit":"168282.40"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/3/2015","Order ID":"469412600","Ship Date":"7/22/2015","Units Sold":"8475","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"692661.75","Total Cost":"480278.25","Total Profit":"212383.50"},{"Region":"Asia","Country":"Bhutan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/5/2016","Order ID":"785784947","Ship Date":"12/8/2016","Units Sold":"83","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"55466.41","Total Cost":"41710.82","Total Profit":"13755.59"},{"Region":"Europe","Country":"Andorra","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"10/25/2012","Order ID":"616080939","Ship Date":"11/24/2012","Units Sold":"895","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"8350.35","Total Cost":"6193.40","Total Profit":"2156.95"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"2/5/2014","Order ID":"111911904","Ship Date":"3/24/2014","Units Sold":"6074","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2562559.86","Total Cost":"2215127.06","Total Profit":"347432.80"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/3/2013","Order ID":"395201671","Ship Date":"12/16/2013","Units Sold":"7811","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1191802.38","Total Cost":"761103.84","Total Profit":"430698.54"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"10/2/2013","Order ID":"408186566","Ship Date":"10/20/2013","Units Sold":"331","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"144713.20","Total Cost":"87162.23","Total Profit":"57550.97"},{"Region":"Europe","Country":"Sweden","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/23/2012","Order ID":"963415420","Ship Date":"11/6/2012","Units Sold":"4887","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"745658.46","Total Cost":"476189.28","Total Profit":"269469.18"},{"Region":"Asia","Country":"India","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"1/26/2011","Order ID":"693749558","Ship Date":"2/28/2011","Units Sold":"4766","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"389525.18","Total Cost":"270089.22","Total Profit":"119435.96"},{"Region":"Europe","Country":"Austria","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"6/4/2013","Order ID":"102362811","Ship Date":"6/19/2013","Units Sold":"285","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"23293.05","Total Cost":"16150.95","Total Profit":"7142.10"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"9/12/2010","Order ID":"212741506","Ship Date":"9/27/2010","Units Sold":"3794","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2470690.74","Total Cost":"1991698.24","Total Profit":"478992.50"},{"Region":"Asia","Country":"Brunei","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"9/12/2013","Order ID":"318684470","Ship Date":"10/8/2013","Units Sold":"4671","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1192412.88","Total Cost":"744650.82","Total Profit":"447762.06"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"8/6/2011","Order ID":"234303033","Ship Date":"8/10/2011","Units Sold":"4329","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1105107.12","Total Cost":"690129.18","Total Profit":"414977.94"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/18/2013","Order ID":"744021022","Ship Date":"8/31/2013","Units Sold":"1209","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"308633.52","Total Cost":"192738.78","Total Profit":"115894.74"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/16/2014","Order ID":"452574765","Ship Date":"8/17/2014","Units Sold":"5785","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2440633.65","Total Cost":"2109731.65","Total Profit":"330902.00"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"10/6/2014","Order ID":"735013091","Ship Date":"10/30/2014","Units Sold":"5562","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1419867.36","Total Cost":"886694.04","Total Profit":"533173.32"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/17/2014","Order ID":"786697328","Ship Date":"1/6/2015","Units Sold":"76","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"11596.08","Total Cost":"7405.44","Total Profit":"4190.64"},{"Region":"Europe","Country":"Belarus","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/27/2013","Order ID":"773301303","Ship Date":"8/4/2013","Units Sold":"5895","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"908183.70","Total Cost":"536032.35","Total Profit":"372151.35"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/2/2017","Order ID":"480811345","Ship Date":"5/8/2017","Units Sold":"1617","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1080592.59","Total Cost":"812607.18","Total Profit":"267985.41"},{"Region":"Europe","Country":"Ukraine","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"4/20/2015","Order ID":"665526282","Ship Date":"5/5/2015","Units Sold":"2871","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"590564.70","Total Cost":"336222.81","Total Profit":"254341.89"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/19/2012","Order ID":"804057443","Ship Date":"12/27/2012","Units Sold":"7320","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4766857.20","Total Cost":"3842707.20","Total Profit":"924150.00"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"7/17/2012","Order ID":"443328654","Ship Date":"7/20/2012","Units Sold":"9655","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"458129.75","Total Cost":"306932.45","Total Profit":"151197.30"},{"Region":"Asia","Country":"Mongolia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"4/18/2010","Order ID":"550576245","Ship Date":"5/14/2010","Units Sold":"6601","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"61587.33","Total Cost":"45678.92","Total Profit":"15908.41"},{"Region":"Europe","Country":"Croatia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/5/2014","Order ID":"363349044","Ship Date":"8/13/2014","Units Sold":"1911","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"294408.66","Total Cost":"173767.23","Total Profit":"120641.43"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/26/2012","Order ID":"539508378","Ship Date":"4/10/2012","Units Sold":"1373","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"65148.85","Total Cost":"43647.67","Total Profit":"21501.18"},{"Region":"Europe","Country":"Sweden","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"1/2/2010","Order ID":"907228076","Ship Date":"2/21/2010","Units Sold":"7803","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"852711.84","Total Cost":"279659.52","Total Profit":"573052.32"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/8/2015","Order ID":"914994466","Ship Date":"11/7/2015","Units Sold":"6050","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"932063.00","Total Cost":"550126.50","Total Profit":"381936.50"},{"Region":"Asia","Country":"India","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/9/2011","Order ID":"981606376","Ship Date":"12/19/2011","Units Sold":"7995","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3495414.00","Total Cost":"2105323.35","Total Profit":"1390090.65"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/16/2012","Order ID":"246175134","Ship Date":"4/25/2012","Units Sold":"7547","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5043433.69","Total Cost":"3792669.38","Total Profit":"1250764.31"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/24/2012","Order ID":"618124568","Ship Date":"10/28/2012","Units Sold":"5651","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"52723.83","Total Cost":"39104.92","Total Profit":"13618.91"},{"Region":"Asia","Country":"Bhutan","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/27/2010","Order ID":"927191007","Ship Date":"3/31/2010","Units Sold":"5278","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2307541.60","Total Cost":"1389855.74","Total Profit":"917685.86"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/12/2014","Order ID":"973423278","Ship Date":"4/10/2014","Units Sold":"6434","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4299649.18","Total Cost":"3233342.36","Total Profit":"1066306.82"},{"Region":"Europe","Country":"Serbia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/8/2012","Order ID":"177182710","Ship Date":"6/6/2012","Units Sold":"1156","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"126327.68","Total Cost":"41431.04","Total Profit":"84896.64"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"6/12/2012","Order ID":"729143130","Ship Date":"6/26/2012","Units Sold":"8510","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"695522.30","Total Cost":"482261.70","Total Profit":"213260.60"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/17/2015","Order ID":"840290868","Ship Date":"9/25/2015","Units Sold":"9596","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2449666.88","Total Cost":"1529794.32","Total Profit":"919872.56"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"1/29/2013","Order ID":"591924750","Ship Date":"2/20/2013","Units Sold":"2542","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"522889.40","Total Cost":"297693.62","Total Profit":"225195.78"},{"Region":"Asia","Country":"Brunei","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"9/15/2011","Order ID":"585656106","Ship Date":"10/16/2011","Units Sold":"7511","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4891238.31","Total Cost":"3942974.56","Total Profit":"948263.75"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"1/3/2016","Order ID":"593408763","Ship Date":"2/20/2016","Units Sold":"1695","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"80427.75","Total Cost":"53884.05","Total Profit":"26543.70"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/2/2016","Order ID":"907419049","Ship Date":"6/20/2016","Units Sold":"4316","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"887801.20","Total Cost":"505446.76","Total Profit":"382354.44"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/17/2015","Order ID":"990235793","Ship Date":"8/4/2015","Units Sold":"1631","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"133301.63","Total Cost":"92428.77","Total Profit":"40872.86"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"3/18/2017","Order ID":"824720323","Ship Date":"4/11/2017","Units Sold":"1925","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"293716.50","Total Cost":"187572.00","Total Profit":"106144.50"},{"Region":"North America","Country":"Canada","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"2/18/2015","Order ID":"464046466","Ship Date":"4/2/2015","Units Sold":"516","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"336024.36","Total Cost":"270879.36","Total Profit":"65145.00"},{"Region":"Europe","Country":"Sweden","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"5/27/2011","Order ID":"481700551","Ship Date":"6/30/2011","Units Sold":"4752","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2004821.28","Total Cost":"1733006.88","Total Profit":"271814.40"},{"Region":"Asia","Country":"Taiwan","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"1/17/2013","Order ID":"621481406","Ship Date":"1/31/2013","Units Sold":"9014","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3802916.46","Total Cost":"3287315.66","Total Profit":"515600.80"},{"Region":"North America","Country":"Mexico","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"1/6/2013","Order ID":"247500360","Ship Date":"1/21/2013","Units Sold":"9711","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6323900.31","Total Cost":"5097886.56","Total Profit":"1226013.75"},{"Region":"Europe","Country":"Hungary","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/7/2016","Order ID":"594181239","Ship Date":"9/14/2016","Units Sold":"288","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"121504.32","Total Cost":"105030.72","Total Profit":"16473.60"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"5/6/2015","Order ID":"716260373","Ship Date":"5/27/2015","Units Sold":"6216","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4153966.32","Total Cost":"3123788.64","Total Profit":"1030177.68"},{"Region":"Europe","Country":"Russia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/15/2012","Order ID":"638786590","Ship Date":"10/14/2012","Units Sold":"2","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"510.56","Total Cost":"318.84","Total Profit":"191.72"},{"Region":"Europe","Country":"Germany","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/23/2013","Order ID":"907121217","Ship Date":"8/5/2013","Units Sold":"6181","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2702333.20","Total Cost":"1627642.73","Total Profit":"1074690.47"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/20/2012","Order ID":"336938083","Ship Date":"7/8/2012","Units Sold":"6321","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2763541.20","Total Cost":"1664508.93","Total Profit":"1099032.27"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/21/2012","Order ID":"964223515","Ship Date":"5/10/2012","Units Sold":"4020","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2686445.40","Total Cost":"2020210.80","Total Profit":"666234.60"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"9/24/2013","Order ID":"395276343","Ship Date":"11/12/2013","Units Sold":"9909","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"92450.97","Total Cost":"68570.28","Total Profit":"23880.69"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/21/2010","Order ID":"356707894","Ship Date":"8/16/2010","Units Sold":"6648","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4329244.08","Total Cost":"3489934.08","Total Profit":"839310.00"},{"Region":"Europe","Country":"Italy","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/29/2016","Order ID":"845441997","Ship Date":"9/23/2016","Units Sold":"3929","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"599486.82","Total Cost":"382841.76","Total Profit":"216645.06"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/22/2016","Order ID":"578714978","Ship Date":"10/27/2016","Units Sold":"3477","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2323574.79","Total Cost":"1747331.58","Total Profit":"576243.21"},{"Region":"Central America and the Caribbean","Country":"Saint Lucia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/29/2015","Order ID":"144075667","Ship Date":"7/1/2015","Units Sold":"4047","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1707388.83","Total Cost":"1475900.43","Total Profit":"231488.40"},{"Region":"Asia","Country":"Tajikistan","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"11/10/2010","Order ID":"649385392","Ship Date":"11/20/2010","Units Sold":"6423","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"989527.38","Total Cost":"584043.39","Total Profit":"405483.99"},{"Region":"Europe","Country":"Ireland","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"8/30/2013","Order ID":"572817981","Ship Date":"10/13/2013","Units Sold":"8425","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"688575.25","Total Cost":"477444.75","Total Profit":"211130.50"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"9/29/2012","Order ID":"712859761","Ship Date":"10/26/2012","Units Sold":"9900","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"2036430.00","Total Cost":"1159389.00","Total Profit":"877041.00"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"1/9/2017","Order ID":"138309562","Ship Date":"2/17/2017","Units Sold":"7728","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1972803.84","Total Cost":"1231997.76","Total Profit":"740806.08"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"10/9/2013","Order ID":"238278710","Ship Date":"11/2/2013","Units Sold":"820","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"7650.60","Total Cost":"5674.40","Total Profit":"1976.20"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"4/3/2010","Order ID":"672191035","Ship Date":"4/16/2010","Units Sold":"5120","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3421542.40","Total Cost":"2573004.80","Total Profit":"848537.60"},{"Region":"Asia","Country":"South Korea","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"10/20/2014","Order ID":"719782865","Ship Date":"10/22/2014","Units Sold":"8600","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2195408.00","Total Cost":"1371012.00","Total Profit":"824396.00"},{"Region":"Europe","Country":"Poland","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"4/21/2010","Order ID":"631103026","Ship Date":"5/15/2010","Units Sold":"6265","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1599329.20","Total Cost":"998766.30","Total Profit":"600562.90"},{"Region":"Europe","Country":"Malta","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"1/3/2011","Order ID":"276512849","Ship Date":"1/28/2011","Units Sold":"5152","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"48068.16","Total Cost":"35651.84","Total Profit":"12416.32"},{"Region":"Europe","Country":"Germany","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/18/2013","Order ID":"496686160","Ship Date":"5/29/2013","Units Sold":"9327","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1436917.62","Total Cost":"848104.11","Total Profit":"588813.51"},{"Region":"North America","Country":"Canada","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/11/2014","Order ID":"852609288","Ship Date":"8/30/2014","Units Sold":"4890","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"399659.70","Total Cost":"277116.30","Total Profit":"122543.40"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/1/2017","Order ID":"975581061","Ship Date":"5/18/2017","Units Sold":"4970","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"406198.10","Total Cost":"281649.90","Total Profit":"124548.20"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/31/2016","Order ID":"117212808","Ship Date":"1/22/2017","Units Sold":"4729","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"386501.17","Total Cost":"267992.43","Total Profit":"118508.74"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"7/4/2014","Order ID":"299428355","Ship Date":"8/8/2014","Units Sold":"6359","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"694911.52","Total Cost":"227906.56","Total Profit":"467004.96"},{"Region":"Europe","Country":"Lithuania","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"6/19/2011","Order ID":"464464032","Ship Date":"7/25/2011","Units Sold":"4083","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1785087.60","Total Cost":"1075176.39","Total Profit":"709911.21"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/9/2014","Order ID":"524868667","Ship Date":"6/23/2014","Units Sold":"9157","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4003440.40","Total Cost":"2411312.81","Total Profit":"1592127.59"},{"Region":"North America","Country":"Canada","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/24/2015","Order ID":"913503587","Ship Date":"12/16/2015","Units Sold":"4866","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3168787.86","Total Cost":"2554455.36","Total Profit":"614332.50"},{"Region":"Asia","Country":"Japan","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/4/2013","Order ID":"333542621","Ship Date":"3/6/2013","Units Sold":"1528","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"668041.60","Total Cost":"402368.24","Total Profit":"265673.36"},{"Region":"Asia","Country":"Nepal","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/23/2012","Order ID":"708472096","Ship Date":"4/1/2012","Units Sold":"1492","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"70795.40","Total Cost":"47430.68","Total Profit":"23364.72"},{"Region":"Europe","Country":"Serbia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/19/2016","Order ID":"432090842","Ship Date":"5/23/2016","Units Sold":"4137","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"452091.36","Total Cost":"148270.08","Total Profit":"303821.28"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/23/2014","Order ID":"218510186","Ship Date":"8/26/2014","Units Sold":"875","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"382550.00","Total Cost":"230413.75","Total Profit":"152136.25"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"2/28/2016","Order ID":"852153956","Ship Date":"3/1/2016","Units Sold":"147","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"16064.16","Total Cost":"5268.48","Total Profit":"10795.68"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/7/2016","Order ID":"937758481","Ship Date":"4/24/2016","Units Sold":"2428","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"499439.60","Total Cost":"284343.08","Total Profit":"215096.52"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/22/2014","Order ID":"950372588","Ship Date":"8/6/2014","Units Sold":"5223","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"570769.44","Total Cost":"187192.32","Total Profit":"383577.12"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/10/2012","Order ID":"985357606","Ship Date":"4/24/2012","Units Sold":"8067","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1230862.86","Total Cost":"786048.48","Total Profit":"444814.38"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"3/9/2015","Order ID":"308387362","Ship Date":"4/20/2015","Units Sold":"7528","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1148622.24","Total Cost":"733528.32","Total Profit":"415093.92"},{"Region":"Europe","Country":"Ukraine","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/19/2015","Order ID":"505448186","Ship Date":"1/27/2015","Units Sold":"2205","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"104627.25","Total Cost":"70096.95","Total Profit":"34530.30"},{"Region":"Asia","Country":"Taiwan","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/25/2016","Order ID":"532838904","Ship Date":"2/8/2016","Units Sold":"7728","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"72102.24","Total Cost":"53477.76","Total Profit":"18624.48"},{"Region":"Europe","Country":"Belarus","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/28/2015","Order ID":"767170846","Ship Date":"12/18/2015","Units Sold":"1756","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"191895.68","Total Cost":"62935.04","Total Profit":"128960.64"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/9/2017","Order ID":"755367839","Ship Date":"3/9/2017","Units Sold":"8984","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"734262.32","Total Cost":"509123.28","Total Profit":"225139.04"},{"Region":"Asia","Country":"Laos","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"9/13/2015","Order ID":"564666211","Ship Date":"9/13/2015","Units Sold":"6135","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2588295.15","Total Cost":"2237373.15","Total Profit":"350922.00"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"7/20/2012","Order ID":"332614791","Ship Date":"8/29/2012","Units Sold":"6963","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2937620.07","Total Cost":"2539336.47","Total Profit":"398283.60"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"3/6/2017","Order ID":"717074906","Ship Date":"3/18/2017","Units Sold":"7255","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1492353.50","Total Cost":"849633.05","Total Profit":"642720.45"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/27/2013","Order ID":"646220386","Ship Date":"9/16/2013","Units Sold":"9827","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4296364.40","Total Cost":"2587743.91","Total Profit":"1708620.49"},{"Region":"Asia","Country":"North Korea","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"5/31/2017","Order ID":"468537557","Ship Date":"7/1/2017","Units Sold":"9530","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4166516.00","Total Cost":"2509534.90","Total Profit":"1656981.10"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/14/2010","Order ID":"602825248","Ship Date":"1/3/2011","Units Sold":"8242","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5507881.34","Total Cost":"4141934.68","Total Profit":"1365946.66"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"5/17/2015","Order ID":"188194787","Ship Date":"7/2/2015","Units Sold":"9874","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"2031081.80","Total Cost":"1156344.14","Total Profit":"874737.66"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"9/6/2011","Order ID":"234070003","Ship Date":"9/30/2011","Units Sold":"5370","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"819354.60","Total Cost":"523252.80","Total Profit":"296101.80"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/30/2011","Order ID":"470187222","Ship Date":"12/7/2011","Units Sold":"7703","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1584507.10","Total Cost":"902098.33","Total Profit":"682408.77"},{"Region":"Asia","Country":"Taiwan","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"4/26/2010","Order ID":"696595275","Ship Date":"4/27/2010","Units Sold":"6877","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3006624.40","Total Cost":"1810920.41","Total Profit":"1195703.99"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/10/2017","Order ID":"333655488","Ship Date":"6/8/2017","Units Sold":"4928","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1258019.84","Total Cost":"785621.76","Total Profit":"472398.08"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"6/23/2010","Order ID":"672041690","Ship Date":"6/23/2010","Units Sold":"925","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"141136.50","Total Cost":"90132.00","Total Profit":"51004.50"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"8/18/2013","Order ID":"822740209","Ship Date":"9/25/2013","Units Sold":"5966","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2516995.74","Total Cost":"2175740.54","Total Profit":"341255.20"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"3/6/2010","Order ID":"867049872","Ship Date":"3/8/2010","Units Sold":"8180","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2088190.40","Total Cost":"1304055.60","Total Profit":"784134.80"},{"Region":"Asia","Country":"Singapore","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/5/2014","Order ID":"506582009","Ship Date":"11/26/2014","Units Sold":"7729","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1973059.12","Total Cost":"1232157.18","Total Profit":"740901.94"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/27/2016","Order ID":"413260447","Ship Date":"12/1/2016","Units Sold":"1805","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"278078.30","Total Cost":"164128.65","Total Profit":"113949.65"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/14/2014","Order ID":"879321515","Ship Date":"5/14/2014","Units Sold":"9632","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6436776.64","Total Cost":"4840465.28","Total Profit":"1596311.36"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"4/27/2017","Order ID":"467314040","Ship Date":"5/8/2017","Units Sold":"7464","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3148986.96","Total Cost":"2722046.16","Total Profit":"426940.80"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"9/13/2014","Order ID":"960099351","Ship Date":"10/11/2014","Units Sold":"3588","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"552767.28","Total Cost":"326256.84","Total Profit":"226510.44"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/12/2015","Order ID":"610851275","Ship Date":"3/29/2015","Units Sold":"3322","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2219992.94","Total Cost":"1669437.88","Total Profit":"550555.06"},{"Region":"Europe","Country":"Netherlands","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/2/2013","Order ID":"893056142","Ship Date":"4/13/2013","Units Sold":"4013","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2681767.51","Total Cost":"2016693.02","Total Profit":"665074.49"},{"Region":"Asia","Country":"Tajikistan","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"11/19/2015","Order ID":"650512778","Ship Date":"12/25/2015","Units Sold":"42","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"6408.36","Total Cost":"4092.48","Total Profit":"2315.88"},{"Region":"Asia","Country":"Cambodia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/20/2016","Order ID":"147332513","Ship Date":"3/29/2016","Units Sold":"7819","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3418466.80","Total Cost":"2058977.27","Total Profit":"1359489.53"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"12/19/2011","Order ID":"617939174","Ship Date":"1/18/2012","Units Sold":"788","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"120233.04","Total Cost":"76782.72","Total Profit":"43450.32"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/19/2017","Order ID":"217069089","Ship Date":"3/22/2017","Units Sold":"4422","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"209823.90","Total Cost":"140575.38","Total Profit":"69248.52"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/25/2012","Order ID":"769771087","Ship Date":"10/28/2012","Units Sold":"1225","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"11429.25","Total Cost":"8477.00","Total Profit":"2952.25"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"2/9/2011","Order ID":"121406495","Ship Date":"3/2/2011","Units Sold":"5735","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"626720.80","Total Cost":"205542.40","Total Profit":"421178.40"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"4/26/2014","Order ID":"687649142","Ship Date":"5/12/2014","Units Sold":"9517","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1466189.02","Total Cost":"865380.81","Total Profit":"600808.21"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"5/6/2010","Order ID":"904485356","Ship Date":"5/11/2010","Units Sold":"6171","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4018616.91","Total Cost":"3239528.16","Total Profit":"779088.75"},{"Region":"Europe","Country":"Cyprus","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"9/25/2014","Order ID":"178213965","Ship Date":"10/6/2014","Units Sold":"6328","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1615411.84","Total Cost":"1008809.76","Total Profit":"606602.08"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"10/23/2013","Order ID":"235446298","Ship Date":"11/14/2013","Units Sold":"2646","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"407642.76","Total Cost":"240600.78","Total Profit":"167041.98"},{"Region":"Europe","Country":"Hungary","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/22/2013","Order ID":"173106181","Ship Date":"12/5/2013","Units Sold":"4821","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"991679.70","Total Cost":"564587.31","Total Profit":"427092.39"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/17/2014","Order ID":"508429944","Ship Date":"11/9/2014","Units Sold":"4574","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"373833.02","Total Cost":"259208.58","Total Profit":"114624.44"},{"Region":"Asia","Country":"Nepal","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/7/2013","Order ID":"928966414","Ship Date":"9/5/2013","Units Sold":"661","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"6167.13","Total Cost":"4574.12","Total Profit":"1593.01"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"1/16/2016","Order ID":"742576920","Ship Date":"2/6/2016","Units Sold":"3867","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"795441.90","Total Cost":"452864.37","Total Profit":"342577.53"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"7/20/2017","Order ID":"227435290","Ship Date":"8/17/2017","Units Sold":"2011","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"164359.03","Total Cost":"113963.37","Total Profit":"50395.66"},{"Region":"Europe","Country":"Armenia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/18/2014","Order ID":"182027852","Ship Date":"9/29/2014","Units Sold":"4941","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2084558.49","Total Cost":"1801933.29","Total Profit":"282625.20"},{"Region":"North America","Country":"Greenland","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/12/2016","Order ID":"575153434","Ship Date":"4/24/2016","Units Sold":"9537","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4169576.40","Total Cost":"2511378.21","Total Profit":"1658198.19"},{"Region":"Asia","Country":"Taiwan","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/2/2017","Order ID":"995923364","Ship Date":"2/26/2017","Units Sold":"4710","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"43944.30","Total Cost":"32593.20","Total Profit":"11351.10"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/4/2017","Order ID":"203761470","Ship Date":"1/22/2017","Units Sold":"6402","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"976817.16","Total Cost":"623810.88","Total Profit":"353006.28"},{"Region":"Europe","Country":"Poland","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/17/2016","Order ID":"178404080","Ship Date":"10/6/2016","Units Sold":"2587","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1091429.43","Total Cost":"943453.03","Total Profit":"147976.40"},{"Region":"Asia","Country":"Japan","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/27/2014","Order ID":"269900023","Ship Date":"4/6/2014","Units Sold":"8270","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1701139.00","Total Cost":"968499.70","Total Profit":"732639.30"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/1/2016","Order ID":"348610627","Ship Date":"5/11/2016","Units Sold":"486","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"99970.20","Total Cost":"56915.46","Total Profit":"43054.74"},{"Region":"North America","Country":"Greenland","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/25/2011","Order ID":"355209720","Ship Date":"9/4/2011","Units Sold":"3304","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1444508.80","Total Cost":"870042.32","Total Profit":"574466.48"},{"Region":"Asia","Country":"Tajikistan","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"10/7/2012","Order ID":"750683629","Ship Date":"10/19/2012","Units Sold":"2823","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"308497.44","Total Cost":"101176.32","Total Profit":"207321.12"},{"Region":"Asia","Country":"Cambodia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"8/2/2014","Order ID":"266331183","Ship Date":"9/12/2014","Units Sold":"2170","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"948724.00","Total Cost":"571426.10","Total Profit":"377297.90"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"10/21/2012","Order ID":"853763711","Ship Date":"11/16/2012","Units Sold":"6509","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"711303.52","Total Cost":"233282.56","Total Profit":"478020.96"},{"Region":"Europe","Country":"Lithuania","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/23/2015","Order ID":"934905040","Ship Date":"8/28/2015","Units Sold":"8032","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1225522.56","Total Cost":"782638.08","Total Profit":"442884.48"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/22/2017","Order ID":"351991498","Ship Date":"4/22/2017","Units Sold":"961","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"148051.66","Total Cost":"87383.73","Total Profit":"60667.93"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"7/14/2016","Order ID":"817571914","Ship Date":"8/25/2016","Units Sold":"6552","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4378505.04","Total Cost":"3292642.08","Total Profit":"1085862.96"},{"Region":"Asia","Country":"Nepal","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/16/2013","Order ID":"964507615","Ship Date":"9/26/2013","Units Sold":"8092","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3413933.88","Total Cost":"2951071.48","Total Profit":"462862.40"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"5/23/2013","Order ID":"395972430","Ship Date":"6/11/2013","Units Sold":"5896","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"279765.20","Total Cost":"187433.84","Total Profit":"92331.36"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"3/24/2014","Order ID":"135452687","Ship Date":"4/24/2014","Units Sold":"2315","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"252983.20","Total Cost":"82969.60","Total Profit":"170013.60"},{"Region":"Asia","Country":"Cambodia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"10/20/2011","Order ID":"376747214","Ship Date":"11/9/2011","Units Sold":"6728","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"735235.84","Total Cost":"241131.52","Total Profit":"494104.32"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/3/2010","Order ID":"933967339","Ship Date":"7/14/2010","Units Sold":"545","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"229930.05","Total Cost":"198756.05","Total Profit":"31174.00"},{"Region":"Europe","Country":"Belarus","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"9/4/2011","Order ID":"791536891","Ship Date":"10/13/2011","Units Sold":"2211","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"241618.08","Total Cost":"79242.24","Total Profit":"162375.84"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"8/22/2010","Order ID":"354192197","Ship Date":"9/12/2010","Units Sold":"2197","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"104247.65","Total Cost":"69842.63","Total Profit":"34405.02"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"10/26/2014","Order ID":"996982085","Ship Date":"11/29/2014","Units Sold":"8009","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"654575.57","Total Cost":"453870.03","Total Profit":"200705.54"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"1/22/2010","Order ID":"115267884","Ship Date":"2/27/2010","Units Sold":"9183","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2344236.24","Total Cost":"1463953.86","Total Profit":"880282.38"},{"Region":"Asia","Country":"Thailand","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"5/10/2017","Order ID":"574723422","Ship Date":"6/3/2017","Units Sold":"2287","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"964862.43","Total Cost":"834046.03","Total Profit":"130816.40"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/29/2013","Order ID":"361335027","Ship Date":"5/8/2013","Units Sold":"5919","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"911881.14","Total Cost":"538214.67","Total Profit":"373666.47"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/22/2017","Order ID":"231401526","Ship Date":"6/2/2017","Units Sold":"5709","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"466596.57","Total Cost":"323529.03","Total Profit":"143067.54"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"10/31/2011","Order ID":"561534249","Ship Date":"12/2/2011","Units Sold":"9318","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"86936.94","Total Cost":"64480.56","Total Profit":"22456.38"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"7/31/2014","Order ID":"898657023","Ship Date":"8/31/2014","Units Sold":"1438","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"936439.98","Total Cost":"754892.48","Total Profit":"181547.50"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/1/2014","Order ID":"410006177","Ship Date":"1/3/2014","Units Sold":"8794","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2244932.32","Total Cost":"1401939.48","Total Profit":"842992.84"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/24/2010","Order ID":"133130538","Ship Date":"2/12/2011","Units Sold":"5139","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"561589.92","Total Cost":"184181.76","Total Profit":"377408.16"},{"Region":"Europe","Country":"Portugal","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"1/9/2015","Order ID":"725891435","Ship Date":"2/15/2015","Units Sold":"6261","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4077225.81","Total Cost":"3286774.56","Total Profit":"790451.25"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"3/17/2010","Order ID":"216462695","Ship Date":"4/4/2010","Units Sold":"4977","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"543886.56","Total Cost":"178375.68","Total Profit":"365510.88"},{"Region":"Europe","Country":"Armenia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/17/2011","Order ID":"753330647","Ship Date":"12/26/2011","Units Sold":"6134","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"57230.22","Total Cost":"42447.28","Total Profit":"14782.94"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/11/2010","Order ID":"955294120","Ship Date":"4/28/2010","Units Sold":"1614","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1051052.94","Total Cost":"847285.44","Total Profit":"203767.50"},{"Region":"Europe","Country":"Ireland","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"5/10/2011","Order ID":"861464440","Ship Date":"5/19/2011","Units Sold":"5326","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"582025.28","Total Cost":"190883.84","Total Profit":"391141.44"},{"Region":"Asia","Country":"South Korea","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/6/2011","Order ID":"581265437","Ship Date":"3/22/2011","Units Sold":"8215","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5489838.05","Total Cost":"4128366.10","Total Profit":"1361471.95"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/23/2014","Order ID":"744433438","Ship Date":"3/2/2014","Units Sold":"3252","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"30341.16","Total Cost":"22503.84","Total Profit":"7837.32"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"6/26/2014","Order ID":"251017272","Ship Date":"6/28/2014","Units Sold":"444","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"67745.52","Total Cost":"43263.36","Total Profit":"24482.16"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"4/6/2015","Order ID":"321378266","Ship Date":"4/13/2015","Units Sold":"1826","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"770371.14","Total Cost":"665923.94","Total Profit":"104447.20"},{"Region":"Europe","Country":"Vatican City","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/21/2016","Order ID":"446190249","Ship Date":"8/4/2016","Units Sold":"6465","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"995997.90","Total Cost":"587862.45","Total Profit":"408135.45"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/9/2012","Order ID":"636439549","Ship Date":"2/23/2012","Units Sold":"5461","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"50951.13","Total Cost":"37790.12","Total Profit":"13161.01"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/29/2015","Order ID":"973424994","Ship Date":"5/10/2015","Units Sold":"6942","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3035042.40","Total Cost":"1828036.86","Total Profit":"1207005.54"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"11/20/2010","Order ID":"258757913","Ship Date":"12/29/2010","Units Sold":"1071","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"163413.18","Total Cost":"104358.24","Total Profit":"59054.94"},{"Region":"Europe","Country":"Moldova ","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/15/2010","Order ID":"964362132","Ship Date":"10/24/2010","Units Sold":"5040","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1036728.00","Total Cost":"590234.40","Total Profit":"446493.60"},{"Region":"Europe","Country":"San Marino","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"9/15/2012","Order ID":"682473981","Ship Date":"10/24/2012","Units Sold":"8072","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5256567.12","Total Cost":"4237477.12","Total Profit":"1019090.00"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/30/2012","Order ID":"675642287","Ship Date":"2/2/2012","Units Sold":"6422","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"524870.06","Total Cost":"363934.74","Total Profit":"160935.32"},{"Region":"Asia","Country":"China","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"8/31/2012","Order ID":"926728379","Ship Date":"9/10/2012","Units Sold":"8376","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"397441.20","Total Cost":"266273.04","Total Profit":"131168.16"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"7/28/2015","Order ID":"588906085","Ship Date":"8/22/2015","Units Sold":"9252","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2361850.56","Total Cost":"1474953.84","Total Profit":"886896.72"},{"Region":"Europe","Country":"Norway","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"5/28/2015","Order ID":"235661733","Ship Date":"6/25/2015","Units Sold":"6398","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1633281.44","Total Cost":"1019969.16","Total Profit":"613312.28"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"8/16/2011","Order ID":"510794150","Ship Date":"9/21/2011","Units Sold":"4195","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2731825.95","Total Cost":"2202207.20","Total Profit":"529618.75"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/25/2012","Order ID":"778414666","Ship Date":"5/25/2012","Units Sold":"9053","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1862202.10","Total Cost":"1060196.83","Total Profit":"802005.27"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/16/2015","Order ID":"472947108","Ship Date":"5/16/2015","Units Sold":"4414","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2874440.94","Total Cost":"2317173.44","Total Profit":"557267.50"},{"Region":"Europe","Country":"Italy","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"11/1/2011","Order ID":"449127805","Ship Date":"11/20/2011","Units Sold":"5753","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"886307.18","Total Cost":"523120.29","Total Profit":"363186.89"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"3/27/2013","Order ID":"732005584","Ship Date":"4/12/2013","Units Sold":"5574","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"609126.72","Total Cost":"199772.16","Total Profit":"409354.56"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/14/2016","Order ID":"966941773","Ship Date":"9/20/2016","Units Sold":"8413","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3549360.57","Total Cost":"3068136.97","Total Profit":"481223.60"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"9/22/2016","Order ID":"869610202","Ship Date":"10/5/2016","Units Sold":"5838","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"477139.74","Total Cost":"330839.46","Total Profit":"146300.28"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"6/5/2016","Order ID":"675997197","Ship Date":"6/25/2016","Units Sold":"1448","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"942952.08","Total Cost":"760142.08","Total Profit":"182810.00"},{"Region":"Europe","Country":"Ukraine","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"3/17/2016","Order ID":"692401587","Ship Date":"3/19/2016","Units Sold":"5871","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"278578.95","Total Cost":"186639.09","Total Profit":"91939.86"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/17/2017","Order ID":"845434701","Ship Date":"9/3/2017","Units Sold":"1770","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1152641.70","Total Cost":"929179.20","Total Profit":"223462.50"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"8/7/2011","Order ID":"232020366","Ship Date":"9/6/2011","Units Sold":"8837","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"722248.01","Total Cost":"500792.79","Total Profit":"221455.22"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/2/2013","Order ID":"269394910","Ship Date":"6/11/2013","Units Sold":"8795","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5877434.65","Total Cost":"4419839.30","Total Profit":"1457595.35"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"4/7/2012","Order ID":"645107161","Ship Date":"4/9/2012","Units Sold":"400","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"82280.00","Total Cost":"46844.00","Total Profit":"35436.00"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"2/14/2014","Order ID":"667018449","Ship Date":"2/24/2014","Units Sold":"4436","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1132422.08","Total Cost":"707187.12","Total Profit":"425234.96"},{"Region":"North America","Country":"Greenland","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/4/2014","Order ID":"613302600","Ship Date":"6/13/2014","Units Sold":"8723","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"953249.44","Total Cost":"312632.32","Total Profit":"640617.12"},{"Region":"Asia","Country":"North Korea","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/25/2016","Order ID":"382445943","Ship Date":"1/29/2017","Units Sold":"3108","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1358817.60","Total Cost":"818429.64","Total Profit":"540387.96"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/2/2015","Order ID":"843247306","Ship Date":"11/26/2015","Units Sold":"4471","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1886270.19","Total Cost":"1630528.99","Total Profit":"255741.20"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"4/23/2013","Order ID":"684818017","Ship Date":"4/25/2013","Units Sold":"1724","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"727338.36","Total Cost":"628725.56","Total Profit":"98612.80"},{"Region":"Europe","Country":"Vatican City","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/1/2016","Order ID":"466581904","Ship Date":"9/1/2016","Units Sold":"809","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"7547.97","Total Cost":"5598.28","Total Profit":"1949.69"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"7/12/2011","Order ID":"368275296","Ship Date":"7/26/2011","Units Sold":"9699","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"90491.67","Total Cost":"67117.08","Total Profit":"23374.59"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"1/25/2011","Order ID":"639947021","Ship Date":"2/20/2011","Units Sold":"3399","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2213462.79","Total Cost":"1784339.04","Total Profit":"429123.75"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"5/23/2014","Order ID":"251958405","Ship Date":"6/25/2014","Units Sold":"8946","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3911191.20","Total Cost":"2355750.18","Total Profit":"1555441.02"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/21/2010","Order ID":"944983279","Ship Date":"5/10/2010","Units Sold":"407","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"3797.31","Total Cost":"2816.44","Total Profit":"980.87"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/25/2011","Order ID":"480007970","Ship Date":"6/29/2011","Units Sold":"3880","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"990486.40","Total Cost":"618549.60","Total Profit":"371936.80"},{"Region":"Europe","Country":"Serbia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"5/23/2012","Order ID":"288331305","Ship Date":"6/6/2012","Units Sold":"2496","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"118435.20","Total Cost":"79347.84","Total Profit":"39087.36"},{"Region":"Europe","Country":"San Marino","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"8/27/2016","Order ID":"521564614","Ship Date":"9/4/2016","Units Sold":"1415","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"618638.00","Total Cost":"372611.95","Total Profit":"246026.05"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"4/2/2017","Order ID":"501631724","Ship Date":"4/6/2017","Units Sold":"2829","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"581925.30","Total Cost":"331304.19","Total Profit":"250621.11"},{"Region":"Asia","Country":"India","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"11/19/2015","Order ID":"970768964","Ship Date":"11/23/2015","Units Sold":"964","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"105345.92","Total Cost":"34549.76","Total Profit":"70796.16"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"7/14/2011","Order ID":"941525161","Ship Date":"8/31/2011","Units Sold":"7073","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1089666.38","Total Cost":"643147.89","Total Profit":"446518.49"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/29/2011","Order ID":"846761643","Ship Date":"12/5/2011","Units Sold":"4442","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2968455.34","Total Cost":"2232282.68","Total Profit":"736172.66"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"1/31/2014","Order ID":"289652240","Ship Date":"2/13/2014","Units Sold":"3389","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"160808.05","Total Cost":"107736.31","Total Profit":"53071.74"},{"Region":"Asia","Country":"Philippines","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/13/2016","Order ID":"293683278","Ship Date":"10/14/2016","Units Sold":"6263","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4185375.01","Total Cost":"3147408.02","Total Profit":"1037966.99"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/7/2015","Order ID":"152653586","Ship Date":"6/10/2015","Units Sold":"2443","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"372752.94","Total Cost":"238045.92","Total Profit":"134707.02"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"5/1/2014","Order ID":"580674493","Ship Date":"5/28/2014","Units Sold":"3341","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"852890.48","Total Cost":"532622.22","Total Profit":"320268.26"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/28/2015","Order ID":"562169826","Ship Date":"3/31/2015","Units Sold":"7399","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"351082.55","Total Cost":"235214.21","Total Profit":"115868.34"},{"Region":"Europe","Country":"Ireland","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"2/22/2013","Order ID":"501875913","Ship Date":"3/17/2013","Units Sold":"5090","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1299375.20","Total Cost":"811447.80","Total Profit":"487927.40"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/22/2015","Order ID":"874841582","Ship Date":"8/22/2015","Units Sold":"3920","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2619618.40","Total Cost":"1969956.80","Total Profit":"649661.60"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"11/22/2015","Order ID":"876428163","Ship Date":"12/27/2015","Units Sold":"3424","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"527501.44","Total Cost":"311344.32","Total Profit":"216157.12"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"6/5/2012","Order ID":"672309482","Ship Date":"7/9/2012","Units Sold":"171","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"111356.91","Total Cost":"89768.16","Total Profit":"21588.75"},{"Region":"Europe","Country":"Austria","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/28/2012","Order ID":"948471868","Ship Date":"3/6/2012","Units Sold":"2758","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"130867.10","Total Cost":"87676.82","Total Profit":"43190.28"},{"Region":"Europe","Country":"Ukraine","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"6/12/2011","Order ID":"661214148","Ship Date":"7/28/2011","Units Sold":"6815","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1401845.50","Total Cost":"798104.65","Total Profit":"603740.85"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"10/19/2015","Order ID":"187147653","Ship Date":"11/8/2015","Units Sold":"4","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"189.80","Total Cost":"127.16","Total Profit":"62.64"},{"Region":"Europe","Country":"Denmark","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/9/2012","Order ID":"873196208","Ship Date":"7/20/2012","Units Sold":"7017","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2960402.13","Total Cost":"2559029.73","Total Profit":"401372.40"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/12/2012","Order ID":"986596143","Ship Date":"11/14/2012","Units Sold":"4578","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3059340.06","Total Cost":"2300628.12","Total Profit":"758711.94"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"6/15/2017","Order ID":"664896285","Ship Date":"7/23/2017","Units Sold":"6441","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"60094.53","Total Cost":"44571.72","Total Profit":"15522.81"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/5/2013","Order ID":"565957963","Ship Date":"6/14/2013","Units Sold":"8393","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"398247.85","Total Cost":"266813.47","Total Profit":"131434.38"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/21/2014","Order ID":"517955005","Ship Date":"12/5/2014","Units Sold":"3251","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1371564.39","Total Cost":"1185607.19","Total Profit":"185957.20"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"7/22/2014","Order ID":"869373738","Ship Date":"8/8/2014","Units Sold":"5863","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3818044.23","Total Cost":"3077840.48","Total Profit":"740203.75"},{"Region":"Europe","Country":"Moldova ","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/26/2010","Order ID":"239012992","Ship Date":"3/11/2010","Units Sold":"8111","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5281964.31","Total Cost":"4257950.56","Total Profit":"1024013.75"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/20/2015","Order ID":"465984094","Ship Date":"5/22/2015","Units Sold":"3903","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"318992.19","Total Cost":"221183.01","Total Profit":"97809.18"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/30/2010","Order ID":"759710872","Ship Date":"2/8/2011","Units Sold":"4184","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"341958.32","Total Cost":"237107.28","Total Profit":"104851.04"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/7/2016","Order ID":"849929654","Ship Date":"10/24/2016","Units Sold":"1927","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"812982.03","Total Cost":"702757.63","Total Profit":"110224.40"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/22/2011","Order ID":"536689269","Ship Date":"8/22/2011","Units Sold":"7136","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"779822.08","Total Cost":"255754.24","Total Profit":"524067.84"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"8/21/2013","Order ID":"140351045","Ship Date":"9/4/2013","Units Sold":"1848","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"807945.60","Total Cost":"486633.84","Total Profit":"321311.76"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/13/2015","Order ID":"951588809","Ship Date":"7/19/2015","Units Sold":"5130","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1309586.40","Total Cost":"817824.60","Total Profit":"491761.80"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"11/21/2010","Order ID":"281388890","Ship Date":"12/22/2010","Units Sold":"8081","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1662261.70","Total Cost":"946365.91","Total Profit":"715895.79"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/15/2013","Order ID":"911050117","Ship Date":"7/3/2013","Units Sold":"8830","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3725288.70","Total Cost":"3220212.70","Total Profit":"505076.00"},{"Region":"Europe","Country":"Russia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"12/21/2014","Order ID":"742183816","Ship Date":"1/25/2015","Units Sold":"7539","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"823861.92","Total Cost":"270197.76","Total Profit":"553664.16"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"7/21/2012","Order ID":"446713817","Ship Date":"7/22/2012","Units Sold":"1400","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"66430.00","Total Cost":"44506.00","Total Profit":"21924.00"},{"Region":"Europe","Country":"France","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/8/2011","Order ID":"316876447","Ship Date":"9/4/2011","Units Sold":"9637","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1484676.22","Total Cost":"876292.41","Total Profit":"608383.81"},{"Region":"Europe","Country":"Netherlands","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/21/2014","Order ID":"715220534","Ship Date":"12/14/2014","Units Sold":"8505","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1297692.90","Total Cost":"828727.20","Total Profit":"468965.70"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/7/2011","Order ID":"724607408","Ship Date":"2/27/2011","Units Sold":"6289","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"687261.92","Total Cost":"225397.76","Total Profit":"461864.16"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/1/2016","Order ID":"398210895","Ship Date":"8/4/2016","Units Sold":"8308","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"679012.84","Total Cost":"470814.36","Total Profit":"208198.48"},{"Region":"Europe","Country":"Ukraine","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/18/2010","Order ID":"309517323","Ship Date":"8/29/2010","Units Sold":"1909","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"156022.57","Total Cost":"108183.03","Total Profit":"47839.54"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"5/29/2015","Order ID":"202325522","Ship Date":"6/11/2015","Units Sold":"1473","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"302996.10","Total Cost":"172503.03","Total Profit":"130493.07"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"6/18/2016","Order ID":"340746819","Ship Date":"7/18/2016","Units Sold":"3411","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"31824.63","Total Cost":"23604.12","Total Profit":"8220.51"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"7/8/2011","Order ID":"159205043","Ship Date":"7/17/2011","Units Sold":"1165","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"10869.45","Total Cost":"8061.80","Total Profit":"2807.65"},{"Region":"Asia","Country":"Vietnam","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"7/29/2014","Order ID":"512436521","Ship Date":"9/2/2014","Units Sold":"209","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"9917.05","Total Cost":"6644.11","Total Profit":"3272.94"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"3/17/2014","Order ID":"525490081","Ship Date":"4/13/2014","Units Sold":"3047","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1984236.87","Total Cost":"1599553.12","Total Profit":"384683.75"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/14/2015","Order ID":"743727052","Ship Date":"4/3/2015","Units Sold":"4217","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1779110.13","Total Cost":"1537897.73","Total Profit":"241212.40"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/14/2012","Order ID":"882821261","Ship Date":"2/20/2012","Units Sold":"5284","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1348899.52","Total Cost":"842375.28","Total Profit":"506524.24"},{"Region":"Central America and the Caribbean","Country":"Saint Lucia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/31/2015","Order ID":"278759038","Ship Date":"6/13/2015","Units Sold":"9849","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6581791.23","Total Cost":"4949516.46","Total Profit":"1632274.77"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/3/2010","Order ID":"137839210","Ship Date":"8/24/2010","Units Sold":"8540","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1756678.00","Total Cost":"1000119.40","Total Profit":"756558.60"},{"Region":"Europe","Country":"Sweden","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/5/2014","Order ID":"386673104","Ship Date":"3/5/2014","Units Sold":"4019","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"439196.32","Total Cost":"144040.96","Total Profit":"295155.36"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"5/7/2017","Order ID":"122184550","Ship Date":"6/1/2017","Units Sold":"5978","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"55774.74","Total Cost":"41367.76","Total Profit":"14406.98"},{"Region":"Europe","Country":"Macedonia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/6/2012","Order ID":"761609876","Ship Date":"6/9/2012","Units Sold":"6142","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"291437.90","Total Cost":"195254.18","Total Profit":"96183.72"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/28/2011","Order ID":"192497909","Ship Date":"6/1/2011","Units Sold":"3264","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1427020.80","Total Cost":"859509.12","Total Profit":"567511.68"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"9/5/2012","Order ID":"422709977","Ship Date":"10/2/2012","Units Sold":"8131","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3554873.20","Total Cost":"2141136.23","Total Profit":"1413736.97"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"8/8/2011","Order ID":"830419909","Ship Date":"9/8/2011","Units Sold":"8560","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1760792.00","Total Cost":"1002461.60","Total Profit":"758330.40"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"3/29/2012","Order ID":"414114034","Ship Date":"4/4/2012","Units Sold":"4400","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1123232.00","Total Cost":"701448.00","Total Profit":"421784.00"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"12/14/2015","Order ID":"942591178","Ship Date":"1/18/2016","Units Sold":"2531","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"646113.68","Total Cost":"403492.02","Total Profit":"242621.66"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/28/2017","Order ID":"204962670","Ship Date":"8/6/2017","Units Sold":"1864","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"475841.92","Total Cost":"297158.88","Total Profit":"178683.04"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/19/2016","Order ID":"560652339","Ship Date":"10/30/2016","Units Sold":"8341","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"911504.48","Total Cost":"298941.44","Total Profit":"612563.04"},{"Region":"Europe","Country":"Monaco","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/21/2014","Order ID":"389396512","Ship Date":"6/27/2014","Units Sold":"9936","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4344019.20","Total Cost":"2616446.88","Total Profit":"1727572.32"},{"Region":"Europe","Country":"Latvia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/12/2015","Order ID":"841244018","Ship Date":"12/31/2015","Units Sold":"1654","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"252367.32","Total Cost":"161165.76","Total Profit":"91201.56"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"1/2/2013","Order ID":"886556184","Ship Date":"1/5/2013","Units Sold":"531","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"345792.51","Total Cost":"278753.76","Total Profit":"67038.75"},{"Region":"Asia","Country":"Myanmar","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/2/2017","Order ID":"466006839","Ship Date":"2/28/2017","Units Sold":"634","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"267478.26","Total Cost":"231213.46","Total Profit":"36264.80"},{"Region":"Europe","Country":"Serbia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"7/1/2010","Order ID":"940582311","Ship Date":"8/4/2010","Units Sold":"8062","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3401277.18","Total Cost":"2940130.78","Total Profit":"461146.40"},{"Region":"Asia","Country":"Bhutan","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"9/4/2010","Order ID":"141581428","Ship Date":"9/19/2010","Units Sold":"5946","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"907240.68","Total Cost":"579378.24","Total Profit":"327862.44"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"5/29/2013","Order ID":"920615518","Ship Date":"6/16/2013","Units Sold":"9445","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1032149.60","Total Cost":"338508.80","Total Profit":"693640.80"},{"Region":"Asia","Country":"Myanmar","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/5/2011","Order ID":"799608409","Ship Date":"11/5/2011","Units Sold":"752","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"61460.96","Total Cost":"42615.84","Total Profit":"18845.12"},{"Region":"Europe","Country":"Monaco","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/6/2015","Order ID":"520796430","Ship Date":"1/11/2015","Units Sold":"4092","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"630413.52","Total Cost":"372085.56","Total Profit":"258327.96"},{"Region":"Europe","Country":"Spain","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"7/30/2014","Order ID":"896728408","Ship Date":"8/31/2014","Units Sold":"718","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"313909.60","Total Cost":"189070.94","Total Profit":"124838.66"},{"Region":"Europe","Country":"Lithuania","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/1/2010","Order ID":"560265672","Ship Date":"7/12/2010","Units Sold":"3917","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"805726.90","Total Cost":"458719.87","Total Profit":"347007.03"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/2/2015","Order ID":"914582049","Ship Date":"5/8/2015","Units Sold":"4007","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"824239.90","Total Cost":"469259.77","Total Profit":"354980.13"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"1/29/2012","Order ID":"283163869","Ship Date":"2/7/2012","Units Sold":"3336","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"364558.08","Total Cost":"119562.24","Total Profit":"244995.84"},{"Region":"Europe","Country":"Albania","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/18/2011","Order ID":"659809958","Ship Date":"11/13/2011","Units Sold":"1284","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"561364.80","Total Cost":"338115.72","Total Profit":"223249.08"},{"Region":"Asia","Country":"Philippines","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/21/2011","Order ID":"958631646","Ship Date":"4/2/2011","Units Sold":"9262","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1012151.36","Total Cost":"331950.08","Total Profit":"680201.28"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/13/2011","Order ID":"164052760","Ship Date":"10/30/2011","Units Sold":"5712","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"879990.72","Total Cost":"519392.16","Total Profit":"360598.56"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/14/2016","Order ID":"480809628","Ship Date":"2/17/2016","Units Sold":"1109","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"484854.80","Total Cost":"292032.97","Total Profit":"192821.83"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"10/6/2016","Order ID":"583951079","Ship Date":"10/11/2016","Units Sold":"2956","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"754607.68","Total Cost":"471245.52","Total Profit":"283362.16"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"8/17/2014","Order ID":"568838441","Ship Date":"8/30/2014","Units Sold":"790","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"37485.50","Total Cost":"25114.10","Total Profit":"12371.40"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"7/19/2015","Order ID":"601145541","Ship Date":"8/10/2015","Units Sold":"1179","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"497408.31","Total Cost":"429969.51","Total Profit":"67438.80"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"4/18/2011","Order ID":"466858708","Ship Date":"6/2/2011","Units Sold":"2721","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1818362.67","Total Cost":"1367411.34","Total Profit":"450951.33"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"8/19/2013","Order ID":"922276771","Ship Date":"9/17/2013","Units Sold":"1046","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"159598.68","Total Cost":"101922.24","Total Profit":"57676.44"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/1/2012","Order ID":"544011056","Ship Date":"10/9/2012","Units Sold":"3815","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"582092.70","Total Cost":"371733.60","Total Profit":"210359.10"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"12/8/2010","Order ID":"678985393","Ship Date":"12/28/2010","Units Sold":"5721","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"625190.88","Total Cost":"205040.64","Total Profit":"420150.24"},{"Region":"Europe","Country":"Kosovo","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"1/12/2012","Order ID":"494436109","Ship Date":"2/23/2012","Units Sold":"3487","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1471130.43","Total Cost":"1271674.03","Total Profit":"199456.40"},{"Region":"Europe","Country":"Iceland","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"10/31/2016","Order ID":"127912032","Ship Date":"11/3/2016","Units Sold":"868","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"41186.60","Total Cost":"27593.72","Total Profit":"13592.88"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/19/2012","Order ID":"237274491","Ship Date":"3/11/2012","Units Sold":"3650","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2439185.50","Total Cost":"1834271.00","Total Profit":"604914.50"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/20/2012","Order ID":"650697314","Ship Date":"6/8/2012","Units Sold":"4650","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1961788.50","Total Cost":"1695808.50","Total Profit":"265980.00"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/18/2010","Order ID":"816666829","Ship Date":"1/20/2010","Units Sold":"8718","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"413669.10","Total Cost":"277145.22","Total Profit":"136523.88"},{"Region":"Europe","Country":"Georgia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"7/5/2010","Order ID":"253981864","Ship Date":"8/12/2010","Units Sold":"7732","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3262053.48","Total Cost":"2819783.08","Total Profit":"442270.40"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/23/2012","Order ID":"801753747","Ship Date":"5/16/2012","Units Sold":"5605","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3745653.35","Total Cost":"2816736.70","Total Profit":"928916.65"},{"Region":"North America","Country":"Canada","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"5/13/2011","Order ID":"769406306","Ship Date":"5/28/2011","Units Sold":"3279","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"358329.12","Total Cost":"117519.36","Total Profit":"240809.76"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"3/16/2012","Order ID":"786675870","Ship Date":"4/19/2012","Units Sold":"3726","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"951173.28","Total Cost":"593998.92","Total Profit":"357174.36"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"9/1/2016","Order ID":"653611266","Ship Date":"10/9/2016","Units Sold":"6953","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"759823.84","Total Cost":"249195.52","Total Profit":"510628.32"},{"Region":"Europe","Country":"Poland","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/27/2012","Order ID":"690573823","Ship Date":"8/16/2012","Units Sold":"4995","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1275123.60","Total Cost":"796302.90","Total Profit":"478820.70"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"12/24/2014","Order ID":"388237369","Ship Date":"1/20/2015","Units Sold":"6920","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1055853.60","Total Cost":"674284.80","Total Profit":"381568.80"},{"Region":"Europe","Country":"Slovakia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/24/2010","Order ID":"657588231","Ship Date":"5/8/2010","Units Sold":"3825","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1672290.00","Total Cost":"1007237.25","Total Profit":"665052.75"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"11/20/2011","Order ID":"679925239","Ship Date":"12/3/2011","Units Sold":"3842","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"980785.76","Total Cost":"612491.64","Total Profit":"368294.12"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/17/2011","Order ID":"156859719","Ship Date":"12/25/2011","Units Sold":"7132","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1820656.96","Total Cost":"1136983.44","Total Profit":"683673.52"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/15/2014","Order ID":"660315501","Ship Date":"12/28/2014","Units Sold":"885","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"225922.80","Total Cost":"141086.70","Total Profit":"84836.10"},{"Region":"Europe","Country":"Armenia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"12/21/2010","Order ID":"682528913","Ship Date":"2/2/2011","Units Sold":"4327","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1825518.03","Total Cost":"1578013.63","Total Profit":"247504.40"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/6/2010","Order ID":"586048781","Ship Date":"8/27/2010","Units Sold":"3713","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"572024.78","Total Cost":"337623.09","Total Profit":"234401.69"},{"Region":"Europe","Country":"Latvia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/5/2010","Order ID":"353736436","Ship Date":"1/13/2010","Units Sold":"7327","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"800694.56","Total Cost":"262599.68","Total Profit":"538094.88"},{"Region":"Asia","Country":"Japan","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"5/1/2010","Order ID":"938765704","Ship Date":"5/21/2010","Units Sold":"488","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"75181.28","Total Cost":"44373.84","Total Profit":"30807.44"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/23/2013","Order ID":"214622914","Ship Date":"10/27/2013","Units Sold":"545","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"83962.70","Total Cost":"49556.85","Total Profit":"34405.85"},{"Region":"Europe","Country":"Sweden","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"2/3/2012","Order ID":"625106894","Ship Date":"2/23/2012","Units Sold":"1876","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"478905.28","Total Cost":"299071.92","Total Profit":"179833.36"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"7/5/2013","Order ID":"634328973","Ship Date":"7/12/2013","Units Sold":"894","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"73066.62","Total Cost":"50662.98","Total Profit":"22403.64"},{"Region":"Asia","Country":"Vietnam","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"10/15/2015","Order ID":"576712977","Ship Date":"10/31/2015","Units Sold":"1041","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"455125.20","Total Cost":"274126.53","Total Profit":"180998.67"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/20/2010","Order ID":"406995236","Ship Date":"4/18/2010","Units Sold":"7790","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"851291.20","Total Cost":"279193.60","Total Profit":"572097.60"},{"Region":"Asia","Country":"Thailand","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"8/28/2015","Order ID":"150224578","Ship Date":"9/13/2015","Units Sold":"3646","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"561702.76","Total Cost":"331530.78","Total Profit":"230171.98"},{"Region":"Europe","Country":"Kosovo","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"3/3/2014","Order ID":"351762330","Ship Date":"3/15/2014","Units Sold":"3145","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2101709.15","Total Cost":"1580488.30","Total Profit":"521220.85"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"5/23/2015","Order ID":"727282321","Ship Date":"7/2/2015","Units Sold":"7855","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5249260.85","Total Cost":"3947451.70","Total Profit":"1301809.15"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"11/14/2014","Order ID":"612770879","Ship Date":"12/18/2014","Units Sold":"1375","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"351010.00","Total Cost":"219202.50","Total Profit":"131807.50"},{"Region":"Asia","Country":"Philippines","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/4/2013","Order ID":"314526832","Ship Date":"1/23/2013","Units Sold":"4334","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"667696.04","Total Cost":"394090.62","Total Profit":"273605.42"},{"Region":"North America","Country":"United States of America","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"4/13/2011","Order ID":"659161508","Ship Date":"5/15/2011","Units Sold":"9393","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4106619.60","Total Cost":"2473458.69","Total Profit":"1633160.91"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/1/2016","Order ID":"743598735","Ship Date":"2/18/2016","Units Sold":"6245","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1284596.50","Total Cost":"731351.95","Total Profit":"553244.55"},{"Region":"Asia","Country":"Tajikistan","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"11/1/2011","Order ID":"185074841","Ship Date":"11/7/2011","Units Sold":"6613","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1018798.78","Total Cost":"601320.09","Total Profit":"417478.69"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/7/2011","Order ID":"471138656","Ship Date":"2/11/2011","Units Sold":"9253","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6025646.13","Total Cost":"4857454.88","Total Profit":"1168191.25"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"9/16/2011","Order ID":"909651505","Ship Date":"10/9/2011","Units Sold":"4950","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3223489.50","Total Cost":"2598552.00","Total Profit":"624937.50"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/27/2016","Order ID":"878787219","Ship Date":"1/15/2017","Units Sold":"1522","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1017106.94","Total Cost":"764865.88","Total Profit":"252241.06"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"7/18/2015","Order ID":"277032124","Ship Date":"7/23/2015","Units Sold":"8817","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2250803.76","Total Cost":"1405606.14","Total Profit":"845197.62"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"7/16/2016","Order ID":"873185050","Ship Date":"8/8/2016","Units Sold":"3715","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"405975.20","Total Cost":"133145.60","Total Profit":"272829.60"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/27/2014","Order ID":"456357324","Ship Date":"11/10/2014","Units Sold":"5128","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"419111.44","Total Cost":"290603.76","Total Profit":"128507.68"},{"Region":"Asia","Country":"Laos","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/27/2017","Order ID":"485972774","Ship Date":"5/27/2017","Units Sold":"8998","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3796166.22","Total Cost":"3281480.62","Total Profit":"514685.60"},{"Region":"Asia","Country":"Cambodia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"2/23/2010","Order ID":"241767728","Ship Date":"4/2/2010","Units Sold":"3298","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"30770.34","Total Cost":"22822.16","Total Profit":"7948.18"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/22/2013","Order ID":"873791015","Ship Date":"11/1/2013","Units Sold":"3034","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1280014.26","Total Cost":"1106469.46","Total Profit":"173544.80"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"2/3/2012","Order ID":"452403962","Ship Date":"2/5/2012","Units Sold":"5241","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"799671.78","Total Cost":"510683.04","Total Profit":"288988.74"},{"Region":"Europe","Country":"Poland","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"10/10/2016","Order ID":"718280398","Ship Date":"10/20/2016","Units Sold":"3987","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1017801.36","Total Cost":"635607.54","Total Profit":"382193.82"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"1/28/2010","Order ID":"332406651","Ship Date":"2/9/2010","Units Sold":"5370","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2347764.00","Total Cost":"1414082.10","Total Profit":"933681.90"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/1/2017","Order ID":"726081550","Ship Date":"2/15/2017","Units Sold":"2521","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"119621.45","Total Cost":"80142.59","Total Profit":"39478.86"},{"Region":"Asia","Country":"Indonesia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/19/2010","Order ID":"250916421","Ship Date":"8/25/2010","Units Sold":"600","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"253134.00","Total Cost":"218814.00","Total Profit":"34320.00"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/26/2014","Order ID":"928835093","Ship Date":"6/1/2014","Units Sold":"1800","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"786960.00","Total Cost":"473994.00","Total Profit":"312966.00"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"8/14/2014","Order ID":"802073895","Ship Date":"9/19/2014","Units Sold":"344","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"70760.80","Total Cost":"40285.84","Total Profit":"30474.96"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"7/10/2010","Order ID":"683181655","Ship Date":"8/23/2010","Units Sold":"7488","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"69863.04","Total Cost":"51816.96","Total Profit":"18046.08"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/21/2017","Order ID":"105019700","Ship Date":"4/3/2017","Units Sold":"6518","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4355783.86","Total Cost":"3275555.72","Total Profit":"1080228.14"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/20/2016","Order ID":"470761859","Ship Date":"12/26/2016","Units Sold":"7750","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5046877.50","Total Cost":"4068440.00","Total Profit":"978437.50"},{"Region":"Europe","Country":"Georgia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"7/1/2015","Order ID":"103894460","Ship Date":"7/17/2015","Units Sold":"3534","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"726943.80","Total Cost":"413866.74","Total Profit":"313077.06"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"4/15/2016","Order ID":"998216331","Ship Date":"5/31/2016","Units Sold":"3250","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2171877.50","Total Cost":"1633255.00","Total Profit":"538622.50"},{"Region":"Europe","Country":"Austria","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"12/31/2015","Order ID":"267838799","Ship Date":"2/1/2016","Units Sold":"8308","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5551987.16","Total Cost":"4175102.32","Total Profit":"1376884.84"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/17/2016","Order ID":"497185695","Ship Date":"4/4/2016","Units Sold":"7150","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1090947.00","Total Cost":"696696.00","Total Profit":"394251.00"},{"Region":"Asia","Country":"Cambodia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"1/1/2012","Order ID":"290993344","Ship Date":"1/12/2012","Units Sold":"252","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"20595.96","Total Cost":"14280.84","Total Profit":"6315.12"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/16/2010","Order ID":"124310576","Ship Date":"11/25/2010","Units Sold":"5117","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3332241.57","Total Cost":"2686220.32","Total Profit":"646021.25"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"10/31/2013","Order ID":"992498719","Ship Date":"11/19/2013","Units Sold":"1281","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"856053.87","Total Cost":"643753.74","Total Profit":"212300.13"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"7/26/2011","Order ID":"361231601","Ship Date":"9/3/2011","Units Sold":"5313","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3550518.51","Total Cost":"2669995.02","Total Profit":"880523.49"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/28/2010","Order ID":"716495549","Ship Date":"1/27/2011","Units Sold":"5810","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3882648.70","Total Cost":"2919757.40","Total Profit":"962891.30"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"4/17/2016","Order ID":"114589393","Ship Date":"5/28/2016","Units Sold":"8403","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"918279.84","Total Cost":"301163.52","Total Profit":"617116.32"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"1/4/2010","Order ID":"732124459","Ship Date":"2/6/2010","Units Sold":"752","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"35682.40","Total Cost":"23906.08","Total Profit":"11776.32"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/25/2017","Order ID":"316024577","Ship Date":"6/1/2017","Units Sold":"7550","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"70441.50","Total Cost":"52246.00","Total Profit":"18195.50"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/3/2011","Order ID":"733526074","Ship Date":"11/1/2011","Units Sold":"5521","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2329254.69","Total Cost":"2013453.49","Total Profit":"315801.20"},{"Region":"North America","Country":"United States of America","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"9/6/2016","Order ID":"322177779","Ship Date":"10/24/2016","Units Sold":"8419","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"920028.32","Total Cost":"301736.96","Total Profit":"618291.36"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/26/2011","Order ID":"639841020","Ship Date":"6/26/2011","Units Sold":"2031","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"856858.59","Total Cost":"740685.39","Total Profit":"116173.20"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"4/10/2010","Order ID":"614689624","Ship Date":"5/11/2010","Units Sold":"9174","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"749791.02","Total Cost":"519890.58","Total Profit":"229900.44"},{"Region":"Europe","Country":"Hungary","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/3/2013","Order ID":"595209920","Ship Date":"8/19/2013","Units Sold":"4697","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1981617.33","Total Cost":"1712948.93","Total Profit":"268668.40"},{"Region":"Europe","Country":"Finland","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"5/2/2011","Order ID":"100200736","Ship Date":"6/11/2011","Units Sold":"479","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"73085.82","Total Cost":"46673.76","Total Profit":"26412.06"},{"Region":"Asia","Country":"Laos","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"4/14/2017","Order ID":"968773400","Ship Date":"5/5/2017","Units Sold":"432","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"65914.56","Total Cost":"42094.08","Total Profit":"23820.48"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"3/15/2012","Order ID":"610351741","Ship Date":"4/2/2012","Units Sold":"5498","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1130938.60","Total Cost":"643870.78","Total Profit":"487067.82"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/11/2015","Order ID":"554672086","Ship Date":"11/30/2015","Units Sold":"8651","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"945381.28","Total Cost":"310051.84","Total Profit":"635329.44"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"9/7/2014","Order ID":"601783263","Ship Date":"9/30/2014","Units Sold":"9895","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2525995.60","Total Cost":"1577460.90","Total Profit":"948534.70"},{"Region":"Europe","Country":"Georgia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/25/2011","Order ID":"172046601","Ship Date":"11/6/2011","Units Sold":"1267","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"323439.76","Total Cost":"201985.14","Total Profit":"121454.62"},{"Region":"Asia","Country":"Japan","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"11/26/2014","Order ID":"556135928","Ship Date":"12/22/2014","Units Sold":"1835","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"87070.75","Total Cost":"58334.65","Total Profit":"28736.10"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"1/15/2010","Order ID":"865037572","Ship Date":"2/21/2010","Units Sold":"2695","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1755010.95","Total Cost":"1414767.20","Total Profit":"340243.75"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"11/17/2010","Order ID":"280050361","Ship Date":"11/23/2010","Units Sold":"1980","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1323174.60","Total Cost":"995029.20","Total Profit":"328145.40"},{"Region":"Asia","Country":"Myanmar","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"12/29/2016","Order ID":"302785623","Ship Date":"1/9/2017","Units Sold":"9849","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1517336.94","Total Cost":"895569.57","Total Profit":"621767.37"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"2/3/2010","Order ID":"705167186","Ship Date":"2/15/2010","Units Sold":"3496","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"32617.68","Total Cost":"24192.32","Total Profit":"8425.36"},{"Region":"Europe","Country":"Armenia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/24/2010","Order ID":"879431378","Ship Date":"11/29/2010","Units Sold":"2143","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"326978.94","Total Cost":"208813.92","Total Profit":"118165.02"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/9/2014","Order ID":"288127028","Ship Date":"6/26/2014","Units Sold":"2045","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"522047.60","Total Cost":"326013.90","Total Profit":"196033.70"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"12/20/2016","Order ID":"714115464","Ship Date":"1/14/2017","Units Sold":"1490","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"70700.50","Total Cost":"47367.10","Total Profit":"23333.40"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/16/2012","Order ID":"410570514","Ship Date":"4/20/2012","Units Sold":"5794","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"54058.02","Total Cost":"40094.48","Total Profit":"13963.54"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/21/2017","Order ID":"850978505","Ship Date":"5/25/2017","Units Sold":"2305","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"21505.65","Total Cost":"15950.60","Total Profit":"5555.05"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"10/26/2016","Order ID":"879138267","Ship Date":"10/30/2016","Units Sold":"5404","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2362628.80","Total Cost":"1423035.32","Total Profit":"939593.48"},{"Region":"North America","Country":"Canada","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/11/2011","Order ID":"759161126","Ship Date":"1/24/2011","Units Sold":"1502","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"308961.40","Total Cost":"175899.22","Total Profit":"133062.18"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/16/2012","Order ID":"825470912","Ship Date":"12/17/2012","Units Sold":"4041","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"622556.46","Total Cost":"367448.13","Total Profit":"255108.33"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/26/2013","Order ID":"132803952","Ship Date":"11/27/2013","Units Sold":"8496","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5677621.92","Total Cost":"4269579.84","Total Profit":"1408042.08"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"1/1/2010","Order ID":"506209075","Ship Date":"2/4/2010","Units Sold":"7369","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1135268.14","Total Cost":"670063.17","Total Profit":"465204.97"},{"Region":"Asia","Country":"South Korea","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"8/12/2013","Order ID":"691047608","Ship Date":"9/14/2013","Units Sold":"5199","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1327200.72","Total Cost":"828824.58","Total Profit":"498376.14"},{"Region":"Asia","Country":"South Korea","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"8/24/2011","Order ID":"402993381","Ship Date":"9/13/2011","Units Sold":"3552","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1498553.28","Total Cost":"1295378.88","Total Profit":"203174.40"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/20/2014","Order ID":"778032720","Ship Date":"11/22/2014","Units Sold":"6026","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"492504.98","Total Cost":"341493.42","Total Profit":"151011.56"},{"Region":"Europe","Country":"Slovakia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"11/28/2015","Order ID":"322464454","Ship Date":"1/11/2016","Units Sold":"3253","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"496342.74","Total Cost":"316972.32","Total Profit":"179370.42"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"6/7/2016","Order ID":"762899911","Ship Date":"7/18/2016","Units Sold":"7892","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1204161.36","Total Cost":"768996.48","Total Profit":"435164.88"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/15/2015","Order ID":"296262919","Ship Date":"4/6/2015","Units Sold":"9636","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4212859.20","Total Cost":"2537447.88","Total Profit":"1675411.32"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/18/2011","Order ID":"339789807","Ship Date":"10/25/2011","Units Sold":"210","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"53608.80","Total Cost":"33478.20","Total Profit":"20130.60"},{"Region":"North America","Country":"Canada","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/8/2011","Order ID":"581029403","Ship Date":"3/23/2011","Units Sold":"8367","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"397014.15","Total Cost":"265986.93","Total Profit":"131027.22"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/18/2011","Order ID":"327843034","Ship Date":"5/4/2011","Units Sold":"4894","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"232220.30","Total Cost":"155580.26","Total Profit":"76640.04"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/12/2015","Order ID":"758404529","Ship Date":"3/30/2015","Units Sold":"7608","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4954405.68","Total Cost":"3993895.68","Total Profit":"960510.00"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/1/2011","Order ID":"871200215","Ship Date":"11/3/2011","Units Sold":"6359","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"59329.47","Total Cost":"44004.28","Total Profit":"15325.19"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"1/11/2010","Order ID":"635028922","Ship Date":"2/19/2010","Units Sold":"8025","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5362866.75","Total Cost":"4032883.50","Total Profit":"1329983.25"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"5/17/2012","Order ID":"539001977","Ship Date":"5/23/2012","Units Sold":"1518","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"988536.78","Total Cost":"796889.28","Total Profit":"191647.50"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/28/2010","Order ID":"242543208","Ship Date":"12/15/2010","Units Sold":"2780","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1172854.20","Total Cost":"1013838.20","Total Profit":"159016.00"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/14/2013","Order ID":"825388944","Ship Date":"12/31/2013","Units Sold":"9785","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4128193.65","Total Cost":"3568491.65","Total Profit":"559702.00"},{"Region":"Asia","Country":"Bhutan","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"12/23/2011","Order ID":"737588012","Ship Date":"1/31/2012","Units Sold":"7538","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1161304.28","Total Cost":"685430.34","Total Profit":"475873.94"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"8/27/2011","Order ID":"749501740","Ship Date":"9/25/2011","Units Sold":"3075","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1297311.75","Total Cost":"1121421.75","Total Profit":"175890.00"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"12/8/2016","Order ID":"801803958","Ship Date":"12/31/2016","Units Sold":"464","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"37922.72","Total Cost":"26294.88","Total Profit":"11627.84"},{"Region":"Asia","Country":"Philippines","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"2/14/2010","Order ID":"455480992","Ship Date":"3/4/2010","Units Sold":"5802","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1481134.56","Total Cost":"924954.84","Total Profit":"556179.72"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/25/2016","Order ID":"241831672","Ship Date":"3/26/2016","Units Sold":"2221","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"20721.93","Total Cost":"15369.32","Total Profit":"5352.61"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"11/26/2015","Order ID":"312467324","Ship Date":"12/18/2015","Units Sold":"4880","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3177904.80","Total Cost":"2561804.80","Total Profit":"616100.00"},{"Region":"Asia","Country":"Cambodia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"5/7/2017","Order ID":"889311778","Ship Date":"5/26/2017","Units Sold":"5972","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1524532.16","Total Cost":"952056.24","Total Profit":"572475.92"},{"Region":"Europe","Country":"Moldova ","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/12/2014","Order ID":"914601361","Ship Date":"10/26/2014","Units Sold":"9722","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2481832.16","Total Cost":"1549881.24","Total Profit":"931950.92"},{"Region":"Europe","Country":"Iceland","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"7/7/2014","Order ID":"300884902","Ship Date":"8/10/2014","Units Sold":"7384","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3115235.76","Total Cost":"2692870.96","Total Profit":"422364.80"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"11/2/2016","Order ID":"381023728","Ship Date":"12/16/2016","Units Sold":"2243","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"946299.27","Total Cost":"817999.67","Total Profit":"128299.60"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"6/6/2011","Order ID":"758191668","Ship Date":"6/21/2011","Units Sold":"4618","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"219124.10","Total Cost":"146806.22","Total Profit":"72317.88"},{"Region":"Asia","Country":"Malaysia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/27/2011","Order ID":"655875051","Ship Date":"10/27/2011","Units Sold":"6857","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"560422.61","Total Cost":"388586.19","Total Profit":"171836.42"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/7/2013","Order ID":"267872703","Ship Date":"10/22/2013","Units Sold":"8340","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1284860.40","Total Cost":"758356.20","Total Profit":"526504.20"},{"Region":"North America","Country":"Mexico","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/2/2013","Order ID":"308295953","Ship Date":"10/3/2013","Units Sold":"478","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"52235.84","Total Cost":"17131.52","Total Profit":"35104.32"},{"Region":"Europe","Country":"Montenegro","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/13/2013","Order ID":"661568629","Ship Date":"8/30/2013","Units Sold":"1714","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"140085.22","Total Cost":"97132.38","Total Profit":"42952.84"},{"Region":"Europe","Country":"Moldova ","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/4/2015","Order ID":"832427060","Ship Date":"1/21/2016","Units Sold":"2520","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1101744.00","Total Cost":"663591.60","Total Profit":"438152.40"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/12/2013","Order ID":"395920073","Ship Date":"2/21/2013","Units Sold":"403","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"82897.10","Total Cost":"47195.33","Total Profit":"35701.77"},{"Region":"Asia","Country":"Indonesia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"7/6/2013","Order ID":"347408998","Ship Date":"7/9/2013","Units Sold":"4897","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"400231.81","Total Cost":"277512.99","Total Profit":"122718.82"},{"Region":"North America","Country":"Greenland","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"8/19/2015","Order ID":"852567660","Ship Date":"9/22/2015","Units Sold":"2571","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1124041.20","Total Cost":"677021.43","Total Profit":"447019.77"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"2/27/2011","Order ID":"797382390","Ship Date":"4/11/2011","Units Sold":"2024","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"308821.92","Total Cost":"197218.56","Total Profit":"111603.36"},{"Region":"Asia","Country":"Maldives","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/8/2011","Order ID":"938152015","Ship Date":"12/8/2011","Units Sold":"8884","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1355520.72","Total Cost":"865656.96","Total Profit":"489863.76"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/27/2015","Order ID":"751487863","Ship Date":"6/2/2015","Units Sold":"813","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"355443.60","Total Cost":"214087.29","Total Profit":"141356.31"},{"Region":"Europe","Country":"Monaco","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/4/2016","Order ID":"684313762","Ship Date":"10/27/2016","Units Sold":"2504","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"382060.32","Total Cost":"243989.76","Total Profit":"138070.56"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"12/14/2011","Order ID":"803866040","Ship Date":"1/27/2012","Units Sold":"680","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"74310.40","Total Cost":"24371.20","Total Profit":"49939.20"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"1/2/2017","Order ID":"347693526","Ship Date":"1/22/2017","Units Sold":"9096","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1387867.68","Total Cost":"886314.24","Total Profit":"501553.44"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/20/2011","Order ID":"873657548","Ship Date":"3/10/2011","Units Sold":"3538","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"289160.74","Total Cost":"200498.46","Total Profit":"88662.28"},{"Region":"North America","Country":"Mexico","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"4/16/2016","Order ID":"409931933","Ship Date":"5/28/2016","Units Sold":"6824","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"323798.80","Total Cost":"216934.96","Total Profit":"106863.84"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/10/2010","Order ID":"205003011","Ship Date":"1/17/2010","Units Sold":"3801","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"585582.06","Total Cost":"345624.93","Total Profit":"239957.13"},{"Region":"Europe","Country":"Kosovo","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/19/2012","Order ID":"677669608","Ship Date":"9/8/2012","Units Sold":"6351","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"978435.06","Total Cost":"577496.43","Total Profit":"400938.63"},{"Region":"Asia","Country":"Mongolia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/28/2015","Order ID":"967043054","Ship Date":"4/18/2015","Units Sold":"8384","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"78222.72","Total Cost":"58017.28","Total Profit":"20205.44"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/8/2013","Order ID":"282547175","Ship Date":"8/27/2013","Units Sold":"843","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"563351.61","Total Cost":"423641.22","Total Profit":"139710.39"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"3/31/2012","Order ID":"153918302","Ship Date":"5/13/2012","Units Sold":"6701","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"547672.73","Total Cost":"379745.67","Total Profit":"167927.06"},{"Region":"Europe","Country":"Cyprus","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"3/4/2013","Order ID":"381205260","Ship Date":"4/10/2013","Units Sold":"5963","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2515730.07","Total Cost":"2174646.47","Total Profit":"341083.60"},{"Region":"Europe","Country":"Croatia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/12/2011","Order ID":"384769380","Ship Date":"8/15/2011","Units Sold":"665","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"6204.45","Total Cost":"4601.80","Total Profit":"1602.65"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"4/20/2015","Order ID":"555284488","Ship Date":"4/22/2015","Units Sold":"9874","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"2031081.80","Total Cost":"1156344.14","Total Profit":"874737.66"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/29/2010","Order ID":"903736913","Ship Date":"5/5/2010","Units Sold":"4690","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"222540.50","Total Cost":"149095.10","Total Profit":"73445.40"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"5/6/2010","Order ID":"611425483","Ship Date":"6/3/2010","Units Sold":"3242","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"264968.66","Total Cost":"183724.14","Total Profit":"81244.52"},{"Region":"Europe","Country":"Slovakia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/5/2014","Order ID":"279961526","Ship Date":"1/16/2015","Units Sold":"5692","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"270085.40","Total Cost":"180948.68","Total Profit":"89136.72"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/11/2013","Order ID":"581268870","Ship Date":"5/20/2013","Units Sold":"9231","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6168800.37","Total Cost":"4638946.74","Total Profit":"1529853.63"},{"Region":"Europe","Country":"Finland","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"2/16/2011","Order ID":"907583844","Ship Date":"2/23/2011","Units Sold":"3083","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2007680.43","Total Cost":"1618451.68","Total Profit":"389228.75"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/3/2011","Order ID":"721455276","Ship Date":"1/5/2011","Units Sold":"3503","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"534487.74","Total Cost":"341332.32","Total Profit":"193155.42"},{"Region":"Asia","Country":"China","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/28/2016","Order ID":"905744493","Ship Date":"11/17/2016","Units Sold":"8778","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1352338.68","Total Cost":"798183.54","Total Profit":"554155.14"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"7/22/2014","Order ID":"613625323","Ship Date":"8/18/2014","Units Sold":"4224","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2750711.04","Total Cost":"2217431.04","Total Profit":"533280.00"},{"Region":"Asia","Country":"Mongolia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"12/11/2013","Order ID":"418584096","Ship Date":"12/14/2013","Units Sold":"7191","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1107845.46","Total Cost":"653877.63","Total Profit":"453967.83"},{"Region":"Asia","Country":"Malaysia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"6/14/2014","Order ID":"964419639","Ship Date":"6/30/2014","Units Sold":"2057","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1339538.97","Total Cost":"1079842.72","Total Profit":"259696.25"},{"Region":"Europe","Country":"Cyprus","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/5/2016","Order ID":"715243279","Ship Date":"9/21/2016","Units Sold":"5236","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"572190.08","Total Cost":"187658.24","Total Profit":"384531.84"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/10/2010","Order ID":"905478847","Ship Date":"8/24/2010","Units Sold":"167","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"111601.09","Total Cost":"83924.18","Total Profit":"27676.91"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"6/29/2010","Order ID":"589862668","Ship Date":"6/30/2010","Units Sold":"2326","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"110368.70","Total Cost":"73943.54","Total Profit":"36425.16"},{"Region":"Europe","Country":"Denmark","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/24/2012","Order ID":"693443572","Ship Date":"6/22/2012","Units Sold":"4218","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"344737.14","Total Cost":"239034.06","Total Profit":"105703.08"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/12/2013","Order ID":"861582887","Ship Date":"8/12/2013","Units Sold":"377","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"159052.53","Total Cost":"137488.13","Total Profit":"21564.40"},{"Region":"Europe","Country":"Armenia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"12/12/2015","Order ID":"809954440","Ship Date":"1/10/2016","Units Sold":"2373","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"193945.29","Total Cost":"134477.91","Total Profit":"59467.38"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"3/16/2015","Order ID":"774544560","Ship Date":"3/26/2015","Units Sold":"3802","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"585736.12","Total Cost":"345715.86","Total Profit":"240020.26"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"9/14/2011","Order ID":"161652076","Ship Date":"11/1/2011","Units Sold":"5296","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"432842.08","Total Cost":"300124.32","Total Profit":"132717.76"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/26/2014","Order ID":"697888314","Ship Date":"7/24/2014","Units Sold":"9516","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6359257.32","Total Cost":"4782170.64","Total Profit":"1577086.68"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/21/2014","Order ID":"580177104","Ship Date":"10/19/2014","Units Sold":"6153","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"947931.18","Total Cost":"559492.29","Total Profit":"388438.89"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"3/24/2012","Order ID":"325754773","Ship Date":"4/30/2012","Units Sold":"6931","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1057531.98","Total Cost":"675356.64","Total Profit":"382175.34"},{"Region":"Europe","Country":"Belarus","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/31/2011","Order ID":"522170150","Ship Date":"9/30/2011","Units Sold":"606","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"255665.34","Total Cost":"221002.14","Total Profit":"34663.20"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/9/2011","Order ID":"477284562","Ship Date":"4/26/2011","Units Sold":"7963","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"650815.99","Total Cost":"451263.21","Total Profit":"199552.78"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/18/2013","Order ID":"469271838","Ship Date":"11/7/2013","Units Sold":"6820","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1050689.20","Total Cost":"620142.60","Total Profit":"430546.60"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"12/31/2015","Order ID":"396618306","Ship Date":"2/8/2016","Units Sold":"7025","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4694596.75","Total Cost":"3530343.50","Total Profit":"1164253.25"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"7/26/2011","Order ID":"228122794","Ship Date":"8/28/2011","Units Sold":"5459","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"596559.52","Total Cost":"195650.56","Total Profit":"400908.96"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"6/28/2010","Order ID":"452896630","Ship Date":"8/15/2010","Units Sold":"1032","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"672048.72","Total Cost":"541758.72","Total Profit":"130290.00"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"6/16/2012","Order ID":"730363643","Ship Date":"6/29/2012","Units Sold":"9687","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"791718.51","Total Cost":"548962.29","Total Profit":"242756.22"},{"Region":"Europe","Country":"Iceland","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"8/29/2010","Order ID":"340260159","Ship Date":"9/23/2010","Units Sold":"9397","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2398866.16","Total Cost":"1498069.74","Total Profit":"900796.42"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/14/2010","Order ID":"432635009","Ship Date":"9/30/2010","Units Sold":"5168","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3365453.28","Total Cost":"2712993.28","Total Profit":"652460.00"},{"Region":"Europe","Country":"Montenegro","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/9/2011","Order ID":"877849519","Ship Date":"10/14/2011","Units Sold":"4035","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"621632.10","Total Cost":"366902.55","Total Profit":"254729.55"},{"Region":"Europe","Country":"Ireland","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/27/2017","Order ID":"716577517","Ship Date":"8/9/2017","Units Sold":"66","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"42979.86","Total Cost":"34647.36","Total Profit":"8332.50"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"8/24/2010","Order ID":"409805333","Ship Date":"8/26/2010","Units Sold":"9360","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1925352.00","Total Cost":"1096149.60","Total Profit":"829202.40"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"12/7/2015","Order ID":"488831794","Ship Date":"1/13/2016","Units Sold":"5046","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"551426.88","Total Cost":"180848.64","Total Profit":"370578.24"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/27/2014","Order ID":"205268228","Ship Date":"2/13/2014","Units Sold":"2285","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"186753.05","Total Cost":"129490.95","Total Profit":"57262.10"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"4/11/2013","Order ID":"681038463","Ship Date":"5/12/2013","Units Sold":"3270","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"672639.00","Total Cost":"382949.70","Total Profit":"289689.30"},{"Region":"Asia","Country":"China","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"4/2/2015","Order ID":"858378827","Ship Date":"5/1/2015","Units Sold":"2225","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"457682.50","Total Cost":"260569.75","Total Profit":"197112.75"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"5/28/2011","Order ID":"649838149","Ship Date":"5/30/2011","Units Sold":"404","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"19169.80","Total Cost":"12843.16","Total Profit":"6326.64"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/6/2016","Order ID":"488277757","Ship Date":"12/8/2016","Units Sold":"1094","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"712423.74","Total Cost":"574306.24","Total Profit":"138117.50"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/5/2014","Order ID":"876871478","Ship Date":"1/26/2014","Units Sold":"4611","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3081392.97","Total Cost":"2317211.94","Total Profit":"764181.03"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"3/9/2016","Order ID":"139105641","Ship Date":"3/22/2016","Units Sold":"3305","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"509168.30","Total Cost":"300523.65","Total Profit":"208644.65"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"7/21/2011","Order ID":"268779075","Ship Date":"8/11/2011","Units Sold":"6556","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"61167.48","Total Cost":"45367.52","Total Profit":"15799.96"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/26/2011","Order ID":"180003106","Ship Date":"2/14/2012","Units Sold":"5774","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1187711.80","Total Cost":"676193.14","Total Profit":"511518.66"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/2/2011","Order ID":"657201564","Ship Date":"8/16/2011","Units Sold":"9402","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3966609.78","Total Cost":"3428815.38","Total Profit":"537794.40"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"9/30/2012","Order ID":"305110776","Ship Date":"10/12/2012","Units Sold":"7914","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"375519.30","Total Cost":"251586.06","Total Profit":"123933.24"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"8/31/2015","Order ID":"498779571","Ship Date":"10/20/2015","Units Sold":"8814","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"418224.30","Total Cost":"280197.06","Total Profit":"138027.24"},{"Region":"Europe","Country":"Belarus","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/30/2013","Order ID":"433569276","Ship Date":"9/14/2013","Units Sold":"1638","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"179000.64","Total Cost":"58705.92","Total Profit":"120294.72"},{"Region":"Europe","Country":"Belarus","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"8/5/2012","Order ID":"275153720","Ship Date":"8/11/2012","Units Sold":"2955","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"322922.40","Total Cost":"105907.20","Total Profit":"217015.20"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"10/19/2011","Order ID":"709519231","Ship Date":"11/22/2011","Units Sold":"1362","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"595466.40","Total Cost":"358655.46","Total Profit":"236810.94"},{"Region":"Asia","Country":"South Korea","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"6/17/2015","Order ID":"692964637","Ship Date":"8/3/2015","Units Sold":"2490","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"512193.00","Total Cost":"291603.90","Total Profit":"220589.10"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"9/9/2013","Order ID":"602101266","Ship Date":"9/16/2013","Units Sold":"3999","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"326838.27","Total Cost":"226623.33","Total Profit":"100214.94"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"8/4/2016","Order ID":"883852946","Ship Date":"8/20/2016","Units Sold":"583","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"389601.41","Total Cost":"292980.82","Total Profit":"96620.59"},{"Region":"Europe","Country":"Albania","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/15/2012","Order ID":"705456006","Ship Date":"9/21/2012","Units Sold":"8964","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3919060.80","Total Cost":"2360490.12","Total Profit":"1558570.68"},{"Region":"Asia","Country":"Maldives","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/24/2010","Order ID":"204459273","Ship Date":"4/14/2010","Units Sold":"2897","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"595912.90","Total Cost":"339267.67","Total Profit":"256645.23"},{"Region":"Asia","Country":"Japan","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/8/2011","Order ID":"938724076","Ship Date":"6/11/2011","Units Sold":"8170","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"387666.50","Total Cost":"259724.30","Total Profit":"127942.20"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/17/2015","Order ID":"936424243","Ship Date":"4/17/2015","Units Sold":"7598","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3205520.22","Total Cost":"2770914.62","Total Profit":"434605.60"},{"Region":"Europe","Country":"Lithuania","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/7/2014","Order ID":"546046102","Ship Date":"8/3/2014","Units Sold":"6031","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"56269.23","Total Cost":"41734.52","Total Profit":"14534.71"},{"Region":"Europe","Country":"Sweden","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/28/2014","Order ID":"186388480","Ship Date":"6/26/2014","Units Sold":"5348","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1365237.44","Total Cost":"852578.16","Total Profit":"512659.28"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"7/5/2013","Order ID":"796562707","Ship Date":"7/8/2013","Units Sold":"9461","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1443559.38","Total Cost":"921879.84","Total Profit":"521679.54"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/21/2015","Order ID":"685992610","Ship Date":"4/29/2015","Units Sold":"9312","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1434606.72","Total Cost":"846740.16","Total Profit":"587866.56"},{"Region":"Europe","Country":"Iceland","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"10/5/2016","Order ID":"484414517","Ship Date":"10/19/2016","Units Sold":"7875","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5262626.25","Total Cost":"3957502.50","Total Profit":"1305123.75"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"2/19/2012","Order ID":"891877257","Ship Date":"3/18/2012","Units Sold":"5155","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1060383.50","Total Cost":"603702.05","Total Profit":"456681.45"},{"Region":"Europe","Country":"Estonia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/19/2011","Order ID":"428742158","Ship Date":"12/12/2011","Units Sold":"3187","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2129776.49","Total Cost":"1601594.98","Total Profit":"528181.51"},{"Region":"Asia","Country":"China","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"3/3/2016","Order ID":"385683047","Ship Date":"3/10/2016","Units Sold":"1039","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"438343.71","Total Cost":"378912.91","Total Profit":"59430.80"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/1/2011","Order ID":"773686254","Ship Date":"2/6/2011","Units Sold":"9810","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4138740.90","Total Cost":"3577608.90","Total Profit":"561132.00"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"4/13/2010","Order ID":"774050605","Ship Date":"5/11/2010","Units Sold":"7630","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5098900.10","Total Cost":"3834380.20","Total Profit":"1264519.90"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/2/2013","Order ID":"988387429","Ship Date":"6/21/2013","Units Sold":"4659","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"380780.07","Total Cost":"264025.53","Total Profit":"116754.54"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/5/2017","Order ID":"288620555","Ship Date":"3/12/2017","Units Sold":"8091","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"75489.03","Total Cost":"55989.72","Total Profit":"19499.31"},{"Region":"Europe","Country":"Romania","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"12/2/2011","Order ID":"766986310","Ship Date":"12/9/2011","Units Sold":"7148","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1470343.60","Total Cost":"837102.28","Total Profit":"633241.32"},{"Region":"Europe","Country":"Croatia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/16/2015","Order ID":"986033523","Ship Date":"10/21/2015","Units Sold":"8086","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1233761.88","Total Cost":"787899.84","Total Profit":"445862.04"},{"Region":"Europe","Country":"Moldova ","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"2/26/2017","Order ID":"928623521","Ship Date":"4/10/2017","Units Sold":"9191","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"436112.95","Total Cost":"292181.89","Total Profit":"143931.06"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"5/18/2017","Order ID":"647930133","Ship Date":"7/5/2017","Units Sold":"5780","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"631638.40","Total Cost":"207155.20","Total Profit":"424483.20"},{"Region":"Europe","Country":"Latvia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/23/2010","Order ID":"717439687","Ship Date":"1/22/2011","Units Sold":"5201","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"425077.73","Total Cost":"294740.67","Total Profit":"130337.06"},{"Region":"Europe","Country":"Norway","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/22/2012","Order ID":"880951011","Ship Date":"7/29/2012","Units Sold":"1836","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"87118.20","Total Cost":"58366.44","Total Profit":"28751.76"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"1/23/2015","Order ID":"502575433","Ship Date":"2/1/2015","Units Sold":"2094","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1399357.38","Total Cost":"1052318.76","Total Profit":"347038.62"},{"Region":"Asia","Country":"Thailand","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"4/18/2016","Order ID":"816736781","Ship Date":"4/24/2016","Units Sold":"9418","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4117549.60","Total Cost":"2480041.94","Total Profit":"1637507.66"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"2/15/2015","Order ID":"878171384","Ship Date":"3/17/2015","Units Sold":"9282","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"86601.06","Total Cost":"64231.44","Total Profit":"22369.62"},{"Region":"Asia","Country":"China","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"4/7/2015","Order ID":"711928069","Ship Date":"4/9/2015","Units Sold":"4191","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1069878.48","Total Cost":"668129.22","Total Profit":"401749.26"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"12/1/2013","Order ID":"863368165","Ship Date":"12/7/2013","Units Sold":"8681","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"80993.73","Total Cost":"60072.52","Total Profit":"20921.21"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/23/2013","Order ID":"148165500","Ship Date":"3/11/2013","Units Sold":"4319","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"471980.32","Total Cost":"154792.96","Total Profit":"317187.36"},{"Region":"Asia","Country":"South Korea","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/31/2016","Order ID":"602306401","Ship Date":"2/15/2016","Units Sold":"4704","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"43888.32","Total Cost":"32551.68","Total Profit":"11336.64"},{"Region":"Europe","Country":"Netherlands","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/19/2015","Order ID":"732089698","Ship Date":"8/17/2015","Units Sold":"465","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"302812.65","Total Cost":"244106.40","Total Profit":"58706.25"},{"Region":"Asia","Country":"North Korea","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/4/2013","Order ID":"464126718","Ship Date":"2/17/2013","Units Sold":"4265","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"466079.20","Total Cost":"152857.60","Total Profit":"313221.60"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/17/2014","Order ID":"695341289","Ship Date":"11/22/2014","Units Sold":"5794","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"633168.32","Total Cost":"207656.96","Total Profit":"425511.36"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/18/2013","Order ID":"142969739","Ship Date":"4/3/2013","Units Sold":"6778","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1034187.24","Total Cost":"660448.32","Total Profit":"373738.92"},{"Region":"Asia","Country":"Tajikistan","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"9/11/2012","Order ID":"294560897","Ship Date":"10/25/2012","Units Sold":"5970","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"919738.20","Total Cost":"542852.10","Total Profit":"376886.10"},{"Region":"Asia","Country":"Brunei","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/20/2011","Order ID":"457976090","Ship Date":"9/17/2011","Units Sold":"4157","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2707079.97","Total Cost":"2182258.72","Total Profit":"524821.25"},{"Region":"Europe","Country":"Vatican City","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"12/13/2012","Order ID":"911389148","Ship Date":"1/5/2013","Units Sold":"9157","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5963129.97","Total Cost":"4807058.72","Total Profit":"1156071.25"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/23/2013","Order ID":"653286397","Ship Date":"3/17/2013","Units Sold":"817","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"7622.61","Total Cost":"5653.64","Total Profit":"1968.97"},{"Region":"Europe","Country":"Portugal","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"7/29/2013","Order ID":"552466666","Ship Date":"8/3/2013","Units Sold":"6018","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1536275.04","Total Cost":"959389.56","Total Profit":"576885.48"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/24/2016","Order ID":"198041284","Ship Date":"9/9/2016","Units Sold":"3672","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"300112.56","Total Cost":"208092.24","Total Profit":"92020.32"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"6/25/2014","Order ID":"149434077","Ship Date":"7/31/2014","Units Sold":"9719","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"461166.55","Total Cost":"308967.01","Total Profit":"152199.54"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"5/31/2015","Order ID":"586381375","Ship Date":"6/10/2015","Units Sold":"2134","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1426088.18","Total Cost":"1072420.36","Total Profit":"353667.82"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"6/22/2017","Order ID":"858932006","Ship Date":"7/14/2017","Units Sold":"5923","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"484086.79","Total Cost":"335656.41","Total Profit":"148430.38"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/12/2012","Order ID":"837447297","Ship Date":"3/30/2012","Units Sold":"8120","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1250967.20","Total Cost":"738351.60","Total Profit":"512615.60"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/7/2011","Order ID":"462601077","Ship Date":"3/12/2011","Units Sold":"2794","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1819480.74","Total Cost":"1466738.24","Total Profit":"352742.50"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"8/23/2011","Order ID":"195379674","Ship Date":"9/6/2011","Units Sold":"6042","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"930830.52","Total Cost":"549399.06","Total Profit":"381431.46"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"2/9/2016","Order ID":"567081916","Ship Date":"2/9/2016","Units Sold":"996","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"648605.16","Total Cost":"522860.16","Total Profit":"125745.00"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/18/2012","Order ID":"829319131","Ship Date":"10/28/2012","Units Sold":"2815","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"133571.75","Total Cost":"89488.85","Total Profit":"44082.90"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"4/2/2017","Order ID":"304015147","Ship Date":"4/22/2017","Units Sold":"3693","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"34455.69","Total Cost":"25555.56","Total Profit":"8900.13"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"4/10/2016","Order ID":"633406293","Ship Date":"5/24/2016","Units Sold":"7853","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5113952.13","Total Cost":"4122510.88","Total Profit":"991441.25"},{"Region":"Europe","Country":"Slovenia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"5/5/2016","Order ID":"830041396","Ship Date":"6/23/2016","Units Sold":"6549","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"535249.77","Total Cost":"371131.83","Total Profit":"164117.94"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"7/1/2017","Order ID":"426781785","Ship Date":"8/10/2017","Units Sold":"3069","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"250829.37","Total Cost":"173920.23","Total Profit":"76909.14"},{"Region":"Asia","Country":"North Korea","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"1/27/2017","Order ID":"826801288","Ship Date":"2/2/2017","Units Sold":"7729","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"631691.17","Total Cost":"438002.43","Total Profit":"193688.74"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/16/2013","Order ID":"353586232","Ship Date":"6/20/2013","Units Sold":"2878","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1258261.60","Total Cost":"757863.74","Total Profit":"500397.86"},{"Region":"North America","Country":"Greenland","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/19/2017","Order ID":"100935447","Ship Date":"7/14/2017","Units Sold":"7897","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1216611.82","Total Cost":"718074.21","Total Profit":"498537.61"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"9/8/2010","Order ID":"782960259","Ship Date":"10/4/2010","Units Sold":"4195","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"342857.35","Total Cost":"237730.65","Total Profit":"105126.70"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"6/5/2017","Order ID":"484084498","Ship Date":"7/25/2017","Units Sold":"215","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"17571.95","Total Cost":"12184.05","Total Profit":"5387.90"},{"Region":"Europe","Country":"Netherlands","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"1/18/2010","Order ID":"509044492","Ship Date":"1/22/2010","Units Sold":"6432","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"981394.56","Total Cost":"626734.08","Total Profit":"354660.48"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/12/2011","Order ID":"432889068","Ship Date":"4/18/2011","Units Sold":"350","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"16607.50","Total Cost":"11126.50","Total Profit":"5481.00"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"4/16/2014","Order ID":"350979554","Ship Date":"4/21/2014","Units Sold":"1504","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"383941.12","Total Cost":"239767.68","Total Profit":"144173.44"},{"Region":"Asia","Country":"Taiwan","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/13/2010","Order ID":"428989779","Ship Date":"1/20/2010","Units Sold":"6464","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"528302.72","Total Cost":"366314.88","Total Profit":"161987.84"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"11/29/2012","Order ID":"452906072","Ship Date":"12/2/2012","Units Sold":"3826","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2556801.02","Total Cost":"1922718.04","Total Profit":"634082.98"},{"Region":"Asia","Country":"Philippines","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/19/2011","Order ID":"279027259","Ship Date":"1/31/2012","Units Sold":"9221","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"753632.33","Total Cost":"522554.07","Total Profit":"231078.26"},{"Region":"Europe","Country":"Croatia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"6/14/2012","Order ID":"283964669","Ship Date":"7/21/2012","Units Sold":"311","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"135969.20","Total Cost":"81895.63","Total Profit":"54073.57"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"11/25/2016","Order ID":"914642131","Ship Date":"1/2/2017","Units Sold":"1787","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1194198.49","Total Cost":"898038.98","Total Profit":"296159.51"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"10/7/2013","Order ID":"438295972","Ship Date":"10/14/2013","Units Sold":"373","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"40761.44","Total Cost":"13368.32","Total Profit":"27393.12"},{"Region":"Europe","Country":"Monaco","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"7/1/2011","Order ID":"792475020","Ship Date":"8/20/2011","Units Sold":"9824","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4144647.36","Total Cost":"3582714.56","Total Profit":"561932.80"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"1/13/2012","Order ID":"835040605","Ship Date":"2/10/2012","Units Sold":"5926","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"912959.56","Total Cost":"538851.18","Total Profit":"374108.38"},{"Region":"Europe","Country":"Italy","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/7/2014","Order ID":"394166553","Ship Date":"9/24/2014","Units Sold":"1497","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"654488.40","Total Cost":"394205.01","Total Profit":"260283.39"},{"Region":"Asia","Country":"Cambodia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/26/2011","Order ID":"718339192","Ship Date":"12/21/2011","Units Sold":"1385","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"584317.65","Total Cost":"505095.65","Total Profit":"79222.00"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"8/25/2016","Order ID":"426357352","Ship Date":"9/9/2016","Units Sold":"7470","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1139772.60","Total Cost":"727876.80","Total Profit":"411895.80"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/30/2012","Order ID":"457332360","Ship Date":"6/6/2012","Units Sold":"3663","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"299376.99","Total Cost":"207582.21","Total Profit":"91794.78"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/25/2017","Order ID":"920688045","Ship Date":"9/9/2017","Units Sold":"907","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"8462.31","Total Cost":"6276.44","Total Profit":"2185.87"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"3/7/2014","Order ID":"646160733","Ship Date":"3/20/2014","Units Sold":"2175","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"103203.75","Total Cost":"69143.25","Total Profit":"34060.50"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/28/2011","Order ID":"333799254","Ship Date":"9/14/2011","Units Sold":"7472","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"354546.40","Total Cost":"237534.88","Total Profit":"117011.52"},{"Region":"Europe","Country":"Malta","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/17/2012","Order ID":"303964936","Ship Date":"9/6/2012","Units Sold":"8834","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"82421.22","Total Cost":"61131.28","Total Profit":"21289.94"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"7/7/2017","Order ID":"947331607","Ship Date":"8/16/2017","Units Sold":"5329","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2329838.80","Total Cost":"1403285.57","Total Profit":"926553.23"},{"Region":"Asia","Country":"Myanmar","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"4/26/2012","Order ID":"474885594","Ship Date":"5/27/2012","Units Sold":"8055","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1240953.30","Total Cost":"732441.15","Total Profit":"508512.15"},{"Region":"Europe","Country":"Vatican City","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"9/10/2010","Order ID":"767925727","Ship Date":"9/15/2010","Units Sold":"5142","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"243987.90","Total Cost":"163464.18","Total Profit":"80523.72"},{"Region":"Europe","Country":"Serbia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/20/2012","Order ID":"628063333","Ship Date":"4/26/2012","Units Sold":"6752","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"551840.96","Total Cost":"382635.84","Total Profit":"169205.12"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"9/27/2013","Order ID":"727222239","Ship Date":"11/4/2013","Units Sold":"76","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"15633.20","Total Cost":"8900.36","Total Profit":"6732.84"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"3/7/2013","Order ID":"457638776","Ship Date":"4/12/2013","Units Sold":"4338","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1107404.64","Total Cost":"691563.96","Total Profit":"415840.68"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"4/23/2013","Order ID":"181861770","Ship Date":"6/8/2013","Units Sold":"5794","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1191825.80","Total Cost":"678535.34","Total Profit":"513290.46"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/21/2010","Order ID":"782752549","Ship Date":"7/4/2010","Units Sold":"2729","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1823708.83","Total Cost":"1371431.66","Total Profit":"452277.17"},{"Region":"North America","Country":"Mexico","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/6/2013","Order ID":"513484942","Ship Date":"3/25/2013","Units Sold":"460","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"4291.80","Total Cost":"3183.20","Total Profit":"1108.60"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"1/21/2016","Order ID":"847545278","Ship Date":"2/25/2016","Units Sold":"6337","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1303520.90","Total Cost":"742126.07","Total Profit":"561394.83"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/18/2011","Order ID":"628732383","Ship Date":"3/15/2011","Units Sold":"4739","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"387318.47","Total Cost":"268559.13","Total Profit":"118759.34"},{"Region":"Asia","Country":"Maldives","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/1/2014","Order ID":"121157586","Ship Date":"2/20/2014","Units Sold":"2077","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"226974.56","Total Cost":"74439.68","Total Profit":"152534.88"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"11/21/2014","Order ID":"559244716","Ship Date":"12/16/2014","Units Sold":"1794","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"273728.52","Total Cost":"174807.36","Total Profit":"98921.16"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/29/2012","Order ID":"997730100","Ship Date":"10/5/2012","Units Sold":"9363","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1428606.54","Total Cost":"912330.72","Total Profit":"516275.82"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"1/12/2011","Order ID":"561662566","Ship Date":"1/16/2011","Units Sold":"7290","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4871688.30","Total Cost":"3663516.60","Total Profit":"1208171.70"},{"Region":"Europe","Country":"Malta","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/12/2014","Order ID":"696403443","Ship Date":"10/23/2014","Units Sold":"109","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"22421.30","Total Cost":"12764.99","Total Profit":"9656.31"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"10/28/2010","Order ID":"217626559","Ship Date":"11/28/2010","Units Sold":"9390","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4105308.00","Total Cost":"2472668.70","Total Profit":"1632639.30"},{"Region":"Europe","Country":"Croatia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"6/7/2017","Order ID":"261318242","Ship Date":"7/26/2017","Units Sold":"8730","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1344943.80","Total Cost":"793818.90","Total Profit":"551124.90"},{"Region":"Asia","Country":"Cambodia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"4/16/2012","Order ID":"233777320","Ship Date":"5/25/2012","Units Sold":"8759","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3695334.51","Total Cost":"3194319.71","Total Profit":"501014.80"},{"Region":"Europe","Country":"Finland","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/4/2012","Order ID":"961615121","Ship Date":"2/11/2012","Units Sold":"2138","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"545788.64","Total Cost":"340839.96","Total Profit":"204948.68"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/4/2015","Order ID":"641755473","Ship Date":"5/25/2015","Units Sold":"8561","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5575008.81","Total Cost":"4494182.56","Total Profit":"1080826.25"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"7/8/2014","Order ID":"691434705","Ship Date":"8/6/2014","Units Sold":"9749","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2488724.72","Total Cost":"1554185.58","Total Profit":"934539.14"},{"Region":"Asia","Country":"Brunei","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"3/15/2014","Order ID":"798201644","Ship Date":"4/21/2014","Units Sold":"4459","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"686953.54","Total Cost":"405456.87","Total Profit":"281496.67"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/21/2012","Order ID":"269917619","Ship Date":"8/26/2012","Units Sold":"3476","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1466489.64","Total Cost":"1267662.44","Total Profit":"198827.20"},{"Region":"Europe","Country":"Switzerland","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"7/30/2012","Order ID":"284756457","Ship Date":"8/3/2012","Units Sold":"4618","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"504655.04","Total Cost":"165509.12","Total Profit":"339145.92"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"10/9/2010","Order ID":"741204488","Ship Date":"11/13/2010","Units Sold":"7734","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1974335.52","Total Cost":"1232954.28","Total Profit":"741381.24"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/22/2016","Order ID":"708060538","Ship Date":"1/28/2016","Units Sold":"9703","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4093598.67","Total Cost":"3538587.07","Total Profit":"555011.60"},{"Region":"North America","Country":"Canada","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/15/2015","Order ID":"674435937","Ship Date":"9/28/2015","Units Sold":"9436","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"447738.20","Total Cost":"299970.44","Total Profit":"147767.76"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/23/2016","Order ID":"299754512","Ship Date":"1/30/2017","Units Sold":"2876","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1872879.96","Total Cost":"1509784.96","Total Profit":"363095.00"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/24/2013","Order ID":"663752591","Ship Date":"2/17/2013","Units Sold":"7997","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3373854.33","Total Cost":"2916425.93","Total Profit":"457428.40"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/22/2017","Order ID":"216479003","Ship Date":"2/27/2017","Units Sold":"9802","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2502254.56","Total Cost":"1562634.84","Total Profit":"939619.72"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/6/2013","Order ID":"628295075","Ship Date":"4/4/2013","Units Sold":"5330","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2248673.70","Total Cost":"1943797.70","Total Profit":"304876.00"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"9/6/2012","Order ID":"939874637","Ship Date":"10/6/2012","Units Sold":"8646","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5777862.42","Total Cost":"4344960.84","Total Profit":"1432901.58"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"2/10/2013","Order ID":"712204015","Ship Date":"2/15/2013","Units Sold":"5850","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"639288.00","Total Cost":"209664.00","Total Profit":"429624.00"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/3/2016","Order ID":"476582038","Ship Date":"11/14/2016","Units Sold":"71","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"662.43","Total Cost":"491.32","Total Profit":"171.11"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/1/2011","Order ID":"384620034","Ship Date":"12/12/2011","Units Sold":"6470","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4213328.70","Total Cost":"3396491.20","Total Profit":"816837.50"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"2/16/2014","Order ID":"658241832","Ship Date":"3/26/2014","Units Sold":"7240","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4838274.80","Total Cost":"3638389.60","Total Profit":"1199885.20"},{"Region":"Europe","Country":"Kosovo","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/15/2010","Order ID":"239683759","Ship Date":"4/20/2010","Units Sold":"6605","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"313407.25","Total Cost":"209972.95","Total Profit":"103434.30"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/7/2014","Order ID":"841494643","Ship Date":"3/30/2014","Units Sold":"5820","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"896629.20","Total Cost":"529212.60","Total Profit":"367416.60"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/19/2010","Order ID":"196535813","Ship Date":"12/23/2010","Units Sold":"8169","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"387619.05","Total Cost":"259692.51","Total Profit":"127926.54"},{"Region":"Europe","Country":"Belgium","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/12/2013","Order ID":"607981097","Ship Date":"1/31/2013","Units Sold":"3972","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2654368.44","Total Cost":"1996088.88","Total Profit":"658279.56"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/14/2011","Order ID":"399316823","Ship Date":"4/6/2011","Units Sold":"5576","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"52024.08","Total Cost":"38585.92","Total Profit":"13438.16"},{"Region":"Europe","Country":"Switzerland","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"4/12/2016","Order ID":"664341819","Ship Date":"4/19/2016","Units Sold":"2362","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"193046.26","Total Cost":"133854.54","Total Profit":"59191.72"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"6/8/2017","Order ID":"317167413","Ship Date":"7/8/2017","Units Sold":"5740","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"53554.20","Total Cost":"39720.80","Total Profit":"13833.40"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/4/2016","Order ID":"142217433","Ship Date":"5/7/2016","Units Sold":"4154","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"197107.30","Total Cost":"132055.66","Total Profit":"65051.64"},{"Region":"Asia","Country":"Japan","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/24/2015","Order ID":"544228208","Ship Date":"6/19/2015","Units Sold":"8075","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2061386.00","Total Cost":"1287316.50","Total Profit":"774069.50"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"10/9/2014","Order ID":"198248565","Ship Date":"10/11/2014","Units Sold":"5011","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2190809.20","Total Cost":"1319546.63","Total Profit":"871262.57"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/23/2015","Order ID":"999639832","Ship Date":"6/16/2015","Units Sold":"4496","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1896817.44","Total Cost":"1639646.24","Total Profit":"257171.20"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/9/2015","Order ID":"414075839","Ship Date":"8/15/2015","Units Sold":"3097","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"253117.81","Total Cost":"175506.99","Total Profit":"77610.82"},{"Region":"Asia","Country":"Nepal","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"7/2/2014","Order ID":"927542912","Ship Date":"7/2/2014","Units Sold":"9415","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6131142.15","Total Cost":"4942498.40","Total Profit":"1188643.75"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/8/2016","Order ID":"596339881","Ship Date":"7/24/2016","Units Sold":"9078","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"84697.74","Total Cost":"62819.76","Total Profit":"21877.98"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/8/2011","Order ID":"697078073","Ship Date":"10/23/2011","Units Sold":"9747","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2488214.16","Total Cost":"1553866.74","Total Profit":"934347.42"},{"Region":"Asia","Country":"Philippines","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/9/2010","Order ID":"776681315","Ship Date":"3/18/2010","Units Sold":"6116","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"290204.20","Total Cost":"194427.64","Total Profit":"95776.56"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/20/2015","Order ID":"902385938","Ship Date":"5/26/2015","Units Sold":"4907","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"401049.11","Total Cost":"278079.69","Total Profit":"122969.42"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"3/29/2013","Order ID":"311740767","Ship Date":"4/4/2013","Units Sold":"9876","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"2031493.20","Total Cost":"1156578.36","Total Profit":"874914.84"},{"Region":"Europe","Country":"Switzerland","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"3/12/2013","Order ID":"562607133","Ship Date":"3/12/2013","Units Sold":"6808","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1737946.24","Total Cost":"1085331.36","Total Profit":"652614.88"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/18/2014","Order ID":"583158862","Ship Date":"7/31/2014","Units Sold":"8521","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1752769.70","Total Cost":"997894.31","Total Profit":"754875.39"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/2/2017","Order ID":"721882283","Ship Date":"5/2/2017","Units Sold":"9864","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1505049.12","Total Cost":"961148.16","Total Profit":"543900.96"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/18/2011","Order ID":"497576224","Ship Date":"11/17/2011","Units Sold":"2717","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"128921.65","Total Cost":"86373.43","Total Profit":"42548.22"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/17/2011","Order ID":"849352014","Ship Date":"10/4/2011","Units Sold":"990","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"80912.70","Total Cost":"56103.30","Total Profit":"24809.40"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"9/22/2012","Order ID":"986633479","Ship Date":"10/3/2012","Units Sold":"5627","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"866895.62","Total Cost":"511663.11","Total Profit":"355232.51"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/26/2012","Order ID":"639156949","Ship Date":"3/8/2012","Units Sold":"9600","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1478976.00","Total Cost":"872928.00","Total Profit":"606048.00"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/25/2011","Order ID":"506971251","Ship Date":"8/10/2011","Units Sold":"2914","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"138269.30","Total Cost":"92636.06","Total Profit":"45633.24"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"11/4/2013","Order ID":"910437715","Ship Date":"12/20/2013","Units Sold":"7607","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1564759.90","Total Cost":"890855.77","Total Profit":"673904.13"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/4/2011","Order ID":"440230166","Ship Date":"10/5/2011","Units Sold":"2744","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"130202.80","Total Cost":"87231.76","Total Profit":"42971.04"},{"Region":"Central America and the Caribbean","Country":"Saint Lucia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"1/9/2014","Order ID":"907334935","Ship Date":"2/14/2014","Units Sold":"9425","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1452015.50","Total Cost":"857015.25","Total Profit":"595000.25"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/31/2011","Order ID":"593050849","Ship Date":"8/11/2011","Units Sold":"5780","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3763993.80","Total Cost":"3034268.80","Total Profit":"729725.00"},{"Region":"Asia","Country":"Malaysia","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"7/28/2011","Order ID":"998989236","Ship Date":"7/29/2011","Units Sold":"1970","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1316491.90","Total Cost":"990003.80","Total Profit":"326488.10"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"11/7/2010","Order ID":"997073924","Ship Date":"11/26/2010","Units Sold":"5186","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1066760.20","Total Cost":"607332.46","Total Profit":"459427.74"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"11/30/2014","Order ID":"879541242","Ship Date":"1/11/2015","Units Sold":"4654","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"957327.80","Total Cost":"545029.94","Total Profit":"412297.86"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/20/2011","Order ID":"108940017","Ship Date":"6/23/2011","Units Sold":"6627","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2795865.03","Total Cost":"2416800.63","Total Profit":"379064.40"},{"Region":"Europe","Country":"Moldova ","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"8/31/2011","Order ID":"468131577","Ship Date":"9/22/2011","Units Sold":"9392","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"767608.16","Total Cost":"532244.64","Total Profit":"235363.52"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/13/2016","Order ID":"210289752","Ship Date":"12/7/2016","Units Sold":"8266","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"392221.70","Total Cost":"262776.14","Total Profit":"129445.56"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"1/12/2014","Order ID":"808900868","Ship Date":"1/30/2014","Units Sold":"597","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"65240.16","Total Cost":"21396.48","Total Profit":"43843.68"},{"Region":"Europe","Country":"Kosovo","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"3/8/2010","Order ID":"207763755","Ship Date":"3/30/2010","Units Sold":"767","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"499478.07","Total Cost":"402644.32","Total Profit":"96833.75"},{"Region":"Asia","Country":"North Korea","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"6/1/2013","Order ID":"470989739","Ship Date":"6/18/2013","Units Sold":"5185","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1323626.80","Total Cost":"826592.70","Total Profit":"497034.10"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"12/15/2013","Order ID":"133002650","Ship Date":"1/7/2014","Units Sold":"7295","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"797197.60","Total Cost":"261452.80","Total Profit":"535744.80"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"9/1/2010","Order ID":"948538815","Ship Date":"9/22/2010","Units Sold":"2569","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1083835.41","Total Cost":"936888.61","Total Profit":"146946.80"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/4/2014","Order ID":"242647063","Ship Date":"12/8/2014","Units Sold":"3513","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2287700.73","Total Cost":"1844184.48","Total Profit":"443516.25"},{"Region":"Europe","Country":"Estonia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"2/12/2016","Order ID":"360688722","Ship Date":"3/27/2016","Units Sold":"4663","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2038663.60","Total Cost":"1227907.79","Total Profit":"810755.81"},{"Region":"Europe","Country":"Finland","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/18/2016","Order ID":"118337619","Ship Date":"8/11/2016","Units Sold":"7586","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"828998.08","Total Cost":"271882.24","Total Profit":"557115.84"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"9/7/2011","Order ID":"651580083","Ship Date":"9/17/2011","Units Sold":"5881","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3930095.87","Total Cost":"2955437.74","Total Profit":"974658.13"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/29/2017","Order ID":"466714942","Ship Date":"2/24/2017","Units Sold":"178","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"19451.84","Total Cost":"6379.52","Total Profit":"13072.32"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/26/2011","Order ID":"390353524","Ship Date":"7/5/2011","Units Sold":"3137","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"483286.22","Total Cost":"285247.41","Total Profit":"198038.81"},{"Region":"Europe","Country":"Russia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"5/10/2016","Order ID":"419419658","Ship Date":"6/14/2016","Units Sold":"4452","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1946414.40","Total Cost":"1172345.16","Total Profit":"774069.24"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"5/15/2016","Order ID":"171149671","Ship Date":"6/26/2016","Units Sold":"5846","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3806973.66","Total Cost":"3068916.16","Total Profit":"738057.50"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"3/7/2016","Order ID":"233092391","Ship Date":"3/14/2016","Units Sold":"6073","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"496346.29","Total Cost":"344156.91","Total Profit":"152189.38"},{"Region":"North America","Country":"Mexico","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"12/13/2013","Order ID":"813109147","Ship Date":"1/4/2014","Units Sold":"5921","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"647046.88","Total Cost":"212208.64","Total Profit":"434838.24"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/5/2012","Order ID":"389373767","Ship Date":"9/18/2012","Units Sold":"3205","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"29902.65","Total Cost":"22178.60","Total Profit":"7724.05"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"6/10/2016","Order ID":"660372579","Ship Date":"7/4/2016","Units Sold":"7776","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1985057.28","Total Cost":"1239649.92","Total Profit":"745407.36"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/10/2011","Order ID":"694904410","Ship Date":"7/15/2011","Units Sold":"6512","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2847046.40","Total Cost":"1714804.96","Total Profit":"1132241.44"},{"Region":"Europe","Country":"Albania","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"3/28/2015","Order ID":"982080590","Ship Date":"5/6/2015","Units Sold":"8326","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3512656.14","Total Cost":"3036408.94","Total Profit":"476247.20"},{"Region":"Asia","Country":"Brunei","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/17/2012","Order ID":"281324946","Ship Date":"6/3/2012","Units Sold":"9158","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1883800.60","Total Cost":"1072493.38","Total Profit":"811307.22"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"3/11/2011","Order ID":"572373807","Ship Date":"3/27/2011","Units Sold":"6984","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2946479.76","Total Cost":"2546994.96","Total Profit":"399484.80"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"4/16/2017","Order ID":"305276000","Ship Date":"5/3/2017","Units Sold":"6807","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4548913.89","Total Cost":"3420789.78","Total Profit":"1128124.11"},{"Region":"Europe","Country":"Belarus","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/19/2014","Order ID":"250392854","Ship Date":"9/7/2014","Units Sold":"5665","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"268804.25","Total Cost":"180090.35","Total Profit":"88713.90"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"9/26/2014","Order ID":"348398196","Ship Date":"9/30/2014","Units Sold":"7623","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1945999.44","Total Cost":"1215258.66","Total Profit":"730740.78"},{"Region":"Asia","Country":"Malaysia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"1/20/2015","Order ID":"160278356","Ship Date":"2/13/2015","Units Sold":"8782","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1352954.92","Total Cost":"798547.26","Total Profit":"554407.66"},{"Region":"Europe","Country":"Serbia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/22/2010","Order ID":"217332160","Ship Date":"5/4/2010","Units Sold":"2271","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"349870.26","Total Cost":"206502.03","Total Profit":"143368.23"},{"Region":"Asia","Country":"Cambodia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/5/2011","Order ID":"671170938","Ship Date":"6/24/2011","Units Sold":"3250","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1420900.00","Total Cost":"855822.50","Total Profit":"565077.50"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"6/24/2011","Order ID":"843718516","Ship Date":"7/27/2011","Units Sold":"3913","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"36508.29","Total Cost":"27077.96","Total Profit":"9430.33"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/4/2012","Order ID":"577211225","Ship Date":"3/9/2012","Units Sold":"8483","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"693315.59","Total Cost":"480731.61","Total Profit":"212583.98"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/28/2012","Order ID":"684197890","Ship Date":"7/24/2012","Units Sold":"8215","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1265602.90","Total Cost":"746989.95","Total Profit":"518612.95"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"6/24/2012","Order ID":"697539842","Ship Date":"8/11/2012","Units Sold":"6395","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2697986.55","Total Cost":"2332192.55","Total Profit":"365794.00"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/14/2017","Order ID":"220410907","Ship Date":"1/24/2017","Units Sold":"3340","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"158483.00","Total Cost":"106178.60","Total Profit":"52304.40"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/26/2016","Order ID":"276297414","Ship Date":"1/15/2017","Units Sold":"1400","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"590646.00","Total Cost":"510566.00","Total Profit":"80080.00"},{"Region":"North America","Country":"Mexico","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/26/2015","Order ID":"158998191","Ship Date":"8/13/2015","Units Sold":"9953","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2540801.84","Total Cost":"1586707.26","Total Profit":"954094.58"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/31/2017","Order ID":"582624566","Ship Date":"2/12/2017","Units Sold":"411","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"84542.70","Total Cost":"48132.21","Total Profit":"36410.49"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"7/24/2015","Order ID":"531600368","Ship Date":"9/7/2015","Units Sold":"1217","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"792522.57","Total Cost":"638876.32","Total Profit":"153646.25"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/21/2013","Order ID":"410661923","Ship Date":"9/14/2013","Units Sold":"2844","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"438146.64","Total Cost":"258604.92","Total Profit":"179541.72"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"4/1/2011","Order ID":"694858062","Ship Date":"5/18/2011","Units Sold":"2797","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1180026.33","Total Cost":"1020037.93","Total Profit":"159988.40"},{"Region":"Europe","Country":"Netherlands","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"12/17/2016","Order ID":"579550111","Ship Date":"1/6/2017","Units Sold":"612","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"267566.40","Total Cost":"161157.96","Total Profit":"106408.44"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"11/26/2013","Order ID":"230411899","Ship Date":"1/9/2014","Units Sold":"2856","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"312103.68","Total Cost":"102359.04","Total Profit":"209744.64"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"7/23/2016","Order ID":"333429753","Ship Date":"8/18/2016","Units Sold":"8128","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"75834.24","Total Cost":"56245.76","Total Profit":"19588.48"},{"Region":"Europe","Country":"Hungary","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"12/21/2013","Order ID":"744902503","Ship Date":"1/8/2014","Units Sold":"2059","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"423536.30","Total Cost":"241129.49","Total Profit":"182406.81"},{"Region":"Asia","Country":"China","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/25/2011","Order ID":"941441476","Ship Date":"6/25/2011","Units Sold":"2308","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"589186.24","Total Cost":"367941.36","Total Profit":"221244.88"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/13/2011","Order ID":"469970500","Ship Date":"5/27/2011","Units Sold":"3570","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"33308.10","Total Cost":"24704.40","Total Profit":"8603.70"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/22/2017","Order ID":"297725903","Ship Date":"7/26/2017","Units Sold":"2566","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"209719.18","Total Cost":"145415.22","Total Profit":"64303.96"},{"Region":"Europe","Country":"Estonia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/16/2015","Order ID":"562256515","Ship Date":"7/27/2015","Units Sold":"3052","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"465674.16","Total Cost":"297386.88","Total Profit":"168287.28"},{"Region":"Europe","Country":"Estonia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/29/2014","Order ID":"121423661","Ship Date":"10/29/2014","Units Sold":"815","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"124352.70","Total Cost":"79413.60","Total Profit":"44939.10"},{"Region":"Europe","Country":"Serbia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/20/2014","Order ID":"603401172","Ship Date":"11/5/2014","Units Sold":"8670","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3790524.00","Total Cost":"2283071.10","Total Profit":"1507452.90"},{"Region":"Europe","Country":"Moldova ","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"9/1/2015","Order ID":"556675374","Ship Date":"9/6/2015","Units Sold":"1469","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"956627.49","Total Cost":"771166.24","Total Profit":"185461.25"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"12/27/2014","Order ID":"400045096","Ship Date":"1/19/2015","Units Sold":"1089","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"476110.80","Total Cost":"286766.37","Total Profit":"189344.43"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"5/24/2011","Order ID":"172621667","Ship Date":"6/30/2011","Units Sold":"1442","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"157581.76","Total Cost":"51681.28","Total Profit":"105900.48"},{"Region":"Europe","Country":"Romania","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/7/2015","Order ID":"883828914","Ship Date":"12/12/2015","Units Sold":"3471","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2319565.17","Total Cost":"1744316.34","Total Profit":"575248.83"},{"Region":"Europe","Country":"Russia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/7/2010","Order ID":"463403165","Ship Date":"7/25/2010","Units Sold":"149","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"38036.72","Total Cost":"23753.58","Total Profit":"14283.14"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"11/11/2011","Order ID":"511393249","Ship Date":"12/2/2011","Units Sold":"1481","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"647493.20","Total Cost":"389991.73","Total Profit":"257501.47"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"7/15/2015","Order ID":"448160493","Ship Date":"9/3/2015","Units Sold":"9504","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1954972.80","Total Cost":"1113013.44","Total Profit":"841959.36"},{"Region":"Europe","Country":"Russia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/18/2014","Order ID":"664378726","Ship Date":"2/28/2014","Units Sold":"3284","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"155825.80","Total Cost":"104398.36","Total Profit":"51427.44"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/15/2016","Order ID":"271034276","Ship Date":"4/2/2016","Units Sold":"3920","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"320381.60","Total Cost":"222146.40","Total Profit":"98235.20"},{"Region":"Europe","Country":"Denmark","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/8/2012","Order ID":"249425971","Ship Date":"1/22/2013","Units Sold":"9542","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2435881.76","Total Cost":"1521185.64","Total Profit":"914696.12"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"5/26/2011","Order ID":"301165139","Ship Date":"7/9/2011","Units Sold":"312","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"79647.36","Total Cost":"49739.04","Total Profit":"29908.32"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/5/2016","Order ID":"198175609","Ship Date":"2/3/2016","Units Sold":"3421","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"31917.93","Total Cost":"23673.32","Total Profit":"8244.61"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"2/14/2017","Order ID":"232693707","Ship Date":"3/13/2017","Units Sold":"8094","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1246961.64","Total Cost":"735987.42","Total Profit":"510974.22"},{"Region":"Europe","Country":"Iceland","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"7/3/2017","Order ID":"767268264","Ship Date":"7/3/2017","Units Sold":"585","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"120334.50","Total Cost":"68509.35","Total Profit":"51825.15"},{"Region":"Asia","Country":"China","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/31/2013","Order ID":"884760606","Ship Date":"6/30/2013","Units Sold":"9179","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6134050.33","Total Cost":"4612814.66","Total Profit":"1521235.67"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/16/2013","Order ID":"638344562","Ship Date":"8/14/2013","Units Sold":"9196","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1403125.68","Total Cost":"896058.24","Total Profit":"507067.44"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/26/2012","Order ID":"601506459","Ship Date":"7/25/2012","Units Sold":"7983","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"652450.59","Total Cost":"452396.61","Total Profit":"200053.98"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"4/13/2017","Order ID":"518045127","Ship Date":"5/30/2017","Units Sold":"9920","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6460003.20","Total Cost":"5207603.20","Total Profit":"1252400.00"},{"Region":"Asia","Country":"Mongolia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/20/2013","Order ID":"652071893","Ship Date":"5/4/2013","Units Sold":"1418","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"923415.78","Total Cost":"744393.28","Total Profit":"179022.50"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"6/30/2013","Order ID":"438010585","Ship Date":"8/18/2013","Units Sold":"5920","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"903273.60","Total Cost":"576844.80","Total Profit":"326428.80"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/21/2016","Order ID":"730597531","Ship Date":"10/26/2016","Units Sold":"8900","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5795769.00","Total Cost":"4672144.00","Total Profit":"1123625.00"},{"Region":"Europe","Country":"Serbia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/23/2011","Order ID":"654881560","Ship Date":"9/3/2011","Units Sold":"2861","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1863111.81","Total Cost":"1501910.56","Total Profit":"361201.25"},{"Region":"Europe","Country":"Croatia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/9/2010","Order ID":"756224000","Ship Date":"5/13/2010","Units Sold":"2341","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"987644.49","Total Cost":"853739.29","Total Profit":"133905.20"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"3/3/2015","Order ID":"750298678","Ship Date":"4/18/2015","Units Sold":"8907","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3757774.23","Total Cost":"3248293.83","Total Profit":"509480.40"},{"Region":"Asia","Country":"China","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/24/2013","Order ID":"873091924","Ship Date":"2/12/2014","Units Sold":"6157","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2691840.40","Total Cost":"1621322.81","Total Profit":"1070517.59"},{"Region":"Europe","Country":"Georgia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"10/8/2014","Order ID":"530902564","Ship Date":"11/19/2014","Units Sold":"4721","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2064021.20","Total Cost":"1243180.93","Total Profit":"820840.27"},{"Region":"Asia","Country":"Taiwan","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/6/2011","Order ID":"550341928","Ship Date":"6/15/2011","Units Sold":"7261","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1853588.08","Total Cost":"1157548.62","Total Profit":"696039.46"},{"Region":"Asia","Country":"Cambodia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"4/11/2010","Order ID":"928333842","Ship Date":"5/8/2010","Units Sold":"3468","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1516209.60","Total Cost":"913228.44","Total Profit":"602981.16"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"2/15/2011","Order ID":"382114636","Ship Date":"3/20/2011","Units Sold":"5067","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1293503.76","Total Cost":"807781.14","Total Profit":"485722.62"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"1/23/2011","Order ID":"399233138","Ship Date":"1/29/2011","Units Sold":"812","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"207287.36","Total Cost":"129449.04","Total Profit":"77838.32"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/26/2015","Order ID":"287550675","Ship Date":"12/1/2015","Units Sold":"1490","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"651428.00","Total Cost":"392361.70","Total Profit":"259066.30"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/3/2013","Order ID":"325241076","Ship Date":"4/3/2013","Units Sold":"4917","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"233311.65","Total Cost":"156311.43","Total Profit":"77000.22"},{"Region":"Europe","Country":"Netherlands","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/5/2015","Order ID":"410790669","Ship Date":"2/17/2015","Units Sold":"943","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"193975.10","Total Cost":"110434.73","Total Profit":"83540.37"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"11/14/2014","Order ID":"512998282","Ship Date":"12/26/2014","Units Sold":"6447","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1645790.16","Total Cost":"1027780.74","Total Profit":"618009.42"},{"Region":"Asia","Country":"Malaysia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/30/2015","Order ID":"220975244","Ship Date":"5/12/2015","Units Sold":"340","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"3172.20","Total Cost":"2352.80","Total Profit":"819.40"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"10/27/2015","Order ID":"994145381","Ship Date":"11/21/2015","Units Sold":"8565","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2186473.20","Total Cost":"1365432.30","Total Profit":"821040.90"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/13/2017","Order ID":"312245023","Ship Date":"6/18/2017","Units Sold":"9096","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"994010.88","Total Cost":"326000.64","Total Profit":"668010.24"},{"Region":"Asia","Country":"Tajikistan","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/3/2010","Order ID":"225322997","Ship Date":"5/10/2010","Units Sold":"6937","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4517443.77","Total Cost":"3641647.52","Total Profit":"875796.25"},{"Region":"Asia","Country":"Indonesia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"7/23/2016","Order ID":"603740632","Ship Date":"8/29/2016","Units Sold":"9124","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3849324.36","Total Cost":"3327431.56","Total Profit":"521892.80"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"4/6/2017","Order ID":"488171756","Ship Date":"4/14/2017","Units Sold":"9726","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"794905.98","Total Cost":"551172.42","Total Profit":"243733.56"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/21/2017","Order ID":"339602696","Ship Date":"7/11/2017","Units Sold":"4839","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"995382.30","Total Cost":"566695.29","Total Profit":"428687.01"},{"Region":"Europe","Country":"Netherlands","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/25/2011","Order ID":"689332282","Ship Date":"12/4/2011","Units Sold":"7596","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"620821.08","Total Cost":"430465.32","Total Profit":"190355.76"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"6/28/2011","Order ID":"788971841","Ship Date":"7/24/2011","Units Sold":"3155","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"648983.50","Total Cost":"369482.05","Total Profit":"279501.45"},{"Region":"Europe","Country":"Netherlands","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"11/15/2016","Order ID":"860445201","Ship Date":"11/22/2016","Units Sold":"3711","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"947344.08","Total Cost":"591607.62","Total Profit":"355736.46"},{"Region":"Asia","Country":"Brunei","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"8/14/2014","Order ID":"745988690","Ship Date":"8/18/2014","Units Sold":"3486","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2270118.06","Total Cost":"1830010.56","Total Profit":"440107.50"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"4/11/2011","Order ID":"358151137","Ship Date":"4/18/2011","Units Sold":"3735","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"305261.55","Total Cost":"211662.45","Total Profit":"93599.10"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"6/20/2014","Order ID":"129793870","Ship Date":"7/9/2014","Units Sold":"7745","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3386114.00","Total Cost":"2039490.85","Total Profit":"1346623.15"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"12/11/2013","Order ID":"564090716","Ship Date":"1/10/2014","Units Sold":"5833","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3798507.93","Total Cost":"3062091.68","Total Profit":"736416.25"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"9/4/2015","Order ID":"884528005","Ship Date":"10/20/2015","Units Sold":"348","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"16512.60","Total Cost":"11062.92","Total Profit":"5449.68"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/30/2015","Order ID":"384904563","Ship Date":"5/7/2015","Units Sold":"668","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"446404.36","Total Cost":"335696.72","Total Profit":"110707.64"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/17/2017","Order ID":"679331719","Ship Date":"4/8/2017","Units Sold":"8207","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3588100.40","Total Cost":"2161149.31","Total Profit":"1426951.09"},{"Region":"Asia","Country":"China","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"5/3/2015","Order ID":"752233302","Ship Date":"6/7/2015","Units Sold":"1405","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"289008.50","Total Cost":"164539.55","Total Profit":"124468.95"},{"Region":"Europe","Country":"Moldova ","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"5/9/2012","Order ID":"108345639","Ship Date":"5/10/2012","Units Sold":"737","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"112451.46","Total Cost":"71813.28","Total Profit":"40638.18"},{"Region":"Europe","Country":"Cyprus","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"10/9/2015","Order ID":"122717559","Ship Date":"10/27/2015","Units Sold":"3708","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"762735.60","Total Cost":"434243.88","Total Profit":"328491.72"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/8/2011","Order ID":"890710389","Ship Date":"7/24/2011","Units Sold":"9853","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"2026762.10","Total Cost":"1153884.83","Total Profit":"872877.27"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"10/5/2012","Order ID":"777997958","Ship Date":"11/3/2012","Units Sold":"5740","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1180718.00","Total Cost":"672211.40","Total Profit":"508506.60"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"7/10/2011","Order ID":"470566594","Ship Date":"8/9/2011","Units Sold":"9967","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6490610.07","Total Cost":"5232276.32","Total Profit":"1258333.75"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/25/2011","Order ID":"724715125","Ship Date":"1/12/2012","Units Sold":"8165","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1679540.50","Total Cost":"956203.15","Total Profit":"723337.35"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"7/31/2011","Order ID":"117054879","Ship Date":"9/14/2011","Units Sold":"7995","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"74593.35","Total Cost":"55325.40","Total Profit":"19267.95"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/3/2013","Order ID":"894509685","Ship Date":"2/23/2013","Units Sold":"4149","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"633054.42","Total Cost":"404278.56","Total Profit":"228775.86"},{"Region":"Europe","Country":"Denmark","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"6/18/2012","Order ID":"424315869","Ship Date":"7/28/2012","Units Sold":"3350","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"366088.00","Total Cost":"120064.00","Total Profit":"246024.00"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"7/28/2010","Order ID":"644022262","Ship Date":"7/31/2010","Units Sold":"9354","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1427233.32","Total Cost":"911453.76","Total Profit":"515779.56"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/6/2016","Order ID":"411490190","Ship Date":"1/3/2017","Units Sold":"7946","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1212400.68","Total Cost":"774258.24","Total Profit":"438142.44"},{"Region":"Asia","Country":"Thailand","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/12/2015","Order ID":"454893481","Ship Date":"8/29/2015","Units Sold":"1945","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1266603.45","Total Cost":"1021047.20","Total Profit":"245556.25"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/23/2014","Order ID":"222718465","Ship Date":"7/30/2014","Units Sold":"6198","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2709765.60","Total Cost":"1632119.34","Total Profit":"1077646.26"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/30/2011","Order ID":"133763968","Ship Date":"3/15/2011","Units Sold":"2586","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"211353.78","Total Cost":"146548.62","Total Profit":"64805.16"},{"Region":"Asia","Country":"Tajikistan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"8/20/2011","Order ID":"227141320","Ship Date":"8/24/2011","Units Sold":"5019","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1032408.30","Total Cost":"587775.09","Total Profit":"444633.21"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"1/15/2012","Order ID":"612274348","Ship Date":"2/11/2012","Units Sold":"4441","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"913513.70","Total Cost":"520085.51","Total Profit":"393428.19"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"11/3/2016","Order ID":"118899381","Ship Date":"12/4/2016","Units Sold":"3824","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"583465.92","Total Cost":"372610.56","Total Profit":"210855.36"},{"Region":"Asia","Country":"Myanmar","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/19/2012","Order ID":"347065246","Ship Date":"10/14/2012","Units Sold":"3174","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1339078.86","Total Cost":"1157526.06","Total Profit":"181552.80"},{"Region":"Asia","Country":"South Korea","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/16/2010","Order ID":"717133271","Ship Date":"3/19/2010","Units Sold":"4526","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"42227.58","Total Cost":"31319.92","Total Profit":"10907.66"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"10/23/2016","Order ID":"719777286","Ship Date":"10/30/2016","Units Sold":"6949","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1429409.30","Total Cost":"813797.39","Total Profit":"615611.91"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"4/14/2011","Order ID":"365983617","Ship Date":"5/13/2011","Units Sold":"1540","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"393131.20","Total Cost":"245506.80","Total Profit":"147624.40"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"10/8/2014","Order ID":"637051093","Ship Date":"10/14/2014","Units Sold":"6430","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"981089.40","Total Cost":"626539.20","Total Profit":"354550.20"},{"Region":"Europe","Country":"Montenegro","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/12/2011","Order ID":"334591042","Ship Date":"9/27/2011","Units Sold":"1780","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1159153.80","Total Cost":"934428.80","Total Profit":"224725.00"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/26/2014","Order ID":"130527293","Ship Date":"2/12/2014","Units Sold":"4782","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"390832.86","Total Cost":"270995.94","Total Profit":"119836.92"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/26/2012","Order ID":"317096173","Ship Date":"5/4/2012","Units Sold":"4659","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"710870.22","Total Cost":"453972.96","Total Profit":"256897.26"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/11/2016","Order ID":"356846511","Ship Date":"8/26/2016","Units Sold":"7667","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1169830.86","Total Cost":"747072.48","Total Profit":"422758.38"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/21/2015","Order ID":"232639634","Ship Date":"9/5/2015","Units Sold":"2092","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"534045.76","Total Cost":"333506.64","Total Profit":"200539.12"},{"Region":"Asia","Country":"Maldives","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/6/2010","Order ID":"897649371","Ship Date":"9/18/2010","Units Sold":"3252","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"496190.16","Total Cost":"316874.88","Total Profit":"179315.28"},{"Region":"Europe","Country":"Andorra","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"5/30/2011","Order ID":"225362050","Ship Date":"6/17/2011","Units Sold":"8494","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"694214.62","Total Cost":"481354.98","Total Profit":"212859.64"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"4/12/2017","Order ID":"659576499","Ship Date":"4/12/2017","Units Sold":"2198","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1468857.46","Total Cost":"1104582.92","Total Profit":"364274.54"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/30/2013","Order ID":"664404046","Ship Date":"10/8/2013","Units Sold":"777","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"159828.90","Total Cost":"90994.47","Total Profit":"68834.43"},{"Region":"Central America and the Caribbean","Country":"Saint Lucia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"7/4/2013","Order ID":"574268519","Ship Date":"7/6/2013","Units Sold":"7671","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1577924.70","Total Cost":"898350.81","Total Profit":"679573.89"},{"Region":"Europe","Country":"Montenegro","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"9/5/2015","Order ID":"343906247","Ship Date":"9/30/2015","Units Sold":"8356","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"682935.88","Total Cost":"473534.52","Total Profit":"209401.36"},{"Region":"Europe","Country":"Moldova ","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"4/26/2016","Order ID":"898366057","Ship Date":"5/24/2016","Units Sold":"5335","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"436029.55","Total Cost":"302334.45","Total Profit":"133695.10"},{"Region":"Europe","Country":"Georgia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"8/20/2012","Order ID":"983009278","Ship Date":"10/2/2012","Units Sold":"3145","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"149230.25","Total Cost":"99979.55","Total Profit":"49250.70"},{"Region":"Europe","Country":"Germany","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"4/6/2014","Order ID":"313509738","Ship Date":"5/21/2014","Units Sold":"3353","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1414597.17","Total Cost":"1222805.57","Total Profit":"191791.60"},{"Region":"Europe","Country":"Russia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/1/2016","Order ID":"925853765","Ship Date":"10/18/2016","Units Sold":"9558","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1458359.64","Total Cost":"931331.52","Total Profit":"527028.12"},{"Region":"Asia","Country":"Taiwan","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"12/7/2012","Order ID":"426340186","Ship Date":"1/12/2013","Units Sold":"2390","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"364666.20","Total Cost":"232881.60","Total Profit":"131784.60"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"11/6/2011","Order ID":"541580331","Ship Date":"12/13/2011","Units Sold":"4510","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"492852.80","Total Cost":"161638.40","Total Profit":"331214.40"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/28/2012","Order ID":"368498027","Ship Date":"5/14/2012","Units Sold":"5610","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"864276.60","Total Cost":"510117.30","Total Profit":"354159.30"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"12/3/2013","Order ID":"424329602","Ship Date":"12/5/2013","Units Sold":"7414","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"810201.92","Total Cost":"265717.76","Total Profit":"544484.16"},{"Region":"Asia","Country":"South Korea","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"12/27/2013","Order ID":"396623885","Ship Date":"1/29/2014","Units Sold":"8676","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3660317.64","Total Cost":"3164050.44","Total Profit":"496267.20"},{"Region":"Europe","Country":"Cyprus","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/3/2010","Order ID":"493242204","Ship Date":"8/31/2010","Units Sold":"184","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"20107.52","Total Cost":"6594.56","Total Profit":"13512.96"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"4/20/2014","Order ID":"992358386","Ship Date":"5/6/2014","Units Sold":"9754","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1065917.12","Total Cost":"349583.36","Total Profit":"716333.76"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/20/2014","Order ID":"892458760","Ship Date":"2/28/2014","Units Sold":"7234","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4710853.14","Total Cost":"3797560.64","Total Profit":"913292.50"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"3/14/2011","Order ID":"162342154","Ship Date":"4/10/2011","Units Sold":"9506","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2426691.68","Total Cost":"1515446.52","Total Profit":"911245.16"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/20/2015","Order ID":"191119897","Ship Date":"10/14/2015","Units Sold":"5479","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2395418.80","Total Cost":"1442785.07","Total Profit":"952633.73"},{"Region":"Europe","Country":"Moldova ","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/1/2012","Order ID":"638215816","Ship Date":"3/12/2012","Units Sold":"1097","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"280042.16","Total Cost":"174883.74","Total Profit":"105158.42"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"6/8/2016","Order ID":"783366239","Ship Date":"7/12/2016","Units Sold":"4333","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1894387.60","Total Cost":"1141008.89","Total Profit":"753378.71"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/6/2011","Order ID":"876619994","Ship Date":"7/1/2011","Units Sold":"192","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"125032.32","Total Cost":"100792.32","Total Profit":"24240.00"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/22/2011","Order ID":"788338410","Ship Date":"6/23/2011","Units Sold":"5709","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"53264.97","Total Cost":"39506.28","Total Profit":"13758.69"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"9/9/2012","Order ID":"459195315","Ship Date":"10/19/2012","Units Sold":"4953","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"763059.18","Total Cost":"450376.29","Total Profit":"312682.89"},{"Region":"Europe","Country":"Montenegro","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/14/2012","Order ID":"350177037","Ship Date":"11/29/2012","Units Sold":"4022","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"827325.40","Total Cost":"471016.42","Total Profit":"356308.98"},{"Region":"Europe","Country":"Russia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/20/2013","Order ID":"992582404","Ship Date":"1/25/2014","Units Sold":"6046","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1543422.88","Total Cost":"963853.32","Total Profit":"579569.56"},{"Region":"Europe","Country":"Netherlands","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/10/2012","Order ID":"738022744","Ship Date":"1/21/2012","Units Sold":"6185","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2704082.00","Total Cost":"1628696.05","Total Profit":"1075385.95"},{"Region":"Europe","Country":"Croatia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"3/4/2015","Order ID":"708421885","Ship Date":"3/13/2015","Units Sold":"6633","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1693272.24","Total Cost":"1057432.86","Total Profit":"635839.38"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/15/2017","Order ID":"746016156","Ship Date":"8/15/2017","Units Sold":"1614","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"680930.46","Total Cost":"588609.66","Total Profit":"92320.80"},{"Region":"Europe","Country":"Slovenia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"7/14/2010","Order ID":"763354384","Ship Date":"7/30/2010","Units Sold":"2381","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"112978.45","Total Cost":"75691.99","Total Profit":"37286.46"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"12/4/2016","Order ID":"293297898","Ship Date":"12/22/2016","Units Sold":"2221","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"456859.70","Total Cost":"260101.31","Total Profit":"196758.39"},{"Region":"Europe","Country":"Moldova ","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"4/29/2011","Order ID":"739020526","Ship Date":"5/26/2011","Units Sold":"1451","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"298470.70","Total Cost":"169926.61","Total Profit":"128544.09"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"11/2/2014","Order ID":"424008595","Ship Date":"12/21/2014","Units Sold":"2421","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"197868.33","Total Cost":"137198.07","Total Profit":"60670.26"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"7/25/2015","Order ID":"442060935","Ship Date":"8/19/2015","Units Sold":"4509","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1902302.01","Total Cost":"1644387.21","Total Profit":"257914.80"},{"Region":"Europe","Country":"Ireland","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/26/2010","Order ID":"607288873","Ship Date":"4/6/2010","Units Sold":"9128","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1406259.68","Total Cost":"830009.04","Total Profit":"576250.64"},{"Region":"North America","Country":"Canada","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"8/2/2015","Order ID":"804116237","Ship Date":"8/4/2015","Units Sold":"4719","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"223916.55","Total Cost":"150017.01","Total Profit":"73899.54"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"7/19/2011","Order ID":"537279355","Ship Date":"7/25/2011","Units Sold":"1756","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"143517.88","Total Cost":"99512.52","Total Profit":"44005.36"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/12/2013","Order ID":"281827056","Ship Date":"3/30/2013","Units Sold":"7744","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"367452.80","Total Cost":"246181.76","Total Profit":"121271.04"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/14/2013","Order ID":"133120667","Ship Date":"1/31/2014","Units Sold":"2219","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"456448.30","Total Cost":"259867.09","Total Profit":"196581.21"},{"Region":"Asia","Country":"India","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"2/4/2012","Order ID":"256834018","Ship Date":"3/18/2012","Units Sold":"1748","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1168135.96","Total Cost":"878439.92","Total Profit":"289696.04"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"7/12/2014","Order ID":"438953435","Ship Date":"7/24/2014","Units Sold":"4931","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3295239.37","Total Cost":"2478024.74","Total Profit":"817214.63"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"4/20/2010","Order ID":"535777747","Ship Date":"4/26/2010","Units Sold":"7396","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1139427.76","Total Cost":"672518.28","Total Profit":"466909.48"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/26/2012","Order ID":"923918282","Ship Date":"5/2/2012","Units Sold":"6806","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"556254.38","Total Cost":"385696.02","Total Profit":"170558.36"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"4/18/2015","Order ID":"250298869","Ship Date":"4/22/2015","Units Sold":"7852","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"641743.96","Total Cost":"444972.84","Total Profit":"196771.12"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"7/3/2015","Order ID":"382155835","Ship Date":"7/26/2015","Units Sold":"7259","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1493176.30","Total Cost":"850101.49","Total Profit":"643074.81"},{"Region":"Europe","Country":"Slovenia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"9/26/2013","Order ID":"557038009","Ship Date":"11/10/2013","Units Sold":"8780","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2241358.40","Total Cost":"1399707.60","Total Profit":"841650.80"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"12/8/2011","Order ID":"532806718","Ship Date":"1/12/2012","Units Sold":"8203","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2094061.84","Total Cost":"1307722.26","Total Profit":"786339.58"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"11/23/2016","Order ID":"137635791","Ship Date":"1/9/2017","Units Sold":"8344","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"395922.80","Total Cost":"265255.76","Total Profit":"130667.04"},{"Region":"Asia","Country":"Myanmar","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"10/3/2013","Order ID":"620011556","Ship Date":"11/20/2013","Units Sold":"4052","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"833496.40","Total Cost":"474529.72","Total Profit":"358966.68"},{"Region":"Asia","Country":"Bhutan","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/22/2015","Order ID":"598732841","Ship Date":"5/4/2015","Units Sold":"7208","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3151337.60","Total Cost":"1898082.64","Total Profit":"1253254.96"},{"Region":"Europe","Country":"Ukraine","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/7/2012","Order ID":"112910974","Ship Date":"5/7/2012","Units Sold":"1721","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"140657.33","Total Cost":"97529.07","Total Profit":"43128.26"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"3/11/2016","Order ID":"171969783","Ship Date":"4/7/2016","Units Sold":"8535","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"932704.80","Total Cost":"305894.40","Total Profit":"626810.40"},{"Region":"Europe","Country":"Ukraine","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"2/25/2016","Order ID":"505645596","Ship Date":"4/9/2016","Units Sold":"623","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"95057.34","Total Cost":"60705.12","Total Profit":"34352.22"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"1/17/2014","Order ID":"913987243","Ship Date":"1/24/2014","Units Sold":"7991","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1643748.70","Total Cost":"935826.01","Total Profit":"707922.69"},{"Region":"Europe","Country":"Kosovo","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/6/2012","Order ID":"817356050","Ship Date":"11/16/2012","Units Sold":"2673","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"218464.29","Total Cost":"151478.91","Total Profit":"66985.38"},{"Region":"Asia","Country":"Mongolia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"6/22/2012","Order ID":"606425845","Ship Date":"6/25/2012","Units Sold":"3739","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2434874.19","Total Cost":"1962825.44","Total Profit":"472048.75"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/29/2014","Order ID":"292182958","Ship Date":"6/16/2014","Units Sold":"2285","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"964018.65","Total Cost":"833316.65","Total Profit":"130702.00"},{"Region":"Europe","Country":"Ireland","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"1/27/2017","Order ID":"855926215","Ship Date":"3/15/2017","Units Sold":"6442","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"982920.36","Total Cost":"627708.48","Total Profit":"355211.88"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/21/2012","Order ID":"199266946","Ship Date":"7/5/2012","Units Sold":"6372","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2785838.40","Total Cost":"1677938.76","Total Profit":"1107899.64"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"8/8/2012","Order ID":"794128978","Ship Date":"9/10/2012","Units Sold":"9267","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4051532.40","Total Cost":"2440279.11","Total Profit":"1611253.29"},{"Region":"Asia","Country":"Cambodia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/22/2015","Order ID":"232748639","Ship Date":"6/21/2015","Units Sold":"4349","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1834799.61","Total Cost":"1586036.81","Total Profit":"248762.80"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/8/2016","Order ID":"677674758","Ship Date":"1/27/2016","Units Sold":"7875","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1201567.50","Total Cost":"767340.00","Total Profit":"434227.50"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"10/5/2010","Order ID":"311768662","Ship Date":"11/2/2010","Units Sold":"8130","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3429965.70","Total Cost":"2964929.70","Total Profit":"465036.00"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/15/2015","Order ID":"988204181","Ship Date":"12/9/2015","Units Sold":"432","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"88862.40","Total Cost":"50591.52","Total Profit":"38270.88"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/23/2010","Order ID":"580467641","Ship Date":"11/28/2010","Units Sold":"2129","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"324842.82","Total Cost":"207449.76","Total Profit":"117393.06"},{"Region":"Europe","Country":"Andorra","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"3/6/2010","Order ID":"632357871","Ship Date":"4/6/2010","Units Sold":"7601","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1563525.70","Total Cost":"890153.11","Total Profit":"673372.59"},{"Region":"Europe","Country":"Finland","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"6/30/2014","Order ID":"507986199","Ship Date":"8/10/2014","Units Sold":"3260","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"154687.00","Total Cost":"103635.40","Total Profit":"51051.60"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"12/28/2013","Order ID":"541776454","Ship Date":"2/1/2014","Units Sold":"2547","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1074553.83","Total Cost":"928865.43","Total Profit":"145688.40"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"2/8/2015","Order ID":"688464963","Ship Date":"3/25/2015","Units Sold":"937","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"142967.46","Total Cost":"91301.28","Total Profit":"51666.18"},{"Region":"Europe","Country":"Monaco","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"12/23/2013","Order ID":"973100554","Ship Date":"2/3/2014","Units Sold":"933","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"238176.24","Total Cost":"148738.86","Total Profit":"89437.38"},{"Region":"Europe","Country":"Poland","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"5/23/2015","Order ID":"141044557","Ship Date":"6/2/2015","Units Sold":"7073","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"578076.29","Total Cost":"400826.91","Total Profit":"177249.38"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/31/2013","Order ID":"607970798","Ship Date":"11/22/2013","Units Sold":"924","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"617481.48","Total Cost":"464346.96","Total Profit":"153134.52"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"6/3/2012","Order ID":"809865605","Ship Date":"6/16/2012","Units Sold":"6084","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"664859.52","Total Cost":"218050.56","Total Profit":"446808.96"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/28/2011","Order ID":"153027808","Ship Date":"8/5/2011","Units Sold":"3184","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2127771.68","Total Cost":"1600087.36","Total Profit":"527684.32"},{"Region":"Asia","Country":"Vietnam","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/27/2012","Order ID":"364068734","Ship Date":"11/10/2012","Units Sold":"4884","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"533723.52","Total Cost":"175042.56","Total Profit":"358680.96"},{"Region":"Europe","Country":"Belarus","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/5/2014","Order ID":"539912211","Ship Date":"10/20/2014","Units Sold":"876","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"585404.52","Total Cost":"440225.04","Total Profit":"145179.48"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"3/13/2017","Order ID":"297794568","Ship Date":"3/13/2017","Units Sold":"2885","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1927958.95","Total Cost":"1449827.90","Total Profit":"478131.05"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"5/21/2017","Order ID":"225264632","Ship Date":"6/29/2017","Units Sold":"9665","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1488989.90","Total Cost":"878838.45","Total Profit":"610151.45"},{"Region":"Sub-Saharan Africa","Country":"Mali","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/27/2013","Order ID":"530183732","Ship Date":"7/15/2013","Units Sold":"2003","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"163705.19","Total Cost":"113510.01","Total Profit":"50195.18"},{"Region":"Asia","Country":"Maldives","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"10/28/2015","Order ID":"590725696","Ship Date":"11/6/2015","Units Sold":"7715","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1177154.70","Total Cost":"751749.60","Total Profit":"425405.10"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"7/28/2013","Order ID":"305376851","Ship Date":"8/10/2013","Units Sold":"6651","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1697867.28","Total Cost":"1060302.42","Total Profit":"637564.86"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"7/29/2015","Order ID":"542936027","Ship Date":"9/7/2015","Units Sold":"5690","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2487668.00","Total Cost":"1498347.70","Total Profit":"989320.30"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/2/2016","Order ID":"892514550","Ship Date":"10/6/2016","Units Sold":"3744","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"576800.64","Total Cost":"340441.92","Total Profit":"236358.72"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"7/21/2016","Order ID":"113536250","Ship Date":"8/15/2016","Units Sold":"6754","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"63014.82","Total Cost":"46737.68","Total Profit":"16277.14"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/26/2015","Order ID":"185737454","Ship Date":"1/5/2016","Units Sold":"2695","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"294509.60","Total Cost":"96588.80","Total Profit":"197920.80"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"12/29/2012","Order ID":"459166991","Ship Date":"1/19/2013","Units Sold":"6571","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"537047.83","Total Cost":"372378.57","Total Profit":"164669.26"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/6/2014","Order ID":"804186189","Ship Date":"4/12/2014","Units Sold":"5419","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2369186.80","Total Cost":"1426985.27","Total Profit":"942201.53"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"3/1/2016","Order ID":"261468875","Ship Date":"4/19/2016","Units Sold":"3305","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"509168.30","Total Cost":"300523.65","Total Profit":"208644.65"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"2/24/2016","Order ID":"192001378","Ship Date":"4/12/2016","Units Sold":"6329","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"59049.57","Total Cost":"43796.68","Total Profit":"15252.89"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/5/2016","Order ID":"227082526","Ship Date":"8/14/2016","Units Sold":"7621","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"622864.33","Total Cost":"431882.07","Total Profit":"190982.26"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/13/2013","Order ID":"518323647","Ship Date":"2/6/2013","Units Sold":"2340","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1523831.40","Total Cost":"1228406.40","Total Profit":"295425.00"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/10/2013","Order ID":"387648570","Ship Date":"1/18/2014","Units Sold":"2681","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1172133.20","Total Cost":"705987.73","Total Profit":"466145.47"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"5/10/2013","Order ID":"577293622","Ship Date":"6/15/2013","Units Sold":"2866","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"313196.48","Total Cost":"102717.44","Total Profit":"210479.04"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"4/7/2010","Order ID":"999807631","Ship Date":"4/10/2010","Units Sold":"4151","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1751265.39","Total Cost":"1513828.19","Total Profit":"237437.20"},{"Region":"Europe","Country":"Lithuania","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"4/15/2012","Order ID":"288051927","Ship Date":"5/31/2012","Units Sold":"9821","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4293741.20","Total Cost":"2586163.93","Total Profit":"1707577.27"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/1/2016","Order ID":"745200335","Ship Date":"10/3/2016","Units Sold":"194","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"9205.30","Total Cost":"6167.26","Total Profit":"3038.04"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/22/2014","Order ID":"694739186","Ship Date":"7/22/2014","Units Sold":"7619","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4961568.99","Total Cost":"3999670.24","Total Profit":"961898.75"},{"Region":"Asia","Country":"China","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"4/8/2016","Order ID":"330467307","Ship Date":"4/28/2016","Units Sold":"1475","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"622287.75","Total Cost":"537917.75","Total Profit":"84370.00"},{"Region":"Asia","Country":"Malaysia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/21/2011","Order ID":"366496026","Ship Date":"5/19/2011","Units Sold":"3173","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"346745.44","Total Cost":"113720.32","Total Profit":"233025.12"},{"Region":"Asia","Country":"Philippines","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"4/21/2016","Order ID":"687249171","Ship Date":"6/9/2016","Units Sold":"1157","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"295358.96","Total Cost":"184448.94","Total Profit":"110910.02"},{"Region":"Asia","Country":"Laos","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"3/18/2011","Order ID":"797463071","Ship Date":"4/27/2011","Units Sold":"5899","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2488729.11","Total Cost":"2151306.31","Total Profit":"337422.80"},{"Region":"Europe","Country":"Estonia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"2/3/2011","Order ID":"272186553","Ship Date":"3/22/2011","Units Sold":"4904","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"748252.32","Total Cost":"477845.76","Total Profit":"270406.56"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/12/2016","Order ID":"106780946","Ship Date":"1/10/2017","Units Sold":"7710","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1187802.60","Total Cost":"701070.30","Total Profit":"486732.30"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"11/25/2011","Order ID":"466920077","Ship Date":"12/29/2011","Units Sold":"882","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"574367.22","Total Cost":"463014.72","Total Profit":"111352.50"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/9/2010","Order ID":"238590276","Ship Date":"7/1/2010","Units Sold":"3019","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"621008.30","Total Cost":"353555.09","Total Profit":"267453.21"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/29/2016","Order ID":"178090369","Ship Date":"11/11/2016","Units Sold":"9753","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1065807.84","Total Cost":"349547.52","Total Profit":"716260.32"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"5/13/2013","Order ID":"662031686","Ship Date":"5/19/2013","Units Sold":"8742","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3822002.40","Total Cost":"2302030.86","Total Profit":"1519971.54"},{"Region":"Europe","Country":"Vatican City","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/24/2010","Order ID":"337338054","Ship Date":"6/9/2010","Units Sold":"4681","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1974867.09","Total Cost":"1707113.89","Total Profit":"267753.20"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"6/10/2011","Order ID":"171245801","Ship Date":"7/15/2011","Units Sold":"4293","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"350866.89","Total Cost":"243284.31","Total Profit":"107582.58"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"5/16/2017","Order ID":"301303756","Ship Date":"5/30/2017","Units Sold":"1332","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"205207.92","Total Cost":"121118.76","Total Profit":"84089.16"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/27/2014","Order ID":"485373246","Ship Date":"1/15/2015","Units Sold":"1584","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1031516.64","Total Cost":"831536.64","Total Profit":"199980.00"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"1/30/2011","Order ID":"551628100","Ship Date":"2/3/2011","Units Sold":"7868","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3319430.52","Total Cost":"2869380.92","Total Profit":"450049.60"},{"Region":"Asia","Country":"Brunei","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/5/2013","Order ID":"848554646","Ship Date":"8/10/2013","Units Sold":"5032","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2199990.40","Total Cost":"1325076.56","Total Profit":"874913.84"},{"Region":"Europe","Country":"Slovenia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/5/2012","Order ID":"894951713","Ship Date":"4/25/2012","Units Sold":"4954","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1264657.12","Total Cost":"789766.68","Total Profit":"474890.44"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"7/15/2013","Order ID":"729930627","Ship Date":"8/8/2013","Units Sold":"1548","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"238484.88","Total Cost":"140759.64","Total Profit":"97725.24"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/31/2013","Order ID":"462915217","Ship Date":"4/5/2013","Units Sold":"5755","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"470356.15","Total Cost":"326135.85","Total Profit":"144220.30"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/8/2015","Order ID":"723641812","Ship Date":"1/11/2016","Units Sold":"548","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"139893.44","Total Cost":"87362.16","Total Profit":"52531.28"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/6/2015","Order ID":"412159240","Ship Date":"11/23/2015","Units Sold":"5933","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"905257.14","Total Cost":"578111.52","Total Profit":"327145.62"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"11/16/2015","Order ID":"748828828","Ship Date":"12/15/2015","Units Sold":"3946","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"811692.20","Total Cost":"462116.06","Total Profit":"349576.14"},{"Region":"Europe","Country":"Serbia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/8/2016","Order ID":"324324405","Ship Date":"4/4/2016","Units Sold":"3653","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"932537.84","Total Cost":"582361.26","Total Profit":"350176.58"},{"Region":"Europe","Country":"Spain","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"6/8/2010","Order ID":"949632298","Ship Date":"7/13/2010","Units Sold":"6155","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"948239.30","Total Cost":"559674.15","Total Profit":"388565.15"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/11/2012","Order ID":"906051337","Ship Date":"4/26/2012","Units Sold":"9580","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1970606.00","Total Cost":"1121913.80","Total Profit":"848692.20"},{"Region":"Asia","Country":"South Korea","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"9/20/2013","Order ID":"795192849","Ship Date":"11/1/2013","Units Sold":"4090","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1044095.20","Total Cost":"652027.80","Total Profit":"392067.40"},{"Region":"Asia","Country":"Taiwan","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/12/2011","Order ID":"388980662","Ship Date":"9/8/2011","Units Sold":"6877","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"326313.65","Total Cost":"218619.83","Total Profit":"107693.82"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"6/12/2011","Order ID":"879651105","Ship Date":"7/31/2011","Units Sold":"7165","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1103839.90","Total Cost":"651513.45","Total Profit":"452326.45"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"12/27/2015","Order ID":"829753005","Ship Date":"1/16/2016","Units Sold":"1208","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"308378.24","Total Cost":"192579.36","Total Profit":"115798.88"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"12/6/2013","Order ID":"222147691","Ship Date":"12/26/2013","Units Sold":"7293","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3188499.60","Total Cost":"1920465.69","Total Profit":"1268033.91"},{"Region":"Asia","Country":"Maldives","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/17/2013","Order ID":"910008990","Ship Date":"12/30/2013","Units Sold":"737","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"60235.01","Total Cost":"41765.79","Total Profit":"18469.22"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"9/6/2010","Order ID":"766823232","Ship Date":"10/7/2010","Units Sold":"8890","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"82943.70","Total Cost":"61518.80","Total Profit":"21424.90"},{"Region":"Asia","Country":"India","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"2/13/2011","Order ID":"436389243","Ship Date":"3/26/2011","Units Sold":"6129","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4095826.83","Total Cost":"3080067.66","Total Profit":"1015759.17"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"10/20/2015","Order ID":"182818353","Ship Date":"11/11/2015","Units Sold":"8868","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"420786.60","Total Cost":"281913.72","Total Profit":"138872.88"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"12/14/2014","Order ID":"340534389","Ship Date":"1/28/2015","Units Sold":"548","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"239585.60","Total Cost":"144304.84","Total Profit":"95280.76"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/3/2015","Order ID":"864273679","Ship Date":"2/14/2015","Units Sold":"6642","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1023266.52","Total Cost":"603957.06","Total Profit":"419309.46"},{"Region":"Europe","Country":"Sweden","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/11/2012","Order ID":"879085052","Ship Date":"3/16/2012","Units Sold":"9657","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4074191.73","Total Cost":"3521811.33","Total Profit":"552380.40"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/18/2011","Order ID":"930329835","Ship Date":"1/23/2011","Units Sold":"4127","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2687543.67","Total Cost":"2166509.92","Total Profit":"521033.75"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/15/2013","Order ID":"733681857","Ship Date":"12/13/2013","Units Sold":"1620","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"413553.60","Total Cost":"258260.40","Total Profit":"155293.20"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/21/2016","Order ID":"525127446","Ship Date":"3/30/2016","Units Sold":"5736","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"875198.88","Total Cost":"558915.84","Total Profit":"316283.04"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/6/2010","Order ID":"610965430","Ship Date":"9/14/2010","Units Sold":"7103","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4746721.81","Total Cost":"3569541.62","Total Profit":"1177180.19"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/8/2014","Order ID":"917807137","Ship Date":"3/8/2014","Units Sold":"8383","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"397773.35","Total Cost":"266495.57","Total Profit":"131277.78"},{"Region":"Asia","Country":"China","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"1/6/2010","Order ID":"542576396","Ship Date":"1/26/2010","Units Sold":"9268","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4051969.60","Total Cost":"2440542.44","Total Profit":"1611427.16"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/16/2013","Order ID":"902509534","Ship Date":"6/11/2013","Units Sold":"1482","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"226123.56","Total Cost":"144406.08","Total Profit":"81717.48"},{"Region":"Europe","Country":"Latvia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"9/8/2013","Order ID":"785155379","Ship Date":"9/29/2013","Units Sold":"3779","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"35258.07","Total Cost":"26150.68","Total Profit":"9107.39"},{"Region":"Europe","Country":"Georgia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/9/2016","Order ID":"398375260","Ship Date":"10/26/2016","Units Sold":"6947","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"567778.31","Total Cost":"393686.49","Total Profit":"174091.82"},{"Region":"Europe","Country":"Ireland","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"3/30/2010","Order ID":"920343005","Ship Date":"4/30/2010","Units Sold":"8802","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2246974.56","Total Cost":"1403214.84","Total Profit":"843759.72"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"7/24/2013","Order ID":"449544942","Ship Date":"8/9/2013","Units Sold":"9193","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6143406.11","Total Cost":"4619850.22","Total Profit":"1523555.89"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"11/6/2012","Order ID":"754779899","Ship Date":"12/8/2012","Units Sold":"5000","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"408650.00","Total Cost":"283350.00","Total Profit":"125300.00"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/10/2010","Order ID":"525159204","Ship Date":"7/31/2010","Units Sold":"5133","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"419520.09","Total Cost":"290887.11","Total Profit":"128632.98"},{"Region":"Asia","Country":"Nepal","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/5/2013","Order ID":"320106685","Ship Date":"11/22/2013","Units Sold":"5536","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"604974.08","Total Cost":"198410.24","Total Profit":"406563.84"},{"Region":"Asia","Country":"Myanmar","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"1/2/2016","Order ID":"319358670","Ship Date":"1/16/2016","Units Sold":"4182","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1764343.98","Total Cost":"1525133.58","Total Profit":"239210.40"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"1/12/2015","Order ID":"772963988","Ship Date":"2/27/2015","Units Sold":"6076","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"288306.20","Total Cost":"193156.04","Total Profit":"95150.16"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"1/13/2010","Order ID":"651283967","Ship Date":"1/21/2010","Units Sold":"8254","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1271611.24","Total Cost":"750536.22","Total Profit":"521075.02"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/15/2012","Order ID":"794992434","Ship Date":"8/21/2012","Units Sold":"4783","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3114737.43","Total Cost":"2510883.68","Total Profit":"603853.75"},{"Region":"Asia","Country":"North Korea","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"5/30/2012","Order ID":"765075719","Ship Date":"6/28/2012","Units Sold":"1762","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1177491.74","Total Cost":"885475.48","Total Profit":"292016.26"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"12/14/2011","Order ID":"192832648","Ship Date":"1/5/2012","Units Sold":"2321","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"357573.26","Total Cost":"211048.53","Total Profit":"146524.73"},{"Region":"Asia","Country":"Thailand","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/9/2014","Order ID":"129874551","Ship Date":"7/24/2014","Units Sold":"1621","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"247332.18","Total Cost":"157950.24","Total Profit":"89381.94"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/8/2013","Order ID":"798125255","Ship Date":"4/25/2013","Units Sold":"1854","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"782184.06","Total Cost":"676135.26","Total Profit":"106048.80"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/22/2017","Order ID":"239821088","Ship Date":"4/9/2017","Units Sold":"7244","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3167076.80","Total Cost":"1907562.52","Total Profit":"1259514.28"},{"Region":"Europe","Country":"Greece","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"6/21/2010","Order ID":"167510879","Ship Date":"7/10/2010","Units Sold":"9046","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"84399.18","Total Cost":"62598.32","Total Profit":"21800.86"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"9/11/2015","Order ID":"114055955","Ship Date":"9/12/2015","Units Sold":"546","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"230351.94","Total Cost":"199120.74","Total Profit":"31231.20"},{"Region":"Europe","Country":"Slovenia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/28/2015","Order ID":"582630145","Ship Date":"2/3/2015","Units Sold":"2062","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"526387.36","Total Cost":"328724.04","Total Profit":"197663.32"},{"Region":"Asia","Country":"Myanmar","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/31/2014","Order ID":"796719777","Ship Date":"9/9/2014","Units Sold":"5942","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3869489.82","Total Cost":"3119312.32","Total Profit":"750177.50"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/13/2017","Order ID":"950123679","Ship Date":"7/26/2017","Units Sold":"1565","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1045842.55","Total Cost":"786475.10","Total Profit":"259367.45"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/5/2012","Order ID":"856953179","Ship Date":"11/28/2012","Units Sold":"344","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"224016.24","Total Cost":"180586.24","Total Profit":"43430.00"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/2/2017","Order ID":"401632106","Ship Date":"7/25/2017","Units Sold":"720","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"314784.00","Total Cost":"189597.60","Total Profit":"125186.40"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"5/8/2011","Order ID":"888896787","Ship Date":"5/8/2011","Units Sold":"3167","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1336125.63","Total Cost":"1154973.23","Total Profit":"181152.40"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/13/2017","Order ID":"993796050","Ship Date":"1/16/2017","Units Sold":"5190","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1324903.20","Total Cost":"827389.80","Total Profit":"497513.40"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/2/2012","Order ID":"811691224","Ship Date":"12/10/2012","Units Sold":"6326","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"691305.28","Total Cost":"226723.84","Total Profit":"464581.44"},{"Region":"Europe","Country":"Germany","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"3/6/2012","Order ID":"508256137","Ship Date":"3/9/2012","Units Sold":"3140","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"483748.40","Total Cost":"285520.20","Total Profit":"198228.20"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/23/2014","Order ID":"769477117","Ship Date":"6/2/2014","Units Sold":"4233","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"462582.24","Total Cost":"151710.72","Total Profit":"310871.52"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"2/3/2016","Order ID":"551652991","Ship Date":"2/9/2016","Units Sold":"5234","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"806350.04","Total Cost":"475927.62","Total Profit":"330422.42"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/19/2014","Order ID":"231395089","Ship Date":"12/24/2014","Units Sold":"3804","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"180499.80","Total Cost":"120929.16","Total Profit":"59570.64"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"7/17/2013","Order ID":"255627238","Ship Date":"7/23/2013","Units Sold":"4635","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3097431.45","Total Cost":"2329272.90","Total Profit":"768158.55"},{"Region":"Europe","Country":"Vatican City","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"6/4/2015","Order ID":"691585767","Ship Date":"6/29/2015","Units Sold":"4452","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"685875.12","Total Cost":"404820.36","Total Profit":"281054.76"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/27/2013","Order ID":"776819503","Ship Date":"12/8/2013","Units Sold":"7008","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"332529.60","Total Cost":"222784.32","Total Profit":"109745.28"},{"Region":"Europe","Country":"Andorra","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"12/9/2010","Order ID":"269189774","Ship Date":"1/10/2011","Units Sold":"8091","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2065470.48","Total Cost":"1289867.22","Total Profit":"775603.26"},{"Region":"Europe","Country":"Malta","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/24/2013","Order ID":"796870410","Ship Date":"6/3/2013","Units Sold":"517","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"79649.02","Total Cost":"47010.81","Total Profit":"32638.21"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/25/2013","Order ID":"908347737","Ship Date":"9/27/2013","Units Sold":"9136","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3854387.04","Total Cost":"3331807.84","Total Profit":"522579.20"},{"Region":"Asia","Country":"Japan","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/6/2017","Order ID":"122420585","Ship Date":"5/31/2017","Units Sold":"5826","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1487261.28","Total Cost":"928780.92","Total Profit":"558480.36"},{"Region":"Europe","Country":"Slovenia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/14/2015","Order ID":"278200280","Ship Date":"4/9/2015","Units Sold":"4500","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"41985.00","Total Cost":"31140.00","Total Profit":"10845.00"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"10/10/2010","Order ID":"585110652","Ship Date":"10/21/2010","Units Sold":"6099","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4075778.73","Total Cost":"3064991.46","Total Profit":"1010787.27"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/10/2016","Order ID":"772888028","Ship Date":"3/11/2016","Units Sold":"3598","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"554307.88","Total Cost":"327166.14","Total Profit":"227141.74"},{"Region":"Europe","Country":"Sweden","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"7/20/2010","Order ID":"641581237","Ship Date":"7/25/2010","Units Sold":"7000","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"764960.00","Total Cost":"250880.00","Total Profit":"514080.00"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/20/2011","Order ID":"511551606","Ship Date":"1/4/2012","Units Sold":"8343","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1272974.94","Total Cost":"812941.92","Total Profit":"460033.02"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"10/17/2012","Order ID":"773472964","Ship Date":"11/15/2012","Units Sold":"6693","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"731411.04","Total Cost":"239877.12","Total Profit":"491533.92"},{"Region":"Europe","Country":"Hungary","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"7/4/2014","Order ID":"538331639","Ship Date":"8/3/2014","Units Sold":"3150","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"29389.50","Total Cost":"21798.00","Total Profit":"7591.50"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"7/13/2015","Order ID":"787426459","Ship Date":"7/24/2015","Units Sold":"5843","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2465103.27","Total Cost":"2130883.67","Total Profit":"334219.60"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"6/10/2015","Order ID":"322368752","Ship Date":"7/27/2015","Units Sold":"4932","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1259040.96","Total Cost":"786259.44","Total Profit":"472781.52"},{"Region":"Central America and the Caribbean","Country":"Saint Lucia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/3/2011","Order ID":"715082347","Ship Date":"3/25/2011","Units Sold":"7612","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1161438.96","Total Cost":"741713.28","Total Profit":"419725.68"},{"Region":"Asia","Country":"Maldives","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"7/19/2015","Order ID":"457803571","Ship Date":"9/3/2015","Units Sold":"3105","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"478356.30","Total Cost":"282337.65","Total Profit":"196018.65"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"6/5/2016","Order ID":"813081252","Ship Date":"7/25/2016","Units Sold":"7666","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1181023.96","Total Cost":"697069.38","Total Profit":"483954.58"},{"Region":"Asia","Country":"China","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"1/1/2010","Order ID":"863776719","Ship Date":"2/10/2010","Units Sold":"9581","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1970811.70","Total Cost":"1122030.91","Total Profit":"848780.79"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/10/2012","Order ID":"663063800","Ship Date":"8/11/2012","Units Sold":"4168","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1822249.60","Total Cost":"1097559.44","Total Profit":"724690.16"},{"Region":"Europe","Country":"France","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/10/2011","Order ID":"784428822","Ship Date":"1/15/2011","Units Sold":"8775","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1338889.50","Total Cost":"855036.00","Total Profit":"483853.50"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/15/2012","Order ID":"971670615","Ship Date":"8/12/2012","Units Sold":"7783","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3283569.87","Total Cost":"2838382.27","Total Profit":"445187.60"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/3/2010","Order ID":"588900506","Ship Date":"2/3/2010","Units Sold":"7601","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3323157.20","Total Cost":"2001571.33","Total Profit":"1321585.87"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/20/2016","Order ID":"870542323","Ship Date":"6/22/2016","Units Sold":"1674","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"427338.72","Total Cost":"266869.08","Total Profit":"160469.64"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/20/2015","Order ID":"871332395","Ship Date":"6/6/2015","Units Sold":"5473","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1397147.44","Total Cost":"872505.66","Total Profit":"524641.78"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"9/20/2010","Order ID":"616319549","Ship Date":"9/24/2010","Units Sold":"1505","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"14041.65","Total Cost":"10414.60","Total Profit":"3627.05"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/1/2014","Order ID":"650865113","Ship Date":"10/29/2014","Units Sold":"4306","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2804110.26","Total Cost":"2260477.76","Total Profit":"543632.50"},{"Region":"Europe","Country":"Georgia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"5/22/2014","Order ID":"690642917","Ship Date":"6/2/2014","Units Sold":"5442","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2295925.38","Total Cost":"1984642.98","Total Profit":"311282.40"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"10/4/2012","Order ID":"971639287","Ship Date":"11/13/2012","Units Sold":"8512","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1750918.40","Total Cost":"996840.32","Total Profit":"754078.08"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"4/6/2010","Order ID":"900153052","Ship Date":"5/13/2010","Units Sold":"4146","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"632596.68","Total Cost":"403986.24","Total Profit":"228610.44"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/11/2015","Order ID":"402795541","Ship Date":"1/20/2016","Units Sold":"5006","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"46705.98","Total Cost":"34641.52","Total Profit":"12064.46"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/26/2013","Order ID":"376490581","Ship Date":"6/20/2013","Units Sold":"784","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"37200.80","Total Cost":"24923.36","Total Profit":"12277.44"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/7/2010","Order ID":"438474500","Ship Date":"2/6/2010","Units Sold":"3203","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1400351.60","Total Cost":"843445.99","Total Profit":"556905.61"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/17/2010","Order ID":"276296126","Ship Date":"7/20/2010","Units Sold":"1019","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"663582.99","Total Cost":"534934.24","Total Profit":"128648.75"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/17/2012","Order ID":"997816789","Ship Date":"12/11/2012","Units Sold":"5016","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"548148.48","Total Cost":"179773.44","Total Profit":"368375.04"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/16/2012","Order ID":"181210315","Ship Date":"10/17/2012","Units Sold":"3014","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1271576.46","Total Cost":"1099175.66","Total Profit":"172400.80"},{"Region":"Asia","Country":"Vietnam","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"1/10/2014","Order ID":"424963033","Ship Date":"2/26/2014","Units Sold":"4860","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"397207.80","Total Cost":"275416.20","Total Profit":"121791.60"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"8/7/2010","Order ID":"797873771","Ship Date":"8/7/2010","Units Sold":"7434","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3250144.80","Total Cost":"1957595.22","Total Profit":"1292549.58"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"6/2/2012","Order ID":"889053857","Ship Date":"7/9/2012","Units Sold":"9648","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1984593.60","Total Cost":"1129877.28","Total Profit":"854716.32"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/11/2011","Order ID":"357927119","Ship Date":"9/18/2011","Units Sold":"7443","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1146668.58","Total Cost":"676791.99","Total Profit":"469876.59"},{"Region":"Europe","Country":"Belgium","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"6/30/2016","Order ID":"284229886","Ship Date":"8/16/2016","Units Sold":"8794","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3710100.66","Total Cost":"3207083.86","Total Profit":"503016.80"},{"Region":"Europe","Country":"Denmark","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"7/18/2017","Order ID":"918010985","Ship Date":"9/5/2017","Units Sold":"8706","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5669434.26","Total Cost":"4570301.76","Total Profit":"1099132.50"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"11/9/2013","Order ID":"329631745","Ship Date":"12/18/2013","Units Sold":"4213","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2815421.51","Total Cost":"2117201.02","Total Profit":"698220.49"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/16/2016","Order ID":"259765994","Ship Date":"12/18/2016","Units Sold":"9385","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1025592.80","Total Cost":"336358.40","Total Profit":"689234.40"},{"Region":"Europe","Country":"Norway","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/20/2016","Order ID":"269400060","Ship Date":"10/29/2016","Units Sold":"319","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"139466.80","Total Cost":"84002.27","Total Profit":"55464.53"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"6/10/2015","Order ID":"889832770","Ship Date":"7/13/2015","Units Sold":"146","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"22492.76","Total Cost":"13275.78","Total Profit":"9216.98"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/23/2016","Order ID":"472675454","Ship Date":"7/28/2016","Units Sold":"4026","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1698529.14","Total Cost":"1468241.94","Total Profit":"230287.20"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/25/2012","Order ID":"139851939","Ship Date":"12/29/2012","Units Sold":"4151","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1059667.28","Total Cost":"661752.42","Total Profit":"397914.86"},{"Region":"Asia","Country":"Bhutan","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/27/2013","Order ID":"633598554","Ship Date":"1/25/2014","Units Sold":"4747","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"724297.26","Total Cost":"462547.68","Total Profit":"261749.58"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"2/23/2011","Order ID":"966464126","Ship Date":"3/7/2011","Units Sold":"7067","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3089692.40","Total Cost":"1860953.11","Total Profit":"1228739.29"},{"Region":"Asia","Country":"Nepal","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/1/2012","Order ID":"671309983","Ship Date":"2/5/2012","Units Sold":"4397","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"208637.65","Total Cost":"139780.63","Total Profit":"68857.02"},{"Region":"Asia","Country":"Tajikistan","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"11/16/2013","Order ID":"251309955","Ship Date":"12/25/2013","Units Sold":"7055","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3084446.00","Total Cost":"1857793.15","Total Profit":"1226652.85"},{"Region":"Europe","Country":"Iceland","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"3/1/2015","Order ID":"729950368","Ship Date":"3/28/2015","Units Sold":"7390","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"603984.70","Total Cost":"418791.30","Total Profit":"185193.40"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"7/13/2011","Order ID":"501030051","Ship Date":"8/27/2011","Units Sold":"4781","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"983451.70","Total Cost":"559902.91","Total Profit":"423548.79"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"11/11/2014","Order ID":"278660333","Ship Date":"12/27/2014","Units Sold":"640","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"279808.00","Total Cost":"168531.20","Total Profit":"111276.80"},{"Region":"Europe","Country":"Macedonia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"8/7/2011","Order ID":"847265040","Ship Date":"9/1/2011","Units Sold":"3408","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"278535.84","Total Cost":"193131.36","Total Profit":"85404.48"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"12/17/2011","Order ID":"811580502","Ship Date":"1/27/2012","Units Sold":"3561","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"543337.38","Total Cost":"346983.84","Total Profit":"196353.54"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/18/2015","Order ID":"646655547","Ship Date":"12/26/2015","Units Sold":"8601","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1325070.06","Total Cost":"782088.93","Total Profit":"542981.13"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/11/2016","Order ID":"447851502","Ship Date":"11/5/2016","Units Sold":"8067","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5253311.07","Total Cost":"4234852.32","Total Profit":"1018458.75"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/6/2012","Order ID":"380842196","Ship Date":"12/7/2012","Units Sold":"8524","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3596190.36","Total Cost":"3108617.56","Total Profit":"487572.80"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"3/31/2011","Order ID":"231613957","Ship Date":"4/26/2011","Units Sold":"8572","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"700589.56","Total Cost":"485775.24","Total Profit":"214814.32"},{"Region":"Asia","Country":"Vietnam","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/30/2015","Order ID":"756465613","Ship Date":"1/18/2016","Units Sold":"3840","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"789888.00","Total Cost":"449702.40","Total Profit":"340185.60"},{"Region":"Europe","Country":"Latvia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"1/15/2017","Order ID":"532008492","Ship Date":"2/16/2017","Units Sold":"1990","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"303634.20","Total Cost":"193905.60","Total Profit":"109728.60"},{"Region":"Asia","Country":"Taiwan","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"3/1/2017","Order ID":"905166423","Ship Date":"3/26/2017","Units Sold":"7714","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1969229.92","Total Cost":"1229765.88","Total Profit":"739464.04"},{"Region":"Europe","Country":"Italy","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"4/22/2012","Order ID":"143175733","Ship Date":"6/4/2012","Units Sold":"7736","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"72176.88","Total Cost":"53533.12","Total Profit":"18643.76"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"12/1/2010","Order ID":"183585250","Ship Date":"1/7/2011","Units Sold":"5810","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3882648.70","Total Cost":"2919757.40","Total Profit":"962891.30"},{"Region":"Europe","Country":"Macedonia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/9/2014","Order ID":"784256303","Ship Date":"12/31/2014","Units Sold":"7723","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"843969.44","Total Cost":"276792.32","Total Profit":"567177.12"},{"Region":"Europe","Country":"Croatia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/6/2016","Order ID":"873362720","Ship Date":"1/9/2016","Units Sold":"6292","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"969345.52","Total Cost":"572131.56","Total Profit":"397213.96"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"6/8/2014","Order ID":"799390828","Ship Date":"7/26/2014","Units Sold":"6365","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1624857.20","Total Cost":"1014708.30","Total Profit":"610148.90"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/1/2015","Order ID":"981139457","Ship Date":"5/9/2015","Units Sold":"9823","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4294615.60","Total Cost":"2586690.59","Total Profit":"1707925.01"},{"Region":"Asia","Country":"Malaysia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"5/2/2017","Order ID":"557719933","Ship Date":"5/7/2017","Units Sold":"577","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"88892.62","Total Cost":"52466.61","Total Profit":"36426.01"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/7/2016","Order ID":"538556087","Ship Date":"6/22/2016","Units Sold":"9569","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1460038.02","Total Cost":"932403.36","Total Profit":"527634.66"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/2/2016","Order ID":"653384244","Ship Date":"1/20/2017","Units Sold":"9772","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"463681.40","Total Cost":"310651.88","Total Profit":"153029.52"},{"Region":"Europe","Country":"Moldova ","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/19/2013","Order ID":"702253234","Ship Date":"5/11/2013","Units Sold":"1192","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"56560.40","Total Cost":"37893.68","Total Profit":"18666.72"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"12/11/2015","Order ID":"105524384","Ship Date":"1/19/2016","Units Sold":"5865","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"640927.20","Total Cost":"210201.60","Total Profit":"430725.60"},{"Region":"Europe","Country":"Russia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/14/2017","Order ID":"153871524","Ship Date":"6/22/2017","Units Sold":"2858","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1909915.66","Total Cost":"1436259.32","Total Profit":"473656.34"},{"Region":"Europe","Country":"Belgium","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/24/2011","Order ID":"858280980","Ship Date":"6/27/2011","Units Sold":"3270","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2129456.70","Total Cost":"1716619.20","Total Profit":"412837.50"},{"Region":"Europe","Country":"Moldova ","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/6/2011","Order ID":"500051581","Ship Date":"10/12/2011","Units Sold":"5230","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1075811.00","Total Cost":"612485.30","Total Profit":"463325.70"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"1/22/2010","Order ID":"580794656","Ship Date":"2/21/2010","Units Sold":"8900","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"83037.00","Total Cost":"61588.00","Total Profit":"21449.00"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/16/2011","Order ID":"872434031","Ship Date":"3/7/2011","Units Sold":"1472","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"69846.40","Total Cost":"46794.88","Total Profit":"23051.52"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/19/2012","Order ID":"767206037","Ship Date":"8/8/2012","Units Sold":"2170","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"177354.10","Total Cost":"122973.90","Total Profit":"54380.20"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/5/2017","Order ID":"627659499","Ship Date":"5/11/2017","Units Sold":"7249","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1106052.42","Total Cost":"706342.56","Total Profit":"399709.86"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"2/12/2014","Order ID":"436655747","Ship Date":"3/21/2014","Units Sold":"4994","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2183376.80","Total Cost":"1315070.02","Total Profit":"868306.78"},{"Region":"Europe","Country":"Denmark","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"7/24/2011","Order ID":"247368609","Ship Date":"8/20/2011","Units Sold":"723","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"184567.44","Total Cost":"115260.66","Total Profit":"69306.78"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"11/5/2011","Order ID":"633284413","Ship Date":"11/11/2011","Units Sold":"1786","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1193530.22","Total Cost":"897536.44","Total Profit":"295993.78"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/6/2014","Order ID":"438201987","Ship Date":"7/20/2014","Units Sold":"2561","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1080460.29","Total Cost":"933971.09","Total Profit":"146489.20"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"4/5/2012","Order ID":"826232659","Ship Date":"4/22/2012","Units Sold":"9459","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3990657.51","Total Cost":"3449602.71","Total Profit":"541054.80"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"9/19/2010","Order ID":"331800258","Ship Date":"11/8/2010","Units Sold":"5924","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1512278.72","Total Cost":"944404.08","Total Profit":"567874.64"},{"Region":"Asia","Country":"Myanmar","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"3/25/2016","Order ID":"709641110","Ship Date":"4/15/2016","Units Sold":"7429","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"352506.05","Total Cost":"236167.91","Total Profit":"116338.14"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"5/16/2017","Order ID":"184804046","Ship Date":"5/18/2017","Units Sold":"6479","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2832618.80","Total Cost":"1706115.07","Total Profit":"1126503.73"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/9/2011","Order ID":"202650392","Ship Date":"6/8/2011","Units Sold":"7609","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5084866.43","Total Cost":"3823826.86","Total Profit":"1261039.57"},{"Region":"Asia","Country":"Vietnam","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"5/18/2015","Order ID":"478853976","Ship Date":"6/10/2015","Units Sold":"2388","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"22280.04","Total Cost":"16524.96","Total Profit":"5755.08"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/3/2017","Order ID":"349401128","Ship Date":"6/23/2017","Units Sold":"4413","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1861800.57","Total Cost":"1609376.97","Total Profit":"252423.60"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"4/27/2010","Order ID":"120590674","Ship Date":"6/10/2010","Units Sold":"4315","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1886518.00","Total Cost":"1136268.95","Total Profit":"750249.05"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"9/7/2010","Order ID":"619033944","Ship Date":"10/8/2010","Units Sold":"4755","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"519626.40","Total Cost":"170419.20","Total Profit":"349207.20"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"4/5/2017","Order ID":"941654765","Ship Date":"4/12/2017","Units Sold":"5426","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"827899.08","Total Cost":"528709.44","Total Profit":"299189.64"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"9/17/2014","Order ID":"705689465","Ship Date":"9/29/2014","Units Sold":"8050","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5379573.50","Total Cost":"4045447.00","Total Profit":"1334126.50"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/13/2015","Order ID":"498686873","Ship Date":"5/5/2015","Units Sold":"1383","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"151134.24","Total Cost":"49566.72","Total Profit":"101567.52"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/11/2017","Order ID":"528508317","Ship Date":"3/11/2017","Units Sold":"6210","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1277397.00","Total Cost":"727253.10","Total Profit":"550143.90"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"8/27/2015","Order ID":"173327624","Ship Date":"9/4/2015","Units Sold":"351","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"72200.70","Total Cost":"41105.61","Total Profit":"31095.09"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"12/18/2014","Order ID":"231631124","Ship Date":"12/23/2014","Units Sold":"3652","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2440522.04","Total Cost":"1835276.08","Total Profit":"605245.96"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"5/24/2016","Order ID":"672217643","Ship Date":"7/12/2016","Units Sold":"2994","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"764308.32","Total Cost":"477303.48","Total Profit":"287004.84"},{"Region":"Asia","Country":"Brunei","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/17/2014","Order ID":"184198510","Ship Date":"11/17/2014","Units Sold":"7287","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1111850.46","Total Cost":"710045.28","Total Profit":"401805.18"},{"Region":"Asia","Country":"Brunei","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"6/2/2017","Order ID":"226997554","Ship Date":"7/8/2017","Units Sold":"2475","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1082070.00","Total Cost":"651741.75","Total Profit":"430328.25"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/18/2017","Order ID":"980351102","Ship Date":"6/25/2017","Units Sold":"6531","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4364471.37","Total Cost":"3282088.74","Total Profit":"1082382.63"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"12/15/2012","Order ID":"894307982","Ship Date":"1/13/2013","Units Sold":"4460","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1949912.00","Total Cost":"1174451.80","Total Profit":"775460.20"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/30/2010","Order ID":"739229524","Ship Date":"9/15/2010","Units Sold":"3298","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1441885.60","Total Cost":"868462.34","Total Profit":"573423.26"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"4/12/2014","Order ID":"455789554","Ship Date":"5/29/2014","Units Sold":"7112","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"66354.96","Total Cost":"49215.04","Total Profit":"17139.92"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"12/5/2013","Order ID":"504974400","Ship Date":"12/31/2013","Units Sold":"2002","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"94994.90","Total Cost":"63643.58","Total Profit":"31351.32"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/30/2011","Order ID":"518082892","Ship Date":"11/20/2011","Units Sold":"1096","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"462391.44","Total Cost":"399700.24","Total Profit":"62691.20"},{"Region":"Asia","Country":"South Korea","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"5/3/2011","Order ID":"646726357","Ship Date":"6/5/2011","Units Sold":"9556","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1472197.36","Total Cost":"868927.08","Total Profit":"603270.28"},{"Region":"Europe","Country":"Moldova ","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/2/2013","Order ID":"212828624","Ship Date":"3/22/2013","Units Sold":"9574","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6398016.98","Total Cost":"4811317.96","Total Profit":"1586699.02"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"3/24/2011","Order ID":"858626019","Ship Date":"4/11/2011","Units Sold":"5375","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"439298.75","Total Cost":"304601.25","Total Profit":"134697.50"},{"Region":"Europe","Country":"Slovakia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/19/2012","Order ID":"696667373","Ship Date":"5/23/2012","Units Sold":"8212","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"76617.96","Total Cost":"56827.04","Total Profit":"19790.92"},{"Region":"North America","Country":"Canada","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/9/2016","Order ID":"159814012","Ship Date":"6/25/2016","Units Sold":"1372","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"112133.56","Total Cost":"77751.24","Total Profit":"34382.32"},{"Region":"Sub-Saharan Africa","Country":"Mali","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/23/2013","Order ID":"651239764","Ship Date":"4/13/2013","Units Sold":"5173","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"422789.29","Total Cost":"293153.91","Total Profit":"129635.38"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"3/20/2016","Order ID":"494430959","Ship Date":"5/3/2016","Units Sold":"1963","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"501114.64","Total Cost":"312941.46","Total Profit":"188173.18"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/28/2013","Order ID":"783186423","Ship Date":"9/21/2013","Units Sold":"1122","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"749798.94","Total Cost":"563849.88","Total Profit":"185949.06"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"5/9/2017","Order ID":"431617486","Ship Date":"6/25/2017","Units Sold":"4060","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1775032.00","Total Cost":"1069119.80","Total Profit":"705912.20"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"9/27/2013","Order ID":"224147975","Ship Date":"10/2/2013","Units Sold":"9222","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"86041.26","Total Cost":"63816.24","Total Profit":"22225.02"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/16/2013","Order ID":"565514218","Ship Date":"1/24/2013","Units Sold":"7079","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"66047.07","Total Cost":"48986.68","Total Profit":"17060.39"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/13/2015","Order ID":"130765044","Ship Date":"5/2/2015","Units Sold":"5137","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"783803.46","Total Cost":"500549.28","Total Profit":"283254.18"},{"Region":"Europe","Country":"Moldova ","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"8/14/2013","Order ID":"815261781","Ship Date":"9/24/2013","Units Sold":"2933","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"27364.89","Total Cost":"20296.36","Total Profit":"7068.53"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/26/2014","Order ID":"984678256","Ship Date":"3/25/2014","Units Sold":"7033","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"768566.24","Total Cost":"252062.72","Total Profit":"516503.52"},{"Region":"Europe","Country":"Italy","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"2/23/2016","Order ID":"425000798","Ship Date":"3/14/2016","Units Sold":"6036","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4033677.72","Total Cost":"3033331.44","Total Profit":"1000346.28"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/16/2016","Order ID":"792528235","Ship Date":"4/4/2016","Units Sold":"5571","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1145954.70","Total Cost":"652419.81","Total Profit":"493534.89"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/7/2012","Order ID":"663871896","Ship Date":"2/12/2012","Units Sold":"3302","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"842934.56","Total Cost":"526404.84","Total Profit":"316529.72"},{"Region":"Europe","Country":"Spain","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/7/2013","Order ID":"485955607","Ship Date":"9/28/2013","Units Sold":"3918","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1652965.02","Total Cost":"1428855.42","Total Profit":"224109.60"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"3/27/2017","Order ID":"326015698","Ship Date":"5/5/2017","Units Sold":"4145","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"638578.70","Total Cost":"376904.85","Total Profit":"261673.85"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/22/2015","Order ID":"321600997","Ship Date":"2/1/2016","Units Sold":"7737","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"632345.01","Total Cost":"438455.79","Total Profit":"193889.22"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/2/2011","Order ID":"230572831","Ship Date":"12/14/2011","Units Sold":"479","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"320101.33","Total Cost":"240716.66","Total Profit":"79384.67"},{"Region":"Europe","Country":"Albania","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"8/15/2011","Order ID":"781105029","Ship Date":"9/30/2011","Units Sold":"5191","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"424260.43","Total Cost":"294173.97","Total Profit":"130086.46"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"8/11/2015","Order ID":"521683919","Ship Date":"8/31/2015","Units Sold":"6719","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4490106.13","Total Cost":"3376566.26","Total Profit":"1113539.87"},{"Region":"Europe","Country":"Denmark","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/16/2013","Order ID":"771108329","Ship Date":"11/5/2013","Units Sold":"6945","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"567614.85","Total Cost":"393573.15","Total Profit":"174041.70"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/14/2012","Order ID":"668489587","Ship Date":"5/28/2012","Units Sold":"9779","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"799237.67","Total Cost":"554175.93","Total Profit":"245061.74"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/28/2014","Order ID":"323251521","Ship Date":"11/5/2014","Units Sold":"6163","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"57500.79","Total Cost":"42647.96","Total Profit":"14852.83"},{"Region":"Europe","Country":"Georgia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/20/2010","Order ID":"365130460","Ship Date":"8/12/2010","Units Sold":"9072","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6062545.44","Total Cost":"4559042.88","Total Profit":"1503502.56"},{"Region":"Europe","Country":"Malta","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/9/2016","Order ID":"594175231","Ship Date":"7/26/2016","Units Sold":"8510","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"79398.30","Total Cost":"58889.20","Total Profit":"20509.10"},{"Region":"Europe","Country":"Greece","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/25/2012","Order ID":"430747163","Ship Date":"12/6/2012","Units Sold":"6512","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"993600.96","Total Cost":"634529.28","Total Profit":"359071.68"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"1/4/2015","Order ID":"265520083","Ship Date":"1/20/2015","Units Sold":"2148","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"234733.44","Total Cost":"76984.32","Total Profit":"157749.12"},{"Region":"Europe","Country":"Belarus","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/1/2016","Order ID":"109480321","Ship Date":"7/5/2016","Units Sold":"6515","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"711959.20","Total Cost":"233497.60","Total Profit":"478461.60"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"11/18/2015","Order ID":"943926703","Ship Date":"12/27/2015","Units Sold":"7743","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1181426.94","Total Cost":"754477.92","Total Profit":"426949.02"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/23/2012","Order ID":"670470559","Ship Date":"11/4/2012","Units Sold":"5993","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4004942.11","Total Cost":"3011722.22","Total Profit":"993219.89"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/21/2011","Order ID":"861035716","Ship Date":"7/19/2011","Units Sold":"8457","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"78903.81","Total Cost":"58522.44","Total Profit":"20381.37"},{"Region":"Europe","Country":"Italy","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"1/9/2010","Order ID":"907858502","Ship Date":"2/1/2010","Units Sold":"4360","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1113020.80","Total Cost":"695071.20","Total Profit":"417949.60"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"2/27/2011","Order ID":"273487746","Ship Date":"4/11/2011","Units Sold":"9956","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"813703.88","Total Cost":"564206.52","Total Profit":"249497.36"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"2/19/2011","Order ID":"740784776","Ship Date":"3/4/2011","Units Sold":"3532","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2300073.72","Total Cost":"1854158.72","Total Profit":"445915.00"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"1/26/2011","Order ID":"562923419","Ship Date":"1/27/2011","Units Sold":"404","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"103133.12","Total Cost":"64405.68","Total Profit":"38727.44"},{"Region":"Asia","Country":"Japan","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"2/18/2013","Order ID":"313390004","Ship Date":"3/27/2013","Units Sold":"7921","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5293366.67","Total Cost":"3980619.34","Total Profit":"1312747.33"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"10/16/2016","Order ID":"635983359","Ship Date":"11/22/2016","Units Sold":"464","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"310077.28","Total Cost":"233178.56","Total Profit":"76898.72"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/27/2014","Order ID":"894814813","Ship Date":"1/29/2015","Units Sold":"4443","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"913925.10","Total Cost":"520319.73","Total Profit":"393605.37"},{"Region":"Europe","Country":"Norway","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/4/2013","Order ID":"524308192","Ship Date":"3/20/2013","Units Sold":"3300","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"30789.00","Total Cost":"22836.00","Total Profit":"7953.00"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/20/2017","Order ID":"379199826","Ship Date":"7/22/2017","Units Sold":"2510","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"119099.50","Total Cost":"79792.90","Total Profit":"39306.60"},{"Region":"Asia","Country":"Myanmar","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"12/4/2016","Order ID":"484538543","Ship Date":"1/2/2017","Units Sold":"4577","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"705132.62","Total Cost":"416186.61","Total Profit":"288946.01"},{"Region":"Europe","Country":"Slovakia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/2/2016","Order ID":"485685670","Ship Date":"1/10/2016","Units Sold":"4038","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"830616.60","Total Cost":"472890.18","Total Profit":"357726.42"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"11/2/2016","Order ID":"998315036","Ship Date":"11/15/2016","Units Sold":"2459","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1075074.80","Total Cost":"647528.47","Total Profit":"427546.33"},{"Region":"Central America and the Caribbean","Country":"Saint Lucia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/27/2014","Order ID":"458412969","Ship Date":"1/24/2015","Units Sold":"3439","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"707402.30","Total Cost":"402741.29","Total Profit":"304661.01"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"11/7/2010","Order ID":"972278296","Ship Date":"12/5/2010","Units Sold":"7609","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"831511.52","Total Cost":"272706.56","Total Profit":"558804.96"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"6/20/2013","Order ID":"666522347","Ship Date":"8/9/2013","Units Sold":"7629","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3218598.81","Total Cost":"2782220.01","Total Profit":"436378.80"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/6/2014","Order ID":"438068950","Ship Date":"1/24/2014","Units Sold":"3192","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"151460.40","Total Cost":"101473.68","Total Profit":"49986.72"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"4/22/2012","Order ID":"804154431","Ship Date":"5/14/2012","Units Sold":"6021","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"927595.26","Total Cost":"547489.53","Total Profit":"380105.73"},{"Region":"Europe","Country":"Ireland","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"12/31/2012","Order ID":"552327620","Ship Date":"2/9/2013","Units Sold":"4872","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"45455.76","Total Cost":"33714.24","Total Profit":"11741.52"},{"Region":"Europe","Country":"Hungary","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"4/2/2014","Order ID":"790449845","Ship Date":"4/13/2014","Units Sold":"530","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"354183.10","Total Cost":"266346.20","Total Profit":"87836.90"},{"Region":"Central America and the Caribbean","Country":"Saint Lucia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/30/2011","Order ID":"896694934","Ship Date":"7/15/2011","Units Sold":"812","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"38529.40","Total Cost":"25813.48","Total Profit":"12715.92"},{"Region":"Europe","Country":"Greece","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"5/16/2016","Order ID":"769549214","Ship Date":"6/28/2016","Units Sold":"5568","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"264201.60","Total Cost":"177006.72","Total Profit":"87194.88"},{"Region":"Asia","Country":"Laos","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"2/3/2015","Order ID":"377811515","Ship Date":"2/27/2015","Units Sold":"1678","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"79621.10","Total Cost":"53343.62","Total Profit":"26277.48"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"1/24/2010","Order ID":"210593163","Ship Date":"1/27/2010","Units Sold":"8052","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5380910.04","Total Cost":"4046452.08","Total Profit":"1334457.96"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"2/17/2016","Order ID":"827317988","Ship Date":"2/29/2016","Units Sold":"632","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"276310.40","Total Cost":"166424.56","Total Profit":"109885.84"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/1/2011","Order ID":"607722318","Ship Date":"6/16/2011","Units Sold":"7394","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1887540.32","Total Cost":"1178751.48","Total Profit":"708788.84"},{"Region":"Europe","Country":"Croatia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/31/2016","Order ID":"701854979","Ship Date":"7/7/2016","Units Sold":"3340","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"687038.00","Total Cost":"391147.40","Total Profit":"295890.60"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/7/2015","Order ID":"980077302","Ship Date":"6/9/2015","Units Sold":"5508","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"840410.64","Total Cost":"536699.52","Total Profit":"303711.12"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/27/2012","Order ID":"483063113","Ship Date":"2/14/2012","Units Sold":"7965","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2033305.20","Total Cost":"1269780.30","Total Profit":"763524.90"},{"Region":"Europe","Country":"Montenegro","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/12/2011","Order ID":"571798741","Ship Date":"9/22/2011","Units Sold":"6809","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1038917.22","Total Cost":"663468.96","Total Profit":"375448.26"},{"Region":"North America","Country":"Mexico","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/6/2016","Order ID":"877583014","Ship Date":"5/14/2016","Units Sold":"5171","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"245363.95","Total Cost":"164386.09","Total Profit":"80977.86"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/29/2014","Order ID":"652027261","Ship Date":"4/6/2014","Units Sold":"8211","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1264986.66","Total Cost":"746626.23","Total Profit":"518360.43"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"10/2/2013","Order ID":"117055308","Ship Date":"11/12/2013","Units Sold":"8122","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"663811.06","Total Cost":"460273.74","Total Profit":"203537.32"},{"Region":"Europe","Country":"Ireland","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"7/6/2016","Order ID":"914903485","Ship Date":"8/11/2016","Units Sold":"9127","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"745949.71","Total Cost":"517227.09","Total Profit":"228722.62"},{"Region":"Asia","Country":"Vietnam","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/3/2013","Order ID":"258120620","Ship Date":"1/5/2014","Units Sold":"2482","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"202853.86","Total Cost":"140654.94","Total Profit":"62198.92"},{"Region":"Asia","Country":"Indonesia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"8/10/2013","Order ID":"379568040","Ship Date":"9/16/2013","Units Sold":"1473","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"959232.33","Total Cost":"773266.08","Total Profit":"185966.25"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/22/2012","Order ID":"882419574","Ship Date":"12/28/2012","Units Sold":"6416","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2805075.20","Total Cost":"1689525.28","Total Profit":"1115549.92"},{"Region":"Asia","Country":"Thailand","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"3/4/2010","Order ID":"990161550","Ship Date":"4/10/2010","Units Sold":"9661","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"789593.53","Total Cost":"547488.87","Total Profit":"242104.66"},{"Region":"North America","Country":"Canada","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"4/4/2016","Order ID":"896592795","Ship Date":"5/6/2016","Units Sold":"587","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"382260.27","Total Cost":"308151.52","Total Profit":"74108.75"},{"Region":"Europe","Country":"Portugal","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/28/2012","Order ID":"415824639","Ship Date":"10/24/2012","Units Sold":"606","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"93360.36","Total Cost":"55103.58","Total Profit":"38256.78"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/9/2016","Order ID":"332280910","Ship Date":"5/23/2016","Units Sold":"8160","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2083084.80","Total Cost":"1300867.20","Total Profit":"782217.60"},{"Region":"Asia","Country":"Myanmar","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"8/8/2014","Order ID":"150697934","Ship Date":"8/11/2014","Units Sold":"3722","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"176608.90","Total Cost":"118322.38","Total Profit":"58286.52"},{"Region":"Asia","Country":"Taiwan","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/27/2014","Order ID":"346124541","Ship Date":"2/6/2015","Units Sold":"4798","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"392140.54","Total Cost":"271902.66","Total Profit":"120237.88"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"12/6/2010","Order ID":"113922059","Ship Date":"1/9/2011","Units Sold":"924","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"403972.80","Total Cost":"243316.92","Total Profit":"160655.88"},{"Region":"Europe","Country":"Cyprus","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"11/8/2015","Order ID":"519764316","Ship Date":"12/9/2015","Units Sold":"8666","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"80853.78","Total Cost":"59968.72","Total Profit":"20885.06"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"12/12/2013","Order ID":"449637639","Ship Date":"1/24/2014","Units Sold":"6624","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1010689.92","Total Cost":"645442.56","Total Profit":"365247.36"},{"Region":"Europe","Country":"Belarus","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"12/21/2016","Order ID":"659840857","Ship Date":"1/8/2017","Units Sold":"428","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"3993.24","Total Cost":"2961.76","Total Profit":"1031.48"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/15/2015","Order ID":"626985299","Ship Date":"2/3/2015","Units Sold":"7738","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1192116.28","Total Cost":"703616.34","Total Profit":"488499.94"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/6/2010","Order ID":"797994792","Ship Date":"10/22/2010","Units Sold":"3247","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1419588.40","Total Cost":"855032.51","Total Profit":"564555.89"},{"Region":"Europe","Country":"Austria","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"1/25/2015","Order ID":"340105664","Ship Date":"2/7/2015","Units Sold":"3679","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2458565.33","Total Cost":"1848844.66","Total Profit":"609720.67"},{"Region":"Europe","Country":"Russia","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"12/6/2013","Order ID":"290866744","Ship Date":"12/28/2013","Units Sold":"2788","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1863136.76","Total Cost":"1401081.52","Total Profit":"462055.24"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/12/2016","Order ID":"408139359","Ship Date":"11/20/2016","Units Sold":"6361","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"970561.38","Total Cost":"619815.84","Total Profit":"350745.54"},{"Region":"Europe","Country":"Austria","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/9/2015","Order ID":"520097339","Ship Date":"4/25/2015","Units Sold":"7215","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1841845.20","Total Cost":"1150215.30","Total Profit":"691629.90"},{"Region":"Europe","Country":"Denmark","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/3/2017","Order ID":"975227010","Ship Date":"4/24/2017","Units Sold":"199","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"83956.11","Total Cost":"72573.31","Total Profit":"11382.80"},{"Region":"Asia","Country":"Laos","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"9/21/2012","Order ID":"392327201","Ship Date":"9/30/2012","Units Sold":"7192","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1479394.40","Total Cost":"842255.12","Total Profit":"637139.28"},{"Region":"Europe","Country":"Moldova ","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"6/14/2015","Order ID":"610509240","Ship Date":"6/14/2015","Units Sold":"2106","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"433204.20","Total Cost":"246633.66","Total Profit":"186570.54"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/8/2013","Order ID":"839196956","Ship Date":"11/26/2013","Units Sold":"5883","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"897628.14","Total Cost":"573239.52","Total Profit":"324388.62"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/23/2012","Order ID":"808126676","Ship Date":"4/18/2012","Units Sold":"1497","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1000400.19","Total Cost":"752302.38","Total Profit":"248097.81"},{"Region":"Europe","Country":"San Marino","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"8/22/2012","Order ID":"317347228","Ship Date":"10/1/2012","Units Sold":"8952","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"978274.56","Total Cost":"320839.68","Total Profit":"657434.88"},{"Region":"Asia","Country":"Brunei","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/2/2010","Order ID":"587219941","Ship Date":"5/14/2010","Units Sold":"285","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"124602.00","Total Cost":"75049.05","Total Profit":"49552.95"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"1/14/2013","Order ID":"208418643","Ship Date":"1/16/2013","Units Sold":"4563","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1164842.64","Total Cost":"727433.46","Total Profit":"437409.18"},{"Region":"Europe","Country":"Georgia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"6/2/2014","Order ID":"991929662","Ship Date":"7/6/2014","Units Sold":"2885","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"26917.05","Total Cost":"19964.20","Total Profit":"6952.85"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"12/23/2012","Order ID":"319051826","Ship Date":"1/11/2013","Units Sold":"3380","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"369366.40","Total Cost":"121139.20","Total Profit":"248227.20"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"11/14/2015","Order ID":"591396462","Ship Date":"12/16/2015","Units Sold":"6210","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"956712.60","Total Cost":"564675.30","Total Profit":"392037.30"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"5/15/2012","Order ID":"680887401","Ship Date":"6/19/2012","Units Sold":"8568","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"936311.04","Total Cost":"307077.12","Total Profit":"629233.92"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/19/2015","Order ID":"879760968","Ship Date":"7/23/2015","Units Sold":"9676","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"790819.48","Total Cost":"548338.92","Total Profit":"242480.56"},{"Region":"Europe","Country":"Hungary","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/7/2013","Order ID":"650565993","Ship Date":"1/13/2013","Units Sold":"5789","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3769854.69","Total Cost":"3038993.44","Total Profit":"730861.25"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"3/13/2016","Order ID":"876163804","Ship Date":"3/30/2016","Units Sold":"5195","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"792653.10","Total Cost":"506200.80","Total Profit":"286452.30"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"1/19/2011","Order ID":"709728229","Ship Date":"1/22/2011","Units Sold":"3209","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1402974.80","Total Cost":"845025.97","Total Profit":"557948.83"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/25/2014","Order ID":"724745595","Ship Date":"1/9/2015","Units Sold":"7182","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"784848.96","Total Cost":"257402.88","Total Profit":"527446.08"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"1/21/2012","Order ID":"665014731","Ship Date":"1/29/2012","Units Sold":"1492","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"380877.76","Total Cost":"237854.64","Total Profit":"143023.12"},{"Region":"Asia","Country":"Mongolia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"8/13/2010","Order ID":"794646966","Ship Date":"9/8/2010","Units Sold":"2551","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"389231.58","Total Cost":"248569.44","Total Profit":"140662.14"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/12/2015","Order ID":"548066127","Ship Date":"12/28/2015","Units Sold":"3801","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"310655.73","Total Cost":"215402.67","Total Profit":"95253.06"},{"Region":"Europe","Country":"Austria","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"10/10/2011","Order ID":"780008542","Ship Date":"10/22/2011","Units Sold":"716","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"313035.20","Total Cost":"188544.28","Total Profit":"124490.92"},{"Region":"Europe","Country":"Lithuania","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"12/14/2016","Order ID":"615523040","Ship Date":"1/17/2017","Units Sold":"5801","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"474115.73","Total Cost":"328742.67","Total Profit":"145373.06"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/21/2013","Order ID":"599970948","Ship Date":"8/6/2013","Units Sold":"3591","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2399757.57","Total Cost":"1804621.14","Total Profit":"595136.43"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/15/2011","Order ID":"449026095","Ship Date":"4/15/2011","Units Sold":"5655","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"52761.15","Total Cost":"39132.60","Total Profit":"13628.55"},{"Region":"Europe","Country":"Romania","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"1/9/2013","Order ID":"398674809","Ship Date":"1/24/2013","Units Sold":"5590","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"265245.50","Total Cost":"177706.10","Total Profit":"87539.40"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"11/8/2011","Order ID":"755215919","Ship Date":"12/19/2011","Units Sold":"4028","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1699372.92","Total Cost":"1468971.32","Total Profit":"230401.60"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"9/22/2016","Order ID":"545260751","Ship Date":"11/7/2016","Units Sold":"3628","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2362589.88","Total Cost":"1904554.88","Total Profit":"458035.00"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/1/2011","Order ID":"665733134","Ship Date":"4/7/2011","Units Sold":"4083","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"38094.39","Total Cost":"28254.36","Total Profit":"9840.03"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"5/17/2010","Order ID":"733869397","Ship Date":"5/27/2010","Units Sold":"7118","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"66410.94","Total Cost":"49256.56","Total Profit":"17154.38"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"3/12/2011","Order ID":"437218368","Ship Date":"4/17/2011","Units Sold":"1486","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"70510.70","Total Cost":"47239.94","Total Profit":"23270.76"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/10/2011","Order ID":"883641374","Ship Date":"12/2/2011","Units Sold":"7974","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1228474.44","Total Cost":"725075.82","Total Profit":"503398.62"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/20/2015","Order ID":"551312243","Ship Date":"7/8/2015","Units Sold":"4399","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"671199.42","Total Cost":"428638.56","Total Profit":"242560.86"},{"Region":"Asia","Country":"Laos","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/7/2010","Order ID":"238717305","Ship Date":"9/14/2010","Units Sold":"610","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"397238.10","Total Cost":"320225.60","Total Profit":"77012.50"},{"Region":"Europe","Country":"Denmark","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/5/2014","Order ID":"814655387","Ship Date":"5/3/2014","Units Sold":"3487","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"717275.90","Total Cost":"408362.57","Total Profit":"308913.33"},{"Region":"Europe","Country":"Moldova ","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"5/19/2013","Order ID":"968237817","Ship Date":"5/22/2013","Units Sold":"1941","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"212112.48","Total Cost":"69565.44","Total Profit":"142547.04"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/25/2015","Order ID":"358888423","Ship Date":"5/12/2015","Units Sold":"1915","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"295024.90","Total Cost":"174130.95","Total Profit":"120893.95"},{"Region":"Europe","Country":"Belgium","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"3/29/2013","Order ID":"966343533","Ship Date":"4/10/2013","Units Sold":"1381","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"112869.13","Total Cost":"78261.27","Total Profit":"34607.86"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"10/10/2012","Order ID":"340651977","Ship Date":"11/3/2012","Units Sold":"5345","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2336834.00","Total Cost":"1407498.85","Total Profit":"929335.15"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"1/5/2013","Order ID":"152175080","Ship Date":"2/22/2013","Units Sold":"843","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"92123.04","Total Cost":"30213.12","Total Profit":"61909.92"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"5/4/2010","Order ID":"341586673","Ship Date":"5/22/2010","Units Sold":"1942","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"296310.36","Total Cost":"189228.48","Total Profit":"107081.88"},{"Region":"Asia","Country":"India","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"5/4/2017","Order ID":"469873082","Ship Date":"6/8/2017","Units Sold":"4741","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"224960.45","Total Cost":"150716.39","Total Profit":"74244.06"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/6/2013","Order ID":"168333137","Ship Date":"9/8/2013","Units Sold":"2371","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1544018.91","Total Cost":"1244680.16","Total Profit":"299338.75"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"1/16/2010","Order ID":"488578164","Ship Date":"1/28/2010","Units Sold":"9991","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"816564.43","Total Cost":"566189.97","Total Profit":"250374.46"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/21/2014","Order ID":"752531993","Ship Date":"12/2/2014","Units Sold":"9794","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6545036.38","Total Cost":"4921876.76","Total Profit":"1623159.62"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/12/2014","Order ID":"802430951","Ship Date":"10/13/2014","Units Sold":"6005","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"656226.40","Total Cost":"215219.20","Total Profit":"441007.20"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"1/8/2016","Order ID":"550823867","Ship Date":"1/19/2016","Units Sold":"9878","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"2031904.60","Total Cost":"1156812.58","Total Profit":"875092.02"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"5/3/2011","Order ID":"430572068","Ship Date":"5/7/2011","Units Sold":"4698","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1982039.22","Total Cost":"1713313.62","Total Profit":"268725.60"},{"Region":"Europe","Country":"Iceland","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/10/2013","Order ID":"944849383","Ship Date":"2/12/2013","Units Sold":"784","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"200139.52","Total Cost":"124985.28","Total Profit":"75154.24"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"3/4/2012","Order ID":"417142140","Ship Date":"3/13/2012","Units Sold":"484","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"74565.04","Total Cost":"44010.12","Total Profit":"30554.92"},{"Region":"Asia","Country":"Laos","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/5/2011","Order ID":"841249167","Ship Date":"10/22/2011","Units Sold":"3178","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"489602.68","Total Cost":"288975.54","Total Profit":"200627.14"},{"Region":"Europe","Country":"Romania","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/6/2016","Order ID":"231281793","Ship Date":"4/8/2016","Units Sold":"277","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"185110.79","Total Cost":"139203.58","Total Profit":"45907.21"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/15/2011","Order ID":"271663844","Ship Date":"11/15/2011","Units Sold":"223","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"56927.44","Total Cost":"35550.66","Total Profit":"21376.78"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"8/19/2016","Order ID":"467131650","Ship Date":"9/16/2016","Units Sold":"3491","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"381496.48","Total Cost":"125117.44","Total Profit":"256379.04"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"4/2/2015","Order ID":"392734038","Ship Date":"4/11/2015","Units Sold":"7584","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4938776.64","Total Cost":"3981296.64","Total Profit":"957480.00"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/16/2016","Order ID":"143832337","Ship Date":"4/21/2016","Units Sold":"2040","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1328468.40","Total Cost":"1070918.40","Total Profit":"257550.00"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"6/15/2010","Order ID":"786100375","Ship Date":"6/28/2010","Units Sold":"3425","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"874334.00","Total Cost":"546013.50","Total Profit":"328320.50"},{"Region":"Asia","Country":"India","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"3/21/2012","Order ID":"305524480","Ship Date":"5/4/2012","Units Sold":"338","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"3153.54","Total Cost":"2338.96","Total Profit":"814.58"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"8/22/2010","Order ID":"358403480","Ship Date":"10/6/2010","Units Sold":"8409","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"687267.57","Total Cost":"476538.03","Total Profit":"210729.54"},{"Region":"Europe","Country":"Hungary","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"12/17/2010","Order ID":"421348702","Ship Date":"1/16/2011","Units Sold":"5299","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"808521.42","Total Cost":"516334.56","Total Profit":"292186.86"},{"Region":"Europe","Country":"Portugal","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/21/2015","Order ID":"941283977","Ship Date":"11/9/2015","Units Sold":"5701","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1172695.70","Total Cost":"667644.11","Total Profit":"505051.59"},{"Region":"Europe","Country":"Denmark","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/16/2013","Order ID":"185445630","Ship Date":"5/31/2013","Units Sold":"6338","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2770973.60","Total Cost":"1668985.54","Total Profit":"1101988.06"},{"Region":"Europe","Country":"Poland","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"5/11/2012","Order ID":"991382491","Ship Date":"6/12/2012","Units Sold":"965","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"246345.20","Total Cost":"153840.30","Total Profit":"92504.90"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"8/17/2014","Order ID":"416955888","Ship Date":"8/30/2014","Units Sold":"5368","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2346889.60","Total Cost":"1413555.44","Total Profit":"933334.16"},{"Region":"Europe","Country":"Hungary","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"10/28/2011","Order ID":"990339648","Ship Date":"11/11/2011","Units Sold":"2364","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"193209.72","Total Cost":"133967.88","Total Profit":"59241.84"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"10/20/2011","Order ID":"360020101","Ship Date":"10/20/2011","Units Sold":"6803","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"556009.19","Total Cost":"385526.01","Total Profit":"170483.18"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/17/2012","Order ID":"744796073","Ship Date":"3/16/2012","Units Sold":"564","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"86055.12","Total Cost":"54956.16","Total Profit":"31098.96"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"6/7/2011","Order ID":"383778893","Ship Date":"6/21/2011","Units Sold":"7558","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5050784.66","Total Cost":"3798197.32","Total Profit":"1252587.34"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"3/10/2013","Order ID":"286392390","Ship Date":"3/27/2013","Units Sold":"8727","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5831992.29","Total Cost":"4385666.58","Total Profit":"1446325.71"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"5/17/2014","Order ID":"182372891","Ship Date":"5/23/2014","Units Sold":"7046","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"769986.88","Total Cost":"252528.64","Total Profit":"517458.24"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/23/2016","Order ID":"771769225","Ship Date":"12/3/2016","Units Sold":"2519","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1640397.99","Total Cost":"1322374.24","Total Profit":"318023.75"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"10/24/2015","Order ID":"574942719","Ship Date":"12/4/2015","Units Sold":"7182","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"586984.86","Total Cost":"407003.94","Total Profit":"179980.92"},{"Region":"Europe","Country":"Macedonia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/18/2011","Order ID":"882567203","Ship Date":"8/3/2011","Units Sold":"103","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"43454.67","Total Cost":"37563.07","Total Profit":"5891.60"},{"Region":"Europe","Country":"Russia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"10/23/2012","Order ID":"805629003","Ship Date":"12/4/2012","Units Sold":"2380","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"112931.00","Total Cost":"75660.20","Total Profit":"37270.80"},{"Region":"Asia","Country":"Japan","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"7/20/2010","Order ID":"425426948","Ship Date":"8/17/2010","Units Sold":"2143","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"101685.35","Total Cost":"68125.97","Total Profit":"33559.38"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/29/2011","Order ID":"343572366","Ship Date":"1/18/2012","Units Sold":"9553","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1965052.10","Total Cost":"1118751.83","Total Profit":"846300.27"},{"Region":"Europe","Country":"Italy","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"9/28/2013","Order ID":"331989085","Ship Date":"10/17/2013","Units Sold":"1803","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1174131.63","Total Cost":"946502.88","Total Profit":"227628.75"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"12/19/2013","Order ID":"682913434","Ship Date":"1/2/2014","Units Sold":"8116","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1250350.96","Total Cost":"737987.88","Total Profit":"512363.08"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"5/10/2015","Order ID":"858894240","Ship Date":"6/27/2015","Units Sold":"4747","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"387972.31","Total Cost":"269012.49","Total Profit":"118959.82"},{"Region":"Asia","Country":"China","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"3/1/2014","Order ID":"842792832","Ship Date":"4/20/2014","Units Sold":"9983","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6501029.43","Total Cost":"5240675.68","Total Profit":"1260353.75"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"7/5/2011","Order ID":"687783038","Ship Date":"8/8/2011","Units Sold":"9140","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"747012.20","Total Cost":"517963.80","Total Profit":"229048.40"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/20/2017","Order ID":"967351186","Ship Date":"3/23/2017","Units Sold":"9567","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4182692.40","Total Cost":"2519278.11","Total Profit":"1663414.29"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/15/2015","Order ID":"525296103","Ship Date":"5/23/2015","Units Sold":"5645","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2381569.05","Total Cost":"2058675.05","Total Profit":"322894.00"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"4/15/2014","Order ID":"525729119","Ship Date":"6/2/2014","Units Sold":"3784","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"577362.72","Total Cost":"368712.96","Total Profit":"208649.76"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/13/2011","Order ID":"403074061","Ship Date":"9/30/2011","Units Sold":"7427","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3247084.40","Total Cost":"1955751.91","Total Profit":"1291332.49"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/15/2014","Order ID":"112067258","Ship Date":"3/6/2014","Units Sold":"2047","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"167301.31","Total Cost":"116003.49","Total Profit":"51297.82"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/15/2017","Order ID":"577757537","Ship Date":"7/2/2017","Units Sold":"149","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"30649.30","Total Cost":"17449.39","Total Profit":"13199.91"},{"Region":"Europe","Country":"Iceland","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/29/2011","Order ID":"545506227","Ship Date":"7/31/2011","Units Sold":"6270","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4083086.70","Total Cost":"3291499.20","Total Profit":"791587.50"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"8/10/2013","Order ID":"630987155","Ship Date":"9/7/2013","Units Sold":"1976","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"833654.64","Total Cost":"720627.44","Total Profit":"113027.20"},{"Region":"Europe","Country":"Georgia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"7/15/2011","Order ID":"170186650","Ship Date":"8/13/2011","Units Sold":"867","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"41139.15","Total Cost":"27561.93","Total Profit":"13577.22"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"4/30/2013","Order ID":"369403541","Ship Date":"6/1/2013","Units Sold":"3571","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2325470.91","Total Cost":"1874632.16","Total Profit":"450838.75"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/20/2012","Order ID":"255249154","Ship Date":"12/11/2012","Units Sold":"2752","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1161041.28","Total Cost":"1003626.88","Total Profit":"157414.40"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"7/11/2016","Order ID":"724647319","Ship Date":"8/3/2016","Units Sold":"8100","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"885168.00","Total Cost":"290304.00","Total Profit":"594864.00"},{"Region":"Europe","Country":"Sweden","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"6/27/2016","Order ID":"494834363","Ship Date":"7/24/2016","Units Sold":"1339","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"206286.34","Total Cost":"121755.27","Total Profit":"84531.07"},{"Region":"Europe","Country":"France","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"6/6/2017","Order ID":"153359115","Ship Date":"6/15/2017","Units Sold":"1225","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"186910.50","Total Cost":"119364.00","Total Profit":"67546.50"},{"Region":"Asia","Country":"India","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"7/7/2017","Order ID":"808082902","Ship Date":"7/18/2017","Units Sold":"8543","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"79706.19","Total Cost":"59117.56","Total Profit":"20588.63"},{"Region":"Sub-Saharan Africa","Country":"Mali","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"3/2/2012","Order ID":"937179553","Ship Date":"3/13/2012","Units Sold":"1111","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"283616.08","Total Cost":"177115.62","Total Profit":"106500.46"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/14/2013","Order ID":"439135396","Ship Date":"1/14/2013","Units Sold":"8777","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2240592.56","Total Cost":"1399229.34","Total Profit":"841363.22"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/26/2013","Order ID":"182749259","Ship Date":"12/5/2013","Units Sold":"8422","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5484490.62","Total Cost":"4421213.12","Total Profit":"1063277.50"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"3/4/2017","Order ID":"657132470","Ship Date":"4/5/2017","Units Sold":"8956","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2286287.68","Total Cost":"1427765.52","Total Profit":"858522.16"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/21/2014","Order ID":"621708858","Ship Date":"2/9/2015","Units Sold":"6322","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"690868.16","Total Cost":"226580.48","Total Profit":"464287.68"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/18/2015","Order ID":"256214749","Ship Date":"8/25/2015","Units Sold":"8493","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"79239.69","Total Cost":"58771.56","Total Profit":"20468.13"},{"Region":"North America","Country":"United States of America","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"3/7/2017","Order ID":"710698974","Ship Date":"4/15/2017","Units Sold":"474","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"199975.86","Total Cost":"172863.06","Total Profit":"27112.80"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/26/2011","Order ID":"955522859","Ship Date":"4/8/2011","Units Sold":"9303","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1419451.74","Total Cost":"906484.32","Total Profit":"512967.42"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"8/26/2016","Order ID":"931360232","Ship Date":"10/12/2016","Units Sold":"9044","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"429137.80","Total Cost":"287508.76","Total Profit":"141629.04"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"12/21/2015","Order ID":"199197423","Ship Date":"12/27/2015","Units Sold":"5799","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"54104.67","Total Cost":"40129.08","Total Profit":"13975.59"},{"Region":"Europe","Country":"Lithuania","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/29/2011","Order ID":"190333259","Ship Date":"6/3/2011","Units Sold":"2696","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1178691.20","Total Cost":"709937.68","Total Profit":"468753.52"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"11/22/2013","Order ID":"156379067","Ship Date":"1/5/2014","Units Sold":"4896","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1249850.88","Total Cost":"780520.32","Total Profit":"469330.56"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/1/2016","Order ID":"319258677","Ship Date":"7/10/2016","Units Sold":"4592","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"217890.40","Total Cost":"145979.68","Total Profit":"71910.72"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/10/2013","Order ID":"521208417","Ship Date":"5/14/2013","Units Sold":"6008","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2626697.60","Total Cost":"1582086.64","Total Profit":"1044610.96"},{"Region":"Central America and the Caribbean","Country":"Saint Lucia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"1/7/2011","Order ID":"674777114","Ship Date":"1/24/2011","Units Sold":"398","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"43493.44","Total Cost":"14264.32","Total Profit":"29229.12"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"2/9/2017","Order ID":"312826097","Ship Date":"2/9/2017","Units Sold":"1049","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"701015.23","Total Cost":"527164.46","Total Profit":"173850.77"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/21/2013","Order ID":"838529193","Ship Date":"12/7/2013","Units Sold":"8277","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"392743.65","Total Cost":"263125.83","Total Profit":"129617.82"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"8/25/2014","Order ID":"575372731","Ship Date":"9/3/2014","Units Sold":"4432","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"41350.56","Total Cost":"30669.44","Total Profit":"10681.12"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"4/23/2015","Order ID":"617155539","Ship Date":"5/24/2015","Units Sold":"8894","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3752289.66","Total Cost":"3243552.86","Total Profit":"508736.80"},{"Region":"North America","Country":"Canada","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"7/7/2012","Order ID":"777988946","Ship Date":"7/25/2012","Units Sold":"3073","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"28671.09","Total Cost":"21265.16","Total Profit":"7405.93"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"6/8/2015","Order ID":"942296779","Ship Date":"6/23/2015","Units Sold":"5412","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2366126.40","Total Cost":"1425141.96","Total Profit":"940984.44"},{"Region":"Europe","Country":"San Marino","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"7/26/2011","Order ID":"614815366","Ship Date":"8/25/2011","Units Sold":"6384","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"697643.52","Total Cost":"228802.56","Total Profit":"468840.96"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/27/2015","Order ID":"270593535","Ship Date":"1/2/2016","Units Sold":"3495","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1474505.55","Total Cost":"1274591.55","Total Profit":"199914.00"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"7/20/2014","Order ID":"904992616","Ship Date":"7/25/2014","Units Sold":"6281","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"686387.68","Total Cost":"225111.04","Total Profit":"461276.64"},{"Region":"Europe","Country":"Andorra","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/5/2013","Order ID":"883686435","Ship Date":"3/1/2013","Units Sold":"1308","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"199574.64","Total Cost":"127451.52","Total Profit":"72123.12"},{"Region":"Europe","Country":"Netherlands","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"12/20/2010","Order ID":"892661321","Ship Date":"1/11/2011","Units Sold":"7177","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1095066.66","Total Cost":"699326.88","Total Profit":"395739.78"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/8/2012","Order ID":"788216102","Ship Date":"6/27/2012","Units Sold":"9515","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1957235.50","Total Cost":"1114301.65","Total Profit":"842933.85"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/6/2014","Order ID":"946962106","Ship Date":"12/25/2014","Units Sold":"5986","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2525433.54","Total Cost":"2183034.34","Total Profit":"342399.20"},{"Region":"Asia","Country":"Japan","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/30/2013","Order ID":"915823161","Ship Date":"9/29/2013","Units Sold":"1280","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"559616.00","Total Cost":"337062.40","Total Profit":"222553.60"},{"Region":"Europe","Country":"Montenegro","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/24/2012","Order ID":"762035596","Ship Date":"4/10/2012","Units Sold":"2122","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"323774.76","Total Cost":"206767.68","Total Profit":"117007.08"},{"Region":"Europe","Country":"Sweden","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/6/2011","Order ID":"623148238","Ship Date":"4/26/2011","Units Sold":"2266","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1475641.86","Total Cost":"1189559.36","Total Profit":"286082.50"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/11/2012","Order ID":"257022416","Ship Date":"12/27/2012","Units Sold":"7499","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5011356.73","Total Cost":"3768547.46","Total Profit":"1242809.27"},{"Region":"Europe","Country":"Switzerland","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/2/2016","Order ID":"391831958","Ship Date":"7/13/2016","Units Sold":"639","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"98444.34","Total Cost":"58104.27","Total Profit":"40340.07"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/24/2014","Order ID":"476063191","Ship Date":"5/31/2014","Units Sold":"6532","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"996652.56","Total Cost":"636478.08","Total Profit":"360174.48"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"1/4/2012","Order ID":"928514945","Ship Date":"1/28/2012","Units Sold":"7061","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"771626.08","Total Cost":"253066.24","Total Profit":"518559.84"},{"Region":"Asia","Country":"India","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/17/2015","Order ID":"888298547","Ship Date":"6/23/2015","Units Sold":"6135","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"501413.55","Total Cost":"347670.45","Total Profit":"153743.10"},{"Region":"Asia","Country":"Nepal","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"1/31/2013","Order ID":"464837825","Ship Date":"2/14/2013","Units Sold":"4697","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"383885.81","Total Cost":"266178.99","Total Profit":"117706.82"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"12/30/2016","Order ID":"287869107","Ship Date":"1/14/2017","Units Sold":"5721","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1176809.70","Total Cost":"669986.31","Total Profit":"506823.39"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"11/17/2013","Order ID":"157441222","Ship Date":"12/6/2013","Units Sold":"9211","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1419046.66","Total Cost":"837556.23","Total Profit":"581490.43"},{"Region":"Europe","Country":"Slovenia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"3/10/2014","Order ID":"393915498","Ship Date":"4/27/2014","Units Sold":"7204","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"67213.32","Total Cost":"49851.68","Total Profit":"17361.64"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/9/2010","Order ID":"487965762","Ship Date":"7/18/2010","Units Sold":"8768","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3833369.60","Total Cost":"2308877.44","Total Profit":"1524492.16"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/4/2011","Order ID":"450578343","Ship Date":"10/2/2011","Units Sold":"5000","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"762900.00","Total Cost":"487200.00","Total Profit":"275700.00"},{"Region":"Asia","Country":"Japan","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"3/2/2016","Order ID":"363052070","Ship Date":"3/17/2016","Units Sold":"4030","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"37599.90","Total Cost":"27887.60","Total Profit":"9712.30"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/30/2015","Order ID":"826998269","Ship Date":"2/14/2016","Units Sold":"6020","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1238314.00","Total Cost":"705002.20","Total Profit":"533311.80"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"8/4/2015","Order ID":"714340770","Ship Date":"9/5/2015","Units Sold":"8163","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"76160.79","Total Cost":"56487.96","Total Profit":"19672.83"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"11/11/2012","Order ID":"317315900","Ship Date":"11/12/2012","Units Sold":"9681","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"90323.73","Total Cost":"66992.52","Total Profit":"23331.21"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/3/2010","Order ID":"898472487","Ship Date":"8/21/2010","Units Sold":"6830","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1042121.40","Total Cost":"665515.20","Total Profit":"376606.20"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/7/2012","Order ID":"640671861","Ship Date":"8/16/2012","Units Sold":"7896","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"73669.68","Total Cost":"54640.32","Total Profit":"19029.36"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/8/2012","Order ID":"497087848","Ship Date":"7/20/2012","Units Sold":"8195","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3582854.00","Total Cost":"2157989.35","Total Profit":"1424864.65"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/11/2012","Order ID":"141206777","Ship Date":"5/26/2012","Units Sold":"5078","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3393475.06","Total Cost":"2551898.12","Total Profit":"841576.94"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"7/31/2011","Order ID":"216827476","Ship Date":"9/6/2011","Units Sold":"2923","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"27271.59","Total Cost":"20227.16","Total Profit":"7044.43"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/11/2010","Order ID":"988061273","Ship Date":"12/28/2010","Units Sold":"8142","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"386337.90","Total Cost":"258834.18","Total Profit":"127503.72"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/1/2015","Order ID":"989331996","Ship Date":"8/16/2015","Units Sold":"4178","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1066559.84","Total Cost":"666056.76","Total Profit":"400503.08"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"10/12/2016","Order ID":"175375974","Ship Date":"10/28/2016","Units Sold":"6503","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"60672.99","Total Cost":"45000.76","Total Profit":"15672.23"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/8/2010","Order ID":"371242034","Ship Date":"12/6/2010","Units Sold":"7623","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"833041.44","Total Cost":"273208.32","Total Profit":"559833.12"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/26/2010","Order ID":"322291505","Ship Date":"2/11/2010","Units Sold":"2073","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1349958.33","Total Cost":"1088242.08","Total Profit":"261716.25"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/28/2016","Order ID":"644198215","Ship Date":"6/29/2016","Units Sold":"1422","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"363008.16","Total Cost":"226695.24","Total Profit":"136312.92"},{"Region":"Europe","Country":"Belgium","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/9/2010","Order ID":"672948491","Ship Date":"7/31/2010","Units Sold":"9268","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1906427.60","Total Cost":"1085375.48","Total Profit":"821052.12"},{"Region":"Europe","Country":"Norway","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/13/2015","Order ID":"714841163","Ship Date":"4/13/2015","Units Sold":"6240","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"509995.20","Total Cost":"353620.80","Total Profit":"156374.40"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"2/3/2017","Order ID":"696487557","Ship Date":"2/27/2017","Units Sold":"5001","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"763052.58","Total Cost":"487297.44","Total Profit":"275755.14"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"9/15/2014","Order ID":"614811503","Ship Date":"10/3/2014","Units Sold":"5241","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"807428.46","Total Cost":"476564.13","Total Profit":"330864.33"},{"Region":"Asia","Country":"Vietnam","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"7/2/2015","Order ID":"987049329","Ship Date":"7/23/2015","Units Sold":"8686","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"709906.78","Total Cost":"492235.62","Total Profit":"217671.16"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"7/27/2016","Order ID":"600749862","Ship Date":"8/7/2016","Units Sold":"4089","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"194023.05","Total Cost":"129989.31","Total Profit":"64033.74"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/26/2016","Order ID":"563774430","Ship Date":"2/24/2016","Units Sold":"2237","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1456756.77","Total Cost":"1174335.52","Total Profit":"282421.25"},{"Region":"Europe","Country":"San Marino","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"1/1/2017","Order ID":"254296863","Ship Date":"1/2/2017","Units Sold":"948","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"617347.08","Total Cost":"497662.08","Total Profit":"119685.00"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"11/14/2015","Order ID":"470803487","Ship Date":"12/6/2015","Units Sold":"69","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"10528.02","Total Cost":"6723.36","Total Profit":"3804.66"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"1/7/2014","Order ID":"282093131","Ship Date":"1/26/2014","Units Sold":"6481","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"307523.45","Total Cost":"206030.99","Total Profit":"101492.46"},{"Region":"Asia","Country":"Nepal","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/12/2013","Order ID":"177277123","Ship Date":"12/21/2013","Units Sold":"9095","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5922754.95","Total Cost":"4774511.20","Total Profit":"1148243.75"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/7/2015","Order ID":"715779292","Ship Date":"2/17/2015","Units Sold":"3854","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"35957.82","Total Cost":"26669.68","Total Profit":"9288.14"},{"Region":"Europe","Country":"Armenia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"11/30/2010","Order ID":"277335965","Ship Date":"12/31/2010","Units Sold":"8730","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3816756.00","Total Cost":"2298870.90","Total Profit":"1517885.10"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/26/2014","Order ID":"911995971","Ship Date":"7/28/2014","Units Sold":"8729","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"414191.05","Total Cost":"277494.91","Total Profit":"136696.14"},{"Region":"North America","Country":"Canada","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"5/5/2017","Order ID":"690120637","Ship Date":"5/16/2017","Units Sold":"887","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"182455.90","Total Cost":"103876.57","Total Profit":"78579.33"},{"Region":"Europe","Country":"Serbia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"11/13/2015","Order ID":"452383792","Ship Date":"11/16/2015","Units Sold":"9272","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4053718.40","Total Cost":"2441595.76","Total Profit":"1612122.64"},{"Region":"Europe","Country":"Kosovo","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/27/2015","Order ID":"659771764","Ship Date":"2/2/2015","Units Sold":"9981","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1090723.68","Total Cost":"357719.04","Total Profit":"733004.64"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/5/2017","Order ID":"943583381","Ship Date":"4/11/2017","Units Sold":"6146","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1264232.20","Total Cost":"719758.06","Total Profit":"544474.14"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"8/24/2010","Order ID":"555429971","Ship Date":"8/28/2010","Units Sold":"2926","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"239141.98","Total Cost":"165816.42","Total Profit":"73325.56"},{"Region":"North America","Country":"Mexico","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/4/2011","Order ID":"617235362","Ship Date":"2/10/2011","Units Sold":"2515","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1637793.15","Total Cost":"1320274.40","Total Profit":"317518.75"},{"Region":"Europe","Country":"Lithuania","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/27/2012","Order ID":"971235883","Ship Date":"7/2/2012","Units Sold":"9136","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"998382.08","Total Cost":"327434.24","Total Profit":"670947.84"},{"Region":"Europe","Country":"Slovakia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/23/2014","Order ID":"629980361","Ship Date":"1/23/2014","Units Sold":"4043","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2701815.61","Total Cost":"2031769.22","Total Profit":"670046.39"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"10/13/2015","Order ID":"926330125","Ship Date":"11/7/2015","Units Sold":"524","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"107786.80","Total Cost":"61365.64","Total Profit":"46421.16"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"12/21/2014","Order ID":"563459002","Ship Date":"1/9/2015","Units Sold":"8895","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1829701.50","Total Cost":"1041693.45","Total Profit":"788008.05"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/9/2010","Order ID":"564853322","Ship Date":"2/16/2010","Units Sold":"1505","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"980071.05","Total Cost":"790064.80","Total Profit":"190006.25"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"10/3/2011","Order ID":"224311912","Ship Date":"10/26/2011","Units Sold":"7734","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1180053.72","Total Cost":"753600.96","Total Profit":"426452.76"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/24/2016","Order ID":"255946099","Ship Date":"12/26/2016","Units Sold":"8993","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"426717.85","Total Cost":"285887.47","Total Profit":"140830.38"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"11/23/2011","Order ID":"544179713","Ship Date":"12/1/2011","Units Sold":"3725","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1571540.25","Total Cost":"1358470.25","Total Profit":"213070.00"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/18/2014","Order ID":"593749082","Ship Date":"7/27/2014","Units Sold":"2403","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"613437.84","Total Cost":"383086.26","Total Profit":"230351.58"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/13/2017","Order ID":"879703032","Ship Date":"4/14/2017","Units Sold":"2531","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"386179.98","Total Cost":"246620.64","Total Profit":"139559.34"},{"Region":"Europe","Country":"Estonia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/13/2013","Order ID":"597402894","Ship Date":"5/16/2013","Units Sold":"3647","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"561856.82","Total Cost":"331621.71","Total Profit":"230235.11"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"3/20/2016","Order ID":"812522494","Ship Date":"4/1/2016","Units Sold":"2317","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"109941.65","Total Cost":"73657.43","Total Profit":"36284.22"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"3/10/2010","Order ID":"411048161","Ship Date":"4/8/2010","Units Sold":"7140","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4771447.80","Total Cost":"3588135.60","Total Profit":"1183312.20"},{"Region":"Europe","Country":"Serbia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"7/16/2014","Order ID":"149278724","Ship Date":"8/18/2014","Units Sold":"3746","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"571564.68","Total Cost":"365010.24","Total Profit":"206554.44"},{"Region":"Europe","Country":"Denmark","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"10/20/2011","Order ID":"403825509","Ship Date":"11/25/2011","Units Sold":"9797","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6379904.37","Total Cost":"5143033.12","Total Profit":"1236871.25"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/29/2012","Order ID":"721612346","Ship Date":"3/8/2012","Units Sold":"9984","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6501680.64","Total Cost":"5241200.64","Total Profit":"1260480.00"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"5/26/2011","Order ID":"269875562","Ship Date":"5/30/2011","Units Sold":"1031","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"688986.37","Total Cost":"518118.74","Total Profit":"170867.63"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/21/2010","Order ID":"986163985","Ship Date":"9/26/2010","Units Sold":"6693","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1376750.10","Total Cost":"783817.23","Total Profit":"592932.87"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/27/2011","Order ID":"828338944","Ship Date":"11/14/2011","Units Sold":"2756","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1794734.76","Total Cost":"1446789.76","Total Profit":"347945.00"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/1/2013","Order ID":"524574267","Ship Date":"1/15/2014","Units Sold":"2038","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"19014.54","Total Cost":"14102.96","Total Profit":"4911.58"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"6/18/2017","Order ID":"423356282","Ship Date":"7/31/2017","Units Sold":"9387","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"87580.71","Total Cost":"64958.04","Total Profit":"22622.67"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/11/2012","Order ID":"943483817","Ship Date":"6/28/2012","Units Sold":"6683","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"317108.35","Total Cost":"212452.57","Total Profit":"104655.78"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"5/22/2012","Order ID":"324068200","Ship Date":"6/18/2012","Units Sold":"7837","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"640518.01","Total Cost":"444122.79","Total Profit":"196395.22"},{"Region":"Europe","Country":"Greece","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/14/2013","Order ID":"474533259","Ship Date":"7/23/2013","Units Sold":"3791","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"414280.48","Total Cost":"135869.44","Total Profit":"278411.04"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/9/2012","Order ID":"224615323","Ship Date":"7/11/2012","Units Sold":"7520","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"614609.60","Total Cost":"426158.40","Total Profit":"188451.20"},{"Region":"Asia","Country":"Brunei","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"6/4/2011","Order ID":"274363219","Ship Date":"6/30/2011","Units Sold":"9028","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1390853.68","Total Cost":"820916.04","Total Profit":"569937.64"},{"Region":"Europe","Country":"Denmark","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/15/2013","Order ID":"944138276","Ship Date":"2/16/2013","Units Sold":"352","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"153894.40","Total Cost":"92692.16","Total Profit":"61202.24"},{"Region":"Asia","Country":"Indonesia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"7/17/2017","Order ID":"824614322","Ship Date":"8/15/2017","Units Sold":"557","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"142190.96","Total Cost":"88796.94","Total Profit":"53394.02"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"1/6/2011","Order ID":"826777684","Ship Date":"2/17/2011","Units Sold":"744","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"35302.80","Total Cost":"23651.76","Total Profit":"11651.04"},{"Region":"Asia","Country":"Nepal","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"9/8/2014","Order ID":"131927192","Ship Date":"10/8/2014","Units Sold":"9043","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"988219.04","Total Cost":"324101.12","Total Profit":"664117.92"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"12/25/2012","Order ID":"241674172","Ship Date":"1/13/2013","Units Sold":"5613","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"52369.29","Total Cost":"38841.96","Total Profit":"13527.33"},{"Region":"Asia","Country":"Thailand","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"5/3/2010","Order ID":"927942454","Ship Date":"5/26/2010","Units Sold":"7648","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1178250.88","Total Cost":"695432.64","Total Profit":"482818.24"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/25/2012","Order ID":"682968366","Ship Date":"4/11/2012","Units Sold":"4371","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2846438.91","Total Cost":"2294600.16","Total Profit":"551838.75"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"11/14/2013","Order ID":"769300734","Ship Date":"11/30/2013","Units Sold":"2038","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"19014.54","Total Cost":"14102.96","Total Profit":"4911.58"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/6/2011","Order ID":"269800889","Ship Date":"8/23/2011","Units Sold":"8933","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"83344.89","Total Cost":"61816.36","Total Profit":"21528.53"},{"Region":"Asia","Country":"South Korea","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"11/2/2013","Order ID":"137642657","Ship Date":"11/30/2013","Units Sold":"376","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"17841.20","Total Cost":"11953.04","Total Profit":"5888.16"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/18/2015","Order ID":"946312367","Ship Date":"7/26/2015","Units Sold":"3714","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2418593.94","Total Cost":"1949701.44","Total Profit":"468892.50"},{"Region":"Asia","Country":"North Korea","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/2/2015","Order ID":"639608848","Ship Date":"12/15/2015","Units Sold":"3326","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1454127.20","Total Cost":"875835.58","Total Profit":"578291.62"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/25/2015","Order ID":"381643426","Ship Date":"7/19/2015","Units Sold":"5626","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"52490.58","Total Cost":"38931.92","Total Profit":"13558.66"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/13/2012","Order ID":"506839931","Ship Date":"3/15/2012","Units Sold":"4053","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"192314.85","Total Cost":"128844.87","Total Profit":"63469.98"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/3/2012","Order ID":"969934689","Ship Date":"6/13/2012","Units Sold":"4084","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1042563.52","Total Cost":"651071.28","Total Profit":"391492.24"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/20/2012","Order ID":"895976531","Ship Date":"5/7/2012","Units Sold":"8221","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5493847.67","Total Cost":"4131381.34","Total Profit":"1362466.33"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"8/12/2016","Order ID":"830326783","Ship Date":"8/19/2016","Units Sold":"1002","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"422733.78","Total Cost":"365419.38","Total Profit":"57314.40"},{"Region":"Asia","Country":"Indonesia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/9/2012","Order ID":"488659274","Ship Date":"4/13/2012","Units Sold":"3993","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"326347.89","Total Cost":"226283.31","Total Profit":"100064.58"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/20/2017","Order ID":"106960332","Ship Date":"9/1/2017","Units Sold":"794","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"334980.66","Total Cost":"289563.86","Total Profit":"45416.80"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/17/2010","Order ID":"891528785","Ship Date":"4/6/2010","Units Sold":"2034","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"96513.30","Total Cost":"64660.86","Total Profit":"31852.44"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/14/2014","Order ID":"968975961","Ship Date":"3/19/2014","Units Sold":"374","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"3489.42","Total Cost":"2588.08","Total Profit":"901.34"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/10/2013","Order ID":"336225688","Ship Date":"6/20/2013","Units Sold":"5508","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"51389.64","Total Cost":"38115.36","Total Profit":"13274.28"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"12/27/2014","Order ID":"410514295","Ship Date":"2/10/2015","Units Sold":"9157","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2337598.96","Total Cost":"1459808.94","Total Profit":"877790.02"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"3/8/2016","Order ID":"879390609","Ship Date":"4/19/2016","Units Sold":"78","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"34101.60","Total Cost":"20539.74","Total Profit":"13561.86"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/5/2015","Order ID":"150715959","Ship Date":"3/1/2015","Units Sold":"9056","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6051853.12","Total Cost":"4551002.24","Total Profit":"1500850.88"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"9/26/2014","Order ID":"302664172","Ship Date":"10/16/2014","Units Sold":"3909","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"185482.05","Total Cost":"124267.11","Total Profit":"61214.94"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"8/7/2011","Order ID":"333721578","Ship Date":"8/28/2011","Units Sold":"4486","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"212860.70","Total Cost":"142609.94","Total Profit":"70250.76"},{"Region":"Europe","Country":"Ukraine","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/10/2014","Order ID":"212687003","Ship Date":"8/17/2014","Units Sold":"7665","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5122289.55","Total Cost":"3851969.10","Total Profit":"1270320.45"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"1/11/2011","Order ID":"428671777","Ship Date":"2/3/2011","Units Sold":"2360","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"602460.80","Total Cost":"376231.20","Total Profit":"226229.60"},{"Region":"Europe","Country":"Latvia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/15/2015","Order ID":"641099727","Ship Date":"11/4/2015","Units Sold":"4511","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1151568.08","Total Cost":"719143.62","Total Profit":"432424.46"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/1/2014","Order ID":"129707181","Ship Date":"5/3/2014","Units Sold":"2092","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"19518.36","Total Cost":"14476.64","Total Profit":"5041.72"},{"Region":"Asia","Country":"Indonesia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/6/2012","Order ID":"944542968","Ship Date":"4/9/2012","Units Sold":"109","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"8908.57","Total Cost":"6177.03","Total Profit":"2731.54"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/6/2016","Order ID":"255968415","Ship Date":"6/16/2016","Units Sold":"5597","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2361318.33","Total Cost":"2041169.93","Total Profit":"320148.40"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/21/2015","Order ID":"704657351","Ship Date":"8/28/2015","Units Sold":"2624","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1753540.48","Total Cost":"1318664.96","Total Profit":"434875.52"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/25/2014","Order ID":"951596105","Ship Date":"9/28/2014","Units Sold":"7289","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4746669.69","Total Cost":"3826433.44","Total Profit":"920236.25"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/7/2016","Order ID":"628083503","Ship Date":"2/12/2016","Units Sold":"2721","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"25386.93","Total Cost":"18829.32","Total Profit":"6557.61"},{"Region":"Europe","Country":"San Marino","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/11/2015","Order ID":"785730874","Ship Date":"7/23/2015","Units Sold":"4081","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"628718.86","Total Cost":"371085.33","Total Profit":"257633.53"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/26/2013","Order ID":"746462047","Ship Date":"9/6/2013","Units Sold":"3562","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"732703.40","Total Cost":"417145.82","Total Profit":"315557.58"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/4/2012","Order ID":"352513349","Ship Date":"3/11/2012","Units Sold":"5388","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2273143.32","Total Cost":"1964949.72","Total Profit":"308193.60"},{"Region":"Europe","Country":"Kosovo","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"1/3/2010","Order ID":"416433608","Ship Date":"1/16/2010","Units Sold":"814","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"88953.92","Total Cost":"29173.76","Total Profit":"59780.16"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"12/6/2014","Order ID":"471084153","Ship Date":"1/3/2015","Units Sold":"3124","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2087675.48","Total Cost":"1569934.96","Total Profit":"517740.52"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"8/11/2016","Order ID":"119638812","Ship Date":"8/31/2016","Units Sold":"2638","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1112945.82","Total Cost":"962052.22","Total Profit":"150893.60"},{"Region":"Europe","Country":"Italy","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/12/2013","Order ID":"385583913","Ship Date":"7/26/2013","Units Sold":"1703","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"186103.84","Total Cost":"61035.52","Total Profit":"125068.32"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/31/2016","Order ID":"562718284","Ship Date":"5/14/2016","Units Sold":"9700","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1494382.00","Total Cost":"882021.00","Total Profit":"612361.00"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"3/8/2014","Order ID":"465153253","Ship Date":"4/1/2014","Units Sold":"8039","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1226590.62","Total Cost":"783320.16","Total Profit":"443270.46"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/27/2016","Order ID":"877312648","Ship Date":"6/25/2016","Units Sold":"5163","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1062029.10","Total Cost":"604638.93","Total Profit":"457390.17"},{"Region":"Asia","Country":"Taiwan","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/3/2010","Order ID":"403932797","Ship Date":"6/21/2010","Units Sold":"1546","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"238176.76","Total Cost":"140577.78","Total Profit":"97598.98"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/23/2011","Order ID":"420062530","Ship Date":"5/28/2011","Units Sold":"4692","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"43776.36","Total Cost":"32468.64","Total Profit":"11307.72"},{"Region":"Europe","Country":"Romania","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/27/2012","Order ID":"121063172","Ship Date":"8/5/2012","Units Sold":"4138","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"851186.60","Total Cost":"484601.18","Total Profit":"366585.42"},{"Region":"Europe","Country":"Serbia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/26/2012","Order ID":"572608554","Ship Date":"4/24/2012","Units Sold":"6451","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2820377.20","Total Cost":"1698741.83","Total Profit":"1121635.37"},{"Region":"Europe","Country":"Romania","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"6/16/2017","Order ID":"660685002","Ship Date":"6/30/2017","Units Sold":"229","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"18716.17","Total Cost":"12977.43","Total Profit":"5738.74"},{"Region":"Europe","Country":"Estonia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/13/2017","Order ID":"241591346","Ship Date":"4/26/2017","Units Sold":"1103","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"120535.84","Total Cost":"39531.52","Total Profit":"81004.32"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"9/18/2016","Order ID":"591938912","Ship Date":"10/19/2016","Units Sold":"6733","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4384596.93","Total Cost":"3534555.68","Total Profit":"850041.25"},{"Region":"Europe","Country":"Iceland","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"12/19/2010","Order ID":"358651530","Ship Date":"1/13/2011","Units Sold":"1813","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"276627.54","Total Cost":"176658.72","Total Profit":"99968.82"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/14/2011","Order ID":"508965528","Ship Date":"3/27/2011","Units Sold":"3065","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2048247.55","Total Cost":"1540285.10","Total Profit":"507962.45"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"6/27/2010","Order ID":"280429732","Ship Date":"7/27/2010","Units Sold":"4244","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1083408.32","Total Cost":"676578.48","Total Profit":"406829.84"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"1/2/2011","Order ID":"330905473","Ship Date":"1/9/2011","Units Sold":"1138","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"10617.54","Total Cost":"7874.96","Total Profit":"2742.58"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"11/21/2011","Order ID":"488566577","Ship Date":"12/18/2011","Units Sold":"6562","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4273240.02","Total Cost":"3444787.52","Total Profit":"828452.50"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"6/5/2013","Order ID":"201899373","Ship Date":"6/11/2013","Units Sold":"5366","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"818744.28","Total Cost":"522863.04","Total Profit":"295881.24"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/9/2013","Order ID":"789702689","Ship Date":"4/28/2013","Units Sold":"9430","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4122796.00","Total Cost":"2483201.90","Total Profit":"1639594.10"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/12/2017","Order ID":"491087853","Ship Date":"6/7/2017","Units Sold":"2664","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"291121.92","Total Cost":"95477.76","Total Profit":"195644.16"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/17/2014","Order ID":"315478694","Ship Date":"5/30/2014","Units Sold":"6011","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1236462.70","Total Cost":"703948.21","Total Profit":"532514.49"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/3/2016","Order ID":"892611539","Ship Date":"2/21/2016","Units Sold":"2445","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"22811.85","Total Cost":"16919.40","Total Profit":"5892.45"},{"Region":"Europe","Country":"Croatia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"1/4/2017","Order ID":"222535216","Ship Date":"1/15/2017","Units Sold":"1971","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"161089.83","Total Cost":"111696.57","Total Profit":"49393.26"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/13/2012","Order ID":"425611054","Ship Date":"6/27/2012","Units Sold":"6624","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2896012.80","Total Cost":"1744297.92","Total Profit":"1151714.88"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"6/19/2017","Order ID":"992512881","Ship Date":"7/17/2017","Units Sold":"5472","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1125590.40","Total Cost":"640825.92","Total Profit":"484764.48"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"10/30/2010","Order ID":"134227025","Ship Date":"12/3/2010","Units Sold":"9614","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4203240.80","Total Cost":"2531654.62","Total Profit":"1671586.18"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"9/4/2013","Order ID":"632052314","Ship Date":"9/27/2013","Units Sold":"7180","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3029170.20","Total Cost":"2618474.20","Total Profit":"410696.00"},{"Region":"Asia","Country":"India","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/12/2010","Order ID":"387600076","Ship Date":"7/4/2010","Units Sold":"8331","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5567357.37","Total Cost":"4186660.74","Total Profit":"1380696.63"},{"Region":"Asia","Country":"Nepal","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"2/16/2013","Order ID":"972794139","Ship Date":"3/31/2013","Units Sold":"258","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"21086.34","Total Cost":"14620.86","Total Profit":"6465.48"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/28/2012","Order ID":"879870831","Ship Date":"2/8/2012","Units Sold":"2187","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"238995.36","Total Cost":"78382.08","Total Profit":"160613.28"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"1/19/2010","Order ID":"471378982","Ship Date":"3/3/2010","Units Sold":"371","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"17603.95","Total Cost":"11794.09","Total Profit":"5809.86"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"11/23/2010","Order ID":"630179917","Ship Date":"12/7/2010","Units Sold":"3096","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2016146.16","Total Cost":"1625276.16","Total Profit":"390870.00"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"9/19/2015","Order ID":"509447467","Ship Date":"11/1/2015","Units Sold":"5681","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"866806.98","Total Cost":"553556.64","Total Profit":"313250.34"},{"Region":"Europe","Country":"Greece","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"7/19/2011","Order ID":"682667958","Ship Date":"7/27/2011","Units Sold":"5474","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"843324.44","Total Cost":"497750.82","Total Profit":"345573.62"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"12/29/2012","Order ID":"893640220","Ship Date":"1/25/2013","Units Sold":"6855","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"63957.15","Total Cost":"47436.60","Total Profit":"16520.55"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"12/31/2012","Order ID":"506475579","Ship Date":"1/30/2013","Units Sold":"6234","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"681251.52","Total Cost":"223426.56","Total Profit":"457824.96"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"12/10/2016","Order ID":"755597865","Ship Date":"1/17/2017","Units Sold":"7054","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1451007.80","Total Cost":"826093.94","Total Profit":"624913.86"},{"Region":"Europe","Country":"Montenegro","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/10/2016","Order ID":"695743405","Ship Date":"3/13/2016","Units Sold":"4789","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1222535.92","Total Cost":"763462.38","Total Profit":"459073.54"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/22/2014","Order ID":"351961028","Ship Date":"4/25/2014","Units Sold":"1944","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1299116.88","Total Cost":"976937.76","Total Profit":"322179.12"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"1/21/2016","Order ID":"269612061","Ship Date":"2/18/2016","Units Sold":"3055","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"466131.90","Total Cost":"297679.20","Total Profit":"168452.70"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"2/7/2016","Order ID":"164370334","Ship Date":"3/13/2016","Units Sold":"9689","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6309573.69","Total Cost":"5086337.44","Total Profit":"1223236.25"},{"Region":"Europe","Country":"Italy","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/25/2017","Order ID":"272222173","Ship Date":"8/6/2017","Units Sold":"5445","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1120036.50","Total Cost":"637663.95","Total Profit":"482372.55"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"1/10/2013","Order ID":"899466407","Ship Date":"2/2/2013","Units Sold":"953","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"620603.13","Total Cost":"500286.88","Total Profit":"120316.25"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/11/2011","Order ID":"172714364","Ship Date":"10/25/2011","Units Sold":"8873","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"421023.85","Total Cost":"282072.67","Total Profit":"138951.18"},{"Region":"Asia","Country":"Thailand","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/24/2012","Order ID":"788889873","Ship Date":"8/5/2012","Units Sold":"8899","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"83027.67","Total Cost":"61581.08","Total Profit":"21446.59"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"12/13/2014","Order ID":"565229260","Ship Date":"1/27/2015","Units Sold":"2754","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1840415.58","Total Cost":"1383995.16","Total Profit":"456420.42"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/8/2016","Order ID":"989281356","Ship Date":"4/8/2016","Units Sold":"9192","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"751262.16","Total Cost":"520910.64","Total Profit":"230351.52"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"8/7/2014","Order ID":"468907487","Ship Date":"9/24/2014","Units Sold":"9000","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3934800.00","Total Cost":"2369970.00","Total Profit":"1564830.00"},{"Region":"Asia","Country":"Brunei","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"12/11/2012","Order ID":"182281482","Ship Date":"12/27/2012","Units Sold":"9996","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6680026.92","Total Cost":"5023389.84","Total Profit":"1656637.08"},{"Region":"Europe","Country":"Ukraine","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/18/2015","Order ID":"927889668","Ship Date":"7/6/2015","Units Sold":"2028","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"417159.60","Total Cost":"237499.08","Total Profit":"179660.52"},{"Region":"Asia","Country":"Indonesia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"9/2/2015","Order ID":"874530875","Ship Date":"9/26/2015","Units Sold":"1975","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"161416.75","Total Cost":"111923.25","Total Profit":"49493.50"},{"Region":"Asia","Country":"Bhutan","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/29/2016","Order ID":"511316430","Ship Date":"5/4/2016","Units Sold":"8749","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1334922.42","Total Cost":"852502.56","Total Profit":"482419.86"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/13/2016","Order ID":"397670161","Ship Date":"10/30/2016","Units Sold":"8293","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2117037.04","Total Cost":"1322070.06","Total Profit":"794966.98"},{"Region":"Europe","Country":"Switzerland","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/25/2010","Order ID":"713328397","Ship Date":"7/6/2010","Units Sold":"8579","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"701161.67","Total Cost":"486171.93","Total Profit":"214989.74"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"7/8/2010","Order ID":"808339965","Ship Date":"7/10/2010","Units Sold":"4614","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3004682.94","Total Cost":"2422165.44","Total Profit":"582517.50"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/28/2015","Order ID":"553066194","Ship Date":"2/3/2016","Units Sold":"3432","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1500470.40","Total Cost":"903748.56","Total Profit":"596721.84"},{"Region":"Europe","Country":"Andorra","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/18/2015","Order ID":"788180911","Ship Date":"9/18/2015","Units Sold":"9102","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"84921.66","Total Cost":"62985.84","Total Profit":"21935.82"},{"Region":"Asia","Country":"Bhutan","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"9/12/2014","Order ID":"174670445","Ship Date":"10/22/2014","Units Sold":"7721","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"72036.93","Total Cost":"53429.32","Total Profit":"18607.61"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/31/2015","Order ID":"143833625","Ship Date":"5/13/2015","Units Sold":"2421","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1021395.69","Total Cost":"882914.49","Total Profit":"138481.20"},{"Region":"Europe","Country":"France","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"2/20/2013","Order ID":"847281777","Ship Date":"2/28/2013","Units Sold":"8361","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"78008.13","Total Cost":"57858.12","Total Profit":"20150.01"},{"Region":"Europe","Country":"Russia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"8/5/2016","Order ID":"706938731","Ship Date":"8/30/2016","Units Sold":"7735","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"367025.75","Total Cost":"245895.65","Total Profit":"121130.10"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/4/2012","Order ID":"465040814","Ship Date":"4/17/2012","Units Sold":"4766","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3103666.86","Total Cost":"2501959.36","Total Profit":"601707.50"},{"Region":"Europe","Country":"Germany","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/31/2013","Order ID":"934136855","Ship Date":"1/3/2014","Units Sold":"709","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"180993.52","Total Cost":"113028.78","Total Profit":"67964.74"},{"Region":"Europe","Country":"Russia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/20/2014","Order ID":"747088181","Ship Date":"7/28/2014","Units Sold":"8850","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3733726.50","Total Cost":"3227506.50","Total Profit":"506220.00"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"2/25/2011","Order ID":"407068622","Ship Date":"4/15/2011","Units Sold":"9506","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2426691.68","Total Cost":"1515446.52","Total Profit":"911245.16"},{"Region":"Asia","Country":"Singapore","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"5/4/2017","Order ID":"937564504","Ship Date":"6/2/2017","Units Sold":"5026","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"46892.58","Total Cost":"34779.92","Total Profit":"12112.66"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"8/23/2013","Order ID":"732374656","Ship Date":"10/4/2013","Units Sold":"4790","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1222791.20","Total Cost":"763621.80","Total Profit":"459169.40"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/9/2011","Order ID":"505610406","Ship Date":"1/22/2012","Units Sold":"210","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"53608.80","Total Cost":"33478.20","Total Profit":"20130.60"},{"Region":"Asia","Country":"Cambodia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"10/24/2013","Order ID":"141695582","Ship Date":"11/22/2013","Units Sold":"9726","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1483993.08","Total Cost":"947701.44","Total Profit":"536291.64"},{"Region":"Europe","Country":"Vatican City","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/7/2014","Order ID":"945366513","Ship Date":"5/11/2014","Units Sold":"3814","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"180974.30","Total Cost":"121247.06","Total Profit":"59727.24"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/19/2013","Order ID":"691672027","Ship Date":"7/5/2013","Units Sold":"9978","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"473456.10","Total Cost":"317200.62","Total Profit":"156255.48"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/2/2012","Order ID":"375973451","Ship Date":"3/25/2012","Units Sold":"7754","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1979441.12","Total Cost":"1236142.68","Total Profit":"743298.44"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"4/19/2016","Order ID":"163944613","Ship Date":"5/12/2016","Units Sold":"3709","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"303136.57","Total Cost":"210189.03","Total Profit":"92947.54"},{"Region":"Asia","Country":"Laos","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/19/2010","Order ID":"741571843","Ship Date":"2/15/2010","Units Sold":"6443","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"704091.04","Total Cost":"230917.12","Total Profit":"473173.92"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"10/4/2012","Order ID":"165153968","Ship Date":"11/7/2012","Units Sold":"1584","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"241686.72","Total Cost":"154344.96","Total Profit":"87341.76"},{"Region":"North America","Country":"Mexico","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"7/13/2014","Order ID":"611302316","Ship Date":"7/17/2014","Units Sold":"6795","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4540894.65","Total Cost":"3414759.30","Total Profit":"1126135.35"},{"Region":"Asia","Country":"Vietnam","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/30/2010","Order ID":"726940715","Ship Date":"6/10/2010","Units Sold":"6767","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2854929.63","Total Cost":"2467857.23","Total Profit":"387072.40"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"4/27/2011","Order ID":"579305493","Ship Date":"5/2/2011","Units Sold":"8224","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"390228.80","Total Cost":"261440.96","Total Profit":"128787.84"},{"Region":"Asia","Country":"Cambodia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"10/23/2010","Order ID":"305945479","Ship Date":"10/25/2010","Units Sold":"4921","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1256232.88","Total Cost":"784505.82","Total Profit":"471727.06"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/28/2010","Order ID":"564722001","Ship Date":"11/12/2010","Units Sold":"2644","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"407334.64","Total Cost":"240418.92","Total Profit":"166915.72"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"5/2/2010","Order ID":"283808887","Ship Date":"6/9/2010","Units Sold":"4211","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"460178.08","Total Cost":"150922.24","Total Profit":"309255.84"},{"Region":"Asia","Country":"Vietnam","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/10/2017","Order ID":"711692464","Ship Date":"7/28/2017","Units Sold":"4470","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2987166.90","Total Cost":"2246353.80","Total Profit":"740813.10"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"6/26/2014","Order ID":"467171561","Ship Date":"7/26/2014","Units Sold":"5301","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3542499.27","Total Cost":"2663964.54","Total Profit":"878534.73"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/28/2015","Order ID":"489357507","Ship Date":"3/31/2015","Units Sold":"616","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"269315.20","Total Cost":"162211.28","Total Profit":"107103.92"},{"Region":"Asia","Country":"Nepal","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"8/10/2015","Order ID":"887674129","Ship Date":"9/2/2015","Units Sold":"1356","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"110825.88","Total Cost":"76844.52","Total Profit":"33981.36"},{"Region":"Europe","Country":"Serbia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"7/24/2012","Order ID":"491857755","Ship Date":"8/4/2012","Units Sold":"495","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"216414.00","Total Cost":"130348.35","Total Profit":"86065.65"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/2/2015","Order ID":"901957213","Ship Date":"7/27/2015","Units Sold":"8038","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1653416.60","Total Cost":"941330.18","Total Profit":"712086.42"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/29/2012","Order ID":"638333833","Ship Date":"4/5/2012","Units Sold":"6021","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3920935.41","Total Cost":"3160784.16","Total Profit":"760151.25"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"4/16/2010","Order ID":"991661441","Ship Date":"4/20/2010","Units Sold":"3512","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"541058.72","Total Cost":"319346.16","Total Profit":"221712.56"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"2/11/2011","Order ID":"172926366","Ship Date":"2/14/2011","Units Sold":"1609","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"131503.57","Total Cost":"91182.03","Total Profit":"40321.54"},{"Region":"Europe","Country":"Latvia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/21/2013","Order ID":"963427436","Ship Date":"4/7/2013","Units Sold":"8443","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1300728.58","Total Cost":"767721.99","Total Profit":"533006.59"},{"Region":"Europe","Country":"Moldova ","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"12/14/2015","Order ID":"364775979","Ship Date":"12/16/2015","Units Sold":"4173","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1824435.60","Total Cost":"1098876.09","Total Profit":"725559.51"},{"Region":"Asia","Country":"Tajikistan","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"5/24/2016","Order ID":"848895823","Ship Date":"7/3/2016","Units Sold":"5993","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1529893.04","Total Cost":"955404.06","Total Profit":"574488.98"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"5/22/2012","Order ID":"908023297","Ship Date":"6/24/2012","Units Sold":"3127","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"481745.62","Total Cost":"284338.11","Total Profit":"197407.51"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/12/2014","Order ID":"904707229","Ship Date":"5/29/2014","Units Sold":"1828","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"199763.84","Total Cost":"65515.52","Total Profit":"134248.32"},{"Region":"Asia","Country":"China","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/1/2010","Order ID":"821808946","Ship Date":"10/10/2010","Units Sold":"384","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"58590.72","Total Cost":"37416.96","Total Profit":"21173.76"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"6/29/2010","Order ID":"712502276","Ship Date":"8/4/2010","Units Sold":"4112","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1049711.36","Total Cost":"655535.04","Total Profit":"394176.32"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/5/2015","Order ID":"250273549","Ship Date":"9/11/2015","Units Sold":"360","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"234435.60","Total Cost":"188985.60","Total Profit":"45450.00"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"8/16/2010","Order ID":"978921592","Ship Date":"9/24/2010","Units Sold":"3508","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"286708.84","Total Cost":"198798.36","Total Profit":"87910.48"},{"Region":"Europe","Country":"Italy","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"12/29/2010","Order ID":"462557733","Ship Date":"1/12/2011","Units Sold":"9967","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4204977.63","Total Cost":"3634865.23","Total Profit":"570112.40"},{"Region":"Europe","Country":"Serbia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"8/3/2014","Order ID":"835605800","Ship Date":"8/4/2014","Units Sold":"3180","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2070847.80","Total Cost":"1669372.80","Total Profit":"401475.00"},{"Region":"Europe","Country":"Ireland","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"9/12/2012","Order ID":"252802121","Ship Date":"10/15/2012","Units Sold":"8620","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3768664.00","Total Cost":"2269904.60","Total Profit":"1498759.40"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"8/12/2016","Order ID":"539195525","Ship Date":"9/11/2016","Units Sold":"8793","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"417227.85","Total Cost":"279529.47","Total Profit":"137698.38"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"12/22/2015","Order ID":"440147340","Ship Date":"1/17/2016","Units Sold":"8234","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5362063.14","Total Cost":"4322520.64","Total Profit":"1039542.50"},{"Region":"Europe","Country":"Malta","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"10/30/2012","Order ID":"571331393","Ship Date":"12/13/2012","Units Sold":"8510","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3590283.90","Total Cost":"3103511.90","Total Profit":"486772.00"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/24/2010","Order ID":"268734014","Ship Date":"5/13/2010","Units Sold":"3221","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"351990.88","Total Cost":"115440.64","Total Profit":"236550.24"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"5/24/2016","Order ID":"738654029","Ship Date":"6/19/2016","Units Sold":"2997","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"616482.90","Total Cost":"350978.67","Total Profit":"265504.23"},{"Region":"Asia","Country":"Bhutan","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"5/27/2017","Order ID":"107702767","Ship Date":"5/28/2017","Units Sold":"497","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"54312.16","Total Cost":"17812.48","Total Profit":"36499.68"},{"Region":"Europe","Country":"Macedonia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/30/2012","Order ID":"172804057","Ship Date":"2/20/2012","Units Sold":"5415","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2284534.35","Total Cost":"1974796.35","Total Profit":"309738.00"},{"Region":"Europe","Country":"Monaco","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/20/2015","Order ID":"551194226","Ship Date":"6/13/2015","Units Sold":"9475","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3997407.75","Total Cost":"3455437.75","Total Profit":"541970.00"},{"Region":"Asia","Country":"Indonesia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/30/2016","Order ID":"930422103","Ship Date":"12/6/2016","Units Sold":"1431","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"13351.23","Total Cost":"9902.52","Total Profit":"3448.71"},{"Region":"Asia","Country":"Myanmar","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"7/29/2014","Order ID":"618349015","Ship Date":"9/17/2014","Units Sold":"2070","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"315840.60","Total Cost":"201700.80","Total Profit":"114139.80"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"8/17/2011","Order ID":"793148791","Ship Date":"9/28/2011","Units Sold":"9208","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"752569.84","Total Cost":"521817.36","Total Profit":"230752.48"},{"Region":"North America","Country":"Canada","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"1/20/2012","Order ID":"453307759","Ship Date":"1/24/2012","Units Sold":"2694","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1136571.66","Total Cost":"982474.86","Total Profit":"154096.80"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/16/2017","Order ID":"467624747","Ship Date":"4/3/2017","Units Sold":"9409","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6287752.43","Total Cost":"4728398.86","Total Profit":"1559353.57"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/9/2014","Order ID":"425211083","Ship Date":"6/5/2014","Units Sold":"8264","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1260921.12","Total Cost":"805244.16","Total Profit":"455676.96"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"10/5/2010","Order ID":"885490596","Ship Date":"10/17/2010","Units Sold":"5200","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1069640.00","Total Cost":"608972.00","Total Profit":"460668.00"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"10/5/2014","Order ID":"228199613","Ship Date":"10/23/2014","Units Sold":"8191","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2090998.48","Total Cost":"1305809.22","Total Profit":"785189.26"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"10/24/2016","Order ID":"503386962","Ship Date":"11/23/2016","Units Sold":"2243","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"946299.27","Total Cost":"817999.67","Total Profit":"128299.60"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"1/10/2016","Order ID":"681413972","Ship Date":"2/22/2016","Units Sold":"4392","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"208400.40","Total Cost":"139621.68","Total Profit":"68778.72"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"5/6/2016","Order ID":"702954471","Ship Date":"6/16/2016","Units Sold":"8704","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1790412.80","Total Cost":"1019325.44","Total Profit":"771087.36"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"3/22/2015","Order ID":"128994786","Ship Date":"4/15/2015","Units Sold":"1279","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"11933.07","Total Cost":"8850.68","Total Profit":"3082.39"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"12/12/2014","Order ID":"390833747","Ship Date":"1/9/2015","Units Sold":"5246","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1339198.88","Total Cost":"836317.32","Total Profit":"502881.56"},{"Region":"Europe","Country":"Andorra","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/24/2011","Order ID":"740082681","Ship Date":"4/26/2011","Units Sold":"5766","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3754876.86","Total Cost":"3026919.36","Total Profit":"727957.50"},{"Region":"Asia","Country":"Indonesia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/11/2012","Order ID":"498665416","Ship Date":"8/16/2012","Units Sold":"5033","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"238815.85","Total Cost":"159999.07","Total Profit":"78816.78"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/21/2012","Order ID":"408818280","Ship Date":"10/20/2012","Units Sold":"7269","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3066718.41","Total Cost":"2650931.61","Total Profit":"415786.80"},{"Region":"Europe","Country":"Kosovo","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"11/21/2010","Order ID":"383090102","Ship Date":"12/13/2010","Units Sold":"3729","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2428362.09","Total Cost":"1957575.84","Total Profit":"470786.25"},{"Region":"Europe","Country":"France","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"8/23/2014","Order ID":"854342210","Ship Date":"9/9/2014","Units Sold":"7700","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5014317.00","Total Cost":"4042192.00","Total Profit":"972125.00"},{"Region":"Europe","Country":"Ireland","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"9/26/2013","Order ID":"525748431","Ship Date":"10/1/2013","Units Sold":"9499","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1038050.72","Total Cost":"340444.16","Total Profit":"697606.56"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"2/19/2014","Order ID":"420795094","Ship Date":"4/2/2014","Units Sold":"1474","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"69941.30","Total Cost":"46858.46","Total Profit":"23082.84"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/6/2011","Order ID":"733281028","Ship Date":"7/24/2011","Units Sold":"3006","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"142634.70","Total Cost":"95560.74","Total Profit":"47073.96"},{"Region":"Europe","Country":"Malta","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/3/2010","Order ID":"377317559","Ship Date":"4/14/2010","Units Sold":"5505","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"51361.65","Total Cost":"38094.60","Total Profit":"13267.05"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/11/2011","Order ID":"137328517","Ship Date":"9/16/2011","Units Sold":"7415","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"810311.20","Total Cost":"265753.60","Total Profit":"544557.60"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"3/4/2011","Order ID":"418050229","Ship Date":"3/22/2011","Units Sold":"9208","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6153430.16","Total Cost":"4627388.32","Total Profit":"1526041.84"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"2/5/2016","Order ID":"794531524","Ship Date":"3/1/2016","Units Sold":"8389","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"916749.92","Total Cost":"300661.76","Total Profit":"616088.16"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"4/27/2012","Order ID":"462133729","Ship Date":"6/2/2012","Units Sold":"4495","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"924621.50","Total Cost":"526409.45","Total Profit":"398212.05"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"4/7/2013","Order ID":"486530673","Ship Date":"5/24/2013","Units Sold":"4093","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1789459.60","Total Cost":"1077809.69","Total Profit":"711649.91"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/10/2010","Order ID":"653708684","Ship Date":"9/28/2010","Units Sold":"5781","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1189151.70","Total Cost":"677012.91","Total Profit":"512138.79"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/13/2016","Order ID":"819966590","Ship Date":"5/13/2016","Units Sold":"5190","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1067583.00","Total Cost":"607800.90","Total Profit":"459782.10"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/26/2012","Order ID":"461915719","Ship Date":"10/31/2012","Units Sold":"9981","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4363693.20","Total Cost":"2628296.73","Total Profit":"1735396.47"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"3/1/2010","Order ID":"926479899","Ship Date":"4/4/2010","Units Sold":"4846","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"746574.76","Total Cost":"440646.78","Total Profit":"305927.98"},{"Region":"Europe","Country":"Slovenia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/28/2011","Order ID":"480895459","Ship Date":"2/15/2012","Units Sold":"6508","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1002622.48","Total Cost":"591772.44","Total Profit":"410850.04"},{"Region":"Europe","Country":"Croatia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"8/10/2011","Order ID":"162711226","Ship Date":"8/12/2011","Units Sold":"8723","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"81385.59","Total Cost":"60363.16","Total Profit":"21022.43"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/15/2010","Order ID":"629788529","Ship Date":"12/25/2010","Units Sold":"7276","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4862332.52","Total Cost":"3656481.04","Total Profit":"1205851.48"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/28/2016","Order ID":"810301196","Ship Date":"11/24/2016","Units Sold":"4985","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"46510.05","Total Cost":"34496.20","Total Profit":"12013.85"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/10/2014","Order ID":"152735555","Ship Date":"5/28/2014","Units Sold":"6700","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4477409.00","Total Cost":"3367018.00","Total Profit":"1110391.00"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"4/4/2016","Order ID":"875890433","Ship Date":"5/13/2016","Units Sold":"4298","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2798900.58","Total Cost":"2256278.08","Total Profit":"542622.50"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/2/2013","Order ID":"318877160","Ship Date":"8/10/2013","Units Sold":"1693","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"185011.04","Total Cost":"60677.12","Total Profit":"124333.92"},{"Region":"North America","Country":"United States of America","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"5/23/2017","Order ID":"391119563","Ship Date":"6/25/2017","Units Sold":"9825","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1513639.50","Total Cost":"893387.25","Total Profit":"620252.25"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/28/2017","Order ID":"822353971","Ship Date":"3/2/2017","Units Sold":"1669","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"729686.80","Total Cost":"439497.77","Total Profit":"290189.03"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/18/2014","Order ID":"512629210","Ship Date":"7/4/2014","Units Sold":"7230","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4831592.10","Total Cost":"3633364.20","Total Profit":"1198227.90"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/7/2012","Order ID":"682306611","Ship Date":"6/12/2012","Units Sold":"8543","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1303490.94","Total Cost":"832429.92","Total Profit":"471061.02"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"2/28/2011","Order ID":"822060000","Ship Date":"3/9/2011","Units Sold":"4677","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"511102.56","Total Cost":"167623.68","Total Profit":"343478.88"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"11/15/2011","Order ID":"942875707","Ship Date":"11/16/2011","Units Sold":"6729","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"62781.57","Total Cost":"46564.68","Total Profit":"16216.89"},{"Region":"Central America and the Caribbean","Country":"Saint Lucia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"1/30/2013","Order ID":"226052558","Ship Date":"3/15/2013","Units Sold":"2830","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1842924.30","Total Cost":"1485636.80","Total Profit":"357287.50"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"5/12/2014","Order ID":"173201882","Ship Date":"5/22/2014","Units Sold":"3141","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"149040.45","Total Cost":"99852.39","Total Profit":"49188.06"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"7/24/2012","Order ID":"556247508","Ship Date":"8/8/2012","Units Sold":"4854","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"396717.42","Total Cost":"275076.18","Total Profit":"121641.24"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/6/2013","Order ID":"767425763","Ship Date":"4/8/2013","Units Sold":"7192","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1835973.76","Total Cost":"1146548.64","Total Profit":"689425.12"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"5/29/2011","Order ID":"269285476","Ship Date":"6/27/2011","Units Sold":"6411","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"978190.38","Total Cost":"624687.84","Total Profit":"353502.54"},{"Region":"Europe","Country":"Monaco","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"1/30/2011","Order ID":"844687974","Ship Date":"3/3/2011","Units Sold":"797","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"519014.37","Total Cost":"418393.12","Total Profit":"100621.25"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"4/25/2013","Order ID":"746807086","Ship Date":"5/1/2013","Units Sold":"5667","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"52873.11","Total Cost":"39215.64","Total Profit":"13657.47"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/16/2012","Order ID":"549129140","Ship Date":"10/19/2012","Units Sold":"8370","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5593419.90","Total Cost":"4206259.80","Total Profit":"1387160.10"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/20/2016","Order ID":"895452964","Ship Date":"5/20/2016","Units Sold":"3286","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"675930.20","Total Cost":"384823.46","Total Profit":"291106.74"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/12/2017","Order ID":"249889886","Ship Date":"2/7/2017","Units Sold":"6825","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1051459.50","Total Cost":"620597.25","Total Profit":"430862.25"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/15/2012","Order ID":"746863734","Ship Date":"10/28/2012","Units Sold":"2431","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"115350.95","Total Cost":"77281.49","Total Profit":"38069.46"},{"Region":"Europe","Country":"Italy","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/2/2017","Order ID":"541110837","Ship Date":"5/13/2017","Units Sold":"5576","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2352458.64","Total Cost":"2033511.44","Total Profit":"318947.20"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/29/2011","Order ID":"557680022","Ship Date":"12/2/2011","Units Sold":"8766","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1350489.96","Total Cost":"797092.38","Total Profit":"553397.58"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"5/12/2016","Order ID":"441932618","Ship Date":"5/14/2016","Units Sold":"6537","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1344660.90","Total Cost":"765548.07","Total Profit":"579112.83"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"1/12/2010","Order ID":"809542453","Ship Date":"2/12/2010","Units Sold":"456","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"304731.12","Total Cost":"229158.24","Total Profit":"75572.88"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/11/2011","Order ID":"996495854","Ship Date":"4/4/2011","Units Sold":"4123","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"450561.44","Total Cost":"147768.32","Total Profit":"302793.12"},{"Region":"Asia","Country":"Tajikistan","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"8/31/2012","Order ID":"409091651","Ship Date":"9/7/2012","Units Sold":"8165","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"387429.25","Total Cost":"259565.35","Total Profit":"127863.90"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/6/2015","Order ID":"773941171","Ship Date":"12/23/2015","Units Sold":"5246","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"800434.68","Total Cost":"511170.24","Total Profit":"289264.44"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/25/2012","Order ID":"287968242","Ship Date":"3/25/2012","Units Sold":"5057","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"239954.65","Total Cost":"160762.03","Total Profit":"79192.62"},{"Region":"Europe","Country":"Cyprus","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/15/2016","Order ID":"368409192","Ship Date":"5/16/2016","Units Sold":"9322","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3932858.58","Total Cost":"3399640.18","Total Profit":"533218.40"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"4/16/2010","Order ID":"702812850","Ship Date":"4/16/2010","Units Sold":"6795","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1397731.50","Total Cost":"795762.45","Total Profit":"601969.05"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/9/2015","Order ID":"599040544","Ship Date":"2/7/2015","Units Sold":"8264","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"903089.92","Total Cost":"296181.76","Total Profit":"606908.16"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/12/2010","Order ID":"335266101","Ship Date":"11/26/2010","Units Sold":"1544","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"168728.32","Total Cost":"55336.96","Total Profit":"113391.36"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/10/2016","Order ID":"709975850","Ship Date":"11/17/2016","Units Sold":"6486","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1334170.20","Total Cost":"759575.46","Total Profit":"574594.74"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/23/2011","Order ID":"791968619","Ship Date":"10/3/2011","Units Sold":"9969","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"473029.05","Total Cost":"316914.51","Total Profit":"156114.54"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"12/8/2012","Order ID":"170355737","Ship Date":"1/23/2013","Units Sold":"903","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"230517.84","Total Cost":"143956.26","Total Profit":"86561.58"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"10/13/2012","Order ID":"304561030","Ship Date":"11/18/2012","Units Sold":"5232","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3407130.72","Total Cost":"2746590.72","Total Profit":"660540.00"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"12/10/2011","Order ID":"474320828","Ship Date":"12/14/2011","Units Sold":"928","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"620154.56","Total Cost":"466357.12","Total Profit":"153797.44"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"1/5/2016","Order ID":"929683959","Ship Date":"2/9/2016","Units Sold":"2998","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2003473.46","Total Cost":"1506614.92","Total Profit":"496858.54"},{"Region":"Europe","Country":"Iceland","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"7/13/2016","Order ID":"641011750","Ship Date":"8/8/2016","Units Sold":"8476","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2163753.28","Total Cost":"1351243.92","Total Profit":"812509.36"},{"Region":"Europe","Country":"Denmark","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"6/14/2017","Order ID":"448978030","Ship Date":"6/24/2017","Units Sold":"1431","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"294356.70","Total Cost":"167584.41","Total Profit":"126772.29"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"3/20/2016","Order ID":"814569127","Ship Date":"4/26/2016","Units Sold":"7961","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3358666.29","Total Cost":"2903297.09","Total Profit":"455369.20"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"2/14/2015","Order ID":"469083869","Ship Date":"3/28/2015","Units Sold":"1196","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"799250.92","Total Cost":"601037.84","Total Profit":"198213.08"},{"Region":"Europe","Country":"Andorra","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/11/2017","Order ID":"464133584","Ship Date":"8/5/2017","Units Sold":"6296","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"688026.88","Total Cost":"225648.64","Total Profit":"462378.24"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"7/2/2016","Order ID":"121642100","Ship Date":"7/27/2016","Units Sold":"5455","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2384926.00","Total Cost":"1436465.15","Total Profit":"948460.85"},{"Region":"Central America and the Caribbean","Country":"Saint Lucia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/1/2013","Order ID":"183845746","Ship Date":"11/14/2013","Units Sold":"2897","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"442024.26","Total Cost":"282283.68","Total Profit":"159740.58"},{"Region":"Europe","Country":"Serbia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"10/30/2015","Order ID":"563293349","Ship Date":"11/17/2015","Units Sold":"9875","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2520890.00","Total Cost":"1574272.50","Total Profit":"946617.50"},{"Region":"Europe","Country":"Armenia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/18/2015","Order ID":"792846238","Ship Date":"3/21/2015","Units Sold":"9676","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"790819.48","Total Cost":"548338.92","Total Profit":"242480.56"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"10/17/2016","Order ID":"475678241","Ship Date":"11/26/2016","Units Sold":"2617","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1748862.59","Total Cost":"1315147.18","Total Profit":"433715.41"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/28/2011","Order ID":"635275685","Ship Date":"6/29/2011","Units Sold":"1047","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"114416.16","Total Cost":"37524.48","Total Profit":"76891.68"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/4/2017","Order ID":"565437400","Ship Date":"6/27/2017","Units Sold":"4347","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1109702.16","Total Cost":"692998.74","Total Profit":"416703.42"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"6/11/2016","Order ID":"980274713","Ship Date":"6/29/2016","Units Sold":"3926","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"429033.28","Total Cost":"140707.84","Total Profit":"288325.44"},{"Region":"Europe","Country":"Romania","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"1/19/2010","Order ID":"864211452","Ship Date":"1/30/2010","Units Sold":"8228","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1255428.24","Total Cost":"801736.32","Total Profit":"453691.92"},{"Region":"North America","Country":"Greenland","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/16/2016","Order ID":"621983945","Ship Date":"1/27/2016","Units Sold":"7726","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5163054.02","Total Cost":"3882624.04","Total Profit":"1280429.98"},{"Region":"Europe","Country":"Ireland","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/17/2011","Order ID":"728641021","Ship Date":"8/30/2011","Units Sold":"9925","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1084604.00","Total Cost":"355712.00","Total Profit":"728892.00"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"12/12/2012","Order ID":"379544007","Ship Date":"1/7/2013","Units Sold":"4361","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2839926.81","Total Cost":"2289350.56","Total Profit":"550576.25"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/14/2010","Order ID":"640366733","Ship Date":"11/1/2010","Units Sold":"7601","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1940383.28","Total Cost":"1211751.42","Total Profit":"728631.86"},{"Region":"Europe","Country":"Portugal","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/22/2011","Order ID":"397095525","Ship Date":"11/29/2011","Units Sold":"8245","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5509886.15","Total Cost":"4143442.30","Total Profit":"1366443.85"},{"Region":"Europe","Country":"Albania","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"11/14/2012","Order ID":"406029212","Ship Date":"12/31/2012","Units Sold":"1922","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"157085.06","Total Cost":"108919.74","Total Profit":"48165.32"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"8/1/2011","Order ID":"143779122","Ship Date":"9/6/2011","Units Sold":"6292","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"687589.76","Total Cost":"225505.28","Total Profit":"462084.48"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/21/2010","Order ID":"957269084","Ship Date":"6/26/2010","Units Sold":"6049","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"931908.94","Total Cost":"550035.57","Total Profit":"381873.37"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"2/18/2013","Order ID":"213735425","Ship Date":"3/10/2013","Units Sold":"7917","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"375661.65","Total Cost":"251681.43","Total Profit":"123980.22"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"11/16/2012","Order ID":"750726974","Ship Date":"12/17/2012","Units Sold":"5649","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3775057.23","Total Cost":"2838848.46","Total Profit":"936208.77"},{"Region":"Europe","Country":"Spain","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/22/2011","Order ID":"526105058","Ship Date":"8/26/2011","Units Sold":"5033","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1035288.10","Total Cost":"589414.63","Total Profit":"445873.47"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/19/2016","Order ID":"268043506","Ship Date":"5/2/2016","Units Sold":"8885","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2268162.80","Total Cost":"1416446.70","Total Profit":"851716.10"},{"Region":"Europe","Country":"Belgium","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"9/29/2011","Order ID":"325028645","Ship Date":"10/14/2011","Units Sold":"2054","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"313399.32","Total Cost":"200141.76","Total Profit":"113257.56"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"12/6/2010","Order ID":"215859305","Ship Date":"12/31/2010","Units Sold":"6420","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"59898.60","Total Cost":"44426.40","Total Profit":"15472.20"},{"Region":"Asia","Country":"Thailand","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"5/29/2012","Order ID":"879646813","Ship Date":"7/9/2012","Units Sold":"5895","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"481798.35","Total Cost":"334069.65","Total Profit":"147728.70"},{"Region":"Asia","Country":"Malaysia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"1/30/2012","Order ID":"625814998","Ship Date":"2/19/2012","Units Sold":"1420","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"13248.60","Total Cost":"9826.40","Total Profit":"3422.20"},{"Region":"Asia","Country":"India","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"6/29/2014","Order ID":"984100186","Ship Date":"7/31/2014","Units Sold":"5969","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3887072.49","Total Cost":"3133486.24","Total Profit":"753586.25"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"11/23/2013","Order ID":"854551208","Ship Date":"12/29/2013","Units Sold":"9547","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4027783.83","Total Cost":"3481695.43","Total Profit":"546088.40"},{"Region":"Europe","Country":"Belgium","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/6/2013","Order ID":"557529389","Ship Date":"3/8/2013","Units Sold":"4191","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2729221.11","Total Cost":"2200107.36","Total Profit":"529113.75"},{"Region":"Asia","Country":"Bhutan","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"7/3/2012","Order ID":"483708560","Ship Date":"8/15/2012","Units Sold":"8967","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1381456.02","Total Cost":"815369.31","Total Profit":"566086.71"},{"Region":"Europe","Country":"Spain","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/7/2013","Order ID":"644075047","Ship Date":"3/7/2013","Units Sold":"4974","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1023151.80","Total Cost":"582505.14","Total Profit":"440646.66"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"6/29/2013","Order ID":"219927680","Ship Date":"7/20/2013","Units Sold":"343","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"229216.61","Total Cost":"172371.22","Total Profit":"56845.39"},{"Region":"Europe","Country":"Malta","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"3/29/2013","Order ID":"712877786","Ship Date":"5/16/2013","Units Sold":"5233","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"798451.14","Total Cost":"509903.52","Total Profit":"288547.62"},{"Region":"Europe","Country":"Greece","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/10/2016","Order ID":"994849193","Ship Date":"10/28/2016","Units Sold":"6839","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4453625.19","Total Cost":"3590201.44","Total Profit":"863423.75"},{"Region":"Asia","Country":"Tajikistan","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"6/10/2014","Order ID":"458078229","Ship Date":"6/21/2014","Units Sold":"4382","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"207925.90","Total Cost":"139303.78","Total Profit":"68622.12"},{"Region":"Europe","Country":"Moldova ","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/31/2016","Order ID":"365113723","Ship Date":"9/9/2016","Units Sold":"4119","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1051498.32","Total Cost":"656650.98","Total Profit":"394847.34"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/19/2011","Order ID":"698817002","Ship Date":"12/22/2011","Units Sold":"4335","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1895262.00","Total Cost":"1141535.55","Total Profit":"753726.45"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"8/10/2016","Order ID":"612361896","Ship Date":"8/15/2016","Units Sold":"348","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"38029.44","Total Cost":"12472.32","Total Profit":"25557.12"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"3/20/2010","Order ID":"679234731","Ship Date":"4/27/2010","Units Sold":"9506","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4156023.20","Total Cost":"2503214.98","Total Profit":"1652808.22"},{"Region":"Europe","Country":"Montenegro","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/17/2014","Order ID":"643234336","Ship Date":"1/5/2015","Units Sold":"6189","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"676333.92","Total Cost":"221813.76","Total Profit":"454520.16"},{"Region":"Asia","Country":"Vietnam","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"12/22/2015","Order ID":"768472039","Ship Date":"1/7/2016","Units Sold":"6808","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4433437.68","Total Cost":"3573927.68","Total Profit":"859510.00"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"4/20/2011","Order ID":"489371669","Ship Date":"5/2/2011","Units Sold":"4807","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"392876.11","Total Cost":"272412.69","Total Profit":"120463.42"},{"Region":"Europe","Country":"Poland","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"11/13/2014","Order ID":"660669553","Ship Date":"12/1/2014","Units Sold":"5657","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1163644.90","Total Cost":"662491.27","Total Profit":"501153.63"},{"Region":"Europe","Country":"Kosovo","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/2/2015","Order ID":"407414519","Ship Date":"4/6/2015","Units Sold":"1865","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"476097.20","Total Cost":"297318.30","Total Profit":"178778.90"},{"Region":"North America","Country":"United States of America","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/23/2017","Order ID":"274967896","Ship Date":"3/29/2017","Units Sold":"7966","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2033560.48","Total Cost":"1269939.72","Total Profit":"763620.76"},{"Region":"Asia","Country":"Laos","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"4/13/2015","Order ID":"879003512","Ship Date":"5/29/2015","Units Sold":"5528","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1137109.60","Total Cost":"647384.08","Total Profit":"489725.52"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"7/16/2012","Order ID":"655507695","Ship Date":"7/24/2012","Units Sold":"8149","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1243374.42","Total Cost":"794038.56","Total Profit":"449335.86"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"12/25/2016","Order ID":"810779273","Ship Date":"1/11/2017","Units Sold":"6459","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1648853.52","Total Cost":"1029693.78","Total Profit":"619159.74"},{"Region":"North America","Country":"Canada","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"12/5/2014","Order ID":"371429574","Ship Date":"12/15/2014","Units Sold":"3120","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"796473.60","Total Cost":"497390.40","Total Profit":"299083.20"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/11/2012","Order ID":"234382426","Ship Date":"9/25/2012","Units Sold":"7823","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3300445.47","Total Cost":"2852969.87","Total Profit":"447475.60"},{"Region":"Europe","Country":"Albania","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/5/2010","Order ID":"916874158","Ship Date":"2/21/2010","Units Sold":"2293","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1532343.11","Total Cost":"1152324.22","Total Profit":"380018.89"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"10/18/2011","Order ID":"306453597","Ship Date":"12/1/2011","Units Sold":"5284","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1086918.80","Total Cost":"618809.24","Total Profit":"468109.56"},{"Region":"Europe","Country":"Spain","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/12/2015","Order ID":"410982072","Ship Date":"1/18/2016","Units Sold":"7583","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"828670.24","Total Cost":"271774.72","Total Profit":"556895.52"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/29/2010","Order ID":"608633410","Ship Date":"6/23/2010","Units Sold":"7006","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1788491.68","Total Cost":"1116896.52","Total Profit":"671595.16"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"5/26/2014","Order ID":"797893941","Ship Date":"7/15/2014","Units Sold":"3403","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"519229.74","Total Cost":"331588.32","Total Profit":"187641.42"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/14/2014","Order ID":"947562491","Ship Date":"3/28/2014","Units Sold":"3653","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"562781.18","Total Cost":"332167.29","Total Profit":"230613.89"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/30/2011","Order ID":"646750390","Ship Date":"2/12/2012","Units Sold":"6667","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4341617.07","Total Cost":"3499908.32","Total Profit":"841708.75"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/13/2015","Order ID":"454881465","Ship Date":"5/20/2015","Units Sold":"8389","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"398058.05","Total Cost":"266686.31","Total Profit":"131371.74"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/1/2017","Order ID":"551692044","Ship Date":"3/19/2017","Units Sold":"6791","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2865054.99","Total Cost":"2476609.79","Total Profit":"388445.20"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"9/8/2015","Order ID":"287230956","Ship Date":"9/27/2015","Units Sold":"6878","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1414804.60","Total Cost":"805482.58","Total Profit":"609322.02"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/7/2017","Order ID":"431859529","Ship Date":"8/13/2017","Units Sold":"5686","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2485919.20","Total Cost":"1497294.38","Total Profit":"988624.82"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/17/2011","Order ID":"926251590","Ship Date":"6/24/2011","Units Sold":"7284","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1122173.04","Total Cost":"662334.12","Total Profit":"459838.92"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"2/10/2010","Order ID":"431393468","Ship Date":"3/9/2010","Units Sold":"7769","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"368639.05","Total Cost":"246976.51","Total Profit":"121662.54"},{"Region":"Europe","Country":"Sweden","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"10/8/2015","Order ID":"378583991","Ship Date":"11/11/2015","Units Sold":"271","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"114332.19","Total Cost":"98830.99","Total Profit":"15501.20"},{"Region":"Europe","Country":"Estonia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/23/2016","Order ID":"919434487","Ship Date":"9/18/2016","Units Sold":"9952","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"92852.16","Total Cost":"68867.84","Total Profit":"23984.32"},{"Region":"Europe","Country":"Finland","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"5/18/2013","Order ID":"475868785","Ship Date":"6/30/2013","Units Sold":"9003","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3798275.67","Total Cost":"3283304.07","Total Profit":"514971.60"},{"Region":"Europe","Country":"Greece","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"4/1/2015","Order ID":"690123212","Ship Date":"5/7/2015","Units Sold":"1649","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"254044.94","Total Cost":"149943.57","Total Profit":"104101.37"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/31/2013","Order ID":"574746596","Ship Date":"10/13/2013","Units Sold":"9145","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1395344.10","Total Cost":"891088.80","Total Profit":"504255.30"},{"Region":"Europe","Country":"Armenia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"4/1/2016","Order ID":"562600266","Ship Date":"4/19/2016","Units Sold":"4776","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"226621.20","Total Cost":"151829.04","Total Profit":"74792.16"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"10/3/2012","Order ID":"256858050","Ship Date":"10/6/2012","Units Sold":"8860","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"968220.80","Total Cost":"317542.40","Total Profit":"650678.40"},{"Region":"Central America and the Caribbean","Country":"Saint Lucia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"9/19/2016","Order ID":"681006276","Ship Date":"9/20/2016","Units Sold":"3745","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"571412.10","Total Cost":"364912.80","Total Profit":"206499.30"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/28/2016","Order ID":"228843772","Ship Date":"4/2/2016","Units Sold":"8812","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"82215.96","Total Cost":"60979.04","Total Profit":"21236.92"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"8/15/2015","Order ID":"514481866","Ship Date":"9/6/2015","Units Sold":"5472","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3563421.12","Total Cost":"2872581.12","Total Profit":"690840.00"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"6/14/2016","Order ID":"522344386","Ship Date":"7/29/2016","Units Sold":"2166","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"946975.20","Total Cost":"570372.78","Total Profit":"376602.42"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"10/24/2013","Order ID":"657167661","Ship Date":"11/25/2013","Units Sold":"9369","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1429522.02","Total Cost":"912915.36","Total Profit":"516606.66"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"3/16/2015","Order ID":"494000518","Ship Date":"4/14/2015","Units Sold":"4586","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1170714.08","Total Cost":"731100.12","Total Profit":"439613.96"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/17/2014","Order ID":"128204286","Ship Date":"3/3/2014","Units Sold":"7352","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"348852.40","Total Cost":"233720.08","Total Profit":"115132.32"},{"Region":"Central America and the Caribbean","Country":"Saint Lucia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/10/2016","Order ID":"625452792","Ship Date":"4/5/2016","Units Sold":"4235","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1081110.80","Total Cost":"675143.70","Total Profit":"405967.10"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/24/2013","Order ID":"871732366","Ship Date":"6/28/2013","Units Sold":"3834","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"590666.04","Total Cost":"348625.62","Total Profit":"242040.42"},{"Region":"Europe","Country":"Ireland","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"6/4/2017","Order ID":"723341834","Ship Date":"6/24/2017","Units Sold":"1778","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"16588.74","Total Cost":"12303.76","Total Profit":"4284.98"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/26/2010","Order ID":"556892526","Ship Date":"12/8/2010","Units Sold":"5729","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"468231.17","Total Cost":"324662.43","Total Profit":"143568.74"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"4/2/2011","Order ID":"819308269","Ship Date":"4/6/2011","Units Sold":"378","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"159474.42","Total Cost":"137852.82","Total Profit":"21621.60"},{"Region":"Europe","Country":"Latvia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/2/2014","Order ID":"677825391","Ship Date":"10/21/2014","Units Sold":"2451","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"267845.28","Total Cost":"87843.84","Total Profit":"180001.44"},{"Region":"Asia","Country":"Nepal","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"8/14/2014","Order ID":"269992721","Ship Date":"9/21/2014","Units Sold":"5701","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"53190.33","Total Cost":"39450.92","Total Profit":"13739.41"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/18/2012","Order ID":"253671586","Ship Date":"11/14/2012","Units Sold":"5914","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"646281.92","Total Cost":"211957.76","Total Profit":"434324.16"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/30/2016","Order ID":"457035815","Ship Date":"3/9/2016","Units Sold":"5909","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"901595.22","Total Cost":"575772.96","Total Profit":"325822.26"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"3/5/2017","Order ID":"328571736","Ship Date":"4/16/2017","Units Sold":"533","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"233027.60","Total Cost":"140354.89","Total Profit":"92672.71"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"8/25/2013","Order ID":"287078177","Ship Date":"10/4/2013","Units Sold":"1667","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"256818.02","Total Cost":"151580.31","Total Profit":"105237.71"},{"Region":"Europe","Country":"Denmark","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"9/14/2011","Order ID":"371666467","Ship Date":"9/16/2011","Units Sold":"3222","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1359329.58","Total Cost":"1175031.18","Total Profit":"184298.40"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/25/2014","Order ID":"691760432","Ship Date":"11/30/2014","Units Sold":"6139","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"945774.34","Total Cost":"558219.27","Total Profit":"387555.07"},{"Region":"Europe","Country":"Kosovo","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/20/2012","Order ID":"977096402","Ship Date":"5/30/2012","Units Sold":"3394","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"161045.30","Total Cost":"107895.26","Total Profit":"53150.04"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"10/21/2013","Order ID":"127723205","Ship Date":"11/24/2013","Units Sold":"4989","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2104809.21","Total Cost":"1819438.41","Total Profit":"285370.80"},{"Region":"Europe","Country":"Norway","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"5/25/2014","Order ID":"264002168","Ship Date":"6/22/2014","Units Sold":"2963","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1295423.60","Total Cost":"780246.79","Total Profit":"515176.81"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/27/2014","Order ID":"876607120","Ship Date":"4/30/2014","Units Sold":"6382","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1312777.40","Total Cost":"747396.02","Total Profit":"565381.38"},{"Region":"Asia","Country":"South Korea","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/23/2014","Order ID":"176524388","Ship Date":"11/25/2014","Units Sold":"6344","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1304960.80","Total Cost":"742945.84","Total Profit":"562014.96"},{"Region":"Europe","Country":"Cyprus","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"5/18/2014","Order ID":"945052802","Ship Date":"6/14/2014","Units Sold":"980","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"428456.00","Total Cost":"258063.40","Total Profit":"170392.60"},{"Region":"Asia","Country":"Brunei","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/5/2012","Order ID":"183803689","Ship Date":"8/17/2012","Units Sold":"451","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"115131.28","Total Cost":"71898.42","Total Profit":"43232.86"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/20/2013","Order ID":"364700877","Ship Date":"1/9/2014","Units Sold":"1949","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1269208.29","Total Cost":"1023147.04","Total Profit":"246061.25"},{"Region":"Europe","Country":"Hungary","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/5/2016","Order ID":"879980695","Ship Date":"3/22/2016","Units Sold":"4698","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1199305.44","Total Cost":"748955.16","Total Profit":"450350.28"},{"Region":"Asia","Country":"Taiwan","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/28/2014","Order ID":"292191970","Ship Date":"9/25/2014","Units Sold":"4952","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3224791.92","Total Cost":"2599601.92","Total Profit":"625190.00"},{"Region":"Europe","Country":"Monaco","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"2/28/2013","Order ID":"384196031","Ship Date":"3/11/2013","Units Sold":"998","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"205288.60","Total Cost":"116875.78","Total Profit":"88412.82"},{"Region":"Europe","Country":"Finland","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"10/21/2012","Order ID":"309166705","Ship Date":"11/23/2012","Units Sold":"8153","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3439669.17","Total Cost":"2973317.57","Total Profit":"466351.60"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"10/8/2015","Order ID":"640590322","Ship Date":"10/29/2015","Units Sold":"3766","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"574616.28","Total Cost":"366959.04","Total Profit":"207657.24"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"12/6/2013","Order ID":"222265708","Ship Date":"1/20/2014","Units Sold":"2217","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"181195.41","Total Cost":"125637.39","Total Profit":"55558.02"},{"Region":"Asia","Country":"Taiwan","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"5/22/2015","Order ID":"218304193","Ship Date":"6/26/2015","Units Sold":"9917","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6627233.59","Total Cost":"4983689.18","Total Profit":"1643544.41"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/14/2010","Order ID":"963129603","Ship Date":"5/23/2010","Units Sold":"307","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"129520.23","Total Cost":"111959.83","Total Profit":"17560.40"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"11/16/2012","Order ID":"611478269","Ship Date":"11/18/2012","Units Sold":"8863","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1352316.54","Total Cost":"863610.72","Total Profit":"488705.82"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"6/28/2011","Order ID":"988399016","Ship Date":"8/2/2011","Units Sold":"8088","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"883856.64","Total Cost":"289873.92","Total Profit":"593982.72"},{"Region":"Europe","Country":"Romania","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"12/27/2010","Order ID":"839253175","Ship Date":"2/4/2011","Units Sold":"2519","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"518158.30","Total Cost":"295000.09","Total Profit":"223158.21"},{"Region":"Europe","Country":"Serbia","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"6/6/2013","Order ID":"779714572","Ship Date":"7/15/2013","Units Sold":"3724","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2488637.48","Total Cost":"1871458.96","Total Profit":"617178.52"},{"Region":"Europe","Country":"Belgium","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"5/13/2014","Order ID":"145769536","Ship Date":"6/1/2014","Units Sold":"5300","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2317160.00","Total Cost":"1395649.00","Total Profit":"921511.00"},{"Region":"Europe","Country":"Denmark","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"3/14/2014","Order ID":"143716895","Ship Date":"3/19/2014","Units Sold":"7878","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"73501.74","Total Cost":"54515.76","Total Profit":"18985.98"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/26/2014","Order ID":"700167977","Ship Date":"6/28/2014","Units Sold":"4119","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2682333.99","Total Cost":"2162310.24","Total Profit":"520023.75"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"9/17/2013","Order ID":"912046611","Ship Date":"10/15/2013","Units Sold":"3715","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"34660.95","Total Cost":"25707.80","Total Profit":"8953.15"},{"Region":"Europe","Country":"Austria","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/14/2011","Order ID":"396589124","Ship Date":"1/12/2012","Units Sold":"8390","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1725823.00","Total Cost":"982552.90","Total Profit":"743270.10"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/10/2013","Order ID":"641344344","Ship Date":"10/24/2013","Units Sold":"6898","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"64358.34","Total Cost":"47734.16","Total Profit":"16624.18"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/4/2017","Order ID":"954173600","Ship Date":"5/27/2017","Units Sold":"27","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"6892.56","Total Cost":"4304.34","Total Profit":"2588.22"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"7/5/2010","Order ID":"713250720","Ship Date":"8/9/2010","Units Sold":"5593","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2359630.77","Total Cost":"2039711.17","Total Profit":"319919.60"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"6/30/2012","Order ID":"717062032","Ship Date":"8/9/2012","Units Sold":"3445","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"525638.10","Total Cost":"335680.80","Total Profit":"189957.30"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/29/2017","Order ID":"934406363","Ship Date":"2/18/2017","Units Sold":"462","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"117939.36","Total Cost":"73652.04","Total Profit":"44287.32"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"7/12/2011","Order ID":"954395043","Ship Date":"7/30/2011","Units Sold":"5557","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"263679.65","Total Cost":"176657.03","Total Profit":"87022.62"},{"Region":"Europe","Country":"Finland","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/5/2010","Order ID":"436451900","Ship Date":"9/21/2010","Units Sold":"4671","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"381760.83","Total Cost":"264705.57","Total Profit":"117055.26"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/17/2015","Order ID":"460313260","Ship Date":"4/26/2015","Units Sold":"5778","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"472235.94","Total Cost":"327439.26","Total Profit":"144796.68"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"10/31/2015","Order ID":"376027953","Ship Date":"12/1/2015","Units Sold":"3882","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"424224.96","Total Cost":"139130.88","Total Profit":"285094.08"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"5/25/2011","Order ID":"953957307","Ship Date":"6/20/2011","Units Sold":"6021","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"492096.33","Total Cost":"341210.07","Total Profit":"150886.26"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/6/2013","Order ID":"334775149","Ship Date":"8/7/2013","Units Sold":"6261","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4184038.47","Total Cost":"3146402.94","Total Profit":"1037635.53"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"1/21/2012","Order ID":"779467809","Ship Date":"3/7/2012","Units Sold":"701","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"57292.73","Total Cost":"39725.67","Total Profit":"17567.06"},{"Region":"Europe","Country":"Lithuania","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"11/21/2016","Order ID":"119334113","Ship Date":"11/24/2016","Units Sold":"2471","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"201954.83","Total Cost":"140031.57","Total Profit":"61923.26"},{"Region":"Europe","Country":"Poland","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/27/2016","Order ID":"305985391","Ship Date":"3/31/2016","Units Sold":"6732","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1718544.96","Total Cost":"1073215.44","Total Profit":"645329.52"},{"Region":"Asia","Country":"Myanmar","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"9/23/2010","Order ID":"661345469","Ship Date":"11/1/2010","Units Sold":"5676","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1167553.20","Total Cost":"664716.36","Total Profit":"502836.84"},{"Region":"Asia","Country":"Vietnam","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/22/2017","Order ID":"127650678","Ship Date":"3/27/2017","Units Sold":"3527","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"900372.56","Total Cost":"562274.34","Total Profit":"338098.22"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/23/2011","Order ID":"417449843","Ship Date":"2/7/2012","Units Sold":"1540","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"234973.20","Total Cost":"150057.60","Total Profit":"84915.60"},{"Region":"Europe","Country":"France","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/11/2010","Order ID":"163604295","Ship Date":"3/22/2010","Units Sold":"3001","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1266091.89","Total Cost":"1094434.69","Total Profit":"171657.20"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"10/5/2016","Order ID":"769287860","Ship Date":"11/19/2016","Units Sold":"8228","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2100443.84","Total Cost":"1311707.76","Total Profit":"788736.08"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"12/7/2014","Order ID":"557986867","Ship Date":"1/25/2015","Units Sold":"9568","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1968137.60","Total Cost":"1120508.48","Total Profit":"847629.12"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"7/12/2015","Order ID":"623500144","Ship Date":"7/28/2015","Units Sold":"6403","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4278932.81","Total Cost":"3217763.62","Total Profit":"1061169.19"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/9/2015","Order ID":"779939019","Ship Date":"4/13/2015","Units Sold":"143","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"1334.19","Total Cost":"989.56","Total Profit":"344.63"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/3/2015","Order ID":"911727321","Ship Date":"10/9/2015","Units Sold":"9230","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6168132.10","Total Cost":"4638444.20","Total Profit":"1529687.90"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"1/22/2012","Order ID":"523601377","Ship Date":"2/22/2012","Units Sold":"4138","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1809133.60","Total Cost":"1089659.54","Total Profit":"719474.06"},{"Region":"Asia","Country":"Cambodia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"9/6/2011","Order ID":"990610015","Ship Date":"9/28/2011","Units Sold":"2372","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"365430.32","Total Cost":"215685.96","Total Profit":"149744.36"},{"Region":"Asia","Country":"Malaysia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/15/2015","Order ID":"608114564","Ship Date":"9/25/2015","Units Sold":"3468","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"283439.64","Total Cost":"196531.56","Total Profit":"86908.08"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"7/29/2014","Order ID":"441788852","Ship Date":"9/1/2014","Units Sold":"3994","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1746176.80","Total Cost":"1051740.02","Total Profit":"694436.78"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"6/15/2015","Order ID":"277619206","Ship Date":"6/25/2015","Units Sold":"2547","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"23763.51","Total Cost":"17625.24","Total Profit":"6138.27"},{"Region":"North America","Country":"United States of America","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/17/2014","Order ID":"871904456","Ship Date":"12/9/2014","Units Sold":"4759","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"978926.30","Total Cost":"557326.49","Total Profit":"421599.81"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"7/12/2010","Order ID":"801255929","Ship Date":"8/10/2010","Units Sold":"8290","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"677541.70","Total Cost":"469794.30","Total Profit":"207747.40"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"7/4/2012","Order ID":"512597453","Ship Date":"8/6/2012","Units Sold":"7832","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"371628.40","Total Cost":"248979.28","Total Profit":"122649.12"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/3/2016","Order ID":"973165357","Ship Date":"12/20/2016","Units Sold":"110","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"12020.80","Total Cost":"3942.40","Total Profit":"8078.40"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/1/2016","Order ID":"520508468","Ship Date":"11/24/2016","Units Sold":"8877","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1825998.90","Total Cost":"1039585.47","Total Profit":"786413.43"},{"Region":"Asia","Country":"Myanmar","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"6/6/2014","Order ID":"712488114","Ship Date":"7/3/2014","Units Sold":"9921","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"810843.33","Total Cost":"562223.07","Total Profit":"248620.26"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/1/2016","Order ID":"477278125","Ship Date":"6/13/2016","Units Sold":"6058","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"287452.10","Total Cost":"192583.82","Total Profit":"94868.28"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/5/2015","Order ID":"163364827","Ship Date":"8/20/2015","Units Sold":"2138","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"233640.64","Total Cost":"76625.92","Total Profit":"157014.72"},{"Region":"Europe","Country":"Ukraine","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/3/2016","Order ID":"189547049","Ship Date":"12/6/2016","Units Sold":"39","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"3187.47","Total Cost":"2210.13","Total Profit":"977.34"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/21/2011","Order ID":"594936120","Ship Date":"8/2/2011","Units Sold":"3674","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2455223.98","Total Cost":"1846331.96","Total Profit":"608892.02"},{"Region":"Europe","Country":"Belgium","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"6/13/2010","Order ID":"588955867","Ship Date":"7/13/2010","Units Sold":"3984","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"325612.32","Total Cost":"225773.28","Total Profit":"99839.04"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/30/2010","Order ID":"801342618","Ship Date":"10/16/2010","Units Sold":"3943","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1663512.27","Total Cost":"1437972.67","Total Profit":"225539.60"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/10/2014","Order ID":"132145202","Ship Date":"3/19/2014","Units Sold":"3557","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"388708.96","Total Cost":"127482.88","Total Profit":"261226.08"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"2/1/2016","Order ID":"701724946","Ship Date":"3/4/2016","Units Sold":"4860","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2124792.00","Total Cost":"1279783.80","Total Profit":"845008.20"},{"Region":"Europe","Country":"Hungary","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/11/2016","Order ID":"200755679","Ship Date":"9/23/2016","Units Sold":"6922","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1423855.40","Total Cost":"810635.42","Total Profit":"613219.98"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/27/2016","Order ID":"440223729","Ship Date":"1/11/2017","Units Sold":"839","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"129256.34","Total Cost":"76290.27","Total Profit":"52966.07"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"9/26/2015","Order ID":"601427924","Ship Date":"10/7/2015","Units Sold":"4743","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"723686.94","Total Cost":"462157.92","Total Profit":"261529.02"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/3/2012","Order ID":"385979592","Ship Date":"6/7/2012","Units Sold":"8794","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"82048.02","Total Cost":"60854.48","Total Profit":"21193.54"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"6/23/2011","Order ID":"465802562","Ship Date":"7/2/2011","Units Sold":"184","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"15038.32","Total Cost":"10427.28","Total Profit":"4611.04"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"10/24/2010","Order ID":"233133161","Ship Date":"10/25/2010","Units Sold":"8138","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"75927.54","Total Cost":"56314.96","Total Profit":"19612.58"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/15/2013","Order ID":"950520217","Ship Date":"4/30/2013","Units Sold":"8910","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2274544.80","Total Cost":"1420432.20","Total Profit":"854112.60"},{"Region":"Asia","Country":"India","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/29/2014","Order ID":"800825059","Ship Date":"12/17/2014","Units Sold":"786","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"343639.20","Total Cost":"206977.38","Total Profit":"136661.82"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/18/2017","Order ID":"737221515","Ship Date":"2/25/2017","Units Sold":"9084","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1399481.04","Total Cost":"826008.12","Total Profit":"573472.92"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/21/2014","Order ID":"433195912","Ship Date":"4/22/2014","Units Sold":"1152","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"769847.04","Total Cost":"578926.08","Total Profit":"190920.96"},{"Region":"Europe","Country":"Switzerland","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"6/15/2013","Order ID":"532547080","Ship Date":"7/5/2013","Units Sold":"1370","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"111970.10","Total Cost":"77637.90","Total Profit":"34332.20"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"4/10/2015","Order ID":"399386346","Ship Date":"5/11/2015","Units Sold":"6150","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2688780.00","Total Cost":"1619479.50","Total Profit":"1069300.50"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/23/2017","Order ID":"368137538","Ship Date":"7/29/2017","Units Sold":"8933","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"730094.09","Total Cost":"506233.11","Total Profit":"223860.98"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"5/11/2011","Order ID":"393536984","Ship Date":"5/26/2011","Units Sold":"5194","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"567600.32","Total Cost":"186152.96","Total Profit":"381447.36"},{"Region":"Asia","Country":"Nepal","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"10/11/2015","Order ID":"500633513","Ship Date":"11/23/2015","Units Sold":"7437","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"812715.36","Total Cost":"266542.08","Total Profit":"546173.28"},{"Region":"Europe","Country":"Montenegro","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"10/18/2012","Order ID":"334788453","Ship Date":"12/7/2012","Units Sold":"198","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"30503.88","Total Cost":"18004.14","Total Profit":"12499.74"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/19/2012","Order ID":"511675631","Ship Date":"1/29/2012","Units Sold":"5045","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2128435.05","Total Cost":"1839861.05","Total Profit":"288574.00"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/30/2016","Order ID":"367281377","Ship Date":"9/8/2016","Units Sold":"5576","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3726273.52","Total Cost":"2802163.04","Total Profit":"924110.48"},{"Region":"Asia","Country":"India","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"11/21/2011","Order ID":"207904517","Ship Date":"12/12/2011","Units Sold":"2422","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1618549.94","Total Cost":"1217151.88","Total Profit":"401398.06"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"5/6/2014","Order ID":"860156381","Ship Date":"6/8/2014","Units Sold":"8242","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1695379.40","Total Cost":"965220.62","Total Profit":"730158.78"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/16/2015","Order ID":"520960795","Ship Date":"4/4/2015","Units Sold":"2731","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"25480.23","Total Cost":"18898.52","Total Profit":"6581.71"},{"Region":"Europe","Country":"Greece","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/12/2014","Order ID":"607554090","Ship Date":"5/3/2014","Units Sold":"7611","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5086202.97","Total Cost":"3824831.94","Total Profit":"1261371.03"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/24/2016","Order ID":"807485091","Ship Date":"4/6/2016","Units Sold":"1637","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1093957.99","Total Cost":"822657.98","Total Profit":"271300.01"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/21/2011","Order ID":"428615128","Ship Date":"9/28/2011","Units Sold":"5596","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3644171.16","Total Cost":"2937676.16","Total Profit":"706495.00"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"1/31/2011","Order ID":"649118030","Ship Date":"2/22/2011","Units Sold":"7305","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3193746.00","Total Cost":"1923625.65","Total Profit":"1270120.35"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/25/2011","Order ID":"467480123","Ship Date":"2/2/2011","Units Sold":"6612","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1687911.36","Total Cost":"1054085.04","Total Profit":"633826.32"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"12/7/2012","Order ID":"752500236","Ship Date":"1/3/2013","Units Sold":"397","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"60574.26","Total Cost":"38683.68","Total Profit":"21890.58"},{"Region":"Europe","Country":"Italy","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/14/2011","Order ID":"193289697","Ship Date":"8/5/2011","Units Sold":"7571","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5059472.17","Total Cost":"3804730.34","Total Profit":"1254741.83"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"2/14/2014","Order ID":"249272334","Ship Date":"3/10/2014","Units Sold":"4078","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2655634.38","Total Cost":"2140786.88","Total Profit":"514847.50"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"11/22/2013","Order ID":"200184476","Ship Date":"12/21/2013","Units Sold":"7890","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"862219.20","Total Cost":"282777.60","Total Profit":"579441.60"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/13/2016","Order ID":"296074950","Ship Date":"7/3/2016","Units Sold":"4012","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1692622.68","Total Cost":"1463136.28","Total Profit":"229486.40"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/28/2013","Order ID":"407305085","Ship Date":"6/12/2013","Units Sold":"9481","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1950241.70","Total Cost":"1110319.91","Total Profit":"839921.79"},{"Region":"Europe","Country":"Hungary","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/15/2016","Order ID":"474548709","Ship Date":"2/20/2016","Units Sold":"8363","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"78026.79","Total Cost":"57871.96","Total Profit":"20154.83"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/21/2014","Order ID":"958792150","Ship Date":"8/2/2014","Units Sold":"6758","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1041137.48","Total Cost":"614504.94","Total Profit":"426632.54"},{"Region":"Europe","Country":"Hungary","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/30/2010","Order ID":"591334235","Ship Date":"12/1/2010","Units Sold":"7796","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1189513.68","Total Cost":"759642.24","Total Profit":"429871.44"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"4/19/2016","Order ID":"423786294","Ship Date":"5/1/2016","Units Sold":"6637","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"314925.65","Total Cost":"210990.23","Total Profit":"103935.42"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/15/2016","Order ID":"678072154","Ship Date":"2/27/2016","Units Sold":"5473","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"259693.85","Total Cost":"173986.67","Total Profit":"85707.18"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"2/4/2012","Order ID":"296428143","Ship Date":"2/8/2012","Units Sold":"8530","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1301507.40","Total Cost":"831163.20","Total Profit":"470344.20"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"10/5/2010","Order ID":"991403090","Ship Date":"11/1/2010","Units Sold":"7060","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1802276.80","Total Cost":"1125505.20","Total Profit":"676771.60"},{"Region":"Europe","Country":"Russia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/6/2012","Order ID":"495858323","Ship Date":"4/8/2012","Units Sold":"4352","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1902694.40","Total Cost":"1146012.16","Total Profit":"756682.24"},{"Region":"Europe","Country":"Switzerland","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/1/2013","Order ID":"212967669","Ship Date":"9/14/2013","Units Sold":"721","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"304182.69","Total Cost":"262941.49","Total Profit":"41241.20"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"8/15/2013","Order ID":"266217458","Ship Date":"9/7/2013","Units Sold":"8517","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"696094.41","Total Cost":"482658.39","Total Profit":"213436.02"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"4/15/2015","Order ID":"849406516","Ship Date":"4/20/2015","Units Sold":"7119","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1096753.14","Total Cost":"647330.67","Total Profit":"449422.47"},{"Region":"Europe","Country":"Croatia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/24/2015","Order ID":"876646173","Ship Date":"6/7/2015","Units Sold":"7938","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1222928.28","Total Cost":"721802.34","Total Profit":"501125.94"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/13/2015","Order ID":"232360255","Ship Date":"8/29/2015","Units Sold":"9418","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1450937.08","Total Cost":"856378.74","Total Profit":"594558.34"},{"Region":"Europe","Country":"Vatican City","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"10/11/2010","Order ID":"221285092","Ship Date":"10/18/2010","Units Sold":"2031","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1357256.37","Total Cost":"1020658.74","Total Profit":"336597.63"},{"Region":"Europe","Country":"Monaco","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"3/15/2016","Order ID":"418469512","Ship Date":"4/29/2016","Units Sold":"3283","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"155778.35","Total Cost":"104366.57","Total Profit":"51411.78"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"2/3/2010","Order ID":"919274842","Ship Date":"2/18/2010","Units Sold":"2709","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1764127.89","Total Cost":"1422116.64","Total Profit":"342011.25"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"6/7/2013","Order ID":"989374911","Ship Date":"6/26/2013","Units Sold":"6877","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"562057.21","Total Cost":"389719.59","Total Profit":"172337.62"},{"Region":"Asia","Country":"China","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/1/2010","Order ID":"414756047","Ship Date":"6/15/2010","Units Sold":"4386","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"675707.16","Total Cost":"398818.98","Total Profit":"276888.18"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"10/21/2012","Order ID":"851717078","Ship Date":"10/22/2012","Units Sold":"865","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"177930.50","Total Cost":"101300.15","Total Profit":"76630.35"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/16/2010","Order ID":"876869332","Ship Date":"10/29/2010","Units Sold":"3976","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"434497.28","Total Cost":"142499.84","Total Profit":"291997.44"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"3/27/2014","Order ID":"937136638","Ship Date":"5/5/2014","Units Sold":"8411","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5477327.31","Total Cost":"4415438.56","Total Profit":"1061888.75"},{"Region":"North America","Country":"United States of America","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"10/31/2011","Order ID":"199755322","Ship Date":"11/1/2011","Units Sold":"894","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"42420.30","Total Cost":"28420.26","Total Profit":"14000.04"},{"Region":"Asia","Country":"Tajikistan","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/14/2011","Order ID":"602274215","Ship Date":"1/19/2012","Units Sold":"5179","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1065320.30","Total Cost":"606512.69","Total Profit":"458807.61"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"7/14/2016","Order ID":"102554643","Ship Date":"7/18/2016","Units Sold":"7053","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"576441.69","Total Cost":"399693.51","Total Profit":"176748.18"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/24/2017","Order ID":"328770434","Ship Date":"4/6/2017","Units Sold":"9332","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"87067.56","Total Cost":"64577.44","Total Profit":"22490.12"},{"Region":"Europe","Country":"Switzerland","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"4/25/2014","Order ID":"729407918","Ship Date":"5/23/2014","Units Sold":"6867","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2897118.63","Total Cost":"2504326.23","Total Profit":"392792.40"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"12/7/2012","Order ID":"823265922","Ship Date":"12/10/2012","Units Sold":"1536","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"392110.08","Total Cost":"244869.12","Total Profit":"147240.96"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/18/2011","Order ID":"649455773","Ship Date":"9/27/2011","Units Sold":"7251","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1851035.28","Total Cost":"1155954.42","Total Profit":"695080.86"},{"Region":"Asia","Country":"Bhutan","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/16/2014","Order ID":"317401301","Ship Date":"2/17/2014","Units Sold":"4953","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1018832.10","Total Cost":"580045.83","Total Profit":"438786.27"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"2/26/2017","Order ID":"456838834","Ship Date":"4/17/2017","Units Sold":"7618","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1173629.08","Total Cost":"692704.74","Total Profit":"480924.34"},{"Region":"Europe","Country":"Norway","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/16/2015","Order ID":"867817199","Ship Date":"1/29/2015","Units Sold":"5249","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1079719.30","Total Cost":"614710.39","Total Profit":"465008.91"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/5/2010","Order ID":"970697724","Ship Date":"9/18/2010","Units Sold":"9883","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1522574.98","Total Cost":"898661.19","Total Profit":"623913.79"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"10/20/2011","Order ID":"256154239","Ship Date":"10/30/2011","Units Sold":"586","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"5467.38","Total Cost":"4055.12","Total Profit":"1412.26"},{"Region":"Europe","Country":"Germany","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/26/2012","Order ID":"535173070","Ship Date":"2/21/2012","Units Sold":"8459","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5652895.93","Total Cost":"4250985.86","Total Profit":"1401910.07"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/26/2017","Order ID":"989053046","Ship Date":"8/18/2017","Units Sold":"1630","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1089280.10","Total Cost":"819140.20","Total Profit":"270139.90"},{"Region":"Europe","Country":"Ireland","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"9/21/2012","Order ID":"419405496","Ship Date":"10/17/2012","Units Sold":"261","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"28522.08","Total Cost":"9354.24","Total Profit":"19167.84"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"2/8/2017","Order ID":"398154246","Ship Date":"3/28/2017","Units Sold":"1544","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"394152.32","Total Cost":"246144.48","Total Profit":"148007.84"},{"Region":"Asia","Country":"South Korea","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/29/2013","Order ID":"317535626","Ship Date":"7/13/2013","Units Sold":"4703","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"513943.84","Total Cost":"168555.52","Total Profit":"345388.32"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"3/23/2012","Order ID":"540098464","Ship Date":"5/2/2012","Units Sold":"5993","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"914411.94","Total Cost":"583957.92","Total Profit":"330454.02"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/18/2017","Order ID":"148704087","Ship Date":"2/21/2017","Units Sold":"3699","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1560571.11","Total Cost":"1348988.31","Total Profit":"211582.80"},{"Region":"Asia","Country":"Nepal","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"3/11/2014","Order ID":"996526324","Ship Date":"4/1/2014","Units Sold":"3139","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2044148.19","Total Cost":"1647849.44","Total Profit":"396298.75"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/22/2013","Order ID":"957051503","Ship Date":"3/15/2013","Units Sold":"1662","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"181623.36","Total Cost":"59566.08","Total Profit":"122057.28"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"6/14/2013","Order ID":"674078452","Ship Date":"7/7/2013","Units Sold":"3648","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"556611.84","Total Cost":"355461.12","Total Profit":"201150.72"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"8/20/2015","Order ID":"411718499","Ship Date":"8/25/2015","Units Sold":"5508","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"601914.24","Total Cost":"197406.72","Total Profit":"404507.52"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/28/2017","Order ID":"504395473","Ship Date":"8/6/2017","Units Sold":"684","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"104364.72","Total Cost":"66648.96","Total Profit":"37715.76"},{"Region":"Asia","Country":"Indonesia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/24/2010","Order ID":"906845700","Ship Date":"4/30/2010","Units Sold":"4650","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"709497.00","Total Cost":"453096.00","Total Profit":"256401.00"},{"Region":"Asia","Country":"Japan","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/18/2012","Order ID":"744118010","Ship Date":"1/15/2013","Units Sold":"9910","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"470229.50","Total Cost":"315038.90","Total Profit":"155190.60"},{"Region":"Europe","Country":"Serbia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"1/30/2015","Order ID":"561573731","Ship Date":"3/10/2015","Units Sold":"1001","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"152732.58","Total Cost":"97537.44","Total Profit":"55195.14"},{"Region":"Europe","Country":"Spain","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"2/23/2011","Order ID":"974886691","Ship Date":"3/4/2011","Units Sold":"9491","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6180634.11","Total Cost":"4982395.36","Total Profit":"1198238.75"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/11/2011","Order ID":"420043218","Ship Date":"12/8/2011","Units Sold":"8977","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1382996.62","Total Cost":"816278.61","Total Profit":"566718.01"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"1/20/2010","Order ID":"103342139","Ship Date":"2/4/2010","Units Sold":"90","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"13865.40","Total Cost":"8183.70","Total Profit":"5681.70"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/7/2014","Order ID":"851394784","Ship Date":"10/17/2014","Units Sold":"5491","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"837816.78","Total Cost":"535043.04","Total Profit":"302773.74"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/3/2017","Order ID":"861124980","Ship Date":"4/12/2017","Units Sold":"4873","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3173346.33","Total Cost":"2558130.08","Total Profit":"615216.25"},{"Region":"Europe","Country":"Sweden","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/28/2017","Order ID":"649769055","Ship Date":"3/10/2017","Units Sold":"9958","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6484749.18","Total Cost":"5227551.68","Total Profit":"1257197.50"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/1/2011","Order ID":"804875838","Ship Date":"9/10/2011","Units Sold":"9502","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"88653.66","Total Cost":"65753.84","Total Profit":"22899.82"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/23/2013","Order ID":"634306657","Ship Date":"1/22/2014","Units Sold":"4290","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1095151.20","Total Cost":"683911.80","Total Profit":"411239.40"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/18/2012","Order ID":"416235339","Ship Date":"3/26/2012","Units Sold":"2141","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"440403.70","Total Cost":"250732.51","Total Profit":"189671.19"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/9/2010","Order ID":"949148213","Ship Date":"2/13/2010","Units Sold":"2903","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"447236.18","Total Cost":"263969.79","Total Profit":"183266.39"},{"Region":"Europe","Country":"Portugal","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/2/2016","Order ID":"401844108","Ship Date":"11/14/2016","Units Sold":"3456","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"163987.20","Total Cost":"109866.24","Total Profit":"54120.96"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"1/5/2012","Order ID":"163434350","Ship Date":"1/8/2012","Units Sold":"2711","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1811679.97","Total Cost":"1362385.94","Total Profit":"449294.03"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/20/2010","Order ID":"793342769","Ship Date":"6/30/2010","Units Sold":"6610","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2788692.90","Total Cost":"2410600.90","Total Profit":"378092.00"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/18/2012","Order ID":"671305692","Ship Date":"1/14/2013","Units Sold":"3127","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1367124.40","Total Cost":"823432.91","Total Profit":"543691.49"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/17/2017","Order ID":"947371947","Ship Date":"8/25/2017","Units Sold":"7267","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3065874.63","Total Cost":"2650202.23","Total Profit":"415672.40"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"9/22/2015","Order ID":"591902863","Ship Date":"11/1/2015","Units Sold":"6066","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"925550.28","Total Cost":"591071.04","Total Profit":"334479.24"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"6/20/2011","Order ID":"445572268","Ship Date":"7/7/2011","Units Sold":"3591","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"738668.70","Total Cost":"420542.01","Total Profit":"318126.69"},{"Region":"Europe","Country":"France","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/11/2017","Order ID":"969366490","Ship Date":"5/28/2017","Units Sold":"5941","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"915270.46","Total Cost":"540215.13","Total Profit":"375055.33"},{"Region":"Europe","Country":"Latvia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"12/24/2012","Order ID":"894584357","Ship Date":"1/20/2013","Units Sold":"6246","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"58275.18","Total Cost":"43222.32","Total Profit":"15052.86"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/1/2016","Order ID":"372837197","Ship Date":"12/18/2016","Units Sold":"9667","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2467791.76","Total Cost":"1541113.14","Total Profit":"926678.62"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/3/2014","Order ID":"526048839","Ship Date":"6/17/2014","Units Sold":"8396","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1281061.68","Total Cost":"818106.24","Total Profit":"462955.44"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"1/5/2015","Order ID":"296455609","Ship Date":"2/5/2015","Units Sold":"6658","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"315922.10","Total Cost":"211657.82","Total Profit":"104264.28"},{"Region":"Europe","Country":"San Marino","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"1/7/2010","Order ID":"496606338","Ship Date":"2/12/2010","Units Sold":"5706","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3715804.26","Total Cost":"2995421.76","Total Profit":"720382.50"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/21/2014","Order ID":"659362351","Ship Date":"9/22/2014","Units Sold":"8827","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1815713.90","Total Cost":"1033729.97","Total Profit":"781983.93"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/18/2011","Order ID":"387897479","Ship Date":"1/29/2011","Units Sold":"6339","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2771410.80","Total Cost":"1669248.87","Total Profit":"1102161.93"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"10/13/2012","Order ID":"705698049","Ship Date":"11/9/2012","Units Sold":"590","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"257948.00","Total Cost":"155364.70","Total Profit":"102583.30"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/10/2015","Order ID":"906562888","Ship Date":"8/1/2015","Units Sold":"959","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"419274.80","Total Cost":"252533.47","Total Profit":"166741.33"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/28/2015","Order ID":"804603326","Ship Date":"12/31/2015","Units Sold":"8859","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"724046.07","Total Cost":"502039.53","Total Profit":"222006.54"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"10/12/2015","Order ID":"284243190","Ship Date":"10/26/2015","Units Sold":"2731","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1193993.20","Total Cost":"719154.23","Total Profit":"474838.97"},{"Region":"Europe","Country":"Croatia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"7/16/2017","Order ID":"650218808","Ship Date":"7/28/2017","Units Sold":"3049","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"469728.94","Total Cost":"277245.57","Total Profit":"192483.37"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/17/2013","Order ID":"577579009","Ship Date":"10/1/2013","Units Sold":"7319","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"799820.32","Total Cost":"262312.96","Total Profit":"537507.36"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/11/2012","Order ID":"161685121","Ship Date":"8/29/2012","Units Sold":"5075","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2141091.75","Total Cost":"1850801.75","Total Profit":"290290.00"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/6/2012","Order ID":"468210971","Ship Date":"11/7/2012","Units Sold":"2886","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"593650.20","Total Cost":"337979.46","Total Profit":"255670.74"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/3/2013","Order ID":"383142888","Ship Date":"7/20/2013","Units Sold":"9350","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6248324.50","Total Cost":"4698749.00","Total Profit":"1549575.50"},{"Region":"Asia","Country":"Laos","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/16/2011","Order ID":"662779700","Ship Date":"3/26/2011","Units Sold":"97","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"14943.82","Total Cost":"8820.21","Total Profit":"6123.61"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/14/2011","Order ID":"783732736","Ship Date":"6/18/2011","Units Sold":"2788","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1218913.60","Total Cost":"734164.04","Total Profit":"484749.56"},{"Region":"Asia","Country":"India","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"6/8/2016","Order ID":"292925822","Ship Date":"6/30/2016","Units Sold":"2115","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"924678.00","Total Cost":"556942.95","Total Profit":"367735.05"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"11/14/2014","Order ID":"157595288","Ship Date":"12/20/2014","Units Sold":"4803","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"44811.99","Total Cost":"33236.76","Total Profit":"11575.23"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"2/11/2015","Order ID":"515289962","Ship Date":"3/10/2015","Units Sold":"4605","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"42964.65","Total Cost":"31866.60","Total Profit":"11098.05"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"7/17/2011","Order ID":"223871171","Ship Date":"7/28/2011","Units Sold":"7309","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"798727.52","Total Cost":"261954.56","Total Profit":"536772.96"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"12/9/2010","Order ID":"911512744","Ship Date":"1/21/2011","Units Sold":"5732","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3830523.64","Total Cost":"2880559.28","Total Profit":"949964.36"},{"Region":"Europe","Country":"Hungary","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/6/2013","Order ID":"226701009","Ship Date":"9/13/2013","Units Sold":"4721","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3074362.41","Total Cost":"2478336.16","Total Profit":"596026.25"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"1/27/2017","Order ID":"388234794","Ship Date":"1/29/2017","Units Sold":"6158","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"503293.34","Total Cost":"348973.86","Total Profit":"154319.48"},{"Region":"Europe","Country":"Denmark","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"6/5/2012","Order ID":"535225427","Ship Date":"6/9/2012","Units Sold":"3952","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"322996.96","Total Cost":"223959.84","Total Profit":"99037.12"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/16/2010","Order ID":"777096736","Ship Date":"9/17/2010","Units Sold":"9048","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"988765.44","Total Cost":"324280.32","Total Profit":"664485.12"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"6/19/2016","Order ID":"843585050","Ship Date":"7/1/2016","Units Sold":"4417","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"680483.02","Total Cost":"401637.81","Total Profit":"278845.21"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/15/2016","Order ID":"534739196","Ship Date":"6/30/2016","Units Sold":"66","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"44105.82","Total Cost":"33167.64","Total Profit":"10938.18"},{"Region":"Europe","Country":"Albania","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/25/2013","Order ID":"170920503","Ship Date":"5/18/2013","Units Sold":"8030","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5366208.10","Total Cost":"4035396.20","Total Profit":"1330811.90"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"1/14/2015","Order ID":"142802798","Ship Date":"1/19/2015","Units Sold":"7376","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"602840.48","Total Cost":"417997.92","Total Profit":"184842.56"},{"Region":"Asia","Country":"Philippines","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/13/2015","Order ID":"461372411","Ship Date":"3/28/2015","Units Sold":"9204","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"85873.32","Total Cost":"63691.68","Total Profit":"22181.64"},{"Region":"Sub-Saharan Africa","Country":"Mali","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/19/2012","Order ID":"307928168","Ship Date":"5/2/2012","Units Sold":"1643","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1097967.61","Total Cost":"825673.22","Total Profit":"272294.39"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"6/30/2013","Order ID":"284081399","Ship Date":"7/25/2013","Units Sold":"4854","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3160973.34","Total Cost":"2548155.84","Total Profit":"612817.50"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"8/22/2015","Order ID":"161755931","Ship Date":"9/4/2015","Units Sold":"6029","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2543574.81","Total Cost":"2198716.01","Total Profit":"344858.80"},{"Region":"Europe","Country":"Slovenia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/25/2016","Order ID":"233188092","Ship Date":"8/29/2016","Units Sold":"4393","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2860765.53","Total Cost":"2306149.28","Total Profit":"554616.25"},{"Region":"North America","Country":"United States of America","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"9/20/2011","Order ID":"860926711","Ship Date":"10/3/2011","Units Sold":"6200","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"677536.00","Total Cost":"222208.00","Total Profit":"455328.00"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"4/4/2012","Order ID":"227833116","Ship Date":"4/21/2012","Units Sold":"9737","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2485661.36","Total Cost":"1552272.54","Total Profit":"933388.82"},{"Region":"Asia","Country":"Laos","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/22/2011","Order ID":"187081134","Ship Date":"11/24/2011","Units Sold":"320","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"213846.40","Total Cost":"160812.80","Total Profit":"53033.60"},{"Region":"Europe","Country":"Montenegro","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/17/2012","Order ID":"412157094","Ship Date":"8/25/2012","Units Sold":"5298","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"251390.10","Total Cost":"168423.42","Total Profit":"82966.68"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"12/3/2013","Order ID":"646859824","Ship Date":"12/6/2013","Units Sold":"9051","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"84445.83","Total Cost":"62632.92","Total Profit":"21812.91"},{"Region":"Europe","Country":"Lithuania","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/19/2016","Order ID":"255300652","Ship Date":"6/27/2016","Units Sold":"7991","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"653104.43","Total Cost":"452849.97","Total Profit":"200254.46"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"5/27/2010","Order ID":"471903407","Ship Date":"6/17/2010","Units Sold":"5560","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"51874.80","Total Cost":"38475.20","Total Profit":"13399.60"},{"Region":"Europe","Country":"Georgia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/24/2017","Order ID":"351404416","Ship Date":"5/20/2017","Units Sold":"7231","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3161393.20","Total Cost":"1904139.23","Total Profit":"1257253.97"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/16/2010","Order ID":"818852508","Ship Date":"9/28/2010","Units Sold":"5509","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"848716.54","Total Cost":"500933.37","Total Profit":"347783.17"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"4/6/2010","Order ID":"619609010","Ship Date":"4/11/2010","Units Sold":"4930","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2079917.70","Total Cost":"1797921.70","Total Profit":"281996.00"},{"Region":"Asia","Country":"Singapore","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/18/2010","Order ID":"369347751","Ship Date":"10/25/2010","Units Sold":"7062","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"577177.26","Total Cost":"400203.54","Total Profit":"176973.72"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"2/8/2015","Order ID":"304055058","Ship Date":"3/3/2015","Units Sold":"5503","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"51342.99","Total Cost":"38080.76","Total Profit":"13262.23"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/6/2016","Order ID":"730029761","Ship Date":"5/13/2016","Units Sold":"884","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"386484.80","Total Cost":"232783.72","Total Profit":"153701.08"},{"Region":"Europe","Country":"Denmark","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/28/2015","Order ID":"673883187","Ship Date":"9/13/2015","Units Sold":"5865","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"894881.70","Total Cost":"571485.60","Total Profit":"323396.10"},{"Region":"Europe","Country":"Spain","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/13/2012","Order ID":"132539165","Ship Date":"2/20/2012","Units Sold":"139","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"15189.92","Total Cost":"4981.76","Total Profit":"10208.16"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/11/2012","Order ID":"523234021","Ship Date":"11/18/2012","Units Sold":"5429","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"836391.74","Total Cost":"493658.97","Total Profit":"342732.77"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"12/24/2014","Order ID":"633516585","Ship Date":"2/8/2015","Units Sold":"491","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"125342.48","Total Cost":"78275.22","Total Profit":"47067.26"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"10/16/2016","Order ID":"671248185","Ship Date":"12/5/2016","Units Sold":"6109","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"932111.22","Total Cost":"595260.96","Total Profit":"336850.26"},{"Region":"Europe","Country":"France","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/26/2013","Order ID":"914602649","Ship Date":"9/26/2013","Units Sold":"103","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"21187.10","Total Cost":"12062.33","Total Profit":"9124.77"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"3/14/2017","Order ID":"362066304","Ship Date":"4/12/2017","Units Sold":"2320","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"353985.60","Total Cost":"226060.80","Total Profit":"127924.80"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"8/22/2013","Order ID":"782437980","Ship Date":"9/16/2013","Units Sold":"9641","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1983153.70","Total Cost":"1129057.51","Total Profit":"854096.19"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/17/2012","Order ID":"864829003","Ship Date":"12/30/2012","Units Sold":"975","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"106548.00","Total Cost":"34944.00","Total Profit":"71604.00"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"11/9/2014","Order ID":"268663203","Ship Date":"12/3/2014","Units Sold":"2267","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"247737.76","Total Cost":"81249.28","Total Profit":"166488.48"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/5/2012","Order ID":"973676908","Ship Date":"7/8/2012","Units Sold":"1489","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"162717.92","Total Cost":"53365.76","Total Profit":"109352.16"},{"Region":"Europe","Country":"Portugal","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"7/14/2011","Order ID":"529918944","Ship Date":"8/18/2011","Units Sold":"3646","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2436512.42","Total Cost":"1832260.84","Total Profit":"604251.58"},{"Region":"Asia","Country":"Myanmar","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"1/10/2011","Order ID":"607750642","Ship Date":"1/24/2011","Units Sold":"5775","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"881149.50","Total Cost":"562716.00","Total Profit":"318433.50"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/10/2014","Order ID":"247845828","Ship Date":"1/5/2015","Units Sold":"1943","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"496009.04","Total Cost":"309753.06","Total Profit":"186255.98"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"2/24/2013","Order ID":"811190831","Ship Date":"3/16/2013","Units Sold":"8248","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3479748.72","Total Cost":"3007963.12","Total Profit":"471785.60"},{"Region":"Europe","Country":"Serbia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"7/10/2015","Order ID":"129084479","Ship Date":"8/10/2015","Units Sold":"7821","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1193328.18","Total Cost":"762078.24","Total Profit":"431249.94"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"4/10/2010","Order ID":"153138101","Ship Date":"4/20/2010","Units Sold":"5822","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"54319.26","Total Cost":"40288.24","Total Profit":"14031.02"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/11/2013","Order ID":"205275523","Ship Date":"4/25/2013","Units Sold":"4444","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1134464.32","Total Cost":"708462.48","Total Profit":"426001.84"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"10/31/2010","Order ID":"127733075","Ship Date":"12/6/2010","Units Sold":"7910","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3458252.00","Total Cost":"2082940.30","Total Profit":"1375311.70"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"4/28/2017","Order ID":"733059585","Ship Date":"5/21/2017","Units Sold":"7476","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"354736.20","Total Cost":"237662.04","Total Profit":"117074.16"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/28/2017","Order ID":"654116380","Ship Date":"8/6/2017","Units Sold":"6428","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2810321.60","Total Cost":"1692685.24","Total Profit":"1117636.36"},{"Region":"Europe","Country":"Netherlands","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"6/21/2016","Order ID":"394077289","Ship Date":"7/28/2016","Units Sold":"5082","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1297332.96","Total Cost":"810172.44","Total Profit":"487160.52"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/2/2012","Order ID":"976428639","Ship Date":"6/10/2012","Units Sold":"5788","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1477560.64","Total Cost":"922722.96","Total Profit":"554837.68"},{"Region":"Asia","Country":"Malaysia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/24/2016","Order ID":"794969260","Ship Date":"4/10/2016","Units Sold":"7925","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3464810.00","Total Cost":"2086890.25","Total Profit":"1377919.75"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/22/2017","Order ID":"563810479","Ship Date":"2/11/2017","Units Sold":"2905","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"741588.40","Total Cost":"463115.10","Total Profit":"278473.30"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"7/2/2016","Order ID":"167376124","Ship Date":"7/12/2016","Units Sold":"9170","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4009124.00","Total Cost":"2414736.10","Total Profit":"1594387.90"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/16/2017","Order ID":"910402524","Ship Date":"5/1/2017","Units Sold":"7193","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"67110.69","Total Cost":"49775.56","Total Profit":"17335.13"},{"Region":"Europe","Country":"Netherlands","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"7/11/2011","Order ID":"567938506","Ship Date":"8/2/2011","Units Sold":"4480","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2993849.60","Total Cost":"2251379.20","Total Profit":"742470.40"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"8/9/2015","Order ID":"135345399","Ship Date":"9/28/2015","Units Sold":"566","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"61852.48","Total Cost":"20285.44","Total Profit":"41567.04"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"7/27/2012","Order ID":"678297030","Ship Date":"8/20/2012","Units Sold":"2019","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"308059.02","Total Cost":"196731.36","Total Profit":"111327.66"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"11/26/2016","Order ID":"182779729","Ship Date":"12/2/2016","Units Sold":"7438","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1529996.60","Total Cost":"871064.18","Total Profit":"658932.42"},{"Region":"Europe","Country":"Malta","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"1/29/2010","Order ID":"305092322","Ship Date":"3/16/2010","Units Sold":"2453","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"268063.84","Total Cost":"87915.52","Total Profit":"180148.32"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/29/2012","Order ID":"521846139","Ship Date":"7/4/2012","Units Sold":"4724","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"516238.72","Total Cost":"169308.16","Total Profit":"346930.56"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"7/16/2011","Order ID":"379965007","Ship Date":"8/20/2011","Units Sold":"8944","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3910316.80","Total Cost":"2355223.52","Total Profit":"1555093.28"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"10/22/2010","Order ID":"846685254","Ship Date":"12/9/2010","Units Sold":"1837","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"200747.36","Total Cost":"65838.08","Total Profit":"134909.28"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"3/6/2011","Order ID":"259555709","Ship Date":"4/21/2011","Units Sold":"7157","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"584941.61","Total Cost":"405587.19","Total Profit":"179354.42"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"8/4/2014","Order ID":"176437699","Ship Date":"9/19/2014","Units Sold":"691","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"302105.20","Total Cost":"181961.03","Total Profit":"120144.17"},{"Region":"Europe","Country":"Greece","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"9/11/2012","Order ID":"425505053","Ship Date":"9/11/2012","Units Sold":"5256","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"809739.36","Total Cost":"477928.08","Total Profit":"331811.28"},{"Region":"Europe","Country":"Belarus","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"5/7/2013","Order ID":"455244100","Ship Date":"6/3/2013","Units Sold":"5700","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2404773.00","Total Cost":"2078733.00","Total Profit":"326040.00"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/10/2014","Order ID":"684453666","Ship Date":"3/12/2014","Units Sold":"3905","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2542975.05","Total Cost":"2049968.80","Total Profit":"493006.25"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"8/13/2013","Order ID":"252245080","Ship Date":"9/11/2013","Units Sold":"3779","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"35258.07","Total Cost":"26150.68","Total Profit":"9107.39"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"5/3/2015","Order ID":"168042171","Ship Date":"6/1/2015","Units Sold":"6267","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"512201.91","Total Cost":"355150.89","Total Profit":"157051.02"},{"Region":"Europe","Country":"San Marino","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/31/2016","Order ID":"161581265","Ship Date":"4/2/2016","Units Sold":"4342","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1831846.38","Total Cost":"1583483.98","Total Profit":"248362.40"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/8/2010","Order ID":"932911193","Ship Date":"8/13/2010","Units Sold":"8008","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5214889.68","Total Cost":"4203879.68","Total Profit":"1011010.00"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"6/5/2016","Order ID":"102393281","Ship Date":"6/16/2016","Units Sold":"9302","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"86787.66","Total Cost":"64369.84","Total Profit":"22417.82"},{"Region":"Europe","Country":"Ireland","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/5/2011","Order ID":"760701358","Ship Date":"4/3/2011","Units Sold":"7291","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3187625.20","Total Cost":"1919939.03","Total Profit":"1267686.17"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/22/2011","Order ID":"218821752","Ship Date":"4/23/2011","Units Sold":"3074","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"784730.72","Total Cost":"490057.08","Total Profit":"294673.64"},{"Region":"Europe","Country":"Moldova ","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/29/2015","Order ID":"358053290","Ship Date":"3/1/2015","Units Sold":"4780","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"729332.40","Total Cost":"465763.20","Total Profit":"263569.20"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/29/2014","Order ID":"880007302","Ship Date":"10/1/2014","Units Sold":"2571","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"396088.26","Total Cost":"233781.03","Total Profit":"162307.23"},{"Region":"Asia","Country":"Malaysia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"8/24/2014","Order ID":"656607615","Ship Date":"8/31/2014","Units Sold":"3640","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"33961.20","Total Cost":"25188.80","Total Profit":"8772.40"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"9/14/2012","Order ID":"880090558","Ship Date":"10/7/2012","Units Sold":"7209","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"67259.97","Total Cost":"49886.28","Total Profit":"17373.69"},{"Region":"Europe","Country":"Slovakia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/8/2011","Order ID":"113004958","Ship Date":"9/22/2011","Units Sold":"9533","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"452340.85","Total Cost":"303054.07","Total Profit":"149286.78"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"6/6/2015","Order ID":"138212144","Ship Date":"6/14/2015","Units Sold":"8900","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5947603.00","Total Cost":"4472606.00","Total Profit":"1474997.00"},{"Region":"Asia","Country":"Philippines","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"6/21/2017","Order ID":"108885943","Ship Date":"7/13/2017","Units Sold":"625","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"128562.50","Total Cost":"73193.75","Total Profit":"55368.75"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/31/2012","Order ID":"598512685","Ship Date":"7/5/2012","Units Sold":"2059","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"317209.54","Total Cost":"187224.87","Total Profit":"129984.67"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"11/13/2014","Order ID":"450891196","Ship Date":"11/26/2014","Units Sold":"7580","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1156556.40","Total Cost":"738595.20","Total Profit":"417961.20"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/14/2010","Order ID":"830132806","Ship Date":"4/22/2010","Units Sold":"3599","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2405103.73","Total Cost":"1808641.46","Total Profit":"596462.27"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"5/12/2011","Order ID":"270661342","Ship Date":"6/12/2011","Units Sold":"3561","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"168969.45","Total Cost":"113204.19","Total Profit":"55765.26"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"3/19/2017","Order ID":"527213132","Ship Date":"4/11/2017","Units Sold":"2936","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1962040.72","Total Cost":"1475457.44","Total Profit":"486583.28"},{"Region":"Asia","Country":"Taiwan","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"5/1/2016","Order ID":"724837005","Ship Date":"6/5/2016","Units Sold":"4232","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"645718.56","Total Cost":"412366.08","Total Profit":"233352.48"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/29/2013","Order ID":"508894288","Ship Date":"6/29/2013","Units Sold":"1983","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"305500.98","Total Cost":"180314.19","Total Profit":"125186.79"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/3/2010","Order ID":"495058810","Ship Date":"11/15/2010","Units Sold":"7758","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"368117.10","Total Cost":"246626.82","Total Profit":"121490.28"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/1/2011","Order ID":"919316899","Ship Date":"5/18/2011","Units Sold":"5155","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"48096.15","Total Cost":"35672.60","Total Profit":"12423.55"},{"Region":"Europe","Country":"Spain","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/16/2015","Order ID":"287967383","Ship Date":"6/22/2015","Units Sold":"4803","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2099871.60","Total Cost":"1264773.99","Total Profit":"835097.61"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"1/8/2017","Order ID":"327621591","Ship Date":"1/8/2017","Units Sold":"9364","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2390441.92","Total Cost":"1492808.88","Total Profit":"897633.04"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"12/12/2014","Order ID":"135203349","Ship Date":"12/25/2014","Units Sold":"8530","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1314131.80","Total Cost":"775632.90","Total Profit":"538498.90"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"7/11/2016","Order ID":"227948987","Ship Date":"7/24/2016","Units Sold":"4026","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1698529.14","Total Cost":"1468241.94","Total Profit":"230287.20"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/13/2011","Order ID":"293407332","Ship Date":"5/12/2011","Units Sold":"4605","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1175564.40","Total Cost":"734129.10","Total Profit":"441435.30"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"7/5/2012","Order ID":"539439713","Ship Date":"8/23/2012","Units Sold":"1054","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"160819.32","Total Cost":"102701.76","Total Profit":"58117.56"},{"Region":"Central America and the Caribbean","Country":"Saint Lucia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/24/2015","Order ID":"344219958","Ship Date":"8/26/2015","Units Sold":"1190","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"183331.40","Total Cost":"108206.70","Total Profit":"75124.70"},{"Region":"Europe","Country":"Lithuania","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"3/10/2017","Order ID":"506234395","Ship Date":"4/11/2017","Units Sold":"4862","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2051229.18","Total Cost":"1773122.78","Total Profit":"278106.40"},{"Region":"Europe","Country":"Monaco","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"12/1/2010","Order ID":"994281852","Ship Date":"12/17/2010","Units Sold":"8950","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3775915.50","Total Cost":"3263975.50","Total Profit":"511940.00"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/21/2014","Order ID":"497473657","Ship Date":"5/21/2014","Units Sold":"2365","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"486480.50","Total Cost":"276965.15","Total Profit":"209515.35"},{"Region":"Europe","Country":"Malta","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/24/2012","Order ID":"475233638","Ship Date":"3/11/2012","Units Sold":"1049","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"458622.80","Total Cost":"276233.17","Total Profit":"182389.63"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/13/2012","Order ID":"207298123","Ship Date":"7/21/2012","Units Sold":"2976","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"243228.48","Total Cost":"168649.92","Total Profit":"74578.56"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"7/28/2013","Order ID":"843715941","Ship Date":"8/6/2013","Units Sold":"3151","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"804387.28","Total Cost":"502332.42","Total Profit":"302054.86"},{"Region":"Asia","Country":"Cambodia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"5/17/2014","Order ID":"454848420","Ship Date":"6/2/2014","Units Sold":"8610","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"408544.50","Total Cost":"273711.90","Total Profit":"134832.60"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"4/25/2011","Order ID":"781369388","Ship Date":"5/9/2011","Units Sold":"3420","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1495224.00","Total Cost":"900588.60","Total Profit":"594635.40"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"12/25/2016","Order ID":"484265172","Ship Date":"12/25/2016","Units Sold":"3681","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"561646.98","Total Cost":"358676.64","Total Profit":"202970.34"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/18/2010","Order ID":"994834601","Ship Date":"12/31/2010","Units Sold":"2521","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1684708.67","Total Cost":"1266903.34","Total Profit":"417805.33"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/4/2011","Order ID":"664689004","Ship Date":"10/5/2011","Units Sold":"5102","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3409513.54","Total Cost":"2563959.08","Total Profit":"845554.46"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"6/7/2012","Order ID":"615752208","Ship Date":"6/9/2012","Units Sold":"3617","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"557235.02","Total Cost":"328893.81","Total Profit":"228341.21"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"9/12/2014","Order ID":"690260541","Ship Date":"9/30/2014","Units Sold":"2288","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"186998.24","Total Cost":"129660.96","Total Profit":"57337.28"},{"Region":"Europe","Country":"Georgia","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"7/12/2017","Order ID":"800762832","Ship Date":"8/19/2017","Units Sold":"2371","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1584468.17","Total Cost":"1191522.34","Total Profit":"392945.83"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/28/2013","Order ID":"480120408","Ship Date":"6/12/2013","Units Sold":"7153","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3017779.17","Total Cost":"2608627.57","Total Profit":"409151.60"},{"Region":"Asia","Country":"Brunei","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"10/19/2014","Order ID":"231507098","Ship Date":"11/28/2014","Units Sold":"6950","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1774196.00","Total Cost":"1107969.00","Total Profit":"666227.00"},{"Region":"Asia","Country":"Tajikistan","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/12/2012","Order ID":"178409230","Ship Date":"7/30/2012","Units Sold":"4111","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1049456.08","Total Cost":"655375.62","Total Profit":"394080.46"},{"Region":"Europe","Country":"Georgia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"5/29/2017","Order ID":"514625632","Ship Date":"7/9/2017","Units Sold":"8016","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1234944.96","Total Cost":"728894.88","Total Profit":"506050.08"},{"Region":"Europe","Country":"Kosovo","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/12/2011","Order ID":"154267632","Ship Date":"1/27/2011","Units Sold":"75","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"6129.75","Total Cost":"4250.25","Total Profit":"1879.50"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"2/15/2010","Order ID":"781759059","Ship Date":"3/22/2010","Units Sold":"8733","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5687016.93","Total Cost":"4584475.68","Total Profit":"1102541.25"},{"Region":"Asia","Country":"Malaysia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"5/5/2017","Order ID":"101836240","Ship Date":"5/12/2017","Units Sold":"4461","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"687261.66","Total Cost":"405638.73","Total Profit":"281622.93"},{"Region":"Asia","Country":"North Korea","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/20/2017","Order ID":"389548003","Ship Date":"7/19/2017","Units Sold":"4766","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"727196.28","Total Cost":"464399.04","Total Profit":"262797.24"},{"Region":"Europe","Country":"San Marino","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/1/2011","Order ID":"840255677","Ship Date":"7/9/2011","Units Sold":"9182","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4014370.40","Total Cost":"2417896.06","Total Profit":"1596474.34"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"11/5/2012","Order ID":"719633090","Ship Date":"12/19/2012","Units Sold":"4278","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"467499.84","Total Cost":"153323.52","Total Profit":"314176.32"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"4/14/2013","Order ID":"713666570","Ship Date":"5/29/2013","Units Sold":"8652","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"945490.56","Total Cost":"310087.68","Total Profit":"635402.88"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/30/2016","Order ID":"678654944","Ship Date":"1/9/2017","Units Sold":"7934","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1222312.04","Total Cost":"721438.62","Total Profit":"500873.42"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/4/2014","Order ID":"991209542","Ship Date":"2/7/2014","Units Sold":"9785","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4128193.65","Total Cost":"3568491.65","Total Profit":"559702.00"},{"Region":"Europe","Country":"Slovenia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/8/2014","Order ID":"298254191","Ship Date":"10/3/2014","Units Sold":"8898","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"83018.34","Total Cost":"61574.16","Total Profit":"21444.18"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"10/16/2014","Order ID":"467025220","Ship Date":"11/22/2014","Units Sold":"1996","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"842092.44","Total Cost":"727921.24","Total Profit":"114171.20"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/15/2015","Order ID":"735071456","Ship Date":"5/29/2015","Units Sold":"2834","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1239024.80","Total Cost":"746277.22","Total Profit":"492747.58"},{"Region":"Asia","Country":"India","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"7/18/2010","Order ID":"860254228","Ship Date":"7/26/2010","Units Sold":"7198","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"786597.44","Total Cost":"257976.32","Total Profit":"528621.12"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/5/2014","Order ID":"670747363","Ship Date":"1/10/2015","Units Sold":"7905","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3456066.00","Total Cost":"2081623.65","Total Profit":"1374442.35"},{"Region":"Europe","Country":"Armenia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"7/29/2013","Order ID":"515037190","Ship Date":"9/11/2013","Units Sold":"9805","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1496046.90","Total Cost":"955399.20","Total Profit":"540647.70"},{"Region":"Europe","Country":"Finland","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/17/2011","Order ID":"811922538","Ship Date":"9/21/2011","Units Sold":"4777","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3110830.17","Total Cost":"2507733.92","Total Profit":"603096.25"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"4/11/2015","Order ID":"700514733","Ship Date":"5/11/2015","Units Sold":"6731","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2942793.20","Total Cost":"1772474.23","Total Profit":"1170318.97"},{"Region":"Europe","Country":"Sweden","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/11/2012","Order ID":"290237605","Ship Date":"12/17/2012","Units Sold":"6612","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"540398.76","Total Cost":"374702.04","Total Profit":"165696.72"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/3/2016","Order ID":"210827481","Ship Date":"7/23/2016","Units Sold":"7392","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"350750.40","Total Cost":"234991.68","Total Profit":"115758.72"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/16/2012","Order ID":"262333190","Ship Date":"12/30/2012","Units Sold":"9075","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1398094.50","Total Cost":"825189.75","Total Profit":"572904.75"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"6/9/2012","Order ID":"765116059","Ship Date":"7/7/2012","Units Sold":"3699","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"944280.72","Total Cost":"589694.58","Total Profit":"354586.14"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"5/11/2015","Order ID":"309849917","Ship Date":"6/11/2015","Units Sold":"331","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"15705.95","Total Cost":"10522.49","Total Profit":"5183.46"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/18/2015","Order ID":"707521092","Ship Date":"5/15/2015","Units Sold":"69","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"17614.32","Total Cost":"10999.98","Total Profit":"6614.34"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/3/2010","Order ID":"239428412","Ship Date":"10/31/2010","Units Sold":"1043","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"9731.19","Total Cost":"7217.56","Total Profit":"2513.63"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/18/2016","Order ID":"407183206","Ship Date":"6/25/2016","Units Sold":"3414","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"525960.84","Total Cost":"310435.02","Total Profit":"215525.82"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"2/15/2014","Order ID":"982709300","Ship Date":"3/17/2014","Units Sold":"4375","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1912750.00","Total Cost":"1152068.75","Total Profit":"760681.25"},{"Region":"North America","Country":"United States of America","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"10/21/2016","Order ID":"458243024","Ship Date":"11/10/2016","Units Sold":"3149","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"29380.17","Total Cost":"21791.08","Total Profit":"7589.09"},{"Region":"Europe","Country":"Serbia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/17/2012","Order ID":"996333205","Ship Date":"4/1/2012","Units Sold":"5991","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"55896.03","Total Cost":"41457.72","Total Profit":"14438.31"},{"Region":"Asia","Country":"India","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"7/2/2011","Order ID":"779841172","Ship Date":"7/30/2011","Units Sold":"1188","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"97095.24","Total Cost":"67323.96","Total Profit":"29771.28"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"1/13/2016","Order ID":"761940753","Ship Date":"2/22/2016","Units Sold":"4056","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"443239.68","Total Cost":"145367.04","Total Profit":"297872.64"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/4/2012","Order ID":"616118276","Ship Date":"10/12/2012","Units Sold":"1944","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"496264.32","Total Cost":"309912.48","Total Profit":"186351.84"},{"Region":"Europe","Country":"Latvia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/13/2016","Order ID":"986172568","Ship Date":"4/13/2016","Units Sold":"9233","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6170136.91","Total Cost":"4639951.82","Total Profit":"1530185.09"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/24/2011","Order ID":"336214959","Ship Date":"2/10/2012","Units Sold":"2333","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"355969.14","Total Cost":"227327.52","Total Profit":"128641.62"},{"Region":"Asia","Country":"China","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/16/2012","Order ID":"800669276","Ship Date":"11/4/2012","Units Sold":"4686","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"512086.08","Total Cost":"167946.24","Total Profit":"344139.84"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"1/6/2010","Order ID":"534271848","Ship Date":"2/24/2010","Units Sold":"1767","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"272224.02","Total Cost":"160673.31","Total Profit":"111550.71"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/9/2014","Order ID":"462071502","Ship Date":"12/14/2014","Units Sold":"6080","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"496918.40","Total Cost":"344553.60","Total Profit":"152364.80"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"3/12/2017","Order ID":"229429566","Ship Date":"4/4/2017","Units Sold":"2162","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"333077.72","Total Cost":"196590.66","Total Profit":"136487.06"},{"Region":"Europe","Country":"Spain","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/10/2011","Order ID":"452019870","Ship Date":"5/6/2011","Units Sold":"1579","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1028260.59","Total Cost":"828911.84","Total Profit":"199348.75"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"6/10/2015","Order ID":"465828740","Ship Date":"7/29/2015","Units Sold":"7931","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3346009.59","Total Cost":"2892356.39","Total Profit":"453653.20"},{"Region":"Europe","Country":"Netherlands","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"12/15/2014","Order ID":"577155005","Ship Date":"12/30/2014","Units Sold":"1847","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"284548.82","Total Cost":"167947.71","Total Profit":"116601.11"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"4/16/2011","Order ID":"712609994","Ship Date":"4/29/2011","Units Sold":"5988","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"922511.28","Total Cost":"544488.84","Total Profit":"378022.44"},{"Region":"Asia","Country":"China","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"10/4/2010","Order ID":"869117534","Ship Date":"10/22/2010","Units Sold":"47","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"9667.90","Total Cost":"5504.17","Total Profit":"4163.73"},{"Region":"Europe","Country":"Belarus","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"3/4/2013","Order ID":"663913953","Ship Date":"3/21/2013","Units Sold":"5747","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"876877.26","Total Cost":"559987.68","Total Profit":"316889.58"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"8/17/2015","Order ID":"684548079","Ship Date":"9/26/2015","Units Sold":"1844","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"379310.80","Total Cost":"215950.84","Total Profit":"163359.96"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/9/2016","Order ID":"238881242","Ship Date":"5/4/2016","Units Sold":"9123","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2328919.44","Total Cost":"1454388.66","Total Profit":"874530.78"},{"Region":"Asia","Country":"Bhutan","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/17/2010","Order ID":"505087268","Ship Date":"7/18/2010","Units Sold":"5402","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"590330.56","Total Cost":"193607.68","Total Profit":"396722.88"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"1/29/2010","Order ID":"481652486","Ship Date":"2/10/2010","Units Sold":"529","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"344490.09","Total Cost":"277703.84","Total Profit":"66786.25"},{"Region":"Europe","Country":"Ukraine","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"3/28/2016","Order ID":"137375724","Ship Date":"5/3/2016","Units Sold":"1384","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"284688.80","Total Cost":"162080.24","Total Profit":"122608.56"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"4/14/2016","Order ID":"861368310","Ship Date":"5/1/2016","Units Sold":"6879","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"562220.67","Total Cost":"389832.93","Total Profit":"172387.74"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/26/2017","Order ID":"513054072","Ship Date":"8/2/2017","Units Sold":"2956","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"451026.48","Total Cost":"288032.64","Total Profit":"162993.84"},{"Region":"Asia","Country":"Vietnam","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/9/2013","Order ID":"172169339","Ship Date":"2/19/2013","Units Sold":"7588","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"620167.24","Total Cost":"430011.96","Total Profit":"190155.28"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/31/2016","Order ID":"988762938","Ship Date":"2/11/2016","Units Sold":"5781","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2438946.09","Total Cost":"2108272.89","Total Profit":"330673.20"},{"Region":"Asia","Country":"Bhutan","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"8/15/2010","Order ID":"133196198","Ship Date":"9/30/2010","Units Sold":"4570","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"42638.10","Total Cost":"31624.40","Total Profit":"11013.70"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"9/25/2015","Order ID":"246142947","Ship Date":"10/25/2015","Units Sold":"8023","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5224657.83","Total Cost":"4211754.08","Total Profit":"1012903.75"},{"Region":"Europe","Country":"Germany","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"9/20/2013","Order ID":"888589513","Ship Date":"9/30/2013","Units Sold":"2238","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1457407.98","Total Cost":"1174860.48","Total Profit":"282547.50"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/14/2014","Order ID":"791834723","Ship Date":"7/8/2014","Units Sold":"346","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"231221.42","Total Cost":"173878.84","Total Profit":"57342.58"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/18/2013","Order ID":"107489907","Ship Date":"10/9/2013","Units Sold":"7507","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1156528.42","Total Cost":"682611.51","Total Profit":"473916.91"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/25/2012","Order ID":"857478892","Ship Date":"4/4/2012","Units Sold":"5914","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"902358.12","Total Cost":"576260.16","Total Profit":"326097.96"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"6/18/2011","Order ID":"184038007","Ship Date":"7/17/2011","Units Sold":"9791","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"91350.03","Total Cost":"67753.72","Total Profit":"23596.31"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"8/20/2010","Order ID":"699716079","Ship Date":"9/21/2010","Units Sold":"392","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"261961.84","Total Cost":"196995.68","Total Profit":"64966.16"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"4/14/2017","Order ID":"137374436","Ship Date":"6/2/2017","Units Sold":"1003","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"256045.84","Total Cost":"159898.26","Total Profit":"96147.58"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"8/6/2013","Order ID":"800186908","Ship Date":"8/28/2013","Units Sold":"1943","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"18128.19","Total Cost":"13445.56","Total Profit":"4682.63"},{"Region":"Europe","Country":"Lithuania","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"2/9/2013","Order ID":"111639821","Ship Date":"2/14/2013","Units Sold":"5559","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"51865.47","Total Cost":"38468.28","Total Profit":"13397.19"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"6/28/2011","Order ID":"965532004","Ship Date":"8/9/2011","Units Sold":"1231","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"134523.68","Total Cost":"44119.04","Total Profit":"90404.64"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"1/17/2013","Order ID":"475974786","Ship Date":"2/24/2013","Units Sold":"371","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"57156.26","Total Cost":"33735.03","Total Profit":"23421.23"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/17/2011","Order ID":"327391993","Ship Date":"11/23/2011","Units Sold":"1421","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"216816.18","Total Cost":"138462.24","Total Profit":"78353.94"},{"Region":"Asia","Country":"North Korea","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"5/19/2010","Order ID":"924519956","Ship Date":"7/5/2010","Units Sold":"4855","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"396799.15","Total Cost":"275132.85","Total Profit":"121666.30"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/24/2016","Order ID":"942407500","Ship Date":"5/7/2016","Units Sold":"8177","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3574984.40","Total Cost":"2153249.41","Total Profit":"1421734.99"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"6/9/2015","Order ID":"476415956","Ship Date":"7/25/2015","Units Sold":"923","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"100865.44","Total Cost":"33080.32","Total Profit":"67785.12"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"8/7/2013","Order ID":"592219150","Ship Date":"9/17/2013","Units Sold":"9662","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"458461.90","Total Cost":"307154.98","Total Profit":"151306.92"},{"Region":"Europe","Country":"Croatia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/20/2010","Order ID":"175803411","Ship Date":"3/2/2010","Units Sold":"2991","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"244454.43","Total Cost":"169499.97","Total Profit":"74954.46"},{"Region":"Europe","Country":"Cyprus","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"10/26/2016","Order ID":"883467566","Ship Date":"10/28/2016","Units Sold":"6540","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2859288.00","Total Cost":"1722178.20","Total Profit":"1137109.80"},{"Region":"Asia","Country":"Myanmar","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/4/2016","Order ID":"391822946","Ship Date":"4/3/2016","Units Sold":"7972","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5191446.12","Total Cost":"4184981.12","Total Profit":"1006465.00"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/25/2010","Order ID":"947793376","Ship Date":"11/7/2010","Units Sold":"1977","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"161580.21","Total Cost":"112036.59","Total Profit":"49543.62"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"9/4/2011","Order ID":"818615186","Ship Date":"9/9/2011","Units Sold":"5280","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3438388.80","Total Cost":"2771788.80","Total Profit":"666600.00"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"4/18/2012","Order ID":"141837203","Ship Date":"5/7/2012","Units Sold":"1635","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"249468.30","Total Cost":"159314.40","Total Profit":"90153.90"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"7/17/2014","Order ID":"475320756","Ship Date":"9/4/2014","Units Sold":"6829","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2881086.81","Total Cost":"2490468.01","Total Profit":"390618.80"},{"Region":"Asia","Country":"Mongolia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/22/2010","Order ID":"747239673","Ship Date":"3/13/2010","Units Sold":"3679","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1608458.80","Total Cost":"968791.07","Total Profit":"639667.73"},{"Region":"Europe","Country":"Denmark","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/11/2014","Order ID":"406080281","Ship Date":"5/19/2014","Units Sold":"7034","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1083658.04","Total Cost":"639601.62","Total Profit":"444056.42"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"3/8/2017","Order ID":"770641410","Ship Date":"3/26/2017","Units Sold":"8773","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"717017.29","Total Cost":"497165.91","Total Profit":"219851.38"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"5/30/2017","Order ID":"980034387","Ship Date":"6/9/2017","Units Sold":"2808","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"26198.64","Total Cost":"19431.36","Total Profit":"6767.28"},{"Region":"Europe","Country":"Romania","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"11/12/2010","Order ID":"243683040","Ship Date":"12/2/2010","Units Sold":"81","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"12358.98","Total Cost":"7892.64","Total Profit":"4466.34"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/27/2017","Order ID":"991323697","Ship Date":"4/13/2017","Units Sold":"3566","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1504459.74","Total Cost":"1300484.54","Total Profit":"203975.20"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"8/16/2015","Order ID":"323005187","Ship Date":"8/26/2015","Units Sold":"3268","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1378736.52","Total Cost":"1191806.92","Total Profit":"186929.60"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"6/30/2016","Order ID":"359088838","Ship Date":"7/22/2016","Units Sold":"1222","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"57983.90","Total Cost":"38847.38","Total Profit":"19136.52"},{"Region":"Europe","Country":"Greece","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/10/2012","Order ID":"590248477","Ship Date":"6/20/2012","Units Sold":"6496","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"991159.68","Total Cost":"632970.24","Total Profit":"358189.44"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"4/7/2012","Order ID":"127470433","Ship Date":"4/7/2012","Units Sold":"189","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"38877.30","Total Cost":"22133.79","Total Profit":"16743.51"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/25/2014","Order ID":"852053534","Ship Date":"6/27/2014","Units Sold":"430","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"65609.40","Total Cost":"41899.20","Total Profit":"23710.20"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/1/2011","Order ID":"665609109","Ship Date":"3/14/2011","Units Sold":"7381","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"603249.13","Total Cost":"418281.27","Total Profit":"184967.86"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/29/2014","Order ID":"240060985","Ship Date":"2/28/2014","Units Sold":"8235","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1268684.10","Total Cost":"748808.55","Total Profit":"519875.55"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"10/22/2013","Order ID":"767645490","Ship Date":"12/7/2013","Units Sold":"2214","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"934064.46","Total Cost":"807423.66","Total Profit":"126640.80"},{"Region":"North America","Country":"United States of America","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"1/16/2013","Order ID":"810911452","Ship Date":"1/17/2013","Units Sold":"5574","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"850480.92","Total Cost":"543130.56","Total Profit":"307350.36"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"8/13/2015","Order ID":"352720201","Ship Date":"9/8/2015","Units Sold":"6600","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4410582.00","Total Cost":"3316764.00","Total Profit":"1093818.00"},{"Region":"Europe","Country":"France","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/25/2015","Order ID":"346245563","Ship Date":"3/2/2015","Units Sold":"611","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"49937.03","Total Cost":"34625.37","Total Profit":"15311.66"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"7/30/2013","Order ID":"464973866","Ship Date":"8/8/2013","Units Sold":"4955","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"541482.40","Total Cost":"177587.20","Total Profit":"363895.20"},{"Region":"Europe","Country":"Albania","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/8/2010","Order ID":"452703940","Ship Date":"8/24/2010","Units Sold":"4011","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"327819.03","Total Cost":"227303.37","Total Profit":"100515.66"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/26/2014","Order ID":"573547112","Ship Date":"4/30/2014","Units Sold":"4191","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"39102.03","Total Cost":"29001.72","Total Profit":"10100.31"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/12/2014","Order ID":"261927211","Ship Date":"10/18/2014","Units Sold":"8937","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"976635.36","Total Cost":"320302.08","Total Profit":"656333.28"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/12/2010","Order ID":"372580564","Ship Date":"11/13/2010","Units Sold":"3723","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1627695.60","Total Cost":"980377.59","Total Profit":"647318.01"},{"Region":"Europe","Country":"Montenegro","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/7/2014","Order ID":"930555999","Ship Date":"1/10/2014","Units Sold":"1054","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"444672.06","Total Cost":"384383.26","Total Profit":"60288.80"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/18/2013","Order ID":"681214845","Ship Date":"11/12/2013","Units Sold":"5466","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"446736.18","Total Cost":"309758.22","Total Profit":"136977.96"},{"Region":"Europe","Country":"Austria","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/5/2012","Order ID":"240230929","Ship Date":"5/13/2012","Units Sold":"8525","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3727130.00","Total Cost":"2244888.25","Total Profit":"1482241.75"},{"Region":"North America","Country":"United States of America","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/12/2012","Order ID":"743590581","Ship Date":"8/10/2012","Units Sold":"3832","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"978232.96","Total Cost":"610897.44","Total Profit":"367335.52"},{"Region":"Europe","Country":"Poland","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/5/2015","Order ID":"697592628","Ship Date":"1/27/2015","Units Sold":"2015","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"220199.20","Total Cost":"72217.60","Total Profit":"147981.60"},{"Region":"Europe","Country":"Estonia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/7/2013","Order ID":"928848397","Ship Date":"8/10/2013","Units Sold":"5737","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"875351.46","Total Cost":"559013.28","Total Profit":"316338.18"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"8/13/2014","Order ID":"534281718","Ship Date":"8/13/2014","Units Sold":"4688","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1196752.64","Total Cost":"747360.96","Total Profit":"449391.68"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/17/2010","Order ID":"931128919","Ship Date":"6/6/2010","Units Sold":"594","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"91511.64","Total Cost":"54012.42","Total Profit":"37499.22"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"11/14/2012","Order ID":"906938827","Ship Date":"12/13/2012","Units Sold":"2208","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1437871.68","Total Cost":"1159111.68","Total Profit":"278760.00"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/6/2012","Order ID":"669572770","Ship Date":"1/5/2013","Units Sold":"317","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"48837.02","Total Cost":"28824.81","Total Profit":"20012.21"},{"Region":"Europe","Country":"Moldova ","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/25/2013","Order ID":"497204577","Ship Date":"7/25/2013","Units Sold":"2738","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1783012.98","Total Cost":"1437340.48","Total Profit":"345672.50"},{"Region":"Europe","Country":"Sweden","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"1/7/2011","Order ID":"288320577","Ship Date":"1/28/2011","Units Sold":"9321","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3932436.69","Total Cost":"3399275.49","Total Profit":"533161.20"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/18/2014","Order ID":"911719596","Ship Date":"7/22/2014","Units Sold":"6944","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1059515.52","Total Cost":"676623.36","Total Profit":"382892.16"},{"Region":"Europe","Country":"Denmark","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"1/31/2011","Order ID":"156512963","Ship Date":"2/11/2011","Units Sold":"4519","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"42162.27","Total Cost":"31271.48","Total Profit":"10890.79"},{"Region":"Europe","Country":"Finland","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"9/21/2015","Order ID":"382124507","Ship Date":"10/26/2015","Units Sold":"7988","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5338140.76","Total Cost":"4014289.52","Total Profit":"1323851.24"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"12/28/2013","Order ID":"868290555","Ship Date":"12/28/2013","Units Sold":"5325","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3558537.75","Total Cost":"2676025.50","Total Profit":"882512.25"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/1/2011","Order ID":"965059936","Ship Date":"8/12/2011","Units Sold":"1536","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"14330.88","Total Cost":"10629.12","Total Profit":"3701.76"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/1/2014","Order ID":"542793977","Ship Date":"12/5/2014","Units Sold":"3655","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"399418.40","Total Cost":"130995.20","Total Profit":"268423.20"},{"Region":"Asia","Country":"China","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/20/2013","Order ID":"442166507","Ship Date":"2/12/2013","Units Sold":"5750","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1467860.00","Total Cost":"916665.00","Total Profit":"551195.00"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"12/6/2010","Order ID":"224163854","Ship Date":"1/23/2011","Units Sold":"3921","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1714261.20","Total Cost":"1032516.93","Total Profit":"681744.27"},{"Region":"Asia","Country":"Thailand","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"11/3/2010","Order ID":"420084846","Ship Date":"11/15/2010","Units Sold":"1296","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"197743.68","Total Cost":"126282.24","Total Profit":"71461.44"},{"Region":"Europe","Country":"Slovenia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"2/23/2016","Order ID":"281540811","Ship Date":"3/12/2016","Units Sold":"3037","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1327776.40","Total Cost":"799733.21","Total Profit":"528043.19"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/4/2012","Order ID":"930455577","Ship Date":"5/7/2012","Units Sold":"1337","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"109273.01","Total Cost":"75767.79","Total Profit":"33505.22"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/10/2016","Order ID":"409065473","Ship Date":"4/28/2016","Units Sold":"419","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"106962.32","Total Cost":"66796.98","Total Profit":"40165.34"},{"Region":"Europe","Country":"San Marino","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/14/2011","Order ID":"429919326","Ship Date":"10/17/2011","Units Sold":"1537","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"167963.36","Total Cost":"55086.08","Total Profit":"112877.28"},{"Region":"Asia","Country":"Indonesia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"1/24/2014","Order ID":"525878465","Ship Date":"2/3/2014","Units Sold":"7979","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"652123.67","Total Cost":"452169.93","Total Profit":"199953.74"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"11/14/2012","Order ID":"300116717","Ship Date":"12/16/2012","Units Sold":"61","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"40764.47","Total Cost":"30654.94","Total Profit":"10109.53"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/1/2014","Order ID":"776120412","Ship Date":"3/22/2014","Units Sold":"132","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"10788.36","Total Cost":"7480.44","Total Profit":"3307.92"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"8/13/2013","Order ID":"347688376","Ship Date":"9/3/2013","Units Sold":"7572","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1166542.32","Total Cost":"688521.96","Total Profit":"478020.36"},{"Region":"Asia","Country":"Myanmar","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"7/15/2015","Order ID":"628931939","Ship Date":"8/23/2015","Units Sold":"3792","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"584195.52","Total Cost":"344806.56","Total Profit":"239388.96"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"12/8/2013","Order ID":"604274928","Ship Date":"12/25/2013","Units Sold":"7234","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3051952.26","Total Cost":"2638167.46","Total Profit":"413784.80"},{"Region":"Asia","Country":"Myanmar","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"6/20/2011","Order ID":"678453671","Ship Date":"7/4/2011","Units Sold":"8373","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1722326.10","Total Cost":"980562.03","Total Profit":"741764.07"},{"Region":"Europe","Country":"Montenegro","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/18/2015","Order ID":"426516997","Ship Date":"9/13/2015","Units Sold":"4713","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3149556.51","Total Cost":"2368471.02","Total Profit":"781085.49"},{"Region":"Asia","Country":"South Korea","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/11/2012","Order ID":"843826234","Ship Date":"4/22/2012","Units Sold":"5789","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"473134.97","Total Cost":"328062.63","Total Profit":"145072.34"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"10/28/2014","Order ID":"296055209","Ship Date":"11/14/2014","Units Sold":"8170","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"76226.10","Total Cost":"56536.40","Total Profit":"19689.70"},{"Region":"North America","Country":"Mexico","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/15/2015","Order ID":"369190251","Ship Date":"1/19/2015","Units Sold":"454","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"303394.58","Total Cost":"228153.16","Total Profit":"75241.42"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"2/10/2017","Order ID":"919530189","Ship Date":"3/5/2017","Units Sold":"8272","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1701550.40","Total Cost":"968733.92","Total Profit":"732816.48"},{"Region":"Europe","Country":"France","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"2/24/2011","Order ID":"523686349","Ship Date":"3/31/2011","Units Sold":"9283","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"758699.59","Total Cost":"526067.61","Total Profit":"232631.98"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"10/30/2014","Order ID":"528582561","Ship Date":"12/9/2014","Units Sold":"8181","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1682831.70","Total Cost":"958076.91","Total Profit":"724754.79"},{"Region":"Europe","Country":"Vatican City","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"8/8/2016","Order ID":"101455152","Ship Date":"8/9/2016","Units Sold":"1689","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"712572.21","Total Cost":"615961.41","Total Profit":"96610.80"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/9/2017","Order ID":"279852950","Ship Date":"5/31/2017","Units Sold":"3562","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"389255.36","Total Cost":"127662.08","Total Profit":"261593.28"},{"Region":"Europe","Country":"Iceland","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"6/11/2011","Order ID":"821637284","Ship Date":"6/29/2011","Units Sold":"9586","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4044237.54","Total Cost":"3495918.34","Total Profit":"548319.20"},{"Region":"Asia","Country":"Japan","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"3/27/2013","Order ID":"654981982","Ship Date":"5/8/2013","Units Sold":"2579","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1679470.59","Total Cost":"1353871.84","Total Profit":"325598.75"},{"Region":"Europe","Country":"Netherlands","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/13/2015","Order ID":"128373372","Ship Date":"6/24/2015","Units Sold":"7388","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1886008.64","Total Cost":"1177794.96","Total Profit":"708213.68"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"8/23/2015","Order ID":"560610282","Ship Date":"9/22/2015","Units Sold":"5895","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"279717.75","Total Cost":"187402.05","Total Profit":"92315.70"},{"Region":"North America","Country":"Greenland","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"6/12/2012","Order ID":"190804040","Ship Date":"6/30/2012","Units Sold":"2010","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"847998.90","Total Cost":"733026.90","Total Profit":"114972.00"},{"Region":"Europe","Country":"Serbia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"11/29/2016","Order ID":"928378474","Ship Date":"12/31/2016","Units Sold":"6676","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"62287.08","Total Cost":"46197.92","Total Profit":"16089.16"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/12/2010","Order ID":"703069913","Ship Date":"12/24/2010","Units Sold":"2866","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"26739.78","Total Cost":"19832.72","Total Profit":"6907.06"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"4/10/2011","Order ID":"214927184","Ship Date":"4/15/2011","Units Sold":"585","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"89259.30","Total Cost":"57002.40","Total Profit":"32256.90"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/15/2013","Order ID":"684311616","Ship Date":"7/29/2013","Units Sold":"1869","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"477118.32","Total Cost":"297955.98","Total Profit":"179162.34"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"7/28/2017","Order ID":"701897037","Ship Date":"8/15/2017","Units Sold":"5786","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"274545.70","Total Cost":"183936.94","Total Profit":"90608.76"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"4/14/2017","Order ID":"278669774","Ship Date":"4/15/2017","Units Sold":"3434","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2236255.14","Total Cost":"1802712.64","Total Profit":"433542.50"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/8/2011","Order ID":"395928657","Ship Date":"2/12/2011","Units Sold":"2943","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"240531.39","Total Cost":"166779.81","Total Profit":"73751.58"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/2/2013","Order ID":"755285012","Ship Date":"10/4/2013","Units Sold":"4474","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1142122.72","Total Cost":"713245.08","Total Profit":"428877.64"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"7/4/2014","Order ID":"228662669","Ship Date":"7/12/2014","Units Sold":"5220","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"426630.60","Total Cost":"295817.40","Total Profit":"130813.20"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"4/14/2011","Order ID":"908297955","Ship Date":"6/2/2011","Units Sold":"4404","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"671962.32","Total Cost":"429125.76","Total Profit":"242836.56"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"6/7/2014","Order ID":"456739699","Ship Date":"7/14/2014","Units Sold":"8282","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3494092.98","Total Cost":"3020362.58","Total Profit":"473730.40"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"8/19/2012","Order ID":"656849229","Ship Date":"8/20/2012","Units Sold":"5138","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"243798.10","Total Cost":"163337.02","Total Profit":"80461.08"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/30/2014","Order ID":"661800372","Ship Date":"8/8/2014","Units Sold":"292","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"23865.16","Total Cost":"16547.64","Total Profit":"7317.52"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"11/14/2014","Order ID":"145079457","Ship Date":"12/24/2014","Units Sold":"1090","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"119115.20","Total Cost":"39065.60","Total Profit":"80049.60"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"12/18/2012","Order ID":"650485312","Ship Date":"12/27/2012","Units Sold":"1914","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"209161.92","Total Cost":"68597.76","Total Profit":"140564.16"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/16/2016","Order ID":"642129266","Ship Date":"2/4/2017","Units Sold":"9174","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1002534.72","Total Cost":"328796.16","Total Profit":"673738.56"},{"Region":"North America","Country":"Canada","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"1/28/2017","Order ID":"454435145","Ship Date":"2/27/2017","Units Sold":"6313","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1611582.64","Total Cost":"1006418.46","Total Profit":"605164.18"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/8/2012","Order ID":"942139279","Ship Date":"4/11/2012","Units Sold":"8804","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"82141.32","Total Cost":"60923.68","Total Profit":"21217.64"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/28/2013","Order ID":"330290496","Ship Date":"8/27/2013","Units Sold":"9152","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6116007.04","Total Cost":"4599246.08","Total Profit":"1516760.96"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/15/2010","Order ID":"964250123","Ship Date":"11/19/2010","Units Sold":"1894","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"89870.30","Total Cost":"60210.26","Total Profit":"29660.04"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"9/20/2013","Order ID":"759691989","Ship Date":"10/18/2013","Units Sold":"8596","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1768197.20","Total Cost":"1006677.56","Total Profit":"761519.64"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/4/2010","Order ID":"852602422","Ship Date":"3/14/2010","Units Sold":"2858","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"233584.34","Total Cost":"161962.86","Total Profit":"71621.48"},{"Region":"North America","Country":"Canada","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"7/18/2015","Order ID":"649280250","Ship Date":"7/24/2015","Units Sold":"5309","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"49532.97","Total Cost":"36738.28","Total Profit":"12794.69"},{"Region":"Asia","Country":"Thailand","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"5/21/2016","Order ID":"976336801","Ship Date":"6/12/2016","Units Sold":"8611","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"703777.03","Total Cost":"487985.37","Total Profit":"215791.66"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/17/2011","Order ID":"930695903","Ship Date":"5/27/2011","Units Sold":"2455","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"504993.50","Total Cost":"287505.05","Total Profit":"217488.45"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/18/2015","Order ID":"129593884","Ship Date":"6/27/2015","Units Sold":"8565","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2186473.20","Total Cost":"1365432.30","Total Profit":"821040.90"},{"Region":"Asia","Country":"Taiwan","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/4/2010","Order ID":"960579574","Ship Date":"9/20/2010","Units Sold":"5697","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"270322.65","Total Cost":"181107.63","Total Profit":"89215.02"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/25/2010","Order ID":"931514298","Ship Date":"2/7/2010","Units Sold":"4636","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"219978.20","Total Cost":"147378.44","Total Profit":"72599.76"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"11/23/2016","Order ID":"320571887","Ship Date":"12/29/2016","Units Sold":"3200","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1399040.00","Total Cost":"842656.00","Total Profit":"556384.00"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"6/5/2012","Order ID":"826238667","Ship Date":"6/12/2012","Units Sold":"1237","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"135179.36","Total Cost":"44334.08","Total Profit":"90845.28"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/26/2013","Order ID":"617313468","Ship Date":"3/7/2013","Units Sold":"5628","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"858720.24","Total Cost":"548392.32","Total Profit":"310327.92"},{"Region":"Europe","Country":"Sweden","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"12/5/2013","Order ID":"182907617","Ship Date":"1/7/2014","Units Sold":"5283","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1086713.10","Total Cost":"618692.13","Total Profit":"468020.97"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"6/7/2014","Order ID":"982444941","Ship Date":"6/18/2014","Units Sold":"6145","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4106519.15","Total Cost":"3088108.30","Total Profit":"1018410.85"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"6/6/2015","Order ID":"495661771","Ship Date":"7/16/2015","Units Sold":"6188","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1272871.60","Total Cost":"724676.68","Total Profit":"548194.92"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/15/2014","Order ID":"772606933","Ship Date":"12/15/2014","Units Sold":"415","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"181438.00","Total Cost":"109281.95","Total Profit":"72156.05"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"2/10/2012","Order ID":"783641755","Ship Date":"3/22/2012","Units Sold":"5864","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2473962.96","Total Cost":"2138542.16","Total Profit":"335420.80"},{"Region":"Asia","Country":"Vietnam","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"11/6/2010","Order ID":"469440066","Ship Date":"12/22/2010","Units Sold":"6602","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4411918.54","Total Cost":"3317769.08","Total Profit":"1094149.46"},{"Region":"Europe","Country":"France","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"3/9/2016","Order ID":"290988194","Ship Date":"3/22/2016","Units Sold":"8728","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1795349.60","Total Cost":"1022136.08","Total Profit":"773213.52"},{"Region":"Europe","Country":"Romania","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"4/11/2015","Order ID":"779584968","Ship Date":"5/10/2015","Units Sold":"5371","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2348201.20","Total Cost":"1414345.43","Total Profit":"933855.77"},{"Region":"Asia","Country":"South Korea","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"6/24/2011","Order ID":"286841714","Ship Date":"8/7/2011","Units Sold":"1692","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"739742.40","Total Cost":"445554.36","Total Profit":"294188.04"},{"Region":"Asia","Country":"Laos","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/1/2013","Order ID":"834682261","Ship Date":"2/16/2013","Units Sold":"9885","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4170382.65","Total Cost":"3604960.65","Total Profit":"565422.00"},{"Region":"Europe","Country":"France","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/26/2013","Order ID":"465342938","Ship Date":"1/31/2014","Units Sold":"4171","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1064772.88","Total Cost":"664940.82","Total Profit":"399832.06"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/29/2013","Order ID":"891372573","Ship Date":"5/31/2013","Units Sold":"5807","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1194499.90","Total Cost":"680057.77","Total Profit":"514442.13"},{"Region":"North America","Country":"Greenland","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/27/2011","Order ID":"745632493","Ship Date":"4/27/2011","Units Sold":"8079","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3408449.31","Total Cost":"2946330.51","Total Profit":"462118.80"},{"Region":"Asia","Country":"Maldives","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"8/13/2012","Order ID":"531296527","Ship Date":"9/2/2012","Units Sold":"1304","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"12166.32","Total Cost":"9023.68","Total Profit":"3142.64"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"9/11/2015","Order ID":"371851003","Ship Date":"9/26/2015","Units Sold":"7830","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3423276.00","Total Cost":"2061873.90","Total Profit":"1361402.10"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/20/2016","Order ID":"461094748","Ship Date":"4/18/2016","Units Sold":"7037","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1447510.90","Total Cost":"824103.07","Total Profit":"623407.83"},{"Region":"Asia","Country":"India","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/5/2010","Order ID":"613139092","Ship Date":"12/23/2010","Units Sold":"338","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"142598.82","Total Cost":"123265.22","Total Profit":"19333.60"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/20/2016","Order ID":"712407863","Ship Date":"8/15/2016","Units Sold":"6173","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"57594.09","Total Cost":"42717.16","Total Profit":"14876.93"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"1/9/2013","Order ID":"263637387","Ship Date":"1/19/2013","Units Sold":"5016","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3352042.32","Total Cost":"2520740.64","Total Profit":"831301.68"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/3/2015","Order ID":"641876494","Ship Date":"6/19/2015","Units Sold":"4373","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2847741.33","Total Cost":"2295650.08","Total Profit":"552091.25"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/28/2017","Order ID":"142486512","Ship Date":"3/4/2017","Units Sold":"3780","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"308939.40","Total Cost":"214212.60","Total Profit":"94726.80"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/10/2016","Order ID":"731141269","Ship Date":"7/31/2016","Units Sold":"9804","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1071381.12","Total Cost":"351375.36","Total Profit":"720005.76"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"11/3/2012","Order ID":"393827092","Ship Date":"11/30/2012","Units Sold":"1043","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"159140.94","Total Cost":"101629.92","Total Profit":"57511.02"},{"Region":"Europe","Country":"Romania","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/22/2010","Order ID":"786842811","Ship Date":"5/14/2010","Units Sold":"3128","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"29184.24","Total Cost":"21645.76","Total Profit":"7538.48"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"3/3/2014","Order ID":"486799752","Ship Date":"3/20/2014","Units Sold":"3719","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"567445.02","Total Cost":"362379.36","Total Profit":"205065.66"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"10/28/2011","Order ID":"840621745","Ship Date":"11/11/2011","Units Sold":"7510","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1145875.80","Total Cost":"731774.40","Total Profit":"414101.40"},{"Region":"Europe","Country":"Switzerland","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"6/8/2014","Order ID":"115545117","Ship Date":"7/3/2014","Units Sold":"1223","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"186605.34","Total Cost":"119169.12","Total Profit":"67436.22"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"4/23/2015","Order ID":"249118697","Ship Date":"4/26/2015","Units Sold":"8613","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"408686.85","Total Cost":"273807.27","Total Profit":"134879.58"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/21/2016","Order ID":"999203813","Ship Date":"6/5/2016","Units Sold":"5468","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"446899.64","Total Cost":"309871.56","Total Profit":"137028.08"},{"Region":"Asia","Country":"South Korea","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/20/2016","Order ID":"393974292","Ship Date":"12/2/2016","Units Sold":"4603","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"503015.84","Total Cost":"164971.52","Total Profit":"338044.32"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"2/4/2017","Order ID":"581916463","Ship Date":"2/15/2017","Units Sold":"868","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"132439.44","Total Cost":"84577.92","Total Profit":"47861.52"},{"Region":"Europe","Country":"Greece","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"7/29/2014","Order ID":"181829154","Ship Date":"8/18/2014","Units Sold":"6142","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2591248.38","Total Cost":"2239925.98","Total Profit":"351322.40"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/12/2015","Order ID":"132823693","Ship Date":"7/16/2015","Units Sold":"4337","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1107149.36","Total Cost":"691404.54","Total Profit":"415744.82"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"11/10/2015","Order ID":"544323909","Ship Date":"12/3/2015","Units Sold":"6396","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"975901.68","Total Cost":"623226.24","Total Profit":"352675.44"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/16/2012","Order ID":"246066129","Ship Date":"8/30/2012","Units Sold":"5290","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2312788.00","Total Cost":"1393015.70","Total Profit":"919772.30"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/20/2014","Order ID":"838099181","Ship Date":"1/17/2015","Units Sold":"1027","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"158219.62","Total Cost":"93385.11","Total Profit":"64834.51"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/19/2010","Order ID":"840784394","Ship Date":"1/3/2011","Units Sold":"5641","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"52630.53","Total Cost":"39035.72","Total Profit":"13594.81"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"8/8/2015","Order ID":"644795596","Ship Date":"8/12/2015","Units Sold":"8201","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3585477.20","Total Cost":"2159569.33","Total Profit":"1425907.87"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/16/2015","Order ID":"261119115","Ship Date":"4/16/2015","Units Sold":"9804","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2502765.12","Total Cost":"1562953.68","Total Profit":"939811.44"},{"Region":"North America","Country":"Canada","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/11/2015","Order ID":"671053779","Ship Date":"11/16/2015","Units Sold":"8580","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"701243.40","Total Cost":"486228.60","Total Profit":"215014.80"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/22/2016","Order ID":"676210916","Ship Date":"1/4/2017","Units Sold":"4692","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3135522.84","Total Cost":"2357917.68","Total Profit":"777605.16"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/29/2015","Order ID":"948514354","Ship Date":"6/13/2015","Units Sold":"5330","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1096381.00","Total Cost":"624196.30","Total Profit":"472184.70"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"10/21/2016","Order ID":"880200421","Ship Date":"11/20/2016","Units Sold":"9720","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4100770.80","Total Cost":"3544786.80","Total Profit":"555984.00"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"4/16/2016","Order ID":"833817946","Ship Date":"4/16/2016","Units Sold":"4114","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2679077.94","Total Cost":"2159685.44","Total Profit":"519392.50"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"2/14/2010","Order ID":"792228257","Ship Date":"2/20/2010","Units Sold":"6801","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1047762.06","Total Cost":"618414.93","Total Profit":"429347.13"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"7/24/2014","Order ID":"808605182","Ship Date":"8/5/2014","Units Sold":"3097","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"338440.16","Total Cost":"110996.48","Total Profit":"227443.68"},{"Region":"Europe","Country":"Ukraine","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/20/2016","Order ID":"556435048","Ship Date":"10/7/2016","Units Sold":"351","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"16654.95","Total Cost":"11158.29","Total Profit":"5496.66"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"10/21/2015","Order ID":"679516685","Ship Date":"11/21/2015","Units Sold":"2942","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1286242.40","Total Cost":"774716.86","Total Profit":"511525.54"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/2/2012","Order ID":"541961419","Ship Date":"9/14/2012","Units Sold":"7282","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"595157.86","Total Cost":"412670.94","Total Profit":"182486.92"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/10/2012","Order ID":"478193080","Ship Date":"5/13/2012","Units Sold":"6814","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1049764.84","Total Cost":"619597.02","Total Profit":"430167.82"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/24/2013","Order ID":"442947995","Ship Date":"2/6/2014","Units Sold":"7010","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2957448.90","Total Cost":"2556476.90","Total Profit":"400972.00"},{"Region":"Asia","Country":"Cambodia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/7/2013","Order ID":"461274993","Ship Date":"9/11/2013","Units Sold":"376","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"17841.20","Total Cost":"11953.04","Total Profit":"5888.16"},{"Region":"Asia","Country":"India","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/30/2015","Order ID":"178535401","Ship Date":"1/10/2016","Units Sold":"1448","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"610896.72","Total Cost":"528071.12","Total Profit":"82825.60"},{"Region":"Asia","Country":"South Korea","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/28/2015","Order ID":"210403048","Ship Date":"10/14/2015","Units Sold":"1793","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"783899.60","Total Cost":"472150.69","Total Profit":"311748.91"},{"Region":"Asia","Country":"Thailand","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"9/15/2015","Order ID":"792864263","Ship Date":"10/9/2015","Units Sold":"5009","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3261910.89","Total Cost":"2629524.64","Total Profit":"632386.25"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/18/2016","Order ID":"432217872","Ship Date":"8/6/2016","Units Sold":"1728","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"441123.84","Total Cost":"275477.76","Total Profit":"165646.08"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/27/2012","Order ID":"855075204","Ship Date":"2/15/2012","Units Sold":"4609","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1944491.01","Total Cost":"1680856.21","Total Profit":"263634.80"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"3/6/2016","Order ID":"258360087","Ship Date":"4/25/2016","Units Sold":"3346","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"515484.76","Total Cost":"304251.78","Total Profit":"211232.98"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/12/2013","Order ID":"959308850","Ship Date":"8/29/2013","Units Sold":"9662","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"458461.90","Total Cost":"307154.98","Total Profit":"151306.92"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"5/10/2016","Order ID":"845470321","Ship Date":"6/22/2016","Units Sold":"2311","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1544371.97","Total Cost":"1161369.94","Total Profit":"383002.03"},{"Region":"Europe","Country":"Macedonia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/2/2015","Order ID":"124705827","Ship Date":"4/26/2015","Units Sold":"2080","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"169998.40","Total Cost":"117873.60","Total Profit":"52124.80"},{"Region":"Europe","Country":"Portugal","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"3/18/2013","Order ID":"875189197","Ship Date":"4/7/2013","Units Sold":"6787","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2967276.40","Total Cost":"1787220.71","Total Profit":"1180055.69"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/23/2014","Order ID":"295406758","Ship Date":"5/16/2014","Units Sold":"6279","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"58583.07","Total Cost":"43450.68","Total Profit":"15132.39"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"4/29/2012","Order ID":"154157340","Ship Date":"5/12/2012","Units Sold":"7437","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1898517.36","Total Cost":"1185606.54","Total Profit":"712910.82"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"3/31/2017","Order ID":"940552270","Ship Date":"5/3/2017","Units Sold":"9173","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4010435.60","Total Cost":"2415526.09","Total Profit":"1594909.51"},{"Region":"Europe","Country":"Switzerland","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/13/2013","Order ID":"514015376","Ship Date":"8/29/2013","Units Sold":"7427","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1133211.66","Total Cost":"723686.88","Total Profit":"409524.78"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"5/5/2017","Order ID":"854282987","Ship Date":"5/11/2017","Units Sold":"175","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"14302.75","Total Cost":"9917.25","Total Profit":"4385.50"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"4/25/2011","Order ID":"411403930","Ship Date":"6/1/2011","Units Sold":"2420","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"22578.60","Total Cost":"16746.40","Total Profit":"5832.20"},{"Region":"Europe","Country":"Germany","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/8/2017","Order ID":"855739533","Ship Date":"5/13/2017","Units Sold":"1199","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"184717.94","Total Cost":"109025.07","Total Profit":"75692.87"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/8/2016","Order ID":"327963626","Ship Date":"10/24/2016","Units Sold":"580","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"47403.40","Total Cost":"32868.60","Total Profit":"14534.80"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"5/5/2014","Order ID":"189062535","Ship Date":"5/11/2014","Units Sold":"6660","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2911752.00","Total Cost":"1753777.80","Total Profit":"1157974.20"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/11/2012","Order ID":"970335090","Ship Date":"9/4/2012","Units Sold":"2571","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"280958.88","Total Cost":"92144.64","Total Profit":"188814.24"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"11/8/2014","Order ID":"123392617","Ship Date":"12/26/2014","Units Sold":"3472","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2261001.12","Total Cost":"1822661.12","Total Profit":"438340.00"},{"Region":"Europe","Country":"Croatia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/20/2014","Order ID":"570158946","Ship Date":"3/8/2014","Units Sold":"1557","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"127253.61","Total Cost":"88235.19","Total Profit":"39018.42"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"3/3/2012","Order ID":"352870404","Ship Date":"4/3/2012","Units Sold":"1049","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"458622.80","Total Cost":"276233.17","Total Profit":"182389.63"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"7/5/2015","Order ID":"284075820","Ship Date":"8/5/2015","Units Sold":"3203","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"261781.19","Total Cost":"181514.01","Total Profit":"80267.18"},{"Region":"Asia","Country":"Philippines","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/14/2016","Order ID":"796636521","Ship Date":"9/1/2016","Units Sold":"1305","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"550566.45","Total Cost":"475920.45","Total Profit":"74646.00"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/1/2012","Order ID":"593726336","Ship Date":"12/7/2012","Units Sold":"5672","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1447948.16","Total Cost":"904230.24","Total Profit":"543717.92"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/14/2010","Order ID":"698831593","Ship Date":"3/23/2010","Units Sold":"8653","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"410584.85","Total Cost":"275078.87","Total Profit":"135505.98"},{"Region":"Asia","Country":"Taiwan","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"9/20/2011","Order ID":"405751121","Ship Date":"10/5/2011","Units Sold":"9628","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2457835.84","Total Cost":"1534895.76","Total Profit":"922940.08"},{"Region":"Asia","Country":"Indonesia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/13/2014","Order ID":"428596246","Ship Date":"6/7/2014","Units Sold":"8","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"379.60","Total Cost":"254.32","Total Profit":"125.28"},{"Region":"Europe","Country":"Poland","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/25/2012","Order ID":"651790797","Ship Date":"2/6/2012","Units Sold":"8236","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"76841.88","Total Cost":"56993.12","Total Profit":"19848.76"},{"Region":"Europe","Country":"France","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/20/2015","Order ID":"580071103","Ship Date":"2/23/2015","Units Sold":"4785","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2018743.65","Total Cost":"1745041.65","Total Profit":"273702.00"},{"Region":"Asia","Country":"Maldives","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"9/7/2015","Order ID":"688485991","Ship Date":"10/12/2015","Units Sold":"7159","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"66793.47","Total Cost":"49540.28","Total Profit":"17253.19"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/13/2014","Order ID":"172396790","Ship Date":"1/8/2015","Units Sold":"4896","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"535034.88","Total Cost":"175472.64","Total Profit":"359562.24"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"2/14/2011","Order ID":"997477328","Ship Date":"2/17/2011","Units Sold":"4562","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2970820.02","Total Cost":"2394867.52","Total Profit":"575952.50"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/12/2011","Order ID":"249713933","Ship Date":"3/12/2011","Units Sold":"4757","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"44382.81","Total Cost":"32918.44","Total Profit":"11464.37"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/19/2011","Order ID":"485405433","Ship Date":"9/6/2011","Units Sold":"1109","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"90638.57","Total Cost":"62847.03","Total Profit":"27791.54"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/3/2010","Order ID":"281163156","Ship Date":"3/3/2010","Units Sold":"1281","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"834200.01","Total Cost":"672473.76","Total Profit":"161726.25"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/11/2016","Order ID":"983910930","Ship Date":"11/27/2016","Units Sold":"9964","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6658642.28","Total Cost":"5007308.56","Total Profit":"1651333.72"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/27/2012","Order ID":"860885083","Ship Date":"10/25/2012","Units Sold":"3882","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"598060.92","Total Cost":"352990.26","Total Profit":"245070.66"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"9/27/2013","Order ID":"949634444","Ship Date":"10/10/2013","Units Sold":"6790","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2968588.00","Total Cost":"1788010.70","Total Profit":"1180577.30"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/26/2014","Order ID":"108020341","Ship Date":"5/5/2014","Units Sold":"4474","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"212291.30","Total Cost":"142228.46","Total Profit":"70062.84"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"6/9/2013","Order ID":"864216601","Ship Date":"6/19/2013","Units Sold":"9752","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1502393.12","Total Cost":"886749.36","Total Profit":"615643.76"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/23/2011","Order ID":"866709554","Ship Date":"10/3/2011","Units Sold":"7472","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"354546.40","Total Cost":"237534.88","Total Profit":"117011.52"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"12/24/2013","Order ID":"534298026","Ship Date":"1/31/2014","Units Sold":"9514","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"88765.62","Total Cost":"65836.88","Total Profit":"22928.74"},{"Region":"Asia","Country":"Brunei","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/6/2011","Order ID":"806093347","Ship Date":"7/25/2011","Units Sold":"9789","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6541695.03","Total Cost":"4919364.06","Total Profit":"1622330.97"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/13/2015","Order ID":"891519343","Ship Date":"5/25/2015","Units Sold":"9240","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"755185.20","Total Cost":"523630.80","Total Profit":"231554.40"},{"Region":"Europe","Country":"Slovenia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"9/9/2014","Order ID":"520312345","Ship Date":"10/4/2014","Units Sold":"840","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"129410.40","Total Cost":"76381.20","Total Profit":"53029.20"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/25/2011","Order ID":"392521178","Ship Date":"8/23/2011","Units Sold":"4594","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1172756.32","Total Cost":"732375.48","Total Profit":"440380.84"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/12/2016","Order ID":"828507173","Ship Date":"6/4/2016","Units Sold":"2538","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"277352.64","Total Cost":"90961.92","Total Profit":"186390.72"},{"Region":"Europe","Country":"Croatia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/8/2014","Order ID":"418944156","Ship Date":"2/27/2014","Units Sold":"3740","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2499329.80","Total Cost":"1879499.60","Total Profit":"619830.20"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/6/2013","Order ID":"974818456","Ship Date":"9/14/2013","Units Sold":"9299","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6214242.73","Total Cost":"4673119.46","Total Profit":"1541123.27"},{"Region":"Europe","Country":"Romania","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"5/7/2013","Order ID":"777428901","Ship Date":"6/21/2013","Units Sold":"7343","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4907106.61","Total Cost":"3690151.22","Total Profit":"1216955.39"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"12/7/2012","Order ID":"428386819","Ship Date":"12/17/2012","Units Sold":"8034","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5231821.14","Total Cost":"4217528.64","Total Profit":"1014292.50"},{"Region":"Europe","Country":"Estonia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"10/11/2016","Order ID":"599616038","Ship Date":"11/30/2016","Units Sold":"8565","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"935983.20","Total Cost":"306969.60","Total Profit":"629013.60"},{"Region":"Europe","Country":"Macedonia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/25/2015","Order ID":"683352887","Ship Date":"5/3/2015","Units Sold":"8160","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"76132.80","Total Cost":"56467.20","Total Profit":"19665.60"},{"Region":"Asia","Country":"Singapore","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"1/20/2011","Order ID":"142146193","Ship Date":"3/4/2011","Units Sold":"3072","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1296046.08","Total Cost":"1120327.68","Total Profit":"175718.40"},{"Region":"Asia","Country":"India","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"8/30/2015","Order ID":"758857285","Ship Date":"10/7/2015","Units Sold":"1589","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"75398.05","Total Cost":"50514.31","Total Profit":"24883.74"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"1/6/2015","Order ID":"786659991","Ship Date":"2/17/2015","Units Sold":"9028","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3947041.60","Total Cost":"2377343.24","Total Profit":"1569698.36"},{"Region":"Europe","Country":"Ukraine","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/20/2011","Order ID":"799040639","Ship Date":"5/24/2011","Units Sold":"2736","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"25526.88","Total Cost":"18933.12","Total Profit":"6593.76"},{"Region":"Europe","Country":"Armenia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/17/2011","Order ID":"539798057","Ship Date":"8/17/2011","Units Sold":"7095","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4741375.65","Total Cost":"3565521.30","Total Profit":"1175854.35"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/4/2016","Order ID":"273043572","Ship Date":"4/18/2016","Units Sold":"8516","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3592815.24","Total Cost":"3105700.04","Total Profit":"487115.20"},{"Region":"Europe","Country":"Belarus","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"9/7/2015","Order ID":"333201014","Ship Date":"9/10/2015","Units Sold":"440","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"20878.00","Total Cost":"13987.60","Total Profit":"6890.40"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/31/2016","Order ID":"675006711","Ship Date":"5/1/2016","Units Sold":"8341","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"395780.45","Total Cost":"265160.39","Total Profit":"130620.06"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"2/6/2014","Order ID":"423509490","Ship Date":"2/23/2014","Units Sold":"4724","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3076316.04","Total Cost":"2479911.04","Total Profit":"596405.00"},{"Region":"Europe","Country":"Sweden","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"1/7/2014","Order ID":"124070680","Ship Date":"2/24/2014","Units Sold":"4126","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"635651.56","Total Cost":"375177.18","Total Profit":"260474.38"},{"Region":"Asia","Country":"Indonesia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/29/2010","Order ID":"392364108","Ship Date":"8/11/2010","Units Sold":"8114","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5283917.94","Total Cost":"4259525.44","Total Profit":"1024392.50"},{"Region":"Asia","Country":"Brunei","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"3/20/2014","Order ID":"564376103","Ship Date":"4/28/2014","Units Sold":"286","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"186246.06","Total Cost":"150138.56","Total Profit":"36107.50"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"6/13/2010","Order ID":"946405494","Ship Date":"6/23/2010","Units Sold":"1272","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"324716.16","Total Cost":"202782.24","Total Profit":"121933.92"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"10/21/2015","Order ID":"565063607","Ship Date":"12/4/2015","Units Sold":"3733","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"305098.09","Total Cost":"211549.11","Total Profit":"93548.98"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/18/2013","Order ID":"317274272","Ship Date":"12/4/2013","Units Sold":"7362","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1123293.96","Total Cost":"717353.28","Total Profit":"405940.68"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/26/2012","Order ID":"720273816","Ship Date":"2/9/2012","Units Sold":"3883","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"991252.24","Total Cost":"619027.86","Total Profit":"372224.38"},{"Region":"Asia","Country":"Mongolia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/9/2015","Order ID":"561611068","Ship Date":"1/25/2015","Units Sold":"2050","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"864874.50","Total Cost":"747614.50","Total Profit":"117260.00"},{"Region":"Europe","Country":"Andorra","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/1/2013","Order ID":"949147355","Ship Date":"5/14/2013","Units Sold":"2649","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"216502.77","Total Cost":"150118.83","Total Profit":"66383.94"},{"Region":"Asia","Country":"Malaysia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/28/2017","Order ID":"361056506","Ship Date":"8/29/2017","Units Sold":"3498","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"538901.88","Total Cost":"318073.14","Total Profit":"220828.74"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/31/2016","Order ID":"495824849","Ship Date":"9/16/2016","Units Sold":"4446","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"210962.70","Total Cost":"141338.34","Total Profit":"69624.36"},{"Region":"Europe","Country":"Romania","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"12/20/2011","Order ID":"422251212","Ship Date":"2/3/2012","Units Sold":"2372","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"365430.32","Total Cost":"215685.96","Total Profit":"149744.36"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"6/19/2013","Order ID":"629446923","Ship Date":"6/30/2013","Units Sold":"6187","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4029036.27","Total Cost":"3247927.52","Total Profit":"781108.75"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/10/2013","Order ID":"776835811","Ship Date":"5/29/2013","Units Sold":"1834","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"801824.80","Total Cost":"482947.22","Total Profit":"318877.58"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"2/27/2012","Order ID":"144154202","Ship Date":"2/28/2012","Units Sold":"7287","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1122635.22","Total Cost":"662606.91","Total Profit":"460028.31"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/20/2015","Order ID":"781450927","Ship Date":"9/22/2015","Units Sold":"7550","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"617061.50","Total Cost":"427858.50","Total Profit":"189203.00"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"6/29/2015","Order ID":"759087312","Ship Date":"8/16/2015","Units Sold":"9659","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6290037.39","Total Cost":"5070588.64","Total Profit":"1219448.75"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/6/2015","Order ID":"917737185","Ship Date":"6/30/2015","Units Sold":"7682","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"627849.86","Total Cost":"435338.94","Total Profit":"192510.92"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"12/21/2012","Order ID":"818386876","Ship Date":"1/18/2013","Units Sold":"7718","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5026038.78","Total Cost":"4051641.28","Total Profit":"974397.50"},{"Region":"Europe","Country":"Denmark","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"6/2/2010","Order ID":"992335212","Ship Date":"7/19/2010","Units Sold":"2896","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1885904.16","Total Cost":"1520284.16","Total Profit":"365620.00"},{"Region":"Europe","Country":"Germany","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"2/18/2011","Order ID":"691193521","Ship Date":"3/20/2011","Units Sold":"8377","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"915438.56","Total Cost":"300231.68","Total Profit":"615206.88"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/1/2015","Order ID":"136885631","Ship Date":"10/16/2015","Units Sold":"6355","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"969645.90","Total Cost":"619231.20","Total Profit":"350414.70"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/31/2010","Order ID":"971647870","Ship Date":"11/4/2010","Units Sold":"1052","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"85979.96","Total Cost":"59616.84","Total Profit":"26363.12"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"7/4/2010","Order ID":"408029067","Ship Date":"8/10/2010","Units Sold":"3723","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"34735.59","Total Cost":"25763.16","Total Profit":"8972.43"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/27/2014","Order ID":"678890550","Ship Date":"11/10/2014","Units Sold":"7655","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"836538.40","Total Cost":"274355.20","Total Profit":"562183.20"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/12/2013","Order ID":"487406146","Ship Date":"8/11/2013","Units Sold":"3165","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"807961.20","Total Cost":"504564.30","Total Profit":"303396.90"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/6/2012","Order ID":"857062184","Ship Date":"9/13/2012","Units Sold":"2601","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"396860.58","Total Cost":"253441.44","Total Profit":"143419.14"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/8/2015","Order ID":"181657493","Ship Date":"5/7/2015","Units Sold":"5344","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2336396.80","Total Cost":"1407235.52","Total Profit":"929161.28"},{"Region":"Asia","Country":"Philippines","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/13/2010","Order ID":"975303399","Ship Date":"9/23/2010","Units Sold":"2804","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1825992.84","Total Cost":"1471987.84","Total Profit":"354005.00"},{"Region":"Europe","Country":"Latvia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"8/18/2015","Order ID":"422423732","Ship Date":"9/14/2015","Units Sold":"3424","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2229743.04","Total Cost":"1797463.04","Total Profit":"432280.00"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/23/2017","Order ID":"727754819","Ship Date":"8/28/2017","Units Sold":"7678","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"627522.94","Total Cost":"435112.26","Total Profit":"192410.68"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/2/2016","Order ID":"566345489","Ship Date":"7/4/2016","Units Sold":"3070","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"472964.20","Total Cost":"279155.10","Total Profit":"193809.10"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/17/2013","Order ID":"933557069","Ship Date":"4/12/2013","Units Sold":"9137","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3994696.40","Total Cost":"2406046.21","Total Profit":"1588650.19"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/7/2013","Order ID":"195063388","Ship Date":"10/20/2013","Units Sold":"2446","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"22821.18","Total Cost":"16926.32","Total Profit":"5894.86"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"6/8/2017","Order ID":"836850774","Ship Date":"6/14/2017","Units Sold":"1596","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"243517.68","Total Cost":"155514.24","Total Profit":"88003.44"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"4/4/2013","Order ID":"915218055","Ship Date":"4/7/2013","Units Sold":"2215","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"968398.00","Total Cost":"583275.95","Total Profit":"385122.05"},{"Region":"Europe","Country":"Switzerland","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/23/2014","Order ID":"806776559","Ship Date":"2/9/2014","Units Sold":"1967","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"404611.90","Total Cost":"230355.37","Total Profit":"174256.53"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"10/22/2014","Order ID":"958450114","Ship Date":"12/9/2014","Units Sold":"5543","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"605739.04","Total Cost":"198661.12","Total Profit":"407077.92"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/8/2011","Order ID":"537475049","Ship Date":"7/16/2011","Units Sold":"9666","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2467536.48","Total Cost":"1540953.72","Total Profit":"926582.76"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/22/2012","Order ID":"581400191","Ship Date":"8/23/2012","Units Sold":"8091","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5406972.57","Total Cost":"4066051.14","Total Profit":"1340921.43"},{"Region":"Europe","Country":"Germany","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"7/20/2012","Order ID":"848086869","Ship Date":"9/1/2012","Units Sold":"6606","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4301893.26","Total Cost":"3467885.76","Total Profit":"834007.50"},{"Region":"Europe","Country":"Andorra","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/18/2010","Order ID":"265708911","Ship Date":"7/25/2010","Units Sold":"8026","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3508967.20","Total Cost":"2113486.58","Total Profit":"1395480.62"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"3/27/2014","Order ID":"982752645","Ship Date":"5/15/2014","Units Sold":"7201","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3148277.20","Total Cost":"1896239.33","Total Profit":"1252037.87"},{"Region":"Asia","Country":"India","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"11/10/2013","Order ID":"718016898","Ship Date":"12/14/2013","Units Sold":"6011","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2628009.20","Total Cost":"1582876.63","Total Profit":"1045132.57"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"7/16/2015","Order ID":"410613000","Ship Date":"7/27/2015","Units Sold":"8366","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3529531.74","Total Cost":"3050996.54","Total Profit":"478535.20"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/5/2015","Order ID":"169964778","Ship Date":"4/13/2015","Units Sold":"5210","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"425813.30","Total Cost":"295250.70","Total Profit":"130562.60"},{"Region":"Europe","Country":"Serbia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"4/24/2017","Order ID":"625808560","Ship Date":"5/28/2017","Units Sold":"9515","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"777660.95","Total Cost":"539215.05","Total Profit":"238445.90"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"3/16/2016","Order ID":"678193175","Ship Date":"3/23/2016","Units Sold":"1286","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"61020.70","Total Cost":"40881.94","Total Profit":"20138.76"},{"Region":"Europe","Country":"Iceland","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/28/2014","Order ID":"647479951","Ship Date":"10/28/2014","Units Sold":"2561","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1667748.81","Total Cost":"1344422.56","Total Profit":"323326.25"},{"Region":"Asia","Country":"Myanmar","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/30/2013","Order ID":"924342715","Ship Date":"2/10/2013","Units Sold":"2405","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"370514.30","Total Cost":"218686.65","Total Profit":"151827.65"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/18/2012","Order ID":"619767796","Ship Date":"7/12/2012","Units Sold":"1918","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"156758.14","Total Cost":"108693.06","Total Profit":"48065.08"},{"Region":"Europe","Country":"Portugal","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"5/24/2011","Order ID":"715054023","Ship Date":"6/24/2011","Units Sold":"9230","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2356234.40","Total Cost":"1471446.60","Total Profit":"884787.80"},{"Region":"Europe","Country":"France","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"1/8/2017","Order ID":"911812722","Ship Date":"1/14/2017","Units Sold":"4502","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2931747.42","Total Cost":"2363369.92","Total Profit":"568377.50"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/19/2011","Order ID":"981967723","Ship Date":"1/31/2011","Units Sold":"4926","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3291898.02","Total Cost":"2475512.04","Total Profit":"816385.98"},{"Region":"Europe","Country":"Belarus","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"2/15/2014","Order ID":"317755353","Ship Date":"3/13/2014","Units Sold":"9725","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4251770.00","Total Cost":"2560884.25","Total Profit":"1690885.75"},{"Region":"Europe","Country":"Macedonia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"11/10/2013","Order ID":"181724441","Ship Date":"11/22/2013","Units Sold":"5155","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"563338.40","Total Cost":"184755.20","Total Profit":"378583.20"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/5/2014","Order ID":"556736314","Ship Date":"3/26/2014","Units Sold":"9502","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1038378.56","Total Cost":"340551.68","Total Profit":"697826.88"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"12/12/2015","Order ID":"595964801","Ship Date":"12/12/2015","Units Sold":"8083","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5401626.41","Total Cost":"4062030.82","Total Profit":"1339595.59"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"1/4/2014","Order ID":"872896230","Ship Date":"2/21/2014","Units Sold":"8247","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"901232.16","Total Cost":"295572.48","Total Profit":"605659.68"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"4/29/2015","Order ID":"231329429","Ship Date":"5/8/2015","Units Sold":"4373","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2847741.33","Total Cost":"2295650.08","Total Profit":"552091.25"},{"Region":"Europe","Country":"Andorra","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"10/31/2012","Order ID":"735375726","Ship Date":"11/14/2012","Units Sold":"2874","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1920607.98","Total Cost":"1444299.96","Total Profit":"476308.02"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/28/2011","Order ID":"919458949","Ship Date":"12/31/2011","Units Sold":"7190","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4804861.30","Total Cost":"3613262.60","Total Profit":"1191598.70"},{"Region":"Europe","Country":"Estonia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/1/2011","Order ID":"738315427","Ship Date":"7/19/2011","Units Sold":"2797","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1180026.33","Total Cost":"1020037.93","Total Profit":"159988.40"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"1/27/2015","Order ID":"216993987","Ship Date":"2/25/2015","Units Sold":"2198","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"452128.60","Total Cost":"257407.78","Total Profit":"194720.82"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"7/7/2012","Order ID":"800855958","Ship Date":"7/18/2012","Units Sold":"9930","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"92646.90","Total Cost":"68715.60","Total Profit":"23931.30"},{"Region":"Asia","Country":"Malaysia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"5/16/2013","Order ID":"405575168","Ship Date":"6/2/2013","Units Sold":"7560","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"358722.00","Total Cost":"240332.40","Total Profit":"118389.60"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/14/2013","Order ID":"167137944","Ship Date":"4/15/2013","Units Sold":"8687","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"709988.51","Total Cost":"492292.29","Total Profit":"217696.22"},{"Region":"Asia","Country":"Thailand","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/25/2012","Order ID":"391843116","Ship Date":"6/23/2012","Units Sold":"3940","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"810458.00","Total Cost":"461413.40","Total Profit":"349044.60"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"6/8/2012","Order ID":"106302011","Ship Date":"7/26/2012","Units Sold":"5982","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"912733.56","Total Cost":"582886.08","Total Profit":"329847.48"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/23/2012","Order ID":"207438457","Ship Date":"2/2/2012","Units Sold":"4504","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1900192.56","Total Cost":"1642563.76","Total Profit":"257628.80"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/30/2011","Order ID":"312488782","Ship Date":"2/8/2011","Units Sold":"1230","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"11475.90","Total Cost":"8511.60","Total Profit":"2964.30"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"3/1/2014","Order ID":"109001815","Ship Date":"3/20/2014","Units Sold":"4914","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"401621.22","Total Cost":"278476.38","Total Profit":"123144.84"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/21/2011","Order ID":"704838883","Ship Date":"12/21/2011","Units Sold":"6344","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4239504.88","Total Cost":"3188113.76","Total Profit":"1051391.12"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/31/2014","Order ID":"578173816","Ship Date":"11/22/2014","Units Sold":"3335","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2228680.45","Total Cost":"1675970.90","Total Profit":"552709.55"},{"Region":"Europe","Country":"Norway","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"12/4/2011","Order ID":"527492940","Ship Date":"1/10/2012","Units Sold":"5738","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"627048.64","Total Cost":"205649.92","Total Profit":"421398.72"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/1/2012","Order ID":"521595084","Ship Date":"2/5/2012","Units Sold":"431","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"65761.98","Total Cost":"41996.64","Total Profit":"23765.34"},{"Region":"Europe","Country":"Lithuania","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"2/26/2010","Order ID":"149591577","Ship Date":"3/16/2010","Units Sold":"6327","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"965373.66","Total Cost":"616502.88","Total Profit":"348870.78"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/28/2013","Order ID":"870906245","Ship Date":"6/6/2013","Units Sold":"9366","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1023516.48","Total Cost":"335677.44","Total Profit":"687839.04"},{"Region":"Asia","Country":"Thailand","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/6/2015","Order ID":"165275418","Ship Date":"1/30/2015","Units Sold":"7524","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"70198.92","Total Cost":"52066.08","Total Profit":"18132.84"},{"Region":"Asia","Country":"Tajikistan","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"1/9/2013","Order ID":"982747924","Ship Date":"2/23/2013","Units Sold":"5804","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1481645.12","Total Cost":"925273.68","Total Profit":"556371.44"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/8/2014","Order ID":"493685090","Ship Date":"2/27/2014","Units Sold":"1244","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"831327.88","Total Cost":"625159.76","Total Profit":"206168.12"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/22/2014","Order ID":"438760745","Ship Date":"9/21/2014","Units Sold":"7910","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"375329.50","Total Cost":"251458.90","Total Profit":"123870.60"},{"Region":"Europe","Country":"Belgium","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/28/2012","Order ID":"378961217","Ship Date":"2/25/2012","Units Sold":"1900","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"90155.00","Total Cost":"60401.00","Total Profit":"29754.00"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/10/2016","Order ID":"845585334","Ship Date":"5/28/2016","Units Sold":"6346","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4132578.66","Total Cost":"3331396.16","Total Profit":"801182.50"},{"Region":"Asia","Country":"Singapore","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"6/16/2015","Order ID":"190244424","Ship Date":"7/26/2015","Units Sold":"6408","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"987216.48","Total Cost":"582679.44","Total Profit":"404537.04"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"4/5/2010","Order ID":"434862315","Ship Date":"5/17/2010","Units Sold":"4278","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"39913.74","Total Cost":"29603.76","Total Profit":"10309.98"},{"Region":"Europe","Country":"Iceland","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"7/15/2017","Order ID":"521675336","Ship Date":"7/20/2017","Units Sold":"4180","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1827496.00","Total Cost":"1100719.40","Total Profit":"726776.60"},{"Region":"Europe","Country":"Russia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/20/2013","Order ID":"363232314","Ship Date":"8/9/2013","Units Sold":"7368","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1515597.60","Total Cost":"862866.48","Total Profit":"652731.12"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/29/2013","Order ID":"392394578","Ship Date":"8/7/2013","Units Sold":"7130","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1466641.00","Total Cost":"834994.30","Total Profit":"631646.70"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"9/11/2014","Order ID":"212335956","Ship Date":"9/13/2014","Units Sold":"3783","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1653927.60","Total Cost":"996177.39","Total Profit":"657750.21"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/18/2015","Order ID":"846542775","Ship Date":"8/3/2015","Units Sold":"9674","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2469578.72","Total Cost":"1542229.08","Total Profit":"927349.64"},{"Region":"Europe","Country":"Iceland","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/18/2011","Order ID":"688813865","Ship Date":"10/9/2011","Units Sold":"4184","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1765187.76","Total Cost":"1525862.96","Total Profit":"239324.80"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/31/2015","Order ID":"453260552","Ship Date":"2/24/2015","Units Sold":"8725","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3814570.00","Total Cost":"2297554.25","Total Profit":"1517015.75"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"2/3/2012","Order ID":"924306666","Ship Date":"2/23/2012","Units Sold":"1738","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"189928.64","Total Cost":"62289.92","Total Profit":"127638.72"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/18/2012","Order ID":"706688535","Ship Date":"1/2/2013","Units Sold":"3696","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"403898.88","Total Cost":"132464.64","Total Profit":"271434.24"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/21/2010","Order ID":"275454986","Ship Date":"1/28/2010","Units Sold":"2106","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1407376.62","Total Cost":"1058349.24","Total Profit":"349027.38"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"12/10/2011","Order ID":"625967347","Ship Date":"12/13/2011","Units Sold":"6503","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4345759.81","Total Cost":"3268017.62","Total Profit":"1077742.19"},{"Region":"Europe","Country":"Slovenia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/19/2016","Order ID":"123899447","Ship Date":"11/20/2016","Units Sold":"3455","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"532277.30","Total Cost":"314163.15","Total Profit":"218114.15"},{"Region":"Asia","Country":"Mongolia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/28/2016","Order ID":"355237615","Ship Date":"9/10/2016","Units Sold":"1559","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"127417.07","Total Cost":"88348.53","Total Profit":"39068.54"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/12/2015","Order ID":"276280677","Ship Date":"7/19/2015","Units Sold":"6447","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"983683.26","Total Cost":"628195.68","Total Profit":"355487.58"},{"Region":"Asia","Country":"China","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"12/6/2010","Order ID":"263639962","Ship Date":"1/9/2011","Units Sold":"5778","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"274166.10","Total Cost":"183682.62","Total Profit":"90483.48"},{"Region":"Europe","Country":"Ireland","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"3/22/2013","Order ID":"764239299","Ship Date":"3/28/2013","Units Sold":"4246","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1083918.88","Total Cost":"676897.32","Total Profit":"407021.56"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"10/7/2010","Order ID":"945315015","Ship Date":"10/24/2010","Units Sold":"8575","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1308373.50","Total Cost":"835548.00","Total Profit":"472825.50"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/7/2012","Order ID":"944415938","Ship Date":"1/25/2012","Units Sold":"2518","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"387923.08","Total Cost":"228961.74","Total Profit":"158961.34"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"5/6/2011","Order ID":"519403398","Ship Date":"5/30/2011","Units Sold":"1862","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"814066.40","Total Cost":"490320.46","Total Profit":"323745.94"},{"Region":"Europe","Country":"Serbia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/14/2015","Order ID":"398451220","Ship Date":"8/24/2015","Units Sold":"9425","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1938722.50","Total Cost":"1103761.75","Total Profit":"834960.75"},{"Region":"Europe","Country":"Ukraine","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/20/2017","Order ID":"930045735","Ship Date":"5/24/2017","Units Sold":"56","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"4576.88","Total Cost":"3173.52","Total Profit":"1403.36"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/19/2014","Order ID":"732985770","Ship Date":"3/26/2014","Units Sold":"5633","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"867819.98","Total Cost":"512208.69","Total Profit":"355611.29"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"6/19/2012","Order ID":"746382653","Ship Date":"7/21/2012","Units Sold":"68","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"28688.52","Total Cost":"24798.92","Total Profit":"3889.60"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"7/17/2015","Order ID":"179660212","Ship Date":"7/30/2015","Units Sold":"4304","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"470341.12","Total Cost":"154255.36","Total Profit":"316085.76"},{"Region":"North America","Country":"Greenland","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/1/2012","Order ID":"562554776","Ship Date":"11/22/2012","Units Sold":"1314","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"270289.80","Total Cost":"153882.54","Total Profit":"116407.26"},{"Region":"Europe","Country":"Iceland","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/30/2013","Order ID":"795115172","Ship Date":"10/14/2013","Units Sold":"1104","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"52384.80","Total Cost":"35096.16","Total Profit":"17288.64"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/4/2013","Order ID":"297702729","Ship Date":"8/19/2013","Units Sold":"5708","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"53255.64","Total Cost":"39499.36","Total Profit":"13756.28"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"7/13/2012","Order ID":"360991275","Ship Date":"8/14/2012","Units Sold":"4195","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1834054.00","Total Cost":"1104669.35","Total Profit":"729384.65"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/21/2011","Order ID":"995967137","Ship Date":"11/29/2011","Units Sold":"7663","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5120953.01","Total Cost":"3850964.02","Total Profit":"1269988.99"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/26/2017","Order ID":"483929145","Ship Date":"8/12/2017","Units Sold":"4243","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1790079.27","Total Cost":"1547379.67","Total Profit":"242699.60"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/3/2014","Order ID":"326488626","Ship Date":"2/2/2014","Units Sold":"4094","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"334602.62","Total Cost":"232006.98","Total Profit":"102595.64"},{"Region":"Asia","Country":"Mongolia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/16/2013","Order ID":"295569407","Ship Date":"5/19/2013","Units Sold":"4411","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2947738.97","Total Cost":"2216703.94","Total Profit":"731035.03"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/29/2013","Order ID":"683407819","Ship Date":"8/10/2013","Units Sold":"4415","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"680174.90","Total Cost":"401455.95","Total Profit":"278718.95"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/21/2017","Order ID":"952552688","Ship Date":"3/3/2017","Units Sold":"363","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"3386.79","Total Cost":"2511.96","Total Profit":"874.83"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/3/2013","Order ID":"185865342","Ship Date":"2/9/2013","Units Sold":"540","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"59011.20","Total Cost":"19353.60","Total Profit":"39657.60"},{"Region":"Asia","Country":"Malaysia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"5/7/2017","Order ID":"236519610","Ship Date":"6/13/2017","Units Sold":"264","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"171919.44","Total Cost":"138589.44","Total Profit":"33330.00"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/13/2017","Order ID":"778001821","Ship Date":"4/23/2017","Units Sold":"6882","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2903446.98","Total Cost":"2509796.58","Total Profit":"393650.40"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/4/2012","Order ID":"654110801","Ship Date":"1/19/2012","Units Sold":"4777","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"735944.62","Total Cost":"434372.61","Total Profit":"301572.01"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"6/14/2017","Order ID":"128957879","Ship Date":"7/26/2017","Units Sold":"357","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"91134.96","Total Cost":"56912.94","Total Profit":"34222.02"},{"Region":"Europe","Country":"Belgium","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/6/2016","Order ID":"436966884","Ship Date":"4/15/2016","Units Sold":"7066","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4721995.82","Total Cost":"3550947.64","Total Profit":"1171048.18"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"8/19/2014","Order ID":"632874143","Ship Date":"9/30/2014","Units Sold":"378","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"58234.68","Total Cost":"34371.54","Total Profit":"23863.14"},{"Region":"Europe","Country":"Georgia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"7/9/2016","Order ID":"741728484","Ship Date":"7/27/2016","Units Sold":"2796","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"713762.88","Total Cost":"445738.32","Total Profit":"268024.56"},{"Region":"Central America and the Caribbean","Country":"Saint Lucia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/27/2011","Order ID":"408891236","Ship Date":"6/29/2011","Units Sold":"8858","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5768418.18","Total Cost":"4650095.68","Total Profit":"1118322.50"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"9/23/2016","Order ID":"250036227","Ship Date":"10/12/2016","Units Sold":"131","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"10706.63","Total Cost":"7423.77","Total Profit":"3282.86"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/28/2012","Order ID":"501149785","Ship Date":"8/30/2012","Units Sold":"213","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"10106.85","Total Cost":"6771.27","Total Profit":"3335.58"},{"Region":"Europe","Country":"Norway","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/28/2014","Order ID":"568530738","Ship Date":"11/23/2014","Units Sold":"9734","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6338878.14","Total Cost":"5109960.64","Total Profit":"1228917.50"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/11/2017","Order ID":"378790414","Ship Date":"3/11/2017","Units Sold":"1356","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"208905.36","Total Cost":"123301.08","Total Profit":"85604.28"},{"Region":"Asia","Country":"Philippines","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/17/2010","Order ID":"828852641","Ship Date":"10/21/2010","Units Sold":"4770","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"734866.20","Total Cost":"433736.10","Total Profit":"301130.10"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/27/2010","Order ID":"635953748","Ship Date":"8/28/2010","Units Sold":"1701","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1136727.27","Total Cost":"854820.54","Total Profit":"281906.73"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/11/2013","Order ID":"387642562","Ship Date":"11/29/2013","Units Sold":"903","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"137779.74","Total Cost":"87988.32","Total Profit":"49791.42"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/1/2010","Order ID":"291780412","Ship Date":"12/27/2010","Units Sold":"3163","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"150084.35","Total Cost":"100551.77","Total Profit":"49532.58"},{"Region":"Europe","Country":"Serbia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/26/2012","Order ID":"626541125","Ship Date":"9/5/2012","Units Sold":"6297","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"58751.01","Total Cost":"43575.24","Total Profit":"15175.77"},{"Region":"Europe","Country":"Finland","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"3/24/2015","Order ID":"390411031","Ship Date":"4/30/2015","Units Sold":"155","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"16938.40","Total Cost":"5555.20","Total Profit":"11383.20"},{"Region":"Europe","Country":"Croatia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/3/2012","Order ID":"452188956","Ship Date":"10/16/2012","Units Sold":"1616","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"132075.68","Total Cost":"91578.72","Total Profit":"40496.96"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"11/23/2014","Order ID":"400986230","Ship Date":"11/25/2014","Units Sold":"9591","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4046346.99","Total Cost":"3497741.79","Total Profit":"548605.20"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/3/2014","Order ID":"796226680","Ship Date":"2/21/2014","Units Sold":"23","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"9703.47","Total Cost":"8387.87","Total Profit":"1315.60"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"10/10/2010","Order ID":"917646634","Ship Date":"11/4/2010","Units Sold":"886","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"136497.16","Total Cost":"80563.98","Total Profit":"55933.18"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"10/21/2010","Order ID":"115294921","Ship Date":"11/6/2010","Units Sold":"7184","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4800851.68","Total Cost":"3610247.36","Total Profit":"1190604.32"},{"Region":"Europe","Country":"Albania","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"3/12/2013","Order ID":"959532868","Ship Date":"3/30/2013","Units Sold":"5954","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2603088.80","Total Cost":"1567866.82","Total Profit":"1035221.98"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"4/30/2014","Order ID":"691034305","Ship Date":"5/15/2014","Units Sold":"1262","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"194423.72","Total Cost":"114753.66","Total Profit":"79670.06"},{"Region":"Asia","Country":"Maldives","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/26/2011","Order ID":"670785558","Ship Date":"8/31/2011","Units Sold":"9208","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"752569.84","Total Cost":"521817.36","Total Profit":"230752.48"},{"Region":"Europe","Country":"Netherlands","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"1/11/2015","Order ID":"530085456","Ship Date":"2/7/2015","Units Sold":"2921","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1232340.69","Total Cost":"1065259.49","Total Profit":"167081.20"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"9/5/2012","Order ID":"420545327","Ship Date":"10/3/2012","Units Sold":"7563","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3306543.60","Total Cost":"1991564.79","Total Profit":"1314978.81"},{"Region":"Europe","Country":"Monaco","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"10/25/2012","Order ID":"564089000","Ship Date":"12/11/2012","Units Sold":"5325","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"252671.25","Total Cost":"169281.75","Total Profit":"83389.50"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/21/2017","Order ID":"802952802","Ship Date":"3/29/2017","Units Sold":"432","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"65914.56","Total Cost":"42094.08","Total Profit":"23820.48"},{"Region":"Europe","Country":"Ireland","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"1/24/2017","Order ID":"149685561","Ship Date":"2/26/2017","Units Sold":"4139","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1809570.80","Total Cost":"1089922.87","Total Profit":"719647.93"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/22/2012","Order ID":"837148606","Ship Date":"10/3/2012","Units Sold":"9731","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1063403.68","Total Cost":"348759.04","Total Profit":"714644.64"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"5/2/2016","Order ID":"668515765","Ship Date":"5/5/2016","Units Sold":"7526","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3175144.14","Total Cost":"2744656.94","Total Profit":"430487.20"},{"Region":"Europe","Country":"Macedonia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/24/2011","Order ID":"667273366","Ship Date":"6/15/2011","Units Sold":"9872","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1520880.32","Total Cost":"897660.96","Total Profit":"623219.36"},{"Region":"Asia","Country":"Nepal","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"3/17/2016","Order ID":"127220237","Ship Date":"4/27/2016","Units Sold":"6150","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1569972.00","Total Cost":"980433.00","Total Profit":"589539.00"},{"Region":"Europe","Country":"Macedonia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/13/2012","Order ID":"662467706","Ship Date":"5/29/2012","Units Sold":"7770","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1598289.00","Total Cost":"909944.70","Total Profit":"688344.30"},{"Region":"Europe","Country":"Romania","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"8/7/2016","Order ID":"357439601","Ship Date":"9/17/2016","Units Sold":"3176","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"489294.56","Total Cost":"288793.68","Total Profit":"200500.88"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/31/2016","Order ID":"516872251","Ship Date":"6/24/2016","Units Sold":"2840","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1241648.00","Total Cost":"747857.20","Total Profit":"493790.80"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/28/2011","Order ID":"715814483","Ship Date":"10/8/2011","Units Sold":"4267","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"877721.90","Total Cost":"499708.37","Total Profit":"378013.53"},{"Region":"Asia","Country":"Nepal","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/23/2011","Order ID":"149627625","Ship Date":"3/4/2011","Units Sold":"6994","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4554562.74","Total Cost":"3671570.24","Total Profit":"882992.50"},{"Region":"Asia","Country":"Thailand","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/26/2012","Order ID":"783985507","Ship Date":"12/14/2012","Units Sold":"7588","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"620167.24","Total Cost":"430011.96","Total Profit":"190155.28"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/8/2016","Order ID":"604874455","Ship Date":"6/26/2016","Units Sold":"4648","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"379881.04","Total Cost":"263402.16","Total Profit":"116478.88"},{"Region":"Europe","Country":"Switzerland","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"7/13/2010","Order ID":"368593299","Ship Date":"8/30/2010","Units Sold":"3803","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"415591.84","Total Cost":"136299.52","Total Profit":"279292.32"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/6/2015","Order ID":"451753365","Ship Date":"12/5/2015","Units Sold":"2715","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"693085.20","Total Cost":"432825.30","Total Profit":"260259.90"},{"Region":"Asia","Country":"Mongolia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"2/9/2012","Order ID":"401278483","Ship Date":"3/24/2012","Units Sold":"6075","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2562981.75","Total Cost":"2215491.75","Total Profit":"347490.00"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/28/2010","Order ID":"284404981","Ship Date":"7/1/2010","Units Sold":"609","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"92921.22","Total Cost":"59340.96","Total Profit":"33580.26"},{"Region":"Asia","Country":"Cambodia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"11/13/2011","Order ID":"238681685","Ship Date":"11/25/2011","Units Sold":"70","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"30604.00","Total Cost":"18433.10","Total Profit":"12170.90"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"8/10/2010","Order ID":"921969926","Ship Date":"9/13/2010","Units Sold":"244","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"50190.80","Total Cost":"28574.84","Total Profit":"21615.96"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"7/3/2013","Order ID":"362443530","Ship Date":"7/26/2013","Units Sold":"3950","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"36853.50","Total Cost":"27334.00","Total Profit":"9519.50"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/8/2013","Order ID":"708588826","Ship Date":"5/25/2013","Units Sold":"6035","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2638502.00","Total Cost":"1589196.55","Total Profit":"1049305.45"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"1/15/2015","Order ID":"579204642","Ship Date":"1/25/2015","Units Sold":"8380","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"684897.40","Total Cost":"474894.60","Total Profit":"210002.80"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"6/10/2017","Order ID":"913402307","Ship Date":"7/11/2017","Units Sold":"4895","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"534925.60","Total Cost":"175436.80","Total Profit":"359488.80"},{"Region":"Europe","Country":"Vatican City","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"5/19/2016","Order ID":"920605647","Ship Date":"6/4/2016","Units Sold":"6524","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1341986.80","Total Cost":"764025.64","Total Profit":"577961.16"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/28/2016","Order ID":"330550992","Ship Date":"7/4/2016","Units Sold":"6239","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"951946.62","Total Cost":"607928.16","Total Profit":"344018.46"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/6/2011","Order ID":"743287169","Ship Date":"11/25/2011","Units Sold":"4046","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"37749.18","Total Cost":"27998.32","Total Profit":"9750.86"},{"Region":"Asia","Country":"Singapore","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/30/2012","Order ID":"679175508","Ship Date":"12/28/2012","Units Sold":"1980","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"305038.80","Total Cost":"180041.40","Total Profit":"124997.40"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"6/15/2012","Order ID":"528889834","Ship Date":"7/15/2012","Units Sold":"9110","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"84996.30","Total Cost":"63041.20","Total Profit":"21955.10"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/13/2011","Order ID":"303416478","Ship Date":"9/12/2011","Units Sold":"6533","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"309990.85","Total Cost":"207684.07","Total Profit":"102306.78"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"6/23/2016","Order ID":"984054267","Ship Date":"8/2/2016","Units Sold":"2380","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"22205.40","Total Cost":"16469.60","Total Profit":"5735.80"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/21/2011","Order ID":"472414529","Ship Date":"7/24/2011","Units Sold":"6812","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1738967.36","Total Cost":"1085969.04","Total Profit":"652998.32"},{"Region":"Asia","Country":"North Korea","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/1/2016","Order ID":"340421092","Ship Date":"3/24/2016","Units Sold":"7021","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"333146.45","Total Cost":"223197.59","Total Profit":"109948.86"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/2/2013","Order ID":"880310285","Ship Date":"6/7/2013","Units Sold":"2231","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1490910.37","Total Cost":"1121166.74","Total Profit":"369743.63"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/28/2013","Order ID":"654630935","Ship Date":"6/4/2013","Units Sold":"8696","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"412625.20","Total Cost":"276445.84","Total Profit":"136179.36"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"5/23/2012","Order ID":"546244370","Ship Date":"5/26/2012","Units Sold":"4703","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"223157.35","Total Cost":"149508.37","Total Profit":"73648.98"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"8/26/2011","Order ID":"608324420","Ship Date":"8/27/2011","Units Sold":"5569","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3626588.49","Total Cost":"2923502.24","Total Profit":"703086.25"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"4/13/2013","Order ID":"514357411","Ship Date":"4/24/2013","Units Sold":"8643","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5628408.03","Total Cost":"4537229.28","Total Profit":"1091178.75"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"9/27/2016","Order ID":"908142173","Ship Date":"11/16/2016","Units Sold":"8305","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5408299.05","Total Cost":"4359792.80","Total Profit":"1048506.25"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/21/2014","Order ID":"253790032","Ship Date":"2/7/2015","Units Sold":"965","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"407123.85","Total Cost":"351925.85","Total Profit":"55198.00"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"5/9/2013","Order ID":"685724818","Ship Date":"6/3/2013","Units Sold":"67","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"10222.86","Total Cost":"6528.48","Total Profit":"3694.38"},{"Region":"Asia","Country":"Indonesia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"9/30/2010","Order ID":"358682858","Ship Date":"10/13/2010","Units Sold":"1083","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"10104.39","Total Cost":"7494.36","Total Profit":"2610.03"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"11/13/2010","Order ID":"197712981","Ship Date":"12/18/2010","Units Sold":"6520","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1664425.60","Total Cost":"1039418.40","Total Profit":"625007.20"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/5/2010","Order ID":"748176515","Ship Date":"12/28/2010","Units Sold":"912","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"99663.36","Total Cost":"32686.08","Total Profit":"66977.28"},{"Region":"Europe","Country":"Finland","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/25/2012","Order ID":"825747287","Ship Date":"2/13/2013","Units Sold":"5827","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3794600.67","Total Cost":"3058941.92","Total Profit":"735658.75"},{"Region":"Asia","Country":"Japan","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/3/2012","Order ID":"666411626","Ship Date":"8/4/2012","Units Sold":"4864","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2052072.96","Total Cost":"1773852.16","Total Profit":"278220.80"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"2/22/2010","Order ID":"576468360","Ship Date":"2/23/2010","Units Sold":"8653","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"410584.85","Total Cost":"275078.87","Total Profit":"135505.98"},{"Region":"Asia","Country":"India","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/11/2014","Order ID":"482528817","Ship Date":"10/19/2014","Units Sold":"9855","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2515784.40","Total Cost":"1571084.10","Total Profit":"944700.30"},{"Region":"Europe","Country":"Denmark","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/30/2017","Order ID":"381516826","Ship Date":"7/4/2017","Units Sold":"8162","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5315176.02","Total Cost":"4284723.52","Total Profit":"1030452.50"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/13/2010","Order ID":"790668714","Ship Date":"8/14/2010","Units Sold":"5298","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"816209.88","Total Cost":"481747.14","Total Profit":"334462.74"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"11/11/2013","Order ID":"497533309","Ship Date":"11/18/2013","Units Sold":"17","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"2619.02","Total Cost":"1545.81","Total Profit":"1073.21"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"6/2/2010","Order ID":"609971940","Ship Date":"7/22/2010","Units Sold":"3107","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2023309.47","Total Cost":"1631050.72","Total Profit":"392258.75"},{"Region":"Europe","Country":"Andorra","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/10/2010","Order ID":"506158435","Ship Date":"11/17/2010","Units Sold":"2384","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"608587.52","Total Cost":"380057.28","Total Profit":"228530.24"},{"Region":"Europe","Country":"Belgium","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/7/2011","Order ID":"984579122","Ship Date":"6/21/2011","Units Sold":"7696","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"365175.20","Total Cost":"244655.84","Total Profit":"120519.36"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/26/2013","Order ID":"214032828","Ship Date":"10/5/2013","Units Sold":"5925","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3858419.25","Total Cost":"3110388.00","Total Profit":"748031.25"},{"Region":"Europe","Country":"Cyprus","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/13/2012","Order ID":"483630883","Ship Date":"7/29/2012","Units Sold":"5981","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"55802.73","Total Cost":"41388.52","Total Profit":"14414.21"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/1/2015","Order ID":"552797114","Ship Date":"2/17/2015","Units Sold":"3805","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2477854.05","Total Cost":"1997472.80","Total Profit":"480381.25"},{"Region":"Europe","Country":"Germany","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"8/1/2014","Order ID":"601267850","Ship Date":"8/5/2014","Units Sold":"7373","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"602595.29","Total Cost":"417827.91","Total Profit":"184767.38"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/17/2016","Order ID":"879091918","Ship Date":"9/1/2016","Units Sold":"1689","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"712572.21","Total Cost":"615961.41","Total Profit":"96610.80"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"10/3/2012","Order ID":"356630647","Ship Date":"11/17/2012","Units Sold":"3788","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"413952.64","Total Cost":"135761.92","Total Profit":"278190.72"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"6/28/2014","Order ID":"774557864","Ship Date":"7/26/2014","Units Sold":"7739","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1975611.92","Total Cost":"1233751.38","Total Profit":"741860.54"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"9/13/2011","Order ID":"793859899","Ship Date":"9/25/2011","Units Sold":"9640","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4067019.60","Total Cost":"3515611.60","Total Profit":"551408.00"},{"Region":"Asia","Country":"Philippines","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"4/4/2014","Order ID":"945835578","Ship Date":"5/8/2014","Units Sold":"2621","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"286422.88","Total Cost":"93936.64","Total Profit":"192486.24"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"5/18/2010","Order ID":"482096230","Ship Date":"7/2/2010","Units Sold":"1843","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"379105.10","Total Cost":"215833.73","Total Profit":"163271.37"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/5/2015","Order ID":"524565684","Ship Date":"12/5/2015","Units Sold":"9498","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1037941.44","Total Cost":"340408.32","Total Profit":"697533.12"},{"Region":"Europe","Country":"Iceland","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"3/21/2017","Order ID":"915480268","Ship Date":"5/4/2017","Units Sold":"9810","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1496809.80","Total Cost":"955886.40","Total Profit":"540923.40"},{"Region":"Europe","Country":"France","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/26/2013","Order ID":"667388808","Ship Date":"7/19/2013","Units Sold":"4034","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2626981.14","Total Cost":"2117688.64","Total Profit":"509292.50"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"4/5/2012","Order ID":"213152635","Ship Date":"4/27/2012","Units Sold":"5456","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2301831.84","Total Cost":"1989748.64","Total Profit":"312083.20"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/15/2010","Order ID":"955945575","Ship Date":"12/17/2010","Units Sold":"4394","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"903845.80","Total Cost":"514581.34","Total Profit":"389264.46"},{"Region":"Asia","Country":"Vietnam","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/16/2015","Order ID":"319253957","Ship Date":"4/22/2015","Units Sold":"3195","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"487493.10","Total Cost":"311320.80","Total Profit":"176172.30"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"8/8/2013","Order ID":"296876609","Ship Date":"9/17/2013","Units Sold":"1241","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"829323.07","Total Cost":"623652.14","Total Profit":"205670.93"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/14/2010","Order ID":"702924859","Ship Date":"3/22/2010","Units Sold":"9941","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4346205.20","Total Cost":"2617763.53","Total Profit":"1728441.67"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"1/4/2014","Order ID":"521822535","Ship Date":"2/14/2014","Units Sold":"7739","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1591912.30","Total Cost":"906314.29","Total Profit":"685598.01"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/7/2012","Order ID":"158305966","Ship Date":"10/17/2012","Units Sold":"5108","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"558202.24","Total Cost":"183070.72","Total Profit":"375131.52"},{"Region":"Asia","Country":"Singapore","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/24/2013","Order ID":"987423980","Ship Date":"1/5/2014","Units Sold":"9553","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1043951.84","Total Cost":"342379.52","Total Profit":"701572.32"},{"Region":"Europe","Country":"Austria","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"10/29/2010","Order ID":"404537904","Ship Date":"12/12/2010","Units Sold":"610","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"93976.60","Total Cost":"55467.30","Total Profit":"38509.30"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/20/2016","Order ID":"375321567","Ship Date":"1/2/2017","Units Sold":"4847","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1237342.16","Total Cost":"772708.74","Total Profit":"464633.42"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"7/8/2016","Order ID":"685761296","Ship Date":"7/19/2016","Units Sold":"862","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"94199.36","Total Cost":"30894.08","Total Profit":"63305.28"},{"Region":"Europe","Country":"Moldova ","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/31/2013","Order ID":"292155921","Ship Date":"10/7/2013","Units Sold":"4284","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"653652.72","Total Cost":"417432.96","Total Profit":"236219.76"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"8/30/2013","Order ID":"471116769","Ship Date":"9/1/2013","Units Sold":"2776","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"25900.08","Total Cost":"19209.92","Total Profit":"6690.16"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"6/21/2011","Order ID":"769567668","Ship Date":"6/29/2011","Units Sold":"1029","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"211665.30","Total Cost":"120506.19","Total Profit":"91159.11"},{"Region":"Europe","Country":"Germany","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"9/8/2010","Order ID":"354744946","Ship Date":"9/26/2010","Units Sold":"5768","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1186477.60","Total Cost":"675490.48","Total Profit":"510987.12"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"3/10/2012","Order ID":"264197432","Ship Date":"4/13/2012","Units Sold":"746","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"6960.18","Total Cost":"5162.32","Total Profit":"1797.86"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"5/7/2010","Order ID":"255786454","Ship Date":"5/28/2010","Units Sold":"1751","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"360180.70","Total Cost":"205059.61","Total Profit":"155121.09"},{"Region":"Asia","Country":"Maldives","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"12/13/2011","Order ID":"157685840","Ship Date":"1/16/2012","Units Sold":"1599","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"130686.27","Total Cost":"90615.33","Total Profit":"40070.94"},{"Region":"Europe","Country":"Malta","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"4/13/2017","Order ID":"318381917","Ship Date":"5/22/2017","Units Sold":"5139","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1311883.92","Total Cost":"819259.38","Total Profit":"492624.54"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"5/3/2016","Order ID":"256673514","Ship Date":"6/13/2016","Units Sold":"4252","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"874636.40","Total Cost":"497951.72","Total Profit":"376684.68"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"4/26/2015","Order ID":"911671960","Ship Date":"5/3/2015","Units Sold":"2847","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1244708.40","Total Cost":"749700.51","Total Profit":"495007.89"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/14/2010","Order ID":"592801082","Ship Date":"4/3/2010","Units Sold":"1868","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"152671.64","Total Cost":"105859.56","Total Profit":"46812.08"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"11/15/2012","Order ID":"829797208","Ship Date":"12/15/2012","Units Sold":"4289","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2866210.03","Total Cost":"2155394.06","Total Profit":"710815.97"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/2/2010","Order ID":"522709167","Ship Date":"4/15/2010","Units Sold":"113","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"75514.51","Total Cost":"56787.02","Total Profit":"18727.49"},{"Region":"Asia","Country":"Laos","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"9/17/2012","Order ID":"891898286","Ship Date":"10/6/2012","Units Sold":"1378","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"581364.42","Total Cost":"502542.82","Total Profit":"78821.60"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"11/7/2012","Order ID":"528038394","Ship Date":"11/13/2012","Units Sold":"7150","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3016513.50","Total Cost":"2607533.50","Total Profit":"408980.00"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"11/26/2011","Order ID":"342115819","Ship Date":"11/26/2011","Units Sold":"8528","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1313823.68","Total Cost":"775451.04","Total Profit":"538372.64"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/10/2015","Order ID":"415429389","Ship Date":"12/21/2015","Units Sold":"3643","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1592719.60","Total Cost":"959311.19","Total Profit":"633408.41"},{"Region":"Europe","Country":"Hungary","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/22/2016","Order ID":"449590432","Ship Date":"1/4/2017","Units Sold":"2655","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1120117.95","Total Cost":"968251.95","Total Profit":"151866.00"},{"Region":"Asia","Country":"Maldives","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/10/2011","Order ID":"216522777","Ship Date":"11/30/2011","Units Sold":"2756","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"424589.36","Total Cost":"250603.08","Total Profit":"173986.28"},{"Region":"Europe","Country":"Austria","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/26/2013","Order ID":"908462750","Ship Date":"9/2/2013","Units Sold":"3171","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"29585.43","Total Cost":"21943.32","Total Profit":"7642.11"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"7/20/2017","Order ID":"187959182","Ship Date":"8/30/2017","Units Sold":"154","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"16829.12","Total Cost":"5519.36","Total Profit":"11309.76"},{"Region":"Asia","Country":"India","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/31/2012","Order ID":"737873399","Ship Date":"5/18/2012","Units Sold":"1991","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"306733.46","Total Cost":"181041.63","Total Profit":"125691.83"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/31/2013","Order ID":"811379230","Ship Date":"2/14/2014","Units Sold":"4000","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1687560.00","Total Cost":"1458760.00","Total Profit":"228800.00"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/31/2017","Order ID":"981963002","Ship Date":"6/9/2017","Units Sold":"3529","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1488849.81","Total Cost":"1286991.01","Total Profit":"201858.80"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"5/15/2014","Order ID":"993423545","Ship Date":"5/26/2014","Units Sold":"4958","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"541810.24","Total Cost":"177694.72","Total Profit":"364115.52"},{"Region":"Europe","Country":"Norway","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/18/2012","Order ID":"209872186","Ship Date":"1/18/2013","Units Sold":"4698","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2053965.60","Total Cost":"1237124.34","Total Profit":"816841.26"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"12/31/2010","Order ID":"765732753","Ship Date":"2/7/2011","Units Sold":"6193","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1273900.10","Total Cost":"725262.23","Total Profit":"548637.87"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/27/2014","Order ID":"815741574","Ship Date":"12/11/2014","Units Sold":"4914","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2073167.46","Total Cost":"1792086.66","Total Profit":"281080.80"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/5/2013","Order ID":"384947478","Ship Date":"5/5/2013","Units Sold":"3368","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"31423.44","Total Cost":"23306.56","Total Profit":"8116.88"},{"Region":"Asia","Country":"Indonesia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"11/4/2010","Order ID":"918711793","Ship Date":"11/25/2010","Units Sold":"6090","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"56819.70","Total Cost":"42142.80","Total Profit":"14676.90"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/14/2017","Order ID":"332708346","Ship Date":"4/22/2017","Units Sold":"4648","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3026824.08","Total Cost":"2440014.08","Total Profit":"586810.00"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/29/2012","Order ID":"662923467","Ship Date":"1/27/2013","Units Sold":"2640","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"24631.20","Total Cost":"18268.80","Total Profit":"6362.40"},{"Region":"Europe","Country":"Armenia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"7/7/2013","Order ID":"415655982","Ship Date":"7/12/2013","Units Sold":"697","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"56965.81","Total Cost":"39498.99","Total Profit":"17466.82"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"9/30/2012","Order ID":"417517220","Ship Date":"10/25/2012","Units Sold":"1479","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"225665.82","Total Cost":"144113.76","Total Profit":"81552.06"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"1/3/2017","Order ID":"665431010","Ship Date":"1/17/2017","Units Sold":"4678","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"382332.94","Total Cost":"265102.26","Total Profit":"117230.68"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"12/18/2010","Order ID":"776633679","Ship Date":"12/29/2010","Units Sold":"2019","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"882706.80","Total Cost":"531663.27","Total Profit":"351043.53"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"6/3/2014","Order ID":"438674056","Ship Date":"7/17/2014","Units Sold":"2256","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"107047.20","Total Cost":"71718.24","Total Profit":"35328.96"},{"Region":"Europe","Country":"Finland","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"5/24/2010","Order ID":"759413468","Ship Date":"5/24/2010","Units Sold":"6176","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1270403.20","Total Cost":"723271.36","Total Profit":"547131.84"},{"Region":"Asia","Country":"Vietnam","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/10/2017","Order ID":"217025744","Ship Date":"1/22/2017","Units Sold":"1595","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"75682.75","Total Cost":"50705.05","Total Profit":"24977.70"},{"Region":"Europe","Country":"Croatia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"9/6/2015","Order ID":"509997212","Ship Date":"9/26/2015","Units Sold":"8363","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1288403.78","Total Cost":"760447.59","Total Profit":"527956.19"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/10/2015","Order ID":"707126700","Ship Date":"4/13/2015","Units Sold":"3359","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1417128.51","Total Cost":"1224993.71","Total Profit":"192134.80"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/23/2010","Order ID":"397525537","Ship Date":"8/29/2010","Units Sold":"5495","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"51268.35","Total Cost":"38025.40","Total Profit":"13242.95"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"8/20/2016","Order ID":"140617549","Ship Date":"8/31/2016","Units Sold":"712","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"58191.76","Total Cost":"40349.04","Total Profit":"17842.72"},{"Region":"Asia","Country":"Laos","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/16/2011","Order ID":"116139066","Ship Date":"4/28/2011","Units Sold":"6985","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1436814.50","Total Cost":"818013.35","Total Profit":"618801.15"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"5/10/2015","Order ID":"574138915","Ship Date":"6/22/2015","Units Sold":"9318","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"761560.14","Total Cost":"528051.06","Total Profit":"233509.08"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/15/2012","Order ID":"484978425","Ship Date":"12/4/2012","Units Sold":"4748","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"388054.04","Total Cost":"269069.16","Total Profit":"118984.88"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/14/2015","Order ID":"689331424","Ship Date":"3/4/2015","Units Sold":"7342","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"802333.76","Total Cost":"263137.28","Total Profit":"539196.48"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/22/2012","Order ID":"748184239","Ship Date":"5/7/2012","Units Sold":"3198","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1349204.22","Total Cost":"1166278.62","Total Profit":"182925.60"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/16/2013","Order ID":"292835700","Ship Date":"1/4/2014","Units Sold":"5446","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"50811.18","Total Cost":"37686.32","Total Profit":"13124.86"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/14/2016","Order ID":"374897134","Ship Date":"3/24/2016","Units Sold":"9248","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"86283.84","Total Cost":"63996.16","Total Profit":"22287.68"},{"Region":"Europe","Country":"Slovakia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/11/2011","Order ID":"316292369","Ship Date":"11/22/2011","Units Sold":"6796","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"742666.88","Total Cost":"243568.64","Total Profit":"499098.24"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/14/2010","Order ID":"859257733","Ship Date":"4/12/2010","Units Sold":"2313","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"109751.85","Total Cost":"73530.27","Total Profit":"36221.58"},{"Region":"Europe","Country":"Iceland","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"5/18/2010","Order ID":"116342055","Ship Date":"6/29/2010","Units Sold":"7054","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1076299.32","Total Cost":"687341.76","Total Profit":"388957.56"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"5/9/2012","Order ID":"320406663","Ship Date":"6/9/2012","Units Sold":"4307","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1817080.23","Total Cost":"1570719.83","Total Profit":"246360.40"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/17/2013","Order ID":"174625384","Ship Date":"7/26/2013","Units Sold":"4387","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"479411.36","Total Cost":"157230.08","Total Profit":"322181.28"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/31/2012","Order ID":"702484548","Ship Date":"2/19/2012","Units Sold":"9643","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4068285.27","Total Cost":"3516705.67","Total Profit":"551579.60"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"6/21/2011","Order ID":"297782981","Ship Date":"7/7/2011","Units Sold":"9456","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"772838.88","Total Cost":"535871.52","Total Profit":"236967.36"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/4/2015","Order ID":"574632012","Ship Date":"1/7/2016","Units Sold":"5237","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2209437.93","Total Cost":"1909881.53","Total Profit":"299556.40"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"11/22/2011","Order ID":"517455470","Ship Date":"12/9/2011","Units Sold":"5427","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1385404.56","Total Cost":"865172.34","Total Profit":"520232.22"},{"Region":"Asia","Country":"Philippines","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/1/2017","Order ID":"530989682","Ship Date":"3/26/2017","Units Sold":"502","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"211788.78","Total Cost":"183074.38","Total Profit":"28714.40"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"7/12/2016","Order ID":"190283477","Ship Date":"7/13/2016","Units Sold":"7964","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"650897.72","Total Cost":"451319.88","Total Profit":"199577.84"},{"Region":"North America","Country":"United States of America","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/24/2010","Order ID":"490698182","Ship Date":"12/29/2010","Units Sold":"7351","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3101313.39","Total Cost":"2680836.19","Total Profit":"420477.20"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/7/2013","Order ID":"697907626","Ship Date":"1/12/2014","Units Sold":"5230","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"427447.90","Total Cost":"296384.10","Total Profit":"131063.80"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"2/27/2017","Order ID":"597898137","Ship Date":"3/1/2017","Units Sold":"200","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"41140.00","Total Cost":"23422.00","Total Profit":"17718.00"},{"Region":"Europe","Country":"Lithuania","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/9/2017","Order ID":"946968543","Ship Date":"4/13/2017","Units Sold":"7890","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3449508.00","Total Cost":"2077673.70","Total Profit":"1371834.30"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/14/2011","Order ID":"321730172","Ship Date":"12/18/2011","Units Sold":"5962","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"651527.36","Total Cost":"213678.08","Total Profit":"437849.28"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/22/2011","Order ID":"969106853","Ship Date":"4/23/2011","Units Sold":"9108","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"432174.60","Total Cost":"289543.32","Total Profit":"142631.28"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/11/2011","Order ID":"256334912","Ship Date":"5/22/2011","Units Sold":"4052","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1709498.28","Total Cost":"1477723.88","Total Profit":"231774.40"},{"Region":"North America","Country":"United States of America","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"12/26/2012","Order ID":"120963180","Ship Date":"1/30/2013","Units Sold":"4548","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1918755.72","Total Cost":"1658610.12","Total Profit":"260145.60"},{"Region":"North America","Country":"United States of America","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"7/23/2010","Order ID":"320852982","Ship Date":"8/30/2010","Units Sold":"6382","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4156022.22","Total Cost":"3350294.72","Total Profit":"805727.50"},{"Region":"Europe","Country":"Romania","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/13/2010","Order ID":"684178149","Ship Date":"12/6/2010","Units Sold":"2373","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"488126.10","Total Cost":"277902.03","Total Profit":"210224.07"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"3/13/2014","Order ID":"659425008","Ship Date":"3/21/2014","Units Sold":"7369","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1881158.32","Total Cost":"1174765.98","Total Profit":"706392.34"},{"Region":"Asia","Country":"Singapore","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"7/15/2010","Order ID":"665392386","Ship Date":"9/2/2010","Units Sold":"3248","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"354941.44","Total Cost":"116408.32","Total Profit":"238533.12"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"8/30/2013","Order ID":"741191613","Ship Date":"9/11/2013","Units Sold":"3924","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"428814.72","Total Cost":"140636.16","Total Profit":"288178.56"},{"Region":"Europe","Country":"Ireland","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/29/2011","Order ID":"996246516","Ship Date":"12/5/2011","Units Sold":"338","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"52072.28","Total Cost":"30734.34","Total Profit":"21337.94"},{"Region":"Asia","Country":"Malaysia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/23/2017","Order ID":"260293424","Ship Date":"5/24/2017","Units Sold":"5463","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"596996.64","Total Cost":"195793.92","Total Profit":"401202.72"},{"Region":"Europe","Country":"Russia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/14/2016","Order ID":"133381164","Ship Date":"10/18/2016","Units Sold":"9305","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"86815.65","Total Cost":"64390.60","Total Profit":"22425.05"},{"Region":"Asia","Country":"Nepal","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/25/2012","Order ID":"935871064","Ship Date":"2/1/2013","Units Sold":"3900","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"185055.00","Total Cost":"123981.00","Total Profit":"61074.00"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"9/21/2013","Order ID":"358436954","Ship Date":"10/2/2013","Units Sold":"8315","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"394546.75","Total Cost":"264333.85","Total Profit":"130212.90"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"8/29/2012","Order ID":"212065160","Ship Date":"10/17/2012","Units Sold":"3648","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"931261.44","Total Cost":"581564.16","Total Profit":"349697.28"},{"Region":"Asia","Country":"Laos","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"11/18/2015","Order ID":"578054511","Ship Date":"11/28/2015","Units Sold":"8030","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"74919.90","Total Cost":"55567.60","Total Profit":"19352.30"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/21/2015","Order ID":"258016335","Ship Date":"6/11/2015","Units Sold":"1622","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"15133.26","Total Cost":"11224.24","Total Profit":"3909.02"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/7/2015","Order ID":"823874461","Ship Date":"9/22/2015","Units Sold":"1616","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"412532.48","Total Cost":"257622.72","Total Profit":"154909.76"},{"Region":"Europe","Country":"Lithuania","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/10/2014","Order ID":"767865216","Ship Date":"6/17/2014","Units Sold":"7236","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"343348.20","Total Cost":"230032.44","Total Profit":"113315.76"},{"Region":"Europe","Country":"Austria","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"9/5/2014","Order ID":"452537429","Ship Date":"9/28/2014","Units Sold":"4736","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"517550.08","Total Cost":"169738.24","Total Profit":"347811.84"},{"Region":"Europe","Country":"Monaco","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"7/30/2012","Order ID":"760752427","Ship Date":"8/19/2012","Units Sold":"2404","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"114069.80","Total Cost":"76423.16","Total Profit":"37646.64"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/27/2016","Order ID":"845684039","Ship Date":"11/11/2016","Units Sold":"5555","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"847581.90","Total Cost":"541279.20","Total Profit":"306302.70"},{"Region":"Europe","Country":"Portugal","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/12/2014","Order ID":"380818593","Ship Date":"7/19/2014","Units Sold":"1539","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"234820.62","Total Cost":"149960.16","Total Profit":"84860.46"},{"Region":"North America","Country":"United States of America","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/22/2012","Order ID":"909954917","Ship Date":"6/24/2012","Units Sold":"4736","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2070579.20","Total Cost":"1247130.88","Total Profit":"823448.32"},{"Region":"Europe","Country":"Belarus","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/7/2011","Order ID":"897204339","Ship Date":"7/21/2011","Units Sold":"1557","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"320274.90","Total Cost":"182340.27","Total Profit":"137934.63"},{"Region":"Europe","Country":"Austria","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/9/2016","Order ID":"676990687","Ship Date":"10/8/2016","Units Sold":"5443","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3637393.61","Total Cost":"2735325.22","Total Profit":"902068.39"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/20/2011","Order ID":"204050290","Ship Date":"2/1/2012","Units Sold":"1870","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"285324.60","Total Cost":"182212.80","Total Profit":"103111.80"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"2/17/2016","Order ID":"403431975","Ship Date":"2/20/2016","Units Sold":"3342","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2233358.34","Total Cost":"1679488.68","Total Profit":"553869.66"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"3/27/2011","Order ID":"920497071","Ship Date":"5/14/2011","Units Sold":"4394","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1121700.32","Total Cost":"700491.48","Total Profit":"421208.84"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"6/27/2014","Order ID":"570919406","Ship Date":"8/12/2014","Units Sold":"6594","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4406572.38","Total Cost":"3313748.76","Total Profit":"1092823.62"},{"Region":"Europe","Country":"Iceland","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/14/2013","Order ID":"490685307","Ship Date":"12/18/2013","Units Sold":"3541","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1548125.20","Total Cost":"932451.53","Total Profit":"615673.67"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"5/11/2017","Order ID":"986093604","Ship Date":"6/17/2017","Units Sold":"5865","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2474384.85","Total Cost":"2138906.85","Total Profit":"335478.00"},{"Region":"Europe","Country":"Moldova ","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"4/10/2011","Order ID":"183755624","Ship Date":"5/21/2011","Units Sold":"6227","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"295471.15","Total Cost":"197956.33","Total Profit":"97514.82"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/29/2017","Order ID":"780595195","Ship Date":"2/19/2017","Units Sold":"4320","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1102809.60","Total Cost":"688694.40","Total Profit":"414115.20"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"11/14/2011","Order ID":"593848645","Ship Date":"12/2/2011","Units Sold":"1866","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"815815.20","Total Cost":"491373.78","Total Profit":"324441.42"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/16/2015","Order ID":"211064803","Ship Date":"6/24/2015","Units Sold":"7620","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"832713.60","Total Cost":"273100.80","Total Profit":"559612.80"},{"Region":"Europe","Country":"Ukraine","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"11/4/2010","Order ID":"740104997","Ship Date":"12/5/2010","Units Sold":"2370","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"605013.60","Total Cost":"377825.40","Total Profit":"227188.20"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/7/2016","Order ID":"659143054","Ship Date":"3/22/2016","Units Sold":"3932","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1003760.96","Total Cost":"626839.44","Total Profit":"376921.52"},{"Region":"Europe","Country":"Latvia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/30/2012","Order ID":"766665303","Ship Date":"11/2/2012","Units Sold":"2155","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"102254.75","Total Cost":"68507.45","Total Profit":"33747.30"},{"Region":"Asia","Country":"South Korea","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/12/2017","Order ID":"131470572","Ship Date":"5/8/2017","Units Sold":"3919","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"597961.02","Total Cost":"381867.36","Total Profit":"216093.66"},{"Region":"Europe","Country":"Slovakia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"10/20/2016","Order ID":"142670190","Ship Date":"11/15/2016","Units Sold":"8134","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3431653.26","Total Cost":"2966388.46","Total Profit":"465264.80"},{"Region":"Europe","Country":"Switzerland","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"2/1/2011","Order ID":"459687983","Ship Date":"3/8/2011","Units Sold":"744","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"35302.80","Total Cost":"23651.76","Total Profit":"11651.04"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/15/2016","Order ID":"362260282","Ship Date":"3/3/2016","Units Sold":"9722","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1062420.16","Total Cost":"348436.48","Total Profit":"713983.68"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/21/2014","Order ID":"100435912","Ship Date":"9/8/2014","Units Sold":"73","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"11138.34","Total Cost":"7113.12","Total Profit":"4025.22"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/19/2013","Order ID":"444576203","Ship Date":"5/22/2013","Units Sold":"8833","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"721921.09","Total Cost":"500566.11","Total Profit":"221354.98"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/24/2016","Order ID":"435354983","Ship Date":"4/30/2016","Units Sold":"69","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"10528.02","Total Cost":"6723.36","Total Profit":"3804.66"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"3/20/2013","Order ID":"533758580","Ship Date":"3/28/2013","Units Sold":"9880","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1079686.40","Total Cost":"354099.20","Total Profit":"725587.20"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/18/2014","Order ID":"371085822","Ship Date":"3/23/2014","Units Sold":"1396","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"66240.20","Total Cost":"44378.84","Total Profit":"21861.36"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/7/2014","Order ID":"998948037","Ship Date":"10/18/2014","Units Sold":"9778","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"799155.94","Total Cost":"554119.26","Total Profit":"245036.68"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"10/2/2015","Order ID":"839269053","Ship Date":"11/2/2015","Units Sold":"7218","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1842611.04","Total Cost":"1150693.56","Total Profit":"691917.48"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/24/2011","Order ID":"634285199","Ship Date":"5/7/2011","Units Sold":"7941","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"74089.53","Total Cost":"54951.72","Total Profit":"19137.81"},{"Region":"Europe","Country":"Romania","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"4/25/2015","Order ID":"296545302","Ship Date":"6/2/2015","Units Sold":"3200","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1350048.00","Total Cost":"1167008.00","Total Profit":"183040.00"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/2/2012","Order ID":"258910691","Ship Date":"12/19/2012","Units Sold":"6282","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"513427.86","Total Cost":"356000.94","Total Profit":"157426.92"},{"Region":"Asia","Country":"Mongolia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/8/2016","Order ID":"124555194","Ship Date":"7/31/2016","Units Sold":"7505","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5015366.35","Total Cost":"3771562.70","Total Profit":"1243803.65"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"12/4/2016","Order ID":"916965138","Ship Date":"12/14/2016","Units Sold":"9216","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6001551.36","Total Cost":"4838031.36","Total Profit":"1163520.00"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"5/20/2017","Order ID":"129939353","Ship Date":"6/9/2017","Units Sold":"797","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"532611.19","Total Cost":"400524.38","Total Profit":"132086.81"},{"Region":"Europe","Country":"Hungary","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"8/18/2014","Order ID":"277589166","Ship Date":"8/27/2014","Units Sold":"3658","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"173572.10","Total Cost":"116287.82","Total Profit":"57284.28"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"3/31/2010","Order ID":"344338405","Ship Date":"4/23/2010","Units Sold":"6241","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1283773.70","Total Cost":"730883.51","Total Profit":"552890.19"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/18/2014","Order ID":"734923398","Ship Date":"7/5/2014","Units Sold":"9020","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5873914.20","Total Cost":"4735139.20","Total Profit":"1138775.00"},{"Region":"Europe","Country":"Slovenia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/22/2012","Order ID":"124392974","Ship Date":"3/1/2012","Units Sold":"9500","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"776435.00","Total Cost":"538365.00","Total Profit":"238070.00"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/10/2011","Order ID":"408108460","Ship Date":"9/25/2011","Units Sold":"7217","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"788673.76","Total Cost":"258657.28","Total Profit":"530016.48"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"5/17/2011","Order ID":"851743686","Ship Date":"6/23/2011","Units Sold":"8739","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5690924.19","Total Cost":"4587625.44","Total Profit":"1103298.75"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/13/2010","Order ID":"341284978","Ship Date":"10/5/2010","Units Sold":"2664","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"217728.72","Total Cost":"150968.88","Total Profit":"66759.84"},{"Region":"Europe","Country":"Norway","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/11/2013","Order ID":"533031165","Ship Date":"10/11/2013","Units Sold":"4622","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"377756.06","Total Cost":"261928.74","Total Profit":"115827.32"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/18/2010","Order ID":"903593575","Ship Date":"10/22/2010","Units Sold":"2274","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"350332.44","Total Cost":"206774.82","Total Profit":"143557.62"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/12/2011","Order ID":"999896037","Ship Date":"9/4/2011","Units Sold":"312","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"14804.40","Total Cost":"9918.48","Total Profit":"4885.92"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"7/2/2012","Order ID":"889174878","Ship Date":"8/3/2012","Units Sold":"5461","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1123327.70","Total Cost":"639537.71","Total Profit":"483789.99"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/4/2014","Order ID":"708978927","Ship Date":"4/17/2014","Units Sold":"1474","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"69941.30","Total Cost":"46858.46","Total Profit":"23082.84"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/30/2011","Order ID":"217169511","Ship Date":"4/30/2011","Units Sold":"4139","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"631528.62","Total Cost":"403304.16","Total Profit":"228224.46"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/4/2010","Order ID":"141920459","Ship Date":"5/14/2010","Units Sold":"6272","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"685404.16","Total Cost":"224788.48","Total Profit":"460615.68"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/1/2011","Order ID":"831718099","Ship Date":"8/7/2011","Units Sold":"2723","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1190495.60","Total Cost":"717047.59","Total Profit":"473448.01"},{"Region":"Europe","Country":"Andorra","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/13/2012","Order ID":"905361258","Ship Date":"11/17/2012","Units Sold":"5370","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3588609.90","Total Cost":"2698639.80","Total Profit":"889970.10"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"6/26/2012","Order ID":"401961266","Ship Date":"8/11/2012","Units Sold":"8126","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3428278.14","Total Cost":"2963470.94","Total Profit":"464807.20"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/3/2014","Order ID":"330941951","Ship Date":"4/17/2014","Units Sold":"1932","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"18025.56","Total Cost":"13369.44","Total Profit":"4656.12"},{"Region":"Europe","Country":"Iceland","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"10/22/2014","Order ID":"422039639","Ship Date":"10/23/2014","Units Sold":"9763","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2492298.64","Total Cost":"1556417.46","Total Profit":"935881.18"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"3/22/2016","Order ID":"475303161","Ship Date":"4/15/2016","Units Sold":"1622","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"333645.40","Total Cost":"189952.42","Total Profit":"143692.98"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/23/2013","Order ID":"811093842","Ship Date":"10/29/2013","Units Sold":"9547","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"780276.31","Total Cost":"541028.49","Total Profit":"239247.82"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"1/25/2015","Order ID":"920085513","Ship Date":"3/11/2015","Units Sold":"2605","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1099023.45","Total Cost":"950017.45","Total Profit":"149006.00"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/22/2013","Order ID":"813264501","Ship Date":"12/17/2013","Units Sold":"1893","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"288833.94","Total Cost":"184453.92","Total Profit":"104380.02"},{"Region":"Europe","Country":"Iceland","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/16/2016","Order ID":"571929633","Ship Date":"5/24/2016","Units Sold":"5543","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2338536.27","Total Cost":"2021476.67","Total Profit":"317059.60"},{"Region":"Europe","Country":"Greece","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/7/2014","Order ID":"797692239","Ship Date":"4/15/2014","Units Sold":"3715","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1624198.00","Total Cost":"978270.95","Total Profit":"645927.05"},{"Region":"Europe","Country":"Cyprus","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"3/27/2012","Order ID":"362476146","Ship Date":"5/15/2012","Units Sold":"3601","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"549440.58","Total Cost":"350881.44","Total Profit":"198559.14"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"9/14/2015","Order ID":"458517682","Ship Date":"10/20/2015","Units Sold":"4426","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"675319.08","Total Cost":"431269.44","Total Profit":"244049.64"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"4/12/2012","Order ID":"548365676","Ship Date":"5/16/2012","Units Sold":"2444","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"623904.32","Total Cost":"389622.48","Total Profit":"234281.84"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/19/2013","Order ID":"614881455","Ship Date":"6/9/2013","Units Sold":"5942","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3970860.34","Total Cost":"2986092.68","Total Profit":"984767.66"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"7/18/2012","Order ID":"711238849","Ship Date":"8/1/2012","Units Sold":"235","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"36204.10","Total Cost":"21368.55","Total Profit":"14835.55"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/14/2011","Order ID":"510924184","Ship Date":"1/24/2012","Units Sold":"2675","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"24957.75","Total Cost":"18511.00","Total Profit":"6446.75"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/19/2011","Order ID":"657736289","Ship Date":"2/9/2011","Units Sold":"7639","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1165558.62","Total Cost":"744344.16","Total Profit":"421214.46"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/16/2010","Order ID":"515786492","Ship Date":"6/19/2010","Units Sold":"1540","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"673288.00","Total Cost":"405528.20","Total Profit":"267759.80"},{"Region":"Asia","Country":"Malaysia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/13/2015","Order ID":"419498622","Ship Date":"6/1/2015","Units Sold":"7819","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1204595.14","Total Cost":"710981.67","Total Profit":"493613.47"},{"Region":"Asia","Country":"North Korea","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/28/2017","Order ID":"323609006","Ship Date":"3/19/2017","Units Sold":"1951","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"300571.06","Total Cost":"177404.43","Total Profit":"123166.63"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"11/24/2011","Order ID":"253166472","Ship Date":"11/29/2011","Units Sold":"6440","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"992146.40","Total Cost":"585589.20","Total Profit":"406557.20"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"2/5/2012","Order ID":"753532350","Ship Date":"2/6/2012","Units Sold":"5822","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"276253.90","Total Cost":"185081.38","Total Profit":"91172.52"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/29/2012","Order ID":"640380465","Ship Date":"3/10/2012","Units Sold":"1665","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"425041.20","Total Cost":"265434.30","Total Profit":"159606.90"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"3/22/2015","Order ID":"149697148","Ship Date":"4/8/2015","Units Sold":"7568","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1165926.08","Total Cost":"688158.24","Total Profit":"477767.84"},{"Region":"Europe","Country":"Hungary","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"2/6/2014","Order ID":"487781226","Ship Date":"3/24/2014","Units Sold":"4159","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1754640.51","Total Cost":"1516745.71","Total Profit":"237894.80"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/10/2010","Order ID":"681244027","Ship Date":"5/14/2010","Units Sold":"4101","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"843575.70","Total Cost":"480268.11","Total Profit":"363307.59"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"1/19/2010","Order ID":"727009379","Ship Date":"1/26/2010","Units Sold":"7086","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"579138.78","Total Cost":"401563.62","Total Profit":"177575.16"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"4/2/2013","Order ID":"242313611","Ship Date":"4/5/2013","Units Sold":"4837","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"745188.22","Total Cost":"439828.41","Total Profit":"305359.81"},{"Region":"Europe","Country":"Slovakia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/17/2016","Order ID":"714705550","Ship Date":"12/17/2016","Units Sold":"6109","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"667591.52","Total Cost":"218946.56","Total Profit":"448644.96"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"10/6/2011","Order ID":"552046525","Ship Date":"11/14/2011","Units Sold":"1689","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"431167.92","Total Cost":"269260.38","Total Profit":"161907.54"},{"Region":"Asia","Country":"North Korea","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/23/2015","Order ID":"932510364","Ship Date":"12/9/2015","Units Sold":"9394","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1447239.64","Total Cost":"854196.42","Total Profit":"593043.22"},{"Region":"North America","Country":"Greenland","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"6/15/2010","Order ID":"854583394","Ship Date":"6/30/2010","Units Sold":"9072","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6062545.44","Total Cost":"4559042.88","Total Profit":"1503502.56"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"3/10/2012","Order ID":"287064445","Ship Date":"4/6/2012","Units Sold":"7603","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"70935.99","Total Cost":"52612.76","Total Profit":"18323.23"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"11/11/2015","Order ID":"619064843","Ship Date":"12/4/2015","Units Sold":"3899","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"594909.42","Total Cost":"379918.56","Total Profit":"214990.86"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/1/2013","Order ID":"610008418","Ship Date":"9/6/2013","Units Sold":"3902","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2541021.42","Total Cost":"2048393.92","Total Profit":"492627.50"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"9/10/2013","Order ID":"439631497","Ship Date":"9/21/2013","Units Sold":"5585","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"456462.05","Total Cost":"316501.95","Total Profit":"139960.10"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"3/23/2014","Order ID":"357982909","Ship Date":"4/24/2014","Units Sold":"3953","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1728251.60","Total Cost":"1040943.49","Total Profit":"687308.11"},{"Region":"Europe","Country":"Hungary","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"4/12/2014","Order ID":"235423982","Ship Date":"5/27/2014","Units Sold":"6043","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"922040.94","Total Cost":"588829.92","Total Profit":"333211.02"},{"Region":"Europe","Country":"Finland","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"3/27/2010","Order ID":"912628543","Ship Date":"4/30/2010","Units Sold":"5921","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1511512.88","Total Cost":"943925.82","Total Profit":"567587.06"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/8/2014","Order ID":"150582921","Ship Date":"10/27/2014","Units Sold":"9687","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4235156.40","Total Cost":"2550877.71","Total Profit":"1684278.69"},{"Region":"Europe","Country":"Moldova ","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"10/13/2014","Order ID":"280585944","Ship Date":"11/7/2014","Units Sold":"471","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"71865.18","Total Cost":"45894.24","Total Profit":"25970.94"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"11/18/2013","Order ID":"554248940","Ship Date":"11/30/2013","Units Sold":"3433","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"706168.10","Total Cost":"402038.63","Total Profit":"304129.47"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/17/2012","Order ID":"293495738","Ship Date":"10/5/2012","Units Sold":"766","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"498826.86","Total Cost":"402119.36","Total Profit":"96707.50"},{"Region":"Europe","Country":"Estonia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"9/21/2012","Order ID":"240562665","Ship Date":"10/27/2012","Units Sold":"6693","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"731411.04","Total Cost":"239877.12","Total Profit":"491533.92"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/24/2013","Order ID":"307998549","Ship Date":"3/8/2013","Units Sold":"2470","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"380528.20","Total Cost":"224597.10","Total Profit":"155931.10"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/17/2013","Order ID":"928664720","Ship Date":"1/19/2014","Units Sold":"1382","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"352796.96","Total Cost":"220318.44","Total Profit":"132478.52"},{"Region":"Europe","Country":"Estonia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"6/23/2012","Order ID":"805735003","Ship Date":"7/30/2012","Units Sold":"3748","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"409581.44","Total Cost":"134328.32","Total Profit":"275253.12"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/1/2014","Order ID":"962695729","Ship Date":"9/30/2014","Units Sold":"1914","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"807497.46","Total Cost":"698016.66","Total Profit":"109480.80"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"3/13/2016","Order ID":"693345725","Ship Date":"3/16/2016","Units Sold":"5263","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"249729.35","Total Cost":"167310.77","Total Profit":"82418.58"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"10/21/2013","Order ID":"711796319","Ship Date":"11/4/2013","Units Sold":"5203","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"425241.19","Total Cost":"294854.01","Total Profit":"130387.18"},{"Region":"Europe","Country":"Greece","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"8/25/2016","Order ID":"902471339","Ship Date":"8/31/2016","Units Sold":"179","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"116566.59","Total Cost":"93967.84","Total Profit":"22598.75"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"3/26/2012","Order ID":"770107114","Ship Date":"5/3/2012","Units Sold":"663","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"54186.99","Total Cost":"37572.21","Total Profit":"16614.78"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"8/21/2015","Order ID":"789752471","Ship Date":"8/25/2015","Units Sold":"4161","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"634885.38","Total Cost":"405447.84","Total Profit":"229437.54"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"9/14/2012","Order ID":"156768739","Ship Date":"9/28/2012","Units Sold":"208","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"1940.64","Total Cost":"1439.36","Total Profit":"501.28"},{"Region":"Europe","Country":"Austria","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"11/9/2016","Order ID":"836829745","Ship Date":"11/25/2016","Units Sold":"5373","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3498951.33","Total Cost":"2820610.08","Total Profit":"678341.25"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"4/15/2012","Order ID":"815921819","Ship Date":"5/4/2012","Units Sold":"8253","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1271457.18","Total Cost":"750445.29","Total Profit":"521011.89"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/4/2010","Order ID":"850343787","Ship Date":"10/28/2010","Units Sold":"4478","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"41779.74","Total Cost":"30987.76","Total Profit":"10791.98"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"7/10/2017","Order ID":"416706979","Ship Date":"8/21/2017","Units Sold":"1710","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"747612.00","Total Cost":"450294.30","Total Profit":"297317.70"},{"Region":"Europe","Country":"Switzerland","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"5/24/2012","Order ID":"861935222","Ship Date":"6/16/2012","Units Sold":"4641","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"954653.70","Total Cost":"543507.51","Total Profit":"411146.19"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/13/2014","Order ID":"453264844","Ship Date":"3/17/2014","Units Sold":"9995","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"474262.75","Total Cost":"317741.05","Total Profit":"156521.70"},{"Region":"Europe","Country":"Denmark","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"12/31/2015","Order ID":"228244674","Ship Date":"1/20/2016","Units Sold":"1526","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"643804.14","Total Cost":"556516.94","Total Profit":"87287.20"},{"Region":"Asia","Country":"Brunei","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/27/2012","Order ID":"844736039","Ship Date":"5/30/2012","Units Sold":"5021","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2118309.69","Total Cost":"1831108.49","Total Profit":"287201.20"},{"Region":"Europe","Country":"Montenegro","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"2/14/2010","Order ID":"330912768","Ship Date":"3/21/2010","Units Sold":"3297","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2203286.19","Total Cost":"1656874.38","Total Profit":"546411.81"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/6/2017","Order ID":"835261189","Ship Date":"2/7/2017","Units Sold":"1202","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"507111.78","Total Cost":"438357.38","Total Profit":"68754.40"},{"Region":"Europe","Country":"Ukraine","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/3/2015","Order ID":"976580131","Ship Date":"8/22/2015","Units Sold":"617","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"412322.59","Total Cost":"310067.18","Total Profit":"102255.41"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"10/12/2011","Order ID":"793980920","Ship Date":"10/19/2011","Units Sold":"5453","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2300566.17","Total Cost":"1988654.57","Total Profit":"311911.60"},{"Region":"Europe","Country":"Serbia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"11/26/2016","Order ID":"396887385","Ship Date":"12/6/2016","Units Sold":"6652","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1024807.12","Total Cost":"604866.36","Total Profit":"419940.76"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/12/2012","Order ID":"415035855","Ship Date":"10/11/2012","Units Sold":"7187","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4680246.27","Total Cost":"3772887.52","Total Profit":"907358.75"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"2/18/2016","Order ID":"648475158","Ship Date":"3/11/2016","Units Sold":"7065","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1453270.50","Total Cost":"827382.15","Total Profit":"625888.35"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/12/2014","Order ID":"517566621","Ship Date":"12/23/2014","Units Sold":"8319","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1281625.14","Total Cost":"756446.67","Total Profit":"525178.47"},{"Region":"Asia","Country":"North Korea","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/18/2016","Order ID":"412984073","Ship Date":"11/23/2016","Units Sold":"19","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"2927.14","Total Cost":"1727.67","Total Profit":"1199.47"},{"Region":"Europe","Country":"Romania","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/7/2015","Order ID":"345713841","Ship Date":"9/6/2015","Units Sold":"3263","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"497868.54","Total Cost":"317946.72","Total Profit":"179921.82"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"3/5/2017","Order ID":"397054755","Ship Date":"4/18/2017","Units Sold":"6180","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"293241.00","Total Cost":"196462.20","Total Profit":"96778.80"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"8/14/2013","Order ID":"268618142","Ship Date":"9/6/2013","Units Sold":"8932","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1376063.92","Total Cost":"812186.76","Total Profit":"563877.16"},{"Region":"North America","Country":"Greenland","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"12/3/2016","Order ID":"632327830","Ship Date":"1/2/2017","Units Sold":"8712","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"952047.36","Total Cost":"312238.08","Total Profit":"639809.28"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/9/2017","Order ID":"880420148","Ship Date":"7/21/2017","Units Sold":"4742","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"225007.90","Total Cost":"150748.18","Total Profit":"74259.72"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"5/10/2010","Order ID":"475443923","Ship Date":"6/2/2010","Units Sold":"3277","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2134015.17","Total Cost":"1720293.92","Total Profit":"413721.25"},{"Region":"Europe","Country":"Monaco","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"8/29/2014","Order ID":"300260484","Ship Date":"8/29/2014","Units Sold":"2604","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"212824.92","Total Cost":"147568.68","Total Profit":"65256.24"},{"Region":"Europe","Country":"Germany","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"4/25/2016","Order ID":"408043658","Ship Date":"6/5/2016","Units Sold":"8041","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2052706.48","Total Cost":"1281896.22","Total Profit":"770810.26"},{"Region":"Europe","Country":"Armenia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/2/2017","Order ID":"472279775","Ship Date":"7/26/2017","Units Sold":"6935","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"329065.75","Total Cost":"220463.65","Total Profit":"108602.10"},{"Region":"Europe","Country":"Slovenia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"2/7/2010","Order ID":"236767661","Ship Date":"2/24/2010","Units Sold":"3667","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"400729.76","Total Cost":"131425.28","Total Profit":"269304.48"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/11/2017","Order ID":"865618646","Ship Date":"5/12/2017","Units Sold":"4648","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3026824.08","Total Cost":"2440014.08","Total Profit":"586810.00"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"5/7/2014","Order ID":"893256556","Ship Date":"6/23/2014","Units Sold":"3320","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"30975.60","Total Cost":"22974.40","Total Profit":"8001.20"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/31/2015","Order ID":"274417722","Ship Date":"3/6/2015","Units Sold":"5157","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1060794.90","Total Cost":"603936.27","Total Profit":"456858.63"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/16/2015","Order ID":"834150969","Ship Date":"10/21/2015","Units Sold":"2663","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"547779.10","Total Cost":"311863.93","Total Profit":"235915.17"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"6/7/2013","Order ID":"417817628","Ship Date":"7/11/2013","Units Sold":"376","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"95985.28","Total Cost":"59941.92","Total Profit":"36043.36"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"4/24/2010","Order ID":"541091525","Ship Date":"4/27/2010","Units Sold":"9861","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"805939.53","Total Cost":"558822.87","Total Profit":"247116.66"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"1/17/2017","Order ID":"539958989","Ship Date":"2/15/2017","Units Sold":"4719","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3153566.13","Total Cost":"2371486.26","Total Profit":"782079.87"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"4/27/2011","Order ID":"720718848","Ship Date":"5/31/2011","Units Sold":"5578","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"851091.24","Total Cost":"543520.32","Total Profit":"307570.92"},{"Region":"Asia","Country":"Maldives","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"4/26/2017","Order ID":"109982430","Ship Date":"5/2/2017","Units Sold":"5100","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2151639.00","Total Cost":"1859919.00","Total Profit":"291720.00"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/26/2011","Order ID":"504673564","Ship Date":"2/16/2011","Units Sold":"2977","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1938652.17","Total Cost":"1562805.92","Total Profit":"375846.25"},{"Region":"Asia","Country":"Bhutan","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"2/8/2015","Order ID":"622028577","Ship Date":"2/25/2015","Units Sold":"934","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"102067.52","Total Cost":"33474.56","Total Profit":"68592.96"},{"Region":"Europe","Country":"Montenegro","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"5/15/2011","Order ID":"149596297","Ship Date":"6/5/2011","Units Sold":"7724","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1971782.72","Total Cost":"1231360.08","Total Profit":"740422.64"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/27/2013","Order ID":"195238053","Ship Date":"3/24/2013","Units Sold":"4133","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"38560.89","Total Cost":"28600.36","Total Profit":"9960.53"},{"Region":"Asia","Country":"Philippines","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"11/29/2015","Order ID":"137127673","Ship Date":"12/4/2015","Units Sold":"7981","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1217740.98","Total Cost":"777668.64","Total Profit":"440072.34"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"2/15/2016","Order ID":"773751485","Ship Date":"2/20/2016","Units Sold":"9114","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6090612.78","Total Cost":"4580149.56","Total Profit":"1510463.22"},{"Region":"North America","Country":"Canada","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"2/23/2015","Order ID":"273908317","Ship Date":"2/28/2015","Units Sold":"4413","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"209396.85","Total Cost":"140289.27","Total Profit":"69107.58"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"5/23/2015","Order ID":"926709496","Ship Date":"7/11/2015","Units Sold":"2788","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1815573.48","Total Cost":"1463588.48","Total Profit":"351985.00"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/21/2016","Order ID":"591578853","Ship Date":"8/6/2016","Units Sold":"184","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"37848.80","Total Cost":"21548.24","Total Profit":"16300.56"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"10/27/2011","Order ID":"348252713","Ship Date":"10/30/2011","Units Sold":"4572","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"373669.56","Total Cost":"259095.24","Total Profit":"114574.32"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/15/2014","Order ID":"446779906","Ship Date":"6/28/2014","Units Sold":"958","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"146171.64","Total Cost":"93347.52","Total Profit":"52824.12"},{"Region":"Asia","Country":"North Korea","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"9/25/2015","Order ID":"757521760","Ship Date":"10/29/2015","Units Sold":"6377","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2788024.40","Total Cost":"1679255.41","Total Profit":"1108768.99"},{"Region":"Asia","Country":"China","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/15/2012","Order ID":"321152102","Ship Date":"4/24/2012","Units Sold":"4899","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3190277.79","Total Cost":"2571779.04","Total Profit":"618498.75"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/18/2016","Order ID":"498657262","Ship Date":"9/4/2016","Units Sold":"2620","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"286313.60","Total Cost":"93900.80","Total Profit":"192412.80"},{"Region":"Europe","Country":"Denmark","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/26/2015","Order ID":"921336066","Ship Date":"1/10/2016","Units Sold":"2671","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"407541.18","Total Cost":"260262.24","Total Profit":"147278.94"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/22/2013","Order ID":"840799844","Ship Date":"8/2/2013","Units Sold":"213","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"32499.54","Total Cost":"20754.72","Total Profit":"11744.82"},{"Region":"North America","Country":"Mexico","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"7/20/2017","Order ID":"478972423","Ship Date":"9/2/2017","Units Sold":"7439","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1899027.92","Total Cost":"1185925.38","Total Profit":"713102.54"},{"Region":"Asia","Country":"Taiwan","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"9/11/2014","Order ID":"578090131","Ship Date":"9/16/2014","Units Sold":"8571","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5581520.91","Total Cost":"4499432.16","Total Profit":"1082088.75"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/19/2011","Order ID":"150701797","Ship Date":"7/4/2011","Units Sold":"4865","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"45390.45","Total Cost":"33665.80","Total Profit":"11724.65"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"6/23/2015","Order ID":"529668748","Ship Date":"7/19/2015","Units Sold":"9608","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4053519.12","Total Cost":"3503941.52","Total Profit":"549577.60"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/25/2016","Order ID":"418164813","Ship Date":"7/23/2016","Units Sold":"3116","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"640961.20","Total Cost":"364914.76","Total Profit":"276046.44"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"11/18/2012","Order ID":"839676320","Ship Date":"12/14/2012","Units Sold":"7737","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"845499.36","Total Cost":"277294.08","Total Profit":"568205.28"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/27/2015","Order ID":"188002097","Ship Date":"7/11/2015","Units Sold":"2853","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"439533.18","Total Cost":"259423.29","Total Profit":"180109.89"},{"Region":"Europe","Country":"Croatia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/15/2013","Order ID":"977253472","Ship Date":"8/1/2013","Units Sold":"9874","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4165741.86","Total Cost":"3600949.06","Total Profit":"564792.80"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/14/2015","Order ID":"391854274","Ship Date":"1/1/2016","Units Sold":"7242","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1104984.36","Total Cost":"705660.48","Total Profit":"399323.88"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"6/24/2010","Order ID":"636540830","Ship Date":"7/31/2010","Units Sold":"5432","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"257748.40","Total Cost":"172683.28","Total Profit":"85065.12"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"2/11/2012","Order ID":"386361968","Ship Date":"3/30/2012","Units Sold":"1947","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"851228.40","Total Cost":"512703.51","Total Profit":"338524.89"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"4/11/2014","Order ID":"636679017","Ship Date":"4/22/2014","Units Sold":"6324","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"300073.80","Total Cost":"201039.96","Total Profit":"99033.84"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/30/2015","Order ID":"653165805","Ship Date":"4/22/2015","Units Sold":"5131","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"419356.63","Total Cost":"290773.77","Total Profit":"128582.86"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/8/2014","Order ID":"221808660","Ship Date":"6/22/2014","Units Sold":"6966","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"64992.78","Total Cost":"48204.72","Total Profit":"16788.06"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/14/2015","Order ID":"998906409","Ship Date":"11/9/2015","Units Sold":"7459","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1534316.30","Total Cost":"873523.49","Total Profit":"660792.81"},{"Region":"Europe","Country":"Lithuania","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"3/25/2017","Order ID":"661070382","Ship Date":"4/21/2017","Units Sold":"4271","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1867281.20","Total Cost":"1124682.43","Total Profit":"742598.77"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/25/2013","Order ID":"555224406","Ship Date":"8/25/2013","Units Sold":"2095","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"883859.55","Total Cost":"764025.55","Total Profit":"119834.00"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/17/2016","Order ID":"748604810","Ship Date":"3/26/2016","Units Sold":"7654","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"363182.30","Total Cost":"243320.66","Total Profit":"119861.64"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/23/2010","Order ID":"478760421","Ship Date":"8/27/2010","Units Sold":"4702","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"43869.66","Total Cost":"32537.84","Total Profit":"11331.82"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"1/13/2014","Order ID":"403552567","Ship Date":"1/16/2014","Units Sold":"9027","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1390699.62","Total Cost":"820825.11","Total Profit":"569874.51"},{"Region":"Asia","Country":"Cambodia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/17/2010","Order ID":"351155078","Ship Date":"6/25/2010","Units Sold":"3446","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"376578.88","Total Cost":"123504.64","Total Profit":"253074.24"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"5/8/2015","Order ID":"670054280","Ship Date":"6/13/2015","Units Sold":"2806","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"577194.20","Total Cost":"328610.66","Total Profit":"248583.54"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/14/2011","Order ID":"879049003","Ship Date":"3/29/2011","Units Sold":"8989","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"426528.05","Total Cost":"285760.31","Total Profit":"140767.74"},{"Region":"Europe","Country":"Macedonia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/20/2011","Order ID":"117250573","Ship Date":"9/5/2011","Units Sold":"5905","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"482615.65","Total Cost":"334636.35","Total Profit":"147979.30"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/15/2012","Order ID":"294082820","Ship Date":"7/18/2012","Units Sold":"4496","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"367458.08","Total Cost":"254788.32","Total Profit":"112669.76"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/23/2011","Order ID":"239282071","Ship Date":"2/27/2011","Units Sold":"7737","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1591500.90","Total Cost":"906080.07","Total Profit":"685420.83"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/6/2016","Order ID":"652897155","Ship Date":"8/23/2016","Units Sold":"5632","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"867665.92","Total Cost":"512117.76","Total Profit":"355548.16"},{"Region":"North America","Country":"Greenland","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/21/2016","Order ID":"955289399","Ship Date":"9/4/2016","Units Sold":"217","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"33431.02","Total Cost":"19731.81","Total Profit":"13699.21"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/8/2011","Order ID":"637132632","Ship Date":"9/22/2011","Units Sold":"559","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"5215.47","Total Cost":"3868.28","Total Profit":"1347.19"},{"Region":"Asia","Country":"Mongolia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"3/16/2010","Order ID":"609413182","Ship Date":"3/28/2010","Units Sold":"7758","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1980462.24","Total Cost":"1236780.36","Total Profit":"743681.88"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"12/18/2010","Order ID":"953429877","Ship Date":"1/14/2011","Units Sold":"9943","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"812641.39","Total Cost":"563469.81","Total Profit":"249171.58"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"6/12/2013","Order ID":"470794045","Ship Date":"6/27/2013","Units Sold":"7275","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"594585.75","Total Cost":"412274.25","Total Profit":"182311.50"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/6/2014","Order ID":"733429515","Ship Date":"8/15/2014","Units Sold":"6947","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1773430.16","Total Cost":"1107490.74","Total Profit":"665939.42"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/27/2012","Order ID":"233572614","Ship Date":"2/22/2012","Units Sold":"8182","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3577170.40","Total Cost":"2154566.06","Total Profit":"1422604.34"},{"Region":"Europe","Country":"France","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"6/23/2016","Order ID":"233772170","Ship Date":"8/2/2016","Units Sold":"7235","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1846950.80","Total Cost":"1153403.70","Total Profit":"693547.10"},{"Region":"Asia","Country":"India","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/29/2016","Order ID":"716889512","Ship Date":"6/5/2016","Units Sold":"2392","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1598501.84","Total Cost":"1202075.68","Total Profit":"396426.16"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/25/2012","Order ID":"836098468","Ship Date":"2/10/2013","Units Sold":"8971","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"425673.95","Total Cost":"285188.09","Total Profit":"140485.86"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/15/2015","Order ID":"264885365","Ship Date":"1/20/2016","Units Sold":"4321","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"472198.88","Total Cost":"154864.64","Total Profit":"317334.24"},{"Region":"Asia","Country":"South Korea","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"3/14/2017","Order ID":"547049033","Ship Date":"4/26/2017","Units Sold":"2820","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"308169.60","Total Cost":"101068.80","Total Profit":"207100.80"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"3/30/2017","Order ID":"146700799","Ship Date":"5/17/2017","Units Sold":"881","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"134422.98","Total Cost":"85844.64","Total Profit":"48578.34"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/20/2013","Order ID":"298264491","Ship Date":"12/12/2013","Units Sold":"1946","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"299800.76","Total Cost":"176949.78","Total Profit":"122850.98"},{"Region":"Europe","Country":"Iceland","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/25/2013","Order ID":"956476438","Ship Date":"9/10/2013","Units Sold":"1488","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"379856.64","Total Cost":"237216.96","Total Profit":"142639.68"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/3/2012","Order ID":"346385467","Ship Date":"7/16/2012","Units Sold":"2012","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"413868.40","Total Cost":"235625.32","Total Profit":"178243.08"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"3/30/2015","Order ID":"813352906","Ship Date":"5/14/2015","Units Sold":"8054","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"75143.82","Total Cost":"55733.68","Total Profit":"19410.14"},{"Region":"Asia","Country":"Singapore","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/4/2016","Order ID":"273052585","Ship Date":"7/29/2016","Units Sold":"1182","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"769730.22","Total Cost":"620502.72","Total Profit":"149227.50"},{"Region":"Europe","Country":"Finland","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/9/2011","Order ID":"761470830","Ship Date":"10/27/2011","Units Sold":"4995","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2183814.00","Total Cost":"1315333.35","Total Profit":"868480.65"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"7/31/2016","Order ID":"784906470","Ship Date":"9/19/2016","Units Sold":"122","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"1138.26","Total Cost":"844.24","Total Profit":"294.02"},{"Region":"Europe","Country":"Spain","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"4/6/2017","Order ID":"269970834","Ship Date":"4/11/2017","Units Sold":"9224","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1897376.80","Total Cost":"1080222.64","Total Profit":"817154.16"},{"Region":"Europe","Country":"Moldova ","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/24/2012","Order ID":"113587749","Ship Date":"8/5/2012","Units Sold":"1994","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1298512.74","Total Cost":"1046770.24","Total Profit":"251742.50"},{"Region":"Asia","Country":"Mongolia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"6/7/2017","Order ID":"832993543","Ship Date":"6/15/2017","Units Sold":"155","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"23879.30","Total Cost":"14094.15","Total Profit":"9785.15"},{"Region":"Europe","Country":"Poland","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/27/2013","Order ID":"315737044","Ship Date":"11/16/2013","Units Sold":"2463","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1603930.23","Total Cost":"1292976.48","Total Profit":"310953.75"},{"Region":"Europe","Country":"Lithuania","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"1/10/2015","Order ID":"569679582","Ship Date":"2/18/2015","Units Sold":"9703","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6484223.81","Total Cost":"4876145.62","Total Profit":"1608078.19"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"6/26/2016","Order ID":"972994983","Ship Date":"8/8/2016","Units Sold":"9692","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4088957.88","Total Cost":"3534575.48","Total Profit":"554382.40"},{"Region":"Asia","Country":"Brunei","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/11/2014","Order ID":"524169576","Ship Date":"10/5/2014","Units Sold":"2281","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"348034.98","Total Cost":"222260.64","Total Profit":"125774.34"},{"Region":"Europe","Country":"Greece","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/1/2011","Order ID":"992002189","Ship Date":"1/13/2011","Units Sold":"4347","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"475040.16","Total Cost":"155796.48","Total Profit":"319243.68"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"5/25/2015","Order ID":"165604150","Ship Date":"5/26/2015","Units Sold":"4803","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2099871.60","Total Cost":"1264773.99","Total Profit":"835097.61"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"6/4/2012","Order ID":"404399287","Ship Date":"6/27/2012","Units Sold":"9591","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"455092.95","Total Cost":"304897.89","Total Profit":"150195.06"},{"Region":"Europe","Country":"Vatican City","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"6/3/2010","Order ID":"988123929","Ship Date":"6/26/2010","Units Sold":"6684","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1019844.72","Total Cost":"651288.96","Total Profit":"368555.76"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"12/27/2014","Order ID":"366826903","Ship Date":"1/30/2015","Units Sold":"1087","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"88840.51","Total Cost":"61600.29","Total Profit":"27240.22"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"2/1/2010","Order ID":"210869538","Ship Date":"2/2/2010","Units Sold":"9837","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1074987.36","Total Cost":"352558.08","Total Profit":"722429.28"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"10/25/2014","Order ID":"460925662","Ship Date":"11/6/2014","Units Sold":"7001","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1787215.28","Total Cost":"1116099.42","Total Profit":"671115.86"},{"Region":"Asia","Country":"Japan","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/22/2011","Order ID":"677981603","Ship Date":"7/6/2011","Units Sold":"8677","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"709171.21","Total Cost":"491725.59","Total Profit":"217445.62"},{"Region":"Europe","Country":"Belarus","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"7/1/2017","Order ID":"493336188","Ship Date":"8/13/2017","Units Sold":"7996","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1644777.20","Total Cost":"936411.56","Total Profit":"708365.64"},{"Region":"Asia","Country":"Maldives","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"7/15/2013","Order ID":"958600747","Ship Date":"9/1/2013","Units Sold":"118","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"78855.86","Total Cost":"59299.72","Total Profit":"19556.14"},{"Region":"Europe","Country":"Georgia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/17/2015","Order ID":"495699107","Ship Date":"6/4/2015","Units Sold":"7236","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"790750.08","Total Cost":"259338.24","Total Profit":"531411.84"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/20/2017","Order ID":"746867597","Ship Date":"2/24/2017","Units Sold":"3574","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"33345.42","Total Cost":"24732.08","Total Profit":"8613.34"},{"Region":"Asia","Country":"Tajikistan","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"4/1/2010","Order ID":"724655044","Ship Date":"5/18/2010","Units Sold":"386","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"162849.54","Total Cost":"140770.34","Total Profit":"22079.20"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"6/18/2017","Order ID":"861922776","Ship Date":"8/4/2017","Units Sold":"958","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"8938.14","Total Cost":"6629.36","Total Profit":"2308.78"},{"Region":"Asia","Country":"China","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"5/22/2013","Order ID":"761844623","Ship Date":"7/8/2013","Units Sold":"5609","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2366381.01","Total Cost":"2045546.21","Total Profit":"320834.80"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/28/2011","Order ID":"547906911","Ship Date":"7/29/2011","Units Sold":"6685","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2922682.00","Total Cost":"1760361.05","Total Profit":"1162320.95"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/31/2015","Order ID":"413908469","Ship Date":"4/2/2015","Units Sold":"3569","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"911094.32","Total Cost":"568969.98","Total Profit":"342124.34"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"7/30/2013","Order ID":"173960626","Ship Date":"8/5/2013","Units Sold":"7670","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3235896.30","Total Cost":"2797172.30","Total Profit":"438724.00"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/23/2015","Order ID":"612487208","Ship Date":"10/1/2015","Units Sold":"7431","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3135064.59","Total Cost":"2710011.39","Total Profit":"425053.20"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/8/2016","Order ID":"334224545","Ship Date":"10/21/2016","Units Sold":"3325","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2165273.25","Total Cost":"1745492.00","Total Profit":"419781.25"},{"Region":"North America","Country":"United States of America","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"8/20/2016","Order ID":"714221465","Ship Date":"9/9/2016","Units Sold":"2858","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"312322.24","Total Cost":"102430.72","Total Profit":"209891.52"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/28/2016","Order ID":"947839295","Ship Date":"6/3/2016","Units Sold":"5565","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"849107.70","Total Cost":"542253.60","Total Profit":"306854.10"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"2/6/2014","Order ID":"300751864","Ship Date":"2/14/2014","Units Sold":"8015","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2046069.20","Total Cost":"1277751.30","Total Profit":"768317.90"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"11/18/2016","Order ID":"358945500","Ship Date":"1/6/2017","Units Sold":"8805","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1356498.30","Total Cost":"800638.65","Total Profit":"555859.65"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/17/2013","Order ID":"978719031","Ship Date":"9/22/2013","Units Sold":"3566","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1559055.20","Total Cost":"939034.78","Total Profit":"620020.42"},{"Region":"Europe","Country":"Georgia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/31/2017","Order ID":"736683785","Ship Date":"7/12/2017","Units Sold":"9958","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1534129.48","Total Cost":"905480.94","Total Profit":"628648.54"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"5/18/2015","Order ID":"979763591","Ship Date":"5/24/2015","Units Sold":"2674","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"550041.80","Total Cost":"313152.14","Total Profit":"236889.66"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"3/14/2011","Order ID":"875194776","Ship Date":"3/28/2011","Units Sold":"8438","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1735696.60","Total Cost":"988174.18","Total Profit":"747522.42"},{"Region":"Europe","Country":"Germany","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/1/2013","Order ID":"560526168","Ship Date":"5/18/2013","Units Sold":"1004","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"9367.32","Total Cost":"6947.68","Total Profit":"2419.64"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"2/20/2016","Order ID":"693619096","Ship Date":"3/23/2016","Units Sold":"6159","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"948855.54","Total Cost":"560037.87","Total Profit":"388817.67"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/9/2011","Order ID":"202647387","Ship Date":"4/18/2011","Units Sold":"6720","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1715481.60","Total Cost":"1071302.40","Total Profit":"644179.20"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/26/2014","Order ID":"336097371","Ship Date":"3/16/2014","Units Sold":"7536","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1149842.88","Total Cost":"734307.84","Total Profit":"415535.04"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"10/15/2014","Order ID":"612767875","Ship Date":"10/28/2014","Units Sold":"486","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"74873.16","Total Cost":"44191.98","Total Profit":"30681.18"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/16/2011","Order ID":"171770226","Ship Date":"10/30/2011","Units Sold":"9482","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2420564.96","Total Cost":"1511620.44","Total Profit":"908944.52"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"3/20/2016","Order ID":"922528254","Ship Date":"4/14/2016","Units Sold":"5466","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1124356.20","Total Cost":"640123.26","Total Profit":"484232.94"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"6/21/2017","Order ID":"794778287","Ship Date":"7/9/2017","Units Sold":"1412","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"66999.40","Total Cost":"44887.48","Total Profit":"22111.92"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"5/15/2017","Order ID":"488569152","Ship Date":"5/16/2017","Units Sold":"7324","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4894409.48","Total Cost":"3680602.96","Total Profit":"1213806.52"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"3/25/2011","Order ID":"324262177","Ship Date":"5/11/2011","Units Sold":"5239","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2210281.71","Total Cost":"1910610.91","Total Profit":"299670.80"},{"Region":"North America","Country":"Greenland","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"5/13/2014","Order ID":"692531192","Ship Date":"5/25/2014","Units Sold":"4224","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2750711.04","Total Cost":"2217431.04","Total Profit":"533280.00"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"11/9/2012","Order ID":"704362523","Ship Date":"12/2/2012","Units Sold":"5378","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3502207.38","Total Cost":"2823234.88","Total Profit":"678972.50"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/17/2012","Order ID":"441054999","Ship Date":"11/26/2012","Units Sold":"6830","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4447764.30","Total Cost":"3585476.80","Total Profit":"862287.50"},{"Region":"Europe","Country":"Cyprus","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/30/2013","Order ID":"504219949","Ship Date":"11/6/2013","Units Sold":"8743","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1798435.10","Total Cost":"1023892.73","Total Profit":"774542.37"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/27/2012","Order ID":"665781199","Ship Date":"8/24/2012","Units Sold":"8307","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1279776.42","Total Cost":"755355.51","Total Profit":"524420.91"},{"Region":"Europe","Country":"Vatican City","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"10/3/2014","Order ID":"317975080","Ship Date":"11/11/2014","Units Sold":"4747","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3172277.69","Total Cost":"2385557.38","Total Profit":"786720.31"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"7/1/2015","Order ID":"723350417","Ship Date":"8/5/2015","Units Sold":"4318","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"471871.04","Total Cost":"154757.12","Total Profit":"317113.92"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/22/2011","Order ID":"964768540","Ship Date":"3/6/2011","Units Sold":"5305","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1354260.40","Total Cost":"845723.10","Total Profit":"508537.30"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"2/16/2010","Order ID":"195403277","Ship Date":"3/18/2010","Units Sold":"3027","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"772732.56","Total Cost":"482564.34","Total Profit":"290168.22"},{"Region":"Europe","Country":"France","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/17/2014","Order ID":"788740956","Ship Date":"12/12/2014","Units Sold":"4831","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"737113.98","Total Cost":"470732.64","Total Profit":"266381.34"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"3/13/2017","Order ID":"688580405","Ship Date":"4/28/2017","Units Sold":"5099","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1301672.72","Total Cost":"812882.58","Total Profit":"488790.14"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/12/2010","Order ID":"159032952","Ship Date":"2/3/2010","Units Sold":"240","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"101253.60","Total Cost":"87525.60","Total Profit":"13728.00"},{"Region":"Sub-Saharan Africa","Country":"Mali","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/24/2013","Order ID":"434522426","Ship Date":"12/20/2013","Units Sold":"3697","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"302155.81","Total Cost":"209508.99","Total Profit":"92646.82"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"7/9/2012","Order ID":"569785153","Ship Date":"8/16/2012","Units Sold":"944","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"412716.80","Total Cost":"248583.52","Total Profit":"164133.28"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"3/8/2017","Order ID":"589869964","Ship Date":"4/6/2017","Units Sold":"4485","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"41845.05","Total Cost":"31036.20","Total Profit":"10808.85"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/10/2017","Order ID":"140138185","Ship Date":"8/13/2017","Units Sold":"8858","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5919535.66","Total Cost":"4451499.32","Total Profit":"1468036.34"},{"Region":"Central America and the Caribbean","Country":"Saint Lucia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/8/2015","Order ID":"736263644","Ship Date":"9/1/2015","Units Sold":"5629","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"867203.74","Total Cost":"511844.97","Total Profit":"355358.77"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/17/2014","Order ID":"814232671","Ship Date":"8/22/2014","Units Sold":"8396","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1281061.68","Total Cost":"818106.24","Total Profit":"462955.44"},{"Region":"Europe","Country":"Portugal","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"9/29/2014","Order ID":"680344092","Ship Date":"11/12/2014","Units Sold":"7791","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1188750.78","Total Cost":"759155.04","Total Profit":"429595.74"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"2/9/2010","Order ID":"261209237","Ship Date":"3/15/2010","Units Sold":"6473","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"307143.85","Total Cost":"205776.67","Total Profit":"101367.18"},{"Region":"Asia","Country":"Indonesia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"7/11/2014","Order ID":"453751933","Ship Date":"8/12/2014","Units Sold":"4135","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"337953.55","Total Cost":"234330.45","Total Profit":"103623.10"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"8/28/2012","Order ID":"875208508","Ship Date":"9/25/2012","Units Sold":"2502","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"514661.40","Total Cost":"293009.22","Total Profit":"221652.18"},{"Region":"North America","Country":"Canada","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"9/29/2016","Order ID":"313127791","Ship Date":"11/16/2016","Units Sold":"327","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"15516.15","Total Cost":"10395.33","Total Profit":"5120.82"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"5/15/2017","Order ID":"775371110","Ship Date":"6/15/2017","Units Sold":"8397","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"78344.01","Total Cost":"58107.24","Total Profit":"20236.77"},{"Region":"Europe","Country":"Ireland","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"7/14/2017","Order ID":"740112292","Ship Date":"7/22/2017","Units Sold":"4529","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"697737.74","Total Cost":"411821.97","Total Profit":"285915.77"},{"Region":"Europe","Country":"Finland","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/26/2013","Order ID":"105837666","Ship Date":"10/16/2013","Units Sold":"8572","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3747678.40","Total Cost":"2257264.76","Total Profit":"1490413.64"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/26/2014","Order ID":"641346061","Ship Date":"1/13/2015","Units Sold":"7406","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"809327.68","Total Cost":"265431.04","Total Profit":"543896.64"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"11/16/2015","Order ID":"135748803","Ship Date":"12/19/2015","Units Sold":"9942","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"2045069.40","Total Cost":"1164307.62","Total Profit":"880761.78"},{"Region":"Asia","Country":"Myanmar","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/5/2016","Order ID":"948469722","Ship Date":"5/14/2016","Units Sold":"2123","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"541959.44","Total Cost":"338448.66","Total Profit":"203510.78"},{"Region":"North America","Country":"United States of America","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"1/24/2017","Order ID":"559245145","Ship Date":"2/14/2017","Units Sold":"1921","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"17922.93","Total Cost":"13293.32","Total Profit":"4629.61"},{"Region":"Asia","Country":"North Korea","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"1/30/2016","Order ID":"118123900","Ship Date":"1/31/2016","Units Sold":"4342","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"354871.66","Total Cost":"246061.14","Total Profit":"108810.52"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/27/2012","Order ID":"395467317","Ship Date":"8/14/2012","Units Sold":"6422","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2709377.58","Total Cost":"2342039.18","Total Profit":"367338.40"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/30/2010","Order ID":"431949222","Ship Date":"5/13/2010","Units Sold":"2228","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"243475.84","Total Cost":"79851.52","Total Profit":"163624.32"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/12/2014","Order ID":"688555943","Ship Date":"6/20/2014","Units Sold":"7860","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"642397.80","Total Cost":"445426.20","Total Profit":"196971.60"},{"Region":"Europe","Country":"Cyprus","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/29/2011","Order ID":"796586310","Ship Date":"1/16/2012","Units Sold":"6446","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2719502.94","Total Cost":"2350791.74","Total Profit":"368711.20"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/27/2014","Order ID":"907651650","Ship Date":"3/1/2014","Units Sold":"3148","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"344013.44","Total Cost":"112824.32","Total Profit":"231189.12"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/2/2013","Order ID":"343675792","Ship Date":"9/22/2013","Units Sold":"159","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"17375.52","Total Cost":"5698.56","Total Profit":"11676.96"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"6/26/2012","Order ID":"746895062","Ship Date":"7/27/2012","Units Sold":"1701","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"262056.06","Total Cost":"154671.93","Total Profit":"107384.13"},{"Region":"Europe","Country":"Romania","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"1/29/2017","Order ID":"229858291","Ship Date":"2/3/2017","Units Sold":"9031","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1377949.98","Total Cost":"879980.64","Total Profit":"497969.34"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"5/7/2012","Order ID":"125426805","Ship Date":"6/22/2012","Units Sold":"5434","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1117773.80","Total Cost":"636375.74","Total Profit":"481398.06"},{"Region":"Europe","Country":"Romania","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"10/8/2010","Order ID":"936774432","Ship Date":"11/22/2010","Units Sold":"1227","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"536444.40","Total Cost":"323105.91","Total Profit":"213338.49"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/25/2010","Order ID":"987387502","Ship Date":"9/29/2010","Units Sold":"8759","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"957183.52","Total Cost":"313922.56","Total Profit":"643260.96"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"6/25/2015","Order ID":"471064841","Ship Date":"7/15/2015","Units Sold":"7409","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"809655.52","Total Cost":"265538.56","Total Profit":"544116.96"},{"Region":"Europe","Country":"Switzerland","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/5/2014","Order ID":"101917779","Ship Date":"4/20/2014","Units Sold":"8590","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"938715.20","Total Cost":"307865.60","Total Profit":"630849.60"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/23/2015","Order ID":"664370143","Ship Date":"1/18/2016","Units Sold":"744","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"484500.24","Total Cost":"390570.24","Total Profit":"93930.00"},{"Region":"Europe","Country":"Lithuania","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"12/18/2015","Order ID":"763158261","Ship Date":"1/6/2016","Units Sold":"4343","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1898759.60","Total Cost":"1143642.19","Total Profit":"755117.41"},{"Region":"Asia","Country":"China","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/22/2014","Order ID":"873330962","Ship Date":"2/11/2014","Units Sold":"6894","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"563446.62","Total Cost":"390682.98","Total Profit":"172763.64"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"4/9/2011","Order ID":"190249574","Ship Date":"5/18/2011","Units Sold":"7931","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"376325.95","Total Cost":"252126.49","Total Profit":"124199.46"},{"Region":"Europe","Country":"Croatia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/7/2013","Order ID":"679587924","Ship Date":"6/29/2013","Units Sold":"4024","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1697685.36","Total Cost":"1467512.56","Total Profit":"230172.80"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"4/26/2012","Order ID":"327332341","Ship Date":"5/27/2012","Units Sold":"3769","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"308040.37","Total Cost":"213589.23","Total Profit":"94451.14"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"2/10/2012","Order ID":"789781653","Ship Date":"2/23/2012","Units Sold":"2797","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"430905.82","Total Cost":"254331.21","Total Profit":"176574.61"},{"Region":"Europe","Country":"Greece","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/30/2010","Order ID":"643547189","Ship Date":"8/3/2010","Units Sold":"8769","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"958276.32","Total Cost":"314280.96","Total Profit":"643995.36"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/2/2010","Order ID":"335552775","Ship Date":"2/12/2010","Units Sold":"6378","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"973155.24","Total Cost":"621472.32","Total Profit":"351682.92"},{"Region":"Europe","Country":"Montenegro","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"3/28/2014","Order ID":"833034741","Ship Date":"5/15/2014","Units Sold":"2347","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1528389.87","Total Cost":"1232081.12","Total Profit":"296308.75"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"6/29/2016","Order ID":"473541915","Ship Date":"7/7/2016","Units Sold":"431","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"280671.51","Total Cost":"226257.76","Total Profit":"54413.75"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/22/2011","Order ID":"814935624","Ship Date":"4/1/2011","Units Sold":"6416","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2706846.24","Total Cost":"2339851.04","Total Profit":"366995.20"},{"Region":"Europe","Country":"Greece","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/21/2012","Order ID":"785389697","Ship Date":"8/29/2012","Units Sold":"3119","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1315874.91","Total Cost":"1137468.11","Total Profit":"178406.80"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/8/2013","Order ID":"733390462","Ship Date":"7/7/2013","Units Sold":"5390","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"589019.20","Total Cost":"193177.60","Total Profit":"395841.60"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/9/2011","Order ID":"177736747","Ship Date":"5/21/2011","Units Sold":"5108","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1303970.24","Total Cost":"814317.36","Total Profit":"489652.88"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/3/2012","Order ID":"957539880","Ship Date":"7/12/2012","Units Sold":"6184","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2608967.76","Total Cost":"2255242.96","Total Profit":"353724.80"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"10/18/2012","Order ID":"482223689","Ship Date":"11/12/2012","Units Sold":"9561","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1044826.08","Total Cost":"342666.24","Total Profit":"702159.84"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"10/11/2016","Order ID":"281524503","Ship Date":"11/11/2016","Units Sold":"8211","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"389611.95","Total Cost":"261027.69","Total Profit":"128584.26"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/15/2011","Order ID":"155491149","Ship Date":"3/21/2011","Units Sold":"2141","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"19975.53","Total Cost":"14815.72","Total Profit":"5159.81"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/13/2013","Order ID":"424484956","Ship Date":"11/19/2013","Units Sold":"3386","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"516635.88","Total Cost":"329931.84","Total Profit":"186704.04"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"1/10/2010","Order ID":"579179751","Ship Date":"1/17/2010","Units Sold":"1014","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"154716.12","Total Cost":"98804.16","Total Profit":"55911.96"},{"Region":"Europe","Country":"Switzerland","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"12/26/2015","Order ID":"630561864","Ship Date":"1/6/2016","Units Sold":"6123","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1563079.44","Total Cost":"976128.66","Total Profit":"586950.78"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/5/2015","Order ID":"659930121","Ship Date":"3/7/2015","Units Sold":"6843","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4456230.03","Total Cost":"3592301.28","Total Profit":"863928.75"},{"Region":"Asia","Country":"Philippines","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/9/2014","Order ID":"368895852","Ship Date":"8/14/2014","Units Sold":"3335","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"364448.80","Total Cost":"119526.40","Total Profit":"244922.40"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/7/2011","Order ID":"429382884","Ship Date":"3/23/2011","Units Sold":"2792","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"132480.40","Total Cost":"88757.68","Total Profit":"43722.72"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"5/3/2010","Order ID":"233627545","Ship Date":"6/2/2010","Units Sold":"4437","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"683564.22","Total Cost":"403456.41","Total Profit":"280107.81"},{"Region":"Asia","Country":"Indonesia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"12/28/2014","Order ID":"144178664","Ship Date":"1/4/2015","Units Sold":"4526","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"494601.28","Total Cost":"162211.84","Total Profit":"332389.44"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"10/3/2013","Order ID":"143897569","Ship Date":"10/9/2013","Units Sold":"1343","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"566598.27","Total Cost":"489778.67","Total Profit":"76819.60"},{"Region":"Asia","Country":"Mongolia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/26/2015","Order ID":"285958087","Ship Date":"6/6/2015","Units Sold":"207","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"1931.31","Total Cost":"1432.44","Total Profit":"498.87"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"4/11/2014","Order ID":"243846547","Ship Date":"5/23/2014","Units Sold":"8467","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1741661.90","Total Cost":"991570.37","Total Profit":"750091.53"},{"Region":"Europe","Country":"Iceland","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"2/4/2010","Order ID":"661361777","Ship Date":"3/2/2010","Units Sold":"502","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"326907.42","Total Cost":"263529.92","Total Profit":"63377.50"},{"Region":"Europe","Country":"Russia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"11/12/2010","Order ID":"902615106","Ship Date":"12/7/2010","Units Sold":"2723","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"419505.38","Total Cost":"247602.39","Total Profit":"171902.99"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/21/2014","Order ID":"402030360","Ship Date":"5/28/2014","Units Sold":"8572","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2188260.16","Total Cost":"1366548.24","Total Profit":"821711.92"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/13/2011","Order ID":"914343869","Ship Date":"12/19/2011","Units Sold":"3524","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2294864.04","Total Cost":"1849959.04","Total Profit":"444905.00"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"11/4/2014","Order ID":"664604461","Ship Date":"12/17/2014","Units Sold":"84","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"56134.68","Total Cost":"42213.36","Total Profit":"13921.32"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/15/2012","Order ID":"198173463","Ship Date":"9/15/2012","Units Sold":"2786","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"429211.16","Total Cost":"253330.98","Total Profit":"175880.18"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"3/4/2015","Order ID":"130724704","Ship Date":"3/5/2015","Units Sold":"3200","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1350048.00","Total Cost":"1167008.00","Total Profit":"183040.00"},{"Region":"Europe","Country":"Belgium","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"3/19/2010","Order ID":"698244512","Ship Date":"4/20/2010","Units Sold":"4922","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3289224.94","Total Cost":"2473501.88","Total Profit":"815723.06"},{"Region":"Europe","Country":"Austria","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/19/2013","Order ID":"407031714","Ship Date":"6/4/2013","Units Sold":"8584","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5736429.68","Total Cost":"4313803.36","Total Profit":"1422626.32"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"1/1/2011","Order ID":"983697640","Ship Date":"2/10/2011","Units Sold":"6847","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1044715.26","Total Cost":"667171.68","Total Profit":"377543.58"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"12/18/2016","Order ID":"625166118","Ship Date":"1/17/2017","Units Sold":"9402","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"446124.90","Total Cost":"298889.58","Total Profit":"147235.32"},{"Region":"Europe","Country":"Malta","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"12/7/2015","Order ID":"748673474","Ship Date":"1/1/2016","Units Sold":"7973","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2035347.44","Total Cost":"1271055.66","Total Profit":"764291.78"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/28/2012","Order ID":"141768538","Ship Date":"7/30/2012","Units Sold":"1316","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"143812.48","Total Cost":"47165.44","Total Profit":"96647.04"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/11/2012","Order ID":"812312638","Ship Date":"8/12/2012","Units Sold":"216","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"44431.20","Total Cost":"25295.76","Total Profit":"19135.44"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"6/25/2011","Order ID":"338479602","Ship Date":"6/26/2011","Units Sold":"2491","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1622164.11","Total Cost":"1307675.36","Total Profit":"314488.75"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"4/3/2013","Order ID":"418755757","Ship Date":"5/18/2013","Units Sold":"7989","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5338809.03","Total Cost":"4014792.06","Total Profit":"1324016.97"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"9/16/2011","Order ID":"121939933","Ship Date":"9/26/2011","Units Sold":"3591","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"916710.48","Total Cost":"572477.22","Total Profit":"344233.26"},{"Region":"Europe","Country":"Slovenia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/28/2016","Order ID":"837143456","Ship Date":"12/10/2016","Units Sold":"8207","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3588100.40","Total Cost":"2161149.31","Total Profit":"1426951.09"},{"Region":"Europe","Country":"Kosovo","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"2/27/2013","Order ID":"423790156","Ship Date":"3/22/2013","Units Sold":"7780","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"72587.40","Total Cost":"53837.60","Total Profit":"18749.80"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"8/11/2016","Order ID":"861616361","Ship Date":"9/28/2016","Units Sold":"283","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"43180.14","Total Cost":"27575.52","Total Profit":"15604.62"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/27/2010","Order ID":"600670897","Ship Date":"3/16/2010","Units Sold":"722","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"78900.16","Total Cost":"25876.48","Total Profit":"53023.68"},{"Region":"Europe","Country":"Portugal","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"5/13/2015","Order ID":"411315095","Ship Date":"6/4/2015","Units Sold":"6132","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3993219.72","Total Cost":"3219054.72","Total Profit":"774165.00"},{"Region":"Europe","Country":"Montenegro","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"9/19/2013","Order ID":"234222781","Ship Date":"9/22/2013","Units Sold":"581","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"388264.87","Total Cost":"291975.74","Total Profit":"96289.13"},{"Region":"North America","Country":"Canada","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"2/24/2010","Order ID":"530380284","Ship Date":"4/7/2010","Units Sold":"167","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"18249.76","Total Cost":"5985.28","Total Profit":"12264.48"},{"Region":"Europe","Country":"Lithuania","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"7/15/2014","Order ID":"931086432","Ship Date":"8/6/2014","Units Sold":"8021","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1649919.70","Total Cost":"939339.31","Total Profit":"710580.39"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"2/1/2015","Order ID":"687952554","Ship Date":"3/19/2015","Units Sold":"9303","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1913627.10","Total Cost":"1089474.33","Total Profit":"824152.77"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"6/10/2012","Order ID":"922902476","Ship Date":"7/30/2012","Units Sold":"6207","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"947064.06","Total Cost":"604810.08","Total Profit":"342253.98"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/17/2015","Order ID":"578172528","Ship Date":"12/23/2015","Units Sold":"2954","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"241430.42","Total Cost":"167403.18","Total Profit":"74027.24"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/23/2016","Order ID":"466311538","Ship Date":"12/5/2016","Units Sold":"801","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"521619.21","Total Cost":"420492.96","Total Profit":"101126.25"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"4/14/2015","Order ID":"120180833","Ship Date":"5/7/2015","Units Sold":"3034","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"28307.22","Total Cost":"20995.28","Total Profit":"7311.94"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/12/2016","Order ID":"942954242","Ship Date":"4/1/2016","Units Sold":"9970","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"2050829.00","Total Cost":"1167586.70","Total Profit":"883242.30"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"5/14/2010","Order ID":"358118093","Ship Date":"6/19/2010","Units Sold":"3957","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"323405.61","Total Cost":"224243.19","Total Profit":"99162.42"},{"Region":"Asia","Country":"Tajikistan","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"3/9/2016","Order ID":"359471213","Ship Date":"3/24/2016","Units Sold":"4375","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"667537.50","Total Cost":"426300.00","Total Profit":"241237.50"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"3/31/2015","Order ID":"761124932","Ship Date":"4/12/2015","Units Sold":"2636","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1152459.20","Total Cost":"694137.88","Total Profit":"458321.32"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/12/2016","Order ID":"547503077","Ship Date":"10/4/2016","Units Sold":"7182","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4676990.22","Total Cost":"3770262.72","Total Profit":"906727.50"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/17/2015","Order ID":"123341977","Ship Date":"8/19/2015","Units Sold":"8487","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2166561.36","Total Cost":"1352997.54","Total Profit":"813563.82"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"12/16/2011","Order ID":"863690459","Ship Date":"2/3/2012","Units Sold":"4055","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1710763.95","Total Cost":"1478817.95","Total Profit":"231946.00"},{"Region":"Europe","Country":"Lithuania","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/6/2014","Order ID":"163909852","Ship Date":"4/25/2014","Units Sold":"3423","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"704111.10","Total Cost":"400867.53","Total Profit":"303243.57"},{"Region":"Europe","Country":"Netherlands","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"3/28/2013","Order ID":"889673984","Ship Date":"4/10/2013","Units Sold":"3157","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"29454.81","Total Cost":"21846.44","Total Profit":"7608.37"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/19/2015","Order ID":"126969182","Ship Date":"11/29/2015","Units Sold":"1857","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"381984.90","Total Cost":"217473.27","Total Profit":"164511.63"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/26/2010","Order ID":"432094275","Ship Date":"2/14/2011","Units Sold":"5153","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"563119.84","Total Cost":"184683.52","Total Profit":"378436.32"},{"Region":"Europe","Country":"Montenegro","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/17/2011","Order ID":"381660592","Ship Date":"8/20/2011","Units Sold":"705","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"108612.30","Total Cost":"64105.65","Total Profit":"44506.65"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/5/2012","Order ID":"422591960","Ship Date":"9/7/2012","Units Sold":"3207","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"350460.96","Total Cost":"114938.88","Total Profit":"235522.08"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"3/5/2010","Order ID":"622124707","Ship Date":"3/14/2010","Units Sold":"9381","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"445128.45","Total Cost":"298221.99","Total Profit":"146906.46"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"7/22/2012","Order ID":"217807662","Ship Date":"8/19/2012","Units Sold":"2982","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"454993.56","Total Cost":"290566.08","Total Profit":"164427.48"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"3/13/2014","Order ID":"767502152","Ship Date":"4/4/2014","Units Sold":"9797","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"464867.65","Total Cost":"311446.63","Total Profit":"153421.02"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/24/2014","Order ID":"299382007","Ship Date":"6/10/2014","Units Sold":"2644","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1155956.80","Total Cost":"696244.52","Total Profit":"459712.28"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/10/2013","Order ID":"961933553","Ship Date":"3/27/2013","Units Sold":"6369","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"302209.05","Total Cost":"202470.51","Total Profit":"99738.54"},{"Region":"Asia","Country":"Myanmar","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"12/19/2015","Order ID":"473955619","Ship Date":"1/28/2016","Units Sold":"2855","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"435615.90","Total Cost":"278191.20","Total Profit":"157424.70"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/10/2013","Order ID":"674559533","Ship Date":"10/13/2013","Units Sold":"6011","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2628009.20","Total Cost":"1582876.63","Total Profit":"1045132.57"},{"Region":"Europe","Country":"Montenegro","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/4/2017","Order ID":"773169124","Ship Date":"6/7/2017","Units Sold":"6780","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"554129.40","Total Cost":"384222.60","Total Profit":"169906.80"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/24/2016","Order ID":"499520719","Ship Date":"8/14/2016","Units Sold":"8136","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1673575.20","Total Cost":"952806.96","Total Profit":"720768.24"},{"Region":"Europe","Country":"Germany","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"12/4/2012","Order ID":"553663146","Ship Date":"1/17/2013","Units Sold":"83","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"21188.24","Total Cost":"13231.86","Total Profit":"7956.38"},{"Region":"North America","Country":"United States of America","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"12/23/2016","Order ID":"355957734","Ship Date":"2/5/2017","Units Sold":"4659","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"717765.54","Total Cost":"423642.87","Total Profit":"294122.67"},{"Region":"Europe","Country":"Albania","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/26/2013","Order ID":"297078311","Ship Date":"10/27/2013","Units Sold":"929","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"143121.74","Total Cost":"84473.97","Total Profit":"58647.77"},{"Region":"Europe","Country":"Croatia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/4/2012","Order ID":"388011205","Ship Date":"2/2/2012","Units Sold":"9993","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1092035.04","Total Cost":"358149.12","Total Profit":"733885.92"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"4/21/2010","Order ID":"710055243","Ship Date":"6/8/2010","Units Sold":"9980","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"815665.40","Total Cost":"565566.60","Total Profit":"250098.80"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"10/8/2015","Order ID":"964821755","Ship Date":"10/21/2015","Units Sold":"1053","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"703688.31","Total Cost":"529174.62","Total Profit":"174513.69"},{"Region":"Asia","Country":"India","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/9/2010","Order ID":"924234569","Ship Date":"3/19/2010","Units Sold":"402","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"268644.54","Total Cost":"202021.08","Total Profit":"66623.46"},{"Region":"Europe","Country":"Portugal","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/19/2013","Order ID":"880530011","Ship Date":"2/6/2014","Units Sold":"7252","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3170574.40","Total Cost":"1909669.16","Total Profit":"1260905.24"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/17/2014","Order ID":"296256911","Ship Date":"12/26/2014","Units Sold":"7858","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"372862.10","Total Cost":"249805.82","Total Profit":"123056.28"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"12/4/2016","Order ID":"954276597","Ship Date":"1/21/2017","Units Sold":"506","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"221223.20","Total Cost":"133244.98","Total Profit":"87978.22"},{"Region":"Asia","Country":"Taiwan","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"5/28/2013","Order ID":"207762897","Ship Date":"6/28/2013","Units Sold":"513","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"342822.51","Total Cost":"257803.02","Total Profit":"85019.49"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/24/2014","Order ID":"430202138","Ship Date":"4/3/2014","Units Sold":"5228","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2205640.92","Total Cost":"1906599.32","Total Profit":"299041.60"},{"Region":"Asia","Country":"Thailand","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"1/15/2011","Order ID":"465393149","Ship Date":"2/20/2011","Units Sold":"9030","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2305178.40","Total Cost":"1439562.60","Total Profit":"865615.80"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/3/2012","Order ID":"577447259","Ship Date":"3/9/2012","Units Sold":"8331","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1283473.86","Total Cost":"757537.83","Total Profit":"525936.03"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/6/2015","Order ID":"200788295","Ship Date":"5/24/2015","Units Sold":"6573","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4392538.71","Total Cost":"3303195.42","Total Profit":"1089343.29"},{"Region":"Europe","Country":"Denmark","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"11/7/2011","Order ID":"190152585","Ship Date":"11/11/2011","Units Sold":"9230","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"437963.50","Total Cost":"293421.70","Total Profit":"144541.80"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/23/2012","Order ID":"570588958","Ship Date":"1/27/2013","Units Sold":"8807","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3850420.40","Total Cost":"2319147.31","Total Profit":"1531273.09"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"12/8/2015","Order ID":"987458741","Ship Date":"1/23/2016","Units Sold":"9840","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4302048.00","Total Cost":"2591167.20","Total Profit":"1710880.80"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"3/19/2015","Order ID":"256435763","Ship Date":"3/26/2015","Units Sold":"3896","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"594451.68","Total Cost":"379626.24","Total Profit":"214825.44"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/5/2013","Order ID":"413506352","Ship Date":"12/11/2013","Units Sold":"4574","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"499846.72","Total Cost":"163932.16","Total Profit":"335914.56"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/28/2012","Order ID":"864969336","Ship Date":"7/14/2012","Units Sold":"2503","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1672679.81","Total Cost":"1257857.62","Total Profit":"414822.19"},{"Region":"Asia","Country":"Thailand","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/14/2012","Order ID":"637436044","Ship Date":"6/7/2012","Units Sold":"345","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"88071.60","Total Cost":"54999.90","Total Profit":"33071.70"},{"Region":"Europe","Country":"Monaco","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"4/20/2012","Order ID":"627830302","Ship Date":"4/26/2012","Units Sold":"7793","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5074879.53","Total Cost":"4091013.28","Total Profit":"983866.25"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/9/2012","Order ID":"453388440","Ship Date":"2/10/2012","Units Sold":"6570","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2872404.00","Total Cost":"1730078.10","Total Profit":"1142325.90"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/11/2016","Order ID":"701659286","Ship Date":"7/17/2016","Units Sold":"5430","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3628706.10","Total Cost":"2728792.20","Total Profit":"899913.90"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/25/2015","Order ID":"680504167","Ship Date":"1/14/2016","Units Sold":"5160","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1061412.00","Total Cost":"604287.60","Total Profit":"457124.40"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"6/23/2013","Order ID":"668096911","Ship Date":"7/16/2013","Units Sold":"3578","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2391070.06","Total Cost":"1798088.12","Total Profit":"592981.94"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"3/30/2013","Order ID":"562923848","Ship Date":"5/16/2013","Units Sold":"531","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"345792.51","Total Cost":"278753.76","Total Profit":"67038.75"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/22/2016","Order ID":"333783805","Ship Date":"7/23/2016","Units Sold":"2900","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1888509.00","Total Cost":"1522384.00","Total Profit":"366125.00"},{"Region":"Europe","Country":"San Marino","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/5/2010","Order ID":"469788110","Ship Date":"10/6/2010","Units Sold":"9596","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4048456.44","Total Cost":"3499565.24","Total Profit":"548891.20"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/14/2010","Order ID":"630360591","Ship Date":"6/29/2010","Units Sold":"6562","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4385187.74","Total Cost":"3297667.48","Total Profit":"1087520.26"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/18/2016","Order ID":"995237576","Ship Date":"8/19/2016","Units Sold":"1770","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"144662.10","Total Cost":"100305.90","Total Profit":"44356.20"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/10/2012","Order ID":"914467895","Ship Date":"3/3/2012","Units Sold":"226","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"46488.20","Total Cost":"26466.86","Total Profit":"20021.34"},{"Region":"Europe","Country":"Kosovo","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/20/2011","Order ID":"258412873","Ship Date":"3/16/2011","Units Sold":"8967","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"732872.91","Total Cost":"508159.89","Total Profit":"224713.02"},{"Region":"Europe","Country":"Hungary","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/2/2010","Order ID":"767746341","Ship Date":"3/15/2010","Units Sold":"2058","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"314009.64","Total Cost":"200531.52","Total Profit":"113478.12"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/26/2013","Order ID":"203454625","Ship Date":"1/18/2014","Units Sold":"5600","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1151920.00","Total Cost":"655816.00","Total Profit":"496104.00"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/20/2017","Order ID":"896836555","Ship Date":"7/24/2017","Units Sold":"2721","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"129111.45","Total Cost":"86500.59","Total Profit":"42610.86"},{"Region":"Asia","Country":"Bhutan","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/27/2016","Order ID":"299503457","Ship Date":"9/2/2016","Units Sold":"8583","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3621081.87","Total Cost":"3130134.27","Total Profit":"490947.60"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"9/7/2011","Order ID":"433379161","Ship Date":"9/15/2011","Units Sold":"5379","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2351698.80","Total Cost":"1416452.07","Total Profit":"935246.73"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"3/3/2012","Order ID":"240699994","Ship Date":"3/21/2012","Units Sold":"7332","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1871712.96","Total Cost":"1168867.44","Total Profit":"702845.52"},{"Region":"Europe","Country":"Estonia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"1/5/2017","Order ID":"534014785","Ship Date":"1/12/2017","Units Sold":"5697","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2490728.40","Total Cost":"1500191.01","Total Profit":"990537.39"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"2/12/2011","Order ID":"846184861","Ship Date":"3/13/2011","Units Sold":"3759","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1585884.51","Total Cost":"1370869.71","Total Profit":"215014.80"},{"Region":"North America","Country":"Canada","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"7/10/2014","Order ID":"780384051","Ship Date":"8/3/2014","Units Sold":"1838","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"378076.60","Total Cost":"215248.18","Total Profit":"162828.42"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"6/23/2010","Order ID":"460098683","Ship Date":"8/8/2010","Units Sold":"2280","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"186344.40","Total Cost":"129207.60","Total Profit":"57136.80"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/14/2017","Order ID":"979127585","Ship Date":"6/21/2017","Units Sold":"4466","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1140080.48","Total Cost":"711969.72","Total Profit":"428110.76"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/14/2016","Order ID":"351582086","Ship Date":"10/20/2016","Units Sold":"9807","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1071708.96","Total Cost":"351482.88","Total Profit":"720226.08"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"4/27/2010","Order ID":"261886012","Ship Date":"6/12/2010","Units Sold":"6746","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4508149.42","Total Cost":"3390134.84","Total Profit":"1118014.58"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"10/6/2015","Order ID":"214775693","Ship Date":"10/19/2015","Units Sold":"5755","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1183803.50","Total Cost":"673968.05","Total Profit":"509835.45"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/30/2010","Order ID":"685299956","Ship Date":"5/4/2010","Units Sold":"4341","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2900960.07","Total Cost":"2181526.14","Total Profit":"719433.93"},{"Region":"Asia","Country":"Singapore","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"2/26/2010","Order ID":"868820130","Ship Date":"3/27/2010","Units Sold":"2039","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"166647.47","Total Cost":"115550.13","Total Profit":"51097.34"},{"Region":"Central America and the Caribbean","Country":"Saint Lucia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/8/2013","Order ID":"931010043","Ship Date":"8/10/2013","Units Sold":"5416","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"50531.28","Total Cost":"37478.72","Total Profit":"13052.56"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/6/2012","Order ID":"657856023","Ship Date":"4/4/2012","Units Sold":"3071","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"335598.88","Total Cost":"110064.64","Total Profit":"225534.24"},{"Region":"Asia","Country":"Brunei","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"5/1/2010","Order ID":"805656898","Ship Date":"5/15/2010","Units Sold":"634","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"97674.04","Total Cost":"57649.62","Total Profit":"40024.42"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"3/24/2013","Order ID":"851023995","Ship Date":"3/25/2013","Units Sold":"5767","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1186271.90","Total Cost":"675373.37","Total Profit":"510898.53"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/30/2015","Order ID":"340881145","Ship Date":"12/12/2015","Units Sold":"3161","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"149989.45","Total Cost":"100488.19","Total Profit":"49501.26"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"2/27/2014","Order ID":"242464673","Ship Date":"4/18/2014","Units Sold":"9540","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6375295.80","Total Cost":"4794231.60","Total Profit":"1581064.20"},{"Region":"Europe","Country":"Iceland","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"8/31/2016","Order ID":"693323409","Ship Date":"9/25/2016","Units Sold":"8659","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1334005.54","Total Cost":"787362.87","Total Profit":"546642.67"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/23/2010","Order ID":"551318681","Ship Date":"3/30/2010","Units Sold":"6304","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2659594.56","Total Cost":"2299005.76","Total Profit":"360588.80"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"7/17/2016","Order ID":"544624316","Ship Date":"8/18/2016","Units Sold":"5293","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1351197.04","Total Cost":"843810.06","Total Profit":"507386.98"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/1/2013","Order ID":"121726644","Ship Date":"7/5/2013","Units Sold":"474","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"207232.80","Total Cost":"124818.42","Total Profit":"82414.38"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"6/23/2013","Order ID":"601424491","Ship Date":"8/8/2013","Units Sold":"3727","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"568665.66","Total Cost":"363158.88","Total Profit":"205506.78"},{"Region":"Asia","Country":"Tajikistan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"5/10/2015","Order ID":"222829186","Ship Date":"6/14/2015","Units Sold":"8963","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1843689.10","Total Cost":"1049656.93","Total Profit":"794032.17"},{"Region":"Europe","Country":"Estonia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"12/14/2014","Order ID":"895364558","Ship Date":"12/23/2014","Units Sold":"7125","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"582326.25","Total Cost":"403773.75","Total Profit":"178552.50"},{"Region":"Europe","Country":"Sweden","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"10/26/2016","Order ID":"548766934","Ship Date":"12/5/2016","Units Sold":"1186","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"772335.06","Total Cost":"622602.56","Total Profit":"149732.50"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"3/15/2015","Order ID":"783085143","Ship Date":"4/16/2015","Units Sold":"1151","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"54614.95","Total Cost":"36590.29","Total Profit":"18024.66"},{"Region":"Asia","Country":"Bhutan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"12/27/2012","Order ID":"118680512","Ship Date":"1/6/2013","Units Sold":"9056","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1862819.20","Total Cost":"1060548.16","Total Profit":"802271.04"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"5/7/2010","Order ID":"746226871","Ship Date":"6/9/2010","Units Sold":"3969","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"816423.30","Total Cost":"464809.59","Total Profit":"351613.71"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"1/30/2016","Order ID":"876710546","Ship Date":"2/23/2016","Units Sold":"6988","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4669870.76","Total Cost":"3511749.52","Total Profit":"1158121.24"},{"Region":"North America","Country":"Greenland","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/22/2013","Order ID":"591430366","Ship Date":"9/4/2013","Units Sold":"6243","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1593713.04","Total Cost":"995259.06","Total Profit":"598453.98"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"6/27/2017","Order ID":"491997659","Ship Date":"7/15/2017","Units Sold":"1895","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1266371.65","Total Cost":"952313.30","Total Profit":"314058.35"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/28/2017","Order ID":"350336253","Ship Date":"3/10/2017","Units Sold":"1137","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"92927.01","Total Cost":"64433.79","Total Profit":"28493.22"},{"Region":"Asia","Country":"China","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/30/2010","Order ID":"458682477","Ship Date":"8/14/2010","Units Sold":"3193","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1395979.60","Total Cost":"840812.69","Total Profit":"555166.91"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/27/2015","Order ID":"279585158","Ship Date":"7/5/2015","Units Sold":"4316","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"40268.28","Total Cost":"29866.72","Total Profit":"10401.56"},{"Region":"Asia","Country":"India","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"12/30/2012","Order ID":"695905625","Ship Date":"1/16/2013","Units Sold":"2794","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"574725.80","Total Cost":"327205.34","Total Profit":"247520.46"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"12/20/2011","Order ID":"860817706","Ship Date":"2/7/2012","Units Sold":"3943","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"36788.19","Total Cost":"27285.56","Total Profit":"9502.63"},{"Region":"Europe","Country":"Macedonia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/30/2014","Order ID":"447807729","Ship Date":"7/11/2014","Units Sold":"5113","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1051744.10","Total Cost":"598783.43","Total Profit":"452960.67"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/15/2012","Order ID":"100674521","Ship Date":"7/8/2012","Units Sold":"683","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"74638.24","Total Cost":"24478.72","Total Profit":"50159.52"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"12/13/2013","Order ID":"983529412","Ship Date":"12/28/2013","Units Sold":"7064","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2980230.96","Total Cost":"2576170.16","Total Profit":"404060.80"},{"Region":"Asia","Country":"Singapore","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"10/10/2016","Order ID":"730796229","Ship Date":"10/16/2016","Units Sold":"7699","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3248131.11","Total Cost":"2807748.31","Total Profit":"440382.80"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/22/2012","Order ID":"197211301","Ship Date":"4/21/2012","Units Sold":"8061","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"658825.53","Total Cost":"456816.87","Total Profit":"202008.66"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"8/2/2011","Order ID":"307823455","Ship Date":"8/7/2011","Units Sold":"656","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"31127.20","Total Cost":"20854.24","Total Profit":"10272.96"},{"Region":"Asia","Country":"Philippines","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"1/25/2012","Order ID":"707994019","Ship Date":"2/13/2012","Units Sold":"18","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"167.94","Total Cost":"124.56","Total Profit":"43.38"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/23/2015","Order ID":"213396823","Ship Date":"11/3/2015","Units Sold":"7717","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5025387.57","Total Cost":"4051116.32","Total Profit":"974271.25"},{"Region":"Europe","Country":"Sweden","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"7/19/2010","Order ID":"860018193","Ship Date":"7/27/2010","Units Sold":"7350","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1876308.00","Total Cost":"1171737.00","Total Profit":"704571.00"},{"Region":"Asia","Country":"Tajikistan","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"1/28/2012","Order ID":"254156959","Ship Date":"3/13/2012","Units Sold":"9547","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1456681.26","Total Cost":"930259.68","Total Profit":"526421.58"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/16/2014","Order ID":"122424447","Ship Date":"4/22/2014","Units Sold":"6969","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4538282.49","Total Cost":"3658446.24","Total Profit":"879836.25"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"9/8/2015","Order ID":"461744487","Ship Date":"9/18/2015","Units Sold":"9309","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4069894.80","Total Cost":"2451338.97","Total Profit":"1618555.83"},{"Region":"Asia","Country":"Brunei","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/29/2016","Order ID":"889353406","Ship Date":"5/4/2016","Units Sold":"8291","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3497889.99","Total Cost":"3023644.79","Total Profit":"474245.20"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/21/2013","Order ID":"192800033","Ship Date":"5/7/2013","Units Sold":"2669","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"407236.02","Total Cost":"260067.36","Total Profit":"147168.66"},{"Region":"Europe","Country":"Romania","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"2/2/2012","Order ID":"379945695","Ship Date":"2/29/2012","Units Sold":"3229","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"30126.57","Total Cost":"22344.68","Total Profit":"7781.89"},{"Region":"Europe","Country":"Albania","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"12/11/2015","Order ID":"828964221","Ship Date":"1/3/2016","Units Sold":"7789","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1602197.30","Total Cost":"912169.79","Total Profit":"690027.51"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"9/15/2013","Order ID":"538341939","Ship Date":"10/13/2013","Units Sold":"6198","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"57827.34","Total Cost":"42890.16","Total Profit":"14937.18"},{"Region":"Europe","Country":"Croatia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"4/21/2014","Order ID":"376877677","Ship Date":"5/12/2014","Units Sold":"5335","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1361918.80","Total Cost":"850505.70","Total Profit":"511413.10"},{"Region":"North America","Country":"Canada","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"7/29/2012","Order ID":"833682763","Ship Date":"9/14/2012","Units Sold":"4111","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1049456.08","Total Cost":"655375.62","Total Profit":"394080.46"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/15/2015","Order ID":"668181025","Ship Date":"11/20/2015","Units Sold":"8469","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1304734.14","Total Cost":"770086.17","Total Profit":"534647.97"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"2/14/2017","Order ID":"960108792","Ship Date":"3/20/2017","Units Sold":"6382","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"521600.86","Total Cost":"361667.94","Total Profit":"159932.92"},{"Region":"Asia","Country":"South Korea","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/16/2014","Order ID":"159514892","Ship Date":"9/9/2014","Units Sold":"2856","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"233420.88","Total Cost":"161849.52","Total Profit":"71571.36"},{"Region":"Europe","Country":"Italy","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/16/2014","Order ID":"836760652","Ship Date":"12/19/2014","Units Sold":"4926","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"233738.70","Total Cost":"156597.54","Total Profit":"77141.16"},{"Region":"Europe","Country":"Greece","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/5/2014","Order ID":"232519900","Ship Date":"7/12/2014","Units Sold":"6660","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2911752.00","Total Cost":"1753777.80","Total Profit":"1157974.20"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"9/21/2010","Order ID":"607778966","Ship Date":"10/23/2010","Units Sold":"4157","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2777998.39","Total Cost":"2089058.78","Total Profit":"688939.61"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/19/2013","Order ID":"693836677","Ship Date":"7/4/2013","Units Sold":"546","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"25907.70","Total Cost":"17357.34","Total Profit":"8550.36"},{"Region":"Europe","Country":"Montenegro","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/14/2010","Order ID":"642304360","Ship Date":"12/20/2010","Units Sold":"989","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"432390.80","Total Cost":"260433.37","Total Profit":"171957.43"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/27/2011","Order ID":"675105845","Ship Date":"7/11/2011","Units Sold":"7677","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"838942.56","Total Cost":"275143.68","Total Profit":"563798.88"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"7/5/2016","Order ID":"634477460","Ship Date":"8/3/2016","Units Sold":"4835","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3231085.45","Total Cost":"2429780.90","Total Profit":"801304.55"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"2/13/2010","Order ID":"432968032","Ship Date":"2/13/2010","Units Sold":"3717","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"764586.90","Total Cost":"435297.87","Total Profit":"329289.03"},{"Region":"Asia","Country":"Philippines","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/30/2014","Order ID":"503438889","Ship Date":"1/11/2015","Units Sold":"7610","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1942680.80","Total Cost":"1213186.20","Total Profit":"729494.60"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/27/2013","Order ID":"449063861","Ship Date":"5/2/2013","Units Sold":"6830","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1052229.80","Total Cost":"621051.90","Total Profit":"431177.90"},{"Region":"Europe","Country":"Montenegro","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/21/2011","Order ID":"393329274","Ship Date":"2/24/2011","Units Sold":"3728","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"568818.24","Total Cost":"363256.32","Total Profit":"205561.92"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/14/2011","Order ID":"530033957","Ship Date":"7/24/2011","Units Sold":"7681","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5001944.01","Total Cost":"4032217.76","Total Profit":"969726.25"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"3/26/2011","Order ID":"673289239","Ship Date":"4/25/2011","Units Sold":"103","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"8418.19","Total Cost":"5837.01","Total Profit":"2581.18"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/28/2011","Order ID":"707518947","Ship Date":"2/15/2012","Units Sold":"9434","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1940573.80","Total Cost":"1104815.74","Total Profit":"835758.06"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/17/2016","Order ID":"137459409","Ship Date":"5/19/2016","Units Sold":"6149","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4004290.29","Total Cost":"3227979.04","Total Profit":"776311.25"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/29/2016","Order ID":"338159453","Ship Date":"11/7/2016","Units Sold":"7752","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1978930.56","Total Cost":"1235823.84","Total Profit":"743106.72"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"2/4/2014","Order ID":"504980409","Ship Date":"2/20/2014","Units Sold":"3780","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1652616.00","Total Cost":"995387.40","Total Profit":"657228.60"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"4/8/2014","Order ID":"803596103","Ship Date":"5/9/2014","Units Sold":"799","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"123093.94","Total Cost":"72653.07","Total Profit":"50440.87"},{"Region":"Europe","Country":"Russia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"8/9/2016","Order ID":"119992864","Ship Date":"9/23/2016","Units Sold":"7410","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"605619.30","Total Cost":"419924.70","Total Profit":"185694.60"},{"Region":"Europe","Country":"Slovenia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/24/2010","Order ID":"110469520","Ship Date":"3/2/2010","Units Sold":"9241","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4040165.20","Total Cost":"2433432.53","Total Profit":"1606732.67"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/21/2015","Order ID":"251637399","Ship Date":"5/19/2015","Units Sold":"3953","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1009121.84","Total Cost":"630187.26","Total Profit":"378934.58"},{"Region":"Europe","Country":"Vatican City","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/17/2011","Order ID":"990420329","Ship Date":"11/27/2011","Units Sold":"6240","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"58219.20","Total Cost":"43180.80","Total Profit":"15038.40"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"1/16/2011","Order ID":"594054639","Ship Date":"2/2/2011","Units Sold":"2824","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"230805.52","Total Cost":"160036.08","Total Profit":"70769.44"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"9/4/2013","Order ID":"100089156","Ship Date":"9/4/2013","Units Sold":"7460","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1534522.00","Total Cost":"873640.60","Total Profit":"660881.40"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"2/23/2014","Order ID":"166385209","Ship Date":"3/21/2014","Units Sold":"5936","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"55382.88","Total Cost":"41077.12","Total Profit":"14305.76"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/4/2011","Order ID":"621116626","Ship Date":"10/20/2011","Units Sold":"1067","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"272383.76","Total Cost":"170101.14","Total Profit":"102282.62"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"2/12/2014","Order ID":"912769734","Ship Date":"3/13/2014","Units Sold":"7703","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5147683.81","Total Cost":"3871065.62","Total Profit":"1276618.19"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/19/2011","Order ID":"560143363","Ship Date":"7/18/2011","Units Sold":"7724","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1971782.72","Total Cost":"1231360.08","Total Profit":"740422.64"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/28/2017","Order ID":"502348840","Ship Date":"7/13/2017","Units Sold":"5040","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2203488.00","Total Cost":"1327183.20","Total Profit":"876304.80"},{"Region":"Europe","Country":"Belarus","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/14/2012","Order ID":"848809993","Ship Date":"1/27/2013","Units Sold":"594","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"90632.52","Total Cost":"57879.36","Total Profit":"32753.16"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/19/2017","Order ID":"429263150","Ship Date":"8/24/2017","Units Sold":"7360","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1878860.80","Total Cost":"1173331.20","Total Profit":"705529.60"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"5/18/2010","Order ID":"843757140","Ship Date":"7/6/2010","Units Sold":"5343","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1099055.10","Total Cost":"625718.73","Total Profit":"473336.37"},{"Region":"North America","Country":"Canada","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"1/17/2017","Order ID":"612653291","Ship Date":"1/21/2017","Units Sold":"6578","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1679231.84","Total Cost":"1048664.76","Total Profit":"630567.08"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/2/2015","Order ID":"126625430","Ship Date":"1/15/2015","Units Sold":"134","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"34207.52","Total Cost":"21362.28","Total Profit":"12845.24"},{"Region":"Asia","Country":"Taiwan","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/20/2013","Order ID":"296659886","Ship Date":"3/8/2013","Units Sold":"7108","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1084538.64","Total Cost":"692603.52","Total Profit":"391935.12"},{"Region":"Europe","Country":"Andorra","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"4/12/2017","Order ID":"304055488","Ship Date":"4/30/2017","Units Sold":"5630","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"460139.90","Total Cost":"319052.10","Total Profit":"141087.80"},{"Region":"Sub-Saharan Africa","Country":"Mali","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"2/10/2012","Order ID":"750423562","Ship Date":"2/11/2012","Units Sold":"5863","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"278199.35","Total Cost":"186384.77","Total Profit":"91814.58"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"2/11/2017","Order ID":"507687938","Ship Date":"2/21/2017","Units Sold":"4998","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3340013.46","Total Cost":"2511694.92","Total Profit":"828318.54"},{"Region":"Central America and the Caribbean","Country":"Saint Lucia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"1/26/2015","Order ID":"768084943","Ship Date":"2/15/2015","Units Sold":"2258","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1470432.18","Total Cost":"1185359.68","Total Profit":"285072.50"},{"Region":"Asia","Country":"Indonesia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/25/2016","Order ID":"994163405","Ship Date":"6/10/2016","Units Sold":"3899","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"426082.72","Total Cost":"139740.16","Total Profit":"286342.56"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"2/10/2017","Order ID":"268784654","Ship Date":"2/25/2017","Units Sold":"8207","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3588100.40","Total Cost":"2161149.31","Total Profit":"1426951.09"},{"Region":"Europe","Country":"Hungary","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/2/2011","Order ID":"445122516","Ship Date":"2/16/2011","Units Sold":"499","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"102644.30","Total Cost":"58437.89","Total Profit":"44206.41"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/25/2015","Order ID":"296663320","Ship Date":"5/8/2015","Units Sold":"8124","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1239559.92","Total Cost":"791602.56","Total Profit":"447957.36"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/7/2014","Order ID":"467205893","Ship Date":"6/15/2014","Units Sold":"5461","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"596778.08","Total Cost":"195722.24","Total Profit":"401055.84"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"3/15/2016","Order ID":"320861566","Ship Date":"3/16/2016","Units Sold":"8922","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"423348.90","Total Cost":"283630.38","Total Profit":"139718.52"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"2/9/2011","Order ID":"192054164","Ship Date":"3/3/2011","Units Sold":"1950","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"822685.50","Total Cost":"711145.50","Total Profit":"111540.00"},{"Region":"Europe","Country":"Armenia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"1/26/2013","Order ID":"935520017","Ship Date":"2/28/2013","Units Sold":"17","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"7172.13","Total Cost":"6199.73","Total Profit":"972.40"},{"Region":"Asia","Country":"South Korea","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"8/31/2010","Order ID":"776307952","Ship Date":"9/4/2010","Units Sold":"5629","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"858872.82","Total Cost":"548489.76","Total Profit":"310383.06"},{"Region":"Europe","Country":"Kosovo","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/29/2016","Order ID":"259779298","Ship Date":"4/18/2016","Units Sold":"3322","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2163319.62","Total Cost":"1743917.12","Total Profit":"419402.50"},{"Region":"Europe","Country":"Moldova ","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"9/18/2016","Order ID":"901607882","Ship Date":"9/20/2016","Units Sold":"4663","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"959179.10","Total Cost":"546083.93","Total Profit":"413095.17"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/19/2015","Order ID":"237780034","Ship Date":"4/27/2015","Units Sold":"3251","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2117083.71","Total Cost":"1706644.96","Total Profit":"410438.75"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/18/2012","Order ID":"374594581","Ship Date":"2/18/2012","Units Sold":"9716","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"90650.28","Total Cost":"67234.72","Total Profit":"23415.56"},{"Region":"Europe","Country":"Vatican City","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/8/2016","Order ID":"338662850","Ship Date":"8/4/2016","Units Sold":"6718","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"318769.10","Total Cost":"213565.22","Total Profit":"105203.88"},{"Region":"Asia","Country":"Mongolia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"12/21/2011","Order ID":"126908671","Ship Date":"2/2/2012","Units Sold":"3951","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"812720.70","Total Cost":"462701.61","Total Profit":"350019.09"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"6/12/2013","Order ID":"256568372","Ship Date":"7/19/2013","Units Sold":"3138","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"801068.64","Total Cost":"500259.96","Total Profit":"300808.68"},{"Region":"Europe","Country":"Romania","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/19/2010","Order ID":"415190780","Ship Date":"7/26/2010","Units Sold":"3033","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1326027.60","Total Cost":"798679.89","Total Profit":"527347.71"},{"Region":"Asia","Country":"Vietnam","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"4/28/2016","Order ID":"810637223","Ship Date":"5/30/2016","Units Sold":"4423","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"361491.79","Total Cost":"250651.41","Total Profit":"110840.38"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"4/24/2011","Order ID":"821081531","Ship Date":"4/24/2011","Units Sold":"5126","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3425552.02","Total Cost":"2576020.04","Total Profit":"849531.98"},{"Region":"Europe","Country":"Austria","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"8/24/2014","Order ID":"345010030","Ship Date":"9/30/2014","Units Sold":"4990","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"768759.40","Total Cost":"453740.70","Total Profit":"315018.70"},{"Region":"Europe","Country":"Poland","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/11/2012","Order ID":"251221549","Ship Date":"7/29/2012","Units Sold":"894","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"97696.32","Total Cost":"32040.96","Total Profit":"65655.36"},{"Region":"Central America and the Caribbean","Country":"Saint Lucia","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"12/12/2014","Order ID":"128827416","Ship Date":"1/22/2015","Units Sold":"1750","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1169472.50","Total Cost":"879445.00","Total Profit":"290027.50"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"1/9/2014","Order ID":"537251460","Ship Date":"2/12/2014","Units Sold":"3501","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1530637.20","Total Cost":"921918.33","Total Profit":"608718.87"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/8/2010","Order ID":"756230008","Ship Date":"8/22/2010","Units Sold":"4119","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"450124.32","Total Cost":"147624.96","Total Profit":"302499.36"},{"Region":"Europe","Country":"Ukraine","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/13/2010","Order ID":"135811889","Ship Date":"1/18/2010","Units Sold":"8611","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1326610.66","Total Cost":"782998.23","Total Profit":"543612.43"},{"Region":"Europe","Country":"Montenegro","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"9/6/2011","Order ID":"346358430","Ship Date":"9/18/2011","Units Sold":"4011","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2612003.31","Total Cost":"2105614.56","Total Profit":"506388.75"},{"Region":"Europe","Country":"Macedonia","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"10/31/2011","Order ID":"428543460","Ship Date":"10/31/2011","Units Sold":"4388","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2932368.76","Total Cost":"2205145.52","Total Profit":"727223.24"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"7/4/2015","Order ID":"843353307","Ship Date":"7/23/2015","Units Sold":"5840","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"899710.40","Total Cost":"531031.20","Total Profit":"368679.20"},{"Region":"Asia","Country":"North Korea","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"6/5/2017","Order ID":"322086799","Ship Date":"6/8/2017","Units Sold":"1496","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"307727.20","Total Cost":"175196.56","Total Profit":"132530.64"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"5/20/2013","Order ID":"816355264","Ship Date":"5/24/2013","Units Sold":"6519","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1664170.32","Total Cost":"1039258.98","Total Profit":"624911.34"},{"Region":"Europe","Country":"Finland","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/4/2011","Order ID":"748082530","Ship Date":"8/12/2011","Units Sold":"3100","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2018751.00","Total Cost":"1627376.00","Total Profit":"391375.00"},{"Region":"Asia","Country":"Singapore","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/30/2013","Order ID":"859504926","Ship Date":"10/18/2013","Units Sold":"5462","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3556909.02","Total Cost":"2867331.52","Total Profit":"689577.50"},{"Region":"Europe","Country":"Portugal","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"4/9/2011","Order ID":"163171279","Ship Date":"5/1/2011","Units Sold":"4862","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"45362.46","Total Cost":"33645.04","Total Profit":"11717.42"},{"Region":"North America","Country":"Greenland","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/11/2011","Order ID":"891942918","Ship Date":"11/4/2011","Units Sold":"4585","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"374732.05","Total Cost":"259831.95","Total Profit":"114900.10"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"8/4/2012","Order ID":"848993670","Ship Date":"8/19/2012","Units Sold":"4948","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"540717.44","Total Cost":"177336.32","Total Profit":"363381.12"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/11/2012","Order ID":"157809865","Ship Date":"4/1/2012","Units Sold":"8301","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3629197.20","Total Cost":"2185902.33","Total Profit":"1443294.87"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/30/2013","Order ID":"812190330","Ship Date":"8/18/2013","Units Sold":"4022","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"190843.90","Total Cost":"127859.38","Total Profit":"62984.52"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"9/20/2013","Order ID":"826246392","Ship Date":"10/21/2013","Units Sold":"3523","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"287934.79","Total Cost":"199648.41","Total Profit":"88286.38"},{"Region":"Europe","Country":"Estonia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/17/2014","Order ID":"984401881","Ship Date":"3/18/2014","Units Sold":"5247","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"573392.16","Total Cost":"188052.48","Total Profit":"385339.68"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"6/17/2017","Order ID":"791393125","Ship Date":"7/7/2017","Units Sold":"9667","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1474990.86","Total Cost":"941952.48","Total Profit":"533038.38"},{"Region":"North America","Country":"United States of America","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/23/2016","Order ID":"722268950","Ship Date":"1/24/2016","Units Sold":"4288","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1809064.32","Total Cost":"1563790.72","Total Profit":"245273.60"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/7/2010","Order ID":"872390687","Ship Date":"1/7/2011","Units Sold":"8646","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2207150.88","Total Cost":"1378345.32","Total Profit":"828805.56"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"6/30/2015","Order ID":"507432162","Ship Date":"7/6/2015","Units Sold":"9308","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6220257.16","Total Cost":"4677642.32","Total Profit":"1542614.84"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"12/7/2013","Order ID":"313379704","Ship Date":"1/15/2014","Units Sold":"4873","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"398270.29","Total Cost":"276152.91","Total Profit":"122117.38"},{"Region":"Asia","Country":"Indonesia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/12/2010","Order ID":"146532142","Ship Date":"7/9/2010","Units Sold":"972","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"199940.40","Total Cost":"113830.92","Total Profit":"86109.48"},{"Region":"Asia","Country":"Japan","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"4/12/2010","Order ID":"383500802","Ship Date":"5/15/2010","Units Sold":"5264","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2301420.80","Total Cost":"1386169.12","Total Profit":"915251.68"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/21/2015","Order ID":"571209514","Ship Date":"12/28/2015","Units Sold":"2443","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"266971.04","Total Cost":"87557.12","Total Profit":"179413.92"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"12/21/2015","Order ID":"776894605","Ship Date":"1/3/2016","Units Sold":"9233","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6170136.91","Total Cost":"4639951.82","Total Profit":"1530185.09"},{"Region":"Asia","Country":"India","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"2/27/2011","Order ID":"238104903","Ship Date":"3/3/2011","Units Sold":"9387","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2396313.36","Total Cost":"1496475.54","Total Profit":"899837.82"},{"Region":"Asia","Country":"Thailand","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"1/17/2011","Order ID":"512701737","Ship Date":"3/3/2011","Units Sold":"8692","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"81096.36","Total Cost":"60148.64","Total Profit":"20947.72"},{"Region":"Sub-Saharan Africa","Country":"Mali","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"11/7/2014","Order ID":"528858935","Ship Date":"12/15/2014","Units Sold":"9966","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4357135.20","Total Cost":"2624346.78","Total Profit":"1732788.42"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"4/16/2015","Order ID":"635062825","Ship Date":"4/17/2015","Units Sold":"8057","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1241261.42","Total Cost":"732623.01","Total Profit":"508638.41"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"6/30/2017","Order ID":"350112235","Ship Date":"8/10/2017","Units Sold":"4845","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"746420.70","Total Cost":"440555.85","Total Profit":"305864.85"},{"Region":"Europe","Country":"France","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/10/2012","Order ID":"613118493","Ship Date":"8/2/2012","Units Sold":"4242","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1789657.38","Total Cost":"1547014.98","Total Profit":"242642.40"},{"Region":"Europe","Country":"Croatia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/6/2011","Order ID":"633505427","Ship Date":"6/12/2011","Units Sold":"7189","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"67073.37","Total Cost":"49747.88","Total Profit":"17325.49"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"3/7/2011","Order ID":"141009366","Ship Date":"3/17/2011","Units Sold":"6660","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"727804.80","Total Cost":"238694.40","Total Profit":"489110.40"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"8/7/2013","Order ID":"735679137","Ship Date":"9/20/2013","Units Sold":"2660","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1732218.60","Total Cost":"1396393.60","Total Profit":"335825.00"},{"Region":"Asia","Country":"Taiwan","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/2/2014","Order ID":"937876069","Ship Date":"1/29/2014","Units Sold":"7225","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1486182.50","Total Cost":"846119.75","Total Profit":"640062.75"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"7/24/2012","Order ID":"238273990","Ship Date":"8/14/2012","Units Sold":"9423","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1938311.10","Total Cost":"1103527.53","Total Profit":"834783.57"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/2/2010","Order ID":"447859227","Ship Date":"8/20/2010","Units Sold":"353","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"154331.60","Total Cost":"92955.49","Total Profit":"61376.11"},{"Region":"Asia","Country":"Myanmar","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/26/2013","Order ID":"747930610","Ship Date":"12/17/2013","Units Sold":"8143","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1254510.58","Total Cost":"740442.99","Total Profit":"514067.59"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"10/11/2014","Order ID":"840099465","Ship Date":"10/24/2014","Units Sold":"2956","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"455401.36","Total Cost":"268789.08","Total Profit":"186612.28"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"7/17/2017","Order ID":"496289622","Ship Date":"8/25/2017","Units Sold":"1983","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"506220.24","Total Cost":"316129.86","Total Profit":"190090.38"},{"Region":"Europe","Country":"Denmark","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/18/2012","Order ID":"908737409","Ship Date":"8/10/2012","Units Sold":"4448","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"486077.44","Total Cost":"159416.32","Total Profit":"326661.12"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/17/2010","Order ID":"639991652","Ship Date":"3/20/2010","Units Sold":"6607","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2787427.23","Total Cost":"2409506.83","Total Profit":"377920.40"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"2/17/2014","Order ID":"572913682","Ship Date":"3/30/2014","Units Sold":"6745","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4392411.45","Total Cost":"3540855.20","Total Profit":"851556.25"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/7/2010","Order ID":"760677325","Ship Date":"7/25/2010","Units Sold":"179","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"36820.30","Total Cost":"20962.69","Total Profit":"15857.61"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/8/2016","Order ID":"876768910","Ship Date":"9/20/2016","Units Sold":"4259","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"649838.22","Total Cost":"414996.96","Total Profit":"234841.26"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"9/16/2016","Order ID":"664987266","Ship Date":"10/18/2016","Units Sold":"3364","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"159621.80","Total Cost":"106941.56","Total Profit":"52680.24"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"5/11/2011","Order ID":"389443719","Ship Date":"5/28/2011","Units Sold":"3906","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1647902.34","Total Cost":"1424479.14","Total Profit":"223423.20"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"6/27/2013","Order ID":"384562098","Ship Date":"7/14/2013","Units Sold":"9326","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1019145.28","Total Cost":"334243.84","Total Profit":"684901.44"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"5/24/2014","Order ID":"605078732","Ship Date":"6/7/2014","Units Sold":"5098","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2150795.22","Total Cost":"1859189.62","Total Profit":"291605.60"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"3/21/2010","Order ID":"176042449","Ship Date":"4/21/2010","Units Sold":"3728","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"951683.84","Total Cost":"594317.76","Total Profit":"357366.08"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"4/26/2013","Order ID":"542814576","Ship Date":"6/15/2013","Units Sold":"9750","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1487655.00","Total Cost":"950040.00","Total Profit":"537615.00"},{"Region":"Europe","Country":"Armenia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/9/2010","Order ID":"521068942","Ship Date":"9/21/2010","Units Sold":"4734","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1208495.52","Total Cost":"754694.28","Total Profit":"453801.24"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/10/2012","Order ID":"346791875","Ship Date":"11/26/2012","Units Sold":"2277","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"468378.90","Total Cost":"266659.47","Total Profit":"201719.43"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"8/29/2012","Order ID":"326282203","Ship Date":"10/4/2012","Units Sold":"3009","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"459113.22","Total Cost":"293196.96","Total Profit":"165916.26"},{"Region":"Europe","Country":"Cyprus","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/24/2011","Order ID":"386151254","Ship Date":"11/9/2011","Units Sold":"9592","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6410045.84","Total Cost":"4820363.68","Total Profit":"1589682.16"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"4/20/2016","Order ID":"523322856","Ship Date":"4/23/2016","Units Sold":"1717","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"750672.40","Total Cost":"452137.61","Total Profit":"298534.79"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"1/16/2011","Order ID":"355033338","Ship Date":"3/5/2011","Units Sold":"1109","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"741111.43","Total Cost":"557316.86","Total Profit":"183794.57"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/4/2015","Order ID":"468831527","Ship Date":"10/8/2015","Units Sold":"6522","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4358456.94","Total Cost":"3277565.88","Total Profit":"1080891.06"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/17/2013","Order ID":"172578752","Ship Date":"7/1/2013","Units Sold":"8743","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3822439.60","Total Cost":"2302294.19","Total Profit":"1520145.41"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/22/2014","Order ID":"644448840","Ship Date":"9/28/2014","Units Sold":"5588","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2357521.32","Total Cost":"2037887.72","Total Profit":"319633.60"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"1/21/2016","Order ID":"882928121","Ship Date":"2/13/2016","Units Sold":"6906","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4615072.62","Total Cost":"3470541.24","Total Profit":"1144531.38"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/23/2011","Order ID":"856815421","Ship Date":"5/6/2011","Units Sold":"9578","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1046683.84","Total Cost":"343275.52","Total Profit":"703408.32"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/21/2010","Order ID":"155222070","Ship Date":"4/2/2010","Units Sold":"2515","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"205550.95","Total Cost":"142525.05","Total Profit":"63025.90"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"9/25/2012","Order ID":"237571895","Ship Date":"10/5/2012","Units Sold":"1658","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"724877.60","Total Cost":"436601.14","Total Profit":"288276.46"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"12/16/2011","Order ID":"383601224","Ship Date":"1/18/2012","Units Sold":"4981","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1024591.70","Total Cost":"583324.91","Total Profit":"441266.79"},{"Region":"Asia","Country":"Japan","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"6/29/2013","Order ID":"843358886","Ship Date":"7/12/2013","Units Sold":"7490","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"69881.70","Total Cost":"51830.80","Total Profit":"18050.90"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/12/2016","Order ID":"587206208","Ship Date":"7/31/2016","Units Sold":"6221","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1279659.70","Total Cost":"728541.31","Total Profit":"551118.39"},{"Region":"North America","Country":"Greenland","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/13/2017","Order ID":"455817019","Ship Date":"4/5/2017","Units Sold":"5240","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"807274.40","Total Cost":"476473.20","Total Profit":"330801.20"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"3/9/2013","Order ID":"910177648","Ship Date":"4/13/2013","Units Sold":"647","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"6036.51","Total Cost":"4477.24","Total Profit":"1559.27"},{"Region":"Europe","Country":"Kosovo","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/15/2014","Order ID":"681586921","Ship Date":"5/5/2014","Units Sold":"5571","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3627890.91","Total Cost":"2924552.16","Total Profit":"703338.75"},{"Region":"Europe","Country":"Slovenia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"4/15/2016","Order ID":"821656167","Ship Date":"5/15/2016","Units Sold":"5174","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1320818.72","Total Cost":"824839.08","Total Profit":"495979.64"},{"Region":"Europe","Country":"Vatican City","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/2/2012","Order ID":"652309215","Ship Date":"4/3/2012","Units Sold":"1647","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"253736.82","Total Cost":"149761.71","Total Profit":"103975.11"},{"Region":"Europe","Country":"Cyprus","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/18/2011","Order ID":"915782392","Ship Date":"7/24/2011","Units Sold":"9215","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6000900.15","Total Cost":"4837506.40","Total Profit":"1163393.75"},{"Region":"Asia","Country":"Taiwan","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"11/23/2012","Order ID":"624624526","Ship Date":"12/15/2012","Units Sold":"9133","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3853121.37","Total Cost":"3330713.77","Total Profit":"522407.60"},{"Region":"Asia","Country":"Japan","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"8/8/2016","Order ID":"211696946","Ship Date":"8/22/2016","Units Sold":"4686","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1976976.54","Total Cost":"1708937.34","Total Profit":"268039.20"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/4/2012","Order ID":"180173480","Ship Date":"5/7/2012","Units Sold":"6191","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"953785.46","Total Cost":"562947.63","Total Profit":"390837.83"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/22/2013","Order ID":"653540456","Ship Date":"10/5/2013","Units Sold":"5999","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"655570.72","Total Cost":"215004.16","Total Profit":"440566.56"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/5/2016","Order ID":"925596702","Ship Date":"4/1/2016","Units Sold":"3488","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"381168.64","Total Cost":"125009.92","Total Profit":"256158.72"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/7/2016","Order ID":"810453546","Ship Date":"9/17/2016","Units Sold":"69","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"7540.32","Total Cost":"2472.96","Total Profit":"5067.36"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"9/30/2016","Order ID":"192534816","Ship Date":"11/7/2016","Units Sold":"4185","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1765609.65","Total Cost":"1526227.65","Total Profit":"239382.00"},{"Region":"Europe","Country":"Armenia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"6/12/2011","Order ID":"376576840","Ship Date":"6/28/2011","Units Sold":"6310","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2662125.90","Total Cost":"2301193.90","Total Profit":"360932.00"},{"Region":"Europe","Country":"Estonia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/8/2015","Order ID":"937628448","Ship Date":"12/20/2015","Units Sold":"3949","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"36844.17","Total Cost":"27327.08","Total Profit":"9517.09"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/27/2015","Order ID":"171050965","Ship Date":"11/21/2015","Units Sold":"6637","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1694293.36","Total Cost":"1058070.54","Total Profit":"636222.82"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/11/2017","Order ID":"942518222","Ship Date":"3/22/2017","Units Sold":"942","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"411842.40","Total Cost":"248056.86","Total Profit":"163785.54"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/26/2011","Order ID":"338016545","Ship Date":"10/7/2011","Units Sold":"5462","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"833391.96","Total Cost":"532217.28","Total Profit":"301174.68"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"3/19/2011","Order ID":"913844764","Ship Date":"4/14/2011","Units Sold":"5828","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"54375.24","Total Cost":"40329.76","Total Profit":"14045.48"},{"Region":"Europe","Country":"Greece","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"4/20/2013","Order ID":"346614205","Ship Date":"5/5/2013","Units Sold":"9701","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6317388.21","Total Cost":"5092636.96","Total Profit":"1224751.25"},{"Region":"Europe","Country":"Greece","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/18/2012","Order ID":"883248698","Ship Date":"1/19/2013","Units Sold":"1772","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1153944.12","Total Cost":"930229.12","Total Profit":"223715.00"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"10/20/2013","Order ID":"790984570","Ship Date":"11/27/2013","Units Sold":"8767","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2238039.76","Total Cost":"1397635.14","Total Profit":"840404.62"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"9/8/2016","Order ID":"207370650","Ship Date":"10/14/2016","Units Sold":"4439","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"913102.30","Total Cost":"519851.29","Total Profit":"393251.01"},{"Region":"Europe","Country":"Kosovo","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/28/2015","Order ID":"690268266","Ship Date":"2/8/2016","Units Sold":"4574","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"704670.44","Total Cost":"415913.82","Total Profit":"288756.62"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"12/6/2010","Order ID":"267851245","Ship Date":"12/13/2010","Units Sold":"1990","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"162642.70","Total Cost":"112773.30","Total Profit":"49869.40"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"12/8/2016","Order ID":"188605916","Ship Date":"12/10/2016","Units Sold":"1537","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"14340.21","Total Cost":"10636.04","Total Profit":"3704.17"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/5/2016","Order ID":"871331107","Ship Date":"7/5/2016","Units Sold":"5092","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"241615.40","Total Cost":"161874.68","Total Profit":"79740.72"},{"Region":"Asia","Country":"South Korea","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"8/10/2015","Order ID":"555138146","Ship Date":"8/19/2015","Units Sold":"6569","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"311699.05","Total Cost":"208828.51","Total Profit":"102870.54"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/17/2010","Order ID":"249450862","Ship Date":"7/3/2010","Units Sold":"6908","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1054022.64","Total Cost":"673115.52","Total Profit":"380907.12"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/8/2012","Order ID":"584005582","Ship Date":"11/21/2012","Units Sold":"9084","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6070564.68","Total Cost":"4565073.36","Total Profit":"1505491.32"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/17/2017","Order ID":"458851134","Ship Date":"5/3/2017","Units Sold":"3102","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"147189.90","Total Cost":"98612.58","Total Profit":"48577.32"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"6/9/2011","Order ID":"194348847","Ship Date":"7/6/2011","Units Sold":"998","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"649907.58","Total Cost":"523910.08","Total Profit":"125997.50"},{"Region":"Europe","Country":"Slovenia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"8/4/2010","Order ID":"181172549","Ship Date":"8/10/2010","Units Sold":"1838","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1196923.98","Total Cost":"964876.48","Total Profit":"232047.50"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"12/29/2015","Order ID":"430308568","Ship Date":"1/26/2016","Units Sold":"6723","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4492779.21","Total Cost":"3378576.42","Total Profit":"1114202.79"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/2/2011","Order ID":"123055732","Ship Date":"1/3/2011","Units Sold":"3780","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"582346.80","Total Cost":"343715.40","Total Profit":"238631.40"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"5/6/2010","Order ID":"761025369","Ship Date":"5/9/2010","Units Sold":"3173","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"810003.44","Total Cost":"505839.66","Total Profit":"304163.78"},{"Region":"Europe","Country":"Ukraine","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/13/2010","Order ID":"316141307","Ship Date":"12/29/2010","Units Sold":"2093","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"883015.77","Total Cost":"763296.17","Total Profit":"119719.60"},{"Region":"Asia","Country":"Maldives","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"6/30/2010","Order ID":"880639874","Ship Date":"7/4/2010","Units Sold":"9763","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1504087.78","Total Cost":"887749.59","Total Profit":"616338.19"},{"Region":"Europe","Country":"Finland","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/29/2011","Order ID":"117069900","Ship Date":"2/12/2012","Units Sold":"2440","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"375906.40","Total Cost":"221869.20","Total Profit":"154037.20"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"8/15/2011","Order ID":"708292710","Ship Date":"9/29/2011","Units Sold":"8408","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1282892.64","Total Cost":"819275.52","Total Profit":"463617.12"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"7/1/2010","Order ID":"907482135","Ship Date":"7/21/2010","Units Sold":"2985","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"459869.10","Total Cost":"271426.05","Total Profit":"188443.05"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"10/18/2010","Order ID":"388124501","Ship Date":"10/18/2010","Units Sold":"3520","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"898585.60","Total Cost":"561158.40","Total Profit":"337427.20"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"12/23/2011","Order ID":"694018638","Ship Date":"12/26/2011","Units Sold":"4392","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"40977.36","Total Cost":"30392.64","Total Profit":"10584.72"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"7/22/2014","Order ID":"289275872","Ship Date":"8/1/2014","Units Sold":"2014","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"18790.62","Total Cost":"13936.88","Total Profit":"4853.74"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"5/4/2016","Order ID":"408320033","Ship Date":"6/13/2016","Units Sold":"9826","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"2021208.20","Total Cost":"1150722.86","Total Profit":"870485.34"},{"Region":"Europe","Country":"Serbia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"3/9/2016","Order ID":"105887448","Ship Date":"4/2/2016","Units Sold":"3304","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"361061.12","Total Cost":"118415.36","Total Profit":"242645.76"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"3/31/2010","Order ID":"307026946","Ship Date":"5/6/2010","Units Sold":"4951","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"46192.83","Total Cost":"34260.92","Total Profit":"11931.91"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/13/2010","Order ID":"657099854","Ship Date":"11/19/2010","Units Sold":"9304","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6058857.84","Total Cost":"4884227.84","Total Profit":"1174630.00"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"7/16/2012","Order ID":"871780002","Ship Date":"7/27/2012","Units Sold":"7930","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1631201.00","Total Cost":"928682.30","Total Profit":"702518.70"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"10/24/2010","Order ID":"287053716","Ship Date":"11/27/2010","Units Sold":"4428","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"210108.60","Total Cost":"140766.12","Total Profit":"69342.48"},{"Region":"Europe","Country":"Finland","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/31/2013","Order ID":"109219825","Ship Date":"10/19/2013","Units Sold":"9428","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"770550.44","Total Cost":"534284.76","Total Profit":"236265.68"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/28/2014","Order ID":"264889657","Ship Date":"2/9/2015","Units Sold":"5591","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"456952.43","Total Cost":"316841.97","Total Profit":"140110.46"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"7/14/2013","Order ID":"750987040","Ship Date":"8/25/2013","Units Sold":"2609","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1100711.01","Total Cost":"951476.21","Total Profit":"149234.80"},{"Region":"Europe","Country":"Hungary","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"9/6/2016","Order ID":"284748303","Ship Date":"10/12/2016","Units Sold":"2206","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"180296.38","Total Cost":"125014.02","Total Profit":"55282.36"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/13/2013","Order ID":"353722274","Ship Date":"2/1/2014","Units Sold":"3136","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"483132.16","Total Cost":"285156.48","Total Profit":"197975.68"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"1/25/2011","Order ID":"265770280","Ship Date":"2/19/2011","Units Sold":"6187","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"293573.15","Total Cost":"196684.73","Total Profit":"96888.42"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/15/2011","Order ID":"299066150","Ship Date":"2/25/2011","Units Sold":"9174","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3870418.86","Total Cost":"3345666.06","Total Profit":"524752.80"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/13/2010","Order ID":"352096211","Ship Date":"6/21/2010","Units Sold":"1948","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"400703.60","Total Cost":"228130.28","Total Profit":"172573.32"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"5/23/2010","Order ID":"393659293","Ship Date":"7/10/2010","Units Sold":"1388","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"211781.04","Total Cost":"135246.72","Total Profit":"76534.32"},{"Region":"Asia","Country":"South Korea","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"7/15/2013","Order ID":"912866723","Ship Date":"7/28/2013","Units Sold":"6404","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"523398.92","Total Cost":"362914.68","Total Profit":"160484.24"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/2/2011","Order ID":"669142329","Ship Date":"12/17/2011","Units Sold":"2940","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"452936.40","Total Cost":"267334.20","Total Profit":"185602.20"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/14/2013","Order ID":"742222440","Ship Date":"1/3/2014","Units Sold":"8969","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"733036.37","Total Cost":"508273.23","Total Profit":"224763.14"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/5/2017","Order ID":"482155883","Ship Date":"6/5/2017","Units Sold":"9495","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1462799.70","Total Cost":"863380.35","Total Profit":"599419.35"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"2/11/2014","Order ID":"659303987","Ship Date":"2/24/2014","Units Sold":"1556","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"397215.68","Total Cost":"248057.52","Total Profit":"149158.16"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"6/19/2015","Order ID":"314340579","Ship Date":"7/12/2015","Units Sold":"9218","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"86003.94","Total Cost":"63788.56","Total Profit":"22215.38"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/6/2011","Order ID":"808251988","Ship Date":"6/3/2011","Units Sold":"8579","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5586730.59","Total Cost":"4503631.84","Total Profit":"1083098.75"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"8/16/2011","Order ID":"872337043","Ship Date":"8/31/2011","Units Sold":"2771","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"707380.88","Total Cost":"441752.82","Total Profit":"265628.06"},{"Region":"Asia","Country":"Taiwan","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"2/3/2012","Order ID":"658207070","Ship Date":"3/8/2012","Units Sold":"6954","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"64880.82","Total Cost":"48121.68","Total Profit":"16759.14"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/22/2013","Order ID":"387785899","Ship Date":"6/13/2013","Units Sold":"3320","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2162017.20","Total Cost":"1742867.20","Total Profit":"419150.00"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"3/21/2017","Order ID":"803309857","Ship Date":"4/21/2017","Units Sold":"6093","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"497980.89","Total Cost":"345290.31","Total Profit":"152690.58"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/29/2014","Order ID":"917327773","Ship Date":"2/17/2015","Units Sold":"6528","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1666467.84","Total Cost":"1040693.76","Total Profit":"625774.08"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"5/1/2014","Order ID":"262700974","Ship Date":"6/3/2014","Units Sold":"7911","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3337571.79","Total Cost":"2885062.59","Total Profit":"452509.20"},{"Region":"Europe","Country":"Lithuania","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"7/23/2012","Order ID":"242603290","Ship Date":"8/11/2012","Units Sold":"559","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"114986.30","Total Cost":"65464.49","Total Profit":"49521.81"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/23/2015","Order ID":"980521047","Ship Date":"9/7/2015","Units Sold":"6822","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2878133.58","Total Cost":"2487915.18","Total Profit":"390218.40"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/5/2011","Order ID":"870253074","Ship Date":"9/17/2011","Units Sold":"6078","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4061745.06","Total Cost":"3054438.12","Total Profit":"1007306.94"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/19/2012","Order ID":"625910699","Ship Date":"8/5/2012","Units Sold":"9740","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"2003518.00","Total Cost":"1140651.40","Total Profit":"862866.60"},{"Region":"Asia","Country":"Indonesia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"4/6/2012","Order ID":"131917750","Ship Date":"4/30/2012","Units Sold":"6249","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2636390.61","Total Cost":"2278947.81","Total Profit":"357442.80"},{"Region":"Europe","Country":"Netherlands","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/23/2013","Order ID":"693010556","Ship Date":"8/2/2013","Units Sold":"6079","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"936530.74","Total Cost":"552763.47","Total Profit":"383767.27"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"2/12/2016","Order ID":"984237945","Ship Date":"2/23/2016","Units Sold":"6735","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1385389.50","Total Cost":"788735.85","Total Profit":"596653.65"},{"Region":"Europe","Country":"Switzerland","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"8/9/2013","Order ID":"200961244","Ship Date":"9/25/2013","Units Sold":"7753","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3389611.60","Total Cost":"2041597.49","Total Profit":"1348014.11"},{"Region":"Asia","Country":"South Korea","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/16/2011","Order ID":"308854281","Ship Date":"11/28/2011","Units Sold":"5700","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"869706.00","Total Cost":"555408.00","Total Profit":"314298.00"},{"Region":"Europe","Country":"France","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"1/4/2010","Order ID":"193903386","Ship Date":"1/16/2010","Units Sold":"9176","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"85612.08","Total Cost":"63497.92","Total Profit":"22114.16"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"6/13/2012","Order ID":"612407386","Ship Date":"6/15/2012","Units Sold":"3809","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"311309.57","Total Cost":"215856.03","Total Profit":"95453.54"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/18/2016","Order ID":"140977609","Ship Date":"11/14/2016","Units Sold":"7262","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"344581.90","Total Cost":"230858.98","Total Profit":"113722.92"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"6/8/2010","Order ID":"126537883","Ship Date":"7/13/2010","Units Sold":"4226","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"651057.56","Total Cost":"384270.18","Total Profit":"266787.38"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/9/2012","Order ID":"636324536","Ship Date":"3/20/2012","Units Sold":"1426","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"601615.14","Total Cost":"520047.94","Total Profit":"81567.20"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"2/12/2015","Order ID":"907886397","Ship Date":"3/30/2015","Units Sold":"2615","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1702914.15","Total Cost":"1372770.40","Total Profit":"330143.75"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/1/2013","Order ID":"699084794","Ship Date":"11/17/2013","Units Sold":"3581","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2393074.87","Total Cost":"1799595.74","Total Profit":"593479.13"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"1/20/2015","Order ID":"738093554","Ship Date":"1/26/2015","Units Sold":"7140","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3121608.00","Total Cost":"1880176.20","Total Profit":"1241431.80"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"6/26/2011","Order ID":"473399007","Ship Date":"7/28/2011","Units Sold":"8141","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"75955.53","Total Cost":"56335.72","Total Profit":"19619.81"},{"Region":"Europe","Country":"Romania","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"11/1/2015","Order ID":"323799979","Ship Date":"12/19/2015","Units Sold":"8464","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5656237.28","Total Cost":"4253498.56","Total Profit":"1402738.72"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"8/3/2011","Order ID":"328407800","Ship Date":"8/27/2011","Units Sold":"2021","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"165176.33","Total Cost":"114530.07","Total Profit":"50646.26"},{"Region":"North America","Country":"Mexico","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"5/15/2017","Order ID":"596646296","Ship Date":"5/30/2017","Units Sold":"9753","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"797112.69","Total Cost":"552702.51","Total Profit":"244410.18"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"1/2/2015","Order ID":"858251798","Ship Date":"2/15/2015","Units Sold":"4634","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"707055.72","Total Cost":"451536.96","Total Profit":"255518.76"},{"Region":"Europe","Country":"Croatia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"11/21/2013","Order ID":"913273131","Ship Date":"12/8/2013","Units Sold":"6669","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"545057.37","Total Cost":"377932.23","Total Profit":"167125.14"},{"Region":"Europe","Country":"San Marino","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/29/2016","Order ID":"182071626","Ship Date":"12/5/2016","Units Sold":"7895","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"374617.75","Total Cost":"250982.05","Total Profit":"123635.70"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/1/2016","Order ID":"855321109","Ship Date":"9/22/2016","Units Sold":"7378","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1125735.24","Total Cost":"718912.32","Total Profit":"406822.92"},{"Region":"Europe","Country":"Austria","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/21/2014","Order ID":"244007909","Ship Date":"6/26/2014","Units Sold":"6217","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4048572.57","Total Cost":"3263676.32","Total Profit":"784896.25"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"2/24/2016","Order ID":"229430854","Ship Date":"3/5/2016","Units Sold":"2543","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1072866.27","Total Cost":"927406.67","Total Profit":"145459.60"},{"Region":"Asia","Country":"Maldives","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/16/2013","Order ID":"513201272","Ship Date":"1/6/2014","Units Sold":"6516","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"712068.48","Total Cost":"233533.44","Total Profit":"478535.04"},{"Region":"Europe","Country":"Belarus","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/29/2012","Order ID":"867242991","Ship Date":"4/28/2012","Units Sold":"5328","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2329401.60","Total Cost":"1403022.24","Total Profit":"926379.36"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/28/2016","Order ID":"683792340","Ship Date":"7/12/2016","Units Sold":"8204","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3586788.80","Total Cost":"2160359.32","Total Profit":"1426429.48"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/29/2014","Order ID":"325398147","Ship Date":"6/5/2014","Units Sold":"1398","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"589802.22","Total Cost":"509836.62","Total Profit":"79965.60"},{"Region":"Asia","Country":"India","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"2/27/2017","Order ID":"674921739","Ship Date":"3/26/2017","Units Sold":"3196","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1348360.44","Total Cost":"1165549.24","Total Profit":"182811.20"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/14/2010","Order ID":"885536944","Ship Date":"12/14/2010","Units Sold":"8915","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5957627.05","Total Cost":"4480144.10","Total Profit":"1477482.95"},{"Region":"Asia","Country":"North Korea","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"1/12/2013","Order ID":"630730092","Ship Date":"2/18/2013","Units Sold":"5905","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"909724.30","Total Cost":"536941.65","Total Profit":"372782.65"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/15/2015","Order ID":"554300010","Ship Date":"4/18/2015","Units Sold":"8546","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1303948.68","Total Cost":"832722.24","Total Profit":"471226.44"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"8/28/2010","Order ID":"920358026","Ship Date":"9/29/2010","Units Sold":"3247","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1419588.40","Total Cost":"855032.51","Total Profit":"564555.89"},{"Region":"Europe","Country":"Iceland","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"2/3/2012","Order ID":"263327968","Ship Date":"3/15/2012","Units Sold":"3452","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2306868.04","Total Cost":"1734768.08","Total Profit":"572099.96"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"11/19/2010","Order ID":"337946164","Ship Date":"12/1/2010","Units Sold":"4635","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2026422.00","Total Cost":"1220534.55","Total Profit":"805887.45"},{"Region":"Asia","Country":"Brunei","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/30/2010","Order ID":"269261443","Ship Date":"10/18/2010","Units Sold":"9299","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1016194.72","Total Cost":"333276.16","Total Profit":"682918.56"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"6/18/2016","Order ID":"602635133","Ship Date":"7/31/2016","Units Sold":"1983","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"866967.60","Total Cost":"522183.39","Total Profit":"344784.21"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/12/2014","Order ID":"153741061","Ship Date":"12/19/2014","Units Sold":"4251","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"654909.06","Total Cost":"386543.43","Total Profit":"268365.63"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"11/23/2016","Order ID":"958565557","Ship Date":"1/10/2017","Units Sold":"9704","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1480636.32","Total Cost":"945557.76","Total Profit":"535078.56"},{"Region":"North America","Country":"Greenland","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"2/21/2015","Order ID":"623407447","Ship Date":"4/1/2015","Units Sold":"8972","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3785197.08","Total Cost":"3271998.68","Total Profit":"513198.40"},{"Region":"Asia","Country":"Nepal","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/24/2011","Order ID":"874878060","Ship Date":"3/13/2011","Units Sold":"4715","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3150893.05","Total Cost":"2369476.10","Total Profit":"781416.95"},{"Region":"Asia","Country":"India","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/29/2011","Order ID":"809901225","Ship Date":"4/6/2011","Units Sold":"6625","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"314356.25","Total Cost":"210608.75","Total Profit":"103747.50"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"3/23/2015","Order ID":"945713269","Ship Date":"3/24/2015","Units Sold":"6427","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4294971.29","Total Cost":"3229824.58","Total Profit":"1065146.71"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"8/13/2012","Order ID":"969863021","Ship Date":"9/6/2012","Units Sold":"2875","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"26823.75","Total Cost":"19895.00","Total Profit":"6928.75"},{"Region":"North America","Country":"Canada","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/21/2016","Order ID":"190211808","Ship Date":"10/5/2016","Units Sold":"6756","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1030830.48","Total Cost":"658304.64","Total Profit":"372525.84"},{"Region":"Europe","Country":"Finland","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"5/27/2015","Order ID":"684933459","Ship Date":"5/30/2015","Units Sold":"5886","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3933437.22","Total Cost":"2957950.44","Total Profit":"975486.78"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/20/2012","Order ID":"552514302","Ship Date":"10/22/2012","Units Sold":"115","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"12567.20","Total Cost":"4121.60","Total Profit":"8445.60"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"1/13/2010","Order ID":"661753165","Ship Date":"2/12/2010","Units Sold":"6322","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"58984.26","Total Cost":"43748.24","Total Profit":"15236.02"},{"Region":"Europe","Country":"Germany","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/30/2017","Order ID":"601761376","Ship Date":"6/11/2017","Units Sold":"3419","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"521671.02","Total Cost":"333147.36","Total Profit":"188523.66"},{"Region":"Europe","Country":"Ukraine","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/30/2011","Order ID":"931962764","Ship Date":"9/16/2011","Units Sold":"7347","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4909779.69","Total Cost":"3692161.38","Total Profit":"1217618.31"},{"Region":"Europe","Country":"Norway","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/3/2016","Order ID":"932093656","Ship Date":"5/18/2016","Units Sold":"6081","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"936838.86","Total Cost":"552945.33","Total Profit":"383893.53"},{"Region":"Europe","Country":"Albania","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/5/2014","Order ID":"852202880","Ship Date":"4/20/2014","Units Sold":"4625","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3090748.75","Total Cost":"2324247.50","Total Profit":"766501.25"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"4/3/2012","Order ID":"562651765","Ship Date":"4/8/2012","Units Sold":"15","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"3085.50","Total Cost":"1756.65","Total Profit":"1328.85"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/16/2014","Order ID":"904114139","Ship Date":"3/17/2014","Units Sold":"6320","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"973659.20","Total Cost":"574677.60","Total Profit":"398981.60"},{"Region":"Europe","Country":"Slovenia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/18/2017","Order ID":"537576329","Ship Date":"9/6/2017","Units Sold":"9637","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6440117.99","Total Cost":"4842977.98","Total Profit":"1597140.01"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"1/2/2017","Order ID":"894337165","Ship Date":"2/9/2017","Units Sold":"3096","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"338330.88","Total Cost":"110960.64","Total Profit":"227370.24"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"12/11/2015","Order ID":"326007974","Ship Date":"12/26/2015","Units Sold":"1859","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"151936.07","Total Cost":"105349.53","Total Profit":"46586.54"},{"Region":"Asia","Country":"Mongolia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/31/2014","Order ID":"854512584","Ship Date":"1/20/2015","Units Sold":"8118","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5425015.86","Total Cost":"4079619.72","Total Profit":"1345396.14"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"11/17/2015","Order ID":"522087323","Ship Date":"11/21/2015","Units Sold":"6096","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1556186.88","Total Cost":"971824.32","Total Profit":"584362.56"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"7/25/2017","Order ID":"141281020","Ship Date":"7/30/2017","Units Sold":"7048","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4709966.96","Total Cost":"3541901.92","Total Profit":"1168065.04"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"7/13/2012","Order ID":"144955003","Ship Date":"8/11/2012","Units Sold":"4261","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"465642.08","Total Cost":"152714.24","Total Profit":"312927.84"},{"Region":"Europe","Country":"Armenia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"4/2/2013","Order ID":"136283099","Ship Date":"4/16/2013","Units Sold":"8052","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1656296.40","Total Cost":"942969.72","Total Profit":"713326.68"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/18/2010","Order ID":"238751637","Ship Date":"8/2/2010","Units Sold":"770","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"324855.30","Total Cost":"280811.30","Total Profit":"44044.00"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"3/24/2015","Order ID":"646159446","Ship Date":"4/20/2015","Units Sold":"1794","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"196048.32","Total Cost":"64296.96","Total Profit":"131751.36"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/16/2016","Order ID":"272617852","Ship Date":"6/18/2016","Units Sold":"2535","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"207185.55","Total Cost":"143658.45","Total Profit":"63527.10"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/29/2015","Order ID":"802550685","Ship Date":"12/7/2015","Units Sold":"1437","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"960303.99","Total Cost":"722149.98","Total Profit":"238154.01"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/25/2015","Order ID":"840694272","Ship Date":"2/5/2016","Units Sold":"8972","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1382226.32","Total Cost":"815823.96","Total Profit":"566402.36"},{"Region":"Asia","Country":"Philippines","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/7/2016","Order ID":"862097442","Ship Date":"11/14/2016","Units Sold":"2646","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1156831.20","Total Cost":"696771.18","Total Profit":"460060.02"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"11/13/2011","Order ID":"962121522","Ship Date":"12/29/2011","Units Sold":"1994","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"841248.66","Total Cost":"727191.86","Total Profit":"114056.80"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"6/9/2014","Order ID":"406440341","Ship Date":"6/12/2014","Units Sold":"3584","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2395079.68","Total Cost":"1801103.36","Total Profit":"593976.32"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/30/2016","Order ID":"781040227","Ship Date":"6/10/2016","Units Sold":"6014","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"917616.12","Total Cost":"586004.16","Total Profit":"331611.96"},{"Region":"Asia","Country":"Japan","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/1/2014","Order ID":"142220008","Ship Date":"3/8/2014","Units Sold":"4916","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2149275.20","Total Cost":"1294530.28","Total Profit":"854744.92"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/11/2013","Order ID":"666591012","Ship Date":"3/26/2013","Units Sold":"7948","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5311409.96","Total Cost":"3994187.92","Total Profit":"1317222.04"},{"Region":"Europe","Country":"Norway","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/13/2015","Order ID":"101077067","Ship Date":"12/28/2015","Units Sold":"9805","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6385114.05","Total Cost":"5147232.80","Total Profit":"1237881.25"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/19/2010","Order ID":"312914502","Ship Date":"12/9/2010","Units Sold":"7210","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3152212.00","Total Cost":"1898609.30","Total Profit":"1253602.70"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/8/2014","Order ID":"539652144","Ship Date":"2/11/2014","Units Sold":"3917","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"597655.86","Total Cost":"381672.48","Total Profit":"215983.38"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"2/26/2012","Order ID":"539151322","Ship Date":"3/17/2012","Units Sold":"5712","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2497286.40","Total Cost":"1504140.96","Total Profit":"993145.44"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/29/2012","Order ID":"139585864","Ship Date":"3/1/2012","Units Sold":"5414","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"256894.30","Total Cost":"172111.06","Total Profit":"84783.24"},{"Region":"Europe","Country":"Monaco","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/28/2014","Order ID":"589442098","Ship Date":"3/8/2014","Units Sold":"7870","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3320274.30","Total Cost":"2870110.30","Total Profit":"450164.00"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/18/2015","Order ID":"507518851","Ship Date":"11/1/2015","Units Sold":"4961","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"405462.53","Total Cost":"281139.87","Total Profit":"124322.66"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/13/2015","Order ID":"832927453","Ship Date":"8/29/2015","Units Sold":"598","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"389423.58","Total Cost":"313926.08","Total Profit":"75497.50"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"4/6/2017","Order ID":"775091731","Ship Date":"4/18/2017","Units Sold":"5722","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"467659.06","Total Cost":"324265.74","Total Profit":"143393.32"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"1/20/2010","Order ID":"963748013","Ship Date":"1/22/2010","Units Sold":"3309","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1446694.80","Total Cost":"871358.97","Total Profit":"575335.83"},{"Region":"Europe","Country":"Slovenia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/16/2010","Order ID":"298945128","Ship Date":"1/31/2011","Units Sold":"3362","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1418394.18","Total Cost":"1226087.78","Total Profit":"192306.40"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/17/2015","Order ID":"901044404","Ship Date":"4/29/2015","Units Sold":"7917","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"647056.41","Total Cost":"448656.39","Total Profit":"198400.02"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/24/2015","Order ID":"460719668","Ship Date":"9/6/2015","Units Sold":"6043","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2549481.27","Total Cost":"2203821.67","Total Profit":"345659.60"},{"Region":"Europe","Country":"Russia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"4/2/2013","Order ID":"788957250","Ship Date":"4/23/2013","Units Sold":"8837","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"82449.21","Total Cost":"61152.04","Total Profit":"21297.17"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"3/12/2014","Order ID":"167055976","Ship Date":"4/29/2014","Units Sold":"4430","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"484110.40","Total Cost":"158771.20","Total Profit":"325339.20"},{"Region":"Europe","Country":"Austria","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/22/2010","Order ID":"996627175","Ship Date":"7/9/2010","Units Sold":"2983","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"325982.24","Total Cost":"106910.72","Total Profit":"219071.52"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"2/1/2014","Order ID":"349594676","Ship Date":"3/16/2014","Units Sold":"1688","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"430912.64","Total Cost":"269100.96","Total Profit":"161811.68"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/21/2015","Order ID":"318194806","Ship Date":"5/22/2015","Units Sold":"9769","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"2009483.30","Total Cost":"1144047.59","Total Profit":"865435.71"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/18/2017","Order ID":"364976394","Ship Date":"2/24/2017","Units Sold":"3480","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"380294.40","Total Cost":"124723.20","Total Profit":"255571.20"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/6/2015","Order ID":"472800767","Ship Date":"9/13/2015","Units Sold":"1108","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"10337.64","Total Cost":"7667.36","Total Profit":"2670.28"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"11/19/2011","Order ID":"694841754","Ship Date":"11/28/2011","Units Sold":"7971","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"74369.43","Total Cost":"55159.32","Total Profit":"19210.11"},{"Region":"Asia","Country":"Taiwan","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"9/30/2015","Order ID":"704585683","Ship Date":"10/1/2015","Units Sold":"1416","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"67189.20","Total Cost":"45014.64","Total Profit":"22174.56"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"7/1/2011","Order ID":"245831382","Ship Date":"8/2/2011","Units Sold":"5824","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"475995.52","Total Cost":"330046.08","Total Profit":"145949.44"},{"Region":"Europe","Country":"Finland","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/20/2014","Order ID":"482690179","Ship Date":"11/20/2014","Units Sold":"7605","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1171626.30","Total Cost":"691522.65","Total Profit":"480103.65"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"11/22/2015","Order ID":"849585902","Ship Date":"12/11/2015","Units Sold":"203","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"132195.63","Total Cost":"106566.88","Total Profit":"25628.75"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"8/16/2013","Order ID":"401254880","Ship Date":"9/13/2013","Units Sold":"9091","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"993464.48","Total Cost":"325821.44","Total Profit":"667643.04"},{"Region":"Europe","Country":"Poland","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/20/2011","Order ID":"962745940","Ship Date":"10/19/2011","Units Sold":"6773","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4410645.33","Total Cost":"3555554.08","Total Profit":"855091.25"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"12/17/2014","Order ID":"379420411","Ship Date":"12/23/2014","Units Sold":"7786","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3404039.20","Total Cost":"2050287.38","Total Profit":"1353751.82"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"4/4/2010","Order ID":"166952121","Ship Date":"5/6/2010","Units Sold":"3697","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"564088.26","Total Cost":"360235.68","Total Profit":"203852.58"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/18/2015","Order ID":"561327397","Ship Date":"12/29/2015","Units Sold":"8106","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1667404.20","Total Cost":"949293.66","Total Profit":"718110.54"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/2/2017","Order ID":"968845069","Ship Date":"2/10/2017","Units Sold":"1641","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"134118.93","Total Cost":"92995.47","Total Profit":"41123.46"},{"Region":"Asia","Country":"Malaysia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/10/2015","Order ID":"416116464","Ship Date":"5/30/2015","Units Sold":"6963","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"330394.35","Total Cost":"221353.77","Total Profit":"109040.58"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/27/2016","Order ID":"700065410","Ship Date":"12/30/2016","Units Sold":"3767","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"307876.91","Total Cost":"213475.89","Total Profit":"94401.02"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"3/28/2014","Order ID":"537928235","Ship Date":"5/14/2014","Units Sold":"3774","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"179076.30","Total Cost":"119975.46","Total Profit":"59100.84"},{"Region":"Europe","Country":"Latvia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/4/2011","Order ID":"517253768","Ship Date":"10/30/2011","Units Sold":"5739","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"884150.34","Total Cost":"521847.27","Total Profit":"362303.07"},{"Region":"Europe","Country":"Poland","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"4/12/2015","Order ID":"845903337","Ship Date":"5/14/2015","Units Sold":"450","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"21352.50","Total Cost":"14305.50","Total Profit":"7047.00"},{"Region":"Asia","Country":"Brunei","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"8/29/2012","Order ID":"902050769","Ship Date":"10/12/2012","Units Sold":"5723","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1460967.44","Total Cost":"912360.66","Total Profit":"548606.78"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"7/21/2015","Order ID":"584182393","Ship Date":"7/23/2015","Units Sold":"1407","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"114994.11","Total Cost":"79734.69","Total Profit":"35259.42"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/24/2010","Order ID":"761097037","Ship Date":"4/5/2010","Units Sold":"4381","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"478755.68","Total Cost":"157015.04","Total Profit":"321740.64"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"1/8/2014","Order ID":"121906030","Ship Date":"2/25/2014","Units Sold":"3558","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"548145.48","Total Cost":"323528.94","Total Profit":"224616.54"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/16/2011","Order ID":"126033198","Ship Date":"9/25/2011","Units Sold":"4879","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"45521.07","Total Cost":"33762.68","Total Profit":"11758.39"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/18/2011","Order ID":"953214871","Ship Date":"8/5/2011","Units Sold":"6318","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"58946.94","Total Cost":"43720.56","Total Profit":"15226.38"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"7/25/2011","Order ID":"153499877","Ship Date":"8/2/2011","Units Sold":"2880","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"592416.00","Total Cost":"337276.80","Total Profit":"255139.20"},{"Region":"Europe","Country":"Armenia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"11/14/2010","Order ID":"297249543","Ship Date":"12/11/2010","Units Sold":"1600","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"246496.00","Total Cost":"145488.00","Total Profit":"101008.00"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"6/1/2013","Order ID":"425137698","Ship Date":"6/8/2013","Units Sold":"6547","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"535086.31","Total Cost":"371018.49","Total Profit":"164067.82"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/24/2016","Order ID":"998150670","Ship Date":"10/13/2016","Units Sold":"3819","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1669666.80","Total Cost":"1005657.27","Total Profit":"664009.53"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"4/15/2015","Order ID":"747587287","Ship Date":"5/24/2015","Units Sold":"6546","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4374495.42","Total Cost":"3289626.84","Total Profit":"1084868.58"},{"Region":"North America","Country":"United States of America","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"9/10/2012","Order ID":"725058877","Ship Date":"10/6/2012","Units Sold":"9889","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4323470.80","Total Cost":"2604070.37","Total Profit":"1719400.43"},{"Region":"Europe","Country":"Poland","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"1/30/2017","Order ID":"252489268","Ship Date":"3/19/2017","Units Sold":"6040","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2640688.00","Total Cost":"1590513.20","Total Profit":"1050174.80"},{"Region":"Europe","Country":"France","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/4/2015","Order ID":"972114789","Ship Date":"1/9/2015","Units Sold":"9223","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3891091.47","Total Cost":"3363535.87","Total Profit":"527555.60"},{"Region":"Europe","Country":"Portugal","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/13/2013","Order ID":"996484267","Ship Date":"2/22/2013","Units Sold":"694","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"56720.62","Total Cost":"39328.98","Total Profit":"17391.64"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"3/16/2011","Order ID":"758459031","Ship Date":"3/19/2011","Units Sold":"3737","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"768700.90","Total Cost":"437640.07","Total Profit":"331060.83"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/2/2014","Order ID":"761212909","Ship Date":"7/8/2014","Units Sold":"8670","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"80891.10","Total Cost":"59996.40","Total Profit":"20894.70"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"6/29/2013","Order ID":"228232228","Ship Date":"8/12/2013","Units Sold":"7843","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"641008.39","Total Cost":"444462.81","Total Profit":"196545.58"},{"Region":"Europe","Country":"Malta","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"9/3/2011","Order ID":"253315818","Ship Date":"9/21/2011","Units Sold":"635","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"130619.50","Total Cost":"74364.85","Total Profit":"56254.65"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/8/2013","Order ID":"650575006","Ship Date":"4/24/2013","Units Sold":"8456","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1302731.36","Total Cost":"768904.08","Total Profit":"533827.28"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/15/2012","Order ID":"404433619","Ship Date":"5/17/2012","Units Sold":"9750","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2488980.00","Total Cost":"1554345.00","Total Profit":"934635.00"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"5/21/2011","Order ID":"819627988","Ship Date":"6/12/2011","Units Sold":"4990","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2105231.10","Total Cost":"1819803.10","Total Profit":"285428.00"},{"Region":"Asia","Country":"Maldives","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/28/2010","Order ID":"571206939","Ship Date":"7/31/2010","Units Sold":"1682","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"709618.98","Total Cost":"613408.58","Total Profit":"96210.40"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/7/2010","Order ID":"654531800","Ship Date":"8/31/2010","Units Sold":"9360","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1925352.00","Total Cost":"1096149.60","Total Profit":"829202.40"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/22/2017","Order ID":"335276401","Ship Date":"9/2/2017","Units Sold":"4592","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"501813.76","Total Cost":"164577.28","Total Profit":"337236.48"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"7/21/2015","Order ID":"299427068","Ship Date":"9/7/2015","Units Sold":"5978","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"488581.94","Total Cost":"338773.26","Total Profit":"149808.68"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"5/8/2016","Order ID":"403282630","Ship Date":"6/18/2016","Units Sold":"9147","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"434025.15","Total Cost":"290783.13","Total Profit":"143242.02"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/23/2010","Order ID":"123454415","Ship Date":"2/25/2010","Units Sold":"1760","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"742526.40","Total Cost":"641854.40","Total Profit":"100672.00"},{"Region":"Asia","Country":"Myanmar","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"5/13/2014","Order ID":"806866252","Ship Date":"6/6/2014","Units Sold":"8509","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5686309.43","Total Cost":"4276112.86","Total Profit":"1410196.57"},{"Region":"Asia","Country":"North Korea","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"2/18/2010","Order ID":"720754468","Ship Date":"3/19/2010","Units Sold":"6119","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1562058.32","Total Cost":"975490.98","Total Profit":"586567.34"},{"Region":"Asia","Country":"Myanmar","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/25/2013","Order ID":"902667891","Ship Date":"7/14/2013","Units Sold":"8343","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"681873.39","Total Cost":"472797.81","Total Profit":"209075.58"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"12/12/2010","Order ID":"210467851","Ship Date":"12/12/2010","Units Sold":"969","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"45979.05","Total Cost":"30804.51","Total Profit":"15174.54"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"2/23/2017","Order ID":"272328174","Ship Date":"4/1/2017","Units Sold":"6813","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"323276.85","Total Cost":"216585.27","Total Profit":"106691.58"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"2/21/2017","Order ID":"536735188","Ship Date":"3/17/2017","Units Sold":"725","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"34401.25","Total Cost":"23047.75","Total Profit":"11353.50"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"1/25/2016","Order ID":"522487723","Ship Date":"2/12/2016","Units Sold":"4583","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3062681.41","Total Cost":"2303140.82","Total Profit":"759540.59"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/17/2012","Order ID":"268697106","Ship Date":"8/23/2012","Units Sold":"2300","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"970347.00","Total Cost":"838787.00","Total Profit":"131560.00"},{"Region":"Asia","Country":"China","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/21/2010","Order ID":"784787166","Ship Date":"2/28/2010","Units Sold":"4817","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"526401.76","Total Cost":"172641.28","Total Profit":"353760.48"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/24/2013","Order ID":"900494229","Ship Date":"4/5/2013","Units Sold":"5108","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3413523.16","Total Cost":"2566974.32","Total Profit":"846548.84"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/28/2016","Order ID":"415867125","Ship Date":"1/30/2016","Units Sold":"3179","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1341188.31","Total Cost":"1159349.51","Total Profit":"181838.80"},{"Region":"Asia","Country":"Myanmar","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"2/21/2014","Order ID":"551267182","Ship Date":"4/10/2014","Units Sold":"1064","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"692887.44","Total Cost":"558557.44","Total Profit":"134330.00"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"2/4/2015","Order ID":"797368228","Ship Date":"3/10/2015","Units Sold":"7833","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5100927.93","Total Cost":"4112011.68","Total Profit":"988916.25"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/3/2012","Order ID":"265156590","Ship Date":"9/7/2012","Units Sold":"4582","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"705902.92","Total Cost":"416641.26","Total Profit":"289261.66"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/17/2012","Order ID":"835931098","Ship Date":"9/29/2012","Units Sold":"9443","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1454788.58","Total Cost":"858651.99","Total Profit":"596136.59"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"1/12/2015","Order ID":"411303079","Ship Date":"2/23/2015","Units Sold":"2576","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"122231.20","Total Cost":"81891.04","Total Profit":"40340.16"},{"Region":"Asia","Country":"Japan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"5/29/2016","Order ID":"563196361","Ship Date":"7/2/2016","Units Sold":"1173","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"241286.10","Total Cost":"137370.03","Total Profit":"103916.07"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"10/3/2014","Order ID":"683847272","Ship Date":"10/20/2014","Units Sold":"4459","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"41602.47","Total Cost":"30856.28","Total Profit":"10746.19"},{"Region":"Europe","Country":"Andorra","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"11/3/2012","Order ID":"235804641","Ship Date":"11/8/2012","Units Sold":"8688","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"81059.04","Total Cost":"60120.96","Total Profit":"20938.08"},{"Region":"Europe","Country":"Lithuania","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/4/2014","Order ID":"101929795","Ship Date":"7/30/2014","Units Sold":"2146","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"20022.18","Total Cost":"14850.32","Total Profit":"5171.86"},{"Region":"Asia","Country":"Nepal","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/14/2013","Order ID":"335396564","Ship Date":"5/30/2013","Units Sold":"151","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"38547.28","Total Cost":"24072.42","Total Profit":"14474.86"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"5/11/2011","Order ID":"609691274","Ship Date":"6/24/2011","Units Sold":"51","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"4168.23","Total Cost":"2890.17","Total Profit":"1278.06"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/3/2015","Order ID":"668612754","Ship Date":"11/10/2015","Units Sold":"6227","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2627109.03","Total Cost":"2270924.63","Total Profit":"356184.40"},{"Region":"Asia","Country":"Bhutan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/7/2011","Order ID":"776272332","Ship Date":"11/15/2011","Units Sold":"5088","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3400157.76","Total Cost":"2556923.52","Total Profit":"843234.24"},{"Region":"Europe","Country":"Ireland","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"8/3/2012","Order ID":"367093837","Ship Date":"8/29/2012","Units Sold":"79","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"51445.59","Total Cost":"41471.84","Total Profit":"9973.75"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/2/2016","Order ID":"295813596","Ship Date":"11/24/2016","Units Sold":"6671","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"545220.83","Total Cost":"378045.57","Total Profit":"167175.26"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/2/2013","Order ID":"587480437","Ship Date":"3/20/2013","Units Sold":"7371","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1135576.26","Total Cost":"670245.03","Total Profit":"465331.23"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/5/2013","Order ID":"887455689","Ship Date":"1/23/2014","Units Sold":"6715","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1034512.90","Total Cost":"610594.95","Total Profit":"423917.95"},{"Region":"Europe","Country":"Cyprus","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"8/11/2013","Order ID":"911413180","Ship Date":"9/14/2013","Units Sold":"6269","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2644828.41","Total Cost":"2286241.61","Total Profit":"358586.80"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/4/2015","Order ID":"895339238","Ship Date":"5/15/2015","Units Sold":"9632","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6272454.72","Total Cost":"5056414.72","Total Profit":"1216040.00"},{"Region":"Asia","Country":"Thailand","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/10/2011","Order ID":"245532691","Ship Date":"12/15/2011","Units Sold":"7434","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"352743.30","Total Cost":"236326.86","Total Profit":"116416.44"},{"Region":"Asia","Country":"Taiwan","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"6/17/2012","Order ID":"688604867","Ship Date":"6/18/2012","Units Sold":"2337","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1521877.77","Total Cost":"1226831.52","Total Profit":"295046.25"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"8/23/2015","Order ID":"421479594","Ship Date":"9/19/2015","Units Sold":"4033","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2626329.93","Total Cost":"2117163.68","Total Profit":"509166.25"},{"Region":"Europe","Country":"Armenia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"9/21/2013","Order ID":"861393201","Ship Date":"10/10/2013","Units Sold":"4245","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"653984.70","Total Cost":"385997.85","Total Profit":"267986.85"},{"Region":"Asia","Country":"Japan","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"5/15/2011","Order ID":"795894515","Ship Date":"5/20/2011","Units Sold":"1728","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"141229.44","Total Cost":"97925.76","Total Profit":"43303.68"},{"Region":"Europe","Country":"Montenegro","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"4/22/2014","Order ID":"432844865","Ship Date":"5/19/2014","Units Sold":"7269","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"67819.77","Total Cost":"50301.48","Total Profit":"17518.29"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/25/2010","Order ID":"950418078","Ship Date":"6/6/2010","Units Sold":"8685","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"709825.05","Total Cost":"492178.95","Total Profit":"217646.10"},{"Region":"Asia","Country":"Thailand","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"4/13/2011","Order ID":"447100484","Ship Date":"4/15/2011","Units Sold":"5824","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"475995.52","Total Cost":"330046.08","Total Profit":"145949.44"},{"Region":"Asia","Country":"Taiwan","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"9/27/2010","Order ID":"691690909","Ship Date":"10/25/2010","Units Sold":"5566","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3624634.86","Total Cost":"2921927.36","Total Profit":"702707.50"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"3/9/2011","Order ID":"373300683","Ship Date":"4/11/2011","Units Sold":"6823","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"323751.35","Total Cost":"216903.17","Total Profit":"106848.18"},{"Region":"Asia","Country":"South Korea","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/23/2012","Order ID":"951353633","Ship Date":"6/10/2012","Units Sold":"5536","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1413230.08","Total Cost":"882549.12","Total Profit":"530680.96"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/16/2014","Order ID":"805586087","Ship Date":"12/5/2014","Units Sold":"9680","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1491300.80","Total Cost":"880202.40","Total Profit":"611098.40"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"11/30/2016","Order ID":"186046874","Ship Date":"12/30/2016","Units Sold":"4259","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"465423.52","Total Cost":"152642.56","Total Profit":"312780.96"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/13/2017","Order ID":"763097321","Ship Date":"8/7/2017","Units Sold":"6310","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"689556.80","Total Cost":"226150.40","Total Profit":"463406.40"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/7/2013","Order ID":"677411258","Ship Date":"3/21/2013","Units Sold":"9900","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2527272.00","Total Cost":"1578258.00","Total Profit":"949014.00"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"3/23/2016","Order ID":"389975011","Ship Date":"4/20/2016","Units Sold":"1127","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"171957.66","Total Cost":"109814.88","Total Profit":"62142.78"},{"Region":"Europe","Country":"Hungary","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/15/2014","Order ID":"432087409","Ship Date":"2/2/2014","Units Sold":"3121","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"341062.88","Total Cost":"111856.64","Total Profit":"229206.24"},{"Region":"Europe","Country":"Georgia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"6/28/2017","Order ID":"955359780","Ship Date":"7/12/2017","Units Sold":"1044","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"266512.32","Total Cost":"166434.48","Total Profit":"100077.84"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"1/24/2012","Order ID":"381715953","Ship Date":"1/26/2012","Units Sold":"7088","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1081487.04","Total Cost":"690654.72","Total Profit":"390832.32"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"8/13/2014","Order ID":"353392255","Ship Date":"9/18/2014","Units Sold":"5476","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"51091.08","Total Cost":"37893.92","Total Profit":"13197.16"},{"Region":"Europe","Country":"Greece","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/21/2016","Order ID":"782937514","Ship Date":"7/23/2016","Units Sold":"7464","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4987967.28","Total Cost":"3750958.56","Total Profit":"1237008.72"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"5/9/2010","Order ID":"303213059","Ship Date":"5/14/2010","Units Sold":"6337","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"692507.36","Total Cost":"227118.08","Total Profit":"465389.28"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/21/2016","Order ID":"317392718","Ship Date":"2/27/2016","Units Sold":"2413","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"197214.49","Total Cost":"136744.71","Total Profit":"60469.78"},{"Region":"Europe","Country":"Norway","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"11/30/2016","Order ID":"948962819","Ship Date":"11/30/2016","Units Sold":"8041","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"381545.45","Total Cost":"255623.39","Total Profit":"125922.06"},{"Region":"Asia","Country":"Vietnam","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/2/2016","Order ID":"591722190","Ship Date":"4/10/2016","Units Sold":"2600","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"212498.00","Total Cost":"147342.00","Total Profit":"65156.00"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/20/2010","Order ID":"859782159","Ship Date":"7/28/2010","Units Sold":"7502","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"69993.66","Total Cost":"51913.84","Total Profit":"18079.82"},{"Region":"Asia","Country":"North Korea","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"10/17/2016","Order ID":"737566554","Ship Date":"10/19/2016","Units Sold":"1189","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"97176.97","Total Cost":"67380.63","Total Profit":"29796.34"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/2/2014","Order ID":"629811704","Ship Date":"12/2/2014","Units Sold":"4134","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"196158.30","Total Cost":"131419.86","Total Profit":"64738.44"},{"Region":"Asia","Country":"Taiwan","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/4/2012","Order ID":"111566436","Ship Date":"4/9/2012","Units Sold":"3842","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"182302.90","Total Cost":"122137.18","Total Profit":"60165.72"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"5/18/2017","Order ID":"178192079","Ship Date":"6/17/2017","Units Sold":"9851","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1503065.58","Total Cost":"959881.44","Total Profit":"543184.14"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"7/28/2013","Order ID":"995362460","Ship Date":"8/5/2013","Units Sold":"8726","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2227573.28","Total Cost":"1391098.92","Total Profit":"836474.36"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"3/31/2015","Order ID":"549063909","Ship Date":"5/3/2015","Units Sold":"9067","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"741045.91","Total Cost":"513826.89","Total Profit":"227219.02"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/9/2011","Order ID":"495595252","Ship Date":"6/10/2011","Units Sold":"6503","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"710647.84","Total Cost":"233067.52","Total Profit":"477580.32"},{"Region":"Europe","Country":"Austria","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/23/2014","Order ID":"311567819","Ship Date":"1/20/2015","Units Sold":"8696","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"710724.08","Total Cost":"492802.32","Total Profit":"217921.76"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/2/2013","Order ID":"443905436","Ship Date":"4/13/2013","Units Sold":"338","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"69526.60","Total Cost":"39583.18","Total Profit":"29943.42"},{"Region":"Europe","Country":"Armenia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/6/2017","Order ID":"959844434","Ship Date":"6/22/2017","Units Sold":"8153","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2081297.84","Total Cost":"1299751.26","Total Profit":"781546.58"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"3/31/2013","Order ID":"196933639","Ship Date":"5/14/2013","Units Sold":"5895","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3838882.95","Total Cost":"3094639.20","Total Profit":"744243.75"},{"Region":"Asia","Country":"Maldives","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/19/2010","Order ID":"613034379","Ship Date":"3/29/2010","Units Sold":"9351","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1426775.58","Total Cost":"911161.44","Total Profit":"515614.14"},{"Region":"Europe","Country":"Ukraine","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/13/2015","Order ID":"236320483","Ship Date":"3/4/2015","Units Sold":"1337","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"341309.36","Total Cost":"213144.54","Total Profit":"128164.82"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"2/9/2013","Order ID":"315278279","Ship Date":"3/19/2013","Units Sold":"6704","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"547917.92","Total Cost":"379915.68","Total Profit":"168002.24"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"11/21/2016","Order ID":"368706595","Ship Date":"12/11/2016","Units Sold":"7330","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1871202.40","Total Cost":"1168548.60","Total Profit":"702653.80"},{"Region":"Europe","Country":"Switzerland","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"7/8/2017","Order ID":"435716760","Ship Date":"8/13/2017","Units Sold":"7127","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4762760.29","Total Cost":"3581602.58","Total Profit":"1181157.71"},{"Region":"Europe","Country":"Germany","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/24/2010","Order ID":"625732600","Ship Date":"1/4/2011","Units Sold":"7036","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1447305.20","Total Cost":"823985.96","Total Profit":"623319.24"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/20/2016","Order ID":"668490445","Ship Date":"9/25/2016","Units Sold":"33","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"5083.98","Total Cost":"3000.69","Total Profit":"2083.29"},{"Region":"Asia","Country":"Japan","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/2/2014","Order ID":"364039123","Ship Date":"3/12/2014","Units Sold":"6121","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"933942.18","Total Cost":"596430.24","Total Profit":"337511.94"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/19/2013","Order ID":"932739961","Ship Date":"6/29/2013","Units Sold":"7337","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4777927.77","Total Cost":"3851631.52","Total Profit":"926296.25"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"1/7/2015","Order ID":"965266788","Ship Date":"2/9/2015","Units Sold":"2748","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1789525.08","Total Cost":"1442590.08","Total Profit":"346935.00"},{"Region":"Asia","Country":"Cambodia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"5/27/2012","Order ID":"472605931","Ship Date":"6/23/2012","Units Sold":"3452","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"282131.96","Total Cost":"195624.84","Total Profit":"86507.12"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/14/2011","Order ID":"436056220","Ship Date":"9/19/2011","Units Sold":"7580","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1935022.40","Total Cost":"1208403.60","Total Profit":"726618.80"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"6/29/2012","Order ID":"557228982","Ship Date":"8/12/2012","Units Sold":"5293","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"49383.69","Total Cost":"36627.56","Total Profit":"12756.13"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"8/18/2011","Order ID":"608048045","Ship Date":"8/21/2011","Units Sold":"3784","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"582963.04","Total Cost":"344079.12","Total Profit":"238883.92"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"8/6/2014","Order ID":"880749738","Ship Date":"8/16/2014","Units Sold":"2274","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"185854.02","Total Cost":"128867.58","Total Profit":"56986.44"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"8/5/2016","Order ID":"837882888","Ship Date":"9/5/2016","Units Sold":"7021","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1071264.18","Total Cost":"684126.24","Total Profit":"387137.94"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"11/21/2013","Order ID":"462308824","Ship Date":"1/3/2014","Units Sold":"6309","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2661704.01","Total Cost":"2300829.21","Total Profit":"360874.80"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"2/28/2015","Order ID":"707201373","Ship Date":"3/10/2015","Units Sold":"5457","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"258934.65","Total Cost":"173478.03","Total Profit":"85456.62"},{"Region":"Europe","Country":"Moldova ","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"1/6/2015","Order ID":"346046864","Ship Date":"1/20/2015","Units Sold":"1812","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"764464.68","Total Cost":"660818.28","Total Profit":"103646.40"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"11/29/2012","Order ID":"922644126","Ship Date":"12/21/2012","Units Sold":"9755","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"797276.15","Total Cost":"552815.85","Total Profit":"244460.30"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"12/10/2016","Order ID":"901104485","Ship Date":"12/24/2016","Units Sold":"5697","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2490728.40","Total Cost":"1500191.01","Total Profit":"990537.39"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/2/2017","Order ID":"615851771","Ship Date":"5/13/2017","Units Sold":"3080","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1299421.20","Total Cost":"1123245.20","Total Profit":"176176.00"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/14/2012","Order ID":"921622312","Ship Date":"1/28/2013","Units Sold":"7377","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"602922.21","Total Cost":"418054.59","Total Profit":"184867.62"},{"Region":"North America","Country":"Canada","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/1/2015","Order ID":"943464934","Ship Date":"3/9/2015","Units Sold":"1095","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"168695.70","Total Cost":"99568.35","Total Profit":"69127.35"},{"Region":"Europe","Country":"Montenegro","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/16/2013","Order ID":"326740968","Ship Date":"6/3/2013","Units Sold":"8768","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5859391.36","Total Cost":"4406270.72","Total Profit":"1453120.64"},{"Region":"Europe","Country":"Serbia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/10/2017","Order ID":"587124240","Ship Date":"6/24/2017","Units Sold":"1965","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"302727.90","Total Cost":"178677.45","Total Profit":"124050.45"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/9/2015","Order ID":"160601079","Ship Date":"4/19/2015","Units Sold":"4283","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1093364.24","Total Cost":"682795.86","Total Profit":"410568.38"},{"Region":"Europe","Country":"Switzerland","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"11/2/2014","Order ID":"253470313","Ship Date":"12/3/2014","Units Sold":"6353","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4137137.13","Total Cost":"3335070.88","Total Profit":"802066.25"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"1/15/2010","Order ID":"792343270","Ship Date":"1/26/2010","Units Sold":"836","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"171965.20","Total Cost":"97903.96","Total Profit":"74061.24"},{"Region":"North America","Country":"Greenland","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/7/2014","Order ID":"874143779","Ship Date":"11/4/2014","Units Sold":"7424","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3132111.36","Total Cost":"2707458.56","Total Profit":"424652.80"},{"Region":"Asia","Country":"North Korea","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"9/7/2013","Order ID":"116108167","Ship Date":"9/27/2013","Units Sold":"7842","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2001905.76","Total Cost":"1250171.64","Total Profit":"751734.12"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/16/2011","Order ID":"905785262","Ship Date":"6/30/2011","Units Sold":"842","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"214945.76","Total Cost":"134231.64","Total Profit":"80714.12"},{"Region":"Europe","Country":"Slovakia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/22/2013","Order ID":"751036393","Ship Date":"10/22/2013","Units Sold":"7213","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4820231.51","Total Cost":"3624821.02","Total Profit":"1195410.49"},{"Region":"North America","Country":"United States of America","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"3/5/2016","Order ID":"830035388","Ship Date":"3/13/2016","Units Sold":"4771","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"735020.26","Total Cost":"433827.03","Total Profit":"301193.23"},{"Region":"Asia","Country":"Mongolia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/22/2015","Order ID":"141268575","Ship Date":"2/21/2015","Units Sold":"3365","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"513431.70","Total Cost":"327885.60","Total Profit":"185546.10"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/20/2011","Order ID":"453534781","Ship Date":"12/4/2011","Units Sold":"9875","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1521342.50","Total Cost":"897933.75","Total Profit":"623408.75"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/25/2016","Order ID":"455945336","Ship Date":"7/10/2016","Units Sold":"3212","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"351007.36","Total Cost":"115118.08","Total Profit":"235889.28"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/22/2013","Order ID":"707924067","Ship Date":"6/6/2013","Units Sold":"9318","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"442139.10","Total Cost":"296219.22","Total Profit":"145919.88"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/9/2011","Order ID":"489207303","Ship Date":"3/30/2011","Units Sold":"6167","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4121221.09","Total Cost":"3099164.18","Total Profit":"1022056.91"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/3/2015","Order ID":"949843871","Ship Date":"4/1/2015","Units Sold":"8764","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"716281.72","Total Cost":"496655.88","Total Profit":"219625.84"},{"Region":"Asia","Country":"Mongolia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/3/2017","Order ID":"160195100","Ship Date":"2/5/2017","Units Sold":"4145","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2699265.45","Total Cost":"2175959.20","Total Profit":"523306.25"},{"Region":"Asia","Country":"Laos","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/7/2013","Order ID":"760934817","Ship Date":"4/11/2013","Units Sold":"6377","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4261557.79","Total Cost":"3204697.58","Total Profit":"1056860.21"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/10/2016","Order ID":"513049352","Ship Date":"5/14/2016","Units Sold":"1559","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1041832.93","Total Cost":"783459.86","Total Profit":"258373.07"},{"Region":"Asia","Country":"China","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/8/2013","Order ID":"847837531","Ship Date":"5/3/2013","Units Sold":"2821","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"580279.70","Total Cost":"330367.31","Total Profit":"249912.39"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"3/10/2015","Order ID":"116910684","Ship Date":"4/9/2015","Units Sold":"5324","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"252623.80","Total Cost":"169249.96","Total Profit":"83373.84"},{"Region":"Europe","Country":"Italy","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/4/2015","Order ID":"342192637","Ship Date":"3/12/2015","Units Sold":"1261","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"842688.47","Total Cost":"633702.94","Total Profit":"208985.53"},{"Region":"Europe","Country":"Finland","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"9/11/2014","Order ID":"465919721","Ship Date":"10/24/2014","Units Sold":"4854","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"45287.82","Total Cost":"33589.68","Total Profit":"11698.14"},{"Region":"Europe","Country":"Denmark","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/20/2012","Order ID":"400640761","Ship Date":"2/1/2013","Units Sold":"7359","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"349184.55","Total Cost":"233942.61","Total Profit":"115241.94"},{"Region":"Europe","Country":"San Marino","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/18/2017","Order ID":"579217088","Ship Date":"8/23/2017","Units Sold":"2063","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"870359.07","Total Cost":"752355.47","Total Profit":"118003.60"},{"Region":"Europe","Country":"Austria","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"8/6/2010","Order ID":"604822528","Ship Date":"8/21/2010","Units Sold":"9281","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1909101.70","Total Cost":"1086897.91","Total Profit":"822203.79"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/27/2013","Order ID":"600943410","Ship Date":"5/1/2013","Units Sold":"1364","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"888250.44","Total Cost":"716045.44","Total Profit":"172205.00"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/24/2013","Order ID":"761378562","Ship Date":"8/30/2013","Units Sold":"7691","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1184875.46","Total Cost":"699342.63","Total Profit":"485532.83"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/18/2015","Order ID":"900239312","Ship Date":"12/16/2015","Units Sold":"9673","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1490222.38","Total Cost":"879565.89","Total Profit":"610656.49"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/16/2014","Order ID":"901949489","Ship Date":"3/17/2014","Units Sold":"5752","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"886153.12","Total Cost":"523029.36","Total Profit":"363123.76"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"3/10/2011","Order ID":"271245419","Ship Date":"3/26/2011","Units Sold":"6402","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2700939.78","Total Cost":"2334745.38","Total Profit":"366194.40"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/1/2014","Order ID":"383175933","Ship Date":"5/18/2014","Units Sold":"9128","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"746031.44","Total Cost":"517283.76","Total Profit":"228747.68"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"1/21/2017","Order ID":"433102357","Ship Date":"2/3/2017","Units Sold":"3467","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"378873.76","Total Cost":"124257.28","Total Profit":"254616.48"},{"Region":"Europe","Country":"Romania","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/24/2010","Order ID":"586698520","Ship Date":"1/26/2010","Units Sold":"5985","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3897491.85","Total Cost":"3141885.60","Total Profit":"755606.25"},{"Region":"Europe","Country":"Italy","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/31/2015","Order ID":"629950749","Ship Date":"7/16/2015","Units Sold":"5280","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"576998.40","Total Cost":"189235.20","Total Profit":"387763.20"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"7/28/2014","Order ID":"419157874","Ship Date":"9/7/2014","Units Sold":"6984","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"331390.80","Total Cost":"222021.36","Total Profit":"109369.44"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/16/2012","Order ID":"330931222","Ship Date":"10/17/2012","Units Sold":"8757","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1336143.06","Total Cost":"853282.08","Total Profit":"482860.98"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/12/2012","Order ID":"812194621","Ship Date":"9/7/2012","Units Sold":"5292","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"578309.76","Total Cost":"189665.28","Total Profit":"388644.48"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"1/20/2010","Order ID":"130184400","Ship Date":"2/20/2010","Units Sold":"3312","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"30900.96","Total Cost":"22919.04","Total Profit":"7981.92"},{"Region":"Europe","Country":"Slovakia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/27/2013","Order ID":"222449386","Ship Date":"8/12/2013","Units Sold":"6571","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4279100.91","Total Cost":"3449512.16","Total Profit":"829588.75"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"7/10/2017","Order ID":"846850907","Ship Date":"8/27/2017","Units Sold":"857","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"40664.65","Total Cost":"27244.03","Total Profit":"13420.62"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/25/2013","Order ID":"931562793","Ship Date":"8/24/2013","Units Sold":"8987","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1384537.22","Total Cost":"817187.91","Total Profit":"567349.31"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/14/2017","Order ID":"825071370","Ship Date":"3/15/2017","Units Sold":"5808","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"894780.48","Total Cost":"528121.44","Total Profit":"366659.04"},{"Region":"Europe","Country":"Austria","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/14/2010","Order ID":"946175467","Ship Date":"8/14/2010","Units Sold":"3202","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1350891.78","Total Cost":"1167737.38","Total Profit":"183154.40"},{"Region":"North America","Country":"Canada","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/24/2015","Order ID":"433986413","Ship Date":"6/5/2015","Units Sold":"5079","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1044750.30","Total Cost":"594801.69","Total Profit":"449948.61"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"3/18/2012","Order ID":"297928035","Ship Date":"4/9/2012","Units Sold":"2381","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"194599.13","Total Cost":"134931.27","Total Profit":"59667.86"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/10/2013","Order ID":"267736661","Ship Date":"4/28/2013","Units Sold":"8083","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"75414.39","Total Cost":"55934.36","Total Profit":"19480.03"},{"Region":"Europe","Country":"Lithuania","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"7/30/2012","Order ID":"143461120","Ship Date":"7/31/2012","Units Sold":"2188","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"20414.04","Total Cost":"15140.96","Total Profit":"5273.08"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"4/7/2013","Order ID":"245462739","Ship Date":"4/8/2013","Units Sold":"6734","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4500130.18","Total Cost":"3384104.36","Total Profit":"1116025.82"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"6/1/2015","Order ID":"964415347","Ship Date":"6/10/2015","Units Sold":"788","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"526596.76","Total Cost":"396001.52","Total Profit":"130595.24"},{"Region":"Europe","Country":"Kosovo","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/8/2012","Order ID":"511305272","Ship Date":"10/26/2012","Units Sold":"5447","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1120447.90","Total Cost":"637898.17","Total Profit":"482549.73"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/3/2011","Order ID":"767431342","Ship Date":"3/30/2011","Units Sold":"8843","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"419600.35","Total Cost":"281118.97","Total Profit":"138481.38"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"6/5/2010","Order ID":"534404885","Ship Date":"6/29/2010","Units Sold":"1136","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"173330.88","Total Cost":"110691.84","Total Profit":"62639.04"},{"Region":"Asia","Country":"Indonesia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/23/2014","Order ID":"484149730","Ship Date":"11/23/2014","Units Sold":"9519","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1040236.32","Total Cost":"341160.96","Total Profit":"699075.36"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/29/2014","Order ID":"908902204","Ship Date":"1/1/2015","Units Sold":"3215","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1405598.00","Total Cost":"846605.95","Total Profit":"558992.05"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/2/2013","Order ID":"371211135","Ship Date":"5/8/2013","Units Sold":"8479","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5666261.33","Total Cost":"4261036.66","Total Profit":"1405224.67"},{"Region":"Asia","Country":"India","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/29/2013","Order ID":"653937852","Ship Date":"11/5/2013","Units Sold":"3597","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"548830.26","Total Cost":"350491.68","Total Profit":"198338.58"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/5/2017","Order ID":"910256183","Ship Date":"7/7/2017","Units Sold":"3887","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"799555.90","Total Cost":"455206.57","Total Profit":"344349.33"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"7/29/2011","Order ID":"813652455","Ship Date":"8/10/2011","Units Sold":"6698","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"547427.54","Total Cost":"379575.66","Total Profit":"167851.88"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"7/17/2010","Order ID":"107925498","Ship Date":"8/20/2010","Units Sold":"6408","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"977732.64","Total Cost":"624395.52","Total Profit":"353337.12"},{"Region":"Europe","Country":"Ukraine","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"12/8/2014","Order ID":"857186639","Ship Date":"1/26/2015","Units Sold":"9430","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1438829.40","Total Cost":"918859.20","Total Profit":"519970.20"},{"Region":"Central America and the Caribbean","Country":"Saint Lucia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/24/2014","Order ID":"695859706","Ship Date":"1/17/2015","Units Sold":"9205","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1404498.90","Total Cost":"896935.20","Total Profit":"507563.70"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"2/11/2017","Order ID":"478681027","Ship Date":"3/28/2017","Units Sold":"1208","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"132010.24","Total Cost":"43294.72","Total Profit":"88715.52"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"6/24/2017","Order ID":"230699431","Ship Date":"7/25/2017","Units Sold":"7943","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"649181.39","Total Cost":"450129.81","Total Profit":"199051.58"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"4/15/2013","Order ID":"497276246","Ship Date":"5/1/2013","Units Sold":"3947","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1725628.40","Total Cost":"1039363.51","Total Profit":"686264.89"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"3/3/2014","Order ID":"994085299","Ship Date":"3/26/2014","Units Sold":"786","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"121091.16","Total Cost":"71470.98","Total Profit":"49620.18"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/4/2015","Order ID":"157112920","Ship Date":"10/12/2015","Units Sold":"2059","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"225007.52","Total Cost":"73794.56","Total Profit":"151212.96"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"8/20/2010","Order ID":"992657935","Ship Date":"9/23/2010","Units Sold":"8397","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1727262.90","Total Cost":"983372.67","Total Profit":"743890.23"},{"Region":"Europe","Country":"Kosovo","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/31/2015","Order ID":"727331674","Ship Date":"10/19/2015","Units Sold":"2460","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"116727.00","Total Cost":"78203.40","Total Profit":"38523.60"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"5/13/2014","Order ID":"258057963","Ship Date":"5/20/2014","Units Sold":"3941","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"430672.48","Total Cost":"141245.44","Total Profit":"289427.04"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/12/2014","Order ID":"102073132","Ship Date":"4/2/2014","Units Sold":"4563","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"696222.54","Total Cost":"444618.72","Total Profit":"251603.82"},{"Region":"Europe","Country":"Sweden","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/6/2012","Order ID":"846926009","Ship Date":"1/6/2012","Units Sold":"3082","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2059608.14","Total Cost":"1548828.28","Total Profit":"510779.86"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/13/2013","Order ID":"900477921","Ship Date":"10/15/2013","Units Sold":"282","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"43444.92","Total Cost":"25642.26","Total Profit":"17802.66"},{"Region":"Europe","Country":"Lithuania","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"11/10/2014","Order ID":"540902698","Ship Date":"12/14/2014","Units Sold":"3983","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"37161.39","Total Cost":"27562.36","Total Profit":"9599.03"},{"Region":"Asia","Country":"Philippines","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"9/26/2011","Order ID":"566686666","Ship Date":"11/1/2011","Units Sold":"4032","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1762790.40","Total Cost":"1061746.56","Total Profit":"701043.84"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"5/3/2013","Order ID":"946628654","Ship Date":"6/11/2013","Units Sold":"7310","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4760345.10","Total Cost":"3837457.60","Total Profit":"922887.50"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/5/2014","Order ID":"369839990","Ship Date":"8/10/2014","Units Sold":"2726","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"297897.28","Total Cost":"97699.84","Total Profit":"200197.44"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"12/9/2014","Order ID":"295744502","Ship Date":"12/19/2014","Units Sold":"6225","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1280482.50","Total Cost":"729009.75","Total Profit":"551472.75"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"5/22/2015","Order ID":"904078519","Ship Date":"5/27/2015","Units Sold":"5779","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1188740.30","Total Cost":"676778.69","Total Profit":"511961.61"},{"Region":"Europe","Country":"Slovakia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/22/2013","Order ID":"644890868","Ship Date":"11/28/2013","Units Sold":"6394","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4272918.38","Total Cost":"3213240.76","Total Profit":"1059677.62"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"2/15/2017","Order ID":"288542878","Ship Date":"2/22/2017","Units Sold":"5105","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"47629.65","Total Cost":"35326.60","Total Profit":"12303.05"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"11/24/2013","Order ID":"675708377","Ship Date":"1/9/2014","Units Sold":"5979","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2522480.31","Total Cost":"2180481.51","Total Profit":"341998.80"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/17/2016","Order ID":"467373692","Ship Date":"11/4/2016","Units Sold":"5117","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"559185.76","Total Cost":"183393.28","Total Profit":"375792.48"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"12/20/2012","Order ID":"194837653","Ship Date":"12/31/2012","Units Sold":"5646","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"461447.58","Total Cost":"319958.82","Total Profit":"141488.76"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/11/2013","Order ID":"909711587","Ship Date":"6/5/2013","Units Sold":"2729","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"561355.30","Total Cost":"319593.19","Total Profit":"241762.11"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/9/2011","Order ID":"133919322","Ship Date":"2/25/2011","Units Sold":"8558","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5719054.66","Total Cost":"4300737.32","Total Profit":"1418317.34"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"4/1/2015","Order ID":"409697186","Ship Date":"4/30/2015","Units Sold":"7357","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1133419.42","Total Cost":"668972.01","Total Profit":"464447.41"},{"Region":"Europe","Country":"Greece","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"6/8/2017","Order ID":"749594008","Ship Date":"6/18/2017","Units Sold":"380","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"58542.80","Total Cost":"34553.40","Total Profit":"23989.40"},{"Region":"Europe","Country":"Georgia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/24/2010","Order ID":"686471116","Ship Date":"3/10/2010","Units Sold":"913","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"385185.57","Total Cost":"332961.97","Total Profit":"52223.60"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/7/2013","Order ID":"723502337","Ship Date":"3/29/2013","Units Sold":"9274","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1415026.92","Total Cost":"903658.56","Total Profit":"511368.36"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/12/2010","Order ID":"984174001","Ship Date":"3/1/2010","Units Sold":"7812","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1606928.40","Total Cost":"914863.32","Total Profit":"692065.08"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/6/2011","Order ID":"762284934","Ship Date":"6/19/2011","Units Sold":"5906","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2582103.20","Total Cost":"1555226.98","Total Profit":"1026876.22"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/9/2014","Order ID":"771946465","Ship Date":"3/7/2014","Units Sold":"4968","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3319965.36","Total Cost":"2496618.72","Total Profit":"823346.64"},{"Region":"Europe","Country":"Hungary","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"2/2/2012","Order ID":"897582423","Ship Date":"3/2/2012","Units Sold":"3440","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"32095.20","Total Cost":"23804.80","Total Profit":"8290.40"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/2/2015","Order ID":"643929135","Ship Date":"9/2/2015","Units Sold":"1796","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"16756.68","Total Cost":"12428.32","Total Profit":"4328.36"},{"Region":"Europe","Country":"Ireland","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"12/17/2016","Order ID":"486035430","Ship Date":"1/13/2017","Units Sold":"7539","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4909472.19","Total Cost":"3957673.44","Total Profit":"951798.75"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"3/18/2017","Order ID":"519262635","Ship Date":"4/13/2017","Units Sold":"208","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"31736.64","Total Cost":"20267.52","Total Profit":"11469.12"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/9/2014","Order ID":"909284579","Ship Date":"9/4/2014","Units Sold":"6368","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1309897.60","Total Cost":"745756.48","Total Profit":"564141.12"},{"Region":"Asia","Country":"North Korea","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/20/2016","Order ID":"542087590","Ship Date":"2/26/2016","Units Sold":"4619","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"950128.30","Total Cost":"540931.09","Total Profit":"409197.21"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"8/9/2010","Order ID":"173970496","Ship Date":"8/17/2010","Units Sold":"591","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"258385.20","Total Cost":"155628.03","Total Profit":"102757.17"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/30/2011","Order ID":"181544625","Ship Date":"2/1/2011","Units Sold":"1944","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"18137.52","Total Cost":"13452.48","Total Profit":"4685.04"},{"Region":"Europe","Country":"Iceland","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"6/12/2012","Order ID":"111733806","Ship Date":"7/2/2012","Units Sold":"3371","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1422191.19","Total Cost":"1229369.99","Total Profit":"192821.20"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/22/2010","Order ID":"931774365","Ship Date":"10/16/2010","Units Sold":"1596","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1066558.92","Total Cost":"802053.84","Total Profit":"264505.08"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"5/14/2014","Order ID":"979215133","Ship Date":"5/30/2014","Units Sold":"373","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"249264.71","Total Cost":"187447.42","Total Profit":"61817.29"},{"Region":"Europe","Country":"Belgium","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"3/1/2010","Order ID":"911917436","Ship Date":"3/15/2010","Units Sold":"5489","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2399790.80","Total Cost":"1445418.37","Total Profit":"954372.43"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/25/2012","Order ID":"558055102","Ship Date":"7/14/2012","Units Sold":"9761","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"463159.45","Total Cost":"310302.19","Total Profit":"152857.26"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/14/2014","Order ID":"266114461","Ship Date":"3/4/2014","Units Sold":"8037","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1238180.22","Total Cost":"730804.41","Total Profit":"507375.81"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/22/2012","Order ID":"454894340","Ship Date":"5/30/2012","Units Sold":"2199","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"961402.80","Total Cost":"579062.67","Total Profit":"382340.13"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"9/28/2013","Order ID":"263506066","Ship Date":"10/15/2013","Units Sold":"6156","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4113870.12","Total Cost":"3093636.24","Total Profit":"1020233.88"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"12/31/2013","Order ID":"701373469","Ship Date":"1/31/2014","Units Sold":"851","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"131105.06","Total Cost":"77381.43","Total Profit":"53723.63"},{"Region":"Europe","Country":"Macedonia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/18/2010","Order ID":"598232877","Ship Date":"3/10/2010","Units Sold":"9257","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"86367.81","Total Cost":"64058.44","Total Profit":"22309.37"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"7/17/2011","Order ID":"654133117","Ship Date":"8/29/2011","Units Sold":"1380","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"210560.40","Total Cost":"134467.20","Total Profit":"76093.20"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/15/2013","Order ID":"289435517","Ship Date":"8/5/2013","Units Sold":"9256","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1903959.20","Total Cost":"1083970.16","Total Profit":"819989.04"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"4/14/2016","Order ID":"794813907","Ship Date":"4/28/2016","Units Sold":"1952","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"401526.40","Total Cost":"228598.72","Total Profit":"172927.68"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/13/2013","Order ID":"381254613","Ship Date":"7/29/2013","Units Sold":"567","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"378909.09","Total Cost":"284940.18","Total Profit":"93968.91"},{"Region":"Europe","Country":"Slovenia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/8/2011","Order ID":"930056464","Ship Date":"3/7/2011","Units Sold":"3231","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"824809.68","Total Cost":"515086.02","Total Profit":"309723.66"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"5/29/2016","Order ID":"342830789","Ship Date":"6/30/2016","Units Sold":"104","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"8499.92","Total Cost":"5893.68","Total Profit":"2606.24"},{"Region":"Asia","Country":"Thailand","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"1/22/2011","Order ID":"191501414","Ship Date":"2/17/2011","Units Sold":"8379","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1290868.74","Total Cost":"761902.47","Total Profit":"528966.27"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"9/13/2015","Order ID":"768304669","Ship Date":"10/16/2015","Units Sold":"7280","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1110782.40","Total Cost":"709363.20","Total Profit":"401419.20"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/19/2010","Order ID":"635789382","Ship Date":"6/6/2010","Units Sold":"3062","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"334615.36","Total Cost":"109742.08","Total Profit":"224873.28"},{"Region":"Europe","Country":"Montenegro","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"1/28/2014","Order ID":"676816880","Ship Date":"2/6/2014","Units Sold":"4010","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2611352.10","Total Cost":"2105089.60","Total Profit":"506262.50"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/4/2012","Order ID":"944560992","Ship Date":"10/28/2012","Units Sold":"5443","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3544536.03","Total Cost":"2857357.28","Total Profit":"687178.75"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"3/6/2016","Order ID":"212508046","Ship Date":"4/15/2016","Units Sold":"4708","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"223394.60","Total Cost":"149667.32","Total Profit":"73727.28"},{"Region":"Asia","Country":"Philippines","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/21/2016","Order ID":"924456870","Ship Date":"4/15/2016","Units Sold":"6186","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"953015.16","Total Cost":"562492.98","Total Profit":"390522.18"},{"Region":"Europe","Country":"Germany","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"5/27/2013","Order ID":"644518792","Ship Date":"6/6/2013","Units Sold":"6288","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"687152.64","Total Cost":"225361.92","Total Profit":"461790.72"},{"Region":"Europe","Country":"Greece","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"2/5/2013","Order ID":"607117640","Ship Date":"2/21/2013","Units Sold":"8456","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5506631.76","Total Cost":"4439061.76","Total Profit":"1067570.00"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"3/5/2014","Order ID":"766989743","Ship Date":"3/29/2014","Units Sold":"8164","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1679334.80","Total Cost":"956086.04","Total Profit":"723248.76"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/10/2012","Order ID":"249183928","Ship Date":"10/14/2012","Units Sold":"7917","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2021051.76","Total Cost":"1262128.14","Total Profit":"758923.62"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"9/4/2013","Order ID":"499061524","Ship Date":"10/17/2013","Units Sold":"2250","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"343305.00","Total Cost":"219240.00","Total Profit":"124065.00"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/16/2011","Order ID":"332296359","Ship Date":"5/26/2011","Units Sold":"2732","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"223286.36","Total Cost":"154822.44","Total Profit":"68463.92"},{"Region":"Asia","Country":"Indonesia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/20/2016","Order ID":"884874761","Ship Date":"9/1/2016","Units Sold":"2960","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1978079.20","Total Cost":"1487518.40","Total Profit":"490560.80"},{"Region":"Europe","Country":"Romania","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"6/24/2014","Order ID":"663095557","Ship Date":"7/9/2014","Units Sold":"3566","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"910328.48","Total Cost":"568491.72","Total Profit":"341836.76"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/11/2014","Order ID":"493570077","Ship Date":"3/25/2014","Units Sold":"7209","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"342067.05","Total Cost":"229174.11","Total Profit":"112892.94"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"6/8/2014","Order ID":"373222148","Ship Date":"6/22/2014","Units Sold":"3582","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1566050.40","Total Cost":"943248.06","Total Profit":"622802.34"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/10/2015","Order ID":"819288098","Ship Date":"1/15/2015","Units Sold":"4410","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"672877.80","Total Cost":"429710.40","Total Profit":"243167.40"},{"Region":"Europe","Country":"Denmark","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"1/17/2013","Order ID":"619316756","Ship Date":"2/1/2013","Units Sold":"8446","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3563282.94","Total Cost":"3080171.74","Total Profit":"483111.20"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"3/26/2014","Order ID":"881169450","Ship Date":"4/27/2014","Units Sold":"6477","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"60430.41","Total Cost":"44820.84","Total Profit":"15609.57"},{"Region":"Europe","Country":"Denmark","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"1/5/2014","Order ID":"983020007","Ship Date":"2/11/2014","Units Sold":"6320","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"973659.20","Total Cost":"574677.60","Total Profit":"398981.60"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/16/2016","Order ID":"823354756","Ship Date":"7/5/2016","Units Sold":"7824","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"855006.72","Total Cost":"280412.16","Total Profit":"574594.56"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/7/2015","Order ID":"370972526","Ship Date":"5/18/2015","Units Sold":"7869","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5258616.63","Total Cost":"3954487.26","Total Profit":"1304129.37"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"2/3/2013","Order ID":"114984643","Ship Date":"2/8/2013","Units Sold":"5366","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"254616.70","Total Cost":"170585.14","Total Profit":"84031.56"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"12/17/2016","Order ID":"614814937","Ship Date":"1/20/2017","Units Sold":"6257","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4074620.97","Total Cost":"3284674.72","Total Profit":"789946.25"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"7/26/2012","Order ID":"250199735","Ship Date":"9/6/2012","Units Sold":"8516","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"930628.48","Total Cost":"305213.44","Total Profit":"625415.04"},{"Region":"Europe","Country":"Norway","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/3/2013","Order ID":"171187865","Ship Date":"2/14/2013","Units Sold":"7148","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"339172.60","Total Cost":"227234.92","Total Profit":"111937.68"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"1/23/2010","Order ID":"248140656","Ship Date":"3/5/2010","Units Sold":"9189","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"85733.37","Total Cost":"63587.88","Total Profit":"22145.49"},{"Region":"Asia","Country":"Taiwan","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"1/2/2015","Order ID":"421731936","Ship Date":"1/16/2015","Units Sold":"8707","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3673396.23","Total Cost":"3175355.83","Total Profit":"498040.40"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/21/2010","Order ID":"252948033","Ship Date":"4/20/2010","Units Sold":"1799","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"459248.72","Total Cost":"286796.58","Total Profit":"172452.14"},{"Region":"Europe","Country":"Ukraine","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"2/22/2013","Order ID":"273087775","Ship Date":"3/18/2013","Units Sold":"1596","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"14890.68","Total Cost":"11044.32","Total Profit":"3846.36"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/2/2012","Order ID":"633762490","Ship Date":"2/19/2012","Units Sold":"3259","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2122293.39","Total Cost":"1710844.64","Total Profit":"411448.75"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"1/1/2015","Order ID":"656896007","Ship Date":"2/6/2015","Units Sold":"8981","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1370320.98","Total Cost":"875108.64","Total Profit":"495212.34"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"4/9/2016","Order ID":"184724652","Ship Date":"5/22/2016","Units Sold":"2984","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1994117.68","Total Cost":"1499579.36","Total Profit":"494538.32"},{"Region":"Europe","Country":"Poland","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/19/2014","Order ID":"929797255","Ship Date":"10/26/2014","Units Sold":"6525","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"309611.25","Total Cost":"207429.75","Total Profit":"102181.50"},{"Region":"Europe","Country":"Austria","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"8/19/2010","Order ID":"624975144","Ship Date":"9/20/2010","Units Sold":"2888","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1929963.76","Total Cost":"1451335.52","Total Profit":"478628.24"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"3/29/2016","Order ID":"673432147","Ship Date":"4/5/2016","Units Sold":"2392","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"261397.76","Total Cost":"85729.28","Total Profit":"175668.48"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/15/2014","Order ID":"298654592","Ship Date":"12/24/2014","Units Sold":"7385","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1885242.80","Total Cost":"1177316.70","Total Profit":"707926.10"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/5/2017","Order ID":"594441306","Ship Date":"5/23/2017","Units Sold":"7247","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"67614.51","Total Cost":"50149.24","Total Profit":"17465.27"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"10/24/2012","Order ID":"474903619","Ship Date":"10/25/2012","Units Sold":"3389","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1481670.80","Total Cost":"892425.37","Total Profit":"589245.43"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/11/2010","Order ID":"724465358","Ship Date":"7/16/2010","Units Sold":"4253","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"655217.18","Total Cost":"386725.29","Total Profit":"268491.89"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/19/2012","Order ID":"847862851","Ship Date":"12/12/2012","Units Sold":"314","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"2929.62","Total Cost":"2172.88","Total Profit":"756.74"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/28/2012","Order ID":"420144927","Ship Date":"7/12/2012","Units Sold":"9075","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5909730.75","Total Cost":"4764012.00","Total Profit":"1145718.75"},{"Region":"Europe","Country":"Slovenia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"4/6/2010","Order ID":"436672914","Ship Date":"4/22/2010","Units Sold":"74","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"32352.80","Total Cost":"19486.42","Total Profit":"12866.38"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"1/16/2012","Order ID":"163120639","Ship Date":"2/12/2012","Units Sold":"9877","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1507032.66","Total Cost":"962414.88","Total Profit":"544617.78"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"3/2/2017","Order ID":"285474431","Ship Date":"3/8/2017","Units Sold":"7083","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"578893.59","Total Cost":"401393.61","Total Profit":"177499.98"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/7/2014","Order ID":"660033118","Ship Date":"9/11/2014","Units Sold":"7322","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4893072.94","Total Cost":"3679597.88","Total Profit":"1213475.06"},{"Region":"Europe","Country":"Italy","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/1/2017","Order ID":"763408029","Ship Date":"7/3/2017","Units Sold":"8255","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"391699.75","Total Cost":"262426.45","Total Profit":"129273.30"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"10/3/2012","Order ID":"142522990","Ship Date":"11/13/2012","Units Sold":"4575","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1930146.75","Total Cost":"1668456.75","Total Profit":"261690.00"},{"Region":"Europe","Country":"Germany","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"11/14/2011","Order ID":"664614331","Ship Date":"12/29/2011","Units Sold":"3005","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"28036.65","Total Cost":"20794.60","Total Profit":"7242.05"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/20/2015","Order ID":"667230880","Ship Date":"10/5/2015","Units Sold":"7300","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1501610.00","Total Cost":"854903.00","Total Profit":"646707.00"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"11/6/2010","Order ID":"808233964","Ship Date":"11/13/2010","Units Sold":"3246","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"265295.58","Total Cost":"183950.82","Total Profit":"81344.76"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/16/2011","Order ID":"915797412","Ship Date":"12/22/2011","Units Sold":"3660","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"299131.80","Total Cost":"207412.20","Total Profit":"91719.60"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"6/4/2011","Order ID":"438407552","Ship Date":"7/21/2011","Units Sold":"3392","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1431050.88","Total Cost":"1237028.48","Total Profit":"194022.40"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"8/20/2014","Order ID":"694863212","Ship Date":"10/5/2014","Units Sold":"4321","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1103064.88","Total Cost":"688853.82","Total Profit":"414211.06"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/24/2012","Order ID":"824275720","Ship Date":"7/24/2012","Units Sold":"358","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"233133.18","Total Cost":"187935.68","Total Profit":"45197.50"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"4/4/2016","Order ID":"936068904","Ship Date":"4/22/2016","Units Sold":"2445","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"22811.85","Total Cost":"16919.40","Total Profit":"5892.45"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/14/2015","Order ID":"759979093","Ship Date":"3/6/2015","Units Sold":"3557","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1500662.73","Total Cost":"1297202.33","Total Profit":"203460.40"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/23/2010","Order ID":"996055114","Ship Date":"1/4/2011","Units Sold":"3698","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2471262.46","Total Cost":"1858392.92","Total Profit":"612869.54"},{"Region":"Asia","Country":"South Korea","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"4/12/2014","Order ID":"164658296","Ship Date":"4/30/2014","Units Sold":"4904","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3277196.08","Total Cost":"2464456.16","Total Profit":"812739.92"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"1/21/2010","Order ID":"456462466","Ship Date":"3/9/2010","Units Sold":"6242","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4171341.34","Total Cost":"3136854.68","Total Profit":"1034486.66"},{"Region":"Europe","Country":"Croatia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"9/6/2014","Order ID":"982453954","Ship Date":"9/28/2014","Units Sold":"8812","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3717694.68","Total Cost":"3213648.28","Total Profit":"504046.40"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/9/2011","Order ID":"923931586","Ship Date":"7/13/2011","Units Sold":"743","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"6932.19","Total Cost":"5141.56","Total Profit":"1790.63"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"4/16/2015","Order ID":"882506692","Ship Date":"5/5/2015","Units Sold":"2196","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"926470.44","Total Cost":"800859.24","Total Profit":"125611.20"},{"Region":"Europe","Country":"Andorra","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/10/2015","Order ID":"630103099","Ship Date":"5/9/2015","Units Sold":"364","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"159140.80","Total Cost":"95852.12","Total Profit":"63288.68"},{"Region":"Asia","Country":"Laos","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/17/2016","Order ID":"458957135","Ship Date":"12/27/2016","Units Sold":"4470","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"488481.60","Total Cost":"160204.80","Total Profit":"328276.80"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"7/21/2015","Order ID":"731617629","Ship Date":"8/19/2015","Units Sold":"769","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"36489.05","Total Cost":"24446.51","Total Profit":"12042.54"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/17/2014","Order ID":"530945909","Ship Date":"11/27/2014","Units Sold":"7548","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3299985.60","Total Cost":"1987614.84","Total Profit":"1312370.76"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"1/21/2016","Order ID":"810115802","Ship Date":"2/12/2016","Units Sold":"123","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"5836.35","Total Cost":"3910.17","Total Profit":"1926.18"},{"Region":"Europe","Country":"Iceland","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/7/2013","Order ID":"342613637","Ship Date":"10/22/2013","Units Sold":"5844","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3805671.24","Total Cost":"3067866.24","Total Profit":"737805.00"},{"Region":"North America","Country":"Greenland","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/19/2014","Order ID":"672238242","Ship Date":"12/2/2014","Units Sold":"9089","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2320239.92","Total Cost":"1448968.38","Total Profit":"871271.54"},{"Region":"Europe","Country":"Albania","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"5/5/2012","Order ID":"263100945","Ship Date":"5/5/2012","Units Sold":"6271","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"956829.18","Total Cost":"611046.24","Total Profit":"345782.94"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"9/10/2011","Order ID":"349625575","Ship Date":"10/16/2011","Units Sold":"832","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"171142.40","Total Cost":"97435.52","Total Profit":"73706.88"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/17/2011","Order ID":"886548459","Ship Date":"10/17/2011","Units Sold":"8245","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5509886.15","Total Cost":"4143442.30","Total Profit":"1366443.85"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/12/2016","Order ID":"998918426","Ship Date":"2/18/2016","Units Sold":"1015","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"678294.05","Total Cost":"510078.10","Total Profit":"168215.95"},{"Region":"Sub-Saharan Africa","Country":"Mali","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"7/16/2014","Order ID":"332096803","Ship Date":"9/1/2014","Units Sold":"3679","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"402041.12","Total Cost":"131855.36","Total Profit":"270185.76"},{"Region":"Europe","Country":"Georgia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/14/2016","Order ID":"401757419","Ship Date":"9/8/2016","Units Sold":"7803","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"370252.35","Total Cost":"248057.37","Total Profit":"122194.98"},{"Region":"Europe","Country":"Belarus","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"5/1/2010","Order ID":"543886601","Ship Date":"5/28/2010","Units Sold":"6987","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1066076.46","Total Cost":"680813.28","Total Profit":"385263.18"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"3/22/2011","Order ID":"164783179","Ship Date":"4/16/2011","Units Sold":"1859","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"382396.30","Total Cost":"217707.49","Total Profit":"164688.81"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/10/2013","Order ID":"991058480","Ship Date":"3/17/2013","Units Sold":"5083","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2222287.60","Total Cost":"1338506.39","Total Profit":"883781.21"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"12/24/2014","Order ID":"319636332","Ship Date":"2/12/2015","Units Sold":"6349","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"693818.72","Total Cost":"227548.16","Total Profit":"466270.56"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/28/2016","Order ID":"467753064","Ship Date":"7/8/2016","Units Sold":"7381","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1884221.68","Total Cost":"1176679.02","Total Profit":"707542.66"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"7/22/2014","Order ID":"222957503","Ship Date":"7/29/2014","Units Sold":"6935","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2925807.15","Total Cost":"2529125.15","Total Profit":"396682.00"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"2/26/2015","Order ID":"693110978","Ship Date":"4/7/2015","Units Sold":"5796","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"54076.68","Total Cost":"40108.32","Total Profit":"13968.36"},{"Region":"Europe","Country":"Croatia","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"8/22/2013","Order ID":"356387317","Ship Date":"9/8/2013","Units Sold":"1782","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1190857.14","Total Cost":"895526.28","Total Profit":"295330.86"},{"Region":"Europe","Country":"Cyprus","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"1/30/2014","Order ID":"911272847","Ship Date":"3/2/2014","Units Sold":"4741","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"387481.93","Total Cost":"268672.47","Total Profit":"118809.46"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"4/4/2010","Order ID":"526566398","Ship Date":"4/15/2010","Units Sold":"1553","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"678971.60","Total Cost":"408951.49","Total Profit":"270020.11"},{"Region":"Europe","Country":"San Marino","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"2/25/2012","Order ID":"591379296","Ship Date":"2/27/2012","Units Sold":"1130","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"10542.90","Total Cost":"7819.60","Total Profit":"2723.30"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/20/2011","Order ID":"765135371","Ship Date":"12/25/2011","Units Sold":"9414","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"446694.30","Total Cost":"299271.06","Total Profit":"147423.24"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/22/2010","Order ID":"327570950","Ship Date":"3/27/2010","Units Sold":"4378","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"357813.94","Total Cost":"248101.26","Total Profit":"109712.68"},{"Region":"Europe","Country":"Russia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/6/2012","Order ID":"428734862","Ship Date":"11/21/2012","Units Sold":"1028","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"9591.24","Total Cost":"7113.76","Total Profit":"2477.48"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/16/2011","Order ID":"938988435","Ship Date":"1/18/2011","Units Sold":"6399","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4167092.79","Total Cost":"3359219.04","Total Profit":"807873.75"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/1/2016","Order ID":"899005496","Ship Date":"8/12/2016","Units Sold":"4559","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3046642.93","Total Cost":"2291079.86","Total Profit":"755563.07"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/9/2011","Order ID":"769772374","Ship Date":"9/29/2011","Units Sold":"1606","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1045843.26","Total Cost":"843085.76","Total Profit":"202757.50"},{"Region":"Europe","Country":"Georgia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/17/2013","Order ID":"182587897","Ship Date":"11/2/2013","Units Sold":"671","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"138024.70","Total Cost":"78580.81","Total Profit":"59443.89"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"2/13/2011","Order ID":"189063394","Ship Date":"4/2/2011","Units Sold":"6914","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"328069.30","Total Cost":"219796.06","Total Profit":"108273.24"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/17/2011","Order ID":"111122691","Ship Date":"11/20/2011","Units Sold":"2529","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"23595.57","Total Cost":"17500.68","Total Profit":"6094.89"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/14/2010","Order ID":"691002118","Ship Date":"4/18/2010","Units Sold":"1737","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"759416.40","Total Cost":"457404.21","Total Profit":"302012.19"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"8/21/2012","Order ID":"941250503","Ship Date":"9/22/2012","Units Sold":"5795","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"633277.60","Total Cost":"207692.80","Total Profit":"425584.80"},{"Region":"Europe","Country":"Austria","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"9/3/2011","Order ID":"394729173","Ship Date":"10/20/2011","Units Sold":"7989","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2039431.92","Total Cost":"1273606.38","Total Profit":"765825.54"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/14/2012","Order ID":"454611957","Ship Date":"4/3/2012","Units Sold":"8635","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1317528.30","Total Cost":"841394.40","Total Profit":"476133.90"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/12/2012","Order ID":"344385182","Ship Date":"8/19/2012","Units Sold":"83","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"17073.10","Total Cost":"9720.13","Total Profit":"7352.97"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/27/2016","Order ID":"257847678","Ship Date":"2/27/2016","Units Sold":"1713","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"722697.57","Total Cost":"624713.97","Total Profit":"97983.60"},{"Region":"Europe","Country":"Iceland","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"12/28/2011","Order ID":"909110772","Ship Date":"1/3/2012","Units Sold":"4935","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"752982.30","Total Cost":"480866.40","Total Profit":"272115.90"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/4/2016","Order ID":"382598292","Ship Date":"11/22/2016","Units Sold":"8192","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5474467.84","Total Cost":"4116807.68","Total Profit":"1357660.16"},{"Region":"Europe","Country":"Denmark","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"8/28/2010","Order ID":"883046567","Ship Date":"10/11/2010","Units Sold":"1957","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1274417.97","Total Cost":"1027346.72","Total Profit":"247071.25"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"1/26/2016","Order ID":"185504424","Ship Date":"2/25/2016","Units Sold":"3736","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2496656.72","Total Cost":"1877489.44","Total Profit":"619167.28"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/13/2011","Order ID":"185333192","Ship Date":"6/17/2011","Units Sold":"3065","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2048247.55","Total Cost":"1540285.10","Total Profit":"507962.45"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"7/11/2017","Order ID":"148206698","Ship Date":"7/16/2017","Units Sold":"6510","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"993295.80","Total Cost":"634334.40","Total Profit":"358961.40"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/8/2011","Order ID":"760111272","Ship Date":"3/11/2011","Units Sold":"2672","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"411648.32","Total Cost":"242964.96","Total Profit":"168683.36"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/31/2011","Order ID":"977345740","Ship Date":"9/28/2011","Units Sold":"7178","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"66970.74","Total Cost":"49671.76","Total Profit":"17298.98"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"8/26/2016","Order ID":"276521432","Ship Date":"10/5/2016","Units Sold":"7691","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"840472.48","Total Cost":"275645.44","Total Profit":"564827.04"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/15/2013","Order ID":"904562175","Ship Date":"8/25/2013","Units Sold":"8904","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"973029.12","Total Cost":"319119.36","Total Profit":"653909.76"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/27/2013","Order ID":"228704297","Ship Date":"8/10/2013","Units Sold":"7539","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1550772.30","Total Cost":"882892.29","Total Profit":"667880.01"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"5/18/2017","Order ID":"186496627","Ship Date":"5/19/2017","Units Sold":"7351","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4912452.77","Total Cost":"3694171.54","Total Profit":"1218281.23"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"1/3/2012","Order ID":"535800492","Ship Date":"2/2/2012","Units Sold":"4127","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"38504.91","Total Cost":"28558.84","Total Profit":"9946.07"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"9/27/2011","Order ID":"204789721","Ship Date":"10/28/2011","Units Sold":"684","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"288572.76","Total Cost":"249447.96","Total Profit":"39124.80"},{"Region":"North America","Country":"Mexico","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"11/9/2016","Order ID":"441950643","Ship Date":"12/2/2016","Units Sold":"1871","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"88778.95","Total Cost":"59479.09","Total Profit":"29299.86"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/9/2017","Order ID":"766082084","Ship Date":"5/19/2017","Units Sold":"9567","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1967931.90","Total Cost":"1120391.37","Total Profit":"847540.53"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/10/2011","Order ID":"316295373","Ship Date":"11/21/2011","Units Sold":"7684","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5003897.64","Total Cost":"4033792.64","Total Profit":"970105.00"},{"Region":"Europe","Country":"Croatia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"6/3/2011","Order ID":"102014338","Ship Date":"7/7/2011","Units Sold":"7165","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1103839.90","Total Cost":"651513.45","Total Profit":"452326.45"},{"Region":"Asia","Country":"Mongolia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/4/2013","Order ID":"752975308","Ship Date":"2/21/2013","Units Sold":"981","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"250429.68","Total Cost":"156391.02","Total Profit":"94038.66"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/19/2010","Order ID":"269227111","Ship Date":"11/29/2010","Units Sold":"9140","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6107987.80","Total Cost":"4593215.60","Total Profit":"1514772.20"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/1/2015","Order ID":"771131074","Ship Date":"8/14/2015","Units Sold":"3676","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1550867.64","Total Cost":"1340600.44","Total Profit":"210267.20"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/15/2011","Order ID":"849361026","Ship Date":"11/23/2011","Units Sold":"3657","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1542851.73","Total Cost":"1333671.33","Total Profit":"209180.40"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"5/21/2016","Order ID":"514903295","Ship Date":"6/16/2016","Units Sold":"182","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"14874.86","Total Cost":"10313.94","Total Profit":"4560.92"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"5/27/2012","Order ID":"749056708","Ship Date":"6/6/2012","Units Sold":"1381","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"922880.87","Total Cost":"694007.74","Total Profit":"228873.13"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/23/2014","Order ID":"353432595","Ship Date":"9/26/2014","Units Sold":"7414","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"605946.22","Total Cost":"420151.38","Total Profit":"185794.84"},{"Region":"Europe","Country":"Slovenia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/21/2012","Order ID":"899954783","Ship Date":"5/31/2012","Units Sold":"5474","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2393232.80","Total Cost":"1441468.42","Total Profit":"951764.38"},{"Region":"Europe","Country":"Croatia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"2/15/2011","Order ID":"880859601","Ship Date":"3/4/2011","Units Sold":"4785","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"730095.30","Total Cost":"466250.40","Total Profit":"263844.90"},{"Region":"Asia","Country":"Myanmar","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/17/2013","Order ID":"658695876","Ship Date":"9/3/2013","Units Sold":"1602","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"246804.12","Total Cost":"145669.86","Total Profit":"101134.26"},{"Region":"Europe","Country":"Montenegro","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"2/27/2016","Order ID":"216324937","Ship Date":"4/7/2016","Units Sold":"4211","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"866202.70","Total Cost":"493150.21","Total Profit":"373052.49"},{"Region":"Europe","Country":"Ireland","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"4/1/2012","Order ID":"506920611","Ship Date":"5/21/2012","Units Sold":"7929","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"648037.17","Total Cost":"449336.43","Total Profit":"198700.74"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/31/2011","Order ID":"303969228","Ship Date":"9/27/2011","Units Sold":"104","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"26549.12","Total Cost":"16579.68","Total Profit":"9969.44"},{"Region":"Asia","Country":"Japan","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"11/6/2013","Order ID":"251269614","Ship Date":"12/16/2013","Units Sold":"5117","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"780751.86","Total Cost":"498600.48","Total Profit":"282151.38"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"10/3/2011","Order ID":"612933099","Ship Date":"10/22/2011","Units Sold":"9380","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1929466.00","Total Cost":"1098491.80","Total Profit":"830974.20"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"10/4/2010","Order ID":"823383510","Ship Date":"11/6/2010","Units Sold":"6333","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1616688.24","Total Cost":"1009606.86","Total Profit":"607081.38"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"4/16/2017","Order ID":"837357175","Ship Date":"5/1/2017","Units Sold":"1451","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"944905.71","Total Cost":"761716.96","Total Profit":"183188.75"},{"Region":"Europe","Country":"Monaco","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"5/9/2012","Order ID":"679902923","Ship Date":"6/14/2012","Units Sold":"7239","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4714109.19","Total Cost":"3800185.44","Total Profit":"913923.75"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/16/2015","Order ID":"896382081","Ship Date":"12/16/2015","Units Sold":"8232","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1256038.56","Total Cost":"802126.08","Total Profit":"453912.48"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/7/2014","Order ID":"302468478","Ship Date":"10/25/2014","Units Sold":"5999","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"490298.27","Total Cost":"339963.33","Total Profit":"150334.94"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"2/26/2012","Order ID":"934148442","Ship Date":"4/4/2012","Units Sold":"4138","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"851186.60","Total Cost":"484601.18","Total Profit":"366585.42"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"1/5/2016","Order ID":"397720801","Ship Date":"1/17/2016","Units Sold":"3278","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"505008.68","Total Cost":"298068.54","Total Profit":"206940.14"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/30/2012","Order ID":"419796884","Ship Date":"9/28/2012","Units Sold":"6082","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"497081.86","Total Cost":"344666.94","Total Profit":"152414.92"},{"Region":"Asia","Country":"Myanmar","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/31/2015","Order ID":"997300517","Ship Date":"1/13/2016","Units Sold":"2240","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"945033.60","Total Cost":"816905.60","Total Profit":"128128.00"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/8/2010","Order ID":"847468030","Ship Date":"9/12/2010","Units Sold":"3478","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2264908.38","Total Cost":"1825810.88","Total Profit":"439097.50"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"7/14/2016","Order ID":"557848250","Ship Date":"8/11/2016","Units Sold":"8549","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5713040.23","Total Cost":"4296214.46","Total Profit":"1416825.77"},{"Region":"Europe","Country":"Belgium","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"7/19/2016","Order ID":"336302506","Ship Date":"8/14/2016","Units Sold":"8240","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3476373.60","Total Cost":"3005045.60","Total Profit":"471328.00"},{"Region":"Europe","Country":"Greece","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/28/2013","Order ID":"461004626","Ship Date":"10/24/2013","Units Sold":"368","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"75697.60","Total Cost":"43096.48","Total Profit":"32601.12"},{"Region":"Europe","Country":"Vatican City","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"3/6/2012","Order ID":"830440938","Ship Date":"3/27/2012","Units Sold":"4783","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2017899.87","Total Cost":"1744312.27","Total Profit":"273587.60"},{"Region":"Europe","Country":"Denmark","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"3/18/2013","Order ID":"513410270","Ship Date":"4/28/2013","Units Sold":"8363","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1276026.54","Total Cost":"814890.72","Total Profit":"461135.82"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/7/2011","Order ID":"899023950","Ship Date":"10/5/2011","Units Sold":"20","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"3051.60","Total Cost":"1948.80","Total Profit":"1102.80"},{"Region":"Asia","Country":"Bhutan","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/9/2014","Order ID":"746705806","Ship Date":"11/24/2014","Units Sold":"5696","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"465534.08","Total Cost":"322792.32","Total Profit":"142741.76"},{"Region":"Europe","Country":"Macedonia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/3/2015","Order ID":"236192166","Ship Date":"1/19/2016","Units Sold":"3366","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2249396.82","Total Cost":"1691549.64","Total Profit":"557847.18"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/28/2012","Order ID":"517531859","Ship Date":"12/5/2012","Units Sold":"8033","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"381165.85","Total Cost":"255369.07","Total Profit":"125796.78"},{"Region":"Europe","Country":"Moldova ","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/30/2012","Order ID":"561086213","Ship Date":"8/11/2012","Units Sold":"6734","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1027473.72","Total Cost":"656160.96","Total Profit":"371312.76"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"1/24/2011","Order ID":"307529056","Ship Date":"3/2/2011","Units Sold":"3536","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"727355.20","Total Cost":"414100.96","Total Profit":"313254.24"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/18/2013","Order ID":"217846715","Ship Date":"9/26/2013","Units Sold":"4539","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1158715.92","Total Cost":"723607.38","Total Profit":"435108.54"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/1/2014","Order ID":"823338019","Ship Date":"1/6/2015","Units Sold":"2871","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1255201.20","Total Cost":"756020.43","Total Profit":"499180.77"},{"Region":"Europe","Country":"Estonia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/17/2010","Order ID":"475614297","Ship Date":"10/14/2010","Units Sold":"3695","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"301992.35","Total Cost":"209395.65","Total Profit":"92596.70"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"10/19/2016","Order ID":"296599376","Ship Date":"12/8/2016","Units Sold":"9201","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1403888.58","Total Cost":"896545.44","Total Profit":"507343.14"},{"Region":"Asia","Country":"Myanmar","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"3/3/2012","Order ID":"128529584","Ship Date":"3/8/2012","Units Sold":"3615","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"551576.70","Total Cost":"352245.60","Total Profit":"199331.10"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"12/13/2010","Order ID":"783953750","Ship Date":"1/17/2011","Units Sold":"8191","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"895112.48","Total Cost":"293565.44","Total Profit":"601547.04"},{"Region":"Europe","Country":"Georgia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/9/2013","Order ID":"895733201","Ship Date":"4/18/2013","Units Sold":"6214","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2621624.46","Total Cost":"2266183.66","Total Profit":"355440.80"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/16/2016","Order ID":"967041766","Ship Date":"3/27/2016","Units Sold":"8003","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1646217.10","Total Cost":"937231.33","Total Profit":"708985.77"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/30/2010","Order ID":"221365773","Ship Date":"11/3/2010","Units Sold":"5906","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"909878.36","Total Cost":"537032.58","Total Profit":"372845.78"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"6/12/2015","Order ID":"652504050","Ship Date":"6/23/2015","Units Sold":"9303","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2374869.84","Total Cost":"1483084.26","Total Profit":"891785.58"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/22/2011","Order ID":"274567925","Ship Date":"9/30/2011","Units Sold":"9605","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6418733.35","Total Cost":"4826896.70","Total Profit":"1591836.65"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"2/23/2016","Order ID":"771981227","Ship Date":"3/24/2016","Units Sold":"5255","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1080953.50","Total Cost":"615413.05","Total Profit":"465540.45"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"6/21/2016","Order ID":"749480283","Ship Date":"8/3/2016","Units Sold":"6726","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"735017.28","Total Cost":"241059.84","Total Profit":"493957.44"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"7/18/2012","Order ID":"682113921","Ship Date":"8/11/2012","Units Sold":"1522","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"388536.16","Total Cost":"242637.24","Total Profit":"145898.92"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/7/2012","Order ID":"665243470","Ship Date":"1/7/2013","Units Sold":"9181","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1414424.86","Total Cost":"834828.33","Total Profit":"579596.53"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/30/2015","Order ID":"864542758","Ship Date":"12/13/2015","Units Sold":"6269","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1600350.32","Total Cost":"999403.98","Total Profit":"600946.34"},{"Region":"Europe","Country":"Malta","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"3/30/2013","Order ID":"165998113","Ship Date":"4/28/2013","Units Sold":"1385","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"12922.05","Total Cost":"9584.20","Total Profit":"3337.85"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"9/9/2016","Order ID":"225908362","Ship Date":"10/9/2016","Units Sold":"159","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"69514.80","Total Cost":"41869.47","Total Profit":"27645.33"},{"Region":"Asia","Country":"Nepal","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"5/12/2016","Order ID":"520884835","Ship Date":"6/7/2016","Units Sold":"253","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"27647.84","Total Cost":"9067.52","Total Profit":"18580.32"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"10/16/2014","Order ID":"597851359","Ship Date":"11/3/2014","Units Sold":"6358","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1307840.60","Total Cost":"744585.38","Total Profit":"563255.22"},{"Region":"Europe","Country":"Italy","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/30/2015","Order ID":"524044263","Ship Date":"8/20/2015","Units Sold":"5198","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1069228.60","Total Cost":"608737.78","Total Profit":"460490.82"},{"Region":"Asia","Country":"North Korea","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/8/2012","Order ID":"437012374","Ship Date":"2/14/2012","Units Sold":"528","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"222757.92","Total Cost":"192556.32","Total Profit":"30201.60"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/21/2013","Order ID":"994617021","Ship Date":"9/20/2013","Units Sold":"8134","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1673163.80","Total Cost":"952572.74","Total Profit":"720591.06"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/28/2012","Order ID":"225032031","Ship Date":"2/1/2012","Units Sold":"834","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"68162.82","Total Cost":"47262.78","Total Profit":"20900.04"},{"Region":"Europe","Country":"Andorra","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"3/11/2015","Order ID":"276743733","Ship Date":"4/7/2015","Units Sold":"3475","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2262954.75","Total Cost":"1824236.00","Total Profit":"438718.75"},{"Region":"Asia","Country":"Taiwan","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"12/21/2012","Order ID":"668550956","Ship Date":"12/23/2012","Units Sold":"7939","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1223082.34","Total Cost":"721893.27","Total Profit":"501189.07"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"8/17/2011","Order ID":"539565026","Ship Date":"8/17/2011","Units Sold":"8136","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"664955.28","Total Cost":"461067.12","Total Profit":"203888.16"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"8/17/2014","Order ID":"899209773","Ship Date":"9/14/2014","Units Sold":"5009","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"409385.57","Total Cost":"283860.03","Total Profit":"125525.54"},{"Region":"Europe","Country":"Switzerland","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/17/2011","Order ID":"577221524","Ship Date":"5/20/2011","Units Sold":"1531","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"125128.63","Total Cost":"86761.77","Total Profit":"38366.86"},{"Region":"Europe","Country":"Spain","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"4/8/2011","Order ID":"273649108","Ship Date":"5/14/2011","Units Sold":"7707","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"365697.15","Total Cost":"245005.53","Total Profit":"120691.62"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/10/2017","Order ID":"308853852","Ship Date":"4/27/2017","Units Sold":"5573","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3629193.33","Total Cost":"2925602.08","Total Profit":"703591.25"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/1/2014","Order ID":"173509585","Ship Date":"4/18/2014","Units Sold":"4197","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2733128.37","Total Cost":"2203257.12","Total Profit":"529871.25"},{"Region":"Europe","Country":"Slovenia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/29/2010","Order ID":"778602635","Ship Date":"1/7/2011","Units Sold":"4677","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"511102.56","Total Cost":"167623.68","Total Profit":"343478.88"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"10/5/2013","Order ID":"405431830","Ship Date":"11/18/2013","Units Sold":"5143","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"792330.58","Total Cost":"467652.99","Total Profit":"324677.59"},{"Region":"North America","Country":"United States of America","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"6/21/2014","Order ID":"555608499","Ship Date":"7/18/2014","Units Sold":"5756","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"273122.20","Total Cost":"182983.24","Total Profit":"90138.96"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"7/18/2017","Order ID":"101056468","Ship Date":"8/7/2017","Units Sold":"3709","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"571408.54","Total Cost":"337259.37","Total Profit":"234149.17"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/2/2013","Order ID":"234012067","Ship Date":"5/3/2013","Units Sold":"8226","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1692088.20","Total Cost":"963346.86","Total Profit":"728741.34"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/5/2012","Order ID":"417024123","Ship Date":"4/8/2012","Units Sold":"5560","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"263822.00","Total Cost":"176752.40","Total Profit":"87069.60"},{"Region":"Asia","Country":"India","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/2/2010","Order ID":"632953965","Ship Date":"6/18/2010","Units Sold":"3999","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"37310.67","Total Cost":"27673.08","Total Profit":"9637.59"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"6/29/2016","Order ID":"934975421","Ship Date":"7/3/2016","Units Sold":"8859","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5769069.39","Total Cost":"4650620.64","Total Profit":"1118448.75"},{"Region":"Europe","Country":"Croatia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"2/11/2010","Order ID":"996574819","Ship Date":"3/22/2010","Units Sold":"7490","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"355400.50","Total Cost":"238107.10","Total Profit":"117293.40"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"5/16/2013","Order ID":"561550986","Ship Date":"5/31/2013","Units Sold":"4271","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"202658.95","Total Cost":"135775.09","Total Profit":"66883.86"},{"Region":"Europe","Country":"Andorra","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/23/2011","Order ID":"794015252","Ship Date":"9/7/2011","Units Sold":"5613","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"458750.49","Total Cost":"318088.71","Total Profit":"140661.78"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"4/18/2010","Order ID":"228391444","Ship Date":"4/26/2010","Units Sold":"4959","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1020066.30","Total Cost":"580748.49","Total Profit":"439317.81"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"10/10/2015","Order ID":"619415891","Ship Date":"11/7/2015","Units Sold":"7782","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1198894.92","Total Cost":"707617.26","Total Profit":"491277.66"},{"Region":"Europe","Country":"Croatia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"8/22/2016","Order ID":"192137420","Ship Date":"10/5/2016","Units Sold":"6587","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4289520.27","Total Cost":"3457911.52","Total Profit":"831608.75"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"2/10/2010","Order ID":"391917359","Ship Date":"3/22/2010","Units Sold":"5911","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1215892.70","Total Cost":"692237.21","Total Profit":"523655.49"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"5/22/2013","Order ID":"934429538","Ship Date":"7/1/2013","Units Sold":"7320","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1127719.20","Total Cost":"665607.60","Total Profit":"462111.60"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/14/2014","Order ID":"255660283","Ship Date":"7/12/2014","Units Sold":"4414","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"360756.22","Total Cost":"250141.38","Total Profit":"110614.84"},{"Region":"Europe","Country":"Iceland","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/13/2013","Order ID":"461908423","Ship Date":"10/12/2013","Units Sold":"7822","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"854788.16","Total Cost":"280340.48","Total Profit":"574447.68"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/10/2012","Order ID":"579785287","Ship Date":"9/8/2012","Units Sold":"205","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"89626.00","Total Cost":"53982.65","Total Profit":"35643.35"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/28/2017","Order ID":"606214702","Ship Date":"7/3/2017","Units Sold":"1257","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"530315.73","Total Cost":"458415.33","Total Profit":"71900.40"},{"Region":"Sub-Saharan Africa","Country":"Mali","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/5/2013","Order ID":"158432996","Ship Date":"2/20/2013","Units Sold":"2699","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"689000.72","Total Cost":"430274.58","Total Profit":"258726.14"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"5/31/2011","Order ID":"723988997","Ship Date":"6/27/2011","Units Sold":"3288","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"676341.60","Total Cost":"385057.68","Total Profit":"291283.92"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/5/2010","Order ID":"710744035","Ship Date":"12/16/2010","Units Sold":"3809","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"180737.05","Total Cost":"121088.11","Total Profit":"59648.94"},{"Region":"Europe","Country":"San Marino","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/25/2014","Order ID":"396871936","Ship Date":"5/8/2014","Units Sold":"2080","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"317366.40","Total Cost":"202675.20","Total Profit":"114691.20"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/1/2010","Order ID":"580859029","Ship Date":"11/10/2010","Units Sold":"7949","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5312078.23","Total Cost":"3994690.46","Total Profit":"1317387.77"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/22/2016","Order ID":"331504142","Ship Date":"10/9/2016","Units Sold":"8297","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5544636.19","Total Cost":"4169574.38","Total Profit":"1375061.81"},{"Region":"Asia","Country":"Cambodia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"9/9/2011","Order ID":"137918603","Ship Date":"10/10/2011","Units Sold":"2034","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"166238.82","Total Cost":"115266.78","Total Profit":"50972.04"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"9/23/2010","Order ID":"559526240","Ship Date":"10/16/2010","Units Sold":"5103","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3323124.63","Total Cost":"2678870.88","Total Profit":"644253.75"},{"Region":"Europe","Country":"Iceland","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/9/2014","Order ID":"876063382","Ship Date":"7/26/2014","Units Sold":"5478","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"835833.24","Total Cost":"533776.32","Total Profit":"302056.92"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"7/12/2013","Order ID":"437578856","Ship Date":"8/28/2013","Units Sold":"8162","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5454419.74","Total Cost":"4101731.48","Total Profit":"1352688.26"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/4/2014","Order ID":"914433991","Ship Date":"6/13/2014","Units Sold":"194","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"126334.74","Total Cost":"101842.24","Total Profit":"24492.50"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/4/2013","Order ID":"447302615","Ship Date":"9/13/2013","Units Sold":"5639","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3768374.53","Total Cost":"2833823.06","Total Profit":"934551.47"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"1/18/2016","Order ID":"397171056","Ship Date":"2/23/2016","Units Sold":"596","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"90937.68","Total Cost":"58074.24","Total Profit":"32863.44"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/5/2016","Order ID":"395338141","Ship Date":"8/8/2016","Units Sold":"8196","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1262675.76","Total Cost":"745262.28","Total Profit":"517413.48"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"10/10/2010","Order ID":"593415200","Ship Date":"11/13/2010","Units Sold":"3600","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1518804.00","Total Cost":"1312884.00","Total Profit":"205920.00"},{"Region":"Sub-Saharan Africa","Country":"Mali","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/16/2014","Order ID":"313326060","Ship Date":"9/8/2014","Units Sold":"8999","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"735488.27","Total Cost":"509973.33","Total Profit":"225514.94"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/13/2014","Order ID":"297307050","Ship Date":"8/17/2014","Units Sold":"8618","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5759150.86","Total Cost":"4330889.72","Total Profit":"1428261.14"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/22/2017","Order ID":"457906997","Ship Date":"5/7/2017","Units Sold":"3711","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"176086.95","Total Cost":"117972.69","Total Profit":"58114.26"},{"Region":"Europe","Country":"San Marino","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/5/2015","Order ID":"327987229","Ship Date":"3/15/2015","Units Sold":"7565","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"70581.45","Total Cost":"52349.80","Total Profit":"18231.65"},{"Region":"North America","Country":"Mexico","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"2/10/2013","Order ID":"410721576","Ship Date":"3/13/2013","Units Sold":"496","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"40538.08","Total Cost":"28108.32","Total Profit":"12429.76"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/2/2017","Order ID":"829596364","Ship Date":"3/4/2017","Units Sold":"4854","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"530445.12","Total Cost":"173967.36","Total Profit":"356477.76"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/16/2015","Order ID":"878410422","Ship Date":"3/16/2015","Units Sold":"19","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"1552.87","Total Cost":"1076.73","Total Profit":"476.14"},{"Region":"Europe","Country":"Netherlands","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"10/6/2011","Order ID":"371275079","Ship Date":"11/24/2011","Units Sold":"7401","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"808781.28","Total Cost":"265251.84","Total Profit":"543529.44"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"12/4/2015","Order ID":"992614161","Ship Date":"12/23/2015","Units Sold":"5443","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"594811.04","Total Cost":"195077.12","Total Profit":"399733.92"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/11/2015","Order ID":"447163999","Ship Date":"3/31/2015","Units Sold":"4619","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"43095.27","Total Cost":"31963.48","Total Profit":"11131.79"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"1/25/2017","Order ID":"109973418","Ship Date":"3/12/2017","Units Sold":"2433","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"198849.09","Total Cost":"137878.11","Total Profit":"60970.98"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/25/2014","Order ID":"976403748","Ship Date":"12/31/2014","Units Sold":"8422","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3682098.40","Total Cost":"2217765.26","Total Profit":"1464333.14"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/9/2014","Order ID":"512128818","Ship Date":"11/27/2014","Units Sold":"9153","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5960525.13","Total Cost":"4804958.88","Total Profit":"1155566.25"},{"Region":"Europe","Country":"Finland","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/11/2015","Order ID":"303134953","Ship Date":"11/13/2015","Units Sold":"3224","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"496689.44","Total Cost":"293158.32","Total Profit":"203531.12"},{"Region":"Asia","Country":"Thailand","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"8/14/2014","Order ID":"205720984","Ship Date":"8/23/2014","Units Sold":"6266","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2739495.20","Total Cost":"1650025.78","Total Profit":"1089469.42"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"7/18/2016","Order ID":"596498239","Ship Date":"8/27/2016","Units Sold":"5939","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"281805.55","Total Cost":"188800.81","Total Profit":"93004.74"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/9/2016","Order ID":"122390544","Ship Date":"8/2/2016","Units Sold":"6937","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4635788.99","Total Cost":"3486119.98","Total Profit":"1149669.01"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"7/27/2010","Order ID":"650634229","Ship Date":"8/23/2010","Units Sold":"5982","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"55812.06","Total Cost":"41395.44","Total Profit":"14416.62"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/17/2014","Order ID":"518778121","Ship Date":"11/6/2014","Units Sold":"6829","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2881086.81","Total Cost":"2490468.01","Total Profit":"390618.80"},{"Region":"Europe","Country":"Slovakia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"9/29/2015","Order ID":"384683549","Ship Date":"10/7/2015","Units Sold":"5265","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1083010.50","Total Cost":"616584.15","Total Profit":"466426.35"},{"Region":"Europe","Country":"Moldova ","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/20/2012","Order ID":"976524341","Ship Date":"11/25/2012","Units Sold":"4108","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"626798.64","Total Cost":"400283.52","Total Profit":"226515.12"},{"Region":"Asia","Country":"Maldives","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"12/30/2013","Order ID":"842786824","Ship Date":"1/8/2014","Units Sold":"8205","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3587226.00","Total Cost":"2160622.65","Total Profit":"1426603.35"},{"Region":"Europe","Country":"San Marino","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/21/2016","Order ID":"402269828","Ship Date":"9/14/2016","Units Sold":"9436","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1031166.08","Total Cost":"338186.24","Total Profit":"692979.84"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"11/13/2011","Order ID":"594084680","Ship Date":"12/1/2011","Units Sold":"1713","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"81281.85","Total Cost":"54456.27","Total Profit":"26825.58"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/25/2010","Order ID":"627655208","Ship Date":"11/14/2010","Units Sold":"5979","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1229880.30","Total Cost":"700200.69","Total Profit":"529679.61"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"3/18/2010","Order ID":"232717740","Ship Date":"4/24/2010","Units Sold":"5206","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3390199.26","Total Cost":"2732941.76","Total Profit":"657257.50"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"2/14/2012","Order ID":"109321105","Ship Date":"3/25/2012","Units Sold":"9399","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"87692.67","Total Cost":"65041.08","Total Profit":"22651.59"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"10/12/2011","Order ID":"577826631","Ship Date":"11/10/2011","Units Sold":"595","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"48629.35","Total Cost":"33718.65","Total Profit":"14910.70"},{"Region":"Europe","Country":"Moldova ","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"12/4/2016","Order ID":"228908145","Ship Date":"12/18/2016","Units Sold":"7862","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"642561.26","Total Cost":"445539.54","Total Profit":"197021.72"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"8/24/2013","Order ID":"873551976","Ship Date":"9/12/2013","Units Sold":"2297","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1004248.40","Total Cost":"604869.01","Total Profit":"399379.39"},{"Region":"Asia","Country":"Philippines","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/5/2015","Order ID":"793056952","Ship Date":"8/10/2015","Units Sold":"2031","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"887953.20","Total Cost":"534823.23","Total Profit":"353129.97"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/9/2014","Order ID":"589034402","Ship Date":"11/26/2014","Units Sold":"7224","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4704341.04","Total Cost":"3792311.04","Total Profit":"912030.00"},{"Region":"Asia","Country":"Taiwan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/10/2015","Order ID":"933408153","Ship Date":"8/18/2015","Units Sold":"5070","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3388128.90","Total Cost":"2547877.80","Total Profit":"840251.10"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"1/6/2016","Order ID":"318414533","Ship Date":"1/20/2016","Units Sold":"4791","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"391568.43","Total Cost":"271505.97","Total Profit":"120062.46"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/13/2011","Order ID":"906602370","Ship Date":"4/11/2011","Units Sold":"2643","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"288827.04","Total Cost":"94725.12","Total Profit":"194101.92"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/22/2012","Order ID":"880832993","Ship Date":"8/23/2012","Units Sold":"6912","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2916103.68","Total Cost":"2520737.28","Total Profit":"395366.40"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"8/20/2013","Order ID":"294280230","Ship Date":"9/27/2013","Units Sold":"2915","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1229809.35","Total Cost":"1063071.35","Total Profit":"166738.00"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/12/2016","Order ID":"620430409","Ship Date":"9/9/2016","Units Sold":"8000","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"379600.00","Total Cost":"254320.00","Total Profit":"125280.00"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"5/15/2013","Order ID":"703082358","Ship Date":"6/2/2013","Units Sold":"6549","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2863222.80","Total Cost":"1724548.17","Total Profit":"1138674.63"},{"Region":"Europe","Country":"Iceland","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/1/2012","Order ID":"806347405","Ship Date":"2/10/2012","Units Sold":"4971","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2173321.20","Total Cost":"1309013.43","Total Profit":"864307.77"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"4/23/2010","Order ID":"364649379","Ship Date":"5/5/2010","Units Sold":"6709","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1033588.54","Total Cost":"610049.37","Total Profit":"423539.17"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"9/23/2014","Order ID":"232724606","Ship Date":"10/12/2014","Units Sold":"7238","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4713457.98","Total Cost":"3799660.48","Total Profit":"913797.50"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/30/2013","Order ID":"435621917","Ship Date":"11/29/2013","Units Sold":"9061","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"740555.53","Total Cost":"513486.87","Total Profit":"227068.66"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/24/2012","Order ID":"618702638","Ship Date":"6/22/2012","Units Sold":"6714","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"548735.22","Total Cost":"380482.38","Total Profit":"168252.84"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"6/26/2012","Order ID":"497640597","Ship Date":"8/4/2012","Units Sold":"1766","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"16476.78","Total Cost":"12220.72","Total Profit":"4256.06"},{"Region":"Europe","Country":"Norway","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/22/2017","Order ID":"308422124","Ship Date":"5/7/2017","Units Sold":"7815","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1203978.90","Total Cost":"710617.95","Total Profit":"493360.95"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"11/12/2011","Order ID":"357346045","Ship Date":"12/4/2011","Units Sold":"5491","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3575794.11","Total Cost":"2882555.36","Total Profit":"693238.75"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"1/10/2013","Order ID":"571023690","Ship Date":"1/17/2013","Units Sold":"7454","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1902857.12","Total Cost":"1188316.68","Total Profit":"714540.44"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"11/18/2011","Order ID":"946378886","Ship Date":"12/13/2011","Units Sold":"3398","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2270781.46","Total Cost":"1707630.92","Total Profit":"563150.54"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/25/2015","Order ID":"200647962","Ship Date":"11/9/2015","Units Sold":"5046","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"551426.88","Total Cost":"180848.64","Total Profit":"370578.24"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/4/2014","Order ID":"721379745","Ship Date":"5/8/2014","Units Sold":"1152","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"769847.04","Total Cost":"578926.08","Total Profit":"190920.96"},{"Region":"Asia","Country":"Mongolia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"3/9/2013","Order ID":"916435563","Ship Date":"4/11/2013","Units Sold":"2503","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1055990.67","Total Cost":"912819.07","Total Profit":"143171.60"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/13/2015","Order ID":"163989245","Ship Date":"6/11/2015","Units Sold":"6917","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4622423.59","Total Cost":"3476069.18","Total Profit":"1146354.41"},{"Region":"Asia","Country":"Thailand","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/13/2017","Order ID":"162527120","Ship Date":"6/18/2017","Units Sold":"4241","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1082642.48","Total Cost":"676100.22","Total Profit":"406542.26"},{"Region":"Asia","Country":"South Korea","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/20/2012","Order ID":"880848014","Ship Date":"1/21/2013","Units Sold":"1357","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"906842.39","Total Cost":"681946.78","Total Profit":"224895.61"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"3/1/2012","Order ID":"108063256","Ship Date":"3/13/2012","Units Sold":"7174","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3026638.86","Total Cost":"2616286.06","Total Profit":"410352.80"},{"Region":"Europe","Country":"Malta","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/24/2014","Order ID":"203596675","Ship Date":"9/1/2014","Units Sold":"7635","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3221130.15","Total Cost":"2784408.15","Total Profit":"436722.00"},{"Region":"Europe","Country":"Latvia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/5/2013","Order ID":"447184598","Ship Date":"8/20/2013","Units Sold":"715","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"6670.95","Total Cost":"4947.80","Total Profit":"1723.15"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"8/15/2014","Order ID":"188875854","Ship Date":"8/30/2014","Units Sold":"1417","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"946938.59","Total Cost":"712099.18","Total Profit":"234839.41"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/28/2016","Order ID":"199031770","Ship Date":"11/2/2016","Units Sold":"6778","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2963341.60","Total Cost":"1784850.74","Total Profit":"1178490.86"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"8/4/2016","Order ID":"418326175","Ship Date":"8/25/2016","Units Sold":"866","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"563947.86","Total Cost":"454615.36","Total Profit":"109332.50"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"5/13/2011","Order ID":"407745397","Ship Date":"5/23/2011","Units Sold":"9779","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1068649.12","Total Cost":"350479.36","Total Profit":"718169.76"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/3/2011","Order ID":"698588263","Ship Date":"1/12/2011","Units Sold":"6646","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"726274.88","Total Cost":"238192.64","Total Profit":"488082.24"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/24/2011","Order ID":"542466104","Ship Date":"5/12/2011","Units Sold":"6630","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"541869.90","Total Cost":"375722.10","Total Profit":"166147.80"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/2/2012","Order ID":"161302745","Ship Date":"12/27/2012","Units Sold":"1922","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"157085.06","Total Cost":"108919.74","Total Profit":"48165.32"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/14/2017","Order ID":"297334516","Ship Date":"8/14/2017","Units Sold":"6745","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"737093.60","Total Cost":"241740.80","Total Profit":"495352.80"},{"Region":"Europe","Country":"Norway","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"7/25/2016","Order ID":"863110244","Ship Date":"8/19/2016","Units Sold":"2356","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"362965.36","Total Cost":"214231.08","Total Profit":"148734.28"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/22/2010","Order ID":"491491258","Ship Date":"2/1/2010","Units Sold":"2040","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"891888.00","Total Cost":"537193.20","Total Profit":"354694.80"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"6/29/2010","Order ID":"585651385","Ship Date":"7/27/2010","Units Sold":"6114","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"57043.62","Total Cost":"42308.88","Total Profit":"14734.74"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/2/2016","Order ID":"369076955","Ship Date":"5/5/2016","Units Sold":"6927","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4510931.67","Total Cost":"3636397.92","Total Profit":"874533.75"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"6/10/2015","Order ID":"935566794","Ship Date":"6/27/2015","Units Sold":"3860","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2513670.60","Total Cost":"2026345.60","Total Profit":"487325.00"},{"Region":"Asia","Country":"Malaysia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/11/2012","Order ID":"299232232","Ship Date":"6/18/2012","Units Sold":"8322","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"394878.90","Total Cost":"264556.38","Total Profit":"130322.52"},{"Region":"Europe","Country":"Albania","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/3/2016","Order ID":"144497096","Ship Date":"4/10/2016","Units Sold":"8757","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5852040.39","Total Cost":"4400742.78","Total Profit":"1451297.61"},{"Region":"Europe","Country":"Sweden","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/20/2014","Order ID":"876097714","Ship Date":"6/14/2014","Units Sold":"5637","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"267475.65","Total Cost":"179200.23","Total Profit":"88275.42"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/29/2014","Order ID":"269082915","Ship Date":"8/14/2014","Units Sold":"6469","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4212677.49","Total Cost":"3395966.24","Total Profit":"816711.25"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/2/2017","Order ID":"218814027","Ship Date":"7/10/2017","Units Sold":"788","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"7352.04","Total Cost":"5452.96","Total Profit":"1899.08"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/7/2014","Order ID":"890964877","Ship Date":"2/18/2014","Units Sold":"5161","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1317500.08","Total Cost":"822766.62","Total Profit":"494733.46"},{"Region":"Europe","Country":"Cyprus","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/19/2011","Order ID":"271521794","Ship Date":"4/3/2011","Units Sold":"8188","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"669205.24","Total Cost":"464013.96","Total Profit":"205191.28"},{"Region":"Europe","Country":"Macedonia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/6/2013","Order ID":"916783607","Ship Date":"1/23/2013","Units Sold":"5497","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3579701.37","Total Cost":"2885705.12","Total Profit":"693996.25"},{"Region":"Asia","Country":"South Korea","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"3/14/2017","Order ID":"503361642","Ship Date":"4/15/2017","Units Sold":"4750","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"731785.00","Total Cost":"431917.50","Total Profit":"299867.50"},{"Region":"Europe","Country":"Montenegro","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"2/24/2011","Order ID":"378179728","Ship Date":"3/4/2011","Units Sold":"641","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"417425.61","Total Cost":"336499.36","Total Profit":"80926.25"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"8/9/2013","Order ID":"608474195","Ship Date":"8/19/2013","Units Sold":"9891","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"808391.43","Total Cost":"560522.97","Total Profit":"247868.46"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"4/20/2010","Order ID":"431793868","Ship Date":"5/31/2010","Units Sold":"6256","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4180697.12","Total Cost":"3143890.24","Total Profit":"1036806.88"},{"Region":"Europe","Country":"Montenegro","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/1/2010","Order ID":"506000077","Ship Date":"10/15/2010","Units Sold":"5522","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"51520.26","Total Cost":"38212.24","Total Profit":"13308.02"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/4/2014","Order ID":"659266650","Ship Date":"4/8/2014","Units Sold":"507","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"4730.31","Total Cost":"3508.44","Total Profit":"1221.87"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"4/11/2013","Order ID":"340079915","Ship Date":"4/30/2013","Units Sold":"6059","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1246336.30","Total Cost":"709569.49","Total Profit":"536766.81"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/16/2013","Order ID":"867238700","Ship Date":"4/8/2013","Units Sold":"4058","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2642610.18","Total Cost":"2130287.68","Total Profit":"512322.50"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/31/2012","Order ID":"479854333","Ship Date":"8/14/2012","Units Sold":"8415","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5479932.15","Total Cost":"4417538.40","Total Profit":"1062393.75"},{"Region":"Europe","Country":"Montenegro","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/21/2014","Order ID":"187350642","Ship Date":"1/10/2015","Units Sold":"73","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"7977.44","Total Cost":"2616.32","Total Profit":"5361.12"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"2/3/2017","Order ID":"619463956","Ship Date":"3/25/2017","Units Sold":"2005","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1305676.05","Total Cost":"1052544.80","Total Profit":"253131.25"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"6/13/2013","Order ID":"676243102","Ship Date":"7/5/2013","Units Sold":"4216","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"643277.28","Total Cost":"410807.04","Total Profit":"232470.24"},{"Region":"Asia","Country":"China","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"6/2/2014","Order ID":"678049409","Ship Date":"7/11/2014","Units Sold":"8743","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2231913.04","Total Cost":"1393809.06","Total Profit":"838103.98"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"8/3/2012","Order ID":"115556704","Ship Date":"8/13/2012","Units Sold":"4652","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1187562.56","Total Cost":"741621.84","Total Profit":"445940.72"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/8/2016","Order ID":"799751317","Ship Date":"10/16/2016","Units Sold":"3042","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"332429.76","Total Cost":"109025.28","Total Profit":"223404.48"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/29/2010","Order ID":"111932075","Ship Date":"6/14/2010","Units Sold":"2043","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"893199.60","Total Cost":"537983.19","Total Profit":"355216.41"},{"Region":"Asia","Country":"Japan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"7/18/2015","Order ID":"453710305","Ship Date":"9/3/2015","Units Sold":"1817","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"373756.90","Total Cost":"212788.87","Total Profit":"160968.03"},{"Region":"Europe","Country":"Ukraine","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"2/20/2014","Order ID":"697009837","Ship Date":"3/16/2014","Units Sold":"9555","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"89148.15","Total Cost":"66120.60","Total Profit":"23027.55"},{"Region":"Europe","Country":"Monaco","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"8/7/2011","Order ID":"234066998","Ship Date":"8/11/2011","Units Sold":"4481","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"41807.73","Total Cost":"31008.52","Total Profit":"10799.21"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/10/2010","Order ID":"327430617","Ship Date":"9/12/2010","Units Sold":"2851","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1905237.77","Total Cost":"1432741.54","Total Profit":"472496.23"},{"Region":"Europe","Country":"Lithuania","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"4/3/2015","Order ID":"959962022","Ship Date":"5/19/2015","Units Sold":"2950","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"753076.00","Total Cost":"470289.00","Total Profit":"282787.00"},{"Region":"Asia","Country":"Philippines","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"4/3/2011","Order ID":"384835040","Ship Date":"5/23/2011","Units Sold":"95","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"10381.60","Total Cost":"3404.80","Total Profit":"6976.80"},{"Region":"Europe","Country":"Switzerland","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"1/5/2016","Order ID":"975536000","Ship Date":"2/19/2016","Units Sold":"1636","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"715259.20","Total Cost":"430807.88","Total Profit":"284451.32"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"11/3/2013","Order ID":"675863730","Ship Date":"12/22/2013","Units Sold":"1952","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"159536.96","Total Cost":"110619.84","Total Profit":"48917.12"},{"Region":"North America","Country":"Greenland","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"11/1/2012","Order ID":"649929559","Ship Date":"12/14/2012","Units Sold":"7454","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1902857.12","Total Cost":"1188316.68","Total Profit":"714540.44"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/17/2010","Order ID":"332157313","Ship Date":"12/1/2010","Units Sold":"1585","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"173208.80","Total Cost":"56806.40","Total Profit":"116402.40"},{"Region":"North America","Country":"United States of America","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"2/26/2014","Order ID":"577283322","Ship Date":"4/5/2014","Units Sold":"9818","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1072911.04","Total Cost":"351877.12","Total Profit":"721033.92"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/28/2011","Order ID":"510356414","Ship Date":"8/11/2011","Units Sold":"4659","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1189349.52","Total Cost":"742737.78","Total Profit":"446611.74"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/25/2015","Order ID":"676737916","Ship Date":"4/12/2015","Units Sold":"643","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"5999.19","Total Cost":"4449.56","Total Profit":"1549.63"},{"Region":"Europe","Country":"Kosovo","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"1/20/2012","Order ID":"792101657","Ship Date":"2/5/2012","Units Sold":"9337","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6080347.77","Total Cost":"4901551.52","Total Profit":"1178796.25"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"11/22/2012","Order ID":"192433965","Ship Date":"1/3/2013","Units Sold":"4341","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1897885.20","Total Cost":"1143115.53","Total Profit":"754769.67"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/2/2010","Order ID":"984033668","Ship Date":"8/16/2010","Units Sold":"6284","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2747364.80","Total Cost":"1654765.72","Total Profit":"1092599.08"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"12/2/2013","Order ID":"393512094","Ship Date":"12/15/2013","Units Sold":"7828","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"371438.60","Total Cost":"248852.12","Total Profit":"122586.48"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"4/27/2014","Order ID":"217793071","Ship Date":"5/20/2014","Units Sold":"8664","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2211745.92","Total Cost":"1381214.88","Total Profit":"830531.04"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/7/2011","Order ID":"974112927","Ship Date":"7/19/2011","Units Sold":"517","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"345495.59","Total Cost":"259813.18","Total Profit":"85682.41"},{"Region":"Europe","Country":"Lithuania","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"3/2/2010","Order ID":"550020492","Ship Date":"3/11/2010","Units Sold":"2141","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1394240.61","Total Cost":"1123939.36","Total Profit":"270301.25"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/1/2016","Order ID":"953377091","Ship Date":"1/3/2016","Units Sold":"4322","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"665847.32","Total Cost":"392999.46","Total Profit":"272847.86"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/18/2016","Order ID":"662356555","Ship Date":"12/11/2016","Units Sold":"4879","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"533177.12","Total Cost":"174863.36","Total Profit":"358313.76"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"11/18/2016","Order ID":"475445210","Ship Date":"11/28/2016","Units Sold":"3658","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1543273.62","Total Cost":"1334036.02","Total Profit":"209237.60"},{"Region":"Asia","Country":"Brunei","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/6/2017","Order ID":"361441886","Ship Date":"6/21/2017","Units Sold":"7541","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"357820.45","Total Cost":"239728.39","Total Profit":"118092.06"},{"Region":"Sub-Saharan Africa","Country":"Mali","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"2/12/2013","Order ID":"809457910","Ship Date":"3/6/2013","Units Sold":"5438","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3634052.26","Total Cost":"2732812.52","Total Profit":"901239.74"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"6/18/2011","Order ID":"578917109","Ship Date":"7/10/2011","Units Sold":"3292","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"359749.76","Total Cost":"117985.28","Total Profit":"241764.48"},{"Region":"Europe","Country":"Serbia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/20/2013","Order ID":"749555814","Ship Date":"4/2/2013","Units Sold":"9077","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1384968.66","Total Cost":"884462.88","Total Profit":"500505.78"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/8/2016","Order ID":"671422851","Ship Date":"3/19/2016","Units Sold":"7797","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1189666.26","Total Cost":"759739.68","Total Profit":"429926.58"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/16/2012","Order ID":"214879548","Ship Date":"3/16/2012","Units Sold":"6488","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1334581.60","Total Cost":"759809.68","Total Profit":"574771.92"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/29/2012","Order ID":"220599734","Ship Date":"7/30/2012","Units Sold":"9218","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1420125.08","Total Cost":"838192.74","Total Profit":"581932.34"},{"Region":"Europe","Country":"Montenegro","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/22/2014","Order ID":"249569737","Ship Date":"10/5/2014","Units Sold":"2086","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"98980.70","Total Cost":"66313.94","Total Profit":"32666.76"},{"Region":"Europe","Country":"Denmark","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/19/2013","Order ID":"833088386","Ship Date":"8/2/2013","Units Sold":"8221","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5353597.41","Total Cost":"4315696.16","Total Profit":"1037901.25"},{"Region":"Asia","Country":"Maldives","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"4/28/2012","Order ID":"322767007","Ship Date":"5/30/2012","Units Sold":"2785","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"424935.30","Total Cost":"271370.40","Total Profit":"153564.90"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"9/9/2011","Order ID":"740529429","Ship Date":"9/14/2011","Units Sold":"7969","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"870852.32","Total Cost":"285608.96","Total Profit":"585243.36"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/9/2013","Order ID":"128611981","Ship Date":"6/13/2013","Units Sold":"7998","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2041729.44","Total Cost":"1275041.16","Total Profit":"766688.28"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/18/2016","Order ID":"199563491","Ship Date":"4/29/2016","Units Sold":"4127","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"629697.66","Total Cost":"402134.88","Total Profit":"227562.78"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/29/2012","Order ID":"486245286","Ship Date":"2/5/2013","Units Sold":"9640","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"89941.20","Total Cost":"66708.80","Total Profit":"23232.40"},{"Region":"Europe","Country":"Serbia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/2/2015","Order ID":"591831195","Ship Date":"12/5/2015","Units Sold":"4857","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"999084.90","Total Cost":"568803.27","Total Profit":"430281.63"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"11/21/2015","Order ID":"639807546","Ship Date":"12/5/2015","Units Sold":"2126","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"19835.58","Total Cost":"14711.92","Total Profit":"5123.66"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/23/2016","Order ID":"823973166","Ship Date":"3/6/2016","Units Sold":"825","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"537248.25","Total Cost":"433092.00","Total Profit":"104156.25"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"6/6/2013","Order ID":"958439385","Ship Date":"6/10/2013","Units Sold":"2368","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"364814.08","Total Cost":"215322.24","Total Profit":"149491.84"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/22/2016","Order ID":"927630031","Ship Date":"12/26/2016","Units Sold":"5195","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3471662.65","Total Cost":"2610695.30","Total Profit":"860967.35"},{"Region":"Europe","Country":"Georgia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/17/2014","Order ID":"236281430","Ship Date":"1/25/2014","Units Sold":"9781","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1492384.98","Total Cost":"953060.64","Total Profit":"539324.34"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"5/22/2012","Order ID":"259442412","Ship Date":"6/15/2012","Units Sold":"3630","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"559237.80","Total Cost":"330075.90","Total Profit":"229161.90"},{"Region":"Asia","Country":"Indonesia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/2/2012","Order ID":"192474305","Ship Date":"1/11/2013","Units Sold":"6279","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2649047.31","Total Cost":"2289888.51","Total Profit":"359158.80"},{"Region":"Asia","Country":"Myanmar","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/28/2013","Order ID":"201050937","Ship Date":"12/1/2013","Units Sold":"4295","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"469357.60","Total Cost":"153932.80","Total Profit":"315424.80"},{"Region":"Europe","Country":"Germany","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/10/2014","Order ID":"971158635","Ship Date":"10/5/2014","Units Sold":"6276","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1290973.20","Total Cost":"734982.36","Total Profit":"555990.84"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"11/22/2011","Order ID":"559096229","Ship Date":"11/25/2011","Units Sold":"7853","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1198210.74","Total Cost":"765196.32","Total Profit":"433014.42"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/3/2010","Order ID":"241475045","Ship Date":"10/4/2010","Units Sold":"6687","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1020302.46","Total Cost":"651581.28","Total Profit":"368721.18"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/27/2013","Order ID":"465218913","Ship Date":"11/16/2013","Units Sold":"7469","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4863887.49","Total Cost":"3920926.24","Total Profit":"942961.25"},{"Region":"Europe","Country":"Latvia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/11/2017","Order ID":"397564160","Ship Date":"3/5/2017","Units Sold":"6925","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1424472.50","Total Cost":"810986.75","Total Profit":"613485.75"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/8/2013","Order ID":"176059615","Ship Date":"12/17/2013","Units Sold":"8807","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2248250.96","Total Cost":"1404011.94","Total Profit":"844239.02"},{"Region":"Europe","Country":"Poland","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/19/2013","Order ID":"458566606","Ship Date":"12/7/2013","Units Sold":"8904","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5950276.08","Total Cost":"4474616.16","Total Profit":"1475659.92"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/6/2015","Order ID":"173258960","Ship Date":"1/18/2016","Units Sold":"31","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"1470.95","Total Cost":"985.49","Total Profit":"485.46"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"1/11/2013","Order ID":"568623006","Ship Date":"1/18/2013","Units Sold":"7038","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"65664.54","Total Cost":"48702.96","Total Profit":"16961.58"},{"Region":"Europe","Country":"Kosovo","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"3/31/2010","Order ID":"263457572","Ship Date":"3/31/2010","Units Sold":"1805","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"789146.00","Total Cost":"475310.65","Total Profit":"313835.35"},{"Region":"Europe","Country":"Macedonia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"10/8/2013","Order ID":"196873986","Ship Date":"11/15/2013","Units Sold":"8242","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3603402.40","Total Cost":"2170365.86","Total Profit":"1433036.54"},{"Region":"Europe","Country":"Albania","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"12/11/2011","Order ID":"478296077","Ship Date":"1/8/2012","Units Sold":"7293","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"596056.89","Total Cost":"413294.31","Total Profit":"182762.58"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/16/2016","Order ID":"837460172","Ship Date":"12/26/2016","Units Sold":"1930","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"157738.90","Total Cost":"109373.10","Total Profit":"48365.80"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"4/3/2015","Order ID":"174415099","Ship Date":"5/5/2015","Units Sold":"2159","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"176455.07","Total Cost":"122350.53","Total Profit":"54104.54"},{"Region":"Europe","Country":"Malta","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"7/12/2017","Order ID":"609522187","Ship Date":"8/8/2017","Units Sold":"15","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"6328.35","Total Cost":"5470.35","Total Profit":"858.00"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"4/19/2016","Order ID":"733455264","Ship Date":"5/23/2016","Units Sold":"4566","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1926349.74","Total Cost":"1665174.54","Total Profit":"261175.20"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"10/18/2012","Order ID":"557200658","Ship Date":"11/12/2012","Units Sold":"6912","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2916103.68","Total Cost":"2520737.28","Total Profit":"395366.40"},{"Region":"Europe","Country":"Andorra","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"2/6/2013","Order ID":"162057197","Ship Date":"2/20/2013","Units Sold":"5181","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3373919.01","Total Cost":"2719817.76","Total Profit":"654101.25"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/16/2016","Order ID":"149636209","Ship Date":"11/9/2016","Units Sold":"9534","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"452388.30","Total Cost":"303085.86","Total Profit":"149302.44"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/22/2013","Order ID":"291861522","Ship Date":"3/12/2013","Units Sold":"7165","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1829081.20","Total Cost":"1142244.30","Total Profit":"686836.90"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/24/2015","Order ID":"880969464","Ship Date":"4/16/2015","Units Sold":"7296","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1500787.20","Total Cost":"854434.56","Total Profit":"646352.64"},{"Region":"Europe","Country":"Portugal","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"8/29/2010","Order ID":"479508864","Ship Date":"9/1/2010","Units Sold":"6184","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"943554.72","Total Cost":"602568.96","Total Profit":"340985.76"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"11/7/2010","Order ID":"870341050","Ship Date":"12/14/2010","Units Sold":"2112","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"230799.36","Total Cost":"75694.08","Total Profit":"155105.28"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"11/30/2016","Order ID":"306639850","Ship Date":"1/9/2017","Units Sold":"401","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"3741.33","Total Cost":"2774.92","Total Profit":"966.41"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"11/19/2015","Order ID":"261891591","Ship Date":"12/30/2015","Units Sold":"8396","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"686205.08","Total Cost":"475801.32","Total Profit":"210403.76"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"10/14/2014","Order ID":"479895102","Ship Date":"10/22/2014","Units Sold":"480","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"209856.00","Total Cost":"126398.40","Total Profit":"83457.60"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"2/21/2014","Order ID":"324761712","Ship Date":"3/16/2014","Units Sold":"3062","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"781667.36","Total Cost":"488144.04","Total Profit":"293523.32"},{"Region":"Asia","Country":"China","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/2/2011","Order ID":"130915248","Ship Date":"10/6/2011","Units Sold":"9586","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6242499.06","Total Cost":"5032266.56","Total Profit":"1210232.50"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/21/2014","Order ID":"753092038","Ship Date":"2/25/2014","Units Sold":"5524","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"51538.92","Total Cost":"38226.08","Total Profit":"13312.84"},{"Region":"Europe","Country":"Estonia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"3/13/2017","Order ID":"416340911","Ship Date":"4/18/2017","Units Sold":"3382","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1426831.98","Total Cost":"1233381.58","Total Profit":"193450.40"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"10/22/2010","Order ID":"566023194","Ship Date":"12/2/2010","Units Sold":"7696","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1583067.20","Total Cost":"901278.56","Total Profit":"681788.64"},{"Region":"Asia","Country":"South Korea","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/4/2012","Order ID":"917812716","Ship Date":"2/26/2012","Units Sold":"33","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"3606.24","Total Cost":"1182.72","Total Profit":"2423.52"},{"Region":"North America","Country":"Canada","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"8/11/2016","Order ID":"807695806","Ship Date":"8/26/2016","Units Sold":"3993","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"37254.69","Total Cost":"27631.56","Total Profit":"9623.13"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/8/2017","Order ID":"541971290","Ship Date":"4/22/2017","Units Sold":"203","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"88751.60","Total Cost":"53455.99","Total Profit":"35295.61"},{"Region":"Europe","Country":"Croatia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/14/2015","Order ID":"947250497","Ship Date":"6/1/2015","Units Sold":"1327","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"272963.90","Total Cost":"155404.97","Total Profit":"117558.93"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/25/2017","Order ID":"220457255","Ship Date":"5/14/2017","Units Sold":"7056","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"576686.88","Total Cost":"399863.52","Total Profit":"176823.36"},{"Region":"Europe","Country":"Lithuania","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"4/6/2015","Order ID":"678827893","Ship Date":"5/15/2015","Units Sold":"9114","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1390614.12","Total Cost":"888068.16","Total Profit":"502545.96"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"1/14/2014","Order ID":"209911239","Ship Date":"2/26/2014","Units Sold":"6255","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4073318.55","Total Cost":"3283624.80","Total Profit":"789693.75"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/20/2011","Order ID":"821568620","Ship Date":"9/21/2011","Units Sold":"9267","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1427674.02","Total Cost":"842648.31","Total Profit":"585025.71"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"4/22/2011","Order ID":"991973865","Ship Date":"6/6/2011","Units Sold":"5965","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"283039.25","Total Cost":"189627.35","Total Profit":"93411.90"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"11/14/2016","Order ID":"619613301","Ship Date":"11/26/2016","Units Sold":"6200","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"57846.00","Total Cost":"42904.00","Total Profit":"14942.00"},{"Region":"Asia","Country":"Indonesia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/15/2014","Order ID":"573285758","Ship Date":"9/21/2014","Units Sold":"6850","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1055311.00","Total Cost":"622870.50","Total Profit":"432440.50"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"7/17/2014","Order ID":"442102563","Ship Date":"7/27/2014","Units Sold":"6828","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"323988.60","Total Cost":"217062.12","Total Profit":"106926.48"},{"Region":"Asia","Country":"Myanmar","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/29/2016","Order ID":"785487544","Ship Date":"5/13/2016","Units Sold":"2074","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"906752.80","Total Cost":"546146.42","Total Profit":"360606.38"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"2/27/2013","Order ID":"883177030","Ship Date":"4/14/2013","Units Sold":"564","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"376904.28","Total Cost":"283432.56","Total Profit":"93471.72"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/26/2010","Order ID":"985219848","Ship Date":"9/30/2010","Units Sold":"7302","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3192434.40","Total Cost":"1922835.66","Total Profit":"1269598.74"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"6/23/2015","Order ID":"961977326","Ship Date":"7/25/2015","Units Sold":"9323","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"86983.59","Total Cost":"64515.16","Total Profit":"22468.43"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"6/9/2016","Order ID":"754123294","Ship Date":"6/27/2016","Units Sold":"696","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"293635.44","Total Cost":"253824.24","Total Profit":"39811.20"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/27/2010","Order ID":"822644078","Ship Date":"2/10/2011","Units Sold":"7519","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1158377.14","Total Cost":"683702.67","Total Profit":"474674.47"},{"Region":"Europe","Country":"Serbia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"7/24/2016","Order ID":"798838508","Ship Date":"9/9/2016","Units Sold":"2921","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1277061.20","Total Cost":"769186.93","Total Profit":"507874.27"},{"Region":"Europe","Country":"Netherlands","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/22/2013","Order ID":"834317910","Ship Date":"11/14/2013","Units Sold":"2065","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"318133.90","Total Cost":"187770.45","Total Profit":"130363.45"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"12/7/2010","Order ID":"251006114","Ship Date":"12/20/2010","Units Sold":"7142","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1469109.40","Total Cost":"836399.62","Total Profit":"632709.78"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/21/2017","Order ID":"691139447","Ship Date":"4/8/2017","Units Sold":"2376","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1547274.96","Total Cost":"1247304.96","Total Profit":"299970.00"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"7/1/2016","Order ID":"267266738","Ship Date":"7/28/2016","Units Sold":"9022","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"737368.06","Total Cost":"511276.74","Total Profit":"226091.32"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/26/2016","Order ID":"312249314","Ship Date":"7/8/2016","Units Sold":"366","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"154411.74","Total Cost":"133476.54","Total Profit":"20935.20"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/30/2014","Order ID":"429261004","Ship Date":"4/6/2014","Units Sold":"6725","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2940170.00","Total Cost":"1770894.25","Total Profit":"1169275.75"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"12/30/2015","Order ID":"741788136","Ship Date":"1/23/2016","Units Sold":"449","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"4189.17","Total Cost":"3107.08","Total Profit":"1082.09"},{"Region":"Europe","Country":"Norway","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"4/30/2017","Order ID":"543629539","Ship Date":"6/5/2017","Units Sold":"916","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"612135.32","Total Cost":"460326.64","Total Profit":"151808.68"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/21/2014","Order ID":"548896539","Ship Date":"2/8/2015","Units Sold":"9538","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2434860.64","Total Cost":"1520547.96","Total Profit":"914312.68"},{"Region":"Europe","Country":"Romania","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/8/2010","Order ID":"642012965","Ship Date":"7/15/2010","Units Sold":"4758","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"225767.10","Total Cost":"151256.82","Total Profit":"74510.28"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/9/2014","Order ID":"327715146","Ship Date":"3/28/2014","Units Sold":"7049","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"334475.05","Total Cost":"224087.71","Total Profit":"110387.34"},{"Region":"Europe","Country":"Albania","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/5/2010","Order ID":"981051909","Ship Date":"11/4/2010","Units Sold":"3916","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1652121.24","Total Cost":"1428126.04","Total Profit":"223995.20"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/21/2016","Order ID":"897384583","Ship Date":"7/9/2016","Units Sold":"4895","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"232267.75","Total Cost":"155612.05","Total Profit":"76655.70"},{"Region":"Europe","Country":"Austria","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/9/2014","Order ID":"242386996","Ship Date":"4/1/2014","Units Sold":"6553","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4379173.31","Total Cost":"3293144.62","Total Profit":"1086028.69"},{"Region":"Europe","Country":"Romania","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/27/2011","Order ID":"602045476","Ship Date":"2/9/2011","Units Sold":"7490","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5005342.30","Total Cost":"3764024.60","Total Profit":"1241317.70"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"3/28/2011","Order ID":"932658851","Ship Date":"4/15/2011","Units Sold":"3335","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2171785.35","Total Cost":"1750741.60","Total Profit":"421043.75"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"5/11/2012","Order ID":"710838449","Ship Date":"5/11/2012","Units Sold":"1748","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1168135.96","Total Cost":"878439.92","Total Profit":"289696.04"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"12/20/2016","Order ID":"383508098","Ship Date":"12/30/2016","Units Sold":"7423","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3131689.47","Total Cost":"2707093.87","Total Profit":"424595.60"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"7/11/2013","Order ID":"917904126","Ship Date":"7/23/2013","Units Sold":"7084","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1080876.72","Total Cost":"690264.96","Total Profit":"390611.76"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"6/22/2010","Order ID":"651575362","Ship Date":"6/29/2010","Units Sold":"4484","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"366477.32","Total Cost":"254108.28","Total Profit":"112369.04"},{"Region":"North America","Country":"Canada","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/29/2017","Order ID":"242383134","Ship Date":"5/10/2017","Units Sold":"5410","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"50475.30","Total Cost":"37437.20","Total Profit":"13038.10"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"8/2/2010","Order ID":"418501269","Ship Date":"8/30/2010","Units Sold":"2680","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"292870.40","Total Cost":"96051.20","Total Profit":"196819.20"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"4/4/2013","Order ID":"628416097","Ship Date":"4/28/2013","Units Sold":"1143","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"482220.27","Total Cost":"416840.67","Total Profit":"65379.60"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"5/1/2015","Order ID":"390926444","Ship Date":"5/6/2015","Units Sold":"2677","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1170384.40","Total Cost":"704934.41","Total Profit":"465449.99"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/7/2015","Order ID":"645143640","Ship Date":"7/17/2015","Units Sold":"1194","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"245605.80","Total Cost":"139829.34","Total Profit":"105776.46"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"1/15/2017","Order ID":"600491511","Ship Date":"2/18/2017","Units Sold":"7637","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"624172.01","Total Cost":"432788.79","Total Profit":"191383.22"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"2/18/2017","Order ID":"886706387","Ship Date":"2/26/2017","Units Sold":"4980","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1271294.40","Total Cost":"793911.60","Total Profit":"477382.80"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"7/12/2017","Order ID":"403837096","Ship Date":"8/1/2017","Units Sold":"3226","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1361017.14","Total Cost":"1176489.94","Total Profit":"184527.20"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"7/16/2013","Order ID":"372244966","Ship Date":"8/28/2013","Units Sold":"4412","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"41163.96","Total Cost":"30531.04","Total Profit":"10632.92"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"11/28/2012","Order ID":"282603824","Ship Date":"1/2/2013","Units Sold":"7606","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"70963.98","Total Cost":"52633.52","Total Profit":"18330.46"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"11/13/2016","Order ID":"145899999","Ship Date":"12/3/2016","Units Sold":"3907","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2544277.47","Total Cost":"2051018.72","Total Profit":"493258.75"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"5/9/2016","Order ID":"943432319","Ship Date":"5/19/2016","Units Sold":"1443","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"157691.04","Total Cost":"51717.12","Total Profit":"105973.92"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/9/2010","Order ID":"576812112","Ship Date":"1/7/2011","Units Sold":"377","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"96240.56","Total Cost":"60101.34","Total Profit":"36139.22"},{"Region":"Europe","Country":"Switzerland","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"8/16/2012","Order ID":"617963206","Ship Date":"9/26/2012","Units Sold":"7900","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"374855.00","Total Cost":"251141.00","Total Profit":"123714.00"},{"Region":"Europe","Country":"Slovenia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/3/2011","Order ID":"459121930","Ship Date":"10/23/2011","Units Sold":"3237","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"665850.90","Total Cost":"379085.07","Total Profit":"286765.83"},{"Region":"Europe","Country":"Poland","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"2/6/2011","Order ID":"462837111","Ship Date":"3/11/2011","Units Sold":"2641","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1154645.20","Total Cost":"695454.53","Total Profit":"459190.67"},{"Region":"Asia","Country":"Indonesia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"6/30/2014","Order ID":"611970078","Ship Date":"7/6/2014","Units Sold":"4400","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"359612.00","Total Cost":"249348.00","Total Profit":"110264.00"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"6/24/2015","Order ID":"959694659","Ship Date":"7/1/2015","Units Sold":"3831","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"584533.98","Total Cost":"373292.64","Total Profit":"211241.34"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"3/24/2016","Order ID":"279497182","Ship Date":"4/7/2016","Units Sold":"8282","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3620890.40","Total Cost":"2180899.06","Total Profit":"1439991.34"},{"Region":"Europe","Country":"Slovenia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/15/2016","Order ID":"115176475","Ship Date":"4/30/2016","Units Sold":"2133","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"101210.85","Total Cost":"67808.07","Total Profit":"33402.78"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/3/2015","Order ID":"730843865","Ship Date":"1/4/2016","Units Sold":"1796","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"16756.68","Total Cost":"12428.32","Total Profit":"4328.36"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"3/9/2013","Order ID":"660923182","Ship Date":"4/21/2013","Units Sold":"712","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"6642.96","Total Cost":"4927.04","Total Profit":"1715.92"},{"Region":"Europe","Country":"Hungary","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/7/2014","Order ID":"760150754","Ship Date":"6/17/2014","Units Sold":"4355","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"206644.75","Total Cost":"138445.45","Total Profit":"68199.30"},{"Region":"Europe","Country":"Russia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/21/2015","Order ID":"153575408","Ship Date":"10/27/2015","Units Sold":"5231","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"48805.23","Total Cost":"36198.52","Total Profit":"12606.71"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"7/5/2014","Order ID":"286558473","Ship Date":"7/19/2014","Units Sold":"7875","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1619887.50","Total Cost":"922241.25","Total Profit":"697646.25"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"8/10/2012","Order ID":"874773776","Ship Date":"8/15/2012","Units Sold":"3855","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"593901.30","Total Cost":"350535.15","Total Profit":"243366.15"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"3/24/2013","Order ID":"354207646","Ship Date":"4/10/2013","Units Sold":"6769","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2855773.41","Total Cost":"2468586.61","Total Profit":"387186.80"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/7/2016","Order ID":"831158912","Ship Date":"10/30/2016","Units Sold":"7247","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4719318.87","Total Cost":"3804385.12","Total Profit":"914933.75"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/14/2017","Order ID":"432238900","Ship Date":"2/24/2017","Units Sold":"7951","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5177770.71","Total Cost":"4173956.96","Total Profit":"1003813.75"},{"Region":"Europe","Country":"Monaco","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"1/15/2013","Order ID":"954371440","Ship Date":"1/18/2013","Units Sold":"8572","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"79976.76","Total Cost":"59318.24","Total Profit":"20658.52"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"11/28/2011","Order ID":"214792859","Ship Date":"1/10/2012","Units Sold":"835","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"365062.00","Total Cost":"219880.55","Total Profit":"145181.45"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/24/2010","Order ID":"601051986","Ship Date":"10/27/2010","Units Sold":"3494","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1474083.66","Total Cost":"1274226.86","Total Profit":"199856.80"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"6/25/2015","Order ID":"521010148","Ship Date":"7/23/2015","Units Sold":"7336","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3094985.04","Total Cost":"2675365.84","Total Profit":"419619.20"},{"Region":"North America","Country":"Mexico","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/9/2013","Order ID":"252841174","Ship Date":"11/22/2013","Units Sold":"177","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"115264.17","Total Cost":"92917.92","Total Profit":"22346.25"},{"Region":"Europe","Country":"Slovenia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"5/2/2017","Order ID":"595031392","Ship Date":"6/15/2017","Units Sold":"1867","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"816252.40","Total Cost":"491637.11","Total Profit":"324615.29"},{"Region":"Asia","Country":"Taiwan","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/15/2012","Order ID":"616379630","Ship Date":"5/21/2012","Units Sold":"9285","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"440573.25","Total Cost":"295170.15","Total Profit":"145403.10"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/9/2016","Order ID":"805997216","Ship Date":"7/5/2016","Units Sold":"1342","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"873923.82","Total Cost":"704496.32","Total Profit":"169427.50"},{"Region":"Europe","Country":"Ukraine","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/2/2014","Order ID":"823307979","Ship Date":"3/9/2014","Units Sold":"3981","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"607420.98","Total Cost":"387908.64","Total Profit":"219512.34"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"8/26/2013","Order ID":"848048245","Ship Date":"9/23/2013","Units Sold":"5176","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"423034.48","Total Cost":"293323.92","Total Profit":"129710.56"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"2/28/2013","Order ID":"230266845","Ship Date":"4/7/2013","Units Sold":"9931","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6636589.37","Total Cost":"4990724.74","Total Profit":"1645864.63"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"9/22/2011","Order ID":"640325105","Ship Date":"10/3/2011","Units Sold":"5283","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2228844.87","Total Cost":"1926657.27","Total Profit":"302187.60"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"4/14/2013","Order ID":"218896853","Ship Date":"5/18/2013","Units Sold":"5298","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"808368.84","Total Cost":"516237.12","Total Profit":"292131.72"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"4/19/2015","Order ID":"326968419","Ship Date":"4/22/2015","Units Sold":"6076","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"927076.08","Total Cost":"592045.44","Total Profit":"335030.64"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"6/23/2012","Order ID":"595838630","Ship Date":"6/29/2012","Units Sold":"746","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"326151.20","Total Cost":"196444.18","Total Profit":"129707.02"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/7/2015","Order ID":"277118813","Ship Date":"11/19/2015","Units Sold":"4470","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1141101.60","Total Cost":"712607.40","Total Profit":"428494.20"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/25/2010","Order ID":"492732799","Ship Date":"10/14/2010","Units Sold":"9440","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"771531.20","Total Cost":"534964.80","Total Profit":"236566.40"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/25/2013","Order ID":"184916913","Ship Date":"1/23/2014","Units Sold":"9879","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"2032110.30","Total Cost":"1156929.69","Total Profit":"875180.61"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/6/2017","Order ID":"166219985","Ship Date":"3/26/2017","Units Sold":"7042","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"575542.66","Total Cost":"399070.14","Total Profit":"176472.52"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"9/15/2012","Order ID":"869503343","Ship Date":"10/12/2012","Units Sold":"4216","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1076260.48","Total Cost":"672114.72","Total Profit":"404145.76"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"1/16/2013","Order ID":"997940814","Ship Date":"2/24/2013","Units Sold":"1718","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"264675.08","Total Cost":"156217.74","Total Profit":"108457.34"},{"Region":"Europe","Country":"Russia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"7/30/2016","Order ID":"675018727","Ship Date":"8/10/2016","Units Sold":"1897","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1235345.37","Total Cost":"995849.12","Total Profit":"239496.25"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"5/30/2011","Order ID":"994535911","Ship Date":"7/6/2011","Units Sold":"4132","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1054816.96","Total Cost":"658723.44","Total Profit":"396093.52"},{"Region":"Europe","Country":"Estonia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"12/27/2016","Order ID":"870603692","Ship Date":"1/18/2017","Units Sold":"9834","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1074659.52","Total Cost":"352450.56","Total Profit":"722208.96"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/8/2012","Order ID":"187645900","Ship Date":"3/18/2012","Units Sold":"7446","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1147130.76","Total Cost":"677064.78","Total Profit":"470065.98"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/18/2014","Order ID":"250398862","Ship Date":"10/27/2014","Units Sold":"7442","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3253642.40","Total Cost":"1959701.86","Total Profit":"1293940.54"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/6/2017","Order ID":"633911406","Ship Date":"3/20/2017","Units Sold":"7327","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1117953.66","Total Cost":"713942.88","Total Profit":"404010.78"},{"Region":"Europe","Country":"Slovakia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/1/2012","Order ID":"533544862","Ship Date":"11/6/2012","Units Sold":"6636","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"542360.28","Total Cost":"376062.12","Total Profit":"166298.16"},{"Region":"North America","Country":"United States of America","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"12/9/2014","Order ID":"114973056","Ship Date":"12/30/2014","Units Sold":"1937","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"211675.36","Total Cost":"69422.08","Total Profit":"142253.28"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"7/2/2015","Order ID":"964182317","Ship Date":"7/31/2015","Units Sold":"1829","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"149484.17","Total Cost":"103649.43","Total Profit":"45834.74"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"1/21/2011","Order ID":"237471473","Ship Date":"1/31/2011","Units Sold":"1941","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"848605.20","Total Cost":"511123.53","Total Profit":"337481.67"},{"Region":"Europe","Country":"Romania","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"6/8/2014","Order ID":"111451852","Ship Date":"7/5/2014","Units Sold":"9935","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"811987.55","Total Cost":"563016.45","Total Profit":"248971.10"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"1/7/2013","Order ID":"133047282","Ship Date":"2/5/2013","Units Sold":"502","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"76595.16","Total Cost":"48914.88","Total Profit":"27680.28"},{"Region":"Asia","Country":"North Korea","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/30/2010","Order ID":"369494092","Ship Date":"6/29/2010","Units Sold":"368","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"40215.04","Total Cost":"13189.12","Total Profit":"27025.92"},{"Region":"Europe","Country":"Lithuania","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"1/21/2015","Order ID":"958341109","Ship Date":"2/23/2015","Units Sold":"3286","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"30658.38","Total Cost":"22739.12","Total Profit":"7919.26"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/1/2013","Order ID":"757449662","Ship Date":"10/3/2013","Units Sold":"5042","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1287121.76","Total Cost":"803795.64","Total Profit":"483326.12"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"4/16/2013","Order ID":"494993579","Ship Date":"5/28/2013","Units Sold":"8455","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"923962.40","Total Cost":"303027.20","Total Profit":"620935.20"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/16/2013","Order ID":"519459187","Ship Date":"1/4/2014","Units Sold":"8372","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2137204.16","Total Cost":"1334664.24","Total Profit":"802539.92"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/25/2013","Order ID":"349645316","Ship Date":"6/3/2013","Units Sold":"6674","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1028196.44","Total Cost":"606866.82","Total Profit":"421329.62"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"7/26/2017","Order ID":"924663293","Ship Date":"8/14/2017","Units Sold":"7271","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3178881.20","Total Cost":"1914672.43","Total Profit":"1264208.77"},{"Region":"Asia","Country":"Thailand","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"1/16/2015","Order ID":"553936946","Ship Date":"2/3/2015","Units Sold":"1107","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"168906.06","Total Cost":"107866.08","Total Profit":"61039.98"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/16/2010","Order ID":"767202603","Ship Date":"4/20/2010","Units Sold":"1154","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"94316.42","Total Cost":"65397.18","Total Profit":"28919.24"},{"Region":"Europe","Country":"Ukraine","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/13/2012","Order ID":"464509093","Ship Date":"10/20/2012","Units Sold":"7418","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4957226.86","Total Cost":"3727841.72","Total Profit":"1229385.14"},{"Region":"Europe","Country":"Lithuania","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"1/9/2010","Order ID":"866217744","Ship Date":"2/15/2010","Units Sold":"1935","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"845982.00","Total Cost":"509543.55","Total Profit":"336438.45"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"7/26/2017","Order ID":"563002383","Ship Date":"8/10/2017","Units Sold":"3771","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1648681.20","Total Cost":"993017.43","Total Profit":"655663.77"},{"Region":"Europe","Country":"Vatican City","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/3/2013","Order ID":"465849339","Ship Date":"12/17/2013","Units Sold":"4027","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"329126.71","Total Cost":"228210.09","Total Profit":"100916.62"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"7/4/2012","Order ID":"656057441","Ship Date":"8/8/2012","Units Sold":"831","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"128023.86","Total Cost":"75562.83","Total Profit":"52461.03"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/18/2013","Order ID":"835238015","Ship Date":"3/3/2013","Units Sold":"4344","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"40529.52","Total Cost":"30060.48","Total Profit":"10469.04"},{"Region":"Asia","Country":"Philippines","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/30/2012","Order ID":"775314891","Ship Date":"9/9/2012","Units Sold":"1760","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"449292.80","Total Cost":"280579.20","Total Profit":"168713.60"},{"Region":"Asia","Country":"Taiwan","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/1/2016","Order ID":"768524396","Ship Date":"6/15/2016","Units Sold":"2302","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"354646.12","Total Cost":"209320.86","Total Profit":"145325.26"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/6/2012","Order ID":"277415359","Ship Date":"2/15/2012","Units Sold":"2224","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"243038.72","Total Cost":"79708.16","Total Profit":"163330.56"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"1/14/2011","Order ID":"184849107","Ship Date":"1/18/2011","Units Sold":"9813","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6557733.51","Total Cost":"4931425.02","Total Profit":"1626308.49"},{"Region":"Europe","Country":"Italy","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/7/2014","Order ID":"543999469","Ship Date":"7/9/2014","Units Sold":"387","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"258620.49","Total Cost":"194482.98","Total Profit":"64137.51"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/17/2017","Order ID":"128352773","Ship Date":"2/2/2017","Units Sold":"1293","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"61352.85","Total Cost":"41104.47","Total Profit":"20248.38"},{"Region":"Europe","Country":"Hungary","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/9/2010","Order ID":"481707847","Ship Date":"7/20/2010","Units Sold":"6911","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"327926.95","Total Cost":"219700.69","Total Profit":"108226.26"},{"Region":"Europe","Country":"Kosovo","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/8/2010","Order ID":"968176019","Ship Date":"8/27/2010","Units Sold":"3654","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"298641.42","Total Cost":"207072.18","Total Profit":"91569.24"},{"Region":"Europe","Country":"Lithuania","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"2/3/2015","Order ID":"122181117","Ship Date":"2/12/2015","Units Sold":"4963","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"46304.79","Total Cost":"34343.96","Total Profit":"11960.83"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"4/12/2015","Order ID":"598459470","Ship Date":"4/26/2015","Units Sold":"6311","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"689666.08","Total Cost":"226186.24","Total Profit":"463479.84"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/19/2014","Order ID":"622059905","Ship Date":"11/23/2014","Units Sold":"204","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"89188.80","Total Cost":"53719.32","Total Profit":"35469.48"},{"Region":"Europe","Country":"Ukraine","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"2/11/2011","Order ID":"738343751","Ship Date":"2/26/2011","Units Sold":"1178","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"181482.68","Total Cost":"107115.54","Total Profit":"74367.14"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"8/6/2013","Order ID":"662984836","Ship Date":"8/23/2013","Units Sold":"801","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"204479.28","Total Cost":"127695.42","Total Profit":"76783.86"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/27/2010","Order ID":"631969487","Ship Date":"6/14/2010","Units Sold":"2670","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"126691.50","Total Cost":"84879.30","Total Profit":"41812.20"},{"Region":"Sub-Saharan Africa","Country":"Mali","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/28/2016","Order ID":"951596534","Ship Date":"11/27/2016","Units Sold":"7416","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"810420.48","Total Cost":"265789.44","Total Profit":"544631.04"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"11/12/2011","Order ID":"648477303","Ship Date":"11/12/2011","Units Sold":"7700","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1965656.00","Total Cost":"1227534.00","Total Profit":"738122.00"},{"Region":"Europe","Country":"Austria","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/25/2016","Order ID":"619535624","Ship Date":"12/31/2016","Units Sold":"3214","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1405160.80","Total Cost":"846342.62","Total Profit":"558818.18"},{"Region":"Asia","Country":"Thailand","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/8/2016","Order ID":"482007825","Ship Date":"9/1/2016","Units Sold":"5682","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3797110.14","Total Cost":"2855432.28","Total Profit":"941677.86"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/19/2015","Order ID":"823442733","Ship Date":"10/2/2015","Units Sold":"3858","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"588653.64","Total Cost":"375923.52","Total Profit":"212730.12"},{"Region":"Europe","Country":"Kosovo","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"2/21/2012","Order ID":"951701676","Ship Date":"3/25/2012","Units Sold":"8530","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1301507.40","Total Cost":"831163.20","Total Profit":"470344.20"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/17/2016","Order ID":"244958484","Ship Date":"10/9/2016","Units Sold":"7514","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1918173.92","Total Cost":"1197881.88","Total Profit":"720292.04"},{"Region":"Asia","Country":"Malaysia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"9/12/2010","Order ID":"401699483","Ship Date":"9/13/2010","Units Sold":"658","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"6139.14","Total Cost":"4553.36","Total Profit":"1585.78"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/5/2010","Order ID":"490723502","Ship Date":"8/8/2010","Units Sold":"4844","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3237099.88","Total Cost":"2434303.76","Total Profit":"802796.12"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"3/29/2011","Order ID":"101141870","Ship Date":"4/18/2011","Units Sold":"8982","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3926930.40","Total Cost":"2365230.06","Total Profit":"1561700.34"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"4/29/2012","Order ID":"692378413","Ship Date":"6/1/2012","Units Sold":"9013","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6023117.51","Total Cost":"4529393.02","Total Profit":"1493724.49"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/14/2014","Order ID":"644169461","Ship Date":"9/21/2014","Units Sold":"2913","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"318332.64","Total Cost":"104401.92","Total Profit":"213930.72"},{"Region":"Europe","Country":"Ireland","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"2/24/2016","Order ID":"206563842","Ship Date":"3/13/2016","Units Sold":"5686","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3702780.06","Total Cost":"2984922.56","Total Profit":"717857.50"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/7/2016","Order ID":"149922883","Ship Date":"1/27/2016","Units Sold":"4368","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"898497.60","Total Cost":"511536.48","Total Profit":"386961.12"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/10/2010","Order ID":"414920413","Ship Date":"9/7/2010","Units Sold":"3026","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"466185.56","Total Cost":"275154.18","Total Profit":"191031.38"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/3/2012","Order ID":"562542760","Ship Date":"8/13/2012","Units Sold":"7758","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"634061.34","Total Cost":"439645.86","Total Profit":"194415.48"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/9/2016","Order ID":"224088752","Ship Date":"7/24/2016","Units Sold":"1696","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"261285.76","Total Cost":"154217.28","Total Profit":"107068.48"},{"Region":"Europe","Country":"Iceland","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"8/15/2010","Order ID":"451169717","Ship Date":"9/24/2010","Units Sold":"10000","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1525800.00","Total Cost":"974400.00","Total Profit":"551400.00"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/3/2010","Order ID":"565709483","Ship Date":"11/17/2010","Units Sold":"4862","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"749039.72","Total Cost":"442101.66","Total Profit":"306938.06"},{"Region":"Asia","Country":"Maldives","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"3/23/2011","Order ID":"409944379","Ship Date":"4/10/2011","Units Sold":"506","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"77205.48","Total Cost":"49304.64","Total Profit":"27900.84"},{"Region":"Europe","Country":"Norway","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"10/4/2010","Order ID":"796423232","Ship Date":"11/15/2010","Units Sold":"8188","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5471794.76","Total Cost":"4114797.52","Total Profit":"1356997.24"},{"Region":"Asia","Country":"Japan","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"1/22/2017","Order ID":"358007371","Ship Date":"3/2/2017","Units Sold":"1192","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"796577.84","Total Cost":"599027.68","Total Profit":"197550.16"},{"Region":"Europe","Country":"Greece","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/25/2012","Order ID":"497870624","Ship Date":"6/13/2012","Units Sold":"9836","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1074878.08","Total Cost":"352522.24","Total Profit":"722355.84"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"1/22/2010","Order ID":"439499318","Ship Date":"2/18/2010","Units Sold":"6470","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"987192.60","Total Cost":"630436.80","Total Profit":"356755.80"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"7/15/2013","Order ID":"376692283","Ship Date":"8/1/2013","Units Sold":"472","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"38576.56","Total Cost":"26748.24","Total Profit":"11828.32"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"11/27/2011","Order ID":"123560845","Ship Date":"12/20/2011","Units Sold":"3255","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"355706.40","Total Cost":"116659.20","Total Profit":"239047.20"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/30/2014","Order ID":"464528834","Ship Date":"6/10/2014","Units Sold":"3260","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"154687.00","Total Cost":"103635.40","Total Profit":"51051.60"},{"Region":"Europe","Country":"Andorra","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"11/18/2015","Order ID":"904332578","Ship Date":"12/15/2015","Units Sold":"961","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"642207.47","Total Cost":"482940.94","Total Profit":"159266.53"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/30/2016","Order ID":"118020904","Ship Date":"7/27/2016","Units Sold":"3863","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"595133.78","Total Cost":"351262.59","Total Profit":"243871.19"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"3/1/2017","Order ID":"900955140","Ship Date":"3/2/2017","Units Sold":"1502","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"231398.12","Total Cost":"136576.86","Total Profit":"94821.26"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"2/29/2016","Order ID":"718809115","Ship Date":"4/16/2016","Units Sold":"446","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"91742.20","Total Cost":"52231.06","Total Profit":"39511.14"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/29/2012","Order ID":"257569158","Ship Date":"11/21/2012","Units Sold":"9292","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"759435.16","Total Cost":"526577.64","Total Profit":"232857.52"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"5/8/2011","Order ID":"273534095","Ship Date":"6/8/2011","Units Sold":"3672","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1605398.40","Total Cost":"966947.76","Total Profit":"638450.64"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"12/25/2016","Order ID":"243315255","Ship Date":"1/25/2017","Units Sold":"1246","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"832664.42","Total Cost":"626164.84","Total Profit":"206499.58"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/10/2017","Order ID":"613836467","Ship Date":"3/7/2017","Units Sold":"6706","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1033126.36","Total Cost":"609776.58","Total Profit":"423349.78"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"5/5/2015","Order ID":"552334058","Ship Date":"5/31/2015","Units Sold":"6777","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1034034.66","Total Cost":"660350.88","Total Profit":"373683.78"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"7/15/2012","Order ID":"196356856","Ship Date":"8/20/2012","Units Sold":"5212","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2278686.40","Total Cost":"1372475.96","Total Profit":"906210.44"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/26/2010","Order ID":"203766191","Ship Date":"9/16/2010","Units Sold":"7799","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1990928.72","Total Cost":"1243316.58","Total Profit":"747612.14"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"6/20/2016","Order ID":"402735888","Ship Date":"7/24/2016","Units Sold":"7354","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1877329.12","Total Cost":"1172374.68","Total Profit":"704954.44"},{"Region":"Asia","Country":"Bhutan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/17/2015","Order ID":"241752278","Ship Date":"3/31/2015","Units Sold":"8726","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5831324.02","Total Cost":"4385164.04","Total Profit":"1446159.98"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/11/2011","Order ID":"139614188","Ship Date":"10/11/2011","Units Sold":"3796","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"414826.88","Total Cost":"136048.64","Total Profit":"278778.24"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/8/2012","Order ID":"135432946","Ship Date":"9/5/2012","Units Sold":"6473","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4215282.33","Total Cost":"3398066.08","Total Profit":"817216.25"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"7/8/2013","Order ID":"338632380","Ship Date":"8/8/2013","Units Sold":"7701","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"71850.33","Total Cost":"53290.92","Total Profit":"18559.41"},{"Region":"Europe","Country":"Kosovo","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"6/29/2011","Order ID":"478948819","Ship Date":"7/28/2011","Units Sold":"454","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"69943.24","Total Cost":"41282.22","Total Profit":"28661.02"},{"Region":"Europe","Country":"Switzerland","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/4/2015","Order ID":"356431090","Ship Date":"1/5/2016","Units Sold":"4735","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1208750.80","Total Cost":"754853.70","Total Profit":"453897.10"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"7/22/2014","Order ID":"291440522","Ship Date":"7/31/2014","Units Sold":"2582","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"24090.06","Total Cost":"17867.44","Total Profit":"6222.62"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"2/15/2015","Order ID":"674650943","Ship Date":"3/10/2015","Units Sold":"3061","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"28559.13","Total Cost":"21182.12","Total Profit":"7377.01"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/16/2011","Order ID":"617048680","Ship Date":"6/1/2011","Units Sold":"7272","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"345056.40","Total Cost":"231176.88","Total Profit":"113879.52"},{"Region":"Europe","Country":"Switzerland","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/14/2016","Order ID":"199932563","Ship Date":"10/22/2016","Units Sold":"3343","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1461559.60","Total Cost":"880312.19","Total Profit":"581247.41"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/20/2015","Order ID":"924913918","Ship Date":"11/13/2015","Units Sold":"1437","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"960303.99","Total Cost":"722149.98","Total Profit":"238154.01"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/2/2013","Order ID":"763916575","Ship Date":"1/21/2013","Units Sold":"8745","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1347254.70","Total Cost":"795182.85","Total Profit":"552071.85"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/21/2013","Order ID":"909176862","Ship Date":"12/9/2013","Units Sold":"4492","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3001868.84","Total Cost":"2257409.68","Total Profit":"744459.16"},{"Region":"Central America and the Caribbean","Country":"Saint Lucia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"5/27/2013","Order ID":"823243606","Ship Date":"6/22/2013","Units Sold":"4932","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3211767.72","Total Cost":"2589102.72","Total Profit":"622665.00"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"8/18/2015","Order ID":"488978135","Ship Date":"9/17/2015","Units Sold":"8351","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"396254.95","Total Cost":"265478.29","Total Profit":"130776.66"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/9/2014","Order ID":"859554278","Ship Date":"2/5/2014","Units Sold":"67","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"44774.09","Total Cost":"33670.18","Total Profit":"11103.91"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/7/2010","Order ID":"708458364","Ship Date":"11/22/2010","Units Sold":"7428","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"352458.60","Total Cost":"236136.12","Total Profit":"116322.48"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"11/19/2012","Order ID":"679489219","Ship Date":"11/23/2012","Units Sold":"4814","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"990239.80","Total Cost":"563767.54","Total Profit":"426472.26"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/30/2013","Order ID":"136758172","Ship Date":"6/3/2013","Units Sold":"8637","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3776096.40","Total Cost":"2274381.21","Total Profit":"1501715.19"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/20/2017","Order ID":"314689052","Ship Date":"6/23/2017","Units Sold":"2338","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1522528.98","Total Cost":"1227356.48","Total Profit":"295172.50"},{"Region":"Europe","Country":"Netherlands","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/7/2016","Order ID":"268018186","Ship Date":"9/22/2016","Units Sold":"1392","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"212391.36","Total Cost":"135636.48","Total Profit":"76754.88"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/9/2014","Order ID":"921794402","Ship Date":"7/11/2014","Units Sold":"8303","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1279160.18","Total Cost":"754991.79","Total Profit":"524168.39"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"10/6/2015","Order ID":"121379029","Ship Date":"11/20/2015","Units Sold":"7607","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5083529.89","Total Cost":"3822821.78","Total Profit":"1260708.11"},{"Region":"Europe","Country":"Malta","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"1/22/2015","Order ID":"282445895","Ship Date":"1/29/2015","Units Sold":"872","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"41376.40","Total Cost":"27720.88","Total Profit":"13655.52"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/16/2015","Order ID":"740981328","Ship Date":"6/22/2015","Units Sold":"1696","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"715525.44","Total Cost":"618514.24","Total Profit":"97011.20"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"5/9/2017","Order ID":"903284156","Ship Date":"5/23/2017","Units Sold":"710","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"109382.60","Total Cost":"64560.30","Total Profit":"44822.30"},{"Region":"Europe","Country":"Switzerland","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/25/2014","Order ID":"695965707","Ship Date":"9/13/2014","Units Sold":"573","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"382918.71","Total Cost":"287955.42","Total Profit":"94963.29"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"8/28/2013","Order ID":"115949809","Ship Date":"10/14/2013","Units Sold":"980","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"150978.80","Total Cost":"89111.40","Total Profit":"61867.40"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/13/2014","Order ID":"580472791","Ship Date":"4/17/2014","Units Sold":"3653","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"562781.18","Total Cost":"332167.29","Total Profit":"230613.89"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"5/8/2013","Order ID":"877083480","Ship Date":"5/19/2013","Units Sold":"7347","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1131878.82","Total Cost":"668062.71","Total Profit":"463816.11"},{"Region":"Asia","Country":"Thailand","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"11/6/2016","Order ID":"313643205","Ship Date":"11/22/2016","Units Sold":"2849","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1855297.29","Total Cost":"1495611.04","Total Profit":"359686.25"},{"Region":"Europe","Country":"Norway","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"7/21/2012","Order ID":"968325793","Ship Date":"8/18/2012","Units Sold":"7975","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"871508.00","Total Cost":"285824.00","Total Profit":"585684.00"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"2/9/2012","Order ID":"939617574","Ship Date":"3/19/2012","Units Sold":"2575","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1086366.75","Total Cost":"939076.75","Total Profit":"147290.00"},{"Region":"Europe","Country":"Portugal","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/11/2016","Order ID":"196317374","Ship Date":"12/10/2016","Units Sold":"3528","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"288343.44","Total Cost":"199931.76","Total Profit":"88411.68"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/31/2014","Order ID":"127536523","Ship Date":"3/15/2014","Units Sold":"9746","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2487958.88","Total Cost":"1553707.32","Total Profit":"934251.56"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"1/14/2011","Order ID":"392698848","Ship Date":"1/23/2011","Units Sold":"7171","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"586085.83","Total Cost":"406380.57","Total Profit":"179705.26"},{"Region":"Europe","Country":"Montenegro","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/22/2016","Order ID":"271540677","Ship Date":"2/18/2016","Units Sold":"3775","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1650430.00","Total Cost":"994070.75","Total Profit":"656359.25"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"1/13/2012","Order ID":"914110839","Ship Date":"2/9/2012","Units Sold":"4566","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"703437.96","Total Cost":"415186.38","Total Profit":"288251.58"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/18/2013","Order ID":"390770661","Ship Date":"3/24/2013","Units Sold":"6577","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"718734.56","Total Cost":"235719.68","Total Profit":"483014.88"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"12/22/2015","Order ID":"442193973","Ship Date":"12/22/2015","Units Sold":"3878","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"989975.84","Total Cost":"618230.76","Total Profit":"371745.08"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"3/10/2010","Order ID":"629367101","Ship Date":"3/16/2010","Units Sold":"2566","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1082569.74","Total Cost":"935794.54","Total Profit":"146775.20"},{"Region":"Europe","Country":"Croatia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/20/2013","Order ID":"583588874","Ship Date":"5/1/2013","Units Sold":"5771","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"630654.88","Total Cost":"206832.64","Total Profit":"423822.24"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"7/11/2013","Order ID":"456470620","Ship Date":"7/27/2013","Units Sold":"8655","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1320579.90","Total Cost":"843343.20","Total Profit":"477236.70"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/3/2011","Order ID":"469936168","Ship Date":"7/9/2011","Units Sold":"3410","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1490852.00","Total Cost":"897955.30","Total Profit":"592896.70"},{"Region":"Europe","Country":"Belarus","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"7/4/2016","Order ID":"466221845","Ship Date":"8/8/2016","Units Sold":"4259","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"649838.22","Total Cost":"414996.96","Total Profit":"234841.26"},{"Region":"Asia","Country":"Singapore","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"5/19/2012","Order ID":"357876479","Ship Date":"6/30/2012","Units Sold":"2458","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"627478.24","Total Cost":"391854.36","Total Profit":"235623.88"},{"Region":"North America","Country":"Mexico","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/25/2014","Order ID":"577761399","Ship Date":"5/23/2014","Units Sold":"1292","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"545081.88","Total Cost":"471179.48","Total Profit":"73902.40"},{"Region":"Asia","Country":"Taiwan","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/23/2012","Order ID":"729050433","Ship Date":"2/29/2012","Units Sold":"1079","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"166230.74","Total Cost":"98113.47","Total Profit":"68117.27"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/3/2011","Order ID":"935229909","Ship Date":"8/24/2011","Units Sold":"4168","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"642122.08","Total Cost":"378996.24","Total Profit":"263125.84"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"2/20/2016","Order ID":"490098655","Ship Date":"3/15/2016","Units Sold":"9938","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1531048.28","Total Cost":"903662.34","Total Profit":"627385.94"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/13/2014","Order ID":"107767999","Ship Date":"11/15/2014","Units Sold":"9801","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"465057.45","Total Cost":"311573.79","Total Profit":"153483.66"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"12/10/2016","Order ID":"572661769","Ship Date":"1/28/2017","Units Sold":"2198","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"240197.44","Total Cost":"78776.32","Total Profit":"161421.12"},{"Region":"Europe","Country":"Ireland","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"6/9/2017","Order ID":"489516294","Ship Date":"7/1/2017","Units Sold":"7604","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"70945.32","Total Cost":"52619.68","Total Profit":"18325.64"},{"Region":"Europe","Country":"Norway","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/14/2016","Order ID":"333380401","Ship Date":"5/2/2016","Units Sold":"3524","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"724886.80","Total Cost":"412695.64","Total Profit":"312191.16"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"6/24/2014","Order ID":"199615418","Ship Date":"8/8/2014","Units Sold":"9493","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1462491.58","Total Cost":"863198.49","Total Profit":"599293.09"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/16/2010","Order ID":"253895175","Ship Date":"4/16/2010","Units Sold":"2079","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"169916.67","Total Cost":"117816.93","Total Profit":"52099.74"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"8/18/2010","Order ID":"282205998","Ship Date":"10/3/2010","Units Sold":"9881","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1507642.98","Total Cost":"962804.64","Total Profit":"544838.34"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/12/2012","Order ID":"140846717","Ship Date":"3/13/2012","Units Sold":"8528","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1313823.68","Total Cost":"775451.04","Total Profit":"538372.64"},{"Region":"Asia","Country":"North Korea","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"6/7/2012","Order ID":"206428658","Ship Date":"6/21/2012","Units Sold":"5682","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1450500.96","Total Cost":"905824.44","Total Profit":"544676.52"},{"Region":"Asia","Country":"Laos","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"2/9/2014","Order ID":"925875651","Ship Date":"3/31/2014","Units Sold":"6035","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1540614.80","Total Cost":"962099.70","Total Profit":"578515.10"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"3/3/2013","Order ID":"566424024","Ship Date":"3/3/2013","Units Sold":"6311","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2759169.20","Total Cost":"1661875.63","Total Profit":"1097293.57"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/30/2010","Order ID":"165622603","Ship Date":"7/18/2010","Units Sold":"264","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"40671.84","Total Cost":"24005.52","Total Profit":"16666.32"},{"Region":"Asia","Country":"Vietnam","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"8/6/2015","Order ID":"381332719","Ship Date":"8/24/2015","Units Sold":"3680","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"756976.00","Total Cost":"430964.80","Total Profit":"326011.20"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"7/18/2012","Order ID":"141728198","Ship Date":"7/21/2012","Units Sold":"9378","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6107047.38","Total Cost":"4923074.88","Total Profit":"1183972.50"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/11/2016","Order ID":"695295369","Ship Date":"11/23/2016","Units Sold":"2206","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"180296.38","Total Cost":"125014.02","Total Profit":"55282.36"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"9/16/2010","Order ID":"660833060","Ship Date":"10/26/2010","Units Sold":"4043","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"622864.58","Total Cost":"367629.99","Total Profit":"255234.59"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"9/7/2015","Order ID":"977452600","Ship Date":"9/21/2015","Units Sold":"8800","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"417560.00","Total Cost":"279752.00","Total Profit":"137808.00"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"6/18/2012","Order ID":"854577815","Ship Date":"7/9/2012","Units Sold":"7421","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1132296.18","Total Cost":"723102.24","Total Profit":"409193.94"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"3/3/2013","Order ID":"921945035","Ship Date":"4/4/2013","Units Sold":"2878","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"26851.74","Total Cost":"19915.76","Total Profit":"6935.98"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"1/18/2012","Order ID":"979603087","Ship Date":"1/22/2012","Units Sold":"5177","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2184124.53","Total Cost":"1888000.13","Total Profit":"296124.40"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"12/27/2011","Order ID":"447913300","Ship Date":"1/6/2012","Units Sold":"6354","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2680689.06","Total Cost":"2317240.26","Total Profit":"363448.80"},{"Region":"Europe","Country":"Italy","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"2/25/2013","Order ID":"617549502","Ship Date":"3/6/2013","Units Sold":"5476","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"447553.48","Total Cost":"310324.92","Total Profit":"137228.56"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"10/12/2016","Order ID":"599498021","Ship Date":"11/6/2016","Units Sold":"3641","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2371055.61","Total Cost":"1911379.36","Total Profit":"459676.25"},{"Region":"Europe","Country":"Ireland","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"10/20/2013","Order ID":"475057685","Ship Date":"11/7/2013","Units Sold":"8981","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1847391.70","Total Cost":"1051764.91","Total Profit":"795626.79"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/15/2011","Order ID":"845839822","Ship Date":"5/29/2011","Units Sold":"1655","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"15441.15","Total Cost":"11452.60","Total Profit":"3988.55"},{"Region":"Europe","Country":"Russia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"11/26/2013","Order ID":"583768260","Ship Date":"12/22/2013","Units Sold":"8856","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1351248.48","Total Cost":"862928.64","Total Profit":"488319.84"},{"Region":"North America","Country":"United States of America","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/3/2011","Order ID":"881079328","Ship Date":"11/1/2011","Units Sold":"9807","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"91499.31","Total Cost":"67864.44","Total Profit":"23634.87"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/7/2015","Order ID":"300321853","Ship Date":"5/17/2015","Units Sold":"765","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"117855.90","Total Cost":"69561.45","Total Profit":"48294.45"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"2/12/2013","Order ID":"624357163","Ship Date":"3/18/2013","Units Sold":"14","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"2156.84","Total Cost":"1273.02","Total Profit":"883.82"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/2/2014","Order ID":"106359088","Ship Date":"1/31/2014","Units Sold":"2873","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"438362.34","Total Cost":"279945.12","Total Profit":"158417.22"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"7/12/2012","Order ID":"219813954","Ship Date":"7/15/2012","Units Sold":"6689","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1375927.30","Total Cost":"783348.79","Total Profit":"592578.51"},{"Region":"Europe","Country":"Croatia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"9/21/2015","Order ID":"708520591","Ship Date":"10/17/2015","Units Sold":"5843","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3805020.03","Total Cost":"3067341.28","Total Profit":"737678.75"},{"Region":"Europe","Country":"Andorra","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"7/11/2016","Order ID":"936590325","Ship Date":"8/7/2016","Units Sold":"6745","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"320050.25","Total Cost":"214423.55","Total Profit":"105626.70"},{"Region":"Asia","Country":"Japan","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"9/30/2012","Order ID":"338446986","Ship Date":"10/26/2012","Units Sold":"2839","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"433174.62","Total Cost":"276632.16","Total Profit":"156542.46"},{"Region":"Asia","Country":"Maldives","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"10/28/2010","Order ID":"668826901","Ship Date":"11/2/2010","Units Sold":"9598","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2450177.44","Total Cost":"1530113.16","Total Profit":"920064.28"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/19/2014","Order ID":"152778899","Ship Date":"7/25/2014","Units Sold":"9526","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"778559.98","Total Cost":"539838.42","Total Profit":"238721.56"},{"Region":"Europe","Country":"Armenia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"4/24/2013","Order ID":"235664308","Ship Date":"4/26/2013","Units Sold":"7160","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1103069.60","Total Cost":"651058.80","Total Profit":"452010.80"},{"Region":"Europe","Country":"Finland","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"12/29/2016","Order ID":"633156955","Ship Date":"1/24/2017","Units Sold":"4068","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1038479.04","Total Cost":"648520.56","Total Profit":"389958.48"},{"Region":"Europe","Country":"Netherlands","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/29/2013","Order ID":"681243169","Ship Date":"8/11/2013","Units Sold":"3847","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"592668.82","Total Cost":"349807.71","Total Profit":"242861.11"},{"Region":"Asia","Country":"Cambodia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/14/2010","Order ID":"686221778","Ship Date":"11/10/2010","Units Sold":"7128","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1466229.60","Total Cost":"834760.08","Total Profit":"631469.52"},{"Region":"Europe","Country":"Greece","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"5/2/2010","Order ID":"574704110","Ship Date":"5/18/2010","Units Sold":"6572","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"537129.56","Total Cost":"372435.24","Total Profit":"164694.32"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"11/21/2010","Order ID":"343613994","Ship Date":"12/26/2010","Units Sold":"1871","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"152916.83","Total Cost":"106029.57","Total Profit":"46887.26"},{"Region":"Asia","Country":"Myanmar","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/6/2012","Order ID":"510187757","Ship Date":"4/29/2012","Units Sold":"4750","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"44317.50","Total Cost":"32870.00","Total Profit":"11447.50"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"7/18/2011","Order ID":"761974227","Ship Date":"7/24/2011","Units Sold":"3961","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"814777.70","Total Cost":"463872.71","Total Profit":"350904.99"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"6/17/2014","Order ID":"406834733","Ship Date":"7/14/2014","Units Sold":"293","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"128099.60","Total Cost":"77155.69","Total Profit":"50943.91"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"6/10/2016","Order ID":"622943103","Ship Date":"6/22/2016","Units Sold":"1562","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"170695.36","Total Cost":"55982.08","Total Profit":"114713.28"},{"Region":"Europe","Country":"Macedonia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/28/2013","Order ID":"408785665","Ship Date":"12/31/2013","Units Sold":"7617","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"361426.65","Total Cost":"242144.43","Total Profit":"119282.22"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"1/12/2016","Order ID":"633161246","Ship Date":"2/14/2016","Units Sold":"5338","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"583336.64","Total Cost":"191313.92","Total Profit":"392022.72"},{"Region":"Europe","Country":"Iceland","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/27/2017","Order ID":"885181176","Ship Date":"7/9/2017","Units Sold":"3636","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"747925.20","Total Cost":"425811.96","Total Profit":"322113.24"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/22/2010","Order ID":"824269282","Ship Date":"4/5/2010","Units Sold":"8453","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1289758.74","Total Cost":"823660.32","Total Profit":"466098.42"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"5/26/2010","Order ID":"630161893","Ship Date":"7/9/2010","Units Sold":"7763","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5187780.01","Total Cost":"3901218.02","Total Profit":"1286561.99"},{"Region":"Europe","Country":"Slovakia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/19/2015","Order ID":"552907836","Ship Date":"1/1/2016","Units Sold":"6570","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4278449.70","Total Cost":"3448987.20","Total Profit":"829462.50"},{"Region":"Asia","Country":"Taiwan","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/18/2010","Order ID":"462868440","Ship Date":"12/9/2010","Units Sold":"1912","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"156267.76","Total Cost":"108353.04","Total Profit":"47914.72"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/29/2014","Order ID":"300717532","Ship Date":"3/29/2014","Units Sold":"7855","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"372719.75","Total Cost":"249710.45","Total Profit":"123009.30"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/2/2015","Order ID":"527441442","Ship Date":"1/21/2016","Units Sold":"498","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"40701.54","Total Cost":"28221.66","Total Profit":"12479.88"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/21/2010","Order ID":"774338996","Ship Date":"8/27/2010","Units Sold":"2971","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"27719.43","Total Cost":"20559.32","Total Profit":"7160.11"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"11/25/2016","Order ID":"293021523","Ship Date":"12/14/2016","Units Sold":"435","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"111046.80","Total Cost":"69347.70","Total Profit":"41699.10"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/21/2012","Order ID":"205412852","Ship Date":"9/17/2012","Units Sold":"5083","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"47424.39","Total Cost":"35174.36","Total Profit":"12250.03"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/11/2014","Order ID":"353749310","Ship Date":"10/12/2014","Units Sold":"1137","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"290253.36","Total Cost":"181260.54","Total Profit":"108992.82"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/24/2014","Order ID":"650579726","Ship Date":"7/13/2014","Units Sold":"9853","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4156882.17","Total Cost":"3593290.57","Total Profit":"563591.60"},{"Region":"Asia","Country":"Singapore","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/16/2012","Order ID":"628765428","Ship Date":"3/3/2012","Units Sold":"4517","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1905677.13","Total Cost":"1647304.73","Total Profit":"258372.40"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/13/2012","Order ID":"791480243","Ship Date":"4/16/2012","Units Sold":"5447","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2381428.40","Total Cost":"1434358.51","Total Profit":"947069.89"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"8/4/2013","Order ID":"362210500","Ship Date":"9/17/2013","Units Sold":"4991","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1026648.70","Total Cost":"584496.01","Total Profit":"442152.69"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"8/21/2011","Order ID":"434755027","Ship Date":"8/31/2011","Units Sold":"2529","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"389617.74","Total Cost":"229961.97","Total Profit":"159655.77"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"9/25/2010","Order ID":"823225152","Ship Date":"10/4/2010","Units Sold":"9471","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"88364.43","Total Cost":"65539.32","Total Profit":"22825.11"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"6/16/2012","Order ID":"512044703","Ship Date":"7/22/2012","Units Sold":"4261","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"465642.08","Total Cost":"152714.24","Total Profit":"312927.84"},{"Region":"North America","Country":"Mexico","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/24/2011","Order ID":"805950009","Ship Date":"1/9/2012","Units Sold":"7373","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1516626.10","Total Cost":"863452.03","Total Profit":"653174.07"},{"Region":"Europe","Country":"Belgium","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"7/19/2016","Order ID":"379989898","Ship Date":"8/25/2016","Units Sold":"6310","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"299409.50","Total Cost":"200594.90","Total Profit":"98814.60"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/6/2012","Order ID":"229525697","Ship Date":"4/22/2012","Units Sold":"609","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"256931.01","Total Cost":"222096.21","Total Profit":"34834.80"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/17/2012","Order ID":"520231235","Ship Date":"7/20/2012","Units Sold":"6838","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"63798.54","Total Cost":"47318.96","Total Profit":"16479.58"},{"Region":"Europe","Country":"Sweden","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/23/2016","Order ID":"138092839","Ship Date":"8/9/2016","Units Sold":"3595","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1571734.00","Total Cost":"946671.35","Total Profit":"625062.65"},{"Region":"Europe","Country":"Serbia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/10/2013","Order ID":"739409339","Ship Date":"5/16/2013","Units Sold":"6510","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4350437.70","Total Cost":"3271535.40","Total Profit":"1078902.30"},{"Region":"Europe","Country":"Montenegro","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"12/5/2015","Order ID":"900792062","Ship Date":"12/30/2015","Units Sold":"3244","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1368611.16","Total Cost":"1183054.36","Total Profit":"185556.80"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/30/2011","Order ID":"169164836","Ship Date":"8/1/2011","Units Sold":"8489","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"402803.05","Total Cost":"269865.31","Total Profit":"132937.74"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/23/2011","Order ID":"411763989","Ship Date":"6/25/2011","Units Sold":"8970","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5994381.90","Total Cost":"4507783.80","Total Profit":"1486598.10"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"6/30/2016","Order ID":"866138350","Ship Date":"7/28/2016","Units Sold":"8440","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"689801.20","Total Cost":"478294.80","Total Profit":"211506.40"},{"Region":"Europe","Country":"Russia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"6/10/2013","Order ID":"390149247","Ship Date":"7/23/2013","Units Sold":"2687","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1749801.27","Total Cost":"1410567.52","Total Profit":"339233.75"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"9/1/2016","Order ID":"611970508","Ship Date":"9/3/2016","Units Sold":"4527","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1155652.56","Total Cost":"721694.34","Total Profit":"433958.22"},{"Region":"Europe","Country":"Macedonia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/29/2011","Order ID":"980088460","Ship Date":"5/21/2011","Units Sold":"8810","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"720041.30","Total Cost":"499262.70","Total Profit":"220778.60"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/11/2010","Order ID":"113301932","Ship Date":"2/19/2010","Units Sold":"7414","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1892645.92","Total Cost":"1181939.88","Total Profit":"710706.04"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"8/31/2011","Order ID":"750722253","Ship Date":"9/28/2011","Units Sold":"4252","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1793876.28","Total Cost":"1550661.88","Total Profit":"243214.40"},{"Region":"Europe","Country":"Iceland","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/20/2011","Order ID":"301773250","Ship Date":"12/30/2011","Units Sold":"265","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"21658.45","Total Cost":"15017.55","Total Profit":"6640.90"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"4/27/2015","Order ID":"296191251","Ship Date":"5/9/2015","Units Sold":"8428","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1298417.68","Total Cost":"766358.04","Total Profit":"532059.64"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"3/19/2016","Order ID":"534025084","Ship Date":"3/24/2016","Units Sold":"8745","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3823314.00","Total Cost":"2302820.85","Total Profit":"1520493.15"},{"Region":"Europe","Country":"Georgia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/18/2017","Order ID":"435636079","Ship Date":"7/27/2017","Units Sold":"3251","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"829915.28","Total Cost":"518274.42","Total Profit":"311640.86"},{"Region":"Asia","Country":"Philippines","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/29/2011","Order ID":"391698062","Ship Date":"9/21/2011","Units Sold":"1016","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"208991.20","Total Cost":"118983.76","Total Profit":"90007.44"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"3/5/2015","Order ID":"413197362","Ship Date":"4/6/2015","Units Sold":"3136","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"645075.20","Total Cost":"367256.96","Total Profit":"277818.24"},{"Region":"Europe","Country":"Croatia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/17/2011","Order ID":"581432807","Ship Date":"6/13/2011","Units Sold":"7743","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"72242.19","Total Cost":"53581.56","Total Profit":"18660.63"},{"Region":"Asia","Country":"Brunei","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"12/25/2014","Order ID":"598015725","Ship Date":"1/26/2015","Units Sold":"4997","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1027882.90","Total Cost":"585198.67","Total Profit":"442684.23"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"4/12/2015","Order ID":"234869945","Ship Date":"4/22/2015","Units Sold":"2091","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"882171.99","Total Cost":"762566.79","Total Profit":"119605.20"},{"Region":"Europe","Country":"Germany","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"3/6/2010","Order ID":"684231793","Ship Date":"4/14/2010","Units Sold":"8248","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1696613.60","Total Cost":"965923.28","Total Profit":"730690.32"},{"Region":"Asia","Country":"Maldives","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"1/9/2010","Order ID":"508650100","Ship Date":"2/9/2010","Units Sold":"9723","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6331714.83","Total Cost":"5104186.08","Total Profit":"1227528.75"},{"Region":"Asia","Country":"Indonesia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"1/31/2011","Order ID":"590986192","Ship Date":"2/16/2011","Units Sold":"4802","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1225854.56","Total Cost":"765534.84","Total Profit":"460319.72"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/18/2014","Order ID":"984413897","Ship Date":"6/27/2014","Units Sold":"8803","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"82131.99","Total Cost":"60916.76","Total Profit":"21215.23"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"10/8/2014","Order ID":"462419545","Ship Date":"11/17/2014","Units Sold":"9074","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5909079.54","Total Cost":"4763487.04","Total Profit":"1145592.50"},{"Region":"Europe","Country":"Ireland","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/17/2011","Order ID":"568801963","Ship Date":"7/13/2011","Units Sold":"9996","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2551778.88","Total Cost":"1593562.32","Total Profit":"958216.56"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/17/2012","Order ID":"667672479","Ship Date":"10/5/2012","Units Sold":"7978","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"378556.10","Total Cost":"253620.62","Total Profit":"124935.48"},{"Region":"Europe","Country":"Norway","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/28/2016","Order ID":"193454921","Ship Date":"2/24/2016","Units Sold":"6465","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4210072.65","Total Cost":"3393866.40","Total Profit":"816206.25"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/2/2013","Order ID":"900885617","Ship Date":"3/18/2013","Units Sold":"929","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"391935.81","Total Cost":"338797.01","Total Profit":"53138.80"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"12/19/2014","Order ID":"115013396","Ship Date":"1/7/2015","Units Sold":"3875","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"797087.50","Total Cost":"453801.25","Total Profit":"343286.25"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"5/3/2011","Order ID":"181199586","Ship Date":"6/10/2011","Units Sold":"9839","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"2023882.30","Total Cost":"1152245.29","Total Profit":"871637.01"},{"Region":"Europe","Country":"Cyprus","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"10/31/2011","Order ID":"815118014","Ship Date":"11/22/2011","Units Sold":"389","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"3629.37","Total Cost":"2691.88","Total Profit":"937.49"},{"Region":"Europe","Country":"Denmark","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"1/3/2012","Order ID":"452755010","Ship Date":"1/10/2012","Units Sold":"9123","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1405489.38","Total Cost":"829554.39","Total Profit":"575934.99"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/5/2012","Order ID":"300409400","Ship Date":"4/23/2012","Units Sold":"6672","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1703228.16","Total Cost":"1063650.24","Total Profit":"639577.92"},{"Region":"Europe","Country":"Armenia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/24/2014","Order ID":"284692513","Ship Date":"3/6/2014","Units Sold":"5696","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"622458.88","Total Cost":"204144.64","Total Profit":"418314.24"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/2/2016","Order ID":"402528178","Ship Date":"3/3/2016","Units Sold":"5888","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1211161.60","Total Cost":"689543.68","Total Profit":"521617.92"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/21/2010","Order ID":"271152722","Ship Date":"11/30/2010","Units Sold":"8971","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1382072.26","Total Cost":"815733.03","Total Profit":"566339.23"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"3/18/2010","Order ID":"478114974","Ship Date":"4/18/2010","Units Sold":"3700","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"175565.00","Total Cost":"117623.00","Total Profit":"57942.00"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"7/16/2012","Order ID":"331276261","Ship Date":"8/1/2012","Units Sold":"862","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"177313.40","Total Cost":"100948.82","Total Profit":"76364.58"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/25/2013","Order ID":"108810412","Ship Date":"4/18/2013","Units Sold":"8274","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"392601.30","Total Cost":"263030.46","Total Profit":"129570.84"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/7/2016","Order ID":"609203755","Ship Date":"6/24/2016","Units Sold":"5784","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"472726.32","Total Cost":"327779.28","Total Profit":"144947.04"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"9/4/2015","Order ID":"901255118","Ship Date":"9/19/2015","Units Sold":"272","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"55950.40","Total Cost":"31853.92","Total Profit":"24096.48"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/14/2013","Order ID":"574075829","Ship Date":"9/4/2013","Units Sold":"650","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"100139.00","Total Cost":"59104.50","Total Profit":"41034.50"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/14/2017","Order ID":"187089717","Ship Date":"8/1/2017","Units Sold":"2860","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1250392.00","Total Cost":"753123.80","Total Profit":"497268.20"},{"Region":"Europe","Country":"Belgium","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"10/13/2012","Order ID":"820033109","Ship Date":"11/21/2012","Units Sold":"4875","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3174648.75","Total Cost":"2559180.00","Total Profit":"615468.75"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"10/18/2012","Order ID":"922954833","Ship Date":"11/16/2012","Units Sold":"1700","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"185776.00","Total Cost":"60928.00","Total Profit":"124848.00"},{"Region":"Europe","Country":"Germany","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/5/2016","Order ID":"366216218","Ship Date":"8/18/2016","Units Sold":"372","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"248596.44","Total Cost":"186944.88","Total Profit":"61651.56"},{"Region":"Europe","Country":"Georgia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"12/24/2012","Order ID":"890491092","Ship Date":"1/22/2013","Units Sold":"4958","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1265678.24","Total Cost":"790404.36","Total Profit":"475273.88"},{"Region":"Europe","Country":"Lithuania","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/19/2014","Order ID":"256765782","Ship Date":"8/10/2014","Units Sold":"1556","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"73832.20","Total Cost":"49465.24","Total Profit":"24366.96"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/7/2016","Order ID":"796339118","Ship Date":"2/5/2016","Units Sold":"3296","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"841402.88","Total Cost":"525448.32","Total Profit":"315954.56"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"3/7/2013","Order ID":"860822427","Ship Date":"3/8/2013","Units Sold":"5340","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3477461.40","Total Cost":"2803286.40","Total Profit":"674175.00"},{"Region":"North America","Country":"Greenland","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/1/2014","Order ID":"672139537","Ship Date":"4/27/2014","Units Sold":"9880","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"807492.40","Total Cost":"559899.60","Total Profit":"247592.80"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"5/9/2013","Order ID":"972526776","Ship Date":"5/13/2013","Units Sold":"1140","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"742379.40","Total Cost":"598454.40","Total Profit":"143925.00"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/18/2017","Order ID":"774532973","Ship Date":"2/12/2017","Units Sold":"373","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"163075.60","Total Cost":"98222.09","Total Profit":"64853.51"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/30/2010","Order ID":"511019456","Ship Date":"5/12/2010","Units Sold":"868","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"94855.04","Total Cost":"31109.12","Total Profit":"63745.92"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/21/2012","Order ID":"685160052","Ship Date":"2/7/2013","Units Sold":"2940","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"604758.00","Total Cost":"344303.40","Total Profit":"260454.60"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"1/25/2016","Order ID":"520441091","Ship Date":"3/9/2016","Units Sold":"8939","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1838752.30","Total Cost":"1046846.29","Total Profit":"791906.01"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/9/2015","Order ID":"210661399","Ship Date":"4/2/2015","Units Sold":"8244","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5368575.24","Total Cost":"4327770.24","Total Profit":"1040805.00"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/23/2014","Order ID":"469932305","Ship Date":"10/7/2014","Units Sold":"2267","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"345898.86","Total Cost":"220896.48","Total Profit":"125002.38"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/8/2016","Order ID":"282677638","Ship Date":"1/8/2016","Units Sold":"9450","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"448402.50","Total Cost":"300415.50","Total Profit":"147987.00"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/27/2014","Order ID":"953633725","Ship Date":"7/14/2014","Units Sold":"266","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"54716.20","Total Cost":"31151.26","Total Profit":"23564.94"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/14/2017","Order ID":"257849395","Ship Date":"5/18/2017","Units Sold":"2221","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"566976.88","Total Cost":"354071.82","Total Profit":"212905.06"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/10/2010","Order ID":"990685975","Ship Date":"7/26/2010","Units Sold":"4850","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"230132.50","Total Cost":"154181.50","Total Profit":"75951.00"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"2/8/2015","Order ID":"617817294","Ship Date":"3/23/2015","Units Sold":"4721","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"971109.70","Total Cost":"552876.31","Total Profit":"418233.39"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"3/23/2015","Order ID":"725229680","Ship Date":"4/17/2015","Units Sold":"433","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"66067.14","Total Cost":"42191.52","Total Profit":"23875.62"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/26/2015","Order ID":"269221961","Ship Date":"2/6/2015","Units Sold":"7616","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3329715.20","Total Cost":"2005521.28","Total Profit":"1324193.92"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"4/28/2012","Order ID":"526405465","Ship Date":"5/12/2012","Units Sold":"3930","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"36666.90","Total Cost":"27195.60","Total Profit":"9471.30"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/2/2017","Order ID":"143704020","Ship Date":"3/7/2017","Units Sold":"4068","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1038479.04","Total Cost":"648520.56","Total Profit":"389958.48"},{"Region":"Asia","Country":"Singapore","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/2/2010","Order ID":"988353955","Ship Date":"5/5/2010","Units Sold":"4754","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"732401.24","Total Cost":"432281.22","Total Profit":"300120.02"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/27/2015","Order ID":"497904098","Ship Date":"6/11/2015","Units Sold":"9742","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"2003929.40","Total Cost":"1140885.62","Total Profit":"863043.78"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/5/2011","Order ID":"230215775","Ship Date":"11/21/2011","Units Sold":"4819","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1230194.32","Total Cost":"768244.98","Total Profit":"461949.34"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"9/11/2013","Order ID":"913462817","Ship Date":"10/9/2013","Units Sold":"2802","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"306202.56","Total Cost":"100423.68","Total Profit":"205778.88"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/1/2013","Order ID":"196131551","Ship Date":"12/30/2013","Units Sold":"8539","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1302880.62","Total Cost":"832040.16","Total Profit":"470840.46"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/26/2017","Order ID":"297020804","Ship Date":"7/29/2017","Units Sold":"3911","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"998400.08","Total Cost":"623491.62","Total Profit":"374908.46"},{"Region":"Europe","Country":"Russia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/11/2015","Order ID":"355241906","Ship Date":"10/2/2015","Units Sold":"2829","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1842273.09","Total Cost":"1485111.84","Total Profit":"357161.25"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/12/2011","Order ID":"480218684","Ship Date":"11/18/2011","Units Sold":"6235","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"509586.55","Total Cost":"353337.45","Total Profit":"156249.10"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"5/15/2010","Order ID":"401687467","Ship Date":"6/6/2010","Units Sold":"7103","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4746721.81","Total Cost":"3569541.62","Total Profit":"1177180.19"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/14/2013","Order ID":"819697082","Ship Date":"5/18/2013","Units Sold":"5437","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1118390.90","Total Cost":"636727.07","Total Profit":"481663.83"},{"Region":"Asia","Country":"Thailand","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/4/2015","Order ID":"254608857","Ship Date":"12/20/2015","Units Sold":"3274","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2187915.98","Total Cost":"1645315.96","Total Profit":"542600.02"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/20/2010","Order ID":"897096621","Ship Date":"9/4/2010","Units Sold":"9681","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1057939.68","Total Cost":"346967.04","Total Profit":"710972.64"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/14/2014","Order ID":"958146703","Ship Date":"2/1/2014","Units Sold":"5756","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1469391.68","Total Cost":"917621.52","Total Profit":"551770.16"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/28/2016","Order ID":"519057929","Ship Date":"1/11/2017","Units Sold":"9631","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"787141.63","Total Cost":"545788.77","Total Profit":"241352.86"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"7/1/2011","Order ID":"181441628","Ship Date":"7/29/2011","Units Sold":"1465","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"301350.50","Total Cost":"171566.15","Total Profit":"129784.35"},{"Region":"Asia","Country":"Myanmar","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/14/2017","Order ID":"617221629","Ship Date":"3/9/2017","Units Sold":"8451","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5503375.71","Total Cost":"4436436.96","Total Profit":"1066938.75"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/24/2016","Order ID":"318634259","Ship Date":"9/19/2016","Units Sold":"9813","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2505062.64","Total Cost":"1564388.46","Total Profit":"940674.18"},{"Region":"Europe","Country":"Kosovo","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"10/31/2012","Order ID":"548228347","Ship Date":"11/1/2012","Units Sold":"1806","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1206895.62","Total Cost":"907587.24","Total Profit":"299308.38"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/3/2017","Order ID":"388865220","Ship Date":"3/1/2017","Units Sold":"2715","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"296695.20","Total Cost":"97305.60","Total Profit":"199389.60"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"5/23/2015","Order ID":"793718707","Ship Date":"6/9/2015","Units Sold":"7858","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1198973.64","Total Cost":"765683.52","Total Profit":"433290.12"},{"Region":"Central America and the Caribbean","Country":"Saint Lucia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/24/2017","Order ID":"536275136","Ship Date":"6/28/2017","Units Sold":"4585","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1170458.80","Total Cost":"730940.70","Total Profit":"439518.10"},{"Region":"Europe","Country":"Switzerland","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/30/2015","Order ID":"260333335","Ship Date":"4/3/2015","Units Sold":"7274","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4860995.98","Total Cost":"3655475.96","Total Profit":"1205520.02"},{"Region":"Europe","Country":"Lithuania","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"10/9/2016","Order ID":"230004632","Ship Date":"11/27/2016","Units Sold":"2337","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"596589.36","Total Cost":"372564.54","Total Profit":"224024.82"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"4/19/2012","Order ID":"779712855","Ship Date":"4/24/2012","Units Sold":"3216","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1406035.20","Total Cost":"846869.28","Total Profit":"559165.92"},{"Region":"Europe","Country":"Vatican City","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/31/2015","Order ID":"964194333","Ship Date":"11/9/2015","Units Sold":"5385","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1107694.50","Total Cost":"630637.35","Total Profit":"477057.15"},{"Region":"Asia","Country":"Laos","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"12/9/2015","Order ID":"808497893","Ship Date":"1/8/2016","Units Sold":"1348","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"147309.44","Total Cost":"48312.32","Total Profit":"98997.12"},{"Region":"Europe","Country":"Belgium","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"5/27/2017","Order ID":"857984864","Ship Date":"5/28/2017","Units Sold":"5643","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1440545.04","Total Cost":"899607.06","Total Profit":"540937.98"},{"Region":"Europe","Country":"Germany","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/17/2014","Order ID":"828329074","Ship Date":"11/3/2014","Units Sold":"9835","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1074768.80","Total Cost":"352486.40","Total Profit":"722282.40"},{"Region":"Europe","Country":"Andorra","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/28/2010","Order ID":"955516850","Ship Date":"12/28/2010","Units Sold":"7525","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3174722.25","Total Cost":"2744292.25","Total Profit":"430430.00"},{"Region":"Europe","Country":"Russia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/18/2014","Order ID":"645847022","Ship Date":"4/24/2014","Units Sold":"9341","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4083885.20","Total Cost":"2459765.53","Total Profit":"1624119.67"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/13/2010","Order ID":"725930917","Ship Date":"10/27/2010","Units Sold":"7945","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2028199.60","Total Cost":"1266591.90","Total Profit":"761607.70"},{"Region":"Europe","Country":"Finland","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/7/2014","Order ID":"292692363","Ship Date":"6/23/2014","Units Sold":"3029","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"331009.12","Total Cost":"108559.36","Total Profit":"222449.76"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/23/2017","Order ID":"763367688","Ship Date":"6/26/2017","Units Sold":"6318","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"516370.14","Total Cost":"358041.06","Total Profit":"158329.08"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"12/3/2016","Order ID":"925505721","Ship Date":"1/5/2017","Units Sold":"6565","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1675913.20","Total Cost":"1046592.30","Total Profit":"629320.90"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/4/2011","Order ID":"986967790","Ship Date":"3/9/2011","Units Sold":"4556","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1991883.20","Total Cost":"1199731.48","Total Profit":"792151.72"},{"Region":"Europe","Country":"Armenia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/29/2010","Order ID":"325927722","Ship Date":"7/13/2010","Units Sold":"8111","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1249580.66","Total Cost":"737533.23","Total Profit":"512047.43"},{"Region":"Asia","Country":"Cambodia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"8/10/2011","Order ID":"640871846","Ship Date":"8/28/2011","Units Sold":"7076","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4607961.96","Total Cost":"3714616.96","Total Profit":"893345.00"},{"Region":"Europe","Country":"Poland","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"10/16/2015","Order ID":"100598990","Ship Date":"11/10/2015","Units Sold":"8332","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5568025.64","Total Cost":"4187163.28","Total Profit":"1380862.36"},{"Region":"Asia","Country":"Japan","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"4/24/2010","Order ID":"994220483","Ship Date":"5/22/2010","Units Sold":"790","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"86331.20","Total Cost":"28313.60","Total Profit":"58017.60"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/4/2010","Order ID":"281160151","Ship Date":"1/12/2010","Units Sold":"392","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"42837.76","Total Cost":"14049.28","Total Profit":"28788.48"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"8/24/2015","Order ID":"841154325","Ship Date":"9/4/2015","Units Sold":"5112","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"47694.96","Total Cost":"35375.04","Total Profit":"12319.92"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/7/2010","Order ID":"224251830","Ship Date":"2/28/2010","Units Sold":"9955","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4352326.00","Total Cost":"2621450.15","Total Profit":"1730875.85"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/18/2015","Order ID":"100813996","Ship Date":"4/21/2015","Units Sold":"1957","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"92859.65","Total Cost":"62213.03","Total Profit":"30646.62"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/11/2012","Order ID":"411514651","Ship Date":"4/15/2012","Units Sold":"5185","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"48376.05","Total Cost":"35880.20","Total Profit":"12495.85"},{"Region":"Asia","Country":"Taiwan","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"8/25/2013","Order ID":"717340123","Ship Date":"9/15/2013","Units Sold":"5738","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3736642.98","Total Cost":"3012220.48","Total Profit":"724422.50"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/19/2014","Order ID":"649589240","Ship Date":"5/19/2014","Units Sold":"6746","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"320097.70","Total Cost":"214455.34","Total Profit":"105642.36"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"7/3/2017","Order ID":"359873330","Ship Date":"7/14/2017","Units Sold":"3370","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"860293.60","Total Cost":"537245.40","Total Profit":"323048.20"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"5/1/2016","Order ID":"970116221","Ship Date":"5/3/2016","Units Sold":"7803","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1991949.84","Total Cost":"1243954.26","Total Profit":"747995.58"},{"Region":"Europe","Country":"Cyprus","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/26/2012","Order ID":"522554242","Ship Date":"7/1/2012","Units Sold":"4267","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"202469.15","Total Cost":"135647.93","Total Profit":"66821.22"},{"Region":"Europe","Country":"Netherlands","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/9/2012","Order ID":"729736220","Ship Date":"7/18/2012","Units Sold":"4019","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1025970.32","Total Cost":"640708.98","Total Profit":"385261.34"},{"Region":"Europe","Country":"Macedonia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/27/2016","Order ID":"224523484","Ship Date":"7/14/2016","Units Sold":"343","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"149959.60","Total Cost":"90322.19","Total Profit":"59637.41"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"2/20/2014","Order ID":"410089862","Ship Date":"3/12/2014","Units Sold":"3558","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"33196.14","Total Cost":"24621.36","Total Profit":"8574.78"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/10/2011","Order ID":"509921681","Ship Date":"7/2/2011","Units Sold":"6012","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2628446.40","Total Cost":"1583139.96","Total Profit":"1045306.44"},{"Region":"Europe","Country":"Russia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/20/2011","Order ID":"717817771","Ship Date":"9/5/2011","Units Sold":"7085","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"774248.80","Total Cost":"253926.40","Total Profit":"520322.40"},{"Region":"Europe","Country":"Germany","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/14/2011","Order ID":"847889459","Ship Date":"6/22/2011","Units Sold":"8188","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3454435.32","Total Cost":"2986081.72","Total Profit":"468353.60"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/25/2012","Order ID":"784560573","Ship Date":"8/8/2012","Units Sold":"7763","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"72428.79","Total Cost":"53719.96","Total Profit":"18708.83"},{"Region":"Asia","Country":"North Korea","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"5/18/2017","Order ID":"932567441","Ship Date":"6/15/2017","Units Sold":"6284","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"968113.04","Total Cost":"571404.12","Total Profit":"396708.92"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/4/2010","Order ID":"866958892","Ship Date":"12/12/2010","Units Sold":"1257","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"193653.42","Total Cost":"114299.01","Total Profit":"79354.41"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/30/2016","Order ID":"683096253","Ship Date":"12/13/2016","Units Sold":"2216","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1443081.36","Total Cost":"1163311.36","Total Profit":"279770.00"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"8/26/2010","Order ID":"546653354","Ship Date":"9/27/2010","Units Sold":"5730","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2505156.00","Total Cost":"1508880.90","Total Profit":"996275.10"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/12/2014","Order ID":"243616521","Ship Date":"7/14/2014","Units Sold":"397","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"32446.81","Total Cost":"22497.99","Total Profit":"9948.82"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/4/2017","Order ID":"530284583","Ship Date":"5/19/2017","Units Sold":"1847","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"87640.15","Total Cost":"58716.13","Total Profit":"28924.02"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/6/2016","Order ID":"883268868","Ship Date":"11/6/2016","Units Sold":"7741","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1592323.70","Total Cost":"906548.51","Total Profit":"685775.19"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/4/2015","Order ID":"849493205","Ship Date":"8/15/2015","Units Sold":"2772","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"25862.76","Total Cost":"19182.24","Total Profit":"6680.52"},{"Region":"Europe","Country":"Albania","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"1/27/2017","Order ID":"496193921","Ship Date":"3/10/2017","Units Sold":"3663","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1601463.60","Total Cost":"964577.79","Total Profit":"636885.81"},{"Region":"Europe","Country":"Cyprus","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/11/2014","Order ID":"860919845","Ship Date":"11/12/2014","Units Sold":"4168","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"455479.04","Total Cost":"149381.12","Total Profit":"306097.92"},{"Region":"Europe","Country":"Croatia","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"7/20/2010","Order ID":"801532304","Ship Date":"8/17/2010","Units Sold":"75","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"50120.25","Total Cost":"37690.50","Total Profit":"12429.75"},{"Region":"Asia","Country":"Cambodia","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"3/12/2011","Order ID":"146205127","Ship Date":"4/14/2011","Units Sold":"4201","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2807402.27","Total Cost":"2111170.54","Total Profit":"696231.73"},{"Region":"Asia","Country":"Mongolia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/25/2016","Order ID":"143424642","Ship Date":"1/8/2017","Units Sold":"1394","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"13006.02","Total Cost":"9646.48","Total Profit":"3359.54"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/6/2010","Order ID":"311989676","Ship Date":"6/3/2010","Units Sold":"3533","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"726738.10","Total Cost":"413749.63","Total Profit":"312988.47"},{"Region":"Europe","Country":"Hungary","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"8/15/2012","Order ID":"691011559","Ship Date":"9/26/2012","Units Sold":"4531","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2950632.51","Total Cost":"2378593.76","Total Profit":"572038.75"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"2/23/2012","Order ID":"489914119","Ship Date":"3/5/2012","Units Sold":"5330","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"582462.40","Total Cost":"191027.20","Total Profit":"391435.20"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/19/2013","Order ID":"338433682","Ship Date":"6/27/2013","Units Sold":"8902","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3891954.40","Total Cost":"2344163.66","Total Profit":"1547790.74"},{"Region":"Asia","Country":"Philippines","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"10/29/2010","Order ID":"936619079","Ship Date":"12/9/2010","Units Sold":"5254","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1080747.80","Total Cost":"615295.94","Total Profit":"465451.86"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"9/10/2014","Order ID":"804831635","Ship Date":"10/10/2014","Units Sold":"6421","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2708955.69","Total Cost":"2341674.49","Total Profit":"367281.20"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"1/31/2010","Order ID":"333745181","Ship Date":"3/8/2010","Units Sold":"1470","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"120143.10","Total Cost":"83304.90","Total Profit":"36838.20"},{"Region":"Asia","Country":"Tajikistan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"5/18/2013","Order ID":"434346044","Ship Date":"6/19/2013","Units Sold":"1501","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"308755.70","Total Cost":"175782.11","Total Profit":"132973.59"},{"Region":"Europe","Country":"Hungary","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/6/2015","Order ID":"287933051","Ship Date":"8/4/2015","Units Sold":"4643","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"955065.10","Total Cost":"543741.73","Total Profit":"411323.37"},{"Region":"Europe","Country":"Switzerland","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/22/2016","Order ID":"496117532","Ship Date":"1/24/2016","Units Sold":"1057","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"9861.81","Total Cost":"7314.44","Total Profit":"2547.37"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"11/14/2011","Order ID":"830823314","Ship Date":"11/28/2011","Units Sold":"7936","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5168002.56","Total Cost":"4166082.56","Total Profit":"1001920.00"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"1/6/2016","Order ID":"684286725","Ship Date":"2/17/2016","Units Sold":"4503","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1968711.60","Total Cost":"1185774.99","Total Profit":"782936.61"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"2/11/2016","Order ID":"419056594","Ship Date":"4/1/2016","Units Sold":"7013","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3066083.60","Total Cost":"1846733.29","Total Profit":"1219350.31"},{"Region":"Europe","Country":"Lithuania","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/2/2016","Order ID":"917994248","Ship Date":"1/16/2016","Units Sold":"3753","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"410127.84","Total Cost":"134507.52","Total Profit":"275620.32"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/17/2016","Order ID":"434273517","Ship Date":"10/21/2016","Units Sold":"39","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"3187.47","Total Cost":"2210.13","Total Profit":"977.34"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"2/3/2013","Order ID":"441380727","Ship Date":"3/22/2013","Units Sold":"3220","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2151829.40","Total Cost":"1618178.80","Total Profit":"533650.60"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/5/2011","Order ID":"683114707","Ship Date":"12/15/2011","Units Sold":"7677","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"627441.21","Total Cost":"435055.59","Total Profit":"192385.62"},{"Region":"Asia","Country":"Malaysia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"10/27/2013","Order ID":"523586785","Ship Date":"11/22/2013","Units Sold":"9820","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1512869.20","Total Cost":"892932.60","Total Profit":"619936.60"},{"Region":"Europe","Country":"Portugal","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"7/28/2016","Order ID":"297220790","Ship Date":"8/10/2016","Units Sold":"3091","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1351385.20","Total Cost":"813953.03","Total Profit":"537432.17"},{"Region":"Europe","Country":"France","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"6/22/2011","Order ID":"858753049","Ship Date":"6/25/2011","Units Sold":"2965","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"452399.70","Total Cost":"288909.60","Total Profit":"163490.10"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"5/21/2017","Order ID":"433232390","Ship Date":"6/9/2017","Units Sold":"1947","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1301121.69","Total Cost":"978445.38","Total Profit":"322676.31"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/16/2016","Order ID":"466020143","Ship Date":"6/29/2016","Units Sold":"4571","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1998441.20","Total Cost":"1203681.43","Total Profit":"794759.77"},{"Region":"Europe","Country":"Portugal","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/30/2010","Order ID":"672790133","Ship Date":"8/18/2010","Units Sold":"2406","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1566811.26","Total Cost":"1263053.76","Total Profit":"303757.50"},{"Region":"Europe","Country":"Austria","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/12/2010","Order ID":"389528691","Ship Date":"7/3/2010","Units Sold":"9051","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"429469.95","Total Cost":"287731.29","Total Profit":"141738.66"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/19/2016","Order ID":"822534644","Ship Date":"9/22/2016","Units Sold":"5135","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3343963.35","Total Cost":"2695669.60","Total Profit":"648293.75"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/18/2015","Order ID":"998419320","Ship Date":"6/12/2015","Units Sold":"3319","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1400252.91","Total Cost":"1210406.11","Total Profit":"189846.80"},{"Region":"Europe","Country":"Switzerland","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"12/30/2012","Order ID":"914106547","Ship Date":"1/18/2013","Units Sold":"3296","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"269382.08","Total Cost":"186784.32","Total Profit":"82597.76"},{"Region":"Asia","Country":"Bhutan","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/16/2016","Order ID":"186832654","Ship Date":"11/22/2016","Units Sold":"6789","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1733095.92","Total Cost":"1082302.38","Total Profit":"650793.54"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"7/14/2016","Order ID":"304146468","Ship Date":"7/26/2016","Units Sold":"2554","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"23828.82","Total Cost":"17673.68","Total Profit":"6155.14"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"2/15/2010","Order ID":"573909318","Ship Date":"3/16/2010","Units Sold":"1376","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"580520.64","Total Cost":"501813.44","Total Profit":"78707.20"},{"Region":"Asia","Country":"Cambodia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"10/19/2015","Order ID":"374295032","Ship Date":"11/21/2015","Units Sold":"1072","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"163565.76","Total Cost":"104455.68","Total Profit":"59110.08"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"11/28/2014","Order ID":"503789937","Ship Date":"12/16/2014","Units Sold":"1493","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"972256.53","Total Cost":"783765.28","Total Profit":"188491.25"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"5/18/2016","Order ID":"931192862","Ship Date":"5/31/2016","Units Sold":"9516","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1466034.96","Total Cost":"865289.88","Total Profit":"600745.08"},{"Region":"Europe","Country":"Portugal","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/18/2015","Order ID":"345615136","Ship Date":"1/30/2015","Units Sold":"4054","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"624559.24","Total Cost":"368630.22","Total Profit":"255929.02"},{"Region":"Europe","Country":"Italy","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/12/2010","Order ID":"206480586","Ship Date":"9/29/2010","Units Sold":"1049","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"442562.61","Total Cost":"382559.81","Total Profit":"60002.80"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/28/2011","Order ID":"693525540","Ship Date":"6/10/2011","Units Sold":"8474","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5518353.54","Total Cost":"4448511.04","Total Profit":"1069842.50"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/16/2015","Order ID":"256798827","Ship Date":"7/29/2015","Units Sold":"1334","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"203541.72","Total Cost":"129984.96","Total Profit":"73556.76"},{"Region":"Asia","Country":"India","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"4/18/2014","Order ID":"566661775","Ship Date":"5/21/2014","Units Sold":"6666","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4340965.86","Total Cost":"3499383.36","Total Profit":"841582.50"},{"Region":"Asia","Country":"India","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"11/18/2011","Order ID":"663788211","Ship Date":"12/7/2011","Units Sold":"8537","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5705020.99","Total Cost":"4290183.98","Total Profit":"1414837.01"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"3/23/2013","Order ID":"109164464","Ship Date":"5/12/2013","Units Sold":"3046","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"626562.20","Total Cost":"356717.06","Total Profit":"269845.14"},{"Region":"Europe","Country":"Belarus","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/20/2013","Order ID":"334089362","Ship Date":"1/29/2013","Units Sold":"3321","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"847784.88","Total Cost":"529433.82","Total Profit":"318351.06"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"9/23/2014","Order ID":"590174233","Ship Date":"11/12/2014","Units Sold":"4526","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"494601.28","Total Cost":"162211.84","Total Profit":"332389.44"},{"Region":"Europe","Country":"Finland","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"4/25/2011","Order ID":"199342906","Ship Date":"5/2/2011","Units Sold":"8851","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5914857.77","Total Cost":"4447981.54","Total Profit":"1466876.23"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/3/2012","Order ID":"803831708","Ship Date":"3/9/2012","Units Sold":"520","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"347500.40","Total Cost":"261320.80","Total Profit":"86179.60"},{"Region":"Europe","Country":"Georgia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/15/2016","Order ID":"516189467","Ship Date":"2/5/2016","Units Sold":"789","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"162297.30","Total Cost":"92399.79","Total Profit":"69897.51"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/21/2015","Order ID":"669277513","Ship Date":"9/9/2015","Units Sold":"2944","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"321720.32","Total Cost":"105512.96","Total Profit":"216207.36"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"10/12/2015","Order ID":"866269671","Ship Date":"11/1/2015","Units Sold":"7301","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4879039.27","Total Cost":"3669044.54","Total Profit":"1209994.73"},{"Region":"Europe","Country":"Slovakia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/11/2014","Order ID":"330652272","Ship Date":"12/9/2014","Units Sold":"6210","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2619936.90","Total Cost":"2264724.90","Total Profit":"355212.00"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"2/16/2016","Order ID":"156224143","Ship Date":"3/23/2016","Units Sold":"9050","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"84436.50","Total Cost":"62626.00","Total Profit":"21810.50"},{"Region":"North America","Country":"United States of America","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/22/2016","Order ID":"157096612","Ship Date":"4/22/2016","Units Sold":"7233","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3051530.37","Total Cost":"2637802.77","Total Profit":"413727.60"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/28/2016","Order ID":"217693507","Ship Date":"1/11/2017","Units Sold":"9201","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1403888.58","Total Cost":"896545.44","Total Profit":"507343.14"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/4/2013","Order ID":"742751157","Ship Date":"5/10/2013","Units Sold":"5428","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"593171.84","Total Cost":"194539.52","Total Profit":"398632.32"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/9/2012","Order ID":"407318389","Ship Date":"8/20/2012","Units Sold":"3418","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"373519.04","Total Cost":"122501.12","Total Profit":"251017.92"},{"Region":"Europe","Country":"France","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/14/2016","Order ID":"206756532","Ship Date":"3/4/2016","Units Sold":"2707","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1183500.40","Total Cost":"712834.31","Total Profit":"470666.09"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"3/30/2014","Order ID":"306739413","Ship Date":"5/17/2014","Units Sold":"9864","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6423535.44","Total Cost":"5178205.44","Total Profit":"1245330.00"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/20/2014","Order ID":"493253362","Ship Date":"3/9/2014","Units Sold":"3486","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1470708.54","Total Cost":"1271309.34","Total Profit":"199399.20"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"5/5/2012","Order ID":"622597205","Ship Date":"5/10/2012","Units Sold":"9203","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1404193.74","Total Cost":"896740.32","Total Profit":"507453.42"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"2/9/2014","Order ID":"171382272","Ship Date":"3/7/2014","Units Sold":"4678","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2045221.60","Total Cost":"1231857.74","Total Profit":"813363.86"},{"Region":"Europe","Country":"Slovenia","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"5/24/2014","Order ID":"486532390","Ship Date":"6/22/2014","Units Sold":"4601","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3074710.27","Total Cost":"2312186.54","Total Profit":"762523.73"},{"Region":"Europe","Country":"Sweden","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"10/18/2016","Order ID":"735283887","Ship Date":"11/15/2016","Units Sold":"5697","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2490728.40","Total Cost":"1500191.01","Total Profit":"990537.39"},{"Region":"Europe","Country":"Slovenia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/17/2014","Order ID":"155185592","Ship Date":"9/12/2014","Units Sold":"1720","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"140575.60","Total Cost":"97472.40","Total Profit":"43103.20"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/22/2017","Order ID":"304098832","Ship Date":"6/28/2017","Units Sold":"8457","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"691190.61","Total Cost":"479258.19","Total Profit":"211932.42"},{"Region":"Europe","Country":"Armenia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/26/2016","Order ID":"110197436","Ship Date":"10/11/2016","Units Sold":"8725","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1331260.50","Total Cost":"850164.00","Total Profit":"481096.50"},{"Region":"Europe","Country":"Sweden","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/13/2012","Order ID":"821967732","Ship Date":"1/10/2013","Units Sold":"7373","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"349848.85","Total Cost":"234387.67","Total Profit":"115461.18"},{"Region":"North America","Country":"Mexico","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/4/2011","Order ID":"158208549","Ship Date":"4/3/2011","Units Sold":"6280","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4089598.80","Total Cost":"3296748.80","Total Profit":"792850.00"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/9/2010","Order ID":"858031213","Ship Date":"2/18/2010","Units Sold":"9358","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"764829.34","Total Cost":"530317.86","Total Profit":"234511.48"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"12/26/2012","Order ID":"330859553","Ship Date":"1/9/2013","Units Sold":"7549","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1552829.30","Total Cost":"884063.39","Total Profit":"668765.91"},{"Region":"Europe","Country":"Finland","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"1/12/2017","Order ID":"106429898","Ship Date":"2/5/2017","Units Sold":"3827","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"181591.15","Total Cost":"121660.33","Total Profit":"59930.82"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"5/31/2016","Order ID":"884791076","Ship Date":"6/26/2016","Units Sold":"8196","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5337317.16","Total Cost":"4302572.16","Total Profit":"1034745.00"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/7/2014","Order ID":"286304414","Ship Date":"2/20/2014","Units Sold":"2693","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"220098.89","Total Cost":"152612.31","Total Profit":"67486.58"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/3/2010","Order ID":"501643741","Ship Date":"2/7/2010","Units Sold":"6385","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"521846.05","Total Cost":"361837.95","Total Profit":"160008.10"},{"Region":"Europe","Country":"Moldova ","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"3/11/2013","Order ID":"641795384","Ship Date":"4/4/2013","Units Sold":"371","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"57156.26","Total Cost":"33735.03","Total Profit":"23421.23"},{"Region":"Europe","Country":"Slovakia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/3/2014","Order ID":"788058173","Ship Date":"7/25/2014","Units Sold":"2781","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"303907.68","Total Cost":"99671.04","Total Profit":"204236.64"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/8/2013","Order ID":"642043435","Ship Date":"7/12/2013","Units Sold":"3775","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"308530.75","Total Cost":"213929.25","Total Profit":"94601.50"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/30/2014","Order ID":"875674998","Ship Date":"10/3/2014","Units Sold":"546","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"364875.42","Total Cost":"274386.84","Total Profit":"90488.58"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"11/9/2015","Order ID":"881189191","Ship Date":"12/15/2015","Units Sold":"2318","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"977941.02","Total Cost":"845351.42","Total Profit":"132589.60"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"4/18/2012","Order ID":"121134841","Ship Date":"5/14/2012","Units Sold":"5346","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"815692.68","Total Cost":"520914.24","Total Profit":"294778.44"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"5/22/2015","Order ID":"378373277","Ship Date":"6/22/2015","Units Sold":"7916","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2020796.48","Total Cost":"1261968.72","Total Profit":"758827.76"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/5/2011","Order ID":"806078326","Ship Date":"2/23/2011","Units Sold":"5344","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2254580.16","Total Cost":"1948903.36","Total Profit":"305676.80"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/1/2016","Order ID":"177736318","Ship Date":"10/18/2016","Units Sold":"4981","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"407097.13","Total Cost":"282273.27","Total Profit":"124823.86"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"8/28/2016","Order ID":"937146079","Ship Date":"10/12/2016","Units Sold":"1205","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"131682.40","Total Cost":"43187.20","Total Profit":"88495.20"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/5/2011","Order ID":"648418939","Ship Date":"6/6/2011","Units Sold":"428","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"65304.24","Total Cost":"41704.32","Total Profit":"23599.92"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"9/29/2013","Order ID":"545978724","Ship Date":"11/16/2013","Units Sold":"6092","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"56838.36","Total Cost":"42156.64","Total Profit":"14681.72"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"2/28/2015","Order ID":"584561765","Ship Date":"3/26/2015","Units Sold":"3671","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"560121.18","Total Cost":"357702.24","Total Profit":"202418.94"},{"Region":"Asia","Country":"Vietnam","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"9/25/2011","Order ID":"789216887","Ship Date":"11/1/2011","Units Sold":"5670","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3789090.90","Total Cost":"2849401.80","Total Profit":"939689.10"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/25/2015","Order ID":"805305421","Ship Date":"11/7/2015","Units Sold":"6625","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2795021.25","Total Cost":"2416071.25","Total Profit":"378950.00"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"4/28/2014","Order ID":"348501193","Ship Date":"5/27/2014","Units Sold":"8102","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"75591.66","Total Cost":"56065.84","Total Profit":"19525.82"},{"Region":"Europe","Country":"Germany","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"5/18/2010","Order ID":"554790532","Ship Date":"6/7/2010","Units Sold":"3702","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1561836.78","Total Cost":"1350082.38","Total Profit":"211754.40"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"12/16/2011","Order ID":"830472266","Ship Date":"12/25/2011","Units Sold":"4053","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"192314.85","Total Cost":"128844.87","Total Profit":"63469.98"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/15/2012","Order ID":"202157723","Ship Date":"1/18/2013","Units Sold":"1818","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"794829.60","Total Cost":"478733.94","Total Profit":"316095.66"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"2/14/2012","Order ID":"466770732","Ship Date":"3/6/2012","Units Sold":"6687","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"546528.51","Total Cost":"378952.29","Total Profit":"167576.22"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/2/2016","Order ID":"341547620","Ship Date":"11/9/2016","Units Sold":"385","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"257283.95","Total Cost":"193477.90","Total Profit":"63806.05"},{"Region":"Europe","Country":"San Marino","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"8/15/2016","Order ID":"414037215","Ship Date":"9/5/2016","Units Sold":"1668","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"182279.04","Total Cost":"59781.12","Total Profit":"122497.92"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/14/2017","Order ID":"892100846","Ship Date":"3/16/2017","Units Sold":"1320","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"62634.00","Total Cost":"41962.80","Total Profit":"20671.20"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/2/2014","Order ID":"253912341","Ship Date":"2/1/2014","Units Sold":"7159","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"585105.07","Total Cost":"405700.53","Total Profit":"179404.54"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"2/11/2011","Order ID":"197958028","Ship Date":"3/29/2011","Units Sold":"9034","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6037151.18","Total Cost":"4539946.36","Total Profit":"1497204.82"},{"Region":"Europe","Country":"Monaco","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/10/2017","Order ID":"693036735","Ship Date":"7/9/2017","Units Sold":"3825","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"35687.25","Total Cost":"26469.00","Total Profit":"9218.25"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"9/8/2012","Order ID":"428259789","Ship Date":"10/3/2012","Units Sold":"443","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"193679.60","Total Cost":"116655.19","Total Profit":"77024.41"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/10/2011","Order ID":"863051021","Ship Date":"9/24/2011","Units Sold":"4831","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3145995.51","Total Cost":"2536081.76","Total Profit":"609913.75"},{"Region":"Asia","Country":"North Korea","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"3/18/2015","Order ID":"377146756","Ship Date":"4/29/2015","Units Sold":"4961","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3315287.47","Total Cost":"2493100.94","Total Profit":"822186.53"},{"Region":"Europe","Country":"Norway","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/15/2013","Order ID":"120595824","Ship Date":"10/27/2013","Units Sold":"5839","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3902028.53","Total Cost":"2934331.06","Total Profit":"967697.47"},{"Region":"Europe","Country":"Portugal","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/9/2013","Order ID":"863759553","Ship Date":"11/19/2013","Units Sold":"4501","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1149015.28","Total Cost":"717549.42","Total Profit":"431465.86"},{"Region":"Europe","Country":"Portugal","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"1/16/2012","Order ID":"747311770","Ship Date":"2/17/2012","Units Sold":"5015","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"772610.90","Total Cost":"456013.95","Total Profit":"316596.95"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/10/2013","Order ID":"232238805","Ship Date":"4/15/2013","Units Sold":"3478","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"165031.10","Total Cost":"110565.62","Total Profit":"54465.48"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/13/2012","Order ID":"749839484","Ship Date":"4/30/2012","Units Sold":"3021","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"465415.26","Total Cost":"274699.53","Total Profit":"190715.73"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"6/4/2012","Order ID":"651725137","Ship Date":"6/20/2012","Units Sold":"8806","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"962319.68","Total Cost":"315607.04","Total Profit":"646712.64"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/6/2014","Order ID":"159819591","Ship Date":"6/16/2014","Units Sold":"3023","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1275373.47","Total Cost":"1102457.87","Total Profit":"172915.60"},{"Region":"Europe","Country":"Croatia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/2/2012","Order ID":"916359174","Ship Date":"4/14/2012","Units Sold":"9898","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6614536.46","Total Cost":"4974140.92","Total Profit":"1640395.54"},{"Region":"Europe","Country":"Cyprus","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/16/2012","Order ID":"133892714","Ship Date":"6/27/2012","Units Sold":"684","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"105377.04","Total Cost":"62196.12","Total Profit":"43180.92"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"4/4/2015","Order ID":"945281541","Ship Date":"5/24/2015","Units Sold":"8669","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3657364.41","Total Cost":"3161497.61","Total Profit":"495866.80"},{"Region":"Sub-Saharan Africa","Country":"Mali","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"4/27/2010","Order ID":"253699481","Ship Date":"6/15/2010","Units Sold":"4169","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1822686.80","Total Cost":"1097822.77","Total Profit":"724864.03"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"3/9/2011","Order ID":"882632863","Ship Date":"3/22/2011","Units Sold":"9533","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2433584.24","Total Cost":"1519750.86","Total Profit":"913833.38"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"7/9/2013","Order ID":"325880515","Ship Date":"8/13/2013","Units Sold":"4141","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1057114.48","Total Cost":"660158.22","Total Profit":"396956.26"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"1/24/2014","Order ID":"197553765","Ship Date":"2/13/2014","Units Sold":"9404","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"768588.92","Total Cost":"532924.68","Total Profit":"235664.24"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/27/2014","Order ID":"382076442","Ship Date":"6/9/2014","Units Sold":"3765","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"307713.45","Total Cost":"213362.55","Total Profit":"94350.90"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"3/7/2017","Order ID":"384184873","Ship Date":"3/30/2017","Units Sold":"7696","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1185645.76","Total Cost":"699797.28","Total Profit":"485848.48"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/6/2014","Order ID":"678927886","Ship Date":"11/18/2014","Units Sold":"8704","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5668131.84","Total Cost":"4569251.84","Total Profit":"1098880.00"},{"Region":"North America","Country":"United States of America","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/19/2015","Order ID":"461666810","Ship Date":"10/23/2015","Units Sold":"6323","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2764415.60","Total Cost":"1665035.59","Total Profit":"1099380.01"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/26/2010","Order ID":"798075473","Ship Date":"11/8/2010","Units Sold":"7122","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1086674.76","Total Cost":"693967.68","Total Profit":"392707.08"},{"Region":"North America","Country":"Mexico","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"4/22/2014","Order ID":"574140202","Ship Date":"5/22/2014","Units Sold":"9699","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6481550.73","Total Cost":"4874135.46","Total Profit":"1607415.27"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/24/2015","Order ID":"546159827","Ship Date":"8/8/2015","Units Sold":"9685","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"459553.25","Total Cost":"307886.15","Total Profit":"151667.10"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/4/2011","Order ID":"190745675","Ship Date":"1/23/2012","Units Sold":"4739","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3086084.19","Total Cost":"2487785.44","Total Profit":"598298.75"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"10/3/2013","Order ID":"854821574","Ship Date":"11/17/2013","Units Sold":"9555","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1472043.30","Total Cost":"868836.15","Total Profit":"603207.15"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"12/29/2016","Order ID":"805623853","Ship Date":"2/10/2017","Units Sold":"856","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"557435.76","Total Cost":"449365.76","Total Profit":"108070.00"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/13/2014","Order ID":"180701339","Ship Date":"1/31/2015","Units Sold":"2397","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1601843.19","Total Cost":"1204588.38","Total Profit":"397254.81"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"2/16/2017","Order ID":"537915360","Ship Date":"3/13/2017","Units Sold":"9964","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6658642.28","Total Cost":"5007308.56","Total Profit":"1651333.72"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/7/2015","Order ID":"805439746","Ship Date":"4/2/2015","Units Sold":"6374","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2786712.80","Total Cost":"1678465.42","Total Profit":"1108247.38"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"12/18/2016","Order ID":"431760823","Ship Date":"1/6/2017","Units Sold":"6477","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4328384.79","Total Cost":"3254951.58","Total Profit":"1073433.21"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"6/20/2012","Order ID":"735677421","Ship Date":"6/30/2012","Units Sold":"2152","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"102112.40","Total Cost":"68412.08","Total Profit":"33700.32"},{"Region":"Europe","Country":"Finland","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/21/2015","Order ID":"856300866","Ship Date":"7/8/2015","Units Sold":"7310","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1866096.80","Total Cost":"1165360.20","Total Profit":"700736.60"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/20/2014","Order ID":"903054988","Ship Date":"6/5/2014","Units Sold":"2894","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"236526.62","Total Cost":"164002.98","Total Profit":"72523.64"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/3/2013","Order ID":"605676114","Ship Date":"7/20/2013","Units Sold":"1876","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"205009.28","Total Cost":"67235.84","Total Profit":"137773.44"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"11/26/2014","Order ID":"664213073","Ship Date":"1/5/2015","Units Sold":"4263","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"650448.54","Total Cost":"415386.72","Total Profit":"235061.82"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"10/25/2013","Order ID":"499027192","Ship Date":"11/29/2013","Units Sold":"2090","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"318892.20","Total Cost":"203649.60","Total Profit":"115242.60"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"5/28/2010","Order ID":"500792300","Ship Date":"6/8/2010","Units Sold":"4425","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"675166.50","Total Cost":"431172.00","Total Profit":"243994.50"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"6/23/2013","Order ID":"680494725","Ship Date":"8/6/2013","Units Sold":"2366","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"361004.28","Total Cost":"230543.04","Total Profit":"130461.24"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"12/19/2013","Order ID":"219433295","Ship Date":"2/1/2014","Units Sold":"4043","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2701815.61","Total Cost":"2031769.22","Total Profit":"670046.39"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/15/2011","Order ID":"619219338","Ship Date":"7/20/2011","Units Sold":"9618","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4204989.60","Total Cost":"2532707.94","Total Profit":"1672281.66"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"5/10/2010","Order ID":"751776683","Ship Date":"6/10/2010","Units Sold":"6281","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1292001.70","Total Cost":"735567.91","Total Profit":"556433.79"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"3/4/2016","Order ID":"909341657","Ship Date":"3/11/2016","Units Sold":"3259","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"670376.30","Total Cost":"381661.49","Total Profit":"288714.81"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"7/10/2016","Order ID":"554463088","Ship Date":"8/9/2016","Units Sold":"6804","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4546909.08","Total Cost":"3419282.16","Total Profit":"1127626.92"},{"Region":"Asia","Country":"Indonesia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/30/2015","Order ID":"570002305","Ship Date":"4/25/2015","Units Sold":"5204","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"801728.24","Total Cost":"473199.72","Total Profit":"328528.52"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/12/2013","Order ID":"109133136","Ship Date":"6/23/2013","Units Sold":"3775","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"308530.75","Total Cost":"213929.25","Total Profit":"94601.50"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"4/23/2013","Order ID":"645341908","Ship Date":"5/8/2013","Units Sold":"9866","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1078156.48","Total Cost":"353597.44","Total Profit":"724559.04"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"4/16/2014","Order ID":"122427451","Ship Date":"4/22/2014","Units Sold":"7858","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2005990.24","Total Cost":"1252722.36","Total Profit":"753267.88"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"11/27/2016","Order ID":"604501092","Ship Date":"12/12/2016","Units Sold":"4161","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"340078.53","Total Cost":"235803.87","Total Profit":"104274.66"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"5/23/2011","Order ID":"625986659","Ship Date":"6/3/2011","Units Sold":"2218","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"181277.14","Total Cost":"125694.06","Total Profit":"55583.08"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/1/2011","Order ID":"141620481","Ship Date":"10/27/2011","Units Sold":"7502","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1915110.56","Total Cost":"1195968.84","Total Profit":"719141.72"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/15/2014","Order ID":"976451385","Ship Date":"3/19/2014","Units Sold":"2518","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"119479.10","Total Cost":"80047.22","Total Profit":"39431.88"},{"Region":"Europe","Country":"Belarus","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"9/25/2015","Order ID":"975840699","Ship Date":"10/6/2015","Units Sold":"1803","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"460269.84","Total Cost":"287434.26","Total Profit":"172835.58"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"1/19/2011","Order ID":"755462253","Ship Date":"2/26/2011","Units Sold":"6923","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"64591.59","Total Cost":"47907.16","Total Profit":"16684.43"},{"Region":"Europe","Country":"Slovenia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/13/2010","Order ID":"551302373","Ship Date":"11/30/2010","Units Sold":"1478","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"13789.74","Total Cost":"10227.76","Total Profit":"3561.98"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/30/2015","Order ID":"669659888","Ship Date":"5/12/2015","Units Sold":"6097","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4074442.19","Total Cost":"3063986.38","Total Profit":"1010455.81"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/4/2011","Order ID":"137146127","Ship Date":"1/26/2011","Units Sold":"3441","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"878418.48","Total Cost":"548564.22","Total Profit":"329854.26"},{"Region":"Asia","Country":"Indonesia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"9/21/2011","Order ID":"750684916","Ship Date":"11/10/2011","Units Sold":"3204","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"488866.32","Total Cost":"312197.76","Total Profit":"176668.56"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"4/9/2017","Order ID":"327512586","Ship Date":"5/15/2017","Units Sold":"7107","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2998372.23","Total Cost":"2591851.83","Total Profit":"406520.40"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"3/7/2017","Order ID":"355177962","Ship Date":"3/14/2017","Units Sold":"3907","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"601912.42","Total Cost":"355263.51","Total Profit":"246648.91"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/5/2017","Order ID":"141542375","Ship Date":"3/8/2017","Units Sold":"4389","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"358712.97","Total Cost":"248724.63","Total Profit":"109988.34"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"9/8/2012","Order ID":"864779651","Ship Date":"9/12/2012","Units Sold":"6371","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2687861.19","Total Cost":"2323439.99","Total Profit":"364421.20"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"5/13/2015","Order ID":"623376119","Ship Date":"5/13/2015","Units Sold":"9701","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1995495.70","Total Cost":"1136084.11","Total Profit":"859411.59"},{"Region":"Asia","Country":"Brunei","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"5/28/2011","Order ID":"286130607","Ship Date":"6/21/2011","Units Sold":"1260","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"194115.60","Total Cost":"114571.80","Total Profit":"79543.80"},{"Region":"Europe","Country":"Sweden","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"10/19/2010","Order ID":"342154443","Ship Date":"11/4/2010","Units Sold":"9958","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4353637.60","Total Cost":"2622240.14","Total Profit":"1731397.46"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"3/29/2013","Order ID":"450871455","Ship Date":"4/7/2013","Units Sold":"1738","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"142046.74","Total Cost":"98492.46","Total Profit":"43554.28"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/1/2011","Order ID":"792017972","Ship Date":"1/20/2012","Units Sold":"4573","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1999315.60","Total Cost":"1204208.09","Total Profit":"795107.51"},{"Region":"Europe","Country":"France","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/7/2012","Order ID":"715642821","Ship Date":"6/26/2012","Units Sold":"3469","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"379092.32","Total Cost":"124328.96","Total Profit":"254763.36"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"11/22/2013","Order ID":"992107331","Ship Date":"12/7/2013","Units Sold":"5461","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"833239.38","Total Cost":"532119.84","Total Profit":"301119.54"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/3/2012","Order ID":"662085330","Ship Date":"9/26/2012","Units Sold":"4617","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2018552.40","Total Cost":"1215794.61","Total Profit":"802757.79"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/18/2013","Order ID":"186563146","Ship Date":"11/27/2013","Units Sold":"7035","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1795894.80","Total Cost":"1121519.70","Total Profit":"674375.10"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"12/26/2011","Order ID":"996839606","Ship Date":"12/28/2011","Units Sold":"5846","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"891982.68","Total Cost":"569634.24","Total Profit":"322348.44"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/6/2010","Order ID":"544526040","Ship Date":"8/16/2010","Units Sold":"6211","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"294711.95","Total Cost":"197447.69","Total Profit":"97264.26"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/10/2010","Order ID":"851546275","Ship Date":"4/12/2010","Units Sold":"321","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"135426.69","Total Cost":"117065.49","Total Profit":"18361.20"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"9/20/2012","Order ID":"860136640","Ship Date":"10/19/2012","Units Sold":"2401","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"262381.28","Total Cost":"86051.84","Total Profit":"176329.44"},{"Region":"Europe","Country":"France","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/2/2016","Order ID":"482845962","Ship Date":"1/1/2017","Units Sold":"3705","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"404882.40","Total Cost":"132787.20","Total Profit":"272095.20"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"5/8/2015","Order ID":"152535569","Ship Date":"5/16/2015","Units Sold":"7519","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3172190.91","Total Cost":"2742104.11","Total Profit":"430086.80"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"11/26/2012","Order ID":"372379291","Ship Date":"12/1/2012","Units Sold":"4162","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"197486.90","Total Cost":"132309.98","Total Profit":"65176.92"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"7/21/2015","Order ID":"365863454","Ship Date":"8/16/2015","Units Sold":"5981","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"653603.68","Total Cost":"214359.04","Total Profit":"439244.64"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"5/22/2011","Order ID":"326786887","Ship Date":"6/2/2011","Units Sold":"2357","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"359631.06","Total Cost":"229666.08","Total Profit":"129964.98"},{"Region":"Asia","Country":"Tajikistan","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/17/2012","Order ID":"969260919","Ship Date":"5/5/2012","Units Sold":"4700","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"717126.00","Total Cost":"457968.00","Total Profit":"259158.00"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/13/2012","Order ID":"377709376","Ship Date":"5/24/2012","Units Sold":"1453","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"613006.17","Total Cost":"529894.57","Total Profit":"83111.60"},{"Region":"Europe","Country":"Austria","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/3/2014","Order ID":"756868588","Ship Date":"2/9/2014","Units Sold":"3089","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"635407.30","Total Cost":"361752.79","Total Profit":"273654.51"},{"Region":"Europe","Country":"Slovakia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"5/24/2017","Order ID":"781787383","Ship Date":"5/26/2017","Units Sold":"7115","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"66382.95","Total Cost":"49235.80","Total Profit":"17147.15"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"11/13/2015","Order ID":"547827088","Ship Date":"12/30/2015","Units Sold":"3064","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"28587.12","Total Cost":"21202.88","Total Profit":"7384.24"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"4/10/2015","Order ID":"220661532","Ship Date":"4/25/2015","Units Sold":"7506","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3166706.34","Total Cost":"2737363.14","Total Profit":"429343.20"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"12/13/2014","Order ID":"486277043","Ship Date":"1/3/2015","Units Sold":"9038","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2307220.64","Total Cost":"1440837.96","Total Profit":"866382.68"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/6/2011","Order ID":"300972449","Ship Date":"7/18/2011","Units Sold":"3291","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1438825.20","Total Cost":"866619.03","Total Profit":"572206.17"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"3/19/2010","Order ID":"941359078","Ship Date":"3/19/2010","Units Sold":"7925","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1209196.50","Total Cost":"772212.00","Total Profit":"436984.50"},{"Region":"Asia","Country":"Mongolia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/4/2013","Order ID":"154360759","Ship Date":"9/11/2013","Units Sold":"7634","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3337584.80","Total Cost":"2010261.22","Total Profit":"1327323.58"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"2/3/2010","Order ID":"707213819","Ship Date":"3/11/2010","Units Sold":"9140","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1394581.20","Total Cost":"890601.60","Total Profit":"503979.60"},{"Region":"Asia","Country":"China","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"9/29/2015","Order ID":"937467086","Ship Date":"11/17/2015","Units Sold":"6198","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"294095.10","Total Cost":"197034.42","Total Profit":"97060.68"},{"Region":"Asia","Country":"North Korea","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/4/2017","Order ID":"602981889","Ship Date":"6/14/2017","Units Sold":"4595","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"218032.75","Total Cost":"146075.05","Total Profit":"71957.70"},{"Region":"Asia","Country":"Bhutan","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"2/5/2014","Order ID":"431932055","Ship Date":"2/20/2014","Units Sold":"7149","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4777462.23","Total Cost":"3592658.46","Total Profit":"1184803.77"},{"Region":"North America","Country":"Mexico","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"11/17/2013","Order ID":"772803914","Ship Date":"12/27/2013","Units Sold":"8706","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5817958.62","Total Cost":"4375113.24","Total Profit":"1442845.38"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"3/30/2014","Order ID":"244396293","Ship Date":"4/18/2014","Units Sold":"1149","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"93907.77","Total Cost":"65113.83","Total Profit":"28793.94"},{"Region":"Europe","Country":"Moldova ","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/26/2013","Order ID":"685820519","Ship Date":"11/17/2013","Units Sold":"8387","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"685469.51","Total Cost":"475291.29","Total Profit":"210178.22"},{"Region":"Asia","Country":"Japan","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/2/2016","Order ID":"406500422","Ship Date":"2/7/2016","Units Sold":"1363","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"209983.78","Total Cost":"123937.59","Total Profit":"86046.19"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/13/2010","Order ID":"936172330","Ship Date":"7/22/2010","Units Sold":"3051","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"465521.58","Total Cost":"297289.44","Total Profit":"168232.14"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"11/12/2013","Order ID":"274885070","Ship Date":"12/13/2013","Units Sold":"3456","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2250581.76","Total Cost":"1814261.76","Total Profit":"436320.00"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/1/2014","Order ID":"542999970","Ship Date":"2/4/2014","Units Sold":"4613","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"43039.29","Total Cost":"31921.96","Total Profit":"11117.33"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/11/2011","Order ID":"331190860","Ship Date":"4/27/2011","Units Sold":"5590","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"52154.70","Total Cost":"38682.80","Total Profit":"13471.90"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"3/27/2014","Order ID":"550444066","Ship Date":"5/9/2014","Units Sold":"7486","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4874958.06","Total Cost":"3929850.56","Total Profit":"945107.50"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/27/2013","Order ID":"382058417","Ship Date":"1/9/2014","Units Sold":"8431","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"921339.68","Total Cost":"302167.04","Total Profit":"619172.64"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/7/2017","Order ID":"427645242","Ship Date":"7/21/2017","Units Sold":"8585","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"407358.25","Total Cost":"272917.15","Total Profit":"134441.10"},{"Region":"Asia","Country":"Maldives","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"2/4/2014","Order ID":"459128367","Ship Date":"2/10/2014","Units Sold":"5142","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"561917.76","Total Cost":"184289.28","Total Profit":"377628.48"},{"Region":"Europe","Country":"Georgia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"12/17/2016","Order ID":"768744122","Ship Date":"12/24/2016","Units Sold":"7324","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"800366.72","Total Cost":"262492.16","Total Profit":"537874.56"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"8/26/2013","Order ID":"819041335","Ship Date":"9/7/2013","Units Sold":"1387","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"926890.49","Total Cost":"697022.98","Total Profit":"229867.51"},{"Region":"Europe","Country":"Montenegro","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"7/29/2015","Order ID":"592881333","Ship Date":"9/16/2015","Units Sold":"5617","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"266526.65","Total Cost":"178564.43","Total Profit":"87962.22"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/8/2016","Order ID":"143437945","Ship Date":"5/10/2016","Units Sold":"5330","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"252908.50","Total Cost":"169440.70","Total Profit":"83467.80"},{"Region":"North America","Country":"Canada","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"5/5/2010","Order ID":"944197499","Ship Date":"6/17/2010","Units Sold":"7877","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2010840.56","Total Cost":"1255751.34","Total Profit":"755089.22"},{"Region":"Central America and the Caribbean","Country":"Saint Lucia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"5/23/2012","Order ID":"938958823","Ship Date":"7/10/2012","Units Sold":"7636","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3221552.04","Total Cost":"2784772.84","Total Profit":"436779.20"},{"Region":"Europe","Country":"Malta","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/17/2015","Order ID":"391833245","Ship Date":"6/14/2015","Units Sold":"1020","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"664234.20","Total Cost":"535459.20","Total Profit":"128775.00"},{"Region":"Europe","Country":"Netherlands","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"1/30/2017","Order ID":"537244594","Ship Date":"2/1/2017","Units Sold":"1469","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"302173.30","Total Cost":"172034.59","Total Profit":"130138.71"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/20/2016","Order ID":"429929196","Ship Date":"5/24/2016","Units Sold":"4458","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2903094.18","Total Cost":"2340271.68","Total Profit":"562822.50"},{"Region":"Europe","Country":"Russia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"12/29/2016","Order ID":"994935882","Ship Date":"1/3/2017","Units Sold":"2492","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"383917.52","Total Cost":"226597.56","Total Profit":"157319.96"},{"Region":"Asia","Country":"Mongolia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/14/2016","Order ID":"977625977","Ship Date":"3/23/2016","Units Sold":"107","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"11692.96","Total Cost":"3834.88","Total Profit":"7858.08"},{"Region":"Asia","Country":"Vietnam","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/29/2015","Order ID":"993673312","Ship Date":"11/23/2015","Units Sold":"8870","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3742164.30","Total Cost":"3234800.30","Total Profit":"507364.00"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/29/2011","Order ID":"379064214","Ship Date":"8/31/2011","Units Sold":"2379","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1040098.80","Total Cost":"626462.07","Total Profit":"413636.73"},{"Region":"Asia","Country":"Vietnam","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"8/7/2011","Order ID":"340097510","Ship Date":"9/20/2011","Units Sold":"1266","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"534112.74","Total Cost":"461697.54","Total Profit":"72415.20"},{"Region":"Sub-Saharan Africa","Country":"Mali","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/8/2017","Order ID":"803384530","Ship Date":"3/17/2017","Units Sold":"8190","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2090743.20","Total Cost":"1305649.80","Total Profit":"785093.40"},{"Region":"Europe","Country":"Kosovo","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"10/17/2011","Order ID":"865849101","Ship Date":"10/24/2011","Units Sold":"2845","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"26543.85","Total Cost":"19687.40","Total Profit":"6856.45"},{"Region":"Europe","Country":"Slovakia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"8/10/2010","Order ID":"144727551","Ship Date":"9/22/2010","Units Sold":"6953","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2933401.17","Total Cost":"2535689.57","Total Profit":"397711.60"},{"Region":"Asia","Country":"Malaysia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/22/2010","Order ID":"127568709","Ship Date":"9/13/2010","Units Sold":"9271","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4053281.20","Total Cost":"2441332.43","Total Profit":"1611948.77"},{"Region":"Asia","Country":"Cambodia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/19/2010","Order ID":"122233903","Ship Date":"2/22/2010","Units Sold":"583","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"245961.87","Total Cost":"212614.27","Total Profit":"33347.60"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/4/2011","Order ID":"406896960","Ship Date":"11/11/2011","Units Sold":"8708","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5819295.16","Total Cost":"4376118.32","Total Profit":"1443176.84"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"7/6/2012","Order ID":"880044209","Ship Date":"8/10/2012","Units Sold":"3493","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2334267.11","Total Cost":"1755372.22","Total Profit":"578894.89"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"5/31/2013","Order ID":"610474479","Ship Date":"7/17/2013","Units Sold":"1819","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"148666.87","Total Cost":"103082.73","Total Profit":"45584.14"},{"Region":"Asia","Country":"Taiwan","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/15/2016","Order ID":"987299096","Ship Date":"1/19/2017","Units Sold":"2597","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"400093.82","Total Cost":"236145.21","Total Profit":"163948.61"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"4/7/2015","Order ID":"769941890","Ship Date":"5/10/2015","Units Sold":"1770","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"270066.60","Total Cost":"172468.80","Total Profit":"97597.80"},{"Region":"North America","Country":"Canada","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/1/2016","Order ID":"138139188","Ship Date":"10/6/2016","Units Sold":"7310","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1115359.80","Total Cost":"712286.40","Total Profit":"403073.40"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"8/19/2011","Order ID":"241939818","Ship Date":"9/13/2011","Units Sold":"4224","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1078302.72","Total Cost":"673390.08","Total Profit":"404912.64"},{"Region":"Europe","Country":"Sweden","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"5/26/2014","Order ID":"951705110","Ship Date":"7/14/2014","Units Sold":"9546","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1456528.68","Total Cost":"930162.24","Total Profit":"526366.44"},{"Region":"Europe","Country":"Switzerland","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/12/2013","Order ID":"408108890","Ship Date":"11/23/2013","Units Sold":"7344","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3210796.80","Total Cost":"1933895.52","Total Profit":"1276901.28"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/17/2014","Order ID":"872137486","Ship Date":"10/18/2014","Units Sold":"3718","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1625509.60","Total Cost":"979060.94","Total Profit":"646448.66"},{"Region":"Europe","Country":"Montenegro","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"2/28/2012","Order ID":"175089728","Ship Date":"3/15/2012","Units Sold":"1796","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"757714.44","Total Cost":"654983.24","Total Profit":"102731.20"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/24/2016","Order ID":"268576943","Ship Date":"11/26/2016","Units Sold":"6741","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"62893.53","Total Cost":"46647.72","Total Profit":"16245.81"},{"Region":"Asia","Country":"China","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/2/2014","Order ID":"474522960","Ship Date":"5/14/2014","Units Sold":"744","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"81304.32","Total Cost":"26664.96","Total Profit":"54639.36"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"9/30/2013","Order ID":"635164105","Ship Date":"11/12/2013","Units Sold":"8028","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1651359.60","Total Cost":"940159.08","Total Profit":"711200.52"},{"Region":"Europe","Country":"Netherlands","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/15/2014","Order ID":"663049209","Ship Date":"5/12/2014","Units Sold":"9850","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6414418.50","Total Cost":"5170856.00","Total Profit":"1243562.50"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/1/2015","Order ID":"991039597","Ship Date":"1/16/2016","Units Sold":"9495","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6345223.65","Total Cost":"4771617.30","Total Profit":"1573606.35"},{"Region":"Asia","Country":"Tajikistan","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"12/19/2015","Order ID":"322309100","Ship Date":"1/29/2016","Units Sold":"7280","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1110782.40","Total Cost":"709363.20","Total Profit":"401419.20"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/26/2012","Order ID":"580344045","Ship Date":"11/11/2012","Units Sold":"5554","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"453928.42","Total Cost":"314745.18","Total Profit":"139183.24"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"4/20/2017","Order ID":"158943259","Ship Date":"5/5/2017","Units Sold":"3697","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"175422.65","Total Cost":"117527.63","Total Profit":"57895.02"},{"Region":"Europe","Country":"Spain","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"12/31/2010","Order ID":"672218072","Ship Date":"2/13/2011","Units Sold":"3121","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"480821.26","Total Cost":"283792.53","Total Profit":"197028.73"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/22/2010","Order ID":"204592311","Ship Date":"10/8/2010","Units Sold":"2266","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"185200.18","Total Cost":"128414.22","Total Profit":"56785.96"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/22/2011","Order ID":"960802304","Ship Date":"5/22/2011","Units Sold":"1608","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"410490.24","Total Cost":"256347.36","Total Profit":"154142.88"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/4/2012","Order ID":"715896880","Ship Date":"1/13/2013","Units Sold":"8651","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"80713.83","Total Cost":"59864.92","Total Profit":"20848.91"},{"Region":"Asia","Country":"Thailand","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"6/29/2016","Order ID":"465237367","Ship Date":"8/5/2016","Units Sold":"2930","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"239468.90","Total Cost":"166043.10","Total Profit":"73425.80"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/17/2012","Order ID":"374497592","Ship Date":"10/3/2012","Units Sold":"1014","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"9460.62","Total Cost":"7016.88","Total Profit":"2443.74"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/23/2016","Order ID":"229663884","Ship Date":"3/4/2016","Units Sold":"1502","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"122758.46","Total Cost":"85118.34","Total Profit":"37640.12"},{"Region":"Sub-Saharan Africa","Country":"Madagascar","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"8/4/2015","Order ID":"787035071","Ship Date":"8/12/2015","Units Sold":"22","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"14701.94","Total Cost":"11055.88","Total Profit":"3646.06"},{"Region":"Asia","Country":"Malaysia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"7/19/2016","Order ID":"623222482","Ship Date":"8/19/2016","Units Sold":"4237","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1787547.93","Total Cost":"1545191.53","Total Profit":"242356.40"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/24/2013","Order ID":"185149943","Ship Date":"12/3/2013","Units Sold":"8838","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3863973.60","Total Cost":"2327310.54","Total Profit":"1536663.06"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"3/28/2011","Order ID":"440053784","Ship Date":"4/4/2011","Units Sold":"549","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"357514.29","Total Cost":"288203.04","Total Profit":"69311.25"},{"Region":"Europe","Country":"Ireland","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/5/2017","Order ID":"625482833","Ship Date":"2/1/2017","Units Sold":"3125","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"481437.50","Total Cost":"284156.25","Total Profit":"197281.25"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"6/14/2010","Order ID":"499298417","Ship Date":"7/18/2010","Units Sold":"2352","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"362349.12","Total Cost":"213867.36","Total Profit":"148481.76"},{"Region":"Europe","Country":"Portugal","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/28/2013","Order ID":"789674365","Ship Date":"7/30/2013","Units Sold":"1048","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"682468.08","Total Cost":"550158.08","Total Profit":"132310.00"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/7/2011","Order ID":"945097005","Ship Date":"5/14/2011","Units Sold":"4061","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"619627.38","Total Cost":"395703.84","Total Profit":"223923.54"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"6/27/2016","Order ID":"484365165","Ship Date":"7/2/2016","Units Sold":"3271","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2130107.91","Total Cost":"1717144.16","Total Profit":"412963.75"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"8/22/2012","Order ID":"346590173","Ship Date":"8/27/2012","Units Sold":"2589","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1685982.69","Total Cost":"1359121.44","Total Profit":"326861.25"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/10/2010","Order ID":"641195857","Ship Date":"11/22/2010","Units Sold":"2958","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"27598.14","Total Cost":"20469.36","Total Profit":"7128.78"},{"Region":"Asia","Country":"Laos","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/9/2015","Order ID":"197918546","Ship Date":"7/18/2015","Units Sold":"7351","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1512100.70","Total Cost":"860875.61","Total Profit":"651225.09"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/20/2013","Order ID":"616807067","Ship Date":"4/20/2013","Units Sold":"5773","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"53862.09","Total Cost":"39949.16","Total Profit":"13912.93"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"10/31/2014","Order ID":"418222749","Ship Date":"10/31/2014","Units Sold":"260","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"39670.80","Total Cost":"25334.40","Total Profit":"14336.40"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"8/14/2012","Order ID":"892839419","Ship Date":"10/3/2012","Units Sold":"9880","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1507490.40","Total Cost":"962707.20","Total Profit":"544783.20"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/20/2015","Order ID":"251643407","Ship Date":"7/8/2015","Units Sold":"5731","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"53470.23","Total Cost":"39658.52","Total Profit":"13811.71"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"4/26/2014","Order ID":"375933539","Ship Date":"5/16/2014","Units Sold":"5943","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1517129.04","Total Cost":"947433.06","Total Profit":"569695.98"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/24/2016","Order ID":"967321145","Ship Date":"5/24/2016","Units Sold":"678","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"103449.24","Total Cost":"66064.32","Total Profit":"37384.92"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"9/26/2010","Order ID":"897730052","Ship Date":"10/5/2010","Units Sold":"7127","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3006810.03","Total Cost":"2599145.63","Total Profit":"407664.40"},{"Region":"North America","Country":"Greenland","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/26/2010","Order ID":"459396588","Ship Date":"10/1/2010","Units Sold":"4514","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3016570.78","Total Cost":"2268465.56","Total Profit":"748105.22"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/3/2011","Order ID":"914869582","Ship Date":"4/26/2011","Units Sold":"9095","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"431557.75","Total Cost":"289130.05","Total Profit":"142427.70"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/17/2016","Order ID":"447010362","Ship Date":"7/6/2016","Units Sold":"9154","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6117343.58","Total Cost":"4600251.16","Total Profit":"1517092.42"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/29/2011","Order ID":"908992755","Ship Date":"1/29/2012","Units Sold":"11","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"7163.31","Total Cost":"5774.56","Total Profit":"1388.75"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/2/2015","Order ID":"174303090","Ship Date":"7/20/2015","Units Sold":"9013","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3802494.57","Total Cost":"3286950.97","Total Profit":"515543.60"},{"Region":"Asia","Country":"Myanmar","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/21/2010","Order ID":"686740195","Ship Date":"1/6/2011","Units Sold":"540","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"236088.00","Total Cost":"142198.20","Total Profit":"93889.80"},{"Region":"Europe","Country":"Estonia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/25/2014","Order ID":"910415399","Ship Date":"5/12/2014","Units Sold":"1003","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"423155.67","Total Cost":"365784.07","Total Profit":"57371.60"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"9/4/2015","Order ID":"279752528","Ship Date":"9/26/2015","Units Sold":"3845","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"586670.10","Total Cost":"374656.80","Total Profit":"212013.30"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"12/1/2013","Order ID":"549487912","Ship Date":"12/12/2013","Units Sold":"4539","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"215375.55","Total Cost":"144294.81","Total Profit":"71080.74"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"10/5/2012","Order ID":"844670379","Ship Date":"10/11/2012","Units Sold":"5590","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1427015.20","Total Cost":"891157.80","Total Profit":"535857.40"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"12/25/2016","Order ID":"810661256","Ship Date":"2/5/2017","Units Sold":"1535","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1025794.45","Total Cost":"771398.90","Total Profit":"254395.55"},{"Region":"Europe","Country":"Spain","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"7/2/2013","Order ID":"163134372","Ship Date":"8/11/2013","Units Sold":"3941","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"187000.45","Total Cost":"125284.39","Total Profit":"61716.06"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/4/2013","Order ID":"938076055","Ship Date":"2/9/2013","Units Sold":"6406","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"59767.98","Total Cost":"44329.52","Total Profit":"15438.46"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"11/30/2015","Order ID":"741785132","Ship Date":"12/3/2015","Units Sold":"9560","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"781338.80","Total Cost":"541765.20","Total Profit":"239573.60"},{"Region":"Asia","Country":"Singapore","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"2/9/2016","Order ID":"400872933","Ship Date":"3/11/2016","Units Sold":"6064","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"56577.12","Total Cost":"41962.88","Total Profit":"14614.24"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"5/3/2012","Order ID":"812263286","Ship Date":"6/15/2012","Units Sold":"5611","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"856126.38","Total Cost":"546735.84","Total Profit":"309390.54"},{"Region":"Europe","Country":"Monaco","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"12/27/2011","Order ID":"693192517","Ship Date":"1/24/2012","Units Sold":"9925","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6632579.75","Total Cost":"4987709.50","Total Profit":"1644870.25"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"2/23/2012","Order ID":"631209456","Ship Date":"3/8/2012","Units Sold":"7760","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"72400.80","Total Cost":"53699.20","Total Profit":"18701.60"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/21/2010","Order ID":"834175431","Ship Date":"2/1/2011","Units Sold":"9902","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4177554.78","Total Cost":"3611160.38","Total Profit":"566394.40"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/21/2011","Order ID":"680264270","Ship Date":"7/30/2011","Units Sold":"4169","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"197819.05","Total Cost":"132532.51","Total Profit":"65286.54"},{"Region":"Asia","Country":"Singapore","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"2/19/2010","Order ID":"967962300","Ship Date":"4/7/2010","Units Sold":"410","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"266996.10","Total Cost":"215233.60","Total Profit":"51762.50"},{"Region":"Europe","Country":"Greece","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/23/2015","Order ID":"766068351","Ship Date":"1/9/2016","Units Sold":"5504","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1132172.80","Total Cost":"644573.44","Total Profit":"487599.36"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"1/6/2016","Order ID":"563693749","Ship Date":"2/7/2016","Units Sold":"8362","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"913799.36","Total Cost":"299694.08","Total Profit":"614105.28"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/11/2010","Order ID":"920262324","Ship Date":"4/15/2010","Units Sold":"4927","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"759053.62","Total Cost":"448012.11","Total Profit":"311041.51"},{"Region":"Europe","Country":"Greece","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"4/28/2014","Order ID":"215510404","Ship Date":"6/16/2014","Units Sold":"3172","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2119752.44","Total Cost":"1594056.88","Total Profit":"525695.56"},{"Region":"Europe","Country":"Denmark","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/21/2011","Order ID":"499486815","Ship Date":"4/29/2011","Units Sold":"8103","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1248348.18","Total Cost":"736805.79","Total Profit":"511542.39"},{"Region":"Asia","Country":"Thailand","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"5/19/2015","Order ID":"742552888","Ship Date":"5/29/2015","Units Sold":"6756","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1389709.20","Total Cost":"791195.16","Total Profit":"598514.04"},{"Region":"Asia","Country":"Thailand","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"5/12/2015","Order ID":"885382449","Ship Date":"6/20/2015","Units Sold":"3197","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"492529.82","Total Cost":"290703.21","Total Profit":"201826.61"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"4/5/2016","Order ID":"488961827","Ship Date":"5/18/2016","Units Sold":"3525","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"288098.25","Total Cost":"199761.75","Total Profit":"88336.50"},{"Region":"Europe","Country":"Andorra","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/22/2012","Order ID":"984589850","Ship Date":"10/29/2012","Units Sold":"871","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"134186.26","Total Cost":"79200.03","Total Profit":"54986.23"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"12/6/2015","Order ID":"723877847","Ship Date":"1/9/2016","Units Sold":"396","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"43274.88","Total Cost":"14192.64","Total Profit":"29082.24"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/16/2011","Order ID":"828749644","Ship Date":"2/25/2011","Units Sold":"4291","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1876025.20","Total Cost":"1129949.03","Total Profit":"746076.17"},{"Region":"Europe","Country":"Andorra","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/31/2015","Order ID":"241441571","Ship Date":"5/5/2015","Units Sold":"6781","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"554211.13","Total Cost":"384279.27","Total Profit":"169931.86"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"2/15/2012","Order ID":"674502456","Ship Date":"2/16/2012","Units Sold":"9120","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"85089.60","Total Cost":"63110.40","Total Profit":"21979.20"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/15/2016","Order ID":"760793626","Ship Date":"12/25/2016","Units Sold":"4595","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1173011.60","Total Cost":"732534.90","Total Profit":"440476.70"},{"Region":"Europe","Country":"Iceland","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"12/4/2011","Order ID":"103488910","Ship Date":"12/7/2011","Units Sold":"3523","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"167166.35","Total Cost":"111996.17","Total Profit":"55170.18"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"7/25/2010","Order ID":"626074635","Ship Date":"8/29/2010","Units Sold":"8252","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5514564.04","Total Cost":"4146960.08","Total Profit":"1367603.96"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"2/12/2016","Order ID":"722349631","Ship Date":"4/1/2016","Units Sold":"8163","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3568863.60","Total Cost":"2149562.79","Total Profit":"1419300.81"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"3/5/2010","Order ID":"206425225","Ship Date":"4/23/2010","Units Sold":"4666","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1191136.48","Total Cost":"743853.72","Total Profit":"447282.76"},{"Region":"Europe","Country":"Vatican City","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/15/2017","Order ID":"762725245","Ship Date":"2/14/2017","Units Sold":"6204","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"946606.32","Total Cost":"604517.76","Total Profit":"342088.56"},{"Region":"Europe","Country":"Moldova ","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"8/25/2016","Order ID":"995986020","Ship Date":"8/25/2016","Units Sold":"3251","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1421337.20","Total Cost":"856085.83","Total Profit":"565251.37"},{"Region":"Asia","Country":"Bhutan","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"7/2/2016","Order ID":"481256377","Ship Date":"7/7/2016","Units Sold":"3311","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1396877.79","Total Cost":"1207488.59","Total Profit":"189389.20"},{"Region":"Europe","Country":"Sweden","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/8/2010","Order ID":"213897645","Ship Date":"1/12/2010","Units Sold":"5921","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1217949.70","Total Cost":"693408.31","Total Profit":"524541.39"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/16/2010","Order ID":"359583652","Ship Date":"10/1/2010","Units Sold":"7648","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"71355.84","Total Cost":"52924.16","Total Profit":"18431.68"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"1/28/2010","Order ID":"704300725","Ship Date":"3/7/2010","Units Sold":"7090","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"66149.70","Total Cost":"49062.80","Total Profit":"17086.90"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"7/27/2012","Order ID":"204347693","Ship Date":"8/28/2012","Units Sold":"9878","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1521804.68","Total Cost":"898206.54","Total Profit":"623598.14"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/14/2015","Order ID":"136335885","Ship Date":"11/21/2015","Units Sold":"3673","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"565862.38","Total Cost":"333985.89","Total Profit":"231876.49"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"9/5/2014","Order ID":"947189128","Ship Date":"9/13/2014","Units Sold":"3166","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"487753.96","Total Cost":"287884.38","Total Profit":"199869.58"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/8/2012","Order ID":"904143750","Ship Date":"11/14/2012","Units Sold":"5083","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"47424.39","Total Cost":"35174.36","Total Profit":"12250.03"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/9/2011","Order ID":"144748580","Ship Date":"4/12/2011","Units Sold":"3176","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"150701.20","Total Cost":"100965.04","Total Profit":"49736.16"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"8/12/2011","Order ID":"226864945","Ship Date":"8/18/2011","Units Sold":"3234","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"825575.52","Total Cost":"515564.28","Total Profit":"310011.24"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"5/9/2013","Order ID":"978666675","Ship Date":"6/5/2013","Units Sold":"8072","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"75311.76","Total Cost":"55858.24","Total Profit":"19453.52"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/12/2016","Order ID":"948640096","Ship Date":"9/25/2016","Units Sold":"2540","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"23698.20","Total Cost":"17576.80","Total Profit":"6121.40"},{"Region":"Asia","Country":"Taiwan","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"8/20/2011","Order ID":"555584037","Ship Date":"9/9/2011","Units Sold":"8518","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3593659.02","Total Cost":"3106429.42","Total Profit":"487229.60"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"12/8/2011","Order ID":"738609826","Ship Date":"12/24/2011","Units Sold":"9916","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1527658.96","Total Cost":"901661.88","Total Profit":"625997.08"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/5/2013","Order ID":"707141292","Ship Date":"7/13/2013","Units Sold":"7677","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1182718.62","Total Cost":"698069.61","Total Profit":"484649.01"},{"Region":"Europe","Country":"Moldova ","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"4/29/2013","Order ID":"190914762","Ship Date":"5/15/2013","Units Sold":"4775","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2014524.75","Total Cost":"1741394.75","Total Profit":"273130.00"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/18/2013","Order ID":"789979064","Ship Date":"5/6/2013","Units Sold":"1215","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"11335.95","Total Cost":"8407.80","Total Profit":"2928.15"},{"Region":"Asia","Country":"Mongolia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/18/2016","Order ID":"124695527","Ship Date":"2/13/2016","Units Sold":"9032","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"738185.36","Total Cost":"511843.44","Total Profit":"226341.92"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/8/2014","Order ID":"385737979","Ship Date":"6/18/2014","Units Sold":"7295","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4875029.65","Total Cost":"3666029.30","Total Profit":"1209000.35"},{"Region":"Europe","Country":"Armenia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/5/2017","Order ID":"684092748","Ship Date":"3/28/2017","Units Sold":"7101","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"66252.33","Total Cost":"49138.92","Total Profit":"17113.41"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/15/2015","Order ID":"201058661","Ship Date":"4/10/2015","Units Sold":"6581","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2776458.09","Total Cost":"2400024.89","Total Profit":"376433.20"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"9/1/2015","Order ID":"438247048","Ship Date":"10/16/2015","Units Sold":"5895","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"279717.75","Total Cost":"187402.05","Total Profit":"92315.70"},{"Region":"Europe","Country":"Norway","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"6/4/2015","Order ID":"267581737","Ship Date":"7/15/2015","Units Sold":"2237","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"943767.93","Total Cost":"815811.53","Total Profit":"127956.40"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"5/21/2012","Order ID":"881299054","Ship Date":"7/2/2012","Units Sold":"4829","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"527713.12","Total Cost":"173071.36","Total Profit":"354641.76"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"11/24/2016","Order ID":"841947829","Ship Date":"12/5/2016","Units Sold":"9927","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1529353.62","Total Cost":"902662.11","Total Profit":"626691.51"},{"Region":"Europe","Country":"Montenegro","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"1/30/2010","Order ID":"132389390","Ship Date":"2/28/2010","Units Sold":"5817","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"475423.41","Total Cost":"329649.39","Total Profit":"145774.02"},{"Region":"Europe","Country":"Latvia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/5/2015","Order ID":"605797564","Ship Date":"10/13/2015","Units Sold":"7816","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3417155.20","Total Cost":"2058187.28","Total Profit":"1358967.92"},{"Region":"Europe","Country":"France","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/25/2013","Order ID":"135658681","Ship Date":"6/24/2013","Units Sold":"3273","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1430955.60","Total Cost":"861879.09","Total Profit":"569076.51"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"1/8/2010","Order ID":"265771567","Ship Date":"1/20/2010","Units Sold":"6568","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1676679.04","Total Cost":"1047070.56","Total Profit":"629608.48"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/22/2013","Order ID":"360247552","Ship Date":"10/28/2013","Units Sold":"4111","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"449250.08","Total Cost":"147338.24","Total Profit":"301911.84"},{"Region":"Asia","Country":"Mongolia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/27/2014","Order ID":"753510463","Ship Date":"10/16/2014","Units Sold":"9345","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1021221.60","Total Cost":"334924.80","Total Profit":"686296.80"},{"Region":"Europe","Country":"Iceland","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/5/2011","Order ID":"500296628","Ship Date":"1/21/2012","Units Sold":"7745","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5175751.15","Total Cost":"3892172.30","Total Profit":"1283578.85"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/28/2016","Order ID":"525654876","Ship Date":"9/3/2016","Units Sold":"1814","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"198233.92","Total Cost":"65013.76","Total Profit":"133220.16"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/30/2010","Order ID":"474946534","Ship Date":"10/25/2010","Units Sold":"6089","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"665405.92","Total Cost":"218229.76","Total Profit":"447176.16"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"8/26/2011","Order ID":"963845431","Ship Date":"9/28/2011","Units Sold":"2137","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"901578.93","Total Cost":"779342.53","Total Profit":"122236.40"},{"Region":"Europe","Country":"Albania","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/1/2014","Order ID":"428337895","Ship Date":"12/19/2014","Units Sold":"3557","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"290713.61","Total Cost":"201575.19","Total Profit":"89138.42"},{"Region":"Europe","Country":"Georgia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"2/17/2013","Order ID":"974722754","Ship Date":"3/31/2013","Units Sold":"978","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"149223.24","Total Cost":"95296.32","Total Profit":"53926.92"},{"Region":"Europe","Country":"Portugal","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/31/2015","Order ID":"729611337","Ship Date":"8/2/2015","Units Sold":"7063","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4719991.01","Total Cost":"3549440.02","Total Profit":"1170550.99"},{"Region":"Europe","Country":"Belarus","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/9/2013","Order ID":"589927470","Ship Date":"5/15/2013","Units Sold":"1503","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1004409.81","Total Cost":"755317.62","Total Profit":"249092.19"},{"Region":"Europe","Country":"Norway","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"11/3/2013","Order ID":"172907483","Ship Date":"12/15/2013","Units Sold":"6021","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1238519.70","Total Cost":"705119.31","Total Profit":"533400.39"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/15/2014","Order ID":"966100203","Ship Date":"3/22/2014","Units Sold":"9374","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6104442.54","Total Cost":"4920975.04","Total Profit":"1183467.50"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/14/2012","Order ID":"477366960","Ship Date":"6/11/2012","Units Sold":"2346","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"256370.88","Total Cost":"84080.64","Total Profit":"172290.24"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"7/28/2011","Order ID":"784881579","Ship Date":"9/14/2011","Units Sold":"2756","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1794734.76","Total Cost":"1446789.76","Total Profit":"347945.00"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"10/22/2015","Order ID":"887130391","Ship Date":"11/28/2015","Units Sold":"452","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"69635.12","Total Cost":"41100.36","Total Profit":"28534.76"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"4/12/2011","Order ID":"752912223","Ship Date":"5/7/2011","Units Sold":"2313","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"252764.64","Total Cost":"82897.92","Total Profit":"169866.72"},{"Region":"North America","Country":"Canada","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/19/2015","Order ID":"871338403","Ship Date":"7/26/2015","Units Sold":"7251","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"67651.83","Total Cost":"50176.92","Total Profit":"17474.91"},{"Region":"Europe","Country":"Estonia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/27/2013","Order ID":"901832759","Ship Date":"3/13/2013","Units Sold":"1209","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"248691.30","Total Cost":"141585.99","Total Profit":"107105.31"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/13/2012","Order ID":"124131619","Ship Date":"7/24/2012","Units Sold":"2160","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1443463.20","Total Cost":"1085486.40","Total Profit":"357976.80"},{"Region":"Europe","Country":"Macedonia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"6/13/2011","Order ID":"588283812","Ship Date":"7/3/2011","Units Sold":"5108","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1303970.24","Total Cost":"814317.36","Total Profit":"489652.88"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"11/1/2016","Order ID":"364650666","Ship Date":"12/21/2016","Units Sold":"7090","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4617078.90","Total Cost":"3721966.40","Total Profit":"895112.50"},{"Region":"Sub-Saharan Africa","Country":"Mali","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/31/2017","Order ID":"293906009","Ship Date":"6/14/2017","Units Sold":"2174","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"237574.72","Total Cost":"77916.16","Total Profit":"159658.56"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/19/2010","Order ID":"837036168","Ship Date":"8/30/2010","Units Sold":"6458","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"60253.14","Total Cost":"44689.36","Total Profit":"15563.78"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"12/5/2013","Order ID":"725339972","Ship Date":"1/1/2014","Units Sold":"3071","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1999865.91","Total Cost":"1612152.16","Total Profit":"387713.75"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/10/2015","Order ID":"110428750","Ship Date":"7/22/2015","Units Sold":"7176","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4673082.96","Total Cost":"3767112.96","Total Profit":"905970.00"},{"Region":"Europe","Country":"Poland","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/19/2016","Order ID":"114226329","Ship Date":"1/23/2016","Units Sold":"964","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"105345.92","Total Cost":"34549.76","Total Profit":"70796.16"},{"Region":"Asia","Country":"South Korea","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/20/2017","Order ID":"578969037","Ship Date":"3/25/2017","Units Sold":"8659","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"80788.47","Total Cost":"59920.28","Total Profit":"20868.19"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"6/8/2010","Order ID":"517205703","Ship Date":"6/12/2010","Units Sold":"1516","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"14144.28","Total Cost":"10490.72","Total Profit":"3653.56"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"11/24/2010","Order ID":"361797654","Ship Date":"11/27/2010","Units Sold":"2821","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1190151.69","Total Cost":"1028790.49","Total Profit":"161361.20"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"12/6/2015","Order ID":"615918719","Ship Date":"1/20/2016","Units Sold":"2891","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1263945.20","Total Cost":"761287.03","Total Profit":"502658.17"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/8/2016","Order ID":"503055226","Ship Date":"6/9/2016","Units Sold":"4075","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"193358.75","Total Cost":"129544.25","Total Profit":"63814.50"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"5/28/2015","Order ID":"217006003","Ship Date":"6/6/2015","Units Sold":"5754","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3845225.58","Total Cost":"2891615.16","Total Profit":"953610.42"},{"Region":"Europe","Country":"Netherlands","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"5/25/2017","Order ID":"471882379","Ship Date":"6/25/2017","Units Sold":"9337","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1424639.46","Total Cost":"909797.28","Total Profit":"514842.18"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"5/5/2016","Order ID":"252108180","Ship Date":"6/16/2016","Units Sold":"3268","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"503468.08","Total Cost":"297159.24","Total Profit":"206308.84"},{"Region":"Asia","Country":"Myanmar","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"11/23/2014","Order ID":"862419736","Ship Date":"1/12/2015","Units Sold":"8020","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3383557.80","Total Cost":"2924813.80","Total Profit":"458744.00"},{"Region":"Europe","Country":"Georgia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"12/23/2012","Order ID":"977865874","Ship Date":"2/11/2013","Units Sold":"1097","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"167380.26","Total Cost":"106891.68","Total Profit":"60488.58"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/5/2011","Order ID":"693807923","Ship Date":"8/6/2011","Units Sold":"2037","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"222603.36","Total Cost":"73006.08","Total Profit":"149597.28"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"7/31/2016","Order ID":"175919711","Ship Date":"8/2/2016","Units Sold":"7407","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3124939.23","Total Cost":"2701258.83","Total Profit":"423680.40"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/20/2012","Order ID":"110187566","Ship Date":"3/4/2012","Units Sold":"5804","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2537508.80","Total Cost":"1528367.32","Total Profit":"1009141.48"},{"Region":"Asia","Country":"Laos","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/9/2010","Order ID":"352910315","Ship Date":"2/12/2010","Units Sold":"2860","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1250392.00","Total Cost":"753123.80","Total Profit":"497268.20"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/30/2015","Order ID":"380699288","Ship Date":"7/24/2015","Units Sold":"6234","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"960410.04","Total Cost":"566857.62","Total Profit":"393552.42"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"12/8/2015","Order ID":"640478312","Ship Date":"1/13/2016","Units Sold":"620","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"67753.60","Total Cost":"22220.80","Total Profit":"45532.80"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/11/2014","Order ID":"299483716","Ship Date":"1/14/2015","Units Sold":"2742","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"25582.86","Total Cost":"18974.64","Total Profit":"6608.22"},{"Region":"Europe","Country":"Austria","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"5/26/2013","Order ID":"395264327","Ship Date":"6/13/2013","Units Sold":"6353","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4245519.31","Total Cost":"3192636.62","Total Profit":"1052882.69"},{"Region":"Europe","Country":"France","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/30/2013","Order ID":"685681474","Ship Date":"4/5/2013","Units Sold":"7240","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1104679.20","Total Cost":"705465.60","Total Profit":"399213.60"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/10/2013","Order ID":"998908984","Ship Date":"9/10/2013","Units Sold":"8221","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1266527.26","Total Cost":"747535.53","Total Profit":"518991.73"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/12/2015","Order ID":"783433187","Ship Date":"1/29/2015","Units Sold":"4144","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"632291.52","Total Cost":"403791.36","Total Profit":"228500.16"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"10/29/2014","Order ID":"458052909","Ship Date":"11/11/2014","Units Sold":"6890","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"752939.20","Total Cost":"246937.60","Total Profit":"506001.60"},{"Region":"Asia","Country":"North Korea","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/14/2011","Order ID":"961879479","Ship Date":"9/19/2011","Units Sold":"368","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"155255.52","Total Cost":"134205.92","Total Profit":"21049.60"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/18/2016","Order ID":"604336726","Ship Date":"9/19/2016","Units Sold":"5522","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"451313.06","Total Cost":"312931.74","Total Profit":"138381.32"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/9/2011","Order ID":"915160977","Ship Date":"10/1/2011","Units Sold":"5325","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2328090.00","Total Cost":"1402232.25","Total Profit":"925857.75"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"8/4/2013","Order ID":"794401061","Ship Date":"8/28/2013","Units Sold":"9782","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4126927.98","Total Cost":"3567397.58","Total Profit":"559530.40"},{"Region":"Europe","Country":"Belarus","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/2/2010","Order ID":"562418305","Ship Date":"4/1/2010","Units Sold":"930","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"76008.90","Total Cost":"52703.10","Total Profit":"23305.80"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/22/2016","Order ID":"609886538","Ship Date":"11/11/2016","Units Sold":"7835","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5235895.45","Total Cost":"3937400.90","Total Profit":"1298494.55"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/12/2011","Order ID":"947792088","Ship Date":"10/17/2011","Units Sold":"1596","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"673336.44","Total Cost":"582045.24","Total Profit":"91291.20"},{"Region":"Asia","Country":"India","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/23/2016","Order ID":"757433784","Ship Date":"8/2/2016","Units Sold":"343","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"70555.10","Total Cost":"40168.73","Total Profit":"30386.37"},{"Region":"Europe","Country":"Serbia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/30/2015","Order ID":"640422952","Ship Date":"8/7/2015","Units Sold":"4238","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"39540.54","Total Cost":"29326.96","Total Profit":"10213.58"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"1/3/2013","Order ID":"368683421","Ship Date":"1/3/2013","Units Sold":"472","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"315423.44","Total Cost":"237198.88","Total Profit":"78224.56"},{"Region":"Asia","Country":"Nepal","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"8/5/2014","Order ID":"234451520","Ship Date":"8/31/2014","Units Sold":"8270","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2111165.60","Total Cost":"1318403.40","Total Profit":"792762.20"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/13/2015","Order ID":"600276076","Ship Date":"7/12/2015","Units Sold":"3885","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"184343.25","Total Cost":"123504.15","Total Profit":"60839.10"},{"Region":"Asia","Country":"Indonesia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/31/2011","Order ID":"549018418","Ship Date":"12/6/2011","Units Sold":"5605","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"612514.40","Total Cost":"200883.20","Total Profit":"411631.20"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"6/6/2012","Order ID":"133852374","Ship Date":"6/19/2012","Units Sold":"8747","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2232934.16","Total Cost":"1394446.74","Total Profit":"838487.42"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"11/7/2011","Order ID":"828264272","Ship Date":"12/19/2011","Units Sold":"659","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"168229.52","Total Cost":"105057.78","Total Profit":"63171.74"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"2/12/2017","Order ID":"576052939","Ship Date":"3/22/2017","Units Sold":"5721","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1176809.70","Total Cost":"669986.31","Total Profit":"506823.39"},{"Region":"Europe","Country":"Finland","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"8/12/2013","Order ID":"541329705","Ship Date":"9/13/2013","Units Sold":"344","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"3209.52","Total Cost":"2380.48","Total Profit":"829.04"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"4/12/2014","Order ID":"158518397","Ship Date":"5/28/2014","Units Sold":"7971","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"871070.88","Total Cost":"285680.64","Total Profit":"585390.24"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"5/29/2010","Order ID":"282355344","Ship Date":"6/7/2010","Units Sold":"4076","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"333131.48","Total Cost":"230986.92","Total Profit":"102144.56"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/15/2013","Order ID":"937889373","Ship Date":"5/30/2013","Units Sold":"1162","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"126983.36","Total Cost":"41646.08","Total Profit":"85337.28"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/22/2012","Order ID":"870481812","Ship Date":"8/27/2012","Units Sold":"3767","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"961639.76","Total Cost":"600535.14","Total Profit":"361104.62"},{"Region":"Europe","Country":"Kosovo","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"4/10/2010","Order ID":"695806491","Ship Date":"4/14/2010","Units Sold":"3458","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"32263.14","Total Cost":"23929.36","Total Profit":"8333.78"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"2/17/2017","Order ID":"649849736","Ship Date":"3/26/2017","Units Sold":"3833","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"788448.10","Total Cost":"448882.63","Total Profit":"339565.47"},{"Region":"Asia","Country":"North Korea","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/27/2010","Order ID":"138910377","Ship Date":"11/3/2010","Units Sold":"5522","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"51520.26","Total Cost":"38212.24","Total Profit":"13308.02"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"7/11/2015","Order ID":"889599740","Ship Date":"7/13/2015","Units Sold":"1187","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"11074.71","Total Cost":"8214.04","Total Profit":"2860.67"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/5/2014","Order ID":"198841655","Ship Date":"12/24/2014","Units Sold":"519","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"42417.87","Total Cost":"29411.73","Total Profit":"13006.14"},{"Region":"Europe","Country":"Vatican City","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"3/2/2016","Order ID":"383872449","Ship Date":"4/4/2016","Units Sold":"5243","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3503739.61","Total Cost":"2634817.22","Total Profit":"868922.39"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/30/2016","Order ID":"232240951","Ship Date":"9/2/2016","Units Sold":"4113","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"627561.54","Total Cost":"400770.72","Total Profit":"226790.82"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/27/2014","Order ID":"851808488","Ship Date":"5/8/2014","Units Sold":"7915","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3460438.00","Total Cost":"2084256.95","Total Profit":"1376181.05"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"2/23/2012","Order ID":"720748889","Ship Date":"3/29/2012","Units Sold":"4468","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"919067.60","Total Cost":"523247.48","Total Profit":"395820.12"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/18/2014","Order ID":"637548482","Ship Date":"5/22/2014","Units Sold":"3618","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1526398.02","Total Cost":"1319448.42","Total Profit":"206949.60"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"9/15/2014","Order ID":"571006095","Ship Date":"10/18/2014","Units Sold":"2247","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"183647.31","Total Cost":"127337.49","Total Profit":"56309.82"},{"Region":"Europe","Country":"Denmark","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"7/21/2015","Order ID":"110233056","Ship Date":"7/31/2015","Units Sold":"9266","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2365424.48","Total Cost":"1477185.72","Total Profit":"888238.76"},{"Region":"Europe","Country":"Switzerland","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"8/8/2016","Order ID":"714653193","Ship Date":"8/30/2016","Units Sold":"616","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"29229.20","Total Cost":"19582.64","Total Profit":"9646.56"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"1/18/2011","Order ID":"764002835","Ship Date":"1/28/2011","Units Sold":"4272","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"202706.40","Total Cost":"135806.88","Total Profit":"66899.52"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/25/2012","Order ID":"508330810","Ship Date":"2/4/2012","Units Sold":"5238","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"572408.64","Total Cost":"187729.92","Total Profit":"384678.72"},{"Region":"North America","Country":"United States of America","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"3/11/2011","Order ID":"717998445","Ship Date":"3/28/2011","Units Sold":"550","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"140404.00","Total Cost":"87681.00","Total Profit":"52723.00"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"5/14/2012","Order ID":"433679568","Ship Date":"5/31/2012","Units Sold":"4276","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"658760.56","Total Cost":"388816.68","Total Profit":"269943.88"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"1/17/2013","Order ID":"116360509","Ship Date":"1/24/2013","Units Sold":"2515","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"642029.20","Total Cost":"400941.30","Total Profit":"241087.90"},{"Region":"Asia","Country":"Vietnam","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/11/2015","Order ID":"297340095","Ship Date":"8/5/2015","Units Sold":"8396","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5610794.92","Total Cost":"4219325.84","Total Profit":"1391469.08"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"8/2/2015","Order ID":"228229653","Ship Date":"8/21/2015","Units Sold":"7081","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1090898.86","Total Cost":"643875.33","Total Profit":"447023.53"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/15/2013","Order ID":"130953013","Ship Date":"12/14/2013","Units Sold":"762","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"321480.18","Total Cost":"277893.78","Total Profit":"43586.40"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"2/3/2012","Order ID":"747746503","Ship Date":"2/7/2012","Units Sold":"3662","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"753273.40","Total Cost":"428856.82","Total Profit":"324416.58"},{"Region":"Asia","Country":"Philippines","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/16/2016","Order ID":"191158950","Ship Date":"11/20/2016","Units Sold":"7036","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4581913.56","Total Cost":"3693618.56","Total Profit":"888295.00"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"11/19/2012","Order ID":"694051682","Ship Date":"12/14/2012","Units Sold":"4171","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"38915.43","Total Cost":"28863.32","Total Profit":"10052.11"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/1/2012","Order ID":"959598529","Ship Date":"11/15/2012","Units Sold":"5384","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3597965.68","Total Cost":"2705675.36","Total Profit":"892290.32"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"1/15/2015","Order ID":"211285817","Ship Date":"1/22/2015","Units Sold":"3023","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"465723.38","Total Cost":"274881.39","Total Profit":"190841.99"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"3/2/2015","Order ID":"442912375","Ship Date":"4/19/2015","Units Sold":"6469","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"60355.77","Total Cost":"44765.48","Total Profit":"15590.29"},{"Region":"Asia","Country":"Brunei","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"7/9/2017","Order ID":"568589532","Ship Date":"8/19/2017","Units Sold":"7133","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"338460.85","Total Cost":"226758.07","Total Profit":"111702.78"},{"Region":"Europe","Country":"France","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"2/13/2016","Order ID":"472741115","Ship Date":"3/15/2016","Units Sold":"3456","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"882247.68","Total Cost":"550955.52","Total Profit":"331292.16"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/12/2013","Order ID":"560103452","Ship Date":"9/7/2013","Units Sold":"5913","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1509470.64","Total Cost":"942650.46","Total Profit":"566820.18"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"7/2/2017","Order ID":"405725371","Ship Date":"7/23/2017","Units Sold":"2008","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1307629.68","Total Cost":"1054119.68","Total Profit":"253510.00"},{"Region":"Europe","Country":"Portugal","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"8/21/2013","Order ID":"104968202","Ship Date":"9/16/2013","Units Sold":"1278","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"104450.94","Total Cost":"72424.26","Total Profit":"32026.68"},{"Region":"Europe","Country":"Vatican City","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/10/2015","Order ID":"723505771","Ship Date":"7/18/2015","Units Sold":"290","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"44248.20","Total Cost":"28257.60","Total Profit":"15990.60"},{"Region":"Europe","Country":"Spain","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"9/3/2014","Order ID":"247324407","Ship Date":"9/20/2014","Units Sold":"7643","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"71309.19","Total Cost":"52889.56","Total Profit":"18419.63"},{"Region":"Europe","Country":"Belgium","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/10/2015","Order ID":"332722938","Ship Date":"7/23/2015","Units Sold":"8966","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3919935.20","Total Cost":"2361016.78","Total Profit":"1558918.42"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"9/4/2015","Order ID":"456312692","Ship Date":"10/12/2015","Units Sold":"1921","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"810450.69","Total Cost":"700569.49","Total Profit":"109881.20"},{"Region":"Asia","Country":"Bhutan","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"2/2/2010","Order ID":"165017497","Ship Date":"3/16/2010","Units Sold":"1199","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"184717.94","Total Cost":"109025.07","Total Profit":"75692.87"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"7/5/2017","Order ID":"426073682","Ship Date":"8/13/2017","Units Sold":"3526","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2296166.46","Total Cost":"1851008.96","Total Profit":"445157.50"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"2/2/2016","Order ID":"477030074","Ship Date":"3/5/2016","Units Sold":"2654","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1773588.58","Total Cost":"1333741.16","Total Profit":"439847.42"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/7/2015","Order ID":"975748002","Ship Date":"6/11/2015","Units Sold":"4372","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"667079.76","Total Cost":"426007.68","Total Profit":"241072.08"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"7/3/2014","Order ID":"850401294","Ship Date":"7/4/2014","Units Sold":"1495","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"999063.65","Total Cost":"751297.30","Total Profit":"247766.35"},{"Region":"Europe","Country":"Germany","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/2/2013","Order ID":"449476277","Ship Date":"12/22/2013","Units Sold":"8874","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3743851.86","Total Cost":"3236259.06","Total Profit":"507592.80"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"12/2/2010","Order ID":"191771781","Ship Date":"1/5/2011","Units Sold":"8386","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3666359.20","Total Cost":"2208285.38","Total Profit":"1458073.82"},{"Region":"Europe","Country":"Ireland","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/12/2011","Order ID":"116399133","Ship Date":"1/4/2012","Units Sold":"3945","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"601928.10","Total Cost":"384400.80","Total Profit":"217527.30"},{"Region":"Europe","Country":"Spain","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"10/28/2012","Order ID":"332782161","Ship Date":"11/21/2012","Units Sold":"6491","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1335198.70","Total Cost":"760161.01","Total Profit":"575037.69"},{"Region":"Europe","Country":"France","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"7/11/2010","Order ID":"570657193","Ship Date":"7/17/2010","Units Sold":"9000","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"427050.00","Total Cost":"286110.00","Total Profit":"140940.00"},{"Region":"North America","Country":"Greenland","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/13/2014","Order ID":"630073058","Ship Date":"7/11/2014","Units Sold":"1474","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"224902.92","Total Cost":"143626.56","Total Profit":"81276.36"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"5/1/2012","Order ID":"831391084","Ship Date":"5/12/2012","Units Sold":"5952","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"650434.56","Total Cost":"213319.68","Total Profit":"437114.88"},{"Region":"Europe","Country":"Cyprus","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"12/1/2011","Order ID":"665285098","Ship Date":"12/18/2011","Units Sold":"1499","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"228717.42","Total Cost":"146062.56","Total Profit":"82654.86"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/7/2014","Order ID":"142741429","Ship Date":"6/23/2014","Units Sold":"9216","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1406177.28","Total Cost":"898007.04","Total Profit":"508170.24"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"10/26/2010","Order ID":"245058906","Ship Date":"11/17/2010","Units Sold":"7231","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"343110.95","Total Cost":"229873.49","Total Profit":"113237.46"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"10/18/2015","Order ID":"673848855","Ship Date":"10/26/2015","Units Sold":"5705","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"623442.40","Total Cost":"204467.20","Total Profit":"418975.20"},{"Region":"Asia","Country":"Laos","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"1/26/2011","Order ID":"301035106","Ship Date":"3/6/2011","Units Sold":"1832","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"376842.40","Total Cost":"214545.52","Total Profit":"162296.88"},{"Region":"Europe","Country":"Romania","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/11/2017","Order ID":"318853986","Ship Date":"5/20/2017","Units Sold":"4835","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2039838.15","Total Cost":"1763276.15","Total Profit":"276562.00"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"6/21/2014","Order ID":"189854323","Ship Date":"7/14/2014","Units Sold":"968","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"646885.36","Total Cost":"486458.72","Total Profit":"160426.64"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/20/2014","Order ID":"796897447","Ship Date":"2/10/2014","Units Sold":"8518","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2174475.04","Total Cost":"1357939.56","Total Profit":"816535.48"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/22/2017","Order ID":"393157184","Ship Date":"4/10/2017","Units Sold":"2802","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"576371.40","Total Cost":"328142.22","Total Profit":"248229.18"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"10/10/2010","Order ID":"452119863","Ship Date":"11/10/2010","Units Sold":"1169","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"298422.32","Total Cost":"186361.98","Total Profit":"112060.34"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/11/2017","Order ID":"717584311","Ship Date":"3/24/2017","Units Sold":"7999","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"74630.67","Total Cost":"55353.08","Total Profit":"19277.59"},{"Region":"Europe","Country":"Montenegro","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"12/21/2013","Order ID":"553661859","Ship Date":"12/27/2013","Units Sold":"9702","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1480331.16","Total Cost":"945362.88","Total Profit":"534968.28"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/16/2014","Order ID":"294776332","Ship Date":"6/5/2014","Units Sold":"9722","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1999815.40","Total Cost":"1138543.42","Total Profit":"861271.98"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/7/2016","Order ID":"795664060","Ship Date":"12/7/2016","Units Sold":"3532","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"385976.96","Total Cost":"126586.88","Total Profit":"259390.08"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"6/23/2010","Order ID":"281373870","Ship Date":"7/23/2010","Units Sold":"3636","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"172528.20","Total Cost":"115588.44","Total Profit":"56939.76"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/3/2014","Order ID":"197267091","Ship Date":"11/27/2014","Units Sold":"4571","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1928459.19","Total Cost":"1666997.99","Total Profit":"261461.20"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"12/9/2016","Order ID":"259017550","Ship Date":"12/12/2016","Units Sold":"7904","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"73744.32","Total Cost":"54695.68","Total Profit":"19048.64"},{"Region":"Asia","Country":"Singapore","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/30/2012","Order ID":"702611577","Ship Date":"5/4/2012","Units Sold":"7234","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"790531.52","Total Cost":"259266.56","Total Profit":"531264.96"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"7/22/2016","Order ID":"934347999","Ship Date":"7/23/2016","Units Sold":"3191","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"151412.95","Total Cost":"101441.89","Total Profit":"49971.06"},{"Region":"Europe","Country":"Germany","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/11/2015","Order ID":"880838143","Ship Date":"1/11/2016","Units Sold":"8436","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2153542.08","Total Cost":"1344867.12","Total Profit":"808674.96"},{"Region":"Europe","Country":"Netherlands","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"10/23/2016","Order ID":"539005839","Ship Date":"11/10/2016","Units Sold":"2661","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"290794.08","Total Cost":"95370.24","Total Profit":"195423.84"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"5/25/2011","Order ID":"426087415","Ship Date":"5/27/2011","Units Sold":"7589","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4942032.69","Total Cost":"3983921.44","Total Profit":"958111.25"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/7/2011","Order ID":"229631698","Ship Date":"12/18/2011","Units Sold":"1977","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1287442.17","Total Cost":"1037845.92","Total Profit":"249596.25"},{"Region":"Europe","Country":"Denmark","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/30/2016","Order ID":"157500016","Ship Date":"9/2/2016","Units Sold":"6610","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1008553.80","Total Cost":"644078.40","Total Profit":"364475.40"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/11/2013","Order ID":"487866199","Ship Date":"3/11/2013","Units Sold":"9304","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2375125.12","Total Cost":"1483243.68","Total Profit":"891881.44"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/2/2013","Order ID":"219216573","Ship Date":"6/3/2013","Units Sold":"9910","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1512067.80","Total Cost":"965630.40","Total Profit":"546437.40"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"1/14/2011","Order ID":"220349967","Ship Date":"1/31/2011","Units Sold":"5307","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"433741.11","Total Cost":"300747.69","Total Profit":"132993.42"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/12/2016","Order ID":"980377709","Ship Date":"2/24/2016","Units Sold":"4405","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1124508.40","Total Cost":"702245.10","Total Profit":"422263.30"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/12/2012","Order ID":"358723628","Ship Date":"12/19/2012","Units Sold":"3148","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"803621.44","Total Cost":"501854.16","Total Profit":"301767.28"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/14/2010","Order ID":"335124051","Ship Date":"2/22/2010","Units Sold":"9509","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1464956.54","Total Cost":"864653.37","Total Profit":"600303.17"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/27/2013","Order ID":"259627807","Ship Date":"3/27/2013","Units Sold":"8492","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"928005.76","Total Cost":"304353.28","Total Profit":"623652.48"},{"Region":"Europe","Country":"Georgia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"8/4/2013","Order ID":"902596223","Ship Date":"8/17/2013","Units Sold":"7135","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"779712.80","Total Cost":"255718.40","Total Profit":"523994.40"},{"Region":"Europe","Country":"Germany","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/15/2015","Order ID":"404703128","Ship Date":"7/3/2015","Units Sold":"9504","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1954972.80","Total Cost":"1113013.44","Total Profit":"841959.36"},{"Region":"Asia","Country":"Malaysia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"12/8/2015","Order ID":"126934850","Ship Date":"1/9/2016","Units Sold":"1698","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"433465.44","Total Cost":"270695.16","Total Profit":"162770.28"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"1/7/2010","Order ID":"600590217","Ship Date":"1/8/2010","Units Sold":"6846","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1408222.20","Total Cost":"801735.06","Total Profit":"606487.14"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/15/2016","Order ID":"177280557","Ship Date":"2/19/2016","Units Sold":"111","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"72284.31","Total Cost":"58270.56","Total Profit":"14013.75"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/3/2012","Order ID":"878929698","Ship Date":"4/3/2012","Units Sold":"3684","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2399057.64","Total Cost":"1933952.64","Total Profit":"465105.00"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/4/2015","Order ID":"747773969","Ship Date":"2/4/2015","Units Sold":"1789","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"782150.80","Total Cost":"471097.37","Total Profit":"311053.43"},{"Region":"Europe","Country":"Montenegro","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"1/19/2016","Order ID":"596362197","Ship Date":"3/3/2016","Units Sold":"5681","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"620819.68","Total Cost":"203607.04","Total Profit":"417212.64"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"5/6/2015","Order ID":"857555711","Ship Date":"5/30/2015","Units Sold":"8646","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3780031.20","Total Cost":"2276751.18","Total Profit":"1503280.02"},{"Region":"Europe","Country":"Spain","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/20/2010","Order ID":"234528338","Ship Date":"3/31/2010","Units Sold":"1002","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"154368.12","Total Cost":"91111.86","Total Profit":"63256.26"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"3/15/2014","Order ID":"650766408","Ship Date":"3/26/2014","Units Sold":"5096","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1300906.88","Total Cost":"812404.32","Total Profit":"488502.56"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/26/2015","Order ID":"500068747","Ship Date":"6/10/2015","Units Sold":"310","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"63767.00","Total Cost":"36304.10","Total Profit":"27462.90"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/18/2010","Order ID":"496546685","Ship Date":"8/17/2010","Units Sold":"8053","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3520771.60","Total Cost":"2120596.49","Total Profit":"1400175.11"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/14/2016","Order ID":"524624049","Ship Date":"7/3/2016","Units Sold":"6769","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"321189.05","Total Cost":"215186.51","Total Profit":"106002.54"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/20/2012","Order ID":"989037168","Ship Date":"11/20/2012","Units Sold":"6931","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"757419.68","Total Cost":"248407.04","Total Profit":"509012.64"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/5/2014","Order ID":"564834868","Ship Date":"12/26/2014","Units Sold":"6044","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"56390.52","Total Cost":"41824.48","Total Profit":"14566.04"},{"Region":"Asia","Country":"India","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"2/27/2016","Order ID":"247378480","Ship Date":"3/27/2016","Units Sold":"3644","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2435175.88","Total Cost":"1831255.76","Total Profit":"603920.12"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"10/9/2014","Order ID":"202341830","Ship Date":"10/10/2014","Units Sold":"6299","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4101971.79","Total Cost":"3306723.04","Total Profit":"795248.75"},{"Region":"Europe","Country":"San Marino","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/8/2010","Order ID":"215711247","Ship Date":"3/30/2010","Units Sold":"2607","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"213070.11","Total Cost":"147738.69","Total Profit":"65331.42"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/3/2013","Order ID":"143785560","Ship Date":"12/24/2013","Units Sold":"8197","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5337968.37","Total Cost":"4303097.12","Total Profit":"1034871.25"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"5/1/2016","Order ID":"363176095","Ship Date":"5/31/2016","Units Sold":"732","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"34733.40","Total Cost":"23270.28","Total Profit":"11463.12"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"4/16/2012","Order ID":"420806682","Ship Date":"5/12/2012","Units Sold":"4903","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1008547.10","Total Cost":"574190.33","Total Profit":"434356.77"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"12/21/2012","Order ID":"383913648","Ship Date":"1/13/2013","Units Sold":"7435","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"812496.80","Total Cost":"266470.40","Total Profit":"546026.40"},{"Region":"Europe","Country":"Montenegro","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/6/2011","Order ID":"390045821","Ship Date":"9/29/2011","Units Sold":"2081","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"317518.98","Total Cost":"202772.64","Total Profit":"114746.34"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"5/9/2010","Order ID":"197064530","Ship Date":"6/19/2010","Units Sold":"4629","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"952185.30","Total Cost":"542102.19","Total Profit":"410083.11"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/15/2015","Order ID":"533143603","Ship Date":"11/15/2015","Units Sold":"7895","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1624001.50","Total Cost":"924583.45","Total Profit":"699418.05"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/12/2013","Order ID":"846769368","Ship Date":"2/22/2013","Units Sold":"6728","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2838475.92","Total Cost":"2453634.32","Total Profit":"384841.60"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"1/22/2015","Order ID":"656740653","Ship Date":"2/24/2015","Units Sold":"3008","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"328714.24","Total Cost":"107806.72","Total Profit":"220907.52"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"8/29/2012","Order ID":"902168786","Ship Date":"9/16/2012","Units Sold":"647","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"421332.87","Total Cost":"339649.12","Total Profit":"81683.75"},{"Region":"Europe","Country":"Albania","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"12/23/2016","Order ID":"792477595","Ship Date":"1/16/2017","Units Sold":"586","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"64038.08","Total Cost":"21002.24","Total Profit":"43035.84"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/29/2017","Order ID":"957403409","Ship Date":"6/16/2017","Units Sold":"5799","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"275162.55","Total Cost":"184350.21","Total Profit":"90812.34"},{"Region":"Europe","Country":"Andorra","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"10/11/2015","Order ID":"296995055","Ship Date":"10/21/2015","Units Sold":"6292","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4097413.32","Total Cost":"3303048.32","Total Profit":"794365.00"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"12/20/2014","Order ID":"931613862","Ship Date":"1/11/2015","Units Sold":"4099","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"843164.30","Total Cost":"480033.89","Total Profit":"363130.41"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"2/25/2015","Order ID":"551933658","Ship Date":"3/9/2015","Units Sold":"8289","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3623950.80","Total Cost":"2182742.37","Total Profit":"1441208.43"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/23/2017","Order ID":"968940770","Ship Date":"7/28/2017","Units Sold":"9961","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6486702.81","Total Cost":"5229126.56","Total Profit":"1257576.25"},{"Region":"Asia","Country":"Maldives","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"2/14/2013","Order ID":"463934028","Ship Date":"2/26/2013","Units Sold":"7243","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1848993.04","Total Cost":"1154679.06","Total Profit":"694313.98"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/27/2016","Order ID":"538524758","Ship Date":"8/3/2016","Units Sold":"298","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"194060.58","Total Cost":"156438.08","Total Profit":"37622.50"},{"Region":"Europe","Country":"Russia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/5/2017","Order ID":"964636790","Ship Date":"3/9/2017","Units Sold":"6317","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"516288.41","Total Cost":"357984.39","Total Profit":"158304.02"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/9/2012","Order ID":"234506452","Ship Date":"12/8/2012","Units Sold":"4525","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1978330.00","Total Cost":"1191568.25","Total Profit":"786761.75"},{"Region":"Asia","Country":"Bhutan","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"12/18/2013","Order ID":"510682570","Ship Date":"2/3/2014","Units Sold":"1176","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"785885.52","Total Cost":"590987.04","Total Profit":"194898.48"},{"Region":"Europe","Country":"Lithuania","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"10/1/2016","Order ID":"876026475","Ship Date":"11/4/2016","Units Sold":"4556","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1922130.84","Total Cost":"1661527.64","Total Profit":"260603.20"},{"Region":"Asia","Country":"Tajikistan","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"10/5/2014","Order ID":"483711993","Ship Date":"10/13/2014","Units Sold":"9983","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1537980.98","Total Cost":"907754.19","Total Profit":"630226.79"},{"Region":"Asia","Country":"Japan","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"3/4/2010","Order ID":"807225453","Ship Date":"4/22/2010","Units Sold":"4805","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"44830.65","Total Cost":"33250.60","Total Profit":"11580.05"},{"Region":"Europe","Country":"Russia","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"1/5/2010","Order ID":"690365684","Ship Date":"1/26/2010","Units Sold":"3402","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2273454.54","Total Cost":"1709641.08","Total Profit":"563813.46"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/22/2014","Order ID":"397244012","Ship Date":"10/31/2014","Units Sold":"2186","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1460838.22","Total Cost":"1098552.44","Total Profit":"362285.78"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"10/11/2014","Order ID":"262284266","Ship Date":"11/11/2014","Units Sold":"4598","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1939850.22","Total Cost":"1676844.62","Total Profit":"263005.60"},{"Region":"Asia","Country":"Vietnam","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/12/2016","Order ID":"240222775","Ship Date":"5/31/2016","Units Sold":"6112","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1560271.36","Total Cost":"974375.04","Total Profit":"585896.32"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"9/16/2015","Order ID":"356108367","Ship Date":"10/31/2015","Units Sold":"9234","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1422590.04","Total Cost":"839647.62","Total Profit":"582942.42"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/8/2010","Order ID":"255302369","Ship Date":"2/18/2010","Units Sold":"8499","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1748244.30","Total Cost":"995317.89","Total Profit":"752926.41"},{"Region":"North America","Country":"Canada","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/4/2016","Order ID":"553478610","Ship Date":"8/4/2016","Units Sold":"5475","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"843478.50","Total Cost":"497841.75","Total Profit":"345636.75"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"7/29/2015","Order ID":"586623418","Ship Date":"7/29/2015","Units Sold":"3760","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2512695.20","Total Cost":"1889550.40","Total Profit":"623144.80"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/12/2015","Order ID":"661035621","Ship Date":"4/4/2015","Units Sold":"3985","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"435480.80","Total Cost":"142822.40","Total Profit":"292658.40"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/1/2016","Order ID":"703326547","Ship Date":"12/8/2016","Units Sold":"8809","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2248761.52","Total Cost":"1404330.78","Total Profit":"844430.74"},{"Region":"Asia","Country":"Taiwan","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"9/4/2011","Order ID":"710420024","Ship Date":"9/20/2011","Units Sold":"7927","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3465684.40","Total Cost":"2087416.91","Total Profit":"1378267.49"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"9/1/2014","Order ID":"299552381","Ship Date":"9/1/2014","Units Sold":"3061","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"471577.66","Total Cost":"278336.73","Total Profit":"193240.93"},{"Region":"Asia","Country":"Vietnam","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/2/2015","Order ID":"958272445","Ship Date":"5/18/2015","Units Sold":"2966","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1296735.20","Total Cost":"781036.78","Total Profit":"515698.42"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"10/27/2011","Order ID":"194441545","Ship Date":"10/31/2011","Units Sold":"8429","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"688902.17","Total Cost":"477671.43","Total Profit":"211230.74"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"9/18/2014","Order ID":"986233508","Ship Date":"11/1/2014","Units Sold":"7266","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1854864.48","Total Cost":"1158345.72","Total Profit":"696518.76"},{"Region":"Europe","Country":"Belgium","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"12/8/2012","Order ID":"532134664","Ship Date":"1/3/2013","Units Sold":"9327","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1436917.62","Total Cost":"848104.11","Total Profit":"588813.51"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/31/2015","Order ID":"600943839","Ship Date":"7/1/2015","Units Sold":"1491","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"227496.78","Total Cost":"145283.04","Total Profit":"82213.74"},{"Region":"Asia","Country":"Tajikistan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"12/24/2016","Order ID":"781772363","Ship Date":"12/25/2016","Units Sold":"2670","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"549219.00","Total Cost":"312683.70","Total Profit":"236535.30"},{"Region":"Asia","Country":"South Korea","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"5/4/2017","Order ID":"734044063","Ship Date":"5/26/2017","Units Sold":"8805","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"82150.65","Total Cost":"60930.60","Total Profit":"21220.05"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"3/29/2017","Order ID":"637495267","Ship Date":"5/3/2017","Units Sold":"7871","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"373478.95","Total Cost":"250219.09","Total Profit":"123259.86"},{"Region":"Asia","Country":"North Korea","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"9/22/2014","Order ID":"742174804","Ship Date":"10/16/2014","Units Sold":"4872","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"231176.40","Total Cost":"154880.88","Total Profit":"76295.52"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"6/19/2016","Order ID":"918444001","Ship Date":"7/26/2016","Units Sold":"6845","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"748021.60","Total Cost":"245324.80","Total Profit":"502696.80"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/8/2011","Order ID":"206976687","Ship Date":"4/16/2011","Units Sold":"7856","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2005479.68","Total Cost":"1252403.52","Total Profit":"753076.16"},{"Region":"Europe","Country":"France","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/23/2011","Order ID":"868759191","Ship Date":"10/28/2011","Units Sold":"4005","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1750986.00","Total Cost":"1054636.65","Total Profit":"696349.35"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"7/23/2012","Order ID":"735090339","Ship Date":"7/28/2012","Units Sold":"8421","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5627501.67","Total Cost":"4231889.34","Total Profit":"1395612.33"},{"Region":"Europe","Country":"Ukraine","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"2/18/2017","Order ID":"857581460","Ship Date":"3/7/2017","Units Sold":"6266","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4187379.82","Total Cost":"3148915.64","Total Profit":"1038464.18"},{"Region":"Asia","Country":"Malaysia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"12/9/2010","Order ID":"558156383","Ship Date":"12/19/2010","Units Sold":"9732","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"795396.36","Total Cost":"551512.44","Total Profit":"243883.92"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"10/29/2010","Order ID":"579051434","Ship Date":"12/3/2010","Units Sold":"3042","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1980980.82","Total Cost":"1596928.32","Total Profit":"384052.50"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/13/2015","Order ID":"832815444","Ship Date":"11/13/2015","Units Sold":"7452","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1148055.12","Total Cost":"677610.36","Total Profit":"470444.76"},{"Region":"Europe","Country":"Macedonia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"9/15/2010","Order ID":"852309739","Ship Date":"9/16/2010","Units Sold":"6247","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"58284.51","Total Cost":"43229.24","Total Profit":"15055.27"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"8/22/2015","Order ID":"240708148","Ship Date":"9/28/2015","Units Sold":"9745","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4260514.00","Total Cost":"2566150.85","Total Profit":"1694363.15"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/1/2013","Order ID":"921496999","Ship Date":"12/14/2013","Units Sold":"294","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"44858.52","Total Cost":"28647.36","Total Profit":"16211.16"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/8/2016","Order ID":"388475120","Ship Date":"2/18/2016","Units Sold":"7276","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1496673.20","Total Cost":"852092.36","Total Profit":"644580.84"},{"Region":"Europe","Country":"Denmark","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"8/13/2011","Order ID":"255753839","Ship Date":"9/29/2011","Units Sold":"2099","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"171551.27","Total Cost":"118950.33","Total Profit":"52600.94"},{"Region":"Europe","Country":"Macedonia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"2/2/2017","Order ID":"407756984","Ship Date":"3/20/2017","Units Sold":"3208","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"152219.60","Total Cost":"101982.32","Total Profit":"50237.28"},{"Region":"Europe","Country":"Norway","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"6/20/2012","Order ID":"349220883","Ship Date":"7/4/2012","Units Sold":"1075","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"87859.75","Total Cost":"60920.25","Total Profit":"26939.50"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"10/27/2012","Order ID":"555194365","Ship Date":"12/16/2012","Units Sold":"3205","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1401226.00","Total Cost":"843972.65","Total Profit":"557253.35"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"7/30/2011","Order ID":"221038758","Ship Date":"8/9/2011","Units Sold":"9135","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"433455.75","Total Cost":"290401.65","Total Profit":"143054.10"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/30/2014","Order ID":"412427890","Ship Date":"9/11/2014","Units Sold":"5433","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2375307.60","Total Cost":"1430671.89","Total Profit":"944635.71"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"8/2/2013","Order ID":"915348088","Ship Date":"8/11/2013","Units Sold":"695","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"177419.60","Total Cost":"110796.90","Total Profit":"66622.70"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/18/2012","Order ID":"686098182","Ship Date":"10/25/2012","Units Sold":"553","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"84376.74","Total Cost":"53884.32","Total Profit":"30492.42"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"6/17/2017","Order ID":"101289498","Ship Date":"6/17/2017","Units Sold":"2668","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1737428.28","Total Cost":"1400593.28","Total Profit":"336835.00"},{"Region":"Europe","Country":"France","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"12/19/2014","Order ID":"507845866","Ship Date":"1/26/2015","Units Sold":"1732","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"442144.96","Total Cost":"276115.44","Total Profit":"166029.52"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/25/2016","Order ID":"173003613","Ship Date":"7/30/2016","Units Sold":"4469","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"41695.77","Total Cost":"30925.48","Total Profit":"10770.29"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/26/2015","Order ID":"134311568","Ship Date":"6/7/2015","Units Sold":"4633","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"43225.89","Total Cost":"32060.36","Total Profit":"11165.53"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/28/2013","Order ID":"149631059","Ship Date":"6/22/2013","Units Sold":"8010","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5216192.10","Total Cost":"4204929.60","Total Profit":"1011262.50"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/18/2017","Order ID":"947135913","Ship Date":"8/26/2017","Units Sold":"7419","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"810748.32","Total Cost":"265896.96","Total Profit":"544851.36"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"11/14/2012","Order ID":"175312459","Ship Date":"1/2/2013","Units Sold":"7707","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"629893.11","Total Cost":"436755.69","Total Profit":"193137.42"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/5/2012","Order ID":"952959525","Ship Date":"2/15/2012","Units Sold":"755","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"61706.15","Total Cost":"42785.85","Total Profit":"18920.30"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"11/6/2013","Order ID":"619188439","Ship Date":"12/19/2013","Units Sold":"474","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"97501.80","Total Cost":"55510.14","Total Profit":"41991.66"},{"Region":"Asia","Country":"Singapore","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/12/2014","Order ID":"183423030","Ship Date":"1/13/2014","Units Sold":"7805","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"637902.65","Total Cost":"442309.35","Total Profit":"195593.30"},{"Region":"Europe","Country":"Ukraine","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"3/11/2017","Order ID":"275399625","Ship Date":"3/19/2017","Units Sold":"5724","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2502532.80","Total Cost":"1507300.92","Total Profit":"995231.88"},{"Region":"Asia","Country":"Mongolia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/2/2010","Order ID":"695167052","Ship Date":"1/22/2010","Units Sold":"4234","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1851104.80","Total Cost":"1114939.22","Total Profit":"736165.58"},{"Region":"Europe","Country":"Belgium","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/4/2010","Order ID":"863086640","Ship Date":"7/13/2010","Units Sold":"5371","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3589278.17","Total Cost":"2699142.34","Total Profit":"890135.83"},{"Region":"Asia","Country":"South Korea","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"4/16/2011","Order ID":"269832217","Ship Date":"5/22/2011","Units Sold":"8204","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5482487.08","Total Cost":"4122838.16","Total Profit":"1359648.92"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/1/2013","Order ID":"726390111","Ship Date":"8/23/2013","Units Sold":"3831","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1674913.20","Total Cost":"1008817.23","Total Profit":"666095.97"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"11/26/2015","Order ID":"514059150","Ship Date":"12/26/2015","Units Sold":"381","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"166573.20","Total Cost":"100328.73","Total Profit":"66244.47"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"3/30/2010","Order ID":"234450662","Ship Date":"5/4/2010","Units Sold":"8016","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"74789.28","Total Cost":"55470.72","Total Profit":"19318.56"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"3/7/2016","Order ID":"559488475","Ship Date":"4/25/2016","Units Sold":"3928","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"605147.68","Total Cost":"357173.04","Total Profit":"247974.64"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"6/27/2016","Order ID":"881408917","Ship Date":"8/15/2016","Units Sold":"7340","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1873755.20","Total Cost":"1170142.80","Total Profit":"703612.40"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/6/2013","Order ID":"662760818","Ship Date":"1/23/2014","Units Sold":"4509","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"687983.22","Total Cost":"439356.96","Total Profit":"248626.26"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"5/7/2012","Order ID":"786405503","Ship Date":"6/2/2012","Units Sold":"3719","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"34698.27","Total Cost":"25735.48","Total Profit":"8962.79"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/7/2012","Order ID":"405516803","Ship Date":"12/25/2012","Units Sold":"288","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"31472.64","Total Cost":"10321.92","Total Profit":"21150.72"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"1/16/2010","Order ID":"993581044","Ship Date":"3/1/2010","Units Sold":"1565","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1045842.55","Total Cost":"786475.10","Total Profit":"259367.45"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"12/16/2010","Order ID":"494397056","Ship Date":"1/16/2011","Units Sold":"1930","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"297335.80","Total Cost":"175494.90","Total Profit":"121840.90"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/11/2016","Order ID":"972076165","Ship Date":"3/22/2016","Units Sold":"7794","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"851728.32","Total Cost":"279336.96","Total Profit":"572391.36"},{"Region":"Asia","Country":"Singapore","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"9/26/2015","Order ID":"961042201","Ship Date":"11/7/2015","Units Sold":"2599","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1136282.80","Total Cost":"684394.67","Total Profit":"451888.13"},{"Region":"Europe","Country":"Vatican City","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"4/6/2016","Order ID":"416031491","Ship Date":"4/22/2016","Units Sold":"1818","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"766996.02","Total Cost":"663006.42","Total Profit":"103989.60"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/4/2013","Order ID":"262092864","Ship Date":"12/11/2013","Units Sold":"7958","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1214231.64","Total Cost":"775427.52","Total Profit":"438804.12"},{"Region":"Asia","Country":"Thailand","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"4/2/2013","Order ID":"144587647","Ship Date":"5/8/2013","Units Sold":"5553","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"263489.85","Total Cost":"176529.87","Total Profit":"86959.98"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/20/2016","Order ID":"679189670","Ship Date":"8/26/2016","Units Sold":"6171","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4123894.17","Total Cost":"3101174.34","Total Profit":"1022719.83"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"9/20/2011","Order ID":"301885259","Ship Date":"10/15/2011","Units Sold":"3411","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2279468.97","Total Cost":"1714163.94","Total Profit":"565305.03"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/21/2014","Order ID":"218973243","Ship Date":"5/15/2014","Units Sold":"7903","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"863639.84","Total Cost":"283243.52","Total Profit":"580396.32"},{"Region":"Europe","Country":"Sweden","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"8/18/2010","Order ID":"357064950","Ship Date":"9/8/2010","Units Sold":"2308","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1009057.60","Total Cost":"607765.64","Total Profit":"401291.96"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/3/2014","Order ID":"713084208","Ship Date":"9/14/2014","Units Sold":"6318","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4222129.86","Total Cost":"3175047.72","Total Profit":"1047082.14"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/4/2010","Order ID":"904267346","Ship Date":"11/30/2010","Units Sold":"1657","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"699071.73","Total Cost":"604291.33","Total Profit":"94780.40"},{"Region":"Europe","Country":"France","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/19/2011","Order ID":"618163192","Ship Date":"10/8/2011","Units Sold":"7080","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1456356.00","Total Cost":"829138.80","Total Profit":"627217.20"},{"Region":"Europe","Country":"Greece","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"2/9/2015","Order ID":"962633073","Ship Date":"2/12/2015","Units Sold":"3373","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"275675.29","Total Cost":"191147.91","Total Profit":"84527.38"},{"Region":"Europe","Country":"Norway","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/15/2016","Order ID":"415850818","Ship Date":"9/30/2016","Units Sold":"8353","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"77933.49","Total Cost":"57802.76","Total Profit":"20130.73"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/4/2012","Order ID":"676302754","Ship Date":"1/1/2013","Units Sold":"1869","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"384453.30","Total Cost":"218878.59","Total Profit":"165574.71"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"9/8/2012","Order ID":"812787711","Ship Date":"9/30/2012","Units Sold":"801","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"350197.20","Total Cost":"210927.33","Total Profit":"139269.87"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"11/1/2010","Order ID":"414417016","Ship Date":"12/11/2010","Units Sold":"4059","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2643261.39","Total Cost":"2130812.64","Total Profit":"512448.75"},{"Region":"Europe","Country":"Macedonia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/18/2014","Order ID":"940614497","Ship Date":"9/1/2014","Units Sold":"7587","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5070164.49","Total Cost":"3812770.98","Total Profit":"1257393.51"},{"Region":"Europe","Country":"Russia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/5/2017","Order ID":"771116483","Ship Date":"5/14/2017","Units Sold":"9358","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6253670.66","Total Cost":"4702769.32","Total Profit":"1550901.34"},{"Region":"Europe","Country":"Italy","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"10/5/2016","Order ID":"155971801","Ship Date":"11/23/2016","Units Sold":"4377","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"40837.41","Total Cost":"30288.84","Total Profit":"10548.57"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/28/2012","Order ID":"765541779","Ship Date":"5/6/2012","Units Sold":"9679","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1476821.82","Total Cost":"943121.76","Total Profit":"533700.06"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/20/2015","Order ID":"740500247","Ship Date":"5/5/2015","Units Sold":"9333","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4080387.60","Total Cost":"2457658.89","Total Profit":"1622728.71"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/25/2015","Order ID":"541833531","Ship Date":"8/10/2015","Units Sold":"9438","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3981797.82","Total Cost":"3441944.22","Total Profit":"539853.60"},{"Region":"Europe","Country":"Lithuania","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"7/30/2015","Order ID":"700840461","Ship Date":"9/6/2015","Units Sold":"3121","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1316718.69","Total Cost":"1138197.49","Total Profit":"178521.20"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/17/2011","Order ID":"469132363","Ship Date":"1/26/2011","Units Sold":"5546","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2424711.20","Total Cost":"1460428.18","Total Profit":"964283.02"},{"Region":"Asia","Country":"Laos","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"3/8/2010","Order ID":"968633067","Ship Date":"3/27/2010","Units Sold":"8905","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"422542.25","Total Cost":"283089.95","Total Profit":"139452.30"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/10/2014","Order ID":"241578900","Ship Date":"9/28/2014","Units Sold":"7420","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1132143.60","Total Cost":"723004.80","Total Profit":"409138.80"},{"Region":"Europe","Country":"Croatia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"12/27/2015","Order ID":"900518691","Ship Date":"2/12/2016","Units Sold":"2347","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"482777.90","Total Cost":"274857.17","Total Profit":"207920.73"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"2/10/2014","Order ID":"678313767","Ship Date":"2/17/2014","Units Sold":"6972","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2941417.08","Total Cost":"2542618.68","Total Profit":"398798.40"},{"Region":"Central America and the Caribbean","Country":"Barbados","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"12/19/2013","Order ID":"978137958","Ship Date":"1/29/2014","Units Sold":"1613","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"705203.60","Total Cost":"424751.29","Total Profit":"280452.31"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/11/2013","Order ID":"123477590","Ship Date":"12/12/2013","Units Sold":"8618","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1314934.44","Total Cost":"839737.92","Total Profit":"475196.52"},{"Region":"Europe","Country":"Sweden","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/15/2017","Order ID":"108131492","Ship Date":"5/18/2017","Units Sold":"7366","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"68724.78","Total Cost":"50972.72","Total Profit":"17752.06"},{"Region":"Asia","Country":"Mongolia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"2/26/2013","Order ID":"746210992","Ship Date":"4/8/2013","Units Sold":"9270","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4052844.00","Total Cost":"2441069.10","Total Profit":"1611774.90"},{"Region":"Asia","Country":"North Korea","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/17/2010","Order ID":"122139918","Ship Date":"10/6/2010","Units Sold":"2771","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1211481.20","Total Cost":"729687.43","Total Profit":"481793.77"},{"Region":"Europe","Country":"Greece","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/9/2012","Order ID":"440654599","Ship Date":"9/4/2012","Units Sold":"8343","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5575376.61","Total Cost":"4192691.22","Total Profit":"1382685.39"},{"Region":"Europe","Country":"Italy","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/12/2011","Order ID":"376803863","Ship Date":"3/17/2011","Units Sold":"3491","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"537823.46","Total Cost":"317436.63","Total Profit":"220386.83"},{"Region":"Europe","Country":"Germany","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/16/2015","Order ID":"925949037","Ship Date":"2/4/2015","Units Sold":"7751","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1194119.06","Total Cost":"704798.43","Total Profit":"489320.63"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"11/9/2014","Order ID":"453763949","Ship Date":"11/21/2014","Units Sold":"7691","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1582038.70","Total Cost":"900693.01","Total Profit":"681345.69"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"7/17/2017","Order ID":"546234929","Ship Date":"9/3/2017","Units Sold":"1909","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1275727.43","Total Cost":"959348.86","Total Profit":"316378.57"},{"Region":"Europe","Country":"Greece","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/22/2012","Order ID":"159660804","Ship Date":"3/15/2012","Units Sold":"6035","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3930052.35","Total Cost":"3168133.60","Total Profit":"761918.75"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"6/28/2011","Order ID":"570652902","Ship Date":"8/16/2011","Units Sold":"7730","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3379556.00","Total Cost":"2035540.90","Total Profit":"1344015.10"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/17/2010","Order ID":"426135051","Ship Date":"8/14/2010","Units Sold":"1686","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"737119.20","Total Cost":"443974.38","Total Profit":"293144.82"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"11/22/2012","Order ID":"693343579","Ship Date":"12/16/2012","Units Sold":"4628","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1181435.84","Total Cost":"737795.76","Total Profit":"443640.08"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"11/8/2011","Order ID":"609827315","Ship Date":"12/17/2011","Units Sold":"309","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"33767.52","Total Cost":"11074.56","Total Profit":"22692.96"},{"Region":"Europe","Country":"Austria","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"12/5/2016","Order ID":"833447587","Ship Date":"1/12/2017","Units Sold":"4517","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1153099.76","Total Cost":"720100.14","Total Profit":"432999.62"},{"Region":"Europe","Country":"Spain","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"3/15/2012","Order ID":"292378222","Ship Date":"4/8/2012","Units Sold":"68","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"5557.64","Total Cost":"3853.56","Total Profit":"1704.08"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/5/2013","Order ID":"235105550","Ship Date":"2/20/2013","Units Sold":"1812","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"85979.40","Total Cost":"57603.48","Total Profit":"28375.92"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/8/2017","Order ID":"180428397","Ship Date":"3/23/2017","Units Sold":"1627","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"132974.71","Total Cost":"92202.09","Total Profit":"40772.62"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"7/6/2015","Order ID":"167458093","Ship Date":"8/20/2015","Units Sold":"3426","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"874589.28","Total Cost":"546172.92","Total Profit":"328416.36"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/24/2011","Order ID":"305618464","Ship Date":"8/1/2011","Units Sold":"8150","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"666099.50","Total Cost":"461860.50","Total Profit":"204239.00"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"6/12/2017","Order ID":"324645841","Ship Date":"7/9/2017","Units Sold":"8773","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3701240.97","Total Cost":"3199425.37","Total Profit":"501815.60"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/12/2012","Order ID":"924589049","Ship Date":"4/20/2012","Units Sold":"5301","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1090415.70","Total Cost":"620800.11","Total Profit":"469615.59"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"2/2/2014","Order ID":"625809419","Ship Date":"2/28/2014","Units Sold":"9769","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1505012.14","Total Cost":"888295.17","Total Profit":"616716.97"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"6/22/2015","Order ID":"718980777","Ship Date":"7/30/2015","Units Sold":"1244","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"810105.24","Total Cost":"653050.24","Total Profit":"157055.00"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/31/2010","Order ID":"315089452","Ship Date":"2/17/2010","Units Sold":"826","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"361127.20","Total Cost":"217510.58","Total Profit":"143616.62"},{"Region":"Europe","Country":"Italy","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"7/31/2011","Order ID":"395434272","Ship Date":"8/27/2011","Units Sold":"6643","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"542932.39","Total Cost":"376458.81","Total Profit":"166473.58"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"12/19/2011","Order ID":"661626565","Ship Date":"1/28/2012","Units Sold":"8858","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1364663.48","Total Cost":"805457.94","Total Profit":"559205.54"},{"Region":"Europe","Country":"Romania","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/30/2015","Order ID":"885590159","Ship Date":"9/20/2015","Units Sold":"4663","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"43505.79","Total Cost":"32267.96","Total Profit":"11237.83"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"1/6/2013","Order ID":"459561383","Ship Date":"2/20/2013","Units Sold":"3281","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"837573.68","Total Cost":"523057.02","Total Profit":"314516.66"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/16/2014","Order ID":"646089065","Ship Date":"6/12/2014","Units Sold":"967","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"422772.40","Total Cost":"254640.11","Total Profit":"168132.29"},{"Region":"Asia","Country":"Indonesia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"12/29/2015","Order ID":"528034532","Ship Date":"2/13/2016","Units Sold":"6007","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1235639.90","Total Cost":"703479.77","Total Profit":"532160.13"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/1/2011","Order ID":"158571612","Ship Date":"6/16/2011","Units Sold":"3719","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2421849.99","Total Cost":"1952326.24","Total Profit":"469523.75"},{"Region":"Europe","Country":"Serbia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"5/22/2010","Order ID":"111186635","Ship Date":"6/8/2010","Units Sold":"1451","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"13537.83","Total Cost":"10040.92","Total Profit":"3496.91"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"5/17/2012","Order ID":"129678428","Ship Date":"6/4/2012","Units Sold":"3583","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"737023.10","Total Cost":"419605.13","Total Profit":"317417.97"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"4/27/2010","Order ID":"478158318","Ship Date":"6/16/2010","Units Sold":"6527","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"309706.15","Total Cost":"207493.33","Total Profit":"102212.82"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/2/2017","Order ID":"591050136","Ship Date":"4/1/2017","Units Sold":"3724","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"950662.72","Total Cost":"593680.08","Total Profit":"356982.64"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"8/21/2016","Order ID":"423090207","Ship Date":"10/2/2016","Units Sold":"649","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"283742.80","Total Cost":"170901.17","Total Profit":"112841.63"},{"Region":"Asia","Country":"Mongolia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"6/13/2012","Order ID":"899327361","Ship Date":"6/20/2012","Units Sold":"9806","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"801444.38","Total Cost":"555706.02","Total Profit":"245738.36"},{"Region":"Europe","Country":"Georgia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/14/2016","Order ID":"765122926","Ship Date":"12/23/2016","Units Sold":"5731","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1463009.68","Total Cost":"913636.02","Total Profit":"549373.66"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"1/24/2017","Order ID":"636150729","Ship Date":"2/13/2017","Units Sold":"9992","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"93225.36","Total Cost":"69144.64","Total Profit":"24080.72"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"11/28/2015","Order ID":"748397099","Ship Date":"12/25/2015","Units Sold":"6188","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"293620.60","Total Cost":"196716.52","Total Profit":"96904.08"},{"Region":"Europe","Country":"Russia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/20/2013","Order ID":"508160865","Ship Date":"11/22/2013","Units Sold":"4947","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"234735.15","Total Cost":"157265.13","Total Profit":"77470.02"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"6/20/2012","Order ID":"742053353","Ship Date":"7/24/2012","Units Sold":"8932","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3768321.48","Total Cost":"3257411.08","Total Profit":"510910.40"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/26/2010","Order ID":"546998393","Ship Date":"7/12/2010","Units Sold":"7835","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5102230.35","Total Cost":"4113061.60","Total Profit":"989168.75"},{"Region":"Europe","Country":"Poland","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/23/2015","Order ID":"440232312","Ship Date":"2/22/2015","Units Sold":"3379","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"515567.82","Total Cost":"329249.76","Total Profit":"186318.06"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"12/23/2015","Order ID":"109303939","Ship Date":"1/2/2016","Units Sold":"4319","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"40296.27","Total Cost":"29887.48","Total Profit":"10408.79"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/19/2011","Order ID":"662074601","Ship Date":"5/19/2011","Units Sold":"1442","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"157581.76","Total Cost":"51681.28","Total Profit":"105900.48"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"8/8/2011","Order ID":"576718127","Ship Date":"8/23/2011","Units Sold":"2565","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1714112.55","Total Cost":"1289015.10","Total Profit":"425097.45"},{"Region":"Europe","Country":"Albania","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"5/22/2013","Order ID":"651720845","Ship Date":"5/30/2013","Units Sold":"7536","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1923790.08","Total Cost":"1201389.12","Total Profit":"722400.96"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/9/2010","Order ID":"855881583","Ship Date":"7/20/2010","Units Sold":"3235","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"353520.80","Total Cost":"115942.40","Total Profit":"237578.40"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/24/2012","Order ID":"778311669","Ship Date":"9/29/2012","Units Sold":"8574","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"406836.30","Total Cost":"272567.46","Total Profit":"134268.84"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/23/2012","Order ID":"978434932","Ship Date":"6/26/2012","Units Sold":"9494","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1462645.64","Total Cost":"863289.42","Total Profit":"599356.22"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/7/2010","Order ID":"735987699","Ship Date":"3/28/2010","Units Sold":"3970","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2653031.90","Total Cost":"1995083.80","Total Profit":"657948.10"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"9/14/2011","Order ID":"301018798","Ship Date":"9/14/2011","Units Sold":"7006","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"765615.68","Total Cost":"251095.04","Total Profit":"514520.64"},{"Region":"Asia","Country":"Vietnam","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/23/2016","Order ID":"443889558","Ship Date":"2/11/2016","Units Sold":"5639","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2465370.80","Total Cost":"1484917.87","Total Profit":"980452.93"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/23/2012","Order ID":"205273807","Ship Date":"2/3/2012","Units Sold":"3936","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1660559.04","Total Cost":"1435419.84","Total Profit":"225139.20"},{"Region":"Asia","Country":"Myanmar","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/18/2012","Order ID":"946157872","Ship Date":"5/13/2012","Units Sold":"7995","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1644571.50","Total Cost":"936294.45","Total Profit":"708277.05"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"6/29/2011","Order ID":"497840583","Ship Date":"8/16/2011","Units Sold":"946","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"616044.66","Total Cost":"496612.16","Total Profit":"119432.50"},{"Region":"Europe","Country":"Cyprus","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/1/2013","Order ID":"811933267","Ship Date":"1/29/2013","Units Sold":"7951","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"868885.28","Total Cost":"284963.84","Total Profit":"583921.44"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/21/2017","Order ID":"310359752","Ship Date":"6/26/2017","Units Sold":"1202","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"782754.42","Total Cost":"631001.92","Total Profit":"151752.50"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/17/2011","Order ID":"635356366","Ship Date":"7/16/2011","Units Sold":"4923","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3205906.83","Total Cost":"2584378.08","Total Profit":"621528.75"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/30/2016","Order ID":"799471938","Ship Date":"10/9/2016","Units Sold":"367","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"93687.76","Total Cost":"58507.14","Total Profit":"35180.62"},{"Region":"Asia","Country":"Singapore","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/2/2010","Order ID":"335567796","Ship Date":"7/13/2010","Units Sold":"823","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"210095.44","Total Cost":"131202.66","Total Profit":"78892.78"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"10/7/2012","Order ID":"646817767","Ship Date":"10/29/2012","Units Sold":"6606","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4301893.26","Total Cost":"3467885.76","Total Profit":"834007.50"},{"Region":"Europe","Country":"Switzerland","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"7/11/2014","Order ID":"956708180","Ship Date":"8/20/2014","Units Sold":"66","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"16848.48","Total Cost":"10521.72","Total Profit":"6326.76"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/15/2011","Order ID":"559037864","Ship Date":"6/19/2011","Units Sold":"582","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"388933.14","Total Cost":"292478.28","Total Profit":"96454.86"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"3/5/2015","Order ID":"167918145","Ship Date":"3/19/2015","Units Sold":"9566","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"453906.70","Total Cost":"304103.14","Total Profit":"149803.56"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"5/19/2012","Order ID":"567772853","Ship Date":"6/10/2012","Units Sold":"5459","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"446164.07","Total Cost":"309361.53","Total Profit":"136802.54"},{"Region":"Europe","Country":"Estonia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/20/2013","Order ID":"363338315","Ship Date":"4/4/2013","Units Sold":"8736","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2230126.08","Total Cost":"1392693.12","Total Profit":"837432.96"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/14/2010","Order ID":"929663360","Ship Date":"2/24/2010","Units Sold":"6902","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4612399.54","Total Cost":"3468531.08","Total Profit":"1143868.46"},{"Region":"Asia","Country":"Taiwan","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"5/30/2011","Order ID":"562109315","Ship Date":"6/5/2011","Units Sold":"9492","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"450395.40","Total Cost":"301750.68","Total Profit":"148644.72"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/10/2015","Order ID":"326350009","Ship Date":"8/20/2015","Units Sold":"3075","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1344390.00","Total Cost":"809739.75","Total Profit":"534650.25"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/25/2014","Order ID":"908371770","Ship Date":"6/7/2014","Units Sold":"6248","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2635968.72","Total Cost":"2278583.12","Total Profit":"357385.60"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/18/2011","Order ID":"364473426","Ship Date":"1/1/2012","Units Sold":"4641","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2029045.20","Total Cost":"1222114.53","Total Profit":"806930.67"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"7/25/2013","Order ID":"871266305","Ship Date":"8/19/2013","Units Sold":"5916","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2586475.20","Total Cost":"1557860.28","Total Profit":"1028614.92"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/28/2014","Order ID":"175674235","Ship Date":"4/16/2014","Units Sold":"4765","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3103015.65","Total Cost":"2501434.40","Total Profit":"601581.25"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/8/2017","Order ID":"144933545","Ship Date":"6/20/2017","Units Sold":"7912","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"375424.40","Total Cost":"251522.48","Total Profit":"123901.92"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/7/2016","Order ID":"916593062","Ship Date":"6/21/2016","Units Sold":"9111","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3843839.79","Total Cost":"3322690.59","Total Profit":"521149.20"},{"Region":"Europe","Country":"Moldova ","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/10/2013","Order ID":"448514115","Ship Date":"6/8/2013","Units Sold":"4149","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"453402.72","Total Cost":"148700.16","Total Profit":"304702.56"},{"Region":"Europe","Country":"Kosovo","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"11/27/2014","Order ID":"368870532","Ship Date":"1/4/2015","Units Sold":"5842","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"477466.66","Total Cost":"331066.14","Total Profit":"146400.52"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"10/19/2013","Order ID":"126148641","Ship Date":"10/28/2013","Units Sold":"9041","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1392856.46","Total Cost":"822098.13","Total Profit":"570758.33"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"3/3/2015","Order ID":"139147269","Ship Date":"4/21/2015","Units Sold":"5624","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"614590.72","Total Cost":"201564.16","Total Profit":"413026.56"},{"Region":"Europe","Country":"Estonia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"1/26/2010","Order ID":"446977746","Ship Date":"2/19/2010","Units Sold":"9503","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1954767.10","Total Cost":"1112896.33","Total Profit":"841870.77"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/17/2017","Order ID":"259063899","Ship Date":"4/1/2017","Units Sold":"1620","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"247179.60","Total Cost":"157852.80","Total Profit":"89326.80"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/9/2010","Order ID":"205142056","Ship Date":"9/1/2010","Units Sold":"4948","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1017803.60","Total Cost":"579460.28","Total Profit":"438343.32"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/11/2015","Order ID":"985261046","Ship Date":"2/5/2015","Units Sold":"9493","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"88569.69","Total Cost":"65691.56","Total Profit":"22878.13"},{"Region":"Europe","Country":"Armenia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/29/2010","Order ID":"219782197","Ship Date":"8/18/2010","Units Sold":"7291","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"68025.03","Total Cost":"50453.72","Total Profit":"17571.31"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"7/22/2012","Order ID":"999379336","Ship Date":"8/8/2012","Units Sold":"7409","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1141430.54","Total Cost":"673700.37","Total Profit":"467730.17"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"8/18/2014","Order ID":"635038793","Ship Date":"9/28/2014","Units Sold":"946","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"145740.76","Total Cost":"86019.78","Total Profit":"59720.98"},{"Region":"Asia","Country":"Thailand","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"4/22/2015","Order ID":"108059394","Ship Date":"4/23/2015","Units Sold":"6031","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2636753.20","Total Cost":"1588143.23","Total Profit":"1048609.97"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"2/27/2014","Order ID":"920052468","Ship Date":"3/23/2014","Units Sold":"2826","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"230968.98","Total Cost":"160149.42","Total Profit":"70819.56"},{"Region":"Asia","Country":"South Korea","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"8/13/2015","Order ID":"142941844","Ship Date":"9/3/2015","Units Sold":"8523","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5550262.83","Total Cost":"4474234.08","Total Profit":"1076028.75"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/7/2010","Order ID":"768963849","Ship Date":"1/27/2010","Units Sold":"2346","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"21888.18","Total Cost":"16234.32","Total Profit":"5653.86"},{"Region":"Asia","Country":"Bhutan","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"4/15/2015","Order ID":"460667312","Ship Date":"5/20/2015","Units Sold":"549","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"366880.23","Total Cost":"275894.46","Total Profit":"90985.77"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"7/14/2012","Order ID":"100913560","Ship Date":"8/26/2012","Units Sold":"1420","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"620824.00","Total Cost":"373928.60","Total Profit":"246895.40"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"6/14/2010","Order ID":"642876422","Ship Date":"6/25/2010","Units Sold":"274","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"2556.42","Total Cost":"1896.08","Total Profit":"660.34"},{"Region":"Europe","Country":"Belgium","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/17/2011","Order ID":"860042226","Ship Date":"4/5/2011","Units Sold":"4462","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"917833.40","Total Cost":"522544.82","Total Profit":"395288.58"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"4/7/2014","Order ID":"496209800","Ship Date":"5/11/2014","Units Sold":"8361","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1719857.70","Total Cost":"979156.71","Total Profit":"740700.99"},{"Region":"Europe","Country":"Portugal","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/28/2012","Order ID":"715490472","Ship Date":"9/2/2012","Units Sold":"8385","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1291793.10","Total Cost":"762448.05","Total Profit":"529345.05"},{"Region":"Europe","Country":"Slovakia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/2/2011","Order ID":"952308070","Ship Date":"8/17/2011","Units Sold":"7975","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2035858.00","Total Cost":"1271374.50","Total Profit":"764483.50"},{"Region":"Europe","Country":"Russia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/27/2017","Order ID":"261398923","Ship Date":"8/12/2017","Units Sold":"2605","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"665004.40","Total Cost":"415289.10","Total Profit":"249715.30"},{"Region":"Europe","Country":"Andorra","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"7/13/2011","Order ID":"467811858","Ship Date":"7/18/2011","Units Sold":"4780","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2016634.20","Total Cost":"1743218.20","Total Profit":"273416.00"},{"Region":"Central America and the Caribbean","Country":"Saint Lucia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"7/22/2013","Order ID":"316908204","Ship Date":"8/1/2013","Units Sold":"9035","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3950102.00","Total Cost":"2379186.55","Total Profit":"1570915.45"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/25/2010","Order ID":"424361789","Ship Date":"7/27/2010","Units Sold":"6938","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"329208.10","Total Cost":"220559.02","Total Profit":"108649.08"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/31/2012","Order ID":"126158940","Ship Date":"1/7/2013","Units Sold":"2089","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1360377.69","Total Cost":"1096641.44","Total Profit":"263736.25"},{"Region":"Europe","Country":"Serbia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/11/2013","Order ID":"628598487","Ship Date":"12/19/2013","Units Sold":"5116","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"47732.28","Total Cost":"35402.72","Total Profit":"12329.56"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"10/12/2014","Order ID":"958291757","Ship Date":"11/5/2014","Units Sold":"8681","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1785681.70","Total Cost":"1016631.91","Total Profit":"769049.79"},{"Region":"Europe","Country":"Slovenia","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/4/2014","Order ID":"212162578","Ship Date":"5/3/2014","Units Sold":"2476","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"381452.56","Total Cost":"225142.68","Total Profit":"156309.88"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"3/8/2012","Order ID":"707447278","Ship Date":"3/20/2012","Units Sold":"8225","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1267143.50","Total Cost":"747899.25","Total Profit":"519244.25"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"3/23/2013","Order ID":"331694686","Ship Date":"3/23/2013","Units Sold":"4683","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"382741.59","Total Cost":"265385.61","Total Profit":"117355.98"},{"Region":"Central America and the Caribbean","Country":"Saint Lucia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/14/2015","Order ID":"192766129","Ship Date":"8/18/2015","Units Sold":"2636","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"542225.20","Total Cost":"308701.96","Total Profit":"233523.24"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"7/17/2014","Order ID":"568835437","Ship Date":"8/29/2014","Units Sold":"9901","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1525348.06","Total Cost":"900297.93","Total Profit":"625050.13"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/29/2014","Order ID":"458388936","Ship Date":"5/16/2014","Units Sold":"6327","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1301463.90","Total Cost":"740954.97","Total Profit":"560508.93"},{"Region":"Asia","Country":"South Korea","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"3/26/2016","Order ID":"730225455","Ship Date":"5/4/2016","Units Sold":"8794","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"718733.62","Total Cost":"498355.98","Total Profit":"220377.64"},{"Region":"Europe","Country":"Albania","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/7/2015","Order ID":"973456323","Ship Date":"3/29/2015","Units Sold":"6213","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"507788.49","Total Cost":"352090.71","Total Profit":"155697.78"},{"Region":"Europe","Country":"Denmark","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"8/18/2010","Order ID":"847505366","Ship Date":"9/20/2010","Units Sold":"4526","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"930998.20","Total Cost":"530039.86","Total Profit":"400958.34"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"2/23/2011","Order ID":"532108914","Ship Date":"3/27/2011","Units Sold":"1707","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"260454.06","Total Cost":"166330.08","Total Profit":"94123.98"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"9/8/2014","Order ID":"277315795","Ship Date":"10/10/2014","Units Sold":"2761","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1164838.29","Total Cost":"1006909.09","Total Profit":"157929.20"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"10/12/2012","Order ID":"853487336","Ship Date":"11/9/2012","Units Sold":"4724","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3156907.48","Total Cost":"2373998.96","Total Profit":"782908.52"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/15/2016","Order ID":"401297366","Ship Date":"12/20/2016","Units Sold":"1663","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"424530.64","Total Cost":"265115.46","Total Profit":"159415.18"},{"Region":"North America","Country":"United States of America","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/29/2017","Order ID":"281732213","Ship Date":"2/11/2017","Units Sold":"9677","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1476516.66","Total Cost":"942926.88","Total Profit":"533589.78"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"6/14/2015","Order ID":"126090705","Ship Date":"7/21/2015","Units Sold":"1896","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1267039.92","Total Cost":"952815.84","Total Profit":"314224.08"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"6/7/2015","Order ID":"985984170","Ship Date":"7/3/2015","Units Sold":"3481","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"284502.13","Total Cost":"197268.27","Total Profit":"87233.86"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"2/2/2010","Order ID":"383336436","Ship Date":"2/21/2010","Units Sold":"6625","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2896450.00","Total Cost":"1744561.25","Total Profit":"1151888.75"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"4/8/2016","Order ID":"860383832","Ship Date":"4/26/2016","Units Sold":"5550","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"51781.50","Total Cost":"38406.00","Total Profit":"13375.50"},{"Region":"Europe","Country":"Monaco","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"3/30/2010","Order ID":"529675185","Ship Date":"4/10/2010","Units Sold":"1513","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"661483.60","Total Cost":"398418.29","Total Profit":"263065.31"},{"Region":"North America","Country":"Mexico","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/9/2014","Order ID":"724071824","Ship Date":"10/11/2014","Units Sold":"7798","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5211169.46","Total Cost":"3918806.92","Total Profit":"1292362.54"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"1/15/2012","Order ID":"146747577","Ship Date":"2/16/2012","Units Sold":"4724","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"720787.92","Total Cost":"460306.56","Total Profit":"260481.36"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/1/2015","Order ID":"721188771","Ship Date":"8/6/2015","Units Sold":"4639","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3020963.19","Total Cost":"2435289.44","Total Profit":"585673.75"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/30/2013","Order ID":"841194236","Ship Date":"7/14/2013","Units Sold":"6922","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"64582.26","Total Cost":"47900.24","Total Profit":"16682.02"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"2/2/2010","Order ID":"320875298","Ship Date":"2/17/2010","Units Sold":"2986","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"141685.70","Total Cost":"94924.94","Total Profit":"46760.76"},{"Region":"Europe","Country":"Spain","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"7/10/2014","Order ID":"844655787","Ship Date":"7/12/2014","Units Sold":"1272","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"556118.40","Total Cost":"334955.76","Total Profit":"221162.64"},{"Region":"Europe","Country":"Iceland","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"4/20/2014","Order ID":"117272031","Ship Date":"5/23/2014","Units Sold":"2255","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1468478.55","Total Cost":"1183784.80","Total Profit":"284693.75"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/5/2016","Order ID":"413772857","Ship Date":"12/7/2016","Units Sold":"3438","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1503093.60","Total Cost":"905328.54","Total Profit":"597765.06"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/28/2015","Order ID":"929519593","Ship Date":"11/18/2015","Units Sold":"4358","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"476242.24","Total Cost":"156190.72","Total Profit":"320051.52"},{"Region":"Europe","Country":"Switzerland","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/31/2016","Order ID":"930186069","Ship Date":"12/7/2016","Units Sold":"1583","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"667851.87","Total Cost":"577304.27","Total Profit":"90547.60"},{"Region":"Asia","Country":"Cambodia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"9/22/2011","Order ID":"201758611","Ship Date":"9/29/2011","Units Sold":"3711","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"303300.03","Total Cost":"210302.37","Total Profit":"92997.66"},{"Region":"Europe","Country":"Italy","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/3/2012","Order ID":"400536048","Ship Date":"5/8/2012","Units Sold":"6372","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2785838.40","Total Cost":"1677938.76","Total Profit":"1107899.64"},{"Region":"Europe","Country":"Macedonia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/11/2016","Order ID":"103129708","Ship Date":"3/12/2016","Units Sold":"7227","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"67427.91","Total Cost":"50010.84","Total Profit":"17417.07"},{"Region":"Europe","Country":"Cyprus","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"9/7/2010","Order ID":"656463420","Ship Date":"10/20/2010","Units Sold":"969","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"247366.32","Total Cost":"154477.98","Total Profit":"92888.34"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"9/16/2014","Order ID":"327773511","Ship Date":"10/25/2014","Units Sold":"4321","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1103064.88","Total Cost":"688853.82","Total Profit":"414211.06"},{"Region":"Europe","Country":"Spain","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"12/1/2013","Order ID":"154608809","Ship Date":"12/19/2013","Units Sold":"1037","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"675304.77","Total Cost":"544383.52","Total Profit":"130921.25"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/3/2010","Order ID":"794830644","Ship Date":"5/21/2010","Units Sold":"6905","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"754578.40","Total Cost":"247475.20","Total Profit":"507103.20"},{"Region":"Europe","Country":"Finland","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"7/6/2010","Order ID":"276612842","Ship Date":"8/5/2010","Units Sold":"4742","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"723534.36","Total Cost":"462060.48","Total Profit":"261473.88"},{"Region":"Europe","Country":"Belarus","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/21/2014","Order ID":"748441731","Ship Date":"1/23/2015","Units Sold":"9395","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1932551.50","Total Cost":"1100248.45","Total Profit":"832303.05"},{"Region":"Europe","Country":"Vatican City","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"8/17/2013","Order ID":"829116141","Ship Date":"8/27/2013","Units Sold":"2746","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1200551.20","Total Cost":"723104.18","Total Profit":"477447.02"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"9/5/2012","Order ID":"557747399","Ship Date":"10/7/2012","Units Sold":"8705","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1341092.30","Total Cost":"791545.65","Total Profit":"549546.65"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/10/2015","Order ID":"943759334","Ship Date":"8/14/2015","Units Sold":"8214","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"76636.62","Total Cost":"56840.88","Total Profit":"19795.74"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"10/22/2011","Order ID":"816888272","Ship Date":"12/9/2011","Units Sold":"4248","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"648159.84","Total Cost":"413925.12","Total Profit":"234234.72"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/5/2010","Order ID":"877183043","Ship Date":"9/25/2010","Units Sold":"6810","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"556581.30","Total Cost":"385922.70","Total Profit":"170658.60"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"2/8/2015","Order ID":"545004975","Ship Date":"3/23/2015","Units Sold":"7938","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5169304.98","Total Cost":"4167132.48","Total Profit":"1002172.50"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"2/11/2010","Order ID":"211027896","Ship Date":"3/8/2010","Units Sold":"6699","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4362455.79","Total Cost":"3516707.04","Total Profit":"845748.75"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"1/28/2012","Order ID":"786238133","Ship Date":"3/10/2012","Units Sold":"4190","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"342448.70","Total Cost":"237447.30","Total Profit":"105001.40"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"12/6/2011","Order ID":"551934516","Ship Date":"12/9/2011","Units Sold":"8543","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"405365.35","Total Cost":"271581.97","Total Profit":"133783.38"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"10/28/2016","Order ID":"109728372","Ship Date":"12/2/2016","Units Sold":"9918","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2531867.04","Total Cost":"1581127.56","Total Profit":"950739.48"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"1/15/2016","Order ID":"131543529","Ship Date":"3/5/2016","Units Sold":"5508","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"601914.24","Total Cost":"197406.72","Total Profit":"404507.52"},{"Region":"Europe","Country":"Albania","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"1/25/2015","Order ID":"909616315","Ship Date":"2/17/2015","Units Sold":"4536","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"370727.28","Total Cost":"257055.12","Total Profit":"113672.16"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/3/2016","Order ID":"106495559","Ship Date":"9/23/2016","Units Sold":"3257","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2120990.97","Total Cost":"1709794.72","Total Profit":"411196.25"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"2/15/2017","Order ID":"405042588","Ship Date":"3/6/2017","Units Sold":"9958","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6484749.18","Total Cost":"5227551.68","Total Profit":"1257197.50"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"7/13/2017","Order ID":"958431231","Ship Date":"8/18/2017","Units Sold":"9955","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"92880.15","Total Cost":"68888.60","Total Profit":"23991.55"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"7/1/2012","Order ID":"540147817","Ship Date":"8/19/2012","Units Sold":"597","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"152402.16","Total Cost":"95173.74","Total Profit":"57228.42"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/18/2016","Order ID":"693991172","Ship Date":"9/14/2016","Units Sold":"6265","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"58452.45","Total Cost":"43353.80","Total Profit":"15098.65"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"4/20/2015","Order ID":"784072625","Ship Date":"4/21/2015","Units Sold":"3368","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"513889.44","Total Cost":"328177.92","Total Profit":"185711.52"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/17/2013","Order ID":"244816005","Ship Date":"12/28/2013","Units Sold":"5351","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2339457.20","Total Cost":"1409078.83","Total Profit":"930378.37"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"3/27/2011","Order ID":"830957639","Ship Date":"4/23/2011","Units Sold":"7686","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1581010.20","Total Cost":"900107.46","Total Profit":"680902.74"},{"Region":"North America","Country":"Canada","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"1/31/2011","Order ID":"767546355","Ship Date":"3/4/2011","Units Sold":"2878","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1923281.06","Total Cost":"1446310.12","Total Profit":"476970.94"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"8/20/2010","Order ID":"599943482","Ship Date":"9/29/2010","Units Sold":"5463","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"446490.99","Total Cost":"309588.21","Total Profit":"136902.78"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"12/11/2011","Order ID":"943822848","Ship Date":"1/2/2012","Units Sold":"7010","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1069585.80","Total Cost":"683054.40","Total Profit":"386531.40"},{"Region":"Europe","Country":"Armenia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"7/25/2010","Order ID":"235170781","Ship Date":"8/9/2010","Units Sold":"1115","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"284637.20","Total Cost":"177753.30","Total Profit":"106883.90"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"6/22/2014","Order ID":"580286109","Ship Date":"8/4/2014","Units Sold":"8410","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1283197.80","Total Cost":"819470.40","Total Profit":"463727.40"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"7/26/2017","Order ID":"105780160","Ship Date":"9/7/2017","Units Sold":"1555","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"169930.40","Total Cost":"55731.20","Total Profit":"114199.20"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"1/6/2011","Order ID":"608576762","Ship Date":"2/15/2011","Units Sold":"243","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"158244.03","Total Cost":"127565.28","Total Profit":"30678.75"},{"Region":"Europe","Country":"Belgium","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"5/8/2017","Order ID":"805912244","Ship Date":"5/30/2017","Units Sold":"6197","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1581970.16","Total Cost":"987925.74","Total Profit":"594044.42"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/11/2010","Order ID":"385335433","Ship Date":"12/29/2010","Units Sold":"8172","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1680980.40","Total Cost":"957022.92","Total Profit":"723957.48"},{"Region":"Europe","Country":"Ireland","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"9/1/2012","Order ID":"454707658","Ship Date":"9/18/2012","Units Sold":"6955","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4647817.85","Total Cost":"3495165.70","Total Profit":"1152652.15"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"5/20/2010","Order ID":"392202746","Ship Date":"7/8/2010","Units Sold":"363","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"74669.10","Total Cost":"42510.93","Total Profit":"32158.17"},{"Region":"Europe","Country":"Spain","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"9/26/2015","Order ID":"996307027","Ship Date":"9/30/2015","Units Sold":"8244","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1270070.64","Total Cost":"749626.92","Total Profit":"520443.72"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"12/5/2014","Order ID":"435819327","Ship Date":"12/19/2014","Units Sold":"7479","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3155315.31","Total Cost":"2727516.51","Total Profit":"427798.80"},{"Region":"Europe","Country":"Norway","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/17/2010","Order ID":"999850976","Ship Date":"6/8/2010","Units Sold":"6978","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4544143.38","Total Cost":"3663170.88","Total Profit":"880972.50"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"11/30/2016","Order ID":"547825801","Ship Date":"12/9/2016","Units Sold":"2683","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"551893.10","Total Cost":"314206.13","Total Profit":"237686.97"},{"Region":"Europe","Country":"Austria","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"8/2/2012","Order ID":"159480130","Ship Date":"8/22/2012","Units Sold":"2569","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1123166.80","Total Cost":"676494.77","Total Profit":"446672.03"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"7/29/2010","Order ID":"984862792","Ship Date":"9/7/2010","Units Sold":"1641","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1068635.61","Total Cost":"861459.36","Total Profit":"207176.25"},{"Region":"Europe","Country":"Croatia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"7/20/2017","Order ID":"194335114","Ship Date":"8/3/2017","Units Sold":"6934","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1068252.04","Total Cost":"630508.62","Total Profit":"437743.42"},{"Region":"Europe","Country":"Cyprus","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/1/2014","Order ID":"428570926","Ship Date":"10/28/2014","Units Sold":"2516","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1681367.32","Total Cost":"1264390.64","Total Profit":"416976.68"},{"Region":"Asia","Country":"Malaysia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/6/2014","Order ID":"348556554","Ship Date":"11/3/2014","Units Sold":"4485","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"490120.80","Total Cost":"160742.40","Total Profit":"329378.40"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"4/24/2012","Order ID":"485590827","Ship Date":"4/27/2012","Units Sold":"5971","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1524276.88","Total Cost":"951896.82","Total Profit":"572380.06"},{"Region":"Europe","Country":"Iceland","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"10/6/2010","Order ID":"991285073","Ship Date":"10/7/2010","Units Sold":"2137","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1428092.99","Total Cost":"1073927.98","Total Profit":"354165.01"},{"Region":"Europe","Country":"Monaco","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/2/2010","Order ID":"287563121","Ship Date":"10/14/2010","Units Sold":"5173","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1064086.10","Total Cost":"605810.03","Total Profit":"458276.07"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"12/25/2013","Order ID":"916661298","Ship Date":"1/29/2014","Units Sold":"9303","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"86796.99","Total Cost":"64376.76","Total Profit":"22420.23"},{"Region":"Asia","Country":"Nepal","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"11/13/2011","Order ID":"991128432","Ship Date":"11/24/2011","Units Sold":"5783","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3765947.43","Total Cost":"3035843.68","Total Profit":"730103.75"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"1/10/2012","Order ID":"943825852","Ship Date":"2/22/2012","Units Sold":"7898","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3332087.22","Total Cost":"2880321.62","Total Profit":"451765.60"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"10/14/2011","Order ID":"377927386","Ship Date":"11/3/2011","Units Sold":"5967","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3885770.07","Total Cost":"3132436.32","Total Profit":"753333.75"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"2/9/2017","Order ID":"316919362","Ship Date":"3/31/2017","Units Sold":"2337","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"596589.36","Total Cost":"372564.54","Total Profit":"224024.82"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/5/2016","Order ID":"954600608","Ship Date":"2/27/2016","Units Sold":"6388","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1630728.64","Total Cost":"1018374.96","Total Profit":"612353.68"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/19/2013","Order ID":"305082452","Ship Date":"3/5/2013","Units Sold":"9532","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1960732.40","Total Cost":"1116292.52","Total Profit":"844439.88"},{"Region":"Europe","Country":"Croatia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"2/20/2017","Order ID":"952788722","Ship Date":"3/2/2017","Units Sold":"211","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"53864.08","Total Cost":"33637.62","Total Profit":"20226.46"},{"Region":"Europe","Country":"San Marino","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/10/2015","Order ID":"602455747","Ship Date":"12/8/2015","Units Sold":"8898","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1830318.60","Total Cost":"1042044.78","Total Profit":"788273.82"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/19/2016","Order ID":"629132354","Ship Date":"11/2/2016","Units Sold":"3099","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"147047.55","Total Cost":"98517.21","Total Profit":"48530.34"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/18/2013","Order ID":"228179872","Ship Date":"3/5/2013","Units Sold":"2350","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"256808.00","Total Cost":"84224.00","Total Profit":"172584.00"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"12/16/2010","Order ID":"465272128","Ship Date":"1/26/2011","Units Sold":"3217","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"821235.76","Total Cost":"512854.14","Total Profit":"308381.62"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/4/2017","Order ID":"226395452","Ship Date":"3/6/2017","Units Sold":"4300","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"469904.00","Total Cost":"154112.00","Total Profit":"315792.00"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"1/8/2013","Order ID":"267848670","Ship Date":"2/11/2013","Units Sold":"1228","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"189185.68","Total Cost":"111662.04","Total Profit":"77523.64"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/25/2011","Order ID":"966243112","Ship Date":"8/6/2011","Units Sold":"1664","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"135998.72","Total Cost":"94298.88","Total Profit":"41699.84"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"4/2/2015","Order ID":"968502604","Ship Date":"4/19/2015","Units Sold":"298","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"199144.46","Total Cost":"149756.92","Total Profit":"49387.54"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"7/15/2012","Order ID":"341863477","Ship Date":"7/27/2012","Units Sold":"3855","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"593901.30","Total Cost":"350535.15","Total Profit":"243366.15"},{"Region":"Europe","Country":"Malta","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/16/2011","Order ID":"123874557","Ship Date":"1/5/2012","Units Sold":"6089","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2568888.21","Total Cost":"2220597.41","Total Profit":"348290.80"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"3/14/2015","Order ID":"972397172","Ship Date":"4/28/2015","Units Sold":"2787","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"132243.15","Total Cost":"88598.73","Total Profit":"43644.42"},{"Region":"Europe","Country":"Germany","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"2/28/2014","Order ID":"915605151","Ship Date":"4/19/2014","Units Sold":"6766","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2958095.20","Total Cost":"1781690.78","Total Profit":"1176404.42"},{"Region":"Europe","Country":"Romania","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"8/14/2016","Order ID":"301984822","Ship Date":"9/17/2016","Units Sold":"2875","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"136418.75","Total Cost":"91396.25","Total Profit":"45022.50"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"7/23/2012","Order ID":"450335013","Ship Date":"7/23/2012","Units Sold":"2993","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2000132.11","Total Cost":"1504102.22","Total Profit":"496029.89"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/5/2015","Order ID":"499767053","Ship Date":"10/23/2015","Units Sold":"1032","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"157462.56","Total Cost":"100558.08","Total Profit":"56904.48"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/21/2014","Order ID":"559704768","Ship Date":"9/5/2014","Units Sold":"7934","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1210569.72","Total Cost":"773088.96","Total Profit":"437480.76"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"6/26/2013","Order ID":"359884488","Ship Date":"6/26/2013","Units Sold":"6672","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"729116.16","Total Cost":"239124.48","Total Profit":"489991.68"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"5/16/2014","Order ID":"600355041","Ship Date":"6/28/2014","Units Sold":"7253","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1491942.10","Total Cost":"849398.83","Total Profit":"642543.27"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"7/15/2012","Order ID":"701477754","Ship Date":"8/27/2012","Units Sold":"1711","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1143409.97","Total Cost":"859845.94","Total Profit":"283564.03"},{"Region":"Europe","Country":"Armenia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"9/19/2015","Order ID":"153926455","Ship Date":"9/30/2015","Units Sold":"9114","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"995977.92","Total Cost":"326645.76","Total Profit":"669332.16"},{"Region":"Australia and Oceania","Country":"Tonga","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/26/2017","Order ID":"768687474","Ship Date":"8/16/2017","Units Sold":"560","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"244832.00","Total Cost":"147464.80","Total Profit":"97367.20"},{"Region":"Sub-Saharan Africa","Country":"Mali","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"8/7/2016","Order ID":"827059638","Ship Date":"9/11/2016","Units Sold":"4181","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"637936.98","Total Cost":"407396.64","Total Profit":"230540.34"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"5/23/2012","Order ID":"930654275","Ship Date":"6/17/2012","Units Sold":"136","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"11115.28","Total Cost":"7707.12","Total Profit":"3408.16"},{"Region":"Europe","Country":"Moldova ","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/9/2016","Order ID":"851395213","Ship Date":"12/15/2016","Units Sold":"5618","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2456189.60","Total Cost":"1479387.94","Total Profit":"976801.66"},{"Region":"Asia","Country":"China","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/6/2013","Order ID":"881518781","Ship Date":"1/10/2013","Units Sold":"9851","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4306857.20","Total Cost":"2594063.83","Total Profit":"1712793.37"},{"Region":"Europe","Country":"Croatia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"12/18/2010","Order ID":"483573806","Ship Date":"1/21/2011","Units Sold":"9090","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1400405.40","Total Cost":"826553.70","Total Profit":"573851.70"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"8/13/2014","Order ID":"540421617","Ship Date":"9/5/2014","Units Sold":"1621","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"247332.18","Total Cost":"157950.24","Total Profit":"89381.94"},{"Region":"Sub-Saharan Africa","Country":"Uganda","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/7/2017","Order ID":"205236041","Ship Date":"8/14/2017","Units Sold":"2760","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1797339.60","Total Cost":"1448889.60","Total Profit":"348450.00"},{"Region":"Asia","Country":"Taiwan","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/7/2014","Order ID":"951503407","Ship Date":"4/13/2014","Units Sold":"9858","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4309917.60","Total Cost":"2595907.14","Total Profit":"1714010.46"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"11/23/2011","Order ID":"723022544","Ship Date":"1/11/2012","Units Sold":"7293","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"596056.89","Total Cost":"413294.31","Total Profit":"182762.58"},{"Region":"Europe","Country":"Finland","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/4/2010","Order ID":"683904778","Ship Date":"1/18/2011","Units Sold":"1477","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"987034.79","Total Cost":"742251.58","Total Profit":"244783.21"},{"Region":"Asia","Country":"Tajikistan","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/24/2016","Order ID":"268573939","Ship Date":"10/7/2016","Units Sold":"5852","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"478283.96","Total Cost":"331632.84","Total Profit":"146651.12"},{"Region":"Sub-Saharan Africa","Country":"Botswana","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/11/2013","Order ID":"331766355","Ship Date":"2/17/2013","Units Sold":"5892","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"907721.52","Total Cost":"535759.56","Total Profit":"371961.96"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"2/10/2011","Order ID":"898530852","Ship Date":"3/19/2011","Units Sold":"4101","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"194592.45","Total Cost":"130370.79","Total Profit":"64221.66"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"10/4/2015","Order ID":"714228761","Ship Date":"11/21/2015","Units Sold":"5017","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2193432.40","Total Cost":"1321126.61","Total Profit":"872305.79"},{"Region":"Europe","Country":"Serbia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/17/2013","Order ID":"394533908","Ship Date":"12/28/2013","Units Sold":"206","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"9774.70","Total Cost":"6548.74","Total Profit":"3225.96"},{"Region":"Asia","Country":"Singapore","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/5/2016","Order ID":"175432622","Ship Date":"3/7/2016","Units Sold":"3266","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"498326.28","Total Cost":"318239.04","Total Profit":"180087.24"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/24/2015","Order ID":"363223731","Ship Date":"6/29/2015","Units Sold":"4829","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"394674.17","Total Cost":"273659.43","Total Profit":"121014.74"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"4/2/2013","Order ID":"884518563","Ship Date":"5/12/2013","Units Sold":"7554","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5048111.58","Total Cost":"3796187.16","Total Profit":"1251924.42"},{"Region":"Europe","Country":"Latvia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/27/2015","Order ID":"836240947","Ship Date":"11/24/2015","Units Sold":"1134","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"757818.18","Total Cost":"569880.36","Total Profit":"187937.82"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"6/2/2015","Order ID":"735627210","Ship Date":"6/12/2015","Units Sold":"7293","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"346052.85","Total Cost":"231844.47","Total Profit":"114208.38"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/16/2016","Order ID":"270226180","Ship Date":"9/29/2016","Units Sold":"4787","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"523123.36","Total Cost":"171566.08","Total Profit":"351557.28"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/11/2010","Order ID":"547899186","Ship Date":"5/9/2010","Units Sold":"4400","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2865324.00","Total Cost":"2309824.00","Total Profit":"555500.00"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"4/9/2014","Order ID":"946820056","Ship Date":"5/12/2014","Units Sold":"3950","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"812515.00","Total Cost":"462584.50","Total Profit":"349930.50"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/17/2010","Order ID":"465475118","Ship Date":"2/5/2010","Units Sold":"3286","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"501377.88","Total Cost":"320187.84","Total Profit":"181190.04"},{"Region":"North America","Country":"Canada","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/5/2014","Order ID":"872663199","Ship Date":"2/23/2014","Units Sold":"9288","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6206891.76","Total Cost":"4667591.52","Total Profit":"1539300.24"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/10/2013","Order ID":"857495629","Ship Date":"10/2/2013","Units Sold":"867","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"365778.63","Total Cost":"316186.23","Total Profit":"49592.40"},{"Region":"Europe","Country":"Spain","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/5/2016","Order ID":"979396235","Ship Date":"2/18/2016","Units Sold":"3965","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"610847.90","Total Cost":"360537.45","Total Profit":"250310.45"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/1/2014","Order ID":"518101346","Ship Date":"8/8/2014","Units Sold":"6556","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4381178.12","Total Cost":"3294652.24","Total Profit":"1086525.88"},{"Region":"Europe","Country":"France","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"7/4/2014","Order ID":"623659789","Ship Date":"7/31/2014","Units Sold":"3646","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1538210.94","Total Cost":"1329659.74","Total Profit":"208551.20"},{"Region":"Europe","Country":"Slovenia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/21/2015","Order ID":"266432893","Ship Date":"4/19/2015","Units Sold":"2269","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"21169.77","Total Cost":"15701.48","Total Profit":"5468.29"},{"Region":"Europe","Country":"Sweden","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"1/6/2013","Order ID":"287094485","Ship Date":"2/3/2013","Units Sold":"6493","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"530672.89","Total Cost":"367958.31","Total Profit":"162714.58"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/1/2012","Order ID":"246630895","Ship Date":"12/23/2012","Units Sold":"2417","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"368785.86","Total Cost":"235512.48","Total Profit":"133273.38"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/22/2017","Order ID":"676340949","Ship Date":"5/9/2017","Units Sold":"3171","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1337813.19","Total Cost":"1156431.99","Total Profit":"181381.20"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"2/21/2014","Order ID":"827835977","Ship Date":"2/26/2014","Units Sold":"3917","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"597655.86","Total Cost":"381672.48","Total Profit":"215983.38"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"11/21/2011","Order ID":"923039805","Ship Date":"12/24/2011","Units Sold":"6845","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2992634.00","Total Cost":"1802493.85","Total Profit":"1190140.15"},{"Region":"North America","Country":"Mexico","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/2/2012","Order ID":"804188764","Ship Date":"4/2/2012","Units Sold":"6181","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4025129.01","Total Cost":"3244777.76","Total Profit":"780351.25"},{"Region":"Sub-Saharan Africa","Country":"Mali","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/18/2013","Order ID":"383831679","Ship Date":"1/26/2014","Units Sold":"3178","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"150796.10","Total Cost":"101028.62","Total Profit":"49767.48"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/29/2017","Order ID":"994829881","Ship Date":"5/9/2017","Units Sold":"1124","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"474204.36","Total Cost":"409911.56","Total Profit":"64292.80"},{"Region":"Europe","Country":"Netherlands","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/2/2012","Order ID":"440357196","Ship Date":"2/8/2012","Units Sold":"335","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"146462.00","Total Cost":"88215.55","Total Profit":"58246.45"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/16/2011","Order ID":"643899953","Ship Date":"8/6/2011","Units Sold":"3160","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"345324.80","Total Cost":"113254.40","Total Profit":"232070.40"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/7/2011","Order ID":"899256980","Ship Date":"8/14/2011","Units Sold":"8979","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"426053.55","Total Cost":"285442.41","Total Profit":"140611.14"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"6/27/2016","Order ID":"120539605","Ship Date":"6/28/2016","Units Sold":"9203","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3882653.67","Total Cost":"3356242.07","Total Profit":"526411.60"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"8/27/2012","Order ID":"892171657","Ship Date":"10/14/2012","Units Sold":"2274","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"580506.72","Total Cost":"362521.08","Total Profit":"217985.64"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"4/26/2010","Order ID":"918889462","Ship Date":"4/28/2010","Units Sold":"8667","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"411249.15","Total Cost":"275523.93","Total Profit":"135725.22"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"12/24/2016","Order ID":"675741851","Ship Date":"1/5/2017","Units Sold":"5885","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"643112.80","Total Cost":"210918.40","Total Profit":"432194.40"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"12/3/2010","Order ID":"258090150","Ship Date":"1/9/2011","Units Sold":"3466","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"164461.70","Total Cost":"110184.14","Total Profit":"54277.56"},{"Region":"Europe","Country":"Finland","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"2/16/2013","Order ID":"731608188","Ship Date":"3/10/2013","Units Sold":"7976","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5330121.52","Total Cost":"4008259.04","Total Profit":"1321862.48"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/16/2015","Order ID":"982282292","Ship Date":"6/16/2015","Units Sold":"8014","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3503720.80","Total Cost":"2110326.62","Total Profit":"1393394.18"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"4/6/2014","Order ID":"866411292","Ship Date":"4/16/2014","Units Sold":"9210","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6154766.70","Total Cost":"4628393.40","Total Profit":"1526373.30"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"1/22/2015","Order ID":"760606515","Ship Date":"2/14/2015","Units Sold":"9225","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1897582.50","Total Cost":"1080339.75","Total Profit":"817242.75"},{"Region":"Europe","Country":"Austria","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"9/19/2012","Order ID":"211791789","Ship Date":"10/9/2012","Units Sold":"2752","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1161041.28","Total Cost":"1003626.88","Total Profit":"157414.40"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/4/2010","Order ID":"187203443","Ship Date":"11/19/2010","Units Sold":"6514","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"993906.12","Total Cost":"634724.16","Total Profit":"359181.96"},{"Region":"Europe","Country":"Lithuania","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/21/2010","Order ID":"824390304","Ship Date":"4/30/2010","Units Sold":"4265","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"650753.70","Total Cost":"415581.60","Total Profit":"235172.10"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"1/16/2013","Order ID":"981213700","Ship Date":"2/4/2013","Units Sold":"1794","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"784336.80","Total Cost":"472414.02","Total Profit":"311922.78"},{"Region":"Europe","Country":"Montenegro","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"9/18/2010","Order ID":"485847461","Ship Date":"11/6/2010","Units Sold":"1915","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"209271.20","Total Cost":"68633.60","Total Profit":"140637.60"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"3/2/2011","Order ID":"586777913","Ship Date":"3/14/2011","Units Sold":"9479","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2419799.12","Total Cost":"1511142.18","Total Profit":"908656.94"},{"Region":"Asia","Country":"Laos","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"12/19/2011","Order ID":"802803885","Ship Date":"1/6/2012","Units Sold":"6365","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4144951.65","Total Cost":"3341370.40","Total Profit":"803581.25"},{"Region":"Europe","Country":"Poland","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/29/2011","Order ID":"273036706","Ship Date":"11/1/2011","Units Sold":"6484","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2735534.76","Total Cost":"2364649.96","Total Profit":"370884.80"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"12/22/2013","Order ID":"906900203","Ship Date":"1/5/2014","Units Sold":"778","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"63585.94","Total Cost":"44089.26","Total Profit":"19496.68"},{"Region":"North America","Country":"Canada","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/20/2015","Order ID":"634130704","Ship Date":"9/20/2015","Units Sold":"2222","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"105433.90","Total Cost":"70637.38","Total Profit":"34796.52"},{"Region":"Asia","Country":"Japan","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/20/2010","Order ID":"154777038","Ship Date":"2/2/2011","Units Sold":"820","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"89609.60","Total Cost":"29388.80","Total Profit":"60220.80"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/11/2010","Order ID":"689200532","Ship Date":"7/2/2010","Units Sold":"8608","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3763417.60","Total Cost":"2266744.64","Total Profit":"1496672.96"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/22/2014","Order ID":"828075015","Ship Date":"4/17/2014","Units Sold":"4653","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"43412.49","Total Cost":"32198.76","Total Profit":"11213.73"},{"Region":"Asia","Country":"Singapore","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/17/2015","Order ID":"582386815","Ship Date":"1/15/2016","Units Sold":"55","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"8391.90","Total Cost":"5359.20","Total Profit":"3032.70"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/5/2014","Order ID":"933434760","Ship Date":"4/18/2014","Units Sold":"2943","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"751289.04","Total Cost":"469173.06","Total Profit":"282115.98"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/3/2016","Order ID":"682830178","Ship Date":"2/15/2016","Units Sold":"3479","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2265559.59","Total Cost":"1826335.84","Total Profit":"439223.75"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/28/2010","Order ID":"502496898","Ship Date":"11/8/2010","Units Sold":"8853","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"420074.85","Total Cost":"281436.87","Total Profit":"138637.98"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"6/10/2011","Order ID":"684671247","Ship Date":"6/23/2011","Units Sold":"8292","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2116781.76","Total Cost":"1321910.64","Total Profit":"794871.12"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/19/2013","Order ID":"691902053","Ship Date":"5/15/2013","Units Sold":"8048","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5240938.08","Total Cost":"4224878.08","Total Profit":"1016060.00"},{"Region":"Asia","Country":"Indonesia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"7/31/2012","Order ID":"507050645","Ship Date":"8/5/2012","Units Sold":"6408","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2703471.12","Total Cost":"2336933.52","Total Profit":"366537.60"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/26/2010","Order ID":"183290851","Ship Date":"6/12/2010","Units Sold":"8691","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"949752.48","Total Cost":"311485.44","Total Profit":"638267.04"},{"Region":"Asia","Country":"Taiwan","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"7/2/2016","Order ID":"294108998","Ship Date":"8/14/2016","Units Sold":"2243","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"183320.39","Total Cost":"127110.81","Total Profit":"56209.58"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/16/2015","Order ID":"583303916","Ship Date":"5/4/2015","Units Sold":"1446","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"297442.20","Total Cost":"169341.06","Total Profit":"128101.14"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"8/7/2014","Order ID":"414986932","Ship Date":"8/23/2014","Units Sold":"2710","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"221488.30","Total Cost":"153575.70","Total Profit":"67912.60"},{"Region":"North America","Country":"Canada","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/25/2012","Order ID":"123581874","Ship Date":"7/8/2012","Units Sold":"9478","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4143781.60","Total Cost":"2495841.74","Total Profit":"1647939.86"},{"Region":"Europe","Country":"Hungary","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"4/19/2015","Order ID":"563825070","Ship Date":"5/14/2015","Units Sold":"7223","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"789329.44","Total Cost":"258872.32","Total Profit":"530457.12"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/12/2011","Order ID":"860765349","Ship Date":"9/1/2011","Units Sold":"8450","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5502724.50","Total Cost":"4435912.00","Total Profit":"1066812.50"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/11/2013","Order ID":"659764039","Ship Date":"11/13/2013","Units Sold":"7695","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"365127.75","Total Cost":"244624.05","Total Profit":"120503.70"},{"Region":"Europe","Country":"Portugal","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/14/2016","Order ID":"576494967","Ship Date":"5/21/2016","Units Sold":"6527","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"60896.91","Total Cost":"45166.84","Total Profit":"15730.07"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/8/2014","Order ID":"846944463","Ship Date":"9/24/2014","Units Sold":"8542","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1303338.36","Total Cost":"832332.48","Total Profit":"471005.88"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/14/2016","Order ID":"877411353","Ship Date":"1/30/2017","Units Sold":"4372","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1844503.08","Total Cost":"1594424.68","Total Profit":"250078.40"},{"Region":"Europe","Country":"Russia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"12/25/2016","Order ID":"594506967","Ship Date":"1/8/2017","Units Sold":"6678","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"729771.84","Total Cost":"239339.52","Total Profit":"490432.32"},{"Region":"Europe","Country":"Montenegro","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"7/10/2013","Order ID":"895155131","Ship Date":"8/24/2013","Units Sold":"5151","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2252017.20","Total Cost":"1356412.83","Total Profit":"895604.37"},{"Region":"Europe","Country":"Italy","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"12/16/2013","Order ID":"496592175","Ship Date":"1/12/2014","Units Sold":"1515","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"386749.20","Total Cost":"241521.30","Total Profit":"145227.90"},{"Region":"Europe","Country":"Belarus","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/18/2015","Order ID":"886366927","Ship Date":"6/25/2015","Units Sold":"4526","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3024590.02","Total Cost":"2274496.04","Total Profit":"750093.98"},{"Region":"Asia","Country":"Japan","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"12/7/2015","Order ID":"472340714","Ship Date":"12/24/2015","Units Sold":"4969","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"765524.14","Total Cost":"451831.17","Total Profit":"313692.97"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"1/22/2011","Order ID":"432687366","Ship Date":"3/9/2011","Units Sold":"662","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"6176.46","Total Cost":"4581.04","Total Profit":"1595.42"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/27/2012","Order ID":"665893208","Ship Date":"6/8/2012","Units Sold":"1453","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"946208.13","Total Cost":"762766.88","Total Profit":"183441.25"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/27/2013","Order ID":"240757071","Ship Date":"11/16/2013","Units Sold":"4222","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1077792.16","Total Cost":"673071.24","Total Profit":"404720.92"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/26/2017","Order ID":"546390283","Ship Date":"6/26/2017","Units Sold":"7881","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"861235.68","Total Cost":"282455.04","Total Profit":"578780.64"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/3/2015","Order ID":"342216670","Ship Date":"11/19/2015","Units Sold":"8372","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5594756.44","Total Cost":"4207264.88","Total Profit":"1387491.56"},{"Region":"Asia","Country":"Vietnam","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"11/19/2016","Order ID":"707972562","Ship Date":"12/21/2016","Units Sold":"3669","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2389289.49","Total Cost":"1926078.24","Total Profit":"463211.25"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"5/4/2011","Order ID":"993706786","Ship Date":"6/15/2011","Units Sold":"8775","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1338889.50","Total Cost":"855036.00","Total Profit":"483853.50"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"5/11/2013","Order ID":"169780671","Ship Date":"6/1/2013","Units Sold":"728","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"112155.68","Total Cost":"66197.04","Total Profit":"45958.64"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/4/2011","Order ID":"876868045","Ship Date":"10/9/2011","Units Sold":"3595","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2402430.65","Total Cost":"1806631.30","Total Profit":"595799.35"},{"Region":"Europe","Country":"Croatia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/20/2011","Order ID":"875955235","Ship Date":"9/2/2011","Units Sold":"3475","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1519270.00","Total Cost":"915071.75","Total Profit":"604198.25"},{"Region":"Asia","Country":"Singapore","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"1/11/2015","Order ID":"698341071","Ship Date":"2/1/2015","Units Sold":"3496","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"32617.68","Total Cost":"24192.32","Total Profit":"8425.36"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"6/2/2010","Order ID":"495636880","Ship Date":"7/10/2010","Units Sold":"8822","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"82309.26","Total Cost":"61048.24","Total Profit":"21261.02"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/1/2013","Order ID":"489766490","Ship Date":"8/1/2013","Units Sold":"1643","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1069938.03","Total Cost":"862509.28","Total Profit":"207428.75"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/29/2010","Order ID":"522966229","Ship Date":"11/1/2010","Units Sold":"6184","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"943554.72","Total Cost":"602568.96","Total Profit":"340985.76"},{"Region":"Central America and the Caribbean","Country":"Dominican Republic","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/14/2016","Order ID":"507784926","Ship Date":"8/28/2016","Units Sold":"3699","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2471930.73","Total Cost":"1858895.46","Total Profit":"613035.27"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"7/12/2015","Order ID":"877083909","Ship Date":"7/18/2015","Units Sold":"7474","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"816758.72","Total Cost":"267868.16","Total Profit":"548890.56"},{"Region":"Europe","Country":"Cyprus","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/11/2012","Order ID":"334037005","Ship Date":"10/12/2012","Units Sold":"7828","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3422401.60","Total Cost":"2061347.24","Total Profit":"1361054.36"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"1/5/2014","Order ID":"802130544","Ship Date":"1/26/2014","Units Sold":"7108","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4750063.16","Total Cost":"3572054.32","Total Profit":"1178008.84"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"2/22/2015","Order ID":"675163352","Ship Date":"3/16/2015","Units Sold":"4694","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"965555.80","Total Cost":"549714.34","Total Profit":"415841.46"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/28/2012","Order ID":"667246758","Ship Date":"12/4/2012","Units Sold":"1998","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"510049.44","Total Cost":"318521.16","Total Profit":"191528.28"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"3/20/2016","Order ID":"662804591","Ship Date":"4/1/2016","Units Sold":"7462","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3262386.40","Total Cost":"1964968.46","Total Profit":"1297417.94"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/27/2012","Order ID":"166573178","Ship Date":"10/31/2012","Units Sold":"1560","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"74022.00","Total Cost":"49592.40","Total Profit":"24429.60"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/22/2010","Order ID":"553601348","Ship Date":"3/3/2010","Units Sold":"1796","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"274033.68","Total Cost":"175002.24","Total Profit":"99031.44"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/2/2016","Order ID":"119250428","Ship Date":"11/8/2016","Units Sold":"7707","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"71906.31","Total Cost":"53332.44","Total Profit":"18573.87"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"10/10/2015","Order ID":"829194247","Ship Date":"11/12/2015","Units Sold":"5859","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"478856.07","Total Cost":"332029.53","Total Profit":"146826.54"},{"Region":"Asia","Country":"Maldives","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/13/2014","Order ID":"669419133","Ship Date":"2/22/2014","Units Sold":"4852","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"530226.56","Total Cost":"173895.68","Total Profit":"356330.88"},{"Region":"Europe","Country":"Italy","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"12/23/2015","Order ID":"396223914","Ship Date":"1/7/2016","Units Sold":"316","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"138155.20","Total Cost":"83212.28","Total Profit":"54942.92"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"6/16/2011","Order ID":"386219918","Ship Date":"6/28/2011","Units Sold":"9911","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1083074.08","Total Cost":"355210.24","Total Profit":"727863.84"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"8/30/2010","Order ID":"186330974","Ship Date":"8/31/2010","Units Sold":"8331","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"680892.63","Total Cost":"472117.77","Total Profit":"208774.86"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/11/2017","Order ID":"763793408","Ship Date":"4/26/2017","Units Sold":"2298","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"969503.22","Total Cost":"838057.62","Total Profit":"131445.60"},{"Region":"Europe","Country":"Norway","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"10/11/2016","Order ID":"456156051","Ship Date":"11/28/2016","Units Sold":"5567","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"857652.02","Total Cost":"506207.31","Total Profit":"351444.71"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/13/2011","Order ID":"821280229","Ship Date":"6/5/2011","Units Sold":"3925","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"428924.00","Total Cost":"140672.00","Total Profit":"288252.00"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"4/24/2015","Order ID":"787339770","Ship Date":"5/18/2015","Units Sold":"189","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"79737.21","Total Cost":"68926.41","Total Profit":"10810.80"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"10/4/2013","Order ID":"702821004","Ship Date":"10/24/2013","Units Sold":"9208","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"85910.64","Total Cost":"63719.36","Total Profit":"22191.28"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"11/5/2011","Order ID":"986522758","Ship Date":"11/19/2011","Units Sold":"2862","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"440919.72","Total Cost":"260241.66","Total Profit":"180678.06"},{"Region":"Europe","Country":"Austria","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"10/9/2015","Order ID":"777556359","Ship Date":"11/3/2015","Units Sold":"5061","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"779697.66","Total Cost":"460196.73","Total Profit":"319500.93"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"11/13/2013","Order ID":"185345637","Ship Date":"11/23/2013","Units Sold":"6748","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"551514.04","Total Cost":"382409.16","Total Profit":"169104.88"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/7/2010","Order ID":"739626920","Ship Date":"10/18/2010","Units Sold":"897","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"8369.01","Total Cost":"6207.24","Total Profit":"2161.77"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"8/11/2015","Order ID":"440449035","Ship Date":"9/2/2015","Units Sold":"7512","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5020044.24","Total Cost":"3775080.48","Total Profit":"1244963.76"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/23/2016","Order ID":"508173310","Ship Date":"6/20/2016","Units Sold":"8630","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1316765.40","Total Cost":"840907.20","Total Profit":"475858.20"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/13/2013","Order ID":"433473575","Ship Date":"3/31/2013","Units Sold":"3318","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"157439.10","Total Cost":"105479.22","Total Profit":"51959.88"},{"Region":"Europe","Country":"Austria","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/29/2014","Order ID":"227336156","Ship Date":"11/13/2014","Units Sold":"2675","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"292324.00","Total Cost":"95872.00","Total Profit":"196452.00"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/21/2012","Order ID":"871059882","Ship Date":"4/20/2012","Units Sold":"4831","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"744263.86","Total Cost":"439282.83","Total Profit":"304981.03"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/9/2012","Order ID":"266256082","Ship Date":"8/17/2012","Units Sold":"9946","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6476934.66","Total Cost":"5221252.16","Total Profit":"1255682.50"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"8/2/2012","Order ID":"884848582","Ship Date":"8/5/2012","Units Sold":"5214","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"569785.92","Total Cost":"186869.76","Total Profit":"382916.16"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"5/2/2010","Order ID":"319073712","Ship Date":"5/3/2010","Units Sold":"9857","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"467714.65","Total Cost":"313354.03","Total Profit":"154360.62"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"2/8/2016","Order ID":"731480300","Ship Date":"3/25/2016","Units Sold":"131","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"87543.37","Total Cost":"65832.74","Total Profit":"21710.63"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/7/2011","Order ID":"304929673","Ship Date":"1/22/2011","Units Sold":"4321","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"40314.93","Total Cost":"29901.32","Total Profit":"10413.61"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/30/2011","Order ID":"892595660","Ship Date":"5/26/2011","Units Sold":"7746","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1193348.76","Total Cost":"704343.78","Total Profit":"489004.98"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/23/2011","Order ID":"367964589","Ship Date":"8/30/2011","Units Sold":"7754","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1594997.80","Total Cost":"908070.94","Total Profit":"686926.86"},{"Region":"Asia","Country":"South Korea","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/1/2011","Order ID":"274835288","Ship Date":"6/28/2011","Units Sold":"8724","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1331107.92","Total Cost":"850066.56","Total Profit":"481041.36"},{"Region":"Europe","Country":"San Marino","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/4/2011","Order ID":"877319085","Ship Date":"3/19/2011","Units Sold":"7068","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"772391.04","Total Cost":"253317.12","Total Profit":"519073.92"},{"Region":"Asia","Country":"Bhutan","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/13/2016","Order ID":"709839808","Ship Date":"5/26/2016","Units Sold":"6228","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"295518.60","Total Cost":"197988.12","Total Profit":"97530.48"},{"Region":"Asia","Country":"Tajikistan","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"6/19/2010","Order ID":"627133786","Ship Date":"7/30/2010","Units Sold":"1678","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"258512.68","Total Cost":"152580.54","Total Profit":"105932.14"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/1/2012","Order ID":"654249846","Ship Date":"9/1/2012","Units Sold":"5923","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1218361.10","Total Cost":"693642.53","Total Profit":"524718.57"},{"Region":"Europe","Country":"Moldova ","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"4/10/2012","Order ID":"436549317","Ship Date":"5/27/2012","Units Sold":"3499","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"166027.55","Total Cost":"111233.21","Total Profit":"54794.34"},{"Region":"Europe","Country":"Spain","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/6/2011","Order ID":"589706027","Ship Date":"8/17/2011","Units Sold":"5973","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3991576.71","Total Cost":"3001671.42","Total Profit":"989905.29"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/2/2013","Order ID":"449706304","Ship Date":"9/11/2013","Units Sold":"6944","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1772664.32","Total Cost":"1107012.48","Total Profit":"665651.84"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"5/1/2011","Order ID":"322848975","Ship Date":"5/17/2011","Units Sold":"7041","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4705289.07","Total Cost":"3538384.14","Total Profit":"1166904.93"},{"Region":"Europe","Country":"Norway","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"8/13/2013","Order ID":"135745370","Ship Date":"8/30/2013","Units Sold":"8926","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1836078.20","Total Cost":"1045323.86","Total Profit":"790754.34"},{"Region":"North America","Country":"United States of America","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"9/14/2011","Order ID":"785319316","Ship Date":"10/24/2011","Units Sold":"2292","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"349713.36","Total Cost":"223332.48","Total Profit":"126380.88"},{"Region":"Asia","Country":"India","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"12/21/2012","Order ID":"988807141","Ship Date":"1/11/2013","Units Sold":"8861","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"82673.13","Total Cost":"61318.12","Total Profit":"21355.01"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/7/2014","Order ID":"433757674","Ship Date":"8/16/2014","Units Sold":"7390","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"807579.20","Total Cost":"264857.60","Total Profit":"542721.60"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/27/2014","Order ID":"228032243","Ship Date":"8/1/2014","Units Sold":"8663","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5641432.23","Total Cost":"4547728.48","Total Profit":"1093703.75"},{"Region":"North America","Country":"United States of America","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"11/23/2015","Order ID":"649804675","Ship Date":"12/29/2015","Units Sold":"498","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"40701.54","Total Cost":"28221.66","Total Profit":"12479.88"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"3/27/2015","Order ID":"697561299","Ship Date":"4/30/2015","Units Sold":"2745","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"25610.85","Total Cost":"18995.40","Total Profit":"6615.45"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"11/8/2013","Order ID":"340100944","Ship Date":"11/18/2013","Units Sold":"2282","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"962752.98","Total Cost":"832222.58","Total Profit":"130530.40"},{"Region":"Europe","Country":"Georgia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/5/2014","Order ID":"966534936","Ship Date":"3/12/2014","Units Sold":"8021","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3506781.20","Total Cost":"2112169.93","Total Profit":"1394611.27"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/20/2015","Order ID":"436287105","Ship Date":"11/27/2015","Units Sold":"5904","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"55084.32","Total Cost":"40855.68","Total Profit":"14228.64"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/3/2012","Order ID":"729093778","Ship Date":"3/8/2012","Units Sold":"3906","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"601758.36","Total Cost":"355172.58","Total Profit":"246585.78"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/19/2016","Order ID":"295003783","Ship Date":"4/23/2016","Units Sold":"7030","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"65589.90","Total Cost":"48647.60","Total Profit":"16942.30"},{"Region":"Asia","Country":"Japan","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"12/22/2011","Order ID":"804378449","Ship Date":"2/2/2012","Units Sold":"2313","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"189041.49","Total Cost":"131077.71","Total Profit":"57963.78"},{"Region":"Asia","Country":"North Korea","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"12/20/2010","Order ID":"397891604","Ship Date":"1/1/2011","Units Sold":"3823","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"181401.35","Total Cost":"121533.17","Total Profit":"59868.18"},{"Region":"Asia","Country":"India","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"8/26/2010","Order ID":"436529576","Ship Date":"10/9/2010","Units Sold":"7657","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"625806.61","Total Cost":"433922.19","Total Profit":"191884.42"},{"Region":"Central America and the Caribbean","Country":"Nicaragua","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/24/2013","Order ID":"551591193","Ship Date":"5/16/2013","Units Sold":"6946","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3036791.20","Total Cost":"1829090.18","Total Profit":"1207701.02"},{"Region":"Europe","Country":"Malta","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"9/28/2014","Order ID":"894687783","Ship Date":"11/15/2014","Units Sold":"6852","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1045478.16","Total Cost":"667658.88","Total Profit":"377819.28"},{"Region":"Europe","Country":"Greece","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"7/31/2015","Order ID":"787743175","Ship Date":"8/8/2015","Units Sold":"9566","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"453906.70","Total Cost":"304103.14","Total Profit":"149803.56"},{"Region":"Europe","Country":"Austria","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"7/13/2017","Order ID":"972993695","Ship Date":"7/18/2017","Units Sold":"9311","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1434452.66","Total Cost":"846649.23","Total Profit":"587803.43"},{"Region":"Europe","Country":"Monaco","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"1/3/2012","Order ID":"462988173","Ship Date":"2/1/2012","Units Sold":"7344","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3098360.16","Total Cost":"2678283.36","Total Profit":"420076.80"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"3/14/2014","Order ID":"590587937","Ship Date":"4/14/2014","Units Sold":"6950","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3038540.00","Total Cost":"1830143.50","Total Profit":"1208396.50"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"11/11/2013","Order ID":"958966815","Ship Date":"11/14/2013","Units Sold":"8446","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1301190.76","Total Cost":"767994.78","Total Profit":"533195.98"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/17/2016","Order ID":"791611135","Ship Date":"2/5/2017","Units Sold":"4181","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"637936.98","Total Cost":"407396.64","Total Profit":"230540.34"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"8/5/2011","Order ID":"282319724","Ship Date":"8/18/2011","Units Sold":"3535","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2302027.35","Total Cost":"1855733.60","Total Profit":"446293.75"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/17/2017","Order ID":"145203912","Ship Date":"3/17/2017","Units Sold":"7919","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"865388.32","Total Cost":"283816.96","Total Profit":"581571.36"},{"Region":"Asia","Country":"Vietnam","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"9/5/2012","Order ID":"264687526","Ship Date":"9/10/2012","Units Sold":"5776","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2436836.64","Total Cost":"2106449.44","Total Profit":"330387.20"},{"Region":"Middle East and North Africa","Country":"Afghanistan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"10/20/2015","Order ID":"145506894","Ship Date":"11/23/2015","Units Sold":"7578","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1558794.60","Total Cost":"887459.58","Total Profit":"671335.02"},{"Region":"Europe","Country":"Belgium","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/11/2011","Order ID":"262710845","Ship Date":"6/14/2011","Units Sold":"832","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"363750.40","Total Cost":"219090.56","Total Profit":"144659.84"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"6/27/2015","Order ID":"711660706","Ship Date":"7/11/2015","Units Sold":"5073","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"774038.34","Total Cost":"494313.12","Total Profit":"279725.22"},{"Region":"Europe","Country":"Macedonia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"4/27/2011","Order ID":"758030307","Ship Date":"5/18/2011","Units Sold":"6868","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"561321.64","Total Cost":"389209.56","Total Profit":"172112.08"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"5/4/2013","Order ID":"187805974","Ship Date":"5/20/2013","Units Sold":"4816","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"393611.68","Total Cost":"272922.72","Total Profit":"120688.96"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"8/4/2010","Order ID":"657286536","Ship Date":"9/22/2010","Units Sold":"4547","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"215755.15","Total Cost":"144549.13","Total Profit":"71206.02"},{"Region":"Asia","Country":"Nepal","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"11/24/2015","Order ID":"743083322","Ship Date":"12/23/2015","Units Sold":"3723","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2487969.21","Total Cost":"1870956.42","Total Profit":"617012.79"},{"Region":"Europe","Country":"Spain","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"8/25/2016","Order ID":"892120158","Ship Date":"9/4/2016","Units Sold":"7035","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1073400.30","Total Cost":"685490.40","Total Profit":"387909.90"},{"Region":"Europe","Country":"Slovenia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"6/10/2016","Order ID":"271633374","Ship Date":"6/14/2016","Units Sold":"1207","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"185950.42","Total Cost":"109752.51","Total Profit":"76197.91"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"2/26/2016","Order ID":"819171798","Ship Date":"3/10/2016","Units Sold":"9994","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2551268.32","Total Cost":"1593243.48","Total Profit":"958024.84"},{"Region":"Asia","Country":"Laos","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/26/2010","Order ID":"492596757","Ship Date":"3/2/2010","Units Sold":"9182","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5979410.22","Total Cost":"4820182.72","Total Profit":"1159227.50"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"10/22/2012","Order ID":"920082080","Ship Date":"11/20/2012","Units Sold":"1589","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"670383.21","Total Cost":"579492.41","Total Profit":"90890.80"},{"Region":"Europe","Country":"Greece","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"10/28/2016","Order ID":"650114095","Ship Date":"11/2/2016","Units Sold":"2062","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1377972.74","Total Cost":"1036237.48","Total Profit":"341735.26"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/13/2012","Order ID":"101491630","Ship Date":"4/20/2012","Units Sold":"2483","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1047552.87","Total Cost":"905525.27","Total Profit":"142027.60"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"9/12/2012","Order ID":"213326013","Ship Date":"10/28/2012","Units Sold":"6763","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1041907.78","Total Cost":"614959.59","Total Profit":"426948.19"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/27/2014","Order ID":"195041072","Ship Date":"5/2/2014","Units Sold":"5842","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"638413.76","Total Cost":"209377.28","Total Profit":"429036.48"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"10/11/2013","Order ID":"676373136","Ship Date":"11/7/2013","Units Sold":"2696","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"294618.88","Total Cost":"96624.64","Total Profit":"197994.24"},{"Region":"Europe","Country":"Portugal","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"2/25/2013","Order ID":"557371032","Ship Date":"3/26/2013","Units Sold":"7329","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"800913.12","Total Cost":"262671.36","Total Profit":"538241.76"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"3/31/2015","Order ID":"158396089","Ship Date":"4/13/2015","Units Sold":"1777","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1187515.79","Total Cost":"893013.58","Total Profit":"294502.21"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"8/24/2012","Order ID":"770122134","Ship Date":"10/2/2012","Units Sold":"5108","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"558202.24","Total Cost":"183070.72","Total Profit":"375131.52"},{"Region":"North America","Country":"Canada","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/2/2014","Order ID":"603535497","Ship Date":"3/31/2014","Units Sold":"8420","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1284723.60","Total Cost":"820444.80","Total Profit":"464278.80"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"9/26/2010","Order ID":"639935004","Ship Date":"11/11/2010","Units Sold":"9843","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1501844.94","Total Cost":"959101.92","Total Profit":"542743.02"},{"Region":"Europe","Country":"Netherlands","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"1/30/2017","Order ID":"580931985","Ship Date":"2/12/2017","Units Sold":"9539","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"779622.47","Total Cost":"540575.13","Total Profit":"239047.34"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/27/2014","Order ID":"198450267","Ship Date":"1/11/2015","Units Sold":"4699","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"716973.42","Total Cost":"457870.56","Total Profit":"259102.86"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/11/2017","Order ID":"684726178","Ship Date":"4/28/2017","Units Sold":"4547","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"935317.90","Total Cost":"532499.17","Total Profit":"402818.73"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/25/2011","Order ID":"602308547","Ship Date":"12/8/2011","Units Sold":"5339","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2334210.80","Total Cost":"1405918.87","Total Profit":"928291.93"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/2/2017","Order ID":"834058701","Ship Date":"7/5/2017","Units Sold":"5359","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"49999.47","Total Cost":"37084.28","Total Profit":"12915.19"},{"Region":"Asia","Country":"Thailand","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/23/2012","Order ID":"533150470","Ship Date":"10/5/2012","Units Sold":"9927","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"2041983.90","Total Cost":"1162550.97","Total Profit":"879432.93"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/29/2014","Order ID":"273070180","Ship Date":"12/18/2014","Units Sold":"6389","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"974833.62","Total Cost":"622544.16","Total Profit":"352289.46"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/3/2015","Order ID":"697616660","Ship Date":"10/6/2015","Units Sold":"9127","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"997398.56","Total Cost":"327111.68","Total Profit":"670286.88"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/16/2015","Order ID":"270901238","Ship Date":"11/28/2015","Units Sold":"4551","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"936140.70","Total Cost":"532967.61","Total Profit":"403173.09"},{"Region":"North America","Country":"Mexico","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/24/2012","Order ID":"227347743","Ship Date":"2/12/2013","Units Sold":"6104","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"289634.80","Total Cost":"194046.16","Total Profit":"95588.64"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"9/5/2013","Order ID":"521692502","Ship Date":"10/10/2013","Units Sold":"9259","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4048034.80","Total Cost":"2438172.47","Total Profit":"1609862.33"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/12/2014","Order ID":"278984344","Ship Date":"2/1/2014","Units Sold":"6522","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1664936.16","Total Cost":"1039737.24","Total Profit":"625198.92"},{"Region":"Asia","Country":"India","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/31/2011","Order ID":"944584596","Ship Date":"5/9/2011","Units Sold":"2427","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"499233.90","Total Cost":"284225.97","Total Profit":"215007.93"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/13/2014","Order ID":"434167087","Ship Date":"12/26/2014","Units Sold":"8544","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1316288.64","Total Cost":"776905.92","Total Profit":"539382.72"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"2/16/2013","Order ID":"783718144","Ship Date":"3/18/2013","Units Sold":"8470","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5515748.70","Total Cost":"4446411.20","Total Profit":"1069337.50"},{"Region":"Europe","Country":"Russia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/2/2013","Order ID":"499536597","Ship Date":"10/15/2013","Units Sold":"2835","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"723718.80","Total Cost":"451955.70","Total Profit":"271763.10"},{"Region":"Europe","Country":"Slovenia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/21/2010","Order ID":"408233773","Ship Date":"11/9/2010","Units Sold":"4300","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"351439.00","Total Cost":"243681.00","Total Profit":"107758.00"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"5/9/2010","Order ID":"506733500","Ship Date":"5/21/2010","Units Sold":"2558","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1709434.66","Total Cost":"1285497.32","Total Profit":"423937.34"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"6/16/2012","Order ID":"412272107","Ship Date":"7/30/2012","Units Sold":"9333","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6236963.91","Total Cost":"4690205.82","Total Profit":"1546758.09"},{"Region":"Europe","Country":"Switzerland","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/16/2014","Order ID":"712398421","Ship Date":"3/8/2014","Units Sold":"3379","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"862591.12","Total Cost":"538680.18","Total Profit":"323910.94"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/7/2013","Order ID":"714973771","Ship Date":"8/6/2013","Units Sold":"5482","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"599072.96","Total Cost":"196474.88","Total Profit":"402598.08"},{"Region":"Europe","Country":"Austria","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/17/2013","Order ID":"698171985","Ship Date":"8/21/2013","Units Sold":"3460","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1512712.00","Total Cost":"911121.80","Total Profit":"601590.20"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"12/18/2010","Order ID":"560479390","Ship Date":"1/20/2011","Units Sold":"7161","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1103223.66","Total Cost":"651149.73","Total Profit":"452073.93"},{"Region":"Sub-Saharan Africa","Country":"Comoros","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"6/12/2014","Order ID":"270694816","Ship Date":"7/30/2014","Units Sold":"3466","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"32337.78","Total Cost":"23984.72","Total Profit":"8353.06"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/5/2011","Order ID":"317929589","Ship Date":"6/16/2011","Units Sold":"1285","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"196065.30","Total Cost":"125210.40","Total Profit":"70854.90"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/28/2016","Order ID":"361607539","Ship Date":"8/14/2016","Units Sold":"6561","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1674892.08","Total Cost":"1045954.62","Total Profit":"628937.46"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"7/4/2015","Order ID":"581464993","Ship Date":"7/10/2015","Units Sold":"7268","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4732994.28","Total Cost":"3815409.28","Total Profit":"917585.00"},{"Region":"Europe","Country":"San Marino","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/29/2013","Order ID":"327550780","Ship Date":"1/3/2014","Units Sold":"8410","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"399054.50","Total Cost":"267353.90","Total Profit":"131700.60"},{"Region":"Europe","Country":"Lithuania","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"1/23/2011","Order ID":"370226228","Ship Date":"3/5/2011","Units Sold":"7023","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1792831.44","Total Cost":"1119606.66","Total Profit":"673224.78"},{"Region":"Europe","Country":"Malta","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/28/2010","Order ID":"650165164","Ship Date":"10/14/2010","Units Sold":"7175","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1105380.50","Total Cost":"652422.75","Total Profit":"452957.75"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"3/24/2010","Order ID":"728353917","Ship Date":"4/14/2010","Units Sold":"4965","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"46323.45","Total Cost":"34357.80","Total Profit":"11965.65"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"1/25/2012","Order ID":"236091315","Ship Date":"1/25/2012","Units Sold":"3522","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"542599.32","Total Cost":"320255.46","Total Profit":"222343.86"},{"Region":"Middle East and North Africa","Country":"Saudi Arabia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"12/19/2011","Order ID":"224988687","Ship Date":"1/24/2012","Units Sold":"8007","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"654412.11","Total Cost":"453756.69","Total Profit":"200655.42"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"7/25/2010","Order ID":"916969859","Ship Date":"8/7/2010","Units Sold":"613","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"258618.57","Total Cost":"223554.97","Total Profit":"35063.60"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/19/2017","Order ID":"354271161","Ship Date":"3/26/2017","Units Sold":"5564","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1144514.80","Total Cost":"651600.04","Total Profit":"492914.76"},{"Region":"Europe","Country":"Estonia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/11/2015","Order ID":"249441421","Ship Date":"8/21/2015","Units Sold":"4114","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"336237.22","Total Cost":"233140.38","Total Profit":"103096.84"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"5/7/2013","Order ID":"135341966","Ship Date":"6/10/2013","Units Sold":"9550","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1043624.00","Total Cost":"342272.00","Total Profit":"701352.00"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"7/3/2015","Order ID":"515146625","Ship Date":"7/6/2015","Units Sold":"2189","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1462843.03","Total Cost":"1100060.06","Total Profit":"362782.97"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/22/2012","Order ID":"612341725","Ship Date":"10/28/2012","Units Sold":"4379","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"900760.30","Total Cost":"512824.69","Total Profit":"387935.61"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/1/2016","Order ID":"620726096","Ship Date":"3/6/2016","Units Sold":"5501","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"261022.45","Total Cost":"174876.79","Total Profit":"86145.66"},{"Region":"Asia","Country":"Taiwan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/29/2014","Order ID":"354411065","Ship Date":"8/11/2014","Units Sold":"6965","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4654500.55","Total Cost":"3500191.10","Total Profit":"1154309.45"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/10/2017","Order ID":"597820460","Ship Date":"4/5/2017","Units Sold":"7214","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1483919.80","Total Cost":"844831.54","Total Profit":"639088.26"},{"Region":"Europe","Country":"Spain","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"9/5/2011","Order ID":"855690610","Ship Date":"10/18/2011","Units Sold":"6722","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2835944.58","Total Cost":"2451446.18","Total Profit":"384498.40"},{"Region":"Europe","Country":"Estonia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/14/2013","Order ID":"703070342","Ship Date":"2/21/2013","Units Sold":"2993","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"244617.89","Total Cost":"169613.31","Total Profit":"75004.58"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/10/2014","Order ID":"235320985","Ship Date":"9/30/2014","Units Sold":"5564","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"454745.72","Total Cost":"315311.88","Total Profit":"139433.84"},{"Region":"Asia","Country":"South Korea","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"11/29/2014","Order ID":"518116366","Ship Date":"1/6/2015","Units Sold":"1001","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"152732.58","Total Cost":"97537.44","Total Profit":"55195.14"},{"Region":"Asia","Country":"Philippines","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"1/12/2013","Order ID":"437442815","Ship Date":"1/13/2013","Units Sold":"7905","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3335040.45","Total Cost":"2882874.45","Total Profit":"452166.00"},{"Region":"Asia","Country":"Indonesia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"4/1/2013","Order ID":"749599158","Ship Date":"4/10/2013","Units Sold":"1904","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"290512.32","Total Cost":"185525.76","Total Profit":"104986.56"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"3/28/2013","Order ID":"931196725","Ship Date":"4/21/2013","Units Sold":"659","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"72015.52","Total Cost":"23618.56","Total Profit":"48396.96"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"7/15/2015","Order ID":"529159343","Ship Date":"8/31/2015","Units Sold":"8863","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1365433.78","Total Cost":"805912.59","Total Profit":"559521.19"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"3/1/2016","Order ID":"510723340","Ship Date":"4/11/2016","Units Sold":"3241","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"499308.46","Total Cost":"294704.13","Total Profit":"204604.33"},{"Region":"Sub-Saharan Africa","Country":"Djibouti","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/3/2016","Order ID":"113437545","Ship Date":"1/10/2016","Units Sold":"7545","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1151216.10","Total Cost":"735184.80","Total Profit":"416031.30"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/29/2016","Order ID":"895163285","Ship Date":"1/11/2017","Units Sold":"7563","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1165155.78","Total Cost":"687703.59","Total Profit":"477452.19"},{"Region":"Asia","Country":"North Korea","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/12/2010","Order ID":"884074389","Ship Date":"10/23/2010","Units Sold":"6113","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4085134.51","Total Cost":"3072027.02","Total Profit":"1013107.49"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"10/16/2012","Order ID":"428657186","Ship Date":"11/3/2012","Units Sold":"8042","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"75031.86","Total Cost":"55650.64","Total Profit":"19381.22"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/9/2013","Order ID":"847710502","Ship Date":"2/18/2013","Units Sold":"5230","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"797993.40","Total Cost":"509611.20","Total Profit":"288382.20"},{"Region":"Asia","Country":"Vietnam","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"2/6/2010","Order ID":"380345666","Ship Date":"3/23/2010","Units Sold":"1590","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"129950.70","Total Cost":"90105.30","Total Profit":"39845.40"},{"Region":"Asia","Country":"Cambodia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/28/2015","Order ID":"935986506","Ship Date":"3/8/2015","Units Sold":"8062","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1658353.40","Total Cost":"944140.82","Total Profit":"714212.58"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"5/7/2017","Order ID":"444369351","Ship Date":"6/19/2017","Units Sold":"7621","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4962871.41","Total Cost":"4000720.16","Total Profit":"962151.25"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"3/3/2011","Order ID":"505543029","Ship Date":"3/17/2011","Units Sold":"271","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"69180.88","Total Cost":"43202.82","Total Profit":"25978.06"},{"Region":"Sub-Saharan Africa","Country":"Equatorial Guinea","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"7/27/2014","Order ID":"539868867","Ship Date":"8/22/2014","Units Sold":"8050","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5379573.50","Total Cost":"4045447.00","Total Profit":"1334126.50"},{"Region":"Europe","Country":"Sweden","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/27/2012","Order ID":"938020694","Ship Date":"9/2/2012","Units Sold":"23","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"2513.44","Total Cost":"824.32","Total Profit":"1689.12"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/23/2013","Order ID":"810984838","Ship Date":"1/13/2014","Units Sold":"7290","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1499553.00","Total Cost":"853731.90","Total Profit":"645821.10"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"4/20/2017","Order ID":"240060126","Ship Date":"5/29/2017","Units Sold":"7981","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"652287.13","Total Cost":"452283.27","Total Profit":"200003.86"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"7/17/2014","Order ID":"726857888","Ship Date":"8/1/2014","Units Sold":"2256","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"107047.20","Total Cost":"71718.24","Total Profit":"35328.96"},{"Region":"Sub-Saharan Africa","Country":"Zimbabwe","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"2/15/2010","Order ID":"243301951","Ship Date":"3/1/2010","Units Sold":"7309","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1503461.30","Total Cost":"855956.99","Total Profit":"647504.31"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/12/2017","Order ID":"881628644","Ship Date":"2/22/2017","Units Sold":"2362","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1538158.02","Total Cost":"1239955.52","Total Profit":"298202.50"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/27/2015","Order ID":"304386794","Ship Date":"8/16/2015","Units Sold":"3671","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"401166.88","Total Cost":"131568.64","Total Profit":"269598.24"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"11/19/2016","Order ID":"294437730","Ship Date":"12/9/2016","Units Sold":"9522","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4017236.58","Total Cost":"3472578.18","Total Profit":"544658.40"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/9/2014","Order ID":"904955279","Ship Date":"9/5/2014","Units Sold":"5232","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1076222.40","Total Cost":"612719.52","Total Profit":"463502.88"},{"Region":"Europe","Country":"Spain","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"11/29/2010","Order ID":"909425771","Ship Date":"12/19/2010","Units Sold":"8150","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"890632.00","Total Cost":"292096.00","Total Profit":"598536.00"},{"Region":"Europe","Country":"Sweden","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"10/30/2012","Order ID":"951648032","Ship Date":"11/16/2012","Units Sold":"2655","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"405099.90","Total Cost":"258703.20","Total Profit":"146396.70"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"4/24/2013","Order ID":"395733392","Ship Date":"6/12/2013","Units Sold":"5160","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"421726.80","Total Cost":"292417.20","Total Profit":"129309.60"},{"Region":"Asia","Country":"Vietnam","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"2/25/2010","Order ID":"476105678","Ship Date":"4/1/2010","Units Sold":"9105","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2324324.40","Total Cost":"1451519.10","Total Profit":"872805.30"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"5/14/2017","Order ID":"247501218","Ship Date":"5/21/2017","Units Sold":"9965","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4356698.00","Total Cost":"2624083.45","Total Profit":"1732614.55"},{"Region":"Sub-Saharan Africa","Country":"The Gambia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/14/2015","Order ID":"634968841","Ship Date":"1/20/2016","Units Sold":"245","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"62543.60","Total Cost":"39057.90","Total Profit":"23485.70"},{"Region":"Sub-Saharan Africa","Country":"Cape Verde","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"9/8/2010","Order ID":"383869874","Ship Date":"9/16/2010","Units Sold":"4481","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2918072.01","Total Cost":"2352345.76","Total Profit":"565726.25"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"3/17/2011","Order ID":"109878146","Ship Date":"5/1/2011","Units Sold":"4240","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1853728.00","Total Cost":"1116519.20","Total Profit":"737208.80"},{"Region":"Asia","Country":"Cambodia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"1/21/2013","Order ID":"948979985","Ship Date":"2/19/2013","Units Sold":"3121","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"148091.45","Total Cost":"99216.59","Total Profit":"48874.86"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/25/2016","Order ID":"507474219","Ship Date":"10/2/2016","Units Sold":"1754","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"739995.06","Total Cost":"639666.26","Total Profit":"100328.80"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/16/2015","Order ID":"511972177","Ship Date":"11/23/2015","Units Sold":"2799","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1223722.80","Total Cost":"737060.67","Total Profit":"486662.13"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"1/19/2017","Order ID":"959397685","Ship Date":"2/1/2017","Units Sold":"5950","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"650216.00","Total Cost":"213248.00","Total Profit":"436968.00"},{"Region":"Europe","Country":"Slovenia","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"6/2/2012","Order ID":"566987073","Ship Date":"7/17/2012","Units Sold":"2929","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"451241.74","Total Cost":"266333.97","Total Profit":"184907.77"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"3/19/2014","Order ID":"822289168","Ship Date":"4/16/2014","Units Sold":"2493","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1623466.53","Total Cost":"1308725.28","Total Profit":"314741.25"},{"Region":"Australia and Oceania","Country":"Tuvalu","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"1/6/2013","Order ID":"133165299","Ship Date":"1/9/2013","Units Sold":"5426","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2372247.20","Total Cost":"1428828.58","Total Profit":"943418.62"},{"Region":"Asia","Country":"Mongolia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"11/2/2011","Order ID":"577789294","Ship Date":"11/2/2011","Units Sold":"9547","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"453005.15","Total Cost":"303499.13","Total Profit":"149506.02"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"9/27/2014","Order ID":"254647481","Ship Date":"10/8/2014","Units Sold":"4703","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1984148.67","Total Cost":"1715137.07","Total Profit":"269011.60"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"7/5/2015","Order ID":"932538688","Ship Date":"7/19/2015","Units Sold":"7776","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3399667.20","Total Cost":"2047654.08","Total Profit":"1352013.12"},{"Region":"Middle East and North Africa","Country":"Yemen","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"7/20/2016","Order ID":"400574243","Ship Date":"7/24/2016","Units Sold":"7675","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"627277.75","Total Cost":"434942.25","Total Profit":"192335.50"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/26/2017","Order ID":"118177974","Ship Date":"8/8/2017","Units Sold":"343","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"16275.35","Total Cost":"10903.97","Total Profit":"5371.38"},{"Region":"Sub-Saharan Africa","Country":"Tanzania","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"9/27/2011","Order ID":"265086209","Ship Date":"11/2/2011","Units Sold":"3755","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2509353.85","Total Cost":"1887037.70","Total Profit":"622316.15"},{"Region":"Europe","Country":"Croatia","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"3/31/2012","Order ID":"191347777","Ship Date":"4/5/2012","Units Sold":"2914","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"318441.92","Total Cost":"104437.76","Total Profit":"214004.16"},{"Region":"Sub-Saharan Africa","Country":"Niger","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"8/15/2010","Order ID":"667324006","Ship Date":"9/2/2010","Units Sold":"4858","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3246455.66","Total Cost":"2441339.32","Total Profit":"805116.34"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/25/2010","Order ID":"733688724","Ship Date":"11/3/2010","Units Sold":"3652","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"932282.56","Total Cost":"582201.84","Total Profit":"350080.72"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/11/2010","Order ID":"851428258","Ship Date":"5/8/2010","Units Sold":"5397","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2359568.40","Total Cost":"1421192.01","Total Profit":"938376.39"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"4/18/2011","Order ID":"651841437","Ship Date":"4/26/2011","Units Sold":"3222","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"263334.06","Total Cost":"182590.74","Total Profit":"80743.32"},{"Region":"Asia","Country":"Singapore","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"3/27/2017","Order ID":"286539590","Ship Date":"3/28/2017","Units Sold":"2287","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"186916.51","Total Cost":"129604.29","Total Profit":"57312.22"},{"Region":"Europe","Country":"Belgium","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/5/2013","Order ID":"877446544","Ship Date":"9/21/2013","Units Sold":"4786","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"737331.16","Total Cost":"435190.98","Total Profit":"302140.18"},{"Region":"Europe","Country":"Austria","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/20/2017","Order ID":"466798627","Ship Date":"5/2/2017","Units Sold":"4942","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1016569.40","Total Cost":"578757.62","Total Profit":"437811.78"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"12/11/2011","Order ID":"767144668","Ship Date":"1/11/2012","Units Sold":"4010","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"611845.80","Total Cost":"390734.40","Total Profit":"221111.40"},{"Region":"Europe","Country":"Serbia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/19/2012","Order ID":"411345994","Ship Date":"1/2/2013","Units Sold":"5275","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2225469.75","Total Cost":"1923739.75","Total Profit":"301730.00"},{"Region":"Europe","Country":"Czech Republic","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/15/2010","Order ID":"802576434","Ship Date":"2/17/2010","Units Sold":"9057","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"84501.81","Total Cost":"62674.44","Total Profit":"21827.37"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"9/14/2016","Order ID":"264322316","Ship Date":"10/25/2016","Units Sold":"7702","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"629484.46","Total Cost":"436472.34","Total Profit":"193012.12"},{"Region":"Asia","Country":"India","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/24/2013","Order ID":"790382468","Ship Date":"7/26/2013","Units Sold":"591","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"48302.43","Total Cost":"33491.97","Total Profit":"14810.46"},{"Region":"Europe","Country":"Hungary","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"4/1/2012","Order ID":"394868218","Ship Date":"4/13/2012","Units Sold":"9136","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"998382.08","Total Cost":"327434.24","Total Profit":"670947.84"},{"Region":"Europe","Country":"Finland","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"H","Order Date":"8/6/2014","Order ID":"762203395","Ship Date":"8/31/2014","Units Sold":"1777","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"194190.56","Total Cost":"63687.68","Total Profit":"130502.88"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"8/9/2015","Order ID":"497124326","Ship Date":"9/7/2015","Units Sold":"8990","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1849243.00","Total Cost":"1052818.90","Total Profit":"796424.10"},{"Region":"Europe","Country":"Montenegro","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/13/2015","Order ID":"974679839","Ship Date":"4/1/2015","Units Sold":"8279","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"77243.07","Total Cost":"57290.68","Total Profit":"19952.39"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"5/16/2014","Order ID":"490231263","Ship Date":"5/20/2014","Units Sold":"9180","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3872950.20","Total Cost":"3347854.20","Total Profit":"525096.00"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"5/28/2011","Order ID":"109452426","Ship Date":"6/30/2011","Units Sold":"8260","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"77065.80","Total Cost":"57159.20","Total Profit":"19906.60"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/15/2013","Order ID":"518329656","Ship Date":"3/29/2013","Units Sold":"4118","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2751935.86","Total Cost":"2069459.72","Total Profit":"682476.14"},{"Region":"Australia and Oceania","Country":"Federated States of Micronesia","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"5/19/2016","Order ID":"673161780","Ship Date":"7/7/2016","Units Sold":"2385","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"113168.25","Total Cost":"75819.15","Total Profit":"37349.10"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"M","Order Date":"1/21/2011","Order ID":"950560128","Ship Date":"3/10/2011","Units Sold":"720","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"183801.60","Total Cost":"114782.40","Total Profit":"69019.20"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"11/24/2014","Order ID":"897448527","Ship Date":"12/6/2014","Units Sold":"3817","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"181116.65","Total Cost":"121342.43","Total Profit":"59774.22"},{"Region":"Asia","Country":"China","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"5/12/2016","Order ID":"581063306","Ship Date":"5/17/2016","Units Sold":"8400","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"686532.00","Total Cost":"476028.00","Total Profit":"210504.00"},{"Region":"Australia and Oceania","Country":"Palau","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/29/2016","Order ID":"138953292","Ship Date":"5/29/2016","Units Sold":"8222","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1254512.76","Total Cost":"801151.68","Total Profit":"453361.08"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/24/2016","Order ID":"228979814","Ship Date":"9/25/2016","Units Sold":"9070","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5906474.70","Total Cost":"4761387.20","Total Profit":"1145087.50"},{"Region":"Europe","Country":"Ireland","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/18/2016","Order ID":"679316699","Ship Date":"11/9/2016","Units Sold":"3762","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"960363.36","Total Cost":"599738.04","Total Profit":"360625.32"},{"Region":"Europe","Country":"Andorra","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/21/2016","Order ID":"938450276","Ship Date":"10/31/2016","Units Sold":"7146","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1469932.20","Total Cost":"836868.06","Total Profit":"633064.14"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"4/28/2014","Order ID":"525179374","Ship Date":"5/18/2014","Units Sold":"1102","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"10281.66","Total Cost":"7625.84","Total Profit":"2655.82"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"7/20/2015","Order ID":"378615319","Ship Date":"8/10/2015","Units Sold":"9541","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2435626.48","Total Cost":"1521026.22","Total Profit":"914600.26"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"5/22/2016","Order ID":"608181941","Ship Date":"6/11/2016","Units Sold":"3406","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"278372.38","Total Cost":"193018.02","Total Profit":"85354.36"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/26/2013","Order ID":"943615567","Ship Date":"12/1/2013","Units Sold":"5670","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"873520.20","Total Cost":"515573.10","Total Profit":"357947.10"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/25/2017","Order ID":"284965026","Ship Date":"4/22/2017","Units Sold":"6339","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4128020.19","Total Cost":"3327721.44","Total Profit":"800298.75"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"5/14/2014","Order ID":"752591645","Ship Date":"5/31/2014","Units Sold":"7447","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"353360.15","Total Cost":"236740.13","Total Profit":"116620.02"},{"Region":"Europe","Country":"Romania","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"12/19/2012","Order ID":"937169253","Ship Date":"1/1/2013","Units Sold":"8063","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2058322.64","Total Cost":"1285403.46","Total Profit":"772919.18"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"4/7/2014","Order ID":"849684178","Ship Date":"5/18/2014","Units Sold":"9285","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3917248.65","Total Cost":"3386146.65","Total Profit":"531102.00"},{"Region":"Asia","Country":"Nepal","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"10/7/2016","Order ID":"571435248","Ship Date":"10/17/2016","Units Sold":"9243","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6019134.03","Total Cost":"4852205.28","Total Profit":"1166928.75"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"6/23/2012","Order ID":"704033792","Ship Date":"8/8/2012","Units Sold":"8099","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3416887.11","Total Cost":"2953624.31","Total Profit":"463262.80"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/23/2013","Order ID":"119403636","Ship Date":"6/3/2013","Units Sold":"3044","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1284233.16","Total Cost":"1110116.36","Total Profit":"174116.80"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"6/7/2017","Order ID":"909781110","Ship Date":"7/10/2017","Units Sold":"3303","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"156727.35","Total Cost":"105002.37","Total Profit":"51724.98"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"3/22/2012","Order ID":"737715041","Ship Date":"4/15/2012","Units Sold":"5129","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"419193.17","Total Cost":"290660.43","Total Profit":"128532.74"},{"Region":"Asia","Country":"Indonesia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/27/2016","Order ID":"486066758","Ship Date":"10/12/2016","Units Sold":"6810","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1039069.80","Total Cost":"663566.40","Total Profit":"375503.40"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"12/15/2016","Order ID":"208010089","Ship Date":"1/4/2017","Units Sold":"3663","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1601463.60","Total Cost":"964577.79","Total Profit":"636885.81"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"1/16/2015","Order ID":"477031362","Ship Date":"2/4/2015","Units Sold":"3035","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"463080.30","Total Cost":"295730.40","Total Profit":"167349.90"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/18/2010","Order ID":"136929404","Ship Date":"7/17/2010","Units Sold":"9308","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4069457.60","Total Cost":"2451075.64","Total Profit":"1618381.96"},{"Region":"Central America and the Caribbean","Country":"Saint Lucia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/22/2011","Order ID":"351815545","Ship Date":"5/25/2011","Units Sold":"8893","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"82971.69","Total Cost":"61539.56","Total Profit":"21432.13"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"5/16/2015","Order ID":"556113612","Ship Date":"7/3/2015","Units Sold":"5231","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"805887.86","Total Cost":"475654.83","Total Profit":"330233.03"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/15/2013","Order ID":"704559934","Ship Date":"12/22/2013","Units Sold":"3796","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"584811.76","Total Cost":"345170.28","Total Profit":"239641.48"},{"Region":"Europe","Country":"Italy","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"10/10/2010","Order ID":"822203338","Ship Date":"11/12/2010","Units Sold":"7094","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"66187.02","Total Cost":"49090.48","Total Profit":"17096.54"},{"Region":"Europe","Country":"Macedonia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/9/2010","Order ID":"554405152","Ship Date":"8/15/2010","Units Sold":"9660","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"458367.00","Total Cost":"307091.40","Total Profit":"151275.60"},{"Region":"Australia and Oceania","Country":"Vanuatu","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/5/2015","Order ID":"516839206","Ship Date":"7/7/2015","Units Sold":"3061","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1338269.20","Total Cost":"806053.13","Total Profit":"532216.07"},{"Region":"Middle East and North Africa","Country":"Algeria","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/18/2013","Order ID":"945491826","Ship Date":"6/24/2013","Units Sold":"897","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"599438.19","Total Cost":"450778.38","Total Profit":"148659.81"},{"Region":"Europe","Country":"Bosnia and Herzegovina","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/12/2012","Order ID":"346661841","Ship Date":"7/24/2012","Units Sold":"3797","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1660048.40","Total Cost":"999864.01","Total Profit":"660184.39"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"12/5/2013","Order ID":"446960580","Ship Date":"1/19/2014","Units Sold":"4423","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"909811.10","Total Cost":"517977.53","Total Profit":"391833.57"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/25/2016","Order ID":"343311870","Ship Date":"10/7/2016","Units Sold":"2466","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"117011.70","Total Cost":"78394.14","Total Profit":"38617.56"},{"Region":"Europe","Country":"Croatia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/7/2012","Order ID":"552952039","Ship Date":"11/30/2012","Units Sold":"9651","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4219417.20","Total Cost":"2541397.83","Total Profit":"1678019.37"},{"Region":"Australia and Oceania","Country":"Solomon Islands","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"10/10/2014","Order ID":"763429915","Ship Date":"10/24/2014","Units Sold":"4732","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"973372.40","Total Cost":"554164.52","Total Profit":"419207.88"},{"Region":"Asia","Country":"Philippines","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"12/28/2012","Order ID":"282606828","Ship Date":"1/2/2013","Units Sold":"8495","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"403087.75","Total Cost":"270056.05","Total Profit":"133031.70"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/8/2010","Order ID":"288656604","Ship Date":"8/2/2010","Units Sold":"8759","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1336448.22","Total Cost":"853476.96","Total Profit":"482971.26"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"6/2/2011","Order ID":"680065572","Ship Date":"6/18/2011","Units Sold":"5370","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"254806.50","Total Cost":"170712.30","Total Profit":"84094.20"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"1/16/2017","Order ID":"525632560","Ship Date":"1/24/2017","Units Sold":"5210","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"48609.30","Total Cost":"36053.20","Total Profit":"12556.10"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"8/30/2014","Order ID":"314468896","Ship Date":"10/15/2014","Units Sold":"7189","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"587556.97","Total Cost":"407400.63","Total Profit":"180156.34"},{"Region":"Europe","Country":"Switzerland","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"7/18/2011","Order ID":"605998408","Ship Date":"7/26/2011","Units Sold":"7250","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1491325.00","Total Cost":"849047.50","Total Profit":"642277.50"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"1/7/2016","Order ID":"679957425","Ship Date":"2/20/2016","Units Sold":"3367","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1472052.40","Total Cost":"886632.11","Total Profit":"585420.29"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"12/21/2010","Order ID":"786394774","Ship Date":"1/23/2011","Units Sold":"544","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"83003.52","Total Cost":"53007.36","Total Profit":"29996.16"},{"Region":"Europe","Country":"Denmark","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/28/2010","Order ID":"795671784","Ship Date":"9/20/2010","Units Sold":"5817","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2454134.13","Total Cost":"2121401.73","Total Profit":"332732.40"},{"Region":"Europe","Country":"France","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"6/14/2011","Order ID":"648462283","Ship Date":"6/14/2011","Units Sold":"3255","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"496647.90","Total Cost":"317167.20","Total Profit":"179480.70"},{"Region":"North America","Country":"Mexico","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"10/19/2010","Order ID":"805752599","Ship Date":"10/30/2010","Units Sold":"8954","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3914688.80","Total Cost":"2357856.82","Total Profit":"1556831.98"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"12/30/2010","Order ID":"898841559","Ship Date":"2/12/2011","Units Sold":"6047","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1243867.90","Total Cost":"708164.17","Total Profit":"535703.73"},{"Region":"Asia","Country":"Japan","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/29/2015","Order ID":"179340493","Ship Date":"7/15/2015","Units Sold":"9692","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6476872.84","Total Cost":"4870617.68","Total Profit":"1606255.16"},{"Region":"Sub-Saharan Africa","Country":"Senegal","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/4/2017","Order ID":"669173228","Ship Date":"2/11/2017","Units Sold":"2084","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1357121.64","Total Cost":"1094016.64","Total Profit":"263105.00"},{"Region":"Sub-Saharan Africa","Country":"South Sudan","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/13/2010","Order ID":"410576093","Ship Date":"4/11/2010","Units Sold":"7445","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3254954.00","Total Cost":"1960491.85","Total Profit":"1294462.15"},{"Region":"Europe","Country":"Estonia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/28/2016","Order ID":"216097915","Ship Date":"7/17/2016","Units Sold":"7030","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"65589.90","Total Cost":"48647.60","Total Profit":"16942.30"},{"Region":"Europe","Country":"Germany","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/22/2013","Order ID":"518600022","Ship Date":"2/14/2013","Units Sold":"4126","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1740718.14","Total Cost":"1504710.94","Total Profit":"236007.20"},{"Region":"Europe","Country":"Norway","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/17/2012","Order ID":"921256244","Ship Date":"9/25/2012","Units Sold":"9050","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"429422.50","Total Cost":"287699.50","Total Profit":"141723.00"},{"Region":"Asia","Country":"China","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"7/2/2013","Order ID":"647552907","Ship Date":"7/5/2013","Units Sold":"4150","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"639349.00","Total Cost":"377359.50","Total Profit":"261989.50"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/7/2011","Order ID":"791288840","Ship Date":"5/15/2011","Units Sold":"8807","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3715585.23","Total Cost":"3211824.83","Total Profit":"503760.40"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"6/24/2010","Order ID":"266575372","Ship Date":"7/4/2010","Units Sold":"4431","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"911456.70","Total Cost":"518914.41","Total Profit":"392542.29"},{"Region":"North America","Country":"Canada","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"6/24/2012","Order ID":"757836329","Ship Date":"6/26/2012","Units Sold":"9466","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6325843.82","Total Cost":"4757043.64","Total Profit":"1568800.18"},{"Region":"Europe","Country":"Italy","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/5/2012","Order ID":"869808042","Ship Date":"7/19/2012","Units Sold":"4383","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"668758.14","Total Cost":"427079.52","Total Profit":"241678.62"},{"Region":"Central America and the Caribbean","Country":"Grenada","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"4/3/2010","Order ID":"177539336","Ship Date":"5/1/2010","Units Sold":"6690","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1376133.00","Total Cost":"783465.90","Total Profit":"592667.10"},{"Region":"Europe","Country":"Moldova ","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/11/2014","Order ID":"576391541","Ship Date":"7/27/2014","Units Sold":"5921","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3956826.67","Total Cost":"2975539.34","Total Profit":"981287.33"},{"Region":"Europe","Country":"Switzerland","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"12/11/2015","Order ID":"432038486","Ship Date":"12/16/2015","Units Sold":"8644","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"410157.80","Total Cost":"274792.76","Total Profit":"135365.04"},{"Region":"Europe","Country":"Hungary","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"11/4/2013","Order ID":"430466496","Ship Date":"11/9/2013","Units Sold":"3457","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"882502.96","Total Cost":"551114.94","Total Profit":"331388.02"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"6/1/2012","Order ID":"427974402","Ship Date":"6/17/2012","Units Sold":"5991","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"55896.03","Total Cost":"41457.72","Total Profit":"14438.31"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"12/1/2016","Order ID":"801173532","Ship Date":"1/20/2017","Units Sold":"3907","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"2544277.47","Total Cost":"2051018.72","Total Profit":"493258.75"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/25/2014","Order ID":"196987712","Ship Date":"9/30/2014","Units Sold":"1896","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"207194.88","Total Cost":"67952.64","Total Profit":"139242.24"},{"Region":"Europe","Country":"Ireland","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"1/12/2017","Order ID":"482653272","Ship Date":"3/2/2017","Units Sold":"6684","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1706291.52","Total Cost":"1065563.28","Total Profit":"640728.24"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/14/2017","Order ID":"895719039","Ship Date":"3/17/2017","Units Sold":"2023","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"416131.10","Total Cost":"236913.53","Total Profit":"179217.57"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/11/2016","Order ID":"294046342","Ship Date":"12/28/2016","Units Sold":"3702","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2473935.54","Total Cost":"1860403.08","Total Profit":"613532.46"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Meat","Sales Channel":"Online","Order Priority":"M","Order Date":"9/18/2015","Order ID":"305809009","Ship Date":"9/29/2015","Units Sold":"4536","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1913693.04","Total Cost":"1654233.84","Total Profit":"259459.20"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/20/2013","Order ID":"379493367","Ship Date":"10/20/2013","Units Sold":"9375","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1928437.50","Total Cost":"1097906.25","Total Profit":"830531.25"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"2/4/2016","Order ID":"933898246","Ship Date":"3/4/2016","Units Sold":"99","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"25272.72","Total Cost":"15782.58","Total Profit":"9490.14"},{"Region":"Middle East and North Africa","Country":"Somalia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"11/23/2013","Order ID":"208134973","Ship Date":"12/19/2013","Units Sold":"618","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"50509.14","Total Cost":"35022.06","Total Profit":"15487.08"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"8/9/2010","Order ID":"111627376","Ship Date":"9/7/2010","Units Sold":"1876","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"289016.56","Total Cost":"170584.68","Total Profit":"118431.88"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"10/5/2010","Order ID":"374111783","Ship Date":"10/12/2010","Units Sold":"6845","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1054540.70","Total Cost":"622415.85","Total Profit":"432124.85"},{"Region":"Central America and the Caribbean","Country":"The Bahamas","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/11/2016","Order ID":"795637023","Ship Date":"3/30/2016","Units Sold":"5531","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1411953.68","Total Cost":"881752.02","Total Profit":"530201.66"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"8/21/2014","Order ID":"796564424","Ship Date":"9/27/2014","Units Sold":"9969","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1535824.14","Total Cost":"906481.17","Total Profit":"629342.97"},{"Region":"Europe","Country":"Slovakia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/2/2013","Order ID":"767567813","Ship Date":"11/20/2013","Units Sold":"9228","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"6009365.88","Total Cost":"4844330.88","Total Profit":"1165035.00"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"1/9/2015","Order ID":"719633519","Ship Date":"2/17/2015","Units Sold":"4405","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1925866.00","Total Cost":"1159968.65","Total Profit":"765897.35"},{"Region":"Europe","Country":"Finland","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"9/14/2016","Order ID":"734060370","Ship Date":"9/23/2016","Units Sold":"3631","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1531882.59","Total Cost":"1324189.39","Total Profit":"207693.20"},{"Region":"Central America and the Caribbean","Country":"Trinidad and Tobago","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"11/19/2010","Order ID":"512459695","Ship Date":"11/23/2010","Units Sold":"7067","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"65935.11","Total Cost":"48903.64","Total Profit":"17031.47"},{"Region":"Asia","Country":"Indonesia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/17/2017","Order ID":"726755321","Ship Date":"3/26/2017","Units Sold":"1904","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"391652.80","Total Cost":"222977.44","Total Profit":"168675.36"},{"Region":"Sub-Saharan Africa","Country":"Mozambique","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"8/25/2010","Order ID":"769183576","Ship Date":"9/27/2010","Units Sold":"7368","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4923813.36","Total Cost":"3702714.72","Total Profit":"1221098.64"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/3/2016","Order ID":"102293288","Ship Date":"12/9/2016","Units Sold":"9712","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6490238.24","Total Cost":"4880668.48","Total Profit":"1609569.76"},{"Region":"Europe","Country":"Montenegro","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"1/26/2017","Order ID":"508945786","Ship Date":"3/5/2017","Units Sold":"7223","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4703689.83","Total Cost":"3791786.08","Total Profit":"911903.75"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"3/15/2012","Order ID":"242314898","Ship Date":"4/25/2012","Units Sold":"5218","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2201422.02","Total Cost":"1902952.42","Total Profit":"298469.60"},{"Region":"Asia","Country":"Laos","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/28/2012","Order ID":"775886952","Ship Date":"3/14/2012","Units Sold":"1046","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"215162.20","Total Cost":"122497.06","Total Profit":"92665.14"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"2/20/2016","Order ID":"953460776","Ship Date":"3/11/2016","Units Sold":"9087","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6072569.49","Total Cost":"4566580.98","Total Profit":"1505988.51"},{"Region":"Europe","Country":"Slovenia","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"5/6/2017","Order ID":"139147698","Ship Date":"6/20/2017","Units Sold":"5751","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2514337.20","Total Cost":"1514410.83","Total Profit":"999926.37"},{"Region":"Europe","Country":"Vatican City","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/28/2013","Order ID":"467371547","Ship Date":"8/6/2013","Units Sold":"4482","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"683863.56","Total Cost":"436726.08","Total Profit":"247137.48"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Household","Sales Channel":"Online","Order Priority":"L","Order Date":"1/7/2011","Order ID":"992868649","Ship Date":"2/12/2011","Units Sold":"752","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"502539.04","Total Cost":"377910.08","Total Profit":"124628.96"},{"Region":"Asia","Country":"Mongolia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/22/2013","Order ID":"840687835","Ship Date":"8/27/2013","Units Sold":"7067","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4722664.09","Total Cost":"3551450.18","Total Profit":"1171213.91"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/29/2010","Order ID":"556190431","Ship Date":"1/31/2011","Units Sold":"7963","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5321434.01","Total Cost":"4001726.02","Total Profit":"1319707.99"},{"Region":"Europe","Country":"Austria","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"9/16/2012","Order ID":"755050265","Ship Date":"10/26/2012","Units Sold":"5007","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3260608.47","Total Cost":"2628474.72","Total Profit":"632133.75"},{"Region":"Europe","Country":"Georgia","Item Type":"Household","Sales Channel":"Offline","Order Priority":"M","Order Date":"5/5/2014","Order ID":"773253667","Ship Date":"5/16/2014","Units Sold":"1798","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1201549.46","Total Cost":"903566.92","Total Profit":"297982.54"},{"Region":"Sub-Saharan Africa","Country":"Mauritius ","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"4/16/2016","Order ID":"917099463","Ship Date":"5/9/2016","Units Sold":"8966","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1844306.20","Total Cost":"1050008.26","Total Profit":"794297.94"},{"Region":"Asia","Country":"Bangladesh","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"6/14/2012","Order ID":"213198983","Ship Date":"6/24/2012","Units Sold":"9172","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1886680.40","Total Cost":"1074132.92","Total Profit":"812547.48"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"9/20/2016","Order ID":"458476054","Ship Date":"9/20/2016","Units Sold":"2108","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"324758.48","Total Cost":"191680.44","Total Profit":"133078.04"},{"Region":"Middle East and North Africa","Country":"Libya","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/5/2013","Order ID":"370167005","Ship Date":"11/5/2013","Units Sold":"9497","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4152088.40","Total Cost":"2500845.01","Total Profit":"1651243.39"},{"Region":"Sub-Saharan Africa","Country":"Mali","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/22/2015","Order ID":"535820662","Ship Date":"11/20/2015","Units Sold":"96","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"4555.20","Total Cost":"3051.84","Total Profit":"1503.36"},{"Region":"Europe","Country":"Albania","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/10/2013","Order ID":"263298356","Ship Date":"7/15/2013","Units Sold":"4689","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"512413.92","Total Cost":"168053.76","Total Profit":"344360.16"},{"Region":"Sub-Saharan Africa","Country":"Sierra Leone","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"3/30/2017","Order ID":"730773913","Ship Date":"4/27/2017","Units Sold":"1095","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"51957.75","Total Cost":"34810.05","Total Profit":"17147.70"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"2/21/2016","Order ID":"936733663","Ship Date":"2/21/2016","Units Sold":"9162","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3865356.18","Total Cost":"3341289.78","Total Profit":"524066.40"},{"Region":"Europe","Country":"Poland","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"6/24/2011","Order ID":"849976432","Ship Date":"7/25/2011","Units Sold":"5769","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2433883.41","Total Cost":"2103896.61","Total Profit":"329986.80"},{"Region":"Europe","Country":"Moldova ","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/1/2013","Order ID":"959613549","Ship Date":"4/15/2013","Units Sold":"9829","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1499708.82","Total Cost":"957737.76","Total Profit":"541971.06"},{"Region":"Europe","Country":"Spain","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"7/27/2013","Order ID":"925068843","Ship Date":"8/28/2013","Units Sold":"7283","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1122018.98","Total Cost":"662243.19","Total Profit":"459775.79"},{"Region":"Europe","Country":"Iceland","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"3/13/2013","Order ID":"926078641","Ship Date":"4/11/2013","Units Sold":"6104","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"931348.32","Total Cost":"594773.76","Total Profit":"336574.56"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"3/4/2010","Order ID":"312691771","Ship Date":"4/11/2010","Units Sold":"1299","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"267204.30","Total Cost":"152125.89","Total Profit":"115078.41"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/1/2011","Order ID":"755269563","Ship Date":"3/7/2011","Units Sold":"9902","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"4177554.78","Total Cost":"3611160.38","Total Profit":"566394.40"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"C","Order Date":"7/22/2012","Order ID":"394485843","Ship Date":"8/10/2012","Units Sold":"5982","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"912733.56","Total Cost":"582886.08","Total Profit":"329847.48"},{"Region":"Europe","Country":"Sweden","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/17/2011","Order ID":"591326940","Ship Date":"11/10/2011","Units Sold":"5637","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3670870.77","Total Cost":"2959199.52","Total Profit":"711671.25"},{"Region":"Europe","Country":"Greece","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/4/2011","Order ID":"977091681","Ship Date":"3/11/2011","Units Sold":"1997","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"218232.16","Total Cost":"71572.48","Total Profit":"146659.68"},{"Region":"Asia","Country":"Indonesia","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/19/2014","Order ID":"803391396","Ship Date":"2/7/2014","Units Sold":"222","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"56672.16","Total Cost":"35391.24","Total Profit":"21280.92"},{"Region":"Europe","Country":"San Marino","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/1/2013","Order ID":"292149913","Ship Date":"8/17/2013","Units Sold":"2506","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"204815.38","Total Cost":"142015.02","Total Profit":"62800.36"},{"Region":"North America","Country":"Canada","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/22/2011","Order ID":"185603559","Ship Date":"5/4/2011","Units Sold":"3072","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1296046.08","Total Cost":"1120327.68","Total Profit":"175718.40"},{"Region":"Europe","Country":"Moldova ","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/9/2013","Order ID":"396301162","Ship Date":"11/25/2013","Units Sold":"3175","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"484441.50","Total Cost":"309372.00","Total Profit":"175069.50"},{"Region":"Europe","Country":"Belarus","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"8/17/2013","Order ID":"457104051","Ship Date":"8/26/2013","Units Sold":"6101","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4077115.27","Total Cost":"3065996.54","Total Profit":"1011118.73"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/8/2015","Order ID":"871186053","Ship Date":"10/2/2015","Units Sold":"2168","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"330793.44","Total Cost":"211249.92","Total Profit":"119543.52"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"10/8/2010","Order ID":"862033498","Ship Date":"11/22/2010","Units Sold":"3723","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1627695.60","Total Cost":"980377.59","Total Profit":"647318.01"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/5/2017","Order ID":"623445212","Ship Date":"4/18/2017","Units Sold":"148","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"12096.04","Total Cost":"8387.16","Total Profit":"3708.88"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/2/2016","Order ID":"869532525","Ship Date":"11/7/2016","Units Sold":"2852","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"1203230.28","Total Cost":"1040095.88","Total Profit":"163134.40"},{"Region":"Sub-Saharan Africa","Country":"Lesotho","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"11/1/2010","Order ID":"584719264","Ship Date":"11/9/2010","Units Sold":"279","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"42569.82","Total Cost":"27185.76","Total Profit":"15384.06"},{"Region":"Australia and Oceania","Country":"Australia","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"4/19/2017","Order ID":"173741757","Ship Date":"5/25/2017","Units Sold":"2902","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"442787.16","Total Cost":"282770.88","Total Profit":"160016.28"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"5/11/2013","Order ID":"111648833","Ship Date":"5/26/2013","Units Sold":"8226","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1692088.20","Total Cost":"963346.86","Total Profit":"728741.34"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/25/2015","Order ID":"493801820","Ship Date":"3/3/2015","Units Sold":"5787","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"274593.15","Total Cost":"183968.73","Total Profit":"90624.42"},{"Region":"Europe","Country":"Denmark","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/19/2013","Order ID":"585874545","Ship Date":"5/25/2013","Units Sold":"2152","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"235170.56","Total Cost":"77127.68","Total Profit":"158042.88"},{"Region":"Asia","Country":"Philippines","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"12/16/2014","Order ID":"173853337","Ship Date":"1/10/2015","Units Sold":"5921","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"483923.33","Total Cost":"335543.07","Total Profit":"148380.26"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Household","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/30/2016","Order ID":"914037024","Ship Date":"7/11/2016","Units Sold":"2722","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1819030.94","Total Cost":"1367913.88","Total Profit":"451117.06"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"9/6/2015","Order ID":"483036935","Ship Date":"10/5/2015","Units Sold":"218","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"44842.60","Total Cost":"25529.98","Total Profit":"19312.62"},{"Region":"Sub-Saharan Africa","Country":"Burkina Faso","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/15/2015","Order ID":"227776896","Ship Date":"2/11/2015","Units Sold":"3100","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"338768.00","Total Cost":"111104.00","Total Profit":"227664.00"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"8/9/2010","Order ID":"215493237","Ship Date":"8/29/2010","Units Sold":"8093","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"661440.89","Total Cost":"458630.31","Total Profit":"202810.58"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/27/2010","Order ID":"583734786","Ship Date":"11/5/2010","Units Sold":"8950","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3775915.50","Total Cost":"3263975.50","Total Profit":"511940.00"},{"Region":"Europe","Country":"Sweden","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"1/21/2010","Order ID":"190362870","Ship Date":"1/31/2010","Units Sold":"1458","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"299910.60","Total Cost":"170746.38","Total Profit":"129164.22"},{"Region":"Middle East and North Africa","Country":"Qatar","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/8/2015","Order ID":"663551318","Ship Date":"3/8/2015","Units Sold":"8435","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3687782.00","Total Cost":"2221188.55","Total Profit":"1466593.45"},{"Region":"Europe","Country":"Monaco","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"2/8/2011","Order ID":"551786458","Ship Date":"3/8/2011","Units Sold":"4730","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"44130.90","Total Cost":"32731.60","Total Profit":"11399.30"},{"Region":"Middle East and North Africa","Country":"Iran","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"C","Order Date":"10/8/2010","Order ID":"273867118","Ship Date":"10/23/2010","Units Sold":"2221","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"338880.18","Total Cost":"216414.24","Total Profit":"122465.94"},{"Region":"Europe","Country":"Italy","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"9/19/2012","Order ID":"768904626","Ship Date":"9/28/2012","Units Sold":"4820","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"742569.20","Total Cost":"438282.60","Total Profit":"304286.60"},{"Region":"Europe","Country":"Kosovo","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"11/11/2012","Order ID":"346322810","Ship Date":"11/28/2012","Units Sold":"3470","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"32375.10","Total Cost":"24012.40","Total Profit":"8362.70"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"10/2/2015","Order ID":"535857999","Ship Date":"10/9/2015","Units Sold":"1145","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"93580.85","Total Cost":"64887.15","Total Profit":"28693.70"},{"Region":"Asia","Country":"North Korea","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"8/18/2015","Order ID":"237559020","Ship Date":"9/26/2015","Units Sold":"7848","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1197447.84","Total Cost":"764709.12","Total Profit":"432738.72"},{"Region":"Sub-Saharan Africa","Country":"Mali","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"5/20/2015","Order ID":"671787202","Ship Date":"6/23/2015","Units Sold":"5616","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"266479.20","Total Cost":"178532.64","Total Profit":"87946.56"},{"Region":"Central America and the Caribbean","Country":"Costa Rica","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"H","Order Date":"3/8/2015","Order ID":"429216372","Ship Date":"3/9/2015","Units Sold":"3518","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"898075.04","Total Cost":"560839.56","Total Profit":"337235.48"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/3/2016","Order ID":"420832860","Ship Date":"4/18/2016","Units Sold":"2650","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"676492.00","Total Cost":"422463.00","Total Profit":"254029.00"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"2/11/2017","Order ID":"727935492","Ship Date":"3/20/2017","Units Sold":"1143","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"174398.94","Total Cost":"111373.92","Total Profit":"63025.02"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"5/3/2017","Order ID":"152135598","Ship Date":"6/13/2017","Units Sold":"9159","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4004314.80","Total Cost":"2411839.47","Total Profit":"1592475.33"},{"Region":"Middle East and North Africa","Country":"Jordan","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"10/9/2013","Order ID":"265357005","Ship Date":"11/18/2013","Units Sold":"3889","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"184533.05","Total Cost":"123631.31","Total Profit":"60901.74"},{"Region":"Asia","Country":"Bhutan","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"11/29/2011","Order ID":"459836041","Ship Date":"12/9/2011","Units Sold":"4558","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"372525.34","Total Cost":"258301.86","Total Profit":"114223.48"},{"Region":"Europe","Country":"Iceland","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"7/11/2014","Order ID":"198121535","Ship Date":"7/28/2014","Units Sold":"7420","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1132143.60","Total Cost":"723004.80","Total Profit":"409138.80"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/20/2010","Order ID":"363074815","Ship Date":"5/29/2010","Units Sold":"761","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"332709.20","Total Cost":"200394.13","Total Profit":"132315.07"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/2/2015","Order ID":"107869708","Ship Date":"8/11/2015","Units Sold":"9899","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2527016.72","Total Cost":"1578098.58","Total Profit":"948918.14"},{"Region":"Europe","Country":"Montenegro","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"2/25/2017","Order ID":"905992543","Ship Date":"2/25/2017","Units Sold":"2182","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"178334.86","Total Cost":"123653.94","Total Profit":"54680.92"},{"Region":"Central America and the Caribbean","Country":"Panama","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"H","Order Date":"9/19/2014","Order ID":"701242148","Ship Date":"10/28/2014","Units Sold":"1990","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"306579.40","Total Cost":"180950.70","Total Profit":"125628.70"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"4/13/2016","Order ID":"657729852","Ship Date":"5/18/2016","Units Sold":"5734","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"53498.22","Total Cost":"39679.28","Total Profit":"13818.94"},{"Region":"Europe","Country":"Croatia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"1/31/2012","Order ID":"209879481","Ship Date":"2/8/2012","Units Sold":"6857","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"560422.61","Total Cost":"388586.19","Total Profit":"171836.42"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/16/2016","Order ID":"212427365","Ship Date":"3/30/2016","Units Sold":"833","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"7771.89","Total Cost":"5764.36","Total Profit":"2007.53"},{"Region":"Sub-Saharan Africa","Country":"Nigeria","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/24/2016","Order ID":"690422332","Ship Date":"12/31/2016","Units Sold":"166","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"25573.96","Total Cost":"15094.38","Total Profit":"10479.58"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/9/2011","Order ID":"389225709","Ship Date":"12/17/2011","Units Sold":"9392","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3962390.88","Total Cost":"3425168.48","Total Profit":"537222.40"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"L","Order Date":"5/21/2010","Order ID":"824511325","Ship Date":"5/25/2010","Units Sold":"78","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"11901.24","Total Cost":"7600.32","Total Profit":"4300.92"},{"Region":"Central America and the Caribbean","Country":"Haiti","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"H","Order Date":"9/10/2015","Order ID":"432265508","Ship Date":"10/26/2015","Units Sold":"5824","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"636446.72","Total Cost":"208732.16","Total Profit":"427714.56"},{"Region":"Europe","Country":"Kosovo","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/12/2013","Order ID":"418787086","Ship Date":"2/14/2013","Units Sold":"7260","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1493382.00","Total Cost":"850218.60","Total Profit":"643163.40"},{"Region":"Europe","Country":"Belarus","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"6/14/2011","Order ID":"710687386","Ship Date":"6/18/2011","Units Sold":"7046","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1085506.76","Total Cost":"640692.78","Total Profit":"444813.98"},{"Region":"Asia","Country":"Cambodia","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"4/7/2017","Order ID":"404890239","Ship Date":"5/13/2017","Units Sold":"4874","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1244234.72","Total Cost":"777013.08","Total Profit":"467221.64"},{"Region":"Middle East and North Africa","Country":"Azerbaijan","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/21/2015","Order ID":"918631970","Ship Date":"3/9/2015","Units Sold":"2469","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"380374.14","Total Cost":"224506.17","Total Profit":"155867.97"},{"Region":"Sub-Saharan Africa","Country":"Central African Republic","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/24/2017","Order ID":"139461410","Ship Date":"5/15/2017","Units Sold":"8585","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"407358.25","Total Cost":"272917.15","Total Profit":"134441.10"},{"Region":"Europe","Country":"Sweden","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"5/13/2014","Order ID":"975239884","Ship Date":"6/25/2014","Units Sold":"4009","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"438103.52","Total Cost":"143682.56","Total Profit":"294420.96"},{"Region":"Sub-Saharan Africa","Country":"Sao Tome and Principe","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"11/14/2016","Order ID":"104141223","Ship Date":"11/23/2016","Units Sold":"6557","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"61176.81","Total Cost":"45374.44","Total Profit":"15802.37"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"10/6/2013","Order ID":"124651753","Ship Date":"10/18/2013","Units Sold":"6079","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"56717.07","Total Cost":"42066.68","Total Profit":"14650.39"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/17/2013","Order ID":"105570304","Ship Date":"1/18/2014","Units Sold":"9454","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"2413417.12","Total Cost":"1507156.68","Total Profit":"906260.44"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/22/2012","Order ID":"536008203","Ship Date":"5/3/2012","Units Sold":"5593","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2445259.60","Total Cost":"1472804.69","Total Profit":"972454.91"},{"Region":"Central America and the Caribbean","Country":"Antigua and Barbuda ","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/25/2016","Order ID":"175389277","Ship Date":"2/28/2016","Units Sold":"440","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"67135.20","Total Cost":"42873.60","Total Profit":"24261.60"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"11/7/2010","Order ID":"103449857","Ship Date":"12/20/2010","Units Sold":"1966","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1313818.82","Total Cost":"987993.64","Total Profit":"325825.18"},{"Region":"Middle East and North Africa","Country":"Kuwait","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"6/1/2017","Order ID":"570238769","Ship Date":"6/23/2017","Units Sold":"5178","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2184546.42","Total Cost":"1888364.82","Total Profit":"296181.60"},{"Region":"Europe","Country":"Spain","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"2/23/2012","Order ID":"546117341","Ship Date":"3/12/2012","Units Sold":"7112","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"4752736.24","Total Cost":"3574064.48","Total Profit":"1178671.76"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/19/2014","Order ID":"871759402","Ship Date":"3/7/2014","Units Sold":"1834","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"468183.52","Total Cost":"292376.28","Total Profit":"175807.24"},{"Region":"North America","Country":"Canada","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"H","Order Date":"4/6/2013","Order ID":"208151280","Ship Date":"4/20/2013","Units Sold":"5444","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"830645.52","Total Cost":"530463.36","Total Profit":"300182.16"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"C","Order Date":"10/27/2011","Order ID":"886591804","Ship Date":"12/15/2011","Units Sold":"1072","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"87614.56","Total Cost":"60750.24","Total Profit":"26864.32"},{"Region":"Asia","Country":"Nepal","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"3/3/2013","Order ID":"358692300","Ship Date":"3/22/2013","Units Sold":"3877","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"316867.21","Total Cost":"219709.59","Total Profit":"97157.62"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/18/2010","Order ID":"646376597","Ship Date":"6/1/2010","Units Sold":"6054","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1545465.12","Total Cost":"965128.68","Total Profit":"580336.44"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"C","Order Date":"9/20/2012","Order ID":"691881024","Ship Date":"10/25/2012","Units Sold":"1825","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"465886.00","Total Cost":"290941.50","Total Profit":"174944.50"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"8/11/2011","Order ID":"407754409","Ship Date":"9/1/2011","Units Sold":"2446","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"1634588.42","Total Cost":"1229212.84","Total Profit":"405375.58"},{"Region":"Europe","Country":"Belarus","Item Type":"Baby Food","Sales Channel":"Online","Order Priority":"L","Order Date":"9/1/2014","Order ID":"226858079","Ship Date":"9/25/2014","Units Sold":"1202","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"306846.56","Total Cost":"191622.84","Total Profit":"115223.72"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"8/24/2011","Order ID":"652365863","Ship Date":"9/30/2011","Units Sold":"8411","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"399101.95","Total Cost":"267385.69","Total Profit":"131716.26"},{"Region":"Sub-Saharan Africa","Country":"Kenya","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"1/31/2016","Order ID":"907764089","Ship Date":"2/13/2016","Units Sold":"6421","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"59907.93","Total Cost":"44433.32","Total Profit":"15474.61"},{"Region":"Sub-Saharan Africa","Country":"Gabon","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"1/28/2016","Order ID":"286851584","Ship Date":"3/14/2016","Units Sold":"4613","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"703851.54","Total Cost":"449490.72","Total Profit":"254360.82"},{"Region":"Europe","Country":"Sweden","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/7/2015","Order ID":"403739678","Ship Date":"1/17/2016","Units Sold":"4398","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"1922805.60","Total Cost":"1158125.34","Total Profit":"764680.26"},{"Region":"Asia","Country":"Singapore","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"3/27/2017","Order ID":"242852199","Ship Date":"5/8/2017","Units Sold":"4217","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"867436.90","Total Cost":"493852.87","Total Profit":"373584.03"},{"Region":"Europe","Country":"United Kingdom","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/26/2015","Order ID":"208925473","Ship Date":"2/1/2015","Units Sold":"4545","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"215660.25","Total Cost":"144485.55","Total Profit":"71174.70"},{"Region":"Asia","Country":"Taiwan","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"C","Order Date":"12/7/2016","Order ID":"777008330","Ship Date":"1/7/2017","Units Sold":"2887","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"444771.22","Total Cost":"262514.91","Total Profit":"182256.31"},{"Region":"Asia","Country":"Turkmenistan","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"4/1/2016","Order ID":"242462098","Ship Date":"4/26/2016","Units Sold":"8778","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5716321.38","Total Cost":"4608098.88","Total Profit":"1108222.50"},{"Region":"Middle East and North Africa","Country":"Morocco","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/17/2011","Order ID":"570960605","Ship Date":"5/22/2011","Units Sold":"8786","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"960134.08","Total Cost":"314890.24","Total Profit":"645243.84"},{"Region":"Sub-Saharan Africa","Country":"Swaziland","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"M","Order Date":"7/17/2016","Order ID":"648490178","Ship Date":"8/8/2016","Units Sold":"1509","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"14078.97","Total Cost":"10442.28","Total Profit":"3636.69"},{"Region":"Asia","Country":"Maldives","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"C","Order Date":"6/23/2013","Order ID":"331349647","Ship Date":"7/29/2013","Units Sold":"2579","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"397320.74","Total Cost":"234508.47","Total Profit":"162812.27"},{"Region":"Central America and the Caribbean","Country":"Dominica","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"11/30/2014","Order ID":"896150338","Ship Date":"1/6/2015","Units Sold":"9654","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"1473007.32","Total Cost":"940685.76","Total Profit":"532321.56"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/28/2015","Order ID":"989816081","Ship Date":"11/23/2015","Units Sold":"7429","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1896475.12","Total Cost":"1184331.18","Total Profit":"712143.94"},{"Region":"Europe","Country":"Armenia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/22/2012","Order ID":"679583203","Ship Date":"4/10/2012","Units Sold":"2627","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1710728.67","Total Cost":"1379069.92","Total Profit":"331658.75"},{"Region":"Asia","Country":"Japan","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"C","Order Date":"7/24/2012","Order ID":"103000533","Ship Date":"8/9/2012","Units Sold":"9001","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1851505.70","Total Cost":"1054107.11","Total Profit":"797398.59"},{"Region":"Europe","Country":"Albania","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"3/20/2011","Order ID":"817929399","Ship Date":"4/22/2011","Units Sold":"2340","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"255715.20","Total Cost":"83865.60","Total Profit":"171849.60"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"12/20/2014","Order ID":"852543628","Ship Date":"1/12/2015","Units Sold":"5460","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1123122.00","Total Cost":"639420.60","Total Profit":"483701.40"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"7/16/2016","Order ID":"555329549","Ship Date":"7/19/2016","Units Sold":"3209","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"262271.57","Total Cost":"181854.03","Total Profit":"80417.54"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"6/27/2013","Order ID":"345085990","Ship Date":"7/27/2013","Units Sold":"7468","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"354356.60","Total Cost":"237407.72","Total Profit":"116948.88"},{"Region":"Central America and the Caribbean","Country":"El Salvador","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"1/6/2012","Order ID":"260924279","Ship Date":"1/27/2012","Units Sold":"2147","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"330766.82","Total Cost":"195226.71","Total Profit":"135540.11"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"8/7/2015","Order ID":"412268245","Ship Date":"9/8/2015","Units Sold":"8190","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1261751.40","Total Cost":"744716.70","Total Profit":"517034.70"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"H","Order Date":"8/22/2013","Order ID":"528854215","Ship Date":"9/26/2013","Units Sold":"8569","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1762643.30","Total Cost":"1003515.59","Total Profit":"759127.71"},{"Region":"Central America and the Caribbean","Country":"Guatemala","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"7/15/2015","Order ID":"410731017","Ship Date":"8/21/2015","Units Sold":"3290","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"501988.20","Total Cost":"320577.60","Total Profit":"181410.60"},{"Region":"Australia and Oceania","Country":"New Zealand","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/7/2016","Order ID":"378259980","Ship Date":"8/16/2016","Units Sold":"4389","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"479629.92","Total Cost":"157301.76","Total Profit":"322328.16"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/30/2016","Order ID":"822114932","Ship Date":"1/11/2017","Units Sold":"932","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"142204.56","Total Cost":"90814.08","Total Profit":"51390.48"},{"Region":"Sub-Saharan Africa","Country":"Cameroon","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"5/22/2010","Order ID":"853282201","Ship Date":"6/11/2010","Units Sold":"4020","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1026225.60","Total Cost":"640868.40","Total Profit":"385357.20"},{"Region":"Asia","Country":"Cambodia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/6/2010","Order ID":"553060615","Ship Date":"7/19/2010","Units Sold":"1781","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"16616.73","Total Cost":"12324.52","Total Profit":"4292.21"},{"Region":"Sub-Saharan Africa","Country":"Guinea-Bissau","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"9/9/2016","Order ID":"523061501","Ship Date":"9/14/2016","Units Sold":"4377","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"40837.41","Total Cost":"30288.84","Total Profit":"10548.57"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"11/20/2010","Order ID":"535208690","Ship Date":"12/11/2010","Units Sold":"9000","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"427050.00","Total Cost":"286110.00","Total Profit":"140940.00"},{"Region":"Middle East and North Africa","Country":"Turkey","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/24/2013","Order ID":"881738507","Ship Date":"9/10/2013","Units Sold":"4873","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3256479.71","Total Cost":"2448877.42","Total Profit":"807602.29"},{"Region":"Asia","Country":"Kyrgyzstan","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"C","Order Date":"8/7/2012","Order ID":"125199782","Ship Date":"8/13/2012","Units Sold":"8253","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"77000.49","Total Cost":"57110.76","Total Profit":"19889.73"},{"Region":"Europe","Country":"Netherlands","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/31/2011","Order ID":"948453843","Ship Date":"8/17/2011","Units Sold":"7424","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1527116.80","Total Cost":"869424.64","Total Profit":"657692.16"},{"Region":"Europe","Country":"Luxembourg","Item Type":"Household","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/12/2011","Order ID":"704674518","Ship Date":"9/29/2011","Units Sold":"7704","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"5148352.08","Total Cost":"3871568.16","Total Profit":"1276783.92"},{"Region":"Sub-Saharan Africa","Country":"Sudan","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"2/18/2015","Order ID":"867348134","Ship Date":"3/23/2015","Units Sold":"6442","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"60103.86","Total Cost":"44578.64","Total Profit":"15525.22"},{"Region":"Asia","Country":"Uzbekistan","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"10/7/2013","Order ID":"280273520","Ship Date":"11/11/2013","Units Sold":"8018","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3505469.60","Total Cost":"2111379.94","Total Profit":"1394089.66"},{"Region":"Europe","Country":"Iceland","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"9/12/2015","Order ID":"107562005","Ship Date":"9/15/2015","Units Sold":"8842","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3730351.38","Total Cost":"3224588.98","Total Profit":"505762.40"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/24/2011","Order ID":"683637416","Ship Date":"3/2/2011","Units Sold":"2358","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1535553.18","Total Cost":"1237855.68","Total Profit":"297697.50"},{"Region":"Australia and Oceania","Country":"Papua New Guinea","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"L","Order Date":"2/18/2014","Order ID":"163236081","Ship Date":"3/17/2014","Units Sold":"4039","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1031075.92","Total Cost":"643897.38","Total Profit":"387178.54"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"3/22/2013","Order ID":"371406829","Ship Date":"4/28/2013","Units Sold":"6389","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1314217.30","Total Cost":"748215.79","Total Profit":"566001.51"},{"Region":"Australia and Oceania","Country":"Samoa ","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"M","Order Date":"3/11/2013","Order ID":"953510987","Ship Date":"3/31/2013","Units Sold":"3945","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"322424.85","Total Cost":"223563.15","Total Profit":"98861.70"},{"Region":"Asia","Country":"South Korea","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"2/8/2016","Order ID":"725222384","Ship Date":"3/27/2016","Units Sold":"8274","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5388111.54","Total Cost":"4343519.04","Total Profit":"1044592.50"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/7/2017","Order ID":"822527348","Ship Date":"7/13/2017","Units Sold":"2976","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"612163.20","Total Cost":"348519.36","Total Profit":"263643.84"},{"Region":"Asia","Country":"India","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"L","Order Date":"4/2/2010","Order ID":"651724708","Ship Date":"4/22/2010","Units Sold":"8679","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1337086.74","Total Cost":"789181.47","Total Profit":"547905.27"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"12/4/2010","Order ID":"139425790","Ship Date":"12/30/2010","Units Sold":"8044","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"879048.32","Total Cost":"288296.96","Total Profit":"590751.36"},{"Region":"Europe","Country":"Spain","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"M","Order Date":"9/17/2010","Order ID":"182554423","Ship Date":"11/6/2010","Units Sold":"765","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"83599.20","Total Cost":"27417.60","Total Profit":"56181.60"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/29/2016","Order ID":"398346936","Ship Date":"1/27/2017","Units Sold":"8565","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"935983.20","Total Cost":"306969.60","Total Profit":"629013.60"},{"Region":"Central America and the Caribbean","Country":"Saint Vincent and the Grenadines","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"L","Order Date":"9/20/2011","Order ID":"474352157","Ship Date":"11/1/2011","Units Sold":"199","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"40934.30","Total Cost":"23304.89","Total Profit":"17629.41"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/4/2015","Order ID":"618431413","Ship Date":"11/2/2015","Units Sold":"6453","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"1647321.84","Total Cost":"1028737.26","Total Profit":"618584.58"},{"Region":"Sub-Saharan Africa","Country":"Togo","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"C","Order Date":"12/21/2016","Order ID":"208758533","Ship Date":"1/8/2017","Units Sold":"5144","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"562136.32","Total Cost":"184360.96","Total Profit":"377775.36"},{"Region":"Asia","Country":"Nepal","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"L","Order Date":"11/11/2011","Order ID":"943819844","Ship Date":"11/13/2011","Units Sold":"6121","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"57108.93","Total Cost":"42357.32","Total Profit":"14751.61"},{"Region":"Australia and Oceania","Country":"Fiji","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"12/1/2016","Order ID":"992414176","Ship Date":"12/11/2016","Units Sold":"6263","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"511874.99","Total Cost":"354924.21","Total Profit":"156950.78"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/3/2011","Order ID":"843652856","Ship Date":"12/10/2011","Units Sold":"4483","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"489902.24","Total Cost":"160670.72","Total Profit":"329231.52"},{"Region":"Sub-Saharan Africa","Country":"Benin","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/19/2011","Order ID":"156959712","Ship Date":"7/2/2011","Units Sold":"6722","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"549389.06","Total Cost":"380935.74","Total Profit":"168453.32"},{"Region":"Asia","Country":"Sri Lanka","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"C","Order Date":"7/19/2016","Order ID":"912071073","Ship Date":"8/22/2016","Units Sold":"953","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"104143.84","Total Cost":"34155.52","Total Profit":"69988.32"},{"Region":"Europe","Country":"Andorra","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"7/24/2017","Order ID":"659035766","Ship Date":"8/27/2017","Units Sold":"2183","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"449043.10","Total Cost":"255651.13","Total Profit":"193391.97"},{"Region":"Middle East and North Africa","Country":"Iraq","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/7/2013","Order ID":"168215119","Ship Date":"8/14/2013","Units Sold":"7447","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1531847.90","Total Cost":"872118.17","Total Profit":"659729.73"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"3/10/2016","Order ID":"280282962","Ship Date":"4/20/2016","Units Sold":"812","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"528782.52","Total Cost":"426267.52","Total Profit":"102515.00"},{"Region":"Central America and the Caribbean","Country":"Honduras","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"L","Order Date":"3/17/2015","Order ID":"556225621","Ship Date":"4/19/2015","Units Sold":"8377","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"5455186.17","Total Cost":"4397589.92","Total Profit":"1057596.25"},{"Region":"Asia","Country":"Singapore","Item Type":"Household","Sales Channel":"Online","Order Priority":"M","Order Date":"12/10/2012","Order ID":"627341926","Ship Date":"12/28/2012","Units Sold":"3272","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2186579.44","Total Cost":"1644310.88","Total Profit":"542268.56"},{"Region":"Middle East and North Africa","Country":"Oman","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"10/4/2012","Order ID":"645243203","Ship Date":"11/22/2012","Units Sold":"657","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"6129.81","Total Cost":"4546.44","Total Profit":"1583.37"},{"Region":"Sub-Saharan Africa","Country":"Zambia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"L","Order Date":"4/20/2015","Order ID":"831853282","Ship Date":"4/30/2015","Units Sold":"2727","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"222877.71","Total Cost":"154539.09","Total Profit":"68338.62"},{"Region":"Asia","Country":"India","Item Type":"Household","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/10/2014","Order ID":"129408490","Ship Date":"9/15/2014","Units Sold":"3703","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"2474603.81","Total Cost":"1860905.62","Total Profit":"613698.19"},{"Region":"Sub-Saharan Africa","Country":"Malawi","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"6/29/2017","Order ID":"250457656","Ship Date":"7/23/2017","Units Sold":"4841","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"3235095.07","Total Cost":"2432796.14","Total Profit":"802298.93"},{"Region":"Europe","Country":"Germany","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"C","Order Date":"3/7/2016","Order ID":"727862107","Ship Date":"3/24/2016","Units Sold":"9427","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3977157.03","Total Cost":"3437932.63","Total Profit":"539224.40"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"8/27/2015","Order ID":"264795672","Ship Date":"9/24/2015","Units Sold":"7779","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"72578.07","Total Cost":"53830.68","Total Profit":"18747.39"},{"Region":"Sub-Saharan Africa","Country":"Ethiopia","Item Type":"Meat","Sales Channel":"Online","Order Priority":"C","Order Date":"4/19/2014","Order ID":"784744679","Ship Date":"4/29/2014","Units Sold":"2244","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"946721.16","Total Cost":"818364.36","Total Profit":"128356.80"},{"Region":"Sub-Saharan Africa","Country":"Liberia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"H","Order Date":"5/13/2015","Order ID":"681507956","Ship Date":"5/19/2015","Units Sold":"2204","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"20563.32","Total Cost":"15251.68","Total Profit":"5311.64"},{"Region":"Asia","Country":"Bhutan","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"8/1/2015","Order ID":"669196832","Ship Date":"8/24/2015","Units Sold":"9068","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1865287.60","Total Cost":"1061953.48","Total Profit":"803334.12"},{"Region":"Europe","Country":"Serbia","Item Type":"Personal Care","Sales Channel":"Offline","Order Priority":"H","Order Date":"7/16/2016","Order ID":"632235133","Ship Date":"7/19/2016","Units Sold":"1280","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"104614.40","Total Cost":"72537.60","Total Profit":"32076.80"},{"Region":"Middle East and North Africa","Country":"Israel","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/25/2013","Order ID":"975359189","Ship Date":"4/30/2013","Units Sold":"9314","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"86899.62","Total Cost":"64452.88","Total Profit":"22446.74"},{"Region":"Europe","Country":"Romania","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"5/30/2013","Order ID":"373617827","Ship Date":"6/24/2013","Units Sold":"673","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"449745.71","Total Cost":"338209.42","Total Profit":"111536.29"},{"Region":"Central America and the Caribbean","Country":"Cuba","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"C","Order Date":"4/2/2010","Order ID":"722372376","Ship Date":"4/24/2010","Units Sold":"4894","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1006695.80","Total Cost":"573136.34","Total Profit":"433559.46"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"L","Order Date":"4/2/2017","Order ID":"387296664","Ship Date":"5/15/2017","Units Sold":"8544","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"405412.80","Total Cost":"271613.76","Total Profit":"133799.04"},{"Region":"Sub-Saharan Africa","Country":"Eritrea","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"1/12/2011","Order ID":"954377019","Ship Date":"3/1/2011","Units Sold":"223","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"97495.60","Total Cost":"58722.59","Total Profit":"38773.01"},{"Region":"Middle East and North Africa","Country":"Syria","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"H","Order Date":"12/6/2010","Order ID":"479912269","Ship Date":"1/12/2011","Units Sold":"5560","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2430832.00","Total Cost":"1464114.80","Total Profit":"966717.20"},{"Region":"Europe","Country":"San Marino","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/16/2014","Order ID":"240513741","Ship Date":"9/7/2014","Units Sold":"2216","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"338117.28","Total Cost":"215927.04","Total Profit":"122190.24"},{"Region":"Central America and the Caribbean","Country":"Saint Kitts and Nevis ","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/28/2017","Order ID":"683105266","Ship Date":"2/1/2017","Units Sold":"4883","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"752274.98","Total Cost":"444011.19","Total Profit":"308263.79"},{"Region":"Sub-Saharan Africa","Country":"Namibia","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"C","Order Date":"4/24/2014","Order ID":"974923169","Ship Date":"6/10/2014","Units Sold":"286","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"186246.06","Total Cost":"150138.56","Total Profit":"36107.50"},{"Region":"Europe","Country":"Vatican City","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"M","Order Date":"10/12/2014","Order ID":"353516280","Ship Date":"10/12/2014","Units Sold":"2178","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"103346.10","Total Cost":"69238.62","Total Profit":"34107.48"},{"Region":"Asia","Country":"Philippines","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"H","Order Date":"11/5/2012","Order ID":"376745927","Ship Date":"12/8/2012","Units Sold":"6347","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"518740.31","Total Cost":"359684.49","Total Profit":"159055.82"},{"Region":"Europe","Country":"Cyprus","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"4/23/2015","Order ID":"872785937","Ship Date":"6/8/2015","Units Sold":"5609","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2452254.80","Total Cost":"1477017.97","Total Profit":"975236.83"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"M","Order Date":"11/15/2014","Order ID":"390122640","Ship Date":"11/22/2014","Units Sold":"4813","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2104243.60","Total Cost":"1267407.29","Total Profit":"836836.31"},{"Region":"Sub-Saharan Africa","Country":"Republic of the Congo","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/5/2016","Order ID":"247554862","Ship Date":"9/28/2016","Units Sold":"5840","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"2553248.00","Total Cost":"1537847.20","Total Profit":"1015400.80"},{"Region":"Sub-Saharan Africa","Country":"Seychelles ","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"10/13/2011","Order ID":"484193933","Ship Date":"10/23/2011","Units Sold":"2599","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1692494.79","Total Cost":"1364371.04","Total Profit":"328123.75"},{"Region":"Central America and the Caribbean","Country":"Jamaica","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"3/26/2011","Order ID":"309463679","Ship Date":"4/21/2011","Units Sold":"6035","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"493240.55","Total Cost":"342003.45","Total Profit":"151237.10"},{"Region":"Middle East and North Africa","Country":"Lebanon","Item Type":"Household","Sales Channel":"Online","Order Priority":"H","Order Date":"1/2/2012","Order ID":"353100430","Ship Date":"2/12/2012","Units Sold":"9119","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"6093954.13","Total Cost":"4582662.26","Total Profit":"1511291.87"},{"Region":"Middle East and North Africa","Country":"Pakistan","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"M","Order Date":"12/2/2015","Order ID":"415153014","Ship Date":"12/14/2015","Units Sold":"1857","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"381984.90","Total Cost":"217473.27","Total Profit":"164511.63"},{"Region":"Middle East and North Africa","Country":"Egypt","Item Type":"Clothes","Sales Channel":"Offline","Order Priority":"M","Order Date":"9/19/2010","Order ID":"815982758","Ship Date":"10/1/2010","Units Sold":"6286","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"686934.08","Total Cost":"225290.24","Total Profit":"461643.84"},{"Region":"Australia and Oceania","Country":"Kiribati","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/19/2011","Order ID":"146263492","Ship Date":"9/20/2011","Units Sold":"1472","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"224597.76","Total Cost":"143431.68","Total Profit":"81166.08"},{"Region":"Europe","Country":"Bulgaria","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"L","Order Date":"7/26/2012","Order ID":"216981542","Ship Date":"7/28/2012","Units Sold":"8515","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3722758.00","Total Cost":"2242254.95","Total Profit":"1480503.05"},{"Region":"Europe","Country":"Norway","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/15/2011","Order ID":"209435737","Ship Date":"11/10/2011","Units Sold":"5543","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"263015.35","Total Cost":"176211.97","Total Profit":"86803.38"},{"Region":"Europe","Country":"Malta","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"7/8/2016","Order ID":"725237405","Ship Date":"8/26/2016","Units Sold":"2719","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"222223.87","Total Cost":"154085.73","Total Profit":"68138.14"},{"Region":"Sub-Saharan Africa","Country":"Burundi","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"H","Order Date":"1/17/2016","Order ID":"636310374","Ship Date":"2/17/2016","Units Sold":"7235","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1488239.50","Total Cost":"847290.85","Total Profit":"640948.65"},{"Region":"Central America and the Caribbean","Country":"Belize","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"C","Order Date":"11/9/2015","Order ID":"234890973","Ship Date":"11/10/2015","Units Sold":"8314","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"394499.30","Total Cost":"264302.06","Total Profit":"130197.24"},{"Region":"Sub-Saharan Africa","Country":"Mauritania","Item Type":"Snacks","Sales Channel":"Online","Order Priority":"M","Order Date":"2/23/2011","Order ID":"783528029","Ship Date":"3/18/2011","Units Sold":"2210","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"337201.80","Total Cost":"215342.40","Total Profit":"121859.40"},{"Region":"Asia","Country":"Indonesia","Item Type":"Fruits","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/30/2013","Order ID":"465082871","Ship Date":"5/25/2013","Units Sold":"7212","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"67287.96","Total Cost":"49907.04","Total Profit":"17380.92"},{"Region":"Middle East and North Africa","Country":"United Arab Emirates","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"L","Order Date":"12/9/2015","Order ID":"232729327","Ship Date":"12/31/2015","Units Sold":"8635","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"705738.55","Total Cost":"489345.45","Total Profit":"216393.10"},{"Region":"Europe","Country":"Italy","Item Type":"Cereal","Sales Channel":"Offline","Order Priority":"L","Order Date":"8/1/2013","Order ID":"659953725","Ship Date":"9/15/2013","Units Sold":"3828","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"787419.60","Total Cost":"448297.08","Total Profit":"339122.52"},{"Region":"Sub-Saharan Africa","Country":"Chad","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"4/16/2013","Order ID":"590554893","Ship Date":"4/26/2013","Units Sold":"7171","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"3135161.20","Total Cost":"1888339.43","Total Profit":"1246821.77"},{"Region":"Europe","Country":"Lithuania","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"M","Order Date":"8/2/2015","Order ID":"288644158","Ship Date":"9/21/2015","Units Sold":"5076","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"240856.20","Total Cost":"161366.04","Total Profit":"79490.16"},{"Region":"Asia","Country":"Malaysia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"L","Order Date":"9/9/2010","Order ID":"988645350","Ship Date":"10/11/2010","Units Sold":"984","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"415139.76","Total Cost":"358854.96","Total Profit":"56284.80"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/12/2012","Order ID":"845294797","Ship Date":"9/22/2012","Units Sold":"370","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"17556.50","Total Cost":"11762.30","Total Profit":"5794.20"},{"Region":"North America","Country":"Mexico","Item Type":"Cereal","Sales Channel":"Online","Order Priority":"M","Order Date":"7/4/2017","Order ID":"783641326","Ship Date":"8/18/2017","Units Sold":"5737","Unit Price":"205.70","Unit Cost":"117.11","Total Revenue":"1180100.90","Total Cost":"671860.07","Total Profit":"508240.83"},{"Region":"Australia and Oceania","Country":"Nauru","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"1/1/2015","Order ID":"449046266","Ship Date":"2/1/2015","Units Sold":"1624","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"77058.80","Total Cost":"51626.96","Total Profit":"25431.84"},{"Region":"North America","Country":"Canada","Item Type":"Cosmetics","Sales Channel":"Offline","Order Priority":"C","Order Date":"9/23/2014","Order ID":"457183444","Ship Date":"10/12/2014","Units Sold":"9596","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"4195371.20","Total Cost":"2526914.68","Total Profit":"1668456.52"},{"Region":"Europe","Country":"Croatia","Item Type":"Personal Care","Sales Channel":"Online","Order Priority":"M","Order Date":"3/28/2012","Order ID":"144039189","Ship Date":"5/14/2012","Units Sold":"3252","Unit Price":"81.73","Unit Cost":"56.67","Total Revenue":"265785.96","Total Cost":"184290.84","Total Profit":"81495.12"},{"Region":"Sub-Saharan Africa","Country":"Cote d'Ivoire","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/7/2015","Order ID":"715912330","Ship Date":"8/12/2015","Units Sold":"3222","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"491612.76","Total Cost":"313951.68","Total Profit":"177661.08"},{"Region":"Asia","Country":"Laos","Item Type":"Vegetables","Sales Channel":"Online","Order Priority":"M","Order Date":"11/14/2010","Order ID":"299414193","Ship Date":"12/10/2010","Units Sold":"2168","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"334002.08","Total Cost":"197136.24","Total Profit":"136865.84"},{"Region":"Asia","Country":"Kazakhstan","Item Type":"Clothes","Sales Channel":"Online","Order Priority":"L","Order Date":"3/15/2012","Order ID":"691468608","Ship Date":"4/25/2012","Units Sold":"9782","Unit Price":"109.28","Unit Cost":"35.84","Total Revenue":"1068976.96","Total Cost":"350586.88","Total Profit":"718390.08"},{"Region":"Middle East and North Africa","Country":"Tunisia ","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"10/1/2011","Order ID":"609311902","Ship Date":"10/21/2011","Units Sold":"7787","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1199665.22","Total Cost":"708071.91","Total Profit":"491593.31"},{"Region":"Sub-Saharan Africa","Country":"Angola","Item Type":"Meat","Sales Channel":"Online","Order Priority":"H","Order Date":"3/4/2014","Order ID":"640492904","Ship Date":"4/14/2014","Units Sold":"4938","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2083292.82","Total Cost":"1800839.22","Total Profit":"282453.60"},{"Region":"Middle East and North Africa","Country":"Bahrain","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"M","Order Date":"1/20/2010","Order ID":"992872941","Ship Date":"3/5/2010","Units Sold":"2022","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"1316746.62","Total Cost":"1061469.12","Total Profit":"255277.50"},{"Region":"Asia","Country":"Brunei","Item Type":"Office Supplies","Sales Channel":"Offline","Order Priority":"L","Order Date":"7/19/2017","Order ID":"144625842","Ship Date":"7/24/2017","Units Sold":"6855","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4464044.55","Total Cost":"3598600.80","Total Profit":"865443.75"},{"Region":"Europe","Country":"Greece","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"H","Order Date":"6/6/2010","Order ID":"694237935","Ship Date":"6/26/2010","Units Sold":"9287","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"1430755.22","Total Cost":"844466.91","Total Profit":"586288.31"},{"Region":"Sub-Saharan Africa","Country":"Ghana","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"C","Order Date":"10/9/2012","Order ID":"810508048","Ship Date":"10/26/2012","Units Sold":"6198","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"4036199.58","Total Cost":"3253702.08","Total Profit":"782497.50"},{"Region":"Central America and the Caribbean","Country":"Saint Lucia","Item Type":"Meat","Sales Channel":"Offline","Order Priority":"M","Order Date":"11/4/2011","Order ID":"982547509","Ship Date":"12/15/2011","Units Sold":"6497","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"2741019.33","Total Cost":"2369390.93","Total Profit":"371628.40"},{"Region":"Sub-Saharan Africa","Country":"Rwanda","Item Type":"Office Supplies","Sales Channel":"Online","Order Priority":"H","Order Date":"11/27/2014","Order ID":"869780147","Ship Date":"12/18/2014","Units Sold":"6129","Unit Price":"651.21","Unit Cost":"524.96","Total Revenue":"3991266.09","Total Cost":"3217479.84","Total Profit":"773786.25"},{"Region":"Asia","Country":"Laos","Item Type":"Beverages","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/24/2015","Order ID":"651942288","Ship Date":"2/28/2015","Units Sold":"3066","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"145481.70","Total Cost":"97468.14","Total Profit":"48013.56"},{"Region":"Europe","Country":"Moldova ","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"H","Order Date":"8/10/2010","Order ID":"579082763","Ship Date":"9/2/2010","Units Sold":"2313","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"352917.54","Total Cost":"225378.72","Total Profit":"127538.82"},{"Region":"Australia and Oceania","Country":"East Timor","Item Type":"Household","Sales Channel":"Online","Order Priority":"C","Order Date":"7/12/2015","Order ID":"521562898","Ship Date":"8/6/2015","Units Sold":"907","Unit Price":"668.27","Unit Cost":"502.54","Total Revenue":"606120.89","Total Cost":"455803.78","Total Profit":"150317.11"},{"Region":"Australia and Oceania","Country":"Marshall Islands","Item Type":"Baby Food","Sales Channel":"Offline","Order Priority":"C","Order Date":"2/22/2011","Order ID":"420056521","Ship Date":"4/8/2011","Units Sold":"2914","Unit Price":"255.28","Unit Cost":"159.42","Total Revenue":"743885.92","Total Cost":"464549.88","Total Profit":"279336.04"},{"Region":"Sub-Saharan Africa","Country":"Guinea","Item Type":"Fruits","Sales Channel":"Online","Order Priority":"H","Order Date":"1/18/2010","Order ID":"735549962","Ship Date":"2/16/2010","Units Sold":"4434","Unit Price":"9.33","Unit Cost":"6.92","Total Revenue":"41369.22","Total Cost":"30683.28","Total Profit":"10685.94"},{"Region":"Asia","Country":"Laos","Item Type":"Beverages","Sales Channel":"Online","Order Priority":"H","Order Date":"7/15/2014","Order ID":"199342048","Ship Date":"7/31/2014","Units Sold":"8597","Unit Price":"47.45","Unit Cost":"31.79","Total Revenue":"407927.65","Total Cost":"273298.63","Total Profit":"134629.02"},{"Region":"Europe","Country":"Liechtenstein","Item Type":"Cosmetics","Sales Channel":"Online","Order Priority":"C","Order Date":"10/27/2012","Order ID":"763044106","Ship Date":"11/1/2012","Units Sold":"562","Unit Price":"437.20","Unit Cost":"263.33","Total Revenue":"245706.40","Total Cost":"147991.46","Total Profit":"97714.94"},{"Region":"Sub-Saharan Africa","Country":"Democratic Republic of the Congo","Item Type":"Vegetables","Sales Channel":"Offline","Order Priority":"M","Order Date":"2/14/2013","Order ID":"848579967","Ship Date":"3/20/2013","Units Sold":"2524","Unit Price":"154.06","Unit Cost":"90.93","Total Revenue":"388847.44","Total Cost":"229507.32","Total Profit":"159340.12"},{"Region":"Sub-Saharan Africa","Country":"South Africa","Item Type":"Meat","Sales Channel":"Online","Order Priority":"L","Order Date":"2/19/2017","Order ID":"298185956","Ship Date":"2/22/2017","Units Sold":"8706","Unit Price":"421.89","Unit Cost":"364.69","Total Revenue":"3672974.34","Total Cost":"3174991.14","Total Profit":"497983.20"},{"Region":"Asia","Country":"Mongolia","Item Type":"Snacks","Sales Channel":"Offline","Order Priority":"M","Order Date":"4/12/2016","Order ID":"824410903","Ship Date":"4/16/2016","Units Sold":"361","Unit Price":"152.58","Unit Cost":"97.44","Total Revenue":"55081.38","Total Cost":"35175.84","Total Profit":"19905.54"}] jc-1.17.3/tests/fixtures/generic/csv-10k-sales-records.csv000077500000000000000000046040371415226333200233150ustar00rootroot00000000000000Region,Country,Item Type,Sales Channel,Order Priority,Order Date,Order ID,Ship Date,Units Sold,Unit Price,Unit Cost,Total Revenue,Total Cost,Total Profit Sub-Saharan Africa,Chad,Office Supplies,Online,L,1/27/2011,292494523,2/12/2011,4484,651.21,524.96,2920025.64,2353920.64,566105.00 Europe,Latvia,Beverages,Online,C,12/28/2015,361825549,1/23/2016,1075,47.45,31.79,51008.75,34174.25,16834.50 Middle East and North Africa,Pakistan,Vegetables,Offline,C,1/13/2011,141515767,2/1/2011,6515,154.06,90.93,1003700.90,592408.95,411291.95 Sub-Saharan Africa,Democratic Republic of the Congo,Household,Online,C,9/11/2012,500364005,10/6/2012,7683,668.27,502.54,5134318.41,3861014.82,1273303.59 Europe,Czech Republic,Beverages,Online,C,10/27/2015,127481591,12/5/2015,3491,47.45,31.79,165647.95,110978.89,54669.06 Sub-Saharan Africa,South Africa,Beverages,Offline,H,7/10/2012,482292354,8/21/2012,9880,47.45,31.79,468806.00,314085.20,154720.80 Asia,Laos,Vegetables,Online,L,2/20/2011,844532620,3/20/2011,4825,154.06,90.93,743339.50,438737.25,304602.25 Asia,China,Baby Food,Online,C,4/10/2017,564251220,5/12/2017,3330,255.28,159.42,850082.40,530868.60,319213.80 Sub-Saharan Africa,Eritrea,Meat,Online,L,11/21/2014,411809480,1/10/2015,2431,421.89,364.69,1025614.59,886561.39,139053.20 Central America and the Caribbean,Haiti,Office Supplies,Online,C,7/4/2015,327881228,7/20/2015,6197,651.21,524.96,4035548.37,3253177.12,782371.25 Sub-Saharan Africa,Zambia,Cereal,Offline,M,7/26/2016,773452794,8/24/2016,724,205.70,117.11,148926.80,84787.64,64139.16 Europe,Bosnia and Herzegovina,Baby Food,Offline,M,10/20/2012,479823005,11/15/2012,9145,255.28,159.42,2334535.60,1457895.90,876639.70 Europe,Germany,Office Supplies,Online,C,2/22/2015,498603188,2/27/2015,6618,651.21,524.96,4309707.78,3474185.28,835522.50 Asia,India,Household,Online,C,8/27/2016,151717174,9/2/2016,5338,668.27,502.54,3567225.26,2682558.52,884666.74 Middle East and North Africa,Algeria,Clothes,Offline,C,6/21/2011,181401288,7/21/2011,9527,109.28,35.84,1041110.56,341447.68,699662.88 Australia and Oceania,Palau,Snacks,Offline,L,9/19/2013,500204360,10/4/2013,441,152.58,97.44,67287.78,42971.04,24316.74 Central America and the Caribbean,Cuba,Beverages,Online,H,11/15/2015,640987718,11/30/2015,1365,47.45,31.79,64769.25,43393.35,21375.90 Europe,Vatican City,Beverages,Online,L,4/6/2015,206925189,4/27/2015,2617,47.45,31.79,124176.65,83194.43,40982.22 Middle East and North Africa,Lebanon,Personal Care,Offline,H,4/12/2010,221503102,5/19/2010,6545,81.73,56.67,534922.85,370905.15,164017.70 Europe,Lithuania,Snacks,Offline,H,9/26/2011,878520286,10/2/2011,2530,152.58,97.44,386027.40,246523.20,139504.20 Sub-Saharan Africa,Mauritius ,Cosmetics,Offline,H,5/14/2016,192088067,6/18/2016,1983,437.20,263.33,866967.60,522183.39,344784.21 Europe,Ukraine,Office Supplies,Online,C,8/14/2010,746630275,8/31/2010,3345,651.21,524.96,2178297.45,1755991.20,422306.25 Europe,Russia,Snacks,Offline,L,4/13/2012,246883237,4/22/2012,7091,152.58,97.44,1081944.78,690947.04,390997.74 Asia,Japan,Cosmetics,Offline,H,9/19/2013,967895781,9/28/2013,725,437.20,263.33,316970.00,190914.25,126055.75 Europe,Russia,Meat,Offline,L,12/2/2015,305029237,12/26/2015,3784,421.89,364.69,1596431.76,1379986.96,216444.80 Europe,Liechtenstein,Vegetables,Offline,L,2/26/2017,223957431,2/28/2017,2835,154.06,90.93,436760.10,257786.55,178973.55 Europe,Greece,Clothes,Online,C,10/9/2016,510666692,10/13/2016,6477,109.28,35.84,707806.56,232135.68,475670.88 Europe,Albania,Baby Food,Offline,C,5/20/2011,121455848,6/19/2011,339,255.28,159.42,86539.92,54043.38,32496.54 Australia and Oceania,Federated States of Micronesia,Baby Food,Online,M,10/24/2013,332936227,12/3/2013,2083,255.28,159.42,531748.24,332071.86,199676.38 Central America and the Caribbean,Dominica,Beverages,Offline,H,6/14/2011,692031657,7/20/2011,6401,47.45,31.79,303727.45,203487.79,100239.66 Europe,Andorra,Office Supplies,Online,M,6/20/2015,365978467,7/21/2015,16,651.21,524.96,10419.36,8399.36,2020.00 Europe,Switzerland,Personal Care,Online,M,8/5/2011,392325484,9/1/2011,6684,81.73,56.67,546283.32,378782.28,167501.04 Central America and the Caribbean,Trinidad and Tobago,Baby Food,Offline,L,11/30/2016,528934037,1/9/2017,2191,255.28,159.42,559318.48,349289.22,210029.26 Europe,San Marino,Vegetables,Online,H,7/5/2015,603977954,7/29/2015,9353,154.06,90.93,1440923.18,850468.29,590454.89 Central America and the Caribbean,Nicaragua,Fruits,Online,L,3/25/2015,965943562,5/9/2015,3020,9.33,6.92,28176.60,20898.40,7278.20 Middle East and North Africa,Azerbaijan,Cosmetics,Online,M,8/22/2013,233629691,8/30/2013,5072,437.20,263.33,2217478.40,1335609.76,881868.64 Asia,Bangladesh,Personal Care,Online,L,12/11/2016,246147668,1/13/2017,9420,81.73,56.67,769896.60,533831.40,236065.20 Europe,Serbia,Beverages,Online,H,6/23/2013,212921321,7/18/2013,7005,47.45,31.79,332387.25,222688.95,109698.30 Sub-Saharan Africa,Mauritius ,Fruits,Offline,H,5/8/2015,763686978,5/13/2015,803,9.33,6.92,7491.99,5556.76,1935.23 Central America and the Caribbean,Jamaica,Baby Food,Offline,H,10/24/2016,798493468,11/24/2016,816,255.28,159.42,208308.48,130086.72,78221.76 Europe,Italy,Cereal,Offline,H,3/10/2013,637702119,4/4/2013,9083,205.70,117.11,1868373.10,1063710.13,804662.97 Asia,Bhutan,Clothes,Offline,L,3/18/2012,671986758,5/4/2012,4670,109.28,35.84,510337.60,167372.80,342964.80 Middle East and North Africa,Turkey,Clothes,Online,L,2/11/2015,912333714,3/2/2015,8675,109.28,35.84,948004.00,310912.00,637092.00 Europe,Bulgaria,Cosmetics,Offline,L,10/30/2012,540041816,11/3/2012,9229,437.20,263.33,4034918.80,2430272.57,1604646.23 Middle East and North Africa,Pakistan,Household,Offline,M,7/6/2012,156722390,8/1/2012,6493,668.27,502.54,4339077.11,3262992.22,1076084.89 Europe,Poland,Cereal,Offline,C,1/4/2011,434299266,2/21/2011,7659,205.70,117.11,1575456.30,896945.49,678510.81 Europe,France,Baby Food,Offline,M,10/25/2013,765008771,12/10/2013,1950,255.28,159.42,497796.00,310869.00,186927.00 Central America and the Caribbean,Jamaica,Baby Food,Offline,C,2/16/2016,611399734,3/22/2016,5623,255.28,159.42,1435439.44,896418.66,539020.78 Australia and Oceania,Australia,Personal Care,Online,H,3/16/2014,856333482,4/27/2014,6962,81.73,56.67,569004.26,394536.54,174467.72 Middle East and North Africa,Somalia,Fruits,Offline,C,9/24/2016,652983844,10/29/2016,1285,9.33,6.92,11989.05,8892.20,3096.85 Europe,Slovenia,Cosmetics,Online,M,9/30/2010,574837148,11/11/2010,5941,437.20,263.33,2597405.20,1564443.53,1032961.67 Australia and Oceania,Samoa ,Clothes,Offline,C,11/5/2010,365692222,12/5/2010,5310,109.28,35.84,580276.80,190310.40,389966.40 Sub-Saharan Africa,South Africa,Cereal,Online,M,7/21/2017,289660394,8/22/2017,5802,205.70,117.11,1193471.40,679472.22,513999.18 Sub-Saharan Africa,Ghana,Vegetables,Online,L,7/10/2013,681165492,7/26/2013,861,154.06,90.93,132645.66,78290.73,54354.93 Asia,Sri Lanka,Office Supplies,Offline,M,10/6/2012,594943845,10/21/2012,5959,651.21,524.96,3880560.39,3128236.64,752323.75 Sub-Saharan Africa,Guinea,Meat,Online,C,6/4/2011,956044280,7/24/2011,3603,421.89,364.69,1520069.67,1313978.07,206091.60 Europe,Spain,Fruits,Offline,L,4/12/2014,509828126,4/15/2014,8327,9.33,6.92,77690.91,57622.84,20068.07 Europe,Moldova ,Personal Care,Online,M,10/26/2015,771969211,12/15/2015,1699,81.73,56.67,138859.27,96282.33,42576.94 Central America and the Caribbean,Dominican Republic,Cereal,Online,L,8/4/2011,178453862,8/27/2011,7318,205.70,117.11,1505312.60,857010.98,648301.62 Europe,Luxembourg,Personal Care,Online,L,2/24/2017,835580909,4/14/2017,5814,81.73,56.67,475178.22,329479.38,145698.84 Middle East and North Africa,Kuwait,Office Supplies,Offline,L,3/30/2011,869961678,4/12/2011,9848,651.21,524.96,6413116.08,5169806.08,1243310.00 Central America and the Caribbean,Saint Lucia,Fruits,Online,C,5/2/2015,278519999,6/14/2015,9112,9.33,6.92,85014.96,63055.04,21959.92 Europe,Georgia,Vegetables,Offline,H,2/1/2014,478492200,2/26/2014,5330,154.06,90.93,821139.80,484656.90,336482.90 Europe,Bosnia and Herzegovina,Cosmetics,Offline,H,3/3/2012,257427108,4/10/2012,7257,437.20,263.33,3172760.40,1910985.81,1261774.59 Europe,Iceland,Snacks,Online,H,4/22/2015,723186051,5/13/2015,5678,152.58,97.44,866349.24,553264.32,313084.92 Sub-Saharan Africa,Mauritius ,Personal Care,Online,M,5/12/2011,353942859,5/15/2011,8412,81.73,56.67,687512.76,476708.04,210804.72 Sub-Saharan Africa,Malawi,Office Supplies,Online,C,12/21/2011,848183858,1/18/2012,5307,651.21,524.96,3455971.47,2785962.72,670008.75 Sub-Saharan Africa,Seychelles ,Meat,Online,C,12/2/2010,374707877,12/25/2010,3243,421.89,364.69,1368189.27,1182689.67,185499.60 Europe,Montenegro,Personal Care,Online,L,8/14/2010,322626245,9/16/2010,1130,81.73,56.67,92354.90,64037.10,28317.80 Europe,Germany,Household,Online,L,10/5/2010,351362788,11/14/2010,4912,668.27,502.54,3282542.24,2468476.48,814065.76 Europe,Estonia,Meat,Offline,H,2/8/2012,640653836,3/18/2012,2562,421.89,364.69,1080882.18,934335.78,146546.40 Europe,Serbia,Clothes,Online,M,9/8/2012,540548217,9/20/2012,9084,109.28,35.84,992699.52,325570.56,667128.96 Sub-Saharan Africa,Madagascar,Baby Food,Offline,C,8/11/2011,821407258,8/19/2011,1516,255.28,159.42,387004.48,241680.72,145323.76 Sub-Saharan Africa,Benin,Beverages,Offline,H,10/28/2012,523904788,11/7/2012,3924,47.45,31.79,186193.80,124743.96,61449.84 Europe,Hungary,Clothes,Online,M,10/11/2013,109027135,10/27/2013,2407,109.28,35.84,263036.96,86266.88,176770.08 Central America and the Caribbean,Cuba,Cosmetics,Online,L,10/6/2016,108073127,10/20/2016,95,437.20,263.33,41534.00,25016.35,16517.65 Sub-Saharan Africa,Senegal,Fruits,Offline,H,7/28/2017,672654092,7/31/2017,2148,9.33,6.92,20040.84,14864.16,5176.68 Middle East and North Africa,Algeria,Vegetables,Online,M,11/4/2016,224693858,11/25/2016,761,154.06,90.93,117239.66,69197.73,48041.93 Europe,Bosnia and Herzegovina,Personal Care,Online,M,4/12/2016,406428754,5/1/2016,155,81.73,56.67,12668.15,8783.85,3884.30 Central America and the Caribbean,Antigua and Barbuda ,Baby Food,Online,H,11/13/2014,230407607,12/20/2014,1586,255.28,159.42,404874.08,252840.12,152033.96 Asia,Cambodia,Personal Care,Online,H,8/26/2012,129491746,9/22/2012,8340,81.73,56.67,681628.20,472627.80,209000.40 Middle East and North Africa,Oman,Vegetables,Online,C,7/15/2014,606854999,8/15/2014,735,154.06,90.93,113234.10,66833.55,46400.55 North America,United States of America,Baby Food,Offline,L,5/2/2011,885983693,5/4/2011,1118,255.28,159.42,285403.04,178231.56,107171.48 Sub-Saharan Africa,Mauritania,Office Supplies,Offline,L,11/11/2013,260676658,12/17/2013,8871,651.21,524.96,5776883.91,4656920.16,1119963.75 Sub-Saharan Africa,Central African Republic,Cosmetics,Offline,H,4/14/2011,345045220,5/20/2011,5403,437.20,263.33,2362191.60,1422771.99,939419.61 Europe,Albania,Baby Food,Online,H,10/4/2012,123513209,11/21/2012,9158,255.28,159.42,2337854.24,1459968.36,877885.88 Europe,Switzerland,Vegetables,Online,M,5/14/2013,900816953,6/10/2013,609,154.06,90.93,93822.54,55376.37,38446.17 Sub-Saharan Africa,Ghana,Household,Online,M,1/12/2013,452005279,2/2/2013,7261,668.27,502.54,4852308.47,3648942.94,1203365.53 Europe,Austria,Vegetables,Online,H,10/3/2012,672439515,11/12/2012,8650,154.06,90.93,1332619.00,786544.50,546074.50 Sub-Saharan Africa,Democratic Republic of the Congo,Household,Offline,L,10/23/2010,827793490,11/20/2010,1344,668.27,502.54,898154.88,675413.76,222741.12 Central America and the Caribbean,Dominican Republic,Clothes,Online,L,2/6/2014,704053533,3/28/2014,3941,109.28,35.84,430672.48,141245.44,289427.04 Sub-Saharan Africa,Mauritius ,Baby Food,Offline,H,9/4/2011,157518470,9/4/2011,2070,255.28,159.42,528429.60,329999.40,198430.20 Middle East and North Africa,Libya,Cosmetics,Offline,C,5/12/2016,464799630,6/26/2016,3394,437.20,263.33,1483856.80,893742.02,590114.78 Australia and Oceania,Samoa ,Office Supplies,Online,M,7/19/2015,272820842,8/20/2015,2605,651.21,524.96,1696402.05,1367520.80,328881.25 Middle East and North Africa,Kuwait,Personal Care,Online,H,10/28/2012,548818433,11/24/2012,6425,81.73,56.67,525115.25,364104.75,161010.50 Europe,Hungary,Meat,Online,C,8/25/2016,530341231,9/25/2016,8611,421.89,364.69,3632894.79,3140345.59,492549.20 Sub-Saharan Africa,Senegal,Beverages,Offline,C,10/25/2013,875250566,11/3/2013,4947,47.45,31.79,234735.15,157265.13,77470.02 Europe,Moldova ,Personal Care,Offline,H,2/11/2011,511720263,2/26/2011,8252,81.73,56.67,674435.96,467640.84,206795.12 Sub-Saharan Africa,Eritrea,Beverages,Offline,M,5/27/2016,688236653,6/13/2016,3375,47.45,31.79,160143.75,107291.25,52852.50 Sub-Saharan Africa,Niger,Personal Care,Online,C,2/6/2012,923598563,2/26/2012,2194,81.73,56.67,179315.62,124333.98,54981.64 Central America and the Caribbean,Saint Lucia,Snacks,Online,C,12/25/2011,356917321,2/4/2012,8622,152.58,97.44,1315544.76,840127.68,475417.08 Europe,Sweden,Vegetables,Offline,H,12/13/2011,897616755,1/20/2012,3600,154.06,90.93,554616.00,327348.00,227268.00 Central America and the Caribbean,Jamaica,Baby Food,Online,H,7/20/2016,475433194,8/19/2016,102,255.28,159.42,26038.56,16260.84,9777.72 Central America and the Caribbean,Haiti,Vegetables,Offline,H,6/18/2012,690415465,7/14/2012,8134,154.06,90.93,1253124.04,739624.62,513499.42 Australia and Oceania,Samoa ,Cosmetics,Online,H,2/23/2010,962924897,4/12/2010,9730,437.20,263.33,4253956.00,2562200.90,1691755.10 Central America and the Caribbean,Dominican Republic,Snacks,Online,M,5/5/2017,783635318,5/9/2017,3960,152.58,97.44,604216.80,385862.40,218354.40 Middle East and North Africa,Tunisia ,Cereal,Online,L,7/23/2012,163533055,8/13/2012,1920,205.70,117.11,394944.00,224851.20,170092.80 Asia,Taiwan,Beverages,Online,L,1/11/2017,983916938,1/17/2017,1742,47.45,31.79,82657.90,55378.18,27279.72 Middle East and North Africa,Tunisia ,Cereal,Online,H,3/7/2015,246398293,4/14/2015,3585,205.70,117.11,737434.50,419839.35,317595.15 Asia,Sri Lanka,Office Supplies,Offline,C,6/9/2011,422900950,7/5/2011,4644,651.21,524.96,3024219.24,2437914.24,586305.00 Asia,Indonesia,Office Supplies,Offline,L,4/17/2011,905661237,6/5/2011,4141,651.21,524.96,2696660.61,2173859.36,522801.25 Sub-Saharan Africa,Ethiopia,Clothes,Online,M,7/7/2017,257227981,7/27/2017,8330,109.28,35.84,910302.40,298547.20,611755.20 Sub-Saharan Africa,Swaziland,Snacks,Offline,L,3/22/2011,260462510,4/9/2011,5500,152.58,97.44,839190.00,535920.00,303270.00 Europe,Portugal,Fruits,Offline,L,3/29/2016,968538653,4/6/2016,965,9.33,6.92,9003.45,6677.80,2325.65 Europe,Hungary,Cereal,Online,M,1/14/2012,254942739,2/4/2012,2077,205.70,117.11,427238.90,243237.47,184001.43 Sub-Saharan Africa,Zimbabwe,Beverages,Online,M,3/17/2013,563473594,4/10/2013,3213,47.45,31.79,152456.85,102141.27,50315.58 Europe,Armenia,Personal Care,Online,H,9/15/2012,358242547,11/2/2012,785,81.73,56.67,64158.05,44485.95,19672.10 Asia,North Korea,Meat,Online,L,11/26/2015,873673427,12/6/2015,8237,421.89,364.69,3475107.93,3003951.53,471156.40 Sub-Saharan Africa,Burkina Faso,Meat,Offline,L,2/1/2014,264502561,3/20/2014,1040,421.89,364.69,438765.60,379277.60,59488.00 Asia,India,Personal Care,Offline,L,12/23/2010,355778777,1/18/2011,1701,81.73,56.67,139022.73,96395.67,42627.06 Sub-Saharan Africa,Sao Tome and Principe,Household,Online,C,5/10/2011,792863404,6/12/2011,4755,668.27,502.54,3177623.85,2389577.70,788046.15 Europe,Armenia,Meat,Offline,C,4/12/2017,391430270,5/22/2017,1770,421.89,364.69,746745.30,645501.30,101244.00 Europe,Georgia,Clothes,Online,C,9/23/2016,287465703,10/25/2016,6344,109.28,35.84,693272.32,227368.96,465903.36 Europe,Serbia,Cosmetics,Offline,M,2/8/2010,787268531,3/14/2010,9108,437.20,263.33,3982017.60,2398409.64,1583607.96 Australia and Oceania,Tuvalu,Cosmetics,Offline,C,1/10/2014,917450082,2/11/2014,2722,437.20,263.33,1190058.40,716784.26,473274.14 Central America and the Caribbean,Barbados,Vegetables,Online,L,2/3/2012,674934184,2/6/2012,6878,154.06,90.93,1059624.68,625416.54,434208.14 Sub-Saharan Africa,Mali,Cereal,Offline,L,9/6/2011,576957166,10/11/2011,3301,205.70,117.11,679015.70,386580.11,292435.59 Sub-Saharan Africa,Central African Republic,Household,Online,M,6/18/2017,311067855,6/23/2017,746,668.27,502.54,498529.42,374894.84,123634.58 Asia,Sri Lanka,Vegetables,Offline,H,6/10/2012,985127580,6/13/2012,9997,154.06,90.93,1540137.82,909027.21,631110.61 Europe,Bosnia and Herzegovina,Vegetables,Offline,C,10/10/2014,177310168,10/19/2014,8874,154.06,90.93,1367128.44,806912.82,560215.62 Europe,Netherlands,Household,Offline,M,5/19/2013,486101949,6/2/2013,7224,668.27,502.54,4827582.48,3630348.96,1197233.52 Asia,Laos,Office Supplies,Online,C,3/9/2017,980301749,4/27/2017,1927,651.21,524.96,1254881.67,1011597.92,243283.75 Central America and the Caribbean,Honduras,Office Supplies,Online,L,6/18/2013,349020898,6/23/2013,1895,651.21,524.96,1234042.95,994799.20,239243.75 Sub-Saharan Africa,Zambia,Household,Online,M,1/16/2017,951683223,2/1/2017,3069,668.27,502.54,2050920.63,1542295.26,508625.37 Sub-Saharan Africa,Botswana,Snacks,Offline,L,7/18/2013,268025052,8/15/2013,3424,152.58,97.44,522433.92,333634.56,188799.36 Asia,Bhutan,Household,Online,C,2/23/2016,348095214,3/15/2016,7964,668.27,502.54,5322102.28,4002228.56,1319873.72 Sub-Saharan Africa,Zimbabwe,Household,Offline,M,5/17/2016,162255036,7/1/2016,3726,668.27,502.54,2489974.02,1872464.04,617509.98 Sub-Saharan Africa,Lesotho,Personal Care,Offline,L,8/14/2010,551178348,9/15/2010,4776,81.73,56.67,390342.48,270655.92,119686.56 Sub-Saharan Africa,Togo,Household,Offline,H,6/18/2011,175851476,7/20/2011,7214,668.27,502.54,4820899.78,3625323.56,1195576.22 Australia and Oceania,Australia,Meat,Online,M,8/17/2013,467573249,9/17/2013,4170,421.89,364.69,1759281.30,1520757.30,238524.00 Europe,Luxembourg,Fruits,Offline,L,11/26/2012,677954995,12/25/2012,804,9.33,6.92,7501.32,5563.68,1937.64 Europe,Estonia,Fruits,Offline,H,7/4/2017,128920543,7/17/2017,9308,9.33,6.92,86843.64,64411.36,22432.28 Europe,United Kingdom,Meat,Online,H,12/29/2013,462706220,2/3/2014,3908,421.89,364.69,1648746.12,1425208.52,223537.60 Middle East and North Africa,Morocco,Vegetables,Online,H,6/29/2016,691860854,8/4/2016,5856,154.06,90.93,902175.36,532486.08,369689.28 Europe,United Kingdom,Office Supplies,Offline,M,6/24/2017,349245774,7/10/2017,8440,651.21,524.96,5496212.40,4430662.40,1065550.00 Australia and Oceania,Papua New Guinea,Beverages,Online,H,4/13/2014,838034808,5/2/2014,1978,47.45,31.79,93856.10,62880.62,30975.48 Australia and Oceania,New Zealand,Personal Care,Offline,M,11/10/2012,481714284,12/27/2012,8816,81.73,56.67,720531.68,499602.72,220928.96 Europe,Austria,Cosmetics,Offline,L,6/17/2016,374083030,7/31/2016,8336,437.20,263.33,3644499.20,2195118.88,1449380.32 Central America and the Caribbean,Saint Kitts and Nevis ,Vegetables,Online,M,3/31/2014,329252374,4/15/2014,1949,154.06,90.93,300262.94,177222.57,123040.37 Asia,Myanmar,Snacks,Online,C,5/17/2015,231646144,5/22/2015,8097,152.58,97.44,1235440.26,788971.68,446468.58 Central America and the Caribbean,Guatemala,Baby Food,Online,M,12/4/2014,486000669,12/27/2014,7253,255.28,159.42,1851545.84,1156273.26,695272.58 Central America and the Caribbean,Antigua and Barbuda ,Vegetables,Offline,C,10/28/2012,667364776,11/9/2012,6922,154.06,90.93,1066403.32,629417.46,436985.86 Middle East and North Africa,Iran,Vegetables,Online,C,1/26/2010,871099793,2/28/2010,6641,154.06,90.93,1023112.46,603866.13,419246.33 Asia,Singapore,Cosmetics,Online,H,7/4/2012,362879550,8/6/2012,2978,437.20,263.33,1301981.60,784196.74,517784.86 Sub-Saharan Africa,Sudan,Baby Food,Offline,M,11/26/2011,728690373,12/17/2011,4529,255.28,159.42,1156163.12,722013.18,434149.94 Europe,Macedonia,Cereal,Online,M,6/10/2012,924831092,7/29/2012,6927,205.70,117.11,1424883.90,811220.97,613662.93 North America,Canada,Office Supplies,Offline,C,10/24/2011,427913033,11/20/2011,7831,651.21,524.96,5099625.51,4110961.76,988663.75 Europe,Malta,Cereal,Online,C,7/16/2012,584860026,7/22/2012,1934,205.70,117.11,397823.80,226490.74,171333.06 Middle East and North Africa,Iraq,Snacks,Online,M,8/28/2010,562908399,8/28/2010,5959,152.58,97.44,909224.22,580644.96,328579.26 Europe,Austria,Personal Care,Offline,C,8/10/2014,499606978,8/22/2014,3662,81.73,56.67,299295.26,207525.54,91769.72 Asia,Thailand,Cereal,Online,M,3/10/2011,152817094,3/16/2011,829,205.70,117.11,170525.30,97084.19,73441.11 Europe,Netherlands,Beverages,Online,M,10/6/2014,250712573,11/11/2014,277,47.45,31.79,13143.65,8805.83,4337.82 Sub-Saharan Africa,Zimbabwe,Clothes,Online,M,6/23/2010,241779744,7/11/2010,6854,109.28,35.84,749005.12,245647.36,503357.76 Central America and the Caribbean,Belize,Cereal,Offline,L,1/13/2011,544817435,1/22/2011,2441,205.70,117.11,502113.70,285865.51,216248.19 Europe,Georgia,Vegetables,Offline,L,1/23/2015,298936975,2/19/2015,949,154.06,90.93,146202.94,86292.57,59910.37 Central America and the Caribbean,Dominica,Beverages,Online,L,11/24/2010,513562190,12/22/2010,3319,47.45,31.79,157486.55,105511.01,51975.54 Europe,Slovakia,Beverages,Online,L,8/27/2010,918429410,9/28/2010,2527,47.45,31.79,119906.15,80333.33,39572.82 Sub-Saharan Africa,Benin,Snacks,Online,M,2/28/2016,413587462,4/17/2016,8576,152.58,97.44,1308526.08,835645.44,472880.64 Central America and the Caribbean,Jamaica,Meat,Online,H,2/25/2015,219397675,4/15/2015,3503,421.89,364.69,1477880.67,1277509.07,200371.60 Middle East and North Africa,Syria,Cosmetics,Offline,L,5/17/2015,726533877,6/27/2015,6374,437.20,263.33,2786712.80,1678465.42,1108247.38 Europe,Bulgaria,Personal Care,Offline,C,6/24/2010,145982396,6/24/2010,8290,81.73,56.67,677541.70,469794.30,207747.40 Australia and Oceania,Tonga,Beverages,Offline,C,2/16/2014,359042060,3/26/2014,7379,47.45,31.79,350133.55,234578.41,115555.14 Europe,Finland,Clothes,Online,L,9/30/2010,167324197,10/27/2010,3803,109.28,35.84,415591.84,136299.52,279292.32 Sub-Saharan Africa,Namibia,Beverages,Online,H,5/3/2012,242752635,6/5/2012,4754,47.45,31.79,225577.30,151129.66,74447.64 Sub-Saharan Africa,Kenya,Baby Food,Offline,H,10/24/2016,877563703,11/23/2016,9456,255.28,159.42,2413927.68,1507475.52,906452.16 Australia and Oceania,Kiribati,Household,Offline,C,10/21/2011,634306228,11/24/2011,4163,668.27,502.54,2782008.01,2092074.02,689933.99 Australia and Oceania,Australia,Fruits,Online,M,4/13/2016,395841538,5/5/2016,7163,9.33,6.92,66830.79,49567.96,17262.83 Sub-Saharan Africa,Eritrea,Office Supplies,Online,L,3/23/2016,215343463,4/2/2016,3771,651.21,524.96,2455712.91,1979624.16,476088.75 Europe,Bulgaria,Fruits,Offline,L,10/20/2013,666298329,11/18/2013,1337,9.33,6.92,12474.21,9252.04,3222.17 Australia and Oceania,Australia,Fruits,Offline,C,1/18/2016,592504966,3/4/2016,4241,9.33,6.92,39568.53,29347.72,10220.81 Sub-Saharan Africa,The Gambia,Office Supplies,Online,H,11/27/2015,258074700,1/7/2016,8894,651.21,524.96,5791861.74,4668994.24,1122867.50 Europe,Latvia,Beverages,Online,C,3/7/2011,897431361,4/9/2011,8738,47.45,31.79,414618.10,277781.02,136837.08 Europe,Bulgaria,Clothes,Online,M,11/18/2015,665311276,11/24/2015,9246,109.28,35.84,1010402.88,331376.64,679026.24 Europe,France,Beverages,Offline,L,1/2/2011,486763274,2/2/2011,2925,47.45,31.79,138791.25,92985.75,45805.50 Middle East and North Africa,United Arab Emirates,Fruits,Offline,M,6/23/2016,907148683,8/2/2016,4309,9.33,6.92,40202.97,29818.28,10384.69 Middle East and North Africa,Kuwait,Personal Care,Online,C,8/23/2011,742141330,8/30/2011,4966,81.73,56.67,405871.18,281423.22,124447.96 Middle East and North Africa,Iran,Personal Care,Offline,M,10/7/2014,227727544,10/25/2014,8496,81.73,56.67,694378.08,481468.32,212909.76 Central America and the Caribbean,Jamaica,Beverages,Online,M,2/10/2011,570206153,3/29/2011,5527,47.45,31.79,262256.15,175703.33,86552.82 Sub-Saharan Africa,Rwanda,Cereal,Offline,M,4/14/2017,796188485,5/13/2017,8721,205.70,117.11,1793909.70,1021316.31,772593.39 North America,United States of America,Household,Online,C,11/23/2016,902598369,1/4/2017,7770,668.27,502.54,5192457.90,3904735.80,1287722.10 Europe,Cyprus,Beverages,Offline,M,4/27/2017,506672132,5/20/2017,4398,47.45,31.79,208685.10,139812.42,68872.68 Middle East and North Africa,Afghanistan,Vegetables,Online,C,8/28/2015,195958602,8/29/2015,7360,154.06,90.93,1133881.60,669244.80,464636.80 Sub-Saharan Africa,Uganda,Cereal,Online,M,1/19/2010,178319108,2/3/2010,7442,205.70,117.11,1530819.40,871532.62,659286.78 Sub-Saharan Africa,Senegal,Vegetables,Offline,C,2/2/2011,731927478,3/18/2011,2461,154.06,90.93,379141.66,223778.73,155362.93 Middle East and North Africa,Afghanistan,Cosmetics,Online,C,4/7/2015,855270040,5/7/2015,2266,437.20,263.33,990695.20,596705.78,393989.42 Europe,Estonia,Personal Care,Offline,M,5/10/2016,517145621,5/12/2016,3736,81.73,56.67,305343.28,211719.12,93624.16 Sub-Saharan Africa,Senegal,Meat,Online,C,10/12/2016,206665551,10/17/2016,5784,421.89,364.69,2440211.76,2109366.96,330844.80 Europe,Vatican City,Beverages,Offline,L,3/24/2016,483253657,4/14/2016,4351,47.45,31.79,206454.95,138318.29,68136.66 Asia,Laos,Vegetables,Online,L,6/16/2015,626646268,7/31/2015,7411,154.06,90.93,1141738.66,673882.23,467856.43 Central America and the Caribbean,Dominican Republic,Clothes,Offline,C,7/3/2012,886892211,7/11/2012,9969,109.28,35.84,1089412.32,357288.96,732123.36 Asia,Nepal,Personal Care,Online,M,1/17/2014,234352815,1/26/2014,9061,81.73,56.67,740555.53,513486.87,227068.66 Australia and Oceania,Palau,Meat,Offline,M,6/16/2016,409701907,7/18/2016,8754,421.89,364.69,3693225.06,3192496.26,500728.80 Europe,Serbia,Snacks,Online,C,3/10/2017,973925817,4/5/2017,5147,152.58,97.44,785329.26,501523.68,283805.58 Europe,Cyprus,Cereal,Offline,H,12/17/2010,658323371,1/12/2011,1370,205.70,117.11,281809.00,160440.70,121368.30 Asia,Indonesia,Meat,Online,L,4/13/2016,514505898,5/16/2016,2584,421.89,364.69,1090163.76,942358.96,147804.80 Central America and the Caribbean,Dominica,Vegetables,Online,H,1/26/2011,764397227,3/1/2011,981,154.06,90.93,151132.86,89202.33,61930.53 Sub-Saharan Africa,Malawi,Clothes,Offline,M,3/6/2012,350233685,4/6/2012,785,109.28,35.84,85784.80,28134.40,57650.40 Australia and Oceania,East Timor,Snacks,Offline,L,1/7/2011,984564101,1/20/2011,3252,152.58,97.44,496190.16,316874.88,179315.28 Asia,Mongolia,Office Supplies,Offline,C,3/17/2015,400249803,4/21/2015,1666,651.21,524.96,1084915.86,874583.36,210332.50 Sub-Saharan Africa,Kenya,Clothes,Offline,C,7/2/2014,900464618,8/6/2014,6346,109.28,35.84,693490.88,227440.64,466050.24 Europe,Moldova ,Vegetables,Offline,M,11/11/2014,808694875,11/30/2014,9639,154.06,90.93,1484984.34,876474.27,608510.07 Sub-Saharan Africa,Mozambique,Cereal,Offline,H,12/18/2011,318739402,1/17/2012,927,205.70,117.11,190683.90,108560.97,82122.93 Central America and the Caribbean,Saint Kitts and Nevis ,Household,Online,H,2/10/2010,144709527,3/5/2010,1620,668.27,502.54,1082597.40,814114.80,268482.60 Australia and Oceania,Papua New Guinea,Snacks,Online,C,11/22/2010,171029078,1/4/2011,160,152.58,97.44,24412.80,15590.40,8822.40 Sub-Saharan Africa,Guinea,Snacks,Offline,L,12/15/2016,802434384,1/31/2017,7021,152.58,97.44,1071264.18,684126.24,387137.94 Europe,Lithuania,Fruits,Online,L,2/1/2013,713974273,3/4/2013,9708,9.33,6.92,90575.64,67179.36,23396.28 Asia,Tajikistan,Meat,Offline,H,6/6/2015,901010072,6/10/2015,7758,421.89,364.69,3273022.62,2829265.02,443757.60 Central America and the Caribbean,Antigua and Barbuda ,Snacks,Online,L,9/5/2014,629215610,9/19/2014,7736,152.58,97.44,1180358.88,753795.84,426563.04 Middle East and North Africa,Saudi Arabia,Office Supplies,Online,L,3/5/2010,584577214,3/27/2010,8243,651.21,524.96,5367924.03,4327245.28,1040678.75 Asia,Myanmar,Meat,Online,H,9/6/2013,623393714,10/2/2013,4908,421.89,364.69,2070636.12,1789898.52,280737.60 Australia and Oceania,Australia,Baby Food,Online,H,4/22/2015,222276437,5/30/2015,5392,255.28,159.42,1376469.76,859592.64,516877.12 Australia and Oceania,Kiribati,Baby Food,Offline,C,1/3/2010,728149211,1/12/2010,4387,255.28,159.42,1119913.36,699375.54,420537.82 Middle East and North Africa,Pakistan,Vegetables,Offline,C,7/13/2016,408248364,7/16/2016,8618,154.06,90.93,1327689.08,783634.74,544054.34 Europe,Albania,Beverages,Online,C,1/13/2013,300122725,2/4/2013,1839,47.45,31.79,87260.55,58461.81,28798.74 Europe,Norway,Office Supplies,Online,M,8/9/2016,161633622,9/9/2016,9836,651.21,524.96,6405301.56,5163506.56,1241795.00 Europe,Vatican City,Meat,Offline,H,4/26/2011,720954883,5/30/2011,5426,421.89,364.69,2289175.14,1978807.94,310367.20 Middle East and North Africa,Algeria,Snacks,Online,C,8/6/2012,526572835,9/23/2012,3458,152.58,97.44,527621.64,336947.52,190674.12 Europe,Hungary,Snacks,Online,C,6/10/2010,897286307,7/7/2010,5813,152.58,97.44,886947.54,566418.72,320528.82 Asia,Tajikistan,Baby Food,Offline,L,1/16/2011,972206628,2/27/2011,6401,255.28,159.42,1634047.28,1020447.42,613599.86 Sub-Saharan Africa,Djibouti,Household,Offline,M,4/26/2010,860757625,6/12/2010,6164,668.27,502.54,4119216.28,3097656.56,1021559.72 Europe,Macedonia,Cereal,Offline,H,10/20/2012,292675626,11/2/2012,8076,205.70,117.11,1661233.20,945780.36,715452.84 Sub-Saharan Africa,Lesotho,Meat,Online,C,10/2/2012,868009459,11/21/2012,2143,421.89,364.69,904110.27,781530.67,122579.60 Europe,Denmark,Beverages,Offline,C,1/21/2013,207120454,2/17/2013,400,47.45,31.79,18980.00,12716.00,6264.00 Australia and Oceania,Nauru,Personal Care,Online,H,11/16/2013,500682437,11/21/2013,1914,81.73,56.67,156431.22,108466.38,47964.84 Europe,Moldova ,Vegetables,Offline,M,6/11/2016,859681737,6/19/2016,7785,154.06,90.93,1199357.10,707890.05,491467.05 Australia and Oceania,Australia,Cereal,Online,M,9/13/2011,465417182,10/30/2011,6142,205.70,117.11,1263409.40,719289.62,544119.78 Europe,Slovenia,Meat,Offline,H,5/12/2014,819500100,6/26/2014,7146,421.89,364.69,3014825.94,2606074.74,408751.20 Central America and the Caribbean,Guatemala,Personal Care,Online,C,9/16/2013,793854320,10/3/2013,7989,81.73,56.67,652940.97,452736.63,200204.34 Central America and the Caribbean,Dominican Republic,Clothes,Online,C,3/28/2015,680716168,5/7/2015,7896,109.28,35.84,862874.88,282992.64,579882.24 Middle East and North Africa,Israel,Clothes,Online,C,2/19/2014,842634475,3/17/2014,3121,109.28,35.84,341062.88,111856.64,229206.24 Asia,Brunei,Beverages,Online,L,4/1/2014,362470567,4/5/2014,1950,47.45,31.79,92527.50,61990.50,30537.00 Asia,Myanmar,Snacks,Online,H,9/5/2016,193398272,10/16/2016,9701,152.58,97.44,1480178.58,945265.44,534913.14 Europe,Croatia,Household,Offline,M,1/16/2016,908903920,1/31/2016,3723,668.27,502.54,2487969.21,1870956.42,617012.79 Australia and Oceania,Tonga,Clothes,Online,C,10/14/2011,452786338,11/29/2011,8394,109.28,35.84,917296.32,300840.96,616455.36 Europe,Belarus,Vegetables,Online,M,1/3/2012,889156854,1/15/2012,127,154.06,90.93,19565.62,11548.11,8017.51 Sub-Saharan Africa,Mali,Meat,Online,L,7/4/2014,752439296,8/7/2014,2363,421.89,364.69,996926.07,861762.47,135163.60 Asia,Bangladesh,Cosmetics,Offline,M,7/29/2010,897369992,9/11/2010,577,437.20,263.33,252264.40,151941.41,100322.99 Sub-Saharan Africa,Djibouti,Office Supplies,Online,H,7/4/2011,448997771,7/17/2011,7273,651.21,524.96,4736250.33,3818034.08,918216.25 Sub-Saharan Africa,Eritrea,Baby Food,Online,H,7/2/2014,852683961,7/28/2014,6987,255.28,159.42,1783641.36,1113867.54,669773.82 Middle East and North Africa,Iran,Snacks,Offline,M,1/18/2014,924102389,1/21/2014,1287,152.58,97.44,196370.46,125405.28,70965.18 Asia,Kyrgyzstan,Meat,Offline,H,4/11/2013,899239385,5/14/2013,3772,421.89,364.69,1591369.08,1375610.68,215758.40 Sub-Saharan Africa,Mauritius ,Snacks,Offline,C,8/2/2012,184393775,9/8/2012,5071,152.58,97.44,773733.18,494118.24,279614.94 Sub-Saharan Africa,Ghana,Cosmetics,Offline,M,6/12/2013,506176888,6/16/2013,7845,437.20,263.33,3429834.00,2065823.85,1364010.15 Central America and the Caribbean,Dominican Republic,Cosmetics,Offline,M,8/7/2014,961512553,8/15/2014,1786,437.20,263.33,780839.20,470307.38,310531.82 Sub-Saharan Africa,Togo,Baby Food,Offline,L,11/11/2015,267637097,12/21/2015,8619,255.28,159.42,2200258.32,1374040.98,826217.34 Sub-Saharan Africa,Angola,Fruits,Offline,L,4/28/2014,812099349,5/23/2014,7099,9.33,6.92,66233.67,49125.08,17108.59 Sub-Saharan Africa,Ghana,Baby Food,Offline,C,9/15/2015,102760636,9/19/2015,8011,255.28,159.42,2045048.08,1277113.62,767934.46 Europe,Romania,Meat,Online,H,6/13/2015,217794787,6/19/2015,9172,421.89,364.69,3869575.08,3344936.68,524638.40 Sub-Saharan Africa,Zimbabwe,Clothes,Online,C,1/18/2010,155688130,2/10/2010,432,109.28,35.84,47208.96,15482.88,31726.08 Sub-Saharan Africa,Benin,Beverages,Offline,H,12/31/2015,785239493,2/3/2016,8671,47.45,31.79,411438.95,275651.09,135787.86 Middle East and North Africa,Algeria,Clothes,Offline,M,12/30/2012,795560204,2/2/2013,2798,109.28,35.84,305765.44,100280.32,205485.12 Middle East and North Africa,Lebanon,Fruits,Online,H,11/20/2015,746074092,11/24/2015,8758,9.33,6.92,81712.14,60605.36,21106.78 Europe,Vatican City,Cereal,Offline,H,4/9/2010,816517484,5/18/2010,4523,205.70,117.11,930381.10,529688.53,400692.57 Middle East and North Africa,Somalia,Baby Food,Online,H,11/28/2016,356939208,12/21/2016,5098,255.28,159.42,1301417.44,812723.16,488694.28 Europe,Estonia,Household,Offline,L,3/9/2012,137700593,3/10/2012,7520,668.27,502.54,5025390.40,3779100.80,1246289.60 Middle East and North Africa,Libya,Personal Care,Offline,L,3/14/2015,999475467,3/24/2015,5856,81.73,56.67,478610.88,331859.52,146751.36 Asia,Uzbekistan,Cereal,Online,H,10/26/2015,703250157,12/13/2015,6204,205.70,117.11,1276162.80,726550.44,549612.36 Sub-Saharan Africa,Lesotho,Snacks,Online,M,5/5/2016,680323493,6/23/2016,1695,152.58,97.44,258623.10,165160.80,93462.30 Sub-Saharan Africa,Democratic Republic of the Congo,Snacks,Offline,C,7/23/2012,182306802,8/6/2012,7489,152.58,97.44,1142671.62,729728.16,412943.46 Sub-Saharan Africa,Tanzania,Personal Care,Online,L,9/5/2012,331123912,10/8/2012,5779,81.73,56.67,472317.67,327495.93,144821.74 Asia,Vietnam,Cereal,Online,C,11/2/2010,969011151,11/6/2010,788,205.70,117.11,162091.60,92282.68,69808.92 Sub-Saharan Africa,Comoros,Meat,Offline,H,8/3/2013,208517348,8/23/2013,3772,421.89,364.69,1591369.08,1375610.68,215758.40 Sub-Saharan Africa,Comoros,Household,Online,L,5/29/2013,282503831,6/29/2013,8016,668.27,502.54,5356852.32,4028360.64,1328491.68 Central America and the Caribbean,Trinidad and Tobago,Household,Offline,H,3/12/2015,794144427,4/10/2015,3839,668.27,502.54,2565488.53,1929251.06,636237.47 Australia and Oceania,Palau,Fruits,Offline,L,5/3/2017,966925466,5/22/2017,3587,9.33,6.92,33466.71,24822.04,8644.67 Europe,Macedonia,Fruits,Online,L,7/6/2015,994645774,8/19/2015,6643,9.33,6.92,61979.19,45969.56,16009.63 Sub-Saharan Africa,Comoros,Fruits,Offline,C,1/8/2014,691416680,1/16/2014,4415,9.33,6.92,41191.95,30551.80,10640.15 Sub-Saharan Africa,Zambia,Baby Food,Offline,H,6/15/2014,841662013,6/22/2014,5348,255.28,159.42,1365237.44,852578.16,512659.28 Australia and Oceania,Vanuatu,Snacks,Offline,M,11/20/2011,950118100,1/8/2012,9914,152.58,97.44,1512678.12,966020.16,546657.96 Europe,Cyprus,Vegetables,Offline,L,10/28/2013,591833770,11/25/2013,5619,154.06,90.93,865663.14,510935.67,354727.47 Asia,Thailand,Snacks,Offline,L,9/8/2013,762170350,9/12/2013,1999,152.58,97.44,305007.42,194782.56,110224.86 Asia,Kyrgyzstan,Household,Offline,L,4/28/2017,726801669,5/23/2017,5620,668.27,502.54,3755677.40,2824274.80,931402.60 Central America and the Caribbean,Saint Vincent and the Grenadines,Baby Food,Offline,H,6/30/2016,271714055,6/30/2016,5082,255.28,159.42,1297332.96,810172.44,487160.52 Sub-Saharan Africa,Mauritius ,Baby Food,Offline,H,5/25/2015,153206336,6/25/2015,6014,255.28,159.42,1535253.92,958751.88,576502.04 Europe,Hungary,Household,Online,C,9/14/2011,747889840,10/11/2011,6078,668.27,502.54,4061745.06,3054438.12,1007306.94 Europe,Switzerland,Cereal,Online,C,7/11/2015,702688395,8/20/2015,9966,205.70,117.11,2050006.20,1167118.26,882887.94 Europe,Denmark,Baby Food,Offline,L,4/24/2015,984838330,5/28/2015,4402,255.28,159.42,1123742.56,701766.84,421975.72 Europe,Cyprus,Office Supplies,Offline,M,12/9/2011,831888473,12/19/2011,3140,651.21,524.96,2044799.40,1648374.40,396425.00 Sub-Saharan Africa,Rwanda,Beverages,Offline,L,12/4/2014,901700150,1/7/2015,1967,47.45,31.79,93334.15,62530.93,30803.22 Sub-Saharan Africa,Benin,Vegetables,Online,C,11/30/2015,122447192,12/10/2015,3700,154.06,90.93,570022.00,336441.00,233581.00 Europe,Norway,Cereal,Online,M,3/11/2015,642615926,3/15/2015,3188,205.70,117.11,655771.60,373346.68,282424.92 Middle East and North Africa,Saudi Arabia,Clothes,Offline,M,4/26/2010,181005179,5/19/2010,2310,109.28,35.84,252436.80,82790.40,169646.40 Australia and Oceania,Nauru,Snacks,Online,C,1/27/2015,576726281,3/2/2015,4978,152.58,97.44,759543.24,485056.32,274486.92 Australia and Oceania,Kiribati,Household,Offline,L,3/18/2010,139203059,5/1/2010,2133,668.27,502.54,1425419.91,1071917.82,353502.09 Europe,Lithuania,Office Supplies,Online,H,6/5/2015,398171842,6/27/2015,6751,651.21,524.96,4396318.71,3544004.96,852313.75 Australia and Oceania,Palau,Vegetables,Offline,C,5/25/2017,253681457,6/22/2017,8835,154.06,90.93,1361120.10,803366.55,557753.55 Asia,Sri Lanka,Personal Care,Offline,L,6/8/2011,926093232,7/12/2011,422,81.73,56.67,34490.06,23914.74,10575.32 Sub-Saharan Africa,Djibouti,Fruits,Online,C,11/7/2012,106080996,12/25/2012,579,9.33,6.92,5402.07,4006.68,1395.39 Central America and the Caribbean,Guatemala,Cosmetics,Offline,H,4/24/2015,504631078,6/7/2015,405,437.20,263.33,177066.00,106648.65,70417.35 Sub-Saharan Africa,Zimbabwe,Office Supplies,Online,H,4/26/2017,403042304,5/29/2017,8029,651.21,524.96,5228565.09,4214903.84,1013661.25 Sub-Saharan Africa,Comoros,Meat,Offline,H,11/16/2010,402926003,12/27/2010,3613,421.89,364.69,1524288.57,1317624.97,206663.60 Europe,Netherlands,Office Supplies,Online,C,7/22/2015,276206004,8/21/2015,4349,651.21,524.96,2832112.29,2283051.04,549061.25 Europe,Portugal,Clothes,Online,H,2/17/2014,315118634,3/16/2014,9461,109.28,35.84,1033898.08,339082.24,694815.84 Europe,Spain,Baby Food,Online,M,12/11/2016,882212722,1/26/2017,5204,255.28,159.42,1328477.12,829621.68,498855.44 Middle East and North Africa,Egypt,Clothes,Offline,H,9/7/2012,160349595,9/21/2012,9863,109.28,35.84,1077828.64,353489.92,724338.72 Europe,Slovenia,Vegetables,Online,C,1/14/2010,902703082,3/5/2010,8757,154.06,90.93,1349103.42,796274.01,552829.41 Europe,Ireland,Cosmetics,Online,M,3/7/2011,982759511,4/6/2011,9233,437.20,263.33,4036667.60,2431325.89,1605341.71 Asia,Taiwan,Meat,Online,H,7/27/2015,144317710,8/19/2015,5672,421.89,364.69,2392960.08,2068521.68,324438.40 Sub-Saharan Africa,Swaziland,Meat,Offline,C,2/25/2016,451489007,3/7/2016,4485,421.89,364.69,1892176.65,1635634.65,256542.00 Europe,Armenia,Fruits,Online,M,9/25/2010,438697230,10/7/2010,9114,9.33,6.92,85033.62,63068.88,21964.74 Sub-Saharan Africa,The Gambia,Clothes,Offline,L,4/26/2013,960678708,5/6/2013,5033,109.28,35.84,550006.24,180382.72,369623.52 Middle East and North Africa,Iran,Cereal,Online,C,6/23/2012,242482268,7/17/2012,4747,205.70,117.11,976457.90,555921.17,420536.73 Europe,Andorra,Baby Food,Online,M,12/29/2012,629469239,2/7/2013,2791,255.28,159.42,712486.48,444941.22,267545.26 Middle East and North Africa,Morocco,Vegetables,Online,C,12/6/2016,937313449,1/3/2017,734,154.06,90.93,113080.04,66742.62,46337.42 Asia,Bhutan,Clothes,Online,H,4/5/2012,502001225,5/1/2012,2173,109.28,35.84,237465.44,77880.32,159585.12 Asia,Mongolia,Beverages,Online,M,7/15/2014,529831397,7/21/2014,7739,47.45,31.79,367215.55,246022.81,121192.74 Sub-Saharan Africa,Eritrea,Office Supplies,Offline,L,1/29/2010,947415292,2/5/2010,93,651.21,524.96,60562.53,48821.28,11741.25 Sub-Saharan Africa,Central African Republic,Clothes,Offline,M,10/11/2012,851676738,10/14/2012,8928,109.28,35.84,975651.84,319979.52,655672.32 North America,Greenland,Fruits,Offline,H,11/16/2014,759852063,12/21/2014,5966,9.33,6.92,55662.78,41284.72,14378.06 Middle East and North Africa,Somalia,Vegetables,Online,C,6/17/2013,359490096,7/14/2013,9963,154.06,90.93,1534899.78,905935.59,628964.19 Sub-Saharan Africa,Cameroon,Cereal,Online,L,4/6/2014,758452165,4/27/2014,1705,205.70,117.11,350718.50,199672.55,151045.95 Asia,Uzbekistan,Beverages,Online,L,9/16/2012,434912097,11/2/2012,9009,47.45,31.79,427477.05,286396.11,141080.94 Sub-Saharan Africa,Ethiopia,Personal Care,Offline,H,11/16/2012,187356221,12/30/2012,1724,81.73,56.67,140902.52,97699.08,43203.44 Asia,Kyrgyzstan,Office Supplies,Online,H,2/12/2016,884583365,3/28/2016,6730,651.21,524.96,4382643.30,3532980.80,849662.50 Europe,United Kingdom,Cosmetics,Online,M,4/6/2017,315704858,5/17/2017,2938,437.20,263.33,1284493.60,773663.54,510830.06 Australia and Oceania,Marshall Islands,Snacks,Offline,C,1/6/2016,840144526,1/21/2016,6290,152.58,97.44,959728.20,612897.60,346830.60 Asia,North Korea,Baby Food,Online,L,2/16/2013,837638700,2/28/2013,4760,255.28,159.42,1215132.80,758839.20,456293.60 Australia and Oceania,Nauru,Meat,Offline,L,3/20/2014,558236205,4/5/2014,3353,421.89,364.69,1414597.17,1222805.57,191791.60 Central America and the Caribbean,Saint Lucia,Beverages,Online,H,10/20/2010,772298371,11/11/2010,9105,47.45,31.79,432032.25,289447.95,142584.30 Europe,Ukraine,Snacks,Offline,C,5/31/2014,520499026,6/17/2014,6083,152.58,97.44,928144.14,592727.52,335416.62 Sub-Saharan Africa,Sao Tome and Principe,Personal Care,Offline,M,12/3/2014,263824498,1/19/2015,387,81.73,56.67,31629.51,21931.29,9698.22 Europe,Bulgaria,Clothes,Offline,C,8/16/2014,533573615,10/5/2014,5145,109.28,35.84,562245.60,184396.80,377848.80 Europe,Romania,Office Supplies,Online,M,11/18/2016,581357705,12/13/2016,5519,651.21,524.96,3594027.99,2897254.24,696773.75 Middle East and North Africa,Yemen,Cereal,Online,H,10/6/2014,629100596,10/15/2014,3701,205.70,117.11,761295.70,433424.11,327871.59 North America,United States of America,Household,Offline,L,7/17/2017,519038617,7/23/2017,3916,668.27,502.54,2616945.32,1967946.64,648998.68 Central America and the Caribbean,Antigua and Barbuda ,Vegetables,Offline,H,8/19/2016,163720595,8/22/2016,7417,154.06,90.93,1142663.02,674427.81,468235.21 Europe,Latvia,Cereal,Offline,C,1/30/2012,896007859,2/4/2012,7492,205.70,117.11,1541104.40,877388.12,663716.28 Central America and the Caribbean,El Salvador,Snacks,Online,M,5/11/2016,519074237,5/12/2016,4457,152.58,97.44,680049.06,434290.08,245758.98 Central America and the Caribbean,The Bahamas,Office Supplies,Online,M,9/17/2012,956406056,11/4/2012,660,651.21,524.96,429798.60,346473.60,83325.00 Asia,Maldives,Personal Care,Online,L,12/16/2011,601802146,1/21/2012,5483,81.73,56.67,448125.59,310721.61,137403.98 Sub-Saharan Africa,Nigeria,Baby Food,Online,H,10/30/2010,169373834,11/21/2010,336,255.28,159.42,85774.08,53565.12,32208.96 Sub-Saharan Africa,Zimbabwe,Vegetables,Online,L,12/1/2010,443544948,12/1/2010,3661,154.06,90.93,564013.66,332894.73,231118.93 Europe,Armenia,Baby Food,Online,M,11/12/2014,929051816,12/11/2014,5933,255.28,159.42,1514576.24,945838.86,568737.38 Europe,Belarus,Personal Care,Online,C,1/13/2015,300943267,1/15/2015,4655,81.73,56.67,380453.15,263798.85,116654.30 Middle East and North Africa,Kuwait,Office Supplies,Online,M,6/3/2012,454580628,7/5/2012,9365,651.21,524.96,6098581.65,4916250.40,1182331.25 Central America and the Caribbean,Panama,Clothes,Online,H,11/13/2012,655637729,11/26/2012,6628,109.28,35.84,724307.84,237547.52,486760.32 Asia,Turkmenistan,Clothes,Online,C,9/20/2015,690100896,9/27/2015,5046,109.28,35.84,551426.88,180848.64,370578.24 Central America and the Caribbean,Guatemala,Clothes,Online,L,1/4/2010,414268958,1/18/2010,246,109.28,35.84,26882.88,8816.64,18066.24 Sub-Saharan Africa,Sudan,Meat,Online,L,2/22/2016,204753243,4/6/2016,9890,421.89,364.69,4172492.10,3606784.10,565708.00 Middle East and North Africa,Afghanistan,Vegetables,Offline,M,12/9/2013,508477580,1/27/2014,8670,154.06,90.93,1335700.20,788363.10,547337.10 Europe,Sweden,Snacks,Online,C,7/24/2014,492678296,9/5/2014,3311,152.58,97.44,505192.38,322623.84,182568.54 Europe,Moldova ,Cereal,Offline,H,4/26/2011,294904220,5/22/2011,7567,205.70,117.11,1556531.90,886171.37,670360.53 Europe,Belgium,Personal Care,Offline,C,9/19/2013,573016679,10/4/2013,7224,81.73,56.67,590417.52,409384.08,181033.44 Sub-Saharan Africa,South Africa,Fruits,Online,H,5/30/2013,255189502,6/13/2013,5099,9.33,6.92,47573.67,35285.08,12288.59 Sub-Saharan Africa,Mauritania,Meat,Online,M,9/7/2010,589909017,10/17/2010,6042,421.89,364.69,2549059.38,2203456.98,345602.40 Middle East and North Africa,Azerbaijan,Beverages,Online,H,9/2/2010,195974051,10/20/2010,1932,47.45,31.79,91673.40,61418.28,30255.12 Sub-Saharan Africa,Sao Tome and Principe,Snacks,Online,M,1/1/2012,912495934,1/5/2012,6680,152.58,97.44,1019234.40,650899.20,368335.20 Middle East and North Africa,Libya,Clothes,Online,C,7/30/2010,148898494,8/17/2010,1228,109.28,35.84,134195.84,44011.52,90184.32 Europe,Portugal,Beverages,Online,M,12/13/2010,334918057,12/22/2010,8551,47.45,31.79,405744.95,271836.29,133908.66 Middle East and North Africa,Lebanon,Office Supplies,Online,H,12/9/2014,370603454,1/14/2015,8652,651.21,524.96,5634268.92,4541953.92,1092315.00 Australia and Oceania,Marshall Islands,Meat,Online,L,4/14/2010,576316010,5/2/2010,3569,421.89,364.69,1505725.41,1301578.61,204146.80 Central America and the Caribbean,Barbados,Cosmetics,Online,C,4/20/2012,442729556,5/8/2012,2369,437.20,263.33,1035726.80,623828.77,411898.03 Sub-Saharan Africa,Sao Tome and Principe,Fruits,Offline,H,8/26/2014,880830419,9/2/2014,6150,9.33,6.92,57379.50,42558.00,14821.50 Australia and Oceania,Samoa ,Beverages,Offline,M,11/2/2015,171917426,12/21/2015,3042,47.45,31.79,144342.90,96705.18,47637.72 Australia and Oceania,Tonga,Household,Online,M,6/9/2015,717601907,6/24/2015,3206,668.27,502.54,2142473.62,1611143.24,531330.38 Europe,France,Meat,Online,M,4/21/2010,489807689,5/12/2010,3835,421.89,364.69,1617948.15,1398586.15,219362.00 Europe,Liechtenstein,Snacks,Online,L,7/2/2013,680771100,8/14/2013,4152,152.58,97.44,633512.16,404570.88,228941.28 Sub-Saharan Africa,South Africa,Meat,Online,C,8/26/2012,753040969,10/9/2012,412,421.89,364.69,173818.68,150252.28,23566.40 Europe,Kosovo,Clothes,Offline,C,8/6/2011,689478623,8/8/2011,901,109.28,35.84,98461.28,32291.84,66169.44 Australia and Oceania,Palau,Cereal,Online,C,6/10/2011,543257892,7/16/2011,937,205.70,117.11,192740.90,109732.07,83008.83 Europe,Sweden,Beverages,Offline,L,5/13/2014,887865102,6/4/2014,7869,47.45,31.79,373384.05,250155.51,123228.54 Europe,Bosnia and Herzegovina,Office Supplies,Online,L,4/2/2012,567099082,5/2/2012,6075,651.21,524.96,3956100.75,3189132.00,766968.75 Central America and the Caribbean,Antigua and Barbuda ,Snacks,Offline,C,3/14/2013,745071160,4/22/2013,1968,152.58,97.44,300277.44,191761.92,108515.52 Sub-Saharan Africa,Mauritius ,Cosmetics,Online,L,1/2/2015,856205165,1/22/2015,8990,437.20,263.33,3930428.00,2367336.70,1563091.30 Central America and the Caribbean,Costa Rica,Personal Care,Online,M,7/13/2016,855237424,7/17/2016,2614,81.73,56.67,213642.22,148135.38,65506.84 Sub-Saharan Africa,Burundi,Beverages,Offline,C,12/4/2013,767216765,12/17/2013,5345,47.45,31.79,253620.25,169917.55,83702.70 Sub-Saharan Africa,Sudan,Cereal,Offline,C,12/19/2011,237504518,1/20/2012,1719,205.70,117.11,353598.30,201312.09,152286.21 Europe,Croatia,Baby Food,Online,C,9/17/2012,781774508,10/18/2012,3305,255.28,159.42,843700.40,526883.10,316817.30 Asia,Cambodia,Cereal,Online,L,9/20/2011,836013066,11/6/2011,3699,205.70,117.11,760884.30,433189.89,327694.41 Europe,Liechtenstein,Fruits,Online,M,12/16/2016,706519019,12/19/2016,3533,9.33,6.92,32962.89,24448.36,8514.53 Sub-Saharan Africa,Lesotho,Beverages,Online,H,10/4/2014,319903695,11/11/2014,5467,47.45,31.79,259409.15,173795.93,85613.22 Sub-Saharan Africa,Sierra Leone,Household,Online,M,6/6/2011,573090922,7/2/2011,9194,668.27,502.54,6144074.38,4620352.76,1523721.62 Middle East and North Africa,Somalia,Clothes,Online,C,5/13/2014,183317029,5/20/2014,6437,109.28,35.84,703435.36,230702.08,472733.28 Sub-Saharan Africa,Sudan,Personal Care,Online,M,1/27/2013,638130843,2/3/2013,5952,81.73,56.67,486456.96,337299.84,149157.12 Sub-Saharan Africa,Botswana,Office Supplies,Online,L,4/16/2013,345393693,5/3/2013,8524,651.21,524.96,5550914.04,4474759.04,1076155.00 Sub-Saharan Africa,South Africa,Office Supplies,Online,M,6/11/2010,483279407,6/26/2010,1971,651.21,524.96,1283534.91,1034696.16,248838.75 Central America and the Caribbean,Saint Kitts and Nevis ,Household,Offline,C,3/7/2016,950274312,4/20/2016,6141,668.27,502.54,4103846.07,3086098.14,1017747.93 Europe,United Kingdom,Cosmetics,Offline,L,9/14/2016,815177237,10/16/2016,7914,437.20,263.33,3460000.80,2083993.62,1376007.18 Australia and Oceania,Marshall Islands,Snacks,Online,L,6/6/2014,567099511,7/1/2014,6202,152.58,97.44,946301.16,604322.88,341978.28 Sub-Saharan Africa,Eritrea,Personal Care,Online,C,8/14/2016,765464961,8/17/2016,6947,81.73,56.67,567778.31,393686.49,174091.82 Central America and the Caribbean,Panama,Cereal,Offline,L,6/18/2016,690009915,7/1/2016,8122,205.70,117.11,1670695.40,951167.42,719527.98 Sub-Saharan Africa,Democratic Republic of the Congo,Cosmetics,Offline,M,12/29/2011,590783202,2/4/2012,4733,437.20,263.33,2069267.60,1246340.89,822926.71 Asia,Brunei,Vegetables,Offline,C,6/17/2017,338146150,7/8/2017,3815,154.06,90.93,587738.90,346897.95,240840.95 Sub-Saharan Africa,Sudan,Fruits,Offline,C,2/5/2014,772772586,2/6/2014,9436,9.33,6.92,88037.88,65297.12,22740.76 Central America and the Caribbean,Jamaica,Fruits,Offline,M,7/1/2014,555648839,7/26/2014,7694,9.33,6.92,71785.02,53242.48,18542.54 Sub-Saharan Africa,Togo,Snacks,Online,L,5/19/2013,218073737,6/17/2013,1720,152.58,97.44,262437.60,167596.80,94840.80 Europe,Andorra,Fruits,Offline,M,2/8/2014,811658608,2/21/2014,6674,9.33,6.92,62268.42,46184.08,16084.34 Sub-Saharan Africa,Central African Republic,Clothes,Online,H,4/27/2017,758327281,5/11/2017,4749,109.28,35.84,518970.72,170204.16,348766.56 Asia,Cambodia,Office Supplies,Online,C,2/23/2017,800316083,3/31/2017,169,651.21,524.96,110054.49,88718.24,21336.25 Europe,Poland,Office Supplies,Offline,M,7/30/2012,850173842,8/15/2012,4188,651.21,524.96,2727267.48,2198532.48,528735.00 Middle East and North Africa,Afghanistan,Household,Offline,M,3/25/2011,440761888,4/1/2011,92,668.27,502.54,61480.84,46233.68,15247.16 Central America and the Caribbean,El Salvador,Cosmetics,Online,H,6/4/2010,975254046,6/6/2010,8200,437.20,263.33,3585040.00,2159306.00,1425734.00 Middle East and North Africa,Oman,Household,Online,H,2/19/2016,777136647,2/22/2016,858,668.27,502.54,573375.66,431179.32,142196.34 Sub-Saharan Africa,Madagascar,Cereal,Offline,C,6/14/2016,940208518,6/19/2016,7449,205.70,117.11,1532259.30,872352.39,659906.91 Asia,India,Beverages,Online,L,9/8/2015,378580987,9/21/2015,9382,47.45,31.79,445175.90,298253.78,146922.12 Australia and Oceania,Tonga,Snacks,Offline,L,6/4/2015,776677882,6/25/2015,5100,152.58,97.44,778158.00,496944.00,281214.00 Central America and the Caribbean,Panama,Office Supplies,Offline,L,9/29/2010,739235532,11/5/2010,5076,651.21,524.96,3305541.96,2664696.96,640845.00 Europe,Denmark,Cereal,Offline,L,9/19/2016,741302764,9/25/2016,6816,205.70,117.11,1402051.20,798221.76,603829.44 Europe,Denmark,Cosmetics,Offline,L,8/18/2011,878240907,9/25/2011,9856,437.20,263.33,4309043.20,2595380.48,1713662.72 Middle East and North Africa,Yemen,Baby Food,Offline,L,6/17/2016,415723788,7/17/2016,762,255.28,159.42,194523.36,121478.04,73045.32 Sub-Saharan Africa,Botswana,Clothes,Online,C,5/31/2015,939737737,7/13/2015,8134,109.28,35.84,888883.52,291522.56,597360.96 Europe,Portugal,Personal Care,Offline,H,9/1/2012,506581580,9/26/2012,7602,81.73,56.67,621311.46,430805.34,190506.12 Europe,Poland,Personal Care,Online,C,6/27/2013,392866647,8/6/2013,6826,81.73,56.67,557888.98,386829.42,171059.56 Sub-Saharan Africa,Sao Tome and Principe,Clothes,Online,M,10/28/2012,145516765,12/3/2012,499,109.28,35.84,54530.72,17884.16,36646.56 Sub-Saharan Africa,Equatorial Guinea,Beverages,Offline,M,4/14/2014,731768262,5/13/2014,5345,47.45,31.79,253620.25,169917.55,83702.70 Central America and the Caribbean,Grenada,Beverages,Offline,M,3/2/2011,489169967,3/22/2011,5118,47.45,31.79,242849.10,162701.22,80147.88 Sub-Saharan Africa,Mauritania,Meat,Offline,C,12/24/2012,975583207,1/18/2013,5605,421.89,364.69,2364693.45,2044087.45,320606.00 Asia,Uzbekistan,Office Supplies,Offline,L,5/20/2011,219181811,7/7/2011,9624,651.21,524.96,6267245.04,5052215.04,1215030.00 Middle East and North Africa,Saudi Arabia,Cereal,Online,L,3/23/2014,368452107,3/26/2014,2021,205.70,117.11,415719.70,236679.31,179040.39 Middle East and North Africa,Afghanistan,Fruits,Online,H,7/1/2011,942192924,8/20/2011,4679,9.33,6.92,43655.07,32378.68,11276.39 Sub-Saharan Africa,Mali,Cereal,Online,H,12/22/2016,179515588,12/25/2016,1507,205.70,117.11,309989.90,176484.77,133505.13 North America,Mexico,Cosmetics,Online,L,6/2/2011,889843928,6/23/2011,3448,437.20,263.33,1507465.60,907961.84,599503.76 Central America and the Caribbean,Costa Rica,Personal Care,Online,H,7/9/2014,102914273,8/2/2014,3475,81.73,56.67,284011.75,196928.25,87083.50 Europe,Switzerland,Household,Offline,L,12/14/2012,318775451,1/3/2013,1595,668.27,502.54,1065890.65,801551.30,264339.35 Sub-Saharan Africa,Nigeria,Meat,Online,H,3/8/2017,957788789,4/8/2017,9842,421.89,364.69,4152241.38,3589278.98,562962.40 Europe,Romania,Cosmetics,Online,M,3/23/2012,610628116,4/8/2012,7284,437.20,263.33,3184564.80,1918095.72,1266469.08 Middle East and North Africa,Azerbaijan,Meat,Offline,L,6/18/2014,188279759,8/7/2014,5020,421.89,364.69,2117887.80,1830743.80,287144.00 Asia,Nepal,Personal Care,Online,C,10/30/2014,672042548,12/11/2014,1179,81.73,56.67,96359.67,66813.93,29545.74 Europe,Czech Republic,Cereal,Online,C,11/23/2012,863527810,12/10/2012,5923,205.70,117.11,1218361.10,693642.53,524718.57 Europe,Croatia,Clothes,Online,C,2/4/2013,534659373,3/17/2013,6445,109.28,35.84,704309.60,230988.80,473320.80 Europe,Latvia,Cosmetics,Offline,M,5/5/2013,877673566,6/10/2013,1967,437.20,263.33,859972.40,517970.11,342002.29 Europe,Bulgaria,Cosmetics,Online,C,5/28/2016,455119216,6/17/2016,8745,437.20,263.33,3823314.00,2302820.85,1520493.15 Sub-Saharan Africa,Botswana,Beverages,Online,H,12/24/2010,149857652,1/12/2011,5064,47.45,31.79,240286.80,160984.56,79302.24 Europe,Spain,Cereal,Online,H,4/25/2013,915062701,4/25/2013,6243,205.70,117.11,1284185.10,731117.73,553067.37 Sub-Saharan Africa,Cape Verde,Snacks,Online,H,6/13/2010,624220693,7/26/2010,9629,152.58,97.44,1469192.82,938249.76,530943.06 Central America and the Caribbean,The Bahamas,Meat,Offline,L,12/25/2016,821130454,1/7/2017,9604,421.89,364.69,4051831.56,3502482.76,549348.80 Europe,Albania,Vegetables,Online,H,9/20/2010,869903314,11/4/2010,2577,154.06,90.93,397012.62,234326.61,162686.01 Europe,Macedonia,Vegetables,Offline,H,3/5/2012,204963099,3/9/2012,1991,154.06,90.93,306733.46,181041.63,125691.83 Europe,Poland,Personal Care,Online,H,8/24/2012,581046140,9/19/2012,3320,81.73,56.67,271343.60,188144.40,83199.20 Middle East and North Africa,Tunisia ,Baby Food,Online,H,11/5/2015,223201262,12/6/2015,9068,255.28,159.42,2314879.04,1445620.56,869258.48 North America,United States of America,Office Supplies,Offline,L,5/30/2011,576789796,5/31/2011,3773,651.21,524.96,2457015.33,1980674.08,476341.25 Europe,Serbia,Snacks,Offline,H,7/16/2016,457485568,7/27/2016,9001,152.58,97.44,1373372.58,877057.44,496315.14 Asia,Myanmar,Household,Online,M,8/26/2011,101274907,10/11/2011,8350,668.27,502.54,5580054.50,4196209.00,1383845.50 Sub-Saharan Africa,Liberia,Clothes,Offline,L,4/13/2012,714456641,5/12/2012,2452,109.28,35.84,267954.56,87879.68,180074.88 Sub-Saharan Africa,Tanzania,Personal Care,Online,H,5/2/2012,423642098,6/19/2012,3966,81.73,56.67,324141.18,224753.22,99387.96 Asia,Philippines,Household,Offline,C,7/22/2010,125755107,8/19/2010,2586,668.27,502.54,1728146.22,1299568.44,428577.78 Asia,Bangladesh,Vegetables,Offline,C,4/28/2014,338031995,5/5/2014,34,154.06,90.93,5238.04,3091.62,2146.42 Central America and the Caribbean,Dominica,Cereal,Online,H,2/27/2013,748021590,3/14/2013,5066,205.70,117.11,1042076.20,593279.26,448796.94 Sub-Saharan Africa,Democratic Republic of the Congo,Beverages,Offline,H,10/16/2012,663585221,11/26/2012,8468,47.45,31.79,401806.60,269197.72,132608.88 Sub-Saharan Africa,Botswana,Cosmetics,Online,L,3/23/2016,362896716,4/3/2016,8058,437.20,263.33,3522957.60,2121913.14,1401044.46 Central America and the Caribbean,El Salvador,Snacks,Offline,C,5/20/2012,644442403,6/10/2012,3683,152.58,97.44,561952.14,358871.52,203080.62 Asia,Japan,Cereal,Online,M,3/12/2010,577021110,4/30/2010,2224,205.70,117.11,457476.80,260452.64,197024.16 Europe,Monaco,Personal Care,Offline,H,1/25/2012,649744164,3/3/2012,2592,81.73,56.67,211844.16,146888.64,64955.52 Central America and the Caribbean,Guatemala,Meat,Offline,M,2/14/2010,522035396,3/7/2010,729,421.89,364.69,307557.81,265859.01,41698.80 Europe,Armenia,Vegetables,Offline,C,9/11/2012,373631131,10/24/2012,4609,154.06,90.93,710062.54,419096.37,290966.17 Central America and the Caribbean,The Bahamas,Baby Food,Online,L,3/31/2010,454580199,5/6/2010,9238,255.28,159.42,2358276.64,1472721.96,885554.68 Europe,Montenegro,Baby Food,Offline,C,1/8/2017,635243928,2/26/2017,1650,255.28,159.42,421212.00,263043.00,158169.00 Europe,Croatia,Beverages,Offline,C,4/5/2014,856296145,4/19/2014,5913,47.45,31.79,280571.85,187974.27,92597.58 Europe,Portugal,Cereal,Online,M,7/19/2014,678723180,8/19/2014,8126,205.70,117.11,1671518.20,951635.86,719882.34 Central America and the Caribbean,Antigua and Barbuda ,Cosmetics,Online,C,8/10/2012,633823859,9/15/2012,1420,437.20,263.33,620824.00,373928.60,246895.40 Middle East and North Africa,Afghanistan,Cosmetics,Offline,L,10/21/2011,873209512,11/19/2011,954,437.20,263.33,417088.80,251216.82,165871.98 Middle East and North Africa,Kuwait,Personal Care,Offline,M,10/10/2012,718803966,11/27/2012,8922,81.73,56.67,729195.06,505609.74,223585.32 North America,United States of America,Vegetables,Offline,H,3/24/2017,912843549,5/7/2017,9546,154.06,90.93,1470656.76,868017.78,602638.98 Europe,Malta,Household,Offline,H,7/26/2016,467877089,8/1/2016,4083,668.27,502.54,2728546.41,2051870.82,676675.59 Australia and Oceania,New Zealand,Office Supplies,Offline,H,11/6/2010,716765916,12/14/2010,5817,651.21,524.96,3788088.57,3053692.32,734396.25 Sub-Saharan Africa,Angola,Clothes,Offline,H,7/15/2012,362683856,8/15/2012,5067,109.28,35.84,553721.76,181601.28,372120.48 Australia and Oceania,Kiribati,Fruits,Offline,M,6/15/2012,429117238,7/24/2012,4182,9.33,6.92,39018.06,28939.44,10078.62 Central America and the Caribbean,Dominica,Clothes,Offline,M,11/5/2013,209864890,11/8/2013,2539,109.28,35.84,277461.92,90997.76,186464.16 Europe,Armenia,Baby Food,Online,L,6/11/2013,419038140,7/14/2013,1553,255.28,159.42,396449.84,247579.26,148870.58 Asia,Taiwan,Personal Care,Offline,C,10/31/2012,941060817,11/20/2012,9663,81.73,56.67,789756.99,547602.21,242154.78 Asia,Kazakhstan,Baby Food,Online,H,9/1/2014,380669248,9/24/2014,7345,255.28,159.42,1875031.60,1170939.90,704091.70 Europe,Monaco,Clothes,Offline,L,4/21/2011,112912261,5/29/2011,2102,109.28,35.84,229706.56,75335.68,154370.88 Europe,Vatican City,Cereal,Offline,H,4/23/2011,233151185,5/15/2011,3472,205.70,117.11,714190.40,406605.92,307584.48 Australia and Oceania,Palau,Office Supplies,Online,L,12/14/2012,907059848,1/8/2013,8021,651.21,524.96,5223355.41,4210704.16,1012651.25 Europe,Albania,Beverages,Offline,M,7/31/2015,120624577,8/5/2015,4348,47.45,31.79,206312.60,138222.92,68089.68 Europe,Ireland,Clothes,Online,H,10/20/2015,430144202,11/3/2015,8083,109.28,35.84,883310.24,289694.72,593615.52 Asia,Nepal,Snacks,Online,M,4/21/2011,412230050,5/3/2011,6887,152.58,97.44,1050818.46,671069.28,379749.18 Central America and the Caribbean,Haiti,Office Supplies,Online,M,3/9/2012,513805949,3/10/2012,5453,651.21,524.96,3551048.13,2862606.88,688441.25 Asia,India,Cereal,Online,H,6/25/2014,802108228,8/8/2014,504,205.70,117.11,103672.80,59023.44,44649.36 Sub-Saharan Africa,Niger,Baby Food,Offline,L,6/28/2011,514685714,8/10/2011,5795,255.28,159.42,1479347.60,923838.90,555508.70 Europe,Kosovo,Personal Care,Offline,C,9/20/2012,309399735,10/2/2012,7112,81.73,56.67,581263.76,403037.04,178226.72 Europe,Romania,Clothes,Offline,M,5/26/2017,914424121,6/3/2017,7273,109.28,35.84,794793.44,260664.32,534129.12 Sub-Saharan Africa,Democratic Republic of the Congo,Beverages,Offline,H,8/31/2010,878245198,10/16/2010,1126,47.45,31.79,53428.70,35795.54,17633.16 Middle East and North Africa,Kuwait,Household,Offline,M,10/17/2012,619661796,11/16/2012,550,668.27,502.54,367548.50,276397.00,91151.50 Sub-Saharan Africa,Mozambique,Meat,Online,M,11/6/2014,177785241,12/6/2014,9458,421.89,364.69,3990235.62,3449238.02,540997.60 Australia and Oceania,Kiribati,Household,Offline,L,9/24/2012,562039363,9/26/2012,8792,668.27,502.54,5875429.84,4418331.68,1457098.16 Sub-Saharan Africa,Gabon,Office Supplies,Offline,H,12/28/2010,602160489,1/15/2011,1525,651.21,524.96,993095.25,800564.00,192531.25 Sub-Saharan Africa,South Africa,Cosmetics,Online,M,6/11/2011,998197448,7/15/2011,7662,437.20,263.33,3349826.40,2017634.46,1332191.94 Sub-Saharan Africa,Malawi,Clothes,Online,C,12/24/2016,270511567,1/15/2017,9239,109.28,35.84,1009637.92,331125.76,678512.16 Europe,Moldova ,Office Supplies,Offline,H,8/15/2012,609776675,9/28/2012,5324,651.21,524.96,3467042.04,2794887.04,672155.00 North America,Canada,Baby Food,Online,M,10/1/2014,226979100,10/20/2014,7015,255.28,159.42,1790789.20,1118331.30,672457.90 Europe,Andorra,Meat,Offline,L,4/17/2014,103417670,4/30/2014,2442,421.89,364.69,1030255.38,890572.98,139682.40 Sub-Saharan Africa,Djibouti,Personal Care,Offline,L,10/31/2010,840703713,12/18/2010,1766,81.73,56.67,144335.18,100079.22,44255.96 Europe,Finland,Cosmetics,Online,C,5/12/2016,410761058,6/19/2016,2180,437.20,263.33,953096.00,574059.40,379036.60 Europe,Poland,Clothes,Online,M,8/28/2013,905826032,9/5/2013,2907,109.28,35.84,317676.96,104186.88,213490.08 Sub-Saharan Africa,Mali,Baby Food,Offline,H,1/23/2013,888447463,2/16/2013,202,255.28,159.42,51566.56,32202.84,19363.72 Asia,Brunei,Fruits,Online,L,11/1/2010,341486680,11/15/2010,2352,9.33,6.92,21944.16,16275.84,5668.32 Asia,Nepal,Cosmetics,Offline,C,8/31/2015,218117511,10/13/2015,4673,437.20,263.33,2043035.60,1230541.09,812494.51 Australia and Oceania,Federated States of Micronesia,Beverages,Offline,H,7/31/2014,191826283,9/11/2014,4515,47.45,31.79,214236.75,143531.85,70704.90 Sub-Saharan Africa,South Africa,Snacks,Online,C,8/12/2014,906411826,9/7/2014,6257,152.58,97.44,954693.06,609682.08,345010.98 Asia,Kyrgyzstan,Baby Food,Online,L,4/14/2016,825985467,5/13/2016,6310,255.28,159.42,1610816.80,1005940.20,604876.60 Asia,Maldives,Household,Offline,H,5/24/2017,284971034,6/11/2017,8117,668.27,502.54,5424347.59,4079117.18,1345230.41 Europe,Liechtenstein,Clothes,Offline,M,10/22/2016,138104856,11/18/2016,7151,109.28,35.84,781461.28,256291.84,525169.44 Sub-Saharan Africa,Sudan,Fruits,Offline,C,8/31/2010,410435760,9/26/2010,5917,9.33,6.92,55205.61,40945.64,14259.97 Europe,Albania,Baby Food,Online,L,4/29/2011,747325074,6/18/2011,8952,255.28,159.42,2285266.56,1427127.84,858138.72 Sub-Saharan Africa,Comoros,Snacks,Offline,L,4/9/2013,864446628,4/29/2013,7822,152.58,97.44,1193480.76,762175.68,431305.08 Middle East and North Africa,Pakistan,Office Supplies,Online,L,1/20/2012,997786748,2/12/2012,6127,651.21,524.96,3989963.67,3216429.92,773533.75 Middle East and North Africa,Somalia,Meat,Online,M,8/27/2015,553644263,9/28/2015,4496,421.89,364.69,1896817.44,1639646.24,257171.20 Asia,Kyrgyzstan,Office Supplies,Offline,H,5/22/2010,358630502,6/26/2010,5590,651.21,524.96,3640263.90,2934526.40,705737.50 Europe,Kosovo,Beverages,Online,L,2/25/2010,409669291,3/3/2010,9102,47.45,31.79,431889.90,289352.58,142537.32 Sub-Saharan Africa,Namibia,Cosmetics,Online,M,10/4/2014,323996961,11/10/2014,6755,437.20,263.33,2953286.00,1778794.15,1174491.85 Europe,France,Household,Online,H,9/20/2013,689162337,9/21/2013,7305,668.27,502.54,4881712.35,3671054.70,1210657.65 Sub-Saharan Africa,Namibia,Personal Care,Offline,C,10/7/2012,813026750,11/18/2012,1537,81.73,56.67,125619.01,87101.79,38517.22 North America,Canada,Cereal,Online,H,11/27/2014,973764026,1/3/2015,7269,205.70,117.11,1495233.30,851272.59,643960.71 Central America and the Caribbean,Haiti,Fruits,Offline,H,8/19/2016,169860494,9/15/2016,4350,9.33,6.92,40585.50,30102.00,10483.50 Central America and the Caribbean,Honduras,Cosmetics,Offline,M,9/24/2011,170114982,11/6/2011,9658,437.20,263.33,4222477.60,2543241.14,1679236.46 Australia and Oceania,Tonga,Personal Care,Offline,C,3/6/2010,563638818,4/4/2010,2106,81.73,56.67,172123.38,119347.02,52776.36 North America,Greenland,Household,Online,C,9/4/2011,109855830,9/20/2011,7636,668.27,502.54,5102909.72,3837395.44,1265514.28 Australia and Oceania,Tuvalu,Snacks,Offline,M,12/22/2016,788502347,12/22/2016,4222,152.58,97.44,644192.76,411391.68,232801.08 Europe,Poland,Cereal,Offline,H,7/18/2016,149627196,7/31/2016,6867,205.70,117.11,1412541.90,804194.37,608347.53 Australia and Oceania,Fiji,Snacks,Online,M,1/21/2017,763591706,1/24/2017,2609,152.58,97.44,398081.22,254220.96,143860.26 Sub-Saharan Africa,Mali,Clothes,Online,M,11/22/2014,771069705,11/26/2014,5515,109.28,35.84,602679.20,197657.60,405021.60 Europe,Greece,Cosmetics,Offline,C,1/26/2015,633047521,2/10/2015,1684,437.20,263.33,736244.80,443447.72,292797.08 Middle East and North Africa,Yemen,Household,Offline,H,4/23/2012,880823981,5/14/2012,4245,668.27,502.54,2836806.15,2133282.30,703523.85 Asia,Mongolia,Vegetables,Online,H,7/19/2017,766010415,8/11/2017,8359,154.06,90.93,1287787.54,760083.87,527703.67 Sub-Saharan Africa,The Gambia,Personal Care,Online,H,4/12/2016,510530650,4/21/2016,6219,81.73,56.67,508278.87,352430.73,155848.14 Asia,Uzbekistan,Office Supplies,Online,C,3/17/2010,856621015,4/16/2010,2049,651.21,524.96,1334329.29,1075643.04,258686.25 Europe,Poland,Cereal,Offline,C,6/17/2013,816830337,7/11/2013,7103,205.70,117.11,1461087.10,831832.33,629254.77 Sub-Saharan Africa,Niger,Office Supplies,Offline,H,12/10/2010,824019944,1/26/2011,4668,651.21,524.96,3039848.28,2450513.28,589335.00 Sub-Saharan Africa,Lesotho,Office Supplies,Offline,M,2/15/2015,481363666,3/25/2015,5060,651.21,524.96,3295122.60,2656297.60,638825.00 Sub-Saharan Africa,Democratic Republic of the Congo,Beverages,Offline,H,10/28/2016,812347829,10/29/2016,630,47.45,31.79,29893.50,20027.70,9865.80 Europe,Moldova ,Household,Offline,H,9/18/2011,210771262,10/18/2011,755,668.27,502.54,504543.85,379417.70,125126.15 Central America and the Caribbean,Grenada,Vegetables,Online,C,9/3/2011,290745294,10/4/2011,6848,154.06,90.93,1055002.88,622688.64,432314.24 Europe,Bulgaria,Meat,Offline,M,9/19/2010,936693751,11/6/2010,7351,421.89,364.69,3101313.39,2680836.19,420477.20 Europe,United Kingdom,Clothes,Offline,H,6/29/2011,753352963,8/6/2011,2738,109.28,35.84,299208.64,98129.92,201078.72 Central America and the Caribbean,El Salvador,Personal Care,Online,C,12/7/2013,215771758,1/23/2014,513,81.73,56.67,41927.49,29071.71,12855.78 Sub-Saharan Africa,Lesotho,Cosmetics,Offline,C,6/17/2011,319311463,7/21/2011,213,437.20,263.33,93123.60,56089.29,37034.31 Sub-Saharan Africa,Democratic Republic of the Congo,Cereal,Online,C,6/28/2017,329645907,8/15/2017,8404,205.70,117.11,1728702.80,984192.44,744510.36 Australia and Oceania,Marshall Islands,Fruits,Offline,H,3/21/2016,932761418,5/7/2016,3687,9.33,6.92,34399.71,25514.04,8885.67 Europe,Germany,Baby Food,Online,M,11/2/2011,184956824,12/4/2011,1689,255.28,159.42,431167.92,269260.38,161907.54 Sub-Saharan Africa,Liberia,Vegetables,Offline,M,3/1/2017,262843453,3/15/2017,74,154.06,90.93,11400.44,6728.82,4671.62 Europe,Montenegro,Fruits,Offline,C,1/9/2012,713345134,2/23/2012,3532,9.33,6.92,32953.56,24441.44,8512.12 Europe,Kosovo,Meat,Offline,H,2/25/2015,703698194,4/3/2015,8788,421.89,364.69,3707569.32,3204895.72,502673.60 Asia,Turkmenistan,Cosmetics,Online,M,4/13/2012,371451461,5/26/2012,9597,437.20,263.33,4195808.40,2527178.01,1668630.39 Asia,India,Snacks,Offline,M,12/6/2012,374466264,1/3/2013,1744,152.58,97.44,266099.52,169935.36,96164.16 Sub-Saharan Africa,Seychelles ,Fruits,Online,L,4/26/2016,540916430,6/12/2016,8047,9.33,6.92,75078.51,55685.24,19393.27 Europe,Albania,Beverages,Offline,H,2/24/2015,319288289,3/11/2015,3355,47.45,31.79,159194.75,106655.45,52539.30 Europe,Bulgaria,Office Supplies,Offline,H,7/27/2014,128380668,9/3/2014,9547,651.21,524.96,6217101.87,5011793.12,1205308.75 Sub-Saharan Africa,Zambia,Cereal,Online,C,3/13/2013,907304894,4/17/2013,535,205.70,117.11,110049.50,62653.85,47395.65 Europe,Latvia,Office Supplies,Online,H,7/9/2014,965484797,7/21/2014,7262,651.21,524.96,4729087.02,3812259.52,916827.50 Australia and Oceania,Tuvalu,Meat,Online,H,7/4/2015,932656705,8/13/2015,2700,421.89,364.69,1139103.00,984663.00,154440.00 Europe,Bosnia and Herzegovina,Clothes,Online,L,5/28/2010,608869445,6/22/2010,6854,109.28,35.84,749005.12,245647.36,503357.76 Sub-Saharan Africa,Namibia,Cosmetics,Online,H,4/2/2017,314484345,5/14/2017,1761,437.20,263.33,769909.20,463724.13,306185.07 Europe,Norway,Snacks,Online,H,6/29/2013,440175235,8/17/2013,6488,152.58,97.44,989939.04,632190.72,357748.32 Australia and Oceania,New Zealand,Household,Offline,M,7/5/2015,996928441,7/23/2015,2135,668.27,502.54,1426756.45,1072922.90,353833.55 Europe,United Kingdom,Personal Care,Online,L,3/26/2014,266042792,4/7/2014,6829,81.73,56.67,558134.17,386999.43,171134.74 Middle East and North Africa,Kuwait,Vegetables,Online,C,10/23/2016,649129617,10/29/2016,734,154.06,90.93,113080.04,66742.62,46337.42 Europe,Monaco,Clothes,Online,H,7/12/2012,118112742,7/25/2012,1040,109.28,35.84,113651.20,37273.60,76377.60 Central America and the Caribbean,Cuba,Office Supplies,Online,C,6/12/2014,765228497,6/20/2014,6972,651.21,524.96,4540236.12,3660021.12,880215.00 Europe,Hungary,Baby Food,Online,L,3/11/2010,253025710,3/17/2010,4785,255.28,159.42,1221514.80,762824.70,458690.10 Europe,Macedonia,Snacks,Online,H,3/2/2011,364365708,4/8/2011,2765,152.58,97.44,421883.70,269421.60,152462.10 Sub-Saharan Africa,Ethiopia,Meat,Offline,C,11/30/2010,252422320,12/14/2010,6229,421.89,364.69,2627952.81,2271654.01,356298.80 Middle East and North Africa,United Arab Emirates,Cosmetics,Offline,M,8/12/2011,490681874,8/30/2011,2525,437.20,263.33,1103930.00,664908.25,439021.75 Middle East and North Africa,Tunisia ,Vegetables,Offline,M,9/19/2012,822943198,10/5/2012,6035,154.06,90.93,929752.10,548762.55,380989.55 Sub-Saharan Africa,Uganda,Beverages,Online,M,10/2/2014,613317620,11/12/2014,3168,47.45,31.79,150321.60,100710.72,49610.88 Sub-Saharan Africa,Malawi,Cosmetics,Online,M,7/7/2015,196228969,7/16/2015,7367,437.20,263.33,3220852.40,1939952.11,1280900.29 Europe,Lithuania,Cereal,Offline,H,11/13/2013,426413571,11/18/2013,4106,205.70,117.11,844604.20,480853.66,363750.54 Central America and the Caribbean,Costa Rica,Household,Online,C,7/13/2013,428920257,9/1/2013,5890,668.27,502.54,3936110.30,2959960.60,976149.70 Asia,Kyrgyzstan,Household,Online,H,9/18/2011,749110352,10/14/2011,7255,668.27,502.54,4848298.85,3645927.70,1202371.15 Asia,Bangladesh,Cereal,Offline,L,6/22/2010,202657687,6/28/2010,9768,205.70,117.11,2009277.60,1143930.48,865347.12 Europe,Malta,Vegetables,Online,C,12/6/2012,825548589,1/3/2013,7028,154.06,90.93,1082733.68,639056.04,443677.64 Sub-Saharan Africa,Ethiopia,Vegetables,Offline,M,12/4/2011,224081885,12/17/2011,9664,154.06,90.93,1488835.84,878747.52,610088.32 Europe,Austria,Meat,Online,L,6/27/2016,124868905,6/27/2016,339,421.89,364.69,143020.71,123629.91,19390.80 Sub-Saharan Africa,Ethiopia,Vegetables,Offline,C,3/23/2010,524833476,4/6/2010,8743,154.06,90.93,1346946.58,795000.99,551945.59 Sub-Saharan Africa,Republic of the Congo,Cosmetics,Offline,H,8/31/2015,141211926,10/14/2015,6602,437.20,263.33,2886394.40,1738504.66,1147889.74 Middle East and North Africa,Iran,Meat,Offline,L,10/2/2014,461553084,10/18/2014,2669,421.89,364.69,1126024.41,973357.61,152666.80 Asia,Bangladesh,Office Supplies,Online,H,3/20/2013,793718278,4/11/2013,7731,651.21,524.96,5034504.51,4058465.76,976038.75 Europe,Poland,Cosmetics,Offline,C,1/22/2014,515881335,3/2/2014,9606,437.20,263.33,4199743.20,2529547.98,1670195.22 Sub-Saharan Africa,Cape Verde,Snacks,Offline,L,10/14/2013,426528584,10/24/2013,8141,152.58,97.44,1242153.78,793259.04,448894.74 Middle East and North Africa,United Arab Emirates,Office Supplies,Offline,L,9/27/2013,494458854,10/12/2013,218,651.21,524.96,141963.78,114441.28,27522.50 Central America and the Caribbean,El Salvador,Snacks,Online,H,5/2/2016,308783471,6/19/2016,4746,152.58,97.44,724144.68,462450.24,261694.44 Europe,Vatican City,Beverages,Online,C,9/12/2013,428926265,10/22/2013,7668,47.45,31.79,363846.60,243765.72,120080.88 Sub-Saharan Africa,The Gambia,Meat,Offline,M,2/26/2014,134623563,4/3/2014,6959,421.89,364.69,2935932.51,2537877.71,398054.80 Europe,Macedonia,Fruits,Online,C,9/29/2015,575924193,10/18/2015,7622,9.33,6.92,71113.26,52744.24,18369.02 Europe,Slovakia,Snacks,Online,H,7/25/2017,723189485,8/31/2017,6694,152.58,97.44,1021370.52,652263.36,369107.16 Europe,Greece,Clothes,Online,C,12/31/2015,517093265,1/23/2016,8243,109.28,35.84,900795.04,295429.12,605365.92 Europe,Czech Republic,Office Supplies,Online,M,1/24/2016,418621861,2/21/2016,8366,651.21,524.96,5448022.86,4391815.36,1056207.50 Asia,Kazakhstan,Vegetables,Offline,H,6/26/2012,959074103,7/31/2012,195,154.06,90.93,30041.70,17731.35,12310.35 Asia,Maldives,Household,Online,C,3/11/2016,490061318,4/26/2016,8889,668.27,502.54,5940252.03,4467078.06,1473173.97 Europe,Ireland,Snacks,Offline,C,9/6/2012,133507335,10/25/2012,6642,152.58,97.44,1013436.36,647196.48,366239.88 Sub-Saharan Africa,Liberia,Clothes,Online,C,3/26/2011,631648480,5/9/2011,7677,109.28,35.84,838942.56,275143.68,563798.88 North America,United States of America,Clothes,Offline,H,10/28/2010,997033584,11/18/2010,3249,109.28,35.84,355050.72,116444.16,238606.56 Sub-Saharan Africa,Guinea,Personal Care,Online,L,7/5/2011,762523972,8/8/2011,6643,81.73,56.67,542932.39,376458.81,166473.58 Australia and Oceania,Samoa ,Vegetables,Offline,H,8/11/2010,431293475,9/2/2010,8178,154.06,90.93,1259902.68,743625.54,516277.14 Central America and the Caribbean,Belize,Clothes,Online,C,2/3/2014,126828420,3/17/2014,203,109.28,35.84,22183.84,7275.52,14908.32 Europe,Estonia,Clothes,Offline,M,1/20/2010,942927634,2/24/2010,2096,109.28,35.84,229050.88,75120.64,153930.24 Australia and Oceania,Solomon Islands,Clothes,Offline,M,5/18/2010,893702447,5/25/2010,5269,109.28,35.84,575796.32,188840.96,386955.36 Central America and the Caribbean,Barbados,Household,Online,H,8/23/2016,763576686,8/26/2016,8165,668.27,502.54,5456424.55,4103239.10,1353185.45 Asia,South Korea,Clothes,Offline,M,5/12/2016,957286679,6/11/2016,1256,109.28,35.84,137255.68,45015.04,92240.64 Sub-Saharan Africa,Mozambique,Personal Care,Online,L,1/13/2017,149881255,2/16/2017,2049,81.73,56.67,167464.77,116116.83,51347.94 Asia,Singapore,Meat,Offline,C,2/1/2012,236721742,2/26/2012,79,421.89,364.69,33329.31,28810.51,4518.80 North America,Mexico,Snacks,Offline,M,12/6/2014,483481967,1/24/2015,1913,152.58,97.44,291885.54,186402.72,105482.82 Sub-Saharan Africa,Botswana,Clothes,Online,H,5/2/2017,676148259,5/18/2017,6150,109.28,35.84,672072.00,220416.00,451656.00 Europe,Liechtenstein,Meat,Offline,C,12/1/2015,671019446,12/28/2015,8421,421.89,364.69,3552735.69,3071054.49,481681.20 Central America and the Caribbean,Antigua and Barbuda ,Beverages,Online,M,12/5/2015,844706857,1/18/2016,6385,47.45,31.79,302968.25,202979.15,99989.10 Europe,Czech Republic,Fruits,Offline,L,4/30/2012,744134318,5/16/2012,4736,9.33,6.92,44186.88,32773.12,11413.76 Sub-Saharan Africa,Mali,Cosmetics,Online,M,4/18/2016,436538159,4/25/2016,197,437.20,263.33,86128.40,51876.01,34252.39 Europe,Slovakia,Personal Care,Offline,M,7/21/2013,959467208,8/11/2013,6523,81.73,56.67,533124.79,369658.41,163466.38 Sub-Saharan Africa,Equatorial Guinea,Vegetables,Online,H,8/13/2013,270782792,9/4/2013,9500,154.06,90.93,1463570.00,863835.00,599735.00 Europe,Croatia,Baby Food,Online,H,9/16/2015,898658740,9/29/2015,1946,255.28,159.42,496774.88,310231.32,186543.56 Sub-Saharan Africa,Sudan,Cereal,Online,M,7/15/2012,491581380,7/28/2012,8709,205.70,117.11,1791441.30,1019910.99,771530.31 Europe,Serbia,Fruits,Offline,H,10/24/2016,368349540,11/18/2016,1669,9.33,6.92,15571.77,11549.48,4022.29 Asia,North Korea,Snacks,Online,L,1/8/2012,568074548,1/26/2012,4737,152.58,97.44,722771.46,461573.28,261198.18 Sub-Saharan Africa,Zimbabwe,Fruits,Offline,L,10/12/2016,300180232,12/1/2016,8856,9.33,6.92,82626.48,61283.52,21342.96 Europe,Belarus,Clothes,Offline,C,12/2/2012,194402921,1/10/2013,6999,109.28,35.84,764850.72,250844.16,514006.56 Sub-Saharan Africa,Madagascar,Personal Care,Offline,H,5/31/2017,950791442,7/15/2017,9171,81.73,56.67,749545.83,519720.57,229825.26 Sub-Saharan Africa,Zimbabwe,Clothes,Online,M,6/4/2010,189707124,7/13/2010,7408,109.28,35.84,809546.24,265502.72,544043.52 North America,Mexico,Office Supplies,Online,L,11/2/2014,101823794,12/3/2014,778,651.21,524.96,506641.38,408418.88,98222.50 Europe,Poland,Office Supplies,Online,C,9/27/2016,698127782,11/11/2016,379,651.21,524.96,246808.59,198959.84,47848.75 Sub-Saharan Africa,Namibia,Snacks,Offline,H,8/23/2014,259917914,10/2/2014,4342,152.58,97.44,662502.36,423084.48,239417.88 Sub-Saharan Africa,Democratic Republic of the Congo,Fruits,Offline,M,9/10/2015,288805520,10/23/2015,2826,9.33,6.92,26366.58,19555.92,6810.66 Central America and the Caribbean,Dominican Republic,Personal Care,Offline,L,9/27/2016,556714427,10/13/2016,3025,81.73,56.67,247233.25,171426.75,75806.50 Sub-Saharan Africa,Guinea,Vegetables,Online,L,9/16/2015,455880963,10/22/2015,4163,154.06,90.93,641351.78,378541.59,262810.19 Australia and Oceania,Tuvalu,Fruits,Offline,M,5/14/2015,348853957,5/31/2015,2493,9.33,6.92,23259.69,17251.56,6008.13 Sub-Saharan Africa,Swaziland,Personal Care,Online,M,12/21/2011,218494737,1/28/2012,6303,81.73,56.67,515144.19,357191.01,157953.18 Europe,Romania,Baby Food,Online,H,3/18/2014,117977130,3/31/2014,909,255.28,159.42,232049.52,144912.78,87136.74 Central America and the Caribbean,Saint Kitts and Nevis ,Household,Online,C,9/9/2016,620787465,10/2/2016,3661,668.27,502.54,2446536.47,1839798.94,606737.53 Sub-Saharan Africa,Cape Verde,Baby Food,Offline,H,4/19/2011,570724570,5/24/2011,8938,255.28,159.42,2281692.64,1424895.96,856796.68 Sub-Saharan Africa,Mauritius ,Baby Food,Online,M,9/10/2013,231899774,10/11/2013,3151,255.28,159.42,804387.28,502332.42,302054.86 Central America and the Caribbean,Dominican Republic,Beverages,Online,C,2/8/2014,838736903,3/9/2014,9743,47.45,31.79,462305.35,309729.97,152575.38 Europe,Russia,Household,Online,C,5/28/2011,545972287,6/9/2011,4187,668.27,502.54,2798046.49,2104134.98,693911.51 Europe,Denmark,Fruits,Online,H,11/14/2016,278654754,11/15/2016,8989,9.33,6.92,83867.37,62203.88,21663.49 Sub-Saharan Africa,Zimbabwe,Personal Care,Online,C,7/29/2012,582145631,8/28/2012,8684,81.73,56.67,709743.32,492122.28,217621.04 Europe,Georgia,Office Supplies,Offline,C,9/20/2015,272118747,10/12/2015,4839,651.21,524.96,3151205.19,2540281.44,610923.75 Sub-Saharan Africa,Burundi,Meat,Offline,L,4/13/2014,484560430,4/24/2014,1054,421.89,364.69,444672.06,384383.26,60288.80 Europe,Cyprus,Office Supplies,Offline,M,3/28/2016,625769507,4/20/2016,7958,651.21,524.96,5182329.18,4177631.68,1004697.50 Central America and the Caribbean,Dominica,Household,Offline,L,6/27/2015,622357308,8/10/2015,8213,668.27,502.54,5488501.51,4127361.02,1361140.49 Middle East and North Africa,Egypt,Beverages,Online,H,10/8/2010,471247661,11/27/2010,1510,47.45,31.79,71649.50,48002.90,23646.60 Sub-Saharan Africa,Benin,Office Supplies,Online,H,1/16/2017,689676892,2/14/2017,9573,651.21,524.96,6234033.33,5025442.08,1208591.25 Asia,Laos,Meat,Offline,H,4/4/2016,965193831,4/12/2016,1158,421.89,364.69,488548.62,422311.02,66237.60 Middle East and North Africa,Saudi Arabia,Meat,Offline,M,2/19/2014,605659806,3/21/2014,7051,421.89,364.69,2974746.39,2571429.19,403317.20 Europe,Montenegro,Meat,Online,H,9/8/2013,789248645,9/28/2013,5068,421.89,364.69,2138138.52,1848248.92,289889.60 Sub-Saharan Africa,Niger,Personal Care,Offline,M,5/30/2011,514446675,6/21/2011,5058,81.73,56.67,413390.34,286636.86,126753.48 Australia and Oceania,Papua New Guinea,Beverages,Offline,M,3/21/2016,650052726,4/6/2016,3902,47.45,31.79,185149.90,124044.58,61105.32 Europe,Albania,Cosmetics,Online,L,5/24/2015,785178124,7/9/2015,510,437.20,263.33,222972.00,134298.30,88673.70 Central America and the Caribbean,Costa Rica,Office Supplies,Offline,M,3/12/2016,579246699,4/23/2016,825,651.21,524.96,537248.25,433092.00,104156.25 Central America and the Caribbean,El Salvador,Vegetables,Offline,L,10/22/2011,211994779,12/11/2011,2821,154.06,90.93,434603.26,256513.53,178089.73 Europe,Montenegro,Household,Offline,C,6/1/2015,833471190,6/3/2015,1502,668.27,502.54,1003741.54,754815.08,248926.46 Asia,Singapore,Baby Food,Offline,H,12/22/2010,514037263,2/9/2011,3904,255.28,159.42,996613.12,622375.68,374237.44 Australia and Oceania,Solomon Islands,Beverages,Online,C,1/3/2010,994366824,1/23/2010,4095,47.45,31.79,194307.75,130180.05,64127.70 Europe,Georgia,Snacks,Offline,L,7/14/2017,935446202,8/1/2017,8174,152.58,97.44,1247188.92,796474.56,450714.36 Sub-Saharan Africa,Sudan,Cosmetics,Online,H,2/17/2013,868574225,3/16/2013,9270,437.20,263.33,4052844.00,2441069.10,1611774.90 Asia,Uzbekistan,Cosmetics,Offline,H,4/24/2015,945362222,6/10/2015,2544,437.20,263.33,1112236.80,669911.52,442325.28 Asia,Kyrgyzstan,Cosmetics,Offline,H,2/17/2017,487734019,3/5/2017,190,437.20,263.33,83068.00,50032.70,33035.30 Europe,Switzerland,Fruits,Offline,M,9/24/2012,237925946,10/30/2012,6430,9.33,6.92,59991.90,44495.60,15496.30 Sub-Saharan Africa,Chad,Meat,Online,L,3/27/2016,108486831,5/12/2016,2519,421.89,364.69,1062740.91,918654.11,144086.80 Sub-Saharan Africa,Guinea,Beverages,Online,M,7/19/2012,532278001,9/6/2012,1744,47.45,31.79,82752.80,55441.76,27311.04 Middle East and North Africa,Qatar,Office Supplies,Online,C,2/21/2014,212473285,3/29/2014,4421,651.21,524.96,2878999.41,2320848.16,558151.25 Europe,San Marino,Snacks,Offline,H,11/1/2011,172559010,11/12/2011,2901,152.58,97.44,442634.58,282673.44,159961.14 Europe,Bulgaria,Baby Food,Offline,C,6/10/2016,606334006,6/27/2016,6561,255.28,159.42,1674892.08,1045954.62,628937.46 Europe,Macedonia,Office Supplies,Offline,H,2/15/2017,427909600,2/26/2017,6815,651.21,524.96,4437996.15,3577602.40,860393.75 Sub-Saharan Africa,South Sudan,Beverages,Online,H,6/22/2015,421709620,7/29/2015,2103,47.45,31.79,99787.35,66854.37,32932.98 Central America and the Caribbean,Trinidad and Tobago,Snacks,Online,C,2/18/2014,992470395,2/18/2014,2900,152.58,97.44,442482.00,282576.00,159906.00 Asia,Sri Lanka,Snacks,Online,L,1/15/2013,815240752,3/6/2013,6710,152.58,97.44,1023811.80,653822.40,369989.40 Europe,Slovakia,Baby Food,Online,H,3/9/2013,885382020,4/21/2013,3070,255.28,159.42,783709.60,489419.40,294290.20 Europe,Moldova ,Snacks,Offline,H,11/3/2012,468568027,11/30/2012,8547,152.58,97.44,1304101.26,832819.68,471281.58 Europe,Portugal,Meat,Offline,M,5/8/2011,250785100,5/21/2011,1739,421.89,364.69,733666.71,634195.91,99470.80 Europe,Switzerland,Cosmetics,Offline,C,11/23/2012,988332068,11/23/2012,8277,437.20,263.33,3618704.40,2179582.41,1439121.99 Europe,Ireland,Clothes,Offline,C,3/1/2015,357820260,3/2/2015,5821,109.28,35.84,636118.88,208624.64,427494.24 Europe,Andorra,Office Supplies,Online,L,2/10/2013,606173503,2/25/2013,9065,651.21,524.96,5903218.65,4758762.40,1144456.25 Europe,Belarus,Beverages,Offline,H,5/4/2010,900628125,5/11/2010,4731,47.45,31.79,224485.95,150398.49,74087.46 Sub-Saharan Africa,Zambia,Fruits,Offline,C,4/19/2015,478732955,5/17/2015,6575,9.33,6.92,61344.75,45499.00,15845.75 Europe,Spain,Beverages,Online,H,10/11/2014,898349320,11/25/2014,382,47.45,31.79,18125.90,12143.78,5982.12 Sub-Saharan Africa,Namibia,Snacks,Online,C,7/29/2015,187651050,8/6/2015,8970,152.58,97.44,1368642.60,874036.80,494605.80 Central America and the Caribbean,The Bahamas,Office Supplies,Online,C,5/25/2010,495124471,7/3/2010,7188,651.21,524.96,4680897.48,3773412.48,907485.00 Sub-Saharan Africa,Democratic Republic of the Congo,Vegetables,Offline,M,12/17/2011,439568412,1/26/2012,6916,154.06,90.93,1065478.96,628871.88,436607.08 Middle East and North Africa,United Arab Emirates,Snacks,Online,C,4/25/2011,960094201,5/24/2011,2064,152.58,97.44,314925.12,201116.16,113808.96 Europe,Spain,Office Supplies,Online,L,12/10/2011,366125667,12/25/2011,3576,651.21,524.96,2328726.96,1877256.96,451470.00 Sub-Saharan Africa,Angola,Cosmetics,Online,L,10/24/2010,187399137,11/10/2010,4424,437.20,263.33,1934172.80,1164971.92,769200.88 Europe,France,Personal Care,Offline,C,4/28/2017,223963439,6/10/2017,4613,81.73,56.67,377020.49,261418.71,115601.78 Asia,Kyrgyzstan,Personal Care,Offline,H,8/23/2011,796179902,9/6/2011,6181,81.73,56.67,505173.13,350277.27,154895.86 Sub-Saharan Africa,Cameroon,Fruits,Online,H,8/26/2016,494722354,10/7/2016,8193,9.33,6.92,76440.69,56695.56,19745.13 Asia,Brunei,Meat,Offline,L,11/15/2010,230577123,1/3/2011,1749,421.89,364.69,737885.61,637842.81,100042.80 Middle East and North Africa,Lebanon,Vegetables,Online,C,7/12/2015,985043036,8/27/2015,4979,154.06,90.93,767064.74,452740.47,314324.27 Europe,Croatia,Office Supplies,Online,H,1/17/2015,659731423,1/24/2015,8044,651.21,524.96,5238333.24,4222778.24,1015555.00 Sub-Saharan Africa,Malawi,Personal Care,Offline,L,11/8/2013,826566112,12/26/2013,8135,81.73,56.67,664873.55,461010.45,203863.10 Asia,Cambodia,Office Supplies,Online,L,6/11/2017,877783429,7/24/2017,4478,651.21,524.96,2916118.38,2350770.88,565347.50 Sub-Saharan Africa,Burkina Faso,Household,Online,L,6/9/2013,275932204,6/15/2013,3326,668.27,502.54,2222666.02,1671448.04,551217.98 Europe,Macedonia,Meat,Online,L,3/31/2013,803873765,4/16/2013,2966,421.89,364.69,1251325.74,1081670.54,169655.20 Middle East and North Africa,Tunisia ,Household,Online,L,5/29/2010,714781939,7/8/2010,8715,668.27,502.54,5823973.05,4379636.10,1444336.95 Asia,Maldives,Vegetables,Online,L,9/2/2014,582143056,9/7/2014,7922,154.06,90.93,1220463.32,720347.46,500115.86 Middle East and North Africa,Kuwait,Snacks,Offline,M,5/7/2010,149755942,6/8/2010,4966,152.58,97.44,757712.28,483887.04,273825.24 Sub-Saharan Africa,Liberia,Fruits,Online,C,2/7/2013,581731927,3/28/2013,6259,9.33,6.92,58396.47,43312.28,15084.19 Europe,Montenegro,Clothes,Online,L,3/4/2013,412494838,3/30/2013,5244,109.28,35.84,573064.32,187944.96,385119.36 Central America and the Caribbean,Guatemala,Vegetables,Offline,H,12/25/2016,496781003,2/10/2017,7393,154.06,90.93,1138965.58,672245.49,466720.09 Middle East and North Africa,Algeria,Cereal,Offline,L,2/10/2013,859639251,3/13/2013,5212,205.70,117.11,1072108.40,610377.32,461731.08 Sub-Saharan Africa,Namibia,Household,Online,C,11/29/2013,246430909,12/12/2013,3237,668.27,502.54,2163189.99,1626721.98,536468.01 Sub-Saharan Africa,Guinea,Baby Food,Offline,M,11/13/2013,172829806,11/28/2013,3035,255.28,159.42,774774.80,483839.70,290935.10 Asia,Bhutan,Clothes,Offline,L,2/9/2016,874822270,3/3/2016,8205,109.28,35.84,896642.40,294067.20,602575.20 Australia and Oceania,New Zealand,Household,Offline,H,6/16/2013,858707129,6/26/2013,9377,668.27,502.54,6266367.79,4712317.58,1554050.21 Australia and Oceania,Kiribati,Cereal,Offline,L,12/16/2014,951095712,1/1/2015,9211,205.70,117.11,1894702.70,1078700.21,816002.49 Central America and the Caribbean,Saint Vincent and the Grenadines,Household,Offline,C,10/15/2011,248911845,10/28/2011,7401,668.27,502.54,4945866.27,3719298.54,1226567.73 Sub-Saharan Africa,Burundi,Clothes,Online,M,4/29/2011,169391858,6/10/2011,5670,109.28,35.84,619617.60,203212.80,416404.80 Asia,Cambodia,Clothes,Offline,H,8/31/2010,400084578,9/30/2010,2772,109.28,35.84,302924.16,99348.48,203575.68 North America,Canada,Household,Online,H,7/14/2015,248851335,7/29/2015,9495,668.27,502.54,6345223.65,4771617.30,1573606.35 Europe,Slovakia,Baby Food,Offline,M,10/15/2013,893865954,11/13/2013,3654,255.28,159.42,932793.12,582520.68,350272.44 Asia,Japan,Personal Care,Offline,L,1/28/2017,433614766,2/9/2017,5100,81.73,56.67,416823.00,289017.00,127806.00 Sub-Saharan Africa,Equatorial Guinea,Meat,Offline,M,8/9/2011,636896598,9/23/2011,711,421.89,364.69,299963.79,259294.59,40669.20 Asia,Brunei,Clothes,Online,M,12/4/2014,192822778,12/24/2014,9400,109.28,35.84,1027232.00,336896.00,690336.00 Sub-Saharan Africa,Cameroon,Cereal,Offline,C,8/5/2011,560817134,8/26/2011,7107,205.70,117.11,1461909.90,832300.77,629609.13 Europe,Slovenia,Vegetables,Offline,H,7/4/2017,120615994,8/14/2017,1808,154.06,90.93,278540.48,164401.44,114139.04 Europe,Vatican City,Fruits,Online,M,7/24/2015,922268187,8/7/2015,8506,9.33,6.92,79360.98,58861.52,20499.46 Sub-Saharan Africa,Lesotho,Office Supplies,Online,M,6/5/2012,136135041,7/13/2012,4239,651.21,524.96,2760479.19,2225305.44,535173.75 Sub-Saharan Africa,Angola,Vegetables,Online,M,1/23/2012,402890384,3/9/2012,3073,154.06,90.93,473426.38,279427.89,193998.49 Europe,Montenegro,Office Supplies,Online,C,11/26/2011,383520543,1/2/2012,1106,651.21,524.96,720238.26,580605.76,139632.50 Sub-Saharan Africa,Lesotho,Fruits,Offline,M,4/3/2014,609324347,5/20/2014,1470,9.33,6.92,13715.10,10172.40,3542.70 Middle East and North Africa,Turkey,Beverages,Offline,M,11/25/2014,331913125,12/21/2014,9324,47.45,31.79,442423.80,296409.96,146013.84 Sub-Saharan Africa,Mauritania,Clothes,Offline,C,6/25/2014,673210704,7/6/2014,6862,109.28,35.84,749879.36,245934.08,503945.28 Europe,Austria,Beverages,Offline,H,9/14/2014,575453412,9/20/2014,8307,47.45,31.79,394167.15,264079.53,130087.62 Australia and Oceania,Australia,Meat,Online,L,7/19/2014,851190078,9/6/2014,4914,421.89,364.69,2073167.46,1792086.66,281080.80 Sub-Saharan Africa,Niger,Office Supplies,Online,M,1/23/2014,133282029,3/6/2014,9969,651.21,524.96,6491912.49,5233326.24,1258586.25 North America,Mexico,Clothes,Offline,H,7/29/2010,724903094,8/25/2010,3789,109.28,35.84,414061.92,135797.76,278264.16 Europe,Netherlands,Cereal,Offline,L,1/18/2010,949539601,1/26/2010,8724,205.70,117.11,1794526.80,1021667.64,772859.16 Europe,France,Office Supplies,Offline,L,9/24/2015,100990378,10/22/2015,4152,651.21,524.96,2703823.92,2179633.92,524190.00 Australia and Oceania,East Timor,Vegetables,Online,H,10/10/2016,693366754,11/23/2016,1485,154.06,90.93,228779.10,135031.05,93748.05 Middle East and North Africa,United Arab Emirates,Office Supplies,Offline,L,10/10/2014,811092555,11/28/2014,9166,651.21,524.96,5968990.86,4811783.36,1157207.50 Europe,Cyprus,Cosmetics,Online,L,5/18/2012,858904111,7/7/2012,7668,437.20,263.33,3352449.60,2019214.44,1333235.16 Europe,Portugal,Cosmetics,Online,C,2/2/2017,411850249,3/18/2017,4496,437.20,263.33,1965651.20,1183931.68,781719.52 Australia and Oceania,Fiji,Household,Online,C,10/4/2014,465292298,11/13/2014,9186,668.27,502.54,6138728.22,4616332.44,1522395.78 Europe,Iceland,Baby Food,Online,M,3/24/2011,284904086,4/28/2011,8305,255.28,159.42,2120100.40,1323983.10,796117.30 Europe,Croatia,Office Supplies,Online,H,5/30/2013,556671941,7/8/2013,453,651.21,524.96,294998.13,237806.88,57191.25 Sub-Saharan Africa,Botswana,Baby Food,Online,H,5/8/2010,236894690,5/10/2010,1258,255.28,159.42,321142.24,200550.36,120591.88 Middle East and North Africa,Yemen,Clothes,Offline,L,11/15/2014,602183663,12/22/2014,8383,109.28,35.84,916094.24,300446.72,615647.52 Europe,Austria,Snacks,Offline,H,5/14/2014,299462687,6/26/2014,6519,152.58,97.44,994669.02,635211.36,359457.66 Sub-Saharan Africa,Niger,Beverages,Offline,H,6/6/2012,295968091,7/11/2012,2390,47.45,31.79,113405.50,75978.10,37427.40 Europe,Kosovo,Baby Food,Offline,M,7/6/2017,729248702,7/19/2017,9751,255.28,159.42,2489235.28,1554504.42,934730.86 Europe,Czech Republic,Clothes,Offline,M,5/29/2016,457165849,7/13/2016,4389,109.28,35.84,479629.92,157301.76,322328.16 Europe,Luxembourg,Beverages,Online,C,11/29/2015,207893359,12/31/2015,9120,47.45,31.79,432744.00,289924.80,142819.20 Europe,Belarus,Baby Food,Online,L,4/21/2016,329917562,6/3/2016,8793,255.28,159.42,2244677.04,1401780.06,842896.98 Asia,Cambodia,Personal Care,Offline,H,2/25/2015,342037284,3/29/2015,5288,81.73,56.67,432188.24,299670.96,132517.28 North America,Canada,Beverages,Offline,M,1/31/2011,283363854,2/18/2011,2516,47.45,31.79,119384.20,79983.64,39400.56 Middle East and North Africa,Afghanistan,Household,Online,C,2/24/2015,263321101,3/4/2015,1420,668.27,502.54,948943.40,713606.80,235336.60 Asia,Myanmar,Snacks,Online,C,9/30/2016,911645352,10/22/2016,4973,152.58,97.44,758780.34,484569.12,274211.22 Australia and Oceania,Palau,Clothes,Online,C,2/17/2010,228385436,3/7/2010,3181,109.28,35.84,347619.68,114007.04,233612.64 Europe,Albania,Meat,Offline,H,5/1/2013,333902680,5/19/2013,8078,421.89,364.69,3408027.42,2945965.82,462061.60 Sub-Saharan Africa,Togo,Cosmetics,Online,H,5/16/2011,718870913,6/16/2011,8733,437.20,263.33,3818067.60,2299660.89,1518406.71 Central America and the Caribbean,Nicaragua,Household,Online,L,1/19/2013,494276463,2/19/2013,6244,668.27,502.54,4172677.88,3137859.76,1034818.12 Central America and the Caribbean,Panama,Beverages,Online,C,11/19/2016,641418159,12/18/2016,8742,47.45,31.79,414807.90,277908.18,136899.72 Australia and Oceania,Palau,Household,Online,H,11/15/2014,861907327,11/15/2014,6386,668.27,502.54,4267572.22,3209220.44,1058351.78 Asia,Mongolia,Clothes,Online,C,6/11/2011,927667796,6/18/2011,6371,109.28,35.84,696222.88,228336.64,467886.24 Europe,Czech Republic,Clothes,Online,C,1/30/2012,230935895,2/26/2012,7918,109.28,35.84,865279.04,283781.12,581497.92 Europe,Moldova ,Fruits,Offline,H,12/27/2011,934260451,1/19/2012,7284,9.33,6.92,67959.72,50405.28,17554.44 Asia,Brunei,Household,Offline,M,12/30/2014,320502793,1/23/2015,2754,668.27,502.54,1840415.58,1383995.16,456420.42 Asia,Philippines,Personal Care,Offline,L,8/25/2014,242836749,10/10/2014,9645,81.73,56.67,788285.85,546582.15,241703.70 Central America and the Caribbean,Cuba,Cosmetics,Offline,C,2/13/2013,374748647,3/2/2013,5307,437.20,263.33,2320220.40,1397492.31,922728.09 Sub-Saharan Africa,The Gambia,Snacks,Offline,L,6/11/2017,460037314,6/17/2017,4119,152.58,97.44,628477.02,401355.36,227121.66 Sub-Saharan Africa,Mozambique,Household,Offline,L,12/28/2012,762814080,2/12/2013,2493,668.27,502.54,1665997.11,1252832.22,413164.89 Europe,France,Snacks,Online,L,9/16/2012,717502772,9/18/2012,3870,152.58,97.44,590484.60,377092.80,213391.80 Sub-Saharan Africa,Malawi,Vegetables,Online,L,6/20/2015,278839719,6/29/2015,3724,154.06,90.93,573719.44,338623.32,235096.12 Asia,Indonesia,Cereal,Offline,L,5/26/2017,371873748,7/4/2017,4561,205.70,117.11,938197.70,534138.71,404058.99 Sub-Saharan Africa,Malawi,Beverages,Online,M,9/21/2015,641966187,10/14/2015,916,47.45,31.79,43464.20,29119.64,14344.56 Middle East and North Africa,Syria,Snacks,Online,H,6/28/2012,804790866,8/3/2012,4356,152.58,97.44,664638.48,424448.64,240189.84 Europe,Kosovo,Fruits,Online,C,10/31/2010,196334111,11/12/2010,8481,9.33,6.92,79127.73,58688.52,20439.21 Central America and the Caribbean,Trinidad and Tobago,Cereal,Online,C,2/23/2011,922894752,3/22/2011,3921,205.70,117.11,806549.70,459188.31,347361.39 Europe,Germany,Household,Offline,H,11/26/2014,211084115,12/11/2014,3335,668.27,502.54,2228680.45,1675970.90,552709.55 Middle East and North Africa,Jordan,Household,Offline,C,4/12/2013,757826030,4/17/2013,6418,668.27,502.54,4288956.86,3225301.72,1063655.14 Sub-Saharan Africa,The Gambia,Vegetables,Online,H,8/26/2013,380356824,9/29/2013,4891,154.06,90.93,753507.46,444738.63,308768.83 Asia,Indonesia,Cereal,Offline,L,2/12/2013,566225326,3/12/2013,7511,205.70,117.11,1545012.70,879613.21,665399.49 Sub-Saharan Africa,Tanzania,Cosmetics,Offline,H,5/26/2017,623292863,6/25/2017,5064,437.20,263.33,2213980.80,1333503.12,880477.68 Central America and the Caribbean,El Salvador,Household,Online,H,5/13/2014,829733264,5/29/2014,5366,668.27,502.54,3585936.82,2696629.64,889307.18 Europe,Bulgaria,Household,Online,H,8/25/2015,184032857,9/25/2015,8267,668.27,502.54,5524588.09,4154498.18,1370089.91 Central America and the Caribbean,Belize,Vegetables,Online,L,1/12/2015,454990470,1/13/2015,646,154.06,90.93,99522.76,58740.78,40781.98 Sub-Saharan Africa,Mauritania,Meat,Online,M,12/6/2014,331717431,12/30/2014,1414,421.89,364.69,596552.46,515671.66,80880.80 Sub-Saharan Africa,Sierra Leone,Baby Food,Offline,C,1/14/2015,373637568,2/12/2015,6514,255.28,159.42,1662893.92,1038461.88,624432.04 Europe,Norway,Personal Care,Online,C,2/9/2016,760487210,2/20/2016,3920,81.73,56.67,320381.60,222146.40,98235.20 Sub-Saharan Africa,Botswana,Cereal,Offline,H,3/6/2016,842315185,3/10/2016,8636,205.70,117.11,1776425.20,1011361.96,765063.24 Europe,Vatican City,Beverages,Offline,H,5/10/2014,489482820,5/15/2014,7699,47.45,31.79,365317.55,244751.21,120566.34 Europe,Lithuania,Beverages,Online,C,8/2/2014,542663943,9/20/2014,5175,47.45,31.79,245553.75,164513.25,81040.50 Central America and the Caribbean,Dominican Republic,Fruits,Offline,L,4/27/2014,562844884,5/30/2014,7164,9.33,6.92,66840.12,49574.88,17265.24 Sub-Saharan Africa,Ethiopia,Office Supplies,Online,H,11/7/2015,181324470,12/22/2015,6795,651.21,524.96,4424971.95,3567103.20,857868.75 Europe,Montenegro,Clothes,Offline,H,12/18/2014,449714028,1/20/2015,9229,109.28,35.84,1008545.12,330767.36,677777.76 Central America and the Caribbean,Honduras,Personal Care,Online,L,4/21/2012,689937388,5/27/2012,6660,81.73,56.67,544321.80,377422.20,166899.60 Asia,Turkmenistan,Snacks,Online,H,2/23/2017,744230878,2/27/2017,3310,152.58,97.44,505039.80,322526.40,182513.40 Middle East and North Africa,Lebanon,Clothes,Offline,L,5/1/2013,525143325,5/30/2013,435,109.28,35.84,47536.80,15590.40,31946.40 Australia and Oceania,New Zealand,Cosmetics,Online,L,1/19/2016,465536057,2/1/2016,1319,437.20,263.33,576666.80,347332.27,229334.53 Sub-Saharan Africa,Zimbabwe,Fruits,Online,C,1/20/2015,168582904,3/7/2015,6282,9.33,6.92,58611.06,43471.44,15139.62 Europe,San Marino,Personal Care,Offline,M,4/23/2016,657770192,5/26/2016,7672,81.73,56.67,627032.56,434772.24,192260.32 Europe,Montenegro,Cereal,Offline,L,6/28/2015,326896750,7/15/2015,4868,205.70,117.11,1001347.60,570091.48,431256.12 Europe,Slovenia,Vegetables,Offline,L,11/24/2016,790073907,11/28/2016,9281,154.06,90.93,1429830.86,843921.33,585909.53 Sub-Saharan Africa,Chad,Cereal,Offline,M,7/20/2014,131725490,8/27/2014,9354,205.70,117.11,1924117.80,1095446.94,828670.86 Asia,Kazakhstan,Household,Offline,C,2/5/2011,556587827,3/4/2011,5561,668.27,502.54,3716249.47,2794624.94,921624.53 Sub-Saharan Africa,South Africa,Clothes,Online,M,1/15/2014,739709746,1/30/2014,5407,109.28,35.84,590876.96,193786.88,397090.08 Europe,Montenegro,Meat,Online,C,10/20/2016,776452577,11/3/2016,8427,421.89,364.69,3555267.03,3073242.63,482024.40 Europe,Ireland,Office Supplies,Online,C,2/1/2010,832490146,2/21/2010,1189,651.21,524.96,774288.69,624177.44,150111.25 Middle East and North Africa,Qatar,Meat,Offline,H,12/11/2015,693808782,1/23/2016,2291,421.89,364.69,966549.99,835504.79,131045.20 Sub-Saharan Africa,Uganda,Baby Food,Online,L,11/6/2015,216707313,12/9/2015,7364,255.28,159.42,1879881.92,1173968.88,705913.04 Middle East and North Africa,Morocco,Beverages,Offline,C,1/20/2015,677797067,1/21/2015,4069,47.45,31.79,193074.05,129353.51,63720.54 Europe,Greece,Vegetables,Online,L,2/4/2016,724001872,3/24/2016,7098,154.06,90.93,1093517.88,645421.14,448096.74 Europe,Netherlands,Cereal,Online,M,12/29/2014,422558057,2/7/2015,3174,205.70,117.11,652891.80,371707.14,281184.66 Australia and Oceania,Kiribati,Baby Food,Offline,M,8/17/2012,811014449,9/12/2012,6053,255.28,159.42,1545209.84,964969.26,580240.58 Middle East and North Africa,Oman,Clothes,Offline,H,12/10/2010,747232377,1/1/2011,1520,109.28,35.84,166105.60,54476.80,111628.80 Asia,North Korea,Cosmetics,Online,M,9/20/2016,959385669,10/23/2016,2394,437.20,263.33,1046656.80,630412.02,416244.78 Asia,Nepal,Clothes,Online,C,2/10/2015,895960652,3/7/2015,3522,109.28,35.84,384884.16,126228.48,258655.68 Europe,Ireland,Baby Food,Offline,C,3/31/2011,975756156,4/3/2011,6785,255.28,159.42,1732074.80,1081664.70,650410.10 Sub-Saharan Africa,Seychelles ,Vegetables,Offline,H,4/29/2011,337883508,6/4/2011,6093,154.06,90.93,938687.58,554036.49,384651.09 Sub-Saharan Africa,Senegal,Cosmetics,Online,L,4/4/2011,891766536,5/5/2011,2390,437.20,263.33,1044908.00,629358.70,415549.30 Central America and the Caribbean,Cuba,Household,Offline,M,8/2/2015,567141568,8/8/2015,8648,668.27,502.54,5779198.96,4345965.92,1433233.04 Central America and the Caribbean,Saint Lucia,Cosmetics,Offline,H,12/26/2010,964057433,1/17/2011,4873,437.20,263.33,2130475.60,1283207.09,847268.51 North America,United States of America,Household,Online,L,7/1/2015,602875459,8/20/2015,3100,668.27,502.54,2071637.00,1557874.00,513763.00 Middle East and North Africa,Iran,Vegetables,Offline,L,2/18/2014,774269473,4/8/2014,2398,154.06,90.93,369435.88,218050.14,151385.74 Europe,Croatia,Cereal,Online,C,9/15/2015,589225804,10/27/2015,3864,205.70,117.11,794824.80,452513.04,342311.76 Asia,Thailand,Clothes,Offline,H,2/22/2011,129043281,4/5/2011,5629,109.28,35.84,615137.12,201743.36,413393.76 Sub-Saharan Africa,Burundi,Cosmetics,Offline,L,3/5/2015,895333230,3/26/2015,7854,437.20,263.33,3433768.80,2068193.82,1365574.98 Europe,Malta,Cosmetics,Online,M,1/27/2017,860019481,3/14/2017,7731,437.20,263.33,3379993.20,2035804.23,1344188.97 Sub-Saharan Africa,Central African Republic,Cosmetics,Offline,M,10/6/2014,315338361,11/15/2014,4483,437.20,263.33,1959967.60,1180508.39,779459.21 Middle East and North Africa,Somalia,Baby Food,Online,C,1/3/2011,523838698,1/21/2011,4367,255.28,159.42,1114807.76,696187.14,418620.62 Sub-Saharan Africa,Botswana,Baby Food,Offline,M,3/21/2017,568381822,3/30/2017,5667,255.28,159.42,1446671.76,903433.14,543238.62 Asia,Bangladesh,Household,Online,C,10/17/2011,502141559,11/15/2011,3701,668.27,502.54,2473267.27,1859900.54,613366.73 Asia,Vietnam,Fruits,Offline,M,1/18/2012,898604238,1/24/2012,5818,9.33,6.92,54281.94,40260.56,14021.38 Europe,Kosovo,Cereal,Online,M,6/10/2017,601568686,6/19/2017,6397,205.70,117.11,1315862.90,749152.67,566710.23 Australia and Oceania,Australia,Vegetables,Online,C,5/8/2013,775146234,5/28/2013,1851,154.06,90.93,285165.06,168311.43,116853.63 Europe,Cyprus,Cereal,Online,H,9/21/2012,853760707,9/27/2012,5620,205.70,117.11,1156034.00,658158.20,497875.80 Asia,South Korea,Office Supplies,Offline,M,6/3/2014,792148435,6/3/2014,3180,651.21,524.96,2070847.80,1669372.80,401475.00 Australia and Oceania,Solomon Islands,Fruits,Online,C,8/3/2014,615358245,8/28/2014,7034,9.33,6.92,65627.22,48675.28,16951.94 Sub-Saharan Africa,Rwanda,Office Supplies,Offline,C,6/7/2010,868751466,6/19/2010,1719,651.21,524.96,1119429.99,902406.24,217023.75 Sub-Saharan Africa,Lesotho,Clothes,Offline,M,8/2/2011,368001925,9/7/2011,8802,109.28,35.84,961882.56,315463.68,646418.88 Sub-Saharan Africa,Nigeria,Baby Food,Online,L,8/8/2013,249095952,9/7/2013,1883,255.28,159.42,480692.24,300187.86,180504.38 Europe,Macedonia,Clothes,Offline,H,11/18/2016,818332374,12/9/2016,1589,109.28,35.84,173645.92,56949.76,116696.16 Sub-Saharan Africa,Nigeria,Meat,Online,C,4/28/2015,202322518,6/11/2015,584,421.89,364.69,246383.76,212978.96,33404.80 Sub-Saharan Africa,Malawi,Snacks,Online,M,3/30/2015,197990214,4/24/2015,8559,152.58,97.44,1305932.22,833988.96,471943.26 Sub-Saharan Africa,Tanzania,Cereal,Online,H,6/14/2016,422571790,6/17/2016,7238,205.70,117.11,1488856.60,847642.18,641214.42 Asia,Sri Lanka,Household,Offline,H,1/17/2016,563616073,1/22/2016,5376,668.27,502.54,3592619.52,2701655.04,890964.48 Europe,Croatia,Clothes,Online,M,3/3/2012,828984391,3/25/2012,3758,109.28,35.84,410674.24,134686.72,275987.52 Sub-Saharan Africa,Guinea,Meat,Offline,H,5/31/2015,596850574,7/2/2015,203,421.89,364.69,85643.67,74032.07,11611.60 Central America and the Caribbean,Saint Kitts and Nevis ,Baby Food,Online,C,9/10/2014,665700948,10/7/2014,4559,255.28,159.42,1163821.52,726795.78,437025.74 Europe,Portugal,Office Supplies,Offline,H,5/13/2011,104334342,6/19/2011,3705,651.21,524.96,2412733.05,1944976.80,467756.25 Sub-Saharan Africa,Burkina Faso,Office Supplies,Online,C,5/30/2015,301862084,6/4/2015,6554,651.21,524.96,4268030.34,3440587.84,827442.50 Asia,Singapore,Cereal,Offline,H,5/19/2011,917708003,6/2/2011,9046,205.70,117.11,1860762.20,1059377.06,801385.14 Europe,Russia,Baby Food,Offline,H,3/7/2015,331608426,3/16/2015,9157,255.28,159.42,2337598.96,1459808.94,877790.02 Sub-Saharan Africa,Sudan,Cereal,Offline,H,4/9/2017,593612182,5/1/2017,1891,205.70,117.11,388978.70,221455.01,167523.69 Europe,Denmark,Clothes,Online,H,10/3/2016,674080598,10/4/2016,4283,109.28,35.84,468046.24,153502.72,314543.52 Middle East and North Africa,Morocco,Household,Online,C,1/5/2010,513687503,2/4/2010,402,668.27,502.54,268644.54,202021.08,66623.46 Sub-Saharan Africa,Malawi,Cosmetics,Offline,M,3/17/2017,573419225,3/25/2017,6346,437.20,263.33,2774471.20,1671092.18,1103379.02 Sub-Saharan Africa,Guinea-Bissau,Snacks,Offline,H,5/6/2010,484574592,5/26/2010,5245,152.58,97.44,800282.10,511072.80,289209.30 Sub-Saharan Africa,Cameroon,Snacks,Offline,M,7/3/2015,398764932,7/20/2015,2260,152.58,97.44,344830.80,220214.40,124616.40 Europe,Slovenia,Meat,Online,C,8/8/2010,537914073,9/15/2010,9583,421.89,364.69,4042971.87,3494824.27,548147.60 Asia,Indonesia,Snacks,Offline,M,6/29/2012,744258344,7/30/2012,1438,152.58,97.44,219410.04,140118.72,79291.32 North America,Mexico,Cereal,Offline,H,8/3/2012,930346572,9/11/2012,9080,205.70,117.11,1867756.00,1063358.80,804397.20 Middle East and North Africa,Afghanistan,Cereal,Online,M,12/8/2010,629040086,12/20/2010,5795,205.70,117.11,1192031.50,678652.45,513379.05 Europe,Germany,Snacks,Online,L,6/7/2012,343512713,7/21/2012,1900,152.58,97.44,289902.00,185136.00,104766.00 Central America and the Caribbean,Costa Rica,Cosmetics,Offline,L,6/22/2015,197250783,7/29/2015,9745,437.20,263.33,4260514.00,2566150.85,1694363.15 Central America and the Caribbean,Grenada,Beverages,Online,H,9/22/2015,384053122,10/26/2015,8708,47.45,31.79,413194.60,276827.32,136367.28 Asia,Tajikistan,Personal Care,Online,M,6/30/2017,718031060,8/12/2017,202,81.73,56.67,16509.46,11447.34,5062.12 Middle East and North Africa,Libya,Beverages,Online,L,10/19/2014,183608424,10/25/2014,2668,47.45,31.79,126596.60,84815.72,41780.88 Sub-Saharan Africa,Niger,Office Supplies,Offline,H,4/16/2010,985521543,5/18/2010,6580,651.21,524.96,4284961.80,3454236.80,830725.00 Europe,France,Personal Care,Online,H,6/19/2011,898819243,7/5/2011,9443,81.73,56.67,771776.39,535134.81,236641.58 Asia,Brunei,Personal Care,Online,H,10/2/2011,918862855,10/19/2011,793,81.73,56.67,64811.89,44939.31,19872.58 Europe,Poland,Baby Food,Online,L,12/28/2016,311326205,1/30/2017,7197,255.28,159.42,1837250.16,1147345.74,689904.42 Middle East and North Africa,Libya,Clothes,Offline,M,5/19/2011,662195622,6/13/2011,7255,109.28,35.84,792826.40,260019.20,532807.20 Middle East and North Africa,Kuwait,Fruits,Offline,M,4/1/2014,927769935,5/12/2014,6596,9.33,6.92,61540.68,45644.32,15896.36 Middle East and North Africa,Qatar,Vegetables,Offline,H,9/17/2015,584660470,10/31/2015,2880,154.06,90.93,443692.80,261878.40,181814.40 Europe,Sweden,Cereal,Offline,L,9/21/2010,979791057,10/24/2010,802,205.70,117.11,164971.40,93922.22,71049.18 Asia,Taiwan,Office Supplies,Online,H,6/16/2010,380398023,7/9/2010,7083,651.21,524.96,4612520.43,3718291.68,894228.75 North America,United States of America,Cosmetics,Offline,L,10/16/2015,724030196,11/2/2015,5479,437.20,263.33,2395418.80,1442785.07,952633.73 Middle East and North Africa,Iran,Baby Food,Online,H,7/8/2013,868548905,8/6/2013,1777,255.28,159.42,453632.56,283289.34,170343.22 Sub-Saharan Africa,The Gambia,Household,Offline,C,6/7/2010,642127978,6/19/2010,8793,668.27,502.54,5876098.11,4418834.22,1457263.89 Australia and Oceania,Nauru,Household,Online,M,5/23/2014,393253743,6/28/2014,1376,668.27,502.54,919539.52,691495.04,228044.48 Sub-Saharan Africa,Mali,Personal Care,Offline,H,5/20/2015,540725028,5/22/2015,1407,81.73,56.67,114994.11,79734.69,35259.42 Middle East and North Africa,Turkey,Snacks,Offline,H,1/15/2012,223653161,2/16/2012,2795,152.58,97.44,426461.10,272344.80,154116.30 Central America and the Caribbean,Jamaica,Clothes,Online,M,5/30/2015,451461970,6/30/2015,6484,109.28,35.84,708571.52,232386.56,476184.96 Asia,Turkmenistan,Household,Offline,H,11/23/2014,953887784,12/11/2014,5448,668.27,502.54,3640734.96,2737837.92,902897.04 Europe,Italy,Clothes,Online,C,4/25/2012,630979430,4/29/2012,9690,109.28,35.84,1058923.20,347289.60,711633.60 Sub-Saharan Africa,Sudan,Baby Food,Online,H,7/24/2010,703098237,8/2/2010,1248,255.28,159.42,318589.44,198956.16,119633.28 Europe,Ukraine,Clothes,Online,H,5/15/2017,660918033,6/28/2017,9188,109.28,35.84,1004064.64,329297.92,674766.72 Asia,South Korea,Household,Online,M,4/4/2011,515425145,5/5/2011,4609,668.27,502.54,3080056.43,2316206.86,763849.57 Sub-Saharan Africa,Burundi,Clothes,Offline,C,6/13/2013,347918403,7/15/2013,5642,109.28,35.84,616557.76,202209.28,414348.48 Europe,Poland,Snacks,Offline,M,12/13/2015,760009133,1/3/2016,2446,152.58,97.44,373210.68,238338.24,134872.44 Sub-Saharan Africa,Namibia,Household,Online,H,8/10/2015,623621165,8/21/2015,2216,668.27,502.54,1480886.32,1113628.64,367257.68 Asia,Uzbekistan,Snacks,Offline,M,5/6/2010,230990827,6/5/2010,4174,152.58,97.44,636868.92,406714.56,230154.36 Asia,Taiwan,Baby Food,Online,H,7/3/2010,844666945,8/13/2010,4574,255.28,159.42,1167650.72,729187.08,438463.64 Europe,Kosovo,Meat,Online,L,5/5/2012,647510850,5/27/2012,1704,421.89,364.69,718900.56,621431.76,97468.80 Australia and Oceania,Samoa ,Beverages,Offline,M,12/24/2016,592696368,2/2/2017,881,47.45,31.79,41803.45,28006.99,13796.46 Sub-Saharan Africa,Guinea,Office Supplies,Offline,H,6/12/2011,353709828,7/6/2011,9453,651.21,524.96,6155888.13,4962446.88,1193441.25 Asia,Maldives,Meat,Offline,L,5/4/2010,574350059,6/14/2010,1801,421.89,364.69,759823.89,656806.69,103017.20 Asia,Mongolia,Cosmetics,Offline,H,3/9/2014,618728387,3/31/2014,4334,437.20,263.33,1894824.80,1141272.22,753552.58 Europe,Germany,Personal Care,Offline,C,3/17/2013,821268641,4/24/2013,496,81.73,56.67,40538.08,28108.32,12429.76 Europe,Iceland,Clothes,Offline,M,11/6/2013,236707150,11/26/2013,5761,109.28,35.84,629562.08,206474.24,423087.84 Australia and Oceania,Tonga,Personal Care,Online,M,3/31/2012,690092742,5/9/2012,2633,81.73,56.67,215195.09,149212.11,65982.98 Australia and Oceania,Marshall Islands,Cereal,Offline,C,3/9/2013,926786744,4/7/2013,5648,205.70,117.11,1161793.60,661437.28,500356.32 Europe,Kosovo,Beverages,Online,L,2/26/2011,662462985,3/11/2011,6374,47.45,31.79,302446.30,202629.46,99816.84 Europe,France,Snacks,Offline,L,11/5/2016,133107793,12/1/2016,8409,152.58,97.44,1283045.22,819372.96,463672.26 Middle East and North Africa,Somalia,Meat,Online,L,7/9/2015,545019996,8/21/2015,2383,421.89,364.69,1005363.87,869056.27,136307.60 Europe,Ireland,Office Supplies,Online,C,3/19/2016,924810922,5/8/2016,958,651.21,524.96,623859.18,502911.68,120947.50 Europe,Romania,Cosmetics,Online,C,2/9/2010,369404399,3/4/2010,3825,437.20,263.33,1672290.00,1007237.25,665052.75 Asia,Philippines,Cereal,Online,M,2/26/2012,296036756,2/26/2012,2709,205.70,117.11,557241.30,317250.99,239990.31 Middle East and North Africa,Tunisia ,Office Supplies,Offline,H,11/14/2011,392256820,11/24/2011,6365,651.21,524.96,4144951.65,3341370.40,803581.25 Sub-Saharan Africa,Madagascar,Meat,Offline,H,12/26/2014,865925920,2/7/2015,5577,421.89,364.69,2352880.53,2033876.13,319004.40 Asia,Bhutan,Personal Care,Offline,L,12/6/2016,195217883,12/31/2016,8165,81.73,56.67,667325.45,462710.55,204614.90 Asia,Indonesia,Personal Care,Offline,H,3/17/2014,978619039,3/18/2014,3975,81.73,56.67,324876.75,225263.25,99613.50 Europe,Macedonia,Personal Care,Online,H,9/27/2015,484928214,11/16/2015,9890,81.73,56.67,808309.70,560466.30,247843.40 Central America and the Caribbean,Grenada,Meat,Offline,L,5/11/2016,103256738,5/26/2016,4818,421.89,364.69,2032666.02,1757076.42,275589.60 Europe,Lithuania,Vegetables,Offline,L,10/9/2015,393028438,11/7/2015,4704,154.06,90.93,724698.24,427734.72,296963.52 Central America and the Caribbean,The Bahamas,Personal Care,Online,M,9/22/2014,633979642,10/27/2014,7519,81.73,56.67,614527.87,426101.73,188426.14 Middle East and North Africa,Algeria,Fruits,Online,L,4/7/2011,176159179,4/25/2011,8270,9.33,6.92,77159.10,57228.40,19930.70 Middle East and North Africa,Kuwait,Household,Online,M,1/22/2012,689928376,2/16/2012,3993,668.27,502.54,2668402.11,2006642.22,661759.89 Asia,Maldives,Personal Care,Online,H,6/27/2013,315961062,8/6/2013,8755,81.73,56.67,715546.15,496145.85,219400.30 Asia,Maldives,Vegetables,Online,L,12/30/2012,415243566,1/10/2013,8654,154.06,90.93,1333235.24,786908.22,546327.02 Sub-Saharan Africa,Seychelles ,Meat,Offline,M,11/19/2012,619074714,12/14/2012,6820,421.89,364.69,2877289.80,2487185.80,390104.00 Australia and Oceania,Vanuatu,Cosmetics,Offline,L,7/6/2016,179065835,8/6/2016,8415,437.20,263.33,3679038.00,2215921.95,1463116.05 Europe,Moldova ,Household,Online,M,12/11/2016,217140758,12/28/2016,5630,668.27,502.54,3762360.10,2829300.20,933059.90 Asia,Bangladesh,Cereal,Online,C,11/20/2015,575535809,12/26/2015,2691,205.70,117.11,553538.70,315143.01,238395.69 Australia and Oceania,Federated States of Micronesia,Household,Offline,C,4/27/2012,266799819,5/23/2012,850,668.27,502.54,568029.50,427159.00,140870.50 Europe,Latvia,Cosmetics,Online,M,11/14/2013,623794114,12/24/2013,3395,437.20,263.33,1484294.00,894005.35,590288.65 Sub-Saharan Africa,Senegal,Clothes,Offline,C,4/15/2010,349692523,5/4/2010,643,109.28,35.84,70267.04,23045.12,47221.92 Sub-Saharan Africa,Djibouti,Baby Food,Online,C,2/9/2015,467981374,2/27/2015,4943,255.28,159.42,1261849.04,788013.06,473835.98 Sub-Saharan Africa,Mozambique,Beverages,Online,C,6/6/2016,272459495,7/5/2016,5674,47.45,31.79,269231.30,180376.46,88854.84 Sub-Saharan Africa,Mauritania,Baby Food,Offline,M,12/29/2010,477238214,1/7/2011,4248,255.28,159.42,1084429.44,677216.16,407213.28 Sub-Saharan Africa,Guinea-Bissau,Baby Food,Online,C,7/10/2015,966741359,7/12/2015,9106,255.28,159.42,2324579.68,1451678.52,872901.16 Sub-Saharan Africa,Burundi,Vegetables,Offline,H,7/11/2017,345705258,7/26/2017,723,154.06,90.93,111385.38,65742.39,45642.99 Sub-Saharan Africa,Swaziland,Meat,Online,M,12/7/2016,889178740,1/20/2017,6604,421.89,364.69,2786161.56,2408412.76,377748.80 Central America and the Caribbean,Saint Lucia,Snacks,Online,C,9/29/2014,892523133,11/16/2014,6284,152.58,97.44,958812.72,612312.96,346499.76 Central America and the Caribbean,Dominica,Household,Online,L,10/17/2016,521412265,11/11/2016,6331,668.27,502.54,4230817.37,3181580.74,1049236.63 Middle East and North Africa,Tunisia ,Fruits,Offline,H,11/10/2014,461832463,12/15/2014,5344,9.33,6.92,49859.52,36980.48,12879.04 Central America and the Caribbean,Antigua and Barbuda ,Household,Online,L,2/13/2013,570082557,3/12/2013,8952,668.27,502.54,5982353.04,4498738.08,1483614.96 Europe,Belgium,Beverages,Online,C,11/2/2016,322773873,11/15/2016,4817,47.45,31.79,228566.65,153132.43,75434.22 Sub-Saharan Africa,Chad,Cereal,Online,H,5/25/2013,166830241,7/9/2013,7631,205.70,117.11,1569696.70,893666.41,676030.29 Sub-Saharan Africa,Rwanda,Baby Food,Online,H,12/20/2013,169487988,1/24/2014,4117,255.28,159.42,1050987.76,656332.14,394655.62 Middle East and North Africa,Oman,Meat,Offline,M,11/8/2011,468295943,12/14/2011,8031,421.89,364.69,3388198.59,2928825.39,459373.20 Middle East and North Africa,Jordan,Office Supplies,Online,M,7/27/2016,821115434,8/9/2016,5159,651.21,524.96,3359592.39,2708268.64,651323.75 Europe,United Kingdom,Vegetables,Online,H,3/10/2012,156120288,3/30/2012,8317,154.06,90.93,1281317.02,756264.81,525052.21 Sub-Saharan Africa,South Sudan,Clothes,Offline,H,2/22/2014,621796834,3/18/2014,2356,109.28,35.84,257463.68,84439.04,173024.64 Europe,Belarus,Office Supplies,Online,C,6/3/2012,836943900,7/3/2012,9154,651.21,524.96,5961176.34,4805483.84,1155692.50 Sub-Saharan Africa,Republic of the Congo,Meat,Offline,M,3/24/2013,840672814,3/29/2013,2622,421.89,364.69,1106195.58,956217.18,149978.40 Europe,Poland,Household,Online,L,6/18/2012,742407405,6/26/2012,3704,668.27,502.54,2475272.08,1861408.16,613863.92 Sub-Saharan Africa,Ethiopia,Snacks,Online,H,9/4/2014,271884000,9/13/2014,5372,152.58,97.44,819659.76,523447.68,296212.08 Middle East and North Africa,Jordan,Meat,Offline,C,2/12/2014,129151427,2/26/2014,7632,421.89,364.69,3219864.48,2783314.08,436550.40 Europe,Armenia,Personal Care,Offline,H,9/2/2013,634571015,10/20/2013,2520,81.73,56.67,205959.60,142808.40,63151.20 Sub-Saharan Africa,Zimbabwe,Fruits,Offline,H,7/4/2013,378816592,7/22/2013,9103,9.33,6.92,84930.99,62992.76,21938.23 Sub-Saharan Africa,Sierra Leone,Office Supplies,Online,M,11/9/2014,272874486,12/27/2014,8479,651.21,524.96,5521609.59,4451135.84,1070473.75 Europe,Bosnia and Herzegovina,Baby Food,Offline,C,3/24/2016,398043525,5/13/2016,8779,255.28,159.42,2241103.12,1399548.18,841554.94 Europe,Belgium,Clothes,Online,M,3/12/2017,455935037,4/29/2017,164,109.28,35.84,17921.92,5877.76,12044.16 Europe,Belarus,Office Supplies,Online,H,8/12/2014,218472850,8/17/2014,9826,651.21,524.96,6398789.46,5158256.96,1240532.50 Central America and the Caribbean,Panama,Household,Online,L,12/21/2013,877893292,2/8/2014,6989,668.27,502.54,4670539.03,3512252.06,1158286.97 Asia,North Korea,Cereal,Offline,L,6/21/2010,996745193,8/3/2010,7907,205.70,117.11,1626469.90,925988.77,700481.13 Middle East and North Africa,Egypt,Cosmetics,Online,M,7/7/2015,557889878,7/21/2015,867,437.20,263.33,379052.40,228307.11,150745.29 Asia,Bhutan,Vegetables,Online,H,1/26/2015,514501178,2/25/2015,1187,154.06,90.93,182869.22,107933.91,74935.31 Europe,Portugal,Snacks,Offline,H,4/26/2011,540065419,5/15/2011,6214,152.58,97.44,948132.12,605492.16,342639.96 Sub-Saharan Africa,Niger,Cereal,Offline,C,4/14/2011,378381431,4/14/2011,329,205.70,117.11,67675.30,38529.19,29146.11 Europe,Bosnia and Herzegovina,Cosmetics,Online,C,6/29/2015,293560540,7/2/2015,9942,437.20,263.33,4346642.40,2618026.86,1728615.54 Europe,Poland,Fruits,Offline,C,3/2/2014,620026576,4/20/2014,8497,9.33,6.92,79277.01,58799.24,20477.77 Sub-Saharan Africa,Gabon,Cosmetics,Online,C,10/1/2013,412515866,10/18/2013,1467,437.20,263.33,641372.40,386305.11,255067.29 Asia,South Korea,Cosmetics,Offline,H,5/20/2010,596077239,6/20/2010,1356,437.20,263.33,592843.20,357075.48,235767.72 Asia,Sri Lanka,Beverages,Online,H,6/1/2016,816072022,6/25/2016,2701,47.45,31.79,128162.45,85864.79,42297.66 Asia,South Korea,Fruits,Offline,M,3/13/2011,788174045,3/31/2011,7070,9.33,6.92,65963.10,48924.40,17038.70 Australia and Oceania,Australia,Beverages,Offline,C,12/27/2012,748369634,12/27/2012,8060,47.45,31.79,382447.00,256227.40,126219.60 Asia,Thailand,Meat,Online,M,8/18/2014,102957618,9/30/2014,6302,421.89,364.69,2658750.78,2298276.38,360474.40 Australia and Oceania,Tonga,Personal Care,Offline,H,1/3/2010,578549325,2/6/2010,4457,81.73,56.67,364270.61,252578.19,111692.42 Middle East and North Africa,Lebanon,Clothes,Offline,C,1/7/2013,372068583,2/25/2013,2217,109.28,35.84,242273.76,79457.28,162816.48 Europe,Greece,Cosmetics,Offline,C,11/25/2015,900751721,12/22/2015,1306,437.20,263.33,570983.20,343908.98,227074.22 Europe,Norway,Office Supplies,Offline,M,9/29/2015,952147567,11/12/2015,479,651.21,524.96,311929.59,251455.84,60473.75 Europe,Finland,Meat,Offline,H,9/13/2010,734117448,10/24/2010,521,421.89,364.69,219804.69,190003.49,29801.20 Europe,Bosnia and Herzegovina,Snacks,Offline,M,5/9/2011,524835193,6/25/2011,9251,152.58,97.44,1411517.58,901417.44,510100.14 Europe,Slovakia,Fruits,Online,M,3/14/2014,222787129,3/17/2014,6517,9.33,6.92,60803.61,45097.64,15705.97 Europe,Montenegro,Baby Food,Online,M,1/5/2013,696772086,2/15/2013,9199,255.28,159.42,2348320.72,1466504.58,881816.14 Central America and the Caribbean,Dominican Republic,Snacks,Offline,L,3/19/2010,635901391,3/21/2010,6208,152.58,97.44,947216.64,604907.52,342309.12 Sub-Saharan Africa,Guinea-Bissau,Clothes,Offline,L,1/22/2013,599598872,2/12/2013,3486,109.28,35.84,380950.08,124938.24,256011.84 Sub-Saharan Africa,Chad,Office Supplies,Offline,H,9/30/2014,767600858,11/9/2014,9006,651.21,524.96,5864797.26,4727789.76,1137007.50 Europe,Slovakia,Personal Care,Online,H,4/20/2013,489956176,6/2/2013,7775,81.73,56.67,635450.75,440609.25,194841.50 Asia,Thailand,Clothes,Online,H,5/28/2015,537026154,6/24/2015,6828,109.28,35.84,746163.84,244715.52,501448.32 Asia,Brunei,Clothes,Offline,C,6/7/2017,849484622,7/5/2017,232,109.28,35.84,25352.96,8314.88,17038.08 Europe,Macedonia,Clothes,Online,M,10/31/2016,988317906,12/12/2016,4086,109.28,35.84,446518.08,146442.24,300075.84 Asia,Brunei,Fruits,Offline,H,11/25/2015,584824836,12/1/2015,1520,9.33,6.92,14181.60,10518.40,3663.20 Europe,Greece,Personal Care,Online,M,6/4/2010,690616738,6/26/2010,7695,81.73,56.67,628912.35,436075.65,192836.70 Europe,Malta,Baby Food,Offline,H,3/9/2016,627617442,4/4/2016,4803,255.28,159.42,1226109.84,765694.26,460415.58 Asia,India,Meat,Offline,C,3/6/2012,238063275,3/24/2012,7068,421.89,364.69,2981918.52,2577628.92,404289.60 Europe,Macedonia,Office Supplies,Offline,C,7/11/2012,334503066,8/21/2012,5745,651.21,524.96,3741201.45,3015895.20,725306.25 Sub-Saharan Africa,Comoros,Office Supplies,Online,L,4/11/2017,449798142,5/26/2017,4121,651.21,524.96,2683636.41,2163360.16,520276.25 Europe,Malta,Clothes,Online,M,3/8/2016,187122333,3/30/2016,2511,109.28,35.84,274402.08,89994.24,184407.84 Australia and Oceania,Nauru,Baby Food,Online,C,3/20/2015,569961965,4/16/2015,3266,255.28,159.42,833744.48,520665.72,313078.76 Asia,Sri Lanka,Cereal,Online,C,1/15/2010,892115867,1/17/2010,5765,205.70,117.11,1185860.50,675139.15,510721.35 Central America and the Caribbean,Barbados,Personal Care,Online,L,7/14/2012,967695367,7/18/2012,1418,81.73,56.67,115893.14,80358.06,35535.08 Europe,Lithuania,Fruits,Online,L,9/19/2016,681124293,10/15/2016,8669,9.33,6.92,80881.77,59989.48,20892.29 Central America and the Caribbean,El Salvador,Office Supplies,Offline,H,2/3/2010,437138974,3/1/2010,7992,651.21,524.96,5204470.32,4195480.32,1008990.00 Europe,Slovakia,Household,Offline,C,4/22/2015,710788238,4/22/2015,6890,668.27,502.54,4604380.30,3462500.60,1141879.70 Europe,Estonia,Fruits,Online,C,8/21/2010,697433412,8/28/2010,4900,9.33,6.92,45717.00,33908.00,11809.00 Sub-Saharan Africa,Lesotho,Household,Online,H,1/27/2017,562748324,3/13/2017,8590,668.27,502.54,5740439.30,4316818.60,1423620.70 Europe,Georgia,Beverages,Offline,C,3/29/2011,992719304,4/21/2011,6557,47.45,31.79,311129.65,208447.03,102682.62 Australia and Oceania,Papua New Guinea,Fruits,Online,H,6/20/2012,943645179,7/31/2012,4433,9.33,6.92,41359.89,30676.36,10683.53 Europe,Montenegro,Household,Offline,C,11/13/2010,792137277,11/24/2010,9878,668.27,502.54,6601171.06,4964090.12,1637080.94 Australia and Oceania,Palau,Cosmetics,Offline,L,7/18/2016,985119426,8/22/2016,7584,437.20,263.33,3315724.80,1997094.72,1318630.08 Central America and the Caribbean,Saint Kitts and Nevis ,Household,Online,M,5/19/2010,689827954,6/13/2010,4276,668.27,502.54,2857522.52,2148861.04,708661.48 Australia and Oceania,Nauru,Cereal,Online,M,12/18/2015,943811690,1/21/2016,3708,205.70,117.11,762735.60,434243.88,328491.72 Middle East and North Africa,Yemen,Baby Food,Online,C,7/10/2012,604931962,8/5/2012,1665,255.28,159.42,425041.20,265434.30,159606.90 Europe,Georgia,Cosmetics,Online,M,6/3/2014,401362597,6/9/2014,967,437.20,263.33,422772.40,254640.11,168132.29 Sub-Saharan Africa,Seychelles ,Cereal,Offline,H,5/16/2014,681589925,6/26/2014,6460,205.70,117.11,1328822.00,756530.60,572291.40 Sub-Saharan Africa,Rwanda,Office Supplies,Online,L,7/5/2017,964412772,8/9/2017,26,651.21,524.96,16931.46,13648.96,3282.50 Middle East and North Africa,Saudi Arabia,Office Supplies,Online,H,11/21/2014,388942468,11/28/2014,5574,651.21,524.96,3629844.54,2926127.04,703717.50 Europe,Georgia,Household,Online,H,7/25/2017,864602839,8/9/2017,4048,668.27,502.54,2705156.96,2034281.92,670875.04 Europe,Malta,Fruits,Online,L,12/7/2014,321130216,1/3/2015,8422,9.33,6.92,78577.26,58280.24,20297.02 Asia,South Korea,Office Supplies,Online,M,5/23/2016,358573424,5/26/2016,8699,651.21,524.96,5664875.79,4566627.04,1098248.75 Sub-Saharan Africa,Eritrea,Vegetables,Online,M,4/3/2017,397293794,4/17/2017,6917,154.06,90.93,1065633.02,628962.81,436670.21 Europe,Iceland,Baby Food,Offline,M,2/12/2010,827965152,3/3/2010,2142,255.28,159.42,546809.76,341477.64,205332.12 Sub-Saharan Africa,Djibouti,Vegetables,Online,L,5/10/2011,761573827,6/22/2011,5474,154.06,90.93,843324.44,497750.82,345573.62 Australia and Oceania,Tuvalu,Office Supplies,Offline,H,11/27/2011,279418647,1/12/2012,5042,651.21,524.96,3283400.82,2646848.32,636552.50 Middle East and North Africa,Lebanon,Clothes,Offline,L,5/6/2011,883110940,5/9/2011,1007,109.28,35.84,110044.96,36090.88,73954.08 Sub-Saharan Africa,Mozambique,Vegetables,Online,L,2/3/2014,544574534,3/3/2014,561,154.06,90.93,86427.66,51011.73,35415.93 Middle East and North Africa,Kuwait,Household,Online,M,7/3/2010,456045758,8/18/2010,2929,668.27,502.54,1957362.83,1471939.66,485423.17 Asia,North Korea,Meat,Offline,H,11/29/2010,980073440,12/20/2010,4365,421.89,364.69,1841549.85,1591871.85,249678.00 Asia,Brunei,Baby Food,Offline,H,8/2/2011,299518907,9/5/2011,3155,255.28,159.42,805408.40,502970.10,302438.30 Asia,Philippines,Baby Food,Online,M,8/19/2013,267555987,10/6/2013,4617,255.28,159.42,1178627.76,736042.14,442585.62 Middle East and North Africa,Morocco,Meat,Offline,L,8/30/2011,557671010,10/12/2011,6099,421.89,364.69,2573107.11,2224244.31,348862.80 Central America and the Caribbean,Saint Vincent and the Grenadines,Beverages,Offline,L,9/13/2012,913662803,10/21/2012,1982,47.45,31.79,94045.90,63007.78,31038.12 Central America and the Caribbean,Dominican Republic,Vegetables,Offline,C,4/9/2017,699642693,4/21/2017,8675,154.06,90.93,1336470.50,788817.75,547652.75 Central America and the Caribbean,Honduras,Baby Food,Online,M,8/7/2015,250034511,9/13/2015,9623,255.28,159.42,2456559.44,1534098.66,922460.78 Middle East and North Africa,Kuwait,Snacks,Online,L,2/15/2014,419574582,3/30/2014,298,152.58,97.44,45468.84,29037.12,16431.72 Middle East and North Africa,Israel,Beverages,Online,M,7/24/2016,333311736,7/25/2016,3204,47.45,31.79,152029.80,101855.16,50174.64 Europe,Estonia,Beverages,Online,C,7/18/2012,536607301,9/4/2012,2880,47.45,31.79,136656.00,91555.20,45100.80 Sub-Saharan Africa,Kenya,Snacks,Online,L,9/17/2011,745135104,9/19/2011,891,152.58,97.44,135948.78,86819.04,49129.74 Central America and the Caribbean,Antigua and Barbuda ,Cosmetics,Offline,M,3/7/2017,294881474,3/9/2017,836,437.20,263.33,365499.20,220143.88,145355.32 Asia,Maldives,Clothes,Online,M,3/19/2014,392145240,4/9/2014,3346,109.28,35.84,365650.88,119920.64,245730.24 Central America and the Caribbean,Trinidad and Tobago,Baby Food,Offline,C,11/6/2011,963537728,12/23/2011,1081,255.28,159.42,275957.68,172333.02,103624.66 Australia and Oceania,Vanuatu,Meat,Online,H,5/27/2016,205982768,5/30/2016,3733,421.89,364.69,1574915.37,1361387.77,213527.60 Sub-Saharan Africa,Cameroon,Meat,Offline,C,7/19/2012,436716687,8/19/2012,3027,421.89,364.69,1277061.03,1103916.63,173144.40 Sub-Saharan Africa,Republic of the Congo,Personal Care,Online,C,7/7/2012,443288314,7/12/2012,7718,81.73,56.67,630792.14,437379.06,193413.08 Australia and Oceania,Nauru,Household,Online,M,6/18/2014,433558976,7/6/2014,8591,668.27,502.54,5741107.57,4317321.14,1423786.43 Sub-Saharan Africa,Benin,Fruits,Offline,M,10/27/2013,685702502,12/13/2013,3463,9.33,6.92,32309.79,23963.96,8345.83 Asia,Bhutan,Cosmetics,Offline,H,8/30/2014,198205220,10/3/2014,2184,437.20,263.33,954844.80,575112.72,379732.08 Europe,United Kingdom,Personal Care,Online,C,10/6/2010,739865958,10/16/2010,1633,81.73,56.67,133465.09,92542.11,40922.98 Central America and the Caribbean,Saint Kitts and Nevis ,Vegetables,Online,C,2/10/2012,999796044,2/29/2012,722,154.06,90.93,111231.32,65651.46,45579.86 Middle East and North Africa,Lebanon,Vegetables,Offline,L,10/29/2010,637419307,12/9/2010,5393,154.06,90.93,830845.58,490385.49,340460.09 Sub-Saharan Africa,Zimbabwe,Vegetables,Offline,M,3/29/2015,732472074,4/20/2015,3619,154.06,90.93,557543.14,329075.67,228467.47 Sub-Saharan Africa,Swaziland,Cereal,Offline,H,10/25/2015,635003173,12/10/2015,405,205.70,117.11,83308.50,47429.55,35878.95 Asia,Tajikistan,Cereal,Online,H,8/27/2011,215373933,9/3/2011,2788,205.70,117.11,573491.60,326502.68,246988.92 Asia,Bangladesh,Cereal,Offline,L,4/13/2014,314258182,5/27/2014,4834,205.70,117.11,994353.80,566109.74,428244.06 Sub-Saharan Africa,Mauritius ,Fruits,Online,H,7/27/2013,492642247,7/28/2013,2643,9.33,6.92,24659.19,18289.56,6369.63 Middle East and North Africa,Qatar,Fruits,Offline,H,10/25/2011,381824958,11/11/2011,9345,9.33,6.92,87188.85,64667.40,22521.45 Sub-Saharan Africa,Malawi,Fruits,Online,M,5/19/2012,133417642,6/30/2012,100,9.33,6.92,933.00,692.00,241.00 Europe,Serbia,Meat,Online,H,11/27/2015,869344127,12/9/2015,7101,421.89,364.69,2995840.89,2589663.69,406177.20 Asia,Tajikistan,Cosmetics,Offline,H,7/8/2016,631840741,8/7/2016,4571,437.20,263.33,1998441.20,1203681.43,794759.77 Australia and Oceania,Federated States of Micronesia,Vegetables,Offline,M,3/15/2013,233456313,4/18/2013,3766,154.06,90.93,580189.96,342442.38,237747.58 Asia,Mongolia,Beverages,Offline,H,8/1/2013,107052171,8/30/2013,7971,47.45,31.79,378223.95,253398.09,124825.86 Asia,Kazakhstan,Baby Food,Offline,H,12/26/2014,755802142,12/30/2014,7504,255.28,159.42,1915621.12,1196287.68,719333.44 Middle East and North Africa,Somalia,Cosmetics,Offline,C,10/19/2015,503192555,11/3/2015,4714,437.20,263.33,2060960.80,1241337.62,819623.18 Europe,Poland,Meat,Online,H,9/11/2011,443022239,9/15/2011,8980,421.89,364.69,3788572.20,3274916.20,513656.00 Europe,Ireland,Office Supplies,Offline,M,7/21/2014,389402520,8/17/2014,1714,651.21,524.96,1116173.94,899781.44,216392.50 Asia,Philippines,Household,Online,L,10/24/2010,226757228,11/22/2010,1358,668.27,502.54,907510.66,682449.32,225061.34 Central America and the Caribbean,Belize,Household,Offline,L,9/14/2010,359822690,9/29/2010,8385,668.27,502.54,5603443.95,4213797.90,1389646.05 Middle East and North Africa,Algeria,Baby Food,Offline,L,2/24/2014,363647735,3/31/2014,301,255.28,159.42,76839.28,47985.42,28853.86 Asia,Philippines,Beverages,Online,H,7/29/2014,333593690,9/12/2014,6641,47.45,31.79,315115.45,211117.39,103998.06 Asia,Kazakhstan,Clothes,Offline,C,4/3/2010,435334384,5/16/2010,3973,109.28,35.84,434169.44,142392.32,291777.12 Europe,United Kingdom,Clothes,Online,H,9/1/2015,454856145,10/10/2015,896,109.28,35.84,97914.88,32112.64,65802.24 Europe,Netherlands,Baby Food,Online,C,4/15/2012,248457801,5/19/2012,3039,255.28,159.42,775795.92,484477.38,291318.54 Central America and the Caribbean,Saint Kitts and Nevis ,Personal Care,Offline,H,12/10/2012,192750680,1/17/2013,8064,81.73,56.67,659070.72,456986.88,202083.84 Europe,Austria,Meat,Offline,L,8/5/2012,734658610,8/8/2012,663,421.89,364.69,279713.07,241789.47,37923.60 Europe,Spain,Personal Care,Online,C,11/1/2014,141417920,12/14/2014,7560,81.73,56.67,617878.80,428425.20,189453.60 Sub-Saharan Africa,Ethiopia,Snacks,Online,M,12/21/2012,350577437,12/30/2012,2509,152.58,97.44,382823.22,244476.96,138346.26 Europe,Lithuania,Clothes,Offline,C,7/9/2016,219998490,7/25/2016,1297,109.28,35.84,141736.16,46484.48,95251.68 Middle East and North Africa,Syria,Cosmetics,Online,C,2/15/2017,477854907,3/7/2017,6741,437.20,263.33,2947165.20,1775107.53,1172057.67 Sub-Saharan Africa,Zambia,Personal Care,Online,L,1/26/2015,572633016,3/2/2015,3689,81.73,56.67,301501.97,209055.63,92446.34 Europe,Poland,Personal Care,Offline,C,6/30/2015,923131644,7/18/2015,4022,81.73,56.67,328718.06,227926.74,100791.32 Sub-Saharan Africa,Mauritania,Meat,Offline,H,1/8/2017,668462121,2/14/2017,1651,421.89,364.69,696540.39,602103.19,94437.20 Europe,Bulgaria,Beverages,Offline,H,7/26/2015,818048274,9/14/2015,7518,47.45,31.79,356729.10,238997.22,117731.88 Middle East and North Africa,Bahrain,Clothes,Online,M,8/31/2015,201626431,9/24/2015,4597,109.28,35.84,502360.16,164756.48,337603.68 Australia and Oceania,Tonga,Personal Care,Offline,C,7/27/2011,419245421,8/15/2011,2892,81.73,56.67,236363.16,163889.64,72473.52 Middle East and North Africa,Yemen,Fruits,Offline,C,9/28/2013,891266572,10/6/2013,4439,9.33,6.92,41415.87,30717.88,10697.99 Sub-Saharan Africa,Togo,Beverages,Offline,C,10/10/2014,208363711,11/29/2014,8307,47.45,31.79,394167.15,264079.53,130087.62 Sub-Saharan Africa,Benin,Meat,Offline,H,11/26/2015,181523168,12/12/2015,5594,421.89,364.69,2360052.66,2040075.86,319976.80 Sub-Saharan Africa,Djibouti,Beverages,Offline,L,8/19/2015,892043769,9/8/2015,4429,47.45,31.79,210156.05,140797.91,69358.14 Middle East and North Africa,Bahrain,Baby Food,Online,M,7/15/2013,241536843,8/21/2013,4974,255.28,159.42,1269762.72,792955.08,476807.64 Europe,Luxembourg,Meat,Offline,M,1/17/2014,701926219,2/14/2014,4421,421.89,364.69,1865175.69,1612294.49,252881.20 Sub-Saharan Africa,Mauritius ,Beverages,Offline,H,1/29/2015,765448224,2/18/2015,1994,47.45,31.79,94615.30,63389.26,31226.04 Asia,Sri Lanka,Baby Food,Online,M,10/29/2011,794651687,11/27/2011,3948,255.28,159.42,1007845.44,629390.16,378455.28 Australia and Oceania,Australia,Cereal,Online,M,9/14/2015,772397935,10/15/2015,8568,205.70,117.11,1762437.60,1003398.48,759039.12 Middle East and North Africa,Turkey,Clothes,Offline,C,9/1/2012,751860797,10/15/2012,1173,109.28,35.84,128185.44,42040.32,86145.12 Asia,India,Fruits,Online,M,6/24/2012,406526601,8/8/2012,9110,9.33,6.92,84996.30,63041.20,21955.10 Europe,Vatican City,Beverages,Offline,L,8/4/2014,380194175,8/6/2014,6760,47.45,31.79,320762.00,214900.40,105861.60 Australia and Oceania,Kiribati,Clothes,Offline,H,12/14/2011,936974847,2/2/2012,534,109.28,35.84,58355.52,19138.56,39216.96 Sub-Saharan Africa,Rwanda,Cereal,Online,C,7/3/2017,611292445,7/5/2017,3874,205.70,117.11,796881.80,453684.14,343197.66 Sub-Saharan Africa,Chad,Clothes,Offline,L,12/21/2014,257883298,2/5/2015,2253,109.28,35.84,246207.84,80747.52,165460.32 Europe,Ireland,Snacks,Offline,C,8/23/2015,801796233,10/12/2015,8178,152.58,97.44,1247799.24,796864.32,450934.92 Central America and the Caribbean,Jamaica,Cosmetics,Online,L,9/21/2016,988392579,11/9/2016,6183,437.20,263.33,2703207.60,1628169.39,1075038.21 Central America and the Caribbean,Belize,Meat,Online,C,9/12/2012,533346164,9/26/2012,7837,421.89,364.69,3306351.93,2858075.53,448276.40 Middle East and North Africa,Tunisia ,Personal Care,Online,M,4/10/2014,572643315,5/13/2014,6737,81.73,56.67,550615.01,381785.79,168829.22 Asia,Myanmar,Cereal,Online,C,4/9/2014,512582862,5/7/2014,3514,205.70,117.11,722829.80,411524.54,311305.26 Europe,Italy,Meat,Online,C,2/27/2014,279776132,4/5/2014,829,421.89,364.69,349746.81,302328.01,47418.80 Sub-Saharan Africa,Sao Tome and Principe,Office Supplies,Offline,C,9/8/2012,771146953,10/14/2012,8375,651.21,524.96,5453883.75,4396540.00,1057343.75 Asia,Maldives,Baby Food,Online,H,3/29/2017,703931653,4/10/2017,7874,255.28,159.42,2010074.72,1255273.08,754801.64 Asia,Kazakhstan,Snacks,Online,C,5/2/2017,665679061,6/16/2017,8082,152.58,97.44,1233151.56,787510.08,445641.48 Central America and the Caribbean,Nicaragua,Cereal,Offline,C,2/15/2011,864250504,3/9/2011,9785,205.70,117.11,2012774.50,1145921.35,866853.15 Asia,Myanmar,Snacks,Offline,L,10/5/2016,677819812,10/30/2016,800,152.58,97.44,122064.00,77952.00,44112.00 Central America and the Caribbean,Dominica,Fruits,Online,H,8/7/2015,904873311,9/19/2015,976,9.33,6.92,9106.08,6753.92,2352.16 Sub-Saharan Africa,Angola,Vegetables,Offline,L,7/22/2016,614209830,7/30/2016,7193,154.06,90.93,1108153.58,654059.49,454094.09 Sub-Saharan Africa,Gabon,Baby Food,Online,L,6/25/2014,294940698,7/8/2014,8362,255.28,159.42,2134651.36,1333070.04,801581.32 Sub-Saharan Africa,Cameroon,Cosmetics,Online,H,8/20/2016,506489741,9/29/2016,425,437.20,263.33,185810.00,111915.25,73894.75 Middle East and North Africa,Israel,Meat,Online,L,3/16/2016,528593289,4/18/2016,1356,421.89,364.69,572082.84,494519.64,77563.20 Europe,France,Snacks,Online,M,3/24/2011,611300170,4/19/2011,6160,152.58,97.44,939892.80,600230.40,339662.40 Middle East and North Africa,Iran,Personal Care,Online,H,12/12/2015,624971711,12/27/2015,1872,81.73,56.67,152998.56,106086.24,46912.32 Asia,Kyrgyzstan,Personal Care,Online,C,8/8/2011,510281741,9/14/2011,2562,81.73,56.67,209392.26,145188.54,64203.72 Europe,Andorra,Baby Food,Online,M,10/12/2010,728216588,11/20/2010,4326,255.28,159.42,1104341.28,689650.92,414690.36 Europe,Sweden,Office Supplies,Online,M,10/11/2015,910075080,10/16/2015,295,651.21,524.96,192106.95,154863.20,37243.75 Europe,Belgium,Cereal,Offline,L,10/23/2014,307468545,12/1/2014,5630,205.70,117.11,1158091.00,659329.30,498761.70 Central America and the Caribbean,Guatemala,Fruits,Online,L,2/4/2016,942320811,3/1/2016,2523,9.33,6.92,23539.59,17459.16,6080.43 Europe,Andorra,Beverages,Online,L,10/3/2013,856868207,10/21/2013,5199,47.45,31.79,246692.55,165276.21,81416.34 North America,Mexico,Office Supplies,Online,H,5/10/2014,863659560,5/15/2014,4911,651.21,524.96,3198092.31,2578078.56,620013.75 Europe,United Kingdom,Personal Care,Offline,H,5/13/2010,495556199,6/23/2010,4947,81.73,56.67,404318.31,280346.49,123971.82 Sub-Saharan Africa,Equatorial Guinea,Office Supplies,Online,M,4/4/2014,255731952,4/18/2014,5622,651.21,524.96,3661102.62,2951325.12,709777.50 Central America and the Caribbean,Dominica,Personal Care,Online,H,11/7/2016,267673146,12/8/2016,9287,81.73,56.67,759026.51,526294.29,232732.22 Sub-Saharan Africa,Sierra Leone,Cereal,Offline,C,10/27/2013,725178611,11/30/2013,5321,205.70,117.11,1094529.70,623142.31,471387.39 Middle East and North Africa,United Arab Emirates,Office Supplies,Offline,M,1/15/2017,542359673,2/12/2017,5135,651.21,524.96,3343963.35,2695669.60,648293.75 Sub-Saharan Africa,Sao Tome and Principe,Fruits,Online,H,12/15/2012,503640162,12/24/2012,7171,9.33,6.92,66905.43,49623.32,17282.11 Central America and the Caribbean,Guatemala,Cereal,Online,H,10/15/2011,113756406,11/17/2011,1903,205.70,117.11,391447.10,222860.33,168586.77 Sub-Saharan Africa,South Sudan,Meat,Online,C,6/19/2013,747757232,8/6/2013,6837,421.89,364.69,2884461.93,2493385.53,391076.40 Sub-Saharan Africa,Zimbabwe,Household,Offline,L,6/1/2011,701003968,6/10/2011,1507,668.27,502.54,1007082.89,757327.78,249755.11 Europe,Greece,Cereal,Online,C,6/24/2011,139170444,7/12/2011,2482,205.70,117.11,510547.40,290667.02,219880.38 Sub-Saharan Africa,Ethiopia,Clothes,Offline,L,12/29/2012,648242986,1/31/2013,8360,109.28,35.84,913580.80,299622.40,613958.40 Australia and Oceania,Tuvalu,Baby Food,Online,C,7/31/2012,284520423,8/4/2012,4771,255.28,159.42,1217940.88,760592.82,457348.06 Sub-Saharan Africa,Togo,Clothes,Online,C,6/29/2015,324614083,8/11/2015,9376,109.28,35.84,1024609.28,336035.84,688573.44 Sub-Saharan Africa,Burkina Faso,Baby Food,Online,C,9/8/2016,315447795,10/28/2016,6867,255.28,159.42,1753007.76,1094737.14,658270.62 Europe,Macedonia,Clothes,Online,L,3/11/2012,324257886,4/19/2012,3969,109.28,35.84,433732.32,142248.96,291483.36 Central America and the Caribbean,Guatemala,Clothes,Online,H,6/16/2010,488593184,6/28/2010,4436,109.28,35.84,484766.08,158986.24,325779.84 Central America and the Caribbean,Haiti,Household,Online,H,6/2/2013,566315019,7/8/2013,4054,668.27,502.54,2709166.58,2037297.16,671869.42 Middle East and North Africa,Kuwait,Vegetables,Offline,C,9/23/2012,385597217,10/4/2012,5640,154.06,90.93,868898.40,512845.20,356053.20 Asia,China,Fruits,Online,M,3/30/2016,294926106,4/7/2016,4044,9.33,6.92,37730.52,27984.48,9746.04 Asia,Turkmenistan,Beverages,Offline,M,12/14/2013,713100516,1/13/2014,1144,47.45,31.79,54282.80,36367.76,17915.04 Europe,Portugal,Snacks,Offline,M,1/22/2012,779231774,3/8/2012,853,152.58,97.44,130150.74,83116.32,47034.42 Europe,Denmark,Fruits,Online,H,1/14/2014,602743709,1/25/2014,4113,9.33,6.92,38374.29,28461.96,9912.33 Australia and Oceania,Papua New Guinea,Meat,Online,M,11/12/2016,813372647,12/31/2016,3896,421.89,364.69,1643683.44,1420832.24,222851.20 Australia and Oceania,Samoa ,Beverages,Offline,C,10/16/2014,311167418,10/30/2014,209,47.45,31.79,9917.05,6644.11,3272.94 Sub-Saharan Africa,Sao Tome and Principe,Vegetables,Online,C,9/12/2010,316489350,10/12/2010,5087,154.06,90.93,783703.22,462560.91,321142.31 Europe,Slovakia,Baby Food,Online,C,5/1/2012,320012271,5/8/2012,7597,255.28,159.42,1939362.16,1211113.74,728248.42 Sub-Saharan Africa,Angola,Snacks,Offline,H,5/7/2013,332722508,5/24/2013,8839,152.58,97.44,1348654.62,861272.16,487382.46 North America,Mexico,Clothes,Offline,L,4/3/2012,435918891,4/26/2012,6942,109.28,35.84,758621.76,248801.28,509820.48 Middle East and North Africa,Jordan,Office Supplies,Offline,M,3/15/2016,331212747,5/3/2016,2067,651.21,524.96,1346051.07,1085092.32,260958.75 Asia,Laos,Clothes,Online,L,6/22/2014,690527904,6/28/2014,1407,109.28,35.84,153756.96,50426.88,103330.08 Europe,Sweden,Vegetables,Online,M,7/21/2012,906100690,8/14/2012,4185,154.06,90.93,644741.10,380542.05,264199.05 Middle East and North Africa,Saudi Arabia,Household,Online,L,3/19/2013,440479934,4/2/2013,6656,668.27,502.54,4448005.12,3344906.24,1103098.88 Sub-Saharan Africa,Swaziland,Vegetables,Offline,H,9/19/2012,176526963,9/26/2012,7106,154.06,90.93,1094750.36,646148.58,448601.78 Europe,San Marino,Clothes,Offline,L,3/6/2012,167415606,3/23/2012,853,109.28,35.84,93215.84,30571.52,62644.32 Sub-Saharan Africa,Uganda,Fruits,Online,M,10/9/2013,986632192,11/2/2013,5246,9.33,6.92,48945.18,36302.32,12642.86 Europe,Romania,Cereal,Online,C,12/15/2016,577975547,1/31/2017,4663,205.70,117.11,959179.10,546083.93,413095.17 Europe,France,Vegetables,Offline,C,9/5/2014,105557000,9/19/2014,5517,154.06,90.93,849949.02,501660.81,348288.21 Asia,Thailand,Fruits,Offline,C,4/23/2012,803800380,6/10/2012,1249,9.33,6.92,11653.17,8643.08,3010.09 Europe,Albania,Clothes,Online,H,4/17/2016,827442014,5/15/2016,7334,109.28,35.84,801459.52,262850.56,538608.96 Central America and the Caribbean,Saint Kitts and Nevis ,Beverages,Online,L,3/13/2015,201530730,4/8/2015,6276,47.45,31.79,297796.20,199514.04,98282.16 Australia and Oceania,Samoa ,Meat,Online,C,10/19/2013,371427857,11/16/2013,2612,421.89,364.69,1101976.68,952570.28,149406.40 Europe,Malta,Office Supplies,Online,L,2/28/2014,152807223,3/4/2014,7908,651.21,524.96,5149768.68,4151383.68,998385.00 Asia,Brunei,Cosmetics,Online,M,11/2/2011,681655156,12/13/2011,5763,437.20,263.33,2519583.60,1517570.79,1002012.81 Middle East and North Africa,Azerbaijan,Household,Offline,L,10/19/2014,464270484,10/31/2014,6808,668.27,502.54,4549582.16,3421292.32,1128289.84 Middle East and North Africa,Iraq,Fruits,Offline,H,12/11/2016,327264535,12/16/2016,3703,9.33,6.92,34548.99,25624.76,8924.23 Sub-Saharan Africa,Guinea,Meat,Online,L,1/7/2017,267561137,2/22/2017,6141,421.89,364.69,2590826.49,2239561.29,351265.20 Europe,Vatican City,Clothes,Online,L,11/1/2014,802396619,11/24/2014,5845,109.28,35.84,638741.60,209484.80,429256.80 Europe,Monaco,Office Supplies,Offline,H,1/21/2015,719319808,2/2/2015,1571,651.21,524.96,1023050.91,824712.16,198338.75 Europe,Germany,Personal Care,Online,L,11/1/2015,226192033,11/6/2015,4104,81.73,56.67,335419.92,232573.68,102846.24 Central America and the Caribbean,Costa Rica,Household,Online,H,8/8/2012,501187121,9/8/2012,1262,668.27,502.54,843356.74,634205.48,209151.26 Middle East and North Africa,Qatar,Meat,Offline,L,1/3/2017,542791402,2/2/2017,2893,421.89,364.69,1220527.77,1055048.17,165479.60 Sub-Saharan Africa,Sierra Leone,Vegetables,Offline,C,4/3/2015,319803702,5/7/2015,5877,154.06,90.93,905410.62,534395.61,371015.01 Australia and Oceania,Fiji,Beverages,Offline,L,4/29/2017,321335351,6/3/2017,9126,47.45,31.79,433028.70,290115.54,142913.16 Middle East and North Africa,Somalia,Cosmetics,Online,H,5/7/2015,206810176,5/23/2015,8582,437.20,263.33,3752050.40,2259898.06,1492152.34 Europe,United Kingdom,Snacks,Online,M,1/26/2010,155964505,2/16/2010,2218,152.58,97.44,338422.44,216121.92,122300.52 Sub-Saharan Africa,South Africa,Clothes,Offline,H,9/7/2014,418847167,10/12/2014,5039,109.28,35.84,550661.92,180597.76,370064.16 Europe,Belarus,Vegetables,Online,C,2/21/2013,865819489,2/23/2013,4082,154.06,90.93,628872.92,371176.26,257696.66 Middle East and North Africa,Iraq,Fruits,Online,M,12/19/2016,537555301,12/28/2016,3414,9.33,6.92,31852.62,23624.88,8227.74 Sub-Saharan Africa,Mali,Beverages,Online,C,1/13/2016,795040929,1/16/2016,9133,47.45,31.79,433360.85,290338.07,143022.78 Sub-Saharan Africa,Rwanda,Snacks,Offline,C,8/21/2012,369575202,9/12/2012,4370,152.58,97.44,666774.60,425812.80,240961.80 Sub-Saharan Africa,Senegal,Cereal,Offline,M,2/21/2010,312769448,3/7/2010,4285,205.70,117.11,881424.50,501816.35,379608.15 Sub-Saharan Africa,Liberia,Cosmetics,Online,M,10/3/2016,846547496,10/22/2016,1071,437.20,263.33,468241.20,282026.43,186214.77 Europe,Slovenia,Beverages,Online,M,6/20/2011,913145673,7/26/2011,8952,47.45,31.79,424772.40,284584.08,140188.32 Middle East and North Africa,Kuwait,Clothes,Online,H,12/24/2015,425112807,12/29/2015,9181,109.28,35.84,1003299.68,329047.04,674252.64 Asia,China,Office Supplies,Online,M,3/11/2015,715310227,4/11/2015,5047,651.21,524.96,3286656.87,2649473.12,637183.75 Europe,Slovakia,Baby Food,Offline,L,1/1/2014,486911761,1/3/2014,6865,255.28,159.42,1752497.20,1094418.30,658078.90 Australia and Oceania,Tuvalu,Cosmetics,Offline,C,10/22/2010,763403737,11/16/2010,6985,437.20,263.33,3053842.00,1839360.05,1214481.95 Europe,Estonia,Snacks,Online,C,6/3/2016,838584983,7/15/2016,4787,152.58,97.44,730400.46,466445.28,263955.18 Middle East and North Africa,Lebanon,Personal Care,Online,L,6/6/2012,526566827,6/13/2012,1680,81.73,56.67,137306.40,95205.60,42100.80 Sub-Saharan Africa,Botswana,Cereal,Offline,L,7/28/2015,611773097,8/14/2015,6109,205.70,117.11,1256621.30,715424.99,541196.31 Sub-Saharan Africa,Chad,Clothes,Online,H,5/6/2013,598940122,6/4/2013,8547,109.28,35.84,934016.16,306324.48,627691.68 Sub-Saharan Africa,Benin,Fruits,Offline,M,4/4/2013,963116729,5/12/2013,6497,9.33,6.92,60617.01,44959.24,15657.77 Sub-Saharan Africa,Malawi,Household,Offline,L,4/20/2016,899664247,4/23/2016,9498,668.27,502.54,6347228.46,4773124.92,1574103.54 Sub-Saharan Africa,Ethiopia,Personal Care,Online,H,3/5/2013,574256503,3/27/2013,4115,81.73,56.67,336318.95,233197.05,103121.90 Asia,Japan,Baby Food,Online,L,10/18/2010,672879827,10/23/2010,8948,255.28,159.42,2284245.44,1426490.16,857755.28 Central America and the Caribbean,El Salvador,Cosmetics,Offline,H,5/7/2013,151833045,5/9/2013,9627,437.20,263.33,4208924.40,2535077.91,1673846.49 Middle East and North Africa,Pakistan,Baby Food,Online,C,12/10/2010,287727487,1/5/2011,3812,255.28,159.42,973127.36,607709.04,365418.32 Asia,Thailand,Clothes,Offline,M,9/6/2013,627486979,9/30/2013,6196,109.28,35.84,677098.88,222064.64,455034.24 Europe,Liechtenstein,Baby Food,Online,C,1/9/2010,338347852,1/22/2010,3503,255.28,159.42,894245.84,558448.26,335797.58 Europe,Vatican City,Snacks,Offline,C,12/26/2015,457858932,2/8/2016,9487,152.58,97.44,1447526.46,924413.28,523113.18 Sub-Saharan Africa,South Sudan,Snacks,Offline,L,10/16/2010,743881547,11/18/2010,9935,152.58,97.44,1515882.30,968066.40,547815.90 Middle East and North Africa,Oman,Clothes,Offline,H,5/19/2016,124589526,6/20/2016,7664,109.28,35.84,837521.92,274677.76,562844.16 Middle East and North Africa,Kuwait,Cereal,Offline,M,4/26/2010,748469197,5/5/2010,7523,205.70,117.11,1547481.10,881018.53,666462.57 Sub-Saharan Africa,South Africa,Meat,Offline,H,11/19/2012,334319388,12/8/2012,1391,421.89,364.69,586848.99,507283.79,79565.20 Middle East and North Africa,Egypt,Fruits,Online,H,2/20/2015,721251428,3/24/2015,3180,9.33,6.92,29669.40,22005.60,7663.80 Europe,Macedonia,Beverages,Offline,L,12/26/2012,218689143,12/28/2012,3832,47.45,31.79,181828.40,121819.28,60009.12 Sub-Saharan Africa,Niger,Meat,Online,L,12/20/2010,356368863,12/21/2010,6321,421.89,364.69,2666766.69,2305205.49,361561.20 Asia,India,Office Supplies,Online,H,11/29/2010,934339416,1/5/2011,651,651.21,524.96,423937.71,341748.96,82188.75 Europe,Spain,Personal Care,Online,H,9/14/2015,472962129,10/15/2015,8859,81.73,56.67,724046.07,502039.53,222006.54 Asia,Uzbekistan,Vegetables,Online,C,5/12/2010,262910830,6/25/2010,12,154.06,90.93,1848.72,1091.16,757.56 Sub-Saharan Africa,Republic of the Congo,Vegetables,Online,H,4/8/2011,315171849,5/25/2011,5209,154.06,90.93,802498.54,473654.37,328844.17 Europe,Luxembourg,Household,Offline,C,12/4/2016,711044013,12/7/2016,2579,668.27,502.54,1723468.33,1296050.66,427417.67 Europe,Armenia,Baby Food,Offline,L,10/9/2011,252138650,11/16/2011,2284,255.28,159.42,583059.52,364115.28,218944.24 Sub-Saharan Africa,Kenya,Fruits,Offline,C,5/16/2015,510379588,5/29/2015,1517,9.33,6.92,14153.61,10497.64,3655.97 Middle East and North Africa,Tunisia ,Beverages,Offline,C,7/2/2010,878003156,7/6/2010,9500,47.45,31.79,450775.00,302005.00,148770.00 Europe,Malta,Personal Care,Online,M,1/28/2015,817558181,2/25/2015,2489,81.73,56.67,203425.97,141051.63,62374.34 Australia and Oceania,Australia,Clothes,Online,C,3/17/2010,311905992,3/28/2010,8769,109.28,35.84,958276.32,314280.96,643995.36 Sub-Saharan Africa,The Gambia,Baby Food,Online,L,2/28/2012,314220416,3/18/2012,3659,255.28,159.42,934069.52,583317.78,350751.74 Sub-Saharan Africa,Rwanda,Office Supplies,Offline,L,7/15/2015,497987782,8/17/2015,4506,651.21,524.96,2934352.26,2365469.76,568882.50 Europe,Russia,Office Supplies,Offline,L,3/21/2012,607006919,4/8/2012,5691,651.21,524.96,3706036.11,2987547.36,718488.75 Sub-Saharan Africa,Mozambique,Cereal,Offline,C,4/21/2010,905389153,4/28/2010,3625,205.70,117.11,745662.50,424523.75,321138.75 Europe,San Marino,Household,Offline,H,3/1/2015,827558314,3/21/2015,1750,668.27,502.54,1169472.50,879445.00,290027.50 Sub-Saharan Africa,Uganda,Baby Food,Offline,C,7/7/2010,328250730,8/14/2010,5540,255.28,159.42,1414251.20,883186.80,531064.40 Australia and Oceania,New Zealand,Fruits,Online,L,3/23/2015,332515227,4/23/2015,7500,9.33,6.92,69975.00,51900.00,18075.00 Europe,Kosovo,Cereal,Online,M,5/8/2011,485713136,6/13/2011,2165,205.70,117.11,445340.50,253543.15,191797.35 Europe,Estonia,Meat,Online,L,2/5/2016,503518283,2/27/2016,1104,421.89,364.69,465766.56,402617.76,63148.80 Sub-Saharan Africa,Niger,Baby Food,Online,C,6/12/2017,621916997,7/10/2017,7915,255.28,159.42,2020541.20,1261809.30,758731.90 Europe,Belarus,Office Supplies,Online,L,10/21/2015,247208106,11/15/2015,3227,651.21,524.96,2101454.67,1694045.92,407408.75 Asia,Indonesia,Cosmetics,Online,C,8/18/2012,206002938,8/20/2012,9702,437.20,263.33,4241714.40,2554827.66,1686886.74 Sub-Saharan Africa,Gabon,Clothes,Online,C,4/2/2014,495225322,5/7/2014,7033,109.28,35.84,768566.24,252062.72,516503.52 Asia,Japan,Personal Care,Online,M,11/25/2012,732111585,12/6/2012,6942,81.73,56.67,567369.66,393403.14,173966.52 Sub-Saharan Africa,Swaziland,Cereal,Offline,L,4/1/2013,604210555,4/9/2013,8185,205.70,117.11,1683654.50,958545.35,725109.15 Middle East and North Africa,Azerbaijan,Vegetables,Online,C,6/10/2013,319383561,6/26/2013,1548,154.06,90.93,238484.88,140759.64,97725.24 Asia,Tajikistan,Household,Online,H,6/28/2016,155804431,7/13/2016,4848,668.27,502.54,3239772.96,2436313.92,803459.04 Australia and Oceania,Fiji,Baby Food,Online,M,4/27/2011,911959493,6/11/2011,7934,255.28,159.42,2025391.52,1264838.28,760553.24 Asia,Uzbekistan,Meat,Online,M,6/4/2014,756647574,7/12/2014,7687,421.89,364.69,3243068.43,2803372.03,439696.40 Middle East and North Africa,Egypt,Beverages,Online,C,1/26/2013,178980004,3/2/2013,3015,47.45,31.79,143061.75,95846.85,47214.90 Sub-Saharan Africa,Senegal,Vegetables,Offline,H,7/13/2014,638380610,8/2/2014,9864,154.06,90.93,1519647.84,896933.52,622714.32 Sub-Saharan Africa,Zimbabwe,Office Supplies,Offline,M,12/26/2011,514585721,2/2/2012,6205,651.21,524.96,4040758.05,3257376.80,783381.25 Europe,Poland,Snacks,Online,H,1/16/2011,957644164,2/6/2011,7044,152.58,97.44,1074773.52,686367.36,388406.16 Europe,Russia,Cosmetics,Offline,L,10/23/2010,937917268,11/8/2010,9417,437.20,263.33,4117112.40,2479778.61,1637333.79 Europe,Germany,Cosmetics,Online,M,3/27/2015,396078860,4/5/2015,7391,437.20,263.33,3231345.20,1946272.03,1285073.17 Europe,Kosovo,Baby Food,Offline,C,3/11/2014,693115270,4/28/2014,7066,255.28,159.42,1803808.48,1126461.72,677346.76 Middle East and North Africa,Syria,Vegetables,Online,L,7/19/2017,560325324,8/5/2017,1570,154.06,90.93,241874.20,142760.10,99114.10 Europe,San Marino,Vegetables,Online,M,7/9/2013,149320352,7/27/2013,6065,154.06,90.93,934373.90,551490.45,382883.45 Asia,Japan,Fruits,Online,M,4/27/2010,582024180,6/6/2010,2744,9.33,6.92,25601.52,18988.48,6613.04 Sub-Saharan Africa,Guinea-Bissau,Cosmetics,Offline,L,3/24/2017,800673139,4/24/2017,5829,437.20,263.33,2548438.80,1534950.57,1013488.23 Sub-Saharan Africa,Zimbabwe,Fruits,Offline,M,7/3/2010,717816054,8/5/2010,6577,9.33,6.92,61363.41,45512.84,15850.57 Central America and the Caribbean,Dominica,Office Supplies,Online,C,12/1/2012,766314256,1/19/2013,8272,651.21,524.96,5386809.12,4342469.12,1044340.00 Europe,Belgium,Clothes,Online,M,3/23/2014,549341571,4/10/2014,1233,109.28,35.84,134742.24,44190.72,90551.52 Europe,Portugal,Beverages,Online,C,10/23/2012,190384328,12/9/2012,7808,47.45,31.79,370489.60,248216.32,122273.28 Sub-Saharan Africa,South Africa,Clothes,Online,H,12/3/2011,783241355,12/30/2011,7377,109.28,35.84,806158.56,264391.68,541766.88 Middle East and North Africa,Libya,Beverages,Online,M,11/13/2015,342023980,11/27/2015,1351,47.45,31.79,64104.95,42948.29,21156.66 North America,United States of America,Baby Food,Offline,L,2/1/2011,551156032,2/5/2011,8173,255.28,159.42,2086403.44,1302939.66,783463.78 Sub-Saharan Africa,Sierra Leone,Personal Care,Offline,L,5/18/2015,915373837,5/20/2015,8315,81.73,56.67,679584.95,471211.05,208373.90 Europe,Ukraine,Cereal,Online,H,7/9/2013,109726226,7/15/2013,9283,205.70,117.11,1909513.10,1087132.13,822380.97 Sub-Saharan Africa,Ethiopia,Snacks,Online,L,2/1/2014,929574525,2/26/2014,614,152.58,97.44,93684.12,59828.16,33855.96 Middle East and North Africa,Kuwait,Fruits,Online,C,5/8/2015,840592563,5/12/2015,8874,9.33,6.92,82794.42,61408.08,21386.34 Europe,Kosovo,Vegetables,Offline,L,8/23/2016,528766667,8/29/2016,2662,154.06,90.93,410107.72,242055.66,168052.06 Middle East and North Africa,United Arab Emirates,Meat,Offline,C,8/3/2014,750395667,9/2/2014,7608,421.89,364.69,3209739.12,2774561.52,435177.60 Central America and the Caribbean,Haiti,Meat,Offline,H,6/9/2014,982090890,7/16/2014,1373,421.89,364.69,579254.97,500719.37,78535.60 Central America and the Caribbean,Saint Kitts and Nevis ,Personal Care,Online,M,2/25/2011,770776164,3/24/2011,8650,81.73,56.67,706964.50,490195.50,216769.00 Europe,Netherlands,Meat,Offline,M,11/25/2015,183687818,12/10/2015,6162,421.89,364.69,2599686.18,2247219.78,352466.40 Europe,Switzerland,Cosmetics,Offline,H,6/1/2014,258374679,6/4/2014,7664,437.20,263.33,3350700.80,2018161.12,1332539.68 Middle East and North Africa,Libya,Cosmetics,Offline,L,3/17/2016,752698075,3/24/2016,8942,437.20,263.33,3909442.40,2354696.86,1554745.54 Europe,Belarus,Vegetables,Offline,C,12/6/2012,594831836,1/5/2013,2814,154.06,90.93,433524.84,255877.02,177647.82 Europe,Monaco,Cosmetics,Offline,L,6/9/2012,133262288,7/17/2012,4127,437.20,263.33,1804324.40,1086762.91,717561.49 Sub-Saharan Africa,Botswana,Fruits,Offline,M,4/16/2012,686788260,5/24/2012,4763,9.33,6.92,44438.79,32959.96,11478.83 Australia and Oceania,Kiribati,Beverages,Online,H,2/14/2011,494521081,4/1/2011,8632,47.45,31.79,409588.40,274411.28,135177.12 Central America and the Caribbean,Barbados,Household,Online,L,5/28/2012,565884578,6/18/2012,6677,668.27,502.54,4462038.79,3355459.58,1106579.21 Sub-Saharan Africa,Ghana,Personal Care,Offline,M,2/12/2013,630615079,3/16/2013,1870,81.73,56.67,152835.10,105972.90,46862.20 Middle East and North Africa,Afghanistan,Cereal,Offline,L,1/30/2015,488761413,3/9/2015,4218,205.70,117.11,867642.60,493969.98,373672.62 Middle East and North Africa,Morocco,Cereal,Online,L,8/10/2013,460684907,8/19/2013,5756,205.70,117.11,1184009.20,674085.16,509924.04 Sub-Saharan Africa,Sao Tome and Principe,Clothes,Online,M,6/9/2016,937059390,6/16/2016,5552,109.28,35.84,606722.56,198983.68,407738.88 Sub-Saharan Africa,Niger,Baby Food,Offline,L,3/26/2017,128871190,3/30/2017,4704,255.28,159.42,1200837.12,749911.68,450925.44 Europe,Finland,Snacks,Online,M,7/1/2014,817419135,7/13/2014,1342,152.58,97.44,204762.36,130764.48,73997.88 Europe,Monaco,Snacks,Online,M,5/21/2015,904314553,5/27/2015,5627,152.58,97.44,858567.66,548294.88,310272.78 Central America and the Caribbean,The Bahamas,Beverages,Online,L,9/29/2016,161481273,11/16/2016,4752,47.45,31.79,225482.40,151066.08,74416.32 Asia,Kyrgyzstan,Household,Online,L,6/30/2016,681155622,7/14/2016,7940,668.27,502.54,5306063.80,3990167.60,1315896.20 Sub-Saharan Africa,Botswana,Household,Offline,M,5/30/2017,125886428,6/19/2017,1446,668.27,502.54,966318.42,726672.84,239645.58 Asia,Cambodia,Office Supplies,Online,H,9/30/2015,278535020,11/13/2015,3557,651.21,524.96,2316353.97,1867282.72,449071.25 Asia,Singapore,Vegetables,Offline,H,8/13/2012,292275226,10/2/2012,9589,154.06,90.93,1477281.34,871927.77,605353.57 Sub-Saharan Africa,Rwanda,Clothes,Offline,M,3/15/2010,740593373,4/2/2010,6892,109.28,35.84,753157.76,247009.28,506148.48 North America,Greenland,Beverages,Online,L,7/13/2015,467288291,7/31/2015,9844,47.45,31.79,467097.80,312940.76,154157.04 Europe,Germany,Baby Food,Offline,H,12/23/2013,636471307,1/21/2014,4858,255.28,159.42,1240150.24,774462.36,465687.88 Sub-Saharan Africa,Swaziland,Fruits,Offline,C,12/1/2010,682566249,12/21/2010,5376,9.33,6.92,50158.08,37201.92,12956.16 Central America and the Caribbean,El Salvador,Office Supplies,Online,L,10/13/2012,560309445,11/7/2012,6871,651.21,524.96,4474463.91,3607000.16,867463.75 Europe,Finland,Clothes,Offline,H,9/22/2015,294749724,10/6/2015,1848,109.28,35.84,201949.44,66232.32,135717.12 Sub-Saharan Africa,Sierra Leone,Beverages,Online,M,12/10/2016,431248414,12/31/2016,4844,47.45,31.79,229847.80,153990.76,75857.04 Europe,Croatia,Clothes,Online,C,12/7/2010,685479342,12/25/2010,7425,109.28,35.84,811404.00,266112.00,545292.00 Sub-Saharan Africa,Democratic Republic of the Congo,Baby Food,Offline,C,12/16/2015,393428838,1/28/2016,3191,255.28,159.42,814598.48,508709.22,305889.26 Europe,Slovenia,Vegetables,Online,H,4/12/2017,761395728,4/28/2017,2771,154.06,90.93,426900.26,251967.03,174933.23 Australia and Oceania,Nauru,Fruits,Offline,L,5/12/2016,815991342,6/8/2016,8826,9.33,6.92,82346.58,61075.92,21270.66 Sub-Saharan Africa,Madagascar,Fruits,Offline,M,12/16/2011,554139506,12/17/2011,1049,9.33,6.92,9787.17,7259.08,2528.09 Central America and the Caribbean,Honduras,Household,Online,L,6/11/2011,493076550,7/8/2011,1163,668.27,502.54,777198.01,584454.02,192743.99 Europe,Liechtenstein,Baby Food,Offline,M,11/30/2011,320351302,1/1/2012,7924,255.28,159.42,2022838.72,1263244.08,759594.64 Asia,Cambodia,Fruits,Online,M,7/11/2011,243825089,7/16/2011,2117,9.33,6.92,19751.61,14649.64,5101.97 Sub-Saharan Africa,Djibouti,Snacks,Offline,M,4/11/2013,541671741,5/8/2013,1560,152.58,97.44,238024.80,152006.40,86018.40 Sub-Saharan Africa,Central African Republic,Household,Online,M,9/4/2013,212377583,10/12/2013,6101,668.27,502.54,4077115.27,3065996.54,1011118.73 Europe,Romania,Snacks,Online,H,1/24/2014,124741446,2/12/2014,2621,152.58,97.44,399912.18,255390.24,144521.94 Europe,Russia,Cosmetics,Offline,M,11/11/2016,767874658,11/24/2016,30,437.20,263.33,13116.00,7899.90,5216.10 North America,Canada,Clothes,Online,L,3/10/2014,901201045,3/13/2014,4271,109.28,35.84,466734.88,153072.64,313662.24 Europe,Iceland,Cereal,Online,L,5/16/2014,704456937,6/18/2014,3317,205.70,117.11,682306.90,388453.87,293853.03 Asia,Singapore,Cereal,Online,M,6/13/2015,427691161,7/19/2015,2174,205.70,117.11,447191.80,254597.14,192594.66 Sub-Saharan Africa,Republic of the Congo,Fruits,Online,C,7/10/2016,841265046,7/19/2016,7877,9.33,6.92,73492.41,54508.84,18983.57 Central America and the Caribbean,Grenada,Fruits,Online,M,12/22/2013,985852420,1/29/2014,4494,9.33,6.92,41929.02,31098.48,10830.54 Asia,Kazakhstan,Vegetables,Online,C,10/26/2012,422439610,11/14/2012,8123,154.06,90.93,1251429.38,738624.39,512804.99 Sub-Saharan Africa,Comoros,Cereal,Offline,C,5/10/2015,582325446,6/19/2015,1895,205.70,117.11,389801.50,221923.45,167878.05 Middle East and North Africa,Azerbaijan,Household,Offline,L,5/15/2017,717121255,5/15/2017,970,668.27,502.54,648221.90,487463.80,160758.10 Europe,France,Meat,Online,L,12/6/2011,148750865,1/13/2012,7541,421.89,364.69,3181472.49,2750127.29,431345.20 Asia,Taiwan,Meat,Offline,H,11/20/2015,519450604,11/24/2015,5832,421.89,364.69,2460462.48,2126872.08,333590.40 Sub-Saharan Africa,Cape Verde,Beverages,Offline,H,1/27/2013,841769301,3/7/2013,7097,47.45,31.79,336752.65,225613.63,111139.02 Middle East and North Africa,Morocco,Household,Online,L,2/13/2011,648568284,3/30/2011,4623,668.27,502.54,3089412.21,2323242.42,766169.79 Middle East and North Africa,Iran,Clothes,Online,L,12/1/2014,443021380,12/13/2014,8726,109.28,35.84,953577.28,312739.84,640837.44 Australia and Oceania,Vanuatu,Snacks,Online,H,4/15/2015,348614919,6/2/2015,1756,152.58,97.44,267930.48,171104.64,96825.84 Europe,Romania,Beverages,Offline,C,6/21/2015,559147727,8/1/2015,3093,47.45,31.79,146762.85,98326.47,48436.38 Europe,Albania,Office Supplies,Online,H,3/15/2012,888731133,3/15/2012,4147,651.21,524.96,2700567.87,2177009.12,523558.75 Europe,Slovenia,Fruits,Online,C,8/25/2014,321788966,9/13/2014,3361,9.33,6.92,31358.13,23258.12,8100.01 Asia,Nepal,Personal Care,Offline,H,4/23/2010,163057553,4/27/2010,1208,81.73,56.67,98729.84,68457.36,30272.48 Europe,Moldova ,Cosmetics,Offline,H,4/4/2014,887585723,4/7/2014,5194,437.20,263.33,2270816.80,1367736.02,903080.78 Sub-Saharan Africa,Gabon,Fruits,Online,H,5/6/2012,790734803,5/30/2012,4855,9.33,6.92,45297.15,33596.60,11700.55 Sub-Saharan Africa,Chad,Cereal,Offline,C,6/3/2010,938178622,6/17/2010,6758,205.70,117.11,1390120.60,791429.38,598691.22 Sub-Saharan Africa,Mali,Baby Food,Online,H,5/23/2015,215903508,6/27/2015,9501,255.28,159.42,2425415.28,1514649.42,910765.86 Australia and Oceania,Tuvalu,Baby Food,Offline,C,4/20/2016,280208289,5/25/2016,8714,255.28,159.42,2224509.92,1389185.88,835324.04 Asia,Kyrgyzstan,Fruits,Offline,L,11/1/2010,607704293,11/26/2010,2060,9.33,6.92,19219.80,14255.20,4964.60 Middle East and North Africa,Oman,Household,Online,M,8/31/2016,745315349,9/8/2016,4229,668.27,502.54,2826113.83,2125241.66,700872.17 Central America and the Caribbean,Antigua and Barbuda ,Cosmetics,Offline,H,9/5/2014,760277783,10/21/2014,1946,437.20,263.33,850791.20,512440.18,338351.02 Central America and the Caribbean,The Bahamas,Personal Care,Online,L,4/26/2013,790140426,6/7/2013,8965,81.73,56.67,732709.45,508046.55,224662.90 Central America and the Caribbean,El Salvador,Household,Online,L,7/12/2014,592764604,7/22/2014,1074,668.27,502.54,717721.98,539727.96,177994.02 Europe,Monaco,Cereal,Online,L,7/12/2017,896324145,7/18/2017,1088,205.70,117.11,223801.60,127415.68,96385.92 Sub-Saharan Africa,Djibouti,Office Supplies,Offline,M,1/12/2015,249305379,2/27/2015,3857,651.21,524.96,2511716.97,2024770.72,486946.25 North America,Canada,Cosmetics,Offline,L,3/3/2012,870507133,4/5/2012,1260,437.20,263.33,550872.00,331795.80,219076.20 Sub-Saharan Africa,Guinea,Clothes,Offline,M,2/24/2015,999040734,4/4/2015,7209,109.28,35.84,787799.52,258370.56,529428.96 Sub-Saharan Africa,Guinea,Household,Online,L,4/19/2012,744330012,5/6/2012,2646,668.27,502.54,1768242.42,1329720.84,438521.58 Sub-Saharan Africa,Gabon,Beverages,Offline,M,9/28/2015,736111295,11/8/2015,545,47.45,31.79,25860.25,17325.55,8534.70 Europe,Czech Republic,Beverages,Online,L,2/24/2012,774433410,3/11/2012,910,47.45,31.79,43179.50,28928.90,14250.60 Australia and Oceania,Tonga,Clothes,Offline,M,12/26/2011,279657685,1/11/2012,5779,109.28,35.84,631529.12,207119.36,424409.76 Central America and the Caribbean,Jamaica,Office Supplies,Offline,H,6/1/2015,542457950,7/21/2015,4217,651.21,524.96,2746152.57,2213756.32,532396.25 Asia,Cambodia,Beverages,Online,L,2/6/2016,673820531,3/18/2016,7324,47.45,31.79,347523.80,232829.96,114693.84 Europe,Finland,Cosmetics,Online,H,7/17/2012,755044257,9/5/2012,3229,437.20,263.33,1411718.80,850292.57,561426.23 Central America and the Caribbean,Saint Vincent and the Grenadines,Snacks,Offline,H,11/25/2011,487740457,11/26/2011,2095,152.58,97.44,319655.10,204136.80,115518.30 Europe,Liechtenstein,Snacks,Offline,L,1/7/2011,543832957,1/17/2011,1112,152.58,97.44,169668.96,108353.28,61315.68 Australia and Oceania,Kiribati,Household,Online,C,5/24/2015,315558087,5/25/2015,9505,668.27,502.54,6351906.35,4776642.70,1575263.65 Australia and Oceania,Tonga,Baby Food,Online,L,8/23/2012,165464675,10/2/2012,3529,255.28,159.42,900883.12,562593.18,338289.94 Middle East and North Africa,Egypt,Fruits,Offline,L,3/8/2014,976414048,3/11/2014,1470,9.33,6.92,13715.10,10172.40,3542.70 Europe,Ukraine,Beverages,Online,C,7/18/2013,101580035,7/25/2013,8645,47.45,31.79,410205.25,274824.55,135380.70 Sub-Saharan Africa,Zambia,Fruits,Online,M,11/29/2012,814448964,1/1/2013,2402,9.33,6.92,22410.66,16621.84,5788.82 Sub-Saharan Africa,Angola,Household,Online,C,9/28/2011,158819663,11/13/2011,7122,668.27,502.54,4759418.94,3579089.88,1180329.06 Australia and Oceania,Nauru,Cosmetics,Online,L,7/20/2010,198803460,8/17/2010,9217,437.20,263.33,4029672.40,2427112.61,1602559.79 Europe,Greece,Baby Food,Online,C,9/18/2014,368824183,11/7/2014,2127,255.28,159.42,542980.56,339086.34,203894.22 Europe,Georgia,Cereal,Online,H,7/11/2015,623618161,8/22/2015,1327,205.70,117.11,272963.90,155404.97,117558.93 Sub-Saharan Africa,Lesotho,Office Supplies,Offline,C,9/11/2016,988234221,10/6/2016,9322,651.21,524.96,6070579.62,4893677.12,1176902.50 Europe,Lithuania,Snacks,Online,M,6/10/2015,208033692,7/15/2015,647,152.58,97.44,98719.26,63043.68,35675.58 Europe,Germany,Fruits,Offline,L,10/24/2013,698690402,12/6/2013,6871,9.33,6.92,64106.43,47547.32,16559.11 Sub-Saharan Africa,Benin,Cosmetics,Online,C,12/10/2014,896190679,1/14/2015,1592,437.20,263.33,696022.40,419221.36,276801.04 Sub-Saharan Africa,Gabon,Meat,Online,L,8/28/2011,206833350,10/2/2011,5439,421.89,364.69,2294659.71,1983548.91,311110.80 Australia and Oceania,Fiji,Meat,Offline,C,12/29/2012,357229745,1/28/2013,1075,421.89,364.69,453531.75,392041.75,61490.00 Sub-Saharan Africa,Uganda,Beverages,Offline,M,2/18/2010,444303691,4/6/2010,8190,47.45,31.79,388615.50,260360.10,128255.40 Middle East and North Africa,Turkey,Beverages,Online,H,6/16/2010,985291516,7/8/2010,8510,47.45,31.79,403799.50,270532.90,133266.60 Australia and Oceania,Solomon Islands,Cereal,Offline,M,1/20/2011,767742049,2/23/2011,788,205.70,117.11,162091.60,92282.68,69808.92 Australia and Oceania,Kiribati,Vegetables,Offline,M,1/29/2010,899516618,2/21/2010,5811,154.06,90.93,895242.66,528394.23,366848.43 Europe,Lithuania,Cosmetics,Offline,C,7/16/2010,758789050,8/2/2010,1397,437.20,263.33,610768.40,367872.01,242896.39 North America,Canada,Meat,Offline,L,7/3/2016,244045674,7/12/2016,7393,421.89,364.69,3119032.77,2696153.17,422879.60 Sub-Saharan Africa,Seychelles ,Vegetables,Offline,H,3/7/2014,224085319,4/5/2014,680,154.06,90.93,104760.80,61832.40,42928.40 Sub-Saharan Africa,Niger,Household,Online,M,7/21/2013,288019311,8/10/2013,169,668.27,502.54,112937.63,84929.26,28008.37 Europe,Albania,Vegetables,Offline,M,4/26/2014,995271480,5/10/2014,1803,154.06,90.93,277770.18,163946.79,113823.39 Sub-Saharan Africa,Tanzania,Baby Food,Offline,M,3/25/2017,725578153,3/31/2017,3554,255.28,159.42,907265.12,566578.68,340686.44 Sub-Saharan Africa,Mauritania,Personal Care,Offline,C,10/2/2012,628988158,10/31/2012,428,81.73,56.67,34980.44,24254.76,10725.68 Asia,Cambodia,Meat,Offline,M,2/20/2015,575862824,3/22/2015,9462,421.89,364.69,3991923.18,3450696.78,541226.40 Sub-Saharan Africa,Zambia,Meat,Online,C,3/10/2013,506875979,4/23/2013,4721,421.89,364.69,1991742.69,1721701.49,270041.20 Sub-Saharan Africa,The Gambia,Snacks,Offline,M,12/3/2011,883013951,12/22/2011,2306,152.58,97.44,351849.48,224696.64,127152.84 Middle East and North Africa,Saudi Arabia,Baby Food,Online,M,8/21/2013,435575568,10/1/2013,5345,255.28,159.42,1364471.60,852099.90,512371.70 Sub-Saharan Africa,Uganda,Fruits,Online,H,2/13/2014,216172158,2/23/2014,9000,9.33,6.92,83970.00,62280.00,21690.00 Sub-Saharan Africa,Democratic Republic of the Congo,Beverages,Offline,M,1/5/2014,446727550,1/20/2014,5464,47.45,31.79,259266.80,173700.56,85566.24 Europe,United Kingdom,Cereal,Offline,C,1/7/2015,969478070,1/13/2015,8960,205.70,117.11,1843072.00,1049305.60,793766.40 North America,Greenland,Snacks,Online,H,2/13/2016,796972548,3/7/2016,742,152.58,97.44,113214.36,72300.48,40913.88 Sub-Saharan Africa,Togo,Cereal,Online,C,5/13/2017,362072312,6/1/2017,4098,205.70,117.11,842958.60,479916.78,363041.82 Asia,Taiwan,Beverages,Offline,C,1/30/2016,167951190,3/5/2016,9344,47.45,31.79,443372.80,297045.76,146327.04 Central America and the Caribbean,Dominican Republic,Baby Food,Online,C,8/29/2010,338095510,9/23/2010,8829,255.28,159.42,2253867.12,1407519.18,846347.94 Asia,Thailand,Fruits,Offline,L,12/2/2011,166304099,1/4/2012,1933,9.33,6.92,18034.89,13376.36,4658.53 Europe,Liechtenstein,Cosmetics,Online,M,8/2/2016,366688287,8/15/2016,68,437.20,263.33,29729.60,17906.44,11823.16 Europe,Spain,Personal Care,Online,M,2/10/2011,823671901,2/22/2011,1674,81.73,56.67,136816.02,94865.58,41950.44 Europe,Ireland,Snacks,Online,H,4/14/2013,141991269,5/19/2013,7227,152.58,97.44,1102695.66,704198.88,398496.78 Europe,Lithuania,Meat,Online,M,6/20/2015,596695220,7/19/2015,4230,421.89,364.69,1784594.70,1542638.70,241956.00 Sub-Saharan Africa,Mozambique,Clothes,Online,H,1/29/2011,483145081,1/31/2011,2221,109.28,35.84,242710.88,79600.64,163110.24 Europe,Andorra,Cosmetics,Offline,H,7/16/2013,867014682,7/19/2013,7766,437.20,263.33,3395295.20,2045020.78,1350274.42 Europe,Austria,Clothes,Offline,H,8/12/2014,634290349,9/23/2014,9464,109.28,35.84,1034225.92,339189.76,695036.16 Sub-Saharan Africa,Lesotho,Clothes,Offline,M,11/30/2010,541270911,12/17/2010,2946,109.28,35.84,321938.88,105584.64,216354.24 Central America and the Caribbean,Belize,Cereal,Online,L,4/11/2015,964567697,5/24/2015,5871,205.70,117.11,1207664.70,687552.81,520111.89 Sub-Saharan Africa,Senegal,Beverages,Online,C,1/30/2015,551104533,2/16/2015,2933,47.45,31.79,139170.85,93240.07,45930.78 Sub-Saharan Africa,Cote d'Ivoire,Baby Food,Online,M,12/5/2013,268117749,12/9/2013,855,255.28,159.42,218264.40,136304.10,81960.30 Sub-Saharan Africa,Benin,Fruits,Online,M,9/10/2012,253156173,9/18/2012,3392,9.33,6.92,31647.36,23472.64,8174.72 Asia,North Korea,Vegetables,Offline,H,4/27/2013,264081132,6/8/2013,6330,154.06,90.93,975199.80,575586.90,399612.90 Central America and the Caribbean,Saint Kitts and Nevis ,Cereal,Offline,C,1/10/2015,129066455,1/20/2015,2487,205.70,117.11,511575.90,291252.57,220323.33 Asia,Nepal,Snacks,Offline,H,7/11/2010,196598470,8/11/2010,6711,152.58,97.44,1023964.38,653919.84,370044.54 Europe,Poland,Vegetables,Online,M,7/10/2012,885476005,7/17/2012,882,154.06,90.93,135880.92,80200.26,55680.66 Sub-Saharan Africa,Angola,Snacks,Offline,C,1/29/2012,434810388,2/7/2012,8911,152.58,97.44,1359640.38,868287.84,491352.54 Asia,Japan,Clothes,Offline,H,9/1/2012,754025447,10/14/2012,1741,109.28,35.84,190256.48,62397.44,127859.04 Sub-Saharan Africa,Mali,Office Supplies,Online,L,4/7/2011,672857511,5/5/2011,2345,651.21,524.96,1527087.45,1231031.20,296056.25 Central America and the Caribbean,Barbados,Baby Food,Online,C,4/7/2017,891355407,5/1/2017,728,255.28,159.42,185843.84,116057.76,69786.08 Sub-Saharan Africa,Mozambique,Personal Care,Online,L,11/2/2010,829880464,11/3/2010,8926,81.73,56.67,729521.98,505836.42,223685.56 Europe,Portugal,Vegetables,Online,M,11/12/2014,879106509,12/2/2014,6007,154.06,90.93,925438.42,546216.51,379221.91 Middle East and North Africa,United Arab Emirates,Baby Food,Online,L,6/9/2015,150019872,6/13/2015,3069,255.28,159.42,783454.32,489259.98,294194.34 Europe,Latvia,Household,Offline,M,1/23/2011,523919379,2/6/2011,8242,668.27,502.54,5507881.34,4141934.68,1365946.66 Australia and Oceania,East Timor,Baby Food,Offline,M,6/17/2016,802416360,7/13/2016,1687,255.28,159.42,430657.36,268941.54,161715.82 Europe,Bosnia and Herzegovina,Snacks,Offline,C,5/4/2013,757434642,5/5/2013,597,152.58,97.44,91090.26,58171.68,32918.58 Sub-Saharan Africa,South Africa,Clothes,Offline,M,10/5/2014,681210553,10/22/2014,4196,109.28,35.84,458538.88,150384.64,308154.24 Europe,Germany,Office Supplies,Offline,M,12/5/2015,936292922,1/12/2016,8737,651.21,524.96,5689621.77,4586575.52,1103046.25 Europe,Kosovo,Fruits,Offline,M,2/3/2013,605543076,3/17/2013,2508,9.33,6.92,23399.64,17355.36,6044.28 Australia and Oceania,Solomon Islands,Household,Offline,C,12/13/2014,642134845,1/27/2015,825,668.27,502.54,551322.75,414595.50,136727.25 Asia,Japan,Baby Food,Offline,L,2/6/2016,719554555,3/2/2016,1038,255.28,159.42,264980.64,165477.96,99502.68 Sub-Saharan Africa,Senegal,Personal Care,Online,M,12/31/2015,581601035,1/2/2016,7526,81.73,56.67,615099.98,426498.42,188601.56 Central America and the Caribbean,Honduras,Meat,Online,L,3/4/2015,492385613,3/10/2015,6700,421.89,364.69,2826663.00,2443423.00,383240.00 Sub-Saharan Africa,Togo,Beverages,Offline,H,5/31/2011,786332118,6/6/2011,2003,47.45,31.79,95042.35,63675.37,31366.98 Middle East and North Africa,Egypt,Snacks,Online,L,3/2/2011,518176877,4/7/2011,8908,152.58,97.44,1359182.64,867995.52,491187.12 Europe,Belarus,Fruits,Online,C,7/28/2010,612968719,8/11/2010,9920,9.33,6.92,92553.60,68646.40,23907.20 Asia,Bhutan,Baby Food,Offline,C,5/30/2014,716068971,6/26/2014,9576,255.28,159.42,2444561.28,1526605.92,917955.36 Europe,Portugal,Beverages,Offline,L,3/3/2017,543151462,4/18/2017,9442,47.45,31.79,448022.90,300161.18,147861.72 Sub-Saharan Africa,Burkina Faso,Personal Care,Online,M,5/26/2014,330202519,5/31/2014,3118,81.73,56.67,254834.14,176697.06,78137.08 Asia,Maldives,Snacks,Online,L,1/29/2014,383520972,3/2/2014,1233,152.58,97.44,188131.14,120143.52,67987.62 Australia and Oceania,Samoa ,Baby Food,Online,L,2/6/2010,629718148,2/17/2010,6449,255.28,159.42,1646300.72,1028099.58,618201.14 Asia,Malaysia,Clothes,Online,M,5/11/2016,165717875,5/30/2016,8457,109.28,35.84,924180.96,303098.88,621082.08 Australia and Oceania,New Zealand,Office Supplies,Offline,C,7/8/2017,408756482,8/22/2017,8981,651.21,524.96,5848517.01,4714665.76,1133851.25 Central America and the Caribbean,Honduras,Vegetables,Offline,C,9/1/2010,146382796,9/15/2010,6777,154.06,90.93,1044064.62,616232.61,427832.01 Australia and Oceania,East Timor,Household,Offline,M,9/5/2016,486458146,9/23/2016,2630,668.27,502.54,1757550.10,1321680.20,435869.90 Asia,Vietnam,Clothes,Offline,L,11/6/2015,807156360,12/12/2015,4358,109.28,35.84,476242.24,156190.72,320051.52 Europe,Malta,Meat,Offline,H,3/27/2012,106963765,4/5/2012,1810,421.89,364.69,763620.90,660088.90,103532.00 Europe,Cyprus,Cereal,Offline,L,10/8/2014,154679191,10/25/2014,1865,205.70,117.11,383630.50,218410.15,165220.35 Middle East and North Africa,United Arab Emirates,Fruits,Online,L,9/20/2010,539413964,9/24/2010,3434,9.33,6.92,32039.22,23763.28,8275.94 Asia,Malaysia,Cereal,Online,M,12/3/2014,920591914,12/6/2014,2460,205.70,117.11,506022.00,288090.60,217931.40 Europe,San Marino,Cereal,Online,M,12/27/2012,577949368,1/3/2013,6916,205.70,117.11,1422621.20,809932.76,612688.44 Central America and the Caribbean,Dominica,Fruits,Offline,L,7/14/2010,661535155,7/14/2010,1808,9.33,6.92,16868.64,12511.36,4357.28 Europe,Italy,Baby Food,Online,H,3/24/2014,141710603,4/22/2014,4171,255.28,159.42,1064772.88,664940.82,399832.06 Europe,Andorra,Beverages,Online,L,11/15/2012,759149539,12/14/2012,8073,47.45,31.79,383063.85,256640.67,126423.18 North America,Canada,Meat,Offline,H,7/1/2011,274838292,8/17/2011,9613,421.89,364.69,4055628.57,3505764.97,549863.60 Sub-Saharan Africa,Mozambique,Cereal,Offline,H,5/23/2012,120075690,6/12/2012,1920,205.70,117.11,394944.00,224851.20,170092.80 Sub-Saharan Africa,Republic of the Congo,Baby Food,Offline,C,5/6/2011,446473062,6/24/2011,155,255.28,159.42,39568.40,24710.10,14858.30 Middle East and North Africa,Algeria,Personal Care,Offline,M,7/26/2016,575954234,8/15/2016,6512,81.73,56.67,532225.76,369035.04,163190.72 Australia and Oceania,Tonga,Snacks,Offline,H,8/16/2014,350755536,9/21/2014,5213,152.58,97.44,795399.54,507954.72,287444.82 Europe,Netherlands,Snacks,Offline,M,1/24/2012,583425796,2/28/2012,7513,152.58,97.44,1146333.54,732066.72,414266.82 Central America and the Caribbean,Saint Vincent and the Grenadines,Household,Online,M,7/6/2016,806826341,7/27/2016,6699,668.27,502.54,4476740.73,3366515.46,1110225.27 Asia,Taiwan,Fruits,Offline,L,2/23/2010,624131000,3/31/2010,3087,9.33,6.92,28801.71,21362.04,7439.67 Middle East and North Africa,Tunisia ,Vegetables,Online,C,1/30/2014,158826100,3/3/2014,9027,154.06,90.93,1390699.62,820825.11,569874.51 Sub-Saharan Africa,Sao Tome and Principe,Clothes,Online,C,5/30/2016,504710471,6/2/2016,3899,109.28,35.84,426082.72,139740.16,286342.56 Central America and the Caribbean,El Salvador,Cereal,Online,C,11/14/2013,575895440,11/19/2013,9113,205.70,117.11,1874544.10,1067223.43,807320.67 Central America and the Caribbean,Barbados,Cereal,Offline,M,8/15/2015,256804835,9/17/2015,3112,205.70,117.11,640138.40,364446.32,275692.08 Sub-Saharan Africa,Djibouti,Cosmetics,Offline,M,9/26/2016,852174985,11/8/2016,6370,437.20,263.33,2784964.00,1677412.10,1107551.90 Europe,Netherlands,Beverages,Offline,H,2/24/2017,137054717,3/28/2017,6391,47.45,31.79,303252.95,203169.89,100083.06 Australia and Oceania,New Zealand,Meat,Online,H,4/14/2010,906805360,4/22/2010,2712,421.89,364.69,1144165.68,989039.28,155126.40 Sub-Saharan Africa,Zambia,Office Supplies,Offline,L,2/17/2017,627100741,3/9/2017,1900,651.21,524.96,1237299.00,997424.00,239875.00 Sub-Saharan Africa,Namibia,Clothes,Offline,H,4/22/2014,883927190,5/19/2014,2553,109.28,35.84,278991.84,91499.52,187492.32 Central America and the Caribbean,Saint Kitts and Nevis ,Household,Offline,C,7/29/2013,633583533,8/27/2013,302,668.27,502.54,201817.54,151767.08,50050.46 Middle East and North Africa,Afghanistan,Cosmetics,Offline,C,8/13/2012,252681100,9/20/2012,2807,437.20,263.33,1227220.40,739167.31,488053.09 Central America and the Caribbean,Antigua and Barbuda ,Office Supplies,Offline,L,12/20/2013,188143718,12/23/2013,4762,651.21,524.96,3101062.02,2499859.52,601202.50 Australia and Oceania,New Zealand,Cereal,Offline,C,8/26/2013,507207715,10/7/2013,2889,205.70,117.11,594267.30,338330.79,255936.51 Sub-Saharan Africa,Niger,Cosmetics,Offline,M,7/17/2012,447421920,7/19/2012,944,437.20,263.33,412716.80,248583.52,164133.28 Central America and the Caribbean,Barbados,Fruits,Online,C,8/2/2012,666647660,8/3/2012,4712,9.33,6.92,43962.96,32607.04,11355.92 Sub-Saharan Africa,Zambia,Cosmetics,Online,M,12/30/2012,993058764,2/12/2013,7011,437.20,263.33,3065209.20,1846206.63,1219002.57 Europe,United Kingdom,Office Supplies,Offline,M,1/24/2014,875141561,3/10/2014,2690,651.21,524.96,1751754.90,1412142.40,339612.50 Europe,Netherlands,Personal Care,Online,L,5/7/2013,731694877,5/16/2013,3629,81.73,56.67,296598.17,205655.43,90942.74 Central America and the Caribbean,Honduras,Baby Food,Online,L,1/19/2017,601830041,1/26/2017,3738,255.28,159.42,954236.64,595911.96,358324.68 Europe,Iceland,Cosmetics,Offline,L,7/5/2013,594970881,8/20/2013,3960,437.20,263.33,1731312.00,1042786.80,688525.20 Australia and Oceania,Australia,Cereal,Online,H,11/1/2014,440853726,12/15/2014,7269,205.70,117.11,1495233.30,851272.59,643960.71 Sub-Saharan Africa,South Africa,Fruits,Online,M,4/13/2015,839527404,4/21/2015,3670,9.33,6.92,34241.10,25396.40,8844.70 Sub-Saharan Africa,Democratic Republic of the Congo,Household,Online,H,2/28/2010,311353242,3/14/2010,5198,668.27,502.54,3473667.46,2612202.92,861464.54 Europe,Germany,Vegetables,Online,C,10/15/2014,147005069,11/3/2014,921,154.06,90.93,141889.26,83746.53,58142.73 Central America and the Caribbean,Belize,Fruits,Online,H,4/2/2015,357469213,5/19/2015,1939,9.33,6.92,18090.87,13417.88,4672.99 Europe,Ukraine,Vegetables,Offline,C,1/20/2010,124044501,1/27/2010,6379,154.06,90.93,982748.74,580042.47,402706.27 Middle East and North Africa,Yemen,Vegetables,Offline,C,12/2/2013,948342263,12/30/2013,4405,154.06,90.93,678634.30,400546.65,278087.65 Europe,Albania,Cereal,Offline,L,2/18/2016,802286326,3/10/2016,3207,205.70,117.11,659679.90,375571.77,284108.13 Sub-Saharan Africa,Sierra Leone,Cereal,Offline,H,8/9/2014,878113019,8/20/2014,2011,205.70,117.11,413662.70,235508.21,178154.49 Sub-Saharan Africa,Madagascar,Cereal,Offline,H,2/9/2012,638371169,2/23/2012,7070,205.70,117.11,1454299.00,827967.70,626331.30 Sub-Saharan Africa,Botswana,Office Supplies,Online,L,6/23/2012,965922105,7/1/2012,6671,651.21,524.96,4344221.91,3502008.16,842213.75 Europe,Ukraine,Personal Care,Online,H,10/28/2016,113939654,11/6/2016,6131,81.73,56.67,501086.63,347443.77,153642.86 Middle East and North Africa,Qatar,Beverages,Online,M,3/8/2012,455910146,4/23/2012,2798,47.45,31.79,132765.10,88948.42,43816.68 Asia,Sri Lanka,Household,Offline,M,2/26/2013,835632407,4/4/2013,1054,668.27,502.54,704356.58,529677.16,174679.42 Europe,Estonia,Baby Food,Offline,L,9/9/2012,617217767,9/21/2012,7308,255.28,159.42,1865586.24,1165041.36,700544.88 Europe,Spain,Cereal,Online,L,2/28/2016,135090053,4/10/2016,5003,205.70,117.11,1029117.10,585901.33,443215.77 Asia,North Korea,Snacks,Online,L,11/8/2014,243985593,11/15/2014,9614,152.58,97.44,1466904.12,936788.16,530115.96 Sub-Saharan Africa,Seychelles ,Vegetables,Offline,H,6/28/2012,968953216,7/29/2012,3644,154.06,90.93,561394.64,331348.92,230045.72 Sub-Saharan Africa,Botswana,Vegetables,Offline,L,11/7/2013,155354249,12/24/2013,1629,154.06,90.93,250963.74,148124.97,102838.77 Central America and the Caribbean,Jamaica,Clothes,Online,C,6/4/2013,218862521,6/30/2013,5138,109.28,35.84,561480.64,184145.92,377334.72 Sub-Saharan Africa,Ethiopia,Cosmetics,Offline,H,5/1/2014,495464360,5/5/2014,7769,437.20,263.33,3396606.80,2045810.77,1350796.03 Europe,Portugal,Vegetables,Offline,H,12/22/2016,391458594,12/29/2016,152,154.06,90.93,23417.12,13821.36,9595.76 Asia,Mongolia,Household,Online,M,4/3/2015,733456552,4/24/2015,4947,668.27,502.54,3305931.69,2486065.38,819866.31 Europe,Bosnia and Herzegovina,Snacks,Online,C,6/26/2015,618382060,7/16/2015,1848,152.58,97.44,281967.84,180069.12,101898.72 Sub-Saharan Africa,Democratic Republic of the Congo,Baby Food,Online,H,6/23/2017,563471448,8/8/2017,2578,255.28,159.42,658111.84,410984.76,247127.08 Europe,Cyprus,Clothes,Online,L,10/2/2010,256273543,10/24/2010,5891,109.28,35.84,643768.48,211133.44,432635.04 Australia and Oceania,Papua New Guinea,Cosmetics,Online,C,3/7/2016,804649674,4/18/2016,2575,437.20,263.33,1125790.00,678074.75,447715.25 Australia and Oceania,Kiribati,Meat,Offline,C,1/20/2014,686773669,2/22/2014,445,421.89,364.69,187741.05,162287.05,25454.00 Europe,Ireland,Household,Offline,H,1/5/2016,701131856,2/11/2016,9352,668.27,502.54,6249661.04,4699754.08,1549906.96 Sub-Saharan Africa,Niger,Beverages,Offline,M,11/1/2015,816523063,12/5/2015,6174,47.45,31.79,292956.30,196271.46,96684.84 Sub-Saharan Africa,Ethiopia,Cereal,Offline,H,12/6/2015,622058618,12/23/2015,9823,205.70,117.11,2020591.10,1150371.53,870219.57 Australia and Oceania,Kiribati,Baby Food,Offline,C,12/31/2015,677162349,1/20/2016,6242,255.28,159.42,1593457.76,995099.64,598358.12 Asia,Thailand,Office Supplies,Online,L,10/18/2016,261570584,11/24/2016,3403,651.21,524.96,2216067.63,1786438.88,429628.75 Europe,Macedonia,Cereal,Online,C,5/11/2016,525332152,6/30/2016,6313,205.70,117.11,1298584.10,739315.43,559268.67 Sub-Saharan Africa,Mauritius ,Personal Care,Online,H,10/14/2013,438808381,10/20/2013,2006,81.73,56.67,163950.38,113680.02,50270.36 Sub-Saharan Africa,Comoros,Personal Care,Online,L,1/13/2013,842673099,2/23/2013,4551,81.73,56.67,371953.23,257905.17,114048.06 Europe,Hungary,Vegetables,Offline,M,7/19/2011,397912633,7/21/2011,45,154.06,90.93,6932.70,4091.85,2840.85 Europe,San Marino,Office Supplies,Offline,M,8/15/2011,535825812,9/12/2011,1620,651.21,524.96,1054960.20,850435.20,204525.00 Central America and the Caribbean,Dominica,Baby Food,Offline,H,8/12/2016,508023965,8/27/2016,4435,255.28,159.42,1132166.80,707027.70,425139.10 Central America and the Caribbean,Saint Vincent and the Grenadines,Office Supplies,Online,L,1/10/2012,536430919,1/13/2012,684,651.21,524.96,445427.64,359072.64,86355.00 Europe,Ukraine,Clothes,Offline,M,9/14/2014,463283002,10/28/2014,4590,109.28,35.84,501595.20,164505.60,337089.60 Europe,Luxembourg,Cereal,Online,C,1/21/2016,201129043,2/16/2016,7408,205.70,117.11,1523825.60,867550.88,656274.72 Europe,Portugal,Office Supplies,Online,H,2/18/2016,182830369,2/20/2016,2424,651.21,524.96,1578533.04,1272503.04,306030.00 Middle East and North Africa,Iraq,Clothes,Online,L,4/5/2012,911560809,4/19/2012,9955,109.28,35.84,1087882.40,356787.20,731095.20 Australia and Oceania,Papua New Guinea,Snacks,Offline,H,5/28/2010,710806691,6/13/2010,2350,152.58,97.44,358563.00,228984.00,129579.00 Central America and the Caribbean,Panama,Office Supplies,Online,M,10/21/2013,674366843,10/22/2013,8990,651.21,524.96,5854377.90,4719390.40,1134987.50 Sub-Saharan Africa,Sao Tome and Principe,Cosmetics,Online,C,8/18/2011,616352593,9/12/2011,1284,437.20,263.33,561364.80,338115.72,223249.08 Sub-Saharan Africa,Cape Verde,Snacks,Online,L,1/11/2013,421187770,2/12/2013,7676,152.58,97.44,1171204.08,747949.44,423254.64 Asia,Vietnam,Clothes,Online,H,2/1/2013,493608701,3/2/2013,8638,109.28,35.84,943960.64,309585.92,634374.72 North America,Mexico,Personal Care,Offline,H,9/26/2011,408664214,10/9/2011,1677,81.73,56.67,137061.21,95035.59,42025.62 Middle East and North Africa,Algeria,Office Supplies,Online,L,7/15/2017,261715638,8/27/2017,6328,651.21,524.96,4120856.88,3321946.88,798910.00 Central America and the Caribbean,Guatemala,Snacks,Online,L,8/15/2013,218436801,8/29/2013,9158,152.58,97.44,1397327.64,892355.52,504972.12 Europe,Monaco,Snacks,Online,L,6/22/2014,964814031,8/1/2014,8767,152.58,97.44,1337668.86,854256.48,483412.38 Central America and the Caribbean,Antigua and Barbuda ,Clothes,Offline,C,9/15/2016,557146155,10/3/2016,783,109.28,35.84,85566.24,28062.72,57503.52 Sub-Saharan Africa,Kenya,Office Supplies,Online,M,6/8/2010,272044503,6/19/2010,2869,651.21,524.96,1868321.49,1506110.24,362211.25 Europe,Croatia,Baby Food,Offline,C,5/1/2013,556432902,5/20/2013,9716,255.28,159.42,2480300.48,1548924.72,931375.76 Middle East and North Africa,Tunisia ,Fruits,Online,L,11/6/2013,577547681,11/12/2013,8048,9.33,6.92,75087.84,55692.16,19395.68 Asia,Malaysia,Cosmetics,Offline,C,11/12/2012,472937667,12/6/2012,1620,437.20,263.33,708264.00,426594.60,281669.40 Asia,Vietnam,Vegetables,Offline,H,4/28/2012,900464189,6/6/2012,6219,154.06,90.93,958099.14,565493.67,392605.47 Middle East and North Africa,Saudi Arabia,Meat,Online,H,6/11/2011,788301074,6/14/2011,4660,421.89,364.69,1966007.40,1699455.40,266552.00 Asia,Bhutan,Fruits,Online,H,7/4/2010,484934651,8/9/2010,1795,9.33,6.92,16747.35,12421.40,4325.95 Europe,Slovenia,Cereal,Offline,C,8/25/2014,409163749,10/4/2014,9501,205.70,117.11,1954355.70,1112662.11,841693.59 Central America and the Caribbean,Saint Kitts and Nevis ,Office Supplies,Offline,C,12/5/2014,600099694,1/9/2015,1690,651.21,524.96,1100544.90,887182.40,213362.50 Sub-Saharan Africa,Guinea,Household,Online,C,10/27/2014,267166316,11/23/2014,9305,668.27,502.54,6218252.35,4676134.70,1542117.65 Asia,Philippines,Baby Food,Offline,H,4/21/2011,940099942,5/28/2011,5319,255.28,159.42,1357834.32,847954.98,509879.34 Middle East and North Africa,Saudi Arabia,Clothes,Offline,H,10/8/2013,618949401,10/30/2013,9737,109.28,35.84,1064059.36,348974.08,715085.28 Sub-Saharan Africa,Burundi,Snacks,Offline,C,7/13/2017,524076020,7/18/2017,4595,152.58,97.44,701105.10,447736.80,253368.30 Europe,Cyprus,Personal Care,Offline,L,3/9/2015,146153628,4/24/2015,8961,81.73,56.67,732382.53,507819.87,224562.66 Australia and Oceania,Kiribati,Clothes,Offline,C,7/15/2015,396168553,7/31/2015,3934,109.28,35.84,429907.52,140994.56,288912.96 Sub-Saharan Africa,Central African Republic,Fruits,Offline,L,2/3/2017,455419623,3/4/2017,7642,9.33,6.92,71299.86,52882.64,18417.22 Sub-Saharan Africa,Botswana,Beverages,Online,C,11/9/2011,925518167,11/17/2011,247,47.45,31.79,11720.15,7852.13,3868.02 Europe,Belgium,Meat,Offline,L,10/29/2011,678388011,11/16/2011,8943,421.89,364.69,3772962.27,3261422.67,511539.60 Australia and Oceania,Fiji,Household,Online,H,12/2/2014,906265485,1/4/2015,2951,668.27,502.54,1972064.77,1482995.54,489069.23 Europe,Belarus,Beverages,Online,M,5/2/2016,171699416,5/21/2016,8528,47.45,31.79,404653.60,271105.12,133548.48 Asia,Cambodia,Snacks,Online,C,5/1/2012,257551133,5/3/2012,3959,152.58,97.44,604064.22,385764.96,218299.26 Asia,Sri Lanka,Clothes,Offline,C,8/8/2011,316994464,8/9/2011,4561,109.28,35.84,498426.08,163466.24,334959.84 Europe,Serbia,Baby Food,Offline,H,4/25/2016,923515737,6/9/2016,7684,255.28,159.42,1961571.52,1224983.28,736588.24 Europe,Malta,Baby Food,Online,M,10/15/2010,920913779,12/3/2010,7707,255.28,159.42,1967442.96,1228649.94,738793.02 Asia,Thailand,Household,Offline,M,9/7/2010,573299920,10/23/2010,1041,668.27,502.54,695669.07,523144.14,172524.93 Middle East and North Africa,Azerbaijan,Office Supplies,Online,M,10/21/2013,215097987,10/25/2013,1129,651.21,524.96,735216.09,592679.84,142536.25 Australia and Oceania,Vanuatu,Baby Food,Offline,C,6/11/2011,701044309,6/19/2011,3445,255.28,159.42,879439.60,549201.90,330237.70 Europe,Slovenia,Personal Care,Online,C,11/19/2014,256187713,12/16/2014,492,81.73,56.67,40211.16,27881.64,12329.52 Europe,Liechtenstein,Snacks,Online,C,10/8/2013,325889527,11/22/2013,6808,152.58,97.44,1038764.64,663371.52,375393.12 Sub-Saharan Africa,Sao Tome and Principe,Clothes,Online,M,2/25/2010,625823581,4/1/2010,3960,109.28,35.84,432748.80,141926.40,290822.40 Sub-Saharan Africa,Sudan,Beverages,Online,M,9/26/2014,491976201,10/28/2014,5546,47.45,31.79,263157.70,176307.34,86850.36 Sub-Saharan Africa,Zambia,Baby Food,Online,L,10/9/2012,230646216,10/19/2012,2196,255.28,159.42,560594.88,350086.32,210508.56 Middle East and North Africa,Tunisia ,Meat,Offline,L,4/22/2013,668444955,4/30/2013,6571,421.89,364.69,2772239.19,2396377.99,375861.20 Central America and the Caribbean,El Salvador,Baby Food,Online,L,1/30/2015,902296245,3/21/2015,8365,255.28,159.42,2135417.20,1333548.30,801868.90 North America,United States of America,Snacks,Offline,M,5/4/2010,549436414,5/28/2010,9299,152.58,97.44,1418841.42,906094.56,512746.86 Asia,Mongolia,Office Supplies,Online,C,4/25/2011,197414290,5/3/2011,8130,651.21,524.96,5294337.30,4267924.80,1026412.50 Asia,Mongolia,Snacks,Online,L,2/27/2016,954091203,4/11/2016,5644,152.58,97.44,861161.52,549951.36,311210.16 Sub-Saharan Africa,Malawi,Office Supplies,Offline,M,9/25/2012,397640979,10/2/2012,9657,651.21,524.96,6288734.97,5069538.72,1219196.25 Europe,Latvia,Cereal,Offline,M,9/8/2012,226549947,10/20/2012,19,205.70,117.11,3908.30,2225.09,1683.21 Europe,Macedonia,Cereal,Offline,M,5/14/2017,409616935,6/11/2017,3608,205.70,117.11,742165.60,422532.88,319632.72 Europe,Belgium,Cereal,Offline,C,1/16/2014,535953271,1/24/2014,9338,205.70,117.11,1920826.60,1093573.18,827253.42 Sub-Saharan Africa,Sierra Leone,Cereal,Online,L,7/20/2017,264982783,8/4/2017,3149,205.70,117.11,647749.30,368779.39,278969.91 Sub-Saharan Africa,Niger,Snacks,Offline,H,7/3/2013,676441800,8/16/2013,3016,152.58,97.44,460181.28,293879.04,166302.24 Europe,Croatia,Cosmetics,Online,M,1/31/2015,220379149,2/27/2015,3942,437.20,263.33,1723442.40,1038046.86,685395.54 Europe,Bulgaria,Office Supplies,Offline,L,10/27/2013,567156159,11/7/2013,2966,651.21,524.96,1931488.86,1557031.36,374457.50 Middle East and North Africa,Lebanon,Office Supplies,Offline,H,9/1/2013,757446658,10/3/2013,4153,651.21,524.96,2704475.13,2180158.88,524316.25 Europe,Albania,Office Supplies,Offline,L,1/26/2012,352236974,3/3/2012,3603,651.21,524.96,2346309.63,1891430.88,454878.75 Middle East and North Africa,Jordan,Beverages,Online,C,4/28/2011,782825934,5/11/2011,4445,47.45,31.79,210915.25,141306.55,69608.70 Europe,United Kingdom,Cosmetics,Online,L,10/14/2014,400824868,10/23/2014,1841,437.20,263.33,804885.20,484790.53,320094.67 Middle East and North Africa,Morocco,Office Supplies,Online,M,7/12/2015,328157603,7/26/2015,7982,651.21,524.96,5197958.22,4190230.72,1007727.50 Asia,Sri Lanka,Snacks,Online,H,4/3/2015,407060468,5/3/2015,7093,152.58,97.44,1082249.94,691141.92,391108.02 Europe,Montenegro,Personal Care,Offline,C,12/11/2012,550082290,1/24/2013,428,81.73,56.67,34980.44,24254.76,10725.68 Europe,Estonia,Office Supplies,Online,H,3/23/2016,290084397,4/2/2016,1274,651.21,524.96,829641.54,668799.04,160842.50 Europe,Bosnia and Herzegovina,Meat,Offline,C,11/5/2014,130240619,11/26/2014,9948,421.89,364.69,4196961.72,3627936.12,569025.60 Sub-Saharan Africa,Gabon,Meat,Online,L,10/9/2014,194037282,11/7/2014,8799,421.89,364.69,3712210.11,3208907.31,503302.80 Europe,San Marino,Vegetables,Offline,M,9/3/2011,675273215,10/1/2011,7205,154.06,90.93,1110002.30,655150.65,454851.65 Middle East and North Africa,Bahrain,Meat,Online,H,6/6/2017,488059747,6/29/2017,6580,421.89,364.69,2776036.20,2399660.20,376376.00 Sub-Saharan Africa,Swaziland,Clothes,Online,H,11/29/2010,416820704,12/8/2010,5364,109.28,35.84,586177.92,192245.76,393932.16 Central America and the Caribbean,Honduras,Personal Care,Offline,C,6/27/2017,866292417,8/10/2017,4032,81.73,56.67,329535.36,228493.44,101041.92 Sub-Saharan Africa,Comoros,Office Supplies,Online,M,5/14/2014,511523711,6/5/2014,88,651.21,524.96,57306.48,46196.48,11110.00 Europe,Luxembourg,Personal Care,Offline,M,2/12/2010,347875916,2/16/2010,3069,81.73,56.67,250829.37,173920.23,76909.14 Europe,Greece,Meat,Offline,C,8/3/2010,541022861,9/9/2010,9542,421.89,364.69,4025674.38,3479871.98,545802.40 Asia,Philippines,Cosmetics,Online,M,2/11/2015,876950871,3/14/2015,8106,437.20,263.33,3543943.20,2134552.98,1409390.22 North America,Greenland,Baby Food,Offline,H,9/28/2012,311958777,11/3/2012,4390,255.28,159.42,1120679.20,699853.80,420825.40 Europe,Serbia,Snacks,Offline,H,4/18/2016,122657907,4/30/2016,6055,152.58,97.44,923871.90,589999.20,333872.70 Asia,Vietnam,Snacks,Online,M,3/1/2013,755972087,3/13/2013,7795,152.58,97.44,1189361.10,759544.80,429816.30 Central America and the Caribbean,Haiti,Household,Offline,L,7/9/2014,479137647,8/28/2014,6332,668.27,502.54,4231485.64,3182083.28,1049402.36 Europe,Greece,Office Supplies,Offline,L,8/30/2013,329703414,9/24/2013,5422,651.21,524.96,3530860.62,2846333.12,684527.50 Sub-Saharan Africa,Lesotho,Personal Care,Online,M,7/15/2012,965530717,7/19/2012,850,81.73,56.67,69470.50,48169.50,21301.00 Central America and the Caribbean,Nicaragua,Cereal,Online,M,5/12/2010,414793384,6/24/2010,5435,205.70,117.11,1117979.50,636492.85,481486.65 Central America and the Caribbean,Antigua and Barbuda ,Fruits,Online,C,12/28/2014,825977742,1/2/2015,4024,9.33,6.92,37543.92,27846.08,9697.84 Central America and the Caribbean,Guatemala,Clothes,Offline,L,6/2/2016,817882621,7/21/2016,8498,109.28,35.84,928661.44,304568.32,624093.12 Sub-Saharan Africa,Democratic Republic of the Congo,Baby Food,Online,M,4/11/2013,429619348,5/21/2013,2767,255.28,159.42,706359.76,441115.14,265244.62 Middle East and North Africa,Qatar,Vegetables,Offline,H,8/10/2016,670611751,9/15/2016,7774,154.06,90.93,1197662.44,706889.82,490772.62 Europe,Estonia,Cereal,Online,M,10/27/2015,370596158,11/4/2015,6493,205.70,117.11,1335610.10,760395.23,575214.87 Sub-Saharan Africa,Benin,Vegetables,Offline,M,9/24/2012,229621398,10/7/2012,8929,154.06,90.93,1375601.74,811913.97,563687.77 Sub-Saharan Africa,Chad,Fruits,Online,C,3/25/2010,568048799,4/18/2010,7118,9.33,6.92,66410.94,49256.56,17154.38 Europe,France,Baby Food,Online,L,1/21/2016,876552188,1/21/2016,126,255.28,159.42,32165.28,20086.92,12078.36 Europe,Hungary,Vegetables,Offline,C,4/18/2016,266117894,5/2/2016,9053,154.06,90.93,1394705.18,823189.29,571515.89 Australia and Oceania,Federated States of Micronesia,Vegetables,Offline,C,1/11/2017,618044745,2/9/2017,2029,154.06,90.93,312587.74,184496.97,128090.77 Asia,Uzbekistan,Household,Offline,C,4/6/2010,733944070,4/23/2010,9215,668.27,502.54,6158108.05,4630906.10,1527201.95 Europe,Kosovo,Cosmetics,Offline,C,7/26/2015,385739696,9/8/2015,7803,437.20,263.33,3411471.60,2054763.99,1356707.61 Asia,North Korea,Vegetables,Offline,L,9/16/2015,765667951,10/19/2015,7016,154.06,90.93,1080884.96,637964.88,442920.08 Sub-Saharan Africa,Senegal,Baby Food,Online,C,6/18/2013,436277663,6/19/2013,3110,255.28,159.42,793920.80,495796.20,298124.60 Europe,Malta,Vegetables,Online,L,8/30/2012,280430161,9/25/2012,4371,154.06,90.93,673396.26,397455.03,275941.23 Sub-Saharan Africa,Guinea,Cereal,Offline,C,6/4/2014,351299273,6/26/2014,6117,205.70,117.11,1258266.90,716361.87,541905.03 Sub-Saharan Africa,Madagascar,Vegetables,Online,M,5/7/2013,322371327,5/28/2013,5694,154.06,90.93,877217.64,517755.42,359462.22 Sub-Saharan Africa,Malawi,Office Supplies,Offline,H,6/18/2016,837445151,7/27/2016,7485,651.21,524.96,4874306.85,3929325.60,944981.25 Australia and Oceania,Papua New Guinea,Personal Care,Offline,H,9/21/2016,360632073,9/28/2016,7899,81.73,56.67,645585.27,447636.33,197948.94 Sub-Saharan Africa,Sudan,Beverages,Offline,L,12/4/2011,126355922,1/19/2012,380,47.45,31.79,18031.00,12080.20,5950.80 Asia,Bangladesh,Office Supplies,Online,M,1/29/2016,989353024,3/6/2016,400,651.21,524.96,260484.00,209984.00,50500.00 Middle East and North Africa,Israel,Baby Food,Offline,C,3/6/2010,274672210,3/6/2010,466,255.28,159.42,118960.48,74289.72,44670.76 Middle East and North Africa,Jordan,Personal Care,Offline,H,2/27/2014,327674806,3/20/2014,5111,81.73,56.67,417722.03,289640.37,128081.66 Asia,Vietnam,Baby Food,Offline,H,12/5/2014,864034640,12/26/2014,5906,255.28,159.42,1507683.68,941534.52,566149.16 Asia,Mongolia,Snacks,Online,L,8/12/2015,319738042,9/19/2015,6447,152.58,97.44,983683.26,628195.68,355487.58 Europe,Malta,Snacks,Offline,L,8/12/2016,801083838,9/24/2016,7365,152.58,97.44,1123751.70,717645.60,406106.10 Europe,Serbia,Meat,Offline,H,10/31/2011,434683358,11/24/2011,1320,421.89,364.69,556894.80,481390.80,75504.00 Australia and Oceania,Nauru,Office Supplies,Online,C,2/25/2015,117460429,3/4/2015,8006,651.21,524.96,5213587.26,4202829.76,1010757.50 Europe,Montenegro,Snacks,Online,H,3/31/2011,366651380,5/1/2011,9146,152.58,97.44,1395496.68,891186.24,504310.44 Sub-Saharan Africa,Zambia,Fruits,Offline,H,5/6/2012,869805037,5/29/2012,3494,9.33,6.92,32599.02,24178.48,8420.54 Middle East and North Africa,Tunisia ,Household,Offline,L,8/9/2016,934782731,9/1/2016,1838,668.27,502.54,1228280.26,923668.52,304611.74 Sub-Saharan Africa,Democratic Republic of the Congo,Meat,Offline,H,11/21/2011,839758288,12/1/2011,1994,421.89,364.69,841248.66,727191.86,114056.80 Europe,San Marino,Household,Offline,C,5/30/2017,483218038,6/25/2017,3810,668.27,502.54,2546108.70,1914677.40,631431.30 Asia,Kyrgyzstan,Vegetables,Offline,L,10/21/2011,733960807,10/21/2011,4168,154.06,90.93,642122.08,378996.24,263125.84 Sub-Saharan Africa,Zambia,Fruits,Online,H,8/17/2012,281097924,9/14/2012,1977,9.33,6.92,18445.41,13680.84,4764.57 Sub-Saharan Africa,Senegal,Office Supplies,Online,L,1/1/2012,584053218,2/9/2012,3181,651.21,524.96,2071499.01,1669897.76,401601.25 Central America and the Caribbean,Guatemala,Meat,Offline,C,9/6/2010,922563016,10/5/2010,5753,421.89,364.69,2427133.17,2098061.57,329071.60 Europe,Andorra,Vegetables,Online,H,4/13/2014,646676146,5/15/2014,4697,154.06,90.93,723619.82,427098.21,296521.61 Sub-Saharan Africa,Sierra Leone,Office Supplies,Offline,M,4/30/2014,526753938,6/14/2014,7051,651.21,524.96,4591681.71,3701492.96,890188.75 Sub-Saharan Africa,The Gambia,Office Supplies,Offline,C,10/10/2014,503470218,10/10/2014,6880,651.21,524.96,4480324.80,3611724.80,868600.00 Middle East and North Africa,Saudi Arabia,Personal Care,Online,M,1/24/2013,137811315,3/15/2013,285,81.73,56.67,23293.05,16150.95,7142.10 Australia and Oceania,Papua New Guinea,Personal Care,Online,L,7/1/2011,861076056,7/27/2011,395,81.73,56.67,32283.35,22384.65,9898.70 Europe,Ukraine,Meat,Online,L,6/6/2013,124875771,7/8/2013,2371,421.89,364.69,1000301.19,864679.99,135621.20 Sub-Saharan Africa,Niger,Household,Offline,H,12/7/2011,851134288,12/10/2011,8405,668.27,502.54,5616809.35,4223848.70,1392960.65 Sub-Saharan Africa,Ghana,Cosmetics,Offline,M,4/12/2016,182087934,5/26/2016,2721,437.20,263.33,1189621.20,716520.93,473100.27 North America,Greenland,Cosmetics,Offline,C,4/24/2010,730285537,6/4/2010,6574,437.20,263.33,2874152.80,1731131.42,1143021.38 Europe,Albania,Personal Care,Offline,L,10/16/2016,228588426,12/3/2016,3250,81.73,56.67,265622.50,184177.50,81445.00 Europe,Slovenia,Office Supplies,Online,L,5/2/2010,980170428,5/8/2010,3066,651.21,524.96,1996609.86,1609527.36,387082.50 Central America and the Caribbean,Grenada,Office Supplies,Offline,M,1/15/2012,408517873,2/4/2012,8372,651.21,524.96,5451930.12,4394965.12,1056965.00 Europe,Kosovo,Office Supplies,Online,M,1/5/2010,507429587,2/7/2010,8546,651.21,524.96,5565240.66,4486308.16,1078932.50 North America,Mexico,Baby Food,Offline,M,2/19/2016,191016900,4/9/2016,5000,255.28,159.42,1276400.00,797100.00,479300.00 Asia,Vietnam,Beverages,Online,C,11/3/2016,243703639,11/17/2016,6177,47.45,31.79,293098.65,196366.83,96731.82 Middle East and North Africa,Algeria,Meat,Offline,H,10/14/2014,170226132,11/20/2014,2550,421.89,364.69,1075819.50,929959.50,145860.00 Australia and Oceania,Fiji,Office Supplies,Online,H,6/20/2017,445633208,6/30/2017,1624,651.21,524.96,1057565.04,852535.04,205030.00 Sub-Saharan Africa,Djibouti,Snacks,Offline,M,9/29/2010,265286195,11/13/2010,2935,152.58,97.44,447822.30,285986.40,161835.90 Middle East and North Africa,Israel,Fruits,Online,M,8/7/2015,694858920,9/14/2015,3051,9.33,6.92,28465.83,21112.92,7352.91 Sub-Saharan Africa,Namibia,Clothes,Offline,M,3/24/2016,620337712,3/24/2016,569,109.28,35.84,62180.32,20392.96,41787.36 Central America and the Caribbean,Costa Rica,Meat,Online,C,10/27/2016,798021399,11/27/2016,1121,421.89,364.69,472938.69,408817.49,64121.20 Middle East and North Africa,Syria,Meat,Offline,M,1/22/2015,704521310,3/5/2015,2366,421.89,364.69,998191.74,862856.54,135335.20 Asia,India,Snacks,Online,H,6/22/2013,786761271,7/26/2013,8999,152.58,97.44,1373067.42,876862.56,496204.86 Asia,India,Vegetables,Online,C,8/31/2015,211977612,9/20/2015,7741,154.06,90.93,1192578.46,703889.13,488689.33 Sub-Saharan Africa,Cote d'Ivoire,Snacks,Offline,L,12/7/2014,917719161,12/10/2014,2348,152.58,97.44,358257.84,228789.12,129468.72 Europe,Slovakia,Cereal,Offline,H,3/22/2013,861847245,5/10/2013,8607,205.70,117.11,1770459.90,1007965.77,762494.13 Asia,Mongolia,Clothes,Online,C,4/28/2017,772535693,5/7/2017,9334,109.28,35.84,1020019.52,334530.56,685488.96 Middle East and North Africa,Bahrain,Office Supplies,Offline,H,5/18/2012,998270833,5/21/2012,9378,651.21,524.96,6107047.38,4923074.88,1183972.50 Sub-Saharan Africa,Kenya,Household,Online,L,2/3/2011,157851493,3/10/2011,619,668.27,502.54,413659.13,311072.26,102586.87 Sub-Saharan Africa,Sierra Leone,Clothes,Offline,H,2/5/2012,990389001,2/28/2012,6969,109.28,35.84,761572.32,249768.96,511803.36 Sub-Saharan Africa,Ethiopia,Fruits,Online,C,4/19/2011,905307185,5/13/2011,9369,9.33,6.92,87412.77,64833.48,22579.29 Central America and the Caribbean,Saint Kitts and Nevis ,Vegetables,Offline,C,3/27/2013,532342374,4/3/2013,793,154.06,90.93,122169.58,72107.49,50062.09 Middle East and North Africa,Azerbaijan,Cosmetics,Online,L,3/1/2012,571543395,4/3/2012,1246,437.20,263.33,544751.20,328109.18,216642.02 Sub-Saharan Africa,Liberia,Beverages,Online,M,12/22/2010,443271577,1/13/2011,2765,47.45,31.79,131199.25,87899.35,43299.90 Europe,Monaco,Personal Care,Online,C,5/26/2017,538200747,6/28/2017,4416,81.73,56.67,360919.68,250254.72,110664.96 Sub-Saharan Africa,Seychelles ,Cosmetics,Online,M,7/12/2017,867317235,8/22/2017,7298,437.20,263.33,3190685.60,1921782.34,1268903.26 Middle East and North Africa,Turkey,Personal Care,Offline,H,6/10/2017,611919867,6/16/2017,9542,81.73,56.67,779867.66,540745.14,239122.52 Sub-Saharan Africa,Angola,Personal Care,Online,M,9/18/2016,373619973,9/21/2016,1308,81.73,56.67,106902.84,74124.36,32778.48 North America,Mexico,Baby Food,Online,M,3/15/2012,824341380,5/1/2012,9788,255.28,159.42,2498680.64,1560402.96,938277.68 Middle East and North Africa,Somalia,Fruits,Online,M,12/20/2016,456320416,12/31/2016,4207,9.33,6.92,39251.31,29112.44,10138.87 Europe,San Marino,Cosmetics,Online,C,1/24/2011,532105910,2/5/2011,818,437.20,263.33,357629.60,215403.94,142225.66 Sub-Saharan Africa,Tanzania,Cereal,Online,L,6/20/2013,134559190,7/17/2013,7909,205.70,117.11,1626881.30,926222.99,700658.31 Europe,Slovakia,Personal Care,Online,H,2/23/2010,216854083,3/16/2010,797,81.73,56.67,65138.81,45165.99,19972.82 Middle East and North Africa,Iran,Clothes,Offline,C,11/7/2010,452476918,12/3/2010,6830,109.28,35.84,746382.40,244787.20,501595.20 Middle East and North Africa,Somalia,Cereal,Offline,C,1/16/2015,585226523,1/23/2015,388,205.70,117.11,79811.60,45438.68,34372.92 Sub-Saharan Africa,Sudan,Household,Offline,H,8/31/2015,879214227,10/18/2015,7883,668.27,502.54,5267972.41,3961522.82,1306449.59 Sub-Saharan Africa,Benin,Household,Online,H,7/8/2010,768863856,7/23/2010,2756,668.27,502.54,1841752.12,1385000.24,456751.88 Asia,Malaysia,Beverages,Offline,M,8/11/2013,208911740,9/24/2013,481,47.45,31.79,22823.45,15290.99,7532.46 Australia and Oceania,Federated States of Micronesia,Household,Offline,H,7/8/2013,124406707,7/9/2013,3564,668.27,502.54,2381714.28,1791052.56,590661.72 Asia,Japan,Meat,Online,C,1/8/2015,160710084,2/2/2015,6540,421.89,364.69,2759160.60,2385072.60,374088.00 Europe,Slovenia,Office Supplies,Online,M,8/8/2012,933495700,9/14/2012,977,651.21,524.96,636232.17,512885.92,123346.25 Europe,Finland,Beverages,Online,M,12/18/2016,878749883,1/8/2017,473,47.45,31.79,22443.85,15036.67,7407.18 Australia and Oceania,Vanuatu,Beverages,Offline,C,5/11/2013,302771461,5/12/2013,5658,47.45,31.79,268472.10,179867.82,88604.28 Sub-Saharan Africa,Guinea-Bissau,Clothes,Online,C,10/31/2010,932171761,11/17/2010,9194,109.28,35.84,1004720.32,329512.96,675207.36 Europe,Iceland,Baby Food,Online,H,9/12/2015,963874614,10/25/2015,772,255.28,159.42,197076.16,123072.24,74003.92 Europe,Kosovo,Cereal,Offline,H,8/16/2012,915116345,9/1/2012,2117,205.70,117.11,435466.90,247921.87,187545.03 Sub-Saharan Africa,Malawi,Fruits,Offline,C,11/7/2013,473445785,11/23/2013,1984,9.33,6.92,18510.72,13729.28,4781.44 Europe,Slovakia,Clothes,Offline,H,7/12/2017,746724259,8/12/2017,1157,109.28,35.84,126436.96,41466.88,84970.08 Sub-Saharan Africa,Comoros,Snacks,Offline,M,7/8/2011,213125598,8/18/2011,7455,152.58,97.44,1137483.90,726415.20,411068.70 Central America and the Caribbean,Honduras,Office Supplies,Offline,C,1/13/2015,571136128,2/20/2015,727,651.21,524.96,473429.67,381645.92,91783.75 Sub-Saharan Africa,Guinea,Clothes,Online,M,4/15/2014,889554679,4/16/2014,7852,109.28,35.84,858066.56,281415.68,576650.88 Central America and the Caribbean,Dominica,Personal Care,Online,L,9/8/2011,757492578,10/3/2011,7742,81.73,56.67,632753.66,438739.14,194014.52 Sub-Saharan Africa,Uganda,Beverages,Offline,C,7/1/2014,734373652,8/11/2014,6338,47.45,31.79,300738.10,201485.02,99253.08 Europe,Montenegro,Vegetables,Online,H,11/28/2015,999934232,1/10/2016,1615,154.06,90.93,248806.90,146851.95,101954.95 Europe,Belgium,Clothes,Online,H,12/15/2013,904223144,12/31/2013,8577,109.28,35.84,937294.56,307399.68,629894.88 Europe,Serbia,Household,Online,M,4/24/2015,317601716,4/30/2015,4260,668.27,502.54,2846830.20,2140820.40,706009.80 Europe,Iceland,Personal Care,Offline,C,5/10/2016,980743777,6/27/2016,2733,81.73,56.67,223368.09,154879.11,68488.98 Middle East and North Africa,United Arab Emirates,Baby Food,Offline,M,7/15/2014,654635655,8/24/2014,93,255.28,159.42,23741.04,14826.06,8914.98 Sub-Saharan Africa,Mali,Office Supplies,Offline,L,2/23/2012,770576179,3/12/2012,9470,651.21,524.96,6166958.70,4971371.20,1195587.50 Central America and the Caribbean,Costa Rica,Baby Food,Offline,L,7/19/2012,580176675,8/21/2012,6026,255.28,159.42,1538317.28,960664.92,577652.36 Europe,United Kingdom,Cereal,Online,M,5/19/2016,305360972,6/9/2016,1952,205.70,117.11,401526.40,228598.72,172927.68 Europe,San Marino,Household,Online,L,3/16/2010,688365399,4/21/2010,1474,668.27,502.54,985029.98,740743.96,244286.02 Sub-Saharan Africa,Cameroon,Baby Food,Online,L,9/21/2015,741738784,10/6/2015,5844,255.28,159.42,1491856.32,931650.48,560205.84 Europe,Albania,Beverages,Offline,M,4/5/2010,898342454,4/17/2010,8350,47.45,31.79,396207.50,265446.50,130761.00 Sub-Saharan Africa,Ethiopia,Meat,Offline,M,11/12/2013,761350238,12/1/2013,9309,421.89,364.69,3927374.01,3394899.21,532474.80 Europe,Switzerland,Office Supplies,Online,L,5/10/2017,454248464,6/18/2017,1070,651.21,524.96,696794.70,561707.20,135087.50 Europe,Germany,Household,Online,C,5/26/2016,170835959,6/10/2016,3012,668.27,502.54,2012829.24,1513650.48,499178.76 Australia and Oceania,Tonga,Household,Offline,M,4/24/2015,625224053,4/27/2015,6546,668.27,502.54,4374495.42,3289626.84,1084868.58 Europe,Portugal,Cosmetics,Online,H,9/2/2015,801836574,10/21/2015,116,437.20,263.33,50715.20,30546.28,20168.92 Sub-Saharan Africa,Gabon,Household,Offline,L,7/22/2012,205409848,7/29/2012,4194,668.27,502.54,2802724.38,2107652.76,695071.62 Middle East and North Africa,Pakistan,Household,Online,H,6/22/2013,210992705,7/18/2013,6285,668.27,502.54,4200076.95,3158463.90,1041613.05 Asia,Taiwan,Vegetables,Online,C,11/4/2011,913946473,11/17/2011,5926,154.06,90.93,912959.56,538851.18,374108.38 Asia,Malaysia,Fruits,Online,M,7/6/2013,679944980,7/23/2013,9684,9.33,6.92,90351.72,67013.28,23338.44 Central America and the Caribbean,Honduras,Office Supplies,Online,L,3/30/2010,194974553,5/17/2010,6158,651.21,524.96,4010151.18,3232703.68,777447.50 Sub-Saharan Africa,Burundi,Cosmetics,Online,L,10/20/2013,215334022,10/24/2013,977,437.20,263.33,427144.40,257273.41,169870.99 Asia,Laos,Vegetables,Online,C,4/18/2014,217634713,6/7/2014,1803,154.06,90.93,277770.18,163946.79,113823.39 Australia and Oceania,Solomon Islands,Baby Food,Offline,H,4/3/2014,648800456,5/6/2014,3328,255.28,159.42,849571.84,530549.76,319022.08 Europe,Ukraine,Cereal,Offline,L,4/12/2017,676067578,5/1/2017,2275,205.70,117.11,467967.50,266425.25,201542.25 Middle East and North Africa,Afghanistan,Office Supplies,Offline,C,9/3/2016,436984908,9/13/2016,2400,651.21,524.96,1562904.00,1259904.00,303000.00 Middle East and North Africa,Tunisia ,Household,Offline,M,5/19/2014,589413774,6/9/2014,9489,668.27,502.54,6341214.03,4768602.06,1572611.97 Central America and the Caribbean,Grenada,Household,Offline,L,3/10/2017,961528003,3/14/2017,6358,668.27,502.54,4248860.66,3195149.32,1053711.34 Sub-Saharan Africa,Nigeria,Clothes,Online,L,3/28/2010,101813924,4/26/2010,7857,109.28,35.84,858612.96,281594.88,577018.08 Asia,Cambodia,Clothes,Online,C,10/24/2013,229070365,12/13/2013,5866,109.28,35.84,641036.48,210237.44,430799.04 Asia,Malaysia,Clothes,Offline,M,5/24/2011,482408654,6/27/2011,4296,109.28,35.84,469466.88,153968.64,315498.24 Europe,Denmark,Vegetables,Offline,C,1/11/2014,971252620,2/19/2014,4088,154.06,90.93,629797.28,371721.84,258075.44 Asia,Bhutan,Clothes,Online,C,2/16/2011,525338590,3/24/2011,8218,109.28,35.84,898063.04,294533.12,603529.92 Sub-Saharan Africa,Comoros,Cosmetics,Online,L,1/28/2012,744715392,2/28/2012,6689,437.20,263.33,2924430.80,1761414.37,1163016.43 Australia and Oceania,Kiribati,Household,Online,C,3/11/2012,149744355,4/28/2012,1537,668.27,502.54,1027130.99,772403.98,254727.01 Central America and the Caribbean,Cuba,Office Supplies,Offline,L,8/23/2011,931099307,10/7/2011,1831,651.21,524.96,1192365.51,961201.76,231163.75 Europe,Macedonia,Cosmetics,Online,C,8/30/2011,399766576,10/15/2011,8668,437.20,263.33,3789649.60,2282544.44,1507105.16 Central America and the Caribbean,Jamaica,Cereal,Online,C,10/3/2010,437044990,10/15/2010,179,205.70,117.11,36820.30,20962.69,15857.61 Middle East and North Africa,Tunisia ,Household,Offline,H,1/26/2016,744545876,2/13/2016,6525,668.27,502.54,4360461.75,3279073.50,1081388.25 Sub-Saharan Africa,The Gambia,Beverages,Online,M,11/21/2016,194193065,12/19/2016,4898,47.45,31.79,232410.10,155707.42,76702.68 Europe,Slovakia,Vegetables,Offline,M,2/18/2011,878222882,3/7/2011,4522,154.06,90.93,696659.32,411185.46,285473.86 Middle East and North Africa,Bahrain,Personal Care,Online,H,9/17/2016,459184157,9/17/2016,1651,81.73,56.67,134936.23,93562.17,41374.06 Europe,Malta,Cereal,Online,H,9/29/2014,719938218,10/4/2014,4572,205.70,117.11,940460.40,535426.92,405033.48 Europe,Albania,Fruits,Online,L,11/30/2013,813658893,1/18/2014,8602,9.33,6.92,80256.66,59525.84,20730.82 Central America and the Caribbean,Haiti,Office Supplies,Offline,C,5/27/2016,413832509,6/5/2016,1091,651.21,524.96,710470.11,572731.36,137738.75 Sub-Saharan Africa,Eritrea,Baby Food,Online,C,2/3/2014,164257895,2/7/2014,6416,255.28,159.42,1637876.48,1022838.72,615037.76 Sub-Saharan Africa,Senegal,Beverages,Offline,L,1/28/2015,329046380,2/13/2015,991,47.45,31.79,47022.95,31503.89,15519.06 Europe,Ukraine,Meat,Offline,C,2/25/2017,342621791,3/10/2017,8257,421.89,364.69,3483545.73,3011245.33,472300.40 Middle East and North Africa,Lebanon,Household,Online,M,8/15/2011,159720456,9/12/2011,3687,668.27,502.54,2463911.49,1852864.98,611046.51 Sub-Saharan Africa,Ghana,Office Supplies,Online,L,5/1/2017,705391204,6/2/2017,9787,651.21,524.96,6373392.27,5137783.52,1235608.75 Australia and Oceania,Nauru,Personal Care,Offline,C,5/10/2016,724995362,5/18/2016,1094,81.73,56.67,89412.62,61996.98,27415.64 Sub-Saharan Africa,Zambia,Baby Food,Offline,C,10/2/2010,834206759,11/1/2010,9173,255.28,159.42,2341683.44,1462359.66,879323.78 Sub-Saharan Africa,Angola,Fruits,Online,M,3/20/2011,369011723,4/21/2011,7624,9.33,6.92,71131.92,52758.08,18373.84 Central America and the Caribbean,Panama,Cosmetics,Offline,M,7/29/2010,535709083,9/7/2010,7077,437.20,263.33,3094064.40,1863586.41,1230477.99 Asia,Turkmenistan,Cosmetics,Offline,C,4/21/2010,360910165,5/30/2010,193,437.20,263.33,84379.60,50822.69,33556.91 Sub-Saharan Africa,Senegal,Snacks,Offline,C,9/18/2016,741538798,9/24/2016,6664,152.58,97.44,1016793.12,649340.16,367452.96 Europe,Liechtenstein,Office Supplies,Offline,L,6/24/2014,394831311,7/24/2014,8214,651.21,524.96,5349038.94,4312021.44,1037017.50 Sub-Saharan Africa,Gabon,Office Supplies,Online,C,10/31/2015,808336532,12/7/2015,3598,651.21,524.96,2343053.58,1888806.08,454247.50 Sub-Saharan Africa,Lesotho,Baby Food,Offline,C,5/9/2011,389915788,5/26/2011,3601,255.28,159.42,919263.28,574071.42,345191.86 Sub-Saharan Africa,The Gambia,Vegetables,Online,L,8/14/2011,317742908,8/14/2011,6042,154.06,90.93,930830.52,549399.06,381431.46 Sub-Saharan Africa,Mozambique,Office Supplies,Offline,C,2/17/2013,490304219,3/17/2013,769,651.21,524.96,500780.49,403694.24,97086.25 North America,Greenland,Office Supplies,Online,M,3/29/2017,876398551,4/28/2017,4662,651.21,524.96,3035941.02,2447363.52,588577.50 Europe,Czech Republic,Cosmetics,Offline,M,3/21/2011,165137231,3/21/2011,6631,437.20,263.33,2899073.20,1746141.23,1152931.97 Asia,China,Personal Care,Offline,M,6/20/2017,715944087,7/10/2017,2620,81.73,56.67,214132.60,148475.40,65657.20 Europe,Estonia,Office Supplies,Online,L,1/13/2014,908555448,2/17/2014,602,651.21,524.96,392028.42,316025.92,76002.50 Europe,Italy,Office Supplies,Online,L,2/6/2014,993020141,3/6/2014,5582,651.21,524.96,3635054.22,2930326.72,704727.50 Middle East and North Africa,Bahrain,Baby Food,Offline,C,10/6/2016,839699494,11/21/2016,4595,255.28,159.42,1173011.60,732534.90,440476.70 Asia,South Korea,Baby Food,Offline,H,11/2/2010,389267337,11/25/2010,1710,255.28,159.42,436528.80,272608.20,163920.60 Europe,France,Household,Offline,C,6/23/2016,102709996,7/1/2016,3025,668.27,502.54,2021516.75,1520183.50,501333.25 Sub-Saharan Africa,Comoros,Meat,Offline,C,4/7/2013,511326301,5/15/2013,1670,421.89,364.69,704556.30,609032.30,95524.00 Sub-Saharan Africa,Central African Republic,Household,Offline,H,2/20/2012,866727578,3/2/2012,2806,668.27,502.54,1875165.62,1410127.24,465038.38 Middle East and North Africa,Yemen,Household,Offline,C,9/24/2013,490837657,10/11/2013,8625,668.27,502.54,5763828.75,4334407.50,1429421.25 Middle East and North Africa,United Arab Emirates,Vegetables,Offline,M,3/6/2012,125892865,3/12/2012,3351,154.06,90.93,516255.06,304706.43,211548.63 Sub-Saharan Africa,Zambia,Baby Food,Online,M,1/12/2014,584442031,1/30/2014,8239,255.28,159.42,2103251.92,1313461.38,789790.54 Europe,Estonia,Office Supplies,Offline,M,10/10/2011,499346482,10/15/2011,6576,651.21,524.96,4282356.96,3452136.96,830220.00 Asia,Kyrgyzstan,Snacks,Offline,L,4/19/2010,373780047,4/29/2010,8677,152.58,97.44,1323936.66,845486.88,478449.78 Europe,San Marino,Clothes,Offline,H,7/28/2015,331229054,9/2/2015,6893,109.28,35.84,753267.04,247045.12,506221.92 Europe,Latvia,Cereal,Online,C,9/9/2015,565492331,10/5/2015,602,205.70,117.11,123831.40,70500.22,53331.18 Europe,Slovakia,Meat,Online,M,12/17/2014,890681207,1/22/2015,1217,421.89,364.69,513440.13,443827.73,69612.40 Sub-Saharan Africa,Nigeria,Household,Offline,L,12/21/2014,291219508,12/31/2014,7179,668.27,502.54,4797510.33,3607734.66,1189775.67 Europe,Macedonia,Baby Food,Offline,L,10/20/2010,971843564,10/25/2010,8962,255.28,159.42,2287819.36,1428722.04,859097.32 Central America and the Caribbean,Costa Rica,Baby Food,Online,M,7/10/2017,707602202,7/29/2017,4071,255.28,159.42,1039244.88,648998.82,390246.06 Central America and the Caribbean,The Bahamas,Cereal,Online,M,6/1/2013,493856751,6/10/2013,2042,205.70,117.11,420039.40,239138.62,180900.78 Asia,Cambodia,Meat,Offline,M,11/24/2011,496281039,12/18/2011,9443,421.89,364.69,3983907.27,3443767.67,540139.60 Europe,Russia,Vegetables,Offline,M,4/21/2012,500861394,5/14/2012,4872,154.06,90.93,750580.32,443010.96,307569.36 Sub-Saharan Africa,Sao Tome and Principe,Baby Food,Offline,C,4/3/2011,363896644,4/9/2011,3958,255.28,159.42,1010398.24,630984.36,379413.88 Australia and Oceania,Nauru,Vegetables,Online,L,1/1/2014,461998116,2/6/2014,4364,154.06,90.93,672317.84,396818.52,275499.32 Australia and Oceania,Vanuatu,Office Supplies,Offline,M,7/5/2015,342089641,7/16/2015,781,651.21,524.96,508595.01,409993.76,98601.25 Asia,South Korea,Cereal,Offline,L,10/19/2011,971407544,12/5/2011,9934,205.70,117.11,2043423.80,1163370.74,880053.06 Central America and the Caribbean,Nicaragua,Fruits,Online,L,4/27/2011,687500655,6/11/2011,5577,9.33,6.92,52033.41,38592.84,13440.57 Asia,Mongolia,Meat,Online,L,1/5/2016,148230302,1/26/2016,3495,421.89,364.69,1474505.55,1274591.55,199914.00 Middle East and North Africa,Iraq,Clothes,Online,L,7/11/2017,981770312,8/8/2017,6507,109.28,35.84,711084.96,233210.88,477874.08 Central America and the Caribbean,Costa Rica,Vegetables,Offline,L,2/23/2016,836607015,3/28/2016,9462,154.06,90.93,1457715.72,860379.66,597336.06 Europe,Cyprus,Beverages,Online,M,1/2/2017,131539237,2/14/2017,4238,47.45,31.79,201093.10,134726.02,66367.08 Europe,Finland,Beverages,Online,C,2/28/2011,705678308,3/23/2011,4748,47.45,31.79,225292.60,150938.92,74353.68 Australia and Oceania,Samoa ,Household,Offline,H,3/28/2017,868448054,4/30/2017,1933,668.27,502.54,1291765.91,971409.82,320356.09 Europe,Monaco,Vegetables,Online,C,1/23/2017,349584805,3/6/2017,8767,154.06,90.93,1350644.02,797183.31,553460.71 Europe,Czech Republic,Vegetables,Offline,L,6/16/2012,749137389,6/22/2012,5256,154.06,90.93,809739.36,477928.08,331811.28 Middle East and North Africa,Afghanistan,Household,Online,C,11/18/2013,587467133,11/18/2013,3434,668.27,502.54,2294839.18,1725722.36,569116.82 Sub-Saharan Africa,Madagascar,Office Supplies,Online,L,12/7/2013,255247867,1/10/2014,2371,651.21,524.96,1544018.91,1244680.16,299338.75 Asia,Japan,Office Supplies,Offline,C,11/3/2013,663465917,12/1/2013,3163,651.21,524.96,2059777.23,1660448.48,399328.75 Asia,South Korea,Household,Online,C,2/11/2012,993420112,3/28/2012,3942,668.27,502.54,2634320.34,1981012.68,653307.66 Sub-Saharan Africa,Uganda,Baby Food,Offline,M,11/24/2015,946721780,12/5/2015,4868,255.28,159.42,1242703.04,776056.56,466646.48 Asia,Japan,Cosmetics,Offline,M,6/23/2014,295294749,7/31/2014,3133,437.20,263.33,1369747.60,825012.89,544734.71 Sub-Saharan Africa,Madagascar,Household,Online,L,5/4/2013,231375348,5/5/2013,7962,668.27,502.54,5320765.74,4001223.48,1319542.26 Sub-Saharan Africa,Zimbabwe,Cosmetics,Online,L,4/5/2015,217512404,4/22/2015,5609,437.20,263.33,2452254.80,1477017.97,975236.83 Asia,Cambodia,Cosmetics,Offline,C,6/29/2016,236567246,7/11/2016,4360,437.20,263.33,1906192.00,1148118.80,758073.20 Asia,Taiwan,Cosmetics,Online,L,8/2/2010,341713702,8/5/2010,9533,437.20,263.33,4167827.60,2510324.89,1657502.71 Asia,Taiwan,Fruits,Offline,C,11/9/2014,206438100,11/29/2014,8476,9.33,6.92,79081.08,58653.92,20427.16 Europe,Bulgaria,Baby Food,Offline,M,8/13/2013,474539268,9/11/2013,5569,255.28,159.42,1421654.32,887809.98,533844.34 Sub-Saharan Africa,Swaziland,Vegetables,Online,M,12/18/2014,510128533,12/30/2014,7224,154.06,90.93,1112929.44,656878.32,456051.12 Europe,Moldova ,Personal Care,Online,H,9/10/2016,647629725,10/19/2016,6882,81.73,56.67,562465.86,390002.94,172462.92 Europe,Latvia,Personal Care,Offline,C,2/6/2010,841779172,3/19/2010,18,81.73,56.67,1471.14,1020.06,451.08 Central America and the Caribbean,Saint Lucia,Office Supplies,Online,L,1/17/2014,217625701,2/26/2014,9136,651.21,524.96,5949454.56,4796034.56,1153420.00 Australia and Oceania,Fiji,Snacks,Online,M,8/5/2010,220530641,8/23/2010,8772,152.58,97.44,1338431.76,854743.68,483688.08 Europe,Kosovo,Clothes,Online,C,12/11/2016,566167819,12/11/2016,494,109.28,35.84,53984.32,17704.96,36279.36 Asia,North Korea,Clothes,Offline,L,7/6/2013,590523564,7/28/2013,7900,109.28,35.84,863312.00,283136.00,580176.00 Europe,Denmark,Personal Care,Online,H,11/3/2015,599896705,11/8/2015,1621,81.73,56.67,132484.33,91862.07,40622.26 North America,United States of America,Clothes,Offline,M,4/1/2010,520898568,5/10/2010,4317,109.28,35.84,471761.76,154721.28,317040.48 Europe,Latvia,Snacks,Offline,C,8/20/2010,350452983,10/7/2010,5680,152.58,97.44,866654.40,553459.20,313195.20 Europe,San Marino,Baby Food,Offline,H,10/21/2016,605796277,11/11/2016,7435,255.28,159.42,1898006.80,1185287.70,712719.10 Sub-Saharan Africa,Guinea,Snacks,Online,H,9/17/2010,974477279,10/23/2010,8337,152.58,97.44,1272059.46,812357.28,459702.18 Asia,Vietnam,Office Supplies,Offline,C,3/21/2013,764357316,4/21/2013,9170,651.21,524.96,5971595.70,4813883.20,1157712.50 Sub-Saharan Africa,Sierra Leone,Baby Food,Online,M,3/11/2012,253610217,4/18/2012,7754,255.28,159.42,1979441.12,1236142.68,743298.44 Asia,Nepal,Personal Care,Online,M,9/14/2011,240722310,10/30/2011,3936,81.73,56.67,321689.28,223053.12,98636.16 Europe,Hungary,Fruits,Offline,L,2/5/2013,694492423,3/14/2013,4596,9.33,6.92,42880.68,31804.32,11076.36 Asia,Thailand,Beverages,Online,M,3/22/2011,304031884,3/25/2011,8646,47.45,31.79,410252.70,274856.34,135396.36 Middle East and North Africa,Kuwait,Meat,Offline,M,5/4/2013,528764522,6/1/2013,2027,421.89,364.69,855171.03,739226.63,115944.40 Europe,Belgium,Household,Offline,L,8/20/2012,648426663,8/24/2012,2714,668.27,502.54,1813684.78,1363893.56,449791.22 North America,Canada,Cosmetics,Offline,M,9/20/2014,913067138,10/7/2014,5711,437.20,263.33,2496849.20,1503877.63,992971.57 Sub-Saharan Africa,Uganda,Personal Care,Online,M,2/13/2011,293047273,2/26/2011,8055,81.73,56.67,658335.15,456476.85,201858.30 Sub-Saharan Africa,Madagascar,Personal Care,Offline,C,5/12/2013,529040896,6/7/2013,3813,81.73,56.67,311636.49,216082.71,95553.78 Europe,Spain,Office Supplies,Online,M,4/27/2011,282034337,5/2/2011,9083,651.21,524.96,5914940.43,4768211.68,1146728.75 Sub-Saharan Africa,Botswana,Clothes,Offline,L,11/11/2014,983326423,12/17/2014,6995,109.28,35.84,764413.60,250700.80,513712.80 Sub-Saharan Africa,Sudan,Personal Care,Offline,C,3/15/2012,984528481,4/2/2012,2711,81.73,56.67,221570.03,153632.37,67937.66 Asia,Maldives,Office Supplies,Online,C,7/22/2011,507564342,9/1/2011,8423,651.21,524.96,5485141.83,4421738.08,1063403.75 Asia,Philippines,Fruits,Online,M,8/16/2014,294670331,8/20/2014,8354,9.33,6.92,77942.82,57809.68,20133.14 Middle East and North Africa,Jordan,Cosmetics,Offline,L,10/25/2012,258395278,12/13/2012,3760,437.20,263.33,1643872.00,990120.80,653751.20 Europe,Portugal,Cosmetics,Offline,L,10/5/2013,831600511,11/1/2013,7926,437.20,263.33,3465247.20,2087153.58,1378093.62 Europe,Monaco,Fruits,Online,M,10/11/2014,717459857,11/9/2014,1170,9.33,6.92,10916.10,8096.40,2819.70 Europe,Ukraine,Cosmetics,Online,H,4/5/2014,939459645,4/16/2014,5841,437.20,263.33,2553685.20,1538110.53,1015574.67 Europe,Slovenia,Clothes,Online,C,6/14/2015,791398704,6/29/2015,1318,109.28,35.84,144031.04,47237.12,96793.92 Asia,South Korea,Personal Care,Offline,C,1/31/2015,987388360,3/19/2015,9013,81.73,56.67,736632.49,510766.71,225865.78 Europe,Armenia,Vegetables,Offline,M,9/30/2014,511852443,11/19/2014,7367,154.06,90.93,1134960.02,669881.31,465078.71 Asia,Vietnam,Meat,Offline,L,2/2/2017,669527280,3/7/2017,6855,421.89,364.69,2892055.95,2499949.95,392106.00 Australia and Oceania,Tonga,Personal Care,Online,C,6/22/2014,135461699,8/3/2014,4982,81.73,56.67,407178.86,282329.94,124848.92 Asia,Laos,Beverages,Offline,M,6/18/2015,805017030,7/23/2015,1283,47.45,31.79,60878.35,40786.57,20091.78 Asia,China,Snacks,Online,C,10/3/2010,143867099,10/12/2010,2326,152.58,97.44,354901.08,226645.44,128255.64 Europe,Kosovo,Office Supplies,Online,M,11/2/2014,637998235,11/29/2014,6710,651.21,524.96,4369619.10,3522481.60,847137.50 Asia,Maldives,Baby Food,Offline,M,10/2/2016,343709266,11/8/2016,65,255.28,159.42,16593.20,10362.30,6230.90 Sub-Saharan Africa,Uganda,Meat,Offline,L,3/9/2014,537611520,4/28/2014,50,421.89,364.69,21094.50,18234.50,2860.00 Asia,Malaysia,Baby Food,Offline,H,3/28/2017,766628825,4/14/2017,1360,255.28,159.42,347180.80,216811.20,130369.60 Sub-Saharan Africa,Benin,Fruits,Online,C,5/12/2014,197997510,5/14/2014,718,9.33,6.92,6698.94,4968.56,1730.38 Middle East and North Africa,Iran,Fruits,Online,L,1/3/2014,769266402,1/10/2014,1878,9.33,6.92,17521.74,12995.76,4525.98 Australia and Oceania,Papua New Guinea,Personal Care,Online,M,7/18/2010,438296830,9/5/2010,627,81.73,56.67,51244.71,35532.09,15712.62 Sub-Saharan Africa,Mauritius ,Baby Food,Online,H,10/6/2010,833262622,11/4/2010,9782,255.28,159.42,2497148.96,1559446.44,937702.52 Europe,Iceland,Cereal,Offline,L,12/14/2014,502650105,12/29/2014,4191,205.70,117.11,862088.70,490808.01,371280.69 Sub-Saharan Africa,Burundi,Office Supplies,Offline,M,2/4/2013,765258109,2/17/2013,5735,651.21,524.96,3734689.35,3010645.60,724043.75 Sub-Saharan Africa,Burkina Faso,Fruits,Online,L,5/27/2011,760197961,7/7/2011,8325,9.33,6.92,77672.25,57609.00,20063.25 Sub-Saharan Africa,Burundi,Cereal,Offline,L,5/6/2013,596893489,5/10/2013,2903,205.70,117.11,597147.10,339970.33,257176.77 Australia and Oceania,East Timor,Cosmetics,Offline,M,11/25/2015,905081021,12/20/2015,2442,437.20,263.33,1067642.40,643051.86,424590.54 Asia,Bhutan,Clothes,Offline,C,4/24/2013,584809386,5/4/2013,6948,109.28,35.84,759277.44,249016.32,510261.12 Europe,Malta,Snacks,Offline,M,1/18/2016,856439912,2/20/2016,8457,152.58,97.44,1290369.06,824050.08,466318.98 Asia,Laos,Personal Care,Online,C,9/11/2016,310646426,9/11/2016,6036,81.73,56.67,493322.28,342060.12,151262.16 Sub-Saharan Africa,Democratic Republic of the Congo,Clothes,Online,M,6/28/2016,758415257,8/6/2016,783,109.28,35.84,85566.24,28062.72,57503.52 Central America and the Caribbean,Antigua and Barbuda ,Meat,Offline,M,12/11/2013,481045234,12/18/2013,829,421.89,364.69,349746.81,302328.01,47418.80 Central America and the Caribbean,Honduras,Meat,Online,L,3/13/2016,980147683,4/15/2016,6335,421.89,364.69,2672673.15,2310311.15,362362.00 Europe,Ireland,Meat,Offline,C,7/15/2012,227646434,8/10/2012,4493,421.89,364.69,1895551.77,1638552.17,256999.60 Middle East and North Africa,Egypt,Cereal,Offline,M,1/9/2016,315777814,1/23/2016,4527,205.70,117.11,931203.90,530156.97,401046.93 Sub-Saharan Africa,Cote d'Ivoire,Baby Food,Offline,M,4/13/2014,707090651,4/25/2014,2692,255.28,159.42,687213.76,429158.64,258055.12 Sub-Saharan Africa,Botswana,Meat,Offline,C,2/22/2011,484446275,4/11/2011,7273,421.89,364.69,3068405.97,2652390.37,416015.60 Asia,China,Cosmetics,Online,C,4/20/2015,601018512,5/27/2015,3588,437.20,263.33,1568673.60,944828.04,623845.56 Sub-Saharan Africa,Burkina Faso,Vegetables,Offline,M,10/12/2013,730293691,10/21/2013,8987,154.06,90.93,1384537.22,817187.91,567349.31 Australia and Oceania,Kiribati,Fruits,Online,H,8/12/2013,616070640,9/13/2013,7848,9.33,6.92,73221.84,54308.16,18913.68 Australia and Oceania,Tonga,Baby Food,Online,L,4/28/2015,522460687,6/4/2015,6582,255.28,159.42,1680252.96,1049302.44,630950.52 Europe,Liechtenstein,Snacks,Offline,M,9/14/2016,783887660,10/27/2016,8633,152.58,97.44,1317223.14,841199.52,476023.62 Central America and the Caribbean,Saint Vincent and the Grenadines,Household,Online,C,8/17/2016,455087888,9/18/2016,9474,668.27,502.54,6331189.98,4761063.96,1570126.02 Central America and the Caribbean,Dominican Republic,Personal Care,Offline,C,3/27/2011,461110198,4/21/2011,1609,81.73,56.67,131503.57,91182.03,40321.54 Australia and Oceania,Papua New Guinea,Vegetables,Offline,C,11/16/2012,447315919,11/23/2012,9576,154.06,90.93,1475278.56,870745.68,604532.88 Australia and Oceania,East Timor,Clothes,Online,C,1/16/2016,129378879,1/16/2016,4940,109.28,35.84,539843.20,177049.60,362793.60 Europe,Slovenia,Office Supplies,Online,M,4/13/2016,643285405,5/23/2016,1301,651.21,524.96,847224.21,682972.96,164251.25 Asia,Nepal,Fruits,Online,M,1/1/2014,495334327,2/20/2014,9290,9.33,6.92,86675.70,64286.80,22388.90 Asia,India,Personal Care,Offline,H,9/1/2010,512136971,9/18/2010,1566,81.73,56.67,127989.18,88745.22,39243.96 Asia,Bhutan,Baby Food,Online,H,8/6/2012,690617167,8/24/2012,7822,255.28,159.42,1996800.16,1246983.24,749816.92 Central America and the Caribbean,Honduras,Clothes,Offline,H,1/13/2012,648011243,2/23/2012,9782,109.28,35.84,1068976.96,350586.88,718390.08 Sub-Saharan Africa,Rwanda,Office Supplies,Online,C,8/21/2013,971868026,9/2/2013,6201,651.21,524.96,4038153.21,3255276.96,782876.25 Central America and the Caribbean,Barbados,Baby Food,Offline,H,7/24/2015,970048844,8/17/2015,7865,255.28,159.42,2007777.20,1253838.30,753938.90 Asia,Japan,Snacks,Online,M,3/29/2013,920727527,3/31/2013,2591,152.58,97.44,395334.78,252467.04,142867.74 Europe,Malta,Beverages,Online,H,9/30/2010,722390401,11/12/2010,228,47.45,31.79,10818.60,7248.12,3570.48 Middle East and North Africa,United Arab Emirates,Vegetables,Offline,H,12/31/2016,343836295,1/22/2017,7655,154.06,90.93,1179329.30,696069.15,483260.15 Australia and Oceania,Tuvalu,Snacks,Online,C,9/13/2011,274176537,10/18/2011,3785,152.58,97.44,577515.30,368810.40,208704.90 Europe,Montenegro,Personal Care,Offline,L,4/3/2017,172834956,4/16/2017,4559,81.73,56.67,372607.07,258358.53,114248.54 Europe,Cyprus,Baby Food,Online,L,9/16/2011,219547879,9/18/2011,7951,255.28,159.42,2029731.28,1267548.42,762182.86 Sub-Saharan Africa,Eritrea,Cosmetics,Offline,M,10/24/2015,664364135,11/29/2015,8966,437.20,263.33,3919935.20,2361016.78,1558918.42 Sub-Saharan Africa,Comoros,Vegetables,Offline,M,7/9/2013,477645051,7/18/2013,4640,154.06,90.93,714838.40,421915.20,292923.20 Central America and the Caribbean,Guatemala,Vegetables,Offline,C,5/12/2016,500064456,5/19/2016,9040,154.06,90.93,1392702.40,822007.20,570695.20 Sub-Saharan Africa,Comoros,Office Supplies,Online,M,3/18/2014,292608678,4/17/2014,8265,651.21,524.96,5382250.65,4338794.40,1043456.25 Sub-Saharan Africa,Central African Republic,Cosmetics,Offline,L,12/5/2016,386576545,12/16/2016,5445,437.20,263.33,2380554.00,1433831.85,946722.15 Asia,Thailand,Household,Offline,C,9/27/2012,933579385,9/30/2012,5741,668.27,502.54,3836538.07,2885082.14,951455.93 Australia and Oceania,Federated States of Micronesia,Office Supplies,Online,C,6/4/2017,355541026,7/17/2017,1345,651.21,524.96,875877.45,706071.20,169806.25 Asia,Bhutan,Fruits,Online,L,7/17/2017,294697797,8/17/2017,6482,9.33,6.92,60477.06,44855.44,15621.62 North America,Canada,Personal Care,Offline,C,1/28/2012,663598525,2/4/2012,2405,81.73,56.67,196560.65,136291.35,60269.30 Central America and the Caribbean,Saint Vincent and the Grenadines,Cereal,Offline,M,3/21/2016,995104539,4/16/2016,2401,205.70,117.11,493885.70,281181.11,212704.59 Sub-Saharan Africa,South Africa,Beverages,Online,H,2/27/2012,892389667,3/25/2012,6788,47.45,31.79,322090.60,215790.52,106300.08 Central America and the Caribbean,Guatemala,Clothes,Online,H,6/3/2013,478940236,6/17/2013,7914,109.28,35.84,864841.92,283637.76,581204.16 Central America and the Caribbean,Saint Vincent and the Grenadines,Personal Care,Offline,M,9/7/2015,848555076,10/9/2015,5159,81.73,56.67,421645.07,292360.53,129284.54 Sub-Saharan Africa,Burundi,Clothes,Online,L,9/6/2015,915345513,10/11/2015,9933,109.28,35.84,1085478.24,355998.72,729479.52 Sub-Saharan Africa,Liberia,Cosmetics,Online,M,12/30/2014,563735377,1/16/2015,680,437.20,263.33,297296.00,179064.40,118231.60 Australia and Oceania,East Timor,Cosmetics,Offline,H,4/13/2016,198460996,5/21/2016,7874,437.20,263.33,3442512.80,2073460.42,1369052.38 Europe,Portugal,Office Supplies,Online,L,11/24/2011,294571197,1/5/2012,9018,651.21,524.96,5872611.78,4734089.28,1138522.50 Central America and the Caribbean,Saint Kitts and Nevis ,Baby Food,Offline,C,5/29/2010,947427308,7/6/2010,3649,255.28,159.42,931516.72,581723.58,349793.14 Asia,Philippines,Office Supplies,Offline,L,2/1/2010,522703158,2/24/2010,8335,651.21,524.96,5427835.35,4375541.60,1052293.75 Europe,Hungary,Clothes,Offline,L,4/10/2010,606385076,4/19/2010,1674,109.28,35.84,182934.72,59996.16,122938.56 Europe,Hungary,Fruits,Offline,H,2/26/2015,154771888,4/12/2015,9296,9.33,6.92,86731.68,64328.32,22403.36 Sub-Saharan Africa,Zimbabwe,Beverages,Offline,H,11/3/2014,444474923,12/15/2014,8862,47.45,31.79,420501.90,281722.98,138778.92 Middle East and North Africa,Libya,Clothes,Offline,H,11/13/2011,122418010,11/13/2011,5064,109.28,35.84,553393.92,181493.76,371900.16 Europe,Estonia,Personal Care,Online,L,5/25/2017,155837476,6/30/2017,4627,81.73,56.67,378164.71,262212.09,115952.62 Sub-Saharan Africa,Lesotho,Office Supplies,Offline,C,3/3/2017,682282149,4/21/2017,1305,651.21,524.96,849829.05,685072.80,164756.25 Australia and Oceania,East Timor,Clothes,Online,M,2/14/2013,559613358,2/19/2013,883,109.28,35.84,96494.24,31646.72,64847.52 Europe,Vatican City,Meat,Online,C,1/18/2012,516004931,1/26/2012,6181,421.89,364.69,2607702.09,2254148.89,353553.20 Middle East and North Africa,Saudi Arabia,Baby Food,Offline,H,3/26/2014,899943196,4/21/2014,2045,255.28,159.42,522047.60,326013.90,196033.70 Asia,Singapore,Baby Food,Online,L,3/27/2017,330226981,4/8/2017,357,255.28,159.42,91134.96,56912.94,34222.02 Asia,Malaysia,Clothes,Offline,L,2/12/2012,645967614,3/20/2012,5027,109.28,35.84,549350.56,180167.68,369182.88 Europe,Poland,Clothes,Offline,L,7/1/2017,156588923,7/5/2017,6997,109.28,35.84,764632.16,250772.48,513859.68 Europe,San Marino,Cosmetics,Offline,H,3/17/2015,391827237,4/24/2015,9242,437.20,263.33,4040602.40,2433695.86,1606906.54 Sub-Saharan Africa,Ethiopia,Vegetables,Offline,L,8/22/2014,251731383,10/4/2014,1765,154.06,90.93,271915.90,160491.45,111424.45 Sub-Saharan Africa,The Gambia,Cosmetics,Online,C,2/10/2011,956662690,3/25/2011,6604,437.20,263.33,2887268.80,1739031.32,1148237.48 Europe,Lithuania,Beverages,Online,L,5/11/2012,197294986,6/27/2012,2825,47.45,31.79,134046.25,89806.75,44239.50 Europe,Romania,Vegetables,Offline,C,1/17/2012,684614598,2/14/2012,1528,154.06,90.93,235403.68,138941.04,96462.64 Asia,Sri Lanka,Personal Care,Offline,C,3/31/2016,699920356,5/18/2016,842,81.73,56.67,68816.66,47716.14,21100.52 Europe,Latvia,Cosmetics,Online,M,12/21/2016,844823586,1/22/2017,928,437.20,263.33,405721.60,244370.24,161351.36 Sub-Saharan Africa,Kenya,Cereal,Offline,C,1/26/2011,891248118,3/9/2011,8979,205.70,117.11,1846980.30,1051530.69,795449.61 Central America and the Caribbean,Guatemala,Clothes,Offline,H,8/10/2011,231430280,8/14/2011,4218,109.28,35.84,460943.04,151173.12,309769.92 Central America and the Caribbean,Grenada,Beverages,Offline,M,10/10/2013,127918899,11/15/2013,2900,47.45,31.79,137605.00,92191.00,45414.00 Europe,Kosovo,Baby Food,Online,H,11/3/2013,563575303,11/14/2013,3311,255.28,159.42,845232.08,527839.62,317392.46 Australia and Oceania,Tuvalu,Office Supplies,Online,M,12/1/2012,691573321,1/19/2013,769,651.21,524.96,500780.49,403694.24,97086.25 Europe,Bosnia and Herzegovina,Personal Care,Online,H,3/6/2013,185399281,4/2/2013,2622,81.73,56.67,214296.06,148588.74,65707.32 Central America and the Caribbean,Nicaragua,Household,Offline,H,1/31/2014,588852012,2/13/2014,3251,668.27,502.54,2172545.77,1633757.54,538788.23 Middle East and North Africa,Afghanistan,Snacks,Offline,C,2/27/2016,366042840,4/7/2016,9065,152.58,97.44,1383137.70,883293.60,499844.10 Europe,Montenegro,Vegetables,Online,H,3/11/2017,751395595,4/5/2017,3509,154.06,90.93,540596.54,319073.37,221523.17 Australia and Oceania,Papua New Guinea,Baby Food,Online,C,1/21/2016,799646604,1/21/2016,2055,255.28,159.42,524600.40,327608.10,196992.30 Central America and the Caribbean,El Salvador,Baby Food,Offline,M,6/19/2016,535844695,7/29/2016,7208,255.28,159.42,1840058.24,1149099.36,690958.88 Asia,Malaysia,Beverages,Offline,C,8/19/2015,505351197,9/12/2015,3504,47.45,31.79,166264.80,111392.16,54872.64 North America,Canada,Snacks,Offline,M,8/11/2015,423839938,9/8/2015,2511,152.58,97.44,383128.38,244671.84,138456.54 Asia,Bhutan,Vegetables,Offline,M,12/15/2011,527297246,1/20/2012,7828,154.06,90.93,1205981.68,711800.04,494181.64 Sub-Saharan Africa,Zimbabwe,Cereal,Online,C,8/21/2012,222021949,9/12/2012,83,205.70,117.11,17073.10,9720.13,7352.97 Central America and the Caribbean,Belize,Meat,Offline,H,7/24/2011,334625375,8/16/2011,1939,421.89,364.69,818044.71,707133.91,110910.80 Sub-Saharan Africa,Botswana,Vegetables,Online,C,1/14/2015,862031352,1/30/2015,3088,154.06,90.93,475737.28,280791.84,194945.44 Sub-Saharan Africa,Mauritius ,Clothes,Offline,M,4/23/2015,521476209,5/31/2015,5253,109.28,35.84,574047.84,188267.52,385780.32 Australia and Oceania,Tonga,Cosmetics,Online,L,1/13/2017,800508773,1/30/2017,7190,437.20,263.33,3143468.00,1893342.70,1250125.30 Asia,North Korea,Snacks,Online,C,10/21/2010,106990373,12/4/2010,9684,152.58,97.44,1477584.72,943608.96,533975.76 Europe,Andorra,Beverages,Online,C,10/5/2014,519094836,11/21/2014,552,47.45,31.79,26192.40,17548.08,8644.32 Sub-Saharan Africa,Mauritius ,Office Supplies,Online,M,4/6/2010,135308492,4/23/2010,9644,651.21,524.96,6280269.24,5062714.24,1217555.00 Middle East and North Africa,Oman,Meat,Online,H,10/20/2013,724430167,11/24/2013,3840,421.89,364.69,1620057.60,1400409.60,219648.00 Sub-Saharan Africa,Zimbabwe,Baby Food,Online,L,8/26/2012,975571191,10/10/2012,2050,255.28,159.42,523324.00,326811.00,196513.00 Sub-Saharan Africa,Equatorial Guinea,Snacks,Offline,H,1/27/2014,548155391,2/24/2014,216,152.58,97.44,32957.28,21047.04,11910.24 Europe,Liechtenstein,Household,Online,H,4/3/2011,521919095,5/2/2011,6313,668.27,502.54,4218788.51,3172535.02,1046253.49 Asia,Cambodia,Vegetables,Online,C,5/17/2017,246911132,6/18/2017,5346,154.06,90.93,823604.76,486111.78,337492.98 Central America and the Caribbean,Costa Rica,Fruits,Online,C,5/24/2016,493492829,6/26/2016,4350,9.33,6.92,40585.50,30102.00,10483.50 Europe,Russia,Fruits,Offline,H,4/6/2012,302338016,4/23/2012,7392,9.33,6.92,68967.36,51152.64,17814.72 Australia and Oceania,Tonga,Personal Care,Offline,L,7/28/2017,134433019,8/30/2017,572,81.73,56.67,46749.56,32415.24,14334.32 Sub-Saharan Africa,Lesotho,Clothes,Offline,C,11/25/2011,521076667,12/11/2011,7020,109.28,35.84,767145.60,251596.80,515548.80 Europe,Monaco,Beverages,Offline,M,10/1/2013,713880288,10/17/2013,1896,47.45,31.79,89965.20,60273.84,29691.36 Sub-Saharan Africa,Sudan,Meat,Offline,M,3/11/2016,934767711,4/3/2016,7393,421.89,364.69,3119032.77,2696153.17,422879.60 Australia and Oceania,Samoa ,Meat,Online,H,5/12/2013,125975263,6/17/2013,7735,421.89,364.69,3263319.15,2820877.15,442442.00 Australia and Oceania,Kiribati,Cereal,Offline,L,10/22/2011,900051772,12/6/2011,4175,205.70,117.11,858797.50,488934.25,369863.25 Sub-Saharan Africa,Togo,Cosmetics,Offline,H,8/1/2011,989858567,8/4/2011,2,437.20,263.33,874.40,526.66,347.74 Europe,Iceland,Clothes,Offline,M,1/3/2010,898569476,1/5/2010,5531,109.28,35.84,604427.68,198231.04,406196.64 Sub-Saharan Africa,Guinea,Personal Care,Offline,L,1/20/2013,749670827,3/7/2013,3112,81.73,56.67,254343.76,176357.04,77986.72 Sub-Saharan Africa,South Africa,Personal Care,Offline,H,5/22/2016,736961448,6/18/2016,2124,81.73,56.67,173594.52,120367.08,53227.44 Europe,Iceland,Cosmetics,Offline,L,10/1/2016,674552667,10/2/2016,3979,437.20,263.33,1739618.80,1047790.07,691828.73 Europe,Georgia,Fruits,Offline,C,9/20/2015,446868312,10/3/2015,7119,9.33,6.92,66420.27,49263.48,17156.79 Sub-Saharan Africa,Kenya,Cereal,Online,C,12/13/2015,458644711,1/3/2016,2017,205.70,117.11,414896.90,236210.87,178686.03 Asia,Bangladesh,Vegetables,Online,C,5/14/2017,284930694,6/2/2017,6179,154.06,90.93,951936.74,561856.47,390080.27 Europe,Albania,Fruits,Offline,M,5/26/2013,921087586,6/13/2013,9140,9.33,6.92,85276.20,63248.80,22027.40 Middle East and North Africa,Qatar,Cosmetics,Online,C,6/19/2017,732789218,7/3/2017,7469,437.20,263.33,3265446.80,1966811.77,1298635.03 Europe,Lithuania,Cosmetics,Online,H,10/2/2013,406021916,10/21/2013,9763,437.20,263.33,4268383.60,2570890.79,1697492.81 Sub-Saharan Africa,Cote d'Ivoire,Household,Offline,M,1/10/2014,697084510,2/10/2014,1652,668.27,502.54,1103982.04,830196.08,273785.96 Australia and Oceania,Tuvalu,Office Supplies,Offline,L,12/21/2015,182588326,1/2/2016,798,651.21,524.96,519665.58,418918.08,100747.50 Europe,Lithuania,Household,Offline,M,7/16/2014,209457194,7/29/2014,1893,668.27,502.54,1265035.11,951308.22,313726.89 Asia,Laos,Cosmetics,Online,L,5/3/2013,844927442,6/20/2013,1661,437.20,263.33,726189.20,437391.13,288798.07 Europe,Poland,Clothes,Offline,M,3/26/2013,426547896,4/13/2013,3856,109.28,35.84,421383.68,138199.04,283184.64 Australia and Oceania,Marshall Islands,Cosmetics,Online,L,3/4/2016,512179887,4/13/2016,4265,437.20,263.33,1864658.00,1123102.45,741555.55 Europe,Belarus,Cereal,Online,C,10/21/2013,929997241,11/6/2013,5705,205.70,117.11,1173518.50,668112.55,505405.95 Middle East and North Africa,Azerbaijan,Cereal,Online,C,12/26/2013,228486287,1/9/2014,3025,205.70,117.11,622242.50,354257.75,267984.75 Central America and the Caribbean,El Salvador,Snacks,Offline,H,4/11/2014,626445853,5/21/2014,8104,152.58,97.44,1236508.32,789653.76,446854.56 Europe,Vatican City,Meat,Online,C,4/21/2013,362987267,5/1/2013,4854,421.89,364.69,2047854.06,1770205.26,277648.80 Europe,Austria,Personal Care,Offline,C,7/21/2014,447534358,8/23/2014,4217,81.73,56.67,344655.41,238977.39,105678.02 Asia,Nepal,Office Supplies,Online,M,12/28/2014,609823453,1/25/2015,9166,651.21,524.96,5968990.86,4811783.36,1157207.50 Central America and the Caribbean,Antigua and Barbuda ,Cereal,Offline,L,6/10/2016,649903380,6/12/2016,9707,205.70,117.11,1996729.90,1136786.77,859943.13 Middle East and North Africa,Azerbaijan,Household,Offline,C,3/23/2014,888135468,4/23/2014,7876,668.27,502.54,5263294.52,3958005.04,1305289.48 Sub-Saharan Africa,Mali,Office Supplies,Offline,M,1/26/2016,815193545,2/15/2016,2740,651.21,524.96,1784315.40,1438390.40,345925.00 Europe,Albania,Cereal,Online,C,8/24/2015,442063939,10/8/2015,5398,205.70,117.11,1110368.60,632159.78,478208.82 Sub-Saharan Africa,Djibouti,Clothes,Online,C,6/15/2011,750045478,7/1/2011,3979,109.28,35.84,434825.12,142607.36,292217.76 Middle East and North Africa,Somalia,Baby Food,Offline,M,8/24/2010,540749490,9/1/2010,8646,255.28,159.42,2207150.88,1378345.32,828805.56 Middle East and North Africa,Tunisia ,Snacks,Offline,C,1/28/2010,486099803,3/5/2010,6589,152.58,97.44,1005349.62,642032.16,363317.46 Asia,Singapore,Personal Care,Online,M,3/27/2015,878332746,4/20/2015,7033,81.73,56.67,574807.09,398560.11,176246.98 North America,Greenland,Cereal,Online,C,9/28/2013,279997146,11/4/2013,6232,205.70,117.11,1281922.40,729829.52,552092.88 Middle East and North Africa,Iran,Household,Online,L,1/4/2017,473954331,1/6/2017,2474,668.27,502.54,1653299.98,1243283.96,410016.02 Asia,China,Beverages,Offline,H,1/3/2011,613378131,2/10/2011,1074,47.45,31.79,50961.30,34142.46,16818.84 Australia and Oceania,Vanuatu,Baby Food,Offline,M,1/18/2013,371754872,2/9/2013,9383,255.28,159.42,2395292.24,1495837.86,899454.38 Europe,Ireland,Fruits,Online,L,1/11/2015,392883384,2/3/2015,1779,9.33,6.92,16598.07,12310.68,4287.39 Europe,Hungary,Snacks,Offline,L,6/18/2017,940874993,7/8/2017,4674,152.58,97.44,713158.92,455434.56,257724.36 North America,Greenland,Beverages,Online,H,7/30/2010,550153529,9/3/2010,1510,47.45,31.79,71649.50,48002.90,23646.60 Europe,Georgia,Meat,Offline,M,12/16/2015,975455319,2/3/2016,7761,421.89,364.69,3274288.29,2830359.09,443929.20 Sub-Saharan Africa,Benin,Meat,Online,H,8/8/2014,441829192,9/9/2014,5931,421.89,364.69,2502229.59,2162976.39,339253.20 Middle East and North Africa,Saudi Arabia,Clothes,Online,H,4/16/2011,394636476,5/5/2011,558,109.28,35.84,60978.24,19998.72,40979.52 Middle East and North Africa,Kuwait,Cosmetics,Offline,H,8/27/2015,549550998,9/30/2015,3207,437.20,263.33,1402100.40,844499.31,557601.09 Central America and the Caribbean,Cuba,Office Supplies,Offline,L,9/3/2015,242559087,9/12/2015,7479,651.21,524.96,4870399.59,3926175.84,944223.75 Sub-Saharan Africa,Malawi,Cereal,Offline,L,10/1/2011,679959571,10/23/2011,4002,205.70,117.11,823211.40,468674.22,354537.18 Middle East and North Africa,Iran,Household,Online,L,12/4/2012,888363778,12/11/2012,5438,668.27,502.54,3634052.26,2732812.52,901239.74 Europe,Lithuania,Snacks,Offline,C,5/17/2010,864695537,6/28/2010,1480,152.58,97.44,225818.40,144211.20,81607.20 Asia,Mongolia,Snacks,Online,H,6/25/2011,226191174,7/9/2011,3850,152.58,97.44,587433.00,375144.00,212289.00 Middle East and North Africa,Jordan,Cereal,Online,C,5/3/2013,460399520,5/3/2013,1304,205.70,117.11,268232.80,152711.44,115521.36 Central America and the Caribbean,El Salvador,Clothes,Online,L,2/3/2014,875181901,3/18/2014,4628,109.28,35.84,505747.84,165867.52,339880.32 Central America and the Caribbean,Costa Rica,Cosmetics,Offline,L,10/3/2016,848712146,10/21/2016,1639,437.20,263.33,716570.80,431597.87,284972.93 Europe,Albania,Cereal,Online,C,4/3/2010,279476583,4/22/2010,2186,205.70,117.11,449660.20,256002.46,193657.74 Middle East and North Africa,Saudi Arabia,Beverages,Offline,H,1/29/2011,936274039,2/24/2011,3149,47.45,31.79,149420.05,100106.71,49313.34 Sub-Saharan Africa,Uganda,Fruits,Online,L,1/28/2014,608215844,3/2/2014,3439,9.33,6.92,32085.87,23797.88,8287.99 Asia,Singapore,Fruits,Offline,H,5/13/2011,754725825,6/2/2011,8998,9.33,6.92,83951.34,62266.16,21685.18 North America,United States of America,Office Supplies,Online,C,4/10/2011,655540311,5/13/2011,7800,651.21,524.96,5079438.00,4094688.00,984750.00 Europe,Georgia,Household,Online,M,11/4/2011,560708129,11/10/2011,4850,668.27,502.54,3241109.50,2437319.00,803790.50 Europe,Sweden,Office Supplies,Offline,M,3/3/2012,340590608,4/7/2012,7184,651.21,524.96,4678292.64,3771312.64,906980.00 Europe,Liechtenstein,Office Supplies,Online,L,3/17/2016,835861575,3/21/2016,8870,651.21,524.96,5776232.70,4656395.20,1119837.50 Europe,Czech Republic,Beverages,Offline,M,11/1/2013,707507359,11/14/2013,6005,47.45,31.79,284937.25,190898.95,94038.30 Australia and Oceania,Kiribati,Personal Care,Online,L,11/30/2014,486826789,1/18/2015,1720,81.73,56.67,140575.60,97472.40,43103.20 Sub-Saharan Africa,Mali,Office Supplies,Online,H,3/27/2015,325431191,4/4/2015,1176,651.21,524.96,765822.96,617352.96,148470.00 Sub-Saharan Africa,Sudan,Snacks,Offline,M,6/9/2015,445244395,7/10/2015,6566,152.58,97.44,1001840.28,639791.04,362049.24 Asia,Bangladesh,Beverages,Offline,H,3/23/2017,688502728,4/10/2017,2112,47.45,31.79,100214.40,67140.48,33073.92 Europe,Lithuania,Snacks,Offline,C,1/5/2012,967755019,1/15/2012,9071,152.58,97.44,1384053.18,883878.24,500174.94 Middle East and North Africa,Morocco,Meat,Offline,L,12/27/2014,815862596,1/5/2015,727,421.89,364.69,306714.03,265129.63,41584.40 Australia and Oceania,Kiribati,Snacks,Offline,C,11/28/2015,735999286,12/4/2015,7399,152.58,97.44,1128939.42,720958.56,407980.86 Australia and Oceania,Tuvalu,Personal Care,Offline,M,3/1/2013,851651418,3/6/2013,1435,81.73,56.67,117282.55,81321.45,35961.10 Middle East and North Africa,Azerbaijan,Clothes,Online,H,7/28/2017,456617820,7/28/2017,2215,109.28,35.84,242055.20,79385.60,162669.60 Asia,Turkmenistan,Snacks,Online,C,9/20/2010,265009820,11/6/2010,1150,152.58,97.44,175467.00,112056.00,63411.00 Australia and Oceania,Tonga,Meat,Online,M,11/29/2016,161251246,1/6/2017,6682,421.89,364.69,2819068.98,2436858.58,382210.40 Sub-Saharan Africa,Cameroon,Cosmetics,Offline,H,2/1/2016,550078427,3/5/2016,9285,437.20,263.33,4059402.00,2445019.05,1614382.95 Central America and the Caribbean,Grenada,Meat,Offline,M,9/27/2015,106540191,10/23/2015,6465,421.89,364.69,2727518.85,2357720.85,369798.00 Australia and Oceania,Papua New Guinea,Household,Online,M,11/12/2016,725997865,12/9/2016,7756,668.27,502.54,5183102.12,3897700.24,1285401.88 Europe,Moldova ,Cereal,Offline,H,3/4/2010,774125277,4/7/2010,9727,205.70,117.11,2000843.90,1139128.97,861714.93 Europe,Ukraine,Snacks,Online,H,2/18/2010,936908757,2/25/2010,976,152.58,97.44,148918.08,95101.44,53816.64 Asia,Vietnam,Fruits,Offline,C,5/17/2013,170647132,7/1/2013,7133,9.33,6.92,66550.89,49360.36,17190.53 Asia,Thailand,Cosmetics,Offline,C,7/28/2017,651951730,8/7/2017,5860,437.20,263.33,2561992.00,1543113.80,1018878.20 Sub-Saharan Africa,Botswana,Snacks,Online,H,2/11/2010,127746379,2/14/2010,1847,152.58,97.44,281815.26,179971.68,101843.58 Sub-Saharan Africa,Seychelles ,Snacks,Online,C,4/27/2017,465267407,6/4/2017,1820,152.58,97.44,277695.60,177340.80,100354.80 Middle East and North Africa,Israel,Fruits,Online,M,5/5/2017,902063643,5/20/2017,9533,9.33,6.92,88942.89,65968.36,22974.53 Asia,Cambodia,Clothes,Offline,H,2/16/2012,295996415,2/18/2012,772,109.28,35.84,84364.16,27668.48,56695.68 Asia,Tajikistan,Beverages,Offline,H,1/14/2016,275239551,1/15/2016,8354,47.45,31.79,396397.30,265573.66,130823.64 Middle East and North Africa,Afghanistan,Office Supplies,Online,C,3/19/2014,288279378,4/19/2014,7129,651.21,524.96,4642476.09,3742439.84,900036.25 Asia,Vietnam,Snacks,Offline,H,10/15/2011,753914725,11/29/2011,8976,152.58,97.44,1369558.08,874621.44,494936.64 Asia,Kazakhstan,Office Supplies,Offline,L,12/19/2014,811256921,12/31/2014,7806,651.21,524.96,5083345.26,4097837.76,985507.50 Middle East and North Africa,Israel,Household,Offline,M,1/30/2012,569729793,3/9/2012,4561,668.27,502.54,3047979.47,2292084.94,755894.53 Sub-Saharan Africa,Guinea,Clothes,Online,L,4/1/2015,659069669,5/17/2015,2216,109.28,35.84,242164.48,79421.44,162743.04 Europe,Macedonia,Baby Food,Offline,H,2/22/2011,879325377,4/5/2011,775,255.28,159.42,197842.00,123550.50,74291.50 Central America and the Caribbean,Honduras,Office Supplies,Offline,H,3/27/2010,650858247,5/13/2010,2274,651.21,524.96,1480851.54,1193759.04,287092.50 Middle East and North Africa,Yemen,Cosmetics,Online,L,9/5/2012,364342105,9/27/2012,5780,437.20,263.33,2527016.00,1522047.40,1004968.60 Asia,Vietnam,Cereal,Online,H,2/22/2012,930763280,4/2/2012,2393,205.70,117.11,492240.10,280244.23,211995.87 Europe,Luxembourg,Cosmetics,Offline,H,9/15/2014,631420600,9/27/2014,242,437.20,263.33,105802.40,63725.86,42076.54 Asia,Vietnam,Cereal,Online,C,5/14/2012,967925393,5/28/2012,9488,205.70,117.11,1951681.60,1111139.68,840541.92 Sub-Saharan Africa,Guinea-Bissau,Clothes,Offline,M,2/16/2017,812201488,2/24/2017,7324,109.28,35.84,800366.72,262492.16,537874.56 Sub-Saharan Africa,Benin,Personal Care,Offline,H,10/6/2011,456485211,10/26/2011,2973,81.73,56.67,242983.29,168479.91,74503.38 North America,Greenland,Office Supplies,Online,L,3/9/2014,263325393,3/25/2014,2690,651.21,524.96,1751754.90,1412142.40,339612.50 Asia,Cambodia,Personal Care,Offline,L,1/30/2013,215583360,2/21/2013,4762,81.73,56.67,389198.26,269862.54,119335.72 Asia,Tajikistan,Meat,Online,M,2/21/2017,366432940,2/26/2017,4505,421.89,364.69,1900614.45,1642928.45,257686.00 Sub-Saharan Africa,Ethiopia,Personal Care,Offline,L,5/25/2013,389360463,7/10/2013,9268,81.73,56.67,757473.64,525217.56,232256.08 Middle East and North Africa,Kuwait,Cereal,Offline,M,6/12/2016,928164756,6/22/2016,3432,205.70,117.11,705962.40,401921.52,304040.88 Central America and the Caribbean,Trinidad and Tobago,Cereal,Online,L,9/2/2011,446957147,10/1/2011,3407,205.70,117.11,700819.90,398993.77,301826.13 Sub-Saharan Africa,Central African Republic,Clothes,Offline,L,1/4/2012,180161464,1/27/2012,2636,109.28,35.84,288062.08,94474.24,193587.84 Sub-Saharan Africa,Madagascar,Cosmetics,Offline,H,5/1/2016,982514035,5/25/2016,6592,437.20,263.33,2882022.40,1735871.36,1146151.04 Sub-Saharan Africa,Malawi,Fruits,Offline,M,3/17/2013,179063689,3/19/2013,7780,9.33,6.92,72587.40,53837.60,18749.80 Europe,Portugal,Snacks,Offline,C,12/28/2014,115171754,2/9/2015,736,152.58,97.44,112298.88,71715.84,40583.04 Australia and Oceania,East Timor,Clothes,Online,H,3/2/2016,506512057,3/19/2016,7028,109.28,35.84,768019.84,251883.52,516136.32 Middle East and North Africa,Morocco,Personal Care,Offline,H,4/15/2012,689070928,4/26/2012,255,81.73,56.67,20841.15,14450.85,6390.30 Sub-Saharan Africa,Ethiopia,Fruits,Online,C,5/2/2011,969147193,5/2/2011,1046,9.33,6.92,9759.18,7238.32,2520.86 Sub-Saharan Africa,Rwanda,Baby Food,Online,M,10/6/2014,373352181,10/26/2014,2062,255.28,159.42,526387.36,328724.04,197663.32 Middle East and North Africa,Lebanon,Personal Care,Online,H,10/4/2013,698609721,11/20/2013,2996,81.73,56.67,244863.08,169783.32,75079.76 Europe,Lithuania,Cosmetics,Online,C,9/14/2015,662156140,10/2/2015,5571,437.20,263.33,2435641.20,1467011.43,968629.77 Europe,Poland,Fruits,Offline,L,2/9/2010,851540267,2/21/2010,8543,9.33,6.92,79706.19,59117.56,20588.63 Middle East and North Africa,Libya,Beverages,Offline,C,4/13/2010,574623429,5/2/2010,2697,47.45,31.79,127972.65,85737.63,42235.02 Australia and Oceania,Fiji,Personal Care,Online,L,8/26/2011,109579455,9/13/2011,5851,81.73,56.67,478202.23,331576.17,146626.06 Sub-Saharan Africa,Liberia,Baby Food,Offline,L,9/19/2010,254894673,11/8/2010,7853,255.28,159.42,2004713.84,1251925.26,752788.58 Europe,Croatia,Meat,Online,C,5/26/2016,979367911,7/11/2016,5584,421.89,364.69,2355833.76,2036428.96,319404.80 Australia and Oceania,New Zealand,Clothes,Offline,C,12/22/2015,972110497,2/9/2016,7954,109.28,35.84,869213.12,285071.36,584141.76 North America,Canada,Snacks,Offline,M,9/13/2016,792546260,10/23/2016,905,152.58,97.44,138084.90,88183.20,49901.70 Sub-Saharan Africa,The Gambia,Office Supplies,Online,C,10/7/2011,620411527,10/22/2011,2413,651.21,524.96,1571369.73,1266728.48,304641.25 Sub-Saharan Africa,Ethiopia,Cosmetics,Offline,M,5/9/2014,705755126,5/17/2014,7480,437.20,263.33,3270256.00,1969708.40,1300547.60 Europe,Spain,Clothes,Offline,M,12/28/2015,918938386,1/12/2016,3144,109.28,35.84,343576.32,112680.96,230895.36 Europe,Latvia,Clothes,Online,L,1/21/2013,300635135,2/10/2013,3472,109.28,35.84,379420.16,124436.48,254983.68 Sub-Saharan Africa,Cote d'Ivoire,Meat,Online,H,7/28/2010,211831700,8/20/2010,4562,421.89,364.69,1924662.18,1663715.78,260946.40 Middle East and North Africa,Algeria,Personal Care,Online,L,10/30/2010,283826911,11/7/2010,9545,81.73,56.67,780112.85,540915.15,239197.70 Middle East and North Africa,Somalia,Cereal,Online,H,3/11/2017,668232095,4/7/2017,3581,205.70,117.11,736611.70,419370.91,317240.79 Australia and Oceania,Marshall Islands,Office Supplies,Online,M,2/25/2015,686971080,3/14/2015,8863,651.21,524.96,5771674.23,4652720.48,1118953.75 Asia,Nepal,Personal Care,Online,M,12/28/2013,182280194,1/27/2014,9615,81.73,56.67,785833.95,544882.05,240951.90 Australia and Oceania,Kiribati,Clothes,Offline,H,9/8/2012,866708266,9/11/2012,7091,109.28,35.84,774904.48,254141.44,520763.04 Central America and the Caribbean,Dominica,Beverages,Online,H,4/18/2011,473116624,5/31/2011,4578,47.45,31.79,217226.10,145534.62,71691.48 Central America and the Caribbean,Barbados,Baby Food,Online,L,9/16/2014,404679095,10/24/2014,2392,255.28,159.42,610629.76,381332.64,229297.12 Europe,Albania,Snacks,Online,M,9/29/2013,784882009,11/12/2013,2883,152.58,97.44,439888.14,280919.52,158968.62 Europe,Sweden,Cosmetics,Offline,M,8/27/2011,907524192,8/28/2011,5430,437.20,263.33,2373996.00,1429881.90,944114.10 Australia and Oceania,Federated States of Micronesia,Personal Care,Offline,L,9/26/2012,586716973,10/15/2012,1445,81.73,56.67,118099.85,81888.15,36211.70 Sub-Saharan Africa,Burkina Faso,Beverages,Offline,L,1/4/2011,606884181,2/13/2011,9370,47.45,31.79,444606.50,297872.30,146734.20 Sub-Saharan Africa,Benin,Office Supplies,Offline,M,9/11/2016,472762143,10/3/2016,9679,651.21,524.96,6303061.59,5081087.84,1221973.75 Middle East and North Africa,Yemen,Snacks,Offline,H,8/1/2014,659399688,8/11/2014,9876,152.58,97.44,1506880.08,962317.44,544562.64 Sub-Saharan Africa,Cote d'Ivoire,Fruits,Offline,L,3/26/2013,362158143,4/9/2013,9497,9.33,6.92,88607.01,65719.24,22887.77 Sub-Saharan Africa,Cameroon,Cosmetics,Online,C,12/3/2010,646711337,1/4/2011,5111,437.20,263.33,2234529.20,1345879.63,888649.57 Sub-Saharan Africa,Burkina Faso,Household,Offline,M,7/24/2014,399045598,8/16/2014,5315,668.27,502.54,3551855.05,2671000.10,880854.95 Central America and the Caribbean,Jamaica,Baby Food,Offline,L,3/12/2013,375459754,4/19/2013,5740,255.28,159.42,1465307.20,915070.80,550236.40 Europe,Czech Republic,Cosmetics,Offline,H,1/28/2012,952565133,3/5/2012,4046,437.20,263.33,1768911.20,1065433.18,703478.02 Australia and Oceania,Vanuatu,Cosmetics,Online,H,9/26/2013,777285563,10/17/2013,4926,437.20,263.33,2153647.20,1297163.58,856483.62 Sub-Saharan Africa,Democratic Republic of the Congo,Clothes,Online,M,3/15/2014,816857373,3/20/2014,5104,109.28,35.84,557765.12,182927.36,374837.76 Australia and Oceania,Tonga,Baby Food,Offline,L,5/9/2014,308829391,6/19/2014,8334,255.28,159.42,2127503.52,1328606.28,798897.24 Middle East and North Africa,Azerbaijan,Meat,Online,H,2/15/2016,811062943,3/29/2016,403,421.89,364.69,170021.67,146970.07,23051.60 Asia,Brunei,Baby Food,Online,L,3/3/2011,351731860,3/19/2011,4129,255.28,159.42,1054051.12,658245.18,395805.94 Middle East and North Africa,Kuwait,Beverages,Offline,M,11/29/2014,179322469,12/25/2014,4358,47.45,31.79,206787.10,138540.82,68246.28 Sub-Saharan Africa,The Gambia,Baby Food,Online,M,5/7/2017,712633597,6/4/2017,2973,255.28,159.42,758947.44,473955.66,284991.78 Central America and the Caribbean,Nicaragua,Meat,Online,L,2/6/2017,190776574,3/20/2017,3883,421.89,364.69,1638198.87,1416091.27,222107.60 Asia,Vietnam,Snacks,Online,H,1/30/2010,523175227,2/22/2010,8031,152.58,97.44,1225369.98,782540.64,442829.34 Europe,Switzerland,Vegetables,Online,M,12/23/2015,539565885,2/4/2016,8390,154.06,90.93,1292563.40,762902.70,529660.70 Europe,France,Cosmetics,Online,L,11/22/2013,939997375,11/29/2013,4967,437.20,263.33,2171572.40,1307960.11,863612.29 Asia,Vietnam,Vegetables,Offline,C,4/17/2014,244831025,5/28/2014,9796,154.06,90.93,1509171.76,890750.28,618421.48 Sub-Saharan Africa,Liberia,Cereal,Offline,M,5/3/2017,644740664,5/4/2017,1945,205.70,117.11,400086.50,227778.95,172307.55 Asia,Malaysia,Fruits,Online,L,9/8/2016,350712621,9/21/2016,2513,9.33,6.92,23446.29,17389.96,6056.33 Middle East and North Africa,Azerbaijan,Clothes,Online,C,11/9/2010,344045722,12/16/2010,9629,109.28,35.84,1052257.12,345103.36,707153.76 Asia,Singapore,Vegetables,Offline,L,7/24/2014,326351296,9/10/2014,3456,154.06,90.93,532431.36,314254.08,218177.28 Europe,Hungary,Snacks,Online,H,1/30/2017,969553172,2/7/2017,1184,152.58,97.44,180654.72,115368.96,65285.76 Europe,Austria,Snacks,Online,C,5/3/2016,765887677,6/18/2016,2038,152.58,97.44,310958.04,198582.72,112375.32 Central America and the Caribbean,Grenada,Beverages,Offline,L,2/6/2015,977903640,3/1/2015,2273,47.45,31.79,107853.85,72258.67,35595.18 Australia and Oceania,East Timor,Personal Care,Online,C,3/14/2017,688462388,4/3/2017,175,81.73,56.67,14302.75,9917.25,4385.50 Europe,Andorra,Vegetables,Offline,C,3/6/2016,850737750,3/7/2016,1060,154.06,90.93,163303.60,96385.80,66917.80 Central America and the Caribbean,Barbados,Vegetables,Offline,M,3/19/2014,238216054,5/6/2014,2279,154.06,90.93,351102.74,207229.47,143873.27 Asia,Maldives,Baby Food,Offline,M,10/6/2010,394696128,10/31/2010,8210,255.28,159.42,2095848.80,1308838.20,787010.60 Asia,Bangladesh,Office Supplies,Online,C,12/3/2013,684289300,12/19/2013,5265,651.21,524.96,3428620.65,2763914.40,664706.25 Australia and Oceania,Australia,Snacks,Offline,M,11/30/2013,541419398,1/9/2014,6886,152.58,97.44,1050665.88,670971.84,379694.04 Europe,Belgium,Baby Food,Online,H,3/7/2017,820822751,4/3/2017,8547,255.28,159.42,2181878.16,1362562.74,819315.42 Australia and Oceania,Vanuatu,Cosmetics,Online,C,4/15/2012,647548186,4/15/2012,2753,437.20,263.33,1203611.60,724947.49,478664.11 Sub-Saharan Africa,Gabon,Baby Food,Online,L,8/5/2011,566957032,9/18/2011,4040,255.28,159.42,1031331.20,644056.80,387274.40 Sub-Saharan Africa,Republic of the Congo,Office Supplies,Offline,L,2/26/2017,294723117,3/27/2017,3975,651.21,524.96,2588559.75,2086716.00,501843.75 Sub-Saharan Africa,Zambia,Cereal,Online,C,12/14/2016,966832768,1/25/2017,6156,205.70,117.11,1266289.20,720929.16,545360.04 Sub-Saharan Africa,The Gambia,Personal Care,Online,H,5/22/2011,189584815,5/28/2011,1215,81.73,56.67,99301.95,68854.05,30447.90 Central America and the Caribbean,Costa Rica,Personal Care,Online,M,1/28/2017,589590585,2/7/2017,1811,81.73,56.67,148013.03,102629.37,45383.66 Asia,South Korea,Meat,Offline,L,1/17/2010,363773906,2/15/2010,7637,421.89,364.69,3221973.93,2785137.53,436836.40 Sub-Saharan Africa,Madagascar,Household,Offline,H,10/27/2012,929371106,12/16/2012,418,668.27,502.54,279336.86,210061.72,69275.14 Sub-Saharan Africa,Kenya,Personal Care,Offline,M,12/5/2014,173931014,12/6/2014,8907,81.73,56.67,727969.11,504759.69,223209.42 Sub-Saharan Africa,South Sudan,Vegetables,Offline,L,7/7/2014,105314958,7/31/2014,3891,154.06,90.93,599447.46,353808.63,245638.83 Europe,Germany,Cosmetics,Online,C,8/4/2014,101696765,9/19/2014,3188,437.20,263.33,1393793.60,839496.04,554297.56 Europe,Hungary,Cereal,Online,L,8/27/2011,961562764,9/4/2011,6645,205.70,117.11,1366876.50,778195.95,588680.55 Europe,Portugal,Fruits,Offline,L,8/16/2014,853711783,9/28/2014,1143,9.33,6.92,10664.19,7909.56,2754.63 Asia,Malaysia,Meat,Online,L,10/9/2010,267255151,11/21/2010,5593,421.89,364.69,2359630.77,2039711.17,319919.60 Asia,Cambodia,Household,Online,C,12/9/2014,661616694,1/17/2015,5937,668.27,502.54,3967518.99,2983579.98,983939.01 Asia,India,Personal Care,Offline,M,9/24/2012,416532742,10/20/2012,150,81.73,56.67,12259.50,8500.50,3759.00 Middle East and North Africa,Libya,Beverages,Offline,L,5/4/2017,682052123,6/12/2017,3235,47.45,31.79,153500.75,102840.65,50660.10 Central America and the Caribbean,Antigua and Barbuda ,Fruits,Online,L,9/17/2012,428536164,10/10/2012,2229,9.33,6.92,20796.57,15424.68,5371.89 Europe,Norway,Fruits,Offline,C,5/18/2010,496658694,6/1/2010,1199,9.33,6.92,11186.67,8297.08,2889.59 Middle East and North Africa,Israel,Fruits,Offline,M,5/9/2015,447406041,5/19/2015,6245,9.33,6.92,58265.85,43215.40,15050.45 Europe,Moldova ,Clothes,Offline,C,10/16/2014,812077033,12/3/2014,495,109.28,35.84,54093.60,17740.80,36352.80 Sub-Saharan Africa,Equatorial Guinea,Beverages,Offline,M,1/19/2012,842282998,2/13/2012,9111,47.45,31.79,432316.95,289638.69,142678.26 Asia,Kyrgyzstan,Cereal,Online,C,5/6/2015,759947764,6/7/2015,4286,205.70,117.11,881630.20,501933.46,379696.74 Middle East and North Africa,Tunisia ,Vegetables,Offline,C,3/26/2011,407307660,4/13/2011,243,154.06,90.93,37436.58,22095.99,15340.59 Europe,Vatican City,Beverages,Online,C,11/3/2013,596911513,11/28/2013,8236,47.45,31.79,390798.20,261822.44,128975.76 Asia,China,Personal Care,Online,H,8/25/2015,861620652,8/29/2015,1553,81.73,56.67,126926.69,88008.51,38918.18 Middle East and North Africa,Turkey,Office Supplies,Offline,C,12/24/2013,804608905,2/10/2014,510,651.21,524.96,332117.10,267729.60,64387.50 Central America and the Caribbean,Honduras,Cosmetics,Online,C,10/20/2014,549362599,10/29/2014,7456,437.20,263.33,3259763.20,1963388.48,1296374.72 Sub-Saharan Africa,Zimbabwe,Clothes,Online,H,10/12/2013,289680564,11/12/2013,1771,109.28,35.84,193534.88,63472.64,130062.24 Sub-Saharan Africa,Namibia,Personal Care,Offline,L,3/24/2015,739674127,4/13/2015,4866,81.73,56.67,397698.18,275756.22,121941.96 Europe,Monaco,Meat,Online,C,2/24/2013,883767116,3/16/2013,5184,421.89,364.69,2187077.76,1890552.96,296524.80 Sub-Saharan Africa,Chad,Beverages,Offline,H,3/17/2010,226695859,4/26/2010,3197,47.45,31.79,151697.65,101632.63,50065.02 Australia and Oceania,Tuvalu,Vegetables,Online,M,11/24/2013,143509185,12/17/2013,6412,154.06,90.93,987832.72,583043.16,404789.56 North America,United States of America,Cereal,Online,H,1/27/2010,729568421,2/26/2010,4363,205.70,117.11,897469.10,510950.93,386518.17 Asia,Bhutan,Meat,Online,C,2/24/2012,350547397,3/3/2012,3619,421.89,364.69,1526819.91,1319813.11,207006.80 Sub-Saharan Africa,Zambia,Clothes,Online,C,11/21/2011,592432439,12/8/2011,2779,109.28,35.84,303689.12,99599.36,204089.76 Middle East and North Africa,Bahrain,Baby Food,Offline,L,6/27/2013,411522376,7/5/2013,7471,255.28,159.42,1907196.88,1191026.82,716170.06 Central America and the Caribbean,Dominican Republic,Fruits,Online,L,8/16/2014,184428536,9/26/2014,5357,9.33,6.92,49980.81,37070.44,12910.37 Europe,Italy,Household,Offline,M,4/4/2010,358074748,4/22/2010,1130,668.27,502.54,755145.10,567870.20,187274.90 Central America and the Caribbean,Saint Kitts and Nevis ,Beverages,Online,H,7/24/2011,999697339,7/25/2011,1513,47.45,31.79,71791.85,48098.27,23693.58 Sub-Saharan Africa,Rwanda,Beverages,Online,H,11/2/2011,446845138,12/17/2011,261,47.45,31.79,12384.45,8297.19,4087.26 Europe,Greece,Office Supplies,Online,M,1/9/2013,257379472,1/21/2013,3160,651.21,524.96,2057823.60,1658873.60,398950.00 Australia and Oceania,Papua New Guinea,Cosmetics,Offline,L,5/6/2014,259474170,5/13/2014,3028,437.20,263.33,1323841.60,797363.24,526478.36 Europe,Bulgaria,Personal Care,Offline,H,2/1/2016,801615560,3/21/2016,4713,81.73,56.67,385193.49,267085.71,118107.78 Europe,Monaco,Vegetables,Offline,C,10/22/2015,502602469,12/1/2015,94,154.06,90.93,14481.64,8547.42,5934.22 Europe,Albania,Clothes,Offline,C,2/19/2012,301546227,4/9/2012,3085,109.28,35.84,337128.80,110566.40,226562.40 Middle East and North Africa,Bahrain,Fruits,Offline,M,2/16/2016,307870662,3/23/2016,4625,9.33,6.92,43151.25,32005.00,11146.25 Europe,Croatia,Cereal,Online,L,3/7/2017,251312100,3/24/2017,7690,205.70,117.11,1581833.00,900575.90,681257.10 Europe,Estonia,Meat,Online,L,2/11/2017,831919372,2/13/2017,2284,421.89,364.69,963596.76,832951.96,130644.80 Sub-Saharan Africa,Djibouti,Office Supplies,Online,L,4/2/2011,570053803,4/15/2011,443,651.21,524.96,288486.03,232557.28,55928.75 Europe,Ireland,Cosmetics,Online,H,11/23/2014,756389224,12/2/2014,1235,437.20,263.33,539942.00,325212.55,214729.45 Asia,Laos,Meat,Offline,L,2/19/2014,501911962,3/5/2014,5758,421.89,364.69,2429242.62,2099885.02,329357.60 Australia and Oceania,Palau,Meat,Offline,L,1/20/2015,787920844,3/1/2015,2142,421.89,364.69,903688.38,781165.98,122522.40 Asia,Turkmenistan,Clothes,Online,M,3/24/2017,416027200,4/2/2017,548,109.28,35.84,59885.44,19640.32,40245.12 Asia,China,Cosmetics,Online,H,7/5/2017,958154857,8/11/2017,8169,437.20,263.33,3571486.80,2151142.77,1420344.03 Australia and Oceania,Samoa ,Fruits,Online,H,10/24/2013,906540143,12/12/2013,4229,9.33,6.92,39456.57,29264.68,10191.89 Sub-Saharan Africa,Democratic Republic of the Congo,Household,Offline,H,6/26/2016,623731887,7/5/2016,4981,668.27,502.54,3328652.87,2503151.74,825501.13 Sub-Saharan Africa,Tanzania,Snacks,Offline,M,3/20/2014,992591416,5/5/2014,8713,152.58,97.44,1329429.54,848994.72,480434.82 Europe,Slovenia,Vegetables,Offline,L,9/8/2015,266292560,10/4/2015,741,154.06,90.93,114158.46,67379.13,46779.33 Europe,Montenegro,Vegetables,Offline,M,7/4/2015,818321645,7/31/2015,8414,154.06,90.93,1296260.84,765085.02,531175.82 Asia,Cambodia,Cosmetics,Online,L,2/16/2013,592477500,3/7/2013,6113,437.20,263.33,2672603.60,1609736.29,1062867.31 Europe,Luxembourg,Baby Food,Online,L,8/24/2016,752871453,9/24/2016,248,255.28,159.42,63309.44,39536.16,23773.28 Middle East and North Africa,Libya,Baby Food,Online,M,4/17/2016,733927333,5/21/2016,4262,255.28,159.42,1088003.36,679448.04,408555.32 Sub-Saharan Africa,Sierra Leone,Cereal,Online,M,12/5/2010,490381467,12/13/2010,3628,205.70,117.11,746279.60,424875.08,321404.52 Middle East and North Africa,Tunisia ,Vegetables,Offline,L,11/4/2011,947282683,12/1/2011,852,154.06,90.93,131259.12,77472.36,53786.76 Asia,Singapore,Office Supplies,Online,C,3/29/2016,849992311,4/21/2016,468,651.21,524.96,304766.28,245681.28,59085.00 Central America and the Caribbean,Belize,Vegetables,Online,M,1/17/2011,814184176,2/5/2011,4046,154.06,90.93,623326.76,367902.78,255423.98 Sub-Saharan Africa,Botswana,Household,Offline,H,7/8/2014,175844609,7/8/2014,5182,668.27,502.54,3462975.14,2604162.28,858812.86 Sub-Saharan Africa,Niger,Cosmetics,Offline,C,12/2/2011,141272437,1/13/2012,4508,437.20,263.33,1970897.60,1187091.64,783805.96 Europe,Hungary,Fruits,Online,L,4/15/2012,637078988,5/14/2012,4685,9.33,6.92,43711.05,32420.20,11290.85 Australia and Oceania,Samoa ,Personal Care,Online,L,5/17/2014,760188090,6/25/2014,5404,81.73,56.67,441668.92,306244.68,135424.24 Middle East and North Africa,Tunisia ,Office Supplies,Offline,L,6/1/2010,127836072,6/11/2010,8389,651.21,524.96,5463000.69,4403889.44,1059111.25 Middle East and North Africa,Egypt,Cereal,Online,L,8/24/2012,227571761,9/12/2012,2396,205.70,117.11,492857.20,280595.56,212261.64 Central America and the Caribbean,Haiti,Snacks,Online,M,8/26/2011,367256486,9/2/2011,8210,152.58,97.44,1252681.80,799982.40,452699.40 Sub-Saharan Africa,Nigeria,Baby Food,Offline,M,6/7/2010,825064074,6/8/2010,3649,255.28,159.42,931516.72,581723.58,349793.14 Asia,Brunei,Office Supplies,Online,C,1/23/2013,599480855,3/10/2013,8562,651.21,524.96,5575660.02,4494707.52,1080952.50 Sub-Saharan Africa,Benin,Fruits,Offline,C,4/27/2013,559305655,5/16/2013,9827,9.33,6.92,91685.91,68002.84,23683.07 Middle East and North Africa,Syria,Vegetables,Offline,L,8/13/2013,293649804,8/27/2013,6357,154.06,90.93,979359.42,578042.01,401317.41 Central America and the Caribbean,Belize,Household,Online,L,8/25/2013,361937129,9/9/2013,4094,668.27,502.54,2735897.38,2057398.76,678498.62 Europe,Greece,Beverages,Offline,H,3/4/2014,943903958,3/19/2014,1012,47.45,31.79,48019.40,32171.48,15847.92 Sub-Saharan Africa,Djibouti,Snacks,Offline,M,3/23/2013,489599120,5/10/2013,2114,152.58,97.44,322554.12,205988.16,116565.96 Sub-Saharan Africa,Botswana,Beverages,Offline,H,6/24/2017,669383943,7/4/2017,4439,47.45,31.79,210630.55,141115.81,69514.74 Central America and the Caribbean,Belize,Beverages,Offline,M,9/29/2015,523932254,11/5/2015,2052,47.45,31.79,97367.40,65233.08,32134.32 Sub-Saharan Africa,Republic of the Congo,Cosmetics,Online,C,1/13/2013,514230382,2/8/2013,1052,437.20,263.33,459934.40,277023.16,182911.24 Sub-Saharan Africa,Guinea,Cereal,Offline,M,8/26/2011,271577155,9/8/2011,4570,205.70,117.11,940049.00,535192.70,404856.30 Europe,Belarus,Beverages,Offline,C,12/14/2014,847583901,12/14/2014,7766,47.45,31.79,368496.70,246881.14,121615.56 Middle East and North Africa,Syria,Baby Food,Online,L,1/3/2016,664174449,1/27/2016,2834,255.28,159.42,723463.52,451796.28,271667.24 Europe,Romania,Vegetables,Offline,C,7/7/2016,463585126,8/12/2016,3995,154.06,90.93,615469.70,363265.35,252204.35 Middle East and North Africa,Israel,Fruits,Online,C,6/19/2015,158364760,7/14/2015,2507,9.33,6.92,23390.31,17348.44,6041.87 Europe,Vatican City,Office Supplies,Offline,H,11/25/2012,181374680,1/9/2013,1653,651.21,524.96,1076450.13,867758.88,208691.25 Asia,Bhutan,Baby Food,Offline,H,9/22/2013,135788714,10/28/2013,1753,255.28,159.42,447505.84,279463.26,168042.58 Asia,China,Clothes,Online,M,4/30/2016,145093190,5/2/2016,5154,109.28,35.84,563229.12,184719.36,378509.76 Europe,Italy,Meat,Offline,H,5/19/2016,403086936,6/27/2016,1237,421.89,364.69,521877.93,451121.53,70756.40 Sub-Saharan Africa,Guinea,Clothes,Online,C,8/13/2010,723881280,10/2/2010,1412,109.28,35.84,154303.36,50606.08,103697.28 Middle East and North Africa,Tunisia ,Vegetables,Offline,M,10/8/2015,991900050,11/6/2015,4122,154.06,90.93,635035.32,374813.46,260221.86 Sub-Saharan Africa,Malawi,Meat,Offline,H,10/7/2011,711879575,11/11/2011,9841,421.89,364.69,4151819.49,3588914.29,562905.20 Sub-Saharan Africa,Kenya,Cereal,Offline,L,9/9/2013,358868682,9/22/2013,6073,205.70,117.11,1249216.10,711209.03,538007.07 Europe,Moldova ,Cereal,Online,H,12/16/2014,928228700,1/8/2015,2354,205.70,117.11,484217.80,275676.94,208540.86 Europe,Kosovo,Baby Food,Offline,M,11/5/2013,785633456,11/17/2013,5253,255.28,159.42,1340985.84,837433.26,503552.58 Middle East and North Africa,Kuwait,Beverages,Offline,C,4/6/2017,617069280,5/16/2017,3367,47.45,31.79,159764.15,107036.93,52727.22 Sub-Saharan Africa,Guinea,Cosmetics,Online,H,4/3/2014,278834998,4/9/2014,2327,437.20,263.33,1017364.40,612768.91,404595.49 Sub-Saharan Africa,Zimbabwe,Personal Care,Online,L,1/27/2010,147541940,2/20/2010,9794,81.73,56.67,800463.62,555025.98,245437.64 Sub-Saharan Africa,Niger,Vegetables,Offline,C,10/29/2014,670113933,12/11/2014,459,154.06,90.93,70713.54,41736.87,28976.67 Central America and the Caribbean,Jamaica,Cosmetics,Online,M,12/18/2016,113787305,1/13/2017,1047,437.20,263.33,457748.40,275706.51,182041.89 Sub-Saharan Africa,Ghana,Cereal,Offline,C,5/13/2017,416110885,6/8/2017,5313,205.70,117.11,1092884.10,622205.43,470678.67 Central America and the Caribbean,Nicaragua,Personal Care,Offline,C,5/25/2010,434946000,6/3/2010,9042,81.73,56.67,739002.66,512410.14,226592.52 Australia and Oceania,Tonga,Personal Care,Offline,C,6/4/2010,898466479,7/2/2010,5052,81.73,56.67,412899.96,286296.84,126603.12 Europe,Serbia,Office Supplies,Online,H,2/27/2010,355158650,4/18/2010,8192,651.21,524.96,5334712.32,4300472.32,1034240.00 Middle East and North Africa,Egypt,Beverages,Online,L,9/27/2014,123821341,10/27/2014,341,47.45,31.79,16180.45,10840.39,5340.06 Australia and Oceania,Solomon Islands,Fruits,Online,L,3/21/2015,243565881,4/26/2015,5412,9.33,6.92,50493.96,37451.04,13042.92 Middle East and North Africa,Syria,Snacks,Online,C,1/28/2015,823816096,2/23/2015,4345,152.58,97.44,662960.10,423376.80,239583.30 Middle East and North Africa,Iraq,Baby Food,Online,C,4/14/2011,694308316,5/4/2011,115,255.28,159.42,29357.20,18333.30,11023.90 Europe,Kosovo,Baby Food,Offline,C,3/28/2013,555091369,4/22/2013,2726,255.28,159.42,695893.28,434578.92,261314.36 Europe,Ireland,Clothes,Offline,C,4/2/2016,726526582,4/15/2016,4215,109.28,35.84,460615.20,151065.60,309549.60 Asia,India,Meat,Online,M,12/3/2012,699287784,1/18/2013,3650,421.89,364.69,1539898.50,1331118.50,208780.00 Asia,Thailand,Cereal,Online,L,1/21/2012,484361302,3/5/2012,2128,205.70,117.11,437729.60,249210.08,188519.52 Sub-Saharan Africa,Niger,Office Supplies,Offline,C,2/26/2012,163045966,3/17/2012,7779,651.21,524.96,5065762.59,4083663.84,982098.75 Middle East and North Africa,Pakistan,Vegetables,Online,C,10/17/2012,336953103,12/5/2012,766,154.06,90.93,118009.96,69652.38,48357.58 Sub-Saharan Africa,Equatorial Guinea,Household,Offline,L,11/1/2010,778006541,12/15/2010,8279,668.27,502.54,5532607.33,4160528.66,1372078.67 Sub-Saharan Africa,Democratic Republic of the Congo,Snacks,Online,L,10/6/2011,878442609,11/5/2011,9544,152.58,97.44,1456223.52,929967.36,526256.16 Sub-Saharan Africa,Zambia,Personal Care,Offline,L,10/10/2010,100810134,11/2/2010,814,81.73,56.67,66528.22,46129.38,20398.84 Australia and Oceania,East Timor,Vegetables,Online,M,9/15/2011,227970445,9/15/2011,375,154.06,90.93,57772.50,34098.75,23673.75 Sub-Saharan Africa,Kenya,Meat,Offline,L,9/2/2015,413097369,9/30/2015,3546,421.89,364.69,1496021.94,1293190.74,202831.20 Europe,Ireland,Meat,Online,C,4/9/2017,329677236,5/15/2017,7675,421.89,364.69,3238005.75,2798995.75,439010.00 Asia,Cambodia,Personal Care,Online,M,12/19/2015,621508872,1/29/2016,7141,81.73,56.67,583633.93,404680.47,178953.46 Sub-Saharan Africa,Swaziland,Clothes,Offline,L,4/10/2012,652703607,5/5/2012,8357,109.28,35.84,913252.96,299514.88,613738.08 Central America and the Caribbean,The Bahamas,Office Supplies,Offline,L,7/29/2011,757685267,8/4/2011,4763,651.21,524.96,3101713.23,2500384.48,601328.75 Europe,Spain,Vegetables,Online,H,9/21/2012,891190183,10/9/2012,1834,154.06,90.93,282546.04,166765.62,115780.42 Central America and the Caribbean,Belize,Personal Care,Offline,L,11/14/2011,178267180,12/16/2011,2075,81.73,56.67,169589.75,117590.25,51999.50 Europe,United Kingdom,Baby Food,Online,M,10/16/2013,964277589,11/16/2013,22,255.28,159.42,5616.16,3507.24,2108.92 Europe,Serbia,Office Supplies,Offline,M,12/23/2012,264895236,1/29/2013,7242,651.21,524.96,4716062.82,3801760.32,914302.50 Europe,Slovenia,Meat,Online,L,7/21/2012,116106450,8/27/2012,7334,421.89,364.69,3094141.26,2674636.46,419504.80 Australia and Oceania,Papua New Guinea,Beverages,Online,C,12/2/2012,824210059,12/6/2012,927,47.45,31.79,43986.15,29469.33,14516.82 Middle East and North Africa,Pakistan,Cosmetics,Online,H,7/20/2015,515817391,8/15/2015,684,437.20,263.33,299044.80,180117.72,118927.08 Australia and Oceania,New Zealand,Beverages,Online,C,8/10/2011,987852275,9/7/2011,6295,47.45,31.79,298697.75,200118.05,98579.70 Sub-Saharan Africa,Ghana,Fruits,Offline,L,1/22/2016,957551038,3/11/2016,9486,9.33,6.92,88504.38,65643.12,22861.26 Central America and the Caribbean,Jamaica,Snacks,Offline,H,11/3/2010,112462508,11/18/2010,9010,152.58,97.44,1374745.80,877934.40,496811.40 Europe,Luxembourg,Personal Care,Offline,L,10/31/2016,460448014,11/18/2016,5654,81.73,56.67,462101.42,320412.18,141689.24 Europe,Kosovo,Beverages,Offline,M,4/27/2014,479681384,6/2/2014,7236,47.45,31.79,343348.20,230032.44,113315.76 Sub-Saharan Africa,Republic of the Congo,Snacks,Online,L,12/12/2014,968648946,12/22/2014,3603,152.58,97.44,549745.74,351076.32,198669.42 Australia and Oceania,Kiribati,Office Supplies,Online,H,6/27/2012,996149528,7/19/2012,1637,651.21,524.96,1066030.77,859359.52,206671.25 Europe,Serbia,Office Supplies,Offline,C,12/7/2016,151294457,12/22/2016,247,651.21,524.96,160848.87,129665.12,31183.75 Middle East and North Africa,Israel,Snacks,Offline,C,10/31/2012,793507564,11/19/2012,5376,152.58,97.44,820270.08,523837.44,296432.64 Sub-Saharan Africa,Ghana,Office Supplies,Offline,H,2/1/2016,402525174,3/4/2016,4999,651.21,524.96,3255398.79,2624275.04,631123.75 Europe,Croatia,Beverages,Online,H,2/26/2017,128396117,4/2/2017,4119,47.45,31.79,195446.55,130943.01,64503.54 Sub-Saharan Africa,Sao Tome and Principe,Snacks,Online,C,2/23/2015,741481721,3/19/2015,9773,152.58,97.44,1491164.34,952281.12,538883.22 Sub-Saharan Africa,Gabon,Snacks,Offline,H,1/4/2014,382455813,2/10/2014,6029,152.58,97.44,919904.82,587465.76,332439.06 Europe,Bosnia and Herzegovina,Fruits,Offline,C,3/11/2011,412304723,3/30/2011,8985,9.33,6.92,83830.05,62176.20,21653.85 Middle East and North Africa,Egypt,Personal Care,Offline,M,7/23/2016,462327277,7/31/2016,1770,81.73,56.67,144662.10,100305.90,44356.20 Sub-Saharan Africa,Zimbabwe,Cereal,Online,C,10/4/2010,684134805,10/8/2010,9547,205.70,117.11,1963817.90,1118049.17,845768.73 Europe,Slovenia,Cereal,Online,L,2/21/2017,399651134,4/7/2017,4506,205.70,117.11,926884.20,527697.66,399186.54 Sub-Saharan Africa,Eritrea,Personal Care,Online,C,9/13/2014,351112592,10/14/2014,873,81.73,56.67,71350.29,49472.91,21877.38 Sub-Saharan Africa,Uganda,Clothes,Offline,M,7/24/2017,451068007,7/26/2017,9902,109.28,35.84,1082090.56,354887.68,727202.88 Asia,Myanmar,Meat,Offline,C,8/18/2010,232378709,8/30/2010,4879,421.89,364.69,2058401.31,1779322.51,279078.80 Sub-Saharan Africa,Mauritius ,Snacks,Offline,C,12/11/2013,198218524,12/12/2013,6121,152.58,97.44,933942.18,596430.24,337511.94 Europe,Spain,Meat,Online,M,10/4/2010,472073781,10/29/2010,5977,421.89,364.69,2521636.53,2179752.13,341884.40 Australia and Oceania,Australia,Office Supplies,Offline,M,11/19/2011,347743308,12/14/2011,3827,651.21,524.96,2492180.67,2009021.92,483158.75 Sub-Saharan Africa,Guinea,Cereal,Offline,L,1/19/2014,539338433,1/25/2014,1083,205.70,117.11,222773.10,126830.13,95942.97 Asia,Turkmenistan,Fruits,Offline,M,4/14/2011,931282985,4/30/2011,6185,9.33,6.92,57706.05,42800.20,14905.85 Australia and Oceania,Palau,Vegetables,Online,M,10/18/2013,128313291,10/27/2013,9609,154.06,90.93,1480362.54,873746.37,606616.17 Central America and the Caribbean,Nicaragua,Beverages,Online,M,12/14/2013,405478179,1/15/2014,8859,47.45,31.79,420359.55,281627.61,138731.94 Europe,Iceland,Fruits,Offline,M,9/29/2012,958138978,11/13/2012,3470,9.33,6.92,32375.10,24012.40,8362.70 Sub-Saharan Africa,Nigeria,Household,Offline,H,1/7/2016,151969516,2/21/2016,12,668.27,502.54,8019.24,6030.48,1988.76 Central America and the Caribbean,Antigua and Barbuda ,Vegetables,Offline,C,7/16/2015,472956120,8/26/2015,7081,154.06,90.93,1090898.86,643875.33,447023.53 Europe,Monaco,Meat,Offline,L,6/30/2015,877397620,8/3/2015,308,421.89,364.69,129942.12,112324.52,17617.60 Europe,Belgium,Cereal,Offline,C,7/27/2013,841905343,8/31/2013,7355,205.70,117.11,1512923.50,861344.05,651579.45 Europe,France,Fruits,Offline,L,4/17/2012,813403117,6/1/2012,2913,9.33,6.92,27178.29,20157.96,7020.33 Sub-Saharan Africa,Benin,Household,Offline,C,4/8/2015,859127271,5/6/2015,3706,668.27,502.54,2476608.62,1862413.24,614195.38 Sub-Saharan Africa,Ethiopia,Vegetables,Offline,H,10/18/2015,216626632,11/23/2015,3489,154.06,90.93,537515.34,317254.77,220260.57 Australia and Oceania,New Zealand,Beverages,Offline,L,10/25/2015,443762528,11/28/2015,8048,47.45,31.79,381877.60,255845.92,126031.68 Asia,Kyrgyzstan,Cosmetics,Offline,L,7/19/2014,468708789,8/14/2014,201,437.20,263.33,87877.20,52929.33,34947.87 Sub-Saharan Africa,Democratic Republic of the Congo,Meat,Online,M,4/12/2012,639951741,5/11/2012,4796,421.89,364.69,2023384.44,1749053.24,274331.20 Australia and Oceania,Papua New Guinea,Household,Offline,L,2/22/2014,476290214,4/11/2014,3713,668.27,502.54,2481286.51,1865931.02,615355.49 Sub-Saharan Africa,Gabon,Snacks,Online,L,3/14/2011,916835534,3/14/2011,864,152.58,97.44,131829.12,84188.16,47640.96 Europe,Kosovo,Household,Offline,L,6/30/2014,271011531,8/14/2014,7189,668.27,502.54,4804193.03,3612760.06,1191432.97 Asia,Sri Lanka,Cosmetics,Offline,L,6/7/2013,968554532,6/7/2013,5664,437.20,263.33,2476300.80,1491501.12,984799.68 Europe,Switzerland,Household,Offline,M,5/28/2017,109513366,6/23/2017,6293,668.27,502.54,4205423.11,3162484.22,1042938.89 Asia,Myanmar,Fruits,Online,M,2/27/2014,714249360,4/11/2014,1113,9.33,6.92,10384.29,7701.96,2682.33 Sub-Saharan Africa,Eritrea,Baby Food,Offline,C,6/6/2011,473436343,6/15/2011,9190,255.28,159.42,2346023.20,1465069.80,880953.40 Middle East and North Africa,Syria,Clothes,Online,H,6/13/2010,298060643,6/14/2010,1623,109.28,35.84,177361.44,58168.32,119193.12 Sub-Saharan Africa,Guinea,Personal Care,Online,M,4/19/2017,269421088,5/18/2017,6542,81.73,56.67,534677.66,370735.14,163942.52 Europe,Iceland,Cosmetics,Online,M,5/29/2016,989129006,6/15/2016,4108,437.20,263.33,1796017.60,1081759.64,714257.96 Europe,Ukraine,Vegetables,Offline,M,3/17/2012,429108226,4/14/2012,1515,154.06,90.93,233400.90,137758.95,95641.95 North America,Canada,Personal Care,Offline,L,3/9/2010,681595075,4/17/2010,7984,81.73,56.67,652532.32,452453.28,200079.04 Middle East and North Africa,Azerbaijan,Household,Offline,L,2/9/2013,309138381,2/23/2013,9772,668.27,502.54,6530334.44,4910820.88,1619513.56 Asia,Cambodia,Beverages,Online,L,3/30/2017,194599473,5/1/2017,5163,47.45,31.79,244984.35,164131.77,80852.58 Asia,Thailand,Beverages,Offline,H,2/16/2016,391152179,2/24/2016,9477,47.45,31.79,449683.65,301273.83,148409.82 Europe,Ireland,Snacks,Online,M,12/8/2011,572282826,12/30/2011,61,152.58,97.44,9307.38,5943.84,3363.54 Asia,Mongolia,Cereal,Online,H,9/14/2011,481790244,10/25/2011,1295,205.70,117.11,266381.50,151657.45,114724.05 Europe,Malta,Clothes,Online,C,12/13/2015,383785760,1/28/2016,9590,109.28,35.84,1047995.20,343705.60,704289.60 Australia and Oceania,Papua New Guinea,Baby Food,Online,H,11/24/2014,612693202,12/1/2014,8389,255.28,159.42,2141543.92,1337374.38,804169.54 Middle East and North Africa,Jordan,Clothes,Offline,H,12/28/2014,223248898,1/3/2015,3165,109.28,35.84,345871.20,113433.60,232437.60 Australia and Oceania,Nauru,Cereal,Online,H,5/15/2012,140501677,5/30/2012,6423,205.70,117.11,1321211.10,752197.53,569013.57 Australia and Oceania,Vanuatu,Clothes,Offline,M,10/25/2011,909812867,11/10/2011,2700,109.28,35.84,295056.00,96768.00,198288.00 Europe,Portugal,Clothes,Offline,L,5/22/2015,446856296,6/24/2015,3563,109.28,35.84,389364.64,127697.92,261666.72 Europe,Ireland,Meat,Online,L,1/25/2011,787618291,1/26/2011,2610,421.89,364.69,1101132.90,951840.90,149292.00 Middle East and North Africa,Egypt,Beverages,Online,M,5/26/2014,438397681,7/10/2014,471,47.45,31.79,22348.95,14973.09,7375.86 Asia,Vietnam,Vegetables,Online,H,9/16/2011,225805795,9/16/2011,9807,154.06,90.93,1510866.42,891750.51,619115.91 Asia,Bangladesh,Vegetables,Offline,M,11/19/2016,146766459,1/3/2017,312,154.06,90.93,48066.72,28370.16,19696.56 Europe,Estonia,Vegetables,Offline,L,8/6/2014,718516004,8/20/2014,3707,154.06,90.93,571100.42,337077.51,234022.91 Asia,Uzbekistan,Household,Online,C,1/29/2017,728603255,3/9/2017,8749,668.27,502.54,5846694.23,4396722.46,1449971.77 Europe,Albania,Meat,Offline,H,11/30/2014,384889543,12/7/2014,6224,421.89,364.69,2625843.36,2269830.56,356012.80 Asia,Bangladesh,Cosmetics,Online,L,2/9/2011,865548694,3/30/2011,3948,437.20,263.33,1726065.60,1039626.84,686438.76 Europe,Serbia,Meat,Online,L,4/21/2017,269067037,4/24/2017,1770,421.89,364.69,746745.30,645501.30,101244.00 Middle East and North Africa,Yemen,Clothes,Online,C,2/18/2012,364243400,2/22/2012,6571,109.28,35.84,718078.88,235504.64,482574.24 Sub-Saharan Africa,Lesotho,Household,Offline,M,2/25/2013,740189111,4/10/2013,7261,668.27,502.54,4852308.47,3648942.94,1203365.53 Sub-Saharan Africa,Seychelles ,Fruits,Online,H,6/28/2012,156327998,6/30/2012,9783,9.33,6.92,91275.39,67698.36,23577.03 Middle East and North Africa,Oman,Cosmetics,Offline,M,11/24/2010,592396390,12/21/2010,2111,437.20,263.33,922929.20,555889.63,367039.57 Australia and Oceania,Palau,Cosmetics,Offline,M,12/27/2013,498443114,2/15/2014,9249,437.20,263.33,4043662.80,2435539.17,1608123.63 Asia,Nepal,Beverages,Online,H,4/15/2013,644829499,5/2/2013,8233,47.45,31.79,390655.85,261727.07,128928.78 Australia and Oceania,Vanuatu,Beverages,Offline,M,10/1/2012,972229373,10/16/2012,3131,47.45,31.79,148565.95,99534.49,49031.46 Australia and Oceania,Nauru,Personal Care,Offline,C,5/24/2017,141629064,7/4/2017,42,81.73,56.67,3432.66,2380.14,1052.52 Central America and the Caribbean,Panama,Vegetables,Offline,M,5/15/2014,484327399,6/16/2014,2095,154.06,90.93,322755.70,190498.35,132257.35 Central America and the Caribbean,Grenada,Meat,Offline,H,8/10/2014,351935708,9/16/2014,4452,421.89,364.69,1878254.28,1623599.88,254654.40 Sub-Saharan Africa,Malawi,Vegetables,Online,C,3/7/2011,866377818,4/20/2011,9304,154.06,90.93,1433374.24,846012.72,587361.52 Asia,Myanmar,Beverages,Offline,M,5/11/2013,969890058,5/15/2013,876,47.45,31.79,41566.20,27848.04,13718.16 Sub-Saharan Africa,Burundi,Office Supplies,Offline,C,7/24/2012,575021255,8/1/2012,422,651.21,524.96,274810.62,221533.12,53277.50 Sub-Saharan Africa,Republic of the Congo,Household,Offline,L,5/27/2016,114632737,6/4/2016,1229,668.27,502.54,821303.83,617621.66,203682.17 Sub-Saharan Africa,Cape Verde,Snacks,Offline,H,8/21/2014,991898334,10/7/2014,3614,152.58,97.44,551424.12,352148.16,199275.96 Asia,India,Office Supplies,Online,C,3/26/2013,630304372,4/20/2013,9925,651.21,524.96,6463259.25,5210228.00,1253031.25 Europe,Ukraine,Personal Care,Online,C,6/6/2015,123649680,7/15/2015,9543,81.73,56.67,779949.39,540801.81,239147.58 Sub-Saharan Africa,Nigeria,Household,Online,M,5/22/2010,186045587,7/4/2010,3878,668.27,502.54,2591551.06,1948850.12,642700.94 Asia,Malaysia,Office Supplies,Online,L,11/5/2014,701915919,12/6/2014,1374,651.21,524.96,894762.54,721295.04,173467.50 Middle East and North Africa,Jordan,Office Supplies,Offline,H,4/20/2016,275997006,5/1/2016,2502,651.21,524.96,1629327.42,1313449.92,315877.50 North America,Mexico,Baby Food,Offline,L,9/9/2014,283337676,10/8/2014,4770,255.28,159.42,1217685.60,760433.40,457252.20 Europe,Ireland,Personal Care,Online,C,1/2/2011,819299256,2/16/2011,7711,81.73,56.67,630220.03,436982.37,193237.66 Europe,France,Personal Care,Offline,C,2/2/2011,249555575,2/6/2011,7895,81.73,56.67,645258.35,447409.65,197848.70 Australia and Oceania,Papua New Guinea,Beverages,Offline,M,4/14/2014,160092961,5/3/2014,3920,47.45,31.79,186004.00,124616.80,61387.20 Middle East and North Africa,Bahrain,Cereal,Online,C,3/17/2017,407210242,4/25/2017,1415,205.70,117.11,291065.50,165710.65,125354.85 Sub-Saharan Africa,Ethiopia,Snacks,Offline,L,7/15/2017,467518746,8/8/2017,8041,152.58,97.44,1226895.78,783515.04,443380.74 Australia and Oceania,Australia,Vegetables,Offline,C,3/27/2010,787942302,4/22/2010,8492,154.06,90.93,1308277.52,772177.56,536099.96 Sub-Saharan Africa,Guinea-Bissau,Vegetables,Offline,C,1/17/2014,535717236,1/25/2014,9490,154.06,90.93,1462029.40,862925.70,599103.70 Sub-Saharan Africa,Liberia,Snacks,Online,L,9/12/2014,748392379,10/6/2014,4791,152.58,97.44,731010.78,466835.04,264175.74 Europe,France,Office Supplies,Online,C,2/18/2014,283829057,3/27/2014,180,651.21,524.96,117217.80,94492.80,22725.00 Middle East and North Africa,Lebanon,Beverages,Offline,M,7/28/2011,770201098,7/30/2011,8475,47.45,31.79,402138.75,269420.25,132718.50 Asia,Cambodia,Clothes,Online,H,11/15/2014,755994832,12/21/2014,4526,109.28,35.84,494601.28,162211.84,332389.44 Sub-Saharan Africa,Namibia,Personal Care,Online,H,1/9/2014,660009086,2/22/2014,210,81.73,56.67,17163.30,11900.70,5262.60 Central America and the Caribbean,Dominica,Clothes,Offline,C,3/24/2015,521355187,5/6/2015,9440,109.28,35.84,1031603.20,338329.60,693273.60 Central America and the Caribbean,Grenada,Personal Care,Offline,L,5/22/2014,449456965,7/3/2014,3159,81.73,56.67,258185.07,179020.53,79164.54 Asia,Philippines,Office Supplies,Offline,L,1/21/2016,174050748,1/30/2016,4339,651.21,524.96,2825600.19,2277801.44,547798.75 Sub-Saharan Africa,Cameroon,Personal Care,Online,M,6/23/2014,395185363,6/27/2014,2986,81.73,56.67,244045.78,169216.62,74829.16 Sub-Saharan Africa,Seychelles ,Beverages,Online,H,7/15/2012,533222138,9/2/2012,1135,47.45,31.79,53855.75,36081.65,17774.10 Europe,Ukraine,Household,Offline,L,5/28/2010,978834903,5/30/2010,7854,668.27,502.54,5248592.58,3946949.16,1301643.42 Europe,Malta,Household,Offline,H,11/19/2016,843009984,12/26/2016,4243,668.27,502.54,2835469.61,2132277.22,703192.39 Sub-Saharan Africa,Ghana,Beverages,Online,M,5/6/2015,207046210,5/22/2015,8429,47.45,31.79,399956.05,267957.91,131998.14 Central America and the Caribbean,Dominican Republic,Cosmetics,Online,M,12/3/2012,572554910,12/16/2012,576,437.20,263.33,251827.20,151678.08,100149.12 Europe,Germany,Cosmetics,Online,M,1/20/2014,811459910,3/2/2014,7875,437.20,263.33,3442950.00,2073723.75,1369226.25 Europe,Lithuania,Personal Care,Online,L,8/26/2016,315997540,9/22/2016,9549,81.73,56.67,780439.77,541141.83,239297.94 Europe,Russia,Beverages,Offline,C,12/1/2015,348716628,1/5/2016,1854,47.45,31.79,87972.30,58938.66,29033.64 Middle East and North Africa,Iran,Clothes,Offline,H,9/6/2015,892478501,10/19/2015,3076,109.28,35.84,336145.28,110243.84,225901.44 North America,Canada,Meat,Online,C,1/20/2017,200456988,2/5/2017,8532,421.89,364.69,3599565.48,3111535.08,488030.40 Europe,Netherlands,Vegetables,Online,M,8/25/2014,646138417,9/30/2014,5571,154.06,90.93,858268.26,506571.03,351697.23 Middle East and North Africa,Morocco,Snacks,Online,L,6/27/2015,173321616,7/15/2015,8573,152.58,97.44,1308068.34,835353.12,472715.22 Asia,Cambodia,Snacks,Offline,M,7/9/2012,846117913,8/24/2012,3948,152.58,97.44,602385.84,384693.12,217692.72 Europe,Netherlands,Clothes,Offline,H,2/15/2011,298951137,3/23/2011,5140,109.28,35.84,561699.20,184217.60,377481.60 Australia and Oceania,Federated States of Micronesia,Vegetables,Online,M,2/27/2010,286557614,3/21/2010,7621,154.06,90.93,1174091.26,692977.53,481113.73 Europe,Latvia,Clothes,Online,C,5/5/2013,833986175,5/31/2013,3897,109.28,35.84,425864.16,139668.48,286195.68 North America,Greenland,Clothes,Online,L,4/24/2010,686598145,5/24/2010,8504,109.28,35.84,929317.12,304783.36,624533.76 Europe,Spain,Cosmetics,Offline,H,9/12/2010,460067355,9/19/2010,3009,437.20,263.33,1315534.80,792359.97,523174.83 Europe,Czech Republic,Household,Online,L,1/19/2010,390380132,3/5/2010,1011,668.27,502.54,675620.97,508067.94,167553.03 Europe,Moldova ,Baby Food,Offline,H,5/7/2016,783835303,5/21/2016,3140,255.28,159.42,801579.20,500578.80,301000.40 Asia,Tajikistan,Personal Care,Online,M,11/30/2015,667044198,12/3/2015,2056,81.73,56.67,168036.88,116513.52,51523.36 Asia,Sri Lanka,Baby Food,Offline,H,1/24/2015,936930644,3/4/2015,7453,255.28,159.42,1902601.84,1188157.26,714444.58 Australia and Oceania,Solomon Islands,Personal Care,Offline,H,8/11/2013,310730969,8/20/2013,1054,81.73,56.67,86143.42,59730.18,26413.24 Sub-Saharan Africa,Republic of the Congo,Clothes,Online,H,3/21/2016,275994002,5/1/2016,1613,109.28,35.84,176268.64,57809.92,118458.72 Middle East and North Africa,Jordan,Personal Care,Offline,C,6/21/2013,140581071,7/15/2013,9918,81.73,56.67,810598.14,562053.06,248545.08 Sub-Saharan Africa,Botswana,Meat,Online,H,12/10/2015,182666003,1/18/2016,3784,421.89,364.69,1596431.76,1379986.96,216444.80 Europe,Croatia,Vegetables,Offline,C,7/23/2012,300735127,8/17/2012,3062,154.06,90.93,471731.72,278427.66,193304.06 Sub-Saharan Africa,Angola,Fruits,Offline,H,3/31/2012,463587272,4/14/2012,4630,9.33,6.92,43197.90,32039.60,11158.30 Middle East and North Africa,Afghanistan,Cereal,Online,M,6/2/2017,260333764,7/22/2017,7401,205.70,117.11,1522385.70,866731.11,655654.59 Central America and the Caribbean,Grenada,Snacks,Offline,C,8/14/2012,250398433,8/27/2012,7316,152.58,97.44,1116275.28,712871.04,403404.24 Sub-Saharan Africa,Eritrea,Cereal,Offline,C,10/4/2013,613517606,11/23/2013,2348,205.70,117.11,482983.60,274974.28,208009.32 Sub-Saharan Africa,Botswana,Household,Online,H,4/18/2011,699740111,5/31/2011,7504,668.27,502.54,5014698.08,3771060.16,1243637.92 Europe,Latvia,Cosmetics,Online,L,11/26/2011,379427278,1/3/2012,9818,437.20,263.33,4292429.60,2585373.94,1707055.66 Europe,Belgium,Cosmetics,Offline,C,12/19/2011,493252933,1/9/2012,3359,437.20,263.33,1468554.80,884525.47,584029.33 Sub-Saharan Africa,Benin,Baby Food,Online,M,6/30/2016,602203404,8/10/2016,4225,255.28,159.42,1078558.00,673549.50,405008.50 Middle East and North Africa,Azerbaijan,Fruits,Offline,C,8/25/2012,337577521,9/27/2012,5545,9.33,6.92,51734.85,38371.40,13363.45 Europe,France,Cereal,Online,L,5/11/2011,750986611,6/27/2011,2482,205.70,117.11,510547.40,290667.02,219880.38 Middle East and North Africa,Iran,Snacks,Offline,L,4/6/2013,264354503,4/26/2013,7227,152.58,97.44,1102695.66,704198.88,398496.78 Europe,Slovenia,Meat,Online,H,6/28/2012,519917523,7/4/2012,4004,421.89,364.69,1689247.56,1460218.76,229028.80 Europe,Vatican City,Fruits,Online,C,8/9/2015,530224502,9/21/2015,4068,9.33,6.92,37954.44,28150.56,9803.88 Europe,Liechtenstein,Cereal,Offline,L,1/28/2015,728136765,3/2/2015,705,205.70,117.11,145018.50,82562.55,62455.95 Central America and the Caribbean,Panama,Beverages,Online,M,10/21/2015,716828143,11/8/2015,4232,47.45,31.79,200808.40,134535.28,66273.12 Central America and the Caribbean,Nicaragua,Personal Care,Offline,M,3/7/2016,619784963,3/10/2016,6998,81.73,56.67,571946.54,396576.66,175369.88 Middle East and North Africa,Iran,Snacks,Online,C,11/17/2011,630806052,12/18/2011,8384,152.58,97.44,1279230.72,816936.96,462293.76 Australia and Oceania,Papua New Guinea,Vegetables,Online,L,10/9/2014,564002740,10/14/2014,9799,154.06,90.93,1509633.94,891023.07,618610.87 Asia,Maldives,Snacks,Offline,M,4/23/2011,303798854,5/16/2011,9687,152.58,97.44,1478042.46,943901.28,534141.18 Europe,San Marino,Personal Care,Online,H,9/16/2011,254930722,10/27/2011,8521,81.73,56.67,696421.33,482885.07,213536.26 Europe,Ukraine,Vegetables,Online,C,11/25/2015,892447173,11/29/2015,3806,154.06,90.93,586352.36,346079.58,240272.78 Europe,Norway,Cosmetics,Offline,L,4/23/2017,511709535,5/15/2017,5077,437.20,263.33,2219664.40,1336926.41,882737.99 Australia and Oceania,Australia,Personal Care,Offline,M,3/17/2014,178391635,4/29/2014,8904,81.73,56.67,727723.92,504589.68,223134.24 Europe,Netherlands,Clothes,Online,H,7/4/2013,578479802,7/30/2013,3883,109.28,35.84,424334.24,139166.72,285167.52 Australia and Oceania,New Zealand,Clothes,Online,H,10/27/2011,668272864,11/17/2011,5646,109.28,35.84,616994.88,202352.64,414642.24 Middle East and North Africa,United Arab Emirates,Household,Offline,M,5/29/2014,824382150,7/9/2014,1853,668.27,502.54,1238304.31,931206.62,307097.69 Central America and the Caribbean,The Bahamas,Personal Care,Offline,M,3/22/2016,593731486,4/26/2016,7196,81.73,56.67,588129.08,407797.32,180331.76 Australia and Oceania,Federated States of Micronesia,Cosmetics,Online,C,4/18/2013,943557202,5/5/2013,8399,437.20,263.33,3672042.80,2211708.67,1460334.13 Sub-Saharan Africa,Uganda,Meat,Online,M,1/27/2014,211408126,3/8/2014,9217,421.89,364.69,3888560.13,3361347.73,527212.40 Sub-Saharan Africa,Malawi,Cereal,Online,M,12/4/2012,855145585,12/22/2012,5437,205.70,117.11,1118390.90,636727.07,481663.83 Europe,Lithuania,Snacks,Offline,L,8/22/2016,902943408,8/28/2016,9875,152.58,97.44,1506727.50,962220.00,544507.50 Europe,Ireland,Cosmetics,Offline,H,5/14/2010,703287923,6/4/2010,7380,437.20,263.33,3226536.00,1943375.40,1283160.60 Sub-Saharan Africa,The Gambia,Household,Offline,C,5/17/2014,674977958,6/3/2014,9832,668.27,502.54,6570430.64,4940973.28,1629457.36 Europe,San Marino,Clothes,Online,M,2/26/2012,857124841,3/10/2012,1142,109.28,35.84,124797.76,40929.28,83868.48 Sub-Saharan Africa,South Africa,Clothes,Online,H,10/4/2014,459152400,10/21/2014,2253,109.28,35.84,246207.84,80747.52,165460.32 Middle East and North Africa,Algeria,Beverages,Online,C,7/31/2011,110796964,9/16/2011,6139,47.45,31.79,291295.55,195158.81,96136.74 Australia and Oceania,East Timor,Personal Care,Offline,L,1/7/2012,512107360,1/19/2012,2803,81.73,56.67,229089.19,158846.01,70243.18 Sub-Saharan Africa,Central African Republic,Clothes,Offline,M,5/22/2011,183444917,6/25/2011,4282,109.28,35.84,467936.96,153466.88,314470.08 Europe,Georgia,Meat,Online,L,6/5/2017,415483462,6/27/2017,9644,421.89,364.69,4068707.16,3517070.36,551636.80 Sub-Saharan Africa,Botswana,Clothes,Online,H,3/23/2016,319209325,3/24/2016,9988,109.28,35.84,1091488.64,357969.92,733518.72 Sub-Saharan Africa,Mozambique,Office Supplies,Offline,M,11/11/2013,875921332,12/12/2013,3442,651.21,524.96,2241464.82,1806912.32,434552.50 Sub-Saharan Africa,Sierra Leone,Vegetables,Online,L,6/26/2017,887230813,8/2/2017,169,154.06,90.93,26036.14,15367.17,10668.97 Middle East and North Africa,United Arab Emirates,Fruits,Online,L,5/16/2016,125061595,6/17/2016,7360,9.33,6.92,68668.80,50931.20,17737.60 Europe,Finland,Household,Offline,H,1/9/2016,681650006,2/21/2016,4239,668.27,502.54,2832796.53,2130267.06,702529.47 Sub-Saharan Africa,Rwanda,Office Supplies,Online,L,8/17/2011,219544875,9/19/2011,7062,651.21,524.96,4598845.02,3707267.52,891577.50 Europe,Kosovo,Clothes,Offline,C,8/4/2014,521607530,9/4/2014,4114,109.28,35.84,449577.92,147445.76,302132.16 Asia,Bangladesh,Fruits,Offline,C,11/19/2010,741011798,11/21/2010,713,9.33,6.92,6652.29,4933.96,1718.33 Central America and the Caribbean,Costa Rica,Cereal,Online,L,4/5/2010,551244008,5/3/2010,4207,205.70,117.11,865379.90,492681.77,372698.13 Europe,Liechtenstein,Clothes,Online,H,3/3/2012,596102988,3/28/2012,8976,109.28,35.84,980897.28,321699.84,659197.44 Sub-Saharan Africa,Burundi,Cosmetics,Offline,M,2/20/2017,239700067,3/15/2017,1431,437.20,263.33,625633.20,376825.23,248807.97 Australia and Oceania,Solomon Islands,Household,Offline,M,5/25/2015,716459071,7/7/2015,5015,668.27,502.54,3351374.05,2520238.10,831135.95 Sub-Saharan Africa,Guinea,Cosmetics,Offline,H,5/16/2013,181116330,6/1/2013,5202,437.20,263.33,2274314.40,1369842.66,904471.74 Sub-Saharan Africa,Uganda,Household,Offline,C,10/16/2014,458720672,10/31/2014,4495,668.27,502.54,3003873.65,2258917.30,744956.35 Asia,Uzbekistan,Beverages,Offline,C,11/8/2016,294633424,11/30/2016,7432,47.45,31.79,352648.40,236263.28,116385.12 Central America and the Caribbean,Grenada,Snacks,Offline,H,1/19/2014,304528415,1/29/2014,5580,152.58,97.44,851396.40,543715.20,307681.20 Europe,Estonia,Cereal,Online,H,1/29/2017,724391973,2/13/2017,2537,205.70,117.11,521860.90,297108.07,224752.83 Sub-Saharan Africa,Gabon,Vegetables,Offline,H,3/14/2011,960522925,3/25/2011,8933,154.06,90.93,1376217.98,812277.69,563940.29 Middle East and North Africa,Bahrain,Cereal,Offline,C,1/7/2013,939532601,2/11/2013,7430,205.70,117.11,1528351.00,870127.30,658223.70 Europe,Andorra,Snacks,Online,M,9/18/2013,658344829,9/30/2013,7720,152.58,97.44,1177917.60,752236.80,425680.80 Sub-Saharan Africa,Burkina Faso,Cereal,Online,C,2/5/2013,634195935,3/9/2013,1525,205.70,117.11,313692.50,178592.75,135099.75 Europe,Georgia,Baby Food,Online,L,11/1/2015,554634749,11/22/2015,7602,255.28,159.42,1940638.56,1211910.84,728727.72 Middle East and North Africa,Iran,Beverages,Offline,H,7/1/2012,627522599,7/21/2012,6737,47.45,31.79,319670.65,214169.23,105501.42 Europe,Lithuania,Baby Food,Offline,C,9/4/2013,231033313,9/11/2013,6746,255.28,159.42,1722118.88,1075447.32,646671.56 Middle East and North Africa,Libya,Vegetables,Online,L,11/12/2015,163653218,12/6/2015,7479,154.06,90.93,1152214.74,680065.47,472149.27 Asia,Taiwan,Beverages,Online,M,11/1/2012,394181144,11/3/2012,5815,47.45,31.79,275921.75,184858.85,91062.90 Central America and the Caribbean,Costa Rica,Household,Offline,L,8/1/2014,511728417,9/5/2014,665,668.27,502.54,444399.55,334189.10,110210.45 Europe,Lithuania,Personal Care,Online,H,3/23/2013,175718867,3/25/2013,7973,81.73,56.67,651633.29,451829.91,199803.38 Europe,Czech Republic,Cosmetics,Offline,C,2/2/2017,465888822,2/2/2017,5710,437.20,263.33,2496412.00,1503614.30,992797.70 Europe,Netherlands,Vegetables,Online,C,8/24/2016,732287108,9/6/2016,8883,154.06,90.93,1368514.98,807731.19,560783.79 Sub-Saharan Africa,Ghana,Personal Care,Offline,M,12/28/2010,845275056,2/3/2011,4528,81.73,56.67,370073.44,256601.76,113471.68 Sub-Saharan Africa,Botswana,Personal Care,Online,L,8/26/2011,745526492,8/31/2011,6711,81.73,56.67,548490.03,380312.37,168177.66 Europe,Montenegro,Household,Online,H,1/27/2016,894027745,2/14/2016,1532,668.27,502.54,1023789.64,769891.28,253898.36 Sub-Saharan Africa,Ethiopia,Office Supplies,Offline,C,5/28/2011,922077643,6/8/2011,2120,651.21,524.96,1380565.20,1112915.20,267650.00 Middle East and North Africa,Algeria,Snacks,Offline,L,2/27/2016,981287515,4/2/2016,3637,152.58,97.44,554933.46,354389.28,200544.18 Central America and the Caribbean,Haiti,Meat,Offline,L,10/26/2015,393581187,11/20/2015,8274,421.89,364.69,3490717.86,3017445.06,473272.80 Australia and Oceania,New Zealand,Fruits,Offline,M,2/5/2012,801194989,3/12/2012,256,9.33,6.92,2388.48,1771.52,616.96 Europe,Moldova ,Vegetables,Offline,H,7/20/2011,316677749,7/24/2011,838,154.06,90.93,129102.28,76199.34,52902.94 Middle East and North Africa,Algeria,Household,Offline,H,3/23/2014,272890794,4/28/2014,3305,668.27,502.54,2208632.35,1660894.70,547737.65 Central America and the Caribbean,Panama,Vegetables,Online,H,6/11/2017,273007953,6/30/2017,7975,154.06,90.93,1228628.50,725166.75,503461.75 Europe,Armenia,Beverages,Offline,M,1/12/2012,440515553,1/22/2012,7196,47.45,31.79,341450.20,228760.84,112689.36 Sub-Saharan Africa,Togo,Office Supplies,Offline,H,5/15/2016,969212424,5/15/2016,349,651.21,524.96,227272.29,183211.04,44061.25 Middle East and North Africa,Azerbaijan,Fruits,Online,H,1/21/2012,773209893,3/9/2012,8845,9.33,6.92,82523.85,61207.40,21316.45 Middle East and North Africa,Afghanistan,Vegetables,Online,H,10/26/2015,636931788,12/10/2015,1125,154.06,90.93,173317.50,102296.25,71021.25 Sub-Saharan Africa,Mozambique,Baby Food,Online,M,2/27/2015,965114438,4/18/2015,7664,255.28,159.42,1956465.92,1221794.88,734671.04 Central America and the Caribbean,The Bahamas,Clothes,Offline,L,1/4/2010,432806670,1/11/2010,5966,109.28,35.84,651964.48,213821.44,438143.04 Central America and the Caribbean,Dominica,Beverages,Online,L,7/7/2016,935369813,8/4/2016,5568,47.45,31.79,264201.60,177006.72,87194.88 Central America and the Caribbean,Antigua and Barbuda ,Snacks,Online,C,3/24/2010,838477694,4/2/2010,3037,152.58,97.44,463385.46,295925.28,167460.18 Australia and Oceania,Tuvalu,Household,Online,M,3/14/2013,828116643,3/25/2013,6972,668.27,502.54,4659178.44,3503708.88,1155469.56 Sub-Saharan Africa,Mauritania,Household,Online,L,6/25/2014,760585486,7/28/2014,3002,668.27,502.54,2006146.54,1508625.08,497521.46 Sub-Saharan Africa,Niger,Clothes,Offline,L,10/1/2011,112495553,11/6/2011,8789,109.28,35.84,960461.92,314997.76,645464.16 Middle East and North Africa,United Arab Emirates,Baby Food,Offline,H,2/10/2015,230770671,3/4/2015,9025,255.28,159.42,2303902.00,1438765.50,865136.50 Middle East and North Africa,Iraq,Fruits,Offline,M,1/7/2013,282647168,1/10/2013,433,9.33,6.92,4039.89,2996.36,1043.53 Asia,Malaysia,Vegetables,Offline,M,12/3/2013,405673873,1/6/2014,6769,154.06,90.93,1042832.14,615505.17,427326.97 Europe,Croatia,Baby Food,Online,H,3/10/2012,357712113,4/7/2012,3818,255.28,159.42,974659.04,608665.56,365993.48 Sub-Saharan Africa,Burkina Faso,Baby Food,Online,H,8/12/2014,866935718,9/21/2014,4399,255.28,159.42,1122976.72,701288.58,421688.14 Sub-Saharan Africa,Malawi,Snacks,Online,M,11/27/2013,481831014,1/1/2014,3359,152.58,97.44,512516.22,327300.96,185215.26 Sub-Saharan Africa,Eritrea,Baby Food,Offline,C,3/15/2015,521196830,4/3/2015,2579,255.28,159.42,658367.12,411144.18,247222.94 Europe,Monaco,Beverages,Offline,H,2/16/2017,124144494,2/28/2017,5969,47.45,31.79,283229.05,189754.51,93474.54 Middle East and North Africa,Lebanon,Cereal,Online,C,8/7/2015,300097835,8/27/2015,4473,205.70,117.11,920096.10,523833.03,396263.07 Middle East and North Africa,Yemen,Household,Online,M,2/24/2015,778793179,3/8/2015,1063,668.27,502.54,710371.01,534200.02,176170.99 Middle East and North Africa,Saudi Arabia,Snacks,Online,H,1/12/2010,460279357,2/28/2010,5745,152.58,97.44,876572.10,559792.80,316779.30 Central America and the Caribbean,El Salvador,Clothes,Online,C,9/17/2010,564917695,11/3/2010,555,109.28,35.84,60650.40,19891.20,40759.20 Middle East and North Africa,Tunisia ,Meat,Online,H,5/8/2017,583382022,5/29/2017,4559,421.89,364.69,1923396.51,1662621.71,260774.80 Australia and Oceania,Samoa ,Baby Food,Online,L,1/15/2016,526658666,2/27/2016,8858,255.28,159.42,2261270.24,1412142.36,849127.88 Australia and Oceania,Marshall Islands,Cosmetics,Offline,C,11/7/2012,476046454,12/1/2012,1580,437.20,263.33,690776.00,416061.40,274714.60 Middle East and North Africa,Libya,Household,Online,H,12/11/2014,133156716,1/19/2015,2886,668.27,502.54,1928627.22,1450330.44,478296.78 Middle East and North Africa,Qatar,Meat,Online,M,8/5/2011,169913280,8/6/2011,9970,421.89,364.69,4206243.30,3635959.30,570284.00 Europe,Finland,Baby Food,Online,C,11/12/2015,878552472,12/18/2015,2055,255.28,159.42,524600.40,327608.10,196992.30 Europe,Armenia,Cereal,Online,L,5/19/2015,821623122,5/28/2015,5395,205.70,117.11,1109751.50,631808.45,477943.05 Sub-Saharan Africa,Botswana,Beverages,Online,C,12/22/2013,881986558,2/8/2014,8277,47.45,31.79,392743.65,263125.83,129617.82 North America,Canada,Cosmetics,Offline,H,10/5/2012,212816607,10/22/2012,6018,437.20,263.33,2631069.60,1584719.94,1046349.66 Sub-Saharan Africa,Ghana,Baby Food,Online,M,12/1/2013,287599599,1/19/2014,5967,255.28,159.42,1523255.76,951259.14,571996.62 Central America and the Caribbean,Trinidad and Tobago,Snacks,Online,C,11/25/2016,850134360,12/4/2016,2504,152.58,97.44,382060.32,243989.76,138070.56 Europe,Liechtenstein,Household,Online,M,8/30/2014,364532220,9/28/2014,2039,668.27,502.54,1362602.53,1024679.06,337923.47 Central America and the Caribbean,Cuba,Snacks,Online,C,7/26/2012,965217006,8/23/2012,8016,152.58,97.44,1223081.28,781079.04,442002.24 Central America and the Caribbean,Saint Vincent and the Grenadines,Cosmetics,Offline,H,1/22/2017,806925046,3/2/2017,5908,437.20,263.33,2582977.60,1555753.64,1027223.96 Europe,Russia,Household,Online,H,9/16/2016,814705169,10/18/2016,8219,668.27,502.54,5492511.13,4130376.26,1362134.87 Sub-Saharan Africa,Malawi,Fruits,Offline,C,4/18/2016,633918702,5/30/2016,9486,9.33,6.92,88504.38,65643.12,22861.26 Sub-Saharan Africa,Guinea,Household,Online,M,4/22/2010,880239474,6/2/2010,1276,668.27,502.54,852712.52,641241.04,211471.48 Europe,Lithuania,Personal Care,Offline,C,1/4/2017,889653813,1/18/2017,7188,81.73,56.67,587475.24,407343.96,180131.28 Asia,Uzbekistan,Snacks,Online,M,2/4/2014,968460547,3/12/2014,7852,152.58,97.44,1198058.16,765098.88,432959.28 Europe,Albania,Clothes,Offline,C,8/7/2010,143271005,9/20/2010,5929,109.28,35.84,647921.12,212495.36,435425.76 Europe,Switzerland,Beverages,Online,C,11/2/2012,211009013,11/15/2012,1111,47.45,31.79,52716.95,35318.69,17398.26 Europe,Netherlands,Household,Offline,H,1/22/2013,788910901,2/24/2013,5122,668.27,502.54,3422878.94,2574009.88,848869.06 Asia,South Korea,Meat,Offline,M,12/2/2015,664525496,12/31/2015,6716,421.89,364.69,2833413.24,2449258.04,384155.20 Middle East and North Africa,Pakistan,Office Supplies,Online,L,1/1/2012,945714128,2/14/2012,6681,651.21,524.96,4350734.01,3507257.76,843476.25 Middle East and North Africa,Libya,Clothes,Online,H,11/19/2011,110650622,11/22/2011,2833,109.28,35.84,309590.24,101534.72,208055.52 Middle East and North Africa,Bahrain,Personal Care,Offline,M,1/25/2012,757821309,1/27/2012,5021,81.73,56.67,410366.33,284540.07,125826.26 Central America and the Caribbean,Panama,Snacks,Offline,H,11/24/2013,156025016,12/13/2013,124,152.58,97.44,18919.92,12082.56,6837.36 Asia,Kyrgyzstan,Meat,Online,H,3/22/2012,594373071,5/9/2012,7055,421.89,364.69,2976433.95,2572887.95,403546.00 Middle East and North Africa,Yemen,Meat,Offline,M,4/20/2014,832289302,5/9/2014,1755,421.89,364.69,740416.95,640030.95,100386.00 Australia and Oceania,Samoa ,Office Supplies,Offline,H,4/28/2013,149510037,5/28/2013,2197,651.21,524.96,1430708.37,1153337.12,277371.25 Europe,Armenia,Cosmetics,Offline,H,11/24/2014,596084105,12/6/2014,3388,437.20,263.33,1481233.60,892162.04,589071.56 Middle East and North Africa,Kuwait,Fruits,Offline,L,7/21/2010,242372834,8/4/2010,2363,9.33,6.92,22046.79,16351.96,5694.83 Asia,Philippines,Fruits,Offline,L,10/24/2011,829050052,11/11/2011,3188,9.33,6.92,29744.04,22060.96,7683.08 Europe,Andorra,Personal Care,Offline,M,2/14/2016,117102086,3/10/2016,1964,81.73,56.67,160517.72,111299.88,49217.84 Europe,Liechtenstein,Household,Offline,C,8/19/2010,437827765,9/7/2010,1820,668.27,502.54,1216251.40,914622.80,301628.60 Asia,India,Snacks,Offline,C,11/8/2013,142838418,11/8/2013,7917,152.58,97.44,1207975.86,771432.48,436543.38 Asia,Sri Lanka,Vegetables,Online,C,4/11/2011,354057872,4/19/2011,2447,154.06,90.93,376984.82,222505.71,154479.11 Europe,Slovakia,Cosmetics,Online,C,3/5/2012,913722455,4/18/2012,9634,437.20,263.33,4211984.80,2536921.22,1675063.58 Europe,Latvia,Personal Care,Online,L,7/17/2015,834380996,8/31/2015,733,81.73,56.67,59908.09,41539.11,18368.98 Australia and Oceania,Palau,Meat,Offline,C,11/4/2013,548894822,11/20/2013,9030,421.89,364.69,3809666.70,3293150.70,516516.00 Sub-Saharan Africa,Central African Republic,Snacks,Online,H,12/25/2011,560437762,2/11/2012,4843,152.58,97.44,738944.94,471901.92,267043.02 Asia,Bhutan,Office Supplies,Online,L,12/4/2015,992496144,1/18/2016,519,651.21,524.96,337977.99,272454.24,65523.75 Sub-Saharan Africa,Burundi,Cereal,Offline,L,10/6/2013,238868796,11/25/2013,5440,205.70,117.11,1119008.00,637078.40,481929.60 Europe,Luxembourg,Office Supplies,Offline,H,5/21/2017,813667047,6/7/2017,1015,651.21,524.96,660978.15,532834.40,128143.75 Europe,Andorra,Cereal,Online,M,3/23/2013,801314723,5/6/2013,5688,205.70,117.11,1170021.60,666121.68,503899.92 Middle East and North Africa,Somalia,Personal Care,Online,C,7/6/2011,606548154,8/11/2011,9932,81.73,56.67,811742.36,562846.44,248895.92 Central America and the Caribbean,Trinidad and Tobago,Office Supplies,Offline,L,3/2/2012,704416167,4/10/2012,1252,651.21,524.96,815314.92,657249.92,158065.00 Sub-Saharan Africa,Kenya,Snacks,Offline,H,3/12/2016,290280091,3/24/2016,9185,152.58,97.44,1401447.30,894986.40,506460.90 Middle East and North Africa,Tunisia ,Fruits,Offline,C,4/17/2014,429813754,4/21/2014,296,9.33,6.92,2761.68,2048.32,713.36 Central America and the Caribbean,Dominican Republic,Snacks,Offline,C,5/14/2013,909003484,6/7/2013,3186,152.58,97.44,486119.88,310443.84,175676.04 Sub-Saharan Africa,Djibouti,Clothes,Online,L,1/15/2010,684148108,2/6/2010,3483,109.28,35.84,380622.24,124830.72,255791.52 Europe,Russia,Baby Food,Offline,H,2/19/2017,131858956,2/28/2017,8850,255.28,159.42,2259228.00,1410867.00,848361.00 Asia,China,Household,Offline,M,6/22/2014,599059855,7/29/2014,3979,668.27,502.54,2659046.33,1999606.66,659439.67 Europe,Russia,Office Supplies,Online,H,3/20/2013,352987134,4/7/2013,5592,651.21,524.96,3641566.32,2935576.32,705990.00 Europe,Bosnia and Herzegovina,Office Supplies,Offline,C,3/31/2014,431189620,4/6/2014,7445,651.21,524.96,4848258.45,3908327.20,939931.25 Sub-Saharan Africa,Tanzania,Cereal,Online,M,12/6/2011,591528642,12/21/2011,5325,205.70,117.11,1095352.50,623610.75,471741.75 Asia,Bhutan,Vegetables,Online,C,1/21/2013,662178027,3/12/2013,2048,154.06,90.93,315514.88,186224.64,129290.24 Europe,Austria,Personal Care,Offline,C,5/7/2010,991624104,6/2/2010,2463,81.73,56.67,201300.99,139578.21,61722.78 Sub-Saharan Africa,Madagascar,Meat,Online,M,7/2/2016,198665702,8/21/2016,8451,421.89,364.69,3565392.39,3081995.19,483397.20 Europe,Poland,Vegetables,Offline,M,1/2/2015,122414147,2/10/2015,3921,154.06,90.93,604069.26,356536.53,247532.73 Central America and the Caribbean,Grenada,Household,Offline,C,11/28/2016,872293269,11/28/2016,9817,668.27,502.54,6560406.59,4933435.18,1626971.41 Europe,Netherlands,Meat,Online,M,8/14/2011,378039395,8/19/2011,9113,421.89,364.69,3844683.57,3323419.97,521263.60 Central America and the Caribbean,El Salvador,Vegetables,Offline,C,2/4/2016,239701354,2/14/2016,1812,154.06,90.93,279156.72,164765.16,114391.56 Central America and the Caribbean,The Bahamas,Baby Food,Offline,L,7/5/2010,777640473,8/12/2010,9952,255.28,159.42,2540546.56,1586547.84,953998.72 Middle East and North Africa,Morocco,Clothes,Online,C,3/5/2010,582530581,4/22/2010,2599,109.28,35.84,284018.72,93148.16,190870.56 Europe,France,Office Supplies,Online,M,4/28/2016,565358006,5/11/2016,852,651.21,524.96,554830.92,447265.92,107565.00 Asia,Thailand,Baby Food,Online,L,4/26/2012,807421576,6/11/2012,2842,255.28,159.42,725505.76,453071.64,272434.12 Central America and the Caribbean,Haiti,Fruits,Offline,C,11/17/2012,110332620,12/6/2012,8729,9.33,6.92,81441.57,60404.68,21036.89 Middle East and North Africa,Turkey,Beverages,Offline,H,11/10/2014,946014964,12/29/2014,5705,47.45,31.79,270702.25,181361.95,89340.30 Europe,Liechtenstein,Personal Care,Offline,C,3/6/2016,906704938,3/14/2016,2995,81.73,56.67,244781.35,169726.65,75054.70 Sub-Saharan Africa,Kenya,Beverages,Offline,C,1/13/2012,354951369,1/26/2012,6853,47.45,31.79,325174.85,217856.87,107317.98 Asia,Cambodia,Vegetables,Offline,M,10/30/2013,173615586,12/11/2013,5565,154.06,90.93,857343.90,506025.45,351318.45 Asia,Thailand,Vegetables,Online,C,2/10/2015,415871417,2/20/2015,4449,154.06,90.93,685412.94,404547.57,280865.37 Asia,Brunei,Cereal,Online,M,6/23/2010,755205190,8/10/2010,853,205.70,117.11,175462.10,99894.83,75567.27 Australia and Oceania,Samoa ,Cereal,Online,H,7/14/2014,935415732,8/4/2014,9157,205.70,117.11,1883594.90,1072376.27,811218.63 Middle East and North Africa,Jordan,Office Supplies,Offline,H,8/27/2012,320614373,9/9/2012,5773,651.21,524.96,3759435.33,3030594.08,728841.25 Middle East and North Africa,Somalia,Cosmetics,Online,L,3/19/2010,145224940,4/30/2010,4142,437.20,263.33,1810882.40,1090712.86,720169.54 Central America and the Caribbean,Dominican Republic,Vegetables,Online,M,8/25/2013,363983762,10/3/2013,9738,154.06,90.93,1500236.28,885476.34,614759.94 Asia,Singapore,Beverages,Offline,C,7/13/2011,101939666,8/9/2011,5067,47.45,31.79,240429.15,161079.93,79349.22 Europe,Vatican City,Clothes,Offline,C,3/18/2016,804453980,4/27/2016,4664,109.28,35.84,509681.92,167157.76,342524.16 Australia and Oceania,Vanuatu,Household,Offline,C,8/10/2014,387200534,9/29/2014,97,668.27,502.54,64822.19,48746.38,16075.81 North America,Mexico,Vegetables,Online,C,6/1/2017,886165654,7/13/2017,4964,154.06,90.93,764753.84,451376.52,313377.32 Central America and the Caribbean,Dominica,Meat,Online,C,6/19/2017,807648169,7/29/2017,9896,421.89,364.69,4175023.44,3608972.24,566051.20 Europe,Montenegro,Personal Care,Online,C,3/22/2016,978259408,4/23/2016,7553,81.73,56.67,617306.69,428028.51,189278.18 Sub-Saharan Africa,Malawi,Cosmetics,Offline,L,6/9/2012,494923198,7/22/2012,7627,437.20,263.33,3334524.40,2008417.91,1326106.49 Europe,Albania,Meat,Online,M,6/29/2013,774875867,7/10/2013,1843,421.89,364.69,777543.27,672123.67,105419.60 Sub-Saharan Africa,Mozambique,Cereal,Offline,M,6/23/2016,605666244,7/8/2016,8956,205.70,117.11,1842249.20,1048837.16,793412.04 Europe,Denmark,Cereal,Online,M,12/23/2011,195155656,2/6/2012,9750,205.70,117.11,2005575.00,1141822.50,863752.50 Asia,Laos,Household,Offline,L,7/25/2010,721517932,8/22/2010,2045,668.27,502.54,1366612.15,1027694.30,338917.85 Middle East and North Africa,Iraq,Beverages,Offline,L,4/25/2016,283239400,5/2/2016,5687,47.45,31.79,269848.15,180789.73,89058.42 Middle East and North Africa,Oman,Beverages,Online,H,6/8/2015,649118888,6/21/2015,7559,47.45,31.79,358674.55,240300.61,118373.94 Central America and the Caribbean,Haiti,Meat,Online,C,5/2/2010,508267724,6/9/2010,6569,421.89,364.69,2771395.41,2395648.61,375746.80 Middle East and North Africa,Kuwait,Personal Care,Online,H,11/8/2015,420109736,11/22/2015,8662,81.73,56.67,707945.26,490875.54,217069.72 Sub-Saharan Africa,Burundi,Beverages,Online,C,1/11/2010,564381253,2/18/2010,1809,47.45,31.79,85837.05,57508.11,28328.94 Middle East and North Africa,Iraq,Fruits,Online,L,8/16/2013,291131103,9/25/2013,1018,9.33,6.92,9497.94,7044.56,2453.38 Sub-Saharan Africa,Cameroon,Cereal,Online,C,8/2/2010,370720613,8/21/2010,3322,205.70,117.11,683335.40,389039.42,294295.98 Central America and the Caribbean,El Salvador,Cereal,Online,H,6/11/2012,743823611,6/20/2012,2791,205.70,117.11,574108.70,326854.01,247254.69 Middle East and North Africa,Iraq,Personal Care,Offline,L,8/23/2016,971426427,8/31/2016,5522,81.73,56.67,451313.06,312931.74,138381.32 Asia,Taiwan,Cosmetics,Online,M,5/3/2010,684827888,5/7/2010,4645,437.20,263.33,2030794.00,1223167.85,807626.15 Australia and Oceania,New Zealand,Baby Food,Online,M,1/9/2012,935639321,2/24/2012,5322,255.28,159.42,1358600.16,848433.24,510166.92 Sub-Saharan Africa,Benin,Vegetables,Online,M,10/11/2014,145784556,10/31/2014,9745,154.06,90.93,1501314.70,886112.85,615201.85 Asia,Maldives,Fruits,Offline,M,9/23/2012,857499921,10/22/2012,2137,9.33,6.92,19938.21,14788.04,5150.17 Europe,Moldova ,Baby Food,Offline,L,6/7/2012,283334243,6/20/2012,3754,255.28,159.42,958321.12,598462.68,359858.44 Sub-Saharan Africa,Nigeria,Office Supplies,Offline,H,12/8/2013,656148850,1/2/2014,7881,651.21,524.96,5132186.01,4137209.76,994976.25 Sub-Saharan Africa,Mozambique,Personal Care,Online,M,7/27/2014,679117572,7/31/2014,4836,81.73,56.67,395246.28,274056.12,121190.16 Sub-Saharan Africa,Liberia,Cereal,Online,H,9/20/2012,475726735,9/27/2012,6967,205.70,117.11,1433111.90,815905.37,617206.53 Europe,Vatican City,Baby Food,Online,M,8/19/2011,239775168,9/13/2011,3656,255.28,159.42,933303.68,582839.52,350464.16 Sub-Saharan Africa,Djibouti,Household,Online,M,8/13/2015,685374200,8/28/2015,6311,668.27,502.54,4217451.97,3171529.94,1045922.03 Europe,Romania,Baby Food,Online,C,2/9/2011,796947658,3/2/2011,3377,255.28,159.42,862080.56,538361.34,323719.22 Sub-Saharan Africa,Republic of the Congo,Vegetables,Online,C,11/28/2015,979231870,1/17/2016,5326,154.06,90.93,820523.56,484293.18,336230.38 Sub-Saharan Africa,Mauritius ,Fruits,Online,C,10/19/2014,807275664,12/7/2014,9663,9.33,6.92,90155.79,66867.96,23287.83 Asia,Japan,Beverages,Online,C,5/7/2016,376440370,6/1/2016,5926,47.45,31.79,281188.70,188387.54,92801.16 Asia,Bhutan,Beverages,Offline,H,4/4/2011,752399814,5/1/2011,680,47.45,31.79,32266.00,21617.20,10648.80 Middle East and North Africa,Turkey,Cosmetics,Offline,M,1/3/2014,821140325,1/18/2014,2524,437.20,263.33,1103492.80,664644.92,438847.88 Sub-Saharan Africa,Comoros,Cereal,Online,C,8/24/2013,438960731,10/3/2013,7090,205.70,117.11,1458413.00,830309.90,628103.10 Middle East and North Africa,Iran,Office Supplies,Offline,H,6/5/2015,882472360,6/15/2015,2037,651.21,524.96,1326514.77,1069343.52,257171.25 Sub-Saharan Africa,Sao Tome and Principe,Office Supplies,Online,C,4/23/2014,798599040,5/23/2014,2057,651.21,524.96,1339538.97,1079842.72,259696.25 Sub-Saharan Africa,Namibia,Snacks,Offline,H,11/20/2013,254577100,12/1/2013,3876,152.58,97.44,591400.08,377677.44,213722.64 Central America and the Caribbean,Grenada,Personal Care,Offline,L,1/16/2015,287955367,1/22/2015,1247,81.73,56.67,101917.31,70667.49,31249.82 North America,Greenland,Vegetables,Online,L,2/21/2012,656595170,3/23/2012,9957,154.06,90.93,1533975.42,905390.01,628585.41 Europe,Latvia,Snacks,Offline,H,12/23/2011,288670337,1/31/2012,2822,152.58,97.44,430580.76,274975.68,155605.08 Sub-Saharan Africa,Nigeria,Personal Care,Offline,C,10/31/2014,432667195,12/16/2014,4693,81.73,56.67,383558.89,265952.31,117606.58 Sub-Saharan Africa,Uganda,Cosmetics,Online,C,9/13/2010,607384574,9/21/2010,7448,437.20,263.33,3256265.60,1961281.84,1294983.76 North America,Greenland,Beverages,Offline,C,5/9/2013,851933801,6/23/2013,4998,47.45,31.79,237155.10,158886.42,78268.68 Asia,South Korea,Vegetables,Online,H,2/15/2011,375738704,2/25/2011,8287,154.06,90.93,1276695.22,753536.91,523158.31 Sub-Saharan Africa,Burundi,Personal Care,Online,L,2/19/2016,708535611,3/17/2016,287,81.73,56.67,23456.51,16264.29,7192.22 Asia,India,Beverages,Offline,H,1/21/2015,750373351,1/22/2015,1004,47.45,31.79,47639.80,31917.16,15722.64 Central America and the Caribbean,Cuba,Office Supplies,Online,L,10/12/2010,821613252,10/19/2010,2474,651.21,524.96,1611093.54,1298751.04,312342.50 Middle East and North Africa,Somalia,Cosmetics,Online,C,1/17/2011,412929141,1/19/2011,3764,437.20,263.33,1645620.80,991174.12,654446.68 Sub-Saharan Africa,Kenya,Cereal,Online,M,1/30/2017,435307347,2/10/2017,5972,205.70,117.11,1228440.40,699380.92,529059.48 Europe,Hungary,Cereal,Offline,C,4/3/2012,970046699,5/18/2012,7230,205.70,117.11,1487211.00,846705.30,640505.70 Asia,Maldives,Baby Food,Online,H,4/15/2011,818758523,5/13/2011,7696,255.28,159.42,1964634.88,1226896.32,737738.56 Europe,France,Meat,Online,L,1/10/2011,653366649,2/3/2011,4565,421.89,364.69,1925927.85,1664809.85,261118.00 Europe,Vatican City,Fruits,Offline,M,12/19/2016,766107404,12/27/2016,7060,9.33,6.92,65869.80,48855.20,17014.60 Europe,Finland,Beverages,Offline,M,9/25/2016,619529616,11/10/2016,1436,47.45,31.79,68138.20,45650.44,22487.76 Europe,Malta,Snacks,Online,H,2/28/2014,196494615,3/14/2014,5978,152.58,97.44,912123.24,582496.32,329626.92 Sub-Saharan Africa,Lesotho,Personal Care,Offline,C,5/12/2010,450176227,6/12/2010,6004,81.73,56.67,490706.92,340246.68,150460.24 Europe,Czech Republic,Office Supplies,Online,M,1/30/2015,154060781,2/23/2015,8863,651.21,524.96,5771674.23,4652720.48,1118953.75 Europe,Georgia,Personal Care,Offline,L,8/20/2012,851947104,8/31/2012,8935,81.73,56.67,730257.55,506346.45,223911.10 Asia,Indonesia,Fruits,Online,C,2/14/2011,107946527,3/11/2011,2631,9.33,6.92,24547.23,18206.52,6340.71 Australia and Oceania,Palau,Household,Offline,C,11/27/2015,956482875,12/30/2015,3393,668.27,502.54,2267440.11,1705118.22,562321.89 Central America and the Caribbean,El Salvador,Household,Online,C,9/17/2010,652292478,10/5/2010,6694,668.27,502.54,4473399.38,3364002.76,1109396.62 Sub-Saharan Africa,Malawi,Vegetables,Online,C,5/26/2014,120424163,5/26/2014,5041,154.06,90.93,776616.46,458378.13,318238.33 Europe,Croatia,Office Supplies,Offline,M,8/8/2016,806239259,8/24/2016,2968,651.21,524.96,1932791.28,1558081.28,374710.00 Europe,Austria,Beverages,Online,C,10/23/2011,625411593,11/29/2011,2043,47.45,31.79,96940.35,64946.97,31993.38 Sub-Saharan Africa,Eritrea,Vegetables,Online,M,9/20/2010,713927495,11/6/2010,5866,154.06,90.93,903715.96,533395.38,370320.58 Asia,Philippines,Office Supplies,Offline,C,9/25/2013,478085792,10/16/2013,5065,651.21,524.96,3298378.65,2658922.40,639456.25 Sub-Saharan Africa,Botswana,Personal Care,Online,M,10/1/2014,744497811,11/17/2014,2302,81.73,56.67,188142.46,130454.34,57688.12 Middle East and North Africa,Azerbaijan,Personal Care,Online,L,7/5/2012,610087382,8/24/2012,7269,81.73,56.67,594095.37,411934.23,182161.14 Middle East and North Africa,Azerbaijan,Meat,Offline,H,5/26/2014,592090833,6/13/2014,1690,421.89,364.69,712994.10,616326.10,96668.00 Central America and the Caribbean,Saint Vincent and the Grenadines,Beverages,Online,L,7/6/2017,378056991,8/5/2017,4320,47.45,31.79,204984.00,137332.80,67651.20 Europe,Sweden,Beverages,Offline,M,6/4/2012,175847184,6/29/2012,5944,47.45,31.79,282042.80,188959.76,93083.04 Australia and Oceania,Tuvalu,Snacks,Online,M,4/17/2017,263635241,5/18/2017,4381,152.58,97.44,668452.98,426884.64,241568.34 Middle East and North Africa,United Arab Emirates,Meat,Offline,H,6/19/2013,539907491,7/31/2013,9479,421.89,364.69,3999095.31,3456896.51,542198.80 Sub-Saharan Africa,Seychelles ,Fruits,Offline,L,6/11/2017,973462760,7/17/2017,8118,9.33,6.92,75740.94,56176.56,19564.38 Middle East and North Africa,Qatar,Household,Offline,H,6/28/2016,253412377,7/5/2016,9209,668.27,502.54,6154098.43,4627890.86,1526207.57 Middle East and North Africa,Israel,Beverages,Online,H,4/21/2010,739180171,5/29/2010,8694,47.45,31.79,412530.30,276382.26,136148.04 Europe,Poland,Personal Care,Online,L,10/13/2014,810502469,11/5/2014,4547,81.73,56.67,371626.31,257678.49,113947.82 Asia,Vietnam,Office Supplies,Offline,M,10/27/2012,717428100,12/12/2012,1772,651.21,524.96,1153944.12,930229.12,223715.00 Middle East and North Africa,Somalia,Cereal,Online,L,2/4/2011,330318391,2/6/2011,7407,205.70,117.11,1523619.90,867433.77,656186.13 Middle East and North Africa,Afghanistan,Cereal,Offline,L,7/20/2013,489847171,8/17/2013,5518,205.70,117.11,1135052.60,646212.98,488839.62 Asia,Vietnam,Snacks,Offline,M,1/25/2010,757000768,2/15/2010,2204,152.58,97.44,336286.32,214757.76,121528.56 Sub-Saharan Africa,Tanzania,Snacks,Online,H,7/5/2010,763078010,7/23/2010,595,152.58,97.44,90785.10,57976.80,32808.30 Australia and Oceania,New Zealand,Vegetables,Online,H,9/1/2010,659690225,9/19/2010,5852,154.06,90.93,901559.12,532122.36,369436.76 Europe,Austria,Meat,Offline,M,3/8/2011,668761241,3/17/2011,167,421.89,364.69,70455.63,60903.23,9552.40 Sub-Saharan Africa,Djibouti,Personal Care,Offline,L,10/2/2013,632527387,11/15/2013,7765,81.73,56.67,634633.45,440042.55,194590.90 Europe,United Kingdom,Household,Offline,C,5/15/2017,463537490,5/25/2017,9899,668.27,502.54,6615204.73,4974643.46,1640561.27 Sub-Saharan Africa,Guinea-Bissau,Personal Care,Online,M,7/3/2014,594652879,7/14/2014,9856,81.73,56.67,805530.88,558539.52,246991.36 Asia,Brunei,Meat,Online,H,1/20/2010,629047381,3/1/2010,7954,421.89,364.69,3355713.06,2900744.26,454968.80 Central America and the Caribbean,Panama,Baby Food,Online,H,7/24/2017,690207326,9/10/2017,6541,255.28,159.42,1669786.48,1042766.22,627020.26 Europe,Montenegro,Baby Food,Offline,L,7/18/2017,971931540,8/17/2017,4996,255.28,159.42,1275378.88,796462.32,478916.56 Asia,Sri Lanka,Cosmetics,Offline,L,4/26/2014,388331353,6/7/2014,4732,437.20,263.33,2068830.40,1246077.56,822752.84 Sub-Saharan Africa,Cote d'Ivoire,Cereal,Offline,C,1/13/2017,623830592,2/8/2017,4190,205.70,117.11,861883.00,490690.90,371192.10 Middle East and North Africa,Tunisia ,Vegetables,Online,H,3/16/2013,283165585,4/28/2013,3844,154.06,90.93,592206.64,349534.92,242671.72 Asia,Kazakhstan,Fruits,Online,L,4/30/2010,741385161,6/5/2010,1199,9.33,6.92,11186.67,8297.08,2889.59 Europe,Germany,Fruits,Online,C,12/22/2016,293850648,1/6/2017,5792,9.33,6.92,54039.36,40080.64,13958.72 Sub-Saharan Africa,Namibia,Clothes,Online,L,4/8/2016,906235873,5/6/2016,4188,109.28,35.84,457664.64,150097.92,307566.72 Australia and Oceania,Tonga,Clothes,Online,L,2/14/2015,564527165,3/21/2015,4988,109.28,35.84,545088.64,178769.92,366318.72 Sub-Saharan Africa,Gabon,Meat,Offline,L,2/26/2010,925023353,4/2/2010,3821,421.89,364.69,1612041.69,1393480.49,218561.20 Australia and Oceania,Fiji,Cereal,Offline,H,3/10/2014,564335763,4/20/2014,8348,205.70,117.11,1717183.60,977634.28,739549.32 Sub-Saharan Africa,Equatorial Guinea,Office Supplies,Online,M,8/13/2014,829388225,8/14/2014,3261,651.21,524.96,2123595.81,1711894.56,411701.25 Middle East and North Africa,Tunisia ,Meat,Online,L,1/12/2015,887417066,2/14/2015,5285,421.89,364.69,2229688.65,1927386.65,302302.00 Australia and Oceania,New Zealand,Cereal,Offline,L,4/24/2016,875971114,5/30/2016,8174,205.70,117.11,1681391.80,957257.14,724134.66 Middle East and North Africa,Somalia,Snacks,Offline,M,10/28/2012,552911698,11/22/2012,7713,152.58,97.44,1176849.54,751554.72,425294.82 Sub-Saharan Africa,Sao Tome and Principe,Personal Care,Online,L,5/15/2011,646412646,5/20/2011,6722,81.73,56.67,549389.06,380935.74,168453.32 Europe,Norway,Clothes,Online,H,3/21/2012,604960286,5/4/2012,47,109.28,35.84,5136.16,1684.48,3451.68 Asia,Mongolia,Cereal,Offline,C,12/11/2012,847353446,1/25/2013,9570,205.70,117.11,1968549.00,1120742.70,847806.30 Sub-Saharan Africa,Burundi,Clothes,Online,L,3/5/2012,512703454,4/1/2012,9200,109.28,35.84,1005376.00,329728.00,675648.00 Central America and the Caribbean,Cuba,Fruits,Offline,C,5/21/2013,610434138,7/8/2013,9882,9.33,6.92,92199.06,68383.44,23815.62 Australia and Oceania,Tonga,Snacks,Online,H,7/20/2013,870281827,8/15/2013,4587,152.58,97.44,699884.46,446957.28,252927.18 Europe,United Kingdom,Clothes,Online,M,6/29/2014,192295348,7/20/2014,3322,109.28,35.84,363028.16,119060.48,243967.68 Sub-Saharan Africa,Benin,Baby Food,Offline,H,7/11/2011,696836030,7/15/2011,8121,255.28,159.42,2073128.88,1294649.82,778479.06 Europe,Czech Republic,Clothes,Online,M,5/22/2012,974577701,6/27/2012,8054,109.28,35.84,880141.12,288655.36,591485.76 Europe,Albania,Beverages,Offline,C,9/28/2010,136506688,11/5/2010,4217,47.45,31.79,200096.65,134058.43,66038.22 Sub-Saharan Africa,Burkina Faso,Office Supplies,Offline,H,9/1/2012,963921821,9/23/2012,4742,651.21,524.96,3088037.82,2489360.32,598677.50 Central America and the Caribbean,Grenada,Beverages,Offline,L,3/2/2010,458434426,3/16/2010,9789,47.45,31.79,464488.05,311192.31,153295.74 Europe,Spain,Vegetables,Offline,H,3/29/2015,191968333,4/25/2015,6551,154.06,90.93,1009247.06,595682.43,413564.63 Sub-Saharan Africa,Comoros,Cosmetics,Offline,H,8/28/2010,456759870,10/3/2010,4250,437.20,263.33,1858100.00,1119152.50,738947.50 Australia and Oceania,Papua New Guinea,Cosmetics,Offline,H,5/3/2014,715357863,5/9/2014,9143,437.20,263.33,3997319.60,2407626.19,1589693.41 Sub-Saharan Africa,Tanzania,Personal Care,Offline,H,12/19/2014,950623643,1/3/2015,9516,81.73,56.67,777742.68,539271.72,238470.96 Europe,Sweden,Cereal,Offline,H,8/27/2013,315731036,9/26/2013,685,205.70,117.11,140904.50,80220.35,60684.15 Sub-Saharan Africa,Chad,Snacks,Offline,H,8/2/2012,284166371,8/31/2012,9999,152.58,97.44,1525647.42,974302.56,551344.86 Sub-Saharan Africa,Liberia,Fruits,Offline,M,3/20/2011,599728477,4/19/2011,1838,9.33,6.92,17148.54,12718.96,4429.58 Australia and Oceania,Federated States of Micronesia,Vegetables,Online,C,1/22/2010,626528680,2/6/2010,2614,154.06,90.93,402712.84,237691.02,165021.82 Sub-Saharan Africa,Ethiopia,Vegetables,Offline,M,7/1/2014,698990809,7/3/2014,5768,154.06,90.93,888618.08,524484.24,364133.84 Sub-Saharan Africa,Benin,Fruits,Online,L,10/26/2015,771851193,11/19/2015,6775,9.33,6.92,63210.75,46883.00,16327.75 Central America and the Caribbean,The Bahamas,Baby Food,Online,H,3/2/2010,870158660,3/4/2010,8139,255.28,159.42,2077723.92,1297519.38,780204.54 Middle East and North Africa,Egypt,Vegetables,Online,C,6/19/2017,639274537,7/10/2017,4396,154.06,90.93,677247.76,399728.28,277519.48 Central America and the Caribbean,Saint Kitts and Nevis ,Vegetables,Online,H,1/21/2017,694872653,1/22/2017,7114,154.06,90.93,1095982.84,646876.02,449106.82 Asia,Bangladesh,Office Supplies,Online,H,1/27/2012,372939336,2/26/2012,9892,651.21,524.96,6441769.32,5192904.32,1248865.00 Sub-Saharan Africa,Botswana,Office Supplies,Online,H,6/24/2010,879773414,7/25/2010,3358,651.21,524.96,2186763.18,1762815.68,423947.50 Australia and Oceania,Palau,Snacks,Online,H,9/30/2013,341986215,11/10/2013,175,152.58,97.44,26701.50,17052.00,9649.50 Central America and the Caribbean,Cuba,Cosmetics,Online,H,1/20/2013,556501567,2/25/2013,35,437.20,263.33,15302.00,9216.55,6085.45 Asia,Sri Lanka,Clothes,Online,H,10/12/2015,240555799,10/15/2015,4661,109.28,35.84,509354.08,167050.24,342303.84 North America,Greenland,Beverages,Online,M,6/12/2011,881697738,7/5/2011,2809,47.45,31.79,133287.05,89298.11,43988.94 Sub-Saharan Africa,Equatorial Guinea,Baby Food,Online,C,5/6/2013,887788712,6/8/2013,5264,255.28,159.42,1343793.92,839186.88,504607.04 Australia and Oceania,Samoa ,Cereal,Online,L,12/2/2016,537002551,12/14/2016,9843,205.70,117.11,2024705.10,1152713.73,871991.37 Europe,Liechtenstein,Vegetables,Online,H,2/2/2011,627825582,2/5/2011,6396,154.06,90.93,985367.76,581588.28,403779.48 Central America and the Caribbean,Belize,Household,Online,H,5/9/2012,229056632,6/14/2012,1802,668.27,502.54,1204222.54,905577.08,298645.46 Sub-Saharan Africa,Uganda,Cereal,Online,L,7/20/2015,729807031,7/24/2015,4973,205.70,117.11,1022946.10,582388.03,440558.07 Middle East and North Africa,Somalia,Office Supplies,Offline,M,10/19/2012,889500606,11/28/2012,1851,651.21,524.96,1205389.71,971700.96,233688.75 Europe,Austria,Office Supplies,Offline,C,6/8/2012,887873685,7/15/2012,409,651.21,524.96,266344.89,214708.64,51636.25 Middle East and North Africa,Bahrain,Snacks,Online,M,6/29/2012,974975097,7/28/2012,5652,152.58,97.44,862382.16,550730.88,311651.28 Sub-Saharan Africa,Seychelles ,Fruits,Offline,C,1/28/2012,121166169,2/10/2012,4617,9.33,6.92,43076.61,31949.64,11126.97 Sub-Saharan Africa,Guinea,Fruits,Online,C,2/18/2015,967120730,3/15/2015,1371,9.33,6.92,12791.43,9487.32,3304.11 Middle East and North Africa,Egypt,Fruits,Offline,M,7/15/2011,373825109,7/26/2011,2012,9.33,6.92,18771.96,13923.04,4848.92 Sub-Saharan Africa,Djibouti,Clothes,Online,H,2/27/2011,672578132,3/8/2011,9670,109.28,35.84,1056737.60,346572.80,710164.80 Asia,Brunei,Snacks,Offline,M,5/11/2017,214991128,5/29/2017,9507,152.58,97.44,1450578.06,926362.08,524215.98 Australia and Oceania,Samoa ,Beverages,Online,L,8/19/2015,122987926,9/15/2015,3715,47.45,31.79,176276.75,118099.85,58176.90 Europe,Norway,Cereal,Online,C,4/3/2015,238804852,5/9/2015,6517,205.70,117.11,1340546.90,763205.87,577341.03 Sub-Saharan Africa,Burkina Faso,Office Supplies,Offline,M,3/17/2015,474990737,4/21/2015,9169,651.21,524.96,5970944.49,4813358.24,1157586.25 Sub-Saharan Africa,Guinea-Bissau,Beverages,Online,H,7/18/2015,364406907,8/14/2015,4957,47.45,31.79,235209.65,157583.03,77626.62 Middle East and North Africa,United Arab Emirates,Personal Care,Online,C,8/3/2013,410227191,8/5/2013,4197,81.73,56.67,343020.81,237843.99,105176.82 North America,Mexico,Cereal,Online,M,4/21/2015,735937917,5/8/2015,9239,205.70,117.11,1900462.30,1081979.29,818483.01 Europe,Lithuania,Vegetables,Online,H,5/11/2016,635337913,5/23/2016,9462,154.06,90.93,1457715.72,860379.66,597336.06 North America,United States of America,Snacks,Offline,L,6/30/2013,822538506,8/15/2013,6278,152.58,97.44,957897.24,611728.32,346168.92 Asia,Japan,Office Supplies,Offline,C,11/12/2015,281963527,11/22/2015,8128,651.21,524.96,5293034.88,4266874.88,1026160.00 Sub-Saharan Africa,Sao Tome and Principe,Office Supplies,Offline,L,12/23/2010,318349301,1/5/2011,5488,651.21,524.96,3573840.48,2880980.48,692860.00 Europe,Denmark,Meat,Online,M,11/27/2013,506744658,11/28/2013,5860,421.89,364.69,2472275.40,2137083.40,335192.00 Sub-Saharan Africa,Eritrea,Clothes,Offline,M,7/2/2010,942510926,8/5/2010,8783,109.28,35.84,959806.24,314782.72,645023.52 Sub-Saharan Africa,Republic of the Congo,Household,Online,M,3/7/2014,891321933,3/13/2014,822,668.27,502.54,549317.94,413087.88,136230.06 Sub-Saharan Africa,Kenya,Office Supplies,Online,C,9/16/2016,139164006,10/18/2016,577,651.21,524.96,375748.17,302901.92,72846.25 Sub-Saharan Africa,Senegal,Cosmetics,Offline,M,9/16/2014,342335975,9/24/2014,3677,437.20,263.33,1607584.40,968264.41,639319.99 Sub-Saharan Africa,The Gambia,Beverages,Online,L,6/4/2013,977449166,7/22/2013,7784,47.45,31.79,369350.80,247453.36,121897.44 Sub-Saharan Africa,Cameroon,Household,Online,L,5/25/2015,691427409,5/26/2015,7590,668.27,502.54,5072169.30,3814278.60,1257890.70 Sub-Saharan Africa,Djibouti,Fruits,Offline,H,8/24/2016,451507031,9/25/2016,9819,9.33,6.92,91611.27,67947.48,23663.79 Europe,Ireland,Household,Offline,H,6/25/2010,395236861,8/6/2010,8225,668.27,502.54,5496520.75,4133391.50,1363129.25 Asia,Bhutan,Office Supplies,Offline,M,12/26/2013,280478227,2/12/2014,8595,651.21,524.96,5597149.95,4512031.20,1085118.75 Europe,Hungary,Meat,Offline,M,3/26/2011,835404956,3/26/2011,3746,421.89,364.69,1580399.94,1366128.74,214271.20 Asia,Thailand,Cosmetics,Offline,L,1/29/2010,608503377,2/18/2010,8526,437.20,263.33,3727567.20,2245151.58,1482415.62 Europe,Cyprus,Cereal,Online,M,8/31/2015,918572318,9/9/2015,4816,205.70,117.11,990651.20,564001.76,426649.44 Sub-Saharan Africa,Swaziland,Household,Online,C,6/21/2011,904723107,7/30/2011,6527,668.27,502.54,4361798.29,3280078.58,1081719.71 Middle East and North Africa,Bahrain,Vegetables,Online,C,2/13/2016,676379573,2/26/2016,4601,154.06,90.93,708830.06,418368.93,290461.13 Europe,Georgia,Fruits,Online,C,6/10/2011,863278043,6/14/2011,2012,9.33,6.92,18771.96,13923.04,4848.92 Asia,Malaysia,Clothes,Online,H,5/27/2014,365467345,6/15/2014,8764,109.28,35.84,957729.92,314101.76,643628.16 Sub-Saharan Africa,Mauritius ,Snacks,Online,C,9/28/2012,403308808,10/28/2012,6894,152.58,97.44,1051886.52,671751.36,380135.16 Europe,San Marino,Personal Care,Offline,H,3/16/2014,467476260,5/2/2014,5469,81.73,56.67,446981.37,309928.23,137053.14 Sub-Saharan Africa,Namibia,Beverages,Offline,M,6/12/2012,568956029,7/25/2012,5587,47.45,31.79,265103.15,177610.73,87492.42 Asia,North Korea,Snacks,Offline,C,7/21/2013,789046943,8/18/2013,5380,152.58,97.44,820880.40,524227.20,296653.20 Middle East and North Africa,Jordan,Baby Food,Online,M,2/3/2017,829360330,3/4/2017,5007,255.28,159.42,1278186.96,798215.94,479971.02 Sub-Saharan Africa,Republic of the Congo,Vegetables,Offline,C,5/9/2012,461820018,5/17/2012,1661,154.06,90.93,255893.66,151034.73,104858.93 Australia and Oceania,New Zealand,Fruits,Offline,H,5/23/2012,878662335,7/5/2012,4566,9.33,6.92,42600.78,31596.72,11004.06 Central America and the Caribbean,Trinidad and Tobago,Personal Care,Offline,M,5/30/2012,642436110,7/14/2012,9976,81.73,56.67,815338.48,565339.92,249998.56 Europe,Malta,Personal Care,Online,L,3/29/2016,636002671,5/13/2016,6179,81.73,56.67,505009.67,350163.93,154845.74 Europe,Austria,Snacks,Offline,L,6/4/2017,912535846,6/11/2017,8490,152.58,97.44,1295404.20,827265.60,468138.60 Middle East and North Africa,Afghanistan,Meat,Offline,C,7/26/2010,245521962,8/7/2010,4259,421.89,364.69,1796829.51,1553214.71,243614.80 Europe,Belarus,Cereal,Online,L,4/7/2010,178759849,5/4/2010,7866,205.70,117.11,1618036.20,921187.26,696848.94 Australia and Oceania,Australia,Personal Care,Online,M,1/17/2017,976360833,2/19/2017,5722,81.73,56.67,467659.06,324265.74,143393.32 Central America and the Caribbean,El Salvador,Fruits,Offline,H,7/25/2013,272748744,9/13/2013,1269,9.33,6.92,11839.77,8781.48,3058.29 Sub-Saharan Africa,Madagascar,Beverages,Online,C,10/29/2013,722659909,11/7/2013,9981,47.45,31.79,473598.45,317295.99,156302.46 Europe,Iceland,Clothes,Offline,L,12/23/2013,551143157,1/24/2014,4363,109.28,35.84,476788.64,156369.92,320418.72 Asia,Mongolia,Office Supplies,Offline,H,3/25/2011,303559815,3/28/2011,8950,651.21,524.96,5828329.50,4698392.00,1129937.50 Asia,South Korea,Beverages,Online,L,3/17/2015,595583713,5/1/2015,5311,47.45,31.79,252006.95,168836.69,83170.26 Europe,Cyprus,Clothes,Online,H,11/23/2013,763201177,1/4/2014,7043,109.28,35.84,769659.04,252421.12,517237.92 Europe,Bosnia and Herzegovina,Household,Offline,L,4/8/2015,212711036,4/26/2015,4777,668.27,502.54,3192325.79,2400633.58,791692.21 Europe,Cyprus,Fruits,Online,M,3/21/2013,670724618,4/2/2013,1174,9.33,6.92,10953.42,8124.08,2829.34 Asia,Kyrgyzstan,Beverages,Online,C,1/26/2014,334165751,3/17/2014,5927,47.45,31.79,281236.15,188419.33,92816.82 Asia,Thailand,Cereal,Online,L,1/23/2010,620270764,2/9/2010,758,205.70,117.11,155920.60,88769.38,67151.22 Europe,Slovenia,Cosmetics,Offline,M,6/4/2013,316588485,7/18/2013,4423,437.20,263.33,1933735.60,1164708.59,769027.01 Asia,Indonesia,Fruits,Offline,M,9/28/2014,530980241,10/17/2014,7708,9.33,6.92,71915.64,53339.36,18576.28 Asia,China,Personal Care,Offline,C,1/8/2017,641619861,1/29/2017,8430,81.73,56.67,688983.90,477728.10,211255.80 Central America and the Caribbean,Guatemala,Fruits,Offline,M,10/4/2016,546993672,11/17/2016,6438,9.33,6.92,60066.54,44550.96,15515.58 Europe,Estonia,Vegetables,Online,H,4/23/2015,215900504,5/8/2015,8612,154.06,90.93,1326764.72,783089.16,543675.56 Central America and the Caribbean,Saint Kitts and Nevis ,Personal Care,Offline,M,1/30/2015,137451684,3/1/2015,3863,81.73,56.67,315722.99,218916.21,96806.78 Europe,Georgia,Cereal,Offline,H,10/9/2015,871071040,10/28/2015,8133,205.70,117.11,1672958.10,952455.63,720502.47 Middle East and North Africa,Israel,Office Supplies,Offline,M,7/25/2010,796494901,8/23/2010,9396,651.21,524.96,6118769.16,4932524.16,1186245.00 Middle East and North Africa,Syria,Meat,Offline,C,8/21/2012,163772094,10/1/2012,2657,421.89,364.69,1120961.73,968981.33,151980.40 North America,Greenland,Household,Offline,H,7/12/2013,643263947,7/15/2013,4952,668.27,502.54,3309273.04,2488578.08,820694.96 Europe,Norway,Household,Online,H,3/9/2017,375644290,3/9/2017,348,668.27,502.54,232557.96,174883.92,57674.04 Middle East and North Africa,Turkey,Snacks,Offline,C,6/24/2013,721899449,7/24/2013,4944,152.58,97.44,754355.52,481743.36,272612.16 Central America and the Caribbean,Panama,Clothes,Online,L,4/12/2012,413328254,5/11/2012,1870,109.28,35.84,204353.60,67020.80,137332.80 Asia,Uzbekistan,Meat,Offline,L,12/12/2016,501542031,1/29/2017,6287,421.89,364.69,2652422.43,2292806.03,359616.40 Sub-Saharan Africa,Democratic Republic of the Congo,Meat,Offline,H,12/24/2012,308464610,1/15/2013,388,421.89,364.69,163693.32,141499.72,22193.60 Middle East and North Africa,Qatar,Clothes,Online,L,3/23/2017,576332318,3/29/2017,8395,109.28,35.84,917405.60,300876.80,616528.80 Sub-Saharan Africa,Tanzania,Office Supplies,Online,H,7/9/2013,317693984,8/16/2013,1565,651.21,524.96,1019143.65,821562.40,197581.25 Sub-Saharan Africa,Nigeria,Meat,Online,H,1/21/2017,865410935,2/9/2017,3182,421.89,364.69,1342453.98,1160443.58,182010.40 Central America and the Caribbean,Costa Rica,Snacks,Online,H,1/8/2010,922657001,2/21/2010,3565,152.58,97.44,543947.70,347373.60,196574.10 Europe,Ukraine,Vegetables,Online,C,7/8/2013,612918508,7/22/2013,5062,154.06,90.93,779851.72,460287.66,319564.06 Europe,Netherlands,Clothes,Offline,C,8/25/2015,129994285,9/17/2015,7052,109.28,35.84,770642.56,252743.68,517898.88 Asia,South Korea,Household,Offline,L,2/22/2013,187995660,3/22/2013,948,668.27,502.54,633519.96,476407.92,157112.04 Europe,Malta,Beverages,Offline,M,3/3/2015,671346461,3/24/2015,5192,47.45,31.79,246360.40,165053.68,81306.72 Europe,Switzerland,Clothes,Offline,M,10/17/2016,184783017,10/29/2016,256,109.28,35.84,27975.68,9175.04,18800.64 Sub-Saharan Africa,Burundi,Snacks,Online,L,5/20/2010,103354156,7/5/2010,3646,152.58,97.44,556306.68,355266.24,201040.44 Middle East and North Africa,Israel,Office Supplies,Offline,H,1/28/2012,522421205,2/27/2012,4899,651.21,524.96,3190277.79,2571779.04,618498.75 Sub-Saharan Africa,Angola,Beverages,Offline,L,7/25/2012,707657992,8/8/2012,581,47.45,31.79,27568.45,18469.99,9098.46 Central America and the Caribbean,Panama,Vegetables,Online,L,3/14/2011,445050847,3/21/2011,9291,154.06,90.93,1431371.46,844830.63,586540.83 Asia,China,Baby Food,Online,L,2/28/2012,490898597,3/9/2012,6658,255.28,159.42,1699654.24,1061418.36,638235.88 Central America and the Caribbean,Saint Lucia,Beverages,Online,M,2/18/2013,321812570,3/24/2013,346,47.45,31.79,16417.70,10999.34,5418.36 Sub-Saharan Africa,Central African Republic,Baby Food,Online,C,8/26/2016,384716594,9/24/2016,5044,255.28,159.42,1287632.32,804114.48,483517.84 Europe,Andorra,Fruits,Offline,H,3/2/2011,746846997,3/11/2011,7478,9.33,6.92,69769.74,51747.76,18021.98 Sub-Saharan Africa,Sierra Leone,Office Supplies,Online,L,9/12/2012,645752608,10/9/2012,1402,651.21,524.96,912996.42,735993.92,177002.50 Sub-Saharan Africa,Niger,Fruits,Online,C,8/14/2015,739294755,10/1/2015,2602,9.33,6.92,24276.66,18005.84,6270.82 Australia and Oceania,Federated States of Micronesia,Personal Care,Online,M,7/27/2011,855647265,8/20/2011,3895,81.73,56.67,318338.35,220729.65,97608.70 Sub-Saharan Africa,Seychelles ,Household,Online,M,12/26/2015,443296468,1/19/2016,131,668.27,502.54,87543.37,65832.74,21710.63 Central America and the Caribbean,Honduras,Vegetables,Offline,C,4/14/2011,821041190,4/16/2011,3188,154.06,90.93,491143.28,289884.84,201258.44 Middle East and North Africa,Azerbaijan,Snacks,Offline,M,3/28/2011,227992761,4/25/2011,6979,152.58,97.44,1064855.82,680033.76,384822.06 Sub-Saharan Africa,Mali,Household,Offline,H,10/3/2011,573575007,10/10/2011,2446,668.27,502.54,1634588.42,1229212.84,405375.58 Sub-Saharan Africa,Kenya,Beverages,Online,H,5/17/2017,687524259,5/27/2017,2561,47.45,31.79,121519.45,81414.19,40105.26 Sub-Saharan Africa,Cameroon,Beverages,Offline,M,10/13/2014,369889342,11/27/2014,7331,47.45,31.79,347855.95,233052.49,114803.46 Asia,India,Clothes,Online,C,6/8/2014,841031587,7/12/2014,8791,109.28,35.84,960680.48,315069.44,645611.04 Sub-Saharan Africa,Cameroon,Personal Care,Offline,H,6/30/2016,691624820,8/5/2016,6008,81.73,56.67,491033.84,340473.36,150560.48 Europe,Norway,Cereal,Offline,M,8/17/2014,832655370,9/11/2014,82,205.70,117.11,16867.40,9603.02,7264.38 Europe,Serbia,Meat,Offline,C,11/29/2014,445422065,12/11/2014,9142,421.89,364.69,3856918.38,3333995.98,522922.40 Sub-Saharan Africa,Rwanda,Vegetables,Online,M,12/2/2016,131536233,12/24/2016,3349,154.06,90.93,515946.94,304524.57,211422.37 Australia and Oceania,Vanuatu,Meat,Online,H,7/6/2017,562921702,7/24/2017,9896,421.89,364.69,4175023.44,3608972.24,566051.20 Middle East and North Africa,Yemen,Meat,Offline,M,8/8/2014,231814801,9/4/2014,8006,421.89,364.69,3377651.34,2919708.14,457943.20 Europe,Liechtenstein,Cosmetics,Offline,C,12/16/2010,400764358,12/28/2010,3934,437.20,263.33,1719944.80,1035940.22,684004.58 Asia,Cambodia,Household,Offline,H,6/2/2010,152631700,6/3/2010,5967,668.27,502.54,3987567.09,2998656.18,988910.91 Asia,Turkmenistan,Household,Online,L,2/4/2014,440590655,2/16/2014,9421,668.27,502.54,6295771.67,4734429.34,1561342.33 Central America and the Caribbean,Saint Lucia,Office Supplies,Online,H,8/3/2016,938127553,8/26/2016,1645,651.21,524.96,1071240.45,863559.20,207681.25 Sub-Saharan Africa,Seychelles ,Cosmetics,Offline,H,5/12/2017,489041221,5/13/2017,7020,437.20,263.33,3069144.00,1848576.60,1220567.40 Australia and Oceania,Nauru,Cereal,Offline,H,12/7/2016,257442986,1/6/2017,1956,205.70,117.11,402349.20,229067.16,173282.04 Europe,Switzerland,Vegetables,Offline,M,2/6/2013,577756679,3/3/2013,9895,154.06,90.93,1524423.70,899752.35,624671.35 Australia and Oceania,Tuvalu,Beverages,Online,M,4/22/2012,504718625,5/14/2012,6312,47.45,31.79,299504.40,200658.48,98845.92 Middle East and North Africa,Turkey,Clothes,Offline,L,9/10/2010,963377654,10/20/2010,3711,109.28,35.84,405538.08,133002.24,272535.84 Asia,Kyrgyzstan,Clothes,Offline,M,1/14/2013,699095094,1/28/2013,6629,109.28,35.84,724417.12,237583.36,486833.76 North America,Canada,Household,Offline,M,10/30/2013,327544772,11/14/2013,6632,668.27,502.54,4431966.64,3332845.28,1099121.36 Sub-Saharan Africa,Chad,Fruits,Offline,M,3/11/2016,984713017,4/11/2016,7319,9.33,6.92,68286.27,50647.48,17638.79 Asia,Bhutan,Cosmetics,Online,M,12/16/2012,276898658,1/19/2013,9321,437.20,263.33,4075141.20,2454498.93,1620642.27 Sub-Saharan Africa,Equatorial Guinea,Snacks,Online,C,3/2/2013,830713021,3/14/2013,5298,152.58,97.44,808368.84,516237.12,292131.72 Central America and the Caribbean,Guatemala,Beverages,Online,C,7/25/2015,843079936,9/4/2015,4943,47.45,31.79,234545.35,157137.97,77407.38 Middle East and North Africa,Lebanon,Household,Online,H,5/21/2012,831235730,5/29/2012,9979,668.27,502.54,6668666.33,5014846.66,1653819.67 Europe,Sweden,Meat,Online,C,11/17/2015,482729232,12/30/2015,9162,421.89,364.69,3865356.18,3341289.78,524066.40 Europe,Latvia,Household,Online,M,8/10/2016,905421769,9/12/2016,3277,668.27,502.54,2189920.79,1646823.58,543097.21 Asia,Uzbekistan,Fruits,Offline,L,1/8/2010,577487170,1/16/2010,142,9.33,6.92,1324.86,982.64,342.22 Sub-Saharan Africa,South Sudan,Office Supplies,Online,C,5/1/2015,297411763,5/12/2015,9605,651.21,524.96,6254872.05,5042240.80,1212631.25 Middle East and North Africa,Egypt,Cosmetics,Offline,M,3/2/2011,933994376,3/24/2011,8546,437.20,263.33,3736311.20,2250418.18,1485893.02 Europe,Montenegro,Vegetables,Online,M,2/1/2015,276346337,3/6/2015,5877,154.06,90.93,905410.62,534395.61,371015.01 Europe,Vatican City,Baby Food,Offline,C,8/23/2011,683891475,9/19/2011,7540,255.28,159.42,1924811.20,1202026.80,722784.40 Asia,Vietnam,Household,Offline,H,9/25/2016,536366117,11/13/2016,1508,668.27,502.54,1007751.16,757830.32,249920.84 Europe,Latvia,Fruits,Online,L,4/4/2013,983819091,5/5/2013,2786,9.33,6.92,25993.38,19279.12,6714.26 Europe,Armenia,Fruits,Offline,C,6/16/2015,996611726,7/7/2015,8411,9.33,6.92,78474.63,58204.12,20270.51 Middle East and North Africa,Jordan,Fruits,Online,C,2/20/2012,515417850,2/23/2012,2450,9.33,6.92,22858.50,16954.00,5904.50 Europe,Lithuania,Household,Online,M,11/23/2015,901223790,12/20/2015,1002,668.27,502.54,669606.54,503545.08,166061.46 Central America and the Caribbean,El Salvador,Baby Food,Offline,H,11/15/2013,885328376,12/12/2013,7195,255.28,159.42,1836739.60,1147026.90,689712.70 Europe,Cyprus,Office Supplies,Online,M,1/5/2017,619342935,1/9/2017,6192,651.21,524.96,4032292.32,3250552.32,781740.00 North America,Canada,Fruits,Online,H,10/21/2010,325191295,12/7/2010,185,9.33,6.92,1726.05,1280.20,445.85 Asia,Malaysia,Personal Care,Offline,L,2/5/2012,745109784,2/9/2012,3398,81.73,56.67,277718.54,192564.66,85153.88 Middle East and North Africa,Iran,Household,Offline,M,4/21/2012,891647231,5/9/2012,7085,668.27,502.54,4734692.95,3560495.90,1174197.05 Australia and Oceania,Palau,Cosmetics,Online,L,6/22/2011,297664964,8/2/2011,4532,437.20,263.33,1981390.40,1193411.56,787978.84 Australia and Oceania,Nauru,Vegetables,Offline,C,7/2/2014,366336810,7/15/2014,6058,154.06,90.93,933295.48,550853.94,382441.54 North America,United States of America,Clothes,Online,L,3/16/2012,321149098,4/24/2012,4010,109.28,35.84,438212.80,143718.40,294494.40 North America,Mexico,Office Supplies,Offline,H,5/30/2015,355900657,6/11/2015,7768,651.21,524.96,5058599.28,4077889.28,980710.00 Central America and the Caribbean,Jamaica,Clothes,Offline,H,4/8/2013,284702813,5/17/2013,8744,109.28,35.84,955544.32,313384.96,642159.36 Sub-Saharan Africa,Seychelles ,Personal Care,Online,H,12/11/2014,891979396,12/22/2014,5380,81.73,56.67,439707.40,304884.60,134822.80 Middle East and North Africa,Saudi Arabia,Fruits,Online,L,7/7/2015,782466733,8/15/2015,8149,9.33,6.92,76030.17,56391.08,19639.09 Asia,Philippines,Office Supplies,Online,M,11/27/2014,431213653,12/14/2014,4557,651.21,524.96,2967563.97,2392242.72,575321.25 Sub-Saharan Africa,Cape Verde,Vegetables,Online,H,2/13/2014,833581483,2/17/2014,4140,154.06,90.93,637808.40,376450.20,261358.20 Sub-Saharan Africa,Benin,Fruits,Offline,H,6/4/2011,355244052,7/24/2011,3464,9.33,6.92,32319.12,23970.88,8348.24 North America,United States of America,Office Supplies,Online,L,9/25/2013,582187688,10/6/2013,1129,651.21,524.96,735216.09,592679.84,142536.25 Middle East and North Africa,Tunisia ,Cereal,Online,H,2/1/2010,470711219,3/14/2010,2765,205.70,117.11,568760.50,323809.15,244951.35 Central America and the Caribbean,El Salvador,Cereal,Offline,M,4/26/2013,397425973,6/13/2013,6032,205.70,117.11,1240782.40,706407.52,534374.88 Sub-Saharan Africa,Guinea-Bissau,Personal Care,Offline,L,10/22/2010,809255778,11/26/2010,5623,81.73,56.67,459567.79,318655.41,140912.38 Sub-Saharan Africa,Swaziland,Office Supplies,Online,L,9/23/2013,873436963,10/7/2013,8262,651.21,524.96,5380297.02,4337219.52,1043077.50 Europe,Luxembourg,Office Supplies,Online,L,5/22/2015,727518355,7/1/2015,7703,651.21,524.96,5016270.63,4043766.88,972503.75 Sub-Saharan Africa,Cote d'Ivoire,Vegetables,Online,M,2/24/2010,129361283,3/21/2010,9733,154.06,90.93,1499465.98,885021.69,614444.29 Central America and the Caribbean,Dominican Republic,Snacks,Offline,C,5/18/2012,707139575,6/12/2012,7169,152.58,97.44,1093846.02,698547.36,395298.66 Sub-Saharan Africa,Angola,Office Supplies,Offline,L,10/17/2014,109339559,10/23/2014,4860,651.21,524.96,3164880.60,2551305.60,613575.00 Australia and Oceania,Solomon Islands,Clothes,Online,C,12/13/2014,554760062,1/5/2015,4685,109.28,35.84,511976.80,167910.40,344066.40 Europe,Slovenia,Cosmetics,Offline,H,6/25/2011,282512414,8/10/2011,556,437.20,263.33,243083.20,146411.48,96671.72 Europe,Ukraine,Cereal,Online,L,6/8/2015,302020442,7/7/2015,3415,205.70,117.11,702465.50,399930.65,302534.85 Europe,Albania,Clothes,Offline,L,3/18/2016,343020474,5/1/2016,6236,109.28,35.84,681470.08,223498.24,457971.84 Europe,Hungary,Vegetables,Online,L,8/22/2015,205561339,10/10/2015,9023,154.06,90.93,1390083.38,820461.39,569621.99 Europe,Belgium,Beverages,Offline,H,8/6/2016,210004365,8/21/2016,3813,47.45,31.79,180926.85,121215.27,59711.58 Australia and Oceania,Palau,Clothes,Online,M,9/8/2011,747023379,9/11/2011,9673,109.28,35.84,1057065.44,346680.32,710385.12 Asia,Turkmenistan,Meat,Offline,C,4/12/2017,927604711,5/18/2017,7702,421.89,364.69,3249396.78,2808842.38,440554.40 Australia and Oceania,Samoa ,Vegetables,Online,M,9/28/2016,833047187,10/22/2016,6030,154.06,90.93,928981.80,548307.90,380673.90 Central America and the Caribbean,The Bahamas,Snacks,Offline,C,3/22/2017,164962136,5/5/2017,4817,152.58,97.44,734977.86,469368.48,265609.38 Europe,Estonia,Snacks,Offline,L,7/29/2015,495273387,8/4/2015,1256,152.58,97.44,191640.48,122384.64,69255.84 Central America and the Caribbean,Saint Kitts and Nevis ,Baby Food,Online,H,4/14/2017,316217267,5/23/2017,4571,255.28,159.42,1166884.88,728708.82,438176.06 Middle East and North Africa,Morocco,Beverages,Offline,L,7/21/2017,890342605,7/27/2017,1017,47.45,31.79,48256.65,32330.43,15926.22 Sub-Saharan Africa,Burkina Faso,Baby Food,Offline,H,8/22/2012,400510728,9/28/2012,8879,255.28,159.42,2266631.12,1415490.18,851140.94 Asia,Japan,Clothes,Offline,C,3/28/2011,699895465,5/13/2011,3476,109.28,35.84,379857.28,124579.84,255277.44 Middle East and North Africa,Morocco,Office Supplies,Online,L,7/7/2015,561983144,7/19/2015,2156,651.21,524.96,1404008.76,1131813.76,272195.00 Europe,Slovakia,Office Supplies,Online,C,5/11/2017,630572593,5/15/2017,9298,651.21,524.96,6054950.58,4881078.08,1173872.50 Asia,North Korea,Household,Offline,M,4/17/2017,269775140,4/21/2017,1314,668.27,502.54,878106.78,660337.56,217769.22 Europe,Serbia,Personal Care,Offline,C,2/11/2013,714014613,3/12/2013,1646,81.73,56.67,134527.58,93278.82,41248.76 Middle East and North Africa,Syria,Baby Food,Offline,H,4/6/2011,118027341,4/19/2011,5768,255.28,159.42,1472455.04,919534.56,552920.48 Middle East and North Africa,Lebanon,Beverages,Online,C,6/15/2015,306862151,7/11/2015,6185,47.45,31.79,293478.25,196621.15,96857.10 Asia,Philippines,Cosmetics,Online,H,4/27/2015,925880372,4/29/2015,7432,437.20,263.33,3249270.40,1957068.56,1292201.84 Asia,Malaysia,Household,Offline,L,12/3/2012,790755832,12/18/2012,1078,668.27,502.54,720395.06,541738.12,178656.94 Middle East and North Africa,Algeria,Beverages,Offline,H,5/23/2011,137474858,7/11/2011,720,47.45,31.79,34164.00,22888.80,11275.20 Sub-Saharan Africa,Ghana,Clothes,Online,L,2/14/2011,172336280,3/14/2011,6990,109.28,35.84,763867.20,250521.60,513345.60 Middle East and North Africa,Oman,Personal Care,Offline,L,8/2/2013,821951425,9/12/2013,2547,81.73,56.67,208166.31,144338.49,63827.82 Middle East and North Africa,Morocco,Cereal,Offline,H,7/12/2017,283244121,7/22/2017,7084,205.70,117.11,1457178.80,829607.24,627571.56 Europe,Estonia,Office Supplies,Online,H,3/10/2015,873450696,4/7/2015,2326,651.21,524.96,1514714.46,1221056.96,293657.50 Central America and the Caribbean,Dominica,Cereal,Offline,M,3/25/2011,480119979,4/13/2011,7026,205.70,117.11,1445248.20,822814.86,622433.34 Sub-Saharan Africa,Mauritius ,Fruits,Online,C,5/19/2011,211113297,6/13/2011,1971,9.33,6.92,18389.43,13639.32,4750.11 Europe,Bulgaria,Cosmetics,Online,C,1/26/2011,344604480,2/19/2011,4978,437.20,263.33,2176381.60,1310856.74,865524.86 Middle East and North Africa,Libya,Clothes,Online,L,5/17/2014,779079854,5/24/2014,5897,109.28,35.84,644424.16,211348.48,433075.68 Asia,Kyrgyzstan,Cosmetics,Offline,H,1/25/2015,583338248,2/1/2015,1606,437.20,263.33,702143.20,422907.98,279235.22 Europe,Bosnia and Herzegovina,Vegetables,Offline,C,7/25/2015,246490991,8/8/2015,1017,154.06,90.93,156679.02,92475.81,64203.21 Sub-Saharan Africa,Guinea,Cereal,Offline,M,7/23/2015,327961909,8/5/2015,72,205.70,117.11,14810.40,8431.92,6378.48 Middle East and North Africa,Bahrain,Cereal,Offline,M,10/23/2015,107487332,12/9/2015,6745,205.70,117.11,1387446.50,789906.95,597539.55 Central America and the Caribbean,Guatemala,Fruits,Online,L,5/8/2014,735116088,6/26/2014,6041,9.33,6.92,56362.53,41803.72,14558.81 Asia,Myanmar,Baby Food,Offline,C,4/14/2010,281209504,5/1/2010,4996,255.28,159.42,1275378.88,796462.32,478916.56 Australia and Oceania,Vanuatu,Baby Food,Online,L,2/20/2015,486441409,3/27/2015,7678,255.28,159.42,1960039.84,1224026.76,736013.08 Central America and the Caribbean,Honduras,Household,Online,M,3/18/2011,911798131,3/19/2011,184,668.27,502.54,122961.68,92467.36,30494.32 Central America and the Caribbean,Jamaica,Office Supplies,Online,H,12/11/2015,288578498,12/14/2015,5645,651.21,524.96,3676080.45,2963399.20,712681.25 Central America and the Caribbean,Barbados,Meat,Offline,L,7/20/2017,568393838,8/29/2017,9222,421.89,364.69,3890669.58,3363171.18,527498.40 Europe,Liechtenstein,Fruits,Online,H,9/3/2016,173167979,10/22/2016,3108,9.33,6.92,28997.64,21507.36,7490.28 Australia and Oceania,Samoa ,Household,Online,C,1/6/2015,745137250,2/6/2015,1526,668.27,502.54,1019780.02,766876.04,252903.98 Europe,United Kingdom,Baby Food,Offline,C,7/25/2011,396850478,8/21/2011,5730,255.28,159.42,1462754.40,913476.60,549277.80 Middle East and North Africa,Algeria,Cereal,Online,H,12/6/2013,461168992,1/15/2014,9008,205.70,117.11,1852945.60,1054926.88,798018.72 Europe,Kosovo,Baby Food,Offline,L,11/17/2011,541266620,11/27/2011,1676,255.28,159.42,427849.28,267187.92,160661.36 Central America and the Caribbean,Saint Lucia,Office Supplies,Online,L,5/15/2011,760629689,6/27/2011,6083,651.21,524.96,3961310.43,3193331.68,767978.75 Sub-Saharan Africa,Central African Republic,Cosmetics,Online,M,8/23/2015,413057029,9/21/2015,1609,437.20,263.33,703454.80,423697.97,279756.83 Middle East and North Africa,Tunisia ,Baby Food,Online,C,11/12/2013,212659966,12/9/2013,9665,255.28,159.42,2467281.20,1540794.30,926486.90 Europe,Hungary,Office Supplies,Offline,H,3/12/2015,943862330,4/10/2015,8693,651.21,524.96,5660968.53,4563477.28,1097491.25 Asia,China,Baby Food,Offline,H,9/14/2014,311400449,10/28/2014,9168,255.28,159.42,2340407.04,1461562.56,878844.48 Central America and the Caribbean,Costa Rica,Fruits,Online,H,4/30/2012,590323150,5/17/2012,8593,9.33,6.92,80172.69,59463.56,20709.13 Middle East and North Africa,Yemen,Vegetables,Offline,M,8/21/2016,975991761,8/28/2016,6506,154.06,90.93,1002314.36,591590.58,410723.78 Sub-Saharan Africa,Eritrea,Snacks,Offline,C,10/3/2010,734080111,10/16/2010,9473,152.58,97.44,1445390.34,923049.12,522341.22 Europe,Vatican City,Household,Online,C,9/27/2016,550574529,11/10/2016,6093,668.27,502.54,4071769.11,3061976.22,1009792.89 North America,Mexico,Fruits,Online,C,1/23/2016,281773841,3/12/2016,1996,9.33,6.92,18622.68,13812.32,4810.36 Central America and the Caribbean,Guatemala,Office Supplies,Online,C,12/21/2013,304289376,1/30/2014,4843,651.21,524.96,3153810.03,2542381.28,611428.75 Sub-Saharan Africa,Zimbabwe,Vegetables,Online,L,1/3/2013,165044963,1/21/2013,9327,154.06,90.93,1436917.62,848104.11,588813.51 Central America and the Caribbean,The Bahamas,Clothes,Online,H,10/7/2016,831276929,11/25/2016,2171,109.28,35.84,237246.88,77808.64,159438.24 Asia,Cambodia,Personal Care,Offline,C,12/23/2010,640534102,1/23/2011,7130,81.73,56.67,582734.90,404057.10,178677.80 Sub-Saharan Africa,Burkina Faso,Meat,Offline,M,9/22/2012,250677812,10/24/2012,9990,421.89,364.69,4214681.10,3643253.10,571428.00 Europe,Belarus,Fruits,Online,L,8/31/2013,389881885,9/4/2013,3569,9.33,6.92,33298.77,24697.48,8601.29 Europe,United Kingdom,Vegetables,Online,C,1/27/2014,506632649,2/12/2014,2714,154.06,90.93,418118.84,246784.02,171334.82 Europe,Lithuania,Office Supplies,Online,H,7/8/2011,119728934,7/30/2011,9307,651.21,524.96,6060811.47,4885802.72,1175008.75 Sub-Saharan Africa,Swaziland,Clothes,Online,H,3/12/2012,168282067,4/22/2012,7258,109.28,35.84,793154.24,260126.72,533027.52 Europe,Austria,Clothes,Online,L,1/6/2012,761715877,2/4/2012,7510,109.28,35.84,820692.80,269158.40,551534.40 Sub-Saharan Africa,Mozambique,Clothes,Offline,M,7/10/2015,729766690,7/16/2015,3036,109.28,35.84,331774.08,108810.24,222963.84 Asia,Sri Lanka,Beverages,Offline,M,12/19/2016,772483336,1/19/2017,3840,47.45,31.79,182208.00,122073.60,60134.40 Central America and the Caribbean,Saint Kitts and Nevis ,Vegetables,Offline,C,8/31/2011,310227143,9/25/2011,1960,154.06,90.93,301957.60,178222.80,123734.80 Europe,Belgium,Cereal,Online,C,12/3/2014,633671939,1/21/2015,6463,205.70,117.11,1329439.10,756881.93,572557.17 Sub-Saharan Africa,South Africa,Cereal,Offline,M,10/31/2012,853804051,11/24/2012,8447,205.70,117.11,1737547.90,989228.17,748319.73 North America,Canada,Vegetables,Offline,C,6/23/2011,151922309,7/7/2011,6042,154.06,90.93,930830.52,549399.06,381431.46 Europe,Estonia,Meat,Offline,L,6/4/2010,929638040,7/17/2010,9409,421.89,364.69,3969563.01,3431368.21,538194.80 Sub-Saharan Africa,Equatorial Guinea,Office Supplies,Online,L,2/8/2014,258875072,3/2/2014,5741,651.21,524.96,3738596.61,3013795.36,724801.25 Asia,Maldives,Household,Online,H,11/12/2012,231869733,12/12/2012,4261,668.27,502.54,2847498.47,2141322.94,706175.53 Asia,Myanmar,Beverages,Offline,C,1/17/2017,311170852,2/16/2017,1225,47.45,31.79,58126.25,38942.75,19183.50 Europe,Latvia,Meat,Online,L,5/4/2015,479639756,5/4/2015,4917,421.89,364.69,2074433.13,1793180.73,281252.40 Asia,Bhutan,Baby Food,Online,M,6/4/2016,790450274,6/11/2016,657,255.28,159.42,167718.96,104738.94,62980.02 Sub-Saharan Africa,Nigeria,Household,Online,M,11/30/2014,917088735,12/30/2014,5791,668.27,502.54,3869951.57,2910209.14,959742.43 Middle East and North Africa,Iraq,Snacks,Offline,C,4/4/2010,603353965,5/10/2010,4701,152.58,97.44,717278.58,458065.44,259213.14 Middle East and North Africa,Morocco,Meat,Online,L,7/21/2010,113357293,7/27/2010,3797,421.89,364.69,1601916.33,1384727.93,217188.40 Europe,United Kingdom,Cereal,Online,M,8/7/2013,681522548,8/18/2013,6522,205.70,117.11,1341575.40,763791.42,577783.98 Central America and the Caribbean,Barbados,Fruits,Offline,M,9/9/2010,462586057,10/11/2010,8349,9.33,6.92,77896.17,57775.08,20121.09 Middle East and North Africa,Morocco,Vegetables,Online,M,2/10/2013,381596648,3/22/2013,1783,154.06,90.93,274688.98,162128.19,112560.79 Middle East and North Africa,Lebanon,Snacks,Online,H,7/3/2010,983915650,7/22/2010,1361,152.58,97.44,207661.38,132615.84,75045.54 Sub-Saharan Africa,Botswana,Snacks,Online,C,6/29/2012,185216891,8/11/2012,8649,152.58,97.44,1319664.42,842758.56,476905.86 Sub-Saharan Africa,Benin,Clothes,Offline,C,8/20/2014,921486699,10/4/2014,7247,109.28,35.84,791952.16,259732.48,532219.68 Central America and the Caribbean,Dominican Republic,Personal Care,Offline,H,5/1/2017,799023902,5/1/2017,7784,81.73,56.67,636186.32,441119.28,195067.04 Sub-Saharan Africa,The Gambia,Personal Care,Offline,L,6/24/2014,644439828,8/10/2014,2921,81.73,56.67,238733.33,165533.07,73200.26 Sub-Saharan Africa,Sudan,Office Supplies,Online,C,5/23/2012,454658305,5/31/2012,2351,651.21,524.96,1530994.71,1234180.96,296813.75 North America,Mexico,Office Supplies,Online,M,11/21/2010,746915662,12/17/2010,7797,651.21,524.96,5077484.37,4093113.12,984371.25 Sub-Saharan Africa,Democratic Republic of the Congo,Beverages,Online,M,8/18/2014,308760726,9/11/2014,8015,47.45,31.79,380311.75,254796.85,125514.90 Europe,Bosnia and Herzegovina,Cereal,Online,M,3/12/2014,248054826,4/27/2014,3790,205.70,117.11,779603.00,443846.90,335756.10 North America,Mexico,Cosmetics,Offline,H,8/3/2012,842971789,8/20/2012,2940,437.20,263.33,1285368.00,774190.20,511177.80 Central America and the Caribbean,Grenada,Fruits,Online,L,11/21/2013,191997945,12/23/2013,5313,9.33,6.92,49570.29,36765.96,12804.33 Asia,Cambodia,Office Supplies,Offline,C,11/14/2011,963932120,12/4/2011,7790,651.21,524.96,5072925.90,4089438.40,983487.50 Middle East and North Africa,Saudi Arabia,Office Supplies,Online,L,7/7/2016,947885644,7/31/2016,9281,651.21,524.96,6043880.01,4872153.76,1171726.25 Asia,Malaysia,Vegetables,Offline,C,5/17/2012,703282344,6/13/2012,5729,154.06,90.93,882609.74,520937.97,361671.77 Middle East and North Africa,Tunisia ,Household,Offline,C,5/10/2015,409858548,6/2/2015,5107,668.27,502.54,3412854.89,2566471.78,846383.11 Sub-Saharan Africa,South Sudan,Office Supplies,Offline,H,12/1/2015,317663085,1/15/2016,2421,651.21,524.96,1576579.41,1270928.16,305651.25 Australia and Oceania,Nauru,Beverages,Offline,H,2/27/2013,297057282,4/9/2013,4706,47.45,31.79,223299.70,149603.74,73695.96 Sub-Saharan Africa,Sierra Leone,Beverages,Online,C,1/15/2011,288714969,3/1/2011,6030,47.45,31.79,286123.50,191693.70,94429.80 Sub-Saharan Africa,Tanzania,Snacks,Offline,L,7/28/2014,753622472,8/1/2014,2491,152.58,97.44,380076.78,242723.04,137353.74 Sub-Saharan Africa,Comoros,Baby Food,Online,L,11/29/2010,423078620,12/6/2010,7220,255.28,159.42,1843121.60,1151012.40,692109.20 Sub-Saharan Africa,South Sudan,Clothes,Offline,C,12/27/2010,348694741,12/29/2010,5378,109.28,35.84,587707.84,192747.52,394960.32 Europe,Estonia,Office Supplies,Offline,L,6/11/2015,752394664,7/9/2015,9156,651.21,524.96,5962478.76,4806533.76,1155945.00 Australia and Oceania,Marshall Islands,Beverages,Offline,M,11/1/2010,576414716,12/7/2010,2778,47.45,31.79,131816.10,88312.62,43503.48 Australia and Oceania,East Timor,Personal Care,Online,L,4/17/2011,633303725,5/1/2011,7501,81.73,56.67,613056.73,425081.67,187975.06 Europe,Liechtenstein,Cosmetics,Online,H,11/12/2016,455923020,11/29/2016,6608,437.20,263.33,2889017.60,1740084.64,1148932.96 Sub-Saharan Africa,Tanzania,Snacks,Online,C,4/21/2017,547446429,5/27/2017,419,152.58,97.44,63931.02,40827.36,23103.66 Sub-Saharan Africa,Malawi,Cosmetics,Offline,H,1/2/2011,131360280,1/26/2011,1281,437.20,263.33,560053.20,337325.73,222727.47 Australia and Oceania,Australia,Cosmetics,Online,H,5/8/2016,301463401,6/2/2016,8574,437.20,263.33,3748552.80,2257791.42,1490761.38 Australia and Oceania,Marshall Islands,Office Supplies,Offline,C,12/7/2014,871867120,1/20/2015,3710,651.21,524.96,2415989.10,1947601.60,468387.50 Australia and Oceania,Kiribati,Meat,Offline,L,11/30/2015,826995265,12/25/2015,5131,421.89,364.69,2164717.59,1871224.39,293493.20 Sub-Saharan Africa,South Africa,Beverages,Online,C,5/15/2014,571584165,6/11/2014,3311,47.45,31.79,157106.95,105256.69,51850.26 Asia,Sri Lanka,Cosmetics,Online,M,3/24/2010,580682647,5/9/2010,5754,437.20,263.33,2515648.80,1515200.82,1000447.98 Sub-Saharan Africa,Togo,Personal Care,Online,C,1/22/2012,949652040,3/1/2012,1997,81.73,56.67,163214.81,113169.99,50044.82 Sub-Saharan Africa,South Africa,Personal Care,Offline,C,7/24/2010,944166171,7/28/2010,8606,81.73,56.67,703368.38,487702.02,215666.36 Central America and the Caribbean,Belize,Cosmetics,Offline,M,8/24/2012,350211369,8/27/2012,4182,437.20,263.33,1828370.40,1101246.06,727124.34 Sub-Saharan Africa,Togo,Household,Online,H,12/7/2014,824086463,1/11/2015,4352,668.27,502.54,2908311.04,2187054.08,721256.96 Sub-Saharan Africa,Burundi,Baby Food,Offline,L,2/6/2015,942402780,2/16/2015,6780,255.28,159.42,1730798.40,1080867.60,649930.80 Asia,Taiwan,Vegetables,Online,C,9/7/2015,252084147,10/8/2015,6156,154.06,90.93,948393.36,559765.08,388628.28 Europe,Austria,Vegetables,Online,H,9/14/2012,620366895,9/24/2012,9205,154.06,90.93,1418122.30,837010.65,581111.65 Sub-Saharan Africa,Cape Verde,Beverages,Offline,L,8/12/2014,384799849,8/12/2014,9681,47.45,31.79,459363.45,307758.99,151604.46 Sub-Saharan Africa,Cape Verde,Beverages,Offline,L,10/12/2015,203244340,10/28/2015,3372,47.45,31.79,160001.40,107195.88,52805.52 Asia,Kyrgyzstan,Beverages,Online,L,6/4/2015,803874194,6/16/2015,3093,47.45,31.79,146762.85,98326.47,48436.38 Europe,Netherlands,Meat,Offline,L,10/29/2013,735175740,11/3/2013,3694,421.89,364.69,1558461.66,1347164.86,211296.80 Sub-Saharan Africa,Tanzania,Cosmetics,Offline,L,2/16/2016,415947806,4/6/2016,7054,437.20,263.33,3084008.80,1857529.82,1226478.98 Europe,Finland,Office Supplies,Online,M,5/20/2013,785301721,6/3/2013,7085,651.21,524.96,4613822.85,3719341.60,894481.25 Asia,Tajikistan,Personal Care,Offline,C,8/22/2016,152661311,8/28/2016,4729,81.73,56.67,386501.17,267992.43,118508.74 Europe,Montenegro,Beverages,Online,M,4/22/2015,947762906,6/8/2015,2960,47.45,31.79,140452.00,94098.40,46353.60 Sub-Saharan Africa,Zambia,Household,Online,M,3/13/2011,270655333,4/23/2011,1783,668.27,502.54,1191525.41,896028.82,295496.59 Asia,Indonesia,Snacks,Offline,L,10/10/2014,241699922,10/23/2014,3233,152.58,97.44,493291.14,315023.52,178267.62 Sub-Saharan Africa,Central African Republic,Personal Care,Offline,C,1/22/2011,351570498,2/13/2011,6378,81.73,56.67,521273.94,361441.26,159832.68 Sub-Saharan Africa,Burundi,Snacks,Offline,M,6/6/2016,611253392,7/18/2016,2317,152.58,97.44,353527.86,225768.48,127759.38 Middle East and North Africa,Algeria,Meat,Online,C,4/3/2014,202047431,5/5/2014,9180,421.89,364.69,3872950.20,3347854.20,525096.00 Middle East and North Africa,Iraq,Vegetables,Online,L,9/2/2011,625563943,9/21/2011,7127,154.06,90.93,1097985.62,648058.11,449927.51 Middle East and North Africa,Lebanon,Cosmetics,Offline,L,2/10/2013,753726756,2/26/2013,3351,437.20,263.33,1465057.20,882418.83,582638.37 Central America and the Caribbean,Costa Rica,Meat,Offline,M,6/29/2016,878772199,8/17/2016,7077,421.89,364.69,2985715.53,2580911.13,404804.40 Asia,China,Baby Food,Online,H,1/6/2017,463249099,2/6/2017,4558,255.28,159.42,1163566.24,726636.36,436929.88 Middle East and North Africa,Iran,Cosmetics,Online,H,12/8/2010,390018784,1/19/2011,4080,437.20,263.33,1783776.00,1074386.40,709389.60 Asia,Japan,Office Supplies,Offline,H,7/7/2014,712255084,8/23/2014,962,651.21,524.96,626464.02,505011.52,121452.50 North America,Canada,Cereal,Online,M,10/14/2014,203444325,11/8/2014,2552,205.70,117.11,524946.40,298864.72,226081.68 Australia and Oceania,Fiji,Office Supplies,Online,M,3/15/2011,407385337,4/30/2011,3229,651.21,524.96,2102757.09,1695095.84,407661.25 Europe,Monaco,Personal Care,Online,M,11/11/2011,688189446,12/19/2011,9405,81.73,56.67,768670.65,532981.35,235689.30 Central America and the Caribbean,Honduras,Household,Offline,L,7/24/2014,480280482,8/14/2014,4522,668.27,502.54,3021916.94,2272485.88,749431.06 Australia and Oceania,Federated States of Micronesia,Clothes,Offline,L,8/4/2010,638394773,9/2/2010,4055,109.28,35.84,443130.40,145331.20,297799.20 Europe,Andorra,Snacks,Offline,H,4/1/2011,287581145,5/4/2011,506,152.58,97.44,77205.48,49304.64,27900.84 Europe,Greece,Household,Offline,M,9/24/2013,873200929,10/8/2013,8414,668.27,502.54,5622823.78,4228371.56,1394452.22 Europe,Finland,Cosmetics,Online,L,7/14/2012,310927951,9/1/2012,9345,437.20,263.33,4085634.00,2460818.85,1624815.15 Middle East and North Africa,Saudi Arabia,Snacks,Offline,H,10/12/2010,636748540,10/31/2010,6898,152.58,97.44,1052496.84,672141.12,380355.72 Europe,San Marino,Personal Care,Offline,C,6/10/2016,356961524,6/10/2016,1702,81.73,56.67,139104.46,96452.34,42652.12 Europe,Greece,Clothes,Online,C,11/4/2015,298178231,12/5/2015,6420,109.28,35.84,701577.60,230092.80,471484.80 Central America and the Caribbean,Haiti,Baby Food,Offline,C,4/22/2015,457322490,5/27/2015,742,255.28,159.42,189417.76,118289.64,71128.12 Sub-Saharan Africa,Malawi,Meat,Offline,H,8/21/2014,451630628,8/22/2014,6394,421.89,364.69,2697564.66,2331827.86,365736.80 Australia and Oceania,East Timor,Snacks,Online,L,12/5/2010,868651473,12/12/2010,2129,152.58,97.44,324842.82,207449.76,117393.06 Sub-Saharan Africa,Sao Tome and Principe,Baby Food,Online,M,6/25/2017,116246354,8/8/2017,8734,255.28,159.42,2229615.52,1392374.28,837241.24 Sub-Saharan Africa,Nigeria,Office Supplies,Online,C,8/2/2014,272589099,9/10/2014,4027,651.21,524.96,2622422.67,2114013.92,508408.75 Asia,South Korea,Baby Food,Online,H,11/17/2013,336166036,12/22/2013,7855,255.28,159.42,2005224.40,1252244.10,752980.30 Asia,Indonesia,Snacks,Offline,H,9/19/2016,275775992,9/30/2016,7099,152.58,97.44,1083165.42,691726.56,391438.86 Middle East and North Africa,Oman,Clothes,Online,L,5/14/2010,580530297,5/26/2010,670,109.28,35.84,73217.60,24012.80,49204.80 Europe,Monaco,Clothes,Offline,L,3/28/2017,909852778,4/16/2017,4511,109.28,35.84,492962.08,161674.24,331287.84 Europe,Latvia,Office Supplies,Online,L,5/17/2015,543479764,6/13/2015,6594,651.21,524.96,4294078.74,3461586.24,832492.50 Middle East and North Africa,Morocco,Clothes,Offline,L,5/19/2010,631460082,6/7/2010,1926,109.28,35.84,210473.28,69027.84,141445.44 Sub-Saharan Africa,Sudan,Cereal,Online,L,7/4/2016,144155061,8/16/2016,7541,205.70,117.11,1551183.70,883126.51,668057.19 Sub-Saharan Africa,Madagascar,Cereal,Offline,L,12/26/2014,822238528,1/27/2015,7507,205.70,117.11,1544189.90,879144.77,665045.13 Middle East and North Africa,Saudi Arabia,Cosmetics,Offline,M,11/1/2010,426696813,12/7/2010,7924,437.20,263.33,3464372.80,2086626.92,1377745.88 Sub-Saharan Africa,Seychelles ,Snacks,Offline,H,12/4/2013,388828742,1/13/2014,1920,152.58,97.44,292953.60,187084.80,105868.80 Middle East and North Africa,Syria,Fruits,Online,L,6/21/2012,860245645,8/4/2012,4658,9.33,6.92,43459.14,32233.36,11225.78 Europe,Estonia,Clothes,Offline,M,9/8/2014,262871348,10/15/2014,8328,109.28,35.84,910083.84,298475.52,611608.32 Australia and Oceania,Samoa ,Vegetables,Online,M,9/13/2014,238942182,10/1/2014,7156,154.06,90.93,1102453.36,650695.08,451758.28 Europe,Kosovo,Vegetables,Offline,L,7/1/2011,701006972,7/31/2011,2396,154.06,90.93,369127.76,217868.28,151259.48 Sub-Saharan Africa,Republic of the Congo,Meat,Online,M,9/12/2012,281927049,10/5/2012,7334,421.89,364.69,3094141.26,2674636.46,419504.80 Europe,Poland,Snacks,Online,M,8/19/2015,384876239,9/28/2015,2287,152.58,97.44,348950.46,222845.28,126105.18 Asia,China,Fruits,Offline,C,2/10/2011,233340871,3/16/2011,9604,9.33,6.92,89605.32,66459.68,23145.64 Middle East and North Africa,Libya,Office Supplies,Offline,H,7/13/2017,921119773,8/30/2017,8665,651.21,524.96,5642734.65,4548778.40,1093956.25 Sub-Saharan Africa,Cape Verde,Baby Food,Offline,H,6/23/2016,462324273,8/1/2016,881,255.28,159.42,224901.68,140449.02,84452.66 Central America and the Caribbean,Barbados,Clothes,Offline,M,2/9/2017,541378200,3/31/2017,4695,109.28,35.84,513069.60,168268.80,344800.80 Sub-Saharan Africa,Lesotho,Baby Food,Offline,C,7/4/2014,663017880,8/12/2014,579,255.28,159.42,147807.12,92304.18,55502.94 Sub-Saharan Africa,Republic of the Congo,Vegetables,Offline,C,3/3/2016,402292144,3/4/2016,6040,154.06,90.93,930522.40,549217.20,381305.20 Central America and the Caribbean,El Salvador,Baby Food,Offline,C,7/11/2015,754562318,8/28/2015,613,255.28,159.42,156486.64,97724.46,58762.18 Asia,Malaysia,Meat,Offline,M,11/3/2010,985502231,11/27/2010,865,421.89,364.69,364934.85,315456.85,49478.00 Sub-Saharan Africa,Botswana,Snacks,Offline,M,8/7/2016,881098210,9/18/2016,5395,152.58,97.44,823169.10,525688.80,297480.30 Europe,Croatia,Fruits,Online,L,4/13/2014,297649085,6/1/2014,9834,9.33,6.92,91751.22,68051.28,23699.94 Sub-Saharan Africa,Mauritius ,Clothes,Online,L,9/14/2016,511766183,9/22/2016,1841,109.28,35.84,201184.48,65981.44,135203.04 Europe,Iceland,Office Supplies,Offline,L,4/5/2011,170373332,4/26/2011,6110,651.21,524.96,3978893.10,3207505.60,771387.50 Asia,Mongolia,Baby Food,Online,M,9/8/2016,240706861,10/28/2016,9364,255.28,159.42,2390441.92,1492808.88,897633.04 Europe,Malta,Meat,Offline,M,2/24/2011,860315597,4/13/2011,5358,421.89,364.69,2260486.62,1954009.02,306477.60 Sub-Saharan Africa,Guinea,Meat,Offline,M,9/25/2011,887060868,10/24/2011,9878,421.89,364.69,4167429.42,3602407.82,565021.60 Sub-Saharan Africa,Swaziland,Clothes,Offline,C,1/29/2010,149116504,3/18/2010,5742,109.28,35.84,627485.76,205793.28,421692.48 Europe,Moldova ,Clothes,Offline,C,1/19/2014,794968831,2/9/2014,7798,109.28,35.84,852165.44,279480.32,572685.12 Europe,Netherlands,Cosmetics,Offline,L,8/22/2013,543416678,8/27/2013,7926,437.20,263.33,3465247.20,2087153.58,1378093.62 Sub-Saharan Africa,Seychelles ,Vegetables,Online,H,1/16/2015,333571374,2/1/2015,37,154.06,90.93,5700.22,3364.41,2335.81 Asia,Brunei,Household,Online,M,3/3/2014,274856746,3/16/2014,5074,668.27,502.54,3390801.98,2549887.96,840914.02 Asia,Taiwan,Vegetables,Offline,C,7/25/2015,997009122,8/8/2015,6010,154.06,90.93,925900.60,546489.30,379411.30 Sub-Saharan Africa,Kenya,Personal Care,Offline,L,6/21/2013,500077331,7/21/2013,2850,81.73,56.67,232930.50,161509.50,71421.00 Europe,Spain,Personal Care,Offline,C,10/14/2010,904422700,11/12/2010,7630,81.73,56.67,623599.90,432392.10,191207.80 Middle East and North Africa,Azerbaijan,Vegetables,Online,H,3/30/2015,800719058,4/23/2015,9418,154.06,90.93,1450937.08,856378.74,594558.34 Central America and the Caribbean,Antigua and Barbuda ,Snacks,Offline,L,12/6/2012,199952733,1/12/2013,9312,152.58,97.44,1420824.96,907361.28,513463.68 Sub-Saharan Africa,Nigeria,Beverages,Online,H,7/3/2017,983422553,8/1/2017,5442,47.45,31.79,258222.90,173001.18,85221.72 Asia,Mongolia,Office Supplies,Offline,C,5/23/2013,152739846,6/17/2013,7970,651.21,524.96,5190143.70,4183931.20,1006212.50 Sub-Saharan Africa,Djibouti,Cereal,Online,H,8/4/2012,179828441,9/12/2012,4087,205.70,117.11,840695.90,478628.57,362067.33 Asia,Uzbekistan,Meat,Offline,C,1/9/2013,456924664,2/24/2013,3017,421.89,364.69,1272842.13,1100269.73,172572.40 Asia,China,Office Supplies,Online,C,6/16/2017,446577346,6/26/2017,1015,651.21,524.96,660978.15,532834.40,128143.75 Asia,Cambodia,Cereal,Online,H,7/31/2014,131647813,8/11/2014,6368,205.70,117.11,1309897.60,745756.48,564141.12 Asia,Uzbekistan,Cereal,Offline,M,1/28/2013,465309894,2/11/2013,4393,205.70,117.11,903640.10,514464.23,389175.87 Europe,Armenia,Household,Online,C,2/17/2015,221049916,4/7/2015,2437,668.27,502.54,1628573.99,1224689.98,403884.01 Sub-Saharan Africa,Ethiopia,Cosmetics,Offline,C,8/14/2012,942666709,9/16/2012,4882,437.20,263.33,2134410.40,1285577.06,848833.34 Sub-Saharan Africa,Democratic Republic of the Congo,Clothes,Offline,M,8/22/2013,194271600,10/8/2013,8138,109.28,35.84,889320.64,291665.92,597654.72 Sub-Saharan Africa,Kenya,Meat,Offline,C,12/29/2015,110288417,1/7/2016,5648,421.89,364.69,2382834.72,2059769.12,323065.60 Europe,Kosovo,Office Supplies,Online,M,12/19/2010,645453488,12/23/2010,2885,651.21,524.96,1878740.85,1514509.60,364231.25 Europe,Luxembourg,Personal Care,Online,M,6/5/2017,924815642,6/7/2017,2355,81.73,56.67,192474.15,133457.85,59016.30 Central America and the Caribbean,Dominican Republic,Household,Offline,C,6/8/2017,593736207,7/16/2017,8593,668.27,502.54,5742444.11,4318326.22,1424117.89 Asia,Laos,Household,Offline,C,1/18/2013,267889010,2/19/2013,3166,668.27,502.54,2115742.82,1591041.64,524701.18 Sub-Saharan Africa,South Africa,Cereal,Offline,C,12/20/2014,183260381,1/10/2015,9674,205.70,117.11,1989941.80,1132922.14,857019.66 Europe,Malta,Clothes,Online,H,1/10/2016,646149146,2/8/2016,8746,109.28,35.84,955762.88,313456.64,642306.24 Asia,Indonesia,Cereal,Online,L,2/9/2010,683166635,3/25/2010,3043,205.70,117.11,625945.10,356365.73,269579.37 Europe,Lithuania,Household,Offline,H,2/12/2011,291236674,3/23/2011,2259,668.27,502.54,1509621.93,1135237.86,374384.07 Asia,Turkmenistan,Snacks,Offline,C,4/14/2011,887595593,4/19/2011,8115,152.58,97.44,1238186.70,790725.60,447461.10 Middle East and North Africa,Jordan,Baby Food,Online,H,4/11/2015,359792220,4/30/2015,9368,255.28,159.42,2391463.04,1493446.56,898016.48 Europe,Portugal,Cosmetics,Offline,L,9/2/2013,715687882,9/23/2013,6803,437.20,263.33,2974271.60,1791433.99,1182837.61 Middle East and North Africa,Lebanon,Snacks,Offline,C,1/19/2017,433456408,2/27/2017,8238,152.58,97.44,1256954.04,802710.72,454243.32 Central America and the Caribbean,Costa Rica,Snacks,Offline,C,5/6/2014,311584126,5/21/2014,3522,152.58,97.44,537386.76,343183.68,194203.08 Asia,Taiwan,Office Supplies,Offline,L,6/20/2014,318869864,7/21/2014,9534,651.21,524.96,6208636.14,5004968.64,1203667.50 Europe,Albania,Fruits,Offline,C,4/7/2012,944424951,5/5/2012,5185,9.33,6.92,48376.05,35880.20,12495.85 Sub-Saharan Africa,Seychelles ,Vegetables,Offline,C,1/2/2015,947673213,2/10/2015,6418,154.06,90.93,988757.08,583588.74,405168.34 Central America and the Caribbean,Guatemala,Office Supplies,Offline,L,11/13/2015,508350980,11/22/2015,1206,651.21,524.96,785359.26,633101.76,152257.50 Central America and the Caribbean,Haiti,Fruits,Online,L,11/22/2012,776507079,12/14/2012,4555,9.33,6.92,42498.15,31520.60,10977.55 Sub-Saharan Africa,South Sudan,Office Supplies,Online,L,10/2/2012,722502839,10/25/2012,3501,651.21,524.96,2279886.21,1837884.96,442001.25 Sub-Saharan Africa,Liberia,Office Supplies,Offline,M,11/1/2011,287012088,12/19/2011,2110,651.21,524.96,1374053.10,1107665.60,266387.50 Central America and the Caribbean,Panama,Clothes,Offline,H,2/22/2015,831021153,4/8/2015,6481,109.28,35.84,708243.68,232279.04,475964.64 Asia,Maldives,Snacks,Offline,H,5/31/2017,185828864,7/20/2017,9745,152.58,97.44,1486892.10,949552.80,537339.30 Sub-Saharan Africa,Burkina Faso,Snacks,Offline,L,6/6/2014,303046548,6/19/2014,7063,152.58,97.44,1077672.54,688218.72,389453.82 Europe,Latvia,Fruits,Online,L,5/27/2014,504598033,6/19/2014,626,9.33,6.92,5840.58,4331.92,1508.66 Asia,Laos,Baby Food,Online,L,6/20/2011,632719647,7/19/2011,4659,255.28,159.42,1189349.52,742737.78,446611.74 Australia and Oceania,Australia,Fruits,Offline,H,3/5/2012,599960219,3/28/2012,416,9.33,6.92,3881.28,2878.72,1002.56 Asia,Myanmar,Beverages,Offline,H,7/30/2016,839181077,8/5/2016,1184,47.45,31.79,56180.80,37639.36,18541.44 Asia,Mongolia,Cereal,Online,H,6/6/2014,953556048,6/27/2014,7280,205.70,117.11,1497496.00,852560.80,644935.20 Europe,Bosnia and Herzegovina,Office Supplies,Offline,H,9/11/2011,166571462,10/2/2011,1052,651.21,524.96,685072.92,552257.92,132815.00 Central America and the Caribbean,Antigua and Barbuda ,Clothes,Online,L,8/12/2011,472026145,10/1/2011,1881,109.28,35.84,205555.68,67415.04,138140.64 Europe,Switzerland,Clothes,Offline,C,12/2/2010,784031426,12/13/2010,1177,109.28,35.84,128622.56,42183.68,86438.88 Middle East and North Africa,United Arab Emirates,Cosmetics,Offline,M,3/17/2011,987011134,3/18/2011,7383,437.20,263.33,3227847.60,1944165.39,1283682.21 Sub-Saharan Africa,The Gambia,Fruits,Online,M,2/13/2015,585701596,3/13/2015,973,9.33,6.92,9078.09,6733.16,2344.93 Europe,Iceland,Household,Offline,L,1/6/2015,955151641,2/11/2015,9451,668.27,502.54,6315819.77,4749505.54,1566314.23 Europe,Georgia,Household,Offline,H,11/22/2011,390722596,12/27/2011,2354,668.27,502.54,1573107.58,1182979.16,390128.42 Europe,Denmark,Personal Care,Online,H,8/5/2011,858088290,8/27/2011,6249,81.73,56.67,510730.77,354130.83,156599.94 Sub-Saharan Africa,Nigeria,Household,Online,L,6/16/2013,343235051,6/23/2013,9734,668.27,502.54,6504940.18,4891724.36,1613215.82 Sub-Saharan Africa,Madagascar,Cereal,Offline,M,2/6/2014,502461707,3/20/2014,8440,205.70,117.11,1736108.00,988408.40,747699.60 Asia,Cambodia,Clothes,Online,C,3/17/2011,812379586,4/21/2011,27,109.28,35.84,2950.56,967.68,1982.88 Sub-Saharan Africa,Central African Republic,Clothes,Offline,M,11/17/2014,819912517,12/26/2014,9189,109.28,35.84,1004173.92,329333.76,674840.16 Australia and Oceania,Marshall Islands,Beverages,Online,C,7/28/2013,592296826,8/15/2013,2648,47.45,31.79,125647.60,84179.92,41467.68 Middle East and North Africa,Pakistan,Fruits,Offline,L,9/25/2015,267081344,10/18/2015,4160,9.33,6.92,38812.80,28787.20,10025.60 Sub-Saharan Africa,Zambia,Fruits,Online,M,9/24/2015,502127397,10/13/2015,9510,9.33,6.92,88728.30,65809.20,22919.10 Sub-Saharan Africa,Kenya,Clothes,Offline,L,10/13/2012,225608813,10/24/2012,1516,109.28,35.84,165668.48,54333.44,111335.04 Europe,San Marino,Fruits,Online,H,10/2/2014,686011922,10/18/2014,5027,9.33,6.92,46901.91,34786.84,12115.07 Asia,South Korea,Office Supplies,Online,L,8/17/2011,502135550,9/25/2011,1923,651.21,524.96,1252276.83,1009498.08,242778.75 Europe,Netherlands,Office Supplies,Online,H,3/6/2017,613091027,4/22/2017,6114,651.21,524.96,3981497.94,3209605.44,771892.50 Australia and Oceania,Samoa ,Snacks,Offline,H,3/3/2012,228302180,4/20/2012,8543,152.58,97.44,1303490.94,832429.92,471061.02 Sub-Saharan Africa,Senegal,Snacks,Online,L,4/16/2016,877505338,4/27/2016,2184,152.58,97.44,333234.72,212808.96,120425.76 Sub-Saharan Africa,Comoros,Clothes,Online,M,3/21/2016,560749328,5/6/2016,7042,109.28,35.84,769549.76,252385.28,517164.48 Asia,Cambodia,Meat,Offline,L,11/4/2014,498395478,11/27/2014,5152,421.89,364.69,2173577.28,1878882.88,294694.40 Sub-Saharan Africa,Burundi,Fruits,Offline,L,4/29/2012,181117618,5/2/2012,5583,9.33,6.92,52089.39,38634.36,13455.03 Europe,Serbia,Beverages,Online,H,6/23/2017,519902074,7/2/2017,9432,47.45,31.79,447548.40,299843.28,147705.12 Central America and the Caribbean,Cuba,Meat,Online,C,8/28/2013,696047675,8/31/2013,4830,421.89,364.69,2037728.70,1761452.70,276276.00 Asia,Kazakhstan,Household,Online,L,8/2/2015,411165750,8/10/2015,1937,668.27,502.54,1294438.99,973419.98,321019.01 Europe,Czech Republic,Cosmetics,Offline,C,7/18/2012,337180125,8/26/2012,7947,437.20,263.33,3474428.40,2092683.51,1381744.89 Sub-Saharan Africa,The Gambia,Clothes,Online,L,1/10/2010,766327130,1/30/2010,2082,109.28,35.84,227520.96,74618.88,152902.08 Asia,Myanmar,Beverages,Online,H,10/19/2010,261155593,11/6/2010,598,47.45,31.79,28375.10,19010.42,9364.68 Australia and Oceania,East Timor,Cereal,Online,M,2/15/2011,604526841,2/24/2011,1781,205.70,117.11,366351.70,208572.91,157778.79 Europe,Belarus,Beverages,Online,C,2/11/2012,949614703,2/21/2012,948,47.45,31.79,44982.60,30136.92,14845.68 Asia,Nepal,Office Supplies,Offline,L,12/13/2015,969905507,12/13/2015,5448,651.21,524.96,3547792.08,2859982.08,687810.00 Central America and the Caribbean,Jamaica,Cosmetics,Offline,H,7/5/2014,409198081,8/22/2014,9660,437.20,263.33,4223352.00,2543767.80,1679584.20 Asia,Laos,Cosmetics,Online,L,11/23/2015,431603753,12/27/2015,9997,437.20,263.33,4370688.40,2632510.01,1738178.39 Asia,Bangladesh,Meat,Offline,L,4/29/2010,471546351,5/25/2010,9899,421.89,364.69,4176289.11,3610066.31,566222.80 Sub-Saharan Africa,Togo,Vegetables,Offline,L,10/25/2011,483762204,11/2/2011,4841,154.06,90.93,745804.46,440192.13,305612.33 Central America and the Caribbean,Guatemala,Meat,Offline,C,7/4/2016,493300139,7/5/2016,7328,421.89,364.69,3091609.92,2672448.32,419161.60 Sub-Saharan Africa,South Sudan,Beverages,Online,C,1/14/2014,145521485,2/22/2014,1896,47.45,31.79,89965.20,60273.84,29691.36 Sub-Saharan Africa,Senegal,Vegetables,Offline,H,1/14/2014,956100070,2/27/2014,112,154.06,90.93,17254.72,10184.16,7070.56 Central America and the Caribbean,Belize,Meat,Offline,L,1/23/2012,461022222,1/24/2012,5575,421.89,364.69,2352036.75,2033146.75,318890.00 Europe,Monaco,Cosmetics,Online,M,1/30/2016,766586768,3/6/2016,8915,437.20,263.33,3897638.00,2347586.95,1550051.05 Sub-Saharan Africa,Ghana,Household,Offline,L,6/3/2012,899405038,7/7/2012,2792,668.27,502.54,1865809.84,1403091.68,462718.16 Middle East and North Africa,United Arab Emirates,Personal Care,Offline,L,12/22/2014,856400859,1/12/2015,6900,81.73,56.67,563937.00,391023.00,172914.00 Europe,United Kingdom,Vegetables,Online,H,12/23/2015,254810559,1/30/2016,2962,154.06,90.93,456325.72,269334.66,186991.06 Europe,Ukraine,Fruits,Online,H,7/9/2012,582182967,7/17/2012,9732,9.33,6.92,90799.56,67345.44,23454.12 Asia,Turkmenistan,Personal Care,Online,H,5/2/2010,246379411,5/27/2010,7998,81.73,56.67,653676.54,453246.66,200429.88 Central America and the Caribbean,Jamaica,Meat,Offline,H,6/2/2012,425573718,6/19/2012,5575,421.89,364.69,2352036.75,2033146.75,318890.00 Middle East and North Africa,Algeria,Beverages,Online,C,4/13/2015,118252217,5/7/2015,2314,47.45,31.79,109799.30,73562.06,36237.24 Middle East and North Africa,United Arab Emirates,Cosmetics,Online,L,9/9/2012,193213737,10/7/2012,5093,437.20,263.33,2226659.60,1341139.69,885519.91 Europe,Italy,Beverages,Offline,L,8/21/2014,239569604,9/12/2014,2824,47.45,31.79,133998.80,89774.96,44223.84 Europe,Georgia,Cosmetics,Online,M,3/29/2013,816743648,5/6/2013,1450,437.20,263.33,633940.00,381828.50,252111.50 Sub-Saharan Africa,South Sudan,Personal Care,Online,C,10/31/2016,304472196,11/20/2016,8944,81.73,56.67,730993.12,506856.48,224136.64 Asia,Malaysia,Baby Food,Offline,C,11/17/2015,752804076,11/19/2015,310,255.28,159.42,79136.80,49420.20,29716.60 Australia and Oceania,Fiji,Beverages,Offline,C,1/18/2017,232100617,2/18/2017,2585,47.45,31.79,122658.25,82177.15,40481.10 Sub-Saharan Africa,Rwanda,Beverages,Online,L,9/22/2016,483035647,11/3/2016,9837,47.45,31.79,466765.65,312718.23,154047.42 Asia,Philippines,Office Supplies,Offline,M,5/9/2012,166595494,6/10/2012,8164,651.21,524.96,5316478.44,4285773.44,1030705.00 Europe,Georgia,Baby Food,Online,M,10/20/2013,714078986,11/28/2013,695,255.28,159.42,177419.60,110796.90,66622.70 Middle East and North Africa,Iran,Household,Offline,C,11/10/2016,477097451,11/20/2016,2593,668.27,502.54,1732824.11,1303086.22,429737.89 Europe,Ukraine,Baby Food,Online,C,8/5/2014,577574717,9/11/2014,6049,255.28,159.42,1544188.72,964331.58,579857.14 Middle East and North Africa,Oman,Clothes,Offline,H,4/11/2016,857747113,4/29/2016,5287,109.28,35.84,577763.36,189486.08,388277.28 Europe,Ukraine,Vegetables,Offline,C,4/29/2013,330163466,6/13/2013,1562,154.06,90.93,240641.72,142032.66,98609.06 Europe,Vatican City,Personal Care,Offline,C,5/11/2013,327685105,5/29/2013,8159,81.73,56.67,666835.07,462370.53,204464.54 Sub-Saharan Africa,Guinea,Meat,Online,M,9/14/2013,453485858,10/15/2013,5398,421.89,364.69,2277362.22,1968596.62,308765.60 Central America and the Caribbean,Saint Vincent and the Grenadines,Clothes,Offline,M,9/30/2012,831052052,11/6/2012,5625,109.28,35.84,614700.00,201600.00,413100.00 Australia and Oceania,Palau,Vegetables,Offline,M,9/27/2013,754182517,10/26/2013,8221,154.06,90.93,1266527.26,747535.53,518991.73 Europe,Kosovo,Clothes,Offline,C,5/30/2013,936988580,6/11/2013,4598,109.28,35.84,502469.44,164792.32,337677.12 Asia,Brunei,Clothes,Offline,L,5/7/2013,363894069,6/8/2013,3196,109.28,35.84,349258.88,114544.64,234714.24 Sub-Saharan Africa,Madagascar,Household,Offline,H,3/15/2016,339635312,4/30/2016,4491,668.27,502.54,3001200.57,2256907.14,744293.43 Asia,Philippines,Cosmetics,Online,C,5/1/2014,439261138,6/19/2014,5987,437.20,263.33,2617516.40,1576556.71,1040959.69 Middle East and North Africa,Iran,Office Supplies,Offline,L,4/20/2016,758132874,4/20/2016,7220,651.21,524.96,4701736.20,3790211.20,911525.00 Central America and the Caribbean,Saint Vincent and the Grenadines,Beverages,Online,H,10/25/2012,561924350,12/12/2012,4757,47.45,31.79,225719.65,151225.03,74494.62 Asia,Laos,Household,Online,H,10/13/2010,536621892,10/14/2010,7198,668.27,502.54,4810207.46,3617282.92,1192924.54 Europe,Estonia,Baby Food,Offline,M,5/24/2014,538524329,6/5/2014,171,255.28,159.42,43652.88,27260.82,16392.06 Europe,Andorra,Snacks,Online,L,10/3/2013,944242990,11/12/2013,1339,152.58,97.44,204304.62,130472.16,73832.46 Asia,Myanmar,Fruits,Online,L,5/27/2011,400701701,7/2/2011,5393,9.33,6.92,50316.69,37319.56,12997.13 Sub-Saharan Africa,Seychelles ,Cereal,Online,C,12/5/2010,775136792,12/19/2010,9057,205.70,117.11,1863024.90,1060665.27,802359.63 Asia,Maldives,Cosmetics,Offline,H,3/19/2013,405097091,4/14/2013,6086,437.20,263.33,2660799.20,1602626.38,1058172.82 Asia,Taiwan,Cosmetics,Offline,L,8/17/2012,848443925,9/25/2012,2267,437.20,263.33,991132.40,596969.11,394163.29 Sub-Saharan Africa,Equatorial Guinea,Baby Food,Offline,M,12/18/2015,133351123,12/21/2015,415,255.28,159.42,105941.20,66159.30,39781.90 Central America and the Caribbean,Dominican Republic,Beverages,Online,C,12/5/2015,408305013,1/13/2016,5382,47.45,31.79,255375.90,171093.78,84282.12 Sub-Saharan Africa,Djibouti,Clothes,Online,H,1/31/2010,292104423,3/22/2010,9045,109.28,35.84,988437.60,324172.80,664264.80 Asia,Myanmar,Household,Online,M,3/19/2012,723860681,3/23/2012,5316,668.27,502.54,3552523.32,2671502.64,881020.68 Australia and Oceania,Vanuatu,Fruits,Online,M,8/23/2010,912997615,9/1/2010,5138,9.33,6.92,47937.54,35554.96,12382.58 Sub-Saharan Africa,Angola,Personal Care,Offline,L,6/29/2017,589251554,8/4/2017,1484,81.73,56.67,121287.32,84098.28,37189.04 Sub-Saharan Africa,Central African Republic,Cereal,Online,M,11/14/2011,452671325,12/25/2011,4359,205.70,117.11,896646.30,510482.49,386163.81 Central America and the Caribbean,Guatemala,Personal Care,Offline,M,10/20/2011,823618257,12/5/2011,5800,81.73,56.67,474034.00,328686.00,145348.00 Europe,Albania,Office Supplies,Online,L,6/16/2017,292766177,6/27/2017,4873,651.21,524.96,3173346.33,2558130.08,615216.25 Europe,San Marino,Fruits,Online,C,12/3/2014,671101415,12/14/2014,2677,9.33,6.92,24976.41,18524.84,6451.57 Europe,Kosovo,Fruits,Online,L,4/13/2010,239922797,4/18/2010,7342,9.33,6.92,68500.86,50806.64,17694.22 Asia,Malaysia,Cereal,Offline,L,9/5/2010,500841653,9/25/2010,9030,205.70,117.11,1857471.00,1057503.30,799967.70 Australia and Oceania,Samoa ,Meat,Offline,C,12/20/2012,325781810,1/6/2013,4932,421.89,364.69,2080761.48,1798651.08,282110.40 Europe,Netherlands,Cosmetics,Offline,C,1/28/2015,906979596,2/20/2015,4272,437.20,263.33,1867718.40,1124945.76,742772.64 Middle East and North Africa,Morocco,Household,Online,M,3/9/2012,806983840,3/12/2012,3306,668.27,502.54,2209300.62,1661397.24,547903.38 Sub-Saharan Africa,Tanzania,Vegetables,Online,C,9/18/2015,908655869,10/23/2015,319,154.06,90.93,49145.14,29006.67,20138.47 Europe,Ukraine,Beverages,Online,L,8/16/2011,365169513,9/19/2011,629,47.45,31.79,29846.05,19995.91,9850.14 Australia and Oceania,Samoa ,Office Supplies,Offline,L,3/29/2017,650011098,4/29/2017,1583,651.21,524.96,1030865.43,831011.68,199853.75 Central America and the Caribbean,Barbados,Vegetables,Online,M,11/15/2016,606979453,12/27/2016,7563,154.06,90.93,1165155.78,687703.59,477452.19 Europe,San Marino,Household,Offline,M,1/17/2011,500185906,3/7/2011,4980,668.27,502.54,3327984.60,2502649.20,825335.40 Europe,Austria,Clothes,Online,L,9/13/2012,664054286,10/3/2012,7275,109.28,35.84,795012.00,260736.00,534276.00 Europe,Romania,Vegetables,Offline,C,2/19/2013,153320920,3/31/2013,9922,154.06,90.93,1528583.32,902207.46,626375.86 Sub-Saharan Africa,Seychelles ,Household,Online,L,1/23/2016,793034636,2/20/2016,5427,668.27,502.54,3626701.29,2727284.58,899416.71 Middle East and North Africa,Saudi Arabia,Vegetables,Offline,H,2/11/2011,428556764,3/1/2011,8325,154.06,90.93,1282549.50,756992.25,525557.25 Sub-Saharan Africa,Comoros,Fruits,Offline,C,7/2/2015,575561130,8/5/2015,183,9.33,6.92,1707.39,1266.36,441.03 Europe,Denmark,Cosmetics,Offline,C,3/13/2017,570034062,3/22/2017,4601,437.20,263.33,2011557.20,1211581.33,799975.87 Europe,Switzerland,Clothes,Online,H,8/11/2016,718274390,8/31/2016,2209,109.28,35.84,241399.52,79170.56,162228.96 Central America and the Caribbean,The Bahamas,Vegetables,Offline,C,3/17/2015,946893441,3/19/2015,5666,154.06,90.93,872903.96,515209.38,357694.58 Middle East and North Africa,Iraq,Clothes,Offline,L,9/25/2011,352815043,10/27/2011,4667,109.28,35.84,510009.76,167265.28,342744.48 Australia and Oceania,Papua New Guinea,Cereal,Online,L,7/27/2013,353275525,9/13/2013,933,205.70,117.11,191918.10,109263.63,82654.47 Sub-Saharan Africa,Zambia,Snacks,Online,H,3/29/2010,635823714,4/24/2010,3221,152.58,97.44,491460.18,313854.24,177605.94 Sub-Saharan Africa,Sierra Leone,Cereal,Offline,H,1/16/2015,508320939,1/24/2015,2317,205.70,117.11,476606.90,271343.87,205263.03 Asia,Sri Lanka,Fruits,Offline,L,11/1/2015,248941028,11/24/2015,6037,9.33,6.92,56325.21,41776.04,14549.17 Sub-Saharan Africa,Madagascar,Fruits,Online,M,9/9/2016,656170308,9/20/2016,4231,9.33,6.92,39475.23,29278.52,10196.71 Europe,Romania,Cosmetics,Offline,L,5/21/2011,798807609,5/24/2011,3778,437.20,263.33,1651741.60,994860.74,656880.86 Central America and the Caribbean,The Bahamas,Clothes,Offline,L,6/25/2017,265964257,8/9/2017,3589,109.28,35.84,392205.92,128629.76,263576.16 Sub-Saharan Africa,Uganda,Cosmetics,Online,H,12/14/2011,517064082,12/28/2011,9607,437.20,263.33,4200180.40,2529811.31,1670369.09 Middle East and North Africa,Morocco,Beverages,Offline,L,9/13/2010,831843411,9/21/2010,9806,47.45,31.79,465294.70,311732.74,153561.96 Central America and the Caribbean,Dominican Republic,Beverages,Online,L,10/6/2011,560351073,10/17/2011,9190,47.45,31.79,436065.50,292150.10,143915.40 Asia,North Korea,Personal Care,Offline,M,3/30/2014,472948396,4/16/2014,4795,81.73,56.67,391895.35,271732.65,120162.70 Australia and Oceania,Palau,Personal Care,Online,H,7/9/2014,510309207,7/22/2014,689,81.73,56.67,56311.97,39045.63,17266.34 Central America and the Caribbean,Jamaica,Office Supplies,Offline,C,1/14/2010,233419835,3/3/2010,2971,651.21,524.96,1934744.91,1559656.16,375088.75 Sub-Saharan Africa,Cape Verde,Vegetables,Online,C,8/31/2010,173579108,9/5/2010,4770,154.06,90.93,734866.20,433736.10,301130.10 Sub-Saharan Africa,Equatorial Guinea,Clothes,Offline,L,3/10/2012,482398355,4/16/2012,1248,109.28,35.84,136381.44,44728.32,91653.12 Sub-Saharan Africa,Chad,Snacks,Online,L,4/4/2015,481801402,5/4/2015,4596,152.58,97.44,701257.68,447834.24,253423.44 Europe,Monaco,Clothes,Offline,H,12/28/2013,914024579,2/2/2014,9039,109.28,35.84,987781.92,323957.76,663824.16 Middle East and North Africa,Egypt,Household,Offline,C,12/13/2014,791616714,1/27/2015,5832,668.27,502.54,3897350.64,2930813.28,966537.36 Asia,India,Office Supplies,Online,H,8/12/2010,547439134,8/20/2010,8260,651.21,524.96,5378994.60,4336169.60,1042825.00 Europe,United Kingdom,Cereal,Online,L,6/13/2013,684665668,7/2/2013,6641,205.70,117.11,1366053.70,777727.51,588326.19 Asia,Kyrgyzstan,Vegetables,Online,H,4/11/2014,426782643,5/12/2014,3323,154.06,90.93,511941.38,302160.39,209780.99 Europe,Monaco,Cereal,Online,H,5/4/2016,867588889,6/10/2016,7687,205.70,117.11,1581215.90,900224.57,680991.33 Europe,Denmark,Beverages,Online,H,5/16/2016,921195733,6/27/2016,1143,47.45,31.79,54235.35,36335.97,17899.38 Sub-Saharan Africa,Niger,Meat,Online,M,12/18/2015,472027003,1/28/2016,2135,421.89,364.69,900735.15,778613.15,122122.00 Sub-Saharan Africa,Togo,Vegetables,Offline,H,3/10/2010,824819028,4/21/2010,1135,154.06,90.93,174858.10,103205.55,71652.55 Sub-Saharan Africa,Swaziland,Beverages,Offline,H,2/14/2014,654620635,3/26/2014,5648,47.45,31.79,267997.60,179549.92,88447.68 Asia,South Korea,Office Supplies,Online,L,8/13/2013,956793153,9/26/2013,5211,651.21,524.96,3393455.31,2735566.56,657888.75 Asia,Indonesia,Office Supplies,Offline,M,7/7/2014,997010409,7/8/2014,6391,651.21,524.96,4161883.11,3355019.36,806863.75 Europe,Germany,Beverages,Online,H,2/27/2016,561258733,3/22/2016,7786,47.45,31.79,369445.70,247516.94,121928.76 Australia and Oceania,Marshall Islands,Cosmetics,Online,C,2/28/2015,405836951,3/10/2015,5027,437.20,263.33,2197804.40,1323759.91,874044.49 Central America and the Caribbean,Grenada,Cosmetics,Online,L,10/11/2016,907356393,11/2/2016,5775,437.20,263.33,2524830.00,1520730.75,1004099.25 North America,Mexico,Beverages,Online,M,12/20/2015,712740886,12/30/2015,4722,47.45,31.79,224058.90,150112.38,73946.52 Sub-Saharan Africa,Rwanda,Vegetables,Online,C,5/1/2016,789226758,6/8/2016,8591,154.06,90.93,1323529.46,781179.63,542349.83 Asia,Bangladesh,Fruits,Offline,H,3/4/2011,374362838,3/12/2011,1138,9.33,6.92,10617.54,7874.96,2742.58 Europe,Ireland,Vegetables,Online,H,7/28/2017,126010453,9/2/2017,8148,154.06,90.93,1255280.88,740897.64,514383.24 Sub-Saharan Africa,Gabon,Vegetables,Offline,L,1/15/2012,772343432,2/8/2012,2440,154.06,90.93,375906.40,221869.20,154037.20 Sub-Saharan Africa,Ghana,Snacks,Offline,C,7/28/2017,861848104,9/6/2017,8861,152.58,97.44,1352011.38,863415.84,488595.54 Europe,Romania,Vegetables,Offline,C,8/4/2016,813323295,9/13/2016,9292,154.06,90.93,1431525.52,844921.56,586603.96 Sub-Saharan Africa,Madagascar,Cosmetics,Offline,H,4/18/2015,665880334,5/29/2015,7643,437.20,263.33,3341519.60,2012631.19,1328888.41 Asia,Maldives,Snacks,Offline,C,3/1/2017,528943049,3/1/2017,4857,152.58,97.44,741081.06,473266.08,267814.98 Europe,Vatican City,Personal Care,Online,H,8/7/2011,132247769,9/15/2011,3909,81.73,56.67,319482.57,221523.03,97959.54 Sub-Saharan Africa,Gabon,Personal Care,Offline,L,7/25/2015,175843322,8/7/2015,4801,81.73,56.67,392385.73,272072.67,120313.06 Middle East and North Africa,Turkey,Snacks,Offline,L,10/21/2016,980091035,12/7/2016,9572,152.58,97.44,1460495.76,932695.68,527800.08 Australia and Oceania,Australia,Household,Online,L,6/27/2015,235664737,8/14/2015,7287,668.27,502.54,4869683.49,3662008.98,1207674.51 North America,Canada,Clothes,Offline,H,11/3/2012,653550755,12/14/2012,9047,109.28,35.84,988656.16,324244.48,664411.68 Middle East and North Africa,United Arab Emirates,Fruits,Online,C,12/14/2014,515047919,1/20/2015,2980,9.33,6.92,27803.40,20621.60,7181.80 Middle East and North Africa,Bahrain,Household,Online,C,10/26/2013,421767556,11/4/2013,9247,668.27,502.54,6179492.69,4646987.38,1532505.31 Sub-Saharan Africa,Cape Verde,Baby Food,Online,M,11/14/2013,145633494,12/8/2013,5042,255.28,159.42,1287121.76,803795.64,483326.12 Middle East and North Africa,Jordan,Clothes,Online,M,1/9/2013,878882062,1/13/2013,9588,109.28,35.84,1047776.64,343633.92,704142.72 Europe,Latvia,Meat,Offline,H,1/17/2014,284062087,2/3/2014,9139,421.89,364.69,3855652.71,3332901.91,522750.80 Australia and Oceania,East Timor,Snacks,Online,C,3/15/2013,144034898,4/23/2013,1982,152.58,97.44,302413.56,193126.08,109287.48 Sub-Saharan Africa,Madagascar,Cereal,Offline,L,8/10/2011,511974322,9/16/2011,3434,205.70,117.11,706373.80,402155.74,304218.06 Sub-Saharan Africa,Zambia,Personal Care,Online,C,6/7/2011,161366689,7/16/2011,844,81.73,56.67,68980.12,47829.48,21150.64 Central America and the Caribbean,Belize,Household,Online,C,2/20/2012,636010825,3/4/2012,8592,668.27,502.54,5741775.84,4317823.68,1423952.16 Australia and Oceania,Nauru,Meat,Online,M,3/31/2014,400018060,5/12/2014,3088,421.89,364.69,1302796.32,1126162.72,176633.60 Central America and the Caribbean,Saint Kitts and Nevis ,Cosmetics,Online,C,7/22/2015,687812221,9/3/2015,7776,437.20,263.33,3399667.20,2047654.08,1352013.12 Asia,Nepal,Personal Care,Offline,L,12/6/2014,554129636,1/25/2015,8128,81.73,56.67,664301.44,460613.76,203687.68 Middle East and North Africa,Iraq,Beverages,Online,L,2/2/2016,924019134,3/6/2016,6650,47.45,31.79,315542.50,211403.50,104139.00 Central America and the Caribbean,Saint Lucia,Beverages,Online,L,3/27/2016,542842042,4/22/2016,7878,47.45,31.79,373811.10,250441.62,123369.48 Central America and the Caribbean,Jamaica,Vegetables,Offline,C,6/8/2017,926272189,6/9/2017,3379,154.06,90.93,520568.74,307252.47,213316.27 Middle East and North Africa,Algeria,Baby Food,Online,M,3/28/2015,510295903,5/14/2015,6753,255.28,159.42,1723905.84,1076563.26,647342.58 Central America and the Caribbean,Saint Lucia,Meat,Online,M,1/15/2010,501212012,2/17/2010,8627,421.89,364.69,3639645.03,3146180.63,493464.40 Europe,Luxembourg,Fruits,Offline,L,11/22/2010,825631844,1/11/2011,1665,9.33,6.92,15534.45,11521.80,4012.65 Middle East and North Africa,Bahrain,Baby Food,Offline,C,7/15/2016,580479228,8/4/2016,5558,255.28,159.42,1418846.24,886056.36,532789.88 Europe,Serbia,Beverages,Online,L,8/22/2011,282990491,9/27/2011,2030,47.45,31.79,96323.50,64533.70,31789.80 Europe,Germany,Meat,Online,L,1/3/2016,520714461,1/25/2016,9835,421.89,364.69,4149288.15,3586726.15,562562.00 Sub-Saharan Africa,Angola,Snacks,Online,M,8/25/2012,601512467,9/13/2012,9761,152.58,97.44,1489333.38,951111.84,538221.54 Central America and the Caribbean,Trinidad and Tobago,Fruits,Offline,L,2/24/2012,803558337,3/1/2012,9624,9.33,6.92,89791.92,66598.08,23193.84 Europe,Spain,Household,Online,C,1/1/2011,125338399,1/27/2011,9272,668.27,502.54,6196199.44,4659550.88,1536648.56 Sub-Saharan Africa,Equatorial Guinea,Fruits,Online,H,7/22/2010,335651481,7/29/2010,5587,9.33,6.92,52126.71,38662.04,13464.67 Sub-Saharan Africa,Madagascar,Snacks,Offline,C,3/24/2013,123608911,5/8/2013,7478,152.58,97.44,1140993.24,728656.32,412336.92 Europe,Ukraine,Vegetables,Offline,M,2/19/2011,948634517,3/10/2011,889,154.06,90.93,136959.34,80836.77,56122.57 Central America and the Caribbean,Guatemala,Meat,Online,L,8/12/2012,290464627,9/6/2012,3793,421.89,364.69,1600228.77,1383269.17,216959.60 Middle East and North Africa,Iraq,Baby Food,Offline,M,9/12/2015,199148070,10/30/2015,1194,255.28,159.42,304804.32,190347.48,114456.84 Middle East and North Africa,Qatar,Meat,Offline,M,11/29/2011,545046174,12/31/2011,130,421.89,364.69,54845.70,47409.70,7436.00 Middle East and North Africa,Afghanistan,Meat,Online,H,10/14/2012,368832767,10/28/2012,4667,421.89,364.69,1968960.63,1702008.23,266952.40 Middle East and North Africa,Morocco,Meat,Offline,C,10/7/2015,131494176,11/17/2015,904,421.89,364.69,381388.56,329679.76,51708.80 Asia,Nepal,Beverages,Offline,C,7/29/2015,364329230,9/17/2015,1970,47.45,31.79,93476.50,62626.30,30850.20 Europe,Germany,Beverages,Online,L,7/27/2015,318949258,9/6/2015,3028,47.45,31.79,143678.60,96260.12,47418.48 Australia and Oceania,Federated States of Micronesia,Beverages,Online,L,5/23/2016,217278087,5/23/2016,6269,47.45,31.79,297464.05,199291.51,98172.54 Sub-Saharan Africa,Republic of the Congo,Baby Food,Online,H,3/5/2012,801552045,4/5/2012,5917,255.28,159.42,1510491.76,943288.14,567203.62 Sub-Saharan Africa,Swaziland,Cosmetics,Online,H,1/18/2017,184319961,2/9/2017,3227,437.20,263.33,1410844.40,849765.91,561078.49 Central America and the Caribbean,Dominican Republic,Meat,Online,L,11/30/2015,598443162,12/27/2015,1485,421.89,364.69,626506.65,541564.65,84942.00 Europe,Estonia,Beverages,Offline,M,9/1/2013,747095477,10/7/2013,1009,47.45,31.79,47877.05,32076.11,15800.94 North America,Canada,Cereal,Offline,H,4/11/2016,753763234,4/14/2016,4146,205.70,117.11,852832.20,485538.06,367294.14 Australia and Oceania,Papua New Guinea,Cereal,Online,L,11/4/2011,812245261,11/26/2011,278,205.70,117.11,57184.60,32556.58,24628.02 Europe,Estonia,Vegetables,Offline,C,3/27/2012,736652886,5/15/2012,814,154.06,90.93,125404.84,74017.02,51387.82 Sub-Saharan Africa,Comoros,Meat,Online,M,6/24/2011,411409938,7/21/2011,4198,421.89,364.69,1771094.22,1530968.62,240125.60 Asia,Kyrgyzstan,Cosmetics,Online,M,3/21/2012,241252744,4/5/2012,903,437.20,263.33,394791.60,237786.99,157004.61 Sub-Saharan Africa,Eritrea,Clothes,Online,C,5/21/2014,701230132,5/29/2014,8434,109.28,35.84,921667.52,302274.56,619392.96 Asia,Bangladesh,Personal Care,Offline,C,5/27/2011,986703431,6/11/2011,6327,81.73,56.67,517105.71,358551.09,158554.62 Europe,Serbia,Cereal,Offline,H,9/8/2016,363346469,10/12/2016,1149,205.70,117.11,236349.30,134559.39,101789.91 Sub-Saharan Africa,Comoros,Vegetables,Online,H,6/7/2014,417145574,7/2/2014,1500,154.06,90.93,231090.00,136395.00,94695.00 Central America and the Caribbean,Haiti,Meat,Online,L,5/26/2016,104399573,7/3/2016,3009,421.89,364.69,1269467.01,1097352.21,172114.80 Australia and Oceania,Tuvalu,Household,Offline,C,9/12/2012,701719796,10/15/2012,3336,668.27,502.54,2229348.72,1676473.44,552875.28 Asia,North Korea,Snacks,Offline,H,6/8/2013,856030070,6/21/2013,7176,152.58,97.44,1094914.08,699229.44,395684.64 Sub-Saharan Africa,Swaziland,Snacks,Offline,M,8/20/2014,634566724,9/30/2014,1250,152.58,97.44,190725.00,121800.00,68925.00 Australia and Oceania,Tonga,Personal Care,Offline,H,3/4/2017,174878585,3/22/2017,9314,81.73,56.67,761233.22,527824.38,233408.84 Sub-Saharan Africa,Comoros,Household,Online,C,6/2/2015,134826982,6/12/2015,7155,668.27,502.54,4781471.85,3595673.70,1185798.15 Sub-Saharan Africa,Namibia,Beverages,Offline,M,2/29/2016,342585742,3/22/2016,7589,47.45,31.79,360098.05,241254.31,118843.74 Asia,Bangladesh,Snacks,Online,M,2/13/2012,246641194,3/3/2012,5465,152.58,97.44,833849.70,532509.60,301340.10 Middle East and North Africa,Yemen,Cereal,Online,H,12/31/2015,265792167,1/7/2016,2663,205.70,117.11,547779.10,311863.93,235915.17 Central America and the Caribbean,Barbados,Snacks,Offline,H,4/11/2011,439149987,4/16/2011,3095,152.58,97.44,472235.10,301576.80,170658.30 Middle East and North Africa,Pakistan,Household,Online,L,8/1/2016,876138484,8/20/2016,7702,668.27,502.54,5147015.54,3870563.08,1276452.46 Europe,Poland,Household,Offline,L,9/30/2013,406493985,10/19/2013,9458,668.27,502.54,6320497.66,4753023.32,1567474.34 Sub-Saharan Africa,Sierra Leone,Fruits,Online,H,2/28/2012,630265319,3/13/2012,8369,9.33,6.92,78082.77,57913.48,20169.29 Australia and Oceania,Palau,Vegetables,Online,H,9/16/2014,967813813,10/11/2014,6469,154.06,90.93,996614.14,588226.17,408387.97 Central America and the Caribbean,Panama,Cosmetics,Offline,H,12/28/2013,909813296,1/9/2014,2827,437.20,263.33,1235964.40,744433.91,491530.49 Central America and the Caribbean,Saint Vincent and the Grenadines,Meat,Offline,L,3/27/2011,467250096,5/15/2011,8542,421.89,364.69,3603784.38,3115181.98,488602.40 Middle East and North Africa,Jordan,Vegetables,Offline,M,7/10/2012,621423041,8/25/2012,1742,154.06,90.93,268372.52,158400.06,109972.46 Europe,Croatia,Meat,Offline,M,6/7/2017,173943459,7/5/2017,2590,421.89,364.69,1092695.10,944547.10,148148.00 Europe,Russia,Household,Online,H,3/31/2015,696735179,4/8/2015,8277,668.27,502.54,5531270.79,4159523.58,1371747.21 Asia,Bangladesh,Meat,Offline,M,6/12/2011,682034528,6/26/2011,8028,421.89,364.69,3386932.92,2927731.32,459201.60 Central America and the Caribbean,Saint Lucia,Personal Care,Online,H,5/19/2016,492390334,5/28/2016,8097,81.73,56.67,661767.81,458856.99,202910.82 Asia,Cambodia,Office Supplies,Online,C,3/3/2011,110663926,3/24/2011,6770,651.21,524.96,4408691.70,3553979.20,854712.50 Asia,Vietnam,Meat,Offline,H,1/23/2012,490029132,2/8/2012,9365,421.89,364.69,3950999.85,3415321.85,535678.00 Sub-Saharan Africa,Zimbabwe,Beverages,Online,L,9/2/2013,403972280,9/27/2013,3230,47.45,31.79,153263.50,102681.70,50581.80 Central America and the Caribbean,Panama,Fruits,Online,C,6/13/2015,496292197,6/26/2015,2745,9.33,6.92,25610.85,18995.40,6615.45 Europe,Slovakia,Office Supplies,Offline,L,5/7/2010,131100213,5/20/2010,4321,651.21,524.96,2813878.41,2268352.16,545526.25 Asia,North Korea,Clothes,Online,M,4/23/2011,542820155,6/6/2011,1401,109.28,35.84,153101.28,50211.84,102889.44 Sub-Saharan Africa,Liberia,Baby Food,Offline,L,3/13/2017,786188352,4/20/2017,9459,255.28,159.42,2414693.52,1507953.78,906739.74 Central America and the Caribbean,Barbados,Office Supplies,Offline,H,8/3/2016,886253631,8/18/2016,999,651.21,524.96,650558.79,524435.04,126123.75 Asia,Tajikistan,Household,Offline,M,4/5/2014,488377320,4/16/2014,557,668.27,502.54,372226.39,279914.78,92311.61 Central America and the Caribbean,Grenada,Household,Offline,H,4/9/2012,208233249,5/28/2012,9701,668.27,502.54,6482887.27,4875140.54,1607746.73 Asia,Indonesia,Baby Food,Online,M,9/30/2013,281807744,10/11/2013,2029,255.28,159.42,517963.12,323463.18,194499.94 Sub-Saharan Africa,Nigeria,Office Supplies,Online,L,7/9/2011,115399634,8/2/2011,8171,651.21,524.96,5321036.91,4289448.16,1031588.75 Europe,Denmark,Vegetables,Online,M,8/16/2014,535620248,9/9/2014,789,154.06,90.93,121553.34,71743.77,49809.57 Middle East and North Africa,Libya,Meat,Online,M,3/29/2014,639393413,5/5/2014,9574,421.89,364.69,4039174.86,3491542.06,547632.80 Asia,Kyrgyzstan,Baby Food,Online,L,3/6/2010,943955457,3/8/2010,6251,255.28,159.42,1595755.28,996534.42,599220.86 Sub-Saharan Africa,South Africa,Office Supplies,Offline,L,9/3/2014,236855208,10/19/2014,9574,651.21,524.96,6234684.54,5025967.04,1208717.50 Europe,United Kingdom,Clothes,Offline,C,9/25/2010,525953996,10/3/2010,330,109.28,35.84,36062.40,11827.20,24235.20 Middle East and North Africa,Yemen,Office Supplies,Offline,C,7/5/2016,289425647,7/24/2016,6335,651.21,524.96,4125415.35,3325621.60,799793.75 Middle East and North Africa,Yemen,Vegetables,Online,C,5/10/2013,325756490,5/29/2013,7439,154.06,90.93,1146052.34,676428.27,469624.07 Asia,Laos,Personal Care,Online,C,3/13/2010,603745353,4/22/2010,521,81.73,56.67,42581.33,29525.07,13056.26 Asia,Philippines,Cereal,Offline,M,1/6/2017,712503564,1/29/2017,4493,205.70,117.11,924210.10,526175.23,398034.87 Middle East and North Africa,Kuwait,Clothes,Offline,C,10/17/2010,311454951,10/18/2010,5296,109.28,35.84,578746.88,189808.64,388938.24 Asia,Laos,Cosmetics,Online,H,12/31/2014,480335843,1/20/2015,905,437.20,263.33,395666.00,238313.65,157352.35 Sub-Saharan Africa,Mozambique,Fruits,Offline,L,7/11/2012,569195067,7/23/2012,6324,9.33,6.92,59002.92,43762.08,15240.84 Europe,Russia,Meat,Offline,M,1/19/2010,448393952,2/13/2010,8590,421.89,364.69,3624035.10,3132687.10,491348.00 Europe,Kosovo,Personal Care,Online,H,7/12/2011,958606326,8/23/2011,1769,81.73,56.67,144580.37,100249.23,44331.14 Sub-Saharan Africa,Seychelles ,Clothes,Offline,C,5/24/2014,760818517,6/5/2014,1961,109.28,35.84,214298.08,70282.24,144015.84 Central America and the Caribbean,The Bahamas,Household,Online,C,5/19/2013,386329352,6/11/2013,2295,668.27,502.54,1533679.65,1153329.30,380350.35 Asia,Japan,Vegetables,Online,C,11/5/2011,886750161,11/27/2011,7933,154.06,90.93,1222157.98,721347.69,500810.29 Middle East and North Africa,United Arab Emirates,Fruits,Online,H,6/6/2010,684004771,7/25/2010,1067,9.33,6.92,9955.11,7383.64,2571.47 Asia,South Korea,Vegetables,Online,L,11/1/2010,520329511,11/5/2010,5920,154.06,90.93,912035.20,538305.60,373729.60 Sub-Saharan Africa,Benin,Snacks,Offline,C,1/18/2012,308273208,2/15/2012,3748,152.58,97.44,571869.84,365205.12,206664.72 Middle East and North Africa,Oman,Household,Online,L,2/11/2014,480697190,3/6/2014,7836,668.27,502.54,5236563.72,3937903.44,1298660.28 Middle East and North Africa,Morocco,Snacks,Offline,L,5/12/2014,640775287,6/11/2014,8502,152.58,97.44,1297235.16,828434.88,468800.28 Asia,Laos,Cereal,Offline,M,3/7/2011,911993825,3/10/2011,8094,205.70,117.11,1664935.80,947888.34,717047.46 Central America and the Caribbean,Barbados,Cosmetics,Online,H,5/22/2015,588151633,6/27/2015,5993,437.20,263.33,2620139.60,1578136.69,1042002.91 Europe,Liechtenstein,Snacks,Online,L,2/23/2016,383360040,3/29/2016,3610,152.58,97.44,550813.80,351758.40,199055.40 Central America and the Caribbean,Trinidad and Tobago,Household,Offline,L,1/15/2015,182042872,2/26/2015,9386,668.27,502.54,6272382.22,4716840.44,1555541.78 Europe,Armenia,Cosmetics,Online,H,9/21/2014,388936460,10/8/2014,3796,437.20,263.33,1659611.20,999600.68,660010.52 Central America and the Caribbean,Trinidad and Tobago,Snacks,Offline,H,2/14/2015,579089629,2/19/2015,4345,152.58,97.44,662960.10,423376.80,239583.30 Asia,Bhutan,Baby Food,Offline,M,3/27/2017,847863709,4/11/2017,568,255.28,159.42,144999.04,90550.56,54448.48 Australia and Oceania,Tuvalu,Baby Food,Online,H,10/5/2011,460932528,11/19/2011,9033,255.28,159.42,2305944.24,1440040.86,865903.38 Asia,Thailand,Beverages,Online,L,3/7/2013,104282414,3/10/2013,8339,47.45,31.79,395685.55,265096.81,130588.74 Europe,Finland,Cereal,Offline,L,7/17/2010,534212195,8/29/2010,4115,205.70,117.11,846455.50,481907.65,364547.85 Europe,Montenegro,Vegetables,Online,M,9/1/2016,327333199,9/23/2016,4023,154.06,90.93,619783.38,365811.39,253971.99 Central America and the Caribbean,Nicaragua,Beverages,Online,M,5/19/2011,830569255,7/2/2011,2754,47.45,31.79,130677.30,87549.66,43127.64 Australia and Oceania,Vanuatu,Meat,Offline,M,5/31/2013,311156690,6/21/2013,7034,421.89,364.69,2967574.26,2565229.46,402344.80 Asia,India,Baby Food,Online,L,1/29/2016,706644332,2/3/2016,616,255.28,159.42,157252.48,98202.72,59049.76 Asia,Philippines,Cosmetics,Online,H,9/26/2013,874893510,10/9/2013,9286,437.20,263.33,4059839.20,2445282.38,1614556.82 Australia and Oceania,Samoa ,Clothes,Offline,H,3/10/2013,644078052,4/28/2013,5863,109.28,35.84,640708.64,210129.92,430578.72 Europe,Belgium,Cereal,Offline,C,9/18/2014,362684285,10/14/2014,5194,205.70,117.11,1068405.80,608269.34,460136.46 Asia,Turkmenistan,Baby Food,Online,L,11/16/2015,449511039,11/19/2015,9160,255.28,159.42,2338364.80,1460287.20,878077.60 Europe,Latvia,Household,Online,M,4/22/2015,943669641,6/9/2015,1672,668.27,502.54,1117347.44,840246.88,277100.56 Europe,Moldova ,Personal Care,Online,L,6/24/2016,154583919,7/10/2016,3672,81.73,56.67,300112.56,208092.24,92020.32 Europe,Netherlands,Baby Food,Offline,L,5/15/2016,511990201,6/12/2016,8133,255.28,159.42,2076192.24,1296562.86,779629.38 Asia,North Korea,Cosmetics,Offline,H,10/19/2016,915937316,12/1/2016,5061,437.20,263.33,2212669.20,1332713.13,879956.07 Sub-Saharan Africa,Eritrea,Baby Food,Online,H,2/1/2013,786786592,3/5/2013,6491,255.28,159.42,1657022.48,1034795.22,622227.26 Europe,Lithuania,Snacks,Offline,H,12/19/2012,515211856,12/23/2012,1492,152.58,97.44,227649.36,145380.48,82268.88 Sub-Saharan Africa,Niger,Vegetables,Offline,M,2/6/2010,112199437,3/12/2010,1162,154.06,90.93,179017.72,105660.66,73357.06 Middle East and North Africa,Jordan,Household,Offline,M,7/27/2010,559048163,8/28/2010,3630,668.27,502.54,2425820.10,1824220.20,601599.90 North America,Canada,Meat,Offline,M,12/12/2013,657369363,1/5/2014,9058,421.89,364.69,3821479.62,3303362.02,518117.60 Europe,Croatia,Personal Care,Offline,H,2/2/2017,179086863,2/23/2017,4637,81.73,56.67,378982.01,262778.79,116203.22 Sub-Saharan Africa,South Sudan,Meat,Offline,M,5/5/2010,316436994,5/6/2010,9593,421.89,364.69,4047190.77,3498471.17,548719.60 Australia and Oceania,New Zealand,Beverages,Online,M,8/14/2011,531968581,9/12/2011,180,47.45,31.79,8541.00,5722.20,2818.80 Middle East and North Africa,Iran,Fruits,Offline,M,3/6/2017,808542954,4/6/2017,4683,9.33,6.92,43692.39,32406.36,11286.03 North America,United States of America,Baby Food,Offline,C,12/28/2012,299333941,1/22/2013,8420,255.28,159.42,2149457.60,1342316.40,807141.20 Australia and Oceania,Solomon Islands,Meat,Offline,L,5/19/2016,477827870,6/27/2016,8740,421.89,364.69,3687318.60,3187390.60,499928.00 Sub-Saharan Africa,Ghana,Baby Food,Online,H,8/29/2011,187823569,10/9/2011,23,255.28,159.42,5871.44,3666.66,2204.78 Asia,Mongolia,Personal Care,Online,H,6/29/2014,593432366,7/11/2014,8679,81.73,56.67,709334.67,491838.93,217495.74 Europe,Vatican City,Meat,Offline,M,2/8/2015,229078090,3/3/2015,8152,421.89,364.69,3439247.28,2972952.88,466294.40 North America,United States of America,Household,Offline,C,5/14/2012,849497067,5/17/2012,3915,668.27,502.54,2616277.05,1967444.10,648832.95 Asia,Bhutan,Cereal,Offline,C,7/24/2017,679738128,8/19/2017,8472,205.70,117.11,1742690.40,992155.92,750534.48 Sub-Saharan Africa,Angola,Personal Care,Offline,L,10/3/2012,265162599,10/28/2012,6360,81.73,56.67,519802.80,360421.20,159381.60 Central America and the Caribbean,Saint Lucia,Cereal,Online,C,2/25/2015,221444308,3/19/2015,9147,205.70,117.11,1881537.90,1071205.17,810332.73 Australia and Oceania,Tonga,Cosmetics,Offline,M,9/24/2012,784569585,9/27/2012,430,437.20,263.33,187996.00,113231.90,74764.10 Asia,Singapore,Meat,Offline,M,6/20/2013,460837256,8/2/2013,840,421.89,364.69,354387.60,306339.60,48048.00 Europe,Croatia,Household,Offline,L,4/4/2011,976858651,5/1/2011,3038,668.27,502.54,2030204.26,1526716.52,503487.74 Europe,Croatia,Cosmetics,Online,H,6/2/2012,529557597,7/4/2012,6716,437.20,263.33,2936235.20,1768524.28,1167710.92 Sub-Saharan Africa,Central African Republic,Fruits,Online,H,10/6/2016,536170423,11/22/2016,3598,9.33,6.92,33569.34,24898.16,8671.18 Europe,Norway,Meat,Online,L,10/24/2013,684245955,12/11/2013,2439,421.89,364.69,1028989.71,889478.91,139510.80 Europe,Netherlands,Beverages,Online,L,11/10/2016,281645524,12/6/2016,4024,47.45,31.79,190938.80,127922.96,63015.84 Australia and Oceania,Marshall Islands,Snacks,Offline,M,10/9/2013,506542956,10/18/2013,6172,152.58,97.44,941723.76,601399.68,340324.08 Asia,Philippines,Cosmetics,Offline,M,3/9/2016,357424581,4/19/2016,8731,437.20,263.33,3817193.20,2299134.23,1518058.97 Europe,Portugal,Cosmetics,Online,H,4/25/2010,703089225,6/14/2010,8581,437.20,263.33,3751613.20,2259634.73,1491978.47 Europe,Portugal,Meat,Offline,M,9/16/2013,232648217,10/15/2013,4632,421.89,364.69,1954194.48,1689244.08,264950.40 Australia and Oceania,Fiji,Fruits,Offline,L,12/4/2010,405525386,12/16/2010,2828,9.33,6.92,26385.24,19569.76,6815.48 Central America and the Caribbean,Dominica,Cereal,Online,L,4/15/2010,501457059,5/29/2010,1142,205.70,117.11,234909.40,133739.62,101169.78 North America,Greenland,Clothes,Online,M,5/28/2017,770492064,6/2/2017,4579,109.28,35.84,500393.12,164111.36,336281.76 Sub-Saharan Africa,Guinea-Bissau,Snacks,Offline,C,3/28/2016,182991731,5/13/2016,174,152.58,97.44,26548.92,16954.56,9594.36 Sub-Saharan Africa,Cape Verde,Snacks,Online,L,9/28/2010,479629886,11/16/2010,1996,152.58,97.44,304549.68,194490.24,110059.44 Central America and the Caribbean,Costa Rica,Fruits,Online,M,7/1/2013,321392858,7/13/2013,6143,9.33,6.92,57314.19,42509.56,14804.63 Asia,Mongolia,Personal Care,Offline,M,8/30/2011,239579474,9/23/2011,5745,81.73,56.67,469538.85,325569.15,143969.70 Sub-Saharan Africa,Lesotho,Beverages,Online,M,3/2/2016,385801064,4/3/2016,5963,47.45,31.79,282944.35,189563.77,93380.58 Central America and the Caribbean,Panama,Household,Offline,C,7/5/2012,981981456,7/31/2012,8989,668.27,502.54,6007079.03,4517332.06,1489746.97 Europe,Portugal,Beverages,Online,L,7/16/2017,970356976,7/22/2017,9048,47.45,31.79,429327.60,287635.92,141691.68 Europe,Switzerland,Clothes,Online,L,2/3/2015,263476455,2/15/2015,7393,109.28,35.84,807907.04,264965.12,542941.92 Sub-Saharan Africa,Uganda,Cereal,Online,L,10/14/2012,194201219,11/30/2012,7311,205.70,117.11,1503872.70,856191.21,647681.49 Middle East and North Africa,Algeria,Baby Food,Online,C,7/12/2015,365705096,7/14/2015,9120,255.28,159.42,2328153.60,1453910.40,874243.20 Sub-Saharan Africa,Angola,Cosmetics,Online,H,2/16/2014,901474416,3/20/2014,5167,437.20,263.33,2259012.40,1360626.11,898386.29 Middle East and North Africa,Pakistan,Meat,Online,H,11/2/2011,195308005,11/30/2011,4834,421.89,364.69,2039416.26,1762911.46,276504.80 North America,Canada,Personal Care,Online,C,12/15/2012,761317193,2/1/2013,9530,81.73,56.67,778886.90,540065.10,238821.80 Sub-Saharan Africa,Angola,Cereal,Offline,H,7/3/2011,683925807,8/7/2011,7699,205.70,117.11,1583684.30,901629.89,682054.41 Central America and the Caribbean,Costa Rica,Office Supplies,Online,H,2/16/2010,367870175,4/5/2010,9815,651.21,524.96,6391626.15,5152482.40,1239143.75 Central America and the Caribbean,Nicaragua,Cosmetics,Online,M,5/1/2016,288199126,5/31/2016,3381,437.20,263.33,1478173.20,890318.73,587854.47 Asia,Maldives,Personal Care,Online,H,12/20/2015,540273988,2/1/2016,7934,81.73,56.67,648445.82,449619.78,198826.04 Central America and the Caribbean,Barbados,Baby Food,Offline,M,11/17/2014,389768588,12/20/2014,42,255.28,159.42,10721.76,6695.64,4026.12 Central America and the Caribbean,Guatemala,Household,Offline,M,5/26/2012,522669255,6/5/2012,8302,668.27,502.54,5547977.54,4172087.08,1375890.46 Asia,Turkmenistan,Clothes,Offline,C,9/22/2012,795274817,10/17/2012,8346,109.28,35.84,912050.88,299120.64,612930.24 Australia and Oceania,Nauru,Fruits,Offline,M,7/15/2013,684196603,8/23/2013,7834,9.33,6.92,73091.22,54211.28,18879.94 Middle East and North Africa,Yemen,Cosmetics,Offline,C,5/14/2017,636358439,5/16/2017,1458,437.20,263.33,637437.60,383935.14,253502.46 Middle East and North Africa,Egypt,Vegetables,Online,M,8/30/2012,718996655,9/29/2012,5943,154.06,90.93,915578.58,540396.99,375181.59 Asia,Uzbekistan,Household,Online,L,6/15/2015,169660079,7/7/2015,5042,668.27,502.54,3369417.34,2533806.68,835610.66 Central America and the Caribbean,Antigua and Barbuda ,Beverages,Online,L,7/12/2012,546210038,8/26/2012,4543,47.45,31.79,215565.35,144421.97,71143.38 Middle East and North Africa,Iran,Household,Offline,M,9/8/2010,776820361,9/10/2010,7262,668.27,502.54,4852976.74,3649445.48,1203531.26 Sub-Saharan Africa,Angola,Meat,Online,C,3/17/2010,309977376,3/29/2010,8049,421.89,364.69,3395792.61,2935389.81,460402.80 Asia,South Korea,Cereal,Online,M,3/24/2016,464479911,4/21/2016,8782,205.70,117.11,1806457.40,1028460.02,777997.38 Europe,Belarus,Household,Online,C,3/26/2012,379439294,4/13/2012,3374,668.27,502.54,2254742.98,1695569.96,559173.02 Sub-Saharan Africa,Central African Republic,Clothes,Offline,H,11/5/2016,164279353,12/16/2016,2766,109.28,35.84,302268.48,99133.44,203135.04 Europe,Spain,Meat,Online,C,11/23/2011,448736417,12/8/2011,9933,421.89,364.69,4190633.37,3622465.77,568167.60 Europe,Austria,Cosmetics,Offline,M,5/6/2014,132859313,5/6/2014,4878,437.20,263.33,2132661.60,1284523.74,848137.86 Central America and the Caribbean,Costa Rica,Snacks,Offline,H,12/9/2011,437009370,12/25/2011,9639,152.58,97.44,1470718.62,939224.16,531494.46 Middle East and North Africa,Syria,Household,Online,H,6/1/2012,851860415,6/26/2012,3282,668.27,502.54,2193262.14,1649336.28,543925.86 Asia,Maldives,Office Supplies,Offline,L,1/5/2017,488398778,2/22/2017,6907,651.21,524.96,4497907.47,3625898.72,872008.75 Middle East and North Africa,Syria,Fruits,Online,M,8/29/2016,327923285,10/16/2016,8642,9.33,6.92,80629.86,59802.64,20827.22 Sub-Saharan Africa,Mali,Household,Online,L,12/8/2010,972045266,1/25/2011,8650,668.27,502.54,5780535.50,4346971.00,1433564.50 Middle East and North Africa,Oman,Personal Care,Online,M,11/2/2011,392688548,11/14/2011,4123,81.73,56.67,336972.79,233650.41,103322.38 Sub-Saharan Africa,Mauritania,Personal Care,Online,C,4/13/2017,682089459,4/30/2017,4283,81.73,56.67,350049.59,242717.61,107331.98 Europe,Denmark,Vegetables,Offline,C,11/24/2014,402796828,12/21/2014,5387,154.06,90.93,829921.22,489839.91,340081.31 Europe,Latvia,Fruits,Offline,H,2/2/2016,437671983,2/22/2016,5721,9.33,6.92,53376.93,39589.32,13787.61 Asia,Cambodia,Clothes,Offline,C,5/24/2014,839888751,6/4/2014,600,109.28,35.84,65568.00,21504.00,44064.00 Asia,Singapore,Cosmetics,Online,C,12/29/2011,382933461,1/29/2012,7376,437.20,263.33,3224787.20,1942322.08,1282465.12 Australia and Oceania,Nauru,Beverages,Online,L,12/1/2015,610604941,1/18/2016,426,47.45,31.79,20213.70,13542.54,6671.16 Sub-Saharan Africa,Ethiopia,Beverages,Online,H,7/16/2011,887014520,8/26/2011,6163,47.45,31.79,292434.35,195921.77,96512.58 Asia,Kyrgyzstan,Office Supplies,Online,L,10/22/2011,646586024,11/21/2011,8028,651.21,524.96,5227913.88,4214378.88,1013535.00 Europe,Greece,Office Supplies,Online,M,8/1/2015,744055783,9/18/2015,1496,651.21,524.96,974210.16,785340.16,188870.00 Europe,Ukraine,Baby Food,Offline,C,6/9/2011,304472625,6/24/2011,9071,255.28,159.42,2315644.88,1446098.82,869546.06 Middle East and North Africa,United Arab Emirates,Clothes,Online,H,9/22/2011,773197877,10/9/2011,5289,109.28,35.84,577981.92,189557.76,388424.16 Sub-Saharan Africa,Ethiopia,Clothes,Online,C,12/7/2010,965905368,1/1/2011,1718,109.28,35.84,187743.04,61573.12,126169.92 Australia and Oceania,Tuvalu,Meat,Online,C,3/10/2012,218581426,4/3/2012,1956,421.89,364.69,825216.84,713333.64,111883.20 Europe,Moldova ,Snacks,Offline,M,11/22/2015,637524878,1/1/2016,6634,152.58,97.44,1012215.72,646416.96,365798.76 Europe,Georgia,Cosmetics,Online,M,12/8/2015,349347054,12/16/2015,8412,437.20,263.33,3677726.40,2215131.96,1462594.44 Europe,Serbia,Baby Food,Offline,M,1/26/2011,250971782,1/31/2011,6982,255.28,159.42,1782364.96,1113070.44,669294.52 Europe,Liechtenstein,Clothes,Offline,C,4/2/2016,859635388,4/21/2016,4069,109.28,35.84,444660.32,145832.96,298827.36 Asia,Nepal,Clothes,Offline,H,6/4/2013,962886703,7/2/2013,8428,109.28,35.84,921011.84,302059.52,618952.32 Europe,Moldova ,Cosmetics,Online,C,11/21/2015,768587052,12/12/2015,843,437.20,263.33,368559.60,221987.19,146572.41 Sub-Saharan Africa,Burkina Faso,Vegetables,Online,H,7/4/2011,554910266,8/1/2011,9134,154.06,90.93,1407184.04,830554.62,576629.42 Australia and Oceania,Tuvalu,Cosmetics,Online,C,12/2/2011,220342671,1/11/2012,3148,437.20,263.33,1376305.60,828962.84,547342.76 Sub-Saharan Africa,Zimbabwe,Snacks,Online,M,11/26/2010,633683097,1/3/2011,9765,152.58,97.44,1489943.70,951501.60,538442.10 Sub-Saharan Africa,Swaziland,Cosmetics,Offline,L,11/16/2010,484042870,11/30/2010,7897,437.20,263.33,3452568.40,2079517.01,1373051.39 Sub-Saharan Africa,Equatorial Guinea,Baby Food,Offline,L,7/12/2011,330845820,7/13/2011,3485,255.28,159.42,889650.80,555578.70,334072.10 Middle East and North Africa,Iran,Cosmetics,Online,L,8/14/2013,353828275,9/28/2013,4504,437.20,263.33,1969148.80,1186038.32,783110.48 Europe,Bulgaria,Office Supplies,Online,H,3/9/2015,803039062,4/5/2015,5958,651.21,524.96,3879909.18,3127711.68,752197.50 Asia,Vietnam,Fruits,Online,L,4/30/2015,648839509,6/14/2015,4884,9.33,6.92,45567.72,33797.28,11770.44 Asia,Kyrgyzstan,Vegetables,Offline,M,6/5/2010,731903445,7/8/2010,5349,154.06,90.93,824066.94,486384.57,337682.37 Europe,France,Beverages,Online,H,1/27/2013,613217198,3/9/2013,3451,47.45,31.79,163749.95,109707.29,54042.66 Sub-Saharan Africa,Botswana,Household,Online,M,6/2/2010,824079596,6/4/2010,2320,668.27,502.54,1550386.40,1165892.80,384493.60 Central America and the Caribbean,El Salvador,Household,Offline,H,5/24/2013,616101968,6/13/2013,7118,668.27,502.54,4756745.86,3577079.72,1179666.14 Asia,Laos,Vegetables,Offline,C,1/25/2015,211208140,2/25/2015,37,154.06,90.93,5700.22,3364.41,2335.81 Australia and Oceania,Fiji,Household,Online,L,2/22/2017,351634442,3/30/2017,5300,668.27,502.54,3541831.00,2663462.00,878369.00 Europe,Macedonia,Snacks,Online,H,1/14/2011,949929702,2/7/2011,4163,152.58,97.44,635190.54,405642.72,229547.82 Central America and the Caribbean,Trinidad and Tobago,Household,Online,H,12/8/2011,638955247,1/27/2012,9911,668.27,502.54,6623223.97,4980673.94,1642550.03 Middle East and North Africa,Algeria,Vegetables,Online,L,3/2/2017,821884906,3/4/2017,2863,154.06,90.93,441073.78,260332.59,180741.19 Europe,Cyprus,Meat,Online,C,7/20/2017,722205007,8/27/2017,5365,421.89,364.69,2263439.85,1956561.85,306878.00 Australia and Oceania,Federated States of Micronesia,Baby Food,Online,M,4/30/2016,533714377,6/18/2016,6799,255.28,159.42,1735648.72,1083896.58,651752.14 Sub-Saharan Africa,Cote d'Ivoire,Meat,Online,M,3/29/2010,970524346,5/8/2010,8576,421.89,364.69,3618128.64,3127581.44,490547.20 Sub-Saharan Africa,Cote d'Ivoire,Personal Care,Online,H,1/5/2016,117058742,1/11/2016,9138,81.73,56.67,746848.74,517850.46,228998.28 Australia and Oceania,Australia,Clothes,Online,M,7/31/2013,178053891,8/5/2013,8958,109.28,35.84,978930.24,321054.72,657875.52 Sub-Saharan Africa,Benin,Personal Care,Offline,H,6/11/2010,728558623,7/14/2010,5542,81.73,56.67,452947.66,314065.14,138882.52 Middle East and North Africa,Morocco,Fruits,Offline,M,3/5/2015,963934266,4/23/2015,8425,9.33,6.92,78605.25,58301.00,20304.25 Middle East and North Africa,Kuwait,Fruits,Online,H,11/24/2010,149854648,1/13/2011,4175,9.33,6.92,38952.75,28891.00,10061.75 Middle East and North Africa,Afghanistan,Household,Offline,L,2/4/2012,772306096,3/21/2012,1391,668.27,502.54,929563.57,699033.14,230530.43 Australia and Oceania,Tonga,Household,Offline,L,5/22/2015,887587440,6/28/2015,5702,668.27,502.54,3810475.54,2865483.08,944992.46 Europe,Vatican City,Vegetables,Offline,L,11/18/2010,872310006,12/22/2010,4770,154.06,90.93,734866.20,433736.10,301130.10 Australia and Oceania,Palau,Personal Care,Online,L,4/2/2016,273397624,5/12/2016,3287,81.73,56.67,268646.51,186274.29,82372.22 Europe,Liechtenstein,Office Supplies,Offline,C,5/21/2012,958086621,6/6/2012,7977,651.21,524.96,5194702.17,4187605.92,1007096.25 Europe,Bulgaria,Personal Care,Offline,L,4/21/2015,363925826,5/7/2015,2594,81.73,56.67,212007.62,147001.98,65005.64 Asia,Malaysia,Clothes,Offline,M,10/18/2011,948776566,10/22/2011,2925,109.28,35.84,319644.00,104832.00,214812.00 Europe,Netherlands,Snacks,Online,C,3/25/2016,740812671,4/29/2016,1787,152.58,97.44,272660.46,174125.28,98535.18 Asia,Myanmar,Cosmetics,Offline,H,9/30/2013,988520467,10/25/2013,4028,437.20,263.33,1761041.60,1060693.24,700348.36 Asia,Kazakhstan,Office Supplies,Online,M,1/20/2017,310698783,2/19/2017,1529,651.21,524.96,995700.09,802663.84,193036.25 Middle East and North Africa,Tunisia ,Beverages,Online,L,3/17/2017,546458947,4/3/2017,8201,47.45,31.79,389137.45,260709.79,128427.66 Asia,Indonesia,Cereal,Offline,C,2/11/2010,905224788,3/27/2010,4986,205.70,117.11,1025620.20,583910.46,441709.74 Central America and the Caribbean,Haiti,Cosmetics,Online,L,6/18/2015,216732633,7/19/2015,4857,437.20,263.33,2123480.40,1278993.81,844486.59 Central America and the Caribbean,Dominican Republic,Office Supplies,Offline,C,5/11/2012,981031310,6/15/2012,7820,651.21,524.96,5092462.20,4105187.20,987275.00 Europe,Russia,Beverages,Online,L,4/6/2011,818482148,5/6/2011,5911,47.45,31.79,280476.95,187910.69,92566.26 Middle East and North Africa,Afghanistan,Clothes,Online,L,5/4/2012,119758975,5/27/2012,8197,109.28,35.84,895768.16,293780.48,601987.68 Europe,Italy,Clothes,Offline,H,10/28/2016,695848119,12/7/2016,5776,109.28,35.84,631201.28,207011.84,424189.44 Europe,Greece,Beverages,Offline,C,8/27/2015,828048408,10/7/2015,6780,47.45,31.79,321711.00,215536.20,106174.80 Middle East and North Africa,Afghanistan,Baby Food,Offline,H,12/21/2015,217971169,12/21/2015,1368,255.28,159.42,349223.04,218086.56,131136.48 Middle East and North Africa,Iraq,Snacks,Offline,C,8/18/2014,437540233,9/19/2014,6733,152.58,97.44,1027321.14,656063.52,371257.62 Sub-Saharan Africa,Mauritania,Beverages,Online,L,2/15/2017,878991925,2/26/2017,2099,47.45,31.79,99597.55,66727.21,32870.34 Sub-Saharan Africa,Guinea,Baby Food,Offline,C,1/29/2011,104875075,2/1/2011,3720,255.28,159.42,949641.60,593042.40,356599.20 Sub-Saharan Africa,Burkina Faso,Office Supplies,Online,M,6/22/2015,798051011,7/28/2015,9883,651.21,524.96,6435908.43,5188179.68,1247728.75 Central America and the Caribbean,Antigua and Barbuda ,Clothes,Offline,H,4/8/2016,311693561,5/4/2016,5906,109.28,35.84,645407.68,211671.04,433736.64 Europe,Belarus,Cereal,Offline,M,8/27/2015,119289052,8/28/2015,9136,205.70,117.11,1879275.20,1069916.96,809358.24 Middle East and North Africa,Libya,Baby Food,Online,L,1/27/2013,864636313,2/28/2013,3954,255.28,159.42,1009377.12,630346.68,379030.44 Europe,Romania,Office Supplies,Offline,H,8/18/2016,111846673,10/3/2016,6771,651.21,524.96,4409342.91,3554504.16,854838.75 Sub-Saharan Africa,Angola,Personal Care,Offline,H,7/20/2016,895343959,8/3/2016,1029,81.73,56.67,84100.17,58313.43,25786.74 Middle East and North Africa,Syria,Office Supplies,Online,M,9/12/2011,469864499,10/2/2011,2202,651.21,524.96,1433964.42,1155961.92,278002.50 Asia,Mongolia,Baby Food,Offline,H,5/10/2013,660457122,6/12/2013,2794,255.28,159.42,713252.32,445419.48,267832.84 Australia and Oceania,East Timor,Cereal,Online,C,3/3/2011,212483155,4/9/2011,7342,205.70,117.11,1510249.40,859821.62,650427.78 Sub-Saharan Africa,Zambia,Personal Care,Offline,H,10/6/2014,641616427,10/11/2014,7414,81.73,56.67,605946.22,420151.38,185794.84 Asia,Laos,Cereal,Offline,L,2/13/2012,383843266,3/7/2012,6607,205.70,117.11,1359059.90,773745.77,585314.13 Sub-Saharan Africa,Mauritania,Vegetables,Online,L,3/20/2011,645462501,4/4/2011,5552,154.06,90.93,855341.12,504843.36,350497.76 Europe,Portugal,Clothes,Online,H,7/7/2013,453085458,7/24/2013,6910,109.28,35.84,755124.80,247654.40,507470.40 Sub-Saharan Africa,Republic of the Congo,Baby Food,Online,C,3/13/2010,703635966,3/19/2010,374,255.28,159.42,95474.72,59623.08,35851.64 Middle East and North Africa,Bahrain,Vegetables,Online,H,3/19/2016,114350354,4/8/2016,7666,154.06,90.93,1181023.96,697069.38,483954.58 Sub-Saharan Africa,Madagascar,Cosmetics,Online,C,7/6/2013,172777450,8/11/2013,7542,437.20,263.33,3297362.40,1986034.86,1311327.54 Europe,San Marino,Household,Offline,H,5/23/2015,186778581,7/7/2015,788,668.27,502.54,526596.76,396001.52,130595.24 Europe,San Marino,Cereal,Offline,M,4/14/2017,434527575,5/9/2017,5221,205.70,117.11,1073959.70,611431.31,462528.39 Australia and Oceania,Federated States of Micronesia,Office Supplies,Offline,C,9/11/2015,814510762,9/28/2015,690,651.21,524.96,449334.90,362222.40,87112.50 Europe,Monaco,Clothes,Offline,H,12/19/2011,395526969,12/22/2011,4074,109.28,35.84,445206.72,146012.16,299194.56 Europe,Ireland,Beverages,Online,H,2/1/2016,566687524,2/28/2016,4286,47.45,31.79,203370.70,136251.94,67118.76 Central America and the Caribbean,Grenada,Baby Food,Offline,C,8/9/2012,987416255,8/27/2012,7267,255.28,159.42,1855119.76,1158505.14,696614.62 Sub-Saharan Africa,Mauritius ,Meat,Online,C,6/4/2017,937449491,6/28/2017,991,421.89,364.69,418092.99,361407.79,56685.20 Asia,Vietnam,Fruits,Offline,M,6/9/2013,666836059,7/5/2013,463,9.33,6.92,4319.79,3203.96,1115.83 Central America and the Caribbean,Costa Rica,Snacks,Offline,C,11/21/2014,945937287,12/12/2014,2719,152.58,97.44,414865.02,264939.36,149925.66 Europe,Slovenia,Beverages,Offline,L,8/3/2010,815427005,9/18/2010,1826,47.45,31.79,86643.70,58048.54,28595.16 Middle East and North Africa,Israel,Clothes,Offline,M,2/14/2013,736291539,4/2/2013,3883,109.28,35.84,424334.24,139166.72,285167.52 Europe,Czech Republic,Baby Food,Online,M,3/21/2017,339829719,3/31/2017,2020,255.28,159.42,515665.60,322028.40,193637.20 Europe,Romania,Household,Online,M,2/3/2011,677652871,3/12/2011,1398,668.27,502.54,934241.46,702550.92,231690.54 Central America and the Caribbean,Barbados,Cosmetics,Online,H,7/11/2010,171684825,7/25/2010,4210,437.20,263.33,1840612.00,1108619.30,731992.70 Europe,Portugal,Personal Care,Online,H,3/23/2017,464161908,5/6/2017,4678,81.73,56.67,382332.94,265102.26,117230.68 Europe,Italy,Cereal,Online,L,1/10/2015,567632949,1/24/2015,4058,205.70,117.11,834730.60,475232.38,359498.22 Europe,Romania,Meat,Offline,C,7/22/2011,914959275,8/21/2011,5637,421.89,364.69,2378193.93,2055757.53,322436.40 Middle East and North Africa,Oman,Beverages,Offline,L,9/15/2011,209314715,10/16/2011,9731,47.45,31.79,461735.95,309348.49,152387.46 Asia,Japan,Baby Food,Offline,H,11/15/2013,374185597,12/8/2013,8688,255.28,159.42,2217872.64,1385040.96,832831.68 Sub-Saharan Africa,Djibouti,Clothes,Online,C,9/21/2013,703370749,11/7/2013,1890,109.28,35.84,206539.20,67737.60,138801.60 Australia and Oceania,Solomon Islands,Personal Care,Offline,M,7/27/2015,110981500,8/5/2015,747,81.73,56.67,61052.31,42332.49,18719.82 Sub-Saharan Africa,Senegal,Vegetables,Offline,H,6/3/2013,281441676,6/8/2013,3701,154.06,90.93,570176.06,336531.93,233644.13 Europe,Denmark,Vegetables,Online,C,7/3/2017,719487607,8/14/2017,1226,154.06,90.93,188877.56,111480.18,77397.38 Sub-Saharan Africa,Guinea,Fruits,Offline,H,8/7/2012,100168120,8/21/2012,828,9.33,6.92,7725.24,5729.76,1995.48 Europe,Lithuania,Fruits,Online,L,11/8/2014,318844544,12/11/2014,2041,9.33,6.92,19042.53,14123.72,4918.81 Sub-Saharan Africa,Tanzania,Clothes,Offline,C,12/17/2014,641190707,1/30/2015,1434,109.28,35.84,156707.52,51394.56,105312.96 Sub-Saharan Africa,Gabon,Snacks,Online,C,4/6/2012,853192937,4/14/2012,7605,152.58,97.44,1160370.90,741031.20,419339.70 Sub-Saharan Africa,Uganda,Clothes,Offline,M,12/12/2010,811150062,1/7/2011,6184,109.28,35.84,675787.52,221634.56,454152.96 Middle East and North Africa,Bahrain,Personal Care,Offline,H,4/8/2016,891673409,4/15/2016,4832,81.73,56.67,394919.36,273829.44,121089.92 Sub-Saharan Africa,Djibouti,Fruits,Online,C,8/13/2015,641686809,8/17/2015,8241,9.33,6.92,76888.53,57027.72,19860.81 Sub-Saharan Africa,Cape Verde,Personal Care,Online,L,8/1/2012,128426587,9/1/2012,3136,81.73,56.67,256305.28,177717.12,78588.16 North America,Mexico,Personal Care,Online,H,8/17/2015,389441573,9/25/2015,3271,81.73,56.67,267338.83,185367.57,81971.26 Central America and the Caribbean,Saint Vincent and the Grenadines,Snacks,Online,M,7/14/2011,282593095,8/25/2011,4431,152.58,97.44,676081.98,431756.64,244325.34 Sub-Saharan Africa,Guinea-Bissau,Cosmetics,Online,C,9/3/2014,536054980,10/19/2014,9436,437.20,263.33,4125419.20,2484781.88,1640637.32 Central America and the Caribbean,Costa Rica,Beverages,Online,L,3/9/2010,598313558,3/26/2010,3132,47.45,31.79,148613.40,99566.28,49047.12 Asia,Nepal,Beverages,Offline,L,10/12/2010,888167655,10/22/2010,7401,47.45,31.79,351177.45,235277.79,115899.66 Europe,Albania,Vegetables,Online,C,1/31/2015,544728600,3/16/2015,6153,154.06,90.93,947931.18,559492.29,388438.89 Europe,Moldova ,Household,Online,C,6/6/2011,577420222,7/1/2011,330,668.27,502.54,220529.10,165838.20,54690.90 Sub-Saharan Africa,Liberia,Cereal,Online,M,12/7/2011,715978848,12/31/2011,2907,205.70,117.11,597969.90,340438.77,257531.13 Australia and Oceania,New Zealand,Beverages,Online,L,11/6/2010,760453307,12/25/2010,3887,47.45,31.79,184438.15,123567.73,60870.42 Europe,Monaco,Cosmetics,Offline,M,1/23/2011,131204926,2/13/2011,5308,437.20,263.33,2320657.60,1397755.64,922901.96 Asia,Sri Lanka,Beverages,Online,M,9/26/2012,118907535,9/26/2012,6237,47.45,31.79,295945.65,198274.23,97671.42 Sub-Saharan Africa,Gabon,Cosmetics,Online,C,2/10/2017,734547460,2/20/2017,7771,437.20,263.33,3397481.20,2046337.43,1351143.77 North America,United States of America,Snacks,Online,L,2/12/2015,259423530,2/24/2015,8042,152.58,97.44,1227048.36,783612.48,443435.88 North America,United States of America,Personal Care,Online,H,11/26/2013,195147073,12/26/2013,7210,81.73,56.67,589273.30,408590.70,180682.60 Middle East and North Africa,Morocco,Fruits,Online,C,4/28/2010,313641917,5/27/2010,2468,9.33,6.92,23026.44,17078.56,5947.88 Sub-Saharan Africa,South Africa,Meat,Offline,L,6/10/2017,907144391,7/13/2017,3039,421.89,364.69,1282123.71,1108292.91,173830.80 Middle East and North Africa,Yemen,Snacks,Online,H,4/22/2015,538203322,4/29/2015,5178,152.58,97.44,790059.24,504544.32,285514.92 Asia,China,Snacks,Offline,C,4/30/2015,989680039,5/31/2015,7171,152.58,97.44,1094151.18,698742.24,395408.94 Middle East and North Africa,Afghanistan,Snacks,Online,C,1/17/2011,514748370,2/5/2011,4336,152.58,97.44,661586.88,422499.84,239087.04 North America,United States of America,Fruits,Online,M,3/18/2012,586894643,3/18/2012,4022,9.33,6.92,37525.26,27832.24,9693.02 Europe,United Kingdom,Fruits,Online,C,9/15/2010,949917685,10/29/2010,607,9.33,6.92,5663.31,4200.44,1462.87 Middle East and North Africa,Turkey,Cereal,Online,C,8/17/2014,967928826,9/16/2014,504,205.70,117.11,103672.80,59023.44,44649.36 Europe,Cyprus,Beverages,Offline,H,3/13/2014,975351893,4/10/2014,7155,47.45,31.79,339504.75,227457.45,112047.30 Middle East and North Africa,Jordan,Personal Care,Offline,L,11/9/2015,926923215,11/29/2015,6032,81.73,56.67,492995.36,341833.44,151161.92 Sub-Saharan Africa,Republic of the Congo,Fruits,Online,C,10/1/2015,847691619,10/29/2015,9642,9.33,6.92,89959.86,66722.64,23237.22 Central America and the Caribbean,Trinidad and Tobago,Household,Offline,C,1/31/2011,383018434,3/7/2011,2521,668.27,502.54,1684708.67,1266903.34,417805.33 Asia,Uzbekistan,Personal Care,Offline,L,6/29/2011,148577487,7/13/2011,6235,81.73,56.67,509586.55,353337.45,156249.10 Middle East and North Africa,Lebanon,Snacks,Online,L,7/10/2012,380355107,7/10/2012,4383,152.58,97.44,668758.14,427079.52,241678.62 Middle East and North Africa,United Arab Emirates,Baby Food,Online,H,8/2/2014,484650123,8/20/2014,7596,255.28,159.42,1939106.88,1210954.32,728152.56 Central America and the Caribbean,Nicaragua,Household,Online,M,7/27/2011,388073861,7/31/2011,8534,668.27,502.54,5703016.18,4288676.36,1414339.82 Asia,Bhutan,Fruits,Offline,L,5/14/2017,987550151,6/19/2017,6890,9.33,6.92,64283.70,47678.80,16604.90 Australia and Oceania,Tuvalu,Cosmetics,Offline,M,8/24/2016,100315320,10/12/2016,4387,437.20,263.33,1917996.40,1155228.71,762767.69 Central America and the Caribbean,The Bahamas,Snacks,Online,C,1/26/2014,113918197,2/17/2014,9781,152.58,97.44,1492384.98,953060.64,539324.34 Central America and the Caribbean,Dominica,Vegetables,Offline,C,5/14/2015,336220109,6/30/2015,3857,154.06,90.93,594209.42,350717.01,243492.41 Europe,Estonia,Baby Food,Online,C,12/20/2015,145394885,2/8/2016,4432,255.28,159.42,1131400.96,706549.44,424851.52 Australia and Oceania,Palau,Snacks,Offline,H,5/15/2012,339928853,6/7/2012,1356,152.58,97.44,206898.48,132128.64,74769.84 Asia,Cambodia,Snacks,Online,H,7/2/2013,888620841,8/20/2013,1509,152.58,97.44,230243.22,147036.96,83206.26 Australia and Oceania,East Timor,Beverages,Online,C,3/13/2014,480582177,3/31/2014,3801,47.45,31.79,180357.45,120833.79,59523.66 Europe,Vatican City,Cereal,Online,L,2/26/2014,575236690,3/12/2014,4174,205.70,117.11,858591.80,488817.14,369774.66 Europe,Vatican City,Beverages,Offline,M,2/17/2014,452320706,3/20/2014,603,47.45,31.79,28612.35,19169.37,9442.98 Asia,Japan,Vegetables,Offline,C,2/29/2012,361883056,3/3/2012,8093,154.06,90.93,1246807.58,735896.49,510911.09 Asia,Laos,Household,Online,M,12/3/2014,174285066,12/30/2014,3679,668.27,502.54,2458565.33,1848844.66,609720.67 Australia and Oceania,Tonga,Clothes,Online,C,3/22/2011,730200564,4/28/2011,1429,109.28,35.84,156161.12,51215.36,104945.76 Asia,Myanmar,Snacks,Online,L,8/24/2013,690615880,9/24/2013,7441,152.58,97.44,1135347.78,725051.04,410296.74 Asia,Japan,Office Supplies,Offline,C,12/2/2016,586829841,1/17/2017,4845,651.21,524.96,3155112.45,2543431.20,611681.25 Europe,Liechtenstein,Clothes,Offline,C,11/1/2016,570453774,12/2/2016,8803,109.28,35.84,961991.84,315499.52,646492.32 Asia,Tajikistan,Cosmetics,Online,L,1/10/2014,863411509,2/4/2014,1507,437.20,263.33,658860.40,396838.31,262022.09 Asia,North Korea,Household,Offline,C,3/15/2010,407939374,4/13/2010,7181,668.27,502.54,4798846.87,3608739.74,1190107.13 Europe,Macedonia,Meat,Online,L,12/2/2011,916586196,1/4/2012,7079,421.89,364.69,2986559.31,2581640.51,404918.80 Europe,Finland,Office Supplies,Online,H,8/25/2011,122213304,10/3/2011,4487,651.21,524.96,2921979.27,2355495.52,566483.75 Europe,Finland,Personal Care,Offline,C,4/17/2014,327994525,5/25/2014,9724,81.73,56.67,794742.52,551059.08,243683.44 Sub-Saharan Africa,Mozambique,Household,Offline,C,9/1/2010,757416188,10/6/2010,5136,668.27,502.54,3432234.72,2581045.44,851189.28 Central America and the Caribbean,Cuba,Personal Care,Offline,L,8/5/2011,704277122,8/28/2011,106,81.73,56.67,8663.38,6007.02,2656.36 Europe,Belarus,Beverages,Offline,L,10/19/2013,882688653,10/26/2013,6043,47.45,31.79,286740.35,192106.97,94633.38 Asia,North Korea,Fruits,Online,L,4/21/2011,277074611,5/24/2011,1389,9.33,6.92,12959.37,9611.88,3347.49 Sub-Saharan Africa,Mali,Cosmetics,Online,C,4/30/2014,192171323,5/6/2014,6620,437.20,263.33,2894264.00,1743244.60,1151019.40 Australia and Oceania,Fiji,Cereal,Online,M,3/26/2015,203027617,4/19/2015,9239,205.70,117.11,1900462.30,1081979.29,818483.01 Sub-Saharan Africa,Benin,Vegetables,Offline,M,1/3/2015,405004823,2/17/2015,8782,154.06,90.93,1352954.92,798547.26,554407.66 Central America and the Caribbean,Saint Vincent and the Grenadines,Vegetables,Offline,H,12/5/2011,963776767,12/21/2011,1817,154.06,90.93,279927.02,165219.81,114707.21 Europe,Macedonia,Cosmetics,Online,L,11/26/2012,765329778,1/15/2013,6943,437.20,263.33,3035479.60,1828300.19,1207179.41 Sub-Saharan Africa,Sudan,Cereal,Offline,C,7/21/2014,565962684,9/3/2014,9790,205.70,117.11,2013803.00,1146506.90,867296.10 Sub-Saharan Africa,Seychelles ,Baby Food,Online,C,7/23/2014,742286813,8/1/2014,8018,255.28,159.42,2046835.04,1278229.56,768605.48 Central America and the Caribbean,Antigua and Barbuda ,Cereal,Offline,H,6/14/2015,841225993,8/2/2015,6320,205.70,117.11,1300024.00,740135.20,559888.80 Asia,North Korea,Baby Food,Offline,L,4/3/2013,930016553,4/27/2013,1420,255.28,159.42,362497.60,226376.40,136121.20 Sub-Saharan Africa,Nigeria,Snacks,Offline,L,6/3/2016,246207320,7/12/2016,7072,152.58,97.44,1079045.76,689095.68,389950.08 Europe,Austria,Cereal,Offline,C,9/30/2011,347659623,10/7/2011,9063,205.70,117.11,1864259.10,1061367.93,802891.17 Middle East and North Africa,Bahrain,Household,Offline,C,8/4/2013,162547290,9/8/2013,210,668.27,502.54,140336.70,105533.40,34803.30 Asia,Tajikistan,Beverages,Online,L,9/3/2014,939356648,10/10/2014,5362,47.45,31.79,254426.90,170457.98,83968.92 Middle East and North Africa,Libya,Personal Care,Online,M,7/21/2012,396886527,8/8/2012,6398,81.73,56.67,522908.54,362574.66,160333.88 Europe,Georgia,Beverages,Online,M,6/6/2013,374248254,7/25/2013,7230,47.45,31.79,343063.50,229841.70,113221.80 Sub-Saharan Africa,Swaziland,Vegetables,Offline,M,3/19/2013,980865657,4/23/2013,8800,154.06,90.93,1355728.00,800184.00,555544.00 Asia,India,Cosmetics,Online,L,6/13/2016,146475064,7/29/2016,4081,437.20,263.33,1784213.20,1074649.73,709563.47 Europe,Kosovo,Meat,Online,C,5/20/2017,371125304,6/29/2017,3080,421.89,364.69,1299421.20,1123245.20,176176.00 Europe,Portugal,Personal Care,Online,M,5/2/2011,175177705,6/11/2011,7831,81.73,56.67,640027.63,443782.77,196244.86 Asia,Turkmenistan,Vegetables,Online,M,8/10/2013,849306094,8/14/2013,7402,154.06,90.93,1140352.12,673063.86,467288.26 Middle East and North Africa,Israel,Snacks,Online,C,4/19/2010,604496800,4/27/2010,2891,152.58,97.44,441108.78,281699.04,159409.74 Sub-Saharan Africa,Madagascar,Beverages,Offline,C,1/21/2015,422048652,2/1/2015,2430,47.45,31.79,115303.50,77249.70,38053.80 Asia,Cambodia,Vegetables,Offline,H,4/23/2012,903572976,6/1/2012,6178,154.06,90.93,951782.68,561765.54,390017.14 Europe,Belgium,Beverages,Online,H,1/23/2014,920993602,1/27/2014,1328,47.45,31.79,63013.60,42217.12,20796.48 Australia and Oceania,Vanuatu,Cosmetics,Online,H,8/28/2010,766546857,9/30/2010,7104,437.20,263.33,3105868.80,1870696.32,1235172.48 Sub-Saharan Africa,Namibia,Beverages,Online,L,6/7/2012,802781569,7/17/2012,9761,47.45,31.79,463159.45,310302.19,152857.26 Europe,Moldova ,Vegetables,Online,L,8/29/2015,112559068,9/1/2015,7584,154.06,90.93,1168391.04,689613.12,478777.92 Sub-Saharan Africa,Malawi,Cosmetics,Online,C,11/13/2013,549053180,12/23/2013,5892,437.20,263.33,2575982.40,1551540.36,1024442.04 Sub-Saharan Africa,Seychelles ,Meat,Online,L,10/25/2016,885750234,11/21/2016,2032,421.89,364.69,857280.48,741050.08,116230.40 Sub-Saharan Africa,Togo,Clothes,Offline,M,5/19/2016,866449058,6/22/2016,385,109.28,35.84,42072.80,13798.40,28274.40 Asia,Philippines,Baby Food,Offline,L,2/2/2013,755260980,3/16/2013,7362,255.28,159.42,1879371.36,1173650.04,705721.32 Asia,Kazakhstan,Office Supplies,Online,H,4/25/2012,886609828,5/14/2012,6405,651.21,524.96,4171000.05,3362368.80,808631.25 Middle East and North Africa,Kuwait,Beverages,Offline,H,12/1/2012,315231931,1/19/2013,2988,47.45,31.79,141780.60,94988.52,46792.08 Europe,Luxembourg,Household,Offline,C,1/17/2011,866176116,1/18/2011,9616,668.27,502.54,6426084.32,4832424.64,1593659.68 Europe,Netherlands,Vegetables,Offline,M,6/22/2011,384803712,7/3/2011,824,154.06,90.93,126945.44,74926.32,52019.12 Europe,Moldova ,Snacks,Offline,L,4/7/2016,386788547,4/8/2016,8181,152.58,97.44,1248256.98,797156.64,451100.34 Europe,Latvia,Clothes,Offline,H,5/27/2013,208116948,6/2/2013,5285,109.28,35.84,577544.80,189414.40,388130.40 Sub-Saharan Africa,Guinea,Beverages,Offline,H,11/8/2010,155087745,12/28/2010,2765,47.45,31.79,131199.25,87899.35,43299.90 Sub-Saharan Africa,Seychelles ,Household,Online,C,2/3/2010,154312264,2/23/2010,3283,668.27,502.54,2193930.41,1649838.82,544091.59 Europe,Greece,Household,Online,L,6/9/2017,202714335,7/22/2017,6531,668.27,502.54,4364471.37,3282088.74,1082382.63 Sub-Saharan Africa,South Sudan,Cosmetics,Online,H,7/21/2017,817530286,7/27/2017,4234,437.20,263.33,1851104.80,1114939.22,736165.58 Europe,Italy,Household,Offline,M,2/7/2015,786308944,3/16/2015,5145,668.27,502.54,3438249.15,2585568.30,852680.85 Sub-Saharan Africa,The Gambia,Cosmetics,Online,H,10/25/2015,316911637,11/20/2015,51,437.20,263.33,22297.20,13429.83,8867.37 Middle East and North Africa,United Arab Emirates,Cereal,Offline,L,2/14/2015,587512195,2/16/2015,6769,205.70,117.11,1392383.30,792717.59,599665.71 Asia,Kazakhstan,Office Supplies,Offline,L,2/3/2017,596596944,2/10/2017,5148,651.21,524.96,3352429.08,2702494.08,649935.00 Sub-Saharan Africa,Angola,Cereal,Online,M,7/6/2015,312964713,7/27/2015,2068,205.70,117.11,425387.60,242183.48,183204.12 North America,Mexico,Cosmetics,Offline,H,10/12/2012,225726830,11/18/2012,6440,437.20,263.33,2815568.00,1695845.20,1119722.80 Europe,Ukraine,Office Supplies,Online,L,3/6/2016,894307124,4/12/2016,4206,651.21,524.96,2738989.26,2207981.76,531007.50 Europe,Belgium,Personal Care,Offline,M,4/24/2011,698441922,5/10/2011,3341,81.73,56.67,273059.93,189334.47,83725.46 Asia,Bangladesh,Meat,Offline,L,5/12/2011,788180053,5/20/2011,8848,421.89,364.69,3732882.72,3226777.12,506105.60 Central America and the Caribbean,Honduras,Household,Online,H,6/7/2015,133882844,6/17/2015,7764,668.27,502.54,5188448.28,3901720.56,1286727.72 North America,Mexico,Clothes,Online,L,4/29/2012,476224124,5/4/2012,4156,109.28,35.84,454167.68,148951.04,305216.64 Asia,North Korea,Cereal,Offline,M,8/22/2014,476190221,10/4/2014,4123,205.70,117.11,848101.10,482844.53,365256.57 Sub-Saharan Africa,Mauritius ,Cereal,Offline,L,2/4/2017,665079963,2/13/2017,795,205.70,117.11,163531.50,93102.45,70429.05 Europe,Latvia,Cereal,Offline,C,6/24/2015,294504678,6/27/2015,9334,205.70,117.11,1920003.80,1093104.74,826899.06 Sub-Saharan Africa,Ethiopia,Office Supplies,Online,L,6/6/2010,486388194,6/20/2010,1930,651.21,524.96,1256835.30,1013172.80,243662.50 Sub-Saharan Africa,Chad,Baby Food,Online,C,3/25/2011,182966840,5/8/2011,2809,255.28,159.42,717081.52,447810.78,269270.74 Europe,Switzerland,Cereal,Online,L,11/8/2016,196789443,12/7/2016,3224,205.70,117.11,663176.80,377562.64,285614.16 Europe,Andorra,Personal Care,Offline,M,3/19/2012,960717332,4/14/2012,6463,81.73,56.67,528220.99,366258.21,161962.78 North America,Canada,Meat,Offline,L,5/8/2017,277924335,5/31/2017,2842,421.89,364.69,1199011.38,1036448.98,162562.40 Sub-Saharan Africa,Benin,Personal Care,Online,L,7/5/2015,971896779,7/31/2015,4709,81.73,56.67,384866.57,266859.03,118007.54 Europe,Slovakia,Household,Online,C,7/4/2017,536433494,8/1/2017,1446,668.27,502.54,966318.42,726672.84,239645.58 Sub-Saharan Africa,Botswana,Vegetables,Offline,C,7/2/2012,585645806,8/5/2012,4463,154.06,90.93,687569.78,405820.59,281749.19 Europe,Bosnia and Herzegovina,Vegetables,Offline,L,3/26/2017,103957545,5/3/2017,2203,154.06,90.93,339394.18,200318.79,139075.39 Europe,France,Cereal,Online,C,8/17/2011,396105039,10/5/2011,5138,205.70,117.11,1056886.60,601711.18,455175.42 Middle East and North Africa,Azerbaijan,Cereal,Online,H,10/5/2010,137137115,10/16/2010,775,205.70,117.11,159417.50,90760.25,68657.25 Australia and Oceania,Tonga,Household,Offline,L,8/19/2015,322415101,9/23/2015,8648,668.27,502.54,5779198.96,4345965.92,1433233.04 Europe,Russia,Cosmetics,Offline,L,12/8/2016,217612826,12/25/2016,5326,437.20,263.33,2328527.20,1402495.58,926031.62 Middle East and North Africa,Afghanistan,Household,Offline,C,1/7/2014,508716619,1/26/2014,9407,668.27,502.54,6286415.89,4727393.78,1559022.11 Australia and Oceania,East Timor,Meat,Online,M,1/22/2011,152025306,3/2/2011,6521,421.89,364.69,2751144.69,2378143.49,373001.20 Central America and the Caribbean,Jamaica,Household,Online,H,4/27/2013,424150216,6/5/2013,4329,668.27,502.54,2892940.83,2175495.66,717445.17 Europe,Montenegro,Cereal,Offline,C,10/4/2015,872015178,10/23/2015,7524,205.70,117.11,1547686.80,881135.64,666551.16 Europe,Russia,Household,Online,H,5/26/2014,662856519,7/10/2014,2829,668.27,502.54,1890535.83,1421685.66,468850.17 Middle East and North Africa,Kuwait,Fruits,Online,C,2/12/2010,834223067,3/1/2010,3999,9.33,6.92,37310.67,27673.08,9637.59 Australia and Oceania,Tuvalu,Personal Care,Online,L,6/6/2012,243976151,6/7/2012,6820,81.73,56.67,557398.60,386489.40,170909.20 Central America and the Caribbean,Honduras,Vegetables,Online,M,12/25/2012,520289599,12/26/2012,4109,154.06,90.93,633032.54,373631.37,259401.17 Sub-Saharan Africa,Djibouti,Cereal,Offline,C,1/23/2012,211649739,2/27/2012,716,205.70,117.11,147281.20,83850.76,63430.44 Europe,Ireland,Office Supplies,Offline,M,10/19/2014,636855399,10/24/2014,8520,651.21,524.96,5548309.20,4472659.20,1075650.00 Europe,Spain,Household,Online,H,4/2/2012,935017907,5/4/2012,1432,668.27,502.54,956962.64,719637.28,237325.36 Europe,Lithuania,Fruits,Online,C,6/23/2015,315561091,7/15/2015,394,9.33,6.92,3676.02,2726.48,949.54 Europe,Denmark,Office Supplies,Online,H,11/12/2013,308221280,12/27/2013,8381,651.21,524.96,5457791.01,4399689.76,1058101.25 Sub-Saharan Africa,South Sudan,Vegetables,Offline,H,10/25/2016,713047301,11/3/2016,5397,154.06,90.93,831461.82,490749.21,340712.61 North America,United States of America,Cosmetics,Offline,C,1/28/2012,950400483,3/5/2012,3478,437.20,263.33,1520581.60,915861.74,604719.86 Middle East and North Africa,Oman,Baby Food,Online,L,12/14/2014,510954654,1/21/2015,1691,255.28,159.42,431678.48,269579.22,162099.26 Sub-Saharan Africa,Burundi,Household,Offline,H,7/13/2011,305696141,8/17/2011,1136,668.27,502.54,759154.72,570885.44,188269.28 Asia,Singapore,Cosmetics,Online,M,6/20/2015,415923774,7/29/2015,9942,437.20,263.33,4346642.40,2618026.86,1728615.54 North America,Mexico,Fruits,Online,L,3/11/2011,543248879,4/5/2011,8270,9.33,6.92,77159.10,57228.40,19930.70 Europe,Poland,Household,Online,C,9/14/2010,459595286,9/21/2010,3313,668.27,502.54,2213978.51,1664915.02,549063.49 Middle East and North Africa,Iraq,Cereal,Offline,C,12/2/2011,457199323,12/13/2011,4294,205.70,117.11,883275.80,502870.34,380405.46 Europe,Poland,Cereal,Offline,L,1/13/2010,898609817,1/13/2010,7469,205.70,117.11,1536373.30,874694.59,661678.71 Sub-Saharan Africa,Tanzania,Cereal,Offline,L,6/18/2016,866688096,6/22/2016,1122,205.70,117.11,230795.40,131397.42,99397.98 Europe,United Kingdom,Household,Offline,H,3/1/2017,414607989,4/9/2017,572,668.27,502.54,382250.44,287452.88,94797.56 Middle East and North Africa,Somalia,Baby Food,Offline,H,4/27/2014,115855824,5/29/2014,3168,255.28,159.42,808727.04,505042.56,303684.48 Europe,Finland,Office Supplies,Offline,H,12/17/2014,614230430,12/19/2014,3289,651.21,524.96,2141829.69,1726593.44,415236.25 Asia,Brunei,Cereal,Online,L,1/12/2012,373843133,2/13/2012,7346,205.70,117.11,1511072.20,860290.06,650782.14 Sub-Saharan Africa,Namibia,Cereal,Offline,L,11/28/2010,629117763,1/6/2011,8781,205.70,117.11,1806251.70,1028342.91,777908.79 Middle East and North Africa,United Arab Emirates,Meat,Offline,H,6/15/2010,434790647,6/20/2010,3069,421.89,364.69,1294780.41,1119233.61,175546.80 Middle East and North Africa,Egypt,Vegetables,Offline,H,5/21/2014,715910613,5/24/2014,2714,154.06,90.93,418118.84,246784.02,171334.82 Europe,Belarus,Fruits,Offline,H,5/2/2012,217838990,5/18/2012,2253,9.33,6.92,21020.49,15590.76,5429.73 Sub-Saharan Africa,Kenya,Fruits,Offline,L,12/10/2013,456249606,12/26/2013,3252,9.33,6.92,30341.16,22503.84,7837.32 Central America and the Caribbean,Trinidad and Tobago,Beverages,Online,C,10/2/2014,767128789,11/11/2014,9311,47.45,31.79,441806.95,295996.69,145810.26 Europe,France,Baby Food,Online,M,3/4/2015,556775367,3/13/2015,1059,255.28,159.42,270341.52,168825.78,101515.74 Middle East and North Africa,Algeria,Beverages,Offline,L,8/31/2016,651800668,9/14/2016,1157,47.45,31.79,54899.65,36781.03,18118.62 Sub-Saharan Africa,Lesotho,Fruits,Offline,H,5/30/2010,149128520,6/27/2010,9298,9.33,6.92,86750.34,64342.16,22408.18 Sub-Saharan Africa,Namibia,Vegetables,Offline,H,5/13/2011,465995252,6/23/2011,7205,154.06,90.93,1110002.30,655150.65,454851.65 Europe,Andorra,Household,Offline,H,8/10/2016,389949691,9/9/2016,3634,668.27,502.54,2428493.18,1826230.36,602262.82 Australia and Oceania,Tuvalu,Fruits,Online,M,9/26/2016,128853166,10/30/2016,9370,9.33,6.92,87422.10,64840.40,22581.70 Middle East and North Africa,Syria,Office Supplies,Offline,C,10/1/2014,860879504,11/3/2014,2231,651.21,524.96,1452849.51,1171185.76,281663.75 Middle East and North Africa,Israel,Cosmetics,Online,M,9/19/2014,684515035,10/8/2014,2065,437.20,263.33,902818.00,543776.45,359041.55 Europe,Greece,Personal Care,Offline,H,6/2/2010,468558585,6/23/2010,5753,81.73,56.67,470192.69,326022.51,144170.18 Middle East and North Africa,Oman,Meat,Offline,L,11/3/2011,702121484,12/7/2011,2205,421.89,364.69,930267.45,804141.45,126126.00 Central America and the Caribbean,Belize,Beverages,Offline,H,2/7/2011,144627559,3/18/2011,7363,47.45,31.79,349374.35,234069.77,115304.58 Asia,Turkmenistan,Office Supplies,Online,L,7/15/2016,775813138,8/14/2016,9203,651.21,524.96,5993085.63,4831206.88,1161878.75 Asia,China,Beverages,Offline,L,1/13/2011,145727050,2/25/2011,2727,47.45,31.79,129396.15,86691.33,42704.82 Middle East and North Africa,Saudi Arabia,Beverages,Online,H,5/30/2016,824730622,6/20/2016,4973,47.45,31.79,235968.85,158091.67,77877.18 Middle East and North Africa,Azerbaijan,Baby Food,Offline,L,11/27/2013,953497684,11/29/2013,8,255.28,159.42,2042.24,1275.36,766.88 Asia,Maldives,Meat,Online,M,2/10/2016,993014562,3/14/2016,3931,421.89,364.69,1658449.59,1433596.39,224853.20 Central America and the Caribbean,Trinidad and Tobago,Baby Food,Online,L,3/4/2010,574580085,3/4/2010,9870,255.28,159.42,2519613.60,1573475.40,946138.20 Europe,Poland,Household,Offline,C,8/6/2014,749805581,8/10/2014,2989,668.27,502.54,1997459.03,1502092.06,495366.97 Europe,Moldova ,Snacks,Online,C,11/18/2014,840614879,12/20/2014,5478,152.58,97.44,835833.24,533776.32,302056.92 Europe,Malta,Meat,Offline,H,9/22/2012,689244306,10/28/2012,1561,421.89,364.69,658570.29,569281.09,89289.20 Sub-Saharan Africa,Benin,Beverages,Offline,H,9/11/2014,208242690,9/15/2014,2494,47.45,31.79,118340.30,79284.26,39056.04 Europe,Andorra,Beverages,Online,H,4/3/2013,730471360,5/14/2013,1563,47.45,31.79,74164.35,49687.77,24476.58 Sub-Saharan Africa,Kenya,Personal Care,Online,M,4/23/2013,959104144,5/29/2013,9085,81.73,56.67,742517.05,514846.95,227670.10 Central America and the Caribbean,Costa Rica,Household,Offline,C,4/2/2013,117627370,5/17/2013,7408,668.27,502.54,4950544.16,3722816.32,1227727.84 Europe,Portugal,Beverages,Offline,M,4/26/2016,199839866,5/6/2016,5912,47.45,31.79,280524.40,187942.48,92581.92 Asia,Taiwan,Baby Food,Online,C,9/6/2011,119852960,10/14/2011,6009,255.28,159.42,1533977.52,957954.78,576022.74 Central America and the Caribbean,Jamaica,Household,Offline,L,1/23/2016,662090480,2/13/2016,6141,668.27,502.54,4103846.07,3086098.14,1017747.93 Australia and Oceania,Federated States of Micronesia,Fruits,Offline,L,12/20/2016,431288754,1/8/2017,6781,9.33,6.92,63266.73,46924.52,16342.21 Europe,Netherlands,Vegetables,Online,C,5/4/2014,802496612,5/31/2014,5435,154.06,90.93,837316.10,494204.55,343111.55 Europe,Hungary,Cosmetics,Online,C,9/24/2016,971075379,9/27/2016,1639,437.20,263.33,716570.80,431597.87,284972.93 Europe,Germany,Cosmetics,Offline,L,11/7/2014,202698886,12/24/2014,1960,437.20,263.33,856912.00,516126.80,340785.20 Australia and Oceania,Kiribati,Office Supplies,Offline,H,8/9/2015,983353459,8/25/2015,4996,651.21,524.96,3253445.16,2622700.16,630745.00 Asia,India,Cosmetics,Online,H,8/12/2015,469337928,8/24/2015,6377,437.20,263.33,2788024.40,1679255.41,1108768.99 Europe,Norway,Office Supplies,Offline,L,7/22/2012,837263619,9/7/2012,3766,651.21,524.96,2452456.86,1976999.36,475457.50 Europe,Kosovo,Fruits,Online,H,7/16/2016,734054362,8/4/2016,1853,9.33,6.92,17288.49,12822.76,4465.73 Australia and Oceania,Nauru,Office Supplies,Offline,L,1/6/2016,226946485,2/20/2016,7363,651.21,524.96,4794859.23,3865280.48,929578.75 Central America and the Caribbean,Honduras,Snacks,Offline,H,11/11/2011,353488814,12/5/2011,4050,152.58,97.44,617949.00,394632.00,223317.00 Sub-Saharan Africa,The Gambia,Fruits,Online,L,8/3/2013,871542680,8/27/2013,7701,9.33,6.92,71850.33,53290.92,18559.41 Asia,Uzbekistan,Fruits,Offline,H,11/5/2012,709281909,12/22/2012,1134,9.33,6.92,10580.22,7847.28,2732.94 Europe,Lithuania,Meat,Online,M,6/29/2017,215192830,7/9/2017,9195,421.89,364.69,3879278.55,3353324.55,525954.00 Central America and the Caribbean,Honduras,Meat,Offline,L,7/8/2017,708074271,7/28/2017,3767,421.89,364.69,1589259.63,1373787.23,215472.40 Sub-Saharan Africa,Chad,Household,Online,M,7/19/2011,427037560,8/31/2011,8759,668.27,502.54,5853376.93,4401747.86,1451629.07 Australia and Oceania,Tuvalu,Vegetables,Offline,C,8/20/2010,381506526,9/27/2010,5114,154.06,90.93,787862.84,465016.02,322846.82 Sub-Saharan Africa,Central African Republic,Snacks,Online,H,10/3/2011,301217496,10/26/2011,5806,152.58,97.44,885879.48,565736.64,320142.84 Europe,Monaco,Vegetables,Offline,C,9/22/2016,886219298,9/29/2016,839,154.06,90.93,129256.34,76290.27,52966.07 Sub-Saharan Africa,Cape Verde,Beverages,Online,L,4/17/2013,656873261,4/29/2013,2250,47.45,31.79,106762.50,71527.50,35235.00 Europe,Hungary,Clothes,Offline,M,10/7/2016,903853213,11/25/2016,9106,109.28,35.84,995103.68,326359.04,668744.64 Middle East and North Africa,Somalia,Household,Offline,C,3/27/2013,738145482,5/5/2013,2506,668.27,502.54,1674684.62,1259365.24,415319.38 Europe,Russia,Personal Care,Offline,C,5/8/2016,241048896,6/22/2016,580,81.73,56.67,47403.40,32868.60,14534.80 Asia,Turkmenistan,Vegetables,Offline,M,7/19/2010,914174783,8/29/2010,3488,154.06,90.93,537361.28,317163.84,220197.44 Sub-Saharan Africa,Botswana,Household,Online,L,5/23/2015,729446971,7/1/2015,8423,668.27,502.54,5628838.21,4232894.42,1395943.79 Europe,Moldova ,Cosmetics,Online,C,8/27/2013,879101788,9/13/2013,4610,437.20,263.33,2015492.00,1213951.30,801540.70 Asia,Vietnam,Meat,Online,L,9/7/2015,825688064,10/17/2015,8301,421.89,364.69,3502108.89,3027291.69,474817.20 Europe,Moldova ,Cereal,Online,C,3/2/2010,552067124,4/5/2010,7785,205.70,117.11,1601374.50,911701.35,689673.15 Europe,Bosnia and Herzegovina,Vegetables,Offline,L,5/12/2013,111412799,5/27/2013,8378,154.06,90.93,1290714.68,761811.54,528903.14 Sub-Saharan Africa,Burkina Faso,Household,Offline,C,4/19/2012,977211415,5/4/2012,7428,668.27,502.54,4963909.56,3732867.12,1231042.44 Sub-Saharan Africa,Rwanda,Fruits,Online,M,1/4/2014,193261802,2/23/2014,9317,9.33,6.92,86927.61,64473.64,22453.97 Australia and Oceania,Tonga,Vegetables,Offline,H,6/12/2011,723675286,6/12/2011,454,154.06,90.93,69943.24,41282.22,28661.02 Sub-Saharan Africa,Burkina Faso,Baby Food,Online,L,7/18/2017,202875697,8/24/2017,4282,255.28,159.42,1093108.96,682636.44,410472.52 Europe,Latvia,Fruits,Offline,M,1/13/2016,385599362,2/23/2016,6275,9.33,6.92,58545.75,43423.00,15122.75 Australia and Oceania,Tuvalu,Cereal,Online,L,8/16/2010,396895110,9/18/2010,8938,205.70,117.11,1838546.60,1046729.18,791817.42 Middle East and North Africa,Libya,Vegetables,Offline,H,9/2/2013,782124269,10/21/2013,6806,154.06,90.93,1048532.36,618869.58,429662.78 Middle East and North Africa,Kuwait,Snacks,Offline,H,2/3/2012,356960666,2/12/2012,1448,152.58,97.44,220935.84,141093.12,79842.72 Australia and Oceania,Solomon Islands,Fruits,Online,C,7/29/2016,257390630,7/29/2016,6462,9.33,6.92,60290.46,44717.04,15573.42 Australia and Oceania,Solomon Islands,Fruits,Offline,C,5/21/2012,789712989,7/8/2012,2477,9.33,6.92,23110.41,17140.84,5969.57 Europe,Switzerland,Vegetables,Online,L,2/20/2016,980539071,3/27/2016,2156,154.06,90.93,332153.36,196045.08,136108.28 Middle East and North Africa,Yemen,Cereal,Online,C,6/6/2011,826792705,7/18/2011,5189,205.70,117.11,1067377.30,607683.79,459693.51 Sub-Saharan Africa,Rwanda,Clothes,Offline,L,3/20/2013,845710217,3/24/2013,3302,109.28,35.84,360842.56,118343.68,242498.88 Middle East and North Africa,Qatar,Snacks,Online,H,1/6/2011,724840438,1/6/2011,5248,152.58,97.44,800739.84,511365.12,289374.72 Europe,Austria,Meat,Online,H,7/23/2010,672044694,8/12/2010,1814,421.89,364.69,765308.46,661547.66,103760.80 Europe,Belarus,Beverages,Online,H,11/7/2014,965496814,12/20/2014,818,47.45,31.79,38814.10,26004.22,12809.88 Europe,Kosovo,Cereal,Online,L,10/24/2012,603683125,11/2/2012,2107,205.70,117.11,433409.90,246750.77,186659.13 Asia,Uzbekistan,Fruits,Offline,H,5/17/2013,455402457,5/17/2013,2562,9.33,6.92,23903.46,17729.04,6174.42 Australia and Oceania,New Zealand,Cereal,Offline,M,5/16/2011,109766137,5/25/2011,1094,205.70,117.11,225035.80,128118.34,96917.46 Sub-Saharan Africa,Burundi,Personal Care,Offline,L,1/27/2014,126197993,2/14/2014,3645,81.73,56.67,297905.85,206562.15,91343.70 Asia,India,Meat,Offline,H,8/31/2014,684434354,9/22/2014,8190,421.89,364.69,3455279.10,2986811.10,468468.00 Asia,Sri Lanka,Personal Care,Offline,H,3/7/2011,234524047,3/11/2011,9732,81.73,56.67,795396.36,551512.44,243883.92 Sub-Saharan Africa,Zimbabwe,Fruits,Online,M,4/17/2010,446828401,4/28/2010,5308,9.33,6.92,49523.64,36731.36,12792.28 Sub-Saharan Africa,Nigeria,Vegetables,Offline,C,12/17/2015,362021243,1/14/2016,8986,154.06,90.93,1384383.16,817096.98,567286.18 Middle East and North Africa,Bahrain,Cereal,Offline,L,6/24/2010,441088902,6/25/2010,6863,205.70,117.11,1411719.10,803725.93,607993.17 Central America and the Caribbean,The Bahamas,Baby Food,Offline,H,4/17/2011,315330207,5/7/2011,2070,255.28,159.42,528429.60,329999.40,198430.20 Central America and the Caribbean,Costa Rica,Vegetables,Offline,M,3/9/2014,136356484,4/11/2014,9769,154.06,90.93,1505012.14,888295.17,616716.97 Middle East and North Africa,Iraq,Office Supplies,Online,M,3/25/2012,126091563,4/22/2012,2150,651.21,524.96,1400101.50,1128664.00,271437.50 Middle East and North Africa,Lebanon,Cosmetics,Online,C,9/13/2014,126771771,9/19/2014,3439,437.20,263.33,1503530.80,905591.87,597938.93 Sub-Saharan Africa,Sudan,Beverages,Offline,H,1/2/2013,950945937,1/8/2013,4890,47.45,31.79,232030.50,155453.10,76577.40 Europe,Finland,Meat,Offline,H,10/8/2014,331475389,11/11/2014,9788,421.89,364.69,4129459.32,3569585.72,559873.60 Asia,Nepal,Beverages,Offline,L,4/25/2017,571533954,5/22/2017,8452,47.45,31.79,401047.40,268689.08,132358.32 North America,United States of America,Beverages,Online,M,6/20/2011,894607961,8/1/2011,3231,47.45,31.79,153310.95,102713.49,50597.46 Europe,Slovenia,Office Supplies,Online,H,8/10/2015,594496238,8/31/2015,3503,651.21,524.96,2281188.63,1838934.88,442253.75 Central America and the Caribbean,Honduras,Beverages,Offline,C,5/1/2011,385310113,5/21/2011,680,47.45,31.79,32266.00,21617.20,10648.80 Asia,Bangladesh,Cosmetics,Online,H,5/13/2015,151473414,6/15/2015,3204,437.20,263.33,1400788.80,843709.32,557079.48 Central America and the Caribbean,Guatemala,Personal Care,Offline,M,3/20/2015,297722470,4/7/2015,1550,81.73,56.67,126681.50,87838.50,38843.00 Sub-Saharan Africa,Madagascar,Household,Online,H,10/25/2010,399106109,11/15/2010,3221,668.27,502.54,2152497.67,1618681.34,533816.33 Sub-Saharan Africa,Mauritania,Snacks,Online,L,9/24/2010,550985658,9/24/2010,7755,152.58,97.44,1183257.90,755647.20,427610.70 Europe,Bosnia and Herzegovina,Vegetables,Offline,L,3/27/2013,919034945,3/30/2013,1718,154.06,90.93,264675.08,156217.74,108457.34 Sub-Saharan Africa,Liberia,Vegetables,Offline,C,2/3/2010,389240300,3/17/2010,3709,154.06,90.93,571408.54,337259.37,234149.17 Middle East and North Africa,Kuwait,Cereal,Offline,M,1/24/2013,617900550,2/7/2013,9359,205.70,117.11,1925146.30,1096032.49,829113.81 Europe,Estonia,Office Supplies,Offline,M,4/7/2012,181627023,5/9/2012,6327,651.21,524.96,4120205.67,3321421.92,798783.75 Europe,Lithuania,Household,Offline,M,3/22/2010,427343547,5/8/2010,9307,668.27,502.54,6219588.89,4677139.78,1542449.11 Europe,Spain,Office Supplies,Offline,L,7/14/2010,522286450,8/5/2010,5022,651.21,524.96,3270376.62,2636349.12,634027.50 Asia,Singapore,Household,Online,C,1/28/2014,604004561,2/5/2014,7227,668.27,502.54,4829587.29,3631856.58,1197730.71 Central America and the Caribbean,Dominica,Baby Food,Offline,C,3/22/2015,430359208,4/15/2015,1708,255.28,159.42,436018.24,272289.36,163728.88 Sub-Saharan Africa,Republic of the Congo,Vegetables,Online,H,3/8/2013,729524219,3/28/2013,1283,154.06,90.93,197658.98,116663.19,80995.79 Asia,Vietnam,Baby Food,Offline,H,10/29/2015,949985921,11/12/2015,800,255.28,159.42,204224.00,127536.00,76688.00 Australia and Oceania,Australia,Clothes,Offline,M,2/19/2013,610543143,3/3/2013,2139,109.28,35.84,233749.92,76661.76,157088.16 Australia and Oceania,Samoa ,Clothes,Offline,C,4/26/2011,650307214,5/29/2011,9211,109.28,35.84,1006578.08,330122.24,676455.84 Central America and the Caribbean,Saint Kitts and Nevis ,Household,Online,H,11/4/2013,278701961,12/5/2013,2958,668.27,502.54,1976742.66,1486513.32,490229.34 Asia,Thailand,Office Supplies,Online,M,2/12/2010,125463712,3/13/2010,6355,651.21,524.96,4138439.55,3336120.80,802318.75 Asia,North Korea,Meat,Online,H,2/9/2017,890641295,3/14/2017,9406,421.89,364.69,3968297.34,3430274.14,538023.20 Sub-Saharan Africa,Uganda,Beverages,Online,L,12/26/2014,194596040,1/11/2015,4147,47.45,31.79,196775.15,131833.13,64942.02 Central America and the Caribbean,Cuba,Clothes,Offline,M,6/27/2011,228001773,8/4/2011,9646,109.28,35.84,1054114.88,345712.64,708402.24 Sub-Saharan Africa,Senegal,Snacks,Online,C,6/1/2015,101844823,6/23/2015,7001,152.58,97.44,1068212.58,682177.44,386035.14 Sub-Saharan Africa,Uganda,Fruits,Offline,H,2/19/2010,797424018,3/19/2010,4342,9.33,6.92,40510.86,30046.64,10464.22 Sub-Saharan Africa,Lesotho,Household,Offline,L,5/16/2010,216350686,6/18/2010,1831,668.27,502.54,1223602.37,920150.74,303451.63 Australia and Oceania,Federated States of Micronesia,Snacks,Online,C,12/22/2012,830548655,2/9/2013,6659,152.58,97.44,1016030.22,648852.96,367177.26 Sub-Saharan Africa,Eritrea,Office Supplies,Offline,H,11/12/2015,232254254,11/13/2015,8050,651.21,524.96,5242240.50,4225928.00,1016312.50 Sub-Saharan Africa,Swaziland,Cereal,Offline,H,3/26/2014,584016311,4/1/2014,2259,205.70,117.11,464676.30,264551.49,200124.81 Asia,China,Cosmetics,Offline,L,12/1/2011,968696153,1/11/2012,7573,437.20,263.33,3310915.60,1994198.09,1316717.51 Middle East and North Africa,Algeria,Fruits,Online,L,1/11/2010,539467608,2/1/2010,9308,9.33,6.92,86843.64,64411.36,22432.28 Middle East and North Africa,Iraq,Meat,Online,H,10/2/2010,769817006,10/28/2010,4814,421.89,364.69,2030978.46,1755617.66,275360.80 Europe,Lithuania,Vegetables,Offline,L,7/14/2013,503543174,8/7/2013,8470,154.06,90.93,1304888.20,770177.10,534711.10 Asia,Cambodia,Clothes,Online,C,5/2/2011,904757440,6/18/2011,6687,109.28,35.84,730755.36,239662.08,491093.28 Central America and the Caribbean,Dominican Republic,Cereal,Offline,L,1/31/2017,507883632,2/12/2017,2908,205.70,117.11,598175.60,340555.88,257619.72 Central America and the Caribbean,Dominica,Cosmetics,Offline,C,7/8/2014,167658078,7/11/2014,2606,437.20,263.33,1139343.20,686237.98,453105.22 Sub-Saharan Africa,South Africa,Cereal,Online,L,11/29/2014,809129607,1/9/2015,8286,205.70,117.11,1704430.20,970373.46,734056.74 Middle East and North Africa,Israel,Personal Care,Offline,M,6/25/2015,277659547,7/4/2015,4485,81.73,56.67,366559.05,254164.95,112394.10 Sub-Saharan Africa,Botswana,Personal Care,Offline,H,9/17/2010,988921725,10/18/2010,2769,81.73,56.67,226310.37,156919.23,69391.14 Europe,Greece,Household,Offline,H,4/20/2011,478902471,5/31/2011,6738,668.27,502.54,4502803.26,3386114.52,1116688.74 Sub-Saharan Africa,Burkina Faso,Household,Online,C,1/29/2010,853900611,2/11/2010,7021,668.27,502.54,4691923.67,3528333.34,1163590.33 Australia and Oceania,East Timor,Beverages,Offline,H,1/31/2016,240527474,3/7/2016,6280,47.45,31.79,297986.00,199641.20,98344.80 Sub-Saharan Africa,Mauritania,Baby Food,Online,C,12/2/2012,435706889,1/5/2013,4206,255.28,159.42,1073707.68,670520.52,403187.16 Australia and Oceania,Australia,Vegetables,Offline,H,7/18/2015,156675183,9/2/2015,2523,154.06,90.93,388693.38,229416.39,159276.99 Middle East and North Africa,Syria,Fruits,Offline,M,6/20/2013,890981185,8/9/2013,9987,9.33,6.92,93178.71,69110.04,24068.67 Central America and the Caribbean,Saint Vincent and the Grenadines,Beverages,Online,H,6/5/2012,146486222,7/9/2012,7383,47.45,31.79,350323.35,234705.57,115617.78 Europe,Liechtenstein,Personal Care,Online,C,6/4/2015,901364123,7/4/2015,2529,81.73,56.67,206695.17,143318.43,63376.74 Sub-Saharan Africa,Angola,Fruits,Online,H,5/21/2011,354101216,6/17/2011,5274,9.33,6.92,49206.42,36496.08,12710.34 Australia and Oceania,Palau,Cereal,Online,M,10/20/2016,273496329,10/27/2016,2496,205.70,117.11,513427.20,292306.56,221120.64 Sub-Saharan Africa,The Gambia,Snacks,Offline,M,5/18/2011,248660790,5/30/2011,3109,152.58,97.44,474371.22,302940.96,171430.26 Sub-Saharan Africa,Seychelles ,Meat,Online,L,7/8/2017,839018428,8/3/2017,3053,421.89,364.69,1288030.17,1113398.57,174631.60 Australia and Oceania,Tuvalu,Household,Online,C,4/6/2013,424305570,5/18/2013,302,668.27,502.54,201817.54,151767.08,50050.46 Middle East and North Africa,Turkey,Vegetables,Online,C,10/19/2011,154571044,12/2/2011,9862,154.06,90.93,1519339.72,896751.66,622588.06 Sub-Saharan Africa,Angola,Snacks,Online,H,3/22/2012,800176179,4/20/2012,8768,152.58,97.44,1337821.44,854353.92,483467.52 Central America and the Caribbean,Dominica,Beverages,Offline,L,11/30/2010,501794803,12/31/2010,1088,47.45,31.79,51625.60,34587.52,17038.08 Europe,Croatia,Beverages,Online,M,11/23/2012,620413243,1/11/2013,2920,47.45,31.79,138554.00,92826.80,45727.20 Europe,United Kingdom,Fruits,Online,C,11/20/2012,787330329,12/8/2012,7395,9.33,6.92,68995.35,51173.40,17821.95 Sub-Saharan Africa,The Gambia,Fruits,Online,H,4/2/2014,254157388,5/12/2014,9674,9.33,6.92,90258.42,66944.08,23314.34 Australia and Oceania,Tonga,Cosmetics,Online,H,1/20/2010,142818248,1/21/2010,1948,437.20,263.33,851665.60,512966.84,338698.76 Asia,Kazakhstan,Baby Food,Offline,C,2/22/2017,295549237,2/26/2017,8442,255.28,159.42,2155073.76,1345823.64,809250.12 Middle East and North Africa,Bahrain,Cereal,Online,H,10/16/2011,624899184,11/23/2011,410,205.70,117.11,84337.00,48015.10,36321.90 Europe,Romania,Cosmetics,Offline,M,10/3/2016,663729417,10/7/2016,1139,437.20,263.33,497970.80,299932.87,198037.93 Europe,Russia,Office Supplies,Online,M,3/22/2014,915213763,5/8/2014,945,651.21,524.96,615393.45,496087.20,119306.25 Central America and the Caribbean,Cuba,Vegetables,Offline,H,2/26/2010,602838551,3/15/2010,2179,154.06,90.93,335696.74,198136.47,137560.27 Central America and the Caribbean,Dominican Republic,Baby Food,Online,H,5/15/2015,820402610,5/25/2015,4218,255.28,159.42,1076771.04,672433.56,404337.48 Middle East and North Africa,Israel,Beverages,Offline,M,6/15/2011,482017266,7/16/2011,8475,47.45,31.79,402138.75,269420.25,132718.50 Europe,Netherlands,Snacks,Online,C,2/20/2015,372106349,3/15/2015,3393,152.58,97.44,517703.94,330613.92,187090.02 Europe,Denmark,Cereal,Online,M,12/7/2013,895406186,1/22/2014,9443,205.70,117.11,1942425.10,1105869.73,836555.37 Middle East and North Africa,Libya,Fruits,Online,C,5/4/2015,726965606,6/16/2015,4132,9.33,6.92,38551.56,28593.44,9958.12 Europe,Cyprus,Household,Online,L,10/11/2012,862145936,11/5/2012,6996,668.27,502.54,4675216.92,3515769.84,1159447.08 Europe,Bulgaria,Household,Offline,H,2/4/2012,566621005,3/14/2012,4602,668.27,502.54,3075378.54,2312689.08,762689.46 Sub-Saharan Africa,Chad,Office Supplies,Offline,C,8/17/2012,526377141,10/2/2012,5548,651.21,524.96,3612913.08,2912478.08,700435.00 Europe,Moldova ,Cereal,Offline,C,12/29/2010,597713172,2/11/2011,5465,205.70,117.11,1124150.50,640006.15,484144.35 Europe,Armenia,Household,Online,M,6/12/2012,257240426,7/29/2012,2013,668.27,502.54,1345227.51,1011613.02,333614.49 Europe,Serbia,Fruits,Online,H,12/13/2011,851882731,12/15/2011,9886,9.33,6.92,92236.38,68411.12,23825.26 Asia,Sri Lanka,Personal Care,Online,H,2/4/2013,648876416,3/3/2013,5806,81.73,56.67,474524.38,329026.02,145498.36 Central America and the Caribbean,Saint Vincent and the Grenadines,Household,Online,C,10/7/2016,685770308,10/29/2016,3528,668.27,502.54,2357656.56,1772961.12,584695.44 Europe,San Marino,Cereal,Offline,L,4/29/2017,720425736,4/30/2017,8840,205.70,117.11,1818388.00,1035252.40,783135.60 Europe,Germany,Personal Care,Offline,L,12/30/2013,581016528,1/20/2014,4557,81.73,56.67,372443.61,258245.19,114198.42 Australia and Oceania,Marshall Islands,Clothes,Online,M,8/20/2014,616029012,10/6/2014,5529,109.28,35.84,604209.12,198159.36,406049.76 Europe,Armenia,Cosmetics,Offline,M,10/20/2016,344262015,11/23/2016,3635,437.20,263.33,1589222.00,957204.55,632017.45 Europe,Bosnia and Herzegovina,Cosmetics,Offline,L,7/23/2011,704826867,9/11/2011,2788,437.20,263.33,1218913.60,734164.04,484749.56 Europe,France,Cereal,Offline,C,7/10/2017,907147395,7/13/2017,3928,205.70,117.11,807989.60,460008.08,347981.52 Central America and the Caribbean,Honduras,Fruits,Offline,L,7/11/2016,680959928,7/23/2016,30,9.33,6.92,279.90,207.60,72.30 Sub-Saharan Africa,Djibouti,Beverages,Online,M,5/23/2010,726313292,6/29/2010,1098,47.45,31.79,52100.10,34905.42,17194.68 Middle East and North Africa,Iraq,Cereal,Offline,C,2/23/2017,463568818,4/13/2017,9170,205.70,117.11,1886269.00,1073898.70,812370.30 Sub-Saharan Africa,Senegal,Beverages,Online,L,4/1/2014,283400332,4/6/2014,3311,47.45,31.79,157106.95,105256.69,51850.26 North America,Greenland,Fruits,Online,H,6/30/2010,196794164,8/2/2010,4621,9.33,6.92,43113.93,31977.32,11136.61 Europe,Liechtenstein,Cereal,Online,M,12/20/2011,285049140,1/30/2012,1230,205.70,117.11,253011.00,144045.30,108965.70 Europe,Spain,Cosmetics,Online,C,9/3/2010,249776589,9/7/2010,3298,437.20,263.33,1441885.60,868462.34,573423.26 Europe,Austria,Fruits,Online,M,1/13/2011,762900340,2/19/2011,8019,9.33,6.92,74817.27,55491.48,19325.79 Asia,Taiwan,Beverages,Online,C,12/21/2010,316656720,1/4/2011,4615,47.45,31.79,218981.75,146710.85,72270.90 Sub-Saharan Africa,Central African Republic,Beverages,Online,H,4/2/2013,173594558,4/3/2013,9342,47.45,31.79,443277.90,296982.18,146295.72 Sub-Saharan Africa,Burkina Faso,Meat,Offline,L,2/20/2014,316575181,3/18/2014,486,421.89,364.69,205038.54,177239.34,27799.20 Asia,South Korea,Vegetables,Offline,C,9/30/2014,798772418,10/4/2014,3364,154.06,90.93,518257.84,305888.52,212369.32 Sub-Saharan Africa,Ethiopia,Meat,Online,L,4/1/2017,393672597,4/16/2017,5325,421.89,364.69,2246564.25,1941974.25,304590.00 Asia,Japan,Meat,Online,L,7/14/2013,645074546,8/10/2013,748,421.89,364.69,315573.72,272788.12,42785.60 Asia,Taiwan,Office Supplies,Online,H,9/10/2011,917089593,10/1/2011,6045,651.21,524.96,3936564.45,3173383.20,763181.25 Central America and the Caribbean,Barbados,Vegetables,Online,H,2/5/2017,644141566,2/21/2017,4659,154.06,90.93,717765.54,423642.87,294122.67 Sub-Saharan Africa,Rwanda,Fruits,Offline,L,6/21/2013,680966794,8/5/2013,2062,9.33,6.92,19238.46,14269.04,4969.42 Sub-Saharan Africa,Mauritania,Fruits,Offline,C,2/6/2012,152614104,3/4/2012,760,9.33,6.92,7090.80,5259.20,1831.60 Middle East and North Africa,Pakistan,Cereal,Online,H,3/11/2010,504444825,4/28/2010,5289,205.70,117.11,1087947.30,619394.79,468552.51 Middle East and North Africa,Morocco,Personal Care,Offline,H,5/19/2017,552132785,6/18/2017,7215,81.73,56.67,589681.95,408874.05,180807.90 Sub-Saharan Africa,Mauritania,Office Supplies,Offline,L,1/26/2014,531664311,2/3/2014,139,651.21,524.96,90518.19,72969.44,17548.75 Europe,Montenegro,Fruits,Online,C,10/25/2015,749338233,11/1/2015,4690,9.33,6.92,43757.70,32454.80,11302.90 Europe,Lithuania,Household,Online,C,7/2/2016,231765878,7/15/2016,3528,668.27,502.54,2357656.56,1772961.12,584695.44 Europe,Macedonia,Cosmetics,Offline,H,11/19/2014,775871074,11/22/2014,6347,437.20,263.33,2774908.40,1671355.51,1103552.89 Asia,Kyrgyzstan,Cereal,Offline,H,10/8/2010,198890149,10/23/2010,4870,205.70,117.11,1001759.00,570325.70,431433.30 Europe,Cyprus,Snacks,Online,H,5/24/2016,888371932,6/19/2016,7851,152.58,97.44,1197905.58,765001.44,432904.14 Asia,Malaysia,Meat,Online,M,10/8/2014,352177751,11/4/2014,6077,421.89,364.69,2563825.53,2216221.13,347604.40 Central America and the Caribbean,Costa Rica,Office Supplies,Offline,H,6/21/2016,668481433,8/5/2016,7366,651.21,524.96,4796812.86,3866855.36,929957.50 Australia and Oceania,Tuvalu,Personal Care,Offline,C,6/6/2010,835769307,6/29/2010,1565,81.73,56.67,127907.45,88688.55,39218.90 Sub-Saharan Africa,Seychelles ,Cereal,Online,C,2/17/2013,822840201,3/31/2013,5556,205.70,117.11,1142869.20,650663.16,492206.04 Central America and the Caribbean,Honduras,Clothes,Offline,C,11/9/2011,218805444,12/24/2011,8248,109.28,35.84,901341.44,295608.32,605733.12 Asia,Philippines,Meat,Offline,C,11/11/2013,483088862,11/23/2013,5585,421.89,364.69,2356255.65,2036793.65,319462.00 Asia,Brunei,Cereal,Online,C,5/3/2012,895426785,6/12/2012,5539,205.70,117.11,1139372.30,648672.29,490700.01 Europe,Romania,Vegetables,Online,C,11/21/2012,805868041,12/3/2012,3116,154.06,90.93,480050.96,283337.88,196713.08 Europe,Portugal,Personal Care,Online,H,8/16/2014,984773957,9/9/2014,5353,81.73,56.67,437500.69,303354.51,134146.18 Europe,Kosovo,Household,Offline,L,11/30/2013,472818362,12/12/2013,6315,668.27,502.54,4220125.05,3173540.10,1046584.95 Europe,Vatican City,Beverages,Online,M,10/14/2015,630987584,11/6/2015,2103,47.45,31.79,99787.35,66854.37,32932.98 North America,United States of America,Household,Offline,C,12/15/2014,190580451,1/29/2015,5845,668.27,502.54,3906038.15,2937346.30,968691.85 Asia,Bhutan,Vegetables,Offline,H,10/15/2014,203208291,11/9/2014,2704,154.06,90.93,416578.24,245874.72,170703.52 Sub-Saharan Africa,Seychelles ,Cereal,Online,M,12/3/2015,890794932,12/6/2015,4871,205.70,117.11,1001964.70,570442.81,431521.89 Australia and Oceania,Federated States of Micronesia,Cereal,Offline,H,6/28/2012,295576703,7/29/2012,6570,205.70,117.11,1351449.00,769412.70,582036.30 Europe,Sweden,Meat,Offline,L,1/18/2011,130102431,3/6/2011,9055,421.89,364.69,3820213.95,3302267.95,517946.00 Central America and the Caribbean,Trinidad and Tobago,Cereal,Offline,H,8/23/2011,827233445,8/27/2011,5614,205.70,117.11,1154799.80,657455.54,497344.26 Sub-Saharan Africa,Zambia,Baby Food,Online,H,8/8/2011,190143573,9/21/2011,6563,255.28,159.42,1675402.64,1046273.46,629129.18 Sub-Saharan Africa,Burkina Faso,Baby Food,Offline,M,11/20/2016,142319142,12/10/2016,4252,255.28,159.42,1085450.56,677853.84,407596.72 Sub-Saharan Africa,Ethiopia,Snacks,Offline,L,8/8/2015,877558982,9/4/2015,8059,152.58,97.44,1229642.22,785268.96,444373.26 Sub-Saharan Africa,Mauritania,Cosmetics,Offline,H,1/18/2012,409974420,2/6/2012,9396,437.20,263.33,4107931.20,2474248.68,1633682.52 Australia and Oceania,Federated States of Micronesia,Household,Offline,H,5/22/2015,423989284,7/2/2015,6706,668.27,502.54,4481418.62,3370033.24,1111385.38 Asia,Tajikistan,Clothes,Online,C,2/15/2013,424339902,2/15/2013,462,109.28,35.84,50487.36,16558.08,33929.28 Sub-Saharan Africa,Burundi,Cereal,Online,L,10/5/2012,886075103,11/17/2012,8168,205.70,117.11,1680157.60,956554.48,723603.12 Sub-Saharan Africa,Tanzania,Clothes,Online,C,4/19/2015,104556214,5/17/2015,9362,109.28,35.84,1023079.36,335534.08,687545.28 Europe,Italy,Fruits,Online,C,6/5/2011,945457065,6/7/2011,610,9.33,6.92,5691.30,4221.20,1470.10 Sub-Saharan Africa,Burundi,Household,Offline,H,8/20/2015,494763982,9/17/2015,512,668.27,502.54,342154.24,257300.48,84853.76 Sub-Saharan Africa,Democratic Republic of the Congo,Vegetables,Offline,C,12/19/2016,408775794,12/21/2016,4696,154.06,90.93,723465.76,427007.28,296458.48 Europe,Belgium,Baby Food,Online,C,2/7/2013,164103829,3/18/2013,825,255.28,159.42,210606.00,131521.50,79084.50 Central America and the Caribbean,Honduras,Baby Food,Offline,H,2/24/2014,207671916,4/2/2014,3590,255.28,159.42,916455.20,572317.80,344137.40 Sub-Saharan Africa,Kenya,Beverages,Online,L,2/19/2016,606716382,2/29/2016,9715,47.45,31.79,460976.75,308839.85,152136.90 Middle East and North Africa,Turkey,Snacks,Offline,H,5/10/2012,598786056,5/23/2012,2955,152.58,97.44,450873.90,287935.20,162938.70 Europe,Moldova ,Fruits,Offline,L,5/1/2012,841742265,5/9/2012,9096,9.33,6.92,84865.68,62944.32,21921.36 Asia,Kyrgyzstan,Cereal,Online,M,4/13/2015,263758838,4/13/2015,956,205.70,117.11,196649.20,111957.16,84692.04 Sub-Saharan Africa,Malawi,Household,Offline,C,11/30/2013,113322103,12/7/2013,3383,668.27,502.54,2260757.41,1700092.82,560664.59 Sub-Saharan Africa,Chad,Snacks,Offline,M,5/14/2013,809230887,6/16/2013,8257,152.58,97.44,1259853.06,804562.08,455290.98 Sub-Saharan Africa,Central African Republic,Household,Offline,L,4/9/2012,590596520,5/25/2012,9490,668.27,502.54,6341882.30,4769104.60,1572777.70 Asia,Taiwan,Clothes,Offline,L,2/7/2014,466842830,2/9/2014,8022,109.28,35.84,876644.16,287508.48,589135.68 Middle East and North Africa,Egypt,Fruits,Offline,L,11/2/2015,167706143,11/27/2015,6829,9.33,6.92,63714.57,47256.68,16457.89 Europe,Russia,Meat,Online,H,9/20/2011,393235290,10/9/2011,5916,421.89,364.69,2495901.24,2157506.04,338395.20 Europe,Ukraine,Office Supplies,Offline,L,3/19/2012,563791596,3/27/2012,7317,651.21,524.96,4764903.57,3841132.32,923771.25 Middle East and North Africa,Jordan,Fruits,Online,M,6/26/2017,170048892,6/26/2017,101,9.33,6.92,942.33,698.92,243.41 Europe,Armenia,Snacks,Online,C,8/15/2013,122993505,9/5/2013,5366,152.58,97.44,818744.28,522863.04,295881.24 Australia and Oceania,New Zealand,Cereal,Online,H,4/10/2014,503924262,5/11/2014,1242,205.70,117.11,255479.40,145450.62,110028.78 Europe,Andorra,Snacks,Online,L,6/13/2011,114452493,6/16/2011,7891,152.58,97.44,1204008.78,768899.04,435109.74 Sub-Saharan Africa,Cape Verde,Clothes,Offline,H,2/21/2017,526502025,2/23/2017,2504,109.28,35.84,273637.12,89743.36,183893.76 North America,United States of America,Personal Care,Online,C,2/16/2014,232309186,2/20/2014,4305,81.73,56.67,351847.65,243964.35,107883.30 Central America and the Caribbean,Costa Rica,Snacks,Online,H,9/30/2012,494422805,10/24/2012,9550,152.58,97.44,1457139.00,930552.00,526587.00 Europe,Latvia,Baby Food,Online,C,11/1/2016,395704209,12/11/2016,6524,255.28,159.42,1665446.72,1040056.08,625390.64 Asia,India,Personal Care,Online,M,5/12/2012,889327228,5/27/2012,544,81.73,56.67,44461.12,30828.48,13632.64 Europe,Iceland,Clothes,Online,M,8/24/2016,748778188,9/26/2016,8960,109.28,35.84,979148.80,321126.40,658022.40 Sub-Saharan Africa,Cote d'Ivoire,Beverages,Offline,L,1/1/2014,617855918,1/9/2014,6151,47.45,31.79,291864.95,195540.29,96324.66 Europe,Andorra,Fruits,Offline,M,7/10/2012,760671746,8/3/2012,8528,9.33,6.92,79566.24,59013.76,20552.48 Central America and the Caribbean,Grenada,Snacks,Offline,C,1/4/2010,611649501,2/21/2010,9534,152.58,97.44,1454697.72,928992.96,525704.76 Middle East and North Africa,Bahrain,Personal Care,Offline,L,11/24/2012,125525510,12/7/2012,4643,81.73,56.67,379472.39,263118.81,116353.58 Sub-Saharan Africa,Mozambique,Household,Offline,M,5/1/2017,227348601,6/11/2017,6358,668.27,502.54,4248860.66,3195149.32,1053711.34 Europe,Czech Republic,Household,Online,H,12/12/2012,562480103,12/27/2012,9217,668.27,502.54,6159444.59,4631911.18,1527533.41 Sub-Saharan Africa,Mauritius ,Clothes,Online,L,12/12/2016,846593844,12/19/2016,4787,109.28,35.84,523123.36,171566.08,351557.28 Europe,Cyprus,Fruits,Offline,L,4/25/2017,415676152,4/29/2017,6666,9.33,6.92,62193.78,46128.72,16065.06 Middle East and North Africa,United Arab Emirates,Cereal,Offline,M,6/14/2014,476025855,7/13/2014,5484,205.70,117.11,1128058.80,642231.24,485827.56 Australia and Oceania,Nauru,Household,Online,C,5/24/2017,954254281,6/13/2017,3902,668.27,502.54,2607589.54,1960911.08,646678.46 Asia,Myanmar,Personal Care,Offline,C,4/28/2017,947285258,4/29/2017,1614,81.73,56.67,131912.22,91465.38,40446.84 Middle East and North Africa,United Arab Emirates,Baby Food,Offline,M,1/16/2014,972355115,1/29/2014,341,255.28,159.42,87050.48,54362.22,32688.26 Europe,Portugal,Personal Care,Offline,C,3/22/2012,717012679,4/22/2012,8840,81.73,56.67,722493.20,500962.80,221530.40 Central America and the Caribbean,Antigua and Barbuda ,Vegetables,Offline,H,1/5/2010,389119279,2/21/2010,7897,154.06,90.93,1216611.82,718074.21,498537.61 Sub-Saharan Africa,Mauritania,Meat,Online,M,6/3/2010,266848742,7/12/2010,5328,421.89,364.69,2247829.92,1943068.32,304761.60 Europe,Italy,Cereal,Online,H,7/8/2017,248687398,8/25/2017,982,205.70,117.11,201997.40,115002.02,86995.38 Sub-Saharan Africa,Mauritius ,Vegetables,Offline,C,7/5/2017,303434073,7/10/2017,1740,154.06,90.93,268064.40,158218.20,109846.20 North America,United States of America,Snacks,Online,L,10/21/2012,920200097,10/24/2012,6512,152.58,97.44,993600.96,634529.28,359071.68 Europe,Liechtenstein,Clothes,Online,M,9/5/2010,858409297,10/1/2010,1242,109.28,35.84,135725.76,44513.28,91212.48 Asia,Nepal,Clothes,Online,M,11/19/2011,297798001,12/5/2011,3901,109.28,35.84,426301.28,139811.84,286489.44 Sub-Saharan Africa,Equatorial Guinea,Meat,Offline,H,6/15/2014,388415038,6/23/2014,9496,421.89,364.69,4006267.44,3463096.24,543171.20 Europe,Denmark,Personal Care,Online,M,6/30/2017,100621736,8/18/2017,5062,81.73,56.67,413717.26,286863.54,126853.72 Middle East and North Africa,United Arab Emirates,Household,Offline,C,5/22/2017,275091922,6/13/2017,4668,668.27,502.54,3119484.36,2345856.72,773627.64 Sub-Saharan Africa,Malawi,Cereal,Offline,L,7/29/2011,472811925,8/24/2011,4410,205.70,117.11,907137.00,516455.10,390681.90 Central America and the Caribbean,Panama,Vegetables,Online,H,6/30/2017,325080573,8/18/2017,7420,154.06,90.93,1143125.20,674700.60,468424.60 Europe,Croatia,Personal Care,Offline,L,10/19/2015,883509194,11/27/2015,8859,81.73,56.67,724046.07,502039.53,222006.54 Sub-Saharan Africa,Madagascar,Fruits,Offline,C,9/10/2014,570021617,10/14/2014,918,9.33,6.92,8564.94,6352.56,2212.38 Sub-Saharan Africa,Zimbabwe,Vegetables,Offline,C,11/19/2015,126854169,12/25/2015,7822,154.06,90.93,1205057.32,711254.46,493802.86 Sub-Saharan Africa,Zambia,Baby Food,Online,M,10/12/2010,366555678,11/15/2010,826,255.28,159.42,210861.28,131680.92,79180.36 Sub-Saharan Africa,Uganda,Cosmetics,Offline,H,7/30/2014,821987473,8/31/2014,3215,437.20,263.33,1405598.00,846605.95,558992.05 Europe,Luxembourg,Beverages,Offline,M,1/10/2017,196323382,1/29/2017,5306,47.45,31.79,251769.70,168677.74,83091.96 Sub-Saharan Africa,Niger,Snacks,Online,C,7/10/2016,413049733,7/12/2016,9450,152.58,97.44,1441881.00,920808.00,521073.00 Australia and Oceania,Papua New Guinea,Snacks,Offline,M,4/23/2016,765965354,5/15/2016,5025,152.58,97.44,766714.50,489636.00,277078.50 Europe,Sweden,Personal Care,Offline,H,2/12/2013,169181573,3/20/2013,3442,81.73,56.67,281314.66,195058.14,86256.52 Europe,Ukraine,Clothes,Online,M,2/10/2016,307122218,3/18/2016,3144,109.28,35.84,343576.32,112680.96,230895.36 Australia and Oceania,Papua New Guinea,Household,Online,L,10/15/2012,684523618,11/18/2012,4605,668.27,502.54,3077383.35,2314196.70,763186.65 Middle East and North Africa,Pakistan,Baby Food,Online,C,8/29/2010,876434600,9/19/2010,5329,255.28,159.42,1360387.12,849549.18,510837.94 Europe,Vatican City,Baby Food,Offline,L,9/19/2010,978216493,9/27/2010,4853,255.28,159.42,1238873.84,773665.26,465208.58 Europe,Ukraine,Baby Food,Offline,H,3/26/2011,255543124,5/9/2011,9744,255.28,159.42,2487448.32,1553388.48,934059.84 Sub-Saharan Africa,Cote d'Ivoire,Cosmetics,Online,L,7/17/2011,294400823,8/24/2011,8601,437.20,263.33,3760357.20,2264901.33,1495455.87 Asia,Malaysia,Household,Offline,C,11/3/2015,951088416,12/12/2015,7052,668.27,502.54,4712640.04,3543912.08,1168727.96 Europe,Hungary,Personal Care,Online,M,3/26/2014,802217233,4/3/2014,2761,81.73,56.67,225656.53,156465.87,69190.66 Sub-Saharan Africa,Mauritius ,Beverages,Offline,M,10/28/2016,294711101,12/16/2016,419,47.45,31.79,19881.55,13320.01,6561.54 Europe,Switzerland,Meat,Online,L,1/27/2012,395806348,2/18/2012,6749,421.89,364.69,2847335.61,2461292.81,386042.80 Australia and Oceania,East Timor,Cosmetics,Online,L,12/29/2015,343051803,1/30/2016,5507,437.20,263.33,2407660.40,1450158.31,957502.09 Europe,Netherlands,Household,Offline,C,5/20/2015,794308793,7/2/2015,2478,668.27,502.54,1655973.06,1245294.12,410678.94 Sub-Saharan Africa,Namibia,Clothes,Online,M,1/14/2017,677751147,1/22/2017,480,109.28,35.84,52454.40,17203.20,35251.20 Sub-Saharan Africa,Cote d'Ivoire,Snacks,Online,L,9/1/2013,341865193,10/17/2013,4363,152.58,97.44,665706.54,425130.72,240575.82 Middle East and North Africa,Jordan,Personal Care,Online,H,5/29/2010,205449759,6/7/2010,6004,81.73,56.67,490706.92,340246.68,150460.24 Middle East and North Africa,Azerbaijan,Vegetables,Offline,C,6/17/2013,307616174,7/6/2013,9317,154.06,90.93,1435377.02,847194.81,588182.21 Australia and Oceania,Federated States of Micronesia,Personal Care,Online,C,2/27/2011,757788264,3/30/2011,5242,81.73,56.67,428428.66,297064.14,131364.52 Sub-Saharan Africa,Lesotho,Office Supplies,Offline,L,8/15/2015,385702359,8/30/2015,6754,651.21,524.96,4398272.34,3545579.84,852692.50 Europe,Albania,Fruits,Online,H,7/9/2013,791407287,8/7/2013,3858,9.33,6.92,35995.14,26697.36,9297.78 Sub-Saharan Africa,Zimbabwe,Baby Food,Online,L,4/29/2015,495264375,6/14/2015,8589,255.28,159.42,2192599.92,1369258.38,823341.54 Central America and the Caribbean,Dominican Republic,Snacks,Offline,M,8/15/2013,787947452,9/8/2013,16,152.58,97.44,2441.28,1559.04,882.24 Asia,Myanmar,Personal Care,Offline,C,3/21/2017,780442845,4/29/2017,9236,81.73,56.67,754858.28,523404.12,231454.16 Central America and the Caribbean,Cuba,Vegetables,Offline,C,1/19/2017,554049384,3/9/2017,4380,154.06,90.93,674782.80,398273.40,276509.40 Asia,Taiwan,Household,Offline,L,9/11/2012,710378396,10/12/2012,5608,668.27,502.54,3747658.16,2818244.32,929413.84 Middle East and North Africa,Azerbaijan,Meat,Online,M,2/24/2016,121353709,4/11/2016,114,421.89,364.69,48095.46,41574.66,6520.80 Asia,Kazakhstan,Office Supplies,Offline,H,3/8/2010,879211652,3/31/2010,7121,651.21,524.96,4637266.41,3738240.16,899026.25 Europe,Switzerland,Baby Food,Offline,L,9/18/2012,646501052,10/14/2012,2883,255.28,159.42,735972.24,459607.86,276364.38 Middle East and North Africa,Iraq,Household,Online,L,6/7/2012,306083238,7/8/2012,5687,668.27,502.54,3800451.49,2857944.98,942506.51 Asia,Kyrgyzstan,Baby Food,Offline,H,6/14/2010,811132037,6/19/2010,850,255.28,159.42,216988.00,135507.00,81481.00 Asia,Kyrgyzstan,Cosmetics,Online,M,7/8/2016,935133779,8/5/2016,5721,437.20,263.33,2501221.20,1506510.93,994710.27 Europe,Serbia,Personal Care,Online,C,12/12/2014,421887290,12/30/2014,4679,81.73,56.67,382414.67,265158.93,117255.74 Europe,Spain,Fruits,Offline,H,10/30/2013,435503900,11/3/2013,4137,9.33,6.92,38598.21,28628.04,9970.17 Sub-Saharan Africa,Central African Republic,Office Supplies,Offline,C,12/20/2010,410407435,12/28/2010,7535,651.21,524.96,4906867.35,3955573.60,951293.75 North America,Mexico,Cereal,Online,H,10/19/2012,301334226,10/29/2012,349,205.70,117.11,71789.30,40871.39,30917.91 Sub-Saharan Africa,Tanzania,Cosmetics,Online,H,6/20/2015,133333098,7/23/2015,5082,437.20,263.33,2221850.40,1338243.06,883607.34 Europe,Slovenia,Personal Care,Offline,M,3/5/2016,451765382,3/14/2016,6271,81.73,56.67,512528.83,355377.57,157151.26 Europe,Serbia,Cereal,Online,M,12/27/2016,972304904,1/9/2017,5483,205.70,117.11,1127853.10,642114.13,485738.97 Sub-Saharan Africa,Tanzania,Vegetables,Offline,C,6/17/2013,130937993,7/15/2013,6317,154.06,90.93,973197.02,574404.81,398792.21 Middle East and North Africa,Afghanistan,Cereal,Offline,H,7/24/2013,933963477,8/23/2013,9402,205.70,117.11,1933991.40,1101068.22,832923.18 Central America and the Caribbean,The Bahamas,Snacks,Offline,M,3/10/2011,607992684,3/14/2011,7401,152.58,97.44,1129244.58,721153.44,408091.14 Sub-Saharan Africa,Mauritius ,Cereal,Offline,C,8/29/2012,949949443,9/26/2012,5,205.70,117.11,1028.50,585.55,442.95 Europe,Vatican City,Cosmetics,Online,H,3/21/2010,677070081,4/29/2010,8938,437.20,263.33,3907693.60,2353643.54,1554050.06 Sub-Saharan Africa,Angola,Meat,Offline,H,2/4/2016,376903426,2/18/2016,2954,421.89,364.69,1246263.06,1077294.26,168968.80 Asia,Singapore,Vegetables,Offline,H,4/20/2013,257310807,6/5/2013,2841,154.06,90.93,437684.46,258332.13,179352.33 Asia,Sri Lanka,Clothes,Offline,H,5/31/2012,596466052,6/10/2012,6414,109.28,35.84,700921.92,229877.76,471044.16 Sub-Saharan Africa,Nigeria,Snacks,Online,M,7/4/2017,392855489,7/4/2017,3524,152.58,97.44,537691.92,343378.56,194313.36 Sub-Saharan Africa,Niger,Household,Online,H,10/14/2014,515277945,11/30/2014,1050,668.27,502.54,701683.50,527667.00,174016.50 North America,Greenland,Cosmetics,Online,L,3/26/2014,552844750,5/7/2014,7902,437.20,263.33,3454754.40,2080833.66,1373920.74 Sub-Saharan Africa,Ghana,Fruits,Offline,M,7/18/2015,164979732,8/5/2015,24,9.33,6.92,223.92,166.08,57.84 Middle East and North Africa,Somalia,Meat,Offline,H,11/26/2011,431419217,12/16/2011,5388,421.89,364.69,2273143.32,1964949.72,308193.60 Asia,Malaysia,Snacks,Offline,C,6/29/2016,702212035,8/1/2016,9001,152.58,97.44,1373372.58,877057.44,496315.14 Middle East and North Africa,United Arab Emirates,Household,Offline,H,4/9/2013,847719514,4/9/2013,7897,668.27,502.54,5277328.19,3968558.38,1308769.81 Middle East and North Africa,Jordan,Clothes,Online,M,10/5/2013,808615481,10/14/2013,6145,109.28,35.84,671525.60,220236.80,451288.80 Asia,Vietnam,Office Supplies,Online,H,5/30/2015,145886266,6/6/2015,9843,651.21,524.96,6409860.03,5167181.28,1242678.75 Sub-Saharan Africa,Lesotho,Cereal,Offline,L,12/9/2012,290830695,1/9/2013,2120,205.70,117.11,436084.00,248273.20,187810.80 Sub-Saharan Africa,Cameroon,Cereal,Offline,H,4/13/2017,495060098,5/13/2017,8139,205.70,117.11,1674192.30,953158.29,721034.01 Sub-Saharan Africa,Liberia,Personal Care,Offline,L,12/8/2013,980498301,1/19/2014,91,81.73,56.67,7437.43,5156.97,2280.46 Australia and Oceania,Marshall Islands,Clothes,Offline,L,3/4/2012,689381635,3/22/2012,2200,109.28,35.84,240416.00,78848.00,161568.00 Europe,Ireland,Clothes,Offline,L,12/25/2010,434258925,2/13/2011,5721,109.28,35.84,625190.88,205040.64,420150.24 Middle East and North Africa,Oman,Meat,Offline,M,5/30/2010,647991502,7/6/2010,3940,421.89,364.69,1662246.60,1436878.60,225368.00 Australia and Oceania,Samoa ,Beverages,Online,C,5/10/2015,933753192,6/2/2015,7174,47.45,31.79,340406.30,228061.46,112344.84 Asia,South Korea,Snacks,Online,L,8/19/2016,515030324,8/30/2016,7773,152.58,97.44,1186004.34,757401.12,428603.22 Middle East and North Africa,Turkey,Cereal,Online,M,6/28/2017,485621726,8/13/2017,5115,205.70,117.11,1052155.50,599017.65,453137.85 Middle East and North Africa,United Arab Emirates,Cosmetics,Offline,M,8/30/2014,659638726,9/30/2014,613,437.20,263.33,268003.60,161421.29,106582.31 Middle East and North Africa,Afghanistan,Beverages,Offline,H,4/22/2017,921505153,5/3/2017,2707,47.45,31.79,128447.15,86055.53,42391.62 Sub-Saharan Africa,Sudan,Clothes,Online,C,12/5/2012,775957334,1/19/2013,1873,109.28,35.84,204681.44,67128.32,137553.12 Sub-Saharan Africa,Mozambique,Cosmetics,Offline,M,8/8/2016,698044097,9/4/2016,5615,437.20,263.33,2454878.00,1478597.95,976280.05 Middle East and North Africa,Pakistan,Office Supplies,Online,M,3/8/2014,783126771,3/26/2014,3469,651.21,524.96,2259047.49,1821086.24,437961.25 Sub-Saharan Africa,Republic of the Congo,Beverages,Offline,L,7/5/2011,296879184,7/19/2011,2003,47.45,31.79,95042.35,63675.37,31366.98 Sub-Saharan Africa,Namibia,Snacks,Online,L,7/1/2015,825287663,7/27/2015,9814,152.58,97.44,1497420.12,956276.16,541143.96 Europe,Slovenia,Vegetables,Offline,M,3/10/2015,424651038,3/12/2015,2534,154.06,90.93,390388.04,230416.62,159971.42 Europe,Switzerland,Vegetables,Online,L,11/1/2015,371580636,11/7/2015,7822,154.06,90.93,1205057.32,711254.46,493802.86 Asia,Mongolia,Cereal,Offline,C,5/26/2012,213000285,7/4/2012,373,205.70,117.11,76726.10,43682.03,33044.07 Europe,Bosnia and Herzegovina,Cosmetics,Online,C,1/21/2016,916146314,2/2/2016,6908,437.20,263.33,3020177.60,1819083.64,1201093.96 Sub-Saharan Africa,Angola,Household,Offline,L,7/12/2012,818567550,8/10/2012,1183,668.27,502.54,790563.41,594504.82,196058.59 Europe,Vatican City,Fruits,Offline,L,5/3/2011,578125321,5/8/2011,8985,9.33,6.92,83830.05,62176.20,21653.85 Central America and the Caribbean,Trinidad and Tobago,Personal Care,Offline,L,9/12/2011,922993457,10/26/2011,3130,81.73,56.67,255814.90,177377.10,78437.80 Sub-Saharan Africa,Republic of the Congo,Cosmetics,Online,L,11/22/2013,401658284,12/4/2013,8467,437.20,263.33,3701772.40,2229615.11,1472157.29 Sub-Saharan Africa,Eritrea,Personal Care,Online,C,6/29/2015,332918632,7/14/2015,6876,81.73,56.67,561975.48,389662.92,172312.56 Sub-Saharan Africa,Burkina Faso,Fruits,Online,L,2/14/2015,755885827,3/7/2015,2269,9.33,6.92,21169.77,15701.48,5468.29 Sub-Saharan Africa,Rwanda,Household,Offline,M,4/4/2016,879983699,5/11/2016,5587,668.27,502.54,3733624.49,2807690.98,925933.51 Europe,Portugal,Snacks,Offline,H,11/16/2015,434948575,12/19/2015,9804,152.58,97.44,1495894.32,955301.76,540592.56 Asia,Vietnam,Cosmetics,Online,M,10/19/2015,120829284,11/5/2015,4925,437.20,263.33,2153210.00,1296900.25,856309.75 Europe,Iceland,Household,Offline,C,5/3/2011,257987153,5/15/2011,2986,668.27,502.54,1995454.22,1500584.44,494869.78 Asia,South Korea,Meat,Online,M,3/26/2010,337096011,4/21/2010,3056,421.89,364.69,1289295.84,1114492.64,174803.20 Australia and Oceania,New Zealand,Meat,Online,H,9/19/2013,369142186,10/23/2013,6231,421.89,364.69,2628796.59,2272383.39,356413.20 Middle East and North Africa,United Arab Emirates,Household,Online,M,9/23/2012,435424506,11/7/2012,642,668.27,502.54,429029.34,322630.68,106398.66 Asia,Cambodia,Clothes,Online,H,6/1/2014,237554299,7/7/2014,6451,109.28,35.84,704965.28,231203.84,473761.44 Sub-Saharan Africa,Cameroon,Office Supplies,Offline,C,8/18/2015,447455394,9/6/2015,849,651.21,524.96,552877.29,445691.04,107186.25 Central America and the Caribbean,Guatemala,Office Supplies,Offline,L,4/14/2014,457364118,5/4/2014,3061,651.21,524.96,1993353.81,1606902.56,386451.25 Europe,Switzerland,Vegetables,Offline,M,2/26/2013,629829299,3/2/2013,9341,154.06,90.93,1439074.46,849377.13,589697.33 Asia,China,Personal Care,Online,L,1/29/2016,947712266,1/29/2016,7975,81.73,56.67,651796.75,451943.25,199853.50 Middle East and North Africa,Algeria,Household,Offline,M,8/2/2016,564186847,8/25/2016,4280,668.27,502.54,2860195.60,2150871.20,709324.40 Sub-Saharan Africa,Mauritania,Clothes,Online,C,11/11/2016,952739369,11/12/2016,5606,109.28,35.84,612623.68,200919.04,411704.64 Europe,Belarus,Vegetables,Offline,L,5/13/2016,957168662,5/18/2016,6332,154.06,90.93,975507.92,575768.76,399739.16 Sub-Saharan Africa,Lesotho,Office Supplies,Online,H,8/11/2015,841586053,8/24/2015,2870,651.21,524.96,1868972.70,1506635.20,362337.50 Sub-Saharan Africa,Seychelles ,Fruits,Online,H,5/26/2012,940415370,7/12/2012,8661,9.33,6.92,80807.13,59934.12,20873.01 Australia and Oceania,Tonga,Clothes,Online,C,3/5/2013,308392941,4/10/2013,9179,109.28,35.84,1003081.12,328975.36,674105.76 Asia,China,Beverages,Offline,M,1/27/2014,770567595,1/30/2014,6930,47.45,31.79,328828.50,220304.70,108523.80 Sub-Saharan Africa,Democratic Republic of the Congo,Personal Care,Offline,C,4/22/2012,172300660,5/25/2012,6449,81.73,56.67,527076.77,365464.83,161611.94 Middle East and North Africa,Morocco,Personal Care,Online,M,7/4/2017,929265964,8/20/2017,9304,81.73,56.67,760415.92,527257.68,233158.24 North America,Canada,Personal Care,Offline,L,1/29/2010,577449834,2/28/2010,9093,81.73,56.67,743170.89,515300.31,227870.58 Asia,Philippines,Vegetables,Online,M,2/22/2013,323151099,3/2/2013,6446,154.06,90.93,993070.76,586134.78,406935.98 Middle East and North Africa,Pakistan,Cosmetics,Offline,H,1/10/2013,992981088,1/26/2013,4025,437.20,263.33,1759730.00,1059903.25,699826.75 Central America and the Caribbean,Haiti,Snacks,Offline,H,1/17/2016,783863627,2/18/2016,1521,152.58,97.44,232074.18,148206.24,83867.94 Sub-Saharan Africa,Sao Tome and Principe,Meat,Online,C,6/9/2014,213035047,7/22/2014,659,421.89,364.69,278025.51,240330.71,37694.80 Australia and Oceania,East Timor,Household,Online,C,11/13/2012,768044173,12/9/2012,193,668.27,502.54,128976.11,96990.22,31985.89 Sub-Saharan Africa,Comoros,Meat,Online,M,1/23/2017,856752336,2/14/2017,910,421.89,364.69,383919.90,331867.90,52052.00 Europe,Russia,Cosmetics,Online,H,11/18/2014,757333362,11/28/2014,626,437.20,263.33,273687.20,164844.58,108842.62 Europe,Germany,Clothes,Offline,H,5/26/2010,368273580,6/26/2010,9191,109.28,35.84,1004392.48,329405.44,674987.04 Sub-Saharan Africa,Zimbabwe,Fruits,Offline,L,7/14/2012,558371818,7/30/2012,3484,9.33,6.92,32505.72,24109.28,8396.44 Central America and the Caribbean,Dominica,Household,Offline,C,2/17/2016,916739404,2/24/2016,2416,668.27,502.54,1614540.32,1214136.64,400403.68 Middle East and North Africa,Jordan,Snacks,Offline,M,4/22/2013,202800166,5/31/2013,1931,152.58,97.44,294631.98,188156.64,106475.34 Europe,Norway,Meat,Offline,H,5/24/2012,396290433,5/27/2012,10000,421.89,364.69,4218900.00,3646900.00,572000.00 Europe,Russia,Vegetables,Online,C,6/7/2011,847259032,7/12/2011,1630,154.06,90.93,251117.80,148215.90,102901.90 Middle East and North Africa,Turkey,Baby Food,Offline,C,2/3/2017,526067292,3/6/2017,3857,255.28,159.42,984614.96,614882.94,369732.02 Middle East and North Africa,Israel,Cereal,Online,M,8/11/2010,273389041,9/5/2010,747,205.70,117.11,153657.90,87481.17,66176.73 North America,Mexico,Beverages,Offline,H,2/23/2012,550210607,3/10/2012,8400,47.45,31.79,398580.00,267036.00,131544.00 Asia,Bangladesh,Cereal,Offline,L,6/5/2016,987830817,7/17/2016,9945,205.70,117.11,2045686.50,1164658.95,881027.55 Asia,Tajikistan,Household,Offline,M,9/1/2011,837861001,10/21/2011,544,668.27,502.54,363538.88,273381.76,90157.12 Sub-Saharan Africa,Sao Tome and Principe,Cereal,Online,C,8/26/2013,322224986,9/23/2013,2389,205.70,117.11,491417.30,279775.79,211641.51 Asia,Indonesia,Office Supplies,Offline,C,7/6/2016,183159101,8/4/2016,9703,651.21,524.96,6318690.63,5093686.88,1225003.75 Sub-Saharan Africa,Zambia,Clothes,Online,C,8/30/2011,333212172,10/12/2011,3741,109.28,35.84,408816.48,134077.44,274739.04 Central America and the Caribbean,Dominican Republic,Beverages,Online,C,4/16/2014,305245530,5/7/2014,7790,47.45,31.79,369635.50,247644.10,121991.40 Central America and the Caribbean,Grenada,Cosmetics,Offline,L,2/25/2014,602433001,3/1/2014,2167,437.20,263.33,947412.40,570636.11,376776.29 Europe,Estonia,Baby Food,Offline,L,3/19/2017,448260915,5/8/2017,9221,255.28,159.42,2353936.88,1470011.82,883925.06 Central America and the Caribbean,Grenada,Office Supplies,Offline,C,7/28/2011,936528098,9/13/2011,8331,651.21,524.96,5425230.51,4373441.76,1051788.75 Asia,Maldives,Baby Food,Online,H,9/4/2016,981345880,9/7/2016,908,255.28,159.42,231794.24,144753.36,87040.88 Sub-Saharan Africa,Nigeria,Office Supplies,Online,H,5/27/2011,467138087,6/9/2011,5396,651.21,524.96,3513929.16,2832684.16,681245.00 Sub-Saharan Africa,Senegal,Baby Food,Online,H,7/16/2013,698641049,8/19/2013,2267,255.28,159.42,578719.76,361405.14,217314.62 Europe,Slovakia,Meat,Offline,H,6/13/2015,350903594,6/24/2015,9026,421.89,364.69,3807979.14,3291691.94,516287.20 Australia and Oceania,Solomon Islands,Baby Food,Online,L,7/20/2010,419287049,7/25/2010,5210,255.28,159.42,1330008.80,830578.20,499430.60 Australia and Oceania,Samoa ,Cereal,Offline,H,4/5/2012,169465243,4/16/2012,7386,205.70,117.11,1519300.20,864974.46,654325.74 Australia and Oceania,Vanuatu,Household,Offline,C,5/8/2012,287424504,6/19/2012,4153,668.27,502.54,2775325.31,2087048.62,688276.69 Australia and Oceania,Papua New Guinea,Cereal,Online,H,1/3/2015,629463660,2/17/2015,1140,205.70,117.11,234498.00,133505.40,100992.60 Sub-Saharan Africa,Chad,Fruits,Online,C,5/3/2010,672194039,6/5/2010,6009,9.33,6.92,56063.97,41582.28,14481.69 Europe,Lithuania,Vegetables,Offline,C,1/9/2016,862539470,1/16/2016,3451,154.06,90.93,531661.06,313799.43,217861.63 Middle East and North Africa,Bahrain,Cereal,Online,M,12/9/2012,367736279,1/8/2013,192,205.70,117.11,39494.40,22485.12,17009.28 Europe,Poland,Office Supplies,Offline,C,2/10/2017,225333297,2/14/2017,9985,651.21,524.96,6502331.85,5241725.60,1260606.25 Sub-Saharan Africa,Benin,Baby Food,Offline,M,5/2/2015,193191850,6/17/2015,8616,255.28,159.42,2199492.48,1373562.72,825929.76 North America,United States of America,Personal Care,Offline,M,5/26/2014,999485766,6/2/2014,8904,81.73,56.67,727723.92,504589.68,223134.24 Sub-Saharan Africa,Ghana,Personal Care,Offline,H,8/5/2014,292701375,8/11/2014,5696,81.73,56.67,465534.08,322792.32,142741.76 Europe,Georgia,Clothes,Offline,H,6/24/2013,291637504,8/12/2013,873,109.28,35.84,95401.44,31288.32,64113.12 Middle East and North Africa,United Arab Emirates,Vegetables,Offline,L,4/3/2017,135405480,4/4/2017,8346,154.06,90.93,1285784.76,758901.78,526882.98 Sub-Saharan Africa,Malawi,Snacks,Online,M,4/5/2014,833429133,4/26/2014,9056,152.58,97.44,1381764.48,882416.64,499347.84 Middle East and North Africa,Lebanon,Office Supplies,Online,C,8/9/2016,315444791,9/8/2016,5978,651.21,524.96,3892933.38,3138210.88,754722.50 Asia,Malaysia,Vegetables,Offline,H,12/21/2010,181501281,1/24/2011,9117,154.06,90.93,1404565.02,829008.81,575556.21 Sub-Saharan Africa,Togo,Personal Care,Online,M,5/24/2015,751959931,5/30/2015,509,81.73,56.67,41600.57,28845.03,12755.54 Central America and the Caribbean,Cuba,Office Supplies,Offline,H,11/21/2014,617494571,11/27/2014,9220,651.21,524.96,6004156.20,4840131.20,1164025.00 Sub-Saharan Africa,Tanzania,Household,Offline,L,9/10/2010,689091527,9/16/2010,6351,668.27,502.54,4244182.77,3191631.54,1052551.23 Asia,Bhutan,Fruits,Offline,C,6/15/2016,148049628,7/4/2016,30,9.33,6.92,279.90,207.60,72.30 Australia and Oceania,Tonga,Baby Food,Offline,C,8/10/2016,495980203,8/29/2016,419,255.28,159.42,106962.32,66796.98,40165.34 Europe,Andorra,Personal Care,Online,L,8/1/2015,604807078,8/20/2015,4709,81.73,56.67,384866.57,266859.03,118007.54 Middle East and North Africa,Qatar,Household,Offline,L,4/15/2011,766766583,5/31/2011,2126,668.27,502.54,1420742.02,1068400.04,352341.98 Central America and the Caribbean,Costa Rica,Snacks,Online,M,1/26/2014,444407546,2/7/2014,8923,152.58,97.44,1361471.34,869457.12,492014.22 Australia and Oceania,East Timor,Personal Care,Online,C,8/15/2012,520591294,10/3/2012,3388,81.73,56.67,276901.24,191997.96,84903.28 Europe,Bulgaria,Office Supplies,Online,C,8/16/2015,148491656,9/4/2015,836,651.21,524.96,544411.56,438866.56,105545.00 Central America and the Caribbean,Nicaragua,Personal Care,Offline,L,2/9/2010,801594960,2/12/2010,8617,81.73,56.67,704267.41,488325.39,215942.02 Middle East and North Africa,Iran,Vegetables,Offline,L,9/7/2010,423700034,9/27/2010,1111,154.06,90.93,171160.66,101023.23,70137.43 Asia,Turkmenistan,Snacks,Offline,M,4/16/2010,178918206,4/16/2010,4728,152.58,97.44,721398.24,460696.32,260701.92 Asia,Mongolia,Fruits,Online,C,4/22/2014,401673305,5/4/2014,2912,9.33,6.92,27168.96,20151.04,7017.92 Europe,Slovenia,Personal Care,Online,C,1/8/2014,146701657,2/17/2014,1135,81.73,56.67,92763.55,64320.45,28443.10 Middle East and North Africa,Oman,Snacks,Offline,C,2/25/2013,339052093,2/27/2013,1904,152.58,97.44,290512.32,185525.76,104986.56 Asia,Bhutan,Clothes,Online,C,6/25/2016,624085938,7/29/2016,9753,109.28,35.84,1065807.84,349547.52,716260.32 Asia,Bangladesh,Vegetables,Online,C,12/3/2010,717477023,12/11/2010,6250,154.06,90.93,962875.00,568312.50,394562.50 Middle East and North Africa,Qatar,Baby Food,Offline,M,9/28/2014,855211675,10/8/2014,4994,255.28,159.42,1274868.32,796143.48,478724.84 Asia,Sri Lanka,Household,Online,C,3/14/2013,443588721,3/28/2013,6615,668.27,502.54,4420606.05,3324302.10,1096303.95 Australia and Oceania,Nauru,Household,Offline,C,5/4/2015,309219491,5/11/2015,3774,668.27,502.54,2522050.98,1896585.96,625465.02 Europe,Romania,Clothes,Offline,L,4/30/2012,449027812,5/14/2012,6163,109.28,35.84,673492.64,220881.92,452610.72 Middle East and North Africa,Somalia,Baby Food,Offline,H,7/23/2011,480250012,8/17/2011,5506,255.28,159.42,1405571.68,877766.52,527805.16 Middle East and North Africa,Turkey,Baby Food,Online,L,2/11/2010,990434920,2/26/2010,557,255.28,159.42,142190.96,88796.94,53394.02 Europe,Italy,Snacks,Online,C,9/21/2013,387443864,10/18/2013,2104,152.58,97.44,321028.32,205013.76,116014.56 Sub-Saharan Africa,Tanzania,Clothes,Offline,M,4/1/2010,749450671,5/9/2010,7963,109.28,35.84,870196.64,285393.92,584802.72 Australia and Oceania,Kiribati,Snacks,Online,M,5/3/2011,174941670,6/12/2011,7983,152.58,97.44,1218046.14,777863.52,440182.62 Asia,Kyrgyzstan,Cereal,Online,M,10/3/2010,432715690,10/16/2010,9043,205.70,117.11,1860145.10,1059025.73,801119.37 Sub-Saharan Africa,Central African Republic,Vegetables,Offline,L,12/5/2010,211884057,12/6/2010,56,154.06,90.93,8627.36,5092.08,3535.28 Sub-Saharan Africa,Burundi,Household,Online,C,7/18/2011,971870601,8/24/2011,6963,668.27,502.54,4653164.01,3499186.02,1153977.99 Sub-Saharan Africa,Democratic Republic of the Congo,Personal Care,Online,L,5/12/2013,192411649,5/25/2013,7738,81.73,56.67,632426.74,438512.46,193914.28 Australia and Oceania,Fiji,Cereal,Online,H,6/2/2014,823556029,6/17/2014,7385,205.70,117.11,1519094.50,864857.35,654237.15 Europe,Bulgaria,Meat,Online,H,10/24/2013,935665071,12/2/2013,2942,421.89,364.69,1241200.38,1072917.98,168282.40 Middle East and North Africa,Somalia,Personal Care,Offline,L,7/3/2015,469412600,7/22/2015,8475,81.73,56.67,692661.75,480278.25,212383.50 Asia,Bhutan,Household,Offline,M,12/5/2016,785784947,12/8/2016,83,668.27,502.54,55466.41,41710.82,13755.59 Europe,Andorra,Fruits,Online,C,10/25/2012,616080939,11/24/2012,895,9.33,6.92,8350.35,6193.40,2156.95 Central America and the Caribbean,Honduras,Meat,Online,L,2/5/2014,111911904,3/24/2014,6074,421.89,364.69,2562559.86,2215127.06,347432.80 Australia and Oceania,Samoa ,Snacks,Offline,H,11/3/2013,395201671,12/16/2013,7811,152.58,97.44,1191802.38,761103.84,430698.54 Middle East and North Africa,Jordan,Cosmetics,Online,M,10/2/2013,408186566,10/20/2013,331,437.20,263.33,144713.20,87162.23,57550.97 Europe,Sweden,Snacks,Offline,L,10/23/2012,963415420,11/6/2012,4887,152.58,97.44,745658.46,476189.28,269469.18 Asia,India,Personal Care,Online,C,1/26/2011,693749558,2/28/2011,4766,81.73,56.67,389525.18,270089.22,119435.96 Europe,Austria,Personal Care,Online,C,6/4/2013,102362811,6/19/2013,285,81.73,56.67,23293.05,16150.95,7142.10 Sub-Saharan Africa,Burundi,Office Supplies,Online,C,9/12/2010,212741506,9/27/2010,3794,651.21,524.96,2470690.74,1991698.24,478992.50 Asia,Brunei,Baby Food,Online,M,9/12/2013,318684470,10/8/2013,4671,255.28,159.42,1192412.88,744650.82,447762.06 Australia and Oceania,New Zealand,Baby Food,Online,H,8/6/2011,234303033,8/10/2011,4329,255.28,159.42,1105107.12,690129.18,414977.94 Central America and the Caribbean,El Salvador,Baby Food,Offline,M,7/18/2013,744021022,8/31/2013,1209,255.28,159.42,308633.52,192738.78,115894.74 Sub-Saharan Africa,Tanzania,Meat,Offline,C,8/16/2014,452574765,8/17/2014,5785,421.89,364.69,2440633.65,2109731.65,330902.00 Middle East and North Africa,Morocco,Baby Food,Online,M,10/6/2014,735013091,10/30/2014,5562,255.28,159.42,1419867.36,886694.04,533173.32 Sub-Saharan Africa,Malawi,Snacks,Offline,M,12/17/2014,786697328,1/6/2015,76,152.58,97.44,11596.08,7405.44,4190.64 Europe,Belarus,Vegetables,Offline,M,6/27/2013,773301303,8/4/2013,5895,154.06,90.93,908183.70,536032.35,372151.35 Middle East and North Africa,Pakistan,Household,Offline,M,4/2/2017,480811345,5/8/2017,1617,668.27,502.54,1080592.59,812607.18,267985.41 Europe,Ukraine,Cereal,Online,H,4/20/2015,665526282,5/5/2015,2871,205.70,117.11,590564.70,336222.81,254341.89 Australia and Oceania,Papua New Guinea,Office Supplies,Offline,M,11/19/2012,804057443,12/27/2012,7320,651.21,524.96,4766857.20,3842707.20,924150.00 Sub-Saharan Africa,Madagascar,Beverages,Online,H,7/17/2012,443328654,7/20/2012,9655,47.45,31.79,458129.75,306932.45,151197.30 Asia,Mongolia,Fruits,Online,M,4/18/2010,550576245,5/14/2010,6601,9.33,6.92,61587.33,45678.92,15908.41 Europe,Croatia,Vegetables,Offline,M,8/5/2014,363349044,8/13/2014,1911,154.06,90.93,294408.66,173767.23,120641.43 Sub-Saharan Africa,Sierra Leone,Beverages,Offline,L,3/26/2012,539508378,4/10/2012,1373,47.45,31.79,65148.85,43647.67,21501.18 Europe,Sweden,Clothes,Online,H,1/2/2010,907228076,2/21/2010,7803,109.28,35.84,852711.84,279659.52,573052.32 Sub-Saharan Africa,South Sudan,Vegetables,Offline,C,10/8/2015,914994466,11/7/2015,6050,154.06,90.93,932063.00,550126.50,381936.50 Asia,India,Cosmetics,Offline,L,12/9/2011,981606376,12/19/2011,7995,437.20,263.33,3495414.00,2105323.35,1390090.65 Sub-Saharan Africa,Uganda,Household,Offline,C,4/16/2012,246175134,4/25/2012,7547,668.27,502.54,5043433.69,3792669.38,1250764.31 Sub-Saharan Africa,Mozambique,Fruits,Offline,M,9/24/2012,618124568,10/28/2012,5651,9.33,6.92,52723.83,39104.92,13618.91 Asia,Bhutan,Cosmetics,Offline,C,3/27/2010,927191007,3/31/2010,5278,437.20,263.33,2307541.60,1389855.74,917685.86 Asia,Kyrgyzstan,Household,Offline,H,3/12/2014,973423278,4/10/2014,6434,668.27,502.54,4299649.18,3233342.36,1066306.82 Europe,Serbia,Clothes,Offline,M,5/8/2012,177182710,6/6/2012,1156,109.28,35.84,126327.68,41431.04,84896.64 Middle East and North Africa,Bahrain,Personal Care,Online,C,6/12/2012,729143130,6/26/2012,8510,81.73,56.67,695522.30,482261.70,213260.60 Sub-Saharan Africa,Swaziland,Baby Food,Offline,M,9/17/2015,840290868,9/25/2015,9596,255.28,159.42,2449666.88,1529794.32,919872.56 Sub-Saharan Africa,Mauritania,Cereal,Online,C,1/29/2013,591924750,2/20/2013,2542,205.70,117.11,522889.40,297693.62,225195.78 Asia,Brunei,Office Supplies,Online,L,9/15/2011,585656106,10/16/2011,7511,651.21,524.96,4891238.31,3942974.56,948263.75 Australia and Oceania,Fiji,Beverages,Online,L,1/3/2016,593408763,2/20/2016,1695,47.45,31.79,80427.75,53884.05,26543.70 Sub-Saharan Africa,Zimbabwe,Cereal,Offline,L,5/2/2016,907419049,6/20/2016,4316,205.70,117.11,887801.20,505446.76,382354.44 Sub-Saharan Africa,Central African Republic,Personal Care,Offline,L,6/17/2015,990235793,8/4/2015,1631,81.73,56.67,133301.63,92428.77,40872.86 Sub-Saharan Africa,Togo,Snacks,Online,M,3/18/2017,824720323,4/11/2017,1925,152.58,97.44,293716.50,187572.00,106144.50 North America,Canada,Office Supplies,Online,L,2/18/2015,464046466,4/2/2015,516,651.21,524.96,336024.36,270879.36,65145.00 Europe,Sweden,Meat,Online,L,5/27/2011,481700551,6/30/2011,4752,421.89,364.69,2004821.28,1733006.88,271814.40 Asia,Taiwan,Meat,Online,C,1/17/2013,621481406,1/31/2013,9014,421.89,364.69,3802916.46,3287315.66,515600.80 North America,Mexico,Office Supplies,Online,H,1/6/2013,247500360,1/21/2013,9711,651.21,524.96,6323900.31,5097886.56,1226013.75 Europe,Hungary,Meat,Offline,C,9/7/2016,594181239,9/14/2016,288,421.89,364.69,121504.32,105030.72,16473.60 Asia,Kyrgyzstan,Household,Online,M,5/6/2015,716260373,5/27/2015,6216,668.27,502.54,4153966.32,3123788.64,1030177.68 Europe,Russia,Baby Food,Offline,L,9/15/2012,638786590,10/14/2012,2,255.28,159.42,510.56,318.84,191.72 Europe,Germany,Cosmetics,Offline,H,7/23/2013,907121217,8/5/2013,6181,437.20,263.33,2702333.20,1627642.73,1074690.47 Sub-Saharan Africa,Senegal,Cosmetics,Offline,L,5/20/2012,336938083,7/8/2012,6321,437.20,263.33,2763541.20,1664508.93,1099032.27 Australia and Oceania,Tonga,Household,Offline,L,4/21/2012,964223515,5/10/2012,4020,668.27,502.54,2686445.40,2020210.80,666234.60 Middle East and North Africa,Iraq,Fruits,Online,L,9/24/2013,395276343,11/12/2013,9909,9.33,6.92,92450.97,68570.28,23880.69 Sub-Saharan Africa,Ethiopia,Office Supplies,Offline,M,7/21/2010,356707894,8/16/2010,6648,651.21,524.96,4329244.08,3489934.08,839310.00 Europe,Italy,Snacks,Offline,L,8/29/2016,845441997,9/23/2016,3929,152.58,97.44,599486.82,382841.76,216645.06 Sub-Saharan Africa,Cape Verde,Household,Offline,L,9/22/2016,578714978,10/27/2016,3477,668.27,502.54,2323574.79,1747331.58,576243.21 Central America and the Caribbean,Saint Lucia,Meat,Offline,C,5/29/2015,144075667,7/1/2015,4047,421.89,364.69,1707388.83,1475900.43,231488.40 Asia,Tajikistan,Vegetables,Online,C,11/10/2010,649385392,11/20/2010,6423,154.06,90.93,989527.38,584043.39,405483.99 Europe,Ireland,Personal Care,Online,C,8/30/2013,572817981,10/13/2013,8425,81.73,56.67,688575.25,477444.75,211130.50 Central America and the Caribbean,Cuba,Cereal,Online,L,9/29/2012,712859761,10/26/2012,9900,205.70,117.11,2036430.00,1159389.00,877041.00 Middle East and North Africa,Yemen,Baby Food,Online,L,1/9/2017,138309562,2/17/2017,7728,255.28,159.42,1972803.84,1231997.76,740806.08 Sub-Saharan Africa,South Sudan,Fruits,Online,L,10/9/2013,238278710,11/2/2013,820,9.33,6.92,7650.60,5674.40,1976.20 Middle East and North Africa,Saudi Arabia,Household,Online,C,4/3/2010,672191035,4/16/2010,5120,668.27,502.54,3421542.40,2573004.80,848537.60 Asia,South Korea,Baby Food,Online,M,10/20/2014,719782865,10/22/2014,8600,255.28,159.42,2195408.00,1371012.00,824396.00 Europe,Poland,Baby Food,Online,C,4/21/2010,631103026,5/15/2010,6265,255.28,159.42,1599329.20,998766.30,600562.90 Europe,Malta,Fruits,Online,L,1/3/2011,276512849,1/28/2011,5152,9.33,6.92,48068.16,35651.84,12416.32 Europe,Germany,Vegetables,Offline,H,4/18/2013,496686160,5/29/2013,9327,154.06,90.93,1436917.62,848104.11,588813.51 North America,Canada,Personal Care,Offline,C,8/11/2014,852609288,8/30/2014,4890,81.73,56.67,399659.70,277116.30,122543.40 Central America and the Caribbean,Honduras,Personal Care,Offline,M,4/1/2017,975581061,5/18/2017,4970,81.73,56.67,406198.10,281649.90,124548.20 Middle East and North Africa,Iran,Personal Care,Offline,H,12/31/2016,117212808,1/22/2017,4729,81.73,56.67,386501.17,267992.43,118508.74 Middle East and North Africa,Azerbaijan,Clothes,Online,C,7/4/2014,299428355,8/8/2014,6359,109.28,35.84,694911.52,227906.56,467004.96 Europe,Lithuania,Cosmetics,Online,M,6/19/2011,464464032,7/25/2011,4083,437.20,263.33,1785087.60,1075176.39,709911.21 Middle East and North Africa,Azerbaijan,Cosmetics,Offline,L,6/9/2014,524868667,6/23/2014,9157,437.20,263.33,4003440.40,2411312.81,1592127.59 North America,Canada,Office Supplies,Offline,H,11/24/2015,913503587,12/16/2015,4866,651.21,524.96,3168787.86,2554455.36,614332.50 Asia,Japan,Cosmetics,Offline,H,3/4/2013,333542621,3/6/2013,1528,437.20,263.33,668041.60,402368.24,265673.36 Asia,Nepal,Beverages,Offline,L,3/23/2012,708472096,4/1/2012,1492,47.45,31.79,70795.40,47430.68,23364.72 Europe,Serbia,Clothes,Offline,M,4/19/2016,432090842,5/23/2016,4137,109.28,35.84,452091.36,148270.08,303821.28 Sub-Saharan Africa,Togo,Cosmetics,Offline,M,7/23/2014,218510186,8/26/2014,875,437.20,263.33,382550.00,230413.75,152136.25 Europe,Luxembourg,Clothes,Online,H,2/28/2016,852153956,3/1/2016,147,109.28,35.84,16064.16,5268.48,10795.68 Australia and Oceania,Vanuatu,Cereal,Offline,C,3/7/2016,937758481,4/24/2016,2428,205.70,117.11,499439.60,284343.08,215096.52 Asia,Bangladesh,Clothes,Offline,L,7/22/2014,950372588,8/6/2014,5223,109.28,35.84,570769.44,187192.32,383577.12 Sub-Saharan Africa,Burundi,Snacks,Offline,H,4/10/2012,985357606,4/24/2012,8067,152.58,97.44,1230862.86,786048.48,444814.38 Sub-Saharan Africa,Burkina Faso,Snacks,Online,L,3/9/2015,308387362,4/20/2015,7528,152.58,97.44,1148622.24,733528.32,415093.92 Europe,Ukraine,Beverages,Offline,H,1/19/2015,505448186,1/27/2015,2205,47.45,31.79,104627.25,70096.95,34530.30 Asia,Taiwan,Fruits,Offline,L,1/25/2016,532838904,2/8/2016,7728,9.33,6.92,72102.24,53477.76,18624.48 Europe,Belarus,Clothes,Offline,M,11/28/2015,767170846,12/18/2015,1756,109.28,35.84,191895.68,62935.04,128960.64 Middle East and North Africa,Syria,Personal Care,Offline,L,2/9/2017,755367839,3/9/2017,8984,81.73,56.67,734262.32,509123.28,225139.04 Asia,Laos,Meat,Online,M,9/13/2015,564666211,9/13/2015,6135,421.89,364.69,2588295.15,2237373.15,350922.00 Middle East and North Africa,Somalia,Meat,Online,H,7/20/2012,332614791,8/29/2012,6963,421.89,364.69,2937620.07,2539336.47,398283.60 Asia,Turkmenistan,Cereal,Online,H,3/6/2017,717074906,3/18/2017,7255,205.70,117.11,1492353.50,849633.05,642720.45 Europe,United Kingdom,Cosmetics,Offline,M,8/27/2013,646220386,9/16/2013,9827,437.20,263.33,4296364.40,2587743.91,1708620.49 Asia,North Korea,Cosmetics,Online,C,5/31/2017,468537557,7/1/2017,9530,437.20,263.33,4166516.00,2509534.90,1656981.10 Sub-Saharan Africa,Guinea,Household,Offline,M,11/14/2010,602825248,1/3/2011,8242,668.27,502.54,5507881.34,4141934.68,1365946.66 Central America and the Caribbean,Haiti,Cereal,Online,L,5/17/2015,188194787,7/2/2015,9874,205.70,117.11,2031081.80,1156344.14,874737.66 Sub-Saharan Africa,Zambia,Snacks,Online,C,9/6/2011,234070003,9/30/2011,5370,152.58,97.44,819354.60,523252.80,296101.80 Sub-Saharan Africa,South Africa,Cereal,Offline,H,11/30/2011,470187222,12/7/2011,7703,205.70,117.11,1584507.10,902098.33,682408.77 Asia,Taiwan,Cosmetics,Online,M,4/26/2010,696595275,4/27/2010,6877,437.20,263.33,3006624.40,1810920.41,1195703.99 Asia,Turkmenistan,Baby Food,Offline,M,5/10/2017,333655488,6/8/2017,4928,255.28,159.42,1258019.84,785621.76,472398.08 Sub-Saharan Africa,Mauritania,Snacks,Online,H,6/23/2010,672041690,6/23/2010,925,152.58,97.44,141136.50,90132.00,51004.50 Australia and Oceania,Marshall Islands,Meat,Online,L,8/18/2013,822740209,9/25/2013,5966,421.89,364.69,2516995.74,2175740.54,341255.20 Sub-Saharan Africa,Burundi,Baby Food,Online,C,3/6/2010,867049872,3/8/2010,8180,255.28,159.42,2088190.40,1304055.60,784134.80 Asia,Singapore,Baby Food,Offline,H,11/5/2014,506582009,11/26/2014,7729,255.28,159.42,1973059.12,1232157.18,740901.94 Central America and the Caribbean,Saint Vincent and the Grenadines,Vegetables,Offline,H,11/27/2016,413260447,12/1/2016,1805,154.06,90.93,278078.30,164128.65,113949.65 Sub-Saharan Africa,Benin,Household,Offline,H,4/14/2014,879321515,5/14/2014,9632,668.27,502.54,6436776.64,4840465.28,1596311.36 Sub-Saharan Africa,Sudan,Meat,Online,M,4/27/2017,467314040,5/8/2017,7464,421.89,364.69,3148986.96,2722046.16,426940.80 Australia and Oceania,Fiji,Vegetables,Online,H,9/13/2014,960099351,10/11/2014,3588,154.06,90.93,552767.28,326256.84,226510.44 Sub-Saharan Africa,Mauritania,Household,Offline,L,2/12/2015,610851275,3/29/2015,3322,668.27,502.54,2219992.94,1669437.88,550555.06 Europe,Netherlands,Household,Offline,H,3/2/2013,893056142,4/13/2013,4013,668.27,502.54,2681767.51,2016693.02,665074.49 Asia,Tajikistan,Snacks,Online,L,11/19/2015,650512778,12/25/2015,42,152.58,97.44,6408.36,4092.48,2315.88 Asia,Cambodia,Cosmetics,Offline,H,3/20/2016,147332513,3/29/2016,7819,437.20,263.33,3418466.80,2058977.27,1359489.53 Sub-Saharan Africa,Democratic Republic of the Congo,Snacks,Online,H,12/19/2011,617939174,1/18/2012,788,152.58,97.44,120233.04,76782.72,43450.32 Sub-Saharan Africa,Cape Verde,Beverages,Offline,C,2/19/2017,217069089,3/22/2017,4422,47.45,31.79,209823.90,140575.38,69248.52 Sub-Saharan Africa,Madagascar,Fruits,Offline,L,9/25/2012,769771087,10/28/2012,1225,9.33,6.92,11429.25,8477.00,2952.25 Sub-Saharan Africa,Guinea-Bissau,Clothes,Online,L,2/9/2011,121406495,3/2/2011,5735,109.28,35.84,626720.80,205542.40,421178.40 Sub-Saharan Africa,Guinea,Vegetables,Online,L,4/26/2014,687649142,5/12/2014,9517,154.06,90.93,1466189.02,865380.81,600808.21 Sub-Saharan Africa,Mauritania,Office Supplies,Online,H,5/6/2010,904485356,5/11/2010,6171,651.21,524.96,4018616.91,3239528.16,779088.75 Europe,Cyprus,Baby Food,Online,L,9/25/2014,178213965,10/6/2014,6328,255.28,159.42,1615411.84,1008809.76,606602.08 Central America and the Caribbean,Grenada,Vegetables,Online,C,10/23/2013,235446298,11/14/2013,2646,154.06,90.93,407642.76,240600.78,167041.98 Europe,Hungary,Cereal,Offline,C,11/22/2013,173106181,12/5/2013,4821,205.70,117.11,991679.70,564587.31,427092.39 Middle East and North Africa,Libya,Personal Care,Offline,L,10/17/2014,508429944,11/9/2014,4574,81.73,56.67,373833.02,259208.58,114624.44 Asia,Nepal,Fruits,Offline,M,8/7/2013,928966414,9/5/2013,661,9.33,6.92,6167.13,4574.12,1593.01 Sub-Saharan Africa,Zimbabwe,Cereal,Online,C,1/16/2016,742576920,2/6/2016,3867,205.70,117.11,795441.90,452864.37,342577.53 Australia and Oceania,East Timor,Personal Care,Online,C,7/20/2017,227435290,8/17/2017,2011,81.73,56.67,164359.03,113963.37,50395.66 Europe,Armenia,Meat,Offline,M,8/18/2014,182027852,9/29/2014,4941,421.89,364.69,2084558.49,1801933.29,282625.20 North America,Greenland,Cosmetics,Offline,H,3/12/2016,575153434,4/24/2016,9537,437.20,263.33,4169576.40,2511378.21,1658198.19 Asia,Taiwan,Fruits,Offline,C,2/2/2017,995923364,2/26/2017,4710,9.33,6.92,43944.30,32593.20,11351.10 Sub-Saharan Africa,Rwanda,Snacks,Offline,C,1/4/2017,203761470,1/22/2017,6402,152.58,97.44,976817.16,623810.88,353006.28 Europe,Poland,Meat,Offline,M,9/17/2016,178404080,10/6/2016,2587,421.89,364.69,1091429.43,943453.03,147976.40 Asia,Japan,Cereal,Offline,L,3/27/2014,269900023,4/6/2014,8270,205.70,117.11,1701139.00,968499.70,732639.30 Central America and the Caribbean,Guatemala,Cereal,Offline,L,4/1/2016,348610627,5/11/2016,486,205.70,117.11,99970.20,56915.46,43054.74 North America,Greenland,Cosmetics,Offline,C,7/25/2011,355209720,9/4/2011,3304,437.20,263.33,1444508.80,870042.32,574466.48 Asia,Tajikistan,Clothes,Online,L,10/7/2012,750683629,10/19/2012,2823,109.28,35.84,308497.44,101176.32,207321.12 Asia,Cambodia,Cosmetics,Online,M,8/2/2014,266331183,9/12/2014,2170,437.20,263.33,948724.00,571426.10,377297.90 Sub-Saharan Africa,Madagascar,Clothes,Online,H,10/21/2012,853763711,11/16/2012,6509,109.28,35.84,711303.52,233282.56,478020.96 Europe,Lithuania,Snacks,Offline,C,8/23/2015,934905040,8/28/2015,8032,152.58,97.44,1225522.56,782638.08,442884.48 Sub-Saharan Africa,Cameroon,Vegetables,Offline,M,3/22/2017,351991498,4/22/2017,961,154.06,90.93,148051.66,87383.73,60667.93 Sub-Saharan Africa,South Sudan,Household,Online,C,7/14/2016,817571914,8/25/2016,6552,668.27,502.54,4378505.04,3292642.08,1085862.96 Asia,Nepal,Meat,Offline,L,8/16/2013,964507615,9/26/2013,8092,421.89,364.69,3413933.88,2951071.48,462862.40 Sub-Saharan Africa,Senegal,Beverages,Online,C,5/23/2013,395972430,6/11/2013,5896,47.45,31.79,279765.20,187433.84,92331.36 Central America and the Caribbean,Barbados,Clothes,Online,L,3/24/2014,135452687,4/24/2014,2315,109.28,35.84,252983.20,82969.60,170013.60 Asia,Cambodia,Clothes,Online,L,10/20/2011,376747214,11/9/2011,6728,109.28,35.84,735235.84,241131.52,494104.32 Sub-Saharan Africa,Uganda,Meat,Offline,H,6/3/2010,933967339,7/14/2010,545,421.89,364.69,229930.05,198756.05,31174.00 Europe,Belarus,Clothes,Online,H,9/4/2011,791536891,10/13/2011,2211,109.28,35.84,241618.08,79242.24,162375.84 Middle East and North Africa,Azerbaijan,Beverages,Online,M,8/22/2010,354192197,9/12/2010,2197,47.45,31.79,104247.65,69842.63,34405.02 Sub-Saharan Africa,Sao Tome and Principe,Personal Care,Online,M,10/26/2014,996982085,11/29/2014,8009,81.73,56.67,654575.57,453870.03,200705.54 Central America and the Caribbean,Nicaragua,Baby Food,Online,M,1/22/2010,115267884,2/27/2010,9183,255.28,159.42,2344236.24,1463953.86,880282.38 Asia,Thailand,Meat,Online,M,5/10/2017,574723422,6/3/2017,2287,421.89,364.69,964862.43,834046.03,130816.40 Sub-Saharan Africa,South Africa,Vegetables,Offline,M,4/29/2013,361335027,5/8/2013,5919,154.06,90.93,911881.14,538214.67,373666.47 Sub-Saharan Africa,Lesotho,Personal Care,Offline,M,4/22/2017,231401526,6/2/2017,5709,81.73,56.67,466596.57,323529.03,143067.54 Sub-Saharan Africa,Burkina Faso,Fruits,Online,L,10/31/2011,561534249,12/2/2011,9318,9.33,6.92,86936.94,64480.56,22456.38 Sub-Saharan Africa,The Gambia,Office Supplies,Online,L,7/31/2014,898657023,8/31/2014,1438,651.21,524.96,936439.98,754892.48,181547.50 Asia,Sri Lanka,Baby Food,Offline,C,1/1/2014,410006177,1/3/2014,8794,255.28,159.42,2244932.32,1401939.48,842992.84 Middle East and North Africa,Pakistan,Clothes,Offline,M,12/24/2010,133130538,2/12/2011,5139,109.28,35.84,561589.92,184181.76,377408.16 Europe,Portugal,Office Supplies,Online,H,1/9/2015,725891435,2/15/2015,6261,651.21,524.96,4077225.81,3286774.56,790451.25 Central America and the Caribbean,El Salvador,Clothes,Online,H,3/17/2010,216462695,4/4/2010,4977,109.28,35.84,543886.56,178375.68,365510.88 Europe,Armenia,Fruits,Offline,H,12/17/2011,753330647,12/26/2011,6134,9.33,6.92,57230.22,42447.28,14782.94 Central America and the Caribbean,Belize,Office Supplies,Offline,L,4/11/2010,955294120,4/28/2010,1614,651.21,524.96,1051052.94,847285.44,203767.50 Europe,Ireland,Clothes,Online,L,5/10/2011,861464440,5/19/2011,5326,109.28,35.84,582025.28,190883.84,391141.44 Asia,South Korea,Household,Offline,L,2/6/2011,581265437,3/22/2011,8215,668.27,502.54,5489838.05,4128366.10,1361471.95 Sub-Saharan Africa,Malawi,Fruits,Offline,C,1/23/2014,744433438,3/2/2014,3252,9.33,6.92,30341.16,22503.84,7837.32 Middle East and North Africa,Qatar,Snacks,Online,C,6/26/2014,251017272,6/28/2014,444,152.58,97.44,67745.52,43263.36,24482.16 Sub-Saharan Africa,Rwanda,Meat,Online,H,4/6/2015,321378266,4/13/2015,1826,421.89,364.69,770371.14,665923.94,104447.20 Europe,Vatican City,Vegetables,Offline,L,7/21/2016,446190249,8/4/2016,6465,154.06,90.93,995997.90,587862.45,408135.45 Asia,Kyrgyzstan,Fruits,Offline,H,1/9/2012,636439549,2/23/2012,5461,9.33,6.92,50951.13,37790.12,13161.01 Central America and the Caribbean,Honduras,Cosmetics,Offline,L,4/29/2015,973424994,5/10/2015,6942,437.20,263.33,3035042.40,1828036.86,1207005.54 Middle East and North Africa,Turkey,Snacks,Online,L,11/20/2010,258757913,12/29/2010,1071,152.58,97.44,163413.18,104358.24,59054.94 Europe,Moldova ,Cereal,Offline,L,9/15/2010,964362132,10/24/2010,5040,205.70,117.11,1036728.00,590234.40,446493.60 Europe,San Marino,Office Supplies,Online,H,9/15/2012,682473981,10/24/2012,8072,651.21,524.96,5256567.12,4237477.12,1019090.00 Asia,Turkmenistan,Personal Care,Offline,M,1/30/2012,675642287,2/2/2012,6422,81.73,56.67,524870.06,363934.74,160935.32 Asia,China,Beverages,Online,M,8/31/2012,926728379,9/10/2012,8376,47.45,31.79,397441.20,266273.04,131168.16 Middle East and North Africa,Azerbaijan,Baby Food,Online,H,7/28/2015,588906085,8/22/2015,9252,255.28,159.42,2361850.56,1474953.84,886896.72 Europe,Norway,Baby Food,Online,L,5/28/2015,235661733,6/25/2015,6398,255.28,159.42,1633281.44,1019969.16,613312.28 Middle East and North Africa,Israel,Office Supplies,Online,L,8/16/2011,510794150,9/21/2011,4195,651.21,524.96,2731825.95,2202207.20,529618.75 Central America and the Caribbean,Antigua and Barbuda ,Cereal,Offline,M,4/25/2012,778414666,5/25/2012,9053,205.70,117.11,1862202.10,1060196.83,802005.27 Asia,Turkmenistan,Office Supplies,Offline,C,4/16/2015,472947108,5/16/2015,4414,651.21,524.96,2874440.94,2317173.44,557267.50 Europe,Italy,Vegetables,Online,C,11/1/2011,449127805,11/20/2011,5753,154.06,90.93,886307.18,523120.29,363186.89 Middle East and North Africa,Iran,Clothes,Online,H,3/27/2013,732005584,4/12/2013,5574,109.28,35.84,609126.72,199772.16,409354.56 Middle East and North Africa,Tunisia ,Meat,Offline,M,9/14/2016,966941773,9/20/2016,8413,421.89,364.69,3549360.57,3068136.97,481223.60 Sub-Saharan Africa,Ethiopia,Personal Care,Online,C,9/22/2016,869610202,10/5/2016,5838,81.73,56.67,477139.74,330839.46,146300.28 Sub-Saharan Africa,Cape Verde,Office Supplies,Online,C,6/5/2016,675997197,6/25/2016,1448,651.21,524.96,942952.08,760142.08,182810.00 Europe,Ukraine,Beverages,Online,C,3/17/2016,692401587,3/19/2016,5871,47.45,31.79,278578.95,186639.09,91939.86 Europe,United Kingdom,Office Supplies,Offline,C,7/17/2017,845434701,9/3/2017,1770,651.21,524.96,1152641.70,929179.20,223462.50 Europe,Luxembourg,Personal Care,Online,M,8/7/2011,232020366,9/6/2011,8837,81.73,56.67,722248.01,500792.79,221455.22 Sub-Saharan Africa,Kenya,Household,Offline,L,5/2/2013,269394910,6/11/2013,8795,668.27,502.54,5877434.65,4419839.30,1457595.35 Central America and the Caribbean,Haiti,Cereal,Online,H,4/7/2012,645107161,4/9/2012,400,205.70,117.11,82280.00,46844.00,35436.00 Sub-Saharan Africa,Guinea-Bissau,Baby Food,Online,L,2/14/2014,667018449,2/24/2014,4436,255.28,159.42,1132422.08,707187.12,425234.96 North America,Greenland,Clothes,Offline,H,5/4/2014,613302600,6/13/2014,8723,109.28,35.84,953249.44,312632.32,640617.12 Asia,North Korea,Cosmetics,Offline,M,12/25/2016,382445943,1/29/2017,3108,437.20,263.33,1358817.60,818429.64,540387.96 Sub-Saharan Africa,Sierra Leone,Meat,Offline,C,11/2/2015,843247306,11/26/2015,4471,421.89,364.69,1886270.19,1630528.99,255741.20 Europe,Luxembourg,Meat,Online,M,4/23/2013,684818017,4/25/2013,1724,421.89,364.69,727338.36,628725.56,98612.80 Europe,Vatican City,Fruits,Offline,M,9/1/2016,466581904,9/1/2016,809,9.33,6.92,7547.97,5598.28,1949.69 Sub-Saharan Africa,Zimbabwe,Fruits,Online,L,7/12/2011,368275296,7/26/2011,9699,9.33,6.92,90491.67,67117.08,23374.59 Sub-Saharan Africa,Cameroon,Office Supplies,Online,C,1/25/2011,639947021,2/20/2011,3399,651.21,524.96,2213462.79,1784339.04,429123.75 Sub-Saharan Africa,Rwanda,Cosmetics,Online,C,5/23/2014,251958405,6/25/2014,8946,437.20,263.33,3911191.20,2355750.18,1555441.02 Sub-Saharan Africa,Kenya,Fruits,Offline,H,4/21/2010,944983279,5/10/2010,407,9.33,6.92,3797.31,2816.44,980.87 Sub-Saharan Africa,Guinea,Baby Food,Offline,C,5/25/2011,480007970,6/29/2011,3880,255.28,159.42,990486.40,618549.60,371936.80 Europe,Serbia,Beverages,Online,L,5/23/2012,288331305,6/6/2012,2496,47.45,31.79,118435.20,79347.84,39087.36 Europe,San Marino,Cosmetics,Online,M,8/27/2016,521564614,9/4/2016,1415,437.20,263.33,618638.00,372611.95,246026.05 Sub-Saharan Africa,Republic of the Congo,Cereal,Online,M,4/2/2017,501631724,4/6/2017,2829,205.70,117.11,581925.30,331304.19,250621.11 Asia,India,Clothes,Online,C,11/19/2015,970768964,11/23/2015,964,109.28,35.84,105345.92,34549.76,70796.16 Central America and the Caribbean,Trinidad and Tobago,Vegetables,Online,L,7/14/2011,941525161,8/31/2011,7073,154.06,90.93,1089666.38,643147.89,446518.49 Sub-Saharan Africa,Democratic Republic of the Congo,Household,Offline,M,10/29/2011,846761643,12/5/2011,4442,668.27,502.54,2968455.34,2232282.68,736172.66 Sub-Saharan Africa,Djibouti,Beverages,Online,H,1/31/2014,289652240,2/13/2014,3389,47.45,31.79,160808.05,107736.31,53071.74 Asia,Philippines,Household,Offline,C,9/13/2016,293683278,10/14/2016,6263,668.27,502.54,4185375.01,3147408.02,1037966.99 Central America and the Caribbean,Haiti,Snacks,Offline,M,5/7/2015,152653586,6/10/2015,2443,152.58,97.44,372752.94,238045.92,134707.02 Australia and Oceania,Papua New Guinea,Baby Food,Online,C,5/1/2014,580674493,5/28/2014,3341,255.28,159.42,852890.48,532622.22,320268.26 Middle East and North Africa,Saudi Arabia,Beverages,Offline,M,3/28/2015,562169826,3/31/2015,7399,47.45,31.79,351082.55,235214.21,115868.34 Europe,Ireland,Baby Food,Online,C,2/22/2013,501875913,3/17/2013,5090,255.28,159.42,1299375.20,811447.80,487927.40 Sub-Saharan Africa,Ghana,Household,Offline,L,7/22/2015,874841582,8/22/2015,3920,668.27,502.54,2619618.40,1969956.80,649661.60 Central America and the Caribbean,Panama,Vegetables,Online,C,11/22/2015,876428163,12/27/2015,3424,154.06,90.93,527501.44,311344.32,216157.12 Central America and the Caribbean,Panama,Office Supplies,Online,M,6/5/2012,672309482,7/9/2012,171,651.21,524.96,111356.91,89768.16,21588.75 Europe,Austria,Beverages,Offline,C,1/28/2012,948471868,3/6/2012,2758,47.45,31.79,130867.10,87676.82,43190.28 Europe,Ukraine,Cereal,Online,M,6/12/2011,661214148,7/28/2011,6815,205.70,117.11,1401845.50,798104.65,603740.85 Asia,Turkmenistan,Beverages,Online,M,10/19/2015,187147653,11/8/2015,4,47.45,31.79,189.80,127.16,62.64 Europe,Denmark,Meat,Offline,C,7/9/2012,873196208,7/20/2012,7017,421.89,364.69,2960402.13,2559029.73,401372.40 Middle East and North Africa,Oman,Household,Offline,C,10/12/2012,986596143,11/14/2012,4578,668.27,502.54,3059340.06,2300628.12,758711.94 Middle East and North Africa,Yemen,Fruits,Online,C,6/15/2017,664896285,7/23/2017,6441,9.33,6.92,60094.53,44571.72,15522.81 Sub-Saharan Africa,Sao Tome and Principe,Beverages,Offline,M,5/5/2013,565957963,6/14/2013,8393,47.45,31.79,398247.85,266813.47,131434.38 Sub-Saharan Africa,Eritrea,Meat,Offline,C,10/21/2014,517955005,12/5/2014,3251,421.89,364.69,1371564.39,1185607.19,185957.20 Central America and the Caribbean,Dominica,Office Supplies,Online,C,7/22/2014,869373738,8/8/2014,5863,651.21,524.96,3818044.23,3077840.48,740203.75 Europe,Moldova ,Office Supplies,Offline,C,2/26/2010,239012992,3/11/2010,8111,651.21,524.96,5281964.31,4257950.56,1024013.75 Middle East and North Africa,Morocco,Personal Care,Offline,C,5/20/2015,465984094,5/22/2015,3903,81.73,56.67,318992.19,221183.01,97809.18 Middle East and North Africa,United Arab Emirates,Personal Care,Offline,C,12/30/2010,759710872,2/8/2011,4184,81.73,56.67,341958.32,237107.28,104851.04 Sub-Saharan Africa,Liberia,Meat,Offline,C,9/7/2016,849929654,10/24/2016,1927,421.89,364.69,812982.03,702757.63,110224.40 Europe,Luxembourg,Clothes,Offline,C,7/22/2011,536689269,8/22/2011,7136,109.28,35.84,779822.08,255754.24,524067.84 Central America and the Caribbean,Honduras,Cosmetics,Online,C,8/21/2013,140351045,9/4/2013,1848,437.20,263.33,807945.60,486633.84,321311.76 Europe,Bosnia and Herzegovina,Baby Food,Offline,M,7/13/2015,951588809,7/19/2015,5130,255.28,159.42,1309586.40,817824.60,491761.80 Middle East and North Africa,Syria,Cereal,Online,C,11/21/2010,281388890,12/22/2010,8081,205.70,117.11,1662261.70,946365.91,715895.79 Central America and the Caribbean,Haiti,Meat,Offline,M,5/15/2013,911050117,7/3/2013,8830,421.89,364.69,3725288.70,3220212.70,505076.00 Europe,Russia,Clothes,Online,L,12/21/2014,742183816,1/25/2015,7539,109.28,35.84,823861.92,270197.76,553664.16 Middle East and North Africa,Yemen,Beverages,Online,L,7/21/2012,446713817,7/22/2012,1400,47.45,31.79,66430.00,44506.00,21924.00 Europe,France,Vegetables,Offline,H,8/8/2011,316876447,9/4/2011,9637,154.06,90.93,1484676.22,876292.41,608383.81 Europe,Netherlands,Snacks,Offline,L,11/21/2014,715220534,12/14/2014,8505,152.58,97.44,1297692.90,828727.20,468965.70 Middle East and North Africa,Iraq,Clothes,Offline,C,2/7/2011,724607408,2/27/2011,6289,109.28,35.84,687261.92,225397.76,461864.16 Central America and the Caribbean,Belize,Personal Care,Offline,C,7/1/2016,398210895,8/4/2016,8308,81.73,56.67,679012.84,470814.36,208198.48 Europe,Ukraine,Personal Care,Offline,L,7/18/2010,309517323,8/29/2010,1909,81.73,56.67,156022.57,108183.03,47839.54 Europe,Bulgaria,Cereal,Online,C,5/29/2015,202325522,6/11/2015,1473,205.70,117.11,302996.10,172503.03,130493.07 Middle East and North Africa,Afghanistan,Fruits,Online,C,6/18/2016,340746819,7/18/2016,3411,9.33,6.92,31824.63,23604.12,8220.51 Central America and the Caribbean,Grenada,Fruits,Online,L,7/8/2011,159205043,7/17/2011,1165,9.33,6.92,10869.45,8061.80,2807.65 Asia,Vietnam,Beverages,Online,M,7/29/2014,512436521,9/2/2014,209,47.45,31.79,9917.05,6644.11,3272.94 Central America and the Caribbean,Honduras,Office Supplies,Online,C,3/17/2014,525490081,4/13/2014,3047,651.21,524.96,1984236.87,1599553.12,384683.75 Sub-Saharan Africa,Liberia,Meat,Offline,L,3/14/2015,743727052,4/3/2015,4217,421.89,364.69,1779110.13,1537897.73,241212.40 Sub-Saharan Africa,Lesotho,Baby Food,Offline,M,1/14/2012,882821261,2/20/2012,5284,255.28,159.42,1348899.52,842375.28,506524.24 Central America and the Caribbean,Saint Lucia,Household,Offline,H,5/31/2015,278759038,6/13/2015,9849,668.27,502.54,6581791.23,4949516.46,1632274.77 Sub-Saharan Africa,Kenya,Cereal,Offline,L,8/3/2010,137839210,8/24/2010,8540,205.70,117.11,1756678.00,1000119.40,756558.60 Europe,Sweden,Clothes,Offline,H,3/5/2014,386673104,3/5/2014,4019,109.28,35.84,439196.32,144040.96,295155.36 Europe,United Kingdom,Fruits,Online,H,5/7/2017,122184550,6/1/2017,5978,9.33,6.92,55774.74,41367.76,14406.98 Europe,Macedonia,Beverages,Offline,H,5/6/2012,761609876,6/9/2012,6142,47.45,31.79,291437.90,195254.18,96183.72 Middle East and North Africa,Jordan,Cosmetics,Offline,M,5/28/2011,192497909,6/1/2011,3264,437.20,263.33,1427020.80,859509.12,567511.68 Sub-Saharan Africa,Central African Republic,Cosmetics,Online,M,9/5/2012,422709977,10/2/2012,8131,437.20,263.33,3554873.20,2141136.23,1413736.97 Middle East and North Africa,Morocco,Cereal,Online,L,8/8/2011,830419909,9/8/2011,8560,205.70,117.11,1760792.00,1002461.60,758330.40 Sub-Saharan Africa,Sudan,Baby Food,Online,L,3/29/2012,414114034,4/4/2012,4400,255.28,159.42,1123232.00,701448.00,421784.00 Middle East and North Africa,United Arab Emirates,Baby Food,Online,C,12/14/2015,942591178,1/18/2016,2531,255.28,159.42,646113.68,403492.02,242621.66 Sub-Saharan Africa,Kenya,Baby Food,Offline,M,7/28/2017,204962670,8/6/2017,1864,255.28,159.42,475841.92,297158.88,178683.04 Middle East and North Africa,United Arab Emirates,Clothes,Offline,H,10/19/2016,560652339,10/30/2016,8341,109.28,35.84,911504.48,298941.44,612563.04 Europe,Monaco,Cosmetics,Offline,M,5/21/2014,389396512,6/27/2014,9936,437.20,263.33,4344019.20,2616446.88,1727572.32 Europe,Latvia,Snacks,Offline,M,12/12/2015,841244018,12/31/2015,1654,152.58,97.44,252367.32,161165.76,91201.56 Middle East and North Africa,Algeria,Office Supplies,Online,H,1/2/2013,886556184,1/5/2013,531,651.21,524.96,345792.51,278753.76,67038.75 Asia,Myanmar,Meat,Offline,L,2/2/2017,466006839,2/28/2017,634,421.89,364.69,267478.26,231213.46,36264.80 Europe,Serbia,Meat,Online,M,7/1/2010,940582311,8/4/2010,8062,421.89,364.69,3401277.18,2940130.78,461146.40 Asia,Bhutan,Snacks,Online,H,9/4/2010,141581428,9/19/2010,5946,152.58,97.44,907240.68,579378.24,327862.44 Middle East and North Africa,Qatar,Clothes,Online,C,5/29/2013,920615518,6/16/2013,9445,109.28,35.84,1032149.60,338508.80,693640.80 Asia,Myanmar,Personal Care,Offline,C,10/5/2011,799608409,11/5/2011,752,81.73,56.67,61460.96,42615.84,18845.12 Europe,Monaco,Vegetables,Offline,C,1/6/2015,520796430,1/11/2015,4092,154.06,90.93,630413.52,372085.56,258327.96 Europe,Spain,Cosmetics,Online,L,7/30/2014,896728408,8/31/2014,718,437.20,263.33,313909.60,189070.94,124838.66 Europe,Lithuania,Cereal,Offline,L,7/1/2010,560265672,7/12/2010,3917,205.70,117.11,805726.90,458719.87,347007.03 Sub-Saharan Africa,Benin,Cereal,Offline,M,4/2/2015,914582049,5/8/2015,4007,205.70,117.11,824239.90,469259.77,354980.13 Sub-Saharan Africa,Cape Verde,Clothes,Online,L,1/29/2012,283163869,2/7/2012,3336,109.28,35.84,364558.08,119562.24,244995.84 Europe,Albania,Cosmetics,Offline,H,10/18/2011,659809958,11/13/2011,1284,437.20,263.33,561364.80,338115.72,223249.08 Asia,Philippines,Clothes,Offline,H,2/21/2011,958631646,4/2/2011,9262,109.28,35.84,1012151.36,331950.08,680201.28 Middle East and North Africa,Somalia,Vegetables,Offline,C,9/13/2011,164052760,10/30/2011,5712,154.06,90.93,879990.72,519392.16,360598.56 Sub-Saharan Africa,Benin,Cosmetics,Offline,C,2/14/2016,480809628,2/17/2016,1109,437.20,263.33,484854.80,292032.97,192821.83 Sub-Saharan Africa,Eritrea,Baby Food,Online,C,10/6/2016,583951079,10/11/2016,2956,255.28,159.42,754607.68,471245.52,283362.16 Sub-Saharan Africa,Chad,Beverages,Online,L,8/17/2014,568838441,8/30/2014,790,47.45,31.79,37485.50,25114.10,12371.40 Middle East and North Africa,Libya,Meat,Online,L,7/19/2015,601145541,8/10/2015,1179,421.89,364.69,497408.31,429969.51,67438.80 Sub-Saharan Africa,Ghana,Household,Online,L,4/18/2011,466858708,6/2/2011,2721,668.27,502.54,1818362.67,1367411.34,450951.33 Europe,Bosnia and Herzegovina,Snacks,Online,L,8/19/2013,922276771,9/17/2013,1046,152.58,97.44,159598.68,101922.24,57676.44 Central America and the Caribbean,Saint Kitts and Nevis ,Snacks,Offline,H,9/1/2012,544011056,10/9/2012,3815,152.58,97.44,582092.70,371733.60,210359.10 Australia and Oceania,Papua New Guinea,Clothes,Online,M,12/8/2010,678985393,12/28/2010,5721,109.28,35.84,625190.88,205040.64,420150.24 Europe,Kosovo,Meat,Online,C,1/12/2012,494436109,2/23/2012,3487,421.89,364.69,1471130.43,1271674.03,199456.40 Europe,Iceland,Beverages,Online,L,10/31/2016,127912032,11/3/2016,868,47.45,31.79,41186.60,27593.72,13592.88 Europe,Bosnia and Herzegovina,Household,Offline,L,2/19/2012,237274491,3/11/2012,3650,668.27,502.54,2439185.50,1834271.00,604914.50 Australia and Oceania,Marshall Islands,Meat,Offline,H,4/20/2012,650697314,6/8/2012,4650,421.89,364.69,1961788.50,1695808.50,265980.00 Australia and Oceania,Federated States of Micronesia,Beverages,Offline,L,1/18/2010,816666829,1/20/2010,8718,47.45,31.79,413669.10,277145.22,136523.88 Europe,Georgia,Meat,Online,L,7/5/2010,253981864,8/12/2010,7732,421.89,364.69,3262053.48,2819783.08,442270.40 Asia,Sri Lanka,Household,Offline,M,4/23/2012,801753747,5/16/2012,5605,668.27,502.54,3745653.35,2816736.70,928916.65 North America,Canada,Clothes,Online,H,5/13/2011,769406306,5/28/2011,3279,109.28,35.84,358329.12,117519.36,240809.76 Sub-Saharan Africa,Rwanda,Baby Food,Online,H,3/16/2012,786675870,4/19/2012,3726,255.28,159.42,951173.28,593998.92,357174.36 Central America and the Caribbean,Saint Vincent and the Grenadines,Clothes,Online,H,9/1/2016,653611266,10/9/2016,6953,109.28,35.84,759823.84,249195.52,510628.32 Europe,Poland,Baby Food,Offline,C,6/27/2012,690573823,8/16/2012,4995,255.28,159.42,1275123.60,796302.90,478820.70 Asia,Uzbekistan,Snacks,Online,L,12/24/2014,388237369,1/20/2015,6920,152.58,97.44,1055853.60,674284.80,381568.80 Europe,Slovakia,Cosmetics,Offline,H,3/24/2010,657588231,5/8/2010,3825,437.20,263.33,1672290.00,1007237.25,665052.75 Sub-Saharan Africa,Botswana,Baby Food,Online,L,11/20/2011,679925239,12/3/2011,3842,255.28,159.42,980785.76,612491.64,368294.12 Sub-Saharan Africa,Ethiopia,Baby Food,Offline,C,12/17/2011,156859719,12/25/2011,7132,255.28,159.42,1820656.96,1136983.44,683673.52 Middle East and North Africa,Egypt,Baby Food,Offline,H,11/15/2014,660315501,12/28/2014,885,255.28,159.42,225922.80,141086.70,84836.10 Europe,Armenia,Meat,Online,L,12/21/2010,682528913,2/2/2011,4327,421.89,364.69,1825518.03,1578013.63,247504.40 Sub-Saharan Africa,Mauritius ,Vegetables,Offline,M,8/6/2010,586048781,8/27/2010,3713,154.06,90.93,572024.78,337623.09,234401.69 Europe,Latvia,Clothes,Offline,L,1/5/2010,353736436,1/13/2010,7327,109.28,35.84,800694.56,262599.68,538094.88 Asia,Japan,Vegetables,Online,C,5/1/2010,938765704,5/21/2010,488,154.06,90.93,75181.28,44373.84,30807.44 Central America and the Caribbean,Saint Kitts and Nevis ,Vegetables,Offline,C,9/23/2013,214622914,10/27/2013,545,154.06,90.93,83962.70,49556.85,34405.85 Europe,Sweden,Baby Food,Online,M,2/3/2012,625106894,2/23/2012,1876,255.28,159.42,478905.28,299071.92,179833.36 Sub-Saharan Africa,Mauritania,Personal Care,Online,C,7/5/2013,634328973,7/12/2013,894,81.73,56.67,73066.62,50662.98,22403.64 Asia,Vietnam,Cosmetics,Online,C,10/15/2015,576712977,10/31/2015,1041,437.20,263.33,455125.20,274126.53,180998.67 Australia and Oceania,New Zealand,Clothes,Offline,C,3/20/2010,406995236,4/18/2010,7790,109.28,35.84,851291.20,279193.60,572097.60 Asia,Thailand,Vegetables,Online,C,8/28/2015,150224578,9/13/2015,3646,154.06,90.93,561702.76,331530.78,230171.98 Europe,Kosovo,Household,Online,H,3/3/2014,351762330,3/15/2014,3145,668.27,502.54,2101709.15,1580488.30,521220.85 Sub-Saharan Africa,Swaziland,Household,Online,M,5/23/2015,727282321,7/2/2015,7855,668.27,502.54,5249260.85,3947451.70,1301809.15 Central America and the Caribbean,Saint Vincent and the Grenadines,Baby Food,Online,L,11/14/2014,612770879,12/18/2014,1375,255.28,159.42,351010.00,219202.50,131807.50 Asia,Philippines,Vegetables,Offline,L,1/4/2013,314526832,1/23/2013,4334,154.06,90.93,667696.04,394090.62,273605.42 North America,United States of America,Cosmetics,Online,L,4/13/2011,659161508,5/15/2011,9393,437.20,263.33,4106619.60,2473458.69,1633160.91 Sub-Saharan Africa,Cameroon,Cereal,Offline,M,1/1/2016,743598735,2/18/2016,6245,205.70,117.11,1284596.50,731351.95,553244.55 Asia,Tajikistan,Vegetables,Online,C,11/1/2011,185074841,11/7/2011,6613,154.06,90.93,1018798.78,601320.09,417478.69 Sub-Saharan Africa,Namibia,Office Supplies,Offline,L,1/7/2011,471138656,2/11/2011,9253,651.21,524.96,6025646.13,4857454.88,1168191.25 Sub-Saharan Africa,Burundi,Office Supplies,Online,M,9/16/2011,909651505,10/9/2011,4950,651.21,524.96,3223489.50,2598552.00,624937.50 Australia and Oceania,Federated States of Micronesia,Household,Offline,L,11/27/2016,878787219,1/15/2017,1522,668.27,502.54,1017106.94,764865.88,252241.06 Sub-Saharan Africa,Guinea-Bissau,Baby Food,Online,H,7/18/2015,277032124,7/23/2015,8817,255.28,159.42,2250803.76,1405606.14,845197.62 Sub-Saharan Africa,Republic of the Congo,Clothes,Online,M,7/16/2016,873185050,8/8/2016,3715,109.28,35.84,405975.20,133145.60,272829.60 Middle East and North Africa,Lebanon,Personal Care,Offline,L,9/27/2014,456357324,11/10/2014,5128,81.73,56.67,419111.44,290603.76,128507.68 Asia,Laos,Meat,Offline,H,5/27/2017,485972774,5/27/2017,8998,421.89,364.69,3796166.22,3281480.62,514685.60 Asia,Cambodia,Fruits,Online,H,2/23/2010,241767728,4/2/2010,3298,9.33,6.92,30770.34,22822.16,7948.18 Middle East and North Africa,Egypt,Meat,Offline,M,9/22/2013,873791015,11/1/2013,3034,421.89,364.69,1280014.26,1106469.46,173544.80 Europe,United Kingdom,Snacks,Online,H,2/3/2012,452403962,2/5/2012,5241,152.58,97.44,799671.78,510683.04,288988.74 Europe,Poland,Baby Food,Online,M,10/10/2016,718280398,10/20/2016,3987,255.28,159.42,1017801.36,635607.54,382193.82 Middle East and North Africa,Turkey,Cosmetics,Online,H,1/28/2010,332406651,2/9/2010,5370,437.20,263.33,2347764.00,1414082.10,933681.90 Central America and the Caribbean,El Salvador,Beverages,Offline,C,1/1/2017,726081550,2/15/2017,2521,47.45,31.79,119621.45,80142.59,39478.86 Asia,Indonesia,Meat,Offline,C,8/19/2010,250916421,8/25/2010,600,421.89,364.69,253134.00,218814.00,34320.00 Europe,United Kingdom,Cosmetics,Offline,C,4/26/2014,928835093,6/1/2014,1800,437.20,263.33,786960.00,473994.00,312966.00 Sub-Saharan Africa,Togo,Cereal,Online,C,8/14/2014,802073895,9/19/2014,344,205.70,117.11,70760.80,40285.84,30474.96 Europe,Liechtenstein,Fruits,Online,C,7/10/2010,683181655,8/23/2010,7488,9.33,6.92,69863.04,51816.96,18046.08 Middle East and North Africa,Azerbaijan,Household,Offline,H,3/21/2017,105019700,4/3/2017,6518,668.27,502.54,4355783.86,3275555.72,1080228.14 Sub-Saharan Africa,Botswana,Office Supplies,Offline,H,11/20/2016,470761859,12/26/2016,7750,651.21,524.96,5046877.50,4068440.00,978437.50 Europe,Georgia,Cereal,Online,L,7/1/2015,103894460,7/17/2015,3534,205.70,117.11,726943.80,413866.74,313077.06 Australia and Oceania,Vanuatu,Household,Online,M,4/15/2016,998216331,5/31/2016,3250,668.27,502.54,2171877.50,1633255.00,538622.50 Europe,Austria,Household,Online,L,12/31/2015,267838799,2/1/2016,8308,668.27,502.54,5551987.16,4175102.32,1376884.84 Europe,Bulgaria,Snacks,Offline,C,3/17/2016,497185695,4/4/2016,7150,152.58,97.44,1090947.00,696696.00,394251.00 Asia,Cambodia,Personal Care,Online,H,1/1/2012,290993344,1/12/2012,252,81.73,56.67,20595.96,14280.84,6315.12 Sub-Saharan Africa,Kenya,Office Supplies,Offline,L,11/16/2010,124310576,11/25/2010,5117,651.21,524.96,3332241.57,2686220.32,646021.25 Sub-Saharan Africa,Nigeria,Household,Online,C,10/31/2013,992498719,11/19/2013,1281,668.27,502.54,856053.87,643753.74,212300.13 Sub-Saharan Africa,Nigeria,Household,Online,H,7/26/2011,361231601,9/3/2011,5313,668.27,502.54,3550518.51,2669995.02,880523.49 Europe,Bosnia and Herzegovina,Household,Offline,C,12/28/2010,716495549,1/27/2011,5810,668.27,502.54,3882648.70,2919757.40,962891.30 Middle East and North Africa,Azerbaijan,Clothes,Online,M,4/17/2016,114589393,5/28/2016,8403,109.28,35.84,918279.84,301163.52,617116.32 Middle East and North Africa,Oman,Beverages,Online,M,1/4/2010,732124459,2/6/2010,752,47.45,31.79,35682.40,23906.08,11776.32 Sub-Saharan Africa,Botswana,Fruits,Offline,H,5/25/2017,316024577,6/1/2017,7550,9.33,6.92,70441.50,52246.00,18195.50 Central America and the Caribbean,Jamaica,Meat,Offline,M,10/3/2011,733526074,11/1/2011,5521,421.89,364.69,2329254.69,2013453.49,315801.20 North America,United States of America,Clothes,Online,L,9/6/2016,322177779,10/24/2016,8419,109.28,35.84,920028.32,301736.96,618291.36 Sub-Saharan Africa,Mozambique,Meat,Offline,L,5/26/2011,639841020,6/26/2011,2031,421.89,364.69,856858.59,740685.39,116173.20 Middle East and North Africa,Morocco,Personal Care,Online,L,4/10/2010,614689624,5/11/2010,9174,81.73,56.67,749791.02,519890.58,229900.44 Europe,Hungary,Meat,Offline,H,8/3/2013,595209920,8/19/2013,4697,421.89,364.69,1981617.33,1712948.93,268668.40 Europe,Finland,Snacks,Online,C,5/2/2011,100200736,6/11/2011,479,152.58,97.44,73085.82,46673.76,26412.06 Asia,Laos,Snacks,Online,H,4/14/2017,968773400,5/5/2017,432,152.58,97.44,65914.56,42094.08,23820.48 Sub-Saharan Africa,Sierra Leone,Cereal,Online,C,3/15/2012,610351741,4/2/2012,5498,205.70,117.11,1130938.60,643870.78,487067.82 Australia and Oceania,New Zealand,Clothes,Offline,L,10/11/2015,554672086,11/30/2015,8651,109.28,35.84,945381.28,310051.84,635329.44 Australia and Oceania,Nauru,Baby Food,Online,L,9/7/2014,601783263,9/30/2014,9895,255.28,159.42,2525995.60,1577460.90,948534.70 Europe,Georgia,Baby Food,Offline,M,10/25/2011,172046601,11/6/2011,1267,255.28,159.42,323439.76,201985.14,121454.62 Asia,Japan,Beverages,Online,C,11/26/2014,556135928,12/22/2014,1835,47.45,31.79,87070.75,58334.65,28736.10 Sub-Saharan Africa,Madagascar,Office Supplies,Online,L,1/15/2010,865037572,2/21/2010,2695,651.21,524.96,1755010.95,1414767.20,340243.75 Sub-Saharan Africa,Liberia,Household,Online,H,11/17/2010,280050361,11/23/2010,1980,668.27,502.54,1323174.60,995029.20,328145.40 Asia,Myanmar,Vegetables,Online,M,12/29/2016,302785623,1/9/2017,9849,154.06,90.93,1517336.94,895569.57,621767.37 Asia,Uzbekistan,Fruits,Online,L,2/3/2010,705167186,2/15/2010,3496,9.33,6.92,32617.68,24192.32,8425.36 Europe,Armenia,Snacks,Offline,M,10/24/2010,879431378,11/29/2010,2143,152.58,97.44,326978.94,208813.92,118165.02 Middle East and North Africa,Turkey,Baby Food,Offline,M,5/9/2014,288127028,6/26/2014,2045,255.28,159.42,522047.60,326013.90,196033.70 Sub-Saharan Africa,Burkina Faso,Beverages,Online,C,12/20/2016,714115464,1/14/2017,1490,47.45,31.79,70700.50,47367.10,23333.40 Central America and the Caribbean,Belize,Fruits,Offline,H,3/16/2012,410570514,4/20/2012,5794,9.33,6.92,54058.02,40094.48,13963.54 Sub-Saharan Africa,Namibia,Fruits,Offline,L,5/21/2017,850978505,5/25/2017,2305,9.33,6.92,21505.65,15950.60,5555.05 Sub-Saharan Africa,Gabon,Cosmetics,Online,M,10/26/2016,879138267,10/30/2016,5404,437.20,263.33,2362628.80,1423035.32,939593.48 North America,Canada,Cereal,Offline,C,1/11/2011,759161126,1/24/2011,1502,205.70,117.11,308961.40,175899.22,133062.18 Sub-Saharan Africa,Equatorial Guinea,Vegetables,Offline,L,12/16/2012,825470912,12/17/2012,4041,154.06,90.93,622556.46,367448.13,255108.33 Sub-Saharan Africa,Nigeria,Household,Offline,C,11/26/2013,132803952,11/27/2013,8496,668.27,502.54,5677621.92,4269579.84,1408042.08 Sub-Saharan Africa,Central African Republic,Vegetables,Online,H,1/1/2010,506209075,2/4/2010,7369,154.06,90.93,1135268.14,670063.17,465204.97 Asia,South Korea,Baby Food,Online,C,8/12/2013,691047608,9/14/2013,5199,255.28,159.42,1327200.72,828824.58,498376.14 Asia,South Korea,Meat,Online,L,8/24/2011,402993381,9/13/2011,3552,421.89,364.69,1498553.28,1295378.88,203174.40 Sub-Saharan Africa,Cote d'Ivoire,Personal Care,Offline,M,10/20/2014,778032720,11/22/2014,6026,81.73,56.67,492504.98,341493.42,151011.56 Europe,Slovakia,Snacks,Online,C,11/28/2015,322464454,1/11/2016,3253,152.58,97.44,496342.74,316972.32,179370.42 Central America and the Caribbean,Saint Vincent and the Grenadines,Snacks,Online,L,6/7/2016,762899911,7/18/2016,7892,152.58,97.44,1204161.36,768996.48,435164.88 Australia and Oceania,Australia,Cosmetics,Offline,L,2/15/2015,296262919,4/6/2015,9636,437.20,263.33,4212859.20,2537447.88,1675411.32 Sub-Saharan Africa,Swaziland,Baby Food,Offline,H,10/18/2011,339789807,10/25/2011,210,255.28,159.42,53608.80,33478.20,20130.60 North America,Canada,Beverages,Offline,L,2/8/2011,581029403,3/23/2011,8367,47.45,31.79,397014.15,265986.93,131027.22 Sub-Saharan Africa,Cote d'Ivoire,Beverages,Offline,C,3/18/2011,327843034,5/4/2011,4894,47.45,31.79,232220.30,155580.26,76640.04 Sub-Saharan Africa,Eritrea,Office Supplies,Offline,L,2/12/2015,758404529,3/30/2015,7608,651.21,524.96,4954405.68,3993895.68,960510.00 Sub-Saharan Africa,Djibouti,Fruits,Offline,H,10/1/2011,871200215,11/3/2011,6359,9.33,6.92,59329.47,44004.28,15325.19 Middle East and North Africa,Saudi Arabia,Household,Online,H,1/11/2010,635028922,2/19/2010,8025,668.27,502.54,5362866.75,4032883.50,1329983.25 Sub-Saharan Africa,Cape Verde,Office Supplies,Online,H,5/17/2012,539001977,5/23/2012,1518,651.21,524.96,988536.78,796889.28,191647.50 Australia and Oceania,Fiji,Meat,Offline,L,11/28/2010,242543208,12/15/2010,2780,421.89,364.69,1172854.20,1013838.20,159016.00 Sub-Saharan Africa,Benin,Meat,Offline,L,12/14/2013,825388944,12/31/2013,9785,421.89,364.69,4128193.65,3568491.65,559702.00 Asia,Bhutan,Vegetables,Online,L,12/23/2011,737588012,1/31/2012,7538,154.06,90.93,1161304.28,685430.34,475873.94 Australia and Oceania,Federated States of Micronesia,Meat,Online,H,8/27/2011,749501740,9/25/2011,3075,421.89,364.69,1297311.75,1121421.75,175890.00 Sub-Saharan Africa,Swaziland,Personal Care,Online,M,12/8/2016,801803958,12/31/2016,464,81.73,56.67,37922.72,26294.88,11627.84 Asia,Philippines,Baby Food,Online,H,2/14/2010,455480992,3/4/2010,5802,255.28,159.42,1481134.56,924954.84,556179.72 Middle East and North Africa,Tunisia ,Fruits,Offline,C,3/25/2016,241831672,3/26/2016,2221,9.33,6.92,20721.93,15369.32,5352.61 Sub-Saharan Africa,Uganda,Office Supplies,Online,H,11/26/2015,312467324,12/18/2015,4880,651.21,524.96,3177904.80,2561804.80,616100.00 Asia,Cambodia,Baby Food,Online,H,5/7/2017,889311778,5/26/2017,5972,255.28,159.42,1524532.16,952056.24,572475.92 Europe,Moldova ,Baby Food,Offline,M,9/12/2014,914601361,10/26/2014,9722,255.28,159.42,2481832.16,1549881.24,931950.92 Europe,Iceland,Meat,Online,M,7/7/2014,300884902,8/10/2014,7384,421.89,364.69,3115235.76,2692870.96,422364.80 Australia and Oceania,Papua New Guinea,Meat,Online,C,11/2/2016,381023728,12/16/2016,2243,421.89,364.69,946299.27,817999.67,128299.60 Sub-Saharan Africa,Djibouti,Beverages,Online,H,6/6/2011,758191668,6/21/2011,4618,47.45,31.79,219124.10,146806.22,72317.88 Asia,Malaysia,Personal Care,Offline,C,10/27/2011,655875051,10/27/2011,6857,81.73,56.67,560422.61,388586.19,171836.42 Sub-Saharan Africa,Kenya,Vegetables,Offline,C,9/7/2013,267872703,10/22/2013,8340,154.06,90.93,1284860.40,758356.20,526504.20 North America,Mexico,Clothes,Offline,L,10/2/2013,308295953,10/3/2013,478,109.28,35.84,52235.84,17131.52,35104.32 Europe,Montenegro,Personal Care,Offline,H,8/13/2013,661568629,8/30/2013,1714,81.73,56.67,140085.22,97132.38,42952.84 Europe,Moldova ,Cosmetics,Offline,C,12/4/2015,832427060,1/21/2016,2520,437.20,263.33,1101744.00,663591.60,438152.40 Sub-Saharan Africa,Sudan,Cereal,Offline,L,1/12/2013,395920073,2/21/2013,403,205.70,117.11,82897.10,47195.33,35701.77 Asia,Indonesia,Personal Care,Online,M,7/6/2013,347408998,7/9/2013,4897,81.73,56.67,400231.81,277512.99,122718.82 North America,Greenland,Cosmetics,Online,H,8/19/2015,852567660,9/22/2015,2571,437.20,263.33,1124041.20,677021.43,447019.77 Sub-Saharan Africa,Zambia,Snacks,Online,H,2/27/2011,797382390,4/11/2011,2024,152.58,97.44,308821.92,197218.56,111603.36 Asia,Maldives,Snacks,Offline,M,11/8/2011,938152015,12/8/2011,8884,152.58,97.44,1355520.72,865656.96,489863.76 Sub-Saharan Africa,Sao Tome and Principe,Cosmetics,Offline,C,5/27/2015,751487863,6/2/2015,813,437.20,263.33,355443.60,214087.29,141356.31 Europe,Monaco,Snacks,Offline,H,10/4/2016,684313762,10/27/2016,2504,152.58,97.44,382060.32,243989.76,138070.56 Sub-Saharan Africa,Zimbabwe,Clothes,Online,H,12/14/2011,803866040,1/27/2012,680,109.28,35.84,74310.40,24371.20,49939.20 Sub-Saharan Africa,Kenya,Snacks,Online,H,1/2/2017,347693526,1/22/2017,9096,152.58,97.44,1387867.68,886314.24,501553.44 Europe,Liechtenstein,Personal Care,Offline,L,2/20/2011,873657548,3/10/2011,3538,81.73,56.67,289160.74,200498.46,88662.28 North America,Mexico,Beverages,Online,L,4/16/2016,409931933,5/28/2016,6824,47.45,31.79,323798.80,216934.96,106863.84 Sub-Saharan Africa,Senegal,Vegetables,Offline,L,1/10/2010,205003011,1/17/2010,3801,154.06,90.93,585582.06,345624.93,239957.13 Europe,Kosovo,Vegetables,Offline,H,8/19/2012,677669608,9/8/2012,6351,154.06,90.93,978435.06,577496.43,400938.63 Asia,Mongolia,Fruits,Offline,M,2/28/2015,967043054,4/18/2015,8384,9.33,6.92,78222.72,58017.28,20205.44 Middle East and North Africa,United Arab Emirates,Household,Offline,C,7/8/2013,282547175,8/27/2013,843,668.27,502.54,563351.61,423641.22,139710.39 Asia,Uzbekistan,Personal Care,Online,L,3/31/2012,153918302,5/13/2012,6701,81.73,56.67,547672.73,379745.67,167927.06 Europe,Cyprus,Meat,Online,M,3/4/2013,381205260,4/10/2013,5963,421.89,364.69,2515730.07,2174646.47,341083.60 Europe,Croatia,Fruits,Offline,H,8/12/2011,384769380,8/15/2011,665,9.33,6.92,6204.45,4601.80,1602.65 Asia,Bangladesh,Cereal,Online,L,4/20/2015,555284488,4/22/2015,9874,205.70,117.11,2031081.80,1156344.14,874737.66 Middle East and North Africa,Bahrain,Beverages,Offline,M,4/29/2010,903736913,5/5/2010,4690,47.45,31.79,222540.50,149095.10,73445.40 Australia and Oceania,Samoa ,Personal Care,Online,C,5/6/2010,611425483,6/3/2010,3242,81.73,56.67,264968.66,183724.14,81244.52 Europe,Slovakia,Beverages,Offline,H,12/5/2014,279961526,1/16/2015,5692,47.45,31.79,270085.40,180948.68,89136.72 Middle East and North Africa,Bahrain,Household,Offline,L,5/11/2013,581268870,5/20/2013,9231,668.27,502.54,6168800.37,4638946.74,1529853.63 Europe,Finland,Office Supplies,Online,L,2/16/2011,907583844,2/23/2011,3083,651.21,524.96,2007680.43,1618451.68,389228.75 Sub-Saharan Africa,Gabon,Snacks,Offline,M,1/3/2011,721455276,1/5/2011,3503,152.58,97.44,534487.74,341332.32,193155.42 Asia,China,Vegetables,Offline,H,10/28/2016,905744493,11/17/2016,8778,154.06,90.93,1352338.68,798183.54,554155.14 Middle East and North Africa,Bahrain,Office Supplies,Online,C,7/22/2014,613625323,8/18/2014,4224,651.21,524.96,2750711.04,2217431.04,533280.00 Asia,Mongolia,Vegetables,Online,M,12/11/2013,418584096,12/14/2013,7191,154.06,90.93,1107845.46,653877.63,453967.83 Asia,Malaysia,Office Supplies,Online,M,6/14/2014,964419639,6/30/2014,2057,651.21,524.96,1339538.97,1079842.72,259696.25 Europe,Cyprus,Clothes,Offline,L,8/5/2016,715243279,9/21/2016,5236,109.28,35.84,572190.08,187658.24,384531.84 Europe,Liechtenstein,Household,Offline,M,8/10/2010,905478847,8/24/2010,167,668.27,502.54,111601.09,83924.18,27676.91 Sub-Saharan Africa,Lesotho,Beverages,Online,H,6/29/2010,589862668,6/30/2010,2326,47.45,31.79,110368.70,73943.54,36425.16 Europe,Denmark,Personal Care,Offline,C,5/24/2012,693443572,6/22/2012,4218,81.73,56.67,344737.14,239034.06,105703.08 Sub-Saharan Africa,Kenya,Meat,Offline,C,7/12/2013,861582887,8/12/2013,377,421.89,364.69,159052.53,137488.13,21564.40 Europe,Armenia,Personal Care,Online,M,12/12/2015,809954440,1/10/2016,2373,81.73,56.67,193945.29,134477.91,59467.38 Sub-Saharan Africa,Seychelles ,Vegetables,Online,M,3/16/2015,774544560,3/26/2015,3802,154.06,90.93,585736.12,345715.86,240020.26 Australia and Oceania,Kiribati,Personal Care,Online,L,9/14/2011,161652076,11/1/2011,5296,81.73,56.67,432842.08,300124.32,132717.76 Sub-Saharan Africa,Mauritius ,Household,Offline,L,6/26/2014,697888314,7/24/2014,9516,668.27,502.54,6359257.32,4782170.64,1577086.68 Middle East and North Africa,Morocco,Vegetables,Offline,L,9/21/2014,580177104,10/19/2014,6153,154.06,90.93,947931.18,559492.29,388438.89 Sub-Saharan Africa,Comoros,Snacks,Online,M,3/24/2012,325754773,4/30/2012,6931,152.58,97.44,1057531.98,675356.64,382175.34 Europe,Belarus,Meat,Offline,L,8/31/2011,522170150,9/30/2011,606,421.89,364.69,255665.34,221002.14,34663.20 Sub-Saharan Africa,Nigeria,Personal Care,Offline,L,3/9/2011,477284562,4/26/2011,7963,81.73,56.67,650815.99,451263.21,199552.78 Central America and the Caribbean,Grenada,Vegetables,Offline,H,10/18/2013,469271838,11/7/2013,6820,154.06,90.93,1050689.20,620142.60,430546.60 Sub-Saharan Africa,Ethiopia,Household,Online,M,12/31/2015,396618306,2/8/2016,7025,668.27,502.54,4694596.75,3530343.50,1164253.25 Sub-Saharan Africa,Mauritius ,Clothes,Online,H,7/26/2011,228122794,8/28/2011,5459,109.28,35.84,596559.52,195650.56,400908.96 Middle East and North Africa,Syria,Office Supplies,Online,C,6/28/2010,452896630,8/15/2010,1032,651.21,524.96,672048.72,541758.72,130290.00 Sub-Saharan Africa,Senegal,Personal Care,Online,M,6/16/2012,730363643,6/29/2012,9687,81.73,56.67,791718.51,548962.29,242756.22 Europe,Iceland,Baby Food,Online,H,8/29/2010,340260159,9/23/2010,9397,255.28,159.42,2398866.16,1498069.74,900796.42 Sub-Saharan Africa,Uganda,Office Supplies,Offline,H,9/14/2010,432635009,9/30/2010,5168,651.21,524.96,3365453.28,2712993.28,652460.00 Europe,Montenegro,Vegetables,Offline,L,9/9/2011,877849519,10/14/2011,4035,154.06,90.93,621632.10,366902.55,254729.55 Europe,Ireland,Office Supplies,Offline,C,7/27/2017,716577517,8/9/2017,66,651.21,524.96,42979.86,34647.36,8332.50 Australia and Oceania,Vanuatu,Cereal,Online,L,8/24/2010,409805333,8/26/2010,9360,205.70,117.11,1925352.00,1096149.60,829202.40 Australia and Oceania,Palau,Clothes,Online,M,12/7/2015,488831794,1/13/2016,5046,109.28,35.84,551426.88,180848.64,370578.24 Sub-Saharan Africa,Nigeria,Personal Care,Offline,L,1/27/2014,205268228,2/13/2014,2285,81.73,56.67,186753.05,129490.95,57262.10 Central America and the Caribbean,Cuba,Cereal,Online,C,4/11/2013,681038463,5/12/2013,3270,205.70,117.11,672639.00,382949.70,289689.30 Asia,China,Cereal,Online,H,4/2/2015,858378827,5/1/2015,2225,205.70,117.11,457682.50,260569.75,197112.75 Europe,Liechtenstein,Beverages,Online,M,5/28/2011,649838149,5/30/2011,404,47.45,31.79,19169.80,12843.16,6326.64 Sub-Saharan Africa,Rwanda,Office Supplies,Offline,C,12/6/2016,488277757,12/8/2016,1094,651.21,524.96,712423.74,574306.24,138117.50 Sub-Saharan Africa,Seychelles ,Household,Offline,M,1/5/2014,876871478,1/26/2014,4611,668.27,502.54,3081392.97,2317211.94,764181.03 Sub-Saharan Africa,Senegal,Vegetables,Online,M,3/9/2016,139105641,3/22/2016,3305,154.06,90.93,509168.30,300523.65,208644.65 Central America and the Caribbean,Nicaragua,Fruits,Online,C,7/21/2011,268779075,8/11/2011,6556,9.33,6.92,61167.48,45367.52,15799.96 Sub-Saharan Africa,Seychelles ,Cereal,Offline,C,12/26/2011,180003106,2/14/2012,5774,205.70,117.11,1187711.80,676193.14,511518.66 Central America and the Caribbean,Nicaragua,Meat,Offline,L,7/2/2011,657201564,8/16/2011,9402,421.89,364.69,3966609.78,3428815.38,537794.40 Sub-Saharan Africa,Uganda,Beverages,Online,L,9/30/2012,305110776,10/12/2012,7914,47.45,31.79,375519.30,251586.06,123933.24 Asia,Kazakhstan,Beverages,Online,C,8/31/2015,498779571,10/20/2015,8814,47.45,31.79,418224.30,280197.06,138027.24 Europe,Belarus,Clothes,Offline,H,8/30/2013,433569276,9/14/2013,1638,109.28,35.84,179000.64,58705.92,120294.72 Europe,Belarus,Clothes,Online,M,8/5/2012,275153720,8/11/2012,2955,109.28,35.84,322922.40,105907.20,217015.20 Central America and the Caribbean,Costa Rica,Cosmetics,Online,C,10/19/2011,709519231,11/22/2011,1362,437.20,263.33,595466.40,358655.46,236810.94 Asia,South Korea,Cereal,Online,L,6/17/2015,692964637,8/3/2015,2490,205.70,117.11,512193.00,291603.90,220589.10 Central America and the Caribbean,Antigua and Barbuda ,Personal Care,Online,C,9/9/2013,602101266,9/16/2013,3999,81.73,56.67,326838.27,226623.33,100214.94 Middle East and North Africa,United Arab Emirates,Household,Online,L,8/4/2016,883852946,8/20/2016,583,668.27,502.54,389601.41,292980.82,96620.59 Europe,Albania,Cosmetics,Offline,H,8/15/2012,705456006,9/21/2012,8964,437.20,263.33,3919060.80,2360490.12,1558570.68 Asia,Maldives,Cereal,Offline,C,3/24/2010,204459273,4/14/2010,2897,205.70,117.11,595912.90,339267.67,256645.23 Asia,Japan,Beverages,Offline,H,5/8/2011,938724076,6/11/2011,8170,47.45,31.79,387666.50,259724.30,127942.20 Australia and Oceania,Fiji,Meat,Offline,L,3/17/2015,936424243,4/17/2015,7598,421.89,364.69,3205520.22,2770914.62,434605.60 Europe,Lithuania,Fruits,Offline,M,7/7/2014,546046102,8/3/2014,6031,9.33,6.92,56269.23,41734.52,14534.71 Europe,Sweden,Baby Food,Offline,C,5/28/2014,186388480,6/26/2014,5348,255.28,159.42,1365237.44,852578.16,512659.28 Middle East and North Africa,Egypt,Snacks,Online,C,7/5/2013,796562707,7/8/2013,9461,152.58,97.44,1443559.38,921879.84,521679.54 Sub-Saharan Africa,Democratic Republic of the Congo,Vegetables,Offline,M,4/21/2015,685992610,4/29/2015,9312,154.06,90.93,1434606.72,846740.16,587866.56 Europe,Iceland,Household,Online,C,10/5/2016,484414517,10/19/2016,7875,668.27,502.54,5262626.25,3957502.50,1305123.75 Sub-Saharan Africa,Ethiopia,Cereal,Online,M,2/19/2012,891877257,3/18/2012,5155,205.70,117.11,1060383.50,603702.05,456681.45 Europe,Estonia,Household,Offline,M,11/19/2011,428742158,12/12/2011,3187,668.27,502.54,2129776.49,1601594.98,528181.51 Asia,China,Meat,Online,L,3/3/2016,385683047,3/10/2016,1039,421.89,364.69,438343.71,378912.91,59430.80 Central America and the Caribbean,El Salvador,Meat,Offline,M,2/1/2011,773686254,2/6/2011,9810,421.89,364.69,4138740.90,3577608.90,561132.00 Middle East and North Africa,Oman,Household,Online,C,4/13/2010,774050605,5/11/2010,7630,668.27,502.54,5098900.10,3834380.20,1264519.90 Australia and Oceania,Nauru,Personal Care,Offline,M,5/2/2013,988387429,6/21/2013,4659,81.73,56.67,380780.07,264025.53,116754.54 Middle East and North Africa,Turkey,Fruits,Offline,C,2/5/2017,288620555,3/12/2017,8091,9.33,6.92,75489.03,55989.72,19499.31 Europe,Romania,Cereal,Online,C,12/2/2011,766986310,12/9/2011,7148,205.70,117.11,1470343.60,837102.28,633241.32 Europe,Croatia,Snacks,Offline,H,9/16/2015,986033523,10/21/2015,8086,152.58,97.44,1233761.88,787899.84,445862.04 Europe,Moldova ,Beverages,Online,C,2/26/2017,928623521,4/10/2017,9191,47.45,31.79,436112.95,292181.89,143931.06 Sub-Saharan Africa,Mozambique,Clothes,Online,C,5/18/2017,647930133,7/5/2017,5780,109.28,35.84,631638.40,207155.20,424483.20 Europe,Latvia,Personal Care,Offline,L,12/23/2010,717439687,1/22/2011,5201,81.73,56.67,425077.73,294740.67,130337.06 Europe,Norway,Beverages,Offline,H,7/22/2012,880951011,7/29/2012,1836,47.45,31.79,87118.20,58366.44,28751.76 Middle East and North Africa,Bahrain,Household,Online,M,1/23/2015,502575433,2/1/2015,2094,668.27,502.54,1399357.38,1052318.76,347038.62 Asia,Thailand,Cosmetics,Online,L,4/18/2016,816736781,4/24/2016,9418,437.20,263.33,4117549.60,2480041.94,1637507.66 Sub-Saharan Africa,Liberia,Fruits,Online,L,2/15/2015,878171384,3/17/2015,9282,9.33,6.92,86601.06,64231.44,22369.62 Asia,China,Baby Food,Online,C,4/7/2015,711928069,4/9/2015,4191,255.28,159.42,1069878.48,668129.22,401749.26 Central America and the Caribbean,Belize,Fruits,Online,M,12/1/2013,863368165,12/7/2013,8681,9.33,6.92,80993.73,60072.52,20921.21 Central America and the Caribbean,Costa Rica,Clothes,Offline,H,2/23/2013,148165500,3/11/2013,4319,109.28,35.84,471980.32,154792.96,317187.36 Asia,South Korea,Fruits,Offline,C,1/31/2016,602306401,2/15/2016,4704,9.33,6.92,43888.32,32551.68,11336.64 Europe,Netherlands,Office Supplies,Offline,M,7/19/2015,732089698,8/17/2015,465,651.21,524.96,302812.65,244106.40,58706.25 Asia,North Korea,Clothes,Offline,H,1/4/2013,464126718,2/17/2013,4265,109.28,35.84,466079.20,152857.60,313221.60 Central America and the Caribbean,Belize,Clothes,Offline,L,10/17/2014,695341289,11/22/2014,5794,109.28,35.84,633168.32,207656.96,425511.36 Central America and the Caribbean,Grenada,Snacks,Offline,H,2/18/2013,142969739,4/3/2013,6778,152.58,97.44,1034187.24,660448.32,373738.92 Asia,Tajikistan,Vegetables,Online,C,9/11/2012,294560897,10/25/2012,5970,154.06,90.93,919738.20,542852.10,376886.10 Asia,Brunei,Office Supplies,Offline,C,8/20/2011,457976090,9/17/2011,4157,651.21,524.96,2707079.97,2182258.72,524821.25 Europe,Vatican City,Office Supplies,Online,C,12/13/2012,911389148,1/5/2013,9157,651.21,524.96,5963129.97,4807058.72,1156071.25 Sub-Saharan Africa,Namibia,Fruits,Offline,C,2/23/2013,653286397,3/17/2013,817,9.33,6.92,7622.61,5653.64,1968.97 Europe,Portugal,Baby Food,Online,M,7/29/2013,552466666,8/3/2013,6018,255.28,159.42,1536275.04,959389.56,576885.48 Sub-Saharan Africa,Senegal,Personal Care,Offline,H,8/24/2016,198041284,9/9/2016,3672,81.73,56.67,300112.56,208092.24,92020.32 Sub-Saharan Africa,Rwanda,Beverages,Online,M,6/25/2014,149434077,7/31/2014,9719,47.45,31.79,461166.55,308967.01,152199.54 Middle East and North Africa,Afghanistan,Household,Online,C,5/31/2015,586381375,6/10/2015,2134,668.27,502.54,1426088.18,1072420.36,353667.82 Sub-Saharan Africa,Seychelles ,Personal Care,Online,C,6/22/2017,858932006,7/14/2017,5923,81.73,56.67,484086.79,335656.41,148430.38 Australia and Oceania,Vanuatu,Vegetables,Offline,M,3/12/2012,837447297,3/30/2012,8120,154.06,90.93,1250967.20,738351.60,512615.60 Australia and Oceania,Kiribati,Office Supplies,Offline,L,2/7/2011,462601077,3/12/2011,2794,651.21,524.96,1819480.74,1466738.24,352742.50 Australia and Oceania,New Zealand,Vegetables,Online,M,8/23/2011,195379674,9/6/2011,6042,154.06,90.93,930830.52,549399.06,381431.46 Sub-Saharan Africa,Eritrea,Office Supplies,Online,H,2/9/2016,567081916,2/9/2016,996,651.21,524.96,648605.16,522860.16,125745.00 Sub-Saharan Africa,Niger,Beverages,Offline,M,9/18/2012,829319131,10/28/2012,2815,47.45,31.79,133571.75,89488.85,44082.90 Middle East and North Africa,Lebanon,Fruits,Online,C,4/2/2017,304015147,4/22/2017,3693,9.33,6.92,34455.69,25555.56,8900.13 Sub-Saharan Africa,Burkina Faso,Office Supplies,Online,H,4/10/2016,633406293,5/24/2016,7853,651.21,524.96,5113952.13,4122510.88,991441.25 Europe,Slovenia,Personal Care,Online,L,5/5/2016,830041396,6/23/2016,6549,81.73,56.67,535249.77,371131.83,164117.94 Sub-Saharan Africa,Kenya,Personal Care,Online,M,7/1/2017,426781785,8/10/2017,3069,81.73,56.67,250829.37,173920.23,76909.14 Asia,North Korea,Personal Care,Online,H,1/27/2017,826801288,2/2/2017,7729,81.73,56.67,631691.17,438002.43,193688.74 Sub-Saharan Africa,Chad,Cosmetics,Offline,M,6/16/2013,353586232,6/20/2013,2878,437.20,263.33,1258261.60,757863.74,500397.86 North America,Greenland,Vegetables,Offline,H,6/19/2017,100935447,7/14/2017,7897,154.06,90.93,1216611.82,718074.21,498537.61 Middle East and North Africa,Somalia,Personal Care,Online,H,9/8/2010,782960259,10/4/2010,4195,81.73,56.67,342857.35,237730.65,105126.70 Sub-Saharan Africa,Sudan,Personal Care,Online,M,6/5/2017,484084498,7/25/2017,215,81.73,56.67,17571.95,12184.05,5387.90 Europe,Netherlands,Snacks,Online,C,1/18/2010,509044492,1/22/2010,6432,152.58,97.44,981394.56,626734.08,354660.48 Middle East and North Africa,Yemen,Beverages,Offline,L,3/12/2011,432889068,4/18/2011,350,47.45,31.79,16607.50,11126.50,5481.00 Central America and the Caribbean,Haiti,Baby Food,Online,H,4/16/2014,350979554,4/21/2014,1504,255.28,159.42,383941.12,239767.68,144173.44 Asia,Taiwan,Personal Care,Offline,C,1/13/2010,428989779,1/20/2010,6464,81.73,56.67,528302.72,366314.88,161987.84 Europe,Bosnia and Herzegovina,Household,Online,C,11/29/2012,452906072,12/2/2012,3826,668.27,502.54,2556801.02,1922718.04,634082.98 Asia,Philippines,Personal Care,Offline,H,12/19/2011,279027259,1/31/2012,9221,81.73,56.67,753632.33,522554.07,231078.26 Europe,Croatia,Cosmetics,Online,C,6/14/2012,283964669,7/21/2012,311,437.20,263.33,135969.20,81895.63,54073.57 Middle East and North Africa,Afghanistan,Household,Online,M,11/25/2016,914642131,1/2/2017,1787,668.27,502.54,1194198.49,898038.98,296159.51 Sub-Saharan Africa,Cape Verde,Clothes,Online,L,10/7/2013,438295972,10/14/2013,373,109.28,35.84,40761.44,13368.32,27393.12 Europe,Monaco,Meat,Online,C,7/1/2011,792475020,8/20/2011,9824,421.89,364.69,4144647.36,3582714.56,561932.80 Sub-Saharan Africa,Eritrea,Vegetables,Online,C,1/13/2012,835040605,2/10/2012,5926,154.06,90.93,912959.56,538851.18,374108.38 Europe,Italy,Cosmetics,Offline,H,8/7/2014,394166553,9/24/2014,1497,437.20,263.33,654488.40,394205.01,260283.39 Asia,Cambodia,Meat,Offline,L,11/26/2011,718339192,12/21/2011,1385,421.89,364.69,584317.65,505095.65,79222.00 Sub-Saharan Africa,Burkina Faso,Snacks,Online,C,8/25/2016,426357352,9/9/2016,7470,152.58,97.44,1139772.60,727876.80,411895.80 Europe,Bulgaria,Personal Care,Offline,L,4/30/2012,457332360,6/6/2012,3663,81.73,56.67,299376.99,207582.21,91794.78 Middle East and North Africa,Somalia,Fruits,Offline,H,7/25/2017,920688045,9/9/2017,907,9.33,6.92,8462.31,6276.44,2185.87 Sub-Saharan Africa,Burundi,Beverages,Online,M,3/7/2014,646160733,3/20/2014,2175,47.45,31.79,103203.75,69143.25,34060.50 Middle East and North Africa,Somalia,Beverages,Offline,C,7/28/2011,333799254,9/14/2011,7472,47.45,31.79,354546.40,237534.88,117011.52 Europe,Malta,Fruits,Offline,L,8/17/2012,303964936,9/6/2012,8834,9.33,6.92,82421.22,61131.28,21289.94 Asia,Sri Lanka,Cosmetics,Online,H,7/7/2017,947331607,8/16/2017,5329,437.20,263.33,2329838.80,1403285.57,926553.23 Asia,Myanmar,Vegetables,Online,L,4/26/2012,474885594,5/27/2012,8055,154.06,90.93,1240953.30,732441.15,508512.15 Europe,Vatican City,Beverages,Online,M,9/10/2010,767925727,9/15/2010,5142,47.45,31.79,243987.90,163464.18,80523.72 Europe,Serbia,Personal Care,Offline,C,3/20/2012,628063333,4/26/2012,6752,81.73,56.67,551840.96,382635.84,169205.12 Europe,Luxembourg,Cereal,Online,M,9/27/2013,727222239,11/4/2013,76,205.70,117.11,15633.20,8900.36,6732.84 Central America and the Caribbean,Saint Vincent and the Grenadines,Baby Food,Online,L,3/7/2013,457638776,4/12/2013,4338,255.28,159.42,1107404.64,691563.96,415840.68 Australia and Oceania,Marshall Islands,Cereal,Online,C,4/23/2013,181861770,6/8/2013,5794,205.70,117.11,1191825.80,678535.34,513290.46 Sub-Saharan Africa,Togo,Household,Offline,H,5/21/2010,782752549,7/4/2010,2729,668.27,502.54,1823708.83,1371431.66,452277.17 North America,Mexico,Fruits,Offline,H,2/6/2013,513484942,3/25/2013,460,9.33,6.92,4291.80,3183.20,1108.60 Sub-Saharan Africa,Guinea-Bissau,Cereal,Online,H,1/21/2016,847545278,2/25/2016,6337,205.70,117.11,1303520.90,742126.07,561394.83 Sub-Saharan Africa,Swaziland,Personal Care,Offline,C,2/18/2011,628732383,3/15/2011,4739,81.73,56.67,387318.47,268559.13,118759.34 Asia,Maldives,Clothes,Offline,M,1/1/2014,121157586,2/20/2014,2077,109.28,35.84,226974.56,74439.68,152534.88 Sub-Saharan Africa,Zambia,Snacks,Online,H,11/21/2014,559244716,12/16/2014,1794,152.58,97.44,273728.52,174807.36,98921.16 Sub-Saharan Africa,Seychelles ,Snacks,Offline,M,8/29/2012,997730100,10/5/2012,9363,152.58,97.44,1428606.54,912330.72,516275.82 Sub-Saharan Africa,Kenya,Household,Online,H,1/12/2011,561662566,1/16/2011,7290,668.27,502.54,4871688.30,3663516.60,1208171.70 Europe,Malta,Cereal,Offline,H,10/12/2014,696403443,10/23/2014,109,205.70,117.11,22421.30,12764.99,9656.31 Australia and Oceania,East Timor,Cosmetics,Online,M,10/28/2010,217626559,11/28/2010,9390,437.20,263.33,4105308.00,2472668.70,1632639.30 Europe,Croatia,Vegetables,Online,M,6/7/2017,261318242,7/26/2017,8730,154.06,90.93,1344943.80,793818.90,551124.90 Asia,Cambodia,Meat,Online,L,4/16/2012,233777320,5/25/2012,8759,421.89,364.69,3695334.51,3194319.71,501014.80 Europe,Finland,Baby Food,Offline,C,1/4/2012,961615121,2/11/2012,2138,255.28,159.42,545788.64,340839.96,204948.68 Australia and Oceania,Tuvalu,Office Supplies,Offline,H,5/4/2015,641755473,5/25/2015,8561,651.21,524.96,5575008.81,4494182.56,1080826.25 Central America and the Caribbean,Antigua and Barbuda ,Baby Food,Online,H,7/8/2014,691434705,8/6/2014,9749,255.28,159.42,2488724.72,1554185.58,934539.14 Asia,Brunei,Vegetables,Online,L,3/15/2014,798201644,4/21/2014,4459,154.06,90.93,686953.54,405456.87,281496.67 Middle East and North Africa,Syria,Meat,Offline,H,7/21/2012,269917619,8/26/2012,3476,421.89,364.69,1466489.64,1267662.44,198827.20 Europe,Switzerland,Clothes,Online,H,7/30/2012,284756457,8/3/2012,4618,109.28,35.84,504655.04,165509.12,339145.92 Australia and Oceania,Papua New Guinea,Baby Food,Online,C,10/9/2010,741204488,11/13/2010,7734,255.28,159.42,1974335.52,1232954.28,741381.24 Middle East and North Africa,Bahrain,Meat,Offline,H,1/22/2016,708060538,1/28/2016,9703,421.89,364.69,4093598.67,3538587.07,555011.60 North America,Canada,Beverages,Offline,L,9/15/2015,674435937,9/28/2015,9436,47.45,31.79,447738.20,299970.44,147767.76 Sub-Saharan Africa,Togo,Office Supplies,Offline,L,12/23/2016,299754512,1/30/2017,2876,651.21,524.96,1872879.96,1509784.96,363095.00 Australia and Oceania,Solomon Islands,Meat,Offline,H,1/24/2013,663752591,2/17/2013,7997,421.89,364.69,3373854.33,2916425.93,457428.40 Sub-Saharan Africa,Swaziland,Baby Food,Offline,C,2/22/2017,216479003,2/27/2017,9802,255.28,159.42,2502254.56,1562634.84,939619.72 Central America and the Caribbean,Haiti,Meat,Offline,M,3/6/2013,628295075,4/4/2013,5330,421.89,364.69,2248673.70,1943797.70,304876.00 Central America and the Caribbean,Antigua and Barbuda ,Household,Online,L,9/6/2012,939874637,10/6/2012,8646,668.27,502.54,5777862.42,4344960.84,1432901.58 Australia and Oceania,Tonga,Clothes,Online,M,2/10/2013,712204015,2/15/2013,5850,109.28,35.84,639288.00,209664.00,429624.00 Central America and the Caribbean,Cuba,Fruits,Offline,H,10/3/2016,476582038,11/14/2016,71,9.33,6.92,662.43,491.32,171.11 Sub-Saharan Africa,Tanzania,Office Supplies,Offline,L,11/1/2011,384620034,12/12/2011,6470,651.21,524.96,4213328.70,3396491.20,816837.50 Sub-Saharan Africa,Swaziland,Household,Online,H,2/16/2014,658241832,3/26/2014,7240,668.27,502.54,4838274.80,3638389.60,1199885.20 Europe,Kosovo,Beverages,Offline,M,3/15/2010,239683759,4/20/2010,6605,47.45,31.79,313407.25,209972.95,103434.30 Central America and the Caribbean,Saint Vincent and the Grenadines,Vegetables,Offline,H,3/7/2014,841494643,3/30/2014,5820,154.06,90.93,896629.20,529212.60,367416.60 Sub-Saharan Africa,Kenya,Beverages,Offline,H,12/19/2010,196535813,12/23/2010,8169,47.45,31.79,387619.05,259692.51,127926.54 Europe,Belgium,Household,Offline,C,1/12/2013,607981097,1/31/2013,3972,668.27,502.54,2654368.44,1996088.88,658279.56 Central America and the Caribbean,Haiti,Fruits,Offline,M,3/14/2011,399316823,4/6/2011,5576,9.33,6.92,52024.08,38585.92,13438.16 Europe,Switzerland,Personal Care,Online,M,4/12/2016,664341819,4/19/2016,2362,81.73,56.67,193046.26,133854.54,59191.72 Sub-Saharan Africa,Burundi,Fruits,Online,H,6/8/2017,317167413,7/8/2017,5740,9.33,6.92,53554.20,39720.80,13833.40 Middle East and North Africa,Lebanon,Beverages,Offline,L,4/4/2016,142217433,5/7/2016,4154,47.45,31.79,197107.30,132055.66,65051.64 Asia,Japan,Baby Food,Offline,M,5/24/2015,544228208,6/19/2015,8075,255.28,159.42,2061386.00,1287316.50,774069.50 Central America and the Caribbean,The Bahamas,Cosmetics,Online,M,10/9/2014,198248565,10/11/2014,5011,437.20,263.33,2190809.20,1319546.63,871262.57 Australia and Oceania,Vanuatu,Meat,Offline,M,5/23/2015,999639832,6/16/2015,4496,421.89,364.69,1896817.44,1639646.24,257171.20 Asia,Bangladesh,Personal Care,Offline,L,7/9/2015,414075839,8/15/2015,3097,81.73,56.67,253117.81,175506.99,77610.82 Asia,Nepal,Office Supplies,Online,M,7/2/2014,927542912,7/2/2014,9415,651.21,524.96,6131142.15,4942498.40,1188643.75 Middle East and North Africa,Libya,Fruits,Offline,H,7/8/2016,596339881,7/24/2016,9078,9.33,6.92,84697.74,62819.76,21877.98 Asia,Uzbekistan,Baby Food,Offline,M,9/8/2011,697078073,10/23/2011,9747,255.28,159.42,2488214.16,1553866.74,934347.42 Asia,Philippines,Beverages,Offline,M,2/9/2010,776681315,3/18/2010,6116,47.45,31.79,290204.20,194427.64,95776.56 Middle East and North Africa,Iran,Personal Care,Offline,M,5/20/2015,902385938,5/26/2015,4907,81.73,56.67,401049.11,278079.69,122969.42 Sub-Saharan Africa,Senegal,Cereal,Online,H,3/29/2013,311740767,4/4/2013,9876,205.70,117.11,2031493.20,1156578.36,874914.84 Europe,Switzerland,Baby Food,Online,C,3/12/2013,562607133,3/12/2013,6808,255.28,159.42,1737946.24,1085331.36,652614.88 Sub-Saharan Africa,Uganda,Cereal,Offline,C,6/18/2014,583158862,7/31/2014,8521,205.70,117.11,1752769.70,997894.31,754875.39 Sub-Saharan Africa,Cameroon,Snacks,Offline,H,5/2/2017,721882283,5/2/2017,9864,152.58,97.44,1505049.12,961148.16,543900.96 Sub-Saharan Africa,Zimbabwe,Beverages,Offline,H,10/18/2011,497576224,11/17/2011,2717,47.45,31.79,128921.65,86373.43,42548.22 Europe,United Kingdom,Personal Care,Offline,C,8/17/2011,849352014,10/4/2011,990,81.73,56.67,80912.70,56103.30,24809.40 Sub-Saharan Africa,Mozambique,Vegetables,Online,C,9/22/2012,986633479,10/3/2012,5627,154.06,90.93,866895.62,511663.11,355232.51 Asia,Kazakhstan,Vegetables,Offline,H,1/26/2012,639156949,3/8/2012,9600,154.06,90.93,1478976.00,872928.00,606048.00 Sub-Saharan Africa,Madagascar,Beverages,Offline,L,6/25/2011,506971251,8/10/2011,2914,47.45,31.79,138269.30,92636.06,45633.24 Central America and the Caribbean,Belize,Cereal,Online,M,11/4/2013,910437715,12/20/2013,7607,205.70,117.11,1564759.90,890855.77,673904.13 Middle East and North Africa,United Arab Emirates,Beverages,Offline,C,10/4/2011,440230166,10/5/2011,2744,47.45,31.79,130202.80,87231.76,42971.04 Central America and the Caribbean,Saint Lucia,Vegetables,Online,M,1/9/2014,907334935,2/14/2014,9425,154.06,90.93,1452015.50,857015.25,595000.25 Sub-Saharan Africa,Togo,Office Supplies,Offline,H,7/31/2011,593050849,8/11/2011,5780,651.21,524.96,3763993.80,3034268.80,729725.00 Asia,Malaysia,Household,Online,L,7/28/2011,998989236,7/29/2011,1970,668.27,502.54,1316491.90,990003.80,326488.10 Central America and the Caribbean,Nicaragua,Cereal,Online,M,11/7/2010,997073924,11/26/2010,5186,205.70,117.11,1066760.20,607332.46,459427.74 Sub-Saharan Africa,Togo,Cereal,Online,L,11/30/2014,879541242,1/11/2015,4654,205.70,117.11,957327.80,545029.94,412297.86 Central America and the Caribbean,Nicaragua,Meat,Offline,H,5/20/2011,108940017,6/23/2011,6627,421.89,364.69,2795865.03,2416800.63,379064.40 Europe,Moldova ,Personal Care,Online,M,8/31/2011,468131577,9/22/2011,9392,81.73,56.67,767608.16,532244.64,235363.52 Europe,Czech Republic,Beverages,Offline,L,11/13/2016,210289752,12/7/2016,8266,47.45,31.79,392221.70,262776.14,129445.56 Middle East and North Africa,Morocco,Clothes,Online,H,1/12/2014,808900868,1/30/2014,597,109.28,35.84,65240.16,21396.48,43843.68 Europe,Kosovo,Office Supplies,Online,C,3/8/2010,207763755,3/30/2010,767,651.21,524.96,499478.07,402644.32,96833.75 Asia,North Korea,Baby Food,Online,C,6/1/2013,470989739,6/18/2013,5185,255.28,159.42,1323626.80,826592.70,497034.10 Sub-Saharan Africa,The Gambia,Clothes,Online,C,12/15/2013,133002650,1/7/2014,7295,109.28,35.84,797197.60,261452.80,535744.80 Australia and Oceania,Tuvalu,Meat,Online,L,9/1/2010,948538815,9/22/2010,2569,421.89,364.69,1083835.41,936888.61,146946.80 Central America and the Caribbean,Grenada,Office Supplies,Offline,L,11/4/2014,242647063,12/8/2014,3513,651.21,524.96,2287700.73,1844184.48,443516.25 Europe,Estonia,Cosmetics,Online,H,2/12/2016,360688722,3/27/2016,4663,437.20,263.33,2038663.60,1227907.79,810755.81 Europe,Finland,Clothes,Offline,C,7/18/2016,118337619,8/11/2016,7586,109.28,35.84,828998.08,271882.24,557115.84 Central America and the Caribbean,Saint Kitts and Nevis ,Household,Online,M,9/7/2011,651580083,9/17/2011,5881,668.27,502.54,3930095.87,2955437.74,974658.13 Central America and the Caribbean,Trinidad and Tobago,Clothes,Offline,H,1/29/2017,466714942,2/24/2017,178,109.28,35.84,19451.84,6379.52,13072.32 Sub-Saharan Africa,Central African Republic,Vegetables,Offline,H,6/26/2011,390353524,7/5/2011,3137,154.06,90.93,483286.22,285247.41,198038.81 Europe,Russia,Cosmetics,Online,L,5/10/2016,419419658,6/14/2016,4452,437.20,263.33,1946414.40,1172345.16,774069.24 Central America and the Caribbean,Barbados,Office Supplies,Online,L,5/15/2016,171149671,6/26/2016,5846,651.21,524.96,3806973.66,3068916.16,738057.50 Australia and Oceania,Palau,Personal Care,Online,L,3/7/2016,233092391,3/14/2016,6073,81.73,56.67,496346.29,344156.91,152189.38 North America,Mexico,Clothes,Online,C,12/13/2013,813109147,1/4/2014,5921,109.28,35.84,647046.88,212208.64,434838.24 Central America and the Caribbean,The Bahamas,Fruits,Offline,M,9/5/2012,389373767,9/18/2012,3205,9.33,6.92,29902.65,22178.60,7724.05 Middle East and North Africa,Iran,Baby Food,Online,C,6/10/2016,660372579,7/4/2016,7776,255.28,159.42,1985057.28,1239649.92,745407.36 Australia and Oceania,Kiribati,Cosmetics,Offline,H,6/10/2011,694904410,7/15/2011,6512,437.20,263.33,2847046.40,1714804.96,1132241.44 Europe,Albania,Meat,Online,M,3/28/2015,982080590,5/6/2015,8326,421.89,364.69,3512656.14,3036408.94,476247.20 Asia,Brunei,Cereal,Offline,H,5/17/2012,281324946,6/3/2012,9158,205.70,117.11,1883800.60,1072493.38,811307.22 Sub-Saharan Africa,South Sudan,Meat,Online,L,3/11/2011,572373807,3/27/2011,6984,421.89,364.69,2946479.76,2546994.96,399484.80 Australia and Oceania,Papua New Guinea,Household,Online,M,4/16/2017,305276000,5/3/2017,6807,668.27,502.54,4548913.89,3420789.78,1128124.11 Europe,Belarus,Beverages,Offline,L,8/19/2014,250392854,9/7/2014,5665,47.45,31.79,268804.25,180090.35,88713.90 Middle East and North Africa,Saudi Arabia,Baby Food,Online,C,9/26/2014,348398196,9/30/2014,7623,255.28,159.42,1945999.44,1215258.66,730740.78 Asia,Malaysia,Vegetables,Online,L,1/20/2015,160278356,2/13/2015,8782,154.06,90.93,1352954.92,798547.26,554407.66 Europe,Serbia,Vegetables,Offline,L,4/22/2010,217332160,5/4/2010,2271,154.06,90.93,349870.26,206502.03,143368.23 Asia,Cambodia,Cosmetics,Offline,C,6/5/2011,671170938,6/24/2011,3250,437.20,263.33,1420900.00,855822.50,565077.50 Central America and the Caribbean,Panama,Fruits,Online,L,6/24/2011,843718516,7/27/2011,3913,9.33,6.92,36508.29,27077.96,9430.33 Middle East and North Africa,Iran,Personal Care,Offline,H,3/4/2012,577211225,3/9/2012,8483,81.73,56.67,693315.59,480731.61,212583.98 Sub-Saharan Africa,Sierra Leone,Vegetables,Offline,C,6/28/2012,684197890,7/24/2012,8215,154.06,90.93,1265602.90,746989.95,518612.95 Sub-Saharan Africa,Rwanda,Meat,Online,H,6/24/2012,697539842,8/11/2012,6395,421.89,364.69,2697986.55,2332192.55,365794.00 Central America and the Caribbean,Haiti,Beverages,Offline,H,1/14/2017,220410907,1/24/2017,3340,47.45,31.79,158483.00,106178.60,52304.40 Central America and the Caribbean,Cuba,Meat,Offline,C,12/26/2016,276297414,1/15/2017,1400,421.89,364.69,590646.00,510566.00,80080.00 North America,Mexico,Baby Food,Offline,M,7/26/2015,158998191,8/13/2015,9953,255.28,159.42,2540801.84,1586707.26,954094.58 Middle East and North Africa,Israel,Cereal,Offline,H,1/31/2017,582624566,2/12/2017,411,205.70,117.11,84542.70,48132.21,36410.49 Central America and the Caribbean,Cuba,Office Supplies,Online,H,7/24/2015,531600368,9/7/2015,1217,651.21,524.96,792522.57,638876.32,153646.25 Sub-Saharan Africa,Chad,Vegetables,Offline,H,8/21/2013,410661923,9/14/2013,2844,154.06,90.93,438146.64,258604.92,179541.72 Sub-Saharan Africa,Zambia,Meat,Online,L,4/1/2011,694858062,5/18/2011,2797,421.89,364.69,1180026.33,1020037.93,159988.40 Europe,Netherlands,Cosmetics,Online,H,12/17/2016,579550111,1/6/2017,612,437.20,263.33,267566.40,161157.96,106408.44 Australia and Oceania,Federated States of Micronesia,Clothes,Online,C,11/26/2013,230411899,1/9/2014,2856,109.28,35.84,312103.68,102359.04,209744.64 Australia and Oceania,Federated States of Micronesia,Fruits,Online,C,7/23/2016,333429753,8/18/2016,8128,9.33,6.92,75834.24,56245.76,19588.48 Europe,Hungary,Cereal,Online,H,12/21/2013,744902503,1/8/2014,2059,205.70,117.11,423536.30,241129.49,182406.81 Asia,China,Baby Food,Offline,H,5/25/2011,941441476,6/25/2011,2308,255.28,159.42,589186.24,367941.36,221244.88 Asia,Sri Lanka,Fruits,Offline,C,5/13/2011,469970500,5/27/2011,3570,9.33,6.92,33308.10,24704.40,8603.70 Sub-Saharan Africa,Democratic Republic of the Congo,Personal Care,Offline,M,6/22/2017,297725903,7/26/2017,2566,81.73,56.67,209719.18,145415.22,64303.96 Europe,Estonia,Snacks,Offline,C,6/16/2015,562256515,7/27/2015,3052,152.58,97.44,465674.16,297386.88,168287.28 Europe,Estonia,Snacks,Offline,H,10/29/2014,121423661,10/29/2014,815,152.58,97.44,124352.70,79413.60,44939.10 Europe,Serbia,Cosmetics,Offline,C,10/20/2014,603401172,11/5/2014,8670,437.20,263.33,3790524.00,2283071.10,1507452.90 Europe,Moldova ,Office Supplies,Online,H,9/1/2015,556675374,9/6/2015,1469,651.21,524.96,956627.49,771166.24,185461.25 Middle East and North Africa,Oman,Cosmetics,Online,L,12/27/2014,400045096,1/19/2015,1089,437.20,263.33,476110.80,286766.37,189344.43 Sub-Saharan Africa,Liberia,Clothes,Online,M,5/24/2011,172621667,6/30/2011,1442,109.28,35.84,157581.76,51681.28,105900.48 Europe,Romania,Household,Offline,M,12/7/2015,883828914,12/12/2015,3471,668.27,502.54,2319565.17,1744316.34,575248.83 Europe,Russia,Baby Food,Offline,M,6/7/2010,463403165,7/25/2010,149,255.28,159.42,38036.72,23753.58,14283.14 Europe,Luxembourg,Cosmetics,Online,C,11/11/2011,511393249,12/2/2011,1481,437.20,263.33,647493.20,389991.73,257501.47 Sub-Saharan Africa,Kenya,Cereal,Online,M,7/15/2015,448160493,9/3/2015,9504,205.70,117.11,1954972.80,1113013.44,841959.36 Europe,Russia,Beverages,Offline,C,1/18/2014,664378726,2/28/2014,3284,47.45,31.79,155825.80,104398.36,51427.44 Middle East and North Africa,Yemen,Personal Care,Offline,M,3/15/2016,271034276,4/2/2016,3920,81.73,56.67,320381.60,222146.40,98235.20 Europe,Denmark,Baby Food,Offline,H,12/8/2012,249425971,1/22/2013,9542,255.28,159.42,2435881.76,1521185.64,914696.12 Sub-Saharan Africa,Cote d'Ivoire,Baby Food,Online,L,5/26/2011,301165139,7/9/2011,312,255.28,159.42,79647.36,49739.04,29908.32 Sub-Saharan Africa,Uganda,Fruits,Offline,L,1/5/2016,198175609,2/3/2016,3421,9.33,6.92,31917.93,23673.32,8244.61 Middle East and North Africa,Morocco,Vegetables,Online,C,2/14/2017,232693707,3/13/2017,8094,154.06,90.93,1246961.64,735987.42,510974.22 Europe,Iceland,Cereal,Online,L,7/3/2017,767268264,7/3/2017,585,205.70,117.11,120334.50,68509.35,51825.15 Asia,China,Household,Offline,H,5/31/2013,884760606,6/30/2013,9179,668.27,502.54,6134050.33,4612814.66,1521235.67 Middle East and North Africa,Egypt,Snacks,Offline,L,7/16/2013,638344562,8/14/2013,9196,152.58,97.44,1403125.68,896058.24,507067.44 Sub-Saharan Africa,Republic of the Congo,Personal Care,Offline,H,6/26/2012,601506459,7/25/2012,7983,81.73,56.67,652450.59,452396.61,200053.98 Australia and Oceania,New Zealand,Office Supplies,Online,M,4/13/2017,518045127,5/30/2017,9920,651.21,524.96,6460003.20,5207603.20,1252400.00 Asia,Mongolia,Office Supplies,Offline,L,4/20/2013,652071893,5/4/2013,1418,651.21,524.96,923415.78,744393.28,179022.50 Sub-Saharan Africa,Botswana,Snacks,Online,C,6/30/2013,438010585,8/18/2013,5920,152.58,97.44,903273.60,576844.80,326428.80 Middle East and North Africa,Israel,Office Supplies,Offline,H,9/21/2016,730597531,10/26/2016,8900,651.21,524.96,5795769.00,4672144.00,1123625.00 Europe,Serbia,Office Supplies,Offline,L,7/23/2011,654881560,9/3/2011,2861,651.21,524.96,1863111.81,1501910.56,361201.25 Europe,Croatia,Meat,Offline,M,5/9/2010,756224000,5/13/2010,2341,421.89,364.69,987644.49,853739.29,133905.20 Sub-Saharan Africa,Mauritius ,Meat,Online,L,3/3/2015,750298678,4/18/2015,8907,421.89,364.69,3757774.23,3248293.83,509480.40 Asia,China,Cosmetics,Offline,C,12/24/2013,873091924,2/12/2014,6157,437.20,263.33,2691840.40,1621322.81,1070517.59 Europe,Georgia,Cosmetics,Online,H,10/8/2014,530902564,11/19/2014,4721,437.20,263.33,2064021.20,1243180.93,820840.27 Asia,Taiwan,Baby Food,Offline,L,6/6/2011,550341928,6/15/2011,7261,255.28,159.42,1853588.08,1157548.62,696039.46 Asia,Cambodia,Cosmetics,Online,C,4/11/2010,928333842,5/8/2010,3468,437.20,263.33,1516209.60,913228.44,602981.16 Central America and the Caribbean,Saint Kitts and Nevis ,Baby Food,Online,H,2/15/2011,382114636,3/20/2011,5067,255.28,159.42,1293503.76,807781.14,485722.62 Australia and Oceania,Solomon Islands,Baby Food,Online,C,1/23/2011,399233138,1/29/2011,812,255.28,159.42,207287.36,129449.04,77838.32 Sub-Saharan Africa,Togo,Cosmetics,Offline,C,10/26/2015,287550675,12/1/2015,1490,437.20,263.33,651428.00,392361.70,259066.30 Sub-Saharan Africa,Botswana,Beverages,Offline,H,4/3/2013,325241076,4/3/2013,4917,47.45,31.79,233311.65,156311.43,77000.22 Europe,Netherlands,Cereal,Offline,M,1/5/2015,410790669,2/17/2015,943,205.70,117.11,193975.10,110434.73,83540.37 Sub-Saharan Africa,Ghana,Baby Food,Online,M,11/14/2014,512998282,12/26/2014,6447,255.28,159.42,1645790.16,1027780.74,618009.42 Asia,Malaysia,Fruits,Offline,M,3/30/2015,220975244,5/12/2015,340,9.33,6.92,3172.20,2352.80,819.40 Middle East and North Africa,Jordan,Baby Food,Online,H,10/27/2015,994145381,11/21/2015,8565,255.28,159.42,2186473.20,1365432.30,821040.90 Sub-Saharan Africa,Niger,Clothes,Offline,M,5/13/2017,312245023,6/18/2017,9096,109.28,35.84,994010.88,326000.64,668010.24 Asia,Tajikistan,Office Supplies,Offline,H,5/3/2010,225322997,5/10/2010,6937,651.21,524.96,4517443.77,3641647.52,875796.25 Asia,Indonesia,Meat,Online,M,7/23/2016,603740632,8/29/2016,9124,421.89,364.69,3849324.36,3327431.56,521892.80 Australia and Oceania,Solomon Islands,Personal Care,Online,L,4/6/2017,488171756,4/14/2017,9726,81.73,56.67,794905.98,551172.42,243733.56 Middle East and North Africa,Pakistan,Cereal,Offline,M,6/21/2017,339602696,7/11/2017,4839,205.70,117.11,995382.30,566695.29,428687.01 Europe,Netherlands,Personal Care,Offline,M,11/25/2011,689332282,12/4/2011,7596,81.73,56.67,620821.08,430465.32,190355.76 Middle East and North Africa,Lebanon,Cereal,Online,L,6/28/2011,788971841,7/24/2011,3155,205.70,117.11,648983.50,369482.05,279501.45 Europe,Netherlands,Baby Food,Online,M,11/15/2016,860445201,11/22/2016,3711,255.28,159.42,947344.08,591607.62,355736.46 Asia,Brunei,Office Supplies,Online,H,8/14/2014,745988690,8/18/2014,3486,651.21,524.96,2270118.06,1830010.56,440107.50 Middle East and North Africa,Afghanistan,Personal Care,Online,H,4/11/2011,358151137,4/18/2011,3735,81.73,56.67,305261.55,211662.45,93599.10 Australia and Oceania,Papua New Guinea,Cosmetics,Online,M,6/20/2014,129793870,7/9/2014,7745,437.20,263.33,3386114.00,2039490.85,1346623.15 Australia and Oceania,Tuvalu,Office Supplies,Online,C,12/11/2013,564090716,1/10/2014,5833,651.21,524.96,3798507.93,3062091.68,736416.25 Central America and the Caribbean,Haiti,Beverages,Online,C,9/4/2015,884528005,10/20/2015,348,47.45,31.79,16512.60,11062.92,5449.68 Central America and the Caribbean,Saint Kitts and Nevis ,Household,Offline,M,4/30/2015,384904563,5/7/2015,668,668.27,502.54,446404.36,335696.72,110707.64 Sub-Saharan Africa,Gabon,Cosmetics,Offline,L,3/17/2017,679331719,4/8/2017,8207,437.20,263.33,3588100.40,2161149.31,1426951.09 Asia,China,Cereal,Online,C,5/3/2015,752233302,6/7/2015,1405,205.70,117.11,289008.50,164539.55,124468.95 Europe,Moldova ,Snacks,Online,M,5/9/2012,108345639,5/10/2012,737,152.58,97.44,112451.46,71813.28,40638.18 Europe,Cyprus,Cereal,Online,M,10/9/2015,122717559,10/27/2015,3708,205.70,117.11,762735.60,434243.88,328491.72 Australia and Oceania,Federated States of Micronesia,Cereal,Offline,H,6/8/2011,890710389,7/24/2011,9853,205.70,117.11,2026762.10,1153884.83,872877.27 Australia and Oceania,Nauru,Cereal,Online,M,10/5/2012,777997958,11/3/2012,5740,205.70,117.11,1180718.00,672211.40,508506.60 Sub-Saharan Africa,Sierra Leone,Office Supplies,Online,C,7/10/2011,470566594,8/9/2011,9967,651.21,524.96,6490610.07,5232276.32,1258333.75 Central America and the Caribbean,Grenada,Cereal,Offline,L,11/25/2011,724715125,1/12/2012,8165,205.70,117.11,1679540.50,956203.15,723337.35 Australia and Oceania,Samoa ,Fruits,Online,H,7/31/2011,117054879,9/14/2011,7995,9.33,6.92,74593.35,55325.40,19267.95 Middle East and North Africa,Israel,Snacks,Offline,L,2/3/2013,894509685,2/23/2013,4149,152.58,97.44,633054.42,404278.56,228775.86 Europe,Denmark,Clothes,Online,L,6/18/2012,424315869,7/28/2012,3350,109.28,35.84,366088.00,120064.00,246024.00 Sub-Saharan Africa,Sudan,Snacks,Online,C,7/28/2010,644022262,7/31/2010,9354,152.58,97.44,1427233.32,911453.76,515779.56 Middle East and North Africa,Qatar,Snacks,Offline,C,12/6/2016,411490190,1/3/2017,7946,152.58,97.44,1212400.68,774258.24,438142.44 Asia,Thailand,Office Supplies,Offline,M,8/12/2015,454893481,8/29/2015,1945,651.21,524.96,1266603.45,1021047.20,245556.25 Middle East and North Africa,Qatar,Cosmetics,Offline,H,6/23/2014,222718465,7/30/2014,6198,437.20,263.33,2709765.60,1632119.34,1077646.26 Central America and the Caribbean,Cuba,Personal Care,Offline,L,1/30/2011,133763968,3/15/2011,2586,81.73,56.67,211353.78,146548.62,64805.16 Asia,Tajikistan,Cereal,Online,H,8/20/2011,227141320,8/24/2011,5019,205.70,117.11,1032408.30,587775.09,444633.21 Middle East and North Africa,Iran,Cereal,Online,C,1/15/2012,612274348,2/11/2012,4441,205.70,117.11,913513.70,520085.51,393428.19 Australia and Oceania,Palau,Snacks,Online,C,11/3/2016,118899381,12/4/2016,3824,152.58,97.44,583465.92,372610.56,210855.36 Asia,Myanmar,Meat,Offline,H,9/19/2012,347065246,10/14/2012,3174,421.89,364.69,1339078.86,1157526.06,181552.80 Asia,South Korea,Fruits,Offline,L,2/16/2010,717133271,3/19/2010,4526,9.33,6.92,42227.58,31319.92,10907.66 Sub-Saharan Africa,Ethiopia,Cereal,Online,H,10/23/2016,719777286,10/30/2016,6949,205.70,117.11,1429409.30,813797.39,615611.91 Australia and Oceania,Federated States of Micronesia,Baby Food,Online,L,4/14/2011,365983617,5/13/2011,1540,255.28,159.42,393131.20,245506.80,147624.40 Sub-Saharan Africa,Mozambique,Snacks,Online,M,10/8/2014,637051093,10/14/2014,6430,152.58,97.44,981089.40,626539.20,354550.20 Europe,Montenegro,Office Supplies,Offline,H,9/12/2011,334591042,9/27/2011,1780,651.21,524.96,1159153.80,934428.80,224725.00 Middle East and North Africa,Syria,Personal Care,Offline,H,1/26/2014,130527293,2/12/2014,4782,81.73,56.67,390832.86,270995.94,119836.92 Central America and the Caribbean,Dominica,Snacks,Offline,L,3/26/2012,317096173,5/4/2012,4659,152.58,97.44,710870.22,453972.96,256897.26 Middle East and North Africa,Israel,Snacks,Offline,M,7/11/2016,356846511,8/26/2016,7667,152.58,97.44,1169830.86,747072.48,422758.38 Sub-Saharan Africa,Burundi,Baby Food,Offline,H,8/21/2015,232639634,9/5/2015,2092,255.28,159.42,534045.76,333506.64,200539.12 Asia,Maldives,Snacks,Offline,C,9/6/2010,897649371,9/18/2010,3252,152.58,97.44,496190.16,316874.88,179315.28 Europe,Andorra,Personal Care,Online,L,5/30/2011,225362050,6/17/2011,8494,81.73,56.67,694214.62,481354.98,212859.64 Central America and the Caribbean,Dominica,Household,Online,H,4/12/2017,659576499,4/12/2017,2198,668.27,502.54,1468857.46,1104582.92,364274.54 Middle East and North Africa,Iraq,Cereal,Offline,C,8/30/2013,664404046,10/8/2013,777,205.70,117.11,159828.90,90994.47,68834.43 Central America and the Caribbean,Saint Lucia,Cereal,Online,M,7/4/2013,574268519,7/6/2013,7671,205.70,117.11,1577924.70,898350.81,679573.89 Europe,Montenegro,Personal Care,Online,C,9/5/2015,343906247,9/30/2015,8356,81.73,56.67,682935.88,473534.52,209401.36 Europe,Moldova ,Personal Care,Online,C,4/26/2016,898366057,5/24/2016,5335,81.73,56.67,436029.55,302334.45,133695.10 Europe,Georgia,Beverages,Online,H,8/20/2012,983009278,10/2/2012,3145,47.45,31.79,149230.25,99979.55,49250.70 Europe,Germany,Meat,Online,C,4/6/2014,313509738,5/21/2014,3353,421.89,364.69,1414597.17,1222805.57,191791.60 Europe,Russia,Snacks,Offline,M,10/1/2016,925853765,10/18/2016,9558,152.58,97.44,1458359.64,931331.52,527028.12 Asia,Taiwan,Snacks,Online,M,12/7/2012,426340186,1/12/2013,2390,152.58,97.44,364666.20,232881.60,131784.60 Central America and the Caribbean,El Salvador,Clothes,Online,M,11/6/2011,541580331,12/13/2011,4510,109.28,35.84,492852.80,161638.40,331214.40 Central America and the Caribbean,Jamaica,Vegetables,Offline,H,3/28/2012,368498027,5/14/2012,5610,154.06,90.93,864276.60,510117.30,354159.30 Sub-Saharan Africa,Kenya,Clothes,Online,H,12/3/2013,424329602,12/5/2013,7414,109.28,35.84,810201.92,265717.76,544484.16 Asia,South Korea,Meat,Online,L,12/27/2013,396623885,1/29/2014,8676,421.89,364.69,3660317.64,3164050.44,496267.20 Europe,Cyprus,Clothes,Offline,H,8/3/2010,493242204,8/31/2010,184,109.28,35.84,20107.52,6594.56,13512.96 Sub-Saharan Africa,Rwanda,Clothes,Online,M,4/20/2014,992358386,5/6/2014,9754,109.28,35.84,1065917.12,349583.36,716333.76 Sub-Saharan Africa,Guinea-Bissau,Office Supplies,Offline,M,1/20/2014,892458760,2/28/2014,7234,651.21,524.96,4710853.14,3797560.64,913292.50 Sub-Saharan Africa,Angola,Baby Food,Online,C,3/14/2011,162342154,4/10/2011,9506,255.28,159.42,2426691.68,1515446.52,911245.16 Australia and Oceania,Kiribati,Cosmetics,Offline,C,9/20/2015,191119897,10/14/2015,5479,437.20,263.33,2395418.80,1442785.07,952633.73 Europe,Moldova ,Baby Food,Offline,M,3/1/2012,638215816,3/12/2012,1097,255.28,159.42,280042.16,174883.74,105158.42 Sub-Saharan Africa,Senegal,Cosmetics,Online,L,6/8/2016,783366239,7/12/2016,4333,437.20,263.33,1894387.60,1141008.89,753378.71 Europe,Czech Republic,Office Supplies,Offline,H,6/6/2011,876619994,7/1/2011,192,651.21,524.96,125032.32,100792.32,24240.00 Sub-Saharan Africa,Nigeria,Fruits,Offline,M,5/22/2011,788338410,6/23/2011,5709,9.33,6.92,53264.97,39506.28,13758.69 Sub-Saharan Africa,Lesotho,Vegetables,Online,M,9/9/2012,459195315,10/19/2012,4953,154.06,90.93,763059.18,450376.29,312682.89 Europe,Montenegro,Cereal,Offline,M,10/14/2012,350177037,11/29/2012,4022,205.70,117.11,827325.40,471016.42,356308.98 Europe,Russia,Baby Food,Offline,M,12/20/2013,992582404,1/25/2014,6046,255.28,159.42,1543422.88,963853.32,579569.56 Europe,Netherlands,Cosmetics,Offline,C,1/10/2012,738022744,1/21/2012,6185,437.20,263.33,2704082.00,1628696.05,1075385.95 Europe,Croatia,Baby Food,Online,L,3/4/2015,708421885,3/13/2015,6633,255.28,159.42,1693272.24,1057432.86,635839.38 Australia and Oceania,Australia,Meat,Offline,M,7/15/2017,746016156,8/15/2017,1614,421.89,364.69,680930.46,588609.66,92320.80 Europe,Slovenia,Beverages,Online,L,7/14/2010,763354384,7/30/2010,2381,47.45,31.79,112978.45,75691.99,37286.46 Middle East and North Africa,Azerbaijan,Cereal,Online,H,12/4/2016,293297898,12/22/2016,2221,205.70,117.11,456859.70,260101.31,196758.39 Europe,Moldova ,Cereal,Online,L,4/29/2011,739020526,5/26/2011,1451,205.70,117.11,298470.70,169926.61,128544.09 Sub-Saharan Africa,Comoros,Personal Care,Online,C,11/2/2014,424008595,12/21/2014,2421,81.73,56.67,197868.33,137198.07,60670.26 Sub-Saharan Africa,Madagascar,Meat,Online,C,7/25/2015,442060935,8/19/2015,4509,421.89,364.69,1902302.01,1644387.21,257914.80 Europe,Ireland,Vegetables,Offline,M,3/26/2010,607288873,4/6/2010,9128,154.06,90.93,1406259.68,830009.04,576250.64 North America,Canada,Beverages,Online,C,8/2/2015,804116237,8/4/2015,4719,47.45,31.79,223916.55,150017.01,73899.54 Middle East and North Africa,Oman,Personal Care,Online,C,7/19/2011,537279355,7/25/2011,1756,81.73,56.67,143517.88,99512.52,44005.36 Sub-Saharan Africa,Madagascar,Beverages,Offline,H,3/12/2013,281827056,3/30/2013,7744,47.45,31.79,367452.80,246181.76,121271.04 Europe,United Kingdom,Cereal,Offline,M,12/14/2013,133120667,1/31/2014,2219,205.70,117.11,456448.30,259867.09,196581.21 Asia,India,Household,Online,H,2/4/2012,256834018,3/18/2012,1748,668.27,502.54,1168135.96,878439.92,289696.04 Sub-Saharan Africa,Rwanda,Household,Online,M,7/12/2014,438953435,7/24/2014,4931,668.27,502.54,3295239.37,2478024.74,817214.63 Sub-Saharan Africa,Tanzania,Vegetables,Online,L,4/20/2010,535777747,4/26/2010,7396,154.06,90.93,1139427.76,672518.28,466909.48 Australia and Oceania,Tonga,Personal Care,Offline,L,3/26/2012,923918282,5/2/2012,6806,81.73,56.67,556254.38,385696.02,170558.36 Europe,Czech Republic,Personal Care,Online,L,4/18/2015,250298869,4/22/2015,7852,81.73,56.67,641743.96,444972.84,196771.12 Australia and Oceania,Vanuatu,Cereal,Online,H,7/3/2015,382155835,7/26/2015,7259,205.70,117.11,1493176.30,850101.49,643074.81 Europe,Slovenia,Baby Food,Online,H,9/26/2013,557038009,11/10/2013,8780,255.28,159.42,2241358.40,1399707.60,841650.80 Middle East and North Africa,Iraq,Baby Food,Online,C,12/8/2011,532806718,1/12/2012,8203,255.28,159.42,2094061.84,1307722.26,786339.58 Sub-Saharan Africa,Namibia,Beverages,Online,H,11/23/2016,137635791,1/9/2017,8344,47.45,31.79,395922.80,265255.76,130667.04 Asia,Myanmar,Cereal,Online,L,10/3/2013,620011556,11/20/2013,4052,205.70,117.11,833496.40,474529.72,358966.68 Asia,Bhutan,Cosmetics,Offline,C,3/22/2015,598732841,5/4/2015,7208,437.20,263.33,3151337.60,1898082.64,1253254.96 Europe,Ukraine,Personal Care,Offline,H,5/7/2012,112910974,5/7/2012,1721,81.73,56.67,140657.33,97529.07,43128.26 Australia and Oceania,Federated States of Micronesia,Clothes,Online,C,3/11/2016,171969783,4/7/2016,8535,109.28,35.84,932704.80,305894.40,626810.40 Europe,Ukraine,Snacks,Online,L,2/25/2016,505645596,4/9/2016,623,152.58,97.44,95057.34,60705.12,34352.22 Sub-Saharan Africa,Niger,Cereal,Online,C,1/17/2014,913987243,1/24/2014,7991,205.70,117.11,1643748.70,935826.01,707922.69 Europe,Kosovo,Personal Care,Offline,M,10/6/2012,817356050,11/16/2012,2673,81.73,56.67,218464.29,151478.91,66985.38 Asia,Mongolia,Office Supplies,Online,L,6/22/2012,606425845,6/25/2012,3739,651.21,524.96,2434874.19,1962825.44,472048.75 Sub-Saharan Africa,Cape Verde,Meat,Offline,M,5/29/2014,292182958,6/16/2014,2285,421.89,364.69,964018.65,833316.65,130702.00 Europe,Ireland,Snacks,Online,H,1/27/2017,855926215,3/15/2017,6442,152.58,97.44,982920.36,627708.48,355211.88 Middle East and North Africa,Oman,Cosmetics,Offline,C,6/21/2012,199266946,7/5/2012,6372,437.20,263.33,2785838.40,1677938.76,1107899.64 Central America and the Caribbean,Saint Vincent and the Grenadines,Cosmetics,Online,C,8/8/2012,794128978,9/10/2012,9267,437.20,263.33,4051532.40,2440279.11,1611253.29 Asia,Cambodia,Meat,Offline,L,5/22/2015,232748639,6/21/2015,4349,421.89,364.69,1834799.61,1586036.81,248762.80 Asia,Kyrgyzstan,Snacks,Offline,L,1/8/2016,677674758,1/27/2016,7875,152.58,97.44,1201567.50,767340.00,434227.50 Europe,Liechtenstein,Meat,Online,M,10/5/2010,311768662,11/2/2010,8130,421.89,364.69,3429965.70,2964929.70,465036.00 Asia,Kazakhstan,Cereal,Offline,M,11/15/2015,988204181,12/9/2015,432,205.70,117.11,88862.40,50591.52,38270.88 Sub-Saharan Africa,Uganda,Snacks,Offline,M,10/23/2010,580467641,11/28/2010,2129,152.58,97.44,324842.82,207449.76,117393.06 Europe,Andorra,Cereal,Online,H,3/6/2010,632357871,4/6/2010,7601,205.70,117.11,1563525.70,890153.11,673372.59 Europe,Finland,Beverages,Online,H,6/30/2014,507986199,8/10/2014,3260,47.45,31.79,154687.00,103635.40,51051.60 Sub-Saharan Africa,Burundi,Meat,Online,H,12/28/2013,541776454,2/1/2014,2547,421.89,364.69,1074553.83,928865.43,145688.40 Sub-Saharan Africa,The Gambia,Snacks,Online,H,2/8/2015,688464963,3/25/2015,937,152.58,97.44,142967.46,91301.28,51666.18 Europe,Monaco,Baby Food,Online,M,12/23/2013,973100554,2/3/2014,933,255.28,159.42,238176.24,148738.86,89437.38 Europe,Poland,Personal Care,Online,H,5/23/2015,141044557,6/2/2015,7073,81.73,56.67,578076.29,400826.91,177249.38 Australia and Oceania,New Zealand,Household,Offline,M,10/31/2013,607970798,11/22/2013,924,668.27,502.54,617481.48,464346.96,153134.52 Australia and Oceania,Solomon Islands,Clothes,Online,M,6/3/2012,809865605,6/16/2012,6084,109.28,35.84,664859.52,218050.56,446808.96 Australia and Oceania,Kiribati,Household,Offline,L,7/28/2011,153027808,8/5/2011,3184,668.27,502.54,2127771.68,1600087.36,527684.32 Asia,Vietnam,Clothes,Offline,M,9/27/2012,364068734,11/10/2012,4884,109.28,35.84,533723.52,175042.56,358680.96 Europe,Belarus,Household,Offline,L,9/5/2014,539912211,10/20/2014,876,668.27,502.54,585404.52,440225.04,145179.48 Australia and Oceania,Solomon Islands,Household,Online,L,3/13/2017,297794568,3/13/2017,2885,668.27,502.54,1927958.95,1449827.90,478131.05 Middle East and North Africa,Kuwait,Vegetables,Online,L,5/21/2017,225264632,6/29/2017,9665,154.06,90.93,1488989.90,878838.45,610151.45 Sub-Saharan Africa,Mali,Personal Care,Offline,C,5/27/2013,530183732,7/15/2013,2003,81.73,56.67,163705.19,113510.01,50195.18 Asia,Maldives,Snacks,Online,L,10/28/2015,590725696,11/6/2015,7715,152.58,97.44,1177154.70,751749.60,425405.10 Middle East and North Africa,Egypt,Baby Food,Online,M,7/28/2013,305376851,8/10/2013,6651,255.28,159.42,1697867.28,1060302.42,637564.86 Central America and the Caribbean,Honduras,Cosmetics,Online,C,7/29/2015,542936027,9/7/2015,5690,437.20,263.33,2487668.00,1498347.70,989320.30 Sub-Saharan Africa,Seychelles ,Vegetables,Offline,L,9/2/2016,892514550,10/6/2016,3744,154.06,90.93,576800.64,340441.92,236358.72 Sub-Saharan Africa,Djibouti,Fruits,Online,C,7/21/2016,113536250,8/15/2016,6754,9.33,6.92,63014.82,46737.68,16277.14 Australia and Oceania,Marshall Islands,Clothes,Offline,H,12/26/2015,185737454,1/5/2016,2695,109.28,35.84,294509.60,96588.80,197920.80 Central America and the Caribbean,Grenada,Personal Care,Online,M,12/29/2012,459166991,1/19/2013,6571,81.73,56.67,537047.83,372378.57,164669.26 Sub-Saharan Africa,Comoros,Cosmetics,Offline,L,4/6/2014,804186189,4/12/2014,5419,437.20,263.33,2369186.80,1426985.27,942201.53 Central America and the Caribbean,Saint Vincent and the Grenadines,Vegetables,Online,C,3/1/2016,261468875,4/19/2016,3305,154.06,90.93,509168.30,300523.65,208644.65 Sub-Saharan Africa,Republic of the Congo,Fruits,Online,L,2/24/2016,192001378,4/12/2016,6329,9.33,6.92,59049.57,43796.68,15252.89 Central America and the Caribbean,The Bahamas,Personal Care,Offline,L,7/5/2016,227082526,8/14/2016,7621,81.73,56.67,622864.33,431882.07,190982.26 Sub-Saharan Africa,Gabon,Office Supplies,Offline,H,1/13/2013,518323647,2/6/2013,2340,651.21,524.96,1523831.40,1228406.40,295425.00 Middle East and North Africa,Tunisia ,Cosmetics,Offline,H,12/10/2013,387648570,1/18/2014,2681,437.20,263.33,1172133.20,705987.73,466145.47 Sub-Saharan Africa,Swaziland,Clothes,Online,H,5/10/2013,577293622,6/15/2013,2866,109.28,35.84,313196.48,102717.44,210479.04 Sub-Saharan Africa,Togo,Meat,Online,M,4/7/2010,999807631,4/10/2010,4151,421.89,364.69,1751265.39,1513828.19,237437.20 Europe,Lithuania,Cosmetics,Online,H,4/15/2012,288051927,5/31/2012,9821,437.20,263.33,4293741.20,2586163.93,1707577.27 Australia and Oceania,Fiji,Beverages,Offline,C,10/1/2016,745200335,10/3/2016,194,47.45,31.79,9205.30,6167.26,3038.04 Sub-Saharan Africa,Sierra Leone,Office Supplies,Offline,M,6/22/2014,694739186,7/22/2014,7619,651.21,524.96,4961568.99,3999670.24,961898.75 Asia,China,Meat,Online,L,4/8/2016,330467307,4/28/2016,1475,421.89,364.69,622287.75,537917.75,84370.00 Asia,Malaysia,Clothes,Offline,M,4/21/2011,366496026,5/19/2011,3173,109.28,35.84,346745.44,113720.32,233025.12 Asia,Philippines,Baby Food,Online,M,4/21/2016,687249171,6/9/2016,1157,255.28,159.42,295358.96,184448.94,110910.02 Asia,Laos,Meat,Online,L,3/18/2011,797463071,4/27/2011,5899,421.89,364.69,2488729.11,2151306.31,337422.80 Europe,Estonia,Snacks,Online,M,2/3/2011,272186553,3/22/2011,4904,152.58,97.44,748252.32,477845.76,270406.56 Middle East and North Africa,Algeria,Vegetables,Offline,H,12/12/2016,106780946,1/10/2017,7710,154.06,90.93,1187802.60,701070.30,486732.30 Middle East and North Africa,Azerbaijan,Office Supplies,Online,H,11/25/2011,466920077,12/29/2011,882,651.21,524.96,574367.22,463014.72,111352.50 Sub-Saharan Africa,Sudan,Cereal,Offline,C,6/9/2010,238590276,7/1/2010,3019,205.70,117.11,621008.30,353555.09,267453.21 Middle East and North Africa,Tunisia ,Clothes,Offline,L,9/29/2016,178090369,11/11/2016,9753,109.28,35.84,1065807.84,349547.52,716260.32 Asia,Kyrgyzstan,Cosmetics,Online,M,5/13/2013,662031686,5/19/2013,8742,437.20,263.33,3822002.40,2302030.86,1519971.54 Europe,Vatican City,Meat,Offline,C,5/24/2010,337338054,6/9/2010,4681,421.89,364.69,1974867.09,1707113.89,267753.20 Sub-Saharan Africa,Djibouti,Personal Care,Online,H,6/10/2011,171245801,7/15/2011,4293,81.73,56.67,350866.89,243284.31,107582.58 Middle East and North Africa,Bahrain,Vegetables,Online,C,5/16/2017,301303756,5/30/2017,1332,154.06,90.93,205207.92,121118.76,84089.16 Middle East and North Africa,Kuwait,Office Supplies,Offline,H,12/27/2014,485373246,1/15/2015,1584,651.21,524.96,1031516.64,831536.64,199980.00 Central America and the Caribbean,El Salvador,Meat,Online,H,1/30/2011,551628100,2/3/2011,7868,421.89,364.69,3319430.52,2869380.92,450049.60 Asia,Brunei,Cosmetics,Offline,M,7/5/2013,848554646,8/10/2013,5032,437.20,263.33,2199990.40,1325076.56,874913.84 Europe,Slovenia,Baby Food,Offline,M,4/5/2012,894951713,4/25/2012,4954,255.28,159.42,1264657.12,789766.68,474890.44 Australia and Oceania,Samoa ,Vegetables,Online,M,7/15/2013,729930627,8/8/2013,1548,154.06,90.93,238484.88,140759.64,97725.24 Sub-Saharan Africa,Kenya,Personal Care,Offline,C,3/31/2013,462915217,4/5/2013,5755,81.73,56.67,470356.15,326135.85,144220.30 Asia,Turkmenistan,Baby Food,Offline,C,12/8/2015,723641812,1/11/2016,548,255.28,159.42,139893.44,87362.16,52531.28 Central America and the Caribbean,Panama,Snacks,Offline,C,11/6/2015,412159240,11/23/2015,5933,152.58,97.44,905257.14,578111.52,327145.62 Sub-Saharan Africa,Liberia,Cereal,Online,M,11/16/2015,748828828,12/15/2015,3946,205.70,117.11,811692.20,462116.06,349576.14 Europe,Serbia,Baby Food,Offline,L,3/8/2016,324324405,4/4/2016,3653,255.28,159.42,932537.84,582361.26,350176.58 Europe,Spain,Vegetables,Online,H,6/8/2010,949632298,7/13/2010,6155,154.06,90.93,948239.30,559674.15,388565.15 Asia,Bangladesh,Cereal,Offline,H,4/11/2012,906051337,4/26/2012,9580,205.70,117.11,1970606.00,1121913.80,848692.20 Asia,South Korea,Baby Food,Online,C,9/20/2013,795192849,11/1/2013,4090,255.28,159.42,1044095.20,652027.80,392067.40 Asia,Taiwan,Beverages,Offline,H,8/12/2011,388980662,9/8/2011,6877,47.45,31.79,326313.65,218619.83,107693.82 Europe,United Kingdom,Vegetables,Online,C,6/12/2011,879651105,7/31/2011,7165,154.06,90.93,1103839.90,651513.45,452326.45 Australia and Oceania,Vanuatu,Baby Food,Online,C,12/27/2015,829753005,1/16/2016,1208,255.28,159.42,308378.24,192579.36,115798.88 Middle East and North Africa,Iraq,Cosmetics,Online,H,12/6/2013,222147691,12/26/2013,7293,437.20,263.33,3188499.60,1920465.69,1268033.91 Asia,Maldives,Personal Care,Offline,H,12/17/2013,910008990,12/30/2013,737,81.73,56.67,60235.01,41765.79,18469.22 Central America and the Caribbean,El Salvador,Fruits,Online,L,9/6/2010,766823232,10/7/2010,8890,9.33,6.92,82943.70,61518.80,21424.90 Asia,India,Household,Online,L,2/13/2011,436389243,3/26/2011,6129,668.27,502.54,4095826.83,3080067.66,1015759.17 Central America and the Caribbean,Barbados,Beverages,Online,C,10/20/2015,182818353,11/11/2015,8868,47.45,31.79,420786.60,281913.72,138872.88 Sub-Saharan Africa,Kenya,Cosmetics,Online,H,12/14/2014,340534389,1/28/2015,548,437.20,263.33,239585.60,144304.84,95280.76 Asia,Uzbekistan,Vegetables,Offline,L,1/3/2015,864273679,2/14/2015,6642,154.06,90.93,1023266.52,603957.06,419309.46 Europe,Sweden,Meat,Offline,H,2/11/2012,879085052,3/16/2012,9657,421.89,364.69,4074191.73,3521811.33,552380.40 Central America and the Caribbean,Honduras,Office Supplies,Offline,M,1/18/2011,930329835,1/23/2011,4127,651.21,524.96,2687543.67,2166509.92,521033.75 Central America and the Caribbean,Jamaica,Baby Food,Offline,H,11/15/2013,733681857,12/13/2013,1620,255.28,159.42,413553.60,258260.40,155293.20 Central America and the Caribbean,Antigua and Barbuda ,Snacks,Offline,L,2/21/2016,525127446,3/30/2016,5736,152.58,97.44,875198.88,558915.84,316283.04 Sub-Saharan Africa,Mozambique,Household,Offline,L,9/6/2010,610965430,9/14/2010,7103,668.27,502.54,4746721.81,3569541.62,1177180.19 Sub-Saharan Africa,Ethiopia,Beverages,Offline,L,2/8/2014,917807137,3/8/2014,8383,47.45,31.79,397773.35,266495.57,131277.78 Asia,China,Cosmetics,Online,L,1/6/2010,542576396,1/26/2010,9268,437.20,263.33,4051969.60,2440542.44,1611427.16 Middle East and North Africa,Syria,Snacks,Offline,H,5/16/2013,902509534,6/11/2013,1482,152.58,97.44,226123.56,144406.08,81717.48 Europe,Latvia,Fruits,Online,C,9/8/2013,785155379,9/29/2013,3779,9.33,6.92,35258.07,26150.68,9107.39 Europe,Georgia,Personal Care,Offline,C,9/9/2016,398375260,10/26/2016,6947,81.73,56.67,567778.31,393686.49,174091.82 Europe,Ireland,Baby Food,Online,M,3/30/2010,920343005,4/30/2010,8802,255.28,159.42,2246974.56,1403214.84,843759.72 Central America and the Caribbean,Jamaica,Household,Online,C,7/24/2013,449544942,8/9/2013,9193,668.27,502.54,6143406.11,4619850.22,1523555.89 Central America and the Caribbean,Panama,Personal Care,Online,C,11/6/2012,754779899,12/8/2012,5000,81.73,56.67,408650.00,283350.00,125300.00 Sub-Saharan Africa,Sao Tome and Principe,Personal Care,Offline,L,7/10/2010,525159204,7/31/2010,5133,81.73,56.67,419520.09,290887.11,128632.98 Asia,Nepal,Clothes,Offline,C,11/5/2013,320106685,11/22/2013,5536,109.28,35.84,604974.08,198410.24,406563.84 Asia,Myanmar,Meat,Online,C,1/2/2016,319358670,1/16/2016,4182,421.89,364.69,1764343.98,1525133.58,239210.40 Australia and Oceania,Kiribati,Beverages,Online,H,1/12/2015,772963988,2/27/2015,6076,47.45,31.79,288306.20,193156.04,95150.16 Central America and the Caribbean,Saint Kitts and Nevis ,Vegetables,Online,M,1/13/2010,651283967,1/21/2010,8254,154.06,90.93,1271611.24,750536.22,521075.02 Central America and the Caribbean,Dominica,Office Supplies,Offline,M,7/15/2012,794992434,8/21/2012,4783,651.21,524.96,3114737.43,2510883.68,603853.75 Asia,North Korea,Household,Online,H,5/30/2012,765075719,6/28/2012,1762,668.27,502.54,1177491.74,885475.48,292016.26 Sub-Saharan Africa,Comoros,Vegetables,Online,M,12/14/2011,192832648,1/5/2012,2321,154.06,90.93,357573.26,211048.53,146524.73 Asia,Thailand,Snacks,Offline,C,7/9/2014,129874551,7/24/2014,1621,152.58,97.44,247332.18,157950.24,89381.94 Middle East and North Africa,Syria,Meat,Offline,C,3/8/2013,798125255,4/25/2013,1854,421.89,364.69,782184.06,676135.26,106048.80 Sub-Saharan Africa,Zimbabwe,Cosmetics,Offline,C,3/22/2017,239821088,4/9/2017,7244,437.20,263.33,3167076.80,1907562.52,1259514.28 Europe,Greece,Fruits,Online,M,6/21/2010,167510879,7/10/2010,9046,9.33,6.92,84399.18,62598.32,21800.86 Sub-Saharan Africa,Democratic Republic of the Congo,Meat,Online,M,9/11/2015,114055955,9/12/2015,546,421.89,364.69,230351.94,199120.74,31231.20 Europe,Slovenia,Baby Food,Offline,M,1/28/2015,582630145,2/3/2015,2062,255.28,159.42,526387.36,328724.04,197663.32 Asia,Myanmar,Office Supplies,Offline,H,7/31/2014,796719777,9/9/2014,5942,651.21,524.96,3869489.82,3119312.32,750177.50 Europe,Bosnia and Herzegovina,Household,Offline,L,6/13/2017,950123679,7/26/2017,1565,668.27,502.54,1045842.55,786475.10,259367.45 Sub-Saharan Africa,Mozambique,Office Supplies,Offline,L,11/5/2012,856953179,11/28/2012,344,651.21,524.96,224016.24,180586.24,43430.00 Sub-Saharan Africa,Cote d'Ivoire,Cosmetics,Offline,C,7/2/2017,401632106,7/25/2017,720,437.20,263.33,314784.00,189597.60,125186.40 Australia and Oceania,Solomon Islands,Meat,Online,L,5/8/2011,888896787,5/8/2011,3167,421.89,364.69,1336125.63,1154973.23,181152.40 Australia and Oceania,Kiribati,Baby Food,Offline,C,1/13/2017,993796050,1/16/2017,5190,255.28,159.42,1324903.20,827389.80,497513.40 Sub-Saharan Africa,Sao Tome and Principe,Clothes,Offline,H,11/2/2012,811691224,12/10/2012,6326,109.28,35.84,691305.28,226723.84,464581.44 Europe,Germany,Vegetables,Online,L,3/6/2012,508256137,3/9/2012,3140,154.06,90.93,483748.40,285520.20,198228.20 Australia and Oceania,Tuvalu,Clothes,Offline,C,5/23/2014,769477117,6/2/2014,4233,109.28,35.84,462582.24,151710.72,310871.52 Sub-Saharan Africa,Benin,Vegetables,Online,H,2/3/2016,551652991,2/9/2016,5234,154.06,90.93,806350.04,475927.62,330422.42 Middle East and North Africa,Kuwait,Beverages,Offline,M,12/19/2014,231395089,12/24/2014,3804,47.45,31.79,180499.80,120929.16,59570.64 Sub-Saharan Africa,Lesotho,Household,Online,M,7/17/2013,255627238,7/23/2013,4635,668.27,502.54,3097431.45,2329272.90,768158.55 Europe,Vatican City,Vegetables,Online,M,6/4/2015,691585767,6/29/2015,4452,154.06,90.93,685875.12,404820.36,281054.76 Sub-Saharan Africa,Togo,Beverages,Offline,L,11/27/2013,776819503,12/8/2013,7008,47.45,31.79,332529.60,222784.32,109745.28 Europe,Andorra,Baby Food,Online,L,12/9/2010,269189774,1/10/2011,8091,255.28,159.42,2065470.48,1289867.22,775603.26 Europe,Malta,Vegetables,Offline,M,4/24/2013,796870410,6/3/2013,517,154.06,90.93,79649.02,47010.81,32638.21 Australia and Oceania,Vanuatu,Meat,Offline,L,9/25/2013,908347737,9/27/2013,9136,421.89,364.69,3854387.04,3331807.84,522579.20 Asia,Japan,Baby Food,Offline,M,5/6/2017,122420585,5/31/2017,5826,255.28,159.42,1487261.28,928780.92,558480.36 Europe,Slovenia,Fruits,Offline,H,3/14/2015,278200280,4/9/2015,4500,9.33,6.92,41985.00,31140.00,10845.00 Sub-Saharan Africa,Burkina Faso,Household,Online,L,10/10/2010,585110652,10/21/2010,6099,668.27,502.54,4075778.73,3064991.46,1010787.27 Sub-Saharan Africa,Mauritania,Vegetables,Offline,H,3/10/2016,772888028,3/11/2016,3598,154.06,90.93,554307.88,327166.14,227141.74 Europe,Sweden,Clothes,Online,H,7/20/2010,641581237,7/25/2010,7000,109.28,35.84,764960.00,250880.00,514080.00 Middle East and North Africa,Tunisia ,Snacks,Offline,L,11/20/2011,511551606,1/4/2012,8343,152.58,97.44,1272974.94,812941.92,460033.02 Australia and Oceania,Federated States of Micronesia,Clothes,Online,C,10/17/2012,773472964,11/15/2012,6693,109.28,35.84,731411.04,239877.12,491533.92 Europe,Hungary,Fruits,Online,M,7/4/2014,538331639,8/3/2014,3150,9.33,6.92,29389.50,21798.00,7591.50 Sub-Saharan Africa,Cameroon,Meat,Online,M,7/13/2015,787426459,7/24/2015,5843,421.89,364.69,2465103.27,2130883.67,334219.60 Australia and Oceania,New Zealand,Baby Food,Online,H,6/10/2015,322368752,7/27/2015,4932,255.28,159.42,1259040.96,786259.44,472781.52 Central America and the Caribbean,Saint Lucia,Snacks,Offline,M,2/3/2011,715082347,3/25/2011,7612,152.58,97.44,1161438.96,741713.28,419725.68 Asia,Maldives,Vegetables,Online,M,7/19/2015,457803571,9/3/2015,3105,154.06,90.93,478356.30,282337.65,196018.65 Australia and Oceania,Vanuatu,Vegetables,Online,L,6/5/2016,813081252,7/25/2016,7666,154.06,90.93,1181023.96,697069.38,483954.58 Asia,China,Cereal,Online,C,1/1/2010,863776719,2/10/2010,9581,205.70,117.11,1970811.70,1122030.91,848780.79 Middle East and North Africa,Iran,Cosmetics,Offline,M,7/10/2012,663063800,8/11/2012,4168,437.20,263.33,1822249.60,1097559.44,724690.16 Europe,France,Snacks,Offline,C,1/10/2011,784428822,1/15/2011,8775,152.58,97.44,1338889.50,855036.00,483853.50 Sub-Saharan Africa,Rwanda,Meat,Offline,M,7/15/2012,971670615,8/12/2012,7783,421.89,364.69,3283569.87,2838382.27,445187.60 Sub-Saharan Africa,Sao Tome and Principe,Cosmetics,Offline,C,1/3/2010,588900506,2/3/2010,7601,437.20,263.33,3323157.20,2001571.33,1321585.87 Australia and Oceania,Marshall Islands,Baby Food,Offline,L,5/20/2016,870542323,6/22/2016,1674,255.28,159.42,427338.72,266869.08,160469.64 Central America and the Caribbean,Dominica,Baby Food,Offline,M,5/20/2015,871332395,6/6/2015,5473,255.28,159.42,1397147.44,872505.66,524641.78 Central America and the Caribbean,Panama,Fruits,Online,M,9/20/2010,616319549,9/24/2010,1505,9.33,6.92,14041.65,10414.60,3627.05 Sub-Saharan Africa,Rwanda,Office Supplies,Offline,H,10/1/2014,650865113,10/29/2014,4306,651.21,524.96,2804110.26,2260477.76,543632.50 Europe,Georgia,Meat,Online,H,5/22/2014,690642917,6/2/2014,5442,421.89,364.69,2295925.38,1984642.98,311282.40 Middle East and North Africa,Jordan,Cereal,Online,M,10/4/2012,971639287,11/13/2012,8512,205.70,117.11,1750918.40,996840.32,754078.08 Sub-Saharan Africa,Guinea-Bissau,Snacks,Online,L,4/6/2010,900153052,5/13/2010,4146,152.58,97.44,632596.68,403986.24,228610.44 Europe,Luxembourg,Fruits,Offline,M,12/11/2015,402795541,1/20/2016,5006,9.33,6.92,46705.98,34641.52,12064.46 Sub-Saharan Africa,Mauritius ,Beverages,Offline,C,5/26/2013,376490581,6/20/2013,784,47.45,31.79,37200.80,24923.36,12277.44 Central America and the Caribbean,Costa Rica,Cosmetics,Offline,H,1/7/2010,438474500,2/6/2010,3203,437.20,263.33,1400351.60,843445.99,556905.61 Sub-Saharan Africa,Angola,Office Supplies,Offline,M,6/17/2010,276296126,7/20/2010,1019,651.21,524.96,663582.99,534934.24,128648.75 Australia and Oceania,Palau,Clothes,Offline,H,11/17/2012,997816789,12/11/2012,5016,109.28,35.84,548148.48,179773.44,368375.04 Sub-Saharan Africa,Equatorial Guinea,Meat,Offline,M,9/16/2012,181210315,10/17/2012,3014,421.89,364.69,1271576.46,1099175.66,172400.80 Asia,Vietnam,Personal Care,Online,L,1/10/2014,424963033,2/26/2014,4860,81.73,56.67,397207.80,275416.20,121791.60 Sub-Saharan Africa,Republic of the Congo,Cosmetics,Online,L,8/7/2010,797873771,8/7/2010,7434,437.20,263.33,3250144.80,1957595.22,1292549.58 Sub-Saharan Africa,Togo,Cereal,Online,C,6/2/2012,889053857,7/9/2012,9648,205.70,117.11,1984593.60,1129877.28,854716.32 Europe,United Kingdom,Vegetables,Offline,H,8/11/2011,357927119,9/18/2011,7443,154.06,90.93,1146668.58,676791.99,469876.59 Europe,Belgium,Meat,Online,C,6/30/2016,284229886,8/16/2016,8794,421.89,364.69,3710100.66,3207083.86,503016.80 Europe,Denmark,Office Supplies,Online,H,7/18/2017,918010985,9/5/2017,8706,651.21,524.96,5669434.26,4570301.76,1099132.50 Central America and the Caribbean,Nicaragua,Household,Online,H,11/9/2013,329631745,12/18/2013,4213,668.27,502.54,2815421.51,2117201.02,698220.49 Central America and the Caribbean,Costa Rica,Clothes,Offline,M,12/16/2016,259765994,12/18/2016,9385,109.28,35.84,1025592.80,336358.40,689234.40 Europe,Norway,Cosmetics,Offline,H,9/20/2016,269400060,10/29/2016,319,437.20,263.33,139466.80,84002.27,55464.53 Australia and Oceania,East Timor,Vegetables,Online,H,6/10/2015,889832770,7/13/2015,146,154.06,90.93,22492.76,13275.78,9216.98 Central America and the Caribbean,The Bahamas,Meat,Offline,C,6/23/2016,472675454,7/28/2016,4026,421.89,364.69,1698529.14,1468241.94,230287.20 Europe,Bosnia and Herzegovina,Baby Food,Offline,C,11/25/2012,139851939,12/29/2012,4151,255.28,159.42,1059667.28,661752.42,397914.86 Asia,Bhutan,Snacks,Offline,H,12/27/2013,633598554,1/25/2014,4747,152.58,97.44,724297.26,462547.68,261749.58 Sub-Saharan Africa,Tanzania,Cosmetics,Online,C,2/23/2011,966464126,3/7/2011,7067,437.20,263.33,3089692.40,1860953.11,1228739.29 Asia,Nepal,Beverages,Offline,C,1/1/2012,671309983,2/5/2012,4397,47.45,31.79,208637.65,139780.63,68857.02 Asia,Tajikistan,Cosmetics,Online,H,11/16/2013,251309955,12/25/2013,7055,437.20,263.33,3084446.00,1857793.15,1226652.85 Europe,Iceland,Personal Care,Online,H,3/1/2015,729950368,3/28/2015,7390,81.73,56.67,603984.70,418791.30,185193.40 Central America and the Caribbean,Saint Vincent and the Grenadines,Cereal,Online,C,7/13/2011,501030051,8/27/2011,4781,205.70,117.11,983451.70,559902.91,423548.79 Central America and the Caribbean,Saint Kitts and Nevis ,Cosmetics,Online,M,11/11/2014,278660333,12/27/2014,640,437.20,263.33,279808.00,168531.20,111276.80 Europe,Macedonia,Personal Care,Online,C,8/7/2011,847265040,9/1/2011,3408,81.73,56.67,278535.84,193131.36,85404.48 Australia and Oceania,Nauru,Snacks,Online,H,12/17/2011,811580502,1/27/2012,3561,152.58,97.44,543337.38,346983.84,196353.54 Central America and the Caribbean,Grenada,Vegetables,Offline,L,11/18/2015,646655547,12/26/2015,8601,154.06,90.93,1325070.06,782088.93,542981.13 Central America and the Caribbean,Guatemala,Office Supplies,Offline,M,10/11/2016,447851502,11/5/2016,8067,651.21,524.96,5253311.07,4234852.32,1018458.75 Central America and the Caribbean,Honduras,Meat,Offline,M,12/6/2012,380842196,12/7/2012,8524,421.89,364.69,3596190.36,3108617.56,487572.80 Middle East and North Africa,Algeria,Personal Care,Online,H,3/31/2011,231613957,4/26/2011,8572,81.73,56.67,700589.56,485775.24,214814.32 Asia,Vietnam,Cereal,Offline,C,11/30/2015,756465613,1/18/2016,3840,205.70,117.11,789888.00,449702.40,340185.60 Europe,Latvia,Snacks,Online,L,1/15/2017,532008492,2/16/2017,1990,152.58,97.44,303634.20,193905.60,109728.60 Asia,Taiwan,Baby Food,Online,M,3/1/2017,905166423,3/26/2017,7714,255.28,159.42,1969229.92,1229765.88,739464.04 Europe,Italy,Fruits,Online,C,4/22/2012,143175733,6/4/2012,7736,9.33,6.92,72176.88,53533.12,18643.76 Sub-Saharan Africa,Cape Verde,Household,Online,C,12/1/2010,183585250,1/7/2011,5810,668.27,502.54,3882648.70,2919757.40,962891.30 Europe,Macedonia,Clothes,Offline,L,12/9/2014,784256303,12/31/2014,7723,109.28,35.84,843969.44,276792.32,567177.12 Europe,Croatia,Vegetables,Offline,H,1/6/2016,873362720,1/9/2016,6292,154.06,90.93,969345.52,572131.56,397213.96 Asia,Kazakhstan,Baby Food,Online,C,6/8/2014,799390828,7/26/2014,6365,255.28,159.42,1624857.20,1014708.30,610148.90 Central America and the Caribbean,Trinidad and Tobago,Cosmetics,Offline,L,5/1/2015,981139457,5/9/2015,9823,437.20,263.33,4294615.60,2586690.59,1707925.01 Asia,Malaysia,Vegetables,Online,H,5/2/2017,557719933,5/7/2017,577,154.06,90.93,88892.62,52466.61,36426.01 Central America and the Caribbean,Panama,Snacks,Offline,M,5/7/2016,538556087,6/22/2016,9569,152.58,97.44,1460038.02,932403.36,527634.66 Central America and the Caribbean,Antigua and Barbuda ,Beverages,Offline,C,12/2/2016,653384244,1/20/2017,9772,47.45,31.79,463681.40,310651.88,153029.52 Europe,Moldova ,Beverages,Offline,C,4/19/2013,702253234,5/11/2013,1192,47.45,31.79,56560.40,37893.68,18666.72 Sub-Saharan Africa,Guinea-Bissau,Clothes,Online,H,12/11/2015,105524384,1/19/2016,5865,109.28,35.84,640927.20,210201.60,430725.60 Europe,Russia,Household,Offline,M,6/14/2017,153871524,6/22/2017,2858,668.27,502.54,1909915.66,1436259.32,473656.34 Europe,Belgium,Office Supplies,Offline,H,6/24/2011,858280980,6/27/2011,3270,651.21,524.96,2129456.70,1716619.20,412837.50 Europe,Moldova ,Cereal,Offline,C,9/6/2011,500051581,10/12/2011,5230,205.70,117.11,1075811.00,612485.30,463325.70 Australia and Oceania,East Timor,Fruits,Online,C,1/22/2010,580794656,2/21/2010,8900,9.33,6.92,83037.00,61588.00,21449.00 Middle East and North Africa,Saudi Arabia,Beverages,Offline,M,1/16/2011,872434031,3/7/2011,1472,47.45,31.79,69846.40,46794.88,23051.52 Sub-Saharan Africa,Chad,Personal Care,Offline,M,7/19/2012,767206037,8/8/2012,2170,81.73,56.67,177354.10,122973.90,54380.20 Asia,Kyrgyzstan,Snacks,Offline,L,5/5/2017,627659499,5/11/2017,7249,152.58,97.44,1106052.42,706342.56,399709.86 Australia and Oceania,Fiji,Cosmetics,Online,H,2/12/2014,436655747,3/21/2014,4994,437.20,263.33,2183376.80,1315070.02,868306.78 Europe,Denmark,Baby Food,Online,C,7/24/2011,247368609,8/20/2011,723,255.28,159.42,184567.44,115260.66,69306.78 Middle East and North Africa,Bahrain,Household,Online,L,11/5/2011,633284413,11/11/2011,1786,668.27,502.54,1193530.22,897536.44,295993.78 Sub-Saharan Africa,Cote d'Ivoire,Meat,Offline,M,6/6/2014,438201987,7/20/2014,2561,421.89,364.69,1080460.29,933971.09,146489.20 Middle East and North Africa,Kuwait,Meat,Online,H,4/5/2012,826232659,4/22/2012,9459,421.89,364.69,3990657.51,3449602.71,541054.80 Middle East and North Africa,Bahrain,Baby Food,Online,H,9/19/2010,331800258,11/8/2010,5924,255.28,159.42,1512278.72,944404.08,567874.64 Asia,Myanmar,Beverages,Online,M,3/25/2016,709641110,4/15/2016,7429,47.45,31.79,352506.05,236167.91,116338.14 Sub-Saharan Africa,Namibia,Cosmetics,Online,C,5/16/2017,184804046,5/18/2017,6479,437.20,263.33,2832618.80,1706115.07,1126503.73 Asia,Uzbekistan,Household,Offline,C,5/9/2011,202650392,6/8/2011,7609,668.27,502.54,5084866.43,3823826.86,1261039.57 Asia,Vietnam,Fruits,Online,M,5/18/2015,478853976,6/10/2015,2388,9.33,6.92,22280.04,16524.96,5755.08 Sub-Saharan Africa,Swaziland,Meat,Offline,H,6/3/2017,349401128,6/23/2017,4413,421.89,364.69,1861800.57,1609376.97,252423.60 Sub-Saharan Africa,Lesotho,Cosmetics,Online,H,4/27/2010,120590674,6/10/2010,4315,437.20,263.33,1886518.00,1136268.95,750249.05 Middle East and North Africa,Afghanistan,Clothes,Online,M,9/7/2010,619033944,10/8/2010,4755,109.28,35.84,519626.40,170419.20,349207.20 Sub-Saharan Africa,Botswana,Snacks,Online,L,4/5/2017,941654765,4/12/2017,5426,152.58,97.44,827899.08,528709.44,299189.64 Australia and Oceania,Palau,Household,Online,H,9/17/2014,705689465,9/29/2014,8050,668.27,502.54,5379573.50,4045447.00,1334126.50 Australia and Oceania,Tuvalu,Clothes,Offline,M,4/13/2015,498686873,5/5/2015,1383,109.28,35.84,151134.24,49566.72,101567.52 Central America and the Caribbean,Panama,Cereal,Offline,L,2/11/2017,528508317,3/11/2017,6210,205.70,117.11,1277397.00,727253.10,550143.90 Middle East and North Africa,Azerbaijan,Cereal,Online,L,8/27/2015,173327624,9/4/2015,351,205.70,117.11,72200.70,41105.61,31095.09 Sub-Saharan Africa,Democratic Republic of the Congo,Household,Online,L,12/18/2014,231631124,12/23/2014,3652,668.27,502.54,2440522.04,1835276.08,605245.96 Sub-Saharan Africa,Seychelles ,Baby Food,Online,M,5/24/2016,672217643,7/12/2016,2994,255.28,159.42,764308.32,477303.48,287004.84 Asia,Brunei,Snacks,Offline,L,10/17/2014,184198510,11/17/2014,7287,152.58,97.44,1111850.46,710045.28,401805.18 Asia,Brunei,Cosmetics,Online,L,6/2/2017,226997554,7/8/2017,2475,437.20,263.33,1082070.00,651741.75,430328.25 Central America and the Caribbean,Belize,Household,Offline,M,6/18/2017,980351102,6/25/2017,6531,668.27,502.54,4364471.37,3282088.74,1082382.63 Sub-Saharan Africa,Madagascar,Cosmetics,Online,M,12/15/2012,894307982,1/13/2013,4460,437.20,263.33,1949912.00,1174451.80,775460.20 Sub-Saharan Africa,Burundi,Cosmetics,Offline,M,7/30/2010,739229524,9/15/2010,3298,437.20,263.33,1441885.60,868462.34,573423.26 Central America and the Caribbean,Panama,Fruits,Online,M,4/12/2014,455789554,5/29/2014,7112,9.33,6.92,66354.96,49215.04,17139.92 Sub-Saharan Africa,Zimbabwe,Beverages,Online,M,12/5/2013,504974400,12/31/2013,2002,47.45,31.79,94994.90,63643.58,31351.32 Middle East and North Africa,Lebanon,Meat,Offline,M,10/30/2011,518082892,11/20/2011,1096,421.89,364.69,462391.44,399700.24,62691.20 Asia,South Korea,Vegetables,Online,H,5/3/2011,646726357,6/5/2011,9556,154.06,90.93,1472197.36,868927.08,603270.28 Europe,Moldova ,Household,Offline,M,2/2/2013,212828624,3/22/2013,9574,668.27,502.54,6398016.98,4811317.96,1586699.02 Middle East and North Africa,Bahrain,Personal Care,Online,L,3/24/2011,858626019,4/11/2011,5375,81.73,56.67,439298.75,304601.25,134697.50 Europe,Slovakia,Fruits,Offline,M,4/19/2012,696667373,5/23/2012,8212,9.33,6.92,76617.96,56827.04,19790.92 North America,Canada,Personal Care,Offline,C,5/9/2016,159814012,6/25/2016,1372,81.73,56.67,112133.56,77751.24,34382.32 Sub-Saharan Africa,Mali,Personal Care,Offline,M,2/23/2013,651239764,4/13/2013,5173,81.73,56.67,422789.29,293153.91,129635.38 Sub-Saharan Africa,Democratic Republic of the Congo,Baby Food,Online,L,3/20/2016,494430959,5/3/2016,1963,255.28,159.42,501114.64,312941.46,188173.18 Asia,Kyrgyzstan,Household,Offline,L,8/28/2013,783186423,9/21/2013,1122,668.27,502.54,749798.94,563849.88,185949.06 Europe,United Kingdom,Cosmetics,Online,M,5/9/2017,431617486,6/25/2017,4060,437.20,263.33,1775032.00,1069119.80,705912.20 Middle East and North Africa,Iran,Fruits,Online,M,9/27/2013,224147975,10/2/2013,9222,9.33,6.92,86041.26,63816.24,22225.02 Australia and Oceania,Tuvalu,Fruits,Offline,C,1/16/2013,565514218,1/24/2013,7079,9.33,6.92,66047.07,48986.68,17060.39 Europe,Czech Republic,Snacks,Offline,C,3/13/2015,130765044,5/2/2015,5137,152.58,97.44,783803.46,500549.28,283254.18 Europe,Moldova ,Fruits,Online,C,8/14/2013,815261781,9/24/2013,2933,9.33,6.92,27364.89,20296.36,7068.53 Australia and Oceania,Kiribati,Clothes,Offline,M,2/26/2014,984678256,3/25/2014,7033,109.28,35.84,768566.24,252062.72,516503.52 Europe,Italy,Household,Online,L,2/23/2016,425000798,3/14/2016,6036,668.27,502.54,4033677.72,3033331.44,1000346.28 Sub-Saharan Africa,Cameroon,Cereal,Offline,H,3/16/2016,792528235,4/4/2016,5571,205.70,117.11,1145954.70,652419.81,493534.89 Sub-Saharan Africa,Angola,Baby Food,Offline,M,1/7/2012,663871896,2/12/2012,3302,255.28,159.42,842934.56,526404.84,316529.72 Europe,Spain,Meat,Offline,L,9/7/2013,485955607,9/28/2013,3918,421.89,364.69,1652965.02,1428855.42,224109.60 Europe,Bosnia and Herzegovina,Vegetables,Online,C,3/27/2017,326015698,5/5/2017,4145,154.06,90.93,638578.70,376904.85,261673.85 Central America and the Caribbean,Antigua and Barbuda ,Personal Care,Offline,M,12/22/2015,321600997,2/1/2016,7737,81.73,56.67,632345.01,438455.79,193889.22 Central America and the Caribbean,Honduras,Household,Offline,C,11/2/2011,230572831,12/14/2011,479,668.27,502.54,320101.33,240716.66,79384.67 Europe,Albania,Personal Care,Online,C,8/15/2011,781105029,9/30/2011,5191,81.73,56.67,424260.43,294173.97,130086.46 Middle East and North Africa,Azerbaijan,Household,Online,L,8/11/2015,521683919,8/31/2015,6719,668.27,502.54,4490106.13,3376566.26,1113539.87 Europe,Denmark,Personal Care,Offline,H,10/16/2013,771108329,11/5/2013,6945,81.73,56.67,567614.85,393573.15,174041.70 Sub-Saharan Africa,Democratic Republic of the Congo,Personal Care,Offline,M,5/14/2012,668489587,5/28/2012,9779,81.73,56.67,799237.67,554175.93,245061.74 Central America and the Caribbean,Trinidad and Tobago,Fruits,Offline,L,10/28/2014,323251521,11/5/2014,6163,9.33,6.92,57500.79,42647.96,14852.83 Europe,Georgia,Household,Offline,C,7/20/2010,365130460,8/12/2010,9072,668.27,502.54,6062545.44,4559042.88,1503502.56 Europe,Malta,Fruits,Offline,C,7/9/2016,594175231,7/26/2016,8510,9.33,6.92,79398.30,58889.20,20509.10 Europe,Greece,Snacks,Offline,H,11/25/2012,430747163,12/6/2012,6512,152.58,97.44,993600.96,634529.28,359071.68 Asia,Kyrgyzstan,Clothes,Online,M,1/4/2015,265520083,1/20/2015,2148,109.28,35.84,234733.44,76984.32,157749.12 Europe,Belarus,Clothes,Offline,C,7/1/2016,109480321,7/5/2016,6515,109.28,35.84,711959.20,233497.60,478461.60 Middle East and North Africa,Somalia,Snacks,Online,C,11/18/2015,943926703,12/27/2015,7743,152.58,97.44,1181426.94,754477.92,426949.02 Australia and Oceania,Nauru,Household,Offline,C,9/23/2012,670470559,11/4/2012,5993,668.27,502.54,4004942.11,3011722.22,993219.89 Sub-Saharan Africa,Swaziland,Fruits,Offline,M,6/21/2011,861035716,7/19/2011,8457,9.33,6.92,78903.81,58522.44,20381.37 Europe,Italy,Baby Food,Online,L,1/9/2010,907858502,2/1/2010,4360,255.28,159.42,1113020.80,695071.20,417949.60 Middle East and North Africa,Israel,Personal Care,Online,H,2/27/2011,273487746,4/11/2011,9956,81.73,56.67,813703.88,564206.52,249497.36 Sub-Saharan Africa,Togo,Office Supplies,Online,C,2/19/2011,740784776,3/4/2011,3532,651.21,524.96,2300073.72,1854158.72,445915.00 Central America and the Caribbean,Antigua and Barbuda ,Baby Food,Online,L,1/26/2011,562923419,1/27/2011,404,255.28,159.42,103133.12,64405.68,38727.44 Asia,Japan,Household,Online,L,2/18/2013,313390004,3/27/2013,7921,668.27,502.54,5293366.67,3980619.34,1312747.33 Sub-Saharan Africa,Benin,Household,Online,L,10/16/2016,635983359,11/22/2016,464,668.27,502.54,310077.28,233178.56,76898.72 Central America and the Caribbean,Guatemala,Cereal,Offline,C,12/27/2014,894814813,1/29/2015,4443,205.70,117.11,913925.10,520319.73,393605.37 Europe,Norway,Fruits,Offline,H,2/4/2013,524308192,3/20/2013,3300,9.33,6.92,30789.00,22836.00,7953.00 Central America and the Caribbean,Trinidad and Tobago,Beverages,Offline,L,7/20/2017,379199826,7/22/2017,2510,47.45,31.79,119099.50,79792.90,39306.60 Asia,Myanmar,Vegetables,Online,L,12/4/2016,484538543,1/2/2017,4577,154.06,90.93,705132.62,416186.61,288946.01 Europe,Slovakia,Cereal,Offline,H,1/2/2016,485685670,1/10/2016,4038,205.70,117.11,830616.60,472890.18,357726.42 Australia and Oceania,Vanuatu,Cosmetics,Online,H,11/2/2016,998315036,11/15/2016,2459,437.20,263.33,1075074.80,647528.47,427546.33 Central America and the Caribbean,Saint Lucia,Cereal,Offline,M,12/27/2014,458412969,1/24/2015,3439,205.70,117.11,707402.30,402741.29,304661.01 Sub-Saharan Africa,Senegal,Clothes,Online,C,11/7/2010,972278296,12/5/2010,7609,109.28,35.84,831511.52,272706.56,558804.96 Australia and Oceania,Kiribati,Meat,Online,L,6/20/2013,666522347,8/9/2013,7629,421.89,364.69,3218598.81,2782220.01,436378.80 Central America and the Caribbean,Dominican Republic,Beverages,Offline,M,1/6/2014,438068950,1/24/2014,3192,47.45,31.79,151460.40,101473.68,49986.72 Europe,Luxembourg,Vegetables,Online,C,4/22/2012,804154431,5/14/2012,6021,154.06,90.93,927595.26,547489.53,380105.73 Europe,Ireland,Fruits,Online,M,12/31/2012,552327620,2/9/2013,4872,9.33,6.92,45455.76,33714.24,11741.52 Europe,Hungary,Household,Online,M,4/2/2014,790449845,4/13/2014,530,668.27,502.54,354183.10,266346.20,87836.90 Central America and the Caribbean,Saint Lucia,Beverages,Offline,H,6/30/2011,896694934,7/15/2011,812,47.45,31.79,38529.40,25813.48,12715.92 Europe,Greece,Beverages,Online,C,5/16/2016,769549214,6/28/2016,5568,47.45,31.79,264201.60,177006.72,87194.88 Asia,Laos,Beverages,Online,L,2/3/2015,377811515,2/27/2015,1678,47.45,31.79,79621.10,53343.62,26277.48 Middle East and North Africa,Jordan,Household,Online,L,1/24/2010,210593163,1/27/2010,8052,668.27,502.54,5380910.04,4046452.08,1334457.96 Central America and the Caribbean,Barbados,Cosmetics,Online,M,2/17/2016,827317988,2/29/2016,632,437.20,263.33,276310.40,166424.56,109885.84 Sub-Saharan Africa,Uganda,Baby Food,Offline,C,5/1/2011,607722318,6/16/2011,7394,255.28,159.42,1887540.32,1178751.48,708788.84 Europe,Croatia,Cereal,Offline,H,5/31/2016,701854979,7/7/2016,3340,205.70,117.11,687038.00,391147.40,295890.60 Sub-Saharan Africa,Malawi,Snacks,Offline,H,5/7/2015,980077302,6/9/2015,5508,152.58,97.44,840410.64,536699.52,303711.12 Sub-Saharan Africa,Gabon,Baby Food,Offline,C,1/27/2012,483063113,2/14/2012,7965,255.28,159.42,2033305.20,1269780.30,763524.90 Europe,Montenegro,Snacks,Offline,C,8/12/2011,571798741,9/22/2011,6809,152.58,97.44,1038917.22,663468.96,375448.26 North America,Mexico,Beverages,Offline,H,4/6/2016,877583014,5/14/2016,5171,47.45,31.79,245363.95,164386.09,80977.86 Central America and the Caribbean,Haiti,Vegetables,Offline,C,3/29/2014,652027261,4/6/2014,8211,154.06,90.93,1264986.66,746626.23,518360.43 Central America and the Caribbean,Haiti,Personal Care,Online,H,10/2/2013,117055308,11/12/2013,8122,81.73,56.67,663811.06,460273.74,203537.32 Europe,Ireland,Personal Care,Online,L,7/6/2016,914903485,8/11/2016,9127,81.73,56.67,745949.71,517227.09,228722.62 Asia,Vietnam,Personal Care,Offline,L,12/3/2013,258120620,1/5/2014,2482,81.73,56.67,202853.86,140654.94,62198.92 Asia,Indonesia,Office Supplies,Online,H,8/10/2013,379568040,9/16/2013,1473,651.21,524.96,959232.33,773266.08,185966.25 Central America and the Caribbean,The Bahamas,Cosmetics,Offline,C,11/22/2012,882419574,12/28/2012,6416,437.20,263.33,2805075.20,1689525.28,1115549.92 Asia,Thailand,Personal Care,Online,M,3/4/2010,990161550,4/10/2010,9661,81.73,56.67,789593.53,547488.87,242104.66 North America,Canada,Office Supplies,Online,L,4/4/2016,896592795,5/6/2016,587,651.21,524.96,382260.27,308151.52,74108.75 Europe,Portugal,Vegetables,Offline,L,9/28/2012,415824639,10/24/2012,606,154.06,90.93,93360.36,55103.58,38256.78 Australia and Oceania,Tuvalu,Baby Food,Offline,C,5/9/2016,332280910,5/23/2016,8160,255.28,159.42,2083084.80,1300867.20,782217.60 Asia,Myanmar,Beverages,Online,C,8/8/2014,150697934,8/11/2014,3722,47.45,31.79,176608.90,118322.38,58286.52 Asia,Taiwan,Personal Care,Offline,H,12/27/2014,346124541,2/6/2015,4798,81.73,56.67,392140.54,271902.66,120237.88 Europe,Bulgaria,Cosmetics,Online,L,12/6/2010,113922059,1/9/2011,924,437.20,263.33,403972.80,243316.92,160655.88 Europe,Cyprus,Fruits,Online,C,11/8/2015,519764316,12/9/2015,8666,9.33,6.92,80853.78,59968.72,20885.06 Sub-Saharan Africa,Burkina Faso,Snacks,Online,M,12/12/2013,449637639,1/24/2014,6624,152.58,97.44,1010689.92,645442.56,365247.36 Europe,Belarus,Fruits,Online,M,12/21/2016,659840857,1/8/2017,428,9.33,6.92,3993.24,2961.76,1031.48 Australia and Oceania,Tonga,Vegetables,Offline,M,1/15/2015,626985299,2/3/2015,7738,154.06,90.93,1192116.28,703616.34,488499.94 Australia and Oceania,Nauru,Cosmetics,Offline,H,9/6/2010,797994792,10/22/2010,3247,437.20,263.33,1419588.40,855032.51,564555.89 Europe,Austria,Household,Online,H,1/25/2015,340105664,2/7/2015,3679,668.27,502.54,2458565.33,1848844.66,609720.67 Europe,Russia,Household,Online,M,12/6/2013,290866744,12/28/2013,2788,668.27,502.54,1863136.76,1401081.52,462055.24 Sub-Saharan Africa,Swaziland,Snacks,Offline,M,10/12/2016,408139359,11/20/2016,6361,152.58,97.44,970561.38,619815.84,350745.54 Europe,Austria,Baby Food,Offline,M,4/9/2015,520097339,4/25/2015,7215,255.28,159.42,1841845.20,1150215.30,691629.90 Europe,Denmark,Meat,Offline,L,4/3/2017,975227010,4/24/2017,199,421.89,364.69,83956.11,72573.31,11382.80 Asia,Laos,Cereal,Online,C,9/21/2012,392327201,9/30/2012,7192,205.70,117.11,1479394.40,842255.12,637139.28 Europe,Moldova ,Cereal,Online,H,6/14/2015,610509240,6/14/2015,2106,205.70,117.11,433204.20,246633.66,186570.54 Sub-Saharan Africa,Equatorial Guinea,Snacks,Offline,H,10/8/2013,839196956,11/26/2013,5883,152.58,97.44,897628.14,573239.52,324388.62 Middle East and North Africa,Oman,Household,Offline,M,3/23/2012,808126676,4/18/2012,1497,668.27,502.54,1000400.19,752302.38,248097.81 Europe,San Marino,Clothes,Online,H,8/22/2012,317347228,10/1/2012,8952,109.28,35.84,978274.56,320839.68,657434.88 Asia,Brunei,Cosmetics,Offline,M,5/2/2010,587219941,5/14/2010,285,437.20,263.33,124602.00,75049.05,49552.95 Sub-Saharan Africa,Comoros,Baby Food,Online,M,1/14/2013,208418643,1/16/2013,4563,255.28,159.42,1164842.64,727433.46,437409.18 Europe,Georgia,Fruits,Online,H,6/2/2014,991929662,7/6/2014,2885,9.33,6.92,26917.05,19964.20,6952.85 Asia,Sri Lanka,Clothes,Online,H,12/23/2012,319051826,1/11/2013,3380,109.28,35.84,369366.40,121139.20,248227.20 Asia,Kazakhstan,Vegetables,Online,H,11/14/2015,591396462,12/16/2015,6210,154.06,90.93,956712.60,564675.30,392037.30 Central America and the Caribbean,Grenada,Clothes,Online,L,5/15/2012,680887401,6/19/2012,8568,109.28,35.84,936311.04,307077.12,629233.92 Asia,Uzbekistan,Personal Care,Offline,H,7/19/2015,879760968,7/23/2015,9676,81.73,56.67,790819.48,548338.92,242480.56 Europe,Hungary,Office Supplies,Offline,C,1/7/2013,650565993,1/13/2013,5789,651.21,524.96,3769854.69,3038993.44,730861.25 Australia and Oceania,Fiji,Snacks,Online,L,3/13/2016,876163804,3/30/2016,5195,152.58,97.44,792653.10,506200.80,286452.30 Sub-Saharan Africa,Niger,Cosmetics,Online,L,1/19/2011,709728229,1/22/2011,3209,437.20,263.33,1402974.80,845025.97,557948.83 Australia and Oceania,Solomon Islands,Clothes,Offline,H,11/25/2014,724745595,1/9/2015,7182,109.28,35.84,784848.96,257402.88,527446.08 Sub-Saharan Africa,Benin,Baby Food,Online,M,1/21/2012,665014731,1/29/2012,1492,255.28,159.42,380877.76,237854.64,143023.12 Asia,Mongolia,Snacks,Online,C,8/13/2010,794646966,9/8/2010,2551,152.58,97.44,389231.58,248569.44,140662.14 Sub-Saharan Africa,Malawi,Personal Care,Offline,L,12/12/2015,548066127,12/28/2015,3801,81.73,56.67,310655.73,215402.67,95253.06 Europe,Austria,Cosmetics,Online,M,10/10/2011,780008542,10/22/2011,716,437.20,263.33,313035.20,188544.28,124490.92 Europe,Lithuania,Personal Care,Online,L,12/14/2016,615523040,1/17/2017,5801,81.73,56.67,474115.73,328742.67,145373.06 Sub-Saharan Africa,Togo,Household,Offline,L,7/21/2013,599970948,8/6/2013,3591,668.27,502.54,2399757.57,1804621.14,595136.43 Sub-Saharan Africa,Zambia,Fruits,Offline,H,3/15/2011,449026095,4/15/2011,5655,9.33,6.92,52761.15,39132.60,13628.55 Europe,Romania,Beverages,Online,C,1/9/2013,398674809,1/24/2013,5590,47.45,31.79,265245.50,177706.10,87539.40 Australia and Oceania,Tuvalu,Meat,Online,C,11/8/2011,755215919,12/19/2011,4028,421.89,364.69,1699372.92,1468971.32,230401.60 Sub-Saharan Africa,Madagascar,Office Supplies,Online,M,9/22/2016,545260751,11/7/2016,3628,651.21,524.96,2362589.88,1904554.88,458035.00 Central America and the Caribbean,Costa Rica,Fruits,Offline,L,4/1/2011,665733134,4/7/2011,4083,9.33,6.92,38094.39,28254.36,9840.03 Australia and Oceania,East Timor,Fruits,Online,L,5/17/2010,733869397,5/27/2010,7118,9.33,6.92,66410.94,49256.56,17154.38 Sub-Saharan Africa,Niger,Beverages,Online,C,3/12/2011,437218368,4/17/2011,1486,47.45,31.79,70510.70,47239.94,23270.76 Middle East and North Africa,Egypt,Vegetables,Offline,L,11/10/2011,883641374,12/2/2011,7974,154.06,90.93,1228474.44,725075.82,503398.62 Middle East and North Africa,Kuwait,Snacks,Offline,H,5/20/2015,551312243,7/8/2015,4399,152.58,97.44,671199.42,428638.56,242560.86 Asia,Laos,Office Supplies,Offline,L,9/7/2010,238717305,9/14/2010,610,651.21,524.96,397238.10,320225.60,77012.50 Europe,Denmark,Cereal,Offline,C,4/5/2014,814655387,5/3/2014,3487,205.70,117.11,717275.90,408362.57,308913.33 Europe,Moldova ,Clothes,Online,C,5/19/2013,968237817,5/22/2013,1941,109.28,35.84,212112.48,69565.44,142547.04 Middle East and North Africa,Iraq,Vegetables,Offline,M,4/25/2015,358888423,5/12/2015,1915,154.06,90.93,295024.90,174130.95,120893.95 Europe,Belgium,Personal Care,Online,C,3/29/2013,966343533,4/10/2013,1381,81.73,56.67,112869.13,78261.27,34607.86 Sub-Saharan Africa,Uganda,Cosmetics,Online,C,10/10/2012,340651977,11/3/2012,5345,437.20,263.33,2336834.00,1407498.85,929335.15 Australia and Oceania,Solomon Islands,Clothes,Online,C,1/5/2013,152175080,2/22/2013,843,109.28,35.84,92123.04,30213.12,61909.92 Australia and Oceania,Fiji,Snacks,Online,C,5/4/2010,341586673,5/22/2010,1942,152.58,97.44,296310.36,189228.48,107081.88 Asia,India,Beverages,Online,L,5/4/2017,469873082,6/8/2017,4741,47.45,31.79,224960.45,150716.39,74244.06 Australia and Oceania,Marshall Islands,Office Supplies,Offline,C,8/6/2013,168333137,9/8/2013,2371,651.21,524.96,1544018.91,1244680.16,299338.75 Middle East and North Africa,Saudi Arabia,Personal Care,Online,C,1/16/2010,488578164,1/28/2010,9991,81.73,56.67,816564.43,566189.97,250374.46 Sub-Saharan Africa,Seychelles ,Household,Offline,H,11/21/2014,752531993,12/2/2014,9794,668.27,502.54,6545036.38,4921876.76,1623159.62 Central America and the Caribbean,Trinidad and Tobago,Clothes,Offline,C,9/12/2014,802430951,10/13/2014,6005,109.28,35.84,656226.40,215219.20,441007.20 Sub-Saharan Africa,Seychelles ,Cereal,Online,C,1/8/2016,550823867,1/19/2016,9878,205.70,117.11,2031904.60,1156812.58,875092.02 Central America and the Caribbean,El Salvador,Meat,Online,L,5/3/2011,430572068,5/7/2011,4698,421.89,364.69,1982039.22,1713313.62,268725.60 Europe,Iceland,Baby Food,Offline,L,2/10/2013,944849383,2/12/2013,784,255.28,159.42,200139.52,124985.28,75154.24 Central America and the Caribbean,El Salvador,Vegetables,Online,M,3/4/2012,417142140,3/13/2012,484,154.06,90.93,74565.04,44010.12,30554.92 Asia,Laos,Vegetables,Offline,C,10/5/2011,841249167,10/22/2011,3178,154.06,90.93,489602.68,288975.54,200627.14 Europe,Romania,Household,Offline,M,3/6/2016,231281793,4/8/2016,277,668.27,502.54,185110.79,139203.58,45907.21 Sub-Saharan Africa,South Africa,Baby Food,Offline,C,11/15/2011,271663844,11/15/2011,223,255.28,159.42,56927.44,35550.66,21376.78 Middle East and North Africa,Tunisia ,Clothes,Online,H,8/19/2016,467131650,9/16/2016,3491,109.28,35.84,381496.48,125117.44,256379.04 Australia and Oceania,Palau,Office Supplies,Online,C,4/2/2015,392734038,4/11/2015,7584,651.21,524.96,4938776.64,3981296.64,957480.00 Middle East and North Africa,Turkey,Office Supplies,Offline,C,4/16/2016,143832337,4/21/2016,2040,651.21,524.96,1328468.40,1070918.40,257550.00 Sub-Saharan Africa,Guinea,Baby Food,Online,M,6/15/2010,786100375,6/28/2010,3425,255.28,159.42,874334.00,546013.50,328320.50 Asia,India,Fruits,Online,L,3/21/2012,305524480,5/4/2012,338,9.33,6.92,3153.54,2338.96,814.58 Australia and Oceania,New Zealand,Personal Care,Online,H,8/22/2010,358403480,10/6/2010,8409,81.73,56.67,687267.57,476538.03,210729.54 Europe,Hungary,Snacks,Online,L,12/17/2010,421348702,1/16/2011,5299,152.58,97.44,808521.42,516334.56,292186.86 Europe,Portugal,Cereal,Offline,H,9/21/2015,941283977,11/9/2015,5701,205.70,117.11,1172695.70,667644.11,505051.59 Europe,Denmark,Cosmetics,Offline,L,5/16/2013,185445630,5/31/2013,6338,437.20,263.33,2770973.60,1668985.54,1101988.06 Europe,Poland,Baby Food,Online,M,5/11/2012,991382491,6/12/2012,965,255.28,159.42,246345.20,153840.30,92504.90 Middle East and North Africa,Morocco,Cosmetics,Online,M,8/17/2014,416955888,8/30/2014,5368,437.20,263.33,2346889.60,1413555.44,933334.16 Europe,Hungary,Personal Care,Online,C,10/28/2011,990339648,11/11/2011,2364,81.73,56.67,193209.72,133967.88,59241.84 Central America and the Caribbean,Belize,Personal Care,Online,C,10/20/2011,360020101,10/20/2011,6803,81.73,56.67,556009.19,385526.01,170483.18 Sub-Saharan Africa,Sierra Leone,Snacks,Offline,C,2/17/2012,744796073,3/16/2012,564,152.58,97.44,86055.12,54956.16,31098.96 Middle East and North Africa,Kuwait,Household,Online,C,6/7/2011,383778893,6/21/2011,7558,668.27,502.54,5050784.66,3798197.32,1252587.34 Sub-Saharan Africa,Sudan,Household,Online,C,3/10/2013,286392390,3/27/2013,8727,668.27,502.54,5831992.29,4385666.58,1446325.71 Middle East and North Africa,Afghanistan,Clothes,Online,C,5/17/2014,182372891,5/23/2014,7046,109.28,35.84,769986.88,252528.64,517458.24 Central America and the Caribbean,Dominican Republic,Office Supplies,Offline,L,10/23/2016,771769225,12/3/2016,2519,651.21,524.96,1640397.99,1322374.24,318023.75 Sub-Saharan Africa,Democratic Republic of the Congo,Personal Care,Online,C,10/24/2015,574942719,12/4/2015,7182,81.73,56.67,586984.86,407003.94,179980.92 Europe,Macedonia,Meat,Offline,C,7/18/2011,882567203,8/3/2011,103,421.89,364.69,43454.67,37563.07,5891.60 Europe,Russia,Beverages,Online,L,10/23/2012,805629003,12/4/2012,2380,47.45,31.79,112931.00,75660.20,37270.80 Asia,Japan,Beverages,Online,L,7/20/2010,425426948,8/17/2010,2143,47.45,31.79,101685.35,68125.97,33559.38 Middle East and North Africa,Kuwait,Cereal,Offline,L,11/29/2011,343572366,1/18/2012,9553,205.70,117.11,1965052.10,1118751.83,846300.27 Europe,Italy,Office Supplies,Online,M,9/28/2013,331989085,10/17/2013,1803,651.21,524.96,1174131.63,946502.88,227628.75 Australia and Oceania,Federated States of Micronesia,Vegetables,Online,C,12/19/2013,682913434,1/2/2014,8116,154.06,90.93,1250350.96,737987.88,512363.08 Central America and the Caribbean,Honduras,Personal Care,Online,C,5/10/2015,858894240,6/27/2015,4747,81.73,56.67,387972.31,269012.49,118959.82 Asia,China,Office Supplies,Online,C,3/1/2014,842792832,4/20/2014,9983,651.21,524.96,6501029.43,5240675.68,1260353.75 Middle East and North Africa,Iraq,Personal Care,Online,H,7/5/2011,687783038,8/8/2011,9140,81.73,56.67,747012.20,517963.80,229048.40 Australia and Oceania,Solomon Islands,Cosmetics,Offline,C,2/20/2017,967351186,3/23/2017,9567,437.20,263.33,4182692.40,2519278.11,1663414.29 Sub-Saharan Africa,Djibouti,Meat,Offline,H,5/15/2015,525296103,5/23/2015,5645,421.89,364.69,2381569.05,2058675.05,322894.00 Central America and the Caribbean,Honduras,Snacks,Online,H,4/15/2014,525729119,6/2/2014,3784,152.58,97.44,577362.72,368712.96,208649.76 Middle East and North Africa,Morocco,Cosmetics,Offline,H,9/13/2011,403074061,9/30/2011,7427,437.20,263.33,3247084.40,1955751.91,1291332.49 Australia and Oceania,Solomon Islands,Personal Care,Offline,M,1/15/2014,112067258,3/6/2014,2047,81.73,56.67,167301.31,116003.49,51297.82 Sub-Saharan Africa,Lesotho,Cereal,Offline,H,6/15/2017,577757537,7/2/2017,149,205.70,117.11,30649.30,17449.39,13199.91 Europe,Iceland,Office Supplies,Offline,L,7/29/2011,545506227,7/31/2011,6270,651.21,524.96,4083086.70,3291499.20,791587.50 Sub-Saharan Africa,Swaziland,Meat,Online,M,8/10/2013,630987155,9/7/2013,1976,421.89,364.69,833654.64,720627.44,113027.20 Europe,Georgia,Beverages,Online,L,7/15/2011,170186650,8/13/2011,867,47.45,31.79,41139.15,27561.93,13577.22 Middle East and North Africa,Jordan,Office Supplies,Online,H,4/30/2013,369403541,6/1/2013,3571,651.21,524.96,2325470.91,1874632.16,450838.75 Sub-Saharan Africa,Comoros,Meat,Offline,H,11/20/2012,255249154,12/11/2012,2752,421.89,364.69,1161041.28,1003626.88,157414.40 Central America and the Caribbean,Honduras,Clothes,Online,H,7/11/2016,724647319,8/3/2016,8100,109.28,35.84,885168.00,290304.00,594864.00 Europe,Sweden,Vegetables,Online,C,6/27/2016,494834363,7/24/2016,1339,154.06,90.93,206286.34,121755.27,84531.07 Europe,France,Snacks,Online,C,6/6/2017,153359115,6/15/2017,1225,152.58,97.44,186910.50,119364.00,67546.50 Asia,India,Fruits,Online,H,7/7/2017,808082902,7/18/2017,8543,9.33,6.92,79706.19,59117.56,20588.63 Sub-Saharan Africa,Mali,Baby Food,Online,M,3/2/2012,937179553,3/13/2012,1111,255.28,159.42,283616.08,177115.62,106500.46 Sub-Saharan Africa,Niger,Baby Food,Offline,L,1/14/2013,439135396,1/14/2013,8777,255.28,159.42,2240592.56,1399229.34,841363.22 Sub-Saharan Africa,Benin,Office Supplies,Offline,C,11/26/2013,182749259,12/5/2013,8422,651.21,524.96,5484490.62,4421213.12,1063277.50 Sub-Saharan Africa,Djibouti,Baby Food,Online,M,3/4/2017,657132470,4/5/2017,8956,255.28,159.42,2286287.68,1427765.52,858522.16 Sub-Saharan Africa,Senegal,Clothes,Offline,C,12/21/2014,621708858,2/9/2015,6322,109.28,35.84,690868.16,226580.48,464287.68 Sub-Saharan Africa,The Gambia,Fruits,Offline,M,8/18/2015,256214749,8/25/2015,8493,9.33,6.92,79239.69,58771.56,20468.13 North America,United States of America,Meat,Online,H,3/7/2017,710698974,4/15/2017,474,421.89,364.69,199975.86,172863.06,27112.80 Middle East and North Africa,Pakistan,Snacks,Offline,H,2/26/2011,955522859,4/8/2011,9303,152.58,97.44,1419451.74,906484.32,512967.42 Middle East and North Africa,Iran,Beverages,Online,C,8/26/2016,931360232,10/12/2016,9044,47.45,31.79,429137.80,287508.76,141629.04 Sub-Saharan Africa,Burkina Faso,Fruits,Online,C,12/21/2015,199197423,12/27/2015,5799,9.33,6.92,54104.67,40129.08,13975.59 Europe,Lithuania,Cosmetics,Offline,H,5/29/2011,190333259,6/3/2011,2696,437.20,263.33,1178691.20,709937.68,468753.52 Australia and Oceania,Australia,Baby Food,Online,H,11/22/2013,156379067,1/5/2014,4896,255.28,159.42,1249850.88,780520.32,469330.56 Middle East and North Africa,Egypt,Beverages,Offline,L,7/1/2016,319258677,7/10/2016,4592,47.45,31.79,217890.40,145979.68,71910.72 Asia,Bangladesh,Cosmetics,Offline,M,5/10/2013,521208417,5/14/2013,6008,437.20,263.33,2626697.60,1582086.64,1044610.96 Central America and the Caribbean,Saint Lucia,Clothes,Online,M,1/7/2011,674777114,1/24/2011,398,109.28,35.84,43493.44,14264.32,29229.12 Middle East and North Africa,Oman,Household,Online,M,2/9/2017,312826097,2/9/2017,1049,668.27,502.54,701015.23,527164.46,173850.77 Middle East and North Africa,Tunisia ,Beverages,Offline,L,10/21/2013,838529193,12/7/2013,8277,47.45,31.79,392743.65,263125.83,129617.82 Asia,Turkmenistan,Fruits,Online,L,8/25/2014,575372731,9/3/2014,4432,9.33,6.92,41350.56,30669.44,10681.12 Sub-Saharan Africa,Benin,Meat,Online,M,4/23/2015,617155539,5/24/2015,8894,421.89,364.69,3752289.66,3243552.86,508736.80 North America,Canada,Fruits,Online,H,7/7/2012,777988946,7/25/2012,3073,9.33,6.92,28671.09,21265.16,7405.93 Sub-Saharan Africa,Mauritania,Cosmetics,Online,H,6/8/2015,942296779,6/23/2015,5412,437.20,263.33,2366126.40,1425141.96,940984.44 Europe,San Marino,Clothes,Online,C,7/26/2011,614815366,8/25/2011,6384,109.28,35.84,697643.52,228802.56,468840.96 Sub-Saharan Africa,South Sudan,Meat,Offline,H,12/27/2015,270593535,1/2/2016,3495,421.89,364.69,1474505.55,1274591.55,199914.00 Middle East and North Africa,Yemen,Clothes,Online,M,7/20/2014,904992616,7/25/2014,6281,109.28,35.84,686387.68,225111.04,461276.64 Europe,Andorra,Snacks,Offline,M,2/5/2013,883686435,3/1/2013,1308,152.58,97.44,199574.64,127451.52,72123.12 Europe,Netherlands,Snacks,Online,H,12/20/2010,892661321,1/11/2011,7177,152.58,97.44,1095066.66,699326.88,395739.78 Sub-Saharan Africa,Cameroon,Cereal,Offline,H,5/8/2012,788216102,6/27/2012,9515,205.70,117.11,1957235.50,1114301.65,842933.85 Sub-Saharan Africa,Mauritius ,Meat,Offline,H,12/6/2014,946962106,12/25/2014,5986,421.89,364.69,2525433.54,2183034.34,342399.20 Asia,Japan,Cosmetics,Offline,H,8/30/2013,915823161,9/29/2013,1280,437.20,263.33,559616.00,337062.40,222553.60 Europe,Montenegro,Snacks,Offline,M,2/24/2012,762035596,4/10/2012,2122,152.58,97.44,323774.76,206767.68,117007.08 Europe,Sweden,Office Supplies,Offline,C,4/6/2011,623148238,4/26/2011,2266,651.21,524.96,1475641.86,1189559.36,286082.50 Central America and the Caribbean,Guatemala,Household,Offline,M,12/11/2012,257022416,12/27/2012,7499,668.27,502.54,5011356.73,3768547.46,1242809.27 Europe,Switzerland,Vegetables,Offline,L,6/2/2016,391831958,7/13/2016,639,154.06,90.93,98444.34,58104.27,40340.07 Sub-Saharan Africa,Sierra Leone,Snacks,Offline,L,5/24/2014,476063191,5/31/2014,6532,152.58,97.44,996652.56,636478.08,360174.48 Sub-Saharan Africa,Djibouti,Clothes,Online,M,1/4/2012,928514945,1/28/2012,7061,109.28,35.84,771626.08,253066.24,518559.84 Asia,India,Personal Care,Offline,H,6/17/2015,888298547,6/23/2015,6135,81.73,56.67,501413.55,347670.45,153743.10 Asia,Nepal,Personal Care,Online,C,1/31/2013,464837825,2/14/2013,4697,81.73,56.67,383885.81,266178.99,117706.82 Asia,Uzbekistan,Cereal,Online,C,12/30/2016,287869107,1/14/2017,5721,205.70,117.11,1176809.70,669986.31,506823.39 Sub-Saharan Africa,Guinea,Vegetables,Online,L,11/17/2013,157441222,12/6/2013,9211,154.06,90.93,1419046.66,837556.23,581490.43 Europe,Slovenia,Fruits,Online,L,3/10/2014,393915498,4/27/2014,7204,9.33,6.92,67213.32,49851.68,17361.64 Middle East and North Africa,Kuwait,Cosmetics,Offline,C,7/9/2010,487965762,7/18/2010,8768,437.20,263.33,3833369.60,2308877.44,1524492.16 Central America and the Caribbean,Saint Vincent and the Grenadines,Snacks,Offline,M,9/4/2011,450578343,10/2/2011,5000,152.58,97.44,762900.00,487200.00,275700.00 Asia,Japan,Fruits,Online,M,3/2/2016,363052070,3/17/2016,4030,9.33,6.92,37599.90,27887.60,9712.30 Europe,Luxembourg,Cereal,Offline,L,12/30/2015,826998269,2/14/2016,6020,205.70,117.11,1238314.00,705002.20,533311.80 Middle East and North Africa,Pakistan,Fruits,Online,M,8/4/2015,714340770,9/5/2015,8163,9.33,6.92,76160.79,56487.96,19672.83 Sub-Saharan Africa,Mauritius ,Fruits,Online,C,11/11/2012,317315900,11/12/2012,9681,9.33,6.92,90323.73,66992.52,23331.21 Australia and Oceania,Fiji,Snacks,Offline,H,8/3/2010,898472487,8/21/2010,6830,152.58,97.44,1042121.40,665515.20,376606.20 Middle East and North Africa,Iraq,Fruits,Offline,M,8/7/2012,640671861,8/16/2012,7896,9.33,6.92,73669.68,54640.32,19029.36 Central America and the Caribbean,Dominica,Cosmetics,Offline,C,6/8/2012,497087848,7/20/2012,8195,437.20,263.33,3582854.00,2157989.35,1424864.65 Asia,Kazakhstan,Household,Offline,L,4/11/2012,141206777,5/26/2012,5078,668.27,502.54,3393475.06,2551898.12,841576.94 Sub-Saharan Africa,Seychelles ,Fruits,Online,L,7/31/2011,216827476,9/6/2011,2923,9.33,6.92,27271.59,20227.16,7044.43 Middle East and North Africa,Morocco,Beverages,Offline,L,11/11/2010,988061273,12/28/2010,8142,47.45,31.79,386337.90,258834.18,127503.72 Sub-Saharan Africa,Burundi,Baby Food,Offline,H,7/1/2015,989331996,8/16/2015,4178,255.28,159.42,1066559.84,666056.76,400503.08 Sub-Saharan Africa,Equatorial Guinea,Fruits,Online,L,10/12/2016,175375974,10/28/2016,6503,9.33,6.92,60672.99,45000.76,15672.23 Middle East and North Africa,Saudi Arabia,Clothes,Offline,C,11/8/2010,371242034,12/6/2010,7623,109.28,35.84,833041.44,273208.32,559833.12 Sub-Saharan Africa,Zimbabwe,Office Supplies,Offline,L,1/26/2010,322291505,2/11/2010,2073,651.21,524.96,1349958.33,1088242.08,261716.25 Australia and Oceania,Fiji,Baby Food,Offline,H,6/28/2016,644198215,6/29/2016,1422,255.28,159.42,363008.16,226695.24,136312.92 Europe,Belgium,Cereal,Offline,C,7/9/2010,672948491,7/31/2010,9268,205.70,117.11,1906427.60,1085375.48,821052.12 Europe,Norway,Personal Care,Offline,C,4/13/2015,714841163,4/13/2015,6240,81.73,56.67,509995.20,353620.80,156374.40 Sub-Saharan Africa,Cape Verde,Snacks,Online,M,2/3/2017,696487557,2/27/2017,5001,152.58,97.44,763052.58,487297.44,275755.14 Sub-Saharan Africa,Cote d'Ivoire,Vegetables,Online,H,9/15/2014,614811503,10/3/2014,5241,154.06,90.93,807428.46,476564.13,330864.33 Asia,Vietnam,Personal Care,Online,H,7/2/2015,987049329,7/23/2015,8686,81.73,56.67,709906.78,492235.62,217671.16 Australia and Oceania,East Timor,Beverages,Online,C,7/27/2016,600749862,8/7/2016,4089,47.45,31.79,194023.05,129989.31,64033.74 Australia and Oceania,Federated States of Micronesia,Office Supplies,Offline,H,1/26/2016,563774430,2/24/2016,2237,651.21,524.96,1456756.77,1174335.52,282421.25 Europe,San Marino,Office Supplies,Online,C,1/1/2017,254296863,1/2/2017,948,651.21,524.96,617347.08,497662.08,119685.00 Sub-Saharan Africa,Benin,Snacks,Online,C,11/14/2015,470803487,12/6/2015,69,152.58,97.44,10528.02,6723.36,3804.66 Asia,Kyrgyzstan,Beverages,Online,C,1/7/2014,282093131,1/26/2014,6481,47.45,31.79,307523.45,206030.99,101492.46 Asia,Nepal,Office Supplies,Offline,M,11/12/2013,177277123,12/21/2013,9095,651.21,524.96,5922754.95,4774511.20,1148243.75 Central America and the Caribbean,El Salvador,Fruits,Offline,L,2/7/2015,715779292,2/17/2015,3854,9.33,6.92,35957.82,26669.68,9288.14 Europe,Armenia,Cosmetics,Online,C,11/30/2010,277335965,12/31/2010,8730,437.20,263.33,3816756.00,2298870.90,1517885.10 Middle East and North Africa,United Arab Emirates,Beverages,Offline,L,6/26/2014,911995971,7/28/2014,8729,47.45,31.79,414191.05,277494.91,136696.14 North America,Canada,Cereal,Online,L,5/5/2017,690120637,5/16/2017,887,205.70,117.11,182455.90,103876.57,78579.33 Europe,Serbia,Cosmetics,Online,M,11/13/2015,452383792,11/16/2015,9272,437.20,263.33,4053718.40,2441595.76,1612122.64 Europe,Kosovo,Clothes,Offline,M,1/27/2015,659771764,2/2/2015,9981,109.28,35.84,1090723.68,357719.04,733004.64 Australia and Oceania,Fiji,Cereal,Offline,L,4/5/2017,943583381,4/11/2017,6146,205.70,117.11,1264232.20,719758.06,544474.14 Sub-Saharan Africa,Benin,Personal Care,Online,L,8/24/2010,555429971,8/28/2010,2926,81.73,56.67,239141.98,165816.42,73325.56 North America,Mexico,Office Supplies,Offline,H,1/4/2011,617235362,2/10/2011,2515,651.21,524.96,1637793.15,1320274.40,317518.75 Europe,Lithuania,Clothes,Offline,H,6/27/2012,971235883,7/2/2012,9136,109.28,35.84,998382.08,327434.24,670947.84 Europe,Slovakia,Household,Offline,M,1/23/2014,629980361,1/23/2014,4043,668.27,502.54,2701815.61,2031769.22,670046.39 Sub-Saharan Africa,Zambia,Cereal,Online,L,10/13/2015,926330125,11/7/2015,524,205.70,117.11,107786.80,61365.64,46421.16 Middle East and North Africa,Israel,Cereal,Online,C,12/21/2014,563459002,1/9/2015,8895,205.70,117.11,1829701.50,1041693.45,788008.05 Sub-Saharan Africa,Cote d'Ivoire,Office Supplies,Offline,H,1/9/2010,564853322,2/16/2010,1505,651.21,524.96,980071.05,790064.80,190006.25 Europe,Czech Republic,Snacks,Online,M,10/3/2011,224311912,10/26/2011,7734,152.58,97.44,1180053.72,753600.96,426452.76 Sub-Saharan Africa,Angola,Beverages,Offline,M,11/24/2016,255946099,12/26/2016,8993,47.45,31.79,426717.85,285887.47,140830.38 Sub-Saharan Africa,Mauritius ,Meat,Online,C,11/23/2011,544179713,12/1/2011,3725,421.89,364.69,1571540.25,1358470.25,213070.00 Sub-Saharan Africa,Ghana,Baby Food,Offline,C,7/18/2014,593749082,7/27/2014,2403,255.28,159.42,613437.84,383086.26,230351.58 Sub-Saharan Africa,Senegal,Snacks,Offline,M,3/13/2017,879703032,4/14/2017,2531,152.58,97.44,386179.98,246620.64,139559.34 Europe,Estonia,Vegetables,Offline,M,4/13/2013,597402894,5/16/2013,3647,154.06,90.93,561856.82,331621.71,230235.11 Sub-Saharan Africa,Sao Tome and Principe,Beverages,Online,L,3/20/2016,812522494,4/1/2016,2317,47.45,31.79,109941.65,73657.43,36284.22 Australia and Oceania,Australia,Household,Online,C,3/10/2010,411048161,4/8/2010,7140,668.27,502.54,4771447.80,3588135.60,1183312.20 Europe,Serbia,Snacks,Online,M,7/16/2014,149278724,8/18/2014,3746,152.58,97.44,571564.68,365010.24,206554.44 Europe,Denmark,Office Supplies,Online,H,10/20/2011,403825509,11/25/2011,9797,651.21,524.96,6379904.37,5143033.12,1236871.25 Sub-Saharan Africa,Burkina Faso,Office Supplies,Offline,L,1/29/2012,721612346,3/8/2012,9984,651.21,524.96,6501680.64,5241200.64,1260480.00 Central America and the Caribbean,Guatemala,Household,Online,M,5/26/2011,269875562,5/30/2011,1031,668.27,502.54,688986.37,518118.74,170867.63 Central America and the Caribbean,Haiti,Cereal,Offline,L,8/21/2010,986163985,9/26/2010,6693,205.70,117.11,1376750.10,783817.23,592932.87 Asia,Kyrgyzstan,Office Supplies,Offline,C,9/27/2011,828338944,11/14/2011,2756,651.21,524.96,1794734.76,1446789.76,347945.00 Sub-Saharan Africa,Republic of the Congo,Fruits,Offline,C,12/1/2013,524574267,1/15/2014,2038,9.33,6.92,19014.54,14102.96,4911.58 Middle East and North Africa,Qatar,Fruits,Online,L,6/18/2017,423356282,7/31/2017,9387,9.33,6.92,87580.71,64958.04,22622.67 Central America and the Caribbean,Trinidad and Tobago,Beverages,Offline,H,5/11/2012,943483817,6/28/2012,6683,47.45,31.79,317108.35,212452.57,104655.78 Australia and Oceania,Australia,Personal Care,Online,C,5/22/2012,324068200,6/18/2012,7837,81.73,56.67,640518.01,444122.79,196395.22 Europe,Greece,Clothes,Offline,M,6/14/2013,474533259,7/23/2013,3791,109.28,35.84,414280.48,135869.44,278411.04 Middle East and North Africa,Jordan,Personal Care,Offline,M,7/9/2012,224615323,7/11/2012,7520,81.73,56.67,614609.60,426158.40,188451.20 Asia,Brunei,Vegetables,Online,L,6/4/2011,274363219,6/30/2011,9028,154.06,90.93,1390853.68,820916.04,569937.64 Europe,Denmark,Cosmetics,Offline,C,1/15/2013,944138276,2/16/2013,352,437.20,263.33,153894.40,92692.16,61202.24 Asia,Indonesia,Baby Food,Online,C,7/17/2017,824614322,8/15/2017,557,255.28,159.42,142190.96,88796.94,53394.02 Sub-Saharan Africa,Togo,Beverages,Online,L,1/6/2011,826777684,2/17/2011,744,47.45,31.79,35302.80,23651.76,11651.04 Asia,Nepal,Clothes,Online,L,9/8/2014,131927192,10/8/2014,9043,109.28,35.84,988219.04,324101.12,664117.92 Sub-Saharan Africa,Cameroon,Fruits,Online,C,12/25/2012,241674172,1/13/2013,5613,9.33,6.92,52369.29,38841.96,13527.33 Asia,Thailand,Vegetables,Online,C,5/3/2010,927942454,5/26/2010,7648,154.06,90.93,1178250.88,695432.64,482818.24 Sub-Saharan Africa,Gabon,Office Supplies,Offline,M,3/25/2012,682968366,4/11/2012,4371,651.21,524.96,2846438.91,2294600.16,551838.75 Europe,Bosnia and Herzegovina,Fruits,Online,L,11/14/2013,769300734,11/30/2013,2038,9.33,6.92,19014.54,14102.96,4911.58 Europe,Liechtenstein,Fruits,Offline,H,7/6/2011,269800889,8/23/2011,8933,9.33,6.92,83344.89,61816.36,21528.53 Asia,South Korea,Beverages,Online,C,11/2/2013,137642657,11/30/2013,376,47.45,31.79,17841.20,11953.04,5888.16 Middle East and North Africa,Iran,Office Supplies,Offline,H,6/18/2015,946312367,7/26/2015,3714,651.21,524.96,2418593.94,1949701.44,468892.50 Asia,North Korea,Cosmetics,Offline,H,11/2/2015,639608848,12/15/2015,3326,437.20,263.33,1454127.20,875835.58,578291.62 Sub-Saharan Africa,South Sudan,Fruits,Offline,L,6/25/2015,381643426,7/19/2015,5626,9.33,6.92,52490.58,38931.92,13558.66 Middle East and North Africa,Pakistan,Beverages,Offline,M,3/13/2012,506839931,3/15/2012,4053,47.45,31.79,192314.85,128844.87,63469.98 Central America and the Caribbean,The Bahamas,Baby Food,Offline,M,6/3/2012,969934689,6/13/2012,4084,255.28,159.42,1042563.52,651071.28,391492.24 Sub-Saharan Africa,Equatorial Guinea,Household,Offline,C,4/20/2012,895976531,5/7/2012,8221,668.27,502.54,5493847.67,4131381.34,1362466.33 Europe,United Kingdom,Meat,Online,H,8/12/2016,830326783,8/19/2016,1002,421.89,364.69,422733.78,365419.38,57314.40 Asia,Indonesia,Personal Care,Offline,H,4/9/2012,488659274,4/13/2012,3993,81.73,56.67,326347.89,226283.31,100064.58 Europe,Bulgaria,Meat,Offline,M,7/20/2017,106960332,9/1/2017,794,421.89,364.69,334980.66,289563.86,45416.80 Sub-Saharan Africa,Guinea-Bissau,Beverages,Offline,C,2/17/2010,891528785,4/6/2010,2034,47.45,31.79,96513.30,64660.86,31852.44 Sub-Saharan Africa,Equatorial Guinea,Fruits,Offline,H,3/14/2014,968975961,3/19/2014,374,9.33,6.92,3489.42,2588.08,901.34 Sub-Saharan Africa,Tanzania,Fruits,Offline,H,5/10/2013,336225688,6/20/2013,5508,9.33,6.92,51389.64,38115.36,13274.28 Sub-Saharan Africa,Rwanda,Baby Food,Online,H,12/27/2014,410514295,2/10/2015,9157,255.28,159.42,2337598.96,1459808.94,877790.02 Central America and the Caribbean,Barbados,Cosmetics,Online,M,3/8/2016,879390609,4/19/2016,78,437.20,263.33,34101.60,20539.74,13561.86 Australia and Oceania,Fiji,Household,Offline,H,2/5/2015,150715959,3/1/2015,9056,668.27,502.54,6051853.12,4551002.24,1500850.88 Middle East and North Africa,Morocco,Beverages,Online,C,9/26/2014,302664172,10/16/2014,3909,47.45,31.79,185482.05,124267.11,61214.94 Central America and the Caribbean,The Bahamas,Beverages,Online,L,8/7/2011,333721578,8/28/2011,4486,47.45,31.79,212860.70,142609.94,70250.76 Europe,Ukraine,Household,Offline,H,8/10/2014,212687003,8/17/2014,7665,668.27,502.54,5122289.55,3851969.10,1270320.45 Europe,United Kingdom,Baby Food,Online,L,1/11/2011,428671777,2/3/2011,2360,255.28,159.42,602460.80,376231.20,226229.60 Europe,Latvia,Baby Food,Offline,C,9/15/2015,641099727,11/4/2015,4511,255.28,159.42,1151568.08,719143.62,432424.46 Sub-Saharan Africa,Sierra Leone,Fruits,Offline,C,4/1/2014,129707181,5/3/2014,2092,9.33,6.92,19518.36,14476.64,5041.72 Asia,Indonesia,Personal Care,Offline,L,4/6/2012,944542968,4/9/2012,109,81.73,56.67,8908.57,6177.03,2731.54 Sub-Saharan Africa,Togo,Meat,Offline,M,6/6/2016,255968415,6/16/2016,5597,421.89,364.69,2361318.33,2041169.93,320148.40 Sub-Saharan Africa,Sao Tome and Principe,Household,Offline,H,7/21/2015,704657351,8/28/2015,2624,668.27,502.54,1753540.48,1318664.96,434875.52 Middle East and North Africa,Egypt,Office Supplies,Offline,H,8/25/2014,951596105,9/28/2014,7289,651.21,524.96,4746669.69,3826433.44,920236.25 Europe,United Kingdom,Fruits,Offline,M,1/7/2016,628083503,2/12/2016,2721,9.33,6.92,25386.93,18829.32,6557.61 Europe,San Marino,Vegetables,Offline,M,6/11/2015,785730874,7/23/2015,4081,154.06,90.93,628718.86,371085.33,257633.53 Australia and Oceania,Solomon Islands,Cereal,Offline,H,7/26/2013,746462047,9/6/2013,3562,205.70,117.11,732703.40,417145.82,315557.58 Sub-Saharan Africa,South Africa,Meat,Offline,H,2/4/2012,352513349,3/11/2012,5388,421.89,364.69,2273143.32,1964949.72,308193.60 Europe,Kosovo,Clothes,Online,L,1/3/2010,416433608,1/16/2010,814,109.28,35.84,88953.92,29173.76,59780.16 Central America and the Caribbean,Trinidad and Tobago,Household,Online,H,12/6/2014,471084153,1/3/2015,3124,668.27,502.54,2087675.48,1569934.96,517740.52 Middle East and North Africa,Jordan,Meat,Online,L,8/11/2016,119638812,8/31/2016,2638,421.89,364.69,1112945.82,962052.22,150893.60 Europe,Italy,Clothes,Offline,H,6/12/2013,385583913,7/26/2013,1703,109.28,35.84,186103.84,61035.52,125068.32 Asia,Kazakhstan,Vegetables,Offline,L,3/31/2016,562718284,5/14/2016,9700,154.06,90.93,1494382.00,882021.00,612361.00 Sub-Saharan Africa,Senegal,Snacks,Online,C,3/8/2014,465153253,4/1/2014,8039,152.58,97.44,1226590.62,783320.16,443270.46 Sub-Saharan Africa,Swaziland,Cereal,Offline,L,5/27/2016,877312648,6/25/2016,5163,205.70,117.11,1062029.10,604638.93,457390.17 Asia,Taiwan,Vegetables,Offline,H,6/3/2010,403932797,6/21/2010,1546,154.06,90.93,238176.76,140577.78,97598.98 Sub-Saharan Africa,Tanzania,Fruits,Offline,H,4/23/2011,420062530,5/28/2011,4692,9.33,6.92,43776.36,32468.64,11307.72 Europe,Romania,Cereal,Offline,M,6/27/2012,121063172,8/5/2012,4138,205.70,117.11,851186.60,484601.18,366585.42 Europe,Serbia,Cosmetics,Offline,M,3/26/2012,572608554,4/24/2012,6451,437.20,263.33,2820377.20,1698741.83,1121635.37 Europe,Romania,Personal Care,Online,C,6/16/2017,660685002,6/30/2017,229,81.73,56.67,18716.17,12977.43,5738.74 Europe,Estonia,Clothes,Offline,H,3/13/2017,241591346,4/26/2017,1103,109.28,35.84,120535.84,39531.52,81004.32 Sub-Saharan Africa,Uganda,Office Supplies,Online,M,9/18/2016,591938912,10/19/2016,6733,651.21,524.96,4384596.93,3534555.68,850041.25 Europe,Iceland,Snacks,Online,L,12/19/2010,358651530,1/13/2011,1813,152.58,97.44,276627.54,176658.72,99968.82 Sub-Saharan Africa,Nigeria,Household,Offline,C,2/14/2011,508965528,3/27/2011,3065,668.27,502.54,2048247.55,1540285.10,507962.45 Sub-Saharan Africa,Lesotho,Baby Food,Online,C,6/27/2010,280429732,7/27/2010,4244,255.28,159.42,1083408.32,676578.48,406829.84 Central America and the Caribbean,Costa Rica,Fruits,Online,L,1/2/2011,330905473,1/9/2011,1138,9.33,6.92,10617.54,7874.96,2742.58 Australia and Oceania,Solomon Islands,Office Supplies,Online,M,11/21/2011,488566577,12/18/2011,6562,651.21,524.96,4273240.02,3444787.52,828452.50 Central America and the Caribbean,Trinidad and Tobago,Snacks,Online,C,6/5/2013,201899373,6/11/2013,5366,152.58,97.44,818744.28,522863.04,295881.24 Central America and the Caribbean,Saint Kitts and Nevis ,Cosmetics,Offline,H,3/9/2013,789702689,4/28/2013,9430,437.20,263.33,4122796.00,2483201.90,1639594.10 Sub-Saharan Africa,Sudan,Clothes,Offline,L,5/12/2017,491087853,6/7/2017,2664,109.28,35.84,291121.92,95477.76,195644.16 Sub-Saharan Africa,Cape Verde,Cereal,Offline,H,4/17/2014,315478694,5/30/2014,6011,205.70,117.11,1236462.70,703948.21,532514.49 Europe,Bosnia and Herzegovina,Fruits,Offline,C,2/3/2016,892611539,2/21/2016,2445,9.33,6.92,22811.85,16919.40,5892.45 Europe,Croatia,Personal Care,Online,M,1/4/2017,222535216,1/15/2017,1971,81.73,56.67,161089.83,111696.57,49393.26 Middle East and North Africa,Qatar,Cosmetics,Offline,H,5/13/2012,425611054,6/27/2012,6624,437.20,263.33,2896012.80,1744297.92,1151714.88 Australia and Oceania,Fiji,Cereal,Online,M,6/19/2017,992512881,7/17/2017,5472,205.70,117.11,1125590.40,640825.92,484764.48 Middle East and North Africa,Lebanon,Cosmetics,Online,C,10/30/2010,134227025,12/3/2010,9614,437.20,263.33,4203240.80,2531654.62,1671586.18 Middle East and North Africa,Morocco,Meat,Online,H,9/4/2013,632052314,9/27/2013,7180,421.89,364.69,3029170.20,2618474.20,410696.00 Asia,India,Household,Offline,M,6/12/2010,387600076,7/4/2010,8331,668.27,502.54,5567357.37,4186660.74,1380696.63 Asia,Nepal,Personal Care,Online,M,2/16/2013,972794139,3/31/2013,258,81.73,56.67,21086.34,14620.86,6465.48 Sub-Saharan Africa,Gabon,Clothes,Offline,H,1/28/2012,879870831,2/8/2012,2187,109.28,35.84,238995.36,78382.08,160613.28 Sub-Saharan Africa,Eritrea,Beverages,Online,L,1/19/2010,471378982,3/3/2010,371,47.45,31.79,17603.95,11794.09,5809.86 Sub-Saharan Africa,Burundi,Office Supplies,Online,H,11/23/2010,630179917,12/7/2010,3096,651.21,524.96,2016146.16,1625276.16,390870.00 Central America and the Caribbean,Dominica,Snacks,Online,H,9/19/2015,509447467,11/1/2015,5681,152.58,97.44,866806.98,553556.64,313250.34 Europe,Greece,Vegetables,Online,L,7/19/2011,682667958,7/27/2011,5474,154.06,90.93,843324.44,497750.82,345573.62 Europe,Bosnia and Herzegovina,Fruits,Online,C,12/29/2012,893640220,1/25/2013,6855,9.33,6.92,63957.15,47436.60,16520.55 Central America and the Caribbean,El Salvador,Clothes,Online,L,12/31/2012,506475579,1/30/2013,6234,109.28,35.84,681251.52,223426.56,457824.96 Sub-Saharan Africa,Mauritius ,Cereal,Online,C,12/10/2016,755597865,1/17/2017,7054,205.70,117.11,1451007.80,826093.94,624913.86 Europe,Montenegro,Baby Food,Offline,H,2/10/2016,695743405,3/13/2016,4789,255.28,159.42,1222535.92,763462.38,459073.54 Europe,Bulgaria,Household,Offline,H,3/22/2014,351961028,4/25/2014,1944,668.27,502.54,1299116.88,976937.76,322179.12 Middle East and North Africa,Iraq,Snacks,Online,C,1/21/2016,269612061,2/18/2016,3055,152.58,97.44,466131.90,297679.20,168452.70 Middle East and North Africa,Kuwait,Office Supplies,Online,M,2/7/2016,164370334,3/13/2016,9689,651.21,524.96,6309573.69,5086337.44,1223236.25 Europe,Italy,Cereal,Offline,H,6/25/2017,272222173,8/6/2017,5445,205.70,117.11,1120036.50,637663.95,482372.55 Middle East and North Africa,Azerbaijan,Office Supplies,Online,H,1/10/2013,899466407,2/2/2013,953,651.21,524.96,620603.13,500286.88,120316.25 Sub-Saharan Africa,Nigeria,Beverages,Offline,C,10/11/2011,172714364,10/25/2011,8873,47.45,31.79,421023.85,282072.67,138951.18 Asia,Thailand,Fruits,Offline,L,6/24/2012,788889873,8/5/2012,8899,9.33,6.92,83027.67,61581.08,21446.59 Central America and the Caribbean,Guatemala,Household,Online,H,12/13/2014,565229260,1/27/2015,2754,668.27,502.54,1840415.58,1383995.16,456420.42 Middle East and North Africa,Yemen,Personal Care,Offline,H,4/8/2016,989281356,4/8/2016,9192,81.73,56.67,751262.16,520910.64,230351.52 Australia and Oceania,Solomon Islands,Cosmetics,Online,L,8/7/2014,468907487,9/24/2014,9000,437.20,263.33,3934800.00,2369970.00,1564830.00 Asia,Brunei,Household,Online,C,12/11/2012,182281482,12/27/2012,9996,668.27,502.54,6680026.92,5023389.84,1656637.08 Europe,Ukraine,Cereal,Offline,M,5/18/2015,927889668,7/6/2015,2028,205.70,117.11,417159.60,237499.08,179660.52 Asia,Indonesia,Personal Care,Online,C,9/2/2015,874530875,9/26/2015,1975,81.73,56.67,161416.75,111923.25,49493.50 Asia,Bhutan,Snacks,Offline,H,3/29/2016,511316430,5/4/2016,8749,152.58,97.44,1334922.42,852502.56,482419.86 Middle East and North Africa,United Arab Emirates,Baby Food,Offline,H,10/13/2016,397670161,10/30/2016,8293,255.28,159.42,2117037.04,1322070.06,794966.98 Europe,Switzerland,Personal Care,Offline,H,6/25/2010,713328397,7/6/2010,8579,81.73,56.67,701161.67,486171.93,214989.74 Sub-Saharan Africa,Sierra Leone,Office Supplies,Online,L,7/8/2010,808339965,7/10/2010,4614,651.21,524.96,3004682.94,2422165.44,582517.50 Europe,Czech Republic,Cosmetics,Offline,M,12/28/2015,553066194,2/3/2016,3432,437.20,263.33,1500470.40,903748.56,596721.84 Europe,Andorra,Fruits,Offline,M,9/18/2015,788180911,9/18/2015,9102,9.33,6.92,84921.66,62985.84,21935.82 Asia,Bhutan,Fruits,Online,H,9/12/2014,174670445,10/22/2014,7721,9.33,6.92,72036.93,53429.32,18607.61 Middle East and North Africa,Iran,Meat,Offline,L,3/31/2015,143833625,5/13/2015,2421,421.89,364.69,1021395.69,882914.49,138481.20 Europe,France,Fruits,Online,L,2/20/2013,847281777,2/28/2013,8361,9.33,6.92,78008.13,57858.12,20150.01 Europe,Russia,Beverages,Online,M,8/5/2016,706938731,8/30/2016,7735,47.45,31.79,367025.75,245895.65,121130.10 Europe,Liechtenstein,Office Supplies,Offline,L,3/4/2012,465040814,4/17/2012,4766,651.21,524.96,3103666.86,2501959.36,601707.50 Europe,Germany,Baby Food,Offline,M,12/31/2013,934136855,1/3/2014,709,255.28,159.42,180993.52,113028.78,67964.74 Europe,Russia,Meat,Offline,C,7/20/2014,747088181,7/28/2014,8850,421.89,364.69,3733726.50,3227506.50,506220.00 Middle East and North Africa,Tunisia ,Baby Food,Online,L,2/25/2011,407068622,4/15/2011,9506,255.28,159.42,2426691.68,1515446.52,911245.16 Asia,Singapore,Fruits,Online,M,5/4/2017,937564504,6/2/2017,5026,9.33,6.92,46892.58,34779.92,12112.66 Sub-Saharan Africa,Namibia,Baby Food,Online,H,8/23/2013,732374656,10/4/2013,4790,255.28,159.42,1222791.20,763621.80,459169.40 Asia,Sri Lanka,Baby Food,Offline,C,12/9/2011,505610406,1/22/2012,210,255.28,159.42,53608.80,33478.20,20130.60 Asia,Cambodia,Snacks,Online,C,10/24/2013,141695582,11/22/2013,9726,152.58,97.44,1483993.08,947701.44,536291.64 Europe,Vatican City,Beverages,Offline,L,5/7/2014,945366513,5/11/2014,3814,47.45,31.79,180974.30,121247.06,59727.24 Australia and Oceania,Tuvalu,Beverages,Offline,H,6/19/2013,691672027,7/5/2013,9978,47.45,31.79,473456.10,317200.62,156255.48 Sub-Saharan Africa,Angola,Baby Food,Offline,C,3/2/2012,375973451,3/25/2012,7754,255.28,159.42,1979441.12,1236142.68,743298.44 Middle East and North Africa,Iraq,Personal Care,Online,H,4/19/2016,163944613,5/12/2016,3709,81.73,56.67,303136.57,210189.03,92947.54 Asia,Laos,Clothes,Offline,M,1/19/2010,741571843,2/15/2010,6443,109.28,35.84,704091.04,230917.12,473173.92 Middle East and North Africa,Tunisia ,Snacks,Online,H,10/4/2012,165153968,11/7/2012,1584,152.58,97.44,241686.72,154344.96,87341.76 North America,Mexico,Household,Online,C,7/13/2014,611302316,7/17/2014,6795,668.27,502.54,4540894.65,3414759.30,1126135.35 Asia,Vietnam,Meat,Offline,L,4/30/2010,726940715,6/10/2010,6767,421.89,364.69,2854929.63,2467857.23,387072.40 Asia,Uzbekistan,Beverages,Online,L,4/27/2011,579305493,5/2/2011,8224,47.45,31.79,390228.80,261440.96,128787.84 Asia,Cambodia,Baby Food,Online,H,10/23/2010,305945479,10/25/2010,4921,255.28,159.42,1256232.88,784505.82,471727.06 Middle East and North Africa,Algeria,Vegetables,Offline,C,9/28/2010,564722001,11/12/2010,2644,154.06,90.93,407334.64,240418.92,166915.72 Europe,Bulgaria,Clothes,Online,M,5/2/2010,283808887,6/9/2010,4211,109.28,35.84,460178.08,150922.24,309255.84 Asia,Vietnam,Household,Offline,M,6/10/2017,711692464,7/28/2017,4470,668.27,502.54,2987166.90,2246353.80,740813.10 Sub-Saharan Africa,Cape Verde,Household,Online,L,6/26/2014,467171561,7/26/2014,5301,668.27,502.54,3542499.27,2663964.54,878534.73 Sub-Saharan Africa,Togo,Cosmetics,Offline,C,3/28/2015,489357507,3/31/2015,616,437.20,263.33,269315.20,162211.28,107103.92 Asia,Nepal,Personal Care,Online,H,8/10/2015,887674129,9/2/2015,1356,81.73,56.67,110825.88,76844.52,33981.36 Europe,Serbia,Cosmetics,Online,C,7/24/2012,491857755,8/4/2012,495,437.20,263.33,216414.00,130348.35,86065.65 Sub-Saharan Africa,Burundi,Cereal,Offline,H,7/2/2015,901957213,7/27/2015,8038,205.70,117.11,1653416.60,941330.18,712086.42 Middle East and North Africa,Jordan,Office Supplies,Offline,H,2/29/2012,638333833,4/5/2012,6021,651.21,524.96,3920935.41,3160784.16,760151.25 Sub-Saharan Africa,Tanzania,Vegetables,Online,H,4/16/2010,991661441,4/20/2010,3512,154.06,90.93,541058.72,319346.16,221712.56 Central America and the Caribbean,Costa Rica,Personal Care,Online,L,2/11/2011,172926366,2/14/2011,1609,81.73,56.67,131503.57,91182.03,40321.54 Europe,Latvia,Vegetables,Offline,C,2/21/2013,963427436,4/7/2013,8443,154.06,90.93,1300728.58,767721.99,533006.59 Europe,Moldova ,Cosmetics,Online,M,12/14/2015,364775979,12/16/2015,4173,437.20,263.33,1824435.60,1098876.09,725559.51 Asia,Tajikistan,Baby Food,Online,M,5/24/2016,848895823,7/3/2016,5993,255.28,159.42,1529893.04,955404.06,574488.98 Sub-Saharan Africa,Mauritania,Vegetables,Online,M,5/22/2012,908023297,6/24/2012,3127,154.06,90.93,481745.62,284338.11,197407.51 Middle East and North Africa,Somalia,Clothes,Offline,C,4/12/2014,904707229,5/29/2014,1828,109.28,35.84,199763.84,65515.52,134248.32 Asia,China,Snacks,Offline,L,10/1/2010,821808946,10/10/2010,384,152.58,97.44,58590.72,37416.96,21173.76 Middle East and North Africa,Iraq,Baby Food,Online,C,6/29/2010,712502276,8/4/2010,4112,255.28,159.42,1049711.36,655535.04,394176.32 Central America and the Caribbean,Haiti,Office Supplies,Offline,L,9/5/2015,250273549,9/11/2015,360,651.21,524.96,234435.60,188985.60,45450.00 Central America and the Caribbean,Honduras,Personal Care,Online,H,8/16/2010,978921592,9/24/2010,3508,81.73,56.67,286708.84,198798.36,87910.48 Europe,Italy,Meat,Online,M,12/29/2010,462557733,1/12/2011,9967,421.89,364.69,4204977.63,3634865.23,570112.40 Europe,Serbia,Office Supplies,Online,L,8/3/2014,835605800,8/4/2014,3180,651.21,524.96,2070847.80,1669372.80,401475.00 Europe,Ireland,Cosmetics,Online,M,9/12/2012,252802121,10/15/2012,8620,437.20,263.33,3768664.00,2269904.60,1498759.40 Australia and Oceania,Marshall Islands,Beverages,Online,C,8/12/2016,539195525,9/11/2016,8793,47.45,31.79,417227.85,279529.47,137698.38 Sub-Saharan Africa,Zambia,Office Supplies,Online,H,12/22/2015,440147340,1/17/2016,8234,651.21,524.96,5362063.14,4322520.64,1039542.50 Europe,Malta,Meat,Online,C,10/30/2012,571331393,12/13/2012,8510,421.89,364.69,3590283.90,3103511.90,486772.00 Europe,United Kingdom,Clothes,Offline,H,4/24/2010,268734014,5/13/2010,3221,109.28,35.84,351990.88,115440.64,236550.24 Central America and the Caribbean,Guatemala,Cereal,Online,C,5/24/2016,738654029,6/19/2016,2997,205.70,117.11,616482.90,350978.67,265504.23 Asia,Bhutan,Clothes,Online,H,5/27/2017,107702767,5/28/2017,497,109.28,35.84,54312.16,17812.48,36499.68 Europe,Macedonia,Meat,Offline,M,1/30/2012,172804057,2/20/2012,5415,421.89,364.69,2284534.35,1974796.35,309738.00 Europe,Monaco,Meat,Offline,L,5/20/2015,551194226,6/13/2015,9475,421.89,364.69,3997407.75,3455437.75,541970.00 Asia,Indonesia,Fruits,Offline,H,10/30/2016,930422103,12/6/2016,1431,9.33,6.92,13351.23,9902.52,3448.71 Asia,Myanmar,Snacks,Online,M,7/29/2014,618349015,9/17/2014,2070,152.58,97.44,315840.60,201700.80,114139.80 Sub-Saharan Africa,South Africa,Personal Care,Online,M,8/17/2011,793148791,9/28/2011,9208,81.73,56.67,752569.84,521817.36,230752.48 North America,Canada,Meat,Online,L,1/20/2012,453307759,1/24/2012,2694,421.89,364.69,1136571.66,982474.86,154096.80 Central America and the Caribbean,Haiti,Household,Offline,C,3/16/2017,467624747,4/3/2017,9409,668.27,502.54,6287752.43,4728398.86,1559353.57 Central America and the Caribbean,The Bahamas,Snacks,Offline,C,5/9/2014,425211083,6/5/2014,8264,152.58,97.44,1260921.12,805244.16,455676.96 Middle East and North Africa,Israel,Cereal,Online,C,10/5/2010,885490596,10/17/2010,5200,205.70,117.11,1069640.00,608972.00,460668.00 Middle East and North Africa,Oman,Baby Food,Online,L,10/5/2014,228199613,10/23/2014,8191,255.28,159.42,2090998.48,1305809.22,785189.26 Sub-Saharan Africa,Ghana,Meat,Online,H,10/24/2016,503386962,11/23/2016,2243,421.89,364.69,946299.27,817999.67,128299.60 Sub-Saharan Africa,Mauritius ,Beverages,Online,C,1/10/2016,681413972,2/22/2016,4392,47.45,31.79,208400.40,139621.68,68778.72 Sub-Saharan Africa,Guinea-Bissau,Cereal,Online,L,5/6/2016,702954471,6/16/2016,8704,205.70,117.11,1790412.80,1019325.44,771087.36 Sub-Saharan Africa,Uganda,Fruits,Online,L,3/22/2015,128994786,4/15/2015,1279,9.33,6.92,11933.07,8850.68,3082.39 Sub-Saharan Africa,Swaziland,Baby Food,Online,C,12/12/2014,390833747,1/9/2015,5246,255.28,159.42,1339198.88,836317.32,502881.56 Europe,Andorra,Office Supplies,Offline,H,4/24/2011,740082681,4/26/2011,5766,651.21,524.96,3754876.86,3026919.36,727957.50 Asia,Indonesia,Beverages,Offline,H,7/11/2012,498665416,8/16/2012,5033,47.45,31.79,238815.85,159999.07,78816.78 Australia and Oceania,Tuvalu,Meat,Offline,M,9/21/2012,408818280,10/20/2012,7269,421.89,364.69,3066718.41,2650931.61,415786.80 Europe,Kosovo,Office Supplies,Online,H,11/21/2010,383090102,12/13/2010,3729,651.21,524.96,2428362.09,1957575.84,470786.25 Europe,France,Office Supplies,Online,C,8/23/2014,854342210,9/9/2014,7700,651.21,524.96,5014317.00,4042192.00,972125.00 Europe,Ireland,Clothes,Online,C,9/26/2013,525748431,10/1/2013,9499,109.28,35.84,1038050.72,340444.16,697606.56 Sub-Saharan Africa,Swaziland,Beverages,Online,C,2/19/2014,420795094,4/2/2014,1474,47.45,31.79,69941.30,46858.46,23082.84 Sub-Saharan Africa,Burkina Faso,Beverages,Offline,H,7/6/2011,733281028,7/24/2011,3006,47.45,31.79,142634.70,95560.74,47073.96 Europe,Malta,Fruits,Offline,H,3/3/2010,377317559,4/14/2010,5505,9.33,6.92,51361.65,38094.60,13267.05 Middle East and North Africa,Morocco,Clothes,Offline,M,9/11/2011,137328517,9/16/2011,7415,109.28,35.84,810311.20,265753.60,544557.60 Asia,Bangladesh,Household,Online,L,3/4/2011,418050229,3/22/2011,9208,668.27,502.54,6153430.16,4627388.32,1526041.84 Middle East and North Africa,Algeria,Clothes,Online,M,2/5/2016,794531524,3/1/2016,8389,109.28,35.84,916749.92,300661.76,616088.16 Australia and Oceania,Australia,Cereal,Online,L,4/27/2012,462133729,6/2/2012,4495,205.70,117.11,924621.50,526409.45,398212.05 Australia and Oceania,Kiribati,Cosmetics,Online,M,4/7/2013,486530673,5/24/2013,4093,437.20,263.33,1789459.60,1077809.69,711649.91 Sub-Saharan Africa,Equatorial Guinea,Cereal,Offline,H,9/10/2010,653708684,9/28/2010,5781,205.70,117.11,1189151.70,677012.91,512138.79 Middle East and North Africa,Saudi Arabia,Cereal,Offline,M,5/13/2016,819966590,5/13/2016,5190,205.70,117.11,1067583.00,607800.90,459782.10 Middle East and North Africa,Somalia,Cosmetics,Offline,L,10/26/2012,461915719,10/31/2012,9981,437.20,263.33,4363693.20,2628296.73,1735396.47 Australia and Oceania,Palau,Vegetables,Online,H,3/1/2010,926479899,4/4/2010,4846,154.06,90.93,746574.76,440646.78,305927.98 Europe,Slovenia,Vegetables,Offline,L,12/28/2011,480895459,2/15/2012,6508,154.06,90.93,1002622.48,591772.44,410850.04 Europe,Croatia,Fruits,Online,C,8/10/2011,162711226,8/12/2011,8723,9.33,6.92,81385.59,60363.16,21022.43 Sub-Saharan Africa,Liberia,Household,Offline,H,12/15/2010,629788529,12/25/2010,7276,668.27,502.54,4862332.52,3656481.04,1205851.48 Sub-Saharan Africa,Central African Republic,Fruits,Offline,M,10/28/2016,810301196,11/24/2016,4985,9.33,6.92,46510.05,34496.20,12013.85 Sub-Saharan Africa,Cameroon,Household,Offline,M,5/10/2014,152735555,5/28/2014,6700,668.27,502.54,4477409.00,3367018.00,1110391.00 Sub-Saharan Africa,Malawi,Office Supplies,Online,H,4/4/2016,875890433,5/13/2016,4298,651.21,524.96,2798900.58,2256278.08,542622.50 Australia and Oceania,Solomon Islands,Clothes,Offline,M,8/2/2013,318877160,8/10/2013,1693,109.28,35.84,185011.04,60677.12,124333.92 North America,United States of America,Vegetables,Online,M,5/23/2017,391119563,6/25/2017,9825,154.06,90.93,1513639.50,893387.25,620252.25 Sub-Saharan Africa,Cote d'Ivoire,Cosmetics,Offline,H,1/28/2017,822353971,3/2/2017,1669,437.20,263.33,729686.80,439497.77,290189.03 Asia,Sri Lanka,Household,Offline,H,6/18/2014,512629210,7/4/2014,7230,668.27,502.54,4831592.10,3633364.20,1198227.90 Middle East and North Africa,Morocco,Snacks,Offline,H,6/7/2012,682306611,6/12/2012,8543,152.58,97.44,1303490.94,832429.92,471061.02 Australia and Oceania,Australia,Clothes,Online,H,2/28/2011,822060000,3/9/2011,4677,109.28,35.84,511102.56,167623.68,343478.88 Asia,Bangladesh,Fruits,Online,C,11/15/2011,942875707,11/16/2011,6729,9.33,6.92,62781.57,46564.68,16216.89 Central America and the Caribbean,Saint Lucia,Office Supplies,Online,C,1/30/2013,226052558,3/15/2013,2830,651.21,524.96,1842924.30,1485636.80,357287.50 Sub-Saharan Africa,Tanzania,Beverages,Online,M,5/12/2014,173201882,5/22/2014,3141,47.45,31.79,149040.45,99852.39,49188.06 Middle East and North Africa,Morocco,Personal Care,Online,L,7/24/2012,556247508,8/8/2012,4854,81.73,56.67,396717.42,275076.18,121641.24 Australia and Oceania,Kiribati,Baby Food,Offline,L,3/6/2013,767425763,4/8/2013,7192,255.28,159.42,1835973.76,1146548.64,689425.12 Sub-Saharan Africa,Malawi,Snacks,Online,M,5/29/2011,269285476,6/27/2011,6411,152.58,97.44,978190.38,624687.84,353502.54 Europe,Monaco,Office Supplies,Online,M,1/30/2011,844687974,3/3/2011,797,651.21,524.96,519014.37,418393.12,100621.25 Sub-Saharan Africa,Nigeria,Fruits,Online,C,4/25/2013,746807086,5/1/2013,5667,9.33,6.92,52873.11,39215.64,13657.47 Australia and Oceania,Fiji,Household,Offline,C,9/16/2012,549129140,10/19/2012,8370,668.27,502.54,5593419.90,4206259.80,1387160.10 Australia and Oceania,Vanuatu,Cereal,Offline,L,4/20/2016,895452964,5/20/2016,3286,205.70,117.11,675930.20,384823.46,291106.74 Middle East and North Africa,Qatar,Vegetables,Offline,H,1/12/2017,249889886,2/7/2017,6825,154.06,90.93,1051459.50,620597.25,430862.25 Middle East and North Africa,Libya,Beverages,Offline,C,9/15/2012,746863734,10/28/2012,2431,47.45,31.79,115350.95,77281.49,38069.46 Europe,Italy,Meat,Offline,H,5/2/2017,541110837,5/13/2017,5576,421.89,364.69,2352458.64,2033511.44,318947.20 Central America and the Caribbean,Panama,Vegetables,Offline,C,11/29/2011,557680022,12/2/2011,8766,154.06,90.93,1350489.96,797092.38,553397.58 Sub-Saharan Africa,Central African Republic,Cereal,Online,M,5/12/2016,441932618,5/14/2016,6537,205.70,117.11,1344660.90,765548.07,579112.83 Sub-Saharan Africa,Republic of the Congo,Household,Online,C,1/12/2010,809542453,2/12/2010,456,668.27,502.54,304731.12,229158.24,75572.88 Sub-Saharan Africa,Republic of the Congo,Clothes,Offline,L,3/11/2011,996495854,4/4/2011,4123,109.28,35.84,450561.44,147768.32,302793.12 Asia,Tajikistan,Beverages,Online,L,8/31/2012,409091651,9/7/2012,8165,47.45,31.79,387429.25,259565.35,127863.90 Middle East and North Africa,Somalia,Snacks,Offline,L,12/6/2015,773941171,12/23/2015,5246,152.58,97.44,800434.68,511170.24,289264.44 Sub-Saharan Africa,Guinea-Bissau,Beverages,Offline,L,2/25/2012,287968242,3/25/2012,5057,47.45,31.79,239954.65,160762.03,79192.62 Europe,Cyprus,Meat,Offline,H,4/15/2016,368409192,5/16/2016,9322,421.89,364.69,3932858.58,3399640.18,533218.40 Sub-Saharan Africa,Seychelles ,Cereal,Online,L,4/16/2010,702812850,4/16/2010,6795,205.70,117.11,1397731.50,795762.45,601969.05 Middle East and North Africa,United Arab Emirates,Clothes,Offline,M,1/9/2015,599040544,2/7/2015,8264,109.28,35.84,903089.92,296181.76,606908.16 Sub-Saharan Africa,Madagascar,Clothes,Offline,H,10/12/2010,335266101,11/26/2010,1544,109.28,35.84,168728.32,55336.96,113391.36 Central America and the Caribbean,Haiti,Cereal,Offline,M,10/10/2016,709975850,11/17/2016,6486,205.70,117.11,1334170.20,759575.46,574594.74 Middle East and North Africa,United Arab Emirates,Beverages,Offline,M,8/23/2011,791968619,10/3/2011,9969,47.45,31.79,473029.05,316914.51,156114.54 Middle East and North Africa,Egypt,Baby Food,Online,H,12/8/2012,170355737,1/23/2013,903,255.28,159.42,230517.84,143956.26,86561.58 Middle East and North Africa,Iran,Office Supplies,Online,C,10/13/2012,304561030,11/18/2012,5232,651.21,524.96,3407130.72,2746590.72,660540.00 Australia and Oceania,Tuvalu,Household,Online,L,12/10/2011,474320828,12/14/2011,928,668.27,502.54,620154.56,466357.12,153797.44 Sub-Saharan Africa,Cote d'Ivoire,Household,Online,H,1/5/2016,929683959,2/9/2016,2998,668.27,502.54,2003473.46,1506614.92,496858.54 Europe,Iceland,Baby Food,Online,L,7/13/2016,641011750,8/8/2016,8476,255.28,159.42,2163753.28,1351243.92,812509.36 Europe,Denmark,Cereal,Online,M,6/14/2017,448978030,6/24/2017,1431,205.70,117.11,294356.70,167584.41,126772.29 Sub-Saharan Africa,Sierra Leone,Meat,Online,M,3/20/2016,814569127,4/26/2016,7961,421.89,364.69,3358666.29,2903297.09,455369.20 Sub-Saharan Africa,Benin,Household,Online,L,2/14/2015,469083869,3/28/2015,1196,668.27,502.54,799250.92,601037.84,198213.08 Europe,Andorra,Clothes,Offline,H,7/11/2017,464133584,8/5/2017,6296,109.28,35.84,688026.88,225648.64,462378.24 Central America and the Caribbean,Trinidad and Tobago,Cosmetics,Online,C,7/2/2016,121642100,7/27/2016,5455,437.20,263.33,2384926.00,1436465.15,948460.85 Central America and the Caribbean,Saint Lucia,Snacks,Offline,M,10/1/2013,183845746,11/14/2013,2897,152.58,97.44,442024.26,282283.68,159740.58 Europe,Serbia,Baby Food,Online,M,10/30/2015,563293349,11/17/2015,9875,255.28,159.42,2520890.00,1574272.50,946617.50 Europe,Armenia,Personal Care,Offline,M,3/18/2015,792846238,3/21/2015,9676,81.73,56.67,790819.48,548338.92,242480.56 Central America and the Caribbean,Belize,Household,Online,L,10/17/2016,475678241,11/26/2016,2617,668.27,502.54,1748862.59,1315147.18,433715.41 Sub-Saharan Africa,Equatorial Guinea,Clothes,Offline,C,5/28/2011,635275685,6/29/2011,1047,109.28,35.84,114416.16,37524.48,76891.68 Central America and the Caribbean,Dominica,Baby Food,Offline,H,6/4/2017,565437400,6/27/2017,4347,255.28,159.42,1109702.16,692998.74,416703.42 Sub-Saharan Africa,Malawi,Clothes,Online,M,6/11/2016,980274713,6/29/2016,3926,109.28,35.84,429033.28,140707.84,288325.44 Europe,Romania,Snacks,Online,H,1/19/2010,864211452,1/30/2010,8228,152.58,97.44,1255428.24,801736.32,453691.92 North America,Greenland,Household,Offline,C,1/16/2016,621983945,1/27/2016,7726,668.27,502.54,5163054.02,3882624.04,1280429.98 Europe,Ireland,Clothes,Offline,C,8/17/2011,728641021,8/30/2011,9925,109.28,35.84,1084604.00,355712.00,728892.00 Middle East and North Africa,Somalia,Office Supplies,Online,L,12/12/2012,379544007,1/7/2013,4361,651.21,524.96,2839926.81,2289350.56,550576.25 Sub-Saharan Africa,The Gambia,Baby Food,Offline,C,9/14/2010,640366733,11/1/2010,7601,255.28,159.42,1940383.28,1211751.42,728631.86 Europe,Portugal,Household,Offline,H,10/22/2011,397095525,11/29/2011,8245,668.27,502.54,5509886.15,4143442.30,1366443.85 Europe,Albania,Personal Care,Online,C,11/14/2012,406029212,12/31/2012,1922,81.73,56.67,157085.06,108919.74,48165.32 Asia,Bangladesh,Clothes,Online,C,8/1/2011,143779122,9/6/2011,6292,109.28,35.84,687589.76,225505.28,462084.48 Sub-Saharan Africa,Senegal,Vegetables,Offline,C,6/21/2010,957269084,6/26/2010,6049,154.06,90.93,931908.94,550035.57,381873.37 Sub-Saharan Africa,Zimbabwe,Beverages,Online,H,2/18/2013,213735425,3/10/2013,7917,47.45,31.79,375661.65,251681.43,123980.22 Sub-Saharan Africa,Botswana,Household,Online,C,11/16/2012,750726974,12/17/2012,5649,668.27,502.54,3775057.23,2838848.46,936208.77 Europe,Spain,Cereal,Offline,C,8/22/2011,526105058,8/26/2011,5033,205.70,117.11,1035288.10,589414.63,445873.47 Middle East and North Africa,Algeria,Baby Food,Offline,C,3/19/2016,268043506,5/2/2016,8885,255.28,159.42,2268162.80,1416446.70,851716.10 Europe,Belgium,Snacks,Online,L,9/29/2011,325028645,10/14/2011,2054,152.58,97.44,313399.32,200141.76,113257.56 Australia and Oceania,Solomon Islands,Fruits,Online,H,12/6/2010,215859305,12/31/2010,6420,9.33,6.92,59898.60,44426.40,15472.20 Asia,Thailand,Personal Care,Online,H,5/29/2012,879646813,7/9/2012,5895,81.73,56.67,481798.35,334069.65,147728.70 Asia,Malaysia,Fruits,Online,H,1/30/2012,625814998,2/19/2012,1420,9.33,6.92,13248.60,9826.40,3422.20 Asia,India,Office Supplies,Online,L,6/29/2014,984100186,7/31/2014,5969,651.21,524.96,3887072.49,3133486.24,753586.25 Central America and the Caribbean,Grenada,Meat,Online,L,11/23/2013,854551208,12/29/2013,9547,421.89,364.69,4027783.83,3481695.43,546088.40 Europe,Belgium,Office Supplies,Offline,M,3/6/2013,557529389,3/8/2013,4191,651.21,524.96,2729221.11,2200107.36,529113.75 Asia,Bhutan,Vegetables,Online,L,7/3/2012,483708560,8/15/2012,8967,154.06,90.93,1381456.02,815369.31,566086.71 Europe,Spain,Cereal,Offline,H,2/7/2013,644075047,3/7/2013,4974,205.70,117.11,1023151.80,582505.14,440646.66 Australia and Oceania,Nauru,Household,Online,M,6/29/2013,219927680,7/20/2013,343,668.27,502.54,229216.61,172371.22,56845.39 Europe,Malta,Snacks,Online,C,3/29/2013,712877786,5/16/2013,5233,152.58,97.44,798451.14,509903.52,288547.62 Europe,Greece,Office Supplies,Offline,H,10/10/2016,994849193,10/28/2016,6839,651.21,524.96,4453625.19,3590201.44,863423.75 Asia,Tajikistan,Beverages,Online,M,6/10/2014,458078229,6/21/2014,4382,47.45,31.79,207925.90,139303.78,68622.12 Europe,Moldova ,Baby Food,Offline,M,7/31/2016,365113723,9/9/2016,4119,255.28,159.42,1051498.32,656650.98,394847.34 Sub-Saharan Africa,Togo,Cosmetics,Offline,M,11/19/2011,698817002,12/22/2011,4335,437.20,263.33,1895262.00,1141535.55,753726.45 Central America and the Caribbean,The Bahamas,Clothes,Online,H,8/10/2016,612361896,8/15/2016,348,109.28,35.84,38029.44,12472.32,25557.12 Europe,Bosnia and Herzegovina,Cosmetics,Online,M,3/20/2010,679234731,4/27/2010,9506,437.20,263.33,4156023.20,2503214.98,1652808.22 Europe,Montenegro,Clothes,Offline,M,11/17/2014,643234336,1/5/2015,6189,109.28,35.84,676333.92,221813.76,454520.16 Asia,Vietnam,Office Supplies,Online,H,12/22/2015,768472039,1/7/2016,6808,651.21,524.96,4433437.68,3573927.68,859510.00 Australia and Oceania,Tuvalu,Personal Care,Online,M,4/20/2011,489371669,5/2/2011,4807,81.73,56.67,392876.11,272412.69,120463.42 Europe,Poland,Cereal,Online,C,11/13/2014,660669553,12/1/2014,5657,205.70,117.11,1163644.90,662491.27,501153.63 Europe,Kosovo,Baby Food,Offline,H,4/2/2015,407414519,4/6/2015,1865,255.28,159.42,476097.20,297318.30,178778.90 North America,United States of America,Baby Food,Offline,H,3/23/2017,274967896,3/29/2017,7966,255.28,159.42,2033560.48,1269939.72,763620.76 Asia,Laos,Cereal,Online,C,4/13/2015,879003512,5/29/2015,5528,205.70,117.11,1137109.60,647384.08,489725.52 Australia and Oceania,Samoa ,Snacks,Online,H,7/16/2012,655507695,7/24/2012,8149,152.58,97.44,1243374.42,794038.56,449335.86 Sub-Saharan Africa,Cape Verde,Baby Food,Online,C,12/25/2016,810779273,1/11/2017,6459,255.28,159.42,1648853.52,1029693.78,619159.74 North America,Canada,Baby Food,Online,M,12/5/2014,371429574,12/15/2014,3120,255.28,159.42,796473.60,497390.40,299083.20 Middle East and North Africa,Kuwait,Meat,Offline,C,9/11/2012,234382426,9/25/2012,7823,421.89,364.69,3300445.47,2852969.87,447475.60 Europe,Albania,Household,Offline,M,2/5/2010,916874158,2/21/2010,2293,668.27,502.54,1532343.11,1152324.22,380018.89 Sub-Saharan Africa,Ethiopia,Cereal,Online,M,10/18/2011,306453597,12/1/2011,5284,205.70,117.11,1086918.80,618809.24,468109.56 Europe,Spain,Clothes,Offline,C,12/12/2015,410982072,1/18/2016,7583,109.28,35.84,828670.24,271774.72,556895.52 Sub-Saharan Africa,Kenya,Baby Food,Offline,M,5/29/2010,608633410,6/23/2010,7006,255.28,159.42,1788491.68,1116896.52,671595.16 Sub-Saharan Africa,Gabon,Snacks,Online,H,5/26/2014,797893941,7/15/2014,3403,152.58,97.44,519229.74,331588.32,187641.42 Australia and Oceania,Palau,Vegetables,Offline,C,2/14/2014,947562491,3/28/2014,3653,154.06,90.93,562781.18,332167.29,230613.89 Sub-Saharan Africa,Rwanda,Office Supplies,Offline,L,12/30/2011,646750390,2/12/2012,6667,651.21,524.96,4341617.07,3499908.32,841708.75 Middle East and North Africa,Qatar,Beverages,Offline,H,4/13/2015,454881465,5/20/2015,8389,47.45,31.79,398058.05,266686.31,131371.74 Sub-Saharan Africa,Namibia,Meat,Offline,C,3/1/2017,551692044,3/19/2017,6791,421.89,364.69,2865054.99,2476609.79,388445.20 Sub-Saharan Africa,Ethiopia,Cereal,Online,H,9/8/2015,287230956,9/27/2015,6878,205.70,117.11,1414804.60,805482.58,609322.02 Australia and Oceania,Tuvalu,Cosmetics,Offline,L,7/7/2017,431859529,8/13/2017,5686,437.20,263.33,2485919.20,1497294.38,988624.82 Australia and Oceania,Federated States of Micronesia,Vegetables,Offline,M,6/17/2011,926251590,6/24/2011,7284,154.06,90.93,1122173.04,662334.12,459838.92 Sub-Saharan Africa,Tanzania,Beverages,Online,M,2/10/2010,431393468,3/9/2010,7769,47.45,31.79,368639.05,246976.51,121662.54 Europe,Sweden,Meat,Online,C,10/8/2015,378583991,11/11/2015,271,421.89,364.69,114332.19,98830.99,15501.20 Europe,Estonia,Fruits,Offline,H,8/23/2016,919434487,9/18/2016,9952,9.33,6.92,92852.16,68867.84,23984.32 Europe,Finland,Meat,Online,H,5/18/2013,475868785,6/30/2013,9003,421.89,364.69,3798275.67,3283304.07,514971.60 Europe,Greece,Vegetables,Online,L,4/1/2015,690123212,5/7/2015,1649,154.06,90.93,254044.94,149943.57,104101.37 Central America and the Caribbean,Saint Kitts and Nevis ,Snacks,Offline,C,8/31/2013,574746596,10/13/2013,9145,152.58,97.44,1395344.10,891088.80,504255.30 Europe,Armenia,Beverages,Online,C,4/1/2016,562600266,4/19/2016,4776,47.45,31.79,226621.20,151829.04,74792.16 Sub-Saharan Africa,Mauritius ,Clothes,Online,L,10/3/2012,256858050,10/6/2012,8860,109.28,35.84,968220.80,317542.40,650678.40 Central America and the Caribbean,Saint Lucia,Snacks,Online,H,9/19/2016,681006276,9/20/2016,3745,152.58,97.44,571412.10,364912.80,206499.30 Central America and the Caribbean,The Bahamas,Fruits,Offline,L,3/28/2016,228843772,4/2/2016,8812,9.33,6.92,82215.96,60979.04,21236.92 Middle East and North Africa,Syria,Office Supplies,Online,M,8/15/2015,514481866,9/6/2015,5472,651.21,524.96,3563421.12,2872581.12,690840.00 Sub-Saharan Africa,Lesotho,Cosmetics,Online,M,6/14/2016,522344386,7/29/2016,2166,437.20,263.33,946975.20,570372.78,376602.42 Asia,Uzbekistan,Snacks,Online,M,10/24/2013,657167661,11/25/2013,9369,152.58,97.44,1429522.02,912915.36,516606.66 Sub-Saharan Africa,Botswana,Baby Food,Online,C,3/16/2015,494000518,4/14/2015,4586,255.28,159.42,1170714.08,731100.12,439613.96 Central America and the Caribbean,Jamaica,Beverages,Offline,H,1/17/2014,128204286,3/3/2014,7352,47.45,31.79,348852.40,233720.08,115132.32 Central America and the Caribbean,Saint Lucia,Baby Food,Offline,C,3/10/2016,625452792,4/5/2016,4235,255.28,159.42,1081110.80,675143.70,405967.10 Middle East and North Africa,Turkey,Vegetables,Offline,L,5/24/2013,871732366,6/28/2013,3834,154.06,90.93,590666.04,348625.62,242040.42 Europe,Ireland,Fruits,Online,C,6/4/2017,723341834,6/24/2017,1778,9.33,6.92,16588.74,12303.76,4284.98 Sub-Saharan Africa,Namibia,Personal Care,Offline,M,10/26/2010,556892526,12/8/2010,5729,81.73,56.67,468231.17,324662.43,143568.74 Sub-Saharan Africa,Malawi,Meat,Online,C,4/2/2011,819308269,4/6/2011,378,421.89,364.69,159474.42,137852.82,21621.60 Europe,Latvia,Clothes,Offline,C,10/2/2014,677825391,10/21/2014,2451,109.28,35.84,267845.28,87843.84,180001.44 Asia,Nepal,Fruits,Online,M,8/14/2014,269992721,9/21/2014,5701,9.33,6.92,53190.33,39450.92,13739.41 Middle East and North Africa,United Arab Emirates,Clothes,Offline,H,10/18/2012,253671586,11/14/2012,5914,109.28,35.84,646281.92,211957.76,434324.16 Sub-Saharan Africa,Botswana,Snacks,Offline,L,1/30/2016,457035815,3/9/2016,5909,152.58,97.44,901595.22,575772.96,325822.26 Australia and Oceania,Samoa ,Cosmetics,Online,H,3/5/2017,328571736,4/16/2017,533,437.20,263.33,233027.60,140354.89,92672.71 Middle East and North Africa,Oman,Vegetables,Online,L,8/25/2013,287078177,10/4/2013,1667,154.06,90.93,256818.02,151580.31,105237.71 Europe,Denmark,Meat,Online,M,9/14/2011,371666467,9/16/2011,3222,421.89,364.69,1359329.58,1175031.18,184298.40 Central America and the Caribbean,Trinidad and Tobago,Vegetables,Offline,H,10/25/2014,691760432,11/30/2014,6139,154.06,90.93,945774.34,558219.27,387555.07 Europe,Kosovo,Beverages,Offline,M,5/20/2012,977096402,5/30/2012,3394,47.45,31.79,161045.30,107895.26,53150.04 Middle East and North Africa,Azerbaijan,Meat,Online,M,10/21/2013,127723205,11/24/2013,4989,421.89,364.69,2104809.21,1819438.41,285370.80 Europe,Norway,Cosmetics,Online,H,5/25/2014,264002168,6/22/2014,2963,437.20,263.33,1295423.60,780246.79,515176.81 Middle East and North Africa,Algeria,Cereal,Offline,H,4/27/2014,876607120,4/30/2014,6382,205.70,117.11,1312777.40,747396.02,565381.38 Asia,South Korea,Cereal,Offline,C,10/23/2014,176524388,11/25/2014,6344,205.70,117.11,1304960.80,742945.84,562014.96 Europe,Cyprus,Cosmetics,Online,H,5/18/2014,945052802,6/14/2014,980,437.20,263.33,428456.00,258063.40,170392.60 Asia,Brunei,Baby Food,Offline,L,8/5/2012,183803689,8/17/2012,451,255.28,159.42,115131.28,71898.42,43232.86 Central America and the Caribbean,Cuba,Office Supplies,Offline,H,11/20/2013,364700877,1/9/2014,1949,651.21,524.96,1269208.29,1023147.04,246061.25 Europe,Hungary,Baby Food,Offline,M,3/5/2016,879980695,3/22/2016,4698,255.28,159.42,1199305.44,748955.16,450350.28 Asia,Taiwan,Office Supplies,Offline,M,8/28/2014,292191970,9/25/2014,4952,651.21,524.96,3224791.92,2599601.92,625190.00 Europe,Monaco,Cereal,Online,C,2/28/2013,384196031,3/11/2013,998,205.70,117.11,205288.60,116875.78,88412.82 Europe,Finland,Meat,Online,L,10/21/2012,309166705,11/23/2012,8153,421.89,364.69,3439669.17,2973317.57,466351.60 Sub-Saharan Africa,Ethiopia,Snacks,Online,H,10/8/2015,640590322,10/29/2015,3766,152.58,97.44,574616.28,366959.04,207657.24 Australia and Oceania,Marshall Islands,Personal Care,Online,L,12/6/2013,222265708,1/20/2014,2217,81.73,56.67,181195.41,125637.39,55558.02 Asia,Taiwan,Household,Online,L,5/22/2015,218304193,6/26/2015,9917,668.27,502.54,6627233.59,4983689.18,1643544.41 Sub-Saharan Africa,Nigeria,Meat,Offline,H,5/14/2010,963129603,5/23/2010,307,421.89,364.69,129520.23,111959.83,17560.40 Central America and the Caribbean,Dominica,Snacks,Online,H,11/16/2012,611478269,11/18/2012,8863,152.58,97.44,1352316.54,863610.72,488705.82 Middle East and North Africa,Morocco,Clothes,Online,L,6/28/2011,988399016,8/2/2011,8088,109.28,35.84,883856.64,289873.92,593982.72 Europe,Romania,Cereal,Online,H,12/27/2010,839253175,2/4/2011,2519,205.70,117.11,518158.30,295000.09,223158.21 Europe,Serbia,Household,Online,M,6/6/2013,779714572,7/15/2013,3724,668.27,502.54,2488637.48,1871458.96,617178.52 Europe,Belgium,Cosmetics,Online,H,5/13/2014,145769536,6/1/2014,5300,437.20,263.33,2317160.00,1395649.00,921511.00 Europe,Denmark,Fruits,Online,L,3/14/2014,143716895,3/19/2014,7878,9.33,6.92,73501.74,54515.76,18985.98 Sub-Saharan Africa,Swaziland,Office Supplies,Offline,M,5/26/2014,700167977,6/28/2014,4119,651.21,524.96,2682333.99,2162310.24,520023.75 Sub-Saharan Africa,Burkina Faso,Fruits,Online,L,9/17/2013,912046611,10/15/2013,3715,9.33,6.92,34660.95,25707.80,8953.15 Europe,Austria,Cereal,Offline,L,12/14/2011,396589124,1/12/2012,8390,205.70,117.11,1725823.00,982552.90,743270.10 Sub-Saharan Africa,Central African Republic,Fruits,Offline,M,10/10/2013,641344344,10/24/2013,6898,9.33,6.92,64358.34,47734.16,16624.18 Sub-Saharan Africa,Madagascar,Baby Food,Offline,L,5/4/2017,954173600,5/27/2017,27,255.28,159.42,6892.56,4304.34,2588.22 Sub-Saharan Africa,Namibia,Meat,Online,C,7/5/2010,713250720,8/9/2010,5593,421.89,364.69,2359630.77,2039711.17,319919.60 Australia and Oceania,New Zealand,Snacks,Online,M,6/30/2012,717062032,8/9/2012,3445,152.58,97.44,525638.10,335680.80,189957.30 Sub-Saharan Africa,Djibouti,Baby Food,Offline,C,1/29/2017,934406363,2/18/2017,462,255.28,159.42,117939.36,73652.04,44287.32 Central America and the Caribbean,Dominica,Beverages,Online,M,7/12/2011,954395043,7/30/2011,5557,47.45,31.79,263679.65,176657.03,87022.62 Europe,Finland,Personal Care,Offline,C,9/5/2010,436451900,9/21/2010,4671,81.73,56.67,381760.83,264705.57,117055.26 Sub-Saharan Africa,Democratic Republic of the Congo,Personal Care,Offline,M,4/17/2015,460313260,4/26/2015,5778,81.73,56.67,472235.94,327439.26,144796.68 Sub-Saharan Africa,Niger,Clothes,Online,L,10/31/2015,376027953,12/1/2015,3882,109.28,35.84,424224.96,139130.88,285094.08 Sub-Saharan Africa,Botswana,Personal Care,Online,H,5/25/2011,953957307,6/20/2011,6021,81.73,56.67,492096.33,341210.07,150886.26 Central America and the Caribbean,Nicaragua,Household,Offline,C,7/6/2013,334775149,8/7/2013,6261,668.27,502.54,4184038.47,3146402.94,1037635.53 Australia and Oceania,Solomon Islands,Personal Care,Online,L,1/21/2012,779467809,3/7/2012,701,81.73,56.67,57292.73,39725.67,17567.06 Europe,Lithuania,Personal Care,Online,H,11/21/2016,119334113,11/24/2016,2471,81.73,56.67,201954.83,140031.57,61923.26 Europe,Poland,Baby Food,Offline,L,3/27/2016,305985391,3/31/2016,6732,255.28,159.42,1718544.96,1073215.44,645329.52 Asia,Myanmar,Cereal,Online,L,9/23/2010,661345469,11/1/2010,5676,205.70,117.11,1167553.20,664716.36,502836.84 Asia,Vietnam,Baby Food,Offline,M,3/22/2017,127650678,3/27/2017,3527,255.28,159.42,900372.56,562274.34,338098.22 Sub-Saharan Africa,Senegal,Snacks,Offline,C,12/23/2011,417449843,2/7/2012,1540,152.58,97.44,234973.20,150057.60,84915.60 Europe,France,Meat,Offline,H,3/11/2010,163604295,3/22/2010,3001,421.89,364.69,1266091.89,1094434.69,171657.20 Asia,Turkmenistan,Baby Food,Online,C,10/5/2016,769287860,11/19/2016,8228,255.28,159.42,2100443.84,1311707.76,788736.08 Central America and the Caribbean,Haiti,Cereal,Online,L,12/7/2014,557986867,1/25/2015,9568,205.70,117.11,1968137.60,1120508.48,847629.12 Central America and the Caribbean,Dominican Republic,Household,Online,M,7/12/2015,623500144,7/28/2015,6403,668.27,502.54,4278932.81,3217763.62,1061169.19 Sub-Saharan Africa,Ethiopia,Fruits,Offline,M,4/9/2015,779939019,4/13/2015,143,9.33,6.92,1334.19,989.56,344.63 Middle East and North Africa,Bahrain,Household,Offline,C,10/3/2015,911727321,10/9/2015,9230,668.27,502.54,6168132.10,4638444.20,1529687.90 Sub-Saharan Africa,Malawi,Cosmetics,Online,H,1/22/2012,523601377,2/22/2012,4138,437.20,263.33,1809133.60,1089659.54,719474.06 Asia,Cambodia,Vegetables,Online,H,9/6/2011,990610015,9/28/2011,2372,154.06,90.93,365430.32,215685.96,149744.36 Asia,Malaysia,Personal Care,Offline,L,8/15/2015,608114564,9/25/2015,3468,81.73,56.67,283439.64,196531.56,86908.08 Central America and the Caribbean,Dominican Republic,Cosmetics,Online,C,7/29/2014,441788852,9/1/2014,3994,437.20,263.33,1746176.80,1051740.02,694436.78 Asia,Sri Lanka,Fruits,Online,H,6/15/2015,277619206,6/25/2015,2547,9.33,6.92,23763.51,17625.24,6138.27 North America,United States of America,Cereal,Offline,H,11/17/2014,871904456,12/9/2014,4759,205.70,117.11,978926.30,557326.49,421599.81 Sub-Saharan Africa,Republic of the Congo,Personal Care,Online,H,7/12/2010,801255929,8/10/2010,8290,81.73,56.67,677541.70,469794.30,207747.40 Sub-Saharan Africa,Mauritius ,Beverages,Online,M,7/4/2012,512597453,8/6/2012,7832,47.45,31.79,371628.40,248979.28,122649.12 Australia and Oceania,Marshall Islands,Clothes,Offline,C,11/3/2016,973165357,12/20/2016,110,109.28,35.84,12020.80,3942.40,8078.40 Central America and the Caribbean,Costa Rica,Cereal,Offline,H,11/1/2016,520508468,11/24/2016,8877,205.70,117.11,1825998.90,1039585.47,786413.43 Asia,Myanmar,Personal Care,Online,M,6/6/2014,712488114,7/3/2014,9921,81.73,56.67,810843.33,562223.07,248620.26 Middle East and North Africa,Tunisia ,Beverages,Offline,L,6/1/2016,477278125,6/13/2016,6058,47.45,31.79,287452.10,192583.82,94868.28 Sub-Saharan Africa,Comoros,Clothes,Offline,C,7/5/2015,163364827,8/20/2015,2138,109.28,35.84,233640.64,76625.92,157014.72 Europe,Ukraine,Personal Care,Offline,H,11/3/2016,189547049,12/6/2016,39,81.73,56.67,3187.47,2210.13,977.34 Central America and the Caribbean,Grenada,Household,Offline,L,6/21/2011,594936120,8/2/2011,3674,668.27,502.54,2455223.98,1846331.96,608892.02 Europe,Belgium,Personal Care,Online,M,6/13/2010,588955867,7/13/2010,3984,81.73,56.67,325612.32,225773.28,99839.04 Sub-Saharan Africa,Mauritius ,Meat,Offline,L,9/30/2010,801342618,10/16/2010,3943,421.89,364.69,1663512.27,1437972.67,225539.60 Sub-Saharan Africa,Guinea-Bissau,Clothes,Offline,L,3/10/2014,132145202,3/19/2014,3557,109.28,35.84,388708.96,127482.88,261226.08 Sub-Saharan Africa,Angola,Cosmetics,Online,H,2/1/2016,701724946,3/4/2016,4860,437.20,263.33,2124792.00,1279783.80,845008.20 Europe,Hungary,Cereal,Offline,H,8/11/2016,200755679,9/23/2016,6922,205.70,117.11,1423855.40,810635.42,613219.98 Sub-Saharan Africa,Botswana,Vegetables,Offline,C,12/27/2016,440223729,1/11/2017,839,154.06,90.93,129256.34,76290.27,52966.07 Sub-Saharan Africa,Gabon,Snacks,Online,H,9/26/2015,601427924,10/7/2015,4743,152.58,97.44,723686.94,462157.92,261529.02 Sub-Saharan Africa,Benin,Fruits,Offline,C,6/3/2012,385979592,6/7/2012,8794,9.33,6.92,82048.02,60854.48,21193.54 Sub-Saharan Africa,Seychelles ,Personal Care,Online,M,6/23/2011,465802562,7/2/2011,184,81.73,56.67,15038.32,10427.28,4611.04 Sub-Saharan Africa,Burundi,Fruits,Online,L,10/24/2010,233133161,10/25/2010,8138,9.33,6.92,75927.54,56314.96,19612.58 Sub-Saharan Africa,Seychelles ,Baby Food,Offline,C,3/15/2013,950520217,4/30/2013,8910,255.28,159.42,2274544.80,1420432.20,854112.60 Asia,India,Cosmetics,Offline,L,11/29/2014,800825059,12/17/2014,786,437.20,263.33,343639.20,206977.38,136661.82 Middle East and North Africa,Israel,Vegetables,Offline,L,1/18/2017,737221515,2/25/2017,9084,154.06,90.93,1399481.04,826008.12,573472.92 Middle East and North Africa,Tunisia ,Household,Offline,M,3/21/2014,433195912,4/22/2014,1152,668.27,502.54,769847.04,578926.08,190920.96 Europe,Switzerland,Personal Care,Online,H,6/15/2013,532547080,7/5/2013,1370,81.73,56.67,111970.10,77637.90,34332.20 Middle East and North Africa,Afghanistan,Cosmetics,Online,M,4/10/2015,399386346,5/11/2015,6150,437.20,263.33,2688780.00,1619479.50,1069300.50 Sub-Saharan Africa,Gabon,Personal Care,Offline,M,6/23/2017,368137538,7/29/2017,8933,81.73,56.67,730094.09,506233.11,223860.98 Sub-Saharan Africa,Kenya,Clothes,Online,L,5/11/2011,393536984,5/26/2011,5194,109.28,35.84,567600.32,186152.96,381447.36 Asia,Nepal,Clothes,Online,L,10/11/2015,500633513,11/23/2015,7437,109.28,35.84,812715.36,266542.08,546173.28 Europe,Montenegro,Vegetables,Online,L,10/18/2012,334788453,12/7/2012,198,154.06,90.93,30503.88,18004.14,12499.74 Australia and Oceania,New Zealand,Meat,Offline,M,1/19/2012,511675631,1/29/2012,5045,421.89,364.69,2128435.05,1839861.05,288574.00 Sub-Saharan Africa,Burundi,Household,Offline,L,8/30/2016,367281377,9/8/2016,5576,668.27,502.54,3726273.52,2802163.04,924110.48 Asia,India,Household,Online,M,11/21/2011,207904517,12/12/2011,2422,668.27,502.54,1618549.94,1217151.88,401398.06 Europe,Bosnia and Herzegovina,Cereal,Online,C,5/6/2014,860156381,6/8/2014,8242,205.70,117.11,1695379.40,965220.62,730158.78 Middle East and North Africa,Pakistan,Fruits,Offline,L,3/16/2015,520960795,4/4/2015,2731,9.33,6.92,25480.23,18898.52,6581.71 Europe,Greece,Household,Offline,M,4/12/2014,607554090,5/3/2014,7611,668.27,502.54,5086202.97,3824831.94,1261371.03 Sub-Saharan Africa,Republic of the Congo,Household,Offline,L,3/24/2016,807485091,4/6/2016,1637,668.27,502.54,1093957.99,822657.98,271300.01 Middle East and North Africa,Algeria,Office Supplies,Offline,L,8/21/2011,428615128,9/28/2011,5596,651.21,524.96,3644171.16,2937676.16,706495.00 Australia and Oceania,Kiribati,Cosmetics,Online,M,1/31/2011,649118030,2/22/2011,7305,437.20,263.33,3193746.00,1923625.65,1270120.35 Middle East and North Africa,Qatar,Baby Food,Offline,C,1/25/2011,467480123,2/2/2011,6612,255.28,159.42,1687911.36,1054085.04,633826.32 Central America and the Caribbean,Barbados,Snacks,Online,H,12/7/2012,752500236,1/3/2013,397,152.58,97.44,60574.26,38683.68,21890.58 Europe,Italy,Household,Offline,M,7/14/2011,193289697,8/5/2011,7571,668.27,502.54,5059472.17,3804730.34,1254741.83 Europe,United Kingdom,Office Supplies,Online,L,2/14/2014,249272334,3/10/2014,4078,651.21,524.96,2655634.38,2140786.88,514847.50 Sub-Saharan Africa,Burundi,Clothes,Online,H,11/22/2013,200184476,12/21/2013,7890,109.28,35.84,862219.20,282777.60,579441.60 Australia and Oceania,Solomon Islands,Meat,Offline,M,6/13/2016,296074950,7/3/2016,4012,421.89,364.69,1692622.68,1463136.28,229486.40 Europe,Luxembourg,Cereal,Offline,L,4/28/2013,407305085,6/12/2013,9481,205.70,117.11,1950241.70,1110319.91,839921.79 Europe,Hungary,Fruits,Offline,M,1/15/2016,474548709,2/20/2016,8363,9.33,6.92,78026.79,57871.96,20154.83 Asia,Turkmenistan,Vegetables,Offline,M,6/21/2014,958792150,8/2/2014,6758,154.06,90.93,1041137.48,614504.94,426632.54 Europe,Hungary,Snacks,Offline,C,11/30/2010,591334235,12/1/2010,7796,152.58,97.44,1189513.68,759642.24,429871.44 Central America and the Caribbean,Saint Kitts and Nevis ,Beverages,Online,M,4/19/2016,423786294,5/1/2016,6637,47.45,31.79,314925.65,210990.23,103935.42 Sub-Saharan Africa,Togo,Beverages,Offline,L,2/15/2016,678072154,2/27/2016,5473,47.45,31.79,259693.85,173986.67,85707.18 Australia and Oceania,Tonga,Snacks,Online,M,2/4/2012,296428143,2/8/2012,8530,152.58,97.44,1301507.40,831163.20,470344.20 Asia,Uzbekistan,Baby Food,Online,C,10/5/2010,991403090,11/1/2010,7060,255.28,159.42,1802276.80,1125505.20,676771.60 Europe,Russia,Cosmetics,Offline,M,3/6/2012,495858323,4/8/2012,4352,437.20,263.33,1902694.40,1146012.16,756682.24 Europe,Switzerland,Meat,Offline,M,9/1/2013,212967669,9/14/2013,721,421.89,364.69,304182.69,262941.49,41241.20 Central America and the Caribbean,Saint Vincent and the Grenadines,Personal Care,Online,M,8/15/2013,266217458,9/7/2013,8517,81.73,56.67,696094.41,482658.39,213436.02 Sub-Saharan Africa,Cameroon,Vegetables,Online,L,4/15/2015,849406516,4/20/2015,7119,154.06,90.93,1096753.14,647330.67,449422.47 Europe,Croatia,Vegetables,Offline,C,5/24/2015,876646173,6/7/2015,7938,154.06,90.93,1222928.28,721802.34,501125.94 Central America and the Caribbean,Guatemala,Vegetables,Offline,L,7/13/2015,232360255,8/29/2015,9418,154.06,90.93,1450937.08,856378.74,594558.34 Europe,Vatican City,Household,Online,M,10/11/2010,221285092,10/18/2010,2031,668.27,502.54,1357256.37,1020658.74,336597.63 Europe,Monaco,Beverages,Online,L,3/15/2016,418469512,4/29/2016,3283,47.45,31.79,155778.35,104366.57,51411.78 Central America and the Caribbean,Cuba,Office Supplies,Online,L,2/3/2010,919274842,2/18/2010,2709,651.21,524.96,1764127.89,1422116.64,342011.25 Central America and the Caribbean,El Salvador,Personal Care,Online,M,6/7/2013,989374911,6/26/2013,6877,81.73,56.67,562057.21,389719.59,172337.62 Asia,China,Vegetables,Offline,H,6/1/2010,414756047,6/15/2010,4386,154.06,90.93,675707.16,398818.98,276888.18 Sub-Saharan Africa,Guinea-Bissau,Cereal,Online,L,10/21/2012,851717078,10/22/2012,865,205.70,117.11,177930.50,101300.15,76630.35 Sub-Saharan Africa,Benin,Clothes,Offline,H,9/16/2010,876869332,10/29/2010,3976,109.28,35.84,434497.28,142499.84,291997.44 Sub-Saharan Africa,Tanzania,Office Supplies,Online,C,3/27/2014,937136638,5/5/2014,8411,651.21,524.96,5477327.31,4415438.56,1061888.75 North America,United States of America,Beverages,Online,H,10/31/2011,199755322,11/1/2011,894,47.45,31.79,42420.30,28420.26,14000.04 Asia,Tajikistan,Cereal,Offline,C,12/14/2011,602274215,1/19/2012,5179,205.70,117.11,1065320.30,606512.69,458807.61 Australia and Oceania,Solomon Islands,Personal Care,Online,H,7/14/2016,102554643,7/18/2016,7053,81.73,56.67,576441.69,399693.51,176748.18 Sub-Saharan Africa,Tanzania,Fruits,Offline,H,3/24/2017,328770434,4/6/2017,9332,9.33,6.92,87067.56,64577.44,22490.12 Europe,Switzerland,Meat,Online,H,4/25/2014,729407918,5/23/2014,6867,421.89,364.69,2897118.63,2504326.23,392792.40 Sub-Saharan Africa,South Sudan,Baby Food,Online,H,12/7/2012,823265922,12/10/2012,1536,255.28,159.42,392110.08,244869.12,147240.96 Australia and Oceania,Kiribati,Baby Food,Offline,M,9/18/2011,649455773,9/27/2011,7251,255.28,159.42,1851035.28,1155954.42,695080.86 Asia,Bhutan,Cereal,Offline,C,2/16/2014,317401301,2/17/2014,4953,205.70,117.11,1018832.10,580045.83,438786.27 Europe,Bulgaria,Vegetables,Online,H,2/26/2017,456838834,4/17/2017,7618,154.06,90.93,1173629.08,692704.74,480924.34 Europe,Norway,Cereal,Offline,C,1/16/2015,867817199,1/29/2015,5249,205.70,117.11,1079719.30,614710.39,465008.91 Australia and Oceania,Fiji,Vegetables,Offline,L,9/5/2010,970697724,9/18/2010,9883,154.06,90.93,1522574.98,898661.19,623913.79 Central America and the Caribbean,Saint Kitts and Nevis ,Fruits,Online,M,10/20/2011,256154239,10/30/2011,586,9.33,6.92,5467.38,4055.12,1412.26 Europe,Germany,Household,Offline,H,1/26/2012,535173070,2/21/2012,8459,668.27,502.54,5652895.93,4250985.86,1401910.07 Middle East and North Africa,Tunisia ,Household,Offline,M,7/26/2017,989053046,8/18/2017,1630,668.27,502.54,1089280.10,819140.20,270139.90 Europe,Ireland,Clothes,Online,H,9/21/2012,419405496,10/17/2012,261,109.28,35.84,28522.08,9354.24,19167.84 Middle East and North Africa,Lebanon,Baby Food,Online,C,2/8/2017,398154246,3/28/2017,1544,255.28,159.42,394152.32,246144.48,148007.84 Asia,South Korea,Clothes,Offline,M,6/29/2013,317535626,7/13/2013,4703,109.28,35.84,513943.84,168555.52,345388.32 Sub-Saharan Africa,Botswana,Snacks,Online,L,3/23/2012,540098464,5/2/2012,5993,152.58,97.44,914411.94,583957.92,330454.02 Sub-Saharan Africa,Burundi,Meat,Offline,L,2/18/2017,148704087,2/21/2017,3699,421.89,364.69,1560571.11,1348988.31,211582.80 Asia,Nepal,Office Supplies,Online,C,3/11/2014,996526324,4/1/2014,3139,651.21,524.96,2044148.19,1647849.44,396298.75 Sub-Saharan Africa,Mauritania,Clothes,Offline,C,2/22/2013,957051503,3/15/2013,1662,109.28,35.84,181623.36,59566.08,122057.28 Asia,Uzbekistan,Snacks,Online,C,6/14/2013,674078452,7/7/2013,3648,152.58,97.44,556611.84,355461.12,201150.72 Middle East and North Africa,Syria,Clothes,Online,L,8/20/2015,411718499,8/25/2015,5508,109.28,35.84,601914.24,197406.72,404507.52 Sub-Saharan Africa,Cote d'Ivoire,Snacks,Offline,L,6/28/2017,504395473,8/6/2017,684,152.58,97.44,104364.72,66648.96,37715.76 Asia,Indonesia,Snacks,Offline,M,4/24/2010,906845700,4/30/2010,4650,152.58,97.44,709497.00,453096.00,256401.00 Asia,Japan,Beverages,Offline,C,12/18/2012,744118010,1/15/2013,9910,47.45,31.79,470229.50,315038.90,155190.60 Europe,Serbia,Snacks,Online,H,1/30/2015,561573731,3/10/2015,1001,152.58,97.44,152732.58,97537.44,55195.14 Europe,Spain,Office Supplies,Online,M,2/23/2011,974886691,3/4/2011,9491,651.21,524.96,6180634.11,4982395.36,1198238.75 Asia,Turkmenistan,Vegetables,Offline,H,11/11/2011,420043218,12/8/2011,8977,154.06,90.93,1382996.62,816278.61,566718.01 Sub-Saharan Africa,Liberia,Vegetables,Online,L,1/20/2010,103342139,2/4/2010,90,154.06,90.93,13865.40,8183.70,5681.70 Sub-Saharan Africa,Lesotho,Snacks,Offline,L,10/7/2014,851394784,10/17/2014,5491,152.58,97.44,837816.78,535043.04,302773.74 Sub-Saharan Africa,Namibia,Office Supplies,Offline,H,3/3/2017,861124980,4/12/2017,4873,651.21,524.96,3173346.33,2558130.08,615216.25 Europe,Sweden,Office Supplies,Offline,H,1/28/2017,649769055,3/10/2017,9958,651.21,524.96,6484749.18,5227551.68,1257197.50 Sub-Saharan Africa,Liberia,Fruits,Offline,H,8/1/2011,804875838,9/10/2011,9502,9.33,6.92,88653.66,65753.84,22899.82 Central America and the Caribbean,Costa Rica,Baby Food,Offline,C,12/23/2013,634306657,1/22/2014,4290,255.28,159.42,1095151.20,683911.80,411239.40 Asia,Sri Lanka,Cereal,Offline,L,2/18/2012,416235339,3/26/2012,2141,205.70,117.11,440403.70,250732.51,189671.19 Central America and the Caribbean,The Bahamas,Vegetables,Offline,L,2/9/2010,949148213,2/13/2010,2903,154.06,90.93,447236.18,263969.79,183266.39 Europe,Portugal,Beverages,Offline,C,11/2/2016,401844108,11/14/2016,3456,47.45,31.79,163987.20,109866.24,54120.96 Middle East and North Africa,Tunisia ,Household,Online,C,1/5/2012,163434350,1/8/2012,2711,668.27,502.54,1811679.97,1362385.94,449294.03 Sub-Saharan Africa,The Gambia,Meat,Offline,C,6/20/2010,793342769,6/30/2010,6610,421.89,364.69,2788692.90,2410600.90,378092.00 Sub-Saharan Africa,Chad,Cosmetics,Offline,M,12/18/2012,671305692,1/14/2013,3127,437.20,263.33,1367124.40,823432.91,543691.49 Middle East and North Africa,Jordan,Meat,Offline,M,7/17/2017,947371947,8/25/2017,7267,421.89,364.69,3065874.63,2650202.23,415672.40 Middle East and North Africa,Oman,Snacks,Online,L,9/22/2015,591902863,11/1/2015,6066,152.58,97.44,925550.28,591071.04,334479.24 Middle East and North Africa,Iran,Cereal,Online,M,6/20/2011,445572268,7/7/2011,3591,205.70,117.11,738668.70,420542.01,318126.69 Europe,France,Vegetables,Offline,M,5/11/2017,969366490,5/28/2017,5941,154.06,90.93,915270.46,540215.13,375055.33 Europe,Latvia,Fruits,Online,C,12/24/2012,894584357,1/20/2013,6246,9.33,6.92,58275.18,43222.32,15052.86 Sub-Saharan Africa,Swaziland,Baby Food,Offline,M,11/1/2016,372837197,12/18/2016,9667,255.28,159.42,2467791.76,1541113.14,926678.62 Sub-Saharan Africa,Guinea,Snacks,Offline,C,6/3/2014,526048839,6/17/2014,8396,152.58,97.44,1281061.68,818106.24,462955.44 Sub-Saharan Africa,Swaziland,Beverages,Online,L,1/5/2015,296455609,2/5/2015,6658,47.45,31.79,315922.10,211657.82,104264.28 Europe,San Marino,Office Supplies,Online,M,1/7/2010,496606338,2/12/2010,5706,651.21,524.96,3715804.26,2995421.76,720382.50 Sub-Saharan Africa,Angola,Cereal,Offline,H,8/21/2014,659362351,9/22/2014,8827,205.70,117.11,1815713.90,1033729.97,781983.93 Australia and Oceania,Federated States of Micronesia,Cosmetics,Offline,H,1/18/2011,387897479,1/29/2011,6339,437.20,263.33,2771410.80,1669248.87,1102161.93 Sub-Saharan Africa,Eritrea,Cosmetics,Online,L,10/13/2012,705698049,11/9/2012,590,437.20,263.33,257948.00,155364.70,102583.30 Sub-Saharan Africa,Sao Tome and Principe,Cosmetics,Offline,C,7/10/2015,906562888,8/1/2015,959,437.20,263.33,419274.80,252533.47,166741.33 Australia and Oceania,Marshall Islands,Personal Care,Offline,L,12/28/2015,804603326,12/31/2015,8859,81.73,56.67,724046.07,502039.53,222006.54 Asia,Sri Lanka,Cosmetics,Online,L,10/12/2015,284243190,10/26/2015,2731,437.20,263.33,1193993.20,719154.23,474838.97 Europe,Croatia,Vegetables,Online,C,7/16/2017,650218808,7/28/2017,3049,154.06,90.93,469728.94,277245.57,192483.37 Sub-Saharan Africa,Zambia,Clothes,Offline,L,8/17/2013,577579009,10/1/2013,7319,109.28,35.84,799820.32,262312.96,537507.36 Middle East and North Africa,Afghanistan,Meat,Offline,H,8/11/2012,161685121,8/29/2012,5075,421.89,364.69,2141091.75,1850801.75,290290.00 Sub-Saharan Africa,Botswana,Cereal,Offline,M,10/6/2012,468210971,11/7/2012,2886,205.70,117.11,593650.20,337979.46,255670.74 Asia,Bangladesh,Household,Offline,M,6/3/2013,383142888,7/20/2013,9350,668.27,502.54,6248324.50,4698749.00,1549575.50 Asia,Laos,Vegetables,Offline,M,3/16/2011,662779700,3/26/2011,97,154.06,90.93,14943.82,8820.21,6123.61 Sub-Saharan Africa,Burkina Faso,Cosmetics,Offline,L,5/14/2011,783732736,6/18/2011,2788,437.20,263.33,1218913.60,734164.04,484749.56 Asia,India,Cosmetics,Online,C,6/8/2016,292925822,6/30/2016,2115,437.20,263.33,924678.00,556942.95,367735.05 Middle East and North Africa,Oman,Fruits,Online,L,11/14/2014,157595288,12/20/2014,4803,9.33,6.92,44811.99,33236.76,11575.23 Sub-Saharan Africa,Djibouti,Fruits,Online,M,2/11/2015,515289962,3/10/2015,4605,9.33,6.92,42964.65,31866.60,11098.05 Australia and Oceania,Kiribati,Clothes,Online,H,7/17/2011,223871171,7/28/2011,7309,109.28,35.84,798727.52,261954.56,536772.96 Central America and the Caribbean,El Salvador,Household,Online,C,12/9/2010,911512744,1/21/2011,5732,668.27,502.54,3830523.64,2880559.28,949964.36 Europe,Hungary,Office Supplies,Offline,M,8/6/2013,226701009,9/13/2013,4721,651.21,524.96,3074362.41,2478336.16,596026.25 Europe,Bosnia and Herzegovina,Personal Care,Online,M,1/27/2017,388234794,1/29/2017,6158,81.73,56.67,503293.34,348973.86,154319.48 Europe,Denmark,Personal Care,Online,L,6/5/2012,535225427,6/9/2012,3952,81.73,56.67,322996.96,223959.84,99037.12 Sub-Saharan Africa,Kenya,Clothes,Offline,C,9/16/2010,777096736,9/17/2010,9048,109.28,35.84,988765.44,324280.32,664485.12 Sub-Saharan Africa,Seychelles ,Vegetables,Online,C,6/19/2016,843585050,7/1/2016,4417,154.06,90.93,680483.02,401637.81,278845.21 Middle East and North Africa,Kuwait,Household,Offline,L,5/15/2016,534739196,6/30/2016,66,668.27,502.54,44105.82,33167.64,10938.18 Europe,Albania,Household,Offline,H,4/25/2013,170920503,5/18/2013,8030,668.27,502.54,5366208.10,4035396.20,1330811.90 Australia and Oceania,Solomon Islands,Personal Care,Online,H,1/14/2015,142802798,1/19/2015,7376,81.73,56.67,602840.48,417997.92,184842.56 Asia,Philippines,Fruits,Offline,C,3/13/2015,461372411,3/28/2015,9204,9.33,6.92,85873.32,63691.68,22181.64 Sub-Saharan Africa,Mali,Household,Offline,H,4/19/2012,307928168,5/2/2012,1643,668.27,502.54,1097967.61,825673.22,272294.39 Middle East and North Africa,Azerbaijan,Office Supplies,Online,C,6/30/2013,284081399,7/25/2013,4854,651.21,524.96,3160973.34,2548155.84,612817.50 Central America and the Caribbean,Guatemala,Meat,Online,L,8/22/2015,161755931,9/4/2015,6029,421.89,364.69,2543574.81,2198716.01,344858.80 Europe,Slovenia,Office Supplies,Offline,M,8/25/2016,233188092,8/29/2016,4393,651.21,524.96,2860765.53,2306149.28,554616.25 North America,United States of America,Clothes,Online,C,9/20/2011,860926711,10/3/2011,6200,109.28,35.84,677536.00,222208.00,455328.00 Europe,Liechtenstein,Baby Food,Online,C,4/4/2012,227833116,4/21/2012,9737,255.28,159.42,2485661.36,1552272.54,933388.82 Asia,Laos,Household,Offline,M,10/22/2011,187081134,11/24/2011,320,668.27,502.54,213846.40,160812.80,53033.60 Europe,Montenegro,Beverages,Offline,L,7/17/2012,412157094,8/25/2012,5298,47.45,31.79,251390.10,168423.42,82966.68 Sub-Saharan Africa,Namibia,Fruits,Online,C,12/3/2013,646859824,12/6/2013,9051,9.33,6.92,84445.83,62632.92,21812.91 Europe,Lithuania,Personal Care,Offline,C,6/19/2016,255300652,6/27/2016,7991,81.73,56.67,653104.43,452849.97,200254.46 Sub-Saharan Africa,Ghana,Fruits,Online,M,5/27/2010,471903407,6/17/2010,5560,9.33,6.92,51874.80,38475.20,13399.60 Europe,Georgia,Cosmetics,Offline,M,4/24/2017,351404416,5/20/2017,7231,437.20,263.33,3161393.20,1904139.23,1257253.97 Asia,Kazakhstan,Vegetables,Offline,M,8/16/2010,818852508,9/28/2010,5509,154.06,90.93,848716.54,500933.37,347783.17 Central America and the Caribbean,Cuba,Meat,Online,H,4/6/2010,619609010,4/11/2010,4930,421.89,364.69,2079917.70,1797921.70,281996.00 Asia,Singapore,Personal Care,Offline,C,9/18/2010,369347751,10/25/2010,7062,81.73,56.67,577177.26,400203.54,176973.72 Central America and the Caribbean,Saint Kitts and Nevis ,Fruits,Online,H,2/8/2015,304055058,3/3/2015,5503,9.33,6.92,51342.99,38080.76,13262.23 Central America and the Caribbean,Haiti,Cosmetics,Offline,H,4/6/2016,730029761,5/13/2016,884,437.20,263.33,386484.80,232783.72,153701.08 Europe,Denmark,Snacks,Offline,L,8/28/2015,673883187,9/13/2015,5865,152.58,97.44,894881.70,571485.60,323396.10 Europe,Spain,Clothes,Offline,L,1/13/2012,132539165,2/20/2012,139,109.28,35.84,15189.92,4981.76,10208.16 Sub-Saharan Africa,Chad,Vegetables,Offline,L,10/11/2012,523234021,11/18/2012,5429,154.06,90.93,836391.74,493658.97,342732.77 Australia and Oceania,Fiji,Baby Food,Online,H,12/24/2014,633516585,2/8/2015,491,255.28,159.42,125342.48,78275.22,47067.26 Asia,Kyrgyzstan,Snacks,Online,M,10/16/2016,671248185,12/5/2016,6109,152.58,97.44,932111.22,595260.96,336850.26 Europe,France,Cereal,Offline,C,8/26/2013,914602649,9/26/2013,103,205.70,117.11,21187.10,12062.33,9124.77 Australia and Oceania,Nauru,Snacks,Online,L,3/14/2017,362066304,4/12/2017,2320,152.58,97.44,353985.60,226060.80,127924.80 Europe,Luxembourg,Cereal,Online,L,8/22/2013,782437980,9/16/2013,9641,205.70,117.11,1983153.70,1129057.51,854096.19 Middle East and North Africa,Iran,Clothes,Offline,L,12/17/2012,864829003,12/30/2012,975,109.28,35.84,106548.00,34944.00,71604.00 Asia,Kyrgyzstan,Clothes,Online,L,11/9/2014,268663203,12/3/2014,2267,109.28,35.84,247737.76,81249.28,166488.48 Sub-Saharan Africa,Lesotho,Clothes,Offline,L,7/5/2012,973676908,7/8/2012,1489,109.28,35.84,162717.92,53365.76,109352.16 Europe,Portugal,Household,Online,L,7/14/2011,529918944,8/18/2011,3646,668.27,502.54,2436512.42,1832260.84,604251.58 Asia,Myanmar,Snacks,Online,H,1/10/2011,607750642,1/24/2011,5775,152.58,97.44,881149.50,562716.00,318433.50 Asia,Kazakhstan,Baby Food,Offline,L,12/10/2014,247845828,1/5/2015,1943,255.28,159.42,496009.04,309753.06,186255.98 Central America and the Caribbean,Jamaica,Meat,Online,L,2/24/2013,811190831,3/16/2013,8248,421.89,364.69,3479748.72,3007963.12,471785.60 Europe,Serbia,Snacks,Online,H,7/10/2015,129084479,8/10/2015,7821,152.58,97.44,1193328.18,762078.24,431249.94 Middle East and North Africa,Kuwait,Fruits,Online,C,4/10/2010,153138101,4/20/2010,5822,9.33,6.92,54319.26,40288.24,14031.02 Sub-Saharan Africa,Chad,Baby Food,Offline,M,3/11/2013,205275523,4/25/2013,4444,255.28,159.42,1134464.32,708462.48,426001.84 Sub-Saharan Africa,Senegal,Cosmetics,Online,M,10/31/2010,127733075,12/6/2010,7910,437.20,263.33,3458252.00,2082940.30,1375311.70 Sub-Saharan Africa,Sudan,Beverages,Online,H,4/28/2017,733059585,5/21/2017,7476,47.45,31.79,354736.20,237662.04,117074.16 Sub-Saharan Africa,Zambia,Cosmetics,Offline,C,7/28/2017,654116380,8/6/2017,6428,437.20,263.33,2810321.60,1692685.24,1117636.36 Europe,Netherlands,Baby Food,Online,M,6/21/2016,394077289,7/28/2016,5082,255.28,159.42,1297332.96,810172.44,487160.52 Sub-Saharan Africa,Uganda,Baby Food,Offline,C,6/2/2012,976428639,6/10/2012,5788,255.28,159.42,1477560.64,922722.96,554837.68 Asia,Malaysia,Cosmetics,Offline,L,3/24/2016,794969260,4/10/2016,7925,437.20,263.33,3464810.00,2086890.25,1377919.75 Central America and the Caribbean,Panama,Baby Food,Offline,L,1/22/2017,563810479,2/11/2017,2905,255.28,159.42,741588.40,463115.10,278473.30 Sub-Saharan Africa,Burkina Faso,Cosmetics,Online,H,7/2/2016,167376124,7/12/2016,9170,437.20,263.33,4009124.00,2414736.10,1594387.90 Middle East and North Africa,Bahrain,Fruits,Offline,L,3/16/2017,910402524,5/1/2017,7193,9.33,6.92,67110.69,49775.56,17335.13 Europe,Netherlands,Household,Online,C,7/11/2011,567938506,8/2/2011,4480,668.27,502.54,2993849.60,2251379.20,742470.40 Sub-Saharan Africa,Kenya,Clothes,Online,L,8/9/2015,135345399,9/28/2015,566,109.28,35.84,61852.48,20285.44,41567.04 Sub-Saharan Africa,Malawi,Snacks,Online,M,7/27/2012,678297030,8/20/2012,2019,152.58,97.44,308059.02,196731.36,111327.66 Asia,Kazakhstan,Cereal,Online,H,11/26/2016,182779729,12/2/2016,7438,205.70,117.11,1529996.60,871064.18,658932.42 Europe,Malta,Clothes,Online,L,1/29/2010,305092322,3/16/2010,2453,109.28,35.84,268063.84,87915.52,180148.32 Sub-Saharan Africa,Gabon,Clothes,Offline,H,6/29/2012,521846139,7/4/2012,4724,109.28,35.84,516238.72,169308.16,346930.56 Middle East and North Africa,Qatar,Cosmetics,Online,M,7/16/2011,379965007,8/20/2011,8944,437.20,263.33,3910316.80,2355223.52,1555093.28 Australia and Oceania,Nauru,Clothes,Online,L,10/22/2010,846685254,12/9/2010,1837,109.28,35.84,200747.36,65838.08,134909.28 Europe,Liechtenstein,Personal Care,Online,C,3/6/2011,259555709,4/21/2011,7157,81.73,56.67,584941.61,405587.19,179354.42 Australia and Oceania,Nauru,Cosmetics,Online,M,8/4/2014,176437699,9/19/2014,691,437.20,263.33,302105.20,181961.03,120144.17 Europe,Greece,Vegetables,Online,C,9/11/2012,425505053,9/11/2012,5256,154.06,90.93,809739.36,477928.08,331811.28 Europe,Belarus,Meat,Online,M,5/7/2013,455244100,6/3/2013,5700,421.89,364.69,2404773.00,2078733.00,326040.00 Sub-Saharan Africa,Liberia,Office Supplies,Offline,C,2/10/2014,684453666,3/12/2014,3905,651.21,524.96,2542975.05,2049968.80,493006.25 Sub-Saharan Africa,Lesotho,Fruits,Online,C,8/13/2013,252245080,9/11/2013,3779,9.33,6.92,35258.07,26150.68,9107.39 Central America and the Caribbean,Haiti,Personal Care,Online,H,5/3/2015,168042171,6/1/2015,6267,81.73,56.67,512201.91,355150.89,157051.02 Europe,San Marino,Meat,Offline,C,3/31/2016,161581265,4/2/2016,4342,421.89,364.69,1831846.38,1583483.98,248362.40 Australia and Oceania,Vanuatu,Office Supplies,Offline,L,8/8/2010,932911193,8/13/2010,8008,651.21,524.96,5214889.68,4203879.68,1011010.00 Sub-Saharan Africa,Benin,Fruits,Online,H,6/5/2016,102393281,6/16/2016,9302,9.33,6.92,86787.66,64369.84,22417.82 Europe,Ireland,Cosmetics,Offline,H,3/5/2011,760701358,4/3/2011,7291,437.20,263.33,3187625.20,1919939.03,1267686.17 Sub-Saharan Africa,Zambia,Baby Food,Offline,L,3/22/2011,218821752,4/23/2011,3074,255.28,159.42,784730.72,490057.08,294673.64 Europe,Moldova ,Snacks,Offline,H,1/29/2015,358053290,3/1/2015,4780,152.58,97.44,729332.40,465763.20,263569.20 Australia and Oceania,Vanuatu,Vegetables,Offline,C,9/29/2014,880007302,10/1/2014,2571,154.06,90.93,396088.26,233781.03,162307.23 Asia,Malaysia,Fruits,Online,L,8/24/2014,656607615,8/31/2014,3640,9.33,6.92,33961.20,25188.80,8772.40 Australia and Oceania,Tuvalu,Fruits,Online,L,9/14/2012,880090558,10/7/2012,7209,9.33,6.92,67259.97,49886.28,17373.69 Europe,Slovakia,Beverages,Offline,M,9/8/2011,113004958,9/22/2011,9533,47.45,31.79,452340.85,303054.07,149286.78 Middle East and North Africa,Israel,Household,Online,M,6/6/2015,138212144,6/14/2015,8900,668.27,502.54,5947603.00,4472606.00,1474997.00 Asia,Philippines,Cereal,Online,H,6/21/2017,108885943,7/13/2017,625,205.70,117.11,128562.50,73193.75,55368.75 Asia,Turkmenistan,Vegetables,Offline,L,5/31/2012,598512685,7/5/2012,2059,154.06,90.93,317209.54,187224.87,129984.67 Central America and the Caribbean,Cuba,Snacks,Online,M,11/13/2014,450891196,11/26/2014,7580,152.58,97.44,1156556.40,738595.20,417961.20 Central America and the Caribbean,Nicaragua,Household,Offline,L,3/14/2010,830132806,4/22/2010,3599,668.27,502.54,2405103.73,1808641.46,596462.27 Sub-Saharan Africa,Seychelles ,Beverages,Online,L,5/12/2011,270661342,6/12/2011,3561,47.45,31.79,168969.45,113204.19,55765.26 Sub-Saharan Africa,Equatorial Guinea,Household,Online,C,3/19/2017,527213132,4/11/2017,2936,668.27,502.54,1962040.72,1475457.44,486583.28 Asia,Taiwan,Snacks,Online,H,5/1/2016,724837005,6/5/2016,4232,152.58,97.44,645718.56,412366.08,233352.48 Sub-Saharan Africa,Ethiopia,Vegetables,Offline,M,6/29/2013,508894288,6/29/2013,1983,154.06,90.93,305500.98,180314.19,125186.79 Sub-Saharan Africa,Guinea,Beverages,Offline,L,10/3/2010,495058810,11/15/2010,7758,47.45,31.79,368117.10,246626.82,121490.28 Middle East and North Africa,Morocco,Fruits,Offline,M,4/1/2011,919316899,5/18/2011,5155,9.33,6.92,48096.15,35672.60,12423.55 Europe,Spain,Cosmetics,Offline,C,5/16/2015,287967383,6/22/2015,4803,437.20,263.33,2099871.60,1264773.99,835097.61 Australia and Oceania,Kiribati,Baby Food,Online,H,1/8/2017,327621591,1/8/2017,9364,255.28,159.42,2390441.92,1492808.88,897633.04 Middle East and North Africa,Qatar,Vegetables,Online,L,12/12/2014,135203349,12/25/2014,8530,154.06,90.93,1314131.80,775632.90,538498.90 Australia and Oceania,Papua New Guinea,Meat,Online,H,7/11/2016,227948987,7/24/2016,4026,421.89,364.69,1698529.14,1468241.94,230287.20 Asia,Uzbekistan,Baby Food,Offline,M,4/13/2011,293407332,5/12/2011,4605,255.28,159.42,1175564.40,734129.10,441435.30 Central America and the Caribbean,Guatemala,Snacks,Online,M,7/5/2012,539439713,8/23/2012,1054,152.58,97.44,160819.32,102701.76,58117.56 Central America and the Caribbean,Saint Lucia,Vegetables,Offline,L,8/24/2015,344219958,8/26/2015,1190,154.06,90.93,183331.40,108206.70,75124.70 Europe,Lithuania,Meat,Online,H,3/10/2017,506234395,4/11/2017,4862,421.89,364.69,2051229.18,1773122.78,278106.40 Europe,Monaco,Meat,Online,C,12/1/2010,994281852,12/17/2010,8950,421.89,364.69,3775915.50,3263975.50,511940.00 Middle East and North Africa,Bahrain,Cereal,Offline,L,5/21/2014,497473657,5/21/2014,2365,205.70,117.11,486480.50,276965.15,209515.35 Europe,Malta,Cosmetics,Offline,M,2/24/2012,475233638,3/11/2012,1049,437.20,263.33,458622.80,276233.17,182389.63 Australia and Oceania,Kiribati,Personal Care,Offline,M,7/13/2012,207298123,7/21/2012,2976,81.73,56.67,243228.48,168649.92,74578.56 Sub-Saharan Africa,Madagascar,Baby Food,Online,M,7/28/2013,843715941,8/6/2013,3151,255.28,159.42,804387.28,502332.42,302054.86 Asia,Cambodia,Beverages,Online,L,5/17/2014,454848420,6/2/2014,8610,47.45,31.79,408544.50,273711.90,134832.60 Australia and Oceania,Samoa ,Cosmetics,Online,H,4/25/2011,781369388,5/9/2011,3420,437.20,263.33,1495224.00,900588.60,594635.40 Australia and Oceania,New Zealand,Snacks,Online,H,12/25/2016,484265172,12/25/2016,3681,152.58,97.44,561646.98,358676.64,202970.34 Central America and the Caribbean,Panama,Household,Offline,C,12/18/2010,994834601,12/31/2010,2521,668.27,502.54,1684708.67,1266903.34,417805.33 Central America and the Caribbean,Barbados,Household,Offline,M,10/4/2011,664689004,10/5/2011,5102,668.27,502.54,3409513.54,2563959.08,845554.46 Sub-Saharan Africa,Chad,Vegetables,Online,H,6/7/2012,615752208,6/9/2012,3617,154.06,90.93,557235.02,328893.81,228341.21 Sub-Saharan Africa,Swaziland,Personal Care,Online,H,9/12/2014,690260541,9/30/2014,2288,81.73,56.67,186998.24,129660.96,57337.28 Europe,Georgia,Household,Online,H,7/12/2017,800762832,8/19/2017,2371,668.27,502.54,1584468.17,1191522.34,392945.83 Middle East and North Africa,Pakistan,Meat,Offline,M,5/28/2013,480120408,6/12/2013,7153,421.89,364.69,3017779.17,2608627.57,409151.60 Asia,Brunei,Baby Food,Online,C,10/19/2014,231507098,11/28/2014,6950,255.28,159.42,1774196.00,1107969.00,666227.00 Asia,Tajikistan,Baby Food,Offline,L,7/12/2012,178409230,7/30/2012,4111,255.28,159.42,1049456.08,655375.62,394080.46 Europe,Georgia,Vegetables,Online,L,5/29/2017,514625632,7/9/2017,8016,154.06,90.93,1234944.96,728894.88,506050.08 Europe,Kosovo,Personal Care,Offline,C,1/12/2011,154267632,1/27/2011,75,81.73,56.67,6129.75,4250.25,1879.50 Europe,Bulgaria,Office Supplies,Online,C,2/15/2010,781759059,3/22/2010,8733,651.21,524.96,5687016.93,4584475.68,1102541.25 Asia,Malaysia,Vegetables,Online,L,5/5/2017,101836240,5/12/2017,4461,154.06,90.93,687261.66,405638.73,281622.93 Asia,North Korea,Snacks,Offline,M,6/20/2017,389548003,7/19/2017,4766,152.58,97.44,727196.28,464399.04,262797.24 Europe,San Marino,Cosmetics,Offline,L,7/1/2011,840255677,7/9/2011,9182,437.20,263.33,4014370.40,2417896.06,1596474.34 Asia,Bangladesh,Clothes,Online,C,11/5/2012,719633090,12/19/2012,4278,109.28,35.84,467499.84,153323.52,314176.32 Middle East and North Africa,Afghanistan,Clothes,Online,H,4/14/2013,713666570,5/29/2013,8652,109.28,35.84,945490.56,310087.68,635402.88 Sub-Saharan Africa,Nigeria,Vegetables,Offline,C,12/30/2016,678654944,1/9/2017,7934,154.06,90.93,1222312.04,721438.62,500873.42 Sub-Saharan Africa,Swaziland,Meat,Offline,H,2/4/2014,991209542,2/7/2014,9785,421.89,364.69,4128193.65,3568491.65,559702.00 Europe,Slovenia,Fruits,Offline,C,9/8/2014,298254191,10/3/2014,8898,9.33,6.92,83018.34,61574.16,21444.18 Sub-Saharan Africa,Ethiopia,Meat,Online,C,10/16/2014,467025220,11/22/2014,1996,421.89,364.69,842092.44,727921.24,114171.20 Asia,Uzbekistan,Cosmetics,Offline,C,4/15/2015,735071456,5/29/2015,2834,437.20,263.33,1239024.80,746277.22,492747.58 Asia,India,Clothes,Online,C,7/18/2010,860254228,7/26/2010,7198,109.28,35.84,786597.44,257976.32,528621.12 Middle East and North Africa,Jordan,Cosmetics,Offline,H,12/5/2014,670747363,1/10/2015,7905,437.20,263.33,3456066.00,2081623.65,1374442.35 Europe,Armenia,Snacks,Online,M,7/29/2013,515037190,9/11/2013,9805,152.58,97.44,1496046.90,955399.20,540647.70 Europe,Finland,Office Supplies,Offline,C,8/17/2011,811922538,9/21/2011,4777,651.21,524.96,3110830.17,2507733.92,603096.25 Europe,Bulgaria,Cosmetics,Online,L,4/11/2015,700514733,5/11/2015,6731,437.20,263.33,2942793.20,1772474.23,1170318.97 Europe,Sweden,Personal Care,Offline,L,11/11/2012,290237605,12/17/2012,6612,81.73,56.67,540398.76,374702.04,165696.72 Middle East and North Africa,Azerbaijan,Beverages,Offline,M,7/3/2016,210827481,7/23/2016,7392,47.45,31.79,350750.40,234991.68,115758.72 Sub-Saharan Africa,Sierra Leone,Vegetables,Offline,C,11/16/2012,262333190,12/30/2012,9075,154.06,90.93,1398094.50,825189.75,572904.75 Asia,Turkmenistan,Baby Food,Online,M,6/9/2012,765116059,7/7/2012,3699,255.28,159.42,944280.72,589694.58,354586.14 Sub-Saharan Africa,Nigeria,Beverages,Online,M,5/11/2015,309849917,6/11/2015,331,47.45,31.79,15705.95,10522.49,5183.46 Sub-Saharan Africa,Guinea-Bissau,Baby Food,Offline,C,4/18/2015,707521092,5/15/2015,69,255.28,159.42,17614.32,10999.98,6614.34 Asia,Sri Lanka,Fruits,Offline,M,10/3/2010,239428412,10/31/2010,1043,9.33,6.92,9731.19,7217.56,2513.63 Sub-Saharan Africa,Togo,Vegetables,Offline,M,6/18/2016,407183206,6/25/2016,3414,154.06,90.93,525960.84,310435.02,215525.82 Central America and the Caribbean,Grenada,Cosmetics,Online,H,2/15/2014,982709300,3/17/2014,4375,437.20,263.33,1912750.00,1152068.75,760681.25 North America,United States of America,Fruits,Online,H,10/21/2016,458243024,11/10/2016,3149,9.33,6.92,29380.17,21791.08,7589.09 Europe,Serbia,Fruits,Offline,H,2/17/2012,996333205,4/1/2012,5991,9.33,6.92,55896.03,41457.72,14438.31 Asia,India,Personal Care,Online,M,7/2/2011,779841172,7/30/2011,1188,81.73,56.67,97095.24,67323.96,29771.28 Middle East and North Africa,Jordan,Clothes,Online,M,1/13/2016,761940753,2/22/2016,4056,109.28,35.84,443239.68,145367.04,297872.64 Sub-Saharan Africa,Sudan,Baby Food,Offline,H,10/4/2012,616118276,10/12/2012,1944,255.28,159.42,496264.32,309912.48,186351.84 Europe,Latvia,Household,Offline,C,4/13/2016,986172568,4/13/2016,9233,668.27,502.54,6170136.91,4639951.82,1530185.09 Sub-Saharan Africa,Zimbabwe,Snacks,Offline,L,12/24/2011,336214959,2/10/2012,2333,152.58,97.44,355969.14,227327.52,128641.62 Asia,China,Clothes,Offline,C,10/16/2012,800669276,11/4/2012,4686,109.28,35.84,512086.08,167946.24,344139.84 Middle East and North Africa,Iraq,Vegetables,Online,L,1/6/2010,534271848,2/24/2010,1767,154.06,90.93,272224.02,160673.31,111550.71 Middle East and North Africa,Syria,Personal Care,Offline,M,12/9/2014,462071502,12/14/2014,6080,81.73,56.67,496918.40,344553.60,152364.80 Australia and Oceania,Samoa ,Vegetables,Online,H,3/12/2017,229429566,4/4/2017,2162,154.06,90.93,333077.72,196590.66,136487.06 Europe,Spain,Office Supplies,Offline,L,4/10/2011,452019870,5/6/2011,1579,651.21,524.96,1028260.59,828911.84,199348.75 Sub-Saharan Africa,Rwanda,Meat,Online,C,6/10/2015,465828740,7/29/2015,7931,421.89,364.69,3346009.59,2892356.39,453653.20 Europe,Netherlands,Vegetables,Online,C,12/15/2014,577155005,12/30/2014,1847,154.06,90.93,284548.82,167947.71,116601.11 Central America and the Caribbean,Grenada,Vegetables,Online,L,4/16/2011,712609994,4/29/2011,5988,154.06,90.93,922511.28,544488.84,378022.44 Asia,China,Cereal,Online,C,10/4/2010,869117534,10/22/2010,47,205.70,117.11,9667.90,5504.17,4163.73 Europe,Belarus,Snacks,Online,H,3/4/2013,663913953,3/21/2013,5747,152.58,97.44,876877.26,559987.68,316889.58 Europe,Liechtenstein,Cereal,Online,C,8/17/2015,684548079,9/26/2015,1844,205.70,117.11,379310.80,215950.84,163359.96 Middle East and North Africa,Oman,Baby Food,Offline,L,4/9/2016,238881242,5/4/2016,9123,255.28,159.42,2328919.44,1454388.66,874530.78 Asia,Bhutan,Clothes,Offline,L,7/17/2010,505087268,7/18/2010,5402,109.28,35.84,590330.56,193607.68,396722.88 Australia and Oceania,East Timor,Office Supplies,Online,C,1/29/2010,481652486,2/10/2010,529,651.21,524.96,344490.09,277703.84,66786.25 Europe,Ukraine,Cereal,Online,M,3/28/2016,137375724,5/3/2016,1384,205.70,117.11,284688.80,162080.24,122608.56 Middle East and North Africa,Oman,Personal Care,Online,C,4/14/2016,861368310,5/1/2016,6879,81.73,56.67,562220.67,389832.93,172387.74 Sub-Saharan Africa,Sao Tome and Principe,Snacks,Offline,L,6/26/2017,513054072,8/2/2017,2956,152.58,97.44,451026.48,288032.64,162993.84 Asia,Vietnam,Personal Care,Offline,L,1/9/2013,172169339,2/19/2013,7588,81.73,56.67,620167.24,430011.96,190155.28 Middle East and North Africa,Kuwait,Meat,Offline,M,1/31/2016,988762938,2/11/2016,5781,421.89,364.69,2438946.09,2108272.89,330673.20 Asia,Bhutan,Fruits,Online,L,8/15/2010,133196198,9/30/2010,4570,9.33,6.92,42638.10,31624.40,11013.70 Australia and Oceania,Papua New Guinea,Office Supplies,Online,H,9/25/2015,246142947,10/25/2015,8023,651.21,524.96,5224657.83,4211754.08,1012903.75 Europe,Germany,Office Supplies,Online,H,9/20/2013,888589513,9/30/2013,2238,651.21,524.96,1457407.98,1174860.48,282547.50 Sub-Saharan Africa,Sao Tome and Principe,Household,Offline,L,6/14/2014,791834723,7/8/2014,346,668.27,502.54,231221.42,173878.84,57342.58 Asia,Bangladesh,Vegetables,Offline,M,9/18/2013,107489907,10/9/2013,7507,154.06,90.93,1156528.42,682611.51,473916.91 Sub-Saharan Africa,Ghana,Snacks,Offline,H,2/25/2012,857478892,4/4/2012,5914,152.58,97.44,902358.12,576260.16,326097.96 Australia and Oceania,Solomon Islands,Fruits,Online,M,6/18/2011,184038007,7/17/2011,9791,9.33,6.92,91350.03,67753.72,23596.31 Sub-Saharan Africa,Sudan,Household,Online,L,8/20/2010,699716079,9/21/2010,392,668.27,502.54,261961.84,196995.68,64966.16 Central America and the Caribbean,El Salvador,Baby Food,Online,C,4/14/2017,137374436,6/2/2017,1003,255.28,159.42,256045.84,159898.26,96147.58 Central America and the Caribbean,Saint Kitts and Nevis ,Fruits,Online,L,8/6/2013,800186908,8/28/2013,1943,9.33,6.92,18128.19,13445.56,4682.63 Europe,Lithuania,Fruits,Online,C,2/9/2013,111639821,2/14/2013,5559,9.33,6.92,51865.47,38468.28,13397.19 Sub-Saharan Africa,Central African Republic,Clothes,Online,H,6/28/2011,965532004,8/9/2011,1231,109.28,35.84,134523.68,44119.04,90404.64 Middle East and North Africa,Libya,Vegetables,Online,L,1/17/2013,475974786,2/24/2013,371,154.06,90.93,57156.26,33735.03,23421.23 Asia,Bangladesh,Snacks,Offline,C,10/17/2011,327391993,11/23/2011,1421,152.58,97.44,216816.18,138462.24,78353.94 Asia,North Korea,Personal Care,Online,H,5/19/2010,924519956,7/5/2010,4855,81.73,56.67,396799.15,275132.85,121666.30 Sub-Saharan Africa,Comoros,Cosmetics,Offline,H,4/24/2016,942407500,5/7/2016,8177,437.20,263.33,3574984.40,2153249.41,1421734.99 Middle East and North Africa,Saudi Arabia,Clothes,Online,C,6/9/2015,476415956,7/25/2015,923,109.28,35.84,100865.44,33080.32,67785.12 Middle East and North Africa,United Arab Emirates,Beverages,Online,L,8/7/2013,592219150,9/17/2013,9662,47.45,31.79,458461.90,307154.98,151306.92 Europe,Croatia,Personal Care,Offline,H,2/20/2010,175803411,3/2/2010,2991,81.73,56.67,244454.43,169499.97,74954.46 Europe,Cyprus,Cosmetics,Online,L,10/26/2016,883467566,10/28/2016,6540,437.20,263.33,2859288.00,1722178.20,1137109.80 Asia,Myanmar,Office Supplies,Offline,L,3/4/2016,391822946,4/3/2016,7972,651.21,524.96,5191446.12,4184981.12,1006465.00 Sub-Saharan Africa,Mauritius ,Personal Care,Offline,C,9/25/2010,947793376,11/7/2010,1977,81.73,56.67,161580.21,112036.59,49543.62 Central America and the Caribbean,Guatemala,Office Supplies,Online,M,9/4/2011,818615186,9/9/2011,5280,651.21,524.96,3438388.80,2771788.80,666600.00 Australia and Oceania,Fiji,Snacks,Online,H,4/18/2012,141837203,5/7/2012,1635,152.58,97.44,249468.30,159314.40,90153.90 Middle East and North Africa,Egypt,Meat,Online,C,7/17/2014,475320756,9/4/2014,6829,421.89,364.69,2881086.81,2490468.01,390618.80 Asia,Mongolia,Cosmetics,Offline,C,1/22/2010,747239673,3/13/2010,3679,437.20,263.33,1608458.80,968791.07,639667.73 Europe,Denmark,Vegetables,Offline,L,4/11/2014,406080281,5/19/2014,7034,154.06,90.93,1083658.04,639601.62,444056.42 Australia and Oceania,Nauru,Personal Care,Online,C,3/8/2017,770641410,3/26/2017,8773,81.73,56.67,717017.29,497165.91,219851.38 Sub-Saharan Africa,Swaziland,Fruits,Online,L,5/30/2017,980034387,6/9/2017,2808,9.33,6.92,26198.64,19431.36,6767.28 Europe,Romania,Snacks,Online,M,11/12/2010,243683040,12/2/2010,81,152.58,97.44,12358.98,7892.64,4466.34 Sub-Saharan Africa,Togo,Meat,Offline,H,3/27/2017,991323697,4/13/2017,3566,421.89,364.69,1504459.74,1300484.54,203975.20 Sub-Saharan Africa,Liberia,Meat,Online,L,8/16/2015,323005187,8/26/2015,3268,421.89,364.69,1378736.52,1191806.92,186929.60 Central America and the Caribbean,Saint Vincent and the Grenadines,Beverages,Online,H,6/30/2016,359088838,7/22/2016,1222,47.45,31.79,57983.90,38847.38,19136.52 Europe,Greece,Snacks,Offline,C,6/10/2012,590248477,6/20/2012,6496,152.58,97.44,991159.68,632970.24,358189.44 Sub-Saharan Africa,Comoros,Cereal,Online,L,4/7/2012,127470433,4/7/2012,189,205.70,117.11,38877.30,22133.79,16743.51 Sub-Saharan Africa,Senegal,Snacks,Offline,C,6/25/2014,852053534,6/27/2014,430,152.58,97.44,65609.40,41899.20,23710.20 Sub-Saharan Africa,Sierra Leone,Personal Care,Offline,C,2/1/2011,665609109,3/14/2011,7381,81.73,56.67,603249.13,418281.27,184967.86 Middle East and North Africa,Jordan,Vegetables,Offline,C,1/29/2014,240060985,2/28/2014,8235,154.06,90.93,1268684.10,748808.55,519875.55 Middle East and North Africa,Iran,Meat,Online,H,10/22/2013,767645490,12/7/2013,2214,421.89,364.69,934064.46,807423.66,126640.80 North America,United States of America,Snacks,Online,H,1/16/2013,810911452,1/17/2013,5574,152.58,97.44,850480.92,543130.56,307350.36 Australia and Oceania,Fiji,Household,Online,L,8/13/2015,352720201,9/8/2015,6600,668.27,502.54,4410582.00,3316764.00,1093818.00 Europe,France,Personal Care,Offline,C,1/25/2015,346245563,3/2/2015,611,81.73,56.67,49937.03,34625.37,15311.66 Sub-Saharan Africa,Central African Republic,Clothes,Online,C,7/30/2013,464973866,8/8/2013,4955,109.28,35.84,541482.40,177587.20,363895.20 Europe,Albania,Personal Care,Offline,H,8/8/2010,452703940,8/24/2010,4011,81.73,56.67,327819.03,227303.37,100515.66 Middle East and North Africa,United Arab Emirates,Fruits,Offline,C,3/26/2014,573547112,4/30/2014,4191,9.33,6.92,39102.03,29001.72,10100.31 Middle East and North Africa,Syria,Clothes,Offline,L,9/12/2014,261927211,10/18/2014,8937,109.28,35.84,976635.36,320302.08,656333.28 Sub-Saharan Africa,Burundi,Cosmetics,Offline,L,11/12/2010,372580564,11/13/2010,3723,437.20,263.33,1627695.60,980377.59,647318.01 Europe,Montenegro,Meat,Offline,C,1/7/2014,930555999,1/10/2014,1054,421.89,364.69,444672.06,384383.26,60288.80 Middle East and North Africa,United Arab Emirates,Personal Care,Offline,C,10/18/2013,681214845,11/12/2013,5466,81.73,56.67,446736.18,309758.22,136977.96 Europe,Austria,Cosmetics,Offline,H,4/5/2012,240230929,5/13/2012,8525,437.20,263.33,3727130.00,2244888.25,1482241.75 North America,United States of America,Baby Food,Offline,C,7/12/2012,743590581,8/10/2012,3832,255.28,159.42,978232.96,610897.44,367335.52 Europe,Poland,Clothes,Offline,M,1/5/2015,697592628,1/27/2015,2015,109.28,35.84,220199.20,72217.60,147981.60 Europe,Estonia,Snacks,Offline,L,8/7/2013,928848397,8/10/2013,5737,152.58,97.44,875351.46,559013.28,316338.18 Sub-Saharan Africa,South Sudan,Baby Food,Online,L,8/13/2014,534281718,8/13/2014,4688,255.28,159.42,1196752.64,747360.96,449391.68 Sub-Saharan Africa,Burundi,Vegetables,Offline,M,4/17/2010,931128919,6/6/2010,594,154.06,90.93,91511.64,54012.42,37499.22 Sub-Saharan Africa,Cote d'Ivoire,Office Supplies,Online,C,11/14/2012,906938827,12/13/2012,2208,651.21,524.96,1437871.68,1159111.68,278760.00 Sub-Saharan Africa,Swaziland,Vegetables,Offline,M,12/6/2012,669572770,1/5/2013,317,154.06,90.93,48837.02,28824.81,20012.21 Europe,Moldova ,Office Supplies,Offline,C,6/25/2013,497204577,7/25/2013,2738,651.21,524.96,1783012.98,1437340.48,345672.50 Europe,Sweden,Meat,Online,C,1/7/2011,288320577,1/28/2011,9321,421.89,364.69,3932436.69,3399275.49,533161.20 Sub-Saharan Africa,Angola,Snacks,Offline,M,6/18/2014,911719596,7/22/2014,6944,152.58,97.44,1059515.52,676623.36,382892.16 Europe,Denmark,Fruits,Online,L,1/31/2011,156512963,2/11/2011,4519,9.33,6.92,42162.27,31271.48,10890.79 Europe,Finland,Household,Online,H,9/21/2015,382124507,10/26/2015,7988,668.27,502.54,5338140.76,4014289.52,1323851.24 Europe,Luxembourg,Household,Online,C,12/28/2013,868290555,12/28/2013,5325,668.27,502.54,3558537.75,2676025.50,882512.25 Central America and the Caribbean,Trinidad and Tobago,Fruits,Offline,L,7/1/2011,965059936,8/12/2011,1536,9.33,6.92,14330.88,10629.12,3701.76 Asia,Kyrgyzstan,Clothes,Offline,C,12/1/2014,542793977,12/5/2014,3655,109.28,35.84,399418.40,130995.20,268423.20 Asia,China,Baby Food,Offline,M,1/20/2013,442166507,2/12/2013,5750,255.28,159.42,1467860.00,916665.00,551195.00 Sub-Saharan Africa,Mozambique,Cosmetics,Online,M,12/6/2010,224163854,1/23/2011,3921,437.20,263.33,1714261.20,1032516.93,681744.27 Asia,Thailand,Snacks,Online,C,11/3/2010,420084846,11/15/2010,1296,152.58,97.44,197743.68,126282.24,71461.44 Europe,Slovenia,Cosmetics,Online,C,2/23/2016,281540811,3/12/2016,3037,437.20,263.33,1327776.40,799733.21,528043.19 Sub-Saharan Africa,Sudan,Personal Care,Offline,L,5/4/2012,930455577,5/7/2012,1337,81.73,56.67,109273.01,75767.79,33505.22 Asia,Turkmenistan,Baby Food,Offline,H,4/10/2016,409065473,4/28/2016,419,255.28,159.42,106962.32,66796.98,40165.34 Europe,San Marino,Clothes,Offline,M,10/14/2011,429919326,10/17/2011,1537,109.28,35.84,167963.36,55086.08,112877.28 Asia,Indonesia,Personal Care,Online,L,1/24/2014,525878465,2/3/2014,7979,81.73,56.67,652123.67,452169.93,199953.74 Europe,Czech Republic,Household,Online,C,11/14/2012,300116717,12/16/2012,61,668.27,502.54,40764.47,30654.94,10109.53 Sub-Saharan Africa,Gabon,Personal Care,Offline,H,3/1/2014,776120412,3/22/2014,132,81.73,56.67,10788.36,7480.44,3307.92 Asia,Sri Lanka,Vegetables,Online,C,8/13/2013,347688376,9/3/2013,7572,154.06,90.93,1166542.32,688521.96,478020.36 Asia,Myanmar,Vegetables,Online,L,7/15/2015,628931939,8/23/2015,3792,154.06,90.93,584195.52,344806.56,239388.96 Sub-Saharan Africa,Gabon,Meat,Online,H,12/8/2013,604274928,12/25/2013,7234,421.89,364.69,3051952.26,2638167.46,413784.80 Asia,Myanmar,Cereal,Online,L,6/20/2011,678453671,7/4/2011,8373,205.70,117.11,1722326.10,980562.03,741764.07 Europe,Montenegro,Household,Offline,H,8/18/2015,426516997,9/13/2015,4713,668.27,502.54,3149556.51,2368471.02,781085.49 Asia,South Korea,Personal Care,Offline,M,4/11/2012,843826234,4/22/2012,5789,81.73,56.67,473134.97,328062.63,145072.34 Central America and the Caribbean,Cuba,Fruits,Online,L,10/28/2014,296055209,11/14/2014,8170,9.33,6.92,76226.10,56536.40,19689.70 North America,Mexico,Household,Offline,C,1/15/2015,369190251,1/19/2015,454,668.27,502.54,303394.58,228153.16,75241.42 Sub-Saharan Africa,Seychelles ,Cereal,Online,C,2/10/2017,919530189,3/5/2017,8272,205.70,117.11,1701550.40,968733.92,732816.48 Europe,France,Personal Care,Online,H,2/24/2011,523686349,3/31/2011,9283,81.73,56.67,758699.59,526067.61,232631.98 Middle East and North Africa,Libya,Cereal,Online,H,10/30/2014,528582561,12/9/2014,8181,205.70,117.11,1682831.70,958076.91,724754.79 Europe,Vatican City,Meat,Online,M,8/8/2016,101455152,8/9/2016,1689,421.89,364.69,712572.21,615961.41,96610.80 Sub-Saharan Africa,Liberia,Clothes,Offline,L,5/9/2017,279852950,5/31/2017,3562,109.28,35.84,389255.36,127662.08,261593.28 Europe,Iceland,Meat,Online,H,6/11/2011,821637284,6/29/2011,9586,421.89,364.69,4044237.54,3495918.34,548319.20 Asia,Japan,Office Supplies,Online,C,3/27/2013,654981982,5/8/2013,2579,651.21,524.96,1679470.59,1353871.84,325598.75 Europe,Netherlands,Baby Food,Offline,M,6/13/2015,128373372,6/24/2015,7388,255.28,159.42,1886008.64,1177794.96,708213.68 Central America and the Caribbean,Nicaragua,Beverages,Online,M,8/23/2015,560610282,9/22/2015,5895,47.45,31.79,279717.75,187402.05,92315.70 North America,Greenland,Meat,Online,C,6/12/2012,190804040,6/30/2012,2010,421.89,364.69,847998.90,733026.90,114972.00 Europe,Serbia,Fruits,Online,L,11/29/2016,928378474,12/31/2016,6676,9.33,6.92,62287.08,46197.92,16089.16 Sub-Saharan Africa,Central African Republic,Fruits,Offline,H,11/12/2010,703069913,12/24/2010,2866,9.33,6.92,26739.78,19832.72,6907.06 Sub-Saharan Africa,Lesotho,Snacks,Online,L,4/10/2011,214927184,4/15/2011,585,152.58,97.44,89259.30,57002.40,32256.90 Middle East and North Africa,Somalia,Baby Food,Offline,C,6/15/2013,684311616,7/29/2013,1869,255.28,159.42,477118.32,297955.98,179162.34 Australia and Oceania,Nauru,Beverages,Online,L,7/28/2017,701897037,8/15/2017,5786,47.45,31.79,274545.70,183936.94,90608.76 Sub-Saharan Africa,Chad,Office Supplies,Online,M,4/14/2017,278669774,4/15/2017,3434,651.21,524.96,2236255.14,1802712.64,433542.50 Sub-Saharan Africa,Angola,Personal Care,Offline,C,2/8/2011,395928657,2/12/2011,2943,81.73,56.67,240531.39,166779.81,73751.58 Sub-Saharan Africa,Tanzania,Baby Food,Offline,C,10/2/2013,755285012,10/4/2013,4474,255.28,159.42,1142122.72,713245.08,428877.64 Sub-Saharan Africa,Rwanda,Personal Care,Online,H,7/4/2014,228662669,7/12/2014,5220,81.73,56.67,426630.60,295817.40,130813.20 Sub-Saharan Africa,Seychelles ,Snacks,Online,M,4/14/2011,908297955,6/2/2011,4404,152.58,97.44,671962.32,429125.76,242836.56 Sub-Saharan Africa,Botswana,Meat,Online,M,6/7/2014,456739699,7/14/2014,8282,421.89,364.69,3494092.98,3020362.58,473730.40 Sub-Saharan Africa,Uganda,Beverages,Online,H,8/19/2012,656849229,8/20/2012,5138,47.45,31.79,243798.10,163337.02,80461.08 Central America and the Caribbean,Belize,Personal Care,Offline,L,7/30/2014,661800372,8/8/2014,292,81.73,56.67,23865.16,16547.64,7317.52 Central America and the Caribbean,Costa Rica,Clothes,Online,C,11/14/2014,145079457,12/24/2014,1090,109.28,35.84,119115.20,39065.60,80049.60 Middle East and North Africa,Morocco,Clothes,Online,M,12/18/2012,650485312,12/27/2012,1914,109.28,35.84,209161.92,68597.76,140564.16 Sub-Saharan Africa,Botswana,Clothes,Offline,L,12/16/2016,642129266,2/4/2017,9174,109.28,35.84,1002534.72,328796.16,673738.56 North America,Canada,Baby Food,Online,L,1/28/2017,454435145,2/27/2017,6313,255.28,159.42,1611582.64,1006418.46,605164.18 Middle East and North Africa,Turkey,Fruits,Offline,H,3/8/2012,942139279,4/11/2012,8804,9.33,6.92,82141.32,60923.68,21217.64 Sub-Saharan Africa,Central African Republic,Household,Offline,L,7/28/2013,330290496,8/27/2013,9152,668.27,502.54,6116007.04,4599246.08,1516760.96 Central America and the Caribbean,Haiti,Beverages,Offline,H,11/15/2010,964250123,11/19/2010,1894,47.45,31.79,89870.30,60210.26,29660.04 Asia,Uzbekistan,Cereal,Online,C,9/20/2013,759691989,10/18/2013,8596,205.70,117.11,1768197.20,1006677.56,761519.64 Europe,Bosnia and Herzegovina,Personal Care,Offline,H,2/4/2010,852602422,3/14/2010,2858,81.73,56.67,233584.34,161962.86,71621.48 North America,Canada,Fruits,Online,H,7/18/2015,649280250,7/24/2015,5309,9.33,6.92,49532.97,36738.28,12794.69 Asia,Thailand,Personal Care,Online,H,5/21/2016,976336801,6/12/2016,8611,81.73,56.67,703777.03,487985.37,215791.66 Sub-Saharan Africa,Madagascar,Cereal,Offline,M,5/17/2011,930695903,5/27/2011,2455,205.70,117.11,504993.50,287505.05,217488.45 Asia,Turkmenistan,Baby Food,Offline,C,6/18/2015,129593884,6/27/2015,8565,255.28,159.42,2186473.20,1365432.30,821040.90 Asia,Taiwan,Beverages,Offline,H,8/4/2010,960579574,9/20/2010,5697,47.45,31.79,270322.65,181107.63,89215.02 Central America and the Caribbean,Jamaica,Beverages,Offline,H,1/25/2010,931514298,2/7/2010,4636,47.45,31.79,219978.20,147378.44,72599.76 Sub-Saharan Africa,Zimbabwe,Cosmetics,Online,M,11/23/2016,320571887,12/29/2016,3200,437.20,263.33,1399040.00,842656.00,556384.00 Middle East and North Africa,Afghanistan,Clothes,Online,M,6/5/2012,826238667,6/12/2012,1237,109.28,35.84,135179.36,44334.08,90845.28 Sub-Saharan Africa,Sierra Leone,Snacks,Offline,M,2/26/2013,617313468,3/7/2013,5628,152.58,97.44,858720.24,548392.32,310327.92 Europe,Sweden,Cereal,Online,L,12/5/2013,182907617,1/7/2014,5283,205.70,117.11,1086713.10,618692.13,468020.97 Sub-Saharan Africa,Tanzania,Household,Online,C,6/7/2014,982444941,6/18/2014,6145,668.27,502.54,4106519.15,3088108.30,1018410.85 Sub-Saharan Africa,Ethiopia,Cereal,Online,L,6/6/2015,495661771,7/16/2015,6188,205.70,117.11,1272871.60,724676.68,548194.92 Middle East and North Africa,Iraq,Cosmetics,Offline,M,12/15/2014,772606933,12/15/2014,415,437.20,263.33,181438.00,109281.95,72156.05 Middle East and North Africa,Iraq,Meat,Online,M,2/10/2012,783641755,3/22/2012,5864,421.89,364.69,2473962.96,2138542.16,335420.80 Asia,Vietnam,Household,Online,C,11/6/2010,469440066,12/22/2010,6602,668.27,502.54,4411918.54,3317769.08,1094149.46 Europe,France,Cereal,Online,C,3/9/2016,290988194,3/22/2016,8728,205.70,117.11,1795349.60,1022136.08,773213.52 Europe,Romania,Cosmetics,Online,L,4/11/2015,779584968,5/10/2015,5371,437.20,263.33,2348201.20,1414345.43,933855.77 Asia,South Korea,Cosmetics,Online,M,6/24/2011,286841714,8/7/2011,1692,437.20,263.33,739742.40,445554.36,294188.04 Asia,Laos,Meat,Offline,M,1/1/2013,834682261,2/16/2013,9885,421.89,364.69,4170382.65,3604960.65,565422.00 Europe,France,Baby Food,Offline,C,12/26/2013,465342938,1/31/2014,4171,255.28,159.42,1064772.88,664940.82,399832.06 Asia,Turkmenistan,Cereal,Offline,M,5/29/2013,891372573,5/31/2013,5807,205.70,117.11,1194499.90,680057.77,514442.13 North America,Greenland,Meat,Offline,C,4/27/2011,745632493,4/27/2011,8079,421.89,364.69,3408449.31,2946330.51,462118.80 Asia,Maldives,Fruits,Online,M,8/13/2012,531296527,9/2/2012,1304,9.33,6.92,12166.32,9023.68,3142.64 Middle East and North Africa,Azerbaijan,Cosmetics,Online,C,9/11/2015,371851003,9/26/2015,7830,437.20,263.33,3423276.00,2061873.90,1361402.10 Central America and the Caribbean,Cuba,Cereal,Offline,L,3/20/2016,461094748,4/18/2016,7037,205.70,117.11,1447510.90,824103.07,623407.83 Asia,India,Meat,Offline,C,12/5/2010,613139092,12/23/2010,338,421.89,364.69,142598.82,123265.22,19333.60 Central America and the Caribbean,Costa Rica,Fruits,Offline,C,7/20/2016,712407863,8/15/2016,6173,9.33,6.92,57594.09,42717.16,14876.93 Middle East and North Africa,Israel,Household,Online,C,1/9/2013,263637387,1/19/2013,5016,668.27,502.54,3352042.32,2520740.64,831301.68 Middle East and North Africa,Pakistan,Office Supplies,Offline,L,6/3/2015,641876494,6/19/2015,4373,651.21,524.96,2847741.33,2295650.08,552091.25 Australia and Oceania,Kiribati,Personal Care,Offline,M,2/28/2017,142486512,3/4/2017,3780,81.73,56.67,308939.40,214212.60,94726.80 Australia and Oceania,Palau,Clothes,Offline,C,7/10/2016,731141269,7/31/2016,9804,109.28,35.84,1071381.12,351375.36,720005.76 Sub-Saharan Africa,Niger,Snacks,Online,L,11/3/2012,393827092,11/30/2012,1043,152.58,97.44,159140.94,101629.92,57511.02 Europe,Romania,Fruits,Offline,H,4/22/2010,786842811,5/14/2010,3128,9.33,6.92,29184.24,21645.76,7538.48 Sub-Saharan Africa,Botswana,Snacks,Online,H,3/3/2014,486799752,3/20/2014,3719,152.58,97.44,567445.02,362379.36,205065.66 Central America and the Caribbean,Trinidad and Tobago,Snacks,Online,L,10/28/2011,840621745,11/11/2011,7510,152.58,97.44,1145875.80,731774.40,414101.40 Europe,Switzerland,Snacks,Online,L,6/8/2014,115545117,7/3/2014,1223,152.58,97.44,186605.34,119169.12,67436.22 Sub-Saharan Africa,Comoros,Beverages,Online,M,4/23/2015,249118697,4/26/2015,8613,47.45,31.79,408686.85,273807.27,134879.58 Central America and the Caribbean,Saint Kitts and Nevis ,Personal Care,Offline,L,5/21/2016,999203813,6/5/2016,5468,81.73,56.67,446899.64,309871.56,137028.08 Asia,South Korea,Clothes,Offline,H,11/20/2016,393974292,12/2/2016,4603,109.28,35.84,503015.84,164971.52,338044.32 Central America and the Caribbean,Honduras,Snacks,Online,M,2/4/2017,581916463,2/15/2017,868,152.58,97.44,132439.44,84577.92,47861.52 Europe,Greece,Meat,Online,H,7/29/2014,181829154,8/18/2014,6142,421.89,364.69,2591248.38,2239925.98,351322.40 Middle East and North Africa,Somalia,Baby Food,Offline,L,7/12/2015,132823693,7/16/2015,4337,255.28,159.42,1107149.36,691404.54,415744.82 Central America and the Caribbean,Belize,Snacks,Online,H,11/10/2015,544323909,12/3/2015,6396,152.58,97.44,975901.68,623226.24,352675.44 Central America and the Caribbean,Barbados,Cosmetics,Offline,M,7/16/2012,246066129,8/30/2012,5290,437.20,263.33,2312788.00,1393015.70,919772.30 Sub-Saharan Africa,Nigeria,Vegetables,Offline,C,12/20/2014,838099181,1/17/2015,1027,154.06,90.93,158219.62,93385.11,64834.51 Sub-Saharan Africa,Swaziland,Fruits,Offline,H,11/19/2010,840784394,1/3/2011,5641,9.33,6.92,52630.53,39035.72,13594.81 Central America and the Caribbean,Grenada,Cosmetics,Online,C,8/8/2015,644795596,8/12/2015,8201,437.20,263.33,3585477.20,2159569.33,1425907.87 Sub-Saharan Africa,The Gambia,Baby Food,Offline,L,3/16/2015,261119115,4/16/2015,9804,255.28,159.42,2502765.12,1562953.68,939811.44 North America,Canada,Personal Care,Offline,H,10/11/2015,671053779,11/16/2015,8580,81.73,56.67,701243.40,486228.60,215014.80 Australia and Oceania,Solomon Islands,Household,Offline,M,11/22/2016,676210916,1/4/2017,4692,668.27,502.54,3135522.84,2357917.68,777605.16 Central America and the Caribbean,The Bahamas,Cereal,Offline,M,5/29/2015,948514354,6/13/2015,5330,205.70,117.11,1096381.00,624196.30,472184.70 Central America and the Caribbean,Guatemala,Meat,Online,C,10/21/2016,880200421,11/20/2016,9720,421.89,364.69,4100770.80,3544786.80,555984.00 Sub-Saharan Africa,Senegal,Office Supplies,Online,H,4/16/2016,833817946,4/16/2016,4114,651.21,524.96,2679077.94,2159685.44,519392.50 Australia and Oceania,Fiji,Vegetables,Online,H,2/14/2010,792228257,2/20/2010,6801,154.06,90.93,1047762.06,618414.93,429347.13 Sub-Saharan Africa,Sao Tome and Principe,Clothes,Online,L,7/24/2014,808605182,8/5/2014,3097,109.28,35.84,338440.16,110996.48,227443.68 Europe,Ukraine,Beverages,Offline,H,8/20/2016,556435048,10/7/2016,351,47.45,31.79,16654.95,11158.29,5496.66 Middle East and North Africa,Oman,Cosmetics,Online,C,10/21/2015,679516685,11/21/2015,2942,437.20,263.33,1286242.40,774716.86,511525.54 Middle East and North Africa,Afghanistan,Personal Care,Offline,L,8/2/2012,541961419,9/14/2012,7282,81.73,56.67,595157.86,412670.94,182486.92 Sub-Saharan Africa,Sudan,Vegetables,Offline,C,5/10/2012,478193080,5/13/2012,6814,154.06,90.93,1049764.84,619597.02,430167.82 Sub-Saharan Africa,Sudan,Meat,Offline,C,12/24/2013,442947995,2/6/2014,7010,421.89,364.69,2957448.90,2556476.90,400972.00 Asia,Cambodia,Beverages,Offline,L,8/7/2013,461274993,9/11/2013,376,47.45,31.79,17841.20,11953.04,5888.16 Asia,India,Meat,Offline,L,12/30/2015,178535401,1/10/2016,1448,421.89,364.69,610896.72,528071.12,82825.60 Asia,South Korea,Cosmetics,Offline,C,8/28/2015,210403048,10/14/2015,1793,437.20,263.33,783899.60,472150.69,311748.91 Asia,Thailand,Office Supplies,Online,L,9/15/2015,792864263,10/9/2015,5009,651.21,524.96,3261910.89,2629524.64,632386.25 Sub-Saharan Africa,Benin,Baby Food,Offline,H,7/18/2016,432217872,8/6/2016,1728,255.28,159.42,441123.84,275477.76,165646.08 Australia and Oceania,Tonga,Meat,Offline,L,1/27/2012,855075204,2/15/2012,4609,421.89,364.69,1944491.01,1680856.21,263634.80 Sub-Saharan Africa,Kenya,Vegetables,Online,L,3/6/2016,258360087,4/25/2016,3346,154.06,90.93,515484.76,304251.78,211232.98 Central America and the Caribbean,Saint Vincent and the Grenadines,Beverages,Offline,L,7/12/2013,959308850,8/29/2013,9662,47.45,31.79,458461.90,307154.98,151306.92 Central America and the Caribbean,Belize,Household,Online,L,5/10/2016,845470321,6/22/2016,2311,668.27,502.54,1544371.97,1161369.94,383002.03 Europe,Macedonia,Personal Care,Offline,M,4/2/2015,124705827,4/26/2015,2080,81.73,56.67,169998.40,117873.60,52124.80 Europe,Portugal,Cosmetics,Online,M,3/18/2013,875189197,4/7/2013,6787,437.20,263.33,2967276.40,1787220.71,1180055.69 Sub-Saharan Africa,Sao Tome and Principe,Fruits,Offline,C,4/23/2014,295406758,5/16/2014,6279,9.33,6.92,58583.07,43450.68,15132.39 Asia,Turkmenistan,Baby Food,Online,C,4/29/2012,154157340,5/12/2012,7437,255.28,159.42,1898517.36,1185606.54,712910.82 Sub-Saharan Africa,Eritrea,Cosmetics,Online,C,3/31/2017,940552270,5/3/2017,9173,437.20,263.33,4010435.60,2415526.09,1594909.51 Europe,Switzerland,Snacks,Offline,H,8/13/2013,514015376,8/29/2013,7427,152.58,97.44,1133211.66,723686.88,409524.78 Middle East and North Africa,Afghanistan,Personal Care,Online,L,5/5/2017,854282987,5/11/2017,175,81.73,56.67,14302.75,9917.25,4385.50 Sub-Saharan Africa,Ghana,Fruits,Online,H,4/25/2011,411403930,6/1/2011,2420,9.33,6.92,22578.60,16746.40,5832.20 Europe,Germany,Vegetables,Offline,H,5/8/2017,855739533,5/13/2017,1199,154.06,90.93,184717.94,109025.07,75692.87 Europe,Czech Republic,Personal Care,Offline,L,9/8/2016,327963626,10/24/2016,580,81.73,56.67,47403.40,32868.60,14534.80 Australia and Oceania,Kiribati,Cosmetics,Online,L,5/5/2014,189062535,5/11/2014,6660,437.20,263.33,2911752.00,1753777.80,1157974.20 Sub-Saharan Africa,Sierra Leone,Clothes,Offline,M,8/11/2012,970335090,9/4/2012,2571,109.28,35.84,280958.88,92144.64,188814.24 Sub-Saharan Africa,Burkina Faso,Office Supplies,Online,M,11/8/2014,123392617,12/26/2014,3472,651.21,524.96,2261001.12,1822661.12,438340.00 Europe,Croatia,Personal Care,Offline,M,2/20/2014,570158946,3/8/2014,1557,81.73,56.67,127253.61,88235.19,39018.42 Central America and the Caribbean,Nicaragua,Cosmetics,Online,H,3/3/2012,352870404,4/3/2012,1049,437.20,263.33,458622.80,276233.17,182389.63 Sub-Saharan Africa,Sao Tome and Principe,Personal Care,Online,L,7/5/2015,284075820,8/5/2015,3203,81.73,56.67,261781.19,181514.01,80267.18 Asia,Philippines,Meat,Offline,M,8/14/2016,796636521,9/1/2016,1305,421.89,364.69,550566.45,475920.45,74646.00 Sub-Saharan Africa,Swaziland,Baby Food,Offline,H,11/1/2012,593726336,12/7/2012,5672,255.28,159.42,1447948.16,904230.24,543717.92 Central America and the Caribbean,Panama,Beverages,Offline,C,2/14/2010,698831593,3/23/2010,8653,47.45,31.79,410584.85,275078.87,135505.98 Asia,Taiwan,Baby Food,Online,H,9/20/2011,405751121,10/5/2011,9628,255.28,159.42,2457835.84,1534895.76,922940.08 Asia,Indonesia,Beverages,Offline,L,5/13/2014,428596246,6/7/2014,8,47.45,31.79,379.60,254.32,125.28 Europe,Poland,Fruits,Offline,L,1/25/2012,651790797,2/6/2012,8236,9.33,6.92,76841.88,56993.12,19848.76 Europe,France,Meat,Offline,H,1/20/2015,580071103,2/23/2015,4785,421.89,364.69,2018743.65,1745041.65,273702.00 Asia,Maldives,Fruits,Online,M,9/7/2015,688485991,10/12/2015,7159,9.33,6.92,66793.47,49540.28,17253.19 Sub-Saharan Africa,Sudan,Clothes,Offline,M,12/13/2014,172396790,1/8/2015,4896,109.28,35.84,535034.88,175472.64,359562.24 Europe,Luxembourg,Office Supplies,Online,L,2/14/2011,997477328,2/17/2011,4562,651.21,524.96,2970820.02,2394867.52,575952.50 Middle East and North Africa,Israel,Fruits,Offline,C,2/12/2011,249713933,3/12/2011,4757,9.33,6.92,44382.81,32918.44,11464.37 Asia,Turkmenistan,Personal Care,Offline,C,7/19/2011,485405433,9/6/2011,1109,81.73,56.67,90638.57,62847.03,27791.54 Asia,Kyrgyzstan,Office Supplies,Offline,M,2/3/2010,281163156,3/3/2010,1281,651.21,524.96,834200.01,672473.76,161726.25 Middle East and North Africa,Egypt,Household,Offline,L,11/11/2016,983910930,11/27/2016,9964,668.27,502.54,6658642.28,5007308.56,1651333.72 Central America and the Caribbean,Antigua and Barbuda ,Vegetables,Offline,H,9/27/2012,860885083,10/25/2012,3882,154.06,90.93,598060.92,352990.26,245070.66 Sub-Saharan Africa,Cape Verde,Cosmetics,Online,L,9/27/2013,949634444,10/10/2013,6790,437.20,263.33,2968588.00,1788010.70,1180577.30 Australia and Oceania,Papua New Guinea,Beverages,Offline,M,3/26/2014,108020341,5/5/2014,4474,47.45,31.79,212291.30,142228.46,70062.84 Asia,Uzbekistan,Vegetables,Online,L,6/9/2013,864216601,6/19/2013,9752,154.06,90.93,1502393.12,886749.36,615643.76 Sub-Saharan Africa,Sao Tome and Principe,Beverages,Offline,C,8/23/2011,866709554,10/3/2011,7472,47.45,31.79,354546.40,237534.88,117011.52 Middle East and North Africa,Bahrain,Fruits,Online,M,12/24/2013,534298026,1/31/2014,9514,9.33,6.92,88765.62,65836.88,22928.74 Asia,Brunei,Household,Offline,M,7/6/2011,806093347,7/25/2011,9789,668.27,502.54,6541695.03,4919364.06,1622330.97 Sub-Saharan Africa,Republic of the Congo,Personal Care,Offline,C,4/13/2015,891519343,5/25/2015,9240,81.73,56.67,755185.20,523630.80,231554.40 Europe,Slovenia,Vegetables,Online,H,9/9/2014,520312345,10/4/2014,840,154.06,90.93,129410.40,76381.20,53029.20 Australia and Oceania,Nauru,Baby Food,Offline,M,7/25/2011,392521178,8/23/2011,4594,255.28,159.42,1172756.32,732375.48,440380.84 Central America and the Caribbean,El Salvador,Clothes,Offline,L,5/12/2016,828507173,6/4/2016,2538,109.28,35.84,277352.64,90961.92,186390.72 Europe,Croatia,Household,Offline,M,2/8/2014,418944156,2/27/2014,3740,668.27,502.54,2499329.80,1879499.60,619830.20 Sub-Saharan Africa,South Sudan,Household,Offline,H,8/6/2013,974818456,9/14/2013,9299,668.27,502.54,6214242.73,4673119.46,1541123.27 Europe,Romania,Household,Online,L,5/7/2013,777428901,6/21/2013,7343,668.27,502.54,4907106.61,3690151.22,1216955.39 Asia,Uzbekistan,Office Supplies,Online,C,12/7/2012,428386819,12/17/2012,8034,651.21,524.96,5231821.14,4217528.64,1014292.50 Europe,Estonia,Clothes,Online,H,10/11/2016,599616038,11/30/2016,8565,109.28,35.84,935983.20,306969.60,629013.60 Europe,Macedonia,Fruits,Offline,L,3/25/2015,683352887,5/3/2015,8160,9.33,6.92,76132.80,56467.20,19665.60 Asia,Singapore,Meat,Online,H,1/20/2011,142146193,3/4/2011,3072,421.89,364.69,1296046.08,1120327.68,175718.40 Asia,India,Beverages,Online,H,8/30/2015,758857285,10/7/2015,1589,47.45,31.79,75398.05,50514.31,24883.74 Middle East and North Africa,Kuwait,Cosmetics,Online,H,1/6/2015,786659991,2/17/2015,9028,437.20,263.33,3947041.60,2377343.24,1569698.36 Europe,Ukraine,Fruits,Offline,C,4/20/2011,799040639,5/24/2011,2736,9.33,6.92,25526.88,18933.12,6593.76 Europe,Armenia,Household,Offline,C,7/17/2011,539798057,8/17/2011,7095,668.27,502.54,4741375.65,3565521.30,1175854.35 Sub-Saharan Africa,Burundi,Meat,Offline,C,4/4/2016,273043572,4/18/2016,8516,421.89,364.69,3592815.24,3105700.04,487115.20 Europe,Belarus,Beverages,Online,M,9/7/2015,333201014,9/10/2015,440,47.45,31.79,20878.00,13987.60,6890.40 Central America and the Caribbean,Cuba,Beverages,Offline,C,3/31/2016,675006711,5/1/2016,8341,47.45,31.79,395780.45,265160.39,130620.06 Europe,Liechtenstein,Office Supplies,Online,H,2/6/2014,423509490,2/23/2014,4724,651.21,524.96,3076316.04,2479911.04,596405.00 Europe,Sweden,Vegetables,Online,L,1/7/2014,124070680,2/24/2014,4126,154.06,90.93,635651.56,375177.18,260474.38 Asia,Indonesia,Office Supplies,Offline,H,6/29/2010,392364108,8/11/2010,8114,651.21,524.96,5283917.94,4259525.44,1024392.50 Asia,Brunei,Office Supplies,Online,M,3/20/2014,564376103,4/28/2014,286,651.21,524.96,186246.06,150138.56,36107.50 Sub-Saharan Africa,Sierra Leone,Baby Food,Online,L,6/13/2010,946405494,6/23/2010,1272,255.28,159.42,324716.16,202782.24,121933.92 Sub-Saharan Africa,Uganda,Personal Care,Online,L,10/21/2015,565063607,12/4/2015,3733,81.73,56.67,305098.09,211549.11,93548.98 Sub-Saharan Africa,Mozambique,Snacks,Offline,H,11/18/2013,317274272,12/4/2013,7362,152.58,97.44,1123293.96,717353.28,405940.68 Middle East and North Africa,Pakistan,Baby Food,Offline,C,1/26/2012,720273816,2/9/2012,3883,255.28,159.42,991252.24,619027.86,372224.38 Asia,Mongolia,Meat,Offline,M,1/9/2015,561611068,1/25/2015,2050,421.89,364.69,864874.50,747614.50,117260.00 Europe,Andorra,Personal Care,Offline,C,5/1/2013,949147355,5/14/2013,2649,81.73,56.67,216502.77,150118.83,66383.94 Asia,Malaysia,Vegetables,Offline,L,7/28/2017,361056506,8/29/2017,3498,154.06,90.93,538901.88,318073.14,220828.74 Central America and the Caribbean,Honduras,Beverages,Offline,C,8/31/2016,495824849,9/16/2016,4446,47.45,31.79,210962.70,141338.34,69624.36 Europe,Romania,Vegetables,Online,L,12/20/2011,422251212,2/3/2012,2372,154.06,90.93,365430.32,215685.96,149744.36 Asia,Kazakhstan,Office Supplies,Online,M,6/19/2013,629446923,6/30/2013,6187,651.21,524.96,4029036.27,3247927.52,781108.75 Middle East and North Africa,Israel,Cosmetics,Offline,L,4/10/2013,776835811,5/29/2013,1834,437.20,263.33,801824.80,482947.22,318877.58 Central America and the Caribbean,Guatemala,Vegetables,Online,C,2/27/2012,144154202,2/28/2012,7287,154.06,90.93,1122635.22,662606.91,460028.31 Europe,Luxembourg,Personal Care,Offline,M,9/20/2015,781450927,9/22/2015,7550,81.73,56.67,617061.50,427858.50,189203.00 Central America and the Caribbean,Grenada,Office Supplies,Online,M,6/29/2015,759087312,8/16/2015,9659,651.21,524.96,6290037.39,5070588.64,1219448.75 Central America and the Caribbean,Belize,Personal Care,Offline,C,6/6/2015,917737185,6/30/2015,7682,81.73,56.67,627849.86,435338.94,192510.92 Central America and the Caribbean,Dominica,Office Supplies,Online,C,12/21/2012,818386876,1/18/2013,7718,651.21,524.96,5026038.78,4051641.28,974397.50 Europe,Denmark,Office Supplies,Online,L,6/2/2010,992335212,7/19/2010,2896,651.21,524.96,1885904.16,1520284.16,365620.00 Europe,Germany,Clothes,Online,L,2/18/2011,691193521,3/20/2011,8377,109.28,35.84,915438.56,300231.68,615206.88 Central America and the Caribbean,Nicaragua,Snacks,Offline,L,10/1/2015,136885631,10/16/2015,6355,152.58,97.44,969645.90,619231.20,350414.70 Australia and Oceania,Papua New Guinea,Personal Care,Offline,L,10/31/2010,971647870,11/4/2010,1052,81.73,56.67,85979.96,59616.84,26363.12 Central America and the Caribbean,Nicaragua,Fruits,Online,M,7/4/2010,408029067,8/10/2010,3723,9.33,6.92,34735.59,25763.16,8972.43 Sub-Saharan Africa,Democratic Republic of the Congo,Clothes,Offline,M,10/27/2014,678890550,11/10/2014,7655,109.28,35.84,836538.40,274355.20,562183.20 Sub-Saharan Africa,Guinea,Baby Food,Offline,H,7/12/2013,487406146,8/11/2013,3165,255.28,159.42,807961.20,504564.30,303396.90 Middle East and North Africa,Bahrain,Snacks,Offline,H,8/6/2012,857062184,9/13/2012,2601,152.58,97.44,396860.58,253441.44,143419.14 Sub-Saharan Africa,Republic of the Congo,Cosmetics,Offline,L,4/8/2015,181657493,5/7/2015,5344,437.20,263.33,2336396.80,1407235.52,929161.28 Asia,Philippines,Office Supplies,Offline,M,9/13/2010,975303399,9/23/2010,2804,651.21,524.96,1825992.84,1471987.84,354005.00 Europe,Latvia,Office Supplies,Online,H,8/18/2015,422423732,9/14/2015,3424,651.21,524.96,2229743.04,1797463.04,432280.00 Central America and the Caribbean,Costa Rica,Personal Care,Offline,C,7/23/2017,727754819,8/28/2017,7678,81.73,56.67,627522.94,435112.26,192410.68 Australia and Oceania,Tuvalu,Vegetables,Offline,M,6/2/2016,566345489,7/4/2016,3070,154.06,90.93,472964.20,279155.10,193809.10 Sub-Saharan Africa,Tanzania,Cosmetics,Offline,C,3/17/2013,933557069,4/12/2013,9137,437.20,263.33,3994696.40,2406046.21,1588650.19 Australia and Oceania,Australia,Fruits,Offline,L,10/7/2013,195063388,10/20/2013,2446,9.33,6.92,22821.18,16926.32,5894.86 Central America and the Caribbean,Grenada,Snacks,Online,M,6/8/2017,836850774,6/14/2017,1596,152.58,97.44,243517.68,155514.24,88003.44 Sub-Saharan Africa,Seychelles ,Cosmetics,Online,C,4/4/2013,915218055,4/7/2013,2215,437.20,263.33,968398.00,583275.95,385122.05 Europe,Switzerland,Cereal,Offline,H,1/23/2014,806776559,2/9/2014,1967,205.70,117.11,404611.90,230355.37,174256.53 Sub-Saharan Africa,Eritrea,Clothes,Online,L,10/22/2014,958450114,12/9/2014,5543,109.28,35.84,605739.04,198661.12,407077.92 Sub-Saharan Africa,Angola,Baby Food,Offline,C,7/8/2011,537475049,7/16/2011,9666,255.28,159.42,2467536.48,1540953.72,926582.76 Sub-Saharan Africa,Eritrea,Household,Offline,H,8/22/2012,581400191,8/23/2012,8091,668.27,502.54,5406972.57,4066051.14,1340921.43 Europe,Germany,Office Supplies,Online,L,7/20/2012,848086869,9/1/2012,6606,651.21,524.96,4301893.26,3467885.76,834007.50 Europe,Andorra,Cosmetics,Offline,M,6/18/2010,265708911,7/25/2010,8026,437.20,263.33,3508967.20,2113486.58,1395480.62 Middle East and North Africa,Algeria,Cosmetics,Online,M,3/27/2014,982752645,5/15/2014,7201,437.20,263.33,3148277.20,1896239.33,1252037.87 Asia,India,Cosmetics,Online,C,11/10/2013,718016898,12/14/2013,6011,437.20,263.33,2628009.20,1582876.63,1045132.57 Sub-Saharan Africa,Rwanda,Meat,Online,L,7/16/2015,410613000,7/27/2015,8366,421.89,364.69,3529531.74,3050996.54,478535.20 Australia and Oceania,Australia,Personal Care,Offline,C,3/5/2015,169964778,4/13/2015,5210,81.73,56.67,425813.30,295250.70,130562.60 Europe,Serbia,Personal Care,Online,H,4/24/2017,625808560,5/28/2017,9515,81.73,56.67,777660.95,539215.05,238445.90 Asia,Turkmenistan,Beverages,Online,M,3/16/2016,678193175,3/23/2016,1286,47.45,31.79,61020.70,40881.94,20138.76 Europe,Iceland,Office Supplies,Offline,M,9/28/2014,647479951,10/28/2014,2561,651.21,524.96,1667748.81,1344422.56,323326.25 Asia,Myanmar,Vegetables,Offline,H,1/30/2013,924342715,2/10/2013,2405,154.06,90.93,370514.30,218686.65,151827.65 Asia,Kyrgyzstan,Personal Care,Offline,C,6/18/2012,619767796,7/12/2012,1918,81.73,56.67,156758.14,108693.06,48065.08 Europe,Portugal,Baby Food,Online,M,5/24/2011,715054023,6/24/2011,9230,255.28,159.42,2356234.40,1471446.60,884787.80 Europe,France,Office Supplies,Online,C,1/8/2017,911812722,1/14/2017,4502,651.21,524.96,2931747.42,2363369.92,568377.50 Middle East and North Africa,Iraq,Household,Offline,H,1/19/2011,981967723,1/31/2011,4926,668.27,502.54,3291898.02,2475512.04,816385.98 Europe,Belarus,Cosmetics,Online,C,2/15/2014,317755353,3/13/2014,9725,437.20,263.33,4251770.00,2560884.25,1690885.75 Europe,Macedonia,Clothes,Online,M,11/10/2013,181724441,11/22/2013,5155,109.28,35.84,563338.40,184755.20,378583.20 Middle East and North Africa,Israel,Clothes,Offline,L,2/5/2014,556736314,3/26/2014,9502,109.28,35.84,1038378.56,340551.68,697826.88 Central America and the Caribbean,Grenada,Household,Online,C,12/12/2015,595964801,12/12/2015,8083,668.27,502.54,5401626.41,4062030.82,1339595.59 Central America and the Caribbean,Cuba,Clothes,Online,C,1/4/2014,872896230,2/21/2014,8247,109.28,35.84,901232.16,295572.48,605659.68 Europe,Luxembourg,Office Supplies,Online,H,4/29/2015,231329429,5/8/2015,4373,651.21,524.96,2847741.33,2295650.08,552091.25 Europe,Andorra,Household,Online,M,10/31/2012,735375726,11/14/2012,2874,668.27,502.54,1920607.98,1444299.96,476308.02 Sub-Saharan Africa,Ghana,Household,Offline,M,11/28/2011,919458949,12/31/2011,7190,668.27,502.54,4804861.30,3613262.60,1191598.70 Europe,Estonia,Meat,Offline,H,6/1/2011,738315427,7/19/2011,2797,421.89,364.69,1180026.33,1020037.93,159988.40 Sub-Saharan Africa,Rwanda,Cereal,Online,C,1/27/2015,216993987,2/25/2015,2198,205.70,117.11,452128.60,257407.78,194720.82 Asia,Kazakhstan,Fruits,Online,L,7/7/2012,800855958,7/18/2012,9930,9.33,6.92,92646.90,68715.60,23931.30 Asia,Malaysia,Beverages,Online,C,5/16/2013,405575168,6/2/2013,7560,47.45,31.79,358722.00,240332.40,118389.60 Australia and Oceania,New Zealand,Personal Care,Offline,L,3/14/2013,167137944,4/15/2013,8687,81.73,56.67,709988.51,492292.29,217696.22 Asia,Thailand,Cereal,Offline,H,5/25/2012,391843116,6/23/2012,3940,205.70,117.11,810458.00,461413.40,349044.60 Sub-Saharan Africa,Sudan,Snacks,Online,C,6/8/2012,106302011,7/26/2012,5982,152.58,97.44,912733.56,582886.08,329847.48 Australia and Oceania,Fiji,Meat,Offline,H,1/23/2012,207438457,2/2/2012,4504,421.89,364.69,1900192.56,1642563.76,257628.80 Sub-Saharan Africa,Seychelles ,Fruits,Offline,M,1/30/2011,312488782,2/8/2011,1230,9.33,6.92,11475.90,8511.60,2964.30 Sub-Saharan Africa,Angola,Personal Care,Online,L,3/1/2014,109001815,3/20/2014,4914,81.73,56.67,401621.22,278476.38,123144.84 Middle East and North Africa,Lebanon,Household,Offline,L,11/21/2011,704838883,12/21/2011,6344,668.27,502.54,4239504.88,3188113.76,1051391.12 Sub-Saharan Africa,Ethiopia,Household,Offline,H,10/31/2014,578173816,11/22/2014,3335,668.27,502.54,2228680.45,1675970.90,552709.55 Europe,Norway,Clothes,Online,M,12/4/2011,527492940,1/10/2012,5738,109.28,35.84,627048.64,205649.92,421398.72 Sub-Saharan Africa,Senegal,Snacks,Offline,C,2/1/2012,521595084,2/5/2012,431,152.58,97.44,65761.98,41996.64,23765.34 Europe,Lithuania,Snacks,Online,M,2/26/2010,149591577,3/16/2010,6327,152.58,97.44,965373.66,616502.88,348870.78 Australia and Oceania,East Timor,Clothes,Offline,M,5/28/2013,870906245,6/6/2013,9366,109.28,35.84,1023516.48,335677.44,687839.04 Asia,Thailand,Fruits,Offline,L,1/6/2015,165275418,1/30/2015,7524,9.33,6.92,70198.92,52066.08,18132.84 Asia,Tajikistan,Baby Food,Online,C,1/9/2013,982747924,2/23/2013,5804,255.28,159.42,1481645.12,925273.68,556371.44 Sub-Saharan Africa,Zambia,Household,Offline,C,2/8/2014,493685090,2/27/2014,1244,668.27,502.54,831327.88,625159.76,206168.12 Sub-Saharan Africa,South Africa,Beverages,Offline,M,8/22/2014,438760745,9/21/2014,7910,47.45,31.79,375329.50,251458.90,123870.60 Europe,Belgium,Beverages,Offline,M,1/28/2012,378961217,2/25/2012,1900,47.45,31.79,90155.00,60401.00,29754.00 Sub-Saharan Africa,Senegal,Office Supplies,Offline,H,4/10/2016,845585334,5/28/2016,6346,651.21,524.96,4132578.66,3331396.16,801182.50 Asia,Singapore,Vegetables,Online,H,6/16/2015,190244424,7/26/2015,6408,154.06,90.93,987216.48,582679.44,404537.04 Australia and Oceania,Vanuatu,Fruits,Online,M,4/5/2010,434862315,5/17/2010,4278,9.33,6.92,39913.74,29603.76,10309.98 Europe,Iceland,Cosmetics,Online,M,7/15/2017,521675336,7/20/2017,4180,437.20,263.33,1827496.00,1100719.40,726776.60 Europe,Russia,Cereal,Offline,M,7/20/2013,363232314,8/9/2013,7368,205.70,117.11,1515597.60,862866.48,652731.12 Europe,Luxembourg,Cereal,Offline,M,6/29/2013,392394578,8/7/2013,7130,205.70,117.11,1466641.00,834994.30,631646.70 Sub-Saharan Africa,Chad,Cosmetics,Online,M,9/11/2014,212335956,9/13/2014,3783,437.20,263.33,1653927.60,996177.39,657750.21 Sub-Saharan Africa,The Gambia,Baby Food,Offline,C,7/18/2015,846542775,8/3/2015,9674,255.28,159.42,2469578.72,1542229.08,927349.64 Europe,Iceland,Meat,Offline,L,9/18/2011,688813865,10/9/2011,4184,421.89,364.69,1765187.76,1525862.96,239324.80 Middle East and North Africa,Qatar,Cosmetics,Offline,L,1/31/2015,453260552,2/24/2015,8725,437.20,263.33,3814570.00,2297554.25,1517015.75 Europe,Liechtenstein,Clothes,Online,L,2/3/2012,924306666,2/23/2012,1738,109.28,35.84,189928.64,62289.92,127638.72 Sub-Saharan Africa,Seychelles ,Clothes,Offline,L,12/18/2012,706688535,1/2/2013,3696,109.28,35.84,403898.88,132464.64,271434.24 Australia and Oceania,Palau,Household,Offline,C,1/21/2010,275454986,1/28/2010,2106,668.27,502.54,1407376.62,1058349.24,349027.38 Australia and Oceania,Palau,Household,Online,C,12/10/2011,625967347,12/13/2011,6503,668.27,502.54,4345759.81,3268017.62,1077742.19 Europe,Slovenia,Vegetables,Offline,C,11/19/2016,123899447,11/20/2016,3455,154.06,90.93,532277.30,314163.15,218114.15 Asia,Mongolia,Personal Care,Offline,H,8/28/2016,355237615,9/10/2016,1559,81.73,56.67,127417.07,88348.53,39068.54 Central America and the Caribbean,Trinidad and Tobago,Snacks,Offline,M,6/12/2015,276280677,7/19/2015,6447,152.58,97.44,983683.26,628195.68,355487.58 Asia,China,Beverages,Online,C,12/6/2010,263639962,1/9/2011,5778,47.45,31.79,274166.10,183682.62,90483.48 Europe,Ireland,Baby Food,Online,H,3/22/2013,764239299,3/28/2013,4246,255.28,159.42,1083918.88,676897.32,407021.56 Sub-Saharan Africa,Namibia,Snacks,Online,C,10/7/2010,945315015,10/24/2010,8575,152.58,97.44,1308373.50,835548.00,472825.50 Sub-Saharan Africa,Sao Tome and Principe,Vegetables,Offline,C,1/7/2012,944415938,1/25/2012,2518,154.06,90.93,387923.08,228961.74,158961.34 Sub-Saharan Africa,Mauritania,Cosmetics,Online,H,5/6/2011,519403398,5/30/2011,1862,437.20,263.33,814066.40,490320.46,323745.94 Europe,Serbia,Cereal,Offline,L,7/14/2015,398451220,8/24/2015,9425,205.70,117.11,1938722.50,1103761.75,834960.75 Europe,Ukraine,Personal Care,Offline,M,4/20/2017,930045735,5/24/2017,56,81.73,56.67,4576.88,3173.52,1403.36 Australia and Oceania,Nauru,Vegetables,Offline,L,3/19/2014,732985770,3/26/2014,5633,154.06,90.93,867819.98,512208.69,355611.29 Sub-Saharan Africa,Equatorial Guinea,Meat,Online,M,6/19/2012,746382653,7/21/2012,68,421.89,364.69,28688.52,24798.92,3889.60 Middle East and North Africa,Jordan,Clothes,Online,M,7/17/2015,179660212,7/30/2015,4304,109.28,35.84,470341.12,154255.36,316085.76 North America,Greenland,Cereal,Offline,M,11/1/2012,562554776,11/22/2012,1314,205.70,117.11,270289.80,153882.54,116407.26 Europe,Iceland,Beverages,Offline,M,9/30/2013,795115172,10/14/2013,1104,47.45,31.79,52384.80,35096.16,17288.64 Middle East and North Africa,Libya,Fruits,Offline,L,8/4/2013,297702729,8/19/2013,5708,9.33,6.92,53255.64,39499.36,13756.28 Australia and Oceania,East Timor,Cosmetics,Online,M,7/13/2012,360991275,8/14/2012,4195,437.20,263.33,1834054.00,1104669.35,729384.65 Europe,Bosnia and Herzegovina,Household,Offline,H,10/21/2011,995967137,11/29/2011,7663,668.27,502.54,5120953.01,3850964.02,1269988.99 Europe,United Kingdom,Meat,Offline,L,6/26/2017,483929145,8/12/2017,4243,421.89,364.69,1790079.27,1547379.67,242699.60 Central America and the Caribbean,Nicaragua,Personal Care,Offline,H,1/3/2014,326488626,2/2/2014,4094,81.73,56.67,334602.62,232006.98,102595.64 Asia,Mongolia,Household,Offline,M,5/16/2013,295569407,5/19/2013,4411,668.27,502.54,2947738.97,2216703.94,731035.03 Middle East and North Africa,Qatar,Vegetables,Offline,H,6/29/2013,683407819,8/10/2013,4415,154.06,90.93,680174.90,401455.95,278718.95 Sub-Saharan Africa,Liberia,Fruits,Offline,H,2/21/2017,952552688,3/3/2017,363,9.33,6.92,3386.79,2511.96,874.83 Europe,Liechtenstein,Clothes,Offline,L,1/3/2013,185865342,2/9/2013,540,109.28,35.84,59011.20,19353.60,39657.60 Asia,Malaysia,Office Supplies,Online,C,5/7/2017,236519610,6/13/2017,264,651.21,524.96,171919.44,138589.44,33330.00 Sub-Saharan Africa,Comoros,Meat,Offline,H,3/13/2017,778001821,4/23/2017,6882,421.89,364.69,2903446.98,2509796.58,393650.40 Central America and the Caribbean,Grenada,Vegetables,Offline,L,1/4/2012,654110801,1/19/2012,4777,154.06,90.93,735944.62,434372.61,301572.01 Australia and Oceania,Marshall Islands,Baby Food,Online,M,6/14/2017,128957879,7/26/2017,357,255.28,159.42,91134.96,56912.94,34222.02 Europe,Belgium,Household,Offline,L,3/6/2016,436966884,4/15/2016,7066,668.27,502.54,4721995.82,3550947.64,1171048.18 Middle East and North Africa,Algeria,Vegetables,Online,L,8/19/2014,632874143,9/30/2014,378,154.06,90.93,58234.68,34371.54,23863.14 Europe,Georgia,Baby Food,Online,C,7/9/2016,741728484,7/27/2016,2796,255.28,159.42,713762.88,445738.32,268024.56 Central America and the Caribbean,Saint Lucia,Office Supplies,Offline,H,6/27/2011,408891236,6/29/2011,8858,651.21,524.96,5768418.18,4650095.68,1118322.50 Middle East and North Africa,Iran,Personal Care,Online,L,9/23/2016,250036227,10/12/2016,131,81.73,56.67,10706.63,7423.77,3282.86 Australia and Oceania,Papua New Guinea,Beverages,Offline,C,8/28/2012,501149785,8/30/2012,213,47.45,31.79,10106.85,6771.27,3335.58 Europe,Norway,Office Supplies,Offline,H,10/28/2014,568530738,11/23/2014,9734,651.21,524.96,6338878.14,5109960.64,1228917.50 Australia and Oceania,East Timor,Vegetables,Offline,M,2/11/2017,378790414,3/11/2017,1356,154.06,90.93,208905.36,123301.08,85604.28 Asia,Philippines,Vegetables,Offline,H,9/17/2010,828852641,10/21/2010,4770,154.06,90.93,734866.20,433736.10,301130.10 Central America and the Caribbean,Barbados,Household,Offline,H,7/27/2010,635953748,8/28/2010,1701,668.27,502.54,1136727.27,854820.54,281906.73 Europe,Bosnia and Herzegovina,Snacks,Offline,C,10/11/2013,387642562,11/29/2013,903,152.58,97.44,137779.74,87988.32,49791.42 Middle East and North Africa,Israel,Beverages,Offline,C,12/1/2010,291780412,12/27/2010,3163,47.45,31.79,150084.35,100551.77,49532.58 Europe,Serbia,Fruits,Offline,H,7/26/2012,626541125,9/5/2012,6297,9.33,6.92,58751.01,43575.24,15175.77 Europe,Finland,Clothes,Online,C,3/24/2015,390411031,4/30/2015,155,109.28,35.84,16938.40,5555.20,11383.20 Europe,Croatia,Personal Care,Offline,H,9/3/2012,452188956,10/16/2012,1616,81.73,56.67,132075.68,91578.72,40496.96 Sub-Saharan Africa,Niger,Meat,Online,L,11/23/2014,400986230,11/25/2014,9591,421.89,364.69,4046346.99,3497741.79,548605.20 Sub-Saharan Africa,Cote d'Ivoire,Meat,Offline,M,1/3/2014,796226680,2/21/2014,23,421.89,364.69,9703.47,8387.87,1315.60 Sub-Saharan Africa,Comoros,Vegetables,Online,L,10/10/2010,917646634,11/4/2010,886,154.06,90.93,136497.16,80563.98,55933.18 Sub-Saharan Africa,Tanzania,Household,Online,C,10/21/2010,115294921,11/6/2010,7184,668.27,502.54,4800851.68,3610247.36,1190604.32 Europe,Albania,Cosmetics,Online,L,3/12/2013,959532868,3/30/2013,5954,437.20,263.33,2603088.80,1567866.82,1035221.98 Middle East and North Africa,Somalia,Vegetables,Online,H,4/30/2014,691034305,5/15/2014,1262,154.06,90.93,194423.72,114753.66,79670.06 Asia,Maldives,Personal Care,Offline,H,8/26/2011,670785558,8/31/2011,9208,81.73,56.67,752569.84,521817.36,230752.48 Europe,Netherlands,Meat,Online,C,1/11/2015,530085456,2/7/2015,2921,421.89,364.69,1232340.69,1065259.49,167081.20 Sub-Saharan Africa,Zimbabwe,Cosmetics,Online,H,9/5/2012,420545327,10/3/2012,7563,437.20,263.33,3306543.60,1991564.79,1314978.81 Europe,Monaco,Beverages,Online,M,10/25/2012,564089000,12/11/2012,5325,47.45,31.79,252671.25,169281.75,83389.50 Sub-Saharan Africa,Rwanda,Snacks,Offline,M,2/21/2017,802952802,3/29/2017,432,152.58,97.44,65914.56,42094.08,23820.48 Europe,Ireland,Cosmetics,Online,L,1/24/2017,149685561,2/26/2017,4139,437.20,263.33,1809570.80,1089922.87,719647.93 Middle East and North Africa,Azerbaijan,Clothes,Offline,C,8/22/2012,837148606,10/3/2012,9731,109.28,35.84,1063403.68,348759.04,714644.64 Sub-Saharan Africa,Chad,Meat,Online,H,5/2/2016,668515765,5/5/2016,7526,421.89,364.69,3175144.14,2744656.94,430487.20 Europe,Macedonia,Vegetables,Offline,L,5/24/2011,667273366,6/15/2011,9872,154.06,90.93,1520880.32,897660.96,623219.36 Asia,Nepal,Baby Food,Online,C,3/17/2016,127220237,4/27/2016,6150,255.28,159.42,1569972.00,980433.00,589539.00 Europe,Macedonia,Cereal,Offline,H,5/13/2012,662467706,5/29/2012,7770,205.70,117.11,1598289.00,909944.70,688344.30 Europe,Romania,Vegetables,Online,M,8/7/2016,357439601,9/17/2016,3176,154.06,90.93,489294.56,288793.68,200500.88 Middle East and North Africa,Morocco,Cosmetics,Offline,C,5/31/2016,516872251,6/24/2016,2840,437.20,263.33,1241648.00,747857.20,493790.80 Asia,Bangladesh,Cereal,Offline,L,9/28/2011,715814483,10/8/2011,4267,205.70,117.11,877721.90,499708.37,378013.53 Asia,Nepal,Office Supplies,Offline,C,2/23/2011,149627625,3/4/2011,6994,651.21,524.96,4554562.74,3671570.24,882992.50 Asia,Thailand,Personal Care,Offline,M,11/26/2012,783985507,12/14/2012,7588,81.73,56.67,620167.24,430011.96,190155.28 Central America and the Caribbean,Jamaica,Personal Care,Offline,H,5/8/2016,604874455,6/26/2016,4648,81.73,56.67,379881.04,263402.16,116478.88 Europe,Switzerland,Clothes,Online,C,7/13/2010,368593299,8/30/2010,3803,109.28,35.84,415591.84,136299.52,279292.32 Central America and the Caribbean,El Salvador,Baby Food,Offline,H,11/6/2015,451753365,12/5/2015,2715,255.28,159.42,693085.20,432825.30,260259.90 Asia,Mongolia,Meat,Online,C,2/9/2012,401278483,3/24/2012,6075,421.89,364.69,2562981.75,2215491.75,347490.00 Asia,Kyrgyzstan,Snacks,Offline,M,6/28/2010,284404981,7/1/2010,609,152.58,97.44,92921.22,59340.96,33580.26 Asia,Cambodia,Cosmetics,Online,C,11/13/2011,238681685,11/25/2011,70,437.20,263.33,30604.00,18433.10,12170.90 Europe,Czech Republic,Cereal,Online,C,8/10/2010,921969926,9/13/2010,244,205.70,117.11,50190.80,28574.84,21615.96 Sub-Saharan Africa,Ethiopia,Fruits,Online,H,7/3/2013,362443530,7/26/2013,3950,9.33,6.92,36853.50,27334.00,9519.50 Australia and Oceania,Kiribati,Cosmetics,Offline,L,4/8/2013,708588826,5/25/2013,6035,437.20,263.33,2638502.00,1589196.55,1049305.45 Australia and Oceania,Marshall Islands,Personal Care,Online,L,1/15/2015,579204642,1/25/2015,8380,81.73,56.67,684897.40,474894.60,210002.80 Sub-Saharan Africa,Cape Verde,Clothes,Online,H,6/10/2017,913402307,7/11/2017,4895,109.28,35.84,534925.60,175436.80,359488.80 Europe,Vatican City,Cereal,Online,H,5/19/2016,920605647,6/4/2016,6524,205.70,117.11,1341986.80,764025.64,577961.16 Central America and the Caribbean,Saint Vincent and the Grenadines,Snacks,Offline,H,5/28/2016,330550992,7/4/2016,6239,152.58,97.44,951946.62,607928.16,344018.46 Sub-Saharan Africa,Burkina Faso,Fruits,Offline,C,10/6/2011,743287169,11/25/2011,4046,9.33,6.92,37749.18,27998.32,9750.86 Asia,Singapore,Vegetables,Offline,H,11/30/2012,679175508,12/28/2012,1980,154.06,90.93,305038.80,180041.40,124997.40 Sub-Saharan Africa,Mozambique,Fruits,Online,L,6/15/2012,528889834,7/15/2012,9110,9.33,6.92,84996.30,63041.20,21955.10 Central America and the Caribbean,Haiti,Beverages,Offline,M,8/13/2011,303416478,9/12/2011,6533,47.45,31.79,309990.85,207684.07,102306.78 Central America and the Caribbean,Saint Kitts and Nevis ,Fruits,Online,H,6/23/2016,984054267,8/2/2016,2380,9.33,6.92,22205.40,16469.60,5735.80 Australia and Oceania,Papua New Guinea,Baby Food,Offline,L,6/21/2011,472414529,7/24/2011,6812,255.28,159.42,1738967.36,1085969.04,652998.32 Asia,North Korea,Beverages,Offline,H,3/1/2016,340421092,3/24/2016,7021,47.45,31.79,333146.45,223197.59,109948.86 Middle East and North Africa,Pakistan,Household,Offline,C,5/2/2013,880310285,6/7/2013,2231,668.27,502.54,1490910.37,1121166.74,369743.63 Middle East and North Africa,Qatar,Beverages,Offline,C,4/28/2013,654630935,6/4/2013,8696,47.45,31.79,412625.20,276445.84,136179.36 Sub-Saharan Africa,Burundi,Beverages,Online,L,5/23/2012,546244370,5/26/2012,4703,47.45,31.79,223157.35,149508.37,73648.98 Central America and the Caribbean,Guatemala,Office Supplies,Online,H,8/26/2011,608324420,8/27/2011,5569,651.21,524.96,3626588.49,2923502.24,703086.25 Sub-Saharan Africa,Togo,Office Supplies,Online,L,4/13/2013,514357411,4/24/2013,8643,651.21,524.96,5628408.03,4537229.28,1091178.75 Sub-Saharan Africa,Senegal,Office Supplies,Online,L,9/27/2016,908142173,11/16/2016,8305,651.21,524.96,5408299.05,4359792.80,1048506.25 Sub-Saharan Africa,Angola,Meat,Offline,M,12/21/2014,253790032,2/7/2015,965,421.89,364.69,407123.85,351925.85,55198.00 Sub-Saharan Africa,Togo,Snacks,Online,H,5/9/2013,685724818,6/3/2013,67,152.58,97.44,10222.86,6528.48,3694.38 Asia,Indonesia,Fruits,Online,L,9/30/2010,358682858,10/13/2010,1083,9.33,6.92,10104.39,7494.36,2610.03 Australia and Oceania,Australia,Baby Food,Online,H,11/13/2010,197712981,12/18/2010,6520,255.28,159.42,1664425.60,1039418.40,625007.20 Europe,Bulgaria,Clothes,Offline,C,12/5/2010,748176515,12/28/2010,912,109.28,35.84,99663.36,32686.08,66977.28 Europe,Finland,Office Supplies,Offline,C,12/25/2012,825747287,2/13/2013,5827,651.21,524.96,3794600.67,3058941.92,735658.75 Asia,Japan,Meat,Offline,C,8/3/2012,666411626,8/4/2012,4864,421.89,364.69,2052072.96,1773852.16,278220.80 Sub-Saharan Africa,Niger,Beverages,Online,M,2/22/2010,576468360,2/23/2010,8653,47.45,31.79,410584.85,275078.87,135505.98 Asia,India,Baby Food,Offline,M,9/11/2014,482528817,10/19/2014,9855,255.28,159.42,2515784.40,1571084.10,944700.30 Europe,Denmark,Office Supplies,Offline,L,5/30/2017,381516826,7/4/2017,8162,651.21,524.96,5315176.02,4284723.52,1030452.50 Europe,Czech Republic,Vegetables,Offline,H,7/13/2010,790668714,8/14/2010,5298,154.06,90.93,816209.88,481747.14,334462.74 Asia,Bangladesh,Vegetables,Online,L,11/11/2013,497533309,11/18/2013,17,154.06,90.93,2619.02,1545.81,1073.21 Middle East and North Africa,Saudi Arabia,Office Supplies,Online,M,6/2/2010,609971940,7/22/2010,3107,651.21,524.96,2023309.47,1631050.72,392258.75 Europe,Andorra,Baby Food,Offline,H,10/10/2010,506158435,11/17/2010,2384,255.28,159.42,608587.52,380057.28,228530.24 Europe,Belgium,Beverages,Offline,C,6/7/2011,984579122,6/21/2011,7696,47.45,31.79,365175.20,244655.84,120519.36 Sub-Saharan Africa,Niger,Office Supplies,Offline,C,9/26/2013,214032828,10/5/2013,5925,651.21,524.96,3858419.25,3110388.00,748031.25 Europe,Cyprus,Fruits,Offline,H,7/13/2012,483630883,7/29/2012,5981,9.33,6.92,55802.73,41388.52,14414.21 Central America and the Caribbean,Dominican Republic,Office Supplies,Offline,L,2/1/2015,552797114,2/17/2015,3805,651.21,524.96,2477854.05,1997472.80,480381.25 Europe,Germany,Personal Care,Online,C,8/1/2014,601267850,8/5/2014,7373,81.73,56.67,602595.29,417827.91,184767.38 Sub-Saharan Africa,Djibouti,Meat,Offline,C,8/17/2016,879091918,9/1/2016,1689,421.89,364.69,712572.21,615961.41,96610.80 Sub-Saharan Africa,Chad,Clothes,Online,C,10/3/2012,356630647,11/17/2012,3788,109.28,35.84,413952.64,135761.92,278190.72 Sub-Saharan Africa,Botswana,Baby Food,Online,H,6/28/2014,774557864,7/26/2014,7739,255.28,159.42,1975611.92,1233751.38,741860.54 Sub-Saharan Africa,Zimbabwe,Meat,Online,H,9/13/2011,793859899,9/25/2011,9640,421.89,364.69,4067019.60,3515611.60,551408.00 Asia,Philippines,Clothes,Online,H,4/4/2014,945835578,5/8/2014,2621,109.28,35.84,286422.88,93936.64,192486.24 Sub-Saharan Africa,Lesotho,Cereal,Online,M,5/18/2010,482096230,7/2/2010,1843,205.70,117.11,379105.10,215833.73,163271.37 Australia and Oceania,Fiji,Clothes,Offline,L,11/5/2015,524565684,12/5/2015,9498,109.28,35.84,1037941.44,340408.32,697533.12 Europe,Iceland,Snacks,Online,C,3/21/2017,915480268,5/4/2017,9810,152.58,97.44,1496809.80,955886.40,540923.40 Europe,France,Office Supplies,Offline,H,6/26/2013,667388808,7/19/2013,4034,651.21,524.96,2626981.14,2117688.64,509292.50 Australia and Oceania,Samoa ,Meat,Online,L,4/5/2012,213152635,4/27/2012,5456,421.89,364.69,2301831.84,1989748.64,312083.20 Sub-Saharan Africa,Guinea,Cereal,Offline,H,11/15/2010,955945575,12/17/2010,4394,205.70,117.11,903845.80,514581.34,389264.46 Asia,Vietnam,Snacks,Offline,H,4/16/2015,319253957,4/22/2015,3195,152.58,97.44,487493.10,311320.80,176172.30 Sub-Saharan Africa,South Sudan,Household,Online,M,8/8/2013,296876609,9/17/2013,1241,668.27,502.54,829323.07,623652.14,205670.93 Sub-Saharan Africa,Botswana,Cosmetics,Offline,H,2/14/2010,702924859,3/22/2010,9941,437.20,263.33,4346205.20,2617763.53,1728441.67 Central America and the Caribbean,El Salvador,Cereal,Online,L,1/4/2014,521822535,2/14/2014,7739,205.70,117.11,1591912.30,906314.29,685598.01 Central America and the Caribbean,Jamaica,Clothes,Offline,L,10/7/2012,158305966,10/17/2012,5108,109.28,35.84,558202.24,183070.72,375131.52 Asia,Singapore,Clothes,Offline,L,11/24/2013,987423980,1/5/2014,9553,109.28,35.84,1043951.84,342379.52,701572.32 Europe,Austria,Vegetables,Online,M,10/29/2010,404537904,12/12/2010,610,154.06,90.93,93976.60,55467.30,38509.30 Sub-Saharan Africa,Mozambique,Baby Food,Offline,M,12/20/2016,375321567,1/2/2017,4847,255.28,159.42,1237342.16,772708.74,464633.42 Middle East and North Africa,Qatar,Clothes,Online,L,7/8/2016,685761296,7/19/2016,862,109.28,35.84,94199.36,30894.08,63305.28 Europe,Moldova ,Snacks,Offline,C,8/31/2013,292155921,10/7/2013,4284,152.58,97.44,653652.72,417432.96,236219.76 Middle East and North Africa,Saudi Arabia,Fruits,Online,L,8/30/2013,471116769,9/1/2013,2776,9.33,6.92,25900.08,19209.92,6690.16 Sub-Saharan Africa,Rwanda,Cereal,Online,H,6/21/2011,769567668,6/29/2011,1029,205.70,117.11,211665.30,120506.19,91159.11 Europe,Germany,Cereal,Online,H,9/8/2010,354744946,9/26/2010,5768,205.70,117.11,1186477.60,675490.48,510987.12 Middle East and North Africa,Turkey,Fruits,Online,M,3/10/2012,264197432,4/13/2012,746,9.33,6.92,6960.18,5162.32,1797.86 Sub-Saharan Africa,Uganda,Cereal,Online,C,5/7/2010,255786454,5/28/2010,1751,205.70,117.11,360180.70,205059.61,155121.09 Asia,Maldives,Personal Care,Online,H,12/13/2011,157685840,1/16/2012,1599,81.73,56.67,130686.27,90615.33,40070.94 Europe,Malta,Baby Food,Online,M,4/13/2017,318381917,5/22/2017,5139,255.28,159.42,1311883.92,819259.38,492624.54 Australia and Oceania,Tuvalu,Cereal,Online,C,5/3/2016,256673514,6/13/2016,4252,205.70,117.11,874636.40,497951.72,376684.68 Sub-Saharan Africa,Republic of the Congo,Cosmetics,Online,M,4/26/2015,911671960,5/3/2015,2847,437.20,263.33,1244708.40,749700.51,495007.89 Australia and Oceania,Australia,Personal Care,Offline,H,2/14/2010,592801082,4/3/2010,1868,81.73,56.67,152671.64,105859.56,46812.08 Sub-Saharan Africa,Namibia,Household,Online,C,11/15/2012,829797208,12/15/2012,4289,668.27,502.54,2866210.03,2155394.06,710815.97 Asia,Kazakhstan,Household,Offline,C,4/2/2010,522709167,4/15/2010,113,668.27,502.54,75514.51,56787.02,18727.49 Asia,Laos,Meat,Online,C,9/17/2012,891898286,10/6/2012,1378,421.89,364.69,581364.42,502542.82,78821.60 Sub-Saharan Africa,Lesotho,Meat,Online,M,11/7/2012,528038394,11/13/2012,7150,421.89,364.69,3016513.50,2607533.50,408980.00 Australia and Oceania,Solomon Islands,Vegetables,Online,H,11/26/2011,342115819,11/26/2011,8528,154.06,90.93,1313823.68,775451.04,538372.64 Sub-Saharan Africa,Mozambique,Cosmetics,Offline,C,12/10/2015,415429389,12/21/2015,3643,437.20,263.33,1592719.60,959311.19,633408.41 Europe,Hungary,Meat,Offline,M,12/22/2016,449590432,1/4/2017,2655,421.89,364.69,1120117.95,968251.95,151866.00 Asia,Maldives,Vegetables,Offline,H,11/10/2011,216522777,11/30/2011,2756,154.06,90.93,424589.36,250603.08,173986.28 Europe,Austria,Fruits,Offline,H,8/26/2013,908462750,9/2/2013,3171,9.33,6.92,29585.43,21943.32,7642.11 Sub-Saharan Africa,Cote d'Ivoire,Clothes,Online,H,7/20/2017,187959182,8/30/2017,154,109.28,35.84,16829.12,5519.36,11309.76 Asia,India,Vegetables,Offline,H,3/31/2012,737873399,5/18/2012,1991,154.06,90.93,306733.46,181041.63,125691.83 Middle East and North Africa,Lebanon,Meat,Offline,C,12/31/2013,811379230,2/14/2014,4000,421.89,364.69,1687560.00,1458760.00,228800.00 Middle East and North Africa,Afghanistan,Meat,Offline,L,5/31/2017,981963002,6/9/2017,3529,421.89,364.69,1488849.81,1286991.01,201858.80 Middle East and North Africa,Egypt,Clothes,Online,C,5/15/2014,993423545,5/26/2014,4958,109.28,35.84,541810.24,177694.72,364115.52 Europe,Norway,Cosmetics,Offline,C,12/18/2012,209872186,1/18/2013,4698,437.20,263.33,2053965.60,1237124.34,816841.26 Central America and the Caribbean,Barbados,Cereal,Online,H,12/31/2010,765732753,2/7/2011,6193,205.70,117.11,1273900.10,725262.23,548637.87 Australia and Oceania,Samoa ,Meat,Offline,C,11/27/2014,815741574,12/11/2014,4914,421.89,364.69,2073167.46,1792086.66,281080.80 Central America and the Caribbean,Antigua and Barbuda ,Fruits,Offline,C,4/5/2013,384947478,5/5/2013,3368,9.33,6.92,31423.44,23306.56,8116.88 Asia,Indonesia,Fruits,Online,H,11/4/2010,918711793,11/25/2010,6090,9.33,6.92,56819.70,42142.80,14676.90 Central America and the Caribbean,Belize,Office Supplies,Offline,L,4/14/2017,332708346,4/22/2017,4648,651.21,524.96,3026824.08,2440014.08,586810.00 Middle East and North Africa,Iran,Fruits,Offline,C,12/29/2012,662923467,1/27/2013,2640,9.33,6.92,24631.20,18268.80,6362.40 Europe,Armenia,Personal Care,Online,H,7/7/2013,415655982,7/12/2013,697,81.73,56.67,56965.81,39498.99,17466.82 Middle East and North Africa,Lebanon,Snacks,Online,M,9/30/2012,417517220,10/25/2012,1479,152.58,97.44,225665.82,144113.76,81552.06 Central America and the Caribbean,Jamaica,Personal Care,Online,M,1/3/2017,665431010,1/17/2017,4678,81.73,56.67,382332.94,265102.26,117230.68 Middle East and North Africa,Algeria,Cosmetics,Online,L,12/18/2010,776633679,12/29/2010,2019,437.20,263.33,882706.80,531663.27,351043.53 Sub-Saharan Africa,Guinea,Beverages,Online,C,6/3/2014,438674056,7/17/2014,2256,47.45,31.79,107047.20,71718.24,35328.96 Europe,Finland,Cereal,Online,H,5/24/2010,759413468,5/24/2010,6176,205.70,117.11,1270403.20,723271.36,547131.84 Asia,Vietnam,Beverages,Offline,L,1/10/2017,217025744,1/22/2017,1595,47.45,31.79,75682.75,50705.05,24977.70 Europe,Croatia,Vegetables,Online,H,9/6/2015,509997212,9/26/2015,8363,154.06,90.93,1288403.78,760447.59,527956.19 Europe,Luxembourg,Meat,Offline,C,4/10/2015,707126700,4/13/2015,3359,421.89,364.69,1417128.51,1224993.71,192134.80 Sub-Saharan Africa,South Africa,Fruits,Offline,C,8/23/2010,397525537,8/29/2010,5495,9.33,6.92,51268.35,38025.40,13242.95 Europe,United Kingdom,Personal Care,Online,M,8/20/2016,140617549,8/31/2016,712,81.73,56.67,58191.76,40349.04,17842.72 Asia,Laos,Cereal,Offline,M,4/16/2011,116139066,4/28/2011,6985,205.70,117.11,1436814.50,818013.35,618801.15 Central America and the Caribbean,Nicaragua,Personal Care,Online,M,5/10/2015,574138915,6/22/2015,9318,81.73,56.67,761560.14,528051.06,233509.08 Middle East and North Africa,Kuwait,Personal Care,Offline,H,10/15/2012,484978425,12/4/2012,4748,81.73,56.67,388054.04,269069.16,118984.88 Middle East and North Africa,Bahrain,Clothes,Offline,L,2/14/2015,689331424,3/4/2015,7342,109.28,35.84,802333.76,263137.28,539196.48 Sub-Saharan Africa,Mauritania,Meat,Offline,L,3/22/2012,748184239,5/7/2012,3198,421.89,364.69,1349204.22,1166278.62,182925.60 Sub-Saharan Africa,Mauritania,Fruits,Offline,L,12/16/2013,292835700,1/4/2014,5446,9.33,6.92,50811.18,37686.32,13124.86 Sub-Saharan Africa,Democratic Republic of the Congo,Fruits,Offline,C,2/14/2016,374897134,3/24/2016,9248,9.33,6.92,86283.84,63996.16,22287.68 Europe,Slovakia,Clothes,Offline,M,10/11/2011,316292369,11/22/2011,6796,109.28,35.84,742666.88,243568.64,499098.24 Australia and Oceania,Palau,Beverages,Offline,L,3/14/2010,859257733,4/12/2010,2313,47.45,31.79,109751.85,73530.27,36221.58 Europe,Iceland,Snacks,Online,H,5/18/2010,116342055,6/29/2010,7054,152.58,97.44,1076299.32,687341.76,388957.56 Sub-Saharan Africa,Sao Tome and Principe,Meat,Online,C,5/9/2012,320406663,6/9/2012,4307,421.89,364.69,1817080.23,1570719.83,246360.40 Sub-Saharan Africa,Tanzania,Clothes,Offline,M,6/17/2013,174625384,7/26/2013,4387,109.28,35.84,479411.36,157230.08,322181.28 Australia and Oceania,East Timor,Meat,Offline,L,1/31/2012,702484548,2/19/2012,9643,421.89,364.69,4068285.27,3516705.67,551579.60 Sub-Saharan Africa,Cote d'Ivoire,Personal Care,Online,H,6/21/2011,297782981,7/7/2011,9456,81.73,56.67,772838.88,535871.52,236967.36 Australia and Oceania,Tuvalu,Meat,Offline,H,12/4/2015,574632012,1/7/2016,5237,421.89,364.69,2209437.93,1909881.53,299556.40 Sub-Saharan Africa,Liberia,Baby Food,Online,H,11/22/2011,517455470,12/9/2011,5427,255.28,159.42,1385404.56,865172.34,520232.22 Asia,Philippines,Meat,Offline,M,3/1/2017,530989682,3/26/2017,502,421.89,364.69,211788.78,183074.38,28714.40 Middle East and North Africa,Yemen,Personal Care,Online,C,7/12/2016,190283477,7/13/2016,7964,81.73,56.67,650897.72,451319.88,199577.84 North America,United States of America,Meat,Offline,H,12/24/2010,490698182,12/29/2010,7351,421.89,364.69,3101313.39,2680836.19,420477.20 Central America and the Caribbean,Cuba,Personal Care,Offline,L,12/7/2013,697907626,1/12/2014,5230,81.73,56.67,427447.90,296384.10,131063.80 Sub-Saharan Africa,Tanzania,Cereal,Online,M,2/27/2017,597898137,3/1/2017,200,205.70,117.11,41140.00,23422.00,17718.00 Europe,Lithuania,Cosmetics,Offline,H,4/9/2017,946968543,4/13/2017,7890,437.20,263.33,3449508.00,2077673.70,1371834.30 Australia and Oceania,Fiji,Clothes,Offline,L,12/14/2011,321730172,12/18/2011,5962,109.28,35.84,651527.36,213678.08,437849.28 Sub-Saharan Africa,Botswana,Beverages,Offline,L,4/22/2011,969106853,4/23/2011,9108,47.45,31.79,432174.60,289543.32,142631.28 Sub-Saharan Africa,Republic of the Congo,Meat,Offline,H,5/11/2011,256334912,5/22/2011,4052,421.89,364.69,1709498.28,1477723.88,231774.40 North America,United States of America,Meat,Online,H,12/26/2012,120963180,1/30/2013,4548,421.89,364.69,1918755.72,1658610.12,260145.60 North America,United States of America,Office Supplies,Online,M,7/23/2010,320852982,8/30/2010,6382,651.21,524.96,4156022.22,3350294.72,805727.50 Europe,Romania,Cereal,Offline,H,11/13/2010,684178149,12/6/2010,2373,205.70,117.11,488126.10,277902.03,210224.07 Australia and Oceania,Samoa ,Baby Food,Online,H,3/13/2014,659425008,3/21/2014,7369,255.28,159.42,1881158.32,1174765.98,706392.34 Asia,Singapore,Clothes,Online,L,7/15/2010,665392386,9/2/2010,3248,109.28,35.84,354941.44,116408.32,238533.12 Sub-Saharan Africa,Madagascar,Clothes,Online,C,8/30/2013,741191613,9/11/2013,3924,109.28,35.84,428814.72,140636.16,288178.56 Europe,Ireland,Vegetables,Offline,M,11/29/2011,996246516,12/5/2011,338,154.06,90.93,52072.28,30734.34,21337.94 Asia,Malaysia,Clothes,Offline,H,5/23/2017,260293424,5/24/2017,5463,109.28,35.84,596996.64,195793.92,401202.72 Europe,Russia,Fruits,Offline,C,10/14/2016,133381164,10/18/2016,9305,9.33,6.92,86815.65,64390.60,22425.05 Asia,Nepal,Beverages,Offline,C,12/25/2012,935871064,2/1/2013,3900,47.45,31.79,185055.00,123981.00,61074.00 Sub-Saharan Africa,Mauritania,Beverages,Online,L,9/21/2013,358436954,10/2/2013,8315,47.45,31.79,394546.75,264333.85,130212.90 Europe,Luxembourg,Baby Food,Online,H,8/29/2012,212065160,10/17/2012,3648,255.28,159.42,931261.44,581564.16,349697.28 Asia,Laos,Fruits,Online,C,11/18/2015,578054511,11/28/2015,8030,9.33,6.92,74919.90,55567.60,19352.30 Sub-Saharan Africa,Niger,Fruits,Offline,L,5/21/2015,258016335,6/11/2015,1622,9.33,6.92,15133.26,11224.24,3909.02 Middle East and North Africa,Egypt,Baby Food,Offline,M,8/7/2015,823874461,9/22/2015,1616,255.28,159.42,412532.48,257622.72,154909.76 Europe,Lithuania,Beverages,Offline,M,6/10/2014,767865216,6/17/2014,7236,47.45,31.79,343348.20,230032.44,113315.76 Europe,Austria,Clothes,Online,C,9/5/2014,452537429,9/28/2014,4736,109.28,35.84,517550.08,169738.24,347811.84 Europe,Monaco,Beverages,Online,C,7/30/2012,760752427,8/19/2012,2404,47.45,31.79,114069.80,76423.16,37646.64 Sub-Saharan Africa,Senegal,Snacks,Offline,C,10/27/2016,845684039,11/11/2016,5555,152.58,97.44,847581.90,541279.20,306302.70 Europe,Portugal,Snacks,Offline,C,6/12/2014,380818593,7/19/2014,1539,152.58,97.44,234820.62,149960.16,84860.46 North America,United States of America,Cosmetics,Offline,M,6/22/2012,909954917,6/24/2012,4736,437.20,263.33,2070579.20,1247130.88,823448.32 Europe,Belarus,Cereal,Offline,C,6/7/2011,897204339,7/21/2011,1557,205.70,117.11,320274.90,182340.27,137934.63 Europe,Austria,Household,Offline,H,9/9/2016,676990687,10/8/2016,5443,668.27,502.54,3637393.61,2735325.22,902068.39 Australia and Oceania,Tonga,Snacks,Offline,M,12/20/2011,204050290,2/1/2012,1870,152.58,97.44,285324.60,182212.80,103111.80 Middle East and North Africa,Syria,Household,Online,C,2/17/2016,403431975,2/20/2016,3342,668.27,502.54,2233358.34,1679488.68,553869.66 Sub-Saharan Africa,Mozambique,Baby Food,Online,L,3/27/2011,920497071,5/14/2011,4394,255.28,159.42,1121700.32,700491.48,421208.84 Sub-Saharan Africa,Senegal,Household,Online,M,6/27/2014,570919406,8/12/2014,6594,668.27,502.54,4406572.38,3313748.76,1092823.62 Europe,Iceland,Cosmetics,Offline,H,11/14/2013,490685307,12/18/2013,3541,437.20,263.33,1548125.20,932451.53,615673.67 Sub-Saharan Africa,Madagascar,Meat,Online,H,5/11/2017,986093604,6/17/2017,5865,421.89,364.69,2474384.85,2138906.85,335478.00 Europe,Moldova ,Beverages,Online,C,4/10/2011,183755624,5/21/2011,6227,47.45,31.79,295471.15,197956.33,97514.82 Australia and Oceania,Solomon Islands,Baby Food,Offline,L,1/29/2017,780595195,2/19/2017,4320,255.28,159.42,1102809.60,688694.40,414115.20 Asia,Kazakhstan,Cosmetics,Online,M,11/14/2011,593848645,12/2/2011,1866,437.20,263.33,815815.20,491373.78,324441.42 Central America and the Caribbean,El Salvador,Clothes,Offline,H,6/16/2015,211064803,6/24/2015,7620,109.28,35.84,832713.60,273100.80,559612.80 Europe,Ukraine,Baby Food,Online,H,11/4/2010,740104997,12/5/2010,2370,255.28,159.42,605013.60,377825.40,227188.20 Asia,Kyrgyzstan,Baby Food,Offline,M,3/7/2016,659143054,3/22/2016,3932,255.28,159.42,1003760.96,626839.44,376921.52 Europe,Latvia,Beverages,Offline,L,10/30/2012,766665303,11/2/2012,2155,47.45,31.79,102254.75,68507.45,33747.30 Asia,South Korea,Snacks,Offline,H,4/12/2017,131470572,5/8/2017,3919,152.58,97.44,597961.02,381867.36,216093.66 Europe,Slovakia,Meat,Online,H,10/20/2016,142670190,11/15/2016,8134,421.89,364.69,3431653.26,2966388.46,465264.80 Europe,Switzerland,Beverages,Online,M,2/1/2011,459687983,3/8/2011,744,47.45,31.79,35302.80,23651.76,11651.04 Sub-Saharan Africa,Nigeria,Clothes,Offline,M,1/15/2016,362260282,3/3/2016,9722,109.28,35.84,1062420.16,348436.48,713983.68 Central America and the Caribbean,Dominica,Snacks,Offline,M,7/21/2014,100435912,9/8/2014,73,152.58,97.44,11138.34,7113.12,4025.22 Sub-Saharan Africa,Gabon,Personal Care,Offline,C,4/19/2013,444576203,5/22/2013,8833,81.73,56.67,721921.09,500566.11,221354.98 Sub-Saharan Africa,Democratic Republic of the Congo,Snacks,Offline,M,3/24/2016,435354983,4/30/2016,69,152.58,97.44,10528.02,6723.36,3804.66 Sub-Saharan Africa,Guinea-Bissau,Clothes,Online,M,3/20/2013,533758580,3/28/2013,9880,109.28,35.84,1079686.40,354099.20,725587.20 Central America and the Caribbean,Dominican Republic,Beverages,Offline,M,2/18/2014,371085822,3/23/2014,1396,47.45,31.79,66240.20,44378.84,21861.36 Sub-Saharan Africa,Republic of the Congo,Personal Care,Offline,L,10/7/2014,998948037,10/18/2014,9778,81.73,56.67,799155.94,554119.26,245036.68 Asia,Sri Lanka,Baby Food,Online,H,10/2/2015,839269053,11/2/2015,7218,255.28,159.42,1842611.04,1150693.56,691917.48 Central America and the Caribbean,Honduras,Fruits,Offline,L,3/24/2011,634285199,5/7/2011,7941,9.33,6.92,74089.53,54951.72,19137.81 Europe,Romania,Meat,Online,M,4/25/2015,296545302,6/2/2015,3200,421.89,364.69,1350048.00,1167008.00,183040.00 Sub-Saharan Africa,Lesotho,Personal Care,Offline,H,12/2/2012,258910691,12/19/2012,6282,81.73,56.67,513427.86,356000.94,157426.92 Asia,Mongolia,Household,Offline,H,7/8/2016,124555194,7/31/2016,7505,668.27,502.54,5015366.35,3771562.70,1243803.65 Sub-Saharan Africa,Guinea,Office Supplies,Online,M,12/4/2016,916965138,12/14/2016,9216,651.21,524.96,6001551.36,4838031.36,1163520.00 Central America and the Caribbean,Panama,Household,Online,M,5/20/2017,129939353,6/9/2017,797,668.27,502.54,532611.19,400524.38,132086.81 Europe,Hungary,Beverages,Online,L,8/18/2014,277589166,8/27/2014,3658,47.45,31.79,173572.10,116287.82,57284.28 Asia,Kazakhstan,Cereal,Online,H,3/31/2010,344338405,4/23/2010,6241,205.70,117.11,1283773.70,730883.51,552890.19 Central America and the Caribbean,Panama,Office Supplies,Offline,L,6/18/2014,734923398,7/5/2014,9020,651.21,524.96,5873914.20,4735139.20,1138775.00 Europe,Slovenia,Personal Care,Offline,M,1/22/2012,124392974,3/1/2012,9500,81.73,56.67,776435.00,538365.00,238070.00 Sub-Saharan Africa,Sierra Leone,Clothes,Offline,H,8/10/2011,408108460,9/25/2011,7217,109.28,35.84,788673.76,258657.28,530016.48 Europe,Liechtenstein,Office Supplies,Online,H,5/17/2011,851743686,6/23/2011,8739,651.21,524.96,5690924.19,4587625.44,1103298.75 Central America and the Caribbean,Jamaica,Personal Care,Offline,M,9/13/2010,341284978,10/5/2010,2664,81.73,56.67,217728.72,150968.88,66759.84 Europe,Norway,Personal Care,Offline,L,10/11/2013,533031165,10/11/2013,4622,81.73,56.67,377756.06,261928.74,115827.32 Sub-Saharan Africa,Cape Verde,Vegetables,Offline,L,9/18/2010,903593575,10/22/2010,2274,154.06,90.93,350332.44,206774.82,143557.62 Central America and the Caribbean,The Bahamas,Beverages,Offline,M,8/12/2011,999896037,9/4/2011,312,47.45,31.79,14804.40,9918.48,4885.92 Asia,Uzbekistan,Cereal,Online,L,7/2/2012,889174878,8/3/2012,5461,205.70,117.11,1123327.70,639537.71,483789.99 Sub-Saharan Africa,Zambia,Beverages,Offline,H,4/4/2014,708978927,4/17/2014,1474,47.45,31.79,69941.30,46858.46,23082.84 Middle East and North Africa,Tunisia ,Snacks,Offline,H,3/30/2011,217169511,4/30/2011,4139,152.58,97.44,631528.62,403304.16,228224.46 Australia and Oceania,Australia,Clothes,Offline,L,4/4/2010,141920459,5/14/2010,6272,109.28,35.84,685404.16,224788.48,460615.68 Central America and the Caribbean,Dominica,Cosmetics,Offline,M,8/1/2011,831718099,8/7/2011,2723,437.20,263.33,1190495.60,717047.59,473448.01 Europe,Andorra,Household,Offline,L,10/13/2012,905361258,11/17/2012,5370,668.27,502.54,3588609.90,2698639.80,889970.10 Australia and Oceania,Marshall Islands,Meat,Online,L,6/26/2012,401961266,8/11/2012,8126,421.89,364.69,3428278.14,2963470.94,464807.20 Sub-Saharan Africa,Togo,Fruits,Offline,H,3/3/2014,330941951,4/17/2014,1932,9.33,6.92,18025.56,13369.44,4656.12 Europe,Iceland,Baby Food,Online,L,10/22/2014,422039639,10/23/2014,9763,255.28,159.42,2492298.64,1556417.46,935881.18 Australia and Oceania,Palau,Cereal,Online,M,3/22/2016,475303161,4/15/2016,1622,205.70,117.11,333645.40,189952.42,143692.98 Middle East and North Africa,Iraq,Personal Care,Offline,M,9/23/2013,811093842,10/29/2013,9547,81.73,56.67,780276.31,541028.49,239247.82 Sub-Saharan Africa,Togo,Meat,Online,C,1/25/2015,920085513,3/11/2015,2605,421.89,364.69,1099023.45,950017.45,149006.00 Sub-Saharan Africa,Zambia,Snacks,Offline,L,11/22/2013,813264501,12/17/2013,1893,152.58,97.44,288833.94,184453.92,104380.02 Europe,Iceland,Meat,Offline,M,4/16/2016,571929633,5/24/2016,5543,421.89,364.69,2338536.27,2021476.67,317059.60 Europe,Greece,Cosmetics,Offline,H,4/7/2014,797692239,4/15/2014,3715,437.20,263.33,1624198.00,978270.95,645927.05 Europe,Cyprus,Snacks,Online,C,3/27/2012,362476146,5/15/2012,3601,152.58,97.44,549440.58,350881.44,198559.14 Central America and the Caribbean,El Salvador,Snacks,Online,H,9/14/2015,458517682,10/20/2015,4426,152.58,97.44,675319.08,431269.44,244049.64 Sub-Saharan Africa,Zimbabwe,Baby Food,Online,L,4/12/2012,548365676,5/16/2012,2444,255.28,159.42,623904.32,389622.48,234281.84 Sub-Saharan Africa,Uganda,Household,Offline,C,5/19/2013,614881455,6/9/2013,5942,668.27,502.54,3970860.34,2986092.68,984767.66 Central America and the Caribbean,Cuba,Vegetables,Online,H,7/18/2012,711238849,8/1/2012,235,154.06,90.93,36204.10,21368.55,14835.55 Sub-Saharan Africa,Nigeria,Fruits,Offline,M,12/14/2011,510924184,1/24/2012,2675,9.33,6.92,24957.75,18511.00,6446.75 Australia and Oceania,Tuvalu,Snacks,Offline,H,1/19/2011,657736289,2/9/2011,7639,152.58,97.44,1165558.62,744344.16,421214.46 Middle East and North Africa,Libya,Cosmetics,Offline,C,5/16/2010,515786492,6/19/2010,1540,437.20,263.33,673288.00,405528.20,267759.80 Asia,Malaysia,Vegetables,Offline,L,4/13/2015,419498622,6/1/2015,7819,154.06,90.93,1204595.14,710981.67,493613.47 Asia,North Korea,Vegetables,Offline,M,1/28/2017,323609006,3/19/2017,1951,154.06,90.93,300571.06,177404.43,123166.63 Asia,Bangladesh,Vegetables,Online,H,11/24/2011,253166472,11/29/2011,6440,154.06,90.93,992146.40,585589.20,406557.20 Sub-Saharan Africa,Burkina Faso,Beverages,Online,H,2/5/2012,753532350,2/6/2012,5822,47.45,31.79,276253.90,185081.38,91172.52 Middle East and North Africa,Morocco,Baby Food,Offline,L,2/29/2012,640380465,3/10/2012,1665,255.28,159.42,425041.20,265434.30,159606.90 Central America and the Caribbean,Panama,Vegetables,Online,C,3/22/2015,149697148,4/8/2015,7568,154.06,90.93,1165926.08,688158.24,477767.84 Europe,Hungary,Meat,Online,M,2/6/2014,487781226,3/24/2014,4159,421.89,364.69,1754640.51,1516745.71,237894.80 Sub-Saharan Africa,Democratic Republic of the Congo,Cereal,Offline,L,4/10/2010,681244027,5/14/2010,4101,205.70,117.11,843575.70,480268.11,363307.59 Europe,Liechtenstein,Personal Care,Online,C,1/19/2010,727009379,1/26/2010,7086,81.73,56.67,579138.78,401563.62,177575.16 Australia and Oceania,Vanuatu,Vegetables,Online,M,4/2/2013,242313611,4/5/2013,4837,154.06,90.93,745188.22,439828.41,305359.81 Europe,Slovakia,Clothes,Offline,C,12/17/2016,714705550,12/17/2016,6109,109.28,35.84,667591.52,218946.56,448644.96 Sub-Saharan Africa,Ethiopia,Baby Food,Online,L,10/6/2011,552046525,11/14/2011,1689,255.28,159.42,431167.92,269260.38,161907.54 Asia,North Korea,Vegetables,Offline,L,10/23/2015,932510364,12/9/2015,9394,154.06,90.93,1447239.64,854196.42,593043.22 North America,Greenland,Household,Online,M,6/15/2010,854583394,6/30/2010,9072,668.27,502.54,6062545.44,4559042.88,1503502.56 Sub-Saharan Africa,Ghana,Fruits,Online,C,3/10/2012,287064445,4/6/2012,7603,9.33,6.92,70935.99,52612.76,18323.23 Middle East and North Africa,Bahrain,Snacks,Online,L,11/11/2015,619064843,12/4/2015,3899,152.58,97.44,594909.42,379918.56,214990.86 Central America and the Caribbean,The Bahamas,Office Supplies,Offline,L,8/1/2013,610008418,9/6/2013,3902,651.21,524.96,2541021.42,2048393.92,492627.50 Sub-Saharan Africa,Botswana,Personal Care,Online,M,9/10/2013,439631497,9/21/2013,5585,81.73,56.67,456462.05,316501.95,139960.10 Central America and the Caribbean,Guatemala,Cosmetics,Online,M,3/23/2014,357982909,4/24/2014,3953,437.20,263.33,1728251.60,1040943.49,687308.11 Europe,Hungary,Snacks,Online,C,4/12/2014,235423982,5/27/2014,6043,152.58,97.44,922040.94,588829.92,333211.02 Europe,Finland,Baby Food,Online,M,3/27/2010,912628543,4/30/2010,5921,255.28,159.42,1511512.88,943925.82,567587.06 Sub-Saharan Africa,Malawi,Cosmetics,Offline,M,9/8/2014,150582921,10/27/2014,9687,437.20,263.33,4235156.40,2550877.71,1684278.69 Europe,Moldova ,Snacks,Online,M,10/13/2014,280585944,11/7/2014,471,152.58,97.44,71865.18,45894.24,25970.94 Sub-Saharan Africa,Guinea-Bissau,Cereal,Online,C,11/18/2013,554248940,11/30/2013,3433,205.70,117.11,706168.10,402038.63,304129.47 Sub-Saharan Africa,Madagascar,Office Supplies,Offline,M,8/17/2012,293495738,10/5/2012,766,651.21,524.96,498826.86,402119.36,96707.50 Europe,Estonia,Clothes,Online,H,9/21/2012,240562665,10/27/2012,6693,109.28,35.84,731411.04,239877.12,491533.92 Central America and the Caribbean,Jamaica,Vegetables,Offline,C,2/24/2013,307998549,3/8/2013,2470,154.06,90.93,380528.20,224597.10,155931.10 Sub-Saharan Africa,Lesotho,Baby Food,Offline,C,12/17/2013,928664720,1/19/2014,1382,255.28,159.42,352796.96,220318.44,132478.52 Europe,Estonia,Clothes,Online,H,6/23/2012,805735003,7/30/2012,3748,109.28,35.84,409581.44,134328.32,275253.12 Sub-Saharan Africa,Burkina Faso,Meat,Offline,L,9/1/2014,962695729,9/30/2014,1914,421.89,364.69,807497.46,698016.66,109480.80 Central America and the Caribbean,Guatemala,Beverages,Online,C,3/13/2016,693345725,3/16/2016,5263,47.45,31.79,249729.35,167310.77,82418.58 Sub-Saharan Africa,Mauritania,Personal Care,Online,L,10/21/2013,711796319,11/4/2013,5203,81.73,56.67,425241.19,294854.01,130387.18 Europe,Greece,Office Supplies,Online,H,8/25/2016,902471339,8/31/2016,179,651.21,524.96,116566.59,93967.84,22598.75 Middle East and North Africa,Saudi Arabia,Personal Care,Online,H,3/26/2012,770107114,5/3/2012,663,81.73,56.67,54186.99,37572.21,16614.78 Sub-Saharan Africa,Kenya,Snacks,Online,M,8/21/2015,789752471,8/25/2015,4161,152.58,97.44,634885.38,405447.84,229437.54 Middle East and North Africa,Tunisia ,Fruits,Online,L,9/14/2012,156768739,9/28/2012,208,9.33,6.92,1940.64,1439.36,501.28 Europe,Austria,Office Supplies,Online,C,11/9/2016,836829745,11/25/2016,5373,651.21,524.96,3498951.33,2820610.08,678341.25 Europe,Luxembourg,Vegetables,Online,C,4/15/2012,815921819,5/4/2012,8253,154.06,90.93,1271457.18,750445.29,521011.89 Central America and the Caribbean,Antigua and Barbuda ,Fruits,Offline,L,10/4/2010,850343787,10/28/2010,4478,9.33,6.92,41779.74,30987.76,10791.98 Europe,United Kingdom,Cosmetics,Online,H,7/10/2017,416706979,8/21/2017,1710,437.20,263.33,747612.00,450294.30,297317.70 Europe,Switzerland,Cereal,Online,M,5/24/2012,861935222,6/16/2012,4641,205.70,117.11,954653.70,543507.51,411146.19 Central America and the Caribbean,Honduras,Beverages,Offline,M,2/13/2014,453264844,3/17/2014,9995,47.45,31.79,474262.75,317741.05,156521.70 Europe,Denmark,Meat,Online,M,12/31/2015,228244674,1/20/2016,1526,421.89,364.69,643804.14,556516.94,87287.20 Asia,Brunei,Meat,Offline,H,5/27/2012,844736039,5/30/2012,5021,421.89,364.69,2118309.69,1831108.49,287201.20 Europe,Montenegro,Household,Online,M,2/14/2010,330912768,3/21/2010,3297,668.27,502.54,2203286.19,1656874.38,546411.81 Middle East and North Africa,Turkey,Meat,Offline,C,1/6/2017,835261189,2/7/2017,1202,421.89,364.69,507111.78,438357.38,68754.40 Europe,Ukraine,Household,Offline,C,7/3/2015,976580131,8/22/2015,617,668.27,502.54,412322.59,310067.18,102255.41 Middle East and North Africa,Afghanistan,Meat,Online,C,10/12/2011,793980920,10/19/2011,5453,421.89,364.69,2300566.17,1988654.57,311911.60 Europe,Serbia,Vegetables,Online,H,11/26/2016,396887385,12/6/2016,6652,154.06,90.93,1024807.12,604866.36,419940.76 Sub-Saharan Africa,Equatorial Guinea,Office Supplies,Offline,L,9/12/2012,415035855,10/11/2012,7187,651.21,524.96,4680246.27,3772887.52,907358.75 Europe,United Kingdom,Cereal,Online,H,2/18/2016,648475158,3/11/2016,7065,205.70,117.11,1453270.50,827382.15,625888.35 Europe,Czech Republic,Vegetables,Offline,H,12/12/2014,517566621,12/23/2014,8319,154.06,90.93,1281625.14,756446.67,525178.47 Asia,North Korea,Vegetables,Offline,L,11/18/2016,412984073,11/23/2016,19,154.06,90.93,2927.14,1727.67,1199.47 Europe,Romania,Snacks,Offline,M,8/7/2015,345713841,9/6/2015,3263,152.58,97.44,497868.54,317946.72,179921.82 Sub-Saharan Africa,Ethiopia,Beverages,Online,H,3/5/2017,397054755,4/18/2017,6180,47.45,31.79,293241.00,196462.20,96778.80 Australia and Oceania,Nauru,Vegetables,Online,C,8/14/2013,268618142,9/6/2013,8932,154.06,90.93,1376063.92,812186.76,563877.16 North America,Greenland,Clothes,Online,C,12/3/2016,632327830,1/2/2017,8712,109.28,35.84,952047.36,312238.08,639809.28 Sub-Saharan Africa,Rwanda,Beverages,Offline,H,6/9/2017,880420148,7/21/2017,4742,47.45,31.79,225007.90,150748.18,74259.72 Central America and the Caribbean,Grenada,Office Supplies,Online,C,5/10/2010,475443923,6/2/2010,3277,651.21,524.96,2134015.17,1720293.92,413721.25 Europe,Monaco,Personal Care,Online,M,8/29/2014,300260484,8/29/2014,2604,81.73,56.67,212824.92,147568.68,65256.24 Europe,Germany,Baby Food,Online,L,4/25/2016,408043658,6/5/2016,8041,255.28,159.42,2052706.48,1281896.22,770810.26 Europe,Armenia,Beverages,Offline,H,7/2/2017,472279775,7/26/2017,6935,47.45,31.79,329065.75,220463.65,108602.10 Europe,Slovenia,Clothes,Online,M,2/7/2010,236767661,2/24/2010,3667,109.28,35.84,400729.76,131425.28,269304.48 Middle East and North Africa,Iraq,Office Supplies,Offline,M,5/11/2017,865618646,5/12/2017,4648,651.21,524.96,3026824.08,2440014.08,586810.00 Australia and Oceania,Australia,Fruits,Online,L,5/7/2014,893256556,6/23/2014,3320,9.33,6.92,30975.60,22974.40,8001.20 Middle East and North Africa,Israel,Cereal,Offline,M,1/31/2015,274417722,3/6/2015,5157,205.70,117.11,1060794.90,603936.27,456858.63 Sub-Saharan Africa,Mozambique,Cereal,Offline,L,9/16/2015,834150969,10/21/2015,2663,205.70,117.11,547779.10,311863.93,235915.17 Central America and the Caribbean,Dominican Republic,Baby Food,Online,M,6/7/2013,417817628,7/11/2013,376,255.28,159.42,95985.28,59941.92,36043.36 Central America and the Caribbean,Nicaragua,Personal Care,Online,H,4/24/2010,541091525,4/27/2010,9861,81.73,56.67,805939.53,558822.87,247116.66 Australia and Oceania,New Zealand,Household,Online,C,1/17/2017,539958989,2/15/2017,4719,668.27,502.54,3153566.13,2371486.26,782079.87 Asia,Bangladesh,Snacks,Online,C,4/27/2011,720718848,5/31/2011,5578,152.58,97.44,851091.24,543520.32,307570.92 Asia,Maldives,Meat,Online,C,4/26/2017,109982430,5/2/2017,5100,421.89,364.69,2151639.00,1859919.00,291720.00 Sub-Saharan Africa,Sudan,Office Supplies,Offline,L,1/26/2011,504673564,2/16/2011,2977,651.21,524.96,1938652.17,1562805.92,375846.25 Asia,Bhutan,Clothes,Online,L,2/8/2015,622028577,2/25/2015,934,109.28,35.84,102067.52,33474.56,68592.96 Europe,Montenegro,Baby Food,Online,C,5/15/2011,149596297,6/5/2011,7724,255.28,159.42,1971782.72,1231360.08,740422.64 Asia,Kazakhstan,Fruits,Offline,H,2/27/2013,195238053,3/24/2013,4133,9.33,6.92,38560.89,28600.36,9960.53 Asia,Philippines,Snacks,Online,H,11/29/2015,137127673,12/4/2015,7981,152.58,97.44,1217740.98,777668.64,440072.34 Sub-Saharan Africa,Eritrea,Household,Online,L,2/15/2016,773751485,2/20/2016,9114,668.27,502.54,6090612.78,4580149.56,1510463.22 North America,Canada,Beverages,Online,C,2/23/2015,273908317,2/28/2015,4413,47.45,31.79,209396.85,140289.27,69107.58 Sub-Saharan Africa,Togo,Office Supplies,Online,M,5/23/2015,926709496,7/11/2015,2788,651.21,524.96,1815573.48,1463588.48,351985.00 Sub-Saharan Africa,Botswana,Cereal,Offline,M,7/21/2016,591578853,8/6/2016,184,205.70,117.11,37848.80,21548.24,16300.56 Central America and the Caribbean,Belize,Personal Care,Online,C,10/27/2011,348252713,10/30/2011,4572,81.73,56.67,373669.56,259095.24,114574.32 Sub-Saharan Africa,Cape Verde,Snacks,Offline,C,5/15/2014,446779906,6/28/2014,958,152.58,97.44,146171.64,93347.52,52824.12 Asia,North Korea,Cosmetics,Online,M,9/25/2015,757521760,10/29/2015,6377,437.20,263.33,2788024.40,1679255.41,1108768.99 Asia,China,Office Supplies,Offline,L,4/15/2012,321152102,4/24/2012,4899,651.21,524.96,3190277.79,2571779.04,618498.75 Sub-Saharan Africa,Swaziland,Clothes,Offline,L,8/18/2016,498657262,9/4/2016,2620,109.28,35.84,286313.60,93900.80,192412.80 Europe,Denmark,Snacks,Offline,L,11/26/2015,921336066,1/10/2016,2671,152.58,97.44,407541.18,260262.24,147278.94 Sub-Saharan Africa,Tanzania,Snacks,Offline,H,6/22/2013,840799844,8/2/2013,213,152.58,97.44,32499.54,20754.72,11744.82 North America,Mexico,Baby Food,Online,C,7/20/2017,478972423,9/2/2017,7439,255.28,159.42,1899027.92,1185925.38,713102.54 Asia,Taiwan,Office Supplies,Online,L,9/11/2014,578090131,9/16/2014,8571,651.21,524.96,5581520.91,4499432.16,1082088.75 Sub-Saharan Africa,Rwanda,Fruits,Offline,L,6/19/2011,150701797,7/4/2011,4865,9.33,6.92,45390.45,33665.80,11724.65 Sub-Saharan Africa,Sao Tome and Principe,Meat,Online,C,6/23/2015,529668748,7/19/2015,9608,421.89,364.69,4053519.12,3503941.52,549577.60 Central America and the Caribbean,Saint Vincent and the Grenadines,Cereal,Offline,M,6/25/2016,418164813,7/23/2016,3116,205.70,117.11,640961.20,364914.76,276046.44 Central America and the Caribbean,Saint Vincent and the Grenadines,Clothes,Online,H,11/18/2012,839676320,12/14/2012,7737,109.28,35.84,845499.36,277294.08,568205.28 Central America and the Caribbean,Saint Kitts and Nevis ,Vegetables,Offline,L,6/27/2015,188002097,7/11/2015,2853,154.06,90.93,439533.18,259423.29,180109.89 Europe,Croatia,Meat,Offline,L,6/15/2013,977253472,8/1/2013,9874,421.89,364.69,4165741.86,3600949.06,564792.80 Sub-Saharan Africa,Eritrea,Snacks,Offline,L,12/14/2015,391854274,1/1/2016,7242,152.58,97.44,1104984.36,705660.48,399323.88 Sub-Saharan Africa,Togo,Beverages,Online,H,6/24/2010,636540830,7/31/2010,5432,47.45,31.79,257748.40,172683.28,85065.12 Asia,Turkmenistan,Cosmetics,Online,L,2/11/2012,386361968,3/30/2012,1947,437.20,263.33,851228.40,512703.51,338524.89 Sub-Saharan Africa,Central African Republic,Beverages,Online,M,4/11/2014,636679017,4/22/2014,6324,47.45,31.79,300073.80,201039.96,99033.84 Middle East and North Africa,Saudi Arabia,Personal Care,Offline,H,3/30/2015,653165805,4/22/2015,5131,81.73,56.67,419356.63,290773.77,128582.86 Middle East and North Africa,Yemen,Fruits,Offline,M,5/8/2014,221808660,6/22/2014,6966,9.33,6.92,64992.78,48204.72,16788.06 Sub-Saharan Africa,Democratic Republic of the Congo,Cereal,Offline,C,10/14/2015,998906409,11/9/2015,7459,205.70,117.11,1534316.30,873523.49,660792.81 Europe,Lithuania,Cosmetics,Online,C,3/25/2017,661070382,4/21/2017,4271,437.20,263.33,1867281.20,1124682.43,742598.77 Europe,United Kingdom,Meat,Offline,L,8/25/2013,555224406,8/25/2013,2095,421.89,364.69,883859.55,764025.55,119834.00 Middle East and North Africa,Bahrain,Beverages,Offline,M,3/17/2016,748604810,3/26/2016,7654,47.45,31.79,363182.30,243320.66,119861.64 Sub-Saharan Africa,Mauritania,Fruits,Offline,H,8/23/2010,478760421,8/27/2010,4702,9.33,6.92,43869.66,32537.84,11331.82 Sub-Saharan Africa,Rwanda,Vegetables,Online,L,1/13/2014,403552567,1/16/2014,9027,154.06,90.93,1390699.62,820825.11,569874.51 Asia,Cambodia,Clothes,Offline,M,6/17/2010,351155078,6/25/2010,3446,109.28,35.84,376578.88,123504.64,253074.24 Australia and Oceania,Vanuatu,Cereal,Online,L,5/8/2015,670054280,6/13/2015,2806,205.70,117.11,577194.20,328610.66,248583.54 Sub-Saharan Africa,Mauritius ,Beverages,Offline,L,2/14/2011,879049003,3/29/2011,8989,47.45,31.79,426528.05,285760.31,140767.74 Europe,Macedonia,Personal Care,Offline,H,7/20/2011,117250573,9/5/2011,5905,81.73,56.67,482615.65,334636.35,147979.30 Asia,Turkmenistan,Personal Care,Offline,M,7/15/2012,294082820,7/18/2012,4496,81.73,56.67,367458.08,254788.32,112669.76 Middle East and North Africa,Bahrain,Cereal,Offline,L,1/23/2011,239282071,2/27/2011,7737,205.70,117.11,1591500.90,906080.07,685420.83 Asia,Uzbekistan,Vegetables,Offline,H,7/6/2016,652897155,8/23/2016,5632,154.06,90.93,867665.92,512117.76,355548.16 North America,Greenland,Vegetables,Offline,H,8/21/2016,955289399,9/4/2016,217,154.06,90.93,33431.02,19731.81,13699.21 Middle East and North Africa,United Arab Emirates,Fruits,Offline,L,8/8/2011,637132632,9/22/2011,559,9.33,6.92,5215.47,3868.28,1347.19 Asia,Mongolia,Baby Food,Online,M,3/16/2010,609413182,3/28/2010,7758,255.28,159.42,1980462.24,1236780.36,743681.88 Middle East and North Africa,Iraq,Personal Care,Online,H,12/18/2010,953429877,1/14/2011,9943,81.73,56.67,812641.39,563469.81,249171.58 Central America and the Caribbean,Guatemala,Personal Care,Online,C,6/12/2013,470794045,6/27/2013,7275,81.73,56.67,594585.75,412274.25,182311.50 Sub-Saharan Africa,Mauritius ,Baby Food,Offline,C,7/6/2014,733429515,8/15/2014,6947,255.28,159.42,1773430.16,1107490.74,665939.42 Middle East and North Africa,Algeria,Cosmetics,Offline,L,1/27/2012,233572614,2/22/2012,8182,437.20,263.33,3577170.40,2154566.06,1422604.34 Europe,France,Baby Food,Online,M,6/23/2016,233772170,8/2/2016,7235,255.28,159.42,1846950.80,1153403.70,693547.10 Asia,India,Household,Offline,C,5/29/2016,716889512,6/5/2016,2392,668.27,502.54,1598501.84,1202075.68,396426.16 Middle East and North Africa,Libya,Beverages,Offline,L,12/25/2012,836098468,2/10/2013,8971,47.45,31.79,425673.95,285188.09,140485.86 Sub-Saharan Africa,Kenya,Clothes,Offline,M,12/15/2015,264885365,1/20/2016,4321,109.28,35.84,472198.88,154864.64,317334.24 Asia,South Korea,Clothes,Online,L,3/14/2017,547049033,4/26/2017,2820,109.28,35.84,308169.60,101068.80,207100.80 Middle East and North Africa,Morocco,Snacks,Online,H,3/30/2017,146700799,5/17/2017,881,152.58,97.44,134422.98,85844.64,48578.34 Sub-Saharan Africa,Niger,Vegetables,Offline,L,11/20/2013,298264491,12/12/2013,1946,154.06,90.93,299800.76,176949.78,122850.98 Europe,Iceland,Baby Food,Offline,C,7/25/2013,956476438,9/10/2013,1488,255.28,159.42,379856.64,237216.96,142639.68 Sub-Saharan Africa,Chad,Cereal,Offline,L,6/3/2012,346385467,7/16/2012,2012,205.70,117.11,413868.40,235625.32,178243.08 Central America and the Caribbean,Belize,Fruits,Online,L,3/30/2015,813352906,5/14/2015,8054,9.33,6.92,75143.82,55733.68,19410.14 Asia,Singapore,Office Supplies,Offline,C,7/4/2016,273052585,7/29/2016,1182,651.21,524.96,769730.22,620502.72,149227.50 Europe,Finland,Cosmetics,Offline,M,10/9/2011,761470830,10/27/2011,4995,437.20,263.33,2183814.00,1315333.35,868480.65 Sub-Saharan Africa,Chad,Fruits,Online,L,7/31/2016,784906470,9/19/2016,122,9.33,6.92,1138.26,844.24,294.02 Europe,Spain,Cereal,Online,M,4/6/2017,269970834,4/11/2017,9224,205.70,117.11,1897376.80,1080222.64,817154.16 Europe,Moldova ,Office Supplies,Offline,L,7/24/2012,113587749,8/5/2012,1994,651.21,524.96,1298512.74,1046770.24,251742.50 Asia,Mongolia,Vegetables,Online,M,6/7/2017,832993543,6/15/2017,155,154.06,90.93,23879.30,14094.15,9785.15 Europe,Poland,Office Supplies,Offline,H,10/27/2013,315737044,11/16/2013,2463,651.21,524.96,1603930.23,1292976.48,310953.75 Europe,Lithuania,Household,Online,H,1/10/2015,569679582,2/18/2015,9703,668.27,502.54,6484223.81,4876145.62,1608078.19 Middle East and North Africa,Libya,Meat,Online,C,6/26/2016,972994983,8/8/2016,9692,421.89,364.69,4088957.88,3534575.48,554382.40 Asia,Brunei,Snacks,Offline,H,9/11/2014,524169576,10/5/2014,2281,152.58,97.44,348034.98,222260.64,125774.34 Europe,Greece,Clothes,Offline,H,1/1/2011,992002189,1/13/2011,4347,109.28,35.84,475040.16,155796.48,319243.68 Sub-Saharan Africa,Chad,Cosmetics,Online,M,5/25/2015,165604150,5/26/2015,4803,437.20,263.33,2099871.60,1264773.99,835097.61 Sub-Saharan Africa,Sao Tome and Principe,Beverages,Online,M,6/4/2012,404399287,6/27/2012,9591,47.45,31.79,455092.95,304897.89,150195.06 Europe,Vatican City,Snacks,Online,C,6/3/2010,988123929,6/26/2010,6684,152.58,97.44,1019844.72,651288.96,368555.76 Sub-Saharan Africa,Nigeria,Personal Care,Online,L,12/27/2014,366826903,1/30/2015,1087,81.73,56.67,88840.51,61600.29,27240.22 Sub-Saharan Africa,Liberia,Clothes,Online,H,2/1/2010,210869538,2/2/2010,9837,109.28,35.84,1074987.36,352558.08,722429.28 Sub-Saharan Africa,Ghana,Baby Food,Online,M,10/25/2014,460925662,11/6/2014,7001,255.28,159.42,1787215.28,1116099.42,671115.86 Asia,Japan,Personal Care,Offline,M,6/22/2011,677981603,7/6/2011,8677,81.73,56.67,709171.21,491725.59,217445.62 Europe,Belarus,Cereal,Online,M,7/1/2017,493336188,8/13/2017,7996,205.70,117.11,1644777.20,936411.56,708365.64 Asia,Maldives,Household,Online,C,7/15/2013,958600747,9/1/2013,118,668.27,502.54,78855.86,59299.72,19556.14 Europe,Georgia,Clothes,Offline,C,5/17/2015,495699107,6/4/2015,7236,109.28,35.84,790750.08,259338.24,531411.84 Australia and Oceania,New Zealand,Fruits,Offline,L,2/20/2017,746867597,2/24/2017,3574,9.33,6.92,33345.42,24732.08,8613.34 Asia,Tajikistan,Meat,Online,C,4/1/2010,724655044,5/18/2010,386,421.89,364.69,162849.54,140770.34,22079.20 Australia and Oceania,Samoa ,Fruits,Online,M,6/18/2017,861922776,8/4/2017,958,9.33,6.92,8938.14,6629.36,2308.78 Asia,China,Meat,Online,C,5/22/2013,761844623,7/8/2013,5609,421.89,364.69,2366381.01,2045546.21,320834.80 Sub-Saharan Africa,Burundi,Cosmetics,Offline,C,7/28/2011,547906911,7/29/2011,6685,437.20,263.33,2922682.00,1760361.05,1162320.95 Sub-Saharan Africa,Equatorial Guinea,Baby Food,Offline,L,3/31/2015,413908469,4/2/2015,3569,255.28,159.42,911094.32,568969.98,342124.34 Sub-Saharan Africa,Sudan,Meat,Online,H,7/30/2013,173960626,8/5/2013,7670,421.89,364.69,3235896.30,2797172.30,438724.00 Middle East and North Africa,Israel,Meat,Offline,M,9/23/2015,612487208,10/1/2015,7431,421.89,364.69,3135064.59,2710011.39,425053.20 Central America and the Caribbean,Jamaica,Office Supplies,Offline,H,10/8/2016,334224545,10/21/2016,3325,651.21,524.96,2165273.25,1745492.00,419781.25 North America,United States of America,Clothes,Online,H,8/20/2016,714221465,9/9/2016,2858,109.28,35.84,312322.24,102430.72,209891.52 Middle East and North Africa,Libya,Snacks,Offline,M,4/28/2016,947839295,6/3/2016,5565,152.58,97.44,849107.70,542253.60,306854.10 Middle East and North Africa,Somalia,Baby Food,Online,L,2/6/2014,300751864,2/14/2014,8015,255.28,159.42,2046069.20,1277751.30,768317.90 Middle East and North Africa,Iraq,Vegetables,Online,M,11/18/2016,358945500,1/6/2017,8805,154.06,90.93,1356498.30,800638.65,555859.65 Australia and Oceania,Federated States of Micronesia,Cosmetics,Offline,M,9/17/2013,978719031,9/22/2013,3566,437.20,263.33,1559055.20,939034.78,620020.42 Europe,Georgia,Vegetables,Offline,C,5/31/2017,736683785,7/12/2017,9958,154.06,90.93,1534129.48,905480.94,628648.54 Central America and the Caribbean,El Salvador,Cereal,Online,M,5/18/2015,979763591,5/24/2015,2674,205.70,117.11,550041.80,313152.14,236889.66 Sub-Saharan Africa,Guinea,Cereal,Online,L,3/14/2011,875194776,3/28/2011,8438,205.70,117.11,1735696.60,988174.18,747522.42 Europe,Germany,Fruits,Offline,H,5/1/2013,560526168,5/18/2013,1004,9.33,6.92,9367.32,6947.68,2419.64 Sub-Saharan Africa,Djibouti,Vegetables,Online,H,2/20/2016,693619096,3/23/2016,6159,154.06,90.93,948855.54,560037.87,388817.67 Sub-Saharan Africa,Angola,Baby Food,Offline,C,4/9/2011,202647387,4/18/2011,6720,255.28,159.42,1715481.60,1071302.40,644179.20 Sub-Saharan Africa,Madagascar,Snacks,Offline,C,2/26/2014,336097371,3/16/2014,7536,152.58,97.44,1149842.88,734307.84,415535.04 Middle East and North Africa,Iraq,Vegetables,Online,L,10/15/2014,612767875,10/28/2014,486,154.06,90.93,74873.16,44191.98,30681.18 Sub-Saharan Africa,Gabon,Baby Food,Offline,C,10/16/2011,171770226,10/30/2011,9482,255.28,159.42,2420564.96,1511620.44,908944.52 Sub-Saharan Africa,Nigeria,Cereal,Online,H,3/20/2016,922528254,4/14/2016,5466,205.70,117.11,1124356.20,640123.26,484232.94 Central America and the Caribbean,Trinidad and Tobago,Beverages,Online,H,6/21/2017,794778287,7/9/2017,1412,47.45,31.79,66999.40,44887.48,22111.92 Sub-Saharan Africa,Mauritania,Household,Online,L,5/15/2017,488569152,5/16/2017,7324,668.27,502.54,4894409.48,3680602.96,1213806.52 Sub-Saharan Africa,Mauritania,Meat,Online,M,3/25/2011,324262177,5/11/2011,5239,421.89,364.69,2210281.71,1910610.91,299670.80 North America,Greenland,Office Supplies,Online,C,5/13/2014,692531192,5/25/2014,4224,651.21,524.96,2750711.04,2217431.04,533280.00 Sub-Saharan Africa,Ghana,Office Supplies,Online,L,11/9/2012,704362523,12/2/2012,5378,651.21,524.96,3502207.38,2823234.88,678972.50 Sub-Saharan Africa,Botswana,Office Supplies,Offline,M,10/17/2012,441054999,11/26/2012,6830,651.21,524.96,4447764.30,3585476.80,862287.50 Europe,Cyprus,Cereal,Offline,M,9/30/2013,504219949,11/6/2013,8743,205.70,117.11,1798435.10,1023892.73,774542.37 Middle East and North Africa,Azerbaijan,Vegetables,Offline,M,7/27/2012,665781199,8/24/2012,8307,154.06,90.93,1279776.42,755355.51,524420.91 Europe,Vatican City,Household,Online,H,10/3/2014,317975080,11/11/2014,4747,668.27,502.54,3172277.69,2385557.38,786720.31 Middle East and North Africa,Bahrain,Clothes,Online,H,7/1/2015,723350417,8/5/2015,4318,109.28,35.84,471871.04,154757.12,317113.92 Sub-Saharan Africa,Burundi,Baby Food,Offline,C,1/22/2011,964768540,3/6/2011,5305,255.28,159.42,1354260.40,845723.10,508537.30 Asia,Sri Lanka,Baby Food,Online,C,2/16/2010,195403277,3/18/2010,3027,255.28,159.42,772732.56,482564.34,290168.22 Europe,France,Snacks,Offline,C,11/17/2014,788740956,12/12/2014,4831,152.58,97.44,737113.98,470732.64,266381.34 Sub-Saharan Africa,Burundi,Baby Food,Online,L,3/13/2017,688580405,4/28/2017,5099,255.28,159.42,1301672.72,812882.58,488790.14 Europe,Bulgaria,Meat,Offline,M,1/12/2010,159032952,2/3/2010,240,421.89,364.69,101253.60,87525.60,13728.00 Sub-Saharan Africa,Mali,Personal Care,Offline,H,11/24/2013,434522426,12/20/2013,3697,81.73,56.67,302155.81,209508.99,92646.82 Central America and the Caribbean,Panama,Cosmetics,Online,C,7/9/2012,569785153,8/16/2012,944,437.20,263.33,412716.80,248583.52,164133.28 Central America and the Caribbean,Saint Vincent and the Grenadines,Fruits,Online,L,3/8/2017,589869964,4/6/2017,4485,9.33,6.92,41845.05,31036.20,10808.85 Central America and the Caribbean,Guatemala,Household,Offline,M,7/10/2017,140138185,8/13/2017,8858,668.27,502.54,5919535.66,4451499.32,1468036.34 Central America and the Caribbean,Saint Lucia,Vegetables,Offline,H,8/8/2015,736263644,9/1/2015,5629,154.06,90.93,867203.74,511844.97,355358.77 Sub-Saharan Africa,Liberia,Snacks,Offline,C,7/17/2014,814232671,8/22/2014,8396,152.58,97.44,1281061.68,818106.24,462955.44 Europe,Portugal,Snacks,Online,C,9/29/2014,680344092,11/12/2014,7791,152.58,97.44,1188750.78,759155.04,429595.74 Australia and Oceania,Solomon Islands,Beverages,Online,H,2/9/2010,261209237,3/15/2010,6473,47.45,31.79,307143.85,205776.67,101367.18 Asia,Indonesia,Personal Care,Online,C,7/11/2014,453751933,8/12/2014,4135,81.73,56.67,337953.55,234330.45,103623.10 Middle East and North Africa,Pakistan,Cereal,Online,M,8/28/2012,875208508,9/25/2012,2502,205.70,117.11,514661.40,293009.22,221652.18 North America,Canada,Beverages,Online,C,9/29/2016,313127791,11/16/2016,327,47.45,31.79,15516.15,10395.33,5120.82 Sub-Saharan Africa,Namibia,Fruits,Online,L,5/15/2017,775371110,6/15/2017,8397,9.33,6.92,78344.01,58107.24,20236.77 Europe,Ireland,Vegetables,Online,C,7/14/2017,740112292,7/22/2017,4529,154.06,90.93,697737.74,411821.97,285915.77 Europe,Finland,Cosmetics,Offline,C,9/26/2013,105837666,10/16/2013,8572,437.20,263.33,3747678.40,2257264.76,1490413.64 Middle East and North Africa,Turkey,Clothes,Offline,L,11/26/2014,641346061,1/13/2015,7406,109.28,35.84,809327.68,265431.04,543896.64 Central America and the Caribbean,Barbados,Cereal,Online,C,11/16/2015,135748803,12/19/2015,9942,205.70,117.11,2045069.40,1164307.62,880761.78 Asia,Myanmar,Baby Food,Offline,L,5/5/2016,948469722,5/14/2016,2123,255.28,159.42,541959.44,338448.66,203510.78 North America,United States of America,Fruits,Online,C,1/24/2017,559245145,2/14/2017,1921,9.33,6.92,17922.93,13293.32,4629.61 Asia,North Korea,Personal Care,Online,L,1/30/2016,118123900,1/31/2016,4342,81.73,56.67,354871.66,246061.14,108810.52 Central America and the Caribbean,El Salvador,Meat,Offline,H,6/27/2012,395467317,8/14/2012,6422,421.89,364.69,2709377.58,2342039.18,367338.40 Central America and the Caribbean,Belize,Clothes,Offline,M,3/30/2010,431949222,5/13/2010,2228,109.28,35.84,243475.84,79851.52,163624.32 Middle East and North Africa,Turkey,Personal Care,Offline,M,5/12/2014,688555943,6/20/2014,7860,81.73,56.67,642397.80,445426.20,196971.60 Europe,Cyprus,Meat,Offline,M,12/29/2011,796586310,1/16/2012,6446,421.89,364.69,2719502.94,2350791.74,368711.20 Europe,Czech Republic,Clothes,Offline,H,1/27/2014,907651650,3/1/2014,3148,109.28,35.84,344013.44,112824.32,231189.12 Middle East and North Africa,Qatar,Clothes,Offline,C,9/2/2013,343675792,9/22/2013,159,109.28,35.84,17375.52,5698.56,11676.96 Sub-Saharan Africa,Seychelles ,Vegetables,Online,C,6/26/2012,746895062,7/27/2012,1701,154.06,90.93,262056.06,154671.93,107384.13 Europe,Romania,Snacks,Online,H,1/29/2017,229858291,2/3/2017,9031,152.58,97.44,1377949.98,879980.64,497969.34 Middle East and North Africa,Bahrain,Cereal,Online,C,5/7/2012,125426805,6/22/2012,5434,205.70,117.11,1117773.80,636375.74,481398.06 Europe,Romania,Cosmetics,Online,L,10/8/2010,936774432,11/22/2010,1227,437.20,263.33,536444.40,323105.91,213338.49 Sub-Saharan Africa,Kenya,Clothes,Offline,H,9/25/2010,987387502,9/29/2010,8759,109.28,35.84,957183.52,313922.56,643260.96 Sub-Saharan Africa,Togo,Clothes,Online,H,6/25/2015,471064841,7/15/2015,7409,109.28,35.84,809655.52,265538.56,544116.96 Europe,Switzerland,Clothes,Offline,C,3/5/2014,101917779,4/20/2014,8590,109.28,35.84,938715.20,307865.60,630849.60 Sub-Saharan Africa,Cape Verde,Office Supplies,Offline,L,12/23/2015,664370143,1/18/2016,744,651.21,524.96,484500.24,390570.24,93930.00 Europe,Lithuania,Cosmetics,Online,L,12/18/2015,763158261,1/6/2016,4343,437.20,263.33,1898759.60,1143642.19,755117.41 Asia,China,Personal Care,Offline,H,1/22/2014,873330962,2/11/2014,6894,81.73,56.67,563446.62,390682.98,172763.64 Sub-Saharan Africa,Guinea-Bissau,Beverages,Online,L,4/9/2011,190249574,5/18/2011,7931,47.45,31.79,376325.95,252126.49,124199.46 Europe,Croatia,Meat,Offline,M,6/7/2013,679587924,6/29/2013,4024,421.89,364.69,1697685.36,1467512.56,230172.80 Middle East and North Africa,Bahrain,Personal Care,Online,L,4/26/2012,327332341,5/27/2012,3769,81.73,56.67,308040.37,213589.23,94451.14 Middle East and North Africa,Somalia,Vegetables,Online,H,2/10/2012,789781653,2/23/2012,2797,154.06,90.93,430905.82,254331.21,176574.61 Europe,Greece,Clothes,Offline,M,6/30/2010,643547189,8/3/2010,8769,109.28,35.84,958276.32,314280.96,643995.36 Sub-Saharan Africa,Equatorial Guinea,Snacks,Offline,M,1/2/2010,335552775,2/12/2010,6378,152.58,97.44,973155.24,621472.32,351682.92 Europe,Montenegro,Office Supplies,Online,M,3/28/2014,833034741,5/15/2014,2347,651.21,524.96,1528389.87,1232081.12,296308.75 Australia and Oceania,Papua New Guinea,Office Supplies,Online,M,6/29/2016,473541915,7/7/2016,431,651.21,524.96,280671.51,226257.76,54413.75 Sub-Saharan Africa,Cameroon,Meat,Offline,H,2/22/2011,814935624,4/1/2011,6416,421.89,364.69,2706846.24,2339851.04,366995.20 Europe,Greece,Meat,Offline,L,7/21/2012,785389697,8/29/2012,3119,421.89,364.69,1315874.91,1137468.11,178406.80 Central America and the Caribbean,Trinidad and Tobago,Clothes,Offline,M,6/8/2013,733390462,7/7/2013,5390,109.28,35.84,589019.20,193177.60,395841.60 Central America and the Caribbean,Grenada,Baby Food,Offline,C,5/9/2011,177736747,5/21/2011,5108,255.28,159.42,1303970.24,814317.36,489652.88 Middle East and North Africa,Afghanistan,Meat,Offline,H,7/3/2012,957539880,7/12/2012,6184,421.89,364.69,2608967.76,2255242.96,353724.80 Central America and the Caribbean,Guatemala,Clothes,Online,C,10/18/2012,482223689,11/12/2012,9561,109.28,35.84,1044826.08,342666.24,702159.84 Middle East and North Africa,Libya,Beverages,Online,C,10/11/2016,281524503,11/11/2016,8211,47.45,31.79,389611.95,261027.69,128584.26 Central America and the Caribbean,The Bahamas,Fruits,Offline,M,2/15/2011,155491149,3/21/2011,2141,9.33,6.92,19975.53,14815.72,5159.81 Middle East and North Africa,Afghanistan,Snacks,Offline,H,11/13/2013,424484956,11/19/2013,3386,152.58,97.44,516635.88,329931.84,186704.04 Sub-Saharan Africa,South Africa,Snacks,Online,M,1/10/2010,579179751,1/17/2010,1014,152.58,97.44,154716.12,98804.16,55911.96 Europe,Switzerland,Baby Food,Online,H,12/26/2015,630561864,1/6/2016,6123,255.28,159.42,1563079.44,976128.66,586950.78 Middle East and North Africa,Qatar,Office Supplies,Offline,H,2/5/2015,659930121,3/7/2015,6843,651.21,524.96,4456230.03,3592301.28,863928.75 Asia,Philippines,Clothes,Offline,H,7/9/2014,368895852,8/14/2014,3335,109.28,35.84,364448.80,119526.40,244922.40 Central America and the Caribbean,The Bahamas,Beverages,Offline,M,2/7/2011,429382884,3/23/2011,2792,47.45,31.79,132480.40,88757.68,43722.72 Australia and Oceania,Palau,Vegetables,Online,H,5/3/2010,233627545,6/2/2010,4437,154.06,90.93,683564.22,403456.41,280107.81 Asia,Indonesia,Clothes,Online,H,12/28/2014,144178664,1/4/2015,4526,109.28,35.84,494601.28,162211.84,332389.44 Europe,Liechtenstein,Meat,Online,M,10/3/2013,143897569,10/9/2013,1343,421.89,364.69,566598.27,489778.67,76819.60 Asia,Mongolia,Fruits,Offline,M,4/26/2015,285958087,6/6/2015,207,9.33,6.92,1931.31,1432.44,498.87 Australia and Oceania,Samoa ,Cereal,Online,L,4/11/2014,243846547,5/23/2014,8467,205.70,117.11,1741661.90,991570.37,750091.53 Europe,Iceland,Office Supplies,Online,L,2/4/2010,661361777,3/2/2010,502,651.21,524.96,326907.42,263529.92,63377.50 Europe,Russia,Vegetables,Online,L,11/12/2010,902615106,12/7/2010,2723,154.06,90.93,419505.38,247602.39,171902.99 Sub-Saharan Africa,Nigeria,Baby Food,Offline,C,5/21/2014,402030360,5/28/2014,8572,255.28,159.42,2188260.16,1366548.24,821711.92 Australia and Oceania,Nauru,Office Supplies,Offline,C,12/13/2011,914343869,12/19/2011,3524,651.21,524.96,2294864.04,1849959.04,444905.00 Central America and the Caribbean,Trinidad and Tobago,Household,Online,M,11/4/2014,664604461,12/17/2014,84,668.27,502.54,56134.68,42213.36,13921.32 Sub-Saharan Africa,Comoros,Vegetables,Offline,H,9/15/2012,198173463,9/15/2012,2786,154.06,90.93,429211.16,253330.98,175880.18 Middle East and North Africa,Syria,Meat,Online,L,3/4/2015,130724704,3/5/2015,3200,421.89,364.69,1350048.00,1167008.00,183040.00 Europe,Belgium,Household,Online,C,3/19/2010,698244512,4/20/2010,4922,668.27,502.54,3289224.94,2473501.88,815723.06 Europe,Austria,Household,Offline,M,5/19/2013,407031714,6/4/2013,8584,668.27,502.54,5736429.68,4313803.36,1422626.32 Europe,United Kingdom,Snacks,Online,H,1/1/2011,983697640,2/10/2011,6847,152.58,97.44,1044715.26,667171.68,377543.58 Sub-Saharan Africa,Chad,Beverages,Online,L,12/18/2016,625166118,1/17/2017,9402,47.45,31.79,446124.90,298889.58,147235.32 Europe,Malta,Baby Food,Online,L,12/7/2015,748673474,1/1/2016,7973,255.28,159.42,2035347.44,1271055.66,764291.78 Sub-Saharan Africa,Botswana,Clothes,Offline,C,7/28/2012,141768538,7/30/2012,1316,109.28,35.84,143812.48,47165.44,96647.04 Europe,Bulgaria,Cereal,Offline,H,8/11/2012,812312638,8/12/2012,216,205.70,117.11,44431.20,25295.76,19135.44 Central America and the Caribbean,Honduras,Office Supplies,Online,H,6/25/2011,338479602,6/26/2011,2491,651.21,524.96,1622164.11,1307675.36,314488.75 Sub-Saharan Africa,Equatorial Guinea,Household,Online,H,4/3/2013,418755757,5/18/2013,7989,668.27,502.54,5338809.03,4014792.06,1324016.97 Middle East and North Africa,Morocco,Baby Food,Online,L,9/16/2011,121939933,9/26/2011,3591,255.28,159.42,916710.48,572477.22,344233.26 Europe,Slovenia,Cosmetics,Offline,L,10/28/2016,837143456,12/10/2016,8207,437.20,263.33,3588100.40,2161149.31,1426951.09 Europe,Kosovo,Fruits,Online,H,2/27/2013,423790156,3/22/2013,7780,9.33,6.92,72587.40,53837.60,18749.80 Central America and the Caribbean,Panama,Snacks,Online,M,8/11/2016,861616361,9/28/2016,283,152.58,97.44,43180.14,27575.52,15604.62 Europe,Czech Republic,Clothes,Offline,C,1/27/2010,600670897,3/16/2010,722,109.28,35.84,78900.16,25876.48,53023.68 Europe,Portugal,Office Supplies,Online,M,5/13/2015,411315095,6/4/2015,6132,651.21,524.96,3993219.72,3219054.72,774165.00 Europe,Montenegro,Household,Online,L,9/19/2013,234222781,9/22/2013,581,668.27,502.54,388264.87,291975.74,96289.13 North America,Canada,Clothes,Online,L,2/24/2010,530380284,4/7/2010,167,109.28,35.84,18249.76,5985.28,12264.48 Europe,Lithuania,Cereal,Online,L,7/15/2014,931086432,8/6/2014,8021,205.70,117.11,1649919.70,939339.31,710580.39 Central America and the Caribbean,Panama,Cereal,Online,M,2/1/2015,687952554,3/19/2015,9303,205.70,117.11,1913627.10,1089474.33,824152.77 Middle East and North Africa,Azerbaijan,Snacks,Online,M,6/10/2012,922902476,7/30/2012,6207,152.58,97.44,947064.06,604810.08,342253.98 Sub-Saharan Africa,Namibia,Personal Care,Offline,L,11/17/2015,578172528,12/23/2015,2954,81.73,56.67,241430.42,167403.18,74027.24 Sub-Saharan Africa,South Africa,Office Supplies,Offline,H,10/23/2016,466311538,12/5/2016,801,651.21,524.96,521619.21,420492.96,101126.25 Europe,Luxembourg,Fruits,Online,C,4/14/2015,120180833,5/7/2015,3034,9.33,6.92,28307.22,20995.28,7311.94 Australia and Oceania,Palau,Cereal,Offline,C,3/12/2016,942954242,4/1/2016,9970,205.70,117.11,2050829.00,1167586.70,883242.30 Australia and Oceania,Kiribati,Personal Care,Online,L,5/14/2010,358118093,6/19/2010,3957,81.73,56.67,323405.61,224243.19,99162.42 Asia,Tajikistan,Snacks,Online,C,3/9/2016,359471213,3/24/2016,4375,152.58,97.44,667537.50,426300.00,241237.50 Middle East and North Africa,Lebanon,Cosmetics,Online,C,3/31/2015,761124932,4/12/2015,2636,437.20,263.33,1152459.20,694137.88,458321.32 Middle East and North Africa,United Arab Emirates,Office Supplies,Offline,C,9/12/2016,547503077,10/4/2016,7182,651.21,524.96,4676990.22,3770262.72,906727.50 Middle East and North Africa,United Arab Emirates,Baby Food,Offline,M,8/17/2015,123341977,8/19/2015,8487,255.28,159.42,2166561.36,1352997.54,813563.82 Central America and the Caribbean,The Bahamas,Meat,Online,M,12/16/2011,863690459,2/3/2012,4055,421.89,364.69,1710763.95,1478817.95,231946.00 Europe,Lithuania,Cereal,Offline,H,4/6/2014,163909852,4/25/2014,3423,205.70,117.11,704111.10,400867.53,303243.57 Europe,Netherlands,Fruits,Online,M,3/28/2013,889673984,4/10/2013,3157,9.33,6.92,29454.81,21846.44,7608.37 Middle East and North Africa,Lebanon,Cereal,Offline,M,10/19/2015,126969182,11/29/2015,1857,205.70,117.11,381984.90,217473.27,164511.63 Central America and the Caribbean,El Salvador,Clothes,Offline,M,12/26/2010,432094275,2/14/2011,5153,109.28,35.84,563119.84,184683.52,378436.32 Europe,Montenegro,Vegetables,Offline,H,8/17/2011,381660592,8/20/2011,705,154.06,90.93,108612.30,64105.65,44506.65 Australia and Oceania,Kiribati,Clothes,Offline,L,9/5/2012,422591960,9/7/2012,3207,109.28,35.84,350460.96,114938.88,235522.08 Middle East and North Africa,Iran,Beverages,Online,H,3/5/2010,622124707,3/14/2010,9381,47.45,31.79,445128.45,298221.99,146906.46 Central America and the Caribbean,Saint Kitts and Nevis ,Snacks,Online,C,7/22/2012,217807662,8/19/2012,2982,152.58,97.44,454993.56,290566.08,164427.48 Sub-Saharan Africa,Chad,Beverages,Online,M,3/13/2014,767502152,4/4/2014,9797,47.45,31.79,464867.65,311446.63,153421.02 Asia,Turkmenistan,Cosmetics,Offline,L,4/24/2014,299382007,6/10/2014,2644,437.20,263.33,1155956.80,696244.52,459712.28 Central America and the Caribbean,Cuba,Beverages,Offline,H,3/10/2013,961933553,3/27/2013,6369,47.45,31.79,302209.05,202470.51,99738.54 Asia,Myanmar,Snacks,Online,M,12/19/2015,473955619,1/28/2016,2855,152.58,97.44,435615.90,278191.20,157424.70 Central America and the Caribbean,Grenada,Cosmetics,Offline,M,9/10/2013,674559533,10/13/2013,6011,437.20,263.33,2628009.20,1582876.63,1045132.57 Europe,Montenegro,Personal Care,Offline,H,6/4/2017,773169124,6/7/2017,6780,81.73,56.67,554129.40,384222.60,169906.80 Sub-Saharan Africa,Mozambique,Cereal,Offline,H,7/24/2016,499520719,8/14/2016,8136,205.70,117.11,1673575.20,952806.96,720768.24 Europe,Germany,Baby Food,Online,M,12/4/2012,553663146,1/17/2013,83,255.28,159.42,21188.24,13231.86,7956.38 North America,United States of America,Vegetables,Online,C,12/23/2016,355957734,2/5/2017,4659,154.06,90.93,717765.54,423642.87,294122.67 Europe,Albania,Vegetables,Offline,M,9/26/2013,297078311,10/27/2013,929,154.06,90.93,143121.74,84473.97,58647.77 Europe,Croatia,Clothes,Offline,H,1/4/2012,388011205,2/2/2012,9993,109.28,35.84,1092035.04,358149.12,733885.92 Sub-Saharan Africa,Sao Tome and Principe,Personal Care,Online,H,4/21/2010,710055243,6/8/2010,9980,81.73,56.67,815665.40,565566.60,250098.80 Australia and Oceania,Kiribati,Household,Online,H,10/8/2015,964821755,10/21/2015,1053,668.27,502.54,703688.31,529174.62,174513.69 Asia,India,Household,Offline,M,2/9/2010,924234569,3/19/2010,402,668.27,502.54,268644.54,202021.08,66623.46 Europe,Portugal,Cosmetics,Offline,M,12/19/2013,880530011,2/6/2014,7252,437.20,263.33,3170574.40,1909669.16,1260905.24 Australia and Oceania,Samoa ,Beverages,Offline,L,12/17/2014,296256911,12/26/2014,7858,47.45,31.79,372862.10,249805.82,123056.28 Middle East and North Africa,Israel,Cosmetics,Online,C,12/4/2016,954276597,1/21/2017,506,437.20,263.33,221223.20,133244.98,87978.22 Asia,Taiwan,Household,Online,H,5/28/2013,207762897,6/28/2013,513,668.27,502.54,342822.51,257803.02,85019.49 Sub-Saharan Africa,Angola,Meat,Offline,C,2/24/2014,430202138,4/3/2014,5228,421.89,364.69,2205640.92,1906599.32,299041.60 Asia,Thailand,Baby Food,Online,C,1/15/2011,465393149,2/20/2011,9030,255.28,159.42,2305178.40,1439562.60,865615.80 Sub-Saharan Africa,Cape Verde,Vegetables,Offline,M,3/3/2012,577447259,3/9/2012,8331,154.06,90.93,1283473.86,757537.83,525936.03 Australia and Oceania,Marshall Islands,Household,Offline,C,5/6/2015,200788295,5/24/2015,6573,668.27,502.54,4392538.71,3303195.42,1089343.29 Europe,Denmark,Beverages,Online,M,11/7/2011,190152585,11/11/2011,9230,47.45,31.79,437963.50,293421.70,144541.80 Sub-Saharan Africa,Cote d'Ivoire,Cosmetics,Offline,H,12/23/2012,570588958,1/27/2013,8807,437.20,263.33,3850420.40,2319147.31,1531273.09 Sub-Saharan Africa,South Africa,Cosmetics,Online,L,12/8/2015,987458741,1/23/2016,9840,437.20,263.33,4302048.00,2591167.20,1710880.80 Sub-Saharan Africa,Zambia,Snacks,Online,M,3/19/2015,256435763,3/26/2015,3896,152.58,97.44,594451.68,379626.24,214825.44 Sub-Saharan Africa,South Africa,Clothes,Offline,H,12/5/2013,413506352,12/11/2013,4574,109.28,35.84,499846.72,163932.16,335914.56 Middle East and North Africa,Iran,Household,Offline,H,6/28/2012,864969336,7/14/2012,2503,668.27,502.54,1672679.81,1257857.62,414822.19 Asia,Thailand,Baby Food,Offline,M,5/14/2012,637436044,6/7/2012,345,255.28,159.42,88071.60,54999.90,33071.70 Europe,Monaco,Office Supplies,Online,L,4/20/2012,627830302,4/26/2012,7793,651.21,524.96,5074879.53,4091013.28,983866.25 Sub-Saharan Africa,Cameroon,Cosmetics,Offline,H,2/9/2012,453388440,2/10/2012,6570,437.20,263.33,2872404.00,1730078.10,1142325.90 Sub-Saharan Africa,South Africa,Household,Offline,H,6/11/2016,701659286,7/17/2016,5430,668.27,502.54,3628706.10,2728792.20,899913.90 Sub-Saharan Africa,Seychelles ,Cereal,Offline,H,11/25/2015,680504167,1/14/2016,5160,205.70,117.11,1061412.00,604287.60,457124.40 Sub-Saharan Africa,Zimbabwe,Household,Online,C,6/23/2013,668096911,7/16/2013,3578,668.27,502.54,2391070.06,1798088.12,592981.94 Middle East and North Africa,Jordan,Office Supplies,Online,M,3/30/2013,562923848,5/16/2013,531,651.21,524.96,345792.51,278753.76,67038.75 Middle East and North Africa,Saudi Arabia,Office Supplies,Offline,C,7/22/2016,333783805,7/23/2016,2900,651.21,524.96,1888509.00,1522384.00,366125.00 Europe,San Marino,Meat,Offline,L,9/5/2010,469788110,10/6/2010,9596,421.89,364.69,4048456.44,3499565.24,548891.20 Sub-Saharan Africa,The Gambia,Household,Offline,C,6/14/2010,630360591,6/29/2010,6562,668.27,502.54,4385187.74,3297667.48,1087520.26 Sub-Saharan Africa,Kenya,Personal Care,Offline,H,8/18/2016,995237576,8/19/2016,1770,81.73,56.67,144662.10,100305.90,44356.20 Sub-Saharan Africa,Angola,Cereal,Offline,L,2/10/2012,914467895,3/3/2012,226,205.70,117.11,46488.20,26466.86,20021.34 Europe,Kosovo,Personal Care,Offline,C,2/20/2011,258412873,3/16/2011,8967,81.73,56.67,732872.91,508159.89,224713.02 Europe,Hungary,Snacks,Offline,H,2/2/2010,767746341,3/15/2010,2058,152.58,97.44,314009.64,200531.52,113478.12 Sub-Saharan Africa,Sierra Leone,Cereal,Offline,H,12/26/2013,203454625,1/18/2014,5600,205.70,117.11,1151920.00,655816.00,496104.00 Central America and the Caribbean,The Bahamas,Beverages,Offline,M,7/20/2017,896836555,7/24/2017,2721,47.45,31.79,129111.45,86500.59,42610.86 Asia,Bhutan,Meat,Offline,H,7/27/2016,299503457,9/2/2016,8583,421.89,364.69,3621081.87,3130134.27,490947.60 Middle East and North Africa,Azerbaijan,Cosmetics,Online,H,9/7/2011,433379161,9/15/2011,5379,437.20,263.33,2351698.80,1416452.07,935246.73 Sub-Saharan Africa,Senegal,Baby Food,Online,L,3/3/2012,240699994,3/21/2012,7332,255.28,159.42,1871712.96,1168867.44,702845.52 Europe,Estonia,Cosmetics,Online,H,1/5/2017,534014785,1/12/2017,5697,437.20,263.33,2490728.40,1500191.01,990537.39 Sub-Saharan Africa,Cote d'Ivoire,Meat,Online,H,2/12/2011,846184861,3/13/2011,3759,421.89,364.69,1585884.51,1370869.71,215014.80 North America,Canada,Cereal,Online,M,7/10/2014,780384051,8/3/2014,1838,205.70,117.11,378076.60,215248.18,162828.42 Middle East and North Africa,Azerbaijan,Personal Care,Online,M,6/23/2010,460098683,8/8/2010,2280,81.73,56.67,186344.40,129207.60,57136.80 Europe,Liechtenstein,Baby Food,Offline,C,5/14/2017,979127585,6/21/2017,4466,255.28,159.42,1140080.48,711969.72,428110.76 Australia and Oceania,Nauru,Clothes,Offline,H,10/14/2016,351582086,10/20/2016,9807,109.28,35.84,1071708.96,351482.88,720226.08 Sub-Saharan Africa,Swaziland,Household,Online,L,4/27/2010,261886012,6/12/2010,6746,668.27,502.54,4508149.42,3390134.84,1118014.58 Middle East and North Africa,Egypt,Cereal,Online,L,10/6/2015,214775693,10/19/2015,5755,205.70,117.11,1183803.50,673968.05,509835.45 Middle East and North Africa,Azerbaijan,Household,Offline,C,4/30/2010,685299956,5/4/2010,4341,668.27,502.54,2900960.07,2181526.14,719433.93 Asia,Singapore,Personal Care,Online,H,2/26/2010,868820130,3/27/2010,2039,81.73,56.67,166647.47,115550.13,51097.34 Central America and the Caribbean,Saint Lucia,Fruits,Offline,C,7/8/2013,931010043,8/10/2013,5416,9.33,6.92,50531.28,37478.72,13052.56 Europe,Bosnia and Herzegovina,Clothes,Offline,H,3/6/2012,657856023,4/4/2012,3071,109.28,35.84,335598.88,110064.64,225534.24 Asia,Brunei,Vegetables,Online,C,5/1/2010,805656898,5/15/2010,634,154.06,90.93,97674.04,57649.62,40024.42 Central America and the Caribbean,Cuba,Cereal,Online,H,3/24/2013,851023995,3/25/2013,5767,205.70,117.11,1186271.90,675373.37,510898.53 Middle East and North Africa,Kuwait,Beverages,Offline,M,10/30/2015,340881145,12/12/2015,3161,47.45,31.79,149989.45,100488.19,49501.26 Australia and Oceania,Papua New Guinea,Household,Online,M,2/27/2014,242464673,4/18/2014,9540,668.27,502.54,6375295.80,4794231.60,1581064.20 Europe,Iceland,Vegetables,Online,C,8/31/2016,693323409,9/25/2016,8659,154.06,90.93,1334005.54,787362.87,546642.67 Sub-Saharan Africa,Kenya,Meat,Offline,H,2/23/2010,551318681,3/30/2010,6304,421.89,364.69,2659594.56,2299005.76,360588.80 Australia and Oceania,New Zealand,Baby Food,Online,C,7/17/2016,544624316,8/18/2016,5293,255.28,159.42,1351197.04,843810.06,507386.98 Central America and the Caribbean,Barbados,Cosmetics,Offline,H,6/1/2013,121726644,7/5/2013,474,437.20,263.33,207232.80,124818.42,82414.38 Central America and the Caribbean,Saint Kitts and Nevis ,Snacks,Online,H,6/23/2013,601424491,8/8/2013,3727,152.58,97.44,568665.66,363158.88,205506.78 Asia,Tajikistan,Cereal,Online,H,5/10/2015,222829186,6/14/2015,8963,205.70,117.11,1843689.10,1049656.93,794032.17 Europe,Estonia,Personal Care,Online,L,12/14/2014,895364558,12/23/2014,7125,81.73,56.67,582326.25,403773.75,178552.50 Europe,Sweden,Office Supplies,Online,L,10/26/2016,548766934,12/5/2016,1186,651.21,524.96,772335.06,622602.56,149732.50 Middle East and North Africa,Pakistan,Beverages,Online,L,3/15/2015,783085143,4/16/2015,1151,47.45,31.79,54614.95,36590.29,18024.66 Asia,Bhutan,Cereal,Online,H,12/27/2012,118680512,1/6/2013,9056,205.70,117.11,1862819.20,1060548.16,802271.04 Sub-Saharan Africa,Djibouti,Cereal,Online,L,5/7/2010,746226871,6/9/2010,3969,205.70,117.11,816423.30,464809.59,351613.71 Middle East and North Africa,Israel,Household,Online,M,1/30/2016,876710546,2/23/2016,6988,668.27,502.54,4669870.76,3511749.52,1158121.24 North America,Greenland,Baby Food,Offline,M,7/22/2013,591430366,9/4/2013,6243,255.28,159.42,1593713.04,995259.06,598453.98 Sub-Saharan Africa,Nigeria,Household,Online,M,6/27/2017,491997659,7/15/2017,1895,668.27,502.54,1266371.65,952313.30,314058.35 Central America and the Caribbean,Antigua and Barbuda ,Personal Care,Offline,C,2/28/2017,350336253,3/10/2017,1137,81.73,56.67,92927.01,64433.79,28493.22 Asia,China,Cosmetics,Offline,C,6/30/2010,458682477,8/14/2010,3193,437.20,263.33,1395979.60,840812.69,555166.91 Australia and Oceania,Papua New Guinea,Fruits,Offline,M,5/27/2015,279585158,7/5/2015,4316,9.33,6.92,40268.28,29866.72,10401.56 Asia,India,Cereal,Online,C,12/30/2012,695905625,1/16/2013,2794,205.70,117.11,574725.80,327205.34,247520.46 Middle East and North Africa,Libya,Fruits,Online,M,12/20/2011,860817706,2/7/2012,3943,9.33,6.92,36788.19,27285.56,9502.63 Europe,Macedonia,Cereal,Offline,H,6/30/2014,447807729,7/11/2014,5113,205.70,117.11,1051744.10,598783.43,452960.67 Australia and Oceania,Marshall Islands,Clothes,Offline,L,6/15/2012,100674521,7/8/2012,683,109.28,35.84,74638.24,24478.72,50159.52 Australia and Oceania,Solomon Islands,Meat,Online,M,12/13/2013,983529412,12/28/2013,7064,421.89,364.69,2980230.96,2576170.16,404060.80 Asia,Singapore,Meat,Online,H,10/10/2016,730796229,10/16/2016,7699,421.89,364.69,3248131.11,2807748.31,440382.80 Sub-Saharan Africa,Guinea-Bissau,Personal Care,Offline,H,3/22/2012,197211301,4/21/2012,8061,81.73,56.67,658825.53,456816.87,202008.66 Sub-Saharan Africa,Seychelles ,Beverages,Online,M,8/2/2011,307823455,8/7/2011,656,47.45,31.79,31127.20,20854.24,10272.96 Asia,Philippines,Fruits,Online,H,1/25/2012,707994019,2/13/2012,18,9.33,6.92,167.94,124.56,43.38 Central America and the Caribbean,Saint Kitts and Nevis ,Office Supplies,Offline,M,9/23/2015,213396823,11/3/2015,7717,651.21,524.96,5025387.57,4051116.32,974271.25 Europe,Sweden,Baby Food,Online,L,7/19/2010,860018193,7/27/2010,7350,255.28,159.42,1876308.00,1171737.00,704571.00 Asia,Tajikistan,Snacks,Online,H,1/28/2012,254156959,3/13/2012,9547,152.58,97.44,1456681.26,930259.68,526421.58 Sub-Saharan Africa,Madagascar,Office Supplies,Offline,H,3/16/2014,122424447,4/22/2014,6969,651.21,524.96,4538282.49,3658446.24,879836.25 Middle East and North Africa,Qatar,Cosmetics,Online,C,9/8/2015,461744487,9/18/2015,9309,437.20,263.33,4069894.80,2451338.97,1618555.83 Asia,Brunei,Meat,Offline,H,4/29/2016,889353406,5/4/2016,8291,421.89,364.69,3497889.99,3023644.79,474245.20 Asia,Uzbekistan,Snacks,Offline,L,3/21/2013,192800033,5/7/2013,2669,152.58,97.44,407236.02,260067.36,147168.66 Europe,Romania,Fruits,Online,M,2/2/2012,379945695,2/29/2012,3229,9.33,6.92,30126.57,22344.68,7781.89 Europe,Albania,Cereal,Online,C,12/11/2015,828964221,1/3/2016,7789,205.70,117.11,1602197.30,912169.79,690027.51 Sub-Saharan Africa,Comoros,Fruits,Online,H,9/15/2013,538341939,10/13/2013,6198,9.33,6.92,57827.34,42890.16,14937.18 Europe,Croatia,Baby Food,Online,M,4/21/2014,376877677,5/12/2014,5335,255.28,159.42,1361918.80,850505.70,511413.10 North America,Canada,Baby Food,Online,C,7/29/2012,833682763,9/14/2012,4111,255.28,159.42,1049456.08,655375.62,394080.46 Middle East and North Africa,Israel,Vegetables,Offline,H,10/15/2015,668181025,11/20/2015,8469,154.06,90.93,1304734.14,770086.17,534647.97 Australia and Oceania,Tuvalu,Personal Care,Online,H,2/14/2017,960108792,3/20/2017,6382,81.73,56.67,521600.86,361667.94,159932.92 Asia,South Korea,Personal Care,Offline,L,8/16/2014,159514892,9/9/2014,2856,81.73,56.67,233420.88,161849.52,71571.36 Europe,Italy,Beverages,Offline,C,12/16/2014,836760652,12/19/2014,4926,47.45,31.79,233738.70,156597.54,77141.16 Europe,Greece,Cosmetics,Offline,H,7/5/2014,232519900,7/12/2014,6660,437.20,263.33,2911752.00,1753777.80,1157974.20 Middle East and North Africa,Yemen,Household,Online,H,9/21/2010,607778966,10/23/2010,4157,668.27,502.54,2777998.39,2089058.78,688939.61 Sub-Saharan Africa,Guinea-Bissau,Beverages,Offline,M,6/19/2013,693836677,7/4/2013,546,47.45,31.79,25907.70,17357.34,8550.36 Europe,Montenegro,Cosmetics,Offline,H,12/14/2010,642304360,12/20/2010,989,437.20,263.33,432390.80,260433.37,171957.43 Middle East and North Africa,Oman,Clothes,Offline,M,5/27/2011,675105845,7/11/2011,7677,109.28,35.84,838942.56,275143.68,563798.88 Australia and Oceania,Federated States of Micronesia,Household,Online,L,7/5/2016,634477460,8/3/2016,4835,668.27,502.54,3231085.45,2429780.90,801304.55 Sub-Saharan Africa,South Africa,Cereal,Online,M,2/13/2010,432968032,2/13/2010,3717,205.70,117.11,764586.90,435297.87,329289.03 Asia,Philippines,Baby Food,Offline,C,12/30/2014,503438889,1/11/2015,7610,255.28,159.42,1942680.80,1213186.20,729494.60 Middle East and North Africa,Algeria,Vegetables,Offline,H,4/27/2013,449063861,5/2/2013,6830,154.06,90.93,1052229.80,621051.90,431177.90 Europe,Montenegro,Snacks,Offline,M,1/21/2011,393329274,2/24/2011,3728,152.58,97.44,568818.24,363256.32,205561.92 Sub-Saharan Africa,Gabon,Office Supplies,Offline,M,6/14/2011,530033957,7/24/2011,7681,651.21,524.96,5001944.01,4032217.76,969726.25 Sub-Saharan Africa,Guinea,Personal Care,Online,C,3/26/2011,673289239,4/25/2011,103,81.73,56.67,8418.19,5837.01,2581.18 Central America and the Caribbean,Cuba,Cereal,Offline,L,12/28/2011,707518947,2/15/2012,9434,205.70,117.11,1940573.80,1104815.74,835758.06 Middle East and North Africa,Afghanistan,Office Supplies,Offline,C,5/17/2016,137459409,5/19/2016,6149,651.21,524.96,4004290.29,3227979.04,776311.25 Sub-Saharan Africa,Mozambique,Baby Food,Offline,L,9/29/2016,338159453,11/7/2016,7752,255.28,159.42,1978930.56,1235823.84,743106.72 Sub-Saharan Africa,Seychelles ,Cosmetics,Online,M,2/4/2014,504980409,2/20/2014,3780,437.20,263.33,1652616.00,995387.40,657228.60 Sub-Saharan Africa,Uganda,Vegetables,Online,L,4/8/2014,803596103,5/9/2014,799,154.06,90.93,123093.94,72653.07,50440.87 Europe,Russia,Personal Care,Online,M,8/9/2016,119992864,9/23/2016,7410,81.73,56.67,605619.30,419924.70,185694.60 Europe,Slovenia,Cosmetics,Offline,L,2/24/2010,110469520,3/2/2010,9241,437.20,263.33,4040165.20,2433432.53,1606732.67 Sub-Saharan Africa,Guinea-Bissau,Baby Food,Offline,M,4/21/2015,251637399,5/19/2015,3953,255.28,159.42,1009121.84,630187.26,378934.58 Europe,Vatican City,Fruits,Offline,M,11/17/2011,990420329,11/27/2011,6240,9.33,6.92,58219.20,43180.80,15038.40 Sub-Saharan Africa,Namibia,Personal Care,Online,H,1/16/2011,594054639,2/2/2011,2824,81.73,56.67,230805.52,160036.08,70769.44 Middle East and North Africa,Egypt,Cereal,Online,H,9/4/2013,100089156,9/4/2013,7460,205.70,117.11,1534522.00,873640.60,660881.40 Australia and Oceania,Australia,Fruits,Online,H,2/23/2014,166385209,3/21/2014,5936,9.33,6.92,55382.88,41077.12,14305.76 Sub-Saharan Africa,Sao Tome and Principe,Baby Food,Offline,L,9/4/2011,621116626,10/20/2011,1067,255.28,159.42,272383.76,170101.14,102282.62 Central America and the Caribbean,Haiti,Household,Online,L,2/12/2014,912769734,3/13/2014,7703,668.27,502.54,5147683.81,3871065.62,1276618.19 Middle East and North Africa,Turkey,Baby Food,Offline,M,6/19/2011,560143363,7/18/2011,7724,255.28,159.42,1971782.72,1231360.08,740422.64 Sub-Saharan Africa,Chad,Cosmetics,Offline,H,6/28/2017,502348840,7/13/2017,5040,437.20,263.33,2203488.00,1327183.20,876304.80 Europe,Belarus,Snacks,Offline,L,12/14/2012,848809993,1/27/2013,594,152.58,97.44,90632.52,57879.36,32753.16 Middle East and North Africa,Syria,Baby Food,Offline,H,7/19/2017,429263150,8/24/2017,7360,255.28,159.42,1878860.80,1173331.20,705529.60 Middle East and North Africa,Algeria,Cereal,Online,M,5/18/2010,843757140,7/6/2010,5343,205.70,117.11,1099055.10,625718.73,473336.37 North America,Canada,Baby Food,Online,C,1/17/2017,612653291,1/21/2017,6578,255.28,159.42,1679231.84,1048664.76,630567.08 Middle East and North Africa,Turkey,Baby Food,Offline,H,1/2/2015,126625430,1/15/2015,134,255.28,159.42,34207.52,21362.28,12845.24 Asia,Taiwan,Snacks,Offline,C,1/20/2013,296659886,3/8/2013,7108,152.58,97.44,1084538.64,692603.52,391935.12 Europe,Andorra,Personal Care,Online,C,4/12/2017,304055488,4/30/2017,5630,81.73,56.67,460139.90,319052.10,141087.80 Sub-Saharan Africa,Mali,Beverages,Online,H,2/10/2012,750423562,2/11/2012,5863,47.45,31.79,278199.35,186384.77,91814.58 Middle East and North Africa,Afghanistan,Household,Online,L,2/11/2017,507687938,2/21/2017,4998,668.27,502.54,3340013.46,2511694.92,828318.54 Central America and the Caribbean,Saint Lucia,Office Supplies,Online,C,1/26/2015,768084943,2/15/2015,2258,651.21,524.96,1470432.18,1185359.68,285072.50 Asia,Indonesia,Clothes,Offline,M,4/25/2016,994163405,6/10/2016,3899,109.28,35.84,426082.72,139740.16,286342.56 Australia and Oceania,Kiribati,Cosmetics,Online,H,2/10/2017,268784654,2/25/2017,8207,437.20,263.33,3588100.40,2161149.31,1426951.09 Europe,Hungary,Cereal,Offline,C,1/2/2011,445122516,2/16/2011,499,205.70,117.11,102644.30,58437.89,44206.41 Middle East and North Africa,Qatar,Snacks,Offline,C,4/25/2015,296663320,5/8/2015,8124,152.58,97.44,1239559.92,791602.56,447957.36 Sub-Saharan Africa,Mozambique,Clothes,Offline,L,5/7/2014,467205893,6/15/2014,5461,109.28,35.84,596778.08,195722.24,401055.84 Europe,Czech Republic,Beverages,Online,L,3/15/2016,320861566,3/16/2016,8922,47.45,31.79,423348.90,283630.38,139718.52 Europe,Czech Republic,Meat,Online,C,2/9/2011,192054164,3/3/2011,1950,421.89,364.69,822685.50,711145.50,111540.00 Europe,Armenia,Meat,Online,H,1/26/2013,935520017,2/28/2013,17,421.89,364.69,7172.13,6199.73,972.40 Asia,South Korea,Snacks,Online,L,8/31/2010,776307952,9/4/2010,5629,152.58,97.44,858872.82,548489.76,310383.06 Europe,Kosovo,Office Supplies,Offline,H,3/29/2016,259779298,4/18/2016,3322,651.21,524.96,2163319.62,1743917.12,419402.50 Europe,Moldova ,Cereal,Online,L,9/18/2016,901607882,9/20/2016,4663,205.70,117.11,959179.10,546083.93,413095.17 Middle East and North Africa,Lebanon,Office Supplies,Offline,L,3/19/2015,237780034,4/27/2015,3251,651.21,524.96,2117083.71,1706644.96,410438.75 Asia,Turkmenistan,Fruits,Offline,L,2/18/2012,374594581,2/18/2012,9716,9.33,6.92,90650.28,67234.72,23415.56 Europe,Vatican City,Beverages,Offline,H,7/8/2016,338662850,8/4/2016,6718,47.45,31.79,318769.10,213565.22,105203.88 Asia,Mongolia,Cereal,Online,M,12/21/2011,126908671,2/2/2012,3951,205.70,117.11,812720.70,462701.61,350019.09 Europe,Liechtenstein,Baby Food,Online,M,6/12/2013,256568372,7/19/2013,3138,255.28,159.42,801068.64,500259.96,300808.68 Europe,Romania,Cosmetics,Offline,M,6/19/2010,415190780,7/26/2010,3033,437.20,263.33,1326027.60,798679.89,527347.71 Asia,Vietnam,Personal Care,Online,C,4/28/2016,810637223,5/30/2016,4423,81.73,56.67,361491.79,250651.41,110840.38 Sub-Saharan Africa,Central African Republic,Household,Online,H,4/24/2011,821081531,4/24/2011,5126,668.27,502.54,3425552.02,2576020.04,849531.98 Europe,Austria,Vegetables,Online,M,8/24/2014,345010030,9/30/2014,4990,154.06,90.93,768759.40,453740.70,315018.70 Europe,Poland,Clothes,Offline,H,7/11/2012,251221549,7/29/2012,894,109.28,35.84,97696.32,32040.96,65655.36 Central America and the Caribbean,Saint Lucia,Household,Online,L,12/12/2014,128827416,1/22/2015,1750,668.27,502.54,1169472.50,879445.00,290027.50 Sub-Saharan Africa,Botswana,Cosmetics,Online,L,1/9/2014,537251460,2/12/2014,3501,437.20,263.33,1530637.20,921918.33,608718.87 Middle East and North Africa,United Arab Emirates,Clothes,Offline,L,7/8/2010,756230008,8/22/2010,4119,109.28,35.84,450124.32,147624.96,302499.36 Europe,Ukraine,Vegetables,Offline,C,1/13/2010,135811889,1/18/2010,8611,154.06,90.93,1326610.66,782998.23,543612.43 Europe,Montenegro,Office Supplies,Online,H,9/6/2011,346358430,9/18/2011,4011,651.21,524.96,2612003.31,2105614.56,506388.75 Europe,Macedonia,Household,Online,H,10/31/2011,428543460,10/31/2011,4388,668.27,502.54,2932368.76,2205145.52,727223.24 Sub-Saharan Africa,Djibouti,Vegetables,Online,M,7/4/2015,843353307,7/23/2015,5840,154.06,90.93,899710.40,531031.20,368679.20 Asia,North Korea,Cereal,Online,L,6/5/2017,322086799,6/8/2017,1496,205.70,117.11,307727.20,175196.56,132530.64 Australia and Oceania,Kiribati,Baby Food,Online,M,5/20/2013,816355264,5/24/2013,6519,255.28,159.42,1664170.32,1039258.98,624911.34 Europe,Finland,Office Supplies,Offline,C,8/4/2011,748082530,8/12/2011,3100,651.21,524.96,2018751.00,1627376.00,391375.00 Asia,Singapore,Office Supplies,Offline,M,9/30/2013,859504926,10/18/2013,5462,651.21,524.96,3556909.02,2867331.52,689577.50 Europe,Portugal,Fruits,Online,H,4/9/2011,163171279,5/1/2011,4862,9.33,6.92,45362.46,33645.04,11717.42 North America,Greenland,Personal Care,Offline,L,10/11/2011,891942918,11/4/2011,4585,81.73,56.67,374732.05,259831.95,114900.10 Sub-Saharan Africa,Rwanda,Clothes,Online,M,8/4/2012,848993670,8/19/2012,4948,109.28,35.84,540717.44,177336.32,363381.12 Sub-Saharan Africa,Lesotho,Cosmetics,Offline,L,2/11/2012,157809865,4/1/2012,8301,437.20,263.33,3629197.20,2185902.33,1443294.87 Middle East and North Africa,Azerbaijan,Beverages,Offline,C,7/30/2013,812190330,8/18/2013,4022,47.45,31.79,190843.90,127859.38,62984.52 Central America and the Caribbean,Saint Vincent and the Grenadines,Personal Care,Online,C,9/20/2013,826246392,10/21/2013,3523,81.73,56.67,287934.79,199648.41,88286.38 Europe,Estonia,Clothes,Offline,C,2/17/2014,984401881,3/18/2014,5247,109.28,35.84,573392.16,188052.48,385339.68 Middle East and North Africa,Israel,Snacks,Online,L,6/17/2017,791393125,7/7/2017,9667,152.58,97.44,1474990.86,941952.48,533038.38 North America,United States of America,Meat,Offline,L,1/23/2016,722268950,1/24/2016,4288,421.89,364.69,1809064.32,1563790.72,245273.60 Sub-Saharan Africa,Burundi,Baby Food,Offline,C,12/7/2010,872390687,1/7/2011,8646,255.28,159.42,2207150.88,1378345.32,828805.56 Middle East and North Africa,Pakistan,Household,Online,L,6/30/2015,507432162,7/6/2015,9308,668.27,502.54,6220257.16,4677642.32,1542614.84 Sub-Saharan Africa,Central African Republic,Personal Care,Online,H,12/7/2013,313379704,1/15/2014,4873,81.73,56.67,398270.29,276152.91,122117.38 Asia,Indonesia,Cereal,Offline,L,6/12/2010,146532142,7/9/2010,972,205.70,117.11,199940.40,113830.92,86109.48 Asia,Japan,Cosmetics,Online,H,4/12/2010,383500802,5/15/2010,5264,437.20,263.33,2301420.80,1386169.12,915251.68 Sub-Saharan Africa,Zambia,Clothes,Offline,L,12/21/2015,571209514,12/28/2015,2443,109.28,35.84,266971.04,87557.12,179413.92 Sub-Saharan Africa,Ethiopia,Household,Online,C,12/21/2015,776894605,1/3/2016,9233,668.27,502.54,6170136.91,4639951.82,1530185.09 Asia,India,Baby Food,Online,L,2/27/2011,238104903,3/3/2011,9387,255.28,159.42,2396313.36,1496475.54,899837.82 Asia,Thailand,Fruits,Online,H,1/17/2011,512701737,3/3/2011,8692,9.33,6.92,81096.36,60148.64,20947.72 Sub-Saharan Africa,Mali,Cosmetics,Online,L,11/7/2014,528858935,12/15/2014,9966,437.20,263.33,4357135.20,2624346.78,1732788.42 Sub-Saharan Africa,Cote d'Ivoire,Vegetables,Online,M,4/16/2015,635062825,4/17/2015,8057,154.06,90.93,1241261.42,732623.01,508638.41 Australia and Oceania,East Timor,Vegetables,Online,C,6/30/2017,350112235,8/10/2017,4845,154.06,90.93,746420.70,440555.85,305864.85 Europe,France,Meat,Offline,M,7/10/2012,613118493,8/2/2012,4242,421.89,364.69,1789657.38,1547014.98,242642.40 Europe,Croatia,Fruits,Offline,L,6/6/2011,633505427,6/12/2011,7189,9.33,6.92,67073.37,49747.88,17325.49 Asia,Kazakhstan,Clothes,Online,M,3/7/2011,141009366,3/17/2011,6660,109.28,35.84,727804.80,238694.40,489110.40 Middle East and North Africa,Afghanistan,Office Supplies,Online,M,8/7/2013,735679137,9/20/2013,2660,651.21,524.96,1732218.60,1396393.60,335825.00 Asia,Taiwan,Cereal,Offline,L,1/2/2014,937876069,1/29/2014,7225,205.70,117.11,1486182.50,846119.75,640062.75 Sub-Saharan Africa,Rwanda,Cereal,Online,H,7/24/2012,238273990,8/14/2012,9423,205.70,117.11,1938311.10,1103527.53,834783.57 Asia,Sri Lanka,Cosmetics,Offline,C,7/2/2010,447859227,8/20/2010,353,437.20,263.33,154331.60,92955.49,61376.11 Asia,Myanmar,Vegetables,Offline,C,11/26/2013,747930610,12/17/2013,8143,154.06,90.93,1254510.58,740442.99,514067.59 Sub-Saharan Africa,Niger,Vegetables,Online,H,10/11/2014,840099465,10/24/2014,2956,154.06,90.93,455401.36,268789.08,186612.28 Sub-Saharan Africa,Malawi,Baby Food,Online,L,7/17/2017,496289622,8/25/2017,1983,255.28,159.42,506220.24,316129.86,190090.38 Europe,Denmark,Clothes,Offline,H,7/18/2012,908737409,8/10/2012,4448,109.28,35.84,486077.44,159416.32,326661.12 Middle East and North Africa,Azerbaijan,Meat,Offline,C,2/17/2010,639991652,3/20/2010,6607,421.89,364.69,2787427.23,2409506.83,377920.40 Sub-Saharan Africa,Uganda,Office Supplies,Online,L,2/17/2014,572913682,3/30/2014,6745,651.21,524.96,4392411.45,3540855.20,851556.25 Central America and the Caribbean,Dominica,Cereal,Offline,L,7/7/2010,760677325,7/25/2010,179,205.70,117.11,36820.30,20962.69,15857.61 Asia,Sri Lanka,Snacks,Offline,C,8/8/2016,876768910,9/20/2016,4259,152.58,97.44,649838.22,414996.96,234841.26 Sub-Saharan Africa,Ghana,Beverages,Online,C,9/16/2016,664987266,10/18/2016,3364,47.45,31.79,159621.80,106941.56,52680.24 Sub-Saharan Africa,Equatorial Guinea,Meat,Online,M,5/11/2011,389443719,5/28/2011,3906,421.89,364.69,1647902.34,1424479.14,223423.20 Central America and the Caribbean,Haiti,Clothes,Online,C,6/27/2013,384562098,7/14/2013,9326,109.28,35.84,1019145.28,334243.84,684901.44 Sub-Saharan Africa,Sao Tome and Principe,Meat,Online,M,5/24/2014,605078732,6/7/2014,5098,421.89,364.69,2150795.22,1859189.62,291605.60 Europe,Bulgaria,Baby Food,Online,L,3/21/2010,176042449,4/21/2010,3728,255.28,159.42,951683.84,594317.76,357366.08 Sub-Saharan Africa,Eritrea,Snacks,Online,M,4/26/2013,542814576,6/15/2013,9750,152.58,97.44,1487655.00,950040.00,537615.00 Europe,Armenia,Baby Food,Offline,M,8/9/2010,521068942,9/21/2010,4734,255.28,159.42,1208495.52,754694.28,453801.24 Australia and Oceania,Palau,Cereal,Offline,C,10/10/2012,346791875,11/26/2012,2277,205.70,117.11,468378.90,266659.47,201719.43 Middle East and North Africa,Libya,Snacks,Online,M,8/29/2012,326282203,10/4/2012,3009,152.58,97.44,459113.22,293196.96,165916.26 Europe,Cyprus,Household,Offline,M,9/24/2011,386151254,11/9/2011,9592,668.27,502.54,6410045.84,4820363.68,1589682.16 Asia,Bangladesh,Cosmetics,Online,M,4/20/2016,523322856,4/23/2016,1717,437.20,263.33,750672.40,452137.61,298534.79 Sub-Saharan Africa,Senegal,Household,Online,C,1/16/2011,355033338,3/5/2011,1109,668.27,502.54,741111.43,557316.86,183794.57 Sub-Saharan Africa,Senegal,Household,Offline,L,10/4/2015,468831527,10/8/2015,6522,668.27,502.54,4358456.94,3277565.88,1080891.06 Sub-Saharan Africa,South Sudan,Cosmetics,Offline,C,6/17/2013,172578752,7/1/2013,8743,437.20,263.33,3822439.60,2302294.19,1520145.41 Middle East and North Africa,Iraq,Meat,Offline,L,9/22/2014,644448840,9/28/2014,5588,421.89,364.69,2357521.32,2037887.72,319633.60 Australia and Oceania,Fiji,Household,Online,L,1/21/2016,882928121,2/13/2016,6906,668.27,502.54,4615072.62,3470541.24,1144531.38 Sub-Saharan Africa,Benin,Clothes,Offline,M,3/23/2011,856815421,5/6/2011,9578,109.28,35.84,1046683.84,343275.52,703408.32 Sub-Saharan Africa,Mauritius ,Personal Care,Offline,L,3/21/2010,155222070,4/2/2010,2515,81.73,56.67,205550.95,142525.05,63025.90 Middle East and North Africa,Pakistan,Cosmetics,Online,L,9/25/2012,237571895,10/5/2012,1658,437.20,263.33,724877.60,436601.14,288276.46 Central America and the Caribbean,El Salvador,Cereal,Online,M,12/16/2011,383601224,1/18/2012,4981,205.70,117.11,1024591.70,583324.91,441266.79 Asia,Japan,Fruits,Online,M,6/29/2013,843358886,7/12/2013,7490,9.33,6.92,69881.70,51830.80,18050.90 Central America and the Caribbean,The Bahamas,Cereal,Offline,L,6/12/2016,587206208,7/31/2016,6221,205.70,117.11,1279659.70,728541.31,551118.39 North America,Greenland,Vegetables,Offline,C,3/13/2017,455817019,4/5/2017,5240,154.06,90.93,807274.40,476473.20,330801.20 Middle East and North Africa,Turkey,Fruits,Online,C,3/9/2013,910177648,4/13/2013,647,9.33,6.92,6036.51,4477.24,1559.27 Europe,Kosovo,Office Supplies,Offline,H,4/15/2014,681586921,5/5/2014,5571,651.21,524.96,3627890.91,2924552.16,703338.75 Europe,Slovenia,Baby Food,Online,H,4/15/2016,821656167,5/15/2016,5174,255.28,159.42,1320818.72,824839.08,495979.64 Europe,Vatican City,Vegetables,Offline,L,4/2/2012,652309215,4/3/2012,1647,154.06,90.93,253736.82,149761.71,103975.11 Europe,Cyprus,Office Supplies,Offline,H,6/18/2011,915782392,7/24/2011,9215,651.21,524.96,6000900.15,4837506.40,1163393.75 Asia,Taiwan,Meat,Online,H,11/23/2012,624624526,12/15/2012,9133,421.89,364.69,3853121.37,3330713.77,522407.60 Asia,Japan,Meat,Online,C,8/8/2016,211696946,8/22/2016,4686,421.89,364.69,1976976.54,1708937.34,268039.20 Central America and the Caribbean,El Salvador,Vegetables,Offline,C,5/4/2012,180173480,5/7/2012,6191,154.06,90.93,953785.46,562947.63,390837.83 Middle East and North Africa,Kuwait,Clothes,Offline,M,8/22/2013,653540456,10/5/2013,5999,109.28,35.84,655570.72,215004.16,440566.56 Central America and the Caribbean,Panama,Clothes,Offline,C,3/5/2016,925596702,4/1/2016,3488,109.28,35.84,381168.64,125009.92,256158.72 Central America and the Caribbean,Dominican Republic,Clothes,Offline,H,9/7/2016,810453546,9/17/2016,69,109.28,35.84,7540.32,2472.96,5067.36 Middle East and North Africa,Algeria,Meat,Online,L,9/30/2016,192534816,11/7/2016,4185,421.89,364.69,1765609.65,1526227.65,239382.00 Europe,Armenia,Meat,Online,L,6/12/2011,376576840,6/28/2011,6310,421.89,364.69,2662125.90,2301193.90,360932.00 Europe,Estonia,Fruits,Offline,H,11/8/2015,937628448,12/20/2015,3949,9.33,6.92,36844.17,27327.08,9517.09 Central America and the Caribbean,Barbados,Baby Food,Offline,C,10/27/2015,171050965,11/21/2015,6637,255.28,159.42,1694293.36,1058070.54,636222.82 Central America and the Caribbean,Guatemala,Cosmetics,Offline,H,3/11/2017,942518222,3/22/2017,942,437.20,263.33,411842.40,248056.86,163785.54 Australia and Oceania,Tuvalu,Snacks,Offline,C,9/26/2011,338016545,10/7/2011,5462,152.58,97.44,833391.96,532217.28,301174.68 Central America and the Caribbean,Saint Kitts and Nevis ,Fruits,Online,H,3/19/2011,913844764,4/14/2011,5828,9.33,6.92,54375.24,40329.76,14045.48 Europe,Greece,Office Supplies,Online,H,4/20/2013,346614205,5/5/2013,9701,651.21,524.96,6317388.21,5092636.96,1224751.25 Europe,Greece,Office Supplies,Offline,H,12/18/2012,883248698,1/19/2013,1772,651.21,524.96,1153944.12,930229.12,223715.00 Sub-Saharan Africa,Djibouti,Baby Food,Online,H,10/20/2013,790984570,11/27/2013,8767,255.28,159.42,2238039.76,1397635.14,840404.62 Australia and Oceania,Federated States of Micronesia,Cereal,Online,L,9/8/2016,207370650,10/14/2016,4439,205.70,117.11,913102.30,519851.29,393251.01 Europe,Kosovo,Vegetables,Offline,C,12/28/2015,690268266,2/8/2016,4574,154.06,90.93,704670.44,415913.82,288756.62 Sub-Saharan Africa,Mozambique,Personal Care,Online,C,12/6/2010,267851245,12/13/2010,1990,81.73,56.67,162642.70,112773.30,49869.40 Sub-Saharan Africa,Togo,Fruits,Online,M,12/8/2016,188605916,12/10/2016,1537,9.33,6.92,14340.21,10636.04,3704.17 Sub-Saharan Africa,Benin,Beverages,Offline,L,6/5/2016,871331107,7/5/2016,5092,47.45,31.79,241615.40,161874.68,79740.72 Asia,South Korea,Beverages,Online,H,8/10/2015,555138146,8/19/2015,6569,47.45,31.79,311699.05,208828.51,102870.54 Europe,Liechtenstein,Snacks,Offline,H,5/17/2010,249450862,7/3/2010,6908,152.58,97.44,1054022.64,673115.52,380907.12 Sub-Saharan Africa,Zambia,Household,Offline,L,11/8/2012,584005582,11/21/2012,9084,668.27,502.54,6070564.68,4565073.36,1505491.32 Middle East and North Africa,Lebanon,Beverages,Offline,L,4/17/2017,458851134,5/3/2017,3102,47.45,31.79,147189.90,98612.58,48577.32 Sub-Saharan Africa,Ghana,Office Supplies,Online,C,6/9/2011,194348847,7/6/2011,998,651.21,524.96,649907.58,523910.08,125997.50 Europe,Slovenia,Office Supplies,Online,M,8/4/2010,181172549,8/10/2010,1838,651.21,524.96,1196923.98,964876.48,232047.50 Middle East and North Africa,Egypt,Household,Online,H,12/29/2015,430308568,1/26/2016,6723,668.27,502.54,4492779.21,3378576.42,1114202.79 Australia and Oceania,New Zealand,Vegetables,Offline,H,1/2/2011,123055732,1/3/2011,3780,154.06,90.93,582346.80,343715.40,238631.40 Australia and Oceania,Australia,Baby Food,Online,M,5/6/2010,761025369,5/9/2010,3173,255.28,159.42,810003.44,505839.66,304163.78 Europe,Ukraine,Meat,Offline,H,11/13/2010,316141307,12/29/2010,2093,421.89,364.69,883015.77,763296.17,119719.60 Asia,Maldives,Vegetables,Online,L,6/30/2010,880639874,7/4/2010,9763,154.06,90.93,1504087.78,887749.59,616338.19 Europe,Finland,Vegetables,Offline,M,12/29/2011,117069900,2/12/2012,2440,154.06,90.93,375906.40,221869.20,154037.20 Australia and Oceania,Kiribati,Snacks,Online,M,8/15/2011,708292710,9/29/2011,8408,152.58,97.44,1282892.64,819275.52,463617.12 Sub-Saharan Africa,Sierra Leone,Vegetables,Online,L,7/1/2010,907482135,7/21/2010,2985,154.06,90.93,459869.10,271426.05,188443.05 Asia,Kazakhstan,Baby Food,Online,M,10/18/2010,388124501,10/18/2010,3520,255.28,159.42,898585.60,561158.40,337427.20 Sub-Saharan Africa,Ghana,Fruits,Online,L,12/23/2011,694018638,12/26/2011,4392,9.33,6.92,40977.36,30392.64,10584.72 Middle East and North Africa,Morocco,Fruits,Online,M,7/22/2014,289275872,8/1/2014,2014,9.33,6.92,18790.62,13936.88,4853.74 Australia and Oceania,New Zealand,Cereal,Online,H,5/4/2016,408320033,6/13/2016,9826,205.70,117.11,2021208.20,1150722.86,870485.34 Europe,Serbia,Clothes,Online,H,3/9/2016,105887448,4/2/2016,3304,109.28,35.84,361061.12,118415.36,242645.76 Central America and the Caribbean,Nicaragua,Fruits,Online,L,3/31/2010,307026946,5/6/2010,4951,9.33,6.92,46192.83,34260.92,11931.91 Middle East and North Africa,Algeria,Office Supplies,Offline,C,11/13/2010,657099854,11/19/2010,9304,651.21,524.96,6058857.84,4884227.84,1174630.00 Middle East and North Africa,Kuwait,Cereal,Online,M,7/16/2012,871780002,7/27/2012,7930,205.70,117.11,1631201.00,928682.30,702518.70 Sub-Saharan Africa,Lesotho,Beverages,Online,M,10/24/2010,287053716,11/27/2010,4428,47.45,31.79,210108.60,140766.12,69342.48 Europe,Finland,Personal Care,Offline,M,8/31/2013,109219825,10/19/2013,9428,81.73,56.67,770550.44,534284.76,236265.68 Middle East and North Africa,Iran,Personal Care,Offline,H,12/28/2014,264889657,2/9/2015,5591,81.73,56.67,456952.43,316841.97,140110.46 Australia and Oceania,Tonga,Meat,Online,L,7/14/2013,750987040,8/25/2013,2609,421.89,364.69,1100711.01,951476.21,149234.80 Europe,Hungary,Personal Care,Online,L,9/6/2016,284748303,10/12/2016,2206,81.73,56.67,180296.38,125014.02,55282.36 Europe,Bosnia and Herzegovina,Vegetables,Offline,H,12/13/2013,353722274,2/1/2014,3136,154.06,90.93,483132.16,285156.48,197975.68 Sub-Saharan Africa,Botswana,Beverages,Online,H,1/25/2011,265770280,2/19/2011,6187,47.45,31.79,293573.15,196684.73,96888.42 Sub-Saharan Africa,Djibouti,Meat,Offline,L,1/15/2011,299066150,2/25/2011,9174,421.89,364.69,3870418.86,3345666.06,524752.80 Central America and the Caribbean,Panama,Cereal,Offline,M,5/13/2010,352096211,6/21/2010,1948,205.70,117.11,400703.60,228130.28,172573.32 Australia and Oceania,Fiji,Snacks,Online,C,5/23/2010,393659293,7/10/2010,1388,152.58,97.44,211781.04,135246.72,76534.32 Asia,South Korea,Personal Care,Online,C,7/15/2013,912866723,7/28/2013,6404,81.73,56.67,523398.92,362914.68,160484.24 Sub-Saharan Africa,Nigeria,Vegetables,Offline,L,12/2/2011,669142329,12/17/2011,2940,154.06,90.93,452936.40,267334.20,185602.20 Australia and Oceania,Tuvalu,Personal Care,Offline,M,11/14/2013,742222440,1/3/2014,8969,81.73,56.67,733036.37,508273.23,224763.14 Central America and the Caribbean,Jamaica,Vegetables,Offline,M,6/5/2017,482155883,6/5/2017,9495,154.06,90.93,1462799.70,863380.35,599419.35 Sub-Saharan Africa,Equatorial Guinea,Baby Food,Online,L,2/11/2014,659303987,2/24/2014,1556,255.28,159.42,397215.68,248057.52,149158.16 Sub-Saharan Africa,Republic of the Congo,Fruits,Online,L,6/19/2015,314340579,7/12/2015,9218,9.33,6.92,86003.94,63788.56,22215.38 Sub-Saharan Africa,Rwanda,Office Supplies,Offline,L,5/6/2011,808251988,6/3/2011,8579,651.21,524.96,5586730.59,4503631.84,1083098.75 Sub-Saharan Africa,Liberia,Baby Food,Online,C,8/16/2011,872337043,8/31/2011,2771,255.28,159.42,707380.88,441752.82,265628.06 Asia,Taiwan,Fruits,Online,H,2/3/2012,658207070,3/8/2012,6954,9.33,6.92,64880.82,48121.68,16759.14 Sub-Saharan Africa,Guinea,Office Supplies,Offline,L,5/22/2013,387785899,6/13/2013,3320,651.21,524.96,2162017.20,1742867.20,419150.00 Central America and the Caribbean,Grenada,Personal Care,Online,M,3/21/2017,803309857,4/21/2017,6093,81.73,56.67,497980.89,345290.31,152690.58 Sub-Saharan Africa,Niger,Baby Food,Offline,L,12/29/2014,917327773,2/17/2015,6528,255.28,159.42,1666467.84,1040693.76,625774.08 Central America and the Caribbean,Grenada,Meat,Online,M,5/1/2014,262700974,6/3/2014,7911,421.89,364.69,3337571.79,2885062.59,452509.20 Europe,Lithuania,Cereal,Online,L,7/23/2012,242603290,8/11/2012,559,205.70,117.11,114986.30,65464.49,49521.81 Sub-Saharan Africa,Benin,Meat,Offline,M,8/23/2015,980521047,9/7/2015,6822,421.89,364.69,2878133.58,2487915.18,390218.40 Middle East and North Africa,Bahrain,Household,Offline,H,9/5/2011,870253074,9/17/2011,6078,668.27,502.54,4061745.06,3054438.12,1007306.94 Central America and the Caribbean,El Salvador,Cereal,Offline,C,7/19/2012,625910699,8/5/2012,9740,205.70,117.11,2003518.00,1140651.40,862866.60 Asia,Indonesia,Meat,Online,L,4/6/2012,131917750,4/30/2012,6249,421.89,364.69,2636390.61,2278947.81,357442.80 Europe,Netherlands,Vegetables,Offline,H,6/23/2013,693010556,8/2/2013,6079,154.06,90.93,936530.74,552763.47,383767.27 Middle East and North Africa,Israel,Cereal,Online,C,2/12/2016,984237945,2/23/2016,6735,205.70,117.11,1385389.50,788735.85,596653.65 Europe,Switzerland,Cosmetics,Online,H,8/9/2013,200961244,9/25/2013,7753,437.20,263.33,3389611.60,2041597.49,1348014.11 Asia,South Korea,Snacks,Offline,L,10/16/2011,308854281,11/28/2011,5700,152.58,97.44,869706.00,555408.00,314298.00 Europe,France,Fruits,Online,H,1/4/2010,193903386,1/16/2010,9176,9.33,6.92,85612.08,63497.92,22114.16 Europe,Bulgaria,Personal Care,Online,L,6/13/2012,612407386,6/15/2012,3809,81.73,56.67,311309.57,215856.03,95453.54 Sub-Saharan Africa,Ethiopia,Beverages,Offline,M,10/18/2016,140977609,11/14/2016,7262,47.45,31.79,344581.90,230858.98,113722.92 Sub-Saharan Africa,South Sudan,Vegetables,Online,C,6/8/2010,126537883,7/13/2010,4226,154.06,90.93,651057.56,384270.18,266787.38 Sub-Saharan Africa,Guinea-Bissau,Meat,Offline,L,2/9/2012,636324536,3/20/2012,1426,421.89,364.69,601615.14,520047.94,81567.20 Australia and Oceania,Fiji,Office Supplies,Online,L,2/12/2015,907886397,3/30/2015,2615,651.21,524.96,1702914.15,1372770.40,330143.75 Sub-Saharan Africa,Democratic Republic of the Congo,Household,Offline,L,11/1/2013,699084794,11/17/2013,3581,668.27,502.54,2393074.87,1799595.74,593479.13 Sub-Saharan Africa,Uganda,Cosmetics,Online,M,1/20/2015,738093554,1/26/2015,7140,437.20,263.33,3121608.00,1880176.20,1241431.80 Asia,Uzbekistan,Fruits,Online,L,6/26/2011,473399007,7/28/2011,8141,9.33,6.92,75955.53,56335.72,19619.81 Europe,Romania,Household,Online,C,11/1/2015,323799979,12/19/2015,8464,668.27,502.54,5656237.28,4253498.56,1402738.72 Sub-Saharan Africa,Namibia,Personal Care,Online,C,8/3/2011,328407800,8/27/2011,2021,81.73,56.67,165176.33,114530.07,50646.26 North America,Mexico,Personal Care,Online,C,5/15/2017,596646296,5/30/2017,9753,81.73,56.67,797112.69,552702.51,244410.18 Sub-Saharan Africa,Nigeria,Snacks,Online,M,1/2/2015,858251798,2/15/2015,4634,152.58,97.44,707055.72,451536.96,255518.76 Europe,Croatia,Personal Care,Online,H,11/21/2013,913273131,12/8/2013,6669,81.73,56.67,545057.37,377932.23,167125.14 Europe,San Marino,Beverages,Offline,M,11/29/2016,182071626,12/5/2016,7895,47.45,31.79,374617.75,250982.05,123635.70 Middle East and North Africa,Libya,Snacks,Offline,C,9/1/2016,855321109,9/22/2016,7378,152.58,97.44,1125735.24,718912.32,406822.92 Europe,Austria,Office Supplies,Offline,L,5/21/2014,244007909,6/26/2014,6217,651.21,524.96,4048572.57,3263676.32,784896.25 Sub-Saharan Africa,Swaziland,Meat,Online,L,2/24/2016,229430854,3/5/2016,2543,421.89,364.69,1072866.27,927406.67,145459.60 Asia,Maldives,Clothes,Offline,C,12/16/2013,513201272,1/6/2014,6516,109.28,35.84,712068.48,233533.44,478535.04 Europe,Belarus,Cosmetics,Offline,C,3/29/2012,867242991,4/28/2012,5328,437.20,263.33,2329401.60,1403022.24,926379.36 Sub-Saharan Africa,Swaziland,Cosmetics,Offline,M,6/28/2016,683792340,7/12/2016,8204,437.20,263.33,3586788.80,2160359.32,1426429.48 Central America and the Caribbean,Dominican Republic,Meat,Offline,M,4/29/2014,325398147,6/5/2014,1398,421.89,364.69,589802.22,509836.62,79965.60 Asia,India,Meat,Online,L,2/27/2017,674921739,3/26/2017,3196,421.89,364.69,1348360.44,1165549.24,182811.20 Middle East and North Africa,Morocco,Household,Offline,H,12/14/2010,885536944,12/14/2010,8915,668.27,502.54,5957627.05,4480144.10,1477482.95 Asia,North Korea,Vegetables,Online,C,1/12/2013,630730092,2/18/2013,5905,154.06,90.93,909724.30,536941.65,372782.65 Sub-Saharan Africa,Niger,Snacks,Offline,L,4/15/2015,554300010,4/18/2015,8546,152.58,97.44,1303948.68,832722.24,471226.44 Sub-Saharan Africa,Ethiopia,Cosmetics,Online,L,8/28/2010,920358026,9/29/2010,3247,437.20,263.33,1419588.40,855032.51,564555.89 Europe,Iceland,Household,Online,C,2/3/2012,263327968,3/15/2012,3452,668.27,502.54,2306868.04,1734768.08,572099.96 Middle East and North Africa,Iran,Cosmetics,Online,H,11/19/2010,337946164,12/1/2010,4635,437.20,263.33,2026422.00,1220534.55,805887.45 Asia,Brunei,Clothes,Offline,H,9/30/2010,269261443,10/18/2010,9299,109.28,35.84,1016194.72,333276.16,682918.56 Central America and the Caribbean,Panama,Cosmetics,Online,L,6/18/2016,602635133,7/31/2016,1983,437.20,263.33,866967.60,522183.39,344784.21 Middle East and North Africa,Iran,Vegetables,Offline,C,12/12/2014,153741061,12/19/2014,4251,154.06,90.93,654909.06,386543.43,268365.63 Sub-Saharan Africa,Botswana,Snacks,Online,H,11/23/2016,958565557,1/10/2017,9704,152.58,97.44,1480636.32,945557.76,535078.56 North America,Greenland,Meat,Online,C,2/21/2015,623407447,4/1/2015,8972,421.89,364.69,3785197.08,3271998.68,513198.40 Asia,Nepal,Household,Offline,C,2/24/2011,874878060,3/13/2011,4715,668.27,502.54,3150893.05,2369476.10,781416.95 Asia,India,Beverages,Offline,H,3/29/2011,809901225,4/6/2011,6625,47.45,31.79,314356.25,210608.75,103747.50 Australia and Oceania,Federated States of Micronesia,Household,Online,C,3/23/2015,945713269,3/24/2015,6427,668.27,502.54,4294971.29,3229824.58,1065146.71 Sub-Saharan Africa,Mozambique,Fruits,Online,C,8/13/2012,969863021,9/6/2012,2875,9.33,6.92,26823.75,19895.00,6928.75 North America,Canada,Snacks,Offline,L,9/21/2016,190211808,10/5/2016,6756,152.58,97.44,1030830.48,658304.64,372525.84 Europe,Finland,Household,Online,C,5/27/2015,684933459,5/30/2015,5886,668.27,502.54,3933437.22,2957950.44,975486.78 Europe,Liechtenstein,Clothes,Offline,M,9/20/2012,552514302,10/22/2012,115,109.28,35.84,12567.20,4121.60,8445.60 Middle East and North Africa,Yemen,Fruits,Online,L,1/13/2010,661753165,2/12/2010,6322,9.33,6.92,58984.26,43748.24,15236.02 Europe,Germany,Snacks,Offline,M,4/30/2017,601761376,6/11/2017,3419,152.58,97.44,521671.02,333147.36,188523.66 Europe,Ukraine,Household,Offline,H,7/30/2011,931962764,9/16/2011,7347,668.27,502.54,4909779.69,3692161.38,1217618.31 Europe,Norway,Vegetables,Offline,L,4/3/2016,932093656,5/18/2016,6081,154.06,90.93,936838.86,552945.33,383893.53 Europe,Albania,Household,Offline,L,4/5/2014,852202880,4/20/2014,4625,668.27,502.54,3090748.75,2324247.50,766501.25 Australia and Oceania,Solomon Islands,Cereal,Online,L,4/3/2012,562651765,4/8/2012,15,205.70,117.11,3085.50,1756.65,1328.85 Australia and Oceania,New Zealand,Vegetables,Offline,L,3/16/2014,904114139,3/17/2014,6320,154.06,90.93,973659.20,574677.60,398981.60 Europe,Slovenia,Household,Offline,C,7/18/2017,537576329,9/6/2017,9637,668.27,502.54,6440117.99,4842977.98,1597140.01 Middle East and North Africa,Turkey,Clothes,Online,H,1/2/2017,894337165,2/9/2017,3096,109.28,35.84,338330.88,110960.64,227370.24 Sub-Saharan Africa,Malawi,Personal Care,Online,M,12/11/2015,326007974,12/26/2015,1859,81.73,56.67,151936.07,105349.53,46586.54 Asia,Mongolia,Household,Offline,C,12/31/2014,854512584,1/20/2015,8118,668.27,502.54,5425015.86,4079619.72,1345396.14 Australia and Oceania,Marshall Islands,Baby Food,Online,C,11/17/2015,522087323,11/21/2015,6096,255.28,159.42,1556186.88,971824.32,584362.56 Central America and the Caribbean,Honduras,Household,Online,H,7/25/2017,141281020,7/30/2017,7048,668.27,502.54,4709966.96,3541901.92,1168065.04 Middle East and North Africa,Pakistan,Clothes,Online,M,7/13/2012,144955003,8/11/2012,4261,109.28,35.84,465642.08,152714.24,312927.84 Europe,Armenia,Cereal,Online,L,4/2/2013,136283099,4/16/2013,8052,205.70,117.11,1656296.40,942969.72,713326.68 Middle East and North Africa,Kuwait,Meat,Offline,C,7/18/2010,238751637,8/2/2010,770,421.89,364.69,324855.30,280811.30,44044.00 Sub-Saharan Africa,Ghana,Clothes,Online,C,3/24/2015,646159446,4/20/2015,1794,109.28,35.84,196048.32,64296.96,131751.36 Sub-Saharan Africa,Angola,Personal Care,Offline,L,6/16/2016,272617852,6/18/2016,2535,81.73,56.67,207185.55,143658.45,63527.10 Australia and Oceania,Samoa ,Household,Offline,C,10/29/2015,802550685,12/7/2015,1437,668.27,502.54,960303.99,722149.98,238154.01 Sub-Saharan Africa,Botswana,Vegetables,Offline,L,12/25/2015,840694272,2/5/2016,8972,154.06,90.93,1382226.32,815823.96,566402.36 Asia,Philippines,Cosmetics,Offline,C,11/7/2016,862097442,11/14/2016,2646,437.20,263.33,1156831.20,696771.18,460060.02 Europe,United Kingdom,Meat,Online,L,11/13/2011,962121522,12/29/2011,1994,421.89,364.69,841248.66,727191.86,114056.80 Central America and the Caribbean,Barbados,Household,Online,L,6/9/2014,406440341,6/12/2014,3584,668.27,502.54,2395079.68,1801103.36,593976.32 Sub-Saharan Africa,Ghana,Snacks,Offline,L,4/30/2016,781040227,6/10/2016,6014,152.58,97.44,917616.12,586004.16,331611.96 Asia,Japan,Cosmetics,Offline,L,3/1/2014,142220008,3/8/2014,4916,437.20,263.33,2149275.20,1294530.28,854744.92 Middle East and North Africa,Lebanon,Household,Offline,C,3/11/2013,666591012,3/26/2013,7948,668.27,502.54,5311409.96,3994187.92,1317222.04 Europe,Norway,Office Supplies,Offline,H,12/13/2015,101077067,12/28/2015,9805,651.21,524.96,6385114.05,5147232.80,1237881.25 Sub-Saharan Africa,Sudan,Cosmetics,Offline,M,11/19/2010,312914502,12/9/2010,7210,437.20,263.33,3152212.00,1898609.30,1253602.70 Australia and Oceania,Samoa ,Snacks,Offline,H,1/8/2014,539652144,2/11/2014,3917,152.58,97.44,597655.86,381672.48,215983.38 Asia,Sri Lanka,Cosmetics,Online,C,2/26/2012,539151322,3/17/2012,5712,437.20,263.33,2497286.40,1504140.96,993145.44 Asia,Kazakhstan,Beverages,Offline,M,1/29/2012,139585864,3/1/2012,5414,47.45,31.79,256894.30,172111.06,84783.24 Europe,Monaco,Meat,Offline,M,1/28/2014,589442098,3/8/2014,7870,421.89,364.69,3320274.30,2870110.30,450164.00 Europe,Czech Republic,Personal Care,Offline,H,9/18/2015,507518851,11/1/2015,4961,81.73,56.67,405462.53,281139.87,124322.66 Central America and the Caribbean,Trinidad and Tobago,Office Supplies,Offline,H,8/13/2015,832927453,8/29/2015,598,651.21,524.96,389423.58,313926.08,75497.50 Sub-Saharan Africa,Gabon,Personal Care,Online,H,4/6/2017,775091731,4/18/2017,5722,81.73,56.67,467659.06,324265.74,143393.32 Sub-Saharan Africa,Namibia,Cosmetics,Online,M,1/20/2010,963748013,1/22/2010,3309,437.20,263.33,1446694.80,871358.97,575335.83 Europe,Slovenia,Meat,Offline,C,12/16/2010,298945128,1/31/2011,3362,421.89,364.69,1418394.18,1226087.78,192306.40 Middle East and North Africa,Tunisia ,Personal Care,Offline,M,4/17/2015,901044404,4/29/2015,7917,81.73,56.67,647056.41,448656.39,198400.02 Australia and Oceania,Solomon Islands,Meat,Offline,L,8/24/2015,460719668,9/6/2015,6043,421.89,364.69,2549481.27,2203821.67,345659.60 Europe,Russia,Fruits,Online,M,4/2/2013,788957250,4/23/2013,8837,9.33,6.92,82449.21,61152.04,21297.17 Sub-Saharan Africa,Swaziland,Clothes,Online,L,3/12/2014,167055976,4/29/2014,4430,109.28,35.84,484110.40,158771.20,325339.20 Europe,Austria,Clothes,Offline,C,6/22/2010,996627175,7/9/2010,2983,109.28,35.84,325982.24,106910.72,219071.52 Asia,Uzbekistan,Baby Food,Online,C,2/1/2014,349594676,3/16/2014,1688,255.28,159.42,430912.64,269100.96,161811.68 Sub-Saharan Africa,Ghana,Cereal,Offline,L,5/21/2015,318194806,5/22/2015,9769,205.70,117.11,2009483.30,1144047.59,865435.71 Sub-Saharan Africa,Uganda,Clothes,Offline,C,2/18/2017,364976394,2/24/2017,3480,109.28,35.84,380294.40,124723.20,255571.20 Middle East and North Africa,Israel,Fruits,Offline,H,8/6/2015,472800767,9/13/2015,1108,9.33,6.92,10337.64,7667.36,2670.28 Central America and the Caribbean,Jamaica,Fruits,Online,C,11/19/2011,694841754,11/28/2011,7971,9.33,6.92,74369.43,55159.32,19210.11 Asia,Taiwan,Beverages,Online,C,9/30/2015,704585683,10/1/2015,1416,47.45,31.79,67189.20,45014.64,22174.56 Australia and Oceania,New Zealand,Personal Care,Online,C,7/1/2011,245831382,8/2/2011,5824,81.73,56.67,475995.52,330046.08,145949.44 Europe,Finland,Vegetables,Offline,H,10/20/2014,482690179,11/20/2014,7605,154.06,90.93,1171626.30,691522.65,480103.65 Sub-Saharan Africa,Rwanda,Office Supplies,Online,L,11/22/2015,849585902,12/11/2015,203,651.21,524.96,132195.63,106566.88,25628.75 Australia and Oceania,Fiji,Clothes,Online,M,8/16/2013,401254880,9/13/2013,9091,109.28,35.84,993464.48,325821.44,667643.04 Europe,Poland,Office Supplies,Offline,L,9/20/2011,962745940,10/19/2011,6773,651.21,524.96,4410645.33,3555554.08,855091.25 Middle East and North Africa,Egypt,Cosmetics,Online,C,12/17/2014,379420411,12/23/2014,7786,437.20,263.33,3404039.20,2050287.38,1353751.82 Middle East and North Africa,Oman,Snacks,Online,M,4/4/2010,166952121,5/6/2010,3697,152.58,97.44,564088.26,360235.68,203852.58 Central America and the Caribbean,Honduras,Cereal,Offline,M,11/18/2015,561327397,12/29/2015,8106,205.70,117.11,1667404.20,949293.66,718110.54 Sub-Saharan Africa,Malawi,Personal Care,Offline,M,2/2/2017,968845069,2/10/2017,1641,81.73,56.67,134118.93,92995.47,41123.46 Asia,Malaysia,Beverages,Offline,H,5/10/2015,416116464,5/30/2015,6963,47.45,31.79,330394.35,221353.77,109040.58 Asia,Uzbekistan,Personal Care,Offline,C,12/27/2016,700065410,12/30/2016,3767,81.73,56.67,307876.91,213475.89,94401.02 Central America and the Caribbean,Dominica,Beverages,Online,M,3/28/2014,537928235,5/14/2014,3774,47.45,31.79,179076.30,119975.46,59100.84 Europe,Latvia,Vegetables,Offline,H,10/4/2011,517253768,10/30/2011,5739,154.06,90.93,884150.34,521847.27,362303.07 Europe,Poland,Beverages,Online,M,4/12/2015,845903337,5/14/2015,450,47.45,31.79,21352.50,14305.50,7047.00 Asia,Brunei,Baby Food,Online,M,8/29/2012,902050769,10/12/2012,5723,255.28,159.42,1460967.44,912360.66,548606.78 Middle East and North Africa,Saudi Arabia,Personal Care,Online,L,7/21/2015,584182393,7/23/2015,1407,81.73,56.67,114994.11,79734.69,35259.42 Central America and the Caribbean,Trinidad and Tobago,Clothes,Offline,L,2/24/2010,761097037,4/5/2010,4381,109.28,35.84,478755.68,157015.04,321740.64 Sub-Saharan Africa,Democratic Republic of the Congo,Vegetables,Online,M,1/8/2014,121906030,2/25/2014,3558,154.06,90.93,548145.48,323528.94,224616.54 Middle East and North Africa,Turkey,Fruits,Offline,C,9/16/2011,126033198,9/25/2011,4879,9.33,6.92,45521.07,33762.68,11758.39 Australia and Oceania,Samoa ,Fruits,Offline,M,7/18/2011,953214871,8/5/2011,6318,9.33,6.92,58946.94,43720.56,15226.38 Australia and Oceania,Tonga,Cereal,Online,H,7/25/2011,153499877,8/2/2011,2880,205.70,117.11,592416.00,337276.80,255139.20 Europe,Armenia,Vegetables,Online,H,11/14/2010,297249543,12/11/2010,1600,154.06,90.93,246496.00,145488.00,101008.00 Middle East and North Africa,Yemen,Personal Care,Online,H,6/1/2013,425137698,6/8/2013,6547,81.73,56.67,535086.31,371018.49,164067.82 Middle East and North Africa,Libya,Cosmetics,Offline,H,8/24/2016,998150670,10/13/2016,3819,437.20,263.33,1669666.80,1005657.27,664009.53 Sub-Saharan Africa,Kenya,Household,Online,L,4/15/2015,747587287,5/24/2015,6546,668.27,502.54,4374495.42,3289626.84,1084868.58 North America,United States of America,Cosmetics,Online,C,9/10/2012,725058877,10/6/2012,9889,437.20,263.33,4323470.80,2604070.37,1719400.43 Europe,Poland,Cosmetics,Online,L,1/30/2017,252489268,3/19/2017,6040,437.20,263.33,2640688.00,1590513.20,1050174.80 Europe,France,Meat,Offline,L,1/4/2015,972114789,1/9/2015,9223,421.89,364.69,3891091.47,3363535.87,527555.60 Europe,Portugal,Personal Care,Offline,H,1/13/2013,996484267,2/22/2013,694,81.73,56.67,56720.62,39328.98,17391.64 Sub-Saharan Africa,Zimbabwe,Cereal,Online,M,3/16/2011,758459031,3/19/2011,3737,205.70,117.11,768700.90,437640.07,331060.83 Middle East and North Africa,Pakistan,Fruits,Offline,C,6/2/2014,761212909,7/8/2014,8670,9.33,6.92,80891.10,59996.40,20894.70 Sub-Saharan Africa,Madagascar,Personal Care,Online,M,6/29/2013,228232228,8/12/2013,7843,81.73,56.67,641008.39,444462.81,196545.58 Europe,Malta,Cereal,Online,L,9/3/2011,253315818,9/21/2011,635,205.70,117.11,130619.50,74364.85,56254.65 Sub-Saharan Africa,Liberia,Vegetables,Offline,C,4/8/2013,650575006,4/24/2013,8456,154.06,90.93,1302731.36,768904.08,533827.28 Australia and Oceania,Solomon Islands,Baby Food,Offline,M,4/15/2012,404433619,5/17/2012,9750,255.28,159.42,2488980.00,1554345.00,934635.00 Australia and Oceania,New Zealand,Meat,Online,L,5/21/2011,819627988,6/12/2011,4990,421.89,364.69,2105231.10,1819803.10,285428.00 Asia,Maldives,Meat,Offline,M,6/28/2010,571206939,7/31/2010,1682,421.89,364.69,709618.98,613408.58,96210.40 Central America and the Caribbean,Dominican Republic,Cereal,Offline,M,8/7/2010,654531800,8/31/2010,9360,205.70,117.11,1925352.00,1096149.60,829202.40 Asia,Turkmenistan,Clothes,Offline,C,7/22/2017,335276401,9/2/2017,4592,109.28,35.84,501813.76,164577.28,337236.48 Middle East and North Africa,Somalia,Personal Care,Online,M,7/21/2015,299427068,9/7/2015,5978,81.73,56.67,488581.94,338773.26,149808.68 Sub-Saharan Africa,Namibia,Beverages,Online,H,5/8/2016,403282630,6/18/2016,9147,47.45,31.79,434025.15,290783.13,143242.02 Sub-Saharan Africa,Comoros,Meat,Offline,C,1/23/2010,123454415,2/25/2010,1760,421.89,364.69,742526.40,641854.40,100672.00 Asia,Myanmar,Household,Online,L,5/13/2014,806866252,6/6/2014,8509,668.27,502.54,5686309.43,4276112.86,1410196.57 Asia,North Korea,Baby Food,Online,L,2/18/2010,720754468,3/19/2010,6119,255.28,159.42,1562058.32,975490.98,586567.34 Asia,Myanmar,Personal Care,Offline,C,5/25/2013,902667891,7/14/2013,8343,81.73,56.67,681873.39,472797.81,209075.58 Central America and the Caribbean,Barbados,Beverages,Online,M,12/12/2010,210467851,12/12/2010,969,47.45,31.79,45979.05,30804.51,15174.54 Middle East and North Africa,Tunisia ,Beverages,Online,M,2/23/2017,272328174,4/1/2017,6813,47.45,31.79,323276.85,216585.27,106691.58 Sub-Saharan Africa,Madagascar,Beverages,Online,M,2/21/2017,536735188,3/17/2017,725,47.45,31.79,34401.25,23047.75,11353.50 Middle East and North Africa,Tunisia ,Household,Online,C,1/25/2016,522487723,2/12/2016,4583,668.27,502.54,3062681.41,2303140.82,759540.59 Central America and the Caribbean,Antigua and Barbuda ,Meat,Offline,C,7/17/2012,268697106,8/23/2012,2300,421.89,364.69,970347.00,838787.00,131560.00 Asia,China,Clothes,Offline,M,1/21/2010,784787166,2/28/2010,4817,109.28,35.84,526401.76,172641.28,353760.48 Sub-Saharan Africa,Sudan,Household,Offline,L,2/24/2013,900494229,4/5/2013,5108,668.27,502.54,3413523.16,2566974.32,846548.84 Sub-Saharan Africa,Equatorial Guinea,Meat,Offline,H,1/28/2016,415867125,1/30/2016,3179,421.89,364.69,1341188.31,1159349.51,181838.80 Asia,Myanmar,Office Supplies,Online,M,2/21/2014,551267182,4/10/2014,1064,651.21,524.96,692887.44,558557.44,134330.00 Sub-Saharan Africa,Mauritius ,Office Supplies,Online,L,2/4/2015,797368228,3/10/2015,7833,651.21,524.96,5100927.93,4112011.68,988916.25 Sub-Saharan Africa,Republic of the Congo,Vegetables,Offline,M,8/3/2012,265156590,9/7/2012,4582,154.06,90.93,705902.92,416641.26,289261.66 Australia and Oceania,Marshall Islands,Vegetables,Offline,L,9/17/2012,835931098,9/29/2012,9443,154.06,90.93,1454788.58,858651.99,596136.59 Central America and the Caribbean,Belize,Beverages,Online,H,1/12/2015,411303079,2/23/2015,2576,47.45,31.79,122231.20,81891.04,40340.16 Asia,Japan,Cereal,Online,H,5/29/2016,563196361,7/2/2016,1173,205.70,117.11,241286.10,137370.03,103916.07 Sub-Saharan Africa,Central African Republic,Fruits,Online,H,10/3/2014,683847272,10/20/2014,4459,9.33,6.92,41602.47,30856.28,10746.19 Europe,Andorra,Fruits,Online,M,11/3/2012,235804641,11/8/2012,8688,9.33,6.92,81059.04,60120.96,20938.08 Europe,Lithuania,Fruits,Offline,C,7/4/2014,101929795,7/30/2014,2146,9.33,6.92,20022.18,14850.32,5171.86 Asia,Nepal,Baby Food,Offline,C,4/14/2013,335396564,5/30/2013,151,255.28,159.42,38547.28,24072.42,14474.86 Middle East and North Africa,Somalia,Personal Care,Online,H,5/11/2011,609691274,6/24/2011,51,81.73,56.67,4168.23,2890.17,1278.06 Middle East and North Africa,Afghanistan,Meat,Offline,M,10/3/2015,668612754,11/10/2015,6227,421.89,364.69,2627109.03,2270924.63,356184.40 Asia,Bhutan,Household,Offline,H,11/7/2011,776272332,11/15/2011,5088,668.27,502.54,3400157.76,2556923.52,843234.24 Europe,Ireland,Office Supplies,Online,C,8/3/2012,367093837,8/29/2012,79,651.21,524.96,51445.59,41471.84,9973.75 Sub-Saharan Africa,Ethiopia,Personal Care,Offline,H,11/2/2016,295813596,11/24/2016,6671,81.73,56.67,545220.83,378045.57,167175.26 Australia and Oceania,Palau,Vegetables,Offline,C,3/2/2013,587480437,3/20/2013,7371,154.06,90.93,1135576.26,670245.03,465331.23 Sub-Saharan Africa,Guinea-Bissau,Vegetables,Offline,M,12/5/2013,887455689,1/23/2014,6715,154.06,90.93,1034512.90,610594.95,423917.95 Europe,Cyprus,Meat,Online,M,8/11/2013,911413180,9/14/2013,6269,421.89,364.69,2644828.41,2286241.61,358586.80 Central America and the Caribbean,Nicaragua,Office Supplies,Offline,L,5/4/2015,895339238,5/15/2015,9632,651.21,524.96,6272454.72,5056414.72,1216040.00 Asia,Thailand,Beverages,Offline,M,12/10/2011,245532691,12/15/2011,7434,47.45,31.79,352743.30,236326.86,116416.44 Asia,Taiwan,Office Supplies,Online,C,6/17/2012,688604867,6/18/2012,2337,651.21,524.96,1521877.77,1226831.52,295046.25 Europe,Bosnia and Herzegovina,Office Supplies,Online,H,8/23/2015,421479594,9/19/2015,4033,651.21,524.96,2626329.93,2117163.68,509166.25 Europe,Armenia,Vegetables,Online,H,9/21/2013,861393201,10/10/2013,4245,154.06,90.93,653984.70,385997.85,267986.85 Asia,Japan,Personal Care,Online,L,5/15/2011,795894515,5/20/2011,1728,81.73,56.67,141229.44,97925.76,43303.68 Europe,Montenegro,Fruits,Online,L,4/22/2014,432844865,5/19/2014,7269,9.33,6.92,67819.77,50301.48,17518.29 Sub-Saharan Africa,Ethiopia,Personal Care,Offline,M,5/25/2010,950418078,6/6/2010,8685,81.73,56.67,709825.05,492178.95,217646.10 Asia,Thailand,Personal Care,Online,H,4/13/2011,447100484,4/15/2011,5824,81.73,56.67,475995.52,330046.08,145949.44 Asia,Taiwan,Office Supplies,Online,H,9/27/2010,691690909,10/25/2010,5566,651.21,524.96,3624634.86,2921927.36,702707.50 Middle East and North Africa,Afghanistan,Beverages,Online,L,3/9/2011,373300683,4/11/2011,6823,47.45,31.79,323751.35,216903.17,106848.18 Asia,South Korea,Baby Food,Offline,C,4/23/2012,951353633,6/10/2012,5536,255.28,159.42,1413230.08,882549.12,530680.96 Central America and the Caribbean,The Bahamas,Vegetables,Offline,H,11/16/2014,805586087,12/5/2014,9680,154.06,90.93,1491300.80,880202.40,611098.40 Sub-Saharan Africa,The Gambia,Clothes,Online,H,11/30/2016,186046874,12/30/2016,4259,109.28,35.84,465423.52,152642.56,312780.96 Central America and the Caribbean,Saint Vincent and the Grenadines,Clothes,Offline,C,7/13/2017,763097321,8/7/2017,6310,109.28,35.84,689556.80,226150.40,463406.40 Central America and the Caribbean,Panama,Baby Food,Offline,C,2/7/2013,677411258,3/21/2013,9900,255.28,159.42,2527272.00,1578258.00,949014.00 Australia and Oceania,Tonga,Snacks,Online,H,3/23/2016,389975011,4/20/2016,1127,152.58,97.44,171957.66,109814.88,62142.78 Europe,Hungary,Clothes,Offline,M,1/15/2014,432087409,2/2/2014,3121,109.28,35.84,341062.88,111856.64,229206.24 Europe,Georgia,Baby Food,Online,L,6/28/2017,955359780,7/12/2017,1044,255.28,159.42,266512.32,166434.48,100077.84 Sub-Saharan Africa,Swaziland,Snacks,Online,L,1/24/2012,381715953,1/26/2012,7088,152.58,97.44,1081487.04,690654.72,390832.32 Sub-Saharan Africa,Mauritania,Fruits,Online,L,8/13/2014,353392255,9/18/2014,5476,9.33,6.92,51091.08,37893.92,13197.16 Europe,Greece,Household,Offline,M,7/21/2016,782937514,7/23/2016,7464,668.27,502.54,4987967.28,3750958.56,1237008.72 Sub-Saharan Africa,Angola,Clothes,Online,C,5/9/2010,303213059,5/14/2010,6337,109.28,35.84,692507.36,227118.08,465389.28 Middle East and North Africa,Pakistan,Personal Care,Offline,L,1/21/2016,317392718,2/27/2016,2413,81.73,56.67,197214.49,136744.71,60469.78 Europe,Norway,Beverages,Online,M,11/30/2016,948962819,11/30/2016,8041,47.45,31.79,381545.45,255623.39,125922.06 Asia,Vietnam,Personal Care,Offline,C,3/2/2016,591722190,4/10/2016,2600,81.73,56.67,212498.00,147342.00,65156.00 Australia and Oceania,Tonga,Fruits,Offline,M,7/20/2010,859782159,7/28/2010,7502,9.33,6.92,69993.66,51913.84,18079.82 Asia,North Korea,Personal Care,Online,M,10/17/2016,737566554,10/19/2016,1189,81.73,56.67,97176.97,67380.63,29796.34 Europe,Bosnia and Herzegovina,Beverages,Offline,C,11/2/2014,629811704,12/2/2014,4134,47.45,31.79,196158.30,131419.86,64738.44 Asia,Taiwan,Beverages,Offline,H,3/4/2012,111566436,4/9/2012,3842,47.45,31.79,182302.90,122137.18,60165.72 Sub-Saharan Africa,Democratic Republic of the Congo,Snacks,Online,L,5/18/2017,178192079,6/17/2017,9851,152.58,97.44,1503065.58,959881.44,543184.14 Sub-Saharan Africa,Guinea,Baby Food,Online,L,7/28/2013,995362460,8/5/2013,8726,255.28,159.42,2227573.28,1391098.92,836474.36 Sub-Saharan Africa,Kenya,Personal Care,Online,M,3/31/2015,549063909,5/3/2015,9067,81.73,56.67,741045.91,513826.89,227219.02 Sub-Saharan Africa,Burundi,Clothes,Offline,L,6/9/2011,495595252,6/10/2011,6503,109.28,35.84,710647.84,233067.52,477580.32 Europe,Austria,Personal Care,Offline,H,12/23/2014,311567819,1/20/2015,8696,81.73,56.67,710724.08,492802.32,217921.76 Sub-Saharan Africa,Liberia,Cereal,Offline,M,4/2/2013,443905436,4/13/2013,338,205.70,117.11,69526.60,39583.18,29943.42 Europe,Armenia,Baby Food,Offline,C,6/6/2017,959844434,6/22/2017,8153,255.28,159.42,2081297.84,1299751.26,781546.58 Middle East and North Africa,Turkey,Office Supplies,Online,H,3/31/2013,196933639,5/14/2013,5895,651.21,524.96,3838882.95,3094639.20,744243.75 Asia,Maldives,Snacks,Offline,H,3/19/2010,613034379,3/29/2010,9351,152.58,97.44,1426775.58,911161.44,515614.14 Europe,Ukraine,Baby Food,Offline,C,2/13/2015,236320483,3/4/2015,1337,255.28,159.42,341309.36,213144.54,128164.82 Middle East and North Africa,Pakistan,Personal Care,Online,L,2/9/2013,315278279,3/19/2013,6704,81.73,56.67,547917.92,379915.68,168002.24 Middle East and North Africa,Somalia,Baby Food,Online,H,11/21/2016,368706595,12/11/2016,7330,255.28,159.42,1871202.40,1168548.60,702653.80 Europe,Switzerland,Household,Online,L,7/8/2017,435716760,8/13/2017,7127,668.27,502.54,4762760.29,3581602.58,1181157.71 Europe,Germany,Cereal,Offline,H,11/24/2010,625732600,1/4/2011,7036,205.70,117.11,1447305.20,823985.96,623319.24 Australia and Oceania,Vanuatu,Vegetables,Offline,H,9/20/2016,668490445,9/25/2016,33,154.06,90.93,5083.98,3000.69,2083.29 Asia,Japan,Snacks,Offline,L,2/2/2014,364039123,3/12/2014,6121,152.58,97.44,933942.18,596430.24,337511.94 Australia and Oceania,Tonga,Office Supplies,Offline,C,6/19/2013,932739961,6/29/2013,7337,651.21,524.96,4777927.77,3851631.52,926296.25 Sub-Saharan Africa,Republic of the Congo,Office Supplies,Online,H,1/7/2015,965266788,2/9/2015,2748,651.21,524.96,1789525.08,1442590.08,346935.00 Asia,Cambodia,Personal Care,Online,C,5/27/2012,472605931,6/23/2012,3452,81.73,56.67,282131.96,195624.84,86507.12 Asia,Kyrgyzstan,Baby Food,Offline,H,9/14/2011,436056220,9/19/2011,7580,255.28,159.42,1935022.40,1208403.60,726618.80 Sub-Saharan Africa,Zambia,Fruits,Online,L,6/29/2012,557228982,8/12/2012,5293,9.33,6.92,49383.69,36627.56,12756.13 Asia,Bangladesh,Vegetables,Online,C,8/18/2011,608048045,8/21/2011,3784,154.06,90.93,582963.04,344079.12,238883.92 Sub-Saharan Africa,Cape Verde,Personal Care,Online,C,8/6/2014,880749738,8/16/2014,2274,81.73,56.67,185854.02,128867.58,56986.44 Sub-Saharan Africa,Republic of the Congo,Snacks,Online,M,8/5/2016,837882888,9/5/2016,7021,152.58,97.44,1071264.18,684126.24,387137.94 Sub-Saharan Africa,Cameroon,Meat,Online,H,11/21/2013,462308824,1/3/2014,6309,421.89,364.69,2661704.01,2300829.21,360874.80 Central America and the Caribbean,Jamaica,Beverages,Online,H,2/28/2015,707201373,3/10/2015,5457,47.45,31.79,258934.65,173478.03,85456.62 Europe,Moldova ,Meat,Online,C,1/6/2015,346046864,1/20/2015,1812,421.89,364.69,764464.68,660818.28,103646.40 Europe,Liechtenstein,Personal Care,Online,M,11/29/2012,922644126,12/21/2012,9755,81.73,56.67,797276.15,552815.85,244460.30 Sub-Saharan Africa,Cote d'Ivoire,Cosmetics,Online,H,12/10/2016,901104485,12/24/2016,5697,437.20,263.33,2490728.40,1500191.01,990537.39 Australia and Oceania,Solomon Islands,Meat,Offline,L,5/2/2017,615851771,5/13/2017,3080,421.89,364.69,1299421.20,1123245.20,176176.00 Central America and the Caribbean,Nicaragua,Personal Care,Offline,H,12/14/2012,921622312,1/28/2013,7377,81.73,56.67,602922.21,418054.59,184867.62 North America,Canada,Vegetables,Offline,H,2/1/2015,943464934,3/9/2015,1095,154.06,90.93,168695.70,99568.35,69127.35 Europe,Montenegro,Household,Offline,H,5/16/2013,326740968,6/3/2013,8768,668.27,502.54,5859391.36,4406270.72,1453120.64 Europe,Serbia,Vegetables,Offline,L,6/10/2017,587124240,6/24/2017,1965,154.06,90.93,302727.90,178677.45,124050.45 Sub-Saharan Africa,Central African Republic,Baby Food,Offline,M,4/9/2015,160601079,4/19/2015,4283,255.28,159.42,1093364.24,682795.86,410568.38 Europe,Switzerland,Office Supplies,Online,C,11/2/2014,253470313,12/3/2014,6353,651.21,524.96,4137137.13,3335070.88,802066.25 Middle East and North Africa,Pakistan,Cereal,Online,L,1/15/2010,792343270,1/26/2010,836,205.70,117.11,171965.20,97903.96,74061.24 North America,Greenland,Meat,Offline,L,10/7/2014,874143779,11/4/2014,7424,421.89,364.69,3132111.36,2707458.56,424652.80 Asia,North Korea,Baby Food,Online,H,9/7/2013,116108167,9/27/2013,7842,255.28,159.42,2001905.76,1250171.64,751734.12 Sub-Saharan Africa,Eritrea,Baby Food,Offline,M,6/16/2011,905785262,6/30/2011,842,255.28,159.42,214945.76,134231.64,80714.12 Europe,Slovakia,Household,Offline,C,10/22/2013,751036393,10/22/2013,7213,668.27,502.54,4820231.51,3624821.02,1195410.49 North America,United States of America,Vegetables,Online,M,3/5/2016,830035388,3/13/2016,4771,154.06,90.93,735020.26,433827.03,301193.23 Asia,Mongolia,Snacks,Offline,H,1/22/2015,141268575,2/21/2015,3365,152.58,97.44,513431.70,327885.60,185546.10 Central America and the Caribbean,Panama,Vegetables,Offline,C,10/20/2011,453534781,12/4/2011,9875,154.06,90.93,1521342.50,897933.75,623408.75 Central America and the Caribbean,Saint Kitts and Nevis ,Clothes,Offline,H,5/25/2016,455945336,7/10/2016,3212,109.28,35.84,351007.36,115118.08,235889.28 Australia and Oceania,Australia,Beverages,Offline,M,5/22/2013,707924067,6/6/2013,9318,47.45,31.79,442139.10,296219.22,145919.88 Middle East and North Africa,Lebanon,Household,Offline,M,2/9/2011,489207303,3/30/2011,6167,668.27,502.54,4121221.09,3099164.18,1022056.91 Central America and the Caribbean,Dominican Republic,Personal Care,Offline,H,3/3/2015,949843871,4/1/2015,8764,81.73,56.67,716281.72,496655.88,219625.84 Asia,Mongolia,Office Supplies,Offline,H,2/3/2017,160195100,2/5/2017,4145,651.21,524.96,2699265.45,2175959.20,523306.25 Asia,Laos,Household,Offline,H,4/7/2013,760934817,4/11/2013,6377,668.27,502.54,4261557.79,3204697.58,1056860.21 Sub-Saharan Africa,Mozambique,Household,Offline,H,4/10/2016,513049352,5/14/2016,1559,668.27,502.54,1041832.93,783459.86,258373.07 Asia,China,Cereal,Offline,L,4/8/2013,847837531,5/3/2013,2821,205.70,117.11,580279.70,330367.31,249912.39 Middle East and North Africa,Qatar,Beverages,Online,C,3/10/2015,116910684,4/9/2015,5324,47.45,31.79,252623.80,169249.96,83373.84 Europe,Italy,Household,Offline,C,2/4/2015,342192637,3/12/2015,1261,668.27,502.54,842688.47,633702.94,208985.53 Europe,Finland,Fruits,Online,H,9/11/2014,465919721,10/24/2014,4854,9.33,6.92,45287.82,33589.68,11698.14 Europe,Denmark,Beverages,Offline,H,12/20/2012,400640761,2/1/2013,7359,47.45,31.79,349184.55,233942.61,115241.94 Europe,San Marino,Meat,Offline,L,7/18/2017,579217088,8/23/2017,2063,421.89,364.69,870359.07,752355.47,118003.60 Europe,Austria,Cereal,Online,L,8/6/2010,604822528,8/21/2010,9281,205.70,117.11,1909101.70,1086897.91,822203.79 Middle East and North Africa,Iran,Office Supplies,Offline,L,3/27/2013,600943410,5/1/2013,1364,651.21,524.96,888250.44,716045.44,172205.00 Australia and Oceania,East Timor,Vegetables,Offline,M,7/24/2013,761378562,8/30/2013,7691,154.06,90.93,1184875.46,699342.63,485532.83 Middle East and North Africa,Somalia,Vegetables,Offline,M,11/18/2015,900239312,12/16/2015,9673,154.06,90.93,1490222.38,879565.89,610656.49 Middle East and North Africa,Iraq,Vegetables,Offline,L,3/16/2014,901949489,3/17/2014,5752,154.06,90.93,886153.12,523029.36,363123.76 Sub-Saharan Africa,Democratic Republic of the Congo,Meat,Online,M,3/10/2011,271245419,3/26/2011,6402,421.89,364.69,2700939.78,2334745.38,366194.40 Middle East and North Africa,Oman,Personal Care,Offline,H,5/1/2014,383175933,5/18/2014,9128,81.73,56.67,746031.44,517283.76,228747.68 Sub-Saharan Africa,Zimbabwe,Clothes,Online,C,1/21/2017,433102357,2/3/2017,3467,109.28,35.84,378873.76,124257.28,254616.48 Europe,Romania,Office Supplies,Offline,M,1/24/2010,586698520,1/26/2010,5985,651.21,524.96,3897491.85,3141885.60,755606.25 Europe,Italy,Clothes,Offline,C,5/31/2015,629950749,7/16/2015,5280,109.28,35.84,576998.40,189235.20,387763.20 Central America and the Caribbean,Grenada,Beverages,Online,L,7/28/2014,419157874,9/7/2014,6984,47.45,31.79,331390.80,222021.36,109369.44 Australia and Oceania,Australia,Snacks,Offline,L,10/16/2012,330931222,10/17/2012,8757,152.58,97.44,1336143.06,853282.08,482860.98 Central America and the Caribbean,Antigua and Barbuda ,Clothes,Offline,L,8/12/2012,812194621,9/7/2012,5292,109.28,35.84,578309.76,189665.28,388644.48 Central America and the Caribbean,Cuba,Fruits,Online,L,1/20/2010,130184400,2/20/2010,3312,9.33,6.92,30900.96,22919.04,7981.92 Europe,Slovakia,Office Supplies,Offline,M,7/27/2013,222449386,8/12/2013,6571,651.21,524.96,4279100.91,3449512.16,829588.75 Central America and the Caribbean,Trinidad and Tobago,Beverages,Online,H,7/10/2017,846850907,8/27/2017,857,47.45,31.79,40664.65,27244.03,13420.62 Sub-Saharan Africa,Rwanda,Vegetables,Offline,C,7/25/2013,931562793,8/24/2013,8987,154.06,90.93,1384537.22,817187.91,567349.31 Sub-Saharan Africa,Comoros,Vegetables,Offline,H,2/14/2017,825071370,3/15/2017,5808,154.06,90.93,894780.48,528121.44,366659.04 Europe,Austria,Meat,Offline,M,8/14/2010,946175467,8/14/2010,3202,421.89,364.69,1350891.78,1167737.38,183154.40 North America,Canada,Cereal,Offline,C,5/24/2015,433986413,6/5/2015,5079,205.70,117.11,1044750.30,594801.69,449948.61 Sub-Saharan Africa,Gabon,Personal Care,Online,H,3/18/2012,297928035,4/9/2012,2381,81.73,56.67,194599.13,134931.27,59667.86 Middle East and North Africa,Iran,Fruits,Offline,H,3/10/2013,267736661,4/28/2013,8083,9.33,6.92,75414.39,55934.36,19480.03 Europe,Lithuania,Fruits,Online,L,7/30/2012,143461120,7/31/2012,2188,9.33,6.92,20414.04,15140.96,5273.08 Australia and Oceania,Federated States of Micronesia,Household,Online,L,4/7/2013,245462739,4/8/2013,6734,668.27,502.54,4500130.18,3384104.36,1116025.82 Sub-Saharan Africa,Burkina Faso,Household,Online,C,6/1/2015,964415347,6/10/2015,788,668.27,502.54,526596.76,396001.52,130595.24 Europe,Kosovo,Cereal,Offline,L,9/8/2012,511305272,10/26/2012,5447,205.70,117.11,1120447.90,637898.17,482549.73 Middle East and North Africa,Syria,Beverages,Offline,C,3/3/2011,767431342,3/30/2011,8843,47.45,31.79,419600.35,281118.97,138481.38 Europe,Bulgaria,Snacks,Online,L,6/5/2010,534404885,6/29/2010,1136,152.58,97.44,173330.88,110691.84,62639.04 Asia,Indonesia,Clothes,Offline,L,11/23/2014,484149730,11/23/2014,9519,109.28,35.84,1040236.32,341160.96,699075.36 Sub-Saharan Africa,The Gambia,Cosmetics,Offline,C,11/29/2014,908902204,1/1/2015,3215,437.20,263.33,1405598.00,846605.95,558992.05 Middle East and North Africa,Morocco,Household,Offline,L,4/2/2013,371211135,5/8/2013,8479,668.27,502.54,5666261.33,4261036.66,1405224.67 Asia,India,Snacks,Offline,L,9/29/2013,653937852,11/5/2013,3597,152.58,97.44,548830.26,350491.68,198338.58 Middle East and North Africa,Oman,Cereal,Offline,C,7/5/2017,910256183,7/7/2017,3887,205.70,117.11,799555.90,455206.57,344349.33 Sub-Saharan Africa,Burundi,Personal Care,Online,L,7/29/2011,813652455,8/10/2011,6698,81.73,56.67,547427.54,379575.66,167851.88 Sub-Saharan Africa,Democratic Republic of the Congo,Snacks,Online,L,7/17/2010,107925498,8/20/2010,6408,152.58,97.44,977732.64,624395.52,353337.12 Europe,Ukraine,Snacks,Online,L,12/8/2014,857186639,1/26/2015,9430,152.58,97.44,1438829.40,918859.20,519970.20 Central America and the Caribbean,Saint Lucia,Snacks,Offline,M,12/24/2014,695859706,1/17/2015,9205,152.58,97.44,1404498.90,896935.20,507563.70 Central America and the Caribbean,Costa Rica,Clothes,Online,M,2/11/2017,478681027,3/28/2017,1208,109.28,35.84,132010.24,43294.72,88715.52 Middle East and North Africa,Bahrain,Personal Care,Online,C,6/24/2017,230699431,7/25/2017,7943,81.73,56.67,649181.39,450129.81,199051.58 Middle East and North Africa,Bahrain,Cosmetics,Online,H,4/15/2013,497276246,5/1/2013,3947,437.20,263.33,1725628.40,1039363.51,686264.89 Sub-Saharan Africa,Comoros,Vegetables,Online,H,3/3/2014,994085299,3/26/2014,786,154.06,90.93,121091.16,71470.98,49620.18 Sub-Saharan Africa,Niger,Clothes,Offline,L,9/4/2015,157112920,10/12/2015,2059,109.28,35.84,225007.52,73794.56,151212.96 Australia and Oceania,New Zealand,Cereal,Online,M,8/20/2010,992657935,9/23/2010,8397,205.70,117.11,1727262.90,983372.67,743890.23 Europe,Kosovo,Beverages,Offline,C,8/31/2015,727331674,10/19/2015,2460,47.45,31.79,116727.00,78203.40,38523.60 Sub-Saharan Africa,Namibia,Clothes,Online,M,5/13/2014,258057963,5/20/2014,3941,109.28,35.84,430672.48,141245.44,289427.04 Sub-Saharan Africa,South Sudan,Snacks,Offline,L,2/12/2014,102073132,4/2/2014,4563,152.58,97.44,696222.54,444618.72,251603.82 Europe,Sweden,Household,Offline,M,1/6/2012,846926009,1/6/2012,3082,668.27,502.54,2059608.14,1548828.28,510779.86 Central America and the Caribbean,El Salvador,Vegetables,Offline,L,10/13/2013,900477921,10/15/2013,282,154.06,90.93,43444.92,25642.26,17802.66 Europe,Lithuania,Fruits,Online,C,11/10/2014,540902698,12/14/2014,3983,9.33,6.92,37161.39,27562.36,9599.03 Asia,Philippines,Cosmetics,Online,M,9/26/2011,566686666,11/1/2011,4032,437.20,263.33,1762790.40,1061746.56,701043.84 Middle East and North Africa,Morocco,Office Supplies,Online,C,5/3/2013,946628654,6/11/2013,7310,651.21,524.96,4760345.10,3837457.60,922887.50 Middle East and North Africa,Israel,Clothes,Offline,C,7/5/2014,369839990,8/10/2014,2726,109.28,35.84,297897.28,97699.84,200197.44 Sub-Saharan Africa,Sao Tome and Principe,Cereal,Online,C,12/9/2014,295744502,12/19/2014,6225,205.70,117.11,1280482.50,729009.75,551472.75 Sub-Saharan Africa,Zimbabwe,Cereal,Online,H,5/22/2015,904078519,5/27/2015,5779,205.70,117.11,1188740.30,676778.69,511961.61 Europe,Slovakia,Household,Offline,L,11/22/2013,644890868,11/28/2013,6394,668.27,502.54,4272918.38,3213240.76,1059677.62 Central America and the Caribbean,Costa Rica,Fruits,Online,L,2/15/2017,288542878,2/22/2017,5105,9.33,6.92,47629.65,35326.60,12303.05 Central America and the Caribbean,The Bahamas,Meat,Online,M,11/24/2013,675708377,1/9/2014,5979,421.89,364.69,2522480.31,2180481.51,341998.80 Sub-Saharan Africa,Democratic Republic of the Congo,Clothes,Offline,L,10/17/2016,467373692,11/4/2016,5117,109.28,35.84,559185.76,183393.28,375792.48 Sub-Saharan Africa,Equatorial Guinea,Personal Care,Online,H,12/20/2012,194837653,12/31/2012,5646,81.73,56.67,461447.58,319958.82,141488.76 Middle East and North Africa,Azerbaijan,Cereal,Offline,M,5/11/2013,909711587,6/5/2013,2729,205.70,117.11,561355.30,319593.19,241762.11 Australia and Oceania,Federated States of Micronesia,Household,Offline,M,1/9/2011,133919322,2/25/2011,8558,668.27,502.54,5719054.66,4300737.32,1418317.34 Australia and Oceania,Kiribati,Vegetables,Online,C,4/1/2015,409697186,4/30/2015,7357,154.06,90.93,1133419.42,668972.01,464447.41 Europe,Greece,Vegetables,Online,C,6/8/2017,749594008,6/18/2017,380,154.06,90.93,58542.80,34553.40,23989.40 Europe,Georgia,Meat,Offline,L,1/24/2010,686471116,3/10/2010,913,421.89,364.69,385185.57,332961.97,52223.60 Europe,Luxembourg,Snacks,Offline,C,3/7/2013,723502337,3/29/2013,9274,152.58,97.44,1415026.92,903658.56,511368.36 Australia and Oceania,New Zealand,Cereal,Offline,H,1/12/2010,984174001,3/1/2010,7812,205.70,117.11,1606928.40,914863.32,692065.08 Sub-Saharan Africa,Guinea-Bissau,Cosmetics,Offline,M,6/6/2011,762284934,6/19/2011,5906,437.20,263.33,2582103.20,1555226.98,1026876.22 Central America and the Caribbean,Antigua and Barbuda ,Household,Offline,M,2/9/2014,771946465,3/7/2014,4968,668.27,502.54,3319965.36,2496618.72,823346.64 Europe,Hungary,Fruits,Online,H,2/2/2012,897582423,3/2/2012,3440,9.33,6.92,32095.20,23804.80,8290.40 Middle East and North Africa,Kuwait,Fruits,Offline,M,8/2/2015,643929135,9/2/2015,1796,9.33,6.92,16756.68,12428.32,4328.36 Europe,Ireland,Office Supplies,Online,M,12/17/2016,486035430,1/13/2017,7539,651.21,524.96,4909472.19,3957673.44,951798.75 Middle East and North Africa,Iran,Snacks,Online,L,3/18/2017,519262635,4/13/2017,208,152.58,97.44,31736.64,20267.52,11469.12 Middle East and North Africa,Pakistan,Cereal,Offline,L,8/9/2014,909284579,9/4/2014,6368,205.70,117.11,1309897.60,745756.48,564141.12 Asia,North Korea,Cereal,Offline,L,1/20/2016,542087590,2/26/2016,4619,205.70,117.11,950128.30,540931.09,409197.21 Central America and the Caribbean,Cuba,Cosmetics,Online,C,8/9/2010,173970496,8/17/2010,591,437.20,263.33,258385.20,155628.03,102757.17 Central America and the Caribbean,Jamaica,Fruits,Offline,M,1/30/2011,181544625,2/1/2011,1944,9.33,6.92,18137.52,13452.48,4685.04 Europe,Iceland,Meat,Online,C,6/12/2012,111733806,7/2/2012,3371,421.89,364.69,1422191.19,1229369.99,192821.20 Australia and Oceania,Kiribati,Household,Offline,C,9/22/2010,931774365,10/16/2010,1596,668.27,502.54,1066558.92,802053.84,264505.08 Sub-Saharan Africa,Lesotho,Household,Online,H,5/14/2014,979215133,5/30/2014,373,668.27,502.54,249264.71,187447.42,61817.29 Europe,Belgium,Cosmetics,Online,L,3/1/2010,911917436,3/15/2010,5489,437.20,263.33,2399790.80,1445418.37,954372.43 Middle East and North Africa,Saudi Arabia,Beverages,Offline,C,6/25/2012,558055102,7/14/2012,9761,47.45,31.79,463159.45,310302.19,152857.26 Middle East and North Africa,Turkey,Vegetables,Offline,H,1/14/2014,266114461,3/4/2014,8037,154.06,90.93,1238180.22,730804.41,507375.81 Europe,Liechtenstein,Cosmetics,Offline,H,5/22/2012,454894340,5/30/2012,2199,437.20,263.33,961402.80,579062.67,382340.13 Central America and the Caribbean,Haiti,Household,Online,M,9/28/2013,263506066,10/15/2013,6156,668.27,502.54,4113870.12,3093636.24,1020233.88 Middle East and North Africa,Morocco,Vegetables,Online,L,12/31/2013,701373469,1/31/2014,851,154.06,90.93,131105.06,77381.43,53723.63 Europe,Macedonia,Fruits,Offline,M,2/18/2010,598232877,3/10/2010,9257,9.33,6.92,86367.81,64058.44,22309.37 Sub-Saharan Africa,Niger,Snacks,Online,L,7/17/2011,654133117,8/29/2011,1380,152.58,97.44,210560.40,134467.20,76093.20 Australia and Oceania,Papua New Guinea,Cereal,Offline,L,7/15/2013,289435517,8/5/2013,9256,205.70,117.11,1903959.20,1083970.16,819989.04 Sub-Saharan Africa,Chad,Cereal,Online,C,4/14/2016,794813907,4/28/2016,1952,205.70,117.11,401526.40,228598.72,172927.68 Sub-Saharan Africa,Mozambique,Household,Offline,L,6/13/2013,381254613,7/29/2013,567,668.27,502.54,378909.09,284940.18,93968.91 Europe,Slovenia,Baby Food,Offline,H,2/8/2011,930056464,3/7/2011,3231,255.28,159.42,824809.68,515086.02,309723.66 Sub-Saharan Africa,Guinea-Bissau,Personal Care,Online,L,5/29/2016,342830789,6/30/2016,104,81.73,56.67,8499.92,5893.68,2606.24 Asia,Thailand,Vegetables,Online,H,1/22/2011,191501414,2/17/2011,8379,154.06,90.93,1290868.74,761902.47,528966.27 Sub-Saharan Africa,South Sudan,Snacks,Online,H,9/13/2015,768304669,10/16/2015,7280,152.58,97.44,1110782.40,709363.20,401419.20 Sub-Saharan Africa,Guinea-Bissau,Clothes,Offline,H,5/19/2010,635789382,6/6/2010,3062,109.28,35.84,334615.36,109742.08,224873.28 Europe,Montenegro,Office Supplies,Online,M,1/28/2014,676816880,2/6/2014,4010,651.21,524.96,2611352.10,2105089.60,506262.50 Sub-Saharan Africa,South Sudan,Office Supplies,Offline,C,10/4/2012,944560992,10/28/2012,5443,651.21,524.96,3544536.03,2857357.28,687178.75 Australia and Oceania,Vanuatu,Beverages,Online,C,3/6/2016,212508046,4/15/2016,4708,47.45,31.79,223394.60,149667.32,73727.28 Asia,Philippines,Vegetables,Offline,H,3/21/2016,924456870,4/15/2016,6186,154.06,90.93,953015.16,562492.98,390522.18 Europe,Germany,Clothes,Online,L,5/27/2013,644518792,6/6/2013,6288,109.28,35.84,687152.64,225361.92,461790.72 Europe,Greece,Office Supplies,Online,L,2/5/2013,607117640,2/21/2013,8456,651.21,524.96,5506631.76,4439061.76,1067570.00 Central America and the Caribbean,Cuba,Cereal,Online,C,3/5/2014,766989743,3/29/2014,8164,205.70,117.11,1679334.80,956086.04,723248.76 Sub-Saharan Africa,Seychelles ,Baby Food,Offline,L,10/10/2012,249183928,10/14/2012,7917,255.28,159.42,2021051.76,1262128.14,758923.62 Australia and Oceania,Nauru,Snacks,Online,L,9/4/2013,499061524,10/17/2013,2250,152.58,97.44,343305.00,219240.00,124065.00 Asia,Bangladesh,Personal Care,Offline,H,5/16/2011,332296359,5/26/2011,2732,81.73,56.67,223286.36,154822.44,68463.92 Asia,Indonesia,Household,Offline,C,7/20/2016,884874761,9/1/2016,2960,668.27,502.54,1978079.20,1487518.40,490560.80 Europe,Romania,Baby Food,Online,M,6/24/2014,663095557,7/9/2014,3566,255.28,159.42,910328.48,568491.72,341836.76 Central America and the Caribbean,Honduras,Beverages,Offline,M,3/11/2014,493570077,3/25/2014,7209,47.45,31.79,342067.05,229174.11,112892.94 Middle East and North Africa,Israel,Cosmetics,Online,M,6/8/2014,373222148,6/22/2014,3582,437.20,263.33,1566050.40,943248.06,622802.34 Sub-Saharan Africa,Ghana,Snacks,Offline,M,1/10/2015,819288098,1/15/2015,4410,152.58,97.44,672877.80,429710.40,243167.40 Europe,Denmark,Meat,Online,C,1/17/2013,619316756,2/1/2013,8446,421.89,364.69,3563282.94,3080171.74,483111.20 Sub-Saharan Africa,Guinea,Fruits,Online,C,3/26/2014,881169450,4/27/2014,6477,9.33,6.92,60430.41,44820.84,15609.57 Europe,Denmark,Vegetables,Online,C,1/5/2014,983020007,2/11/2014,6320,154.06,90.93,973659.20,574677.60,398981.60 Middle East and North Africa,Iraq,Clothes,Offline,C,6/16/2016,823354756,7/5/2016,7824,109.28,35.84,855006.72,280412.16,574594.56 Sub-Saharan Africa,Senegal,Household,Offline,H,5/7/2015,370972526,5/18/2015,7869,668.27,502.54,5258616.63,3954487.26,1304129.37 Sub-Saharan Africa,Malawi,Beverages,Online,H,2/3/2013,114984643,2/8/2013,5366,47.45,31.79,254616.70,170585.14,84031.56 Sub-Saharan Africa,Nigeria,Office Supplies,Online,C,12/17/2016,614814937,1/20/2017,6257,651.21,524.96,4074620.97,3284674.72,789946.25 Sub-Saharan Africa,Burundi,Clothes,Online,C,7/26/2012,250199735,9/6/2012,8516,109.28,35.84,930628.48,305213.44,625415.04 Europe,Norway,Beverages,Offline,M,2/3/2013,171187865,2/14/2013,7148,47.45,31.79,339172.60,227234.92,111937.68 Asia,Turkmenistan,Fruits,Online,H,1/23/2010,248140656,3/5/2010,9189,9.33,6.92,85733.37,63587.88,22145.49 Asia,Taiwan,Meat,Online,H,1/2/2015,421731936,1/16/2015,8707,421.89,364.69,3673396.23,3175355.83,498040.40 Sub-Saharan Africa,Cameroon,Baby Food,Offline,H,3/21/2010,252948033,4/20/2010,1799,255.28,159.42,459248.72,286796.58,172452.14 Europe,Ukraine,Fruits,Online,C,2/22/2013,273087775,3/18/2013,1596,9.33,6.92,14890.68,11044.32,3846.36 Middle East and North Africa,Azerbaijan,Office Supplies,Offline,M,1/2/2012,633762490,2/19/2012,3259,651.21,524.96,2122293.39,1710844.64,411448.75 Central America and the Caribbean,Belize,Snacks,Online,M,1/1/2015,656896007,2/6/2015,8981,152.58,97.44,1370320.98,875108.64,495212.34 Central America and the Caribbean,Dominican Republic,Household,Online,C,4/9/2016,184724652,5/22/2016,2984,668.27,502.54,1994117.68,1499579.36,494538.32 Europe,Poland,Beverages,Offline,H,10/19/2014,929797255,10/26/2014,6525,47.45,31.79,309611.25,207429.75,102181.50 Europe,Austria,Household,Online,H,8/19/2010,624975144,9/20/2010,2888,668.27,502.54,1929963.76,1451335.52,478628.24 Central America and the Caribbean,Grenada,Clothes,Online,L,3/29/2016,673432147,4/5/2016,2392,109.28,35.84,261397.76,85729.28,175668.48 Sub-Saharan Africa,Malawi,Baby Food,Offline,H,11/15/2014,298654592,12/24/2014,7385,255.28,159.42,1885242.80,1177316.70,707926.10 Sub-Saharan Africa,Burundi,Fruits,Offline,L,5/5/2017,594441306,5/23/2017,7247,9.33,6.92,67614.51,50149.24,17465.27 Australia and Oceania,Fiji,Cosmetics,Online,C,10/24/2012,474903619,10/25/2012,3389,437.20,263.33,1481670.80,892425.37,589245.43 Central America and the Caribbean,Nicaragua,Vegetables,Offline,C,6/11/2010,724465358,7/16/2010,4253,154.06,90.93,655217.18,386725.29,268491.89 Sub-Saharan Africa,Djibouti,Fruits,Offline,L,11/19/2012,847862851,12/12/2012,314,9.33,6.92,2929.62,2172.88,756.74 Central America and the Caribbean,Guatemala,Office Supplies,Offline,C,6/28/2012,420144927,7/12/2012,9075,651.21,524.96,5909730.75,4764012.00,1145718.75 Europe,Slovenia,Cosmetics,Online,C,4/6/2010,436672914,4/22/2010,74,437.20,263.33,32352.80,19486.42,12866.38 Asia,Kazakhstan,Snacks,Online,M,1/16/2012,163120639,2/12/2012,9877,152.58,97.44,1507032.66,962414.88,544617.78 Sub-Saharan Africa,Kenya,Personal Care,Online,L,3/2/2017,285474431,3/8/2017,7083,81.73,56.67,578893.59,401393.61,177499.98 Central America and the Caribbean,Jamaica,Household,Offline,L,9/7/2014,660033118,9/11/2014,7322,668.27,502.54,4893072.94,3679597.88,1213475.06 Europe,Italy,Beverages,Offline,L,6/1/2017,763408029,7/3/2017,8255,47.45,31.79,391699.75,262426.45,129273.30 Middle East and North Africa,Yemen,Meat,Online,L,10/3/2012,142522990,11/13/2012,4575,421.89,364.69,1930146.75,1668456.75,261690.00 Europe,Germany,Fruits,Online,H,11/14/2011,664614331,12/29/2011,3005,9.33,6.92,28036.65,20794.60,7242.05 Middle East and North Africa,Afghanistan,Cereal,Offline,H,8/20/2015,667230880,10/5/2015,7300,205.70,117.11,1501610.00,854903.00,646707.00 Asia,Bangladesh,Personal Care,Online,M,11/6/2010,808233964,11/13/2010,3246,81.73,56.67,265295.58,183950.82,81344.76 Sub-Saharan Africa,Cape Verde,Personal Care,Offline,M,11/16/2011,915797412,12/22/2011,3660,81.73,56.67,299131.80,207412.20,91719.60 Sub-Saharan Africa,Sierra Leone,Meat,Online,H,6/4/2011,438407552,7/21/2011,3392,421.89,364.69,1431050.88,1237028.48,194022.40 Central America and the Caribbean,Cuba,Baby Food,Online,H,8/20/2014,694863212,10/5/2014,4321,255.28,159.42,1103064.88,688853.82,414211.06 Sub-Saharan Africa,The Gambia,Office Supplies,Offline,H,7/24/2012,824275720,7/24/2012,358,651.21,524.96,233133.18,187935.68,45197.50 Sub-Saharan Africa,Djibouti,Fruits,Online,H,4/4/2016,936068904,4/22/2016,2445,9.33,6.92,22811.85,16919.40,5892.45 Sub-Saharan Africa,Democratic Republic of the Congo,Meat,Offline,C,2/14/2015,759979093,3/6/2015,3557,421.89,364.69,1500662.73,1297202.33,203460.40 Europe,Czech Republic,Household,Offline,H,12/23/2010,996055114,1/4/2011,3698,668.27,502.54,2471262.46,1858392.92,612869.54 Asia,South Korea,Household,Online,H,4/12/2014,164658296,4/30/2014,4904,668.27,502.54,3277196.08,2464456.16,812739.92 Sub-Saharan Africa,Liberia,Household,Online,M,1/21/2010,456462466,3/9/2010,6242,668.27,502.54,4171341.34,3136854.68,1034486.66 Europe,Croatia,Meat,Online,H,9/6/2014,982453954,9/28/2014,8812,421.89,364.69,3717694.68,3213648.28,504046.40 Sub-Saharan Africa,Malawi,Fruits,Offline,M,7/9/2011,923931586,7/13/2011,743,9.33,6.92,6932.19,5141.56,1790.63 Europe,Bosnia and Herzegovina,Meat,Online,H,4/16/2015,882506692,5/5/2015,2196,421.89,364.69,926470.44,800859.24,125611.20 Europe,Andorra,Cosmetics,Offline,L,4/10/2015,630103099,5/9/2015,364,437.20,263.33,159140.80,95852.12,63288.68 Asia,Laos,Clothes,Offline,C,12/17/2016,458957135,12/27/2016,4470,109.28,35.84,488481.60,160204.80,328276.80 Europe,Liechtenstein,Beverages,Online,C,7/21/2015,731617629,8/19/2015,769,47.45,31.79,36489.05,24446.51,12042.54 Sub-Saharan Africa,Uganda,Cosmetics,Offline,M,11/17/2014,530945909,11/27/2014,7548,437.20,263.33,3299985.60,1987614.84,1312370.76 Central America and the Caribbean,El Salvador,Beverages,Online,H,1/21/2016,810115802,2/12/2016,123,47.45,31.79,5836.35,3910.17,1926.18 Europe,Iceland,Office Supplies,Offline,M,9/7/2013,342613637,10/22/2013,5844,651.21,524.96,3805671.24,3067866.24,737805.00 North America,Greenland,Baby Food,Offline,C,10/19/2014,672238242,12/2/2014,9089,255.28,159.42,2320239.92,1448968.38,871271.54 Europe,Albania,Snacks,Online,L,5/5/2012,263100945,5/5/2012,6271,152.58,97.44,956829.18,611046.24,345782.94 Middle East and North Africa,Algeria,Cereal,Online,H,9/10/2011,349625575,10/16/2011,832,205.70,117.11,171142.40,97435.52,73706.88 Central America and the Caribbean,Saint Vincent and the Grenadines,Household,Offline,L,9/17/2011,886548459,10/17/2011,8245,668.27,502.54,5509886.15,4143442.30,1366443.85 Central America and the Caribbean,Honduras,Household,Offline,H,2/12/2016,998918426,2/18/2016,1015,668.27,502.54,678294.05,510078.10,168215.95 Sub-Saharan Africa,Mali,Clothes,Online,M,7/16/2014,332096803,9/1/2014,3679,109.28,35.84,402041.12,131855.36,270185.76 Europe,Georgia,Beverages,Offline,M,8/14/2016,401757419,9/8/2016,7803,47.45,31.79,370252.35,248057.37,122194.98 Europe,Belarus,Snacks,Online,L,5/1/2010,543886601,5/28/2010,6987,152.58,97.44,1066076.46,680813.28,385263.18 Asia,Kazakhstan,Cereal,Online,L,3/22/2011,164783179,4/16/2011,1859,205.70,117.11,382396.30,217707.49,164688.81 Sub-Saharan Africa,Zimbabwe,Cosmetics,Offline,H,3/10/2013,991058480,3/17/2013,5083,437.20,263.33,2222287.60,1338506.39,883781.21 Central America and the Caribbean,Guatemala,Clothes,Online,C,12/24/2014,319636332,2/12/2015,6349,109.28,35.84,693818.72,227548.16,466270.56 Sub-Saharan Africa,Republic of the Congo,Baby Food,Offline,M,5/28/2016,467753064,7/8/2016,7381,255.28,159.42,1884221.68,1176679.02,707542.66 Middle East and North Africa,Pakistan,Meat,Online,M,7/22/2014,222957503,7/29/2014,6935,421.89,364.69,2925807.15,2529125.15,396682.00 Asia,Bangladesh,Fruits,Online,H,2/26/2015,693110978,4/7/2015,5796,9.33,6.92,54076.68,40108.32,13968.36 Europe,Croatia,Household,Online,C,8/22/2013,356387317,9/8/2013,1782,668.27,502.54,1190857.14,895526.28,295330.86 Europe,Cyprus,Personal Care,Online,C,1/30/2014,911272847,3/2/2014,4741,81.73,56.67,387481.93,268672.47,118809.46 Central America and the Caribbean,Barbados,Cosmetics,Online,C,4/4/2010,526566398,4/15/2010,1553,437.20,263.33,678971.60,408951.49,270020.11 Europe,San Marino,Fruits,Online,L,2/25/2012,591379296,2/27/2012,1130,9.33,6.92,10542.90,7819.60,2723.30 Sub-Saharan Africa,Swaziland,Beverages,Offline,M,11/20/2011,765135371,12/25/2011,9414,47.45,31.79,446694.30,299271.06,147423.24 Europe,United Kingdom,Personal Care,Offline,H,3/22/2010,327570950,3/27/2010,4378,81.73,56.67,357813.94,248101.26,109712.68 Europe,Russia,Fruits,Offline,L,10/6/2012,428734862,11/21/2012,1028,9.33,6.92,9591.24,7113.76,2477.48 Sub-Saharan Africa,Ethiopia,Office Supplies,Offline,M,1/16/2011,938988435,1/18/2011,6399,651.21,524.96,4167092.79,3359219.04,807873.75 Sub-Saharan Africa,Djibouti,Household,Offline,H,8/1/2016,899005496,8/12/2016,4559,668.27,502.54,3046642.93,2291079.86,755563.07 Sub-Saharan Africa,Comoros,Office Supplies,Offline,M,9/9/2011,769772374,9/29/2011,1606,651.21,524.96,1045843.26,843085.76,202757.50 Europe,Georgia,Cereal,Offline,C,10/17/2013,182587897,11/2/2013,671,205.70,117.11,138024.70,78580.81,59443.89 Middle East and North Africa,Morocco,Beverages,Online,M,2/13/2011,189063394,4/2/2011,6914,47.45,31.79,328069.30,219796.06,108273.24 Middle East and North Africa,Tunisia ,Fruits,Offline,L,11/17/2011,111122691,11/20/2011,2529,9.33,6.92,23595.57,17500.68,6094.89 Europe,Bosnia and Herzegovina,Cosmetics,Offline,M,3/14/2010,691002118,4/18/2010,1737,437.20,263.33,759416.40,457404.21,302012.19 Central America and the Caribbean,Haiti,Clothes,Online,L,8/21/2012,941250503,9/22/2012,5795,109.28,35.84,633277.60,207692.80,425584.80 Europe,Austria,Baby Food,Online,C,9/3/2011,394729173,10/20/2011,7989,255.28,159.42,2039431.92,1273606.38,765825.54 Sub-Saharan Africa,Senegal,Snacks,Offline,L,3/14/2012,454611957,4/3/2012,8635,152.58,97.44,1317528.30,841394.40,476133.90 Sub-Saharan Africa,Comoros,Cereal,Offline,H,8/12/2012,344385182,8/19/2012,83,205.70,117.11,17073.10,9720.13,7352.97 Central America and the Caribbean,Trinidad and Tobago,Meat,Offline,C,2/27/2016,257847678,2/27/2016,1713,421.89,364.69,722697.57,624713.97,97983.60 Europe,Iceland,Snacks,Online,C,12/28/2011,909110772,1/3/2012,4935,152.58,97.44,752982.30,480866.40,272115.90 Australia and Oceania,Marshall Islands,Household,Offline,H,11/4/2016,382598292,11/22/2016,8192,668.27,502.54,5474467.84,4116807.68,1357660.16 Europe,Denmark,Office Supplies,Online,H,8/28/2010,883046567,10/11/2010,1957,651.21,524.96,1274417.97,1027346.72,247071.25 Sub-Saharan Africa,Tanzania,Household,Online,C,1/26/2016,185504424,2/25/2016,3736,668.27,502.54,2496656.72,1877489.44,619167.28 Sub-Saharan Africa,South Sudan,Household,Offline,H,5/13/2011,185333192,6/17/2011,3065,668.27,502.54,2048247.55,1540285.10,507962.45 Australia and Oceania,Fiji,Snacks,Online,H,7/11/2017,148206698,7/16/2017,6510,152.58,97.44,993295.80,634334.40,358961.40 Central America and the Caribbean,Belize,Vegetables,Offline,C,3/8/2011,760111272,3/11/2011,2672,154.06,90.93,411648.32,242964.96,168683.36 Sub-Saharan Africa,Cote d'Ivoire,Fruits,Offline,M,8/31/2011,977345740,9/28/2011,7178,9.33,6.92,66970.74,49671.76,17298.98 Middle East and North Africa,Libya,Clothes,Online,C,8/26/2016,276521432,10/5/2016,7691,109.28,35.84,840472.48,275645.44,564827.04 Middle East and North Africa,Morocco,Clothes,Offline,C,7/15/2013,904562175,8/25/2013,8904,109.28,35.84,973029.12,319119.36,653909.76 Sub-Saharan Africa,Nigeria,Cereal,Offline,C,6/27/2013,228704297,8/10/2013,7539,205.70,117.11,1550772.30,882892.29,667880.01 Central America and the Caribbean,Barbados,Household,Online,L,5/18/2017,186496627,5/19/2017,7351,668.27,502.54,4912452.77,3694171.54,1218281.23 Sub-Saharan Africa,Guinea,Fruits,Online,M,1/3/2012,535800492,2/2/2012,4127,9.33,6.92,38504.91,28558.84,9946.07 Middle East and North Africa,Libya,Meat,Online,H,9/27/2011,204789721,10/28/2011,684,421.89,364.69,288572.76,249447.96,39124.80 North America,Mexico,Beverages,Online,L,11/9/2016,441950643,12/2/2016,1871,47.45,31.79,88778.95,59479.09,29299.86 Sub-Saharan Africa,Mauritius ,Cereal,Offline,M,5/9/2017,766082084,5/19/2017,9567,205.70,117.11,1967931.90,1120391.37,847540.53 Australia and Oceania,Palau,Office Supplies,Offline,M,11/10/2011,316295373,11/21/2011,7684,651.21,524.96,5003897.64,4033792.64,970105.00 Europe,Croatia,Vegetables,Online,H,6/3/2011,102014338,7/7/2011,7165,154.06,90.93,1103839.90,651513.45,452326.45 Asia,Mongolia,Baby Food,Offline,L,1/4/2013,752975308,2/21/2013,981,255.28,159.42,250429.68,156391.02,94038.66 Sub-Saharan Africa,Sudan,Household,Offline,C,11/19/2010,269227111,11/29/2010,9140,668.27,502.54,6107987.80,4593215.60,1514772.20 Middle East and North Africa,Lebanon,Meat,Offline,C,7/1/2015,771131074,8/14/2015,3676,421.89,364.69,1550867.64,1340600.44,210267.20 Australia and Oceania,Marshall Islands,Meat,Offline,C,11/15/2011,849361026,11/23/2011,3657,421.89,364.69,1542851.73,1333671.33,209180.40 Sub-Saharan Africa,South Africa,Personal Care,Online,C,5/21/2016,514903295,6/16/2016,182,81.73,56.67,14874.86,10313.94,4560.92 Middle East and North Africa,Egypt,Household,Online,H,5/27/2012,749056708,6/6/2012,1381,668.27,502.54,922880.87,694007.74,228873.13 Sub-Saharan Africa,Tanzania,Personal Care,Offline,C,8/23/2014,353432595,9/26/2014,7414,81.73,56.67,605946.22,420151.38,185794.84 Europe,Slovenia,Cosmetics,Offline,M,5/21/2012,899954783,5/31/2012,5474,437.20,263.33,2393232.80,1441468.42,951764.38 Europe,Croatia,Snacks,Online,C,2/15/2011,880859601,3/4/2011,4785,152.58,97.44,730095.30,466250.40,263844.90 Asia,Myanmar,Vegetables,Offline,H,8/17/2013,658695876,9/3/2013,1602,154.06,90.93,246804.12,145669.86,101134.26 Europe,Montenegro,Cereal,Online,L,2/27/2016,216324937,4/7/2016,4211,205.70,117.11,866202.70,493150.21,373052.49 Europe,Ireland,Personal Care,Online,L,4/1/2012,506920611,5/21/2012,7929,81.73,56.67,648037.17,449336.43,198700.74 Sub-Saharan Africa,Mauritania,Baby Food,Offline,M,8/31/2011,303969228,9/27/2011,104,255.28,159.42,26549.12,16579.68,9969.44 Asia,Japan,Snacks,Online,C,11/6/2013,251269614,12/16/2013,5117,152.58,97.44,780751.86,498600.48,282151.38 Middle East and North Africa,Syria,Cereal,Online,H,10/3/2011,612933099,10/22/2011,9380,205.70,117.11,1929466.00,1098491.80,830974.20 Asia,Bangladesh,Baby Food,Online,C,10/4/2010,823383510,11/6/2010,6333,255.28,159.42,1616688.24,1009606.86,607081.38 Sub-Saharan Africa,Kenya,Office Supplies,Online,C,4/16/2017,837357175,5/1/2017,1451,651.21,524.96,944905.71,761716.96,183188.75 Europe,Monaco,Office Supplies,Online,L,5/9/2012,679902923,6/14/2012,7239,651.21,524.96,4714109.19,3800185.44,913923.75 Sub-Saharan Africa,Democratic Republic of the Congo,Snacks,Offline,M,11/16/2015,896382081,12/16/2015,8232,152.58,97.44,1256038.56,802126.08,453912.48 Sub-Saharan Africa,Guinea,Personal Care,Offline,C,10/7/2014,302468478,10/25/2014,5999,81.73,56.67,490298.27,339963.33,150334.94 Central America and the Caribbean,Honduras,Cereal,Online,L,2/26/2012,934148442,4/4/2012,4138,205.70,117.11,851186.60,484601.18,366585.42 Sub-Saharan Africa,Burkina Faso,Vegetables,Online,H,1/5/2016,397720801,1/17/2016,3278,154.06,90.93,505008.68,298068.54,206940.14 Middle East and North Africa,Yemen,Personal Care,Offline,H,8/30/2012,419796884,9/28/2012,6082,81.73,56.67,497081.86,344666.94,152414.92 Asia,Myanmar,Meat,Offline,L,12/31/2015,997300517,1/13/2016,2240,421.89,364.69,945033.60,816905.60,128128.00 Sub-Saharan Africa,Djibouti,Office Supplies,Offline,L,9/8/2010,847468030,9/12/2010,3478,651.21,524.96,2264908.38,1825810.88,439097.50 Middle East and North Africa,Iran,Household,Online,M,7/14/2016,557848250,8/11/2016,8549,668.27,502.54,5713040.23,4296214.46,1416825.77 Europe,Belgium,Meat,Online,C,7/19/2016,336302506,8/14/2016,8240,421.89,364.69,3476373.60,3005045.60,471328.00 Europe,Greece,Cereal,Offline,M,9/28/2013,461004626,10/24/2013,368,205.70,117.11,75697.60,43096.48,32601.12 Europe,Vatican City,Meat,Online,C,3/6/2012,830440938,3/27/2012,4783,421.89,364.69,2017899.87,1744312.27,273587.60 Europe,Denmark,Snacks,Online,C,3/18/2013,513410270,4/28/2013,8363,152.58,97.44,1276026.54,814890.72,461135.82 Middle East and North Africa,Oman,Snacks,Offline,M,9/7/2011,899023950,10/5/2011,20,152.58,97.44,3051.60,1948.80,1102.80 Asia,Bhutan,Personal Care,Offline,C,11/9/2014,746705806,11/24/2014,5696,81.73,56.67,465534.08,322792.32,142741.76 Europe,Macedonia,Household,Offline,L,12/3/2015,236192166,1/19/2016,3366,668.27,502.54,2249396.82,1691549.64,557847.18 Central America and the Caribbean,The Bahamas,Beverages,Offline,H,11/28/2012,517531859,12/5/2012,8033,47.45,31.79,381165.85,255369.07,125796.78 Europe,Moldova ,Snacks,Offline,L,6/30/2012,561086213,8/11/2012,6734,152.58,97.44,1027473.72,656160.96,371312.76 Europe,Luxembourg,Cereal,Online,L,1/24/2011,307529056,3/2/2011,3536,205.70,117.11,727355.20,414100.96,313254.24 Sub-Saharan Africa,Malawi,Baby Food,Offline,L,8/18/2013,217846715,9/26/2013,4539,255.28,159.42,1158715.92,723607.38,435108.54 Middle East and North Africa,Turkey,Cosmetics,Offline,H,12/1/2014,823338019,1/6/2015,2871,437.20,263.33,1255201.20,756020.43,499180.77 Europe,Estonia,Personal Care,Offline,C,9/17/2010,475614297,10/14/2010,3695,81.73,56.67,301992.35,209395.65,92596.70 Asia,Bangladesh,Snacks,Online,H,10/19/2016,296599376,12/8/2016,9201,152.58,97.44,1403888.58,896545.44,507343.14 Asia,Myanmar,Snacks,Online,C,3/3/2012,128529584,3/8/2012,3615,152.58,97.44,551576.70,352245.60,199331.10 Sub-Saharan Africa,Namibia,Clothes,Online,M,12/13/2010,783953750,1/17/2011,8191,109.28,35.84,895112.48,293565.44,601547.04 Europe,Georgia,Meat,Offline,C,3/9/2013,895733201,4/18/2013,6214,421.89,364.69,2621624.46,2266183.66,355440.80 Middle East and North Africa,Egypt,Cereal,Offline,C,3/16/2016,967041766,3/27/2016,8003,205.70,117.11,1646217.10,937231.33,708985.77 Sub-Saharan Africa,Burundi,Vegetables,Offline,L,10/30/2010,221365773,11/3/2010,5906,154.06,90.93,909878.36,537032.58,372845.78 Sub-Saharan Africa,Cameroon,Baby Food,Online,C,6/12/2015,652504050,6/23/2015,9303,255.28,159.42,2374869.84,1483084.26,891785.58 Sub-Saharan Africa,South Sudan,Household,Offline,C,8/22/2011,274567925,9/30/2011,9605,668.27,502.54,6418733.35,4826896.70,1591836.65 Europe,Czech Republic,Cereal,Online,M,2/23/2016,771981227,3/24/2016,5255,205.70,117.11,1080953.50,615413.05,465540.45 Australia and Oceania,Tuvalu,Clothes,Online,C,6/21/2016,749480283,8/3/2016,6726,109.28,35.84,735017.28,241059.84,493957.44 Middle East and North Africa,Syria,Baby Food,Online,H,7/18/2012,682113921,8/11/2012,1522,255.28,159.42,388536.16,242637.24,145898.92 Europe,Czech Republic,Vegetables,Offline,C,12/7/2012,665243470,1/7/2013,9181,154.06,90.93,1414424.86,834828.33,579596.53 Sub-Saharan Africa,South Sudan,Baby Food,Offline,M,11/30/2015,864542758,12/13/2015,6269,255.28,159.42,1600350.32,999403.98,600946.34 Europe,Malta,Fruits,Online,L,3/30/2013,165998113,4/28/2013,1385,9.33,6.92,12922.05,9584.20,3337.85 Sub-Saharan Africa,Tanzania,Cosmetics,Online,L,9/9/2016,225908362,10/9/2016,159,437.20,263.33,69514.80,41869.47,27645.33 Asia,Nepal,Clothes,Online,C,5/12/2016,520884835,6/7/2016,253,109.28,35.84,27647.84,9067.52,18580.32 Middle East and North Africa,Qatar,Cereal,Online,H,10/16/2014,597851359,11/3/2014,6358,205.70,117.11,1307840.60,744585.38,563255.22 Europe,Italy,Cereal,Offline,C,7/30/2015,524044263,8/20/2015,5198,205.70,117.11,1069228.60,608737.78,460490.82 Asia,North Korea,Meat,Offline,H,1/8/2012,437012374,2/14/2012,528,421.89,364.69,222757.92,192556.32,30201.60 Central America and the Caribbean,El Salvador,Cereal,Offline,L,8/21/2013,994617021,9/20/2013,8134,205.70,117.11,1673163.80,952572.74,720591.06 Sub-Saharan Africa,Lesotho,Personal Care,Offline,H,1/28/2012,225032031,2/1/2012,834,81.73,56.67,68162.82,47262.78,20900.04 Europe,Andorra,Office Supplies,Online,L,3/11/2015,276743733,4/7/2015,3475,651.21,524.96,2262954.75,1824236.00,438718.75 Asia,Taiwan,Vegetables,Online,C,12/21/2012,668550956,12/23/2012,7939,154.06,90.93,1223082.34,721893.27,501189.07 Middle East and North Africa,Saudi Arabia,Personal Care,Online,L,8/17/2011,539565026,8/17/2011,8136,81.73,56.67,664955.28,461067.12,203888.16 Australia and Oceania,New Zealand,Personal Care,Online,M,8/17/2014,899209773,9/14/2014,5009,81.73,56.67,409385.57,283860.03,125525.54 Europe,Switzerland,Personal Care,Offline,C,5/17/2011,577221524,5/20/2011,1531,81.73,56.67,125128.63,86761.77,38366.86 Europe,Spain,Beverages,Online,C,4/8/2011,273649108,5/14/2011,7707,47.45,31.79,365697.15,245005.53,120691.62 Europe,Luxembourg,Office Supplies,Offline,C,3/10/2017,308853852,4/27/2017,5573,651.21,524.96,3629193.33,2925602.08,703591.25 Middle East and North Africa,Algeria,Office Supplies,Offline,C,3/1/2014,173509585,4/18/2014,4197,651.21,524.96,2733128.37,2203257.12,529871.25 Europe,Slovenia,Clothes,Offline,C,12/29/2010,778602635,1/7/2011,4677,109.28,35.84,511102.56,167623.68,343478.88 Central America and the Caribbean,Grenada,Vegetables,Online,H,10/5/2013,405431830,11/18/2013,5143,154.06,90.93,792330.58,467652.99,324677.59 North America,United States of America,Beverages,Online,H,6/21/2014,555608499,7/18/2014,5756,47.45,31.79,273122.20,182983.24,90138.96 Sub-Saharan Africa,Guinea,Vegetables,Online,L,7/18/2017,101056468,8/7/2017,3709,154.06,90.93,571408.54,337259.37,234149.17 Central America and the Caribbean,Jamaica,Cereal,Offline,M,5/2/2013,234012067,5/3/2013,8226,205.70,117.11,1692088.20,963346.86,728741.34 Sub-Saharan Africa,Niger,Beverages,Offline,L,3/5/2012,417024123,4/8/2012,5560,47.45,31.79,263822.00,176752.40,87069.60 Asia,India,Fruits,Offline,M,5/2/2010,632953965,6/18/2010,3999,9.33,6.92,37310.67,27673.08,9637.59 Middle East and North Africa,Pakistan,Office Supplies,Online,L,6/29/2016,934975421,7/3/2016,8859,651.21,524.96,5769069.39,4650620.64,1118448.75 Europe,Croatia,Beverages,Online,M,2/11/2010,996574819,3/22/2010,7490,47.45,31.79,355400.50,238107.10,117293.40 Central America and the Caribbean,Guatemala,Beverages,Online,M,5/16/2013,561550986,5/31/2013,4271,47.45,31.79,202658.95,135775.09,66883.86 Europe,Andorra,Personal Care,Offline,C,8/23/2011,794015252,9/7/2011,5613,81.73,56.67,458750.49,318088.71,140661.78 Sub-Saharan Africa,Zambia,Cereal,Online,C,4/18/2010,228391444,4/26/2010,4959,205.70,117.11,1020066.30,580748.49,439317.81 Australia and Oceania,Samoa ,Vegetables,Online,M,10/10/2015,619415891,11/7/2015,7782,154.06,90.93,1198894.92,707617.26,491277.66 Europe,Croatia,Office Supplies,Online,L,8/22/2016,192137420,10/5/2016,6587,651.21,524.96,4289520.27,3457911.52,831608.75 Sub-Saharan Africa,Cape Verde,Cereal,Online,L,2/10/2010,391917359,3/22/2010,5911,205.70,117.11,1215892.70,692237.21,523655.49 Middle East and North Africa,Syria,Vegetables,Online,L,5/22/2013,934429538,7/1/2013,7320,154.06,90.93,1127719.20,665607.60,462111.60 Asia,Bangladesh,Personal Care,Offline,C,6/14/2014,255660283,7/12/2014,4414,81.73,56.67,360756.22,250141.38,110614.84 Europe,Iceland,Clothes,Offline,C,9/13/2013,461908423,10/12/2013,7822,109.28,35.84,854788.16,280340.48,574447.68 Sub-Saharan Africa,Cameroon,Cosmetics,Offline,L,8/10/2012,579785287,9/8/2012,205,437.20,263.33,89626.00,53982.65,35643.35 Central America and the Caribbean,Panama,Meat,Offline,L,6/28/2017,606214702,7/3/2017,1257,421.89,364.69,530315.73,458415.33,71900.40 Sub-Saharan Africa,Mali,Baby Food,Offline,M,1/5/2013,158432996,2/20/2013,2699,255.28,159.42,689000.72,430274.58,258726.14 Middle East and North Africa,Jordan,Cereal,Online,C,5/31/2011,723988997,6/27/2011,3288,205.70,117.11,676341.60,385057.68,291283.92 Central America and the Caribbean,Trinidad and Tobago,Beverages,Offline,C,11/5/2010,710744035,12/16/2010,3809,47.45,31.79,180737.05,121088.11,59648.94 Europe,San Marino,Snacks,Offline,H,4/25/2014,396871936,5/8/2014,2080,152.58,97.44,317366.40,202675.20,114691.20 Sub-Saharan Africa,Madagascar,Household,Offline,M,10/1/2010,580859029,11/10/2010,7949,668.27,502.54,5312078.23,3994690.46,1317387.77 Middle East and North Africa,Bahrain,Household,Offline,H,8/22/2016,331504142,10/9/2016,8297,668.27,502.54,5544636.19,4169574.38,1375061.81 Asia,Cambodia,Personal Care,Online,M,9/9/2011,137918603,10/10/2011,2034,81.73,56.67,166238.82,115266.78,50972.04 Middle East and North Africa,Iraq,Office Supplies,Online,C,9/23/2010,559526240,10/16/2010,5103,651.21,524.96,3323124.63,2678870.88,644253.75 Europe,Iceland,Snacks,Offline,M,7/9/2014,876063382,7/26/2014,5478,152.58,97.44,835833.24,533776.32,302056.92 Sub-Saharan Africa,Chad,Household,Online,C,7/12/2013,437578856,8/28/2013,8162,668.27,502.54,5454419.74,4101731.48,1352688.26 Middle East and North Africa,Egypt,Office Supplies,Offline,M,6/4/2014,914433991,6/13/2014,194,651.21,524.96,126334.74,101842.24,24492.50 Middle East and North Africa,Azerbaijan,Household,Offline,H,8/4/2013,447302615,9/13/2013,5639,668.27,502.54,3768374.53,2833823.06,934551.47 Australia and Oceania,Federated States of Micronesia,Snacks,Online,M,1/18/2016,397171056,2/23/2016,596,152.58,97.44,90937.68,58074.24,32863.44 Middle East and North Africa,Oman,Vegetables,Offline,C,7/5/2016,395338141,8/8/2016,8196,154.06,90.93,1262675.76,745262.28,517413.48 Europe,United Kingdom,Meat,Online,L,10/10/2010,593415200,11/13/2010,3600,421.89,364.69,1518804.00,1312884.00,205920.00 Sub-Saharan Africa,Mali,Personal Care,Offline,H,8/16/2014,313326060,9/8/2014,8999,81.73,56.67,735488.27,509973.33,225514.94 Australia and Oceania,East Timor,Household,Offline,C,8/13/2014,297307050,8/17/2014,8618,668.27,502.54,5759150.86,4330889.72,1428261.14 Asia,Sri Lanka,Beverages,Offline,L,4/22/2017,457906997,5/7/2017,3711,47.45,31.79,176086.95,117972.69,58114.26 Europe,San Marino,Fruits,Offline,H,3/5/2015,327987229,3/15/2015,7565,9.33,6.92,70581.45,52349.80,18231.65 North America,Mexico,Personal Care,Online,M,2/10/2013,410721576,3/13/2013,496,81.73,56.67,40538.08,28108.32,12429.76 Sub-Saharan Africa,Republic of the Congo,Clothes,Offline,L,2/2/2017,829596364,3/4/2017,4854,109.28,35.84,530445.12,173967.36,356477.76 Sub-Saharan Africa,Lesotho,Personal Care,Offline,C,3/16/2015,878410422,3/16/2015,19,81.73,56.67,1552.87,1076.73,476.14 Europe,Netherlands,Clothes,Online,M,10/6/2011,371275079,11/24/2011,7401,109.28,35.84,808781.28,265251.84,543529.44 Sub-Saharan Africa,Ghana,Clothes,Online,M,12/4/2015,992614161,12/23/2015,5443,109.28,35.84,594811.04,195077.12,399733.92 Sub-Saharan Africa,Republic of the Congo,Fruits,Offline,H,3/11/2015,447163999,3/31/2015,4619,9.33,6.92,43095.27,31963.48,11131.79 Central America and the Caribbean,Trinidad and Tobago,Personal Care,Online,L,1/25/2017,109973418,3/12/2017,2433,81.73,56.67,198849.09,137878.11,60970.98 Sub-Saharan Africa,Niger,Cosmetics,Offline,C,12/25/2014,976403748,12/31/2014,8422,437.20,263.33,3682098.40,2217765.26,1464333.14 Sub-Saharan Africa,Sudan,Office Supplies,Offline,L,10/9/2014,512128818,11/27/2014,9153,651.21,524.96,5960525.13,4804958.88,1155566.25 Europe,Finland,Vegetables,Offline,L,10/11/2015,303134953,11/13/2015,3224,154.06,90.93,496689.44,293158.32,203531.12 Asia,Thailand,Cosmetics,Online,H,8/14/2014,205720984,8/23/2014,6266,437.20,263.33,2739495.20,1650025.78,1089469.42 Asia,Kazakhstan,Beverages,Online,C,7/18/2016,596498239,8/27/2016,5939,47.45,31.79,281805.55,188800.81,93004.74 Europe,Bosnia and Herzegovina,Household,Offline,C,7/9/2016,122390544,8/2/2016,6937,668.27,502.54,4635788.99,3486119.98,1149669.01 Australia and Oceania,Tuvalu,Fruits,Online,H,7/27/2010,650634229,8/23/2010,5982,9.33,6.92,55812.06,41395.44,14416.62 Central America and the Caribbean,El Salvador,Meat,Offline,H,9/17/2014,518778121,11/6/2014,6829,421.89,364.69,2881086.81,2490468.01,390618.80 Europe,Slovakia,Cereal,Online,M,9/29/2015,384683549,10/7/2015,5265,205.70,117.11,1083010.50,616584.15,466426.35 Europe,Moldova ,Snacks,Offline,L,11/20/2012,976524341,11/25/2012,4108,152.58,97.44,626798.64,400283.52,226515.12 Asia,Maldives,Cosmetics,Online,L,12/30/2013,842786824,1/8/2014,8205,437.20,263.33,3587226.00,2160622.65,1426603.35 Europe,San Marino,Clothes,Offline,C,8/21/2016,402269828,9/14/2016,9436,109.28,35.84,1031166.08,338186.24,692979.84 Central America and the Caribbean,Barbados,Beverages,Online,M,11/13/2011,594084680,12/1/2011,1713,47.45,31.79,81281.85,54456.27,26825.58 Sub-Saharan Africa,Benin,Cereal,Offline,H,9/25/2010,627655208,11/14/2010,5979,205.70,117.11,1229880.30,700200.69,529679.61 Asia,Bangladesh,Office Supplies,Online,M,3/18/2010,232717740,4/24/2010,5206,651.21,524.96,3390199.26,2732941.76,657257.50 Middle East and North Africa,Iran,Fruits,Online,M,2/14/2012,109321105,3/25/2012,9399,9.33,6.92,87692.67,65041.08,22651.59 Sub-Saharan Africa,Cameroon,Personal Care,Online,H,10/12/2011,577826631,11/10/2011,595,81.73,56.67,48629.35,33718.65,14910.70 Europe,Moldova ,Personal Care,Online,M,12/4/2016,228908145,12/18/2016,7862,81.73,56.67,642561.26,445539.54,197021.72 Middle East and North Africa,Iran,Cosmetics,Online,H,8/24/2013,873551976,9/12/2013,2297,437.20,263.33,1004248.40,604869.01,399379.39 Asia,Philippines,Cosmetics,Offline,L,8/5/2015,793056952,8/10/2015,2031,437.20,263.33,887953.20,534823.23,353129.97 Middle East and North Africa,United Arab Emirates,Office Supplies,Offline,M,10/9/2014,589034402,11/26/2014,7224,651.21,524.96,4704341.04,3792311.04,912030.00 Asia,Taiwan,Household,Offline,H,8/10/2015,933408153,8/18/2015,5070,668.27,502.54,3388128.90,2547877.80,840251.10 Australia and Oceania,Vanuatu,Personal Care,Online,C,1/6/2016,318414533,1/20/2016,4791,81.73,56.67,391568.43,271505.97,120062.46 Central America and the Caribbean,Saint Vincent and the Grenadines,Clothes,Offline,M,3/13/2011,906602370,4/11/2011,2643,109.28,35.84,288827.04,94725.12,194101.92 Sub-Saharan Africa,Cameroon,Meat,Offline,M,7/22/2012,880832993,8/23/2012,6912,421.89,364.69,2916103.68,2520737.28,395366.40 Asia,Turkmenistan,Meat,Online,C,8/20/2013,294280230,9/27/2013,2915,421.89,364.69,1229809.35,1063071.35,166738.00 Sub-Saharan Africa,Sudan,Beverages,Offline,C,8/12/2016,620430409,9/9/2016,8000,47.45,31.79,379600.00,254320.00,125280.00 Middle East and North Africa,Saudi Arabia,Cosmetics,Online,H,5/15/2013,703082358,6/2/2013,6549,437.20,263.33,2863222.80,1724548.17,1138674.63 Europe,Iceland,Cosmetics,Offline,H,1/1/2012,806347405,2/10/2012,4971,437.20,263.33,2173321.20,1309013.43,864307.77 Sub-Saharan Africa,Swaziland,Vegetables,Online,M,4/23/2010,364649379,5/5/2010,6709,154.06,90.93,1033588.54,610049.37,423539.17 Middle East and North Africa,Qatar,Office Supplies,Online,H,9/23/2014,232724606,10/12/2014,7238,651.21,524.96,4713457.98,3799660.48,913797.50 Middle East and North Africa,United Arab Emirates,Personal Care,Offline,L,10/30/2013,435621917,11/29/2013,9061,81.73,56.67,740555.53,513486.87,227068.66 Sub-Saharan Africa,Equatorial Guinea,Personal Care,Offline,M,5/24/2012,618702638,6/22/2012,6714,81.73,56.67,548735.22,380482.38,168252.84 Sub-Saharan Africa,Lesotho,Fruits,Online,L,6/26/2012,497640597,8/4/2012,1766,9.33,6.92,16476.78,12220.72,4256.06 Europe,Norway,Vegetables,Offline,L,3/22/2017,308422124,5/7/2017,7815,154.06,90.93,1203978.90,710617.95,493360.95 Asia,Uzbekistan,Office Supplies,Online,H,11/12/2011,357346045,12/4/2011,5491,651.21,524.96,3575794.11,2882555.36,693238.75 Middle East and North Africa,Egypt,Baby Food,Online,M,1/10/2013,571023690,1/17/2013,7454,255.28,159.42,1902857.12,1188316.68,714540.44 Middle East and North Africa,Somalia,Household,Online,C,11/18/2011,946378886,12/13/2011,3398,668.27,502.54,2270781.46,1707630.92,563150.54 Australia and Oceania,Marshall Islands,Clothes,Offline,M,10/25/2015,200647962,11/9/2015,5046,109.28,35.84,551426.88,180848.64,370578.24 Middle East and North Africa,Yemen,Household,Offline,M,5/4/2014,721379745,5/8/2014,1152,668.27,502.54,769847.04,578926.08,190920.96 Asia,Mongolia,Meat,Online,H,3/9/2013,916435563,4/11/2013,2503,421.89,364.69,1055990.67,912819.07,143171.60 Central America and the Caribbean,Saint Vincent and the Grenadines,Household,Offline,H,5/13/2015,163989245,6/11/2015,6917,668.27,502.54,4622423.59,3476069.18,1146354.41 Asia,Thailand,Baby Food,Offline,M,5/13/2017,162527120,6/18/2017,4241,255.28,159.42,1082642.48,676100.22,406542.26 Asia,South Korea,Household,Offline,L,12/20/2012,880848014,1/21/2013,1357,668.27,502.54,906842.39,681946.78,224895.61 Sub-Saharan Africa,Sudan,Meat,Online,C,3/1/2012,108063256,3/13/2012,7174,421.89,364.69,3026638.86,2616286.06,410352.80 Europe,Malta,Meat,Offline,H,8/24/2014,203596675,9/1/2014,7635,421.89,364.69,3221130.15,2784408.15,436722.00 Europe,Latvia,Fruits,Offline,L,8/5/2013,447184598,8/20/2013,715,9.33,6.92,6670.95,4947.80,1723.15 Sub-Saharan Africa,Zimbabwe,Household,Online,C,8/15/2014,188875854,8/30/2014,1417,668.27,502.54,946938.59,712099.18,234839.41 Australia and Oceania,Samoa ,Cosmetics,Offline,M,10/28/2016,199031770,11/2/2016,6778,437.20,263.33,2963341.60,1784850.74,1178490.86 Australia and Oceania,Palau,Office Supplies,Online,H,8/4/2016,418326175,8/25/2016,866,651.21,524.96,563947.86,454615.36,109332.50 Middle East and North Africa,Bahrain,Clothes,Online,H,5/13/2011,407745397,5/23/2011,9779,109.28,35.84,1068649.12,350479.36,718169.76 Middle East and North Africa,Syria,Clothes,Offline,C,1/3/2011,698588263,1/12/2011,6646,109.28,35.84,726274.88,238192.64,488082.24 Sub-Saharan Africa,Ghana,Personal Care,Offline,L,4/24/2011,542466104,5/12/2011,6630,81.73,56.67,541869.90,375722.10,166147.80 Sub-Saharan Africa,Burundi,Personal Care,Offline,H,12/2/2012,161302745,12/27/2012,1922,81.73,56.67,157085.06,108919.74,48165.32 Sub-Saharan Africa,Niger,Clothes,Offline,M,7/14/2017,297334516,8/14/2017,6745,109.28,35.84,737093.60,241740.80,495352.80 Europe,Norway,Vegetables,Online,H,7/25/2016,863110244,8/19/2016,2356,154.06,90.93,362965.36,214231.08,148734.28 Sub-Saharan Africa,Benin,Cosmetics,Offline,C,1/22/2010,491491258,2/1/2010,2040,437.20,263.33,891888.00,537193.20,354694.80 Australia and Oceania,Solomon Islands,Fruits,Online,H,6/29/2010,585651385,7/27/2010,6114,9.33,6.92,57043.62,42308.88,14734.74 Sub-Saharan Africa,Mauritania,Office Supplies,Offline,L,4/2/2016,369076955,5/5/2016,6927,651.21,524.96,4510931.67,3636397.92,874533.75 Australia and Oceania,Federated States of Micronesia,Office Supplies,Online,M,6/10/2015,935566794,6/27/2015,3860,651.21,524.96,2513670.60,2026345.60,487325.00 Asia,Malaysia,Beverages,Offline,H,5/11/2012,299232232,6/18/2012,8322,47.45,31.79,394878.90,264556.38,130322.52 Europe,Albania,Household,Offline,M,3/3/2016,144497096,4/10/2016,8757,668.27,502.54,5852040.39,4400742.78,1451297.61 Europe,Sweden,Beverages,Offline,L,5/20/2014,876097714,6/14/2014,5637,47.45,31.79,267475.65,179200.23,88275.42 Asia,Turkmenistan,Office Supplies,Offline,L,6/29/2014,269082915,8/14/2014,6469,651.21,524.96,4212677.49,3395966.24,816711.25 Europe,Liechtenstein,Fruits,Offline,H,7/2/2017,218814027,7/10/2017,788,9.33,6.92,7352.04,5452.96,1899.08 Australia and Oceania,Nauru,Baby Food,Offline,L,2/7/2014,890964877,2/18/2014,5161,255.28,159.42,1317500.08,822766.62,494733.46 Europe,Cyprus,Personal Care,Offline,C,3/19/2011,271521794,4/3/2011,8188,81.73,56.67,669205.24,464013.96,205191.28 Europe,Macedonia,Office Supplies,Offline,C,1/6/2013,916783607,1/23/2013,5497,651.21,524.96,3579701.37,2885705.12,693996.25 Asia,South Korea,Vegetables,Online,M,3/14/2017,503361642,4/15/2017,4750,154.06,90.93,731785.00,431917.50,299867.50 Europe,Montenegro,Office Supplies,Online,C,2/24/2011,378179728,3/4/2011,641,651.21,524.96,417425.61,336499.36,80926.25 Sub-Saharan Africa,Angola,Personal Care,Online,C,8/9/2013,608474195,8/19/2013,9891,81.73,56.67,808391.43,560522.97,247868.46 Middle East and North Africa,Lebanon,Household,Online,M,4/20/2010,431793868,5/31/2010,6256,668.27,502.54,4180697.12,3143890.24,1036806.88 Europe,Montenegro,Fruits,Offline,M,10/1/2010,506000077,10/15/2010,5522,9.33,6.92,51520.26,38212.24,13308.02 Asia,Turkmenistan,Fruits,Offline,M,3/4/2014,659266650,4/8/2014,507,9.33,6.92,4730.31,3508.44,1221.87 Australia and Oceania,Kiribati,Cereal,Online,H,4/11/2013,340079915,4/30/2013,6059,205.70,117.11,1246336.30,709569.49,536766.81 Sub-Saharan Africa,Uganda,Office Supplies,Offline,H,3/16/2013,867238700,4/8/2013,4058,651.21,524.96,2642610.18,2130287.68,512322.50 Australia and Oceania,New Zealand,Office Supplies,Offline,L,7/31/2012,479854333,8/14/2012,8415,651.21,524.96,5479932.15,4417538.40,1062393.75 Europe,Montenegro,Clothes,Offline,C,11/21/2014,187350642,1/10/2015,73,109.28,35.84,7977.44,2616.32,5361.12 Central America and the Caribbean,Antigua and Barbuda ,Office Supplies,Online,H,2/3/2017,619463956,3/25/2017,2005,651.21,524.96,1305676.05,1052544.80,253131.25 Sub-Saharan Africa,Zimbabwe,Snacks,Online,H,6/13/2013,676243102,7/5/2013,4216,152.58,97.44,643277.28,410807.04,232470.24 Asia,China,Baby Food,Online,C,6/2/2014,678049409,7/11/2014,8743,255.28,159.42,2231913.04,1393809.06,838103.98 Sub-Saharan Africa,Ghana,Baby Food,Online,C,8/3/2012,115556704,8/13/2012,4652,255.28,159.42,1187562.56,741621.84,445940.72 Australia and Oceania,Australia,Clothes,Offline,L,10/8/2016,799751317,10/16/2016,3042,109.28,35.84,332429.76,109025.28,223404.48 Central America and the Caribbean,Trinidad and Tobago,Cosmetics,Offline,H,4/29/2010,111932075,6/14/2010,2043,437.20,263.33,893199.60,537983.19,355216.41 Asia,Japan,Cereal,Online,H,7/18/2015,453710305,9/3/2015,1817,205.70,117.11,373756.90,212788.87,160968.03 Europe,Ukraine,Fruits,Online,H,2/20/2014,697009837,3/16/2014,9555,9.33,6.92,89148.15,66120.60,23027.55 Europe,Monaco,Fruits,Online,C,8/7/2011,234066998,8/11/2011,4481,9.33,6.92,41807.73,31008.52,10799.21 Europe,United Kingdom,Household,Offline,L,9/10/2010,327430617,9/12/2010,2851,668.27,502.54,1905237.77,1432741.54,472496.23 Europe,Lithuania,Baby Food,Online,L,4/3/2015,959962022,5/19/2015,2950,255.28,159.42,753076.00,470289.00,282787.00 Asia,Philippines,Clothes,Online,M,4/3/2011,384835040,5/23/2011,95,109.28,35.84,10381.60,3404.80,6976.80 Europe,Switzerland,Cosmetics,Online,L,1/5/2016,975536000,2/19/2016,1636,437.20,263.33,715259.20,430807.88,284451.32 Australia and Oceania,East Timor,Personal Care,Online,M,11/3/2013,675863730,12/22/2013,1952,81.73,56.67,159536.96,110619.84,48917.12 North America,Greenland,Baby Food,Online,M,11/1/2012,649929559,12/14/2012,7454,255.28,159.42,1902857.12,1188316.68,714540.44 Australia and Oceania,Australia,Clothes,Offline,H,10/17/2010,332157313,12/1/2010,1585,109.28,35.84,173208.80,56806.40,116402.40 North America,United States of America,Clothes,Online,M,2/26/2014,577283322,4/5/2014,9818,109.28,35.84,1072911.04,351877.12,721033.92 Middle East and North Africa,Yemen,Baby Food,Offline,M,6/28/2011,510356414,8/11/2011,4659,255.28,159.42,1189349.52,742737.78,446611.74 Sub-Saharan Africa,Niger,Fruits,Offline,M,2/25/2015,676737916,4/12/2015,643,9.33,6.92,5999.19,4449.56,1549.63 Europe,Kosovo,Office Supplies,Online,H,1/20/2012,792101657,2/5/2012,9337,651.21,524.96,6080347.77,4901551.52,1178796.25 Australia and Oceania,New Zealand,Cosmetics,Online,L,11/22/2012,192433965,1/3/2013,4341,437.20,263.33,1897885.20,1143115.53,754769.67 Australia and Oceania,New Zealand,Cosmetics,Offline,L,7/2/2010,984033668,8/16/2010,6284,437.20,263.33,2747364.80,1654765.72,1092599.08 Sub-Saharan Africa,Comoros,Beverages,Online,M,12/2/2013,393512094,12/15/2013,7828,47.45,31.79,371438.60,248852.12,122586.48 Sub-Saharan Africa,Zambia,Baby Food,Online,L,4/27/2014,217793071,5/20/2014,8664,255.28,159.42,2211745.92,1381214.88,830531.04 Middle East and North Africa,Afghanistan,Household,Offline,L,7/7/2011,974112927,7/19/2011,517,668.27,502.54,345495.59,259813.18,85682.41 Europe,Lithuania,Office Supplies,Online,M,3/2/2010,550020492,3/11/2010,2141,651.21,524.96,1394240.61,1123939.36,270301.25 Central America and the Caribbean,Barbados,Vegetables,Offline,C,1/1/2016,953377091,1/3/2016,4322,154.06,90.93,665847.32,392999.46,272847.86 Sub-Saharan Africa,Sudan,Clothes,Offline,M,11/18/2016,662356555,12/11/2016,4879,109.28,35.84,533177.12,174863.36,358313.76 Europe,United Kingdom,Meat,Online,M,11/18/2016,475445210,11/28/2016,3658,421.89,364.69,1543273.62,1334036.02,209237.60 Asia,Brunei,Beverages,Offline,L,5/6/2017,361441886,6/21/2017,7541,47.45,31.79,357820.45,239728.39,118092.06 Sub-Saharan Africa,Mali,Household,Online,L,2/12/2013,809457910,3/6/2013,5438,668.27,502.54,3634052.26,2732812.52,901239.74 Sub-Saharan Africa,Democratic Republic of the Congo,Clothes,Online,L,6/18/2011,578917109,7/10/2011,3292,109.28,35.84,359749.76,117985.28,241764.48 Europe,Serbia,Snacks,Offline,H,2/20/2013,749555814,4/2/2013,9077,152.58,97.44,1384968.66,884462.88,500505.78 Middle East and North Africa,Israel,Snacks,Offline,H,3/8/2016,671422851,3/19/2016,7797,152.58,97.44,1189666.26,759739.68,429926.58 Sub-Saharan Africa,Nigeria,Cereal,Offline,L,2/16/2012,214879548,3/16/2012,6488,205.70,117.11,1334581.60,759809.68,574771.92 Sub-Saharan Africa,Niger,Vegetables,Offline,M,6/29/2012,220599734,7/30/2012,9218,154.06,90.93,1420125.08,838192.74,581932.34 Europe,Montenegro,Beverages,Offline,L,9/22/2014,249569737,10/5/2014,2086,47.45,31.79,98980.70,66313.94,32666.76 Europe,Denmark,Office Supplies,Offline,M,7/19/2013,833088386,8/2/2013,8221,651.21,524.96,5353597.41,4315696.16,1037901.25 Asia,Maldives,Snacks,Online,H,4/28/2012,322767007,5/30/2012,2785,152.58,97.44,424935.30,271370.40,153564.90 Central America and the Caribbean,Honduras,Clothes,Online,L,9/9/2011,740529429,9/14/2011,7969,109.28,35.84,870852.32,285608.96,585243.36 Sub-Saharan Africa,Malawi,Baby Food,Offline,C,5/9/2013,128611981,6/13/2013,7998,255.28,159.42,2041729.44,1275041.16,766688.28 Sub-Saharan Africa,Senegal,Snacks,Offline,C,4/18/2016,199563491,4/29/2016,4127,152.58,97.44,629697.66,402134.88,227562.78 Sub-Saharan Africa,Zimbabwe,Fruits,Offline,C,12/29/2012,486245286,2/5/2013,9640,9.33,6.92,89941.20,66708.80,23232.40 Europe,Serbia,Cereal,Offline,M,12/2/2015,591831195,12/5/2015,4857,205.70,117.11,999084.90,568803.27,430281.63 Australia and Oceania,Papua New Guinea,Fruits,Online,H,11/21/2015,639807546,12/5/2015,2126,9.33,6.92,19835.58,14711.92,5123.66 Middle East and North Africa,Egypt,Office Supplies,Offline,H,2/23/2016,823973166,3/6/2016,825,651.21,524.96,537248.25,433092.00,104156.25 Sub-Saharan Africa,Ghana,Vegetables,Online,H,6/6/2013,958439385,6/10/2013,2368,154.06,90.93,364814.08,215322.24,149491.84 Sub-Saharan Africa,Nigeria,Household,Offline,L,11/22/2016,927630031,12/26/2016,5195,668.27,502.54,3471662.65,2610695.30,860967.35 Europe,Georgia,Snacks,Offline,M,1/17/2014,236281430,1/25/2014,9781,152.58,97.44,1492384.98,953060.64,539324.34 Sub-Saharan Africa,Botswana,Vegetables,Online,C,5/22/2012,259442412,6/15/2012,3630,154.06,90.93,559237.80,330075.90,229161.90 Asia,Indonesia,Meat,Offline,C,12/2/2012,192474305,1/11/2013,6279,421.89,364.69,2649047.31,2289888.51,359158.80 Asia,Myanmar,Clothes,Offline,L,11/28/2013,201050937,12/1/2013,4295,109.28,35.84,469357.60,153932.80,315424.80 Europe,Germany,Cereal,Offline,L,9/10/2014,971158635,10/5/2014,6276,205.70,117.11,1290973.20,734982.36,555990.84 Sub-Saharan Africa,Guinea,Snacks,Online,H,11/22/2011,559096229,11/25/2011,7853,152.58,97.44,1198210.74,765196.32,433014.42 Asia,Turkmenistan,Snacks,Offline,C,10/3/2010,241475045,10/4/2010,6687,152.58,97.44,1020302.46,651581.28,368721.18 Central America and the Caribbean,Saint Kitts and Nevis ,Office Supplies,Offline,H,10/27/2013,465218913,11/16/2013,7469,651.21,524.96,4863887.49,3920926.24,942961.25 Europe,Latvia,Cereal,Offline,L,2/11/2017,397564160,3/5/2017,6925,205.70,117.11,1424472.50,810986.75,613485.75 Sub-Saharan Africa,South Sudan,Baby Food,Offline,H,12/8/2013,176059615,12/17/2013,8807,255.28,159.42,2248250.96,1404011.94,844239.02 Europe,Poland,Household,Offline,L,10/19/2013,458566606,12/7/2013,8904,668.27,502.54,5950276.08,4474616.16,1475659.92 Sub-Saharan Africa,Togo,Beverages,Offline,M,12/6/2015,173258960,1/18/2016,31,47.45,31.79,1470.95,985.49,485.46 Sub-Saharan Africa,Seychelles ,Fruits,Online,C,1/11/2013,568623006,1/18/2013,7038,9.33,6.92,65664.54,48702.96,16961.58 Europe,Kosovo,Cosmetics,Online,L,3/31/2010,263457572,3/31/2010,1805,437.20,263.33,789146.00,475310.65,313835.35 Europe,Macedonia,Cosmetics,Online,C,10/8/2013,196873986,11/15/2013,8242,437.20,263.33,3603402.40,2170365.86,1433036.54 Europe,Albania,Personal Care,Online,H,12/11/2011,478296077,1/8/2012,7293,81.73,56.67,596056.89,413294.31,182762.58 Middle East and North Africa,Egypt,Personal Care,Offline,H,11/16/2016,837460172,12/26/2016,1930,81.73,56.67,157738.90,109373.10,48365.80 Sub-Saharan Africa,Democratic Republic of the Congo,Personal Care,Online,H,4/3/2015,174415099,5/5/2015,2159,81.73,56.67,176455.07,122350.53,54104.54 Europe,Malta,Meat,Online,C,7/12/2017,609522187,8/8/2017,15,421.89,364.69,6328.35,5470.35,858.00 Middle East and North Africa,Bahrain,Meat,Online,C,4/19/2016,733455264,5/23/2016,4566,421.89,364.69,1926349.74,1665174.54,261175.20 Sub-Saharan Africa,Cote d'Ivoire,Meat,Online,L,10/18/2012,557200658,11/12/2012,6912,421.89,364.69,2916103.68,2520737.28,395366.40 Europe,Andorra,Office Supplies,Online,H,2/6/2013,162057197,2/20/2013,5181,651.21,524.96,3373919.01,2719817.76,654101.25 Sub-Saharan Africa,South Sudan,Beverages,Offline,H,10/16/2016,149636209,11/9/2016,9534,47.45,31.79,452388.30,303085.86,149302.44 Australia and Oceania,Solomon Islands,Baby Food,Offline,H,2/22/2013,291861522,3/12/2013,7165,255.28,159.42,1829081.20,1142244.30,686836.90 Australia and Oceania,Fiji,Cereal,Offline,H,3/24/2015,880969464,4/16/2015,7296,205.70,117.11,1500787.20,854434.56,646352.64 Europe,Portugal,Snacks,Online,C,8/29/2010,479508864,9/1/2010,6184,152.58,97.44,943554.72,602568.96,340985.76 Middle East and North Africa,Israel,Clothes,Online,M,11/7/2010,870341050,12/14/2010,2112,109.28,35.84,230799.36,75694.08,155105.28 Asia,Turkmenistan,Fruits,Online,H,11/30/2016,306639850,1/9/2017,401,9.33,6.92,3741.33,2774.92,966.41 Middle East and North Africa,Kuwait,Personal Care,Online,C,11/19/2015,261891591,12/30/2015,8396,81.73,56.67,686205.08,475801.32,210403.76 Sub-Saharan Africa,Burkina Faso,Cosmetics,Online,L,10/14/2014,479895102,10/22/2014,480,437.20,263.33,209856.00,126398.40,83457.60 Sub-Saharan Africa,The Gambia,Baby Food,Online,H,2/21/2014,324761712,3/16/2014,3062,255.28,159.42,781667.36,488144.04,293523.32 Asia,China,Office Supplies,Offline,H,10/2/2011,130915248,10/6/2011,9586,651.21,524.96,6242499.06,5032266.56,1210232.50 Australia and Oceania,East Timor,Fruits,Offline,L,1/21/2014,753092038,2/25/2014,5524,9.33,6.92,51538.92,38226.08,13312.84 Europe,Estonia,Meat,Online,H,3/13/2017,416340911,4/18/2017,3382,421.89,364.69,1426831.98,1233381.58,193450.40 Asia,Bangladesh,Cereal,Online,L,10/22/2010,566023194,12/2/2010,7696,205.70,117.11,1583067.20,901278.56,681788.64 Asia,South Korea,Clothes,Offline,C,2/4/2012,917812716,2/26/2012,33,109.28,35.84,3606.24,1182.72,2423.52 North America,Canada,Fruits,Online,C,8/11/2016,807695806,8/26/2016,3993,9.33,6.92,37254.69,27631.56,9623.13 Sub-Saharan Africa,Rwanda,Cosmetics,Offline,M,3/8/2017,541971290,4/22/2017,203,437.20,263.33,88751.60,53455.99,35295.61 Europe,Croatia,Cereal,Offline,C,4/14/2015,947250497,6/1/2015,1327,205.70,117.11,272963.90,155404.97,117558.93 Central America and the Caribbean,Saint Kitts and Nevis ,Personal Care,Offline,L,3/25/2017,220457255,5/14/2017,7056,81.73,56.67,576686.88,399863.52,176823.36 Europe,Lithuania,Snacks,Online,H,4/6/2015,678827893,5/15/2015,9114,152.58,97.44,1390614.12,888068.16,502545.96 Central America and the Caribbean,Guatemala,Office Supplies,Online,L,1/14/2014,209911239,2/26/2014,6255,651.21,524.96,4073318.55,3283624.80,789693.75 Asia,Sri Lanka,Vegetables,Offline,C,9/20/2011,821568620,9/21/2011,9267,154.06,90.93,1427674.02,842648.31,585025.71 Middle East and North Africa,Iraq,Beverages,Online,H,4/22/2011,991973865,6/6/2011,5965,47.45,31.79,283039.25,189627.35,93411.90 Australia and Oceania,Samoa ,Fruits,Online,C,11/14/2016,619613301,11/26/2016,6200,9.33,6.92,57846.00,42904.00,14942.00 Asia,Indonesia,Vegetables,Offline,C,8/15/2014,573285758,9/21/2014,6850,154.06,90.93,1055311.00,622870.50,432440.50 Sub-Saharan Africa,Madagascar,Beverages,Online,L,7/17/2014,442102563,7/27/2014,6828,47.45,31.79,323988.60,217062.12,106926.48 Asia,Myanmar,Cosmetics,Offline,L,4/29/2016,785487544,5/13/2016,2074,437.20,263.33,906752.80,546146.42,360606.38 Central America and the Caribbean,Nicaragua,Household,Online,C,2/27/2013,883177030,4/14/2013,564,668.27,502.54,376904.28,283432.56,93471.72 Europe,United Kingdom,Cosmetics,Offline,C,8/26/2010,985219848,9/30/2010,7302,437.20,263.33,3192434.40,1922835.66,1269598.74 Sub-Saharan Africa,Guinea,Fruits,Online,H,6/23/2015,961977326,7/25/2015,9323,9.33,6.92,86983.59,64515.16,22468.43 Sub-Saharan Africa,Ghana,Meat,Online,H,6/9/2016,754123294,6/27/2016,696,421.89,364.69,293635.44,253824.24,39811.20 Sub-Saharan Africa,Guinea-Bissau,Vegetables,Offline,H,12/27/2010,822644078,2/10/2011,7519,154.06,90.93,1158377.14,683702.67,474674.47 Europe,Serbia,Cosmetics,Online,C,7/24/2016,798838508,9/9/2016,2921,437.20,263.33,1277061.20,769186.93,507874.27 Europe,Netherlands,Vegetables,Offline,L,10/22/2013,834317910,11/14/2013,2065,154.06,90.93,318133.90,187770.45,130363.45 Central America and the Caribbean,Haiti,Cereal,Online,M,12/7/2010,251006114,12/20/2010,7142,205.70,117.11,1469109.40,836399.62,632709.78 Sub-Saharan Africa,Namibia,Office Supplies,Offline,C,3/21/2017,691139447,4/8/2017,2376,651.21,524.96,1547274.96,1247304.96,299970.00 Europe,Czech Republic,Personal Care,Online,C,7/1/2016,267266738,7/28/2016,9022,81.73,56.67,737368.06,511276.74,226091.32 Middle East and North Africa,Qatar,Meat,Offline,H,5/26/2016,312249314,7/8/2016,366,421.89,364.69,154411.74,133476.54,20935.20 Asia,Kazakhstan,Cosmetics,Offline,C,3/30/2014,429261004,4/6/2014,6725,437.20,263.33,2940170.00,1770894.25,1169275.75 Middle East and North Africa,Jordan,Fruits,Online,C,12/30/2015,741788136,1/23/2016,449,9.33,6.92,4189.17,3107.08,1082.09 Europe,Norway,Household,Online,H,4/30/2017,543629539,6/5/2017,916,668.27,502.54,612135.32,460326.64,151808.68 Europe,United Kingdom,Baby Food,Offline,M,12/21/2014,548896539,2/8/2015,9538,255.28,159.42,2434860.64,1520547.96,914312.68 Europe,Romania,Beverages,Offline,M,7/8/2010,642012965,7/15/2010,4758,47.45,31.79,225767.10,151256.82,74510.28 Middle East and North Africa,Yemen,Beverages,Offline,M,3/9/2014,327715146,3/28/2014,7049,47.45,31.79,334475.05,224087.71,110387.34 Europe,Albania,Meat,Offline,M,10/5/2010,981051909,11/4/2010,3916,421.89,364.69,1652121.24,1428126.04,223995.20 Sub-Saharan Africa,Djibouti,Beverages,Offline,L,5/21/2016,897384583,7/9/2016,4895,47.45,31.79,232267.75,155612.05,76655.70 Europe,Austria,Household,Offline,H,3/9/2014,242386996,4/1/2014,6553,668.27,502.54,4379173.31,3293144.62,1086028.69 Europe,Romania,Household,Offline,M,1/27/2011,602045476,2/9/2011,7490,668.27,502.54,5005342.30,3764024.60,1241317.70 Middle East and North Africa,Israel,Office Supplies,Online,L,3/28/2011,932658851,4/15/2011,3335,651.21,524.96,2171785.35,1750741.60,421043.75 Middle East and North Africa,Yemen,Household,Online,C,5/11/2012,710838449,5/11/2012,1748,668.27,502.54,1168135.96,878439.92,289696.04 Sub-Saharan Africa,Uganda,Meat,Online,C,12/20/2016,383508098,12/30/2016,7423,421.89,364.69,3131689.47,2707093.87,424595.60 Middle East and North Africa,Jordan,Snacks,Online,C,7/11/2013,917904126,7/23/2013,7084,152.58,97.44,1080876.72,690264.96,390611.76 Central America and the Caribbean,Guatemala,Personal Care,Online,C,6/22/2010,651575362,6/29/2010,4484,81.73,56.67,366477.32,254108.28,112369.04 North America,Canada,Fruits,Offline,M,4/29/2017,242383134,5/10/2017,5410,9.33,6.92,50475.30,37437.20,13038.10 Sub-Saharan Africa,Djibouti,Clothes,Online,L,8/2/2010,418501269,8/30/2010,2680,109.28,35.84,292870.40,96051.20,196819.20 Sub-Saharan Africa,Sao Tome and Principe,Meat,Online,H,4/4/2013,628416097,4/28/2013,1143,421.89,364.69,482220.27,416840.67,65379.60 Australia and Oceania,Marshall Islands,Cosmetics,Online,L,5/1/2015,390926444,5/6/2015,2677,437.20,263.33,1170384.40,704934.41,465449.99 Australia and Oceania,Kiribati,Cereal,Offline,L,6/7/2015,645143640,7/17/2015,1194,205.70,117.11,245605.80,139829.34,105776.46 Middle East and North Africa,Egypt,Personal Care,Online,C,1/15/2017,600491511,2/18/2017,7637,81.73,56.67,624172.01,432788.79,191383.22 Sub-Saharan Africa,Sao Tome and Principe,Baby Food,Online,L,2/18/2017,886706387,2/26/2017,4980,255.28,159.42,1271294.40,793911.60,477382.80 Central America and the Caribbean,Dominica,Meat,Online,M,7/12/2017,403837096,8/1/2017,3226,421.89,364.69,1361017.14,1176489.94,184527.20 Sub-Saharan Africa,Sudan,Fruits,Online,H,7/16/2013,372244966,8/28/2013,4412,9.33,6.92,41163.96,30531.04,10632.92 Central America and the Caribbean,Nicaragua,Fruits,Online,H,11/28/2012,282603824,1/2/2013,7606,9.33,6.92,70963.98,52633.52,18330.46 Central America and the Caribbean,El Salvador,Office Supplies,Online,C,11/13/2016,145899999,12/3/2016,3907,651.21,524.96,2544277.47,2051018.72,493258.75 Australia and Oceania,New Zealand,Clothes,Online,M,5/9/2016,943432319,5/19/2016,1443,109.28,35.84,157691.04,51717.12,105973.92 Sub-Saharan Africa,Kenya,Baby Food,Offline,L,12/9/2010,576812112,1/7/2011,377,255.28,159.42,96240.56,60101.34,36139.22 Europe,Switzerland,Beverages,Online,L,8/16/2012,617963206,9/26/2012,7900,47.45,31.79,374855.00,251141.00,123714.00 Europe,Slovenia,Cereal,Offline,L,10/3/2011,459121930,10/23/2011,3237,205.70,117.11,665850.90,379085.07,286765.83 Europe,Poland,Cosmetics,Online,L,2/6/2011,462837111,3/11/2011,2641,437.20,263.33,1154645.20,695454.53,459190.67 Asia,Indonesia,Personal Care,Online,M,6/30/2014,611970078,7/6/2014,4400,81.73,56.67,359612.00,249348.00,110264.00 Middle East and North Africa,Qatar,Snacks,Online,M,6/24/2015,959694659,7/1/2015,3831,152.58,97.44,584533.98,373292.64,211241.34 Australia and Oceania,Federated States of Micronesia,Cosmetics,Online,M,3/24/2016,279497182,4/7/2016,8282,437.20,263.33,3620890.40,2180899.06,1439991.34 Europe,Slovenia,Beverages,Offline,M,3/15/2016,115176475,4/30/2016,2133,47.45,31.79,101210.85,67808.07,33402.78 Asia,Kazakhstan,Fruits,Offline,H,12/3/2015,730843865,1/4/2016,1796,9.33,6.92,16756.68,12428.32,4328.36 Middle East and North Africa,Iraq,Fruits,Online,L,3/9/2013,660923182,4/21/2013,712,9.33,6.92,6642.96,4927.04,1715.92 Europe,Hungary,Beverages,Offline,M,6/7/2014,760150754,6/17/2014,4355,47.45,31.79,206644.75,138445.45,68199.30 Europe,Russia,Fruits,Offline,M,10/21/2015,153575408,10/27/2015,5231,9.33,6.92,48805.23,36198.52,12606.71 Middle East and North Africa,Qatar,Cereal,Online,H,7/5/2014,286558473,7/19/2014,7875,205.70,117.11,1619887.50,922241.25,697646.25 Sub-Saharan Africa,Kenya,Vegetables,Online,H,8/10/2012,874773776,8/15/2012,3855,154.06,90.93,593901.30,350535.15,243366.15 Middle East and North Africa,Bahrain,Meat,Online,M,3/24/2013,354207646,4/10/2013,6769,421.89,364.69,2855773.41,2468586.61,387186.80 Sub-Saharan Africa,Madagascar,Office Supplies,Offline,L,10/7/2016,831158912,10/30/2016,7247,651.21,524.96,4719318.87,3804385.12,914933.75 Australia and Oceania,Tonga,Office Supplies,Offline,M,2/14/2017,432238900,2/24/2017,7951,651.21,524.96,5177770.71,4173956.96,1003813.75 Europe,Monaco,Fruits,Online,C,1/15/2013,954371440,1/18/2013,8572,9.33,6.92,79976.76,59318.24,20658.52 Sub-Saharan Africa,Equatorial Guinea,Cosmetics,Online,H,11/28/2011,214792859,1/10/2012,835,437.20,263.33,365062.00,219880.55,145181.45 Sub-Saharan Africa,South Africa,Meat,Offline,H,10/24/2010,601051986,10/27/2010,3494,421.89,364.69,1474083.66,1274226.86,199856.80 Sub-Saharan Africa,Democratic Republic of the Congo,Meat,Online,H,6/25/2015,521010148,7/23/2015,7336,421.89,364.69,3094985.04,2675365.84,419619.20 North America,Mexico,Office Supplies,Offline,H,10/9/2013,252841174,11/22/2013,177,651.21,524.96,115264.17,92917.92,22346.25 Europe,Slovenia,Cosmetics,Online,L,5/2/2017,595031392,6/15/2017,1867,437.20,263.33,816252.40,491637.11,324615.29 Asia,Taiwan,Beverages,Offline,M,5/15/2012,616379630,5/21/2012,9285,47.45,31.79,440573.25,295170.15,145403.10 Sub-Saharan Africa,Rwanda,Office Supplies,Offline,C,6/9/2016,805997216,7/5/2016,1342,651.21,524.96,873923.82,704496.32,169427.50 Europe,Ukraine,Snacks,Offline,C,2/2/2014,823307979,3/9/2014,3981,152.58,97.44,607420.98,387908.64,219512.34 Sub-Saharan Africa,Niger,Personal Care,Online,C,8/26/2013,848048245,9/23/2013,5176,81.73,56.67,423034.48,293323.92,129710.56 Australia and Oceania,Australia,Household,Online,C,2/28/2013,230266845,4/7/2013,9931,668.27,502.54,6636589.37,4990724.74,1645864.63 Sub-Saharan Africa,Ghana,Meat,Online,H,9/22/2011,640325105,10/3/2011,5283,421.89,364.69,2228844.87,1926657.27,302187.60 Sub-Saharan Africa,Gabon,Snacks,Online,C,4/14/2013,218896853,5/18/2013,5298,152.58,97.44,808368.84,516237.12,292131.72 Middle East and North Africa,Iran,Snacks,Online,C,4/19/2015,326968419,4/22/2015,6076,152.58,97.44,927076.08,592045.44,335030.64 Sub-Saharan Africa,Central African Republic,Cosmetics,Online,C,6/23/2012,595838630,6/29/2012,746,437.20,263.33,326151.20,196444.18,129707.02 Sub-Saharan Africa,South Sudan,Baby Food,Offline,L,10/7/2015,277118813,11/19/2015,4470,255.28,159.42,1141101.60,712607.40,428494.20 Sub-Saharan Africa,Botswana,Personal Care,Offline,L,8/25/2010,492732799,10/14/2010,9440,81.73,56.67,771531.20,534964.80,236566.40 Australia and Oceania,Australia,Cereal,Offline,H,12/25/2013,184916913,1/23/2014,9879,205.70,117.11,2032110.30,1156929.69,875180.61 Sub-Saharan Africa,Senegal,Personal Care,Offline,M,3/6/2017,166219985,3/26/2017,7042,81.73,56.67,575542.66,399070.14,176472.52 Central America and the Caribbean,Grenada,Baby Food,Online,L,9/15/2012,869503343,10/12/2012,4216,255.28,159.42,1076260.48,672114.72,404145.76 Sub-Saharan Africa,Botswana,Vegetables,Online,L,1/16/2013,997940814,2/24/2013,1718,154.06,90.93,264675.08,156217.74,108457.34 Europe,Russia,Office Supplies,Online,C,7/30/2016,675018727,8/10/2016,1897,651.21,524.96,1235345.37,995849.12,239496.25 Sub-Saharan Africa,Malawi,Baby Food,Online,M,5/30/2011,994535911,7/6/2011,4132,255.28,159.42,1054816.96,658723.44,396093.52 Europe,Estonia,Clothes,Online,H,12/27/2016,870603692,1/18/2017,9834,109.28,35.84,1074659.52,352450.56,722208.96 Middle East and North Africa,Bahrain,Vegetables,Offline,M,3/8/2012,187645900,3/18/2012,7446,154.06,90.93,1147130.76,677064.78,470065.98 Middle East and North Africa,Somalia,Cosmetics,Offline,C,10/18/2014,250398862,10/27/2014,7442,437.20,263.33,3253642.40,1959701.86,1293940.54 Australia and Oceania,Kiribati,Snacks,Offline,H,3/6/2017,633911406,3/20/2017,7327,152.58,97.44,1117953.66,713942.88,404010.78 Europe,Slovakia,Personal Care,Offline,C,10/1/2012,533544862,11/6/2012,6636,81.73,56.67,542360.28,376062.12,166298.16 North America,United States of America,Clothes,Online,C,12/9/2014,114973056,12/30/2014,1937,109.28,35.84,211675.36,69422.08,142253.28 Central America and the Caribbean,Nicaragua,Personal Care,Online,L,7/2/2015,964182317,7/31/2015,1829,81.73,56.67,149484.17,103649.43,45834.74 Sub-Saharan Africa,Benin,Cosmetics,Online,M,1/21/2011,237471473,1/31/2011,1941,437.20,263.33,848605.20,511123.53,337481.67 Europe,Romania,Personal Care,Online,M,6/8/2014,111451852,7/5/2014,9935,81.73,56.67,811987.55,563016.45,248971.10 Middle East and North Africa,Qatar,Snacks,Online,L,1/7/2013,133047282,2/5/2013,502,152.58,97.44,76595.16,48914.88,27680.28 Asia,North Korea,Clothes,Offline,L,5/30/2010,369494092,6/29/2010,368,109.28,35.84,40215.04,13189.12,27025.92 Europe,Lithuania,Fruits,Online,H,1/21/2015,958341109,2/23/2015,3286,9.33,6.92,30658.38,22739.12,7919.26 Sub-Saharan Africa,Botswana,Baby Food,Offline,H,10/1/2013,757449662,10/3/2013,5042,255.28,159.42,1287121.76,803795.64,483326.12 Central America and the Caribbean,Jamaica,Clothes,Online,M,4/16/2013,494993579,5/28/2013,8455,109.28,35.84,923962.40,303027.20,620935.20 Sub-Saharan Africa,Togo,Baby Food,Offline,M,12/16/2013,519459187,1/4/2014,8372,255.28,159.42,2137204.16,1334664.24,802539.92 Central America and the Caribbean,Antigua and Barbuda ,Vegetables,Offline,C,4/25/2013,349645316,6/3/2013,6674,154.06,90.93,1028196.44,606866.82,421329.62 Europe,United Kingdom,Cosmetics,Online,L,7/26/2017,924663293,8/14/2017,7271,437.20,263.33,3178881.20,1914672.43,1264208.77 Asia,Thailand,Snacks,Online,L,1/16/2015,553936946,2/3/2015,1107,152.58,97.44,168906.06,107866.08,61039.98 Central America and the Caribbean,Dominican Republic,Personal Care,Offline,M,4/16/2010,767202603,4/20/2010,1154,81.73,56.67,94316.42,65397.18,28919.24 Europe,Ukraine,Household,Offline,H,9/13/2012,464509093,10/20/2012,7418,668.27,502.54,4957226.86,3727841.72,1229385.14 Europe,Lithuania,Cosmetics,Online,L,1/9/2010,866217744,2/15/2010,1935,437.20,263.33,845982.00,509543.55,336438.45 Middle East and North Africa,Algeria,Cosmetics,Online,L,7/26/2017,563002383,8/10/2017,3771,437.20,263.33,1648681.20,993017.43,655663.77 Europe,Vatican City,Personal Care,Offline,M,11/3/2013,465849339,12/17/2013,4027,81.73,56.67,329126.71,228210.09,100916.62 Sub-Saharan Africa,Chad,Vegetables,Online,H,7/4/2012,656057441,8/8/2012,831,154.06,90.93,128023.86,75562.83,52461.03 Sub-Saharan Africa,Ethiopia,Fruits,Offline,H,2/18/2013,835238015,3/3/2013,4344,9.33,6.92,40529.52,30060.48,10469.04 Asia,Philippines,Baby Food,Offline,M,7/30/2012,775314891,9/9/2012,1760,255.28,159.42,449292.80,280579.20,168713.60 Asia,Taiwan,Vegetables,Offline,L,5/1/2016,768524396,6/15/2016,2302,154.06,90.93,354646.12,209320.86,145325.26 Europe,United Kingdom,Clothes,Offline,C,1/6/2012,277415359,2/15/2012,2224,109.28,35.84,243038.72,79708.16,163330.56 Australia and Oceania,Kiribati,Household,Online,L,1/14/2011,184849107,1/18/2011,9813,668.27,502.54,6557733.51,4931425.02,1626308.49 Europe,Italy,Household,Offline,C,7/7/2014,543999469,7/9/2014,387,668.27,502.54,258620.49,194482.98,64137.51 Sub-Saharan Africa,Ghana,Beverages,Offline,C,1/17/2017,128352773,2/2/2017,1293,47.45,31.79,61352.85,41104.47,20248.38 Europe,Hungary,Beverages,Offline,M,7/9/2010,481707847,7/20/2010,6911,47.45,31.79,327926.95,219700.69,108226.26 Europe,Kosovo,Personal Care,Offline,M,8/8/2010,968176019,8/27/2010,3654,81.73,56.67,298641.42,207072.18,91569.24 Europe,Lithuania,Fruits,Online,H,2/3/2015,122181117,2/12/2015,4963,9.33,6.92,46304.79,34343.96,11960.83 Sub-Saharan Africa,South Sudan,Clothes,Online,L,4/12/2015,598459470,4/26/2015,6311,109.28,35.84,689666.08,226186.24,463479.84 Sub-Saharan Africa,Benin,Cosmetics,Offline,L,11/19/2014,622059905,11/23/2014,204,437.20,263.33,89188.80,53719.32,35469.48 Europe,Ukraine,Vegetables,Online,H,2/11/2011,738343751,2/26/2011,1178,154.06,90.93,181482.68,107115.54,74367.14 Central America and the Caribbean,Costa Rica,Baby Food,Online,M,8/6/2013,662984836,8/23/2013,801,255.28,159.42,204479.28,127695.42,76783.86 Sub-Saharan Africa,Seychelles ,Beverages,Offline,M,4/27/2010,631969487,6/14/2010,2670,47.45,31.79,126691.50,84879.30,41812.20 Sub-Saharan Africa,Mali,Clothes,Offline,C,10/28/2016,951596534,11/27/2016,7416,109.28,35.84,810420.48,265789.44,544631.04 Sub-Saharan Africa,Republic of the Congo,Baby Food,Online,M,11/12/2011,648477303,11/12/2011,7700,255.28,159.42,1965656.00,1227534.00,738122.00 Europe,Austria,Cosmetics,Offline,M,11/25/2016,619535624,12/31/2016,3214,437.20,263.33,1405160.80,846342.62,558818.18 Asia,Thailand,Household,Offline,M,8/8/2016,482007825,9/1/2016,5682,668.27,502.54,3797110.14,2855432.28,941677.86 Middle East and North Africa,Lebanon,Snacks,Offline,H,8/19/2015,823442733,10/2/2015,3858,152.58,97.44,588653.64,375923.52,212730.12 Europe,Kosovo,Snacks,Online,L,2/21/2012,951701676,3/25/2012,8530,152.58,97.44,1301507.40,831163.20,470344.20 Australia and Oceania,Palau,Baby Food,Offline,M,9/17/2016,244958484,10/9/2016,7514,255.28,159.42,1918173.92,1197881.88,720292.04 Asia,Malaysia,Fruits,Online,L,9/12/2010,401699483,9/13/2010,658,9.33,6.92,6139.14,4553.36,1585.78 Middle East and North Africa,Turkey,Household,Offline,H,8/5/2010,490723502,8/8/2010,4844,668.27,502.54,3237099.88,2434303.76,802796.12 Australia and Oceania,New Zealand,Cosmetics,Online,L,3/29/2011,101141870,4/18/2011,8982,437.20,263.33,3926930.40,2365230.06,1561700.34 Asia,Bangladesh,Household,Online,M,4/29/2012,692378413,6/1/2012,9013,668.27,502.54,6023117.51,4529393.02,1493724.49 Asia,Sri Lanka,Clothes,Offline,H,8/14/2014,644169461,9/21/2014,2913,109.28,35.84,318332.64,104401.92,213930.72 Europe,Ireland,Office Supplies,Online,H,2/24/2016,206563842,3/13/2016,5686,651.21,524.96,3702780.06,2984922.56,717857.50 Sub-Saharan Africa,Mauritius ,Cereal,Offline,M,1/7/2016,149922883,1/27/2016,4368,205.70,117.11,898497.60,511536.48,386961.12 Sub-Saharan Africa,Mauritania,Vegetables,Offline,H,8/10/2010,414920413,9/7/2010,3026,154.06,90.93,466185.56,275154.18,191031.38 Central America and the Caribbean,Saint Kitts and Nevis ,Personal Care,Offline,H,7/3/2012,562542760,8/13/2012,7758,81.73,56.67,634061.34,439645.86,194415.48 Australia and Oceania,Samoa ,Vegetables,Offline,H,6/9/2016,224088752,7/24/2016,1696,154.06,90.93,261285.76,154217.28,107068.48 Europe,Iceland,Snacks,Online,H,8/15/2010,451169717,9/24/2010,10000,152.58,97.44,1525800.00,974400.00,551400.00 Sub-Saharan Africa,Madagascar,Vegetables,Offline,C,11/3/2010,565709483,11/17/2010,4862,154.06,90.93,749039.72,442101.66,306938.06 Asia,Maldives,Snacks,Online,L,3/23/2011,409944379,4/10/2011,506,152.58,97.44,77205.48,49304.64,27900.84 Europe,Norway,Household,Online,H,10/4/2010,796423232,11/15/2010,8188,668.27,502.54,5471794.76,4114797.52,1356997.24 Asia,Japan,Household,Online,L,1/22/2017,358007371,3/2/2017,1192,668.27,502.54,796577.84,599027.68,197550.16 Europe,Greece,Clothes,Offline,C,4/25/2012,497870624,6/13/2012,9836,109.28,35.84,1074878.08,352522.24,722355.84 Sub-Saharan Africa,Mauritius ,Snacks,Online,M,1/22/2010,439499318,2/18/2010,6470,152.58,97.44,987192.60,630436.80,356755.80 Middle East and North Africa,Libya,Personal Care,Online,H,7/15/2013,376692283,8/1/2013,472,81.73,56.67,38576.56,26748.24,11828.32 Middle East and North Africa,Oman,Clothes,Online,H,11/27/2011,123560845,12/20/2011,3255,109.28,35.84,355706.40,116659.20,239047.20 Sub-Saharan Africa,Zimbabwe,Beverages,Offline,C,4/30/2014,464528834,6/10/2014,3260,47.45,31.79,154687.00,103635.40,51051.60 Europe,Andorra,Household,Online,L,11/18/2015,904332578,12/15/2015,961,668.27,502.54,642207.47,482940.94,159266.53 Sub-Saharan Africa,Angola,Vegetables,Offline,H,6/30/2016,118020904,7/27/2016,3863,154.06,90.93,595133.78,351262.59,243871.19 Europe,Bulgaria,Vegetables,Online,L,3/1/2017,900955140,3/2/2017,1502,154.06,90.93,231398.12,136576.86,94821.26 Sub-Saharan Africa,Sierra Leone,Cereal,Online,C,2/29/2016,718809115,4/16/2016,446,205.70,117.11,91742.20,52231.06,39511.14 Sub-Saharan Africa,Seychelles ,Personal Care,Offline,H,10/29/2012,257569158,11/21/2012,9292,81.73,56.67,759435.16,526577.64,232857.52 Middle East and North Africa,Morocco,Cosmetics,Online,M,5/8/2011,273534095,6/8/2011,3672,437.20,263.33,1605398.40,966947.76,638450.64 Sub-Saharan Africa,Cote d'Ivoire,Household,Online,C,12/25/2016,243315255,1/25/2017,1246,668.27,502.54,832664.42,626164.84,206499.58 Central America and the Caribbean,Honduras,Vegetables,Offline,C,2/10/2017,613836467,3/7/2017,6706,154.06,90.93,1033126.36,609776.58,423349.78 Australia and Oceania,Papua New Guinea,Snacks,Online,M,5/5/2015,552334058,5/31/2015,6777,152.58,97.44,1034034.66,660350.88,373683.78 Middle East and North Africa,United Arab Emirates,Cosmetics,Online,C,7/15/2012,196356856,8/20/2012,5212,437.20,263.33,2278686.40,1372475.96,906210.44 Sub-Saharan Africa,South Sudan,Baby Food,Offline,M,8/26/2010,203766191,9/16/2010,7799,255.28,159.42,1990928.72,1243316.58,747612.14 Central America and the Caribbean,Costa Rica,Baby Food,Online,M,6/20/2016,402735888,7/24/2016,7354,255.28,159.42,1877329.12,1172374.68,704954.44 Asia,Bhutan,Household,Offline,H,2/17/2015,241752278,3/31/2015,8726,668.27,502.54,5831324.02,4385164.04,1446159.98 Middle East and North Africa,Qatar,Clothes,Offline,M,10/11/2011,139614188,10/11/2011,3796,109.28,35.84,414826.88,136048.64,278778.24 Middle East and North Africa,Bahrain,Office Supplies,Offline,C,8/8/2012,135432946,9/5/2012,6473,651.21,524.96,4215282.33,3398066.08,817216.25 Middle East and North Africa,Afghanistan,Fruits,Online,C,7/8/2013,338632380,8/8/2013,7701,9.33,6.92,71850.33,53290.92,18559.41 Europe,Kosovo,Vegetables,Online,M,6/29/2011,478948819,7/28/2011,454,154.06,90.93,69943.24,41282.22,28661.02 Europe,Switzerland,Baby Food,Offline,C,12/4/2015,356431090,1/5/2016,4735,255.28,159.42,1208750.80,754853.70,453897.10 Australia and Oceania,Vanuatu,Fruits,Online,L,7/22/2014,291440522,7/31/2014,2582,9.33,6.92,24090.06,17867.44,6222.62 Sub-Saharan Africa,Equatorial Guinea,Fruits,Online,M,2/15/2015,674650943,3/10/2015,3061,9.33,6.92,28559.13,21182.12,7377.01 Europe,United Kingdom,Beverages,Offline,M,4/16/2011,617048680,6/1/2011,7272,47.45,31.79,345056.40,231176.88,113879.52 Europe,Switzerland,Cosmetics,Offline,C,9/14/2016,199932563,10/22/2016,3343,437.20,263.33,1461559.60,880312.19,581247.41 Sub-Saharan Africa,Guinea-Bissau,Household,Offline,H,10/20/2015,924913918,11/13/2015,1437,668.27,502.54,960303.99,722149.98,238154.01 Sub-Saharan Africa,Gabon,Vegetables,Offline,M,1/2/2013,763916575,1/21/2013,8745,154.06,90.93,1347254.70,795182.85,552071.85 Sub-Saharan Africa,Malawi,Household,Offline,C,10/21/2013,909176862,12/9/2013,4492,668.27,502.54,3001868.84,2257409.68,744459.16 Central America and the Caribbean,Saint Lucia,Office Supplies,Online,H,5/27/2013,823243606,6/22/2013,4932,651.21,524.96,3211767.72,2589102.72,622665.00 Sub-Saharan Africa,Zambia,Beverages,Online,H,8/18/2015,488978135,9/17/2015,8351,47.45,31.79,396254.95,265478.29,130776.66 Central America and the Caribbean,Guatemala,Household,Offline,L,1/9/2014,859554278,2/5/2014,67,668.27,502.54,44774.09,33670.18,11103.91 Central America and the Caribbean,Saint Kitts and Nevis ,Beverages,Offline,H,10/7/2010,708458364,11/22/2010,7428,47.45,31.79,352458.60,236136.12,116322.48 Europe,Bulgaria,Cereal,Online,L,11/19/2012,679489219,11/23/2012,4814,205.70,117.11,990239.80,563767.54,426472.26 Sub-Saharan Africa,Malawi,Cosmetics,Offline,H,4/30/2013,136758172,6/3/2013,8637,437.20,263.33,3776096.40,2274381.21,1501715.19 Sub-Saharan Africa,Cape Verde,Office Supplies,Offline,H,6/20/2017,314689052,6/23/2017,2338,651.21,524.96,1522528.98,1227356.48,295172.50 Europe,Netherlands,Snacks,Offline,C,8/7/2016,268018186,9/22/2016,1392,152.58,97.44,212391.36,135636.48,76754.88 Australia and Oceania,Australia,Vegetables,Offline,L,6/9/2014,921794402,7/11/2014,8303,154.06,90.93,1279160.18,754991.79,524168.39 Sub-Saharan Africa,Sierra Leone,Household,Online,M,10/6/2015,121379029,11/20/2015,7607,668.27,502.54,5083529.89,3822821.78,1260708.11 Europe,Malta,Beverages,Online,H,1/22/2015,282445895,1/29/2015,872,47.45,31.79,41376.40,27720.88,13655.52 Central America and the Caribbean,Jamaica,Meat,Offline,M,6/16/2015,740981328,6/22/2015,1696,421.89,364.69,715525.44,618514.24,97011.20 Sub-Saharan Africa,South Sudan,Vegetables,Online,L,5/9/2017,903284156,5/23/2017,710,154.06,90.93,109382.60,64560.30,44822.30 Europe,Switzerland,Household,Offline,C,8/25/2014,695965707,9/13/2014,573,668.27,502.54,382918.71,287955.42,94963.29 Middle East and North Africa,Libya,Vegetables,Online,M,8/28/2013,115949809,10/14/2013,980,154.06,90.93,150978.80,89111.40,61867.40 Central America and the Caribbean,Costa Rica,Vegetables,Offline,C,3/13/2014,580472791,4/17/2014,3653,154.06,90.93,562781.18,332167.29,230613.89 Central America and the Caribbean,Dominican Republic,Vegetables,Online,M,5/8/2013,877083480,5/19/2013,7347,154.06,90.93,1131878.82,668062.71,463816.11 Asia,Thailand,Office Supplies,Online,L,11/6/2016,313643205,11/22/2016,2849,651.21,524.96,1855297.29,1495611.04,359686.25 Europe,Norway,Clothes,Online,C,7/21/2012,968325793,8/18/2012,7975,109.28,35.84,871508.00,285824.00,585684.00 Sub-Saharan Africa,Republic of the Congo,Meat,Online,C,2/9/2012,939617574,3/19/2012,2575,421.89,364.69,1086366.75,939076.75,147290.00 Europe,Portugal,Personal Care,Offline,M,11/11/2016,196317374,12/10/2016,3528,81.73,56.67,288343.44,199931.76,88411.68 Asia,Uzbekistan,Baby Food,Offline,L,1/31/2014,127536523,3/15/2014,9746,255.28,159.42,2487958.88,1553707.32,934251.56 Central America and the Caribbean,Antigua and Barbuda ,Personal Care,Online,H,1/14/2011,392698848,1/23/2011,7171,81.73,56.67,586085.83,406380.57,179705.26 Europe,Montenegro,Cosmetics,Offline,C,1/22/2016,271540677,2/18/2016,3775,437.20,263.33,1650430.00,994070.75,656359.25 Sub-Saharan Africa,Uganda,Vegetables,Online,L,1/13/2012,914110839,2/9/2012,4566,154.06,90.93,703437.96,415186.38,288251.58 Australia and Oceania,Kiribati,Clothes,Offline,C,3/18/2013,390770661,3/24/2013,6577,109.28,35.84,718734.56,235719.68,483014.88 Australia and Oceania,Fiji,Baby Food,Online,L,12/22/2015,442193973,12/22/2015,3878,255.28,159.42,989975.84,618230.76,371745.08 Middle East and North Africa,Bahrain,Meat,Online,L,3/10/2010,629367101,3/16/2010,2566,421.89,364.69,1082569.74,935794.54,146775.20 Europe,Croatia,Clothes,Offline,L,4/20/2013,583588874,5/1/2013,5771,109.28,35.84,630654.88,206832.64,423822.24 Australia and Oceania,Kiribati,Snacks,Online,L,7/11/2013,456470620,7/27/2013,8655,152.58,97.44,1320579.90,843343.20,477236.70 Australia and Oceania,Solomon Islands,Cosmetics,Offline,L,7/3/2011,469936168,7/9/2011,3410,437.20,263.33,1490852.00,897955.30,592896.70 Europe,Belarus,Snacks,Online,M,7/4/2016,466221845,8/8/2016,4259,152.58,97.44,649838.22,414996.96,234841.26 Asia,Singapore,Baby Food,Online,H,5/19/2012,357876479,6/30/2012,2458,255.28,159.42,627478.24,391854.36,235623.88 North America,Mexico,Meat,Offline,C,4/25/2014,577761399,5/23/2014,1292,421.89,364.69,545081.88,471179.48,73902.40 Asia,Taiwan,Vegetables,Offline,M,1/23/2012,729050433,2/29/2012,1079,154.06,90.93,166230.74,98113.47,68117.27 Middle East and North Africa,Qatar,Vegetables,Offline,H,8/3/2011,935229909,8/24/2011,4168,154.06,90.93,642122.08,378996.24,263125.84 Sub-Saharan Africa,Burundi,Vegetables,Online,H,2/20/2016,490098655,3/15/2016,9938,154.06,90.93,1531048.28,903662.34,627385.94 Middle East and North Africa,Azerbaijan,Beverages,Offline,M,11/13/2014,107767999,11/15/2014,9801,47.45,31.79,465057.45,311573.79,153483.66 Sub-Saharan Africa,Equatorial Guinea,Clothes,Online,M,12/10/2016,572661769,1/28/2017,2198,109.28,35.84,240197.44,78776.32,161421.12 Europe,Ireland,Fruits,Online,L,6/9/2017,489516294,7/1/2017,7604,9.33,6.92,70945.32,52619.68,18325.64 Europe,Norway,Cereal,Offline,L,4/14/2016,333380401,5/2/2016,3524,205.70,117.11,724886.80,412695.64,312191.16 Middle East and North Africa,Jordan,Vegetables,Online,M,6/24/2014,199615418,8/8/2014,9493,154.06,90.93,1462491.58,863198.49,599293.09 Middle East and North Africa,Tunisia ,Personal Care,Offline,H,4/16/2010,253895175,4/16/2010,2079,81.73,56.67,169916.67,117816.93,52099.74 Middle East and North Africa,Algeria,Snacks,Online,H,8/18/2010,282205998,10/3/2010,9881,152.58,97.44,1507642.98,962804.64,544838.34 Sub-Saharan Africa,Mauritania,Vegetables,Offline,C,2/12/2012,140846717,3/13/2012,8528,154.06,90.93,1313823.68,775451.04,538372.64 Asia,North Korea,Baby Food,Online,C,6/7/2012,206428658,6/21/2012,5682,255.28,159.42,1450500.96,905824.44,544676.52 Asia,Laos,Baby Food,Online,L,2/9/2014,925875651,3/31/2014,6035,255.28,159.42,1540614.80,962099.70,578515.10 Australia and Oceania,Federated States of Micronesia,Cosmetics,Online,L,3/3/2013,566424024,3/3/2013,6311,437.20,263.33,2759169.20,1661875.63,1097293.57 Middle East and North Africa,Israel,Vegetables,Offline,L,6/30/2010,165622603,7/18/2010,264,154.06,90.93,40671.84,24005.52,16666.32 Asia,Vietnam,Cereal,Online,C,8/6/2015,381332719,8/24/2015,3680,205.70,117.11,756976.00,430964.80,326011.20 Central America and the Caribbean,Dominican Republic,Office Supplies,Online,L,7/18/2012,141728198,7/21/2012,9378,651.21,524.96,6107047.38,4923074.88,1183972.50 Middle East and North Africa,Israel,Personal Care,Offline,H,10/11/2016,695295369,11/23/2016,2206,81.73,56.67,180296.38,125014.02,55282.36 Australia and Oceania,Palau,Vegetables,Online,H,9/16/2010,660833060,10/26/2010,4043,154.06,90.93,622864.58,367629.99,255234.59 Sub-Saharan Africa,South Africa,Beverages,Online,L,9/7/2015,977452600,9/21/2015,8800,47.45,31.79,417560.00,279752.00,137808.00 Middle East and North Africa,Qatar,Snacks,Online,H,6/18/2012,854577815,7/9/2012,7421,152.58,97.44,1132296.18,723102.24,409193.94 Middle East and North Africa,Turkey,Fruits,Online,C,3/3/2013,921945035,4/4/2013,2878,9.33,6.92,26851.74,19915.76,6935.98 Central America and the Caribbean,Barbados,Meat,Online,M,1/18/2012,979603087,1/22/2012,5177,421.89,364.69,2184124.53,1888000.13,296124.40 Central America and the Caribbean,Saint Kitts and Nevis ,Meat,Online,L,12/27/2011,447913300,1/6/2012,6354,421.89,364.69,2680689.06,2317240.26,363448.80 Europe,Italy,Personal Care,Online,L,2/25/2013,617549502,3/6/2013,5476,81.73,56.67,447553.48,310324.92,137228.56 Central America and the Caribbean,Costa Rica,Office Supplies,Online,L,10/12/2016,599498021,11/6/2016,3641,651.21,524.96,2371055.61,1911379.36,459676.25 Europe,Ireland,Cereal,Online,H,10/20/2013,475057685,11/7/2013,8981,205.70,117.11,1847391.70,1051764.91,795626.79 Sub-Saharan Africa,Seychelles ,Fruits,Offline,L,5/15/2011,845839822,5/29/2011,1655,9.33,6.92,15441.15,11452.60,3988.55 Europe,Russia,Snacks,Online,C,11/26/2013,583768260,12/22/2013,8856,152.58,97.44,1351248.48,862928.64,488319.84 North America,United States of America,Fruits,Offline,M,10/3/2011,881079328,11/1/2011,9807,9.33,6.92,91499.31,67864.44,23634.87 Sub-Saharan Africa,Namibia,Vegetables,Offline,C,4/7/2015,300321853,5/17/2015,765,154.06,90.93,117855.90,69561.45,48294.45 Australia and Oceania,Kiribati,Vegetables,Online,C,2/12/2013,624357163,3/18/2013,14,154.06,90.93,2156.84,1273.02,883.82 Sub-Saharan Africa,Swaziland,Snacks,Offline,C,1/2/2014,106359088,1/31/2014,2873,152.58,97.44,438362.34,279945.12,158417.22 Central America and the Caribbean,Cuba,Cereal,Online,M,7/12/2012,219813954,7/15/2012,6689,205.70,117.11,1375927.30,783348.79,592578.51 Europe,Croatia,Office Supplies,Online,M,9/21/2015,708520591,10/17/2015,5843,651.21,524.96,3805020.03,3067341.28,737678.75 Europe,Andorra,Beverages,Online,H,7/11/2016,936590325,8/7/2016,6745,47.45,31.79,320050.25,214423.55,105626.70 Asia,Japan,Snacks,Online,L,9/30/2012,338446986,10/26/2012,2839,152.58,97.44,433174.62,276632.16,156542.46 Asia,Maldives,Baby Food,Online,L,10/28/2010,668826901,11/2/2010,9598,255.28,159.42,2450177.44,1530113.16,920064.28 Middle East and North Africa,Somalia,Personal Care,Offline,L,6/19/2014,152778899,7/25/2014,9526,81.73,56.67,778559.98,539838.42,238721.56 Europe,Armenia,Vegetables,Online,C,4/24/2013,235664308,4/26/2013,7160,154.06,90.93,1103069.60,651058.80,452010.80 Europe,Finland,Baby Food,Online,H,12/29/2016,633156955,1/24/2017,4068,255.28,159.42,1038479.04,648520.56,389958.48 Europe,Netherlands,Vegetables,Offline,H,6/29/2013,681243169,8/11/2013,3847,154.06,90.93,592668.82,349807.71,242861.11 Asia,Cambodia,Cereal,Offline,L,10/14/2010,686221778,11/10/2010,7128,205.70,117.11,1466229.60,834760.08,631469.52 Europe,Greece,Personal Care,Online,M,5/2/2010,574704110,5/18/2010,6572,81.73,56.67,537129.56,372435.24,164694.32 Middle East and North Africa,Jordan,Personal Care,Online,L,11/21/2010,343613994,12/26/2010,1871,81.73,56.67,152916.83,106029.57,46887.26 Asia,Myanmar,Fruits,Offline,L,4/6/2012,510187757,4/29/2012,4750,9.33,6.92,44317.50,32870.00,11447.50 Asia,Kazakhstan,Cereal,Online,C,7/18/2011,761974227,7/24/2011,3961,205.70,117.11,814777.70,463872.71,350904.99 Australia and Oceania,East Timor,Cosmetics,Online,L,6/17/2014,406834733,7/14/2014,293,437.20,263.33,128099.60,77155.69,50943.91 Australia and Oceania,Vanuatu,Clothes,Online,C,6/10/2016,622943103,6/22/2016,1562,109.28,35.84,170695.36,55982.08,114713.28 Europe,Macedonia,Beverages,Offline,L,12/28/2013,408785665,12/31/2013,7617,47.45,31.79,361426.65,242144.43,119282.22 Sub-Saharan Africa,Djibouti,Clothes,Online,L,1/12/2016,633161246,2/14/2016,5338,109.28,35.84,583336.64,191313.92,392022.72 Europe,Iceland,Cereal,Offline,C,5/27/2017,885181176,7/9/2017,3636,205.70,117.11,747925.20,425811.96,322113.24 Middle East and North Africa,Egypt,Snacks,Offline,H,3/22/2010,824269282,4/5/2010,8453,152.58,97.44,1289758.74,823660.32,466098.42 Sub-Saharan Africa,Nigeria,Household,Online,C,5/26/2010,630161893,7/9/2010,7763,668.27,502.54,5187780.01,3901218.02,1286561.99 Europe,Slovakia,Office Supplies,Offline,L,12/19/2015,552907836,1/1/2016,6570,651.21,524.96,4278449.70,3448987.20,829462.50 Asia,Taiwan,Personal Care,Offline,C,11/18/2010,462868440,12/9/2010,1912,81.73,56.67,156267.76,108353.04,47914.72 Asia,Sri Lanka,Beverages,Offline,M,3/29/2014,300717532,3/29/2014,7855,47.45,31.79,372719.75,249710.45,123009.30 Sub-Saharan Africa,Gabon,Personal Care,Offline,L,12/2/2015,527441442,1/21/2016,498,81.73,56.67,40701.54,28221.66,12479.88 Sub-Saharan Africa,Republic of the Congo,Fruits,Offline,L,8/21/2010,774338996,8/27/2010,2971,9.33,6.92,27719.43,20559.32,7160.11 Central America and the Caribbean,The Bahamas,Baby Food,Online,L,11/25/2016,293021523,12/14/2016,435,255.28,159.42,111046.80,69347.70,41699.10 Middle East and North Africa,Qatar,Fruits,Offline,L,8/21/2012,205412852,9/17/2012,5083,9.33,6.92,47424.39,35174.36,12250.03 Central America and the Caribbean,Costa Rica,Baby Food,Offline,L,9/11/2014,353749310,10/12/2014,1137,255.28,159.42,290253.36,181260.54,108992.82 Sub-Saharan Africa,Mozambique,Meat,Offline,M,6/24/2014,650579726,7/13/2014,9853,421.89,364.69,4156882.17,3593290.57,563591.60 Asia,Singapore,Meat,Offline,M,1/16/2012,628765428,3/3/2012,4517,421.89,364.69,1905677.13,1647304.73,258372.40 Australia and Oceania,East Timor,Cosmetics,Offline,H,4/13/2012,791480243,4/16/2012,5447,437.20,263.33,2381428.40,1434358.51,947069.89 Sub-Saharan Africa,Central African Republic,Cereal,Online,H,8/4/2013,362210500,9/17/2013,4991,205.70,117.11,1026648.70,584496.01,442152.69 Middle East and North Africa,Oman,Vegetables,Online,M,8/21/2011,434755027,8/31/2011,2529,154.06,90.93,389617.74,229961.97,159655.77 Middle East and North Africa,Bahrain,Fruits,Online,H,9/25/2010,823225152,10/4/2010,9471,9.33,6.92,88364.43,65539.32,22825.11 Central America and the Caribbean,Haiti,Clothes,Online,M,6/16/2012,512044703,7/22/2012,4261,109.28,35.84,465642.08,152714.24,312927.84 North America,Mexico,Cereal,Offline,C,11/24/2011,805950009,1/9/2012,7373,205.70,117.11,1516626.10,863452.03,653174.07 Europe,Belgium,Beverages,Online,M,7/19/2016,379989898,8/25/2016,6310,47.45,31.79,299409.50,200594.90,98814.60 Asia,Uzbekistan,Meat,Offline,L,4/6/2012,229525697,4/22/2012,609,421.89,364.69,256931.01,222096.21,34834.80 Sub-Saharan Africa,Central African Republic,Fruits,Offline,C,6/17/2012,520231235,7/20/2012,6838,9.33,6.92,63798.54,47318.96,16479.58 Europe,Sweden,Cosmetics,Offline,M,6/23/2016,138092839,8/9/2016,3595,437.20,263.33,1571734.00,946671.35,625062.65 Europe,Serbia,Household,Offline,L,5/10/2013,739409339,5/16/2013,6510,668.27,502.54,4350437.70,3271535.40,1078902.30 Europe,Montenegro,Meat,Online,H,12/5/2015,900792062,12/30/2015,3244,421.89,364.69,1368611.16,1183054.36,185556.80 Central America and the Caribbean,Cuba,Beverages,Offline,M,7/30/2011,169164836,8/1/2011,8489,47.45,31.79,402803.05,269865.31,132937.74 Australia and Oceania,Vanuatu,Household,Offline,H,6/23/2011,411763989,6/25/2011,8970,668.27,502.54,5994381.90,4507783.80,1486598.10 Middle East and North Africa,Egypt,Personal Care,Online,C,6/30/2016,866138350,7/28/2016,8440,81.73,56.67,689801.20,478294.80,211506.40 Europe,Russia,Office Supplies,Online,C,6/10/2013,390149247,7/23/2013,2687,651.21,524.96,1749801.27,1410567.52,339233.75 Sub-Saharan Africa,Botswana,Baby Food,Online,H,9/1/2016,611970508,9/3/2016,4527,255.28,159.42,1155652.56,721694.34,433958.22 Europe,Macedonia,Personal Care,Offline,M,4/29/2011,980088460,5/21/2011,8810,81.73,56.67,720041.30,499262.70,220778.60 Sub-Saharan Africa,Ghana,Baby Food,Offline,H,2/11/2010,113301932,2/19/2010,7414,255.28,159.42,1892645.92,1181939.88,710706.04 Central America and the Caribbean,Saint Kitts and Nevis ,Meat,Online,M,8/31/2011,750722253,9/28/2011,4252,421.89,364.69,1793876.28,1550661.88,243214.40 Europe,Iceland,Personal Care,Offline,H,11/20/2011,301773250,12/30/2011,265,81.73,56.67,21658.45,15017.55,6640.90 Middle East and North Africa,Israel,Vegetables,Online,M,4/27/2015,296191251,5/9/2015,8428,154.06,90.93,1298417.68,766358.04,532059.64 Sub-Saharan Africa,Burkina Faso,Cosmetics,Online,C,3/19/2016,534025084,3/24/2016,8745,437.20,263.33,3823314.00,2302820.85,1520493.15 Europe,Georgia,Baby Food,Offline,H,6/18/2017,435636079,7/27/2017,3251,255.28,159.42,829915.28,518274.42,311640.86 Asia,Philippines,Cereal,Offline,H,8/29/2011,391698062,9/21/2011,1016,205.70,117.11,208991.20,118983.76,90007.44 Sub-Saharan Africa,Central African Republic,Cereal,Online,C,3/5/2015,413197362,4/6/2015,3136,205.70,117.11,645075.20,367256.96,277818.24 Europe,Croatia,Fruits,Offline,L,5/17/2011,581432807,6/13/2011,7743,9.33,6.92,72242.19,53581.56,18660.63 Asia,Brunei,Cereal,Online,H,12/25/2014,598015725,1/26/2015,4997,205.70,117.11,1027882.90,585198.67,442684.23 Middle East and North Africa,Tunisia ,Meat,Online,L,4/12/2015,234869945,4/22/2015,2091,421.89,364.69,882171.99,762566.79,119605.20 Europe,Germany,Cereal,Online,H,3/6/2010,684231793,4/14/2010,8248,205.70,117.11,1696613.60,965923.28,730690.32 Asia,Maldives,Office Supplies,Online,C,1/9/2010,508650100,2/9/2010,9723,651.21,524.96,6331714.83,5104186.08,1227528.75 Asia,Indonesia,Baby Food,Online,H,1/31/2011,590986192,2/16/2011,4802,255.28,159.42,1225854.56,765534.84,460319.72 Middle East and North Africa,Saudi Arabia,Fruits,Offline,H,6/18/2014,984413897,6/27/2014,8803,9.33,6.92,82131.99,60916.76,21215.23 Central America and the Caribbean,Dominica,Office Supplies,Online,H,10/8/2014,462419545,11/17/2014,9074,651.21,524.96,5909079.54,4763487.04,1145592.50 Europe,Ireland,Baby Food,Offline,M,6/17/2011,568801963,7/13/2011,9996,255.28,159.42,2551778.88,1593562.32,958216.56 Sub-Saharan Africa,Mauritania,Beverages,Offline,M,8/17/2012,667672479,10/5/2012,7978,47.45,31.79,378556.10,253620.62,124935.48 Europe,Norway,Office Supplies,Offline,H,1/28/2016,193454921,2/24/2016,6465,651.21,524.96,4210072.65,3393866.40,816206.25 Sub-Saharan Africa,Guinea,Meat,Offline,L,2/2/2013,900885617,3/18/2013,929,421.89,364.69,391935.81,338797.01,53138.80 Central America and the Caribbean,Jamaica,Cereal,Online,C,12/19/2014,115013396,1/7/2015,3875,205.70,117.11,797087.50,453801.25,343286.25 Sub-Saharan Africa,The Gambia,Cereal,Online,L,5/3/2011,181199586,6/10/2011,9839,205.70,117.11,2023882.30,1152245.29,871637.01 Europe,Cyprus,Fruits,Online,M,10/31/2011,815118014,11/22/2011,389,9.33,6.92,3629.37,2691.88,937.49 Europe,Denmark,Vegetables,Online,C,1/3/2012,452755010,1/10/2012,9123,154.06,90.93,1405489.38,829554.39,575934.99 Middle East and North Africa,Morocco,Baby Food,Offline,H,4/5/2012,300409400,4/23/2012,6672,255.28,159.42,1703228.16,1063650.24,639577.92 Europe,Armenia,Clothes,Offline,M,1/24/2014,284692513,3/6/2014,5696,109.28,35.84,622458.88,204144.64,418314.24 Middle East and North Africa,Saudi Arabia,Cereal,Offline,H,3/2/2016,402528178,3/3/2016,5888,205.70,117.11,1211161.60,689543.68,521617.92 Sub-Saharan Africa,Benin,Vegetables,Offline,C,10/21/2010,271152722,11/30/2010,8971,154.06,90.93,1382072.26,815733.03,566339.23 Central America and the Caribbean,The Bahamas,Beverages,Online,L,3/18/2010,478114974,4/18/2010,3700,47.45,31.79,175565.00,117623.00,57942.00 Sub-Saharan Africa,Lesotho,Cereal,Online,H,7/16/2012,331276261,8/1/2012,862,205.70,117.11,177313.40,100948.82,76364.58 Central America and the Caribbean,Guatemala,Beverages,Offline,H,3/25/2013,108810412,4/18/2013,8274,47.45,31.79,392601.30,263030.46,129570.84 Middle East and North Africa,Israel,Personal Care,Offline,L,5/7/2016,609203755,6/24/2016,5784,81.73,56.67,472726.32,327779.28,144947.04 Asia,Kyrgyzstan,Cereal,Online,L,9/4/2015,901255118,9/19/2015,272,205.70,117.11,55950.40,31853.92,24096.48 Sub-Saharan Africa,Botswana,Vegetables,Offline,M,8/14/2013,574075829,9/4/2013,650,154.06,90.93,100139.00,59104.50,41034.50 Sub-Saharan Africa,Rwanda,Cosmetics,Offline,L,6/14/2017,187089717,8/1/2017,2860,437.20,263.33,1250392.00,753123.80,497268.20 Europe,Belgium,Office Supplies,Online,M,10/13/2012,820033109,11/21/2012,4875,651.21,524.96,3174648.75,2559180.00,615468.75 Asia,Uzbekistan,Clothes,Online,C,10/18/2012,922954833,11/16/2012,1700,109.28,35.84,185776.00,60928.00,124848.00 Europe,Germany,Household,Offline,C,8/5/2016,366216218,8/18/2016,372,668.27,502.54,248596.44,186944.88,61651.56 Europe,Georgia,Baby Food,Online,L,12/24/2012,890491092,1/22/2013,4958,255.28,159.42,1265678.24,790404.36,475273.88 Europe,Lithuania,Beverages,Offline,L,7/19/2014,256765782,8/10/2014,1556,47.45,31.79,73832.20,49465.24,24366.96 Middle East and North Africa,Iraq,Baby Food,Offline,L,1/7/2016,796339118,2/5/2016,3296,255.28,159.42,841402.88,525448.32,315954.56 Middle East and North Africa,Somalia,Office Supplies,Online,C,3/7/2013,860822427,3/8/2013,5340,651.21,524.96,3477461.40,2803286.40,674175.00 North America,Greenland,Personal Care,Offline,H,4/1/2014,672139537,4/27/2014,9880,81.73,56.67,807492.40,559899.60,247592.80 Sub-Saharan Africa,Zimbabwe,Office Supplies,Online,H,5/9/2013,972526776,5/13/2013,1140,651.21,524.96,742379.40,598454.40,143925.00 Central America and the Caribbean,Grenada,Cosmetics,Offline,H,1/18/2017,774532973,2/12/2017,373,437.20,263.33,163075.60,98222.09,64853.51 Sub-Saharan Africa,Cote d'Ivoire,Clothes,Offline,H,3/30/2010,511019456,5/12/2010,868,109.28,35.84,94855.04,31109.12,63745.92 Sub-Saharan Africa,Malawi,Cereal,Offline,H,12/21/2012,685160052,2/7/2013,2940,205.70,117.11,604758.00,344303.40,260454.60 Middle East and North Africa,Saudi Arabia,Cereal,Online,M,1/25/2016,520441091,3/9/2016,8939,205.70,117.11,1838752.30,1046846.29,791906.01 Sub-Saharan Africa,Mauritania,Office Supplies,Offline,C,3/9/2015,210661399,4/2/2015,8244,651.21,524.96,5368575.24,4327770.24,1040805.00 Middle East and North Africa,Qatar,Snacks,Offline,C,8/23/2014,469932305,10/7/2014,2267,152.58,97.44,345898.86,220896.48,125002.38 Central America and the Caribbean,The Bahamas,Beverages,Offline,L,1/8/2016,282677638,1/8/2016,9450,47.45,31.79,448402.50,300415.50,147987.00 Sub-Saharan Africa,Ghana,Cereal,Offline,L,5/27/2014,953633725,7/14/2014,266,205.70,117.11,54716.20,31151.26,23564.94 Middle East and North Africa,Morocco,Baby Food,Offline,M,4/14/2017,257849395,5/18/2017,2221,255.28,159.42,566976.88,354071.82,212905.06 Middle East and North Africa,Afghanistan,Beverages,Offline,H,7/10/2010,990685975,7/26/2010,4850,47.45,31.79,230132.50,154181.50,75951.00 Middle East and North Africa,Libya,Cereal,Online,C,2/8/2015,617817294,3/23/2015,4721,205.70,117.11,971109.70,552876.31,418233.39 Australia and Oceania,Australia,Snacks,Online,L,3/23/2015,725229680,4/17/2015,433,152.58,97.44,66067.14,42191.52,23875.62 Middle East and North Africa,Morocco,Cosmetics,Offline,L,1/26/2015,269221961,2/6/2015,7616,437.20,263.33,3329715.20,2005521.28,1324193.92 Sub-Saharan Africa,Swaziland,Fruits,Online,C,4/28/2012,526405465,5/12/2012,3930,9.33,6.92,36666.90,27195.60,9471.30 Middle East and North Africa,Algeria,Baby Food,Offline,L,2/2/2017,143704020,3/7/2017,4068,255.28,159.42,1038479.04,648520.56,389958.48 Asia,Singapore,Vegetables,Offline,C,4/2/2010,988353955,5/5/2010,4754,154.06,90.93,732401.24,432281.22,300120.02 Middle East and North Africa,Morocco,Cereal,Offline,H,5/27/2015,497904098,6/11/2015,9742,205.70,117.11,2003929.40,1140885.62,863043.78 Sub-Saharan Africa,Seychelles ,Baby Food,Offline,C,10/5/2011,230215775,11/21/2011,4819,255.28,159.42,1230194.32,768244.98,461949.34 Sub-Saharan Africa,Mauritania,Clothes,Online,H,9/11/2013,913462817,10/9/2013,2802,109.28,35.84,306202.56,100423.68,205778.88 Sub-Saharan Africa,Democratic Republic of the Congo,Snacks,Offline,H,12/1/2013,196131551,12/30/2013,8539,152.58,97.44,1302880.62,832040.16,470840.46 Central America and the Caribbean,Nicaragua,Baby Food,Offline,L,7/26/2017,297020804,7/29/2017,3911,255.28,159.42,998400.08,623491.62,374908.46 Europe,Russia,Office Supplies,Offline,L,9/11/2015,355241906,10/2/2015,2829,651.21,524.96,1842273.09,1485111.84,357161.25 Central America and the Caribbean,Dominica,Personal Care,Offline,H,10/12/2011,480218684,11/18/2011,6235,81.73,56.67,509586.55,353337.45,156249.10 Middle East and North Africa,Iran,Household,Online,M,5/15/2010,401687467,6/6/2010,7103,668.27,502.54,4746721.81,3569541.62,1177180.19 Sub-Saharan Africa,Senegal,Cereal,Offline,L,4/14/2013,819697082,5/18/2013,5437,205.70,117.11,1118390.90,636727.07,481663.83 Asia,Thailand,Household,Offline,H,11/4/2015,254608857,12/20/2015,3274,668.27,502.54,2187915.98,1645315.96,542600.02 Sub-Saharan Africa,South Africa,Clothes,Offline,C,8/20/2010,897096621,9/4/2010,9681,109.28,35.84,1057939.68,346967.04,710972.64 Sub-Saharan Africa,South Sudan,Baby Food,Offline,C,1/14/2014,958146703,2/1/2014,5756,255.28,159.42,1469391.68,917621.52,551770.16 Europe,Bulgaria,Personal Care,Offline,L,12/28/2016,519057929,1/11/2017,9631,81.73,56.67,787141.63,545788.77,241352.86 Middle East and North Africa,Qatar,Cereal,Online,H,7/1/2011,181441628,7/29/2011,1465,205.70,117.11,301350.50,171566.15,129784.35 Asia,Myanmar,Office Supplies,Offline,L,2/14/2017,617221629,3/9/2017,8451,651.21,524.96,5503375.71,4436436.96,1066938.75 Middle East and North Africa,Saudi Arabia,Baby Food,Offline,M,8/24/2016,318634259,9/19/2016,9813,255.28,159.42,2505062.64,1564388.46,940674.18 Europe,Kosovo,Household,Online,H,10/31/2012,548228347,11/1/2012,1806,668.27,502.54,1206895.62,907587.24,299308.38 Middle East and North Africa,Jordan,Clothes,Offline,L,2/3/2017,388865220,3/1/2017,2715,109.28,35.84,296695.20,97305.60,199389.60 Central America and the Caribbean,Saint Kitts and Nevis ,Snacks,Online,C,5/23/2015,793718707,6/9/2015,7858,152.58,97.44,1198973.64,765683.52,433290.12 Central America and the Caribbean,Saint Lucia,Baby Food,Offline,H,6/24/2017,536275136,6/28/2017,4585,255.28,159.42,1170458.80,730940.70,439518.10 Europe,Switzerland,Household,Offline,L,3/30/2015,260333335,4/3/2015,7274,668.27,502.54,4860995.98,3655475.96,1205520.02 Europe,Lithuania,Baby Food,Online,C,10/9/2016,230004632,11/27/2016,2337,255.28,159.42,596589.36,372564.54,224024.82 Australia and Oceania,East Timor,Cosmetics,Online,H,4/19/2012,779712855,4/24/2012,3216,437.20,263.33,1406035.20,846869.28,559165.92 Europe,Vatican City,Cereal,Offline,C,10/31/2015,964194333,11/9/2015,5385,205.70,117.11,1107694.50,630637.35,477057.15 Asia,Laos,Clothes,Online,L,12/9/2015,808497893,1/8/2016,1348,109.28,35.84,147309.44,48312.32,98997.12 Europe,Belgium,Baby Food,Online,C,5/27/2017,857984864,5/28/2017,5643,255.28,159.42,1440545.04,899607.06,540937.98 Europe,Germany,Clothes,Offline,H,9/17/2014,828329074,11/3/2014,9835,109.28,35.84,1074768.80,352486.40,722282.40 Europe,Andorra,Meat,Offline,C,12/28/2010,955516850,12/28/2010,7525,421.89,364.69,3174722.25,2744292.25,430430.00 Europe,Russia,Cosmetics,Offline,C,3/18/2014,645847022,4/24/2014,9341,437.20,263.33,4083885.20,2459765.53,1624119.67 Middle East and North Africa,United Arab Emirates,Baby Food,Offline,L,9/13/2010,725930917,10/27/2010,7945,255.28,159.42,2028199.60,1266591.90,761607.70 Europe,Finland,Clothes,Offline,C,5/7/2014,292692363,6/23/2014,3029,109.28,35.84,331009.12,108559.36,222449.76 Europe,Bosnia and Herzegovina,Personal Care,Offline,M,5/23/2017,763367688,6/26/2017,6318,81.73,56.67,516370.14,358041.06,158329.08 Asia,Uzbekistan,Baby Food,Online,L,12/3/2016,925505721,1/5/2017,6565,255.28,159.42,1675913.20,1046592.30,629320.90 Sub-Saharan Africa,Chad,Cosmetics,Offline,H,2/4/2011,986967790,3/9/2011,4556,437.20,263.33,1991883.20,1199731.48,792151.72 Europe,Armenia,Vegetables,Offline,L,6/29/2010,325927722,7/13/2010,8111,154.06,90.93,1249580.66,737533.23,512047.43 Asia,Cambodia,Office Supplies,Online,C,8/10/2011,640871846,8/28/2011,7076,651.21,524.96,4607961.96,3714616.96,893345.00 Europe,Poland,Household,Online,L,10/16/2015,100598990,11/10/2015,8332,668.27,502.54,5568025.64,4187163.28,1380862.36 Asia,Japan,Clothes,Online,M,4/24/2010,994220483,5/22/2010,790,109.28,35.84,86331.20,28313.60,58017.60 Central America and the Caribbean,Dominica,Clothes,Offline,M,1/4/2010,281160151,1/12/2010,392,109.28,35.84,42837.76,14049.28,28788.48 Sub-Saharan Africa,Mauritius ,Fruits,Online,C,8/24/2015,841154325,9/4/2015,5112,9.33,6.92,47694.96,35375.04,12319.92 Sub-Saharan Africa,Rwanda,Cosmetics,Offline,M,2/7/2010,224251830,2/28/2010,9955,437.20,263.33,4352326.00,2621450.15,1730875.85 Sub-Saharan Africa,Angola,Beverages,Offline,M,3/18/2015,100813996,4/21/2015,1957,47.45,31.79,92859.65,62213.03,30646.62 Sub-Saharan Africa,Angola,Fruits,Offline,H,3/11/2012,411514651,4/15/2012,5185,9.33,6.92,48376.05,35880.20,12495.85 Asia,Taiwan,Office Supplies,Online,H,8/25/2013,717340123,9/15/2013,5738,651.21,524.96,3736642.98,3012220.48,724422.50 Sub-Saharan Africa,Chad,Beverages,Offline,H,4/19/2014,649589240,5/19/2014,6746,47.45,31.79,320097.70,214455.34,105642.36 Australia and Oceania,Tonga,Baby Food,Online,M,7/3/2017,359873330,7/14/2017,3370,255.28,159.42,860293.60,537245.40,323048.20 Sub-Saharan Africa,Zambia,Baby Food,Online,C,5/1/2016,970116221,5/3/2016,7803,255.28,159.42,1991949.84,1243954.26,747995.58 Europe,Cyprus,Beverages,Offline,C,6/26/2012,522554242,7/1/2012,4267,47.45,31.79,202469.15,135647.93,66821.22 Europe,Netherlands,Baby Food,Offline,H,7/9/2012,729736220,7/18/2012,4019,255.28,159.42,1025970.32,640708.98,385261.34 Europe,Macedonia,Cosmetics,Offline,M,6/27/2016,224523484,7/14/2016,343,437.20,263.33,149959.60,90322.19,59637.41 Sub-Saharan Africa,Eritrea,Fruits,Online,M,2/20/2014,410089862,3/12/2014,3558,9.33,6.92,33196.14,24621.36,8574.78 Sub-Saharan Africa,Namibia,Cosmetics,Offline,C,6/10/2011,509921681,7/2/2011,6012,437.20,263.33,2628446.40,1583139.96,1045306.44 Europe,Russia,Clothes,Offline,C,8/20/2011,717817771,9/5/2011,7085,109.28,35.84,774248.80,253926.40,520322.40 Europe,Germany,Meat,Offline,H,6/14/2011,847889459,6/22/2011,8188,421.89,364.69,3454435.32,2986081.72,468353.60 Central America and the Caribbean,Barbados,Fruits,Offline,H,6/25/2012,784560573,8/8/2012,7763,9.33,6.92,72428.79,53719.96,18708.83 Asia,North Korea,Vegetables,Online,L,5/18/2017,932567441,6/15/2017,6284,154.06,90.93,968113.04,571404.12,396708.92 Middle East and North Africa,Jordan,Vegetables,Offline,C,12/4/2010,866958892,12/12/2010,1257,154.06,90.93,193653.42,114299.01,79354.41 Middle East and North Africa,Oman,Office Supplies,Offline,C,10/30/2016,683096253,12/13/2016,2216,651.21,524.96,1443081.36,1163311.36,279770.00 Sub-Saharan Africa,Guinea-Bissau,Cosmetics,Online,H,8/26/2010,546653354,9/27/2010,5730,437.20,263.33,2505156.00,1508880.90,996275.10 Europe,Liechtenstein,Personal Care,Offline,L,6/12/2014,243616521,7/14/2014,397,81.73,56.67,32446.81,22497.99,9948.82 Asia,Bangladesh,Beverages,Offline,C,4/4/2017,530284583,5/19/2017,1847,47.45,31.79,87640.15,58716.13,28924.02 Europe,Liechtenstein,Cereal,Offline,L,10/6/2016,883268868,11/6/2016,7741,205.70,117.11,1592323.70,906548.51,685775.19 Sub-Saharan Africa,Liberia,Fruits,Offline,H,7/4/2015,849493205,8/15/2015,2772,9.33,6.92,25862.76,19182.24,6680.52 Europe,Albania,Cosmetics,Online,H,1/27/2017,496193921,3/10/2017,3663,437.20,263.33,1601463.60,964577.79,636885.81 Europe,Cyprus,Clothes,Offline,H,10/11/2014,860919845,11/12/2014,4168,109.28,35.84,455479.04,149381.12,306097.92 Europe,Croatia,Household,Online,M,7/20/2010,801532304,8/17/2010,75,668.27,502.54,50120.25,37690.50,12429.75 Asia,Cambodia,Household,Online,H,3/12/2011,146205127,4/14/2011,4201,668.27,502.54,2807402.27,2111170.54,696231.73 Asia,Mongolia,Fruits,Offline,H,12/25/2016,143424642,1/8/2017,1394,9.33,6.92,13006.02,9646.48,3359.54 Central America and the Caribbean,Antigua and Barbuda ,Cereal,Offline,M,5/6/2010,311989676,6/3/2010,3533,205.70,117.11,726738.10,413749.63,312988.47 Europe,Hungary,Office Supplies,Online,M,8/15/2012,691011559,9/26/2012,4531,651.21,524.96,2950632.51,2378593.76,572038.75 Sub-Saharan Africa,Senegal,Clothes,Online,L,2/23/2012,489914119,3/5/2012,5330,109.28,35.84,582462.40,191027.20,391435.20 Middle East and North Africa,Qatar,Cosmetics,Offline,L,6/19/2013,338433682,6/27/2013,8902,437.20,263.33,3891954.40,2344163.66,1547790.74 Asia,Philippines,Cereal,Online,C,10/29/2010,936619079,12/9/2010,5254,205.70,117.11,1080747.80,615295.94,465451.86 Australia and Oceania,Palau,Meat,Online,H,9/10/2014,804831635,10/10/2014,6421,421.89,364.69,2708955.69,2341674.49,367281.20 Sub-Saharan Africa,Comoros,Personal Care,Online,H,1/31/2010,333745181,3/8/2010,1470,81.73,56.67,120143.10,83304.90,36838.20 Asia,Tajikistan,Cereal,Online,C,5/18/2013,434346044,6/19/2013,1501,205.70,117.11,308755.70,175782.11,132973.59 Europe,Hungary,Cereal,Offline,L,7/6/2015,287933051,8/4/2015,4643,205.70,117.11,955065.10,543741.73,411323.37 Europe,Switzerland,Fruits,Offline,H,1/22/2016,496117532,1/24/2016,1057,9.33,6.92,9861.81,7314.44,2547.37 Australia and Oceania,Vanuatu,Office Supplies,Online,C,11/14/2011,830823314,11/28/2011,7936,651.21,524.96,5168002.56,4166082.56,1001920.00 Middle East and North Africa,Egypt,Cosmetics,Online,C,1/6/2016,684286725,2/17/2016,4503,437.20,263.33,1968711.60,1185774.99,782936.61 Sub-Saharan Africa,Ghana,Cosmetics,Online,L,2/11/2016,419056594,4/1/2016,7013,437.20,263.33,3066083.60,1846733.29,1219350.31 Europe,Lithuania,Clothes,Offline,M,1/2/2016,917994248,1/16/2016,3753,109.28,35.84,410127.84,134507.52,275620.32 Asia,Sri Lanka,Personal Care,Offline,C,10/17/2016,434273517,10/21/2016,39,81.73,56.67,3187.47,2210.13,977.34 Sub-Saharan Africa,Guinea-Bissau,Household,Online,M,2/3/2013,441380727,3/22/2013,3220,668.27,502.54,2151829.40,1618178.80,533650.60 Sub-Saharan Africa,Central African Republic,Personal Care,Offline,H,12/5/2011,683114707,12/15/2011,7677,81.73,56.67,627441.21,435055.59,192385.62 Asia,Malaysia,Vegetables,Online,C,10/27/2013,523586785,11/22/2013,9820,154.06,90.93,1512869.20,892932.60,619936.60 Europe,Portugal,Cosmetics,Online,M,7/28/2016,297220790,8/10/2016,3091,437.20,263.33,1351385.20,813953.03,537432.17 Europe,France,Snacks,Online,M,6/22/2011,858753049,6/25/2011,2965,152.58,97.44,452399.70,288909.60,163490.10 Central America and the Caribbean,Costa Rica,Household,Online,L,5/21/2017,433232390,6/9/2017,1947,668.27,502.54,1301121.69,978445.38,322676.31 Sub-Saharan Africa,Togo,Cosmetics,Offline,M,5/16/2016,466020143,6/29/2016,4571,437.20,263.33,1998441.20,1203681.43,794759.77 Europe,Portugal,Office Supplies,Offline,C,6/30/2010,672790133,8/18/2010,2406,651.21,524.96,1566811.26,1263053.76,303757.50 Europe,Austria,Beverages,Offline,M,6/12/2010,389528691,7/3/2010,9051,47.45,31.79,429469.95,287731.29,141738.66 Sub-Saharan Africa,Madagascar,Office Supplies,Offline,C,8/19/2016,822534644,9/22/2016,5135,651.21,524.96,3343963.35,2695669.60,648293.75 Europe,Bosnia and Herzegovina,Meat,Offline,H,5/18/2015,998419320,6/12/2015,3319,421.89,364.69,1400252.91,1210406.11,189846.80 Europe,Switzerland,Personal Care,Online,H,12/30/2012,914106547,1/18/2013,3296,81.73,56.67,269382.08,186784.32,82597.76 Asia,Bhutan,Baby Food,Offline,H,11/16/2016,186832654,11/22/2016,6789,255.28,159.42,1733095.92,1082302.38,650793.54 Sub-Saharan Africa,Guinea-Bissau,Fruits,Online,H,7/14/2016,304146468,7/26/2016,2554,9.33,6.92,23828.82,17673.68,6155.14 Sub-Saharan Africa,Cape Verde,Meat,Online,H,2/15/2010,573909318,3/16/2010,1376,421.89,364.69,580520.64,501813.44,78707.20 Asia,Cambodia,Snacks,Online,L,10/19/2015,374295032,11/21/2015,1072,152.58,97.44,163565.76,104455.68,59110.08 Sub-Saharan Africa,Zambia,Office Supplies,Online,L,11/28/2014,503789937,12/16/2014,1493,651.21,524.96,972256.53,783765.28,188491.25 Sub-Saharan Africa,Zimbabwe,Vegetables,Online,C,5/18/2016,931192862,5/31/2016,9516,154.06,90.93,1466034.96,865289.88,600745.08 Europe,Portugal,Vegetables,Offline,L,1/18/2015,345615136,1/30/2015,4054,154.06,90.93,624559.24,368630.22,255929.02 Europe,Italy,Meat,Offline,M,8/12/2010,206480586,9/29/2010,1049,421.89,364.69,442562.61,382559.81,60002.80 Europe,Liechtenstein,Office Supplies,Offline,C,5/28/2011,693525540,6/10/2011,8474,651.21,524.96,5518353.54,4448511.04,1069842.50 Central America and the Caribbean,Honduras,Snacks,Offline,M,6/16/2015,256798827,7/29/2015,1334,152.58,97.44,203541.72,129984.96,73556.76 Asia,India,Office Supplies,Online,M,4/18/2014,566661775,5/21/2014,6666,651.21,524.96,4340965.86,3499383.36,841582.50 Asia,India,Household,Online,C,11/18/2011,663788211,12/7/2011,8537,668.27,502.54,5705020.99,4290183.98,1414837.01 Sub-Saharan Africa,Tanzania,Cereal,Online,C,3/23/2013,109164464,5/12/2013,3046,205.70,117.11,626562.20,356717.06,269845.14 Europe,Belarus,Baby Food,Offline,H,1/20/2013,334089362,1/29/2013,3321,255.28,159.42,847784.88,529433.82,318351.06 Sub-Saharan Africa,Madagascar,Clothes,Online,M,9/23/2014,590174233,11/12/2014,4526,109.28,35.84,494601.28,162211.84,332389.44 Europe,Finland,Household,Online,C,4/25/2011,199342906,5/2/2011,8851,668.27,502.54,5914857.77,4447981.54,1466876.23 Sub-Saharan Africa,Lesotho,Household,Offline,H,2/3/2012,803831708,3/9/2012,520,668.27,502.54,347500.40,261320.80,86179.60 Europe,Georgia,Cereal,Offline,M,1/15/2016,516189467,2/5/2016,789,205.70,117.11,162297.30,92399.79,69897.51 Middle East and North Africa,Bahrain,Clothes,Offline,C,8/21/2015,669277513,9/9/2015,2944,109.28,35.84,321720.32,105512.96,216207.36 Sub-Saharan Africa,Eritrea,Household,Online,H,10/12/2015,866269671,11/1/2015,7301,668.27,502.54,4879039.27,3669044.54,1209994.73 Europe,Slovakia,Meat,Offline,C,11/11/2014,330652272,12/9/2014,6210,421.89,364.69,2619936.90,2264724.90,355212.00 Middle East and North Africa,Jordan,Fruits,Online,H,2/16/2016,156224143,3/23/2016,9050,9.33,6.92,84436.50,62626.00,21810.50 North America,United States of America,Meat,Offline,L,4/22/2016,157096612,4/22/2016,7233,421.89,364.69,3051530.37,2637802.77,413727.60 Central America and the Caribbean,Nicaragua,Snacks,Offline,H,12/28/2016,217693507,1/11/2017,9201,152.58,97.44,1403888.58,896545.44,507343.14 Europe,Liechtenstein,Clothes,Offline,C,4/4/2013,742751157,5/10/2013,5428,109.28,35.84,593171.84,194539.52,398632.32 Middle East and North Africa,Qatar,Clothes,Offline,L,8/9/2012,407318389,8/20/2012,3418,109.28,35.84,373519.04,122501.12,251017.92 Europe,France,Cosmetics,Offline,H,1/14/2016,206756532,3/4/2016,2707,437.20,263.33,1183500.40,712834.31,470666.09 Europe,Luxembourg,Office Supplies,Online,L,3/30/2014,306739413,5/17/2014,9864,651.21,524.96,6423535.44,5178205.44,1245330.00 Australia and Oceania,Marshall Islands,Meat,Offline,L,2/20/2014,493253362,3/9/2014,3486,421.89,364.69,1470708.54,1271309.34,199399.20 Sub-Saharan Africa,Senegal,Snacks,Online,L,5/5/2012,622597205,5/10/2012,9203,152.58,97.44,1404193.74,896740.32,507453.42 Australia and Oceania,Samoa ,Cosmetics,Online,C,2/9/2014,171382272,3/7/2014,4678,437.20,263.33,2045221.60,1231857.74,813363.86 Europe,Slovenia,Household,Online,C,5/24/2014,486532390,6/22/2014,4601,668.27,502.54,3074710.27,2312186.54,762523.73 Europe,Sweden,Cosmetics,Online,M,10/18/2016,735283887,11/15/2016,5697,437.20,263.33,2490728.40,1500191.01,990537.39 Europe,Slovenia,Personal Care,Offline,H,8/17/2014,155185592,9/12/2014,1720,81.73,56.67,140575.60,97472.40,43103.20 Sub-Saharan Africa,Niger,Personal Care,Offline,M,5/22/2017,304098832,6/28/2017,8457,81.73,56.67,691190.61,479258.19,211932.42 Europe,Armenia,Snacks,Offline,L,9/26/2016,110197436,10/11/2016,8725,152.58,97.44,1331260.50,850164.00,481096.50 Europe,Sweden,Beverages,Offline,M,12/13/2012,821967732,1/10/2013,7373,47.45,31.79,349848.85,234387.67,115461.18 North America,Mexico,Office Supplies,Offline,M,3/4/2011,158208549,4/3/2011,6280,651.21,524.96,4089598.80,3296748.80,792850.00 Europe,Czech Republic,Personal Care,Offline,H,1/9/2010,858031213,2/18/2010,9358,81.73,56.67,764829.34,530317.86,234511.48 Middle East and North Africa,Israel,Cereal,Online,M,12/26/2012,330859553,1/9/2013,7549,205.70,117.11,1552829.30,884063.39,668765.91 Europe,Finland,Beverages,Online,M,1/12/2017,106429898,2/5/2017,3827,47.45,31.79,181591.15,121660.33,59930.82 Europe,Liechtenstein,Office Supplies,Online,M,5/31/2016,884791076,6/26/2016,8196,651.21,524.96,5337317.16,4302572.16,1034745.00 Sub-Saharan Africa,Seychelles ,Personal Care,Offline,L,1/7/2014,286304414,2/20/2014,2693,81.73,56.67,220098.89,152612.31,67486.58 Central America and the Caribbean,Haiti,Personal Care,Offline,M,1/3/2010,501643741,2/7/2010,6385,81.73,56.67,521846.05,361837.95,160008.10 Europe,Moldova ,Vegetables,Online,M,3/11/2013,641795384,4/4/2013,371,154.06,90.93,57156.26,33735.03,23421.23 Europe,Slovakia,Clothes,Offline,H,7/3/2014,788058173,7/25/2014,2781,109.28,35.84,303907.68,99671.04,204236.64 Sub-Saharan Africa,Rwanda,Personal Care,Offline,C,7/8/2013,642043435,7/12/2013,3775,81.73,56.67,308530.75,213929.25,94601.50 Australia and Oceania,New Zealand,Household,Offline,M,8/30/2014,875674998,10/3/2014,546,668.27,502.54,364875.42,274386.84,90488.58 Middle East and North Africa,Egypt,Meat,Online,L,11/9/2015,881189191,12/15/2015,2318,421.89,364.69,977941.02,845351.42,132589.60 Middle East and North Africa,Lebanon,Snacks,Online,L,4/18/2012,121134841,5/14/2012,5346,152.58,97.44,815692.68,520914.24,294778.44 Sub-Saharan Africa,Cameroon,Baby Food,Online,L,5/22/2015,378373277,6/22/2015,7916,255.28,159.42,2020796.48,1261968.72,758827.76 Central America and the Caribbean,Saint Kitts and Nevis ,Meat,Offline,M,2/5/2011,806078326,2/23/2011,5344,421.89,364.69,2254580.16,1948903.36,305676.80 Australia and Oceania,Palau,Personal Care,Offline,C,10/1/2016,177736318,10/18/2016,4981,81.73,56.67,407097.13,282273.27,124823.86 Australia and Oceania,Nauru,Clothes,Online,C,8/28/2016,937146079,10/12/2016,1205,109.28,35.84,131682.40,43187.20,88495.20 Sub-Saharan Africa,Liberia,Snacks,Offline,C,5/5/2011,648418939,6/6/2011,428,152.58,97.44,65304.24,41704.32,23599.92 Asia,Kyrgyzstan,Fruits,Online,C,9/29/2013,545978724,11/16/2013,6092,9.33,6.92,56838.36,42156.64,14681.72 Middle East and North Africa,Qatar,Snacks,Online,M,2/28/2015,584561765,3/26/2015,3671,152.58,97.44,560121.18,357702.24,202418.94 Asia,Vietnam,Household,Online,H,9/25/2011,789216887,11/1/2011,5670,668.27,502.54,3789090.90,2849401.80,939689.10 Central America and the Caribbean,Barbados,Meat,Offline,H,10/25/2015,805305421,11/7/2015,6625,421.89,364.69,2795021.25,2416071.25,378950.00 Central America and the Caribbean,Nicaragua,Fruits,Online,H,4/28/2014,348501193,5/27/2014,8102,9.33,6.92,75591.66,56065.84,19525.82 Europe,Germany,Meat,Online,H,5/18/2010,554790532,6/7/2010,3702,421.89,364.69,1561836.78,1350082.38,211754.40 Middle East and North Africa,Israel,Beverages,Online,H,12/16/2011,830472266,12/25/2011,4053,47.45,31.79,192314.85,128844.87,63469.98 Europe,Luxembourg,Cosmetics,Offline,C,12/15/2012,202157723,1/18/2013,1818,437.20,263.33,794829.60,478733.94,316095.66 Sub-Saharan Africa,Eritrea,Personal Care,Online,L,2/14/2012,466770732,3/6/2012,6687,81.73,56.67,546528.51,378952.29,167576.22 Sub-Saharan Africa,Guinea,Household,Offline,H,11/2/2016,341547620,11/9/2016,385,668.27,502.54,257283.95,193477.90,63806.05 Europe,San Marino,Clothes,Online,C,8/15/2016,414037215,9/5/2016,1668,109.28,35.84,182279.04,59781.12,122497.92 Sub-Saharan Africa,Equatorial Guinea,Beverages,Offline,L,3/14/2017,892100846,3/16/2017,1320,47.45,31.79,62634.00,41962.80,20671.20 Sub-Saharan Africa,Mauritius ,Personal Care,Offline,L,1/2/2014,253912341,2/1/2014,7159,81.73,56.67,585105.07,405700.53,179404.54 Sub-Saharan Africa,Sierra Leone,Household,Online,M,2/11/2011,197958028,3/29/2011,9034,668.27,502.54,6037151.18,4539946.36,1497204.82 Europe,Monaco,Fruits,Offline,L,6/10/2017,693036735,7/9/2017,3825,9.33,6.92,35687.25,26469.00,9218.25 Australia and Oceania,Nauru,Cosmetics,Online,H,9/8/2012,428259789,10/3/2012,443,437.20,263.33,193679.60,116655.19,77024.41 Middle East and North Africa,Tunisia ,Office Supplies,Offline,C,9/10/2011,863051021,9/24/2011,4831,651.21,524.96,3145995.51,2536081.76,609913.75 Asia,North Korea,Household,Online,H,3/18/2015,377146756,4/29/2015,4961,668.27,502.54,3315287.47,2493100.94,822186.53 Europe,Norway,Household,Offline,M,9/15/2013,120595824,10/27/2013,5839,668.27,502.54,3902028.53,2934331.06,967697.47 Europe,Portugal,Baby Food,Offline,M,11/9/2013,863759553,11/19/2013,4501,255.28,159.42,1149015.28,717549.42,431465.86 Europe,Portugal,Vegetables,Online,C,1/16/2012,747311770,2/17/2012,5015,154.06,90.93,772610.90,456013.95,316596.95 Sub-Saharan Africa,Djibouti,Beverages,Offline,H,4/10/2013,232238805,4/15/2013,3478,47.45,31.79,165031.10,110565.62,54465.48 Australia and Oceania,Federated States of Micronesia,Vegetables,Offline,H,4/13/2012,749839484,4/30/2012,3021,154.06,90.93,465415.26,274699.53,190715.73 Sub-Saharan Africa,Benin,Clothes,Online,L,6/4/2012,651725137,6/20/2012,8806,109.28,35.84,962319.68,315607.04,646712.64 Sub-Saharan Africa,Nigeria,Meat,Offline,H,5/6/2014,159819591,6/16/2014,3023,421.89,364.69,1275373.47,1102457.87,172915.60 Europe,Croatia,Household,Offline,M,3/2/2012,916359174,4/14/2012,9898,668.27,502.54,6614536.46,4974140.92,1640395.54 Europe,Cyprus,Vegetables,Offline,C,6/16/2012,133892714,6/27/2012,684,154.06,90.93,105377.04,62196.12,43180.92 Australia and Oceania,Solomon Islands,Meat,Online,L,4/4/2015,945281541,5/24/2015,8669,421.89,364.69,3657364.41,3161497.61,495866.80 Sub-Saharan Africa,Mali,Cosmetics,Online,H,4/27/2010,253699481,6/15/2010,4169,437.20,263.33,1822686.80,1097822.77,724864.03 Middle East and North Africa,Libya,Baby Food,Online,H,3/9/2011,882632863,3/22/2011,9533,255.28,159.42,2433584.24,1519750.86,913833.38 Australia and Oceania,Solomon Islands,Baby Food,Online,L,7/9/2013,325880515,8/13/2013,4141,255.28,159.42,1057114.48,660158.22,396956.26 Sub-Saharan Africa,Malawi,Personal Care,Online,L,1/24/2014,197553765,2/13/2014,9404,81.73,56.67,768588.92,532924.68,235664.24 Sub-Saharan Africa,The Gambia,Personal Care,Offline,M,5/27/2014,382076442,6/9/2014,3765,81.73,56.67,307713.45,213362.55,94350.90 Sub-Saharan Africa,Mauritania,Vegetables,Online,M,3/7/2017,384184873,3/30/2017,7696,154.06,90.93,1185645.76,699797.28,485848.48 Europe,Czech Republic,Office Supplies,Offline,L,10/6/2014,678927886,11/18/2014,8704,651.21,524.96,5668131.84,4569251.84,1098880.00 North America,United States of America,Cosmetics,Offline,L,9/19/2015,461666810,10/23/2015,6323,437.20,263.33,2764415.60,1665035.59,1099380.01 Asia,Sri Lanka,Snacks,Offline,L,9/26/2010,798075473,11/8/2010,7122,152.58,97.44,1086674.76,693967.68,392707.08 North America,Mexico,Household,Online,H,4/22/2014,574140202,5/22/2014,9699,668.27,502.54,6481550.73,4874135.46,1607415.27 Sub-Saharan Africa,Guinea-Bissau,Beverages,Offline,M,6/24/2015,546159827,8/8/2015,9685,47.45,31.79,459553.25,307886.15,151667.10 Central America and the Caribbean,Haiti,Office Supplies,Offline,M,12/4/2011,190745675,1/23/2012,4739,651.21,524.96,3086084.19,2487785.44,598298.75 Middle East and North Africa,Turkey,Vegetables,Online,H,10/3/2013,854821574,11/17/2013,9555,154.06,90.93,1472043.30,868836.15,603207.15 Sub-Saharan Africa,Malawi,Office Supplies,Online,H,12/29/2016,805623853,2/10/2017,856,651.21,524.96,557435.76,449365.76,108070.00 Sub-Saharan Africa,Cote d'Ivoire,Household,Offline,L,12/13/2014,180701339,1/31/2015,2397,668.27,502.54,1601843.19,1204588.38,397254.81 Europe,Luxembourg,Household,Online,M,2/16/2017,537915360,3/13/2017,9964,668.27,502.54,6658642.28,5007308.56,1651333.72 Central America and the Caribbean,Haiti,Cosmetics,Offline,L,3/7/2015,805439746,4/2/2015,6374,437.20,263.33,2786712.80,1678465.42,1108247.38 Australia and Oceania,Tuvalu,Household,Online,C,12/18/2016,431760823,1/6/2017,6477,668.27,502.54,4328384.79,3254951.58,1073433.21 Central America and the Caribbean,Dominican Republic,Beverages,Online,C,6/20/2012,735677421,6/30/2012,2152,47.45,31.79,102112.40,68412.08,33700.32 Europe,Finland,Baby Food,Offline,M,6/21/2015,856300866,7/8/2015,7310,255.28,159.42,1866096.80,1165360.20,700736.60 Central America and the Caribbean,Dominica,Personal Care,Offline,M,4/20/2014,903054988,6/5/2014,2894,81.73,56.67,236526.62,164002.98,72523.64 Europe,United Kingdom,Clothes,Offline,H,7/3/2013,605676114,7/20/2013,1876,109.28,35.84,205009.28,67235.84,137773.44 Sub-Saharan Africa,Guinea,Snacks,Online,M,11/26/2014,664213073,1/5/2015,4263,152.58,97.44,650448.54,415386.72,235061.82 Sub-Saharan Africa,Mozambique,Snacks,Online,M,10/25/2013,499027192,11/29/2013,2090,152.58,97.44,318892.20,203649.60,115242.60 Central America and the Caribbean,Costa Rica,Snacks,Online,H,5/28/2010,500792300,6/8/2010,4425,152.58,97.44,675166.50,431172.00,243994.50 Sub-Saharan Africa,Madagascar,Snacks,Online,H,6/23/2013,680494725,8/6/2013,2366,152.58,97.44,361004.28,230543.04,130461.24 Sub-Saharan Africa,Botswana,Household,Online,C,12/19/2013,219433295,2/1/2014,4043,668.27,502.54,2701815.61,2031769.22,670046.39 Middle East and North Africa,Tunisia ,Cosmetics,Offline,L,6/15/2011,619219338,7/20/2011,9618,437.20,263.33,4204989.60,2532707.94,1672281.66 Australia and Oceania,Tuvalu,Cereal,Online,M,5/10/2010,751776683,6/10/2010,6281,205.70,117.11,1292001.70,735567.91,556433.79 Middle East and North Africa,Qatar,Cereal,Online,L,3/4/2016,909341657,3/11/2016,3259,205.70,117.11,670376.30,381661.49,288714.81 Sub-Saharan Africa,Chad,Household,Online,C,7/10/2016,554463088,8/9/2016,6804,668.27,502.54,4546909.08,3419282.16,1127626.92 Asia,Indonesia,Vegetables,Offline,C,3/30/2015,570002305,4/25/2015,5204,154.06,90.93,801728.24,473199.72,328528.52 Middle East and North Africa,Saudi Arabia,Personal Care,Offline,C,6/12/2013,109133136,6/23/2013,3775,81.73,56.67,308530.75,213929.25,94601.50 Middle East and North Africa,Oman,Clothes,Online,C,4/23/2013,645341908,5/8/2013,9866,109.28,35.84,1078156.48,353597.44,724559.04 Middle East and North Africa,Yemen,Baby Food,Online,H,4/16/2014,122427451,4/22/2014,7858,255.28,159.42,2005990.24,1252722.36,753267.88 Central America and the Caribbean,Cuba,Personal Care,Online,M,11/27/2016,604501092,12/12/2016,4161,81.73,56.67,340078.53,235803.87,104274.66 Sub-Saharan Africa,Democratic Republic of the Congo,Personal Care,Online,L,5/23/2011,625986659,6/3/2011,2218,81.73,56.67,181277.14,125694.06,55583.08 Middle East and North Africa,Egypt,Baby Food,Offline,L,10/1/2011,141620481,10/27/2011,7502,255.28,159.42,1915110.56,1195968.84,719141.72 Sub-Saharan Africa,Guinea-Bissau,Beverages,Offline,L,2/15/2014,976451385,3/19/2014,2518,47.45,31.79,119479.10,80047.22,39431.88 Europe,Belarus,Baby Food,Online,H,9/25/2015,975840699,10/6/2015,1803,255.28,159.42,460269.84,287434.26,172835.58 Sub-Saharan Africa,Senegal,Fruits,Online,C,1/19/2011,755462253,2/26/2011,6923,9.33,6.92,64591.59,47907.16,16684.43 Europe,Slovenia,Fruits,Offline,M,10/13/2010,551302373,11/30/2010,1478,9.33,6.92,13789.74,10227.76,3561.98 Central America and the Caribbean,Panama,Household,Offline,L,4/30/2015,669659888,5/12/2015,6097,668.27,502.54,4074442.19,3063986.38,1010455.81 Central America and the Caribbean,Cuba,Baby Food,Offline,H,1/4/2011,137146127,1/26/2011,3441,255.28,159.42,878418.48,548564.22,329854.26 Asia,Indonesia,Snacks,Online,M,9/21/2011,750684916,11/10/2011,3204,152.58,97.44,488866.32,312197.76,176668.56 Central America and the Caribbean,El Salvador,Meat,Online,L,4/9/2017,327512586,5/15/2017,7107,421.89,364.69,2998372.23,2591851.83,406520.40 Middle East and North Africa,Syria,Vegetables,Online,C,3/7/2017,355177962,3/14/2017,3907,154.06,90.93,601912.42,355263.51,246648.91 Sub-Saharan Africa,Rwanda,Personal Care,Offline,M,3/5/2017,141542375,3/8/2017,4389,81.73,56.67,358712.97,248724.63,109988.34 Sub-Saharan Africa,Burkina Faso,Meat,Online,H,9/8/2012,864779651,9/12/2012,6371,421.89,364.69,2687861.19,2323439.99,364421.20 Sub-Saharan Africa,Sudan,Cereal,Online,L,5/13/2015,623376119,5/13/2015,9701,205.70,117.11,1995495.70,1136084.11,859411.59 Asia,Brunei,Vegetables,Online,L,5/28/2011,286130607,6/21/2011,1260,154.06,90.93,194115.60,114571.80,79543.80 Europe,Sweden,Cosmetics,Online,C,10/19/2010,342154443,11/4/2010,9958,437.20,263.33,4353637.60,2622240.14,1731397.46 Middle East and North Africa,Iraq,Personal Care,Online,L,3/29/2013,450871455,4/7/2013,1738,81.73,56.67,142046.74,98492.46,43554.28 Sub-Saharan Africa,The Gambia,Cosmetics,Offline,L,12/1/2011,792017972,1/20/2012,4573,437.20,263.33,1999315.60,1204208.09,795107.51 Europe,France,Clothes,Offline,C,6/7/2012,715642821,6/26/2012,3469,109.28,35.84,379092.32,124328.96,254763.36 Australia and Oceania,Nauru,Snacks,Online,C,11/22/2013,992107331,12/7/2013,5461,152.58,97.44,833239.38,532119.84,301119.54 Australia and Oceania,Nauru,Cosmetics,Offline,M,9/3/2012,662085330,9/26/2012,4617,437.20,263.33,2018552.40,1215794.61,802757.79 Central America and the Caribbean,Panama,Baby Food,Offline,M,10/18/2013,186563146,11/27/2013,7035,255.28,159.42,1795894.80,1121519.70,674375.10 Sub-Saharan Africa,Angola,Snacks,Online,L,12/26/2011,996839606,12/28/2011,5846,152.58,97.44,891982.68,569634.24,322348.44 Central America and the Caribbean,Grenada,Beverages,Offline,H,8/6/2010,544526040,8/16/2010,6211,47.45,31.79,294711.95,197447.69,97264.26 Europe,Liechtenstein,Meat,Offline,L,4/10/2010,851546275,4/12/2010,321,421.89,364.69,135426.69,117065.49,18361.20 Sub-Saharan Africa,Uganda,Clothes,Online,H,9/20/2012,860136640,10/19/2012,2401,109.28,35.84,262381.28,86051.84,176329.44 Europe,France,Clothes,Offline,C,12/2/2016,482845962,1/1/2017,3705,109.28,35.84,404882.40,132787.20,272095.20 Sub-Saharan Africa,Senegal,Meat,Online,L,5/8/2015,152535569,5/16/2015,7519,421.89,364.69,3172190.91,2742104.11,430086.80 Australia and Oceania,Fiji,Beverages,Online,M,11/26/2012,372379291,12/1/2012,4162,47.45,31.79,197486.90,132309.98,65176.92 Australia and Oceania,Tuvalu,Clothes,Online,L,7/21/2015,365863454,8/16/2015,5981,109.28,35.84,653603.68,214359.04,439244.64 Sub-Saharan Africa,Mozambique,Snacks,Online,L,5/22/2011,326786887,6/2/2011,2357,152.58,97.44,359631.06,229666.08,129964.98 Asia,Tajikistan,Snacks,Offline,L,4/17/2012,969260919,5/5/2012,4700,152.58,97.44,717126.00,457968.00,259158.00 Australia and Oceania,Nauru,Meat,Offline,C,4/13/2012,377709376,5/24/2012,1453,421.89,364.69,613006.17,529894.57,83111.60 Europe,Austria,Cereal,Offline,M,1/3/2014,756868588,2/9/2014,3089,205.70,117.11,635407.30,361752.79,273654.51 Europe,Slovakia,Fruits,Online,C,5/24/2017,781787383,5/26/2017,7115,9.33,6.92,66382.95,49235.80,17147.15 Sub-Saharan Africa,Malawi,Fruits,Online,M,11/13/2015,547827088,12/30/2015,3064,9.33,6.92,28587.12,21202.88,7384.24 Sub-Saharan Africa,Sierra Leone,Meat,Online,C,4/10/2015,220661532,4/25/2015,7506,421.89,364.69,3166706.34,2737363.14,429343.20 Middle East and North Africa,Morocco,Baby Food,Online,C,12/13/2014,486277043,1/3/2015,9038,255.28,159.42,2307220.64,1440837.96,866382.68 Sub-Saharan Africa,Gabon,Cosmetics,Offline,L,7/6/2011,300972449,7/18/2011,3291,437.20,263.33,1438825.20,866619.03,572206.17 Europe,Bulgaria,Snacks,Online,M,3/19/2010,941359078,3/19/2010,7925,152.58,97.44,1209196.50,772212.00,436984.50 Asia,Mongolia,Cosmetics,Offline,M,8/4/2013,154360759,9/11/2013,7634,437.20,263.33,3337584.80,2010261.22,1327323.58 Middle East and North Africa,Azerbaijan,Snacks,Online,M,2/3/2010,707213819,3/11/2010,9140,152.58,97.44,1394581.20,890601.60,503979.60 Asia,China,Beverages,Online,M,9/29/2015,937467086,11/17/2015,6198,47.45,31.79,294095.10,197034.42,97060.68 Asia,North Korea,Beverages,Offline,C,5/4/2017,602981889,6/14/2017,4595,47.45,31.79,218032.75,146075.05,71957.70 Asia,Bhutan,Household,Online,L,2/5/2014,431932055,2/20/2014,7149,668.27,502.54,4777462.23,3592658.46,1184803.77 North America,Mexico,Household,Online,C,11/17/2013,772803914,12/27/2013,8706,668.27,502.54,5817958.62,4375113.24,1442845.38 Sub-Saharan Africa,Chad,Personal Care,Online,M,3/30/2014,244396293,4/18/2014,1149,81.73,56.67,93907.77,65113.83,28793.94 Europe,Moldova ,Personal Care,Offline,C,10/26/2013,685820519,11/17/2013,8387,81.73,56.67,685469.51,475291.29,210178.22 Asia,Japan,Vegetables,Offline,L,2/2/2016,406500422,2/7/2016,1363,154.06,90.93,209983.78,123937.59,86046.19 Sub-Saharan Africa,Ghana,Snacks,Offline,M,6/13/2010,936172330,7/22/2010,3051,152.58,97.44,465521.58,297289.44,168232.14 Middle East and North Africa,Kuwait,Office Supplies,Online,M,11/12/2013,274885070,12/13/2013,3456,651.21,524.96,2250581.76,1814261.76,436320.00 Sub-Saharan Africa,Rwanda,Fruits,Offline,L,2/1/2014,542999970,2/4/2014,4613,9.33,6.92,43039.29,31921.96,11117.33 Central America and the Caribbean,El Salvador,Fruits,Offline,M,4/11/2011,331190860,4/27/2011,5590,9.33,6.92,52154.70,38682.80,13471.90 Middle East and North Africa,Qatar,Office Supplies,Online,H,3/27/2014,550444066,5/9/2014,7486,651.21,524.96,4874958.06,3929850.56,945107.50 Sub-Saharan Africa,Zimbabwe,Clothes,Offline,H,11/27/2013,382058417,1/9/2014,8431,109.28,35.84,921339.68,302167.04,619172.64 Sub-Saharan Africa,Republic of the Congo,Beverages,Offline,C,6/7/2017,427645242,7/21/2017,8585,47.45,31.79,407358.25,272917.15,134441.10 Asia,Maldives,Clothes,Online,L,2/4/2014,459128367,2/10/2014,5142,109.28,35.84,561917.76,184289.28,377628.48 Europe,Georgia,Clothes,Online,H,12/17/2016,768744122,12/24/2016,7324,109.28,35.84,800366.72,262492.16,537874.56 Middle East and North Africa,United Arab Emirates,Household,Online,M,8/26/2013,819041335,9/7/2013,1387,668.27,502.54,926890.49,697022.98,229867.51 Europe,Montenegro,Beverages,Online,L,7/29/2015,592881333,9/16/2015,5617,47.45,31.79,266526.65,178564.43,87962.22 Sub-Saharan Africa,Tanzania,Beverages,Offline,C,4/8/2016,143437945,5/10/2016,5330,47.45,31.79,252908.50,169440.70,83467.80 North America,Canada,Baby Food,Online,H,5/5/2010,944197499,6/17/2010,7877,255.28,159.42,2010840.56,1255751.34,755089.22 Central America and the Caribbean,Saint Lucia,Meat,Online,L,5/23/2012,938958823,7/10/2012,7636,421.89,364.69,3221552.04,2784772.84,436779.20 Europe,Malta,Office Supplies,Offline,M,5/17/2015,391833245,6/14/2015,1020,651.21,524.96,664234.20,535459.20,128775.00 Europe,Netherlands,Cereal,Online,C,1/30/2017,537244594,2/1/2017,1469,205.70,117.11,302173.30,172034.59,130138.71 Middle East and North Africa,Iran,Office Supplies,Offline,H,5/20/2016,429929196,5/24/2016,4458,651.21,524.96,2903094.18,2340271.68,562822.50 Europe,Russia,Vegetables,Online,L,12/29/2016,994935882,1/3/2017,2492,154.06,90.93,383917.52,226597.56,157319.96 Asia,Mongolia,Clothes,Offline,L,2/14/2016,977625977,3/23/2016,107,109.28,35.84,11692.96,3834.88,7858.08 Asia,Vietnam,Meat,Offline,L,10/29/2015,993673312,11/23/2015,8870,421.89,364.69,3742164.30,3234800.30,507364.00 Sub-Saharan Africa,Cape Verde,Cosmetics,Offline,L,8/29/2011,379064214,8/31/2011,2379,437.20,263.33,1040098.80,626462.07,413636.73 Asia,Vietnam,Meat,Online,L,8/7/2011,340097510,9/20/2011,1266,421.89,364.69,534112.74,461697.54,72415.20 Sub-Saharan Africa,Mali,Baby Food,Offline,L,2/8/2017,803384530,3/17/2017,8190,255.28,159.42,2090743.20,1305649.80,785093.40 Europe,Kosovo,Fruits,Online,M,10/17/2011,865849101,10/24/2011,2845,9.33,6.92,26543.85,19687.40,6856.45 Europe,Slovakia,Meat,Online,M,8/10/2010,144727551,9/22/2010,6953,421.89,364.69,2933401.17,2535689.57,397711.60 Asia,Malaysia,Cosmetics,Offline,M,8/22/2010,127568709,9/13/2010,9271,437.20,263.33,4053281.20,2441332.43,1611948.77 Asia,Cambodia,Meat,Offline,M,1/19/2010,122233903,2/22/2010,583,421.89,364.69,245961.87,212614.27,33347.60 Central America and the Caribbean,Grenada,Household,Offline,H,11/4/2011,406896960,11/11/2011,8708,668.27,502.54,5819295.16,4376118.32,1443176.84 Australia and Oceania,Palau,Household,Online,M,7/6/2012,880044209,8/10/2012,3493,668.27,502.54,2334267.11,1755372.22,578894.89 Central America and the Caribbean,Trinidad and Tobago,Personal Care,Online,H,5/31/2013,610474479,7/17/2013,1819,81.73,56.67,148666.87,103082.73,45584.14 Asia,Taiwan,Vegetables,Offline,H,12/15/2016,987299096,1/19/2017,2597,154.06,90.93,400093.82,236145.21,163948.61 Middle East and North Africa,Egypt,Snacks,Online,L,4/7/2015,769941890,5/10/2015,1770,152.58,97.44,270066.60,172468.80,97597.80 North America,Canada,Snacks,Offline,L,9/1/2016,138139188,10/6/2016,7310,152.58,97.44,1115359.80,712286.40,403073.40 Europe,Bulgaria,Baby Food,Online,L,8/19/2011,241939818,9/13/2011,4224,255.28,159.42,1078302.72,673390.08,404912.64 Europe,Sweden,Snacks,Online,L,5/26/2014,951705110,7/14/2014,9546,152.58,97.44,1456528.68,930162.24,526366.44 Europe,Switzerland,Cosmetics,Offline,H,10/12/2013,408108890,11/23/2013,7344,437.20,263.33,3210796.80,1933895.52,1276901.28 Central America and the Caribbean,El Salvador,Cosmetics,Offline,H,10/17/2014,872137486,10/18/2014,3718,437.20,263.33,1625509.60,979060.94,646448.66 Europe,Montenegro,Meat,Online,M,2/28/2012,175089728,3/15/2012,1796,421.89,364.69,757714.44,654983.24,102731.20 Central America and the Caribbean,El Salvador,Fruits,Offline,C,10/24/2016,268576943,11/26/2016,6741,9.33,6.92,62893.53,46647.72,16245.81 Asia,China,Clothes,Offline,L,4/2/2014,474522960,5/14/2014,744,109.28,35.84,81304.32,26664.96,54639.36 Central America and the Caribbean,Barbados,Cereal,Online,H,9/30/2013,635164105,11/12/2013,8028,205.70,117.11,1651359.60,940159.08,711200.52 Europe,Netherlands,Office Supplies,Offline,C,4/15/2014,663049209,5/12/2014,9850,651.21,524.96,6414418.50,5170856.00,1243562.50 Sub-Saharan Africa,Liberia,Household,Offline,H,12/1/2015,991039597,1/16/2016,9495,668.27,502.54,6345223.65,4771617.30,1573606.35 Asia,Tajikistan,Snacks,Online,H,12/19/2015,322309100,1/29/2016,7280,152.58,97.44,1110782.40,709363.20,401419.20 Sub-Saharan Africa,Niger,Personal Care,Offline,L,10/26/2012,580344045,11/11/2012,5554,81.73,56.67,453928.42,314745.18,139183.24 Sub-Saharan Africa,Djibouti,Beverages,Online,L,4/20/2017,158943259,5/5/2017,3697,47.45,31.79,175422.65,117527.63,57895.02 Europe,Spain,Vegetables,Online,H,12/31/2010,672218072,2/13/2011,3121,154.06,90.93,480821.26,283792.53,197028.73 Middle East and North Africa,Libya,Personal Care,Offline,L,8/22/2010,204592311,10/8/2010,2266,81.73,56.67,185200.18,128414.22,56785.96 Sub-Saharan Africa,Namibia,Baby Food,Offline,M,4/22/2011,960802304,5/22/2011,1608,255.28,159.42,410490.24,256347.36,154142.88 Sub-Saharan Africa,Republic of the Congo,Fruits,Offline,M,12/4/2012,715896880,1/13/2013,8651,9.33,6.92,80713.83,59864.92,20848.91 Asia,Thailand,Personal Care,Online,M,6/29/2016,465237367,8/5/2016,2930,81.73,56.67,239468.90,166043.10,73425.80 Sub-Saharan Africa,Cameroon,Fruits,Offline,M,9/17/2012,374497592,10/3/2012,1014,9.33,6.92,9460.62,7016.88,2443.74 Australia and Oceania,Kiribati,Personal Care,Offline,C,1/23/2016,229663884,3/4/2016,1502,81.73,56.67,122758.46,85118.34,37640.12 Sub-Saharan Africa,Madagascar,Household,Online,M,8/4/2015,787035071,8/12/2015,22,668.27,502.54,14701.94,11055.88,3646.06 Asia,Malaysia,Meat,Online,M,7/19/2016,623222482,8/19/2016,4237,421.89,364.69,1787547.93,1545191.53,242356.40 Australia and Oceania,Papua New Guinea,Cosmetics,Offline,H,11/24/2013,185149943,12/3/2013,8838,437.20,263.33,3863973.60,2327310.54,1536663.06 Central America and the Caribbean,Cuba,Office Supplies,Online,L,3/28/2011,440053784,4/4/2011,549,651.21,524.96,357514.29,288203.04,69311.25 Europe,Ireland,Vegetables,Offline,M,1/5/2017,625482833,2/1/2017,3125,154.06,90.93,481437.50,284156.25,197281.25 Sub-Saharan Africa,Gabon,Vegetables,Online,L,6/14/2010,499298417,7/18/2010,2352,154.06,90.93,362349.12,213867.36,148481.76 Europe,Portugal,Office Supplies,Offline,H,6/28/2013,789674365,7/30/2013,1048,651.21,524.96,682468.08,550158.08,132310.00 Middle East and North Africa,Algeria,Snacks,Offline,H,4/7/2011,945097005,5/14/2011,4061,152.58,97.44,619627.38,395703.84,223923.54 Sub-Saharan Africa,South Sudan,Office Supplies,Online,M,6/27/2016,484365165,7/2/2016,3271,651.21,524.96,2130107.91,1717144.16,412963.75 Central America and the Caribbean,Belize,Office Supplies,Online,L,8/22/2012,346590173,8/27/2012,2589,651.21,524.96,1685982.69,1359121.44,326861.25 Central America and the Caribbean,Barbados,Fruits,Offline,M,10/10/2010,641195857,11/22/2010,2958,9.33,6.92,27598.14,20469.36,7128.78 Asia,Laos,Cereal,Offline,H,6/9/2015,197918546,7/18/2015,7351,205.70,117.11,1512100.70,860875.61,651225.09 Sub-Saharan Africa,Cameroon,Fruits,Offline,C,4/20/2013,616807067,4/20/2013,5773,9.33,6.92,53862.09,39949.16,13912.93 Australia and Oceania,Fiji,Snacks,Online,C,10/31/2014,418222749,10/31/2014,260,152.58,97.44,39670.80,25334.40,14336.40 Sub-Saharan Africa,Burundi,Snacks,Online,L,8/14/2012,892839419,10/3/2012,9880,152.58,97.44,1507490.40,962707.20,544783.20 Sub-Saharan Africa,Cote d'Ivoire,Fruits,Offline,L,6/20/2015,251643407,7/8/2015,5731,9.33,6.92,53470.23,39658.52,13811.71 Middle East and North Africa,Pakistan,Baby Food,Online,M,4/26/2014,375933539,5/16/2014,5943,255.28,159.42,1517129.04,947433.06,569695.98 Middle East and North Africa,Syria,Snacks,Offline,M,4/24/2016,967321145,5/24/2016,678,152.58,97.44,103449.24,66064.32,37384.92 Middle East and North Africa,Saudi Arabia,Meat,Online,M,9/26/2010,897730052,10/5/2010,7127,421.89,364.69,3006810.03,2599145.63,407664.40 North America,Greenland,Household,Offline,L,8/26/2010,459396588,10/1/2010,4514,668.27,502.54,3016570.78,2268465.56,748105.22 Sub-Saharan Africa,Swaziland,Beverages,Offline,M,4/3/2011,914869582,4/26/2011,9095,47.45,31.79,431557.75,289130.05,142427.70 Sub-Saharan Africa,Zambia,Household,Offline,C,5/17/2016,447010362,7/6/2016,9154,668.27,502.54,6117343.58,4600251.16,1517092.42 Central America and the Caribbean,Haiti,Office Supplies,Offline,H,12/29/2011,908992755,1/29/2012,11,651.21,524.96,7163.31,5774.56,1388.75 Sub-Saharan Africa,Zambia,Meat,Offline,L,6/2/2015,174303090,7/20/2015,9013,421.89,364.69,3802494.57,3286950.97,515543.60 Asia,Myanmar,Cosmetics,Offline,L,12/21/2010,686740195,1/6/2011,540,437.20,263.33,236088.00,142198.20,93889.80 Europe,Estonia,Meat,Offline,M,4/25/2014,910415399,5/12/2014,1003,421.89,364.69,423155.67,365784.07,57371.60 Middle East and North Africa,Saudi Arabia,Snacks,Online,M,9/4/2015,279752528,9/26/2015,3845,152.58,97.44,586670.10,374656.80,212013.30 Middle East and North Africa,Syria,Beverages,Online,H,12/1/2013,549487912,12/12/2013,4539,47.45,31.79,215375.55,144294.81,71080.74 Middle East and North Africa,Qatar,Baby Food,Online,C,10/5/2012,844670379,10/11/2012,5590,255.28,159.42,1427015.20,891157.80,535857.40 Australia and Oceania,Fiji,Household,Online,M,12/25/2016,810661256,2/5/2017,1535,668.27,502.54,1025794.45,771398.90,254395.55 Europe,Spain,Beverages,Online,C,7/2/2013,163134372,8/11/2013,3941,47.45,31.79,187000.45,125284.39,61716.06 Australia and Oceania,Nauru,Fruits,Offline,M,1/4/2013,938076055,2/9/2013,6406,9.33,6.92,59767.98,44329.52,15438.46 Sub-Saharan Africa,Republic of the Congo,Personal Care,Online,C,11/30/2015,741785132,12/3/2015,9560,81.73,56.67,781338.80,541765.20,239573.60 Asia,Singapore,Fruits,Online,M,2/9/2016,400872933,3/11/2016,6064,9.33,6.92,56577.12,41962.88,14614.24 Sub-Saharan Africa,Mauritania,Snacks,Online,C,5/3/2012,812263286,6/15/2012,5611,152.58,97.44,856126.38,546735.84,309390.54 Europe,Monaco,Household,Online,M,12/27/2011,693192517,1/24/2012,9925,668.27,502.54,6632579.75,4987709.50,1644870.25 Australia and Oceania,New Zealand,Fruits,Online,H,2/23/2012,631209456,3/8/2012,7760,9.33,6.92,72400.80,53699.20,18701.60 Middle East and North Africa,Turkey,Meat,Offline,C,12/21/2010,834175431,2/1/2011,9902,421.89,364.69,4177554.78,3611160.38,566394.40 Central America and the Caribbean,Dominica,Beverages,Offline,H,6/21/2011,680264270,7/30/2011,4169,47.45,31.79,197819.05,132532.51,65286.54 Asia,Singapore,Office Supplies,Online,H,2/19/2010,967962300,4/7/2010,410,651.21,524.96,266996.10,215233.60,51762.50 Europe,Greece,Cereal,Offline,L,11/23/2015,766068351,1/9/2016,5504,205.70,117.11,1132172.80,644573.44,487599.36 Sub-Saharan Africa,Liberia,Clothes,Online,L,1/6/2016,563693749,2/7/2016,8362,109.28,35.84,913799.36,299694.08,614105.28 Middle East and North Africa,Oman,Vegetables,Offline,C,3/11/2010,920262324,4/15/2010,4927,154.06,90.93,759053.62,448012.11,311041.51 Europe,Greece,Household,Online,C,4/28/2014,215510404,6/16/2014,3172,668.27,502.54,2119752.44,1594056.88,525695.56 Europe,Denmark,Vegetables,Offline,C,4/21/2011,499486815,4/29/2011,8103,154.06,90.93,1248348.18,736805.79,511542.39 Asia,Thailand,Cereal,Online,L,5/19/2015,742552888,5/29/2015,6756,205.70,117.11,1389709.20,791195.16,598514.04 Asia,Thailand,Vegetables,Online,H,5/12/2015,885382449,6/20/2015,3197,154.06,90.93,492529.82,290703.21,201826.61 Central America and the Caribbean,Honduras,Personal Care,Online,H,4/5/2016,488961827,5/18/2016,3525,81.73,56.67,288098.25,199761.75,88336.50 Europe,Andorra,Vegetables,Offline,M,10/22/2012,984589850,10/29/2012,871,154.06,90.93,134186.26,79200.03,54986.23 Central America and the Caribbean,Trinidad and Tobago,Clothes,Online,H,12/6/2015,723877847,1/9/2016,396,109.28,35.84,43274.88,14192.64,29082.24 Sub-Saharan Africa,Comoros,Cosmetics,Offline,C,2/16/2011,828749644,2/25/2011,4291,437.20,263.33,1876025.20,1129949.03,746076.17 Europe,Andorra,Personal Care,Offline,L,3/31/2015,241441571,5/5/2015,6781,81.73,56.67,554211.13,384279.27,169931.86 Central America and the Caribbean,El Salvador,Fruits,Online,L,2/15/2012,674502456,2/16/2012,9120,9.33,6.92,85089.60,63110.40,21979.20 Sub-Saharan Africa,Liberia,Baby Food,Offline,C,12/15/2016,760793626,12/25/2016,4595,255.28,159.42,1173011.60,732534.90,440476.70 Europe,Iceland,Beverages,Online,H,12/4/2011,103488910,12/7/2011,3523,47.45,31.79,167166.35,111996.17,55170.18 Sub-Saharan Africa,Ethiopia,Household,Online,C,7/25/2010,626074635,8/29/2010,8252,668.27,502.54,5514564.04,4146960.08,1367603.96 Sub-Saharan Africa,Chad,Cosmetics,Online,H,2/12/2016,722349631,4/1/2016,8163,437.20,263.33,3568863.60,2149562.79,1419300.81 Australia and Oceania,Marshall Islands,Baby Food,Online,H,3/5/2010,206425225,4/23/2010,4666,255.28,159.42,1191136.48,743853.72,447282.76 Europe,Vatican City,Snacks,Offline,C,1/15/2017,762725245,2/14/2017,6204,152.58,97.44,946606.32,604517.76,342088.56 Europe,Moldova ,Cosmetics,Online,H,8/25/2016,995986020,8/25/2016,3251,437.20,263.33,1421337.20,856085.83,565251.37 Asia,Bhutan,Meat,Online,M,7/2/2016,481256377,7/7/2016,3311,421.89,364.69,1396877.79,1207488.59,189389.20 Europe,Sweden,Cereal,Offline,L,1/8/2010,213897645,1/12/2010,5921,205.70,117.11,1217949.70,693408.31,524541.39 Central America and the Caribbean,Belize,Fruits,Offline,H,8/16/2010,359583652,10/1/2010,7648,9.33,6.92,71355.84,52924.16,18431.68 Sub-Saharan Africa,Djibouti,Fruits,Online,H,1/28/2010,704300725,3/7/2010,7090,9.33,6.92,66149.70,49062.80,17086.90 Sub-Saharan Africa,Uganda,Vegetables,Online,H,7/27/2012,204347693,8/28/2012,9878,154.06,90.93,1521804.68,898206.54,623598.14 Sub-Saharan Africa,Togo,Vegetables,Offline,C,10/14/2015,136335885,11/21/2015,3673,154.06,90.93,565862.38,333985.89,231876.49 Australia and Oceania,Australia,Vegetables,Online,M,9/5/2014,947189128,9/13/2014,3166,154.06,90.93,487753.96,287884.38,199869.58 Asia,Kyrgyzstan,Fruits,Offline,M,11/8/2012,904143750,11/14/2012,5083,9.33,6.92,47424.39,35174.36,12250.03 Sub-Saharan Africa,Malawi,Beverages,Offline,L,3/9/2011,144748580,4/12/2011,3176,47.45,31.79,150701.20,100965.04,49736.16 Europe,United Kingdom,Baby Food,Online,L,8/12/2011,226864945,8/18/2011,3234,255.28,159.42,825575.52,515564.28,310011.24 Australia and Oceania,Samoa ,Fruits,Online,C,5/9/2013,978666675,6/5/2013,8072,9.33,6.92,75311.76,55858.24,19453.52 Sub-Saharan Africa,Mozambique,Fruits,Offline,L,9/12/2016,948640096,9/25/2016,2540,9.33,6.92,23698.20,17576.80,6121.40 Asia,Taiwan,Meat,Online,C,8/20/2011,555584037,9/9/2011,8518,421.89,364.69,3593659.02,3106429.42,487229.60 Sub-Saharan Africa,Kenya,Vegetables,Online,C,12/8/2011,738609826,12/24/2011,9916,154.06,90.93,1527658.96,901661.88,625997.08 Middle East and North Africa,Afghanistan,Vegetables,Offline,M,7/5/2013,707141292,7/13/2013,7677,154.06,90.93,1182718.62,698069.61,484649.01 Europe,Moldova ,Meat,Online,C,4/29/2013,190914762,5/15/2013,4775,421.89,364.69,2014524.75,1741394.75,273130.00 Middle East and North Africa,Syria,Fruits,Offline,L,3/18/2013,789979064,5/6/2013,1215,9.33,6.92,11335.95,8407.80,2928.15 Asia,Mongolia,Personal Care,Offline,L,1/18/2016,124695527,2/13/2016,9032,81.73,56.67,738185.36,511843.44,226341.92 Sub-Saharan Africa,Niger,Household,Offline,M,6/8/2014,385737979,6/18/2014,7295,668.27,502.54,4875029.65,3666029.30,1209000.35 Europe,Armenia,Fruits,Offline,H,3/5/2017,684092748,3/28/2017,7101,9.33,6.92,66252.33,49138.92,17113.41 Central America and the Caribbean,El Salvador,Meat,Offline,H,3/15/2015,201058661,4/10/2015,6581,421.89,364.69,2776458.09,2400024.89,376433.20 Sub-Saharan Africa,Niger,Beverages,Online,H,9/1/2015,438247048,10/16/2015,5895,47.45,31.79,279717.75,187402.05,92315.70 Europe,Norway,Meat,Online,H,6/4/2015,267581737,7/15/2015,2237,421.89,364.69,943767.93,815811.53,127956.40 Sub-Saharan Africa,Lesotho,Clothes,Online,L,5/21/2012,881299054,7/2/2012,4829,109.28,35.84,527713.12,173071.36,354641.76 Central America and the Caribbean,Costa Rica,Vegetables,Online,L,11/24/2016,841947829,12/5/2016,9927,154.06,90.93,1529353.62,902662.11,626691.51 Europe,Montenegro,Personal Care,Online,H,1/30/2010,132389390,2/28/2010,5817,81.73,56.67,475423.41,329649.39,145774.02 Europe,Latvia,Cosmetics,Offline,C,10/5/2015,605797564,10/13/2015,7816,437.20,263.33,3417155.20,2058187.28,1358967.92 Europe,France,Cosmetics,Offline,M,5/25/2013,135658681,6/24/2013,3273,437.20,263.33,1430955.60,861879.09,569076.51 Central America and the Caribbean,Dominican Republic,Baby Food,Online,L,1/8/2010,265771567,1/20/2010,6568,255.28,159.42,1676679.04,1047070.56,629608.48 Europe,Bulgaria,Clothes,Offline,C,9/22/2013,360247552,10/28/2013,4111,109.28,35.84,449250.08,147338.24,301911.84 Asia,Mongolia,Clothes,Offline,H,9/27/2014,753510463,10/16/2014,9345,109.28,35.84,1021221.60,334924.80,686296.80 Europe,Iceland,Household,Offline,M,12/5/2011,500296628,1/21/2012,7745,668.27,502.54,5175751.15,3892172.30,1283578.85 Asia,Kazakhstan,Clothes,Offline,L,7/28/2016,525654876,9/3/2016,1814,109.28,35.84,198233.92,65013.76,133220.16 Sub-Saharan Africa,Rwanda,Clothes,Offline,M,9/30/2010,474946534,10/25/2010,6089,109.28,35.84,665405.92,218229.76,447176.16 Sub-Saharan Africa,Zambia,Meat,Online,M,8/26/2011,963845431,9/28/2011,2137,421.89,364.69,901578.93,779342.53,122236.40 Europe,Albania,Personal Care,Offline,M,11/1/2014,428337895,12/19/2014,3557,81.73,56.67,290713.61,201575.19,89138.42 Europe,Georgia,Snacks,Online,M,2/17/2013,974722754,3/31/2013,978,152.58,97.44,149223.24,95296.32,53926.92 Europe,Portugal,Household,Offline,L,7/31/2015,729611337,8/2/2015,7063,668.27,502.54,4719991.01,3549440.02,1170550.99 Europe,Belarus,Household,Offline,L,5/9/2013,589927470,5/15/2013,1503,668.27,502.54,1004409.81,755317.62,249092.19 Europe,Norway,Cereal,Online,L,11/3/2013,172907483,12/15/2013,6021,205.70,117.11,1238519.70,705119.31,533400.39 Sub-Saharan Africa,Zambia,Office Supplies,Offline,H,2/15/2014,966100203,3/22/2014,9374,651.21,524.96,6104442.54,4920975.04,1183467.50 Central America and the Caribbean,Antigua and Barbuda ,Clothes,Offline,L,5/14/2012,477366960,6/11/2012,2346,109.28,35.84,256370.88,84080.64,172290.24 Central America and the Caribbean,Panama,Office Supplies,Online,L,7/28/2011,784881579,9/14/2011,2756,651.21,524.96,1794734.76,1446789.76,347945.00 Europe,Bulgaria,Vegetables,Online,M,10/22/2015,887130391,11/28/2015,452,154.06,90.93,69635.12,41100.36,28534.76 Asia,Turkmenistan,Clothes,Online,L,4/12/2011,752912223,5/7/2011,2313,109.28,35.84,252764.64,82897.92,169866.72 North America,Canada,Fruits,Offline,M,7/19/2015,871338403,7/26/2015,7251,9.33,6.92,67651.83,50176.92,17474.91 Europe,Estonia,Cereal,Offline,L,2/27/2013,901832759,3/13/2013,1209,205.70,117.11,248691.30,141585.99,107105.31 Middle East and North Africa,United Arab Emirates,Household,Offline,M,6/13/2012,124131619,7/24/2012,2160,668.27,502.54,1443463.20,1085486.40,357976.80 Europe,Macedonia,Baby Food,Online,M,6/13/2011,588283812,7/3/2011,5108,255.28,159.42,1303970.24,814317.36,489652.88 Sub-Saharan Africa,Malawi,Office Supplies,Online,C,11/1/2016,364650666,12/21/2016,7090,651.21,524.96,4617078.90,3721966.40,895112.50 Sub-Saharan Africa,Mali,Clothes,Offline,M,5/31/2017,293906009,6/14/2017,2174,109.28,35.84,237574.72,77916.16,159658.56 Sub-Saharan Africa,Comoros,Fruits,Offline,L,8/19/2010,837036168,8/30/2010,6458,9.33,6.92,60253.14,44689.36,15563.78 Middle East and North Africa,Iraq,Office Supplies,Online,C,12/5/2013,725339972,1/1/2014,3071,651.21,524.96,1999865.91,1612152.16,387713.75 Sub-Saharan Africa,Guinea-Bissau,Office Supplies,Offline,M,7/10/2015,110428750,7/22/2015,7176,651.21,524.96,4673082.96,3767112.96,905970.00 Europe,Poland,Clothes,Offline,M,1/19/2016,114226329,1/23/2016,964,109.28,35.84,105345.92,34549.76,70796.16 Asia,South Korea,Fruits,Offline,H,3/20/2017,578969037,3/25/2017,8659,9.33,6.92,80788.47,59920.28,20868.19 Sub-Saharan Africa,Mauritius ,Fruits,Online,M,6/8/2010,517205703,6/12/2010,1516,9.33,6.92,14144.28,10490.72,3653.56 Sub-Saharan Africa,Senegal,Meat,Online,C,11/24/2010,361797654,11/27/2010,2821,421.89,364.69,1190151.69,1028790.49,161361.20 Sub-Saharan Africa,Cameroon,Cosmetics,Online,M,12/6/2015,615918719,1/20/2016,2891,437.20,263.33,1263945.20,761287.03,502658.17 Sub-Saharan Africa,Republic of the Congo,Beverages,Offline,M,5/8/2016,503055226,6/9/2016,4075,47.45,31.79,193358.75,129544.25,63814.50 Sub-Saharan Africa,Eritrea,Household,Online,C,5/28/2015,217006003,6/6/2015,5754,668.27,502.54,3845225.58,2891615.16,953610.42 Europe,Netherlands,Snacks,Online,H,5/25/2017,471882379,6/25/2017,9337,152.58,97.44,1424639.46,909797.28,514842.18 Sub-Saharan Africa,Uganda,Vegetables,Online,M,5/5/2016,252108180,6/16/2016,3268,154.06,90.93,503468.08,297159.24,206308.84 Asia,Myanmar,Meat,Online,C,11/23/2014,862419736,1/12/2015,8020,421.89,364.69,3383557.80,2924813.80,458744.00 Europe,Georgia,Snacks,Online,L,12/23/2012,977865874,2/11/2013,1097,152.58,97.44,167380.26,106891.68,60488.58 Australia and Oceania,Nauru,Clothes,Offline,M,8/5/2011,693807923,8/6/2011,2037,109.28,35.84,222603.36,73006.08,149597.28 Europe,United Kingdom,Meat,Online,M,7/31/2016,175919711,8/2/2016,7407,421.89,364.69,3124939.23,2701258.83,423680.40 Central America and the Caribbean,Dominica,Cosmetics,Offline,C,2/20/2012,110187566,3/4/2012,5804,437.20,263.33,2537508.80,1528367.32,1009141.48 Asia,Laos,Cosmetics,Offline,M,1/9/2010,352910315,2/12/2010,2860,437.20,263.33,1250392.00,753123.80,497268.20 Sub-Saharan Africa,Lesotho,Vegetables,Offline,L,6/30/2015,380699288,7/24/2015,6234,154.06,90.93,960410.04,566857.62,393552.42 Australia and Oceania,Fiji,Clothes,Online,L,12/8/2015,640478312,1/13/2016,620,109.28,35.84,67753.60,22220.80,45532.80 Central America and the Caribbean,Guatemala,Fruits,Offline,M,12/11/2014,299483716,1/14/2015,2742,9.33,6.92,25582.86,18974.64,6608.22 Europe,Austria,Household,Online,M,5/26/2013,395264327,6/13/2013,6353,668.27,502.54,4245519.31,3192636.62,1052882.69 Europe,France,Snacks,Offline,C,3/30/2013,685681474,4/5/2013,7240,152.58,97.44,1104679.20,705465.60,399213.60 Central America and the Caribbean,Antigua and Barbuda ,Vegetables,Offline,H,9/10/2013,998908984,9/10/2013,8221,154.06,90.93,1266527.26,747535.53,518991.73 Central America and the Caribbean,Barbados,Snacks,Offline,M,1/12/2015,783433187,1/29/2015,4144,152.58,97.44,632291.52,403791.36,228500.16 Europe,Luxembourg,Clothes,Online,M,10/29/2014,458052909,11/11/2014,6890,109.28,35.84,752939.20,246937.60,506001.60 Asia,North Korea,Meat,Offline,H,9/14/2011,961879479,9/19/2011,368,421.89,364.69,155255.52,134205.92,21049.60 Sub-Saharan Africa,Liberia,Personal Care,Offline,L,9/18/2016,604336726,9/19/2016,5522,81.73,56.67,451313.06,312931.74,138381.32 Sub-Saharan Africa,Senegal,Cosmetics,Offline,H,9/9/2011,915160977,10/1/2011,5325,437.20,263.33,2328090.00,1402232.25,925857.75 Sub-Saharan Africa,Seychelles ,Meat,Online,L,8/4/2013,794401061,8/28/2013,9782,421.89,364.69,4126927.98,3567397.58,559530.40 Europe,Belarus,Personal Care,Offline,L,3/2/2010,562418305,4/1/2010,930,81.73,56.67,76008.90,52703.10,23305.80 Asia,Kazakhstan,Household,Offline,M,9/22/2016,609886538,11/11/2016,7835,668.27,502.54,5235895.45,3937400.90,1298494.55 Sub-Saharan Africa,Togo,Meat,Offline,H,10/12/2011,947792088,10/17/2011,1596,421.89,364.69,673336.44,582045.24,91291.20 Asia,India,Cereal,Offline,H,7/23/2016,757433784,8/2/2016,343,205.70,117.11,70555.10,40168.73,30386.37 Europe,Serbia,Fruits,Offline,H,6/30/2015,640422952,8/7/2015,4238,9.33,6.92,39540.54,29326.96,10213.58 Sub-Saharan Africa,Cote d'Ivoire,Household,Online,M,1/3/2013,368683421,1/3/2013,472,668.27,502.54,315423.44,237198.88,78224.56 Asia,Nepal,Baby Food,Online,H,8/5/2014,234451520,8/31/2014,8270,255.28,159.42,2111165.60,1318403.40,792762.20 Europe,Czech Republic,Beverages,Offline,H,6/13/2015,600276076,7/12/2015,3885,47.45,31.79,184343.25,123504.15,60839.10 Asia,Indonesia,Clothes,Offline,C,10/31/2011,549018418,12/6/2011,5605,109.28,35.84,612514.40,200883.20,411631.20 Middle East and North Africa,Somalia,Baby Food,Online,L,6/6/2012,133852374,6/19/2012,8747,255.28,159.42,2232934.16,1394446.74,838487.42 Sub-Saharan Africa,Sao Tome and Principe,Baby Food,Online,L,11/7/2011,828264272,12/19/2011,659,255.28,159.42,168229.52,105057.78,63171.74 Middle East and North Africa,Algeria,Cereal,Online,H,2/12/2017,576052939,3/22/2017,5721,205.70,117.11,1176809.70,669986.31,506823.39 Europe,Finland,Fruits,Online,L,8/12/2013,541329705,9/13/2013,344,9.33,6.92,3209.52,2380.48,829.04 Australia and Oceania,Tuvalu,Clothes,Online,M,4/12/2014,158518397,5/28/2014,7971,109.28,35.84,871070.88,285680.64,585390.24 Central America and the Caribbean,Belize,Personal Care,Online,C,5/29/2010,282355344,6/7/2010,4076,81.73,56.67,333131.48,230986.92,102144.56 Australia and Oceania,Fiji,Clothes,Offline,M,4/15/2013,937889373,5/30/2013,1162,109.28,35.84,126983.36,41646.08,85337.28 Sub-Saharan Africa,Mozambique,Baby Food,Offline,L,7/22/2012,870481812,8/27/2012,3767,255.28,159.42,961639.76,600535.14,361104.62 Europe,Kosovo,Fruits,Online,H,4/10/2010,695806491,4/14/2010,3458,9.33,6.92,32263.14,23929.36,8333.78 Sub-Saharan Africa,Angola,Cereal,Online,L,2/17/2017,649849736,3/26/2017,3833,205.70,117.11,788448.10,448882.63,339565.47 Asia,North Korea,Fruits,Offline,H,10/27/2010,138910377,11/3/2010,5522,9.33,6.92,51520.26,38212.24,13308.02 Sub-Saharan Africa,South Sudan,Fruits,Online,H,7/11/2015,889599740,7/13/2015,1187,9.33,6.92,11074.71,8214.04,2860.67 Sub-Saharan Africa,Nigeria,Personal Care,Offline,L,11/5/2014,198841655,12/24/2014,519,81.73,56.67,42417.87,29411.73,13006.14 Europe,Vatican City,Household,Online,M,3/2/2016,383872449,4/4/2016,5243,668.27,502.54,3503739.61,2634817.22,868922.39 Australia and Oceania,East Timor,Snacks,Offline,M,7/30/2016,232240951,9/2/2016,4113,152.58,97.44,627561.54,400770.72,226790.82 Sub-Saharan Africa,Zambia,Cosmetics,Offline,L,3/27/2014,851808488,5/8/2014,7915,437.20,263.33,3460438.00,2084256.95,1376181.05 Sub-Saharan Africa,Eritrea,Cereal,Online,M,2/23/2012,720748889,3/29/2012,4468,205.70,117.11,919067.60,523247.48,395820.12 Central America and the Caribbean,Cuba,Meat,Offline,C,5/18/2014,637548482,5/22/2014,3618,421.89,364.69,1526398.02,1319448.42,206949.60 Australia and Oceania,Palau,Personal Care,Online,C,9/15/2014,571006095,10/18/2014,2247,81.73,56.67,183647.31,127337.49,56309.82 Europe,Denmark,Baby Food,Online,M,7/21/2015,110233056,7/31/2015,9266,255.28,159.42,2365424.48,1477185.72,888238.76 Europe,Switzerland,Beverages,Online,M,8/8/2016,714653193,8/30/2016,616,47.45,31.79,29229.20,19582.64,9646.56 Middle East and North Africa,Oman,Beverages,Online,H,1/18/2011,764002835,1/28/2011,4272,47.45,31.79,202706.40,135806.88,66899.52 Central America and the Caribbean,Barbados,Clothes,Offline,C,1/25/2012,508330810,2/4/2012,5238,109.28,35.84,572408.64,187729.92,384678.72 North America,United States of America,Baby Food,Online,L,3/11/2011,717998445,3/28/2011,550,255.28,159.42,140404.00,87681.00,52723.00 Central America and the Caribbean,Antigua and Barbuda ,Vegetables,Online,H,5/14/2012,433679568,5/31/2012,4276,154.06,90.93,658760.56,388816.68,269943.88 Sub-Saharan Africa,Seychelles ,Baby Food,Online,H,1/17/2013,116360509,1/24/2013,2515,255.28,159.42,642029.20,400941.30,241087.90 Asia,Vietnam,Household,Offline,M,7/11/2015,297340095,8/5/2015,8396,668.27,502.54,5610794.92,4219325.84,1391469.08 Australia and Oceania,New Zealand,Vegetables,Online,H,8/2/2015,228229653,8/21/2015,7081,154.06,90.93,1090898.86,643875.33,447023.53 Middle East and North Africa,Yemen,Meat,Offline,H,11/15/2013,130953013,12/14/2013,762,421.89,364.69,321480.18,277893.78,43586.40 Sub-Saharan Africa,Togo,Cereal,Online,H,2/3/2012,747746503,2/7/2012,3662,205.70,117.11,753273.40,428856.82,324416.58 Asia,Philippines,Office Supplies,Offline,M,10/16/2016,191158950,11/20/2016,7036,651.21,524.96,4581913.56,3693618.56,888295.00 Australia and Oceania,Solomon Islands,Fruits,Online,H,11/19/2012,694051682,12/14/2012,4171,9.33,6.92,38915.43,28863.32,10052.11 Asia,Kyrgyzstan,Household,Offline,C,11/1/2012,959598529,11/15/2012,5384,668.27,502.54,3597965.68,2705675.36,892290.32 Sub-Saharan Africa,Ethiopia,Vegetables,Online,H,1/15/2015,211285817,1/22/2015,3023,154.06,90.93,465723.38,274881.39,190841.99 Sub-Saharan Africa,Niger,Fruits,Online,H,3/2/2015,442912375,4/19/2015,6469,9.33,6.92,60355.77,44765.48,15590.29 Asia,Brunei,Beverages,Online,L,7/9/2017,568589532,8/19/2017,7133,47.45,31.79,338460.85,226758.07,111702.78 Europe,France,Baby Food,Online,H,2/13/2016,472741115,3/15/2016,3456,255.28,159.42,882247.68,550955.52,331292.16 Sub-Saharan Africa,Mauritania,Baby Food,Offline,H,8/12/2013,560103452,9/7/2013,5913,255.28,159.42,1509470.64,942650.46,566820.18 Sub-Saharan Africa,Guinea,Office Supplies,Online,H,7/2/2017,405725371,7/23/2017,2008,651.21,524.96,1307629.68,1054119.68,253510.00 Europe,Portugal,Personal Care,Online,M,8/21/2013,104968202,9/16/2013,1278,81.73,56.67,104450.94,72424.26,32026.68 Europe,Vatican City,Snacks,Offline,C,6/10/2015,723505771,7/18/2015,290,152.58,97.44,44248.20,28257.60,15990.60 Europe,Spain,Fruits,Online,C,9/3/2014,247324407,9/20/2014,7643,9.33,6.92,71309.19,52889.56,18419.63 Europe,Belgium,Cosmetics,Offline,C,7/10/2015,332722938,7/23/2015,8966,437.20,263.33,3919935.20,2361016.78,1558918.42 Sub-Saharan Africa,Equatorial Guinea,Meat,Online,L,9/4/2015,456312692,10/12/2015,1921,421.89,364.69,810450.69,700569.49,109881.20 Asia,Bhutan,Vegetables,Online,M,2/2/2010,165017497,3/16/2010,1199,154.06,90.93,184717.94,109025.07,75692.87 Middle East and North Africa,Morocco,Office Supplies,Online,L,7/5/2017,426073682,8/13/2017,3526,651.21,524.96,2296166.46,1851008.96,445157.50 Sub-Saharan Africa,Niger,Household,Online,M,2/2/2016,477030074,3/5/2016,2654,668.27,502.54,1773588.58,1333741.16,439847.42 Middle East and North Africa,Somalia,Snacks,Offline,L,5/7/2015,975748002,6/11/2015,4372,152.58,97.44,667079.76,426007.68,241072.08 Middle East and North Africa,Kuwait,Household,Online,M,7/3/2014,850401294,7/4/2014,1495,668.27,502.54,999063.65,751297.30,247766.35 Europe,Germany,Meat,Offline,L,11/2/2013,449476277,12/22/2013,8874,421.89,364.69,3743851.86,3236259.06,507592.80 Sub-Saharan Africa,Guinea-Bissau,Cosmetics,Online,M,12/2/2010,191771781,1/5/2011,8386,437.20,263.33,3666359.20,2208285.38,1458073.82 Europe,Ireland,Snacks,Offline,C,12/12/2011,116399133,1/4/2012,3945,152.58,97.44,601928.10,384400.80,217527.30 Europe,Spain,Cereal,Online,H,10/28/2012,332782161,11/21/2012,6491,205.70,117.11,1335198.70,760161.01,575037.69 Europe,France,Beverages,Online,L,7/11/2010,570657193,7/17/2010,9000,47.45,31.79,427050.00,286110.00,140940.00 North America,Greenland,Snacks,Offline,H,6/13/2014,630073058,7/11/2014,1474,152.58,97.44,224902.92,143626.56,81276.36 Central America and the Caribbean,Barbados,Clothes,Online,C,5/1/2012,831391084,5/12/2012,5952,109.28,35.84,650434.56,213319.68,437114.88 Europe,Cyprus,Snacks,Online,L,12/1/2011,665285098,12/18/2011,1499,152.58,97.44,228717.42,146062.56,82654.86 Central America and the Caribbean,Cuba,Snacks,Offline,L,6/7/2014,142741429,6/23/2014,9216,152.58,97.44,1406177.28,898007.04,508170.24 Europe,United Kingdom,Beverages,Online,L,10/26/2010,245058906,11/17/2010,7231,47.45,31.79,343110.95,229873.49,113237.46 Middle East and North Africa,Lebanon,Clothes,Online,L,10/18/2015,673848855,10/26/2015,5705,109.28,35.84,623442.40,204467.20,418975.20 Asia,Laos,Cereal,Online,C,1/26/2011,301035106,3/6/2011,1832,205.70,117.11,376842.40,214545.52,162296.88 Europe,Romania,Meat,Offline,L,4/11/2017,318853986,5/20/2017,4835,421.89,364.69,2039838.15,1763276.15,276562.00 Asia,Uzbekistan,Household,Online,C,6/21/2014,189854323,7/14/2014,968,668.27,502.54,646885.36,486458.72,160426.64 Sub-Saharan Africa,Cameroon,Baby Food,Offline,C,1/20/2014,796897447,2/10/2014,8518,255.28,159.42,2174475.04,1357939.56,816535.48 Middle East and North Africa,Afghanistan,Cereal,Offline,C,2/22/2017,393157184,4/10/2017,2802,205.70,117.11,576371.40,328142.22,248229.18 Europe,Luxembourg,Baby Food,Online,H,10/10/2010,452119863,11/10/2010,1169,255.28,159.42,298422.32,186361.98,112060.34 Sub-Saharan Africa,Lesotho,Fruits,Offline,C,2/11/2017,717584311,3/24/2017,7999,9.33,6.92,74630.67,55353.08,19277.59 Europe,Montenegro,Snacks,Online,C,12/21/2013,553661859,12/27/2013,9702,152.58,97.44,1480331.16,945362.88,534968.28 Australia and Oceania,Papua New Guinea,Cereal,Offline,L,4/16/2014,294776332,6/5/2014,9722,205.70,117.11,1999815.40,1138543.42,861271.98 Sub-Saharan Africa,Mozambique,Clothes,Offline,L,12/7/2016,795664060,12/7/2016,3532,109.28,35.84,385976.96,126586.88,259390.08 Sub-Saharan Africa,South Africa,Beverages,Online,L,6/23/2010,281373870,7/23/2010,3636,47.45,31.79,172528.20,115588.44,56939.76 Sub-Saharan Africa,Seychelles ,Meat,Offline,M,11/3/2014,197267091,11/27/2014,4571,421.89,364.69,1928459.19,1666997.99,261461.20 Australia and Oceania,Fiji,Fruits,Online,M,12/9/2016,259017550,12/12/2016,7904,9.33,6.92,73744.32,54695.68,19048.64 Asia,Singapore,Clothes,Offline,M,4/30/2012,702611577,5/4/2012,7234,109.28,35.84,790531.52,259266.56,531264.96 Sub-Saharan Africa,Mauritania,Beverages,Online,M,7/22/2016,934347999,7/23/2016,3191,47.45,31.79,151412.95,101441.89,49971.06 Europe,Germany,Baby Food,Offline,C,12/11/2015,880838143,1/11/2016,8436,255.28,159.42,2153542.08,1344867.12,808674.96 Europe,Netherlands,Clothes,Online,C,10/23/2016,539005839,11/10/2016,2661,109.28,35.84,290794.08,95370.24,195423.84 Sub-Saharan Africa,Benin,Office Supplies,Online,M,5/25/2011,426087415,5/27/2011,7589,651.21,524.96,4942032.69,3983921.44,958111.25 Asia,Bangladesh,Office Supplies,Offline,H,12/7/2011,229631698,12/18/2011,1977,651.21,524.96,1287442.17,1037845.92,249596.25 Europe,Denmark,Snacks,Offline,C,7/30/2016,157500016,9/2/2016,6610,152.58,97.44,1008553.80,644078.40,364475.40 Sub-Saharan Africa,Zimbabwe,Baby Food,Offline,M,3/11/2013,487866199,3/11/2013,9304,255.28,159.42,2375125.12,1483243.68,891881.44 Sub-Saharan Africa,Zambia,Snacks,Offline,L,6/2/2013,219216573,6/3/2013,9910,152.58,97.44,1512067.80,965630.40,546437.40 Sub-Saharan Africa,Senegal,Personal Care,Online,L,1/14/2011,220349967,1/31/2011,5307,81.73,56.67,433741.11,300747.69,132993.42 Middle East and North Africa,Kuwait,Baby Food,Offline,C,1/12/2016,980377709,2/24/2016,4405,255.28,159.42,1124508.40,702245.10,422263.30 Sub-Saharan Africa,Gabon,Baby Food,Offline,L,12/12/2012,358723628,12/19/2012,3148,255.28,159.42,803621.44,501854.16,301767.28 Middle East and North Africa,Somalia,Vegetables,Offline,H,2/14/2010,335124051,2/22/2010,9509,154.06,90.93,1464956.54,864653.37,600303.17 Sub-Saharan Africa,Guinea-Bissau,Clothes,Offline,H,2/27/2013,259627807,3/27/2013,8492,109.28,35.84,928005.76,304353.28,623652.48 Europe,Georgia,Clothes,Online,L,8/4/2013,902596223,8/17/2013,7135,109.28,35.84,779712.80,255718.40,523994.40 Europe,Germany,Cereal,Offline,H,5/15/2015,404703128,7/3/2015,9504,205.70,117.11,1954972.80,1113013.44,841959.36 Asia,Malaysia,Baby Food,Online,H,12/8/2015,126934850,1/9/2016,1698,255.28,159.42,433465.44,270695.16,162770.28 Middle East and North Africa,Egypt,Cereal,Online,M,1/7/2010,600590217,1/8/2010,6846,205.70,117.11,1408222.20,801735.06,606487.14 Middle East and North Africa,Libya,Office Supplies,Offline,M,2/15/2016,177280557,2/19/2016,111,651.21,524.96,72284.31,58270.56,14013.75 Asia,Uzbekistan,Office Supplies,Offline,M,3/3/2012,878929698,4/3/2012,3684,651.21,524.96,2399057.64,1933952.64,465105.00 Sub-Saharan Africa,Malawi,Cosmetics,Offline,L,1/4/2015,747773969,2/4/2015,1789,437.20,263.33,782150.80,471097.37,311053.43 Europe,Montenegro,Clothes,Online,C,1/19/2016,596362197,3/3/2016,5681,109.28,35.84,620819.68,203607.04,417212.64 Middle East and North Africa,Egypt,Cosmetics,Online,C,5/6/2015,857555711,5/30/2015,8646,437.20,263.33,3780031.20,2276751.18,1503280.02 Europe,Spain,Vegetables,Offline,L,3/20/2010,234528338,3/31/2010,1002,154.06,90.93,154368.12,91111.86,63256.26 Sub-Saharan Africa,Rwanda,Baby Food,Online,M,3/15/2014,650766408,3/26/2014,5096,255.28,159.42,1300906.88,812404.32,488502.56 Australia and Oceania,Vanuatu,Cereal,Offline,M,5/26/2015,500068747,6/10/2015,310,205.70,117.11,63767.00,36304.10,27462.90 Central America and the Caribbean,Saint Kitts and Nevis ,Cosmetics,Offline,M,7/18/2010,496546685,8/17/2010,8053,437.20,263.33,3520771.60,2120596.49,1400175.11 Sub-Saharan Africa,Sao Tome and Principe,Beverages,Offline,H,5/14/2016,524624049,7/3/2016,6769,47.45,31.79,321189.05,215186.51,106002.54 Central America and the Caribbean,Grenada,Clothes,Offline,M,10/20/2012,989037168,11/20/2012,6931,109.28,35.84,757419.68,248407.04,509012.64 Middle East and North Africa,Syria,Fruits,Offline,H,12/5/2014,564834868,12/26/2014,6044,9.33,6.92,56390.52,41824.48,14566.04 Asia,India,Household,Online,L,2/27/2016,247378480,3/27/2016,3644,668.27,502.54,2435175.88,1831255.76,603920.12 Central America and the Caribbean,El Salvador,Office Supplies,Online,L,10/9/2014,202341830,10/10/2014,6299,651.21,524.96,4101971.79,3306723.04,795248.75 Europe,San Marino,Personal Care,Offline,H,2/8/2010,215711247,3/30/2010,2607,81.73,56.67,213070.11,147738.69,65331.42 Central America and the Caribbean,Dominican Republic,Office Supplies,Offline,C,12/3/2013,143785560,12/24/2013,8197,651.21,524.96,5337968.37,4303097.12,1034871.25 Sub-Saharan Africa,Ethiopia,Beverages,Online,H,5/1/2016,363176095,5/31/2016,732,47.45,31.79,34733.40,23270.28,11463.12 Middle East and North Africa,Afghanistan,Cereal,Online,M,4/16/2012,420806682,5/12/2012,4903,205.70,117.11,1008547.10,574190.33,434356.77 Sub-Saharan Africa,Sudan,Clothes,Online,M,12/21/2012,383913648,1/13/2013,7435,109.28,35.84,812496.80,266470.40,546026.40 Europe,Montenegro,Snacks,Offline,L,9/6/2011,390045821,9/29/2011,2081,152.58,97.44,317518.98,202772.64,114746.34 Middle East and North Africa,Jordan,Cereal,Online,L,5/9/2010,197064530,6/19/2010,4629,205.70,117.11,952185.30,542102.19,410083.11 Sub-Saharan Africa,Togo,Cereal,Offline,H,10/15/2015,533143603,11/15/2015,7895,205.70,117.11,1624001.50,924583.45,699418.05 Middle East and North Africa,Pakistan,Meat,Offline,H,2/12/2013,846769368,2/22/2013,6728,421.89,364.69,2838475.92,2453634.32,384841.60 Middle East and North Africa,Lebanon,Clothes,Online,L,1/22/2015,656740653,2/24/2015,3008,109.28,35.84,328714.24,107806.72,220907.52 Sub-Saharan Africa,Guinea-Bissau,Office Supplies,Online,H,8/29/2012,902168786,9/16/2012,647,651.21,524.96,421332.87,339649.12,81683.75 Europe,Albania,Clothes,Online,H,12/23/2016,792477595,1/16/2017,586,109.28,35.84,64038.08,21002.24,43035.84 Sub-Saharan Africa,Togo,Beverages,Offline,M,5/29/2017,957403409,6/16/2017,5799,47.45,31.79,275162.55,184350.21,90812.34 Europe,Andorra,Office Supplies,Online,C,10/11/2015,296995055,10/21/2015,6292,651.21,524.96,4097413.32,3303048.32,794365.00 Sub-Saharan Africa,Togo,Cereal,Online,L,12/20/2014,931613862,1/11/2015,4099,205.70,117.11,843164.30,480033.89,363130.41 Central America and the Caribbean,Trinidad and Tobago,Cosmetics,Online,M,2/25/2015,551933658,3/9/2015,8289,437.20,263.33,3623950.80,2182742.37,1441208.43 Europe,Czech Republic,Office Supplies,Offline,H,7/23/2017,968940770,7/28/2017,9961,651.21,524.96,6486702.81,5229126.56,1257576.25 Asia,Maldives,Baby Food,Online,H,2/14/2013,463934028,2/26/2013,7243,255.28,159.42,1848993.04,1154679.06,694313.98 Australia and Oceania,Solomon Islands,Office Supplies,Offline,M,7/27/2016,538524758,8/3/2016,298,651.21,524.96,194060.58,156438.08,37622.50 Europe,Russia,Personal Care,Offline,L,3/5/2017,964636790,3/9/2017,6317,81.73,56.67,516288.41,357984.39,158304.02 Sub-Saharan Africa,Uganda,Cosmetics,Offline,L,11/9/2012,234506452,12/8/2012,4525,437.20,263.33,1978330.00,1191568.25,786761.75 Asia,Bhutan,Household,Online,C,12/18/2013,510682570,2/3/2014,1176,668.27,502.54,785885.52,590987.04,194898.48 Europe,Lithuania,Meat,Online,H,10/1/2016,876026475,11/4/2016,4556,421.89,364.69,1922130.84,1661527.64,260603.20 Asia,Tajikistan,Vegetables,Online,M,10/5/2014,483711993,10/13/2014,9983,154.06,90.93,1537980.98,907754.19,630226.79 Asia,Japan,Fruits,Online,C,3/4/2010,807225453,4/22/2010,4805,9.33,6.92,44830.65,33250.60,11580.05 Europe,Russia,Household,Online,C,1/5/2010,690365684,1/26/2010,3402,668.27,502.54,2273454.54,1709641.08,563813.46 Central America and the Caribbean,Grenada,Household,Offline,H,10/22/2014,397244012,10/31/2014,2186,668.27,502.54,1460838.22,1098552.44,362285.78 Asia,Bangladesh,Meat,Online,M,10/11/2014,262284266,11/11/2014,4598,421.89,364.69,1939850.22,1676844.62,263005.60 Asia,Vietnam,Baby Food,Offline,L,5/12/2016,240222775,5/31/2016,6112,255.28,159.42,1560271.36,974375.04,585896.32 Sub-Saharan Africa,Sudan,Vegetables,Online,H,9/16/2015,356108367,10/31/2015,9234,154.06,90.93,1422590.04,839647.62,582942.42 Australia and Oceania,Palau,Cereal,Offline,M,1/8/2010,255302369,2/18/2010,8499,205.70,117.11,1748244.30,995317.89,752926.41 North America,Canada,Vegetables,Offline,C,7/4/2016,553478610,8/4/2016,5475,154.06,90.93,843478.50,497841.75,345636.75 Central America and the Caribbean,Honduras,Household,Online,M,7/29/2015,586623418,7/29/2015,3760,668.27,502.54,2512695.20,1889550.40,623144.80 Central America and the Caribbean,Panama,Clothes,Offline,C,3/12/2015,661035621,4/4/2015,3985,109.28,35.84,435480.80,142822.40,292658.40 Sub-Saharan Africa,Togo,Baby Food,Offline,C,11/1/2016,703326547,12/8/2016,8809,255.28,159.42,2248761.52,1404330.78,844430.74 Asia,Taiwan,Cosmetics,Online,L,9/4/2011,710420024,9/20/2011,7927,437.20,263.33,3465684.40,2087416.91,1378267.49 Sub-Saharan Africa,Sierra Leone,Vegetables,Online,L,9/1/2014,299552381,9/1/2014,3061,154.06,90.93,471577.66,278336.73,193240.93 Asia,Vietnam,Cosmetics,Offline,C,5/2/2015,958272445,5/18/2015,2966,437.20,263.33,1296735.20,781036.78,515698.42 Sub-Saharan Africa,Mauritius ,Personal Care,Online,L,10/27/2011,194441545,10/31/2011,8429,81.73,56.67,688902.17,477671.43,211230.74 Middle East and North Africa,Algeria,Baby Food,Online,L,9/18/2014,986233508,11/1/2014,7266,255.28,159.42,1854864.48,1158345.72,696518.76 Europe,Belgium,Vegetables,Online,L,12/8/2012,532134664,1/3/2013,9327,154.06,90.93,1436917.62,848104.11,588813.51 Sub-Saharan Africa,Mauritania,Snacks,Offline,M,5/31/2015,600943839,7/1/2015,1491,152.58,97.44,227496.78,145283.04,82213.74 Asia,Tajikistan,Cereal,Online,L,12/24/2016,781772363,12/25/2016,2670,205.70,117.11,549219.00,312683.70,236535.30 Asia,South Korea,Fruits,Online,M,5/4/2017,734044063,5/26/2017,8805,9.33,6.92,82150.65,60930.60,21220.05 Europe,Czech Republic,Beverages,Online,L,3/29/2017,637495267,5/3/2017,7871,47.45,31.79,373478.95,250219.09,123259.86 Asia,North Korea,Beverages,Online,M,9/22/2014,742174804,10/16/2014,4872,47.45,31.79,231176.40,154880.88,76295.52 Middle East and North Africa,Oman,Clothes,Online,C,6/19/2016,918444001,7/26/2016,6845,109.28,35.84,748021.60,245324.80,502696.80 Middle East and North Africa,Pakistan,Baby Food,Offline,M,4/8/2011,206976687,4/16/2011,7856,255.28,159.42,2005479.68,1252403.52,753076.16 Europe,France,Cosmetics,Offline,M,9/23/2011,868759191,10/28/2011,4005,437.20,263.33,1750986.00,1054636.65,696349.35 Middle East and North Africa,Turkey,Household,Online,C,7/23/2012,735090339,7/28/2012,8421,668.27,502.54,5627501.67,4231889.34,1395612.33 Europe,Ukraine,Household,Online,L,2/18/2017,857581460,3/7/2017,6266,668.27,502.54,4187379.82,3148915.64,1038464.18 Asia,Malaysia,Personal Care,Online,C,12/9/2010,558156383,12/19/2010,9732,81.73,56.67,795396.36,551512.44,243883.92 Sub-Saharan Africa,Guinea,Office Supplies,Online,H,10/29/2010,579051434,12/3/2010,3042,651.21,524.96,1980980.82,1596928.32,384052.50 Sub-Saharan Africa,Rwanda,Vegetables,Offline,L,10/13/2015,832815444,11/13/2015,7452,154.06,90.93,1148055.12,677610.36,470444.76 Europe,Macedonia,Fruits,Online,C,9/15/2010,852309739,9/16/2010,6247,9.33,6.92,58284.51,43229.24,15055.27 Asia,Bangladesh,Cosmetics,Online,C,8/22/2015,240708148,9/28/2015,9745,437.20,263.33,4260514.00,2566150.85,1694363.15 Asia,Bangladesh,Snacks,Offline,L,11/1/2013,921496999,12/14/2013,294,152.58,97.44,44858.52,28647.36,16211.16 Middle East and North Africa,Oman,Cereal,Offline,H,2/8/2016,388475120,2/18/2016,7276,205.70,117.11,1496673.20,852092.36,644580.84 Europe,Denmark,Personal Care,Online,M,8/13/2011,255753839,9/29/2011,2099,81.73,56.67,171551.27,118950.33,52600.94 Europe,Macedonia,Beverages,Online,L,2/2/2017,407756984,3/20/2017,3208,47.45,31.79,152219.60,101982.32,50237.28 Europe,Norway,Personal Care,Online,H,6/20/2012,349220883,7/4/2012,1075,81.73,56.67,87859.75,60920.25,26939.50 Sub-Saharan Africa,Kenya,Cosmetics,Online,H,10/27/2012,555194365,12/16/2012,3205,437.20,263.33,1401226.00,843972.65,557253.35 Sub-Saharan Africa,Angola,Beverages,Online,M,7/30/2011,221038758,8/9/2011,9135,47.45,31.79,433455.75,290401.65,143054.10 Sub-Saharan Africa,Djibouti,Cosmetics,Offline,C,7/30/2014,412427890,9/11/2014,5433,437.20,263.33,2375307.60,1430671.89,944635.71 Europe,United Kingdom,Baby Food,Online,L,8/2/2013,915348088,8/11/2013,695,255.28,159.42,177419.60,110796.90,66622.70 Australia and Oceania,Federated States of Micronesia,Snacks,Offline,C,10/18/2012,686098182,10/25/2012,553,152.58,97.44,84376.74,53884.32,30492.42 Sub-Saharan Africa,Mauritius ,Office Supplies,Online,C,6/17/2017,101289498,6/17/2017,2668,651.21,524.96,1737428.28,1400593.28,336835.00 Europe,France,Baby Food,Online,L,12/19/2014,507845866,1/26/2015,1732,255.28,159.42,442144.96,276115.44,166029.52 Central America and the Caribbean,Honduras,Fruits,Offline,H,6/25/2016,173003613,7/30/2016,4469,9.33,6.92,41695.77,30925.48,10770.29 Asia,Sri Lanka,Fruits,Offline,H,4/26/2015,134311568,6/7/2015,4633,9.33,6.92,43225.89,32060.36,11165.53 Middle East and North Africa,Libya,Office Supplies,Offline,C,5/28/2013,149631059,6/22/2013,8010,651.21,524.96,5216192.10,4204929.60,1011262.50 Sub-Saharan Africa,Benin,Clothes,Offline,H,7/18/2017,947135913,8/26/2017,7419,109.28,35.84,810748.32,265896.96,544851.36 Middle East and North Africa,Afghanistan,Personal Care,Online,C,11/14/2012,175312459,1/2/2013,7707,81.73,56.67,629893.11,436755.69,193137.42 Sub-Saharan Africa,Cameroon,Personal Care,Offline,H,2/5/2012,952959525,2/15/2012,755,81.73,56.67,61706.15,42785.85,18920.30 Middle East and North Africa,Saudi Arabia,Cereal,Online,M,11/6/2013,619188439,12/19/2013,474,205.70,117.11,97501.80,55510.14,41991.66 Asia,Singapore,Personal Care,Offline,M,1/12/2014,183423030,1/13/2014,7805,81.73,56.67,637902.65,442309.35,195593.30 Europe,Ukraine,Cosmetics,Online,M,3/11/2017,275399625,3/19/2017,5724,437.20,263.33,2502532.80,1507300.92,995231.88 Asia,Mongolia,Cosmetics,Offline,C,1/2/2010,695167052,1/22/2010,4234,437.20,263.33,1851104.80,1114939.22,736165.58 Europe,Belgium,Household,Offline,L,7/4/2010,863086640,7/13/2010,5371,668.27,502.54,3589278.17,2699142.34,890135.83 Asia,South Korea,Household,Online,H,4/16/2011,269832217,5/22/2011,8204,668.27,502.54,5482487.08,4122838.16,1359648.92 Asia,Turkmenistan,Cosmetics,Offline,H,8/1/2013,726390111,8/23/2013,3831,437.20,263.33,1674913.20,1008817.23,666095.97 Sub-Saharan Africa,Central African Republic,Cosmetics,Online,H,11/26/2015,514059150,12/26/2015,381,437.20,263.33,166573.20,100328.73,66244.47 Sub-Saharan Africa,Mauritius ,Fruits,Online,M,3/30/2010,234450662,5/4/2010,8016,9.33,6.92,74789.28,55470.72,19318.56 Australia and Oceania,Kiribati,Vegetables,Online,C,3/7/2016,559488475,4/25/2016,3928,154.06,90.93,605147.68,357173.04,247974.64 Europe,Liechtenstein,Baby Food,Online,C,6/27/2016,881408917,8/15/2016,7340,255.28,159.42,1873755.20,1170142.80,703612.40 Australia and Oceania,Federated States of Micronesia,Snacks,Offline,M,12/6/2013,662760818,1/23/2014,4509,152.58,97.44,687983.22,439356.96,248626.26 Middle East and North Africa,Jordan,Fruits,Online,C,5/7/2012,786405503,6/2/2012,3719,9.33,6.92,34698.27,25735.48,8962.79 Middle East and North Africa,Algeria,Clothes,Offline,M,11/7/2012,405516803,12/25/2012,288,109.28,35.84,31472.64,10321.92,21150.72 Sub-Saharan Africa,Djibouti,Household,Online,C,1/16/2010,993581044,3/1/2010,1565,668.27,502.54,1045842.55,786475.10,259367.45 Middle East and North Africa,Qatar,Vegetables,Online,M,12/16/2010,494397056,1/16/2011,1930,154.06,90.93,297335.80,175494.90,121840.90 Sub-Saharan Africa,Mozambique,Clothes,Offline,C,2/11/2016,972076165,3/22/2016,7794,109.28,35.84,851728.32,279336.96,572391.36 Asia,Singapore,Cosmetics,Online,M,9/26/2015,961042201,11/7/2015,2599,437.20,263.33,1136282.80,684394.67,451888.13 Europe,Vatican City,Meat,Online,H,4/6/2016,416031491,4/22/2016,1818,421.89,364.69,766996.02,663006.42,103989.60 Australia and Oceania,Federated States of Micronesia,Snacks,Offline,H,11/4/2013,262092864,12/11/2013,7958,152.58,97.44,1214231.64,775427.52,438804.12 Asia,Thailand,Beverages,Online,L,4/2/2013,144587647,5/8/2013,5553,47.45,31.79,263489.85,176529.87,86959.98 Middle East and North Africa,Kuwait,Household,Offline,L,7/20/2016,679189670,8/26/2016,6171,668.27,502.54,4123894.17,3101174.34,1022719.83 Middle East and North Africa,Jordan,Household,Online,L,9/20/2011,301885259,10/15/2011,3411,668.27,502.54,2279468.97,1714163.94,565305.03 Europe,United Kingdom,Clothes,Offline,L,4/21/2014,218973243,5/15/2014,7903,109.28,35.84,863639.84,283243.52,580396.32 Europe,Sweden,Cosmetics,Online,H,8/18/2010,357064950,9/8/2010,2308,437.20,263.33,1009057.60,607765.64,401291.96 Sub-Saharan Africa,Rwanda,Household,Offline,L,8/3/2014,713084208,9/14/2014,6318,668.27,502.54,4222129.86,3175047.72,1047082.14 Asia,Turkmenistan,Meat,Offline,H,11/4/2010,904267346,11/30/2010,1657,421.89,364.69,699071.73,604291.33,94780.40 Europe,France,Cereal,Offline,H,8/19/2011,618163192,10/8/2011,7080,205.70,117.11,1456356.00,829138.80,627217.20 Europe,Greece,Personal Care,Online,M,2/9/2015,962633073,2/12/2015,3373,81.73,56.67,275675.29,191147.91,84527.38 Europe,Norway,Fruits,Offline,M,9/15/2016,415850818,9/30/2016,8353,9.33,6.92,77933.49,57802.76,20130.73 Sub-Saharan Africa,The Gambia,Cereal,Offline,H,12/4/2012,676302754,1/1/2013,1869,205.70,117.11,384453.30,218878.59,165574.71 Sub-Saharan Africa,Niger,Cosmetics,Online,L,9/8/2012,812787711,9/30/2012,801,437.20,263.33,350197.20,210927.33,139269.87 Asia,Sri Lanka,Office Supplies,Online,L,11/1/2010,414417016,12/11/2010,4059,651.21,524.96,2643261.39,2130812.64,512448.75 Europe,Macedonia,Household,Offline,H,8/18/2014,940614497,9/1/2014,7587,668.27,502.54,5070164.49,3812770.98,1257393.51 Europe,Russia,Household,Offline,M,4/5/2017,771116483,5/14/2017,9358,668.27,502.54,6253670.66,4702769.32,1550901.34 Europe,Italy,Fruits,Online,H,10/5/2016,155971801,11/23/2016,4377,9.33,6.92,40837.41,30288.84,10548.57 Middle East and North Africa,Afghanistan,Snacks,Offline,L,3/28/2012,765541779,5/6/2012,9679,152.58,97.44,1476821.82,943121.76,533700.06 Middle East and North Africa,Algeria,Cosmetics,Offline,C,3/20/2015,740500247,5/5/2015,9333,437.20,263.33,4080387.60,2457658.89,1622728.71 Sub-Saharan Africa,Burundi,Meat,Offline,H,7/25/2015,541833531,8/10/2015,9438,421.89,364.69,3981797.82,3441944.22,539853.60 Europe,Lithuania,Meat,Online,M,7/30/2015,700840461,9/6/2015,3121,421.89,364.69,1316718.69,1138197.49,178521.20 Sub-Saharan Africa,Swaziland,Cosmetics,Offline,M,1/17/2011,469132363,1/26/2011,5546,437.20,263.33,2424711.20,1460428.18,964283.02 Asia,Laos,Beverages,Online,L,3/8/2010,968633067,3/27/2010,8905,47.45,31.79,422542.25,283089.95,139452.30 Sub-Saharan Africa,Malawi,Snacks,Offline,H,9/10/2014,241578900,9/28/2014,7420,152.58,97.44,1132143.60,723004.80,409138.80 Europe,Croatia,Cereal,Online,C,12/27/2015,900518691,2/12/2016,2347,205.70,117.11,482777.90,274857.17,207920.73 Sub-Saharan Africa,Djibouti,Meat,Online,H,2/10/2014,678313767,2/17/2014,6972,421.89,364.69,2941417.08,2542618.68,398798.40 Central America and the Caribbean,Barbados,Cosmetics,Online,M,12/19/2013,978137958,1/29/2014,1613,437.20,263.33,705203.60,424751.29,280452.31 Middle East and North Africa,Pakistan,Snacks,Offline,M,12/11/2013,123477590,12/12/2013,8618,152.58,97.44,1314934.44,839737.92,475196.52 Europe,Sweden,Fruits,Offline,H,4/15/2017,108131492,5/18/2017,7366,9.33,6.92,68724.78,50972.72,17752.06 Asia,Mongolia,Cosmetics,Online,L,2/26/2013,746210992,4/8/2013,9270,437.20,263.33,4052844.00,2441069.10,1611774.90 Asia,North Korea,Cosmetics,Offline,M,9/17/2010,122139918,10/6/2010,2771,437.20,263.33,1211481.20,729687.43,481793.77 Europe,Greece,Household,Offline,M,8/9/2012,440654599,9/4/2012,8343,668.27,502.54,5575376.61,4192691.22,1382685.39 Europe,Italy,Vegetables,Offline,L,3/12/2011,376803863,3/17/2011,3491,154.06,90.93,537823.46,317436.63,220386.83 Europe,Germany,Vegetables,Offline,M,1/16/2015,925949037,2/4/2015,7751,154.06,90.93,1194119.06,704798.43,489320.63 Australia and Oceania,Fiji,Cereal,Online,H,11/9/2014,453763949,11/21/2014,7691,205.70,117.11,1582038.70,900693.01,681345.69 Central America and the Caribbean,Jamaica,Household,Online,L,7/17/2017,546234929,9/3/2017,1909,668.27,502.54,1275727.43,959348.86,316378.57 Europe,Greece,Office Supplies,Offline,M,2/22/2012,159660804,3/15/2012,6035,651.21,524.96,3930052.35,3168133.60,761918.75 Australia and Oceania,New Zealand,Cosmetics,Online,C,6/28/2011,570652902,8/16/2011,7730,437.20,263.33,3379556.00,2035540.90,1344015.10 Central America and the Caribbean,Guatemala,Cosmetics,Offline,H,7/17/2010,426135051,8/14/2010,1686,437.20,263.33,737119.20,443974.38,293144.82 Europe,Luxembourg,Baby Food,Online,M,11/22/2012,693343579,12/16/2012,4628,255.28,159.42,1181435.84,737795.76,443640.08 Sub-Saharan Africa,Rwanda,Clothes,Online,H,11/8/2011,609827315,12/17/2011,309,109.28,35.84,33767.52,11074.56,22692.96 Europe,Austria,Baby Food,Online,M,12/5/2016,833447587,1/12/2017,4517,255.28,159.42,1153099.76,720100.14,432999.62 Europe,Spain,Personal Care,Online,M,3/15/2012,292378222,4/8/2012,68,81.73,56.67,5557.64,3853.56,1704.08 Asia,Turkmenistan,Beverages,Offline,C,2/5/2013,235105550,2/20/2013,1812,47.45,31.79,85979.40,57603.48,28375.92 Middle East and North Africa,Somalia,Personal Care,Offline,H,3/8/2017,180428397,3/23/2017,1627,81.73,56.67,132974.71,92202.09,40772.62 Sub-Saharan Africa,Gabon,Baby Food,Online,H,7/6/2015,167458093,8/20/2015,3426,255.28,159.42,874589.28,546172.92,328416.36 Australia and Oceania,Vanuatu,Personal Care,Offline,C,7/24/2011,305618464,8/1/2011,8150,81.73,56.67,666099.50,461860.50,204239.00 Middle East and North Africa,Kuwait,Meat,Online,C,6/12/2017,324645841,7/9/2017,8773,421.89,364.69,3701240.97,3199425.37,501815.60 Australia and Oceania,Federated States of Micronesia,Cereal,Offline,H,4/12/2012,924589049,4/20/2012,5301,205.70,117.11,1090415.70,620800.11,469615.59 Sub-Saharan Africa,Ghana,Vegetables,Online,C,2/2/2014,625809419,2/28/2014,9769,154.06,90.93,1505012.14,888295.17,616716.97 Europe,United Kingdom,Office Supplies,Online,M,6/22/2015,718980777,7/30/2015,1244,651.21,524.96,810105.24,653050.24,157055.00 Asia,Bangladesh,Cosmetics,Offline,M,1/31/2010,315089452,2/17/2010,826,437.20,263.33,361127.20,217510.58,143616.62 Europe,Italy,Personal Care,Online,M,7/31/2011,395434272,8/27/2011,6643,81.73,56.67,542932.39,376458.81,166473.58 Sub-Saharan Africa,Democratic Republic of the Congo,Vegetables,Online,L,12/19/2011,661626565,1/28/2012,8858,154.06,90.93,1364663.48,805457.94,559205.54 Europe,Romania,Fruits,Offline,M,8/30/2015,885590159,9/20/2015,4663,9.33,6.92,43505.79,32267.96,11237.83 Australia and Oceania,Palau,Baby Food,Online,L,1/6/2013,459561383,2/20/2013,3281,255.28,159.42,837573.68,523057.02,314516.66 Australia and Oceania,Federated States of Micronesia,Cosmetics,Offline,H,5/16/2014,646089065,6/12/2014,967,437.20,263.33,422772.40,254640.11,168132.29 Asia,Indonesia,Cereal,Online,L,12/29/2015,528034532,2/13/2016,6007,205.70,117.11,1235639.90,703479.77,532160.13 Middle East and North Africa,Syria,Office Supplies,Offline,M,6/1/2011,158571612,6/16/2011,3719,651.21,524.96,2421849.99,1952326.24,469523.75 Europe,Serbia,Fruits,Online,M,5/22/2010,111186635,6/8/2010,1451,9.33,6.92,13537.83,10040.92,3496.91 Asia,Kazakhstan,Cereal,Online,H,5/17/2012,129678428,6/4/2012,3583,205.70,117.11,737023.10,419605.13,317417.97 Asia,Sri Lanka,Beverages,Online,C,4/27/2010,478158318,6/16/2010,6527,47.45,31.79,309706.15,207493.33,102212.82 Middle East and North Africa,United Arab Emirates,Baby Food,Offline,C,3/2/2017,591050136,4/1/2017,3724,255.28,159.42,950662.72,593680.08,356982.64 Australia and Oceania,Papua New Guinea,Cosmetics,Online,C,8/21/2016,423090207,10/2/2016,649,437.20,263.33,283742.80,170901.17,112841.63 Asia,Mongolia,Personal Care,Online,H,6/13/2012,899327361,6/20/2012,9806,81.73,56.67,801444.38,555706.02,245738.36 Europe,Georgia,Baby Food,Offline,H,12/14/2016,765122926,12/23/2016,5731,255.28,159.42,1463009.68,913636.02,549373.66 Australia and Oceania,East Timor,Fruits,Online,L,1/24/2017,636150729,2/13/2017,9992,9.33,6.92,93225.36,69144.64,24080.72 Sub-Saharan Africa,Mozambique,Beverages,Online,H,11/28/2015,748397099,12/25/2015,6188,47.45,31.79,293620.60,196716.52,96904.08 Europe,Russia,Beverages,Offline,C,11/20/2013,508160865,11/22/2013,4947,47.45,31.79,234735.15,157265.13,77470.02 Middle East and North Africa,Iran,Meat,Online,C,6/20/2012,742053353,7/24/2012,8932,421.89,364.69,3768321.48,3257411.08,510910.40 Central America and the Caribbean,Saint Kitts and Nevis ,Office Supplies,Offline,C,5/26/2010,546998393,7/12/2010,7835,651.21,524.96,5102230.35,4113061.60,989168.75 Europe,Poland,Snacks,Offline,H,1/23/2015,440232312,2/22/2015,3379,152.58,97.44,515567.82,329249.76,186318.06 Central America and the Caribbean,Haiti,Fruits,Online,C,12/23/2015,109303939,1/2/2016,4319,9.33,6.92,40296.27,29887.48,10408.79 Australia and Oceania,Samoa ,Clothes,Offline,C,4/19/2011,662074601,5/19/2011,1442,109.28,35.84,157581.76,51681.28,105900.48 Sub-Saharan Africa,Mauritania,Household,Online,M,8/8/2011,576718127,8/23/2011,2565,668.27,502.54,1714112.55,1289015.10,425097.45 Europe,Albania,Baby Food,Online,C,5/22/2013,651720845,5/30/2013,7536,255.28,159.42,1923790.08,1201389.12,722400.96 Sub-Saharan Africa,Zimbabwe,Clothes,Offline,H,6/9/2010,855881583,7/20/2010,3235,109.28,35.84,353520.80,115942.40,237578.40 Middle East and North Africa,Azerbaijan,Beverages,Offline,C,9/24/2012,778311669,9/29/2012,8574,47.45,31.79,406836.30,272567.46,134268.84 Sub-Saharan Africa,Rwanda,Vegetables,Offline,M,5/23/2012,978434932,6/26/2012,9494,154.06,90.93,1462645.64,863289.42,599356.22 Sub-Saharan Africa,Burundi,Household,Offline,L,3/7/2010,735987699,3/28/2010,3970,668.27,502.54,2653031.90,1995083.80,657948.10 Sub-Saharan Africa,Kenya,Clothes,Online,H,9/14/2011,301018798,9/14/2011,7006,109.28,35.84,765615.68,251095.04,514520.64 Asia,Vietnam,Cosmetics,Offline,M,1/23/2016,443889558,2/11/2016,5639,437.20,263.33,2465370.80,1484917.87,980452.93 Middle East and North Africa,Afghanistan,Meat,Offline,C,1/23/2012,205273807,2/3/2012,3936,421.89,364.69,1660559.04,1435419.84,225139.20 Asia,Myanmar,Cereal,Offline,C,4/18/2012,946157872,5/13/2012,7995,205.70,117.11,1644571.50,936294.45,708277.05 Central America and the Caribbean,Jamaica,Office Supplies,Online,M,6/29/2011,497840583,8/16/2011,946,651.21,524.96,616044.66,496612.16,119432.50 Europe,Cyprus,Clothes,Offline,M,1/1/2013,811933267,1/29/2013,7951,109.28,35.84,868885.28,284963.84,583921.44 Asia,Turkmenistan,Office Supplies,Offline,C,6/21/2017,310359752,6/26/2017,1202,651.21,524.96,782754.42,631001.92,151752.50 Sub-Saharan Africa,Tanzania,Office Supplies,Offline,M,6/17/2011,635356366,7/16/2011,4923,651.21,524.96,3205906.83,2584378.08,621528.75 Sub-Saharan Africa,Rwanda,Baby Food,Offline,H,8/30/2016,799471938,10/9/2016,367,255.28,159.42,93687.76,58507.14,35180.62 Asia,Singapore,Baby Food,Offline,L,6/2/2010,335567796,7/13/2010,823,255.28,159.42,210095.44,131202.66,78892.78 Middle East and North Africa,Jordan,Office Supplies,Online,H,10/7/2012,646817767,10/29/2012,6606,651.21,524.96,4301893.26,3467885.76,834007.50 Europe,Switzerland,Baby Food,Online,L,7/11/2014,956708180,8/20/2014,66,255.28,159.42,16848.48,10521.72,6326.76 Sub-Saharan Africa,Sao Tome and Principe,Household,Offline,L,5/15/2011,559037864,6/19/2011,582,668.27,502.54,388933.14,292478.28,96454.86 Sub-Saharan Africa,Uganda,Beverages,Online,M,3/5/2015,167918145,3/19/2015,9566,47.45,31.79,453906.70,304103.14,149803.56 Sub-Saharan Africa,Eritrea,Personal Care,Online,M,5/19/2012,567772853,6/10/2012,5459,81.73,56.67,446164.07,309361.53,136802.54 Europe,Estonia,Baby Food,Offline,L,3/20/2013,363338315,4/4/2013,8736,255.28,159.42,2230126.08,1392693.12,837432.96 Asia,Kazakhstan,Household,Offline,L,1/14/2010,929663360,2/24/2010,6902,668.27,502.54,4612399.54,3468531.08,1143868.46 Asia,Taiwan,Beverages,Online,L,5/30/2011,562109315,6/5/2011,9492,47.45,31.79,450395.40,301750.68,148644.72 Middle East and North Africa,Israel,Cosmetics,Offline,C,8/10/2015,326350009,8/20/2015,3075,437.20,263.33,1344390.00,809739.75,534650.25 Sub-Saharan Africa,Liberia,Meat,Offline,C,5/25/2014,908371770,6/7/2014,6248,421.89,364.69,2635968.72,2278583.12,357385.60 Sub-Saharan Africa,Nigeria,Cosmetics,Offline,H,12/18/2011,364473426,1/1/2012,4641,437.20,263.33,2029045.20,1222114.53,806930.67 Middle East and North Africa,Azerbaijan,Cosmetics,Online,H,7/25/2013,871266305,8/19/2013,5916,437.20,263.33,2586475.20,1557860.28,1028614.92 Australia and Oceania,Kiribati,Office Supplies,Offline,H,2/28/2014,175674235,4/16/2014,4765,651.21,524.96,3103015.65,2501434.40,601581.25 Middle East and North Africa,Yemen,Beverages,Offline,H,5/8/2017,144933545,6/20/2017,7912,47.45,31.79,375424.40,251522.48,123901.92 Central America and the Caribbean,Saint Kitts and Nevis ,Meat,Offline,M,6/7/2016,916593062,6/21/2016,9111,421.89,364.69,3843839.79,3322690.59,521149.20 Europe,Moldova ,Clothes,Offline,M,5/10/2013,448514115,6/8/2013,4149,109.28,35.84,453402.72,148700.16,304702.56 Europe,Kosovo,Personal Care,Online,H,11/27/2014,368870532,1/4/2015,5842,81.73,56.67,477466.66,331066.14,146400.52 Middle East and North Africa,Iraq,Vegetables,Online,M,10/19/2013,126148641,10/28/2013,9041,154.06,90.93,1392856.46,822098.13,570758.33 Sub-Saharan Africa,Sao Tome and Principe,Clothes,Online,H,3/3/2015,139147269,4/21/2015,5624,109.28,35.84,614590.72,201564.16,413026.56 Europe,Estonia,Cereal,Online,H,1/26/2010,446977746,2/19/2010,9503,205.70,117.11,1954767.10,1112896.33,841870.77 Australia and Oceania,New Zealand,Snacks,Offline,L,2/17/2017,259063899,4/1/2017,1620,152.58,97.44,247179.60,157852.80,89326.80 Australia and Oceania,Kiribati,Cereal,Offline,L,8/9/2010,205142056,9/1/2010,4948,205.70,117.11,1017803.60,579460.28,438343.32 Sub-Saharan Africa,South Sudan,Fruits,Offline,C,1/11/2015,985261046,2/5/2015,9493,9.33,6.92,88569.69,65691.56,22878.13 Europe,Armenia,Fruits,Offline,M,7/29/2010,219782197,8/18/2010,7291,9.33,6.92,68025.03,50453.72,17571.31 Asia,Kazakhstan,Vegetables,Online,C,7/22/2012,999379336,8/8/2012,7409,154.06,90.93,1141430.54,673700.37,467730.17 Australia and Oceania,Kiribati,Vegetables,Online,C,8/18/2014,635038793,9/28/2014,946,154.06,90.93,145740.76,86019.78,59720.98 Asia,Thailand,Cosmetics,Online,H,4/22/2015,108059394,4/23/2015,6031,437.20,263.33,2636753.20,1588143.23,1048609.97 Sub-Saharan Africa,Burundi,Personal Care,Online,M,2/27/2014,920052468,3/23/2014,2826,81.73,56.67,230968.98,160149.42,70819.56 Asia,South Korea,Office Supplies,Online,H,8/13/2015,142941844,9/3/2015,8523,651.21,524.96,5550262.83,4474234.08,1076028.75 Central America and the Caribbean,Dominica,Fruits,Offline,M,1/7/2010,768963849,1/27/2010,2346,9.33,6.92,21888.18,16234.32,5653.86 Asia,Bhutan,Household,Online,H,4/15/2015,460667312,5/20/2015,549,668.27,502.54,366880.23,275894.46,90985.77 Australia and Oceania,Marshall Islands,Cosmetics,Online,C,7/14/2012,100913560,8/26/2012,1420,437.20,263.33,620824.00,373928.60,246895.40 Europe,Liechtenstein,Fruits,Online,C,6/14/2010,642876422,6/25/2010,274,9.33,6.92,2556.42,1896.08,660.34 Europe,Belgium,Cereal,Offline,H,3/17/2011,860042226,4/5/2011,4462,205.70,117.11,917833.40,522544.82,395288.58 Australia and Oceania,Australia,Cereal,Online,H,4/7/2014,496209800,5/11/2014,8361,205.70,117.11,1719857.70,979156.71,740700.99 Europe,Portugal,Vegetables,Offline,H,7/28/2012,715490472,9/2/2012,8385,154.06,90.93,1291793.10,762448.05,529345.05 Europe,Slovakia,Baby Food,Offline,L,7/2/2011,952308070,8/17/2011,7975,255.28,159.42,2035858.00,1271374.50,764483.50 Europe,Russia,Baby Food,Offline,C,6/27/2017,261398923,8/12/2017,2605,255.28,159.42,665004.40,415289.10,249715.30 Europe,Andorra,Meat,Online,L,7/13/2011,467811858,7/18/2011,4780,421.89,364.69,2016634.20,1743218.20,273416.00 Central America and the Caribbean,Saint Lucia,Cosmetics,Online,H,7/22/2013,316908204,8/1/2013,9035,437.20,263.33,3950102.00,2379186.55,1570915.45 Sub-Saharan Africa,Republic of the Congo,Beverages,Offline,H,6/25/2010,424361789,7/27/2010,6938,47.45,31.79,329208.10,220559.02,108649.08 Europe,United Kingdom,Office Supplies,Offline,H,12/31/2012,126158940,1/7/2013,2089,651.21,524.96,1360377.69,1096641.44,263736.25 Europe,Serbia,Fruits,Offline,H,12/11/2013,628598487,12/19/2013,5116,9.33,6.92,47732.28,35402.72,12329.56 Sub-Saharan Africa,Uganda,Cereal,Online,C,10/12/2014,958291757,11/5/2014,8681,205.70,117.11,1785681.70,1016631.91,769049.79 Europe,Slovenia,Vegetables,Offline,M,4/4/2014,212162578,5/3/2014,2476,154.06,90.93,381452.56,225142.68,156309.88 Sub-Saharan Africa,Rwanda,Vegetables,Online,M,3/8/2012,707447278,3/20/2012,8225,154.06,90.93,1267143.50,747899.25,519244.25 Australia and Oceania,Kiribati,Personal Care,Online,L,3/23/2013,331694686,3/23/2013,4683,81.73,56.67,382741.59,265385.61,117355.98 Central America and the Caribbean,Saint Lucia,Cereal,Offline,M,7/14/2015,192766129,8/18/2015,2636,205.70,117.11,542225.20,308701.96,233523.24 Middle East and North Africa,Saudi Arabia,Vegetables,Online,L,7/17/2014,568835437,8/29/2014,9901,154.06,90.93,1525348.06,900297.93,625050.13 Sub-Saharan Africa,Senegal,Cereal,Offline,C,4/29/2014,458388936,5/16/2014,6327,205.70,117.11,1301463.90,740954.97,560508.93 Asia,South Korea,Personal Care,Online,H,3/26/2016,730225455,5/4/2016,8794,81.73,56.67,718733.62,498355.98,220377.64 Europe,Albania,Personal Care,Offline,L,2/7/2015,973456323,3/29/2015,6213,81.73,56.67,507788.49,352090.71,155697.78 Europe,Denmark,Cereal,Online,C,8/18/2010,847505366,9/20/2010,4526,205.70,117.11,930998.20,530039.86,400958.34 Australia and Oceania,Nauru,Snacks,Online,C,2/23/2011,532108914,3/27/2011,1707,152.58,97.44,260454.06,166330.08,94123.98 Middle East and North Africa,Somalia,Meat,Online,M,9/8/2014,277315795,10/10/2014,2761,421.89,364.69,1164838.29,1006909.09,157929.20 Middle East and North Africa,Kuwait,Household,Online,L,10/12/2012,853487336,11/9/2012,4724,668.27,502.54,3156907.48,2373998.96,782908.52 Middle East and North Africa,Libya,Baby Food,Offline,H,12/15/2016,401297366,12/20/2016,1663,255.28,159.42,424530.64,265115.46,159415.18 North America,United States of America,Snacks,Offline,H,1/29/2017,281732213,2/11/2017,9677,152.58,97.44,1476516.66,942926.88,533589.78 Sub-Saharan Africa,Togo,Household,Online,L,6/14/2015,126090705,7/21/2015,1896,668.27,502.54,1267039.92,952815.84,314224.08 Sub-Saharan Africa,Mauritius ,Personal Care,Online,L,6/7/2015,985984170,7/3/2015,3481,81.73,56.67,284502.13,197268.27,87233.86 Middle East and North Africa,Tunisia ,Cosmetics,Online,H,2/2/2010,383336436,2/21/2010,6625,437.20,263.33,2896450.00,1744561.25,1151888.75 Asia,Kazakhstan,Fruits,Online,C,4/8/2016,860383832,4/26/2016,5550,9.33,6.92,51781.50,38406.00,13375.50 Europe,Monaco,Cosmetics,Online,C,3/30/2010,529675185,4/10/2010,1513,437.20,263.33,661483.60,398418.29,263065.31 North America,Mexico,Household,Offline,L,10/9/2014,724071824,10/11/2014,7798,668.27,502.54,5211169.46,3918806.92,1292362.54 Sub-Saharan Africa,South Sudan,Snacks,Online,M,1/15/2012,146747577,2/16/2012,4724,152.58,97.44,720787.92,460306.56,260481.36 Sub-Saharan Africa,Senegal,Office Supplies,Offline,C,8/1/2015,721188771,8/6/2015,4639,651.21,524.96,3020963.19,2435289.44,585673.75 Middle East and North Africa,Turkey,Fruits,Offline,M,6/30/2013,841194236,7/14/2013,6922,9.33,6.92,64582.26,47900.24,16682.02 Sub-Saharan Africa,Kenya,Beverages,Online,M,2/2/2010,320875298,2/17/2010,2986,47.45,31.79,141685.70,94924.94,46760.76 Europe,Spain,Cosmetics,Online,L,7/10/2014,844655787,7/12/2014,1272,437.20,263.33,556118.40,334955.76,221162.64 Europe,Iceland,Office Supplies,Online,M,4/20/2014,117272031,5/23/2014,2255,651.21,524.96,1468478.55,1183784.80,284693.75 Sub-Saharan Africa,Guinea-Bissau,Cosmetics,Offline,L,12/5/2016,413772857,12/7/2016,3438,437.20,263.33,1503093.60,905328.54,597765.06 Australia and Oceania,Kiribati,Clothes,Offline,H,10/28/2015,929519593,11/18/2015,4358,109.28,35.84,476242.24,156190.72,320051.52 Europe,Switzerland,Meat,Offline,C,10/31/2016,930186069,12/7/2016,1583,421.89,364.69,667851.87,577304.27,90547.60 Asia,Cambodia,Personal Care,Online,M,9/22/2011,201758611,9/29/2011,3711,81.73,56.67,303300.03,210302.37,92997.66 Europe,Italy,Cosmetics,Offline,H,4/3/2012,400536048,5/8/2012,6372,437.20,263.33,2785838.40,1677938.76,1107899.64 Europe,Macedonia,Fruits,Offline,C,2/11/2016,103129708,3/12/2016,7227,9.33,6.92,67427.91,50010.84,17417.07 Europe,Cyprus,Baby Food,Online,M,9/7/2010,656463420,10/20/2010,969,255.28,159.42,247366.32,154477.98,92888.34 Middle East and North Africa,Jordan,Baby Food,Online,C,9/16/2014,327773511,10/25/2014,4321,255.28,159.42,1103064.88,688853.82,414211.06 Europe,Spain,Office Supplies,Online,C,12/1/2013,154608809,12/19/2013,1037,651.21,524.96,675304.77,544383.52,130921.25 Central America and the Caribbean,Nicaragua,Clothes,Offline,L,4/3/2010,794830644,5/21/2010,6905,109.28,35.84,754578.40,247475.20,507103.20 Europe,Finland,Snacks,Online,H,7/6/2010,276612842,8/5/2010,4742,152.58,97.44,723534.36,462060.48,261473.88 Europe,Belarus,Cereal,Offline,C,12/21/2014,748441731,1/23/2015,9395,205.70,117.11,1932551.50,1100248.45,832303.05 Europe,Vatican City,Cosmetics,Online,L,8/17/2013,829116141,8/27/2013,2746,437.20,263.33,1200551.20,723104.18,477447.02 Australia and Oceania,Solomon Islands,Vegetables,Online,M,9/5/2012,557747399,10/7/2012,8705,154.06,90.93,1341092.30,791545.65,549546.65 Australia and Oceania,Samoa ,Fruits,Offline,C,8/10/2015,943759334,8/14/2015,8214,9.33,6.92,76636.62,56840.88,19795.74 Sub-Saharan Africa,Equatorial Guinea,Snacks,Online,L,10/22/2011,816888272,12/9/2011,4248,152.58,97.44,648159.84,413925.12,234234.72 Sub-Saharan Africa,South Africa,Personal Care,Offline,L,9/5/2010,877183043,9/25/2010,6810,81.73,56.67,556581.30,385922.70,170658.60 Sub-Saharan Africa,South Africa,Office Supplies,Online,M,2/8/2015,545004975,3/23/2015,7938,651.21,524.96,5169304.98,4167132.48,1002172.50 Central America and the Caribbean,Nicaragua,Office Supplies,Online,C,2/11/2010,211027896,3/8/2010,6699,651.21,524.96,4362455.79,3516707.04,845748.75 Australia and Oceania,Fiji,Personal Care,Online,C,1/28/2012,786238133,3/10/2012,4190,81.73,56.67,342448.70,237447.30,105001.40 Australia and Oceania,Kiribati,Beverages,Online,C,12/6/2011,551934516,12/9/2011,8543,47.45,31.79,405365.35,271581.97,133783.38 Sub-Saharan Africa,Comoros,Baby Food,Online,M,10/28/2016,109728372,12/2/2016,9918,255.28,159.42,2531867.04,1581127.56,950739.48 Sub-Saharan Africa,Comoros,Clothes,Online,H,1/15/2016,131543529,3/5/2016,5508,109.28,35.84,601914.24,197406.72,404507.52 Europe,Albania,Personal Care,Online,L,1/25/2015,909616315,2/17/2015,4536,81.73,56.67,370727.28,257055.12,113672.16 Asia,Turkmenistan,Office Supplies,Offline,L,9/3/2016,106495559,9/23/2016,3257,651.21,524.96,2120990.97,1709794.72,411196.25 Sub-Saharan Africa,Zambia,Office Supplies,Online,M,2/15/2017,405042588,3/6/2017,9958,651.21,524.96,6484749.18,5227551.68,1257197.50 Central America and the Caribbean,Jamaica,Fruits,Online,L,7/13/2017,958431231,8/18/2017,9955,9.33,6.92,92880.15,68888.60,23991.55 Middle East and North Africa,Iran,Baby Food,Online,H,7/1/2012,540147817,8/19/2012,597,255.28,159.42,152402.16,95173.74,57228.42 Sub-Saharan Africa,Seychelles ,Fruits,Offline,M,8/18/2016,693991172,9/14/2016,6265,9.33,6.92,58452.45,43353.80,15098.65 Sub-Saharan Africa,Sierra Leone,Snacks,Online,C,4/20/2015,784072625,4/21/2015,3368,152.58,97.44,513889.44,328177.92,185711.52 Sub-Saharan Africa,Guinea-Bissau,Cosmetics,Offline,L,11/17/2013,244816005,12/28/2013,5351,437.20,263.33,2339457.20,1409078.83,930378.37 Asia,Kazakhstan,Cereal,Online,M,3/27/2011,830957639,4/23/2011,7686,205.70,117.11,1581010.20,900107.46,680902.74 North America,Canada,Household,Online,M,1/31/2011,767546355,3/4/2011,2878,668.27,502.54,1923281.06,1446310.12,476970.94 Australia and Oceania,Vanuatu,Personal Care,Online,M,8/20/2010,599943482,9/29/2010,5463,81.73,56.67,446490.99,309588.21,136902.78 Central America and the Caribbean,Belize,Snacks,Online,L,12/11/2011,943822848,1/2/2012,7010,152.58,97.44,1069585.80,683054.40,386531.40 Europe,Armenia,Baby Food,Online,H,7/25/2010,235170781,8/9/2010,1115,255.28,159.42,284637.20,177753.30,106883.90 Central America and the Caribbean,Antigua and Barbuda ,Snacks,Online,C,6/22/2014,580286109,8/4/2014,8410,152.58,97.44,1283197.80,819470.40,463727.40 Sub-Saharan Africa,Central African Republic,Clothes,Online,H,7/26/2017,105780160,9/7/2017,1555,109.28,35.84,169930.40,55731.20,114199.20 Europe,Luxembourg,Office Supplies,Online,M,1/6/2011,608576762,2/15/2011,243,651.21,524.96,158244.03,127565.28,30678.75 Europe,Belgium,Baby Food,Online,C,5/8/2017,805912244,5/30/2017,6197,255.28,159.42,1581970.16,987925.74,594044.42 Europe,Czech Republic,Cereal,Offline,C,12/11/2010,385335433,12/29/2010,8172,205.70,117.11,1680980.40,957022.92,723957.48 Europe,Ireland,Household,Online,H,9/1/2012,454707658,9/18/2012,6955,668.27,502.54,4647817.85,3495165.70,1152652.15 Sub-Saharan Africa,Democratic Republic of the Congo,Cereal,Online,M,5/20/2010,392202746,7/8/2010,363,205.70,117.11,74669.10,42510.93,32158.17 Europe,Spain,Vegetables,Online,M,9/26/2015,996307027,9/30/2015,8244,154.06,90.93,1270070.64,749626.92,520443.72 Middle East and North Africa,United Arab Emirates,Meat,Online,H,12/5/2014,435819327,12/19/2014,7479,421.89,364.69,3155315.31,2727516.51,427798.80 Europe,Norway,Office Supplies,Offline,L,5/17/2010,999850976,6/8/2010,6978,651.21,524.96,4544143.38,3663170.88,880972.50 Sub-Saharan Africa,Swaziland,Cereal,Online,L,11/30/2016,547825801,12/9/2016,2683,205.70,117.11,551893.10,314206.13,237686.97 Europe,Austria,Cosmetics,Online,L,8/2/2012,159480130,8/22/2012,2569,437.20,263.33,1123166.80,676494.77,446672.03 Sub-Saharan Africa,Ghana,Office Supplies,Online,C,7/29/2010,984862792,9/7/2010,1641,651.21,524.96,1068635.61,861459.36,207176.25 Europe,Croatia,Vegetables,Online,M,7/20/2017,194335114,8/3/2017,6934,154.06,90.93,1068252.04,630508.62,437743.42 Europe,Cyprus,Household,Offline,L,10/1/2014,428570926,10/28/2014,2516,668.27,502.54,1681367.32,1264390.64,416976.68 Asia,Malaysia,Clothes,Offline,L,10/6/2014,348556554,11/3/2014,4485,109.28,35.84,490120.80,160742.40,329378.40 Middle East and North Africa,Somalia,Baby Food,Online,H,4/24/2012,485590827,4/27/2012,5971,255.28,159.42,1524276.88,951896.82,572380.06 Europe,Iceland,Household,Online,M,10/6/2010,991285073,10/7/2010,2137,668.27,502.54,1428092.99,1073927.98,354165.01 Europe,Monaco,Cereal,Offline,C,10/2/2010,287563121,10/14/2010,5173,205.70,117.11,1064086.10,605810.03,458276.07 Middle East and North Africa,United Arab Emirates,Fruits,Online,L,12/25/2013,916661298,1/29/2014,9303,9.33,6.92,86796.99,64376.76,22420.23 Asia,Nepal,Office Supplies,Online,C,11/13/2011,991128432,11/24/2011,5783,651.21,524.96,3765947.43,3035843.68,730103.75 Asia,Kazakhstan,Meat,Online,C,1/10/2012,943825852,2/22/2012,7898,421.89,364.69,3332087.22,2880321.62,451765.60 Central America and the Caribbean,Nicaragua,Office Supplies,Online,C,10/14/2011,377927386,11/3/2011,5967,651.21,524.96,3885770.07,3132436.32,753333.75 Middle East and North Africa,United Arab Emirates,Baby Food,Online,L,2/9/2017,316919362,3/31/2017,2337,255.28,159.42,596589.36,372564.54,224024.82 Sub-Saharan Africa,Djibouti,Baby Food,Offline,H,2/5/2016,954600608,2/27/2016,6388,255.28,159.42,1630728.64,1018374.96,612353.68 Sub-Saharan Africa,Democratic Republic of the Congo,Cereal,Offline,L,1/19/2013,305082452,3/5/2013,9532,205.70,117.11,1960732.40,1116292.52,844439.88 Europe,Croatia,Baby Food,Online,M,2/20/2017,952788722,3/2/2017,211,255.28,159.42,53864.08,33637.62,20226.46 Europe,San Marino,Cereal,Offline,M,11/10/2015,602455747,12/8/2015,8898,205.70,117.11,1830318.60,1042044.78,788273.82 Central America and the Caribbean,The Bahamas,Beverages,Offline,H,9/19/2016,629132354,11/2/2016,3099,47.45,31.79,147047.55,98517.21,48530.34 Sub-Saharan Africa,Mauritius ,Clothes,Offline,C,2/18/2013,228179872,3/5/2013,2350,109.28,35.84,256808.00,84224.00,172584.00 Sub-Saharan Africa,Tanzania,Baby Food,Online,M,12/16/2010,465272128,1/26/2011,3217,255.28,159.42,821235.76,512854.14,308381.62 Europe,Bulgaria,Clothes,Offline,M,2/4/2017,226395452,3/6/2017,4300,109.28,35.84,469904.00,154112.00,315792.00 Australia and Oceania,Tuvalu,Vegetables,Online,L,1/8/2013,267848670,2/11/2013,1228,154.06,90.93,189185.68,111662.04,77523.64 Sub-Saharan Africa,Eritrea,Personal Care,Offline,C,7/25/2011,966243112,8/6/2011,1664,81.73,56.67,135998.72,94298.88,41699.84 Sub-Saharan Africa,Guinea-Bissau,Household,Online,C,4/2/2015,968502604,4/19/2015,298,668.27,502.54,199144.46,149756.92,49387.54 Middle East and North Africa,Egypt,Vegetables,Online,H,7/15/2012,341863477,7/27/2012,3855,154.06,90.93,593901.30,350535.15,243366.15 Europe,Malta,Meat,Offline,L,11/16/2011,123874557,1/5/2012,6089,421.89,364.69,2568888.21,2220597.41,348290.80 Sub-Saharan Africa,Tanzania,Beverages,Online,H,3/14/2015,972397172,4/28/2015,2787,47.45,31.79,132243.15,88598.73,43644.42 Europe,Germany,Cosmetics,Online,M,2/28/2014,915605151,4/19/2014,6766,437.20,263.33,2958095.20,1781690.78,1176404.42 Europe,Romania,Beverages,Online,C,8/14/2016,301984822,9/17/2016,2875,47.45,31.79,136418.75,91396.25,45022.50 Middle East and North Africa,Yemen,Household,Online,L,7/23/2012,450335013,7/23/2012,2993,668.27,502.54,2000132.11,1504102.22,496029.89 Sub-Saharan Africa,Cameroon,Snacks,Offline,H,10/5/2015,499767053,10/23/2015,1032,152.58,97.44,157462.56,100558.08,56904.48 Asia,Kyrgyzstan,Snacks,Offline,M,7/21/2014,559704768,9/5/2014,7934,152.58,97.44,1210569.72,773088.96,437480.76 Central America and the Caribbean,Grenada,Clothes,Online,C,6/26/2013,359884488,6/26/2013,6672,109.28,35.84,729116.16,239124.48,489991.68 Australia and Oceania,East Timor,Cereal,Online,C,5/16/2014,600355041,6/28/2014,7253,205.70,117.11,1491942.10,849398.83,642543.27 Europe,United Kingdom,Household,Online,L,7/15/2012,701477754,8/27/2012,1711,668.27,502.54,1143409.97,859845.94,283564.03 Europe,Armenia,Clothes,Online,H,9/19/2015,153926455,9/30/2015,9114,109.28,35.84,995977.92,326645.76,669332.16 Australia and Oceania,Tonga,Cosmetics,Offline,C,7/26/2017,768687474,8/16/2017,560,437.20,263.33,244832.00,147464.80,97367.20 Sub-Saharan Africa,Mali,Snacks,Online,H,8/7/2016,827059638,9/11/2016,4181,152.58,97.44,637936.98,407396.64,230540.34 Sub-Saharan Africa,Malawi,Personal Care,Online,L,5/23/2012,930654275,6/17/2012,136,81.73,56.67,11115.28,7707.12,3408.16 Europe,Moldova ,Cosmetics,Offline,L,12/9/2016,851395213,12/15/2016,5618,437.20,263.33,2456189.60,1479387.94,976801.66 Asia,China,Cosmetics,Offline,H,1/6/2013,881518781,1/10/2013,9851,437.20,263.33,4306857.20,2594063.83,1712793.37 Europe,Croatia,Vegetables,Online,H,12/18/2010,483573806,1/21/2011,9090,154.06,90.93,1400405.40,826553.70,573851.70 Australia and Oceania,Marshall Islands,Snacks,Online,M,8/13/2014,540421617,9/5/2014,1621,152.58,97.44,247332.18,157950.24,89381.94 Sub-Saharan Africa,Uganda,Office Supplies,Offline,C,7/7/2017,205236041,8/14/2017,2760,651.21,524.96,1797339.60,1448889.60,348450.00 Asia,Taiwan,Cosmetics,Offline,M,4/7/2014,951503407,4/13/2014,9858,437.20,263.33,4309917.60,2595907.14,1714010.46 Sub-Saharan Africa,Sierra Leone,Personal Care,Online,C,11/23/2011,723022544,1/11/2012,7293,81.73,56.67,596056.89,413294.31,182762.58 Europe,Finland,Household,Offline,C,12/4/2010,683904778,1/18/2011,1477,668.27,502.54,987034.79,742251.58,244783.21 Asia,Tajikistan,Personal Care,Offline,C,9/24/2016,268573939,10/7/2016,5852,81.73,56.67,478283.96,331632.84,146651.12 Sub-Saharan Africa,Botswana,Vegetables,Offline,C,1/11/2013,331766355,2/17/2013,5892,154.06,90.93,907721.52,535759.56,371961.96 Sub-Saharan Africa,Senegal,Beverages,Online,L,2/10/2011,898530852,3/19/2011,4101,47.45,31.79,194592.45,130370.79,64221.66 Europe,Luxembourg,Cosmetics,Online,C,10/4/2015,714228761,11/21/2015,5017,437.20,263.33,2193432.40,1321126.61,872305.79 Europe,Serbia,Beverages,Offline,L,11/17/2013,394533908,12/28/2013,206,47.45,31.79,9774.70,6548.74,3225.96 Asia,Singapore,Snacks,Offline,L,3/5/2016,175432622,3/7/2016,3266,152.58,97.44,498326.28,318239.04,180087.24 Sub-Saharan Africa,Cameroon,Personal Care,Offline,H,6/24/2015,363223731,6/29/2015,4829,81.73,56.67,394674.17,273659.43,121014.74 Central America and the Caribbean,Antigua and Barbuda ,Household,Online,C,4/2/2013,884518563,5/12/2013,7554,668.27,502.54,5048111.58,3796187.16,1251924.42 Europe,Latvia,Household,Offline,L,10/27/2015,836240947,11/24/2015,1134,668.27,502.54,757818.18,569880.36,187937.82 Sub-Saharan Africa,Mauritania,Beverages,Online,L,6/2/2015,735627210,6/12/2015,7293,47.45,31.79,346052.85,231844.47,114208.38 Sub-Saharan Africa,Kenya,Clothes,Offline,M,9/16/2016,270226180,9/29/2016,4787,109.28,35.84,523123.36,171566.08,351557.28 Middle East and North Africa,Iraq,Office Supplies,Offline,M,4/11/2010,547899186,5/9/2010,4400,651.21,524.96,2865324.00,2309824.00,555500.00 Middle East and North Africa,Yemen,Cereal,Online,H,4/9/2014,946820056,5/12/2014,3950,205.70,117.11,812515.00,462584.50,349930.50 Middle East and North Africa,Lebanon,Snacks,Offline,H,1/17/2010,465475118,2/5/2010,3286,152.58,97.44,501377.88,320187.84,181190.04 North America,Canada,Household,Offline,L,2/5/2014,872663199,2/23/2014,9288,668.27,502.54,6206891.76,4667591.52,1539300.24 Sub-Saharan Africa,Cameroon,Meat,Offline,C,9/10/2013,857495629,10/2/2013,867,421.89,364.69,365778.63,316186.23,49592.40 Europe,Spain,Vegetables,Offline,C,2/5/2016,979396235,2/18/2016,3965,154.06,90.93,610847.90,360537.45,250310.45 Sub-Saharan Africa,Burundi,Household,Offline,L,7/1/2014,518101346,8/8/2014,6556,668.27,502.54,4381178.12,3294652.24,1086525.88 Europe,France,Meat,Online,C,7/4/2014,623659789,7/31/2014,3646,421.89,364.69,1538210.94,1329659.74,208551.20 Europe,Slovenia,Fruits,Offline,H,3/21/2015,266432893,4/19/2015,2269,9.33,6.92,21169.77,15701.48,5468.29 Europe,Sweden,Personal Care,Online,M,1/6/2013,287094485,2/3/2013,6493,81.73,56.67,530672.89,367958.31,162714.58 Sub-Saharan Africa,Angola,Snacks,Offline,L,12/1/2012,246630895,12/23/2012,2417,152.58,97.44,368785.86,235512.48,133273.38 Central America and the Caribbean,Saint Kitts and Nevis ,Meat,Offline,H,3/22/2017,676340949,5/9/2017,3171,421.89,364.69,1337813.19,1156431.99,181381.20 Australia and Oceania,Vanuatu,Snacks,Online,M,2/21/2014,827835977,2/26/2014,3917,152.58,97.44,597655.86,381672.48,215983.38 Sub-Saharan Africa,Burundi,Cosmetics,Online,C,11/21/2011,923039805,12/24/2011,6845,437.20,263.33,2992634.00,1802493.85,1190140.15 North America,Mexico,Office Supplies,Offline,C,3/2/2012,804188764,4/2/2012,6181,651.21,524.96,4025129.01,3244777.76,780351.25 Sub-Saharan Africa,Mali,Beverages,Offline,M,12/18/2013,383831679,1/26/2014,3178,47.45,31.79,150796.10,101028.62,49767.48 Central America and the Caribbean,Guatemala,Meat,Offline,M,4/29/2017,994829881,5/9/2017,1124,421.89,364.69,474204.36,409911.56,64292.80 Europe,Netherlands,Cosmetics,Offline,L,1/2/2012,440357196,2/8/2012,335,437.20,263.33,146462.00,88215.55,58246.45 Sub-Saharan Africa,Djibouti,Clothes,Offline,L,7/16/2011,643899953,8/6/2011,3160,109.28,35.84,345324.80,113254.40,232070.40 Middle East and North Africa,Yemen,Beverages,Offline,L,8/7/2011,899256980,8/14/2011,8979,47.45,31.79,426053.55,285442.41,140611.14 Sub-Saharan Africa,Cote d'Ivoire,Meat,Online,M,6/27/2016,120539605,6/28/2016,9203,421.89,364.69,3882653.67,3356242.07,526411.60 Middle East and North Africa,Kuwait,Baby Food,Online,H,8/27/2012,892171657,10/14/2012,2274,255.28,159.42,580506.72,362521.08,217985.64 Central America and the Caribbean,Saint Kitts and Nevis ,Beverages,Online,C,4/26/2010,918889462,4/28/2010,8667,47.45,31.79,411249.15,275523.93,135725.22 Europe,Luxembourg,Clothes,Online,C,12/24/2016,675741851,1/5/2017,5885,109.28,35.84,643112.80,210918.40,432194.40 Sub-Saharan Africa,Ghana,Beverages,Online,H,12/3/2010,258090150,1/9/2011,3466,47.45,31.79,164461.70,110184.14,54277.56 Europe,Finland,Household,Online,C,2/16/2013,731608188,3/10/2013,7976,668.27,502.54,5330121.52,4008259.04,1321862.48 Sub-Saharan Africa,Angola,Cosmetics,Offline,M,5/16/2015,982282292,6/16/2015,8014,437.20,263.33,3503720.80,2110326.62,1393394.18 Central America and the Caribbean,Trinidad and Tobago,Household,Online,M,4/6/2014,866411292,4/16/2014,9210,668.27,502.54,6154766.70,4628393.40,1526373.30 Asia,Turkmenistan,Cereal,Online,H,1/22/2015,760606515,2/14/2015,9225,205.70,117.11,1897582.50,1080339.75,817242.75 Europe,Austria,Meat,Online,C,9/19/2012,211791789,10/9/2012,2752,421.89,364.69,1161041.28,1003626.88,157414.40 Middle East and North Africa,Oman,Snacks,Offline,L,11/4/2010,187203443,11/19/2010,6514,152.58,97.44,993906.12,634724.16,359181.96 Europe,Lithuania,Snacks,Offline,C,4/21/2010,824390304,4/30/2010,4265,152.58,97.44,650753.70,415581.60,235172.10 Middle East and North Africa,Pakistan,Cosmetics,Online,H,1/16/2013,981213700,2/4/2013,1794,437.20,263.33,784336.80,472414.02,311922.78 Europe,Montenegro,Clothes,Online,C,9/18/2010,485847461,11/6/2010,1915,109.28,35.84,209271.20,68633.60,140637.60 Sub-Saharan Africa,Chad,Baby Food,Online,M,3/2/2011,586777913,3/14/2011,9479,255.28,159.42,2419799.12,1511142.18,908656.94 Asia,Laos,Office Supplies,Online,L,12/19/2011,802803885,1/6/2012,6365,651.21,524.96,4144951.65,3341370.40,803581.25 Europe,Poland,Meat,Offline,C,9/29/2011,273036706,11/1/2011,6484,421.89,364.69,2735534.76,2364649.96,370884.80 Middle East and North Africa,Libya,Personal Care,Online,H,12/22/2013,906900203,1/5/2014,778,81.73,56.67,63585.94,44089.26,19496.68 North America,Canada,Beverages,Offline,L,8/20/2015,634130704,9/20/2015,2222,47.45,31.79,105433.90,70637.38,34796.52 Asia,Japan,Clothes,Offline,L,12/20/2010,154777038,2/2/2011,820,109.28,35.84,89609.60,29388.80,60220.80 Middle East and North Africa,Qatar,Cosmetics,Offline,H,6/11/2010,689200532,7/2/2010,8608,437.20,263.33,3763417.60,2266744.64,1496672.96 Australia and Oceania,Tuvalu,Fruits,Offline,L,3/22/2014,828075015,4/17/2014,4653,9.33,6.92,43412.49,32198.76,11213.73 Asia,Singapore,Snacks,Offline,M,12/17/2015,582386815,1/15/2016,55,152.58,97.44,8391.90,5359.20,3032.70 Sub-Saharan Africa,Equatorial Guinea,Baby Food,Offline,L,3/5/2014,933434760,4/18/2014,2943,255.28,159.42,751289.04,469173.06,282115.98 Australia and Oceania,Nauru,Office Supplies,Offline,H,1/3/2016,682830178,2/15/2016,3479,651.21,524.96,2265559.59,1826335.84,439223.75 Middle East and North Africa,Libya,Beverages,Offline,H,9/28/2010,502496898,11/8/2010,8853,47.45,31.79,420074.85,281436.87,138637.98 Sub-Saharan Africa,Namibia,Baby Food,Online,C,6/10/2011,684671247,6/23/2011,8292,255.28,159.42,2116781.76,1321910.64,794871.12 Central America and the Caribbean,Belize,Office Supplies,Offline,H,4/19/2013,691902053,5/15/2013,8048,651.21,524.96,5240938.08,4224878.08,1016060.00 Asia,Indonesia,Meat,Online,L,7/31/2012,507050645,8/5/2012,6408,421.89,364.69,2703471.12,2336933.52,366537.60 Middle East and North Africa,Tunisia ,Clothes,Offline,H,5/26/2010,183290851,6/12/2010,8691,109.28,35.84,949752.48,311485.44,638267.04 Asia,Taiwan,Personal Care,Online,H,7/2/2016,294108998,8/14/2016,2243,81.73,56.67,183320.39,127110.81,56209.58 Australia and Oceania,Fiji,Cereal,Offline,C,3/16/2015,583303916,5/4/2015,1446,205.70,117.11,297442.20,169341.06,128101.14 Sub-Saharan Africa,South Sudan,Personal Care,Online,H,8/7/2014,414986932,8/23/2014,2710,81.73,56.67,221488.30,153575.70,67912.60 North America,Canada,Cosmetics,Offline,M,6/25/2012,123581874,7/8/2012,9478,437.20,263.33,4143781.60,2495841.74,1647939.86 Europe,Hungary,Clothes,Online,C,4/19/2015,563825070,5/14/2015,7223,109.28,35.84,789329.44,258872.32,530457.12 Middle East and North Africa,Saudi Arabia,Office Supplies,Offline,C,8/12/2011,860765349,9/1/2011,8450,651.21,524.96,5502724.50,4435912.00,1066812.50 Sub-Saharan Africa,Swaziland,Beverages,Offline,C,10/11/2013,659764039,11/13/2013,7695,47.45,31.79,365127.75,244624.05,120503.70 Europe,Portugal,Fruits,Offline,H,4/14/2016,576494967,5/21/2016,6527,9.33,6.92,60896.91,45166.84,15730.07 Australia and Oceania,Tuvalu,Snacks,Offline,L,9/8/2014,846944463,9/24/2014,8542,152.58,97.44,1303338.36,832332.48,471005.88 Sub-Saharan Africa,Swaziland,Meat,Offline,M,12/14/2016,877411353,1/30/2017,4372,421.89,364.69,1844503.08,1594424.68,250078.40 Europe,Russia,Clothes,Online,L,12/25/2016,594506967,1/8/2017,6678,109.28,35.84,729771.84,239339.52,490432.32 Europe,Montenegro,Cosmetics,Online,H,7/10/2013,895155131,8/24/2013,5151,437.20,263.33,2252017.20,1356412.83,895604.37 Europe,Italy,Baby Food,Online,C,12/16/2013,496592175,1/12/2014,1515,255.28,159.42,386749.20,241521.30,145227.90 Europe,Belarus,Household,Offline,H,5/18/2015,886366927,6/25/2015,4526,668.27,502.54,3024590.02,2274496.04,750093.98 Asia,Japan,Vegetables,Online,C,12/7/2015,472340714,12/24/2015,4969,154.06,90.93,765524.14,451831.17,313692.97 Sub-Saharan Africa,South Sudan,Fruits,Online,M,1/22/2011,432687366,3/9/2011,662,9.33,6.92,6176.46,4581.04,1595.42 Australia and Oceania,Papua New Guinea,Office Supplies,Offline,C,5/27/2012,665893208,6/8/2012,1453,651.21,524.96,946208.13,762766.88,183441.25 Sub-Saharan Africa,Seychelles ,Baby Food,Offline,M,9/27/2013,240757071,11/16/2013,4222,255.28,159.42,1077792.16,673071.24,404720.92 Australia and Oceania,Tuvalu,Clothes,Offline,M,6/26/2017,546390283,6/26/2017,7881,109.28,35.84,861235.68,282455.04,578780.64 Middle East and North Africa,Iran,Household,Offline,H,10/3/2015,342216670,11/19/2015,8372,668.27,502.54,5594756.44,4207264.88,1387491.56 Asia,Vietnam,Office Supplies,Online,C,11/19/2016,707972562,12/21/2016,3669,651.21,524.96,2389289.49,1926078.24,463211.25 Australia and Oceania,Vanuatu,Snacks,Online,H,5/4/2011,993706786,6/15/2011,8775,152.58,97.44,1338889.50,855036.00,483853.50 Sub-Saharan Africa,Equatorial Guinea,Vegetables,Online,M,5/11/2013,169780671,6/1/2013,728,154.06,90.93,112155.68,66197.04,45958.64 Sub-Saharan Africa,Ethiopia,Household,Offline,L,10/4/2011,876868045,10/9/2011,3595,668.27,502.54,2402430.65,1806631.30,595799.35 Europe,Croatia,Cosmetics,Offline,L,7/20/2011,875955235,9/2/2011,3475,437.20,263.33,1519270.00,915071.75,604198.25 Asia,Singapore,Fruits,Online,M,1/11/2015,698341071,2/1/2015,3496,9.33,6.92,32617.68,24192.32,8425.36 Sub-Saharan Africa,Burkina Faso,Fruits,Online,L,6/2/2010,495636880,7/10/2010,8822,9.33,6.92,82309.26,61048.24,21261.02 Australia and Oceania,Tuvalu,Office Supplies,Offline,M,7/1/2013,489766490,8/1/2013,1643,651.21,524.96,1069938.03,862509.28,207428.75 Sub-Saharan Africa,Sudan,Snacks,Offline,M,10/29/2010,522966229,11/1/2010,6184,152.58,97.44,943554.72,602568.96,340985.76 Central America and the Caribbean,Dominican Republic,Household,Offline,C,7/14/2016,507784926,8/28/2016,3699,668.27,502.54,2471930.73,1858895.46,613035.27 Middle East and North Africa,Qatar,Clothes,Online,H,7/12/2015,877083909,7/18/2015,7474,109.28,35.84,816758.72,267868.16,548890.56 Europe,Cyprus,Cosmetics,Offline,L,9/11/2012,334037005,10/12/2012,7828,437.20,263.33,3422401.60,2061347.24,1361054.36 Middle East and North Africa,Yemen,Household,Online,C,1/5/2014,802130544,1/26/2014,7108,668.27,502.54,4750063.16,3572054.32,1178008.84 Sub-Saharan Africa,Seychelles ,Cereal,Online,H,2/22/2015,675163352,3/16/2015,4694,205.70,117.11,965555.80,549714.34,415841.46 Sub-Saharan Africa,Liberia,Baby Food,Offline,H,10/28/2012,667246758,12/4/2012,1998,255.28,159.42,510049.44,318521.16,191528.28 Asia,Uzbekistan,Cosmetics,Online,M,3/20/2016,662804591,4/1/2016,7462,437.20,263.33,3262386.40,1964968.46,1297417.94 Sub-Saharan Africa,Seychelles ,Beverages,Offline,M,10/27/2012,166573178,10/31/2012,1560,47.45,31.79,74022.00,49592.40,24429.60 Europe,Czech Republic,Snacks,Offline,C,2/22/2010,553601348,3/3/2010,1796,152.58,97.44,274033.68,175002.24,99031.44 Sub-Saharan Africa,Guinea-Bissau,Fruits,Offline,L,10/2/2016,119250428,11/8/2016,7707,9.33,6.92,71906.31,53332.44,18573.87 Sub-Saharan Africa,Sao Tome and Principe,Personal Care,Online,C,10/10/2015,829194247,11/12/2015,5859,81.73,56.67,478856.07,332029.53,146826.54 Asia,Maldives,Clothes,Offline,C,2/13/2014,669419133,2/22/2014,4852,109.28,35.84,530226.56,173895.68,356330.88 Europe,Italy,Cosmetics,Online,M,12/23/2015,396223914,1/7/2016,316,437.20,263.33,138155.20,83212.28,54942.92 Central America and the Caribbean,Cuba,Clothes,Online,L,6/16/2011,386219918,6/28/2011,9911,109.28,35.84,1083074.08,355210.24,727863.84 Sub-Saharan Africa,Seychelles ,Personal Care,Online,H,8/30/2010,186330974,8/31/2010,8331,81.73,56.67,680892.63,472117.77,208774.86 Europe,Czech Republic,Meat,Offline,M,3/11/2017,763793408,4/26/2017,2298,421.89,364.69,969503.22,838057.62,131445.60 Europe,Norway,Vegetables,Online,M,10/11/2016,456156051,11/28/2016,5567,154.06,90.93,857652.02,506207.31,351444.71 Central America and the Caribbean,Haiti,Clothes,Offline,H,5/13/2011,821280229,6/5/2011,3925,109.28,35.84,428924.00,140672.00,288252.00 Central America and the Caribbean,Cuba,Meat,Online,C,4/24/2015,787339770,5/18/2015,189,421.89,364.69,79737.21,68926.41,10810.80 Asia,Bangladesh,Fruits,Online,C,10/4/2013,702821004,10/24/2013,9208,9.33,6.92,85910.64,63719.36,22191.28 Australia and Oceania,East Timor,Vegetables,Online,H,11/5/2011,986522758,11/19/2011,2862,154.06,90.93,440919.72,260241.66,180678.06 Europe,Austria,Vegetables,Online,H,10/9/2015,777556359,11/3/2015,5061,154.06,90.93,779697.66,460196.73,319500.93 Europe,Luxembourg,Personal Care,Online,H,11/13/2013,185345637,11/23/2013,6748,81.73,56.67,551514.04,382409.16,169104.88 Europe,United Kingdom,Fruits,Offline,L,9/7/2010,739626920,10/18/2010,897,9.33,6.92,8369.01,6207.24,2161.77 Middle East and North Africa,Oman,Household,Online,M,8/11/2015,440449035,9/2/2015,7512,668.27,502.54,5020044.24,3775080.48,1244963.76 Asia,Bangladesh,Snacks,Offline,C,5/23/2016,508173310,6/20/2016,8630,152.58,97.44,1316765.40,840907.20,475858.20 Sub-Saharan Africa,Guinea,Beverages,Offline,M,3/13/2013,433473575,3/31/2013,3318,47.45,31.79,157439.10,105479.22,51959.88 Europe,Austria,Clothes,Offline,M,10/29/2014,227336156,11/13/2014,2675,109.28,35.84,292324.00,95872.00,196452.00 Sub-Saharan Africa,Equatorial Guinea,Vegetables,Offline,L,3/21/2012,871059882,4/20/2012,4831,154.06,90.93,744263.86,439282.83,304981.03 Middle East and North Africa,Egypt,Office Supplies,Offline,H,7/9/2012,266256082,8/17/2012,9946,651.21,524.96,6476934.66,5221252.16,1255682.50 Asia,Kazakhstan,Clothes,Online,H,8/2/2012,884848582,8/5/2012,5214,109.28,35.84,569785.92,186869.76,382916.16 Sub-Saharan Africa,Chad,Beverages,Online,H,5/2/2010,319073712,5/3/2010,9857,47.45,31.79,467714.65,313354.03,154360.62 Sub-Saharan Africa,South Sudan,Household,Online,M,2/8/2016,731480300,3/25/2016,131,668.27,502.54,87543.37,65832.74,21710.63 Middle East and North Africa,Jordan,Fruits,Offline,H,1/7/2011,304929673,1/22/2011,4321,9.33,6.92,40314.93,29901.32,10413.61 Central America and the Caribbean,Trinidad and Tobago,Vegetables,Offline,C,4/30/2011,892595660,5/26/2011,7746,154.06,90.93,1193348.76,704343.78,489004.98 Middle East and North Africa,Iraq,Cereal,Offline,H,8/23/2011,367964589,8/30/2011,7754,205.70,117.11,1594997.80,908070.94,686926.86 Asia,South Korea,Snacks,Offline,H,6/1/2011,274835288,6/28/2011,8724,152.58,97.44,1331107.92,850066.56,481041.36 Europe,San Marino,Clothes,Offline,L,3/4/2011,877319085,3/19/2011,7068,109.28,35.84,772391.04,253317.12,519073.92 Asia,Bhutan,Beverages,Offline,M,4/13/2016,709839808,5/26/2016,6228,47.45,31.79,295518.60,197988.12,97530.48 Asia,Tajikistan,Vegetables,Offline,M,6/19/2010,627133786,7/30/2010,1678,154.06,90.93,258512.68,152580.54,105932.14 Sub-Saharan Africa,Burkina Faso,Cereal,Offline,L,8/1/2012,654249846,9/1/2012,5923,205.70,117.11,1218361.10,693642.53,524718.57 Europe,Moldova ,Beverages,Online,C,4/10/2012,436549317,5/27/2012,3499,47.45,31.79,166027.55,111233.21,54794.34 Europe,Spain,Household,Offline,L,8/6/2011,589706027,8/17/2011,5973,668.27,502.54,3991576.71,3001671.42,989905.29 Australia and Oceania,Kiribati,Baby Food,Offline,L,9/2/2013,449706304,9/11/2013,6944,255.28,159.42,1772664.32,1107012.48,665651.84 Middle East and North Africa,Afghanistan,Household,Online,H,5/1/2011,322848975,5/17/2011,7041,668.27,502.54,4705289.07,3538384.14,1166904.93 Europe,Norway,Cereal,Online,C,8/13/2013,135745370,8/30/2013,8926,205.70,117.11,1836078.20,1045323.86,790754.34 North America,United States of America,Snacks,Online,C,9/14/2011,785319316,10/24/2011,2292,152.58,97.44,349713.36,223332.48,126380.88 Asia,India,Fruits,Online,M,12/21/2012,988807141,1/11/2013,8861,9.33,6.92,82673.13,61318.12,21355.01 Sub-Saharan Africa,South Africa,Clothes,Offline,M,7/7/2014,433757674,8/16/2014,7390,109.28,35.84,807579.20,264857.60,542721.60 Australia and Oceania,New Zealand,Office Supplies,Offline,L,6/27/2014,228032243,8/1/2014,8663,651.21,524.96,5641432.23,4547728.48,1093703.75 North America,United States of America,Personal Care,Online,C,11/23/2015,649804675,12/29/2015,498,81.73,56.67,40701.54,28221.66,12479.88 Sub-Saharan Africa,Malawi,Fruits,Online,M,3/27/2015,697561299,4/30/2015,2745,9.33,6.92,25610.85,18995.40,6615.45 Middle East and North Africa,Turkey,Meat,Online,L,11/8/2013,340100944,11/18/2013,2282,421.89,364.69,962752.98,832222.58,130530.40 Europe,Georgia,Cosmetics,Offline,M,3/5/2014,966534936,3/12/2014,8021,437.20,263.33,3506781.20,2112169.93,1394611.27 Sub-Saharan Africa,Zimbabwe,Fruits,Offline,C,11/20/2015,436287105,11/27/2015,5904,9.33,6.92,55084.32,40855.68,14228.64 Sub-Saharan Africa,Benin,Vegetables,Offline,L,3/3/2012,729093778,3/8/2012,3906,154.06,90.93,601758.36,355172.58,246585.78 Sub-Saharan Africa,Chad,Fruits,Offline,L,3/19/2016,295003783,4/23/2016,7030,9.33,6.92,65589.90,48647.60,16942.30 Asia,Japan,Personal Care,Online,C,12/22/2011,804378449,2/2/2012,2313,81.73,56.67,189041.49,131077.71,57963.78 Asia,North Korea,Beverages,Online,C,12/20/2010,397891604,1/1/2011,3823,47.45,31.79,181401.35,121533.17,59868.18 Asia,India,Personal Care,Online,H,8/26/2010,436529576,10/9/2010,7657,81.73,56.67,625806.61,433922.19,191884.42 Central America and the Caribbean,Nicaragua,Cosmetics,Offline,C,4/24/2013,551591193,5/16/2013,6946,437.20,263.33,3036791.20,1829090.18,1207701.02 Europe,Malta,Snacks,Online,H,9/28/2014,894687783,11/15/2014,6852,152.58,97.44,1045478.16,667658.88,377819.28 Europe,Greece,Beverages,Online,C,7/31/2015,787743175,8/8/2015,9566,47.45,31.79,453906.70,304103.14,149803.56 Europe,Austria,Vegetables,Online,H,7/13/2017,972993695,7/18/2017,9311,154.06,90.93,1434452.66,846649.23,587803.43 Europe,Monaco,Meat,Online,C,1/3/2012,462988173,2/1/2012,7344,421.89,364.69,3098360.16,2678283.36,420076.80 Australia and Oceania,Australia,Cosmetics,Online,M,3/14/2014,590587937,4/14/2014,6950,437.20,263.33,3038540.00,1830143.50,1208396.50 Middle East and North Africa,United Arab Emirates,Vegetables,Online,C,11/11/2013,958966815,11/14/2013,8446,154.06,90.93,1301190.76,767994.78,533195.98 Sub-Saharan Africa,Seychelles ,Snacks,Offline,L,12/17/2016,791611135,2/5/2017,4181,152.58,97.44,637936.98,407396.64,230540.34 Europe,United Kingdom,Office Supplies,Online,H,8/5/2011,282319724,8/18/2011,3535,651.21,524.96,2302027.35,1855733.60,446293.75 Australia and Oceania,Australia,Clothes,Offline,M,3/17/2017,145203912,3/17/2017,7919,109.28,35.84,865388.32,283816.96,581571.36 Asia,Vietnam,Meat,Online,H,9/5/2012,264687526,9/10/2012,5776,421.89,364.69,2436836.64,2106449.44,330387.20 Middle East and North Africa,Afghanistan,Cereal,Online,M,10/20/2015,145506894,11/23/2015,7578,205.70,117.11,1558794.60,887459.58,671335.02 Europe,Belgium,Cosmetics,Offline,M,5/11/2011,262710845,6/14/2011,832,437.20,263.33,363750.40,219090.56,144659.84 Sub-Saharan Africa,Rwanda,Snacks,Online,M,6/27/2015,711660706,7/11/2015,5073,152.58,97.44,774038.34,494313.12,279725.22 Europe,Macedonia,Personal Care,Online,H,4/27/2011,758030307,5/18/2011,6868,81.73,56.67,561321.64,389209.56,172112.08 Central America and the Caribbean,The Bahamas,Personal Care,Online,L,5/4/2013,187805974,5/20/2013,4816,81.73,56.67,393611.68,272922.72,120688.96 Middle East and North Africa,Iraq,Beverages,Online,L,8/4/2010,657286536,9/22/2010,4547,47.45,31.79,215755.15,144549.13,71206.02 Asia,Nepal,Household,Online,L,11/24/2015,743083322,12/23/2015,3723,668.27,502.54,2487969.21,1870956.42,617012.79 Europe,Spain,Snacks,Online,L,8/25/2016,892120158,9/4/2016,7035,152.58,97.44,1073400.30,685490.40,387909.90 Europe,Slovenia,Vegetables,Online,L,6/10/2016,271633374,6/14/2016,1207,154.06,90.93,185950.42,109752.51,76197.91 Central America and the Caribbean,The Bahamas,Baby Food,Online,H,2/26/2016,819171798,3/10/2016,9994,255.28,159.42,2551268.32,1593243.48,958024.84 Asia,Laos,Office Supplies,Offline,L,2/26/2010,492596757,3/2/2010,9182,651.21,524.96,5979410.22,4820182.72,1159227.50 Sub-Saharan Africa,Lesotho,Meat,Online,C,10/22/2012,920082080,11/20/2012,1589,421.89,364.69,670383.21,579492.41,90890.80 Europe,Greece,Household,Online,C,10/28/2016,650114095,11/2/2016,2062,668.27,502.54,1377972.74,1036237.48,341735.26 Sub-Saharan Africa,Sao Tome and Principe,Meat,Offline,C,3/13/2012,101491630,4/20/2012,2483,421.89,364.69,1047552.87,905525.27,142027.60 Middle East and North Africa,Israel,Vegetables,Online,C,9/12/2012,213326013,10/28/2012,6763,154.06,90.93,1041907.78,614959.59,426948.19 Sub-Saharan Africa,Burundi,Clothes,Offline,L,3/27/2014,195041072,5/2/2014,5842,109.28,35.84,638413.76,209377.28,429036.48 Central America and the Caribbean,Costa Rica,Clothes,Online,C,10/11/2013,676373136,11/7/2013,2696,109.28,35.84,294618.88,96624.64,197994.24 Europe,Portugal,Clothes,Online,L,2/25/2013,557371032,3/26/2013,7329,109.28,35.84,800913.12,262671.36,538241.76 Sub-Saharan Africa,Nigeria,Household,Online,H,3/31/2015,158396089,4/13/2015,1777,668.27,502.54,1187515.79,893013.58,294502.21 Central America and the Caribbean,Grenada,Clothes,Online,M,8/24/2012,770122134,10/2/2012,5108,109.28,35.84,558202.24,183070.72,375131.52 North America,Canada,Snacks,Offline,M,3/2/2014,603535497,3/31/2014,8420,152.58,97.44,1284723.60,820444.80,464278.80 Sub-Saharan Africa,Liberia,Snacks,Online,C,9/26/2010,639935004,11/11/2010,9843,152.58,97.44,1501844.94,959101.92,542743.02 Europe,Netherlands,Personal Care,Online,M,1/30/2017,580931985,2/12/2017,9539,81.73,56.67,779622.47,540575.13,239047.34 Australia and Oceania,Federated States of Micronesia,Snacks,Offline,L,11/27/2014,198450267,1/11/2015,4699,152.58,97.44,716973.42,457870.56,259102.86 Central America and the Caribbean,Saint Kitts and Nevis ,Cereal,Offline,L,4/11/2017,684726178,4/28/2017,4547,205.70,117.11,935317.90,532499.17,402818.73 Middle East and North Africa,Tunisia ,Cosmetics,Offline,H,10/25/2011,602308547,12/8/2011,5339,437.20,263.33,2334210.80,1405918.87,928291.93 Europe,Luxembourg,Fruits,Offline,C,7/2/2017,834058701,7/5/2017,5359,9.33,6.92,49999.47,37084.28,12915.19 Asia,Thailand,Cereal,Offline,C,9/23/2012,533150470,10/5/2012,9927,205.70,117.11,2041983.90,1162550.97,879432.93 Europe,Bulgaria,Snacks,Offline,M,10/29/2014,273070180,12/18/2014,6389,152.58,97.44,974833.62,622544.16,352289.46 Middle East and North Africa,Tunisia ,Clothes,Offline,C,9/3/2015,697616660,10/6/2015,9127,109.28,35.84,997398.56,327111.68,670286.88 Asia,Uzbekistan,Cereal,Offline,L,10/16/2015,270901238,11/28/2015,4551,205.70,117.11,936140.70,532967.61,403173.09 North America,Mexico,Beverages,Offline,L,12/24/2012,227347743,2/12/2013,6104,47.45,31.79,289634.80,194046.16,95588.64 Australia and Oceania,Marshall Islands,Cosmetics,Online,C,9/5/2013,521692502,10/10/2013,9259,437.20,263.33,4048034.80,2438172.47,1609862.33 Middle East and North Africa,Israel,Baby Food,Offline,L,1/12/2014,278984344,2/1/2014,6522,255.28,159.42,1664936.16,1039737.24,625198.92 Asia,India,Cereal,Offline,M,3/31/2011,944584596,5/9/2011,2427,205.70,117.11,499233.90,284225.97,215007.93 Central America and the Caribbean,Grenada,Vegetables,Offline,L,12/13/2014,434167087,12/26/2014,8544,154.06,90.93,1316288.64,776905.92,539382.72 Australia and Oceania,Federated States of Micronesia,Office Supplies,Offline,H,2/16/2013,783718144,3/18/2013,8470,651.21,524.96,5515748.70,4446411.20,1069337.50 Europe,Russia,Baby Food,Offline,H,10/2/2013,499536597,10/15/2013,2835,255.28,159.42,723718.80,451955.70,271763.10 Europe,Slovenia,Personal Care,Offline,L,9/21/2010,408233773,11/9/2010,4300,81.73,56.67,351439.00,243681.00,107758.00 Sub-Saharan Africa,Republic of the Congo,Household,Online,H,5/9/2010,506733500,5/21/2010,2558,668.27,502.54,1709434.66,1285497.32,423937.34 Sub-Saharan Africa,Cote d'Ivoire,Household,Online,H,6/16/2012,412272107,7/30/2012,9333,668.27,502.54,6236963.91,4690205.82,1546758.09 Europe,Switzerland,Baby Food,Offline,C,2/16/2014,712398421,3/8/2014,3379,255.28,159.42,862591.12,538680.18,323910.94 Australia and Oceania,Marshall Islands,Clothes,Offline,C,7/7/2013,714973771,8/6/2013,5482,109.28,35.84,599072.96,196474.88,402598.08 Europe,Austria,Cosmetics,Offline,C,8/17/2013,698171985,8/21/2013,3460,437.20,263.33,1512712.00,911121.80,601590.20 Sub-Saharan Africa,Cape Verde,Vegetables,Online,C,12/18/2010,560479390,1/20/2011,7161,154.06,90.93,1103223.66,651149.73,452073.93 Sub-Saharan Africa,Comoros,Fruits,Online,C,6/12/2014,270694816,7/30/2014,3466,9.33,6.92,32337.78,23984.72,8353.06 Sub-Saharan Africa,Kenya,Snacks,Offline,L,5/5/2011,317929589,6/16/2011,1285,152.58,97.44,196065.30,125210.40,70854.90 Sub-Saharan Africa,Democratic Republic of the Congo,Baby Food,Offline,H,6/28/2016,361607539,8/14/2016,6561,255.28,159.42,1674892.08,1045954.62,628937.46 Middle East and North Africa,Tunisia ,Office Supplies,Online,L,7/4/2015,581464993,7/10/2015,7268,651.21,524.96,4732994.28,3815409.28,917585.00 Europe,San Marino,Beverages,Offline,L,12/29/2013,327550780,1/3/2014,8410,47.45,31.79,399054.50,267353.90,131700.60 Europe,Lithuania,Baby Food,Online,L,1/23/2011,370226228,3/5/2011,7023,255.28,159.42,1792831.44,1119606.66,673224.78 Europe,Malta,Vegetables,Offline,C,8/28/2010,650165164,10/14/2010,7175,154.06,90.93,1105380.50,652422.75,452957.75 Sub-Saharan Africa,Malawi,Fruits,Online,C,3/24/2010,728353917,4/14/2010,4965,9.33,6.92,46323.45,34357.80,11965.65 Middle East and North Africa,Oman,Vegetables,Online,L,1/25/2012,236091315,1/25/2012,3522,154.06,90.93,542599.32,320255.46,222343.86 Middle East and North Africa,Saudi Arabia,Personal Care,Online,C,12/19/2011,224988687,1/24/2012,8007,81.73,56.67,654412.11,453756.69,200655.42 Sub-Saharan Africa,Malawi,Meat,Online,C,7/25/2010,916969859,8/7/2010,613,421.89,364.69,258618.57,223554.97,35063.60 Sub-Saharan Africa,The Gambia,Cereal,Offline,M,2/19/2017,354271161,3/26/2017,5564,205.70,117.11,1144514.80,651600.04,492914.76 Europe,Estonia,Personal Care,Offline,H,7/11/2015,249441421,8/21/2015,4114,81.73,56.67,336237.22,233140.38,103096.84 Sub-Saharan Africa,Benin,Clothes,Online,C,5/7/2013,135341966,6/10/2013,9550,109.28,35.84,1043624.00,342272.00,701352.00 Middle East and North Africa,United Arab Emirates,Household,Online,L,7/3/2015,515146625,7/6/2015,2189,668.27,502.54,1462843.03,1100060.06,362782.97 Europe,United Kingdom,Cereal,Offline,L,10/22/2012,612341725,10/28/2012,4379,205.70,117.11,900760.30,512824.69,387935.61 Middle East and North Africa,Syria,Beverages,Offline,M,2/1/2016,620726096,3/6/2016,5501,47.45,31.79,261022.45,174876.79,86145.66 Asia,Taiwan,Household,Offline,C,6/29/2014,354411065,8/11/2014,6965,668.27,502.54,4654500.55,3500191.10,1154309.45 Middle East and North Africa,Morocco,Cereal,Offline,C,3/10/2017,597820460,4/5/2017,7214,205.70,117.11,1483919.80,844831.54,639088.26 Europe,Spain,Meat,Online,L,9/5/2011,855690610,10/18/2011,6722,421.89,364.69,2835944.58,2451446.18,384498.40 Europe,Estonia,Personal Care,Offline,C,1/14/2013,703070342,2/21/2013,2993,81.73,56.67,244617.89,169613.31,75004.58 Australia and Oceania,Samoa ,Personal Care,Offline,L,9/10/2014,235320985,9/30/2014,5564,81.73,56.67,454745.72,315311.88,139433.84 Asia,South Korea,Snacks,Online,C,11/29/2014,518116366,1/6/2015,1001,152.58,97.44,152732.58,97537.44,55195.14 Asia,Philippines,Meat,Online,C,1/12/2013,437442815,1/13/2013,7905,421.89,364.69,3335040.45,2882874.45,452166.00 Asia,Indonesia,Snacks,Online,M,4/1/2013,749599158,4/10/2013,1904,152.58,97.44,290512.32,185525.76,104986.56 Sub-Saharan Africa,Benin,Clothes,Online,C,3/28/2013,931196725,4/21/2013,659,109.28,35.84,72015.52,23618.56,48396.96 Middle East and North Africa,Lebanon,Vegetables,Online,M,7/15/2015,529159343,8/31/2015,8863,154.06,90.93,1365433.78,805912.59,559521.19 Sub-Saharan Africa,Cote d'Ivoire,Vegetables,Online,H,3/1/2016,510723340,4/11/2016,3241,154.06,90.93,499308.46,294704.13,204604.33 Sub-Saharan Africa,Djibouti,Snacks,Offline,H,1/3/2016,113437545,1/10/2016,7545,152.58,97.44,1151216.10,735184.80,416031.30 Central America and the Caribbean,Dominica,Vegetables,Offline,M,12/29/2016,895163285,1/11/2017,7563,154.06,90.93,1165155.78,687703.59,477452.19 Asia,North Korea,Household,Offline,M,10/12/2010,884074389,10/23/2010,6113,668.27,502.54,4085134.51,3072027.02,1013107.49 Sub-Saharan Africa,Liberia,Fruits,Online,H,10/16/2012,428657186,11/3/2012,8042,9.33,6.92,75031.86,55650.64,19381.22 Sub-Saharan Africa,Nigeria,Snacks,Offline,C,1/9/2013,847710502,2/18/2013,5230,152.58,97.44,797993.40,509611.20,288382.20 Asia,Vietnam,Personal Care,Online,L,2/6/2010,380345666,3/23/2010,1590,81.73,56.67,129950.70,90105.30,39845.40 Asia,Cambodia,Cereal,Offline,M,1/28/2015,935986506,3/8/2015,8062,205.70,117.11,1658353.40,944140.82,714212.58 Sub-Saharan Africa,Cameroon,Office Supplies,Online,M,5/7/2017,444369351,6/19/2017,7621,651.21,524.96,4962871.41,4000720.16,962151.25 Sub-Saharan Africa,Ghana,Baby Food,Online,H,3/3/2011,505543029,3/17/2011,271,255.28,159.42,69180.88,43202.82,25978.06 Sub-Saharan Africa,Equatorial Guinea,Household,Online,M,7/27/2014,539868867,8/22/2014,8050,668.27,502.54,5379573.50,4045447.00,1334126.50 Europe,Sweden,Clothes,Offline,C,7/27/2012,938020694,9/2/2012,23,109.28,35.84,2513.44,824.32,1689.12 Sub-Saharan Africa,Nigeria,Cereal,Offline,C,12/23/2013,810984838,1/13/2014,7290,205.70,117.11,1499553.00,853731.90,645821.10 Sub-Saharan Africa,Zambia,Personal Care,Online,H,4/20/2017,240060126,5/29/2017,7981,81.73,56.67,652287.13,452283.27,200003.86 Sub-Saharan Africa,Lesotho,Beverages,Online,C,7/17/2014,726857888,8/1/2014,2256,47.45,31.79,107047.20,71718.24,35328.96 Sub-Saharan Africa,Zimbabwe,Cereal,Online,H,2/15/2010,243301951,3/1/2010,7309,205.70,117.11,1503461.30,855956.99,647504.31 Central America and the Caribbean,Saint Kitts and Nevis ,Office Supplies,Offline,M,2/12/2017,881628644,2/22/2017,2362,651.21,524.96,1538158.02,1239955.52,298202.50 Sub-Saharan Africa,Cameroon,Clothes,Offline,H,7/27/2015,304386794,8/16/2015,3671,109.28,35.84,401166.88,131568.64,269598.24 Sub-Saharan Africa,Cape Verde,Meat,Online,C,11/19/2016,294437730,12/9/2016,9522,421.89,364.69,4017236.58,3472578.18,544658.40 Sub-Saharan Africa,Angola,Cereal,Offline,M,8/9/2014,904955279,9/5/2014,5232,205.70,117.11,1076222.40,612719.52,463502.88 Europe,Spain,Clothes,Offline,C,11/29/2010,909425771,12/19/2010,8150,109.28,35.84,890632.00,292096.00,598536.00 Europe,Sweden,Snacks,Online,L,10/30/2012,951648032,11/16/2012,2655,152.58,97.44,405099.90,258703.20,146396.70 Sub-Saharan Africa,Senegal,Personal Care,Online,L,4/24/2013,395733392,6/12/2013,5160,81.73,56.67,421726.80,292417.20,129309.60 Asia,Vietnam,Baby Food,Online,H,2/25/2010,476105678,4/1/2010,9105,255.28,159.42,2324324.40,1451519.10,872805.30 Sub-Saharan Africa,Mozambique,Cosmetics,Online,C,5/14/2017,247501218,5/21/2017,9965,437.20,263.33,4356698.00,2624083.45,1732614.55 Sub-Saharan Africa,The Gambia,Baby Food,Offline,H,12/14/2015,634968841,1/20/2016,245,255.28,159.42,62543.60,39057.90,23485.70 Sub-Saharan Africa,Cape Verde,Office Supplies,Online,H,9/8/2010,383869874,9/16/2010,4481,651.21,524.96,2918072.01,2352345.76,565726.25 Sub-Saharan Africa,Guinea,Cosmetics,Online,C,3/17/2011,109878146,5/1/2011,4240,437.20,263.33,1853728.00,1116519.20,737208.80 Asia,Cambodia,Beverages,Online,C,1/21/2013,948979985,2/19/2013,3121,47.45,31.79,148091.45,99216.59,48874.86 Sub-Saharan Africa,Senegal,Meat,Offline,M,8/25/2016,507474219,10/2/2016,1754,421.89,364.69,739995.06,639666.26,100328.80 Central America and the Caribbean,Grenada,Cosmetics,Offline,M,11/16/2015,511972177,11/23/2015,2799,437.20,263.33,1223722.80,737060.67,486662.13 Australia and Oceania,Federated States of Micronesia,Clothes,Online,M,1/19/2017,959397685,2/1/2017,5950,109.28,35.84,650216.00,213248.00,436968.00 Europe,Slovenia,Vegetables,Online,H,6/2/2012,566987073,7/17/2012,2929,154.06,90.93,451241.74,266333.97,184907.77 Middle East and North Africa,Morocco,Office Supplies,Online,L,3/19/2014,822289168,4/16/2014,2493,651.21,524.96,1623466.53,1308725.28,314741.25 Australia and Oceania,Tuvalu,Cosmetics,Online,M,1/6/2013,133165299,1/9/2013,5426,437.20,263.33,2372247.20,1428828.58,943418.62 Asia,Mongolia,Beverages,Online,C,11/2/2011,577789294,11/2/2011,9547,47.45,31.79,453005.15,303499.13,149506.02 Central America and the Caribbean,Saint Vincent and the Grenadines,Meat,Online,C,9/27/2014,254647481,10/8/2014,4703,421.89,364.69,1984148.67,1715137.07,269011.60 Middle East and North Africa,Qatar,Cosmetics,Online,L,7/5/2015,932538688,7/19/2015,7776,437.20,263.33,3399667.20,2047654.08,1352013.12 Middle East and North Africa,Yemen,Personal Care,Online,H,7/20/2016,400574243,7/24/2016,7675,81.73,56.67,627277.75,434942.25,192335.50 Central America and the Caribbean,Dominica,Beverages,Offline,M,7/26/2017,118177974,8/8/2017,343,47.45,31.79,16275.35,10903.97,5371.38 Sub-Saharan Africa,Tanzania,Household,Online,C,9/27/2011,265086209,11/2/2011,3755,668.27,502.54,2509353.85,1887037.70,622316.15 Europe,Croatia,Clothes,Online,L,3/31/2012,191347777,4/5/2012,2914,109.28,35.84,318441.92,104437.76,214004.16 Sub-Saharan Africa,Niger,Household,Online,L,8/15/2010,667324006,9/2/2010,4858,668.27,502.54,3246455.66,2441339.32,805116.34 Sub-Saharan Africa,Sao Tome and Principe,Baby Food,Offline,C,10/25/2010,733688724,11/3/2010,3652,255.28,159.42,932282.56,582201.84,350080.72 Central America and the Caribbean,Saint Kitts and Nevis ,Cosmetics,Offline,H,4/11/2010,851428258,5/8/2010,5397,437.20,263.33,2359568.40,1421192.01,938376.39 Sub-Saharan Africa,South Africa,Personal Care,Online,L,4/18/2011,651841437,4/26/2011,3222,81.73,56.67,263334.06,182590.74,80743.32 Asia,Singapore,Personal Care,Online,H,3/27/2017,286539590,3/28/2017,2287,81.73,56.67,186916.51,129604.29,57312.22 Europe,Belgium,Vegetables,Offline,H,8/5/2013,877446544,9/21/2013,4786,154.06,90.93,737331.16,435190.98,302140.18 Europe,Austria,Cereal,Offline,L,3/20/2017,466798627,5/2/2017,4942,205.70,117.11,1016569.40,578757.62,437811.78 Europe,Bosnia and Herzegovina,Snacks,Online,L,12/11/2011,767144668,1/11/2012,4010,152.58,97.44,611845.80,390734.40,221111.40 Europe,Serbia,Meat,Offline,L,12/19/2012,411345994,1/2/2013,5275,421.89,364.69,2225469.75,1923739.75,301730.00 Europe,Czech Republic,Fruits,Offline,L,1/15/2010,802576434,2/17/2010,9057,9.33,6.92,84501.81,62674.44,21827.37 Middle East and North Africa,Somalia,Personal Care,Online,C,9/14/2016,264322316,10/25/2016,7702,81.73,56.67,629484.46,436472.34,193012.12 Asia,India,Personal Care,Offline,C,6/24/2013,790382468,7/26/2013,591,81.73,56.67,48302.43,33491.97,14810.46 Europe,Hungary,Clothes,Online,C,4/1/2012,394868218,4/13/2012,9136,109.28,35.84,998382.08,327434.24,670947.84 Europe,Finland,Clothes,Online,H,8/6/2014,762203395,8/31/2014,1777,109.28,35.84,194190.56,63687.68,130502.88 Sub-Saharan Africa,Zambia,Cereal,Online,M,8/9/2015,497124326,9/7/2015,8990,205.70,117.11,1849243.00,1052818.90,796424.10 Europe,Montenegro,Fruits,Offline,C,3/13/2015,974679839,4/1/2015,8279,9.33,6.92,77243.07,57290.68,19952.39 Middle East and North Africa,Iran,Meat,Online,H,5/16/2014,490231263,5/20/2014,9180,421.89,364.69,3872950.20,3347854.20,525096.00 Sub-Saharan Africa,Gabon,Fruits,Online,C,5/28/2011,109452426,6/30/2011,8260,9.33,6.92,77065.80,57159.20,19906.60 Sub-Saharan Africa,Chad,Household,Offline,M,3/15/2013,518329656,3/29/2013,4118,668.27,502.54,2751935.86,2069459.72,682476.14 Australia and Oceania,Federated States of Micronesia,Beverages,Online,H,5/19/2016,673161780,7/7/2016,2385,47.45,31.79,113168.25,75819.15,37349.10 Europe,Bosnia and Herzegovina,Baby Food,Online,M,1/21/2011,950560128,3/10/2011,720,255.28,159.42,183801.60,114782.40,69019.20 Australia and Oceania,Palau,Beverages,Online,M,11/24/2014,897448527,12/6/2014,3817,47.45,31.79,181116.65,121342.43,59774.22 Asia,China,Personal Care,Online,C,5/12/2016,581063306,5/17/2016,8400,81.73,56.67,686532.00,476028.00,210504.00 Australia and Oceania,Palau,Snacks,Offline,L,4/29/2016,138953292,5/29/2016,8222,152.58,97.44,1254512.76,801151.68,453361.08 Middle East and North Africa,Bahrain,Office Supplies,Offline,L,9/24/2016,228979814,9/25/2016,9070,651.21,524.96,5906474.70,4761387.20,1145087.50 Europe,Ireland,Baby Food,Offline,M,10/18/2016,679316699,11/9/2016,3762,255.28,159.42,960363.36,599738.04,360625.32 Europe,Andorra,Cereal,Offline,C,10/21/2016,938450276,10/31/2016,7146,205.70,117.11,1469932.20,836868.06,633064.14 Sub-Saharan Africa,Swaziland,Fruits,Online,H,4/28/2014,525179374,5/18/2014,1102,9.33,6.92,10281.66,7625.84,2655.82 Middle East and North Africa,Azerbaijan,Baby Food,Online,C,7/20/2015,378615319,8/10/2015,9541,255.28,159.42,2435626.48,1521026.22,914600.26 Europe,Luxembourg,Personal Care,Online,M,5/22/2016,608181941,6/11/2016,3406,81.73,56.67,278372.38,193018.02,85354.36 Sub-Saharan Africa,Sierra Leone,Vegetables,Offline,M,10/26/2013,943615567,12/1/2013,5670,154.06,90.93,873520.20,515573.10,357947.10 Asia,Turkmenistan,Office Supplies,Offline,H,3/25/2017,284965026,4/22/2017,6339,651.21,524.96,4128020.19,3327721.44,800298.75 Sub-Saharan Africa,Central African Republic,Beverages,Online,M,5/14/2014,752591645,5/31/2014,7447,47.45,31.79,353360.15,236740.13,116620.02 Europe,Romania,Baby Food,Online,L,12/19/2012,937169253,1/1/2013,8063,255.28,159.42,2058322.64,1285403.46,772919.18 Middle East and North Africa,Libya,Meat,Online,L,4/7/2014,849684178,5/18/2014,9285,421.89,364.69,3917248.65,3386146.65,531102.00 Asia,Nepal,Office Supplies,Online,H,10/7/2016,571435248,10/17/2016,9243,651.21,524.96,6019134.03,4852205.28,1166928.75 Middle East and North Africa,Jordan,Meat,Online,C,6/23/2012,704033792,8/8/2012,8099,421.89,364.69,3416887.11,2953624.31,463262.80 Australia and Oceania,Marshall Islands,Meat,Offline,H,5/23/2013,119403636,6/3/2013,3044,421.89,364.69,1284233.16,1110116.36,174116.80 Sub-Saharan Africa,Central African Republic,Beverages,Online,M,6/7/2017,909781110,7/10/2017,3303,47.45,31.79,156727.35,105002.37,51724.98 Middle East and North Africa,Jordan,Personal Care,Online,M,3/22/2012,737715041,4/15/2012,5129,81.73,56.67,419193.17,290660.43,128532.74 Asia,Indonesia,Snacks,Offline,M,9/27/2016,486066758,10/12/2016,6810,152.58,97.44,1039069.80,663566.40,375503.40 Middle East and North Africa,Turkey,Cosmetics,Online,C,12/15/2016,208010089,1/4/2017,3663,437.20,263.33,1601463.60,964577.79,636885.81 Sub-Saharan Africa,Ethiopia,Snacks,Online,C,1/16/2015,477031362,2/4/2015,3035,152.58,97.44,463080.30,295730.40,167349.90 Sub-Saharan Africa,Mauritius ,Cosmetics,Offline,C,6/18/2010,136929404,7/17/2010,9308,437.20,263.33,4069457.60,2451075.64,1618381.96 Central America and the Caribbean,Saint Lucia,Fruits,Offline,H,4/22/2011,351815545,5/25/2011,8893,9.33,6.92,82971.69,61539.56,21432.13 Sub-Saharan Africa,Malawi,Vegetables,Online,H,5/16/2015,556113612,7/3/2015,5231,154.06,90.93,805887.86,475654.83,330233.03 Sub-Saharan Africa,Ghana,Vegetables,Offline,H,12/15/2013,704559934,12/22/2013,3796,154.06,90.93,584811.76,345170.28,239641.48 Europe,Italy,Fruits,Online,L,10/10/2010,822203338,11/12/2010,7094,9.33,6.92,66187.02,49090.48,17096.54 Europe,Macedonia,Beverages,Offline,M,8/9/2010,554405152,8/15/2010,9660,47.45,31.79,458367.00,307091.40,151275.60 Australia and Oceania,Vanuatu,Cosmetics,Offline,M,7/5/2015,516839206,7/7/2015,3061,437.20,263.33,1338269.20,806053.13,532216.07 Middle East and North Africa,Algeria,Household,Offline,C,6/18/2013,945491826,6/24/2013,897,668.27,502.54,599438.19,450778.38,148659.81 Europe,Bosnia and Herzegovina,Cosmetics,Offline,C,6/12/2012,346661841,7/24/2012,3797,437.20,263.33,1660048.40,999864.01,660184.39 Sub-Saharan Africa,Guinea,Cereal,Online,L,12/5/2013,446960580,1/19/2014,4423,205.70,117.11,909811.10,517977.53,391833.57 Middle East and North Africa,Somalia,Beverages,Offline,M,8/25/2016,343311870,10/7/2016,2466,47.45,31.79,117011.70,78394.14,38617.56 Europe,Croatia,Cosmetics,Offline,L,11/7/2012,552952039,11/30/2012,9651,437.20,263.33,4219417.20,2541397.83,1678019.37 Australia and Oceania,Solomon Islands,Cereal,Online,L,10/10/2014,763429915,10/24/2014,4732,205.70,117.11,973372.40,554164.52,419207.88 Asia,Philippines,Beverages,Online,H,12/28/2012,282606828,1/2/2013,8495,47.45,31.79,403087.75,270056.05,133031.70 Australia and Oceania,Marshall Islands,Snacks,Offline,M,7/8/2010,288656604,8/2/2010,8759,152.58,97.44,1336448.22,853476.96,482971.26 Sub-Saharan Africa,Benin,Beverages,Online,H,6/2/2011,680065572,6/18/2011,5370,47.45,31.79,254806.50,170712.30,84094.20 Sub-Saharan Africa,Mauritania,Fruits,Online,L,1/16/2017,525632560,1/24/2017,5210,9.33,6.92,48609.30,36053.20,12556.10 Sub-Saharan Africa,Mauritius ,Personal Care,Online,C,8/30/2014,314468896,10/15/2014,7189,81.73,56.67,587556.97,407400.63,180156.34 Europe,Switzerland,Cereal,Online,H,7/18/2011,605998408,7/26/2011,7250,205.70,117.11,1491325.00,849047.50,642277.50 Central America and the Caribbean,Guatemala,Cosmetics,Online,M,1/7/2016,679957425,2/20/2016,3367,437.20,263.33,1472052.40,886632.11,585420.29 Middle East and North Africa,Morocco,Snacks,Online,H,12/21/2010,786394774,1/23/2011,544,152.58,97.44,83003.52,53007.36,29996.16 Europe,Denmark,Meat,Offline,H,8/28/2010,795671784,9/20/2010,5817,421.89,364.69,2454134.13,2121401.73,332732.40 Europe,France,Snacks,Online,H,6/14/2011,648462283,6/14/2011,3255,152.58,97.44,496647.90,317167.20,179480.70 North America,Mexico,Cosmetics,Online,M,10/19/2010,805752599,10/30/2010,8954,437.20,263.33,3914688.80,2357856.82,1556831.98 Central America and the Caribbean,Dominica,Cereal,Offline,H,12/30/2010,898841559,2/12/2011,6047,205.70,117.11,1243867.90,708164.17,535703.73 Asia,Japan,Household,Offline,L,5/29/2015,179340493,7/15/2015,9692,668.27,502.54,6476872.84,4870617.68,1606255.16 Sub-Saharan Africa,Senegal,Office Supplies,Offline,C,2/4/2017,669173228,2/11/2017,2084,651.21,524.96,1357121.64,1094016.64,263105.00 Sub-Saharan Africa,South Sudan,Cosmetics,Offline,M,3/13/2010,410576093,4/11/2010,7445,437.20,263.33,3254954.00,1960491.85,1294462.15 Europe,Estonia,Fruits,Offline,L,5/28/2016,216097915,7/17/2016,7030,9.33,6.92,65589.90,48647.60,16942.30 Europe,Germany,Meat,Offline,L,1/22/2013,518600022,2/14/2013,4126,421.89,364.69,1740718.14,1504710.94,236007.20 Europe,Norway,Beverages,Offline,C,8/17/2012,921256244,9/25/2012,9050,47.45,31.79,429422.50,287699.50,141723.00 Asia,China,Vegetables,Offline,M,7/2/2013,647552907,7/5/2013,4150,154.06,90.93,639349.00,377359.50,261989.50 Sub-Saharan Africa,South Africa,Meat,Offline,L,5/7/2011,791288840,5/15/2011,8807,421.89,364.69,3715585.23,3211824.83,503760.40 Sub-Saharan Africa,Burundi,Cereal,Online,C,6/24/2010,266575372,7/4/2010,4431,205.70,117.11,911456.70,518914.41,392542.29 North America,Canada,Household,Offline,L,6/24/2012,757836329,6/26/2012,9466,668.27,502.54,6325843.82,4757043.64,1568800.18 Europe,Italy,Snacks,Offline,H,6/5/2012,869808042,7/19/2012,4383,152.58,97.44,668758.14,427079.52,241678.62 Central America and the Caribbean,Grenada,Cereal,Online,M,4/3/2010,177539336,5/1/2010,6690,205.70,117.11,1376133.00,783465.90,592667.10 Europe,Moldova ,Household,Offline,C,7/11/2014,576391541,7/27/2014,5921,668.27,502.54,3956826.67,2975539.34,981287.33 Europe,Switzerland,Beverages,Online,C,12/11/2015,432038486,12/16/2015,8644,47.45,31.79,410157.80,274792.76,135365.04 Europe,Hungary,Baby Food,Offline,H,11/4/2013,430466496,11/9/2013,3457,255.28,159.42,882502.96,551114.94,331388.02 Australia and Oceania,Fiji,Fruits,Online,L,6/1/2012,427974402,6/17/2012,5991,9.33,6.92,55896.03,41457.72,14438.31 Asia,Bangladesh,Office Supplies,Online,H,12/1/2016,801173532,1/20/2017,3907,651.21,524.96,2544277.47,2051018.72,493258.75 Sub-Saharan Africa,Lesotho,Clothes,Offline,C,9/25/2014,196987712,9/30/2014,1896,109.28,35.84,207194.88,67952.64,139242.24 Europe,Ireland,Baby Food,Online,C,1/12/2017,482653272,3/2/2017,6684,255.28,159.42,1706291.52,1065563.28,640728.24 Middle East and North Africa,United Arab Emirates,Cereal,Offline,M,2/14/2017,895719039,3/17/2017,2023,205.70,117.11,416131.10,236913.53,179217.57 Sub-Saharan Africa,Malawi,Household,Offline,C,12/11/2016,294046342,12/28/2016,3702,668.27,502.54,2473935.54,1860403.08,613532.46 Sub-Saharan Africa,Guinea-Bissau,Meat,Online,M,9/18/2015,305809009,9/29/2015,4536,421.89,364.69,1913693.04,1654233.84,259459.20 Sub-Saharan Africa,Mozambique,Cereal,Offline,L,9/20/2013,379493367,10/20/2013,9375,205.70,117.11,1928437.50,1097906.25,830531.25 Asia,Bangladesh,Baby Food,Online,C,2/4/2016,933898246,3/4/2016,99,255.28,159.42,25272.72,15782.58,9490.14 Middle East and North Africa,Somalia,Personal Care,Online,M,11/23/2013,208134973,12/19/2013,618,81.73,56.67,50509.14,35022.06,15487.08 Sub-Saharan Africa,South Africa,Vegetables,Online,L,8/9/2010,111627376,9/7/2010,1876,154.06,90.93,289016.56,170584.68,118431.88 Asia,Sri Lanka,Vegetables,Online,L,10/5/2010,374111783,10/12/2010,6845,154.06,90.93,1054540.70,622415.85,432124.85 Central America and the Caribbean,The Bahamas,Baby Food,Offline,H,3/11/2016,795637023,3/30/2016,5531,255.28,159.42,1411953.68,881752.02,530201.66 Sub-Saharan Africa,Cote d'Ivoire,Vegetables,Online,M,8/21/2014,796564424,9/27/2014,9969,154.06,90.93,1535824.14,906481.17,629342.97 Europe,Slovakia,Office Supplies,Offline,L,11/2/2013,767567813,11/20/2013,9228,651.21,524.96,6009365.88,4844330.88,1165035.00 Central America and the Caribbean,Saint Kitts and Nevis ,Cosmetics,Online,L,1/9/2015,719633519,2/17/2015,4405,437.20,263.33,1925866.00,1159968.65,765897.35 Europe,Finland,Meat,Online,H,9/14/2016,734060370,9/23/2016,3631,421.89,364.69,1531882.59,1324189.39,207693.20 Central America and the Caribbean,Trinidad and Tobago,Fruits,Online,C,11/19/2010,512459695,11/23/2010,7067,9.33,6.92,65935.11,48903.64,17031.47 Asia,Indonesia,Cereal,Offline,M,2/17/2017,726755321,3/26/2017,1904,205.70,117.11,391652.80,222977.44,168675.36 Sub-Saharan Africa,Mozambique,Household,Online,C,8/25/2010,769183576,9/27/2010,7368,668.27,502.54,4923813.36,3702714.72,1221098.64 Sub-Saharan Africa,Ethiopia,Household,Offline,C,12/3/2016,102293288,12/9/2016,9712,668.27,502.54,6490238.24,4880668.48,1609569.76 Europe,Montenegro,Office Supplies,Online,H,1/26/2017,508945786,3/5/2017,7223,651.21,524.96,4703689.83,3791786.08,911903.75 Sub-Saharan Africa,Zambia,Meat,Online,C,3/15/2012,242314898,4/25/2012,5218,421.89,364.69,2201422.02,1902952.42,298469.60 Asia,Laos,Cereal,Offline,H,1/28/2012,775886952,3/14/2012,1046,205.70,117.11,215162.20,122497.06,92665.14 Middle East and North Africa,Kuwait,Household,Online,M,2/20/2016,953460776,3/11/2016,9087,668.27,502.54,6072569.49,4566580.98,1505988.51 Europe,Slovenia,Cosmetics,Online,H,5/6/2017,139147698,6/20/2017,5751,437.20,263.33,2514337.20,1514410.83,999926.37 Europe,Vatican City,Snacks,Offline,H,6/28/2013,467371547,8/6/2013,4482,152.58,97.44,683863.56,436726.08,247137.48 Sub-Saharan Africa,Guinea,Household,Online,L,1/7/2011,992868649,2/12/2011,752,668.27,502.54,502539.04,377910.08,124628.96 Asia,Mongolia,Household,Offline,L,8/22/2013,840687835,8/27/2013,7067,668.27,502.54,4722664.09,3551450.18,1171213.91 Middle East and North Africa,Libya,Household,Offline,L,12/29/2010,556190431,1/31/2011,7963,668.27,502.54,5321434.01,4001726.02,1319707.99 Europe,Austria,Office Supplies,Online,M,9/16/2012,755050265,10/26/2012,5007,651.21,524.96,3260608.47,2628474.72,632133.75 Europe,Georgia,Household,Offline,M,5/5/2014,773253667,5/16/2014,1798,668.27,502.54,1201549.46,903566.92,297982.54 Sub-Saharan Africa,Mauritius ,Cereal,Online,C,4/16/2016,917099463,5/9/2016,8966,205.70,117.11,1844306.20,1050008.26,794297.94 Asia,Bangladesh,Cereal,Online,H,6/14/2012,213198983,6/24/2012,9172,205.70,117.11,1886680.40,1074132.92,812547.48 Central America and the Caribbean,El Salvador,Vegetables,Online,M,9/20/2016,458476054,9/20/2016,2108,154.06,90.93,324758.48,191680.44,133078.04 Middle East and North Africa,Libya,Cosmetics,Offline,M,10/5/2013,370167005,11/5/2013,9497,437.20,263.33,4152088.40,2500845.01,1651243.39 Sub-Saharan Africa,Mali,Beverages,Offline,C,10/22/2015,535820662,11/20/2015,96,47.45,31.79,4555.20,3051.84,1503.36 Europe,Albania,Clothes,Offline,H,6/10/2013,263298356,7/15/2013,4689,109.28,35.84,512413.92,168053.76,344360.16 Sub-Saharan Africa,Sierra Leone,Beverages,Online,M,3/30/2017,730773913,4/27/2017,1095,47.45,31.79,51957.75,34810.05,17147.70 Sub-Saharan Africa,Ethiopia,Meat,Online,L,2/21/2016,936733663,2/21/2016,9162,421.89,364.69,3865356.18,3341289.78,524066.40 Europe,Poland,Meat,Online,C,6/24/2011,849976432,7/25/2011,5769,421.89,364.69,2433883.41,2103896.61,329986.80 Europe,Moldova ,Snacks,Offline,H,4/1/2013,959613549,4/15/2013,9829,152.58,97.44,1499708.82,957737.76,541971.06 Europe,Spain,Vegetables,Online,H,7/27/2013,925068843,8/28/2013,7283,154.06,90.93,1122018.98,662243.19,459775.79 Europe,Iceland,Snacks,Offline,H,3/13/2013,926078641,4/11/2013,6104,152.58,97.44,931348.32,594773.76,336574.56 Middle East and North Africa,Iran,Cereal,Online,C,3/4/2010,312691771,4/11/2010,1299,205.70,117.11,267204.30,152125.89,115078.41 Sub-Saharan Africa,Sudan,Meat,Offline,C,3/1/2011,755269563,3/7/2011,9902,421.89,364.69,4177554.78,3611160.38,566394.40 Sub-Saharan Africa,Togo,Snacks,Online,C,7/22/2012,394485843,8/10/2012,5982,152.58,97.44,912733.56,582886.08,329847.48 Europe,Sweden,Office Supplies,Offline,H,10/17/2011,591326940,11/10/2011,5637,651.21,524.96,3670870.77,2959199.52,711671.25 Europe,Greece,Clothes,Offline,C,3/4/2011,977091681,3/11/2011,1997,109.28,35.84,218232.16,71572.48,146659.68 Asia,Indonesia,Baby Food,Offline,M,1/19/2014,803391396,2/7/2014,222,255.28,159.42,56672.16,35391.24,21280.92 Europe,San Marino,Personal Care,Offline,C,7/1/2013,292149913,8/17/2013,2506,81.73,56.67,204815.38,142015.02,62800.36 North America,Canada,Meat,Offline,M,3/22/2011,185603559,5/4/2011,3072,421.89,364.69,1296046.08,1120327.68,175718.40 Europe,Moldova ,Snacks,Offline,C,10/9/2013,396301162,11/25/2013,3175,152.58,97.44,484441.50,309372.00,175069.50 Europe,Belarus,Household,Online,H,8/17/2013,457104051,8/26/2013,6101,668.27,502.54,4077115.27,3065996.54,1011118.73 Central America and the Caribbean,Saint Kitts and Nevis ,Snacks,Offline,L,9/8/2015,871186053,10/2/2015,2168,152.58,97.44,330793.44,211249.92,119543.52 Sub-Saharan Africa,South Africa,Cosmetics,Online,H,10/8/2010,862033498,11/22/2010,3723,437.20,263.33,1627695.60,980377.59,647318.01 Sub-Saharan Africa,Lesotho,Personal Care,Offline,C,4/5/2017,623445212,4/18/2017,148,81.73,56.67,12096.04,8387.16,3708.88 Asia,Kyrgyzstan,Meat,Offline,M,10/2/2016,869532525,11/7/2016,2852,421.89,364.69,1203230.28,1040095.88,163134.40 Sub-Saharan Africa,Lesotho,Snacks,Online,L,11/1/2010,584719264,11/9/2010,279,152.58,97.44,42569.82,27185.76,15384.06 Australia and Oceania,Australia,Snacks,Online,M,4/19/2017,173741757,5/25/2017,2902,152.58,97.44,442787.16,282770.88,160016.28 Sub-Saharan Africa,Namibia,Cereal,Offline,C,5/11/2013,111648833,5/26/2013,8226,205.70,117.11,1692088.20,963346.86,728741.34 Sub-Saharan Africa,Gabon,Beverages,Offline,C,2/25/2015,493801820,3/3/2015,5787,47.45,31.79,274593.15,183968.73,90624.42 Europe,Denmark,Clothes,Offline,L,5/19/2013,585874545,5/25/2013,2152,109.28,35.84,235170.56,77127.68,158042.88 Asia,Philippines,Personal Care,Online,H,12/16/2014,173853337,1/10/2015,5921,81.73,56.67,483923.33,335543.07,148380.26 Australia and Oceania,Papua New Guinea,Household,Offline,H,6/30/2016,914037024,7/11/2016,2722,668.27,502.54,1819030.94,1367913.88,451117.06 Sub-Saharan Africa,Ghana,Cereal,Online,M,9/6/2015,483036935,10/5/2015,218,205.70,117.11,44842.60,25529.98,19312.62 Sub-Saharan Africa,Burkina Faso,Clothes,Offline,L,1/15/2015,227776896,2/11/2015,3100,109.28,35.84,338768.00,111104.00,227664.00 Sub-Saharan Africa,Malawi,Personal Care,Online,H,8/9/2010,215493237,8/29/2010,8093,81.73,56.67,661440.89,458630.31,202810.58 Central America and the Caribbean,Honduras,Meat,Offline,M,10/27/2010,583734786,11/5/2010,8950,421.89,364.69,3775915.50,3263975.50,511940.00 Europe,Sweden,Cereal,Online,L,1/21/2010,190362870,1/31/2010,1458,205.70,117.11,299910.60,170746.38,129164.22 Middle East and North Africa,Qatar,Cosmetics,Offline,C,2/8/2015,663551318,3/8/2015,8435,437.20,263.33,3687782.00,2221188.55,1466593.45 Europe,Monaco,Fruits,Online,C,2/8/2011,551786458,3/8/2011,4730,9.33,6.92,44130.90,32731.60,11399.30 Middle East and North Africa,Iran,Snacks,Offline,C,10/8/2010,273867118,10/23/2010,2221,152.58,97.44,338880.18,216414.24,122465.94 Europe,Italy,Vegetables,Online,H,9/19/2012,768904626,9/28/2012,4820,154.06,90.93,742569.20,438282.60,304286.60 Europe,Kosovo,Fruits,Online,M,11/11/2012,346322810,11/28/2012,3470,9.33,6.92,32375.10,24012.40,8362.70 Europe,Luxembourg,Personal Care,Offline,H,10/2/2015,535857999,10/9/2015,1145,81.73,56.67,93580.85,64887.15,28693.70 Asia,North Korea,Snacks,Online,L,8/18/2015,237559020,9/26/2015,7848,152.58,97.44,1197447.84,764709.12,432738.72 Sub-Saharan Africa,Mali,Beverages,Online,L,5/20/2015,671787202,6/23/2015,5616,47.45,31.79,266479.20,178532.64,87946.56 Central America and the Caribbean,Costa Rica,Baby Food,Online,H,3/8/2015,429216372,3/9/2015,3518,255.28,159.42,898075.04,560839.56,337235.48 Asia,Turkmenistan,Baby Food,Offline,H,4/3/2016,420832860,4/18/2016,2650,255.28,159.42,676492.00,422463.00,254029.00 Central America and the Caribbean,Saint Vincent and the Grenadines,Snacks,Online,L,2/11/2017,727935492,3/20/2017,1143,152.58,97.44,174398.94,111373.92,63025.02 Middle East and North Africa,Iraq,Cosmetics,Online,M,5/3/2017,152135598,6/13/2017,9159,437.20,263.33,4004314.80,2411839.47,1592475.33 Middle East and North Africa,Jordan,Beverages,Online,C,10/9/2013,265357005,11/18/2013,3889,47.45,31.79,184533.05,123631.31,60901.74 Asia,Bhutan,Personal Care,Online,L,11/29/2011,459836041,12/9/2011,4558,81.73,56.67,372525.34,258301.86,114223.48 Europe,Iceland,Snacks,Online,L,7/11/2014,198121535,7/28/2014,7420,152.58,97.44,1132143.60,723004.80,409138.80 Sub-Saharan Africa,Zambia,Cosmetics,Offline,H,4/20/2010,363074815,5/29/2010,761,437.20,263.33,332709.20,200394.13,132315.07 Central America and the Caribbean,Panama,Baby Food,Offline,H,7/2/2015,107869708,8/11/2015,9899,255.28,159.42,2527016.72,1578098.58,948918.14 Europe,Montenegro,Personal Care,Online,L,2/25/2017,905992543,2/25/2017,2182,81.73,56.67,178334.86,123653.94,54680.92 Central America and the Caribbean,Panama,Vegetables,Online,H,9/19/2014,701242148,10/28/2014,1990,154.06,90.93,306579.40,180950.70,125628.70 Europe,Liechtenstein,Fruits,Offline,H,4/13/2016,657729852,5/18/2016,5734,9.33,6.92,53498.22,39679.28,13818.94 Europe,Croatia,Personal Care,Offline,L,1/31/2012,209879481,2/8/2012,6857,81.73,56.67,560422.61,388586.19,171836.42 Sub-Saharan Africa,Nigeria,Fruits,Offline,M,2/16/2016,212427365,3/30/2016,833,9.33,6.92,7771.89,5764.36,2007.53 Sub-Saharan Africa,Nigeria,Vegetables,Offline,C,12/24/2016,690422332,12/31/2016,166,154.06,90.93,25573.96,15094.38,10479.58 Asia,Kyrgyzstan,Meat,Offline,M,11/9/2011,389225709,12/17/2011,9392,421.89,364.69,3962390.88,3425168.48,537222.40 Central America and the Caribbean,Saint Kitts and Nevis ,Snacks,Online,L,5/21/2010,824511325,5/25/2010,78,152.58,97.44,11901.24,7600.32,4300.92 Central America and the Caribbean,Haiti,Clothes,Offline,H,9/10/2015,432265508,10/26/2015,5824,109.28,35.84,636446.72,208732.16,427714.56 Europe,Kosovo,Cereal,Offline,H,1/12/2013,418787086,2/14/2013,7260,205.70,117.11,1493382.00,850218.60,643163.40 Europe,Belarus,Vegetables,Online,C,6/14/2011,710687386,6/18/2011,7046,154.06,90.93,1085506.76,640692.78,444813.98 Asia,Cambodia,Baby Food,Online,C,4/7/2017,404890239,5/13/2017,4874,255.28,159.42,1244234.72,777013.08,467221.64 Middle East and North Africa,Azerbaijan,Vegetables,Offline,M,2/21/2015,918631970,3/9/2015,2469,154.06,90.93,380374.14,224506.17,155867.97 Sub-Saharan Africa,Central African Republic,Beverages,Offline,L,4/24/2017,139461410,5/15/2017,8585,47.45,31.79,407358.25,272917.15,134441.10 Europe,Sweden,Clothes,Online,L,5/13/2014,975239884,6/25/2014,4009,109.28,35.84,438103.52,143682.56,294420.96 Sub-Saharan Africa,Sao Tome and Principe,Fruits,Online,M,11/14/2016,104141223,11/23/2016,6557,9.33,6.92,61176.81,45374.44,15802.37 Sub-Saharan Africa,Swaziland,Fruits,Online,M,10/6/2013,124651753,10/18/2013,6079,9.33,6.92,56717.07,42066.68,14650.39 Middle East and North Africa,Bahrain,Baby Food,Offline,L,12/17/2013,105570304,1/18/2014,9454,255.28,159.42,2413417.12,1507156.68,906260.44 Asia,Sri Lanka,Cosmetics,Offline,L,4/22/2012,536008203,5/3/2012,5593,437.20,263.33,2445259.60,1472804.69,972454.91 Central America and the Caribbean,Antigua and Barbuda ,Snacks,Offline,M,1/25/2016,175389277,2/28/2016,440,152.58,97.44,67135.20,42873.60,24261.60 Middle East and North Africa,Morocco,Household,Online,M,11/7/2010,103449857,12/20/2010,1966,668.27,502.54,1313818.82,987993.64,325825.18 Middle East and North Africa,Kuwait,Meat,Online,H,6/1/2017,570238769,6/23/2017,5178,421.89,364.69,2184546.42,1888364.82,296181.60 Europe,Spain,Household,Online,C,2/23/2012,546117341,3/12/2012,7112,668.27,502.54,4752736.24,3574064.48,1178671.76 Europe,United Kingdom,Baby Food,Offline,C,2/19/2014,871759402,3/7/2014,1834,255.28,159.42,468183.52,292376.28,175807.24 North America,Canada,Snacks,Online,H,4/6/2013,208151280,4/20/2013,5444,152.58,97.44,830645.52,530463.36,300182.16 Middle East and North Africa,Lebanon,Personal Care,Online,C,10/27/2011,886591804,12/15/2011,1072,81.73,56.67,87614.56,60750.24,26864.32 Asia,Nepal,Personal Care,Online,L,3/3/2013,358692300,3/22/2013,3877,81.73,56.67,316867.21,219709.59,97157.62 Middle East and North Africa,Bahrain,Baby Food,Offline,H,5/18/2010,646376597,6/1/2010,6054,255.28,159.42,1545465.12,965128.68,580336.44 Middle East and North Africa,Tunisia ,Baby Food,Online,C,9/20/2012,691881024,10/25/2012,1825,255.28,159.42,465886.00,290941.50,174944.50 Central America and the Caribbean,Dominica,Household,Online,M,8/11/2011,407754409,9/1/2011,2446,668.27,502.54,1634588.42,1229212.84,405375.58 Europe,Belarus,Baby Food,Online,L,9/1/2014,226858079,9/25/2014,1202,255.28,159.42,306846.56,191622.84,115223.72 Sub-Saharan Africa,Swaziland,Beverages,Online,L,8/24/2011,652365863,9/30/2011,8411,47.45,31.79,399101.95,267385.69,131716.26 Sub-Saharan Africa,Kenya,Fruits,Online,M,1/31/2016,907764089,2/13/2016,6421,9.33,6.92,59907.93,44433.32,15474.61 Sub-Saharan Africa,Gabon,Snacks,Offline,M,1/28/2016,286851584,3/14/2016,4613,152.58,97.44,703851.54,449490.72,254360.82 Europe,Sweden,Cosmetics,Offline,M,12/7/2015,403739678,1/17/2016,4398,437.20,263.33,1922805.60,1158125.34,764680.26 Asia,Singapore,Cereal,Online,L,3/27/2017,242852199,5/8/2017,4217,205.70,117.11,867436.90,493852.87,373584.03 Europe,United Kingdom,Beverages,Offline,C,1/26/2015,208925473,2/1/2015,4545,47.45,31.79,215660.25,144485.55,71174.70 Asia,Taiwan,Vegetables,Online,C,12/7/2016,777008330,1/7/2017,2887,154.06,90.93,444771.22,262514.91,182256.31 Asia,Turkmenistan,Office Supplies,Online,M,4/1/2016,242462098,4/26/2016,8778,651.21,524.96,5716321.38,4608098.88,1108222.50 Middle East and North Africa,Morocco,Clothes,Offline,M,4/17/2011,570960605,5/22/2011,8786,109.28,35.84,960134.08,314890.24,645243.84 Sub-Saharan Africa,Swaziland,Fruits,Online,M,7/17/2016,648490178,8/8/2016,1509,9.33,6.92,14078.97,10442.28,3636.69 Asia,Maldives,Vegetables,Offline,C,6/23/2013,331349647,7/29/2013,2579,154.06,90.93,397320.74,234508.47,162812.27 Central America and the Caribbean,Dominica,Snacks,Offline,L,11/30/2014,896150338,1/6/2015,9654,152.58,97.44,1473007.32,940685.76,532321.56 Central America and the Caribbean,Jamaica,Baby Food,Offline,L,10/28/2015,989816081,11/23/2015,7429,255.28,159.42,1896475.12,1184331.18,712143.94 Europe,Armenia,Office Supplies,Offline,C,3/22/2012,679583203,4/10/2012,2627,651.21,524.96,1710728.67,1379069.92,331658.75 Asia,Japan,Cereal,Offline,C,7/24/2012,103000533,8/9/2012,9001,205.70,117.11,1851505.70,1054107.11,797398.59 Europe,Albania,Clothes,Offline,L,3/20/2011,817929399,4/22/2011,2340,109.28,35.84,255715.20,83865.60,171849.60 Sub-Saharan Africa,Eritrea,Cereal,Online,L,12/20/2014,852543628,1/12/2015,5460,205.70,117.11,1123122.00,639420.60,483701.40 Asia,Sri Lanka,Personal Care,Online,M,7/16/2016,555329549,7/19/2016,3209,81.73,56.67,262271.57,181854.03,80417.54 Europe,Luxembourg,Beverages,Online,H,6/27/2013,345085990,7/27/2013,7468,47.45,31.79,354356.60,237407.72,116948.88 Central America and the Caribbean,El Salvador,Vegetables,Online,M,1/6/2012,260924279,1/27/2012,2147,154.06,90.93,330766.82,195226.71,135540.11 Australia and Oceania,Samoa ,Vegetables,Online,M,8/7/2015,412268245,9/8/2015,8190,154.06,90.93,1261751.40,744716.70,517034.70 Sub-Saharan Africa,Guinea-Bissau,Cereal,Online,H,8/22/2013,528854215,9/26/2013,8569,205.70,117.11,1762643.30,1003515.59,759127.71 Central America and the Caribbean,Guatemala,Snacks,Online,M,7/15/2015,410731017,8/21/2015,3290,152.58,97.44,501988.20,320577.60,181410.60 Australia and Oceania,New Zealand,Clothes,Offline,M,8/7/2016,378259980,8/16/2016,4389,109.28,35.84,479629.92,157301.76,322328.16 Sub-Saharan Africa,Cote d'Ivoire,Snacks,Offline,L,12/30/2016,822114932,1/11/2017,932,152.58,97.44,142204.56,90814.08,51390.48 Sub-Saharan Africa,Cameroon,Baby Food,Offline,L,5/22/2010,853282201,6/11/2010,4020,255.28,159.42,1026225.60,640868.40,385357.20 Asia,Cambodia,Fruits,Offline,H,6/6/2010,553060615,7/19/2010,1781,9.33,6.92,16616.73,12324.52,4292.21 Sub-Saharan Africa,Guinea-Bissau,Fruits,Online,H,9/9/2016,523061501,9/14/2016,4377,9.33,6.92,40837.41,30288.84,10548.57 Europe,Liechtenstein,Beverages,Online,C,11/20/2010,535208690,12/11/2010,9000,47.45,31.79,427050.00,286110.00,140940.00 Middle East and North Africa,Turkey,Household,Offline,L,8/24/2013,881738507,9/10/2013,4873,668.27,502.54,3256479.71,2448877.42,807602.29 Asia,Kyrgyzstan,Fruits,Online,C,8/7/2012,125199782,8/13/2012,8253,9.33,6.92,77000.49,57110.76,19889.73 Europe,Netherlands,Cereal,Offline,L,7/31/2011,948453843,8/17/2011,7424,205.70,117.11,1527116.80,869424.64,657692.16 Europe,Luxembourg,Household,Offline,C,9/12/2011,704674518,9/29/2011,7704,668.27,502.54,5148352.08,3871568.16,1276783.92 Sub-Saharan Africa,Sudan,Fruits,Online,L,2/18/2015,867348134,3/23/2015,6442,9.33,6.92,60103.86,44578.64,15525.22 Asia,Uzbekistan,Cosmetics,Online,M,10/7/2013,280273520,11/11/2013,8018,437.20,263.33,3505469.60,2111379.94,1394089.66 Europe,Iceland,Meat,Online,L,9/12/2015,107562005,9/15/2015,8842,421.89,364.69,3730351.38,3224588.98,505762.40 Middle East and North Africa,Bahrain,Office Supplies,Offline,M,2/24/2011,683637416,3/2/2011,2358,651.21,524.96,1535553.18,1237855.68,297697.50 Australia and Oceania,Papua New Guinea,Baby Food,Offline,L,2/18/2014,163236081,3/17/2014,4039,255.28,159.42,1031075.92,643897.38,387178.54 Sub-Saharan Africa,Angola,Cereal,Online,L,3/22/2013,371406829,4/28/2013,6389,205.70,117.11,1314217.30,748215.79,566001.51 Australia and Oceania,Samoa ,Personal Care,Offline,M,3/11/2013,953510987,3/31/2013,3945,81.73,56.67,322424.85,223563.15,98861.70 Asia,South Korea,Office Supplies,Online,H,2/8/2016,725222384,3/27/2016,8274,651.21,524.96,5388111.54,4343519.04,1044592.50 Australia and Oceania,Fiji,Cereal,Offline,H,7/7/2017,822527348,7/13/2017,2976,205.70,117.11,612163.20,348519.36,263643.84 Asia,India,Vegetables,Online,L,4/2/2010,651724708,4/22/2010,8679,154.06,90.93,1337086.74,789181.47,547905.27 Central America and the Caribbean,Saint Vincent and the Grenadines,Clothes,Online,C,12/4/2010,139425790,12/30/2010,8044,109.28,35.84,879048.32,288296.96,590751.36 Europe,Spain,Clothes,Online,M,9/17/2010,182554423,11/6/2010,765,109.28,35.84,83599.20,27417.60,56181.60 Middle East and North Africa,Egypt,Clothes,Offline,L,12/29/2016,398346936,1/27/2017,8565,109.28,35.84,935983.20,306969.60,629013.60 Central America and the Caribbean,Saint Vincent and the Grenadines,Cereal,Online,L,9/20/2011,474352157,11/1/2011,199,205.70,117.11,40934.30,23304.89,17629.41 Sub-Saharan Africa,Malawi,Baby Food,Offline,M,10/4/2015,618431413,11/2/2015,6453,255.28,159.42,1647321.84,1028737.26,618584.58 Sub-Saharan Africa,Togo,Clothes,Offline,C,12/21/2016,208758533,1/8/2017,5144,109.28,35.84,562136.32,184360.96,377775.36 Asia,Nepal,Fruits,Online,L,11/11/2011,943819844,11/13/2011,6121,9.33,6.92,57108.93,42357.32,14751.61 Australia and Oceania,Fiji,Personal Care,Offline,L,12/1/2016,992414176,12/11/2016,6263,81.73,56.67,511874.99,354924.21,156950.78 Sub-Saharan Africa,Rwanda,Clothes,Offline,M,11/3/2011,843652856,12/10/2011,4483,109.28,35.84,489902.24,160670.72,329231.52 Sub-Saharan Africa,Benin,Personal Care,Offline,H,6/19/2011,156959712,7/2/2011,6722,81.73,56.67,549389.06,380935.74,168453.32 Asia,Sri Lanka,Clothes,Online,C,7/19/2016,912071073,8/22/2016,953,109.28,35.84,104143.84,34155.52,69988.32 Europe,Andorra,Cereal,Online,M,7/24/2017,659035766,8/27/2017,2183,205.70,117.11,449043.10,255651.13,193391.97 Middle East and North Africa,Iraq,Cereal,Offline,M,8/7/2013,168215119,8/14/2013,7447,205.70,117.11,1531847.90,872118.17,659729.73 Middle East and North Africa,Lebanon,Office Supplies,Online,M,3/10/2016,280282962,4/20/2016,812,651.21,524.96,528782.52,426267.52,102515.00 Central America and the Caribbean,Honduras,Office Supplies,Online,L,3/17/2015,556225621,4/19/2015,8377,651.21,524.96,5455186.17,4397589.92,1057596.25 Asia,Singapore,Household,Online,M,12/10/2012,627341926,12/28/2012,3272,668.27,502.54,2186579.44,1644310.88,542268.56 Middle East and North Africa,Oman,Fruits,Online,H,10/4/2012,645243203,11/22/2012,657,9.33,6.92,6129.81,4546.44,1583.37 Sub-Saharan Africa,Zambia,Personal Care,Offline,L,4/20/2015,831853282,4/30/2015,2727,81.73,56.67,222877.71,154539.09,68338.62 Asia,India,Household,Offline,L,9/10/2014,129408490,9/15/2014,3703,668.27,502.54,2474603.81,1860905.62,613698.19 Sub-Saharan Africa,Malawi,Household,Online,H,6/29/2017,250457656,7/23/2017,4841,668.27,502.54,3235095.07,2432796.14,802298.93 Europe,Germany,Meat,Offline,C,3/7/2016,727862107,3/24/2016,9427,421.89,364.69,3977157.03,3437932.63,539224.40 Middle East and North Africa,Lebanon,Fruits,Offline,C,8/27/2015,264795672,9/24/2015,7779,9.33,6.92,72578.07,53830.68,18747.39 Sub-Saharan Africa,Ethiopia,Meat,Online,C,4/19/2014,784744679,4/29/2014,2244,421.89,364.69,946721.16,818364.36,128356.80 Sub-Saharan Africa,Liberia,Fruits,Offline,H,5/13/2015,681507956,5/19/2015,2204,9.33,6.92,20563.32,15251.68,5311.64 Asia,Bhutan,Cereal,Online,M,8/1/2015,669196832,8/24/2015,9068,205.70,117.11,1865287.60,1061953.48,803334.12 Europe,Serbia,Personal Care,Offline,H,7/16/2016,632235133,7/19/2016,1280,81.73,56.67,104614.40,72537.60,32076.80 Middle East and North Africa,Israel,Fruits,Offline,C,4/25/2013,975359189,4/30/2013,9314,9.33,6.92,86899.62,64452.88,22446.74 Europe,Romania,Household,Online,H,5/30/2013,373617827,6/24/2013,673,668.27,502.54,449745.71,338209.42,111536.29 Central America and the Caribbean,Cuba,Cereal,Online,C,4/2/2010,722372376,4/24/2010,4894,205.70,117.11,1006695.80,573136.34,433559.46 Middle East and North Africa,Bahrain,Beverages,Online,L,4/2/2017,387296664,5/15/2017,8544,47.45,31.79,405412.80,271613.76,133799.04 Sub-Saharan Africa,Eritrea,Cosmetics,Online,H,1/12/2011,954377019,3/1/2011,223,437.20,263.33,97495.60,58722.59,38773.01 Middle East and North Africa,Syria,Cosmetics,Online,H,12/6/2010,479912269,1/12/2011,5560,437.20,263.33,2430832.00,1464114.80,966717.20 Europe,San Marino,Snacks,Offline,L,8/16/2014,240513741,9/7/2014,2216,152.58,97.44,338117.28,215927.04,122190.24 Central America and the Caribbean,Saint Kitts and Nevis ,Vegetables,Offline,H,1/28/2017,683105266,2/1/2017,4883,154.06,90.93,752274.98,444011.19,308263.79 Sub-Saharan Africa,Namibia,Office Supplies,Offline,C,4/24/2014,974923169,6/10/2014,286,651.21,524.96,186246.06,150138.56,36107.50 Europe,Vatican City,Beverages,Online,M,10/12/2014,353516280,10/12/2014,2178,47.45,31.79,103346.10,69238.62,34107.48 Asia,Philippines,Personal Care,Online,H,11/5/2012,376745927,12/8/2012,6347,81.73,56.67,518740.31,359684.49,159055.82 Europe,Cyprus,Cosmetics,Online,C,4/23/2015,872785937,6/8/2015,5609,437.20,263.33,2452254.80,1477017.97,975236.83 Sub-Saharan Africa,Rwanda,Cosmetics,Online,M,11/15/2014,390122640,11/22/2014,4813,437.20,263.33,2104243.60,1267407.29,836836.31 Sub-Saharan Africa,Republic of the Congo,Cosmetics,Offline,C,9/5/2016,247554862,9/28/2016,5840,437.20,263.33,2553248.00,1537847.20,1015400.80 Sub-Saharan Africa,Seychelles ,Office Supplies,Offline,L,10/13/2011,484193933,10/23/2011,2599,651.21,524.96,1692494.79,1364371.04,328123.75 Central America and the Caribbean,Jamaica,Personal Care,Online,L,3/26/2011,309463679,4/21/2011,6035,81.73,56.67,493240.55,342003.45,151237.10 Middle East and North Africa,Lebanon,Household,Online,H,1/2/2012,353100430,2/12/2012,9119,668.27,502.54,6093954.13,4582662.26,1511291.87 Middle East and North Africa,Pakistan,Cereal,Offline,M,12/2/2015,415153014,12/14/2015,1857,205.70,117.11,381984.90,217473.27,164511.63 Middle East and North Africa,Egypt,Clothes,Offline,M,9/19/2010,815982758,10/1/2010,6286,109.28,35.84,686934.08,225290.24,461643.84 Australia and Oceania,Kiribati,Snacks,Offline,L,9/19/2011,146263492,9/20/2011,1472,152.58,97.44,224597.76,143431.68,81166.08 Europe,Bulgaria,Cosmetics,Online,L,7/26/2012,216981542,7/28/2012,8515,437.20,263.33,3722758.00,2242254.95,1480503.05 Europe,Norway,Beverages,Offline,M,10/15/2011,209435737,11/10/2011,5543,47.45,31.79,263015.35,176211.97,86803.38 Europe,Malta,Personal Care,Online,M,7/8/2016,725237405,8/26/2016,2719,81.73,56.67,222223.87,154085.73,68138.14 Sub-Saharan Africa,Burundi,Cereal,Offline,H,1/17/2016,636310374,2/17/2016,7235,205.70,117.11,1488239.50,847290.85,640948.65 Central America and the Caribbean,Belize,Beverages,Online,C,11/9/2015,234890973,11/10/2015,8314,47.45,31.79,394499.30,264302.06,130197.24 Sub-Saharan Africa,Mauritania,Snacks,Online,M,2/23/2011,783528029,3/18/2011,2210,152.58,97.44,337201.80,215342.40,121859.40 Asia,Indonesia,Fruits,Offline,M,4/30/2013,465082871,5/25/2013,7212,9.33,6.92,67287.96,49907.04,17380.92 Middle East and North Africa,United Arab Emirates,Personal Care,Online,L,12/9/2015,232729327,12/31/2015,8635,81.73,56.67,705738.55,489345.45,216393.10 Europe,Italy,Cereal,Offline,L,8/1/2013,659953725,9/15/2013,3828,205.70,117.11,787419.60,448297.08,339122.52 Sub-Saharan Africa,Chad,Cosmetics,Online,C,4/16/2013,590554893,4/26/2013,7171,437.20,263.33,3135161.20,1888339.43,1246821.77 Europe,Lithuania,Beverages,Offline,M,8/2/2015,288644158,9/21/2015,5076,47.45,31.79,240856.20,161366.04,79490.16 Asia,Malaysia,Meat,Offline,L,9/9/2010,988645350,10/11/2010,984,421.89,364.69,415139.76,358854.96,56284.80 Middle East and North Africa,Bahrain,Beverages,Offline,H,8/12/2012,845294797,9/22/2012,370,47.45,31.79,17556.50,11762.30,5794.20 North America,Mexico,Cereal,Online,M,7/4/2017,783641326,8/18/2017,5737,205.70,117.11,1180100.90,671860.07,508240.83 Australia and Oceania,Nauru,Beverages,Offline,C,1/1/2015,449046266,2/1/2015,1624,47.45,31.79,77058.80,51626.96,25431.84 North America,Canada,Cosmetics,Offline,C,9/23/2014,457183444,10/12/2014,9596,437.20,263.33,4195371.20,2526914.68,1668456.52 Europe,Croatia,Personal Care,Online,M,3/28/2012,144039189,5/14/2012,3252,81.73,56.67,265785.96,184290.84,81495.12 Sub-Saharan Africa,Cote d'Ivoire,Snacks,Offline,L,7/7/2015,715912330,8/12/2015,3222,152.58,97.44,491612.76,313951.68,177661.08 Asia,Laos,Vegetables,Online,M,11/14/2010,299414193,12/10/2010,2168,154.06,90.93,334002.08,197136.24,136865.84 Asia,Kazakhstan,Clothes,Online,L,3/15/2012,691468608,4/25/2012,9782,109.28,35.84,1068976.96,350586.88,718390.08 Middle East and North Africa,Tunisia ,Vegetables,Offline,M,10/1/2011,609311902,10/21/2011,7787,154.06,90.93,1199665.22,708071.91,491593.31 Sub-Saharan Africa,Angola,Meat,Online,H,3/4/2014,640492904,4/14/2014,4938,421.89,364.69,2083292.82,1800839.22,282453.60 Middle East and North Africa,Bahrain,Office Supplies,Online,M,1/20/2010,992872941,3/5/2010,2022,651.21,524.96,1316746.62,1061469.12,255277.50 Asia,Brunei,Office Supplies,Offline,L,7/19/2017,144625842,7/24/2017,6855,651.21,524.96,4464044.55,3598600.80,865443.75 Europe,Greece,Vegetables,Offline,H,6/6/2010,694237935,6/26/2010,9287,154.06,90.93,1430755.22,844466.91,586288.31 Sub-Saharan Africa,Ghana,Office Supplies,Online,C,10/9/2012,810508048,10/26/2012,6198,651.21,524.96,4036199.58,3253702.08,782497.50 Central America and the Caribbean,Saint Lucia,Meat,Offline,M,11/4/2011,982547509,12/15/2011,6497,421.89,364.69,2741019.33,2369390.93,371628.40 Sub-Saharan Africa,Rwanda,Office Supplies,Online,H,11/27/2014,869780147,12/18/2014,6129,651.21,524.96,3991266.09,3217479.84,773786.25 Asia,Laos,Beverages,Offline,C,2/24/2015,651942288,2/28/2015,3066,47.45,31.79,145481.70,97468.14,48013.56 Europe,Moldova ,Snacks,Offline,H,8/10/2010,579082763,9/2/2010,2313,152.58,97.44,352917.54,225378.72,127538.82 Australia and Oceania,East Timor,Household,Online,C,7/12/2015,521562898,8/6/2015,907,668.27,502.54,606120.89,455803.78,150317.11 Australia and Oceania,Marshall Islands,Baby Food,Offline,C,2/22/2011,420056521,4/8/2011,2914,255.28,159.42,743885.92,464549.88,279336.04 Sub-Saharan Africa,Guinea,Fruits,Online,H,1/18/2010,735549962,2/16/2010,4434,9.33,6.92,41369.22,30683.28,10685.94 Asia,Laos,Beverages,Online,H,7/15/2014,199342048,7/31/2014,8597,47.45,31.79,407927.65,273298.63,134629.02 Europe,Liechtenstein,Cosmetics,Online,C,10/27/2012,763044106,11/1/2012,562,437.20,263.33,245706.40,147991.46,97714.94 Sub-Saharan Africa,Democratic Republic of the Congo,Vegetables,Offline,M,2/14/2013,848579967,3/20/2013,2524,154.06,90.93,388847.44,229507.32,159340.12 Sub-Saharan Africa,South Africa,Meat,Online,L,2/19/2017,298185956,2/22/2017,8706,421.89,364.69,3672974.34,3174991.14,497983.20 Asia,Mongolia,Snacks,Offline,M,4/12/2016,824410903,4/16/2016,361,152.58,97.44,55081.38,35175.84,19905.54 jc-1.17.3/tests/fixtures/generic/csv-biostats-streaming.json000066400000000000000000000025531415226333200241370ustar00rootroot00000000000000[{"Name":"Alex","Sex":"M","Age":"41","Height (in)":"74","Weight (lbs)":"170"},{"Name":"Bert","Sex":"M","Age":"42","Height (in)":"68","Weight (lbs)":"166"},{"Name":"Carl","Sex":"M","Age":"32","Height (in)":"70","Weight (lbs)":"155"},{"Name":"Dave","Sex":"M","Age":"39","Height (in)":"72","Weight (lbs)":"167"},{"Name":"Elly","Sex":"F","Age":"30","Height (in)":"66","Weight (lbs)":"124"},{"Name":"Fran","Sex":"F","Age":"33","Height (in)":"66","Weight (lbs)":"115"},{"Name":"Gwen","Sex":"F","Age":"26","Height (in)":"64","Weight (lbs)":"121"},{"Name":"Hank","Sex":"M","Age":"30","Height (in)":"71","Weight (lbs)":"158"},{"Name":"Ivan","Sex":"M","Age":"53","Height (in)":"72","Weight (lbs)":"175"},{"Name":"Jake","Sex":"M","Age":"32","Height (in)":"69","Weight (lbs)":"143"},{"Name":"Kate","Sex":"F","Age":"47","Height (in)":"69","Weight (lbs)":"139"},{"Name":"Luke","Sex":"M","Age":"34","Height (in)":"72","Weight (lbs)":"163"},{"Name":"Myra","Sex":"F","Age":"23","Height (in)":"62","Weight (lbs)":"98"},{"Name":"Neil","Sex":"M","Age":"36","Height (in)":"75","Weight (lbs)":"160"},{"Name":"Omar","Sex":"M","Age":"38","Height (in)":"70","Weight (lbs)":"145"},{"Name":"Page","Sex":"F","Age":"31","Height (in)":"67","Weight (lbs)":"135"},{"Name":"Quin","Sex":"M","Age":"29","Height (in)":"71","Weight (lbs)":"176"},{"Name":"Ruth","Sex":"F","Age":"28","Height (in)":"65","Weight (lbs)":"131"}] jc-1.17.3/tests/fixtures/generic/csv-biostats.csv000066400000000000000000000015211415226333200217640ustar00rootroot00000000000000"Name", "Sex", "Age", "Height (in)", "Weight (lbs)" "Alex", "M", 41, 74, 170 "Bert", "M", 42, 68, 166 "Carl", "M", 32, 70, 155 "Dave", "M", 39, 72, 167 "Elly", "F", 30, 66, 124 "Fran", "F", 33, 66, 115 "Gwen", "F", 26, 64, 121 "Hank", "M", 30, 71, 158 "Ivan", "M", 53, 72, 175 "Jake", "M", 32, 69, 143 "Kate", "F", 47, 69, 139 "Luke", "M", 34, 72, 163 "Myra", "F", 23, 62, 98 "Neil", "M", 36, 75, 160 "Omar", "M", 38, 70, 145 "Page", "F", 31, 67, 135 "Quin", "M", 29, 71, 176 "Ruth", "F", 28, 65, 131 jc-1.17.3/tests/fixtures/generic/csv-biostats.json000066400000000000000000000030361415226333200221450ustar00rootroot00000000000000[{"Name": "Alex", "Sex": "M", "Age": "41", "Height (in)": "74", "Weight (lbs)": "170"}, {"Name": "Bert", "Sex": "M", "Age": "42", "Height (in)": "68", "Weight (lbs)": "166"}, {"Name": "Carl", "Sex": "M", "Age": "32", "Height (in)": "70", "Weight (lbs)": "155"}, {"Name": "Dave", "Sex": "M", "Age": "39", "Height (in)": "72", "Weight (lbs)": "167"}, {"Name": "Elly", "Sex": "F", "Age": "30", "Height (in)": "66", "Weight (lbs)": "124"}, {"Name": "Fran", "Sex": "F", "Age": "33", "Height (in)": "66", "Weight (lbs)": "115"}, {"Name": "Gwen", "Sex": "F", "Age": "26", "Height (in)": "64", "Weight (lbs)": "121"}, {"Name": "Hank", "Sex": "M", "Age": "30", "Height (in)": "71", "Weight (lbs)": "158"}, {"Name": "Ivan", "Sex": "M", "Age": "53", "Height (in)": "72", "Weight (lbs)": "175"}, {"Name": "Jake", "Sex": "M", "Age": "32", "Height (in)": "69", "Weight (lbs)": "143"}, {"Name": "Kate", "Sex": "F", "Age": "47", "Height (in)": "69", "Weight (lbs)": "139"}, {"Name": "Luke", "Sex": "M", "Age": "34", "Height (in)": "72", "Weight (lbs)": "163"}, {"Name": "Myra", "Sex": "F", "Age": "23", "Height (in)": "62", "Weight (lbs)": "98"}, {"Name": "Neil", "Sex": "M", "Age": "36", "Height (in)": "75", "Weight (lbs)": "160"}, {"Name": "Omar", "Sex": "M", "Age": "38", "Height (in)": "70", "Weight (lbs)": "145"}, {"Name": "Page", "Sex": "F", "Age": "31", "Height (in)": "67", "Weight (lbs)": "135"}, {"Name": "Quin", "Sex": "M", "Age": "29", "Height (in)": "71", "Weight (lbs)": "176"}, {"Name": "Ruth", "Sex": "F", "Age": "28", "Height (in)": "65", "Weight (lbs)": "131"}] jc-1.17.3/tests/fixtures/generic/csv-cities-streaming.json000066400000000000000000000367371415226333200236020ustar00rootroot00000000000000[{"LatD":"41","LatM":"5","LatS":"59","NS":"N","LonD":"80","LonM":"39","LonS":"0","EW":"W","City":"Youngstown","State":"OH"},{"LatD":"42","LatM":"52","LatS":"48","NS":"N","LonD":"97","LonM":"23","LonS":"23","EW":"W","City":"Yankton","State":"SD"},{"LatD":"46","LatM":"35","LatS":"59","NS":"N","LonD":"120","LonM":"30","LonS":"36","EW":"W","City":"Yakima","State":"WA"},{"LatD":"42","LatM":"16","LatS":"12","NS":"N","LonD":"71","LonM":"48","LonS":"0","EW":"W","City":"Worcester","State":"MA"},{"LatD":"43","LatM":"37","LatS":"48","NS":"N","LonD":"89","LonM":"46","LonS":"11","EW":"W","City":"Wisconsin Dells","State":"WI"},{"LatD":"36","LatM":"5","LatS":"59","NS":"N","LonD":"80","LonM":"15","LonS":"0","EW":"W","City":"Winston-Salem","State":"NC"},{"LatD":"49","LatM":"52","LatS":"48","NS":"N","LonD":"97","LonM":"9","LonS":"0","EW":"W","City":"Winnipeg","State":"MB"},{"LatD":"39","LatM":"11","LatS":"23","NS":"N","LonD":"78","LonM":"9","LonS":"36","EW":"W","City":"Winchester","State":"VA"},{"LatD":"34","LatM":"14","LatS":"24","NS":"N","LonD":"77","LonM":"55","LonS":"11","EW":"W","City":"Wilmington","State":"NC"},{"LatD":"39","LatM":"45","LatS":"0","NS":"N","LonD":"75","LonM":"33","LonS":"0","EW":"W","City":"Wilmington","State":"DE"},{"LatD":"48","LatM":"9","LatS":"0","NS":"N","LonD":"103","LonM":"37","LonS":"12","EW":"W","City":"Williston","State":"ND"},{"LatD":"41","LatM":"15","LatS":"0","NS":"N","LonD":"77","LonM":"0","LonS":"0","EW":"W","City":"Williamsport","State":"PA"},{"LatD":"37","LatM":"40","LatS":"48","NS":"N","LonD":"82","LonM":"16","LonS":"47","EW":"W","City":"Williamson","State":"WV"},{"LatD":"33","LatM":"54","LatS":"0","NS":"N","LonD":"98","LonM":"29","LonS":"23","EW":"W","City":"Wichita Falls","State":"TX"},{"LatD":"37","LatM":"41","LatS":"23","NS":"N","LonD":"97","LonM":"20","LonS":"23","EW":"W","City":"Wichita","State":"KS"},{"LatD":"40","LatM":"4","LatS":"11","NS":"N","LonD":"80","LonM":"43","LonS":"12","EW":"W","City":"Wheeling","State":"WV"},{"LatD":"26","LatM":"43","LatS":"11","NS":"N","LonD":"80","LonM":"3","LonS":"0","EW":"W","City":"West Palm Beach","State":"FL"},{"LatD":"47","LatM":"25","LatS":"11","NS":"N","LonD":"120","LonM":"19","LonS":"11","EW":"W","City":"Wenatchee","State":"WA"},{"LatD":"41","LatM":"25","LatS":"11","NS":"N","LonD":"122","LonM":"23","LonS":"23","EW":"W","City":"Weed","State":"CA"},{"LatD":"31","LatM":"13","LatS":"11","NS":"N","LonD":"82","LonM":"20","LonS":"59","EW":"W","City":"Waycross","State":"GA"},{"LatD":"44","LatM":"57","LatS":"35","NS":"N","LonD":"89","LonM":"38","LonS":"23","EW":"W","City":"Wausau","State":"WI"},{"LatD":"42","LatM":"21","LatS":"36","NS":"N","LonD":"87","LonM":"49","LonS":"48","EW":"W","City":"Waukegan","State":"IL"},{"LatD":"44","LatM":"54","LatS":"0","NS":"N","LonD":"97","LonM":"6","LonS":"36","EW":"W","City":"Watertown","State":"SD"},{"LatD":"43","LatM":"58","LatS":"47","NS":"N","LonD":"75","LonM":"55","LonS":"11","EW":"W","City":"Watertown","State":"NY"},{"LatD":"42","LatM":"30","LatS":"0","NS":"N","LonD":"92","LonM":"20","LonS":"23","EW":"W","City":"Waterloo","State":"IA"},{"LatD":"41","LatM":"32","LatS":"59","NS":"N","LonD":"73","LonM":"3","LonS":"0","EW":"W","City":"Waterbury","State":"CT"},{"LatD":"38","LatM":"53","LatS":"23","NS":"N","LonD":"77","LonM":"1","LonS":"47","EW":"W","City":"Washington","State":"DC"},{"LatD":"41","LatM":"50","LatS":"59","NS":"N","LonD":"79","LonM":"8","LonS":"23","EW":"W","City":"Warren","State":"PA"},{"LatD":"46","LatM":"4","LatS":"11","NS":"N","LonD":"118","LonM":"19","LonS":"48","EW":"W","City":"Walla Walla","State":"WA"},{"LatD":"31","LatM":"32","LatS":"59","NS":"N","LonD":"97","LonM":"8","LonS":"23","EW":"W","City":"Waco","State":"TX"},{"LatD":"38","LatM":"40","LatS":"48","NS":"N","LonD":"87","LonM":"31","LonS":"47","EW":"W","City":"Vincennes","State":"IN"},{"LatD":"28","LatM":"48","LatS":"35","NS":"N","LonD":"97","LonM":"0","LonS":"36","EW":"W","City":"Victoria","State":"TX"},{"LatD":"32","LatM":"20","LatS":"59","NS":"N","LonD":"90","LonM":"52","LonS":"47","EW":"W","City":"Vicksburg","State":"MS"},{"LatD":"49","LatM":"16","LatS":"12","NS":"N","LonD":"123","LonM":"7","LonS":"12","EW":"W","City":"Vancouver","State":"BC"},{"LatD":"46","LatM":"55","LatS":"11","NS":"N","LonD":"98","LonM":"0","LonS":"36","EW":"W","City":"Valley City","State":"ND"},{"LatD":"30","LatM":"49","LatS":"47","NS":"N","LonD":"83","LonM":"16","LonS":"47","EW":"W","City":"Valdosta","State":"GA"},{"LatD":"43","LatM":"6","LatS":"36","NS":"N","LonD":"75","LonM":"13","LonS":"48","EW":"W","City":"Utica","State":"NY"},{"LatD":"39","LatM":"54","LatS":"0","NS":"N","LonD":"79","LonM":"43","LonS":"48","EW":"W","City":"Uniontown","State":"PA"},{"LatD":"32","LatM":"20","LatS":"59","NS":"N","LonD":"95","LonM":"18","LonS":"0","EW":"W","City":"Tyler","State":"TX"},{"LatD":"42","LatM":"33","LatS":"36","NS":"N","LonD":"114","LonM":"28","LonS":"12","EW":"W","City":"Twin Falls","State":"ID"},{"LatD":"33","LatM":"12","LatS":"35","NS":"N","LonD":"87","LonM":"34","LonS":"11","EW":"W","City":"Tuscaloosa","State":"AL"},{"LatD":"34","LatM":"15","LatS":"35","NS":"N","LonD":"88","LonM":"42","LonS":"35","EW":"W","City":"Tupelo","State":"MS"},{"LatD":"36","LatM":"9","LatS":"35","NS":"N","LonD":"95","LonM":"54","LonS":"36","EW":"W","City":"Tulsa","State":"OK"},{"LatD":"32","LatM":"13","LatS":"12","NS":"N","LonD":"110","LonM":"58","LonS":"12","EW":"W","City":"Tucson","State":"AZ"},{"LatD":"37","LatM":"10","LatS":"11","NS":"N","LonD":"104","LonM":"30","LonS":"36","EW":"W","City":"Trinidad","State":"CO"},{"LatD":"40","LatM":"13","LatS":"47","NS":"N","LonD":"74","LonM":"46","LonS":"11","EW":"W","City":"Trenton","State":"NJ"},{"LatD":"44","LatM":"45","LatS":"35","NS":"N","LonD":"85","LonM":"37","LonS":"47","EW":"W","City":"Traverse City","State":"MI"},{"LatD":"43","LatM":"39","LatS":"0","NS":"N","LonD":"79","LonM":"22","LonS":"47","EW":"W","City":"Toronto","State":"ON"},{"LatD":"39","LatM":"2","LatS":"59","NS":"N","LonD":"95","LonM":"40","LonS":"11","EW":"W","City":"Topeka","State":"KS"},{"LatD":"41","LatM":"39","LatS":"0","NS":"N","LonD":"83","LonM":"32","LonS":"24","EW":"W","City":"Toledo","State":"OH"},{"LatD":"33","LatM":"25","LatS":"48","NS":"N","LonD":"94","LonM":"3","LonS":"0","EW":"W","City":"Texarkana","State":"TX"},{"LatD":"39","LatM":"28","LatS":"12","NS":"N","LonD":"87","LonM":"24","LonS":"36","EW":"W","City":"Terre Haute","State":"IN"},{"LatD":"27","LatM":"57","LatS":"0","NS":"N","LonD":"82","LonM":"26","LonS":"59","EW":"W","City":"Tampa","State":"FL"},{"LatD":"30","LatM":"27","LatS":"0","NS":"N","LonD":"84","LonM":"16","LonS":"47","EW":"W","City":"Tallahassee","State":"FL"},{"LatD":"47","LatM":"14","LatS":"24","NS":"N","LonD":"122","LonM":"25","LonS":"48","EW":"W","City":"Tacoma","State":"WA"},{"LatD":"43","LatM":"2","LatS":"59","NS":"N","LonD":"76","LonM":"9","LonS":"0","EW":"W","City":"Syracuse","State":"NY"},{"LatD":"32","LatM":"35","LatS":"59","NS":"N","LonD":"82","LonM":"20","LonS":"23","EW":"W","City":"Swainsboro","State":"GA"},{"LatD":"33","LatM":"55","LatS":"11","NS":"N","LonD":"80","LonM":"20","LonS":"59","EW":"W","City":"Sumter","State":"SC"},{"LatD":"40","LatM":"59","LatS":"24","NS":"N","LonD":"75","LonM":"11","LonS":"24","EW":"W","City":"Stroudsburg","State":"PA"},{"LatD":"37","LatM":"57","LatS":"35","NS":"N","LonD":"121","LonM":"17","LonS":"24","EW":"W","City":"Stockton","State":"CA"},{"LatD":"44","LatM":"31","LatS":"12","NS":"N","LonD":"89","LonM":"34","LonS":"11","EW":"W","City":"Stevens Point","State":"WI"},{"LatD":"40","LatM":"21","LatS":"36","NS":"N","LonD":"80","LonM":"37","LonS":"12","EW":"W","City":"Steubenville","State":"OH"},{"LatD":"40","LatM":"37","LatS":"11","NS":"N","LonD":"103","LonM":"13","LonS":"12","EW":"W","City":"Sterling","State":"CO"},{"LatD":"38","LatM":"9","LatS":"0","NS":"N","LonD":"79","LonM":"4","LonS":"11","EW":"W","City":"Staunton","State":"VA"},{"LatD":"39","LatM":"55","LatS":"11","NS":"N","LonD":"83","LonM":"48","LonS":"35","EW":"W","City":"Springfield","State":"OH"},{"LatD":"37","LatM":"13","LatS":"12","NS":"N","LonD":"93","LonM":"17","LonS":"24","EW":"W","City":"Springfield","State":"MO"},{"LatD":"42","LatM":"5","LatS":"59","NS":"N","LonD":"72","LonM":"35","LonS":"23","EW":"W","City":"Springfield","State":"MA"},{"LatD":"39","LatM":"47","LatS":"59","NS":"N","LonD":"89","LonM":"39","LonS":"0","EW":"W","City":"Springfield","State":"IL"},{"LatD":"47","LatM":"40","LatS":"11","NS":"N","LonD":"117","LonM":"24","LonS":"36","EW":"W","City":"Spokane","State":"WA"},{"LatD":"41","LatM":"40","LatS":"48","NS":"N","LonD":"86","LonM":"15","LonS":"0","EW":"W","City":"South Bend","State":"IN"},{"LatD":"43","LatM":"32","LatS":"24","NS":"N","LonD":"96","LonM":"43","LonS":"48","EW":"W","City":"Sioux Falls","State":"SD"},{"LatD":"42","LatM":"29","LatS":"24","NS":"N","LonD":"96","LonM":"23","LonS":"23","EW":"W","City":"Sioux City","State":"IA"},{"LatD":"32","LatM":"30","LatS":"35","NS":"N","LonD":"93","LonM":"45","LonS":"0","EW":"W","City":"Shreveport","State":"LA"},{"LatD":"33","LatM":"38","LatS":"23","NS":"N","LonD":"96","LonM":"36","LonS":"36","EW":"W","City":"Sherman","State":"TX"},{"LatD":"44","LatM":"47","LatS":"59","NS":"N","LonD":"106","LonM":"57","LonS":"35","EW":"W","City":"Sheridan","State":"WY"},{"LatD":"35","LatM":"13","LatS":"47","NS":"N","LonD":"96","LonM":"40","LonS":"48","EW":"W","City":"Seminole","State":"OK"},{"LatD":"32","LatM":"25","LatS":"11","NS":"N","LonD":"87","LonM":"1","LonS":"11","EW":"W","City":"Selma","State":"AL"},{"LatD":"38","LatM":"42","LatS":"35","NS":"N","LonD":"93","LonM":"13","LonS":"48","EW":"W","City":"Sedalia","State":"MO"},{"LatD":"47","LatM":"35","LatS":"59","NS":"N","LonD":"122","LonM":"19","LonS":"48","EW":"W","City":"Seattle","State":"WA"},{"LatD":"41","LatM":"24","LatS":"35","NS":"N","LonD":"75","LonM":"40","LonS":"11","EW":"W","City":"Scranton","State":"PA"},{"LatD":"41","LatM":"52","LatS":"11","NS":"N","LonD":"103","LonM":"39","LonS":"36","EW":"W","City":"Scottsbluff","State":"NB"},{"LatD":"42","LatM":"49","LatS":"11","NS":"N","LonD":"73","LonM":"56","LonS":"59","EW":"W","City":"Schenectady","State":"NY"},{"LatD":"32","LatM":"4","LatS":"48","NS":"N","LonD":"81","LonM":"5","LonS":"23","EW":"W","City":"Savannah","State":"GA"},{"LatD":"46","LatM":"29","LatS":"24","NS":"N","LonD":"84","LonM":"20","LonS":"59","EW":"W","City":"Sault Sainte Marie","State":"MI"},{"LatD":"27","LatM":"20","LatS":"24","NS":"N","LonD":"82","LonM":"31","LonS":"47","EW":"W","City":"Sarasota","State":"FL"},{"LatD":"38","LatM":"26","LatS":"23","NS":"N","LonD":"122","LonM":"43","LonS":"12","EW":"W","City":"Santa Rosa","State":"CA"},{"LatD":"35","LatM":"40","LatS":"48","NS":"N","LonD":"105","LonM":"56","LonS":"59","EW":"W","City":"Santa Fe","State":"NM"},{"LatD":"34","LatM":"25","LatS":"11","NS":"N","LonD":"119","LonM":"41","LonS":"59","EW":"W","City":"Santa Barbara","State":"CA"},{"LatD":"33","LatM":"45","LatS":"35","NS":"N","LonD":"117","LonM":"52","LonS":"12","EW":"W","City":"Santa Ana","State":"CA"},{"LatD":"37","LatM":"20","LatS":"24","NS":"N","LonD":"121","LonM":"52","LonS":"47","EW":"W","City":"San Jose","State":"CA"},{"LatD":"37","LatM":"46","LatS":"47","NS":"N","LonD":"122","LonM":"25","LonS":"11","EW":"W","City":"San Francisco","State":"CA"},{"LatD":"41","LatM":"27","LatS":"0","NS":"N","LonD":"82","LonM":"42","LonS":"35","EW":"W","City":"Sandusky","State":"OH"},{"LatD":"32","LatM":"42","LatS":"35","NS":"N","LonD":"117","LonM":"9","LonS":"0","EW":"W","City":"San Diego","State":"CA"},{"LatD":"34","LatM":"6","LatS":"36","NS":"N","LonD":"117","LonM":"18","LonS":"35","EW":"W","City":"San Bernardino","State":"CA"},{"LatD":"29","LatM":"25","LatS":"12","NS":"N","LonD":"98","LonM":"30","LonS":"0","EW":"W","City":"San Antonio","State":"TX"},{"LatD":"31","LatM":"27","LatS":"35","NS":"N","LonD":"100","LonM":"26","LonS":"24","EW":"W","City":"San Angelo","State":"TX"},{"LatD":"40","LatM":"45","LatS":"35","NS":"N","LonD":"111","LonM":"52","LonS":"47","EW":"W","City":"Salt Lake City","State":"UT"},{"LatD":"38","LatM":"22","LatS":"11","NS":"N","LonD":"75","LonM":"35","LonS":"59","EW":"W","City":"Salisbury","State":"MD"},{"LatD":"36","LatM":"40","LatS":"11","NS":"N","LonD":"121","LonM":"39","LonS":"0","EW":"W","City":"Salinas","State":"CA"},{"LatD":"38","LatM":"50","LatS":"24","NS":"N","LonD":"97","LonM":"36","LonS":"36","EW":"W","City":"Salina","State":"KS"},{"LatD":"38","LatM":"31","LatS":"47","NS":"N","LonD":"106","LonM":"0","LonS":"0","EW":"W","City":"Salida","State":"CO"},{"LatD":"44","LatM":"56","LatS":"23","NS":"N","LonD":"123","LonM":"1","LonS":"47","EW":"W","City":"Salem","State":"OR"},{"LatD":"44","LatM":"57","LatS":"0","NS":"N","LonD":"93","LonM":"5","LonS":"59","EW":"W","City":"Saint Paul","State":"MN"},{"LatD":"38","LatM":"37","LatS":"11","NS":"N","LonD":"90","LonM":"11","LonS":"24","EW":"W","City":"Saint Louis","State":"MO"},{"LatD":"39","LatM":"46","LatS":"12","NS":"N","LonD":"94","LonM":"50","LonS":"23","EW":"W","City":"Saint Joseph","State":"MO"},{"LatD":"42","LatM":"5","LatS":"59","NS":"N","LonD":"86","LonM":"28","LonS":"48","EW":"W","City":"Saint Joseph","State":"MI"},{"LatD":"44","LatM":"25","LatS":"11","NS":"N","LonD":"72","LonM":"1","LonS":"11","EW":"W","City":"Saint Johnsbury","State":"VT"},{"LatD":"45","LatM":"34","LatS":"11","NS":"N","LonD":"94","LonM":"10","LonS":"11","EW":"W","City":"Saint Cloud","State":"MN"},{"LatD":"29","LatM":"53","LatS":"23","NS":"N","LonD":"81","LonM":"19","LonS":"11","EW":"W","City":"Saint Augustine","State":"FL"},{"LatD":"43","LatM":"25","LatS":"48","NS":"N","LonD":"83","LonM":"56","LonS":"24","EW":"W","City":"Saginaw","State":"MI"},{"LatD":"38","LatM":"35","LatS":"24","NS":"N","LonD":"121","LonM":"29","LonS":"23","EW":"W","City":"Sacramento","State":"CA"},{"LatD":"43","LatM":"36","LatS":"36","NS":"N","LonD":"72","LonM":"58","LonS":"12","EW":"W","City":"Rutland","State":"VT"},{"LatD":"33","LatM":"24","LatS":"0","NS":"N","LonD":"104","LonM":"31","LonS":"47","EW":"W","City":"Roswell","State":"NM"},{"LatD":"35","LatM":"56","LatS":"23","NS":"N","LonD":"77","LonM":"48","LonS":"0","EW":"W","City":"Rocky Mount","State":"NC"},{"LatD":"41","LatM":"35","LatS":"24","NS":"N","LonD":"109","LonM":"13","LonS":"48","EW":"W","City":"Rock Springs","State":"WY"},{"LatD":"42","LatM":"16","LatS":"12","NS":"N","LonD":"89","LonM":"5","LonS":"59","EW":"W","City":"Rockford","State":"IL"},{"LatD":"43","LatM":"9","LatS":"35","NS":"N","LonD":"77","LonM":"36","LonS":"36","EW":"W","City":"Rochester","State":"NY"},{"LatD":"44","LatM":"1","LatS":"12","NS":"N","LonD":"92","LonM":"27","LonS":"35","EW":"W","City":"Rochester","State":"MN"},{"LatD":"37","LatM":"16","LatS":"12","NS":"N","LonD":"79","LonM":"56","LonS":"24","EW":"W","City":"Roanoke","State":"VA"},{"LatD":"37","LatM":"32","LatS":"24","NS":"N","LonD":"77","LonM":"26","LonS":"59","EW":"W","City":"Richmond","State":"VA"},{"LatD":"39","LatM":"49","LatS":"48","NS":"N","LonD":"84","LonM":"53","LonS":"23","EW":"W","City":"Richmond","State":"IN"},{"LatD":"38","LatM":"46","LatS":"12","NS":"N","LonD":"112","LonM":"5","LonS":"23","EW":"W","City":"Richfield","State":"UT"},{"LatD":"45","LatM":"38","LatS":"23","NS":"N","LonD":"89","LonM":"25","LonS":"11","EW":"W","City":"Rhinelander","State":"WI"},{"LatD":"39","LatM":"31","LatS":"12","NS":"N","LonD":"119","LonM":"48","LonS":"35","EW":"W","City":"Reno","State":"NV"},{"LatD":"50","LatM":"25","LatS":"11","NS":"N","LonD":"104","LonM":"39","LonS":"0","EW":"W","City":"Regina","State":"SA"},{"LatD":"40","LatM":"10","LatS":"48","NS":"N","LonD":"122","LonM":"14","LonS":"23","EW":"W","City":"Red Bluff","State":"CA"},{"LatD":"40","LatM":"19","LatS":"48","NS":"N","LonD":"75","LonM":"55","LonS":"48","EW":"W","City":"Reading","State":"PA"},{"LatD":"41","LatM":"9","LatS":"35","NS":"N","LonD":"81","LonM":"14","LonS":"23","EW":"W","City":"Ravenna","State":"OH "}] jc-1.17.3/tests/fixtures/generic/csv-cities.csv000066400000000000000000000203221415226333200214140ustar00rootroot00000000000000"LatD", "LatM", "LatS", "NS", "LonD", "LonM", "LonS", "EW", "City", "State" 41, 5, 59, "N", 80, 39, 0, "W", "Youngstown", OH 42, 52, 48, "N", 97, 23, 23, "W", "Yankton", SD 46, 35, 59, "N", 120, 30, 36, "W", "Yakima", WA 42, 16, 12, "N", 71, 48, 0, "W", "Worcester", MA 43, 37, 48, "N", 89, 46, 11, "W", "Wisconsin Dells", WI 36, 5, 59, "N", 80, 15, 0, "W", "Winston-Salem", NC 49, 52, 48, "N", 97, 9, 0, "W", "Winnipeg", MB 39, 11, 23, "N", 78, 9, 36, "W", "Winchester", VA 34, 14, 24, "N", 77, 55, 11, "W", "Wilmington", NC 39, 45, 0, "N", 75, 33, 0, "W", "Wilmington", DE 48, 9, 0, "N", 103, 37, 12, "W", "Williston", ND 41, 15, 0, "N", 77, 0, 0, "W", "Williamsport", PA 37, 40, 48, "N", 82, 16, 47, "W", "Williamson", WV 33, 54, 0, "N", 98, 29, 23, "W", "Wichita Falls", TX 37, 41, 23, "N", 97, 20, 23, "W", "Wichita", KS 40, 4, 11, "N", 80, 43, 12, "W", "Wheeling", WV 26, 43, 11, "N", 80, 3, 0, "W", "West Palm Beach", FL 47, 25, 11, "N", 120, 19, 11, "W", "Wenatchee", WA 41, 25, 11, "N", 122, 23, 23, "W", "Weed", CA 31, 13, 11, "N", 82, 20, 59, "W", "Waycross", GA 44, 57, 35, "N", 89, 38, 23, "W", "Wausau", WI 42, 21, 36, "N", 87, 49, 48, "W", "Waukegan", IL 44, 54, 0, "N", 97, 6, 36, "W", "Watertown", SD 43, 58, 47, "N", 75, 55, 11, "W", "Watertown", NY 42, 30, 0, "N", 92, 20, 23, "W", "Waterloo", IA 41, 32, 59, "N", 73, 3, 0, "W", "Waterbury", CT 38, 53, 23, "N", 77, 1, 47, "W", "Washington", DC 41, 50, 59, "N", 79, 8, 23, "W", "Warren", PA 46, 4, 11, "N", 118, 19, 48, "W", "Walla Walla", WA 31, 32, 59, "N", 97, 8, 23, "W", "Waco", TX 38, 40, 48, "N", 87, 31, 47, "W", "Vincennes", IN 28, 48, 35, "N", 97, 0, 36, "W", "Victoria", TX 32, 20, 59, "N", 90, 52, 47, "W", "Vicksburg", MS 49, 16, 12, "N", 123, 7, 12, "W", "Vancouver", BC 46, 55, 11, "N", 98, 0, 36, "W", "Valley City", ND 30, 49, 47, "N", 83, 16, 47, "W", "Valdosta", GA 43, 6, 36, "N", 75, 13, 48, "W", "Utica", NY 39, 54, 0, "N", 79, 43, 48, "W", "Uniontown", PA 32, 20, 59, "N", 95, 18, 0, "W", "Tyler", TX 42, 33, 36, "N", 114, 28, 12, "W", "Twin Falls", ID 33, 12, 35, "N", 87, 34, 11, "W", "Tuscaloosa", AL 34, 15, 35, "N", 88, 42, 35, "W", "Tupelo", MS 36, 9, 35, "N", 95, 54, 36, "W", "Tulsa", OK 32, 13, 12, "N", 110, 58, 12, "W", "Tucson", AZ 37, 10, 11, "N", 104, 30, 36, "W", "Trinidad", CO 40, 13, 47, "N", 74, 46, 11, "W", "Trenton", NJ 44, 45, 35, "N", 85, 37, 47, "W", "Traverse City", MI 43, 39, 0, "N", 79, 22, 47, "W", "Toronto", ON 39, 2, 59, "N", 95, 40, 11, "W", "Topeka", KS 41, 39, 0, "N", 83, 32, 24, "W", "Toledo", OH 33, 25, 48, "N", 94, 3, 0, "W", "Texarkana", TX 39, 28, 12, "N", 87, 24, 36, "W", "Terre Haute", IN 27, 57, 0, "N", 82, 26, 59, "W", "Tampa", FL 30, 27, 0, "N", 84, 16, 47, "W", "Tallahassee", FL 47, 14, 24, "N", 122, 25, 48, "W", "Tacoma", WA 43, 2, 59, "N", 76, 9, 0, "W", "Syracuse", NY 32, 35, 59, "N", 82, 20, 23, "W", "Swainsboro", GA 33, 55, 11, "N", 80, 20, 59, "W", "Sumter", SC 40, 59, 24, "N", 75, 11, 24, "W", "Stroudsburg", PA 37, 57, 35, "N", 121, 17, 24, "W", "Stockton", CA 44, 31, 12, "N", 89, 34, 11, "W", "Stevens Point", WI 40, 21, 36, "N", 80, 37, 12, "W", "Steubenville", OH 40, 37, 11, "N", 103, 13, 12, "W", "Sterling", CO 38, 9, 0, "N", 79, 4, 11, "W", "Staunton", VA 39, 55, 11, "N", 83, 48, 35, "W", "Springfield", OH 37, 13, 12, "N", 93, 17, 24, "W", "Springfield", MO 42, 5, 59, "N", 72, 35, 23, "W", "Springfield", MA 39, 47, 59, "N", 89, 39, 0, "W", "Springfield", IL 47, 40, 11, "N", 117, 24, 36, "W", "Spokane", WA 41, 40, 48, "N", 86, 15, 0, "W", "South Bend", IN 43, 32, 24, "N", 96, 43, 48, "W", "Sioux Falls", SD 42, 29, 24, "N", 96, 23, 23, "W", "Sioux City", IA 32, 30, 35, "N", 93, 45, 0, "W", "Shreveport", LA 33, 38, 23, "N", 96, 36, 36, "W", "Sherman", TX 44, 47, 59, "N", 106, 57, 35, "W", "Sheridan", WY 35, 13, 47, "N", 96, 40, 48, "W", "Seminole", OK 32, 25, 11, "N", 87, 1, 11, "W", "Selma", AL 38, 42, 35, "N", 93, 13, 48, "W", "Sedalia", MO 47, 35, 59, "N", 122, 19, 48, "W", "Seattle", WA 41, 24, 35, "N", 75, 40, 11, "W", "Scranton", PA 41, 52, 11, "N", 103, 39, 36, "W", "Scottsbluff", NB 42, 49, 11, "N", 73, 56, 59, "W", "Schenectady", NY 32, 4, 48, "N", 81, 5, 23, "W", "Savannah", GA 46, 29, 24, "N", 84, 20, 59, "W", "Sault Sainte Marie", MI 27, 20, 24, "N", 82, 31, 47, "W", "Sarasota", FL 38, 26, 23, "N", 122, 43, 12, "W", "Santa Rosa", CA 35, 40, 48, "N", 105, 56, 59, "W", "Santa Fe", NM 34, 25, 11, "N", 119, 41, 59, "W", "Santa Barbara", CA 33, 45, 35, "N", 117, 52, 12, "W", "Santa Ana", CA 37, 20, 24, "N", 121, 52, 47, "W", "San Jose", CA 37, 46, 47, "N", 122, 25, 11, "W", "San Francisco", CA 41, 27, 0, "N", 82, 42, 35, "W", "Sandusky", OH 32, 42, 35, "N", 117, 9, 0, "W", "San Diego", CA 34, 6, 36, "N", 117, 18, 35, "W", "San Bernardino", CA 29, 25, 12, "N", 98, 30, 0, "W", "San Antonio", TX 31, 27, 35, "N", 100, 26, 24, "W", "San Angelo", TX 40, 45, 35, "N", 111, 52, 47, "W", "Salt Lake City", UT 38, 22, 11, "N", 75, 35, 59, "W", "Salisbury", MD 36, 40, 11, "N", 121, 39, 0, "W", "Salinas", CA 38, 50, 24, "N", 97, 36, 36, "W", "Salina", KS 38, 31, 47, "N", 106, 0, 0, "W", "Salida", CO 44, 56, 23, "N", 123, 1, 47, "W", "Salem", OR 44, 57, 0, "N", 93, 5, 59, "W", "Saint Paul", MN 38, 37, 11, "N", 90, 11, 24, "W", "Saint Louis", MO 39, 46, 12, "N", 94, 50, 23, "W", "Saint Joseph", MO 42, 5, 59, "N", 86, 28, 48, "W", "Saint Joseph", MI 44, 25, 11, "N", 72, 1, 11, "W", "Saint Johnsbury", VT 45, 34, 11, "N", 94, 10, 11, "W", "Saint Cloud", MN 29, 53, 23, "N", 81, 19, 11, "W", "Saint Augustine", FL 43, 25, 48, "N", 83, 56, 24, "W", "Saginaw", MI 38, 35, 24, "N", 121, 29, 23, "W", "Sacramento", CA 43, 36, 36, "N", 72, 58, 12, "W", "Rutland", VT 33, 24, 0, "N", 104, 31, 47, "W", "Roswell", NM 35, 56, 23, "N", 77, 48, 0, "W", "Rocky Mount", NC 41, 35, 24, "N", 109, 13, 48, "W", "Rock Springs", WY 42, 16, 12, "N", 89, 5, 59, "W", "Rockford", IL 43, 9, 35, "N", 77, 36, 36, "W", "Rochester", NY 44, 1, 12, "N", 92, 27, 35, "W", "Rochester", MN 37, 16, 12, "N", 79, 56, 24, "W", "Roanoke", VA 37, 32, 24, "N", 77, 26, 59, "W", "Richmond", VA 39, 49, 48, "N", 84, 53, 23, "W", "Richmond", IN 38, 46, 12, "N", 112, 5, 23, "W", "Richfield", UT 45, 38, 23, "N", 89, 25, 11, "W", "Rhinelander", WI 39, 31, 12, "N", 119, 48, 35, "W", "Reno", NV 50, 25, 11, "N", 104, 39, 0, "W", "Regina", SA 40, 10, 48, "N", 122, 14, 23, "W", "Red Bluff", CA 40, 19, 48, "N", 75, 55, 48, "W", "Reading", PA 41, 9, 35, "N", 81, 14, 23, "W", "Ravenna", OH jc-1.17.3/tests/fixtures/generic/csv-cities.json000066400000000000000000000437361415226333200216100ustar00rootroot00000000000000[{"LatD": "41", "LatM": "5", "LatS": "59", "NS": "N", "LonD": "80", "LonM": "39", "LonS": "0", "EW": "W", "City": "Youngstown", "State": "OH"}, {"LatD": "42", "LatM": "52", "LatS": "48", "NS": "N", "LonD": "97", "LonM": "23", "LonS": "23", "EW": "W", "City": "Yankton", "State": "SD"}, {"LatD": "46", "LatM": "35", "LatS": "59", "NS": "N", "LonD": "120", "LonM": "30", "LonS": "36", "EW": "W", "City": "Yakima", "State": "WA"}, {"LatD": "42", "LatM": "16", "LatS": "12", "NS": "N", "LonD": "71", "LonM": "48", "LonS": "0", "EW": "W", "City": "Worcester", "State": "MA"}, {"LatD": "43", "LatM": "37", "LatS": "48", "NS": "N", "LonD": "89", "LonM": "46", "LonS": "11", "EW": "W", "City": "Wisconsin Dells", "State": "WI"}, {"LatD": "36", "LatM": "5", "LatS": "59", "NS": "N", "LonD": "80", "LonM": "15", "LonS": "0", "EW": "W", "City": "Winston-Salem", "State": "NC"}, {"LatD": "49", "LatM": "52", "LatS": "48", "NS": "N", "LonD": "97", "LonM": "9", "LonS": "0", "EW": "W", "City": "Winnipeg", "State": "MB"}, {"LatD": "39", "LatM": "11", "LatS": "23", "NS": "N", "LonD": "78", "LonM": "9", "LonS": "36", "EW": "W", "City": "Winchester", "State": "VA"}, {"LatD": "34", "LatM": "14", "LatS": "24", "NS": "N", "LonD": "77", "LonM": "55", "LonS": "11", "EW": "W", "City": "Wilmington", "State": "NC"}, {"LatD": "39", "LatM": "45", "LatS": "0", "NS": "N", "LonD": "75", "LonM": "33", "LonS": "0", "EW": "W", "City": "Wilmington", "State": "DE"}, {"LatD": "48", "LatM": "9", "LatS": "0", "NS": "N", "LonD": "103", "LonM": "37", "LonS": "12", "EW": "W", "City": "Williston", "State": "ND"}, {"LatD": "41", "LatM": "15", "LatS": "0", "NS": "N", "LonD": "77", "LonM": "0", "LonS": "0", "EW": "W", "City": "Williamsport", "State": "PA"}, {"LatD": "37", "LatM": "40", "LatS": "48", "NS": "N", "LonD": "82", "LonM": "16", "LonS": "47", "EW": "W", "City": "Williamson", "State": "WV"}, {"LatD": "33", "LatM": "54", "LatS": "0", "NS": "N", "LonD": "98", "LonM": "29", "LonS": "23", "EW": "W", "City": "Wichita Falls", "State": "TX"}, {"LatD": "37", "LatM": "41", "LatS": "23", "NS": "N", "LonD": "97", "LonM": "20", "LonS": "23", "EW": "W", "City": "Wichita", "State": "KS"}, {"LatD": "40", "LatM": "4", "LatS": "11", "NS": "N", "LonD": "80", "LonM": "43", "LonS": "12", "EW": "W", "City": "Wheeling", "State": "WV"}, {"LatD": "26", "LatM": "43", "LatS": "11", "NS": "N", "LonD": "80", "LonM": "3", "LonS": "0", "EW": "W", "City": "West Palm Beach", "State": "FL"}, {"LatD": "47", "LatM": "25", "LatS": "11", "NS": "N", "LonD": "120", "LonM": "19", "LonS": "11", "EW": "W", "City": "Wenatchee", "State": "WA"}, {"LatD": "41", "LatM": "25", "LatS": "11", "NS": "N", "LonD": "122", "LonM": "23", "LonS": "23", "EW": "W", "City": "Weed", "State": "CA"}, {"LatD": "31", "LatM": "13", "LatS": "11", "NS": "N", "LonD": "82", "LonM": "20", "LonS": "59", "EW": "W", "City": "Waycross", "State": "GA"}, {"LatD": "44", "LatM": "57", "LatS": "35", "NS": "N", "LonD": "89", "LonM": "38", "LonS": "23", "EW": "W", "City": "Wausau", "State": "WI"}, {"LatD": "42", "LatM": "21", "LatS": "36", "NS": "N", "LonD": "87", "LonM": "49", "LonS": "48", "EW": "W", "City": "Waukegan", "State": "IL"}, {"LatD": "44", "LatM": "54", "LatS": "0", "NS": "N", "LonD": "97", "LonM": "6", "LonS": "36", "EW": "W", "City": "Watertown", "State": "SD"}, {"LatD": "43", "LatM": "58", "LatS": "47", "NS": "N", "LonD": "75", "LonM": "55", "LonS": "11", "EW": "W", "City": "Watertown", "State": "NY"}, {"LatD": "42", "LatM": "30", "LatS": "0", "NS": "N", "LonD": "92", "LonM": "20", "LonS": "23", "EW": "W", "City": "Waterloo", "State": "IA"}, {"LatD": "41", "LatM": "32", "LatS": "59", "NS": "N", "LonD": "73", "LonM": "3", "LonS": "0", "EW": "W", "City": "Waterbury", "State": "CT"}, {"LatD": "38", "LatM": "53", "LatS": "23", "NS": "N", "LonD": "77", "LonM": "1", "LonS": "47", "EW": "W", "City": "Washington", "State": "DC"}, {"LatD": "41", "LatM": "50", "LatS": "59", "NS": "N", "LonD": "79", "LonM": "8", "LonS": "23", "EW": "W", "City": "Warren", "State": "PA"}, {"LatD": "46", "LatM": "4", "LatS": "11", "NS": "N", "LonD": "118", "LonM": "19", "LonS": "48", "EW": "W", "City": "Walla Walla", "State": "WA"}, {"LatD": "31", "LatM": "32", "LatS": "59", "NS": "N", "LonD": "97", "LonM": "8", "LonS": "23", "EW": "W", "City": "Waco", "State": "TX"}, {"LatD": "38", "LatM": "40", "LatS": "48", "NS": "N", "LonD": "87", "LonM": "31", "LonS": "47", "EW": "W", "City": "Vincennes", "State": "IN"}, {"LatD": "28", "LatM": "48", "LatS": "35", "NS": "N", "LonD": "97", "LonM": "0", "LonS": "36", "EW": "W", "City": "Victoria", "State": "TX"}, {"LatD": "32", "LatM": "20", "LatS": "59", "NS": "N", "LonD": "90", "LonM": "52", "LonS": "47", "EW": "W", "City": "Vicksburg", "State": "MS"}, {"LatD": "49", "LatM": "16", "LatS": "12", "NS": "N", "LonD": "123", "LonM": "7", "LonS": "12", "EW": "W", "City": "Vancouver", "State": "BC"}, {"LatD": "46", "LatM": "55", "LatS": "11", "NS": "N", "LonD": "98", "LonM": "0", "LonS": "36", "EW": "W", "City": "Valley City", "State": "ND"}, {"LatD": "30", "LatM": "49", "LatS": "47", "NS": "N", "LonD": "83", "LonM": "16", "LonS": "47", "EW": "W", "City": "Valdosta", "State": "GA"}, {"LatD": "43", "LatM": "6", "LatS": "36", "NS": "N", "LonD": "75", "LonM": "13", "LonS": "48", "EW": "W", "City": "Utica", "State": "NY"}, {"LatD": "39", "LatM": "54", "LatS": "0", "NS": "N", "LonD": "79", "LonM": "43", "LonS": "48", "EW": "W", "City": "Uniontown", "State": "PA"}, {"LatD": "32", "LatM": "20", "LatS": "59", "NS": "N", "LonD": "95", "LonM": "18", "LonS": "0", "EW": "W", "City": "Tyler", "State": "TX"}, {"LatD": "42", "LatM": "33", "LatS": "36", "NS": "N", "LonD": "114", "LonM": "28", "LonS": "12", "EW": "W", "City": "Twin Falls", "State": "ID"}, {"LatD": "33", "LatM": "12", "LatS": "35", "NS": "N", "LonD": "87", "LonM": "34", "LonS": "11", "EW": "W", "City": "Tuscaloosa", "State": "AL"}, {"LatD": "34", "LatM": "15", "LatS": "35", "NS": "N", "LonD": "88", "LonM": "42", "LonS": "35", "EW": "W", "City": "Tupelo", "State": "MS"}, {"LatD": "36", "LatM": "9", "LatS": "35", "NS": "N", "LonD": "95", "LonM": "54", "LonS": "36", "EW": "W", "City": "Tulsa", "State": "OK"}, {"LatD": "32", "LatM": "13", "LatS": "12", "NS": "N", "LonD": "110", "LonM": "58", "LonS": "12", "EW": "W", "City": "Tucson", "State": "AZ"}, {"LatD": "37", "LatM": "10", "LatS": "11", "NS": "N", "LonD": "104", "LonM": "30", "LonS": "36", "EW": "W", "City": "Trinidad", "State": "CO"}, {"LatD": "40", "LatM": "13", "LatS": "47", "NS": "N", "LonD": "74", "LonM": "46", "LonS": "11", "EW": "W", "City": "Trenton", "State": "NJ"}, {"LatD": "44", "LatM": "45", "LatS": "35", "NS": "N", "LonD": "85", "LonM": "37", "LonS": "47", "EW": "W", "City": "Traverse City", "State": "MI"}, {"LatD": "43", "LatM": "39", "LatS": "0", "NS": "N", "LonD": "79", "LonM": "22", "LonS": "47", "EW": "W", "City": "Toronto", "State": "ON"}, {"LatD": "39", "LatM": "2", "LatS": "59", "NS": "N", "LonD": "95", "LonM": "40", "LonS": "11", "EW": "W", "City": "Topeka", "State": "KS"}, {"LatD": "41", "LatM": "39", "LatS": "0", "NS": "N", "LonD": "83", "LonM": "32", "LonS": "24", "EW": "W", "City": "Toledo", "State": "OH"}, {"LatD": "33", "LatM": "25", "LatS": "48", "NS": "N", "LonD": "94", "LonM": "3", "LonS": "0", "EW": "W", "City": "Texarkana", "State": "TX"}, {"LatD": "39", "LatM": "28", "LatS": "12", "NS": "N", "LonD": "87", "LonM": "24", "LonS": "36", "EW": "W", "City": "Terre Haute", "State": "IN"}, {"LatD": "27", "LatM": "57", "LatS": "0", "NS": "N", "LonD": "82", "LonM": "26", "LonS": "59", "EW": "W", "City": "Tampa", "State": "FL"}, {"LatD": "30", "LatM": "27", "LatS": "0", "NS": "N", "LonD": "84", "LonM": "16", "LonS": "47", "EW": "W", "City": "Tallahassee", "State": "FL"}, {"LatD": "47", "LatM": "14", "LatS": "24", "NS": "N", "LonD": "122", "LonM": "25", "LonS": "48", "EW": "W", "City": "Tacoma", "State": "WA"}, {"LatD": "43", "LatM": "2", "LatS": "59", "NS": "N", "LonD": "76", "LonM": "9", "LonS": "0", "EW": "W", "City": "Syracuse", "State": "NY"}, {"LatD": "32", "LatM": "35", "LatS": "59", "NS": "N", "LonD": "82", "LonM": "20", "LonS": "23", "EW": "W", "City": "Swainsboro", "State": "GA"}, {"LatD": "33", "LatM": "55", "LatS": "11", "NS": "N", "LonD": "80", "LonM": "20", "LonS": "59", "EW": "W", "City": "Sumter", "State": "SC"}, {"LatD": "40", "LatM": "59", "LatS": "24", "NS": "N", "LonD": "75", "LonM": "11", "LonS": "24", "EW": "W", "City": "Stroudsburg", "State": "PA"}, {"LatD": "37", "LatM": "57", "LatS": "35", "NS": "N", "LonD": "121", "LonM": "17", "LonS": "24", "EW": "W", "City": "Stockton", "State": "CA"}, {"LatD": "44", "LatM": "31", "LatS": "12", "NS": "N", "LonD": "89", "LonM": "34", "LonS": "11", "EW": "W", "City": "Stevens Point", "State": "WI"}, {"LatD": "40", "LatM": "21", "LatS": "36", "NS": "N", "LonD": "80", "LonM": "37", "LonS": "12", "EW": "W", "City": "Steubenville", "State": "OH"}, {"LatD": "40", "LatM": "37", "LatS": "11", "NS": "N", "LonD": "103", "LonM": "13", "LonS": "12", "EW": "W", "City": "Sterling", "State": "CO"}, {"LatD": "38", "LatM": "9", "LatS": "0", "NS": "N", "LonD": "79", "LonM": "4", "LonS": "11", "EW": "W", "City": "Staunton", "State": "VA"}, {"LatD": "39", "LatM": "55", "LatS": "11", "NS": "N", "LonD": "83", "LonM": "48", "LonS": "35", "EW": "W", "City": "Springfield", "State": "OH"}, {"LatD": "37", "LatM": "13", "LatS": "12", "NS": "N", "LonD": "93", "LonM": "17", "LonS": "24", "EW": "W", "City": "Springfield", "State": "MO"}, {"LatD": "42", "LatM": "5", "LatS": "59", "NS": "N", "LonD": "72", "LonM": "35", "LonS": "23", "EW": "W", "City": "Springfield", "State": "MA"}, {"LatD": "39", "LatM": "47", "LatS": "59", "NS": "N", "LonD": "89", "LonM": "39", "LonS": "0", "EW": "W", "City": "Springfield", "State": "IL"}, {"LatD": "47", "LatM": "40", "LatS": "11", "NS": "N", "LonD": "117", "LonM": "24", "LonS": "36", "EW": "W", "City": "Spokane", "State": "WA"}, {"LatD": "41", "LatM": "40", "LatS": "48", "NS": "N", "LonD": "86", "LonM": "15", "LonS": "0", "EW": "W", "City": "South Bend", "State": "IN"}, {"LatD": "43", "LatM": "32", "LatS": "24", "NS": "N", "LonD": "96", "LonM": "43", "LonS": "48", "EW": "W", "City": "Sioux Falls", "State": "SD"}, {"LatD": "42", "LatM": "29", "LatS": "24", "NS": "N", "LonD": "96", "LonM": "23", "LonS": "23", "EW": "W", "City": "Sioux City", "State": "IA"}, {"LatD": "32", "LatM": "30", "LatS": "35", "NS": "N", "LonD": "93", "LonM": "45", "LonS": "0", "EW": "W", "City": "Shreveport", "State": "LA"}, {"LatD": "33", "LatM": "38", "LatS": "23", "NS": "N", "LonD": "96", "LonM": "36", "LonS": "36", "EW": "W", "City": "Sherman", "State": "TX"}, {"LatD": "44", "LatM": "47", "LatS": "59", "NS": "N", "LonD": "106", "LonM": "57", "LonS": "35", "EW": "W", "City": "Sheridan", "State": "WY"}, {"LatD": "35", "LatM": "13", "LatS": "47", "NS": "N", "LonD": "96", "LonM": "40", "LonS": "48", "EW": "W", "City": "Seminole", "State": "OK"}, {"LatD": "32", "LatM": "25", "LatS": "11", "NS": "N", "LonD": "87", "LonM": "1", "LonS": "11", "EW": "W", "City": "Selma", "State": "AL"}, {"LatD": "38", "LatM": "42", "LatS": "35", "NS": "N", "LonD": "93", "LonM": "13", "LonS": "48", "EW": "W", "City": "Sedalia", "State": "MO"}, {"LatD": "47", "LatM": "35", "LatS": "59", "NS": "N", "LonD": "122", "LonM": "19", "LonS": "48", "EW": "W", "City": "Seattle", "State": "WA"}, {"LatD": "41", "LatM": "24", "LatS": "35", "NS": "N", "LonD": "75", "LonM": "40", "LonS": "11", "EW": "W", "City": "Scranton", "State": "PA"}, {"LatD": "41", "LatM": "52", "LatS": "11", "NS": "N", "LonD": "103", "LonM": "39", "LonS": "36", "EW": "W", "City": "Scottsbluff", "State": "NB"}, {"LatD": "42", "LatM": "49", "LatS": "11", "NS": "N", "LonD": "73", "LonM": "56", "LonS": "59", "EW": "W", "City": "Schenectady", "State": "NY"}, {"LatD": "32", "LatM": "4", "LatS": "48", "NS": "N", "LonD": "81", "LonM": "5", "LonS": "23", "EW": "W", "City": "Savannah", "State": "GA"}, {"LatD": "46", "LatM": "29", "LatS": "24", "NS": "N", "LonD": "84", "LonM": "20", "LonS": "59", "EW": "W", "City": "Sault Sainte Marie", "State": "MI"}, {"LatD": "27", "LatM": "20", "LatS": "24", "NS": "N", "LonD": "82", "LonM": "31", "LonS": "47", "EW": "W", "City": "Sarasota", "State": "FL"}, {"LatD": "38", "LatM": "26", "LatS": "23", "NS": "N", "LonD": "122", "LonM": "43", "LonS": "12", "EW": "W", "City": "Santa Rosa", "State": "CA"}, {"LatD": "35", "LatM": "40", "LatS": "48", "NS": "N", "LonD": "105", "LonM": "56", "LonS": "59", "EW": "W", "City": "Santa Fe", "State": "NM"}, {"LatD": "34", "LatM": "25", "LatS": "11", "NS": "N", "LonD": "119", "LonM": "41", "LonS": "59", "EW": "W", "City": "Santa Barbara", "State": "CA"}, {"LatD": "33", "LatM": "45", "LatS": "35", "NS": "N", "LonD": "117", "LonM": "52", "LonS": "12", "EW": "W", "City": "Santa Ana", "State": "CA"}, {"LatD": "37", "LatM": "20", "LatS": "24", "NS": "N", "LonD": "121", "LonM": "52", "LonS": "47", "EW": "W", "City": "San Jose", "State": "CA"}, {"LatD": "37", "LatM": "46", "LatS": "47", "NS": "N", "LonD": "122", "LonM": "25", "LonS": "11", "EW": "W", "City": "San Francisco", "State": "CA"}, {"LatD": "41", "LatM": "27", "LatS": "0", "NS": "N", "LonD": "82", "LonM": "42", "LonS": "35", "EW": "W", "City": "Sandusky", "State": "OH"}, {"LatD": "32", "LatM": "42", "LatS": "35", "NS": "N", "LonD": "117", "LonM": "9", "LonS": "0", "EW": "W", "City": "San Diego", "State": "CA"}, {"LatD": "34", "LatM": "6", "LatS": "36", "NS": "N", "LonD": "117", "LonM": "18", "LonS": "35", "EW": "W", "City": "San Bernardino", "State": "CA"}, {"LatD": "29", "LatM": "25", "LatS": "12", "NS": "N", "LonD": "98", "LonM": "30", "LonS": "0", "EW": "W", "City": "San Antonio", "State": "TX"}, {"LatD": "31", "LatM": "27", "LatS": "35", "NS": "N", "LonD": "100", "LonM": "26", "LonS": "24", "EW": "W", "City": "San Angelo", "State": "TX"}, {"LatD": "40", "LatM": "45", "LatS": "35", "NS": "N", "LonD": "111", "LonM": "52", "LonS": "47", "EW": "W", "City": "Salt Lake City", "State": "UT"}, {"LatD": "38", "LatM": "22", "LatS": "11", "NS": "N", "LonD": "75", "LonM": "35", "LonS": "59", "EW": "W", "City": "Salisbury", "State": "MD"}, {"LatD": "36", "LatM": "40", "LatS": "11", "NS": "N", "LonD": "121", "LonM": "39", "LonS": "0", "EW": "W", "City": "Salinas", "State": "CA"}, {"LatD": "38", "LatM": "50", "LatS": "24", "NS": "N", "LonD": "97", "LonM": "36", "LonS": "36", "EW": "W", "City": "Salina", "State": "KS"}, {"LatD": "38", "LatM": "31", "LatS": "47", "NS": "N", "LonD": "106", "LonM": "0", "LonS": "0", "EW": "W", "City": "Salida", "State": "CO"}, {"LatD": "44", "LatM": "56", "LatS": "23", "NS": "N", "LonD": "123", "LonM": "1", "LonS": "47", "EW": "W", "City": "Salem", "State": "OR"}, {"LatD": "44", "LatM": "57", "LatS": "0", "NS": "N", "LonD": "93", "LonM": "5", "LonS": "59", "EW": "W", "City": "Saint Paul", "State": "MN"}, {"LatD": "38", "LatM": "37", "LatS": "11", "NS": "N", "LonD": "90", "LonM": "11", "LonS": "24", "EW": "W", "City": "Saint Louis", "State": "MO"}, {"LatD": "39", "LatM": "46", "LatS": "12", "NS": "N", "LonD": "94", "LonM": "50", "LonS": "23", "EW": "W", "City": "Saint Joseph", "State": "MO"}, {"LatD": "42", "LatM": "5", "LatS": "59", "NS": "N", "LonD": "86", "LonM": "28", "LonS": "48", "EW": "W", "City": "Saint Joseph", "State": "MI"}, {"LatD": "44", "LatM": "25", "LatS": "11", "NS": "N", "LonD": "72", "LonM": "1", "LonS": "11", "EW": "W", "City": "Saint Johnsbury", "State": "VT"}, {"LatD": "45", "LatM": "34", "LatS": "11", "NS": "N", "LonD": "94", "LonM": "10", "LonS": "11", "EW": "W", "City": "Saint Cloud", "State": "MN"}, {"LatD": "29", "LatM": "53", "LatS": "23", "NS": "N", "LonD": "81", "LonM": "19", "LonS": "11", "EW": "W", "City": "Saint Augustine", "State": "FL"}, {"LatD": "43", "LatM": "25", "LatS": "48", "NS": "N", "LonD": "83", "LonM": "56", "LonS": "24", "EW": "W", "City": "Saginaw", "State": "MI"}, {"LatD": "38", "LatM": "35", "LatS": "24", "NS": "N", "LonD": "121", "LonM": "29", "LonS": "23", "EW": "W", "City": "Sacramento", "State": "CA"}, {"LatD": "43", "LatM": "36", "LatS": "36", "NS": "N", "LonD": "72", "LonM": "58", "LonS": "12", "EW": "W", "City": "Rutland", "State": "VT"}, {"LatD": "33", "LatM": "24", "LatS": "0", "NS": "N", "LonD": "104", "LonM": "31", "LonS": "47", "EW": "W", "City": "Roswell", "State": "NM"}, {"LatD": "35", "LatM": "56", "LatS": "23", "NS": "N", "LonD": "77", "LonM": "48", "LonS": "0", "EW": "W", "City": "Rocky Mount", "State": "NC"}, {"LatD": "41", "LatM": "35", "LatS": "24", "NS": "N", "LonD": "109", "LonM": "13", "LonS": "48", "EW": "W", "City": "Rock Springs", "State": "WY"}, {"LatD": "42", "LatM": "16", "LatS": "12", "NS": "N", "LonD": "89", "LonM": "5", "LonS": "59", "EW": "W", "City": "Rockford", "State": "IL"}, {"LatD": "43", "LatM": "9", "LatS": "35", "NS": "N", "LonD": "77", "LonM": "36", "LonS": "36", "EW": "W", "City": "Rochester", "State": "NY"}, {"LatD": "44", "LatM": "1", "LatS": "12", "NS": "N", "LonD": "92", "LonM": "27", "LonS": "35", "EW": "W", "City": "Rochester", "State": "MN"}, {"LatD": "37", "LatM": "16", "LatS": "12", "NS": "N", "LonD": "79", "LonM": "56", "LonS": "24", "EW": "W", "City": "Roanoke", "State": "VA"}, {"LatD": "37", "LatM": "32", "LatS": "24", "NS": "N", "LonD": "77", "LonM": "26", "LonS": "59", "EW": "W", "City": "Richmond", "State": "VA"}, {"LatD": "39", "LatM": "49", "LatS": "48", "NS": "N", "LonD": "84", "LonM": "53", "LonS": "23", "EW": "W", "City": "Richmond", "State": "IN"}, {"LatD": "38", "LatM": "46", "LatS": "12", "NS": "N", "LonD": "112", "LonM": "5", "LonS": "23", "EW": "W", "City": "Richfield", "State": "UT"}, {"LatD": "45", "LatM": "38", "LatS": "23", "NS": "N", "LonD": "89", "LonM": "25", "LonS": "11", "EW": "W", "City": "Rhinelander", "State": "WI"}, {"LatD": "39", "LatM": "31", "LatS": "12", "NS": "N", "LonD": "119", "LonM": "48", "LonS": "35", "EW": "W", "City": "Reno", "State": "NV"}, {"LatD": "50", "LatM": "25", "LatS": "11", "NS": "N", "LonD": "104", "LonM": "39", "LonS": "0", "EW": "W", "City": "Regina", "State": "SA"}, {"LatD": "40", "LatM": "10", "LatS": "48", "NS": "N", "LonD": "122", "LonM": "14", "LonS": "23", "EW": "W", "City": "Red Bluff", "State": "CA"}, {"LatD": "40", "LatM": "19", "LatS": "48", "NS": "N", "LonD": "75", "LonM": "55", "LonS": "48", "EW": "W", "City": "Reading", "State": "PA"}, {"LatD": "41", "LatM": "9", "LatS": "35", "NS": "N", "LonD": "81", "LonM": "14", "LonS": "23", "EW": "W", "City": "Ravenna", "State": "OH "}] jc-1.17.3/tests/fixtures/generic/csv-deniro-streaming.json000066400000000000000000000110211415226333200235550ustar00rootroot00000000000000[{"Year":"1968","Score":"86","Title":"Greetings"},{"Year":"1970","Score":"17","Title":"Bloody Mama"},{"Year":"1970","Score":"73","Title":"Hi, Mom!"},{"Year":"1971","Score":"40","Title":"Born to Win"},{"Year":"1973","Score":"98","Title":"Mean Streets"},{"Year":"1973","Score":"88","Title":"Bang the Drum Slowly"},{"Year":"1974","Score":"97","Title":"The Godfather, Part II"},{"Year":"1976","Score":"41","Title":"The Last Tycoon"},{"Year":"1976","Score":"99","Title":"Taxi Driver"},{"Year":"1977","Score":"47","Title":"1900"},{"Year":"1977","Score":"67","Title":"New York, New York"},{"Year":"1978","Score":"93","Title":"The Deer Hunter"},{"Year":"1980","Score":"97","Title":"Raging Bull"},{"Year":"1981","Score":"75","Title":"True Confessions"},{"Year":"1983","Score":"90","Title":"The King of Comedy"},{"Year":"1984","Score":"89","Title":"Once Upon a Time in America"},{"Year":"1984","Score":"60","Title":"Falling in Love"},{"Year":"1985","Score":"98","Title":"Brazil"},{"Year":"1986","Score":"65","Title":"The Mission"},{"Year":"1987","Score":"100","Title":"Dear America: Letters Home From Vietnam"},{"Year":"1987","Score":"80","Title":"The Untouchables"},{"Year":"1987","Score":"78","Title":"Angel Heart"},{"Year":"1988","Score":"96","Title":"Midnight Run"},{"Year":"1989","Score":"64","Title":"Jacknife"},{"Year":"1989","Score":"47","Title":"We're No Angels"},{"Year":"1990","Score":"88","Title":"Awakenings"},{"Year":"1990","Score":"29","Title":"Stanley & Iris"},{"Year":"1990","Score":"96","Title":"Goodfellas"},{"Year":"1991","Score":"76","Title":"Cape Fear"},{"Year":"1991","Score":"69","Title":"Mistress"},{"Year":"1991","Score":"65","Title":"Guilty by Suspicion"},{"Year":"1991","Score":"71","Title":"Backdraft"},{"Year":"1992","Score":"87","Title":"Thunderheart"},{"Year":"1992","Score":"67","Title":"Night and the City"},{"Year":"1993","Score":"75","Title":"This Boy's Life"},{"Year":"1993","Score":"78","Title":"Mad Dog and Glory"},{"Year":"1993","Score":"96","Title":"A Bronx Tale"},{"Year":"1994","Score":"39","Title":"Mary Shelley's Frankenstein"},{"Year":"1995","Score":"80","Title":"Casino"},{"Year":"1995","Score":"86","Title":"Heat"},{"Year":"1996","Score":"74","Title":"Sleepers"},{"Year":"1996","Score":"38","Title":"The Fan"},{"Year":"1996","Score":"80","Title":"Marvin's Room"},{"Year":"1997","Score":"85","Title":"Wag the Dog"},{"Year":"1997","Score":"87","Title":"Jackie Brown"},{"Year":"1997","Score":"72","Title":"Cop Land"},{"Year":"1998","Score":"68","Title":"Ronin"},{"Year":"1998","Score":"38","Title":"Great Expectations"},{"Year":"1999","Score":"69","Title":"Analyze This"},{"Year":"1999","Score":"43","Title":"Flawless"},{"Year":"2000","Score":"43","Title":"The Adventures of Rocky & Bullwinkle"},{"Year":"2000","Score":"84","Title":"Meet the Parents"},{"Year":"2000","Score":"41","Title":"Men of Honor"},{"Year":"2001","Score":"73","Title":"The Score"},{"Year":"2001","Score":"33","Title":"15 Minutes"},{"Year":"2002","Score":"48","Title":"City by the Sea"},{"Year":"2002","Score":"27","Title":"Analyze That"},{"Year":"2003","Score":"4","Title":"Godsend"},{"Year":"2004","Score":"35","Title":"Shark Tale"},{"Year":"2004","Score":"38","Title":"Meet the Fockers"},{"Year":"2005","Score":"4","Title":"The Bridge of San Luis Rey"},{"Year":"2005","Score":"46","Title":"Rent"},{"Year":"2005","Score":"13","Title":"Hide and Seek"},{"Year":"2006","Score":"54","Title":"The Good Shepherd"},{"Year":"2007","Score":"21","Title":"Arthur and the Invisibles"},{"Year":"2007","Score":"76","Title":"Captain Shakespeare"},{"Year":"2008","Score":"19","Title":"Righteous Kill"},{"Year":"2008","Score":"51","Title":"What Just Happened?"},{"Year":"2009","Score":"46","Title":"Everybody's Fine"},{"Year":"2010","Score":"72","Title":"Machete"},{"Year":"2010","Score":"10","Title":"Little Fockers"},{"Year":"2010","Score":"50","Title":"Stone"},{"Year":"2011","Score":"25","Title":"Killer Elite"},{"Year":"2011","Score":"7","Title":"New Year's Eve"},{"Year":"2011","Score":"70","Title":"Limitless"},{"Year":"2012","Score":"92","Title":"Silver Linings Playbook"},{"Year":"2012","Score":"51","Title":"Being Flynn"},{"Year":"2012","Score":"29","Title":"Red Lights"},{"Year":"2013","Score":"46","Title":"Last Vegas"},{"Year":"2013","Score":"7","Title":"The Big Wedding"},{"Year":"2013","Score":"29","Title":"Grudge Match"},{"Year":"2013","Score":"11","Title":"Killing Season"},{"Year":"2014","Score":"9","Title":"The Bag Man"},{"Year":"2015","Score":"60","Title":"Joy"},{"Year":"2015","Score":"26","Title":"Heist"},{"Year":"2015","Score":"61","Title":"The Intern"},{"Year":"2016","Score":"11","Title":"Dirty Grandpa"}] jc-1.17.3/tests/fixtures/generic/csv-deniro.csv000066400000000000000000000045271415226333200214250ustar00rootroot00000000000000"Year", "Score", "Title" 1968, 86, "Greetings" 1970, 17, "Bloody Mama" 1970, 73, "Hi, Mom!" 1971, 40, "Born to Win" 1973, 98, "Mean Streets" 1973, 88, "Bang the Drum Slowly" 1974, 97, "The Godfather, Part II" 1976, 41, "The Last Tycoon" 1976, 99, "Taxi Driver" 1977, 47, "1900" 1977, 67, "New York, New York" 1978, 93, "The Deer Hunter" 1980, 97, "Raging Bull" 1981, 75, "True Confessions" 1983, 90, "The King of Comedy" 1984, 89, "Once Upon a Time in America" 1984, 60, "Falling in Love" 1985, 98, "Brazil" 1986, 65, "The Mission" 1987, 100, "Dear America: Letters Home From Vietnam" 1987, 80, "The Untouchables" 1987, 78, "Angel Heart" 1988, 96, "Midnight Run" 1989, 64, "Jacknife" 1989, 47, "We're No Angels" 1990, 88, "Awakenings" 1990, 29, "Stanley & Iris" 1990, 96, "Goodfellas" 1991, 76, "Cape Fear" 1991, 69, "Mistress" 1991, 65, "Guilty by Suspicion" 1991, 71, "Backdraft" 1992, 87, "Thunderheart" 1992, 67, "Night and the City" 1993, 75, "This Boy's Life" 1993, 78, "Mad Dog and Glory" 1993, 96, "A Bronx Tale" 1994, 39, "Mary Shelley's Frankenstein" 1995, 80, "Casino" 1995, 86, "Heat" 1996, 74, "Sleepers" 1996, 38, "The Fan" 1996, 80, "Marvin's Room" 1997, 85, "Wag the Dog" 1997, 87, "Jackie Brown" 1997, 72, "Cop Land" 1998, 68, "Ronin" 1998, 38, "Great Expectations" 1999, 69, "Analyze This" 1999, 43, "Flawless" 2000, 43, "The Adventures of Rocky & Bullwinkle" 2000, 84, "Meet the Parents" 2000, 41, "Men of Honor" 2001, 73, "The Score" 2001, 33, "15 Minutes" 2002, 48, "City by the Sea" 2002, 27, "Analyze That" 2003, 4, "Godsend" 2004, 35, "Shark Tale" 2004, 38, "Meet the Fockers" 2005, 4, "The Bridge of San Luis Rey" 2005, 46, "Rent" 2005, 13, "Hide and Seek" 2006, 54, "The Good Shepherd" 2007, 21, "Arthur and the Invisibles" 2007, 76, "Captain Shakespeare" 2008, 19, "Righteous Kill" 2008, 51, "What Just Happened?" 2009, 46, "Everybody's Fine" 2010, 72, "Machete" 2010, 10, "Little Fockers" 2010, 50, "Stone" 2011, 25, "Killer Elite" 2011, 7, "New Year's Eve" 2011, 70, "Limitless" 2012, 92, "Silver Linings Playbook" 2012, 51, "Being Flynn" 2012, 29, "Red Lights" 2013, 46, "Last Vegas" 2013, 7, "The Big Wedding" 2013, 29, "Grudge Match" 2013, 11, "Killing Season" 2014, 9, "The Bag Man" 2015, 60, "Joy" 2015, 26, "Heist" 2015, 61, "The Intern" 2016, 11, "Dirty Grandpa" jc-1.17.3/tests/fixtures/generic/csv-deniro.json000066400000000000000000000120321415226333200215710ustar00rootroot00000000000000[{"Year": "1968", "Score": "86", "Title": "Greetings"}, {"Year": "1970", "Score": "17", "Title": "Bloody Mama"}, {"Year": "1970", "Score": "73", "Title": "Hi, Mom!"}, {"Year": "1971", "Score": "40", "Title": "Born to Win"}, {"Year": "1973", "Score": "98", "Title": "Mean Streets"}, {"Year": "1973", "Score": "88", "Title": "Bang the Drum Slowly"}, {"Year": "1974", "Score": "97", "Title": "The Godfather, Part II"}, {"Year": "1976", "Score": "41", "Title": "The Last Tycoon"}, {"Year": "1976", "Score": "99", "Title": "Taxi Driver"}, {"Year": "1977", "Score": "47", "Title": "1900"}, {"Year": "1977", "Score": "67", "Title": "New York, New York"}, {"Year": "1978", "Score": "93", "Title": "The Deer Hunter"}, {"Year": "1980", "Score": "97", "Title": "Raging Bull"}, {"Year": "1981", "Score": "75", "Title": "True Confessions"}, {"Year": "1983", "Score": "90", "Title": "The King of Comedy"}, {"Year": "1984", "Score": "89", "Title": "Once Upon a Time in America"}, {"Year": "1984", "Score": "60", "Title": "Falling in Love"}, {"Year": "1985", "Score": "98", "Title": "Brazil"}, {"Year": "1986", "Score": "65", "Title": "The Mission"}, {"Year": "1987", "Score": "100", "Title": "Dear America: Letters Home From Vietnam"}, {"Year": "1987", "Score": "80", "Title": "The Untouchables"}, {"Year": "1987", "Score": "78", "Title": "Angel Heart"}, {"Year": "1988", "Score": "96", "Title": "Midnight Run"}, {"Year": "1989", "Score": "64", "Title": "Jacknife"}, {"Year": "1989", "Score": "47", "Title": "We're No Angels"}, {"Year": "1990", "Score": "88", "Title": "Awakenings"}, {"Year": "1990", "Score": "29", "Title": "Stanley & Iris"}, {"Year": "1990", "Score": "96", "Title": "Goodfellas"}, {"Year": "1991", "Score": "76", "Title": "Cape Fear"}, {"Year": "1991", "Score": "69", "Title": "Mistress"}, {"Year": "1991", "Score": "65", "Title": "Guilty by Suspicion"}, {"Year": "1991", "Score": "71", "Title": "Backdraft"}, {"Year": "1992", "Score": "87", "Title": "Thunderheart"}, {"Year": "1992", "Score": "67", "Title": "Night and the City"}, {"Year": "1993", "Score": "75", "Title": "This Boy's Life"}, {"Year": "1993", "Score": "78", "Title": "Mad Dog and Glory"}, {"Year": "1993", "Score": "96", "Title": "A Bronx Tale"}, {"Year": "1994", "Score": "39", "Title": "Mary Shelley's Frankenstein"}, {"Year": "1995", "Score": "80", "Title": "Casino"}, {"Year": "1995", "Score": "86", "Title": "Heat"}, {"Year": "1996", "Score": "74", "Title": "Sleepers"}, {"Year": "1996", "Score": "38", "Title": "The Fan"}, {"Year": "1996", "Score": "80", "Title": "Marvin's Room"}, {"Year": "1997", "Score": "85", "Title": "Wag the Dog"}, {"Year": "1997", "Score": "87", "Title": "Jackie Brown"}, {"Year": "1997", "Score": "72", "Title": "Cop Land"}, {"Year": "1998", "Score": "68", "Title": "Ronin"}, {"Year": "1998", "Score": "38", "Title": "Great Expectations"}, {"Year": "1999", "Score": "69", "Title": "Analyze This"}, {"Year": "1999", "Score": "43", "Title": "Flawless"}, {"Year": "2000", "Score": "43", "Title": "The Adventures of Rocky & Bullwinkle"}, {"Year": "2000", "Score": "84", "Title": "Meet the Parents"}, {"Year": "2000", "Score": "41", "Title": "Men of Honor"}, {"Year": "2001", "Score": "73", "Title": "The Score"}, {"Year": "2001", "Score": "33", "Title": "15 Minutes"}, {"Year": "2002", "Score": "48", "Title": "City by the Sea"}, {"Year": "2002", "Score": "27", "Title": "Analyze That"}, {"Year": "2003", "Score": "4", "Title": "Godsend"}, {"Year": "2004", "Score": "35", "Title": "Shark Tale"}, {"Year": "2004", "Score": "38", "Title": "Meet the Fockers"}, {"Year": "2005", "Score": "4", "Title": "The Bridge of San Luis Rey"}, {"Year": "2005", "Score": "46", "Title": "Rent"}, {"Year": "2005", "Score": "13", "Title": "Hide and Seek"}, {"Year": "2006", "Score": "54", "Title": "The Good Shepherd"}, {"Year": "2007", "Score": "21", "Title": "Arthur and the Invisibles"}, {"Year": "2007", "Score": "76", "Title": "Captain Shakespeare"}, {"Year": "2008", "Score": "19", "Title": "Righteous Kill"}, {"Year": "2008", "Score": "51", "Title": "What Just Happened?"}, {"Year": "2009", "Score": "46", "Title": "Everybody's Fine"}, {"Year": "2010", "Score": "72", "Title": "Machete"}, {"Year": "2010", "Score": "10", "Title": "Little Fockers"}, {"Year": "2010", "Score": "50", "Title": "Stone"}, {"Year": "2011", "Score": "25", "Title": "Killer Elite"}, {"Year": "2011", "Score": "7", "Title": "New Year's Eve"}, {"Year": "2011", "Score": "70", "Title": "Limitless"}, {"Year": "2012", "Score": "92", "Title": "Silver Linings Playbook"}, {"Year": "2012", "Score": "51", "Title": "Being Flynn"}, {"Year": "2012", "Score": "29", "Title": "Red Lights"}, {"Year": "2013", "Score": "46", "Title": "Last Vegas"}, {"Year": "2013", "Score": "7", "Title": "The Big Wedding"}, {"Year": "2013", "Score": "29", "Title": "Grudge Match"}, {"Year": "2013", "Score": "11", "Title": "Killing Season"}, {"Year": "2014", "Score": "9", "Title": "The Bag Man"}, {"Year": "2015", "Score": "60", "Title": "Joy"}, {"Year": "2015", "Score": "26", "Title": "Heist"}, {"Year": "2015", "Score": "61", "Title": "The Intern"}, {"Year": "2016", "Score": "11", "Title": "Dirty Grandpa"}] jc-1.17.3/tests/fixtures/generic/csv-example-streaming.json000066400000000000000000000030641415226333200237400ustar00rootroot00000000000000[{"TOK": "JET", "UPDATE": "20031201", "DATE": "20001006", "SHOT": "53521", "TIME": "1.000E+01", "AUXHEAT": "NBIC", "PHASE": "HSELM", "STATE": "TRANS", "PGASA": "2.000E+00", "PGASZ": "1.000E+00", "BGASA": "2", "BGASZ": "1", "BGASA2": "0", "BGASZ2": "0", "PIMPA": "1.658E+01", "PIMPZ": "8.152E+00", "PELLET": "NONE", "RGEO": "2.888E+00", "RMAG": "3.047E+00", "AMIN": "9.807E-01", "SEPLIM": "2.924E-02", "XPLIM": "7.304E-02", "KAPPA": "1.572E+00", "DELTA": "1.781E-01", "INDENT": "0.000E+00", "AREA": "4.572E+00", "VOL": "8.161E+01", "CONFIG": "LSN", "IGRADB": "1", "WALMAT": "IN/C", "DIVMAT": "BE", "LIMMAT": "C/BE", "EVAP": "BE", "BT": "3.598E+00", "IP": "2.000E+06", "VSURF": "1.013E-01", "Q95": "6.001E+00", "BEPMHD": "1.053E+00", "BETMHD": "9.252E-01", "BEPDIA": "1.128E+00", "NEL": "3.106E+19", "DNELDT": "3.106E+19", "ZEFF": "6.612E+00", "PRAD": "4.515E+06", "POHM": "5.122E+04", "ENBI": "1.000E+05", "PINJ": "1.466E+07", "BSOURCE": "771706", "PINJ2": "0.000E+00", "BSOURCE2": "652114", "COCTR": "1.000E+00", "PNBI": "1.420E+07", "ECHFREQ": "-9.999E-09", "ECHMODE": "NONE", "ECHLOC": "NONE", "PECH": "0.000E+00", "ICFREQ": "5.100E+07", "ICSCHEME": "HMIN", "ICANTEN": "MONOPOLE", "PICRH": "4.027E+06", "LHFREQ": "3.700E+09", "LHNPAR": "1.840E+00", "PLH": "2.000E+06", "IBWFREQ": "-9.999E-09", "PIBW": "0.000E+00", "TE0": "9.295E+03", "TI0": "1.373E+04", "WFANI": "6.913E-01", "WFICRH": "7.319E+05", "MEFF": "2.000E+00", "ISEQ": "NONE", "WTH": "3.715E+06", "WTOT": "5.381E+06", "DWTOT": "1.282E+06", "PL": "1.297E+07", "PLTH": "1.210E+07", "TAUTOT": "4.445E-01", "TAUTH": "2.194E-01"}] jc-1.17.3/tests/fixtures/generic/csv-example.csv000066400000000000000000000021351415226333200215710ustar00rootroot00000000000000TOK,UPDATE,DATE,SHOT,TIME,AUXHEAT,PHASE,STATE,PGASA,PGASZ,BGASA,BGASZ,BGASA2,BGASZ2,PIMPA,PIMPZ,PELLET,RGEO,RMAG,AMIN,SEPLIM,XPLIM,KAPPA,DELTA,INDENT,AREA,VOL,CONFIG,IGRADB,WALMAT,DIVMAT,LIMMAT,EVAP,BT,IP,VSURF,Q95,BEPMHD,BETMHD,BEPDIA,NEL,DNELDT,ZEFF,PRAD,POHM,ENBI,PINJ,BSOURCE,PINJ2,BSOURCE2,COCTR,PNBI,ECHFREQ,ECHMODE,ECHLOC,PECH,ICFREQ,ICSCHEME,ICANTEN,PICRH,LHFREQ,LHNPAR,PLH,IBWFREQ,PIBW,TE0,TI0,WFANI,WFICRH,MEFF,ISEQ,WTH,WTOT,DWTOT,PL,PLTH,TAUTOT,TAUTH JET,20031201,20001006,53521,1.000E+01,NBIC,HSELM,TRANS,2.000E+00,1.000E+00,2,1,0,0,1.658E+01,8.152E+00,NONE,2.888E+00,3.047E+00,9.807E-01,2.924E-02,7.304E-02,1.572E+00,1.781E-01,0.000E+00,4.572E+00,8.161E+01,LSN,1,IN/C,BE,C/BE,BE,3.598E+00,2.000E+06,1.013E-01,6.001E+00,1.053E+00,9.252E-01,1.128E+00,3.106E+19,3.106E+19,6.612E+00,4.515E+06,5.122E+04,1.000E+05,1.466E+07,771706,0.000E+00,652114,1.000E+00,1.420E+07,-9.999E-09,NONE,NONE,0.000E+00,5.100E+07,HMIN,MONOPOLE,4.027E+06,3.700E+09,1.840E+00,2.000E+06,-9.999E-09,0.000E+00,9.295E+03,1.373E+04,6.913E-01,7.319E+05,2.000E+00,NONE,3.715E+06,5.381E+06,1.282E+06,1.297E+07,1.210E+07,4.445E-01,2.194E-01 jc-1.17.3/tests/fixtures/generic/csv-example.json000066400000000000000000000030641415226333200217510ustar00rootroot00000000000000[{"TOK": "JET", "UPDATE": "20031201", "DATE": "20001006", "SHOT": "53521", "TIME": "1.000E+01", "AUXHEAT": "NBIC", "PHASE": "HSELM", "STATE": "TRANS", "PGASA": "2.000E+00", "PGASZ": "1.000E+00", "BGASA": "2", "BGASZ": "1", "BGASA2": "0", "BGASZ2": "0", "PIMPA": "1.658E+01", "PIMPZ": "8.152E+00", "PELLET": "NONE", "RGEO": "2.888E+00", "RMAG": "3.047E+00", "AMIN": "9.807E-01", "SEPLIM": "2.924E-02", "XPLIM": "7.304E-02", "KAPPA": "1.572E+00", "DELTA": "1.781E-01", "INDENT": "0.000E+00", "AREA": "4.572E+00", "VOL": "8.161E+01", "CONFIG": "LSN", "IGRADB": "1", "WALMAT": "IN/C", "DIVMAT": "BE", "LIMMAT": "C/BE", "EVAP": "BE", "BT": "3.598E+00", "IP": "2.000E+06", "VSURF": "1.013E-01", "Q95": "6.001E+00", "BEPMHD": "1.053E+00", "BETMHD": "9.252E-01", "BEPDIA": "1.128E+00", "NEL": "3.106E+19", "DNELDT": "3.106E+19", "ZEFF": "6.612E+00", "PRAD": "4.515E+06", "POHM": "5.122E+04", "ENBI": "1.000E+05", "PINJ": "1.466E+07", "BSOURCE": "771706", "PINJ2": "0.000E+00", "BSOURCE2": "652114", "COCTR": "1.000E+00", "PNBI": "1.420E+07", "ECHFREQ": "-9.999E-09", "ECHMODE": "NONE", "ECHLOC": "NONE", "PECH": "0.000E+00", "ICFREQ": "5.100E+07", "ICSCHEME": "HMIN", "ICANTEN": "MONOPOLE", "PICRH": "4.027E+06", "LHFREQ": "3.700E+09", "LHNPAR": "1.840E+00", "PLH": "2.000E+06", "IBWFREQ": "-9.999E-09", "PIBW": "0.000E+00", "TE0": "9.295E+03", "TI0": "1.373E+04", "WFANI": "6.913E-01", "WFICRH": "7.319E+05", "MEFF": "2.000E+00", "ISEQ": "NONE", "WTH": "3.715E+06", "WTOT": "5.381E+06", "DWTOT": "1.282E+06", "PL": "1.297E+07", "PLTH": "1.210E+07", "TAUTOT": "4.445E-01", "TAUTH": "2.194E-01"}] jc-1.17.3/tests/fixtures/generic/csv-flyrna-streaming.json000066400000000000000000017463171415226333200236200ustar00rootroot00000000000000[{"ID":"FBgn0029994","EGF_Baseline":"-1.25"},{"ID":"FBgn0037191","EGF_Baseline":"-1.05"},{"ID":"FBgn0036810","EGF_Baseline":"2.08"},{"ID":"FBgn0033320","EGF_Baseline":"1.15"},{"ID":"FBgn0051156","EGF_Baseline":"-1.77"},{"ID":"FBgn0004635","EGF_Baseline":"-0.77"},{"ID":"FBgn0260646","EGF_Baseline":"-0.92"},{"ID":"FBgn0038397","EGF_Baseline":"0.04"},{"ID":"FBgn0010583","EGF_Baseline":"-0.77"},{"ID":"FBgn0025583","EGF_Baseline":"-2.18"},{"ID":"FBgn0032906","EGF_Baseline":"-1.63"},{"ID":"FBgn0031321","EGF_Baseline":"0.57"},{"ID":"FBgn0052568","EGF_Baseline":"0.69"},{"ID":"FBgn0030674","EGF_Baseline":"-0.45"},{"ID":"FBgn0085397","EGF_Baseline":"-1.19"},{"ID":"FBgn0038427","EGF_Baseline":"-0.17"},{"ID":"FBgn0033233","EGF_Baseline":"-1.14"},{"ID":"FBgn0033736","EGF_Baseline":"1.12"},{"ID":"FBgn0033495","EGF_Baseline":"0.82"},{"ID":"FBgn0020503","EGF_Baseline":"0.06"},{"ID":"FBgn0031885","EGF_Baseline":"0.65"},{"ID":"FBgn0067864","EGF_Baseline":"1.14"},{"ID":"FBgn0035785","EGF_Baseline":"-1.26"},{"ID":"FBgn0039673","EGF_Baseline":"-1.24"},{"ID":"FBgn0051717","EGF_Baseline":"7.19"},{"ID":"FBgn0030748","EGF_Baseline":"0.7"},{"ID":"FBgn0031751","EGF_Baseline":"1.32"},{"ID":"FBgn0039207","EGF_Baseline":"-0.99"},{"ID":"FBgn0067312","EGF_Baseline":"-0.52"},{"ID":"FBgn0052816","EGF_Baseline":"-0.83"},{"ID":"FBgn0040005","EGF_Baseline":"-0.55"},{"ID":"FBgn0040477","EGF_Baseline":"-0.87"},{"ID":"FBgn0029727","EGF_Baseline":"-1.32"},{"ID":"FBgn0039328","EGF_Baseline":"-1.79"},{"ID":"FBgn0066084","EGF_Baseline":"-0.97"},{"ID":"FBgn0000053","EGF_Baseline":"-0.76"},{"ID":"FBgn0030038","EGF_Baseline":"-0.8"},{"ID":"FBgn0052712","EGF_Baseline":"-0.73"},{"ID":"FBgn0038481","EGF_Baseline":"-0.55"},{"ID":"FBgn0034162","EGF_Baseline":"-1.68"},{"ID":"FBgn0005632","EGF_Baseline":"0.76"},{"ID":"FBgn0034860","EGF_Baseline":"-0.8"},{"ID":"FBgn0259979","EGF_Baseline":"-0.6"},{"ID":"FBgn0051140","EGF_Baseline":"-1.63"},{"ID":"FBgn0038959","EGF_Baseline":"-0.63"},{"ID":"FBgn0034138","EGF_Baseline":"4.47"},{"ID":"FBgn0003388","EGF_Baseline":"0.59"},{"ID":"FBgn0034945","EGF_Baseline":"0.6"},{"ID":"FBgn0033272","EGF_Baseline":"-1.66"},{"ID":"FBgn0050428","EGF_Baseline":"-1.18"},{"ID":"FBgn0033556","EGF_Baseline":"1.66"},{"ID":"FBgn0027341","EGF_Baseline":"0.18"},{"ID":"FBgn0029606","EGF_Baseline":"-0.57"},{"ID":"FBgn0261804","EGF_Baseline":"0.38"},{"ID":"FBgn0036465","EGF_Baseline":"-1.1"},{"ID":"FBgn0027610","EGF_Baseline":"-0.04"},{"ID":"FBgn0033997","EGF_Baseline":"-0.42"},{"ID":"FBgn0038834","EGF_Baseline":"4.94"},{"ID":"FBgn0027550","EGF_Baseline":"-1.34"},{"ID":"FBgn0030992","EGF_Baseline":"-1.81"},{"ID":"FBgn0037109","EGF_Baseline":"-1.46"},{"ID":"FBgn0039198","EGF_Baseline":"-0.35"},{"ID":"FBgn0019686","EGF_Baseline":"1.29"},{"ID":"FBgn0052251","EGF_Baseline":"-1.49"},{"ID":"FBgn0031987","EGF_Baseline":"0.97"},{"ID":"FBgn0034548","EGF_Baseline":"-1.8"},{"ID":"FBgn0053217","EGF_Baseline":"-2.01"},{"ID":"FBgn0038092","EGF_Baseline":"2.27"},{"ID":"FBgn0053627","EGF_Baseline":"-0.24"},{"ID":"FBgn0037010","EGF_Baseline":"-0.9"},{"ID":"FBgn0037895","EGF_Baseline":"1.46"},{"ID":"FBgn0034477","EGF_Baseline":"0.76"},{"ID":"FBgn0029705","EGF_Baseline":"0.48"},{"ID":"FBgn0013772","EGF_Baseline":"0.82"},{"ID":"FBgn0038437","EGF_Baseline":"0.19"},{"ID":"FBgn0053178","EGF_Baseline":"0.31"},{"ID":"FBgn0027559","EGF_Baseline":"0.79"},{"ID":"FBgn0038389","EGF_Baseline":"-1.8"},{"ID":"FBgn0031426","EGF_Baseline":"-0.48"},{"ID":"FBgn0040784","EGF_Baseline":"0.95"},{"ID":"FBgn0001187","EGF_Baseline":"1.42"},{"ID":"FBgn0052450","EGF_Baseline":"-0.36"},{"ID":"FBgn0028671","EGF_Baseline":"-1.32"},{"ID":"FBgn0015614","EGF_Baseline":"2.86"},{"ID":"FBgn0037009","EGF_Baseline":"-0.78"},{"ID":"FBgn0032359","EGF_Baseline":"-0.24"},{"ID":"FBgn0028717","EGF_Baseline":"-1.19"},{"ID":"FBgn0032450","EGF_Baseline":"0.92"},{"ID":"FBgn0033327","EGF_Baseline":"0.82"},{"ID":"FBgn0051820","EGF_Baseline":"-1.26"},{"ID":"FBgn0015773","EGF_Baseline":"-1.52"},{"ID":"FBgn0020299","EGF_Baseline":"-0.9"},{"ID":"FBgn0034537","EGF_Baseline":"0.5"},{"ID":"FBgn0030286","EGF_Baseline":"1.12"},{"ID":"FBgn0050469","EGF_Baseline":"0.17"},{"ID":"FBgn0260745","EGF_Baseline":"-0.9"},{"ID":"FBgn0037472","EGF_Baseline":"-0.17"},{"ID":"FBgn0051054","EGF_Baseline":"-0.99"},{"ID":"FBgn0031127","EGF_Baseline":"-0.44"},{"ID":"FBgn0051933","EGF_Baseline":"0.65"},{"ID":"FBgn0029133","EGF_Baseline":"-0.87"},{"ID":"FBgn0260986","EGF_Baseline":"-1.12"},{"ID":"FBgn0030503","EGF_Baseline":"1.52"},{"ID":"FBgn0028491","EGF_Baseline":"-0.51"},{"ID":"FBgn0039359","EGF_Baseline":"2.76"},{"ID":"FBgn0030447","EGF_Baseline":"0.68"},{"ID":"FBgn0000241","EGF_Baseline":"-1.04"},{"ID":"FBgn0083985","EGF_Baseline":"-1.97"},{"ID":"FBgn0030855","EGF_Baseline":"0.18"},{"ID":"FBgn0261241","EGF_Baseline":"-1.19"},{"ID":"FBgn0015268","EGF_Baseline":"-0.42"},{"ID":"FBgn0033907","EGF_Baseline":"0.6"},{"ID":"FBgn0032001","EGF_Baseline":"1.2"},{"ID":"FBgn0052758","EGF_Baseline":"-0.69"},{"ID":"FBgn0032208","EGF_Baseline":"-0.53"},{"ID":"FBgn0003742","EGF_Baseline":"0.79"},{"ID":"FBgn0002121","EGF_Baseline":"-0.22"},{"ID":"FBgn0010217","EGF_Baseline":"1.29"},{"ID":"FBgn0037042","EGF_Baseline":"0.89"},{"ID":"FBgn0035812","EGF_Baseline":"0.41"},{"ID":"FBgn0032940","EGF_Baseline":"-2.26"},{"ID":"FBgn0040377","EGF_Baseline":"-1.84"},{"ID":"FBgn0011834","EGF_Baseline":"0.53"},{"ID":"FBgn0039684","EGF_Baseline":"2.03"},{"ID":"FBgn0033392","EGF_Baseline":"0.3"},{"ID":"FBgn0026427","EGF_Baseline":"0.65"},{"ID":"FBgn0063491","EGF_Baseline":"-0.54"},{"ID":"FBgn0037970","EGF_Baseline":"-0.35"},{"ID":"FBgn0037648","EGF_Baseline":"-1.41"},{"ID":"FBgn0033154","EGF_Baseline":"-0.57"},{"ID":"FBgn0045499","EGF_Baseline":"1.74"},{"ID":"FBgn0259184","EGF_Baseline":"-0.82"},{"ID":"FBgn0031822","EGF_Baseline":"1.51"},{"ID":"FBgn0034543","EGF_Baseline":"-0.12"},{"ID":"FBgn0036731","EGF_Baseline":"-1.33"},{"ID":"FBgn0036849","EGF_Baseline":"-0.37"},{"ID":"FBgn0036825","EGF_Baseline":"2.35"},{"ID":"FBgn0031109","EGF_Baseline":"1.14"},{"ID":"FBgn0030990","EGF_Baseline":"-0.8"},{"ID":"FBgn0034655","EGF_Baseline":"-0.83"},{"ID":"FBgn0005617","EGF_Baseline":"-2.45"},{"ID":"FBgn0030764","EGF_Baseline":"-1.09"},{"ID":"FBgn0259173","EGF_Baseline":"1.7"},{"ID":"FBgn0052457","EGF_Baseline":"-2.3"},{"ID":"FBgn0036212","EGF_Baseline":"1.31"},{"ID":"FBgn0023530","EGF_Baseline":"-1.23"},{"ID":"FBgn0027514","EGF_Baseline":"-0.34"},{"ID":"FBgn0044811","EGF_Baseline":"-2.19"},{"ID":"FBgn0032445","EGF_Baseline":"1.49"},{"ID":"FBgn0036135","EGF_Baseline":"-1.23"},{"ID":"FBgn0053630","EGF_Baseline":"-0.84"},{"ID":"FBgn0030586","EGF_Baseline":"2.18"},{"ID":"FBgn0026313","EGF_Baseline":"-0.5"},{"ID":"FBgn0031263","EGF_Baseline":"-1.04"},{"ID":"FBgn0032633","EGF_Baseline":"0.56"},{"ID":"FBgn0037590","EGF_Baseline":"-1.25"},{"ID":"FBgn0036618","EGF_Baseline":"-1.44"},{"ID":"FBgn0047338","EGF_Baseline":"-0.43"},{"ID":"FBgn0015765","EGF_Baseline":"-0.62"},{"ID":"FBgn0039188","EGF_Baseline":"1.81"},{"ID":"FBgn0040812","EGF_Baseline":"-0.51"},{"ID":"FBgn0028399","EGF_Baseline":"0.32"},{"ID":"FBgn0250907","EGF_Baseline":"0.86"},{"ID":"FBgn0260767","EGF_Baseline":"0.79"},{"ID":"FBgn0051106","EGF_Baseline":"-0.07"},{"ID":"FBgn0011576","EGF_Baseline":"0.42"},{"ID":"FBgn0035542","EGF_Baseline":"-1.61"},{"ID":"FBgn0032626","EGF_Baseline":"0.17"},{"ID":"FBgn0053494","EGF_Baseline":"-1.15"},{"ID":"FBgn0033434","EGF_Baseline":"-0.38"},{"ID":"FBgn0039797","EGF_Baseline":"-1"},{"ID":"FBgn0040625","EGF_Baseline":"1.81"},{"ID":"FBgn0034106","EGF_Baseline":"-0.83"},{"ID":"FBgn0036124","EGF_Baseline":"-1.5"},{"ID":"FBgn0005634","EGF_Baseline":"1.55"},{"ID":"FBgn0053937","EGF_Baseline":"-2.17"},{"ID":"FBgn0003462","EGF_Baseline":"0.63"},{"ID":"FBgn0086768","EGF_Baseline":"0.41"},{"ID":"FBgn0037862","EGF_Baseline":"1.36"},{"ID":"FBgn0033888","EGF_Baseline":"-0.61"},{"ID":"FBgn0037260","EGF_Baseline":"1.63"},{"ID":"FBgn0003731","EGF_Baseline":"-8.29"},{"ID":"FBgn0038639","EGF_Baseline":"-1.37"},{"ID":"FBgn0036615","EGF_Baseline":"-0.98"},{"ID":"FBgn0086378","EGF_Baseline":"-0.87"},{"ID":"FBgn0031097","EGF_Baseline":"-1.34"},{"ID":"FBgn0038542","EGF_Baseline":"-1.34"},{"ID":"FBgn0028425","EGF_Baseline":"-1.09"},{"ID":"FBgn0029857","EGF_Baseline":"-0.26"},{"ID":"FBgn0004875","EGF_Baseline":"0.66"},{"ID":"FBgn0051648","EGF_Baseline":"-1.89"},{"ID":"FBgn0035928","EGF_Baseline":"0.22"},{"ID":"FBgn0261508","EGF_Baseline":"1"},{"ID":"FBgn0051314","EGF_Baseline":"1"},{"ID":"FBgn0034440","EGF_Baseline":"-1.55"},{"ID":"FBgn0031851","EGF_Baseline":"-0.83"},{"ID":"FBgn0029877","EGF_Baseline":"-0.84"},{"ID":"FBgn0261596","EGF_Baseline":"0.9"},{"ID":"FBgn0035517","EGF_Baseline":"0.78"},{"ID":"FBgn0030027","EGF_Baseline":"1.07"},{"ID":"FBgn0035823","EGF_Baseline":"0.98"},{"ID":"FBgn0011660","EGF_Baseline":"-1.82"},{"ID":"FBgn0032170","EGF_Baseline":"-1.48"},{"ID":"FBgn0025608","EGF_Baseline":"-1.22"},{"ID":"FBgn0039877","EGF_Baseline":"-0.97"},{"ID":"FBgn0260397","EGF_Baseline":"-0.05"},{"ID":"FBgn0035360","EGF_Baseline":"0.46"},{"ID":"FBgn0033388","EGF_Baseline":"-1.55"},{"ID":"FBgn0038927","EGF_Baseline":"1.14"},{"ID":"FBgn0037431","EGF_Baseline":"0.68"},{"ID":"FBgn0033337","EGF_Baseline":"1.25"},{"ID":"FBgn0028542","EGF_Baseline":"-1.09"},{"ID":"FBgn0030833","EGF_Baseline":"0.56"},{"ID":"FBgn0004588","EGF_Baseline":"-0.72"},{"ID":"FBgn0261789","EGF_Baseline":"3.75"},{"ID":"FBgn0034295","EGF_Baseline":"-0.61"},{"ID":"FBgn0036772","EGF_Baseline":"-0.49"},{"ID":"FBgn0031782","EGF_Baseline":"-0.1"},{"ID":"FBgn0030514","EGF_Baseline":"0.84"},{"ID":"FBgn0036752","EGF_Baseline":"-0.39"},{"ID":"FBgn0011770","EGF_Baseline":"-0.27"},{"ID":"FBgn0051195","EGF_Baseline":"0.29"},{"ID":"FBgn0050115","EGF_Baseline":"-1.21"},{"ID":"FBgn0037870","EGF_Baseline":"0.54"},{"ID":"FBgn0052392","EGF_Baseline":"-1.22"},{"ID":"FBgn0032343","EGF_Baseline":"-0.42"},{"ID":"FBgn0031562","EGF_Baseline":"1.56"},{"ID":"FBgn0000157","EGF_Baseline":"0.96"},{"ID":"FBgn0038423","EGF_Baseline":"1.06"},{"ID":"FBgn0034634","EGF_Baseline":"0.44"},{"ID":"FBgn0040279","EGF_Baseline":"-1.59"},{"ID":"FBgn0004456","EGF_Baseline":"2.08"},{"ID":"FBgn0015754","EGF_Baseline":"0.58"},{"ID":"FBgn0034867","EGF_Baseline":"-1.7"},{"ID":"FBgn0026398","EGF_Baseline":"1.96"},{"ID":"FBgn0002917","EGF_Baseline":"-1.58"},{"ID":"FBgn0051675","EGF_Baseline":"-0.94"},{"ID":"FBgn0030375","EGF_Baseline":"0.81"},{"ID":"FBgn0086371","EGF_Baseline":"1.09"},{"ID":"FBgn0036936","EGF_Baseline":"-0.45"},{"ID":"FBgn0035932","EGF_Baseline":"-0.59"},{"ID":"FBgn0034345","EGF_Baseline":"0.63"},{"ID":"FBgn0041235","EGF_Baseline":"-1.53"},{"ID":"FBgn0002873","EGF_Baseline":"-1.2"},{"ID":"FBgn0029657","EGF_Baseline":"1.07"},{"ID":"FBgn0052595","EGF_Baseline":"1.91"},{"ID":"FBgn0033310","EGF_Baseline":"0.87"},{"ID":"FBgn0039739","EGF_Baseline":"-0.55"},{"ID":"FBgn0051665","EGF_Baseline":"-1.17"},{"ID":"FBgn0037143","EGF_Baseline":"-1.32"},{"ID":"FBgn0001218","EGF_Baseline":"4.68"},{"ID":"FBgn0032974","EGF_Baseline":"-0.78"},{"ID":"FBgn0030570","EGF_Baseline":"-0.33"},{"ID":"FBgn0259749","EGF_Baseline":"1.22"},{"ID":"FBgn0038586","EGF_Baseline":"1.14"},{"ID":"FBgn0033138","EGF_Baseline":"-1.41"},{"ID":"FBgn0036759","EGF_Baseline":"-0.76"},{"ID":"FBgn0001319","EGF_Baseline":"0.92"},{"ID":"FBgn0038621","EGF_Baseline":"1.71"},{"ID":"FBgn0029158","EGF_Baseline":"0.6"},{"ID":"FBgn0001974","EGF_Baseline":"-0.93"},{"ID":"FBgn0014075","EGF_Baseline":"0.13"},{"ID":"FBgn0038721","EGF_Baseline":"-0.75"},{"ID":"FBgn0039873","EGF_Baseline":"-0.63"},{"ID":"FBgn0034050","EGF_Baseline":"0.55"},{"ID":"FBgn0026666","EGF_Baseline":"-1.7"},{"ID":"FBgn0030778","EGF_Baseline":"-1.62"},{"ID":"FBgn0026753","EGF_Baseline":"1.94"},{"ID":"FBgn0040099","EGF_Baseline":"-1.16"},{"ID":"FBgn0031473","EGF_Baseline":"-0.17"},{"ID":"FBgn0033167","EGF_Baseline":"-1.36"},{"ID":"FBgn0026369","EGF_Baseline":"0.19"},{"ID":"FBgn0039283","EGF_Baseline":"0.51"},{"ID":"FBgn0037000","EGF_Baseline":"-1.49"},{"ID":"FBgn0036066","EGF_Baseline":"-0.77"},{"ID":"FBgn0050480","EGF_Baseline":"-0.8"},{"ID":"FBgn0085390","EGF_Baseline":"2"},{"ID":"FBgn0036139","EGF_Baseline":"-0.58"},{"ID":"FBgn0040694","EGF_Baseline":"-1.31"},{"ID":"FBgn0001995","EGF_Baseline":"-0.37"},{"ID":"FBgn0030573","EGF_Baseline":"-1.4"},{"ID":"FBgn0039723","EGF_Baseline":"2.2"},{"ID":"FBgn0261572","EGF_Baseline":"-1.34"},{"ID":"FBgn0035028","EGF_Baseline":"-0.97"},{"ID":"FBgn0085479","EGF_Baseline":"1.29"},{"ID":"FBgn0064912","EGF_Baseline":"0.52"},{"ID":"FBgn0034186","EGF_Baseline":"0.67"},{"ID":"FBgn0036414","EGF_Baseline":"0.7"},{"ID":"FBgn0034666","EGF_Baseline":"1.6"},{"ID":"FBgn0028686","EGF_Baseline":"-1.09"},{"ID":"FBgn0036142","EGF_Baseline":"0.15"},{"ID":"FBgn0038989","EGF_Baseline":"-1.56"},{"ID":"FBgn0034976","EGF_Baseline":"-1.34"},{"ID":"FBgn0038347","EGF_Baseline":"0.83"},{"ID":"FBgn0025697","EGF_Baseline":"1.43"},{"ID":"FBgn0026318","EGF_Baseline":"-0.96"},{"ID":"FBgn0028470","EGF_Baseline":"-1.22"},{"ID":"FBgn0037741","EGF_Baseline":"0.48"},{"ID":"FBgn0030999","EGF_Baseline":"-1.01"},{"ID":"FBgn0039861","EGF_Baseline":"-1.72"},{"ID":"FBgn0259982","EGF_Baseline":"-0.32"},{"ID":"FBgn0051774","EGF_Baseline":"-2.72"},{"ID":"FBgn0050496","EGF_Baseline":"-1.64"},{"ID":"FBgn0032149","EGF_Baseline":"-1.65"},{"ID":"FBgn0260766","EGF_Baseline":"0.3"},{"ID":"FBgn0037992","EGF_Baseline":"0.39"},{"ID":"FBgn0039249","EGF_Baseline":"-1.31"},{"ID":"FBgn0051627","EGF_Baseline":"0.51"},{"ID":"FBgn0033931","EGF_Baseline":"0.21"},{"ID":"FBgn0030692","EGF_Baseline":"-0.21"},{"ID":"FBgn0035014","EGF_Baseline":"0.75"},{"ID":"FBgn0036667","EGF_Baseline":"1.19"},{"ID":"FBgn0052068","EGF_Baseline":"-0.96"},{"ID":"FBgn0020766","EGF_Baseline":"-0.95"},{"ID":"FBgn0032897","EGF_Baseline":"0.84"},{"ID":"FBgn0036173","EGF_Baseline":"-0.69"},{"ID":"FBgn0031419","EGF_Baseline":"-0.65"},{"ID":"FBgn0086695","EGF_Baseline":"0.51"},{"ID":"FBgn0035059","EGF_Baseline":"-1.25"},{"ID":"FBgn0014848","EGF_Baseline":"-1.5"},{"ID":"FBgn0031643","EGF_Baseline":"-1.32"},{"ID":"FBgn0010194","EGF_Baseline":"0.34"},{"ID":"FBgn0034592","EGF_Baseline":"0.24"},{"ID":"FBgn0031315","EGF_Baseline":"-1.33"},{"ID":"FBgn0053348","EGF_Baseline":"-1.08"},{"ID":"FBgn0036780","EGF_Baseline":"-0.63"},{"ID":"FBgn0069242","EGF_Baseline":"-1.67"},{"ID":"FBgn0040074","EGF_Baseline":"-1.24"},{"ID":"FBgn0050383","EGF_Baseline":"1.65"},{"ID":"FBgn0033058","EGF_Baseline":"1.12"},{"ID":"FBgn0038709","EGF_Baseline":"-1.53"},{"ID":"FBgn0029925","EGF_Baseline":"0.13"},{"ID":"FBgn0250825","EGF_Baseline":"0.91"},{"ID":"FBgn0031530","EGF_Baseline":"-1.91"},{"ID":"FBgn0260658","EGF_Baseline":"-0.6"},{"ID":"FBgn0058354","EGF_Baseline":"0.99"},{"ID":"FBgn0031468","EGF_Baseline":"1.22"},{"ID":"FBgn0035641","EGF_Baseline":"-1.5"},{"ID":"FBgn0083979","EGF_Baseline":"-1.04"},{"ID":"FBgn0050016","EGF_Baseline":"-1.12"},{"ID":"FBgn0034732","EGF_Baseline":"-1.95"},{"ID":"FBgn0039238","EGF_Baseline":"0.89"},{"ID":"FBgn0030837","EGF_Baseline":"1.35"},{"ID":"FBgn0051635","EGF_Baseline":"-0.53"},{"ID":"FBgn0052628","EGF_Baseline":"1.56"},{"ID":"FBgn0030944","EGF_Baseline":"0.86"},{"ID":"FBgn0037848","EGF_Baseline":"-0.12"},{"ID":"FBgn0040251","EGF_Baseline":"0.89"},{"ID":"FBgn0035538","EGF_Baseline":"1.32"},{"ID":"FBgn0010414","EGF_Baseline":"-0.44"},{"ID":"FBgn0034151","EGF_Baseline":"-1.43"},{"ID":"FBgn0032058","EGF_Baseline":"-1.7"},{"ID":"FBgn0001125","EGF_Baseline":"-1.49"},{"ID":"FBgn0005666","EGF_Baseline":"-1.79"},{"ID":"FBgn0027054","EGF_Baseline":"-0.27"},{"ID":"FBgn0031279","EGF_Baseline":"-0.85"},{"ID":"FBgn0050354","EGF_Baseline":"0.44"},{"ID":"FBgn0028689","EGF_Baseline":"2.58"},{"ID":"FBgn0086757","EGF_Baseline":"0.58"},{"ID":"FBgn0260750","EGF_Baseline":"1.09"},{"ID":"FBgn0047351","EGF_Baseline":"-1.76"},{"ID":"FBgn0259938","EGF_Baseline":"-2.4"},{"ID":"FBgn0015271","EGF_Baseline":"-0.92"},{"ID":"FBgn0020416","EGF_Baseline":"0.66"},{"ID":"FBgn0020018","EGF_Baseline":"0.35"},{"ID":"FBgn0038432","EGF_Baseline":"0.29"},{"ID":"FBgn0024319","EGF_Baseline":"2.79"},{"ID":"FBgn0034259","EGF_Baseline":"-0.86"},{"ID":"FBgn0034270","EGF_Baseline":"-0.63"},{"ID":"FBgn0052100","EGF_Baseline":"0.85"},{"ID":"FBgn0052110","EGF_Baseline":"0.32"},{"ID":"FBgn0032859","EGF_Baseline":"0.96"},{"ID":"FBgn0025878","EGF_Baseline":"-0.04"},{"ID":"FBgn0028983","EGF_Baseline":"-0.9"},{"ID":"FBgn0037019","EGF_Baseline":"0.34"},{"ID":"FBgn0036491","EGF_Baseline":"1.56"},{"ID":"FBgn0032111","EGF_Baseline":"-1.62"},{"ID":"FBgn0039835","EGF_Baseline":"-0.53"},{"ID":"FBgn0085415","EGF_Baseline":"-1.34"},{"ID":"FBgn0035558","EGF_Baseline":"-1.29"},{"ID":"FBgn0030326","EGF_Baseline":"-1.07"},{"ID":"FBgn0053757","EGF_Baseline":"1.41"},{"ID":"FBgn0014879","EGF_Baseline":"0.95"},{"ID":"FBgn0039747","EGF_Baseline":"2.07"},{"ID":"FBgn0053784","EGF_Baseline":"-1.45"},{"ID":"FBgn0038201","EGF_Baseline":"0.62"},{"ID":"FBgn0050476","EGF_Baseline":"-0.49"},{"ID":"FBgn0003865","EGF_Baseline":"0.97"},{"ID":"FBgn0034889","EGF_Baseline":"-1.17"},{"ID":"FBgn0030793","EGF_Baseline":"0.56"},{"ID":"FBgn0023545","EGF_Baseline":"0.7"},{"ID":"FBgn0023172","EGF_Baseline":"-0.2"},{"ID":"FBgn0261276","EGF_Baseline":"-1.26"},{"ID":"FBgn0003087","EGF_Baseline":"2.59"},{"ID":"FBgn0034967","EGF_Baseline":"-0.12"},{"ID":"FBgn0038238","EGF_Baseline":"-0.5"},{"ID":"FBgn0025366","EGF_Baseline":"0.64"},{"ID":"FBgn0036227","EGF_Baseline":"-0.57"},{"ID":"FBgn0030578","EGF_Baseline":"-0.51"},{"ID":"FBgn0037238","EGF_Baseline":"0.73"},{"ID":"FBgn0053325","EGF_Baseline":"0.51"},{"ID":"FBgn0032746","EGF_Baseline":"-1.4"},{"ID":"FBgn0036208","EGF_Baseline":"-1.13"},{"ID":"FBgn0085387","EGF_Baseline":"1.84"},{"ID":"FBgn0024912","EGF_Baseline":"0.82"},{"ID":"FBgn0030814","EGF_Baseline":"-1.04"},{"ID":"FBgn0037668","EGF_Baseline":"1.55"},{"ID":"FBgn0031529","EGF_Baseline":"-0.57"},{"ID":"FBgn0040153","EGF_Baseline":"0.87"},{"ID":"FBgn0032869","EGF_Baseline":"1.25"},{"ID":"FBgn0034389","EGF_Baseline":"-1.62"},{"ID":"FBgn0033373","EGF_Baseline":"0.71"},{"ID":"FBgn0024909","EGF_Baseline":"-1.85"},{"ID":"FBgn0034987","EGF_Baseline":"-0.86"},{"ID":"FBgn0036777","EGF_Baseline":"0.64"},{"ID":"FBgn0001222","EGF_Baseline":"-0.78"},{"ID":"FBgn0033813","EGF_Baseline":"-0.6"},{"ID":"FBgn0033543","EGF_Baseline":"1.57"},{"ID":"FBgn0003257","EGF_Baseline":"-2.3"},{"ID":"FBgn0039443","EGF_Baseline":"-0.73"},{"ID":"FBgn0040066","EGF_Baseline":"-1.01"},{"ID":"FBgn0260944","EGF_Baseline":"0.37"},{"ID":"FBgn0043577","EGF_Baseline":"-1.06"},{"ID":"FBgn0039338","EGF_Baseline":"-1.97"},{"ID":"FBgn0005642","EGF_Baseline":"-1.56"},{"ID":"FBgn0017578","EGF_Baseline":"-0.17"},{"ID":"FBgn0039112","EGF_Baseline":"-0.28"},{"ID":"FBgn0051718","EGF_Baseline":"1.1"},{"ID":"FBgn0030659","EGF_Baseline":"-0.84"},{"ID":"FBgn0085203","EGF_Baseline":"-1.58"},{"ID":"FBgn0024984","EGF_Baseline":"-0.39"},{"ID":"FBgn0010704","EGF_Baseline":"-1.08"},{"ID":"FBgn0054034","EGF_Baseline":"-0.3"},{"ID":"FBgn0033190","EGF_Baseline":"-0.96"},{"ID":"FBgn0032474","EGF_Baseline":"-0.25"},{"ID":"FBgn0033079","EGF_Baseline":"0.64"},{"ID":"FBgn0037666","EGF_Baseline":"1.21"},{"ID":"FBgn0000180","EGF_Baseline":"-1.28"},{"ID":"FBgn0036230","EGF_Baseline":"0.7"},{"ID":"FBgn0015278","EGF_Baseline":"-0.09"},{"ID":"FBgn0037447","EGF_Baseline":"1"},{"ID":"FBgn0051957","EGF_Baseline":"-1.35"},{"ID":"FBgn0024555","EGF_Baseline":"1.07"},{"ID":"FBgn0010381","EGF_Baseline":"-0.59"},{"ID":"FBgn0032405","EGF_Baseline":"-1.56"},{"ID":"FBgn0039640","EGF_Baseline":"-0.48"},{"ID":"FBgn0085484","EGF_Baseline":"-1.55"},{"ID":"FBgn0031650","EGF_Baseline":"-0.6"},{"ID":"FBgn0035407","EGF_Baseline":"0.85"},{"ID":"FBgn0031249","EGF_Baseline":"0.41"},{"ID":"FBgn0034639","EGF_Baseline":"-0.31"},{"ID":"FBgn0030030","EGF_Baseline":"-0.92"},{"ID":"FBgn0260939","EGF_Baseline":"1.53"},{"ID":"FBgn0036891","EGF_Baseline":"1.28"},{"ID":"FBgn0032884","EGF_Baseline":"-1.28"},{"ID":"FBgn0033699","EGF_Baseline":"3.19"},{"ID":"FBgn0028402","EGF_Baseline":"1.47"},{"ID":"FBgn0036627","EGF_Baseline":"0.09"},{"ID":"FBgn0019957","EGF_Baseline":"-2.85"},{"ID":"FBgn0039628","EGF_Baseline":"-1.56"},{"ID":"FBgn0010379","EGF_Baseline":"0.04"},{"ID":"FBgn0085252","EGF_Baseline":"-0.6"},{"ID":"FBgn0038286","EGF_Baseline":"1.2"},{"ID":"FBgn0031516","EGF_Baseline":"-0.3"},{"ID":"FBgn0033913","EGF_Baseline":"1.14"},{"ID":"FBgn0040629","EGF_Baseline":"1.3"},{"ID":"FBgn0032731","EGF_Baseline":"-1.31"},{"ID":"FBgn0054054","EGF_Baseline":"1.2"},{"ID":"FBgn0087040","EGF_Baseline":"2.16"},{"ID":"FBgn0035663","EGF_Baseline":"7.47"},{"ID":"FBgn0025634","EGF_Baseline":"-0.76"},{"ID":"FBgn0026749","EGF_Baseline":"-0.38"},{"ID":"FBgn0052945","EGF_Baseline":"1.7"},{"ID":"FBgn0031500","EGF_Baseline":"-1.11"},{"ID":"FBgn0033206","EGF_Baseline":"-1.11"},{"ID":"FBgn0050127","EGF_Baseline":"0.59"},{"ID":"FBgn0034689","EGF_Baseline":"0.7"},{"ID":"FBgn0036427","EGF_Baseline":"-1.94"},{"ID":"FBgn0032229","EGF_Baseline":"0.94"},{"ID":"FBgn0050081","EGF_Baseline":"1.09"},{"ID":"FBgn0037417","EGF_Baseline":"-1.78"},{"ID":"FBgn0015575","EGF_Baseline":"-1.02"},{"ID":"FBgn0042131","EGF_Baseline":"-0.56"},{"ID":"FBgn0039855","EGF_Baseline":"-1.56"},{"ID":"FBgn0030893","EGF_Baseline":"0.71"},{"ID":"FBgn0013997","EGF_Baseline":"0.96"},{"ID":"FBgn0027066","EGF_Baseline":"0.79"},{"ID":"FBgn0031068","EGF_Baseline":"-1.52"},{"ID":"FBgn0039597","EGF_Baseline":"1.06"},{"ID":"FBgn0038331","EGF_Baseline":"1.01"},{"ID":"FBgn0051104","EGF_Baseline":"1.02"},{"ID":"FBgn0035161","EGF_Baseline":"-0.47"},{"ID":"FBgn0010100","EGF_Baseline":"0.48"},{"ID":"FBgn0022160","EGF_Baseline":"-1.32"},{"ID":"FBgn0040653","EGF_Baseline":"-1.28"},{"ID":"FBgn0039434","EGF_Baseline":"-1.62"},{"ID":"FBgn0027070","EGF_Baseline":"-0.76"},{"ID":"FBgn0037818","EGF_Baseline":"1.29"},{"ID":"FBgn0031308","EGF_Baseline":"7.85"},{"ID":"FBgn0033608","EGF_Baseline":"0.6"},{"ID":"FBgn0027791","EGF_Baseline":"-0.86"},{"ID":"FBgn0034582","EGF_Baseline":"-0.23"},{"ID":"FBgn0036330","EGF_Baseline":"-0.65"},{"ID":"FBgn0000075","EGF_Baseline":"-1.35"},{"ID":"FBgn0039020","EGF_Baseline":"-0.75"},{"ID":"FBgn0050401","EGF_Baseline":"0.34"},{"ID":"FBgn0031080","EGF_Baseline":"0.54"},{"ID":"FBgn0031003","EGF_Baseline":"1.11"},{"ID":"FBgn0051007","EGF_Baseline":"-0.68"},{"ID":"FBgn0051921","EGF_Baseline":"-0.41"},{"ID":"FBgn0035710","EGF_Baseline":"-0.51"},{"ID":"FBgn0017567","EGF_Baseline":"-2"},{"ID":"FBgn0002440","EGF_Baseline":"-0.55"},{"ID":"FBgn0038847","EGF_Baseline":"1.01"},{"ID":"FBgn0038558","EGF_Baseline":"0.47"},{"ID":"FBgn0032036","EGF_Baseline":"0.55"},{"ID":"FBgn0011305","EGF_Baseline":"0.9"},{"ID":"FBgn0036959","EGF_Baseline":"-2.07"},{"ID":"FBgn0053294","EGF_Baseline":"-0.82"},{"ID":"FBgn0033486","EGF_Baseline":"0.41"},{"ID":"FBgn0033225","EGF_Baseline":"-1.54"},{"ID":"FBgn0031398","EGF_Baseline":"-1.32"},{"ID":"FBgn0032692","EGF_Baseline":"-2"},{"ID":"FBgn0025712","EGF_Baseline":"0.6"},{"ID":"FBgn0083949","EGF_Baseline":"1.08"},{"ID":"FBgn0030985","EGF_Baseline":"-1.35"},{"ID":"FBgn0038326","EGF_Baseline":"-0.72"},{"ID":"FBgn0028932","EGF_Baseline":"0.36"},{"ID":"FBgn0003071","EGF_Baseline":"0.8"},{"ID":"FBgn0039994","EGF_Baseline":"-1.39"},{"ID":"FBgn0032664","EGF_Baseline":"-0.56"},{"ID":"FBgn0042174","EGF_Baseline":"-0.47"},{"ID":"FBgn0031522","EGF_Baseline":"-0.07"},{"ID":"FBgn0036952","EGF_Baseline":"-0.34"},{"ID":"FBgn0050065","EGF_Baseline":"-1.49"},{"ID":"FBgn0051473","EGF_Baseline":"0.53"},{"ID":"FBgn0001089","EGF_Baseline":"1.43"},{"ID":"FBgn0052694","EGF_Baseline":"1.26"},{"ID":"FBgn0034470","EGF_Baseline":"1.52"},{"ID":"FBgn0034158","EGF_Baseline":"0.34"},{"ID":"FBgn0039091","EGF_Baseline":"-1.84"},{"ID":"FBgn0036819","EGF_Baseline":"2.19"},{"ID":"FBgn0025469","EGF_Baseline":"-0.78"},{"ID":"FBgn0000247","EGF_Baseline":"2.16"},{"ID":"FBgn0031244","EGF_Baseline":"-1.24"},{"ID":"FBgn0034455","EGF_Baseline":"-0.23"},{"ID":"FBgn0033994","EGF_Baseline":"0.2"},{"ID":"FBgn0051460","EGF_Baseline":"-0.71"},{"ID":"FBgn0052150","EGF_Baseline":"-0.63"},{"ID":"FBgn0050125","EGF_Baseline":"-0.42"},{"ID":"FBgn0039108","EGF_Baseline":"-0.63"},{"ID":"FBgn0052479","EGF_Baseline":"-1.63"},{"ID":"FBgn0038919","EGF_Baseline":"0.84"},{"ID":"FBgn0003250","EGF_Baseline":"1.4"},{"ID":"FBgn0021856","EGF_Baseline":"0.54"},{"ID":"FBgn0002778","EGF_Baseline":"-0.75"},{"ID":"FBgn0034049","EGF_Baseline":"-1.92"},{"ID":"FBgn0039915","EGF_Baseline":"1.86"},{"ID":"FBgn0000299","EGF_Baseline":"-0.65"},{"ID":"FBgn0001989","EGF_Baseline":"-1.13"},{"ID":"FBgn0261290","EGF_Baseline":"-1.46"},{"ID":"FBgn0027596","EGF_Baseline":"1.32"},{"ID":"FBgn0036795","EGF_Baseline":"-0.8"},{"ID":"FBgn0045470","EGF_Baseline":"-2.38"},{"ID":"FBgn0037114","EGF_Baseline":"0.9"},{"ID":"FBgn0034420","EGF_Baseline":"-1.26"},{"ID":"FBgn0026388","EGF_Baseline":"-1.87"},{"ID":"FBgn0011674","EGF_Baseline":"1.58"},{"ID":"FBgn0031490","EGF_Baseline":"-1.45"},{"ID":"FBgn0086200","EGF_Baseline":"0.62"},{"ID":"FBgn0261794","EGF_Baseline":"-0.52"},{"ID":"FBgn0023095","EGF_Baseline":"2.34"},{"ID":"FBgn0053971","EGF_Baseline":"0.23"},{"ID":"FBgn0013685","EGF_Baseline":"0.76"},{"ID":"FBgn0051064","EGF_Baseline":"2.48"},{"ID":"FBgn0029664","EGF_Baseline":"0.45"},{"ID":"FBgn0036467","EGF_Baseline":"0.7"},{"ID":"FBgn0003082","EGF_Baseline":"-1.68"},{"ID":"FBgn0038681","EGF_Baseline":"-1.32"},{"ID":"FBgn0033601","EGF_Baseline":"-0.56"},{"ID":"FBgn0040319","EGF_Baseline":"-0.79"},{"ID":"FBgn0040234","EGF_Baseline":"-0.99"},{"ID":"FBgn0031702","EGF_Baseline":"1.46"},{"ID":"FBgn0040056","EGF_Baseline":"0.76"},{"ID":"FBgn0005410","EGF_Baseline":"-1.83"},{"ID":"FBgn0038551","EGF_Baseline":"0.74"},{"ID":"FBgn0037515","EGF_Baseline":"-1.26"},{"ID":"FBgn0053639","EGF_Baseline":"-1.97"},{"ID":"FBgn0025628","EGF_Baseline":"-1.15"},{"ID":"FBgn0030622","EGF_Baseline":"-0.97"},{"ID":"FBgn0003396","EGF_Baseline":"-1.18"},{"ID":"FBgn0038102","EGF_Baseline":"-1.61"},{"ID":"FBgn0027108","EGF_Baseline":"1.28"},{"ID":"FBgn0040900","EGF_Baseline":"1.25"},{"ID":"FBgn0046685","EGF_Baseline":"1.07"},{"ID":"FBgn0031100","EGF_Baseline":"-0.38"},{"ID":"FBgn0030493","EGF_Baseline":"0.82"},{"ID":"FBgn0035839","EGF_Baseline":"-0.91"},{"ID":"FBgn0061196","EGF_Baseline":"-0.37"},{"ID":"FBgn0026389","EGF_Baseline":"-1.01"},{"ID":"FBgn0083940","EGF_Baseline":"1.23"},{"ID":"FBgn0035553","EGF_Baseline":"-1.3"},{"ID":"FBgn0034839","EGF_Baseline":"-1.31"},{"ID":"FBgn0039929","EGF_Baseline":"0.74"},{"ID":"FBgn0022029","EGF_Baseline":"-0.11"},{"ID":"FBgn0032799","EGF_Baseline":"1.21"},{"ID":"FBgn0032601","EGF_Baseline":"0.84"},{"ID":"FBgn0039900","EGF_Baseline":"-1.35"},{"ID":"FBgn0039742","EGF_Baseline":"1.25"},{"ID":"FBgn0037792","EGF_Baseline":"1.2"},{"ID":"FBgn0031908","EGF_Baseline":"-0.74"},{"ID":"FBgn0036646","EGF_Baseline":"-1.73"},{"ID":"FBgn0035334","EGF_Baseline":"0.74"},{"ID":"FBgn0037340","EGF_Baseline":"-1.06"},{"ID":"FBgn0004045","EGF_Baseline":"1.15"},{"ID":"FBgn0001120","EGF_Baseline":"0.52"},{"ID":"FBgn0010926","EGF_Baseline":"-1.15"},{"ID":"FBgn0037082","EGF_Baseline":"-0.4"},{"ID":"FBgn0030189","EGF_Baseline":"0.67"},{"ID":"FBgn0016038","EGF_Baseline":"-1.19"},{"ID":"FBgn0037634","EGF_Baseline":"1.1"},{"ID":"FBgn0032922","EGF_Baseline":"-0.47"},{"ID":"FBgn0039101","EGF_Baseline":"-1.52"},{"ID":"FBgn0036727","EGF_Baseline":"-0.65"},{"ID":"FBgn0052835","EGF_Baseline":"-0.82"},{"ID":"FBgn0015520","EGF_Baseline":"-0.33"},{"ID":"FBgn0035751","EGF_Baseline":"-1.69"},{"ID":"FBgn0005655","EGF_Baseline":"1.71"},{"ID":"FBgn0034617","EGF_Baseline":"-0.97"},{"ID":"FBgn0026417","EGF_Baseline":"0.81"},{"ID":"FBgn0041709","EGF_Baseline":"-0.12"},{"ID":"FBgn0032439","EGF_Baseline":"-0.8"},{"ID":"FBgn0002716","EGF_Baseline":"0.39"},{"ID":"FBgn0015316","EGF_Baseline":"-1.12"},{"ID":"FBgn0086355","EGF_Baseline":"0.92"},{"ID":"FBgn0261881","EGF_Baseline":"0.14"},{"ID":"FBgn0033864","EGF_Baseline":"0.39"},{"ID":"FBgn0027587","EGF_Baseline":"0.75"},{"ID":"FBgn0000071","EGF_Baseline":"1.72"},{"ID":"FBgn0033983","EGF_Baseline":"-0.47"},{"ID":"FBgn0038915","EGF_Baseline":"-1.05"},{"ID":"FBgn0032805","EGF_Baseline":"-2.1"},{"ID":"FBgn0030629","EGF_Baseline":"-1.5"},{"ID":"FBgn0086605","EGF_Baseline":"1.18"},{"ID":"FBgn0260388","EGF_Baseline":"-0.98"},{"ID":"FBgn0034501","EGF_Baseline":"2.96"},{"ID":"FBgn0037315","EGF_Baseline":"-2"},{"ID":"FBgn0001301","EGF_Baseline":"1.05"},{"ID":"FBgn0044826","EGF_Baseline":"2.51"},{"ID":"FBgn0035888","EGF_Baseline":"-0.98"},{"ID":"FBgn0052107","EGF_Baseline":"0.7"},{"ID":"FBgn0030745","EGF_Baseline":"0.84"},{"ID":"FBgn0250834","EGF_Baseline":"0.74"},{"ID":"FBgn0033212","EGF_Baseline":"-1.68"},{"ID":"FBgn0022224","EGF_Baseline":"-1.31"},{"ID":"FBgn0260996","EGF_Baseline":"0.47"},{"ID":"FBgn0036527","EGF_Baseline":"-0.25"},{"ID":"FBgn0035122","EGF_Baseline":"-0.54"},{"ID":"FBgn0039310","EGF_Baseline":"1.56"},{"ID":"FBgn0037567","EGF_Baseline":"1.81"},{"ID":"FBgn0039260","EGF_Baseline":"-0.93"},{"ID":"FBgn0038879","EGF_Baseline":"0.5"},{"ID":"FBgn0030593","EGF_Baseline":"-1.32"},{"ID":"FBgn0040531","EGF_Baseline":"-1.59"},{"ID":"FBgn0034713","EGF_Baseline":"0.34"},{"ID":"FBgn0039467","EGF_Baseline":"-0.91"},{"ID":"FBgn0038448","EGF_Baseline":"0.22"},{"ID":"FBgn0038872","EGF_Baseline":"0.19"},{"ID":"FBgn0035799","EGF_Baseline":"-1.54"},{"ID":"FBgn0017418","EGF_Baseline":"-0.99"},{"ID":"FBgn0086690","EGF_Baseline":"1.16"},{"ID":"FBgn0260991","EGF_Baseline":"1.44"},{"ID":"FBgn0033809","EGF_Baseline":"-0.88"},{"ID":"FBgn0030098","EGF_Baseline":"-1.43"},{"ID":"FBgn0032055","EGF_Baseline":"-1.13"},{"ID":"FBgn0037397","EGF_Baseline":"0.58"},{"ID":"FBgn0037721","EGF_Baseline":"0.7"},{"ID":"FBgn0031975","EGF_Baseline":"0.63"},{"ID":"FBgn0037976","EGF_Baseline":"-1.46"},{"ID":"FBgn0037203","EGF_Baseline":"-0.51"},{"ID":"FBgn0016031","EGF_Baseline":"-0.41"},{"ID":"FBgn0034791","EGF_Baseline":"1.11"},{"ID":"FBgn0029669","EGF_Baseline":"-1.44"},{"ID":"FBgn0032457","EGF_Baseline":"0.7"},{"ID":"FBgn0036394","EGF_Baseline":"-0.86"},{"ID":"FBgn0038150","EGF_Baseline":"-0.77"},{"ID":"FBgn0035473","EGF_Baseline":"-0.31"},{"ID":"FBgn0085423","EGF_Baseline":"1.41"},{"ID":"FBgn0023395","EGF_Baseline":"-2.06"},{"ID":"FBgn0053125","EGF_Baseline":"0.8"},{"ID":"FBgn0029647","EGF_Baseline":"1.51"},{"ID":"FBgn0030687","EGF_Baseline":"1.3"},{"ID":"FBgn0034066","EGF_Baseline":"0.49"},{"ID":"FBgn0001179","EGF_Baseline":"-0.23"},{"ID":"FBgn0028525","EGF_Baseline":"-0.85"},{"ID":"FBgn0031804","EGF_Baseline":"0.98"},{"ID":"FBgn0031384","EGF_Baseline":"-1.34"},{"ID":"FBgn0035689","EGF_Baseline":"-1.3"},{"ID":"FBgn0000527","EGF_Baseline":"-0.14"},{"ID":"FBgn0032430","EGF_Baseline":"0.48"},{"ID":"FBgn0033784","EGF_Baseline":"-0.83"},{"ID":"FBgn0035498","EGF_Baseline":"0.36"},{"ID":"FBgn0083969","EGF_Baseline":"0.55"},{"ID":"FBgn0014903","EGF_Baseline":"0.47"},{"ID":"FBgn0036239","EGF_Baseline":"3.09"},{"ID":"FBgn0033725","EGF_Baseline":"-0.77"},{"ID":"FBgn0035379","EGF_Baseline":"0.54"},{"ID":"FBgn0037603","EGF_Baseline":"0.81"},{"ID":"FBgn0003275","EGF_Baseline":"6.63"},{"ID":"FBgn0036495","EGF_Baseline":"-1.17"},{"ID":"FBgn0052117","EGF_Baseline":"1.36"},{"ID":"FBgn0028412","EGF_Baseline":"-0.21"},{"ID":"FBgn0034099","EGF_Baseline":"-0.48"},{"ID":"FBgn0030234","EGF_Baseline":"-0.56"},{"ID":"FBgn0047205","EGF_Baseline":"-1.66"},{"ID":"FBgn0014465","EGF_Baseline":"0.57"},{"ID":"FBgn0035978","EGF_Baseline":"0.92"},{"ID":"FBgn0051544","EGF_Baseline":"1.67"},{"ID":"FBgn0038475","EGF_Baseline":"-1.21"},{"ID":"FBgn0031078","EGF_Baseline":"0.42"},{"ID":"FBgn0037728","EGF_Baseline":"1.44"},{"ID":"FBgn0037538","EGF_Baseline":"1.11"},{"ID":"FBgn0032929","EGF_Baseline":"-0.87"},{"ID":"FBgn0030480","EGF_Baseline":"1.04"},{"ID":"FBgn0036111","EGF_Baseline":"0.19"},{"ID":"FBgn0020930","EGF_Baseline":"0.85"},{"ID":"FBgn0030719","EGF_Baseline":"1.16"},{"ID":"FBgn0040212","EGF_Baseline":"0.52"},{"ID":"FBgn0028507","EGF_Baseline":"-0.85"},{"ID":"FBgn0032597","EGF_Baseline":"-0.65"},{"ID":"FBgn0039156","EGF_Baseline":"-1.5"},{"ID":"FBgn0039544","EGF_Baseline":"-1.06"},{"ID":"FBgn0039765","EGF_Baseline":"-1.75"},{"ID":"FBgn0261587","EGF_Baseline":"-1.43"},{"ID":"FBgn0052085","EGF_Baseline":"-0.91"},{"ID":"FBgn0045477","EGF_Baseline":"0.53"},{"ID":"FBgn0035985","EGF_Baseline":"-0.31"},{"ID":"FBgn0031347","EGF_Baseline":"0.75"},{"ID":"FBgn0029766","EGF_Baseline":"-0.8"},{"ID":"FBgn0036676","EGF_Baseline":"-1.17"},{"ID":"FBgn0036581","EGF_Baseline":"2.89"},{"ID":"FBgn0036403","EGF_Baseline":"-1.11"},{"ID":"FBgn0036940","EGF_Baseline":"0.83"},{"ID":"FBgn0040973","EGF_Baseline":"2.67"},{"ID":"FBgn0051015","EGF_Baseline":"-1.32"},{"ID":"FBgn0004367","EGF_Baseline":"-0.79"},{"ID":"FBgn0039887","EGF_Baseline":"0.27"},{"ID":"FBgn0034363","EGF_Baseline":"1.15"},{"ID":"FBgn0038088","EGF_Baseline":"0.78"},{"ID":"FBgn0025836","EGF_Baseline":"-0.54"},{"ID":"FBgn0033792","EGF_Baseline":"-0.58"},{"ID":"FBgn0038890","EGF_Baseline":"-1.73"},{"ID":"FBgn0037035","EGF_Baseline":"1.17"},{"ID":"FBgn0038589","EGF_Baseline":"-1.2"},{"ID":"FBgn0035268","EGF_Baseline":"0.9"},{"ID":"FBgn0037552","EGF_Baseline":"-0.97"},{"ID":"FBgn0033375","EGF_Baseline":"0.6"},{"ID":"FBgn0019886","EGF_Baseline":"-0.52"},{"ID":"FBgn0051462","EGF_Baseline":"-1.29"},{"ID":"FBgn0033656","EGF_Baseline":"0.51"},{"ID":"FBgn0034842","EGF_Baseline":"-1.8"},{"ID":"FBgn0027493","EGF_Baseline":"1.1"},{"ID":"FBgn0032291","EGF_Baseline":"0.54"},{"ID":"FBgn0010278","EGF_Baseline":"-2.13"},{"ID":"FBgn0033349","EGF_Baseline":"-1.71"},{"ID":"FBgn0031050","EGF_Baseline":"-0.82"},{"ID":"FBgn0035298","EGF_Baseline":"0.42"},{"ID":"FBgn0000422","EGF_Baseline":"-1.86"},{"ID":"FBgn0032812","EGF_Baseline":"-1.01"},{"ID":"FBgn0036188","EGF_Baseline":"-0.39"},{"ID":"FBgn0033353","EGF_Baseline":"-1.04"},{"ID":"FBgn0036155","EGF_Baseline":"0.22"},{"ID":"FBgn0031389","EGF_Baseline":"-0.7"},{"ID":"FBgn0029838","EGF_Baseline":"-0.47"},{"ID":"FBgn0038849","EGF_Baseline":"-0.57"},{"ID":"FBgn0030946","EGF_Baseline":"0.69"},{"ID":"FBgn0026713","EGF_Baseline":"0.76"},{"ID":"FBgn0038870","EGF_Baseline":"-2.34"},{"ID":"FBgn0259245","EGF_Baseline":"-1.44"},{"ID":"FBgn0038002","EGF_Baseline":"1.49"},{"ID":"FBgn0261673","EGF_Baseline":"-2.21"},{"ID":"FBgn0030889","EGF_Baseline":"-0.81"},{"ID":"FBgn0034288","EGF_Baseline":"-1.31"},{"ID":"FBgn0050076","EGF_Baseline":"0.7"},{"ID":"FBgn0038453","EGF_Baseline":"-0.42"},{"ID":"FBgn0036306","EGF_Baseline":"-1.32"},{"ID":"FBgn0031722","EGF_Baseline":"-0.31"},{"ID":"FBgn0010109","EGF_Baseline":"-0.91"},{"ID":"FBgn0038143","EGF_Baseline":"1.12"},{"ID":"FBgn0033238","EGF_Baseline":"-1.03"},{"ID":"FBgn0010825","EGF_Baseline":"-0.33"},{"ID":"FBgn0029738","EGF_Baseline":"-0.95"},{"ID":"FBgn0036354","EGF_Baseline":"0.9"},{"ID":"FBgn0035449","EGF_Baseline":"-1.28"},{"ID":"FBgn0028743","EGF_Baseline":"-0.25"},{"ID":"FBgn0085458","EGF_Baseline":"0.75"},{"ID":"FBgn0033139","EGF_Baseline":"-0.68"},{"ID":"FBgn0013810","EGF_Baseline":"0.62"},{"ID":"FBgn0027936","EGF_Baseline":"4.63"},{"ID":"FBgn0003360","EGF_Baseline":"-1.55"},{"ID":"FBgn0031571","EGF_Baseline":"1.14"},{"ID":"FBgn0032819","EGF_Baseline":"-0.76"},{"ID":"FBgn0036896","EGF_Baseline":"1.12"},{"ID":"FBgn0065110","EGF_Baseline":"-0.38"},{"ID":"FBgn0003137","EGF_Baseline":"1.21"},{"ID":"FBgn0039810","EGF_Baseline":"1.27"},{"ID":"FBgn0030409","EGF_Baseline":"-1.71"},{"ID":"FBgn0037027","EGF_Baseline":"-0.39"},{"ID":"FBgn0003139","EGF_Baseline":"0.07"},{"ID":"FBgn0034709","EGF_Baseline":"1.16"},{"ID":"FBgn0051802","EGF_Baseline":"0.79"},{"ID":"FBgn0031738","EGF_Baseline":"0.4"},{"ID":"FBgn0036622","EGF_Baseline":"-0.99"},{"ID":"FBgn0037549","EGF_Baseline":"-0.55"},{"ID":"FBgn0035104","EGF_Baseline":"-1.24"},{"ID":"FBgn0015544","EGF_Baseline":"-1.21"},{"ID":"FBgn0000094","EGF_Baseline":"-0.45"},{"ID":"FBgn0030724","EGF_Baseline":"1.84"},{"ID":"FBgn0261293","EGF_Baseline":"-1.09"},{"ID":"FBgn0023516","EGF_Baseline":"0.52"},{"ID":"FBgn0004381","EGF_Baseline":"0.45"},{"ID":"FBgn0036017","EGF_Baseline":"-1.25"},{"ID":"FBgn0035583","EGF_Baseline":"-1.6"},{"ID":"FBgn0030096","EGF_Baseline":"-0.51"},{"ID":"FBgn0039958","EGF_Baseline":"0.26"},{"ID":"FBgn0036340","EGF_Baseline":"-0.25"},{"ID":"FBgn0032645","EGF_Baseline":"-0.8"},{"ID":"FBgn0036734","EGF_Baseline":"-1.79"},{"ID":"FBgn0033715","EGF_Baseline":"-1.47"},{"ID":"FBgn0053140","EGF_Baseline":"0.21"},{"ID":"FBgn0031693","EGF_Baseline":"-0.85"},{"ID":"FBgn0029945","EGF_Baseline":"-1.31"},{"ID":"FBgn0034281","EGF_Baseline":"0.48"},{"ID":"FBgn0051800","EGF_Baseline":"-1.63"},{"ID":"FBgn0260872","EGF_Baseline":"0.2"},{"ID":"FBgn0034391","EGF_Baseline":"-1.5"},{"ID":"FBgn0019660","EGF_Baseline":"0.56"},{"ID":"FBgn0052311","EGF_Baseline":"-1.67"},{"ID":"FBgn0030260","EGF_Baseline":"0.82"},{"ID":"FBgn0031462","EGF_Baseline":"0.24"},{"ID":"FBgn0035960","EGF_Baseline":"0.28"},{"ID":"FBgn0034360","EGF_Baseline":"0.41"},{"ID":"FBgn0035136","EGF_Baseline":"0.78"},{"ID":"FBgn0033184","EGF_Baseline":"-0.8"},{"ID":"FBgn0036470","EGF_Baseline":"1.37"},{"ID":"FBgn0030989","EGF_Baseline":"-0.8"},{"ID":"FBgn0032969","EGF_Baseline":"-2.01"},{"ID":"FBgn0001092","EGF_Baseline":"1.2"},{"ID":"FBgn0041605","EGF_Baseline":"1.29"},{"ID":"FBgn0031903","EGF_Baseline":"-1.14"},{"ID":"FBgn0031700","EGF_Baseline":"0.88"},{"ID":"FBgn0039732","EGF_Baseline":"-1.03"},{"ID":"FBgn0037483","EGF_Baseline":"1.55"},{"ID":"FBgn0004896","EGF_Baseline":"0.4"},{"ID":"FBgn0038608","EGF_Baseline":"-0.81"},{"ID":"FBgn0042138","EGF_Baseline":"-0.29"},{"ID":"FBgn0031421","EGF_Baseline":"-0.62"},{"ID":"FBgn0030248","EGF_Baseline":"-0.54"},{"ID":"FBgn0038470","EGF_Baseline":"0.67"},{"ID":"FBgn0039402","EGF_Baseline":"0.15"},{"ID":"FBgn0034925","EGF_Baseline":"-0.33"},{"ID":"FBgn0035471","EGF_Baseline":"-0.78"},{"ID":"FBgn0040732","EGF_Baseline":"-1.21"},{"ID":"FBgn0033469","EGF_Baseline":"0.29"},{"ID":"FBgn0031409","EGF_Baseline":"-0.75"},{"ID":"FBgn0033968","EGF_Baseline":"0.99"},{"ID":"FBgn0011211","EGF_Baseline":"-0.56"},{"ID":"FBgn0259108","EGF_Baseline":"2.73"},{"ID":"FBgn0034804","EGF_Baseline":"0.6"},{"ID":"FBgn0031834","EGF_Baseline":"-1.82"},{"ID":"FBgn0086475","EGF_Baseline":"-0.91"},{"ID":"FBgn0052043","EGF_Baseline":"1.21"},{"ID":"FBgn0031026","EGF_Baseline":"0.51"},{"ID":"FBgn0036250","EGF_Baseline":"0.74"},{"ID":"FBgn0000579","EGF_Baseline":"1.45"},{"ID":"FBgn0026401","EGF_Baseline":"-0.48"},{"ID":"FBgn0039131","EGF_Baseline":"-0.7"},{"ID":"FBgn0038315","EGF_Baseline":"0.75"},{"ID":"FBgn0259703","EGF_Baseline":"1"},{"ID":"FBgn0087011","EGF_Baseline":"-0.76"},{"ID":"FBgn0027784","EGF_Baseline":"0.34"},{"ID":"FBgn0028841","EGF_Baseline":"-0.68"},{"ID":"FBgn0032768","EGF_Baseline":"-1.91"},{"ID":"FBgn0051789","EGF_Baseline":"0.78"},{"ID":"FBgn0032244","EGF_Baseline":"0.97"},{"ID":"FBgn0039145","EGF_Baseline":"-0.11"},{"ID":"FBgn0037280","EGF_Baseline":"0.36"},{"ID":"FBgn0036977","EGF_Baseline":"0.75"},{"ID":"FBgn0259682","EGF_Baseline":"0.85"},{"ID":"FBgn0043043","EGF_Baseline":"1.41"},{"ID":"FBgn0031018","EGF_Baseline":"-0.86"},{"ID":"FBgn0038705","EGF_Baseline":"-1.02"},{"ID":"FBgn0000524","EGF_Baseline":"-0.21"},{"ID":"FBgn0034626","EGF_Baseline":"0.98"},{"ID":"FBgn0038938","EGF_Baseline":"-1.81"},{"ID":"FBgn0038130","EGF_Baseline":"1.09"},{"ID":"FBgn0027503","EGF_Baseline":"-1.43"},{"ID":"FBgn0034215","EGF_Baseline":"-1.98"},{"ID":"FBgn0036704","EGF_Baseline":"-1.51"},{"ID":"FBgn0040849","EGF_Baseline":"-1.04"},{"ID":"FBgn0011280","EGF_Baseline":"-1.18"},{"ID":"FBgn0033786","EGF_Baseline":"1.29"},{"ID":"FBgn0032839","EGF_Baseline":"-0.71"},{"ID":"FBgn0052850","EGF_Baseline":"-0.1"},{"ID":"FBgn0033021","EGF_Baseline":"-0.02"},{"ID":"FBgn0002174","EGF_Baseline":"-0.39"},{"ID":"FBgn0037073","EGF_Baseline":"0.8"},{"ID":"FBgn0039235","EGF_Baseline":"-1.1"},{"ID":"FBgn0259996","EGF_Baseline":"1.82"},{"ID":"FBgn0005778","EGF_Baseline":"0.67"},{"ID":"FBgn0039044","EGF_Baseline":"2.3"},{"ID":"FBgn0039201","EGF_Baseline":"-0.74"},{"ID":"FBgn0000063","EGF_Baseline":"-0.63"},{"ID":"FBgn0038773","EGF_Baseline":"-1.13"},{"ID":"FBgn0037835","EGF_Baseline":"-1.89"},{"ID":"FBgn0032694","EGF_Baseline":"-1.79"},{"ID":"FBgn0085216","EGF_Baseline":"0.55"},{"ID":"FBgn0025821","EGF_Baseline":"0.88"},{"ID":"FBgn0024921","EGF_Baseline":"-1.79"},{"ID":"FBgn0261612","EGF_Baseline":"-0.92"},{"ID":"FBgn0043884","EGF_Baseline":"-1.19"},{"ID":"FBgn0053530","EGF_Baseline":"-0.88"},{"ID":"FBgn0026634","EGF_Baseline":"0.86"},{"ID":"FBgn0037936","EGF_Baseline":"0.45"},{"ID":"FBgn0050339","EGF_Baseline":"1.25"},{"ID":"FBgn0040763","EGF_Baseline":"0.74"},{"ID":"FBgn0027864","EGF_Baseline":"0.16"},{"ID":"FBgn0052283","EGF_Baseline":"1.26"},{"ID":"FBgn0031267","EGF_Baseline":"-1.1"},{"ID":"FBgn0259226","EGF_Baseline":"1.43"},{"ID":"FBgn0034304","EGF_Baseline":"-0.17"},{"ID":"FBgn0029717","EGF_Baseline":"-0.66"},{"ID":"FBgn0028953","EGF_Baseline":"-0.6"},{"ID":"FBgn0260450","EGF_Baseline":"0.56"},{"ID":"FBgn0037712","EGF_Baseline":"0.68"},{"ID":"FBgn0052512","EGF_Baseline":"-0.85"},{"ID":"FBgn0051128","EGF_Baseline":"0.98"},{"ID":"FBgn0032286","EGF_Baseline":"-1.12"},{"ID":"FBgn0039612","EGF_Baseline":"-0.78"},{"ID":"FBgn0085417","EGF_Baseline":"0.47"},{"ID":"FBgn0040283","EGF_Baseline":"-0.7"},{"ID":"FBgn0037406","EGF_Baseline":"-1.94"},{"ID":"FBgn0033528","EGF_Baseline":"-1.18"},{"ID":"FBgn0032153","EGF_Baseline":"-0.31"},{"ID":"FBgn0034817","EGF_Baseline":"1.19"},{"ID":"FBgn0034434","EGF_Baseline":"-1.34"},{"ID":"FBgn0038797","EGF_Baseline":"-1.59"},{"ID":"FBgn0004650","EGF_Baseline":"1.14"},{"ID":"FBgn0260862","EGF_Baseline":"0.32"},{"ID":"FBgn0052719","EGF_Baseline":"-0.85"},{"ID":"FBgn0038977","EGF_Baseline":"1.66"},{"ID":"FBgn0022343","EGF_Baseline":"1.44"},{"ID":"FBgn0036922","EGF_Baseline":"1.05"},{"ID":"FBgn0052227","EGF_Baseline":"-1.47"},{"ID":"FBgn0035756","EGF_Baseline":"-1.28"},{"ID":"FBgn0034323","EGF_Baseline":"-0.31"},{"ID":"FBgn0028948","EGF_Baseline":"-1.36"},{"ID":"FBgn0038118","EGF_Baseline":"-1.91"},{"ID":"FBgn0053771","EGF_Baseline":"0.89"},{"ID":"FBgn0035427","EGF_Baseline":"-0.32"},{"ID":"FBgn0040850","EGF_Baseline":"-1.27"},{"ID":"FBgn0031313","EGF_Baseline":"0.91"},{"ID":"FBgn0040368","EGF_Baseline":"1.06"},{"ID":"FBgn0038235","EGF_Baseline":"-1.27"},{"ID":"FBgn0000173","EGF_Baseline":"0.28"},{"ID":"FBgn0050293","EGF_Baseline":"-0.24"},{"ID":"FBgn0026079","EGF_Baseline":"2.96"},{"ID":"FBgn0030481","EGF_Baseline":"0.5"},{"ID":"FBgn0085474","EGF_Baseline":"2.67"},{"ID":"FBgn0037687","EGF_Baseline":"0.55"},{"ID":"FBgn0024277","EGF_Baseline":"-1.73"},{"ID":"FBgn0260648","EGF_Baseline":"1.31"},{"ID":"FBgn0027083","EGF_Baseline":"-1.21"},{"ID":"FBgn0023213","EGF_Baseline":"1.42"},{"ID":"FBgn0030365","EGF_Baseline":"0.5"},{"ID":"FBgn0032136","EGF_Baseline":"-0.71"},{"ID":"FBgn0002563","EGF_Baseline":"-0.92"},{"ID":"FBgn0033042","EGF_Baseline":"0.9"},{"ID":"FBgn0032483","EGF_Baseline":"-0.92"},{"ID":"FBgn0051245","EGF_Baseline":"-1.67"},{"ID":"FBgn0039172","EGF_Baseline":"0.48"},{"ID":"FBgn0039588","EGF_Baseline":"1.01"},{"ID":"FBgn0034437","EGF_Baseline":"-0.9"},{"ID":"FBgn0052191","EGF_Baseline":"0.23"},{"ID":"FBgn0045852","EGF_Baseline":"-1.58"},{"ID":"FBgn0004858","EGF_Baseline":"-0.68"},{"ID":"FBgn0030466","EGF_Baseline":"-0.75"},{"ID":"FBgn0025700","EGF_Baseline":"-0.97"},{"ID":"FBgn0004655","EGF_Baseline":"0.95"},{"ID":"FBgn0032346","EGF_Baseline":"-0.7"},{"ID":"FBgn0036691","EGF_Baseline":"0.07"},{"ID":"FBgn0053221","EGF_Baseline":"-1.1"},{"ID":"FBgn0027329","EGF_Baseline":"0.87"},{"ID":"FBgn0002354","EGF_Baseline":"-0.81"},{"ID":"FBgn0052718","EGF_Baseline":"-0.59"},{"ID":"FBgn0053299","EGF_Baseline":"-0.32"},{"ID":"FBgn0085359","EGF_Baseline":"-0.62"},{"ID":"FBgn0014029","EGF_Baseline":"-0.7"},{"ID":"FBgn0034990","EGF_Baseline":"-0.92"},{"ID":"FBgn0035420","EGF_Baseline":"-1.45"},{"ID":"FBgn0033340","EGF_Baseline":"0.84"},{"ID":"FBgn0034849","EGF_Baseline":"-0.62"},{"ID":"FBgn0261111","EGF_Baseline":"-1.06"},{"ID":"FBgn0022708","EGF_Baseline":"-1.07"},{"ID":"FBgn0037753","EGF_Baseline":"0.5"},{"ID":"FBgn0029987","EGF_Baseline":"-1.18"},{"ID":"FBgn0050275","EGF_Baseline":"0.26"},{"ID":"FBgn0016126","EGF_Baseline":"0.82"},{"ID":"FBgn0036262","EGF_Baseline":"0.2"},{"ID":"FBgn0030347","EGF_Baseline":"0.53"},{"ID":"FBgn0027793","EGF_Baseline":"-0.78"},{"ID":"FBgn0030928","EGF_Baseline":"2.07"},{"ID":"FBgn0029898","EGF_Baseline":"-0.84"},{"ID":"FBgn0010894","EGF_Baseline":"0.48"},{"ID":"FBgn0030460","EGF_Baseline":"-1.87"},{"ID":"FBgn0035003","EGF_Baseline":"1.11"},{"ID":"FBgn0022338","EGF_Baseline":"1"},{"ID":"FBgn0030271","EGF_Baseline":"0.63"},{"ID":"FBgn0038246","EGF_Baseline":"2.19"},{"ID":"FBgn0051706","EGF_Baseline":"-0.62"},{"ID":"FBgn0051437","EGF_Baseline":"-1.57"},{"ID":"FBgn0086657","EGF_Baseline":"1.12"},{"ID":"FBgn0032870","EGF_Baseline":"0.94"},{"ID":"FBgn0035482","EGF_Baseline":"0.62"},{"ID":"FBgn0260634","EGF_Baseline":"-1.46"},{"ID":"FBgn0035231","EGF_Baseline":"-0.67"},{"ID":"FBgn0051869","EGF_Baseline":"-1.75"},{"ID":"FBgn0036804","EGF_Baseline":"-0.59"},{"ID":"FBgn0015477","EGF_Baseline":"-1.48"},{"ID":"FBgn0010341","EGF_Baseline":"-1.88"},{"ID":"FBgn0031856","EGF_Baseline":"-0.84"},{"ID":"FBgn0030786","EGF_Baseline":"-0.64"},{"ID":"FBgn0085380","EGF_Baseline":"-1.3"},{"ID":"FBgn0033440","EGF_Baseline":"-1.96"},{"ID":"FBgn0039938","EGF_Baseline":"0.81"},{"ID":"FBgn0029979","EGF_Baseline":"-1.47"},{"ID":"FBgn0040236","EGF_Baseline":"0.41"},{"ID":"FBgn0028436","EGF_Baseline":"1.76"},{"ID":"FBgn0020378","EGF_Baseline":"-1.71"},{"ID":"FBgn0032407","EGF_Baseline":"-0.63"},{"ID":"FBgn0033875","EGF_Baseline":"-1.1"},{"ID":"FBgn0011668","EGF_Baseline":"-1.64"},{"ID":"FBgn0014006","EGF_Baseline":"-1.49"},{"ID":"FBgn0026060","EGF_Baseline":"-0.58"},{"ID":"FBgn0040284","EGF_Baseline":"9.59"},{"ID":"FBgn0037163","EGF_Baseline":"-0.13"},{"ID":"FBgn0053108","EGF_Baseline":"-0.62"},{"ID":"FBgn0028663","EGF_Baseline":"0.32"},{"ID":"FBgn0035153","EGF_Baseline":"1.28"},{"ID":"FBgn0035861","EGF_Baseline":"-0.45"},{"ID":"FBgn0031707","EGF_Baseline":"-0.84"},{"ID":"FBgn0053696","EGF_Baseline":"-0.74"},{"ID":"FBgn0015907","EGF_Baseline":"-1.93"},{"ID":"FBgn0033162","EGF_Baseline":"-0.86"},{"ID":"FBgn0013272","EGF_Baseline":"-0.82"},{"ID":"FBgn0015527","EGF_Baseline":"0.64"},{"ID":"FBgn0028916","EGF_Baseline":"-1.2"},{"ID":"FBgn0029914","EGF_Baseline":"-0.27"},{"ID":"FBgn0027885","EGF_Baseline":"1.71"},{"ID":"FBgn0037798","EGF_Baseline":"-0.68"},{"ID":"FBgn0034933","EGF_Baseline":"-0.41"},{"ID":"FBgn0034567","EGF_Baseline":"0.55"},{"ID":"FBgn0024807","EGF_Baseline":"1.54"},{"ID":"FBgn0033538","EGF_Baseline":"0.99"},{"ID":"FBgn0038596","EGF_Baseline":"-1.47"},{"ID":"FBgn0013733","EGF_Baseline":"1.43"},{"ID":"FBgn0038660","EGF_Baseline":"-0.88"},{"ID":"FBgn0004169","EGF_Baseline":"4.29"},{"ID":"FBgn0036597","EGF_Baseline":"-0.89"},{"ID":"FBgn0011676","EGF_Baseline":"-0.99"},{"ID":"FBgn0243514","EGF_Baseline":"-1.01"},{"ID":"FBgn0024841","EGF_Baseline":"-0.49"},{"ID":"FBgn0031749","EGF_Baseline":"1.46"},{"ID":"FBgn0035035","EGF_Baseline":"0.69"},{"ID":"FBgn0030884","EGF_Baseline":"0.62"},{"ID":"FBgn0016797","EGF_Baseline":"-0.99"},{"ID":"FBgn0040827","EGF_Baseline":"-0.55"},{"ID":"FBgn0031335","EGF_Baseline":"1.75"},{"ID":"FBgn0052647","EGF_Baseline":"-0.81"},{"ID":"FBgn0051740","EGF_Baseline":"1.18"},{"ID":"FBgn0051658","EGF_Baseline":"1.21"},{"ID":"FBgn0011703","EGF_Baseline":"1.2"},{"ID":"FBgn0032419","EGF_Baseline":"-0.94"},{"ID":"FBgn0000543","EGF_Baseline":"0.93"},{"ID":"FBgn0033089","EGF_Baseline":"-1.63"},{"ID":"FBgn0052240","EGF_Baseline":"-0.6"},{"ID":"FBgn0261885","EGF_Baseline":"1.97"},{"ID":"FBgn0033423","EGF_Baseline":"-0.55"},{"ID":"FBgn0029006","EGF_Baseline":"4.72"},{"ID":"FBgn0261064","EGF_Baseline":"1.54"},{"ID":"FBgn0036996","EGF_Baseline":"0.54"},{"ID":"FBgn0036441","EGF_Baseline":"-0.93"},{"ID":"FBgn0033065","EGF_Baseline":"-1.35"},{"ID":"FBgn0032845","EGF_Baseline":"-1.29"},{"ID":"FBgn0042101","EGF_Baseline":"0.46"},{"ID":"FBgn0054023","EGF_Baseline":"0.78"},{"ID":"FBgn0030717","EGF_Baseline":"0.78"},{"ID":"FBgn0000394","EGF_Baseline":"-0.61"},{"ID":"FBgn0039740","EGF_Baseline":"1.17"},{"ID":"FBgn0030451","EGF_Baseline":"-0.76"},{"ID":"FBgn0038463","EGF_Baseline":"-0.28"},{"ID":"FBgn0030330","EGF_Baseline":"1.04"},{"ID":"FBgn0053467","EGF_Baseline":"-0.74"},{"ID":"FBgn0045485","EGF_Baseline":"0.58"},{"ID":"FBgn0030646","EGF_Baseline":"0.32"},{"ID":"FBgn0036022","EGF_Baseline":"0.3"},{"ID":"FBgn0052266","EGF_Baseline":"0.39"},{"ID":"FBgn0040775","EGF_Baseline":"-2.26"},{"ID":"FBgn0039299","EGF_Baseline":"0.2"},{"ID":"FBgn0050412","EGF_Baseline":"-1.62"},{"ID":"FBgn0004870","EGF_Baseline":"-1.58"},{"ID":"FBgn0031623","EGF_Baseline":"-2.23"},{"ID":"FBgn0034527","EGF_Baseline":"-1.69"},{"ID":"FBgn0004435","EGF_Baseline":"0.88"},{"ID":"FBgn0050438","EGF_Baseline":"-1.05"},{"ID":"FBgn0039617","EGF_Baseline":"-1.7"},{"ID":"FBgn0036887","EGF_Baseline":"-0.27"},{"ID":"FBgn0032603","EGF_Baseline":"2.03"},{"ID":"FBgn0033599","EGF_Baseline":"-0.29"},{"ID":"FBgn0031879","EGF_Baseline":"-0.68"},{"ID":"FBgn0034136","EGF_Baseline":"0.74"},{"ID":"FBgn0035415","EGF_Baseline":"0.2"},{"ID":"FBgn0261383","EGF_Baseline":"-0.75"},{"ID":"FBgn0023000","EGF_Baseline":"-0.79"},{"ID":"FBgn0039305","EGF_Baseline":"-1.28"},{"ID":"FBgn0034200","EGF_Baseline":"-1.99"},{"ID":"FBgn0019938","EGF_Baseline":"0.58"},{"ID":"FBgn0020245","EGF_Baseline":"-1.13"},{"ID":"FBgn0035851","EGF_Baseline":"0.77"},{"ID":"FBgn0031923","EGF_Baseline":"0.72"},{"ID":"FBgn0030921","EGF_Baseline":"1.69"},{"ID":"FBgn0033815","EGF_Baseline":"-1.71"},{"ID":"FBgn0086683","EGF_Baseline":"-0.57"},{"ID":"FBgn0026760","EGF_Baseline":"-1.37"},{"ID":"FBgn0038981","EGF_Baseline":"0.85"},{"ID":"FBgn0261624","EGF_Baseline":"0.46"},{"ID":"FBgn0020660","EGF_Baseline":"0.47"},{"ID":"FBgn0002905","EGF_Baseline":"1.46"},{"ID":"FBgn0004619","EGF_Baseline":"-0.54"},{"ID":"FBgn0034512","EGF_Baseline":"0.2"},{"ID":"FBgn0036364","EGF_Baseline":"0.46"},{"ID":"FBgn0038744","EGF_Baseline":"-0.85"},{"ID":"FBgn0085195","EGF_Baseline":"-1.31"},{"ID":"FBgn0032224","EGF_Baseline":"-0.36"},{"ID":"FBgn0034418","EGF_Baseline":"-2.11"},{"ID":"FBgn0037824","EGF_Baseline":"0.92"},{"ID":"FBgn0025391","EGF_Baseline":"-1.2"},{"ID":"FBgn0050379","EGF_Baseline":"0.79"},{"ID":"FBgn0036518","EGF_Baseline":"-1.9"},{"ID":"FBgn0037972","EGF_Baseline":"0.78"},{"ID":"FBgn0038857","EGF_Baseline":"0.47"},{"ID":"FBgn0032700","EGF_Baseline":"-2"},{"ID":"FBgn0034723","EGF_Baseline":"-1.14"},{"ID":"FBgn0053117","EGF_Baseline":"-0.68"},{"ID":"FBgn0002791","EGF_Baseline":"-1.07"},{"ID":"FBgn0025839","EGF_Baseline":"0.6"},{"ID":"FBgn0037853","EGF_Baseline":"-0.72"},{"ID":"FBgn0035934","EGF_Baseline":"1.14"},{"ID":"FBgn0040660","EGF_Baseline":"-1.08"},{"ID":"FBgn0010292","EGF_Baseline":"1.38"},{"ID":"FBgn0031980","EGF_Baseline":"1.71"},{"ID":"FBgn0030610","EGF_Baseline":"-2.13"},{"ID":"FBgn0035398","EGF_Baseline":"-1.81"},{"ID":"FBgn0003041","EGF_Baseline":"0.41"},{"ID":"FBgn0050009","EGF_Baseline":"-1.18"},{"ID":"FBgn0036236","EGF_Baseline":"0.5"},{"ID":"FBgn0051097","EGF_Baseline":"0.46"},{"ID":"FBgn0052320","EGF_Baseline":"0.57"},{"ID":"FBgn0002633","EGF_Baseline":"1.05"},{"ID":"FBgn0039846","EGF_Baseline":"0.49"},{"ID":"FBgn0051928","EGF_Baseline":"1.13"},{"ID":"FBgn0034242","EGF_Baseline":"1.05"},{"ID":"FBgn0011592","EGF_Baseline":"2.07"},{"ID":"FBgn0036224","EGF_Baseline":"0.38"},{"ID":"FBgn0031360","EGF_Baseline":"-1.19"},{"ID":"FBgn0030606","EGF_Baseline":"1.99"},{"ID":"FBgn0042187","EGF_Baseline":"-0.42"},{"ID":"FBgn0038295","EGF_Baseline":"0.38"},{"ID":"FBgn0015562","EGF_Baseline":"-0.29"},{"ID":"FBgn0034120","EGF_Baseline":"-0.75"},{"ID":"FBgn0026379","EGF_Baseline":"-0.32"},{"ID":"FBgn0004397","EGF_Baseline":"-0.41"},{"ID":"FBgn0052232","EGF_Baseline":"-0.85"},{"ID":"FBgn0001189","EGF_Baseline":"-1.28"},{"ID":"FBgn0034011","EGF_Baseline":"-0.9"},{"ID":"FBgn0021776","EGF_Baseline":"-0.89"},{"ID":"FBgn0039136","EGF_Baseline":"0.39"},{"ID":"FBgn0085283","EGF_Baseline":"1.31"},{"ID":"FBgn0029826","EGF_Baseline":"-0.31"},{"ID":"FBgn0004237","EGF_Baseline":"-0.76"},{"ID":"FBgn0037376","EGF_Baseline":"-0.66"},{"ID":"FBgn0000121","EGF_Baseline":"0.28"},{"ID":"FBgn0031301","EGF_Baseline":"1.2"},{"ID":"FBgn0030292","EGF_Baseline":"-1.37"},{"ID":"FBgn0032899","EGF_Baseline":"-0.59"},{"ID":"FBgn0052383","EGF_Baseline":"0.17"},{"ID":"FBgn0040799","EGF_Baseline":"1.03"},{"ID":"FBgn0038641","EGF_Baseline":"-1.27"},{"ID":"FBgn0031600","EGF_Baseline":"-1.96"},{"ID":"FBgn0014455","EGF_Baseline":"1.01"},{"ID":"FBgn0036070","EGF_Baseline":"-0.39"},{"ID":"FBgn0020633","EGF_Baseline":"-0.47"},{"ID":"FBgn0030170","EGF_Baseline":"1.58"},{"ID":"FBgn0035205","EGF_Baseline":"1.63"},{"ID":"FBgn0038160","EGF_Baseline":"0.76"},{"ID":"FBgn0083991","EGF_Baseline":"-1.79"},{"ID":"FBgn0038190","EGF_Baseline":"-0.78"},{"ID":"FBgn0003386","EGF_Baseline":"1.13"},{"ID":"FBgn0026876","EGF_Baseline":"1.1"},{"ID":"FBgn0031596","EGF_Baseline":"-1.08"},{"ID":"FBgn0037789","EGF_Baseline":"-0.9"},{"ID":"FBgn0031546","EGF_Baseline":"-0.9"},{"ID":"FBgn0039385","EGF_Baseline":"-0.56"},{"ID":"FBgn0043471","EGF_Baseline":"-0.9"},{"ID":"FBgn0032935","EGF_Baseline":"-0.85"},{"ID":"FBgn0032724","EGF_Baseline":"0.71"},{"ID":"FBgn0034856","EGF_Baseline":"-1.15"},{"ID":"FBgn0004593","EGF_Baseline":"-1.62"},{"ID":"FBgn0030899","EGF_Baseline":"0.29"},{"ID":"FBgn0000319","EGF_Baseline":"1.81"},{"ID":"FBgn0033480","EGF_Baseline":"-1.3"},{"ID":"FBgn0030385","EGF_Baseline":"0.86"},{"ID":"FBgn0086350","EGF_Baseline":"1.02"},{"ID":"FBgn0037305","EGF_Baseline":"-2"},{"ID":"FBgn0051871","EGF_Baseline":"1.14"},{"ID":"FBgn0032172","EGF_Baseline":"-0.41"},{"ID":"FBgn0040324","EGF_Baseline":"-1.19"},{"ID":"FBgn0037801","EGF_Baseline":"-0.3"},{"ID":"FBgn0034060","EGF_Baseline":"-1.06"},{"ID":"FBgn0010309","EGF_Baseline":"-0.83"},{"ID":"FBgn0031374","EGF_Baseline":"0.78"},{"ID":"FBgn0039255","EGF_Baseline":"-1.83"},{"ID":"FBgn0032312","EGF_Baseline":"0.23"},{"ID":"FBgn0003015","EGF_Baseline":"-0.9"},{"ID":"FBgn0003435","EGF_Baseline":"0.51"},{"ID":"FBgn0035089","EGF_Baseline":"-0.77"},{"ID":"FBgn0000536","EGF_Baseline":"-1.65"},{"ID":"FBgn0003159","EGF_Baseline":"0.38"},{"ID":"FBgn0039712","EGF_Baseline":"-1.26"},{"ID":"FBgn0035247","EGF_Baseline":"-0.96"},{"ID":"FBgn0032067","EGF_Baseline":"-1.89"},{"ID":"FBgn0036480","EGF_Baseline":"-0.58"},{"ID":"FBgn0027546","EGF_Baseline":"0.53"},{"ID":"FBgn0013674","EGF_Baseline":"0.35"},{"ID":"FBgn0030339","EGF_Baseline":"-0.53"},{"ID":"FBgn0051320","EGF_Baseline":"1.03"},{"ID":"FBgn0029761","EGF_Baseline":"-2.21"},{"ID":"FBgn0042711","EGF_Baseline":"0.65"},{"ID":"FBgn0036656","EGF_Baseline":"0.26"},{"ID":"FBgn0033363","EGF_Baseline":"-1.38"},{"ID":"FBgn0030441","EGF_Baseline":"0.38"},{"ID":"FBgn0011606","EGF_Baseline":"0.69"},{"ID":"FBgn0030666","EGF_Baseline":"-0.7"},{"ID":"FBgn0085410","EGF_Baseline":"-0.7"},{"ID":"FBgn0030870","EGF_Baseline":"-0.93"},{"ID":"FBgn0040514","EGF_Baseline":"-0.88"},{"ID":"FBgn0261850","EGF_Baseline":"-0.21"},{"ID":"FBgn0032253","EGF_Baseline":"0.67"},{"ID":"FBgn0050147","EGF_Baseline":"-1.58"},{"ID":"FBgn0000413","EGF_Baseline":"-0.99"},{"ID":"FBgn0038806","EGF_Baseline":"-0.87"},{"ID":"FBgn0259795","EGF_Baseline":"2.16"},{"ID":"FBgn0034825","EGF_Baseline":"0.87"},{"ID":"FBgn0033500","EGF_Baseline":"-0.97"},{"ID":"FBgn0015222","EGF_Baseline":"1.8"},{"ID":"FBgn0039395","EGF_Baseline":"-0.16"},{"ID":"FBgn0011715","EGF_Baseline":"0.34"},{"ID":"FBgn0000261","EGF_Baseline":"1.11"},{"ID":"FBgn0039459","EGF_Baseline":"-0.82"},{"ID":"FBgn0027087","EGF_Baseline":"0.78"},{"ID":"FBgn0005640","EGF_Baseline":"0.26"},{"ID":"FBgn0033973","EGF_Baseline":"0.09"},{"ID":"FBgn0051427","EGF_Baseline":"-1.06"},{"ID":"FBgn0014868","EGF_Baseline":"-1.34"},{"ID":"FBgn0035890","EGF_Baseline":"-0.75"},{"ID":"FBgn0036093","EGF_Baseline":"-0.27"},{"ID":"FBgn0039058","EGF_Baseline":"1.54"},{"ID":"FBgn0038250","EGF_Baseline":"0.96"},{"ID":"FBgn0033893","EGF_Baseline":"0.56"},{"ID":"FBgn0010622","EGF_Baseline":"1.21"},{"ID":"FBgn0031484","EGF_Baseline":"-1.09"},{"ID":"FBgn0030654","EGF_Baseline":"-1"},{"ID":"FBgn0025373","EGF_Baseline":"0.73"},{"ID":"FBgn0031609","EGF_Baseline":"1.54"},{"ID":"FBgn0259111","EGF_Baseline":"-1.91"},{"ID":"FBgn0032470","EGF_Baseline":"-0.84"},{"ID":"FBgn0032337","EGF_Baseline":"0.24"},{"ID":"FBgn0039622","EGF_Baseline":"-0.97"},{"ID":"FBgn0033730","EGF_Baseline":"-1.12"},{"ID":"FBgn0033292","EGF_Baseline":"0.2"},{"ID":"FBgn0003891","EGF_Baseline":"0.62"},{"ID":"FBgn0026261","EGF_Baseline":"-2.25"},{"ID":"FBgn0086912","EGF_Baseline":"0.95"},{"ID":"FBgn0039342","EGF_Baseline":"-0.66"},{"ID":"FBgn0035181","EGF_Baseline":"0.32"},{"ID":"FBgn0039495","EGF_Baseline":"0.98"},{"ID":"FBgn0031763","EGF_Baseline":"-1.31"},{"ID":"FBgn0053110","EGF_Baseline":"-1.41"},{"ID":"FBgn0052133","EGF_Baseline":"-1.74"},{"ID":"FBgn0035414","EGF_Baseline":"-1.08"},{"ID":"FBgn0013751","EGF_Baseline":"0.41"},{"ID":"FBgn0038123","EGF_Baseline":"0.49"},{"ID":"FBgn0037829","EGF_Baseline":"-0.53"},{"ID":"FBgn0011745","EGF_Baseline":"-0.48"},{"ID":"FBgn0037107","EGF_Baseline":"0.82"},{"ID":"FBgn0036146","EGF_Baseline":"0.85"},{"ID":"FBgn0052574","EGF_Baseline":"-1.07"},{"ID":"FBgn0011207","EGF_Baseline":"-1.07"},{"ID":"FBgn0004360","EGF_Baseline":"0.84"},{"ID":"FBgn0036117","EGF_Baseline":"-1.74"},{"ID":"FBgn0032705","EGF_Baseline":"-1.75"},{"ID":"FBgn0010052","EGF_Baseline":"-0.54"},{"ID":"FBgn0035533","EGF_Baseline":"-1.75"},{"ID":"FBgn0000639","EGF_Baseline":"-0.8"},{"ID":"FBgn0034489","EGF_Baseline":"-0.82"},{"ID":"FBgn0030737","EGF_Baseline":"-0.15"},{"ID":"FBgn0052071","EGF_Baseline":"0.59"},{"ID":"FBgn0036606","EGF_Baseline":"0.39"},{"ID":"FBgn0052699","EGF_Baseline":"-1.76"},{"ID":"FBgn0027528","EGF_Baseline":"0.29"},{"ID":"FBgn0034988","EGF_Baseline":"0.5"},{"ID":"FBgn0035077","EGF_Baseline":"-0.27"},{"ID":"FBgn0040754","EGF_Baseline":"-2.17"},{"ID":"FBgn0030844","EGF_Baseline":"1.39"},{"ID":"FBgn0037460","EGF_Baseline":"-1.34"},{"ID":"FBgn0003517","EGF_Baseline":"1.54"},{"ID":"FBgn0016756","EGF_Baseline":"-1.14"},{"ID":"FBgn0085432","EGF_Baseline":"1.56"},{"ID":"FBgn0001612","EGF_Baseline":"0.9"},{"ID":"FBgn0001138","EGF_Baseline":"-1.6"},{"ID":"FBgn0029816","EGF_Baseline":"0.16"},{"ID":"FBgn0001258","EGF_Baseline":"1.06"},{"ID":"FBgn0052301","EGF_Baseline":"1.28"},{"ID":"FBgn0037612","EGF_Baseline":"-0.47"},{"ID":"FBgn0051077","EGF_Baseline":"-1.12"},{"ID":"FBgn0043530","EGF_Baseline":"-0.9"},{"ID":"FBgn0037938","EGF_Baseline":"0.61"},{"ID":"FBgn0031585","EGF_Baseline":"0.68"},{"ID":"FBgn0030699","EGF_Baseline":"1.54"},{"ID":"FBgn0033826","EGF_Baseline":"-0.45"},{"ID":"FBgn0028518","EGF_Baseline":"-1.47"},{"ID":"FBgn0011289","EGF_Baseline":"-1.66"},{"ID":"FBgn0033929","EGF_Baseline":"0.21"},{"ID":"FBgn0031731","EGF_Baseline":"-0.88"},{"ID":"FBgn0051145","EGF_Baseline":"-1.18"},{"ID":"FBgn0004623","EGF_Baseline":"-1.63"},{"ID":"FBgn0050372","EGF_Baseline":"-1.19"},{"ID":"FBgn0032069","EGF_Baseline":"-0.95"},{"ID":"FBgn0051760","EGF_Baseline":"-0.71"},{"ID":"FBgn0037672","EGF_Baseline":"0.94"},{"ID":"FBgn0013749","EGF_Baseline":"1.73"},{"ID":"FBgn0036110","EGF_Baseline":"-0.89"},{"ID":"FBgn0029755","EGF_Baseline":"-1.16"},{"ID":"FBgn0039559","EGF_Baseline":"-0.94"},{"ID":"FBgn0004597","EGF_Baseline":"0.82"},{"ID":"FBgn0052026","EGF_Baseline":"-1.16"},{"ID":"FBgn0031776","EGF_Baseline":"1.11"},{"ID":"FBgn0036198","EGF_Baseline":"1.65"},{"ID":"FBgn0013305","EGF_Baseline":"0.47"},{"ID":"FBgn0013469","EGF_Baseline":"0.55"},{"ID":"FBgn0260860","EGF_Baseline":"-0.78"},{"ID":"FBgn0035825","EGF_Baseline":"-1.02"},{"ID":"FBgn0030012","EGF_Baseline":"-1.28"},{"ID":"FBgn0085434","EGF_Baseline":"-0.54"},{"ID":"FBgn0016032","EGF_Baseline":"1.31"},{"ID":"FBgn0034904","EGF_Baseline":"1.21"},{"ID":"FBgn0038268","EGF_Baseline":"-0.66"},{"ID":"FBgn0038968","EGF_Baseline":"0.82"},{"ID":"FBgn0033633","EGF_Baseline":"-1.61"},{"ID":"FBgn0010220","EGF_Baseline":"-0.73"},{"ID":"FBgn0031675","EGF_Baseline":"0.57"},{"ID":"FBgn0051523","EGF_Baseline":"0.91"},{"ID":"FBgn0260940","EGF_Baseline":"-0.83"},{"ID":"FBgn0052304","EGF_Baseline":"-0.58"},{"ID":"FBgn0053301","EGF_Baseline":"2.37"},{"ID":"FBgn0260660","EGF_Baseline":"-1.23"},{"ID":"FBgn0261283","EGF_Baseline":"3.18"},{"ID":"FBgn0034950","EGF_Baseline":"1.02"},{"ID":"FBgn0003479","EGF_Baseline":"1.08"},{"ID":"FBgn0035464","EGF_Baseline":"0.65"},{"ID":"FBgn0039349","EGF_Baseline":"-0.73"},{"ID":"FBgn0040786","EGF_Baseline":"2.25"},{"ID":"FBgn0003885","EGF_Baseline":"3.13"},{"ID":"FBgn0039804","EGF_Baseline":"0.93"},{"ID":"FBgn0259714","EGF_Baseline":"-1.3"},{"ID":"FBgn0083951","EGF_Baseline":"-0.29"},{"ID":"FBgn0015025","EGF_Baseline":"-1.12"},{"ID":"FBgn0034670","EGF_Baseline":"-0.25"},{"ID":"FBgn0086384","EGF_Baseline":"-0.74"},{"ID":"FBgn0037467","EGF_Baseline":"0.22"},{"ID":"FBgn0004914","EGF_Baseline":"1.18"},{"ID":"FBgn0021814","EGF_Baseline":"-0.89"},{"ID":"FBgn0053513","EGF_Baseline":"-1.26"},{"ID":"FBgn0044048","EGF_Baseline":"-1.47"},{"ID":"FBgn0004133","EGF_Baseline":"-1.53"},{"ID":"FBgn0003300","EGF_Baseline":"-0.99"},{"ID":"FBgn0050101","EGF_Baseline":"-0.27"},{"ID":"FBgn0032549","EGF_Baseline":"0.61"},{"ID":"FBgn0052529","EGF_Baseline":"-1.55"},{"ID":"FBgn0035917","EGF_Baseline":"1.18"},{"ID":"FBgn0039809","EGF_Baseline":"2.37"},{"ID":"FBgn0039645","EGF_Baseline":"-0.85"},{"ID":"FBgn0024891","EGF_Baseline":"-0.36"},{"ID":"FBgn0037020","EGF_Baseline":"-1.36"},{"ID":"FBgn0030524","EGF_Baseline":"-1.46"},{"ID":"FBgn0036046","EGF_Baseline":"1.04"},{"ID":"FBgn0039719","EGF_Baseline":"1"},{"ID":"FBgn0031449","EGF_Baseline":"-0.19"},{"ID":"FBgn0036915","EGF_Baseline":"2.57"},{"ID":"FBgn0039006","EGF_Baseline":"-0.74"},{"ID":"FBgn0039656","EGF_Baseline":"-0.86"},{"ID":"FBgn0011276","EGF_Baseline":"-0.69"},{"ID":"FBgn0026084","EGF_Baseline":"0.59"},{"ID":"FBgn0002629","EGF_Baseline":"1.06"},{"ID":"FBgn0034103","EGF_Baseline":"-0.74"},{"ID":"FBgn0033578","EGF_Baseline":"-0.83"},{"ID":"FBgn0052532","EGF_Baseline":"1.16"},{"ID":"FBgn0033863","EGF_Baseline":"-1.08"},{"ID":"FBgn0031174","EGF_Baseline":"-0.76"},{"ID":"FBgn0033507","EGF_Baseline":"0.88"},{"ID":"FBgn0000140","EGF_Baseline":"1.47"},{"ID":"FBgn0041249","EGF_Baseline":"0.87"},{"ID":"FBgn0015621","EGF_Baseline":"-0.69"},{"ID":"FBgn0034237","EGF_Baseline":"3.91"},{"ID":"FBgn0032512","EGF_Baseline":"1.15"},{"ID":"FBgn0027584","EGF_Baseline":"1.07"},{"ID":"FBgn0003651","EGF_Baseline":"1.04"},{"ID":"FBgn0037617","EGF_Baseline":"-0.36"},{"ID":"FBgn0052476","EGF_Baseline":"-0.74"},{"ID":"FBgn0052023","EGF_Baseline":"-0.21"},{"ID":"FBgn0025378","EGF_Baseline":"-1.6"},{"ID":"FBgn0035294","EGF_Baseline":"1.94"},{"ID":"FBgn0026378","EGF_Baseline":"-0.8"},{"ID":"FBgn0039638","EGF_Baseline":"0.83"},{"ID":"FBgn0022987","EGF_Baseline":"-0.84"},{"ID":"FBgn0041624","EGF_Baseline":"-1.57"},{"ID":"FBgn0034957","EGF_Baseline":"-1.87"},{"ID":"FBgn0035421","EGF_Baseline":"0.31"},{"ID":"FBgn0030566","EGF_Baseline":"-0.49"},{"ID":"FBgn0050385","EGF_Baseline":"-0.26"},{"ID":"FBgn0028476","EGF_Baseline":"-0.03"},{"ID":"FBgn0039790","EGF_Baseline":"1"},{"ID":"FBgn0036545","EGF_Baseline":"1.06"},{"ID":"FBgn0027617","EGF_Baseline":"1.48"},{"ID":"FBgn0036729","EGF_Baseline":"-0.92"},{"ID":"FBgn0034636","EGF_Baseline":"-1.11"},{"ID":"FBgn0034645","EGF_Baseline":"0.58"},{"ID":"FBgn0036868","EGF_Baseline":"-1.1"},{"ID":"FBgn0029763","EGF_Baseline":"-1.4"},{"ID":"FBgn0037432","EGF_Baseline":"-0.57"},{"ID":"FBgn0027526","EGF_Baseline":"2.08"},{"ID":"FBgn0030025","EGF_Baseline":"-1.29"},{"ID":"FBgn0038247","EGF_Baseline":"-0.69"},{"ID":"FBgn0036817","EGF_Baseline":"2.26"},{"ID":"FBgn0035865","EGF_Baseline":"0.52"},{"ID":"FBgn0039754","EGF_Baseline":"1.38"},{"ID":"FBgn0051088","EGF_Baseline":"0.9"},{"ID":"FBgn0035164","EGF_Baseline":"0.33"},{"ID":"FBgn0034141","EGF_Baseline":"0.86"},{"ID":"FBgn0034172","EGF_Baseline":"0.38"},{"ID":"FBgn0032476","EGF_Baseline":"1.03"},{"ID":"FBgn0025827","EGF_Baseline":"-1.95"},{"ID":"FBgn0034442","EGF_Baseline":"-1.07"},{"ID":"FBgn0050394","EGF_Baseline":"-1.18"},{"ID":"FBgn0026396","EGF_Baseline":"-0.84"},{"ID":"FBgn0034909","EGF_Baseline":"-0.48"},{"ID":"FBgn0010786","EGF_Baseline":"-1.42"},{"ID":"FBgn0037162","EGF_Baseline":"1.42"},{"ID":"FBgn0061492","EGF_Baseline":"0.35"},{"ID":"FBgn0034664","EGF_Baseline":"-1.22"},{"ID":"FBgn0030457","EGF_Baseline":"0.29"},{"ID":"FBgn0000182","EGF_Baseline":"0.88"},{"ID":"FBgn0030983","EGF_Baseline":"0.33"},{"ID":"FBgn0030556","EGF_Baseline":"-0.35"},{"ID":"FBgn0050018","EGF_Baseline":"-0.37"},{"ID":"FBgn0039029","EGF_Baseline":"-1.89"},{"ID":"FBgn0031858","EGF_Baseline":"-0.44"},{"ID":"FBgn0027603","EGF_Baseline":"-1.31"},{"ID":"FBgn0033051","EGF_Baseline":"0.2"},{"ID":"FBgn0030512","EGF_Baseline":"0.15"},{"ID":"FBgn0039300","EGF_Baseline":"4.77"},{"ID":"FBgn0052202","EGF_Baseline":"-1.35"},{"ID":"FBgn0031820","EGF_Baseline":"0.22"},{"ID":"FBgn0040658","EGF_Baseline":"-1.11"},{"ID":"FBgn0034858","EGF_Baseline":"-0.93"},{"ID":"FBgn0026196","EGF_Baseline":"1.26"},{"ID":"FBgn0051673","EGF_Baseline":"-0.67"},{"ID":"FBgn0035359","EGF_Baseline":"0.24"},{"ID":"FBgn0046301","EGF_Baseline":"-0.92"},{"ID":"FBgn0034774","EGF_Baseline":"-0.69"},{"ID":"FBgn0033160","EGF_Baseline":"0.69"},{"ID":"FBgn0037517","EGF_Baseline":"1"},{"ID":"FBgn0041233","EGF_Baseline":"-0.46"},{"ID":"FBgn0030437","EGF_Baseline":"-0.74"},{"ID":"FBgn0041723","EGF_Baseline":"0.58"},{"ID":"FBgn0031037","EGF_Baseline":"-1.2"},{"ID":"FBgn0034869","EGF_Baseline":"-0.9"},{"ID":"FBgn0033516","EGF_Baseline":"-0.65"},{"ID":"FBgn0261787","EGF_Baseline":"0.18"},{"ID":"FBgn0000547","EGF_Baseline":"1"},{"ID":"FBgn0024188","EGF_Baseline":"-1.01"},{"ID":"FBgn0036298","EGF_Baseline":"-0.48"},{"ID":"FBgn0040906","EGF_Baseline":"-0.86"},{"ID":"FBgn0033294","EGF_Baseline":"1.27"},{"ID":"FBgn0036938","EGF_Baseline":"-0.25"},{"ID":"FBgn0035949","EGF_Baseline":"0.49"},{"ID":"FBgn0020617","EGF_Baseline":"0.62"},{"ID":"FBgn0037454","EGF_Baseline":"-0.62"},{"ID":"FBgn0037174","EGF_Baseline":"-1.76"},{"ID":"FBgn0041096","EGF_Baseline":"1.43"},{"ID":"FBgn0261363","EGF_Baseline":"0.39"},{"ID":"FBgn0003034","EGF_Baseline":"0.41"},{"ID":"FBgn0035976","EGF_Baseline":"-1.8"},{"ID":"FBgn0030900","EGF_Baseline":"0.53"},{"ID":"FBgn0041164","EGF_Baseline":"-1.51"},{"ID":"FBgn0034086","EGF_Baseline":"-1.33"},{"ID":"FBgn0028494","EGF_Baseline":"-2.26"},{"ID":"FBgn0004556","EGF_Baseline":"-1.61"},{"ID":"FBgn0051776","EGF_Baseline":"-0.61"},{"ID":"FBgn0030880","EGF_Baseline":"-0.55"},{"ID":"FBgn0033312","EGF_Baseline":"0.86"},{"ID":"FBgn0034837","EGF_Baseline":"-1.69"},{"ID":"FBgn0038829","EGF_Baseline":"-0.4"},{"ID":"FBgn0015320","EGF_Baseline":"1.98"},{"ID":"FBgn0036831","EGF_Baseline":"0.21"},{"ID":"FBgn0053099","EGF_Baseline":"-0.65"},{"ID":"FBgn0036416","EGF_Baseline":"-0.47"},{"ID":"FBgn0035737","EGF_Baseline":"0.85"},{"ID":"FBgn0026316","EGF_Baseline":"4.5"},{"ID":"FBgn0261873","EGF_Baseline":"-0.87"},{"ID":"FBgn0029715","EGF_Baseline":"0.32"},{"ID":"FBgn0050493","EGF_Baseline":"1.03"},{"ID":"FBgn0028704","EGF_Baseline":"1.29"},{"ID":"FBgn0031143","EGF_Baseline":"0.09"},{"ID":"FBgn0034720","EGF_Baseline":"-0.4"},{"ID":"FBgn0035519","EGF_Baseline":"0.93"},{"ID":"FBgn0003701","EGF_Baseline":"2.13"},{"ID":"FBgn0031317","EGF_Baseline":"0.78"},{"ID":"FBgn0030788","EGF_Baseline":"0.79"},{"ID":"FBgn0039200","EGF_Baseline":"1.5"},{"ID":"FBgn0033214","EGF_Baseline":"0.89"},{"ID":"FBgn0015393","EGF_Baseline":"7.75"},{"ID":"FBgn0030215","EGF_Baseline":"-0.73"},{"ID":"FBgn0022069","EGF_Baseline":"0.59"},{"ID":"FBgn0029113","EGF_Baseline":"0.17"},{"ID":"FBgn0032341","EGF_Baseline":"1.17"},{"ID":"FBgn0031090","EGF_Baseline":"2.47"},{"ID":"FBgn0037766","EGF_Baseline":"1.01"},{"ID":"FBgn0039114","EGF_Baseline":"1.17"},{"ID":"FBgn0032752","EGF_Baseline":"0.9"},{"ID":"FBgn0034725","EGF_Baseline":"-1.95"},{"ID":"FBgn0040253","EGF_Baseline":"1.13"},{"ID":"FBgn0033031","EGF_Baseline":"-1.58"},{"ID":"FBgn0028893","EGF_Baseline":"-0.37"},{"ID":"FBgn0000492","EGF_Baseline":"-1.79"},{"ID":"FBgn0031021","EGF_Baseline":"0.32"},{"ID":"FBgn0085425","EGF_Baseline":"3.94"},{"ID":"FBgn0025393","EGF_Baseline":"0.18"},{"ID":"FBgn0033918","EGF_Baseline":"0.35"},{"ID":"FBgn0037352","EGF_Baseline":"-0.99"},{"ID":"FBgn0028419","EGF_Baseline":"1.36"},{"ID":"FBgn0036153","EGF_Baseline":"0.86"},{"ID":"FBgn0035050","EGF_Baseline":"1.39"},{"ID":"FBgn0035608","EGF_Baseline":"0.33"},{"ID":"FBgn0028688","EGF_Baseline":"-0.62"},{"ID":"FBgn0040801","EGF_Baseline":"3.21"},{"ID":"FBgn0033554","EGF_Baseline":"-1.26"},{"ID":"FBgn0050288","EGF_Baseline":"-1.09"},{"ID":"FBgn0033155","EGF_Baseline":"0.57"},{"ID":"FBgn0035848","EGF_Baseline":"-0.39"},{"ID":"FBgn0001148","EGF_Baseline":"-0.31"},{"ID":"FBgn0047133","EGF_Baseline":"-2.34"},{"ID":"FBgn0037926","EGF_Baseline":"-0.67"},{"ID":"FBgn0004430","EGF_Baseline":"-0.31"},{"ID":"FBgn0027843","EGF_Baseline":"0.89"},{"ID":"FBgn0033203","EGF_Baseline":"1.12"},{"ID":"FBgn0032873","EGF_Baseline":"-1.54"},{"ID":"FBgn0038504","EGF_Baseline":"0.26"},{"ID":"FBgn0038353","EGF_Baseline":"-1.05"},{"ID":"FBgn0036684","EGF_Baseline":"-0.73"},{"ID":"FBgn0033484","EGF_Baseline":"-0.68"},{"ID":"FBgn0031478","EGF_Baseline":"-0.68"},{"ID":"FBgn0053139","EGF_Baseline":"1.07"},{"ID":"FBgn0250843","EGF_Baseline":"-0.42"},{"ID":"FBgn0085443","EGF_Baseline":"1.64"},{"ID":"FBgn0053200","EGF_Baseline":"1.22"},{"ID":"FBgn0085395","EGF_Baseline":"-1.42"},{"ID":"FBgn0039061","EGF_Baseline":"0.68"},{"ID":"FBgn0035691","EGF_Baseline":"-1.08"},{"ID":"FBgn0039015","EGF_Baseline":"-1.64"},{"ID":"FBgn0024273","EGF_Baseline":"1.32"},{"ID":"FBgn0034979","EGF_Baseline":"-0.6"},{"ID":"FBgn0037994","EGF_Baseline":"-1.87"},{"ID":"FBgn0032824","EGF_Baseline":"-1.93"},{"ID":"FBgn0032789","EGF_Baseline":"0.67"},{"ID":"FBgn0039749","EGF_Baseline":"2.11"},{"ID":"FBgn0030141","EGF_Baseline":"1.4"},{"ID":"FBgn0051633","EGF_Baseline":"-0.28"},{"ID":"FBgn0016054","EGF_Baseline":"-1.08"},{"ID":"FBgn0020641","EGF_Baseline":"-1.19"},{"ID":"FBgn0039336","EGF_Baseline":"1.41"},{"ID":"FBgn0069938","EGF_Baseline":"-1.29"},{"ID":"FBgn0026630","EGF_Baseline":"-0.17"},{"ID":"FBgn0261808","EGF_Baseline":"0.73"},{"ID":"FBgn0035594","EGF_Baseline":"-0.88"},{"ID":"FBgn0032246","EGF_Baseline":"-0.78"},{"ID":"FBgn0035789","EGF_Baseline":"-0.95"},{"ID":"FBgn0050356","EGF_Baseline":"0.69"},{"ID":"FBgn0003415","EGF_Baseline":"3.72"},{"ID":"FBgn0032713","EGF_Baseline":"-1.5"},{"ID":"FBgn0051183","EGF_Baseline":"-1.27"},{"ID":"FBgn0086655","EGF_Baseline":"-1.03"},{"ID":"FBgn0040467","EGF_Baseline":"-1.54"},{"ID":"FBgn0038795","EGF_Baseline":"-1.57"},{"ID":"FBgn0034093","EGF_Baseline":"0.52"},{"ID":"FBgn0051220","EGF_Baseline":"-1.29"},{"ID":"FBgn0031135","EGF_Baseline":"0.55"},{"ID":"FBgn0086253","EGF_Baseline":"-1.45"},{"ID":"FBgn0259214","EGF_Baseline":"-1.02"},{"ID":"FBgn0259704","EGF_Baseline":"0.47"},{"ID":"FBgn0027343","EGF_Baseline":"-1.07"},{"ID":"FBgn0036529","EGF_Baseline":"-0.87"},{"ID":"FBgn0035138","EGF_Baseline":"1.18"},{"ID":"FBgn0026722","EGF_Baseline":"8.31"},{"ID":"FBgn0033038","EGF_Baseline":"0.82"},{"ID":"FBgn0010225","EGF_Baseline":"0.57"},{"ID":"FBgn0029725","EGF_Baseline":"-1.32"},{"ID":"FBgn0030307","EGF_Baseline":"-1.25"},{"ID":"FBgn0013563","EGF_Baseline":"-1.22"},{"ID":"FBgn0037708","EGF_Baseline":"-2.21"},{"ID":"FBgn0054045","EGF_Baseline":"0.19"},{"ID":"FBgn0016675","EGF_Baseline":"0.34"},{"ID":"FBgn0038281","EGF_Baseline":"2.43"},{"ID":"FBgn0033734","EGF_Baseline":"-0.34"},{"ID":"FBgn0031537","EGF_Baseline":"2.84"},{"ID":"FBgn0040064","EGF_Baseline":"0.5"},{"ID":"FBgn0031883","EGF_Baseline":"-1.24"},{"ID":"FBgn0261802","EGF_Baseline":"-1.55"},{"ID":"FBgn0037481","EGF_Baseline":"0.95"},{"ID":"FBgn0036483","EGF_Baseline":"-0.87"},{"ID":"FBgn0013755","EGF_Baseline":"0.88"},{"ID":"FBgn0032635","EGF_Baseline":"1.42"},{"ID":"FBgn0031323","EGF_Baseline":"-0.89"},{"ID":"FBgn0040339","EGF_Baseline":"0.66"},{"ID":"FBgn0034479","EGF_Baseline":"-1.47"},{"ID":"FBgn0053329","EGF_Baseline":"-0.1"},{"ID":"FBgn0038575","EGF_Baseline":"-0.72"},{"ID":"FBgn0027552","EGF_Baseline":"-1.06"},{"ID":"FBgn0050456","EGF_Baseline":"-1.89"},{"ID":"FBgn0035627","EGF_Baseline":"-0.71"},{"ID":"FBgn0259977","EGF_Baseline":"-1.79"},{"ID":"FBgn0046880","EGF_Baseline":"0.68"},{"ID":"FBgn0261860","EGF_Baseline":"-1.16"},{"ID":"FBgn0000320","EGF_Baseline":"0.69"},{"ID":"FBgn0035857","EGF_Baseline":"-0.28"},{"ID":"FBgn0038839","EGF_Baseline":"0.14"},{"ID":"FBgn0029501","EGF_Baseline":"1.22"},{"ID":"FBgn0039288","EGF_Baseline":"-0.43"},{"ID":"FBgn0029508","EGF_Baseline":"-0.87"},{"ID":"FBgn0031424","EGF_Baseline":"-1.78"},{"ID":"FBgn0004197","EGF_Baseline":"1.89"},{"ID":"FBgn0038126","EGF_Baseline":"-0.85"},{"ID":"FBgn0033686","EGF_Baseline":"-1.45"},{"ID":"FBgn0037619","EGF_Baseline":"-0.32"},{"ID":"FBgn0026238","EGF_Baseline":"1.64"},{"ID":"FBgn0043575","EGF_Baseline":"0.27"},{"ID":"FBgn0038197","EGF_Baseline":"-1.25"},{"ID":"FBgn0053556","EGF_Baseline":"-0.76"},{"ID":"FBgn0050103","EGF_Baseline":"-0.78"},{"ID":"FBgn0037893","EGF_Baseline":"0.3"},{"ID":"FBgn0085277","EGF_Baseline":"0.64"},{"ID":"FBgn0001324","EGF_Baseline":"0.33"},{"ID":"FBgn0051231","EGF_Baseline":"3.16"},{"ID":"FBgn0011754","EGF_Baseline":"-1.25"},{"ID":"FBgn0002466","EGF_Baseline":"-0.84"},{"ID":"FBgn0033067","EGF_Baseline":"1.07"},{"ID":"FBgn0034504","EGF_Baseline":"-2.09"},{"ID":"FBgn0032275","EGF_Baseline":"0.53"},{"ID":"FBgn0033584","EGF_Baseline":"0.65"},{"ID":"FBgn0259193","EGF_Baseline":"-0.91"},{"ID":"FBgn0029881","EGF_Baseline":"1.49"},{"ID":"FBgn0250823","EGF_Baseline":"-1.17"},{"ID":"FBgn0038676","EGF_Baseline":"-0.62"},{"ID":"FBgn0035906","EGF_Baseline":"-1.09"},{"ID":"FBgn0039086","EGF_Baseline":"0.69"},{"ID":"FBgn0030509","EGF_Baseline":"0.74"},{"ID":"FBgn0037102","EGF_Baseline":"-0.28"},{"ID":"FBgn0001180","EGF_Baseline":"-0.85"},{"ID":"FBgn0000404","EGF_Baseline":"2.76"},{"ID":"FBgn0052105","EGF_Baseline":"-0.82"},{"ID":"FBgn0050467","EGF_Baseline":"1.55"},{"ID":"FBgn0032536","EGF_Baseline":"-0.96"},{"ID":"FBgn0051698","EGF_Baseline":"1.32"},{"ID":"FBgn0020388","EGF_Baseline":"0.68"},{"ID":"FBgn0031247","EGF_Baseline":"-1.1"},{"ID":"FBgn0039183","EGF_Baseline":"1.34"},{"ID":"FBgn0037877","EGF_Baseline":"0.69"},{"ID":"FBgn0000500","EGF_Baseline":"0.73"},{"ID":"FBgn0033872","EGF_Baseline":"-1.17"},{"ID":"FBgn0001174","EGF_Baseline":"0.54"},{"ID":"FBgn0039654","EGF_Baseline":"0.24"},{"ID":"FBgn0032553","EGF_Baseline":"1.25"},{"ID":"FBgn0034568","EGF_Baseline":"-0.19"},{"ID":"FBgn0054056","EGF_Baseline":"-2.02"},{"ID":"FBgn0032447","EGF_Baseline":"-0.92"},{"ID":"FBgn0025724","EGF_Baseline":"6.43"},{"ID":"FBgn0032085","EGF_Baseline":"-0.5"},{"ID":"FBgn0041607","EGF_Baseline":"1.08"},{"ID":"FBgn0031861","EGF_Baseline":"0.88"},{"ID":"FBgn0051556","EGF_Baseline":"4.66"},{"ID":"FBgn0029736","EGF_Baseline":"0.16"},{"ID":"FBgn0004859","EGF_Baseline":"0.28"},{"ID":"FBgn0029526","EGF_Baseline":"-1.18"},{"ID":"FBgn0039240","EGF_Baseline":"-0.4"},{"ID":"FBgn0028519","EGF_Baseline":"1.77"},{"ID":"FBgn0040375","EGF_Baseline":"-0.35"},{"ID":"FBgn0037931","EGF_Baseline":"-1.34"},{"ID":"FBgn0033186","EGF_Baseline":"0.9"},{"ID":"FBgn0034175","EGF_Baseline":"-0.64"},{"ID":"FBgn0005619","EGF_Baseline":"1.24"},{"ID":"FBgn0011836","EGF_Baseline":"0.39"},{"ID":"FBgn0033028","EGF_Baseline":"-1.42"},{"ID":"FBgn0052986","EGF_Baseline":"-1.85"},{"ID":"FBgn0037493","EGF_Baseline":"-0.53"},{"ID":"FBgn0031452","EGF_Baseline":"-0.74"},{"ID":"FBgn0261238","EGF_Baseline":"0.86"},{"ID":"FBgn0050095","EGF_Baseline":"-1.13"},{"ID":"FBgn0034821","EGF_Baseline":"0.81"},{"ID":"FBgn0034580","EGF_Baseline":"0.97"},{"ID":"FBgn0040030","EGF_Baseline":"1.24"},{"ID":"FBgn0039626","EGF_Baseline":"1.54"},{"ID":"FBgn0035452","EGF_Baseline":"-1.1"},{"ID":"FBgn0038946","EGF_Baseline":"-0.73"},{"ID":"FBgn0037421","EGF_Baseline":"-2.02"},{"ID":"FBgn0051453","EGF_Baseline":"-1.75"},{"ID":"FBgn0085325","EGF_Baseline":"1.77"},{"ID":"FBgn0000594","EGF_Baseline":"0.47"},{"ID":"FBgn0034939","EGF_Baseline":"-0.34"},{"ID":"FBgn0039779","EGF_Baseline":"-0.63"},{"ID":"FBgn0051213","EGF_Baseline":"0.86"},{"ID":"FBgn0037677","EGF_Baseline":"-1.62"},{"ID":"FBgn0026175","EGF_Baseline":"-0.96"},{"ID":"FBgn0033844","EGF_Baseline":"-1.37"},{"ID":"FBgn0027082","EGF_Baseline":"-0.45"},{"ID":"FBgn0033378","EGF_Baseline":"-1.26"},{"ID":"FBgn0039215","EGF_Baseline":"0.59"},{"ID":"FBgn0029940","EGF_Baseline":"0.8"},{"ID":"FBgn0259175","EGF_Baseline":"-1.49"},{"ID":"FBgn0036165","EGF_Baseline":"-0.88"},{"ID":"FBgn0031894","EGF_Baseline":"1.33"},{"ID":"FBgn0030858","EGF_Baseline":"-0.79"},{"ID":"FBgn0000115","EGF_Baseline":"-1.05"},{"ID":"FBgn0030251","EGF_Baseline":"-0.88"},{"ID":"FBgn0026088","EGF_Baseline":"-0.51"},{"ID":"FBgn0011296","EGF_Baseline":"0.51"},{"ID":"FBgn0028484","EGF_Baseline":"1.4"},{"ID":"FBgn0031129","EGF_Baseline":"0.53"},{"ID":"FBgn0038387","EGF_Baseline":"0.19"},{"ID":"FBgn0036498","EGF_Baseline":"-1.37"},{"ID":"FBgn0035280","EGF_Baseline":"-0.71"},{"ID":"FBgn0036853","EGF_Baseline":"-0.49"},{"ID":"FBgn0085293","EGF_Baseline":"0.63"},{"ID":"FBgn0259936","EGF_Baseline":"-1.7"},{"ID":"FBgn0260011","EGF_Baseline":"-0.33"},{"ID":"FBgn0002773","EGF_Baseline":"1.22"},{"ID":"FBgn0023215","EGF_Baseline":"-0.87"},{"ID":"FBgn0030588","EGF_Baseline":"0.6"},{"ID":"FBgn0034075","EGF_Baseline":"-1.69"},{"ID":"FBgn0028941","EGF_Baseline":"-0.74"},{"ID":"FBgn0029789","EGF_Baseline":"-1.08"},{"ID":"FBgn0039780","EGF_Baseline":"0.28"},{"ID":"FBgn0011695","EGF_Baseline":"-0.53"},{"ID":"FBgn0010620","EGF_Baseline":"-1.59"},{"ID":"FBgn0038186","EGF_Baseline":"-0.5"},{"ID":"FBgn0034658","EGF_Baseline":"-0.97"},{"ID":"FBgn0038000","EGF_Baseline":"-0.81"},{"ID":"FBgn0037578","EGF_Baseline":"-0.3"},{"ID":"FBgn0039590","EGF_Baseline":"-1.62"},{"ID":"FBgn0035016","EGF_Baseline":"0.86"},{"ID":"FBgn0040475","EGF_Baseline":"-1.61"},{"ID":"FBgn0031107","EGF_Baseline":"-0.78"},{"ID":"FBgn0035526","EGF_Baseline":"0.71"},{"ID":"FBgn0035694","EGF_Baseline":"-0.12"},{"ID":"FBgn0250832","EGF_Baseline":"-0.64"},{"ID":"FBgn0038405","EGF_Baseline":"-0.6"},{"ID":"FBgn0032803","EGF_Baseline":"1.76"},{"ID":"FBgn0036975","EGF_Baseline":"-1.32"},{"ID":"FBgn0028560","EGF_Baseline":"-0.38"},{"ID":"FBgn0020497","EGF_Baseline":"-0.71"},{"ID":"FBgn0061198","EGF_Baseline":"-1.3"},{"ID":"FBgn0039042","EGF_Baseline":"-2.14"},{"ID":"FBgn0034025","EGF_Baseline":"1.51"},{"ID":"FBgn0039470","EGF_Baseline":"-0.47"},{"ID":"FBgn0038151","EGF_Baseline":"-1.42"},{"ID":"FBgn0052656","EGF_Baseline":"-1.18"},{"ID":"FBgn0037384","EGF_Baseline":"-1.43"},{"ID":"FBgn0020508","EGF_Baseline":"-0.18"},{"ID":"FBgn0032964","EGF_Baseline":"-1.33"},{"ID":"FBgn0022740","EGF_Baseline":"1.22"},{"ID":"FBgn0034882","EGF_Baseline":"0.28"},{"ID":"FBgn0052654","EGF_Baseline":"0.31"},{"ID":"FBgn0032506","EGF_Baseline":"-0.8"},{"ID":"FBgn0023537","EGF_Baseline":"-0.97"},{"ID":"FBgn0037399","EGF_Baseline":"0.64"},{"ID":"FBgn0051997","EGF_Baseline":"-1.27"},{"ID":"FBgn0085408","EGF_Baseline":"-0.08"},{"ID":"FBgn0036583","EGF_Baseline":"1.14"},{"ID":"FBgn0052195","EGF_Baseline":"0.11"},{"ID":"FBgn0026386","EGF_Baseline":"-0.86"},{"ID":"FBgn0259143","EGF_Baseline":"3.38"},{"ID":"FBgn0037040","EGF_Baseline":"0.94"},{"ID":"FBgn0039928","EGF_Baseline":"1.23"},{"ID":"FBgn0260441","EGF_Baseline":"5.11"},{"ID":"FBgn0052119","EGF_Baseline":"-1.3"},{"ID":"FBgn0039325","EGF_Baseline":"0.61"},{"ID":"FBgn0041250","EGF_Baseline":"-1.24"},{"ID":"FBgn0051797","EGF_Baseline":"0.82"},{"ID":"FBgn0046687","EGF_Baseline":"-0.48"},{"ID":"FBgn0034545","EGF_Baseline":"-0.61"},{"ID":"FBgn0035500","EGF_Baseline":"-1.39"},{"ID":"FBgn0037571","EGF_Baseline":"1.5"},{"ID":"FBgn0032218","EGF_Baseline":"-0.52"},{"ID":"FBgn0001087","EGF_Baseline":"-0.96"},{"ID":"FBgn0260049","EGF_Baseline":"0.24"},{"ID":"FBgn0033165","EGF_Baseline":"3.13"},{"ID":"FBgn0033404","EGF_Baseline":"-1.45"},{"ID":"FBgn0036836","EGF_Baseline":"-1.9"},{"ID":"FBgn0034936","EGF_Baseline":"0.26"},{"ID":"FBgn0027093","EGF_Baseline":"1.39"},{"ID":"FBgn0001255","EGF_Baseline":"2.51"},{"ID":"FBgn0037218","EGF_Baseline":"0.46"},{"ID":"FBgn0037778","EGF_Baseline":"-1.62"},{"ID":"FBgn0039049","EGF_Baseline":"-0.73"},{"ID":"FBgn0033339","EGF_Baseline":"1.53"},{"ID":"FBgn0031240","EGF_Baseline":"-0.3"},{"ID":"FBgn0005695","EGF_Baseline":"0.72"},{"ID":"FBgn0038488","EGF_Baseline":"-0.3"},{"ID":"FBgn0039479","EGF_Baseline":"-0.96"},{"ID":"FBgn0086357","EGF_Baseline":"-1.84"},{"ID":"FBgn0259237","EGF_Baseline":"-1.85"},{"ID":"FBgn0036126","EGF_Baseline":"-0.7"},{"ID":"FBgn0025519","EGF_Baseline":"-1.37"},{"ID":"FBgn0039489","EGF_Baseline":"-0.24"},{"ID":"FBgn0038038","EGF_Baseline":"0.8"},{"ID":"FBgn0038473","EGF_Baseline":"2.45"},{"ID":"FBgn0030743","EGF_Baseline":"1.06"},{"ID":"FBgn0051849","EGF_Baseline":"0.43"},{"ID":"FBgn0040794","EGF_Baseline":"-0.96"},{"ID":"FBgn0261610","EGF_Baseline":"0.77"},{"ID":"FBgn0000057","EGF_Baseline":"0.05"},{"ID":"FBgn0004374","EGF_Baseline":"0.79"},{"ID":"FBgn0052639","EGF_Baseline":"2.38"},{"ID":"FBgn0052570","EGF_Baseline":"-1.66"},{"ID":"FBgn0033981","EGF_Baseline":"-1.71"},{"ID":"FBgn0029807","EGF_Baseline":"-1.16"},{"ID":"FBgn0034032","EGF_Baseline":"-0.3"},{"ID":"FBgn0028523","EGF_Baseline":"1.84"},{"ID":"FBgn0037012","EGF_Baseline":"-0.26"},{"ID":"FBgn0025864","EGF_Baseline":"-0.44"},{"ID":"FBgn0035551","EGF_Baseline":"1.54"},{"ID":"FBgn0035332","EGF_Baseline":"1.13"},{"ID":"FBgn0034718","EGF_Baseline":"-1.44"},{"ID":"FBgn0030239","EGF_Baseline":"-0.8"},{"ID":"FBgn0016036","EGF_Baseline":"-0.93"},{"ID":"FBgn0037978","EGF_Baseline":"0.77"},{"ID":"FBgn0052461","EGF_Baseline":"0.94"},{"ID":"FBgn0030228","EGF_Baseline":"-2.09"},{"ID":"FBgn0030483","EGF_Baseline":"2.98"},{"ID":"FBgn0034422","EGF_Baseline":"-1.48"},{"ID":"FBgn0036875","EGF_Baseline":"0.62"},{"ID":"FBgn0015805","EGF_Baseline":"2.83"},{"ID":"FBgn0031364","EGF_Baseline":"0.99"},{"ID":"FBgn0028692","EGF_Baseline":"-1.22"},{"ID":"FBgn0030521","EGF_Baseline":"0.48"},{"ID":"FBgn0034503","EGF_Baseline":"-0.6"},{"ID":"FBgn0031520","EGF_Baseline":"-1.29"},{"ID":"FBgn0031662","EGF_Baseline":"1.3"},{"ID":"FBgn0037963","EGF_Baseline":"0.21"},{"ID":"FBgn0039504","EGF_Baseline":"2.11"},{"ID":"FBgn0003654","EGF_Baseline":"-0.59"},{"ID":"FBgn0037251","EGF_Baseline":"2.12"},{"ID":"FBgn0033767","EGF_Baseline":"1.11"},{"ID":"FBgn0036986","EGF_Baseline":"0.32"},{"ID":"FBgn0002968","EGF_Baseline":"-1.65"},{"ID":"FBgn0001197","EGF_Baseline":"-1.04"},{"ID":"FBgn0003353","EGF_Baseline":"-1.1"},{"ID":"FBgn0030187","EGF_Baseline":"-0.64"},{"ID":"FBgn0010709","EGF_Baseline":"-1.02"},{"ID":"FBgn0050184","EGF_Baseline":"0.3"},{"ID":"FBgn0030417","EGF_Baseline":"-1.05"},{"ID":"FBgn0086785","EGF_Baseline":"0.25"},{"ID":"FBgn0038055","EGF_Baseline":"1.38"},{"ID":"FBgn0051546","EGF_Baseline":"-1.88"},{"ID":"FBgn0036024","EGF_Baseline":"-0.32"},{"ID":"FBgn0036563","EGF_Baseline":"1.29"},{"ID":"FBgn0029836","EGF_Baseline":"1.1"},{"ID":"FBgn0026751","EGF_Baseline":"-0.54"},{"ID":"FBgn0039868","EGF_Baseline":"-0.2"},{"ID":"FBgn0022027","EGF_Baseline":"0.36"},{"ID":"FBgn0032123","EGF_Baseline":"-0.47"},{"ID":"FBgn0029989","EGF_Baseline":"-0.94"},{"ID":"FBgn0036844","EGF_Baseline":"-1.58"},{"ID":"FBgn0036678","EGF_Baseline":"-0.64"},{"ID":"FBgn0261524","EGF_Baseline":"1.07"},{"ID":"FBgn0015838","EGF_Baseline":"-1.47"},{"ID":"FBgn0036826","EGF_Baseline":"0.53"},{"ID":"FBgn0030196","EGF_Baseline":"-1.48"},{"ID":"FBgn0004959","EGF_Baseline":"0.43"},{"ID":"FBgn0039421","EGF_Baseline":"0.72"},{"ID":"FBgn0039437","EGF_Baseline":"-1.14"},{"ID":"FBgn0030343","EGF_Baseline":"-0.97"},{"ID":"FBgn0033778","EGF_Baseline":"0.96"},{"ID":"FBgn0034068","EGF_Baseline":"-0.33"},{"ID":"FBgn0033129","EGF_Baseline":"-0.91"},{"ID":"FBgn0038360","EGF_Baseline":"-1.08"},{"ID":"FBgn0033308","EGF_Baseline":"1.34"},{"ID":"FBgn0034528","EGF_Baseline":"0.76"},{"ID":"FBgn0039125","EGF_Baseline":"1.29"},{"ID":"FBgn0010333","EGF_Baseline":"-1.23"},{"ID":"FBgn0260006","EGF_Baseline":"-1.14"},{"ID":"FBgn0086532","EGF_Baseline":"-1.83"},{"ID":"FBgn0003116","EGF_Baseline":"1.04"},{"ID":"FBgn0029975","EGF_Baseline":"-0.64"},{"ID":"FBgn0027598","EGF_Baseline":"0.58"},{"ID":"FBgn0036080","EGF_Baseline":"-2.25"},{"ID":"FBgn0261602","EGF_Baseline":"2.91"},{"ID":"FBgn0034327","EGF_Baseline":"0.57"},{"ID":"FBgn0010412","EGF_Baseline":"1.36"},{"ID":"FBgn0030623","EGF_Baseline":"-1.29"},{"ID":"FBgn0038300","EGF_Baseline":"1.1"},{"ID":"FBgn0037716","EGF_Baseline":"1.04"},{"ID":"FBgn0039106","EGF_Baseline":"-0.98"},{"ID":"FBgn0029949","EGF_Baseline":"-0.22"},{"ID":"FBgn0052350","EGF_Baseline":"-0.96"},{"ID":"FBgn0023097","EGF_Baseline":"-0.72"},{"ID":"FBgn0037165","EGF_Baseline":"-0.92"},{"ID":"FBgn0041342","EGF_Baseline":"-0.52"},{"ID":"FBgn0033794","EGF_Baseline":"-0.15"},{"ID":"FBgn0038765","EGF_Baseline":"-1.39"},{"ID":"FBgn0040529","EGF_Baseline":"-1.47"},{"ID":"FBgn0031282","EGF_Baseline":"2.18"},{"ID":"FBgn0052437","EGF_Baseline":"-1.96"},{"ID":"FBgn0030798","EGF_Baseline":"0.32"},{"ID":"FBgn0039158","EGF_Baseline":"-0.2"},{"ID":"FBgn0034683","EGF_Baseline":"-0.76"},{"ID":"FBgn0038324","EGF_Baseline":"1"},{"ID":"FBgn0024944","EGF_Baseline":"-1.74"},{"ID":"FBgn0019644","EGF_Baseline":"-0.31"},{"ID":"FBgn0039833","EGF_Baseline":"1.61"},{"ID":"FBgn0038449","EGF_Baseline":"0.26"},{"ID":"FBgn0030997","EGF_Baseline":"-0.27"},{"ID":"FBgn0003285","EGF_Baseline":"2.42"},{"ID":"FBgn0032702","EGF_Baseline":"-0.73"},{"ID":"FBgn0034942","EGF_Baseline":"-0.16"},{"ID":"FBgn0005596","EGF_Baseline":"-0.72"},{"ID":"FBgn0037734","EGF_Baseline":"1.1"},{"ID":"FBgn0052039","EGF_Baseline":"1.06"},{"ID":"FBgn0038540","EGF_Baseline":"-1.61"},{"ID":"FBgn0026593","EGF_Baseline":"-0.67"},{"ID":"FBgn0053123","EGF_Baseline":"-0.95"},{"ID":"FBgn0032900","EGF_Baseline":"-1.44"},{"ID":"FBgn0013675","EGF_Baseline":"-0.56"},{"ID":"FBgn0028567","EGF_Baseline":"-1.48"},{"ID":"FBgn0035686","EGF_Baseline":"-1.16"},{"ID":"FBgn0028410","EGF_Baseline":"1.63"},{"ID":"FBgn0035965","EGF_Baseline":"0.78"},{"ID":"FBgn0001987","EGF_Baseline":"0.4"},{"ID":"FBgn0036396","EGF_Baseline":"-1.15"},{"ID":"FBgn0003511","EGF_Baseline":"1.57"},{"ID":"FBgn0053542","EGF_Baseline":"1.3"},{"ID":"FBgn0039065","EGF_Baseline":"-0.15"},{"ID":"FBgn0050156","EGF_Baseline":"-0.99"},{"ID":"FBgn0030595","EGF_Baseline":"0.83"},{"ID":"FBgn0039752","EGF_Baseline":"1.01"},{"ID":"FBgn0037395","EGF_Baseline":"-0.82"},{"ID":"FBgn0051515","EGF_Baseline":"2.78"},{"ID":"FBgn0038097","EGF_Baseline":"-1.65"},{"ID":"FBgn0031201","EGF_Baseline":"-0.61"},{"ID":"FBgn0038818","EGF_Baseline":"1.92"},{"ID":"FBgn0034426","EGF_Baseline":"-1.46"},{"ID":"FBgn0032744","EGF_Baseline":"-0.64"},{"ID":"FBgn0035021","EGF_Baseline":"0.92"},{"ID":"FBgn0037502","EGF_Baseline":"-0.61"},{"ID":"FBgn0058245","EGF_Baseline":"0.78"},{"ID":"FBgn0039269","EGF_Baseline":"-1.16"},{"ID":"FBgn0260946","EGF_Baseline":"1.76"},{"ID":"FBgn0012036","EGF_Baseline":"-1.02"},{"ID":"FBgn0038973","EGF_Baseline":"0.74"},{"ID":"FBgn0020910","EGF_Baseline":"-2.79"},{"ID":"FBgn0005649","EGF_Baseline":"-1.33"},{"ID":"FBgn0040383","EGF_Baseline":"-1.42"},{"ID":"FBgn0039449","EGF_Baseline":"-0.62"},{"ID":"FBgn0036710","EGF_Baseline":"-0.94"},{"ID":"FBgn0035060","EGF_Baseline":"-0.19"},{"ID":"FBgn0039151","EGF_Baseline":"-1.23"},{"ID":"FBgn0034968","EGF_Baseline":"4.51"},{"ID":"FBgn0033624","EGF_Baseline":"-1.65"},{"ID":"FBgn0031774","EGF_Baseline":"1.88"},{"ID":"FBgn0020908","EGF_Baseline":"1.1"},{"ID":"FBgn0031008","EGF_Baseline":"0.78"},{"ID":"FBgn0036309","EGF_Baseline":"-1.15"},{"ID":"FBgn0031913","EGF_Baseline":"-0.77"},{"ID":"FBgn0035316","EGF_Baseline":"-0.2"},{"ID":"FBgn0036493","EGF_Baseline":"-1.27"},{"ID":"FBgn0032857","EGF_Baseline":"-0.45"},{"ID":"FBgn0037323","EGF_Baseline":"-2.14"},{"ID":"FBgn0030410","EGF_Baseline":"0.49"},{"ID":"FBgn0031235","EGF_Baseline":"0.46"},{"ID":"FBgn0035064","EGF_Baseline":"-0.31"},{"ID":"FBgn0031150","EGF_Baseline":"1.67"},{"ID":"FBgn0034797","EGF_Baseline":"1.11"},{"ID":"FBgn0030079","EGF_Baseline":"0.57"},{"ID":"FBgn0032658","EGF_Baseline":"1.93"},{"ID":"FBgn0030791","EGF_Baseline":"-0.89"},{"ID":"FBgn0000108","EGF_Baseline":"-1.16"},{"ID":"FBgn0261584","EGF_Baseline":"0.5"},{"ID":"FBgn0035146","EGF_Baseline":"0.81"},{"ID":"FBgn0034110","EGF_Baseline":"-0.98"},{"ID":"FBgn0032394","EGF_Baseline":"-1.18"},{"ID":"FBgn0039094","EGF_Baseline":"-1.37"},{"ID":"FBgn0039192","EGF_Baseline":"0.6"},{"ID":"FBgn0010280","EGF_Baseline":"-0.53"},{"ID":"FBgn0025678","EGF_Baseline":"1.12"},{"ID":"FBgn0025381","EGF_Baseline":"-0.34"},{"ID":"FBgn0027570","EGF_Baseline":"0.29"},{"ID":"FBgn0085413","EGF_Baseline":"0.83"},{"ID":"FBgn0030263","EGF_Baseline":"0.61"},{"ID":"FBgn0031066","EGF_Baseline":"-1.82"},{"ID":"FBgn0051641","EGF_Baseline":"-1.42"},{"ID":"FBgn0002789","EGF_Baseline":"-1.18"},{"ID":"FBgn0035256","EGF_Baseline":"0.54"},{"ID":"FBgn0013348","EGF_Baseline":"-0.85"},{"ID":"FBgn0039663","EGF_Baseline":"-1.34"},{"ID":"FBgn0004839","EGF_Baseline":"0.43"},{"ID":"FBgn0058441","EGF_Baseline":"1.08"},{"ID":"FBgn0013725","EGF_Baseline":"-1.35"},{"ID":"FBgn0050360","EGF_Baseline":"1.24"},{"ID":"FBgn0003867","EGF_Baseline":"-1.32"},{"ID":"FBgn0052277","EGF_Baseline":"-0.98"},{"ID":"FBgn0053346","EGF_Baseline":"0.27"},{"ID":"FBgn0013809","EGF_Baseline":"1.1"},{"ID":"FBgn0036821","EGF_Baseline":"0.7"},{"ID":"FBgn0030607","EGF_Baseline":"-0.67"},{"ID":"FBgn0001220","EGF_Baseline":"-1.7"},{"ID":"FBgn0036570","EGF_Baseline":"-0.48"},{"ID":"FBgn0032079","EGF_Baseline":"0.79"},{"ID":"FBgn0026869","EGF_Baseline":"-0.69"},{"ID":"FBgn0032860","EGF_Baseline":"-1.08"},{"ID":"FBgn0038090","EGF_Baseline":"0.7"},{"ID":"FBgn0037126","EGF_Baseline":"0.97"},{"ID":"FBgn0036109","EGF_Baseline":"-0.49"},{"ID":"FBgn0053993","EGF_Baseline":"-1.25"},{"ID":"FBgn0036655","EGF_Baseline":"1.1"},{"ID":"FBgn0051296","EGF_Baseline":"0.66"},{"ID":"FBgn0038549","EGF_Baseline":"1.51"},{"ID":"FBgn0035870","EGF_Baseline":"0.4"},{"ID":"FBgn0028985","EGF_Baseline":"-1.78"},{"ID":"FBgn0030136","EGF_Baseline":"4.48"},{"ID":"FBgn0037445","EGF_Baseline":"1.32"},{"ID":"FBgn0029672","EGF_Baseline":"0.53"},{"ID":"FBgn0026433","EGF_Baseline":"1.27"},{"ID":"FBgn0034402","EGF_Baseline":"-0.81"},{"ID":"FBgn0010453","EGF_Baseline":"1.46"},{"ID":"FBgn0015038","EGF_Baseline":"-0.55"},{"ID":"FBgn0031006","EGF_Baseline":"0.66"},{"ID":"FBgn0026326","EGF_Baseline":"-1.19"},{"ID":"FBgn0030576","EGF_Baseline":"0.26"},{"ID":"FBgn0035244","EGF_Baseline":"0.74"},{"ID":"FBgn0032147","EGF_Baseline":"-1.5"},{"ID":"FBgn0053333","EGF_Baseline":"-1.52"},{"ID":"FBgn0037883","EGF_Baseline":"-0.57"},{"ID":"FBgn0031646","EGF_Baseline":"-1.56"},{"ID":"FBgn0030377","EGF_Baseline":"-0.74"},{"ID":"FBgn0029992","EGF_Baseline":"-1.27"},{"ID":"FBgn0042710","EGF_Baseline":"-0.22"},{"ID":"FBgn0031866","EGF_Baseline":"1.59"},{"ID":"FBgn0003090","EGF_Baseline":"-2.65"},{"ID":"FBgn0051249","EGF_Baseline":"-1.61"},{"ID":"FBgn0052702","EGF_Baseline":"1.49"},{"ID":"FBgn0036629","EGF_Baseline":"0.2"},{"ID":"FBgn0033933","EGF_Baseline":"0.8"},{"ID":"FBgn0033900","EGF_Baseline":"0.74"},{"ID":"FBgn0086448","EGF_Baseline":"0.12"},{"ID":"FBgn0010768","EGF_Baseline":"-1.34"},{"ID":"FBgn0024996","EGF_Baseline":"-1.72"},{"ID":"FBgn0038179","EGF_Baseline":"-0.18"},{"ID":"FBgn0032924","EGF_Baseline":"-0.75"},{"ID":"FBgn0001990","EGF_Baseline":"-0.99"},{"ID":"FBgn0001341","EGF_Baseline":"0.45"},{"ID":"FBgn0052163","EGF_Baseline":"0.75"},{"ID":"FBgn0035790","EGF_Baseline":"0.9"},{"ID":"FBgn0035955","EGF_Baseline":"1.1"},{"ID":"FBgn0033802","EGF_Baseline":"1.2"},{"ID":"FBgn0036255","EGF_Baseline":"0.83"},{"ID":"FBgn0031518","EGF_Baseline":"-0.93"},{"ID":"FBgn0038523","EGF_Baseline":"0.84"},{"ID":"FBgn0051287","EGF_Baseline":"-1.24"},{"ID":"FBgn0051778","EGF_Baseline":"0.51"},{"ID":"FBgn0027512","EGF_Baseline":"-0.16"},{"ID":"FBgn0035404","EGF_Baseline":"-1.51"},{"ID":"FBgn0037773","EGF_Baseline":"-1.44"},{"ID":"FBgn0012051","EGF_Baseline":"-0.32"},{"ID":"FBgn0033208","EGF_Baseline":"-1.1"},{"ID":"FBgn0046297","EGF_Baseline":"-0.48"},{"ID":"FBgn0036336","EGF_Baseline":"0.72"},{"ID":"FBgn0032034","EGF_Baseline":"0.72"},{"ID":"FBgn0039165","EGF_Baseline":"-1.3"},{"ID":"FBgn0050486","EGF_Baseline":"0.33"},{"ID":"FBgn0028400","EGF_Baseline":"0.8"},{"ID":"FBgn0035405","EGF_Baseline":"0.62"},{"ID":"FBgn0031082","EGF_Baseline":"1.73"},{"ID":"FBgn0036008","EGF_Baseline":"-0.24"},{"ID":"FBgn0031471","EGF_Baseline":"0.85"},{"ID":"FBgn0031117","EGF_Baseline":"-1.17"},{"ID":"FBgn0029131","EGF_Baseline":"0.42"},{"ID":"FBgn0030703","EGF_Baseline":"0.47"},{"ID":"FBgn0038349","EGF_Baseline":"0.84"},{"ID":"FBgn0015380","EGF_Baseline":"0.51"},{"ID":"FBgn0053978","EGF_Baseline":"-0.98"},{"ID":"FBgn0004171","EGF_Baseline":"-1.14"},{"ID":"FBgn0026190","EGF_Baseline":"-0.95"},{"ID":"FBgn0035879","EGF_Baseline":"-1.31"},{"ID":"FBgn0032850","EGF_Baseline":"-1.64"},{"ID":"FBgn0052099","EGF_Baseline":"-0.41"},{"ID":"FBgn0031959","EGF_Baseline":"0.27"},{"ID":"FBgn0038208","EGF_Baseline":"-1.05"},{"ID":"FBgn0034382","EGF_Baseline":"0.41"},{"ID":"FBgn0013988","EGF_Baseline":"-1.66"},{"ID":"FBgn0039744","EGF_Baseline":"0.7"},{"ID":"FBgn0004779","EGF_Baseline":"-1.46"},{"ID":"FBgn0034624","EGF_Baseline":"-0.98"},{"ID":"FBgn0040814","EGF_Baseline":"0.29"},{"ID":"FBgn0050159","EGF_Baseline":"1.21"},{"ID":"FBgn0031148","EGF_Baseline":"0.78"},{"ID":"FBgn0039016","EGF_Baseline":"0.62"},{"ID":"FBgn0003312","EGF_Baseline":"0.3"},{"ID":"FBgn0004898","EGF_Baseline":"0.54"},{"ID":"FBgn0038106","EGF_Baseline":"-1.32"},{"ID":"FBgn0039480","EGF_Baseline":"-1.08"},{"ID":"FBgn0004174","EGF_Baseline":"-1.38"},{"ID":"FBgn0000061","EGF_Baseline":"-0.67"},{"ID":"FBgn0031713","EGF_Baseline":"0.4"},{"ID":"FBgn0031265","EGF_Baseline":"0.35"},{"ID":"FBgn0052243","EGF_Baseline":"-0.09"},{"ID":"FBgn0010385","EGF_Baseline":"-1.61"},{"ID":"FBgn0051989","EGF_Baseline":"0.86"},{"ID":"FBgn0040508","EGF_Baseline":"0.67"},{"ID":"FBgn0051005","EGF_Baseline":"0.97"},{"ID":"FBgn0039599","EGF_Baseline":"1.18"},{"ID":"FBgn0085296","EGF_Baseline":"-1.51"},{"ID":"FBgn0003278","EGF_Baseline":"-1.2"},{"ID":"FBgn0036232","EGF_Baseline":"-0.62"},{"ID":"FBgn0004462","EGF_Baseline":"2.23"},{"ID":"FBgn0032142","EGF_Baseline":"0.91"},{"ID":"FBgn0038034","EGF_Baseline":"-0.56"},{"ID":"FBgn0028514","EGF_Baseline":"1.31"},{"ID":"FBgn0035308","EGF_Baseline":"-1.22"},{"ID":"FBgn0039642","EGF_Baseline":"0.89"},{"ID":"FBgn0053306","EGF_Baseline":"-1.54"},{"ID":"FBgn0053061","EGF_Baseline":"-0.82"},{"ID":"FBgn0033697","EGF_Baseline":"-1.25"},{"ID":"FBgn0020510","EGF_Baseline":"-0.86"},{"ID":"FBgn0025632","EGF_Baseline":"-0.75"},{"ID":"FBgn0052187","EGF_Baseline":"1.05"},{"ID":"FBgn0032329","EGF_Baseline":"0.95"},{"ID":"FBgn0039038","EGF_Baseline":"-1.2"},{"ID":"FBgn0039764","EGF_Baseline":"-0.96"},{"ID":"FBgn0032233","EGF_Baseline":"0.58"},{"ID":"FBgn0052364","EGF_Baseline":"-2.2"},{"ID":"FBgn0011581","EGF_Baseline":"-1.28"},{"ID":"FBgn0030766","EGF_Baseline":"0.56"},{"ID":"FBgn0010383","EGF_Baseline":"-1.24"},{"ID":"FBgn0032194","EGF_Baseline":"-0.75"},{"ID":"FBgn0036847","EGF_Baseline":"-0.59"},{"ID":"FBgn0036369","EGF_Baseline":"-0.62"},{"ID":"FBgn0030066","EGF_Baseline":"-0.27"},{"ID":"FBgn0050291","EGF_Baseline":"-1.82"},{"ID":"FBgn0040601","EGF_Baseline":"-1.74"},{"ID":"FBgn0086681","EGF_Baseline":"0.33"},{"ID":"FBgn0034329","EGF_Baseline":"-1.36"},{"ID":"FBgn0026077","EGF_Baseline":"1.25"},{"ID":"FBgn0030367","EGF_Baseline":"0.61"},{"ID":"FBgn0036741","EGF_Baseline":"-0.62"},{"ID":"FBgn0028533","EGF_Baseline":"0.34"},{"ID":"FBgn0037916","EGF_Baseline":"0.22"},{"ID":"FBgn0052281","EGF_Baseline":"-0.85"},{"ID":"FBgn0030817","EGF_Baseline":"-0.58"},{"ID":"FBgn0025612","EGF_Baseline":"-1.19"},{"ID":"FBgn0086899","EGF_Baseline":"3.39"},{"ID":"FBgn0041240","EGF_Baseline":"-0.72"},{"ID":"FBgn0036595","EGF_Baseline":"-0.41"},{"ID":"FBgn0028903","EGF_Baseline":"-0.45"},{"ID":"FBgn0030336","EGF_Baseline":"1.37"},{"ID":"FBgn0033401","EGF_Baseline":"-1.34"},{"ID":"FBgn0033720","EGF_Baseline":"-1.37"},{"ID":"FBgn0051680","EGF_Baseline":"-0.42"},{"ID":"FBgn0029091","EGF_Baseline":"1.85"},{"ID":"FBgn0036019","EGF_Baseline":"-0.88"},{"ID":"FBgn0004856","EGF_Baseline":"4.41"},{"ID":"FBgn0039223","EGF_Baseline":"0.29"},{"ID":"FBgn0029968","EGF_Baseline":"0.1"},{"ID":"FBgn0035237","EGF_Baseline":"1.64"},{"ID":"FBgn0028579","EGF_Baseline":"-0.18"},{"ID":"FBgn0259228","EGF_Baseline":"-1.12"},{"ID":"FBgn0054015","EGF_Baseline":"0.8"},{"ID":"FBgn0052073","EGF_Baseline":"3.39"},{"ID":"FBgn0034887","EGF_Baseline":"0.12"},{"ID":"FBgn0003391","EGF_Baseline":"0.53"},{"ID":"FBgn0032499","EGF_Baseline":"-0.93"},{"ID":"FBgn0051561","EGF_Baseline":"-2.31"},{"ID":"FBgn0050279","EGF_Baseline":"-0.75"},{"ID":"FBgn0085222","EGF_Baseline":"1.29"},{"ID":"FBgn0039031","EGF_Baseline":"0.4"},{"ID":"FBgn0030323","EGF_Baseline":"-0.73"},{"ID":"FBgn0033760","EGF_Baseline":"0.75"},{"ID":"FBgn0053777","EGF_Baseline":"2.24"},{"ID":"FBgn0038627","EGF_Baseline":"0.85"},{"ID":"FBgn0030937","EGF_Baseline":"0.51"},{"ID":"FBgn0035999","EGF_Baseline":"0.55"},{"ID":"FBgn0036052","EGF_Baseline":"0.3"},{"ID":"FBgn0011666","EGF_Baseline":"-1.06"},{"ID":"FBgn0031191","EGF_Baseline":"-2.12"},{"ID":"FBgn0030668","EGF_Baseline":"-0.1"},{"ID":"FBgn0034056","EGF_Baseline":"-1.46"},{"ID":"FBgn0036662","EGF_Baseline":"-0.38"},{"ID":"FBgn0042180","EGF_Baseline":"0.97"},{"ID":"FBgn0067102","EGF_Baseline":"0.26"},{"ID":"FBgn0033980","EGF_Baseline":"0.77"},{"ID":"FBgn0040797","EGF_Baseline":"-1.56"},{"ID":"FBgn0023529","EGF_Baseline":"-0.62"},{"ID":"FBgn0035957","EGF_Baseline":"0.52"},{"ID":"FBgn0030241","EGF_Baseline":"1.03"},{"ID":"FBgn0051360","EGF_Baseline":"-0.53"},{"ID":"FBgn0051538","EGF_Baseline":"-0.24"},{"ID":"FBgn0025643","EGF_Baseline":"-0.49"},{"ID":"FBgn0031652","EGF_Baseline":"-1.16"},{"ID":"FBgn0033301","EGF_Baseline":"1.4"},{"ID":"FBgn0032197","EGF_Baseline":"-0.88"},{"ID":"FBgn0025641","EGF_Baseline":"2.1"},{"ID":"FBgn0003978","EGF_Baseline":"0.71"},{"ID":"FBgn0031942","EGF_Baseline":"-1.83"},{"ID":"FBgn0002652","EGF_Baseline":"1.26"},{"ID":"FBgn0036984","EGF_Baseline":"-1.03"},{"ID":"FBgn0036924","EGF_Baseline":"0.63"},{"ID":"FBgn0014870","EGF_Baseline":"-1.76"},{"ID":"FBgn0011336","EGF_Baseline":"-0.89"},{"ID":"FBgn0259150","EGF_Baseline":"1.47"},{"ID":"FBgn0085786","EGF_Baseline":"0.45"},{"ID":"FBgn0037714","EGF_Baseline":"-0.51"},{"ID":"FBgn0038244","EGF_Baseline":"1.13"},{"ID":"FBgn0037697","EGF_Baseline":"-0.75"},{"ID":"FBgn0004577","EGF_Baseline":"-0.98"},{"ID":"FBgn0085449","EGF_Baseline":"-0.34"},{"ID":"FBgn0038139","EGF_Baseline":"-0.83"},{"ID":"FBgn0033911","EGF_Baseline":"1.13"},{"ID":"FBgn0042106","EGF_Baseline":"-1.36"},{"ID":"FBgn0030966","EGF_Baseline":"1.33"},{"ID":"FBgn0260874","EGF_Baseline":"-1.33"},{"ID":"FBgn0034802","EGF_Baseline":"-1.31"},{"ID":"FBgn0051816","EGF_Baseline":"0.41"},{"ID":"FBgn0025626","EGF_Baseline":"-0.87"},{"ID":"FBgn0036437","EGF_Baseline":"-0.28"},{"ID":"FBgn0028738","EGF_Baseline":"1.83"},{"ID":"FBgn0038128","EGF_Baseline":"-1.22"},{"ID":"FBgn0024194","EGF_Baseline":"0.5"},{"ID":"FBgn0259221","EGF_Baseline":"-0.62"},{"ID":"FBgn0053051","EGF_Baseline":"0.63"},{"ID":"FBgn0039561","EGF_Baseline":"-1.24"},{"ID":"FBgn0261811","EGF_Baseline":"-0.72"},{"ID":"FBgn0036538","EGF_Baseline":"-0.62"},{"ID":"FBgn0052846","EGF_Baseline":"-0.98"},{"ID":"FBgn0050277","EGF_Baseline":"0.54"},{"ID":"FBgn0039577","EGF_Baseline":"-0.13"},{"ID":"FBgn0037949","EGF_Baseline":"-1.27"},{"ID":"FBgn0037626","EGF_Baseline":"0.25"},{"ID":"FBgn0066114","EGF_Baseline":"-0.44"},{"ID":"FBgn0001967","EGF_Baseline":"0.73"},{"ID":"FBgn0243516","EGF_Baseline":"0.76"},{"ID":"FBgn0033518","EGF_Baseline":"0.44"},{"ID":"FBgn0053017","EGF_Baseline":"-0.5"},{"ID":"FBgn0035484","EGF_Baseline":"-0.83"},{"ID":"FBgn0038376","EGF_Baseline":"-1.72"},{"ID":"FBgn0032798","EGF_Baseline":"1.95"},{"ID":"FBgn0033651","EGF_Baseline":"2.68"},{"ID":"FBgn0051708","EGF_Baseline":"-1.37"},{"ID":"FBgn0037755","EGF_Baseline":"-0.36"},{"ID":"FBgn0037846","EGF_Baseline":"1.11"},{"ID":"FBgn0028552","EGF_Baseline":"1.29"},{"ID":"FBgn0260632","EGF_Baseline":"1.06"},{"ID":"FBgn0032144","EGF_Baseline":"0.54"},{"ID":"FBgn0039522","EGF_Baseline":"-1.49"},{"ID":"FBgn0038921","EGF_Baseline":"0.59"},{"ID":"FBgn0024491","EGF_Baseline":"0.47"},{"ID":"FBgn0031937","EGF_Baseline":"-1.81"},{"ID":"FBgn0028562","EGF_Baseline":"-0.9"},{"ID":"FBgn0001202","EGF_Baseline":"-0.28"},{"ID":"FBgn0000808","EGF_Baseline":"-1.09"},{"ID":"FBgn0032415","EGF_Baseline":"-1.06"},{"ID":"FBgn0032161","EGF_Baseline":"-0.42"},{"ID":"FBgn0029912","EGF_Baseline":"0.31"},{"ID":"FBgn0035644","EGF_Baseline":"0.94"},{"ID":"FBgn0031729","EGF_Baseline":"-1.74"},{"ID":"FBgn0039735","EGF_Baseline":"0.78"},{"ID":"FBgn0033297","EGF_Baseline":"-0.35"},{"ID":"FBgn0040007","EGF_Baseline":"3.44"},{"ID":"FBgn0034480","EGF_Baseline":"0.89"},{"ID":"FBgn0027057","EGF_Baseline":"0.93"},{"ID":"FBgn0032677","EGF_Baseline":"0.93"},{"ID":"FBgn0032481","EGF_Baseline":"-1.45"},{"ID":"FBgn0034711","EGF_Baseline":"0.43"},{"ID":"FBgn0004167","EGF_Baseline":"-1.18"},{"ID":"FBgn0033969","EGF_Baseline":"1.01"},{"ID":"FBgn0028644","EGF_Baseline":"-1.2"},{"ID":"FBgn0051781","EGF_Baseline":"1.71"},{"ID":"FBgn0003129","EGF_Baseline":"-0.49"},{"ID":"FBgn0026268","EGF_Baseline":"0.68"},{"ID":"FBgn0037826","EGF_Baseline":"0.74"},{"ID":"FBgn0031512","EGF_Baseline":"0.38"},{"ID":"FBgn0035033","EGF_Baseline":"-2.65"},{"ID":"FBgn0029974","EGF_Baseline":"0.08"},{"ID":"FBgn0021795","EGF_Baseline":"-1.27"},{"ID":"FBgn0034045","EGF_Baseline":"-1.61"},{"ID":"FBgn0039053","EGF_Baseline":"-0.58"},{"ID":"FBgn0051495","EGF_Baseline":"0.49"},{"ID":"FBgn0022238","EGF_Baseline":"-1.46"},{"ID":"FBgn0035872","EGF_Baseline":"-2.2"},{"ID":"FBgn0039863","EGF_Baseline":"0.45"},{"ID":"FBgn0040349","EGF_Baseline":"-1.33"},{"ID":"FBgn0037141","EGF_Baseline":"-0.72"},{"ID":"FBgn0037802","EGF_Baseline":"-0.62"},{"ID":"FBgn0259162","EGF_Baseline":"-1.22"},{"ID":"FBgn0000359","EGF_Baseline":"0.49"},{"ID":"FBgn0035196","EGF_Baseline":"-0.37"},{"ID":"FBgn0000451","EGF_Baseline":"-1.7"},{"ID":"FBgn0025693","EGF_Baseline":"-0.78"},{"ID":"FBgn0025681","EGF_Baseline":"-1.42"},{"ID":"FBgn0038569","EGF_Baseline":"1.86"},{"ID":"FBgn0043455","EGF_Baseline":"-1.64"},{"ID":"FBgn0046888","EGF_Baseline":"0.3"},{"ID":"FBgn0033326","EGF_Baseline":"-0.64"},{"ID":"FBgn0026566","EGF_Baseline":"1.04"},{"ID":"FBgn0038961","EGF_Baseline":"-1.12"},{"ID":"FBgn0039002","EGF_Baseline":"-0.55"},{"ID":"FBgn0035802","EGF_Baseline":"-0.89"},{"ID":"FBgn0035229","EGF_Baseline":"-0.78"},{"ID":"FBgn0004143","EGF_Baseline":"0.87"},{"ID":"FBgn0033250","EGF_Baseline":"1.16"},{"ID":"FBgn0035124","EGF_Baseline":"0.61"},{"ID":"FBgn0032057","EGF_Baseline":"1.3"},{"ID":"FBgn0261791","EGF_Baseline":"0.77"},{"ID":"FBgn0003377","EGF_Baseline":"0.51"},{"ID":"FBgn0019650","EGF_Baseline":"-0.38"},{"ID":"FBgn0039897","EGF_Baseline":"-0.49"},{"ID":"FBgn0038337","EGF_Baseline":"0.43"},{"ID":"FBgn0001086","EGF_Baseline":"7.88"},{"ID":"FBgn0082598","EGF_Baseline":"0.48"},{"ID":"FBgn0051206","EGF_Baseline":"1.1"},{"ID":"FBgn0039970","EGF_Baseline":"-0.22"},{"ID":"FBgn0030091","EGF_Baseline":"-1.96"},{"ID":"FBgn0040281","EGF_Baseline":"-1.34"},{"ID":"FBgn0032231","EGF_Baseline":"0.48"},{"ID":"FBgn0000227","EGF_Baseline":"0.11"},{"ID":"FBgn0032535","EGF_Baseline":"-0.34"},{"ID":"FBgn0039936","EGF_Baseline":"-0.59"},{"ID":"FBgn0034734","EGF_Baseline":"-1.02"},{"ID":"FBgn0032090","EGF_Baseline":"-0.35"},{"ID":"FBgn0052413","EGF_Baseline":"-0.57"},{"ID":"FBgn0010638","EGF_Baseline":"-2.1"},{"ID":"FBgn0039307","EGF_Baseline":"-2.5"},{"ID":"FBgn0021995","EGF_Baseline":"-0.3"},{"ID":"FBgn0039532","EGF_Baseline":"-1.65"},{"ID":"FBgn0033072","EGF_Baseline":"-0.27"},{"ID":"FBgn0032452","EGF_Baseline":"-1.2"},{"ID":"FBgn0259984","EGF_Baseline":"-1.89"},{"ID":"FBgn0037723","EGF_Baseline":"0.81"},{"ID":"FBgn0033347","EGF_Baseline":"1.42"},{"ID":"FBgn0032371","EGF_Baseline":"-1.28"},{"ID":"FBgn0035581","EGF_Baseline":"-0.87"},{"ID":"FBgn0003008","EGF_Baseline":"-0.25"},{"ID":"FBgn0037550","EGF_Baseline":"1.24"},{"ID":"FBgn0259243","EGF_Baseline":"-0.71"},{"ID":"FBgn0259685","EGF_Baseline":"-0.48"},{"ID":"FBgn0260932","EGF_Baseline":"-1.57"},{"ID":"FBgn0260486","EGF_Baseline":"2.04"},{"ID":"FBgn0011656","EGF_Baseline":"0.25"},{"ID":"FBgn0039593","EGF_Baseline":"-0.47"},{"ID":"FBgn0261362","EGF_Baseline":"-1.05"},{"ID":"FBgn0040392","EGF_Baseline":"0.89"},{"ID":"FBgn0038145","EGF_Baseline":"1.96"},{"ID":"FBgn0050007","EGF_Baseline":"0.85"},{"ID":"FBgn0051510","EGF_Baseline":"1.62"},{"ID":"FBgn0004406","EGF_Baseline":"-1.73"},{"ID":"FBgn0039769","EGF_Baseline":"-0.4"},{"ID":"FBgn0052313","EGF_Baseline":"-0.79"},{"ID":"FBgn0033755","EGF_Baseline":"1.74"},{"ID":"FBgn0002525","EGF_Baseline":"1.43"},{"ID":"FBgn0036381","EGF_Baseline":"-1.26"},{"ID":"FBgn0032688","EGF_Baseline":"-2.72"},{"ID":"FBgn0051860","EGF_Baseline":"-0.53"},{"ID":"FBgn0038017","EGF_Baseline":"-1.73"},{"ID":"FBgn0030407","EGF_Baseline":"0.79"},{"ID":"FBgn0051119","EGF_Baseline":"0.35"},{"ID":"FBgn0033110","EGF_Baseline":"-1.84"},{"ID":"FBgn0020414","EGF_Baseline":"0.97"},{"ID":"FBgn0011259","EGF_Baseline":"-0.64"},{"ID":"FBgn0001296","EGF_Baseline":"1.71"},{"ID":"FBgn0036497","EGF_Baseline":"0.54"},{"ID":"FBgn0051809","EGF_Baseline":"-1.03"},{"ID":"FBgn0036486","EGF_Baseline":"1.12"},{"ID":"FBgn0013433","EGF_Baseline":"0.52"},{"ID":"FBgn0037060","EGF_Baseline":"-0.57"},{"ID":"FBgn0036768","EGF_Baseline":"-0.83"},{"ID":"FBgn0036889","EGF_Baseline":"0.82"},{"ID":"FBgn0030915","EGF_Baseline":"0.56"},{"ID":"FBgn0032524","EGF_Baseline":"-1.16"},{"ID":"FBgn0028963","EGF_Baseline":"0.69"},{"ID":"FBgn0028397","EGF_Baseline":"0.96"},{"ID":"FBgn0037428","EGF_Baseline":"-1.29"},{"ID":"FBgn0032236","EGF_Baseline":"-2.59"},{"ID":"FBgn0037090","EGF_Baseline":"-0.19"},{"ID":"FBgn0035763","EGF_Baseline":"-1.56"},{"ID":"FBgn0014023","EGF_Baseline":"-1.19"},{"ID":"FBgn0032879","EGF_Baseline":"-2.45"},{"ID":"FBgn0032643","EGF_Baseline":"-0.57"},{"ID":"FBgn0028569","EGF_Baseline":"-2.12"},{"ID":"FBgn0035674","EGF_Baseline":"-0.35"},{"ID":"FBgn0085382","EGF_Baseline":"-1.05"},{"ID":"FBgn0038886","EGF_Baseline":"-1.72"},{"ID":"FBgn0036620","EGF_Baseline":"-1.73"},{"ID":"FBgn0003969","EGF_Baseline":"0.64"},{"ID":"FBgn0004516","EGF_Baseline":"0.88"},{"ID":"FBgn0085541","EGF_Baseline":"-0.92"},{"ID":"FBgn0052373","EGF_Baseline":"0.63"},{"ID":"FBgn0010909","EGF_Baseline":"-0.28"},{"ID":"FBgn0038892","EGF_Baseline":"-1.22"},{"ID":"FBgn0030102","EGF_Baseline":"-0.94"},{"ID":"FBgn0029846","EGF_Baseline":"-1.43"},{"ID":"FBgn0015031","EGF_Baseline":"-1.52"},{"ID":"FBgn0037911","EGF_Baseline":"0.4"},{"ID":"FBgn0037645","EGF_Baseline":"3.74"},{"ID":"FBgn0037022","EGF_Baseline":"-0.39"},{"ID":"FBgn0032116","EGF_Baseline":"-0.78"},{"ID":"FBgn0039354","EGF_Baseline":"-0.52"},{"ID":"FBgn0036010","EGF_Baseline":"-0.87"},{"ID":"FBgn0035094","EGF_Baseline":"-0.24"},{"ID":"FBgn0002707","EGF_Baseline":"-1.02"},{"ID":"FBgn0261822","EGF_Baseline":"-0.99"},{"ID":"FBgn0011481","EGF_Baseline":"-0.93"},{"ID":"FBgn0039250","EGF_Baseline":"0.54"},{"ID":"FBgn0061515","EGF_Baseline":"-1.16"},{"ID":"FBgn0038303","EGF_Baseline":"0.62"},{"ID":"FBgn0033752","EGF_Baseline":"0.85"},{"ID":"FBgn0002945","EGF_Baseline":"-1.82"},{"ID":"FBgn0036947","EGF_Baseline":"-1.32"},{"ID":"FBgn0031544","EGF_Baseline":"-1.45"},{"ID":"FBgn0052179","EGF_Baseline":"-0.41"},{"ID":"FBgn0038195","EGF_Baseline":"0.63"},{"ID":"FBgn0019662","EGF_Baseline":"-1.51"},{"ID":"FBgn0052230","EGF_Baseline":"-0.88"},{"ID":"FBgn0054005","EGF_Baseline":"-1.58"},{"ID":"FBgn0000551","EGF_Baseline":"0.94"},{"ID":"FBgn0038089","EGF_Baseline":"0.68"},{"ID":"FBgn0035134","EGF_Baseline":"4.24"},{"ID":"FBgn0036512","EGF_Baseline":"0.01"},{"ID":"FBgn0031724","EGF_Baseline":"-1.38"},{"ID":"FBgn0052161","EGF_Baseline":"-1.58"},{"ID":"FBgn0051729","EGF_Baseline":"1.51"},{"ID":"FBgn0052343","EGF_Baseline":"1.26"},{"ID":"FBgn0004591","EGF_Baseline":"-1.08"},{"ID":"FBgn0033459","EGF_Baseline":"-1.08"},{"ID":"FBgn0034197","EGF_Baseline":"-0.69"},{"ID":"FBgn0020261","EGF_Baseline":"-1.18"},{"ID":"FBgn0052681","EGF_Baseline":"-0.61"},{"ID":"FBgn0038811","EGF_Baseline":"-0.57"},{"ID":"FBgn0033174","EGF_Baseline":"1.45"},{"ID":"FBgn0029152","EGF_Baseline":"-1.27"},{"ID":"FBgn0031232","EGF_Baseline":"-1.8"},{"ID":"FBgn0023495","EGF_Baseline":"-0.72"},{"ID":"FBgn0039257","EGF_Baseline":"0.68"},{"ID":"FBgn0036451","EGF_Baseline":"-0.59"},{"ID":"FBgn0003130","EGF_Baseline":"1.06"},{"ID":"FBgn0024980","EGF_Baseline":"0.66"},{"ID":"FBgn0034225","EGF_Baseline":"-0.58"},{"ID":"FBgn0052040","EGF_Baseline":"1.15"},{"ID":"FBgn0029961","EGF_Baseline":"0.43"},{"ID":"FBgn0035444","EGF_Baseline":"-0.89"},{"ID":"FBgn0037690","EGF_Baseline":"0.11"},{"ID":"FBgn0031905","EGF_Baseline":"0.75"},{"ID":"FBgn0260459","EGF_Baseline":"0.9"},{"ID":"FBgn0033769","EGF_Baseline":"0.73"},{"ID":"FBgn0000565","EGF_Baseline":"-1.1"},{"ID":"FBgn0014861","EGF_Baseline":"-1.36"},{"ID":"FBgn0037351","EGF_Baseline":"1.67"},{"ID":"FBgn0028858","EGF_Baseline":"1.19"},{"ID":"FBgn0036286","EGF_Baseline":"0.97"},{"ID":"FBgn0031413","EGF_Baseline":"-1.9"},{"ID":"FBgn0033987","EGF_Baseline":"0.86"},{"ID":"FBgn0260968","EGF_Baseline":"-1.51"},{"ID":"FBgn0029704","EGF_Baseline":"0.51"},{"ID":"FBgn0020386","EGF_Baseline":"1.93"},{"ID":"FBgn0039147","EGF_Baseline":"-0.63"},{"ID":"FBgn0030301","EGF_Baseline":"-1.71"},{"ID":"FBgn0063498","EGF_Baseline":"-1.58"},{"ID":"FBgn0035720","EGF_Baseline":"-1.91"},{"ID":"FBgn0031460","EGF_Baseline":"-1.61"},{"ID":"FBgn0261262","EGF_Baseline":"-2.09"},{"ID":"FBgn0039644","EGF_Baseline":"-0.29"},{"ID":"FBgn0032671","EGF_Baseline":"0.89"},{"ID":"FBgn0034283","EGF_Baseline":"0.21"},{"ID":"FBgn0031372","EGF_Baseline":"1.16"},{"ID":"FBgn0053292","EGF_Baseline":"0.76"},{"ID":"FBgn0035982","EGF_Baseline":"0.06"},{"ID":"FBgn0051804","EGF_Baseline":"-1.17"},{"ID":"FBgn0038799","EGF_Baseline":"0.71"},{"ID":"FBgn0027786","EGF_Baseline":"0.87"},{"ID":"FBgn0052557","EGF_Baseline":"1.09"},{"ID":"FBgn0023527","EGF_Baseline":"-0.31"},{"ID":"FBgn0032911","EGF_Baseline":"-0.74"},{"ID":"FBgn0021872","EGF_Baseline":"0.54"},{"ID":"FBgn0031042","EGF_Baseline":"-0.78"},{"ID":"FBgn0050431","EGF_Baseline":"-1.12"},{"ID":"FBgn0032836","EGF_Baseline":"0.45"},{"ID":"FBgn0051021","EGF_Baseline":"-0.52"},{"ID":"FBgn0033717","EGF_Baseline":"-0.61"},{"ID":"FBgn0063368","EGF_Baseline":"0.84"},{"ID":"FBgn0036181","EGF_Baseline":"1.59"},{"ID":"FBgn0039689","EGF_Baseline":"-0.7"},{"ID":"FBgn0052000","EGF_Baseline":"0.14"},{"ID":"FBgn0259922","EGF_Baseline":"-1.29"},{"ID":"FBgn0004403","EGF_Baseline":"4.38"},{"ID":"FBgn0000577","EGF_Baseline":"1.01"},{"ID":"FBgn0001090","EGF_Baseline":"2.21"},{"ID":"FBgn0029943","EGF_Baseline":"0.57"},{"ID":"FBgn0034961","EGF_Baseline":"-1.6"},{"ID":"FBgn0085370","EGF_Baseline":"-1.53"},{"ID":"FBgn0020369","EGF_Baseline":"-0.68"},{"ID":"FBgn0031969","EGF_Baseline":"1.13"},{"ID":"FBgn0003254","EGF_Baseline":"-1.8"},{"ID":"FBgn0050043","EGF_Baseline":"-0.71"},{"ID":"FBgn0033788","EGF_Baseline":"0.27"},{"ID":"FBgn0041184","EGF_Baseline":"0.55"},{"ID":"FBgn0031337","EGF_Baseline":"1.25"},{"ID":"FBgn0032013","EGF_Baseline":"0.58"},{"ID":"FBgn0033727","EGF_Baseline":"-1.47"},{"ID":"FBgn0052668","EGF_Baseline":"0.47"},{"ID":"FBgn0037560","EGF_Baseline":"0.22"},{"ID":"FBgn0034218","EGF_Baseline":"-1.41"},{"ID":"FBgn0035620","EGF_Baseline":"-1.75"},{"ID":"FBgn0040949","EGF_Baseline":"-0.48"},{"ID":"FBgn0050110","EGF_Baseline":"0.5"},{"ID":"FBgn0033498","EGF_Baseline":"-0.62"},{"ID":"FBgn0029835","EGF_Baseline":"1.2"},{"ID":"FBgn0003205","EGF_Baseline":"-5.54"},{"ID":"FBgn0030683","EGF_Baseline":"0.34"},{"ID":"FBgn0035372","EGF_Baseline":"1.03"},{"ID":"FBgn0086251","EGF_Baseline":"-1.01"},{"ID":"FBgn0030092","EGF_Baseline":"-1.41"},{"ID":"FBgn0039554","EGF_Baseline":"-0.53"},{"ID":"FBgn0010435","EGF_Baseline":"-1.39"},{"ID":"FBgn0037068","EGF_Baseline":"0.77"},{"ID":"FBgn0004362","EGF_Baseline":"-1.77"},{"ID":"FBgn0032956","EGF_Baseline":"-0.2"},{"ID":"FBgn0000024","EGF_Baseline":"-0.82"},{"ID":"FBgn0034410","EGF_Baseline":"3.28"},{"ID":"FBgn0038257","EGF_Baseline":"-1.11"},{"ID":"FBgn0004369","EGF_Baseline":"-1.63"},{"ID":"FBgn0085330","EGF_Baseline":"1.92"},{"ID":"FBgn0031872","EGF_Baseline":"-1.06"},{"ID":"FBgn0025336","EGF_Baseline":"1.08"},{"ID":"FBgn0033891","EGF_Baseline":"-1.19"},{"ID":"FBgn0023510","EGF_Baseline":"1.1"},{"ID":"FBgn0261291","EGF_Baseline":"-1.5"},{"ID":"FBgn0038678","EGF_Baseline":"-1.1"},{"ID":"FBgn0017556","EGF_Baseline":"-1.18"},{"ID":"FBgn0259701","EGF_Baseline":"0.58"},{"ID":"FBgn0036640","EGF_Baseline":"-1.44"},{"ID":"FBgn0036880","EGF_Baseline":"-1.43"},{"ID":"FBgn0030439","EGF_Baseline":"-1.74"},{"ID":"FBgn0030735","EGF_Baseline":"-0.81"},{"ID":"FBgn0261285","EGF_Baseline":"0.49"},{"ID":"FBgn0085430","EGF_Baseline":"-1.17"},{"ID":"FBgn0038458","EGF_Baseline":"-0.34"},{"ID":"FBgn0031115","EGF_Baseline":"-0.88"},{"ID":"FBgn0037881","EGF_Baseline":"-0.34"},{"ID":"FBgn0035892","EGF_Baseline":"-1"},{"ID":"FBgn0010591","EGF_Baseline":"-0.34"},{"ID":"FBgn0034573","EGF_Baseline":"-1.43"},{"ID":"FBgn0028516","EGF_Baseline":"0.88"},{"ID":"FBgn0261634","EGF_Baseline":"-0.55"},{"ID":"FBgn0032024","EGF_Baseline":"2.12"},{"ID":"FBgn0001256","EGF_Baseline":"1.75"},{"ID":"FBgn0039802","EGF_Baseline":"-1.02"},{"ID":"FBgn0010040","EGF_Baseline":"-0.48"},{"ID":"FBgn0000490","EGF_Baseline":"1.12"},{"ID":"FBgn0038499","EGF_Baseline":"-1.78"},{"ID":"FBgn0011743","EGF_Baseline":"0.71"},{"ID":"FBgn0030964","EGF_Baseline":"0.98"},{"ID":"FBgn0052572","EGF_Baseline":"0.47"},{"ID":"FBgn0038168","EGF_Baseline":"-1.54"},{"ID":"FBgn0027554","EGF_Baseline":"0.77"},{"ID":"FBgn0038166","EGF_Baseline":"-0.68"},{"ID":"FBgn0032699","EGF_Baseline":"-1.41"},{"ID":"FBgn0030895","EGF_Baseline":"-0.68"},{"ID":"FBgn0033868","EGF_Baseline":"2.12"},{"ID":"FBgn0053111","EGF_Baseline":"-0.98"},{"ID":"FBgn0036147","EGF_Baseline":"-1.06"},{"ID":"FBgn0038851","EGF_Baseline":"-0.5"},{"ID":"FBgn0010019","EGF_Baseline":"0.19"},{"ID":"FBgn0028375","EGF_Baseline":"1"},{"ID":"FBgn0087035","EGF_Baseline":"0.64"},{"ID":"FBgn0037683","EGF_Baseline":"-2.25"},{"ID":"FBgn0085351","EGF_Baseline":"-0.75"},{"ID":"FBgn0039666","EGF_Baseline":"-1.43"},{"ID":"FBgn0051410","EGF_Baseline":"0.63"},{"ID":"FBgn0032585","EGF_Baseline":"0.26"},{"ID":"FBgn0259247","EGF_Baseline":"-1.09"},{"ID":"FBgn0030695","EGF_Baseline":"0.05"},{"ID":"FBgn0037950","EGF_Baseline":"-2.12"},{"ID":"FBgn0039088","EGF_Baseline":"-0.52"},{"ID":"FBgn0011722","EGF_Baseline":"2.53"},{"ID":"FBgn0261395","EGF_Baseline":"-0.53"},{"ID":"FBgn0038223","EGF_Baseline":"-1.14"},{"ID":"FBgn0034276","EGF_Baseline":"-2.04"},{"ID":"FBgn0030345","EGF_Baseline":"0.73"},{"ID":"FBgn0036815","EGF_Baseline":"0.51"},{"ID":"FBgn0037780","EGF_Baseline":"-1.76"},{"ID":"FBgn0038132","EGF_Baseline":"-0.27"},{"ID":"FBgn0085312","EGF_Baseline":"-1.5"},{"ID":"FBgn0036782","EGF_Baseline":"1.52"},{"ID":"FBgn0034871","EGF_Baseline":"-0.26"},{"ID":"FBgn0259878","EGF_Baseline":"-1.63"},{"ID":"FBgn0003482","EGF_Baseline":"-1.09"},{"ID":"FBgn0033927","EGF_Baseline":"0.25"},{"ID":"FBgn0032087","EGF_Baseline":"-0.89"},{"ID":"FBgn0030018","EGF_Baseline":"-0.44"},{"ID":"FBgn0036352","EGF_Baseline":"-0.62"},{"ID":"FBgn0051032","EGF_Baseline":"0.92"},{"ID":"FBgn0034902","EGF_Baseline":"-1"},{"ID":"FBgn0028370","EGF_Baseline":"-1.39"},{"ID":"FBgn0035753","EGF_Baseline":"6.42"},{"ID":"FBgn0025525","EGF_Baseline":"-0.93"},{"ID":"FBgn0000557","EGF_Baseline":"1.14"},{"ID":"FBgn0031284","EGF_Baseline":"-0.43"},{"ID":"FBgn0030400","EGF_Baseline":"1.34"},{"ID":"FBgn0034552","EGF_Baseline":"-0.44"},{"ID":"FBgn0026150","EGF_Baseline":"1.31"},{"ID":"FBgn0036862","EGF_Baseline":"-0.45"},{"ID":"FBgn0036324","EGF_Baseline":"-0.92"},{"ID":"FBgn0033995","EGF_Baseline":"-0.8"},{"ID":"FBgn0015791","EGF_Baseline":"0.91"},{"ID":"FBgn0031187","EGF_Baseline":"-1"},{"ID":"FBgn0001123","EGF_Baseline":"-1.16"},{"ID":"FBgn0035911","EGF_Baseline":"-0.64"},{"ID":"FBgn0033861","EGF_Baseline":"-0.58"},{"ID":"FBgn0036249","EGF_Baseline":"0.59"},{"ID":"FBgn0086611","EGF_Baseline":"-1.57"},{"ID":"FBgn0027582","EGF_Baseline":"-1.06"},{"ID":"FBgn0037465","EGF_Baseline":"0.95"},{"ID":"FBgn0035176","EGF_Baseline":"-1.89"},{"ID":"FBgn0031252","EGF_Baseline":"5.53"},{"ID":"FBgn0053281","EGF_Baseline":"-1.47"},{"ID":"FBgn0033742","EGF_Baseline":"-0.64"},{"ID":"FBgn0038511","EGF_Baseline":"-0.99"},{"ID":"FBgn0039153","EGF_Baseline":"-0.94"},{"ID":"FBgn0004867","EGF_Baseline":"2.33"},{"ID":"FBgn0031217","EGF_Baseline":"1.38"},{"ID":"FBgn0051475","EGF_Baseline":"-0.34"},{"ID":"FBgn0037344","EGF_Baseline":"-0.05"},{"ID":"FBgn0037387","EGF_Baseline":"1.37"},{"ID":"FBgn0035458","EGF_Baseline":"-1.63"},{"ID":"FBgn0261619","EGF_Baseline":"-1.84"},{"ID":"FBgn0004244","EGF_Baseline":"-0.62"},{"ID":"FBgn0027561","EGF_Baseline":"0.9"},{"ID":"FBgn0034027","EGF_Baseline":"-1.37"},{"ID":"FBgn0032494","EGF_Baseline":"1.29"},{"ID":"FBgn0030011","EGF_Baseline":"-0.94"},{"ID":"FBgn0011829","EGF_Baseline":"-1.5"},{"ID":"FBgn0036590","EGF_Baseline":"-0.94"},{"ID":"FBgn0002933","EGF_Baseline":"-0.42"},{"ID":"FBgn0030051","EGF_Baseline":"-0.89"},{"ID":"FBgn0031476","EGF_Baseline":"-1.05"},{"ID":"FBgn0039344","EGF_Baseline":"0.77"},{"ID":"FBgn0035524","EGF_Baseline":"1.28"},{"ID":"FBgn0034931","EGF_Baseline":"-0.62"},{"ID":"FBgn0037933","EGF_Baseline":"-1.41"},{"ID":"FBgn0032514","EGF_Baseline":"-1.28"},{"ID":"FBgn0031941","EGF_Baseline":"-1.29"},{"ID":"FBgn0032119","EGF_Baseline":"-0.61"},{"ID":"FBgn0034914","EGF_Baseline":"2.17"},{"ID":"FBgn0053234","EGF_Baseline":"0.91"},{"ID":"FBgn0029667","EGF_Baseline":"-1.5"},{"ID":"FBgn0032437","EGF_Baseline":"-1.76"},{"ID":"FBgn0034651","EGF_Baseline":"0.83"},{"ID":"FBgn0086907","EGF_Baseline":"1.27"},{"ID":"FBgn0015777","EGF_Baseline":"-1.28"},{"ID":"FBgn0034143","EGF_Baseline":"1.43"},{"ID":"FBgn0051793","EGF_Baseline":"1.04"},{"ID":"FBgn0038957","EGF_Baseline":"-0.15"},{"ID":"FBgn0035462","EGF_Baseline":"-1.3"},{"ID":"FBgn0035210","EGF_Baseline":"2.04"},{"ID":"FBgn0034127","EGF_Baseline":"1.35"},{"ID":"FBgn0026372","EGF_Baseline":"2.99"},{"ID":"FBgn0260934","EGF_Baseline":"-1.89"},{"ID":"FBgn0037414","EGF_Baseline":"0.7"},{"ID":"FBgn0035082","EGF_Baseline":"-0.96"},{"ID":"FBgn0039774","EGF_Baseline":"0.64"},{"ID":"FBgn0039008","EGF_Baseline":"-0.36"},{"ID":"FBgn0013753","EGF_Baseline":"1.55"},{"ID":"FBgn0051643","EGF_Baseline":"-1.11"},{"ID":"FBgn0259716","EGF_Baseline":"1.41"},{"ID":"FBgn0028572","EGF_Baseline":"-1.48"},{"ID":"FBgn0029649","EGF_Baseline":"1.49"},{"ID":"FBgn0040340","EGF_Baseline":"-1.34"},{"ID":"FBgn0086901","EGF_Baseline":"-1.57"},{"ID":"FBgn0035057","EGF_Baseline":"0.93"},{"ID":"FBgn0033573","EGF_Baseline":"0.19"},{"ID":"FBgn0037295","EGF_Baseline":"-2.47"},{"ID":"FBgn0052483","EGF_Baseline":"0.58"},{"ID":"FBgn0034330","EGF_Baseline":"-0.8"},{"ID":"FBgn0036925","EGF_Baseline":"0.62"},{"ID":"FBgn0015625","EGF_Baseline":"-1.06"},{"ID":"FBgn0028369","EGF_Baseline":"1.33"},{"ID":"FBgn0051525","EGF_Baseline":"1.22"},{"ID":"FBgn0035915","EGF_Baseline":"-1.29"},{"ID":"FBgn0038723","EGF_Baseline":"0.96"},{"ID":"FBgn0037906","EGF_Baseline":"1.6"},{"ID":"FBgn0014010","EGF_Baseline":"0.96"},{"ID":"FBgn0004395","EGF_Baseline":"1.36"},{"ID":"FBgn0053460","EGF_Baseline":"0.92"},{"ID":"FBgn0032880","EGF_Baseline":"-1.14"},{"ID":"FBgn0053919","EGF_Baseline":"-1.12"},{"ID":"FBgn0053252","EGF_Baseline":"-1.5"},{"ID":"FBgn0037974","EGF_Baseline":"1.92"},{"ID":"FBgn0030877","EGF_Baseline":"-1.62"},{"ID":"FBgn0026192","EGF_Baseline":"-1.11"},{"ID":"FBgn0031052","EGF_Baseline":"1.46"},{"ID":"FBgn0024248","EGF_Baseline":"1.34"},{"ID":"FBgn0000147","EGF_Baseline":"1.77"},{"ID":"FBgn0030812","EGF_Baseline":"0.39"},{"ID":"FBgn0052645","EGF_Baseline":"-1.27"},{"ID":"FBgn0037220","EGF_Baseline":"-0.34"},{"ID":"FBgn0022960","EGF_Baseline":"1.43"},{"ID":"FBgn0033365","EGF_Baseline":"-0.32"},{"ID":"FBgn0036998","EGF_Baseline":"1.33"},{"ID":"FBgn0038054","EGF_Baseline":"-0.52"},{"ID":"FBgn0038461","EGF_Baseline":"-0.79"},{"ID":"FBgn0035947","EGF_Baseline":"-0.6"},{"ID":"FBgn0046258","EGF_Baseline":"1.31"},{"ID":"FBgn0032222","EGF_Baseline":"-0.38"},{"ID":"FBgn0028434","EGF_Baseline":"1.54"},{"ID":"FBgn0024994","EGF_Baseline":"-1.13"},{"ID":"FBgn0261723","EGF_Baseline":"-1.01"},{"ID":"FBgn0031435","EGF_Baseline":"-0.97"},{"ID":"FBgn0030876","EGF_Baseline":"-1.32"},{"ID":"FBgn0010323","EGF_Baseline":"-1.61"},{"ID":"FBgn0021765","EGF_Baseline":"0.34"},{"ID":"FBgn0036325","EGF_Baseline":"1.04"},{"ID":"FBgn0038859","EGF_Baseline":"0.75"},{"ID":"FBgn0038546","EGF_Baseline":"1.42"},{"ID":"FBgn0034510","EGF_Baseline":"0.53"},{"ID":"FBgn0016792","EGF_Baseline":"-2.11"},{"ID":"FBgn0016697","EGF_Baseline":"-1.5"},{"ID":"FBgn0030851","EGF_Baseline":"-0.75"},{"ID":"FBgn0031391","EGF_Baseline":"-1.64"},{"ID":"FBgn0033593","EGF_Baseline":"-1.87"},{"ID":"FBgn0028862","EGF_Baseline":"-0.3"},{"ID":"FBgn0024977","EGF_Baseline":"0.41"},{"ID":"FBgn0036217","EGF_Baseline":"0.52"},{"ID":"FBgn0034704","EGF_Baseline":"-0.89"},{"ID":"FBgn0250785","EGF_Baseline":"-0.76"},{"ID":"FBgn0083956","EGF_Baseline":"-1.32"},{"ID":"FBgn0035469","EGF_Baseline":"-0.74"},{"ID":"FBgn0039889","EGF_Baseline":"-1.03"},{"ID":"FBgn0030612","EGF_Baseline":"-1.11"},{"ID":"FBgn0001079","EGF_Baseline":"-0.64"},{"ID":"FBgn0037139","EGF_Baseline":"-1.35"},{"ID":"FBgn0039319","EGF_Baseline":"-0.8"},{"ID":"FBgn0003520","EGF_Baseline":"-1.6"},{"ID":"FBgn0260789","EGF_Baseline":"-1.01"},{"ID":"FBgn0039297","EGF_Baseline":"0.59"},{"ID":"FBgn0030258","EGF_Baseline":"0.47"},{"ID":"FBgn0038429","EGF_Baseline":"-0.27"},{"ID":"FBgn0032972","EGF_Baseline":"0.42"},{"ID":"FBgn0040322","EGF_Baseline":"1.92"},{"ID":"FBgn0037855","EGF_Baseline":"0.77"},{"ID":"FBgn0036362","EGF_Baseline":"-0.82"},{"ID":"FBgn0039368","EGF_Baseline":"-0.97"},{"ID":"FBgn0035159","EGF_Baseline":"0.3"},{"ID":"FBgn0036688","EGF_Baseline":"0.45"},{"ID":"FBgn0019936","EGF_Baseline":"5.19"},{"ID":"FBgn0036665","EGF_Baseline":"2.14"},{"ID":"FBgn0028427","EGF_Baseline":"1.06"},{"ID":"FBgn0033247","EGF_Baseline":"0.17"},{"ID":"FBgn0040967","EGF_Baseline":"-1.28"},{"ID":"FBgn0034697","EGF_Baseline":"-0.9"},{"ID":"FBgn0260437","EGF_Baseline":"0.36"},{"ID":"FBgn0040079","EGF_Baseline":"0.91"},{"ID":"FBgn0039312","EGF_Baseline":"-1.22"},{"ID":"FBgn0026582","EGF_Baseline":"-0.88"},{"ID":"FBgn0039081","EGF_Baseline":"1.14"},{"ID":"FBgn0037985","EGF_Baseline":"0.85"},{"ID":"FBgn0035867","EGF_Baseline":"0.47"},{"ID":"FBgn0052268","EGF_Baseline":"-1.32"},{"ID":"FBgn0259734","EGF_Baseline":"1.27"},{"ID":"FBgn0027835","EGF_Baseline":"1.16"},{"ID":"FBgn0035343","EGF_Baseline":"0.24"},{"ID":"FBgn0030477","EGF_Baseline":"1.76"},{"ID":"FBgn0038076","EGF_Baseline":"1.12"},{"ID":"FBgn0041626","EGF_Baseline":"-0.08"},{"ID":"FBgn0038531","EGF_Baseline":"-1.36"},{"ID":"FBgn0015925","EGF_Baseline":"0.27"},{"ID":"FBgn0037330","EGF_Baseline":"-0.56"},{"ID":"FBgn0031926","EGF_Baseline":"0.63"},{"ID":"FBgn0015721","EGF_Baseline":"0.64"},{"ID":"FBgn0010830","EGF_Baseline":"0.98"},{"ID":"FBgn0039828","EGF_Baseline":"1"},{"ID":"FBgn0033817","EGF_Baseline":"0.49"},{"ID":"FBgn0031639","EGF_Baseline":"-1.23"},{"ID":"FBgn0029768","EGF_Baseline":"-1.07"},{"ID":"FBgn0035491","EGF_Baseline":"0.86"},{"ID":"FBgn0027335","EGF_Baseline":"1.27"},{"ID":"FBgn0036715","EGF_Baseline":"0.35"},{"ID":"FBgn0030004","EGF_Baseline":"-1.73"},{"ID":"FBgn0051163","EGF_Baseline":"1.83"},{"ID":"FBgn0036264","EGF_Baseline":"2.11"},{"ID":"FBgn0038114","EGF_Baseline":"-1.58"},{"ID":"FBgn0045487","EGF_Baseline":"-1.17"},{"ID":"FBgn0033640","EGF_Baseline":"1.99"},{"ID":"FBgn0003719","EGF_Baseline":"0.36"},{"ID":"FBgn0261554","EGF_Baseline":"-2.09"},{"ID":"FBgn0000206","EGF_Baseline":"-0.44"},{"ID":"FBgn0002569","EGF_Baseline":"1.62"},{"ID":"FBgn0040366","EGF_Baseline":"-0.75"},{"ID":"FBgn0003943","EGF_Baseline":"-1.41"},{"ID":"FBgn0046696","EGF_Baseline":"-1.27"},{"ID":"FBgn0029853","EGF_Baseline":"-0.51"},{"ID":"FBgn0085369","EGF_Baseline":"1.64"},{"ID":"FBgn0032730","EGF_Baseline":"-1.56"},{"ID":"FBgn0031925","EGF_Baseline":"-0.61"},{"ID":"FBgn0259098","EGF_Baseline":"-0.83"},{"ID":"FBgn0038293","EGF_Baseline":"-0.27"},{"ID":"FBgn0030354","EGF_Baseline":"-1.63"},{"ID":"FBgn0035150","EGF_Baseline":"0.33"},{"ID":"FBgn0035431","EGF_Baseline":"0.61"},{"ID":"FBgn0019940","EGF_Baseline":"0.94"},{"ID":"FBgn0027296","EGF_Baseline":"-1.13"},{"ID":"FBgn0034317","EGF_Baseline":"0.29"},{"ID":"FBgn0035271","EGF_Baseline":"0.52"},{"ID":"FBgn0036372","EGF_Baseline":"-0.38"},{"ID":"FBgn0019949","EGF_Baseline":"0.96"},{"ID":"FBgn0034494","EGF_Baseline":"0.43"},{"ID":"FBgn0261356","EGF_Baseline":"1.27"},{"ID":"FBgn0037231","EGF_Baseline":"1.03"},{"ID":"FBgn0001337","EGF_Baseline":"1.3"},{"ID":"FBgn0042189","EGF_Baseline":"-1.57"},{"ID":"FBgn0030846","EGF_Baseline":"0.53"},{"ID":"FBgn0036062","EGF_Baseline":"0.63"},{"ID":"FBgn0085498","EGF_Baseline":"-1.37"},{"ID":"FBgn0031853","EGF_Baseline":"0.55"},{"ID":"FBgn0003375","EGF_Baseline":"-0.59"},{"ID":"FBgn0038491","EGF_Baseline":"0.2"},{"ID":"FBgn0033132","EGF_Baseline":"0.56"},{"ID":"FBgn0034413","EGF_Baseline":"1.55"},{"ID":"FBgn0051419","EGF_Baseline":"1.29"},{"ID":"FBgn0052944","EGF_Baseline":"2.15"},{"ID":"FBgn0051855","EGF_Baseline":"-1.65"},{"ID":"FBgn0039682","EGF_Baseline":"-0.55"},{"ID":"FBgn0039290","EGF_Baseline":"0.1"},{"ID":"FBgn0085280","EGF_Baseline":"-1.47"},{"ID":"FBgn0052677","EGF_Baseline":"-0.57"},{"ID":"FBgn0036222","EGF_Baseline":"-0.25"},{"ID":"FBgn0034240","EGF_Baseline":"-0.34"},{"ID":"FBgn0034037","EGF_Baseline":"0.63"},{"ID":"FBgn0051380","EGF_Baseline":"-1.06"},{"ID":"FBgn0033502","EGF_Baseline":"0.34"},{"ID":"FBgn0034786","EGF_Baseline":"0.94"},{"ID":"FBgn0034133","EGF_Baseline":"1.18"},{"ID":"FBgn0013672","EGF_Baseline":"-0.97"},{"ID":"FBgn0033540","EGF_Baseline":"-0.47"},{"ID":"FBgn0033971","EGF_Baseline":"0.9"},{"ID":"FBgn0038355","EGF_Baseline":"-1.58"},{"ID":"FBgn0031758","EGF_Baseline":"0.88"},{"ID":"FBgn0031379","EGF_Baseline":"-0.71"},{"ID":"FBgn0004028","EGF_Baseline":"-1.41"},{"ID":"FBgn0030163","EGF_Baseline":"1.64"},{"ID":"FBgn0037378","EGF_Baseline":"-1.7"},{"ID":"FBgn0034923","EGF_Baseline":"-2.35"},{"ID":"FBgn0028938","EGF_Baseline":"-0.53"},{"ID":"FBgn0035102","EGF_Baseline":"0.98"},{"ID":"FBgn0038983","EGF_Baseline":"0.94"},{"ID":"FBgn0037580","EGF_Baseline":"-0.91"},{"ID":"FBgn0034601","EGF_Baseline":"-1.95"},{"ID":"FBgn0051954","EGF_Baseline":"0.44"},{"ID":"FBgn0023178","EGF_Baseline":"-1.14"},{"ID":"FBgn0039404","EGF_Baseline":"1.01"},{"ID":"FBgn0038218","EGF_Baseline":"-0.88"},{"ID":"FBgn0000360","EGF_Baseline":"0.68"},{"ID":"FBgn0003149","EGF_Baseline":"-1.37"},{"ID":"FBgn0037134","EGF_Baseline":"-0.54"},{"ID":"FBgn0013764","EGF_Baseline":"-1.06"},{"ID":"FBgn0039360","EGF_Baseline":"-1.04"},{"ID":"FBgn0028987","EGF_Baseline":"0.76"},{"ID":"FBgn0033448","EGF_Baseline":"-1.25"},{"ID":"FBgn0036260","EGF_Baseline":"1.5"},{"ID":"FBgn0054025","EGF_Baseline":"0.38"},{"ID":"FBgn0035392","EGF_Baseline":"-1.99"},{"ID":"FBgn0033834","EGF_Baseline":"0.17"},{"ID":"FBgn0033658","EGF_Baseline":"0.63"},{"ID":"FBgn0053689","EGF_Baseline":"0.75"},{"ID":"FBgn0024542","EGF_Baseline":"-1.38"},{"ID":"FBgn0023507","EGF_Baseline":"0.24"},{"ID":"FBgn0036240","EGF_Baseline":"-0.7"},{"ID":"FBgn0040355","EGF_Baseline":"-0.84"},{"ID":"FBgn0050286","EGF_Baseline":"-0.48"},{"ID":"FBgn0052703","EGF_Baseline":"-1.04"},{"ID":"FBgn0053465","EGF_Baseline":"0.67"},{"ID":"FBgn0011291","EGF_Baseline":"0.4"},{"ID":"FBgn0038108","EGF_Baseline":"-0.53"},{"ID":"FBgn0031971","EGF_Baseline":"-0.8"},{"ID":"FBgn0030759","EGF_Baseline":"-0.63"},{"ID":"FBgn0085411","EGF_Baseline":"0.97"},{"ID":"FBgn0028372","EGF_Baseline":"-0.76"},{"ID":"FBgn0033961","EGF_Baseline":"0.49"},{"ID":"FBgn0033683","EGF_Baseline":"-1.41"},{"ID":"FBgn0015571","EGF_Baseline":"-1.71"},{"ID":"FBgn0046697","EGF_Baseline":"1.16"},{"ID":"FBgn0019948","EGF_Baseline":"-1.25"},{"ID":"FBgn0033479","EGF_Baseline":"-0.28"},{"ID":"FBgn0016672","EGF_Baseline":"-1.2"},{"ID":"FBgn0052249","EGF_Baseline":"-1.21"},{"ID":"FBgn0034401","EGF_Baseline":"-1.1"},{"ID":"FBgn0015803","EGF_Baseline":"0.63"},{"ID":"FBgn0034406","EGF_Baseline":"0.54"},{"ID":"FBgn0001330","EGF_Baseline":"0.59"},{"ID":"FBgn0010441","EGF_Baseline":"0.53"},{"ID":"FBgn0036941","EGF_Baseline":"-1.62"},{"ID":"FBgn0001142","EGF_Baseline":"-1.26"},{"ID":"FBgn0003169","EGF_Baseline":"0.38"},{"ID":"FBgn0037232","EGF_Baseline":"0.34"},{"ID":"FBgn0004419","EGF_Baseline":"1.38"},{"ID":"FBgn0037808","EGF_Baseline":"-0.3"},{"ID":"FBgn0052104","EGF_Baseline":"-0.91"},{"ID":"FBgn0036956","EGF_Baseline":"-1.9"},{"ID":"FBgn0029700","EGF_Baseline":"-0.92"},{"ID":"FBgn0029665","EGF_Baseline":"-0.23"},{"ID":"FBgn0034428","EGF_Baseline":"-1.48"},{"ID":"FBgn0028422","EGF_Baseline":"0.79"},{"ID":"FBgn0037662","EGF_Baseline":"0.16"},{"ID":"FBgn0029722","EGF_Baseline":"1.3"},{"ID":"FBgn0041229","EGF_Baseline":"1.29"},{"ID":"FBgn0029173","EGF_Baseline":"-1.96"},{"ID":"FBgn0033194","EGF_Baseline":"0.66"},{"ID":"FBgn0035817","EGF_Baseline":"0.3"},{"ID":"FBgn0036223","EGF_Baseline":"0.33"},{"ID":"FBgn0017457","EGF_Baseline":"-2.5"},{"ID":"FBgn0050195","EGF_Baseline":"-0.87"},{"ID":"FBgn0030357","EGF_Baseline":"-1.51"},{"ID":"FBgn0038874","EGF_Baseline":"1.63"},{"ID":"FBgn0000442","EGF_Baseline":"-0.9"},{"ID":"FBgn0035520","EGF_Baseline":"1.04"},{"ID":"FBgn0038612","EGF_Baseline":"1.5"},{"ID":"FBgn0042085","EGF_Baseline":"-0.77"},{"ID":"FBgn0039862","EGF_Baseline":"-0.92"},{"ID":"FBgn0039838","EGF_Baseline":"1.53"},{"ID":"FBgn0050185","EGF_Baseline":"-1.13"},{"ID":"FBgn0024956","EGF_Baseline":"0.43"},{"ID":"FBgn0034982","EGF_Baseline":"0.01"},{"ID":"FBgn0040070","EGF_Baseline":"0.7"},{"ID":"FBgn0037653","EGF_Baseline":"-0.23"},{"ID":"FBgn0025630","EGF_Baseline":"0.51"},{"ID":"FBgn0025683","EGF_Baseline":"1.43"},{"ID":"FBgn0002914","EGF_Baseline":"1.36"},{"ID":"FBgn0037574","EGF_Baseline":"-0.58"},{"ID":"FBgn0032856","EGF_Baseline":"-1.89"},{"ID":"FBgn0001986","EGF_Baseline":"1.39"},{"ID":"FBgn0034118","EGF_Baseline":"0.96"},{"ID":"FBgn0020300","EGF_Baseline":"0.78"},{"ID":"FBgn0038752","EGF_Baseline":"-0.93"},{"ID":"FBgn0034290","EGF_Baseline":"-1.71"},{"ID":"FBgn0037142","EGF_Baseline":"1.54"},{"ID":"FBgn0003382","EGF_Baseline":"-1.3"},{"ID":"FBgn0000287","EGF_Baseline":"-0.42"},{"ID":"FBgn0032988","EGF_Baseline":"10.6"},{"ID":"FBgn0039286","EGF_Baseline":"1.56"},{"ID":"FBgn0032790","EGF_Baseline":"1"},{"ID":"FBgn0030804","EGF_Baseline":"0.15"},{"ID":"FBgn0039264","EGF_Baseline":"-0.6"},{"ID":"FBgn0003502","EGF_Baseline":"-1.04"},{"ID":"FBgn0032032","EGF_Baseline":"0.96"},{"ID":"FBgn0038401","EGF_Baseline":"2.31"},{"ID":"FBgn0016726","EGF_Baseline":"-0.78"},{"ID":"FBgn0041203","EGF_Baseline":"0.16"},{"ID":"FBgn0039463","EGF_Baseline":"-1.41"},{"ID":"FBgn0037167","EGF_Baseline":"1.23"},{"ID":"FBgn0031573","EGF_Baseline":"2.21"},{"ID":"FBgn0039821","EGF_Baseline":"-0.64"},{"ID":"FBgn0010407","EGF_Baseline":"0.69"},{"ID":"FBgn0038741","EGF_Baseline":"-0.57"},{"ID":"FBgn0036708","EGF_Baseline":"1.61"},{"ID":"FBgn0010417","EGF_Baseline":"-0.76"},{"ID":"FBgn0033816","EGF_Baseline":"-1.84"},{"ID":"FBgn0261790","EGF_Baseline":"1.95"},{"ID":"FBgn0034062","EGF_Baseline":"-0.59"},{"ID":"FBgn0032754","EGF_Baseline":"0.2"},{"ID":"FBgn0037569","EGF_Baseline":"-1.4"},{"ID":"FBgn0031126","EGF_Baseline":"0.86"},{"ID":"FBgn0031710","EGF_Baseline":"0.44"},{"ID":"FBgn0035667","EGF_Baseline":"-0.7"},{"ID":"FBgn0260004","EGF_Baseline":"1.23"},{"ID":"FBgn0261388","EGF_Baseline":"0.58"},{"ID":"FBgn0033454","EGF_Baseline":"-0.61"},{"ID":"FBgn0261548","EGF_Baseline":"1.61"},{"ID":"FBgn0044324","EGF_Baseline":"-1.45"},{"ID":"FBgn0050008","EGF_Baseline":"1.06"},{"ID":"FBgn0029864","EGF_Baseline":"-0.33"},{"ID":"FBgn0031245","EGF_Baseline":"-1.58"},{"ID":"FBgn0003612","EGF_Baseline":"0.67"},{"ID":"FBgn0037037","EGF_Baseline":"1.48"},{"ID":"FBgn0039859","EGF_Baseline":"-0.76"},{"ID":"FBgn0038068","EGF_Baseline":"0.53"},{"ID":"FBgn0031053","EGF_Baseline":"-0.57"},{"ID":"FBgn0259190","EGF_Baseline":"0.77"},{"ID":"FBgn0025115","EGF_Baseline":"-1.43"},{"ID":"FBgn0036764","EGF_Baseline":"-0.41"},{"ID":"FBgn0005659","EGF_Baseline":"-0.61"},{"ID":"FBgn0034085","EGF_Baseline":"-0.58"},{"ID":"FBgn0039782","EGF_Baseline":"-0.96"},{"ID":"FBgn0037987","EGF_Baseline":"1.36"},{"ID":"FBgn0051121","EGF_Baseline":"-2.08"},{"ID":"FBgn0033580","EGF_Baseline":"-1.82"},{"ID":"FBgn0038012","EGF_Baseline":"-1.62"},{"ID":"FBgn0033222","EGF_Baseline":"-1.54"},{"ID":"FBgn0034970","EGF_Baseline":"-1.37"},{"ID":"FBgn0035402","EGF_Baseline":"-0.07"},{"ID":"FBgn0034717","EGF_Baseline":"0.25"},{"ID":"FBgn0014906","EGF_Baseline":"-1.47"},{"ID":"FBgn0027655","EGF_Baseline":"0.95"},{"ID":"FBgn0038204","EGF_Baseline":"0.43"},{"ID":"FBgn0025382","EGF_Baseline":"-0.16"},{"ID":"FBgn0034611","EGF_Baseline":"-0.55"},{"ID":"FBgn0259677","EGF_Baseline":"-1.21"},{"ID":"FBgn0051098","EGF_Baseline":"0.21"},{"ID":"FBgn0036870","EGF_Baseline":"-0.5"},{"ID":"FBgn0040512","EGF_Baseline":"2.05"},{"ID":"FBgn0003861","EGF_Baseline":"0.61"},{"ID":"FBgn0029801","EGF_Baseline":"-0.87"},{"ID":"FBgn0027579","EGF_Baseline":"0.87"},{"ID":"FBgn0039851","EGF_Baseline":"-1.68"},{"ID":"FBgn0031228","EGF_Baseline":"-1.73"},{"ID":"FBgn0000996","EGF_Baseline":"3.85"},{"ID":"FBgn0053547","EGF_Baseline":"-2.09"},{"ID":"FBgn0051710","EGF_Baseline":"-1.15"},{"ID":"FBgn0032047","EGF_Baseline":"0.46"},{"ID":"FBgn0050089","EGF_Baseline":"1.99"},{"ID":"FBgn0032049","EGF_Baseline":"-0.92"},{"ID":"FBgn0050026","EGF_Baseline":"0.83"},{"ID":"FBgn0033988","EGF_Baseline":"0.72"},{"ID":"FBgn0037326","EGF_Baseline":"0.58"},{"ID":"FBgn0003483","EGF_Baseline":"0.31"},{"ID":"FBgn0036953","EGF_Baseline":"-1.99"},{"ID":"FBgn0031717","EGF_Baseline":"1.51"},{"ID":"FBgn0031515","EGF_Baseline":"-1.46"},{"ID":"FBgn0261274","EGF_Baseline":"-0.75"},{"ID":"FBgn0031304","EGF_Baseline":"0.48"},{"ID":"FBgn0025803","EGF_Baseline":"2.32"},{"ID":"FBgn0000079","EGF_Baseline":"-1"},{"ID":"FBgn0026438","EGF_Baseline":"-1.08"},{"ID":"FBgn0004592","EGF_Baseline":"-1.64"},{"ID":"FBgn0036484","EGF_Baseline":"-0.72"},{"ID":"FBgn0052643","EGF_Baseline":"-0.76"},{"ID":"FBgn0024733","EGF_Baseline":"1.32"},{"ID":"FBgn0020513","EGF_Baseline":"0.55"},{"ID":"FBgn0033460","EGF_Baseline":"-0.86"},{"ID":"FBgn0038156","EGF_Baseline":"-1.63"},{"ID":"FBgn0023477","EGF_Baseline":"-0.48"},{"ID":"FBgn0039246","EGF_Baseline":"-0.88"},{"ID":"FBgn0035529","EGF_Baseline":"0.33"},{"ID":"FBgn0034182","EGF_Baseline":"-1.21"},{"ID":"FBgn0035771","EGF_Baseline":"1.17"},{"ID":"FBgn0034921","EGF_Baseline":"-1.22"},{"ID":"FBgn0050471","EGF_Baseline":"-0.69"},{"ID":"FBgn0039438","EGF_Baseline":"-1.63"},{"ID":"FBgn0028433","EGF_Baseline":"-0.9"},{"ID":"FBgn0000117","EGF_Baseline":"-1.53"},{"ID":"FBgn0004049","EGF_Baseline":"1.04"},{"ID":"FBgn0031950","EGF_Baseline":"-0.79"},{"ID":"FBgn0023541","EGF_Baseline":"-1.43"},{"ID":"FBgn0026385","EGF_Baseline":"-0.25"},{"ID":"FBgn0016978","EGF_Baseline":"-2.01"},{"ID":"FBgn0010348","EGF_Baseline":"1.06"},{"ID":"FBgn0002567","EGF_Baseline":"-1.06"},{"ID":"FBgn0032421","EGF_Baseline":"-1.31"},{"ID":"FBgn0051679","EGF_Baseline":"0.26"},{"ID":"FBgn0051548","EGF_Baseline":"-0.88"},{"ID":"FBgn0038153","EGF_Baseline":"-1.04"},{"ID":"FBgn0037607","EGF_Baseline":"0.69"},{"ID":"FBgn0021761","EGF_Baseline":"-0.49"},{"ID":"FBgn0035002","EGF_Baseline":"-1.06"},{"ID":"FBgn0033205","EGF_Baseline":"-1.51"},{"ID":"FBgn0033733","EGF_Baseline":"-0.98"},{"ID":"FBgn0032966","EGF_Baseline":"-0.25"},{"ID":"FBgn0053223","EGF_Baseline":"2.59"},{"ID":"FBgn0052061","EGF_Baseline":"0.42"},{"ID":"FBgn0053196","EGF_Baseline":"-2.23"},{"ID":"FBgn0028694","EGF_Baseline":"1.13"},{"ID":"FBgn0036235","EGF_Baseline":"-0.32"},{"ID":"FBgn0038359","EGF_Baseline":"-1.2"},{"ID":"FBgn0065032","EGF_Baseline":"2.43"},{"ID":"FBgn0036791","EGF_Baseline":"-1.09"},{"ID":"FBgn0040363","EGF_Baseline":"-0.37"},{"ID":"FBgn0036877","EGF_Baseline":"-1"},{"ID":"FBgn0003607","EGF_Baseline":"0.53"},{"ID":"FBgn0034021","EGF_Baseline":"-1.09"},{"ID":"FBgn0051477","EGF_Baseline":"-1.74"},{"ID":"FBgn0030262","EGF_Baseline":"0.49"},{"ID":"FBgn0032478","EGF_Baseline":"0.41"},{"ID":"FBgn0031559","EGF_Baseline":"0.9"},{"ID":"FBgn0053129","EGF_Baseline":"-1.15"},{"ID":"FBgn0040751","EGF_Baseline":"0.72"},{"ID":"FBgn0024314","EGF_Baseline":"0.71"},{"ID":"FBgn0022097","EGF_Baseline":"-0.39"},{"ID":"FBgn0030411","EGF_Baseline":"-0.9"},{"ID":"FBgn0053475","EGF_Baseline":"-1.05"},{"ID":"FBgn0037200","EGF_Baseline":"-0.3"},{"ID":"FBgn0034853","EGF_Baseline":"1.47"},{"ID":"FBgn0039040","EGF_Baseline":"-0.31"},{"ID":"FBgn0039013","EGF_Baseline":"-0.84"},{"ID":"FBgn0034647","EGF_Baseline":"0.52"},{"ID":"FBgn0003732","EGF_Baseline":"0.4"},{"ID":"FBgn0051464","EGF_Baseline":"0.78"},{"ID":"FBgn0028543","EGF_Baseline":"-1.13"},{"ID":"FBgn0010258","EGF_Baseline":"0.4"},{"ID":"FBgn0030685","EGF_Baseline":"0.76"},{"ID":"FBgn0039228","EGF_Baseline":"1.2"},{"ID":"FBgn0030756","EGF_Baseline":"-1.76"},{"ID":"FBgn0037350","EGF_Baseline":"-0.89"},{"ID":"FBgn0030715","EGF_Baseline":"0.93"},{"ID":"FBgn0015239","EGF_Baseline":"0.2"},{"ID":"FBgn0086706","EGF_Baseline":"-0.44"},{"ID":"FBgn0038685","EGF_Baseline":"-1.25"},{"ID":"FBgn0004584","EGF_Baseline":"-1.95"},{"ID":"FBgn0014427","EGF_Baseline":"-0.66"},{"ID":"FBgn0031640","EGF_Baseline":"-1.42"},{"ID":"FBgn0013767","EGF_Baseline":"-1.13"},{"ID":"FBgn0031771","EGF_Baseline":"0.68"},{"ID":"FBgn0036910","EGF_Baseline":"-0.74"},{"ID":"FBgn0015776","EGF_Baseline":"0.7"},{"ID":"FBgn0027615","EGF_Baseline":"-1.56"},{"ID":"FBgn0051867","EGF_Baseline":"0.75"},{"ID":"FBgn0033924","EGF_Baseline":"0.15"},{"ID":"FBgn0005674","EGF_Baseline":"0.69"},{"ID":"FBgn0039141","EGF_Baseline":"2.36"},{"ID":"FBgn0039761","EGF_Baseline":"-1.16"},{"ID":"FBgn0040651","EGF_Baseline":"-0.6"},{"ID":"FBgn0033289","EGF_Baseline":"-0.84"},{"ID":"FBgn0032782","EGF_Baseline":"0.98"},{"ID":"FBgn0261397","EGF_Baseline":"1.09"},{"ID":"FBgn0022724","EGF_Baseline":"-0.95"},{"ID":"FBgn0029809","EGF_Baseline":"0.34"},{"ID":"FBgn0028904","EGF_Baseline":"-1.64"},{"ID":"FBgn0031664","EGF_Baseline":"-0.45"},{"ID":"FBgn0052690","EGF_Baseline":"1.67"},{"ID":"FBgn0035721","EGF_Baseline":"0.71"},{"ID":"FBgn0038737","EGF_Baseline":"0.62"},{"ID":"FBgn0027507","EGF_Baseline":"-0.7"},{"ID":"FBgn0011818","EGF_Baseline":"0.7"},{"ID":"FBgn0035760","EGF_Baseline":"-0.71"},{"ID":"FBgn0035776","EGF_Baseline":"2.05"},{"ID":"FBgn0038524","EGF_Baseline":"-1.51"},{"ID":"FBgn0259728","EGF_Baseline":"0.83"},{"ID":"FBgn0037183","EGF_Baseline":"0.21"},{"ID":"FBgn0037212","EGF_Baseline":"0.55"},{"ID":"FBgn0015129","EGF_Baseline":"0.9"},{"ID":"FBgn0029995","EGF_Baseline":"-0.94"},{"ID":"FBgn0027453","EGF_Baseline":"-0.97"},{"ID":"FBgn0015245","EGF_Baseline":"-0.33"},{"ID":"FBgn0038827","EGF_Baseline":"1.54"},{"ID":"FBgn0030237","EGF_Baseline":"-1.08"},{"ID":"FBgn0032749","EGF_Baseline":"-0.97"},{"ID":"FBgn0019637","EGF_Baseline":"-1.21"},{"ID":"FBgn0035557","EGF_Baseline":"0.76"},{"ID":"FBgn0260741","EGF_Baseline":"-2.05"},{"ID":"FBgn0250838","EGF_Baseline":"-2.68"},{"ID":"FBgn0036436","EGF_Baseline":"0.5"},{"ID":"FBgn0037464","EGF_Baseline":"1.35"},{"ID":"FBgn0259876","EGF_Baseline":"1.68"},{"ID":"FBgn0035375","EGF_Baseline":"0.96"},{"ID":"FBgn0040260","EGF_Baseline":"-1.55"},{"ID":"FBgn0037069","EGF_Baseline":"0.77"},{"ID":"FBgn0028886","EGF_Baseline":"-1.17"},{"ID":"FBgn0031996","EGF_Baseline":"0.54"},{"ID":"FBgn0036082","EGF_Baseline":"-1.89"},{"ID":"FBgn0035537","EGF_Baseline":"-1.49"},{"ID":"FBgn0083965","EGF_Baseline":"0.49"},{"ID":"FBgn0037962","EGF_Baseline":"-2.08"},{"ID":"FBgn0002535","EGF_Baseline":"1.5"},{"ID":"FBgn0039161","EGF_Baseline":"-0.69"},{"ID":"FBgn0051068","EGF_Baseline":"-1.17"},{"ID":"FBgn0030768","EGF_Baseline":"-1.53"},{"ID":"FBgn0002021","EGF_Baseline":"-1.07"},{"ID":"FBgn0259189","EGF_Baseline":"-0.7"},{"ID":"FBgn0054038","EGF_Baseline":"0.89"},{"ID":"FBgn0050105","EGF_Baseline":"-0.68"},{"ID":"FBgn0037562","EGF_Baseline":"-0.69"},{"ID":"FBgn0000015","EGF_Baseline":"-0.86"},{"ID":"FBgn0001263","EGF_Baseline":"1.47"},{"ID":"FBgn0003074","EGF_Baseline":"0.46"},{"ID":"FBgn0036520","EGF_Baseline":"-0.89"},{"ID":"FBgn0031208","EGF_Baseline":"2.13"},{"ID":"FBgn0030628","EGF_Baseline":"-1.47"},{"ID":"FBgn0041781","EGF_Baseline":"-0.61"},{"ID":"FBgn0026384","EGF_Baseline":"-0.68"},{"ID":"FBgn0250904","EGF_Baseline":"-0.69"},{"ID":"FBgn0085200","EGF_Baseline":"0.58"},{"ID":"FBgn0040994","EGF_Baseline":"-0.8"},{"ID":"FBgn0032894","EGF_Baseline":"1.36"},{"ID":"FBgn0019643","EGF_Baseline":"1.13"},{"ID":"FBgn0053914","EGF_Baseline":"-1.19"},{"ID":"FBgn0053516","EGF_Baseline":"-1.73"},{"ID":"FBgn0031868","EGF_Baseline":"-0.75"},{"ID":"FBgn0031092","EGF_Baseline":"0.78"},{"ID":"FBgn0040503","EGF_Baseline":"0.86"},{"ID":"FBgn0040941","EGF_Baseline":"-1.25"},{"ID":"FBgn0038487","EGF_Baseline":"-0.68"},{"ID":"FBgn0261631","EGF_Baseline":"1.87"},{"ID":"FBgn0031367","EGF_Baseline":"-0.64"},{"ID":"FBgn0029813","EGF_Baseline":"-1.14"},{"ID":"FBgn0051111","EGF_Baseline":"2.89"},{"ID":"FBgn0013954","EGF_Baseline":"-1.46"},{"ID":"FBgn0050443","EGF_Baseline":"1.11"},{"ID":"FBgn0033127","EGF_Baseline":"-0.86"},{"ID":"FBgn0031253","EGF_Baseline":"0.07"},{"ID":"FBgn0028468","EGF_Baseline":"1.31"},{"ID":"FBgn0086368","EGF_Baseline":"0.45"},{"ID":"FBgn0000357","EGF_Baseline":"-0.46"},{"ID":"FBgn0035780","EGF_Baseline":"-0.71"},{"ID":"FBgn0030289","EGF_Baseline":"-1.53"},{"ID":"FBgn0039632","EGF_Baseline":"-0.89"},{"ID":"FBgn0015524","EGF_Baseline":"2.15"},{"ID":"FBgn0036537","EGF_Baseline":"-1.04"},{"ID":"FBgn0040609","EGF_Baseline":"1.86"},{"ID":"FBgn0035923","EGF_Baseline":"-0.66"},{"ID":"FBgn0034710","EGF_Baseline":"0.45"},{"ID":"FBgn0051002","EGF_Baseline":"-1.33"},{"ID":"FBgn0038099","EGF_Baseline":"-1.4"},{"ID":"FBgn0086359","EGF_Baseline":"-0.92"},{"ID":"FBgn0003888","EGF_Baseline":"1.75"},{"ID":"FBgn0030538","EGF_Baseline":"-1.63"},{"ID":"FBgn0032815","EGF_Baseline":"-1.16"},{"ID":"FBgn0029642","EGF_Baseline":"0.34"},{"ID":"FBgn0035253","EGF_Baseline":"1.68"},{"ID":"FBgn0030322","EGF_Baseline":"-0.38"},{"ID":"FBgn0038868","EGF_Baseline":"0.65"},{"ID":"FBgn0030625","EGF_Baseline":"-1.2"},{"ID":"FBgn0031103","EGF_Baseline":"-1.02"},{"ID":"FBgn0040832","EGF_Baseline":"1.14"},{"ID":"FBgn0261526","EGF_Baseline":"1.42"},{"ID":"FBgn0033041","EGF_Baseline":"0.55"},{"ID":"FBgn0031064","EGF_Baseline":"-1.94"},{"ID":"FBgn0002774","EGF_Baseline":"-0.59"},{"ID":"FBgn0011787","EGF_Baseline":"1.12"},{"ID":"FBgn0031062","EGF_Baseline":"1.66"},{"ID":"FBgn0039927","EGF_Baseline":"-1.23"},{"ID":"FBgn0035243","EGF_Baseline":"1.63"},{"ID":"FBgn0036927","EGF_Baseline":"-0.67"},{"ID":"FBgn0027079","EGF_Baseline":"0.43"},{"ID":"FBgn0051415","EGF_Baseline":"-0.85"},{"ID":"FBgn0000659","EGF_Baseline":"1.5"},{"ID":"FBgn0050122","EGF_Baseline":"0.77"},{"ID":"FBgn0037389","EGF_Baseline":"1.29"},{"ID":"FBgn0026374","EGF_Baseline":"-0.5"},{"ID":"FBgn0003741","EGF_Baseline":"1"},{"ID":"FBgn0036338","EGF_Baseline":"0.75"},{"ID":"FBgn0030341","EGF_Baseline":"1.2"},{"ID":"FBgn0031310","EGF_Baseline":"0.89"},{"ID":"FBgn0040972","EGF_Baseline":"0.2"},{"ID":"FBgn0052238","EGF_Baseline":"-0.52"},{"ID":"FBgn0036333","EGF_Baseline":"1.32"},{"ID":"FBgn0033636","EGF_Baseline":"-1.88"},{"ID":"FBgn0030313","EGF_Baseline":"-0.76"},{"ID":"FBgn0037876","EGF_Baseline":"1.21"},{"ID":"FBgn0035480","EGF_Baseline":"2.23"},{"ID":"FBgn0033452","EGF_Baseline":"0.59"},{"ID":"FBgn0050045","EGF_Baseline":"-1.09"},{"ID":"FBgn0040256","EGF_Baseline":"-1.04"},{"ID":"FBgn0023528","EGF_Baseline":"-0.15"},{"ID":"FBgn0041239","EGF_Baseline":"-0.86"},{"ID":"FBgn0027948","EGF_Baseline":"0.51"},{"ID":"FBgn0039789","EGF_Baseline":"-0.57"},{"ID":"FBgn0260799","EGF_Baseline":"-1.02"},{"ID":"FBgn0037359","EGF_Baseline":"-0.08"},{"ID":"FBgn0030544","EGF_Baseline":"-1.07"},{"ID":"FBgn0022702","EGF_Baseline":"1.44"},{"ID":"FBgn0001325","EGF_Baseline":"0.81"},{"ID":"FBgn0032369","EGF_Baseline":"-1"},{"ID":"FBgn0052633","EGF_Baseline":"-1.92"},{"ID":"FBgn0035856","EGF_Baseline":"-0.94"},{"ID":"FBgn0039665","EGF_Baseline":"-0.3"},{"ID":"FBgn0028487","EGF_Baseline":"0.2"},{"ID":"FBgn0003676","EGF_Baseline":"2.11"},{"ID":"FBgn0033158","EGF_Baseline":"0.81"},{"ID":"FBgn0039939","EGF_Baseline":"-0.09"},{"ID":"FBgn0030399","EGF_Baseline":"-0.48"},{"ID":"FBgn0014184","EGF_Baseline":"-1.28"},{"ID":"FBgn0037122","EGF_Baseline":"0.89"},{"ID":"FBgn0085284","EGF_Baseline":"3.03"},{"ID":"FBgn0261535","EGF_Baseline":"-1.03"},{"ID":"FBgn0038732","EGF_Baseline":"0.27"},{"ID":"FBgn0012034","EGF_Baseline":"-1.13"},{"ID":"FBgn0031145","EGF_Baseline":"-0.92"},{"ID":"FBgn0041161","EGF_Baseline":"0.55"},{"ID":"FBgn0003067","EGF_Baseline":"0.84"},{"ID":"FBgn0002578","EGF_Baseline":"0.21"},{"ID":"FBgn0016650","EGF_Baseline":"-1.61"},{"ID":"FBgn0053138","EGF_Baseline":"1.12"},{"ID":"FBgn0259216","EGF_Baseline":"-1.04"},{"ID":"FBgn0036565","EGF_Baseline":"1.93"},{"ID":"FBgn0035144","EGF_Baseline":"-0.2"},{"ID":"FBgn0033438","EGF_Baseline":"-0.77"},{"ID":"FBgn0250841","EGF_Baseline":"0.32"},{"ID":"FBgn0038272","EGF_Baseline":"0.04"},{"ID":"FBgn0030949","EGF_Baseline":"-1.52"},{"ID":"FBgn0053286","EGF_Baseline":"1.02"},{"ID":"FBgn0032005","EGF_Baseline":"0.16"},{"ID":"FBgn0038674","EGF_Baseline":"-1.43"},{"ID":"FBgn0015000","EGF_Baseline":"0.61"},{"ID":"FBgn0004907","EGF_Baseline":"0.56"},{"ID":"FBgn0039796","EGF_Baseline":"0.66"},{"ID":"FBgn0051901","EGF_Baseline":"1.21"},{"ID":"FBgn0037379","EGF_Baseline":"-1.06"},{"ID":"FBgn0039204","EGF_Baseline":"0.38"},{"ID":"FBgn0032515","EGF_Baseline":"-1.57"},{"ID":"FBgn0029079","EGF_Baseline":"1.51"},{"ID":"FBgn0034397","EGF_Baseline":"0.61"},{"ID":"FBgn0003321","EGF_Baseline":"1.45"},{"ID":"FBgn0027601","EGF_Baseline":"1.28"},{"ID":"FBgn0003255","EGF_Baseline":"-0.88"},{"ID":"FBgn0036552","EGF_Baseline":"-0.34"},{"ID":"FBgn0032290","EGF_Baseline":"-0.96"},{"ID":"FBgn0261854","EGF_Baseline":"-0.51"},{"ID":"FBgn0030940","EGF_Baseline":"4.58"},{"ID":"FBgn0030774","EGF_Baseline":"-1.63"},{"ID":"FBgn0037500","EGF_Baseline":"0.49"},{"ID":"FBgn0261800","EGF_Baseline":"0.54"},{"ID":"FBgn0003638","EGF_Baseline":"0.44"},{"ID":"FBgn0032094","EGF_Baseline":"-0.11"},{"ID":"FBgn0259896","EGF_Baseline":"0.94"},{"ID":"FBgn0038188","EGF_Baseline":"0.48"},{"ID":"FBgn0034530","EGF_Baseline":"-1.21"},{"ID":"FBgn0051235","EGF_Baseline":"-1.46"},{"ID":"FBgn0035254","EGF_Baseline":"0.76"},{"ID":"FBgn0032772","EGF_Baseline":"0.68"},{"ID":"FBgn0038630","EGF_Baseline":"0.5"},{"ID":"FBgn0011509","EGF_Baseline":"0.23"},{"ID":"FBgn0038386","EGF_Baseline":"0.39"},{"ID":"FBgn0035741","EGF_Baseline":"1.31"},{"ID":"FBgn0030217","EGF_Baseline":"-0.73"},{"ID":"FBgn0052811","EGF_Baseline":"0.95"},{"ID":"FBgn0004872","EGF_Baseline":"0.31"},{"ID":"FBgn0036489","EGF_Baseline":"1.05"},{"ID":"FBgn0260747","EGF_Baseline":"-0.41"},{"ID":"FBgn0035696","EGF_Baseline":"-0.64"},{"ID":"FBgn0032260","EGF_Baseline":"1.74"},{"ID":"FBgn0037644","EGF_Baseline":"-0.19"},{"ID":"FBgn0004054","EGF_Baseline":"-0.83"},{"ID":"FBgn0040096","EGF_Baseline":"-1.96"},{"ID":"FBgn0085812","EGF_Baseline":"-0.73"},{"ID":"FBgn0025726","EGF_Baseline":"-1.36"},{"ID":"FBgn0027109","EGF_Baseline":"0.96"},{"ID":"FBgn0032039","EGF_Baseline":"0.84"},{"ID":"FBgn0085489","EGF_Baseline":"-1.79"},{"ID":"FBgn0039596","EGF_Baseline":"1.2"},{"ID":"FBgn0038582","EGF_Baseline":"-1.28"},{"ID":"FBgn0032637","EGF_Baseline":"0.73"},{"ID":"FBgn0041245","EGF_Baseline":"-1.71"},{"ID":"FBgn0027600","EGF_Baseline":"-0.94"},{"ID":"FBgn0034462","EGF_Baseline":"-0.87"},{"ID":"FBgn0033902","EGF_Baseline":"3.08"},{"ID":"FBgn0042134","EGF_Baseline":"0.66"},{"ID":"FBgn0040718","EGF_Baseline":"-0.66"},{"ID":"FBgn0010660","EGF_Baseline":"0.5"},{"ID":"FBgn0020385","EGF_Baseline":"-0.5"},{"ID":"FBgn0014163","EGF_Baseline":"0.63"},{"ID":"FBgn0038416","EGF_Baseline":"-1.14"},{"ID":"FBgn0011566","EGF_Baseline":"-1.45"},{"ID":"FBgn0034262","EGF_Baseline":"-0.88"},{"ID":"FBgn0031319","EGF_Baseline":"0.32"},{"ID":"FBgn0030518","EGF_Baseline":"1.83"},{"ID":"FBgn0000592","EGF_Baseline":"0.17"},{"ID":"FBgn0050085","EGF_Baseline":"0.66"},{"ID":"FBgn0085476","EGF_Baseline":"-0.41"},{"ID":"FBgn0033323","EGF_Baseline":"1.1"},{"ID":"FBgn0031048","EGF_Baseline":"-1.45"},{"ID":"FBgn0039811","EGF_Baseline":"1.16"},{"ID":"FBgn0035208","EGF_Baseline":"1.22"},{"ID":"FBgn0053213","EGF_Baseline":"1.33"},{"ID":"FBgn0019828","EGF_Baseline":"0.98"},{"ID":"FBgn0260857","EGF_Baseline":"1.18"},{"ID":"FBgn0034154","EGF_Baseline":"0.52"},{"ID":"FBgn0250786","EGF_Baseline":"-0.79"},{"ID":"FBgn0024183","EGF_Baseline":"-1.51"},{"ID":"FBgn0037709","EGF_Baseline":"-1.01"},{"ID":"FBgn0033688","EGF_Baseline":"3.17"},{"ID":"FBgn0025637","EGF_Baseline":"-0.61"},{"ID":"FBgn0052371","EGF_Baseline":"0.54"},{"ID":"FBgn0050403","EGF_Baseline":"1.75"},{"ID":"FBgn0038617","EGF_Baseline":"-1.21"},{"ID":"FBgn0035338","EGF_Baseline":"0.95"},{"ID":"FBgn0000928","EGF_Baseline":"0.59"},{"ID":"FBgn0038845","EGF_Baseline":"1.51"},{"ID":"FBgn0050093","EGF_Baseline":"0.57"},{"ID":"FBgn0038394","EGF_Baseline":"0.35"},{"ID":"FBgn0036859","EGF_Baseline":"-0.73"},{"ID":"FBgn0036302","EGF_Baseline":"0.72"},{"ID":"FBgn0046879","EGF_Baseline":"2.39"},{"ID":"FBgn0037594","EGF_Baseline":"-1.39"},{"ID":"FBgn0038701","EGF_Baseline":"-1.07"},{"ID":"FBgn0032867","EGF_Baseline":"-1.12"},{"ID":"FBgn0030390","EGF_Baseline":"-1.18"},{"ID":"FBgn0037370","EGF_Baseline":"-2.02"},{"ID":"FBgn0051550","EGF_Baseline":"-1.31"},{"ID":"FBgn0052772","EGF_Baseline":"-1.16"},{"ID":"FBgn0031756","EGF_Baseline":"-0.51"},{"ID":"FBgn0050392","EGF_Baseline":"0.38"},{"ID":"FBgn0038350","EGF_Baseline":"-0.9"},{"ID":"FBgn0035009","EGF_Baseline":"0.75"},{"ID":"FBgn0037702","EGF_Baseline":"-1.7"},{"ID":"FBgn0036161","EGF_Baseline":"0.28"},{"ID":"FBgn0085321","EGF_Baseline":"-0.95"},{"ID":"FBgn0015615","EGF_Baseline":"-0.45"},{"ID":"FBgn0010548","EGF_Baseline":"-0.5"},{"ID":"FBgn0010497","EGF_Baseline":"-1.33"},{"ID":"FBgn0031897","EGF_Baseline":"-1.92"},{"ID":"FBgn0002632","EGF_Baseline":"0.58"},{"ID":"FBgn0034177","EGF_Baseline":"-0.53"},{"ID":"FBgn0038224","EGF_Baseline":"-1.18"},{"ID":"FBgn0038133","EGF_Baseline":"-0.73"},{"ID":"FBgn0085350","EGF_Baseline":"-1.36"},{"ID":"FBgn0028622","EGF_Baseline":"-2.14"},{"ID":"FBgn0036131","EGF_Baseline":"2.01"},{"ID":"FBgn0030511","EGF_Baseline":"0.82"},{"ID":"FBgn0030562","EGF_Baseline":"-1.21"},{"ID":"FBgn0053182","EGF_Baseline":"1.81"},{"ID":"FBgn0030980","EGF_Baseline":"-0.45"},{"ID":"FBgn0032390","EGF_Baseline":"1.72"},{"ID":"FBgn0010213","EGF_Baseline":"1.06"},{"ID":"FBgn0085196","EGF_Baseline":"0.53"},{"ID":"FBgn0033236","EGF_Baseline":"-1.1"},{"ID":"FBgn0051391","EGF_Baseline":"1.7"},{"ID":"FBgn0031270","EGF_Baseline":"-1.69"},{"ID":"FBgn0035830","EGF_Baseline":"-0.78"},{"ID":"FBgn0034251","EGF_Baseline":"1.38"},{"ID":"FBgn0037796","EGF_Baseline":"1.21"},{"ID":"FBgn0031592","EGF_Baseline":"-2.07"},{"ID":"FBgn0026393","EGF_Baseline":"-1.07"},{"ID":"FBgn0032265","EGF_Baseline":"-0.09"},{"ID":"FBgn0037059","EGF_Baseline":"-1.23"},{"ID":"FBgn0039902","EGF_Baseline":"-1.27"},{"ID":"FBgn0037443","EGF_Baseline":"0.44"},{"ID":"FBgn0015283","EGF_Baseline":"-0.94"},{"ID":"FBgn0035409","EGF_Baseline":"0.32"},{"ID":"FBgn0026737","EGF_Baseline":"0.57"},{"ID":"FBgn0035902","EGF_Baseline":"-0.82"},{"ID":"FBgn0034515","EGF_Baseline":"-0.31"},{"ID":"FBgn0033032","EGF_Baseline":"0.26"},{"ID":"FBgn0034299","EGF_Baseline":"-0.6"},{"ID":"FBgn0031275","EGF_Baseline":"-1"},{"ID":"FBgn0083981","EGF_Baseline":"0.34"},{"ID":"FBgn0035827","EGF_Baseline":"-0.58"},{"ID":"FBgn0038756","EGF_Baseline":"-1.43"},{"ID":"FBgn0038407","EGF_Baseline":"-1.39"},{"ID":"FBgn0085328","EGF_Baseline":"0.97"},{"ID":"FBgn0015323","EGF_Baseline":"0.18"},{"ID":"FBgn0023090","EGF_Baseline":"-0.56"},{"ID":"FBgn0010762","EGF_Baseline":"0.13"},{"ID":"FBgn0001961","EGF_Baseline":"0.15"},{"ID":"FBgn0029931","EGF_Baseline":"-0.51"},{"ID":"FBgn0034335","EGF_Baseline":"-0.38"},{"ID":"FBgn0085271","EGF_Baseline":"0.77"},{"ID":"FBgn0259170","EGF_Baseline":"-1.03"},{"ID":"FBgn0036838","EGF_Baseline":"-2"},{"ID":"FBgn0031564","EGF_Baseline":"1.28"},{"ID":"FBgn0033342","EGF_Baseline":"1.02"},{"ID":"FBgn0051875","EGF_Baseline":"-1.66"},{"ID":"FBgn0035518","EGF_Baseline":"1.04"},{"ID":"FBgn0029532","EGF_Baseline":"-0.95"},{"ID":"FBgn0014391","EGF_Baseline":"1.36"},{"ID":"FBgn0034140","EGF_Baseline":"-1.22"},{"ID":"FBgn0034865","EGF_Baseline":"-0.17"},{"ID":"FBgn0032620","EGF_Baseline":"0.92"},{"ID":"FBgn0051199","EGF_Baseline":"0.52"},{"ID":"FBgn0037014","EGF_Baseline":"0.3"},{"ID":"FBgn0035513","EGF_Baseline":"0.57"},{"ID":"FBgn0027539","EGF_Baseline":"1.37"},{"ID":"FBgn0029750","EGF_Baseline":"-0.45"},{"ID":"FBgn0004391","EGF_Baseline":"1.09"},{"ID":"FBgn0015789","EGF_Baseline":"0.91"},{"ID":"FBgn0020307","EGF_Baseline":"0.33"},{"ID":"FBgn0037843","EGF_Baseline":"-0.43"},{"ID":"FBgn0032109","EGF_Baseline":"-0.97"},{"ID":"FBgn0040346","EGF_Baseline":"-1.41"},{"ID":"FBgn0259163","EGF_Baseline":"-0.51"},{"ID":"FBgn0035793","EGF_Baseline":"1.59"},{"ID":"FBgn0002643","EGF_Baseline":"1.15"},{"ID":"FBgn0032505","EGF_Baseline":"-1.13"},{"ID":"FBgn0028380","EGF_Baseline":"-0.08"},{"ID":"FBgn0031505","EGF_Baseline":"-0.82"},{"ID":"FBgn0034907","EGF_Baseline":"1.17"},{"ID":"FBgn0039303","EGF_Baseline":"2.35"},{"ID":"FBgn0001291","EGF_Baseline":"-0.74"},{"ID":"FBgn0039659","EGF_Baseline":"-1.29"},{"ID":"FBgn0261279","EGF_Baseline":"-1.04"},{"ID":"FBgn0040308","EGF_Baseline":"0.46"},{"ID":"FBgn0032629","EGF_Baseline":"0.63"},{"ID":"FBgn0011761","EGF_Baseline":"-0.77"},{"ID":"FBgn0030370","EGF_Baseline":"0.91"},{"ID":"FBgn0052016","EGF_Baseline":"1.14"},{"ID":"FBgn0025692","EGF_Baseline":"0.69"},{"ID":"FBgn0038974","EGF_Baseline":"0.82"},{"ID":"FBgn0052988","EGF_Baseline":"-1.64"},{"ID":"FBgn0260855","EGF_Baseline":"-0.77"},{"ID":"FBgn0030506","EGF_Baseline":"-0.3"},{"ID":"FBgn0035166","EGF_Baseline":"-0.98"},{"ID":"FBgn0032360","EGF_Baseline":"-1.52"},{"ID":"FBgn0030406","EGF_Baseline":"1.8"},{"ID":"FBgn0041621","EGF_Baseline":"-0.95"},{"ID":"FBgn0036359","EGF_Baseline":"0.53"},{"ID":"FBgn0041102","EGF_Baseline":"-1.06"},{"ID":"FBgn0033885","EGF_Baseline":"0.69"},{"ID":"FBgn0026143","EGF_Baseline":"1.34"},{"ID":"FBgn0051087","EGF_Baseline":"-0.59"},{"ID":"FBgn0028695","EGF_Baseline":"-1.44"},{"ID":"FBgn0037679","EGF_Baseline":"-1.33"},{"ID":"FBgn0034911","EGF_Baseline":"1.51"},{"ID":"FBgn0033949","EGF_Baseline":"0.55"},{"ID":"FBgn0037050","EGF_Baseline":"0.47"},{"ID":"FBgn0261086","EGF_Baseline":"-0.84"},{"ID":"FBgn0261871","EGF_Baseline":"-1.01"},{"ID":"FBgn0029929","EGF_Baseline":"1.3"},{"ID":"FBgn0036756","EGF_Baseline":"-0.4"},{"ID":"FBgn0039272","EGF_Baseline":"0.4"},{"ID":"FBgn0029003","EGF_Baseline":"-0.58"},{"ID":"FBgn0038655","EGF_Baseline":"-1.06"},{"ID":"FBgn0037307","EGF_Baseline":"-1.85"},{"ID":"FBgn0003141","EGF_Baseline":"7.93"},{"ID":"FBgn0012344","EGF_Baseline":"0.55"},{"ID":"FBgn0033109","EGF_Baseline":"-0.84"},{"ID":"FBgn0014002","EGF_Baseline":"1.55"},{"ID":"FBgn0011774","EGF_Baseline":"-0.71"},{"ID":"FBgn0053202","EGF_Baseline":"-1.31"},{"ID":"FBgn0085339","EGF_Baseline":"-0.11"},{"ID":"FBgn0038610","EGF_Baseline":"0.54"},{"ID":"FBgn0037435","EGF_Baseline":"1.69"},{"ID":"FBgn0029870","EGF_Baseline":"-1.03"},{"ID":"FBgn0036168","EGF_Baseline":"-1.25"},{"ID":"FBgn0051638","EGF_Baseline":"0.23"},{"ID":"FBgn0038172","EGF_Baseline":"0.47"},{"ID":"FBgn0011555","EGF_Baseline":"-0.34"},{"ID":"FBgn0051159","EGF_Baseline":"-1.91"},{"ID":"FBgn0039023","EGF_Baseline":"0.81"},{"ID":"FBgn0038509","EGF_Baseline":"0.59"},{"ID":"FBgn0038343","EGF_Baseline":"-0.22"},{"ID":"FBgn0001992","EGF_Baseline":"0.22"},{"ID":"FBgn0003028","EGF_Baseline":"-1.64"},{"ID":"FBgn0033859","EGF_Baseline":"-0.7"},{"ID":"FBgn0052685","EGF_Baseline":"1.03"},{"ID":"FBgn0000449","EGF_Baseline":"-0.69"},{"ID":"FBgn0040356","EGF_Baseline":"0.82"},{"ID":"FBgn0029503","EGF_Baseline":"-0.52"},{"ID":"FBgn0036128","EGF_Baseline":"-0.69"},{"ID":"FBgn0029907","EGF_Baseline":"-0.08"},{"ID":"FBgn0034166","EGF_Baseline":"-1.01"},{"ID":"FBgn0033054","EGF_Baseline":"0.73"},{"ID":"FBgn0085376","EGF_Baseline":"2.01"},{"ID":"FBgn0031376","EGF_Baseline":"-1.29"},{"ID":"FBgn0033428","EGF_Baseline":"-0.48"},{"ID":"FBgn0033916","EGF_Baseline":"-0.9"},{"ID":"FBgn0037744","EGF_Baseline":"0.62"},{"ID":"FBgn0004644","EGF_Baseline":"-0.7"},{"ID":"FBgn0038880","EGF_Baseline":"0.95"},{"ID":"FBgn0032449","EGF_Baseline":"-1"},{"ID":"FBgn0033069","EGF_Baseline":"0.19"},{"ID":"FBgn0030925","EGF_Baseline":"3.3"},{"ID":"FBgn0035411","EGF_Baseline":"-0.48"},{"ID":"FBgn0038053","EGF_Baseline":"-0.25"},{"ID":"FBgn0033958","EGF_Baseline":"-0.95"},{"ID":"FBgn0051446","EGF_Baseline":"0.84"},{"ID":"FBgn0030067","EGF_Baseline":"0.98"},{"ID":"FBgn0020655","EGF_Baseline":"-0.63"},{"ID":"FBgn0064766","EGF_Baseline":"0.79"},{"ID":"FBgn0039089","EGF_Baseline":"-1.61"},{"ID":"FBgn0261292","EGF_Baseline":"0.84"},{"ID":"FBgn0050020","EGF_Baseline":"1.13"},{"ID":"FBgn0036177","EGF_Baseline":"-0.46"},{"ID":"FBgn0250849","EGF_Baseline":"-1.32"},{"ID":"FBgn0028381","EGF_Baseline":"0.58"},{"ID":"FBgn0038506","EGF_Baseline":"-0.5"},{"ID":"FBgn0085225","EGF_Baseline":"-1.79"},{"ID":"FBgn0014009","EGF_Baseline":"0.27"},{"ID":"FBgn0031085","EGF_Baseline":"-1.05"},{"ID":"FBgn0036289","EGF_Baseline":"2.11"},{"ID":"FBgn0028996","EGF_Baseline":"-0.85"},{"ID":"FBgn0010339","EGF_Baseline":"-0.82"},{"ID":"FBgn0261592","EGF_Baseline":"3.33"},{"ID":"FBgn0260754","EGF_Baseline":"-0.63"},{"ID":"FBgn0003448","EGF_Baseline":"1.27"},{"ID":"FBgn0036774","EGF_Baseline":"0.31"},{"ID":"FBgn0086694","EGF_Baseline":"-2.45"},{"ID":"FBgn0004921","EGF_Baseline":"0.87"},{"ID":"FBgn0040107","EGF_Baseline":"13.58"},{"ID":"FBgn0026314","EGF_Baseline":"0.51"},{"ID":"FBgn0050342","EGF_Baseline":"-1.16"},{"ID":"FBgn0024941","EGF_Baseline":"-0.59"},{"ID":"FBgn0032083","EGF_Baseline":"-0.44"},{"ID":"FBgn0040387","EGF_Baseline":"1.28"},{"ID":"FBgn0037898","EGF_Baseline":"-1.34"},{"ID":"FBgn0039233","EGF_Baseline":"2.25"},{"ID":"FBgn0001316","EGF_Baseline":"-1.19"},{"ID":"FBgn0037882","EGF_Baseline":"0.66"},{"ID":"FBgn0033942","EGF_Baseline":"-0.89"},{"ID":"FBgn0053207","EGF_Baseline":"-1.69"},{"ID":"FBgn0022359","EGF_Baseline":"0.52"},{"ID":"FBgn0039602","EGF_Baseline":"0.26"},{"ID":"FBgn0250867","EGF_Baseline":"0.73"},{"ID":"FBgn0034473","EGF_Baseline":"0.49"},{"ID":"FBgn0037170","EGF_Baseline":"1.23"},{"ID":"FBgn0083975","EGF_Baseline":"-1.49"},{"ID":"FBgn0031534","EGF_Baseline":"-0.56"},{"ID":"FBgn0058045","EGF_Baseline":"1.47"},{"ID":"FBgn0031004","EGF_Baseline":"-0.25"},{"ID":"FBgn0031260","EGF_Baseline":"-0.34"},{"ID":"FBgn0038029","EGF_Baseline":"-0.71"},{"ID":"FBgn0035194","EGF_Baseline":"-0.94"},{"ID":"FBgn0040398","EGF_Baseline":"1.23"},{"ID":"FBgn0026199","EGF_Baseline":"-0.46"},{"ID":"FBgn0039194","EGF_Baseline":"-0.49"},{"ID":"FBgn0030995","EGF_Baseline":"-0.32"},{"ID":"FBgn0037921","EGF_Baseline":"1.05"},{"ID":"FBgn0031423","EGF_Baseline":"-1.04"},{"ID":"FBgn0032800","EGF_Baseline":"2.64"},{"ID":"FBgn0037880","EGF_Baseline":"-0.44"},{"ID":"FBgn0026089","EGF_Baseline":"-1.03"},{"ID":"FBgn0010398","EGF_Baseline":"-2.18"},{"ID":"FBgn0017550","EGF_Baseline":"-0.28"},{"ID":"FBgn0035981","EGF_Baseline":"-1.22"},{"ID":"FBgn0025885","EGF_Baseline":"1.19"},{"ID":"FBgn0037686","EGF_Baseline":"-0.98"},{"ID":"FBgn0031331","EGF_Baseline":"0.33"},{"ID":"FBgn0034246","EGF_Baseline":"-1.04"},{"ID":"FBgn0085256","EGF_Baseline":"-1.52"},{"ID":"FBgn0050000","EGF_Baseline":"0.34"},{"ID":"FBgn0028895","EGF_Baseline":"-2.07"},{"ID":"FBgn0034047","EGF_Baseline":"-1.68"},{"ID":"FBgn0039431","EGF_Baseline":"0.75"},{"ID":"FBgn0051424","EGF_Baseline":"-1.98"},{"ID":"FBgn0087039","EGF_Baseline":"0.61"},{"ID":"FBgn0053093","EGF_Baseline":"-0.7"},{"ID":"FBgn0033644","EGF_Baseline":"1.92"},{"ID":"FBgn0053290","EGF_Baseline":"1.2"},{"ID":"FBgn0004781","EGF_Baseline":"-1.03"},{"ID":"FBgn0052855","EGF_Baseline":"1.99"},{"ID":"FBgn0031678","EGF_Baseline":"0.39"},{"ID":"FBgn0028418","EGF_Baseline":"-0.97"},{"ID":"FBgn0038260","EGF_Baseline":"-1.05"},{"ID":"FBgn0260643","EGF_Baseline":"0.86"},{"ID":"FBgn0031012","EGF_Baseline":"0.8"},{"ID":"FBgn0046704","EGF_Baseline":"0.61"},{"ID":"FBgn0040931","EGF_Baseline":"-1.16"},{"ID":"FBgn0033590","EGF_Baseline":"-1.6"},{"ID":"FBgn0000560","EGF_Baseline":"-0.49"},{"ID":"FBgn0052137","EGF_Baseline":"-0.63"},{"ID":"FBgn0032650","EGF_Baseline":"1.13"},{"ID":"FBgn0023523","EGF_Baseline":"0.9"},{"ID":"FBgn0030016","EGF_Baseline":"0.56"},{"ID":"FBgn0004648","EGF_Baseline":"1.57"},{"ID":"FBgn0037325","EGF_Baseline":"1.21"},{"ID":"FBgn0051189","EGF_Baseline":"-1.04"},{"ID":"FBgn0260936","EGF_Baseline":"-0.35"},{"ID":"FBgn0035279","EGF_Baseline":"0.67"},{"ID":"FBgn0051324","EGF_Baseline":"0.9"},{"ID":"FBgn0038069","EGF_Baseline":"0.33"},{"ID":"FBgn0259986","EGF_Baseline":"-1.33"},{"ID":"FBgn0036271","EGF_Baseline":"-0.51"},{"ID":"FBgn0034997","EGF_Baseline":"-0.64"},{"ID":"FBgn0002930","EGF_Baseline":"-0.53"},{"ID":"FBgn0033367","EGF_Baseline":"0.84"},{"ID":"FBgn0031734","EGF_Baseline":"0.71"},{"ID":"FBgn0032002","EGF_Baseline":"-0.97"},{"ID":"FBgn0039874","EGF_Baseline":"-0.96"},{"ID":"FBgn0037092","EGF_Baseline":"-0.28"},{"ID":"FBgn0053988","EGF_Baseline":"1.5"},{"ID":"FBgn0032728","EGF_Baseline":"1.55"},{"ID":"FBgn0004240","EGF_Baseline":"-0.26"},{"ID":"FBgn0040321","EGF_Baseline":"0.6"},{"ID":"FBgn0050499","EGF_Baseline":"-1.46"},{"ID":"FBgn0023083","EGF_Baseline":"1.02"},{"ID":"FBgn0034255","EGF_Baseline":"0.96"},{"ID":"FBgn0037240","EGF_Baseline":"-0.61"},{"ID":"FBgn0061435","EGF_Baseline":"0.85"},{"ID":"FBgn0037365","EGF_Baseline":"-1.33"},{"ID":"FBgn0030429","EGF_Baseline":"-0.53"},{"ID":"FBgn0015519","EGF_Baseline":"0.68"},{"ID":"FBgn0010043","EGF_Baseline":"-1.75"},{"ID":"FBgn0034195","EGF_Baseline":"-0.78"},{"ID":"FBgn0052333","EGF_Baseline":"-1.66"},{"ID":"FBgn0051852","EGF_Baseline":"-1.41"},{"ID":"FBgn0031393","EGF_Baseline":"-0.48"},{"ID":"FBgn0039301","EGF_Baseline":"0.82"},{"ID":"FBgn0039530","EGF_Baseline":"-1.46"},{"ID":"FBgn0052603","EGF_Baseline":"-1.71"},{"ID":"FBgn0034351","EGF_Baseline":"0.83"},{"ID":"FBgn0036107","EGF_Baseline":"-1.42"},{"ID":"FBgn0250814","EGF_Baseline":"-1.04"},{"ID":"FBgn0034521","EGF_Baseline":"-1.82"},{"ID":"FBgn0050289","EGF_Baseline":"-0.11"},{"ID":"FBgn0032492","EGF_Baseline":"-0.92"},{"ID":"FBgn0030614","EGF_Baseline":"-0.78"},{"ID":"FBgn0034367","EGF_Baseline":"-0.63"},{"ID":"FBgn0020887","EGF_Baseline":"0.94"},{"ID":"FBgn0036697","EGF_Baseline":"9.91031984367451e-03"},{"ID":"FBgn0034356","EGF_Baseline":"-0.77"},{"ID":"FBgn0036860","EGF_Baseline":"-0.26"},{"ID":"FBgn0003527","EGF_Baseline":"0.8"},{"ID":"FBgn0052700","EGF_Baseline":"-0.89"},{"ID":"FBgn0038294","EGF_Baseline":"0.59"},{"ID":"FBgn0036446","EGF_Baseline":"0.07"},{"ID":"FBgn0033677","EGF_Baseline":"-0.57"},{"ID":"FBgn0028667","EGF_Baseline":"0.43"},{"ID":"FBgn0028868","EGF_Baseline":"0.5"},{"ID":"FBgn0037620","EGF_Baseline":"1"},{"ID":"FBgn0025709","EGF_Baseline":"-1.13"},{"ID":"FBgn0038291","EGF_Baseline":"0.51"},{"ID":"FBgn0032720","EGF_Baseline":"-0.37"},{"ID":"FBgn0029848","EGF_Baseline":"-0.47"},{"ID":"FBgn0016693","EGF_Baseline":"0.86"},{"ID":"FBgn0052380","EGF_Baseline":"1.59"},{"ID":"FBgn0035173","EGF_Baseline":"0.34"},{"ID":"FBgn0038683","EGF_Baseline":"0.46"},{"ID":"FBgn0020278","EGF_Baseline":"-0.69"},{"ID":"FBgn0260430","EGF_Baseline":"-0.62"},{"ID":"FBgn0038113","EGF_Baseline":"-0.62"},{"ID":"FBgn0039757","EGF_Baseline":"5.08"},{"ID":"FBgn0010296","EGF_Baseline":"-0.41"},{"ID":"FBgn0066292","EGF_Baseline":"-0.99"},{"ID":"FBgn0039827","EGF_Baseline":"0.5"},{"ID":"FBgn0031465","EGF_Baseline":"-0.13"},{"ID":"FBgn0053082","EGF_Baseline":"0.93"},{"ID":"FBgn0051248","EGF_Baseline":"0.97"},{"ID":"FBgn0034829","EGF_Baseline":"0.58"},{"ID":"FBgn0035085","EGF_Baseline":"2.21"},{"ID":"FBgn0037292","EGF_Baseline":"1.57"},{"ID":"FBgn0030807","EGF_Baseline":"1.33"},{"ID":"FBgn0036577","EGF_Baseline":"0.7"},{"ID":"FBgn0261049","EGF_Baseline":"-0.92"},{"ID":"FBgn0030874","EGF_Baseline":"-0.91"},{"ID":"FBgn0050376","EGF_Baseline":"0.92"},{"ID":"FBgn0039128","EGF_Baseline":"-0.88"},{"ID":"FBgn0011603","EGF_Baseline":"1.54"},{"ID":"FBgn0052055","EGF_Baseline":"0.55"},{"ID":"FBgn0031910","EGF_Baseline":"-0.09"},{"ID":"FBgn0032221","EGF_Baseline":"-2.14"},{"ID":"FBgn0030224","EGF_Baseline":"-1.35"},{"ID":"FBgn0036360","EGF_Baseline":"0.4"},{"ID":"FBgn0035272","EGF_Baseline":"-0.5"},{"ID":"FBgn0054046","EGF_Baseline":"0.55"},{"ID":"FBgn0051080","EGF_Baseline":"-1.38"},{"ID":"FBgn0028856","EGF_Baseline":"0.87"},{"ID":"FBgn0030634","EGF_Baseline":"0.23"},{"ID":"FBgn0026718","EGF_Baseline":"0.68"},{"ID":"FBgn0034985","EGF_Baseline":"0.18"},{"ID":"FBgn0260477","EGF_Baseline":"-0.7"},{"ID":"FBgn0027779","EGF_Baseline":"-1.11"},{"ID":"FBgn0039751","EGF_Baseline":"1.26"},{"ID":"FBgn0028848","EGF_Baseline":"1.26"},{"ID":"FBgn0031378","EGF_Baseline":"0.86"},{"ID":"FBgn0001491","EGF_Baseline":"0.46"},{"ID":"FBgn0033970","EGF_Baseline":"0.6"},{"ID":"FBgn0040063","EGF_Baseline":"-1.42"},{"ID":"FBgn0052442","EGF_Baseline":"1.29"},{"ID":"FBgn0020521","EGF_Baseline":"1.19"},{"ID":"FBgn0260010","EGF_Baseline":"-1.06"},{"ID":"FBgn0038978","EGF_Baseline":"1.43"},{"ID":"FBgn0027095","EGF_Baseline":"-0.8"},{"ID":"FBgn0030657","EGF_Baseline":"-0.87"},{"ID":"FBgn0052635","EGF_Baseline":"1.2"},{"ID":"FBgn0002939","EGF_Baseline":"-1.51"},{"ID":"FBgn0030438","EGF_Baseline":"-0.58"},{"ID":"FBgn0031489","EGF_Baseline":"-2"},{"ID":"FBgn0001224","EGF_Baseline":"-0.15"},{"ID":"FBgn0261068","EGF_Baseline":"1.77"},{"ID":"FBgn0260971","EGF_Baseline":"0.45"},{"ID":"FBgn0036220","EGF_Baseline":"-0.3"},{"ID":"FBgn0033446","EGF_Baseline":"-0.95"},{"ID":"FBgn0038645","EGF_Baseline":"-0.61"},{"ID":"FBgn0030061","EGF_Baseline":"-0.85"},{"ID":"FBgn0033897","EGF_Baseline":"-1.07"},{"ID":"FBgn0037087","EGF_Baseline":"0.23"},{"ID":"FBgn0026309","EGF_Baseline":"-1.99"},{"ID":"FBgn0037276","EGF_Baseline":"-1.07"},{"ID":"FBgn0261268","EGF_Baseline":"1.97"},{"ID":"FBgn0001624","EGF_Baseline":"-1.24"},{"ID":"FBgn0015872","EGF_Baseline":"-1.18"},{"ID":"FBgn0031345","EGF_Baseline":"0.66"},{"ID":"FBgn0037491","EGF_Baseline":"0.18"},{"ID":"FBgn0261629","EGF_Baseline":"0.98"},{"ID":"FBgn0031627","EGF_Baseline":"-1.04"},{"ID":"FBgn0033551","EGF_Baseline":"-1.46"},{"ID":"FBgn0030905","EGF_Baseline":"-0.51"},{"ID":"FBgn0000454","EGF_Baseline":"-1.29"},{"ID":"FBgn0031657","EGF_Baseline":"-0.96"},{"ID":"FBgn0002901","EGF_Baseline":"0.17"},{"ID":"FBgn0005638","EGF_Baseline":"-1.41"},{"ID":"FBgn0032250","EGF_Baseline":"-1.87"},{"ID":"FBgn0013301","EGF_Baseline":"-0.39"},{"ID":"FBgn0037016","EGF_Baseline":"-1.09"},{"ID":"FBgn0051769","EGF_Baseline":"-1.53"},{"ID":"FBgn0023509","EGF_Baseline":"1"},{"ID":"FBgn0050161","EGF_Baseline":"-0.46"},{"ID":"FBgn0037137","EGF_Baseline":"-0.26"},{"ID":"FBgn0025186","EGF_Baseline":"1.33"},{"ID":"FBgn0037236","EGF_Baseline":"-0.55"},{"ID":"FBgn0036601","EGF_Baseline":"-0.49"},{"ID":"FBgn0035948","EGF_Baseline":"-0.96"},{"ID":"FBgn0032014","EGF_Baseline":"-0.81"},{"ID":"FBgn0037541","EGF_Baseline":"1.08"},{"ID":"FBgn0029822","EGF_Baseline":"2.05"},{"ID":"FBgn0010226","EGF_Baseline":"-1.84"},{"ID":"FBgn0063493","EGF_Baseline":"1.64"},{"ID":"FBgn0036373","EGF_Baseline":"-0.47"},{"ID":"FBgn0034963","EGF_Baseline":"0.24"},{"ID":"FBgn0047038","EGF_Baseline":"-1.06"},{"ID":"FBgn0052432","EGF_Baseline":"1.93"},{"ID":"FBgn0053462","EGF_Baseline":"0.25"},{"ID":"FBgn0039698","EGF_Baseline":"-0.36"},{"ID":"FBgn0002862","EGF_Baseline":"-0.95"},{"ID":"FBgn0035470","EGF_Baseline":"-0.49"},{"ID":"FBgn0010433","EGF_Baseline":"0.96"},{"ID":"FBgn0034880","EGF_Baseline":"-1.92"},{"ID":"FBgn0000535","EGF_Baseline":"0.86"},{"ID":"FBgn0015583","EGF_Baseline":"0.79"},{"ID":"FBgn0260460","EGF_Baseline":"-0.88"},{"ID":"FBgn0037299","EGF_Baseline":"-1.52"},{"ID":"FBgn0051784","EGF_Baseline":"-0.61"},{"ID":"FBgn0038640","EGF_Baseline":"-2.03"},{"ID":"FBgn0051050","EGF_Baseline":"0.94"},{"ID":"FBgn0038866","EGF_Baseline":"-1.28"},{"ID":"FBgn0004913","EGF_Baseline":"0.71"},{"ID":"FBgn0037710","EGF_Baseline":"-0.67"},{"ID":"FBgn0038769","EGF_Baseline":"-0.38"},{"ID":"FBgn0033867","EGF_Baseline":"1.4"},{"ID":"FBgn0010750","EGF_Baseline":"1.58"},{"ID":"FBgn0027562","EGF_Baseline":"-1.14"},{"ID":"FBgn0260655","EGF_Baseline":"0.27"},{"ID":"FBgn0083962","EGF_Baseline":"1.05"},{"ID":"FBgn0024294","EGF_Baseline":"0.82"},{"ID":"FBgn0003545","EGF_Baseline":"-0.23"},{"ID":"FBgn0033426","EGF_Baseline":"1.44"},{"ID":"FBgn0030280","EGF_Baseline":"0.35"},{"ID":"FBgn0038853","EGF_Baseline":"-1.03"},{"ID":"FBgn0039609","EGF_Baseline":"-0.42"},{"ID":"FBgn0036502","EGF_Baseline":"-0.61"},{"ID":"FBgn0034598","EGF_Baseline":"-1.25"},{"ID":"FBgn0036229","EGF_Baseline":"0.41"},{"ID":"FBgn0005427","EGF_Baseline":"-0.83"},{"ID":"FBgn0069969","EGF_Baseline":"0.29"},{"ID":"FBgn0024997","EGF_Baseline":"-0.43"},{"ID":"FBgn0025334","EGF_Baseline":"1.44"},{"ID":"FBgn0035959","EGF_Baseline":"0.97"},{"ID":"FBgn0037940","EGF_Baseline":"0.5"},{"ID":"FBgn0035468","EGF_Baseline":"0.85"},{"ID":"FBgn0036785","EGF_Baseline":"1.42"},{"ID":"FBgn0040232","EGF_Baseline":"0.88"},{"ID":"FBgn0001994","EGF_Baseline":"3.79"},{"ID":"FBgn0021875","EGF_Baseline":"-0.74"},{"ID":"FBgn0020248","EGF_Baseline":"1.3"},{"ID":"FBgn0037339","EGF_Baseline":"-2.01"},{"ID":"FBgn0035724","EGF_Baseline":"1.14"},{"ID":"FBgn0034058","EGF_Baseline":"-1.05"},{"ID":"FBgn0036075","EGF_Baseline":"-0.71"},{"ID":"FBgn0036367","EGF_Baseline":"-1.18"},{"ID":"FBgn0003091","EGF_Baseline":"-1.62"},{"ID":"FBgn0034230","EGF_Baseline":"0.47"},{"ID":"FBgn0260763","EGF_Baseline":"0.75"},{"ID":"FBgn0028538","EGF_Baseline":"0.64"},{"ID":"FBgn0034497","EGF_Baseline":"-0.71"},{"ID":"FBgn0052196","EGF_Baseline":"-1.76"},{"ID":"FBgn0038951","EGF_Baseline":"0.7"},{"ID":"FBgn0085305","EGF_Baseline":"0.33"},{"ID":"FBgn0000370","EGF_Baseline":"-0.48"},{"ID":"FBgn0031320","EGF_Baseline":"-1.23"},{"ID":"FBgn0039691","EGF_Baseline":"-0.7"},{"ID":"FBgn0085444","EGF_Baseline":"-2.44"},{"ID":"FBgn0041337","EGF_Baseline":"-0.69"},{"ID":"FBgn0000377","EGF_Baseline":"2.21"},{"ID":"FBgn0029117","EGF_Baseline":"1.84"},{"ID":"FBgn0030243","EGF_Baseline":"0.66"},{"ID":"FBgn0028894","EGF_Baseline":"-0.6"},{"ID":"FBgn0052832","EGF_Baseline":"-0.74"},{"ID":"FBgn0036723","EGF_Baseline":"-1.27"},{"ID":"FBgn0040985","EGF_Baseline":"0.33"},{"ID":"FBgn0085318","EGF_Baseline":"-1.77"},{"ID":"FBgn0032216","EGF_Baseline":"0.4"},{"ID":"FBgn0039635","EGF_Baseline":"-1.02"},{"ID":"FBgn0039518","EGF_Baseline":"1.17"},{"ID":"FBgn0037958","EGF_Baseline":"0.62"},{"ID":"FBgn0001104","EGF_Baseline":"-0.25"},{"ID":"FBgn0036096","EGF_Baseline":"0.65"},{"ID":"FBgn0035073","EGF_Baseline":"-1.2"},{"ID":"FBgn0033259","EGF_Baseline":"-0.9"},{"ID":"FBgn0015034","EGF_Baseline":"1.24"},{"ID":"FBgn0016120","EGF_Baseline":"-1.15"},{"ID":"FBgn0001253","EGF_Baseline":"-1.21"},{"ID":"FBgn0027359","EGF_Baseline":"-0.85"},{"ID":"FBgn0039167","EGF_Baseline":"-0.66"},{"ID":"FBgn0032168","EGF_Baseline":"-0.41"},{"ID":"FBgn0051150","EGF_Baseline":"-1.32"},{"ID":"FBgn0026872","EGF_Baseline":"-1.04"},{"ID":"FBgn0031033","EGF_Baseline":"-0.37"},{"ID":"FBgn0020642","EGF_Baseline":"-1.26"},{"ID":"FBgn0032176","EGF_Baseline":"0.37"},{"ID":"FBgn0261108","EGF_Baseline":"-2.15"},{"ID":"FBgn0014031","EGF_Baseline":"-0.62"},{"ID":"FBgn0052547","EGF_Baseline":"1.25"},{"ID":"FBgn0004573","EGF_Baseline":"-0.58"},{"ID":"FBgn0035743","EGF_Baseline":"0.28"},{"ID":"FBgn0028950","EGF_Baseline":"1.3"},{"ID":"FBgn0003373","EGF_Baseline":"-0.91"},{"ID":"FBgn0013718","EGF_Baseline":"0.61"},{"ID":"FBgn0039465","EGF_Baseline":"0.09"},{"ID":"FBgn0025592","EGF_Baseline":"-1.35"},{"ID":"FBgn0034728","EGF_Baseline":"-0.24"},{"ID":"FBgn0003089","EGF_Baseline":"-1"},{"ID":"FBgn0261609","EGF_Baseline":"-0.66"},{"ID":"FBgn0027279","EGF_Baseline":"-1.5"},{"ID":"FBgn0050091","EGF_Baseline":"0.75"},{"ID":"FBgn0037756","EGF_Baseline":"-0.39"},{"ID":"FBgn0036550","EGF_Baseline":"-1.05"},{"ID":"FBgn0024432","EGF_Baseline":"1.03"},{"ID":"FBgn0034898","EGF_Baseline":"-1.12"},{"ID":"FBgn0260439","EGF_Baseline":"1.03"},{"ID":"FBgn0032946","EGF_Baseline":"-0.65"},{"ID":"FBgn0031633","EGF_Baseline":"0.09"},{"ID":"FBgn0023513","EGF_Baseline":"-1.42"},{"ID":"FBgn0024249","EGF_Baseline":"-0.73"},{"ID":"FBgn0038135","EGF_Baseline":"-1.83"},{"ID":"FBgn0035631","EGF_Baseline":"-0.77"},{"ID":"FBgn0054028","EGF_Baseline":"-1.32"},{"ID":"FBgn0260959","EGF_Baseline":"1.23"},{"ID":"FBgn0027569","EGF_Baseline":"0.41"},{"ID":"FBgn0015793","EGF_Baseline":"0.52"},{"ID":"FBgn0031170","EGF_Baseline":"-0.57"},{"ID":"FBgn0051038","EGF_Baseline":"1.83"},{"ID":"FBgn0026879","EGF_Baseline":"-1.49"},{"ID":"FBgn0003721","EGF_Baseline":"-0.33"},{"ID":"FBgn0034411","EGF_Baseline":"0.7"},{"ID":"FBgn0025456","EGF_Baseline":"0.8"},{"ID":"FBgn0031920","EGF_Baseline":"0.58"},{"ID":"FBgn0003319","EGF_Baseline":"-0.63"},{"ID":"FBgn0051294","EGF_Baseline":"1.57"},{"ID":"FBgn0052220","EGF_Baseline":"-1.4"},{"ID":"FBgn0033121","EGF_Baseline":"1.09"},{"ID":"FBgn0034694","EGF_Baseline":"-1.64"},{"ID":"FBgn0051093","EGF_Baseline":"0.47"},{"ID":"FBgn0038909","EGF_Baseline":"0.92"},{"ID":"FBgn0040273","EGF_Baseline":"0.72"},{"ID":"FBgn0038165","EGF_Baseline":"0.42"},{"ID":"FBgn0037616","EGF_Baseline":"0.82"},{"ID":"FBgn0040384","EGF_Baseline":"-0.67"},{"ID":"FBgn0036711","EGF_Baseline":"-0.66"},{"ID":"FBgn0031875","EGF_Baseline":"-0.72"},{"ID":"FBgn0065035","EGF_Baseline":"-0.53"},{"ID":"FBgn0259822","EGF_Baseline":"1.67"},{"ID":"FBgn0039258","EGF_Baseline":"-0.39"},{"ID":"FBgn0260965","EGF_Baseline":"-1.42"},{"ID":"FBgn0025739","EGF_Baseline":"-0.88"},{"ID":"FBgn0085438","EGF_Baseline":"0.91"},{"ID":"FBgn0038789","EGF_Baseline":"-0.39"},{"ID":"FBgn0058439","EGF_Baseline":"0.29"},{"ID":"FBgn0032339","EGF_Baseline":"-1.71"},{"ID":"FBgn0261287","EGF_Baseline":"-0.83"},{"ID":"FBgn0037918","EGF_Baseline":"-2.02"},{"ID":"FBgn0026141","EGF_Baseline":"-0.83"},{"ID":"FBgn0040345","EGF_Baseline":"-0.86"},{"ID":"FBgn0050416","EGF_Baseline":"-1.23"},{"ID":"FBgn0031935","EGF_Baseline":"-1.6"},{"ID":"FBgn0036585","EGF_Baseline":"1.95"},{"ID":"FBgn0032385","EGF_Baseline":"-1.18"},{"ID":"FBgn0032703","EGF_Baseline":"-1.88"},{"ID":"FBgn0050325","EGF_Baseline":"0.3"},{"ID":"FBgn0036626","EGF_Baseline":"-1.05"},{"ID":"FBgn0027580","EGF_Baseline":"-0.87"},{"ID":"FBgn0032680","EGF_Baseline":"0.91"},{"ID":"FBgn0032809","EGF_Baseline":"-2"},{"ID":"FBgn0037518","EGF_Baseline":"1.59"},{"ID":"FBgn0052486","EGF_Baseline":"-0.93"},{"ID":"FBgn0037222","EGF_Baseline":"-0.72"},{"ID":"FBgn0086915","EGF_Baseline":"1.81"},{"ID":"FBgn0085447","EGF_Baseline":"-1.49"},{"ID":"FBgn0031306","EGF_Baseline":"0.7"},{"ID":"FBgn0035676","EGF_Baseline":"-0.74"},{"ID":"FBgn0027951","EGF_Baseline":"0.27"},{"ID":"FBgn0051089","EGF_Baseline":"0.88"},{"ID":"FBgn0033850","EGF_Baseline":"-0.26"},{"ID":"FBgn0029959","EGF_Baseline":"0.64"},{"ID":"FBgn0034789","EGF_Baseline":"1.51"},{"ID":"FBgn0002899","EGF_Baseline":"0.67"},{"ID":"FBgn0034012","EGF_Baseline":"-0.61"},{"ID":"FBgn0022699","EGF_Baseline":"-0.36"},{"ID":"FBgn0034460","EGF_Baseline":"0.67"},{"ID":"FBgn0040940","EGF_Baseline":"-1.59"},{"ID":"FBgn0040373","EGF_Baseline":"-0.45"},{"ID":"FBgn0030114","EGF_Baseline":"-1.07"},{"ID":"FBgn0004364","EGF_Baseline":"-1.16"},{"ID":"FBgn0037436","EGF_Baseline":"-0.86"},{"ID":"FBgn0039688","EGF_Baseline":"-0.51"},{"ID":"FBgn0033729","EGF_Baseline":"0.85"},{"ID":"FBgn0030982","EGF_Baseline":"-1.09"},{"ID":"FBgn0023550","EGF_Baseline":"-0.97"},{"ID":"FBgn0034219","EGF_Baseline":"-1.46"},{"ID":"FBgn0031768","EGF_Baseline":"1.56"},{"ID":"FBgn0035348","EGF_Baseline":"3.87"},{"ID":"FBgn0035437","EGF_Baseline":"0.98"},{"ID":"FBgn0031287","EGF_Baseline":"-1.52"},{"ID":"FBgn0036035","EGF_Baseline":"3"},{"ID":"FBgn0031952","EGF_Baseline":"3.4"},{"ID":"FBgn0037852","EGF_Baseline":"0.33"},{"ID":"FBgn0029952","EGF_Baseline":"-0.65"},{"ID":"FBgn0037297","EGF_Baseline":"-2.09"},{"ID":"FBgn0038046","EGF_Baseline":"-0.26"},{"ID":"FBgn0037409","EGF_Baseline":"-1.04"},{"ID":"FBgn0026015","EGF_Baseline":"-0.76"},{"ID":"FBgn0038147","EGF_Baseline":"-0.85"},{"ID":"FBgn0036009","EGF_Baseline":"-0.14"},{"ID":"FBgn0035032","EGF_Baseline":"0.82"},{"ID":"FBgn0037696","EGF_Baseline":"-1.91"},{"ID":"FBgn0033757","EGF_Baseline":"-0.21"},{"ID":"FBgn0033351","EGF_Baseline":"-1.09"},{"ID":"FBgn0033465","EGF_Baseline":"0.64"},{"ID":"FBgn0026479","EGF_Baseline":"-0.36"},{"ID":"FBgn0037534","EGF_Baseline":"0.86"},{"ID":"FBgn0037023","EGF_Baseline":"0.68"},{"ID":"FBgn0025644","EGF_Baseline":"1.57"},{"ID":"FBgn0032373","EGF_Baseline":"0.65"},{"ID":"FBgn0039625","EGF_Baseline":"-1.33"},{"ID":"FBgn0041712","EGF_Baseline":"-1.11"},{"ID":"FBgn0033177","EGF_Baseline":"0.28"},{"ID":"FBgn0003464","EGF_Baseline":"1.06"},{"ID":"FBgn0014037","EGF_Baseline":"-0.22"},{"ID":"FBgn0036738","EGF_Baseline":"-1.13"},{"ID":"FBgn0035445","EGF_Baseline":"-0.2"},{"ID":"FBgn0022288","EGF_Baseline":"0.59"},{"ID":"FBgn0085233","EGF_Baseline":"0.8"},{"ID":"FBgn0030529","EGF_Baseline":"-0.86"},{"ID":"FBgn0051807","EGF_Baseline":"1.29"},{"ID":"FBgn0030298","EGF_Baseline":"0.27"},{"ID":"FBgn0002781","EGF_Baseline":"-1.44"},{"ID":"FBgn0030361","EGF_Baseline":"-0.82"},{"ID":"FBgn0085450","EGF_Baseline":"-1.32"},{"ID":"FBgn0039232","EGF_Baseline":"1.14"},{"ID":"FBgn0037736","EGF_Baseline":"1.04"},{"ID":"FBgn0033377","EGF_Baseline":"0.76"},{"ID":"FBgn0026576","EGF_Baseline":"-1.64"},{"ID":"FBgn0035475","EGF_Baseline":"-1.51"},{"ID":"FBgn0031739","EGF_Baseline":"-0.72"},{"ID":"FBgn0043842","EGF_Baseline":"1.31"},{"ID":"FBgn0051040","EGF_Baseline":"2.01"},{"ID":"FBgn0053554","EGF_Baseline":"-3.06"},{"ID":"FBgn0002645","EGF_Baseline":"-0.91"},{"ID":"FBgn0024365","EGF_Baseline":"0.78"},{"ID":"FBgn0000109","EGF_Baseline":"-1.02"},{"ID":"FBgn0261671","EGF_Baseline":"1.27"},{"ID":"FBgn0038071","EGF_Baseline":"-0.54"},{"ID":"FBgn0037815","EGF_Baseline":"-0.67"},{"ID":"FBgn0038526","EGF_Baseline":"-0.3"},{"ID":"FBgn0052076","EGF_Baseline":"-0.58"},{"ID":"FBgn0025832","EGF_Baseline":"-1.45"},{"ID":"FBgn0051773","EGF_Baseline":"-2.15"},{"ID":"FBgn0031388","EGF_Baseline":"-0.79"},{"ID":"FBgn0031494","EGF_Baseline":"-1.19"},{"ID":"FBgn0001077","EGF_Baseline":"-1.47"},{"ID":"FBgn0044030","EGF_Baseline":"1.55"},{"ID":"FBgn0040365","EGF_Baseline":"0.97"},{"ID":"FBgn0036211","EGF_Baseline":"-0.32"},{"ID":"FBgn0039226","EGF_Baseline":"1.93"},{"ID":"FBgn0004436","EGF_Baseline":"-2.78"},{"ID":"FBgn0032834","EGF_Baseline":"-1.47"},{"ID":"FBgn0033845","EGF_Baseline":"-1.01"},{"ID":"FBgn0038084","EGF_Baseline":"0.61"},{"ID":"FBgn0042199","EGF_Baseline":"-0.09"},{"ID":"FBgn0037556","EGF_Baseline":"-1.91"},{"ID":"FBgn0031575","EGF_Baseline":"0.78"},{"ID":"FBgn0029958","EGF_Baseline":"0.78"},{"ID":"FBgn0261393","EGF_Baseline":"-1.61"},{"ID":"FBgn0036291","EGF_Baseline":"1.05"},{"ID":"FBgn0004957","EGF_Baseline":"0.65"},{"ID":"FBgn0032434","EGF_Baseline":"-0.68"},{"ID":"FBgn0035601","EGF_Baseline":"0.22"},{"ID":"FBgn0040723","EGF_Baseline":"1.59"},{"ID":"FBgn0014863","EGF_Baseline":"1.86"},{"ID":"FBgn0029861","EGF_Baseline":"-1.64"},{"ID":"FBgn0013756","EGF_Baseline":"-0.57"},{"ID":"FBgn0032997","EGF_Baseline":"0.7"},{"ID":"FBgn0003218","EGF_Baseline":"-0.07"},{"ID":"FBgn0011672","EGF_Baseline":"0.93"},{"ID":"FBgn0033358","EGF_Baseline":"-0.93"},{"ID":"FBgn0014469","EGF_Baseline":"-0.68"},{"ID":"FBgn0028554","EGF_Baseline":"-0.72"},{"ID":"FBgn0037531","EGF_Baseline":"1.33"},{"ID":"FBgn0029932","EGF_Baseline":"0.29"},{"ID":"FBgn0033234","EGF_Baseline":"0.34"},{"ID":"FBgn0016123","EGF_Baseline":"0.85"},{"ID":"FBgn0259697","EGF_Baseline":"-1.03"},{"ID":"FBgn0083141","EGF_Baseline":"-1.2"},{"ID":"FBgn0069354","EGF_Baseline":"-1.67"},{"ID":"FBgn0034506","EGF_Baseline":"-0.6"},{"ID":"FBgn0023170","EGF_Baseline":"4.28"},{"ID":"FBgn0039591","EGF_Baseline":"1.5"},{"ID":"FBgn0030177","EGF_Baseline":"1.06"},{"ID":"FBgn0086676","EGF_Baseline":"-0.72"},{"ID":"FBgn0004401","EGF_Baseline":"-1.34"},{"ID":"FBgn0259832","EGF_Baseline":"1.04"},{"ID":"FBgn0029588","EGF_Baseline":"-1.16"},{"ID":"FBgn0039528","EGF_Baseline":"-1.08"},{"ID":"FBgn0250821","EGF_Baseline":"-0.89"},{"ID":"FBgn0034948","EGF_Baseline":"-2.94"},{"ID":"FBgn0033405","EGF_Baseline":"-0.83"},{"ID":"FBgn0032821","EGF_Baseline":"-1.6"},{"ID":"FBgn0051229","EGF_Baseline":"1.33"},{"ID":"FBgn0037185","EGF_Baseline":"-0.87"},{"ID":"FBgn0016081","EGF_Baseline":"-1.11"},{"ID":"FBgn0029660","EGF_Baseline":"1.12"},{"ID":"FBgn0020269","EGF_Baseline":"-1.03"},{"ID":"FBgn0040736","EGF_Baseline":"-0.83"},{"ID":"FBgn0028360","EGF_Baseline":"-0.29"},{"ID":"FBgn0015399","EGF_Baseline":"0.47"},{"ID":"FBgn0010240","EGF_Baseline":"0.83"},{"ID":"FBgn0027080","EGF_Baseline":"0.44"},{"ID":"FBgn0030314","EGF_Baseline":"-1.37"},{"ID":"FBgn0053143","EGF_Baseline":"-0.93"},{"ID":"FBgn0028962","EGF_Baseline":"-1.33"},{"ID":"FBgn0039118","EGF_Baseline":"-1.46"},{"ID":"FBgn0030245","EGF_Baseline":"-0.69"},{"ID":"FBgn0038566","EGF_Baseline":"-0.79"},{"ID":"FBgn0035904","EGF_Baseline":"-0.71"},{"ID":"FBgn0036191","EGF_Baseline":"0.92"},{"ID":"FBgn0033783","EGF_Baseline":"0.93"},{"ID":"FBgn0011589","EGF_Baseline":"-1.32"},{"ID":"FBgn0038694","EGF_Baseline":"-0.64"},{"ID":"FBgn0085355","EGF_Baseline":"1.14"},{"ID":"FBgn0036058","EGF_Baseline":"0.45"},{"ID":"FBgn0039051","EGF_Baseline":"-1.81"},{"ID":"FBgn0085455","EGF_Baseline":"0.65"},{"ID":"FBgn0051956","EGF_Baseline":"-1.22"},{"ID":"FBgn0050272","EGF_Baseline":"-0.23"},{"ID":"FBgn0038774","EGF_Baseline":"-1.22"},{"ID":"FBgn0028838","EGF_Baseline":"2.02"},{"ID":"FBgn0031726","EGF_Baseline":"0.71"},{"ID":"FBgn0011638","EGF_Baseline":"-0.57"},{"ID":"FBgn0029948","EGF_Baseline":"-0.34"},{"ID":"FBgn0040735","EGF_Baseline":"0.45"},{"ID":"FBgn0030970","EGF_Baseline":"-0.89"},{"ID":"FBgn0030159","EGF_Baseline":"1.24"},{"ID":"FBgn0029137","EGF_Baseline":"-1.61"},{"ID":"FBgn0033188","EGF_Baseline":"-1.84"},{"ID":"FBgn0032204","EGF_Baseline":"1.09"},{"ID":"FBgn0025702","EGF_Baseline":"1.46"},{"ID":"FBgn0259818","EGF_Baseline":"0.86"},{"ID":"FBgn0036278","EGF_Baseline":"-0.62"},{"ID":"FBgn0030790","EGF_Baseline":"-1.48"},{"ID":"FBgn0261618","EGF_Baseline":"-1.35"},{"ID":"FBgn0011570","EGF_Baseline":"0.37"},{"ID":"FBgn0035263","EGF_Baseline":"0.71"},{"ID":"FBgn0030932","EGF_Baseline":"0.92"},{"ID":"FBgn0026189","EGF_Baseline":"-1.97"},{"ID":"FBgn0038009","EGF_Baseline":"-0.51"},{"ID":"FBgn0039584","EGF_Baseline":"-0.94"},{"ID":"FBgn0027556","EGF_Baseline":"-0.94"},{"ID":"FBgn0035245","EGF_Baseline":"1.81"},{"ID":"FBgn0031817","EGF_Baseline":"-1.19"},{"ID":"FBgn0035068","EGF_Baseline":"0.78"},{"ID":"FBgn0032078","EGF_Baseline":"-0.45"},{"ID":"FBgn0051806","EGF_Baseline":"1.44"},{"ID":"FBgn0030675","EGF_Baseline":"-0.23"},{"ID":"FBgn0031791","EGF_Baseline":"-0.4"},{"ID":"FBgn0030208","EGF_Baseline":"-1.41"},{"ID":"FBgn0040607","EGF_Baseline":"-0.36"},{"ID":"FBgn0003510","EGF_Baseline":"4.3"},{"ID":"FBgn0031044","EGF_Baseline":"-1.55"},{"ID":"FBgn0041182","EGF_Baseline":"0.67"},{"ID":"FBgn0038125","EGF_Baseline":"-0.35"},{"ID":"FBgn0035586","EGF_Baseline":"-0.79"},{"ID":"FBgn0053506","EGF_Baseline":"0.49"},{"ID":"FBgn0034458","EGF_Baseline":"1.3"},{"ID":"FBgn0050423","EGF_Baseline":"-0.93"},{"ID":"FBgn0035572","EGF_Baseline":"-1.79"},{"ID":"FBgn0034490","EGF_Baseline":"-1.48"},{"ID":"FBgn0034783","EGF_Baseline":"0.31"},{"ID":"FBgn0040334","EGF_Baseline":"-1.72"},{"ID":"FBgn0040524","EGF_Baseline":"0.96"},{"ID":"FBgn0039702","EGF_Baseline":"-0.54"},{"ID":"FBgn0030881","EGF_Baseline":"-0.81"},{"ID":"FBgn0261552","EGF_Baseline":"-3.4"},{"ID":"FBgn0052675","EGF_Baseline":"0.68"},{"ID":"FBgn0015039","EGF_Baseline":"-1.65"},{"ID":"FBgn0259240","EGF_Baseline":"-0.96"},{"ID":"FBgn0027780","EGF_Baseline":"1.91"},{"ID":"FBgn0035131","EGF_Baseline":"-0.41"},{"ID":"FBgn0036769","EGF_Baseline":"-0.31"},{"ID":"FBgn0038838","EGF_Baseline":"0.94"},{"ID":"FBgn0041087","EGF_Baseline":"-1.19"},{"ID":"FBgn0023407","EGF_Baseline":"-1.11"},{"ID":"FBgn0000520","EGF_Baseline":"1.52"},{"ID":"FBgn0037290","EGF_Baseline":"1.68"},{"ID":"FBgn0026432","EGF_Baseline":"0.99"},{"ID":"FBgn0032648","EGF_Baseline":"0.54"},{"ID":"FBgn0030334","EGF_Baseline":"-0.9"},{"ID":"FBgn0037123","EGF_Baseline":"0.41"},{"ID":"FBgn0036687","EGF_Baseline":"-0.99"},{"ID":"FBgn0015359","EGF_Baseline":"-1.06"},{"ID":"FBgn0037153","EGF_Baseline":"-1.85"},{"ID":"FBgn0036242","EGF_Baseline":"-1.12"},{"ID":"FBgn0033615","EGF_Baseline":"-2"},{"ID":"FBgn0036468","EGF_Baseline":"3.86"},{"ID":"FBgn0039079","EGF_Baseline":"-0.24"},{"ID":"FBgn0039576","EGF_Baseline":"-0.98"},{"ID":"FBgn0030723","EGF_Baseline":"0.42"},{"ID":"FBgn0032876","EGF_Baseline":"-1.82"},{"ID":"FBgn0000028","EGF_Baseline":"1.5"},{"ID":"FBgn0003411","EGF_Baseline":"-0.82"},{"ID":"FBgn0034588","EGF_Baseline":"1.11"},{"ID":"FBgn0034820","EGF_Baseline":"-0.76"},{"ID":"FBgn0036643","EGF_Baseline":"-1.57"},{"ID":"FBgn0036985","EGF_Baseline":"-0.4"},{"ID":"FBgn0036593","EGF_Baseline":"0.91"},{"ID":"FBgn0033775","EGF_Baseline":"0.63"},{"ID":"FBgn0051814","EGF_Baseline":"0.75"},{"ID":"FBgn0039503","EGF_Baseline":"-0.35"},{"ID":"FBgn0031745","EGF_Baseline":"0.69"},{"ID":"FBgn0027497","EGF_Baseline":"-1.31"},{"ID":"FBgn0030073","EGF_Baseline":"-0.88"},{"ID":"FBgn0027889","EGF_Baseline":"1.18"},{"ID":"FBgn0034377","EGF_Baseline":"-1.39"},{"ID":"FBgn0051712","EGF_Baseline":"-0.95"},{"ID":"FBgn0024238","EGF_Baseline":"-1.6"},{"ID":"FBgn0053526","EGF_Baseline":"-1.22"},{"ID":"FBgn0030968","EGF_Baseline":"-1.16"},{"ID":"FBgn0036895","EGF_Baseline":"0.48"},{"ID":"FBgn0032614","EGF_Baseline":"-1.52"},{"ID":"FBgn0028420","EGF_Baseline":"-0.74"},{"ID":"FBgn0051950","EGF_Baseline":"1.36"},{"ID":"FBgn0030174","EGF_Baseline":"1.48"},{"ID":"FBgn0032096","EGF_Baseline":"-0.55"},{"ID":"FBgn0030320","EGF_Baseline":"-0.95"},{"ID":"FBgn0030598","EGF_Baseline":"-0.93"},{"ID":"FBgn0037717","EGF_Baseline":"-0.37"},{"ID":"FBgn0034315","EGF_Baseline":"1.28"},{"ID":"FBgn0039616","EGF_Baseline":"1.51"},{"ID":"FBgn0050374","EGF_Baseline":"-1.07"},{"ID":"FBgn0039864","EGF_Baseline":"0.16"},{"ID":"FBgn0043457","EGF_Baseline":"0.42"},{"ID":"FBgn0052109","EGF_Baseline":"-1.01"},{"ID":"FBgn0032163","EGF_Baseline":"0.34"},{"ID":"FBgn0035121","EGF_Baseline":"-0.91"},{"ID":"FBgn0000279","EGF_Baseline":"-1.18"},{"ID":"FBgn0039205","EGF_Baseline":"-1.37"},{"ID":"FBgn0032487","EGF_Baseline":"-0.65"},{"ID":"FBgn0037070","EGF_Baseline":"0.22"},{"ID":"FBgn0033096","EGF_Baseline":"0.82"},{"ID":"FBgn0054012","EGF_Baseline":"1.15"},{"ID":"FBgn0032414","EGF_Baseline":"-0.82"},{"ID":"FBgn0031022","EGF_Baseline":"-1.17"},{"ID":"FBgn0026616","EGF_Baseline":"-1.85"},{"ID":"FBgn0030955","EGF_Baseline":"-0.87"},{"ID":"FBgn0029833","EGF_Baseline":"0.18"},{"ID":"FBgn0259223","EGF_Baseline":"-1.62"},{"ID":"FBgn0259742","EGF_Baseline":"1.44"},{"ID":"FBgn0030329","EGF_Baseline":"-1.17"},{"ID":"FBgn0038474","EGF_Baseline":"-0.8"},{"ID":"FBgn0053198","EGF_Baseline":"-0.53"},{"ID":"FBgn0035044","EGF_Baseline":"-0.36"},{"ID":"FBgn0037487","EGF_Baseline":"1.32"},{"ID":"FBgn0010114","EGF_Baseline":"-1.45"},{"ID":"FBgn0031055","EGF_Baseline":"-1"},{"ID":"FBgn0020381","EGF_Baseline":"-0.19"},{"ID":"FBgn0038819","EGF_Baseline":"-0.54"},{"ID":"FBgn0039943","EGF_Baseline":"1.26"},{"ID":"FBgn0030456","EGF_Baseline":"0.64"},{"ID":"FBgn0032350","EGF_Baseline":"0.5"},{"ID":"FBgn0038366","EGF_Baseline":"-0.19"},{"ID":"FBgn0034885","EGF_Baseline":"-0.78"},{"ID":"FBgn0032132","EGF_Baseline":"1.32"},{"ID":"FBgn0085367","EGF_Baseline":"-1.03"},{"ID":"FBgn0039033","EGF_Baseline":"-0.58"},{"ID":"FBgn0085462","EGF_Baseline":"-0.43"},{"ID":"FBgn0032195","EGF_Baseline":"-1.02"},{"ID":"FBgn0010424","EGF_Baseline":"0.56"},{"ID":"FBgn0260793","EGF_Baseline":"0.89"},{"ID":"FBgn0039093","EGF_Baseline":"-2.19"},{"ID":"FBgn0033762","EGF_Baseline":"0.93"},{"ID":"FBgn0030304","EGF_Baseline":"-0.6"},{"ID":"FBgn0004132","EGF_Baseline":"1.29"},{"ID":"FBgn0035866","EGF_Baseline":"-0.55"},{"ID":"FBgn0004511","EGF_Baseline":"-0.95"},{"ID":"FBgn0043362","EGF_Baseline":"0.16"},{"ID":"FBgn0037140","EGF_Baseline":"1.1"},{"ID":"FBgn0051259","EGF_Baseline":"-0.46"},{"ID":"FBgn0032683","EGF_Baseline":"0.95"},{"ID":"FBgn0010602","EGF_Baseline":"0.33"},{"ID":"FBgn0040899","EGF_Baseline":"-0.52"},{"ID":"FBgn0010470","EGF_Baseline":"0.63"},{"ID":"FBgn0085295","EGF_Baseline":"-0.77"},{"ID":"FBgn0028563","EGF_Baseline":"-0.57"},{"ID":"FBgn0053317","EGF_Baseline":"1.17"},{"ID":"FBgn0033744","EGF_Baseline":"1.55"},{"ID":"FBgn0001308","EGF_Baseline":"0.56"},{"ID":"FBgn0034308","EGF_Baseline":"-0.6"},{"ID":"FBgn0030376","EGF_Baseline":"-1.31"},{"ID":"FBgn0003941","EGF_Baseline":"0.98"},{"ID":"FBgn0033631","EGF_Baseline":"-0.97"},{"ID":"FBgn0032598","EGF_Baseline":"1.46"},{"ID":"FBgn0015321","EGF_Baseline":"-1.46"},{"ID":"FBgn0053002","EGF_Baseline":"-1.48"},{"ID":"FBgn0030080","EGF_Baseline":"-0.86"},{"ID":"FBgn0025624","EGF_Baseline":"1.6"},{"ID":"FBgn0028901","EGF_Baseline":"0.65"},{"ID":"FBgn0028944","EGF_Baseline":"-0.4"},{"ID":"FBgn0031944","EGF_Baseline":"-1.73"},{"ID":"FBgn0039475","EGF_Baseline":"-0.64"},{"ID":"FBgn0261563","EGF_Baseline":"-0.35"},{"ID":"FBgn0036991","EGF_Baseline":"0.45"},{"ID":"FBgn0036089","EGF_Baseline":"-1.96"},{"ID":"FBgn0034800","EGF_Baseline":"0.73"},{"ID":"FBgn0033344","EGF_Baseline":"1.43"},{"ID":"FBgn0083943","EGF_Baseline":"-0.44"},{"ID":"FBgn0037412","EGF_Baseline":"-0.6"},{"ID":"FBgn0040397","EGF_Baseline":"1.46"},{"ID":"FBgn0034654","EGF_Baseline":"-3.54"},{"ID":"FBgn0037955","EGF_Baseline":"0.57"},{"ID":"FBgn0028853","EGF_Baseline":"-1.13"},{"ID":"FBgn0085480","EGF_Baseline":"0.3"},{"ID":"FBgn0051368","EGF_Baseline":"0.62"},{"ID":"FBgn0052102","EGF_Baseline":"-1.13"},{"ID":"FBgn0037901","EGF_Baseline":"1.04"},{"ID":"FBgn0037039","EGF_Baseline":"1.42"},{"ID":"FBgn0033880","EGF_Baseline":"-1.45"},{"ID":"FBgn0035807","EGF_Baseline":"0.17"},{"ID":"FBgn0029746","EGF_Baseline":"-0.72"},{"ID":"FBgn0035039","EGF_Baseline":"0.6"},{"ID":"FBgn0050054","EGF_Baseline":"-1.02"},{"ID":"FBgn0030440","EGF_Baseline":"-0.76"},{"ID":"FBgn0015591","EGF_Baseline":"0.42"},{"ID":"FBgn0038894","EGF_Baseline":"0.22"},{"ID":"FBgn0028646","EGF_Baseline":"-1.58"},{"ID":"FBgn0014368","EGF_Baseline":"0.92"},{"ID":"FBgn0259233","EGF_Baseline":"-0.72"},{"ID":"FBgn0000406","EGF_Baseline":"0.95"},{"ID":"FBgn0032282","EGF_Baseline":"-0.33"},{"ID":"FBgn0085491","EGF_Baseline":"-0.9"},{"ID":"FBgn0028497","EGF_Baseline":"-0.58"},{"ID":"FBgn0029713","EGF_Baseline":"0.41"},{"ID":"FBgn0036614","EGF_Baseline":"-0.98"},{"ID":"FBgn0015829","EGF_Baseline":"0.3"},{"ID":"FBgn0032139","EGF_Baseline":"-1.3"},{"ID":"FBgn0261461","EGF_Baseline":"-1.27"},{"ID":"FBgn0038717","EGF_Baseline":"1.08"},{"ID":"FBgn0039370","EGF_Baseline":"-0.74"},{"ID":"FBgn0020371","EGF_Baseline":"0.83"},{"ID":"FBgn0038923","EGF_Baseline":"-1.42"},{"ID":"FBgn0050334","EGF_Baseline":"-0.83"},{"ID":"FBgn0042205","EGF_Baseline":"0.51"},{"ID":"FBgn0005612","EGF_Baseline":"-1.22"},{"ID":"FBgn0031182","EGF_Baseline":"-0.73"},{"ID":"FBgn0004117","EGF_Baseline":"-0.83"},{"ID":"FBgn0003117","EGF_Baseline":"0.26"},{"ID":"FBgn0028570","EGF_Baseline":"0.57"},{"ID":"FBgn0052176","EGF_Baseline":"-1.33"},{"ID":"FBgn0029733","EGF_Baseline":"-1.75"},{"ID":"FBgn0032117","EGF_Baseline":"-1.86"},{"ID":"FBgn0050269","EGF_Baseline":"-1.66"},{"ID":"FBgn0039004","EGF_Baseline":"0.86"},{"ID":"FBgn0033770","EGF_Baseline":"1.29"},{"ID":"FBgn0015379","EGF_Baseline":"-0.42"},{"ID":"FBgn0031194","EGF_Baseline":"-0.53"},{"ID":"FBgn0020255","EGF_Baseline":"4.27"},{"ID":"FBgn0003392","EGF_Baseline":"2.89"},{"ID":"FBgn0043791","EGF_Baseline":"-1.36"},{"ID":"FBgn0032150","EGF_Baseline":"-1.71"},{"ID":"FBgn0037065","EGF_Baseline":"-1.48"},{"ID":"FBgn0035800","EGF_Baseline":"-0.63"},{"ID":"FBgn0037908","EGF_Baseline":"0.4"},{"ID":"FBgn0029795","EGF_Baseline":"-1.12"},{"ID":"FBgn0011822","EGF_Baseline":"-1.33"},{"ID":"FBgn0029976","EGF_Baseline":"0.75"},{"ID":"FBgn0004590","EGF_Baseline":"-0.76"},{"ID":"FBgn0040688","EGF_Baseline":"-0.62"},{"ID":"FBgn0035941","EGF_Baseline":"0.69"},{"ID":"FBgn0000221","EGF_Baseline":"1.72"},{"ID":"FBgn0051300","EGF_Baseline":"-0.39"},{"ID":"FBgn0040009","EGF_Baseline":"-1.51"},{"ID":"FBgn0039055","EGF_Baseline":"1.12"},{"ID":"FBgn0250791","EGF_Baseline":"0.39"},{"ID":"FBgn0037751","EGF_Baseline":"0.51"},{"ID":"FBgn0036808","EGF_Baseline":"-0.32"},{"ID":"FBgn0032666","EGF_Baseline":"0.61"},{"ID":"FBgn0053229","EGF_Baseline":"-0.57"},{"ID":"FBgn0034132","EGF_Baseline":"-0.75"},{"ID":"FBgn0002441","EGF_Baseline":"-0.53"},{"ID":"FBgn0053127","EGF_Baseline":"-1.75"},{"ID":"FBgn0036833","EGF_Baseline":"-1.75"},{"ID":"FBgn0035336","EGF_Baseline":"-0.99"},{"ID":"FBgn0034156","EGF_Baseline":"-0.69"},{"ID":"FBgn0041111","EGF_Baseline":"1.4"},{"ID":"FBgn0250906","EGF_Baseline":"0.88"},{"ID":"FBgn0034736","EGF_Baseline":"-1.3"},{"ID":"FBgn0023180","EGF_Baseline":"0.37"},{"ID":"FBgn0043550","EGF_Baseline":"-1.07"},{"ID":"FBgn0259172","EGF_Baseline":"1.35"},{"ID":"FBgn0000099","EGF_Baseline":"0.9"},{"ID":"FBgn0053120","EGF_Baseline":"-0.89"},{"ID":"FBgn0039501","EGF_Baseline":"1.4"},{"ID":"FBgn0036522","EGF_Baseline":"0.93"},{"ID":"FBgn0037609","EGF_Baseline":"0.97"},{"ID":"FBgn0037309","EGF_Baseline":"0.86"},{"ID":"FBgn0035000","EGF_Baseline":"-0.99"},{"ID":"FBgn0028527","EGF_Baseline":"-1.15"},{"ID":"FBgn0026597","EGF_Baseline":"2.27"},{"ID":"FBgn0040237","EGF_Baseline":"0.4"},{"ID":"FBgn0001083","EGF_Baseline":"-0.73"},{"ID":"FBgn0024986","EGF_Baseline":"-0.49"},{"ID":"FBgn0041191","EGF_Baseline":"0.84"},{"ID":"FBgn0035430","EGF_Baseline":"-0.72"},{"ID":"FBgn0029538","EGF_Baseline":"0.72"},{"ID":"FBgn0037448","EGF_Baseline":"-1.19"},{"ID":"FBgn0039482","EGF_Baseline":"-0.99"},{"ID":"FBgn0032788","EGF_Baseline":"1.21"},{"ID":"FBgn0034249","EGF_Baseline":"1.45"},{"ID":"FBgn0027073","EGF_Baseline":"-0.71"},{"ID":"FBgn0032408","EGF_Baseline":"1.82"},{"ID":"FBgn0003162","EGF_Baseline":"0.21"},{"ID":"FBgn0052651","EGF_Baseline":"-0.91"},{"ID":"FBgn0005636","EGF_Baseline":"-1.61"},{"ID":"FBgn0261258","EGF_Baseline":"-0.4"},{"ID":"FBgn0250836","EGF_Baseline":"-0.42"},{"ID":"FBgn0086708","EGF_Baseline":"-0.46"},{"ID":"FBgn0041707","EGF_Baseline":"2.37"},{"ID":"FBgn0035515","EGF_Baseline":"-0.78"},{"ID":"FBgn0031344","EGF_Baseline":"1.27"},{"ID":"FBgn0038861","EGF_Baseline":"-0.92"},{"ID":"FBgn0037317","EGF_Baseline":"-0.96"},{"ID":"FBgn0011288","EGF_Baseline":"0.92"},{"ID":"FBgn0051291","EGF_Baseline":"1.14"},{"ID":"FBgn0027356","EGF_Baseline":"1.03"},{"ID":"FBgn0053225","EGF_Baseline":"1.01"},{"ID":"FBgn0000346","EGF_Baseline":"1.52"},{"ID":"FBgn0033287","EGF_Baseline":"-0.32"},{"ID":"FBgn0036567","EGF_Baseline":"1.31"},{"ID":"FBgn0052141","EGF_Baseline":"-0.47"},{"ID":"FBgn0051225","EGF_Baseline":"-1.07"},{"ID":"FBgn0038796","EGF_Baseline":"0.82"},{"ID":"FBgn0039068","EGF_Baseline":"1.03"},{"ID":"FBgn0039424","EGF_Baseline":"1.55"},{"ID":"FBgn0261792","EGF_Baseline":"1.34"},{"ID":"FBgn0015230","EGF_Baseline":"-1.1"},{"ID":"FBgn0050296","EGF_Baseline":"-1.32"},{"ID":"FBgn0038690","EGF_Baseline":"-1.03"},{"ID":"FBgn0037827","EGF_Baseline":"0.48"},{"ID":"FBgn0051663","EGF_Baseline":"-1.88"},{"ID":"FBgn0038418","EGF_Baseline":"0.51"},{"ID":"FBgn0053181","EGF_Baseline":"-1.92"},{"ID":"FBgn0039218","EGF_Baseline":"1.73"},{"ID":"FBgn0033587","EGF_Baseline":"-1.76"},{"ID":"FBgn0035734","EGF_Baseline":"-0.28"},{"ID":"FBgn0250876","EGF_Baseline":"0.61"},{"ID":"FBgn0040817","EGF_Baseline":"-0.94"},{"ID":"FBgn0040010","EGF_Baseline":"1.97"},{"ID":"FBgn0032051","EGF_Baseline":"-1.09"},{"ID":"FBgn0036004","EGF_Baseline":"-0.46"},{"ID":"FBgn0261399","EGF_Baseline":"-1.47"},{"ID":"FBgn0010356","EGF_Baseline":"0.35"},{"ID":"FBgn0037197","EGF_Baseline":"-1.06"},{"ID":"FBgn0038327","EGF_Baseline":"1.26"},{"ID":"FBgn0036143","EGF_Baseline":"-1.1"},{"ID":"FBgn0034483","EGF_Baseline":"-1.75"},{"ID":"FBgn0037503","EGF_Baseline":"1.45"},{"ID":"FBgn0029694","EGF_Baseline":"-0.17"},{"ID":"FBgn0024992","EGF_Baseline":"-0.21"},{"ID":"FBgn0027537","EGF_Baseline":"1.24"},{"ID":"FBgn0030575","EGF_Baseline":"-1.55"},{"ID":"FBgn0037205","EGF_Baseline":"0.76"},{"ID":"FBgn0032896","EGF_Baseline":"1.22"},{"ID":"FBgn0040080","EGF_Baseline":"-1.2"},{"ID":"FBgn0030707","EGF_Baseline":"1.78"},{"ID":"FBgn0037960","EGF_Baseline":"1.54"},{"ID":"FBgn0031801","EGF_Baseline":"-0.86"},{"ID":"FBgn0030369","EGF_Baseline":"0.91"},{"ID":"FBgn0026259","EGF_Baseline":"-0.63"},{"ID":"FBgn0001314","EGF_Baseline":"-2.13"},{"ID":"FBgn0035026","EGF_Baseline":"0.51"},{"ID":"FBgn0051344","EGF_Baseline":"0.25"},{"ID":"FBgn0037462","EGF_Baseline":"-0.86"},{"ID":"FBgn0022023","EGF_Baseline":"0.96"},{"ID":"FBgn0032631","EGF_Baseline":"0.87"},{"ID":"FBgn0029529","EGF_Baseline":"-0.92"},{"ID":"FBgn0002283","EGF_Baseline":"1.9"},{"ID":"FBgn0032292","EGF_Baseline":"-0.21"},{"ID":"FBgn0028577","EGF_Baseline":"-2.21"},{"ID":"FBgn0037610","EGF_Baseline":"0.88"},{"ID":"FBgn0039045","EGF_Baseline":"1.05"},{"ID":"FBgn0085267","EGF_Baseline":"-0.41"},{"ID":"FBgn0010388","EGF_Baseline":"-1.19"},{"ID":"FBgn0260795","EGF_Baseline":"-0.74"},{"ID":"FBgn0260938","EGF_Baseline":"1.06"},{"ID":"FBgn0086674","EGF_Baseline":"-1.68"},{"ID":"FBgn0030474","EGF_Baseline":"1.21"},{"ID":"FBgn0036639","EGF_Baseline":"-1.45"},{"ID":"FBgn0020546","EGF_Baseline":"-1.8"},{"ID":"FBgn0038070","EGF_Baseline":"0.02"},{"ID":"FBgn0024811","EGF_Baseline":"0.63"},{"ID":"FBgn0033483","EGF_Baseline":"-0.74"},{"ID":"FBgn0043010","EGF_Baseline":"-1.1"},{"ID":"FBgn0004513","EGF_Baseline":"-0.85"},{"ID":"FBgn0031255","EGF_Baseline":"0.41"},{"ID":"FBgn0037242","EGF_Baseline":"1.34"},{"ID":"FBgn0030536","EGF_Baseline":"0.49"},{"ID":"FBgn0029512","EGF_Baseline":"0.57"},{"ID":"FBgn0036605","EGF_Baseline":"-0.55"},{"ID":"FBgn0037478","EGF_Baseline":"0.36"},{"ID":"FBgn0003076","EGF_Baseline":"0.43"},{"ID":"FBgn0035251","EGF_Baseline":"-1.5"},{"ID":"FBgn0033523","EGF_Baseline":"-0.34"},{"ID":"FBgn0086778","EGF_Baseline":"2.33"},{"ID":"FBgn0051413","EGF_Baseline":"-0.87"},{"ID":"FBgn0050487","EGF_Baseline":"1.7"},{"ID":"FBgn0038912","EGF_Baseline":"-0.47"},{"ID":"FBgn0026148","EGF_Baseline":"0.45"},{"ID":"FBgn0036560","EGF_Baseline":"-1.56"},{"ID":"FBgn0085243","EGF_Baseline":"-0.24"},{"ID":"FBgn0002838","EGF_Baseline":"0.55"},{"ID":"FBgn0028737","EGF_Baseline":"1.31"},{"ID":"FBgn0034546","EGF_Baseline":"-1.25"},{"ID":"FBgn0250789","EGF_Baseline":"0.94"},{"ID":"FBgn0023214","EGF_Baseline":"-1.05"},{"ID":"FBgn0035321","EGF_Baseline":"0.33"},{"ID":"FBgn0031655","EGF_Baseline":"0.94"},{"ID":"FBgn0035569","EGF_Baseline":"0.16"},{"ID":"FBgn0030761","EGF_Baseline":"-1.07"},{"ID":"FBgn0053768","EGF_Baseline":"2.67"},{"ID":"FBgn0037127","EGF_Baseline":"-0.67"},{"ID":"FBgn0051735","EGF_Baseline":"1.1"},{"ID":"FBgn0029778","EGF_Baseline":"-0.26"},{"ID":"FBgn0034390","EGF_Baseline":"-0.19"},{"ID":"FBgn0259482","EGF_Baseline":"-1.35"},{"ID":"FBgn0043012","EGF_Baseline":"0.47"},{"ID":"FBgn0016700","EGF_Baseline":"1.15"},{"ID":"FBgn0031155","EGF_Baseline":"-0.51"},{"ID":"FBgn0004370","EGF_Baseline":"-1.03"},{"ID":"FBgn0039914","EGF_Baseline":"0.3"},{"ID":"FBgn0025687","EGF_Baseline":"-0.74"},{"ID":"FBgn0035968","EGF_Baseline":"0.92"},{"ID":"FBgn0038485","EGF_Baseline":"0.35"},{"ID":"FBgn0039924","EGF_Baseline":"1.27"},{"ID":"FBgn0030679","EGF_Baseline":"-0.7"},{"ID":"FBgn0039508","EGF_Baseline":"0.28"},{"ID":"FBgn0053285","EGF_Baseline":"-0.51"},{"ID":"FBgn0034730","EGF_Baseline":"-1.7"},{"ID":"FBgn0033600","EGF_Baseline":"-1.38"},{"ID":"FBgn0261053","EGF_Baseline":"0.68"},{"ID":"FBgn0033043","EGF_Baseline":"0.71"},{"ID":"FBgn0261514","EGF_Baseline":"-2.27"},{"ID":"FBgn0020493","EGF_Baseline":"-2.06"},{"ID":"FBgn0034451","EGF_Baseline":"-1.34"},{"ID":"FBgn0031060","EGF_Baseline":"-0.44"},{"ID":"FBgn0003345","EGF_Baseline":"-0.66"},{"ID":"FBgn0037424","EGF_Baseline":"-1.18"},{"ID":"FBgn0039767","EGF_Baseline":"1.31"},{"ID":"FBgn0038445","EGF_Baseline":"-1.55"},{"ID":"FBgn0034031","EGF_Baseline":"0.12"},{"ID":"FBgn0041174","EGF_Baseline":"-1.13"},{"ID":"FBgn0030795","EGF_Baseline":"0.46"},{"ID":"FBgn0039629","EGF_Baseline":"-2.02"},{"ID":"FBgn0033476","EGF_Baseline":"-1.44"},{"ID":"FBgn0039848","EGF_Baseline":"-1.31"},{"ID":"FBgn0036085","EGF_Baseline":"-1.73"},{"ID":"FBgn0000542","EGF_Baseline":"1.07"},{"ID":"FBgn0024360","EGF_Baseline":"-0.63"},{"ID":"FBgn0011692","EGF_Baseline":"1.18"},{"ID":"FBgn0032104","EGF_Baseline":"0.71"},{"ID":"FBgn0034928","EGF_Baseline":"-1.96"},{"ID":"FBgn0034629","EGF_Baseline":"0.34"},{"ID":"FBgn0032915","EGF_Baseline":"-1.27"},{"ID":"FBgn0035987","EGF_Baseline":"-1.52"},{"ID":"FBgn0010905","EGF_Baseline":"1.5"},{"ID":"FBgn0039266","EGF_Baseline":"-0.42"},{"ID":"FBgn0028982","EGF_Baseline":"1.55"},{"ID":"FBgn0031189","EGF_Baseline":"-0.79"},{"ID":"FBgn0015402","EGF_Baseline":"-1.13"},{"ID":"FBgn0033199","EGF_Baseline":"1.18"},{"ID":"FBgn0038435","EGF_Baseline":"-0.46"},{"ID":"FBgn0030824","EGF_Baseline":"0.86"},{"ID":"FBgn0019928","EGF_Baseline":"7.56"},{"ID":"FBgn0015371","EGF_Baseline":"0.59"},{"ID":"FBgn0022153","EGF_Baseline":"-1.29"},{"ID":"FBgn0053453","EGF_Baseline":"-0.33"},{"ID":"FBgn0031581","EGF_Baseline":"-1.29"},{"ID":"FBgn0051700","EGF_Baseline":"-1.23"},{"ID":"FBgn0032297","EGF_Baseline":"-1.31"},{"ID":"FBgn0044028","EGF_Baseline":"-1.27"},{"ID":"FBgn0035540","EGF_Baseline":"1.35"},{"ID":"FBgn0000307","EGF_Baseline":"1.83"},{"ID":"FBgn0036439","EGF_Baseline":"-0.62"},{"ID":"FBgn0037576","EGF_Baseline":"0.79"},{"ID":"FBgn0015801","EGF_Baseline":"0.74"},{"ID":"FBgn0035687","EGF_Baseline":"-1.53"},{"ID":"FBgn0036843","EGF_Baseline":"-1.52"},{"ID":"FBgn0032986","EGF_Baseline":"0.58"},{"ID":"FBgn0031999","EGF_Baseline":"-1.62"},{"ID":"FBgn0033192","EGF_Baseline":"-1.63"},{"ID":"FBgn0034691","EGF_Baseline":"-0.4"},{"ID":"FBgn0025360","EGF_Baseline":"0.72"},{"ID":"FBgn0052369","EGF_Baseline":"1.76"},{"ID":"FBgn0036813","EGF_Baseline":"0.86"},{"ID":"FBgn0024963","EGF_Baseline":"0.68"},{"ID":"FBgn0034792","EGF_Baseline":"0.57"},{"ID":"FBgn0014019","EGF_Baseline":"-1.16"},{"ID":"FBgn0039907","EGF_Baseline":"0.98"},{"ID":"FBgn0083972","EGF_Baseline":"-1.45"},{"ID":"FBgn0025742","EGF_Baseline":"2.37"},{"ID":"FBgn0031848","EGF_Baseline":"-0.45"},{"ID":"FBgn0261699","EGF_Baseline":"0.38"},{"ID":"FBgn0027785","EGF_Baseline":"0.79"},{"ID":"FBgn0032030","EGF_Baseline":"-3.36"},{"ID":"FBgn0021800","EGF_Baseline":"-2.3"},{"ID":"FBgn0037234","EGF_Baseline":"0.63"},{"ID":"FBgn0003060","EGF_Baseline":"-1.61"},{"ID":"FBgn0038876","EGF_Baseline":"0.28"},{"ID":"FBgn0026756","EGF_Baseline":"-1.44"},{"ID":"FBgn0031069","EGF_Baseline":"-1.42"},{"ID":"FBgn0037664","EGF_Baseline":"-1.27"},{"ID":"FBgn0028970","EGF_Baseline":"0.56"},{"ID":"FBgn0030434","EGF_Baseline":"-0.43"},{"ID":"FBgn0015221","EGF_Baseline":"-1.6"},{"ID":"FBgn0031414","EGF_Baseline":"-0.95"},{"ID":"FBgn0035203","EGF_Baseline":"-0.62"},{"ID":"FBgn0037657","EGF_Baseline":"5.02"},{"ID":"FBgn0036377","EGF_Baseline":"0.62"},{"ID":"FBgn0025109","EGF_Baseline":"-1.73"},{"ID":"FBgn0031547","EGF_Baseline":"-1.61"},{"ID":"FBgn0032271","EGF_Baseline":"1.24"},{"ID":"FBgn0033685","EGF_Baseline":"-1.79"},{"ID":"FBgn0026403","EGF_Baseline":"0.35"},{"ID":"FBgn0038051","EGF_Baseline":"1.09"},{"ID":"FBgn0034052","EGF_Baseline":"-1.34"},{"ID":"FBgn0030032","EGF_Baseline":"-0.59"},{"ID":"FBgn0029819","EGF_Baseline":"-1.25"},{"ID":"FBgn0029866","EGF_Baseline":"0.3"},{"ID":"FBgn0037169","EGF_Baseline":"1.27"},{"ID":"FBgn0034834","EGF_Baseline":"-2.04"},{"ID":"FBgn0031431","EGF_Baseline":"0.42"},{"ID":"FBgn0035797","EGF_Baseline":"0.3"},{"ID":"FBgn0030048","EGF_Baseline":"-1.25"},{"ID":"FBgn0052983","EGF_Baseline":"0.27"},{"ID":"FBgn0020645","EGF_Baseline":"0.54"},{"ID":"FBgn0000826","EGF_Baseline":"2.15"},{"ID":"FBgn0050377","EGF_Baseline":"-0.86"},{"ID":"FBgn0046885","EGF_Baseline":"-1.41"},{"ID":"FBgn0032191","EGF_Baseline":"1.24"},{"ID":"FBgn0040679","EGF_Baseline":"1.17"},{"ID":"FBgn0016715","EGF_Baseline":"0.2"},{"ID":"FBgn0037469","EGF_Baseline":"1.23"},{"ID":"FBgn0000662","EGF_Baseline":"1.33"},{"ID":"FBgn0050344","EGF_Baseline":"-1.09"},{"ID":"FBgn0004507","EGF_Baseline":"0.09"},{"ID":"FBgn0016983","EGF_Baseline":"-1.19"},{"ID":"FBgn0037655","EGF_Baseline":"-2"},{"ID":"FBgn0031973","EGF_Baseline":"1.08"},{"ID":"FBgn0045501","EGF_Baseline":"-0.61"},{"ID":"FBgn0039379","EGF_Baseline":"-0.59"},{"ID":"FBgn0032428","EGF_Baseline":"0.93"},{"ID":"FBgn0045497","EGF_Baseline":"4.08"},{"ID":"FBgn0031365","EGF_Baseline":"0.84"},{"ID":"FBgn0038976","EGF_Baseline":"0.15"},{"ID":"FBgn0039155","EGF_Baseline":"-0.9"},{"ID":"FBgn0005614","EGF_Baseline":"-2.7"},{"ID":"FBgn0036184","EGF_Baseline":"-1.11"},{"ID":"FBgn0040395","EGF_Baseline":"1.03"},{"ID":"FBgn0052112","EGF_Baseline":"-1.25"},{"ID":"FBgn0052121","EGF_Baseline":"0.95"},{"ID":"FBgn0034715","EGF_Baseline":"0.31"},{"ID":"FBgn0031778","EGF_Baseline":"0.26"},{"ID":"FBgn0260462","EGF_Baseline":"-1.62"},{"ID":"FBgn0036879","EGF_Baseline":"-0.99"},{"ID":"FBgn0014179","EGF_Baseline":"1.36"},{"ID":"FBgn0028480","EGF_Baseline":"-1.11"},{"ID":"FBgn0031298","EGF_Baseline":"0.57"},{"ID":"FBgn0036766","EGF_Baseline":"0.48"},{"ID":"FBgn0033381","EGF_Baseline":"0.72"},{"ID":"FBgn0050087","EGF_Baseline":"1.24"},{"ID":"FBgn0031954","EGF_Baseline":"-0.96"},{"ID":"FBgn0028870","EGF_Baseline":"0.74"},{"ID":"FBgn0051205","EGF_Baseline":"0.76"},{"ID":"FBgn0032215","EGF_Baseline":"1.83"},{"ID":"FBgn0046875","EGF_Baseline":"1.16"},{"ID":"FBgn0053340","EGF_Baseline":"0.58"},{"ID":"FBgn0038948","EGF_Baseline":"-1.91"},{"ID":"FBgn0037150","EGF_Baseline":"-0.93"},{"ID":"FBgn0039407","EGF_Baseline":"-0.36"},{"ID":"FBgn0029148","EGF_Baseline":"-0.93"},{"ID":"FBgn0016660","EGF_Baseline":"1"},{"ID":"FBgn0261848","EGF_Baseline":"-1.73"},{"ID":"FBgn0036835","EGF_Baseline":"-2.07"},{"ID":"FBgn0013984","EGF_Baseline":"-1.26"},{"ID":"FBgn0032471","EGF_Baseline":"1.07"},{"ID":"FBgn0031719","EGF_Baseline":"-2.13"},{"ID":"FBgn0033224","EGF_Baseline":"-1.31"},{"ID":"FBgn0039741","EGF_Baseline":"0.61"},{"ID":"FBgn0003963","EGF_Baseline":"2.59"},{"ID":"FBgn0034083","EGF_Baseline":"-1.2"},{"ID":"FBgn0003178","EGF_Baseline":"-0.35"},{"ID":"FBgn0033582","EGF_Baseline":"-1.36"},{"ID":"FBgn0035504","EGF_Baseline":"-0.24"},{"ID":"FBgn0036156","EGF_Baseline":"0.49"},{"ID":"FBgn0039857","EGF_Baseline":"1.61"},{"ID":"FBgn0027657","EGF_Baseline":"-1.89"},{"ID":"FBgn0037777","EGF_Baseline":"-1.2"},{"ID":"FBgn0032305","EGF_Baseline":"2.19"},{"ID":"FBgn0036305","EGF_Baseline":"-0.52"},{"ID":"FBgn0038965","EGF_Baseline":"-0.95"},{"ID":"FBgn0052095","EGF_Baseline":"2.01"},{"ID":"FBgn0054008","EGF_Baseline":"-1.16"},{"ID":"FBgn0020277","EGF_Baseline":"-0.41"},{"ID":"FBgn0030204","EGF_Baseline":"-0.86"},{"ID":"FBgn0035730","EGF_Baseline":"-0.31"},{"ID":"FBgn0036787","EGF_Baseline":"2.16"},{"ID":"FBgn0044511","EGF_Baseline":"-1.62"},{"ID":"FBgn0029573","EGF_Baseline":"0.7"},{"ID":"FBgn0033628","EGF_Baseline":"1.27"},{"ID":"FBgn0034966","EGF_Baseline":"-0.21"},{"ID":"FBgn0039357","EGF_Baseline":"-1.19"},{"ID":"FBgn0050187","EGF_Baseline":"0.21"},{"ID":"FBgn0038234","EGF_Baseline":"-1.76"},{"ID":"FBgn0061469","EGF_Baseline":"0.91"},{"ID":"FBgn0037151","EGF_Baseline":"0.34"},{"ID":"FBgn0261004","EGF_Baseline":"-1.86"},{"ID":"FBgn0033240","EGF_Baseline":"-0.89"},{"ID":"FBgn0033963","EGF_Baseline":"0.74"},{"ID":"FBgn0029720","EGF_Baseline":"-1.43"},{"ID":"FBgn0032624","EGF_Baseline":"0.52"},{"ID":"FBgn0037989","EGF_Baseline":"0.61"},{"ID":"FBgn0037045","EGF_Baseline":"1.02"},{"ID":"FBgn0035829","EGF_Baseline":"0.74"},{"ID":"FBgn0011020","EGF_Baseline":"1.07"},{"ID":"FBgn0042179","EGF_Baseline":"1.51"},{"ID":"FBgn0037979","EGF_Baseline":"-0.73"},{"ID":"FBgn0010415","EGF_Baseline":"-1.41"},{"ID":"FBgn0034076","EGF_Baseline":"-1.28"},{"ID":"FBgn0030839","EGF_Baseline":"1.16"},{"ID":"FBgn0031401","EGF_Baseline":"-1.46"},{"ID":"FBgn0036206","EGF_Baseline":"-1.24"},{"ID":"FBgn0260393","EGF_Baseline":"-1.84"},{"ID":"FBgn0051108","EGF_Baseline":"0.72"},{"ID":"FBgn0035769","EGF_Baseline":"-1.46"},{"ID":"FBgn0035669","EGF_Baseline":"-0.58"},{"ID":"FBgn0037888","EGF_Baseline":"-0.49"},{"ID":"FBgn0023143","EGF_Baseline":"-1.63"},{"ID":"FBgn0030040","EGF_Baseline":"0.61"},{"ID":"FBgn0085260","EGF_Baseline":"-1.27"},{"ID":"FBgn0036332","EGF_Baseline":"1.3"},{"ID":"FBgn0042627","EGF_Baseline":"-1.41"},{"ID":"FBgn0039077","EGF_Baseline":"-0.68"},{"ID":"FBgn0011241","EGF_Baseline":"-1.4"},{"ID":"FBgn0033945","EGF_Baseline":"-1.45"},{"ID":"FBgn0045842","EGF_Baseline":"2.1"},{"ID":"FBgn0261446","EGF_Baseline":"1.08"},{"ID":"FBgn0032110","EGF_Baseline":"-1.69"},{"ID":"FBgn0053136","EGF_Baseline":"-0.9"},{"ID":"FBgn0039387","EGF_Baseline":"-0.54"},{"ID":"FBgn0031239","EGF_Baseline":"-1.3"},{"ID":"FBgn0050083","EGF_Baseline":"-1.22"},{"ID":"FBgn0260749","EGF_Baseline":"0.77"},{"ID":"FBgn0030672","EGF_Baseline":"-0.33"},{"ID":"FBgn0032691","EGF_Baseline":"-1.41"},{"ID":"FBgn0039440","EGF_Baseline":"-1.65"},{"ID":"FBgn0046322","EGF_Baseline":"0.39"},{"ID":"FBgn0030346","EGF_Baseline":"0.97"},{"ID":"FBgn0002571","EGF_Baseline":"0.89"},{"ID":"FBgn0030057","EGF_Baseline":"0.73"},{"ID":"FBgn0040206","EGF_Baseline":"-0.33"},{"ID":"FBgn0034264","EGF_Baseline":"-0.84"},{"ID":"FBgn0038855","EGF_Baseline":"1.44"},{"ID":"FBgn0040798","EGF_Baseline":"0.55"},{"ID":"FBgn0033887","EGF_Baseline":"0.75"},{"ID":"FBgn0038357","EGF_Baseline":"-0.92"},{"ID":"FBgn0031799","EGF_Baseline":"0.3"},{"ID":"FBgn0033356","EGF_Baseline":"0.62"},{"ID":"FBgn0011327","EGF_Baseline":"0.4"},{"ID":"FBgn0034279","EGF_Baseline":"1.83"},{"ID":"FBgn0036350","EGF_Baseline":"0.86"},{"ID":"FBgn0041160","EGF_Baseline":"-0.32"},{"ID":"FBgn0002533","EGF_Baseline":"1.39"},{"ID":"FBgn0050010","EGF_Baseline":"1.28"},{"ID":"FBgn0086377","EGF_Baseline":"0.49"},{"ID":"FBgn0033673","EGF_Baseline":"-0.78"},{"ID":"FBgn0035355","EGF_Baseline":"-0.71"},{"ID":"FBgn0001977","EGF_Baseline":"-1.37"},{"ID":"FBgn0037765","EGF_Baseline":"-0.36"},{"ID":"FBgn0028540","EGF_Baseline":"1.99"},{"ID":"FBgn0052152","EGF_Baseline":"-1.78"},{"ID":"FBgn0036575","EGF_Baseline":"1.55"},{"ID":"FBgn0052038","EGF_Baseline":"-1.88"},{"ID":"FBgn0039137","EGF_Baseline":"0.89"},{"ID":"FBgn0040350","EGF_Baseline":"-0.58"},{"ID":"FBgn0031990","EGF_Baseline":"1.25"},{"ID":"FBgn0029084","EGF_Baseline":"0.32"},{"ID":"FBgn0039883","EGF_Baseline":"-0.75"},{"ID":"FBgn0028684","EGF_Baseline":"-3.93"},{"ID":"FBgn0040389","EGF_Baseline":"0.35"},{"ID":"FBgn0003751","EGF_Baseline":"0.63"},{"ID":"FBgn0033159","EGF_Baseline":"1.21"},{"ID":"FBgn0261560","EGF_Baseline":"0.59"},{"ID":"FBgn0052206","EGF_Baseline":"1.15"},{"ID":"FBgn0015834","EGF_Baseline":"2.92"},{"ID":"FBgn0250826","EGF_Baseline":"0.99"},{"ID":"FBgn0030501","EGF_Baseline":"0.45"},{"ID":"FBgn0025620","EGF_Baseline":"2.08"},{"ID":"FBgn0084001","EGF_Baseline":"0.63"},{"ID":"FBgn0025616","EGF_Baseline":"-0.56"},{"ID":"FBgn0259187","EGF_Baseline":"0.74"},{"ID":"FBgn0031492","EGF_Baseline":"-1.68"},{"ID":"FBgn0083946","EGF_Baseline":"0.93"},{"ID":"FBgn0026391","EGF_Baseline":"-1.32"},{"ID":"FBgn0038746","EGF_Baseline":"-1.61"},{"ID":"FBgn0261569","EGF_Baseline":"0.41"},{"ID":"FBgn0003744","EGF_Baseline":"-1.21"},{"ID":"FBgn0036454","EGF_Baseline":"-1.26"},{"ID":"FBgn0035019","EGF_Baseline":"1.44"},{"ID":"FBgn0032516","EGF_Baseline":"1.61"},{"ID":"FBgn0051482","EGF_Baseline":"-0.58"},{"ID":"FBgn0037328","EGF_Baseline":"1.62"},{"ID":"FBgn0243512","EGF_Baseline":"-1.45"},{"ID":"FBgn0003748","EGF_Baseline":"1.09"},{"ID":"FBgn0051233","EGF_Baseline":"-1.34"},{"ID":"FBgn0038606","EGF_Baseline":"-1.39"},{"ID":"FBgn0037284","EGF_Baseline":"0.58"},{"ID":"FBgn0035971","EGF_Baseline":"-1.79"},{"ID":"FBgn0053349","EGF_Baseline":"0.59"},{"ID":"FBgn0011768","EGF_Baseline":"-1.41"},{"ID":"FBgn0030551","EGF_Baseline":"-1.58"},{"ID":"FBgn0015828","EGF_Baseline":"1.31"},{"ID":"FBgn0026390","EGF_Baseline":"-1.18"},{"ID":"FBgn0000250","EGF_Baseline":"1.71"},{"ID":"FBgn0085478","EGF_Baseline":"0.31"},{"ID":"FBgn0010317","EGF_Baseline":"-1.24"},{"ID":"FBgn0035425","EGF_Baseline":"1.07"},{"ID":"FBgn0035900","EGF_Baseline":"5.63"},{"ID":"FBgn0015714","EGF_Baseline":"0.69"},{"ID":"FBgn0040098","EGF_Baseline":"0.86"},{"ID":"FBgn0050011","EGF_Baseline":"-1.02"},{"ID":"FBgn0051646","EGF_Baseline":"-1.19"},{"ID":"FBgn0030583","EGF_Baseline":"-1.12"},{"ID":"FBgn0037455","EGF_Baseline":"0.17"},{"ID":"FBgn0033876","EGF_Baseline":"0.55"},{"ID":"FBgn0040360","EGF_Baseline":"-0.94"},{"ID":"FBgn0039025","EGF_Baseline":"-1.12"},{"ID":"FBgn0004396","EGF_Baseline":"-0.49"},{"ID":"FBgn0034446","EGF_Baseline":"-0.63"},{"ID":"FBgn0036754","EGF_Baseline":"-1.12"},{"ID":"FBgn0037874","EGF_Baseline":"0.59"},{"ID":"FBgn0003093","EGF_Baseline":"-1.71"},{"ID":"FBgn0050022","EGF_Baseline":"-1.33"},{"ID":"FBgn0029909","EGF_Baseline":"-0.73"},{"ID":"FBgn0036725","EGF_Baseline":"-0.7"},{"ID":"FBgn0038653","EGF_Baseline":"-2.22"},{"ID":"FBgn0033136","EGF_Baseline":"1.24"},{"ID":"FBgn0032877","EGF_Baseline":"0.65"},{"ID":"FBgn0030029","EGF_Baseline":"0.21"},{"ID":"FBgn0031635","EGF_Baseline":"-0.37"},{"ID":"FBgn0029891","EGF_Baseline":"0.34"},{"ID":"FBgn0010238","EGF_Baseline":"0.63"},{"ID":"FBgn0261550","EGF_Baseline":"-1.23"},{"ID":"FBgn0005278","EGF_Baseline":"2.07"},{"ID":"FBgn0021768","EGF_Baseline":"1.54"},{"ID":"FBgn0040262","EGF_Baseline":"1.42"},{"ID":"FBgn0037513","EGF_Baseline":"-1.43"},{"ID":"FBgn0031645","EGF_Baseline":"1.12"},{"ID":"FBgn0039187","EGF_Baseline":"-1.09"},{"ID":"FBgn0029785","EGF_Baseline":"2.09"},{"ID":"FBgn0035795","EGF_Baseline":"0.86"},{"ID":"FBgn0030191","EGF_Baseline":"-1.47"},{"ID":"FBgn0032362","EGF_Baseline":"2.86"},{"ID":"FBgn0032053","EGF_Baseline":"-1.67"},{"ID":"FBgn0085421","EGF_Baseline":"1.41"},{"ID":"FBgn0051668","EGF_Baseline":"0.42"},{"ID":"FBgn0029896","EGF_Baseline":"1.49"},{"ID":"FBgn0015737","EGF_Baseline":"0.58"},{"ID":"FBgn0035331","EGF_Baseline":"-0.8"},{"ID":"FBgn0011741","EGF_Baseline":"-0.6"},{"ID":"FBgn0023388","EGF_Baseline":"-1.05"},{"ID":"FBgn0031458","EGF_Baseline":"-0.84"},{"ID":"FBgn0039955","EGF_Baseline":"-1.5"},{"ID":"FBgn0034114","EGF_Baseline":"-0.4"},{"ID":"FBgn0030559","EGF_Baseline":"-0.69"},{"ID":"FBgn0029594","EGF_Baseline":"-0.92"},{"ID":"FBgn0033731","EGF_Baseline":"-1.05"},{"ID":"FBgn0036460","EGF_Baseline":"-1.93"},{"ID":"FBgn0051720","EGF_Baseline":"0.76"},{"ID":"FBgn0040371","EGF_Baseline":"0.69"},{"ID":"FBgn0016684","EGF_Baseline":"0.7"},{"ID":"FBgn0250871","EGF_Baseline":"0.35"},{"ID":"FBgn0037067","EGF_Baseline":"-0.93"},{"ID":"FBgn0034160","EGF_Baseline":"-1.38"},{"ID":"FBgn0040648","EGF_Baseline":"1.02"},{"ID":"FBgn0010651","EGF_Baseline":"0.65"},{"ID":"FBgn0035522","EGF_Baseline":"-0.42"},{"ID":"FBgn0031682","EGF_Baseline":"0.98"},{"ID":"FBgn0035012","EGF_Baseline":"-2.38"},{"ID":"FBgn0038420","EGF_Baseline":"0.86"},{"ID":"FBgn0029707","EGF_Baseline":"2.2"},{"ID":"FBgn0002719","EGF_Baseline":"-2.12"},{"ID":"FBgn0032042","EGF_Baseline":"0.49"},{"ID":"FBgn0028479","EGF_Baseline":"-1.02"},{"ID":"FBgn0053635","EGF_Baseline":"-1.2"},{"ID":"FBgn0031312","EGF_Baseline":"0.5"},{"ID":"FBgn0032755","EGF_Baseline":"-1.72"},{"ID":"FBgn0054051","EGF_Baseline":"-1.84"},{"ID":"FBgn0029659","EGF_Baseline":"-0.45"},{"ID":"FBgn0033179","EGF_Baseline":"0.07"},{"ID":"FBgn0005564","EGF_Baseline":"-1.57"},{"ID":"FBgn0085311","EGF_Baseline":"0.78"},{"ID":"FBgn0053532","EGF_Baseline":"-2.33"},{"ID":"FBgn0008636","EGF_Baseline":"0.57"},{"ID":"FBgn0022344","EGF_Baseline":"-1.2"},{"ID":"FBgn0030026","EGF_Baseline":"-0.92"},{"ID":"FBgn0087008","EGF_Baseline":"0.72"},{"ID":"FBgn0030887","EGF_Baseline":"-1.51"},{"ID":"FBgn0034475","EGF_Baseline":"0.47"},{"ID":"FBgn0259152","EGF_Baseline":"0.73"},{"ID":"FBgn0028897","EGF_Baseline":"-0.83"},{"ID":"FBgn0020653","EGF_Baseline":"-1.57"},{"ID":"FBgn0031561","EGF_Baseline":"1.93"},{"ID":"FBgn0260719","EGF_Baseline":"0.88"},{"ID":"FBgn0051822","EGF_Baseline":"1.16"},{"ID":"FBgn0034168","EGF_Baseline":"-0.71"},{"ID":"FBgn0052626","EGF_Baseline":"-1.51"},{"ID":"FBgn0034310","EGF_Baseline":"3.89"},{"ID":"FBgn0259211","EGF_Baseline":"-1.31"},{"ID":"FBgn0050365","EGF_Baseline":"-1.12"},{"ID":"FBgn0037923","EGF_Baseline":"1"},{"ID":"FBgn0085391","EGF_Baseline":"-1.5"},{"ID":"FBgn0037536","EGF_Baseline":"-0.89"},{"ID":"FBgn0032068","EGF_Baseline":"-1.19"},{"ID":"FBgn0027505","EGF_Baseline":"-0.87"},{"ID":"FBgn0036534","EGF_Baseline":"1.98"},{"ID":"FBgn0032010","EGF_Baseline":"-0.7"},{"ID":"FBgn0002542","EGF_Baseline":"0.95"},{"ID":"FBgn0030122","EGF_Baseline":"0.58"},{"ID":"FBgn0036541","EGF_Baseline":"-0.09"},{"ID":"FBgn0033952","EGF_Baseline":"-0.48"},{"ID":"FBgn0026562","EGF_Baseline":"-1.03"},{"ID":"FBgn0017414","EGF_Baseline":"0.9"},{"ID":"FBgn0250847","EGF_Baseline":"-1.32"},{"ID":"FBgn0004242","EGF_Baseline":"1.18"},{"ID":"FBgn0036237","EGF_Baseline":"-0.34"},{"ID":"FBgn0020376","EGF_Baseline":"-0.79"},{"ID":"FBgn0039229","EGF_Baseline":"5.02"},{"ID":"FBgn0028734","EGF_Baseline":"0.6"},{"ID":"FBgn0028920","EGF_Baseline":"-0.46"},{"ID":"FBgn0085357","EGF_Baseline":"0.74"},{"ID":"FBgn0051694","EGF_Baseline":"-1.55"},{"ID":"FBgn0004567","EGF_Baseline":"1.25"},{"ID":"FBgn0036705","EGF_Baseline":"1.9"},{"ID":"FBgn0036660","EGF_Baseline":"1.64"},{"ID":"FBgn0250862","EGF_Baseline":"-0.27"},{"ID":"FBgn0038515","EGF_Baseline":"-0.96"},{"ID":"FBgn0046302","EGF_Baseline":"-1.24"},{"ID":"FBgn0030947","EGF_Baseline":"-1.24"},{"ID":"FBgn0039987","EGF_Baseline":"-0.78"},{"ID":"FBgn0010222","EGF_Baseline":"-0.73"},{"ID":"FBgn0082585","EGF_Baseline":"-1.28"},{"ID":"FBgn0040506","EGF_Baseline":"0.75"},{"ID":"FBgn0035854","EGF_Baseline":"0.84"},{"ID":"FBgn0000083","EGF_Baseline":"1.11"},{"ID":"FBgn0261477","EGF_Baseline":"1.02"},{"ID":"FBgn0085282","EGF_Baseline":"0.23"},{"ID":"FBgn0010215","EGF_Baseline":"0.96"},{"ID":"FBgn0037175","EGF_Baseline":"0.53"},{"ID":"FBgn0016078","EGF_Baseline":"-0.6"},{"ID":"FBgn0035726","EGF_Baseline":"1.02"},{"ID":"FBgn0013972","EGF_Baseline":"-0.25"},{"ID":"FBgn0031947","EGF_Baseline":"0.76"},{"ID":"FBgn0051115","EGF_Baseline":"0.61"},{"ID":"FBgn0035590","EGF_Baseline":"-0.09"},{"ID":"FBgn0030542","EGF_Baseline":"-1.55"},{"ID":"FBgn0038579","EGF_Baseline":"-0.89"},{"ID":"FBgn0027086","EGF_Baseline":"-0.61"},{"ID":"FBgn0020391","EGF_Baseline":"-1.47"},{"ID":"FBgn0033133","EGF_Baseline":"0.61"},{"ID":"FBgn0030973","EGF_Baseline":"0.52"},{"ID":"FBgn0085273","EGF_Baseline":"-0.95"},{"ID":"FBgn0030161","EGF_Baseline":"0.81"},{"ID":"FBgn0010053","EGF_Baseline":"-1.75"},{"ID":"FBgn0037896","EGF_Baseline":"0.54"},{"ID":"FBgn0030776","EGF_Baseline":"-1.85"},{"ID":"FBgn0028939","EGF_Baseline":"0.41"},{"ID":"FBgn0052219","EGF_Baseline":"1.15"},{"ID":"FBgn0032520","EGF_Baseline":"-0.61"},{"ID":"FBgn0039678","EGF_Baseline":"-0.51"},{"ID":"FBgn0040918","EGF_Baseline":"1.08"},{"ID":"FBgn0014028","EGF_Baseline":"0.78"},{"ID":"FBgn0000257","EGF_Baseline":"-1.41"},{"ID":"FBgn0010808","EGF_Baseline":"3.28"},{"ID":"FBgn0039784","EGF_Baseline":"-0.78"},{"ID":"FBgn0030054","EGF_Baseline":"-1.37"},{"ID":"FBgn0051268","EGF_Baseline":"-0.58"},{"ID":"FBgn0003187","EGF_Baseline":"-0.32"},{"ID":"FBgn0034399","EGF_Baseline":"-0.39"},{"ID":"FBgn0026375","EGF_Baseline":"-0.8"},{"ID":"FBgn0039511","EGF_Baseline":"2.04"},{"ID":"FBgn0038929","EGF_Baseline":"-1.16"},{"ID":"FBgn0031622","EGF_Baseline":"1.02"},{"ID":"FBgn0030505","EGF_Baseline":"-0.81"},{"ID":"FBgn0035623","EGF_Baseline":"0.86"},{"ID":"FBgn0035690","EGF_Baseline":"-0.67"},{"ID":"FBgn0261856","EGF_Baseline":"-2.57"},{"ID":"FBgn0034292","EGF_Baseline":"-0.86"},{"ID":"FBgn0036850","EGF_Baseline":"-0.29"},{"ID":"FBgn0052354","EGF_Baseline":"-2.49"},{"ID":"FBgn0032171","EGF_Baseline":"-1.22"},{"ID":"FBgn0036681","EGF_Baseline":"0.52"},{"ID":"FBgn0032242","EGF_Baseline":"-0.86"},{"ID":"FBgn0044823","EGF_Baseline":"1.2"},{"ID":"FBgn0036423","EGF_Baseline":"-1.19"},{"ID":"FBgn0011227","EGF_Baseline":"-0.58"},{"ID":"FBgn0040068","EGF_Baseline":"-0.64"},{"ID":"FBgn0039798","EGF_Baseline":"0.44"},{"ID":"FBgn0026592","EGF_Baseline":"-0.36"},{"ID":"FBgn0051715","EGF_Baseline":"-0.66"},{"ID":"FBgn0039675","EGF_Baseline":"-0.79"},{"ID":"FBgn0033060","EGF_Baseline":"0.94"},{"ID":"FBgn0014877","EGF_Baseline":"-1.04"},{"ID":"FBgn0033210","EGF_Baseline":"0.63"},{"ID":"FBgn0035206","EGF_Baseline":"-1.07"},{"ID":"FBgn0034532","EGF_Baseline":"-1.69"},{"ID":"FBgn0037120","EGF_Baseline":"-0.97"},{"ID":"FBgn0033558","EGF_Baseline":"0.41"},{"ID":"FBgn0041237","EGF_Baseline":"1.4"},{"ID":"FBgn0039630","EGF_Baseline":"-1.18"},{"ID":"FBgn0054041","EGF_Baseline":"-0.97"},{"ID":"FBgn0011293","EGF_Baseline":"0.34"},{"ID":"FBgn0003575","EGF_Baseline":"-1.09"},{"ID":"FBgn0040034","EGF_Baseline":"-0.57"},{"ID":"FBgn0035007","EGF_Baseline":"0.34"},{"ID":"FBgn0034687","EGF_Baseline":"-0.74"},{"ID":"FBgn0038840","EGF_Baseline":"1.12"},{"ID":"FBgn0034184","EGF_Baseline":"-0.33"},{"ID":"FBgn0034541","EGF_Baseline":"-1.33"},{"ID":"FBgn0086450","EGF_Baseline":"1.18"},{"ID":"FBgn0034564","EGF_Baseline":"-1.2"},{"ID":"FBgn0261244","EGF_Baseline":"1.81"},{"ID":"FBgn0041585","EGF_Baseline":"0.63"},{"ID":"FBgn0036133","EGF_Baseline":"1.52"},{"ID":"FBgn0031098","EGF_Baseline":"-0.57"},{"ID":"FBgn0028690","EGF_Baseline":"-1.12"},{"ID":"FBgn0085278","EGF_Baseline":"-0.61"},{"ID":"FBgn0001122","EGF_Baseline":"0.47"},{"ID":"FBgn0028697","EGF_Baseline":"3.43"},{"ID":"FBgn0038396","EGF_Baseline":"-0.36"},{"ID":"FBgn0040551","EGF_Baseline":"-0.97"},{"ID":"FBgn0039726","EGF_Baseline":"-0.49"},{"ID":"FBgn0010173","EGF_Baseline":"0.91"},{"ID":"FBgn0032261","EGF_Baseline":"-1.6"},{"ID":"FBgn0034770","EGF_Baseline":"-0.69"},{"ID":"FBgn0030425","EGF_Baseline":"2"},{"ID":"FBgn0026262","EGF_Baseline":"-1.77"},{"ID":"FBgn0039202","EGF_Baseline":"-0.71"},{"ID":"FBgn0004889","EGF_Baseline":"-0.73"},{"ID":"FBgn0027375","EGF_Baseline":"-0.66"},{"ID":"FBgn0031184","EGF_Baseline":"-0.68"},{"ID":"FBgn0050446","EGF_Baseline":"0.52"},{"ID":"FBgn0052774","EGF_Baseline":"-0.88"},{"ID":"FBgn0036300","EGF_Baseline":"-0.08"},{"ID":"FBgn0033279","EGF_Baseline":"-0.97"},{"ID":"FBgn0032021","EGF_Baseline":"1.19"},{"ID":"FBgn0023423","EGF_Baseline":"1.09"},{"ID":"FBgn0034742","EGF_Baseline":"-1.09"},{"ID":"FBgn0051370","EGF_Baseline":"-1.41"},{"ID":"FBgn0025117","EGF_Baseline":"-2.42"},{"ID":"FBgn0033791","EGF_Baseline":"-0.99"},{"ID":"FBgn0038313","EGF_Baseline":"0.41"},{"ID":"FBgn0261575","EGF_Baseline":"1.39"},{"ID":"FBgn0011283","EGF_Baseline":"0.28"},{"ID":"FBgn0085198","EGF_Baseline":"-1.4"},{"ID":"FBgn0032374","EGF_Baseline":"0.74"},{"ID":"FBgn0039070","EGF_Baseline":"1.49"},{"ID":"FBgn0031359","EGF_Baseline":"-2.09"},{"ID":"FBgn0034456","EGF_Baseline":"1.45"},{"ID":"FBgn0033999","EGF_Baseline":"1.36"},{"ID":"FBgn0033738","EGF_Baseline":"0.96"},{"ID":"FBgn0034622","EGF_Baseline":"-1.83"},{"ID":"FBgn0028379","EGF_Baseline":"-0.49"},{"ID":"FBgn0031373","EGF_Baseline":"1"},{"ID":"FBgn0038371","EGF_Baseline":"-0.82"},{"ID":"FBgn0037602","EGF_Baseline":"1.22"},{"ID":"FBgn0024836","EGF_Baseline":"1.62"},{"ID":"FBgn0031591","EGF_Baseline":"-1.82"},{"ID":"FBgn0028394","EGF_Baseline":"-1.27"},{"ID":"FBgn0035697","EGF_Baseline":"-0.33"},{"ID":"FBgn0259179","EGF_Baseline":"-1.42"},{"ID":"FBgn0033260","EGF_Baseline":"-1.57"},{"ID":"FBgn0034535","EGF_Baseline":"-0.98"},{"ID":"FBgn0037548","EGF_Baseline":"-2.04"},{"ID":"FBgn0085398","EGF_Baseline":"1.55"},{"ID":"FBgn0036345","EGF_Baseline":"0.19"},{"ID":"FBgn0039787","EGF_Baseline":"-0.61"},{"ID":"FBgn0036121","EGF_Baseline":"-1.03"},{"ID":"FBgn0035935","EGF_Baseline":"0.83"},{"ID":"FBgn0038739","EGF_Baseline":"0.38"},{"ID":"FBgn0052813","EGF_Baseline":"-0.75"},{"ID":"FBgn0038532","EGF_Baseline":"-1.06"},{"ID":"FBgn0035577","EGF_Baseline":"0.4"},{"ID":"FBgn0041242","EGF_Baseline":"0.48"},{"ID":"FBgn0037485","EGF_Baseline":"1.07"},{"ID":"FBgn0085333","EGF_Baseline":"1.25"},{"ID":"FBgn0039736","EGF_Baseline":"-0.41"},{"ID":"FBgn0011823","EGF_Baseline":"0.13"},{"ID":"FBgn0000152","EGF_Baseline":"0.33"},{"ID":"FBgn0261545","EGF_Baseline":"2.52"},{"ID":"FBgn0029082","EGF_Baseline":"0.37"},{"ID":"FBgn0030891","EGF_Baseline":"0.29"},{"ID":"FBgn0029729","EGF_Baseline":"1.24"},{"ID":"FBgn0000278","EGF_Baseline":"-0.64"},{"ID":"FBgn0031456","EGF_Baseline":"-0.94"},{"ID":"FBgn0039650","EGF_Baseline":"-0.59"},{"ID":"FBgn0031451","EGF_Baseline":"0.53"},{"ID":"FBgn0051559","EGF_Baseline":"0.82"},{"ID":"FBgn0016131","EGF_Baseline":"4.37"},{"ID":"FBgn0020556","EGF_Baseline":"-0.64"},{"ID":"FBgn0032639","EGF_Baseline":"1.25"},{"ID":"FBgn0035344","EGF_Baseline":"-0.44"},{"ID":"FBgn0031887","EGF_Baseline":"1.51"},{"ID":"FBgn0051217","EGF_Baseline":"-1.61"},{"ID":"FBgn0037592","EGF_Baseline":"-2.34"},{"ID":"FBgn0031428","EGF_Baseline":"-0.41"},{"ID":"FBgn0003380","EGF_Baseline":"0.48"},{"ID":"FBgn0032202","EGF_Baseline":"1.03"},{"ID":"FBgn0030000","EGF_Baseline":"-1.47"},{"ID":"FBgn0013973","EGF_Baseline":"-0.87"},{"ID":"FBgn0031607","EGF_Baseline":"-1.19"},{"ID":"FBgn0040336","EGF_Baseline":"0.25"},{"ID":"FBgn0036979","EGF_Baseline":"-1.81"},{"ID":"FBgn0003189","EGF_Baseline":"0.87"},{"ID":"FBgn0051522","EGF_Baseline":"1.18"},{"ID":"FBgn0001311","EGF_Baseline":"-0.47"},{"ID":"FBgn0027564","EGF_Baseline":"-0.86"},{"ID":"FBgn0039491","EGF_Baseline":"1"},{"ID":"FBgn0032921","EGF_Baseline":"0.76"},{"ID":"FBgn0005322","EGF_Baseline":"0.78"},{"ID":"FBgn0036029","EGF_Baseline":"1.16"},{"ID":"FBgn0261402","EGF_Baseline":"1.19"},{"ID":"FBgn0028955","EGF_Baseline":"-0.84"},{"ID":"FBgn0030827","EGF_Baseline":"-0.74"},{"ID":"FBgn0051787","EGF_Baseline":"1.49"},{"ID":"FBgn0034179","EGF_Baseline":"-0.38"},{"ID":"FBgn0029843","EGF_Baseline":"-0.41"},{"ID":"FBgn0038842","EGF_Baseline":"1"},{"ID":"FBgn0040778","EGF_Baseline":"-1.26"},{"ID":"FBgn0037248","EGF_Baseline":"-0.51"},{"ID":"FBgn0047199","EGF_Baseline":"0.35"},{"ID":"FBgn0015568","EGF_Baseline":"-1.73"},{"ID":"FBgn0019982","EGF_Baseline":"-0.5"},{"ID":"FBgn0052021","EGF_Baseline":"-0.8"},{"ID":"FBgn0004366","EGF_Baseline":"-2.38"},{"ID":"FBgn0036931","EGF_Baseline":"-1.38"},{"ID":"FBgn0023094","EGF_Baseline":"1.49"},{"ID":"FBgn0051075","EGF_Baseline":"-1.1"},{"ID":"FBgn0033075","EGF_Baseline":"-0.35"},{"ID":"FBgn0001133","EGF_Baseline":"0.72"},{"ID":"FBgn0031219","EGF_Baseline":"1.92"},{"ID":"FBgn0085307","EGF_Baseline":"-0.29"},{"ID":"FBgn0050056","EGF_Baseline":"-0.62"},{"ID":"FBgn0037720","EGF_Baseline":"-1.02"},{"ID":"FBgn0030052","EGF_Baseline":"-1.15"},{"ID":"FBgn0002641","EGF_Baseline":"0.53"},{"ID":"FBgn0050323","EGF_Baseline":"-0.55"},{"ID":"FBgn0034109","EGF_Baseline":"-0.78"},{"ID":"FBgn0039453","EGF_Baseline":"-1.42"},{"ID":"FBgn0030206","EGF_Baseline":"-0.87"},{"ID":"FBgn0036509","EGF_Baseline":"-1.46"},{"ID":"FBgn0022981","EGF_Baseline":"1.36"},{"ID":"FBgn0035187","EGF_Baseline":"-0.23"},{"ID":"FBgn0017557","EGF_Baseline":"-0.75"},{"ID":"FBgn0014851","EGF_Baseline":"-0.54"},{"ID":"FBgn0040343","EGF_Baseline":"-1.05"},{"ID":"FBgn0035170","EGF_Baseline":"0.52"},{"ID":"FBgn0030731","EGF_Baseline":"-0.35"},{"ID":"FBgn0034104","EGF_Baseline":"-0.79"},{"ID":"FBgn0011279","EGF_Baseline":"1.22"},{"ID":"FBgn0035148","EGF_Baseline":"-0.49"},{"ID":"FBgn0002868","EGF_Baseline":"-1.03"},{"ID":"FBgn0015585","EGF_Baseline":"-1.06"},{"ID":"FBgn0030691","EGF_Baseline":"-1.12"},{"ID":"FBgn0032456","EGF_Baseline":"0.79"},{"ID":"FBgn0033865","EGF_Baseline":"-0.42"},{"ID":"FBgn0034671","EGF_Baseline":"1.05"},{"ID":"FBgn0027873","EGF_Baseline":"-1.54"},{"ID":"FBgn0004425","EGF_Baseline":"-1.26"},{"ID":"FBgn0031443","EGF_Baseline":"-0.57"},{"ID":"FBgn0039537","EGF_Baseline":"0.7"},{"ID":"FBgn0003430","EGF_Baseline":"1.23"},{"ID":"FBgn0086443","EGF_Baseline":"-0.87"},{"ID":"FBgn0040752","EGF_Baseline":"1.1"},{"ID":"FBgn0069973","EGF_Baseline":"1.31"},{"ID":"FBgn0003480","EGF_Baseline":"-0.28"},{"ID":"FBgn0034563","EGF_Baseline":"0.81"},{"ID":"FBgn0000092","EGF_Baseline":"-0.84"},{"ID":"FBgn0042185","EGF_Baseline":"1.8"},{"ID":"FBgn0030809","EGF_Baseline":"-1.91"},{"ID":"FBgn0038767","EGF_Baseline":"-0.41"},{"ID":"FBgn0058064","EGF_Baseline":"0.77"},{"ID":"FBgn0034692","EGF_Baseline":"0.84"},{"ID":"FBgn0000100","EGF_Baseline":"3.01"},{"ID":"FBgn0029874","EGF_Baseline":"-0.91"},{"ID":"FBgn0010409","EGF_Baseline":"5.32"},{"ID":"FBgn0261573","EGF_Baseline":"1.97"},{"ID":"FBgn0014127","EGF_Baseline":"1.59"},{"ID":"FBgn0038903","EGF_Baseline":"1.34"},{"ID":"FBgn0034951","EGF_Baseline":"0.81"},{"ID":"FBgn0036587","EGF_Baseline":"1.14"},{"ID":"FBgn0036091","EGF_Baseline":"-1.35"},{"ID":"FBgn0002735","EGF_Baseline":"-0.62"},{"ID":"FBgn0015577","EGF_Baseline":"-1"},{"ID":"FBgn0032511","EGF_Baseline":"1.73"},{"ID":"FBgn0001170","EGF_Baseline":"-0.77"},{"ID":"FBgn0011225","EGF_Baseline":"1.69"},{"ID":"FBgn0039396","EGF_Baseline":"-1.12"},{"ID":"FBgn0031620","EGF_Baseline":"-0.15"},{"ID":"FBgn0039084","EGF_Baseline":"-1.66"},{"ID":"FBgn0038426","EGF_Baseline":"-1.63"},{"ID":"FBgn0035677","EGF_Baseline":"-0.87"},{"ID":"FBgn0085436","EGF_Baseline":"5.1"},{"ID":"FBgn0035714","EGF_Baseline":"-1.05"},{"ID":"FBgn0052576","EGF_Baseline":"-0.44"},{"ID":"FBgn0030661","EGF_Baseline":"-0.66"},{"ID":"FBgn0003515","EGF_Baseline":"-0.9"},{"ID":"FBgn0036728","EGF_Baseline":"-1.27"},{"ID":"FBgn0025454","EGF_Baseline":"0.84"},{"ID":"FBgn0034964","EGF_Baseline":"-1.91"},{"ID":"FBgn0036624","EGF_Baseline":"-1.22"},{"ID":"FBgn0034959","EGF_Baseline":"-0.73"},{"ID":"FBgn0052569","EGF_Baseline":"0.19"},{"ID":"FBgn0035346","EGF_Baseline":"0.19"},{"ID":"FBgn0039876","EGF_Baseline":"-0.95"},{"ID":"FBgn0058198","EGF_Baseline":"-1.26"},{"ID":"FBgn0032401","EGF_Baseline":"-1.12"},{"ID":"FBgn0031101","EGF_Baseline":"-1.03"},{"ID":"FBgn0261289","EGF_Baseline":"1.27"},{"ID":"FBgn0035824","EGF_Baseline":"0.72"},{"ID":"FBgn0027795","EGF_Baseline":"-0.12"},{"ID":"FBgn0025573","EGF_Baseline":"0.39"},{"ID":"FBgn0033232","EGF_Baseline":"-1.12"},{"ID":"FBgn0036044","EGF_Baseline":"0.7"},{"ID":"FBgn0260657","EGF_Baseline":"1.19"},{"ID":"FBgn0031289","EGF_Baseline":"-0.45"},{"ID":"FBgn0035638","EGF_Baseline":"1.82"},{"ID":"FBgn0030420","EGF_Baseline":"-0.83"},{"ID":"FBgn0053012","EGF_Baseline":"-0.78"},{"ID":"FBgn0024245","EGF_Baseline":"-0.59"},{"ID":"FBgn0034416","EGF_Baseline":"-0.14"},{"ID":"FBgn0010300","EGF_Baseline":"-0.28"},{"ID":"FBgn0052192","EGF_Baseline":"0.7"},{"ID":"FBgn0029748","EGF_Baseline":"2.18"},{"ID":"FBgn0025549","EGF_Baseline":"-0.39"},{"ID":"FBgn0034205","EGF_Baseline":"-0.79"},{"ID":"FBgn0032715","EGF_Baseline":"-0.81"},{"ID":"FBgn0029999","EGF_Baseline":"-1.61"},{"ID":"FBgn0039341","EGF_Baseline":"-1.46"},{"ID":"FBgn0036911","EGF_Baseline":"-0.95"},{"ID":"FBgn0259713","EGF_Baseline":"1.44"},{"ID":"FBgn0038953","EGF_Baseline":"-1.14"},{"ID":"FBgn0035397","EGF_Baseline":"-1.32"},{"ID":"FBgn0000228","EGF_Baseline":"1.13"},{"ID":"FBgn0034097","EGF_Baseline":"-0.87"},{"ID":"FBgn0031877","EGF_Baseline":"0.56"},{"ID":"FBgn0010575","EGF_Baseline":"-0.8"},{"ID":"FBgn0032668","EGF_Baseline":"-0.66"},{"ID":"FBgn0030311","EGF_Baseline":"-0.97"},{"ID":"FBgn0036329","EGF_Baseline":"0.24"},{"ID":"FBgn0020756","EGF_Baseline":"1.28"},{"ID":"FBgn0039686","EGF_Baseline":"-0.52"},{"ID":"FBgn0011726","EGF_Baseline":"0.7"},{"ID":"FBgn0040038","EGF_Baseline":"1.18"},{"ID":"FBgn0030961","EGF_Baseline":"-1.33"},{"ID":"FBgn0038734","EGF_Baseline":"-0.16"},{"ID":"FBgn0033828","EGF_Baseline":"-1.53"},{"ID":"FBgn0004842","EGF_Baseline":"-0.96"},{"ID":"FBgn0034269","EGF_Baseline":"-0.6"},{"ID":"FBgn0039966","EGF_Baseline":"0.87"},{"ID":"FBgn0037347","EGF_Baseline":"-1.73"},{"ID":"FBgn0036195","EGF_Baseline":"-0.78"},{"ID":"FBgn0032023","EGF_Baseline":"0.82"},{"ID":"FBgn0031327","EGF_Baseline":"0.77"},{"ID":"FBgn0004919","EGF_Baseline":"-0.6"},{"ID":"FBgn0044046","EGF_Baseline":"-1.58"},{"ID":"FBgn0053523","EGF_Baseline":"-1.32"},{"ID":"FBgn0038609","EGF_Baseline":"0.77"},{"ID":"FBgn0015795","EGF_Baseline":"0.91"},{"ID":"FBgn0032211","EGF_Baseline":"1.26"},{"ID":"FBgn0050420","EGF_Baseline":"-0.71"},{"ID":"FBgn0027574","EGF_Baseline":"1.5"},{"ID":"FBgn0051313","EGF_Baseline":"0.22"},{"ID":"FBgn0038692","EGF_Baseline":"-0.42"},{"ID":"FBgn0032075","EGF_Baseline":"-0.41"},{"ID":"FBgn0051352","EGF_Baseline":"-2.07"},{"ID":"FBgn0038191","EGF_Baseline":"-0.39"},{"ID":"FBgn0038466","EGF_Baseline":"-1.6"},{"ID":"FBgn0036993","EGF_Baseline":"-0.84"},{"ID":"FBgn0031766","EGF_Baseline":"0.96"},{"ID":"FBgn0032388","EGF_Baseline":"0.28"},{"ID":"FBgn0001281","EGF_Baseline":"1.1"},{"ID":"FBgn0033571","EGF_Baseline":"4.53"},{"ID":"FBgn0004910","EGF_Baseline":"-1.01"},{"ID":"FBgn0051219","EGF_Baseline":"1.38"},{"ID":"FBgn0033490","EGF_Baseline":"-0.78"},{"ID":"FBgn0034894","EGF_Baseline":"0.54"},{"ID":"FBgn0052488","EGF_Baseline":"1.21"},{"ID":"FBgn0050463","EGF_Baseline":"-1.67"},{"ID":"FBgn0039806","EGF_Baseline":"-0.21"},{"ID":"FBgn0035179","EGF_Baseline":"-1.62"},{"ID":"FBgn0038742","EGF_Baseline":"-1.07"},{"ID":"FBgn0038535","EGF_Baseline":"1.07"},{"ID":"FBgn0034324","EGF_Baseline":"0.35"},{"ID":"FBgn0040045","EGF_Baseline":"2.13"},{"ID":"FBgn0015586","EGF_Baseline":"-0.77"},{"ID":"FBgn0053469","EGF_Baseline":"1.47"},{"ID":"FBgn0040352","EGF_Baseline":"0.37"},{"ID":"FBgn0033690","EGF_Baseline":"-0.83"},{"ID":"FBgn0053100","EGF_Baseline":"-1.05"},{"ID":"FBgn0085384","EGF_Baseline":"-1.78"},{"ID":"FBgn0038111","EGF_Baseline":"-1.61"},{"ID":"FBgn0036213","EGF_Baseline":"4.53"},{"ID":"FBgn0261385","EGF_Baseline":"-1.4"},{"ID":"FBgn0004107","EGF_Baseline":"3.79"},{"ID":"FBgn0036443","EGF_Baseline":"-1.33"},{"ID":"FBgn0032881","EGF_Baseline":"-1.07"},{"ID":"FBgn0031089","EGF_Baseline":"-0.47"},{"ID":"FBgn0085253","EGF_Baseline":"-1.09"},{"ID":"FBgn0030738","EGF_Baseline":"-1.19"},{"ID":"FBgn0032234","EGF_Baseline":"0.59"},{"ID":"FBgn0036778","EGF_Baseline":"1.43"},{"ID":"FBgn0051326","EGF_Baseline":"-1.81"},{"ID":"FBgn0035217","EGF_Baseline":"-0.65"},{"ID":"FBgn0036516","EGF_Baseline":"-0.88"},{"ID":"FBgn0034023","EGF_Baseline":"0.4"},{"ID":"FBgn0038262","EGF_Baseline":"-1.41"},{"ID":"FBgn0052707","EGF_Baseline":"0.48"},{"ID":"FBgn0038826","EGF_Baseline":"-1.2"},{"ID":"FBgn0032810","EGF_Baseline":"-0.64"},{"ID":"FBgn0037680","EGF_Baseline":"-2.23"},{"ID":"FBgn0033450","EGF_Baseline":"0.65"},{"ID":"FBgn0032259","EGF_Baseline":"-1.46"},{"ID":"FBgn0031010","EGF_Baseline":"1.37"},{"ID":"FBgn0033705","EGF_Baseline":"-0.54"},{"ID":"FBgn0039450","EGF_Baseline":"0.99"},{"ID":"FBgn0038451","EGF_Baseline":"0.24"},{"ID":"FBgn0037224","EGF_Baseline":"1.02"},{"ID":"FBgn0052405","EGF_Baseline":"-1.28"},{"ID":"FBgn0033369","EGF_Baseline":"0.21"},{"ID":"FBgn0040964","EGF_Baseline":"-0.83"},{"ID":"FBgn0002872","EGF_Baseline":"1.56"},{"ID":"FBgn0038345","EGF_Baseline":"-1.51"},{"ID":"FBgn0261451","EGF_Baseline":"-1.43"},{"ID":"FBgn0052087","EGF_Baseline":"-1.65"},{"ID":"FBgn0033607","EGF_Baseline":"-0.56"},{"ID":"FBgn0037584","EGF_Baseline":"-1.44"},{"ID":"FBgn0039294","EGF_Baseline":"0.91"},{"ID":"FBgn0010294","EGF_Baseline":"-0.62"},{"ID":"FBgn0039135","EGF_Baseline":"-0.65"},{"ID":"FBgn0039581","EGF_Baseline":"-0.27"},{"ID":"FBgn0033597","EGF_Baseline":"0.37"},{"ID":"FBgn0032817","EGF_Baseline":"1.08"},{"ID":"FBgn0037282","EGF_Baseline":"-1.54"},{"ID":"FBgn0027495","EGF_Baseline":"0.22"},{"ID":"FBgn0261710","EGF_Baseline":"0.33"},{"ID":"FBgn0038809","EGF_Baseline":"-0.97"},{"ID":"FBgn0035312","EGF_Baseline":"0.73"},{"ID":"FBgn0036039","EGF_Baseline":"-0.37"},{"ID":"FBgn0001208","EGF_Baseline":"0.83"},{"ID":"FBgn0030616","EGF_Baseline":"1.2"},{"ID":"FBgn0051342","EGF_Baseline":"-1.71"},{"ID":"FBgn0022382","EGF_Baseline":"1.55"},{"ID":"FBgn0035453","EGF_Baseline":"-1.02"},{"ID":"FBgn0004864","EGF_Baseline":"-0.03"},{"ID":"FBgn0039098","EGF_Baseline":"-1.48"},{"ID":"FBgn0034700","EGF_Baseline":"0.52"},{"ID":"FBgn0020765","EGF_Baseline":"-0.71"},{"ID":"FBgn0031264","EGF_Baseline":"0.06"},{"ID":"FBgn0032586","EGF_Baseline":"-1.41"},{"ID":"FBgn0052382","EGF_Baseline":"1.43"},{"ID":"FBgn0030816","EGF_Baseline":"1.04"},{"ID":"FBgn0038175","EGF_Baseline":"0.71"},{"ID":"FBgn0032518","EGF_Baseline":"-3.1"},{"ID":"FBgn0261588","EGF_Baseline":"-0.95"},{"ID":"FBgn0034656","EGF_Baseline":"-2.27"},{"ID":"FBgn0053080","EGF_Baseline":"-1.22"},{"ID":"FBgn0000447","EGF_Baseline":"-1.03"},{"ID":"FBgn0037363","EGF_Baseline":"-0.75"},{"ID":"FBgn0035877","EGF_Baseline":"-0.71"},{"ID":"FBgn0034523","EGF_Baseline":"-1.99"},{"ID":"FBgn0033936","EGF_Baseline":"-1.83"},{"ID":"FBgn0033740","EGF_Baseline":"0.44"},{"ID":"FBgn0045483","EGF_Baseline":"0.17"},{"ID":"FBgn0033635","EGF_Baseline":"-1.45"},{"ID":"FBgn0086758","EGF_Baseline":"-1.75"},{"ID":"FBgn0037130","EGF_Baseline":"0.57"},{"ID":"FBgn0022710","EGF_Baseline":"-0.47"},{"ID":"FBgn0004034","EGF_Baseline":"-1.48"},{"ID":"FBgn0039711","EGF_Baseline":"1.05"},{"ID":"FBgn0034009","EGF_Baseline":"-1.84"},{"ID":"FBgn0053177","EGF_Baseline":"0.47"},{"ID":"FBgn0035282","EGF_Baseline":"1.15"},{"ID":"FBgn0032016","EGF_Baseline":"-0.47"},{"ID":"FBgn0039498","EGF_Baseline":"1.33"},{"ID":"FBgn0037727","EGF_Baseline":"0.6"},{"ID":"FBgn0030348","EGF_Baseline":"0.89"},{"ID":"FBgn0024326","EGF_Baseline":"0.99"},{"ID":"FBgn0003371","EGF_Baseline":"-0.82"},{"ID":"FBgn0022355","EGF_Baseline":"-1.39"},{"ID":"FBgn0035495","EGF_Baseline":"-0.98"},{"ID":"FBgn0040726","EGF_Baseline":"-1.7"},{"ID":"FBgn0039759","EGF_Baseline":"-1.07"},{"ID":"FBgn0052057","EGF_Baseline":"-0.76"},{"ID":"FBgn0032157","EGF_Baseline":"-0.99"},{"ID":"FBgn0028993","EGF_Baseline":"-1.52"},{"ID":"FBgn0011670","EGF_Baseline":"-0.85"},{"ID":"FBgn0050029","EGF_Baseline":"-0.58"},{"ID":"FBgn0004784","EGF_Baseline":"0.3"},{"ID":"FBgn0029820","EGF_Baseline":"0.67"},{"ID":"FBgn0013770","EGF_Baseline":"-1.15"},{"ID":"FBgn0015400","EGF_Baseline":"-0.51"},{"ID":"FBgn0035435","EGF_Baseline":"-0.98"},{"ID":"FBgn0025809","EGF_Baseline":"-0.77"},{"ID":"FBgn0030871","EGF_Baseline":"-1.12"},{"ID":"FBgn0014417","EGF_Baseline":"0.65"},{"ID":"FBgn0035286","EGF_Baseline":"0.29"},{"ID":"FBgn0041092","EGF_Baseline":"-1.05"},{"ID":"FBgn0029687","EGF_Baseline":"0.37"},{"ID":"FBgn0034008","EGF_Baseline":"1.07"},{"ID":"FBgn0036259","EGF_Baseline":"0.84"},{"ID":"FBgn0020440","EGF_Baseline":"-1.1"},{"ID":"FBgn0032726","EGF_Baseline":"-0.79"},{"ID":"FBgn0003715","EGF_Baseline":"-0.12"},{"ID":"FBgn0033818","EGF_Baseline":"-1.53"},{"ID":"FBgn0037135","EGF_Baseline":"-0.82"},{"ID":"FBgn0001186","EGF_Baseline":"0.59"},{"ID":"FBgn0038057","EGF_Baseline":"-1.32"},{"ID":"FBgn0030108","EGF_Baseline":"-0.51"},{"ID":"FBgn0030294","EGF_Baseline":"0.74"},{"ID":"FBgn0030841","EGF_Baseline":"-0.23"},{"ID":"FBgn0030063","EGF_Baseline":"-1.33"},{"ID":"FBgn0031929","EGF_Baseline":"0.52"},{"ID":"FBgn0052440","EGF_Baseline":"-0.78"},{"ID":"FBgn0030975","EGF_Baseline":"-1.4"},{"ID":"FBgn0016047","EGF_Baseline":"-1.88"},{"ID":"FBgn0023525","EGF_Baseline":"-0.76"},{"ID":"FBgn0016691","EGF_Baseline":"-0.17"},{"ID":"FBgn0037294","EGF_Baseline":"-2.4"},{"ID":"FBgn0023081","EGF_Baseline":"-1.18"},{"ID":"FBgn0063495","EGF_Baseline":"-0.68"},{"ID":"FBgn0036448","EGF_Baseline":"0.23"},{"ID":"FBgn0261614","EGF_Baseline":"0.64"},{"ID":"FBgn0039890","EGF_Baseline":"-1.34"},{"ID":"FBgn0053262","EGF_Baseline":"0.83"},{"ID":"FBgn0037525","EGF_Baseline":"-1.38"},{"ID":"FBgn0038422","EGF_Baseline":"0.47"},{"ID":"FBgn0037105","EGF_Baseline":"0.46"},{"ID":"FBgn0050457","EGF_Baseline":"-2.06"},{"ID":"FBgn0086783","EGF_Baseline":"1.26"},{"ID":"FBgn0025578","EGF_Baseline":"0.7"},{"ID":"FBgn0037543","EGF_Baseline":"0.79"},{"ID":"FBgn0037018","EGF_Baseline":"0.72"},{"ID":"FBgn0001226","EGF_Baseline":"0.63"},{"ID":"FBgn0051600","EGF_Baseline":"-0.9"},{"ID":"FBgn0010329","EGF_Baseline":"-1.12"},{"ID":"FBgn0028343","EGF_Baseline":"0.98"},{"ID":"FBgn0030142","EGF_Baseline":"1.35"},{"ID":"FBgn0039329","EGF_Baseline":"1.79"},{"ID":"FBgn0038564","EGF_Baseline":"-0.72"},{"ID":"FBgn0034002","EGF_Baseline":"-2.1"},{"ID":"FBgn0014076","EGF_Baseline":"1.97"},{"ID":"FBgn0031074","EGF_Baseline":"-1.13"},{"ID":"FBgn0020429","EGF_Baseline":"-1.38"},{"ID":"FBgn0030009","EGF_Baseline":"-0.67"},{"ID":"FBgn0038751","EGF_Baseline":"-0.88"},{"ID":"FBgn0038680","EGF_Baseline":"-1.17"},{"ID":"FBgn0027607","EGF_Baseline":"-0.77"},{"ID":"FBgn0039274","EGF_Baseline":"1.56"},{"ID":"FBgn0025388","EGF_Baseline":"-0.82"},{"ID":"FBgn0038803","EGF_Baseline":"2.35"},{"ID":"FBgn0039126","EGF_Baseline":"0.76"},{"ID":"FBgn0015513","EGF_Baseline":"-1.36"},{"ID":"FBgn0050390","EGF_Baseline":"0.26"},{"ID":"FBgn0017590","EGF_Baseline":"0.41"},{"ID":"FBgn0027558","EGF_Baseline":"0.4"},{"ID":"FBgn0004646","EGF_Baseline":"0.83"},{"ID":"FBgn0031907","EGF_Baseline":"-1.29"},{"ID":"FBgn0020445","EGF_Baseline":"-0.97"},{"ID":"FBgn0033821","EGF_Baseline":"-0.94"},{"ID":"FBgn0037934","EGF_Baseline":"0.19"},{"ID":"FBgn0037129","EGF_Baseline":"-0.17"},{"ID":"FBgn0051704","EGF_Baseline":"-0.83"},{"ID":"FBgn0025807","EGF_Baseline":"-0.46"},{"ID":"FBgn0032779","EGF_Baseline":"1.62"},{"ID":"FBgn0039566","EGF_Baseline":"2.36"},{"ID":"FBgn0020257","EGF_Baseline":"-0.24"},{"ID":"FBgn0000039","EGF_Baseline":"0.86"},{"ID":"FBgn0031831","EGF_Baseline":"-1.21"},{"ID":"FBgn0034217","EGF_Baseline":"-0.45"},{"ID":"FBgn0010328","EGF_Baseline":"1.15"},{"ID":"FBgn0034439","EGF_Baseline":"-1.53"},{"ID":"FBgn0000337","EGF_Baseline":"0.95"},{"ID":"FBgn0086710","EGF_Baseline":"4.47"},{"ID":"FBgn0040705","EGF_Baseline":"-0.38"},{"ID":"FBgn0037746","EGF_Baseline":"-0.9"},{"ID":"FBgn0035109","EGF_Baseline":"-1.12"},{"ID":"FBgn0031979","EGF_Baseline":"-1.5"},{"ID":"FBgn0051677","EGF_Baseline":"0.16"},{"ID":"FBgn0034484","EGF_Baseline":"0.93"},{"ID":"FBgn0023534","EGF_Baseline":"-1.76"},{"ID":"FBgn0000179","EGF_Baseline":"-0.73"},{"ID":"FBgn0045474","EGF_Baseline":"-0.81"},{"ID":"FBgn0261055","EGF_Baseline":"-0.52"},{"ID":"FBgn0259225","EGF_Baseline":"2.22"},{"ID":"FBgn0030670","EGF_Baseline":"-0.58"},{"ID":"FBgn0050274","EGF_Baseline":"-0.85"},{"ID":"FBgn0033904","EGF_Baseline":"1.3"},{"ID":"FBgn0036591","EGF_Baseline":"-1.12"},{"ID":"FBgn0036987","EGF_Baseline":"0.73"},{"ID":"FBgn0040230","EGF_Baseline":"-0.64"},{"ID":"FBgn0032685","EGF_Baseline":"1.47"},{"ID":"FBgn0037831","EGF_Baseline":"-0.76"},{"ID":"FBgn0040104","EGF_Baseline":"0.83"},{"ID":"FBgn0034759","EGF_Baseline":"-0.83"},{"ID":"FBgn0038479","EGF_Baseline":"0.36"},{"ID":"FBgn0034436","EGF_Baseline":"-1.53"},{"ID":"FBgn0039941","EGF_Baseline":"-1.11"},{"ID":"FBgn0004066","EGF_Baseline":"0.75"},{"ID":"FBgn0039111","EGF_Baseline":"0.16"},{"ID":"FBgn0042103","EGF_Baseline":"-1.24"},{"ID":"FBgn0033661","EGF_Baseline":"-1.06"},{"ID":"FBgn0016754","EGF_Baseline":"0.31"},{"ID":"FBgn0011758","EGF_Baseline":"-0.21"},{"ID":"FBgn0034379","EGF_Baseline":"-1.28"},{"ID":"FBgn0013680","EGF_Baseline":"0.67"},{"ID":"FBgn0024234","EGF_Baseline":"1.44"},{"ID":"FBgn0034975","EGF_Baseline":"1.68"},{"ID":"FBgn0030721","EGF_Baseline":"0.84"},{"ID":"FBgn0031094","EGF_Baseline":"0.66"},{"ID":"FBgn0030462","EGF_Baseline":"-0.93"},{"ID":"FBgn0005775","EGF_Baseline":"0.27"},{"ID":"FBgn0046253","EGF_Baseline":"0.15"},{"ID":"FBgn0035265","EGF_Baseline":"1.39"},{"ID":"FBgn0004607","EGF_Baseline":"0.31"},{"ID":"FBgn0036218","EGF_Baseline":"-0.58"},{"ID":"FBgn0037758","EGF_Baseline":"1.02"},{"ID":"FBgn0037719","EGF_Baseline":"-1.38"},{"ID":"FBgn0039521","EGF_Baseline":"-1.3"},{"ID":"FBgn0031854","EGF_Baseline":"-0.28"},{"ID":"FBgn0036666","EGF_Baseline":"0.69"},{"ID":"FBgn0038252","EGF_Baseline":"1.14"},{"ID":"FBgn0030938","EGF_Baseline":"-1.17"},{"ID":"FBgn0051755","EGF_Baseline":"0.68"},{"ID":"FBgn0052271","EGF_Baseline":"0.25"},{"ID":"FBgn0024288","EGF_Baseline":"3.08"},{"ID":"FBgn0001216","EGF_Baseline":"3.23"},{"ID":"FBgn0261436","EGF_Baseline":"0.24"},{"ID":"FBgn0053319","EGF_Baseline":"-1.69"},{"ID":"FBgn0030864","EGF_Baseline":"-0.9"},{"ID":"FBgn0032485","EGF_Baseline":"-1.09"},{"ID":"FBgn0032612","EGF_Baseline":"0.07"},{"ID":"FBgn0005683","EGF_Baseline":"-1.33"},{"ID":"FBgn0039568","EGF_Baseline":"-1.03"},{"ID":"FBgn0051812","EGF_Baseline":"-1.88"},{"ID":"FBgn0033777","EGF_Baseline":"-0.88"},{"ID":"FBgn0038472","EGF_Baseline":"-0.94"},{"ID":"FBgn0034883","EGF_Baseline":"-0.21"},{"ID":"FBgn0032979","EGF_Baseline":"-1.92"},{"ID":"FBgn0037675","EGF_Baseline":"-2.15"},{"ID":"FBgn0032331","EGF_Baseline":"0.58"},{"ID":"FBgn0050284","EGF_Baseline":"-1.72"},{"ID":"FBgn0029856","EGF_Baseline":"10.12"},{"ID":"FBgn0053310","EGF_Baseline":"-1.33"},{"ID":"FBgn0031598","EGF_Baseline":"-0.68"},{"ID":"FBgn0031296","EGF_Baseline":"-0.67"},{"ID":"FBgn0043806","EGF_Baseline":"-0.24"},{"ID":"FBgn0010269","EGF_Baseline":"-1.19"},{"ID":"FBgn0036980","EGF_Baseline":"-0.63"},{"ID":"FBgn0052053","EGF_Baseline":"0.7"},{"ID":"FBgn0052198","EGF_Baseline":"-0.57"},{"ID":"FBgn0037057","EGF_Baseline":"1.77"},{"ID":"FBgn0031057","EGF_Baseline":"-0.62"},{"ID":"FBgn0053653","EGF_Baseline":"-0.71"},{"ID":"FBgn0053773","EGF_Baseline":"-1.36"},{"ID":"FBgn0085464","EGF_Baseline":"-0.35"},{"ID":"FBgn0032538","EGF_Baseline":"-0.35"},{"ID":"FBgn0030082","EGF_Baseline":"-1.35"},{"ID":"FBgn0039551","EGF_Baseline":"-1.2"},{"ID":"FBgn0039332","EGF_Baseline":"0.79"},{"ID":"FBgn0031673","EGF_Baseline":"-1.22"},{"ID":"FBgn0032820","EGF_Baseline":"-0.98"},{"ID":"FBgn0053926","EGF_Baseline":"-0.56"},{"ID":"FBgn0250819","EGF_Baseline":"-1.3"},{"ID":"FBgn0050429","EGF_Baseline":"0.74"},{"ID":"FBgn0085401","EGF_Baseline":"-1.3"},{"ID":"FBgn0035945","EGF_Baseline":"0.28"},{"ID":"FBgn0041225","EGF_Baseline":"1.37"},{"ID":"FBgn0036796","EGF_Baseline":"0.57"},{"ID":"FBgn0032734","EGF_Baseline":"-0.25"},{"ID":"FBgn0037383","EGF_Baseline":"0.5"},{"ID":"FBgn0028946","EGF_Baseline":"-1.97"},{"ID":"FBgn0030486","EGF_Baseline":"1.79"},{"ID":"FBgn0053107","EGF_Baseline":"-0.33"},{"ID":"FBgn0031250","EGF_Baseline":"-0.73"},{"ID":"FBgn0032596","EGF_Baseline":"1.42"},{"ID":"FBgn0015541","EGF_Baseline":"-1.38"},{"ID":"FBgn0033117","EGF_Baseline":"0.29"},{"ID":"FBgn0004359","EGF_Baseline":"-0.95"},{"ID":"FBgn0038274","EGF_Baseline":"-1.03"},{"ID":"FBgn0031169","EGF_Baseline":"-0.2"},{"ID":"FBgn0040239","EGF_Baseline":"0.67"},{"ID":"FBgn0028648","EGF_Baseline":"-2.13"},{"ID":"FBgn0039473","EGF_Baseline":"1.84"},{"ID":"FBgn0029878","EGF_Baseline":"-0.3"},{"ID":"FBgn0028426","EGF_Baseline":"-0.65"},{"ID":"FBgn0028888","EGF_Baseline":"-0.93"},{"ID":"FBgn0038240","EGF_Baseline":"-0.56"},{"ID":"FBgn0029552","EGF_Baseline":"1.13"},{"ID":"FBgn0036158","EGF_Baseline":"0.8"},{"ID":"FBgn0038149","EGF_Baseline":"0.6"},{"ID":"FBgn0032156","EGF_Baseline":"0.95"},{"ID":"FBgn0261113","EGF_Baseline":"-1.16"},{"ID":"FBgn0036974","EGF_Baseline":"0.77"},{"ID":"FBgn0037822","EGF_Baseline":"0.43"},{"ID":"FBgn0037999","EGF_Baseline":"1.07"},{"ID":"FBgn0004852","EGF_Baseline":"-1.15"},{"ID":"FBgn0030394","EGF_Baseline":"0.31"},{"ID":"FBgn0013812","EGF_Baseline":"1.44"},{"ID":"FBgn0035767","EGF_Baseline":"1.14"},{"ID":"FBgn0030926","EGF_Baseline":"0.69"},{"ID":"FBgn0039872","EGF_Baseline":"-1.7"},{"ID":"FBgn0034089","EGF_Baseline":"-2.04"},{"ID":"FBgn0034301","EGF_Baseline":"-0.58"},{"ID":"FBgn0030101","EGF_Baseline":"-0.73"},{"ID":"FBgn0045980","EGF_Baseline":"-0.85"},{"ID":"FBgn0015036","EGF_Baseline":"1.07"},{"ID":"FBgn0033196","EGF_Baseline":"-0.88"},{"ID":"FBgn0053193","EGF_Baseline":"-1.7"},{"ID":"FBgn0036273","EGF_Baseline":"0.45"},{"ID":"FBgn0261648","EGF_Baseline":"0.68"},{"ID":"FBgn0035232","EGF_Baseline":"-0.73"},{"ID":"FBgn0032348","EGF_Baseline":"1.18"},{"ID":"FBgn0028708","EGF_Baseline":"-0.71"},{"ID":"FBgn0031550","EGF_Baseline":"0.37"},{"ID":"FBgn0030522","EGF_Baseline":"-1.14"},{"ID":"FBgn0025815","EGF_Baseline":"0.87"},{"ID":"FBgn0038719","EGF_Baseline":"1.39"},{"ID":"FBgn0035943","EGF_Baseline":"-0.39"},{"ID":"FBgn0086895","EGF_Baseline":"-0.15"},{"ID":"FBgn0036818","EGF_Baseline":"2.11"},{"ID":"FBgn0038373","EGF_Baseline":"-0.86"},{"ID":"FBgn0033048","EGF_Baseline":"-0.91"},{"ID":"FBgn0003495","EGF_Baseline":"-0.46"},{"ID":"FBgn0035490","EGF_Baseline":"0.11"},{"ID":"FBgn0259231","EGF_Baseline":"-1.79"},{"ID":"FBgn0001942","EGF_Baseline":"4.03"},{"ID":"FBgn0033781","EGF_Baseline":"1.24"},{"ID":"FBgn0259167","EGF_Baseline":"0.39"},{"ID":"FBgn0042207","EGF_Baseline":"-0.78"},{"ID":"FBgn0261882","EGF_Baseline":"-1.06"},{"ID":"FBgn0015295","EGF_Baseline":"-1.49"},{"ID":"FBgn0034381","EGF_Baseline":"-0.91"},{"ID":"FBgn0023212","EGF_Baseline":"1.88"},{"ID":"FBgn0031689","EGF_Baseline":"-1.49"},{"ID":"FBgn0025830","EGF_Baseline":"-0.53"},{"ID":"FBgn0022942","EGF_Baseline":"-2.73"},{"ID":"FBgn0033421","EGF_Baseline":"1.21"},{"ID":"FBgn0035952","EGF_Baseline":"-2.98"},{"ID":"FBgn0041710","EGF_Baseline":"-1.61"},{"ID":"FBgn0038529","EGF_Baseline":"0.49"},{"ID":"FBgn0035006","EGF_Baseline":"-0.26"},{"ID":"FBgn0032847","EGF_Baseline":"0.8"},{"ID":"FBgn0005198","EGF_Baseline":"0.3"},{"ID":"FBgn0034578","EGF_Baseline":"0.79"},{"ID":"FBgn0025352","EGF_Baseline":"1.78"},{"ID":"FBgn0035876","EGF_Baseline":"-0.71"},{"ID":"FBgn0013995","EGF_Baseline":"-2.12"},{"ID":"FBgn0261020","EGF_Baseline":"-1.18"},{"ID":"FBgn0052365","EGF_Baseline":"1.06"},{"ID":"FBgn0039818","EGF_Baseline":"-0.77"},{"ID":"FBgn0039704","EGF_Baseline":"-1.46"},{"ID":"FBgn0050418","EGF_Baseline":"-1.63"},{"ID":"FBgn0037554","EGF_Baseline":"0.19"},{"ID":"FBgn0032381","EGF_Baseline":"-0.62"},{"ID":"FBgn0032763","EGF_Baseline":"0.42"},{"ID":"FBgn0053159","EGF_Baseline":"0.82"},{"ID":"FBgn0053508","EGF_Baseline":"1.13"},{"ID":"FBgn0037025","EGF_Baseline":"2.35"},{"ID":"FBgn0026059","EGF_Baseline":"-1.47"},{"ID":"FBgn0033751","EGF_Baseline":"0.64"},{"ID":"FBgn0020407","EGF_Baseline":"-1.43"},{"ID":"FBgn0020622","EGF_Baseline":"-0.77"},{"ID":"FBgn0261674","EGF_Baseline":"0.41"},{"ID":"FBgn0045471","EGF_Baseline":"0.28"},{"ID":"FBgn0031002","EGF_Baseline":"-0.83"},{"ID":"FBgn0013300","EGF_Baseline":"-0.78"},{"ID":"FBgn0038679","EGF_Baseline":"1.1"},{"ID":"FBgn0031629","EGF_Baseline":"-0.52"},{"ID":"FBgn0015374","EGF_Baseline":"-1.27"},{"ID":"FBgn0044050","EGF_Baseline":"0.82"},{"ID":"FBgn0013763","EGF_Baseline":"0.82"},{"ID":"FBgn0035622","EGF_Baseline":"1.41"},{"ID":"FBgn0029629","EGF_Baseline":"4.28"},{"ID":"FBgn0035709","EGF_Baseline":"0.38"},{"ID":"FBgn0052447","EGF_Baseline":"-1.29"},{"ID":"FBgn0028740","EGF_Baseline":"0.3"},{"ID":"FBgn0053095","EGF_Baseline":"0.26"},{"ID":"FBgn0037627","EGF_Baseline":"-0.12"},{"ID":"FBgn0038082","EGF_Baseline":"0.35"},{"ID":"FBgn0030278","EGF_Baseline":"0.95"},{"ID":"FBgn0036806","EGF_Baseline":"-0.59"},{"ID":"FBgn0031111","EGF_Baseline":"-0.58"},{"ID":"FBgn0005390","EGF_Baseline":"-1.2"},{"ID":"FBgn0036342","EGF_Baseline":"0.6"},{"ID":"FBgn0005631","EGF_Baseline":"-0.85"},{"ID":"FBgn0035110","EGF_Baseline":"1.46"},{"ID":"FBgn0031406","EGF_Baseline":"-0.68"},{"ID":"FBgn0035385","EGF_Baseline":"0.39"},{"ID":"FBgn0032827","EGF_Baseline":"-1.57"},{"ID":"FBgn0022800","EGF_Baseline":"-1.16"},{"ID":"FBgn0051091","EGF_Baseline":"-0.59"},{"ID":"FBgn0260482","EGF_Baseline":"-1.94"},{"ID":"FBgn0032289","EGF_Baseline":"0.68"},{"ID":"FBgn0050178","EGF_Baseline":"-0.47"},{"ID":"FBgn0029946","EGF_Baseline":"0.38"},{"ID":"FBgn0053126","EGF_Baseline":"0.68"},{"ID":"FBgn0005624","EGF_Baseline":"-0.8"},{"ID":"FBgn0032188","EGF_Baseline":"-1.28"},{"ID":"FBgn0046873","EGF_Baseline":"-1.05"},{"ID":"FBgn0040588","EGF_Baseline":"2.25"},{"ID":"FBgn0004595","EGF_Baseline":"-1.95"},{"ID":"FBgn0034769","EGF_Baseline":"-0.41"},{"ID":"FBgn0031214","EGF_Baseline":"1.06"},{"ID":"FBgn0031826","EGF_Baseline":"0.21"},{"ID":"FBgn0038073","EGF_Baseline":"0.35"},{"ID":"FBgn0010741","EGF_Baseline":"-1.44"},{"ID":"FBgn0053062","EGF_Baseline":"-1.44"},{"ID":"FBgn0038285","EGF_Baseline":"0.51"},{"ID":"FBgn0031815","EGF_Baseline":"1.35"},{"ID":"FBgn0002783","EGF_Baseline":"2.2"},{"ID":"FBgn0034878","EGF_Baseline":"-1.64"},{"ID":"FBgn0053230","EGF_Baseline":"-0.66"},{"ID":"FBgn0050197","EGF_Baseline":"-1.56"},{"ID":"FBgn0033724","EGF_Baseline":"0.66"},{"ID":"FBgn0032673","EGF_Baseline":"0.38"},{"ID":"FBgn0036648","EGF_Baseline":"-0.34"},{"ID":"FBgn0053145","EGF_Baseline":"-0.17"},{"ID":"FBgn0037411","EGF_Baseline":"1.14"},{"ID":"FBgn0051200","EGF_Baseline":"0.72"},{"ID":"FBgn0033322","EGF_Baseline":"-1.18"},{"ID":"FBgn0033785","EGF_Baseline":"-0.98"},{"ID":"FBgn0050099","EGF_Baseline":"-0.81"},{"ID":"FBgn0030591","EGF_Baseline":"1.41"},{"ID":"FBgn0028866","EGF_Baseline":"0.95"},{"ID":"FBgn0029094","EGF_Baseline":"-1.31"},{"ID":"FBgn0037622","EGF_Baseline":"0.91"},{"ID":"FBgn0037030","EGF_Baseline":"1.01"},{"ID":"FBgn0030854","EGF_Baseline":"-0.59"},{"ID":"FBgn0000504","EGF_Baseline":"0.43"},{"ID":"FBgn0062517","EGF_Baseline":"0.51"},{"ID":"FBgn0033257","EGF_Baseline":"-0.75"},{"ID":"FBgn0037007","EGF_Baseline":"-0.55"},{"ID":"FBgn0014865","EGF_Baseline":"0.86"},{"ID":"FBgn0030951","EGF_Baseline":"0.41"},{"ID":"FBgn0045442","EGF_Baseline":"-0.69"},{"ID":"FBgn0028871","EGF_Baseline":"-1.25"},{"ID":"FBgn0039932","EGF_Baseline":"0.88"},{"ID":"FBgn0040228","EGF_Baseline":"-0.84"},{"ID":"FBgn0034785","EGF_Baseline":"-1.05"},{"ID":"FBgn0027548","EGF_Baseline":"0.98"},{"ID":"FBgn0039411","EGF_Baseline":"0.94"},{"ID":"FBgn0002948","EGF_Baseline":"0.83"},{"ID":"FBgn0023515","EGF_Baseline":"-0.82"},{"ID":"FBgn0039244","EGF_Baseline":"0.89"},{"ID":"FBgn0050047","EGF_Baseline":"-0.46"},{"ID":"FBgn0034362","EGF_Baseline":"0.77"},{"ID":"FBgn0015561","EGF_Baseline":"0.67"},{"ID":"FBgn0038590","EGF_Baseline":"-1.07"},{"ID":"FBgn0035703","EGF_Baseline":"0.52"},{"ID":"FBgn0027521","EGF_Baseline":"0.41"},{"ID":"FBgn0033713","EGF_Baseline":"0.24"},{"ID":"FBgn0037730","EGF_Baseline":"0.87"},{"ID":"FBgn0037116","EGF_Baseline":"-1.11"},{"ID":"FBgn0020235","EGF_Baseline":"0.66"},{"ID":"FBgn0034972","EGF_Baseline":"-0.68"},{"ID":"FBgn0035091","EGF_Baseline":"-0.36"},{"ID":"FBgn0033413","EGF_Baseline":"-1"},{"ID":"FBgn0040843","EGF_Baseline":"-0.46"},{"ID":"FBgn0011705","EGF_Baseline":"-1.03"},{"ID":"FBgn0002526","EGF_Baseline":"-0.78"},{"ID":"FBgn0036282","EGF_Baseline":"-0.11"},{"ID":"FBgn0035024","EGF_Baseline":"-0.43"},{"ID":"FBgn0037254","EGF_Baseline":"1.07"},{"ID":"FBgn0015360","EGF_Baseline":"0.56"},{"ID":"FBgn0036193","EGF_Baseline":"-1.32"},{"ID":"FBgn0030183","EGF_Baseline":"0.39"},{"ID":"FBgn0064225","EGF_Baseline":"2.61"},{"ID":"FBgn0259834","EGF_Baseline":"-1.02"},{"ID":"FBgn0036671","EGF_Baseline":"0.34"},{"ID":"FBgn0000273","EGF_Baseline":"-0.82"},{"ID":"FBgn0036186","EGF_Baseline":"-0.46"},{"ID":"FBgn0051017","EGF_Baseline":"0.55"},{"ID":"FBgn0036801","EGF_Baseline":"0.92"},{"ID":"FBgn0037637","EGF_Baseline":"1.09"},{"ID":"FBgn0052459","EGF_Baseline":"-1.31"},{"ID":"FBgn0010391","EGF_Baseline":"-1.17"},{"ID":"FBgn0054001","EGF_Baseline":"0.86"},{"ID":"FBgn0011232","EGF_Baseline":"-0.26"},{"ID":"FBgn0035087","EGF_Baseline":"-0.24"},{"ID":"FBgn0013323","EGF_Baseline":"-0.64"},{"ID":"FBgn0060296","EGF_Baseline":"0.84"},{"ID":"FBgn0036020","EGF_Baseline":"-0.47"},{"ID":"FBgn0004047","EGF_Baseline":"-1.24"},{"ID":"FBgn0036466","EGF_Baseline":"1.8"},{"ID":"FBgn0035611","EGF_Baseline":"2.6"},{"ID":"FBgn0052452","EGF_Baseline":"-2.06"},{"ID":"FBgn0259680","EGF_Baseline":"-1.02"},{"ID":"FBgn0039178","EGF_Baseline":"1.28"},{"ID":"FBgn0035647","EGF_Baseline":"-1.35"},{"ID":"FBgn0031900","EGF_Baseline":"3.74"},{"ID":"FBgn0033592","EGF_Baseline":"-1.29"},{"ID":"FBgn0038007","EGF_Baseline":"-0.56"},{"ID":"FBgn0002607","EGF_Baseline":"6.91"},{"ID":"FBgn0028899","EGF_Baseline":"1.67"},{"ID":"FBgn0039730","EGF_Baseline":"-0.92"},{"ID":"FBgn0036920","EGF_Baseline":"-0.58"},{"ID":"FBgn0014931","EGF_Baseline":"0.6"},{"ID":"FBgn0034707","EGF_Baseline":"0.31"},{"ID":"FBgn0038666","EGF_Baseline":"-1.14"},{"ID":"FBgn0030296","EGF_Baseline":"0.63"},{"ID":"FBgn0038958","EGF_Baseline":"-0.76"},{"ID":"FBgn0038942","EGF_Baseline":"0.82"},{"ID":"FBgn0003134","EGF_Baseline":"-1.03"},{"ID":"FBgn0029964","EGF_Baseline":"0.9"},{"ID":"FBgn0034827","EGF_Baseline":"0.2"},{"ID":"FBgn0086266","EGF_Baseline":"0.17"},{"ID":"FBgn0002937","EGF_Baseline":"0.48"},{"ID":"FBgn0035249","EGF_Baseline":"1.03"},{"ID":"FBgn0259101","EGF_Baseline":"1.14"},{"ID":"FBgn0037229","EGF_Baseline":"0.52"},{"ID":"FBgn0026179","EGF_Baseline":"-0.9"},{"ID":"FBgn0000119","EGF_Baseline":"0.63"},{"ID":"FBgn0034071","EGF_Baseline":"-0.46"},{"ID":"FBgn0036014","EGF_Baseline":"-0.3"},{"ID":"FBgn0004838","EGF_Baseline":"-0.59"},{"ID":"FBgn0000317","EGF_Baseline":"0.94"},{"ID":"FBgn0040733","EGF_Baseline":"-0.27"},{"ID":"FBgn0030797","EGF_Baseline":"0.44"},{"ID":"FBgn0002622","EGF_Baseline":"3.1"},{"ID":"FBgn0031728","EGF_Baseline":"-1.1"},{"ID":"FBgn0033317","EGF_Baseline":"1.18"},{"ID":"FBgn0058006","EGF_Baseline":"-1.23"},{"ID":"FBgn0037354","EGF_Baseline":"-1.47"},{"ID":"FBgn0030089","EGF_Baseline":"-1.02"},{"ID":"FBgn0001215","EGF_Baseline":"-0.41"},{"ID":"FBgn0038643","EGF_Baseline":"1.15"},{"ID":"FBgn0030247","EGF_Baseline":"0.24"},{"ID":"FBgn0043825","EGF_Baseline":"-1.41"},{"ID":"FBgn0042137","EGF_Baseline":"-0.5"},{"ID":"FBgn0039209","EGF_Baseline":"0.58"},{"ID":"FBgn0029955","EGF_Baseline":"-1.75"},{"ID":"FBgn0039130","EGF_Baseline":"0.48"},{"ID":"FBgn0003308","EGF_Baseline":"0.25"},{"ID":"FBgn0036254","EGF_Baseline":"-0.92"},{"ID":"FBgn0051044","EGF_Baseline":"0.56"},{"ID":"FBgn0036621","EGF_Baseline":"-0.77"},{"ID":"FBgn0028583","EGF_Baseline":"-0.12"},{"ID":"FBgn0032775","EGF_Baseline":"0.73"},{"ID":"FBgn0033806","EGF_Baseline":"-0.47"},{"ID":"FBgn0032160","EGF_Baseline":"-0.89"},{"ID":"FBgn0250910","EGF_Baseline":"-1.43"},{"ID":"FBgn0042650","EGF_Baseline":"0.86"},{"ID":"FBgn0036733","EGF_Baseline":"4.95"},{"ID":"FBgn0030105","EGF_Baseline":"-0.32"},{"ID":"FBgn0036016","EGF_Baseline":"1.07"},{"ID":"FBgn0036471","EGF_Baseline":"1.58"},{"ID":"FBgn0032127","EGF_Baseline":"0.23"},{"ID":"FBgn0036703","EGF_Baseline":"0.88"},{"ID":"FBgn0001250","EGF_Baseline":"1.03"},{"ID":"FBgn0038887","EGF_Baseline":"-1.02"},{"ID":"FBgn0030608","EGF_Baseline":"-0.64"},{"ID":"FBgn0032670","EGF_Baseline":"-0.48"},{"ID":"FBgn0261705","EGF_Baseline":"-1.43"},{"ID":"FBgn0037553","EGF_Baseline":"-0.42"},{"ID":"FBgn0030097","EGF_Baseline":"-1.25"},{"ID":"FBgn0034803","EGF_Baseline":"0.6"},{"ID":"FBgn0028836","EGF_Baseline":"-1.52"},{"ID":"FBgn0032646","EGF_Baseline":"0.75"},{"ID":"FBgn0033468","EGF_Baseline":"0.67"},{"ID":"FBgn0024150","EGF_Baseline":"-1.25"},{"ID":"FBgn0032311","EGF_Baseline":"-0.56"},{"ID":"FBgn0031902","EGF_Baseline":"1.26"},{"ID":"FBgn0011642","EGF_Baseline":"-0.5"},{"ID":"FBgn0051493","EGF_Baseline":"-0.13"},{"ID":"FBgn0035704","EGF_Baseline":"1.67"},{"ID":"FBgn0051898","EGF_Baseline":"-0.84"},{"ID":"FBgn0031701","EGF_Baseline":"1.3"},{"ID":"FBgn0030317","EGF_Baseline":"-0.74"},{"ID":"FBgn0036978","EGF_Baseline":"-1.68"},{"ID":"FBgn0022986","EGF_Baseline":"-0.6"},{"ID":"FBgn0026400","EGF_Baseline":"0.81"},{"ID":"FBgn0038850","EGF_Baseline":"-0.45"},{"ID":"FBgn0260487","EGF_Baseline":"1.31"},{"ID":"FBgn0039733","EGF_Baseline":"-1.1"},{"ID":"FBgn0033787","EGF_Baseline":"-0.32"},{"ID":"FBgn0034989","EGF_Baseline":"0.95"},{"ID":"FBgn0052351","EGF_Baseline":"0.37"},{"ID":"FBgn0028833","EGF_Baseline":"0.38"},{"ID":"FBgn0085232","EGF_Baseline":"0.75"},{"ID":"FBgn0259683","EGF_Baseline":"-0.87"},{"ID":"FBgn0260428","EGF_Baseline":"-0.67"},{"ID":"FBgn0260444","EGF_Baseline":"0.66"},{"ID":"FBgn0034488","EGF_Baseline":"-0.61"},{"ID":"FBgn0020399","EGF_Baseline":"0.27"},{"ID":"FBgn0039816","EGF_Baseline":"0.4"},{"ID":"FBgn0030249","EGF_Baseline":"0.79"},{"ID":"FBgn0039611","EGF_Baseline":"0.93"},{"ID":"FBgn0023175","EGF_Baseline":"-0.91"},{"ID":"FBgn0052079","EGF_Baseline":"0.51"},{"ID":"FBgn0015929","EGF_Baseline":"0.39"},{"ID":"FBgn0033714","EGF_Baseline":"-1.42"},{"ID":"FBgn0034627","EGF_Baseline":"1.18"},{"ID":"FBgn0011281","EGF_Baseline":"0.91"},{"ID":"FBgn0010039","EGF_Baseline":"-1.83"},{"ID":"FBgn0000351","EGF_Baseline":"-0.77"},{"ID":"FBgn0037980","EGF_Baseline":"1.13"},{"ID":"FBgn0005779","EGF_Baseline":"-1.72"},{"ID":"FBgn0026324","EGF_Baseline":"-0.75"},{"ID":"FBgn0004404","EGF_Baseline":"3.75"},{"ID":"FBgn0030898","EGF_Baseline":"-1.3"},{"ID":"FBgn0031545","EGF_Baseline":"-1.32"},{"ID":"FBgn0087012","EGF_Baseline":"-0.1"},{"ID":"FBgn0031968","EGF_Baseline":"-0.87"},{"ID":"FBgn0260012","EGF_Baseline":"-1.35"},{"ID":"FBgn0035909","EGF_Baseline":"-0.48"},{"ID":"FBgn0261016","EGF_Baseline":"-1.23"},{"ID":"FBgn0033793","EGF_Baseline":"0.47"},{"ID":"FBgn0003507","EGF_Baseline":"0.24"},{"ID":"FBgn0037537","EGF_Baseline":"-1.15"},{"ID":"FBgn0051014","EGF_Baseline":"-1.22"},{"ID":"FBgn0015602","EGF_Baseline":"-1.07"},{"ID":"FBgn0029718","EGF_Baseline":"0.76"},{"ID":"FBgn0045469","EGF_Baseline":"-0.72"},{"ID":"FBgn0003249","EGF_Baseline":"-1.53"},{"ID":"FBgn0047092","EGF_Baseline":"-2.22"},{"ID":"FBgn0039413","EGF_Baseline":"0.72"},{"ID":"FBgn0040575","EGF_Baseline":"-1.5"},{"ID":"FBgn0020270","EGF_Baseline":"-0.57"},{"ID":"FBgn0042094","EGF_Baseline":"0.74"},{"ID":"FBgn0003062","EGF_Baseline":"3.73"},{"ID":"FBgn0032818","EGF_Baseline":"1.4"},{"ID":"FBgn0032135","EGF_Baseline":"1.13"},{"ID":"FBgn0085315","EGF_Baseline":"0.92"},{"ID":"FBgn0259244","EGF_Baseline":"1.43"},{"ID":"FBgn0038080","EGF_Baseline":"-0.32"},{"ID":"FBgn0010612","EGF_Baseline":"-1.75"},{"ID":"FBgn0053339","EGF_Baseline":"1.13"},{"ID":"FBgn0085257","EGF_Baseline":"-0.84"},{"ID":"FBgn0038891","EGF_Baseline":"-0.78"},{"ID":"FBgn0032689","EGF_Baseline":"0.28"},{"ID":"FBgn0029839","EGF_Baseline":"0.69"},{"ID":"FBgn0034841","EGF_Baseline":"-1.37"},{"ID":"FBgn0025837","EGF_Baseline":"0.66"},{"ID":"FBgn0051120","EGF_Baseline":"0.97"},{"ID":"FBgn0038005","EGF_Baseline":"1.11"},{"ID":"FBgn0033391","EGF_Baseline":"-1.27"},{"ID":"FBgn0050069","EGF_Baseline":"1.05"},{"ID":"FBgn0035313","EGF_Baseline":"-1.32"},{"ID":"FBgn0035299","EGF_Baseline":"-0.7"},{"ID":"FBgn0030167","EGF_Baseline":"1.16"},{"ID":"FBgn0051013","EGF_Baseline":"0.69"},{"ID":"FBgn0052412","EGF_Baseline":"0.41"},{"ID":"FBgn0040353","EGF_Baseline":"-0.65"},{"ID":"FBgn0035107","EGF_Baseline":"0.84"},{"ID":"FBgn0036317","EGF_Baseline":"-1.43"},{"ID":"FBgn0003714","EGF_Baseline":"-1.9"},{"ID":"FBgn0037228","EGF_Baseline":"0.42"},{"ID":"FBgn0261341","EGF_Baseline":"-1.64"},{"ID":"FBgn0029506","EGF_Baseline":"-1.39"},{"ID":"FBgn0033315","EGF_Baseline":"-1.1"},{"ID":"FBgn0011706","EGF_Baseline":"1.82"},{"ID":"FBgn0051363","EGF_Baseline":"1.16"},{"ID":"FBgn0042213","EGF_Baseline":"1.93"},{"ID":"FBgn0032863","EGF_Baseline":"2.18"},{"ID":"FBgn0030482","EGF_Baseline":"0.92"},{"ID":"FBgn0029950","EGF_Baseline":"0.54"},{"ID":"FBgn0050075","EGF_Baseline":"1.26"},{"ID":"FBgn0050090","EGF_Baseline":"-2.76"},{"ID":"FBgn0003138","EGF_Baseline":"1.07"},{"ID":"FBgn0034493","EGF_Baseline":"0.37"},{"ID":"FBgn0003961","EGF_Baseline":"-1.98"},{"ID":"FBgn0035207","EGF_Baseline":"-0.94"},{"ID":"FBgn0045073","EGF_Baseline":"0.76"},{"ID":"FBgn0033753","EGF_Baseline":"2.09"},{"ID":"FBgn0050034","EGF_Baseline":"1.21"},{"ID":"FBgn0051406","EGF_Baseline":"1.31"},{"ID":"FBgn0035111","EGF_Baseline":"0.93"},{"ID":"FBgn0034321","EGF_Baseline":"1.38"},{"ID":"FBgn0031721","EGF_Baseline":"-2.01"},{"ID":"FBgn0031395","EGF_Baseline":"-1.44"},{"ID":"FBgn0051536","EGF_Baseline":"-1.63"},{"ID":"FBgn0011239","EGF_Baseline":"-0.58"},{"ID":"FBgn0260436","EGF_Baseline":"-1.73"},{"ID":"FBgn0010265","EGF_Baseline":"4.49"},{"ID":"FBgn0038110","EGF_Baseline":"0.21"},{"ID":"FBgn0029810","EGF_Baseline":"0.57"},{"ID":"FBgn0013811","EGF_Baseline":"1.51"},{"ID":"FBgn0037368","EGF_Baseline":"-0.66"},{"ID":"FBgn0039466","EGF_Baseline":"-0.65"},{"ID":"FBgn0036948","EGF_Baseline":"0.09"},{"ID":"FBgn0023514","EGF_Baseline":"1.33"},{"ID":"FBgn0031737","EGF_Baseline":"0.4"},{"ID":"FBgn0261606","EGF_Baseline":"4.26"},{"ID":"FBgn0035097","EGF_Baseline":"-0.68"},{"ID":"FBgn0027084","EGF_Baseline":"1.97"},{"ID":"FBgn0085405","EGF_Baseline":"0.4"},{"ID":"FBgn0035868","EGF_Baseline":"0.3"},{"ID":"FBgn0052404","EGF_Baseline":"0.59"},{"ID":"FBgn0031213","EGF_Baseline":"0.14"},{"ID":"FBgn0025808","EGF_Baseline":"-0.71"},{"ID":"FBgn0046113","EGF_Baseline":"-0.83"},{"ID":"FBgn0027660","EGF_Baseline":"-0.3"},{"ID":"FBgn0031501","EGF_Baseline":"-0.95"},{"ID":"FBgn0035036","EGF_Baseline":"1.26"},{"ID":"FBgn0035140","EGF_Baseline":"1.2"},{"ID":"FBgn0030952","EGF_Baseline":"-1.62"},{"ID":"FBgn0036805","EGF_Baseline":"0.42"},{"ID":"FBgn0041630","EGF_Baseline":"-0.39"},{"ID":"FBgn0033491","EGF_Baseline":"-1.2"},{"ID":"FBgn0037446","EGF_Baseline":"1.1"},{"ID":"FBgn0011747","EGF_Baseline":"-0.31"},{"ID":"FBgn0030268","EGF_Baseline":"-1.57"},{"ID":"FBgn0034481","EGF_Baseline":"0.98"},{"ID":"FBgn0054029","EGF_Baseline":"-1.09"},{"ID":"FBgn0032551","EGF_Baseline":"1.18"},{"ID":"FBgn0032022","EGF_Baseline":"1.45"},{"ID":"FBgn0035481","EGF_Baseline":"-1.19"},{"ID":"FBgn0259821","EGF_Baseline":"-0.58"},{"ID":"FBgn0030711","EGF_Baseline":"1.25"},{"ID":"FBgn0034198","EGF_Baseline":"-0.89"},{"ID":"FBgn0037028","EGF_Baseline":"0.48"},{"ID":"FBgn0031611","EGF_Baseline":"2.02"},{"ID":"FBgn0026061","EGF_Baseline":"-1.18"},{"ID":"FBgn0028857","EGF_Baseline":"0.99"},{"ID":"FBgn0024897","EGF_Baseline":"-0.69"},{"ID":"FBgn0032723","EGF_Baseline":"-2.13"},{"ID":"FBgn0032143","EGF_Baseline":"0.76"},{"ID":"FBgn0038144","EGF_Baseline":"-0.54"},{"ID":"FBgn0052036","EGF_Baseline":"1.74"},{"ID":"FBgn0035154","EGF_Baseline":"0.59"},{"ID":"FBgn0003886","EGF_Baseline":"1.9"},{"ID":"FBgn0053303","EGF_Baseline":"-0.97"},{"ID":"FBgn0040928","EGF_Baseline":"1.22"},{"ID":"FBgn0033354","EGF_Baseline":"-1.02"},{"ID":"FBgn0046763","EGF_Baseline":"0.34"},{"ID":"FBgn0039965","EGF_Baseline":"1.74"},{"ID":"FBgn0067779","EGF_Baseline":"-1.39"},{"ID":"FBgn0039478","EGF_Baseline":"-0.67"},{"ID":"FBgn0051438","EGF_Baseline":"1"},{"ID":"FBgn0003378","EGF_Baseline":"-0.53"},{"ID":"FBgn0001965","EGF_Baseline":"-3.36"},{"ID":"FBgn0053109","EGF_Baseline":"-1.56"},{"ID":"FBgn0010403","EGF_Baseline":"0.67"},{"ID":"FBgn0021873","EGF_Baseline":"1.31"},{"ID":"FBgn0038798","EGF_Baseline":"-1.6"},{"ID":"FBgn0000280","EGF_Baseline":"-1.74"},{"ID":"FBgn0000318","EGF_Baseline":"0.08"},{"ID":"FBgn0040684","EGF_Baseline":"-1.06"},{"ID":"FBgn0027599","EGF_Baseline":"0.97"},{"ID":"FBgn0032663","EGF_Baseline":"-0.47"},{"ID":"FBgn0033589","EGF_Baseline":"-2.65"},{"ID":"FBgn0044011","EGF_Baseline":"-1.05"},{"ID":"FBgn0039728","EGF_Baseline":"-0.91"},{"ID":"FBgn0052074","EGF_Baseline":"-1.25"},{"ID":"FBgn0033422","EGF_Baseline":"0.47"},{"ID":"FBgn0011802","EGF_Baseline":"-1.66"},{"ID":"FBgn0051821","EGF_Baseline":"0.26"},{"ID":"FBgn0259227","EGF_Baseline":"-0.38"},{"ID":"FBgn0034566","EGF_Baseline":"-0.91"},{"ID":"FBgn0027490","EGF_Baseline":"-0.92"},{"ID":"FBgn0038697","EGF_Baseline":"-0.3"},{"ID":"FBgn0261119","EGF_Baseline":"0.48"},{"ID":"FBgn0032741","EGF_Baseline":"-1.19"},{"ID":"FBgn0260941","EGF_Baseline":"-0.65"},{"ID":"FBgn0033874","EGF_Baseline":"-1.04"},{"ID":"FBgn0031961","EGF_Baseline":"-1.12"},{"ID":"FBgn0031708","EGF_Baseline":"0.84"},{"ID":"FBgn0029915","EGF_Baseline":"-0.6"},{"ID":"FBgn0027590","EGF_Baseline":"0.88"},{"ID":"FBgn0260407","EGF_Baseline":"1.1"},{"ID":"FBgn0032252","EGF_Baseline":"-1.23"},{"ID":"FBgn0015546","EGF_Baseline":"-1.65"},{"ID":"FBgn0033890","EGF_Baseline":"0.41"},{"ID":"FBgn0030300","EGF_Baseline":"1.52"},{"ID":"FBgn0024320","EGF_Baseline":"-0.19"},{"ID":"FBgn0038651","EGF_Baseline":"-0.92"},{"ID":"FBgn0027496","EGF_Baseline":"1.44"},{"ID":"FBgn0010607","EGF_Baseline":"-0.98"},{"ID":"FBgn0001091","EGF_Baseline":"-1.48"},{"ID":"FBgn0021742","EGF_Baseline":"0.47"},{"ID":"FBgn0260859","EGF_Baseline":"-0.08"},{"ID":"FBgn0022936","EGF_Baseline":"-0.52"},{"ID":"FBgn0003124","EGF_Baseline":"1.12"},{"ID":"FBgn0033149","EGF_Baseline":"0.44"},{"ID":"FBgn0002921","EGF_Baseline":"1.33"},{"ID":"FBgn0030090","EGF_Baseline":"-1.57"},{"ID":"FBgn0037937","EGF_Baseline":"-0.49"},{"ID":"FBgn0003499","EGF_Baseline":"1.48"},{"ID":"FBgn0037296","EGF_Baseline":"-1.77"},{"ID":"FBgn0052111","EGF_Baseline":"-1.4"},{"ID":"FBgn0011274","EGF_Baseline":"0.98"},{"ID":"FBgn0036499","EGF_Baseline":"-0.86"},{"ID":"FBgn0038311","EGF_Baseline":"-0.56"},{"ID":"FBgn0037623","EGF_Baseline":"-0.95"},{"ID":"FBgn0053531","EGF_Baseline":"1.32"},{"ID":"FBgn0000064","EGF_Baseline":"0.49"},{"ID":"FBgn0038431","EGF_Baseline":"0.71"},{"ID":"FBgn0083960","EGF_Baseline":"0.49"},{"ID":"FBgn0033112","EGF_Baseline":"-1.79"},{"ID":"FBgn0030931","EGF_Baseline":"-0.24"},{"ID":"FBgn0052511","EGF_Baseline":"-0.75"},{"ID":"FBgn0038772","EGF_Baseline":"-1.19"},{"ID":"FBgn0034755","EGF_Baseline":"-0.96"},{"ID":"FBgn0028662","EGF_Baseline":"-0.89"},{"ID":"FBgn0027088","EGF_Baseline":"-0.73"},{"ID":"FBgn0032693","EGF_Baseline":"-1.57"},{"ID":"FBgn0041241","EGF_Baseline":"1.08"},{"ID":"FBgn0052732","EGF_Baseline":"0.71"},{"ID":"FBgn0045063","EGF_Baseline":"1.67"},{"ID":"FBgn0050044","EGF_Baseline":"1.27"},{"ID":"FBgn0025820","EGF_Baseline":"0.54"},{"ID":"FBgn0036921","EGF_Baseline":"-0.99"},{"ID":"FBgn0031000","EGF_Baseline":"1.41"},{"ID":"FBgn0037713","EGF_Baseline":"0.51"},{"ID":"FBgn0029830","EGF_Baseline":"0.62"},{"ID":"FBgn0052847","EGF_Baseline":"1.25"},{"ID":"FBgn0038365","EGF_Baseline":"1.06"},{"ID":"FBgn0030467","EGF_Baseline":"0.91"},{"ID":"FBgn0053468","EGF_Baseline":"0.67"},{"ID":"FBgn0038087","EGF_Baseline":"0.18"},{"ID":"FBgn0032793","EGF_Baseline":"0.7"},{"ID":"FBgn0037836","EGF_Baseline":"-0.84"},{"ID":"FBgn0034438","EGF_Baseline":"-1.58"},{"ID":"FBgn0038129","EGF_Baseline":"0.49"},{"ID":"FBgn0032519","EGF_Baseline":"-1.57"},{"ID":"FBgn0033302","EGF_Baseline":"1.86"},{"ID":"FBgn0083919","EGF_Baseline":"-1.86"},{"ID":"FBgn0031835","EGF_Baseline":"-0.93"},{"ID":"FBgn0035040","EGF_Baseline":"1.06"},{"ID":"FBgn0034322","EGF_Baseline":"-1.24"},{"ID":"FBgn0000326","EGF_Baseline":"1.19"},{"ID":"FBgn0085229","EGF_Baseline":"-0.57"},{"ID":"FBgn0031190","EGF_Baseline":"-0.64"},{"ID":"FBgn0000038","EGF_Baseline":"1.15"},{"ID":"FBgn0039085","EGF_Baseline":"-1.45"},{"ID":"FBgn0050381","EGF_Baseline":"0.81"},{"ID":"FBgn0052282","EGF_Baseline":"-0.42"},{"ID":"FBgn0034433","EGF_Baseline":"-0.97"},{"ID":"FBgn0033529","EGF_Baseline":"-0.58"},{"ID":"FBgn0052199","EGF_Baseline":"0.15"},{"ID":"FBgn0029887","EGF_Baseline":"0.45"},{"ID":"FBgn0051560","EGF_Baseline":"-1.82"},{"ID":"FBgn0038478","EGF_Baseline":"-0.64"},{"ID":"FBgn0014869","EGF_Baseline":"-0.19"},{"ID":"FBgn0038279","EGF_Baseline":"-0.92"},{"ID":"FBgn0035047","EGF_Baseline":"-0.23"},{"ID":"FBgn0002564","EGF_Baseline":"0.49"},{"ID":"FBgn0050263","EGF_Baseline":"-4.48"},{"ID":"FBgn0030309","EGF_Baseline":"-1.31"},{"ID":"FBgn0036897","EGF_Baseline":"-0.63"},{"ID":"FBgn0039930","EGF_Baseline":"0.73"},{"ID":"FBgn0035479","EGF_Baseline":"-1.04"},{"ID":"FBgn0052190","EGF_Baseline":"-1.06"},{"ID":"FBgn0004603","EGF_Baseline":"-0.66"},{"ID":"FBgn0003890","EGF_Baseline":"1.33"},{"ID":"FBgn0039562","EGF_Baseline":"1.25"},{"ID":"FBgn0051958","EGF_Baseline":"-1.47"},{"ID":"FBgn0028947","EGF_Baseline":"-1.45"},{"ID":"FBgn0085457","EGF_Baseline":"0.85"},{"ID":"FBgn0026170","EGF_Baseline":"-1.77"},{"ID":"FBgn0042105","EGF_Baseline":"-1.19"},{"ID":"FBgn0030202","EGF_Baseline":"-1.15"},{"ID":"FBgn0024179","EGF_Baseline":"-0.85"},{"ID":"FBgn0027872","EGF_Baseline":"-1.56"},{"ID":"FBgn0020251","EGF_Baseline":"-1.15"},{"ID":"FBgn0053156","EGF_Baseline":"-1.59"},{"ID":"FBgn0054057","EGF_Baseline":"-1.9"},{"ID":"FBgn0031314","EGF_Baseline":"0.51"},{"ID":"FBgn0050338","EGF_Baseline":"0.91"},{"ID":"FBgn0038209","EGF_Baseline":"-1.4"},{"ID":"FBgn0032169","EGF_Baseline":"-1.56"},{"ID":"FBgn0000636","EGF_Baseline":"1.16"},{"ID":"FBgn0015298","EGF_Baseline":"-0.49"},{"ID":"FBgn0035643","EGF_Baseline":"1.06"},{"ID":"FBgn0030364","EGF_Baseline":"-0.72"},{"ID":"FBgn0037810","EGF_Baseline":"1.37"},{"ID":"FBgn0004429","EGF_Baseline":"-1.03"},{"ID":"FBgn0051146","EGF_Baseline":"-2.11"},{"ID":"FBgn0002878","EGF_Baseline":"-0.42"},{"ID":"FBgn0034998","EGF_Baseline":"0.04"},{"ID":"FBgn0030291","EGF_Baseline":"-0.59"},{"ID":"FBgn0053218","EGF_Baseline":"-1.75"},{"ID":"FBgn0034722","EGF_Baseline":"0.61"},{"ID":"FBgn0003328","EGF_Baseline":"1.82"},{"ID":"FBgn0032495","EGF_Baseline":"-1.13"},{"ID":"FBgn0001147","EGF_Baseline":"-2.15"},{"ID":"FBgn0002673","EGF_Baseline":"-0.52"},{"ID":"FBgn0030449","EGF_Baseline":"-0.42"},{"ID":"FBgn0031597","EGF_Baseline":"-0.88"},{"ID":"FBgn0032886","EGF_Baseline":"-0.5"},{"ID":"FBgn0261089","EGF_Baseline":"-1.18"},{"ID":"FBgn0036659","EGF_Baseline":"-1.19"},{"ID":"FBgn0051870","EGF_Baseline":"-0.52"},{"ID":"FBgn0051961","EGF_Baseline":"-0.75"},{"ID":"FBgn0036106","EGF_Baseline":"-1.97"},{"ID":"FBgn0031188","EGF_Baseline":"-0.94"},{"ID":"FBgn0037526","EGF_Baseline":"0.68"},{"ID":"FBgn0043470","EGF_Baseline":"-1.47"},{"ID":"FBgn0034650","EGF_Baseline":"-0.95"},{"ID":"FBgn0039870","EGF_Baseline":"-1.26"},{"ID":"FBgn0034187","EGF_Baseline":"-0.22"},{"ID":"FBgn0085239","EGF_Baseline":"-1.39"},{"ID":"FBgn0030638","EGF_Baseline":"-0.46"},{"ID":"FBgn0051321","EGF_Baseline":"1.33"},{"ID":"FBgn0034419","EGF_Baseline":"-1.53"},{"ID":"FBgn0037321","EGF_Baseline":"0.09"},{"ID":"FBgn0038236","EGF_Baseline":"-1.08"},{"ID":"FBgn0032299","EGF_Baseline":"-1.24"},{"ID":"FBgn0050419","EGF_Baseline":"2.67"},{"ID":"FBgn0038074","EGF_Baseline":"0.59"},{"ID":"FBgn0035592","EGF_Baseline":"0.62"},{"ID":"FBgn0031759","EGF_Baseline":"0.79"},{"ID":"FBgn0036714","EGF_Baseline":"-0.69"},{"ID":"FBgn0050015","EGF_Baseline":"1.07"},{"ID":"FBgn0053096","EGF_Baseline":"0.81"},{"ID":"FBgn0053087","EGF_Baseline":"-0.89"},{"ID":"FBgn0259794","EGF_Baseline":"-2.03"},{"ID":"FBgn0042712","EGF_Baseline":"0.44"},{"ID":"FBgn0016698","EGF_Baseline":"1.58"},{"ID":"FBgn0260659","EGF_Baseline":"1.18"},{"ID":"FBgn0030617","EGF_Baseline":"-1.66"},{"ID":"FBgn0033481","EGF_Baseline":"-1.72"},{"ID":"FBgn0002932","EGF_Baseline":"-1.02"},{"ID":"FBgn0026085","EGF_Baseline":"0.42"},{"ID":"FBgn0037788","EGF_Baseline":"0.6"},{"ID":"FBgn0034352","EGF_Baseline":"0.19"},{"ID":"FBgn0085556","EGF_Baseline":"1.02"},{"ID":"FBgn0030386","EGF_Baseline":"-1.29"},{"ID":"FBgn0029726","EGF_Baseline":"0.89"},{"ID":"FBgn0261611","EGF_Baseline":"0.89"},{"ID":"FBgn0035293","EGF_Baseline":"0.51"},{"ID":"FBgn0052246","EGF_Baseline":"-0.42"},{"ID":"FBgn0037857","EGF_Baseline":"0.8"},{"ID":"FBgn0063497","EGF_Baseline":"0.97"},{"ID":"FBgn0030800","EGF_Baseline":"-0.65"},{"ID":"FBgn0035439","EGF_Baseline":"-1"},{"ID":"FBgn0030283","EGF_Baseline":"-0.75"},{"ID":"FBgn0031850","EGF_Baseline":"0.4"},{"ID":"FBgn0037304","EGF_Baseline":"-2.25"},{"ID":"FBgn0052755","EGF_Baseline":"0.45"},{"ID":"FBgn0001139","EGF_Baseline":"-1.32"},{"ID":"FBgn0034010","EGF_Baseline":"-1.19"},{"ID":"FBgn0040271","EGF_Baseline":"0.64"},{"ID":"FBgn0052544","EGF_Baseline":"-0.99"},{"ID":"FBgn0034602","EGF_Baseline":"-0.5"},{"ID":"FBgn0261555","EGF_Baseline":"-1.3"},{"ID":"FBgn0035328","EGF_Baseline":"-1.09"},{"ID":"FBgn0043783","EGF_Baseline":"-1.02"},{"ID":"FBgn0023496","EGF_Baseline":"0.25"},{"ID":"FBgn0017551","EGF_Baseline":"1.66"},{"ID":"FBgn0015300","EGF_Baseline":"0.74"},{"ID":"FBgn0044809","EGF_Baseline":"0.67"},{"ID":"FBgn0013673","EGF_Baseline":"-1.29"},{"ID":"FBgn0030164","EGF_Baseline":"0.61"},{"ID":"FBgn0036598","EGF_Baseline":"1.42"},{"ID":"FBgn0030605","EGF_Baseline":"0.81"},{"ID":"FBgn0000618","EGF_Baseline":"-0.54"},{"ID":"FBgn0004387","EGF_Baseline":"-3.12"},{"ID":"FBgn0038016","EGF_Baseline":"-4.45"},{"ID":"FBgn0036433","EGF_Baseline":"-1.19"},{"ID":"FBgn0052554","EGF_Baseline":"-0.51"},{"ID":"FBgn0051164","EGF_Baseline":"-0.49"},{"ID":"FBgn0030647","EGF_Baseline":"0.69"},{"ID":"FBgn0030331","EGF_Baseline":"-1.12"},{"ID":"FBgn0042102","EGF_Baseline":"1.46"},{"ID":"FBgn0000146","EGF_Baseline":"1.29"},{"ID":"FBgn0040729","EGF_Baseline":"0.25"},{"ID":"FBgn0054024","EGF_Baseline":"-0.37"},{"ID":"FBgn0033842","EGF_Baseline":"1.01"},{"ID":"FBgn0000414","EGF_Baseline":"-0.95"},{"ID":"FBgn0038745","EGF_Baseline":"-0.99"},{"ID":"FBgn0041231","EGF_Baseline":"-1.37"},{"ID":"FBgn0045486","EGF_Baseline":"1.89"},{"ID":"FBgn0033039","EGF_Baseline":"-0.79"},{"ID":"FBgn0086408","EGF_Baseline":"0.48"},{"ID":"FBgn0031636","EGF_Baseline":"-0.57"},{"ID":"FBgn0032955","EGF_Baseline":"0.77"},{"ID":"FBgn0020258","EGF_Baseline":"-1.56"},{"ID":"FBgn0036440","EGF_Baseline":"-1.83"},{"ID":"FBgn0023001","EGF_Baseline":"0.29"},{"ID":"FBgn0038980","EGF_Baseline":"1.28"},{"ID":"FBgn0033364","EGF_Baseline":"-0.65"},{"ID":"FBgn0035416","EGF_Baseline":"1.77"},{"ID":"FBgn0086686","EGF_Baseline":"-0.94"},{"ID":"FBgn0031981","EGF_Baseline":"0.5"},{"ID":"FBgn0041711","EGF_Baseline":"-0.5"},{"ID":"FBgn0035281","EGF_Baseline":"-0.35"},{"ID":"FBgn0261261","EGF_Baseline":"-1.66"},{"ID":"FBgn0044810","EGF_Baseline":"0.29"},{"ID":"FBgn0030929","EGF_Baseline":"0.51"},{"ID":"FBgn0063667","EGF_Baseline":"-0.45"},{"ID":"FBgn0052533","EGF_Baseline":"1.89"},{"ID":"FBgn0259961","EGF_Baseline":"0.89"},{"ID":"FBgn0030645","EGF_Baseline":"-0.93"},{"ID":"FBgn0039315","EGF_Baseline":"-0.17"},{"ID":"FBgn0035088","EGF_Baseline":"2.36"},{"ID":"FBgn0036916","EGF_Baseline":"1.28"},{"ID":"FBgn0011206","EGF_Baseline":"1.74"},{"ID":"FBgn0033708","EGF_Baseline":"-2.07"},{"ID":"FBgn0039306","EGF_Baseline":"1.92"},{"ID":"FBgn0039298","EGF_Baseline":"-0.73"},{"ID":"FBgn0011661","EGF_Baseline":"-0.37"},{"ID":"FBgn0032602","EGF_Baseline":"-0.31"},{"ID":"FBgn0030663","EGF_Baseline":"-0.1"},{"ID":"FBgn0020912","EGF_Baseline":"1.57"},{"ID":"FBgn0042092","EGF_Baseline":"-0.74"},{"ID":"FBgn0015926","EGF_Baseline":"-0.95"},{"ID":"FBgn0039291","EGF_Baseline":"-0.67"},{"ID":"FBgn0036544","EGF_Baseline":"0.9"},{"ID":"FBgn0032225","EGF_Baseline":"-0.44"},{"ID":"FBgn0000276","EGF_Baseline":"0.8"},{"ID":"FBgn0034513","EGF_Baseline":"0.45"},{"ID":"FBgn0031403","EGF_Baseline":"-0.56"},{"ID":"FBgn0030272","EGF_Baseline":"0.1"},{"ID":"FBgn0025390","EGF_Baseline":"-1.5"},{"ID":"FBgn0028336","EGF_Baseline":"-2.64"},{"ID":"FBgn0038530","EGF_Baseline":"-1.19"},{"ID":"FBgn0034135","EGF_Baseline":"1.26"},{"ID":"FBgn0003204","EGF_Baseline":"1.8"},{"ID":"FBgn0032192","EGF_Baseline":"-1.13"},{"ID":"FBgn0053471","EGF_Baseline":"0.55"},{"ID":"FBgn0053679","EGF_Baseline":"-1.59"},{"ID":"FBgn0013762","EGF_Baseline":"-0.24"},{"ID":"FBgn0032484","EGF_Baseline":"-1.35"},{"ID":"FBgn0030716","EGF_Baseline":"0.61"},{"ID":"FBgn0030178","EGF_Baseline":"0.22"},{"ID":"FBgn0086367","EGF_Baseline":"-0.25"},{"ID":"FBgn0027836","EGF_Baseline":"-0.93"},{"ID":"FBgn0259194","EGF_Baseline":"-0.51"},{"ID":"FBgn0038702","EGF_Baseline":"-1.23"},{"ID":"FBgn0034938","EGF_Baseline":"-1.38"},{"ID":"FBgn0038519","EGF_Baseline":"-1.26"},{"ID":"FBgn0085298","EGF_Baseline":"-0.06"},{"ID":"FBgn0001137","EGF_Baseline":"0.67"},{"ID":"FBgn0033749","EGF_Baseline":"1.67"},{"ID":"FBgn0003209","EGF_Baseline":"-1.63"},{"ID":"FBgn0024728","EGF_Baseline":"0.49"},{"ID":"FBgn0035380","EGF_Baseline":"-1.14"},{"ID":"FBgn0027549","EGF_Baseline":"-0.9"},{"ID":"FBgn0039738","EGF_Baseline":"0.79"},{"ID":"FBgn0053302","EGF_Baseline":"0.35"},{"ID":"FBgn0026058","EGF_Baseline":"-0.9"},{"ID":"FBgn0034243","EGF_Baseline":"1.56"},{"ID":"FBgn0036511","EGF_Baseline":"0.84"},{"ID":"FBgn0030811","EGF_Baseline":"1.04"},{"ID":"FBgn0029827","EGF_Baseline":"-0.24"},{"ID":"FBgn0003450","EGF_Baseline":"0.23"},{"ID":"FBgn0032719","EGF_Baseline":"-1.29"},{"ID":"FBgn0033443","EGF_Baseline":"-0.55"},{"ID":"FBgn0004106","EGF_Baseline":"2.33"},{"ID":"FBgn0039527","EGF_Baseline":"-1.49"},{"ID":"FBgn0037973","EGF_Baseline":"0.61"},{"ID":"FBgn0032973","EGF_Baseline":"-0.44"},{"ID":"FBgn0026397","EGF_Baseline":"-1.37"},{"ID":"FBgn0030826","EGF_Baseline":"-0.16"},{"ID":"FBgn0027619","EGF_Baseline":"-1.3"},{"ID":"FBgn0030344","EGF_Baseline":"1.17"},{"ID":"FBgn0040989","EGF_Baseline":"1.42"},{"ID":"FBgn0040796","EGF_Baseline":"-0.86"},{"ID":"FBgn0035078","EGF_Baseline":"0.86"},{"ID":"FBgn0035805","EGF_Baseline":"0.39"},{"ID":"FBgn0010438","EGF_Baseline":"0.86"},{"ID":"FBgn0086909","EGF_Baseline":"-2.22"},{"ID":"FBgn0036964","EGF_Baseline":"-0.66"},{"ID":"FBgn0051524","EGF_Baseline":"-1.73"},{"ID":"FBgn0013773","EGF_Baseline":"-0.11"},{"ID":"FBgn0261556","EGF_Baseline":"-1.86"},{"ID":"FBgn0051357","EGF_Baseline":"-0.42"},{"ID":"FBgn0039771","EGF_Baseline":"-0.75"},{"ID":"FBgn0013308","EGF_Baseline":"-1.01"},{"ID":"FBgn0005660","EGF_Baseline":"-0.39"},{"ID":"FBgn0037468","EGF_Baseline":"1.31"},{"ID":"FBgn0085433","EGF_Baseline":"1.03"},{"ID":"FBgn0032209","EGF_Baseline":"-0.93"},{"ID":"FBgn0035455","EGF_Baseline":"-0.89"},{"ID":"FBgn0038296","EGF_Baseline":"-1.03"},{"ID":"FBgn0026570","EGF_Baseline":"0.24"},{"ID":"FBgn0052669","EGF_Baseline":"2.43"},{"ID":"FBgn0031216","EGF_Baseline":"-1.64"},{"ID":"FBgn0001269","EGF_Baseline":"-1.12"},{"ID":"FBgn0036670","EGF_Baseline":"-1.38"},{"ID":"FBgn0053192","EGF_Baseline":"1.16"},{"ID":"FBgn0015772","EGF_Baseline":"0.85"},{"ID":"FBgn0027868","EGF_Baseline":"4.29"},{"ID":"FBgn0039639","EGF_Baseline":"-0.99"},{"ID":"FBgn0011277","EGF_Baseline":"-0.89"},{"ID":"FBgn0035670","EGF_Baseline":"-0.33"},{"ID":"FBgn0039886","EGF_Baseline":"-0.79"},{"ID":"FBgn0036031","EGF_Baseline":"0.54"},{"ID":"FBgn0037250","EGF_Baseline":"0.77"},{"ID":"FBgn0033183","EGF_Baseline":"0.31"},{"ID":"FBgn0029067","EGF_Baseline":"-1.39"},{"ID":"FBgn0031333","EGF_Baseline":"0.57"},{"ID":"FBgn0030352","EGF_Baseline":"-0.76"},{"ID":"FBgn0034558","EGF_Baseline":"2.03"},{"ID":"FBgn0000709","EGF_Baseline":"0.93"},{"ID":"FBgn0045761","EGF_Baseline":"-1.67"},{"ID":"FBgn0261570","EGF_Baseline":"-1.14"},{"ID":"FBgn0050488","EGF_Baseline":"-1.51"},{"ID":"FBgn0033570","EGF_Baseline":"0.61"},{"ID":"FBgn0031283","EGF_Baseline":"-0.97"},{"ID":"FBgn0015024","EGF_Baseline":"0.29"},{"ID":"FBgn0038993","EGF_Baseline":"-1.51"},{"ID":"FBgn0038161","EGF_Baseline":"-0.22"},{"ID":"FBgn0037581","EGF_Baseline":"-1.44"},{"ID":"FBgn0034277","EGF_Baseline":"-0.79"},{"ID":"FBgn0038494","EGF_Baseline":"-0.74"},{"ID":"FBgn0010747","EGF_Baseline":"-1.17"},{"ID":"FBgn0035090","EGF_Baseline":"0.95"},{"ID":"FBgn0039655","EGF_Baseline":"-1.19"},{"ID":"FBgn0050410","EGF_Baseline":"-1.57"},{"ID":"FBgn0014396","EGF_Baseline":"0.39"},{"ID":"FBgn0000556","EGF_Baseline":"0.57"},{"ID":"FBgn0005616","EGF_Baseline":"-0.62"},{"ID":"FBgn0035568","EGF_Baseline":"1.75"},{"ID":"FBgn0259185","EGF_Baseline":"1.01"},{"ID":"FBgn0031134","EGF_Baseline":"-0.6"},{"ID":"FBgn0003009","EGF_Baseline":"-1.78"},{"ID":"FBgn0083990","EGF_Baseline":"0.28"},{"ID":"FBgn0036505","EGF_Baseline":"-0.75"},{"ID":"FBgn0063649","EGF_Baseline":"-1.52"},{"ID":"FBgn0001230","EGF_Baseline":"-0.83"},{"ID":"FBgn0032811","EGF_Baseline":"-0.73"},{"ID":"FBgn0028687","EGF_Baseline":"-2.49"},{"ID":"FBgn0038924","EGF_Baseline":"-1.25"},{"ID":"FBgn0019830","EGF_Baseline":"-1.01"},{"ID":"FBgn0031876","EGF_Baseline":"-1.74"},{"ID":"FBgn0003423","EGF_Baseline":"-0.55"},{"ID":"FBgn0023519","EGF_Baseline":"-1.03"},{"ID":"FBgn0053512","EGF_Baseline":"10.78"},{"ID":"FBgn0037345","EGF_Baseline":"-1.1"},{"ID":"FBgn0034744","EGF_Baseline":"-0.77"},{"ID":"FBgn0033591","EGF_Baseline":"-1.26"},{"ID":"FBgn0050411","EGF_Baseline":"-0.94"},{"ID":"FBgn0051266","EGF_Baseline":"-0.86"},{"ID":"FBgn0015282","EGF_Baseline":"-2.41"},{"ID":"FBgn0034061","EGF_Baseline":"0.34"},{"ID":"FBgn0086904","EGF_Baseline":"-0.71"},{"ID":"FBgn0032213","EGF_Baseline":"0.66"},{"ID":"FBgn0052475","EGF_Baseline":"1.31"},{"ID":"FBgn0039007","EGF_Baseline":"-0.3"},{"ID":"FBgn0026415","EGF_Baseline":"1.32"},{"ID":"FBgn0028900","EGF_Baseline":"0.98"},{"ID":"FBgn0039376","EGF_Baseline":"0.35"},{"ID":"FBgn0033087","EGF_Baseline":"0.87"},{"ID":"FBgn0037430","EGF_Baseline":"-0.92"},{"ID":"FBgn0027585","EGF_Baseline":"1.86"},{"ID":"FBgn0035621","EGF_Baseline":"-1.93"},{"ID":"FBgn0041623","EGF_Baseline":"-0.96"},{"ID":"FBgn0036990","EGF_Baseline":"-0.5"},{"ID":"FBgn0053493","EGF_Baseline":"0.46"},{"ID":"FBgn0053170","EGF_Baseline":"1.32"},{"ID":"FBgn0027565","EGF_Baseline":"-0.4"},{"ID":"FBgn0038213","EGF_Baseline":"-2.17"},{"ID":"FBgn0051223","EGF_Baseline":"1.26"},{"ID":"FBgn0040341","EGF_Baseline":"-0.69"},{"ID":"FBgn0030015","EGF_Baseline":"0.37"},{"ID":"FBgn0035213","EGF_Baseline":"-1.33"},{"ID":"FBgn0051644","EGF_Baseline":"-1.64"},{"ID":"FBgn0034576","EGF_Baseline":"-0.69"},{"ID":"FBgn0036145","EGF_Baseline":"0.58"},{"ID":"FBgn0035434","EGF_Baseline":"-0.21"},{"ID":"FBgn0038469","EGF_Baseline":"0.43"},{"ID":"FBgn0035916","EGF_Baseline":"-1.32"},{"ID":"FBgn0015035","EGF_Baseline":"0.97"},{"ID":"FBgn0035543","EGF_Baseline":"-0.97"},{"ID":"FBgn0032424","EGF_Baseline":"0.25"},{"ID":"FBgn0052484","EGF_Baseline":"-1.75"},{"ID":"FBgn0046247","EGF_Baseline":"-1.6"},{"ID":"FBgn0030963","EGF_Baseline":"1.78"},{"ID":"FBgn0052792","EGF_Baseline":"1.39"},{"ID":"FBgn0033737","EGF_Baseline":"-0.2"},{"ID":"FBgn0036118","EGF_Baseline":"-1.01"},{"ID":"FBgn0028954","EGF_Baseline":"-1.92"},{"ID":"FBgn0086347","EGF_Baseline":"-1.24"},{"ID":"FBgn0033062","EGF_Baseline":"-2.23"},{"ID":"FBgn0040828","EGF_Baseline":"-0.15"},{"ID":"FBgn0086911","EGF_Baseline":"-1.71"},{"ID":"FBgn0044049","EGF_Baseline":"1.16"},{"ID":"FBgn0031114","EGF_Baseline":"0.42"},{"ID":"FBgn0035532","EGF_Baseline":"-0.73"},{"ID":"FBgn0250746","EGF_Baseline":"-0.54"},{"ID":"FBgn0039348","EGF_Baseline":"0.63"},{"ID":"FBgn0086445","EGF_Baseline":"-1.25"},{"ID":"FBgn0052024","EGF_Baseline":"-0.25"},{"ID":"FBgn0032582","EGF_Baseline":"-1.64"},{"ID":"FBgn0051777","EGF_Baseline":"0.86"},{"ID":"FBgn0031871","EGF_Baseline":"-0.39"},{"ID":"FBgn0036328","EGF_Baseline":"-0.66"},{"ID":"FBgn0029535","EGF_Baseline":"-1.28"},{"ID":"FBgn0046887","EGF_Baseline":"0.92"},{"ID":"FBgn0037288","EGF_Baseline":"1.8"},{"ID":"FBgn0053233","EGF_Baseline":"1.21"},{"ID":"FBgn0038122","EGF_Baseline":"-0.99"},{"ID":"FBgn0031732","EGF_Baseline":"-1.98"},{"ID":"FBgn0010051","EGF_Baseline":"-0.47"},{"ID":"FBgn0024993","EGF_Baseline":"0.17"},{"ID":"FBgn0039553","EGF_Baseline":"-0.87"},{"ID":"FBgn0031764","EGF_Baseline":"-1.31"},{"ID":"FBgn0036299","EGF_Baseline":"0.47"},{"ID":"FBgn0034054","EGF_Baseline":"-1.5"},{"ID":"FBgn0051076","EGF_Baseline":"-1.02"},{"ID":"FBgn0030734","EGF_Baseline":"0.6"},{"ID":"FBgn0030431","EGF_Baseline":"0.88"},{"ID":"FBgn0031036","EGF_Baseline":"-1.71"},{"ID":"FBgn0085331","EGF_Baseline":"-0.81"},{"ID":"FBgn0052698","EGF_Baseline":"-1.5"},{"ID":"FBgn0031434","EGF_Baseline":"0.77"},{"ID":"FBgn0036180","EGF_Baseline":"-0.81"},{"ID":"FBgn0033798","EGF_Baseline":"-0.61"},{"ID":"FBgn0036603","EGF_Baseline":"0.97"},{"ID":"FBgn0051549","EGF_Baseline":"1.02"},{"ID":"FBgn0001259","EGF_Baseline":"-1.4"},{"ID":"FBgn0028699","EGF_Baseline":"0.61"},{"ID":"FBgn0250754","EGF_Baseline":"-0.38"},{"ID":"FBgn0051459","EGF_Baseline":"1.16"},{"ID":"FBgn0029783","EGF_Baseline":"-0.9"},{"ID":"FBgn0085431","EGF_Baseline":"-0.9"},{"ID":"FBgn0033701","EGF_Baseline":"-0.93"},{"ID":"FBgn0039494","EGF_Baseline":"4"},{"ID":"FBgn0028669","EGF_Baseline":"0.97"},{"ID":"FBgn0031808","EGF_Baseline":"-0.99"},{"ID":"FBgn0053056","EGF_Baseline":"-1.13"},{"ID":"FBgn0031608","EGF_Baseline":"-0.9"},{"ID":"FBgn0029817","EGF_Baseline":"-0.67"},{"ID":"FBgn0030630","EGF_Baseline":"-0.63"},{"ID":"FBgn0026380","EGF_Baseline":"-0.25"},{"ID":"FBgn0027287","EGF_Baseline":"-0.31"},{"ID":"FBgn0029754","EGF_Baseline":"-1.21"},{"ID":"FBgn0042696","EGF_Baseline":"-1.79"},{"ID":"FBgn0037939","EGF_Baseline":"-0.85"},{"ID":"FBgn0037402","EGF_Baseline":"-0.21"},{"ID":"FBgn0032588","EGF_Baseline":"-0.33"},{"ID":"FBgn0039829","EGF_Baseline":"0.8"},{"ID":"FBgn0031992","EGF_Baseline":"-1.46"},{"ID":"FBgn0034126","EGF_Baseline":"1.07"},{"ID":"FBgn0031803","EGF_Baseline":"0.88"},{"ID":"FBgn0031777","EGF_Baseline":"1.2"},{"ID":"FBgn0052302","EGF_Baseline":"-0.35"},{"ID":"FBgn0035603","EGF_Baseline":"0.82"},{"ID":"FBgn0037783","EGF_Baseline":"0.09"},{"ID":"FBgn0020767","EGF_Baseline":"0.5"},{"ID":"FBgn0022246","EGF_Baseline":"-0.99"},{"ID":"FBgn0259918","EGF_Baseline":"-1.2"},{"ID":"FBgn0030478","EGF_Baseline":"1.51"},{"ID":"FBgn0031441","EGF_Baseline":"1.4"},{"ID":"FBgn0000591","EGF_Baseline":"0.63"},{"ID":"FBgn0037684","EGF_Baseline":"-0.91"},{"ID":"FBgn0259112","EGF_Baseline":"-0.8"},{"ID":"FBgn0030554","EGF_Baseline":"-1.46"},{"ID":"FBgn0085309","EGF_Baseline":"-2.11"},{"ID":"FBgn0083959","EGF_Baseline":"-2.37"},{"ID":"FBgn0052250","EGF_Baseline":"-1.48"},{"ID":"FBgn0050371","EGF_Baseline":"-0.82"},{"ID":"FBgn0052445","EGF_Baseline":"1.83"},{"ID":"FBgn0030005","EGF_Baseline":"-1.19"},{"ID":"FBgn0039139","EGF_Baseline":"-0.69"},{"ID":"FBgn0038869","EGF_Baseline":"2.33"},{"ID":"FBgn0025806","EGF_Baseline":"-1.84"},{"ID":"FBgn0037405","EGF_Baseline":"-1.71"},{"ID":"FBgn0004598","EGF_Baseline":"1.04"},{"ID":"FBgn0032525","EGF_Baseline":"-1.63"},{"ID":"FBgn0036323","EGF_Baseline":"-0.05"},{"ID":"FBgn0083986","EGF_Baseline":"11.31"},{"ID":"FBgn0039180","EGF_Baseline":"0.77"},{"ID":"FBgn0030777","EGF_Baseline":"-1.67"},{"ID":"FBgn0250835","EGF_Baseline":"1.58"},{"ID":"FBgn0039799","EGF_Baseline":"1.36"},{"ID":"FBgn0032376","EGF_Baseline":"0.31"},{"ID":"FBgn0030945","EGF_Baseline":"0.75"},{"ID":"FBgn0034540","EGF_Baseline":"-1.93"},{"ID":"FBgn0036857","EGF_Baseline":"-0.37"},{"ID":"FBgn0260987","EGF_Baseline":"-1.74"},{"ID":"FBgn0035791","EGF_Baseline":"1.58"},{"ID":"FBgn0034595","EGF_Baseline":"-0.15"},{"ID":"FBgn0050181","EGF_Baseline":"-1"},{"ID":"FBgn0052588","EGF_Baseline":"0.28"},{"ID":"FBgn0035782","EGF_Baseline":"-0.8"},{"ID":"FBgn0023129","EGF_Baseline":"1.95"},{"ID":"FBgn0039621","EGF_Baseline":"-0.92"},{"ID":"FBgn0037633","EGF_Baseline":"-0.52"},{"ID":"FBgn0031821","EGF_Baseline":"0.4"},{"ID":"FBgn0052750","EGF_Baseline":"-0.35"},{"ID":"FBgn0041581","EGF_Baseline":"0.51"},{"ID":"FBgn0034457","EGF_Baseline":"0.32"},{"ID":"FBgn0031266","EGF_Baseline":"4.85"},{"ID":"FBgn0030991","EGF_Baseline":"-0.46"},{"ID":"FBgn0033185","EGF_Baseline":"-0.59"},{"ID":"FBgn0014092","EGF_Baseline":"0.35"},{"ID":"FBgn0010516","EGF_Baseline":"-0.84"},{"ID":"FBgn0058178","EGF_Baseline":"0.88"},{"ID":"FBgn0033879","EGF_Baseline":"0.97"},{"ID":"FBgn0037647","EGF_Baseline":"-0.9"},{"ID":"FBgn0032503","EGF_Baseline":"-0.9"},{"ID":"FBgn0031895","EGF_Baseline":"0.56"},{"ID":"FBgn0010314","EGF_Baseline":"-0.8"},{"ID":"FBgn0036765","EGF_Baseline":"0.57"},{"ID":"FBgn0051148","EGF_Baseline":"-0.43"},{"ID":"FBgn0013987","EGF_Baseline":"-1.09"},{"ID":"FBgn0053631","EGF_Baseline":"-0.33"},{"ID":"FBgn0020305","EGF_Baseline":"-0.91"},{"ID":"FBgn0033130","EGF_Baseline":"-0.82"},{"ID":"FBgn0050447","EGF_Baseline":"-0.57"},{"ID":"FBgn0028685","EGF_Baseline":"-0.26"},{"ID":"FBgn0028490","EGF_Baseline":"-2.23"},{"ID":"FBgn0004087","EGF_Baseline":"-0.77"},{"ID":"FBgn0259174","EGF_Baseline":"-1.54"},{"ID":"FBgn0259238","EGF_Baseline":"-1.36"},{"ID":"FBgn0034768","EGF_Baseline":"-0.75"},{"ID":"FBgn0000629","EGF_Baseline":"0.66"},{"ID":"FBgn0260768","EGF_Baseline":"0.36"},{"ID":"FBgn0030794","EGF_Baseline":"1.17"},{"ID":"FBgn0051204","EGF_Baseline":"-1.38"},{"ID":"FBgn0036005","EGF_Baseline":"1.36"},{"ID":"FBgn0029507","EGF_Baseline":"-1.21"},{"ID":"FBgn0085326","EGF_Baseline":"-1.13"},{"ID":"FBgn0011817","EGF_Baseline":"-1.88"},{"ID":"FBgn0085288","EGF_Baseline":"-0.95"},{"ID":"FBgn0086134","EGF_Baseline":"-1.08"},{"ID":"FBgn0083938","EGF_Baseline":"-1.82"},{"ID":"FBgn0036732","EGF_Baseline":"-1.72"},{"ID":"FBgn0030540","EGF_Baseline":"-0.85"},{"ID":"FBgn0031142","EGF_Baseline":"1.42"},{"ID":"FBgn0261259","EGF_Baseline":"-1.55"},{"ID":"FBgn0030671","EGF_Baseline":"-0.6"},{"ID":"FBgn0032446","EGF_Baseline":"0.63"},{"ID":"FBgn0033273","EGF_Baseline":"-0.91"},{"ID":"FBgn0002528","EGF_Baseline":"-0.9"},{"ID":"FBgn0036617","EGF_Baseline":"-1.33"},{"ID":"FBgn0029590","EGF_Baseline":"0.52"},{"ID":"FBgn0040376","EGF_Baseline":"-0.8"},{"ID":"FBgn0033015","EGF_Baseline":"1.32"},{"ID":"FBgn0033241","EGF_Baseline":"-0.72"},{"ID":"FBgn0020620","EGF_Baseline":"1.01"},{"ID":"FBgn0035692","EGF_Baseline":"-0.17"},{"ID":"FBgn0034956","EGF_Baseline":"-0.85"},{"ID":"FBgn0030587","EGF_Baseline":"1.24"},{"ID":"FBgn0261284","EGF_Baseline":"0.68"},{"ID":"FBgn0053172","EGF_Baseline":"0.64"},{"ID":"FBgn0034534","EGF_Baseline":"-1.4"},{"ID":"FBgn0004876","EGF_Baseline":"-1.18"},{"ID":"FBgn0033115","EGF_Baseline":"-1.09"},{"ID":"FBgn0035772","EGF_Baseline":"-0.6"},{"ID":"FBgn0035858","EGF_Baseline":"0.63"},{"ID":"FBgn0031531","EGF_Baseline":"-0.94"},{"ID":"FBgn0038512","EGF_Baseline":"-0.27"},{"ID":"FBgn0027605","EGF_Baseline":"-0.98"},{"ID":"FBgn0036246","EGF_Baseline":"0.27"},{"ID":"FBgn0030318","EGF_Baseline":"-1.37"},{"ID":"FBgn0036179","EGF_Baseline":"-1.83"},{"ID":"FBgn0031322","EGF_Baseline":"0.91"},{"ID":"FBgn0036547","EGF_Baseline":"-1.82"},{"ID":"FBgn0039075","EGF_Baseline":"-1.76"},{"ID":"FBgn0031752","EGF_Baseline":"0.47"},{"ID":"FBgn0034646","EGF_Baseline":"-2.03"},{"ID":"FBgn0002733","EGF_Baseline":"-0.64"},{"ID":"FBgn0002577","EGF_Baseline":"0.41"},{"ID":"FBgn0034876","EGF_Baseline":"-0.89"},{"ID":"FBgn0050349","EGF_Baseline":"-0.89"},{"ID":"FBgn0051157","EGF_Baseline":"0.77"},{"ID":"FBgn0030993","EGF_Baseline":"-0.53"},{"ID":"FBgn0058042","EGF_Baseline":"0.88"},{"ID":"FBgn0038436","EGF_Baseline":"-1.44"},{"ID":"FBgn0039664","EGF_Baseline":"-1.03"},{"ID":"FBgn0027529","EGF_Baseline":"-0.59"},{"ID":"FBgn0014849","EGF_Baseline":"-0.48"},{"ID":"FBgn0038631","EGF_Baseline":"0.89"},{"ID":"FBgn0030770","EGF_Baseline":"-0.48"},{"ID":"FBgn0034761","EGF_Baseline":"-1.03"},{"ID":"FBgn0038388","EGF_Baseline":"-1.22"},{"ID":"FBgn0027535","EGF_Baseline":"0.14"},{"ID":"FBgn0029882","EGF_Baseline":"-1.15"},{"ID":"FBgn0052695","EGF_Baseline":"-0.7"},{"ID":"FBgn0034221","EGF_Baseline":"-1.98"},{"ID":"FBgn0029728","EGF_Baseline":"0.8"},{"ID":"FBgn0035139","EGF_Baseline":"1.24"},{"ID":"FBgn0000054","EGF_Baseline":"-0.74"},{"ID":"FBgn0041186","EGF_Baseline":"1.1"},{"ID":"FBgn0067311","EGF_Baseline":"-0.78"},{"ID":"FBgn0039208","EGF_Baseline":"0.64"},{"ID":"FBgn0028526","EGF_Baseline":"-0.44"},{"ID":"FBgn0051244","EGF_Baseline":"-1.96"},{"ID":"FBgn0036702","EGF_Baseline":"-1.28"},{"ID":"FBgn0032751","EGF_Baseline":"-0.79"},{"ID":"FBgn0029685","EGF_Baseline":"-1.16"},{"ID":"FBgn0050384","EGF_Baseline":"-1.4"},{"ID":"FBgn0035358","EGF_Baseline":"-1.2"},{"ID":"FBgn0039671","EGF_Baseline":"-0.85"},{"ID":"FBgn0037144","EGF_Baseline":"-1.17"},{"ID":"FBgn0029523","EGF_Baseline":"-1.46"},{"ID":"FBgn0053454","EGF_Baseline":"0.71"},{"ID":"FBgn0261046","EGF_Baseline":"0.69"},{"ID":"FBgn0026239","EGF_Baseline":"1.02"},{"ID":"FBgn0051697","EGF_Baseline":"-0.85"},{"ID":"FBgn0027091","EGF_Baseline":"-1.53"},{"ID":"FBgn0033998","EGF_Baseline":"-2.4"},{"ID":"FBgn0031070","EGF_Baseline":"-1.44"},{"ID":"FBgn0034476","EGF_Baseline":"-1.75"},{"ID":"FBgn0029769","EGF_Baseline":"-1.73"},{"ID":"FBgn0005677","EGF_Baseline":"1.33"},{"ID":"FBgn0001321","EGF_Baseline":"0.74"},{"ID":"FBgn0035429","EGF_Baseline":"0.11"},{"ID":"FBgn0036654","EGF_Baseline":"1.11"},{"ID":"FBgn0036610","EGF_Baseline":"-1.22"},{"ID":"FBgn0024958","EGF_Baseline":"0.4"},{"ID":"FBgn0011584","EGF_Baseline":"0.42"},{"ID":"FBgn0038221","EGF_Baseline":"-0.85"},{"ID":"FBgn0037589","EGF_Baseline":"-1.23"},{"ID":"FBgn0032358","EGF_Baseline":"0.19"},{"ID":"FBgn0010803","EGF_Baseline":"-1.55"},{"ID":"FBgn0039217","EGF_Baseline":"-0.28"},{"ID":"FBgn0035364","EGF_Baseline":"1.64"},{"ID":"FBgn0040297","EGF_Baseline":"1.51"},{"ID":"FBgn0031986","EGF_Baseline":"-0.8"},{"ID":"FBgn0039237","EGF_Baseline":"0.68"},{"ID":"FBgn0031893","EGF_Baseline":"-1.09"},{"ID":"FBgn0038183","EGF_Baseline":"-1.18"},{"ID":"FBgn0040290","EGF_Baseline":"-0.77"},{"ID":"FBgn0038018","EGF_Baseline":"-0.44"},{"ID":"FBgn0033827","EGF_Baseline":"-0.59"},{"ID":"FBgn0039676","EGF_Baseline":"-0.69"},{"ID":"FBgn0020389","EGF_Baseline":"-0.62"},{"ID":"FBgn0259147","EGF_Baseline":"-1.44"},{"ID":"FBgn0036428","EGF_Baseline":"-0.82"},{"ID":"FBgn0053481","EGF_Baseline":"-1.12"},{"ID":"FBgn0036141","EGF_Baseline":"-1.89"},{"ID":"FBgn0085374","EGF_Baseline":"-0.99"},{"ID":"FBgn0032247","EGF_Baseline":"1.57"},{"ID":"FBgn0036824","EGF_Baseline":"-1.57"},{"ID":"FBgn0037501","EGF_Baseline":"0.89"},{"ID":"FBgn0037108","EGF_Baseline":"-0.4"},{"ID":"FBgn0036490","EGF_Baseline":"1.54"},{"ID":"FBgn0020618","EGF_Baseline":"-1.32"},{"ID":"FBgn0041105","EGF_Baseline":"-0.61"},{"ID":"FBgn0040252","EGF_Baseline":"0.34"},{"ID":"FBgn0037011","EGF_Baseline":"-1.77"},{"ID":"FBgn0034903","EGF_Baseline":"4.11"},{"ID":"FBgn0032124","EGF_Baseline":"-1.24"},{"ID":"FBgn0031824","EGF_Baseline":"1.32"},{"ID":"FBgn0035539","EGF_Baseline":"-1.41"},{"ID":"FBgn0005533","EGF_Baseline":"3.49"},{"ID":"FBgn0037003","EGF_Baseline":"0.68"},{"ID":"FBgn0032040","EGF_Baseline":"0.9"},{"ID":"FBgn0036410","EGF_Baseline":"-1.96"},{"ID":"FBgn0038708","EGF_Baseline":"-0.99"},{"ID":"FBgn0031128","EGF_Baseline":"-1"},{"ID":"FBgn0053116","EGF_Baseline":"1.49"},{"ID":"FBgn0011559","EGF_Baseline":"1.24"},{"ID":"FBgn0052463","EGF_Baseline":"-0.99"},{"ID":"FBgn0033906","EGF_Baseline":"0.33"},{"ID":"FBgn0037678","EGF_Baseline":"-1.35"},{"ID":"FBgn0038424","EGF_Baseline":"-0.32"},{"ID":"FBgn0034665","EGF_Baseline":"-0.7"},{"ID":"FBgn0039282","EGF_Baseline":"6.83"},{"ID":"FBgn0052762","EGF_Baseline":"-0.89"},{"ID":"FBgn0024352","EGF_Baseline":"-0.24"},{"ID":"FBgn0050495","EGF_Baseline":"1.06"},{"ID":"FBgn0037993","EGF_Baseline":"0.81"},{"ID":"FBgn0004110","EGF_Baseline":"0.75"},{"ID":"FBgn0024293","EGF_Baseline":"0.3"},{"ID":"FBgn0039722","EGF_Baseline":"-1.03"},{"ID":"FBgn0015040","EGF_Baseline":"-0.88"},{"ID":"FBgn0040628","EGF_Baseline":"1.7"},{"ID":"FBgn0023479","EGF_Baseline":"1.04"},{"ID":"FBgn0051388","EGF_Baseline":"-0.16"},{"ID":"FBgn0031186","EGF_Baseline":"-1.31"},{"ID":"FBgn0000043","EGF_Baseline":"0.62"},{"ID":"FBgn0031940","EGF_Baseline":"-1.54"},{"ID":"FBgn0037422","EGF_Baseline":"-1.83"},{"ID":"FBgn0050364","EGF_Baseline":"-0.72"},{"ID":"FBgn0037539","EGF_Baseline":"-0.79"},{"ID":"FBgn0032981","EGF_Baseline":"0.56"},{"ID":"FBgn0038539","EGF_Baseline":"-1.53"},{"ID":"FBgn0051636","EGF_Baseline":"-1.19"},{"ID":"FBgn0027348","EGF_Baseline":"2.02"},{"ID":"FBgn0051184","EGF_Baseline":"-0.49"},{"ID":"FBgn0030121","EGF_Baseline":"0.42"},{"ID":"FBgn0029924","EGF_Baseline":"0.63"},{"ID":"FBgn0024943","EGF_Baseline":"0.03"},{"ID":"FBgn0004394","EGF_Baseline":"1.53"},{"ID":"FBgn0032625","EGF_Baseline":"1.07"},{"ID":"FBgn0051659","EGF_Baseline":"1.84"},{"ID":"FBgn0039507","EGF_Baseline":"-0.64"},{"ID":"FBgn0035610","EGF_Baseline":"-0.78"},{"ID":"FBgn0036094","EGF_Baseline":"5.42"},{"ID":"FBgn0027515","EGF_Baseline":"-1.23"},{"ID":"FBgn0030459","EGF_Baseline":"-1.06"},{"ID":"FBgn0053640","EGF_Baseline":"0.66"},{"ID":"FBgn0038947","EGF_Baseline":"-1.19"},{"ID":"FBgn0011554","EGF_Baseline":"-1.2"},{"ID":"FBgn0261813","EGF_Baseline":"-1.71"},{"ID":"FBgn0035617","EGF_Baseline":"-0.85"},{"ID":"FBgn0034294","EGF_Baseline":"-1.42"},{"ID":"FBgn0031469","EGF_Baseline":"1.15"},{"ID":"FBgn0085302","EGF_Baseline":"-1.56"},{"ID":"FBgn0037128","EGF_Baseline":"-1.29"},{"ID":"FBgn0028926","EGF_Baseline":"-0.48"},{"ID":"FBgn0028424","EGF_Baseline":"-1.74"},{"ID":"FBgn0024330","EGF_Baseline":"2.1"},{"ID":"FBgn0016053","EGF_Baseline":"0.52"},{"ID":"FBgn0033856","EGF_Baseline":"-1.33"},{"ID":"FBgn0026371","EGF_Baseline":"-0.74"},{"ID":"FBgn0000477","EGF_Baseline":"0.44"},{"ID":"FBgn0032276","EGF_Baseline":"0.04"},{"ID":"FBgn0035852","EGF_Baseline":"-0.72"},{"ID":"FBgn0062978","EGF_Baseline":"-1.44"},{"ID":"FBgn0039849","EGF_Baseline":"-1.67"},{"ID":"FBgn0032804","EGF_Baseline":"0.89"},{"ID":"FBgn0036995","EGF_Baseline":"-1.71"},{"ID":"FBgn0038464","EGF_Baseline":"2.13"},{"ID":"FBgn0036794","EGF_Baseline":"-0.6"},{"ID":"FBgn0051832","EGF_Baseline":"0.47"},{"ID":"FBgn0259168","EGF_Baseline":"-0.54"},{"ID":"FBgn0015553","EGF_Baseline":"-1.27"},{"ID":"FBgn0041195","EGF_Baseline":"1.43"},{"ID":"FBgn0051647","EGF_Baseline":"0.78"},{"ID":"FBgn0053124","EGF_Baseline":"-0.73"},{"ID":"FBgn0038901","EGF_Baseline":"-1.27"},{"ID":"FBgn0037449","EGF_Baseline":"-1.01"},{"ID":"FBgn0034824","EGF_Baseline":"0.42"},{"ID":"FBgn0261065","EGF_Baseline":"-1.21"},{"ID":"FBgn0039069","EGF_Baseline":"0.87"},{"ID":"FBgn0036935","EGF_Baseline":"-0.62"},{"ID":"FBgn0036125","EGF_Baseline":"-0.85"},{"ID":"FBgn0050355","EGF_Baseline":"-1.3"},{"ID":"FBgn0030834","EGF_Baseline":"0.61"},{"ID":"FBgn0021847","EGF_Baseline":"-0.53"},{"ID":"FBgn0032006","EGF_Baseline":"1.65"},{"ID":"FBgn0033268","EGF_Baseline":"1.12"},{"ID":"FBgn0014464","EGF_Baseline":"0.82"},{"ID":"FBgn0034105","EGF_Baseline":"-1.59"},{"ID":"FBgn0038105","EGF_Baseline":"-1.47"},{"ID":"FBgn0035933","EGF_Baseline":"1.73"},{"ID":"FBgn0035711","EGF_Baseline":"-0.28"},{"ID":"FBgn0036580","EGF_Baseline":"0.25"},{"ID":"FBgn0039190","EGF_Baseline":"-0.28"},{"ID":"FBgn0033271","EGF_Baseline":"-0.68"},{"ID":"FBgn0036771","EGF_Baseline":"0.33"},{"ID":"FBgn0033955","EGF_Baseline":"-1.48"},{"ID":"FBgn0039000","EGF_Baseline":"-0.63"},{"ID":"FBgn0004587","EGF_Baseline":"-0.75"},{"ID":"FBgn0261930","EGF_Baseline":"1.53"},{"ID":"FBgn0250874","EGF_Baseline":"0.56"},{"ID":"FBgn0043535","EGF_Baseline":"-2.43"},{"ID":"FBgn0030039","EGF_Baseline":"-0.98"},{"ID":"FBgn0004636","EGF_Baseline":"1.44"},{"ID":"FBgn0034144","EGF_Baseline":"1.41"},{"ID":"FBgn0051176","EGF_Baseline":"1.22"},{"ID":"FBgn0064237","EGF_Baseline":"1.7"},{"ID":"FBgn0250824","EGF_Baseline":"1.08"},{"ID":"FBgn0086697","EGF_Baseline":"0.45"},{"ID":"FBgn0034392","EGF_Baseline":"0.93"},{"ID":"FBgn0032740","EGF_Baseline":"-1.16"},{"ID":"FBgn0051664","EGF_Baseline":"2.41"},{"ID":"FBgn0037707","EGF_Baseline":"0.91"},{"ID":"FBgn0260635","EGF_Baseline":"11.37"},{"ID":"FBgn0039026","EGF_Baseline":"0.64"},{"ID":"FBgn0032783","EGF_Baseline":"-0.5"},{"ID":"FBgn0029589","EGF_Baseline":"-0.77"},{"ID":"FBgn0261797","EGF_Baseline":"0.94"},{"ID":"FBgn0033137","EGF_Baseline":"0.45"},{"ID":"FBgn0036263","EGF_Baseline":"1.29"},{"ID":"FBgn0260396","EGF_Baseline":"-1.48"},{"ID":"FBgn0038346","EGF_Baseline":"-1.32"},{"ID":"FBgn0032851","EGF_Baseline":"0.9"},{"ID":"FBgn0033515","EGF_Baseline":"0.88"},{"ID":"FBgn0033954","EGF_Baseline":"-0.18"},{"ID":"FBgn0003747","EGF_Baseline":"-1.09"},{"ID":"FBgn0085192","EGF_Baseline":"-0.42"},{"ID":"FBgn0035707","EGF_Baseline":"1.8"},{"ID":"FBgn0261803","EGF_Baseline":"-0.85"},{"ID":"FBgn0039669","EGF_Baseline":"-1.3"},{"ID":"FBgn0032530","EGF_Baseline":"-0.74"},{"ID":"FBgn0035907","EGF_Baseline":"-0.57"},{"ID":"FBgn0029157","EGF_Baseline":"-0.8"},{"ID":"FBgn0032264","EGF_Baseline":"0.3"},{"ID":"FBgn0015663","EGF_Baseline":"-0.68"},{"ID":"FBgn0034318","EGF_Baseline":"-0.66"},{"ID":"FBgn0016070","EGF_Baseline":"0.96"},{"ID":"FBgn0259711","EGF_Baseline":"0.8"},{"ID":"FBgn0029935","EGF_Baseline":"2.57"},{"ID":"FBgn0035844","EGF_Baseline":"1.13"},{"ID":"FBgn0260779","EGF_Baseline":"0.67"},{"ID":"FBgn0051826","EGF_Baseline":"-1.12"},{"ID":"FBgn0003655","EGF_Baseline":"-1.29"},{"ID":"FBgn0029596","EGF_Baseline":"2.25"},{"ID":"FBgn0050395","EGF_Baseline":"-1.08"},{"ID":"FBgn0004554","EGF_Baseline":"0.94"},{"ID":"FBgn0032632","EGF_Baseline":"0.94"},{"ID":"FBgn0005561","EGF_Baseline":"0.93"},{"ID":"FBgn0031566","EGF_Baseline":"0.35"},{"ID":"FBgn0030452","EGF_Baseline":"1.15"},{"ID":"FBgn0039197","EGF_Baseline":"1.12"},{"ID":"FBgn0033248","EGF_Baseline":"-1.41"},{"ID":"FBgn0050468","EGF_Baseline":"-1.86"},{"ID":"FBgn0036349","EGF_Baseline":"1.34"},{"ID":"FBgn0002521","EGF_Baseline":"0.95"},{"ID":"FBgn0000281","EGF_Baseline":"0.79"},{"ID":"FBgn0035399","EGF_Baseline":"-0.39"},{"ID":"FBgn0038858","EGF_Baseline":"0.91"},{"ID":"FBgn0261239","EGF_Baseline":"1.15"},{"ID":"FBgn0024973","EGF_Baseline":"-0.26"},{"ID":"FBgn0052594","EGF_Baseline":"1.36"},{"ID":"FBgn0027378","EGF_Baseline":"0.36"},{"ID":"FBgn0016641","EGF_Baseline":"1.23"},{"ID":"FBgn0259213","EGF_Baseline":"1.88"},{"ID":"FBgn0041234","EGF_Baseline":"-0.52"},{"ID":"FBgn0031849","EGF_Baseline":"-1.68"},{"ID":"FBgn0261270","EGF_Baseline":"-0.27"},{"ID":"FBgn0031081","EGF_Baseline":"0.29"},{"ID":"FBgn0037418","EGF_Baseline":"-1.68"},{"ID":"FBgn0036462","EGF_Baseline":"-1.08"},{"ID":"FBgn0031519","EGF_Baseline":"-0.86"},{"ID":"FBgn0003313","EGF_Baseline":"-0.69"},{"ID":"FBgn0032883","EGF_Baseline":"-2.29"},{"ID":"FBgn0037202","EGF_Baseline":"-0.3"},{"ID":"FBgn0026428","EGF_Baseline":"-0.95"},{"ID":"FBgn0039854","EGF_Baseline":"-0.52"},{"ID":"FBgn0028515","EGF_Baseline":"-0.32"},{"ID":"FBgn0034500","EGF_Baseline":"2.41"},{"ID":"FBgn0005658","EGF_Baseline":"-1.48"},{"ID":"FBgn0036628","EGF_Baseline":"-0.46"},{"ID":"FBgn0035169","EGF_Baseline":"1.94"},{"ID":"FBgn0051674","EGF_Baseline":"-0.64"},{"ID":"FBgn0039743","EGF_Baseline":"0.32"},{"ID":"FBgn0031785","EGF_Baseline":"-0.32"},{"ID":"FBgn0015269","EGF_Baseline":"0.4"},{"ID":"FBgn0031118","EGF_Baseline":"1.98"},{"ID":"FBgn0024189","EGF_Baseline":"3.54"},{"ID":"FBgn0038037","EGF_Baseline":"-0.97"},{"ID":"FBgn0032054","EGF_Baseline":"-0.66"},{"ID":"FBgn0038363","EGF_Baseline":"-0.27"},{"ID":"FBgn0037660","EGF_Baseline":"-1.39"},{"ID":"FBgn0039435","EGF_Baseline":"-1.28"},{"ID":"FBgn0032228","EGF_Baseline":"-0.6"},{"ID":"FBgn0004885","EGF_Baseline":"-0.39"},{"ID":"FBgn0042132","EGF_Baseline":"-1.93"},{"ID":"FBgn0052425","EGF_Baseline":"0.77"},{"ID":"FBgn0035545","EGF_Baseline":"-1.23"},{"ID":"FBgn0053337","EGF_Baseline":"1.02"},{"ID":"FBgn0259748","EGF_Baseline":"-0.54"},{"ID":"FBgn0037570","EGF_Baseline":"1.13"},{"ID":"FBgn0034794","EGF_Baseline":"-0.29"},{"ID":"FBgn0027280","EGF_Baseline":"-1.46"},{"ID":"FBgn0035833","EGF_Baseline":"-0.44"},{"ID":"FBgn0037279","EGF_Baseline":"-1.75"},{"ID":"FBgn0002787","EGF_Baseline":"0.27"},{"ID":"FBgn0038878","EGF_Baseline":"-0.55"},{"ID":"FBgn0025629","EGF_Baseline":"-0.8"},{"ID":"FBgn0031651","EGF_Baseline":"-1.73"},{"ID":"FBgn0034383","EGF_Baseline":"0.47"},{"ID":"FBgn0035160","EGF_Baseline":"-0.8"},{"ID":"FBgn0014011","EGF_Baseline":"-1"},{"ID":"FBgn0031351","EGF_Baseline":"-0.55"},{"ID":"FBgn0052182","EGF_Baseline":"-0.61"},{"ID":"FBgn0024754","EGF_Baseline":"-1.12"},{"ID":"FBgn0029663","EGF_Baseline":"0.64"},{"ID":"FBgn0029703","EGF_Baseline":"-0.52"},{"ID":"FBgn0032181","EGF_Baseline":"-1.79"},{"ID":"FBgn0032717","EGF_Baseline":"-1.17"},{"ID":"FBgn0025638","EGF_Baseline":"-1.21"},{"ID":"FBgn0038056","EGF_Baseline":"-0.31"},{"ID":"FBgn0028664","EGF_Baseline":"-0.95"},{"ID":"FBgn0050409","EGF_Baseline":"0.6"},{"ID":"FBgn0037772","EGF_Baseline":"0.96"},{"ID":"FBgn0038966","EGF_Baseline":"-2.03"},{"ID":"FBgn0040011","EGF_Baseline":"0.68"},{"ID":"FBgn0032910","EGF_Baseline":"0.83"},{"ID":"FBgn0035383","EGF_Baseline":"-1.28"},{"ID":"FBgn0261379","EGF_Baseline":"-1.77"},{"ID":"FBgn0032467","EGF_Baseline":"0.54"},{"ID":"FBgn0033261","EGF_Baseline":"-1.62"},{"ID":"FBgn0037244","EGF_Baseline":"1.56"},{"ID":"FBgn0031493","EGF_Baseline":"1.33"},{"ID":"FBgn0004465","EGF_Baseline":"-1.74"},{"ID":"FBgn0052226","EGF_Baseline":"-1.73"},{"ID":"FBgn0011669","EGF_Baseline":"-1.85"},{"ID":"FBgn0000032","EGF_Baseline":"1.42"},{"ID":"FBgn0053060","EGF_Baseline":"-1.1"},{"ID":"FBgn0010382","EGF_Baseline":"6.55"},{"ID":"FBgn0052138","EGF_Baseline":"-1.31"},{"ID":"FBgn0032732","EGF_Baseline":"1.14"},{"ID":"FBgn0034509","EGF_Baseline":"0.31"},{"ID":"FBgn0261708","EGF_Baseline":"-0.17"},{"ID":"FBgn0039107","EGF_Baseline":"-0.78"},{"ID":"FBgn0040813","EGF_Baseline":"0.72"},{"ID":"FBgn0026149","EGF_Baseline":"1.26"},{"ID":"FBgn0032397","EGF_Baseline":"0.68"},{"ID":"FBgn0021967","EGF_Baseline":"1.07"},{"ID":"FBgn0052181","EGF_Baseline":"0.48"},{"ID":"FBgn0025635","EGF_Baseline":"-1.05"},{"ID":"FBgn0037164","EGF_Baseline":"0.75"},{"ID":"FBgn0037239","EGF_Baseline":"0.08"},{"ID":"FBgn0033207","EGF_Baseline":"-0.96"},{"ID":"FBgn0051551","EGF_Baseline":"0.93"},{"ID":"FBgn0032008","EGF_Baseline":"-0.68"},{"ID":"FBgn0038419","EGF_Baseline":"-0.84"},{"ID":"FBgn0037817","EGF_Baseline":"-1.07"},{"ID":"FBgn0034684","EGF_Baseline":"-0.96"},{"ID":"FBgn0053263","EGF_Baseline":"0.77"},{"ID":"FBgn0004666","EGF_Baseline":"0.23"},{"ID":"FBgn0086784","EGF_Baseline":"-1.15"},{"ID":"FBgn0259831","EGF_Baseline":"-0.14"},{"ID":"FBgn0261914","EGF_Baseline":"-1.56"},{"ID":"FBgn0042173","EGF_Baseline":"-1.98"},{"ID":"FBgn0085483","EGF_Baseline":"-1.75"},{"ID":"FBgn0032406","EGF_Baseline":"-1.01"},{"ID":"FBgn0010877","EGF_Baseline":"-1.19"},{"ID":"FBgn0035152","EGF_Baseline":"0.47"},{"ID":"FBgn0000114","EGF_Baseline":"0.53"},{"ID":"FBgn0019624","EGF_Baseline":"-1.29"},{"ID":"FBgn0027597","EGF_Baseline":"-1"},{"ID":"FBgn0036950","EGF_Baseline":"-1.88"},{"ID":"FBgn0051441","EGF_Baseline":"-1.67"},{"ID":"FBgn0035440","EGF_Baseline":"-2.13"},{"ID":"FBgn0250844","EGF_Baseline":"0.18"},{"ID":"FBgn0035871","EGF_Baseline":"0.37"},{"ID":"FBgn0026873","EGF_Baseline":"0.62"},{"ID":"FBgn0000139","EGF_Baseline":"0.98"},{"ID":"FBgn0031268","EGF_Baseline":"-0.26"},{"ID":"FBgn0034271","EGF_Baseline":"0.36"},{"ID":"FBgn0025879","EGF_Baseline":"1.48"},{"ID":"FBgn0032577","EGF_Baseline":"0.91"},{"ID":"FBgn0035649","EGF_Baseline":"-1.12"},{"ID":"FBgn0029997","EGF_Baseline":"-1.64"},{"ID":"FBgn0024983","EGF_Baseline":"-0.25"},{"ID":"FBgn0033544","EGF_Baseline":"0.81"},{"ID":"FBgn0260718","EGF_Baseline":"-0.33"},{"ID":"FBgn0032473","EGF_Baseline":"0.41"},{"ID":"FBgn0036846","EGF_Baseline":"-0.91"},{"ID":"FBgn0037884","EGF_Baseline":"0.4"},{"ID":"FBgn0029858","EGF_Baseline":"-0.73"},{"ID":"FBgn0038237","EGF_Baseline":"-1.73"},{"ID":"FBgn0038063","EGF_Baseline":"-1.35"},{"ID":"FBgn0035727","EGF_Baseline":"-1.31"},{"ID":"FBgn0038597","EGF_Baseline":"1.05"},{"ID":"FBgn0029980","EGF_Baseline":"0.32"},{"ID":"FBgn0051496","EGF_Baseline":"-0.33"},{"ID":"FBgn0054033","EGF_Baseline":"0.33"},{"ID":"FBgn0261597","EGF_Baseline":"3.24"},{"ID":"FBgn0039925","EGF_Baseline":"1.17"},{"ID":"FBgn0013325","EGF_Baseline":"5"},{"ID":"FBgn0039979","EGF_Baseline":"0.75"},{"ID":"FBgn0041579","EGF_Baseline":"-0.84"},{"ID":"FBgn0039331","EGF_Baseline":"1.18"},{"ID":"FBgn0038400","EGF_Baseline":"0.53"},{"ID":"FBgn0259978","EGF_Baseline":"0.95"},{"ID":"FBgn0038200","EGF_Baseline":"-0.38"},{"ID":"FBgn0012037","EGF_Baseline":"-0.29"},{"ID":"FBgn0039150","EGF_Baseline":"-2.29"},{"ID":"FBgn0003567","EGF_Baseline":"-1.11"},{"ID":"FBgn0036837","EGF_Baseline":"-1.08"},{"ID":"FBgn0053769","EGF_Baseline":"0.82"},{"ID":"FBgn0032750","EGF_Baseline":"0.62"},{"ID":"FBgn0038619","EGF_Baseline":"2.1"},{"ID":"FBgn0035065","EGF_Baseline":"0.12"},{"ID":"FBgn0051103","EGF_Baseline":"1.36"},{"ID":"FBgn0030078","EGF_Baseline":"-0.15"},{"ID":"FBgn0260873","EGF_Baseline":"0.4"},{"ID":"FBgn0031775","EGF_Baseline":"1.88"},{"ID":"FBgn0001108","EGF_Baseline":"-1.52"},{"ID":"FBgn0031974","EGF_Baseline":"-1.46"},{"ID":"FBgn0039620","EGF_Baseline":"-0.63"},{"ID":"FBgn0040259","EGF_Baseline":"0.14"},{"ID":"FBgn0039860","EGF_Baseline":"-1.04"},{"ID":"FBgn0039836","EGF_Baseline":"5.36"},{"ID":"FBgn0036760","EGF_Baseline":"0.7"},{"ID":"FBgn0011217","EGF_Baseline":"-0.8"},{"ID":"FBgn0033623","EGF_Baseline":"-1.54"},{"ID":"FBgn0032269","EGF_Baseline":"-0.72"},{"ID":"FBgn0034191","EGF_Baseline":"-1.91"},{"ID":"FBgn0028703","EGF_Baseline":"-0.78"},{"ID":"FBgn0027930","EGF_Baseline":"0.91"},{"ID":"FBgn0031273","EGF_Baseline":"-1.12"},{"ID":"FBgn0035257","EGF_Baseline":"0.81"},{"ID":"FBgn0052638","EGF_Baseline":"-0.88"},{"ID":"FBgn0029708","EGF_Baseline":"1.41"},{"ID":"FBgn0028984","EGF_Baseline":"-0.3"},{"ID":"FBgn0033374","EGF_Baseline":"-1.48"},{"ID":"FBgn0032934","EGF_Baseline":"-0.72"},{"ID":"FBgn0033081","EGF_Baseline":"-0.72"},{"ID":"FBgn0015270","EGF_Baseline":"-2.3"},{"ID":"FBgn0003866","EGF_Baseline":"-1.51"},{"ID":"FBgn0085459","EGF_Baseline":"-0.69"},{"ID":"FBgn0005670","EGF_Baseline":"-0.99"},{"ID":"FBgn0004449","EGF_Baseline":"-0.51"},{"ID":"FBgn0051719","EGF_Baseline":"-1.35"},{"ID":"FBgn0039783","EGF_Baseline":"-0.45"},{"ID":"FBgn0039339","EGF_Baseline":"-1.09"},{"ID":"FBgn0025679","EGF_Baseline":"0.86"},{"ID":"FBgn0014454","EGF_Baseline":"-1.7"},{"ID":"FBgn0005558","EGF_Baseline":"0.82"},{"ID":"FBgn0051530","EGF_Baseline":"0.55"},{"ID":"FBgn0050036","EGF_Baseline":"-1.65"},{"ID":"FBgn0032770","EGF_Baseline":"-1.07"},{"ID":"FBgn0033812","EGF_Baseline":"-1.05"},{"ID":"FBgn0032178","EGF_Baseline":"-0.68"},{"ID":"FBgn0025680","EGF_Baseline":"0.86"},{"ID":"FBgn0039019","EGF_Baseline":"2.63"},{"ID":"FBgn0011224","EGF_Baseline":"-2.46"},{"ID":"FBgn0039311","EGF_Baseline":"-1.23"},{"ID":"FBgn0037667","EGF_Baseline":"1.85"},{"ID":"FBgn0014395","EGF_Baseline":"-0.72"},{"ID":"FBgn0031909","EGF_Baseline":"0.22"},{"ID":"FBgn0035593","EGF_Baseline":"-1.65"},{"ID":"FBgn0032184","EGF_Baseline":"-1.2"},{"ID":"FBgn0035813","EGF_Baseline":"-0.78"},{"ID":"FBgn0037665","EGF_Baseline":"1.19"},{"ID":"FBgn0034092","EGF_Baseline":"-0.82"},{"ID":"FBgn0050049","EGF_Baseline":"14.91"},{"ID":"FBgn0004795","EGF_Baseline":"-1.61"},{"ID":"FBgn0053966","EGF_Baseline":"-1.15"},{"ID":"FBgn0037838","EGF_Baseline":"-0.46"},{"ID":"FBgn0034986","EGF_Baseline":"-1.17"},{"ID":"FBgn0061200","EGF_Baseline":"9.49"},{"ID":"FBgn0035020","EGF_Baseline":"0.88"},{"ID":"FBgn0036899","EGF_Baseline":"-1.47"},{"ID":"FBgn0061197","EGF_Baseline":"-0.27"},{"ID":"FBgn0015509","EGF_Baseline":"0.87"},{"ID":"FBgn0086604","EGF_Baseline":"0.89"},{"ID":"FBgn0036608","EGF_Baseline":"0.31"},{"ID":"FBgn0034293","EGF_Baseline":"-1.64"},{"ID":"FBgn0036531","EGF_Baseline":"-1.41"},{"ID":"FBgn0037149","EGF_Baseline":"0.7"},{"ID":"FBgn0037566","EGF_Baseline":"-1.44"},{"ID":"FBgn0050485","EGF_Baseline":"1.49"},{"ID":"FBgn0031470","EGF_Baseline":"-0.51"},{"ID":"FBgn0036677","EGF_Baseline":"-0.51"},{"ID":"FBgn0038323","EGF_Baseline":"1.11"},{"ID":"FBgn0016013","EGF_Baseline":"-1.57"},{"ID":"FBgn0030592","EGF_Baseline":"1.39"},{"ID":"FBgn0004170","EGF_Baseline":"-1.44"},{"ID":"FBgn0040102","EGF_Baseline":"-1.42"},{"ID":"FBgn0033808","EGF_Baseline":"-1.04"},{"ID":"FBgn0027586","EGF_Baseline":"-0.57"},{"ID":"FBgn0030746","EGF_Baseline":"0.42"},{"ID":"FBgn0036569","EGF_Baseline":"1.84"},{"ID":"FBgn0010411","EGF_Baseline":"2.99"},{"ID":"FBgn0039427","EGF_Baseline":"-0.77"},{"ID":"FBgn0039420","EGF_Baseline":"0.25"},{"ID":"FBgn0038585","EGF_Baseline":"0.76"},{"ID":"FBgn0034712","EGF_Baseline":"0.59"},{"ID":"FBgn0036474","EGF_Baseline":"1.21"},{"ID":"FBgn0032923","EGF_Baseline":"-0.94"},{"ID":"FBgn0000210","EGF_Baseline":"-1.16"},{"ID":"FBgn0004895","EGF_Baseline":"-0.67"},{"ID":"FBgn0039113","EGF_Baseline":"-0.1"},{"ID":"FBgn0020646","EGF_Baseline":"1.35"},{"ID":"FBgn0005593","EGF_Baseline":"2.63"},{"ID":"FBgn0035750","EGF_Baseline":"0.7"},{"ID":"FBgn0010197","EGF_Baseline":"-1.17"},{"ID":"FBgn0013678","EGF_Baseline":"0.98"},{"ID":"FBgn0017429","EGF_Baseline":"-1.93"},{"ID":"FBgn0037263","EGF_Baseline":"1.12"},{"ID":"FBgn0085426","EGF_Baseline":"-1.37"},{"ID":"FBgn0040959","EGF_Baseline":"0.58"},{"ID":"FBgn0030181","EGF_Baseline":"0.82"},{"ID":"FBgn0261014","EGF_Baseline":"-1.17"},{"ID":"FBgn0036589","EGF_Baseline":"-1.43"},{"ID":"FBgn0033984","EGF_Baseline":"-0.79"},{"ID":"FBgn0035798","EGF_Baseline":"1.14"},{"ID":"FBgn0032162","EGF_Baseline":"-1.48"},{"ID":"FBgn0034464","EGF_Baseline":"-1.3"},{"ID":"FBgn0004379","EGF_Baseline":"1.36"},{"ID":"FBgn0004175","EGF_Baseline":"-0.56"},{"ID":"FBgn0039543","EGF_Baseline":"0.4"},{"ID":"FBgn0031865","EGF_Baseline":"-0.89"},{"ID":"FBgn0038871","EGF_Baseline":"-0.68"},{"ID":"FBgn0035640","EGF_Baseline":"-0.64"},{"ID":"FBgn0020368","EGF_Baseline":"-0.98"},{"ID":"FBgn0004372","EGF_Baseline":"0.97"},{"ID":"FBgn0250788","EGF_Baseline":"-1.24"},{"ID":"FBgn0031644","EGF_Baseline":"-0.82"},{"ID":"FBgn0033912","EGF_Baseline":"2.7"},{"ID":"FBgn0085440","EGF_Baseline":"0.83"},{"ID":"FBgn0034423","EGF_Baseline":"0.68"},{"ID":"FBgn0038762","EGF_Baseline":"-1.49"},{"ID":"FBgn0030894","EGF_Baseline":"-0.88"},{"ID":"FBgn0038914","EGF_Baseline":"-0.63"},{"ID":"FBgn0030829","EGF_Baseline":"1.74"},{"ID":"FBgn0036393","EGF_Baseline":"-1.29"},{"ID":"FBgn0031805","EGF_Baseline":"-1.23"},{"ID":"FBgn0035195","EGF_Baseline":"-2.15"},{"ID":"FBgn0037650","EGF_Baseline":"0.99"},{"ID":"FBgn0039157","EGF_Baseline":"-1.1"},{"ID":"FBgn0023076","EGF_Baseline":"-0.51"},{"ID":"FBgn0028506","EGF_Baseline":"-2.03"},{"ID":"FBgn0038428","EGF_Baseline":"-0.69"},{"ID":"FBgn0031233","EGF_Baseline":"0.89"},{"ID":"FBgn0035896","EGF_Baseline":"-1.42"},{"ID":"FBgn0030914","EGF_Baseline":"1.01"},{"ID":"FBgn0029804","EGF_Baseline":"-1.29"},{"ID":"FBgn0031397","EGF_Baseline":"-0.93"},{"ID":"FBgn0027504","EGF_Baseline":"-1.37"},{"ID":"FBgn0052436","EGF_Baseline":"-1.67"},{"ID":"FBgn0039993","EGF_Baseline":"0.59"},{"ID":"FBgn0026320","EGF_Baseline":"0.05"},{"ID":"FBgn0011591","EGF_Baseline":"1.17"},{"ID":"FBgn0259481","EGF_Baseline":"-0.53"},{"ID":"FBgn0039766","EGF_Baseline":"2.21"},{"ID":"FBgn0037396","EGF_Baseline":"-0.72"},{"ID":"FBgn0038320","EGF_Baseline":"0.25"},{"ID":"FBgn0026255","EGF_Baseline":"-1.44"},{"ID":"FBgn0034735","EGF_Baseline":"-1.67"},{"ID":"FBgn0053998","EGF_Baseline":"-0.78"},{"ID":"FBgn0022720","EGF_Baseline":"-1.42"},{"ID":"FBgn0041252","EGF_Baseline":"0.5"},{"ID":"FBgn0028949","EGF_Baseline":"0.81"},{"ID":"FBgn0036136","EGF_Baseline":"-1.1"},{"ID":"FBgn0051207","EGF_Baseline":"-0.26"},{"ID":"FBgn0029966","EGF_Baseline":"1.25"},{"ID":"FBgn0030071","EGF_Baseline":"0.74"},{"ID":"FBgn0011474","EGF_Baseline":"-0.56"},{"ID":"FBgn0000721","EGF_Baseline":"0.28"},{"ID":"FBgn0030752","EGF_Baseline":"-0.31"},{"ID":"FBgn0087021","EGF_Baseline":"-1.03"},{"ID":"FBgn0033303","EGF_Baseline":"1.47"},{"ID":"FBgn0051105","EGF_Baseline":"-1.91"},{"ID":"FBgn0024804","EGF_Baseline":"0.19"},{"ID":"FBgn0050157","EGF_Baseline":"-0.66"},{"ID":"FBgn0010247","EGF_Baseline":"-0.93"},{"ID":"FBgn0259220","EGF_Baseline":"-2.37"},{"ID":"FBgn0013684","EGF_Baseline":"-0.82"},{"ID":"FBgn0044871","EGF_Baseline":"-2.21"},{"ID":"FBgn0031523","EGF_Baseline":"-0.24"},{"ID":"FBgn0053283","EGF_Baseline":"0.65"},{"ID":"FBgn0026409","EGF_Baseline":"-0.99"},{"ID":"FBgn0039500","EGF_Baseline":"1.08"},{"ID":"FBgn0051065","EGF_Baseline":"-1.09"},{"ID":"FBgn0032961","EGF_Baseline":"-0.19"},{"ID":"FBgn0037215","EGF_Baseline":"1.09"},{"ID":"FBgn0085403","EGF_Baseline":"-1.62"},{"ID":"FBgn0051788","EGF_Baseline":"0.92"},{"ID":"FBgn0002069","EGF_Baseline":"0.81"},{"ID":"FBgn0019809","EGF_Baseline":"1.53"},{"ID":"FBgn0052657","EGF_Baseline":"0.92"},{"ID":"FBgn0039972","EGF_Baseline":"2.45"},{"ID":"FBgn0034631","EGF_Baseline":"0.87"},{"ID":"FBgn0010014","EGF_Baseline":"-1.11"},{"ID":"FBgn0005694","EGF_Baseline":"0.66"},{"ID":"FBgn0051472","EGF_Baseline":"0.46"},{"ID":"FBgn0034454","EGF_Baseline":"0.13"},{"ID":"FBgn0003022","EGF_Baseline":"1.26"},{"ID":"FBgn0033948","EGF_Baseline":"-0.64"},{"ID":"FBgn0001247","EGF_Baseline":"0.47"},{"ID":"FBgn0036913","EGF_Baseline":"1.39"},{"ID":"FBgn0036816","EGF_Baseline":"0.79"},{"ID":"FBgn0029134","EGF_Baseline":"1.56"},{"ID":"FBgn0027572","EGF_Baseline":"-1.89"},{"ID":"FBgn0053758","EGF_Baseline":"1.35"},{"ID":"FBgn0027107","EGF_Baseline":"-1.16"},{"ID":"FBgn0260943","EGF_Baseline":"1.14"},{"ID":"FBgn0031410","EGF_Baseline":"-0.63"},{"ID":"FBgn0033609","EGF_Baseline":"1.57"},{"ID":"FBgn0052086","EGF_Baseline":"-0.56"},{"ID":"FBgn0051457","EGF_Baseline":"0.91"},{"ID":"FBgn0031139","EGF_Baseline":"1.71"},{"ID":"FBgn0039788","EGF_Baseline":"0.29"},{"ID":"FBgn0038158","EGF_Baseline":"-0.96"},{"ID":"FBgn0034157","EGF_Baseline":"-0.86"},{"ID":"FBgn0037385","EGF_Baseline":"-1.42"},{"ID":"FBgn0052655","EGF_Baseline":"1.16"},{"ID":"FBgn0023096","EGF_Baseline":"0.9"},{"ID":"FBgn0029868","EGF_Baseline":"0.91"},{"ID":"FBgn0036207","EGF_Baseline":"-1.01"},{"ID":"FBgn0030053","EGF_Baseline":"0.94"},{"ID":"FBgn0036494","EGF_Baseline":"-1.73"},{"ID":"FBgn0000246","EGF_Baseline":"-1.53"},{"ID":"FBgn0260744","EGF_Baseline":"0.56"},{"ID":"FBgn0039488","EGF_Baseline":"-2.44"},{"ID":"FBgn0020496","EGF_Baseline":"-1.61"},{"ID":"FBgn0067629","EGF_Baseline":"-1.02"},{"ID":"FBgn0003227","EGF_Baseline":"-1.24"},{"ID":"FBgn0035315","EGF_Baseline":"-1.73"},{"ID":"FBgn0053970","EGF_Baseline":"1.18"},{"ID":"FBgn0040636","EGF_Baseline":"1.6"},{"ID":"FBgn0013998","EGF_Baseline":"-0.95"},{"ID":"FBgn0031238","EGF_Baseline":"-0.6"},{"ID":"FBgn0038306","EGF_Baseline":"1.81"},{"ID":"FBgn0032509","EGF_Baseline":"0.6"},{"ID":"FBgn0035552","EGF_Baseline":"1.98"},{"ID":"FBgn0016920","EGF_Baseline":"0.91"},{"ID":"FBgn0034585","EGF_Baseline":"0.16"},{"ID":"FBgn0050082","EGF_Baseline":"-1.38"},{"ID":"FBgn0046296","EGF_Baseline":"-1.3"},{"ID":"FBgn0027950","EGF_Baseline":"-1.23"},{"ID":"FBgn0085386","EGF_Baseline":"1.26"},{"ID":"FBgn0039916","EGF_Baseline":"0.08"},{"ID":"FBgn0031649","EGF_Baseline":"-0.21"},{"ID":"FBgn0035147","EGF_Baseline":"0.42"},{"ID":"FBgn0032919","EGF_Baseline":"2.22"},{"ID":"FBgn0011763","EGF_Baseline":"5.4"},{"ID":"FBgn0033090","EGF_Baseline":"0.66"},{"ID":"FBgn0037083","EGF_Baseline":"0.23"},{"ID":"FBgn0051469","EGF_Baseline":"0.41"},{"ID":"FBgn0031661","EGF_Baseline":"-0.81"},{"ID":"FBgn0038918","EGF_Baseline":"0.6"},{"ID":"FBgn0037322","EGF_Baseline":"0.07"},{"ID":"FBgn0037514","EGF_Baseline":"-0.2"},{"ID":"FBgn0035335","EGF_Baseline":"-1.02"},{"ID":"FBgn0000253","EGF_Baseline":"-1.02"},{"ID":"FBgn0053958","EGF_Baseline":"-0.78"},{"ID":"FBgn0029128","EGF_Baseline":"0.69"},{"ID":"FBgn0259142","EGF_Baseline":"-1.53"},{"ID":"FBgn0026702","EGF_Baseline":"-1.99"},{"ID":"FBgn0015808","EGF_Baseline":"-1.07"},{"ID":"FBgn0032219","EGF_Baseline":"1"},{"ID":"FBgn0034087","EGF_Baseline":"-2.04"},{"ID":"FBgn0038810","EGF_Baseline":"-0.1"},{"ID":"FBgn0039163","EGF_Baseline":"-1.51"},{"ID":"FBgn0038356","EGF_Baseline":"-0.72"},{"ID":"FBgn0053179","EGF_Baseline":"0.57"},{"ID":"FBgn0026619","EGF_Baseline":"0.87"},{"ID":"FBgn0038550","EGF_Baseline":"0.79"},{"ID":"FBgn0034816","EGF_Baseline":"0.96"},{"ID":"FBgn0051272","EGF_Baseline":"-0.43"},{"ID":"FBgn0034838","EGF_Baseline":"-1.47"},{"ID":"FBgn0034618","EGF_Baseline":"-1.13"},{"ID":"FBgn0015037","EGF_Baseline":"-0.97"},{"ID":"FBgn0035483","EGF_Baseline":"0.33"},{"ID":"FBgn0033258","EGF_Baseline":"-0.69"},{"ID":"FBgn0038704","EGF_Baseline":"-1.68"},{"ID":"FBgn0040348","EGF_Baseline":"-1.19"},{"ID":"FBgn0031631","EGF_Baseline":"0.92"},{"ID":"FBgn0032482","EGF_Baseline":"-1.59"},{"ID":"FBgn0032968","EGF_Baseline":"-0.49"},{"ID":"FBgn0015376","EGF_Baseline":"-1.67"},{"ID":"FBgn0022709","EGF_Baseline":"0.32"},{"ID":"FBgn0051337","EGF_Baseline":"-1.44"},{"ID":"FBgn0031692","EGF_Baseline":"-0.46"},{"ID":"FBgn0035228","EGF_Baseline":"-1.14"},{"ID":"FBgn0035589","EGF_Baseline":"-0.32"},{"ID":"FBgn0036992","EGF_Baseline":"0.95"},{"ID":"FBgn0261294","EGF_Baseline":"-1.24"},{"ID":"FBgn0051709","EGF_Baseline":"-0.61"},{"ID":"FBgn0039052","EGF_Baseline":"-0.54"},{"ID":"FBgn0037845","EGF_Baseline":"0.49"},{"ID":"FBgn0039904","EGF_Baseline":"-0.94"},{"ID":"FBgn0030276","EGF_Baseline":"-1.18"},{"ID":"FBgn0041248","EGF_Baseline":"0.86"},{"ID":"FBgn0040367","EGF_Baseline":"-0.51"},{"ID":"FBgn0025286","EGF_Baseline":"2.34"},{"ID":"FBgn0033665","EGF_Baseline":"-0.65"},{"ID":"FBgn0034275","EGF_Baseline":"-0.47"},{"ID":"FBgn0050039","EGF_Baseline":"0.63"},{"ID":"FBgn0086736","EGF_Baseline":"1.04"},{"ID":"FBgn0051779","EGF_Baseline":"0.99"},{"ID":"FBgn0031231","EGF_Baseline":"-1.77"},{"ID":"FBgn0030099","EGF_Baseline":"-0.68"},{"ID":"FBgn0029913","EGF_Baseline":"0.99"},{"ID":"FBgn0038771","EGF_Baseline":"-0.98"},{"ID":"FBgn0003165","EGF_Baseline":"-1.77"},{"ID":"FBgn0260653","EGF_Baseline":"1.63"},{"ID":"FBgn0261593","EGF_Baseline":"2.38"},{"ID":"FBgn0030274","EGF_Baseline":"-0.93"},{"ID":"FBgn0036689","EGF_Baseline":"-0.26"},{"ID":"FBgn0037715","EGF_Baseline":"0.77"},{"ID":"FBgn0011659","EGF_Baseline":"-0.82"},{"ID":"FBgn0039476","EGF_Baseline":"0.43"},{"ID":"FBgn0027509","EGF_Baseline":"-1.49"},{"ID":"FBgn0032791","EGF_Baseline":"0.92"},{"ID":"FBgn0032489","EGF_Baseline":"-0.68"},{"ID":"FBgn0014189","EGF_Baseline":"6.29"},{"ID":"FBgn0036233","EGF_Baseline":"-0.28"},{"ID":"FBgn0261060","EGF_Baseline":"-1.66"},{"ID":"FBgn0042693","EGF_Baseline":"-0.35"},{"ID":"FBgn0035260","EGF_Baseline":"1.44"},{"ID":"FBgn0000723","EGF_Baseline":"0.8"},{"ID":"FBgn0261566","EGF_Baseline":"-1.7"},{"ID":"FBgn0037529","EGF_Baseline":"-1.52"},{"ID":"FBgn0038476","EGF_Baseline":"0.55"},{"ID":"FBgn0038595","EGF_Baseline":"-1"},{"ID":"FBgn0032416","EGF_Baseline":"0.09"},{"ID":"FBgn0036380","EGF_Baseline":"-0.34"},{"ID":"FBgn0033960","EGF_Baseline":"2.93"},{"ID":"FBgn0024806","EGF_Baseline":"0.55"},{"ID":"FBgn0035034","EGF_Baseline":"-0.14"},{"ID":"FBgn0015558","EGF_Baseline":"-1.12"},{"ID":"FBgn0032957","EGF_Baseline":"-0.22"},{"ID":"FBgn0003660","EGF_Baseline":"0.53"},{"ID":"FBgn0034067","EGF_Baseline":"-0.92"},{"ID":"FBgn0004168","EGF_Baseline":"-0.1"},{"ID":"FBgn0032061","EGF_Baseline":"-0.86"},{"ID":"FBgn0025633","EGF_Baseline":"-0.77"},{"ID":"FBgn0038722","EGF_Baseline":"0.81"},{"ID":"FBgn0038568","EGF_Baseline":"-1.27"},{"ID":"FBgn0033650","EGF_Baseline":"1.06"},{"ID":"FBgn0003002","EGF_Baseline":"-0.5"},{"ID":"FBgn0031461","EGF_Baseline":"-1.22"},{"ID":"FBgn0029798","EGF_Baseline":"-1.18"},{"ID":"FBgn0013432","EGF_Baseline":"-1.09"},{"ID":"FBgn0052499","EGF_Baseline":"-0.7"},{"ID":"FBgn0024227","EGF_Baseline":"0.91"},{"ID":"FBgn0034253","EGF_Baseline":"1.2"},{"ID":"FBgn0051810","EGF_Baseline":"-1.82"},{"ID":"FBgn0027499","EGF_Baseline":"-1.48"},{"ID":"FBgn0030868","EGF_Baseline":"-1.83"},{"ID":"FBgn0032154","EGF_Baseline":"0.42"},{"ID":"FBgn0031377","EGF_Baseline":"0.75"},{"ID":"FBgn0037797","EGF_Baseline":"-1.16"},{"ID":"FBgn0032838","EGF_Baseline":"-1.8"},{"ID":"FBgn0031058","EGF_Baseline":"0.15"},{"ID":"FBgn0038243","EGF_Baseline":"-1.11"},{"ID":"FBgn0260945","EGF_Baseline":"-0.99"},{"ID":"FBgn0013765","EGF_Baseline":"-1.58"},{"ID":"FBgn0040582","EGF_Baseline":"-1.17"},{"ID":"FBgn0038239","EGF_Baseline":"-0.81"},{"ID":"FBgn0039224","EGF_Baseline":"0.99"},{"ID":"FBgn0028573","EGF_Baseline":"0.9"},{"ID":"FBgn0034753","EGF_Baseline":"-0.58"},{"ID":"FBgn0036053","EGF_Baseline":"1.24"},{"ID":"FBgn0037551","EGF_Baseline":"-1.07"},{"ID":"FBgn0035666","EGF_Baseline":"-1.38"},{"ID":"FBgn0033402","EGF_Baseline":"-0.81"},{"ID":"FBgn0020238","EGF_Baseline":"-1.31"},{"ID":"FBgn0003892","EGF_Baseline":"-0.43"},{"ID":"FBgn0037632","EGF_Baseline":"0.72"},{"ID":"FBgn0052280","EGF_Baseline":"0.96"},{"ID":"FBgn0032465","EGF_Baseline":"-0.28"},{"ID":"FBgn0040602","EGF_Baseline":"-0.69"},{"ID":"FBgn0039589","EGF_Baseline":"-0.89"},{"ID":"FBgn0024734","EGF_Baseline":"-0.52"},{"ID":"FBgn0085388","EGF_Baseline":"2.28"},{"ID":"FBgn0043005","EGF_Baseline":"-0.43"},{"ID":"FBgn0000463","EGF_Baseline":"-0.99"},{"ID":"FBgn0024285","EGF_Baseline":"-1.28"},{"ID":"FBgn0040699","EGF_Baseline":"-0.82"},{"ID":"FBgn0052856","EGF_Baseline":"0.93"},{"ID":"FBgn0024920","EGF_Baseline":"-2"},{"ID":"FBgn0050361","EGF_Baseline":"1.76"},{"ID":"FBgn0035046","EGF_Baseline":"-0.94"},{"ID":"FBgn0051562","EGF_Baseline":"-0.32"},{"ID":"FBgn0015522","EGF_Baseline":"-0.89"},{"ID":"FBgn0020415","EGF_Baseline":"1.38"},{"ID":"FBgn0261872","EGF_Baseline":"1.46"},{"ID":"FBgn0021944","EGF_Baseline":"-0.97"},{"ID":"FBgn0033348","EGF_Baseline":"0.55"},{"ID":"FBgn0259209","EGF_Baseline":"-1.55"},{"ID":"FBgn0030366","EGF_Baseline":"-1.71"},{"ID":"FBgn0032395","EGF_Baseline":"-1.03"},{"ID":"FBgn0083961","EGF_Baseline":"2.2"},{"ID":"FBgn0050280","EGF_Baseline":"0.93"},{"ID":"FBgn0053291","EGF_Baseline":"3.99"},{"ID":"FBgn0039580","EGF_Baseline":"-0.78"},{"ID":"FBgn0036063","EGF_Baseline":"0.5"},{"ID":"FBgn0051681","EGF_Baseline":"-1.6"},{"ID":"FBgn0002031","EGF_Baseline":"0.14"},{"ID":"FBgn0037834","EGF_Baseline":"0.76"},{"ID":"FBgn0260639","EGF_Baseline":"-0.84"},{"ID":"FBgn0261799","EGF_Baseline":"-0.48"},{"ID":"FBgn0032198","EGF_Baseline":"0.95"},{"ID":"FBgn0000313","EGF_Baseline":"0.1"},{"ID":"FBgn0025640","EGF_Baseline":"0.9"},{"ID":"FBgn0085473","EGF_Baseline":"0.36"},{"ID":"FBgn0032287","EGF_Baseline":"-1.01"},{"ID":"FBgn0003475","EGF_Baseline":"-0.6"},{"ID":"FBgn0037742","EGF_Baseline":"-1.28"},{"ID":"FBgn0052284","EGF_Baseline":"-0.92"},{"ID":"FBgn0259916","EGF_Baseline":"-1.13"},{"ID":"FBgn0038377","EGF_Baseline":"1.1"},{"ID":"FBgn0025642","EGF_Baseline":"-0.97"},{"ID":"FBgn0003268","EGF_Baseline":"-1.16"},{"ID":"FBgn0051848","EGF_Baseline":"1.63"},{"ID":"FBgn0039564","EGF_Baseline":"1.82"},{"ID":"FBgn0037812","EGF_Baseline":"0.49"},{"ID":"FBgn0040777","EGF_Baseline":"0.49"},{"ID":"FBgn0062449","EGF_Baseline":"1.4"},{"ID":"FBgn0050278","EGF_Baseline":"-2.01"},{"ID":"FBgn0026370","EGF_Baseline":"-1.18"},{"ID":"FBgn0260861","EGF_Baseline":"-0.67"},{"ID":"FBgn0037671","EGF_Baseline":"-0.3"},{"ID":"FBgn0038127","EGF_Baseline":"-1.47"},{"ID":"FBgn0032345","EGF_Baseline":"0.53"},{"ID":"FBgn0030494","EGF_Baseline":"-0.51"},{"ID":"FBgn0029521","EGF_Baseline":"0.27"},{"ID":"FBgn0034888","EGF_Baseline":"0.32"},{"ID":"FBgn0029885","EGF_Baseline":"-0.72"},{"ID":"FBgn0031837","EGF_Baseline":"-1.42"},{"ID":"FBgn0030465","EGF_Baseline":"-1.17"},{"ID":"FBgn0032280","EGF_Baseline":"0.34"},{"ID":"FBgn0054006","EGF_Baseline":"-2.04"},{"ID":"FBgn0038658","EGF_Baseline":"-0.83"},{"ID":"FBgn0036335","EGF_Baseline":"-0.47"},{"ID":"FBgn0036923","EGF_Baseline":"0.33"},{"ID":"FBgn0032843","EGF_Baseline":"-0.51"},{"ID":"FBgn0036690","EGF_Baseline":"0.8"},{"ID":"FBgn0037698","EGF_Baseline":"-1.55"},{"ID":"FBgn0259735","EGF_Baseline":"-1.72"},{"ID":"FBgn0004656","EGF_Baseline":"-1.7"},{"ID":"FBgn0032858","EGF_Baseline":"1.4"},{"ID":"FBgn0036949","EGF_Baseline":"-2.04"},{"ID":"FBgn0052845","EGF_Baseline":"-0.48"},{"ID":"FBgn0033901","EGF_Baseline":"0.24"},{"ID":"FBgn0040755","EGF_Baseline":"-1.05"},{"ID":"FBgn0050440","EGF_Baseline":"-1.67"},{"ID":"FBgn0035860","EGF_Baseline":"0.57"},{"ID":"FBgn0031930","EGF_Baseline":"0.9"},{"ID":"FBgn0052344","EGF_Baseline":"1.33"},{"ID":"FBgn0010097","EGF_Baseline":"0.51"},{"ID":"FBgn0019661","EGF_Baseline":"-0.57"},{"ID":"FBgn0036735","EGF_Baseline":"-0.1"},{"ID":"FBgn0033307","EGF_Baseline":"1.44"},{"ID":"FBgn0036459","EGF_Baseline":"-0.11"},{"ID":"FBgn0027790","EGF_Baseline":"-0.64"},{"ID":"FBgn0085358","EGF_Baseline":"-0.69"},{"ID":"FBgn0024740","EGF_Baseline":"0.97"},{"ID":"FBgn0037377","EGF_Baseline":"-1"},{"ID":"FBgn0000715","EGF_Baseline":"-1.01"},{"ID":"FBgn0039869","EGF_Baseline":"-0.99"},{"ID":"FBgn0038552","EGF_Baseline":"0.79"},{"ID":"FBgn0039175","EGF_Baseline":"-1.32"},{"ID":"FBgn0032129","EGF_Baseline":"-1.16"},{"ID":"FBgn0023526","EGF_Baseline":"-1.04"},{"ID":"FBgn0259246","EGF_Baseline":"1.66"},{"ID":"FBgn0037074","EGF_Baseline":"-0.15"},{"ID":"FBgn0036450","EGF_Baseline":"0.42"},{"ID":"FBgn0003016","EGF_Baseline":"-0.97"},{"ID":"FBgn0050430","EGF_Baseline":"-2.7"},{"ID":"FBgn0030086","EGF_Baseline":"-0.5"},{"ID":"FBgn0036881","EGF_Baseline":"-2.03"},{"ID":"FBgn0016701","EGF_Baseline":"-1.82"},{"ID":"FBgn0050265","EGF_Baseline":"-0.94"},{"ID":"FBgn0034408","EGF_Baseline":"0.34"},{"ID":"FBgn0027547","EGF_Baseline":"0.61"},{"ID":"FBgn0029837","EGF_Baseline":"0.65"},{"ID":"FBgn0051041","EGF_Baseline":"1.2"},{"ID":"FBgn0027500","EGF_Baseline":"-1.53"},{"ID":"FBgn0029962","EGF_Baseline":"-0.87"},{"ID":"FBgn0011270","EGF_Baseline":"-0.53"},{"ID":"FBgn0034808","EGF_Baseline":"1.88"},{"ID":"FBgn0031904","EGF_Baseline":"-0.81"},{"ID":"FBgn0031043","EGF_Baseline":"-1.55"},{"ID":"FBgn0034361","EGF_Baseline":"-0.7"},{"ID":"FBgn0028561","EGF_Baseline":"-0.93"},{"ID":"FBgn0038607","EGF_Baseline":"-2.17"},{"ID":"FBgn0032025","EGF_Baseline":"-1.71"},{"ID":"FBgn0000564","EGF_Baseline":"0.39"},{"ID":"FBgn0031051","EGF_Baseline":"-0.77"},{"ID":"FBgn0033761","EGF_Baseline":"1.36"},{"ID":"FBgn0034282","EGF_Baseline":"0.35"},{"ID":"FBgn0261553","EGF_Baseline":"1.36"},{"ID":"FBgn0030936","EGF_Baseline":"0.28"},{"ID":"FBgn0035236","EGF_Baseline":"0.8"},{"ID":"FBgn0029608","EGF_Baseline":"1.1"},{"ID":"FBgn0031436","EGF_Baseline":"1.42"},{"ID":"FBgn0027101","EGF_Baseline":"-1.15"},{"ID":"FBgn0033716","EGF_Baseline":"-0.33"},{"ID":"FBgn0028844","EGF_Baseline":"-1.03"},{"ID":"FBgn0001565","EGF_Baseline":"1.37"},{"ID":"FBgn0015600","EGF_Baseline":"-1.12"},{"ID":"FBgn0032313","EGF_Baseline":"-1.09"},{"ID":"FBgn0039030","EGF_Baseline":"1.63"},{"ID":"FBgn0005586","EGF_Baseline":"-0.47"},{"ID":"FBgn0040294","EGF_Baseline":"1.06"},{"ID":"FBgn0261429","EGF_Baseline":"0.55"},{"ID":"FBgn0031626","EGF_Baseline":"-0.79"},{"ID":"FBgn0032644","EGF_Baseline":"-0.71"},{"ID":"FBgn0030384","EGF_Baseline":"0.97"},{"ID":"FBgn0052170","EGF_Baseline":"2.37"},{"ID":"FBgn0034452","EGF_Baseline":"0.65"},{"ID":"FBgn0032774","EGF_Baseline":"1.77"},{"ID":"FBgn0030802","EGF_Baseline":"-1.06"},{"ID":"FBgn0031496","EGF_Baseline":"-1.36"},{"ID":"FBgn0002938","EGF_Baseline":"-1.02"},{"ID":"FBgn0041183","EGF_Baseline":"1.43"},{"ID":"FBgn0259923","EGF_Baseline":"-0.87"},{"ID":"FBgn0002626","EGF_Baseline":"3.88"},{"ID":"FBgn0034962","EGF_Baseline":"-1.1"},{"ID":"FBgn0030093","EGF_Baseline":"1.26"},{"ID":"FBgn0017566","EGF_Baseline":"-0.95"},{"ID":"FBgn0029730","EGF_Baseline":"1.06"},{"ID":"FBgn0003598","EGF_Baseline":"-1.04"},{"ID":"FBgn0052082","EGF_Baseline":"0.7"},{"ID":"FBgn0030391","EGF_Baseline":"1.31"},{"ID":"FBgn0032891","EGF_Baseline":"0.16"},{"ID":"FBgn0036767","EGF_Baseline":"-0.43"},{"ID":"FBgn0031381","EGF_Baseline":"-0.07"},{"ID":"FBgn0010395","EGF_Baseline":"1.09"},{"ID":"FBgn0004003","EGF_Baseline":"0.43"},{"ID":"FBgn0038536","EGF_Baseline":"1.04"},{"ID":"FBgn0032665","EGF_Baseline":"0.99"},{"ID":"FBgn0028534","EGF_Baseline":"1.45"},{"ID":"FBgn0085407","EGF_Baseline":"1.27"},{"ID":"FBgn0039594","EGF_Baseline":"-1.12"},{"ID":"FBgn0038302","EGF_Baseline":"-0.3"},{"ID":"FBgn0001248","EGF_Baseline":"-1.39"},{"ID":"FBgn0045035","EGF_Baseline":"1.66"},{"ID":"FBgn0033766","EGF_Baseline":"-0.18"},{"ID":"FBgn0085371","EGF_Baseline":"1.24"},{"ID":"FBgn0002926","EGF_Baseline":"1.26"},{"ID":"FBgn0038003","EGF_Baseline":"-0.43"},{"ID":"FBgn0027494","EGF_Baseline":"-0.82"},{"ID":"FBgn0030596","EGF_Baseline":"2.18"},{"ID":"FBgn0039003","EGF_Baseline":"0.28"},{"ID":"FBgn0033005","EGF_Baseline":"-0.79"},{"ID":"FBgn0033754","EGF_Baseline":"1.2"},{"ID":"FBgn0038146","EGF_Baseline":"4.22"},{"ID":"FBgn0036018","EGF_Baseline":"-0.11"},{"ID":"FBgn0031741","EGF_Baseline":"-1.6"},{"ID":"FBgn0004594","EGF_Baseline":"-1.23"},{"ID":"FBgn0051861","EGF_Baseline":"-1.06"},{"ID":"FBgn0033097","EGF_Baseline":"0.59"},{"ID":"FBgn0086898","EGF_Baseline":"-0.27"},{"ID":"FBgn0004389","EGF_Baseline":"-0.56"},{"ID":"FBgn0051361","EGF_Baseline":"-1.41"},{"ID":"FBgn0051029","EGF_Baseline":"1.1"},{"ID":"FBgn0259242","EGF_Baseline":"1.32"},{"ID":"FBgn0086908","EGF_Baseline":"-2.89"},{"ID":"FBgn0260456","EGF_Baseline":"0.76"},{"ID":"FBgn0039373","EGF_Baseline":"-0.82"},{"ID":"FBgn0002431","EGF_Baseline":"-1.74"},{"ID":"FBgn0030725","EGF_Baseline":"0.89"},{"ID":"FBgn0037530","EGF_Baseline":"-1.08"},{"ID":"FBgn0019972","EGF_Baseline":"-0.42"},{"ID":"FBgn0259100","EGF_Baseline":"-1.09"},{"ID":"FBgn0036827","EGF_Baseline":"-1.66"},{"ID":"FBgn0039403","EGF_Baseline":"0.66"},{"ID":"FBgn0000181","EGF_Baseline":"0.7"},{"ID":"FBgn0033657","EGF_Baseline":"1.45"},{"ID":"FBgn0053505","EGF_Baseline":"0.32"},{"ID":"FBgn0021796","EGF_Baseline":"1.26"},{"ID":"FBgn0030484","EGF_Baseline":"-0.76"},{"ID":"FBgn0029942","EGF_Baseline":"0.33"},{"ID":"FBgn0031943","EGF_Baseline":"-1.95"},{"ID":"FBgn0026056","EGF_Baseline":"-0.07"},{"ID":"FBgn0003979","EGF_Baseline":"0.5"},{"ID":"FBgn0036176","EGF_Baseline":"-0.07"},{"ID":"FBgn0033789","EGF_Baseline":"-0.5"},{"ID":"FBgn0033280","EGF_Baseline":"-1.24"},{"ID":"FBgn0030520","EGF_Baseline":"-1.2"},{"ID":"FBgn0038014","EGF_Baseline":"-1.85"},{"ID":"FBgn0033145","EGF_Baseline":"-0.73"},{"ID":"FBgn0043841","EGF_Baseline":"-1.04"},{"ID":"FBgn0036013","EGF_Baseline":"-0.81"},{"ID":"FBgn0029737","EGF_Baseline":"-1.83"},{"ID":"FBgn0024236","EGF_Baseline":"-1.22"},{"ID":"FBgn0025835","EGF_Baseline":"1.83"},{"ID":"FBgn0032945","EGF_Baseline":"-0.62"},{"ID":"FBgn0037646","EGF_Baseline":"-0.63"},{"ID":"FBgn0039251","EGF_Baseline":"-1.74"},{"ID":"FBgn0030103","EGF_Baseline":"-0.64"},{"ID":"FBgn0026431","EGF_Baseline":"0.32"},{"ID":"FBgn0032370","EGF_Baseline":"-0.47"},{"ID":"FBgn0028879","EGF_Baseline":"-1.18"},{"ID":"FBgn0032660","EGF_Baseline":"0.6"},{"ID":"FBgn0033982","EGF_Baseline":"-0.9"},{"ID":"FBgn0040211","EGF_Baseline":"-0.77"},{"ID":"FBgn0034289","EGF_Baseline":"-1.36"},{"ID":"FBgn0025613","EGF_Baseline":"-0.13"},{"ID":"FBgn0037061","EGF_Baseline":"0.6"},{"ID":"FBgn0030242","EGF_Baseline":"-0.29"},{"ID":"FBgn0003884","EGF_Baseline":"3.84"},{"ID":"FBgn0035762","EGF_Baseline":"-1.21"},{"ID":"FBgn0038893","EGF_Baseline":"-1.81"},{"ID":"FBgn0003295","EGF_Baseline":"-0.33"},{"ID":"FBgn0036487","EGF_Baseline":"-0.27"},{"ID":"FBgn0085383","EGF_Baseline":"1.03"},{"ID":"FBgn0014024","EGF_Baseline":"-1.65"},{"ID":"FBgn0038649","EGF_Baseline":"1.42"},{"ID":"FBgn0031723","EGF_Baseline":"-0.3"},{"ID":"FBgn0035754","EGF_Baseline":"1.15"},{"ID":"FBgn0032294","EGF_Baseline":"-0.27"},{"ID":"FBgn0036248","EGF_Baseline":"0.68"},{"ID":"FBgn0052473","EGF_Baseline":"1.41"},{"ID":"FBgn0031676","EGF_Baseline":"0.75"},{"ID":"FBgn0035432","EGF_Baseline":"-2.01"},{"ID":"FBgn0031601","EGF_Baseline":"-0.53"},{"ID":"FBgn0036353","EGF_Baseline":"1.04"},{"ID":"FBgn0058298","EGF_Baseline":"-1.6"},{"ID":"FBgn0036749","EGF_Baseline":"-0.18"},{"ID":"FBgn0051418","EGF_Baseline":"0.7"},{"ID":"FBgn0037413","EGF_Baseline":"0.5"},{"ID":"FBgn0036886","EGF_Baseline":"-0.26"},{"ID":"FBgn0031302","EGF_Baseline":"-0.93"},{"ID":"FBgn0027609","EGF_Baseline":"-1.14"},{"ID":"FBgn0010551","EGF_Baseline":"-1.01"},{"ID":"FBgn0051269","EGF_Baseline":"0.69"},{"ID":"FBgn0027560","EGF_Baseline":"-1.55"},{"ID":"FBgn0035461","EGF_Baseline":"-1.43"},{"ID":"FBgn0031034","EGF_Baseline":"0.52"},{"ID":"FBgn0033074","EGF_Baseline":"1.23"},{"ID":"FBgn0030013","EGF_Baseline":"-1.68"},{"ID":"FBgn0004227","EGF_Baseline":"1.77"},{"ID":"FBgn0030508","EGF_Baseline":"-0.39"},{"ID":"FBgn0038492","EGF_Baseline":"0.1"},{"ID":"FBgn0037900","EGF_Baseline":"-0.73"},{"ID":"FBgn0031882","EGF_Baseline":"0.37"},{"ID":"FBgn0050109","EGF_Baseline":"1.22"},{"ID":"FBgn0000120","EGF_Baseline":"0.6"},{"ID":"FBgn0034553","EGF_Baseline":"2.52"},{"ID":"FBgn0051031","EGF_Baseline":"1.69"},{"ID":"FBgn0011230","EGF_Baseline":"-0.84"},{"ID":"FBgn0039773","EGF_Baseline":"-1.29"},{"ID":"FBgn0034913","EGF_Baseline":"1.03"},{"ID":"FBgn0034368","EGF_Baseline":"-1.12"},{"ID":"FBgn0034850","EGF_Baseline":"-1.1"},{"ID":"FBgn0040670","EGF_Baseline":"0.73"},{"ID":"FBgn0003374","EGF_Baseline":"-0.67"},{"ID":"FBgn0035563","EGF_Baseline":"1.97"},{"ID":"FBgn0036040","EGF_Baseline":"-1.36"},{"ID":"FBgn0051139","EGF_Baseline":"0.21"},{"ID":"FBgn0036482","EGF_Baseline":"1.22"},{"ID":"FBgn0039415","EGF_Baseline":"0.47"},{"ID":"FBgn0035211","EGF_Baseline":"-1.34"},{"ID":"FBgn0259823","EGF_Baseline":"-0.08"},{"ID":"FBgn0034159","EGF_Baseline":"-1.49"},{"ID":"FBgn0015790","EGF_Baseline":"0.76"},{"ID":"FBgn0035511","EGF_Baseline":"-0.51"},{"ID":"FBgn0033926","EGF_Baseline":"-1.84"},{"ID":"FBgn0033862","EGF_Baseline":"0.87"},{"ID":"FBgn0033574","EGF_Baseline":"0.38"},{"ID":"FBgn0030954","EGF_Baseline":"-1.01"},{"ID":"FBgn0035914","EGF_Baseline":"-0.92"},{"ID":"FBgn0036962","EGF_Baseline":"-1.7"},{"ID":"FBgn0031181","EGF_Baseline":"-1.32"},{"ID":"FBgn0039681","EGF_Baseline":"-0.58"},{"ID":"FBgn0051526","EGF_Baseline":"1.22"},{"ID":"FBgn0038926","EGF_Baseline":"-0.96"},{"ID":"FBgn0038047","EGF_Baseline":"0.59"},{"ID":"FBgn0039637","EGF_Baseline":"-1.05"},{"ID":"FBgn0030552","EGF_Baseline":"-1.01"},{"ID":"FBgn0028906","EGF_Baseline":"-1.19"},{"ID":"FBgn0037466","EGF_Baseline":"-1.58"},{"ID":"FBgn0050098","EGF_Baseline":"-1.63"},{"ID":"FBgn0050502","EGF_Baseline":"1.63"},{"ID":"FBgn0032546","EGF_Baseline":"-0.47"},{"ID":"FBgn0051792","EGF_Baseline":"-1.23"},{"ID":"FBgn0004915","EGF_Baseline":"0.89"},{"ID":"FBgn0034129","EGF_Baseline":"0.36"},{"ID":"FBgn0035189","EGF_Baseline":"0.65"},{"ID":"FBgn0039009","EGF_Baseline":"-1.73"},{"ID":"FBgn0051642","EGF_Baseline":"-1.63"},{"ID":"FBgn0050148","EGF_Baseline":"1.7"},{"ID":"FBgn0036709","EGF_Baseline":"-0.54"},{"ID":"FBgn0243513","EGF_Baseline":"-1.72"},{"ID":"FBgn0051528","EGF_Baseline":"0.97"},{"ID":"FBgn0038198","EGF_Baseline":"0.18"},{"ID":"FBgn0085292","EGF_Baseline":"-0.3"},{"ID":"FBgn0086130","EGF_Baseline":"-1.5"},{"ID":"FBgn0027583","EGF_Baseline":"-1.11"},{"ID":"FBgn0086704","EGF_Baseline":"-0.87"},{"ID":"FBgn0031251","EGF_Baseline":"-0.86"},{"ID":"FBgn0029648","EGF_Baseline":"1.32"},{"ID":"FBgn0037298","EGF_Baseline":"-1.74"},{"ID":"FBgn0010621","EGF_Baseline":"-1.25"},{"ID":"FBgn0011286","EGF_Baseline":"0.5"},{"ID":"FBgn0041094","EGF_Baseline":"1.19"},{"ID":"FBgn0037439","EGF_Baseline":"1.34"},{"ID":"FBgn0030653","EGF_Baseline":"1.57"},{"ID":"FBgn0086902","EGF_Baseline":"-1.5"},{"ID":"FBgn0053458","EGF_Baseline":"0.7"},{"ID":"FBgn0026083","EGF_Baseline":"-0.21"},{"ID":"FBgn0030010","EGF_Baseline":"-1.61"},{"ID":"FBgn0039152","EGF_Baseline":"-0.73"},{"ID":"FBgn0028952","EGF_Baseline":"-1.22"},{"ID":"FBgn0038647","EGF_Baseline":"-0.71"},{"ID":"FBgn0039343","EGF_Baseline":"-0.47"},{"ID":"FBgn0031285","EGF_Baseline":"0.32"},{"ID":"FBgn0023511","EGF_Baseline":"-0.87"},{"ID":"FBgn0030611","EGF_Baseline":"-0.76"},{"ID":"FBgn0039538","EGF_Baseline":"0.66"},{"ID":"FBgn0039555","EGF_Baseline":"-0.33"},{"ID":"FBgn0029689","EGF_Baseline":"-0.22"},{"ID":"FBgn0035413","EGF_Baseline":"0.89"},{"ID":"FBgn0039277","EGF_Baseline":"-0.34"},{"ID":"FBgn0037915","EGF_Baseline":"-0.2"},{"ID":"FBgn0030878","EGF_Baseline":"-1.01"},{"ID":"FBgn0053555","EGF_Baseline":"-0.68"},{"ID":"FBgn0032925","EGF_Baseline":"0.36"},{"ID":"FBgn0036918","EGF_Baseline":"0.59"},{"ID":"FBgn0261286","EGF_Baseline":"-0.74"},{"ID":"FBgn0027334","EGF_Baseline":"0.34"},{"ID":"FBgn0050163","EGF_Baseline":"-0.22"},{"ID":"FBgn0040666","EGF_Baseline":"1.25"},{"ID":"FBgn0031549","EGF_Baseline":"5.85"},{"ID":"FBgn0261722","EGF_Baseline":"-0.83"},{"ID":"FBgn0035076","EGF_Baseline":"0.61"},{"ID":"FBgn0033648","EGF_Baseline":"-0.64"},{"ID":"FBgn0039713","EGF_Baseline":"5.62"},{"ID":"FBgn0086913","EGF_Baseline":"1.59"},{"ID":"FBgn0036814","EGF_Baseline":"1.24"},{"ID":"FBgn0051974","EGF_Baseline":"1.78"},{"ID":"FBgn0033527","EGF_Baseline":"-0.12"},{"ID":"FBgn0004624","EGF_Baseline":"0.18"},{"ID":"FBgn0011272","EGF_Baseline":"5.71"},{"ID":"FBgn0052704","EGF_Baseline":"-0.96"},{"ID":"FBgn0040364","EGF_Baseline":"1.23"},{"ID":"FBgn0031762","EGF_Baseline":"-2.06"},{"ID":"FBgn0036997","EGF_Baseline":"-0.76"},{"ID":"FBgn0031116","EGF_Baseline":"-1.22"},{"ID":"FBgn0038258","EGF_Baseline":"-1.67"},{"ID":"FBgn0001257","EGF_Baseline":"-0.31"},{"ID":"FBgn0038675","EGF_Baseline":"-0.51"},{"ID":"FBgn0034201","EGF_Baseline":"-1.16"},{"ID":"FBgn0261801","EGF_Baseline":"-0.26"},{"ID":"FBgn0085378","EGF_Baseline":"-2.09"},{"ID":"FBgn0036116","EGF_Baseline":"-0.53"},{"ID":"FBgn0261456","EGF_Baseline":"-1.77"},{"ID":"FBgn0259791","EGF_Baseline":"0.79"},{"ID":"FBgn0031730","EGF_Baseline":"-0.88"},{"ID":"FBgn0000640","EGF_Baseline":"-0.31"},{"ID":"FBgn0039059","EGF_Baseline":"1.18"},{"ID":"FBgn0027865","EGF_Baseline":"-0.12"},{"ID":"FBgn0050413","EGF_Baseline":"-1.63"},{"ID":"FBgn0032336","EGF_Baseline":"-1.67"},{"ID":"FBgn0037757","EGF_Baseline":"-0.67"},{"ID":"FBgn0261625","EGF_Baseline":"0.58"},{"ID":"FBgn0022984","EGF_Baseline":"-0.4"},{"ID":"FBgn0031873","EGF_Baseline":"-0.9"},{"ID":"FBgn0032387","EGF_Baseline":"-0.57"},{"ID":"FBgn0051151","EGF_Baseline":"1.58"},{"ID":"FBgn0015565","EGF_Baseline":"-2.52"},{"ID":"FBgn0028374","EGF_Baseline":"0.89"},{"ID":"FBgn0002562","EGF_Baseline":"0.42"},{"ID":"FBgn0027553","EGF_Baseline":"0.46"},{"ID":"FBgn0259715","EGF_Baseline":"0.97"},{"ID":"FBgn0029603","EGF_Baseline":"1.24"},{"ID":"FBgn0030694","EGF_Baseline":"-0.67"},{"ID":"FBgn0020640","EGF_Baseline":"0.35"},{"ID":"FBgn0039801","EGF_Baseline":"-0.07"},{"ID":"FBgn0035891","EGF_Baseline":"-0.94"},{"ID":"FBgn0011455","EGF_Baseline":"0.23"},{"ID":"FBgn0086610","EGF_Baseline":"1.11"},{"ID":"FBgn0028850","EGF_Baseline":"-0.22"},{"ID":"FBgn0015816","EGF_Baseline":"1.25"},{"ID":"FBgn0032871","EGF_Baseline":"0.72"},{"ID":"FBgn0010105","EGF_Baseline":"-0.74"},{"ID":"FBgn0036321","EGF_Baseline":"-1.05"},{"ID":"FBgn0034705","EGF_Baseline":"-1.09"},{"ID":"FBgn0086608","EGF_Baseline":"0.74"},{"ID":"FBgn0036406","EGF_Baseline":"-0.91"},{"ID":"FBgn0029658","EGF_Baseline":"1.57"},{"ID":"FBgn0039225","EGF_Baseline":"-0.75"},{"ID":"FBgn0025355","EGF_Baseline":"-1.39"},{"ID":"FBgn0027259","EGF_Baseline":"-0.46"},{"ID":"FBgn0036287","EGF_Baseline":"-0.9"},{"ID":"FBgn0035574","EGF_Baseline":"0.89"},{"ID":"FBgn0037611","EGF_Baseline":"-0.39"},{"ID":"FBgn0023416","EGF_Baseline":"-1.27"},{"ID":"FBgn0024833","EGF_Baseline":"-1.15"},{"ID":"FBgn0008651","EGF_Baseline":"-0.8"},{"ID":"FBgn0033873","EGF_Baseline":"1.05"},{"ID":"FBgn0053514","EGF_Baseline":"-1.65"},{"ID":"FBgn0022700","EGF_Baseline":"-0.53"},{"ID":"FBgn0040958","EGF_Baseline":"0.81"},{"ID":"FBgn0039909","EGF_Baseline":"-1.53"},{"ID":"FBgn0034210","EGF_Baseline":"-0.98"},{"ID":"FBgn0261396","EGF_Baseline":"-0.51"},{"ID":"FBgn0027525","EGF_Baseline":"1.24"},{"ID":"FBgn0039087","EGF_Baseline":"-0.98"},{"ID":"FBgn0034661","EGF_Baseline":"-1.18"},{"ID":"FBgn0033056","EGF_Baseline":"0.78"},{"ID":"FBgn0005648","EGF_Baseline":"1.92"},{"ID":"FBgn0035204","EGF_Baseline":"-1.52"},{"ID":"FBgn0259099","EGF_Baseline":"-0.82"},{"ID":"FBgn0036104","EGF_Baseline":"0.5"},{"ID":"FBgn0051323","EGF_Baseline":"-0.54"},{"ID":"FBgn0037131","EGF_Baseline":"-1.53"},{"ID":"FBgn0063499","EGF_Baseline":"1.83"},{"ID":"FBgn0031513","EGF_Baseline":"-1.71"},{"ID":"FBgn0031357","EGF_Baseline":"0.34"},{"ID":"FBgn0032493","EGF_Baseline":"-0.92"},{"ID":"FBgn0039080","EGF_Baseline":"0.78"},{"ID":"FBgn0038256","EGF_Baseline":"0.78"},{"ID":"FBgn0004432","EGF_Baseline":"0.25"},{"ID":"FBgn0250816","EGF_Baseline":"1.01"},{"ID":"FBgn0259222","EGF_Baseline":"1.05"},{"ID":"FBgn0041097","EGF_Baseline":"-0.71"},{"ID":"FBgn0038852","EGF_Baseline":"1.72"},{"ID":"FBgn0023517","EGF_Baseline":"-1.28"},{"ID":"FBgn0033264","EGF_Baseline":"0.5"},{"ID":"FBgn0000644","EGF_Baseline":"1.31"},{"ID":"FBgn0029155","EGF_Baseline":"-0.12"},{"ID":"FBgn0038167","EGF_Baseline":"1.72"},{"ID":"FBgn0040466","EGF_Baseline":"0.67"},{"ID":"FBgn0038354","EGF_Baseline":"-2.69"},{"ID":"FBgn0015924","EGF_Baseline":"0.9"},{"ID":"FBgn0053300","EGF_Baseline":"-1.08"},{"ID":"FBgn0038269","EGF_Baseline":"2.22"},{"ID":"FBgn0036225","EGF_Baseline":"0.62"},{"ID":"FBgn0034899","EGF_Baseline":"1.74"},{"ID":"FBgn0038889","EGF_Baseline":"0.73"},{"ID":"FBgn0003559","EGF_Baseline":"1.77"},{"ID":"FBgn0035270","EGF_Baseline":"-1.4"},{"ID":"FBgn0035151","EGF_Baseline":"0.74"},{"ID":"FBgn0039844","EGF_Baseline":"0.08"},{"ID":"FBgn0023521","EGF_Baseline":"-1.27"},{"ID":"FBgn0038266","EGF_Baseline":"-0.83"},{"ID":"FBgn0033508","EGF_Baseline":"1.31"},{"ID":"FBgn0045866","EGF_Baseline":"0.76"},{"ID":"FBgn0038642","EGF_Baseline":"-2.39"},{"ID":"FBgn0038567","EGF_Baseline":"-1.14"},{"ID":"FBgn0033244","EGF_Baseline":"-0.48"},{"ID":"FBgn0051872","EGF_Baseline":"0.79"},{"ID":"FBgn0053792","EGF_Baseline":"-1.12"},{"ID":"FBgn0038219","EGF_Baseline":"-0.91"},{"ID":"FBgn0000212","EGF_Baseline":"0.98"},{"ID":"FBgn0038805","EGF_Baseline":"-0.7"},{"ID":"FBgn0032151","EGF_Baseline":"-1.52"},{"ID":"FBgn0260933","EGF_Baseline":"0.11"},{"ID":"FBgn0050287","EGF_Baseline":"1.19"},{"ID":"FBgn0003326","EGF_Baseline":"0.97"},{"ID":"FBgn0031757","EGF_Baseline":"0.47"},{"ID":"FBgn0032066","EGF_Baseline":"-1.6"},{"ID":"FBgn0030050","EGF_Baseline":"0.26"},{"ID":"FBgn0033153","EGF_Baseline":"-1.12"},{"ID":"FBgn0030007","EGF_Baseline":"-1.55"},{"ID":"FBgn0010611","EGF_Baseline":"1.26"},{"ID":"FBgn0261067","EGF_Baseline":"0.48"},{"ID":"FBgn0035393","EGF_Baseline":"-2.11"},{"ID":"FBgn0034354","EGF_Baseline":"0.65"},{"ID":"FBgn0034924","EGF_Baseline":"1.09"},{"ID":"FBgn0023197","EGF_Baseline":"-0.56"},{"ID":"FBgn0036781","EGF_Baseline":"-0.71"},{"ID":"FBgn0029791","EGF_Baseline":"-0.68"},{"ID":"FBgn0001297","EGF_Baseline":"1.18"},{"ID":"FBgn0030338","EGF_Baseline":"-0.56"},{"ID":"FBgn0029724","EGF_Baseline":"0.28"},{"ID":"FBgn0027621","EGF_Baseline":"0.76"},{"ID":"FBgn0037786","EGF_Baseline":"0.65"},{"ID":"FBgn0036202","EGF_Baseline":"0.49"},{"ID":"FBgn0032513","EGF_Baseline":"-0.6"},{"ID":"FBgn0024364","EGF_Baseline":"-0.29"},{"ID":"FBgn0036072","EGF_Baseline":"-1.13"},{"ID":"FBgn0035410","EGF_Baseline":"0.5"},{"ID":"FBgn0040087","EGF_Baseline":"0.14"},{"ID":"FBgn0040553","EGF_Baseline":"-1"},{"ID":"FBgn0004855","EGF_Baseline":"2.12"},{"ID":"FBgn0038131","EGF_Baseline":"-1.39"},{"ID":"FBgn0034128","EGF_Baseline":"0.78"},{"ID":"FBgn0031638","EGF_Baseline":"0.77"},{"ID":"FBgn0032943","EGF_Baseline":"-0.95"},{"ID":"FBgn0085313","EGF_Baseline":"-1.49"},{"ID":"FBgn0032721","EGF_Baseline":"-1.35"},{"ID":"FBgn0261858","EGF_Baseline":"-0.75"},{"ID":"FBgn0003206","EGF_Baseline":"2.13"},{"ID":"FBgn0035679","EGF_Baseline":"-0.99"},{"ID":"FBgn0038547","EGF_Baseline":"-2.58"},{"ID":"FBgn0038467","EGF_Baseline":"-1.41"},{"ID":"FBgn0034173","EGF_Baseline":"0.48"},{"ID":"FBgn0033366","EGF_Baseline":"-1.13"},{"ID":"FBgn0004649","EGF_Baseline":"-1.05"},{"ID":"FBgn0037561","EGF_Baseline":"-0.73"},{"ID":"FBgn0052376","EGF_Baseline":"0.84"},{"ID":"FBgn0038206","EGF_Baseline":"-0.47"},{"ID":"FBgn0011569","EGF_Baseline":"1.4"},{"ID":"FBgn0033726","EGF_Baseline":"-0.32"},{"ID":"FBgn0037975","EGF_Baseline":"-0.24"},{"ID":"FBgn0052263","EGF_Baseline":"-1.43"},{"ID":"FBgn0030859","EGF_Baseline":"-1.28"},{"ID":"FBgn0031392","EGF_Baseline":"-1.51"},{"ID":"FBgn0041625","EGF_Baseline":"-1.93"},{"ID":"FBgn0037008","EGF_Baseline":"0.49"},{"ID":"FBgn0034511","EGF_Baseline":"0.69"},{"ID":"FBgn0033330","EGF_Baseline":"0.53"},{"ID":"FBgn0260442","EGF_Baseline":"0.71"},{"ID":"FBgn0032223","EGF_Baseline":"0.48"},{"ID":"FBgn0002906","EGF_Baseline":"-1.96"},{"ID":"FBgn0259192","EGF_Baseline":"-0.61"},{"ID":"FBgn0036266","EGF_Baseline":"-0.56"},{"ID":"FBgn0010263","EGF_Baseline":"-2.22"},{"ID":"FBgn0085234","EGF_Baseline":"-2.47"},{"ID":"FBgn0032971","EGF_Baseline":"-1.42"},{"ID":"FBgn0035476","EGF_Baseline":"-0.84"},{"ID":"FBgn0038450","EGF_Baseline":"0.5"},{"ID":"FBgn0050118","EGF_Baseline":"1.38"},{"ID":"FBgn0032523","EGF_Baseline":"-1.61"},{"ID":"FBgn0038783","EGF_Baseline":"-1.42"},{"ID":"FBgn0000416","EGF_Baseline":"-0.99"},{"ID":"FBgn0036078","EGF_Baseline":"-1.35"},{"ID":"FBgn0039718","EGF_Baseline":"1.5"},{"ID":"FBgn0032698","EGF_Baseline":"-0.5"},{"ID":"FBgn0044812","EGF_Baseline":"-1.28"},{"ID":"FBgn0036187","EGF_Baseline":"-0.72"},{"ID":"FBgn0028406","EGF_Baseline":"1.32"},{"ID":"FBgn0031309","EGF_Baseline":"-1.43"},{"ID":"FBgn0052834","EGF_Baseline":"0.45"},{"ID":"FBgn0050172","EGF_Baseline":"1.1"},{"ID":"FBgn0031878","EGF_Baseline":"0.39"},{"ID":"FBgn0004868","EGF_Baseline":"0.91"},{"ID":"FBgn0034724","EGF_Baseline":"-1.46"},{"ID":"FBgn0034196","EGF_Baseline":"-1.06"},{"ID":"FBgn0036363","EGF_Baseline":"0.51"},{"ID":"FBgn0004861","EGF_Baseline":"0.7"},{"ID":"FBgn0038115","EGF_Baseline":"0.76"},{"ID":"FBgn0039313","EGF_Baseline":"-1.81"},{"ID":"FBgn0086689","EGF_Baseline":"-2"},{"ID":"FBgn0063492","EGF_Baseline":"1.09"},{"ID":"FBgn0030266","EGF_Baseline":"0.58"},{"ID":"FBgn0037265","EGF_Baseline":"-0.55"},{"ID":"FBgn0037101","EGF_Baseline":"-1.67"},{"ID":"FBgn0040323","EGF_Baseline":"-1.71"},{"ID":"FBgn0052260","EGF_Baseline":"-0.99"},{"ID":"FBgn0003302","EGF_Baseline":"0.37"},{"ID":"FBgn0052829","EGF_Baseline":"4.75"},{"ID":"FBgn0038598","EGF_Baseline":"-2.29"},{"ID":"FBgn0033814","EGF_Baseline":"-1.91"},{"ID":"FBgn0040391","EGF_Baseline":"-0.39"},{"ID":"FBgn0030162","EGF_Baseline":"1.33"},{"ID":"FBgn0011704","EGF_Baseline":"-0.94"},{"ID":"FBgn0023549","EGF_Baseline":"0.53"},{"ID":"FBgn0034879","EGF_Baseline":"-0.52"},{"ID":"FBgn0030257","EGF_Baseline":"0.84"},{"ID":"FBgn0033463","EGF_Baseline":"-1"},{"ID":"FBgn0031688","EGF_Baseline":"0.28"},{"ID":"FBgn0003942","EGF_Baseline":"3.13"},{"ID":"FBgn0031659","EGF_Baseline":"1.36"},{"ID":"FBgn0031995","EGF_Baseline":"1.04"},{"ID":"FBgn0032753","EGF_Baseline":"-1.41"},{"ID":"FBgn0029825","EGF_Baseline":"0.73"},{"ID":"FBgn0032888","EGF_Baseline":"-0.78"},{"ID":"FBgn0052590","EGF_Baseline":"1.19"},{"ID":"FBgn0016696","EGF_Baseline":"2.61"},{"ID":"FBgn0036716","EGF_Baseline":"0.5"},{"ID":"FBgn0031860","EGF_Baseline":"0.67"},{"ID":"FBgn0036579","EGF_Baseline":"-1.52"},{"ID":"FBgn0013303","EGF_Baseline":"-1.13"},{"ID":"FBgn0037856","EGF_Baseline":"1.12"},{"ID":"FBgn0039296","EGF_Baseline":"0.13"},{"ID":"FBgn0030643","EGF_Baseline":"0.19"},{"ID":"FBgn0038873","EGF_Baseline":"0.25"},{"ID":"FBgn0032729","EGF_Baseline":"-0.62"},{"ID":"FBgn0036154","EGF_Baseline":"0.31"},{"ID":"FBgn0033170","EGF_Baseline":"1.25"},{"ID":"FBgn0053642","EGF_Baseline":"0.46"},{"ID":"FBgn0083978","EGF_Baseline":"0.9"},{"ID":"FBgn0026176","EGF_Baseline":"-1.29"},{"ID":"FBgn0031020","EGF_Baseline":"-1.39"},{"ID":"FBgn0039115","EGF_Baseline":"1.11"},{"ID":"FBgn0026080","EGF_Baseline":"1.07"},{"ID":"FBgn0011244","EGF_Baseline":"-0.64"},{"ID":"FBgn0021738","EGF_Baseline":"-1.49"},{"ID":"FBgn0051230","EGF_Baseline":"-0.75"},{"ID":"FBgn0022361","EGF_Baseline":"0.19"},{"ID":"FBgn0034726","EGF_Baseline":"-1.97"},{"ID":"FBgn0032126","EGF_Baseline":"-1.03"},{"ID":"FBgn0045478","EGF_Baseline":"-0.51"},{"ID":"FBgn0010422","EGF_Baseline":"-1.56"},{"ID":"FBgn0029114","EGF_Baseline":"0.98"},{"ID":"FBgn0002638","EGF_Baseline":"0.43"},{"ID":"FBgn0028935","EGF_Baseline":"-0.57"},{"ID":"FBgn0033957","EGF_Baseline":"-0.51"},{"ID":"FBgn0015774","EGF_Baseline":"-1.59"},{"ID":"FBgn0040075","EGF_Baseline":"-2.17"},{"ID":"FBgn0033395","EGF_Baseline":"-1.15"},{"ID":"FBgn0030195","EGF_Baseline":"-1.19"},{"ID":"FBgn0034721","EGF_Baseline":"-1.14"},{"ID":"FBgn0036204","EGF_Baseline":"-1.04"},{"ID":"FBgn0000533","EGF_Baseline":"-0.88"},{"ID":"FBgn0039239","EGF_Baseline":"-1.79"},{"ID":"FBgn0038348","EGF_Baseline":"-0.95"},{"ID":"FBgn0035849","EGF_Baseline":"0.88"},{"ID":"FBgn0036783","EGF_Baseline":"0.46"},{"ID":"FBgn0040318","EGF_Baseline":"-0.83"},{"ID":"FBgn0260721","EGF_Baseline":"0.22"},{"ID":"FBgn0260746","EGF_Baseline":"0.52"},{"ID":"FBgn0259676","EGF_Baseline":"-0.44"},{"ID":"FBgn0041205","EGF_Baseline":"-1.32"},{"ID":"FBgn0035356","EGF_Baseline":"-0.23"},{"ID":"FBgn0028884","EGF_Baseline":"-1.17"},{"ID":"FBgn0026319","EGF_Baseline":"-1.97"},{"ID":"FBgn0025790","EGF_Baseline":"1.63"},{"ID":"FBgn0250757","EGF_Baseline":"-1.04"},{"ID":"FBgn0038402","EGF_Baseline":"0.27"},{"ID":"FBgn0040299","EGF_Baseline":"1.18"},{"ID":"FBgn0259149","EGF_Baseline":"-1.33"},{"ID":"FBgn0003716","EGF_Baseline":"-1.11"},{"ID":"FBgn0086442","EGF_Baseline":"-0.46"},{"ID":"FBgn0031613","EGF_Baseline":"-0.22"},{"ID":"FBgn0004057","EGF_Baseline":"0.58"},{"ID":"FBgn0003346","EGF_Baseline":"-1.01"},{"ID":"FBgn0065109","EGF_Baseline":"0.29"},{"ID":"FBgn0261058","EGF_Baseline":"0.61"},{"ID":"FBgn0043533","EGF_Baseline":"0.39"},{"ID":"FBgn0039748","EGF_Baseline":"2.14"},{"ID":"FBgn0003447","EGF_Baseline":"-0.7"},{"ID":"FBgn0030836","EGF_Baseline":"0.59"},{"ID":"FBgn0031479","EGF_Baseline":"-0.5"},{"ID":"FBgn0011828","EGF_Baseline":"0.78"},{"ID":"FBgn0038505","EGF_Baseline":"0.42"},{"ID":"FBgn0037995","EGF_Baseline":"0.95"},{"ID":"FBgn0027513","EGF_Baseline":"1.66"},{"ID":"FBgn0036839","EGF_Baseline":"-2"},{"ID":"FBgn0015831","EGF_Baseline":"1.38"},{"ID":"FBgn0026373","EGF_Baseline":"2.14"},{"ID":"FBgn0035922","EGF_Baseline":"-1.02"},{"ID":"FBgn0034663","EGF_Baseline":"0.5"},{"ID":"FBgn0037749","EGF_Baseline":"-0.1"},{"ID":"FBgn0035642","EGF_Baseline":"0.64"},{"ID":"FBgn0086691","EGF_Baseline":"0.23"},{"ID":"FBgn0069913","EGF_Baseline":"-0.74"},{"ID":"FBgn0051759","EGF_Baseline":"1.42"},{"ID":"FBgn0250842","EGF_Baseline":"0.97"},{"ID":"FBgn0040493","EGF_Baseline":"-1.73"},{"ID":"FBgn0036571","EGF_Baseline":"0.94"},{"ID":"FBgn0033131","EGF_Baseline":"-1.33"},{"ID":"FBgn0023531","EGF_Baseline":"3.28"},{"ID":"FBgn0085442","EGF_Baseline":"1.87"},{"ID":"FBgn0051634","EGF_Baseline":"-1.47"},{"ID":"FBgn0085428","EGF_Baseline":"-0.9"},{"ID":"FBgn0051661","EGF_Baseline":"0.29"},{"ID":"FBgn0036214","EGF_Baseline":"0.38"},{"ID":"FBgn0039270","EGF_Baseline":"0.3"},{"ID":"FBgn0034152","EGF_Baseline":"-1.19"},{"ID":"FBgn0002022","EGF_Baseline":"-1.56"},{"ID":"FBgn0032627","EGF_Baseline":"-1.23"},{"ID":"FBgn0051949","EGF_Baseline":"-0.92"},{"ID":"FBgn0011290","EGF_Baseline":"-1.38"},{"ID":"FBgn0025625","EGF_Baseline":"1.46"},{"ID":"FBgn0051431","EGF_Baseline":"1.03"},{"ID":"FBgn0050357","EGF_Baseline":"2.52"},{"ID":"FBgn0053483","EGF_Baseline":"-0.35"},{"ID":"FBgn0250908","EGF_Baseline":"-0.49"},{"ID":"FBgn0054026","EGF_Baseline":"-1.16"},{"ID":"FBgn0041232","EGF_Baseline":"-0.57"},{"ID":"FBgn0026394","EGF_Baseline":"-1.76"},{"ID":"FBgn0030984","EGF_Baseline":"-0.16"},{"ID":"FBgn0038672","EGF_Baseline":"-1.21"},{"ID":"FBgn0030306","EGF_Baseline":"-1.21"},{"ID":"FBgn0034441","EGF_Baseline":"-0.63"},{"ID":"FBgn0038602","EGF_Baseline":"-1.37"},{"ID":"FBgn0050340","EGF_Baseline":"1.29"},{"ID":"FBgn0027364","EGF_Baseline":"-0.15"},{"ID":"FBgn0014007","EGF_Baseline":"-1.47"},{"ID":"FBgn0030421","EGF_Baseline":"-1.4"},{"ID":"FBgn0038282","EGF_Baseline":"0.32"},{"ID":"FBgn0037847","EGF_Baseline":"-0.07"},{"ID":"FBgn0033059","EGF_Baseline":"-0.15"},{"ID":"FBgn0035931","EGF_Baseline":"0.83"},{"ID":"FBgn0033993","EGF_Baseline":"-0.67"},{"ID":"FBgn0035850","EGF_Baseline":"0.93"},{"ID":"FBgn0003996","EGF_Baseline":"0.7"},{"ID":"FBgn0051824","EGF_Baseline":"0.98"},{"ID":"FBgn0027945","EGF_Baseline":"0.18"},{"ID":"FBgn0261836","EGF_Baseline":"1.5"},{"ID":"FBgn0011297","EGF_Baseline":"-0.49"},{"ID":"FBgn0037591","EGF_Baseline":"-1.56"},{"ID":"FBgn0016687","EGF_Baseline":"1.53"},{"ID":"FBgn0261509","EGF_Baseline":"-0.22"},{"ID":"FBgn0027929","EGF_Baseline":"-0.5"},{"ID":"FBgn0033266","EGF_Baseline":"-1.04"},{"ID":"FBgn0004926","EGF_Baseline":"0.87"},{"ID":"FBgn0030037","EGF_Baseline":"0.42"},{"ID":"FBgn0010504","EGF_Baseline":"-0.4"},{"ID":"FBgn0085297","EGF_Baseline":"-0.26"},{"ID":"FBgn0029892","EGF_Baseline":"0.54"},{"ID":"FBgn0029088","EGF_Baseline":"1.03"},{"ID":"FBgn0051174","EGF_Baseline":"-1.49"},{"ID":"FBgn0261532","EGF_Baseline":"1.45"},{"ID":"FBgn0030374","EGF_Baseline":"0.64"},{"ID":"FBgn0031859","EGF_Baseline":"1.7"},{"ID":"FBgn0261565","EGF_Baseline":"-2.43"},{"ID":"FBgn0050393","EGF_Baseline":"-0.62"},{"ID":"FBgn0034142","EGF_Baseline":"1.22"},{"ID":"FBgn0036310","EGF_Baseline":"-0.65"},{"ID":"FBgn0259215","EGF_Baseline":"1.31"},{"ID":"FBgn0037482","EGF_Baseline":"0.59"},{"ID":"FBgn0037760","EGF_Baseline":"1.21"},{"ID":"FBgn0261788","EGF_Baseline":"1.19"},{"ID":"FBgn0000479","EGF_Baseline":"0.63"},{"ID":"FBgn0037433","EGF_Baseline":"0.9"},{"ID":"FBgn0021764","EGF_Baseline":"0.77"},{"ID":"FBgn0000158","EGF_Baseline":"1.37"},{"ID":"FBgn0033466","EGF_Baseline":"-0.73"},{"ID":"FBgn0033594","EGF_Baseline":"-1.22"},{"ID":"FBgn0037420","EGF_Baseline":"-2.05"},{"ID":"FBgn0033501","EGF_Baseline":"-0.67"},{"ID":"FBgn0038720","EGF_Baseline":"1.08"},{"ID":"FBgn0034822","EGF_Baseline":"-0.61"},{"ID":"FBgn0028387","EGF_Baseline":"1.05"},{"ID":"FBgn0037492","EGF_Baseline":"-0.5"},{"ID":"FBgn0000183","EGF_Baseline":"1.49"},{"ID":"FBgn0000546","EGF_Baseline":"1.45"},{"ID":"FBgn0024329","EGF_Baseline":"-1.49"},{"ID":"FBgn0040261","EGF_Baseline":"-1.18"},{"ID":"FBgn0039792","EGF_Baseline":"1.27"},{"ID":"FBgn0033928","EGF_Baseline":"0.91"},{"ID":"FBgn0033735","EGF_Baseline":"-1.17"},{"ID":"FBgn0036830","EGF_Baseline":"-1.8"},{"ID":"FBgn0020616","EGF_Baseline":"-1.13"},{"ID":"FBgn0031491","EGF_Baseline":"-0.66"},{"ID":"FBgn0019925","EGF_Baseline":"0.81"},{"ID":"FBgn0033246","EGF_Baseline":"0.22"},{"ID":"FBgn0030259","EGF_Baseline":"0.97"},{"ID":"FBgn0034901","EGF_Baseline":"0.49"},{"ID":"FBgn0013347","EGF_Baseline":"-1.32"},{"ID":"FBgn0027616","EGF_Baseline":"-1.25"},{"ID":"FBgn0040877","EGF_Baseline":"-0.6"},{"ID":"FBgn0032600","EGF_Baseline":"-0.83"},{"ID":"FBgn0039369","EGF_Baseline":"-0.79"},{"ID":"FBgn0037516","EGF_Baseline":"-0.8"},{"ID":"FBgn0035001","EGF_Baseline":"0.74"},{"ID":"FBgn0036751","EGF_Baseline":"-0.81"},{"ID":"FBgn0035975","EGF_Baseline":"-2.13"},{"ID":"FBgn0037850","EGF_Baseline":"0.29"},{"ID":"FBgn0052259","EGF_Baseline":"0.42"},{"ID":"FBgn0032781","EGF_Baseline":"0.31"},{"ID":"FBgn0031997","EGF_Baseline":"-1.47"},{"ID":"FBgn0034766","EGF_Baseline":"-0.43"},{"ID":"FBgn0022268","EGF_Baseline":"0.68"},{"ID":"FBgn0036937","EGF_Baseline":"0.69"},{"ID":"FBgn0000611","EGF_Baseline":"0.6"},{"ID":"FBgn0052687","EGF_Baseline":"-0.3"},{"ID":"FBgn0034502","EGF_Baseline":"0.56"},{"ID":"FBgn0036415","EGF_Baseline":"0.22"},{"ID":"FBgn0043903","EGF_Baseline":"-1.14"},{"ID":"FBgn0260645","EGF_Baseline":"-1.17"},{"ID":"FBgn0035083","EGF_Baseline":"1.4"},{"ID":"FBgn0001124","EGF_Baseline":"-1.19"},{"ID":"FBgn0040208","EGF_Baseline":"-1.65"},{"ID":"FBgn0031144","EGF_Baseline":"2.49"},{"ID":"FBgn0044328","EGF_Baseline":"0.9"},{"ID":"FBgn0031453","EGF_Baseline":"-0.53"},{"ID":"FBgn0035693","EGF_Baseline":"-1.14"},{"ID":"FBgn0035027","EGF_Baseline":"0.82"},{"ID":"FBgn0031528","EGF_Baseline":"0.5"},{"ID":"FBgn0039696","EGF_Baseline":"-0.6"},{"ID":"FBgn0040907","EGF_Baseline":"-1.03"},{"ID":"FBgn0029941","EGF_Baseline":"1.27"},{"ID":"FBgn0053490","EGF_Baseline":"-0.79"},{"ID":"FBgn0038525","EGF_Baseline":"0.53"},{"ID":"FBgn0085396","EGF_Baseline":"-1.8"},{"ID":"FBgn0037217","EGF_Baseline":"0.38"},{"ID":"FBgn0032448","EGF_Baseline":"-0.44"},{"ID":"FBgn0051624","EGF_Baseline":"-1.68"},{"ID":"FBgn0033029","EGF_Baseline":"2.24"},{"ID":"FBgn0034569","EGF_Baseline":"0.79"},{"ID":"FBgn0001149","EGF_Baseline":"0.36"},{"ID":"FBgn0034539","EGF_Baseline":"-0.8"},{"ID":"FBgn0034542","EGF_Baseline":"-0.68"},{"ID":"FBgn0033083","EGF_Baseline":"2.73"},{"ID":"FBgn0041247","EGF_Baseline":"0.76"},{"ID":"FBgn0033932","EGF_Baseline":"0.6"},{"ID":"FBgn0030700","EGF_Baseline":"0.81"},{"ID":"FBgn0032000","EGF_Baseline":"0.53"},{"ID":"FBgn0026090","EGF_Baseline":"0.32"},{"ID":"FBgn0033187","EGF_Baseline":"-0.93"},{"ID":"FBgn0010488","EGF_Baseline":"-0.63"},{"ID":"FBgn0004878","EGF_Baseline":"0.46"},{"ID":"FBgn0000116","EGF_Baseline":"3.3"},{"ID":"FBgn0037416","EGF_Baseline":"1.17"},{"ID":"FBgn0034487","EGF_Baseline":"0.28"},{"ID":"FBgn0033104","EGF_Baseline":"-1"},{"ID":"FBgn0032634","EGF_Baseline":"1.19"},{"ID":"FBgn0028863","EGF_Baseline":"-1.03"},{"ID":"FBgn0030998","EGF_Baseline":"-0.89"},{"ID":"FBgn0039648","EGF_Baseline":"0.52"},{"ID":"FBgn0036557","EGF_Baseline":"-1.38"},{"ID":"FBgn0051690","EGF_Baseline":"-1.03"},{"ID":"FBgn0011582","EGF_Baseline":"0.44"},{"ID":"FBgn0038275","EGF_Baseline":"-0.41"},{"ID":"FBgn0017581","EGF_Baseline":"-0.74"},{"ID":"FBgn0038956","EGF_Baseline":"-0.99"},{"ID":"FBgn0038510","EGF_Baseline":"0.75"},{"ID":"FBgn0038330","EGF_Baseline":"-1"},{"ID":"FBgn0038001","EGF_Baseline":"0.61"},{"ID":"FBgn0004052","EGF_Baseline":"-0.85"},{"ID":"FBgn0033275","EGF_Baseline":"0.34"},{"ID":"FBgn0035718","EGF_Baseline":"1.18"},{"ID":"FBgn0033499","EGF_Baseline":"-1.29"},{"ID":"FBgn0029105","EGF_Baseline":"-0.38"},{"ID":"FBgn0037533","EGF_Baseline":"1.76"},{"ID":"FBgn0033382","EGF_Baseline":"-0.79"},{"ID":"FBgn0259176","EGF_Baseline":"1.8"},{"ID":"FBgn0034554","EGF_Baseline":"-0.89"},{"ID":"FBgn0037930","EGF_Baseline":"-0.62"},{"ID":"FBgn0023216","EGF_Baseline":"-0.89"},{"ID":"FBgn0040719","EGF_Baseline":"-0.33"},{"ID":"FBgn0033431","EGF_Baseline":"-0.64"},{"ID":"FBgn0004431","EGF_Baseline":"-1.6"},{"ID":"FBgn0035842","EGF_Baseline":"-1.36"},{"ID":"FBgn0034583","EGF_Baseline":"-0.43"},{"ID":"FBgn0033899","EGF_Baseline":"-1.3"},{"ID":"FBgn0038210","EGF_Baseline":"-1.72"},{"ID":"FBgn0027527","EGF_Baseline":"-0.41"},{"ID":"FBgn0050183","EGF_Baseline":"-0.83"},{"ID":"FBgn0036685","EGF_Baseline":"-0.74"},{"ID":"FBgn0039182","EGF_Baseline":"0.81"},{"ID":"FBgn0037415","EGF_Baseline":"1.21"},{"ID":"FBgn0026721","EGF_Baseline":"-0.47"},{"ID":"FBgn0032393","EGF_Baseline":"-1.5"},{"ID":"FBgn0003416","EGF_Baseline":"4"},{"ID":"FBgn0032563","EGF_Baseline":"0.83"},{"ID":"FBgn0030722","EGF_Baseline":"1.1"},{"ID":"FBgn0030589","EGF_Baseline":"-1.53"},{"ID":"FBgn0030943","EGF_Baseline":"1.1"},{"ID":"FBgn0040305","EGF_Baseline":"-2.04"},{"ID":"FBgn0039337","EGF_Baseline":"1.36"},{"ID":"FBgn0042129","EGF_Baseline":"-2.13"},{"ID":"FBgn0038398","EGF_Baseline":"0.36"},{"ID":"FBgn0034657","EGF_Baseline":"-1.37"},{"ID":"FBgn0029762","EGF_Baseline":"-1.28"},{"ID":"FBgn0002531","EGF_Baseline":"0.92"},{"ID":"FBgn0052507","EGF_Baseline":"1.59"},{"ID":"FBgn0034915","EGF_Baseline":"3.08"},{"ID":"FBgn0035137","EGF_Baseline":"1.33"},{"ID":"FBgn0016926","EGF_Baseline":"1.39"},{"ID":"FBgn0016075","EGF_Baseline":"1.12"},{"ID":"FBgn0000308","EGF_Baseline":"-0.4"},{"ID":"FBgn0034094","EGF_Baseline":"-1.32"},{"ID":"FBgn0027932","EGF_Baseline":"0.72"},{"ID":"FBgn0051404","EGF_Baseline":"-1.64"},{"ID":"FBgn0039189","EGF_Baseline":"0.97"},{"ID":"FBgn0029656","EGF_Baseline":"-0.99"},{"ID":"FBgn0013981","EGF_Baseline":"0.62"},{"ID":"FBgn0035325","EGF_Baseline":"0.97"},{"ID":"FBgn0051741","EGF_Baseline":"-0.35"},{"ID":"FBgn0026741","EGF_Baseline":"-1.39"},{"ID":"FBgn0027342","EGF_Baseline":"-0.47"},{"ID":"FBgn0000137","EGF_Baseline":"-1.4"},{"ID":"FBgn0034572","EGF_Baseline":"2.02"},{"ID":"FBgn0032907","EGF_Baseline":"0.89"},{"ID":"FBgn0010288","EGF_Baseline":"-1.08"},{"ID":"FBgn0051155","EGF_Baseline":"3.55"},{"ID":"FBgn0034223","EGF_Baseline":"-1.06"},{"ID":"FBgn0037360","EGF_Baseline":"-1.29"},{"ID":"FBgn0054030","EGF_Baseline":"0.86"},{"ID":"FBgn0001169","EGF_Baseline":"0.81"},{"ID":"FBgn0052563","EGF_Baseline":"0.95"},{"ID":"FBgn0051374","EGF_Baseline":"0.59"},{"ID":"FBgn0052713","EGF_Baseline":"-0.83"},{"ID":"FBgn0052391","EGF_Baseline":"-1.23"},{"ID":"FBgn0034478","EGF_Baseline":"1"},{"ID":"FBgn0003401","EGF_Baseline":"1.45"},{"ID":"FBgn0004509","EGF_Baseline":"-1.56"},{"ID":"FBgn0029525","EGF_Baseline":"-1.69"},{"ID":"FBgn0036285","EGF_Baseline":"1.96"},{"ID":"FBgn0032084","EGF_Baseline":"-0.95"},{"ID":"FBgn0032908","EGF_Baseline":"2.17"},{"ID":"FBgn0033050","EGF_Baseline":"0.85"},{"ID":"FBgn0033379","EGF_Baseline":"1.24"},{"ID":"FBgn0028665","EGF_Baseline":"-0.53"},{"ID":"FBgn0032029","EGF_Baseline":"0.38"},{"ID":"FBgn0030792","EGF_Baseline":"-1.06"},{"ID":"FBgn0029880","EGF_Baseline":"-0.57"},{"ID":"FBgn0031563","EGF_Baseline":"2.26"},{"ID":"FBgn0040338","EGF_Baseline":"0.92"},{"ID":"FBgn0032249","EGF_Baseline":"0.34"},{"ID":"FBgn0039674","EGF_Baseline":"-1.32"},{"ID":"FBgn0021953","EGF_Baseline":"-1.28"},{"ID":"FBgn0033475","EGF_Baseline":"-1.01"},{"ID":"FBgn0000384","EGF_Baseline":"0.11"},{"ID":"FBgn0050096","EGF_Baseline":"-0.54"},{"ID":"FBgn0041588","EGF_Baseline":"-0.57"},{"ID":"FBgn0037894","EGF_Baseline":"-0.88"},{"ID":"FBgn0010041","EGF_Baseline":"-0.54"},{"ID":"FBgn0014342","EGF_Baseline":"-0.92"},{"ID":"FBgn0026395","EGF_Baseline":"0.44"},{"ID":"FBgn0033215","EGF_Baseline":"-0.43"},{"ID":"FBgn0031773","EGF_Baseline":"1.36"},{"ID":"FBgn0011694","EGF_Baseline":"-0.61"},{"ID":"FBgn0034703","EGF_Baseline":"-1.45"},{"ID":"FBgn0037814","EGF_Baseline":"1.67"},{"ID":"FBgn0033679","EGF_Baseline":"-1.82"},{"ID":"FBgn0031538","EGF_Baseline":"-0.97"},{"ID":"FBgn0031498","EGF_Baseline":"-1.57"},{"ID":"FBgn0040809","EGF_Baseline":"-0.75"},{"ID":"FBgn0053557","EGF_Baseline":"-0.33"},{"ID":"FBgn0052103","EGF_Baseline":"1.09"},{"ID":"FBgn0052631","EGF_Baseline":"-1.09"},{"ID":"FBgn0035588","EGF_Baseline":"-0.29"},{"ID":"FBgn0033919","EGF_Baseline":"0.18"},{"ID":"FBgn0026620","EGF_Baseline":"-0.5"},{"ID":"FBgn0051612","EGF_Baseline":"-1.13"},{"ID":"FBgn0046222","EGF_Baseline":"-0.93"},{"ID":"FBgn0015001","EGF_Baseline":"-0.37"},{"ID":"FBgn0052727","EGF_Baseline":"-1.2"},{"ID":"FBgn0033996","EGF_Baseline":"-2.26"},{"ID":"FBgn0036546","EGF_Baseline":"0.67"},{"ID":"FBgn0259219","EGF_Baseline":"-0.68"},{"ID":"FBgn0085265","EGF_Baseline":"-0.81"},{"ID":"FBgn0032340","EGF_Baseline":"0.07"},{"ID":"FBgn0003463","EGF_Baseline":"0.95"},{"ID":"FBgn0050104","EGF_Baseline":"-0.3"},{"ID":"FBgn0035255","EGF_Baseline":"0.74"},{"ID":"FBgn0043578","EGF_Baseline":"0.73"},{"ID":"FBgn0035929","EGF_Baseline":"-0.31"},{"ID":"FBgn0016041","EGF_Baseline":"-0.9"},{"ID":"FBgn0031988","EGF_Baseline":"1.57"},{"ID":"FBgn0030850","EGF_Baseline":"-0.97"},{"ID":"FBgn0004687","EGF_Baseline":"-0.44"},{"ID":"FBgn0040268","EGF_Baseline":"1.25"},{"ID":"FBgn0034394","EGF_Baseline":"-0.91"},{"ID":"FBgn0027338","EGF_Baseline":"-0.81"},{"ID":"FBgn0036138","EGF_Baseline":"-0.62"},{"ID":"FBgn0024689","EGF_Baseline":"0.63"},{"ID":"FBgn0260798","EGF_Baseline":"-0.83"},{"ID":"FBgn0039734","EGF_Baseline":"-0.19"},{"ID":"FBgn0033687","EGF_Baseline":"-1.31"},{"ID":"FBgn0031164","EGF_Baseline":"-0.9"},{"ID":"FBgn0033458","EGF_Baseline":"-0.15"},{"ID":"FBgn0038440","EGF_Baseline":"0.26"},{"ID":"FBgn0031209","EGF_Baseline":"1.76"},{"ID":"FBgn0034232","EGF_Baseline":"-0.46"},{"ID":"FBgn0038381","EGF_Baseline":"-1.56"},{"ID":"FBgn0037063","EGF_Baseline":"0.88"},{"ID":"FBgn0052106","EGF_Baseline":"0.28"},{"ID":"FBgn0030418","EGF_Baseline":"-1.29"},{"ID":"FBgn0035685","EGF_Baseline":"-1.33"},{"ID":"FBgn0040528","EGF_Baseline":"-1.09"},{"ID":"FBgn0035004","EGF_Baseline":"0.57"},{"ID":"FBgn0030594","EGF_Baseline":"-1.29"},{"ID":"FBgn0039505","EGF_Baseline":"0.7"},{"ID":"FBgn0028407","EGF_Baseline":"-0.11"},{"ID":"FBgn0034814","EGF_Baseline":"1.53"},{"ID":"FBgn0041150","EGF_Baseline":"0.63"},{"ID":"FBgn0015806","EGF_Baseline":"-0.74"},{"ID":"FBgn0025111","EGF_Baseline":"-1.45"},{"ID":"FBgn0039124","EGF_Baseline":"-0.93"},{"ID":"FBgn0028411","EGF_Baseline":"-0.64"},{"ID":"FBgn0051279","EGF_Baseline":"-0.44"},{"ID":"FBgn0040502","EGF_Baseline":"-1"},{"ID":"FBgn0034425","EGF_Baseline":"-1.13"},{"ID":"FBgn0035508","EGF_Baseline":"-0.33"},{"ID":"FBgn0013576","EGF_Baseline":"-1.35"},{"ID":"FBgn0032609","EGF_Baseline":"0.75"},{"ID":"FBgn0030342","EGF_Baseline":"0.55"},{"ID":"FBgn0086370","EGF_Baseline":"-0.43"},{"ID":"FBgn0260007","EGF_Baseline":"-1.78"},{"ID":"FBgn0031760","EGF_Baseline":"-0.35"},{"ID":"FBgn0042146","EGF_Baseline":"1.26"},{"ID":"FBgn0047114","EGF_Baseline":"0.31"},{"ID":"FBgn0038325","EGF_Baseline":"0.77"},{"ID":"FBgn0085503","EGF_Baseline":"-1.8"},{"ID":"FBgn0026263","EGF_Baseline":"-0.93"},{"ID":"FBgn0051728","EGF_Baseline":"4.01"},{"ID":"FBgn0259113","EGF_Baseline":"0.99"},{"ID":"FBgn0020272","EGF_Baseline":"0.5"},{"ID":"FBgn0030787","EGF_Baseline":"-1.3"},{"ID":"FBgn0036893","EGF_Baseline":"-1.43"},{"ID":"FBgn0051516","EGF_Baseline":"-0.24"},{"ID":"FBgn0033566","EGF_Baseline":"-0.62"},{"ID":"FBgn0086356","EGF_Baseline":"-0.53"},{"ID":"FBgn0001315","EGF_Baseline":"1.84"},{"ID":"FBgn0002552","EGF_Baseline":"0.62"},{"ID":"FBgn0034943","EGF_Baseline":"-0.05"},{"ID":"FBgn0036402","EGF_Baseline":"-1.62"},{"ID":"FBgn0004777","EGF_Baseline":"1.93"},{"ID":"FBgn0035983","EGF_Baseline":"-1.42"},{"ID":"FBgn0013676","EGF_Baseline":"1.46"},{"ID":"FBgn0036496","EGF_Baseline":"-0.88"},{"ID":"FBgn0029646","EGF_Baseline":"1.38"},{"ID":"FBgn0004380","EGF_Baseline":"0.88"},{"ID":"FBgn0039920","EGF_Baseline":"1.69"},{"ID":"FBgn0038447","EGF_Baseline":"1.07"},{"ID":"FBgn0037489","EGF_Baseline":"0.62"},{"ID":"FBgn0050067","EGF_Baseline":"-0.86"},{"ID":"FBgn0050192","EGF_Baseline":"-1.26"},{"ID":"FBgn0053543","EGF_Baseline":"0.55"},{"ID":"FBgn0051922","EGF_Baseline":"-0.37"},{"ID":"FBgn0050151","EGF_Baseline":"-1.1"},{"ID":"FBgn0033696","EGF_Baseline":"-0.96"},{"ID":"FBgn0039261","EGF_Baseline":"-0.76"},{"ID":"FBgn0024191","EGF_Baseline":"-1.49"},{"ID":"FBgn0036476","EGF_Baseline":"-0.68"},{"ID":"FBgn0032193","EGF_Baseline":"-1.26"},{"ID":"FBgn0001254","EGF_Baseline":"-0.34"},{"ID":"FBgn0052808","EGF_Baseline":"-0.64"},{"ID":"FBgn0030495","EGF_Baseline":"-0.43"},{"ID":"FBgn0030563","EGF_Baseline":"0.25"},{"ID":"FBgn0014466","EGF_Baseline":"-0.34"},{"ID":"FBgn0038301","EGF_Baseline":"1.2"},{"ID":"FBgn0030718","EGF_Baseline":"-0.55"},{"ID":"FBgn0038695","EGF_Baseline":"-1.27"},{"ID":"FBgn0038972","EGF_Baseline":"0.16"},{"ID":"FBgn0028892","EGF_Baseline":"1.4"},{"ID":"FBgn0003274","EGF_Baseline":"4.38"},{"ID":"FBgn0032701","EGF_Baseline":"-1.17"},{"ID":"FBgn0037606","EGF_Baseline":"0.67"},{"ID":"FBgn0031281","EGF_Baseline":"-1.02"},{"ID":"FBgn0038098","EGF_Baseline":"2.3"},{"ID":"FBgn0020545","EGF_Baseline":"-0.92"},{"ID":"FBgn0033889","EGF_Baseline":"2.76"},{"ID":"FBgn0037195","EGF_Baseline":"-0.96"},{"ID":"FBgn0035193","EGF_Baseline":"-0.57"},{"ID":"FBgn0038170","EGF_Baseline":"0.87"},{"ID":"FBgn0024945","EGF_Baseline":"-0.57"},{"ID":"FBgn0052693","EGF_Baseline":"-0.7"},{"ID":"FBgn0037722","EGF_Baseline":"-1.05"},{"ID":"FBgn0046878","EGF_Baseline":"0.83"},{"ID":"FBgn0036679","EGF_Baseline":"0.67"},{"ID":"FBgn0029690","EGF_Baseline":"-0.47"},{"ID":"FBgn0037614","EGF_Baseline":"-0.48"},{"ID":"FBgn0039064","EGF_Baseline":"1.57"},{"ID":"FBgn0032217","EGF_Baseline":"1.32"},{"ID":"FBgn0036277","EGF_Baseline":"-0.16"},{"ID":"FBgn0034180","EGF_Baseline":"-1.25"},{"ID":"FBgn0003261","EGF_Baseline":"-1.65"},{"ID":"FBgn0029951","EGF_Baseline":"-0.43"},{"ID":"FBgn0053704","EGF_Baseline":"0.58"},{"ID":"FBgn0035317","EGF_Baseline":"-0.76"},{"ID":"FBgn0031446","EGF_Baseline":"-0.05"},{"ID":"FBgn0026754","EGF_Baseline":"-1.83"},{"ID":"FBgn0052600","EGF_Baseline":"-1.29"},{"ID":"FBgn0038035","EGF_Baseline":"0.88"},{"ID":"FBgn0035501","EGF_Baseline":"0.32"},{"ID":"FBgn0031769","EGF_Baseline":"1.48"},{"ID":"FBgn0036951","EGF_Baseline":"-1.88"},{"ID":"FBgn0005633","EGF_Baseline":"-0.84"},{"ID":"FBgn0027094","EGF_Baseline":"1.35"},{"ID":"FBgn0011476","EGF_Baseline":"-0.87"},{"ID":"FBgn0023536","EGF_Baseline":"0.17"},{"ID":"FBgn0037875","EGF_Baseline":"0.46"},{"ID":"FBgn0039324","EGF_Baseline":"1.36"},{"ID":"FBgn0015797","EGF_Baseline":"-1.12"},{"ID":"FBgn0013726","EGF_Baseline":"-0.23"},{"ID":"FBgn0039429","EGF_Baseline":"-1.51"},{"ID":"FBgn0036616","EGF_Baseline":"-0.62"},{"ID":"FBgn0033092","EGF_Baseline":"0.53"},{"ID":"FBgn0043364","EGF_Baseline":"-0.98"},{"ID":"FBgn0038159","EGF_Baseline":"-0.62"},{"ID":"FBgn0033140","EGF_Baseline":"-1.25"},{"ID":"FBgn0005696","EGF_Baseline":"1.57"},{"ID":"FBgn0039481","EGF_Baseline":"-0.74"},{"ID":"FBgn0016919","EGF_Baseline":"-0.87"},{"ID":"FBgn0039043","EGF_Baseline":"-0.69"},{"ID":"FBgn0002715","EGF_Baseline":"-1.73"},{"ID":"FBgn0004373","EGF_Baseline":"1.78"},{"ID":"FBgn0028541","EGF_Baseline":"-1.27"},{"ID":"FBgn0250833","EGF_Baseline":"0.43"},{"ID":"FBgn0051999","EGF_Baseline":"-1.12"},{"ID":"FBgn0038319","EGF_Baseline":"-1.06"},{"ID":"FBgn0031412","EGF_Baseline":"0.66"},{"ID":"FBgn0031220","EGF_Baseline":"-1.12"},{"ID":"FBgn0027903","EGF_Baseline":"0.71"},{"ID":"FBgn0027620","EGF_Baseline":"-1.58"},{"ID":"FBgn0035550","EGF_Baseline":"-1.05"},{"ID":"FBgn0001234","EGF_Baseline":"-0.62"},{"ID":"FBgn0259236","EGF_Baseline":"-0.98"},{"ID":"FBgn0038916","EGF_Baseline":"-0.58"},{"ID":"FBgn0004908","EGF_Baseline":"0.57"},{"ID":"FBgn0039636","EGF_Baseline":"-0.69"},{"ID":"FBgn0053194","EGF_Baseline":"-0.55"},{"ID":"FBgn0015521","EGF_Baseline":"1.56"},{"ID":"FBgn0036874","EGF_Baseline":"-0.45"},{"ID":"FBgn0037779","EGF_Baseline":"-1.81"},{"ID":"FBgn0037013","EGF_Baseline":"-1.81"},{"ID":"FBgn0028504","EGF_Baseline":"0.43"},{"ID":"FBgn0037312","EGF_Baseline":"-0.59"},{"ID":"FBgn0039471","EGF_Baseline":"0.66"},{"ID":"FBgn0037964","EGF_Baseline":"0.65"},{"ID":"FBgn0032507","EGF_Baseline":"0.31"},{"ID":"FBgn0033168","EGF_Baseline":"-0.45"},{"ID":"FBgn0261928","EGF_Baseline":"-0.57"},{"ID":"FBgn0030688","EGF_Baseline":"0.52"},{"ID":"FBgn0021825","EGF_Baseline":"1.62"},{"ID":"FBgn0037085","EGF_Baseline":"-1.12"},{"ID":"FBgn0029863","EGF_Baseline":"0.53"},{"ID":"FBgn0032813","EGF_Baseline":"-0.74"},{"ID":"FBgn0032314","EGF_Baseline":"-0.9"},{"ID":"FBgn0027538","EGF_Baseline":"1.12"},{"ID":"FBgn0037429","EGF_Baseline":"0.53"},{"ID":"FBgn0050466","EGF_Baseline":"0.72"},{"ID":"FBgn0086779","EGF_Baseline":"-2.22"},{"ID":"FBgn0037635","EGF_Baseline":"0.92"},{"ID":"FBgn0025865","EGF_Baseline":"1.07"},{"ID":"FBgn0260461","EGF_Baseline":"-1.1"},{"ID":"FBgn0037207","EGF_Baseline":"4.72"},{"ID":"FBgn0052462","EGF_Baseline":"0.81"},{"ID":"FBgn0029697","EGF_Baseline":"0.21"},{"ID":"FBgn0038039","EGF_Baseline":"-0.57"},{"ID":"FBgn0015010","EGF_Baseline":"-0.99"},{"ID":"FBgn0024995","EGF_Baseline":"-0.92"},{"ID":"FBgn0035333","EGF_Baseline":"0.82"},{"ID":"FBgn0039355","EGF_Baseline":"-1.15"},{"ID":"FBgn0039486","EGF_Baseline":"-1.38"},{"ID":"FBgn0028691","EGF_Baseline":"1.06"},{"ID":"FBgn0029661","EGF_Baseline":"1.31"},{"ID":"FBgn0085465","EGF_Baseline":"-0.78"},{"ID":"FBgn0086472","EGF_Baseline":"0.88"},{"ID":"FBgn0085204","EGF_Baseline":"-2.29"},{"ID":"FBgn0014026","EGF_Baseline":"2.06"},{"ID":"FBgn0014141","EGF_Baseline":"-2.21"},{"ID":"FBgn0029990","EGF_Baseline":"-1.36"},{"ID":"FBgn0000244","EGF_Baseline":"-0.97"},{"ID":"FBgn0033638","EGF_Baseline":"1.36"},{"ID":"FBgn0030660","EGF_Baseline":"-0.78"},{"ID":"FBgn0051004","EGF_Baseline":"-1.12"},{"ID":"FBgn0011762","EGF_Baseline":"-1.03"},{"ID":"FBgn0004778","EGF_Baseline":"-1.55"},{"ID":"FBgn0034463","EGF_Baseline":"-0.91"},{"ID":"FBgn0039164","EGF_Baseline":"-0.7"},{"ID":"FBgn0051055","EGF_Baseline":"0.77"},{"ID":"FBgn0038341","EGF_Baseline":"2.42"},{"ID":"FBgn0028875","EGF_Baseline":"-1.67"},{"ID":"FBgn0034069","EGF_Baseline":"-1.35"},{"ID":"FBgn0037700","EGF_Baseline":"-1.1"},{"ID":"FBgn0028327","EGF_Baseline":"0.79"},{"ID":"FBgn0015277","EGF_Baseline":"-0.84"},{"ID":"FBgn0034072","EGF_Baseline":"-0.82"},{"ID":"FBgn0260003","EGF_Baseline":"-1.76"},{"ID":"FBgn0037147","EGF_Baseline":"1.28"},{"ID":"FBgn0035162","EGF_Baseline":"1.64"},{"ID":"FBgn0038960","EGF_Baseline":"-0.69"},{"ID":"FBgn0040650","EGF_Baseline":"-0.27"},{"ID":"FBgn0024814","EGF_Baseline":"1.27"},{"ID":"FBgn0039770","EGF_Baseline":"-1.07"},{"ID":"FBgn0034741","EGF_Baseline":"-0.78"},{"ID":"FBgn0039627","EGF_Baseline":"-0.88"},{"ID":"FBgn0031976","EGF_Baseline":"-1.12"},{"ID":"FBgn0003279","EGF_Baseline":"4.27"},{"ID":"FBgn0034520","EGF_Baseline":"-1.49"},{"ID":"FBgn0039017","EGF_Baseline":"0.27"},{"ID":"FBgn0028513","EGF_Baseline":"-1.06"},{"ID":"FBgn0053474","EGF_Baseline":"-1.61"},{"ID":"FBgn0038361","EGF_Baseline":"0.57"},{"ID":"FBgn0034623","EGF_Baseline":"-1.14"},{"ID":"FBgn0036528","EGF_Baseline":"-0.34"},{"ID":"FBgn0000256","EGF_Baseline":"-1.13"},{"ID":"FBgn0036820","EGF_Baseline":"0.53"},{"ID":"FBgn0032256","EGF_Baseline":"0.33"},{"ID":"FBgn0039525","EGF_Baseline":"1.83"},{"ID":"FBgn0023542","EGF_Baseline":"-1.83"},{"ID":"FBgn0039010","EGF_Baseline":"-0.98"},{"ID":"FBgn0039852","EGF_Baseline":"-1.52"},{"ID":"FBgn0026252","EGF_Baseline":"1.77"},{"ID":"FBgn0028401","EGF_Baseline":"-0.69"},{"ID":"FBgn0033209","EGF_Baseline":"-1.3"},{"ID":"FBgn0025682","EGF_Baseline":"0.33"},{"ID":"FBgn0033663","EGF_Baseline":"-1.67"},{"ID":"FBgn0030744","EGF_Baseline":"1.42"},{"ID":"FBgn0031361","EGF_Baseline":"0.38"},{"ID":"FBgn0028396","EGF_Baseline":"0.55"},{"ID":"FBgn0033221","EGF_Baseline":"-1.45"},{"ID":"FBgn0004463","EGF_Baseline":"0.29"},{"ID":"FBgn0036762","EGF_Baseline":"0.42"},{"ID":"FBgn0001085","EGF_Baseline":"-0.8"},{"ID":"FBgn0030799","EGF_Baseline":"-0.45"},{"ID":"FBgn0032230","EGF_Baseline":"1.07"},{"ID":"FBgn0030510","EGF_Baseline":"-1.92"},{"ID":"FBgn0032475","EGF_Baseline":"-0.36"},{"ID":"FBgn0052423","EGF_Baseline":"-0.8"},{"ID":"FBgn0024332","EGF_Baseline":"-1.34"},{"ID":"FBgn0050158","EGF_Baseline":"-0.98"},{"ID":"FBgn0037819","EGF_Baseline":"-0.95"},{"ID":"FBgn0028475","EGF_Baseline":"0.79"},{"ID":"FBgn0005386","EGF_Baseline":"-0.58"},{"ID":"FBgn0035815","EGF_Baseline":"-1.34"},{"ID":"FBgn0037572","EGF_Baseline":"0.87"},{"ID":"FBgn0010316","EGF_Baseline":"-0.59"},{"ID":"FBgn0004569","EGF_Baseline":"0.27"},{"ID":"FBgn0052274","EGF_Baseline":"0.75"},{"ID":"FBgn0039641","EGF_Baseline":"0.28"},{"ID":"FBgn0259745","EGF_Baseline":"0.47"},{"ID":"FBgn0033400","EGF_Baseline":"0.25"},{"ID":"FBgn0037386","EGF_Baseline":"0.73"},{"ID":"FBgn0051902","EGF_Baseline":"-0.51"},{"ID":"FBgn0039760","EGF_Baseline":"0.61"},{"ID":"FBgn0085481","EGF_Baseline":"0.4"},{"ID":"FBgn0037920","EGF_Baseline":"-1.17"},{"ID":"FBgn0030222","EGF_Baseline":"0.39"},{"ID":"FBgn0033020","EGF_Baseline":"-1.02"},{"ID":"FBgn0039755","EGF_Baseline":"1.2"},{"ID":"FBgn0031463","EGF_Baseline":"0.41"},{"ID":"FBgn0028919","EGF_Baseline":"1.14"},{"ID":"FBgn0050259","EGF_Baseline":"-1.4"},{"ID":"FBgn0028274","EGF_Baseline":"-0.49"},{"ID":"FBgn0052745","EGF_Baseline":"-0.25"},{"ID":"FBgn0040382","EGF_Baseline":"-0.7"},{"ID":"FBgn0034035","EGF_Baseline":"0.85"},{"ID":"FBgn0052188","EGF_Baseline":"-0.22"},{"ID":"FBgn0011260","EGF_Baseline":"1.03"},{"ID":"FBgn0052228","EGF_Baseline":"0.48"},{"ID":"FBgn0038576","EGF_Baseline":"0.48"},{"ID":"FBgn0031694","EGF_Baseline":"-1.39"},{"ID":"FBgn0038107","EGF_Baseline":"-1.92"},{"ID":"FBgn0015336","EGF_Baseline":"-0.36"},{"ID":"FBgn0034994","EGF_Baseline":"-1.01"},{"ID":"FBgn0036000","EGF_Baseline":"1.59"},{"ID":"FBgn0000358","EGF_Baseline":"0.45"},{"ID":"FBgn0053673","EGF_Baseline":"-0.6"},{"ID":"FBgn0014366","EGF_Baseline":"1.68"},{"ID":"FBgn0032100","EGF_Baseline":"-0.49"},{"ID":"FBgn0051998","EGF_Baseline":"-0.31"},{"ID":"FBgn0039896","EGF_Baseline":"-0.8"},{"ID":"FBgn0038438","EGF_Baseline":"1.08"},{"ID":"FBgn0030912","EGF_Baseline":"-0.83"},{"ID":"FBgn0036492","EGF_Baseline":"5.54"},{"ID":"FBgn0024291","EGF_Baseline":"0.79"},{"ID":"FBgn0020509","EGF_Baseline":"1.18"},{"ID":"FBgn0053969","EGF_Baseline":"-1.09"},{"ID":"FBgn0039060","EGF_Baseline":"-0.67"},{"ID":"FBgn0039380","EGF_Baseline":"-0.65"},{"ID":"FBgn0085349","EGF_Baseline":"-1.7"},{"ID":"FBgn0042119","EGF_Baseline":"1.62"},{"ID":"FBgn0260000","EGF_Baseline":"-0.92"},{"ID":"FBgn0025777","EGF_Baseline":"0.4"},{"ID":"FBgn0037166","EGF_Baseline":"0.83"},{"ID":"FBgn0011737","EGF_Baseline":"-0.48"},{"ID":"FBgn0024509","EGF_Baseline":"-0.62"},{"ID":"FBgn0030577","EGF_Baseline":"0.99"},{"ID":"FBgn0038755","EGF_Baseline":"1.67"},{"ID":"FBgn0051463","EGF_Baseline":"0.92"},{"ID":"FBgn0037652","EGF_Baseline":"-0.55"},{"ID":"FBgn0037659","EGF_Baseline":"-0.66"},{"ID":"FBgn0031912","EGF_Baseline":"0.44"},{"ID":"FBgn0031703","EGF_Baseline":"2.54"},{"ID":"FBgn0040106","EGF_Baseline":"-0.98"},{"ID":"FBgn0036652","EGF_Baseline":"1.17"},{"ID":"FBgn0034471","EGF_Baseline":"0.12"},{"ID":"FBgn0259229","EGF_Baseline":"-0.86"},{"ID":"FBgn0029706","EGF_Baseline":"-0.66"},{"ID":"FBgn0040509","EGF_Baseline":"0.99"},{"ID":"FBgn0037005","EGF_Baseline":"-0.77"},{"ID":"FBgn0035063","EGF_Baseline":"-0.18"},{"ID":"FBgn0029771","EGF_Baseline":"0.54"},{"ID":"FBgn0022787","EGF_Baseline":"0.8"},{"ID":"FBgn0035657","EGF_Baseline":"-1.21"},{"ID":"FBgn0032868","EGF_Baseline":"-1.54"},{"ID":"FBgn0036549","EGF_Baseline":"-1.1"},{"ID":"FBgn0015574","EGF_Baseline":"-1.31"},{"ID":"FBgn0037230","EGF_Baseline":"0.51"},{"ID":"FBgn0036101","EGF_Baseline":"-1.49"},{"ID":"FBgn0029092","EGF_Baseline":"1.06"},{"ID":"FBgn0031683","EGF_Baseline":"-0.43"},{"ID":"FBgn0036500","EGF_Baseline":"-0.62"},{"ID":"FBgn0005672","EGF_Baseline":"-0.95"},{"ID":"FBgn0038548","EGF_Baseline":"1.12"},{"ID":"FBgn0014269","EGF_Baseline":"-0.82"},{"ID":"FBgn0001225","EGF_Baseline":"0.65"},{"ID":"FBgn0020379","EGF_Baseline":"1.41"},{"ID":"FBgn0005411","EGF_Baseline":"-3.96"},{"ID":"FBgn0038207","EGF_Baseline":"-1.73"},{"ID":"FBgn0037125","EGF_Baseline":"-0.15"},{"ID":"FBgn0051960","EGF_Baseline":"0.58"},{"ID":"FBgn0035570","EGF_Baseline":"-1.7"},{"ID":"FBgn0031171","EGF_Baseline":"-0.46"},{"ID":"FBgn0050203","EGF_Baseline":"-1.6"},{"ID":"FBgn0020280","EGF_Baseline":"-0.6"},{"ID":"FBgn0030979","EGF_Baseline":"-1.13"},{"ID":"FBgn0010228","EGF_Baseline":"-1.58"},{"ID":"FBgn0033989","EGF_Baseline":"0.78"},{"ID":"FBgn0052091","EGF_Baseline":"-0.82"},{"ID":"FBgn0032048","EGF_Baseline":"-0.9"},{"ID":"FBgn0000078","EGF_Baseline":"-0.39"},{"ID":"FBgn0034403","EGF_Baseline":"0.48"},{"ID":"FBgn0002842","EGF_Baseline":"-1.03"},{"ID":"FBgn0045827","EGF_Baseline":"0.45"},{"ID":"FBgn0036447","EGF_Baseline":"-0.32"},{"ID":"FBgn0028986","EGF_Baseline":"0.37"},{"ID":"FBgn0039073","EGF_Baseline":"-0.97"},{"ID":"FBgn0037669","EGF_Baseline":"2.08"},{"ID":"FBgn0025627","EGF_Baseline":"-0.47"},{"ID":"FBgn0029701","EGF_Baseline":"0.36"},{"ID":"FBgn0261277","EGF_Baseline":"-1.78"},{"ID":"FBgn0028969","EGF_Baseline":"0.24"},{"ID":"FBgn0004797","EGF_Baseline":"-0.92"},{"ID":"FBgn0032797","EGF_Baseline":"1.65"},{"ID":"FBgn0051288","EGF_Baseline":"-0.61"},{"ID":"FBgn0030673","EGF_Baseline":"-0.19"},{"ID":"FBgn0038656","EGF_Baseline":"-1.77"},{"ID":"FBgn0261439","EGF_Baseline":"-1.5"},{"ID":"FBgn0024846","EGF_Baseline":"1.34"},{"ID":"FBgn0010452","EGF_Baseline":"-1.35"},{"ID":"FBgn0034057","EGF_Baseline":"-0.79"},{"ID":"FBgn0032652","EGF_Baseline":"-0.68"},{"ID":"FBgn0261627","EGF_Baseline":"1.44"},{"ID":"FBgn0035954","EGF_Baseline":"0.49"},{"ID":"FBgn0051371","EGF_Baseline":"-0.98"},{"ID":"FBgn0034415","EGF_Baseline":"-1.21"},{"ID":"FBgn0028974","EGF_Baseline":"2.07"},{"ID":"FBgn0039129","EGF_Baseline":"1.18"},{"ID":"FBgn0038577","EGF_Baseline":"1.39"},{"ID":"FBgn0085224","EGF_Baseline":"0.35"},{"ID":"FBgn0051423","EGF_Baseline":"0.84"},{"ID":"FBgn0040519","EGF_Baseline":"-2.19"},{"ID":"FBgn0034432","EGF_Baseline":"-1.03"},{"ID":"FBgn0039807","EGF_Baseline":"0.64"},{"ID":"FBgn0058378","EGF_Baseline":"1.15"},{"ID":"FBgn0040725","EGF_Baseline":"-0.77"},{"ID":"FBgn0053315","EGF_Baseline":"-0.58"},{"ID":"FBgn0063261","EGF_Baseline":"-0.81"},{"ID":"FBgn0038832","EGF_Baseline":"0.54"},{"ID":"FBgn0031464","EGF_Baseline":"0.55"},{"ID":"FBgn0033010","EGF_Baseline":"-1.17"},{"ID":"FBgn0028979","EGF_Baseline":"-0.36"},{"ID":"FBgn0032462","EGF_Baseline":"0.4"},{"ID":"FBgn0028980","EGF_Baseline":"-1.07"},{"ID":"FBgn0003997","EGF_Baseline":"1.24"},{"ID":"FBgn0002940","EGF_Baseline":"-0.07"},{"ID":"FBgn0036514","EGF_Baseline":"1.12"},{"ID":"FBgn0030305","EGF_Baseline":"-1.13"},{"ID":"FBgn0052686","EGF_Baseline":"1.45"},{"ID":"FBgn0032402","EGF_Baseline":"-1.46"},{"ID":"FBgn0039381","EGF_Baseline":"-0.03"},{"ID":"FBgn0032196","EGF_Baseline":"-0.97"},{"ID":"FBgn0031390","EGF_Baseline":"-0.09"},{"ID":"FBgn0029770","EGF_Baseline":"-0.54"},{"ID":"FBgn0040823","EGF_Baseline":"0.74"},{"ID":"FBgn0034828","EGF_Baseline":"-0.52"},{"ID":"FBgn0030976","EGF_Baseline":"-0.39"},{"ID":"FBgn0000439","EGF_Baseline":"-0.67"},{"ID":"FBgn0013717","EGF_Baseline":"1.06"},{"ID":"FBgn0021874","EGF_Baseline":"0.7"},{"ID":"FBgn0030137","EGF_Baseline":"0.36"},{"ID":"FBgn0031632","EGF_Baseline":"-0.27"},{"ID":"FBgn0030081","EGF_Baseline":"0.39"},{"ID":"FBgn0260970","EGF_Baseline":"-0.62"},{"ID":"FBgn0002734","EGF_Baseline":"-0.22"},{"ID":"FBgn0029176","EGF_Baseline":"4.2"},{"ID":"FBgn0034095","EGF_Baseline":"-1.08"},{"ID":"FBgn0030658","EGF_Baseline":"0.66"},{"ID":"FBgn0261933","EGF_Baseline":"1.63"},{"ID":"FBgn0001112","EGF_Baseline":"0.84"},{"ID":"FBgn0052262","EGF_Baseline":"-0.31"},{"ID":"FBgn0037291","EGF_Baseline":"0.58"},{"ID":"FBgn0035412","EGF_Baseline":"-0.33"},{"ID":"FBgn0051301","EGF_Baseline":"-2.33"},{"ID":"FBgn0036773","EGF_Baseline":"0.66"},{"ID":"FBgn0041627","EGF_Baseline":"0.93"},{"ID":"FBgn0086519","EGF_Baseline":"-0.78"},{"ID":"FBgn0034005","EGF_Baseline":"0.98"},{"ID":"FBgn0002931","EGF_Baseline":"2.07"},{"ID":"FBgn0260499","EGF_Baseline":"1.32"},{"ID":"FBgn0030060","EGF_Baseline":"-0.32"},{"ID":"FBgn0032704","EGF_Baseline":"-0.66"},{"ID":"FBgn0032587","EGF_Baseline":"0.8"},{"ID":"FBgn0034844","EGF_Baseline":"1.64"},{"ID":"FBgn0039022","EGF_Baseline":"-0.74"},{"ID":"FBgn0038854","EGF_Baseline":"1.06"},{"ID":"FBgn0035512","EGF_Baseline":"0.87"},{"ID":"FBgn0046114","EGF_Baseline":"0.17"},{"ID":"FBgn0036602","EGF_Baseline":"-0.68"},{"ID":"FBgn0000667","EGF_Baseline":"-0.6"},{"ID":"FBgn0004173","EGF_Baseline":"1.49"},{"ID":"FBgn0010350","EGF_Baseline":"-1.14"},{"ID":"FBgn0036228","EGF_Baseline":"1.51"},{"ID":"FBgn0002936","EGF_Baseline":"0.88"},{"ID":"FBgn0038173","EGF_Baseline":"0.37"},{"ID":"FBgn0029823","EGF_Baseline":"0.95"},{"ID":"FBgn0031881","EGF_Baseline":"-1.57"},{"ID":"FBgn0019932","EGF_Baseline":"0.25"},{"ID":"FBgn0029840","EGF_Baseline":"1.2"},{"ID":"FBgn0030088","EGF_Baseline":"-0.56"},{"ID":"FBgn0027588","EGF_Baseline":"-1.44"},{"ID":"FBgn0037138","EGF_Baseline":"-1.15"},{"ID":"FBgn0027783","EGF_Baseline":"0.26"},{"ID":"FBgn0038490","EGF_Baseline":"0.03"},{"ID":"FBgn0027103","EGF_Baseline":"-1.73"},{"ID":"FBgn0036960","EGF_Baseline":"-1.86"},{"ID":"FBgn0037408","EGF_Baseline":"-0.7"},{"ID":"FBgn0031628","EGF_Baseline":"0.98"},{"ID":"FBgn0051864","EGF_Baseline":"-0.39"},{"ID":"FBgn0085352","EGF_Baseline":"-1.19"},{"ID":"FBgn0037275","EGF_Baseline":"-0.87"},{"ID":"FBgn0050005","EGF_Baseline":"1.52"},{"ID":"FBgn0035311","EGF_Baseline":"-0.73"},{"ID":"FBgn0053922","EGF_Baseline":"-0.91"},{"ID":"FBgn0044452","EGF_Baseline":"0.71"},{"ID":"FBgn0036609","EGF_Baseline":"-0.4"},{"ID":"FBgn0020909","EGF_Baseline":"-0.13"},{"ID":"FBgn0034247","EGF_Baseline":"-2.4"},{"ID":"FBgn0052644","EGF_Baseline":"0.82"},{"ID":"FBgn0085414","EGF_Baseline":"-1.28"},{"ID":"FBgn0031362","EGF_Baseline":"0.96"},{"ID":"FBgn0037372","EGF_Baseline":"-1.25"},{"ID":"FBgn0035285","EGF_Baseline":"-0.52"},{"ID":"FBgn0033659","EGF_Baseline":"0.89"},{"ID":"FBgn0037685","EGF_Baseline":"0.11"},{"ID":"FBgn0001134","EGF_Baseline":"1.18"},{"ID":"FBgn0030160","EGF_Baseline":"0.99"},{"ID":"FBgn0020224","EGF_Baseline":"-0.61"},{"ID":"FBgn0031356","EGF_Baseline":"0.58"},{"ID":"FBgn0045482","EGF_Baseline":"0.87"},{"ID":"FBgn0051660","EGF_Baseline":"-1.01"},{"ID":"FBgn0035980","EGF_Baseline":"-0.49"},{"ID":"FBgn0016694","EGF_Baseline":"0.92"},{"ID":"FBgn0031292","EGF_Baseline":"-1.07"},{"ID":"FBgn0039800","EGF_Baseline":"-0.09"},{"ID":"FBgn0033368","EGF_Baseline":"1.46"},{"ID":"FBgn0052551","EGF_Baseline":"-0.4"},{"ID":"FBgn0050048","EGF_Baseline":"-0.21"},{"ID":"FBgn0031305","EGF_Baseline":"0.73"},{"ID":"FBgn0017448","EGF_Baseline":"0.26"},{"ID":"FBgn0038045","EGF_Baseline":"0.44"},{"ID":"FBgn0042083","EGF_Baseline":"1.39"},{"ID":"FBgn0032727","EGF_Baseline":"-0.12"},{"ID":"FBgn0032303","EGF_Baseline":"-0.95"},{"ID":"FBgn0033846","EGF_Baseline":"0.74"},{"ID":"FBgn0085210","EGF_Baseline":"-0.88"},{"ID":"FBgn0052088","EGF_Baseline":"1.38"},{"ID":"FBgn0261266","EGF_Baseline":"-0.62"},{"ID":"FBgn0062440","EGF_Baseline":"-1.07"},{"ID":"FBgn0050324","EGF_Baseline":"-0.79"},{"ID":"FBgn0033645","EGF_Baseline":"0.14"},{"ID":"FBgn0035248","EGF_Baseline":"1.68"},{"ID":"FBgn0051874","EGF_Baseline":"-0.72"},{"ID":"FBgn0010397","EGF_Baseline":"0.7"},{"ID":"FBgn0085212","EGF_Baseline":"-0.95"},{"ID":"FBgn0086906","EGF_Baseline":"-1.45"},{"ID":"FBgn0260935","EGF_Baseline":"-0.72"},{"ID":"FBgn0031677","EGF_Baseline":"0.47"},{"ID":"FBgn0039454","EGF_Baseline":"-0.33"},{"ID":"FBgn0025394","EGF_Baseline":"-1.03"},{"ID":"FBgn0250848","EGF_Baseline":"-1.17"},{"ID":"FBgn0030667","EGF_Baseline":"0.68"},{"ID":"FBgn0024230","EGF_Baseline":"-0.42"},{"ID":"FBgn0039519","EGF_Baseline":"1.28"},{"ID":"FBgn0036515","EGF_Baseline":"-0.39"},{"ID":"FBgn0010434","EGF_Baseline":"-0.07"},{"ID":"FBgn0032115","EGF_Baseline":"-1.52"},{"ID":"FBgn0034307","EGF_Baseline":"-0.42"},{"ID":"FBgn0020506","EGF_Baseline":"1.09"},{"ID":"FBgn0032335","EGF_Baseline":"-1.25"},{"ID":"FBgn0038498","EGF_Baseline":"0.95"},{"ID":"FBgn0085420","EGF_Baseline":"1.79"},{"ID":"FBgn0261859","EGF_Baseline":"1.32"},{"ID":"FBgn0036712","EGF_Baseline":"0.15"},{"ID":"FBgn0014032","EGF_Baseline":"-0.9"},{"ID":"FBgn0028936","EGF_Baseline":"0.55"},{"ID":"FBgn0034605","EGF_Baseline":"-0.26"},{"ID":"FBgn0038808","EGF_Baseline":"0.4"},{"ID":"FBgn0025676","EGF_Baseline":"-1.28"},{"ID":"FBgn0053203","EGF_Baseline":"0.99"},{"ID":"FBgn0015299","EGF_Baseline":"-1.65"},{"ID":"FBgn0020240","EGF_Baseline":"-0.52"},{"ID":"FBgn0032140","EGF_Baseline":"1.06"},{"ID":"FBgn0039430","EGF_Baseline":"-0.68"},{"ID":"FBgn0036036","EGF_Baseline":"0.42"},{"ID":"FBgn0030815","EGF_Baseline":"0.82"},{"ID":"FBgn0026086","EGF_Baseline":"-0.9"},{"ID":"FBgn0035956","EGF_Baseline":"0.61"},{"ID":"FBgn0025615","EGF_Baseline":"1.25"},{"ID":"FBgn0038412","EGF_Baseline":"0.78"},{"ID":"FBgn0042126","EGF_Baseline":"-0.91"},{"ID":"FBgn0035878","EGF_Baseline":"1.09"},{"ID":"FBgn0038601","EGF_Baseline":"-1.02"},{"ID":"FBgn0022935","EGF_Baseline":"3.77"},{"ID":"FBgn0030223","EGF_Baseline":"-0.71"},{"ID":"FBgn0086687","EGF_Baseline":"-3.23"},{"ID":"FBgn0035742","EGF_Baseline":"-0.32"},{"ID":"FBgn0085454","EGF_Baseline":"-2.44"},{"ID":"FBgn0037910","EGF_Baseline":"-0.99"},{"ID":"FBgn0003486","EGF_Baseline":"1.16"},{"ID":"FBgn0037324","EGF_Baseline":"-0.83"},{"ID":"FBgn0038196","EGF_Baseline":"-0.99"},{"ID":"FBgn0030545","EGF_Baseline":"-0.69"},{"ID":"FBgn0052374","EGF_Baseline":"0.89"},{"ID":"FBgn0052548","EGF_Baseline":"0.01"},{"ID":"FBgn0029679","EGF_Baseline":"-0.85"},{"ID":"FBgn0031032","EGF_Baseline":"1.2"},{"ID":"FBgn0010042","EGF_Baseline":"0.31"},{"ID":"FBgn0004863","EGF_Baseline":"6.61"},{"ID":"FBgn0039132","EGF_Baseline":"0.94"},{"ID":"FBgn0039271","EGF_Baseline":"0.64"},{"ID":"FBgn0031483","EGF_Baseline":"-1.64"},{"ID":"FBgn0052571","EGF_Baseline":"0.61"},{"ID":"FBgn0002044","EGF_Baseline":"0.77"},{"ID":"FBgn0038316","EGF_Baseline":"-0.54"},{"ID":"FBgn0011760","EGF_Baseline":"-2.09"},{"ID":"FBgn0035438","EGF_Baseline":"-1.34"},{"ID":"FBgn0038292","EGF_Baseline":"-0.35"},{"ID":"FBgn0015818","EGF_Baseline":"4.83"},{"ID":"FBgn0003720","EGF_Baseline":"-0.29"},{"ID":"FBgn0036043","EGF_Baseline":"1.59"},{"ID":"FBgn0259234","EGF_Baseline":"-0.27"},{"ID":"FBgn0036988","EGF_Baseline":"1.06"},{"ID":"FBgn0034122","EGF_Baseline":"-0.73"},{"ID":"FBgn0032420","EGF_Baseline":"8.34151625118546e-03"},{"ID":"FBgn0021750","EGF_Baseline":"-0.8"},{"ID":"FBgn0000552","EGF_Baseline":"-1.21"},{"ID":"FBgn0051141","EGF_Baseline":"-0.31"},{"ID":"FBgn0028990","EGF_Baseline":"-1.52"},{"ID":"FBgn0037724","EGF_Baseline":"0.49"},{"ID":"FBgn0035567","EGF_Baseline":"-0.47"},{"ID":"FBgn0004647","EGF_Baseline":"0.49"},{"ID":"FBgn0036361","EGF_Baseline":"0.43"},{"ID":"FBgn0002736","EGF_Baseline":"0.59"},{"ID":"FBgn0036747","EGF_Baseline":"-0.45"},{"ID":"FBgn0052579","EGF_Baseline":"-1.22"},{"ID":"FBgn0034870","EGF_Baseline":"-0.79"},{"ID":"FBgn0036994","EGF_Baseline":"0.37"},{"ID":"FBgn0011785","EGF_Baseline":"0.7"},{"ID":"FBgn0037110","EGF_Baseline":"-0.58"},{"ID":"FBgn0025463","EGF_Baseline":"1.62"},{"ID":"FBgn0028867","EGF_Baseline":"1.26"},{"ID":"FBgn0031690","EGF_Baseline":"-1.02"},{"ID":"FBgn0036696","EGF_Baseline":"0.2"},{"ID":"FBgn0032205","EGF_Baseline":"-1.13"},{"ID":"FBgn0051454","EGF_Baseline":"-1.03"},{"ID":"FBgn0025866","EGF_Baseline":"0.92"},{"ID":"FBgn0035443","EGF_Baseline":"-1.03"},{"ID":"FBgn0050414","EGF_Baseline":"-1.51"},{"ID":"FBgn0036742","EGF_Baseline":"-1.35"},{"ID":"FBgn0085437","EGF_Baseline":"0.97"},{"ID":"FBgn0026679","EGF_Baseline":"-0.66"},{"ID":"FBgn0038979","EGF_Baseline":"1.46"},{"ID":"FBgn0027568","EGF_Baseline":"1.29"},{"ID":"FBgn0034474","EGF_Baseline":"1.18"},{"ID":"FBgn0039756","EGF_Baseline":"1.09"},{"ID":"FBgn0002891","EGF_Baseline":"-0.8"},{"ID":"FBgn0038471","EGF_Baseline":"-1.29"},{"ID":"FBgn0051092","EGF_Baseline":"-1.27"},{"ID":"FBgn0031936","EGF_Baseline":"-1.54"},{"ID":"FBgn0035632","EGF_Baseline":"-0.46"},{"ID":"FBgn0082582","EGF_Baseline":"-2.03"},{"ID":"FBgn0024366","EGF_Baseline":"0.9"},{"ID":"FBgn0039259","EGF_Baseline":"-1.66"},{"ID":"FBgn0032088","EGF_Baseline":"-0.28"},{"ID":"FBgn0260776","EGF_Baseline":"0.66"},{"ID":"FBgn0029747","EGF_Baseline":"0.14"},{"ID":"FBgn0022893","EGF_Baseline":"-1.16"},{"ID":"FBgn0038733","EGF_Baseline":"1.07"},{"ID":"FBgn0039668","EGF_Baseline":"0.45"},{"ID":"FBgn0034346","EGF_Baseline":"0.97"},{"ID":"FBgn0001075","EGF_Baseline":"-1.56"},{"ID":"FBgn0034529","EGF_Baseline":"0.62"},{"ID":"FBgn0033851","EGF_Baseline":"-1.68"},{"ID":"FBgn0036301","EGF_Baseline":"1.01"},{"ID":"FBgn0029977","EGF_Baseline":"0.23"},{"ID":"FBgn0004841","EGF_Baseline":"0.9"},{"ID":"FBgn0032801","EGF_Baseline":"1.12"},{"ID":"FBgn0034468","EGF_Baseline":"1.05"},{"ID":"FBgn0003656","EGF_Baseline":"0.76"},{"ID":"FBgn0085310","EGF_Baseline":"0.37"},{"ID":"FBgn0052485","EGF_Baseline":"-1.82"},{"ID":"FBgn0021818","EGF_Baseline":"-1.15"},{"ID":"FBgn0039687","EGF_Baseline":"1.33"},{"ID":"FBgn0260985","EGF_Baseline":"-1.55"},{"ID":"FBgn0031697","EGF_Baseline":"0.55"},{"ID":"FBgn0052528","EGF_Baseline":"-1.57"},{"ID":"FBgn0038465","EGF_Baseline":"-1.16"},{"ID":"FBgn0032382","EGF_Baseline":"0.62"},{"ID":"FBgn0033124","EGF_Baseline":"-0.51"},{"ID":"FBgn0034660","EGF_Baseline":"-0.76"},{"ID":"FBgn0036397","EGF_Baseline":"-1.49"},{"ID":"FBgn0032442","EGF_Baseline":"-1.8"},{"ID":"FBgn0032593","EGF_Baseline":"1.37"},{"ID":"FBgn0050037","EGF_Baseline":"0.28"},{"ID":"FBgn0034412","EGF_Baseline":"0.32"},{"ID":"FBgn0038693","EGF_Baseline":"0.47"},{"ID":"FBgn0028482","EGF_Baseline":"-1.42"},{"ID":"FBgn0043025","EGF_Baseline":"0.46"},{"ID":"FBgn0037172","EGF_Baseline":"1.49"},{"ID":"FBgn0039487","EGF_Baseline":"-1.7"},{"ID":"FBgn0033667","EGF_Baseline":"0.53"},{"ID":"FBgn0004629","EGF_Baseline":"-0.7"},{"ID":"FBgn0031474","EGF_Baseline":"-0.43"},{"ID":"FBgn0038788","EGF_Baseline":"-0.57"},{"ID":"FBgn0029514","EGF_Baseline":"-1.2"},{"ID":"FBgn0052221","EGF_Baseline":"2.49"},{"ID":"FBgn0052177","EGF_Baseline":"-0.59"},{"ID":"FBgn0031288","EGF_Baseline":"1.36"},{"ID":"FBgn0030435","EGF_Baseline":"1.06"},{"ID":"FBgn0038134","EGF_Baseline":"-1"},{"ID":"FBgn0033427","EGF_Baseline":"-1.23"},{"ID":"FBgn0038984","EGF_Baseline":"1.46"},{"ID":"FBgn0030148","EGF_Baseline":"0.51"},{"ID":"FBgn0014850","EGF_Baseline":"-0.75"},{"ID":"FBgn0034046","EGF_Baseline":"1.23"},{"ID":"FBgn0037519","EGF_Baseline":"-1.43"},{"ID":"FBgn0032709","EGF_Baseline":"-0.45"},{"ID":"FBgn0050169","EGF_Baseline":"0.55"},{"ID":"FBgn0038225","EGF_Baseline":"-0.85"},{"ID":"FBgn0026411","EGF_Baseline":"-0.55"},{"ID":"FBgn0033453","EGF_Baseline":"0.74"},{"ID":"FBgn0038950","EGF_Baseline":"-1.05"},{"ID":"FBgn0029970","EGF_Baseline":"0.46"},{"ID":"FBgn0039697","EGF_Baseline":"-1.05"},{"ID":"FBgn0035186","EGF_Baseline":"-0.76"},{"ID":"FBgn0013467","EGF_Baseline":"-2.01"},{"ID":"FBgn0015582","EGF_Baseline":"-0.19"},{"ID":"FBgn0022213","EGF_Baseline":"1.26"},{"ID":"FBgn0030001","EGF_Baseline":"-0.96"},{"ID":"FBgn0027291","EGF_Baseline":"-0.6"},{"ID":"FBgn0034496","EGF_Baseline":"-1.03"},{"ID":"FBgn0051051","EGF_Baseline":"-1.61"},{"ID":"FBgn0036501","EGF_Baseline":"-0.81"},{"ID":"FBgn0037613","EGF_Baseline":"-1.32"},{"ID":"FBgn0085217","EGF_Baseline":"0.7"},{"ID":"FBgn0004698","EGF_Baseline":"-1.76"},{"ID":"FBgn0036551","EGF_Baseline":"-1.25"},{"ID":"FBgn0051858","EGF_Baseline":"1.2"},{"ID":"FBgn0013746","EGF_Baseline":"-0.48"},{"ID":"FBgn0259224","EGF_Baseline":"-0.99"},{"ID":"FBgn0051072","EGF_Baseline":"-1.02"},{"ID":"FBgn0015075","EGF_Baseline":"-0.39"},{"ID":"FBgn0010520","EGF_Baseline":"-1.62"},{"ID":"FBgn0043070","EGF_Baseline":"-1.83"},{"ID":"FBgn0034231","EGF_Baseline":"0.59"},{"ID":"FBgn0040031","EGF_Baseline":"1.21"},{"ID":"FBgn0050052","EGF_Baseline":"-0.9"},{"ID":"FBgn0030631","EGF_Baseline":"-1.36"},{"ID":"FBgn0035084","EGF_Baseline":"0.73"},{"ID":"FBgn0034560","EGF_Baseline":"1.23"},{"ID":"FBgn0036203","EGF_Baseline":"0.72"},{"ID":"FBgn0043854","EGF_Baseline":"-0.52"},{"ID":"FBgn0015247","EGF_Baseline":"-0.55"},{"ID":"FBgn0051785","EGF_Baseline":"-0.24"},{"ID":"FBgn0035571","EGF_Baseline":"-1.63"},{"ID":"FBgn0039776","EGF_Baseline":"0.94"},{"ID":"FBgn0011016","EGF_Baseline":"0.7"},{"ID":"FBgn0039882","EGF_Baseline":"0.74"},{"ID":"FBgn0033439","EGF_Baseline":"-0.56"},{"ID":"FBgn0041238","EGF_Baseline":"1.75"},{"ID":"FBgn0039451","EGF_Baseline":"-0.91"},{"ID":"FBgn0036382","EGF_Baseline":"0.88"},{"ID":"FBgn0041246","EGF_Baseline":"-0.37"},{"ID":"FBgn0035216","EGF_Baseline":"-0.32"},{"ID":"FBgn0004622","EGF_Baseline":"-0.88"},{"ID":"FBgn0035371","EGF_Baseline":"-0.44"},{"ID":"FBgn0261267","EGF_Baseline":"1.2"},{"ID":"FBgn0030006","EGF_Baseline":"0.24"},{"ID":"FBgn0034033","EGF_Baseline":"1.06"},{"ID":"FBgn0036320","EGF_Baseline":"-1.65"},{"ID":"FBgn0039099","EGF_Baseline":"0.41"},{"ID":"FBgn0011596","EGF_Baseline":"1.33"},{"ID":"FBgn0033296","EGF_Baseline":"0.42"},{"ID":"FBgn0040020","EGF_Baseline":"0.69"},{"ID":"FBgn0026181","EGF_Baseline":"-1.06"},{"ID":"FBgn0040795","EGF_Baseline":"-1.81"},{"ID":"FBgn0053208","EGF_Baseline":"-1.69"},{"ID":"FBgn0002856","EGF_Baseline":"-0.31"},{"ID":"FBgn0025335","EGF_Baseline":"1.29"},{"ID":"FBgn0037338","EGF_Baseline":"-1.09"},{"ID":"FBgn0032125","EGF_Baseline":"-0.98"},{"ID":"FBgn0031299","EGF_Baseline":"0.57"},{"ID":"FBgn0038095","EGF_Baseline":"-1.16"},{"ID":"FBgn0038768","EGF_Baseline":"-1.65"},{"ID":"FBgn0011832","EGF_Baseline":"0.93"},{"ID":"FBgn0051262","EGF_Baseline":"-0.57"},{"ID":"FBgn0037718","EGF_Baseline":"-1"},{"ID":"FBgn0036908","EGF_Baseline":"-1.32"},{"ID":"FBgn0031157","EGF_Baseline":"-1.06"},{"ID":"FBgn0023091","EGF_Baseline":"-0.16"},{"ID":"FBgn0038865","EGF_Baseline":"-0.13"},{"ID":"FBgn0032453","EGF_Baseline":"0.75"},{"ID":"FBgn0051030","EGF_Baseline":"1.88"},{"ID":"FBgn0003372","EGF_Baseline":"-1.12"},{"ID":"FBgn0051973","EGF_Baseline":"-1.71"},{"ID":"FBgn0031602","EGF_Baseline":"-1.71"},{"ID":"FBgn0039690","EGF_Baseline":"-1.23"},{"ID":"FBgn0034366","EGF_Baseline":"-1.48"},{"ID":"FBgn0038740","EGF_Baseline":"0.83"},{"ID":"FBgn0034727","EGF_Baseline":"-0.85"},{"ID":"FBgn0085427","EGF_Baseline":"-2.13"},{"ID":"FBgn0033605","EGF_Baseline":"-0.61"},{"ID":"FBgn0033721","EGF_Baseline":"-1.94"},{"ID":"FBgn0039582","EGF_Baseline":"-0.6"},{"ID":"FBgn0002863","EGF_Baseline":"-0.61"},{"ID":"FBgn0034206","EGF_Baseline":"-1.17"},{"ID":"FBgn0033579","EGF_Baseline":"-1.86"},{"ID":"FBgn0051081","EGF_Baseline":"-0.83"},{"ID":"FBgn0016059","EGF_Baseline":"-0.61"},{"ID":"FBgn0011742","EGF_Baseline":"-1.1"},{"ID":"FBgn0040362","EGF_Baseline":"-0.83"},{"ID":"FBgn0004228","EGF_Baseline":"-1.46"},{"ID":"FBgn0034284","EGF_Baseline":"-0.23"},{"ID":"FBgn0002973","EGF_Baseline":"0.6"},{"ID":"FBgn0039149","EGF_Baseline":"-0.43"},{"ID":"FBgn0030246","EGF_Baseline":"0.89"},{"ID":"FBgn0034859","EGF_Baseline":"-1.05"},{"ID":"FBgn0036059","EGF_Baseline":"1.67"},{"ID":"FBgn0030244","EGF_Baseline":"-0.89"},{"ID":"FBgn0001941","EGF_Baseline":"-1.13"},{"ID":"FBgn0033871","EGF_Baseline":"1.53"},{"ID":"FBgn0020412","EGF_Baseline":"-0.75"},{"ID":"FBgn0033449","EGF_Baseline":"-0.38"},{"ID":"FBgn0045468","EGF_Baseline":"0.8"},{"ID":"FBgn0004512","EGF_Baseline":"0.62"},{"ID":"FBgn0037270","EGF_Baseline":"0.7"},{"ID":"FBgn0029996","EGF_Baseline":"-1.95"},{"ID":"FBgn0037996","EGF_Baseline":"0.41"},{"ID":"FBgn0024989","EGF_Baseline":"0.56"},{"ID":"FBgn0023506","EGF_Baseline":"-0.9"},{"ID":"FBgn0003046","EGF_Baseline":"0.6"},{"ID":"FBgn0003882","EGF_Baseline":"-1.76"},{"ID":"FBgn0038814","EGF_Baseline":"1.43"},{"ID":"FBgn0261394","EGF_Baseline":"0.74"},{"ID":"FBgn0050062","EGF_Baseline":"-0.43"},{"ID":"FBgn0037473","EGF_Baseline":"-1.08"},{"ID":"FBgn0050432","EGF_Baseline":"1.26"},{"ID":"FBgn0032072","EGF_Baseline":"-1"},{"ID":"FBgn0058053","EGF_Baseline":"-1.05"},{"ID":"FBgn0039406","EGF_Baseline":"-0.14"},{"ID":"FBgn0013983","EGF_Baseline":"0.4"},{"ID":"FBgn0032642","EGF_Baseline":"-1.86"},{"ID":"FBgn0041100","EGF_Baseline":"0.46"},{"ID":"FBgn0051606","EGF_Baseline":"-0.66"},{"ID":"FBgn0085362","EGF_Baseline":"-0.83"},{"ID":"FBgn0037750","EGF_Baseline":"-0.31"},{"ID":"FBgn0039213","EGF_Baseline":"0.62"},{"ID":"FBgn0034485","EGF_Baseline":"0.57"},{"ID":"FBgn0037117","EGF_Baseline":"-0.7"},{"ID":"FBgn0010303","EGF_Baseline":"-0.79"},{"ID":"FBgn0023179","EGF_Baseline":"1.36"},{"ID":"FBgn0038565","EGF_Baseline":"-1.47"},{"ID":"FBgn0030808","EGF_Baseline":"1.94"},{"ID":"FBgn0036926","EGF_Baseline":"-1.77"},{"ID":"FBgn0031772","EGF_Baseline":"0.9"},{"ID":"FBgn0013531","EGF_Baseline":"-0.7"},{"ID":"FBgn0032835","EGF_Baseline":"-1.01"},{"ID":"FBgn0036258","EGF_Baseline":"1.64"},{"ID":"FBgn0036192","EGF_Baseline":"-1.08"},{"ID":"FBgn0001235","EGF_Baseline":"0.7"},{"ID":"FBgn0036686","EGF_Baseline":"0.83"},{"ID":"FBgn0034659","EGF_Baseline":"0.63"},{"ID":"FBgn0045443","EGF_Baseline":"0.73"},{"ID":"FBgn0035768","EGF_Baseline":"-0.45"},{"ID":"FBgn0024998","EGF_Baseline":"1.73"},{"ID":"FBgn0032649","EGF_Baseline":"-0.75"},{"ID":"FBgn0031536","EGF_Baseline":"1.89"},{"ID":"FBgn0036641","EGF_Baseline":"-1.07"},{"ID":"FBgn0025740","EGF_Baseline":"-1.25"},{"ID":"FBgn0002306","EGF_Baseline":"1.1"},{"ID":"FBgn0028961","EGF_Baseline":"-1.49"},{"ID":"FBgn0004924","EGF_Baseline":"-2.61"},{"ID":"FBgn0025558","EGF_Baseline":"0.83"},{"ID":"FBgn0037046","EGF_Baseline":"1"},{"ID":"FBgn0031108","EGF_Baseline":"1.47"},{"ID":"FBgn0030261","EGF_Baseline":"1.28"},{"ID":"FBgn0033095","EGF_Baseline":"-0.3"},{"ID":"FBgn0038124","EGF_Baseline":"-1.08"},{"ID":"FBgn0005671","EGF_Baseline":"1.19"},{"ID":"FBgn0051803","EGF_Baseline":"-0.85"},{"ID":"FBgn0041181","EGF_Baseline":"0.56"},{"ID":"FBgn0014018","EGF_Baseline":"-0.06"},{"ID":"FBgn0035103","EGF_Baseline":"-1.62"},{"ID":"FBgn0013548","EGF_Baseline":"-0.53"},{"ID":"FBgn0051010","EGF_Baseline":"-0.96"},{"ID":"FBgn0050424","EGF_Baseline":"1.33"},{"ID":"FBgn0030207","EGF_Baseline":"-0.42"},{"ID":"FBgn0028532","EGF_Baseline":"-1.19"},{"ID":"FBgn0261479","EGF_Baseline":"-0.18"},{"ID":"FBgn0039703","EGF_Baseline":"0.08"},{"ID":"FBgn0005391","EGF_Baseline":"1.5"},{"ID":"FBgn0022770","EGF_Baseline":"0.54"},{"ID":"FBgn0028837","EGF_Baseline":"-1.86"},{"ID":"FBgn0027608","EGF_Baseline":"-1.23"},{"ID":"FBgn0034599","EGF_Baseline":"0.98"},{"ID":"FBgn0034459","EGF_Baseline":"0.18"},{"ID":"FBgn0027081","EGF_Baseline":"-1.35"},{"ID":"FBgn0039177","EGF_Baseline":"0.49"},{"ID":"FBgn0003683","EGF_Baseline":"-1.19"},{"ID":"FBgn0036967","EGF_Baseline":"0.95"},{"ID":"FBgn0035612","EGF_Baseline":"2.09"},{"ID":"FBgn0054011","EGF_Baseline":"-1.74"},{"ID":"FBgn0038008","EGF_Baseline":"-0.24"},{"ID":"FBgn0053461","EGF_Baseline":"0.84"},{"ID":"FBgn0035132","EGF_Baseline":"0.6"},{"ID":"FBgn0031430","EGF_Baseline":"-0.93"},{"ID":"FBgn0052160","EGF_Baseline":"-0.55"},{"ID":"FBgn0031045","EGF_Baseline":"0.88"},{"ID":"FBgn0036906","EGF_Baseline":"1.4"},{"ID":"FBgn0028880","EGF_Baseline":"0.99"},{"ID":"FBgn0031119","EGF_Baseline":"-0.81"},{"ID":"FBgn0033728","EGF_Baseline":"-1.12"},{"ID":"FBgn0003977","EGF_Baseline":"-0.65"},{"ID":"FBgn0030852","EGF_Baseline":"-0.66"},{"ID":"FBgn0036892","EGF_Baseline":"0.52"},{"ID":"FBgn0037024","EGF_Baseline":"-0.99"},{"ID":"FBgn0011723","EGF_Baseline":"-0.2"},{"ID":"FBgn0028408","EGF_Baseline":"-1.23"},{"ID":"FBgn0035875","EGF_Baseline":"-1.47"},{"ID":"FBgn0040743","EGF_Baseline":"0.99"},{"ID":"FBgn0030528","EGF_Baseline":"0.28"},{"ID":"FBgn0038944","EGF_Baseline":"-0.47"},{"ID":"FBgn0027090","EGF_Baseline":"-1.71"},{"ID":"FBgn0031580","EGF_Baseline":"0.34"},{"ID":"FBgn0051226","EGF_Baseline":"-1.26"},{"ID":"FBgn0033526","EGF_Baseline":"-0.27"},{"ID":"FBgn0037816","EGF_Baseline":"-0.97"},{"ID":"FBgn0053527","EGF_Baseline":"1.42"},{"ID":"FBgn0036015","EGF_Baseline":"1.2"},{"ID":"FBgn0002780","EGF_Baseline":"-0.56"},{"ID":"FBgn0038079","EGF_Baseline":"-0.24"},{"ID":"FBgn0031558","EGF_Baseline":"1.19"},{"ID":"FBgn0051221","EGF_Baseline":"-0.28"},{"ID":"FBgn0034758","EGF_Baseline":"0.54"},{"ID":"FBgn0038527","EGF_Baseline":"1.05"},{"ID":"FBgn0037737","EGF_Baseline":"0.99"},{"ID":"FBgn0031830","EGF_Baseline":"-2.46"},{"ID":"FBgn0034073","EGF_Baseline":"0.43"},{"ID":"FBgn0053260","EGF_Baseline":"-1.78"},{"ID":"FBgn0030701","EGF_Baseline":"1.96"},{"ID":"FBgn0038452","EGF_Baseline":"-1.09"},{"ID":"FBgn0038083","EGF_Baseline":"0.23"},{"ID":"FBgn0036888","EGF_Baseline":"0.44"},{"ID":"FBgn0034194","EGF_Baseline":"-1.86"},{"ID":"FBgn0039680","EGF_Baseline":"0.37"},{"ID":"FBgn0029963","EGF_Baseline":"0.98"},{"ID":"FBgn0054032","EGF_Baseline":"-1.7"},{"ID":"FBgn0032848","EGF_Baseline":"0.42"},{"ID":"FBgn0032913","EGF_Baseline":"1.22"},{"ID":"FBgn0035587","EGF_Baseline":"-0.94"},{"ID":"FBgn0028292","EGF_Baseline":"0.46"},{"ID":"FBgn0032131","EGF_Baseline":"1.26"},{"ID":"FBgn0029095","EGF_Baseline":"-1.22"},{"ID":"FBgn0032235","EGF_Baseline":"-0.43"},{"ID":"FBgn0031855","EGF_Baseline":"-0.59"},{"ID":"FBgn0037031","EGF_Baseline":"0.17"},{"ID":"FBgn0039531","EGF_Baseline":"-1.41"},{"ID":"FBgn0025571","EGF_Baseline":"0.61"},{"ID":"FBgn0039140","EGF_Baseline":"0.47"},{"ID":"FBgn0035546","EGF_Baseline":"-1.18"},{"ID":"FBgn0035951","EGF_Baseline":"1.45"},{"ID":"FBgn0035816","EGF_Baseline":"1.03"},{"ID":"FBgn0044051","EGF_Baseline":"1.16"},{"ID":"FBgn0035158","EGF_Baseline":"0.43"},{"ID":"FBgn0036343","EGF_Baseline":"-0.03"},{"ID":"FBgn0051048","EGF_Baseline":"1.8"},{"ID":"FBgn0031574","EGF_Baseline":"1.84"},{"ID":"FBgn0032248","EGF_Baseline":"0.41"},{"ID":"FBgn0040730","EGF_Baseline":"-1.18"},{"ID":"FBgn0035673","EGF_Baseline":"-0.95"},{"ID":"FBgn0015905","EGF_Baseline":"-1.52"},{"ID":"FBgn0039969","EGF_Baseline":"-1.48"},{"ID":"FBgn0034507","EGF_Baseline":"-0.65"},{"ID":"FBgn0012058","EGF_Baseline":"8.01"},{"ID":"FBgn0032433","EGF_Baseline":"1.28"},{"ID":"FBgn0085294","EGF_Baseline":"-0.52"},{"ID":"FBgn0004510","EGF_Baseline":"-0.61"},{"ID":"FBgn0037004","EGF_Baseline":"-1.6"},{"ID":"FBgn0003965","EGF_Baseline":"-0.18"},{"ID":"FBgn0002561","EGF_Baseline":"-1.63"},{"ID":"FBgn0085409","EGF_Baseline":"-1"},{"ID":"FBgn0032372","EGF_Baseline":"0.62"},{"ID":"FBgn0033352","EGF_Baseline":"-0.66"},{"ID":"FBgn0000283","EGF_Baseline":"-0.28"},{"ID":"FBgn0002924","EGF_Baseline":"0.59"},{"ID":"FBgn0260964","EGF_Baseline":"1.85"},{"ID":"FBgn0051201","EGF_Baseline":"-0.7"},{"ID":"FBgn0250820","EGF_Baseline":"1.37"},{"ID":"FBgn0000303","EGF_Baseline":"-2.01"},{"ID":"FBgn0033359","EGF_Baseline":"-1.31"},{"ID":"FBgn0028474","EGF_Baseline":"-1.92"},{"ID":"FBgn0034495","EGF_Baseline":"-0.45"},{"ID":"FBgn0025631","EGF_Baseline":"1.56"},{"ID":"FBgn0002989","EGF_Baseline":"-1.13"},{"ID":"FBgn0031495","EGF_Baseline":"-0.37"},{"ID":"FBgn0033756","EGF_Baseline":"1.12"},{"ID":"FBgn0052683","EGF_Baseline":"-1.46"},{"ID":"FBgn0259824","EGF_Baseline":"0.16"},{"ID":"FBgn0035777","EGF_Baseline":"-0.84"},{"ID":"FBgn0027796","EGF_Baseline":"-1.7"},{"ID":"FBgn0028872","EGF_Baseline":"0.69"},{"ID":"FBgn0032400","EGF_Baseline":"-7.24"},{"ID":"FBgn0036290","EGF_Baseline":"-1.15"},{"ID":"FBgn0033000","EGF_Baseline":"-1.16"},{"ID":"FBgn0260742","EGF_Baseline":"0.81"},{"ID":"FBgn0260962","EGF_Baseline":"-0.55"},{"ID":"FBgn0039592","EGF_Baseline":"1.19"},{"ID":"FBgn0028496","EGF_Baseline":"1.2"},{"ID":"FBgn0035234","EGF_Baseline":"-0.67"},{"ID":"FBgn0261675","EGF_Baseline":"1.47"},{"ID":"FBgn0052305","EGF_Baseline":"-1.08"},{"ID":"FBgn0034897","EGF_Baseline":"-0.83"},{"ID":"FBgn0035423","EGF_Baseline":"0.55"},{"ID":"FBgn0000392","EGF_Baseline":"0.92"},{"ID":"FBgn0033710","EGF_Baseline":"0.39"},{"ID":"FBgn0051823","EGF_Baseline":"0.18"},{"ID":"FBgn0033718","EGF_Baseline":"-1.48"},{"ID":"FBgn0004400","EGF_Baseline":"0.88"},{"ID":"FBgn0052409","EGF_Baseline":"-1.06"},{"ID":"FBgn0000405","EGF_Baseline":"0.58"},{"ID":"FBgn0053307","EGF_Baseline":"2.04"},{"ID":"FBgn0030100","EGF_Baseline":"-0.5"},{"ID":"FBgn0029714","EGF_Baseline":"-0.86"},{"ID":"FBgn0031318","EGF_Baseline":"-1.24"},{"ID":"FBgn0051345","EGF_Baseline":"1.17"},{"ID":"FBgn0037902","EGF_Baseline":"1.16"},{"ID":"FBgn0259678","EGF_Baseline":"-0.66"},{"ID":"FBgn0038716","EGF_Baseline":"-0.39"},{"ID":"FBgn0030485","EGF_Baseline":"-0.78"},{"ID":"FBgn0045843","EGF_Baseline":"-0.4"},{"ID":"FBgn0039820","EGF_Baseline":"-1.12"},{"ID":"FBgn0030803","EGF_Baseline":"-0.41"},{"ID":"FBgn0261682","EGF_Baseline":"-1.36"},{"ID":"FBgn0015550","EGF_Baseline":"1.1"},{"ID":"FBgn0031725","EGF_Baseline":"-0.91"},{"ID":"FBgn0000615","EGF_Baseline":"0.4"},{"ID":"FBgn0036973","EGF_Baseline":"0.81"},{"ID":"FBgn0032315","EGF_Baseline":"-1.29"},{"ID":"FBgn0051019","EGF_Baseline":"-1.76"},{"ID":"FBgn0053265","EGF_Baseline":"0.7"},{"ID":"FBgn0039417","EGF_Baseline":"1.7"},{"ID":"FBgn0035258","EGF_Baseline":"1.44"},{"ID":"FBgn0030158","EGF_Baseline":"1.23"},{"ID":"FBgn0010406","EGF_Baseline":"2.16"},{"ID":"FBgn0033627","EGF_Baseline":"0.67"},{"ID":"FBgn0016794","EGF_Baseline":"-0.8"},{"ID":"FBgn0036730","EGF_Baseline":"-1.33"},{"ID":"FBgn0017545","EGF_Baseline":"2.27"},{"ID":"FBgn0010287","EGF_Baseline":"-0.95"},{"ID":"FBgn0031945","EGF_Baseline":"-1.76"},{"ID":"FBgn0028645","EGF_Baseline":"1.13"},{"ID":"FBgn0040396","EGF_Baseline":"1.22"},{"ID":"FBgn0261564","EGF_Baseline":"1.83"},{"ID":"FBgn0050271","EGF_Baseline":"0.4"},{"ID":"FBgn0026777","EGF_Baseline":"-0.67"},{"ID":"FBgn0000339","EGF_Baseline":"-0.87"},{"ID":"FBgn0000229","EGF_Baseline":"0.88"},{"ID":"FBgn0034716","EGF_Baseline":"-1.08"},{"ID":"FBgn0039054","EGF_Baseline":"-1.96"},{"ID":"FBgn0031542","EGF_Baseline":"1.1"},{"ID":"FBgn0035233","EGF_Baseline":"-1.03"},{"ID":"FBgn0037086","EGF_Baseline":"-1.77"},{"ID":"FBgn0010015","EGF_Baseline":"1.32"},{"ID":"FBgn0016930","EGF_Baseline":"-0.74"},{"ID":"FBgn0031195","EGF_Baseline":"0.88"},{"ID":"FBgn0039461","EGF_Baseline":"-1.36"},{"ID":"FBgn0087013","EGF_Baseline":"1.92"},{"ID":"FBgn0034405","EGF_Baseline":"-0.76"},{"ID":"FBgn0011284","EGF_Baseline":"3.85"},{"ID":"FBgn0039371","EGF_Baseline":"0.73"},{"ID":"FBgn0037759","EGF_Baseline":"-0.66"},{"ID":"FBgn0001206","EGF_Baseline":"-0.95"},{"ID":"FBgn0037521","EGF_Baseline":"-1.89"},{"ID":"FBgn0050484","EGF_Baseline":"0.8"},{"ID":"FBgn0036784","EGF_Baseline":"1.11"},{"ID":"FBgn0050268","EGF_Baseline":"-1.19"},{"ID":"FBgn0033376","EGF_Baseline":"0.7"},{"ID":"FBgn0053013","EGF_Baseline":"-0.35"},{"ID":"FBgn0040687","EGF_Baseline":"0.51"},{"ID":"FBgn0050491","EGF_Baseline":"-0.42"},{"ID":"FBgn0025457","EGF_Baseline":"0.65"},{"ID":"FBgn0261458","EGF_Baseline":"0.84"},{"ID":"FBgn0261649","EGF_Baseline":"-0.76"},{"ID":"FBgn0038404","EGF_Baseline":"1.26"},{"ID":"FBgn0033049","EGF_Baseline":"0.6"},{"ID":"FBgn0053189","EGF_Baseline":"1.49"},{"ID":"FBgn0000042","EGF_Baseline":"-0.3"},{"ID":"FBgn0039170","EGF_Baseline":"-1.32"},{"ID":"FBgn0003889","EGF_Baseline":"2.14"},{"ID":"FBgn0031256","EGF_Baseline":"-2.1"},{"ID":"FBgn0030455","EGF_Baseline":"-0.59"},{"ID":"FBgn0037124","EGF_Baseline":"-1.58"},{"ID":"FBgn0032814","EGF_Baseline":"-1.29"},{"ID":"FBgn0028539","EGF_Baseline":"-1.92"},{"ID":"FBgn0053289","EGF_Baseline":"1.08"},{"ID":"FBgn0085446","EGF_Baseline":"-1.72"},{"ID":"FBgn0032304","EGF_Baseline":"-0.87"},{"ID":"FBgn0031405","EGF_Baseline":"-1.23"},{"ID":"FBgn0034706","EGF_Baseline":"-0.37"},{"ID":"FBgn0020762","EGF_Baseline":"-1.53"},{"ID":"FBgn0036536","EGF_Baseline":"0.6"},{"ID":"FBgn0031163","EGF_Baseline":"-1.05"},{"ID":"FBgn0030360","EGF_Baseline":"1.09"},{"ID":"FBgn0036828","EGF_Baseline":"1.89"},{"ID":"FBgn0035499","EGF_Baseline":"-0.72"},{"ID":"FBgn0030935","EGF_Baseline":"0.6"},{"ID":"FBgn0036999","EGF_Baseline":"-1.27"},{"ID":"FBgn0033763","EGF_Baseline":"0.41"},{"ID":"FBgn0040078","EGF_Baseline":"-2.71"},{"ID":"FBgn0017549","EGF_Baseline":"-0.09"},{"ID":"FBgn0052064","EGF_Baseline":"-1.51"},{"ID":"FBgn0034737","EGF_Baseline":"-1.32"},{"ID":"FBgn0032967","EGF_Baseline":"-1.13"},{"ID":"FBgn0261401","EGF_Baseline":"1.38"},{"ID":"FBgn0030960","EGF_Baseline":"-0.98"},{"ID":"FBgn0038369","EGF_Baseline":"-1.07"},{"ID":"FBgn0030599","EGF_Baseline":"0.91"},{"ID":"FBgn0029834","EGF_Baseline":"1.36"},{"ID":"FBgn0015391","EGF_Baseline":"1.44"},{"ID":"FBgn0050373","EGF_Baseline":"-0.45"},{"ID":"FBgn0038148","EGF_Baseline":"-0.49"},{"ID":"FBgn0023181","EGF_Baseline":"-0.91"},{"ID":"FBgn0028988","EGF_Baseline":"-1.48"},{"ID":"FBgn0030613","EGF_Baseline":"-0.26"},{"ID":"FBgn0001105","EGF_Baseline":"1.46"},{"ID":"FBgn0033639","EGF_Baseline":"1.41"},{"ID":"FBgn0038334","EGF_Baseline":"0.71"},{"ID":"FBgn0261380","EGF_Baseline":"0.09"},{"ID":"FBgn0031746","EGF_Baseline":"0.37"},{"ID":"FBgn0030389","EGF_Baseline":"0.27"},{"ID":"FBgn0086910","EGF_Baseline":"-1.01"},{"ID":"FBgn0035227","EGF_Baseline":"-1.69"},{"ID":"FBgn0085290","EGF_Baseline":"-1.55"},{"ID":"FBgn0031054","EGF_Baseline":"0.48"},{"ID":"FBgn0037917","EGF_Baseline":"1.38"},{"ID":"FBgn0051407","EGF_Baseline":"-2.03"},{"ID":"FBgn0031918","EGF_Baseline":"0.54"},{"ID":"FBgn0026563","EGF_Baseline":"1.16"},{"ID":"FBgn0019990","EGF_Baseline":"-0.3"},{"ID":"FBgn0031733","EGF_Baseline":"0.38"},{"ID":"FBgn0030321","EGF_Baseline":"0.27"},{"ID":"FBgn0035262","EGF_Baseline":"1.32"},{"ID":"FBgn0037094","EGF_Baseline":"-1.17"},{"ID":"FBgn0033076","EGF_Baseline":"-0.96"},{"ID":"FBgn0038460","EGF_Baseline":"-1.17"},{"ID":"FBgn0053770","EGF_Baseline":"1.19"},{"ID":"FBgn0037809","EGF_Baseline":"0.54"},{"ID":"FBgn0038593","EGF_Baseline":"0.86"},{"ID":"FBgn0261109","EGF_Baseline":"-1.15"},{"ID":"FBgn0004654","EGF_Baseline":"-0.7"},{"ID":"FBgn0032615","EGF_Baseline":"-1.43"},{"ID":"FBgn0050177","EGF_Baseline":"-0.53"},{"ID":"FBgn0031110","EGF_Baseline":"1.68"},{"ID":"FBgn0038248","EGF_Baseline":"-1.2"},{"ID":"FBgn0053128","EGF_Baseline":"-2.8"},{"ID":"FBgn0030297","EGF_Baseline":"0.62"},{"ID":"FBgn0010421","EGF_Baseline":"1.15"},{"ID":"FBgn0037943","EGF_Baseline":"-1.4"},{"ID":"FBgn0036717","EGF_Baseline":"-0.23"},{"ID":"FBgn0029947","EGF_Baseline":"-1.02"},{"ID":"FBgn0037781","EGF_Baseline":"-1.87"},{"ID":"FBgn0029580","EGF_Baseline":"-1.17"},{"ID":"FBgn0039462","EGF_Baseline":"-1.29"},{"ID":"FBgn0034314","EGF_Baseline":"1.44"},{"ID":"FBgn0037076","EGF_Baseline":"-0.76"},{"ID":"FBgn0040890","EGF_Baseline":"1.03"},{"ID":"FBgn0039709","EGF_Baseline":"-1.57"},{"ID":"FBgn0261641","EGF_Baseline":"-2.42"},{"ID":"FBgn0032554","EGF_Baseline":"0.61"},{"ID":"FBgn0020236","EGF_Baseline":"-1.02"},{"ID":"FBgn0038013","EGF_Baseline":"-0.48"},{"ID":"FBgn0032682","EGF_Baseline":"0.58"},{"ID":"FBgn0030696","EGF_Baseline":"0.22"},{"ID":"FBgn0051198","EGF_Baseline":"-0.95"},{"ID":"FBgn0037573","EGF_Baseline":"-2.25"},{"ID":"FBgn0039563","EGF_Baseline":"1"},{"ID":"FBgn0261617","EGF_Baseline":"2.53"},{"ID":"FBgn0039474","EGF_Baseline":"1.42"},{"ID":"FBgn0034886","EGF_Baseline":"-0.19"},{"ID":"FBgn0035390","EGF_Baseline":"-0.18"},{"ID":"FBgn0038837","EGF_Baseline":"1.24"},{"ID":"FBgn0050281","EGF_Baseline":"-0.9"},{"ID":"FBgn0040385","EGF_Baseline":"-0.75"},{"ID":"FBgn0031684","EGF_Baseline":"-0.9"},{"ID":"FBgn0010241","EGF_Baseline":"0.93"},{"ID":"FBgn0052056","EGF_Baseline":"-1.28"},{"ID":"FBgn0016122","EGF_Baseline":"-1.27"},{"ID":"FBgn0000541","EGF_Baseline":"-1.23"},{"ID":"FBgn0040892","EGF_Baseline":"-1.27"},{"ID":"FBgn0053552","EGF_Baseline":"0.62"},{"ID":"FBgn0036790","EGF_Baseline":"0.48"},{"ID":"FBgn0036090","EGF_Baseline":"-0.54"},{"ID":"FBgn0039536","EGF_Baseline":"-1.03"},{"ID":"FBgn0032822","EGF_Baseline":"-2.05"},{"ID":"FBgn0030969","EGF_Baseline":"0.95"},{"ID":"FBgn0039050","EGF_Baseline":"-0.68"},{"ID":"FBgn0034693","EGF_Baseline":"3.08"},{"ID":"FBgn0036368","EGF_Baseline":"0.47"},{"ID":"FBgn0052185","EGF_Baseline":"0.2"},{"ID":"FBgn0040929","EGF_Baseline":"0.24"},{"ID":"FBgn0016061","EGF_Baseline":"-1.33"},{"ID":"FBgn0052201","EGF_Baseline":"0.63"},{"ID":"FBgn0002775","EGF_Baseline":"-0.69"},{"ID":"FBgn0041156","EGF_Baseline":"-0.41"},{"ID":"FBgn0038052","EGF_Baseline":"-0.57"},{"ID":"FBgn0050359","EGF_Baseline":"0.37"},{"ID":"FBgn0037327","EGF_Baseline":"0.23"},{"ID":"FBgn0261549","EGF_Baseline":"0.61"},{"ID":"FBgn0030810","EGF_Baseline":"1.23"},{"ID":"FBgn0035069","EGF_Baseline":"1.42"},{"ID":"FBgn0037986","EGF_Baseline":"1.25"},{"ID":"FBgn0029693","EGF_Baseline":"0.46"},{"ID":"FBgn0035996","EGF_Baseline":"-0.06"},{"ID":"FBgn0028509","EGF_Baseline":"0.62"},{"ID":"FBgn0046999","EGF_Baseline":"-1.76"},{"ID":"FBgn0038725","EGF_Baseline":"1.66"},{"ID":"FBgn0034743","EGF_Baseline":"3.17"},{"ID":"FBgn0034183","EGF_Baseline":"-0.16"},{"ID":"FBgn0035838","EGF_Baseline":"-0.51"},{"ID":"FBgn0035400","EGF_Baseline":"-1.56"},{"ID":"FBgn0033985","EGF_Baseline":"0.94"},{"ID":"FBgn0032018","EGF_Baseline":"-1.01"},{"ID":"FBgn0027866","EGF_Baseline":"0.15"},{"ID":"FBgn0004956","EGF_Baseline":"0.81"},{"ID":"FBgn0026250","EGF_Baseline":"1.81"},{"ID":"FBgn0027578","EGF_Baseline":"-1.59"},{"ID":"FBgn0034614","EGF_Baseline":"-0.79"},{"ID":"FBgn0037885","EGF_Baseline":"-1.6"},{"ID":"FBgn0003334","EGF_Baseline":"0.61"},{"ID":"FBgn0017430","EGF_Baseline":"-1.01"},{"ID":"FBgn0044323","EGF_Baseline":"-2.46"},{"ID":"FBgn0000356","EGF_Baseline":"0.49"},{"ID":"FBgn0004179","EGF_Baseline":"-0.87"},{"ID":"FBgn0083942","EGF_Baseline":"-0.87"},{"ID":"FBgn0002566","EGF_Baseline":"0.83"},{"ID":"FBgn0039356","EGF_Baseline":"-0.9"},{"ID":"FBgn0032480","EGF_Baseline":"-2.11"},{"ID":"FBgn0034063","EGF_Baseline":"0.69"},{"ID":"FBgn0025383","EGF_Baseline":"-1.32"},{"ID":"FBgn0038078","EGF_Baseline":"0.35"},{"ID":"FBgn0053113","EGF_Baseline":"-1.46"},{"ID":"FBgn0031718","EGF_Baseline":"-1.87"},{"ID":"FBgn0000464","EGF_Baseline":"0.88"},{"ID":"FBgn0033934","EGF_Baseline":"1.01"},{"ID":"FBgn0085246","EGF_Baseline":"1.25"},{"ID":"FBgn0003733","EGF_Baseline":"-0.6"},{"ID":"FBgn0034788","EGF_Baseline":"1.59"},{"ID":"FBgn0086361","EGF_Baseline":"1.08"},{"ID":"FBgn0034612","EGF_Baseline":"-2.13"},{"ID":"FBgn0052115","EGF_Baseline":"-1.45"},{"ID":"FBgn0037601","EGF_Baseline":"-0.7"},{"ID":"FBgn0010408","EGF_Baseline":"1.4"},{"ID":"FBgn0035770","EGF_Baseline":"-1.2"},{"ID":"FBgn0051281","EGF_Baseline":"0.54"},{"ID":"FBgn0039850","EGF_Baseline":"-1.47"},{"ID":"FBgn0028943","EGF_Baseline":"-0.65"},{"ID":"FBgn0033128","EGF_Baseline":"0.72"},{"ID":"FBgn0052279","EGF_Baseline":"-1.23"},{"ID":"FBgn0250732","EGF_Baseline":"-0.76"},{"ID":"FBgn0011361","EGF_Baseline":"-0.82"},{"ID":"FBgn0025741","EGF_Baseline":"-0.2"},{"ID":"FBgn0040608","EGF_Baseline":"-1.96"},{"ID":"FBgn0002590","EGF_Baseline":"2.67"},{"ID":"FBgn0033457","EGF_Baseline":"0.94"},{"ID":"FBgn0029167","EGF_Baseline":"-0.67"},{"ID":"FBgn0030532","EGF_Baseline":"-1.86"},{"ID":"FBgn0040390","EGF_Baseline":"3.62"},{"ID":"FBgn0033202","EGF_Baseline":"1.2"},{"ID":"FBgn0024732","EGF_Baseline":"0.6"},{"ID":"FBgn0031951","EGF_Baseline":"-0.33"},{"ID":"FBgn0261387","EGF_Baseline":"1.32"},{"ID":"FBgn0051678","EGF_Baseline":"-1.78"},{"ID":"FBgn0033542","EGF_Baseline":"0.77"},{"ID":"FBgn0016977","EGF_Baseline":"-1.68"},{"ID":"FBgn0038028","EGF_Baseline":"-0.84"},{"ID":"FBgn0034920","EGF_Baseline":"1.84"},{"ID":"FBgn0029828","EGF_Baseline":"0.28"},{"ID":"FBgn0038611","EGF_Baseline":"1.23"},{"ID":"FBgn0036638","EGF_Baseline":"0.56"},{"ID":"FBgn0032849","EGF_Baseline":"-0.55"},{"ID":"FBgn0003862","EGF_Baseline":"-0.31"},{"ID":"FBgn0001970","EGF_Baseline":"-0.36"},{"ID":"FBgn0029800","EGF_Baseline":"0.92"},{"ID":"FBgn0038067","EGF_Baseline":"-0.76"},{"ID":"FBgn0032180","EGF_Baseline":"-1.73"},{"ID":"FBgn0031526","EGF_Baseline":"1"},{"ID":"FBgn0015338","EGF_Baseline":"0.87"},{"ID":"FBgn0026439","EGF_Baseline":"-0.58"},{"ID":"FBgn0023540","EGF_Baseline":"0.48"},{"ID":"FBgn0028707","EGF_Baseline":"-0.96"},{"ID":"FBgn0024975","EGF_Baseline":"-0.64"},{"ID":"FBgn0035300","EGF_Baseline":"0.04"},{"ID":"FBgn0037038","EGF_Baseline":"0.45"},{"ID":"FBgn0010387","EGF_Baseline":"-1.22"},{"ID":"FBgn0051547","EGF_Baseline":"-1.55"},{"ID":"FBgn0038943","EGF_Baseline":"0.51"},{"ID":"FBgn0001983","EGF_Baseline":"0.61"},{"ID":"FBgn0052591","EGF_Baseline":"0.64"},{"ID":"FBgn0034131","EGF_Baseline":"0.74"},{"ID":"FBgn0016984","EGF_Baseline":"-1.69"},{"ID":"FBgn0034731","EGF_Baseline":"0.4"},{"ID":"FBgn0032773","EGF_Baseline":"-0.81"},{"ID":"FBgn0034877","EGF_Baseline":"-1.86"},{"ID":"FBgn0035575","EGF_Baseline":"0.72"},{"ID":"FBgn0031753","EGF_Baseline":"0.72"},{"ID":"FBgn0020392","EGF_Baseline":"0.3"},{"ID":"FBgn0033962","EGF_Baseline":"0.5"},{"ID":"FBgn0038100","EGF_Baseline":"1.63"},{"ID":"FBgn0046698","EGF_Baseline":"0.56"},{"ID":"FBgn0051988","EGF_Baseline":"2.16"},{"ID":"FBgn0036928","EGF_Baseline":"-0.36"},{"ID":"FBgn0050479","EGF_Baseline":"-0.34"},{"ID":"FBgn0026430","EGF_Baseline":"-1.31"},{"ID":"FBgn0029170","EGF_Baseline":"0.52"},{"ID":"FBgn0038545","EGF_Baseline":"-2.63"},{"ID":"FBgn0031065","EGF_Baseline":"-1.5"},{"ID":"FBgn0053278","EGF_Baseline":"-0.88"},{"ID":"FBgn0052248","EGF_Baseline":"2.05"},{"ID":"FBgn0013334","EGF_Baseline":"-1.49"},{"ID":"FBgn0031970","EGF_Baseline":"0.24"},{"ID":"FBgn0033972","EGF_Baseline":"0.36"},{"ID":"FBgn0039120","EGF_Baseline":"6.27"},{"ID":"FBgn0259171","EGF_Baseline":"-1.55"},{"ID":"FBgn0038888","EGF_Baseline":"-1.58"},{"ID":"FBgn0032914","EGF_Baseline":"-0.32"},{"ID":"FBgn0030087","EGF_Baseline":"-1.48"},{"ID":"FBgn0053121","EGF_Baseline":"0.28"},{"ID":"FBgn0030597","EGF_Baseline":"-0.67"},{"ID":"FBgn0029854","EGF_Baseline":"-0.16"},{"ID":"FBgn0036942","EGF_Baseline":"1.15"},{"ID":"FBgn0028997","EGF_Baseline":"-1.32"},{"ID":"FBgn0031630","EGF_Baseline":"-1.35"},{"ID":"FBgn0053476","EGF_Baseline":"0.5"},{"ID":"FBgn0051109","EGF_Baseline":"-0.86"},{"ID":"FBgn0032938","EGF_Baseline":"-1.58"},{"ID":"FBgn0034793","EGF_Baseline":"1"},{"ID":"FBgn0024558","EGF_Baseline":"-0.86"},{"ID":"FBgn0040491","EGF_Baseline":"2.28"},{"ID":"FBgn0052652","EGF_Baseline":"1.61"},{"ID":"FBgn0037391","EGF_Baseline":"0.7"},{"ID":"FBgn0032477","EGF_Baseline":"-0.81"},{"ID":"FBgn0025684","EGF_Baseline":"-1.13"},{"ID":"FBgn0005590","EGF_Baseline":"-0.55"},{"ID":"FBgn0038753","EGF_Baseline":"-0.55"},{"ID":"FBgn0034274","EGF_Baseline":"0.96"},{"ID":"FBgn0032082","EGF_Baseline":"0.59"},{"ID":"FBgn0037654","EGF_Baseline":"-0.28"},{"ID":"FBgn0038217","EGF_Baseline":"-1.97"},{"ID":"FBgn0037661","EGF_Baseline":"0.56"},{"ID":"FBgn0039335","EGF_Baseline":"-1.43"},{"ID":"FBgn0043576","EGF_Baseline":"0.41"},{"ID":"FBgn0032654","EGF_Baseline":"-1.34"},{"ID":"FBgn0024957","EGF_Baseline":"0.54"},{"ID":"FBgn0042135","EGF_Baseline":"-0.55"},{"ID":"FBgn0051028","EGF_Baseline":"0.82"},{"ID":"FBgn0034638","EGF_Baseline":"-0.96"},{"ID":"FBgn0051501","EGF_Baseline":"1.76"},{"ID":"FBgn0045770","EGF_Baseline":"-0.41"},{"ID":"FBgn0038828","EGF_Baseline":"0.44"},{"ID":"FBgn0035521","EGF_Baseline":"0.78"},{"ID":"FBgn0085276","EGF_Baseline":"1"},{"ID":"FBgn0050369","EGF_Baseline":"-0.87"},{"ID":"FBgn0030742","EGF_Baseline":"-0.92"},{"ID":"FBgn0260794","EGF_Baseline":"-1.25"},{"ID":"FBgn0033547","EGF_Baseline":"0.35"},{"ID":"FBgn0039839","EGF_Baseline":"1.78"},{"ID":"FBgn0259743","EGF_Baseline":"-1.07"},{"ID":"FBgn0031720","EGF_Baseline":"-0.53"},{"ID":"FBgn0030356","EGF_Baseline":"1.28"},{"ID":"FBgn0031437","EGF_Baseline":"2.47"},{"ID":"FBgn0033265","EGF_Baseline":"-0.77"},{"ID":"FBgn0015781","EGF_Baseline":"0.68"},{"ID":"FBgn0004832","EGF_Baseline":"-1.48"},{"ID":"FBgn0034117","EGF_Baseline":"1.61"},{"ID":"FBgn0086656","EGF_Baseline":"-0.96"},{"ID":"FBgn0001084","EGF_Baseline":"0.66"},{"ID":"FBgn0061476","EGF_Baseline":"1.18"},{"ID":"FBgn0033979","EGF_Baseline":"0.64"},{"ID":"FBgn0020443","EGF_Baseline":"-1.08"},{"ID":"FBgn0039419","EGF_Baseline":"-0.42"},{"ID":"FBgn0031985","EGF_Baseline":"0.85"},{"ID":"FBgn0032987","EGF_Baseline":"4.51"},{"ID":"FBgn0031779","EGF_Baseline":"0.55"},{"ID":"FBgn0038332","EGF_Baseline":"0.4"},{"ID":"FBgn0029174","EGF_Baseline":"-0.65"},{"ID":"FBgn0032296","EGF_Baseline":"-1.72"},{"ID":"FBgn0030801","EGF_Baseline":"-1.08"},{"ID":"FBgn0051102","EGF_Baseline":"0.6"},{"ID":"FBgn0027111","EGF_Baseline":"2.17"},{"ID":"FBgn0034835","EGF_Baseline":"-0.57"},{"ID":"FBgn0052062","EGF_Baseline":"-1.49"},{"ID":"FBgn0259744","EGF_Baseline":"1.23"},{"ID":"FBgn0051924","EGF_Baseline":"1.72"},{"ID":"FBgn0035600","EGF_Baseline":"-2.02"},{"ID":"FBgn0053214","EGF_Baseline":"-2.41"},{"ID":"FBgn0019947","EGF_Baseline":"-0.43"},{"ID":"FBgn0032901","EGF_Baseline":"3.33"},{"ID":"FBgn0039386","EGF_Baseline":"0.76"},{"ID":"FBgn0027654","EGF_Baseline":"0.16"},{"ID":"FBgn0037332","EGF_Baseline":"-1.49"},{"ID":"FBgn0065108","EGF_Baseline":"0.44"},{"ID":"FBgn0036842","EGF_Baseline":"-1.12"},{"ID":"FBgn0013949","EGF_Baseline":"-0.24"},{"ID":"FBgn0030780","EGF_Baseline":"0.22"},{"ID":"FBgn0035374","EGF_Baseline":"0.3"},{"ID":"FBgn0015331","EGF_Baseline":"-0.45"},{"ID":"FBgn0040765","EGF_Baseline":"-0.94"},{"ID":"FBgn0030678","EGF_Baseline":"-0.36"},{"ID":"FBgn0031548","EGF_Baseline":"-1.61"},{"ID":"FBgn0039160","EGF_Baseline":"-0.56"},{"ID":"FBgn0031086","EGF_Baseline":"-0.91"},{"ID":"FBgn0029812","EGF_Baseline":"-1.19"},{"ID":"FBgn0053517","EGF_Baseline":"1.78"},{"ID":"FBgn0066365","EGF_Baseline":"2.83"},{"ID":"FBgn0037892","EGF_Baseline":"0.41"},{"ID":"FBgn0031248","EGF_Baseline":"-1.08"},{"ID":"FBgn0034084","EGF_Baseline":"-0.75"},{"ID":"FBgn0032398","EGF_Baseline":"-1.36"},{"ID":"FBgn0037770","EGF_Baseline":"1.61"},{"ID":"FBgn0041780","EGF_Baseline":"1.77"},{"ID":"FBgn0032435","EGF_Baseline":"-0.99"},{"ID":"FBgn0003449","EGF_Baseline":"-0.74"},{"ID":"FBgn0037506","EGF_Baseline":"-2.21"},{"ID":"FBgn0052985","EGF_Baseline":"-1.71"},{"ID":"FBgn0052793","EGF_Baseline":"-0.52"},{"ID":"FBgn0015240","EGF_Baseline":"0.74"},{"ID":"FBgn0038203","EGF_Baseline":"0.96"},{"ID":"FBgn0031005","EGF_Baseline":"-1.19"},{"ID":"FBgn0261786","EGF_Baseline":"1.24"},{"ID":"FBgn0038484","EGF_Baseline":"0.78"},{"ID":"FBgn0036279","EGF_Baseline":"0.64"},{"ID":"FBgn0032472","EGF_Baseline":"-0.74"},{"ID":"FBgn0000635","EGF_Baseline":"-1.67"},{"ID":"FBgn0041004","EGF_Baseline":"-1.03"},{"ID":"FBgn0038917","EGF_Baseline":"0.57"},{"ID":"FBgn0051752","EGF_Baseline":"0.5"},{"ID":"FBgn0031654","EGF_Baseline":"1.93"},{"ID":"FBgn0035143","EGF_Baseline":"1.73"},{"ID":"FBgn0037475","EGF_Baseline":"0.97"},{"ID":"FBgn0039631","EGF_Baseline":"-1.43"},{"ID":"FBgn0027508","EGF_Baseline":"0.37"},{"ID":"FBgn0034029","EGF_Baseline":"0.62"},{"ID":"FBgn0031792","EGF_Baseline":"0.37"},{"ID":"FBgn0033773","EGF_Baseline":"0.67"},{"ID":"FBgn0052368","EGF_Baseline":"-1.03"},{"ID":"FBgn0040816","EGF_Baseline":"-1.5"},{"ID":"FBgn0039326","EGF_Baseline":"-1.52"},{"ID":"FBgn0031844","EGF_Baseline":"-0.35"},{"ID":"FBgn0037427","EGF_Baseline":"-2.22"},{"ID":"FBgn0031444","EGF_Baseline":"0.25"},{"ID":"FBgn0031818","EGF_Baseline":"-1.07"},{"ID":"FBgn0034427","EGF_Baseline":"-1.01"},{"ID":"FBgn0053702","EGF_Baseline":"-0.91"},{"ID":"FBgn0050194","EGF_Baseline":"1.98"},{"ID":"FBgn0046689","EGF_Baseline":"-0.68"},{"ID":"FBgn0038486","EGF_Baseline":"0.72"},{"ID":"FBgn0037310","EGF_Baseline":"-0.48"},{"ID":"FBgn0031716","EGF_Baseline":"0.87"},{"ID":"FBgn0051118","EGF_Baseline":"1.74"},{"ID":"FBgn0250850","EGF_Baseline":"-1.74"},{"ID":"FBgn0031617","EGF_Baseline":"-0.88"},{"ID":"FBgn0259937","EGF_Baseline":"-1.47"},{"ID":"FBgn0036566","EGF_Baseline":"0.97"},{"ID":"FBgn0041171","EGF_Baseline":"1.42"},{"ID":"FBgn0031957","EGF_Baseline":"-0.7"},{"ID":"FBgn0035781","EGF_Baseline":"0.63"},{"ID":"FBgn0085379","EGF_Baseline":"0.25"},{"ID":"FBgn0032679","EGF_Baseline":"0.4"},{"ID":"FBgn0015011","EGF_Baseline":"7.83"},{"ID":"FBgn0052821","EGF_Baseline":"-0.6"},{"ID":"FBgn0024947","EGF_Baseline":"-0.13"},{"ID":"FBgn0051099","EGF_Baseline":"0.33"},{"ID":"FBgn0027524","EGF_Baseline":"-0.97"},{"ID":"FBgn0035252","EGF_Baseline":"0.8"},{"ID":"FBgn0046323","EGF_Baseline":"-2"},{"ID":"FBgn0025874","EGF_Baseline":"-1.11"},{"ID":"FBgn0050121","EGF_Baseline":"-1.29"},{"ID":"FBgn0022772","EGF_Baseline":"-1.67"},{"ID":"FBgn0039117","EGF_Baseline":"0.72"},{"ID":"FBgn0038380","EGF_Baseline":"-0.08"},{"ID":"FBgn0036485","EGF_Baseline":"0.71"},{"ID":"FBgn0034978","EGF_Baseline":"0.41"},{"ID":"FBgn0039154","EGF_Baseline":"-1.22"},{"ID":"FBgn0040942","EGF_Baseline":"-0.81"},{"ID":"FBgn0052806","EGF_Baseline":"-0.75"},{"ID":"FBgn0031800","EGF_Baseline":"0.73"},{"ID":"FBgn0030539","EGF_Baseline":"-0.48"},{"ID":"FBgn0039832","EGF_Baseline":"-1.33"},{"ID":"FBgn0039078","EGF_Baseline":"-1.88"},{"ID":"FBgn0003887","EGF_Baseline":"1.58"},{"ID":"FBgn0034407","EGF_Baseline":"0.67"},{"ID":"FBgn0036876","EGF_Baseline":"-0.37"},{"ID":"FBgn0033464","EGF_Baseline":"-0.68"},{"ID":"FBgn0032965","EGF_Baseline":"-1.57"},{"ID":"FBgn0035761","EGF_Baseline":"0.89"},{"ID":"FBgn0037608","EGF_Baseline":"-1.23"},{"ID":"FBgn0052075","EGF_Baseline":"-1.21"},{"ID":"FBgn0036337","EGF_Baseline":"0.87"},{"ID":"FBgn0039104","EGF_Baseline":"0.49"},{"ID":"FBgn0034374","EGF_Baseline":"-1.64"},{"ID":"FBgn0032189","EGF_Baseline":"-1.36"},{"ID":"FBgn0085468","EGF_Baseline":"-1.9"},{"ID":"FBgn0015799","EGF_Baseline":"0.94"},{"ID":"FBgn0030706","EGF_Baseline":"1.06"},{"ID":"FBgn0003114","EGF_Baseline":"-0.23"},{"ID":"FBgn0037342","EGF_Baseline":"-0.6"},{"ID":"FBgn0030056","EGF_Baseline":"-0.73"},{"ID":"FBgn0086358","EGF_Baseline":"-1.05"},{"ID":"FBgn0015008","EGF_Baseline":"0.32"},{"ID":"FBgn0260400","EGF_Baseline":"2.54"},{"ID":"FBgn0003513","EGF_Baseline":"-0.48"},{"ID":"FBgn0052255","EGF_Baseline":"1.2"},{"ID":"FBgn0027363","EGF_Baseline":"0.51"},{"ID":"FBgn0031399","EGF_Baseline":"1.3"},{"ID":"FBgn0053287","EGF_Baseline":"-0.39"},{"ID":"FBgn0039227","EGF_Baseline":"2.81"},{"ID":"FBgn0033371","EGF_Baseline":"-0.37"},{"ID":"FBgn0030412","EGF_Baseline":"-1.77"},{"ID":"FBgn0030757","EGF_Baseline":"-1.39"},{"ID":"FBgn0035755","EGF_Baseline":"1.79"},{"ID":"FBgn0035165","EGF_Baseline":"0.07"},{"ID":"FBgn0030684","EGF_Baseline":"-0.92"},{"ID":"FBgn0031781","EGF_Baseline":"1.28"},{"ID":"FBgn0031514","EGF_Baseline":"-0.74"},{"ID":"FBgn0028544","EGF_Baseline":"-1.41"},{"ID":"FBgn0033860","EGF_Baseline":"0.83"},{"ID":"FBgn0028693","EGF_Baseline":"-0.5"},{"ID":"FBgn0086707","EGF_Baseline":"1.42"},{"ID":"FBgn0032200","EGF_Baseline":"-0.9"},{"ID":"FBgn0031227","EGF_Baseline":"-1.36"},{"ID":"FBgn0028421","EGF_Baseline":"-0.87"},{"ID":"FBgn0035688","EGF_Baseline":"-1.43"},{"ID":"FBgn0039485","EGF_Baseline":"0.95"},{"ID":"FBgn0031106","EGF_Baseline":"-0.61"},{"ID":"FBgn0031497","EGF_Baseline":"-1.33"},{"ID":"FBgn0031254","EGF_Baseline":"0.3"},{"ID":"FBgn0034908","EGF_Baseline":"2.25"},{"ID":"FBgn0035541","EGF_Baseline":"-1.01"},{"ID":"FBgn0032101","EGF_Baseline":"-1.07"},{"ID":"FBgn0036479","EGF_Baseline":"-0.31"},{"ID":"FBgn0035989","EGF_Baseline":"1.2"},{"ID":"FBgn0031663","EGF_Baseline":"1.19"},{"ID":"FBgn0039041","EGF_Baseline":"-1.31"},{"ID":"FBgn0029002","EGF_Baseline":"0.28"},{"ID":"FBgn0039707","EGF_Baseline":"0.43"},{"ID":"FBgn0033925","EGF_Baseline":"0.51"},{"ID":"FBgn0020370","EGF_Baseline":"-0.78"},{"ID":"FBgn0033286","EGF_Baseline":"-0.87"},{"ID":"FBgn0023441","EGF_Baseline":"2.59"},{"ID":"FBgn0033324","EGF_Baseline":"0.15"},{"ID":"FBgn0035199","EGF_Baseline":"-1.39"},{"ID":"FBgn0250839","EGF_Baseline":"1.72"},{"ID":"FBgn0053098","EGF_Baseline":"0.5"},{"ID":"FBgn0038415","EGF_Baseline":"0.66"},{"ID":"FBgn0086372","EGF_Baseline":"0.25"},{"ID":"FBgn0052037","EGF_Baseline":"-0.67"},{"ID":"FBgn0037463","EGF_Baseline":"1.73"},{"ID":"FBgn0036812","EGF_Baseline":"-0.25"},{"ID":"FBgn0024361","EGF_Baseline":"0.9"},{"ID":"FBgn0003011","EGF_Baseline":"0.87"},{"ID":"FBgn0037498","EGF_Baseline":"-0.07"},{"ID":"FBgn0052982","EGF_Baseline":"-0.95"},{"ID":"FBgn0260005","EGF_Baseline":"-1.17"},{"ID":"FBgn0040534","EGF_Baseline":"3.27"},{"ID":"FBgn0260446","EGF_Baseline":"1.45"},{"ID":"FBgn0038860","EGF_Baseline":"-0.31"},{"ID":"FBgn0013720","EGF_Baseline":"-0.23"},{"ID":"FBgn0086675","EGF_Baseline":"-1.46"},{"ID":"FBgn0031286","EGF_Baseline":"-1.55"},{"ID":"FBgn0010590","EGF_Baseline":"-1.8"},{"ID":"FBgn0034971","EGF_Baseline":"1.05"},{"ID":"FBgn0020626","EGF_Baseline":"0.83"},{"ID":"FBgn0031869","EGF_Baseline":"0.34"},{"ID":"FBgn0035779","EGF_Baseline":"0.52"},{"ID":"FBgn0053459","EGF_Baseline":"-1.3"},{"ID":"FBgn0035290","EGF_Baseline":"0.49"},{"ID":"FBgn0035733","EGF_Baseline":"-0.26"},{"ID":"FBgn0027602","EGF_Baseline":"-0.74"},{"ID":"FBgn0034748","EGF_Baseline":"0.26"},{"ID":"FBgn0016119","EGF_Baseline":"-0.48"},{"ID":"FBgn0034505","EGF_Baseline":"-1"},{"ID":"FBgn0037184","EGF_Baseline":"0.39"},{"ID":"FBgn0027518","EGF_Baseline":"0.83"},{"ID":"FBgn0034153","EGF_Baseline":"-0.64"},{"ID":"FBgn0036726","EGF_Baseline":"-0.69"},{"ID":"FBgn0037643","EGF_Baseline":"-0.65"},{"ID":"FBgn0032636","EGF_Baseline":"1.53"},{"ID":"FBgn0053548","EGF_Baseline":"-0.78"},{"ID":"FBgn0052372","EGF_Baseline":"1.3"},{"ID":"FBgn0036294","EGF_Baseline":"-0.29"},{"ID":"FBgn0052971","EGF_Baseline":"-0.65"},{"ID":"FBgn0031681","EGF_Baseline":"-1.34"},{"ID":"FBgn0034176","EGF_Baseline":"-2.12"},{"ID":"FBgn0035645","EGF_Baseline":"-1.26"},{"ID":"FBgn0261245","EGF_Baseline":"-1.4"},{"ID":"FBgn0037703","EGF_Baseline":"-1.23"},{"ID":"FBgn0029897","EGF_Baseline":"4.91"},{"ID":"FBgn0033485","EGF_Baseline":"0.31"},{"ID":"FBgn0039184","EGF_Baseline":"0.78"},{"ID":"FBgn0040487","EGF_Baseline":"-1.21"},{"ID":"FBgn0039595","EGF_Baseline":"1.45"},{"ID":"FBgn0041244","EGF_Baseline":"-1.73"},{"ID":"FBgn0051948","EGF_Baseline":"-0.67"},{"ID":"FBgn0051053","EGF_Baseline":"0.65"},{"ID":"FBgn0036160","EGF_Baseline":"0.57"},{"ID":"FBgn0033047","EGF_Baseline":"2.33"},{"ID":"FBgn0016970","EGF_Baseline":"-0.76"},{"ID":"FBgn0034461","EGF_Baseline":"1.03"},{"ID":"FBgn0261090","EGF_Baseline":"1.6"},{"ID":"FBgn0030749","EGF_Baseline":"-0.31"},{"ID":"FBgn0036488","EGF_Baseline":"1.7"},{"ID":"FBgn0046756","EGF_Baseline":"0.3"},{"ID":"FBgn0036348","EGF_Baseline":"1.22"},{"ID":"FBgn0037860","EGF_Baseline":"0.37"},{"ID":"FBgn0011812","EGF_Baseline":"-0.76"},{"ID":"FBgn0261551","EGF_Baseline":"-0.94"},{"ID":"FBgn0042112","EGF_Baseline":"0.03"},{"ID":"FBgn0004888","EGF_Baseline":"-2.27"},{"ID":"FBgn0052081","EGF_Baseline":"-0.86"},{"ID":"FBgn0032361","EGF_Baseline":"-1.84"},{"ID":"FBgn0035695","EGF_Baseline":"-1.41"},{"ID":"FBgn0051909","EGF_Baseline":"-2.38"},{"ID":"FBgn0041147","EGF_Baseline":"0.85"},{"ID":"FBgn0050404","EGF_Baseline":"1.05"},{"ID":"FBgn0033397","EGF_Baseline":"-1.88"},{"ID":"FBgn0040717","EGF_Baseline":"-0.12"},{"ID":"FBgn0050050","EGF_Baseline":"-1.02"},{"ID":"FBgn0028744","EGF_Baseline":"0.43"},{"ID":"FBgn0039071","EGF_Baseline":"1.49"},{"ID":"FBgn0052833","EGF_Baseline":"0.61"},{"ID":"FBgn0259785","EGF_Baseline":"-0.79"},{"ID":"FBgn0034538","EGF_Baseline":"-1.79"},{"ID":"FBgn0030519","EGF_Baseline":"-1.38"},{"ID":"FBgn0047135","EGF_Baseline":"1.6"},{"ID":"FBgn0037540","EGF_Baseline":"1.3"},{"ID":"FBgn0027376","EGF_Baseline":"-1.9"},{"ID":"FBgn0004363","EGF_Baseline":"-1.07"},{"ID":"FBgn0039737","EGF_Baseline":"-1.7"},{"ID":"FBgn0034472","EGF_Baseline":"-0.78"},{"ID":"FBgn0036858","EGF_Baseline":"-2.04"},{"ID":"FBgn0052379","EGF_Baseline":"-0.63"},{"ID":"FBgn0038821","EGF_Baseline":"1.11"},{"ID":"FBgn0038020","EGF_Baseline":"0.51"},{"ID":"FBgn0051862","EGF_Baseline":"1.67"},{"ID":"FBgn0003068","EGF_Baseline":"-1.27"},{"ID":"FBgn0010812","EGF_Baseline":"-0.57"},{"ID":"FBgn0015572","EGF_Baseline":"-1.02"},{"ID":"FBgn0000153","EGF_Baseline":"0.38"},{"ID":"FBgn0032391","EGF_Baseline":"-1.07"},{"ID":"FBgn0030996","EGF_Baseline":"-1.35"},{"ID":"FBgn0033019","EGF_Baseline":"-1.28"},{"ID":"FBgn0259178","EGF_Baseline":"1.32"},{"ID":"FBgn0085197","EGF_Baseline":"-0.6"},{"ID":"FBgn0029969","EGF_Baseline":"-0.19"},{"ID":"FBgn0033278","EGF_Baseline":"-0.67"},{"ID":"FBgn0029756","EGF_Baseline":"-1.27"},{"ID":"FBgn0051133","EGF_Baseline":"-0.39"},{"ID":"FBgn0029765","EGF_Baseline":"-1.48"},{"ID":"FBgn0031535","EGF_Baseline":"-0.54"},{"ID":"FBgn0054047","EGF_Baseline":"-0.74"},{"ID":"FBgn0087005","EGF_Baseline":"-1.41"},{"ID":"FBgn0038578","EGF_Baseline":"3.83"},{"ID":"FBgn0030028","EGF_Baseline":"-0.85"},{"ID":"FBgn0030890","EGF_Baseline":"-0.87"},{"ID":"FBgn0050094","EGF_Baseline":"-0.16"},{"ID":"FBgn0037223","EGF_Baseline":"-0.77"},{"ID":"FBgn0032522","EGF_Baseline":"-0.85"},{"ID":"FBgn0026738","EGF_Baseline":"-0.79"},{"ID":"FBgn0038700","EGF_Baseline":"-0.77"},{"ID":"FBgn0027571","EGF_Baseline":"1.5"},{"ID":"FBgn0040227","EGF_Baseline":"1.02"},{"ID":"FBgn0062442","EGF_Baseline":"-0.78"},{"ID":"FBgn0003277","EGF_Baseline":"2.48"},{"ID":"FBgn0040372","EGF_Baseline":"-0.38"},{"ID":"FBgn0031888","EGF_Baseline":"-1.45"},{"ID":"FBgn0035964","EGF_Baseline":"1.36"},{"ID":"FBgn0015618","EGF_Baseline":"4.86"},{"ID":"FBgn0035056","EGF_Baseline":"0.03"},{"ID":"FBgn0036288","EGF_Baseline":"3.47"},{"ID":"FBgn0086679","EGF_Baseline":"0.91"},{"ID":"FBgn0028942","EGF_Baseline":"-1.3"},{"ID":"FBgn0005626","EGF_Baseline":"1.32"},{"ID":"FBgn0037358","EGF_Baseline":"-1.08"},{"ID":"FBgn0002772","EGF_Baseline":"0.12"},{"ID":"FBgn0011693","EGF_Baseline":"-0.48"},{"ID":"FBgn0031146","EGF_Baseline":"1.14"},{"ID":"FBgn0001978","EGF_Baseline":"2.22"},{"ID":"FBgn0003140","EGF_Baseline":"0.4"},{"ID":"FBgn0038180","EGF_Baseline":"1.88"},{"ID":"FBgn0031450","EGF_Baseline":"-1.01"},{"ID":"FBgn0040465","EGF_Baseline":"-1.4"},{"ID":"FBgn0033134","EGF_Baseline":"-0.11"},{"ID":"FBgn0002524","EGF_Baseline":"1.69"},{"ID":"FBgn0260474","EGF_Baseline":"1.77"},{"ID":"FBgn0039048","EGF_Baseline":"-0.48"},{"ID":"FBgn0051619","EGF_Baseline":"-0.94"},{"ID":"FBgn0033990","EGF_Baseline":"0.58"},{"ID":"FBgn0010770","EGF_Baseline":"1.5"},{"ID":"FBgn0040950","EGF_Baseline":"2.23"},{"ID":"FBgn0261530","EGF_Baseline":"-1.12"},{"ID":"FBgn0034396","EGF_Baseline":"0.75"},{"ID":"FBgn0040257","EGF_Baseline":"1.17"},{"ID":"FBgn0261534","EGF_Baseline":"-0.14"},{"ID":"FBgn0010044","EGF_Baseline":"-1.85"},{"ID":"FBgn0036680","EGF_Baseline":"-0.28"},{"ID":"FBgn0261585","EGF_Baseline":"1.46"},{"ID":"FBgn0033943","EGF_Baseline":"-1.26"},{"ID":"FBgn0040505","EGF_Baseline":"0.91"},{"ID":"FBgn0037121","EGF_Baseline":"0.71"},{"ID":"FBgn0031886","EGF_Baseline":"0.59"},{"ID":"FBgn0030398","EGF_Baseline":"-0.8"},{"ID":"FBgn0032451","EGF_Baseline":"0.27"},{"ID":"FBgn0040091","EGF_Baseline":"-0.7"},{"ID":"FBgn0050046","EGF_Baseline":"-1"},{"ID":"FBgn0036422","EGF_Baseline":"0.5"},{"ID":"FBgn0259729","EGF_Baseline":"-0.75"},{"ID":"FBgn0260753","EGF_Baseline":"-0.93"},{"ID":"FBgn0010223","EGF_Baseline":"-0.17"},{"ID":"FBgn0025185","EGF_Baseline":"-0.48"},{"ID":"FBgn0023167","EGF_Baseline":"0.45"},{"ID":"FBgn0035626","EGF_Baseline":"0.15"},{"ID":"FBgn0010352","EGF_Baseline":"1.5"},{"ID":"FBgn0040571","EGF_Baseline":"0.8"},{"ID":"FBgn0031934","EGF_Baseline":"-0.96"},{"ID":"FBgn0038516","EGF_Baseline":"0.76"},{"ID":"FBgn0052667","EGF_Baseline":"-0.83"},{"ID":"FBgn0008635","EGF_Baseline":"1.31"},{"ID":"FBgn0038654","EGF_Baseline":"-1.67"},{"ID":"FBgn0032095","EGF_Baseline":"0.23"},{"ID":"FBgn0000258","EGF_Baseline":"1.03"},{"ID":"FBgn0038673","EGF_Baseline":"-0.83"},{"ID":"FBgn0030941","EGF_Baseline":"-1.22"},{"ID":"FBgn0039679","EGF_Baseline":"-0.7"},{"ID":"FBgn0260764","EGF_Baseline":"-1.22"},{"ID":"FBgn0030904","EGF_Baseline":"0.63"},{"ID":"FBgn0033935","EGF_Baseline":"0.59"},{"ID":"FBgn0030773","EGF_Baseline":"-0.38"},{"ID":"FBgn0038385","EGF_Baseline":"-0.63"},{"ID":"FBgn0015218","EGF_Baseline":"1.93"},{"ID":"FBgn0039212","EGF_Baseline":"0.56"},{"ID":"FBgn0034430","EGF_Baseline":"-0.44"},{"ID":"FBgn0029723","EGF_Baseline":"0.52"},{"ID":"FBgn0033027","EGF_Baseline":"-1.07"},{"ID":"FBgn0033473","EGF_Baseline":"-1.19"},{"ID":"FBgn0030582","EGF_Baseline":"-0.57"},{"ID":"FBgn0032243","EGF_Baseline":"-1.35"},{"ID":"FBgn0033680","EGF_Baseline":"-1.46"},{"ID":"FBgn0014340","EGF_Baseline":"-1.5"},{"ID":"FBgn0020309","EGF_Baseline":"-1.11"},{"ID":"FBgn0035855","EGF_Baseline":"-0.69"},{"ID":"FBgn0002723","EGF_Baseline":"-0.92"},{"ID":"FBgn0029712","EGF_Baseline":"-0.7"},{"ID":"FBgn0051739","EGF_Baseline":"-0.83"},{"ID":"FBgn0032533","EGF_Baseline":"-1.59"},{"ID":"FBgn0045495","EGF_Baseline":"0.77"},{"ID":"FBgn0085400","EGF_Baseline":"1.11"},{"ID":"FBgn0033101","EGF_Baseline":"1.48"},{"ID":"FBgn0003256","EGF_Baseline":"9.67"},{"ID":"FBgn0033061","EGF_Baseline":"1.01"},{"ID":"FBgn0036159","EGF_Baseline":"-1.53"},{"ID":"FBgn0050460","EGF_Baseline":"-1.54"},{"ID":"FBgn0030218","EGF_Baseline":"0.49"},{"ID":"FBgn0005613","EGF_Baseline":"3.15"},{"ID":"FBgn0017579","EGF_Baseline":"3.86"},{"ID":"FBgn0050345","EGF_Baseline":"-1.39"},{"ID":"FBgn0031829","EGF_Baseline":"-2.54"},{"ID":"FBgn0046886","EGF_Baseline":"0.43"},{"ID":"FBgn0032354","EGF_Baseline":"0.49"},{"ID":"FBgn0260226","EGF_Baseline":"-1.16"},{"ID":"FBgn0038881","EGF_Baseline":"2.14"},{"ID":"FBgn0039670","EGF_Baseline":"-1.24"},{"ID":"FBgn0033917","EGF_Baseline":"-0.62"},{"ID":"FBgn0042098","EGF_Baseline":"1.34"},{"ID":"FBgn0036316","EGF_Baseline":"-0.79"},{"ID":"FBgn0030035","EGF_Baseline":"0.41"},{"ID":"FBgn0030186","EGF_Baseline":"-0.77"},{"ID":"FBgn0031130","EGF_Baseline":"-0.66"},{"ID":"FBgn0259210","EGF_Baseline":"2.12"},{"ID":"FBgn0051693","EGF_Baseline":"-1.9"},{"ID":"FBgn0021979","EGF_Baseline":"0.71"},{"ID":"FBgn0032033","EGF_Baseline":"1.08"},{"ID":"FBgn0000036","EGF_Baseline":"-0.32"},{"ID":"FBgn0083963","EGF_Baseline":"-2.04"},{"ID":"FBgn0051815","EGF_Baseline":"-0.78"},{"ID":"FBgn0030789","EGF_Baseline":"-0.55"},{"ID":"FBgn0038342","EGF_Baseline":"-0.61"},{"ID":"FBgn0039193","EGF_Baseline":"1.13"},{"ID":"FBgn0260856","EGF_Baseline":"1.07"},{"ID":"FBgn0039651","EGF_Baseline":"0.74"},{"ID":"FBgn0032026","EGF_Baseline":"-1.06"},{"ID":"FBgn0001114","EGF_Baseline":"-1.17"},{"ID":"FBgn0005355","EGF_Baseline":"1.14"},{"ID":"FBgn0261502","EGF_Baseline":"1.39"},{"ID":"FBgn0086444","EGF_Baseline":"0.69"},{"ID":"FBgn0053533","EGF_Baseline":"1.18"},{"ID":"FBgn0033951","EGF_Baseline":"0.34"},{"ID":"FBgn0031375","EGF_Baseline":"-0.35"},{"ID":"FBgn0037199","EGF_Baseline":"-1.64"},{"ID":"FBgn0250870","EGF_Baseline":"-0.45"},{"ID":"FBgn0022786","EGF_Baseline":"-0.79"},{"ID":"FBgn0039812","EGF_Baseline":"0.21"},{"ID":"FBgn0032120","EGF_Baseline":"-1.88"},{"ID":"FBgn0043539","EGF_Baseline":"-0.97"},{"ID":"FBgn0039727","EGF_Baseline":"-1.03"},{"ID":"FBgn0086855","EGF_Baseline":"0.82"},{"ID":"FBgn0026317","EGF_Baseline":"-1.2"},{"ID":"FBgn0024913","EGF_Baseline":"1.51"},{"ID":"FBgn0001313","EGF_Baseline":"-1.13"},{"ID":"FBgn0035598","EGF_Baseline":"-0.43"},{"ID":"FBgn0028382","EGF_Baseline":"-0.83"},{"ID":"FBgn0037899","EGF_Baseline":"0.38"},{"ID":"FBgn0038507","EGF_Baseline":"0.54"},{"ID":"FBgn0037490","EGF_Baseline":"0.57"},{"ID":"FBgn0033950","EGF_Baseline":"-1.01"},{"ID":"FBgn0035792","EGF_Baseline":"1.38"},{"ID":"FBgn0250755","EGF_Baseline":"-0.6"},{"ID":"FBgn0051742","EGF_Baseline":"2.01"},{"ID":"FBgn0051390","EGF_Baseline":"1.13"},{"ID":"FBgn0029906","EGF_Baseline":"1.03"},{"ID":"FBgn0035510","EGF_Baseline":"0.82"},{"ID":"FBgn0053054","EGF_Baseline":"-0.54"},{"ID":"FBgn0025802","EGF_Baseline":"0.08"},{"ID":"FBgn0034763","EGF_Baseline":"-0.59"},{"ID":"FBgn0028789","EGF_Baseline":"-0.34"},{"ID":"FBgn0033113","EGF_Baseline":"0.15"},{"ID":"FBgn0051191","EGF_Baseline":"0.96"},{"ID":"FBgn0037371","EGF_Baseline":"-0.77"},{"ID":"FBgn0038299","EGF_Baseline":"1.4"},{"ID":"FBgn0032003","EGF_Baseline":"-1.26"},{"ID":"FBgn0003710","EGF_Baseline":"-1.89"},{"ID":"FBgn0028467","EGF_Baseline":"1.21"},{"ID":"FBgn0014020","EGF_Baseline":"-3.02"},{"ID":"FBgn0040697","EGF_Baseline":"0.45"},{"ID":"FBgn0033519","EGF_Baseline":"-0.96"},{"ID":"FBgn0033674","EGF_Baseline":"-1.13"},{"ID":"FBgn0014380","EGF_Baseline":"-1.59"},{"ID":"FBgn0023520","EGF_Baseline":"-1.88"},{"ID":"FBgn0040255","EGF_Baseline":"0.8"},{"ID":"FBgn0029930","EGF_Baseline":"0.6"},{"ID":"FBgn0259188","EGF_Baseline":"-0.16"},{"ID":"FBgn0010774","EGF_Baseline":"5.1"},{"ID":"FBgn0024196","EGF_Baseline":"-1.32"},{"ID":"FBgn0025716","EGF_Baseline":"-1.65"},{"ID":"FBgn0051639","EGF_Baseline":"1.05"},{"ID":"FBgn0032015","EGF_Baseline":"-1.41"},{"ID":"FBgn0035847","EGF_Baseline":"0.26"},{"ID":"FBgn0038280","EGF_Baseline":"0.56"},{"ID":"FBgn0037743","EGF_Baseline":"-0.41"},{"ID":"FBgn0038581","EGF_Baseline":"-1.3"},{"ID":"FBgn0032808","EGF_Baseline":"-1.1"},{"ID":"FBgn0025825","EGF_Baseline":"2.1"},{"ID":"FBgn0066293","EGF_Baseline":"-0.72"},{"ID":"FBgn0001991","EGF_Baseline":"0.37"},{"ID":"FBgn0035534","EGF_Baseline":"-1.36"},{"ID":"FBgn0031977","EGF_Baseline":"-1.14"},{"ID":"FBgn0037535","EGF_Baseline":"1.2"},{"ID":"FBgn0034326","EGF_Baseline":"-0.69"},{"ID":"FBgn0259967","EGF_Baseline":"-0.59"},{"ID":"FBgn0036584","EGF_Baseline":"0.53"},{"ID":"FBgn0028675","EGF_Baseline":"-0.24"},{"ID":"FBgn0033341","EGF_Baseline":"1.11"},{"ID":"FBgn0036663","EGF_Baseline":"-1.24"},{"ID":"FBgn0031149","EGF_Baseline":"-0.25"},{"ID":"FBgn0062413","EGF_Baseline":"-1.39"},{"ID":"FBgn0026392","EGF_Baseline":"-1.21"},{"ID":"FBgn0034662","EGF_Baseline":"-1.64"},{"ID":"FBgn0011826","EGF_Baseline":"1.61"},{"ID":"FBgn0031197","EGF_Baseline":"-1.19"},{"ID":"FBgn0033033","EGF_Baseline":"0.17"},{"ID":"FBgn0052438","EGF_Baseline":"0.51"},{"ID":"FBgn0000150","EGF_Baseline":"-0.6"},{"ID":"FBgn0026174","EGF_Baseline":"0.35"},{"ID":"FBgn0041336","EGF_Baseline":"-1.62"},{"ID":"FBgn0039321","EGF_Baseline":"-1.45"},{"ID":"FBgn0030499","EGF_Baseline":"0.23"},{"ID":"FBgn0033166","EGF_Baseline":"-0.28"},{"ID":"FBgn0000497","EGF_Baseline":"-0.9"},{"ID":"FBgn0037764","EGF_Baseline":"1.21"},{"ID":"FBgn0052660","EGF_Baseline":"-1.45"},{"ID":"FBgn0036421","EGF_Baseline":"-0.57"},{"ID":"FBgn0032787","EGF_Baseline":"1.34"},{"ID":"FBgn0259985","EGF_Baseline":"-0.28"},{"ID":"FBgn0039302","EGF_Baseline":"1.49"},{"ID":"FBgn0029504","EGF_Baseline":"0.42"},{"ID":"FBgn0261561","EGF_Baseline":"-0.94"},{"ID":"FBgn0004575","EGF_Baseline":"-0.55"},{"ID":"FBgn0000382","EGF_Baseline":"3.77"},{"ID":"FBgn0035901","EGF_Baseline":"-0.44"},{"ID":"FBgn0004390","EGF_Baseline":"2.42"},{"ID":"FBgn0037442","EGF_Baseline":"-1.23"},{"ID":"FBgn0052203","EGF_Baseline":"-1.64"},{"ID":"FBgn0032266","EGF_Baseline":"-0.51"},{"ID":"FBgn0035309","EGF_Baseline":"-0.64"},{"ID":"FBgn0051992","EGF_Baseline":"4.6"},{"ID":"FBgn0034514","EGF_Baseline":"-0.47"},{"ID":"FBgn0050391","EGF_Baseline":"1.15"},{"ID":"FBgn0033387","EGF_Baseline":"-1.62"},{"ID":"FBgn0028373","EGF_Baseline":"-0.17"},{"ID":"FBgn0034263","EGF_Baseline":"0.12"},{"ID":"FBgn0010473","EGF_Baseline":"-1.79"},{"ID":"FBgn0031813","EGF_Baseline":"-1.43"},{"ID":"FBgn0037873","EGF_Baseline":"-1.25"},{"ID":"FBgn0052602","EGF_Baseline":"1.81"},{"ID":"FBgn0033141","EGF_Baseline":"-1.5"},{"ID":"FBgn0040780","EGF_Baseline":"-1.39"},{"ID":"FBgn0261085","EGF_Baseline":"0.77"},{"ID":"FBgn0040923","EGF_Baseline":"0.05"},{"ID":"FBgn0040347","EGF_Baseline":"-1.29"},{"ID":"FBgn0034937","EGF_Baseline":"-0.8"},{"ID":"FBgn0037093","EGF_Baseline":"1.34"},{"ID":"FBgn0041622","EGF_Baseline":"0.78"},{"ID":"FBgn0038439","EGF_Baseline":"0.98"},{"ID":"FBgn0037761","EGF_Baseline":"-0.56"},{"ID":"FBgn0034165","EGF_Baseline":"-1.98"},{"ID":"FBgn0029920","EGF_Baseline":"-0.38"},{"ID":"FBgn0020306","EGF_Baseline":"-2.74"},{"ID":"FBgn0040904","EGF_Baseline":"-1.56"},{"ID":"FBgn0000473","EGF_Baseline":"-0.53"},{"ID":"FBgn0033884","EGF_Baseline":"-0.56"},{"ID":"FBgn0039252","EGF_Baseline":"-0.88"},{"ID":"FBgn0034443","EGF_Baseline":"-0.96"},{"ID":"FBgn0030669","EGF_Baseline":"0.45"},{"ID":"FBgn0040905","EGF_Baseline":"-0.44"},{"ID":"FBgn0040871","EGF_Baseline":"-0.91"},{"ID":"FBgn0039795","EGF_Baseline":"-1.38"},{"ID":"FBgn0011769","EGF_Baseline":"-0.43"},{"ID":"FBgn0037051","EGF_Baseline":"0.26"},{"ID":"FBgn0036757","EGF_Baseline":"0.62"},{"ID":"FBgn0039273","EGF_Baseline":"-0.48"},{"ID":"FBgn0037844","EGF_Baseline":"0.22"},{"ID":"FBgn0030574","EGF_Baseline":"-1.26"},{"ID":"FBgn0038931","EGF_Baseline":"0.38"},{"ID":"FBgn0004901","EGF_Baseline":"-1.88"},{"ID":"FBgn0036750","EGF_Baseline":"-1.12"},{"ID":"FBgn0031442","EGF_Baseline":"0.63"},{"ID":"FBgn0035426","EGF_Baseline":"0.5"},{"ID":"FBgn0052553","EGF_Baseline":"-0.67"},{"ID":"FBgn0259164","EGF_Baseline":"-0.88"},{"ID":"FBgn0036417","EGF_Baseline":"-0.25"},{"ID":"FBgn0024510","EGF_Baseline":"0.26"},{"ID":"FBgn0038136","EGF_Baseline":"0.75"},{"ID":"FBgn0032251","EGF_Baseline":"-1.03"},{"ID":"FBgn0036882","EGF_Baseline":"0.47"},{"ID":"FBgn0036745","EGF_Baseline":"-0.6"},{"ID":"FBgn0037726","EGF_Baseline":"0.39"},{"ID":"FBgn0050417","EGF_Baseline":"-1.04"},{"ID":"FBgn0058191","EGF_Baseline":"-1.82"},{"ID":"FBgn0038194","EGF_Baseline":"-0.78"},{"ID":"FBgn0026160","EGF_Baseline":"-0.64"},{"ID":"FBgn0039347","EGF_Baseline":"-1"},{"ID":"FBgn0085404","EGF_Baseline":"-0.43"},{"ID":"FBgn0086348","EGF_Baseline":"-0.83"},{"ID":"FBgn0053003","EGF_Baseline":"-1.71"},{"ID":"FBgn0261630","EGF_Baseline":"0.33"},{"ID":"FBgn0051036","EGF_Baseline":"1.28"},{"ID":"FBgn0260960","EGF_Baseline":"-0.08"},{"ID":"FBgn0039083","EGF_Baseline":"0.7"},{"ID":"FBgn0035678","EGF_Baseline":"-0.43"},{"ID":"FBgn0035578","EGF_Baseline":"-0.54"},{"ID":"FBgn0027330","EGF_Baseline":"-0.53"},{"ID":"FBgn0039452","EGF_Baseline":"-0.29"},{"ID":"FBgn0032020","EGF_Baseline":"-1.38"},{"ID":"FBgn0052801","EGF_Baseline":"0.69"},{"ID":"FBgn0033853","EGF_Baseline":"-1.33"},{"ID":"FBgn0034996","EGF_Baseline":"-0.41"},{"ID":"FBgn0004181","EGF_Baseline":"1.5"},{"ID":"FBgn0013750","EGF_Baseline":"0.82"},{"ID":"FBgn0034096","EGF_Baseline":"-1.62"},{"ID":"FBgn0033429","EGF_Baseline":"-1.38"},{"ID":"FBgn0030055","EGF_Baseline":"-0.15"},{"ID":"FBgn0035241","EGF_Baseline":"-0.54"},{"ID":"FBgn0031874","EGF_Baseline":"1.18"},{"ID":"FBgn0000617","EGF_Baseline":"-1.51"},{"ID":"FBgn0030525","EGF_Baseline":"-1.39"},{"ID":"FBgn0033122","EGF_Baseline":"1.54"},{"ID":"FBgn0034965","EGF_Baseline":"-0.21"},{"ID":"FBgn0040793","EGF_Baseline":"-1.89"},{"ID":"FBgn0044047","EGF_Baseline":"1"},{"ID":"FBgn0053267","EGF_Baseline":"0.56"},{"ID":"FBgn0053257","EGF_Baseline":"-1.01"},{"ID":"FBgn0036519","EGF_Baseline":"-1.41"},{"ID":"FBgn0010482","EGF_Baseline":"1.98"},{"ID":"FBgn0051445","EGF_Baseline":"-0.97"},{"ID":"FBgn0000489","EGF_Baseline":"-1.45"},{"ID":"FBgn0051876","EGF_Baseline":"-1.63"},{"ID":"FBgn0033412","EGF_Baseline":"-0.86"},{"ID":"FBgn0029688","EGF_Baseline":"1.25"},{"ID":"FBgn0085435","EGF_Baseline":"-1.31"},{"ID":"FBgn0031857","EGF_Baseline":"0.71"},{"ID":"FBgn0050145","EGF_Baseline":"-0.39"},{"ID":"FBgn0034467","EGF_Baseline":"0.49"},{"ID":"FBgn0035347","EGF_Baseline":"-1.77"},{"ID":"FBgn0036327","EGF_Baseline":"0.7"},{"ID":"FBgn0019985","EGF_Baseline":"0.63"},{"ID":"FBgn0025574","EGF_Baseline":"1.5"},{"ID":"FBgn0052487","EGF_Baseline":"-0.91"},{"ID":"FBgn0021906","EGF_Baseline":"-1.23"},{"ID":"FBgn0031429","EGF_Baseline":"-0.96"},{"ID":"FBgn0032318","EGF_Baseline":"-0.55"},{"ID":"FBgn0039685","EGF_Baseline":"1.03"},{"ID":"FBgn0033572","EGF_Baseline":"0.59"},{"ID":"FBgn0030555","EGF_Baseline":"-1.15"},{"ID":"FBgn0032258","EGF_Baseline":"-0.55"},{"ID":"FBgn0023508","EGF_Baseline":"-1.24"},{"ID":"FBgn0052670","EGF_Baseline":"-1.07"},{"ID":"FBgn0034893","EGF_Baseline":"-1.27"},{"ID":"FBgn0038922","EGF_Baseline":"-1.99"},{"ID":"FBgn0039316","EGF_Baseline":"-1.55"},{"ID":"FBgn0052072","EGF_Baseline":"1.36"},{"ID":"FBgn0036112","EGF_Baseline":"0.52"},{"ID":"FBgn0030310","EGF_Baseline":"-0.27"},{"ID":"FBgn0010401","EGF_Baseline":"0.82"},{"ID":"FBgn0034603","EGF_Baseline":"2.48"},{"ID":"FBgn0031030","EGF_Baseline":"-1.59"},{"ID":"FBgn0038691","EGF_Baseline":"-0.92"},{"ID":"FBgn0052006","EGF_Baseline":"-1.82"},{"ID":"FBgn0015584","EGF_Baseline":"0.37"},{"ID":"FBgn0030680","EGF_Baseline":"-0.76"},{"ID":"FBgn0050464","EGF_Baseline":"1.05"},{"ID":"FBgn0034708","EGF_Baseline":"-0.4"},{"ID":"FBgn0029928","EGF_Baseline":"-0.36"},{"ID":"FBgn0015589","EGF_Baseline":"0.84"},{"ID":"FBgn0030008","EGF_Baseline":"-1.42"},{"ID":"FBgn0036196","EGF_Baseline":"-1.06"},{"ID":"FBgn0027106","EGF_Baseline":"0.54"},{"ID":"FBgn0000376","EGF_Baseline":"0.54"},{"ID":"FBgn0261637","EGF_Baseline":"-0.65"},{"ID":"FBgn0035005","EGF_Baseline":"0.44"},{"ID":"FBgn0031948","EGF_Baseline":"-1.12"},{"ID":"FBgn0004108","EGF_Baseline":"-0.55"},{"ID":"FBgn0032882","EGF_Baseline":"-2.09"},{"ID":"FBgn0031621","EGF_Baseline":"-0.64"},{"ID":"FBgn0261613","EGF_Baseline":"-1.5"},{"ID":"FBgn0036939","EGF_Baseline":"-0.52"},{"ID":"FBgn0041180","EGF_Baseline":"-0.79"},{"ID":"FBgn0261269","EGF_Baseline":"0.53"},{"ID":"FBgn0034013","EGF_Baseline":"1.16"},{"ID":"FBgn0038735","EGF_Baseline":"1.65"},{"ID":"FBgn0051682","EGF_Baseline":"0.27"},{"ID":"FBgn0034214","EGF_Baseline":"-2.23"},{"ID":"FBgn0001280","EGF_Baseline":"1.32"},{"ID":"FBgn0031332","EGF_Baseline":"-0.7"},{"ID":"FBgn0035675","EGF_Baseline":"-1.03"},{"ID":"FBgn0038309","EGF_Baseline":"0.38"},{"ID":"FBgn0015664","EGF_Baseline":"0.52"},{"ID":"FBgn0036932","EGF_Baseline":"-1.33"},{"ID":"FBgn0030014","EGF_Baseline":"0.82"},{"ID":"FBgn0261922","EGF_Baseline":"-1.15"},{"ID":"FBgn0261929","EGF_Baseline":"-1.47"},{"ID":"FBgn0030958","EGF_Baseline":"-1.06"},{"ID":"FBgn0033610","EGF_Baseline":"-0.96"},{"ID":"FBgn0039490","EGF_Baseline":"2.47"},{"ID":"FBgn0002855","EGF_Baseline":"0.4"},{"ID":"FBgn0040337","EGF_Baseline":"-1.28"},{"ID":"FBgn0052679","EGF_Baseline":"1.05"},{"ID":"FBgn0000395","EGF_Baseline":"1.29"},{"ID":"FBgn0033866","EGF_Baseline":"0.49"},{"ID":"FBgn0036366","EGF_Baseline":"-1.25"},{"ID":"FBgn0033774","EGF_Baseline":"-0.66"},{"ID":"FBgn0004620","EGF_Baseline":"-1.54"},{"ID":"FBgn0038533","EGF_Baseline":"0.21"},{"ID":"FBgn0001233","EGF_Baseline":"1.19"},{"ID":"FBgn0000412","EGF_Baseline":"-1.04"},{"ID":"FBgn0085496","EGF_Baseline":"0.95"},{"ID":"FBgn0053094","EGF_Baseline":"-1.08"},{"ID":"FBgn0028956","EGF_Baseline":"-0.3"},{"ID":"FBgn0015396","EGF_Baseline":"-1.54"},{"ID":"FBgn0033550","EGF_Baseline":"0.26"},{"ID":"FBgn0066101","EGF_Baseline":"-1.35"},{"ID":"FBgn0030017","EGF_Baseline":"-0.38"},{"ID":"FBgn0053463","EGF_Baseline":"1.23"},{"ID":"FBgn0031485","EGF_Baseline":"-1.9"},{"ID":"FBgn0043865","EGF_Baseline":"-0.77"},{"ID":"FBgn0034000","EGF_Baseline":"-2"},{"ID":"FBgn0039875","EGF_Baseline":"0.29"},{"ID":"FBgn0030828","EGF_Baseline":"1.2"},{"ID":"FBgn0052672","EGF_Baseline":"-0.88"},{"ID":"FBgn0038766","EGF_Baseline":"0.61"},{"ID":"FBgn0035924","EGF_Baseline":"0.54"},{"ID":"FBgn0033451","EGF_Baseline":"0.33"},{"ID":"FBgn0035630","EGF_Baseline":"-2.12"},{"ID":"FBgn0052625","EGF_Baseline":"-1.35"},{"ID":"FBgn0027575","EGF_Baseline":"0.64"},{"ID":"FBgn0050421","EGF_Baseline":"-0.67"},{"ID":"FBgn0034498","EGF_Baseline":"1.59"},{"ID":"FBgn0017558","EGF_Baseline":"-0.51"},{"ID":"FBgn0038784","EGF_Baseline":"-0.99"},{"ID":"FBgn0002869","EGF_Baseline":"1.5"},{"ID":"FBgn0035648","EGF_Baseline":"-1.33"},{"ID":"FBgn0026144","EGF_Baseline":"0.46"},{"ID":"FBgn0037410","EGF_Baseline":"0.82"},{"ID":"FBgn0035318","EGF_Baseline":"-2.14"},{"ID":"FBgn0051265","EGF_Baseline":"0.18"},{"ID":"FBgn0031606","EGF_Baseline":"-1.15"},{"ID":"FBgn0039558","EGF_Baseline":"1.41"},{"ID":"FBgn0046332","EGF_Baseline":"1.43"},{"ID":"FBgn0030332","EGF_Baseline":"0.62"},{"ID":"FBgn0037341","EGF_Baseline":"-0.22"},{"ID":"FBgn0040747","EGF_Baseline":"-0.35"},{"ID":"FBgn0260452","EGF_Baseline":"0.43"},{"ID":"FBgn0037565","EGF_Baseline":"-0.84"},{"ID":"FBgn0030003","EGF_Baseline":"-1.77"},{"ID":"FBgn0261260","EGF_Baseline":"1.23"},{"ID":"FBgn0036588","EGF_Baseline":"-1.71"},{"ID":"FBgn0040022","EGF_Baseline":"1.55"},{"ID":"FBgn0026418","EGF_Baseline":"-1.06"},{"ID":"FBgn0034688","EGF_Baseline":"0.4"},{"ID":"FBgn0002865","EGF_Baseline":"-0.86"},{"ID":"FBgn0032590","EGF_Baseline":"0.96"},{"ID":"FBgn0032455","EGF_Baseline":"0.71"},{"ID":"FBgn0029965","EGF_Baseline":"1.1"},{"ID":"FBgn0034958","EGF_Baseline":"-0.75"},{"ID":"FBgn0037336","EGF_Baseline":"-1.23"},{"ID":"FBgn0261112","EGF_Baseline":"-0.43"},{"ID":"FBgn0051327","EGF_Baseline":"0.67"},{"ID":"FBgn0015949","EGF_Baseline":"0.16"},{"ID":"FBgn0015569","EGF_Baseline":"-0.21"},{"ID":"FBgn0031604","EGF_Baseline":"-0.6"},{"ID":"FBgn0259110","EGF_Baseline":"1.13"},{"ID":"FBgn0032167","EGF_Baseline":"-0.82"},{"ID":"FBgn0015576","EGF_Baseline":"-0.94"},{"ID":"FBgn0002183","EGF_Baseline":"-0.47"},{"ID":"FBgn0052582","EGF_Baseline":"-1.74"},{"ID":"FBgn0036786","EGF_Baseline":"1.72"},{"ID":"FBgn0033304","EGF_Baseline":"-0.61"},{"ID":"FBgn0035702","EGF_Baseline":"1.19"},{"ID":"FBgn0034312","EGF_Baseline":"1.94"},{"ID":"FBgn0052649","EGF_Baseline":"-1.15"},{"ID":"FBgn0033504","EGF_Baseline":"-1.45"},{"ID":"FBgn0085422","EGF_Baseline":"0.3"},{"ID":"FBgn0000566","EGF_Baseline":"-1.37"},{"ID":"FBgn0038632","EGF_Baseline":"0.29"},{"ID":"FBgn0033698","EGF_Baseline":"-0.82"},{"ID":"FBgn0039805","EGF_Baseline":"0.13"},{"ID":"FBgn0040361","EGF_Baseline":"-0.55"},{"ID":"FBgn0028992","EGF_Baseline":"1.2"},{"ID":"FBgn0003514","EGF_Baseline":"-1.28"},{"ID":"FBgn0011604","EGF_Baseline":"1.13"},{"ID":"FBgn0039186","EGF_Baseline":"0.62"},{"ID":"FBgn0053144","EGF_Baseline":"0.91"},{"ID":"FBgn0035273","EGF_Baseline":"-0.48"},{"ID":"FBgn0052058","EGF_Baseline":"-0.17"},{"ID":"FBgn0031634","EGF_Baseline":"-0.75"},{"ID":"FBgn0030847","EGF_Baseline":"0.38"},{"ID":"FBgn0023512","EGF_Baseline":"-0.76"},{"ID":"FBgn0030873","EGF_Baseline":"-0.09"},{"ID":"FBgn0000455","EGF_Baseline":"0.45"},{"ID":"FBgn0036221","EGF_Baseline":"-1.08"},{"ID":"FBgn0038830","EGF_Baseline":"0.58"},{"ID":"FBgn0039520","EGF_Baseline":"-0.69"},{"ID":"FBgn0033100","EGF_Baseline":"0.99"},{"ID":"FBgn0032166","EGF_Baseline":"-1.65"},{"ID":"FBgn0029849","EGF_Baseline":"0.51"},{"ID":"FBgn0032889","EGF_Baseline":"-0.94"},{"ID":"FBgn0030872","EGF_Baseline":"-1.34"},{"ID":"FBgn0025674","EGF_Baseline":"0.49"},{"ID":"FBgn0032464","EGF_Baseline":"0.6"},{"ID":"FBgn0035101","EGF_Baseline":"1.19"},{"ID":"FBgn0033819","EGF_Baseline":"0.35"},{"ID":"FBgn0033216","EGF_Baseline":"-0.32"},{"ID":"FBgn0031517","EGF_Baseline":"-1.37"},{"ID":"FBgn0030319","EGF_Baseline":"-1.59"},{"ID":"FBgn0039127","EGF_Baseline":"-0.58"},{"ID":"FBgn0030395","EGF_Baseline":"0.21"},{"ID":"FBgn0036108","EGF_Baseline":"-0.91"},{"ID":"FBgn0034417","EGF_Baseline":"0.09"},{"ID":"FBgn0029696","EGF_Baseline":"-1.04"},{"ID":"FBgn0030349","EGF_Baseline":"-1.21"},{"ID":"FBgn0051373","EGF_Baseline":"0.78"},{"ID":"FBgn0038425","EGF_Baseline":"1.06"},{"ID":"FBgn0034007","EGF_Baseline":"1.39"},{"ID":"FBgn0015623","EGF_Baseline":"1.11"},{"ID":"FBgn0013771","EGF_Baseline":"-0.23"},{"ID":"FBgn0038804","EGF_Baseline":"0.6"},{"ID":"FBgn0029821","EGF_Baseline":"0.5"},{"ID":"FBgn0052267","EGF_Baseline":"0.74"},{"ID":"FBgn0030974","EGF_Baseline":"1.24"},{"ID":"FBgn0032725","EGF_Baseline":"0.92"},{"ID":"FBgn0038856","EGF_Baseline":"-1.25"},{"ID":"FBgn0000559","EGF_Baseline":"1.87"},{"ID":"FBgn0052441","EGF_Baseline":"-0.74"},{"ID":"FBgn0053309","EGF_Baseline":"1.01"},{"ID":"FBgn0031307","EGF_Baseline":"-0.44"},{"ID":"FBgn0038750","EGF_Baseline":"0.59"},{"ID":"FBgn0038646","EGF_Baseline":"0.28"},{"ID":"FBgn0036226","EGF_Baseline":"-0.74"},{"ID":"FBgn0034387","EGF_Baseline":"0.49"},{"ID":"FBgn0052264","EGF_Baseline":"-1.05"},{"ID":"FBgn0063496","EGF_Baseline":"0.34"},{"ID":"FBgn0033978","EGF_Baseline":"0.29"},{"ID":"FBgn0054040","EGF_Baseline":"-0.96"},{"ID":"FBgn0036449","EGF_Baseline":"0.07"},{"ID":"FBgn0032498","EGF_Baseline":"1.67"},{"ID":"FBgn0036668","EGF_Baseline":"4.27"},{"ID":"FBgn0038058","EGF_Baseline":"0.65"},{"ID":"FBgn0032338","EGF_Baseline":"-0.94"},{"ID":"FBgn0020907","EGF_Baseline":"1.13"},{"ID":"FBgn0015770","EGF_Baseline":"1.33"},{"ID":"FBgn0028342","EGF_Baseline":"0.2"},{"ID":"FBgn0030603","EGF_Baseline":"-1.01"},{"ID":"FBgn0011766","EGF_Baseline":"-0.83"},{"ID":"FBgn0037293","EGF_Baseline":"-1.61"},{"ID":"FBgn0028999","EGF_Baseline":"-1.58"},{"ID":"FBgn0035873","EGF_Baseline":"0.35"},{"ID":"FBgn0037017","EGF_Baseline":"-0.26"},{"ID":"FBgn0015794","EGF_Baseline":"1.16"},{"ID":"FBgn0053796","EGF_Baseline":"-1.44"},{"ID":"FBgn0025781","EGF_Baseline":"-0.45"},{"ID":"FBgn0038877","EGF_Baseline":"0.45"},{"ID":"FBgn0029753","EGF_Baseline":"-0.92"},{"ID":"FBgn0031466","EGF_Baseline":"0.43"},{"ID":"FBgn0037935","EGF_Baseline":"0.43"},{"ID":"FBgn0027563","EGF_Baseline":"-0.97"},{"ID":"FBgn0033810","EGF_Baseline":"-0.53"},{"ID":"FBgn0039529","EGF_Baseline":"-1.73"},{"ID":"FBgn0036469","EGF_Baseline":"5.1"},{"ID":"FBgn0033741","EGF_Baseline":"0.36"},{"ID":"FBgn0086680","EGF_Baseline":"1.02"},{"ID":"FBgn0261386","EGF_Baseline":"-0.61"},{"ID":"FBgn0032733","EGF_Baseline":"-0.58"},{"ID":"FBgn0052406","EGF_Baseline":"-1.33"},{"ID":"FBgn0032377","EGF_Baseline":"1.38"},{"ID":"FBgn0033408","EGF_Baseline":"-0.21"},{"ID":"FBgn0036607","EGF_Baseline":"-0.33"},{"ID":"FBgn0000216","EGF_Baseline":"-1.02"},{"ID":"FBgn0010399","EGF_Baseline":"-0.19"},{"ID":"FBgn0086712","EGF_Baseline":"-1.29"},{"ID":"FBgn0034325","EGF_Baseline":"-0.49"},{"ID":"FBgn0038588","EGF_Baseline":"0.47"},{"ID":"FBgn0036463","EGF_Baseline":"-0.69"},{"ID":"FBgn0036442","EGF_Baseline":"-0.37"},{"ID":"FBgn0034278","EGF_Baseline":"-0.83"},{"ID":"FBgn0085254","EGF_Baseline":"-0.34"},{"ID":"FBgn0040388","EGF_Baseline":"-1.38"},{"ID":"FBgn0030615","EGF_Baseline":"-0.96"},{"ID":"FBgn0033672","EGF_Baseline":"0.88"},{"ID":"FBgn0038202","EGF_Baseline":"-0.53"},{"ID":"FBgn0033088","EGF_Baseline":"0.66"},{"ID":"FBgn0035283","EGF_Baseline":"2.34"},{"ID":"FBgn0039879","EGF_Baseline":"-1.2"},{"ID":"FBgn0031011","EGF_Baseline":"0.67"},{"ID":"FBgn0034245","EGF_Baseline":"0.25"},{"ID":"FBgn0085385","EGF_Baseline":"0.47"},{"ID":"FBgn0011740","EGF_Baseline":"-0.89"},{"ID":"FBgn0036272","EGF_Baseline":"-0.76"},{"ID":"FBgn0051851","EGF_Baseline":"-1.3"},{"ID":"FBgn0085317","EGF_Baseline":"-0.74"},{"ID":"FBgn0038261","EGF_Baseline":"0.06"},{"ID":"FBgn0020294","EGF_Baseline":"0.59"},{"ID":"FBgn0033691","EGF_Baseline":"-0.83"},{"ID":"FBgn0050074","EGF_Baseline":"0.6"},{"ID":"FBgn0003145","EGF_Baseline":"0.26"},{"ID":"FBgn0030543","EGF_Baseline":"-0.46"},{"ID":"FBgn0035178","EGF_Baseline":"-1.35"},{"ID":"FBgn0038390","EGF_Baseline":"-0.35"},{"ID":"FBgn0032878","EGF_Baseline":"0.53"},{"ID":"FBgn0032017","EGF_Baseline":"-0.16"},{"ID":"FBgn0000008","EGF_Baseline":"-0.6"},{"ID":"FBgn0035880","EGF_Baseline":"0.43"},{"ID":"FBgn0037688","EGF_Baseline":"-0.86"},{"ID":"FBgn0039710","EGF_Baseline":"-1.81"},{"ID":"FBgn0031016","EGF_Baseline":"1.53"},{"ID":"FBgn0046214","EGF_Baseline":"0.88"},{"ID":"FBgn0042186","EGF_Baseline":"-0.76"},{"ID":"FBgn0013435","EGF_Baseline":"-0.85"},{"ID":"FBgn0052708","EGF_Baseline":"-1.4"},{"ID":"FBgn0010342","EGF_Baseline":"-1"},{"ID":"FBgn0015033","EGF_Baseline":"1.79"},{"ID":"FBgn0037374","EGF_Baseline":"-1.04"},{"ID":"FBgn0036210","EGF_Baseline":"-0.47"},{"ID":"FBgn0028331","EGF_Baseline":"0.53"},{"ID":"FBgn0261931","EGF_Baseline":"-1.18"},{"ID":"FBgn0040342","EGF_Baseline":"-1.46"},{"ID":"FBgn0002036","EGF_Baseline":"0.87"},{"ID":"FBgn0020249","EGF_Baseline":"-1.02"},{"ID":"FBgn0030813","EGF_Baseline":"-1.61"},{"ID":"FBgn0031261","EGF_Baseline":"-0.19"},{"ID":"FBgn0039293","EGF_Baseline":"1.47"},{"ID":"FBgn0038414","EGF_Baseline":"-1.54"},{"ID":"FBgn0038454","EGF_Baseline":"-1.6"},{"ID":"FBgn0036574","EGF_Baseline":"0.19"},{"ID":"FBgn0039714","EGF_Baseline":"-0.54"},{"ID":"FBgn0024244","EGF_Baseline":"-0.68"},{"ID":"FBgn0030662","EGF_Baseline":"-0.92"},{"ID":"FBgn0036199","EGF_Baseline":"0.42"},{"ID":"FBgn0086254","EGF_Baseline":"-0.74"},{"ID":"FBgn0051343","EGF_Baseline":"1.43"},{"ID":"FBgn0041629","EGF_Baseline":"0.72"},{"ID":"FBgn0036038","EGF_Baseline":"-1.46"},{"ID":"FBgn0031670","EGF_Baseline":"-1.18"},{"ID":"FBgn0024289","EGF_Baseline":"1"},{"ID":"FBgn0032846","EGF_Baseline":"0.56"},{"ID":"FBgn0033598","EGF_Baseline":"-0.63"},{"ID":"FBgn0035287","EGF_Baseline":"1.22"},{"ID":"FBgn0014857","EGF_Baseline":"-2.03"},{"ID":"FBgn0037036","EGF_Baseline":"0.43"},{"ID":"FBgn0011708","EGF_Baseline":"1.27"},{"ID":"FBgn0039634","EGF_Baseline":"-1.77"},{"ID":"FBgn0040565","EGF_Baseline":"0.53"},{"ID":"FBgn0033357","EGF_Baseline":"-1.46"},{"ID":"FBgn0037621","EGF_Baseline":"-1.02"},{"ID":"FBgn0038775","EGF_Baseline":"-1.5"},{"ID":"FBgn0030620","EGF_Baseline":"1.34"},{"ID":"FBgn0041224","EGF_Baseline":"0.91"},{"ID":"FBgn0260743","EGF_Baseline":"0.55"},{"ID":"FBgn0031695","EGF_Baseline":"-1.14"},{"ID":"FBgn0040394","EGF_Baseline":"2.19"},{"ID":"FBgn0038049","EGF_Baseline":"-6.26"},{"ID":"FBgn0034974","EGF_Baseline":"-1.65"},{"ID":"FBgn0030933","EGF_Baseline":"1.63"},{"ID":"FBgn0039304","EGF_Baseline":"-1.61"},{"ID":"FBgn0010246","EGF_Baseline":"0.69"},{"ID":"FBgn0038273","EGF_Baseline":"-1.24"},{"ID":"FBgn0030151","EGF_Baseline":"-0.5"},{"ID":"FBgn0033820","EGF_Baseline":"-0.37"},{"ID":"FBgn0036510","EGF_Baseline":"-1.07"},{"ID":"FBgn0039464","EGF_Baseline":"-0.75"},{"ID":"FBgn0039350","EGF_Baseline":"0.8"},{"ID":"FBgn0024222","EGF_Baseline":"-1.52"},{"ID":"FBgn0033195","EGF_Baseline":"2.46"},{"ID":"FBgn0030041","EGF_Baseline":"1.35"},{"ID":"FBgn0028647","EGF_Baseline":"0.94"},{"ID":"FBgn0033712","EGF_Baseline":"-0.47"},{"ID":"FBgn0004514","EGF_Baseline":"1.3"},{"ID":"FBgn0261562","EGF_Baseline":"0.54"},{"ID":"FBgn0032769","EGF_Baseline":"-0.65"},{"ID":"FBgn0033380","EGF_Baseline":"-0.41"},{"ID":"FBgn0035401","EGF_Baseline":"-1.39"},{"ID":"FBgn0035264","EGF_Baseline":"0.8"},{"ID":"FBgn0085345","EGF_Baseline":"0.11"},{"ID":"FBgn0261816","EGF_Baseline":"-0.8"},{"ID":"FBgn0038706","EGF_Baseline":"-1.4"},{"ID":"FBgn0000233","EGF_Baseline":"-0.93"},{"ID":"FBgn0038718","EGF_Baseline":"1.78"},{"ID":"FBgn0035092","EGF_Baseline":"-0.57"},{"ID":"FBgn0260817","EGF_Baseline":"-0.88"},{"ID":"FBgn0036698","EGF_Baseline":"-0.71"},{"ID":"FBgn0038290","EGF_Baseline":"0.19"},{"ID":"FBgn0034082","EGF_Baseline":"0.3"},{"ID":"FBgn0050497","EGF_Baseline":"1.17"},{"ID":"FBgn0035944","EGF_Baseline":"-0.29"},{"ID":"FBgn0039937","EGF_Baseline":"-1.21"},{"ID":"FBgn0016762","EGF_Baseline":"-1.73"},{"ID":"FBgn0040285","EGF_Baseline":"-1.21"},{"ID":"FBgn0035488","EGF_Baseline":"2.07"},{"ID":"FBgn0031540","EGF_Baseline":"0.73"},{"ID":"FBgn0034590","EGF_Baseline":"1.05"},{"ID":"FBgn0037388","EGF_Baseline":"1.24"},{"ID":"FBgn0035585","EGF_Baseline":"-0.77"},{"ID":"FBgn0037071","EGF_Baseline":"0.37"},{"ID":"FBgn0039585","EGF_Baseline":"-0.58"},{"ID":"FBgn0051955","EGF_Baseline":"-0.75"},{"ID":"FBgn0037849","EGF_Baseline":"-0.97"},{"ID":"FBgn0015296","EGF_Baseline":"-1.17"},{"ID":"FBgn0030720","EGF_Baseline":"1.05"},{"ID":"FBgn0033389","EGF_Baseline":"0.6"},{"ID":"FBgn0259241","EGF_Baseline":"0.76"},{"ID":"FBgn0045502","EGF_Baseline":"1.32"},{"ID":"FBgn0038142","EGF_Baseline":"-1.75"},{"ID":"FBgn0040238","EGF_Baseline":"-1.24"},{"ID":"FBgn0051915","EGF_Baseline":"0.55"},{"ID":"FBgn0034784","EGF_Baseline":"-0.66"},{"ID":"FBgn0004118","EGF_Baseline":"-0.08"},{"ID":"FBgn0051347","EGF_Baseline":"-1.72"},{"ID":"FBgn0032816","EGF_Baseline":"-1.91"},{"ID":"FBgn0029879","EGF_Baseline":"-0.64"},{"ID":"FBgn0030930","EGF_Baseline":"1.63"},{"ID":"FBgn0083971","EGF_Baseline":"0.9"},{"ID":"FBgn0037837","EGF_Baseline":"-0.81"},{"ID":"FBgn0034300","EGF_Baseline":"-0.38"},{"ID":"FBgn0033669","EGF_Baseline":"-1.38"},{"ID":"FBgn0037544","EGF_Baseline":"-1.1"},{"ID":"FBgn0036619","EGF_Baseline":"-0.96"},{"ID":"FBgn0045064","EGF_Baseline":"-1.36"},{"ID":"FBgn0034429","EGF_Baseline":"-1.27"},{"ID":"FBgn0031258","EGF_Baseline":"0.38"},{"ID":"FBgn0259166","EGF_Baseline":"-1.55"},{"ID":"FBgn0045498","EGF_Baseline":"1.1"},{"ID":"FBgn0083950","EGF_Baseline":"1.01"},{"ID":"FBgn0038665","EGF_Baseline":"-1.51"},{"ID":"FBgn0045479","EGF_Baseline":"-0.86"},{"ID":"FBgn0032065","EGF_Baseline":"-1.74"},{"ID":"FBgn0000239","EGF_Baseline":"-0.99"},{"ID":"FBgn0036770","EGF_Baseline":"-1.08"},{"ID":"FBgn0039378","EGF_Baseline":"-0.98"},{"ID":"FBgn0033905","EGF_Baseline":"0.4"},{"ID":"FBgn0003366","EGF_Baseline":"1.5"},{"ID":"FBgn0033512","EGF_Baseline":"0.6"},{"ID":"FBgn0004657","EGF_Baseline":"-0.47"},{"ID":"FBgn0036945","EGF_Baseline":"-0.59"},{"ID":"FBgn0031784","EGF_Baseline":"-1.27"},{"ID":"FBgn0050285","EGF_Baseline":"1.27"},{"ID":"FBgn0050273","EGF_Baseline":"-0.08"},{"ID":"FBgn0035031","EGF_Baseline":"1.35"},{"ID":"FBgn0037747","EGF_Baseline":"-1.12"},{"ID":"FBgn0019929","EGF_Baseline":"1.13"},{"ID":"FBgn0031906","EGF_Baseline":"-0.45"},{"ID":"FBgn0042104","EGF_Baseline":"-1.24"},{"ID":"FBgn0029740","EGF_Baseline":"0.46"},{"ID":"FBgn0001404","EGF_Baseline":"-1.36"},{"ID":"FBgn0035639","EGF_Baseline":"-1.24"},{"ID":"FBgn0035168","EGF_Baseline":"0.2"},{"ID":"FBgn0086365","EGF_Baseline":"-0.83"},{"ID":"FBgn0037794","EGF_Baseline":"0.98"},{"ID":"FBgn0039705","EGF_Baseline":"1.05"},{"ID":"FBgn0034199","EGF_Baseline":"0.27"},{"ID":"FBgn0037676","EGF_Baseline":"-1.54"},{"ID":"FBgn0052549","EGF_Baseline":"-0.97"},{"ID":"FBgn0052066","EGF_Baseline":"-0.54"},{"ID":"FBgn0050375","EGF_Baseline":"-1.81"},{"ID":"FBgn0037842","EGF_Baseline":"0.21"},{"ID":"FBgn0035238","EGF_Baseline":"-1.37"},{"ID":"FBgn0031161","EGF_Baseline":"-0.63"},{"ID":"FBgn0001217","EGF_Baseline":"0.35"},{"ID":"FBgn0029587","EGF_Baseline":"0.32"},{"ID":"FBgn0032429","EGF_Baseline":"0.53"},{"ID":"FBgn0034001","EGF_Baseline":"1.22"},{"ID":"FBgn0039560","EGF_Baseline":"1.45"},{"ID":"FBgn0052521","EGF_Baseline":"0.5"},{"ID":"FBgn0032613","EGF_Baseline":"-1.09"},{"ID":"FBgn0030469","EGF_Baseline":"-0.33"},{"ID":"FBgn0020372","EGF_Baseline":"1.38"},{"ID":"FBgn0033921","EGF_Baseline":"-0.5"},{"ID":"FBgn0040759","EGF_Baseline":"-1.31"},{"ID":"FBgn0000427","EGF_Baseline":"-1.02"},{"ID":"FBgn0032684","EGF_Baseline":"-0.37"},{"ID":"FBgn0051465","EGF_Baseline":"0.69"},{"ID":"FBgn0024177","EGF_Baseline":"1.15"},{"ID":"FBgn0030927","EGF_Baseline":"-0.55"},{"ID":"FBgn0035120","EGF_Baseline":"0.38"},{"ID":"FBgn0261437","EGF_Baseline":"-1.03"},{"ID":"FBgn0031432","EGF_Baseline":"-0.16"},{"ID":"FBgn0039942","EGF_Baseline":"-0.52"},{"ID":"FBgn0030109","EGF_Baseline":"0.22"},{"ID":"FBgn0037941","EGF_Baseline":"0.67"},{"ID":"FBgn0261403","EGF_Baseline":"-0.81"},{"ID":"FBgn0039034","EGF_Baseline":"0.27"},{"ID":"FBgn0037988","EGF_Baseline":"-0.78"},{"ID":"FBgn0029118","EGF_Baseline":"1.1"},{"ID":"FBgn0025838","EGF_Baseline":"-1.53"},{"ID":"FBgn0028473","EGF_Baseline":"-0.54"},{"ID":"FBgn0035043","EGF_Baseline":"-0.73"},{"ID":"FBgn0036740","EGF_Baseline":"-0.49"},{"ID":"FBgn0026404","EGF_Baseline":"-0.61"},{"ID":"FBgn0051897","EGF_Baseline":"-1.3"},{"ID":"FBgn0004652","EGF_Baseline":"-1.01"},{"ID":"FBgn0032321","EGF_Baseline":"0.35"},{"ID":"FBgn0039472","EGF_Baseline":"-1.1"},{"ID":"FBgn0023023","EGF_Baseline":"-0.85"},{"ID":"FBgn0034729","EGF_Baseline":"-1.64"},{"ID":"FBgn0034884","EGF_Baseline":"-0.78"},{"ID":"FBgn0033883","EGF_Baseline":"1.06"},{"ID":"FBgn0051813","EGF_Baseline":"1.66"},{"ID":"FBgn0026207","EGF_Baseline":"1.96"},{"ID":"FBgn0085300","EGF_Baseline":"-0.58"},{"ID":"FBgn0035049","EGF_Baseline":"-0.93"},{"ID":"FBgn0030805","EGF_Baseline":"-0.59"},{"ID":"FBgn0038816","EGF_Baseline":"-1.34"},{"ID":"FBgn0038318","EGF_Baseline":"0.47"},{"ID":"FBgn0261862","EGF_Baseline":"1.14"},{"ID":"FBgn0036219","EGF_Baseline":"-0.97"},{"ID":"FBgn0034739","EGF_Baseline":"-0.31"},{"ID":"FBgn0033782","EGF_Baseline":"0.88"},{"ID":"FBgn0036695","EGF_Baseline":"-0.57"},{"ID":"FBgn0030433","EGF_Baseline":"-1.27"},{"ID":"FBgn0030362","EGF_Baseline":"0.98"},{"ID":"FBgn0039565","EGF_Baseline":"0.75"},{"ID":"FBgn0039552","EGF_Baseline":"-0.48"},{"ID":"FBgn0020439","EGF_Baseline":"1.53"},{"ID":"FBgn0040696","EGF_Baseline":"-0.11"},{"ID":"FBgn0035496","EGF_Baseline":"1.09"},{"ID":"FBgn0028582","EGF_Baseline":"2.81"},{"ID":"FBgn0037807","EGF_Baseline":"1.12"},{"ID":"FBgn0032283","EGF_Baseline":"-0.88"},{"ID":"FBgn0030074","EGF_Baseline":"0.97"},{"ID":"FBgn0010423","EGF_Baseline":"-1.41"},{"ID":"FBgn0035042","EGF_Baseline":"0.93"},{"ID":"FBgn0028945","EGF_Baseline":"-0.97"},{"ID":"FBgn0016080","EGF_Baseline":"-0.62"},{"ID":"FBgn0038011","EGF_Baseline":"-0.39"},{"ID":"FBgn0053296","EGF_Baseline":"-0.54"},{"ID":"FBgn0026761","EGF_Baseline":"0.04"},{"ID":"FBgn0052418","EGF_Baseline":"1.23"},{"ID":"FBgn0037488","EGF_Baseline":"0.72"},{"ID":"FBgn0052054","EGF_Baseline":"-1.35"},{"ID":"FBgn0026573","EGF_Baseline":"-1.64"},{"ID":"FBgn0041789","EGF_Baseline":"1.3"},{"ID":"FBgn0260866","EGF_Baseline":"-1.17"},{"ID":"FBgn0034365","EGF_Baseline":"0.17"},{"ID":"FBgn0037213","EGF_Baseline":"0.84"},{"ID":"FBgn0085360","EGF_Baseline":"0.3"},{"ID":"FBgn0046776","EGF_Baseline":"-0.7"},{"ID":"FBgn0027794","EGF_Baseline":"-0.3"},{"ID":"FBgn0033235","EGF_Baseline":"-1.45"},{"ID":"FBgn0037364","EGF_Baseline":"-0.66"},{"ID":"FBgn0051016","EGF_Baseline":"-0.26"},{"ID":"FBgn0032138","EGF_Baseline":"1.51"},{"ID":"FBgn0051365","EGF_Baseline":"1.69"},{"ID":"FBgn0036807","EGF_Baseline":"-0.76"},{"ID":"FBgn0037115","EGF_Baseline":"0.22"},{"ID":"FBgn0053282","EGF_Baseline":"-0.78"},{"ID":"FBgn0039731","EGF_Baseline":"-0.86"},{"ID":"FBgn0037956","EGF_Baseline":"1.14"},{"ID":"FBgn0030918","EGF_Baseline":"0.55"},{"ID":"FBgn0030796","EGF_Baseline":"-1.18"},{"ID":"FBgn0012042","EGF_Baseline":"0.18"},{"ID":"FBgn0053322","EGF_Baseline":"0.56"},{"ID":"FBgn0005630","EGF_Baseline":"-2.42"},{"ID":"FBgn0035086","EGF_Baseline":"-0.28"},{"ID":"FBgn0011586","EGF_Baseline":"0.81"},{"ID":"FBgn0052720","EGF_Baseline":"-0.41"},{"ID":"FBgn0033524","EGF_Baseline":"-0.71"},{"ID":"FBgn0029093","EGF_Baseline":"-1.21"},{"ID":"FBgn0085456","EGF_Baseline":"0.4"},{"ID":"FBgn0028852","EGF_Baseline":"0.64"},{"ID":"FBgn0054002","EGF_Baseline":"-0.8"},{"ID":"FBgn0035023","EGF_Baseline":"0.54"},{"ID":"FBgn0050053","EGF_Baseline":"1.26"},{"ID":"FBgn0035766","EGF_Baseline":"1.42"},{"ID":"FBgn0037638","EGF_Baseline":"0.98"},{"ID":"FBgn0053648","EGF_Baseline":"-1.41"},{"ID":"FBgn0002413","EGF_Baseline":"0.55"},{"ID":"FBgn0033588","EGF_Baseline":"-1.64"},{"ID":"FBgn0261698","EGF_Baseline":"1.51"},{"ID":"FBgn0032409","EGF_Baseline":"-0.94"},{"ID":"FBgn0051882","EGF_Baseline":"-0.88"},{"ID":"FBgn0035382","EGF_Baseline":"0.27"},{"ID":"FBgn0259139","EGF_Baseline":"-2.12"},{"ID":"FBgn0028847","EGF_Baseline":"-1.71"},{"ID":"FBgn0030863","EGF_Baseline":"-1.04"},{"ID":"FBgn0037739","EGF_Baseline":"0.53"},{"ID":"FBgn0003975","EGF_Baseline":"-1.67"},{"ID":"FBgn0034756","EGF_Baseline":"-0.74"},{"ID":"FBgn0051805","EGF_Baseline":"-0.84"},{"ID":"FBgn0036194","EGF_Baseline":"1.44"},{"ID":"FBgn0033447","EGF_Baseline":"0.45"},{"ID":"FBgn0037944","EGF_Baseline":"-0.65"},{"ID":"FBgn0039254","EGF_Baseline":"-1.51"},{"ID":"FBgn0023177","EGF_Baseline":"2.24"},{"ID":"FBgn0038603","EGF_Baseline":"-1.29"},{"ID":"FBgn0037832","EGF_Baseline":"0.73"},{"ID":"FBgn0052022","EGF_Baseline":"-0.51"},{"ID":"FBgn0011300","EGF_Baseline":"-0.68"},{"ID":"FBgn0013813","EGF_Baseline":"-0.57"},{"ID":"FBgn0030729","EGF_Baseline":"-0.91"},{"ID":"FBgn0024315","EGF_Baseline":"-1.65"},{"ID":"FBgn0038952","EGF_Baseline":"-0.79"},{"ID":"FBgn0033653","EGF_Baseline":"1.8"},{"ID":"FBgn0035295","EGF_Baseline":"-1.07"},{"ID":"FBgn0038307","EGF_Baseline":"-0.85"},{"ID":"FBgn0085354","EGF_Baseline":"-1.06"},{"ID":"FBgn0036150","EGF_Baseline":"0.67"},{"ID":"FBgn0030840","EGF_Baseline":"-0.78"},{"ID":"FBgn0032796","EGF_Baseline":"0.83"},{"ID":"FBgn0037044","EGF_Baseline":"-0.25"},{"ID":"FBgn0036028","EGF_Baseline":"-0.79"},{"ID":"FBgn0029888","EGF_Baseline":"-1.26"},{"ID":"FBgn0029799","EGF_Baseline":"-0.95"},{"ID":"FBgn0259707","EGF_Baseline":"1.31"},{"ID":"FBgn0026402","EGF_Baseline":"-0.94"},{"ID":"FBgn0034826","EGF_Baseline":"0.32"},{"ID":"FBgn0034491","EGF_Baseline":"-0.28"},{"ID":"FBgn0032669","EGF_Baseline":"-0.22"},{"ID":"FBgn0086711","EGF_Baseline":"-1.77"},{"ID":"FBgn0004837","EGF_Baseline":"-0.55"},{"ID":"FBgn0038042","EGF_Baseline":"-0.51"},{"ID":"FBgn0005777","EGF_Baseline":"0.54"},{"ID":"FBgn0036481","EGF_Baseline":"-0.43"},{"ID":"FBgn0033052","EGF_Baseline":"-0.62"},{"ID":"FBgn0040734","EGF_Baseline":"1.65"},{"ID":"FBgn0037064","EGF_Baseline":"-0.62"},{"ID":"FBgn0030270","EGF_Baseline":"0.71"},{"ID":"FBgn0028968","EGF_Baseline":"0.29"},{"ID":"FBgn0025645","EGF_Baseline":"0.84"},{"ID":"FBgn0038662","EGF_Baseline":"-1.26"},{"ID":"FBgn0031047","EGF_Baseline":"1.42"},{"ID":"FBgn0038897","EGF_Baseline":"-1.23"},{"ID":"FBgn0022943","EGF_Baseline":"-1.37"},{"ID":"FBgn0036257","EGF_Baseline":"0.66"},{"ID":"FBgn0032210","EGF_Baseline":"0.48"},{"ID":"FBgn0002922","EGF_Baseline":"-0.68"},{"ID":"FBgn0032647","EGF_Baseline":"-1.12"},{"ID":"FBgn0040298","EGF_Baseline":"-1.37"},{"ID":"FBgn0037555","EGF_Baseline":"-1.69"},{"ID":"FBgn0036319","EGF_Baseline":"0.32"},{"ID":"FBgn0035942","EGF_Baseline":"-1.12"},{"ID":"FBgn0034579","EGF_Baseline":"-1.38"},{"ID":"FBgn0040001","EGF_Baseline":"-0.28"},{"ID":"FBgn0039817","EGF_Baseline":"1.2"},{"ID":"FBgn0037106","EGF_Baseline":"-0.81"},{"ID":"FBgn0004368","EGF_Baseline":"-1.45"},{"ID":"FBgn0031832","EGF_Baseline":"-1.22"},{"ID":"FBgn0003210","EGF_Baseline":"-1.53"},{"ID":"FBgn0032651","EGF_Baseline":"-0.4"},{"ID":"FBgn0053158","EGF_Baseline":"-1.18"},{"ID":"FBgn0033178","EGF_Baseline":"-0.98"},{"ID":"FBgn0017572","EGF_Baseline":"-1.84"},{"ID":"FBgn0027498","EGF_Baseline":"-0.8"},{"ID":"FBgn0027492","EGF_Baseline":"-1.14"},{"ID":"FBgn0003317","EGF_Baseline":"-0.78"},{"ID":"FBgn0031735","EGF_Baseline":"-0.9"},{"ID":"FBgn0035953","EGF_Baseline":"0.29"},{"ID":"FBgn0043458","EGF_Baseline":"-1.57"},{"ID":"FBgn0051025","EGF_Baseline":"1.07"},{"ID":"FBgn0024232","EGF_Baseline":"1.16"},{"ID":"FBgn0035099","EGF_Baseline":"-1.39"},{"ID":"FBgn0034371","EGF_Baseline":"0.72"},{"ID":"FBgn0035708","EGF_Baseline":"-1.51"},{"ID":"FBgn0011204","EGF_Baseline":"-1.15"},{"ID":"FBgn0015019","EGF_Baseline":"-1.62"},{"ID":"FBgn0000482","EGF_Baseline":"-1.21"},{"ID":"FBgn0033750","EGF_Baseline":"0.74"},{"ID":"FBgn0036007","EGF_Baseline":"-0.28"},{"ID":"FBgn0031407","EGF_Baseline":"-0.73"},{"ID":"FBgn0035246","EGF_Baseline":"0.31"},{"ID":"FBgn0033350","EGF_Baseline":"1.45"},{"ID":"FBgn0033093","EGF_Baseline":"0.98"},{"ID":"FBgn0032486","EGF_Baseline":"0.19"},{"ID":"FBgn0050035","EGF_Baseline":"2.03"},{"ID":"FBgn0038006","EGF_Baseline":"-0.2"},{"ID":"FBgn0035113","EGF_Baseline":"-1.58"},{"ID":"FBgn0043792","EGF_Baseline":"0.94"},{"ID":"FBgn0003950","EGF_Baseline":"-1.09"},{"ID":"FBgn0037026","EGF_Baseline":"1.5"},{"ID":"FBgn0034447","EGF_Baseline":"-0.89"},{"ID":"FBgn0086613","EGF_Baseline":"-1.9"},{"ID":"FBgn0036099","EGF_Baseline":"-0.72"},{"ID":"FBgn0052451","EGF_Baseline":"-1.72"},{"ID":"FBgn0011725","EGF_Baseline":"0.87"},{"ID":"FBgn0031814","EGF_Baseline":"-1.39"},{"ID":"FBgn0031747","EGF_Baseline":"0.89"},{"ID":"FBgn0010355","EGF_Baseline":"-1"},{"ID":"FBgn0036341","EGF_Baseline":"0.87"},{"ID":"FBgn0033107","EGF_Baseline":"-1.69"},{"ID":"FBgn0050295","EGF_Baseline":"1.55"},{"ID":"FBgn0053775","EGF_Baseline":"0.45"},{"ID":"FBgn0260481","EGF_Baseline":"-0.27"},{"ID":"FBgn0030642","EGF_Baseline":"0.57"},{"ID":"FBgn0261647","EGF_Baseline":"0.64"},{"ID":"FBgn0050077","EGF_Baseline":"-0.69"},{"ID":"FBgn0030883","EGF_Baseline":"-1.31"},{"ID":"FBgn0038109","EGF_Baseline":"0.13"},{"ID":"FBgn0052448","EGF_Baseline":"1.2"},{"ID":"FBgn0053180","EGF_Baseline":"0.24"},{"ID":"FBgn0034229","EGF_Baseline":"1.33"},{"ID":"FBgn0042198","EGF_Baseline":"-1.05"},{"ID":"FBgn0000259","EGF_Baseline":"1.06"},{"ID":"FBgn0022349","EGF_Baseline":"-0.78"},{"ID":"FBgn0051126","EGF_Baseline":"-0.82"},{"ID":"FBgn0036612","EGF_Baseline":"-0.56"},{"ID":"FBgn0028746","EGF_Baseline":"1.5"},{"ID":"FBgn0038584","EGF_Baseline":"0.73"},{"ID":"FBgn0039881","EGF_Baseline":"-0.86"},{"ID":"FBgn0019960","EGF_Baseline":"-0.55"},{"ID":"FBgn0020621","EGF_Baseline":"-0.6"},{"ID":"FBgn0033321","EGF_Baseline":"0.14"},{"ID":"FBgn0030853","EGF_Baseline":"-1.18"},{"ID":"FBgn0031770","EGF_Baseline":"-1.75"},{"ID":"FBgn0030753","EGF_Baseline":"-0.38"},{"ID":"FBgn0032833","EGF_Baseline":"-1.21"},{"ID":"FBgn0037419","EGF_Baseline":"-1.81"},{"ID":"FBgn0052407","EGF_Baseline":"-1.21"},{"ID":"FBgn0032431","EGF_Baseline":"1.66"},{"ID":"FBgn0011648","EGF_Baseline":"-0.39"},{"ID":"FBgn0085488","EGF_Baseline":"-1.3"},{"ID":"FBgn0017561","EGF_Baseline":"-0.59"},{"ID":"FBgn0033706","EGF_Baseline":"-1.03"},{"ID":"FBgn0028668","EGF_Baseline":"0.6"},{"ID":"FBgn0052027","EGF_Baseline":"-0.1"},{"ID":"FBgn0039408","EGF_Baseline":"0.48"},{"ID":"FBgn0000352","EGF_Baseline":"-0.39"},{"ID":"FBgn0038659","EGF_Baseline":"-1.3"},{"ID":"FBgn0039768","EGF_Baseline":"-1.13"},{"ID":"FBgn0031660","EGF_Baseline":"0.78"},{"ID":"FBgn0031802","EGF_Baseline":"1.01"},{"ID":"FBgn0029147","EGF_Baseline":"0.33"},{"ID":"FBgn0037563","EGF_Baseline":"0.76"},{"ID":"FBgn0032690","EGF_Baseline":"-1.09"},{"ID":"FBgn0040532","EGF_Baseline":"0.93"},{"ID":"FBgn0052791","EGF_Baseline":"-0.34"},{"ID":"FBgn0035141","EGF_Baseline":"1.17"},{"ID":"FBgn0038482","EGF_Baseline":"1.02"},{"ID":"FBgn0039092","EGF_Baseline":"-1.89"},{"ID":"FBgn0030504","EGF_Baseline":"-0.08"},{"ID":"FBgn0039694","EGF_Baseline":"-1.52"},{"ID":"FBgn0031765","EGF_Baseline":"0.67"},{"ID":"FBgn0014022","EGF_Baseline":"-0.44"},{"ID":"FBgn0039613","EGF_Baseline":"1.01"},{"ID":"FBgn0033629","EGF_Baseline":"1.18"},{"ID":"FBgn0259927","EGF_Baseline":"0.69"},{"ID":"FBgn0051414","EGF_Baseline":"1.77"},{"ID":"FBgn0035384","EGF_Baseline":"-0.7"},{"ID":"FBgn0037001","EGF_Baseline":"-0.89"},{"ID":"FBgn0053752","EGF_Baseline":"-1.08"},{"ID":"FBgn0260990","EGF_Baseline":"1.79"},{"ID":"FBgn0028500","EGF_Baseline":"-0.28"},{"ID":"FBgn0037081","EGF_Baseline":"-0.25"},{"ID":"FBgn0085419","EGF_Baseline":"0.87"},{"ID":"FBgn0036878","EGF_Baseline":"-1.95"},{"ID":"FBgn0032214","EGF_Baseline":"-1.08"},{"ID":"FBgn0086673","EGF_Baseline":"-1.44"},{"ID":"FBgn0037249","EGF_Baseline":"2.32"},{"ID":"FBgn0037461","EGF_Baseline":"-0.87"},{"ID":"FBgn0037504","EGF_Baseline":"-1.78"},{"ID":"FBgn0046294","EGF_Baseline":"-1.62"},{"ID":"FBgn0053519","EGF_Baseline":"1.36"},{"ID":"FBgn0034973","EGF_Baseline":"-0.89"},{"ID":"FBgn0052987","EGF_Baseline":"-1.66"},{"ID":"FBgn0035969","EGF_Baseline":"1.04"},{"ID":"FBgn0032050","EGF_Baseline":"-1.33"},{"ID":"FBgn0033569","EGF_Baseline":"0.53"},{"ID":"FBgn0040954","EGF_Baseline":"1.51"},{"ID":"FBgn0036083","EGF_Baseline":"-2.01"},{"ID":"FBgn0036706","EGF_Baseline":"1.36"},{"ID":"FBgn0036292","EGF_Baseline":"0.49"},{"ID":"FBgn0259483","EGF_Baseline":"0.99"},{"ID":"FBgn0037255","EGF_Baseline":"-0.39"},{"ID":"FBgn0030049","EGF_Baseline":"-0.61"},{"ID":"FBgn0038189","EGF_Baseline":"-0.35"},{"ID":"FBgn0035505","EGF_Baseline":"0.74"},{"ID":"FBgn0031093","EGF_Baseline":"2.55"},{"ID":"FBgn0000499","EGF_Baseline":"-0.82"},{"ID":"FBgn0037583","EGF_Baseline":"-1.31"},{"ID":"FBgn0037670","EGF_Baseline":"1.56"},{"ID":"FBgn0030537","EGF_Baseline":"-1.29"},{"ID":"FBgn0037369","EGF_Baseline":"-0.96"},{"ID":"FBgn0038233","EGF_Baseline":"0.07"},{"ID":"FBgn0051278","EGF_Baseline":"0.38"},{"ID":"FBgn0031786","EGF_Baseline":"-0.74"},{"ID":"FBgn0050106","EGF_Baseline":"1.11"},{"ID":"FBgn0052446","EGF_Baseline":"-0.98"},{"ID":"FBgn0054007","EGF_Baseline":"0.68"},{"ID":"FBgn0039923","EGF_Baseline":"-1.88"},{"ID":"FBgn0083945","EGF_Baseline":"-1.09"},{"ID":"FBgn0026257","EGF_Baseline":"-0.39"},{"ID":"FBgn0036386","EGF_Baseline":"-1.08"},{"ID":"FBgn0027085","EGF_Baseline":"-0.58"},{"ID":"FBgn0036909","EGF_Baseline":"-0.05"},{"ID":"FBgn0043532","EGF_Baseline":"-1.81"},{"ID":"FBgn0085412","EGF_Baseline":"-1.13"},{"ID":"FBgn0010282","EGF_Baseline":"0.63"},{"ID":"FBgn0261529","EGF_Baseline":"-0.42"},{"ID":"FBgn0002565","EGF_Baseline":"-0.77"},{"ID":"FBgn0085201","EGF_Baseline":"-1.86"},{"ID":"FBgn0051713","EGF_Baseline":"-0.63"},{"ID":"FBgn0031168","EGF_Baseline":"-1.37"},{"ID":"FBgn0023211","EGF_Baseline":"0.38"},{"ID":"FBgn0010078","EGF_Baseline":"5.31"},{"ID":"FBgn0036848","EGF_Baseline":"-1.43"},{"ID":"FBgn0032864","EGF_Baseline":"1.35"},{"ID":"FBgn0037618","EGF_Baseline":"-1.41"},{"ID":"FBgn0031842","EGF_Baseline":"0.39"},{"ID":"FBgn0029121","EGF_Baseline":"0.49"},{"ID":"FBgn0016917","EGF_Baseline":"-0.95"},{"ID":"FBgn0052319","EGF_Baseline":"-1.07"},{"ID":"FBgn0052237","EGF_Baseline":"-1.01"},{"ID":"FBgn0037301","EGF_Baseline":"-1.37"},{"ID":"FBgn0036809","EGF_Baseline":"-0.54"},{"ID":"FBgn0031619","EGF_Baseline":"-0.31"},{"ID":"FBgn0028902","EGF_Baseline":"-0.95"},{"ID":"FBgn0030823","EGF_Baseline":"-0.46"},{"ID":"FBgn0053284","EGF_Baseline":"-0.84"},{"ID":"FBgn0052751","EGF_Baseline":"-0.43"},{"ID":"FBgn0030571","EGF_Baseline":"-0.79"},{"ID":"FBgn0037241","EGF_Baseline":"-1.56"},{"ID":"FBgn0031610","EGF_Baseline":"1.58"},{"ID":"FBgn0041706","EGF_Baseline":"0.92"},{"ID":"FBgn0032422","EGF_Baseline":"-1.48"},{"ID":"FBgn0051116","EGF_Baseline":"0.75"},{"ID":"FBgn0038862","EGF_Baseline":"-1.18"},{"ID":"FBgn0035155","EGF_Baseline":"-1.11"},{"ID":"FBgn0051292","EGF_Baseline":"0.39"},{"ID":"FBgn0038686","EGF_Baseline":"-0.52"},{"ID":"FBgn0044872","EGF_Baseline":"0.63"},{"ID":"FBgn0036929","EGF_Baseline":"-0.24"},{"ID":"FBgn0030328","EGF_Baseline":"0.88"},{"ID":"FBgn0031061","EGF_Baseline":"0.74"},{"ID":"FBgn0037329","EGF_Baseline":"-0.93"},{"ID":"FBgn0015570","EGF_Baseline":"-1.09"},{"ID":"FBgn0052523","EGF_Baseline":"-1.11"},{"ID":"FBgn0004893","EGF_Baseline":"1.28"},{"ID":"FBgn0036832","EGF_Baseline":"-1.37"},{"ID":"FBgn0034745","EGF_Baseline":"-0.77"},{"ID":"FBgn0027594","EGF_Baseline":"1.49"},{"ID":"FBgn0013343","EGF_Baseline":"0.7"},{"ID":"FBgn0051251","EGF_Baseline":"-1.76"},{"ID":"FBgn0028371","EGF_Baseline":"7.82"},{"ID":"FBgn0037078","EGF_Baseline":"-0.67"},{"ID":"FBgn0033723","EGF_Baseline":"-0.74"},{"ID":"FBgn0085259","EGF_Baseline":"-1.42"},{"ID":"FBgn0023458","EGF_Baseline":"-0.78"},{"ID":"FBgn0034910","EGF_Baseline":"-1.82"},{"ID":"FBgn0043456","EGF_Baseline":"-0.56"},{"ID":"FBgn0052726","EGF_Baseline":"-0.95"},{"ID":"FBgn0031504","EGF_Baseline":"-1.74"},{"ID":"FBgn0039102","EGF_Baseline":"0.61"},{"ID":"FBgn0024991","EGF_Baseline":"0.58"},{"ID":"FBgn0013759","EGF_Baseline":"-1.03"},{"ID":"FBgn0050196","EGF_Baseline":"0.57"},{"ID":"FBgn0050350","EGF_Baseline":"0.62"},{"ID":"FBgn0003444","EGF_Baseline":"-0.51"},{"ID":"FBgn0050362","EGF_Baseline":"0.52"},{"ID":"FBgn0026598","EGF_Baseline":"-1.62"},{"ID":"FBgn0038446","EGF_Baseline":"-0.67"},{"ID":"FBgn0039830","EGF_Baseline":"-1.67"},{"ID":"FBgn0014930","EGF_Baseline":"-1.4"},{"ID":"FBgn0033830","EGF_Baseline":"0.56"},{"ID":"FBgn0034248","EGF_Baseline":"0.65"},{"ID":"FBgn0032706","EGF_Baseline":"-2.02"},{"ID":"FBgn0028546","EGF_Baseline":"0.91"},{"ID":"FBgn0000719","EGF_Baseline":"-1.59"},{"ID":"FBgn0051798","EGF_Baseline":"6.24"},{"ID":"FBgn0040674","EGF_Baseline":"-1.31"},{"ID":"FBgn0005536","EGF_Baseline":"-1.51"},{"ID":"FBgn0031104","EGF_Baseline":"-0.57"},{"ID":"FBgn0083167","EGF_Baseline":"-0.34"},{"ID":"FBgn0001185","EGF_Baseline":"0.81"},{"ID":"FBgn0037998","EGF_Baseline":"0.56"},{"ID":"FBgn0039425","EGF_Baseline":"1.56"},{"ID":"FBgn0036234","EGF_Baseline":"-0.69"},{"ID":"FBgn0031955","EGF_Baseline":"1.56"},{"ID":"FBgn0004828","EGF_Baseline":"-1.84"},{"ID":"FBgn0030590","EGF_Baseline":"1.49"},{"ID":"FBgn0039109","EGF_Baseline":"-0.88"},{"ID":"FBgn0032780","EGF_Baseline":"2.75"},{"ID":"FBgn0033557","EGF_Baseline":"-0.4"},{"ID":"FBgn0033807","EGF_Baseline":"0.23"},{"ID":"FBgn0002284","EGF_Baseline":"-0.73"},{"ID":"FBgn0038761","EGF_Baseline":"1.12"},{"ID":"FBgn0031472","EGF_Baseline":"0.5"},{"ID":"FBgn0032853","EGF_Baseline":"-0.28"},{"ID":"FBgn0026376","EGF_Baseline":"0.09"},{"ID":"FBgn0052984","EGF_Baseline":"-0.46"},{"ID":"FBgn0038975","EGF_Baseline":"1.5"},{"ID":"FBgn0013679","EGF_Baseline":"0.19"},{"ID":"FBgn0034906","EGF_Baseline":"1.58"},{"ID":"FBgn0030747","EGF_Baseline":"1.17"},{"ID":"FBgn0037204","EGF_Baseline":"-1.7"},{"ID":"FBgn0030686","EGF_Baseline":"-1.72"},{"ID":"FBgn0250837","EGF_Baseline":"-1.01"},{"ID":"FBgn0036568","EGF_Baseline":"1.11"},{"ID":"FBgn0032262","EGF_Baseline":"-1.19"},{"ID":"FBgn0003429","EGF_Baseline":"0.31"},{"ID":"FBgn0025595","EGF_Baseline":"0.92"},{"ID":"FBgn0032187","EGF_Baseline":"-1.27"},{"ID":"FBgn0037186","EGF_Baseline":"0.72"},{"ID":"FBgn0085451","EGF_Baseline":"-1.08"},{"ID":"FBgn0036314","EGF_Baseline":"1.94"},{"ID":"FBgn0035735","EGF_Baseline":"-0.25"},{"ID":"FBgn0085190","EGF_Baseline":"1.49"},{"ID":"FBgn0029818","EGF_Baseline":"0.33"},{"ID":"FBgn0028471","EGF_Baseline":"-1.52"},{"ID":"FBgn0039483","EGF_Baseline":"-0.82"},{"ID":"FBgn0035604","EGF_Baseline":"1.55"},{"ID":"FBgn0030704","EGF_Baseline":"1.14"},{"ID":"FBgn0033285","EGF_Baseline":"-1.08"},{"ID":"FBgn0004643","EGF_Baseline":"0.51"},{"ID":"FBgn0033226","EGF_Baseline":"-1.36"},{"ID":"FBgn0037828","EGF_Baseline":"-0.35"},{"ID":"FBgn0259140","EGF_Baseline":"-1.47"},{"ID":"FBgn0027074","EGF_Baseline":"-0.3"},{"ID":"FBgn0011573","EGF_Baseline":"-1.7"},{"ID":"FBgn0034380","EGF_Baseline":"0.51"},{"ID":"FBgn0038321","EGF_Baseline":"-0.1"},{"ID":"FBgn0038964","EGF_Baseline":"-0.71"},{"ID":"FBgn0010416","EGF_Baseline":"0.38"},{"ID":"FBgn0053489","EGF_Baseline":"-0.56"},{"ID":"FBgn0013442","EGF_Baseline":"-0.95"},{"ID":"FBgn0029986","EGF_Baseline":"-0.33"},{"ID":"FBgn0031998","EGF_Baseline":"0.75"},{"ID":"FBgn0026361","EGF_Baseline":"-0.68"},{"ID":"FBgn0029811","EGF_Baseline":"-1.12"},{"ID":"FBgn0034776","EGF_Baseline":"-1.08"},{"ID":"FBgn0052113","EGF_Baseline":"-1.64"},{"ID":"FBgn0023171","EGF_Baseline":"-1.32"},{"ID":"FBgn0029867","EGF_Baseline":"-1.42"},{"ID":"FBgn0260748","EGF_Baseline":"-1.38"},{"ID":"FBgn0028887","EGF_Baseline":"-1.07"},{"ID":"FBgn0085486","EGF_Baseline":"1.1"},{"ID":"FBgn0050154","EGF_Baseline":"-0.27"},{"ID":"FBgn0000711","EGF_Baseline":"-1.33"},{"ID":"FBgn0040207","EGF_Baseline":"-1.4"},{"ID":"FBgn0028325","EGF_Baseline":"-0.53"},{"ID":"FBgn0039219","EGF_Baseline":"0.33"},{"ID":"FBgn0029831","EGF_Baseline":"-0.92"},{"ID":"FBgn0028658","EGF_Baseline":"0.74"},{"ID":"FBgn0036834","EGF_Baseline":"-0.54"},{"ID":"FBgn0037470","EGF_Baseline":"1.4"},{"ID":"FBgn0001145","EGF_Baseline":"0.31"},{"ID":"FBgn0035811","EGF_Baseline":"0.83"},{"ID":"FBgn0019968","EGF_Baseline":"-0.41"},{"ID":"FBgn0243511","EGF_Baseline":"0.36"},{"ID":"FBgn0040773","EGF_Baseline":"-2.27"},{"ID":"FBgn0033482","EGF_Baseline":"0.3"},{"ID":"FBgn0017577","EGF_Baseline":"0.68"},{"ID":"FBgn0039856","EGF_Baseline":"-1.05"},{"ID":"FBgn0017456","EGF_Baseline":"1.05"},{"ID":"FBgn0035167","EGF_Baseline":"0.65"},{"ID":"FBgn0037981","EGF_Baseline":"1.27"},{"ID":"FBgn0013953","EGF_Baseline":"0.38"},{"ID":"FBgn0027934","EGF_Baseline":"1.68"},{"ID":"FBgn0033164","EGF_Baseline":"-1.45"},{"ID":"FBgn0004177","EGF_Baseline":"2"},{"ID":"FBgn0025725","EGF_Baseline":"1.99"},{"ID":"FBgn0042178","EGF_Baseline":"0.48"},{"ID":"FBgn0005592","EGF_Baseline":"-1.7"},{"ID":"FBgn0030572","EGF_Baseline":"-1.7"},{"ID":"FBgn0038613","EGF_Baseline":"0.65"},{"ID":"FBgn0035266","EGF_Baseline":"-0.48"},{"ID":"FBgn0036183","EGF_Baseline":"-0.06"},{"ID":"FBgn0003870","EGF_Baseline":"0.44"},{"ID":"FBgn0033692","EGF_Baseline":"-1.28"},{"ID":"FBgn0034286","EGF_Baseline":"0.56"},{"ID":"FBgn0026323","EGF_Baseline":"-1.6"},{"ID":"FBgn0034065","EGF_Baseline":"-0.52"},{"ID":"FBgn0036157","EGF_Baseline":"0.2"},{"ID":"FBgn0034940","EGF_Baseline":"-0.52"},{"ID":"FBgn0025833","EGF_Baseline":"-1.29"},{"ID":"FBgn0027611","EGF_Baseline":"-0.7"},{"ID":"FBgn0260386","EGF_Baseline":"-0.17"},{"ID":"FBgn0045473","EGF_Baseline":"-0.35"},{"ID":"FBgn0024371","EGF_Baseline":"-1.69"},{"ID":"FBgn0039623","EGF_Baseline":"-1.83"},{"ID":"FBgn0028978","EGF_Baseline":"0.94"},{"ID":"FBgn0036331","EGF_Baseline":"-0.11"},{"ID":"FBgn0054039","EGF_Baseline":"0.25"},{"ID":"FBgn0030664","EGF_Baseline":"-0.89"},{"ID":"FBgn0019952","EGF_Baseline":"-1.28"},{"ID":"FBgn0033461","EGF_Baseline":"1.29"},{"ID":"FBgn0024556","EGF_Baseline":"-1.07"},{"ID":"FBgn0035106","EGF_Baseline":"-0.41"},{"ID":"FBgn0038065","EGF_Baseline":"0.71"},{"ID":"FBgn0033581","EGF_Baseline":"1.08"},{"ID":"FBgn0053160","EGF_Baseline":"-0.14"},{"ID":"FBgn0010389","EGF_Baseline":"0.24"},{"ID":"FBgn0034782","EGF_Baseline":"-0.99"},{"ID":"FBgn0046692","EGF_Baseline":"-0.57"},{"ID":"FBgn0031589","EGF_Baseline":"-1.32"},{"ID":"FBgn0033243","EGF_Baseline":"-0.4"},{"ID":"FBgn0052650","EGF_Baseline":"0.74"},{"ID":"FBgn0024985","EGF_Baseline":"0.84"},{"ID":"FBgn0000018","EGF_Baseline":"0.83"},{"ID":"FBgn0028940","EGF_Baseline":"-1.43"},{"ID":"FBgn0261547","EGF_Baseline":"-0.37"},{"ID":"FBgn0250830","EGF_Baseline":"-0.98"},{"ID":"FBgn0261015","EGF_Baseline":"1.52"},{"ID":"FBgn0027052","EGF_Baseline":"-0.3"},{"ID":"FBgn0036105","EGF_Baseline":"-1.41"},{"ID":"FBgn0030530","EGF_Baseline":"0.26"},{"ID":"FBgn0085334","EGF_Baseline":"-1.26"},{"ID":"FBgn0035337","EGF_Baseline":"0.45"},{"ID":"FBgn0040606","EGF_Baseline":"1.95"},{"ID":"FBgn0032479","EGF_Baseline":"0.67"},{"ID":"FBgn0261445","EGF_Baseline":"1.05"},{"ID":"FBgn0020312","EGF_Baseline":"-0.98"},{"ID":"FBgn0050472","EGF_Baseline":"1.24"},{"ID":"FBgn0033017","EGF_Baseline":"-1.72"},{"ID":"FBgn0050088","EGF_Baseline":"0.78"},{"ID":"FBgn0022774","EGF_Baseline":"0.25"},{"ID":"FBgn0016034","EGF_Baseline":"0.82"},{"ID":"FBgn0029172","EGF_Baseline":"1.61"},{"ID":"FBgn0000588","EGF_Baseline":"-1.18"},{"ID":"FBgn0034400","EGF_Baseline":"0.67"},{"ID":"FBgn0026602","EGF_Baseline":"1.23"},{"ID":"FBgn0024889","EGF_Baseline":"2.02"},{"ID":"FBgn0050389","EGF_Baseline":"1.17"},{"ID":"FBgn0051676","EGF_Baseline":"1.79"},{"ID":"FBgn0038941","EGF_Baseline":"-2.86"},{"ID":"FBgn0024887","EGF_Baseline":"-1.09"},{"ID":"FBgn0030740","EGF_Baseline":"0.42"},{"ID":"FBgn0052183","EGF_Baseline":"-1.1"},{"ID":"FBgn0003231","EGF_Baseline":"0.78"},{"ID":"FBgn0001229","EGF_Baseline":"-0.27"},{"ID":"FBgn0038072","EGF_Baseline":"-0.4"},{"ID":"FBgn0023535","EGF_Baseline":"0.43"},{"ID":"FBgn0036503","EGF_Baseline":"2.2"},{"ID":"FBgn0036334","EGF_Baseline":"-0.81"},{"ID":"FBgn0039265","EGF_Baseline":"-1.05"},{"ID":"FBgn0051100","EGF_Baseline":"-1.04"},{"ID":"FBgn0052642","EGF_Baseline":"0.93"},{"ID":"FBgn0026787","EGF_Baseline":"-1.52"},{"ID":"FBgn0037577","EGF_Baseline":"-1.07"},{"ID":"FBgn0032771","EGF_Baseline":"2.1"},{"ID":"FBgn0010340","EGF_Baseline":"-1.37"},{"ID":"FBgn0034137","EGF_Baseline":"1.31"},{"ID":"FBgn0039959","EGF_Baseline":"0.88"},{"ID":"FBgn0002579","EGF_Baseline":"5.39"},{"ID":"FBgn0085285","EGF_Baseline":"-1.92"},{"ID":"FBgn0051467","EGF_Baseline":"-0.93"},{"ID":"FBgn0015372","EGF_Baseline":"-0.88"},{"ID":"FBgn0051716","EGF_Baseline":"0.56"},{"ID":"FBgn0029666","EGF_Baseline":"-0.06"},{"ID":"FBgn0039908","EGF_Baseline":"0.63"},{"ID":"FBgn0034999","EGF_Baseline":"-1.16"},{"ID":"FBgn0034854","EGF_Baseline":"-0.59"},{"ID":"FBgn0000658","EGF_Baseline":"-0.59"},{"ID":"FBgn0036438","EGF_Baseline":"0.55"},{"ID":"FBgn0035554","EGF_Baseline":"-0.52"},{"ID":"FBgn0259145","EGF_Baseline":"-1.68"},{"ID":"FBgn0038251","EGF_Baseline":"0.36"},{"ID":"FBgn0027506","EGF_Baseline":"-0.67"},{"ID":"FBgn0029709","EGF_Baseline":"0.87"},{"ID":"FBgn0036144","EGF_Baseline":"2.51"},{"ID":"FBgn0045500","EGF_Baseline":"2.48"},{"ID":"FBgn0260399","EGF_Baseline":"-1.25"},{"ID":"FBgn0050222","EGF_Baseline":"-0.34"},{"ID":"FBgn0037382","EGF_Baseline":"0.74"},{"ID":"FBgn0026755","EGF_Baseline":"0.58"},{"ID":"FBgn0025140","EGF_Baseline":"0.86"},{"ID":"FBgn0023174","EGF_Baseline":"-0.53"},{"ID":"FBgn0019890","EGF_Baseline":"-2.08"},{"ID":"FBgn0032298","EGF_Baseline":"-0.72"},{"ID":"FBgn0046793","EGF_Baseline":"-0.6"},{"ID":"FBgn0037656","EGF_Baseline":"-0.51"},{"ID":"FBgn0035523","EGF_Baseline":"0.55"},{"ID":"FBgn0033191","EGF_Baseline":"1.29"},{"ID":"FBgn0034628","EGF_Baseline":"1.2"},{"ID":"FBgn0025686","EGF_Baseline":"-0.44"},{"ID":"FBgn0034113","EGF_Baseline":"-0.17"},{"ID":"FBgn0029710","EGF_Baseline":"-1.15"},{"ID":"FBgn0051008","EGF_Baseline":"-0.63"},{"ID":"FBgn0038652","EGF_Baseline":"-1.29"},{"ID":"FBgn0024698","EGF_Baseline":"1.63"},{"ID":"FBgn0046876","EGF_Baseline":"1.36"},{"ID":"FBgn0051224","EGF_Baseline":"-1.95"},{"ID":"FBgn0004009","EGF_Baseline":"0.57"},{"ID":"FBgn0011710","EGF_Baseline":"0.76"},{"ID":"FBgn0050378","EGF_Baseline":"0.8"},{"ID":"FBgn0010380","EGF_Baseline":"-1.72"},{"ID":"FBgn0034833","EGF_Baseline":"-1.67"},{"ID":"FBgn0034145","EGF_Baseline":"1.52"},{"ID":"FBgn0031972","EGF_Baseline":"-2.69"},{"ID":"FBgn0033732","EGF_Baseline":"0.87"},{"ID":"FBgn0037146","EGF_Baseline":"0.79"},{"ID":"FBgn0034053","EGF_Baseline":"-1.77"},{"ID":"FBgn0031914","EGF_Baseline":"-0.38"},{"ID":"FBgn0032052","EGF_Baseline":"-1.25"},{"ID":"FBgn0033549","EGF_Baseline":"0.97"},{"ID":"FBgn0001219","EGF_Baseline":"3.95"},{"ID":"FBgn0033169","EGF_Baseline":"1.71"},{"ID":"FBgn0042133","EGF_Baseline":"-1.78"},{"ID":"FBgn0032031","EGF_Baseline":"1.12"},{"ID":"FBgn0036426","EGF_Baseline":"-0.75"},{"ID":"FBgn0029899","EGF_Baseline":"0.94"},{"ID":"FBgn0040296","EGF_Baseline":"-1.03"},{"ID":"FBgn0038508","EGF_Baseline":"-0.27"},{"ID":"FBgn0030468","EGF_Baseline":"-0.76"},{"ID":"FBgn0033055","EGF_Baseline":"0.26"},{"ID":"FBgn0011556","EGF_Baseline":"0.56"},{"ID":"FBgn0032145","EGF_Baseline":"0.68"},{"ID":"FBgn0086451","EGF_Baseline":"-0.81"},{"ID":"FBgn0052396","EGF_Baseline":"-0.74"},{"ID":"FBgn0037890","EGF_Baseline":"-0.73"},{"ID":"FBgn0261041","EGF_Baseline":"-0.96"},{"ID":"FBgn0046225","EGF_Baseline":"-0.23"},{"ID":"FBgn0041194","EGF_Baseline":"-0.66"},{"ID":"FBgn0030033","EGF_Baseline":"-0.98"},{"ID":"FBgn0030697","EGF_Baseline":"-0.67"},{"ID":"FBgn0039867","EGF_Baseline":"0.53"},{"ID":"FBgn0027053","EGF_Baseline":"-0.55"},{"ID":"FBgn0039601","EGF_Baseline":"-0.43"},{"ID":"FBgn0040649","EGF_Baseline":"-0.46"},{"ID":"FBgn0037320","EGF_Baseline":"-1.14"},{"ID":"FBgn0062411","EGF_Baseline":"1.45"},{"ID":"FBgn0038583","EGF_Baseline":"0.95"},{"ID":"FBgn0053477","EGF_Baseline":"-0.24"},{"ID":"FBgn0259212","EGF_Baseline":"-0.58"},{"ID":"FBgn0031560","EGF_Baseline":"1.47"},{"ID":"FBgn0086129","EGF_Baseline":"-0.66"},{"ID":"FBgn0085377","EGF_Baseline":"-0.29"},{"ID":"FBgn0052773","EGF_Baseline":"0.56"},{"ID":"FBgn0004589","EGF_Baseline":"-0.91"},{"ID":"FBgn0050380","EGF_Baseline":"-0.26"},{"ID":"FBgn0020764","EGF_Baseline":"0.64"},{"ID":"FBgn0039758","EGF_Baseline":"-0.97"},{"ID":"FBgn0086916","EGF_Baseline":"0.6"},{"ID":"FBgn0039510","EGF_Baseline":"1.84"},{"ID":"FBgn0032122","EGF_Baseline":"-1"},{"ID":"FBgn0260858","EGF_Baseline":"-0.76"},{"ID":"FBgn0250753","EGF_Baseline":"0.62"},{"ID":"FBgn0039056","EGF_Baseline":"-1.07"},{"ID":"FBgn0036461","EGF_Baseline":"-0.5"},{"ID":"FBgn0037924","EGF_Baseline":"1.94"},{"ID":"FBgn0085424","EGF_Baseline":"0.78"},{"ID":"FBgn0030373","EGF_Baseline":"0.86"},{"ID":"FBgn0031132","EGF_Baseline":"-0.92"},{"ID":"FBgn0086446","EGF_Baseline":"-1.43"},{"ID":"FBgn0034565","EGF_Baseline":"-0.27"},{"ID":"FBgn0052017","EGF_Baseline":"-0.19"},{"ID":"FBgn0033799","EGF_Baseline":"-1.21"},{"ID":"FBgn0087007","EGF_Baseline":"-0.89"},{"ID":"FBgn0035926","EGF_Baseline":"-0.68"},{"ID":"FBgn0010235","EGF_Baseline":"0.7"},{"ID":"FBgn0037630","EGF_Baseline":"1.42"},{"ID":"FBgn0002543","EGF_Baseline":"1.25"},{"ID":"FBgn0086698","EGF_Baseline":"0.47"},{"ID":"FBgn0037897","EGF_Baseline":"-0.87"},{"ID":"FBgn0035192","EGF_Baseline":"-1.11"},{"ID":"FBgn0011294","EGF_Baseline":"-0.81"},{"ID":"FBgn0015324","EGF_Baseline":"0.12"},{"ID":"FBgn0085329","EGF_Baseline":"0.62"},{"ID":"FBgn0037261","EGF_Baseline":"2.44"},{"ID":"FBgn0000277","EGF_Baseline":"0.65"},{"ID":"FBgn0033915","EGF_Baseline":"-0.67"},{"ID":"FBgn0026315","EGF_Baseline":"0.32"},{"ID":"FBgn0040805","EGF_Baseline":"-1.36"},{"ID":"FBgn0041236","EGF_Baseline":"-1.29"},{"ID":"FBgn0052627","EGF_Baseline":"1.22"},{"ID":"FBgn0040250","EGF_Baseline":"1.03"},{"ID":"FBgn0054049","EGF_Baseline":"-1.11"},{"ID":"FBgn0031459","EGF_Baseline":"-0.83"},{"ID":"FBgn0034667","EGF_Baseline":"0.49"},{"ID":"FBgn0051216","EGF_Baseline":"0.3"},{"ID":"FBgn0038727","EGF_Baseline":"1.44"},{"ID":"FBgn0051601","EGF_Baseline":"-1.64"},{"ID":"FBgn0031993","EGF_Baseline":"1.75"},{"ID":"FBgn0037440","EGF_Baseline":"-0.42"},{"ID":"FBgn0033204","EGF_Baseline":"-2.1"},{"ID":"FBgn0051637","EGF_Baseline":"-0.84"},{"ID":"FBgn0038638","EGF_Baseline":"-1"},{"ID":"FBgn0050001","EGF_Baseline":"1.14"},{"ID":"FBgn0026399","EGF_Baseline":"-1.23"},{"ID":"FBgn0016974","EGF_Baseline":"0.54"},{"ID":"FBgn0033953","EGF_Baseline":"-1.5"},{"ID":"FBgn0035619","EGF_Baseline":"1.11"},{"ID":"FBgn0036542","EGF_Baseline":"-1.06"},{"ID":"FBgn0031418","EGF_Baseline":"0.72"},{"ID":"FBgn0035713","EGF_Baseline":"1.6"},{"ID":"FBgn0033442","EGF_Baseline":"-1.41"},{"ID":"FBgn0037782","EGF_Baseline":"-0.71"},{"ID":"FBgn0259151","EGF_Baseline":"-1.2"},{"ID":"FBgn0040351","EGF_Baseline":"2.24"},{"ID":"FBgn0034733","EGF_Baseline":"-1.73"},{"ID":"FBgn0038626","EGF_Baseline":"1.22"},{"ID":"FBgn0013732","EGF_Baseline":"0.7"},{"ID":"FBgn0040309","EGF_Baseline":"1.22"},{"ID":"FBgn0039323","EGF_Baseline":"0.23"},{"ID":"FBgn0028499","EGF_Baseline":"0.8"},{"ID":"FBgn0015279","EGF_Baseline":"1.03"},{"ID":"FBgn0035831","EGF_Baseline":"-0.7"},{"ID":"FBgn0039067","EGF_Baseline":"1.24"},{"ID":"FBgn0038715","EGF_Baseline":"-0.07"},{"ID":"FBgn0038358","EGF_Baseline":"2.81"},{"ID":"FBgn0051084","EGF_Baseline":"-1.1"},{"ID":"FBgn0050398","EGF_Baseline":"0.84"},{"ID":"FBgn0004574","EGF_Baseline":"-0.54"},{"ID":"FBgn0053169","EGF_Baseline":"-1.15"},{"ID":"FBgn0085356","EGF_Baseline":"-0.53"},{"ID":"FBgn0035428","EGF_Baseline":"-0.61"},{"ID":"FBgn0261571","EGF_Baseline":"-1.01"},{"ID":"FBgn0032059","EGF_Baseline":"-0.28"},{"ID":"FBgn0037181","EGF_Baseline":"1.38"},{"ID":"FBgn0030739","EGF_Baseline":"-0.25"},{"ID":"FBgn0038747","EGF_Baseline":"-1.09"},{"ID":"FBgn0051202","EGF_Baseline":"0.8"},{"ID":"FBgn0030507","EGF_Baseline":"-0.6"},{"ID":"FBgn0002570","EGF_Baseline":"1.6"},{"ID":"FBgn0036775","EGF_Baseline":"0.69"},{"ID":"FBgn0028931","EGF_Baseline":"-1.01"},{"ID":"FBgn0036661","EGF_Baseline":"-0.87"},{"ID":"FBgn0038304","EGF_Baseline":"3.36"},{"ID":"FBgn0031176","EGF_Baseline":"0.79"},{"ID":"FBgn0004638","EGF_Baseline":"-1.7"},{"ID":"FBgn0022764","EGF_Baseline":"0.71"},{"ID":"FBgn0053276","EGF_Baseline":"-0.12"},{"ID":"FBgn0025621","EGF_Baseline":"-0.96"},{"ID":"FBgn0036205","EGF_Baseline":"-0.54"},{"ID":"FBgn0037762","EGF_Baseline":"0.39"},{"ID":"FBgn0085319","EGF_Baseline":"-0.87"},{"ID":"FBgn0041103","EGF_Baseline":"0.29"},{"ID":"FBgn0004611","EGF_Baseline":"-1.34"},{"ID":"FBgn0053983","EGF_Baseline":"-1.55"},{"ID":"FBgn0030359","EGF_Baseline":"-0.78"},{"ID":"FBgn0033135","EGF_Baseline":"-0.79"},{"ID":"FBgn0035806","EGF_Baseline":"1.16"},{"ID":"FBgn0032785","EGF_Baseline":"-1.17"},{"ID":"FBgn0033355","EGF_Baseline":"-1.35"},{"ID":"FBgn0030327","EGF_Baseline":"-0.42"},{"ID":"FBgn0015229","EGF_Baseline":"-0.87"},{"ID":"FBgn0031229","EGF_Baseline":"1.14"},{"ID":"FBgn0038344","EGF_Baseline":"0.74"},{"ID":"FBgn0036586","EGF_Baseline":"1.84"},{"ID":"FBgn0034265","EGF_Baseline":"0.08"},{"ID":"FBgn0036356","EGF_Baseline":"0.7"},{"ID":"FBgn0040963","EGF_Baseline":"-0.86"},{"ID":"FBgn0051232","EGF_Baseline":"1.98"},{"ID":"FBgn0034261","EGF_Baseline":"0.69"},{"ID":"FBgn0037456","EGF_Baseline":"-0.95"},{"ID":"FBgn0051730","EGF_Baseline":"1.21"},{"ID":"FBgn0032363","EGF_Baseline":"-1.4"},{"ID":"FBgn0034935","EGF_Baseline":"-0.37"},{"ID":"FBgn0033886","EGF_Baseline":"0.41"},{"ID":"FBgn0028683","EGF_Baseline":"0.26"},{"ID":"FBgn0030558","EGF_Baseline":"-0.12"},{"ID":"FBgn0040842","EGF_Baseline":"-1.15"},{"ID":"FBgn0025936","EGF_Baseline":"-0.87"},{"ID":"FBgn0039840","EGF_Baseline":"2.84"},{"ID":"FBgn0034819","EGF_Baseline":"-1.83"},{"ID":"FBgn0004552","EGF_Baseline":"0.85"},{"ID":"FBgn0000409","EGF_Baseline":"0.55"},{"ID":"FBgn0039024","EGF_Baseline":"0.65"},{"ID":"FBgn0052803","EGF_Baseline":"-0.93"},{"ID":"FBgn0035970","EGF_Baseline":"1.81"},{"ID":"FBgn0038925","EGF_Baseline":"-1.31"},{"ID":"FBgn0000581","EGF_Baseline":"-1.41"},{"ID":"FBgn0021760","EGF_Baseline":"0.39"},{"ID":"FBgn0015756","EGF_Baseline":"3"},{"ID":"FBgn0029890","EGF_Baseline":"0.12"},{"ID":"FBgn0032268","EGF_Baseline":"0.72"},{"ID":"FBgn0034674","EGF_Baseline":"1.18"},{"ID":"FBgn0028913","EGF_Baseline":"-0.79"},{"ID":"FBgn0000448","EGF_Baseline":"0.93"},{"ID":"FBgn0032517","EGF_Baseline":"0.8"},{"ID":"FBgn0053288","EGF_Baseline":"0.51"},{"ID":"FBgn0037512","EGF_Baseline":"-1.41"},{"ID":"FBgn0037283","EGF_Baseline":"0.63"},{"ID":"FBgn0036311","EGF_Baseline":"-0.65"},{"ID":"FBgn0029719","EGF_Baseline":"0.81"},{"ID":"FBgn0040344","EGF_Baseline":"-0.89"},{"ID":"FBgn0038395","EGF_Baseline":"0.28"},{"ID":"FBgn0031049","EGF_Baseline":"-1.29"},{"ID":"FBgn0039358","EGF_Baseline":"-1.88"},{"ID":"FBgn0026147","EGF_Baseline":"1.2"},{"ID":"FBgn0036623","EGF_Baseline":"-0.11"},{"ID":"FBgn0033903","EGF_Baseline":"-0.21"},{"ID":"FBgn0028520","EGF_Baseline":"-0.83"},{"ID":"FBgn0003983","EGF_Baseline":"1"},{"ID":"FBgn0034641","EGF_Baseline":"-0.76"},{"ID":"FBgn0033539","EGF_Baseline":"0.99"},{"ID":"FBgn0035209","EGF_Baseline":"-0.36"},{"ID":"FBgn0035584","EGF_Baseline":"-1.14"},{"ID":"FBgn0031590","EGF_Baseline":"-0.48"},{"ID":"FBgn0051211","EGF_Baseline":"1.62"},{"ID":"FBgn0031422","EGF_Baseline":"0.48"},{"ID":"FBgn0004055","EGF_Baseline":"-0.81"},{"ID":"FBgn0051721","EGF_Baseline":"0.9"},{"ID":"FBgn0003292","EGF_Baseline":"-0.84"},{"ID":"FBgn0011771","EGF_Baseline":"3.75"},{"ID":"FBgn0051913","EGF_Baseline":"-1.02"},{"ID":"FBgn0036169","EGF_Baseline":"-0.35"},{"ID":"FBgn0031099","EGF_Baseline":"-0.16"},{"ID":"FBgn0051907","EGF_Baseline":"0.83"},{"ID":"FBgn0039210","EGF_Baseline":"1.21"},{"ID":"FBgn0003248","EGF_Baseline":"-1.28"},{"ID":"FBgn0032375","EGF_Baseline":"-0.26"},{"ID":"FBgn0045759","EGF_Baseline":"-0.62"},{"ID":"FBgn0034155","EGF_Baseline":"-0.45"},{"ID":"FBgn0051533","EGF_Baseline":"-0.47"},{"ID":"FBgn0001098","EGF_Baseline":"2.33"},{"ID":"FBgn0051481","EGF_Baseline":"-0.61"},{"ID":"FBgn0051158","EGF_Baseline":"-1.71"},{"ID":"FBgn0033437","EGF_Baseline":"1.14"},{"ID":"FBgn0050021","EGF_Baseline":"-1.69"},{"ID":"FBgn0010772","EGF_Baseline":"-2.12"},{"ID":"FBgn0034577","EGF_Baseline":"0.27"},{"ID":"FBgn0040370","EGF_Baseline":"0.63"},{"ID":"FBgn0031183","EGF_Baseline":"-1.11"},{"ID":"FBgn0003048","EGF_Baseline":"1.6"},{"ID":"FBgn0261574","EGF_Baseline":"-0.28"},{"ID":"FBgn0034139","EGF_Baseline":"0.56"},{"ID":"FBgn0032004","EGF_Baseline":"-0.57"},{"ID":"FBgn0024184","EGF_Baseline":"1.25"},{"ID":"FBgn0085399","EGF_Baseline":"1.72"},{"ID":"FBgn0086677","EGF_Baseline":"-1.76"},{"ID":"FBgn0067317","EGF_Baseline":"1.09"},{"ID":"FBgn0036553","EGF_Baseline":"0.39"},{"ID":"FBgn0033739","EGF_Baseline":"-1.36"},{"ID":"FBgn0039234","EGF_Baseline":"1.08"},{"ID":"FBgn0052428","EGF_Baseline":"-1.62"},{"ID":"FBgn0038738","EGF_Baseline":"-0.95"},{"ID":"FBgn0032904","EGF_Baseline":"-0.95"},{"ID":"FBgn0037486","EGF_Baseline":"1.51"},{"ID":"FBgn0034258","EGF_Baseline":"3.6"},{"ID":"FBgn0025720","EGF_Baseline":"-2.12"},{"ID":"FBgn0036162","EGF_Baseline":"0.7"},{"ID":"FBgn0087002","EGF_Baseline":"-0.76"},{"ID":"FBgn0029971","EGF_Baseline":"0.75"},{"ID":"FBgn0031811","EGF_Baseline":"0.78"},{"ID":"FBgn0038312","EGF_Baseline":"-0.14"},{"ID":"FBgn0002631","EGF_Baseline":"1.32"},{"ID":"FBgn0041243","EGF_Baseline":"-0.73"},{"ID":"FBgn0052814","EGF_Baseline":"-0.57"},{"ID":"FBgn0035725","EGF_Baseline":"1.11"},{"ID":"FBgn0040097","EGF_Baseline":"-1.33"},{"ID":"FBgn0034098","EGF_Baseline":"-0.29"},{"ID":"FBgn0036346","EGF_Baseline":"-0.75"},{"ID":"FBgn0032444","EGF_Baseline":"-1.27"},{"ID":"FBgn0035936","EGF_Baseline":"0.84"},{"ID":"FBgn0039598","EGF_Baseline":"1.27"},{"ID":"FBgn0260755","EGF_Baseline":"0.34"},{"ID":"FBgn0037273","EGF_Baseline":"5.27"},{"ID":"FBgn0031440","EGF_Baseline":"1.87"},{"ID":"FBgn0038790","EGF_Baseline":"-0.53"},{"ID":"FBgn0037225","EGF_Baseline":"-1.33"},{"ID":"FBgn0051935","EGF_Baseline":"-0.78"},{"ID":"FBgn0052225","EGF_Baseline":"-1.12"},{"ID":"FBgn0031533","EGF_Baseline":"-0.86"},{"ID":"FBgn0032074","EGF_Baseline":"-0.73"},{"ID":"FBgn0030892","EGF_Baseline":"-0.21"},{"ID":"FBgn0051450","EGF_Baseline":"-1.41"},{"ID":"FBgn0010549","EGF_Baseline":"0.73"},{"ID":"FBgn0261243","EGF_Baseline":"-2.01"},{"ID":"FBgn0032521","EGF_Baseline":"-0.57"},{"ID":"FBgn0028670","EGF_Baseline":"-1.49"},{"ID":"FBgn0038277","EGF_Baseline":"1.02"},{"ID":"FBgn0086346","EGF_Baseline":"1.05"},{"ID":"FBgn0036763","EGF_Baseline":"-0.49"},{"ID":"FBgn0003358","EGF_Baseline":"1.38"},{"ID":"FBgn0030994","EGF_Baseline":"-0.66"},{"ID":"FBgn0040093","EGF_Baseline":"-1.16"},{"ID":"FBgn0039509","EGF_Baseline":"-0.87"},{"ID":"FBgn0032638","EGF_Baseline":"0.72"},{"ID":"FBgn0034643","EGF_Baseline":"-0.65"},{"ID":"FBgn0051926","EGF_Baseline":"0.11"},{"ID":"FBgn0050060","EGF_Baseline":"-1.09"},{"ID":"FBgn0027841","EGF_Baseline":"1.34"},{"ID":"FBgn0034919","EGF_Baseline":"2.17"},{"ID":"FBgn0031457","EGF_Baseline":"-1.04"},{"ID":"FBgn0039911","EGF_Baseline":"-1.13"},{"ID":"FBgn0023522","EGF_Baseline":"-0.24"},{"ID":"FBgn0035070","EGF_Baseline":"0.91"},{"ID":"FBgn0035853","EGF_Baseline":"-0.88"},{"ID":"FBgn0037176","EGF_Baseline":"1.02"},{"ID":"FBgn0037547","EGF_Baseline":"0.94"},{"ID":"FBgn0036030","EGF_Baseline":"0.86"},{"ID":"FBgn0044510","EGF_Baseline":"-1.23"},{"ID":"FBgn0052815","EGF_Baseline":"-1.42"},{"ID":"FBgn0040496","EGF_Baseline":"-0.85"},{"ID":"FBgn0053205","EGF_Baseline":"0.61"},{"ID":"FBgn0063494","EGF_Baseline":"-0.58"},{"ID":"FBgn0003023","EGF_Baseline":"1.07"},{"ID":"FBgn0010501","EGF_Baseline":"-0.5"},{"ID":"FBgn0004581","EGF_Baseline":"1.4"},{"ID":"FBgn0031276","EGF_Baseline":"-1.19"},{"ID":"FBgn0035528","EGF_Baseline":"2.06"},{"ID":"FBgn0000052","EGF_Baseline":"2.01"},{"ID":"FBgn0050055","EGF_Baseline":"1.09"},{"ID":"FBgn0031946","EGF_Baseline":"-0.94"},{"ID":"FBgn0032080","EGF_Baseline":"-0.51"},{"ID":"FBgn0053137","EGF_Baseline":"-1.32"},{"ID":"FBgn0030775","EGF_Baseline":"11.54"},{"ID":"FBgn0034681","EGF_Baseline":"0.21"},{"ID":"FBgn0038902","EGF_Baseline":"-0.83"},{"ID":"FBgn0039203","EGF_Baseline":"-0.05"},{"ID":"FBgn0039977","EGF_Baseline":"1.88"},{"ID":"FBgn0025582","EGF_Baseline":"3.98"},{"ID":"FBgn0032949","EGF_Baseline":"0.35"},{"ID":"FBgn0038928","EGF_Baseline":"-0.68"},{"ID":"FBgn0035918","EGF_Baseline":"-0.23"},{"ID":"FBgn0036934","EGF_Baseline":"-2.05"},{"ID":"FBgn0023130","EGF_Baseline":"-1.16"},{"ID":"FBgn0032504","EGF_Baseline":"0.88"},{"ID":"FBgn0038271","EGF_Baseline":"-0.88"},{"ID":"FBgn0032916","EGF_Baseline":"1.07"},{"ID":"FBgn0067407","EGF_Baseline":"-1.04"},{"ID":"FBgn0034398","EGF_Baseline":"-0.61"},{"ID":"FBgn0035624","EGF_Baseline":"0.57"},{"ID":"FBgn0034866","EGF_Baseline":"-1.14"},{"ID":"FBgn0051436","EGF_Baseline":"1.56"},{"ID":"FBgn0030500","EGF_Baseline":"-2.57"},{"ID":"FBgn0031417","EGF_Baseline":"-0.5"},{"ID":"FBgn0014073","EGF_Baseline":"0.38"},{"ID":"FBgn0029993","EGF_Baseline":"-1.02"},{"ID":"FBgn0035218","EGF_Baseline":"0.71"},{"ID":"FBgn0001981","EGF_Baseline":"-1.07"},{"ID":"FBgn0034291","EGF_Baseline":"-1.84"},{"ID":"FBgn0010531","EGF_Baseline":"-0.83"},{"ID":"FBgn0039677","EGF_Baseline":"-1.25"},{"ID":"FBgn0036851","EGF_Baseline":"0.39"},{"ID":"FBgn0051267","EGF_Baseline":"0.28"},{"ID":"FBgn0032368","EGF_Baseline":"0.46"},{"ID":"FBgn0030584","EGF_Baseline":"-1.67"},{"ID":"FBgn0023169","EGF_Baseline":"0.84"},{"ID":"FBgn0030443","EGF_Baseline":"0.66"},{"ID":"FBgn0035008","EGF_Baseline":"-0.32"},{"ID":"FBgn0030403","EGF_Baseline":"-0.41"},{"ID":"FBgn0001128","EGF_Baseline":"-1.6"},{"ID":"FBgn0250846","EGF_Baseline":"-1.2"},{"ID":"FBgn0015609","EGF_Baseline":"1.07"},{"ID":"FBgn0259994","EGF_Baseline":"-1.21"},{"ID":"FBgn0035011","EGF_Baseline":"-1.12"},{"ID":"FBgn0033063","EGF_Baseline":"0.78"},{"ID":"FBgn0032895","EGF_Baseline":"-0.23"},{"ID":"FBgn0031141","EGF_Baseline":"0.49"},{"ID":"FBgn0040069","EGF_Baseline":"-0.93"},{"ID":"FBgn0033471","EGF_Baseline":"0.7"},{"ID":"FBgn0035591","EGF_Baseline":"-0.3"},{"ID":"FBgn0036822","EGF_Baseline":"-0.46"},{"ID":"FBgn0028530","EGF_Baseline":"-0.35"},{"ID":"FBgn0026136","EGF_Baseline":"0.57"},{"ID":"FBgn0037356","EGF_Baseline":"1.14"},{"ID":"FBgn0038214","EGF_Baseline":"-1.86"},{"ID":"FBgn0042110","EGF_Baseline":"1.49"},{"ID":"FBgn0034202","EGF_Baseline":"-1.32"}] jc-1.17.3/tests/fixtures/generic/csv-flyrna.json000066400000000000000000021022461415226333200216150ustar00rootroot00000000000000[{"ID": "FBgn0029994", "EGF_Baseline": "-1.25"}, {"ID": "FBgn0037191", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0036810", "EGF_Baseline": "2.08"}, {"ID": "FBgn0033320", "EGF_Baseline": "1.15"}, {"ID": "FBgn0051156", "EGF_Baseline": "-1.77"}, {"ID": "FBgn0004635", "EGF_Baseline": "-0.77"}, {"ID": "FBgn0260646", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0038397", "EGF_Baseline": "0.04"}, {"ID": "FBgn0010583", "EGF_Baseline": "-0.77"}, {"ID": "FBgn0025583", "EGF_Baseline": "-2.18"}, {"ID": "FBgn0032906", "EGF_Baseline": "-1.63"}, {"ID": "FBgn0031321", "EGF_Baseline": "0.57"}, {"ID": "FBgn0052568", "EGF_Baseline": "0.69"}, {"ID": "FBgn0030674", "EGF_Baseline": "-0.45"}, {"ID": "FBgn0085397", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0038427", "EGF_Baseline": "-0.17"}, {"ID": "FBgn0033233", "EGF_Baseline": "-1.14"}, {"ID": "FBgn0033736", "EGF_Baseline": "1.12"}, {"ID": "FBgn0033495", "EGF_Baseline": "0.82"}, {"ID": "FBgn0020503", "EGF_Baseline": "0.06"}, {"ID": "FBgn0031885", "EGF_Baseline": "0.65"}, {"ID": "FBgn0067864", "EGF_Baseline": "1.14"}, {"ID": "FBgn0035785", "EGF_Baseline": "-1.26"}, {"ID": "FBgn0039673", "EGF_Baseline": "-1.24"}, {"ID": "FBgn0051717", "EGF_Baseline": "7.19"}, {"ID": "FBgn0030748", "EGF_Baseline": "0.7"}, {"ID": "FBgn0031751", "EGF_Baseline": "1.32"}, {"ID": "FBgn0039207", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0067312", "EGF_Baseline": "-0.52"}, {"ID": "FBgn0052816", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0040005", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0040477", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0029727", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0039328", "EGF_Baseline": "-1.79"}, {"ID": "FBgn0066084", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0000053", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0030038", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0052712", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0038481", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0034162", "EGF_Baseline": "-1.68"}, {"ID": "FBgn0005632", "EGF_Baseline": "0.76"}, {"ID": "FBgn0034860", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0259979", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0051140", "EGF_Baseline": "-1.63"}, {"ID": "FBgn0038959", "EGF_Baseline": "-0.63"}, {"ID": "FBgn0034138", "EGF_Baseline": "4.47"}, {"ID": "FBgn0003388", "EGF_Baseline": "0.59"}, {"ID": "FBgn0034945", "EGF_Baseline": "0.6"}, {"ID": "FBgn0033272", "EGF_Baseline": "-1.66"}, {"ID": "FBgn0050428", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0033556", "EGF_Baseline": "1.66"}, {"ID": "FBgn0027341", "EGF_Baseline": "0.18"}, {"ID": "FBgn0029606", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0261804", "EGF_Baseline": "0.38"}, {"ID": "FBgn0036465", "EGF_Baseline": "-1.1"}, {"ID": "FBgn0027610", "EGF_Baseline": "-0.04"}, {"ID": "FBgn0033997", "EGF_Baseline": "-0.42"}, {"ID": "FBgn0038834", "EGF_Baseline": "4.94"}, {"ID": "FBgn0027550", "EGF_Baseline": "-1.34"}, {"ID": "FBgn0030992", "EGF_Baseline": "-1.81"}, {"ID": "FBgn0037109", "EGF_Baseline": "-1.46"}, {"ID": "FBgn0039198", "EGF_Baseline": "-0.35"}, {"ID": "FBgn0019686", "EGF_Baseline": "1.29"}, {"ID": "FBgn0052251", "EGF_Baseline": "-1.49"}, {"ID": "FBgn0031987", "EGF_Baseline": "0.97"}, {"ID": "FBgn0034548", "EGF_Baseline": "-1.8"}, {"ID": "FBgn0053217", "EGF_Baseline": "-2.01"}, {"ID": "FBgn0038092", "EGF_Baseline": "2.27"}, {"ID": "FBgn0053627", "EGF_Baseline": "-0.24"}, {"ID": "FBgn0037010", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0037895", "EGF_Baseline": "1.46"}, {"ID": "FBgn0034477", "EGF_Baseline": "0.76"}, {"ID": "FBgn0029705", "EGF_Baseline": "0.48"}, {"ID": "FBgn0013772", "EGF_Baseline": "0.82"}, {"ID": "FBgn0038437", "EGF_Baseline": "0.19"}, {"ID": "FBgn0053178", "EGF_Baseline": "0.31"}, {"ID": "FBgn0027559", "EGF_Baseline": "0.79"}, {"ID": "FBgn0038389", "EGF_Baseline": "-1.8"}, {"ID": "FBgn0031426", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0040784", "EGF_Baseline": "0.95"}, {"ID": "FBgn0001187", "EGF_Baseline": "1.42"}, {"ID": "FBgn0052450", "EGF_Baseline": "-0.36"}, {"ID": "FBgn0028671", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0015614", "EGF_Baseline": "2.86"}, {"ID": "FBgn0037009", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0032359", "EGF_Baseline": "-0.24"}, {"ID": "FBgn0028717", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0032450", "EGF_Baseline": "0.92"}, {"ID": "FBgn0033327", "EGF_Baseline": "0.82"}, {"ID": "FBgn0051820", "EGF_Baseline": "-1.26"}, {"ID": "FBgn0015773", "EGF_Baseline": "-1.52"}, {"ID": "FBgn0020299", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0034537", "EGF_Baseline": "0.5"}, {"ID": "FBgn0030286", "EGF_Baseline": "1.12"}, {"ID": "FBgn0050469", "EGF_Baseline": "0.17"}, {"ID": "FBgn0260745", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0037472", "EGF_Baseline": "-0.17"}, {"ID": "FBgn0051054", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0031127", "EGF_Baseline": "-0.44"}, {"ID": "FBgn0051933", "EGF_Baseline": "0.65"}, {"ID": "FBgn0029133", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0260986", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0030503", "EGF_Baseline": "1.52"}, {"ID": "FBgn0028491", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0039359", "EGF_Baseline": "2.76"}, {"ID": "FBgn0030447", "EGF_Baseline": "0.68"}, {"ID": "FBgn0000241", "EGF_Baseline": "-1.04"}, {"ID": "FBgn0083985", "EGF_Baseline": "-1.97"}, {"ID": "FBgn0030855", "EGF_Baseline": "0.18"}, {"ID": "FBgn0261241", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0015268", "EGF_Baseline": "-0.42"}, {"ID": "FBgn0033907", "EGF_Baseline": "0.6"}, {"ID": "FBgn0032001", "EGF_Baseline": "1.2"}, {"ID": "FBgn0052758", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0032208", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0003742", "EGF_Baseline": "0.79"}, {"ID": "FBgn0002121", "EGF_Baseline": "-0.22"}, {"ID": "FBgn0010217", "EGF_Baseline": "1.29"}, {"ID": "FBgn0037042", "EGF_Baseline": "0.89"}, {"ID": "FBgn0035812", "EGF_Baseline": "0.41"}, {"ID": "FBgn0032940", "EGF_Baseline": "-2.26"}, {"ID": "FBgn0040377", "EGF_Baseline": "-1.84"}, {"ID": "FBgn0011834", "EGF_Baseline": "0.53"}, {"ID": "FBgn0039684", "EGF_Baseline": "2.03"}, {"ID": "FBgn0033392", "EGF_Baseline": "0.3"}, {"ID": "FBgn0026427", "EGF_Baseline": "0.65"}, {"ID": "FBgn0063491", "EGF_Baseline": "-0.54"}, {"ID": "FBgn0037970", "EGF_Baseline": "-0.35"}, {"ID": "FBgn0037648", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0033154", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0045499", "EGF_Baseline": "1.74"}, {"ID": "FBgn0259184", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0031822", "EGF_Baseline": "1.51"}, {"ID": "FBgn0034543", "EGF_Baseline": "-0.12"}, {"ID": "FBgn0036731", "EGF_Baseline": "-1.33"}, {"ID": "FBgn0036849", "EGF_Baseline": "-0.37"}, {"ID": "FBgn0036825", "EGF_Baseline": "2.35"}, {"ID": "FBgn0031109", "EGF_Baseline": "1.14"}, {"ID": "FBgn0030990", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0034655", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0005617", "EGF_Baseline": "-2.45"}, {"ID": "FBgn0030764", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0259173", "EGF_Baseline": "1.7"}, {"ID": "FBgn0052457", "EGF_Baseline": "-2.3"}, {"ID": "FBgn0036212", "EGF_Baseline": "1.31"}, {"ID": "FBgn0023530", "EGF_Baseline": "-1.23"}, {"ID": "FBgn0027514", "EGF_Baseline": "-0.34"}, {"ID": "FBgn0044811", "EGF_Baseline": "-2.19"}, {"ID": "FBgn0032445", "EGF_Baseline": "1.49"}, {"ID": "FBgn0036135", "EGF_Baseline": "-1.23"}, {"ID": "FBgn0053630", "EGF_Baseline": "-0.84"}, {"ID": "FBgn0030586", "EGF_Baseline": "2.18"}, {"ID": "FBgn0026313", "EGF_Baseline": "-0.5"}, {"ID": "FBgn0031263", "EGF_Baseline": "-1.04"}, {"ID": "FBgn0032633", "EGF_Baseline": "0.56"}, {"ID": "FBgn0037590", "EGF_Baseline": "-1.25"}, {"ID": "FBgn0036618", "EGF_Baseline": "-1.44"}, {"ID": "FBgn0047338", "EGF_Baseline": "-0.43"}, {"ID": "FBgn0015765", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0039188", "EGF_Baseline": "1.81"}, {"ID": "FBgn0040812", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0028399", "EGF_Baseline": "0.32"}, {"ID": "FBgn0250907", "EGF_Baseline": "0.86"}, {"ID": "FBgn0260767", "EGF_Baseline": "0.79"}, {"ID": "FBgn0051106", "EGF_Baseline": "-0.07"}, {"ID": "FBgn0011576", "EGF_Baseline": "0.42"}, {"ID": "FBgn0035542", "EGF_Baseline": "-1.61"}, {"ID": "FBgn0032626", "EGF_Baseline": "0.17"}, {"ID": "FBgn0053494", "EGF_Baseline": "-1.15"}, {"ID": "FBgn0033434", "EGF_Baseline": "-0.38"}, {"ID": "FBgn0039797", "EGF_Baseline": "-1"}, {"ID": "FBgn0040625", "EGF_Baseline": "1.81"}, {"ID": "FBgn0034106", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0036124", "EGF_Baseline": "-1.5"}, {"ID": "FBgn0005634", "EGF_Baseline": "1.55"}, {"ID": "FBgn0053937", "EGF_Baseline": "-2.17"}, {"ID": "FBgn0003462", "EGF_Baseline": "0.63"}, {"ID": "FBgn0086768", "EGF_Baseline": "0.41"}, {"ID": "FBgn0037862", "EGF_Baseline": "1.36"}, {"ID": "FBgn0033888", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0037260", "EGF_Baseline": "1.63"}, {"ID": "FBgn0003731", "EGF_Baseline": "-8.29"}, {"ID": "FBgn0038639", "EGF_Baseline": "-1.37"}, {"ID": "FBgn0036615", "EGF_Baseline": "-0.98"}, {"ID": "FBgn0086378", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0031097", "EGF_Baseline": "-1.34"}, {"ID": "FBgn0038542", "EGF_Baseline": "-1.34"}, {"ID": "FBgn0028425", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0029857", "EGF_Baseline": "-0.26"}, {"ID": "FBgn0004875", "EGF_Baseline": "0.66"}, {"ID": "FBgn0051648", "EGF_Baseline": "-1.89"}, {"ID": "FBgn0035928", "EGF_Baseline": "0.22"}, {"ID": "FBgn0261508", "EGF_Baseline": "1"}, {"ID": "FBgn0051314", "EGF_Baseline": "1"}, {"ID": "FBgn0034440", "EGF_Baseline": "-1.55"}, {"ID": "FBgn0031851", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0029877", "EGF_Baseline": "-0.84"}, {"ID": "FBgn0261596", "EGF_Baseline": "0.9"}, {"ID": "FBgn0035517", "EGF_Baseline": "0.78"}, {"ID": "FBgn0030027", "EGF_Baseline": "1.07"}, {"ID": "FBgn0035823", "EGF_Baseline": "0.98"}, {"ID": "FBgn0011660", "EGF_Baseline": "-1.82"}, {"ID": "FBgn0032170", "EGF_Baseline": "-1.48"}, {"ID": "FBgn0025608", "EGF_Baseline": "-1.22"}, {"ID": "FBgn0039877", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0260397", "EGF_Baseline": "-0.05"}, {"ID": "FBgn0035360", "EGF_Baseline": "0.46"}, {"ID": "FBgn0033388", "EGF_Baseline": "-1.55"}, {"ID": "FBgn0038927", "EGF_Baseline": "1.14"}, {"ID": "FBgn0037431", "EGF_Baseline": "0.68"}, {"ID": "FBgn0033337", "EGF_Baseline": "1.25"}, {"ID": "FBgn0028542", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0030833", "EGF_Baseline": "0.56"}, {"ID": "FBgn0004588", "EGF_Baseline": "-0.72"}, {"ID": "FBgn0261789", "EGF_Baseline": "3.75"}, {"ID": "FBgn0034295", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0036772", "EGF_Baseline": "-0.49"}, {"ID": "FBgn0031782", "EGF_Baseline": "-0.1"}, {"ID": "FBgn0030514", "EGF_Baseline": "0.84"}, {"ID": "FBgn0036752", "EGF_Baseline": "-0.39"}, {"ID": "FBgn0011770", "EGF_Baseline": "-0.27"}, {"ID": "FBgn0051195", "EGF_Baseline": "0.29"}, {"ID": "FBgn0050115", "EGF_Baseline": "-1.21"}, {"ID": "FBgn0037870", "EGF_Baseline": "0.54"}, {"ID": "FBgn0052392", "EGF_Baseline": "-1.22"}, {"ID": "FBgn0032343", "EGF_Baseline": "-0.42"}, {"ID": "FBgn0031562", "EGF_Baseline": "1.56"}, {"ID": "FBgn0000157", "EGF_Baseline": "0.96"}, {"ID": "FBgn0038423", "EGF_Baseline": "1.06"}, {"ID": "FBgn0034634", "EGF_Baseline": "0.44"}, {"ID": "FBgn0040279", "EGF_Baseline": "-1.59"}, {"ID": "FBgn0004456", "EGF_Baseline": "2.08"}, {"ID": "FBgn0015754", "EGF_Baseline": "0.58"}, {"ID": "FBgn0034867", "EGF_Baseline": "-1.7"}, {"ID": "FBgn0026398", "EGF_Baseline": "1.96"}, {"ID": "FBgn0002917", "EGF_Baseline": "-1.58"}, {"ID": "FBgn0051675", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0030375", "EGF_Baseline": "0.81"}, {"ID": "FBgn0086371", "EGF_Baseline": "1.09"}, {"ID": "FBgn0036936", "EGF_Baseline": "-0.45"}, {"ID": "FBgn0035932", "EGF_Baseline": "-0.59"}, {"ID": "FBgn0034345", "EGF_Baseline": "0.63"}, {"ID": "FBgn0041235", "EGF_Baseline": "-1.53"}, {"ID": "FBgn0002873", "EGF_Baseline": "-1.2"}, {"ID": "FBgn0029657", "EGF_Baseline": "1.07"}, {"ID": "FBgn0052595", "EGF_Baseline": "1.91"}, {"ID": "FBgn0033310", "EGF_Baseline": "0.87"}, {"ID": "FBgn0039739", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0051665", "EGF_Baseline": "-1.17"}, {"ID": "FBgn0037143", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0001218", "EGF_Baseline": "4.68"}, {"ID": "FBgn0032974", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0030570", "EGF_Baseline": "-0.33"}, {"ID": "FBgn0259749", "EGF_Baseline": "1.22"}, {"ID": "FBgn0038586", "EGF_Baseline": "1.14"}, {"ID": "FBgn0033138", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0036759", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0001319", "EGF_Baseline": "0.92"}, {"ID": "FBgn0038621", "EGF_Baseline": "1.71"}, {"ID": "FBgn0029158", "EGF_Baseline": "0.6"}, {"ID": "FBgn0001974", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0014075", "EGF_Baseline": "0.13"}, {"ID": "FBgn0038721", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0039873", "EGF_Baseline": "-0.63"}, {"ID": "FBgn0034050", "EGF_Baseline": "0.55"}, {"ID": "FBgn0026666", "EGF_Baseline": "-1.7"}, {"ID": "FBgn0030778", "EGF_Baseline": "-1.62"}, {"ID": "FBgn0026753", "EGF_Baseline": "1.94"}, {"ID": "FBgn0040099", "EGF_Baseline": "-1.16"}, {"ID": "FBgn0031473", "EGF_Baseline": "-0.17"}, {"ID": "FBgn0033167", "EGF_Baseline": "-1.36"}, {"ID": "FBgn0026369", "EGF_Baseline": "0.19"}, {"ID": "FBgn0039283", "EGF_Baseline": "0.51"}, {"ID": "FBgn0037000", "EGF_Baseline": "-1.49"}, {"ID": "FBgn0036066", "EGF_Baseline": "-0.77"}, {"ID": "FBgn0050480", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0085390", "EGF_Baseline": "2"}, {"ID": "FBgn0036139", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0040694", "EGF_Baseline": "-1.31"}, {"ID": "FBgn0001995", "EGF_Baseline": "-0.37"}, {"ID": "FBgn0030573", "EGF_Baseline": "-1.4"}, {"ID": "FBgn0039723", "EGF_Baseline": "2.2"}, {"ID": "FBgn0261572", "EGF_Baseline": "-1.34"}, {"ID": "FBgn0035028", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0085479", "EGF_Baseline": "1.29"}, {"ID": "FBgn0064912", "EGF_Baseline": "0.52"}, {"ID": "FBgn0034186", "EGF_Baseline": "0.67"}, {"ID": "FBgn0036414", "EGF_Baseline": "0.7"}, {"ID": "FBgn0034666", "EGF_Baseline": "1.6"}, {"ID": "FBgn0028686", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0036142", "EGF_Baseline": "0.15"}, {"ID": "FBgn0038989", "EGF_Baseline": "-1.56"}, {"ID": "FBgn0034976", "EGF_Baseline": "-1.34"}, {"ID": "FBgn0038347", "EGF_Baseline": "0.83"}, {"ID": "FBgn0025697", "EGF_Baseline": "1.43"}, {"ID": "FBgn0026318", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0028470", "EGF_Baseline": "-1.22"}, {"ID": "FBgn0037741", "EGF_Baseline": "0.48"}, {"ID": "FBgn0030999", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0039861", "EGF_Baseline": "-1.72"}, {"ID": "FBgn0259982", "EGF_Baseline": "-0.32"}, {"ID": "FBgn0051774", "EGF_Baseline": "-2.72"}, {"ID": "FBgn0050496", "EGF_Baseline": "-1.64"}, {"ID": "FBgn0032149", "EGF_Baseline": "-1.65"}, {"ID": "FBgn0260766", "EGF_Baseline": "0.3"}, {"ID": "FBgn0037992", "EGF_Baseline": "0.39"}, {"ID": "FBgn0039249", "EGF_Baseline": "-1.31"}, {"ID": "FBgn0051627", "EGF_Baseline": "0.51"}, {"ID": "FBgn0033931", "EGF_Baseline": "0.21"}, {"ID": "FBgn0030692", "EGF_Baseline": "-0.21"}, {"ID": "FBgn0035014", "EGF_Baseline": "0.75"}, {"ID": "FBgn0036667", "EGF_Baseline": "1.19"}, {"ID": "FBgn0052068", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0020766", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0032897", "EGF_Baseline": "0.84"}, {"ID": "FBgn0036173", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0031419", "EGF_Baseline": "-0.65"}, {"ID": "FBgn0086695", "EGF_Baseline": "0.51"}, {"ID": "FBgn0035059", "EGF_Baseline": "-1.25"}, {"ID": "FBgn0014848", "EGF_Baseline": "-1.5"}, {"ID": "FBgn0031643", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0010194", "EGF_Baseline": "0.34"}, {"ID": "FBgn0034592", "EGF_Baseline": "0.24"}, {"ID": "FBgn0031315", "EGF_Baseline": "-1.33"}, {"ID": "FBgn0053348", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0036780", "EGF_Baseline": "-0.63"}, {"ID": "FBgn0069242", "EGF_Baseline": "-1.67"}, {"ID": "FBgn0040074", "EGF_Baseline": "-1.24"}, {"ID": "FBgn0050383", "EGF_Baseline": "1.65"}, {"ID": "FBgn0033058", "EGF_Baseline": "1.12"}, {"ID": "FBgn0038709", "EGF_Baseline": "-1.53"}, {"ID": "FBgn0029925", "EGF_Baseline": "0.13"}, {"ID": "FBgn0250825", "EGF_Baseline": "0.91"}, {"ID": "FBgn0031530", "EGF_Baseline": "-1.91"}, {"ID": "FBgn0260658", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0058354", "EGF_Baseline": "0.99"}, {"ID": "FBgn0031468", "EGF_Baseline": "1.22"}, {"ID": "FBgn0035641", "EGF_Baseline": "-1.5"}, {"ID": "FBgn0083979", "EGF_Baseline": "-1.04"}, {"ID": "FBgn0050016", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0034732", "EGF_Baseline": "-1.95"}, {"ID": "FBgn0039238", "EGF_Baseline": "0.89"}, {"ID": "FBgn0030837", "EGF_Baseline": "1.35"}, {"ID": "FBgn0051635", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0052628", "EGF_Baseline": "1.56"}, {"ID": "FBgn0030944", "EGF_Baseline": "0.86"}, {"ID": "FBgn0037848", "EGF_Baseline": "-0.12"}, {"ID": "FBgn0040251", "EGF_Baseline": "0.89"}, {"ID": "FBgn0035538", "EGF_Baseline": "1.32"}, {"ID": "FBgn0010414", "EGF_Baseline": "-0.44"}, {"ID": "FBgn0034151", "EGF_Baseline": "-1.43"}, {"ID": "FBgn0032058", "EGF_Baseline": "-1.7"}, {"ID": "FBgn0001125", "EGF_Baseline": "-1.49"}, {"ID": "FBgn0005666", "EGF_Baseline": "-1.79"}, {"ID": "FBgn0027054", "EGF_Baseline": "-0.27"}, {"ID": "FBgn0031279", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0050354", "EGF_Baseline": "0.44"}, {"ID": "FBgn0028689", "EGF_Baseline": "2.58"}, {"ID": "FBgn0086757", "EGF_Baseline": "0.58"}, {"ID": "FBgn0260750", "EGF_Baseline": "1.09"}, {"ID": "FBgn0047351", "EGF_Baseline": "-1.76"}, {"ID": "FBgn0259938", "EGF_Baseline": "-2.4"}, {"ID": "FBgn0015271", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0020416", "EGF_Baseline": "0.66"}, {"ID": "FBgn0020018", "EGF_Baseline": "0.35"}, {"ID": "FBgn0038432", "EGF_Baseline": "0.29"}, {"ID": "FBgn0024319", "EGF_Baseline": "2.79"}, {"ID": "FBgn0034259", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0034270", "EGF_Baseline": "-0.63"}, {"ID": "FBgn0052100", "EGF_Baseline": "0.85"}, {"ID": "FBgn0052110", "EGF_Baseline": "0.32"}, {"ID": "FBgn0032859", "EGF_Baseline": "0.96"}, {"ID": "FBgn0025878", "EGF_Baseline": "-0.04"}, {"ID": "FBgn0028983", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0037019", "EGF_Baseline": "0.34"}, {"ID": "FBgn0036491", "EGF_Baseline": "1.56"}, {"ID": "FBgn0032111", "EGF_Baseline": "-1.62"}, {"ID": "FBgn0039835", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0085415", "EGF_Baseline": "-1.34"}, {"ID": "FBgn0035558", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0030326", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0053757", "EGF_Baseline": "1.41"}, {"ID": "FBgn0014879", "EGF_Baseline": "0.95"}, {"ID": "FBgn0039747", "EGF_Baseline": "2.07"}, {"ID": "FBgn0053784", "EGF_Baseline": "-1.45"}, {"ID": "FBgn0038201", "EGF_Baseline": "0.62"}, {"ID": "FBgn0050476", "EGF_Baseline": "-0.49"}, {"ID": "FBgn0003865", "EGF_Baseline": "0.97"}, {"ID": "FBgn0034889", "EGF_Baseline": "-1.17"}, {"ID": "FBgn0030793", "EGF_Baseline": "0.56"}, {"ID": "FBgn0023545", "EGF_Baseline": "0.7"}, {"ID": "FBgn0023172", "EGF_Baseline": "-0.2"}, {"ID": "FBgn0261276", "EGF_Baseline": "-1.26"}, {"ID": "FBgn0003087", "EGF_Baseline": "2.59"}, {"ID": "FBgn0034967", "EGF_Baseline": "-0.12"}, {"ID": "FBgn0038238", "EGF_Baseline": "-0.5"}, {"ID": "FBgn0025366", "EGF_Baseline": "0.64"}, {"ID": "FBgn0036227", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0030578", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0037238", "EGF_Baseline": "0.73"}, {"ID": "FBgn0053325", "EGF_Baseline": "0.51"}, {"ID": "FBgn0032746", "EGF_Baseline": "-1.4"}, {"ID": "FBgn0036208", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0085387", "EGF_Baseline": "1.84"}, {"ID": "FBgn0024912", "EGF_Baseline": "0.82"}, {"ID": "FBgn0030814", "EGF_Baseline": "-1.04"}, {"ID": "FBgn0037668", "EGF_Baseline": "1.55"}, {"ID": "FBgn0031529", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0040153", "EGF_Baseline": "0.87"}, {"ID": "FBgn0032869", "EGF_Baseline": "1.25"}, {"ID": "FBgn0034389", "EGF_Baseline": "-1.62"}, {"ID": "FBgn0033373", "EGF_Baseline": "0.71"}, {"ID": "FBgn0024909", "EGF_Baseline": "-1.85"}, {"ID": "FBgn0034987", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0036777", "EGF_Baseline": "0.64"}, {"ID": "FBgn0001222", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0033813", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0033543", "EGF_Baseline": "1.57"}, {"ID": "FBgn0003257", "EGF_Baseline": "-2.3"}, {"ID": "FBgn0039443", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0040066", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0260944", "EGF_Baseline": "0.37"}, {"ID": "FBgn0043577", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0039338", "EGF_Baseline": "-1.97"}, {"ID": "FBgn0005642", "EGF_Baseline": "-1.56"}, {"ID": "FBgn0017578", "EGF_Baseline": "-0.17"}, {"ID": "FBgn0039112", "EGF_Baseline": "-0.28"}, {"ID": "FBgn0051718", "EGF_Baseline": "1.1"}, {"ID": "FBgn0030659", "EGF_Baseline": "-0.84"}, {"ID": "FBgn0085203", "EGF_Baseline": "-1.58"}, {"ID": "FBgn0024984", "EGF_Baseline": "-0.39"}, {"ID": "FBgn0010704", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0054034", "EGF_Baseline": "-0.3"}, {"ID": "FBgn0033190", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0032474", "EGF_Baseline": "-0.25"}, {"ID": "FBgn0033079", "EGF_Baseline": "0.64"}, {"ID": "FBgn0037666", "EGF_Baseline": "1.21"}, {"ID": "FBgn0000180", "EGF_Baseline": "-1.28"}, {"ID": "FBgn0036230", "EGF_Baseline": "0.7"}, {"ID": "FBgn0015278", "EGF_Baseline": "-0.09"}, {"ID": "FBgn0037447", "EGF_Baseline": "1"}, {"ID": "FBgn0051957", "EGF_Baseline": "-1.35"}, {"ID": "FBgn0024555", "EGF_Baseline": "1.07"}, {"ID": "FBgn0010381", "EGF_Baseline": "-0.59"}, {"ID": "FBgn0032405", "EGF_Baseline": "-1.56"}, {"ID": "FBgn0039640", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0085484", "EGF_Baseline": "-1.55"}, {"ID": "FBgn0031650", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0035407", "EGF_Baseline": "0.85"}, {"ID": "FBgn0031249", "EGF_Baseline": "0.41"}, {"ID": "FBgn0034639", "EGF_Baseline": "-0.31"}, {"ID": "FBgn0030030", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0260939", "EGF_Baseline": "1.53"}, {"ID": "FBgn0036891", "EGF_Baseline": "1.28"}, {"ID": "FBgn0032884", "EGF_Baseline": "-1.28"}, {"ID": "FBgn0033699", "EGF_Baseline": "3.19"}, {"ID": "FBgn0028402", "EGF_Baseline": "1.47"}, {"ID": "FBgn0036627", "EGF_Baseline": "0.09"}, {"ID": "FBgn0019957", "EGF_Baseline": "-2.85"}, {"ID": "FBgn0039628", "EGF_Baseline": "-1.56"}, {"ID": "FBgn0010379", "EGF_Baseline": "0.04"}, {"ID": "FBgn0085252", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0038286", "EGF_Baseline": "1.2"}, {"ID": "FBgn0031516", "EGF_Baseline": "-0.3"}, {"ID": "FBgn0033913", "EGF_Baseline": "1.14"}, {"ID": "FBgn0040629", "EGF_Baseline": "1.3"}, {"ID": "FBgn0032731", "EGF_Baseline": "-1.31"}, {"ID": "FBgn0054054", "EGF_Baseline": "1.2"}, {"ID": "FBgn0087040", "EGF_Baseline": "2.16"}, {"ID": "FBgn0035663", "EGF_Baseline": "7.47"}, {"ID": "FBgn0025634", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0026749", "EGF_Baseline": "-0.38"}, {"ID": "FBgn0052945", "EGF_Baseline": "1.7"}, {"ID": "FBgn0031500", "EGF_Baseline": "-1.11"}, {"ID": "FBgn0033206", "EGF_Baseline": "-1.11"}, {"ID": "FBgn0050127", "EGF_Baseline": "0.59"}, {"ID": "FBgn0034689", "EGF_Baseline": "0.7"}, {"ID": "FBgn0036427", "EGF_Baseline": "-1.94"}, {"ID": "FBgn0032229", "EGF_Baseline": "0.94"}, {"ID": "FBgn0050081", "EGF_Baseline": "1.09"}, {"ID": "FBgn0037417", "EGF_Baseline": "-1.78"}, {"ID": "FBgn0015575", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0042131", "EGF_Baseline": "-0.56"}, {"ID": "FBgn0039855", "EGF_Baseline": "-1.56"}, {"ID": "FBgn0030893", "EGF_Baseline": "0.71"}, {"ID": "FBgn0013997", "EGF_Baseline": "0.96"}, {"ID": "FBgn0027066", "EGF_Baseline": "0.79"}, {"ID": "FBgn0031068", "EGF_Baseline": "-1.52"}, {"ID": "FBgn0039597", "EGF_Baseline": "1.06"}, {"ID": "FBgn0038331", "EGF_Baseline": "1.01"}, {"ID": "FBgn0051104", "EGF_Baseline": "1.02"}, {"ID": "FBgn0035161", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0010100", "EGF_Baseline": "0.48"}, {"ID": "FBgn0022160", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0040653", "EGF_Baseline": "-1.28"}, {"ID": "FBgn0039434", "EGF_Baseline": "-1.62"}, {"ID": "FBgn0027070", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0037818", "EGF_Baseline": "1.29"}, {"ID": "FBgn0031308", "EGF_Baseline": "7.85"}, {"ID": "FBgn0033608", "EGF_Baseline": "0.6"}, {"ID": "FBgn0027791", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0034582", "EGF_Baseline": "-0.23"}, {"ID": "FBgn0036330", "EGF_Baseline": "-0.65"}, {"ID": "FBgn0000075", "EGF_Baseline": "-1.35"}, {"ID": "FBgn0039020", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0050401", "EGF_Baseline": "0.34"}, {"ID": "FBgn0031080", "EGF_Baseline": "0.54"}, {"ID": "FBgn0031003", "EGF_Baseline": "1.11"}, {"ID": "FBgn0051007", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0051921", "EGF_Baseline": "-0.41"}, {"ID": "FBgn0035710", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0017567", "EGF_Baseline": "-2"}, {"ID": "FBgn0002440", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0038847", "EGF_Baseline": "1.01"}, {"ID": "FBgn0038558", "EGF_Baseline": "0.47"}, {"ID": "FBgn0032036", "EGF_Baseline": "0.55"}, {"ID": "FBgn0011305", "EGF_Baseline": "0.9"}, {"ID": "FBgn0036959", "EGF_Baseline": "-2.07"}, {"ID": "FBgn0053294", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0033486", "EGF_Baseline": "0.41"}, {"ID": "FBgn0033225", "EGF_Baseline": "-1.54"}, {"ID": "FBgn0031398", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0032692", "EGF_Baseline": "-2"}, {"ID": "FBgn0025712", "EGF_Baseline": "0.6"}, {"ID": "FBgn0083949", "EGF_Baseline": "1.08"}, {"ID": "FBgn0030985", "EGF_Baseline": "-1.35"}, {"ID": "FBgn0038326", "EGF_Baseline": "-0.72"}, {"ID": "FBgn0028932", "EGF_Baseline": "0.36"}, {"ID": "FBgn0003071", "EGF_Baseline": "0.8"}, {"ID": "FBgn0039994", "EGF_Baseline": "-1.39"}, {"ID": "FBgn0032664", "EGF_Baseline": "-0.56"}, {"ID": "FBgn0042174", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0031522", "EGF_Baseline": "-0.07"}, {"ID": "FBgn0036952", "EGF_Baseline": "-0.34"}, {"ID": "FBgn0050065", "EGF_Baseline": "-1.49"}, {"ID": "FBgn0051473", "EGF_Baseline": "0.53"}, {"ID": "FBgn0001089", "EGF_Baseline": "1.43"}, {"ID": "FBgn0052694", "EGF_Baseline": "1.26"}, {"ID": "FBgn0034470", "EGF_Baseline": "1.52"}, {"ID": "FBgn0034158", "EGF_Baseline": "0.34"}, {"ID": "FBgn0039091", "EGF_Baseline": "-1.84"}, {"ID": "FBgn0036819", "EGF_Baseline": "2.19"}, {"ID": "FBgn0025469", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0000247", "EGF_Baseline": "2.16"}, {"ID": "FBgn0031244", "EGF_Baseline": "-1.24"}, {"ID": "FBgn0034455", "EGF_Baseline": "-0.23"}, {"ID": "FBgn0033994", "EGF_Baseline": "0.2"}, {"ID": "FBgn0051460", "EGF_Baseline": "-0.71"}, {"ID": "FBgn0052150", "EGF_Baseline": "-0.63"}, {"ID": "FBgn0050125", "EGF_Baseline": "-0.42"}, {"ID": "FBgn0039108", "EGF_Baseline": "-0.63"}, {"ID": "FBgn0052479", "EGF_Baseline": "-1.63"}, {"ID": "FBgn0038919", "EGF_Baseline": "0.84"}, {"ID": "FBgn0003250", "EGF_Baseline": "1.4"}, {"ID": "FBgn0021856", "EGF_Baseline": "0.54"}, {"ID": "FBgn0002778", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0034049", "EGF_Baseline": "-1.92"}, {"ID": "FBgn0039915", "EGF_Baseline": "1.86"}, {"ID": "FBgn0000299", "EGF_Baseline": "-0.65"}, {"ID": "FBgn0001989", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0261290", "EGF_Baseline": "-1.46"}, {"ID": "FBgn0027596", "EGF_Baseline": "1.32"}, {"ID": "FBgn0036795", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0045470", "EGF_Baseline": "-2.38"}, {"ID": "FBgn0037114", "EGF_Baseline": "0.9"}, {"ID": "FBgn0034420", "EGF_Baseline": "-1.26"}, {"ID": "FBgn0026388", "EGF_Baseline": "-1.87"}, {"ID": "FBgn0011674", "EGF_Baseline": "1.58"}, {"ID": "FBgn0031490", "EGF_Baseline": "-1.45"}, {"ID": "FBgn0086200", "EGF_Baseline": "0.62"}, {"ID": "FBgn0261794", "EGF_Baseline": "-0.52"}, {"ID": "FBgn0023095", "EGF_Baseline": "2.34"}, {"ID": "FBgn0053971", "EGF_Baseline": "0.23"}, {"ID": "FBgn0013685", "EGF_Baseline": "0.76"}, {"ID": "FBgn0051064", "EGF_Baseline": "2.48"}, {"ID": "FBgn0029664", "EGF_Baseline": "0.45"}, {"ID": "FBgn0036467", "EGF_Baseline": "0.7"}, {"ID": "FBgn0003082", "EGF_Baseline": "-1.68"}, {"ID": "FBgn0038681", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0033601", "EGF_Baseline": "-0.56"}, {"ID": "FBgn0040319", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0040234", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0031702", "EGF_Baseline": "1.46"}, {"ID": "FBgn0040056", "EGF_Baseline": "0.76"}, {"ID": "FBgn0005410", "EGF_Baseline": "-1.83"}, {"ID": "FBgn0038551", "EGF_Baseline": "0.74"}, {"ID": "FBgn0037515", "EGF_Baseline": "-1.26"}, {"ID": "FBgn0053639", "EGF_Baseline": "-1.97"}, {"ID": "FBgn0025628", "EGF_Baseline": "-1.15"}, {"ID": "FBgn0030622", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0003396", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0038102", "EGF_Baseline": "-1.61"}, {"ID": "FBgn0027108", "EGF_Baseline": "1.28"}, {"ID": "FBgn0040900", "EGF_Baseline": "1.25"}, {"ID": "FBgn0046685", "EGF_Baseline": "1.07"}, {"ID": "FBgn0031100", "EGF_Baseline": "-0.38"}, {"ID": "FBgn0030493", "EGF_Baseline": "0.82"}, {"ID": "FBgn0035839", "EGF_Baseline": "-0.91"}, {"ID": "FBgn0061196", "EGF_Baseline": "-0.37"}, {"ID": "FBgn0026389", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0083940", "EGF_Baseline": "1.23"}, {"ID": "FBgn0035553", "EGF_Baseline": "-1.3"}, {"ID": "FBgn0034839", "EGF_Baseline": "-1.31"}, {"ID": "FBgn0039929", "EGF_Baseline": "0.74"}, {"ID": "FBgn0022029", "EGF_Baseline": "-0.11"}, {"ID": "FBgn0032799", "EGF_Baseline": "1.21"}, {"ID": "FBgn0032601", "EGF_Baseline": "0.84"}, {"ID": "FBgn0039900", "EGF_Baseline": "-1.35"}, {"ID": "FBgn0039742", "EGF_Baseline": "1.25"}, {"ID": "FBgn0037792", "EGF_Baseline": "1.2"}, {"ID": "FBgn0031908", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0036646", "EGF_Baseline": "-1.73"}, {"ID": "FBgn0035334", "EGF_Baseline": "0.74"}, {"ID": "FBgn0037340", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0004045", "EGF_Baseline": "1.15"}, {"ID": "FBgn0001120", "EGF_Baseline": "0.52"}, {"ID": "FBgn0010926", "EGF_Baseline": "-1.15"}, {"ID": "FBgn0037082", "EGF_Baseline": "-0.4"}, {"ID": "FBgn0030189", "EGF_Baseline": "0.67"}, {"ID": "FBgn0016038", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0037634", "EGF_Baseline": "1.1"}, {"ID": "FBgn0032922", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0039101", "EGF_Baseline": "-1.52"}, {"ID": "FBgn0036727", "EGF_Baseline": "-0.65"}, {"ID": "FBgn0052835", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0015520", "EGF_Baseline": "-0.33"}, {"ID": "FBgn0035751", "EGF_Baseline": "-1.69"}, {"ID": "FBgn0005655", "EGF_Baseline": "1.71"}, {"ID": "FBgn0034617", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0026417", "EGF_Baseline": "0.81"}, {"ID": "FBgn0041709", "EGF_Baseline": "-0.12"}, {"ID": "FBgn0032439", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0002716", "EGF_Baseline": "0.39"}, {"ID": "FBgn0015316", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0086355", "EGF_Baseline": "0.92"}, {"ID": "FBgn0261881", "EGF_Baseline": "0.14"}, {"ID": "FBgn0033864", "EGF_Baseline": "0.39"}, {"ID": "FBgn0027587", "EGF_Baseline": "0.75"}, {"ID": "FBgn0000071", "EGF_Baseline": "1.72"}, {"ID": "FBgn0033983", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0038915", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0032805", "EGF_Baseline": "-2.1"}, {"ID": "FBgn0030629", "EGF_Baseline": "-1.5"}, {"ID": "FBgn0086605", "EGF_Baseline": "1.18"}, {"ID": "FBgn0260388", "EGF_Baseline": "-0.98"}, {"ID": "FBgn0034501", "EGF_Baseline": "2.96"}, {"ID": "FBgn0037315", "EGF_Baseline": "-2"}, {"ID": "FBgn0001301", "EGF_Baseline": "1.05"}, {"ID": "FBgn0044826", "EGF_Baseline": "2.51"}, {"ID": "FBgn0035888", "EGF_Baseline": "-0.98"}, {"ID": "FBgn0052107", "EGF_Baseline": "0.7"}, {"ID": "FBgn0030745", "EGF_Baseline": "0.84"}, {"ID": "FBgn0250834", "EGF_Baseline": "0.74"}, {"ID": "FBgn0033212", "EGF_Baseline": "-1.68"}, {"ID": "FBgn0022224", "EGF_Baseline": "-1.31"}, {"ID": "FBgn0260996", "EGF_Baseline": "0.47"}, {"ID": "FBgn0036527", "EGF_Baseline": "-0.25"}, {"ID": "FBgn0035122", "EGF_Baseline": "-0.54"}, {"ID": "FBgn0039310", "EGF_Baseline": "1.56"}, {"ID": "FBgn0037567", "EGF_Baseline": "1.81"}, {"ID": "FBgn0039260", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0038879", "EGF_Baseline": "0.5"}, {"ID": "FBgn0030593", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0040531", "EGF_Baseline": "-1.59"}, {"ID": "FBgn0034713", "EGF_Baseline": "0.34"}, {"ID": "FBgn0039467", "EGF_Baseline": "-0.91"}, {"ID": "FBgn0038448", "EGF_Baseline": "0.22"}, {"ID": "FBgn0038872", "EGF_Baseline": "0.19"}, {"ID": "FBgn0035799", "EGF_Baseline": "-1.54"}, {"ID": "FBgn0017418", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0086690", "EGF_Baseline": "1.16"}, {"ID": "FBgn0260991", "EGF_Baseline": "1.44"}, {"ID": "FBgn0033809", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0030098", "EGF_Baseline": "-1.43"}, {"ID": "FBgn0032055", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0037397", "EGF_Baseline": "0.58"}, {"ID": "FBgn0037721", "EGF_Baseline": "0.7"}, {"ID": "FBgn0031975", "EGF_Baseline": "0.63"}, {"ID": "FBgn0037976", "EGF_Baseline": "-1.46"}, {"ID": "FBgn0037203", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0016031", "EGF_Baseline": "-0.41"}, {"ID": "FBgn0034791", "EGF_Baseline": "1.11"}, {"ID": "FBgn0029669", "EGF_Baseline": "-1.44"}, {"ID": "FBgn0032457", "EGF_Baseline": "0.7"}, {"ID": "FBgn0036394", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0038150", "EGF_Baseline": "-0.77"}, {"ID": "FBgn0035473", "EGF_Baseline": "-0.31"}, {"ID": "FBgn0085423", "EGF_Baseline": "1.41"}, {"ID": "FBgn0023395", "EGF_Baseline": "-2.06"}, {"ID": "FBgn0053125", "EGF_Baseline": "0.8"}, {"ID": "FBgn0029647", "EGF_Baseline": "1.51"}, {"ID": "FBgn0030687", "EGF_Baseline": "1.3"}, {"ID": "FBgn0034066", "EGF_Baseline": "0.49"}, {"ID": "FBgn0001179", "EGF_Baseline": "-0.23"}, {"ID": "FBgn0028525", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0031804", "EGF_Baseline": "0.98"}, {"ID": "FBgn0031384", "EGF_Baseline": "-1.34"}, {"ID": "FBgn0035689", "EGF_Baseline": "-1.3"}, {"ID": "FBgn0000527", "EGF_Baseline": "-0.14"}, {"ID": "FBgn0032430", "EGF_Baseline": "0.48"}, {"ID": "FBgn0033784", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0035498", "EGF_Baseline": "0.36"}, {"ID": "FBgn0083969", "EGF_Baseline": "0.55"}, {"ID": "FBgn0014903", "EGF_Baseline": "0.47"}, {"ID": "FBgn0036239", "EGF_Baseline": "3.09"}, {"ID": "FBgn0033725", "EGF_Baseline": "-0.77"}, {"ID": "FBgn0035379", "EGF_Baseline": "0.54"}, {"ID": "FBgn0037603", "EGF_Baseline": "0.81"}, {"ID": "FBgn0003275", "EGF_Baseline": "6.63"}, {"ID": "FBgn0036495", "EGF_Baseline": "-1.17"}, {"ID": "FBgn0052117", "EGF_Baseline": "1.36"}, {"ID": "FBgn0028412", "EGF_Baseline": "-0.21"}, {"ID": "FBgn0034099", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0030234", "EGF_Baseline": "-0.56"}, {"ID": "FBgn0047205", "EGF_Baseline": "-1.66"}, {"ID": "FBgn0014465", "EGF_Baseline": "0.57"}, {"ID": "FBgn0035978", "EGF_Baseline": "0.92"}, {"ID": "FBgn0051544", "EGF_Baseline": "1.67"}, {"ID": "FBgn0038475", "EGF_Baseline": "-1.21"}, {"ID": "FBgn0031078", "EGF_Baseline": "0.42"}, {"ID": "FBgn0037728", "EGF_Baseline": "1.44"}, {"ID": "FBgn0037538", "EGF_Baseline": "1.11"}, {"ID": "FBgn0032929", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0030480", "EGF_Baseline": "1.04"}, {"ID": "FBgn0036111", "EGF_Baseline": "0.19"}, {"ID": "FBgn0020930", "EGF_Baseline": "0.85"}, {"ID": "FBgn0030719", "EGF_Baseline": "1.16"}, {"ID": "FBgn0040212", "EGF_Baseline": "0.52"}, {"ID": "FBgn0028507", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0032597", "EGF_Baseline": "-0.65"}, {"ID": "FBgn0039156", "EGF_Baseline": "-1.5"}, {"ID": "FBgn0039544", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0039765", "EGF_Baseline": "-1.75"}, {"ID": "FBgn0261587", "EGF_Baseline": "-1.43"}, {"ID": "FBgn0052085", "EGF_Baseline": "-0.91"}, {"ID": "FBgn0045477", "EGF_Baseline": "0.53"}, {"ID": "FBgn0035985", "EGF_Baseline": "-0.31"}, {"ID": "FBgn0031347", "EGF_Baseline": "0.75"}, {"ID": "FBgn0029766", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0036676", "EGF_Baseline": "-1.17"}, {"ID": "FBgn0036581", "EGF_Baseline": "2.89"}, {"ID": "FBgn0036403", "EGF_Baseline": "-1.11"}, {"ID": "FBgn0036940", "EGF_Baseline": "0.83"}, {"ID": "FBgn0040973", "EGF_Baseline": "2.67"}, {"ID": "FBgn0051015", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0004367", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0039887", "EGF_Baseline": "0.27"}, {"ID": "FBgn0034363", "EGF_Baseline": "1.15"}, {"ID": "FBgn0038088", "EGF_Baseline": "0.78"}, {"ID": "FBgn0025836", "EGF_Baseline": "-0.54"}, {"ID": "FBgn0033792", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0038890", "EGF_Baseline": "-1.73"}, {"ID": "FBgn0037035", "EGF_Baseline": "1.17"}, {"ID": "FBgn0038589", "EGF_Baseline": "-1.2"}, {"ID": "FBgn0035268", "EGF_Baseline": "0.9"}, {"ID": "FBgn0037552", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0033375", "EGF_Baseline": "0.6"}, {"ID": "FBgn0019886", "EGF_Baseline": "-0.52"}, {"ID": "FBgn0051462", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0033656", "EGF_Baseline": "0.51"}, {"ID": "FBgn0034842", "EGF_Baseline": "-1.8"}, {"ID": "FBgn0027493", "EGF_Baseline": "1.1"}, {"ID": "FBgn0032291", "EGF_Baseline": "0.54"}, {"ID": "FBgn0010278", "EGF_Baseline": "-2.13"}, {"ID": "FBgn0033349", "EGF_Baseline": "-1.71"}, {"ID": "FBgn0031050", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0035298", "EGF_Baseline": "0.42"}, {"ID": "FBgn0000422", "EGF_Baseline": "-1.86"}, {"ID": "FBgn0032812", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0036188", "EGF_Baseline": "-0.39"}, {"ID": "FBgn0033353", "EGF_Baseline": "-1.04"}, {"ID": "FBgn0036155", "EGF_Baseline": "0.22"}, {"ID": "FBgn0031389", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0029838", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0038849", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0030946", "EGF_Baseline": "0.69"}, {"ID": "FBgn0026713", "EGF_Baseline": "0.76"}, {"ID": "FBgn0038870", "EGF_Baseline": "-2.34"}, {"ID": "FBgn0259245", "EGF_Baseline": "-1.44"}, {"ID": "FBgn0038002", "EGF_Baseline": "1.49"}, {"ID": "FBgn0261673", "EGF_Baseline": "-2.21"}, {"ID": "FBgn0030889", "EGF_Baseline": "-0.81"}, {"ID": "FBgn0034288", "EGF_Baseline": "-1.31"}, {"ID": "FBgn0050076", "EGF_Baseline": "0.7"}, {"ID": "FBgn0038453", "EGF_Baseline": "-0.42"}, {"ID": "FBgn0036306", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0031722", "EGF_Baseline": "-0.31"}, {"ID": "FBgn0010109", "EGF_Baseline": "-0.91"}, {"ID": "FBgn0038143", "EGF_Baseline": "1.12"}, {"ID": "FBgn0033238", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0010825", "EGF_Baseline": "-0.33"}, {"ID": "FBgn0029738", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0036354", "EGF_Baseline": "0.9"}, {"ID": "FBgn0035449", "EGF_Baseline": "-1.28"}, {"ID": "FBgn0028743", "EGF_Baseline": "-0.25"}, {"ID": "FBgn0085458", "EGF_Baseline": "0.75"}, {"ID": "FBgn0033139", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0013810", "EGF_Baseline": "0.62"}, {"ID": "FBgn0027936", "EGF_Baseline": "4.63"}, {"ID": "FBgn0003360", "EGF_Baseline": "-1.55"}, {"ID": "FBgn0031571", "EGF_Baseline": "1.14"}, {"ID": "FBgn0032819", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0036896", "EGF_Baseline": "1.12"}, {"ID": "FBgn0065110", "EGF_Baseline": "-0.38"}, {"ID": "FBgn0003137", "EGF_Baseline": "1.21"}, {"ID": "FBgn0039810", "EGF_Baseline": "1.27"}, {"ID": "FBgn0030409", "EGF_Baseline": "-1.71"}, {"ID": "FBgn0037027", "EGF_Baseline": "-0.39"}, {"ID": "FBgn0003139", "EGF_Baseline": "0.07"}, {"ID": "FBgn0034709", "EGF_Baseline": "1.16"}, {"ID": "FBgn0051802", "EGF_Baseline": "0.79"}, {"ID": "FBgn0031738", "EGF_Baseline": "0.4"}, {"ID": "FBgn0036622", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0037549", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0035104", "EGF_Baseline": "-1.24"}, {"ID": "FBgn0015544", "EGF_Baseline": "-1.21"}, {"ID": "FBgn0000094", "EGF_Baseline": "-0.45"}, {"ID": "FBgn0030724", "EGF_Baseline": "1.84"}, {"ID": "FBgn0261293", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0023516", "EGF_Baseline": "0.52"}, {"ID": "FBgn0004381", "EGF_Baseline": "0.45"}, {"ID": "FBgn0036017", "EGF_Baseline": "-1.25"}, {"ID": "FBgn0035583", "EGF_Baseline": "-1.6"}, {"ID": "FBgn0030096", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0039958", "EGF_Baseline": "0.26"}, {"ID": "FBgn0036340", "EGF_Baseline": "-0.25"}, {"ID": "FBgn0032645", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0036734", "EGF_Baseline": "-1.79"}, {"ID": "FBgn0033715", "EGF_Baseline": "-1.47"}, {"ID": "FBgn0053140", "EGF_Baseline": "0.21"}, {"ID": "FBgn0031693", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0029945", "EGF_Baseline": "-1.31"}, {"ID": "FBgn0034281", "EGF_Baseline": "0.48"}, {"ID": "FBgn0051800", "EGF_Baseline": "-1.63"}, {"ID": "FBgn0260872", "EGF_Baseline": "0.2"}, {"ID": "FBgn0034391", "EGF_Baseline": "-1.5"}, {"ID": "FBgn0019660", "EGF_Baseline": "0.56"}, {"ID": "FBgn0052311", "EGF_Baseline": "-1.67"}, {"ID": "FBgn0030260", "EGF_Baseline": "0.82"}, {"ID": "FBgn0031462", "EGF_Baseline": "0.24"}, {"ID": "FBgn0035960", "EGF_Baseline": "0.28"}, {"ID": "FBgn0034360", "EGF_Baseline": "0.41"}, {"ID": "FBgn0035136", "EGF_Baseline": "0.78"}, {"ID": "FBgn0033184", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0036470", "EGF_Baseline": "1.37"}, {"ID": "FBgn0030989", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0032969", "EGF_Baseline": "-2.01"}, {"ID": "FBgn0001092", "EGF_Baseline": "1.2"}, {"ID": "FBgn0041605", "EGF_Baseline": "1.29"}, {"ID": "FBgn0031903", "EGF_Baseline": "-1.14"}, {"ID": "FBgn0031700", "EGF_Baseline": "0.88"}, {"ID": "FBgn0039732", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0037483", "EGF_Baseline": "1.55"}, {"ID": "FBgn0004896", "EGF_Baseline": "0.4"}, {"ID": "FBgn0038608", "EGF_Baseline": "-0.81"}, {"ID": "FBgn0042138", "EGF_Baseline": "-0.29"}, {"ID": "FBgn0031421", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0030248", "EGF_Baseline": "-0.54"}, {"ID": "FBgn0038470", "EGF_Baseline": "0.67"}, {"ID": "FBgn0039402", "EGF_Baseline": "0.15"}, {"ID": "FBgn0034925", "EGF_Baseline": "-0.33"}, {"ID": "FBgn0035471", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0040732", "EGF_Baseline": "-1.21"}, {"ID": "FBgn0033469", "EGF_Baseline": "0.29"}, {"ID": "FBgn0031409", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0033968", "EGF_Baseline": "0.99"}, {"ID": "FBgn0011211", "EGF_Baseline": "-0.56"}, {"ID": "FBgn0259108", "EGF_Baseline": "2.73"}, {"ID": "FBgn0034804", "EGF_Baseline": "0.6"}, {"ID": "FBgn0031834", "EGF_Baseline": "-1.82"}, {"ID": "FBgn0086475", "EGF_Baseline": "-0.91"}, {"ID": "FBgn0052043", "EGF_Baseline": "1.21"}, {"ID": "FBgn0031026", "EGF_Baseline": "0.51"}, {"ID": "FBgn0036250", "EGF_Baseline": "0.74"}, {"ID": "FBgn0000579", "EGF_Baseline": "1.45"}, {"ID": "FBgn0026401", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0039131", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0038315", "EGF_Baseline": "0.75"}, {"ID": "FBgn0259703", "EGF_Baseline": "1"}, {"ID": "FBgn0087011", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0027784", "EGF_Baseline": "0.34"}, {"ID": "FBgn0028841", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0032768", "EGF_Baseline": "-1.91"}, {"ID": "FBgn0051789", "EGF_Baseline": "0.78"}, {"ID": "FBgn0032244", "EGF_Baseline": "0.97"}, {"ID": "FBgn0039145", "EGF_Baseline": "-0.11"}, {"ID": "FBgn0037280", "EGF_Baseline": "0.36"}, {"ID": "FBgn0036977", "EGF_Baseline": "0.75"}, {"ID": "FBgn0259682", "EGF_Baseline": "0.85"}, {"ID": "FBgn0043043", "EGF_Baseline": "1.41"}, {"ID": "FBgn0031018", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0038705", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0000524", "EGF_Baseline": "-0.21"}, {"ID": "FBgn0034626", "EGF_Baseline": "0.98"}, {"ID": "FBgn0038938", "EGF_Baseline": "-1.81"}, {"ID": "FBgn0038130", "EGF_Baseline": "1.09"}, {"ID": "FBgn0027503", "EGF_Baseline": "-1.43"}, {"ID": "FBgn0034215", "EGF_Baseline": "-1.98"}, {"ID": "FBgn0036704", "EGF_Baseline": "-1.51"}, {"ID": "FBgn0040849", "EGF_Baseline": "-1.04"}, {"ID": "FBgn0011280", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0033786", "EGF_Baseline": "1.29"}, {"ID": "FBgn0032839", "EGF_Baseline": "-0.71"}, {"ID": "FBgn0052850", "EGF_Baseline": "-0.1"}, {"ID": "FBgn0033021", "EGF_Baseline": "-0.02"}, {"ID": "FBgn0002174", "EGF_Baseline": "-0.39"}, {"ID": "FBgn0037073", "EGF_Baseline": "0.8"}, {"ID": "FBgn0039235", "EGF_Baseline": "-1.1"}, {"ID": "FBgn0259996", "EGF_Baseline": "1.82"}, {"ID": "FBgn0005778", "EGF_Baseline": "0.67"}, {"ID": "FBgn0039044", "EGF_Baseline": "2.3"}, {"ID": "FBgn0039201", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0000063", "EGF_Baseline": "-0.63"}, {"ID": "FBgn0038773", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0037835", "EGF_Baseline": "-1.89"}, {"ID": "FBgn0032694", "EGF_Baseline": "-1.79"}, {"ID": "FBgn0085216", "EGF_Baseline": "0.55"}, {"ID": "FBgn0025821", "EGF_Baseline": "0.88"}, {"ID": "FBgn0024921", "EGF_Baseline": "-1.79"}, {"ID": "FBgn0261612", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0043884", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0053530", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0026634", "EGF_Baseline": "0.86"}, {"ID": "FBgn0037936", "EGF_Baseline": "0.45"}, {"ID": "FBgn0050339", "EGF_Baseline": "1.25"}, {"ID": "FBgn0040763", "EGF_Baseline": "0.74"}, {"ID": "FBgn0027864", "EGF_Baseline": "0.16"}, {"ID": "FBgn0052283", "EGF_Baseline": "1.26"}, {"ID": "FBgn0031267", "EGF_Baseline": "-1.1"}, {"ID": "FBgn0259226", "EGF_Baseline": "1.43"}, {"ID": "FBgn0034304", "EGF_Baseline": "-0.17"}, {"ID": "FBgn0029717", "EGF_Baseline": "-0.66"}, {"ID": "FBgn0028953", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0260450", "EGF_Baseline": "0.56"}, {"ID": "FBgn0037712", "EGF_Baseline": "0.68"}, {"ID": "FBgn0052512", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0051128", "EGF_Baseline": "0.98"}, {"ID": "FBgn0032286", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0039612", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0085417", "EGF_Baseline": "0.47"}, {"ID": "FBgn0040283", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0037406", "EGF_Baseline": "-1.94"}, {"ID": "FBgn0033528", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0032153", "EGF_Baseline": "-0.31"}, {"ID": "FBgn0034817", "EGF_Baseline": "1.19"}, {"ID": "FBgn0034434", "EGF_Baseline": "-1.34"}, {"ID": "FBgn0038797", "EGF_Baseline": "-1.59"}, {"ID": "FBgn0004650", "EGF_Baseline": "1.14"}, {"ID": "FBgn0260862", "EGF_Baseline": "0.32"}, {"ID": "FBgn0052719", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0038977", "EGF_Baseline": "1.66"}, {"ID": "FBgn0022343", "EGF_Baseline": "1.44"}, {"ID": "FBgn0036922", "EGF_Baseline": "1.05"}, {"ID": "FBgn0052227", "EGF_Baseline": "-1.47"}, {"ID": "FBgn0035756", "EGF_Baseline": "-1.28"}, {"ID": "FBgn0034323", "EGF_Baseline": "-0.31"}, {"ID": "FBgn0028948", "EGF_Baseline": "-1.36"}, {"ID": "FBgn0038118", "EGF_Baseline": "-1.91"}, {"ID": "FBgn0053771", "EGF_Baseline": "0.89"}, {"ID": "FBgn0035427", "EGF_Baseline": "-0.32"}, {"ID": "FBgn0040850", "EGF_Baseline": "-1.27"}, {"ID": "FBgn0031313", "EGF_Baseline": "0.91"}, {"ID": "FBgn0040368", "EGF_Baseline": "1.06"}, {"ID": "FBgn0038235", "EGF_Baseline": "-1.27"}, {"ID": "FBgn0000173", "EGF_Baseline": "0.28"}, {"ID": "FBgn0050293", "EGF_Baseline": "-0.24"}, {"ID": "FBgn0026079", "EGF_Baseline": "2.96"}, {"ID": "FBgn0030481", "EGF_Baseline": "0.5"}, {"ID": "FBgn0085474", "EGF_Baseline": "2.67"}, {"ID": "FBgn0037687", "EGF_Baseline": "0.55"}, {"ID": "FBgn0024277", "EGF_Baseline": "-1.73"}, {"ID": "FBgn0260648", "EGF_Baseline": "1.31"}, {"ID": "FBgn0027083", "EGF_Baseline": "-1.21"}, {"ID": "FBgn0023213", "EGF_Baseline": "1.42"}, {"ID": "FBgn0030365", "EGF_Baseline": "0.5"}, {"ID": "FBgn0032136", "EGF_Baseline": "-0.71"}, {"ID": "FBgn0002563", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0033042", "EGF_Baseline": "0.9"}, {"ID": "FBgn0032483", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0051245", "EGF_Baseline": "-1.67"}, {"ID": "FBgn0039172", "EGF_Baseline": "0.48"}, {"ID": "FBgn0039588", "EGF_Baseline": "1.01"}, {"ID": "FBgn0034437", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0052191", "EGF_Baseline": "0.23"}, {"ID": "FBgn0045852", "EGF_Baseline": "-1.58"}, {"ID": "FBgn0004858", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0030466", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0025700", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0004655", "EGF_Baseline": "0.95"}, {"ID": "FBgn0032346", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0036691", "EGF_Baseline": "0.07"}, {"ID": "FBgn0053221", "EGF_Baseline": "-1.1"}, {"ID": "FBgn0027329", "EGF_Baseline": "0.87"}, {"ID": "FBgn0002354", "EGF_Baseline": "-0.81"}, {"ID": "FBgn0052718", "EGF_Baseline": "-0.59"}, {"ID": "FBgn0053299", "EGF_Baseline": "-0.32"}, {"ID": "FBgn0085359", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0014029", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0034990", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0035420", "EGF_Baseline": "-1.45"}, {"ID": "FBgn0033340", "EGF_Baseline": "0.84"}, {"ID": "FBgn0034849", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0261111", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0022708", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0037753", "EGF_Baseline": "0.5"}, {"ID": "FBgn0029987", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0050275", "EGF_Baseline": "0.26"}, {"ID": "FBgn0016126", "EGF_Baseline": "0.82"}, {"ID": "FBgn0036262", "EGF_Baseline": "0.2"}, {"ID": "FBgn0030347", "EGF_Baseline": "0.53"}, {"ID": "FBgn0027793", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0030928", "EGF_Baseline": "2.07"}, {"ID": "FBgn0029898", "EGF_Baseline": "-0.84"}, {"ID": "FBgn0010894", "EGF_Baseline": "0.48"}, {"ID": "FBgn0030460", "EGF_Baseline": "-1.87"}, {"ID": "FBgn0035003", "EGF_Baseline": "1.11"}, {"ID": "FBgn0022338", "EGF_Baseline": "1"}, {"ID": "FBgn0030271", "EGF_Baseline": "0.63"}, {"ID": "FBgn0038246", "EGF_Baseline": "2.19"}, {"ID": "FBgn0051706", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0051437", "EGF_Baseline": "-1.57"}, {"ID": "FBgn0086657", "EGF_Baseline": "1.12"}, {"ID": "FBgn0032870", "EGF_Baseline": "0.94"}, {"ID": "FBgn0035482", "EGF_Baseline": "0.62"}, {"ID": "FBgn0260634", "EGF_Baseline": "-1.46"}, {"ID": "FBgn0035231", "EGF_Baseline": "-0.67"}, {"ID": "FBgn0051869", "EGF_Baseline": "-1.75"}, {"ID": "FBgn0036804", "EGF_Baseline": "-0.59"}, {"ID": "FBgn0015477", "EGF_Baseline": "-1.48"}, {"ID": "FBgn0010341", "EGF_Baseline": "-1.88"}, {"ID": "FBgn0031856", "EGF_Baseline": "-0.84"}, {"ID": "FBgn0030786", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0085380", "EGF_Baseline": "-1.3"}, {"ID": "FBgn0033440", "EGF_Baseline": "-1.96"}, {"ID": "FBgn0039938", "EGF_Baseline": "0.81"}, {"ID": "FBgn0029979", "EGF_Baseline": "-1.47"}, {"ID": "FBgn0040236", "EGF_Baseline": "0.41"}, {"ID": "FBgn0028436", "EGF_Baseline": "1.76"}, {"ID": "FBgn0020378", "EGF_Baseline": "-1.71"}, {"ID": "FBgn0032407", "EGF_Baseline": "-0.63"}, {"ID": "FBgn0033875", "EGF_Baseline": "-1.1"}, {"ID": "FBgn0011668", "EGF_Baseline": "-1.64"}, {"ID": "FBgn0014006", "EGF_Baseline": "-1.49"}, {"ID": "FBgn0026060", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0040284", "EGF_Baseline": "9.59"}, {"ID": "FBgn0037163", "EGF_Baseline": "-0.13"}, {"ID": "FBgn0053108", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0028663", "EGF_Baseline": "0.32"}, {"ID": "FBgn0035153", "EGF_Baseline": "1.28"}, {"ID": "FBgn0035861", "EGF_Baseline": "-0.45"}, {"ID": "FBgn0031707", "EGF_Baseline": "-0.84"}, {"ID": "FBgn0053696", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0015907", "EGF_Baseline": "-1.93"}, {"ID": "FBgn0033162", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0013272", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0015527", "EGF_Baseline": "0.64"}, {"ID": "FBgn0028916", "EGF_Baseline": "-1.2"}, {"ID": "FBgn0029914", "EGF_Baseline": "-0.27"}, {"ID": "FBgn0027885", "EGF_Baseline": "1.71"}, {"ID": "FBgn0037798", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0034933", "EGF_Baseline": "-0.41"}, {"ID": "FBgn0034567", "EGF_Baseline": "0.55"}, {"ID": "FBgn0024807", "EGF_Baseline": "1.54"}, {"ID": "FBgn0033538", "EGF_Baseline": "0.99"}, {"ID": "FBgn0038596", "EGF_Baseline": "-1.47"}, {"ID": "FBgn0013733", "EGF_Baseline": "1.43"}, {"ID": "FBgn0038660", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0004169", "EGF_Baseline": "4.29"}, {"ID": "FBgn0036597", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0011676", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0243514", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0024841", "EGF_Baseline": "-0.49"}, {"ID": "FBgn0031749", "EGF_Baseline": "1.46"}, {"ID": "FBgn0035035", "EGF_Baseline": "0.69"}, {"ID": "FBgn0030884", "EGF_Baseline": "0.62"}, {"ID": "FBgn0016797", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0040827", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0031335", "EGF_Baseline": "1.75"}, {"ID": "FBgn0052647", "EGF_Baseline": "-0.81"}, {"ID": "FBgn0051740", "EGF_Baseline": "1.18"}, {"ID": "FBgn0051658", "EGF_Baseline": "1.21"}, {"ID": "FBgn0011703", "EGF_Baseline": "1.2"}, {"ID": "FBgn0032419", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0000543", "EGF_Baseline": "0.93"}, {"ID": "FBgn0033089", "EGF_Baseline": "-1.63"}, {"ID": "FBgn0052240", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0261885", "EGF_Baseline": "1.97"}, {"ID": "FBgn0033423", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0029006", "EGF_Baseline": "4.72"}, {"ID": "FBgn0261064", "EGF_Baseline": "1.54"}, {"ID": "FBgn0036996", "EGF_Baseline": "0.54"}, {"ID": "FBgn0036441", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0033065", "EGF_Baseline": "-1.35"}, {"ID": "FBgn0032845", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0042101", "EGF_Baseline": "0.46"}, {"ID": "FBgn0054023", "EGF_Baseline": "0.78"}, {"ID": "FBgn0030717", "EGF_Baseline": "0.78"}, {"ID": "FBgn0000394", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0039740", "EGF_Baseline": "1.17"}, {"ID": "FBgn0030451", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0038463", "EGF_Baseline": "-0.28"}, {"ID": "FBgn0030330", "EGF_Baseline": "1.04"}, {"ID": "FBgn0053467", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0045485", "EGF_Baseline": "0.58"}, {"ID": "FBgn0030646", "EGF_Baseline": "0.32"}, {"ID": "FBgn0036022", "EGF_Baseline": "0.3"}, {"ID": "FBgn0052266", "EGF_Baseline": "0.39"}, {"ID": "FBgn0040775", "EGF_Baseline": "-2.26"}, {"ID": "FBgn0039299", "EGF_Baseline": "0.2"}, {"ID": "FBgn0050412", "EGF_Baseline": "-1.62"}, {"ID": "FBgn0004870", "EGF_Baseline": "-1.58"}, {"ID": "FBgn0031623", "EGF_Baseline": "-2.23"}, {"ID": "FBgn0034527", "EGF_Baseline": "-1.69"}, {"ID": "FBgn0004435", "EGF_Baseline": "0.88"}, {"ID": "FBgn0050438", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0039617", "EGF_Baseline": "-1.7"}, {"ID": "FBgn0036887", "EGF_Baseline": "-0.27"}, {"ID": "FBgn0032603", "EGF_Baseline": "2.03"}, {"ID": "FBgn0033599", "EGF_Baseline": "-0.29"}, {"ID": "FBgn0031879", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0034136", "EGF_Baseline": "0.74"}, {"ID": "FBgn0035415", "EGF_Baseline": "0.2"}, {"ID": "FBgn0261383", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0023000", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0039305", "EGF_Baseline": "-1.28"}, {"ID": "FBgn0034200", "EGF_Baseline": "-1.99"}, {"ID": "FBgn0019938", "EGF_Baseline": "0.58"}, {"ID": "FBgn0020245", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0035851", "EGF_Baseline": "0.77"}, {"ID": "FBgn0031923", "EGF_Baseline": "0.72"}, {"ID": "FBgn0030921", "EGF_Baseline": "1.69"}, {"ID": "FBgn0033815", "EGF_Baseline": "-1.71"}, {"ID": "FBgn0086683", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0026760", "EGF_Baseline": "-1.37"}, {"ID": "FBgn0038981", "EGF_Baseline": "0.85"}, {"ID": "FBgn0261624", "EGF_Baseline": "0.46"}, {"ID": "FBgn0020660", "EGF_Baseline": "0.47"}, {"ID": "FBgn0002905", "EGF_Baseline": "1.46"}, {"ID": "FBgn0004619", "EGF_Baseline": "-0.54"}, {"ID": "FBgn0034512", "EGF_Baseline": "0.2"}, {"ID": "FBgn0036364", "EGF_Baseline": "0.46"}, {"ID": "FBgn0038744", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0085195", "EGF_Baseline": "-1.31"}, {"ID": "FBgn0032224", "EGF_Baseline": "-0.36"}, {"ID": "FBgn0034418", "EGF_Baseline": "-2.11"}, {"ID": "FBgn0037824", "EGF_Baseline": "0.92"}, {"ID": "FBgn0025391", "EGF_Baseline": "-1.2"}, {"ID": "FBgn0050379", "EGF_Baseline": "0.79"}, {"ID": "FBgn0036518", "EGF_Baseline": "-1.9"}, {"ID": "FBgn0037972", "EGF_Baseline": "0.78"}, {"ID": "FBgn0038857", "EGF_Baseline": "0.47"}, {"ID": "FBgn0032700", "EGF_Baseline": "-2"}, {"ID": "FBgn0034723", "EGF_Baseline": "-1.14"}, {"ID": "FBgn0053117", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0002791", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0025839", "EGF_Baseline": "0.6"}, {"ID": "FBgn0037853", "EGF_Baseline": "-0.72"}, {"ID": "FBgn0035934", "EGF_Baseline": "1.14"}, {"ID": "FBgn0040660", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0010292", "EGF_Baseline": "1.38"}, {"ID": "FBgn0031980", "EGF_Baseline": "1.71"}, {"ID": "FBgn0030610", "EGF_Baseline": "-2.13"}, {"ID": "FBgn0035398", "EGF_Baseline": "-1.81"}, {"ID": "FBgn0003041", "EGF_Baseline": "0.41"}, {"ID": "FBgn0050009", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0036236", "EGF_Baseline": "0.5"}, {"ID": "FBgn0051097", "EGF_Baseline": "0.46"}, {"ID": "FBgn0052320", "EGF_Baseline": "0.57"}, {"ID": "FBgn0002633", "EGF_Baseline": "1.05"}, {"ID": "FBgn0039846", "EGF_Baseline": "0.49"}, {"ID": "FBgn0051928", "EGF_Baseline": "1.13"}, {"ID": "FBgn0034242", "EGF_Baseline": "1.05"}, {"ID": "FBgn0011592", "EGF_Baseline": "2.07"}, {"ID": "FBgn0036224", "EGF_Baseline": "0.38"}, {"ID": "FBgn0031360", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0030606", "EGF_Baseline": "1.99"}, {"ID": "FBgn0042187", "EGF_Baseline": "-0.42"}, {"ID": "FBgn0038295", "EGF_Baseline": "0.38"}, {"ID": "FBgn0015562", "EGF_Baseline": "-0.29"}, {"ID": "FBgn0034120", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0026379", "EGF_Baseline": "-0.32"}, {"ID": "FBgn0004397", "EGF_Baseline": "-0.41"}, {"ID": "FBgn0052232", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0001189", "EGF_Baseline": "-1.28"}, {"ID": "FBgn0034011", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0021776", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0039136", "EGF_Baseline": "0.39"}, {"ID": "FBgn0085283", "EGF_Baseline": "1.31"}, {"ID": "FBgn0029826", "EGF_Baseline": "-0.31"}, {"ID": "FBgn0004237", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0037376", "EGF_Baseline": "-0.66"}, {"ID": "FBgn0000121", "EGF_Baseline": "0.28"}, {"ID": "FBgn0031301", "EGF_Baseline": "1.2"}, {"ID": "FBgn0030292", "EGF_Baseline": "-1.37"}, {"ID": "FBgn0032899", "EGF_Baseline": "-0.59"}, {"ID": "FBgn0052383", "EGF_Baseline": "0.17"}, {"ID": "FBgn0040799", "EGF_Baseline": "1.03"}, {"ID": "FBgn0038641", "EGF_Baseline": "-1.27"}, {"ID": "FBgn0031600", "EGF_Baseline": "-1.96"}, {"ID": "FBgn0014455", "EGF_Baseline": "1.01"}, {"ID": "FBgn0036070", "EGF_Baseline": "-0.39"}, {"ID": "FBgn0020633", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0030170", "EGF_Baseline": "1.58"}, {"ID": "FBgn0035205", "EGF_Baseline": "1.63"}, {"ID": "FBgn0038160", "EGF_Baseline": "0.76"}, {"ID": "FBgn0083991", "EGF_Baseline": "-1.79"}, {"ID": "FBgn0038190", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0003386", "EGF_Baseline": "1.13"}, {"ID": "FBgn0026876", "EGF_Baseline": "1.1"}, {"ID": "FBgn0031596", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0037789", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0031546", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0039385", "EGF_Baseline": "-0.56"}, {"ID": "FBgn0043471", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0032935", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0032724", "EGF_Baseline": "0.71"}, {"ID": "FBgn0034856", "EGF_Baseline": "-1.15"}, {"ID": "FBgn0004593", "EGF_Baseline": "-1.62"}, {"ID": "FBgn0030899", "EGF_Baseline": "0.29"}, {"ID": "FBgn0000319", "EGF_Baseline": "1.81"}, {"ID": "FBgn0033480", "EGF_Baseline": "-1.3"}, {"ID": "FBgn0030385", "EGF_Baseline": "0.86"}, {"ID": "FBgn0086350", "EGF_Baseline": "1.02"}, {"ID": "FBgn0037305", "EGF_Baseline": "-2"}, {"ID": "FBgn0051871", "EGF_Baseline": "1.14"}, {"ID": "FBgn0032172", "EGF_Baseline": "-0.41"}, {"ID": "FBgn0040324", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0037801", "EGF_Baseline": "-0.3"}, {"ID": "FBgn0034060", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0010309", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0031374", "EGF_Baseline": "0.78"}, {"ID": "FBgn0039255", "EGF_Baseline": "-1.83"}, {"ID": "FBgn0032312", "EGF_Baseline": "0.23"}, {"ID": "FBgn0003015", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0003435", "EGF_Baseline": "0.51"}, {"ID": "FBgn0035089", "EGF_Baseline": "-0.77"}, {"ID": "FBgn0000536", "EGF_Baseline": "-1.65"}, {"ID": "FBgn0003159", "EGF_Baseline": "0.38"}, {"ID": "FBgn0039712", "EGF_Baseline": "-1.26"}, {"ID": "FBgn0035247", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0032067", "EGF_Baseline": "-1.89"}, {"ID": "FBgn0036480", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0027546", "EGF_Baseline": "0.53"}, {"ID": "FBgn0013674", "EGF_Baseline": "0.35"}, {"ID": "FBgn0030339", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0051320", "EGF_Baseline": "1.03"}, {"ID": "FBgn0029761", "EGF_Baseline": "-2.21"}, {"ID": "FBgn0042711", "EGF_Baseline": "0.65"}, {"ID": "FBgn0036656", "EGF_Baseline": "0.26"}, {"ID": "FBgn0033363", "EGF_Baseline": "-1.38"}, {"ID": "FBgn0030441", "EGF_Baseline": "0.38"}, {"ID": "FBgn0011606", "EGF_Baseline": "0.69"}, {"ID": "FBgn0030666", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0085410", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0030870", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0040514", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0261850", "EGF_Baseline": "-0.21"}, {"ID": "FBgn0032253", "EGF_Baseline": "0.67"}, {"ID": "FBgn0050147", "EGF_Baseline": "-1.58"}, {"ID": "FBgn0000413", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0038806", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0259795", "EGF_Baseline": "2.16"}, {"ID": "FBgn0034825", "EGF_Baseline": "0.87"}, {"ID": "FBgn0033500", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0015222", "EGF_Baseline": "1.8"}, {"ID": "FBgn0039395", "EGF_Baseline": "-0.16"}, {"ID": "FBgn0011715", "EGF_Baseline": "0.34"}, {"ID": "FBgn0000261", "EGF_Baseline": "1.11"}, {"ID": "FBgn0039459", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0027087", "EGF_Baseline": "0.78"}, {"ID": "FBgn0005640", "EGF_Baseline": "0.26"}, {"ID": "FBgn0033973", "EGF_Baseline": "0.09"}, {"ID": "FBgn0051427", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0014868", "EGF_Baseline": "-1.34"}, {"ID": "FBgn0035890", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0036093", "EGF_Baseline": "-0.27"}, {"ID": "FBgn0039058", "EGF_Baseline": "1.54"}, {"ID": "FBgn0038250", "EGF_Baseline": "0.96"}, {"ID": "FBgn0033893", "EGF_Baseline": "0.56"}, {"ID": "FBgn0010622", "EGF_Baseline": "1.21"}, {"ID": "FBgn0031484", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0030654", "EGF_Baseline": "-1"}, {"ID": "FBgn0025373", "EGF_Baseline": "0.73"}, {"ID": "FBgn0031609", "EGF_Baseline": "1.54"}, {"ID": "FBgn0259111", "EGF_Baseline": "-1.91"}, {"ID": "FBgn0032470", "EGF_Baseline": "-0.84"}, {"ID": "FBgn0032337", "EGF_Baseline": "0.24"}, {"ID": "FBgn0039622", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0033730", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0033292", "EGF_Baseline": "0.2"}, {"ID": "FBgn0003891", "EGF_Baseline": "0.62"}, {"ID": "FBgn0026261", "EGF_Baseline": "-2.25"}, {"ID": "FBgn0086912", "EGF_Baseline": "0.95"}, {"ID": "FBgn0039342", "EGF_Baseline": "-0.66"}, {"ID": "FBgn0035181", "EGF_Baseline": "0.32"}, {"ID": "FBgn0039495", "EGF_Baseline": "0.98"}, {"ID": "FBgn0031763", "EGF_Baseline": "-1.31"}, {"ID": "FBgn0053110", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0052133", "EGF_Baseline": "-1.74"}, {"ID": "FBgn0035414", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0013751", "EGF_Baseline": "0.41"}, {"ID": "FBgn0038123", "EGF_Baseline": "0.49"}, {"ID": "FBgn0037829", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0011745", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0037107", "EGF_Baseline": "0.82"}, {"ID": "FBgn0036146", "EGF_Baseline": "0.85"}, {"ID": "FBgn0052574", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0011207", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0004360", "EGF_Baseline": "0.84"}, {"ID": "FBgn0036117", "EGF_Baseline": "-1.74"}, {"ID": "FBgn0032705", "EGF_Baseline": "-1.75"}, {"ID": "FBgn0010052", "EGF_Baseline": "-0.54"}, {"ID": "FBgn0035533", "EGF_Baseline": "-1.75"}, {"ID": "FBgn0000639", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0034489", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0030737", "EGF_Baseline": "-0.15"}, {"ID": "FBgn0052071", "EGF_Baseline": "0.59"}, {"ID": "FBgn0036606", "EGF_Baseline": "0.39"}, {"ID": "FBgn0052699", "EGF_Baseline": "-1.76"}, {"ID": "FBgn0027528", "EGF_Baseline": "0.29"}, {"ID": "FBgn0034988", "EGF_Baseline": "0.5"}, {"ID": "FBgn0035077", "EGF_Baseline": "-0.27"}, {"ID": "FBgn0040754", "EGF_Baseline": "-2.17"}, {"ID": "FBgn0030844", "EGF_Baseline": "1.39"}, {"ID": "FBgn0037460", "EGF_Baseline": "-1.34"}, {"ID": "FBgn0003517", "EGF_Baseline": "1.54"}, {"ID": "FBgn0016756", "EGF_Baseline": "-1.14"}, {"ID": "FBgn0085432", "EGF_Baseline": "1.56"}, {"ID": "FBgn0001612", "EGF_Baseline": "0.9"}, {"ID": "FBgn0001138", "EGF_Baseline": "-1.6"}, {"ID": "FBgn0029816", "EGF_Baseline": "0.16"}, {"ID": "FBgn0001258", "EGF_Baseline": "1.06"}, {"ID": "FBgn0052301", "EGF_Baseline": "1.28"}, {"ID": "FBgn0037612", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0051077", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0043530", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0037938", "EGF_Baseline": "0.61"}, {"ID": "FBgn0031585", "EGF_Baseline": "0.68"}, {"ID": "FBgn0030699", "EGF_Baseline": "1.54"}, {"ID": "FBgn0033826", "EGF_Baseline": "-0.45"}, {"ID": "FBgn0028518", "EGF_Baseline": "-1.47"}, {"ID": "FBgn0011289", "EGF_Baseline": "-1.66"}, {"ID": "FBgn0033929", "EGF_Baseline": "0.21"}, {"ID": "FBgn0031731", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0051145", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0004623", "EGF_Baseline": "-1.63"}, {"ID": "FBgn0050372", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0032069", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0051760", "EGF_Baseline": "-0.71"}, {"ID": "FBgn0037672", "EGF_Baseline": "0.94"}, {"ID": "FBgn0013749", "EGF_Baseline": "1.73"}, {"ID": "FBgn0036110", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0029755", "EGF_Baseline": "-1.16"}, {"ID": "FBgn0039559", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0004597", "EGF_Baseline": "0.82"}, {"ID": "FBgn0052026", "EGF_Baseline": "-1.16"}, {"ID": "FBgn0031776", "EGF_Baseline": "1.11"}, {"ID": "FBgn0036198", "EGF_Baseline": "1.65"}, {"ID": "FBgn0013305", "EGF_Baseline": "0.47"}, {"ID": "FBgn0013469", "EGF_Baseline": "0.55"}, {"ID": "FBgn0260860", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0035825", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0030012", "EGF_Baseline": "-1.28"}, {"ID": "FBgn0085434", "EGF_Baseline": "-0.54"}, {"ID": "FBgn0016032", "EGF_Baseline": "1.31"}, {"ID": "FBgn0034904", "EGF_Baseline": "1.21"}, {"ID": "FBgn0038268", "EGF_Baseline": "-0.66"}, {"ID": "FBgn0038968", "EGF_Baseline": "0.82"}, {"ID": "FBgn0033633", "EGF_Baseline": "-1.61"}, {"ID": "FBgn0010220", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0031675", "EGF_Baseline": "0.57"}, {"ID": "FBgn0051523", "EGF_Baseline": "0.91"}, {"ID": "FBgn0260940", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0052304", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0053301", "EGF_Baseline": "2.37"}, {"ID": "FBgn0260660", "EGF_Baseline": "-1.23"}, {"ID": "FBgn0261283", "EGF_Baseline": "3.18"}, {"ID": "FBgn0034950", "EGF_Baseline": "1.02"}, {"ID": "FBgn0003479", "EGF_Baseline": "1.08"}, {"ID": "FBgn0035464", "EGF_Baseline": "0.65"}, {"ID": "FBgn0039349", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0040786", "EGF_Baseline": "2.25"}, {"ID": "FBgn0003885", "EGF_Baseline": "3.13"}, {"ID": "FBgn0039804", "EGF_Baseline": "0.93"}, {"ID": "FBgn0259714", "EGF_Baseline": "-1.3"}, {"ID": "FBgn0083951", "EGF_Baseline": "-0.29"}, {"ID": "FBgn0015025", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0034670", "EGF_Baseline": "-0.25"}, {"ID": "FBgn0086384", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0037467", "EGF_Baseline": "0.22"}, {"ID": "FBgn0004914", "EGF_Baseline": "1.18"}, {"ID": "FBgn0021814", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0053513", "EGF_Baseline": "-1.26"}, {"ID": "FBgn0044048", "EGF_Baseline": "-1.47"}, {"ID": "FBgn0004133", "EGF_Baseline": "-1.53"}, {"ID": "FBgn0003300", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0050101", "EGF_Baseline": "-0.27"}, {"ID": "FBgn0032549", "EGF_Baseline": "0.61"}, {"ID": "FBgn0052529", "EGF_Baseline": "-1.55"}, {"ID": "FBgn0035917", "EGF_Baseline": "1.18"}, {"ID": "FBgn0039809", "EGF_Baseline": "2.37"}, {"ID": "FBgn0039645", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0024891", "EGF_Baseline": "-0.36"}, {"ID": "FBgn0037020", "EGF_Baseline": "-1.36"}, {"ID": "FBgn0030524", "EGF_Baseline": "-1.46"}, {"ID": "FBgn0036046", "EGF_Baseline": "1.04"}, {"ID": "FBgn0039719", "EGF_Baseline": "1"}, {"ID": "FBgn0031449", "EGF_Baseline": "-0.19"}, {"ID": "FBgn0036915", "EGF_Baseline": "2.57"}, {"ID": "FBgn0039006", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0039656", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0011276", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0026084", "EGF_Baseline": "0.59"}, {"ID": "FBgn0002629", "EGF_Baseline": "1.06"}, {"ID": "FBgn0034103", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0033578", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0052532", "EGF_Baseline": "1.16"}, {"ID": "FBgn0033863", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0031174", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0033507", "EGF_Baseline": "0.88"}, {"ID": "FBgn0000140", "EGF_Baseline": "1.47"}, {"ID": "FBgn0041249", "EGF_Baseline": "0.87"}, {"ID": "FBgn0015621", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0034237", "EGF_Baseline": "3.91"}, {"ID": "FBgn0032512", "EGF_Baseline": "1.15"}, {"ID": "FBgn0027584", "EGF_Baseline": "1.07"}, {"ID": "FBgn0003651", "EGF_Baseline": "1.04"}, {"ID": "FBgn0037617", "EGF_Baseline": "-0.36"}, {"ID": "FBgn0052476", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0052023", "EGF_Baseline": "-0.21"}, {"ID": "FBgn0025378", "EGF_Baseline": "-1.6"}, {"ID": "FBgn0035294", "EGF_Baseline": "1.94"}, {"ID": "FBgn0026378", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0039638", "EGF_Baseline": "0.83"}, {"ID": "FBgn0022987", "EGF_Baseline": "-0.84"}, {"ID": "FBgn0041624", "EGF_Baseline": "-1.57"}, {"ID": "FBgn0034957", "EGF_Baseline": "-1.87"}, {"ID": "FBgn0035421", "EGF_Baseline": "0.31"}, {"ID": "FBgn0030566", "EGF_Baseline": "-0.49"}, {"ID": "FBgn0050385", "EGF_Baseline": "-0.26"}, {"ID": "FBgn0028476", "EGF_Baseline": "-0.03"}, {"ID": "FBgn0039790", "EGF_Baseline": "1"}, {"ID": "FBgn0036545", "EGF_Baseline": "1.06"}, {"ID": "FBgn0027617", "EGF_Baseline": "1.48"}, {"ID": "FBgn0036729", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0034636", "EGF_Baseline": "-1.11"}, {"ID": "FBgn0034645", "EGF_Baseline": "0.58"}, {"ID": "FBgn0036868", "EGF_Baseline": "-1.1"}, {"ID": "FBgn0029763", "EGF_Baseline": "-1.4"}, {"ID": "FBgn0037432", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0027526", "EGF_Baseline": "2.08"}, {"ID": "FBgn0030025", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0038247", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0036817", "EGF_Baseline": "2.26"}, {"ID": "FBgn0035865", "EGF_Baseline": "0.52"}, {"ID": "FBgn0039754", "EGF_Baseline": "1.38"}, {"ID": "FBgn0051088", "EGF_Baseline": "0.9"}, {"ID": "FBgn0035164", "EGF_Baseline": "0.33"}, {"ID": "FBgn0034141", "EGF_Baseline": "0.86"}, {"ID": "FBgn0034172", "EGF_Baseline": "0.38"}, {"ID": "FBgn0032476", "EGF_Baseline": "1.03"}, {"ID": "FBgn0025827", "EGF_Baseline": "-1.95"}, {"ID": "FBgn0034442", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0050394", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0026396", "EGF_Baseline": "-0.84"}, {"ID": "FBgn0034909", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0010786", "EGF_Baseline": "-1.42"}, {"ID": "FBgn0037162", "EGF_Baseline": "1.42"}, {"ID": "FBgn0061492", "EGF_Baseline": "0.35"}, {"ID": "FBgn0034664", "EGF_Baseline": "-1.22"}, {"ID": "FBgn0030457", "EGF_Baseline": "0.29"}, {"ID": "FBgn0000182", "EGF_Baseline": "0.88"}, {"ID": "FBgn0030983", "EGF_Baseline": "0.33"}, {"ID": "FBgn0030556", "EGF_Baseline": "-0.35"}, {"ID": "FBgn0050018", "EGF_Baseline": "-0.37"}, {"ID": "FBgn0039029", "EGF_Baseline": "-1.89"}, {"ID": "FBgn0031858", "EGF_Baseline": "-0.44"}, {"ID": "FBgn0027603", "EGF_Baseline": "-1.31"}, {"ID": "FBgn0033051", "EGF_Baseline": "0.2"}, {"ID": "FBgn0030512", "EGF_Baseline": "0.15"}, {"ID": "FBgn0039300", "EGF_Baseline": "4.77"}, {"ID": "FBgn0052202", "EGF_Baseline": "-1.35"}, {"ID": "FBgn0031820", "EGF_Baseline": "0.22"}, {"ID": "FBgn0040658", "EGF_Baseline": "-1.11"}, {"ID": "FBgn0034858", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0026196", "EGF_Baseline": "1.26"}, {"ID": "FBgn0051673", "EGF_Baseline": "-0.67"}, {"ID": "FBgn0035359", "EGF_Baseline": "0.24"}, {"ID": "FBgn0046301", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0034774", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0033160", "EGF_Baseline": "0.69"}, {"ID": "FBgn0037517", "EGF_Baseline": "1"}, {"ID": "FBgn0041233", "EGF_Baseline": "-0.46"}, {"ID": "FBgn0030437", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0041723", "EGF_Baseline": "0.58"}, {"ID": "FBgn0031037", "EGF_Baseline": "-1.2"}, {"ID": "FBgn0034869", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0033516", "EGF_Baseline": "-0.65"}, {"ID": "FBgn0261787", "EGF_Baseline": "0.18"}, {"ID": "FBgn0000547", "EGF_Baseline": "1"}, {"ID": "FBgn0024188", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0036298", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0040906", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0033294", "EGF_Baseline": "1.27"}, {"ID": "FBgn0036938", "EGF_Baseline": "-0.25"}, {"ID": "FBgn0035949", "EGF_Baseline": "0.49"}, {"ID": "FBgn0020617", "EGF_Baseline": "0.62"}, {"ID": "FBgn0037454", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0037174", "EGF_Baseline": "-1.76"}, {"ID": "FBgn0041096", "EGF_Baseline": "1.43"}, {"ID": "FBgn0261363", "EGF_Baseline": "0.39"}, {"ID": "FBgn0003034", "EGF_Baseline": "0.41"}, {"ID": "FBgn0035976", "EGF_Baseline": "-1.8"}, {"ID": "FBgn0030900", "EGF_Baseline": "0.53"}, {"ID": "FBgn0041164", "EGF_Baseline": "-1.51"}, {"ID": "FBgn0034086", "EGF_Baseline": "-1.33"}, {"ID": "FBgn0028494", "EGF_Baseline": "-2.26"}, {"ID": "FBgn0004556", "EGF_Baseline": "-1.61"}, {"ID": "FBgn0051776", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0030880", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0033312", "EGF_Baseline": "0.86"}, {"ID": "FBgn0034837", "EGF_Baseline": "-1.69"}, {"ID": "FBgn0038829", "EGF_Baseline": "-0.4"}, {"ID": "FBgn0015320", "EGF_Baseline": "1.98"}, {"ID": "FBgn0036831", "EGF_Baseline": "0.21"}, {"ID": "FBgn0053099", "EGF_Baseline": "-0.65"}, {"ID": "FBgn0036416", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0035737", "EGF_Baseline": "0.85"}, {"ID": "FBgn0026316", "EGF_Baseline": "4.5"}, {"ID": "FBgn0261873", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0029715", "EGF_Baseline": "0.32"}, {"ID": "FBgn0050493", "EGF_Baseline": "1.03"}, {"ID": "FBgn0028704", "EGF_Baseline": "1.29"}, {"ID": "FBgn0031143", "EGF_Baseline": "0.09"}, {"ID": "FBgn0034720", "EGF_Baseline": "-0.4"}, {"ID": "FBgn0035519", "EGF_Baseline": "0.93"}, {"ID": "FBgn0003701", "EGF_Baseline": "2.13"}, {"ID": "FBgn0031317", "EGF_Baseline": "0.78"}, {"ID": "FBgn0030788", "EGF_Baseline": "0.79"}, {"ID": "FBgn0039200", "EGF_Baseline": "1.5"}, {"ID": "FBgn0033214", "EGF_Baseline": "0.89"}, {"ID": "FBgn0015393", "EGF_Baseline": "7.75"}, {"ID": "FBgn0030215", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0022069", "EGF_Baseline": "0.59"}, {"ID": "FBgn0029113", "EGF_Baseline": "0.17"}, {"ID": "FBgn0032341", "EGF_Baseline": "1.17"}, {"ID": "FBgn0031090", "EGF_Baseline": "2.47"}, {"ID": "FBgn0037766", "EGF_Baseline": "1.01"}, {"ID": "FBgn0039114", "EGF_Baseline": "1.17"}, {"ID": "FBgn0032752", "EGF_Baseline": "0.9"}, {"ID": "FBgn0034725", "EGF_Baseline": "-1.95"}, {"ID": "FBgn0040253", "EGF_Baseline": "1.13"}, {"ID": "FBgn0033031", "EGF_Baseline": "-1.58"}, {"ID": "FBgn0028893", "EGF_Baseline": "-0.37"}, {"ID": "FBgn0000492", "EGF_Baseline": "-1.79"}, {"ID": "FBgn0031021", "EGF_Baseline": "0.32"}, {"ID": "FBgn0085425", "EGF_Baseline": "3.94"}, {"ID": "FBgn0025393", "EGF_Baseline": "0.18"}, {"ID": "FBgn0033918", "EGF_Baseline": "0.35"}, {"ID": "FBgn0037352", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0028419", "EGF_Baseline": "1.36"}, {"ID": "FBgn0036153", "EGF_Baseline": "0.86"}, {"ID": "FBgn0035050", "EGF_Baseline": "1.39"}, {"ID": "FBgn0035608", "EGF_Baseline": "0.33"}, {"ID": "FBgn0028688", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0040801", "EGF_Baseline": "3.21"}, {"ID": "FBgn0033554", "EGF_Baseline": "-1.26"}, {"ID": "FBgn0050288", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0033155", "EGF_Baseline": "0.57"}, {"ID": "FBgn0035848", "EGF_Baseline": "-0.39"}, {"ID": "FBgn0001148", "EGF_Baseline": "-0.31"}, {"ID": "FBgn0047133", "EGF_Baseline": "-2.34"}, {"ID": "FBgn0037926", "EGF_Baseline": "-0.67"}, {"ID": "FBgn0004430", "EGF_Baseline": "-0.31"}, {"ID": "FBgn0027843", "EGF_Baseline": "0.89"}, {"ID": "FBgn0033203", "EGF_Baseline": "1.12"}, {"ID": "FBgn0032873", "EGF_Baseline": "-1.54"}, {"ID": "FBgn0038504", "EGF_Baseline": "0.26"}, {"ID": "FBgn0038353", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0036684", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0033484", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0031478", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0053139", "EGF_Baseline": "1.07"}, {"ID": "FBgn0250843", "EGF_Baseline": "-0.42"}, {"ID": "FBgn0085443", "EGF_Baseline": "1.64"}, {"ID": "FBgn0053200", "EGF_Baseline": "1.22"}, {"ID": "FBgn0085395", "EGF_Baseline": "-1.42"}, {"ID": "FBgn0039061", "EGF_Baseline": "0.68"}, {"ID": "FBgn0035691", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0039015", "EGF_Baseline": "-1.64"}, {"ID": "FBgn0024273", "EGF_Baseline": "1.32"}, {"ID": "FBgn0034979", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0037994", "EGF_Baseline": "-1.87"}, {"ID": "FBgn0032824", "EGF_Baseline": "-1.93"}, {"ID": "FBgn0032789", "EGF_Baseline": "0.67"}, {"ID": "FBgn0039749", "EGF_Baseline": "2.11"}, {"ID": "FBgn0030141", "EGF_Baseline": "1.4"}, {"ID": "FBgn0051633", "EGF_Baseline": "-0.28"}, {"ID": "FBgn0016054", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0020641", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0039336", "EGF_Baseline": "1.41"}, {"ID": "FBgn0069938", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0026630", "EGF_Baseline": "-0.17"}, {"ID": "FBgn0261808", "EGF_Baseline": "0.73"}, {"ID": "FBgn0035594", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0032246", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0035789", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0050356", "EGF_Baseline": "0.69"}, {"ID": "FBgn0003415", "EGF_Baseline": "3.72"}, {"ID": "FBgn0032713", "EGF_Baseline": "-1.5"}, {"ID": "FBgn0051183", "EGF_Baseline": "-1.27"}, {"ID": "FBgn0086655", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0040467", "EGF_Baseline": "-1.54"}, {"ID": "FBgn0038795", "EGF_Baseline": "-1.57"}, {"ID": "FBgn0034093", "EGF_Baseline": "0.52"}, {"ID": "FBgn0051220", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0031135", "EGF_Baseline": "0.55"}, {"ID": "FBgn0086253", "EGF_Baseline": "-1.45"}, {"ID": "FBgn0259214", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0259704", "EGF_Baseline": "0.47"}, {"ID": "FBgn0027343", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0036529", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0035138", "EGF_Baseline": "1.18"}, {"ID": "FBgn0026722", "EGF_Baseline": "8.31"}, {"ID": "FBgn0033038", "EGF_Baseline": "0.82"}, {"ID": "FBgn0010225", "EGF_Baseline": "0.57"}, {"ID": "FBgn0029725", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0030307", "EGF_Baseline": "-1.25"}, {"ID": "FBgn0013563", "EGF_Baseline": "-1.22"}, {"ID": "FBgn0037708", "EGF_Baseline": "-2.21"}, {"ID": "FBgn0054045", "EGF_Baseline": "0.19"}, {"ID": "FBgn0016675", "EGF_Baseline": "0.34"}, {"ID": "FBgn0038281", "EGF_Baseline": "2.43"}, {"ID": "FBgn0033734", "EGF_Baseline": "-0.34"}, {"ID": "FBgn0031537", "EGF_Baseline": "2.84"}, {"ID": "FBgn0040064", "EGF_Baseline": "0.5"}, {"ID": "FBgn0031883", "EGF_Baseline": "-1.24"}, {"ID": "FBgn0261802", "EGF_Baseline": "-1.55"}, {"ID": "FBgn0037481", "EGF_Baseline": "0.95"}, {"ID": "FBgn0036483", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0013755", "EGF_Baseline": "0.88"}, {"ID": "FBgn0032635", "EGF_Baseline": "1.42"}, {"ID": "FBgn0031323", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0040339", "EGF_Baseline": "0.66"}, {"ID": "FBgn0034479", "EGF_Baseline": "-1.47"}, {"ID": "FBgn0053329", "EGF_Baseline": "-0.1"}, {"ID": "FBgn0038575", "EGF_Baseline": "-0.72"}, {"ID": "FBgn0027552", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0050456", "EGF_Baseline": "-1.89"}, {"ID": "FBgn0035627", "EGF_Baseline": "-0.71"}, {"ID": "FBgn0259977", "EGF_Baseline": "-1.79"}, {"ID": "FBgn0046880", "EGF_Baseline": "0.68"}, {"ID": "FBgn0261860", "EGF_Baseline": "-1.16"}, {"ID": "FBgn0000320", "EGF_Baseline": "0.69"}, {"ID": "FBgn0035857", "EGF_Baseline": "-0.28"}, {"ID": "FBgn0038839", "EGF_Baseline": "0.14"}, {"ID": "FBgn0029501", "EGF_Baseline": "1.22"}, {"ID": "FBgn0039288", "EGF_Baseline": "-0.43"}, {"ID": "FBgn0029508", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0031424", "EGF_Baseline": "-1.78"}, {"ID": "FBgn0004197", "EGF_Baseline": "1.89"}, {"ID": "FBgn0038126", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0033686", "EGF_Baseline": "-1.45"}, {"ID": "FBgn0037619", "EGF_Baseline": "-0.32"}, {"ID": "FBgn0026238", "EGF_Baseline": "1.64"}, {"ID": "FBgn0043575", "EGF_Baseline": "0.27"}, {"ID": "FBgn0038197", "EGF_Baseline": "-1.25"}, {"ID": "FBgn0053556", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0050103", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0037893", "EGF_Baseline": "0.3"}, {"ID": "FBgn0085277", "EGF_Baseline": "0.64"}, {"ID": "FBgn0001324", "EGF_Baseline": "0.33"}, {"ID": "FBgn0051231", "EGF_Baseline": "3.16"}, {"ID": "FBgn0011754", "EGF_Baseline": "-1.25"}, {"ID": "FBgn0002466", "EGF_Baseline": "-0.84"}, {"ID": "FBgn0033067", "EGF_Baseline": "1.07"}, {"ID": "FBgn0034504", "EGF_Baseline": "-2.09"}, {"ID": "FBgn0032275", "EGF_Baseline": "0.53"}, {"ID": "FBgn0033584", "EGF_Baseline": "0.65"}, {"ID": "FBgn0259193", "EGF_Baseline": "-0.91"}, {"ID": "FBgn0029881", "EGF_Baseline": "1.49"}, {"ID": "FBgn0250823", "EGF_Baseline": "-1.17"}, {"ID": "FBgn0038676", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0035906", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0039086", "EGF_Baseline": "0.69"}, {"ID": "FBgn0030509", "EGF_Baseline": "0.74"}, {"ID": "FBgn0037102", "EGF_Baseline": "-0.28"}, {"ID": "FBgn0001180", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0000404", "EGF_Baseline": "2.76"}, {"ID": "FBgn0052105", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0050467", "EGF_Baseline": "1.55"}, {"ID": "FBgn0032536", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0051698", "EGF_Baseline": "1.32"}, {"ID": "FBgn0020388", "EGF_Baseline": "0.68"}, {"ID": "FBgn0031247", "EGF_Baseline": "-1.1"}, {"ID": "FBgn0039183", "EGF_Baseline": "1.34"}, {"ID": "FBgn0037877", "EGF_Baseline": "0.69"}, {"ID": "FBgn0000500", "EGF_Baseline": "0.73"}, {"ID": "FBgn0033872", "EGF_Baseline": "-1.17"}, {"ID": "FBgn0001174", "EGF_Baseline": "0.54"}, {"ID": "FBgn0039654", "EGF_Baseline": "0.24"}, {"ID": "FBgn0032553", "EGF_Baseline": "1.25"}, {"ID": "FBgn0034568", "EGF_Baseline": "-0.19"}, {"ID": "FBgn0054056", "EGF_Baseline": "-2.02"}, {"ID": "FBgn0032447", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0025724", "EGF_Baseline": "6.43"}, {"ID": "FBgn0032085", "EGF_Baseline": "-0.5"}, {"ID": "FBgn0041607", "EGF_Baseline": "1.08"}, {"ID": "FBgn0031861", "EGF_Baseline": "0.88"}, {"ID": "FBgn0051556", "EGF_Baseline": "4.66"}, {"ID": "FBgn0029736", "EGF_Baseline": "0.16"}, {"ID": "FBgn0004859", "EGF_Baseline": "0.28"}, {"ID": "FBgn0029526", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0039240", "EGF_Baseline": "-0.4"}, {"ID": "FBgn0028519", "EGF_Baseline": "1.77"}, {"ID": "FBgn0040375", "EGF_Baseline": "-0.35"}, {"ID": "FBgn0037931", "EGF_Baseline": "-1.34"}, {"ID": "FBgn0033186", "EGF_Baseline": "0.9"}, {"ID": "FBgn0034175", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0005619", "EGF_Baseline": "1.24"}, {"ID": "FBgn0011836", "EGF_Baseline": "0.39"}, {"ID": "FBgn0033028", "EGF_Baseline": "-1.42"}, {"ID": "FBgn0052986", "EGF_Baseline": "-1.85"}, {"ID": "FBgn0037493", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0031452", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0261238", "EGF_Baseline": "0.86"}, {"ID": "FBgn0050095", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0034821", "EGF_Baseline": "0.81"}, {"ID": "FBgn0034580", "EGF_Baseline": "0.97"}, {"ID": "FBgn0040030", "EGF_Baseline": "1.24"}, {"ID": "FBgn0039626", "EGF_Baseline": "1.54"}, {"ID": "FBgn0035452", "EGF_Baseline": "-1.1"}, {"ID": "FBgn0038946", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0037421", "EGF_Baseline": "-2.02"}, {"ID": "FBgn0051453", "EGF_Baseline": "-1.75"}, {"ID": "FBgn0085325", "EGF_Baseline": "1.77"}, {"ID": "FBgn0000594", "EGF_Baseline": "0.47"}, {"ID": "FBgn0034939", "EGF_Baseline": "-0.34"}, {"ID": "FBgn0039779", "EGF_Baseline": "-0.63"}, {"ID": "FBgn0051213", "EGF_Baseline": "0.86"}, {"ID": "FBgn0037677", "EGF_Baseline": "-1.62"}, {"ID": "FBgn0026175", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0033844", "EGF_Baseline": "-1.37"}, {"ID": "FBgn0027082", "EGF_Baseline": "-0.45"}, {"ID": "FBgn0033378", "EGF_Baseline": "-1.26"}, {"ID": "FBgn0039215", "EGF_Baseline": "0.59"}, {"ID": "FBgn0029940", "EGF_Baseline": "0.8"}, {"ID": "FBgn0259175", "EGF_Baseline": "-1.49"}, {"ID": "FBgn0036165", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0031894", "EGF_Baseline": "1.33"}, {"ID": "FBgn0030858", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0000115", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0030251", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0026088", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0011296", "EGF_Baseline": "0.51"}, {"ID": "FBgn0028484", "EGF_Baseline": "1.4"}, {"ID": "FBgn0031129", "EGF_Baseline": "0.53"}, {"ID": "FBgn0038387", "EGF_Baseline": "0.19"}, {"ID": "FBgn0036498", "EGF_Baseline": "-1.37"}, {"ID": "FBgn0035280", "EGF_Baseline": "-0.71"}, {"ID": "FBgn0036853", "EGF_Baseline": "-0.49"}, {"ID": "FBgn0085293", "EGF_Baseline": "0.63"}, {"ID": "FBgn0259936", "EGF_Baseline": "-1.7"}, {"ID": "FBgn0260011", "EGF_Baseline": "-0.33"}, {"ID": "FBgn0002773", "EGF_Baseline": "1.22"}, {"ID": "FBgn0023215", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0030588", "EGF_Baseline": "0.6"}, {"ID": "FBgn0034075", "EGF_Baseline": "-1.69"}, {"ID": "FBgn0028941", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0029789", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0039780", "EGF_Baseline": "0.28"}, {"ID": "FBgn0011695", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0010620", "EGF_Baseline": "-1.59"}, {"ID": "FBgn0038186", "EGF_Baseline": "-0.5"}, {"ID": "FBgn0034658", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0038000", "EGF_Baseline": "-0.81"}, {"ID": "FBgn0037578", "EGF_Baseline": "-0.3"}, {"ID": "FBgn0039590", "EGF_Baseline": "-1.62"}, {"ID": "FBgn0035016", "EGF_Baseline": "0.86"}, {"ID": "FBgn0040475", "EGF_Baseline": "-1.61"}, {"ID": "FBgn0031107", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0035526", "EGF_Baseline": "0.71"}, {"ID": "FBgn0035694", "EGF_Baseline": "-0.12"}, {"ID": "FBgn0250832", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0038405", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0032803", "EGF_Baseline": "1.76"}, {"ID": "FBgn0036975", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0028560", "EGF_Baseline": "-0.38"}, {"ID": "FBgn0020497", "EGF_Baseline": "-0.71"}, {"ID": "FBgn0061198", "EGF_Baseline": "-1.3"}, {"ID": "FBgn0039042", "EGF_Baseline": "-2.14"}, {"ID": "FBgn0034025", "EGF_Baseline": "1.51"}, {"ID": "FBgn0039470", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0038151", "EGF_Baseline": "-1.42"}, {"ID": "FBgn0052656", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0037384", "EGF_Baseline": "-1.43"}, {"ID": "FBgn0020508", "EGF_Baseline": "-0.18"}, {"ID": "FBgn0032964", "EGF_Baseline": "-1.33"}, {"ID": "FBgn0022740", "EGF_Baseline": "1.22"}, {"ID": "FBgn0034882", "EGF_Baseline": "0.28"}, {"ID": "FBgn0052654", "EGF_Baseline": "0.31"}, {"ID": "FBgn0032506", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0023537", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0037399", "EGF_Baseline": "0.64"}, {"ID": "FBgn0051997", "EGF_Baseline": "-1.27"}, {"ID": "FBgn0085408", "EGF_Baseline": "-0.08"}, {"ID": "FBgn0036583", "EGF_Baseline": "1.14"}, {"ID": "FBgn0052195", "EGF_Baseline": "0.11"}, {"ID": "FBgn0026386", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0259143", "EGF_Baseline": "3.38"}, {"ID": "FBgn0037040", "EGF_Baseline": "0.94"}, {"ID": "FBgn0039928", "EGF_Baseline": "1.23"}, {"ID": "FBgn0260441", "EGF_Baseline": "5.11"}, {"ID": "FBgn0052119", "EGF_Baseline": "-1.3"}, {"ID": "FBgn0039325", "EGF_Baseline": "0.61"}, {"ID": "FBgn0041250", "EGF_Baseline": "-1.24"}, {"ID": "FBgn0051797", "EGF_Baseline": "0.82"}, {"ID": "FBgn0046687", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0034545", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0035500", "EGF_Baseline": "-1.39"}, {"ID": "FBgn0037571", "EGF_Baseline": "1.5"}, {"ID": "FBgn0032218", "EGF_Baseline": "-0.52"}, {"ID": "FBgn0001087", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0260049", "EGF_Baseline": "0.24"}, {"ID": "FBgn0033165", "EGF_Baseline": "3.13"}, {"ID": "FBgn0033404", "EGF_Baseline": "-1.45"}, {"ID": "FBgn0036836", "EGF_Baseline": "-1.9"}, {"ID": "FBgn0034936", "EGF_Baseline": "0.26"}, {"ID": "FBgn0027093", "EGF_Baseline": "1.39"}, {"ID": "FBgn0001255", "EGF_Baseline": "2.51"}, {"ID": "FBgn0037218", "EGF_Baseline": "0.46"}, {"ID": "FBgn0037778", "EGF_Baseline": "-1.62"}, {"ID": "FBgn0039049", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0033339", "EGF_Baseline": "1.53"}, {"ID": "FBgn0031240", "EGF_Baseline": "-0.3"}, {"ID": "FBgn0005695", "EGF_Baseline": "0.72"}, {"ID": "FBgn0038488", "EGF_Baseline": "-0.3"}, {"ID": "FBgn0039479", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0086357", "EGF_Baseline": "-1.84"}, {"ID": "FBgn0259237", "EGF_Baseline": "-1.85"}, {"ID": "FBgn0036126", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0025519", "EGF_Baseline": "-1.37"}, {"ID": "FBgn0039489", "EGF_Baseline": "-0.24"}, {"ID": "FBgn0038038", "EGF_Baseline": "0.8"}, {"ID": "FBgn0038473", "EGF_Baseline": "2.45"}, {"ID": "FBgn0030743", "EGF_Baseline": "1.06"}, {"ID": "FBgn0051849", "EGF_Baseline": "0.43"}, {"ID": "FBgn0040794", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0261610", "EGF_Baseline": "0.77"}, {"ID": "FBgn0000057", "EGF_Baseline": "0.05"}, {"ID": "FBgn0004374", "EGF_Baseline": "0.79"}, {"ID": "FBgn0052639", "EGF_Baseline": "2.38"}, {"ID": "FBgn0052570", "EGF_Baseline": "-1.66"}, {"ID": "FBgn0033981", "EGF_Baseline": "-1.71"}, {"ID": "FBgn0029807", "EGF_Baseline": "-1.16"}, {"ID": "FBgn0034032", "EGF_Baseline": "-0.3"}, {"ID": "FBgn0028523", "EGF_Baseline": "1.84"}, {"ID": "FBgn0037012", "EGF_Baseline": "-0.26"}, {"ID": "FBgn0025864", "EGF_Baseline": "-0.44"}, {"ID": "FBgn0035551", "EGF_Baseline": "1.54"}, {"ID": "FBgn0035332", "EGF_Baseline": "1.13"}, {"ID": "FBgn0034718", "EGF_Baseline": "-1.44"}, {"ID": "FBgn0030239", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0016036", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0037978", "EGF_Baseline": "0.77"}, {"ID": "FBgn0052461", "EGF_Baseline": "0.94"}, {"ID": "FBgn0030228", "EGF_Baseline": "-2.09"}, {"ID": "FBgn0030483", "EGF_Baseline": "2.98"}, {"ID": "FBgn0034422", "EGF_Baseline": "-1.48"}, {"ID": "FBgn0036875", "EGF_Baseline": "0.62"}, {"ID": "FBgn0015805", "EGF_Baseline": "2.83"}, {"ID": "FBgn0031364", "EGF_Baseline": "0.99"}, {"ID": "FBgn0028692", "EGF_Baseline": "-1.22"}, {"ID": "FBgn0030521", "EGF_Baseline": "0.48"}, {"ID": "FBgn0034503", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0031520", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0031662", "EGF_Baseline": "1.3"}, {"ID": "FBgn0037963", "EGF_Baseline": "0.21"}, {"ID": "FBgn0039504", "EGF_Baseline": "2.11"}, {"ID": "FBgn0003654", "EGF_Baseline": "-0.59"}, {"ID": "FBgn0037251", "EGF_Baseline": "2.12"}, {"ID": "FBgn0033767", "EGF_Baseline": "1.11"}, {"ID": "FBgn0036986", "EGF_Baseline": "0.32"}, {"ID": "FBgn0002968", "EGF_Baseline": "-1.65"}, {"ID": "FBgn0001197", "EGF_Baseline": "-1.04"}, {"ID": "FBgn0003353", "EGF_Baseline": "-1.1"}, {"ID": "FBgn0030187", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0010709", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0050184", "EGF_Baseline": "0.3"}, {"ID": "FBgn0030417", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0086785", "EGF_Baseline": "0.25"}, {"ID": "FBgn0038055", "EGF_Baseline": "1.38"}, {"ID": "FBgn0051546", "EGF_Baseline": "-1.88"}, {"ID": "FBgn0036024", "EGF_Baseline": "-0.32"}, {"ID": "FBgn0036563", "EGF_Baseline": "1.29"}, {"ID": "FBgn0029836", "EGF_Baseline": "1.1"}, {"ID": "FBgn0026751", "EGF_Baseline": "-0.54"}, {"ID": "FBgn0039868", "EGF_Baseline": "-0.2"}, {"ID": "FBgn0022027", "EGF_Baseline": "0.36"}, {"ID": "FBgn0032123", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0029989", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0036844", "EGF_Baseline": "-1.58"}, {"ID": "FBgn0036678", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0261524", "EGF_Baseline": "1.07"}, {"ID": "FBgn0015838", "EGF_Baseline": "-1.47"}, {"ID": "FBgn0036826", "EGF_Baseline": "0.53"}, {"ID": "FBgn0030196", "EGF_Baseline": "-1.48"}, {"ID": "FBgn0004959", "EGF_Baseline": "0.43"}, {"ID": "FBgn0039421", "EGF_Baseline": "0.72"}, {"ID": "FBgn0039437", "EGF_Baseline": "-1.14"}, {"ID": "FBgn0030343", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0033778", "EGF_Baseline": "0.96"}, {"ID": "FBgn0034068", "EGF_Baseline": "-0.33"}, {"ID": "FBgn0033129", "EGF_Baseline": "-0.91"}, {"ID": "FBgn0038360", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0033308", "EGF_Baseline": "1.34"}, {"ID": "FBgn0034528", "EGF_Baseline": "0.76"}, {"ID": "FBgn0039125", "EGF_Baseline": "1.29"}, {"ID": "FBgn0010333", "EGF_Baseline": "-1.23"}, {"ID": "FBgn0260006", "EGF_Baseline": "-1.14"}, {"ID": "FBgn0086532", "EGF_Baseline": "-1.83"}, {"ID": "FBgn0003116", "EGF_Baseline": "1.04"}, {"ID": "FBgn0029975", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0027598", "EGF_Baseline": "0.58"}, {"ID": "FBgn0036080", "EGF_Baseline": "-2.25"}, {"ID": "FBgn0261602", "EGF_Baseline": "2.91"}, {"ID": "FBgn0034327", "EGF_Baseline": "0.57"}, {"ID": "FBgn0010412", "EGF_Baseline": "1.36"}, {"ID": "FBgn0030623", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0038300", "EGF_Baseline": "1.1"}, {"ID": "FBgn0037716", "EGF_Baseline": "1.04"}, {"ID": "FBgn0039106", "EGF_Baseline": "-0.98"}, {"ID": "FBgn0029949", "EGF_Baseline": "-0.22"}, {"ID": "FBgn0052350", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0023097", "EGF_Baseline": "-0.72"}, {"ID": "FBgn0037165", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0041342", "EGF_Baseline": "-0.52"}, {"ID": "FBgn0033794", "EGF_Baseline": "-0.15"}, {"ID": "FBgn0038765", "EGF_Baseline": "-1.39"}, {"ID": "FBgn0040529", "EGF_Baseline": "-1.47"}, {"ID": "FBgn0031282", "EGF_Baseline": "2.18"}, {"ID": "FBgn0052437", "EGF_Baseline": "-1.96"}, {"ID": "FBgn0030798", "EGF_Baseline": "0.32"}, {"ID": "FBgn0039158", "EGF_Baseline": "-0.2"}, {"ID": "FBgn0034683", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0038324", "EGF_Baseline": "1"}, {"ID": "FBgn0024944", "EGF_Baseline": "-1.74"}, {"ID": "FBgn0019644", "EGF_Baseline": "-0.31"}, {"ID": "FBgn0039833", "EGF_Baseline": "1.61"}, {"ID": "FBgn0038449", "EGF_Baseline": "0.26"}, {"ID": "FBgn0030997", "EGF_Baseline": "-0.27"}, {"ID": "FBgn0003285", "EGF_Baseline": "2.42"}, {"ID": "FBgn0032702", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0034942", "EGF_Baseline": "-0.16"}, {"ID": "FBgn0005596", "EGF_Baseline": "-0.72"}, {"ID": "FBgn0037734", "EGF_Baseline": "1.1"}, {"ID": "FBgn0052039", "EGF_Baseline": "1.06"}, {"ID": "FBgn0038540", "EGF_Baseline": "-1.61"}, {"ID": "FBgn0026593", "EGF_Baseline": "-0.67"}, {"ID": "FBgn0053123", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0032900", "EGF_Baseline": "-1.44"}, {"ID": "FBgn0013675", "EGF_Baseline": "-0.56"}, {"ID": "FBgn0028567", "EGF_Baseline": "-1.48"}, {"ID": "FBgn0035686", "EGF_Baseline": "-1.16"}, {"ID": "FBgn0028410", "EGF_Baseline": "1.63"}, {"ID": "FBgn0035965", "EGF_Baseline": "0.78"}, {"ID": "FBgn0001987", "EGF_Baseline": "0.4"}, {"ID": "FBgn0036396", "EGF_Baseline": "-1.15"}, {"ID": "FBgn0003511", "EGF_Baseline": "1.57"}, {"ID": "FBgn0053542", "EGF_Baseline": "1.3"}, {"ID": "FBgn0039065", "EGF_Baseline": "-0.15"}, {"ID": "FBgn0050156", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0030595", "EGF_Baseline": "0.83"}, {"ID": "FBgn0039752", "EGF_Baseline": "1.01"}, {"ID": "FBgn0037395", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0051515", "EGF_Baseline": "2.78"}, {"ID": "FBgn0038097", "EGF_Baseline": "-1.65"}, {"ID": "FBgn0031201", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0038818", "EGF_Baseline": "1.92"}, {"ID": "FBgn0034426", "EGF_Baseline": "-1.46"}, {"ID": "FBgn0032744", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0035021", "EGF_Baseline": "0.92"}, {"ID": "FBgn0037502", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0058245", "EGF_Baseline": "0.78"}, {"ID": "FBgn0039269", "EGF_Baseline": "-1.16"}, {"ID": "FBgn0260946", "EGF_Baseline": "1.76"}, {"ID": "FBgn0012036", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0038973", "EGF_Baseline": "0.74"}, {"ID": "FBgn0020910", "EGF_Baseline": "-2.79"}, {"ID": "FBgn0005649", "EGF_Baseline": "-1.33"}, {"ID": "FBgn0040383", "EGF_Baseline": "-1.42"}, {"ID": "FBgn0039449", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0036710", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0035060", "EGF_Baseline": "-0.19"}, {"ID": "FBgn0039151", "EGF_Baseline": "-1.23"}, {"ID": "FBgn0034968", "EGF_Baseline": "4.51"}, {"ID": "FBgn0033624", "EGF_Baseline": "-1.65"}, {"ID": "FBgn0031774", "EGF_Baseline": "1.88"}, {"ID": "FBgn0020908", "EGF_Baseline": "1.1"}, {"ID": "FBgn0031008", "EGF_Baseline": "0.78"}, {"ID": "FBgn0036309", "EGF_Baseline": "-1.15"}, {"ID": "FBgn0031913", "EGF_Baseline": "-0.77"}, {"ID": "FBgn0035316", "EGF_Baseline": "-0.2"}, {"ID": "FBgn0036493", "EGF_Baseline": "-1.27"}, {"ID": "FBgn0032857", "EGF_Baseline": "-0.45"}, {"ID": "FBgn0037323", "EGF_Baseline": "-2.14"}, {"ID": "FBgn0030410", "EGF_Baseline": "0.49"}, {"ID": "FBgn0031235", "EGF_Baseline": "0.46"}, {"ID": "FBgn0035064", "EGF_Baseline": "-0.31"}, {"ID": "FBgn0031150", "EGF_Baseline": "1.67"}, {"ID": "FBgn0034797", "EGF_Baseline": "1.11"}, {"ID": "FBgn0030079", "EGF_Baseline": "0.57"}, {"ID": "FBgn0032658", "EGF_Baseline": "1.93"}, {"ID": "FBgn0030791", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0000108", "EGF_Baseline": "-1.16"}, {"ID": "FBgn0261584", "EGF_Baseline": "0.5"}, {"ID": "FBgn0035146", "EGF_Baseline": "0.81"}, {"ID": "FBgn0034110", "EGF_Baseline": "-0.98"}, {"ID": "FBgn0032394", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0039094", "EGF_Baseline": "-1.37"}, {"ID": "FBgn0039192", "EGF_Baseline": "0.6"}, {"ID": "FBgn0010280", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0025678", "EGF_Baseline": "1.12"}, {"ID": "FBgn0025381", "EGF_Baseline": "-0.34"}, {"ID": "FBgn0027570", "EGF_Baseline": "0.29"}, {"ID": "FBgn0085413", "EGF_Baseline": "0.83"}, {"ID": "FBgn0030263", "EGF_Baseline": "0.61"}, {"ID": "FBgn0031066", "EGF_Baseline": "-1.82"}, {"ID": "FBgn0051641", "EGF_Baseline": "-1.42"}, {"ID": "FBgn0002789", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0035256", "EGF_Baseline": "0.54"}, {"ID": "FBgn0013348", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0039663", "EGF_Baseline": "-1.34"}, {"ID": "FBgn0004839", "EGF_Baseline": "0.43"}, {"ID": "FBgn0058441", "EGF_Baseline": "1.08"}, {"ID": "FBgn0013725", "EGF_Baseline": "-1.35"}, {"ID": "FBgn0050360", "EGF_Baseline": "1.24"}, {"ID": "FBgn0003867", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0052277", "EGF_Baseline": "-0.98"}, {"ID": "FBgn0053346", "EGF_Baseline": "0.27"}, {"ID": "FBgn0013809", "EGF_Baseline": "1.1"}, {"ID": "FBgn0036821", "EGF_Baseline": "0.7"}, {"ID": "FBgn0030607", "EGF_Baseline": "-0.67"}, {"ID": "FBgn0001220", "EGF_Baseline": "-1.7"}, {"ID": "FBgn0036570", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0032079", "EGF_Baseline": "0.79"}, {"ID": "FBgn0026869", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0032860", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0038090", "EGF_Baseline": "0.7"}, {"ID": "FBgn0037126", "EGF_Baseline": "0.97"}, {"ID": "FBgn0036109", "EGF_Baseline": "-0.49"}, {"ID": "FBgn0053993", "EGF_Baseline": "-1.25"}, {"ID": "FBgn0036655", "EGF_Baseline": "1.1"}, {"ID": "FBgn0051296", "EGF_Baseline": "0.66"}, {"ID": "FBgn0038549", "EGF_Baseline": "1.51"}, {"ID": "FBgn0035870", "EGF_Baseline": "0.4"}, {"ID": "FBgn0028985", "EGF_Baseline": "-1.78"}, {"ID": "FBgn0030136", "EGF_Baseline": "4.48"}, {"ID": "FBgn0037445", "EGF_Baseline": "1.32"}, {"ID": "FBgn0029672", "EGF_Baseline": "0.53"}, {"ID": "FBgn0026433", "EGF_Baseline": "1.27"}, {"ID": "FBgn0034402", "EGF_Baseline": "-0.81"}, {"ID": "FBgn0010453", "EGF_Baseline": "1.46"}, {"ID": "FBgn0015038", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0031006", "EGF_Baseline": "0.66"}, {"ID": "FBgn0026326", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0030576", "EGF_Baseline": "0.26"}, {"ID": "FBgn0035244", "EGF_Baseline": "0.74"}, {"ID": "FBgn0032147", "EGF_Baseline": "-1.5"}, {"ID": "FBgn0053333", "EGF_Baseline": "-1.52"}, {"ID": "FBgn0037883", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0031646", "EGF_Baseline": "-1.56"}, {"ID": "FBgn0030377", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0029992", "EGF_Baseline": "-1.27"}, {"ID": "FBgn0042710", "EGF_Baseline": "-0.22"}, {"ID": "FBgn0031866", "EGF_Baseline": "1.59"}, {"ID": "FBgn0003090", "EGF_Baseline": "-2.65"}, {"ID": "FBgn0051249", "EGF_Baseline": "-1.61"}, {"ID": "FBgn0052702", "EGF_Baseline": "1.49"}, {"ID": "FBgn0036629", "EGF_Baseline": "0.2"}, {"ID": "FBgn0033933", "EGF_Baseline": "0.8"}, {"ID": "FBgn0033900", "EGF_Baseline": "0.74"}, {"ID": "FBgn0086448", "EGF_Baseline": "0.12"}, {"ID": "FBgn0010768", "EGF_Baseline": "-1.34"}, {"ID": "FBgn0024996", "EGF_Baseline": "-1.72"}, {"ID": "FBgn0038179", "EGF_Baseline": "-0.18"}, {"ID": "FBgn0032924", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0001990", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0001341", "EGF_Baseline": "0.45"}, {"ID": "FBgn0052163", "EGF_Baseline": "0.75"}, {"ID": "FBgn0035790", "EGF_Baseline": "0.9"}, {"ID": "FBgn0035955", "EGF_Baseline": "1.1"}, {"ID": "FBgn0033802", "EGF_Baseline": "1.2"}, {"ID": "FBgn0036255", "EGF_Baseline": "0.83"}, {"ID": "FBgn0031518", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0038523", "EGF_Baseline": "0.84"}, {"ID": "FBgn0051287", "EGF_Baseline": "-1.24"}, {"ID": "FBgn0051778", "EGF_Baseline": "0.51"}, {"ID": "FBgn0027512", "EGF_Baseline": "-0.16"}, {"ID": "FBgn0035404", "EGF_Baseline": "-1.51"}, {"ID": "FBgn0037773", "EGF_Baseline": "-1.44"}, {"ID": "FBgn0012051", "EGF_Baseline": "-0.32"}, {"ID": "FBgn0033208", "EGF_Baseline": "-1.1"}, {"ID": "FBgn0046297", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0036336", "EGF_Baseline": "0.72"}, {"ID": "FBgn0032034", "EGF_Baseline": "0.72"}, {"ID": "FBgn0039165", "EGF_Baseline": "-1.3"}, {"ID": "FBgn0050486", "EGF_Baseline": "0.33"}, {"ID": "FBgn0028400", "EGF_Baseline": "0.8"}, {"ID": "FBgn0035405", "EGF_Baseline": "0.62"}, {"ID": "FBgn0031082", "EGF_Baseline": "1.73"}, {"ID": "FBgn0036008", "EGF_Baseline": "-0.24"}, {"ID": "FBgn0031471", "EGF_Baseline": "0.85"}, {"ID": "FBgn0031117", "EGF_Baseline": "-1.17"}, {"ID": "FBgn0029131", "EGF_Baseline": "0.42"}, {"ID": "FBgn0030703", "EGF_Baseline": "0.47"}, {"ID": "FBgn0038349", "EGF_Baseline": "0.84"}, {"ID": "FBgn0015380", "EGF_Baseline": "0.51"}, {"ID": "FBgn0053978", "EGF_Baseline": "-0.98"}, {"ID": "FBgn0004171", "EGF_Baseline": "-1.14"}, {"ID": "FBgn0026190", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0035879", "EGF_Baseline": "-1.31"}, {"ID": "FBgn0032850", "EGF_Baseline": "-1.64"}, {"ID": "FBgn0052099", "EGF_Baseline": "-0.41"}, {"ID": "FBgn0031959", "EGF_Baseline": "0.27"}, {"ID": "FBgn0038208", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0034382", "EGF_Baseline": "0.41"}, {"ID": "FBgn0013988", "EGF_Baseline": "-1.66"}, {"ID": "FBgn0039744", "EGF_Baseline": "0.7"}, {"ID": "FBgn0004779", "EGF_Baseline": "-1.46"}, {"ID": "FBgn0034624", "EGF_Baseline": "-0.98"}, {"ID": "FBgn0040814", "EGF_Baseline": "0.29"}, {"ID": "FBgn0050159", "EGF_Baseline": "1.21"}, {"ID": "FBgn0031148", "EGF_Baseline": "0.78"}, {"ID": "FBgn0039016", "EGF_Baseline": "0.62"}, {"ID": "FBgn0003312", "EGF_Baseline": "0.3"}, {"ID": "FBgn0004898", "EGF_Baseline": "0.54"}, {"ID": "FBgn0038106", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0039480", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0004174", "EGF_Baseline": "-1.38"}, {"ID": "FBgn0000061", "EGF_Baseline": "-0.67"}, {"ID": "FBgn0031713", "EGF_Baseline": "0.4"}, {"ID": "FBgn0031265", "EGF_Baseline": "0.35"}, {"ID": "FBgn0052243", "EGF_Baseline": "-0.09"}, {"ID": "FBgn0010385", "EGF_Baseline": "-1.61"}, {"ID": "FBgn0051989", "EGF_Baseline": "0.86"}, {"ID": "FBgn0040508", "EGF_Baseline": "0.67"}, {"ID": "FBgn0051005", "EGF_Baseline": "0.97"}, {"ID": "FBgn0039599", "EGF_Baseline": "1.18"}, {"ID": "FBgn0085296", "EGF_Baseline": "-1.51"}, {"ID": "FBgn0003278", "EGF_Baseline": "-1.2"}, {"ID": "FBgn0036232", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0004462", "EGF_Baseline": "2.23"}, {"ID": "FBgn0032142", "EGF_Baseline": "0.91"}, {"ID": "FBgn0038034", "EGF_Baseline": "-0.56"}, {"ID": "FBgn0028514", "EGF_Baseline": "1.31"}, {"ID": "FBgn0035308", "EGF_Baseline": "-1.22"}, {"ID": "FBgn0039642", "EGF_Baseline": "0.89"}, {"ID": "FBgn0053306", "EGF_Baseline": "-1.54"}, {"ID": "FBgn0053061", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0033697", "EGF_Baseline": "-1.25"}, {"ID": "FBgn0020510", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0025632", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0052187", "EGF_Baseline": "1.05"}, {"ID": "FBgn0032329", "EGF_Baseline": "0.95"}, {"ID": "FBgn0039038", "EGF_Baseline": "-1.2"}, {"ID": "FBgn0039764", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0032233", "EGF_Baseline": "0.58"}, {"ID": "FBgn0052364", "EGF_Baseline": "-2.2"}, {"ID": "FBgn0011581", "EGF_Baseline": "-1.28"}, {"ID": "FBgn0030766", "EGF_Baseline": "0.56"}, {"ID": "FBgn0010383", "EGF_Baseline": "-1.24"}, {"ID": "FBgn0032194", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0036847", "EGF_Baseline": "-0.59"}, {"ID": "FBgn0036369", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0030066", "EGF_Baseline": "-0.27"}, {"ID": "FBgn0050291", "EGF_Baseline": "-1.82"}, {"ID": "FBgn0040601", "EGF_Baseline": "-1.74"}, {"ID": "FBgn0086681", "EGF_Baseline": "0.33"}, {"ID": "FBgn0034329", "EGF_Baseline": "-1.36"}, {"ID": "FBgn0026077", "EGF_Baseline": "1.25"}, {"ID": "FBgn0030367", "EGF_Baseline": "0.61"}, {"ID": "FBgn0036741", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0028533", "EGF_Baseline": "0.34"}, {"ID": "FBgn0037916", "EGF_Baseline": "0.22"}, {"ID": "FBgn0052281", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0030817", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0025612", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0086899", "EGF_Baseline": "3.39"}, {"ID": "FBgn0041240", "EGF_Baseline": "-0.72"}, {"ID": "FBgn0036595", "EGF_Baseline": "-0.41"}, {"ID": "FBgn0028903", "EGF_Baseline": "-0.45"}, {"ID": "FBgn0030336", "EGF_Baseline": "1.37"}, {"ID": "FBgn0033401", "EGF_Baseline": "-1.34"}, {"ID": "FBgn0033720", "EGF_Baseline": "-1.37"}, {"ID": "FBgn0051680", "EGF_Baseline": "-0.42"}, {"ID": "FBgn0029091", "EGF_Baseline": "1.85"}, {"ID": "FBgn0036019", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0004856", "EGF_Baseline": "4.41"}, {"ID": "FBgn0039223", "EGF_Baseline": "0.29"}, {"ID": "FBgn0029968", "EGF_Baseline": "0.1"}, {"ID": "FBgn0035237", "EGF_Baseline": "1.64"}, {"ID": "FBgn0028579", "EGF_Baseline": "-0.18"}, {"ID": "FBgn0259228", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0054015", "EGF_Baseline": "0.8"}, {"ID": "FBgn0052073", "EGF_Baseline": "3.39"}, {"ID": "FBgn0034887", "EGF_Baseline": "0.12"}, {"ID": "FBgn0003391", "EGF_Baseline": "0.53"}, {"ID": "FBgn0032499", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0051561", "EGF_Baseline": "-2.31"}, {"ID": "FBgn0050279", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0085222", "EGF_Baseline": "1.29"}, {"ID": "FBgn0039031", "EGF_Baseline": "0.4"}, {"ID": "FBgn0030323", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0033760", "EGF_Baseline": "0.75"}, {"ID": "FBgn0053777", "EGF_Baseline": "2.24"}, {"ID": "FBgn0038627", "EGF_Baseline": "0.85"}, {"ID": "FBgn0030937", "EGF_Baseline": "0.51"}, {"ID": "FBgn0035999", "EGF_Baseline": "0.55"}, {"ID": "FBgn0036052", "EGF_Baseline": "0.3"}, {"ID": "FBgn0011666", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0031191", "EGF_Baseline": "-2.12"}, {"ID": "FBgn0030668", "EGF_Baseline": "-0.1"}, {"ID": "FBgn0034056", "EGF_Baseline": "-1.46"}, {"ID": "FBgn0036662", "EGF_Baseline": "-0.38"}, {"ID": "FBgn0042180", "EGF_Baseline": "0.97"}, {"ID": "FBgn0067102", "EGF_Baseline": "0.26"}, {"ID": "FBgn0033980", "EGF_Baseline": "0.77"}, {"ID": "FBgn0040797", "EGF_Baseline": "-1.56"}, {"ID": "FBgn0023529", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0035957", "EGF_Baseline": "0.52"}, {"ID": "FBgn0030241", "EGF_Baseline": "1.03"}, {"ID": "FBgn0051360", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0051538", "EGF_Baseline": "-0.24"}, {"ID": "FBgn0025643", "EGF_Baseline": "-0.49"}, {"ID": "FBgn0031652", "EGF_Baseline": "-1.16"}, {"ID": "FBgn0033301", "EGF_Baseline": "1.4"}, {"ID": "FBgn0032197", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0025641", "EGF_Baseline": "2.1"}, {"ID": "FBgn0003978", "EGF_Baseline": "0.71"}, {"ID": "FBgn0031942", "EGF_Baseline": "-1.83"}, {"ID": "FBgn0002652", "EGF_Baseline": "1.26"}, {"ID": "FBgn0036984", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0036924", "EGF_Baseline": "0.63"}, {"ID": "FBgn0014870", "EGF_Baseline": "-1.76"}, {"ID": "FBgn0011336", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0259150", "EGF_Baseline": "1.47"}, {"ID": "FBgn0085786", "EGF_Baseline": "0.45"}, {"ID": "FBgn0037714", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0038244", "EGF_Baseline": "1.13"}, {"ID": "FBgn0037697", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0004577", "EGF_Baseline": "-0.98"}, {"ID": "FBgn0085449", "EGF_Baseline": "-0.34"}, {"ID": "FBgn0038139", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0033911", "EGF_Baseline": "1.13"}, {"ID": "FBgn0042106", "EGF_Baseline": "-1.36"}, {"ID": "FBgn0030966", "EGF_Baseline": "1.33"}, {"ID": "FBgn0260874", "EGF_Baseline": "-1.33"}, {"ID": "FBgn0034802", "EGF_Baseline": "-1.31"}, {"ID": "FBgn0051816", "EGF_Baseline": "0.41"}, {"ID": "FBgn0025626", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0036437", "EGF_Baseline": "-0.28"}, {"ID": "FBgn0028738", "EGF_Baseline": "1.83"}, {"ID": "FBgn0038128", "EGF_Baseline": "-1.22"}, {"ID": "FBgn0024194", "EGF_Baseline": "0.5"}, {"ID": "FBgn0259221", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0053051", "EGF_Baseline": "0.63"}, {"ID": "FBgn0039561", "EGF_Baseline": "-1.24"}, {"ID": "FBgn0261811", "EGF_Baseline": "-0.72"}, {"ID": "FBgn0036538", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0052846", "EGF_Baseline": "-0.98"}, {"ID": "FBgn0050277", "EGF_Baseline": "0.54"}, {"ID": "FBgn0039577", "EGF_Baseline": "-0.13"}, {"ID": "FBgn0037949", "EGF_Baseline": "-1.27"}, {"ID": "FBgn0037626", "EGF_Baseline": "0.25"}, {"ID": "FBgn0066114", "EGF_Baseline": "-0.44"}, {"ID": "FBgn0001967", "EGF_Baseline": "0.73"}, {"ID": "FBgn0243516", "EGF_Baseline": "0.76"}, {"ID": "FBgn0033518", "EGF_Baseline": "0.44"}, {"ID": "FBgn0053017", "EGF_Baseline": "-0.5"}, {"ID": "FBgn0035484", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0038376", "EGF_Baseline": "-1.72"}, {"ID": "FBgn0032798", "EGF_Baseline": "1.95"}, {"ID": "FBgn0033651", "EGF_Baseline": "2.68"}, {"ID": "FBgn0051708", "EGF_Baseline": "-1.37"}, {"ID": "FBgn0037755", "EGF_Baseline": "-0.36"}, {"ID": "FBgn0037846", "EGF_Baseline": "1.11"}, {"ID": "FBgn0028552", "EGF_Baseline": "1.29"}, {"ID": "FBgn0260632", "EGF_Baseline": "1.06"}, {"ID": "FBgn0032144", "EGF_Baseline": "0.54"}, {"ID": "FBgn0039522", "EGF_Baseline": "-1.49"}, {"ID": "FBgn0038921", "EGF_Baseline": "0.59"}, {"ID": "FBgn0024491", "EGF_Baseline": "0.47"}, {"ID": "FBgn0031937", "EGF_Baseline": "-1.81"}, {"ID": "FBgn0028562", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0001202", "EGF_Baseline": "-0.28"}, {"ID": "FBgn0000808", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0032415", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0032161", "EGF_Baseline": "-0.42"}, {"ID": "FBgn0029912", "EGF_Baseline": "0.31"}, {"ID": "FBgn0035644", "EGF_Baseline": "0.94"}, {"ID": "FBgn0031729", "EGF_Baseline": "-1.74"}, {"ID": "FBgn0039735", "EGF_Baseline": "0.78"}, {"ID": "FBgn0033297", "EGF_Baseline": "-0.35"}, {"ID": "FBgn0040007", "EGF_Baseline": "3.44"}, {"ID": "FBgn0034480", "EGF_Baseline": "0.89"}, {"ID": "FBgn0027057", "EGF_Baseline": "0.93"}, {"ID": "FBgn0032677", "EGF_Baseline": "0.93"}, {"ID": "FBgn0032481", "EGF_Baseline": "-1.45"}, {"ID": "FBgn0034711", "EGF_Baseline": "0.43"}, {"ID": "FBgn0004167", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0033969", "EGF_Baseline": "1.01"}, {"ID": "FBgn0028644", "EGF_Baseline": "-1.2"}, {"ID": "FBgn0051781", "EGF_Baseline": "1.71"}, {"ID": "FBgn0003129", "EGF_Baseline": "-0.49"}, {"ID": "FBgn0026268", "EGF_Baseline": "0.68"}, {"ID": "FBgn0037826", "EGF_Baseline": "0.74"}, {"ID": "FBgn0031512", "EGF_Baseline": "0.38"}, {"ID": "FBgn0035033", "EGF_Baseline": "-2.65"}, {"ID": "FBgn0029974", "EGF_Baseline": "0.08"}, {"ID": "FBgn0021795", "EGF_Baseline": "-1.27"}, {"ID": "FBgn0034045", "EGF_Baseline": "-1.61"}, {"ID": "FBgn0039053", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0051495", "EGF_Baseline": "0.49"}, {"ID": "FBgn0022238", "EGF_Baseline": "-1.46"}, {"ID": "FBgn0035872", "EGF_Baseline": "-2.2"}, {"ID": "FBgn0039863", "EGF_Baseline": "0.45"}, {"ID": "FBgn0040349", "EGF_Baseline": "-1.33"}, {"ID": "FBgn0037141", "EGF_Baseline": "-0.72"}, {"ID": "FBgn0037802", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0259162", "EGF_Baseline": "-1.22"}, {"ID": "FBgn0000359", "EGF_Baseline": "0.49"}, {"ID": "FBgn0035196", "EGF_Baseline": "-0.37"}, {"ID": "FBgn0000451", "EGF_Baseline": "-1.7"}, {"ID": "FBgn0025693", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0025681", "EGF_Baseline": "-1.42"}, {"ID": "FBgn0038569", "EGF_Baseline": "1.86"}, {"ID": "FBgn0043455", "EGF_Baseline": "-1.64"}, {"ID": "FBgn0046888", "EGF_Baseline": "0.3"}, {"ID": "FBgn0033326", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0026566", "EGF_Baseline": "1.04"}, {"ID": "FBgn0038961", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0039002", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0035802", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0035229", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0004143", "EGF_Baseline": "0.87"}, {"ID": "FBgn0033250", "EGF_Baseline": "1.16"}, {"ID": "FBgn0035124", "EGF_Baseline": "0.61"}, {"ID": "FBgn0032057", "EGF_Baseline": "1.3"}, {"ID": "FBgn0261791", "EGF_Baseline": "0.77"}, {"ID": "FBgn0003377", "EGF_Baseline": "0.51"}, {"ID": "FBgn0019650", "EGF_Baseline": "-0.38"}, {"ID": "FBgn0039897", "EGF_Baseline": "-0.49"}, {"ID": "FBgn0038337", "EGF_Baseline": "0.43"}, {"ID": "FBgn0001086", "EGF_Baseline": "7.88"}, {"ID": "FBgn0082598", "EGF_Baseline": "0.48"}, {"ID": "FBgn0051206", "EGF_Baseline": "1.1"}, {"ID": "FBgn0039970", "EGF_Baseline": "-0.22"}, {"ID": "FBgn0030091", "EGF_Baseline": "-1.96"}, {"ID": "FBgn0040281", "EGF_Baseline": "-1.34"}, {"ID": "FBgn0032231", "EGF_Baseline": "0.48"}, {"ID": "FBgn0000227", "EGF_Baseline": "0.11"}, {"ID": "FBgn0032535", "EGF_Baseline": "-0.34"}, {"ID": "FBgn0039936", "EGF_Baseline": "-0.59"}, {"ID": "FBgn0034734", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0032090", "EGF_Baseline": "-0.35"}, {"ID": "FBgn0052413", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0010638", "EGF_Baseline": "-2.1"}, {"ID": "FBgn0039307", "EGF_Baseline": "-2.5"}, {"ID": "FBgn0021995", "EGF_Baseline": "-0.3"}, {"ID": "FBgn0039532", "EGF_Baseline": "-1.65"}, {"ID": "FBgn0033072", "EGF_Baseline": "-0.27"}, {"ID": "FBgn0032452", "EGF_Baseline": "-1.2"}, {"ID": "FBgn0259984", "EGF_Baseline": "-1.89"}, {"ID": "FBgn0037723", "EGF_Baseline": "0.81"}, {"ID": "FBgn0033347", "EGF_Baseline": "1.42"}, {"ID": "FBgn0032371", "EGF_Baseline": "-1.28"}, {"ID": "FBgn0035581", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0003008", "EGF_Baseline": "-0.25"}, {"ID": "FBgn0037550", "EGF_Baseline": "1.24"}, {"ID": "FBgn0259243", "EGF_Baseline": "-0.71"}, {"ID": "FBgn0259685", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0260932", "EGF_Baseline": "-1.57"}, {"ID": "FBgn0260486", "EGF_Baseline": "2.04"}, {"ID": "FBgn0011656", "EGF_Baseline": "0.25"}, {"ID": "FBgn0039593", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0261362", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0040392", "EGF_Baseline": "0.89"}, {"ID": "FBgn0038145", "EGF_Baseline": "1.96"}, {"ID": "FBgn0050007", "EGF_Baseline": "0.85"}, {"ID": "FBgn0051510", "EGF_Baseline": "1.62"}, {"ID": "FBgn0004406", "EGF_Baseline": "-1.73"}, {"ID": "FBgn0039769", "EGF_Baseline": "-0.4"}, {"ID": "FBgn0052313", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0033755", "EGF_Baseline": "1.74"}, {"ID": "FBgn0002525", "EGF_Baseline": "1.43"}, {"ID": "FBgn0036381", "EGF_Baseline": "-1.26"}, {"ID": "FBgn0032688", "EGF_Baseline": "-2.72"}, {"ID": "FBgn0051860", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0038017", "EGF_Baseline": "-1.73"}, {"ID": "FBgn0030407", "EGF_Baseline": "0.79"}, {"ID": "FBgn0051119", "EGF_Baseline": "0.35"}, {"ID": "FBgn0033110", "EGF_Baseline": "-1.84"}, {"ID": "FBgn0020414", "EGF_Baseline": "0.97"}, {"ID": "FBgn0011259", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0001296", "EGF_Baseline": "1.71"}, {"ID": "FBgn0036497", "EGF_Baseline": "0.54"}, {"ID": "FBgn0051809", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0036486", "EGF_Baseline": "1.12"}, {"ID": "FBgn0013433", "EGF_Baseline": "0.52"}, {"ID": "FBgn0037060", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0036768", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0036889", "EGF_Baseline": "0.82"}, {"ID": "FBgn0030915", "EGF_Baseline": "0.56"}, {"ID": "FBgn0032524", "EGF_Baseline": "-1.16"}, {"ID": "FBgn0028963", "EGF_Baseline": "0.69"}, {"ID": "FBgn0028397", "EGF_Baseline": "0.96"}, {"ID": "FBgn0037428", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0032236", "EGF_Baseline": "-2.59"}, {"ID": "FBgn0037090", "EGF_Baseline": "-0.19"}, {"ID": "FBgn0035763", "EGF_Baseline": "-1.56"}, {"ID": "FBgn0014023", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0032879", "EGF_Baseline": "-2.45"}, {"ID": "FBgn0032643", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0028569", "EGF_Baseline": "-2.12"}, {"ID": "FBgn0035674", "EGF_Baseline": "-0.35"}, {"ID": "FBgn0085382", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0038886", "EGF_Baseline": "-1.72"}, {"ID": "FBgn0036620", "EGF_Baseline": "-1.73"}, {"ID": "FBgn0003969", "EGF_Baseline": "0.64"}, {"ID": "FBgn0004516", "EGF_Baseline": "0.88"}, {"ID": "FBgn0085541", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0052373", "EGF_Baseline": "0.63"}, {"ID": "FBgn0010909", "EGF_Baseline": "-0.28"}, {"ID": "FBgn0038892", "EGF_Baseline": "-1.22"}, {"ID": "FBgn0030102", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0029846", "EGF_Baseline": "-1.43"}, {"ID": "FBgn0015031", "EGF_Baseline": "-1.52"}, {"ID": "FBgn0037911", "EGF_Baseline": "0.4"}, {"ID": "FBgn0037645", "EGF_Baseline": "3.74"}, {"ID": "FBgn0037022", "EGF_Baseline": "-0.39"}, {"ID": "FBgn0032116", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0039354", "EGF_Baseline": "-0.52"}, {"ID": "FBgn0036010", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0035094", "EGF_Baseline": "-0.24"}, {"ID": "FBgn0002707", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0261822", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0011481", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0039250", "EGF_Baseline": "0.54"}, {"ID": "FBgn0061515", "EGF_Baseline": "-1.16"}, {"ID": "FBgn0038303", "EGF_Baseline": "0.62"}, {"ID": "FBgn0033752", "EGF_Baseline": "0.85"}, {"ID": "FBgn0002945", "EGF_Baseline": "-1.82"}, {"ID": "FBgn0036947", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0031544", "EGF_Baseline": "-1.45"}, {"ID": "FBgn0052179", "EGF_Baseline": "-0.41"}, {"ID": "FBgn0038195", "EGF_Baseline": "0.63"}, {"ID": "FBgn0019662", "EGF_Baseline": "-1.51"}, {"ID": "FBgn0052230", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0054005", "EGF_Baseline": "-1.58"}, {"ID": "FBgn0000551", "EGF_Baseline": "0.94"}, {"ID": "FBgn0038089", "EGF_Baseline": "0.68"}, {"ID": "FBgn0035134", "EGF_Baseline": "4.24"}, {"ID": "FBgn0036512", "EGF_Baseline": "0.01"}, {"ID": "FBgn0031724", "EGF_Baseline": "-1.38"}, {"ID": "FBgn0052161", "EGF_Baseline": "-1.58"}, {"ID": "FBgn0051729", "EGF_Baseline": "1.51"}, {"ID": "FBgn0052343", "EGF_Baseline": "1.26"}, {"ID": "FBgn0004591", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0033459", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0034197", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0020261", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0052681", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0038811", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0033174", "EGF_Baseline": "1.45"}, {"ID": "FBgn0029152", "EGF_Baseline": "-1.27"}, {"ID": "FBgn0031232", "EGF_Baseline": "-1.8"}, {"ID": "FBgn0023495", "EGF_Baseline": "-0.72"}, {"ID": "FBgn0039257", "EGF_Baseline": "0.68"}, {"ID": "FBgn0036451", "EGF_Baseline": "-0.59"}, {"ID": "FBgn0003130", "EGF_Baseline": "1.06"}, {"ID": "FBgn0024980", "EGF_Baseline": "0.66"}, {"ID": "FBgn0034225", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0052040", "EGF_Baseline": "1.15"}, {"ID": "FBgn0029961", "EGF_Baseline": "0.43"}, {"ID": "FBgn0035444", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0037690", "EGF_Baseline": "0.11"}, {"ID": "FBgn0031905", "EGF_Baseline": "0.75"}, {"ID": "FBgn0260459", "EGF_Baseline": "0.9"}, {"ID": "FBgn0033769", "EGF_Baseline": "0.73"}, {"ID": "FBgn0000565", "EGF_Baseline": "-1.1"}, {"ID": "FBgn0014861", "EGF_Baseline": "-1.36"}, {"ID": "FBgn0037351", "EGF_Baseline": "1.67"}, {"ID": "FBgn0028858", "EGF_Baseline": "1.19"}, {"ID": "FBgn0036286", "EGF_Baseline": "0.97"}, {"ID": "FBgn0031413", "EGF_Baseline": "-1.9"}, {"ID": "FBgn0033987", "EGF_Baseline": "0.86"}, {"ID": "FBgn0260968", "EGF_Baseline": "-1.51"}, {"ID": "FBgn0029704", "EGF_Baseline": "0.51"}, {"ID": "FBgn0020386", "EGF_Baseline": "1.93"}, {"ID": "FBgn0039147", "EGF_Baseline": "-0.63"}, {"ID": "FBgn0030301", "EGF_Baseline": "-1.71"}, {"ID": "FBgn0063498", "EGF_Baseline": "-1.58"}, {"ID": "FBgn0035720", "EGF_Baseline": "-1.91"}, {"ID": "FBgn0031460", "EGF_Baseline": "-1.61"}, {"ID": "FBgn0261262", "EGF_Baseline": "-2.09"}, {"ID": "FBgn0039644", "EGF_Baseline": "-0.29"}, {"ID": "FBgn0032671", "EGF_Baseline": "0.89"}, {"ID": "FBgn0034283", "EGF_Baseline": "0.21"}, {"ID": "FBgn0031372", "EGF_Baseline": "1.16"}, {"ID": "FBgn0053292", "EGF_Baseline": "0.76"}, {"ID": "FBgn0035982", "EGF_Baseline": "0.06"}, {"ID": "FBgn0051804", "EGF_Baseline": "-1.17"}, {"ID": "FBgn0038799", "EGF_Baseline": "0.71"}, {"ID": "FBgn0027786", "EGF_Baseline": "0.87"}, {"ID": "FBgn0052557", "EGF_Baseline": "1.09"}, {"ID": "FBgn0023527", "EGF_Baseline": "-0.31"}, {"ID": "FBgn0032911", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0021872", "EGF_Baseline": "0.54"}, {"ID": "FBgn0031042", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0050431", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0032836", "EGF_Baseline": "0.45"}, {"ID": "FBgn0051021", "EGF_Baseline": "-0.52"}, {"ID": "FBgn0033717", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0063368", "EGF_Baseline": "0.84"}, {"ID": "FBgn0036181", "EGF_Baseline": "1.59"}, {"ID": "FBgn0039689", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0052000", "EGF_Baseline": "0.14"}, {"ID": "FBgn0259922", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0004403", "EGF_Baseline": "4.38"}, {"ID": "FBgn0000577", "EGF_Baseline": "1.01"}, {"ID": "FBgn0001090", "EGF_Baseline": "2.21"}, {"ID": "FBgn0029943", "EGF_Baseline": "0.57"}, {"ID": "FBgn0034961", "EGF_Baseline": "-1.6"}, {"ID": "FBgn0085370", "EGF_Baseline": "-1.53"}, {"ID": "FBgn0020369", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0031969", "EGF_Baseline": "1.13"}, {"ID": "FBgn0003254", "EGF_Baseline": "-1.8"}, {"ID": "FBgn0050043", "EGF_Baseline": "-0.71"}, {"ID": "FBgn0033788", "EGF_Baseline": "0.27"}, {"ID": "FBgn0041184", "EGF_Baseline": "0.55"}, {"ID": "FBgn0031337", "EGF_Baseline": "1.25"}, {"ID": "FBgn0032013", "EGF_Baseline": "0.58"}, {"ID": "FBgn0033727", "EGF_Baseline": "-1.47"}, {"ID": "FBgn0052668", "EGF_Baseline": "0.47"}, {"ID": "FBgn0037560", "EGF_Baseline": "0.22"}, {"ID": "FBgn0034218", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0035620", "EGF_Baseline": "-1.75"}, {"ID": "FBgn0040949", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0050110", "EGF_Baseline": "0.5"}, {"ID": "FBgn0033498", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0029835", "EGF_Baseline": "1.2"}, {"ID": "FBgn0003205", "EGF_Baseline": "-5.54"}, {"ID": "FBgn0030683", "EGF_Baseline": "0.34"}, {"ID": "FBgn0035372", "EGF_Baseline": "1.03"}, {"ID": "FBgn0086251", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0030092", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0039554", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0010435", "EGF_Baseline": "-1.39"}, {"ID": "FBgn0037068", "EGF_Baseline": "0.77"}, {"ID": "FBgn0004362", "EGF_Baseline": "-1.77"}, {"ID": "FBgn0032956", "EGF_Baseline": "-0.2"}, {"ID": "FBgn0000024", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0034410", "EGF_Baseline": "3.28"}, {"ID": "FBgn0038257", "EGF_Baseline": "-1.11"}, {"ID": "FBgn0004369", "EGF_Baseline": "-1.63"}, {"ID": "FBgn0085330", "EGF_Baseline": "1.92"}, {"ID": "FBgn0031872", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0025336", "EGF_Baseline": "1.08"}, {"ID": "FBgn0033891", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0023510", "EGF_Baseline": "1.1"}, {"ID": "FBgn0261291", "EGF_Baseline": "-1.5"}, {"ID": "FBgn0038678", "EGF_Baseline": "-1.1"}, {"ID": "FBgn0017556", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0259701", "EGF_Baseline": "0.58"}, {"ID": "FBgn0036640", "EGF_Baseline": "-1.44"}, {"ID": "FBgn0036880", "EGF_Baseline": "-1.43"}, {"ID": "FBgn0030439", "EGF_Baseline": "-1.74"}, {"ID": "FBgn0030735", "EGF_Baseline": "-0.81"}, {"ID": "FBgn0261285", "EGF_Baseline": "0.49"}, {"ID": "FBgn0085430", "EGF_Baseline": "-1.17"}, {"ID": "FBgn0038458", "EGF_Baseline": "-0.34"}, {"ID": "FBgn0031115", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0037881", "EGF_Baseline": "-0.34"}, {"ID": "FBgn0035892", "EGF_Baseline": "-1"}, {"ID": "FBgn0010591", "EGF_Baseline": "-0.34"}, {"ID": "FBgn0034573", "EGF_Baseline": "-1.43"}, {"ID": "FBgn0028516", "EGF_Baseline": "0.88"}, {"ID": "FBgn0261634", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0032024", "EGF_Baseline": "2.12"}, {"ID": "FBgn0001256", "EGF_Baseline": "1.75"}, {"ID": "FBgn0039802", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0010040", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0000490", "EGF_Baseline": "1.12"}, {"ID": "FBgn0038499", "EGF_Baseline": "-1.78"}, {"ID": "FBgn0011743", "EGF_Baseline": "0.71"}, {"ID": "FBgn0030964", "EGF_Baseline": "0.98"}, {"ID": "FBgn0052572", "EGF_Baseline": "0.47"}, {"ID": "FBgn0038168", "EGF_Baseline": "-1.54"}, {"ID": "FBgn0027554", "EGF_Baseline": "0.77"}, {"ID": "FBgn0038166", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0032699", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0030895", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0033868", "EGF_Baseline": "2.12"}, {"ID": "FBgn0053111", "EGF_Baseline": "-0.98"}, {"ID": "FBgn0036147", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0038851", "EGF_Baseline": "-0.5"}, {"ID": "FBgn0010019", "EGF_Baseline": "0.19"}, {"ID": "FBgn0028375", "EGF_Baseline": "1"}, {"ID": "FBgn0087035", "EGF_Baseline": "0.64"}, {"ID": "FBgn0037683", "EGF_Baseline": "-2.25"}, {"ID": "FBgn0085351", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0039666", "EGF_Baseline": "-1.43"}, {"ID": "FBgn0051410", "EGF_Baseline": "0.63"}, {"ID": "FBgn0032585", "EGF_Baseline": "0.26"}, {"ID": "FBgn0259247", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0030695", "EGF_Baseline": "0.05"}, {"ID": "FBgn0037950", "EGF_Baseline": "-2.12"}, {"ID": "FBgn0039088", "EGF_Baseline": "-0.52"}, {"ID": "FBgn0011722", "EGF_Baseline": "2.53"}, {"ID": "FBgn0261395", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0038223", "EGF_Baseline": "-1.14"}, {"ID": "FBgn0034276", "EGF_Baseline": "-2.04"}, {"ID": "FBgn0030345", "EGF_Baseline": "0.73"}, {"ID": "FBgn0036815", "EGF_Baseline": "0.51"}, {"ID": "FBgn0037780", "EGF_Baseline": "-1.76"}, {"ID": "FBgn0038132", "EGF_Baseline": "-0.27"}, {"ID": "FBgn0085312", "EGF_Baseline": "-1.5"}, {"ID": "FBgn0036782", "EGF_Baseline": "1.52"}, {"ID": "FBgn0034871", "EGF_Baseline": "-0.26"}, {"ID": "FBgn0259878", "EGF_Baseline": "-1.63"}, {"ID": "FBgn0003482", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0033927", "EGF_Baseline": "0.25"}, {"ID": "FBgn0032087", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0030018", "EGF_Baseline": "-0.44"}, {"ID": "FBgn0036352", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0051032", "EGF_Baseline": "0.92"}, {"ID": "FBgn0034902", "EGF_Baseline": "-1"}, {"ID": "FBgn0028370", "EGF_Baseline": "-1.39"}, {"ID": "FBgn0035753", "EGF_Baseline": "6.42"}, {"ID": "FBgn0025525", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0000557", "EGF_Baseline": "1.14"}, {"ID": "FBgn0031284", "EGF_Baseline": "-0.43"}, {"ID": "FBgn0030400", "EGF_Baseline": "1.34"}, {"ID": "FBgn0034552", "EGF_Baseline": "-0.44"}, {"ID": "FBgn0026150", "EGF_Baseline": "1.31"}, {"ID": "FBgn0036862", "EGF_Baseline": "-0.45"}, {"ID": "FBgn0036324", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0033995", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0015791", "EGF_Baseline": "0.91"}, {"ID": "FBgn0031187", "EGF_Baseline": "-1"}, {"ID": "FBgn0001123", "EGF_Baseline": "-1.16"}, {"ID": "FBgn0035911", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0033861", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0036249", "EGF_Baseline": "0.59"}, {"ID": "FBgn0086611", "EGF_Baseline": "-1.57"}, {"ID": "FBgn0027582", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0037465", "EGF_Baseline": "0.95"}, {"ID": "FBgn0035176", "EGF_Baseline": "-1.89"}, {"ID": "FBgn0031252", "EGF_Baseline": "5.53"}, {"ID": "FBgn0053281", "EGF_Baseline": "-1.47"}, {"ID": "FBgn0033742", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0038511", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0039153", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0004867", "EGF_Baseline": "2.33"}, {"ID": "FBgn0031217", "EGF_Baseline": "1.38"}, {"ID": "FBgn0051475", "EGF_Baseline": "-0.34"}, {"ID": "FBgn0037344", "EGF_Baseline": "-0.05"}, {"ID": "FBgn0037387", "EGF_Baseline": "1.37"}, {"ID": "FBgn0035458", "EGF_Baseline": "-1.63"}, {"ID": "FBgn0261619", "EGF_Baseline": "-1.84"}, {"ID": "FBgn0004244", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0027561", "EGF_Baseline": "0.9"}, {"ID": "FBgn0034027", "EGF_Baseline": "-1.37"}, {"ID": "FBgn0032494", "EGF_Baseline": "1.29"}, {"ID": "FBgn0030011", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0011829", "EGF_Baseline": "-1.5"}, {"ID": "FBgn0036590", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0002933", "EGF_Baseline": "-0.42"}, {"ID": "FBgn0030051", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0031476", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0039344", "EGF_Baseline": "0.77"}, {"ID": "FBgn0035524", "EGF_Baseline": "1.28"}, {"ID": "FBgn0034931", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0037933", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0032514", "EGF_Baseline": "-1.28"}, {"ID": "FBgn0031941", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0032119", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0034914", "EGF_Baseline": "2.17"}, {"ID": "FBgn0053234", "EGF_Baseline": "0.91"}, {"ID": "FBgn0029667", "EGF_Baseline": "-1.5"}, {"ID": "FBgn0032437", "EGF_Baseline": "-1.76"}, {"ID": "FBgn0034651", "EGF_Baseline": "0.83"}, {"ID": "FBgn0086907", "EGF_Baseline": "1.27"}, {"ID": "FBgn0015777", "EGF_Baseline": "-1.28"}, {"ID": "FBgn0034143", "EGF_Baseline": "1.43"}, {"ID": "FBgn0051793", "EGF_Baseline": "1.04"}, {"ID": "FBgn0038957", "EGF_Baseline": "-0.15"}, {"ID": "FBgn0035462", "EGF_Baseline": "-1.3"}, {"ID": "FBgn0035210", "EGF_Baseline": "2.04"}, {"ID": "FBgn0034127", "EGF_Baseline": "1.35"}, {"ID": "FBgn0026372", "EGF_Baseline": "2.99"}, {"ID": "FBgn0260934", "EGF_Baseline": "-1.89"}, {"ID": "FBgn0037414", "EGF_Baseline": "0.7"}, {"ID": "FBgn0035082", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0039774", "EGF_Baseline": "0.64"}, {"ID": "FBgn0039008", "EGF_Baseline": "-0.36"}, {"ID": "FBgn0013753", "EGF_Baseline": "1.55"}, {"ID": "FBgn0051643", "EGF_Baseline": "-1.11"}, {"ID": "FBgn0259716", "EGF_Baseline": "1.41"}, {"ID": "FBgn0028572", "EGF_Baseline": "-1.48"}, {"ID": "FBgn0029649", "EGF_Baseline": "1.49"}, {"ID": "FBgn0040340", "EGF_Baseline": "-1.34"}, {"ID": "FBgn0086901", "EGF_Baseline": "-1.57"}, {"ID": "FBgn0035057", "EGF_Baseline": "0.93"}, {"ID": "FBgn0033573", "EGF_Baseline": "0.19"}, {"ID": "FBgn0037295", "EGF_Baseline": "-2.47"}, {"ID": "FBgn0052483", "EGF_Baseline": "0.58"}, {"ID": "FBgn0034330", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0036925", "EGF_Baseline": "0.62"}, {"ID": "FBgn0015625", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0028369", "EGF_Baseline": "1.33"}, {"ID": "FBgn0051525", "EGF_Baseline": "1.22"}, {"ID": "FBgn0035915", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0038723", "EGF_Baseline": "0.96"}, {"ID": "FBgn0037906", "EGF_Baseline": "1.6"}, {"ID": "FBgn0014010", "EGF_Baseline": "0.96"}, {"ID": "FBgn0004395", "EGF_Baseline": "1.36"}, {"ID": "FBgn0053460", "EGF_Baseline": "0.92"}, {"ID": "FBgn0032880", "EGF_Baseline": "-1.14"}, {"ID": "FBgn0053919", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0053252", "EGF_Baseline": "-1.5"}, {"ID": "FBgn0037974", "EGF_Baseline": "1.92"}, {"ID": "FBgn0030877", "EGF_Baseline": "-1.62"}, {"ID": "FBgn0026192", "EGF_Baseline": "-1.11"}, {"ID": "FBgn0031052", "EGF_Baseline": "1.46"}, {"ID": "FBgn0024248", "EGF_Baseline": "1.34"}, {"ID": "FBgn0000147", "EGF_Baseline": "1.77"}, {"ID": "FBgn0030812", "EGF_Baseline": "0.39"}, {"ID": "FBgn0052645", "EGF_Baseline": "-1.27"}, {"ID": "FBgn0037220", "EGF_Baseline": "-0.34"}, {"ID": "FBgn0022960", "EGF_Baseline": "1.43"}, {"ID": "FBgn0033365", "EGF_Baseline": "-0.32"}, {"ID": "FBgn0036998", "EGF_Baseline": "1.33"}, {"ID": "FBgn0038054", "EGF_Baseline": "-0.52"}, {"ID": "FBgn0038461", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0035947", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0046258", "EGF_Baseline": "1.31"}, {"ID": "FBgn0032222", "EGF_Baseline": "-0.38"}, {"ID": "FBgn0028434", "EGF_Baseline": "1.54"}, {"ID": "FBgn0024994", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0261723", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0031435", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0030876", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0010323", "EGF_Baseline": "-1.61"}, {"ID": "FBgn0021765", "EGF_Baseline": "0.34"}, {"ID": "FBgn0036325", "EGF_Baseline": "1.04"}, {"ID": "FBgn0038859", "EGF_Baseline": "0.75"}, {"ID": "FBgn0038546", "EGF_Baseline": "1.42"}, {"ID": "FBgn0034510", "EGF_Baseline": "0.53"}, {"ID": "FBgn0016792", "EGF_Baseline": "-2.11"}, {"ID": "FBgn0016697", "EGF_Baseline": "-1.5"}, {"ID": "FBgn0030851", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0031391", "EGF_Baseline": "-1.64"}, {"ID": "FBgn0033593", "EGF_Baseline": "-1.87"}, {"ID": "FBgn0028862", "EGF_Baseline": "-0.3"}, {"ID": "FBgn0024977", "EGF_Baseline": "0.41"}, {"ID": "FBgn0036217", "EGF_Baseline": "0.52"}, {"ID": "FBgn0034704", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0250785", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0083956", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0035469", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0039889", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0030612", "EGF_Baseline": "-1.11"}, {"ID": "FBgn0001079", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0037139", "EGF_Baseline": "-1.35"}, {"ID": "FBgn0039319", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0003520", "EGF_Baseline": "-1.6"}, {"ID": "FBgn0260789", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0039297", "EGF_Baseline": "0.59"}, {"ID": "FBgn0030258", "EGF_Baseline": "0.47"}, {"ID": "FBgn0038429", "EGF_Baseline": "-0.27"}, {"ID": "FBgn0032972", "EGF_Baseline": "0.42"}, {"ID": "FBgn0040322", "EGF_Baseline": "1.92"}, {"ID": "FBgn0037855", "EGF_Baseline": "0.77"}, {"ID": "FBgn0036362", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0039368", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0035159", "EGF_Baseline": "0.3"}, {"ID": "FBgn0036688", "EGF_Baseline": "0.45"}, {"ID": "FBgn0019936", "EGF_Baseline": "5.19"}, {"ID": "FBgn0036665", "EGF_Baseline": "2.14"}, {"ID": "FBgn0028427", "EGF_Baseline": "1.06"}, {"ID": "FBgn0033247", "EGF_Baseline": "0.17"}, {"ID": "FBgn0040967", "EGF_Baseline": "-1.28"}, {"ID": "FBgn0034697", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0260437", "EGF_Baseline": "0.36"}, {"ID": "FBgn0040079", "EGF_Baseline": "0.91"}, {"ID": "FBgn0039312", "EGF_Baseline": "-1.22"}, {"ID": "FBgn0026582", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0039081", "EGF_Baseline": "1.14"}, {"ID": "FBgn0037985", "EGF_Baseline": "0.85"}, {"ID": "FBgn0035867", "EGF_Baseline": "0.47"}, {"ID": "FBgn0052268", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0259734", "EGF_Baseline": "1.27"}, {"ID": "FBgn0027835", "EGF_Baseline": "1.16"}, {"ID": "FBgn0035343", "EGF_Baseline": "0.24"}, {"ID": "FBgn0030477", "EGF_Baseline": "1.76"}, {"ID": "FBgn0038076", "EGF_Baseline": "1.12"}, {"ID": "FBgn0041626", "EGF_Baseline": "-0.08"}, {"ID": "FBgn0038531", "EGF_Baseline": "-1.36"}, {"ID": "FBgn0015925", "EGF_Baseline": "0.27"}, {"ID": "FBgn0037330", "EGF_Baseline": "-0.56"}, {"ID": "FBgn0031926", "EGF_Baseline": "0.63"}, {"ID": "FBgn0015721", "EGF_Baseline": "0.64"}, {"ID": "FBgn0010830", "EGF_Baseline": "0.98"}, {"ID": "FBgn0039828", "EGF_Baseline": "1"}, {"ID": "FBgn0033817", "EGF_Baseline": "0.49"}, {"ID": "FBgn0031639", "EGF_Baseline": "-1.23"}, {"ID": "FBgn0029768", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0035491", "EGF_Baseline": "0.86"}, {"ID": "FBgn0027335", "EGF_Baseline": "1.27"}, {"ID": "FBgn0036715", "EGF_Baseline": "0.35"}, {"ID": "FBgn0030004", "EGF_Baseline": "-1.73"}, {"ID": "FBgn0051163", "EGF_Baseline": "1.83"}, {"ID": "FBgn0036264", "EGF_Baseline": "2.11"}, {"ID": "FBgn0038114", "EGF_Baseline": "-1.58"}, {"ID": "FBgn0045487", "EGF_Baseline": "-1.17"}, {"ID": "FBgn0033640", "EGF_Baseline": "1.99"}, {"ID": "FBgn0003719", "EGF_Baseline": "0.36"}, {"ID": "FBgn0261554", "EGF_Baseline": "-2.09"}, {"ID": "FBgn0000206", "EGF_Baseline": "-0.44"}, {"ID": "FBgn0002569", "EGF_Baseline": "1.62"}, {"ID": "FBgn0040366", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0003943", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0046696", "EGF_Baseline": "-1.27"}, {"ID": "FBgn0029853", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0085369", "EGF_Baseline": "1.64"}, {"ID": "FBgn0032730", "EGF_Baseline": "-1.56"}, {"ID": "FBgn0031925", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0259098", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0038293", "EGF_Baseline": "-0.27"}, {"ID": "FBgn0030354", "EGF_Baseline": "-1.63"}, {"ID": "FBgn0035150", "EGF_Baseline": "0.33"}, {"ID": "FBgn0035431", "EGF_Baseline": "0.61"}, {"ID": "FBgn0019940", "EGF_Baseline": "0.94"}, {"ID": "FBgn0027296", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0034317", "EGF_Baseline": "0.29"}, {"ID": "FBgn0035271", "EGF_Baseline": "0.52"}, {"ID": "FBgn0036372", "EGF_Baseline": "-0.38"}, {"ID": "FBgn0019949", "EGF_Baseline": "0.96"}, {"ID": "FBgn0034494", "EGF_Baseline": "0.43"}, {"ID": "FBgn0261356", "EGF_Baseline": "1.27"}, {"ID": "FBgn0037231", "EGF_Baseline": "1.03"}, {"ID": "FBgn0001337", "EGF_Baseline": "1.3"}, {"ID": "FBgn0042189", "EGF_Baseline": "-1.57"}, {"ID": "FBgn0030846", "EGF_Baseline": "0.53"}, {"ID": "FBgn0036062", "EGF_Baseline": "0.63"}, {"ID": "FBgn0085498", "EGF_Baseline": "-1.37"}, {"ID": "FBgn0031853", "EGF_Baseline": "0.55"}, {"ID": "FBgn0003375", "EGF_Baseline": "-0.59"}, {"ID": "FBgn0038491", "EGF_Baseline": "0.2"}, {"ID": "FBgn0033132", "EGF_Baseline": "0.56"}, {"ID": "FBgn0034413", "EGF_Baseline": "1.55"}, {"ID": "FBgn0051419", "EGF_Baseline": "1.29"}, {"ID": "FBgn0052944", "EGF_Baseline": "2.15"}, {"ID": "FBgn0051855", "EGF_Baseline": "-1.65"}, {"ID": "FBgn0039682", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0039290", "EGF_Baseline": "0.1"}, {"ID": "FBgn0085280", "EGF_Baseline": "-1.47"}, {"ID": "FBgn0052677", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0036222", "EGF_Baseline": "-0.25"}, {"ID": "FBgn0034240", "EGF_Baseline": "-0.34"}, {"ID": "FBgn0034037", "EGF_Baseline": "0.63"}, {"ID": "FBgn0051380", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0033502", "EGF_Baseline": "0.34"}, {"ID": "FBgn0034786", "EGF_Baseline": "0.94"}, {"ID": "FBgn0034133", "EGF_Baseline": "1.18"}, {"ID": "FBgn0013672", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0033540", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0033971", "EGF_Baseline": "0.9"}, {"ID": "FBgn0038355", "EGF_Baseline": "-1.58"}, {"ID": "FBgn0031758", "EGF_Baseline": "0.88"}, {"ID": "FBgn0031379", "EGF_Baseline": "-0.71"}, {"ID": "FBgn0004028", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0030163", "EGF_Baseline": "1.64"}, {"ID": "FBgn0037378", "EGF_Baseline": "-1.7"}, {"ID": "FBgn0034923", "EGF_Baseline": "-2.35"}, {"ID": "FBgn0028938", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0035102", "EGF_Baseline": "0.98"}, {"ID": "FBgn0038983", "EGF_Baseline": "0.94"}, {"ID": "FBgn0037580", "EGF_Baseline": "-0.91"}, {"ID": "FBgn0034601", "EGF_Baseline": "-1.95"}, {"ID": "FBgn0051954", "EGF_Baseline": "0.44"}, {"ID": "FBgn0023178", "EGF_Baseline": "-1.14"}, {"ID": "FBgn0039404", "EGF_Baseline": "1.01"}, {"ID": "FBgn0038218", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0000360", "EGF_Baseline": "0.68"}, {"ID": "FBgn0003149", "EGF_Baseline": "-1.37"}, {"ID": "FBgn0037134", "EGF_Baseline": "-0.54"}, {"ID": "FBgn0013764", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0039360", "EGF_Baseline": "-1.04"}, {"ID": "FBgn0028987", "EGF_Baseline": "0.76"}, {"ID": "FBgn0033448", "EGF_Baseline": "-1.25"}, {"ID": "FBgn0036260", "EGF_Baseline": "1.5"}, {"ID": "FBgn0054025", "EGF_Baseline": "0.38"}, {"ID": "FBgn0035392", "EGF_Baseline": "-1.99"}, {"ID": "FBgn0033834", "EGF_Baseline": "0.17"}, {"ID": "FBgn0033658", "EGF_Baseline": "0.63"}, {"ID": "FBgn0053689", "EGF_Baseline": "0.75"}, {"ID": "FBgn0024542", "EGF_Baseline": "-1.38"}, {"ID": "FBgn0023507", "EGF_Baseline": "0.24"}, {"ID": "FBgn0036240", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0040355", "EGF_Baseline": "-0.84"}, {"ID": "FBgn0050286", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0052703", "EGF_Baseline": "-1.04"}, {"ID": "FBgn0053465", "EGF_Baseline": "0.67"}, {"ID": "FBgn0011291", "EGF_Baseline": "0.4"}, {"ID": "FBgn0038108", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0031971", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0030759", "EGF_Baseline": "-0.63"}, {"ID": "FBgn0085411", "EGF_Baseline": "0.97"}, {"ID": "FBgn0028372", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0033961", "EGF_Baseline": "0.49"}, {"ID": "FBgn0033683", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0015571", "EGF_Baseline": "-1.71"}, {"ID": "FBgn0046697", "EGF_Baseline": "1.16"}, {"ID": "FBgn0019948", "EGF_Baseline": "-1.25"}, {"ID": "FBgn0033479", "EGF_Baseline": "-0.28"}, {"ID": "FBgn0016672", "EGF_Baseline": "-1.2"}, {"ID": "FBgn0052249", "EGF_Baseline": "-1.21"}, {"ID": "FBgn0034401", "EGF_Baseline": "-1.1"}, {"ID": "FBgn0015803", "EGF_Baseline": "0.63"}, {"ID": "FBgn0034406", "EGF_Baseline": "0.54"}, {"ID": "FBgn0001330", "EGF_Baseline": "0.59"}, {"ID": "FBgn0010441", "EGF_Baseline": "0.53"}, {"ID": "FBgn0036941", "EGF_Baseline": "-1.62"}, {"ID": "FBgn0001142", "EGF_Baseline": "-1.26"}, {"ID": "FBgn0003169", "EGF_Baseline": "0.38"}, {"ID": "FBgn0037232", "EGF_Baseline": "0.34"}, {"ID": "FBgn0004419", "EGF_Baseline": "1.38"}, {"ID": "FBgn0037808", "EGF_Baseline": "-0.3"}, {"ID": "FBgn0052104", "EGF_Baseline": "-0.91"}, {"ID": "FBgn0036956", "EGF_Baseline": "-1.9"}, {"ID": "FBgn0029700", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0029665", "EGF_Baseline": "-0.23"}, {"ID": "FBgn0034428", "EGF_Baseline": "-1.48"}, {"ID": "FBgn0028422", "EGF_Baseline": "0.79"}, {"ID": "FBgn0037662", "EGF_Baseline": "0.16"}, {"ID": "FBgn0029722", "EGF_Baseline": "1.3"}, {"ID": "FBgn0041229", "EGF_Baseline": "1.29"}, {"ID": "FBgn0029173", "EGF_Baseline": "-1.96"}, {"ID": "FBgn0033194", "EGF_Baseline": "0.66"}, {"ID": "FBgn0035817", "EGF_Baseline": "0.3"}, {"ID": "FBgn0036223", "EGF_Baseline": "0.33"}, {"ID": "FBgn0017457", "EGF_Baseline": "-2.5"}, {"ID": "FBgn0050195", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0030357", "EGF_Baseline": "-1.51"}, {"ID": "FBgn0038874", "EGF_Baseline": "1.63"}, {"ID": "FBgn0000442", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0035520", "EGF_Baseline": "1.04"}, {"ID": "FBgn0038612", "EGF_Baseline": "1.5"}, {"ID": "FBgn0042085", "EGF_Baseline": "-0.77"}, {"ID": "FBgn0039862", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0039838", "EGF_Baseline": "1.53"}, {"ID": "FBgn0050185", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0024956", "EGF_Baseline": "0.43"}, {"ID": "FBgn0034982", "EGF_Baseline": "0.01"}, {"ID": "FBgn0040070", "EGF_Baseline": "0.7"}, {"ID": "FBgn0037653", "EGF_Baseline": "-0.23"}, {"ID": "FBgn0025630", "EGF_Baseline": "0.51"}, {"ID": "FBgn0025683", "EGF_Baseline": "1.43"}, {"ID": "FBgn0002914", "EGF_Baseline": "1.36"}, {"ID": "FBgn0037574", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0032856", "EGF_Baseline": "-1.89"}, {"ID": "FBgn0001986", "EGF_Baseline": "1.39"}, {"ID": "FBgn0034118", "EGF_Baseline": "0.96"}, {"ID": "FBgn0020300", "EGF_Baseline": "0.78"}, {"ID": "FBgn0038752", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0034290", "EGF_Baseline": "-1.71"}, {"ID": "FBgn0037142", "EGF_Baseline": "1.54"}, {"ID": "FBgn0003382", "EGF_Baseline": "-1.3"}, {"ID": "FBgn0000287", "EGF_Baseline": "-0.42"}, {"ID": "FBgn0032988", "EGF_Baseline": "10.6"}, {"ID": "FBgn0039286", "EGF_Baseline": "1.56"}, {"ID": "FBgn0032790", "EGF_Baseline": "1"}, {"ID": "FBgn0030804", "EGF_Baseline": "0.15"}, {"ID": "FBgn0039264", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0003502", "EGF_Baseline": "-1.04"}, {"ID": "FBgn0032032", "EGF_Baseline": "0.96"}, {"ID": "FBgn0038401", "EGF_Baseline": "2.31"}, {"ID": "FBgn0016726", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0041203", "EGF_Baseline": "0.16"}, {"ID": "FBgn0039463", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0037167", "EGF_Baseline": "1.23"}, {"ID": "FBgn0031573", "EGF_Baseline": "2.21"}, {"ID": "FBgn0039821", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0010407", "EGF_Baseline": "0.69"}, {"ID": "FBgn0038741", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0036708", "EGF_Baseline": "1.61"}, {"ID": "FBgn0010417", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0033816", "EGF_Baseline": "-1.84"}, {"ID": "FBgn0261790", "EGF_Baseline": "1.95"}, {"ID": "FBgn0034062", "EGF_Baseline": "-0.59"}, {"ID": "FBgn0032754", "EGF_Baseline": "0.2"}, {"ID": "FBgn0037569", "EGF_Baseline": "-1.4"}, {"ID": "FBgn0031126", "EGF_Baseline": "0.86"}, {"ID": "FBgn0031710", "EGF_Baseline": "0.44"}, {"ID": "FBgn0035667", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0260004", "EGF_Baseline": "1.23"}, {"ID": "FBgn0261388", "EGF_Baseline": "0.58"}, {"ID": "FBgn0033454", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0261548", "EGF_Baseline": "1.61"}, {"ID": "FBgn0044324", "EGF_Baseline": "-1.45"}, {"ID": "FBgn0050008", "EGF_Baseline": "1.06"}, {"ID": "FBgn0029864", "EGF_Baseline": "-0.33"}, {"ID": "FBgn0031245", "EGF_Baseline": "-1.58"}, {"ID": "FBgn0003612", "EGF_Baseline": "0.67"}, {"ID": "FBgn0037037", "EGF_Baseline": "1.48"}, {"ID": "FBgn0039859", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0038068", "EGF_Baseline": "0.53"}, {"ID": "FBgn0031053", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0259190", "EGF_Baseline": "0.77"}, {"ID": "FBgn0025115", "EGF_Baseline": "-1.43"}, {"ID": "FBgn0036764", "EGF_Baseline": "-0.41"}, {"ID": "FBgn0005659", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0034085", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0039782", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0037987", "EGF_Baseline": "1.36"}, {"ID": "FBgn0051121", "EGF_Baseline": "-2.08"}, {"ID": "FBgn0033580", "EGF_Baseline": "-1.82"}, {"ID": "FBgn0038012", "EGF_Baseline": "-1.62"}, {"ID": "FBgn0033222", "EGF_Baseline": "-1.54"}, {"ID": "FBgn0034970", "EGF_Baseline": "-1.37"}, {"ID": "FBgn0035402", "EGF_Baseline": "-0.07"}, {"ID": "FBgn0034717", "EGF_Baseline": "0.25"}, {"ID": "FBgn0014906", "EGF_Baseline": "-1.47"}, {"ID": "FBgn0027655", "EGF_Baseline": "0.95"}, {"ID": "FBgn0038204", "EGF_Baseline": "0.43"}, {"ID": "FBgn0025382", "EGF_Baseline": "-0.16"}, {"ID": "FBgn0034611", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0259677", "EGF_Baseline": "-1.21"}, {"ID": "FBgn0051098", "EGF_Baseline": "0.21"}, {"ID": "FBgn0036870", "EGF_Baseline": "-0.5"}, {"ID": "FBgn0040512", "EGF_Baseline": "2.05"}, {"ID": "FBgn0003861", "EGF_Baseline": "0.61"}, {"ID": "FBgn0029801", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0027579", "EGF_Baseline": "0.87"}, {"ID": "FBgn0039851", "EGF_Baseline": "-1.68"}, {"ID": "FBgn0031228", "EGF_Baseline": "-1.73"}, {"ID": "FBgn0000996", "EGF_Baseline": "3.85"}, {"ID": "FBgn0053547", "EGF_Baseline": "-2.09"}, {"ID": "FBgn0051710", "EGF_Baseline": "-1.15"}, {"ID": "FBgn0032047", "EGF_Baseline": "0.46"}, {"ID": "FBgn0050089", "EGF_Baseline": "1.99"}, {"ID": "FBgn0032049", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0050026", "EGF_Baseline": "0.83"}, {"ID": "FBgn0033988", "EGF_Baseline": "0.72"}, {"ID": "FBgn0037326", "EGF_Baseline": "0.58"}, {"ID": "FBgn0003483", "EGF_Baseline": "0.31"}, {"ID": "FBgn0036953", "EGF_Baseline": "-1.99"}, {"ID": "FBgn0031717", "EGF_Baseline": "1.51"}, {"ID": "FBgn0031515", "EGF_Baseline": "-1.46"}, {"ID": "FBgn0261274", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0031304", "EGF_Baseline": "0.48"}, {"ID": "FBgn0025803", "EGF_Baseline": "2.32"}, {"ID": "FBgn0000079", "EGF_Baseline": "-1"}, {"ID": "FBgn0026438", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0004592", "EGF_Baseline": "-1.64"}, {"ID": "FBgn0036484", "EGF_Baseline": "-0.72"}, {"ID": "FBgn0052643", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0024733", "EGF_Baseline": "1.32"}, {"ID": "FBgn0020513", "EGF_Baseline": "0.55"}, {"ID": "FBgn0033460", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0038156", "EGF_Baseline": "-1.63"}, {"ID": "FBgn0023477", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0039246", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0035529", "EGF_Baseline": "0.33"}, {"ID": "FBgn0034182", "EGF_Baseline": "-1.21"}, {"ID": "FBgn0035771", "EGF_Baseline": "1.17"}, {"ID": "FBgn0034921", "EGF_Baseline": "-1.22"}, {"ID": "FBgn0050471", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0039438", "EGF_Baseline": "-1.63"}, {"ID": "FBgn0028433", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0000117", "EGF_Baseline": "-1.53"}, {"ID": "FBgn0004049", "EGF_Baseline": "1.04"}, {"ID": "FBgn0031950", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0023541", "EGF_Baseline": "-1.43"}, {"ID": "FBgn0026385", "EGF_Baseline": "-0.25"}, {"ID": "FBgn0016978", "EGF_Baseline": "-2.01"}, {"ID": "FBgn0010348", "EGF_Baseline": "1.06"}, {"ID": "FBgn0002567", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0032421", "EGF_Baseline": "-1.31"}, {"ID": "FBgn0051679", "EGF_Baseline": "0.26"}, {"ID": "FBgn0051548", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0038153", "EGF_Baseline": "-1.04"}, {"ID": "FBgn0037607", "EGF_Baseline": "0.69"}, {"ID": "FBgn0021761", "EGF_Baseline": "-0.49"}, {"ID": "FBgn0035002", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0033205", "EGF_Baseline": "-1.51"}, {"ID": "FBgn0033733", "EGF_Baseline": "-0.98"}, {"ID": "FBgn0032966", "EGF_Baseline": "-0.25"}, {"ID": "FBgn0053223", "EGF_Baseline": "2.59"}, {"ID": "FBgn0052061", "EGF_Baseline": "0.42"}, {"ID": "FBgn0053196", "EGF_Baseline": "-2.23"}, {"ID": "FBgn0028694", "EGF_Baseline": "1.13"}, {"ID": "FBgn0036235", "EGF_Baseline": "-0.32"}, {"ID": "FBgn0038359", "EGF_Baseline": "-1.2"}, {"ID": "FBgn0065032", "EGF_Baseline": "2.43"}, {"ID": "FBgn0036791", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0040363", "EGF_Baseline": "-0.37"}, {"ID": "FBgn0036877", "EGF_Baseline": "-1"}, {"ID": "FBgn0003607", "EGF_Baseline": "0.53"}, {"ID": "FBgn0034021", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0051477", "EGF_Baseline": "-1.74"}, {"ID": "FBgn0030262", "EGF_Baseline": "0.49"}, {"ID": "FBgn0032478", "EGF_Baseline": "0.41"}, {"ID": "FBgn0031559", "EGF_Baseline": "0.9"}, {"ID": "FBgn0053129", "EGF_Baseline": "-1.15"}, {"ID": "FBgn0040751", "EGF_Baseline": "0.72"}, {"ID": "FBgn0024314", "EGF_Baseline": "0.71"}, {"ID": "FBgn0022097", "EGF_Baseline": "-0.39"}, {"ID": "FBgn0030411", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0053475", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0037200", "EGF_Baseline": "-0.3"}, {"ID": "FBgn0034853", "EGF_Baseline": "1.47"}, {"ID": "FBgn0039040", "EGF_Baseline": "-0.31"}, {"ID": "FBgn0039013", "EGF_Baseline": "-0.84"}, {"ID": "FBgn0034647", "EGF_Baseline": "0.52"}, {"ID": "FBgn0003732", "EGF_Baseline": "0.4"}, {"ID": "FBgn0051464", "EGF_Baseline": "0.78"}, {"ID": "FBgn0028543", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0010258", "EGF_Baseline": "0.4"}, {"ID": "FBgn0030685", "EGF_Baseline": "0.76"}, {"ID": "FBgn0039228", "EGF_Baseline": "1.2"}, {"ID": "FBgn0030756", "EGF_Baseline": "-1.76"}, {"ID": "FBgn0037350", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0030715", "EGF_Baseline": "0.93"}, {"ID": "FBgn0015239", "EGF_Baseline": "0.2"}, {"ID": "FBgn0086706", "EGF_Baseline": "-0.44"}, {"ID": "FBgn0038685", "EGF_Baseline": "-1.25"}, {"ID": "FBgn0004584", "EGF_Baseline": "-1.95"}, {"ID": "FBgn0014427", "EGF_Baseline": "-0.66"}, {"ID": "FBgn0031640", "EGF_Baseline": "-1.42"}, {"ID": "FBgn0013767", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0031771", "EGF_Baseline": "0.68"}, {"ID": "FBgn0036910", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0015776", "EGF_Baseline": "0.7"}, {"ID": "FBgn0027615", "EGF_Baseline": "-1.56"}, {"ID": "FBgn0051867", "EGF_Baseline": "0.75"}, {"ID": "FBgn0033924", "EGF_Baseline": "0.15"}, {"ID": "FBgn0005674", "EGF_Baseline": "0.69"}, {"ID": "FBgn0039141", "EGF_Baseline": "2.36"}, {"ID": "FBgn0039761", "EGF_Baseline": "-1.16"}, {"ID": "FBgn0040651", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0033289", "EGF_Baseline": "-0.84"}, {"ID": "FBgn0032782", "EGF_Baseline": "0.98"}, {"ID": "FBgn0261397", "EGF_Baseline": "1.09"}, {"ID": "FBgn0022724", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0029809", "EGF_Baseline": "0.34"}, {"ID": "FBgn0028904", "EGF_Baseline": "-1.64"}, {"ID": "FBgn0031664", "EGF_Baseline": "-0.45"}, {"ID": "FBgn0052690", "EGF_Baseline": "1.67"}, {"ID": "FBgn0035721", "EGF_Baseline": "0.71"}, {"ID": "FBgn0038737", "EGF_Baseline": "0.62"}, {"ID": "FBgn0027507", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0011818", "EGF_Baseline": "0.7"}, {"ID": "FBgn0035760", "EGF_Baseline": "-0.71"}, {"ID": "FBgn0035776", "EGF_Baseline": "2.05"}, {"ID": "FBgn0038524", "EGF_Baseline": "-1.51"}, {"ID": "FBgn0259728", "EGF_Baseline": "0.83"}, {"ID": "FBgn0037183", "EGF_Baseline": "0.21"}, {"ID": "FBgn0037212", "EGF_Baseline": "0.55"}, {"ID": "FBgn0015129", "EGF_Baseline": "0.9"}, {"ID": "FBgn0029995", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0027453", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0015245", "EGF_Baseline": "-0.33"}, {"ID": "FBgn0038827", "EGF_Baseline": "1.54"}, {"ID": "FBgn0030237", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0032749", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0019637", "EGF_Baseline": "-1.21"}, {"ID": "FBgn0035557", "EGF_Baseline": "0.76"}, {"ID": "FBgn0260741", "EGF_Baseline": "-2.05"}, {"ID": "FBgn0250838", "EGF_Baseline": "-2.68"}, {"ID": "FBgn0036436", "EGF_Baseline": "0.5"}, {"ID": "FBgn0037464", "EGF_Baseline": "1.35"}, {"ID": "FBgn0259876", "EGF_Baseline": "1.68"}, {"ID": "FBgn0035375", "EGF_Baseline": "0.96"}, {"ID": "FBgn0040260", "EGF_Baseline": "-1.55"}, {"ID": "FBgn0037069", "EGF_Baseline": "0.77"}, {"ID": "FBgn0028886", "EGF_Baseline": "-1.17"}, {"ID": "FBgn0031996", "EGF_Baseline": "0.54"}, {"ID": "FBgn0036082", "EGF_Baseline": "-1.89"}, {"ID": "FBgn0035537", "EGF_Baseline": "-1.49"}, {"ID": "FBgn0083965", "EGF_Baseline": "0.49"}, {"ID": "FBgn0037962", "EGF_Baseline": "-2.08"}, {"ID": "FBgn0002535", "EGF_Baseline": "1.5"}, {"ID": "FBgn0039161", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0051068", "EGF_Baseline": "-1.17"}, {"ID": "FBgn0030768", "EGF_Baseline": "-1.53"}, {"ID": "FBgn0002021", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0259189", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0054038", "EGF_Baseline": "0.89"}, {"ID": "FBgn0050105", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0037562", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0000015", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0001263", "EGF_Baseline": "1.47"}, {"ID": "FBgn0003074", "EGF_Baseline": "0.46"}, {"ID": "FBgn0036520", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0031208", "EGF_Baseline": "2.13"}, {"ID": "FBgn0030628", "EGF_Baseline": "-1.47"}, {"ID": "FBgn0041781", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0026384", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0250904", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0085200", "EGF_Baseline": "0.58"}, {"ID": "FBgn0040994", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0032894", "EGF_Baseline": "1.36"}, {"ID": "FBgn0019643", "EGF_Baseline": "1.13"}, {"ID": "FBgn0053914", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0053516", "EGF_Baseline": "-1.73"}, {"ID": "FBgn0031868", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0031092", "EGF_Baseline": "0.78"}, {"ID": "FBgn0040503", "EGF_Baseline": "0.86"}, {"ID": "FBgn0040941", "EGF_Baseline": "-1.25"}, {"ID": "FBgn0038487", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0261631", "EGF_Baseline": "1.87"}, {"ID": "FBgn0031367", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0029813", "EGF_Baseline": "-1.14"}, {"ID": "FBgn0051111", "EGF_Baseline": "2.89"}, {"ID": "FBgn0013954", "EGF_Baseline": "-1.46"}, {"ID": "FBgn0050443", "EGF_Baseline": "1.11"}, {"ID": "FBgn0033127", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0031253", "EGF_Baseline": "0.07"}, {"ID": "FBgn0028468", "EGF_Baseline": "1.31"}, {"ID": "FBgn0086368", "EGF_Baseline": "0.45"}, {"ID": "FBgn0000357", "EGF_Baseline": "-0.46"}, {"ID": "FBgn0035780", "EGF_Baseline": "-0.71"}, {"ID": "FBgn0030289", "EGF_Baseline": "-1.53"}, {"ID": "FBgn0039632", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0015524", "EGF_Baseline": "2.15"}, {"ID": "FBgn0036537", "EGF_Baseline": "-1.04"}, {"ID": "FBgn0040609", "EGF_Baseline": "1.86"}, {"ID": "FBgn0035923", "EGF_Baseline": "-0.66"}, {"ID": "FBgn0034710", "EGF_Baseline": "0.45"}, {"ID": "FBgn0051002", "EGF_Baseline": "-1.33"}, {"ID": "FBgn0038099", "EGF_Baseline": "-1.4"}, {"ID": "FBgn0086359", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0003888", "EGF_Baseline": "1.75"}, {"ID": "FBgn0030538", "EGF_Baseline": "-1.63"}, {"ID": "FBgn0032815", "EGF_Baseline": "-1.16"}, {"ID": "FBgn0029642", "EGF_Baseline": "0.34"}, {"ID": "FBgn0035253", "EGF_Baseline": "1.68"}, {"ID": "FBgn0030322", "EGF_Baseline": "-0.38"}, {"ID": "FBgn0038868", "EGF_Baseline": "0.65"}, {"ID": "FBgn0030625", "EGF_Baseline": "-1.2"}, {"ID": "FBgn0031103", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0040832", "EGF_Baseline": "1.14"}, {"ID": "FBgn0261526", "EGF_Baseline": "1.42"}, {"ID": "FBgn0033041", "EGF_Baseline": "0.55"}, {"ID": "FBgn0031064", "EGF_Baseline": "-1.94"}, {"ID": "FBgn0002774", "EGF_Baseline": "-0.59"}, {"ID": "FBgn0011787", "EGF_Baseline": "1.12"}, {"ID": "FBgn0031062", "EGF_Baseline": "1.66"}, {"ID": "FBgn0039927", "EGF_Baseline": "-1.23"}, {"ID": "FBgn0035243", "EGF_Baseline": "1.63"}, {"ID": "FBgn0036927", "EGF_Baseline": "-0.67"}, {"ID": "FBgn0027079", "EGF_Baseline": "0.43"}, {"ID": "FBgn0051415", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0000659", "EGF_Baseline": "1.5"}, {"ID": "FBgn0050122", "EGF_Baseline": "0.77"}, {"ID": "FBgn0037389", "EGF_Baseline": "1.29"}, {"ID": "FBgn0026374", "EGF_Baseline": "-0.5"}, {"ID": "FBgn0003741", "EGF_Baseline": "1"}, {"ID": "FBgn0036338", "EGF_Baseline": "0.75"}, {"ID": "FBgn0030341", "EGF_Baseline": "1.2"}, {"ID": "FBgn0031310", "EGF_Baseline": "0.89"}, {"ID": "FBgn0040972", "EGF_Baseline": "0.2"}, {"ID": "FBgn0052238", "EGF_Baseline": "-0.52"}, {"ID": "FBgn0036333", "EGF_Baseline": "1.32"}, {"ID": "FBgn0033636", "EGF_Baseline": "-1.88"}, {"ID": "FBgn0030313", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0037876", "EGF_Baseline": "1.21"}, {"ID": "FBgn0035480", "EGF_Baseline": "2.23"}, {"ID": "FBgn0033452", "EGF_Baseline": "0.59"}, {"ID": "FBgn0050045", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0040256", "EGF_Baseline": "-1.04"}, {"ID": "FBgn0023528", "EGF_Baseline": "-0.15"}, {"ID": "FBgn0041239", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0027948", "EGF_Baseline": "0.51"}, {"ID": "FBgn0039789", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0260799", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0037359", "EGF_Baseline": "-0.08"}, {"ID": "FBgn0030544", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0022702", "EGF_Baseline": "1.44"}, {"ID": "FBgn0001325", "EGF_Baseline": "0.81"}, {"ID": "FBgn0032369", "EGF_Baseline": "-1"}, {"ID": "FBgn0052633", "EGF_Baseline": "-1.92"}, {"ID": "FBgn0035856", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0039665", "EGF_Baseline": "-0.3"}, {"ID": "FBgn0028487", "EGF_Baseline": "0.2"}, {"ID": "FBgn0003676", "EGF_Baseline": "2.11"}, {"ID": "FBgn0033158", "EGF_Baseline": "0.81"}, {"ID": "FBgn0039939", "EGF_Baseline": "-0.09"}, {"ID": "FBgn0030399", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0014184", "EGF_Baseline": "-1.28"}, {"ID": "FBgn0037122", "EGF_Baseline": "0.89"}, {"ID": "FBgn0085284", "EGF_Baseline": "3.03"}, {"ID": "FBgn0261535", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0038732", "EGF_Baseline": "0.27"}, {"ID": "FBgn0012034", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0031145", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0041161", "EGF_Baseline": "0.55"}, {"ID": "FBgn0003067", "EGF_Baseline": "0.84"}, {"ID": "FBgn0002578", "EGF_Baseline": "0.21"}, {"ID": "FBgn0016650", "EGF_Baseline": "-1.61"}, {"ID": "FBgn0053138", "EGF_Baseline": "1.12"}, {"ID": "FBgn0259216", "EGF_Baseline": "-1.04"}, {"ID": "FBgn0036565", "EGF_Baseline": "1.93"}, {"ID": "FBgn0035144", "EGF_Baseline": "-0.2"}, {"ID": "FBgn0033438", "EGF_Baseline": "-0.77"}, {"ID": "FBgn0250841", "EGF_Baseline": "0.32"}, {"ID": "FBgn0038272", "EGF_Baseline": "0.04"}, {"ID": "FBgn0030949", "EGF_Baseline": "-1.52"}, {"ID": "FBgn0053286", "EGF_Baseline": "1.02"}, {"ID": "FBgn0032005", "EGF_Baseline": "0.16"}, {"ID": "FBgn0038674", "EGF_Baseline": "-1.43"}, {"ID": "FBgn0015000", "EGF_Baseline": "0.61"}, {"ID": "FBgn0004907", "EGF_Baseline": "0.56"}, {"ID": "FBgn0039796", "EGF_Baseline": "0.66"}, {"ID": "FBgn0051901", "EGF_Baseline": "1.21"}, {"ID": "FBgn0037379", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0039204", "EGF_Baseline": "0.38"}, {"ID": "FBgn0032515", "EGF_Baseline": "-1.57"}, {"ID": "FBgn0029079", "EGF_Baseline": "1.51"}, {"ID": "FBgn0034397", "EGF_Baseline": "0.61"}, {"ID": "FBgn0003321", "EGF_Baseline": "1.45"}, {"ID": "FBgn0027601", "EGF_Baseline": "1.28"}, {"ID": "FBgn0003255", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0036552", "EGF_Baseline": "-0.34"}, {"ID": "FBgn0032290", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0261854", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0030940", "EGF_Baseline": "4.58"}, {"ID": "FBgn0030774", "EGF_Baseline": "-1.63"}, {"ID": "FBgn0037500", "EGF_Baseline": "0.49"}, {"ID": "FBgn0261800", "EGF_Baseline": "0.54"}, {"ID": "FBgn0003638", "EGF_Baseline": "0.44"}, {"ID": "FBgn0032094", "EGF_Baseline": "-0.11"}, {"ID": "FBgn0259896", "EGF_Baseline": "0.94"}, {"ID": "FBgn0038188", "EGF_Baseline": "0.48"}, {"ID": "FBgn0034530", "EGF_Baseline": "-1.21"}, {"ID": "FBgn0051235", "EGF_Baseline": "-1.46"}, {"ID": "FBgn0035254", "EGF_Baseline": "0.76"}, {"ID": "FBgn0032772", "EGF_Baseline": "0.68"}, {"ID": "FBgn0038630", "EGF_Baseline": "0.5"}, {"ID": "FBgn0011509", "EGF_Baseline": "0.23"}, {"ID": "FBgn0038386", "EGF_Baseline": "0.39"}, {"ID": "FBgn0035741", "EGF_Baseline": "1.31"}, {"ID": "FBgn0030217", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0052811", "EGF_Baseline": "0.95"}, {"ID": "FBgn0004872", "EGF_Baseline": "0.31"}, {"ID": "FBgn0036489", "EGF_Baseline": "1.05"}, {"ID": "FBgn0260747", "EGF_Baseline": "-0.41"}, {"ID": "FBgn0035696", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0032260", "EGF_Baseline": "1.74"}, {"ID": "FBgn0037644", "EGF_Baseline": "-0.19"}, {"ID": "FBgn0004054", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0040096", "EGF_Baseline": "-1.96"}, {"ID": "FBgn0085812", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0025726", "EGF_Baseline": "-1.36"}, {"ID": "FBgn0027109", "EGF_Baseline": "0.96"}, {"ID": "FBgn0032039", "EGF_Baseline": "0.84"}, {"ID": "FBgn0085489", "EGF_Baseline": "-1.79"}, {"ID": "FBgn0039596", "EGF_Baseline": "1.2"}, {"ID": "FBgn0038582", "EGF_Baseline": "-1.28"}, {"ID": "FBgn0032637", "EGF_Baseline": "0.73"}, {"ID": "FBgn0041245", "EGF_Baseline": "-1.71"}, {"ID": "FBgn0027600", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0034462", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0033902", "EGF_Baseline": "3.08"}, {"ID": "FBgn0042134", "EGF_Baseline": "0.66"}, {"ID": "FBgn0040718", "EGF_Baseline": "-0.66"}, {"ID": "FBgn0010660", "EGF_Baseline": "0.5"}, {"ID": "FBgn0020385", "EGF_Baseline": "-0.5"}, {"ID": "FBgn0014163", "EGF_Baseline": "0.63"}, {"ID": "FBgn0038416", "EGF_Baseline": "-1.14"}, {"ID": "FBgn0011566", "EGF_Baseline": "-1.45"}, {"ID": "FBgn0034262", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0031319", "EGF_Baseline": "0.32"}, {"ID": "FBgn0030518", "EGF_Baseline": "1.83"}, {"ID": "FBgn0000592", "EGF_Baseline": "0.17"}, {"ID": "FBgn0050085", "EGF_Baseline": "0.66"}, {"ID": "FBgn0085476", "EGF_Baseline": "-0.41"}, {"ID": "FBgn0033323", "EGF_Baseline": "1.1"}, {"ID": "FBgn0031048", "EGF_Baseline": "-1.45"}, {"ID": "FBgn0039811", "EGF_Baseline": "1.16"}, {"ID": "FBgn0035208", "EGF_Baseline": "1.22"}, {"ID": "FBgn0053213", "EGF_Baseline": "1.33"}, {"ID": "FBgn0019828", "EGF_Baseline": "0.98"}, {"ID": "FBgn0260857", "EGF_Baseline": "1.18"}, {"ID": "FBgn0034154", "EGF_Baseline": "0.52"}, {"ID": "FBgn0250786", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0024183", "EGF_Baseline": "-1.51"}, {"ID": "FBgn0037709", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0033688", "EGF_Baseline": "3.17"}, {"ID": "FBgn0025637", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0052371", "EGF_Baseline": "0.54"}, {"ID": "FBgn0050403", "EGF_Baseline": "1.75"}, {"ID": "FBgn0038617", "EGF_Baseline": "-1.21"}, {"ID": "FBgn0035338", "EGF_Baseline": "0.95"}, {"ID": "FBgn0000928", "EGF_Baseline": "0.59"}, {"ID": "FBgn0038845", "EGF_Baseline": "1.51"}, {"ID": "FBgn0050093", "EGF_Baseline": "0.57"}, {"ID": "FBgn0038394", "EGF_Baseline": "0.35"}, {"ID": "FBgn0036859", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0036302", "EGF_Baseline": "0.72"}, {"ID": "FBgn0046879", "EGF_Baseline": "2.39"}, {"ID": "FBgn0037594", "EGF_Baseline": "-1.39"}, {"ID": "FBgn0038701", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0032867", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0030390", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0037370", "EGF_Baseline": "-2.02"}, {"ID": "FBgn0051550", "EGF_Baseline": "-1.31"}, {"ID": "FBgn0052772", "EGF_Baseline": "-1.16"}, {"ID": "FBgn0031756", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0050392", "EGF_Baseline": "0.38"}, {"ID": "FBgn0038350", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0035009", "EGF_Baseline": "0.75"}, {"ID": "FBgn0037702", "EGF_Baseline": "-1.7"}, {"ID": "FBgn0036161", "EGF_Baseline": "0.28"}, {"ID": "FBgn0085321", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0015615", "EGF_Baseline": "-0.45"}, {"ID": "FBgn0010548", "EGF_Baseline": "-0.5"}, {"ID": "FBgn0010497", "EGF_Baseline": "-1.33"}, {"ID": "FBgn0031897", "EGF_Baseline": "-1.92"}, {"ID": "FBgn0002632", "EGF_Baseline": "0.58"}, {"ID": "FBgn0034177", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0038224", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0038133", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0085350", "EGF_Baseline": "-1.36"}, {"ID": "FBgn0028622", "EGF_Baseline": "-2.14"}, {"ID": "FBgn0036131", "EGF_Baseline": "2.01"}, {"ID": "FBgn0030511", "EGF_Baseline": "0.82"}, {"ID": "FBgn0030562", "EGF_Baseline": "-1.21"}, {"ID": "FBgn0053182", "EGF_Baseline": "1.81"}, {"ID": "FBgn0030980", "EGF_Baseline": "-0.45"}, {"ID": "FBgn0032390", "EGF_Baseline": "1.72"}, {"ID": "FBgn0010213", "EGF_Baseline": "1.06"}, {"ID": "FBgn0085196", "EGF_Baseline": "0.53"}, {"ID": "FBgn0033236", "EGF_Baseline": "-1.1"}, {"ID": "FBgn0051391", "EGF_Baseline": "1.7"}, {"ID": "FBgn0031270", "EGF_Baseline": "-1.69"}, {"ID": "FBgn0035830", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0034251", "EGF_Baseline": "1.38"}, {"ID": "FBgn0037796", "EGF_Baseline": "1.21"}, {"ID": "FBgn0031592", "EGF_Baseline": "-2.07"}, {"ID": "FBgn0026393", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0032265", "EGF_Baseline": "-0.09"}, {"ID": "FBgn0037059", "EGF_Baseline": "-1.23"}, {"ID": "FBgn0039902", "EGF_Baseline": "-1.27"}, {"ID": "FBgn0037443", "EGF_Baseline": "0.44"}, {"ID": "FBgn0015283", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0035409", "EGF_Baseline": "0.32"}, {"ID": "FBgn0026737", "EGF_Baseline": "0.57"}, {"ID": "FBgn0035902", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0034515", "EGF_Baseline": "-0.31"}, {"ID": "FBgn0033032", "EGF_Baseline": "0.26"}, {"ID": "FBgn0034299", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0031275", "EGF_Baseline": "-1"}, {"ID": "FBgn0083981", "EGF_Baseline": "0.34"}, {"ID": "FBgn0035827", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0038756", "EGF_Baseline": "-1.43"}, {"ID": "FBgn0038407", "EGF_Baseline": "-1.39"}, {"ID": "FBgn0085328", "EGF_Baseline": "0.97"}, {"ID": "FBgn0015323", "EGF_Baseline": "0.18"}, {"ID": "FBgn0023090", "EGF_Baseline": "-0.56"}, {"ID": "FBgn0010762", "EGF_Baseline": "0.13"}, {"ID": "FBgn0001961", "EGF_Baseline": "0.15"}, {"ID": "FBgn0029931", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0034335", "EGF_Baseline": "-0.38"}, {"ID": "FBgn0085271", "EGF_Baseline": "0.77"}, {"ID": "FBgn0259170", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0036838", "EGF_Baseline": "-2"}, {"ID": "FBgn0031564", "EGF_Baseline": "1.28"}, {"ID": "FBgn0033342", "EGF_Baseline": "1.02"}, {"ID": "FBgn0051875", "EGF_Baseline": "-1.66"}, {"ID": "FBgn0035518", "EGF_Baseline": "1.04"}, {"ID": "FBgn0029532", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0014391", "EGF_Baseline": "1.36"}, {"ID": "FBgn0034140", "EGF_Baseline": "-1.22"}, {"ID": "FBgn0034865", "EGF_Baseline": "-0.17"}, {"ID": "FBgn0032620", "EGF_Baseline": "0.92"}, {"ID": "FBgn0051199", "EGF_Baseline": "0.52"}, {"ID": "FBgn0037014", "EGF_Baseline": "0.3"}, {"ID": "FBgn0035513", "EGF_Baseline": "0.57"}, {"ID": "FBgn0027539", "EGF_Baseline": "1.37"}, {"ID": "FBgn0029750", "EGF_Baseline": "-0.45"}, {"ID": "FBgn0004391", "EGF_Baseline": "1.09"}, {"ID": "FBgn0015789", "EGF_Baseline": "0.91"}, {"ID": "FBgn0020307", "EGF_Baseline": "0.33"}, {"ID": "FBgn0037843", "EGF_Baseline": "-0.43"}, {"ID": "FBgn0032109", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0040346", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0259163", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0035793", "EGF_Baseline": "1.59"}, {"ID": "FBgn0002643", "EGF_Baseline": "1.15"}, {"ID": "FBgn0032505", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0028380", "EGF_Baseline": "-0.08"}, {"ID": "FBgn0031505", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0034907", "EGF_Baseline": "1.17"}, {"ID": "FBgn0039303", "EGF_Baseline": "2.35"}, {"ID": "FBgn0001291", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0039659", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0261279", "EGF_Baseline": "-1.04"}, {"ID": "FBgn0040308", "EGF_Baseline": "0.46"}, {"ID": "FBgn0032629", "EGF_Baseline": "0.63"}, {"ID": "FBgn0011761", "EGF_Baseline": "-0.77"}, {"ID": "FBgn0030370", "EGF_Baseline": "0.91"}, {"ID": "FBgn0052016", "EGF_Baseline": "1.14"}, {"ID": "FBgn0025692", "EGF_Baseline": "0.69"}, {"ID": "FBgn0038974", "EGF_Baseline": "0.82"}, {"ID": "FBgn0052988", "EGF_Baseline": "-1.64"}, {"ID": "FBgn0260855", "EGF_Baseline": "-0.77"}, {"ID": "FBgn0030506", "EGF_Baseline": "-0.3"}, {"ID": "FBgn0035166", "EGF_Baseline": "-0.98"}, {"ID": "FBgn0032360", "EGF_Baseline": "-1.52"}, {"ID": "FBgn0030406", "EGF_Baseline": "1.8"}, {"ID": "FBgn0041621", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0036359", "EGF_Baseline": "0.53"}, {"ID": "FBgn0041102", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0033885", "EGF_Baseline": "0.69"}, {"ID": "FBgn0026143", "EGF_Baseline": "1.34"}, {"ID": "FBgn0051087", "EGF_Baseline": "-0.59"}, {"ID": "FBgn0028695", "EGF_Baseline": "-1.44"}, {"ID": "FBgn0037679", "EGF_Baseline": "-1.33"}, {"ID": "FBgn0034911", "EGF_Baseline": "1.51"}, {"ID": "FBgn0033949", "EGF_Baseline": "0.55"}, {"ID": "FBgn0037050", "EGF_Baseline": "0.47"}, {"ID": "FBgn0261086", "EGF_Baseline": "-0.84"}, {"ID": "FBgn0261871", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0029929", "EGF_Baseline": "1.3"}, {"ID": "FBgn0036756", "EGF_Baseline": "-0.4"}, {"ID": "FBgn0039272", "EGF_Baseline": "0.4"}, {"ID": "FBgn0029003", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0038655", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0037307", "EGF_Baseline": "-1.85"}, {"ID": "FBgn0003141", "EGF_Baseline": "7.93"}, {"ID": "FBgn0012344", "EGF_Baseline": "0.55"}, {"ID": "FBgn0033109", "EGF_Baseline": "-0.84"}, {"ID": "FBgn0014002", "EGF_Baseline": "1.55"}, {"ID": "FBgn0011774", "EGF_Baseline": "-0.71"}, {"ID": "FBgn0053202", "EGF_Baseline": "-1.31"}, {"ID": "FBgn0085339", "EGF_Baseline": "-0.11"}, {"ID": "FBgn0038610", "EGF_Baseline": "0.54"}, {"ID": "FBgn0037435", "EGF_Baseline": "1.69"}, {"ID": "FBgn0029870", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0036168", "EGF_Baseline": "-1.25"}, {"ID": "FBgn0051638", "EGF_Baseline": "0.23"}, {"ID": "FBgn0038172", "EGF_Baseline": "0.47"}, {"ID": "FBgn0011555", "EGF_Baseline": "-0.34"}, {"ID": "FBgn0051159", "EGF_Baseline": "-1.91"}, {"ID": "FBgn0039023", "EGF_Baseline": "0.81"}, {"ID": "FBgn0038509", "EGF_Baseline": "0.59"}, {"ID": "FBgn0038343", "EGF_Baseline": "-0.22"}, {"ID": "FBgn0001992", "EGF_Baseline": "0.22"}, {"ID": "FBgn0003028", "EGF_Baseline": "-1.64"}, {"ID": "FBgn0033859", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0052685", "EGF_Baseline": "1.03"}, {"ID": "FBgn0000449", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0040356", "EGF_Baseline": "0.82"}, {"ID": "FBgn0029503", "EGF_Baseline": "-0.52"}, {"ID": "FBgn0036128", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0029907", "EGF_Baseline": "-0.08"}, {"ID": "FBgn0034166", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0033054", "EGF_Baseline": "0.73"}, {"ID": "FBgn0085376", "EGF_Baseline": "2.01"}, {"ID": "FBgn0031376", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0033428", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0033916", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0037744", "EGF_Baseline": "0.62"}, {"ID": "FBgn0004644", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0038880", "EGF_Baseline": "0.95"}, {"ID": "FBgn0032449", "EGF_Baseline": "-1"}, {"ID": "FBgn0033069", "EGF_Baseline": "0.19"}, {"ID": "FBgn0030925", "EGF_Baseline": "3.3"}, {"ID": "FBgn0035411", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0038053", "EGF_Baseline": "-0.25"}, {"ID": "FBgn0033958", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0051446", "EGF_Baseline": "0.84"}, {"ID": "FBgn0030067", "EGF_Baseline": "0.98"}, {"ID": "FBgn0020655", "EGF_Baseline": "-0.63"}, {"ID": "FBgn0064766", "EGF_Baseline": "0.79"}, {"ID": "FBgn0039089", "EGF_Baseline": "-1.61"}, {"ID": "FBgn0261292", "EGF_Baseline": "0.84"}, {"ID": "FBgn0050020", "EGF_Baseline": "1.13"}, {"ID": "FBgn0036177", "EGF_Baseline": "-0.46"}, {"ID": "FBgn0250849", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0028381", "EGF_Baseline": "0.58"}, {"ID": "FBgn0038506", "EGF_Baseline": "-0.5"}, {"ID": "FBgn0085225", "EGF_Baseline": "-1.79"}, {"ID": "FBgn0014009", "EGF_Baseline": "0.27"}, {"ID": "FBgn0031085", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0036289", "EGF_Baseline": "2.11"}, {"ID": "FBgn0028996", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0010339", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0261592", "EGF_Baseline": "3.33"}, {"ID": "FBgn0260754", "EGF_Baseline": "-0.63"}, {"ID": "FBgn0003448", "EGF_Baseline": "1.27"}, {"ID": "FBgn0036774", "EGF_Baseline": "0.31"}, {"ID": "FBgn0086694", "EGF_Baseline": "-2.45"}, {"ID": "FBgn0004921", "EGF_Baseline": "0.87"}, {"ID": "FBgn0040107", "EGF_Baseline": "13.58"}, {"ID": "FBgn0026314", "EGF_Baseline": "0.51"}, {"ID": "FBgn0050342", "EGF_Baseline": "-1.16"}, {"ID": "FBgn0024941", "EGF_Baseline": "-0.59"}, {"ID": "FBgn0032083", "EGF_Baseline": "-0.44"}, {"ID": "FBgn0040387", "EGF_Baseline": "1.28"}, {"ID": "FBgn0037898", "EGF_Baseline": "-1.34"}, {"ID": "FBgn0039233", "EGF_Baseline": "2.25"}, {"ID": "FBgn0001316", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0037882", "EGF_Baseline": "0.66"}, {"ID": "FBgn0033942", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0053207", "EGF_Baseline": "-1.69"}, {"ID": "FBgn0022359", "EGF_Baseline": "0.52"}, {"ID": "FBgn0039602", "EGF_Baseline": "0.26"}, {"ID": "FBgn0250867", "EGF_Baseline": "0.73"}, {"ID": "FBgn0034473", "EGF_Baseline": "0.49"}, {"ID": "FBgn0037170", "EGF_Baseline": "1.23"}, {"ID": "FBgn0083975", "EGF_Baseline": "-1.49"}, {"ID": "FBgn0031534", "EGF_Baseline": "-0.56"}, {"ID": "FBgn0058045", "EGF_Baseline": "1.47"}, {"ID": "FBgn0031004", "EGF_Baseline": "-0.25"}, {"ID": "FBgn0031260", "EGF_Baseline": "-0.34"}, {"ID": "FBgn0038029", "EGF_Baseline": "-0.71"}, {"ID": "FBgn0035194", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0040398", "EGF_Baseline": "1.23"}, {"ID": "FBgn0026199", "EGF_Baseline": "-0.46"}, {"ID": "FBgn0039194", "EGF_Baseline": "-0.49"}, {"ID": "FBgn0030995", "EGF_Baseline": "-0.32"}, {"ID": "FBgn0037921", "EGF_Baseline": "1.05"}, {"ID": "FBgn0031423", "EGF_Baseline": "-1.04"}, {"ID": "FBgn0032800", "EGF_Baseline": "2.64"}, {"ID": "FBgn0037880", "EGF_Baseline": "-0.44"}, {"ID": "FBgn0026089", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0010398", "EGF_Baseline": "-2.18"}, {"ID": "FBgn0017550", "EGF_Baseline": "-0.28"}, {"ID": "FBgn0035981", "EGF_Baseline": "-1.22"}, {"ID": "FBgn0025885", "EGF_Baseline": "1.19"}, {"ID": "FBgn0037686", "EGF_Baseline": "-0.98"}, {"ID": "FBgn0031331", "EGF_Baseline": "0.33"}, {"ID": "FBgn0034246", "EGF_Baseline": "-1.04"}, {"ID": "FBgn0085256", "EGF_Baseline": "-1.52"}, {"ID": "FBgn0050000", "EGF_Baseline": "0.34"}, {"ID": "FBgn0028895", "EGF_Baseline": "-2.07"}, {"ID": "FBgn0034047", "EGF_Baseline": "-1.68"}, {"ID": "FBgn0039431", "EGF_Baseline": "0.75"}, {"ID": "FBgn0051424", "EGF_Baseline": "-1.98"}, {"ID": "FBgn0087039", "EGF_Baseline": "0.61"}, {"ID": "FBgn0053093", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0033644", "EGF_Baseline": "1.92"}, {"ID": "FBgn0053290", "EGF_Baseline": "1.2"}, {"ID": "FBgn0004781", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0052855", "EGF_Baseline": "1.99"}, {"ID": "FBgn0031678", "EGF_Baseline": "0.39"}, {"ID": "FBgn0028418", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0038260", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0260643", "EGF_Baseline": "0.86"}, {"ID": "FBgn0031012", "EGF_Baseline": "0.8"}, {"ID": "FBgn0046704", "EGF_Baseline": "0.61"}, {"ID": "FBgn0040931", "EGF_Baseline": "-1.16"}, {"ID": "FBgn0033590", "EGF_Baseline": "-1.6"}, {"ID": "FBgn0000560", "EGF_Baseline": "-0.49"}, {"ID": "FBgn0052137", "EGF_Baseline": "-0.63"}, {"ID": "FBgn0032650", "EGF_Baseline": "1.13"}, {"ID": "FBgn0023523", "EGF_Baseline": "0.9"}, {"ID": "FBgn0030016", "EGF_Baseline": "0.56"}, {"ID": "FBgn0004648", "EGF_Baseline": "1.57"}, {"ID": "FBgn0037325", "EGF_Baseline": "1.21"}, {"ID": "FBgn0051189", "EGF_Baseline": "-1.04"}, {"ID": "FBgn0260936", "EGF_Baseline": "-0.35"}, {"ID": "FBgn0035279", "EGF_Baseline": "0.67"}, {"ID": "FBgn0051324", "EGF_Baseline": "0.9"}, {"ID": "FBgn0038069", "EGF_Baseline": "0.33"}, {"ID": "FBgn0259986", "EGF_Baseline": "-1.33"}, {"ID": "FBgn0036271", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0034997", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0002930", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0033367", "EGF_Baseline": "0.84"}, {"ID": "FBgn0031734", "EGF_Baseline": "0.71"}, {"ID": "FBgn0032002", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0039874", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0037092", "EGF_Baseline": "-0.28"}, {"ID": "FBgn0053988", "EGF_Baseline": "1.5"}, {"ID": "FBgn0032728", "EGF_Baseline": "1.55"}, {"ID": "FBgn0004240", "EGF_Baseline": "-0.26"}, {"ID": "FBgn0040321", "EGF_Baseline": "0.6"}, {"ID": "FBgn0050499", "EGF_Baseline": "-1.46"}, {"ID": "FBgn0023083", "EGF_Baseline": "1.02"}, {"ID": "FBgn0034255", "EGF_Baseline": "0.96"}, {"ID": "FBgn0037240", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0061435", "EGF_Baseline": "0.85"}, {"ID": "FBgn0037365", "EGF_Baseline": "-1.33"}, {"ID": "FBgn0030429", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0015519", "EGF_Baseline": "0.68"}, {"ID": "FBgn0010043", "EGF_Baseline": "-1.75"}, {"ID": "FBgn0034195", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0052333", "EGF_Baseline": "-1.66"}, {"ID": "FBgn0051852", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0031393", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0039301", "EGF_Baseline": "0.82"}, {"ID": "FBgn0039530", "EGF_Baseline": "-1.46"}, {"ID": "FBgn0052603", "EGF_Baseline": "-1.71"}, {"ID": "FBgn0034351", "EGF_Baseline": "0.83"}, {"ID": "FBgn0036107", "EGF_Baseline": "-1.42"}, {"ID": "FBgn0250814", "EGF_Baseline": "-1.04"}, {"ID": "FBgn0034521", "EGF_Baseline": "-1.82"}, {"ID": "FBgn0050289", "EGF_Baseline": "-0.11"}, {"ID": "FBgn0032492", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0030614", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0034367", "EGF_Baseline": "-0.63"}, {"ID": "FBgn0020887", "EGF_Baseline": "0.94"}, {"ID": "FBgn0036697", "EGF_Baseline": "9.91031984367451e-03"}, {"ID": "FBgn0034356", "EGF_Baseline": "-0.77"}, {"ID": "FBgn0036860", "EGF_Baseline": "-0.26"}, {"ID": "FBgn0003527", "EGF_Baseline": "0.8"}, {"ID": "FBgn0052700", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0038294", "EGF_Baseline": "0.59"}, {"ID": "FBgn0036446", "EGF_Baseline": "0.07"}, {"ID": "FBgn0033677", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0028667", "EGF_Baseline": "0.43"}, {"ID": "FBgn0028868", "EGF_Baseline": "0.5"}, {"ID": "FBgn0037620", "EGF_Baseline": "1"}, {"ID": "FBgn0025709", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0038291", "EGF_Baseline": "0.51"}, {"ID": "FBgn0032720", "EGF_Baseline": "-0.37"}, {"ID": "FBgn0029848", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0016693", "EGF_Baseline": "0.86"}, {"ID": "FBgn0052380", "EGF_Baseline": "1.59"}, {"ID": "FBgn0035173", "EGF_Baseline": "0.34"}, {"ID": "FBgn0038683", "EGF_Baseline": "0.46"}, {"ID": "FBgn0020278", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0260430", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0038113", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0039757", "EGF_Baseline": "5.08"}, {"ID": "FBgn0010296", "EGF_Baseline": "-0.41"}, {"ID": "FBgn0066292", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0039827", "EGF_Baseline": "0.5"}, {"ID": "FBgn0031465", "EGF_Baseline": "-0.13"}, {"ID": "FBgn0053082", "EGF_Baseline": "0.93"}, {"ID": "FBgn0051248", "EGF_Baseline": "0.97"}, {"ID": "FBgn0034829", "EGF_Baseline": "0.58"}, {"ID": "FBgn0035085", "EGF_Baseline": "2.21"}, {"ID": "FBgn0037292", "EGF_Baseline": "1.57"}, {"ID": "FBgn0030807", "EGF_Baseline": "1.33"}, {"ID": "FBgn0036577", "EGF_Baseline": "0.7"}, {"ID": "FBgn0261049", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0030874", "EGF_Baseline": "-0.91"}, {"ID": "FBgn0050376", "EGF_Baseline": "0.92"}, {"ID": "FBgn0039128", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0011603", "EGF_Baseline": "1.54"}, {"ID": "FBgn0052055", "EGF_Baseline": "0.55"}, {"ID": "FBgn0031910", "EGF_Baseline": "-0.09"}, {"ID": "FBgn0032221", "EGF_Baseline": "-2.14"}, {"ID": "FBgn0030224", "EGF_Baseline": "-1.35"}, {"ID": "FBgn0036360", "EGF_Baseline": "0.4"}, {"ID": "FBgn0035272", "EGF_Baseline": "-0.5"}, {"ID": "FBgn0054046", "EGF_Baseline": "0.55"}, {"ID": "FBgn0051080", "EGF_Baseline": "-1.38"}, {"ID": "FBgn0028856", "EGF_Baseline": "0.87"}, {"ID": "FBgn0030634", "EGF_Baseline": "0.23"}, {"ID": "FBgn0026718", "EGF_Baseline": "0.68"}, {"ID": "FBgn0034985", "EGF_Baseline": "0.18"}, {"ID": "FBgn0260477", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0027779", "EGF_Baseline": "-1.11"}, {"ID": "FBgn0039751", "EGF_Baseline": "1.26"}, {"ID": "FBgn0028848", "EGF_Baseline": "1.26"}, {"ID": "FBgn0031378", "EGF_Baseline": "0.86"}, {"ID": "FBgn0001491", "EGF_Baseline": "0.46"}, {"ID": "FBgn0033970", "EGF_Baseline": "0.6"}, {"ID": "FBgn0040063", "EGF_Baseline": "-1.42"}, {"ID": "FBgn0052442", "EGF_Baseline": "1.29"}, {"ID": "FBgn0020521", "EGF_Baseline": "1.19"}, {"ID": "FBgn0260010", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0038978", "EGF_Baseline": "1.43"}, {"ID": "FBgn0027095", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0030657", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0052635", "EGF_Baseline": "1.2"}, {"ID": "FBgn0002939", "EGF_Baseline": "-1.51"}, {"ID": "FBgn0030438", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0031489", "EGF_Baseline": "-2"}, {"ID": "FBgn0001224", "EGF_Baseline": "-0.15"}, {"ID": "FBgn0261068", "EGF_Baseline": "1.77"}, {"ID": "FBgn0260971", "EGF_Baseline": "0.45"}, {"ID": "FBgn0036220", "EGF_Baseline": "-0.3"}, {"ID": "FBgn0033446", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0038645", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0030061", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0033897", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0037087", "EGF_Baseline": "0.23"}, {"ID": "FBgn0026309", "EGF_Baseline": "-1.99"}, {"ID": "FBgn0037276", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0261268", "EGF_Baseline": "1.97"}, {"ID": "FBgn0001624", "EGF_Baseline": "-1.24"}, {"ID": "FBgn0015872", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0031345", "EGF_Baseline": "0.66"}, {"ID": "FBgn0037491", "EGF_Baseline": "0.18"}, {"ID": "FBgn0261629", "EGF_Baseline": "0.98"}, {"ID": "FBgn0031627", "EGF_Baseline": "-1.04"}, {"ID": "FBgn0033551", "EGF_Baseline": "-1.46"}, {"ID": "FBgn0030905", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0000454", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0031657", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0002901", "EGF_Baseline": "0.17"}, {"ID": "FBgn0005638", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0032250", "EGF_Baseline": "-1.87"}, {"ID": "FBgn0013301", "EGF_Baseline": "-0.39"}, {"ID": "FBgn0037016", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0051769", "EGF_Baseline": "-1.53"}, {"ID": "FBgn0023509", "EGF_Baseline": "1"}, {"ID": "FBgn0050161", "EGF_Baseline": "-0.46"}, {"ID": "FBgn0037137", "EGF_Baseline": "-0.26"}, {"ID": "FBgn0025186", "EGF_Baseline": "1.33"}, {"ID": "FBgn0037236", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0036601", "EGF_Baseline": "-0.49"}, {"ID": "FBgn0035948", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0032014", "EGF_Baseline": "-0.81"}, {"ID": "FBgn0037541", "EGF_Baseline": "1.08"}, {"ID": "FBgn0029822", "EGF_Baseline": "2.05"}, {"ID": "FBgn0010226", "EGF_Baseline": "-1.84"}, {"ID": "FBgn0063493", "EGF_Baseline": "1.64"}, {"ID": "FBgn0036373", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0034963", "EGF_Baseline": "0.24"}, {"ID": "FBgn0047038", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0052432", "EGF_Baseline": "1.93"}, {"ID": "FBgn0053462", "EGF_Baseline": "0.25"}, {"ID": "FBgn0039698", "EGF_Baseline": "-0.36"}, {"ID": "FBgn0002862", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0035470", "EGF_Baseline": "-0.49"}, {"ID": "FBgn0010433", "EGF_Baseline": "0.96"}, {"ID": "FBgn0034880", "EGF_Baseline": "-1.92"}, {"ID": "FBgn0000535", "EGF_Baseline": "0.86"}, {"ID": "FBgn0015583", "EGF_Baseline": "0.79"}, {"ID": "FBgn0260460", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0037299", "EGF_Baseline": "-1.52"}, {"ID": "FBgn0051784", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0038640", "EGF_Baseline": "-2.03"}, {"ID": "FBgn0051050", "EGF_Baseline": "0.94"}, {"ID": "FBgn0038866", "EGF_Baseline": "-1.28"}, {"ID": "FBgn0004913", "EGF_Baseline": "0.71"}, {"ID": "FBgn0037710", "EGF_Baseline": "-0.67"}, {"ID": "FBgn0038769", "EGF_Baseline": "-0.38"}, {"ID": "FBgn0033867", "EGF_Baseline": "1.4"}, {"ID": "FBgn0010750", "EGF_Baseline": "1.58"}, {"ID": "FBgn0027562", "EGF_Baseline": "-1.14"}, {"ID": "FBgn0260655", "EGF_Baseline": "0.27"}, {"ID": "FBgn0083962", "EGF_Baseline": "1.05"}, {"ID": "FBgn0024294", "EGF_Baseline": "0.82"}, {"ID": "FBgn0003545", "EGF_Baseline": "-0.23"}, {"ID": "FBgn0033426", "EGF_Baseline": "1.44"}, {"ID": "FBgn0030280", "EGF_Baseline": "0.35"}, {"ID": "FBgn0038853", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0039609", "EGF_Baseline": "-0.42"}, {"ID": "FBgn0036502", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0034598", "EGF_Baseline": "-1.25"}, {"ID": "FBgn0036229", "EGF_Baseline": "0.41"}, {"ID": "FBgn0005427", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0069969", "EGF_Baseline": "0.29"}, {"ID": "FBgn0024997", "EGF_Baseline": "-0.43"}, {"ID": "FBgn0025334", "EGF_Baseline": "1.44"}, {"ID": "FBgn0035959", "EGF_Baseline": "0.97"}, {"ID": "FBgn0037940", "EGF_Baseline": "0.5"}, {"ID": "FBgn0035468", "EGF_Baseline": "0.85"}, {"ID": "FBgn0036785", "EGF_Baseline": "1.42"}, {"ID": "FBgn0040232", "EGF_Baseline": "0.88"}, {"ID": "FBgn0001994", "EGF_Baseline": "3.79"}, {"ID": "FBgn0021875", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0020248", "EGF_Baseline": "1.3"}, {"ID": "FBgn0037339", "EGF_Baseline": "-2.01"}, {"ID": "FBgn0035724", "EGF_Baseline": "1.14"}, {"ID": "FBgn0034058", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0036075", "EGF_Baseline": "-0.71"}, {"ID": "FBgn0036367", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0003091", "EGF_Baseline": "-1.62"}, {"ID": "FBgn0034230", "EGF_Baseline": "0.47"}, {"ID": "FBgn0260763", "EGF_Baseline": "0.75"}, {"ID": "FBgn0028538", "EGF_Baseline": "0.64"}, {"ID": "FBgn0034497", "EGF_Baseline": "-0.71"}, {"ID": "FBgn0052196", "EGF_Baseline": "-1.76"}, {"ID": "FBgn0038951", "EGF_Baseline": "0.7"}, {"ID": "FBgn0085305", "EGF_Baseline": "0.33"}, {"ID": "FBgn0000370", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0031320", "EGF_Baseline": "-1.23"}, {"ID": "FBgn0039691", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0085444", "EGF_Baseline": "-2.44"}, {"ID": "FBgn0041337", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0000377", "EGF_Baseline": "2.21"}, {"ID": "FBgn0029117", "EGF_Baseline": "1.84"}, {"ID": "FBgn0030243", "EGF_Baseline": "0.66"}, {"ID": "FBgn0028894", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0052832", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0036723", "EGF_Baseline": "-1.27"}, {"ID": "FBgn0040985", "EGF_Baseline": "0.33"}, {"ID": "FBgn0085318", "EGF_Baseline": "-1.77"}, {"ID": "FBgn0032216", "EGF_Baseline": "0.4"}, {"ID": "FBgn0039635", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0039518", "EGF_Baseline": "1.17"}, {"ID": "FBgn0037958", "EGF_Baseline": "0.62"}, {"ID": "FBgn0001104", "EGF_Baseline": "-0.25"}, {"ID": "FBgn0036096", "EGF_Baseline": "0.65"}, {"ID": "FBgn0035073", "EGF_Baseline": "-1.2"}, {"ID": "FBgn0033259", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0015034", "EGF_Baseline": "1.24"}, {"ID": "FBgn0016120", "EGF_Baseline": "-1.15"}, {"ID": "FBgn0001253", "EGF_Baseline": "-1.21"}, {"ID": "FBgn0027359", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0039167", "EGF_Baseline": "-0.66"}, {"ID": "FBgn0032168", "EGF_Baseline": "-0.41"}, {"ID": "FBgn0051150", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0026872", "EGF_Baseline": "-1.04"}, {"ID": "FBgn0031033", "EGF_Baseline": "-0.37"}, {"ID": "FBgn0020642", "EGF_Baseline": "-1.26"}, {"ID": "FBgn0032176", "EGF_Baseline": "0.37"}, {"ID": "FBgn0261108", "EGF_Baseline": "-2.15"}, {"ID": "FBgn0014031", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0052547", "EGF_Baseline": "1.25"}, {"ID": "FBgn0004573", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0035743", "EGF_Baseline": "0.28"}, {"ID": "FBgn0028950", "EGF_Baseline": "1.3"}, {"ID": "FBgn0003373", "EGF_Baseline": "-0.91"}, {"ID": "FBgn0013718", "EGF_Baseline": "0.61"}, {"ID": "FBgn0039465", "EGF_Baseline": "0.09"}, {"ID": "FBgn0025592", "EGF_Baseline": "-1.35"}, {"ID": "FBgn0034728", "EGF_Baseline": "-0.24"}, {"ID": "FBgn0003089", "EGF_Baseline": "-1"}, {"ID": "FBgn0261609", "EGF_Baseline": "-0.66"}, {"ID": "FBgn0027279", "EGF_Baseline": "-1.5"}, {"ID": "FBgn0050091", "EGF_Baseline": "0.75"}, {"ID": "FBgn0037756", "EGF_Baseline": "-0.39"}, {"ID": "FBgn0036550", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0024432", "EGF_Baseline": "1.03"}, {"ID": "FBgn0034898", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0260439", "EGF_Baseline": "1.03"}, {"ID": "FBgn0032946", "EGF_Baseline": "-0.65"}, {"ID": "FBgn0031633", "EGF_Baseline": "0.09"}, {"ID": "FBgn0023513", "EGF_Baseline": "-1.42"}, {"ID": "FBgn0024249", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0038135", "EGF_Baseline": "-1.83"}, {"ID": "FBgn0035631", "EGF_Baseline": "-0.77"}, {"ID": "FBgn0054028", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0260959", "EGF_Baseline": "1.23"}, {"ID": "FBgn0027569", "EGF_Baseline": "0.41"}, {"ID": "FBgn0015793", "EGF_Baseline": "0.52"}, {"ID": "FBgn0031170", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0051038", "EGF_Baseline": "1.83"}, {"ID": "FBgn0026879", "EGF_Baseline": "-1.49"}, {"ID": "FBgn0003721", "EGF_Baseline": "-0.33"}, {"ID": "FBgn0034411", "EGF_Baseline": "0.7"}, {"ID": "FBgn0025456", "EGF_Baseline": "0.8"}, {"ID": "FBgn0031920", "EGF_Baseline": "0.58"}, {"ID": "FBgn0003319", "EGF_Baseline": "-0.63"}, {"ID": "FBgn0051294", "EGF_Baseline": "1.57"}, {"ID": "FBgn0052220", "EGF_Baseline": "-1.4"}, {"ID": "FBgn0033121", "EGF_Baseline": "1.09"}, {"ID": "FBgn0034694", "EGF_Baseline": "-1.64"}, {"ID": "FBgn0051093", "EGF_Baseline": "0.47"}, {"ID": "FBgn0038909", "EGF_Baseline": "0.92"}, {"ID": "FBgn0040273", "EGF_Baseline": "0.72"}, {"ID": "FBgn0038165", "EGF_Baseline": "0.42"}, {"ID": "FBgn0037616", "EGF_Baseline": "0.82"}, {"ID": "FBgn0040384", "EGF_Baseline": "-0.67"}, {"ID": "FBgn0036711", "EGF_Baseline": "-0.66"}, {"ID": "FBgn0031875", "EGF_Baseline": "-0.72"}, {"ID": "FBgn0065035", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0259822", "EGF_Baseline": "1.67"}, {"ID": "FBgn0039258", "EGF_Baseline": "-0.39"}, {"ID": "FBgn0260965", "EGF_Baseline": "-1.42"}, {"ID": "FBgn0025739", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0085438", "EGF_Baseline": "0.91"}, {"ID": "FBgn0038789", "EGF_Baseline": "-0.39"}, {"ID": "FBgn0058439", "EGF_Baseline": "0.29"}, {"ID": "FBgn0032339", "EGF_Baseline": "-1.71"}, {"ID": "FBgn0261287", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0037918", "EGF_Baseline": "-2.02"}, {"ID": "FBgn0026141", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0040345", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0050416", "EGF_Baseline": "-1.23"}, {"ID": "FBgn0031935", "EGF_Baseline": "-1.6"}, {"ID": "FBgn0036585", "EGF_Baseline": "1.95"}, {"ID": "FBgn0032385", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0032703", "EGF_Baseline": "-1.88"}, {"ID": "FBgn0050325", "EGF_Baseline": "0.3"}, {"ID": "FBgn0036626", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0027580", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0032680", "EGF_Baseline": "0.91"}, {"ID": "FBgn0032809", "EGF_Baseline": "-2"}, {"ID": "FBgn0037518", "EGF_Baseline": "1.59"}, {"ID": "FBgn0052486", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0037222", "EGF_Baseline": "-0.72"}, {"ID": "FBgn0086915", "EGF_Baseline": "1.81"}, {"ID": "FBgn0085447", "EGF_Baseline": "-1.49"}, {"ID": "FBgn0031306", "EGF_Baseline": "0.7"}, {"ID": "FBgn0035676", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0027951", "EGF_Baseline": "0.27"}, {"ID": "FBgn0051089", "EGF_Baseline": "0.88"}, {"ID": "FBgn0033850", "EGF_Baseline": "-0.26"}, {"ID": "FBgn0029959", "EGF_Baseline": "0.64"}, {"ID": "FBgn0034789", "EGF_Baseline": "1.51"}, {"ID": "FBgn0002899", "EGF_Baseline": "0.67"}, {"ID": "FBgn0034012", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0022699", "EGF_Baseline": "-0.36"}, {"ID": "FBgn0034460", "EGF_Baseline": "0.67"}, {"ID": "FBgn0040940", "EGF_Baseline": "-1.59"}, {"ID": "FBgn0040373", "EGF_Baseline": "-0.45"}, {"ID": "FBgn0030114", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0004364", "EGF_Baseline": "-1.16"}, {"ID": "FBgn0037436", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0039688", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0033729", "EGF_Baseline": "0.85"}, {"ID": "FBgn0030982", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0023550", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0034219", "EGF_Baseline": "-1.46"}, {"ID": "FBgn0031768", "EGF_Baseline": "1.56"}, {"ID": "FBgn0035348", "EGF_Baseline": "3.87"}, {"ID": "FBgn0035437", "EGF_Baseline": "0.98"}, {"ID": "FBgn0031287", "EGF_Baseline": "-1.52"}, {"ID": "FBgn0036035", "EGF_Baseline": "3"}, {"ID": "FBgn0031952", "EGF_Baseline": "3.4"}, {"ID": "FBgn0037852", "EGF_Baseline": "0.33"}, {"ID": "FBgn0029952", "EGF_Baseline": "-0.65"}, {"ID": "FBgn0037297", "EGF_Baseline": "-2.09"}, {"ID": "FBgn0038046", "EGF_Baseline": "-0.26"}, {"ID": "FBgn0037409", "EGF_Baseline": "-1.04"}, {"ID": "FBgn0026015", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0038147", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0036009", "EGF_Baseline": "-0.14"}, {"ID": "FBgn0035032", "EGF_Baseline": "0.82"}, {"ID": "FBgn0037696", "EGF_Baseline": "-1.91"}, {"ID": "FBgn0033757", "EGF_Baseline": "-0.21"}, {"ID": "FBgn0033351", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0033465", "EGF_Baseline": "0.64"}, {"ID": "FBgn0026479", "EGF_Baseline": "-0.36"}, {"ID": "FBgn0037534", "EGF_Baseline": "0.86"}, {"ID": "FBgn0037023", "EGF_Baseline": "0.68"}, {"ID": "FBgn0025644", "EGF_Baseline": "1.57"}, {"ID": "FBgn0032373", "EGF_Baseline": "0.65"}, {"ID": "FBgn0039625", "EGF_Baseline": "-1.33"}, {"ID": "FBgn0041712", "EGF_Baseline": "-1.11"}, {"ID": "FBgn0033177", "EGF_Baseline": "0.28"}, {"ID": "FBgn0003464", "EGF_Baseline": "1.06"}, {"ID": "FBgn0014037", "EGF_Baseline": "-0.22"}, {"ID": "FBgn0036738", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0035445", "EGF_Baseline": "-0.2"}, {"ID": "FBgn0022288", "EGF_Baseline": "0.59"}, {"ID": "FBgn0085233", "EGF_Baseline": "0.8"}, {"ID": "FBgn0030529", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0051807", "EGF_Baseline": "1.29"}, {"ID": "FBgn0030298", "EGF_Baseline": "0.27"}, {"ID": "FBgn0002781", "EGF_Baseline": "-1.44"}, {"ID": "FBgn0030361", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0085450", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0039232", "EGF_Baseline": "1.14"}, {"ID": "FBgn0037736", "EGF_Baseline": "1.04"}, {"ID": "FBgn0033377", "EGF_Baseline": "0.76"}, {"ID": "FBgn0026576", "EGF_Baseline": "-1.64"}, {"ID": "FBgn0035475", "EGF_Baseline": "-1.51"}, {"ID": "FBgn0031739", "EGF_Baseline": "-0.72"}, {"ID": "FBgn0043842", "EGF_Baseline": "1.31"}, {"ID": "FBgn0051040", "EGF_Baseline": "2.01"}, {"ID": "FBgn0053554", "EGF_Baseline": "-3.06"}, {"ID": "FBgn0002645", "EGF_Baseline": "-0.91"}, {"ID": "FBgn0024365", "EGF_Baseline": "0.78"}, {"ID": "FBgn0000109", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0261671", "EGF_Baseline": "1.27"}, {"ID": "FBgn0038071", "EGF_Baseline": "-0.54"}, {"ID": "FBgn0037815", "EGF_Baseline": "-0.67"}, {"ID": "FBgn0038526", "EGF_Baseline": "-0.3"}, {"ID": "FBgn0052076", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0025832", "EGF_Baseline": "-1.45"}, {"ID": "FBgn0051773", "EGF_Baseline": "-2.15"}, {"ID": "FBgn0031388", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0031494", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0001077", "EGF_Baseline": "-1.47"}, {"ID": "FBgn0044030", "EGF_Baseline": "1.55"}, {"ID": "FBgn0040365", "EGF_Baseline": "0.97"}, {"ID": "FBgn0036211", "EGF_Baseline": "-0.32"}, {"ID": "FBgn0039226", "EGF_Baseline": "1.93"}, {"ID": "FBgn0004436", "EGF_Baseline": "-2.78"}, {"ID": "FBgn0032834", "EGF_Baseline": "-1.47"}, {"ID": "FBgn0033845", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0038084", "EGF_Baseline": "0.61"}, {"ID": "FBgn0042199", "EGF_Baseline": "-0.09"}, {"ID": "FBgn0037556", "EGF_Baseline": "-1.91"}, {"ID": "FBgn0031575", "EGF_Baseline": "0.78"}, {"ID": "FBgn0029958", "EGF_Baseline": "0.78"}, {"ID": "FBgn0261393", "EGF_Baseline": "-1.61"}, {"ID": "FBgn0036291", "EGF_Baseline": "1.05"}, {"ID": "FBgn0004957", "EGF_Baseline": "0.65"}, {"ID": "FBgn0032434", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0035601", "EGF_Baseline": "0.22"}, {"ID": "FBgn0040723", "EGF_Baseline": "1.59"}, {"ID": "FBgn0014863", "EGF_Baseline": "1.86"}, {"ID": "FBgn0029861", "EGF_Baseline": "-1.64"}, {"ID": "FBgn0013756", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0032997", "EGF_Baseline": "0.7"}, {"ID": "FBgn0003218", "EGF_Baseline": "-0.07"}, {"ID": "FBgn0011672", "EGF_Baseline": "0.93"}, {"ID": "FBgn0033358", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0014469", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0028554", "EGF_Baseline": "-0.72"}, {"ID": "FBgn0037531", "EGF_Baseline": "1.33"}, {"ID": "FBgn0029932", "EGF_Baseline": "0.29"}, {"ID": "FBgn0033234", "EGF_Baseline": "0.34"}, {"ID": "FBgn0016123", "EGF_Baseline": "0.85"}, {"ID": "FBgn0259697", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0083141", "EGF_Baseline": "-1.2"}, {"ID": "FBgn0069354", "EGF_Baseline": "-1.67"}, {"ID": "FBgn0034506", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0023170", "EGF_Baseline": "4.28"}, {"ID": "FBgn0039591", "EGF_Baseline": "1.5"}, {"ID": "FBgn0030177", "EGF_Baseline": "1.06"}, {"ID": "FBgn0086676", "EGF_Baseline": "-0.72"}, {"ID": "FBgn0004401", "EGF_Baseline": "-1.34"}, {"ID": "FBgn0259832", "EGF_Baseline": "1.04"}, {"ID": "FBgn0029588", "EGF_Baseline": "-1.16"}, {"ID": "FBgn0039528", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0250821", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0034948", "EGF_Baseline": "-2.94"}, {"ID": "FBgn0033405", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0032821", "EGF_Baseline": "-1.6"}, {"ID": "FBgn0051229", "EGF_Baseline": "1.33"}, {"ID": "FBgn0037185", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0016081", "EGF_Baseline": "-1.11"}, {"ID": "FBgn0029660", "EGF_Baseline": "1.12"}, {"ID": "FBgn0020269", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0040736", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0028360", "EGF_Baseline": "-0.29"}, {"ID": "FBgn0015399", "EGF_Baseline": "0.47"}, {"ID": "FBgn0010240", "EGF_Baseline": "0.83"}, {"ID": "FBgn0027080", "EGF_Baseline": "0.44"}, {"ID": "FBgn0030314", "EGF_Baseline": "-1.37"}, {"ID": "FBgn0053143", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0028962", "EGF_Baseline": "-1.33"}, {"ID": "FBgn0039118", "EGF_Baseline": "-1.46"}, {"ID": "FBgn0030245", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0038566", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0035904", "EGF_Baseline": "-0.71"}, {"ID": "FBgn0036191", "EGF_Baseline": "0.92"}, {"ID": "FBgn0033783", "EGF_Baseline": "0.93"}, {"ID": "FBgn0011589", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0038694", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0085355", "EGF_Baseline": "1.14"}, {"ID": "FBgn0036058", "EGF_Baseline": "0.45"}, {"ID": "FBgn0039051", "EGF_Baseline": "-1.81"}, {"ID": "FBgn0085455", "EGF_Baseline": "0.65"}, {"ID": "FBgn0051956", "EGF_Baseline": "-1.22"}, {"ID": "FBgn0050272", "EGF_Baseline": "-0.23"}, {"ID": "FBgn0038774", "EGF_Baseline": "-1.22"}, {"ID": "FBgn0028838", "EGF_Baseline": "2.02"}, {"ID": "FBgn0031726", "EGF_Baseline": "0.71"}, {"ID": "FBgn0011638", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0029948", "EGF_Baseline": "-0.34"}, {"ID": "FBgn0040735", "EGF_Baseline": "0.45"}, {"ID": "FBgn0030970", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0030159", "EGF_Baseline": "1.24"}, {"ID": "FBgn0029137", "EGF_Baseline": "-1.61"}, {"ID": "FBgn0033188", "EGF_Baseline": "-1.84"}, {"ID": "FBgn0032204", "EGF_Baseline": "1.09"}, {"ID": "FBgn0025702", "EGF_Baseline": "1.46"}, {"ID": "FBgn0259818", "EGF_Baseline": "0.86"}, {"ID": "FBgn0036278", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0030790", "EGF_Baseline": "-1.48"}, {"ID": "FBgn0261618", "EGF_Baseline": "-1.35"}, {"ID": "FBgn0011570", "EGF_Baseline": "0.37"}, {"ID": "FBgn0035263", "EGF_Baseline": "0.71"}, {"ID": "FBgn0030932", "EGF_Baseline": "0.92"}, {"ID": "FBgn0026189", "EGF_Baseline": "-1.97"}, {"ID": "FBgn0038009", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0039584", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0027556", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0035245", "EGF_Baseline": "1.81"}, {"ID": "FBgn0031817", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0035068", "EGF_Baseline": "0.78"}, {"ID": "FBgn0032078", "EGF_Baseline": "-0.45"}, {"ID": "FBgn0051806", "EGF_Baseline": "1.44"}, {"ID": "FBgn0030675", "EGF_Baseline": "-0.23"}, {"ID": "FBgn0031791", "EGF_Baseline": "-0.4"}, {"ID": "FBgn0030208", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0040607", "EGF_Baseline": "-0.36"}, {"ID": "FBgn0003510", "EGF_Baseline": "4.3"}, {"ID": "FBgn0031044", "EGF_Baseline": "-1.55"}, {"ID": "FBgn0041182", "EGF_Baseline": "0.67"}, {"ID": "FBgn0038125", "EGF_Baseline": "-0.35"}, {"ID": "FBgn0035586", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0053506", "EGF_Baseline": "0.49"}, {"ID": "FBgn0034458", "EGF_Baseline": "1.3"}, {"ID": "FBgn0050423", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0035572", "EGF_Baseline": "-1.79"}, {"ID": "FBgn0034490", "EGF_Baseline": "-1.48"}, {"ID": "FBgn0034783", "EGF_Baseline": "0.31"}, {"ID": "FBgn0040334", "EGF_Baseline": "-1.72"}, {"ID": "FBgn0040524", "EGF_Baseline": "0.96"}, {"ID": "FBgn0039702", "EGF_Baseline": "-0.54"}, {"ID": "FBgn0030881", "EGF_Baseline": "-0.81"}, {"ID": "FBgn0261552", "EGF_Baseline": "-3.4"}, {"ID": "FBgn0052675", "EGF_Baseline": "0.68"}, {"ID": "FBgn0015039", "EGF_Baseline": "-1.65"}, {"ID": "FBgn0259240", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0027780", "EGF_Baseline": "1.91"}, {"ID": "FBgn0035131", "EGF_Baseline": "-0.41"}, {"ID": "FBgn0036769", "EGF_Baseline": "-0.31"}, {"ID": "FBgn0038838", "EGF_Baseline": "0.94"}, {"ID": "FBgn0041087", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0023407", "EGF_Baseline": "-1.11"}, {"ID": "FBgn0000520", "EGF_Baseline": "1.52"}, {"ID": "FBgn0037290", "EGF_Baseline": "1.68"}, {"ID": "FBgn0026432", "EGF_Baseline": "0.99"}, {"ID": "FBgn0032648", "EGF_Baseline": "0.54"}, {"ID": "FBgn0030334", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0037123", "EGF_Baseline": "0.41"}, {"ID": "FBgn0036687", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0015359", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0037153", "EGF_Baseline": "-1.85"}, {"ID": "FBgn0036242", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0033615", "EGF_Baseline": "-2"}, {"ID": "FBgn0036468", "EGF_Baseline": "3.86"}, {"ID": "FBgn0039079", "EGF_Baseline": "-0.24"}, {"ID": "FBgn0039576", "EGF_Baseline": "-0.98"}, {"ID": "FBgn0030723", "EGF_Baseline": "0.42"}, {"ID": "FBgn0032876", "EGF_Baseline": "-1.82"}, {"ID": "FBgn0000028", "EGF_Baseline": "1.5"}, {"ID": "FBgn0003411", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0034588", "EGF_Baseline": "1.11"}, {"ID": "FBgn0034820", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0036643", "EGF_Baseline": "-1.57"}, {"ID": "FBgn0036985", "EGF_Baseline": "-0.4"}, {"ID": "FBgn0036593", "EGF_Baseline": "0.91"}, {"ID": "FBgn0033775", "EGF_Baseline": "0.63"}, {"ID": "FBgn0051814", "EGF_Baseline": "0.75"}, {"ID": "FBgn0039503", "EGF_Baseline": "-0.35"}, {"ID": "FBgn0031745", "EGF_Baseline": "0.69"}, {"ID": "FBgn0027497", "EGF_Baseline": "-1.31"}, {"ID": "FBgn0030073", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0027889", "EGF_Baseline": "1.18"}, {"ID": "FBgn0034377", "EGF_Baseline": "-1.39"}, {"ID": "FBgn0051712", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0024238", "EGF_Baseline": "-1.6"}, {"ID": "FBgn0053526", "EGF_Baseline": "-1.22"}, {"ID": "FBgn0030968", "EGF_Baseline": "-1.16"}, {"ID": "FBgn0036895", "EGF_Baseline": "0.48"}, {"ID": "FBgn0032614", "EGF_Baseline": "-1.52"}, {"ID": "FBgn0028420", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0051950", "EGF_Baseline": "1.36"}, {"ID": "FBgn0030174", "EGF_Baseline": "1.48"}, {"ID": "FBgn0032096", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0030320", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0030598", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0037717", "EGF_Baseline": "-0.37"}, {"ID": "FBgn0034315", "EGF_Baseline": "1.28"}, {"ID": "FBgn0039616", "EGF_Baseline": "1.51"}, {"ID": "FBgn0050374", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0039864", "EGF_Baseline": "0.16"}, {"ID": "FBgn0043457", "EGF_Baseline": "0.42"}, {"ID": "FBgn0052109", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0032163", "EGF_Baseline": "0.34"}, {"ID": "FBgn0035121", "EGF_Baseline": "-0.91"}, {"ID": "FBgn0000279", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0039205", "EGF_Baseline": "-1.37"}, {"ID": "FBgn0032487", "EGF_Baseline": "-0.65"}, {"ID": "FBgn0037070", "EGF_Baseline": "0.22"}, {"ID": "FBgn0033096", "EGF_Baseline": "0.82"}, {"ID": "FBgn0054012", "EGF_Baseline": "1.15"}, {"ID": "FBgn0032414", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0031022", "EGF_Baseline": "-1.17"}, {"ID": "FBgn0026616", "EGF_Baseline": "-1.85"}, {"ID": "FBgn0030955", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0029833", "EGF_Baseline": "0.18"}, {"ID": "FBgn0259223", "EGF_Baseline": "-1.62"}, {"ID": "FBgn0259742", "EGF_Baseline": "1.44"}, {"ID": "FBgn0030329", "EGF_Baseline": "-1.17"}, {"ID": "FBgn0038474", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0053198", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0035044", "EGF_Baseline": "-0.36"}, {"ID": "FBgn0037487", "EGF_Baseline": "1.32"}, {"ID": "FBgn0010114", "EGF_Baseline": "-1.45"}, {"ID": "FBgn0031055", "EGF_Baseline": "-1"}, {"ID": "FBgn0020381", "EGF_Baseline": "-0.19"}, {"ID": "FBgn0038819", "EGF_Baseline": "-0.54"}, {"ID": "FBgn0039943", "EGF_Baseline": "1.26"}, {"ID": "FBgn0030456", "EGF_Baseline": "0.64"}, {"ID": "FBgn0032350", "EGF_Baseline": "0.5"}, {"ID": "FBgn0038366", "EGF_Baseline": "-0.19"}, {"ID": "FBgn0034885", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0032132", "EGF_Baseline": "1.32"}, {"ID": "FBgn0085367", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0039033", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0085462", "EGF_Baseline": "-0.43"}, {"ID": "FBgn0032195", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0010424", "EGF_Baseline": "0.56"}, {"ID": "FBgn0260793", "EGF_Baseline": "0.89"}, {"ID": "FBgn0039093", "EGF_Baseline": "-2.19"}, {"ID": "FBgn0033762", "EGF_Baseline": "0.93"}, {"ID": "FBgn0030304", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0004132", "EGF_Baseline": "1.29"}, {"ID": "FBgn0035866", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0004511", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0043362", "EGF_Baseline": "0.16"}, {"ID": "FBgn0037140", "EGF_Baseline": "1.1"}, {"ID": "FBgn0051259", "EGF_Baseline": "-0.46"}, {"ID": "FBgn0032683", "EGF_Baseline": "0.95"}, {"ID": "FBgn0010602", "EGF_Baseline": "0.33"}, {"ID": "FBgn0040899", "EGF_Baseline": "-0.52"}, {"ID": "FBgn0010470", "EGF_Baseline": "0.63"}, {"ID": "FBgn0085295", "EGF_Baseline": "-0.77"}, {"ID": "FBgn0028563", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0053317", "EGF_Baseline": "1.17"}, {"ID": "FBgn0033744", "EGF_Baseline": "1.55"}, {"ID": "FBgn0001308", "EGF_Baseline": "0.56"}, {"ID": "FBgn0034308", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0030376", "EGF_Baseline": "-1.31"}, {"ID": "FBgn0003941", "EGF_Baseline": "0.98"}, {"ID": "FBgn0033631", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0032598", "EGF_Baseline": "1.46"}, {"ID": "FBgn0015321", "EGF_Baseline": "-1.46"}, {"ID": "FBgn0053002", "EGF_Baseline": "-1.48"}, {"ID": "FBgn0030080", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0025624", "EGF_Baseline": "1.6"}, {"ID": "FBgn0028901", "EGF_Baseline": "0.65"}, {"ID": "FBgn0028944", "EGF_Baseline": "-0.4"}, {"ID": "FBgn0031944", "EGF_Baseline": "-1.73"}, {"ID": "FBgn0039475", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0261563", "EGF_Baseline": "-0.35"}, {"ID": "FBgn0036991", "EGF_Baseline": "0.45"}, {"ID": "FBgn0036089", "EGF_Baseline": "-1.96"}, {"ID": "FBgn0034800", "EGF_Baseline": "0.73"}, {"ID": "FBgn0033344", "EGF_Baseline": "1.43"}, {"ID": "FBgn0083943", "EGF_Baseline": "-0.44"}, {"ID": "FBgn0037412", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0040397", "EGF_Baseline": "1.46"}, {"ID": "FBgn0034654", "EGF_Baseline": "-3.54"}, {"ID": "FBgn0037955", "EGF_Baseline": "0.57"}, {"ID": "FBgn0028853", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0085480", "EGF_Baseline": "0.3"}, {"ID": "FBgn0051368", "EGF_Baseline": "0.62"}, {"ID": "FBgn0052102", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0037901", "EGF_Baseline": "1.04"}, {"ID": "FBgn0037039", "EGF_Baseline": "1.42"}, {"ID": "FBgn0033880", "EGF_Baseline": "-1.45"}, {"ID": "FBgn0035807", "EGF_Baseline": "0.17"}, {"ID": "FBgn0029746", "EGF_Baseline": "-0.72"}, {"ID": "FBgn0035039", "EGF_Baseline": "0.6"}, {"ID": "FBgn0050054", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0030440", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0015591", "EGF_Baseline": "0.42"}, {"ID": "FBgn0038894", "EGF_Baseline": "0.22"}, {"ID": "FBgn0028646", "EGF_Baseline": "-1.58"}, {"ID": "FBgn0014368", "EGF_Baseline": "0.92"}, {"ID": "FBgn0259233", "EGF_Baseline": "-0.72"}, {"ID": "FBgn0000406", "EGF_Baseline": "0.95"}, {"ID": "FBgn0032282", "EGF_Baseline": "-0.33"}, {"ID": "FBgn0085491", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0028497", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0029713", "EGF_Baseline": "0.41"}, {"ID": "FBgn0036614", "EGF_Baseline": "-0.98"}, {"ID": "FBgn0015829", "EGF_Baseline": "0.3"}, {"ID": "FBgn0032139", "EGF_Baseline": "-1.3"}, {"ID": "FBgn0261461", "EGF_Baseline": "-1.27"}, {"ID": "FBgn0038717", "EGF_Baseline": "1.08"}, {"ID": "FBgn0039370", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0020371", "EGF_Baseline": "0.83"}, {"ID": "FBgn0038923", "EGF_Baseline": "-1.42"}, {"ID": "FBgn0050334", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0042205", "EGF_Baseline": "0.51"}, {"ID": "FBgn0005612", "EGF_Baseline": "-1.22"}, {"ID": "FBgn0031182", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0004117", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0003117", "EGF_Baseline": "0.26"}, {"ID": "FBgn0028570", "EGF_Baseline": "0.57"}, {"ID": "FBgn0052176", "EGF_Baseline": "-1.33"}, {"ID": "FBgn0029733", "EGF_Baseline": "-1.75"}, {"ID": "FBgn0032117", "EGF_Baseline": "-1.86"}, {"ID": "FBgn0050269", "EGF_Baseline": "-1.66"}, {"ID": "FBgn0039004", "EGF_Baseline": "0.86"}, {"ID": "FBgn0033770", "EGF_Baseline": "1.29"}, {"ID": "FBgn0015379", "EGF_Baseline": "-0.42"}, {"ID": "FBgn0031194", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0020255", "EGF_Baseline": "4.27"}, {"ID": "FBgn0003392", "EGF_Baseline": "2.89"}, {"ID": "FBgn0043791", "EGF_Baseline": "-1.36"}, {"ID": "FBgn0032150", "EGF_Baseline": "-1.71"}, {"ID": "FBgn0037065", "EGF_Baseline": "-1.48"}, {"ID": "FBgn0035800", "EGF_Baseline": "-0.63"}, {"ID": "FBgn0037908", "EGF_Baseline": "0.4"}, {"ID": "FBgn0029795", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0011822", "EGF_Baseline": "-1.33"}, {"ID": "FBgn0029976", "EGF_Baseline": "0.75"}, {"ID": "FBgn0004590", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0040688", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0035941", "EGF_Baseline": "0.69"}, {"ID": "FBgn0000221", "EGF_Baseline": "1.72"}, {"ID": "FBgn0051300", "EGF_Baseline": "-0.39"}, {"ID": "FBgn0040009", "EGF_Baseline": "-1.51"}, {"ID": "FBgn0039055", "EGF_Baseline": "1.12"}, {"ID": "FBgn0250791", "EGF_Baseline": "0.39"}, {"ID": "FBgn0037751", "EGF_Baseline": "0.51"}, {"ID": "FBgn0036808", "EGF_Baseline": "-0.32"}, {"ID": "FBgn0032666", "EGF_Baseline": "0.61"}, {"ID": "FBgn0053229", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0034132", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0002441", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0053127", "EGF_Baseline": "-1.75"}, {"ID": "FBgn0036833", "EGF_Baseline": "-1.75"}, {"ID": "FBgn0035336", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0034156", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0041111", "EGF_Baseline": "1.4"}, {"ID": "FBgn0250906", "EGF_Baseline": "0.88"}, {"ID": "FBgn0034736", "EGF_Baseline": "-1.3"}, {"ID": "FBgn0023180", "EGF_Baseline": "0.37"}, {"ID": "FBgn0043550", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0259172", "EGF_Baseline": "1.35"}, {"ID": "FBgn0000099", "EGF_Baseline": "0.9"}, {"ID": "FBgn0053120", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0039501", "EGF_Baseline": "1.4"}, {"ID": "FBgn0036522", "EGF_Baseline": "0.93"}, {"ID": "FBgn0037609", "EGF_Baseline": "0.97"}, {"ID": "FBgn0037309", "EGF_Baseline": "0.86"}, {"ID": "FBgn0035000", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0028527", "EGF_Baseline": "-1.15"}, {"ID": "FBgn0026597", "EGF_Baseline": "2.27"}, {"ID": "FBgn0040237", "EGF_Baseline": "0.4"}, {"ID": "FBgn0001083", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0024986", "EGF_Baseline": "-0.49"}, {"ID": "FBgn0041191", "EGF_Baseline": "0.84"}, {"ID": "FBgn0035430", "EGF_Baseline": "-0.72"}, {"ID": "FBgn0029538", "EGF_Baseline": "0.72"}, {"ID": "FBgn0037448", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0039482", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0032788", "EGF_Baseline": "1.21"}, {"ID": "FBgn0034249", "EGF_Baseline": "1.45"}, {"ID": "FBgn0027073", "EGF_Baseline": "-0.71"}, {"ID": "FBgn0032408", "EGF_Baseline": "1.82"}, {"ID": "FBgn0003162", "EGF_Baseline": "0.21"}, {"ID": "FBgn0052651", "EGF_Baseline": "-0.91"}, {"ID": "FBgn0005636", "EGF_Baseline": "-1.61"}, {"ID": "FBgn0261258", "EGF_Baseline": "-0.4"}, {"ID": "FBgn0250836", "EGF_Baseline": "-0.42"}, {"ID": "FBgn0086708", "EGF_Baseline": "-0.46"}, {"ID": "FBgn0041707", "EGF_Baseline": "2.37"}, {"ID": "FBgn0035515", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0031344", "EGF_Baseline": "1.27"}, {"ID": "FBgn0038861", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0037317", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0011288", "EGF_Baseline": "0.92"}, {"ID": "FBgn0051291", "EGF_Baseline": "1.14"}, {"ID": "FBgn0027356", "EGF_Baseline": "1.03"}, {"ID": "FBgn0053225", "EGF_Baseline": "1.01"}, {"ID": "FBgn0000346", "EGF_Baseline": "1.52"}, {"ID": "FBgn0033287", "EGF_Baseline": "-0.32"}, {"ID": "FBgn0036567", "EGF_Baseline": "1.31"}, {"ID": "FBgn0052141", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0051225", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0038796", "EGF_Baseline": "0.82"}, {"ID": "FBgn0039068", "EGF_Baseline": "1.03"}, {"ID": "FBgn0039424", "EGF_Baseline": "1.55"}, {"ID": "FBgn0261792", "EGF_Baseline": "1.34"}, {"ID": "FBgn0015230", "EGF_Baseline": "-1.1"}, {"ID": "FBgn0050296", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0038690", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0037827", "EGF_Baseline": "0.48"}, {"ID": "FBgn0051663", "EGF_Baseline": "-1.88"}, {"ID": "FBgn0038418", "EGF_Baseline": "0.51"}, {"ID": "FBgn0053181", "EGF_Baseline": "-1.92"}, {"ID": "FBgn0039218", "EGF_Baseline": "1.73"}, {"ID": "FBgn0033587", "EGF_Baseline": "-1.76"}, {"ID": "FBgn0035734", "EGF_Baseline": "-0.28"}, {"ID": "FBgn0250876", "EGF_Baseline": "0.61"}, {"ID": "FBgn0040817", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0040010", "EGF_Baseline": "1.97"}, {"ID": "FBgn0032051", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0036004", "EGF_Baseline": "-0.46"}, {"ID": "FBgn0261399", "EGF_Baseline": "-1.47"}, {"ID": "FBgn0010356", "EGF_Baseline": "0.35"}, {"ID": "FBgn0037197", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0038327", "EGF_Baseline": "1.26"}, {"ID": "FBgn0036143", "EGF_Baseline": "-1.1"}, {"ID": "FBgn0034483", "EGF_Baseline": "-1.75"}, {"ID": "FBgn0037503", "EGF_Baseline": "1.45"}, {"ID": "FBgn0029694", "EGF_Baseline": "-0.17"}, {"ID": "FBgn0024992", "EGF_Baseline": "-0.21"}, {"ID": "FBgn0027537", "EGF_Baseline": "1.24"}, {"ID": "FBgn0030575", "EGF_Baseline": "-1.55"}, {"ID": "FBgn0037205", "EGF_Baseline": "0.76"}, {"ID": "FBgn0032896", "EGF_Baseline": "1.22"}, {"ID": "FBgn0040080", "EGF_Baseline": "-1.2"}, {"ID": "FBgn0030707", "EGF_Baseline": "1.78"}, {"ID": "FBgn0037960", "EGF_Baseline": "1.54"}, {"ID": "FBgn0031801", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0030369", "EGF_Baseline": "0.91"}, {"ID": "FBgn0026259", "EGF_Baseline": "-0.63"}, {"ID": "FBgn0001314", "EGF_Baseline": "-2.13"}, {"ID": "FBgn0035026", "EGF_Baseline": "0.51"}, {"ID": "FBgn0051344", "EGF_Baseline": "0.25"}, {"ID": "FBgn0037462", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0022023", "EGF_Baseline": "0.96"}, {"ID": "FBgn0032631", "EGF_Baseline": "0.87"}, {"ID": "FBgn0029529", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0002283", "EGF_Baseline": "1.9"}, {"ID": "FBgn0032292", "EGF_Baseline": "-0.21"}, {"ID": "FBgn0028577", "EGF_Baseline": "-2.21"}, {"ID": "FBgn0037610", "EGF_Baseline": "0.88"}, {"ID": "FBgn0039045", "EGF_Baseline": "1.05"}, {"ID": "FBgn0085267", "EGF_Baseline": "-0.41"}, {"ID": "FBgn0010388", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0260795", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0260938", "EGF_Baseline": "1.06"}, {"ID": "FBgn0086674", "EGF_Baseline": "-1.68"}, {"ID": "FBgn0030474", "EGF_Baseline": "1.21"}, {"ID": "FBgn0036639", "EGF_Baseline": "-1.45"}, {"ID": "FBgn0020546", "EGF_Baseline": "-1.8"}, {"ID": "FBgn0038070", "EGF_Baseline": "0.02"}, {"ID": "FBgn0024811", "EGF_Baseline": "0.63"}, {"ID": "FBgn0033483", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0043010", "EGF_Baseline": "-1.1"}, {"ID": "FBgn0004513", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0031255", "EGF_Baseline": "0.41"}, {"ID": "FBgn0037242", "EGF_Baseline": "1.34"}, {"ID": "FBgn0030536", "EGF_Baseline": "0.49"}, {"ID": "FBgn0029512", "EGF_Baseline": "0.57"}, {"ID": "FBgn0036605", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0037478", "EGF_Baseline": "0.36"}, {"ID": "FBgn0003076", "EGF_Baseline": "0.43"}, {"ID": "FBgn0035251", "EGF_Baseline": "-1.5"}, {"ID": "FBgn0033523", "EGF_Baseline": "-0.34"}, {"ID": "FBgn0086778", "EGF_Baseline": "2.33"}, {"ID": "FBgn0051413", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0050487", "EGF_Baseline": "1.7"}, {"ID": "FBgn0038912", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0026148", "EGF_Baseline": "0.45"}, {"ID": "FBgn0036560", "EGF_Baseline": "-1.56"}, {"ID": "FBgn0085243", "EGF_Baseline": "-0.24"}, {"ID": "FBgn0002838", "EGF_Baseline": "0.55"}, {"ID": "FBgn0028737", "EGF_Baseline": "1.31"}, {"ID": "FBgn0034546", "EGF_Baseline": "-1.25"}, {"ID": "FBgn0250789", "EGF_Baseline": "0.94"}, {"ID": "FBgn0023214", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0035321", "EGF_Baseline": "0.33"}, {"ID": "FBgn0031655", "EGF_Baseline": "0.94"}, {"ID": "FBgn0035569", "EGF_Baseline": "0.16"}, {"ID": "FBgn0030761", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0053768", "EGF_Baseline": "2.67"}, {"ID": "FBgn0037127", "EGF_Baseline": "-0.67"}, {"ID": "FBgn0051735", "EGF_Baseline": "1.1"}, {"ID": "FBgn0029778", "EGF_Baseline": "-0.26"}, {"ID": "FBgn0034390", "EGF_Baseline": "-0.19"}, {"ID": "FBgn0259482", "EGF_Baseline": "-1.35"}, {"ID": "FBgn0043012", "EGF_Baseline": "0.47"}, {"ID": "FBgn0016700", "EGF_Baseline": "1.15"}, {"ID": "FBgn0031155", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0004370", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0039914", "EGF_Baseline": "0.3"}, {"ID": "FBgn0025687", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0035968", "EGF_Baseline": "0.92"}, {"ID": "FBgn0038485", "EGF_Baseline": "0.35"}, {"ID": "FBgn0039924", "EGF_Baseline": "1.27"}, {"ID": "FBgn0030679", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0039508", "EGF_Baseline": "0.28"}, {"ID": "FBgn0053285", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0034730", "EGF_Baseline": "-1.7"}, {"ID": "FBgn0033600", "EGF_Baseline": "-1.38"}, {"ID": "FBgn0261053", "EGF_Baseline": "0.68"}, {"ID": "FBgn0033043", "EGF_Baseline": "0.71"}, {"ID": "FBgn0261514", "EGF_Baseline": "-2.27"}, {"ID": "FBgn0020493", "EGF_Baseline": "-2.06"}, {"ID": "FBgn0034451", "EGF_Baseline": "-1.34"}, {"ID": "FBgn0031060", "EGF_Baseline": "-0.44"}, {"ID": "FBgn0003345", "EGF_Baseline": "-0.66"}, {"ID": "FBgn0037424", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0039767", "EGF_Baseline": "1.31"}, {"ID": "FBgn0038445", "EGF_Baseline": "-1.55"}, {"ID": "FBgn0034031", "EGF_Baseline": "0.12"}, {"ID": "FBgn0041174", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0030795", "EGF_Baseline": "0.46"}, {"ID": "FBgn0039629", "EGF_Baseline": "-2.02"}, {"ID": "FBgn0033476", "EGF_Baseline": "-1.44"}, {"ID": "FBgn0039848", "EGF_Baseline": "-1.31"}, {"ID": "FBgn0036085", "EGF_Baseline": "-1.73"}, {"ID": "FBgn0000542", "EGF_Baseline": "1.07"}, {"ID": "FBgn0024360", "EGF_Baseline": "-0.63"}, {"ID": "FBgn0011692", "EGF_Baseline": "1.18"}, {"ID": "FBgn0032104", "EGF_Baseline": "0.71"}, {"ID": "FBgn0034928", "EGF_Baseline": "-1.96"}, {"ID": "FBgn0034629", "EGF_Baseline": "0.34"}, {"ID": "FBgn0032915", "EGF_Baseline": "-1.27"}, {"ID": "FBgn0035987", "EGF_Baseline": "-1.52"}, {"ID": "FBgn0010905", "EGF_Baseline": "1.5"}, {"ID": "FBgn0039266", "EGF_Baseline": "-0.42"}, {"ID": "FBgn0028982", "EGF_Baseline": "1.55"}, {"ID": "FBgn0031189", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0015402", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0033199", "EGF_Baseline": "1.18"}, {"ID": "FBgn0038435", "EGF_Baseline": "-0.46"}, {"ID": "FBgn0030824", "EGF_Baseline": "0.86"}, {"ID": "FBgn0019928", "EGF_Baseline": "7.56"}, {"ID": "FBgn0015371", "EGF_Baseline": "0.59"}, {"ID": "FBgn0022153", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0053453", "EGF_Baseline": "-0.33"}, {"ID": "FBgn0031581", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0051700", "EGF_Baseline": "-1.23"}, {"ID": "FBgn0032297", "EGF_Baseline": "-1.31"}, {"ID": "FBgn0044028", "EGF_Baseline": "-1.27"}, {"ID": "FBgn0035540", "EGF_Baseline": "1.35"}, {"ID": "FBgn0000307", "EGF_Baseline": "1.83"}, {"ID": "FBgn0036439", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0037576", "EGF_Baseline": "0.79"}, {"ID": "FBgn0015801", "EGF_Baseline": "0.74"}, {"ID": "FBgn0035687", "EGF_Baseline": "-1.53"}, {"ID": "FBgn0036843", "EGF_Baseline": "-1.52"}, {"ID": "FBgn0032986", "EGF_Baseline": "0.58"}, {"ID": "FBgn0031999", "EGF_Baseline": "-1.62"}, {"ID": "FBgn0033192", "EGF_Baseline": "-1.63"}, {"ID": "FBgn0034691", "EGF_Baseline": "-0.4"}, {"ID": "FBgn0025360", "EGF_Baseline": "0.72"}, {"ID": "FBgn0052369", "EGF_Baseline": "1.76"}, {"ID": "FBgn0036813", "EGF_Baseline": "0.86"}, {"ID": "FBgn0024963", "EGF_Baseline": "0.68"}, {"ID": "FBgn0034792", "EGF_Baseline": "0.57"}, {"ID": "FBgn0014019", "EGF_Baseline": "-1.16"}, {"ID": "FBgn0039907", "EGF_Baseline": "0.98"}, {"ID": "FBgn0083972", "EGF_Baseline": "-1.45"}, {"ID": "FBgn0025742", "EGF_Baseline": "2.37"}, {"ID": "FBgn0031848", "EGF_Baseline": "-0.45"}, {"ID": "FBgn0261699", "EGF_Baseline": "0.38"}, {"ID": "FBgn0027785", "EGF_Baseline": "0.79"}, {"ID": "FBgn0032030", "EGF_Baseline": "-3.36"}, {"ID": "FBgn0021800", "EGF_Baseline": "-2.3"}, {"ID": "FBgn0037234", "EGF_Baseline": "0.63"}, {"ID": "FBgn0003060", "EGF_Baseline": "-1.61"}, {"ID": "FBgn0038876", "EGF_Baseline": "0.28"}, {"ID": "FBgn0026756", "EGF_Baseline": "-1.44"}, {"ID": "FBgn0031069", "EGF_Baseline": "-1.42"}, {"ID": "FBgn0037664", "EGF_Baseline": "-1.27"}, {"ID": "FBgn0028970", "EGF_Baseline": "0.56"}, {"ID": "FBgn0030434", "EGF_Baseline": "-0.43"}, {"ID": "FBgn0015221", "EGF_Baseline": "-1.6"}, {"ID": "FBgn0031414", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0035203", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0037657", "EGF_Baseline": "5.02"}, {"ID": "FBgn0036377", "EGF_Baseline": "0.62"}, {"ID": "FBgn0025109", "EGF_Baseline": "-1.73"}, {"ID": "FBgn0031547", "EGF_Baseline": "-1.61"}, {"ID": "FBgn0032271", "EGF_Baseline": "1.24"}, {"ID": "FBgn0033685", "EGF_Baseline": "-1.79"}, {"ID": "FBgn0026403", "EGF_Baseline": "0.35"}, {"ID": "FBgn0038051", "EGF_Baseline": "1.09"}, {"ID": "FBgn0034052", "EGF_Baseline": "-1.34"}, {"ID": "FBgn0030032", "EGF_Baseline": "-0.59"}, {"ID": "FBgn0029819", "EGF_Baseline": "-1.25"}, {"ID": "FBgn0029866", "EGF_Baseline": "0.3"}, {"ID": "FBgn0037169", "EGF_Baseline": "1.27"}, {"ID": "FBgn0034834", "EGF_Baseline": "-2.04"}, {"ID": "FBgn0031431", "EGF_Baseline": "0.42"}, {"ID": "FBgn0035797", "EGF_Baseline": "0.3"}, {"ID": "FBgn0030048", "EGF_Baseline": "-1.25"}, {"ID": "FBgn0052983", "EGF_Baseline": "0.27"}, {"ID": "FBgn0020645", "EGF_Baseline": "0.54"}, {"ID": "FBgn0000826", "EGF_Baseline": "2.15"}, {"ID": "FBgn0050377", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0046885", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0032191", "EGF_Baseline": "1.24"}, {"ID": "FBgn0040679", "EGF_Baseline": "1.17"}, {"ID": "FBgn0016715", "EGF_Baseline": "0.2"}, {"ID": "FBgn0037469", "EGF_Baseline": "1.23"}, {"ID": "FBgn0000662", "EGF_Baseline": "1.33"}, {"ID": "FBgn0050344", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0004507", "EGF_Baseline": "0.09"}, {"ID": "FBgn0016983", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0037655", "EGF_Baseline": "-2"}, {"ID": "FBgn0031973", "EGF_Baseline": "1.08"}, {"ID": "FBgn0045501", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0039379", "EGF_Baseline": "-0.59"}, {"ID": "FBgn0032428", "EGF_Baseline": "0.93"}, {"ID": "FBgn0045497", "EGF_Baseline": "4.08"}, {"ID": "FBgn0031365", "EGF_Baseline": "0.84"}, {"ID": "FBgn0038976", "EGF_Baseline": "0.15"}, {"ID": "FBgn0039155", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0005614", "EGF_Baseline": "-2.7"}, {"ID": "FBgn0036184", "EGF_Baseline": "-1.11"}, {"ID": "FBgn0040395", "EGF_Baseline": "1.03"}, {"ID": "FBgn0052112", "EGF_Baseline": "-1.25"}, {"ID": "FBgn0052121", "EGF_Baseline": "0.95"}, {"ID": "FBgn0034715", "EGF_Baseline": "0.31"}, {"ID": "FBgn0031778", "EGF_Baseline": "0.26"}, {"ID": "FBgn0260462", "EGF_Baseline": "-1.62"}, {"ID": "FBgn0036879", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0014179", "EGF_Baseline": "1.36"}, {"ID": "FBgn0028480", "EGF_Baseline": "-1.11"}, {"ID": "FBgn0031298", "EGF_Baseline": "0.57"}, {"ID": "FBgn0036766", "EGF_Baseline": "0.48"}, {"ID": "FBgn0033381", "EGF_Baseline": "0.72"}, {"ID": "FBgn0050087", "EGF_Baseline": "1.24"}, {"ID": "FBgn0031954", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0028870", "EGF_Baseline": "0.74"}, {"ID": "FBgn0051205", "EGF_Baseline": "0.76"}, {"ID": "FBgn0032215", "EGF_Baseline": "1.83"}, {"ID": "FBgn0046875", "EGF_Baseline": "1.16"}, {"ID": "FBgn0053340", "EGF_Baseline": "0.58"}, {"ID": "FBgn0038948", "EGF_Baseline": "-1.91"}, {"ID": "FBgn0037150", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0039407", "EGF_Baseline": "-0.36"}, {"ID": "FBgn0029148", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0016660", "EGF_Baseline": "1"}, {"ID": "FBgn0261848", "EGF_Baseline": "-1.73"}, {"ID": "FBgn0036835", "EGF_Baseline": "-2.07"}, {"ID": "FBgn0013984", "EGF_Baseline": "-1.26"}, {"ID": "FBgn0032471", "EGF_Baseline": "1.07"}, {"ID": "FBgn0031719", "EGF_Baseline": "-2.13"}, {"ID": "FBgn0033224", "EGF_Baseline": "-1.31"}, {"ID": "FBgn0039741", "EGF_Baseline": "0.61"}, {"ID": "FBgn0003963", "EGF_Baseline": "2.59"}, {"ID": "FBgn0034083", "EGF_Baseline": "-1.2"}, {"ID": "FBgn0003178", "EGF_Baseline": "-0.35"}, {"ID": "FBgn0033582", "EGF_Baseline": "-1.36"}, {"ID": "FBgn0035504", "EGF_Baseline": "-0.24"}, {"ID": "FBgn0036156", "EGF_Baseline": "0.49"}, {"ID": "FBgn0039857", "EGF_Baseline": "1.61"}, {"ID": "FBgn0027657", "EGF_Baseline": "-1.89"}, {"ID": "FBgn0037777", "EGF_Baseline": "-1.2"}, {"ID": "FBgn0032305", "EGF_Baseline": "2.19"}, {"ID": "FBgn0036305", "EGF_Baseline": "-0.52"}, {"ID": "FBgn0038965", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0052095", "EGF_Baseline": "2.01"}, {"ID": "FBgn0054008", "EGF_Baseline": "-1.16"}, {"ID": "FBgn0020277", "EGF_Baseline": "-0.41"}, {"ID": "FBgn0030204", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0035730", "EGF_Baseline": "-0.31"}, {"ID": "FBgn0036787", "EGF_Baseline": "2.16"}, {"ID": "FBgn0044511", "EGF_Baseline": "-1.62"}, {"ID": "FBgn0029573", "EGF_Baseline": "0.7"}, {"ID": "FBgn0033628", "EGF_Baseline": "1.27"}, {"ID": "FBgn0034966", "EGF_Baseline": "-0.21"}, {"ID": "FBgn0039357", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0050187", "EGF_Baseline": "0.21"}, {"ID": "FBgn0038234", "EGF_Baseline": "-1.76"}, {"ID": "FBgn0061469", "EGF_Baseline": "0.91"}, {"ID": "FBgn0037151", "EGF_Baseline": "0.34"}, {"ID": "FBgn0261004", "EGF_Baseline": "-1.86"}, {"ID": "FBgn0033240", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0033963", "EGF_Baseline": "0.74"}, {"ID": "FBgn0029720", "EGF_Baseline": "-1.43"}, {"ID": "FBgn0032624", "EGF_Baseline": "0.52"}, {"ID": "FBgn0037989", "EGF_Baseline": "0.61"}, {"ID": "FBgn0037045", "EGF_Baseline": "1.02"}, {"ID": "FBgn0035829", "EGF_Baseline": "0.74"}, {"ID": "FBgn0011020", "EGF_Baseline": "1.07"}, {"ID": "FBgn0042179", "EGF_Baseline": "1.51"}, {"ID": "FBgn0037979", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0010415", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0034076", "EGF_Baseline": "-1.28"}, {"ID": "FBgn0030839", "EGF_Baseline": "1.16"}, {"ID": "FBgn0031401", "EGF_Baseline": "-1.46"}, {"ID": "FBgn0036206", "EGF_Baseline": "-1.24"}, {"ID": "FBgn0260393", "EGF_Baseline": "-1.84"}, {"ID": "FBgn0051108", "EGF_Baseline": "0.72"}, {"ID": "FBgn0035769", "EGF_Baseline": "-1.46"}, {"ID": "FBgn0035669", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0037888", "EGF_Baseline": "-0.49"}, {"ID": "FBgn0023143", "EGF_Baseline": "-1.63"}, {"ID": "FBgn0030040", "EGF_Baseline": "0.61"}, {"ID": "FBgn0085260", "EGF_Baseline": "-1.27"}, {"ID": "FBgn0036332", "EGF_Baseline": "1.3"}, {"ID": "FBgn0042627", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0039077", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0011241", "EGF_Baseline": "-1.4"}, {"ID": "FBgn0033945", "EGF_Baseline": "-1.45"}, {"ID": "FBgn0045842", "EGF_Baseline": "2.1"}, {"ID": "FBgn0261446", "EGF_Baseline": "1.08"}, {"ID": "FBgn0032110", "EGF_Baseline": "-1.69"}, {"ID": "FBgn0053136", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0039387", "EGF_Baseline": "-0.54"}, {"ID": "FBgn0031239", "EGF_Baseline": "-1.3"}, {"ID": "FBgn0050083", "EGF_Baseline": "-1.22"}, {"ID": "FBgn0260749", "EGF_Baseline": "0.77"}, {"ID": "FBgn0030672", "EGF_Baseline": "-0.33"}, {"ID": "FBgn0032691", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0039440", "EGF_Baseline": "-1.65"}, {"ID": "FBgn0046322", "EGF_Baseline": "0.39"}, {"ID": "FBgn0030346", "EGF_Baseline": "0.97"}, {"ID": "FBgn0002571", "EGF_Baseline": "0.89"}, {"ID": "FBgn0030057", "EGF_Baseline": "0.73"}, {"ID": "FBgn0040206", "EGF_Baseline": "-0.33"}, {"ID": "FBgn0034264", "EGF_Baseline": "-0.84"}, {"ID": "FBgn0038855", "EGF_Baseline": "1.44"}, {"ID": "FBgn0040798", "EGF_Baseline": "0.55"}, {"ID": "FBgn0033887", "EGF_Baseline": "0.75"}, {"ID": "FBgn0038357", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0031799", "EGF_Baseline": "0.3"}, {"ID": "FBgn0033356", "EGF_Baseline": "0.62"}, {"ID": "FBgn0011327", "EGF_Baseline": "0.4"}, {"ID": "FBgn0034279", "EGF_Baseline": "1.83"}, {"ID": "FBgn0036350", "EGF_Baseline": "0.86"}, {"ID": "FBgn0041160", "EGF_Baseline": "-0.32"}, {"ID": "FBgn0002533", "EGF_Baseline": "1.39"}, {"ID": "FBgn0050010", "EGF_Baseline": "1.28"}, {"ID": "FBgn0086377", "EGF_Baseline": "0.49"}, {"ID": "FBgn0033673", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0035355", "EGF_Baseline": "-0.71"}, {"ID": "FBgn0001977", "EGF_Baseline": "-1.37"}, {"ID": "FBgn0037765", "EGF_Baseline": "-0.36"}, {"ID": "FBgn0028540", "EGF_Baseline": "1.99"}, {"ID": "FBgn0052152", "EGF_Baseline": "-1.78"}, {"ID": "FBgn0036575", "EGF_Baseline": "1.55"}, {"ID": "FBgn0052038", "EGF_Baseline": "-1.88"}, {"ID": "FBgn0039137", "EGF_Baseline": "0.89"}, {"ID": "FBgn0040350", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0031990", "EGF_Baseline": "1.25"}, {"ID": "FBgn0029084", "EGF_Baseline": "0.32"}, {"ID": "FBgn0039883", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0028684", "EGF_Baseline": "-3.93"}, {"ID": "FBgn0040389", "EGF_Baseline": "0.35"}, {"ID": "FBgn0003751", "EGF_Baseline": "0.63"}, {"ID": "FBgn0033159", "EGF_Baseline": "1.21"}, {"ID": "FBgn0261560", "EGF_Baseline": "0.59"}, {"ID": "FBgn0052206", "EGF_Baseline": "1.15"}, {"ID": "FBgn0015834", "EGF_Baseline": "2.92"}, {"ID": "FBgn0250826", "EGF_Baseline": "0.99"}, {"ID": "FBgn0030501", "EGF_Baseline": "0.45"}, {"ID": "FBgn0025620", "EGF_Baseline": "2.08"}, {"ID": "FBgn0084001", "EGF_Baseline": "0.63"}, {"ID": "FBgn0025616", "EGF_Baseline": "-0.56"}, {"ID": "FBgn0259187", "EGF_Baseline": "0.74"}, {"ID": "FBgn0031492", "EGF_Baseline": "-1.68"}, {"ID": "FBgn0083946", "EGF_Baseline": "0.93"}, {"ID": "FBgn0026391", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0038746", "EGF_Baseline": "-1.61"}, {"ID": "FBgn0261569", "EGF_Baseline": "0.41"}, {"ID": "FBgn0003744", "EGF_Baseline": "-1.21"}, {"ID": "FBgn0036454", "EGF_Baseline": "-1.26"}, {"ID": "FBgn0035019", "EGF_Baseline": "1.44"}, {"ID": "FBgn0032516", "EGF_Baseline": "1.61"}, {"ID": "FBgn0051482", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0037328", "EGF_Baseline": "1.62"}, {"ID": "FBgn0243512", "EGF_Baseline": "-1.45"}, {"ID": "FBgn0003748", "EGF_Baseline": "1.09"}, {"ID": "FBgn0051233", "EGF_Baseline": "-1.34"}, {"ID": "FBgn0038606", "EGF_Baseline": "-1.39"}, {"ID": "FBgn0037284", "EGF_Baseline": "0.58"}, {"ID": "FBgn0035971", "EGF_Baseline": "-1.79"}, {"ID": "FBgn0053349", "EGF_Baseline": "0.59"}, {"ID": "FBgn0011768", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0030551", "EGF_Baseline": "-1.58"}, {"ID": "FBgn0015828", "EGF_Baseline": "1.31"}, {"ID": "FBgn0026390", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0000250", "EGF_Baseline": "1.71"}, {"ID": "FBgn0085478", "EGF_Baseline": "0.31"}, {"ID": "FBgn0010317", "EGF_Baseline": "-1.24"}, {"ID": "FBgn0035425", "EGF_Baseline": "1.07"}, {"ID": "FBgn0035900", "EGF_Baseline": "5.63"}, {"ID": "FBgn0015714", "EGF_Baseline": "0.69"}, {"ID": "FBgn0040098", "EGF_Baseline": "0.86"}, {"ID": "FBgn0050011", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0051646", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0030583", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0037455", "EGF_Baseline": "0.17"}, {"ID": "FBgn0033876", "EGF_Baseline": "0.55"}, {"ID": "FBgn0040360", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0039025", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0004396", "EGF_Baseline": "-0.49"}, {"ID": "FBgn0034446", "EGF_Baseline": "-0.63"}, {"ID": "FBgn0036754", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0037874", "EGF_Baseline": "0.59"}, {"ID": "FBgn0003093", "EGF_Baseline": "-1.71"}, {"ID": "FBgn0050022", "EGF_Baseline": "-1.33"}, {"ID": "FBgn0029909", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0036725", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0038653", "EGF_Baseline": "-2.22"}, {"ID": "FBgn0033136", "EGF_Baseline": "1.24"}, {"ID": "FBgn0032877", "EGF_Baseline": "0.65"}, {"ID": "FBgn0030029", "EGF_Baseline": "0.21"}, {"ID": "FBgn0031635", "EGF_Baseline": "-0.37"}, {"ID": "FBgn0029891", "EGF_Baseline": "0.34"}, {"ID": "FBgn0010238", "EGF_Baseline": "0.63"}, {"ID": "FBgn0261550", "EGF_Baseline": "-1.23"}, {"ID": "FBgn0005278", "EGF_Baseline": "2.07"}, {"ID": "FBgn0021768", "EGF_Baseline": "1.54"}, {"ID": "FBgn0040262", "EGF_Baseline": "1.42"}, {"ID": "FBgn0037513", "EGF_Baseline": "-1.43"}, {"ID": "FBgn0031645", "EGF_Baseline": "1.12"}, {"ID": "FBgn0039187", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0029785", "EGF_Baseline": "2.09"}, {"ID": "FBgn0035795", "EGF_Baseline": "0.86"}, {"ID": "FBgn0030191", "EGF_Baseline": "-1.47"}, {"ID": "FBgn0032362", "EGF_Baseline": "2.86"}, {"ID": "FBgn0032053", "EGF_Baseline": "-1.67"}, {"ID": "FBgn0085421", "EGF_Baseline": "1.41"}, {"ID": "FBgn0051668", "EGF_Baseline": "0.42"}, {"ID": "FBgn0029896", "EGF_Baseline": "1.49"}, {"ID": "FBgn0015737", "EGF_Baseline": "0.58"}, {"ID": "FBgn0035331", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0011741", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0023388", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0031458", "EGF_Baseline": "-0.84"}, {"ID": "FBgn0039955", "EGF_Baseline": "-1.5"}, {"ID": "FBgn0034114", "EGF_Baseline": "-0.4"}, {"ID": "FBgn0030559", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0029594", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0033731", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0036460", "EGF_Baseline": "-1.93"}, {"ID": "FBgn0051720", "EGF_Baseline": "0.76"}, {"ID": "FBgn0040371", "EGF_Baseline": "0.69"}, {"ID": "FBgn0016684", "EGF_Baseline": "0.7"}, {"ID": "FBgn0250871", "EGF_Baseline": "0.35"}, {"ID": "FBgn0037067", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0034160", "EGF_Baseline": "-1.38"}, {"ID": "FBgn0040648", "EGF_Baseline": "1.02"}, {"ID": "FBgn0010651", "EGF_Baseline": "0.65"}, {"ID": "FBgn0035522", "EGF_Baseline": "-0.42"}, {"ID": "FBgn0031682", "EGF_Baseline": "0.98"}, {"ID": "FBgn0035012", "EGF_Baseline": "-2.38"}, {"ID": "FBgn0038420", "EGF_Baseline": "0.86"}, {"ID": "FBgn0029707", "EGF_Baseline": "2.2"}, {"ID": "FBgn0002719", "EGF_Baseline": "-2.12"}, {"ID": "FBgn0032042", "EGF_Baseline": "0.49"}, {"ID": "FBgn0028479", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0053635", "EGF_Baseline": "-1.2"}, {"ID": "FBgn0031312", "EGF_Baseline": "0.5"}, {"ID": "FBgn0032755", "EGF_Baseline": "-1.72"}, {"ID": "FBgn0054051", "EGF_Baseline": "-1.84"}, {"ID": "FBgn0029659", "EGF_Baseline": "-0.45"}, {"ID": "FBgn0033179", "EGF_Baseline": "0.07"}, {"ID": "FBgn0005564", "EGF_Baseline": "-1.57"}, {"ID": "FBgn0085311", "EGF_Baseline": "0.78"}, {"ID": "FBgn0053532", "EGF_Baseline": "-2.33"}, {"ID": "FBgn0008636", "EGF_Baseline": "0.57"}, {"ID": "FBgn0022344", "EGF_Baseline": "-1.2"}, {"ID": "FBgn0030026", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0087008", "EGF_Baseline": "0.72"}, {"ID": "FBgn0030887", "EGF_Baseline": "-1.51"}, {"ID": "FBgn0034475", "EGF_Baseline": "0.47"}, {"ID": "FBgn0259152", "EGF_Baseline": "0.73"}, {"ID": "FBgn0028897", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0020653", "EGF_Baseline": "-1.57"}, {"ID": "FBgn0031561", "EGF_Baseline": "1.93"}, {"ID": "FBgn0260719", "EGF_Baseline": "0.88"}, {"ID": "FBgn0051822", "EGF_Baseline": "1.16"}, {"ID": "FBgn0034168", "EGF_Baseline": "-0.71"}, {"ID": "FBgn0052626", "EGF_Baseline": "-1.51"}, {"ID": "FBgn0034310", "EGF_Baseline": "3.89"}, {"ID": "FBgn0259211", "EGF_Baseline": "-1.31"}, {"ID": "FBgn0050365", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0037923", "EGF_Baseline": "1"}, {"ID": "FBgn0085391", "EGF_Baseline": "-1.5"}, {"ID": "FBgn0037536", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0032068", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0027505", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0036534", "EGF_Baseline": "1.98"}, {"ID": "FBgn0032010", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0002542", "EGF_Baseline": "0.95"}, {"ID": "FBgn0030122", "EGF_Baseline": "0.58"}, {"ID": "FBgn0036541", "EGF_Baseline": "-0.09"}, {"ID": "FBgn0033952", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0026562", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0017414", "EGF_Baseline": "0.9"}, {"ID": "FBgn0250847", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0004242", "EGF_Baseline": "1.18"}, {"ID": "FBgn0036237", "EGF_Baseline": "-0.34"}, {"ID": "FBgn0020376", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0039229", "EGF_Baseline": "5.02"}, {"ID": "FBgn0028734", "EGF_Baseline": "0.6"}, {"ID": "FBgn0028920", "EGF_Baseline": "-0.46"}, {"ID": "FBgn0085357", "EGF_Baseline": "0.74"}, {"ID": "FBgn0051694", "EGF_Baseline": "-1.55"}, {"ID": "FBgn0004567", "EGF_Baseline": "1.25"}, {"ID": "FBgn0036705", "EGF_Baseline": "1.9"}, {"ID": "FBgn0036660", "EGF_Baseline": "1.64"}, {"ID": "FBgn0250862", "EGF_Baseline": "-0.27"}, {"ID": "FBgn0038515", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0046302", "EGF_Baseline": "-1.24"}, {"ID": "FBgn0030947", "EGF_Baseline": "-1.24"}, {"ID": "FBgn0039987", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0010222", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0082585", "EGF_Baseline": "-1.28"}, {"ID": "FBgn0040506", "EGF_Baseline": "0.75"}, {"ID": "FBgn0035854", "EGF_Baseline": "0.84"}, {"ID": "FBgn0000083", "EGF_Baseline": "1.11"}, {"ID": "FBgn0261477", "EGF_Baseline": "1.02"}, {"ID": "FBgn0085282", "EGF_Baseline": "0.23"}, {"ID": "FBgn0010215", "EGF_Baseline": "0.96"}, {"ID": "FBgn0037175", "EGF_Baseline": "0.53"}, {"ID": "FBgn0016078", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0035726", "EGF_Baseline": "1.02"}, {"ID": "FBgn0013972", "EGF_Baseline": "-0.25"}, {"ID": "FBgn0031947", "EGF_Baseline": "0.76"}, {"ID": "FBgn0051115", "EGF_Baseline": "0.61"}, {"ID": "FBgn0035590", "EGF_Baseline": "-0.09"}, {"ID": "FBgn0030542", "EGF_Baseline": "-1.55"}, {"ID": "FBgn0038579", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0027086", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0020391", "EGF_Baseline": "-1.47"}, {"ID": "FBgn0033133", "EGF_Baseline": "0.61"}, {"ID": "FBgn0030973", "EGF_Baseline": "0.52"}, {"ID": "FBgn0085273", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0030161", "EGF_Baseline": "0.81"}, {"ID": "FBgn0010053", "EGF_Baseline": "-1.75"}, {"ID": "FBgn0037896", "EGF_Baseline": "0.54"}, {"ID": "FBgn0030776", "EGF_Baseline": "-1.85"}, {"ID": "FBgn0028939", "EGF_Baseline": "0.41"}, {"ID": "FBgn0052219", "EGF_Baseline": "1.15"}, {"ID": "FBgn0032520", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0039678", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0040918", "EGF_Baseline": "1.08"}, {"ID": "FBgn0014028", "EGF_Baseline": "0.78"}, {"ID": "FBgn0000257", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0010808", "EGF_Baseline": "3.28"}, {"ID": "FBgn0039784", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0030054", "EGF_Baseline": "-1.37"}, {"ID": "FBgn0051268", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0003187", "EGF_Baseline": "-0.32"}, {"ID": "FBgn0034399", "EGF_Baseline": "-0.39"}, {"ID": "FBgn0026375", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0039511", "EGF_Baseline": "2.04"}, {"ID": "FBgn0038929", "EGF_Baseline": "-1.16"}, {"ID": "FBgn0031622", "EGF_Baseline": "1.02"}, {"ID": "FBgn0030505", "EGF_Baseline": "-0.81"}, {"ID": "FBgn0035623", "EGF_Baseline": "0.86"}, {"ID": "FBgn0035690", "EGF_Baseline": "-0.67"}, {"ID": "FBgn0261856", "EGF_Baseline": "-2.57"}, {"ID": "FBgn0034292", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0036850", "EGF_Baseline": "-0.29"}, {"ID": "FBgn0052354", "EGF_Baseline": "-2.49"}, {"ID": "FBgn0032171", "EGF_Baseline": "-1.22"}, {"ID": "FBgn0036681", "EGF_Baseline": "0.52"}, {"ID": "FBgn0032242", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0044823", "EGF_Baseline": "1.2"}, {"ID": "FBgn0036423", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0011227", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0040068", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0039798", "EGF_Baseline": "0.44"}, {"ID": "FBgn0026592", "EGF_Baseline": "-0.36"}, {"ID": "FBgn0051715", "EGF_Baseline": "-0.66"}, {"ID": "FBgn0039675", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0033060", "EGF_Baseline": "0.94"}, {"ID": "FBgn0014877", "EGF_Baseline": "-1.04"}, {"ID": "FBgn0033210", "EGF_Baseline": "0.63"}, {"ID": "FBgn0035206", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0034532", "EGF_Baseline": "-1.69"}, {"ID": "FBgn0037120", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0033558", "EGF_Baseline": "0.41"}, {"ID": "FBgn0041237", "EGF_Baseline": "1.4"}, {"ID": "FBgn0039630", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0054041", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0011293", "EGF_Baseline": "0.34"}, {"ID": "FBgn0003575", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0040034", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0035007", "EGF_Baseline": "0.34"}, {"ID": "FBgn0034687", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0038840", "EGF_Baseline": "1.12"}, {"ID": "FBgn0034184", "EGF_Baseline": "-0.33"}, {"ID": "FBgn0034541", "EGF_Baseline": "-1.33"}, {"ID": "FBgn0086450", "EGF_Baseline": "1.18"}, {"ID": "FBgn0034564", "EGF_Baseline": "-1.2"}, {"ID": "FBgn0261244", "EGF_Baseline": "1.81"}, {"ID": "FBgn0041585", "EGF_Baseline": "0.63"}, {"ID": "FBgn0036133", "EGF_Baseline": "1.52"}, {"ID": "FBgn0031098", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0028690", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0085278", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0001122", "EGF_Baseline": "0.47"}, {"ID": "FBgn0028697", "EGF_Baseline": "3.43"}, {"ID": "FBgn0038396", "EGF_Baseline": "-0.36"}, {"ID": "FBgn0040551", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0039726", "EGF_Baseline": "-0.49"}, {"ID": "FBgn0010173", "EGF_Baseline": "0.91"}, {"ID": "FBgn0032261", "EGF_Baseline": "-1.6"}, {"ID": "FBgn0034770", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0030425", "EGF_Baseline": "2"}, {"ID": "FBgn0026262", "EGF_Baseline": "-1.77"}, {"ID": "FBgn0039202", "EGF_Baseline": "-0.71"}, {"ID": "FBgn0004889", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0027375", "EGF_Baseline": "-0.66"}, {"ID": "FBgn0031184", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0050446", "EGF_Baseline": "0.52"}, {"ID": "FBgn0052774", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0036300", "EGF_Baseline": "-0.08"}, {"ID": "FBgn0033279", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0032021", "EGF_Baseline": "1.19"}, {"ID": "FBgn0023423", "EGF_Baseline": "1.09"}, {"ID": "FBgn0034742", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0051370", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0025117", "EGF_Baseline": "-2.42"}, {"ID": "FBgn0033791", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0038313", "EGF_Baseline": "0.41"}, {"ID": "FBgn0261575", "EGF_Baseline": "1.39"}, {"ID": "FBgn0011283", "EGF_Baseline": "0.28"}, {"ID": "FBgn0085198", "EGF_Baseline": "-1.4"}, {"ID": "FBgn0032374", "EGF_Baseline": "0.74"}, {"ID": "FBgn0039070", "EGF_Baseline": "1.49"}, {"ID": "FBgn0031359", "EGF_Baseline": "-2.09"}, {"ID": "FBgn0034456", "EGF_Baseline": "1.45"}, {"ID": "FBgn0033999", "EGF_Baseline": "1.36"}, {"ID": "FBgn0033738", "EGF_Baseline": "0.96"}, {"ID": "FBgn0034622", "EGF_Baseline": "-1.83"}, {"ID": "FBgn0028379", "EGF_Baseline": "-0.49"}, {"ID": "FBgn0031373", "EGF_Baseline": "1"}, {"ID": "FBgn0038371", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0037602", "EGF_Baseline": "1.22"}, {"ID": "FBgn0024836", "EGF_Baseline": "1.62"}, {"ID": "FBgn0031591", "EGF_Baseline": "-1.82"}, {"ID": "FBgn0028394", "EGF_Baseline": "-1.27"}, {"ID": "FBgn0035697", "EGF_Baseline": "-0.33"}, {"ID": "FBgn0259179", "EGF_Baseline": "-1.42"}, {"ID": "FBgn0033260", "EGF_Baseline": "-1.57"}, {"ID": "FBgn0034535", "EGF_Baseline": "-0.98"}, {"ID": "FBgn0037548", "EGF_Baseline": "-2.04"}, {"ID": "FBgn0085398", "EGF_Baseline": "1.55"}, {"ID": "FBgn0036345", "EGF_Baseline": "0.19"}, {"ID": "FBgn0039787", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0036121", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0035935", "EGF_Baseline": "0.83"}, {"ID": "FBgn0038739", "EGF_Baseline": "0.38"}, {"ID": "FBgn0052813", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0038532", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0035577", "EGF_Baseline": "0.4"}, {"ID": "FBgn0041242", "EGF_Baseline": "0.48"}, {"ID": "FBgn0037485", "EGF_Baseline": "1.07"}, {"ID": "FBgn0085333", "EGF_Baseline": "1.25"}, {"ID": "FBgn0039736", "EGF_Baseline": "-0.41"}, {"ID": "FBgn0011823", "EGF_Baseline": "0.13"}, {"ID": "FBgn0000152", "EGF_Baseline": "0.33"}, {"ID": "FBgn0261545", "EGF_Baseline": "2.52"}, {"ID": "FBgn0029082", "EGF_Baseline": "0.37"}, {"ID": "FBgn0030891", "EGF_Baseline": "0.29"}, {"ID": "FBgn0029729", "EGF_Baseline": "1.24"}, {"ID": "FBgn0000278", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0031456", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0039650", "EGF_Baseline": "-0.59"}, {"ID": "FBgn0031451", "EGF_Baseline": "0.53"}, {"ID": "FBgn0051559", "EGF_Baseline": "0.82"}, {"ID": "FBgn0016131", "EGF_Baseline": "4.37"}, {"ID": "FBgn0020556", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0032639", "EGF_Baseline": "1.25"}, {"ID": "FBgn0035344", "EGF_Baseline": "-0.44"}, {"ID": "FBgn0031887", "EGF_Baseline": "1.51"}, {"ID": "FBgn0051217", "EGF_Baseline": "-1.61"}, {"ID": "FBgn0037592", "EGF_Baseline": "-2.34"}, {"ID": "FBgn0031428", "EGF_Baseline": "-0.41"}, {"ID": "FBgn0003380", "EGF_Baseline": "0.48"}, {"ID": "FBgn0032202", "EGF_Baseline": "1.03"}, {"ID": "FBgn0030000", "EGF_Baseline": "-1.47"}, {"ID": "FBgn0013973", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0031607", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0040336", "EGF_Baseline": "0.25"}, {"ID": "FBgn0036979", "EGF_Baseline": "-1.81"}, {"ID": "FBgn0003189", "EGF_Baseline": "0.87"}, {"ID": "FBgn0051522", "EGF_Baseline": "1.18"}, {"ID": "FBgn0001311", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0027564", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0039491", "EGF_Baseline": "1"}, {"ID": "FBgn0032921", "EGF_Baseline": "0.76"}, {"ID": "FBgn0005322", "EGF_Baseline": "0.78"}, {"ID": "FBgn0036029", "EGF_Baseline": "1.16"}, {"ID": "FBgn0261402", "EGF_Baseline": "1.19"}, {"ID": "FBgn0028955", "EGF_Baseline": "-0.84"}, {"ID": "FBgn0030827", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0051787", "EGF_Baseline": "1.49"}, {"ID": "FBgn0034179", "EGF_Baseline": "-0.38"}, {"ID": "FBgn0029843", "EGF_Baseline": "-0.41"}, {"ID": "FBgn0038842", "EGF_Baseline": "1"}, {"ID": "FBgn0040778", "EGF_Baseline": "-1.26"}, {"ID": "FBgn0037248", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0047199", "EGF_Baseline": "0.35"}, {"ID": "FBgn0015568", "EGF_Baseline": "-1.73"}, {"ID": "FBgn0019982", "EGF_Baseline": "-0.5"}, {"ID": "FBgn0052021", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0004366", "EGF_Baseline": "-2.38"}, {"ID": "FBgn0036931", "EGF_Baseline": "-1.38"}, {"ID": "FBgn0023094", "EGF_Baseline": "1.49"}, {"ID": "FBgn0051075", "EGF_Baseline": "-1.1"}, {"ID": "FBgn0033075", "EGF_Baseline": "-0.35"}, {"ID": "FBgn0001133", "EGF_Baseline": "0.72"}, {"ID": "FBgn0031219", "EGF_Baseline": "1.92"}, {"ID": "FBgn0085307", "EGF_Baseline": "-0.29"}, {"ID": "FBgn0050056", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0037720", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0030052", "EGF_Baseline": "-1.15"}, {"ID": "FBgn0002641", "EGF_Baseline": "0.53"}, {"ID": "FBgn0050323", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0034109", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0039453", "EGF_Baseline": "-1.42"}, {"ID": "FBgn0030206", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0036509", "EGF_Baseline": "-1.46"}, {"ID": "FBgn0022981", "EGF_Baseline": "1.36"}, {"ID": "FBgn0035187", "EGF_Baseline": "-0.23"}, {"ID": "FBgn0017557", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0014851", "EGF_Baseline": "-0.54"}, {"ID": "FBgn0040343", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0035170", "EGF_Baseline": "0.52"}, {"ID": "FBgn0030731", "EGF_Baseline": "-0.35"}, {"ID": "FBgn0034104", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0011279", "EGF_Baseline": "1.22"}, {"ID": "FBgn0035148", "EGF_Baseline": "-0.49"}, {"ID": "FBgn0002868", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0015585", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0030691", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0032456", "EGF_Baseline": "0.79"}, {"ID": "FBgn0033865", "EGF_Baseline": "-0.42"}, {"ID": "FBgn0034671", "EGF_Baseline": "1.05"}, {"ID": "FBgn0027873", "EGF_Baseline": "-1.54"}, {"ID": "FBgn0004425", "EGF_Baseline": "-1.26"}, {"ID": "FBgn0031443", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0039537", "EGF_Baseline": "0.7"}, {"ID": "FBgn0003430", "EGF_Baseline": "1.23"}, {"ID": "FBgn0086443", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0040752", "EGF_Baseline": "1.1"}, {"ID": "FBgn0069973", "EGF_Baseline": "1.31"}, {"ID": "FBgn0003480", "EGF_Baseline": "-0.28"}, {"ID": "FBgn0034563", "EGF_Baseline": "0.81"}, {"ID": "FBgn0000092", "EGF_Baseline": "-0.84"}, {"ID": "FBgn0042185", "EGF_Baseline": "1.8"}, {"ID": "FBgn0030809", "EGF_Baseline": "-1.91"}, {"ID": "FBgn0038767", "EGF_Baseline": "-0.41"}, {"ID": "FBgn0058064", "EGF_Baseline": "0.77"}, {"ID": "FBgn0034692", "EGF_Baseline": "0.84"}, {"ID": "FBgn0000100", "EGF_Baseline": "3.01"}, {"ID": "FBgn0029874", "EGF_Baseline": "-0.91"}, {"ID": "FBgn0010409", "EGF_Baseline": "5.32"}, {"ID": "FBgn0261573", "EGF_Baseline": "1.97"}, {"ID": "FBgn0014127", "EGF_Baseline": "1.59"}, {"ID": "FBgn0038903", "EGF_Baseline": "1.34"}, {"ID": "FBgn0034951", "EGF_Baseline": "0.81"}, {"ID": "FBgn0036587", "EGF_Baseline": "1.14"}, {"ID": "FBgn0036091", "EGF_Baseline": "-1.35"}, {"ID": "FBgn0002735", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0015577", "EGF_Baseline": "-1"}, {"ID": "FBgn0032511", "EGF_Baseline": "1.73"}, {"ID": "FBgn0001170", "EGF_Baseline": "-0.77"}, {"ID": "FBgn0011225", "EGF_Baseline": "1.69"}, {"ID": "FBgn0039396", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0031620", "EGF_Baseline": "-0.15"}, {"ID": "FBgn0039084", "EGF_Baseline": "-1.66"}, {"ID": "FBgn0038426", "EGF_Baseline": "-1.63"}, {"ID": "FBgn0035677", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0085436", "EGF_Baseline": "5.1"}, {"ID": "FBgn0035714", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0052576", "EGF_Baseline": "-0.44"}, {"ID": "FBgn0030661", "EGF_Baseline": "-0.66"}, {"ID": "FBgn0003515", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0036728", "EGF_Baseline": "-1.27"}, {"ID": "FBgn0025454", "EGF_Baseline": "0.84"}, {"ID": "FBgn0034964", "EGF_Baseline": "-1.91"}, {"ID": "FBgn0036624", "EGF_Baseline": "-1.22"}, {"ID": "FBgn0034959", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0052569", "EGF_Baseline": "0.19"}, {"ID": "FBgn0035346", "EGF_Baseline": "0.19"}, {"ID": "FBgn0039876", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0058198", "EGF_Baseline": "-1.26"}, {"ID": "FBgn0032401", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0031101", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0261289", "EGF_Baseline": "1.27"}, {"ID": "FBgn0035824", "EGF_Baseline": "0.72"}, {"ID": "FBgn0027795", "EGF_Baseline": "-0.12"}, {"ID": "FBgn0025573", "EGF_Baseline": "0.39"}, {"ID": "FBgn0033232", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0036044", "EGF_Baseline": "0.7"}, {"ID": "FBgn0260657", "EGF_Baseline": "1.19"}, {"ID": "FBgn0031289", "EGF_Baseline": "-0.45"}, {"ID": "FBgn0035638", "EGF_Baseline": "1.82"}, {"ID": "FBgn0030420", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0053012", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0024245", "EGF_Baseline": "-0.59"}, {"ID": "FBgn0034416", "EGF_Baseline": "-0.14"}, {"ID": "FBgn0010300", "EGF_Baseline": "-0.28"}, {"ID": "FBgn0052192", "EGF_Baseline": "0.7"}, {"ID": "FBgn0029748", "EGF_Baseline": "2.18"}, {"ID": "FBgn0025549", "EGF_Baseline": "-0.39"}, {"ID": "FBgn0034205", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0032715", "EGF_Baseline": "-0.81"}, {"ID": "FBgn0029999", "EGF_Baseline": "-1.61"}, {"ID": "FBgn0039341", "EGF_Baseline": "-1.46"}, {"ID": "FBgn0036911", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0259713", "EGF_Baseline": "1.44"}, {"ID": "FBgn0038953", "EGF_Baseline": "-1.14"}, {"ID": "FBgn0035397", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0000228", "EGF_Baseline": "1.13"}, {"ID": "FBgn0034097", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0031877", "EGF_Baseline": "0.56"}, {"ID": "FBgn0010575", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0032668", "EGF_Baseline": "-0.66"}, {"ID": "FBgn0030311", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0036329", "EGF_Baseline": "0.24"}, {"ID": "FBgn0020756", "EGF_Baseline": "1.28"}, {"ID": "FBgn0039686", "EGF_Baseline": "-0.52"}, {"ID": "FBgn0011726", "EGF_Baseline": "0.7"}, {"ID": "FBgn0040038", "EGF_Baseline": "1.18"}, {"ID": "FBgn0030961", "EGF_Baseline": "-1.33"}, {"ID": "FBgn0038734", "EGF_Baseline": "-0.16"}, {"ID": "FBgn0033828", "EGF_Baseline": "-1.53"}, {"ID": "FBgn0004842", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0034269", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0039966", "EGF_Baseline": "0.87"}, {"ID": "FBgn0037347", "EGF_Baseline": "-1.73"}, {"ID": "FBgn0036195", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0032023", "EGF_Baseline": "0.82"}, {"ID": "FBgn0031327", "EGF_Baseline": "0.77"}, {"ID": "FBgn0004919", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0044046", "EGF_Baseline": "-1.58"}, {"ID": "FBgn0053523", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0038609", "EGF_Baseline": "0.77"}, {"ID": "FBgn0015795", "EGF_Baseline": "0.91"}, {"ID": "FBgn0032211", "EGF_Baseline": "1.26"}, {"ID": "FBgn0050420", "EGF_Baseline": "-0.71"}, {"ID": "FBgn0027574", "EGF_Baseline": "1.5"}, {"ID": "FBgn0051313", "EGF_Baseline": "0.22"}, {"ID": "FBgn0038692", "EGF_Baseline": "-0.42"}, {"ID": "FBgn0032075", "EGF_Baseline": "-0.41"}, {"ID": "FBgn0051352", "EGF_Baseline": "-2.07"}, {"ID": "FBgn0038191", "EGF_Baseline": "-0.39"}, {"ID": "FBgn0038466", "EGF_Baseline": "-1.6"}, {"ID": "FBgn0036993", "EGF_Baseline": "-0.84"}, {"ID": "FBgn0031766", "EGF_Baseline": "0.96"}, {"ID": "FBgn0032388", "EGF_Baseline": "0.28"}, {"ID": "FBgn0001281", "EGF_Baseline": "1.1"}, {"ID": "FBgn0033571", "EGF_Baseline": "4.53"}, {"ID": "FBgn0004910", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0051219", "EGF_Baseline": "1.38"}, {"ID": "FBgn0033490", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0034894", "EGF_Baseline": "0.54"}, {"ID": "FBgn0052488", "EGF_Baseline": "1.21"}, {"ID": "FBgn0050463", "EGF_Baseline": "-1.67"}, {"ID": "FBgn0039806", "EGF_Baseline": "-0.21"}, {"ID": "FBgn0035179", "EGF_Baseline": "-1.62"}, {"ID": "FBgn0038742", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0038535", "EGF_Baseline": "1.07"}, {"ID": "FBgn0034324", "EGF_Baseline": "0.35"}, {"ID": "FBgn0040045", "EGF_Baseline": "2.13"}, {"ID": "FBgn0015586", "EGF_Baseline": "-0.77"}, {"ID": "FBgn0053469", "EGF_Baseline": "1.47"}, {"ID": "FBgn0040352", "EGF_Baseline": "0.37"}, {"ID": "FBgn0033690", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0053100", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0085384", "EGF_Baseline": "-1.78"}, {"ID": "FBgn0038111", "EGF_Baseline": "-1.61"}, {"ID": "FBgn0036213", "EGF_Baseline": "4.53"}, {"ID": "FBgn0261385", "EGF_Baseline": "-1.4"}, {"ID": "FBgn0004107", "EGF_Baseline": "3.79"}, {"ID": "FBgn0036443", "EGF_Baseline": "-1.33"}, {"ID": "FBgn0032881", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0031089", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0085253", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0030738", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0032234", "EGF_Baseline": "0.59"}, {"ID": "FBgn0036778", "EGF_Baseline": "1.43"}, {"ID": "FBgn0051326", "EGF_Baseline": "-1.81"}, {"ID": "FBgn0035217", "EGF_Baseline": "-0.65"}, {"ID": "FBgn0036516", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0034023", "EGF_Baseline": "0.4"}, {"ID": "FBgn0038262", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0052707", "EGF_Baseline": "0.48"}, {"ID": "FBgn0038826", "EGF_Baseline": "-1.2"}, {"ID": "FBgn0032810", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0037680", "EGF_Baseline": "-2.23"}, {"ID": "FBgn0033450", "EGF_Baseline": "0.65"}, {"ID": "FBgn0032259", "EGF_Baseline": "-1.46"}, {"ID": "FBgn0031010", "EGF_Baseline": "1.37"}, {"ID": "FBgn0033705", "EGF_Baseline": "-0.54"}, {"ID": "FBgn0039450", "EGF_Baseline": "0.99"}, {"ID": "FBgn0038451", "EGF_Baseline": "0.24"}, {"ID": "FBgn0037224", "EGF_Baseline": "1.02"}, {"ID": "FBgn0052405", "EGF_Baseline": "-1.28"}, {"ID": "FBgn0033369", "EGF_Baseline": "0.21"}, {"ID": "FBgn0040964", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0002872", "EGF_Baseline": "1.56"}, {"ID": "FBgn0038345", "EGF_Baseline": "-1.51"}, {"ID": "FBgn0261451", "EGF_Baseline": "-1.43"}, {"ID": "FBgn0052087", "EGF_Baseline": "-1.65"}, {"ID": "FBgn0033607", "EGF_Baseline": "-0.56"}, {"ID": "FBgn0037584", "EGF_Baseline": "-1.44"}, {"ID": "FBgn0039294", "EGF_Baseline": "0.91"}, {"ID": "FBgn0010294", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0039135", "EGF_Baseline": "-0.65"}, {"ID": "FBgn0039581", "EGF_Baseline": "-0.27"}, {"ID": "FBgn0033597", "EGF_Baseline": "0.37"}, {"ID": "FBgn0032817", "EGF_Baseline": "1.08"}, {"ID": "FBgn0037282", "EGF_Baseline": "-1.54"}, {"ID": "FBgn0027495", "EGF_Baseline": "0.22"}, {"ID": "FBgn0261710", "EGF_Baseline": "0.33"}, {"ID": "FBgn0038809", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0035312", "EGF_Baseline": "0.73"}, {"ID": "FBgn0036039", "EGF_Baseline": "-0.37"}, {"ID": "FBgn0001208", "EGF_Baseline": "0.83"}, {"ID": "FBgn0030616", "EGF_Baseline": "1.2"}, {"ID": "FBgn0051342", "EGF_Baseline": "-1.71"}, {"ID": "FBgn0022382", "EGF_Baseline": "1.55"}, {"ID": "FBgn0035453", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0004864", "EGF_Baseline": "-0.03"}, {"ID": "FBgn0039098", "EGF_Baseline": "-1.48"}, {"ID": "FBgn0034700", "EGF_Baseline": "0.52"}, {"ID": "FBgn0020765", "EGF_Baseline": "-0.71"}, {"ID": "FBgn0031264", "EGF_Baseline": "0.06"}, {"ID": "FBgn0032586", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0052382", "EGF_Baseline": "1.43"}, {"ID": "FBgn0030816", "EGF_Baseline": "1.04"}, {"ID": "FBgn0038175", "EGF_Baseline": "0.71"}, {"ID": "FBgn0032518", "EGF_Baseline": "-3.1"}, {"ID": "FBgn0261588", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0034656", "EGF_Baseline": "-2.27"}, {"ID": "FBgn0053080", "EGF_Baseline": "-1.22"}, {"ID": "FBgn0000447", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0037363", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0035877", "EGF_Baseline": "-0.71"}, {"ID": "FBgn0034523", "EGF_Baseline": "-1.99"}, {"ID": "FBgn0033936", "EGF_Baseline": "-1.83"}, {"ID": "FBgn0033740", "EGF_Baseline": "0.44"}, {"ID": "FBgn0045483", "EGF_Baseline": "0.17"}, {"ID": "FBgn0033635", "EGF_Baseline": "-1.45"}, {"ID": "FBgn0086758", "EGF_Baseline": "-1.75"}, {"ID": "FBgn0037130", "EGF_Baseline": "0.57"}, {"ID": "FBgn0022710", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0004034", "EGF_Baseline": "-1.48"}, {"ID": "FBgn0039711", "EGF_Baseline": "1.05"}, {"ID": "FBgn0034009", "EGF_Baseline": "-1.84"}, {"ID": "FBgn0053177", "EGF_Baseline": "0.47"}, {"ID": "FBgn0035282", "EGF_Baseline": "1.15"}, {"ID": "FBgn0032016", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0039498", "EGF_Baseline": "1.33"}, {"ID": "FBgn0037727", "EGF_Baseline": "0.6"}, {"ID": "FBgn0030348", "EGF_Baseline": "0.89"}, {"ID": "FBgn0024326", "EGF_Baseline": "0.99"}, {"ID": "FBgn0003371", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0022355", "EGF_Baseline": "-1.39"}, {"ID": "FBgn0035495", "EGF_Baseline": "-0.98"}, {"ID": "FBgn0040726", "EGF_Baseline": "-1.7"}, {"ID": "FBgn0039759", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0052057", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0032157", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0028993", "EGF_Baseline": "-1.52"}, {"ID": "FBgn0011670", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0050029", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0004784", "EGF_Baseline": "0.3"}, {"ID": "FBgn0029820", "EGF_Baseline": "0.67"}, {"ID": "FBgn0013770", "EGF_Baseline": "-1.15"}, {"ID": "FBgn0015400", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0035435", "EGF_Baseline": "-0.98"}, {"ID": "FBgn0025809", "EGF_Baseline": "-0.77"}, {"ID": "FBgn0030871", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0014417", "EGF_Baseline": "0.65"}, {"ID": "FBgn0035286", "EGF_Baseline": "0.29"}, {"ID": "FBgn0041092", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0029687", "EGF_Baseline": "0.37"}, {"ID": "FBgn0034008", "EGF_Baseline": "1.07"}, {"ID": "FBgn0036259", "EGF_Baseline": "0.84"}, {"ID": "FBgn0020440", "EGF_Baseline": "-1.1"}, {"ID": "FBgn0032726", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0003715", "EGF_Baseline": "-0.12"}, {"ID": "FBgn0033818", "EGF_Baseline": "-1.53"}, {"ID": "FBgn0037135", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0001186", "EGF_Baseline": "0.59"}, {"ID": "FBgn0038057", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0030108", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0030294", "EGF_Baseline": "0.74"}, {"ID": "FBgn0030841", "EGF_Baseline": "-0.23"}, {"ID": "FBgn0030063", "EGF_Baseline": "-1.33"}, {"ID": "FBgn0031929", "EGF_Baseline": "0.52"}, {"ID": "FBgn0052440", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0030975", "EGF_Baseline": "-1.4"}, {"ID": "FBgn0016047", "EGF_Baseline": "-1.88"}, {"ID": "FBgn0023525", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0016691", "EGF_Baseline": "-0.17"}, {"ID": "FBgn0037294", "EGF_Baseline": "-2.4"}, {"ID": "FBgn0023081", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0063495", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0036448", "EGF_Baseline": "0.23"}, {"ID": "FBgn0261614", "EGF_Baseline": "0.64"}, {"ID": "FBgn0039890", "EGF_Baseline": "-1.34"}, {"ID": "FBgn0053262", "EGF_Baseline": "0.83"}, {"ID": "FBgn0037525", "EGF_Baseline": "-1.38"}, {"ID": "FBgn0038422", "EGF_Baseline": "0.47"}, {"ID": "FBgn0037105", "EGF_Baseline": "0.46"}, {"ID": "FBgn0050457", "EGF_Baseline": "-2.06"}, {"ID": "FBgn0086783", "EGF_Baseline": "1.26"}, {"ID": "FBgn0025578", "EGF_Baseline": "0.7"}, {"ID": "FBgn0037543", "EGF_Baseline": "0.79"}, {"ID": "FBgn0037018", "EGF_Baseline": "0.72"}, {"ID": "FBgn0001226", "EGF_Baseline": "0.63"}, {"ID": "FBgn0051600", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0010329", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0028343", "EGF_Baseline": "0.98"}, {"ID": "FBgn0030142", "EGF_Baseline": "1.35"}, {"ID": "FBgn0039329", "EGF_Baseline": "1.79"}, {"ID": "FBgn0038564", "EGF_Baseline": "-0.72"}, {"ID": "FBgn0034002", "EGF_Baseline": "-2.1"}, {"ID": "FBgn0014076", "EGF_Baseline": "1.97"}, {"ID": "FBgn0031074", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0020429", "EGF_Baseline": "-1.38"}, {"ID": "FBgn0030009", "EGF_Baseline": "-0.67"}, {"ID": "FBgn0038751", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0038680", "EGF_Baseline": "-1.17"}, {"ID": "FBgn0027607", "EGF_Baseline": "-0.77"}, {"ID": "FBgn0039274", "EGF_Baseline": "1.56"}, {"ID": "FBgn0025388", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0038803", "EGF_Baseline": "2.35"}, {"ID": "FBgn0039126", "EGF_Baseline": "0.76"}, {"ID": "FBgn0015513", "EGF_Baseline": "-1.36"}, {"ID": "FBgn0050390", "EGF_Baseline": "0.26"}, {"ID": "FBgn0017590", "EGF_Baseline": "0.41"}, {"ID": "FBgn0027558", "EGF_Baseline": "0.4"}, {"ID": "FBgn0004646", "EGF_Baseline": "0.83"}, {"ID": "FBgn0031907", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0020445", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0033821", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0037934", "EGF_Baseline": "0.19"}, {"ID": "FBgn0037129", "EGF_Baseline": "-0.17"}, {"ID": "FBgn0051704", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0025807", "EGF_Baseline": "-0.46"}, {"ID": "FBgn0032779", "EGF_Baseline": "1.62"}, {"ID": "FBgn0039566", "EGF_Baseline": "2.36"}, {"ID": "FBgn0020257", "EGF_Baseline": "-0.24"}, {"ID": "FBgn0000039", "EGF_Baseline": "0.86"}, {"ID": "FBgn0031831", "EGF_Baseline": "-1.21"}, {"ID": "FBgn0034217", "EGF_Baseline": "-0.45"}, {"ID": "FBgn0010328", "EGF_Baseline": "1.15"}, {"ID": "FBgn0034439", "EGF_Baseline": "-1.53"}, {"ID": "FBgn0000337", "EGF_Baseline": "0.95"}, {"ID": "FBgn0086710", "EGF_Baseline": "4.47"}, {"ID": "FBgn0040705", "EGF_Baseline": "-0.38"}, {"ID": "FBgn0037746", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0035109", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0031979", "EGF_Baseline": "-1.5"}, {"ID": "FBgn0051677", "EGF_Baseline": "0.16"}, {"ID": "FBgn0034484", "EGF_Baseline": "0.93"}, {"ID": "FBgn0023534", "EGF_Baseline": "-1.76"}, {"ID": "FBgn0000179", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0045474", "EGF_Baseline": "-0.81"}, {"ID": "FBgn0261055", "EGF_Baseline": "-0.52"}, {"ID": "FBgn0259225", "EGF_Baseline": "2.22"}, {"ID": "FBgn0030670", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0050274", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0033904", "EGF_Baseline": "1.3"}, {"ID": "FBgn0036591", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0036987", "EGF_Baseline": "0.73"}, {"ID": "FBgn0040230", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0032685", "EGF_Baseline": "1.47"}, {"ID": "FBgn0037831", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0040104", "EGF_Baseline": "0.83"}, {"ID": "FBgn0034759", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0038479", "EGF_Baseline": "0.36"}, {"ID": "FBgn0034436", "EGF_Baseline": "-1.53"}, {"ID": "FBgn0039941", "EGF_Baseline": "-1.11"}, {"ID": "FBgn0004066", "EGF_Baseline": "0.75"}, {"ID": "FBgn0039111", "EGF_Baseline": "0.16"}, {"ID": "FBgn0042103", "EGF_Baseline": "-1.24"}, {"ID": "FBgn0033661", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0016754", "EGF_Baseline": "0.31"}, {"ID": "FBgn0011758", "EGF_Baseline": "-0.21"}, {"ID": "FBgn0034379", "EGF_Baseline": "-1.28"}, {"ID": "FBgn0013680", "EGF_Baseline": "0.67"}, {"ID": "FBgn0024234", "EGF_Baseline": "1.44"}, {"ID": "FBgn0034975", "EGF_Baseline": "1.68"}, {"ID": "FBgn0030721", "EGF_Baseline": "0.84"}, {"ID": "FBgn0031094", "EGF_Baseline": "0.66"}, {"ID": "FBgn0030462", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0005775", "EGF_Baseline": "0.27"}, {"ID": "FBgn0046253", "EGF_Baseline": "0.15"}, {"ID": "FBgn0035265", "EGF_Baseline": "1.39"}, {"ID": "FBgn0004607", "EGF_Baseline": "0.31"}, {"ID": "FBgn0036218", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0037758", "EGF_Baseline": "1.02"}, {"ID": "FBgn0037719", "EGF_Baseline": "-1.38"}, {"ID": "FBgn0039521", "EGF_Baseline": "-1.3"}, {"ID": "FBgn0031854", "EGF_Baseline": "-0.28"}, {"ID": "FBgn0036666", "EGF_Baseline": "0.69"}, {"ID": "FBgn0038252", "EGF_Baseline": "1.14"}, {"ID": "FBgn0030938", "EGF_Baseline": "-1.17"}, {"ID": "FBgn0051755", "EGF_Baseline": "0.68"}, {"ID": "FBgn0052271", "EGF_Baseline": "0.25"}, {"ID": "FBgn0024288", "EGF_Baseline": "3.08"}, {"ID": "FBgn0001216", "EGF_Baseline": "3.23"}, {"ID": "FBgn0261436", "EGF_Baseline": "0.24"}, {"ID": "FBgn0053319", "EGF_Baseline": "-1.69"}, {"ID": "FBgn0030864", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0032485", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0032612", "EGF_Baseline": "0.07"}, {"ID": "FBgn0005683", "EGF_Baseline": "-1.33"}, {"ID": "FBgn0039568", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0051812", "EGF_Baseline": "-1.88"}, {"ID": "FBgn0033777", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0038472", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0034883", "EGF_Baseline": "-0.21"}, {"ID": "FBgn0032979", "EGF_Baseline": "-1.92"}, {"ID": "FBgn0037675", "EGF_Baseline": "-2.15"}, {"ID": "FBgn0032331", "EGF_Baseline": "0.58"}, {"ID": "FBgn0050284", "EGF_Baseline": "-1.72"}, {"ID": "FBgn0029856", "EGF_Baseline": "10.12"}, {"ID": "FBgn0053310", "EGF_Baseline": "-1.33"}, {"ID": "FBgn0031598", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0031296", "EGF_Baseline": "-0.67"}, {"ID": "FBgn0043806", "EGF_Baseline": "-0.24"}, {"ID": "FBgn0010269", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0036980", "EGF_Baseline": "-0.63"}, {"ID": "FBgn0052053", "EGF_Baseline": "0.7"}, {"ID": "FBgn0052198", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0037057", "EGF_Baseline": "1.77"}, {"ID": "FBgn0031057", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0053653", "EGF_Baseline": "-0.71"}, {"ID": "FBgn0053773", "EGF_Baseline": "-1.36"}, {"ID": "FBgn0085464", "EGF_Baseline": "-0.35"}, {"ID": "FBgn0032538", "EGF_Baseline": "-0.35"}, {"ID": "FBgn0030082", "EGF_Baseline": "-1.35"}, {"ID": "FBgn0039551", "EGF_Baseline": "-1.2"}, {"ID": "FBgn0039332", "EGF_Baseline": "0.79"}, {"ID": "FBgn0031673", "EGF_Baseline": "-1.22"}, {"ID": "FBgn0032820", "EGF_Baseline": "-0.98"}, {"ID": "FBgn0053926", "EGF_Baseline": "-0.56"}, {"ID": "FBgn0250819", "EGF_Baseline": "-1.3"}, {"ID": "FBgn0050429", "EGF_Baseline": "0.74"}, {"ID": "FBgn0085401", "EGF_Baseline": "-1.3"}, {"ID": "FBgn0035945", "EGF_Baseline": "0.28"}, {"ID": "FBgn0041225", "EGF_Baseline": "1.37"}, {"ID": "FBgn0036796", "EGF_Baseline": "0.57"}, {"ID": "FBgn0032734", "EGF_Baseline": "-0.25"}, {"ID": "FBgn0037383", "EGF_Baseline": "0.5"}, {"ID": "FBgn0028946", "EGF_Baseline": "-1.97"}, {"ID": "FBgn0030486", "EGF_Baseline": "1.79"}, {"ID": "FBgn0053107", "EGF_Baseline": "-0.33"}, {"ID": "FBgn0031250", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0032596", "EGF_Baseline": "1.42"}, {"ID": "FBgn0015541", "EGF_Baseline": "-1.38"}, {"ID": "FBgn0033117", "EGF_Baseline": "0.29"}, {"ID": "FBgn0004359", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0038274", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0031169", "EGF_Baseline": "-0.2"}, {"ID": "FBgn0040239", "EGF_Baseline": "0.67"}, {"ID": "FBgn0028648", "EGF_Baseline": "-2.13"}, {"ID": "FBgn0039473", "EGF_Baseline": "1.84"}, {"ID": "FBgn0029878", "EGF_Baseline": "-0.3"}, {"ID": "FBgn0028426", "EGF_Baseline": "-0.65"}, {"ID": "FBgn0028888", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0038240", "EGF_Baseline": "-0.56"}, {"ID": "FBgn0029552", "EGF_Baseline": "1.13"}, {"ID": "FBgn0036158", "EGF_Baseline": "0.8"}, {"ID": "FBgn0038149", "EGF_Baseline": "0.6"}, {"ID": "FBgn0032156", "EGF_Baseline": "0.95"}, {"ID": "FBgn0261113", "EGF_Baseline": "-1.16"}, {"ID": "FBgn0036974", "EGF_Baseline": "0.77"}, {"ID": "FBgn0037822", "EGF_Baseline": "0.43"}, {"ID": "FBgn0037999", "EGF_Baseline": "1.07"}, {"ID": "FBgn0004852", "EGF_Baseline": "-1.15"}, {"ID": "FBgn0030394", "EGF_Baseline": "0.31"}, {"ID": "FBgn0013812", "EGF_Baseline": "1.44"}, {"ID": "FBgn0035767", "EGF_Baseline": "1.14"}, {"ID": "FBgn0030926", "EGF_Baseline": "0.69"}, {"ID": "FBgn0039872", "EGF_Baseline": "-1.7"}, {"ID": "FBgn0034089", "EGF_Baseline": "-2.04"}, {"ID": "FBgn0034301", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0030101", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0045980", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0015036", "EGF_Baseline": "1.07"}, {"ID": "FBgn0033196", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0053193", "EGF_Baseline": "-1.7"}, {"ID": "FBgn0036273", "EGF_Baseline": "0.45"}, {"ID": "FBgn0261648", "EGF_Baseline": "0.68"}, {"ID": "FBgn0035232", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0032348", "EGF_Baseline": "1.18"}, {"ID": "FBgn0028708", "EGF_Baseline": "-0.71"}, {"ID": "FBgn0031550", "EGF_Baseline": "0.37"}, {"ID": "FBgn0030522", "EGF_Baseline": "-1.14"}, {"ID": "FBgn0025815", "EGF_Baseline": "0.87"}, {"ID": "FBgn0038719", "EGF_Baseline": "1.39"}, {"ID": "FBgn0035943", "EGF_Baseline": "-0.39"}, {"ID": "FBgn0086895", "EGF_Baseline": "-0.15"}, {"ID": "FBgn0036818", "EGF_Baseline": "2.11"}, {"ID": "FBgn0038373", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0033048", "EGF_Baseline": "-0.91"}, {"ID": "FBgn0003495", "EGF_Baseline": "-0.46"}, {"ID": "FBgn0035490", "EGF_Baseline": "0.11"}, {"ID": "FBgn0259231", "EGF_Baseline": "-1.79"}, {"ID": "FBgn0001942", "EGF_Baseline": "4.03"}, {"ID": "FBgn0033781", "EGF_Baseline": "1.24"}, {"ID": "FBgn0259167", "EGF_Baseline": "0.39"}, {"ID": "FBgn0042207", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0261882", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0015295", "EGF_Baseline": "-1.49"}, {"ID": "FBgn0034381", "EGF_Baseline": "-0.91"}, {"ID": "FBgn0023212", "EGF_Baseline": "1.88"}, {"ID": "FBgn0031689", "EGF_Baseline": "-1.49"}, {"ID": "FBgn0025830", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0022942", "EGF_Baseline": "-2.73"}, {"ID": "FBgn0033421", "EGF_Baseline": "1.21"}, {"ID": "FBgn0035952", "EGF_Baseline": "-2.98"}, {"ID": "FBgn0041710", "EGF_Baseline": "-1.61"}, {"ID": "FBgn0038529", "EGF_Baseline": "0.49"}, {"ID": "FBgn0035006", "EGF_Baseline": "-0.26"}, {"ID": "FBgn0032847", "EGF_Baseline": "0.8"}, {"ID": "FBgn0005198", "EGF_Baseline": "0.3"}, {"ID": "FBgn0034578", "EGF_Baseline": "0.79"}, {"ID": "FBgn0025352", "EGF_Baseline": "1.78"}, {"ID": "FBgn0035876", "EGF_Baseline": "-0.71"}, {"ID": "FBgn0013995", "EGF_Baseline": "-2.12"}, {"ID": "FBgn0261020", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0052365", "EGF_Baseline": "1.06"}, {"ID": "FBgn0039818", "EGF_Baseline": "-0.77"}, {"ID": "FBgn0039704", "EGF_Baseline": "-1.46"}, {"ID": "FBgn0050418", "EGF_Baseline": "-1.63"}, {"ID": "FBgn0037554", "EGF_Baseline": "0.19"}, {"ID": "FBgn0032381", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0032763", "EGF_Baseline": "0.42"}, {"ID": "FBgn0053159", "EGF_Baseline": "0.82"}, {"ID": "FBgn0053508", "EGF_Baseline": "1.13"}, {"ID": "FBgn0037025", "EGF_Baseline": "2.35"}, {"ID": "FBgn0026059", "EGF_Baseline": "-1.47"}, {"ID": "FBgn0033751", "EGF_Baseline": "0.64"}, {"ID": "FBgn0020407", "EGF_Baseline": "-1.43"}, {"ID": "FBgn0020622", "EGF_Baseline": "-0.77"}, {"ID": "FBgn0261674", "EGF_Baseline": "0.41"}, {"ID": "FBgn0045471", "EGF_Baseline": "0.28"}, {"ID": "FBgn0031002", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0013300", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0038679", "EGF_Baseline": "1.1"}, {"ID": "FBgn0031629", "EGF_Baseline": "-0.52"}, {"ID": "FBgn0015374", "EGF_Baseline": "-1.27"}, {"ID": "FBgn0044050", "EGF_Baseline": "0.82"}, {"ID": "FBgn0013763", "EGF_Baseline": "0.82"}, {"ID": "FBgn0035622", "EGF_Baseline": "1.41"}, {"ID": "FBgn0029629", "EGF_Baseline": "4.28"}, {"ID": "FBgn0035709", "EGF_Baseline": "0.38"}, {"ID": "FBgn0052447", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0028740", "EGF_Baseline": "0.3"}, {"ID": "FBgn0053095", "EGF_Baseline": "0.26"}, {"ID": "FBgn0037627", "EGF_Baseline": "-0.12"}, {"ID": "FBgn0038082", "EGF_Baseline": "0.35"}, {"ID": "FBgn0030278", "EGF_Baseline": "0.95"}, {"ID": "FBgn0036806", "EGF_Baseline": "-0.59"}, {"ID": "FBgn0031111", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0005390", "EGF_Baseline": "-1.2"}, {"ID": "FBgn0036342", "EGF_Baseline": "0.6"}, {"ID": "FBgn0005631", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0035110", "EGF_Baseline": "1.46"}, {"ID": "FBgn0031406", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0035385", "EGF_Baseline": "0.39"}, {"ID": "FBgn0032827", "EGF_Baseline": "-1.57"}, {"ID": "FBgn0022800", "EGF_Baseline": "-1.16"}, {"ID": "FBgn0051091", "EGF_Baseline": "-0.59"}, {"ID": "FBgn0260482", "EGF_Baseline": "-1.94"}, {"ID": "FBgn0032289", "EGF_Baseline": "0.68"}, {"ID": "FBgn0050178", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0029946", "EGF_Baseline": "0.38"}, {"ID": "FBgn0053126", "EGF_Baseline": "0.68"}, {"ID": "FBgn0005624", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0032188", "EGF_Baseline": "-1.28"}, {"ID": "FBgn0046873", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0040588", "EGF_Baseline": "2.25"}, {"ID": "FBgn0004595", "EGF_Baseline": "-1.95"}, {"ID": "FBgn0034769", "EGF_Baseline": "-0.41"}, {"ID": "FBgn0031214", "EGF_Baseline": "1.06"}, {"ID": "FBgn0031826", "EGF_Baseline": "0.21"}, {"ID": "FBgn0038073", "EGF_Baseline": "0.35"}, {"ID": "FBgn0010741", "EGF_Baseline": "-1.44"}, {"ID": "FBgn0053062", "EGF_Baseline": "-1.44"}, {"ID": "FBgn0038285", "EGF_Baseline": "0.51"}, {"ID": "FBgn0031815", "EGF_Baseline": "1.35"}, {"ID": "FBgn0002783", "EGF_Baseline": "2.2"}, {"ID": "FBgn0034878", "EGF_Baseline": "-1.64"}, {"ID": "FBgn0053230", "EGF_Baseline": "-0.66"}, {"ID": "FBgn0050197", "EGF_Baseline": "-1.56"}, {"ID": "FBgn0033724", "EGF_Baseline": "0.66"}, {"ID": "FBgn0032673", "EGF_Baseline": "0.38"}, {"ID": "FBgn0036648", "EGF_Baseline": "-0.34"}, {"ID": "FBgn0053145", "EGF_Baseline": "-0.17"}, {"ID": "FBgn0037411", "EGF_Baseline": "1.14"}, {"ID": "FBgn0051200", "EGF_Baseline": "0.72"}, {"ID": "FBgn0033322", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0033785", "EGF_Baseline": "-0.98"}, {"ID": "FBgn0050099", "EGF_Baseline": "-0.81"}, {"ID": "FBgn0030591", "EGF_Baseline": "1.41"}, {"ID": "FBgn0028866", "EGF_Baseline": "0.95"}, {"ID": "FBgn0029094", "EGF_Baseline": "-1.31"}, {"ID": "FBgn0037622", "EGF_Baseline": "0.91"}, {"ID": "FBgn0037030", "EGF_Baseline": "1.01"}, {"ID": "FBgn0030854", "EGF_Baseline": "-0.59"}, {"ID": "FBgn0000504", "EGF_Baseline": "0.43"}, {"ID": "FBgn0062517", "EGF_Baseline": "0.51"}, {"ID": "FBgn0033257", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0037007", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0014865", "EGF_Baseline": "0.86"}, {"ID": "FBgn0030951", "EGF_Baseline": "0.41"}, {"ID": "FBgn0045442", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0028871", "EGF_Baseline": "-1.25"}, {"ID": "FBgn0039932", "EGF_Baseline": "0.88"}, {"ID": "FBgn0040228", "EGF_Baseline": "-0.84"}, {"ID": "FBgn0034785", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0027548", "EGF_Baseline": "0.98"}, {"ID": "FBgn0039411", "EGF_Baseline": "0.94"}, {"ID": "FBgn0002948", "EGF_Baseline": "0.83"}, {"ID": "FBgn0023515", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0039244", "EGF_Baseline": "0.89"}, {"ID": "FBgn0050047", "EGF_Baseline": "-0.46"}, {"ID": "FBgn0034362", "EGF_Baseline": "0.77"}, {"ID": "FBgn0015561", "EGF_Baseline": "0.67"}, {"ID": "FBgn0038590", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0035703", "EGF_Baseline": "0.52"}, {"ID": "FBgn0027521", "EGF_Baseline": "0.41"}, {"ID": "FBgn0033713", "EGF_Baseline": "0.24"}, {"ID": "FBgn0037730", "EGF_Baseline": "0.87"}, {"ID": "FBgn0037116", "EGF_Baseline": "-1.11"}, {"ID": "FBgn0020235", "EGF_Baseline": "0.66"}, {"ID": "FBgn0034972", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0035091", "EGF_Baseline": "-0.36"}, {"ID": "FBgn0033413", "EGF_Baseline": "-1"}, {"ID": "FBgn0040843", "EGF_Baseline": "-0.46"}, {"ID": "FBgn0011705", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0002526", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0036282", "EGF_Baseline": "-0.11"}, {"ID": "FBgn0035024", "EGF_Baseline": "-0.43"}, {"ID": "FBgn0037254", "EGF_Baseline": "1.07"}, {"ID": "FBgn0015360", "EGF_Baseline": "0.56"}, {"ID": "FBgn0036193", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0030183", "EGF_Baseline": "0.39"}, {"ID": "FBgn0064225", "EGF_Baseline": "2.61"}, {"ID": "FBgn0259834", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0036671", "EGF_Baseline": "0.34"}, {"ID": "FBgn0000273", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0036186", "EGF_Baseline": "-0.46"}, {"ID": "FBgn0051017", "EGF_Baseline": "0.55"}, {"ID": "FBgn0036801", "EGF_Baseline": "0.92"}, {"ID": "FBgn0037637", "EGF_Baseline": "1.09"}, {"ID": "FBgn0052459", "EGF_Baseline": "-1.31"}, {"ID": "FBgn0010391", "EGF_Baseline": "-1.17"}, {"ID": "FBgn0054001", "EGF_Baseline": "0.86"}, {"ID": "FBgn0011232", "EGF_Baseline": "-0.26"}, {"ID": "FBgn0035087", "EGF_Baseline": "-0.24"}, {"ID": "FBgn0013323", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0060296", "EGF_Baseline": "0.84"}, {"ID": "FBgn0036020", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0004047", "EGF_Baseline": "-1.24"}, {"ID": "FBgn0036466", "EGF_Baseline": "1.8"}, {"ID": "FBgn0035611", "EGF_Baseline": "2.6"}, {"ID": "FBgn0052452", "EGF_Baseline": "-2.06"}, {"ID": "FBgn0259680", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0039178", "EGF_Baseline": "1.28"}, {"ID": "FBgn0035647", "EGF_Baseline": "-1.35"}, {"ID": "FBgn0031900", "EGF_Baseline": "3.74"}, {"ID": "FBgn0033592", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0038007", "EGF_Baseline": "-0.56"}, {"ID": "FBgn0002607", "EGF_Baseline": "6.91"}, {"ID": "FBgn0028899", "EGF_Baseline": "1.67"}, {"ID": "FBgn0039730", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0036920", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0014931", "EGF_Baseline": "0.6"}, {"ID": "FBgn0034707", "EGF_Baseline": "0.31"}, {"ID": "FBgn0038666", "EGF_Baseline": "-1.14"}, {"ID": "FBgn0030296", "EGF_Baseline": "0.63"}, {"ID": "FBgn0038958", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0038942", "EGF_Baseline": "0.82"}, {"ID": "FBgn0003134", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0029964", "EGF_Baseline": "0.9"}, {"ID": "FBgn0034827", "EGF_Baseline": "0.2"}, {"ID": "FBgn0086266", "EGF_Baseline": "0.17"}, {"ID": "FBgn0002937", "EGF_Baseline": "0.48"}, {"ID": "FBgn0035249", "EGF_Baseline": "1.03"}, {"ID": "FBgn0259101", "EGF_Baseline": "1.14"}, {"ID": "FBgn0037229", "EGF_Baseline": "0.52"}, {"ID": "FBgn0026179", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0000119", "EGF_Baseline": "0.63"}, {"ID": "FBgn0034071", "EGF_Baseline": "-0.46"}, {"ID": "FBgn0036014", "EGF_Baseline": "-0.3"}, {"ID": "FBgn0004838", "EGF_Baseline": "-0.59"}, {"ID": "FBgn0000317", "EGF_Baseline": "0.94"}, {"ID": "FBgn0040733", "EGF_Baseline": "-0.27"}, {"ID": "FBgn0030797", "EGF_Baseline": "0.44"}, {"ID": "FBgn0002622", "EGF_Baseline": "3.1"}, {"ID": "FBgn0031728", "EGF_Baseline": "-1.1"}, {"ID": "FBgn0033317", "EGF_Baseline": "1.18"}, {"ID": "FBgn0058006", "EGF_Baseline": "-1.23"}, {"ID": "FBgn0037354", "EGF_Baseline": "-1.47"}, {"ID": "FBgn0030089", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0001215", "EGF_Baseline": "-0.41"}, {"ID": "FBgn0038643", "EGF_Baseline": "1.15"}, {"ID": "FBgn0030247", "EGF_Baseline": "0.24"}, {"ID": "FBgn0043825", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0042137", "EGF_Baseline": "-0.5"}, {"ID": "FBgn0039209", "EGF_Baseline": "0.58"}, {"ID": "FBgn0029955", "EGF_Baseline": "-1.75"}, {"ID": "FBgn0039130", "EGF_Baseline": "0.48"}, {"ID": "FBgn0003308", "EGF_Baseline": "0.25"}, {"ID": "FBgn0036254", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0051044", "EGF_Baseline": "0.56"}, {"ID": "FBgn0036621", "EGF_Baseline": "-0.77"}, {"ID": "FBgn0028583", "EGF_Baseline": "-0.12"}, {"ID": "FBgn0032775", "EGF_Baseline": "0.73"}, {"ID": "FBgn0033806", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0032160", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0250910", "EGF_Baseline": "-1.43"}, {"ID": "FBgn0042650", "EGF_Baseline": "0.86"}, {"ID": "FBgn0036733", "EGF_Baseline": "4.95"}, {"ID": "FBgn0030105", "EGF_Baseline": "-0.32"}, {"ID": "FBgn0036016", "EGF_Baseline": "1.07"}, {"ID": "FBgn0036471", "EGF_Baseline": "1.58"}, {"ID": "FBgn0032127", "EGF_Baseline": "0.23"}, {"ID": "FBgn0036703", "EGF_Baseline": "0.88"}, {"ID": "FBgn0001250", "EGF_Baseline": "1.03"}, {"ID": "FBgn0038887", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0030608", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0032670", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0261705", "EGF_Baseline": "-1.43"}, {"ID": "FBgn0037553", "EGF_Baseline": "-0.42"}, {"ID": "FBgn0030097", "EGF_Baseline": "-1.25"}, {"ID": "FBgn0034803", "EGF_Baseline": "0.6"}, {"ID": "FBgn0028836", "EGF_Baseline": "-1.52"}, {"ID": "FBgn0032646", "EGF_Baseline": "0.75"}, {"ID": "FBgn0033468", "EGF_Baseline": "0.67"}, {"ID": "FBgn0024150", "EGF_Baseline": "-1.25"}, {"ID": "FBgn0032311", "EGF_Baseline": "-0.56"}, {"ID": "FBgn0031902", "EGF_Baseline": "1.26"}, {"ID": "FBgn0011642", "EGF_Baseline": "-0.5"}, {"ID": "FBgn0051493", "EGF_Baseline": "-0.13"}, {"ID": "FBgn0035704", "EGF_Baseline": "1.67"}, {"ID": "FBgn0051898", "EGF_Baseline": "-0.84"}, {"ID": "FBgn0031701", "EGF_Baseline": "1.3"}, {"ID": "FBgn0030317", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0036978", "EGF_Baseline": "-1.68"}, {"ID": "FBgn0022986", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0026400", "EGF_Baseline": "0.81"}, {"ID": "FBgn0038850", "EGF_Baseline": "-0.45"}, {"ID": "FBgn0260487", "EGF_Baseline": "1.31"}, {"ID": "FBgn0039733", "EGF_Baseline": "-1.1"}, {"ID": "FBgn0033787", "EGF_Baseline": "-0.32"}, {"ID": "FBgn0034989", "EGF_Baseline": "0.95"}, {"ID": "FBgn0052351", "EGF_Baseline": "0.37"}, {"ID": "FBgn0028833", "EGF_Baseline": "0.38"}, {"ID": "FBgn0085232", "EGF_Baseline": "0.75"}, {"ID": "FBgn0259683", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0260428", "EGF_Baseline": "-0.67"}, {"ID": "FBgn0260444", "EGF_Baseline": "0.66"}, {"ID": "FBgn0034488", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0020399", "EGF_Baseline": "0.27"}, {"ID": "FBgn0039816", "EGF_Baseline": "0.4"}, {"ID": "FBgn0030249", "EGF_Baseline": "0.79"}, {"ID": "FBgn0039611", "EGF_Baseline": "0.93"}, {"ID": "FBgn0023175", "EGF_Baseline": "-0.91"}, {"ID": "FBgn0052079", "EGF_Baseline": "0.51"}, {"ID": "FBgn0015929", "EGF_Baseline": "0.39"}, {"ID": "FBgn0033714", "EGF_Baseline": "-1.42"}, {"ID": "FBgn0034627", "EGF_Baseline": "1.18"}, {"ID": "FBgn0011281", "EGF_Baseline": "0.91"}, {"ID": "FBgn0010039", "EGF_Baseline": "-1.83"}, {"ID": "FBgn0000351", "EGF_Baseline": "-0.77"}, {"ID": "FBgn0037980", "EGF_Baseline": "1.13"}, {"ID": "FBgn0005779", "EGF_Baseline": "-1.72"}, {"ID": "FBgn0026324", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0004404", "EGF_Baseline": "3.75"}, {"ID": "FBgn0030898", "EGF_Baseline": "-1.3"}, {"ID": "FBgn0031545", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0087012", "EGF_Baseline": "-0.1"}, {"ID": "FBgn0031968", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0260012", "EGF_Baseline": "-1.35"}, {"ID": "FBgn0035909", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0261016", "EGF_Baseline": "-1.23"}, {"ID": "FBgn0033793", "EGF_Baseline": "0.47"}, {"ID": "FBgn0003507", "EGF_Baseline": "0.24"}, {"ID": "FBgn0037537", "EGF_Baseline": "-1.15"}, {"ID": "FBgn0051014", "EGF_Baseline": "-1.22"}, {"ID": "FBgn0015602", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0029718", "EGF_Baseline": "0.76"}, {"ID": "FBgn0045469", "EGF_Baseline": "-0.72"}, {"ID": "FBgn0003249", "EGF_Baseline": "-1.53"}, {"ID": "FBgn0047092", "EGF_Baseline": "-2.22"}, {"ID": "FBgn0039413", "EGF_Baseline": "0.72"}, {"ID": "FBgn0040575", "EGF_Baseline": "-1.5"}, {"ID": "FBgn0020270", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0042094", "EGF_Baseline": "0.74"}, {"ID": "FBgn0003062", "EGF_Baseline": "3.73"}, {"ID": "FBgn0032818", "EGF_Baseline": "1.4"}, {"ID": "FBgn0032135", "EGF_Baseline": "1.13"}, {"ID": "FBgn0085315", "EGF_Baseline": "0.92"}, {"ID": "FBgn0259244", "EGF_Baseline": "1.43"}, {"ID": "FBgn0038080", "EGF_Baseline": "-0.32"}, {"ID": "FBgn0010612", "EGF_Baseline": "-1.75"}, {"ID": "FBgn0053339", "EGF_Baseline": "1.13"}, {"ID": "FBgn0085257", "EGF_Baseline": "-0.84"}, {"ID": "FBgn0038891", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0032689", "EGF_Baseline": "0.28"}, {"ID": "FBgn0029839", "EGF_Baseline": "0.69"}, {"ID": "FBgn0034841", "EGF_Baseline": "-1.37"}, {"ID": "FBgn0025837", "EGF_Baseline": "0.66"}, {"ID": "FBgn0051120", "EGF_Baseline": "0.97"}, {"ID": "FBgn0038005", "EGF_Baseline": "1.11"}, {"ID": "FBgn0033391", "EGF_Baseline": "-1.27"}, {"ID": "FBgn0050069", "EGF_Baseline": "1.05"}, {"ID": "FBgn0035313", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0035299", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0030167", "EGF_Baseline": "1.16"}, {"ID": "FBgn0051013", "EGF_Baseline": "0.69"}, {"ID": "FBgn0052412", "EGF_Baseline": "0.41"}, {"ID": "FBgn0040353", "EGF_Baseline": "-0.65"}, {"ID": "FBgn0035107", "EGF_Baseline": "0.84"}, {"ID": "FBgn0036317", "EGF_Baseline": "-1.43"}, {"ID": "FBgn0003714", "EGF_Baseline": "-1.9"}, {"ID": "FBgn0037228", "EGF_Baseline": "0.42"}, {"ID": "FBgn0261341", "EGF_Baseline": "-1.64"}, {"ID": "FBgn0029506", "EGF_Baseline": "-1.39"}, {"ID": "FBgn0033315", "EGF_Baseline": "-1.1"}, {"ID": "FBgn0011706", "EGF_Baseline": "1.82"}, {"ID": "FBgn0051363", "EGF_Baseline": "1.16"}, {"ID": "FBgn0042213", "EGF_Baseline": "1.93"}, {"ID": "FBgn0032863", "EGF_Baseline": "2.18"}, {"ID": "FBgn0030482", "EGF_Baseline": "0.92"}, {"ID": "FBgn0029950", "EGF_Baseline": "0.54"}, {"ID": "FBgn0050075", "EGF_Baseline": "1.26"}, {"ID": "FBgn0050090", "EGF_Baseline": "-2.76"}, {"ID": "FBgn0003138", "EGF_Baseline": "1.07"}, {"ID": "FBgn0034493", "EGF_Baseline": "0.37"}, {"ID": "FBgn0003961", "EGF_Baseline": "-1.98"}, {"ID": "FBgn0035207", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0045073", "EGF_Baseline": "0.76"}, {"ID": "FBgn0033753", "EGF_Baseline": "2.09"}, {"ID": "FBgn0050034", "EGF_Baseline": "1.21"}, {"ID": "FBgn0051406", "EGF_Baseline": "1.31"}, {"ID": "FBgn0035111", "EGF_Baseline": "0.93"}, {"ID": "FBgn0034321", "EGF_Baseline": "1.38"}, {"ID": "FBgn0031721", "EGF_Baseline": "-2.01"}, {"ID": "FBgn0031395", "EGF_Baseline": "-1.44"}, {"ID": "FBgn0051536", "EGF_Baseline": "-1.63"}, {"ID": "FBgn0011239", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0260436", "EGF_Baseline": "-1.73"}, {"ID": "FBgn0010265", "EGF_Baseline": "4.49"}, {"ID": "FBgn0038110", "EGF_Baseline": "0.21"}, {"ID": "FBgn0029810", "EGF_Baseline": "0.57"}, {"ID": "FBgn0013811", "EGF_Baseline": "1.51"}, {"ID": "FBgn0037368", "EGF_Baseline": "-0.66"}, {"ID": "FBgn0039466", "EGF_Baseline": "-0.65"}, {"ID": "FBgn0036948", "EGF_Baseline": "0.09"}, {"ID": "FBgn0023514", "EGF_Baseline": "1.33"}, {"ID": "FBgn0031737", "EGF_Baseline": "0.4"}, {"ID": "FBgn0261606", "EGF_Baseline": "4.26"}, {"ID": "FBgn0035097", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0027084", "EGF_Baseline": "1.97"}, {"ID": "FBgn0085405", "EGF_Baseline": "0.4"}, {"ID": "FBgn0035868", "EGF_Baseline": "0.3"}, {"ID": "FBgn0052404", "EGF_Baseline": "0.59"}, {"ID": "FBgn0031213", "EGF_Baseline": "0.14"}, {"ID": "FBgn0025808", "EGF_Baseline": "-0.71"}, {"ID": "FBgn0046113", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0027660", "EGF_Baseline": "-0.3"}, {"ID": "FBgn0031501", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0035036", "EGF_Baseline": "1.26"}, {"ID": "FBgn0035140", "EGF_Baseline": "1.2"}, {"ID": "FBgn0030952", "EGF_Baseline": "-1.62"}, {"ID": "FBgn0036805", "EGF_Baseline": "0.42"}, {"ID": "FBgn0041630", "EGF_Baseline": "-0.39"}, {"ID": "FBgn0033491", "EGF_Baseline": "-1.2"}, {"ID": "FBgn0037446", "EGF_Baseline": "1.1"}, {"ID": "FBgn0011747", "EGF_Baseline": "-0.31"}, {"ID": "FBgn0030268", "EGF_Baseline": "-1.57"}, {"ID": "FBgn0034481", "EGF_Baseline": "0.98"}, {"ID": "FBgn0054029", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0032551", "EGF_Baseline": "1.18"}, {"ID": "FBgn0032022", "EGF_Baseline": "1.45"}, {"ID": "FBgn0035481", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0259821", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0030711", "EGF_Baseline": "1.25"}, {"ID": "FBgn0034198", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0037028", "EGF_Baseline": "0.48"}, {"ID": "FBgn0031611", "EGF_Baseline": "2.02"}, {"ID": "FBgn0026061", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0028857", "EGF_Baseline": "0.99"}, {"ID": "FBgn0024897", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0032723", "EGF_Baseline": "-2.13"}, {"ID": "FBgn0032143", "EGF_Baseline": "0.76"}, {"ID": "FBgn0038144", "EGF_Baseline": "-0.54"}, {"ID": "FBgn0052036", "EGF_Baseline": "1.74"}, {"ID": "FBgn0035154", "EGF_Baseline": "0.59"}, {"ID": "FBgn0003886", "EGF_Baseline": "1.9"}, {"ID": "FBgn0053303", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0040928", "EGF_Baseline": "1.22"}, {"ID": "FBgn0033354", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0046763", "EGF_Baseline": "0.34"}, {"ID": "FBgn0039965", "EGF_Baseline": "1.74"}, {"ID": "FBgn0067779", "EGF_Baseline": "-1.39"}, {"ID": "FBgn0039478", "EGF_Baseline": "-0.67"}, {"ID": "FBgn0051438", "EGF_Baseline": "1"}, {"ID": "FBgn0003378", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0001965", "EGF_Baseline": "-3.36"}, {"ID": "FBgn0053109", "EGF_Baseline": "-1.56"}, {"ID": "FBgn0010403", "EGF_Baseline": "0.67"}, {"ID": "FBgn0021873", "EGF_Baseline": "1.31"}, {"ID": "FBgn0038798", "EGF_Baseline": "-1.6"}, {"ID": "FBgn0000280", "EGF_Baseline": "-1.74"}, {"ID": "FBgn0000318", "EGF_Baseline": "0.08"}, {"ID": "FBgn0040684", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0027599", "EGF_Baseline": "0.97"}, {"ID": "FBgn0032663", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0033589", "EGF_Baseline": "-2.65"}, {"ID": "FBgn0044011", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0039728", "EGF_Baseline": "-0.91"}, {"ID": "FBgn0052074", "EGF_Baseline": "-1.25"}, {"ID": "FBgn0033422", "EGF_Baseline": "0.47"}, {"ID": "FBgn0011802", "EGF_Baseline": "-1.66"}, {"ID": "FBgn0051821", "EGF_Baseline": "0.26"}, {"ID": "FBgn0259227", "EGF_Baseline": "-0.38"}, {"ID": "FBgn0034566", "EGF_Baseline": "-0.91"}, {"ID": "FBgn0027490", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0038697", "EGF_Baseline": "-0.3"}, {"ID": "FBgn0261119", "EGF_Baseline": "0.48"}, {"ID": "FBgn0032741", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0260941", "EGF_Baseline": "-0.65"}, {"ID": "FBgn0033874", "EGF_Baseline": "-1.04"}, {"ID": "FBgn0031961", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0031708", "EGF_Baseline": "0.84"}, {"ID": "FBgn0029915", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0027590", "EGF_Baseline": "0.88"}, {"ID": "FBgn0260407", "EGF_Baseline": "1.1"}, {"ID": "FBgn0032252", "EGF_Baseline": "-1.23"}, {"ID": "FBgn0015546", "EGF_Baseline": "-1.65"}, {"ID": "FBgn0033890", "EGF_Baseline": "0.41"}, {"ID": "FBgn0030300", "EGF_Baseline": "1.52"}, {"ID": "FBgn0024320", "EGF_Baseline": "-0.19"}, {"ID": "FBgn0038651", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0027496", "EGF_Baseline": "1.44"}, {"ID": "FBgn0010607", "EGF_Baseline": "-0.98"}, {"ID": "FBgn0001091", "EGF_Baseline": "-1.48"}, {"ID": "FBgn0021742", "EGF_Baseline": "0.47"}, {"ID": "FBgn0260859", "EGF_Baseline": "-0.08"}, {"ID": "FBgn0022936", "EGF_Baseline": "-0.52"}, {"ID": "FBgn0003124", "EGF_Baseline": "1.12"}, {"ID": "FBgn0033149", "EGF_Baseline": "0.44"}, {"ID": "FBgn0002921", "EGF_Baseline": "1.33"}, {"ID": "FBgn0030090", "EGF_Baseline": "-1.57"}, {"ID": "FBgn0037937", "EGF_Baseline": "-0.49"}, {"ID": "FBgn0003499", "EGF_Baseline": "1.48"}, {"ID": "FBgn0037296", "EGF_Baseline": "-1.77"}, {"ID": "FBgn0052111", "EGF_Baseline": "-1.4"}, {"ID": "FBgn0011274", "EGF_Baseline": "0.98"}, {"ID": "FBgn0036499", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0038311", "EGF_Baseline": "-0.56"}, {"ID": "FBgn0037623", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0053531", "EGF_Baseline": "1.32"}, {"ID": "FBgn0000064", "EGF_Baseline": "0.49"}, {"ID": "FBgn0038431", "EGF_Baseline": "0.71"}, {"ID": "FBgn0083960", "EGF_Baseline": "0.49"}, {"ID": "FBgn0033112", "EGF_Baseline": "-1.79"}, {"ID": "FBgn0030931", "EGF_Baseline": "-0.24"}, {"ID": "FBgn0052511", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0038772", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0034755", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0028662", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0027088", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0032693", "EGF_Baseline": "-1.57"}, {"ID": "FBgn0041241", "EGF_Baseline": "1.08"}, {"ID": "FBgn0052732", "EGF_Baseline": "0.71"}, {"ID": "FBgn0045063", "EGF_Baseline": "1.67"}, {"ID": "FBgn0050044", "EGF_Baseline": "1.27"}, {"ID": "FBgn0025820", "EGF_Baseline": "0.54"}, {"ID": "FBgn0036921", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0031000", "EGF_Baseline": "1.41"}, {"ID": "FBgn0037713", "EGF_Baseline": "0.51"}, {"ID": "FBgn0029830", "EGF_Baseline": "0.62"}, {"ID": "FBgn0052847", "EGF_Baseline": "1.25"}, {"ID": "FBgn0038365", "EGF_Baseline": "1.06"}, {"ID": "FBgn0030467", "EGF_Baseline": "0.91"}, {"ID": "FBgn0053468", "EGF_Baseline": "0.67"}, {"ID": "FBgn0038087", "EGF_Baseline": "0.18"}, {"ID": "FBgn0032793", "EGF_Baseline": "0.7"}, {"ID": "FBgn0037836", "EGF_Baseline": "-0.84"}, {"ID": "FBgn0034438", "EGF_Baseline": "-1.58"}, {"ID": "FBgn0038129", "EGF_Baseline": "0.49"}, {"ID": "FBgn0032519", "EGF_Baseline": "-1.57"}, {"ID": "FBgn0033302", "EGF_Baseline": "1.86"}, {"ID": "FBgn0083919", "EGF_Baseline": "-1.86"}, {"ID": "FBgn0031835", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0035040", "EGF_Baseline": "1.06"}, {"ID": "FBgn0034322", "EGF_Baseline": "-1.24"}, {"ID": "FBgn0000326", "EGF_Baseline": "1.19"}, {"ID": "FBgn0085229", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0031190", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0000038", "EGF_Baseline": "1.15"}, {"ID": "FBgn0039085", "EGF_Baseline": "-1.45"}, {"ID": "FBgn0050381", "EGF_Baseline": "0.81"}, {"ID": "FBgn0052282", "EGF_Baseline": "-0.42"}, {"ID": "FBgn0034433", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0033529", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0052199", "EGF_Baseline": "0.15"}, {"ID": "FBgn0029887", "EGF_Baseline": "0.45"}, {"ID": "FBgn0051560", "EGF_Baseline": "-1.82"}, {"ID": "FBgn0038478", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0014869", "EGF_Baseline": "-0.19"}, {"ID": "FBgn0038279", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0035047", "EGF_Baseline": "-0.23"}, {"ID": "FBgn0002564", "EGF_Baseline": "0.49"}, {"ID": "FBgn0050263", "EGF_Baseline": "-4.48"}, {"ID": "FBgn0030309", "EGF_Baseline": "-1.31"}, {"ID": "FBgn0036897", "EGF_Baseline": "-0.63"}, {"ID": "FBgn0039930", "EGF_Baseline": "0.73"}, {"ID": "FBgn0035479", "EGF_Baseline": "-1.04"}, {"ID": "FBgn0052190", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0004603", "EGF_Baseline": "-0.66"}, {"ID": "FBgn0003890", "EGF_Baseline": "1.33"}, {"ID": "FBgn0039562", "EGF_Baseline": "1.25"}, {"ID": "FBgn0051958", "EGF_Baseline": "-1.47"}, {"ID": "FBgn0028947", "EGF_Baseline": "-1.45"}, {"ID": "FBgn0085457", "EGF_Baseline": "0.85"}, {"ID": "FBgn0026170", "EGF_Baseline": "-1.77"}, {"ID": "FBgn0042105", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0030202", "EGF_Baseline": "-1.15"}, {"ID": "FBgn0024179", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0027872", "EGF_Baseline": "-1.56"}, {"ID": "FBgn0020251", "EGF_Baseline": "-1.15"}, {"ID": "FBgn0053156", "EGF_Baseline": "-1.59"}, {"ID": "FBgn0054057", "EGF_Baseline": "-1.9"}, {"ID": "FBgn0031314", "EGF_Baseline": "0.51"}, {"ID": "FBgn0050338", "EGF_Baseline": "0.91"}, {"ID": "FBgn0038209", "EGF_Baseline": "-1.4"}, {"ID": "FBgn0032169", "EGF_Baseline": "-1.56"}, {"ID": "FBgn0000636", "EGF_Baseline": "1.16"}, {"ID": "FBgn0015298", "EGF_Baseline": "-0.49"}, {"ID": "FBgn0035643", "EGF_Baseline": "1.06"}, {"ID": "FBgn0030364", "EGF_Baseline": "-0.72"}, {"ID": "FBgn0037810", "EGF_Baseline": "1.37"}, {"ID": "FBgn0004429", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0051146", "EGF_Baseline": "-2.11"}, {"ID": "FBgn0002878", "EGF_Baseline": "-0.42"}, {"ID": "FBgn0034998", "EGF_Baseline": "0.04"}, {"ID": "FBgn0030291", "EGF_Baseline": "-0.59"}, {"ID": "FBgn0053218", "EGF_Baseline": "-1.75"}, {"ID": "FBgn0034722", "EGF_Baseline": "0.61"}, {"ID": "FBgn0003328", "EGF_Baseline": "1.82"}, {"ID": "FBgn0032495", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0001147", "EGF_Baseline": "-2.15"}, {"ID": "FBgn0002673", "EGF_Baseline": "-0.52"}, {"ID": "FBgn0030449", "EGF_Baseline": "-0.42"}, {"ID": "FBgn0031597", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0032886", "EGF_Baseline": "-0.5"}, {"ID": "FBgn0261089", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0036659", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0051870", "EGF_Baseline": "-0.52"}, {"ID": "FBgn0051961", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0036106", "EGF_Baseline": "-1.97"}, {"ID": "FBgn0031188", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0037526", "EGF_Baseline": "0.68"}, {"ID": "FBgn0043470", "EGF_Baseline": "-1.47"}, {"ID": "FBgn0034650", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0039870", "EGF_Baseline": "-1.26"}, {"ID": "FBgn0034187", "EGF_Baseline": "-0.22"}, {"ID": "FBgn0085239", "EGF_Baseline": "-1.39"}, {"ID": "FBgn0030638", "EGF_Baseline": "-0.46"}, {"ID": "FBgn0051321", "EGF_Baseline": "1.33"}, {"ID": "FBgn0034419", "EGF_Baseline": "-1.53"}, {"ID": "FBgn0037321", "EGF_Baseline": "0.09"}, {"ID": "FBgn0038236", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0032299", "EGF_Baseline": "-1.24"}, {"ID": "FBgn0050419", "EGF_Baseline": "2.67"}, {"ID": "FBgn0038074", "EGF_Baseline": "0.59"}, {"ID": "FBgn0035592", "EGF_Baseline": "0.62"}, {"ID": "FBgn0031759", "EGF_Baseline": "0.79"}, {"ID": "FBgn0036714", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0050015", "EGF_Baseline": "1.07"}, {"ID": "FBgn0053096", "EGF_Baseline": "0.81"}, {"ID": "FBgn0053087", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0259794", "EGF_Baseline": "-2.03"}, {"ID": "FBgn0042712", "EGF_Baseline": "0.44"}, {"ID": "FBgn0016698", "EGF_Baseline": "1.58"}, {"ID": "FBgn0260659", "EGF_Baseline": "1.18"}, {"ID": "FBgn0030617", "EGF_Baseline": "-1.66"}, {"ID": "FBgn0033481", "EGF_Baseline": "-1.72"}, {"ID": "FBgn0002932", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0026085", "EGF_Baseline": "0.42"}, {"ID": "FBgn0037788", "EGF_Baseline": "0.6"}, {"ID": "FBgn0034352", "EGF_Baseline": "0.19"}, {"ID": "FBgn0085556", "EGF_Baseline": "1.02"}, {"ID": "FBgn0030386", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0029726", "EGF_Baseline": "0.89"}, {"ID": "FBgn0261611", "EGF_Baseline": "0.89"}, {"ID": "FBgn0035293", "EGF_Baseline": "0.51"}, {"ID": "FBgn0052246", "EGF_Baseline": "-0.42"}, {"ID": "FBgn0037857", "EGF_Baseline": "0.8"}, {"ID": "FBgn0063497", "EGF_Baseline": "0.97"}, {"ID": "FBgn0030800", "EGF_Baseline": "-0.65"}, {"ID": "FBgn0035439", "EGF_Baseline": "-1"}, {"ID": "FBgn0030283", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0031850", "EGF_Baseline": "0.4"}, {"ID": "FBgn0037304", "EGF_Baseline": "-2.25"}, {"ID": "FBgn0052755", "EGF_Baseline": "0.45"}, {"ID": "FBgn0001139", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0034010", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0040271", "EGF_Baseline": "0.64"}, {"ID": "FBgn0052544", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0034602", "EGF_Baseline": "-0.5"}, {"ID": "FBgn0261555", "EGF_Baseline": "-1.3"}, {"ID": "FBgn0035328", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0043783", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0023496", "EGF_Baseline": "0.25"}, {"ID": "FBgn0017551", "EGF_Baseline": "1.66"}, {"ID": "FBgn0015300", "EGF_Baseline": "0.74"}, {"ID": "FBgn0044809", "EGF_Baseline": "0.67"}, {"ID": "FBgn0013673", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0030164", "EGF_Baseline": "0.61"}, {"ID": "FBgn0036598", "EGF_Baseline": "1.42"}, {"ID": "FBgn0030605", "EGF_Baseline": "0.81"}, {"ID": "FBgn0000618", "EGF_Baseline": "-0.54"}, {"ID": "FBgn0004387", "EGF_Baseline": "-3.12"}, {"ID": "FBgn0038016", "EGF_Baseline": "-4.45"}, {"ID": "FBgn0036433", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0052554", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0051164", "EGF_Baseline": "-0.49"}, {"ID": "FBgn0030647", "EGF_Baseline": "0.69"}, {"ID": "FBgn0030331", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0042102", "EGF_Baseline": "1.46"}, {"ID": "FBgn0000146", "EGF_Baseline": "1.29"}, {"ID": "FBgn0040729", "EGF_Baseline": "0.25"}, {"ID": "FBgn0054024", "EGF_Baseline": "-0.37"}, {"ID": "FBgn0033842", "EGF_Baseline": "1.01"}, {"ID": "FBgn0000414", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0038745", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0041231", "EGF_Baseline": "-1.37"}, {"ID": "FBgn0045486", "EGF_Baseline": "1.89"}, {"ID": "FBgn0033039", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0086408", "EGF_Baseline": "0.48"}, {"ID": "FBgn0031636", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0032955", "EGF_Baseline": "0.77"}, {"ID": "FBgn0020258", "EGF_Baseline": "-1.56"}, {"ID": "FBgn0036440", "EGF_Baseline": "-1.83"}, {"ID": "FBgn0023001", "EGF_Baseline": "0.29"}, {"ID": "FBgn0038980", "EGF_Baseline": "1.28"}, {"ID": "FBgn0033364", "EGF_Baseline": "-0.65"}, {"ID": "FBgn0035416", "EGF_Baseline": "1.77"}, {"ID": "FBgn0086686", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0031981", "EGF_Baseline": "0.5"}, {"ID": "FBgn0041711", "EGF_Baseline": "-0.5"}, {"ID": "FBgn0035281", "EGF_Baseline": "-0.35"}, {"ID": "FBgn0261261", "EGF_Baseline": "-1.66"}, {"ID": "FBgn0044810", "EGF_Baseline": "0.29"}, {"ID": "FBgn0030929", "EGF_Baseline": "0.51"}, {"ID": "FBgn0063667", "EGF_Baseline": "-0.45"}, {"ID": "FBgn0052533", "EGF_Baseline": "1.89"}, {"ID": "FBgn0259961", "EGF_Baseline": "0.89"}, {"ID": "FBgn0030645", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0039315", "EGF_Baseline": "-0.17"}, {"ID": "FBgn0035088", "EGF_Baseline": "2.36"}, {"ID": "FBgn0036916", "EGF_Baseline": "1.28"}, {"ID": "FBgn0011206", "EGF_Baseline": "1.74"}, {"ID": "FBgn0033708", "EGF_Baseline": "-2.07"}, {"ID": "FBgn0039306", "EGF_Baseline": "1.92"}, {"ID": "FBgn0039298", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0011661", "EGF_Baseline": "-0.37"}, {"ID": "FBgn0032602", "EGF_Baseline": "-0.31"}, {"ID": "FBgn0030663", "EGF_Baseline": "-0.1"}, {"ID": "FBgn0020912", "EGF_Baseline": "1.57"}, {"ID": "FBgn0042092", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0015926", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0039291", "EGF_Baseline": "-0.67"}, {"ID": "FBgn0036544", "EGF_Baseline": "0.9"}, {"ID": "FBgn0032225", "EGF_Baseline": "-0.44"}, {"ID": "FBgn0000276", "EGF_Baseline": "0.8"}, {"ID": "FBgn0034513", "EGF_Baseline": "0.45"}, {"ID": "FBgn0031403", "EGF_Baseline": "-0.56"}, {"ID": "FBgn0030272", "EGF_Baseline": "0.1"}, {"ID": "FBgn0025390", "EGF_Baseline": "-1.5"}, {"ID": "FBgn0028336", "EGF_Baseline": "-2.64"}, {"ID": "FBgn0038530", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0034135", "EGF_Baseline": "1.26"}, {"ID": "FBgn0003204", "EGF_Baseline": "1.8"}, {"ID": "FBgn0032192", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0053471", "EGF_Baseline": "0.55"}, {"ID": "FBgn0053679", "EGF_Baseline": "-1.59"}, {"ID": "FBgn0013762", "EGF_Baseline": "-0.24"}, {"ID": "FBgn0032484", "EGF_Baseline": "-1.35"}, {"ID": "FBgn0030716", "EGF_Baseline": "0.61"}, {"ID": "FBgn0030178", "EGF_Baseline": "0.22"}, {"ID": "FBgn0086367", "EGF_Baseline": "-0.25"}, {"ID": "FBgn0027836", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0259194", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0038702", "EGF_Baseline": "-1.23"}, {"ID": "FBgn0034938", "EGF_Baseline": "-1.38"}, {"ID": "FBgn0038519", "EGF_Baseline": "-1.26"}, {"ID": "FBgn0085298", "EGF_Baseline": "-0.06"}, {"ID": "FBgn0001137", "EGF_Baseline": "0.67"}, {"ID": "FBgn0033749", "EGF_Baseline": "1.67"}, {"ID": "FBgn0003209", "EGF_Baseline": "-1.63"}, {"ID": "FBgn0024728", "EGF_Baseline": "0.49"}, {"ID": "FBgn0035380", "EGF_Baseline": "-1.14"}, {"ID": "FBgn0027549", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0039738", "EGF_Baseline": "0.79"}, {"ID": "FBgn0053302", "EGF_Baseline": "0.35"}, {"ID": "FBgn0026058", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0034243", "EGF_Baseline": "1.56"}, {"ID": "FBgn0036511", "EGF_Baseline": "0.84"}, {"ID": "FBgn0030811", "EGF_Baseline": "1.04"}, {"ID": "FBgn0029827", "EGF_Baseline": "-0.24"}, {"ID": "FBgn0003450", "EGF_Baseline": "0.23"}, {"ID": "FBgn0032719", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0033443", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0004106", "EGF_Baseline": "2.33"}, {"ID": "FBgn0039527", "EGF_Baseline": "-1.49"}, {"ID": "FBgn0037973", "EGF_Baseline": "0.61"}, {"ID": "FBgn0032973", "EGF_Baseline": "-0.44"}, {"ID": "FBgn0026397", "EGF_Baseline": "-1.37"}, {"ID": "FBgn0030826", "EGF_Baseline": "-0.16"}, {"ID": "FBgn0027619", "EGF_Baseline": "-1.3"}, {"ID": "FBgn0030344", "EGF_Baseline": "1.17"}, {"ID": "FBgn0040989", "EGF_Baseline": "1.42"}, {"ID": "FBgn0040796", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0035078", "EGF_Baseline": "0.86"}, {"ID": "FBgn0035805", "EGF_Baseline": "0.39"}, {"ID": "FBgn0010438", "EGF_Baseline": "0.86"}, {"ID": "FBgn0086909", "EGF_Baseline": "-2.22"}, {"ID": "FBgn0036964", "EGF_Baseline": "-0.66"}, {"ID": "FBgn0051524", "EGF_Baseline": "-1.73"}, {"ID": "FBgn0013773", "EGF_Baseline": "-0.11"}, {"ID": "FBgn0261556", "EGF_Baseline": "-1.86"}, {"ID": "FBgn0051357", "EGF_Baseline": "-0.42"}, {"ID": "FBgn0039771", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0013308", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0005660", "EGF_Baseline": "-0.39"}, {"ID": "FBgn0037468", "EGF_Baseline": "1.31"}, {"ID": "FBgn0085433", "EGF_Baseline": "1.03"}, {"ID": "FBgn0032209", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0035455", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0038296", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0026570", "EGF_Baseline": "0.24"}, {"ID": "FBgn0052669", "EGF_Baseline": "2.43"}, {"ID": "FBgn0031216", "EGF_Baseline": "-1.64"}, {"ID": "FBgn0001269", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0036670", "EGF_Baseline": "-1.38"}, {"ID": "FBgn0053192", "EGF_Baseline": "1.16"}, {"ID": "FBgn0015772", "EGF_Baseline": "0.85"}, {"ID": "FBgn0027868", "EGF_Baseline": "4.29"}, {"ID": "FBgn0039639", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0011277", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0035670", "EGF_Baseline": "-0.33"}, {"ID": "FBgn0039886", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0036031", "EGF_Baseline": "0.54"}, {"ID": "FBgn0037250", "EGF_Baseline": "0.77"}, {"ID": "FBgn0033183", "EGF_Baseline": "0.31"}, {"ID": "FBgn0029067", "EGF_Baseline": "-1.39"}, {"ID": "FBgn0031333", "EGF_Baseline": "0.57"}, {"ID": "FBgn0030352", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0034558", "EGF_Baseline": "2.03"}, {"ID": "FBgn0000709", "EGF_Baseline": "0.93"}, {"ID": "FBgn0045761", "EGF_Baseline": "-1.67"}, {"ID": "FBgn0261570", "EGF_Baseline": "-1.14"}, {"ID": "FBgn0050488", "EGF_Baseline": "-1.51"}, {"ID": "FBgn0033570", "EGF_Baseline": "0.61"}, {"ID": "FBgn0031283", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0015024", "EGF_Baseline": "0.29"}, {"ID": "FBgn0038993", "EGF_Baseline": "-1.51"}, {"ID": "FBgn0038161", "EGF_Baseline": "-0.22"}, {"ID": "FBgn0037581", "EGF_Baseline": "-1.44"}, {"ID": "FBgn0034277", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0038494", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0010747", "EGF_Baseline": "-1.17"}, {"ID": "FBgn0035090", "EGF_Baseline": "0.95"}, {"ID": "FBgn0039655", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0050410", "EGF_Baseline": "-1.57"}, {"ID": "FBgn0014396", "EGF_Baseline": "0.39"}, {"ID": "FBgn0000556", "EGF_Baseline": "0.57"}, {"ID": "FBgn0005616", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0035568", "EGF_Baseline": "1.75"}, {"ID": "FBgn0259185", "EGF_Baseline": "1.01"}, {"ID": "FBgn0031134", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0003009", "EGF_Baseline": "-1.78"}, {"ID": "FBgn0083990", "EGF_Baseline": "0.28"}, {"ID": "FBgn0036505", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0063649", "EGF_Baseline": "-1.52"}, {"ID": "FBgn0001230", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0032811", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0028687", "EGF_Baseline": "-2.49"}, {"ID": "FBgn0038924", "EGF_Baseline": "-1.25"}, {"ID": "FBgn0019830", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0031876", "EGF_Baseline": "-1.74"}, {"ID": "FBgn0003423", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0023519", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0053512", "EGF_Baseline": "10.78"}, {"ID": "FBgn0037345", "EGF_Baseline": "-1.1"}, {"ID": "FBgn0034744", "EGF_Baseline": "-0.77"}, {"ID": "FBgn0033591", "EGF_Baseline": "-1.26"}, {"ID": "FBgn0050411", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0051266", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0015282", "EGF_Baseline": "-2.41"}, {"ID": "FBgn0034061", "EGF_Baseline": "0.34"}, {"ID": "FBgn0086904", "EGF_Baseline": "-0.71"}, {"ID": "FBgn0032213", "EGF_Baseline": "0.66"}, {"ID": "FBgn0052475", "EGF_Baseline": "1.31"}, {"ID": "FBgn0039007", "EGF_Baseline": "-0.3"}, {"ID": "FBgn0026415", "EGF_Baseline": "1.32"}, {"ID": "FBgn0028900", "EGF_Baseline": "0.98"}, {"ID": "FBgn0039376", "EGF_Baseline": "0.35"}, {"ID": "FBgn0033087", "EGF_Baseline": "0.87"}, {"ID": "FBgn0037430", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0027585", "EGF_Baseline": "1.86"}, {"ID": "FBgn0035621", "EGF_Baseline": "-1.93"}, {"ID": "FBgn0041623", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0036990", "EGF_Baseline": "-0.5"}, {"ID": "FBgn0053493", "EGF_Baseline": "0.46"}, {"ID": "FBgn0053170", "EGF_Baseline": "1.32"}, {"ID": "FBgn0027565", "EGF_Baseline": "-0.4"}, {"ID": "FBgn0038213", "EGF_Baseline": "-2.17"}, {"ID": "FBgn0051223", "EGF_Baseline": "1.26"}, {"ID": "FBgn0040341", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0030015", "EGF_Baseline": "0.37"}, {"ID": "FBgn0035213", "EGF_Baseline": "-1.33"}, {"ID": "FBgn0051644", "EGF_Baseline": "-1.64"}, {"ID": "FBgn0034576", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0036145", "EGF_Baseline": "0.58"}, {"ID": "FBgn0035434", "EGF_Baseline": "-0.21"}, {"ID": "FBgn0038469", "EGF_Baseline": "0.43"}, {"ID": "FBgn0035916", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0015035", "EGF_Baseline": "0.97"}, {"ID": "FBgn0035543", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0032424", "EGF_Baseline": "0.25"}, {"ID": "FBgn0052484", "EGF_Baseline": "-1.75"}, {"ID": "FBgn0046247", "EGF_Baseline": "-1.6"}, {"ID": "FBgn0030963", "EGF_Baseline": "1.78"}, {"ID": "FBgn0052792", "EGF_Baseline": "1.39"}, {"ID": "FBgn0033737", "EGF_Baseline": "-0.2"}, {"ID": "FBgn0036118", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0028954", "EGF_Baseline": "-1.92"}, {"ID": "FBgn0086347", "EGF_Baseline": "-1.24"}, {"ID": "FBgn0033062", "EGF_Baseline": "-2.23"}, {"ID": "FBgn0040828", "EGF_Baseline": "-0.15"}, {"ID": "FBgn0086911", "EGF_Baseline": "-1.71"}, {"ID": "FBgn0044049", "EGF_Baseline": "1.16"}, {"ID": "FBgn0031114", "EGF_Baseline": "0.42"}, {"ID": "FBgn0035532", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0250746", "EGF_Baseline": "-0.54"}, {"ID": "FBgn0039348", "EGF_Baseline": "0.63"}, {"ID": "FBgn0086445", "EGF_Baseline": "-1.25"}, {"ID": "FBgn0052024", "EGF_Baseline": "-0.25"}, {"ID": "FBgn0032582", "EGF_Baseline": "-1.64"}, {"ID": "FBgn0051777", "EGF_Baseline": "0.86"}, {"ID": "FBgn0031871", "EGF_Baseline": "-0.39"}, {"ID": "FBgn0036328", "EGF_Baseline": "-0.66"}, {"ID": "FBgn0029535", "EGF_Baseline": "-1.28"}, {"ID": "FBgn0046887", "EGF_Baseline": "0.92"}, {"ID": "FBgn0037288", "EGF_Baseline": "1.8"}, {"ID": "FBgn0053233", "EGF_Baseline": "1.21"}, {"ID": "FBgn0038122", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0031732", "EGF_Baseline": "-1.98"}, {"ID": "FBgn0010051", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0024993", "EGF_Baseline": "0.17"}, {"ID": "FBgn0039553", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0031764", "EGF_Baseline": "-1.31"}, {"ID": "FBgn0036299", "EGF_Baseline": "0.47"}, {"ID": "FBgn0034054", "EGF_Baseline": "-1.5"}, {"ID": "FBgn0051076", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0030734", "EGF_Baseline": "0.6"}, {"ID": "FBgn0030431", "EGF_Baseline": "0.88"}, {"ID": "FBgn0031036", "EGF_Baseline": "-1.71"}, {"ID": "FBgn0085331", "EGF_Baseline": "-0.81"}, {"ID": "FBgn0052698", "EGF_Baseline": "-1.5"}, {"ID": "FBgn0031434", "EGF_Baseline": "0.77"}, {"ID": "FBgn0036180", "EGF_Baseline": "-0.81"}, {"ID": "FBgn0033798", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0036603", "EGF_Baseline": "0.97"}, {"ID": "FBgn0051549", "EGF_Baseline": "1.02"}, {"ID": "FBgn0001259", "EGF_Baseline": "-1.4"}, {"ID": "FBgn0028699", "EGF_Baseline": "0.61"}, {"ID": "FBgn0250754", "EGF_Baseline": "-0.38"}, {"ID": "FBgn0051459", "EGF_Baseline": "1.16"}, {"ID": "FBgn0029783", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0085431", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0033701", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0039494", "EGF_Baseline": "4"}, {"ID": "FBgn0028669", "EGF_Baseline": "0.97"}, {"ID": "FBgn0031808", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0053056", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0031608", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0029817", "EGF_Baseline": "-0.67"}, {"ID": "FBgn0030630", "EGF_Baseline": "-0.63"}, {"ID": "FBgn0026380", "EGF_Baseline": "-0.25"}, {"ID": "FBgn0027287", "EGF_Baseline": "-0.31"}, {"ID": "FBgn0029754", "EGF_Baseline": "-1.21"}, {"ID": "FBgn0042696", "EGF_Baseline": "-1.79"}, {"ID": "FBgn0037939", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0037402", "EGF_Baseline": "-0.21"}, {"ID": "FBgn0032588", "EGF_Baseline": "-0.33"}, {"ID": "FBgn0039829", "EGF_Baseline": "0.8"}, {"ID": "FBgn0031992", "EGF_Baseline": "-1.46"}, {"ID": "FBgn0034126", "EGF_Baseline": "1.07"}, {"ID": "FBgn0031803", "EGF_Baseline": "0.88"}, {"ID": "FBgn0031777", "EGF_Baseline": "1.2"}, {"ID": "FBgn0052302", "EGF_Baseline": "-0.35"}, {"ID": "FBgn0035603", "EGF_Baseline": "0.82"}, {"ID": "FBgn0037783", "EGF_Baseline": "0.09"}, {"ID": "FBgn0020767", "EGF_Baseline": "0.5"}, {"ID": "FBgn0022246", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0259918", "EGF_Baseline": "-1.2"}, {"ID": "FBgn0030478", "EGF_Baseline": "1.51"}, {"ID": "FBgn0031441", "EGF_Baseline": "1.4"}, {"ID": "FBgn0000591", "EGF_Baseline": "0.63"}, {"ID": "FBgn0037684", "EGF_Baseline": "-0.91"}, {"ID": "FBgn0259112", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0030554", "EGF_Baseline": "-1.46"}, {"ID": "FBgn0085309", "EGF_Baseline": "-2.11"}, {"ID": "FBgn0083959", "EGF_Baseline": "-2.37"}, {"ID": "FBgn0052250", "EGF_Baseline": "-1.48"}, {"ID": "FBgn0050371", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0052445", "EGF_Baseline": "1.83"}, {"ID": "FBgn0030005", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0039139", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0038869", "EGF_Baseline": "2.33"}, {"ID": "FBgn0025806", "EGF_Baseline": "-1.84"}, {"ID": "FBgn0037405", "EGF_Baseline": "-1.71"}, {"ID": "FBgn0004598", "EGF_Baseline": "1.04"}, {"ID": "FBgn0032525", "EGF_Baseline": "-1.63"}, {"ID": "FBgn0036323", "EGF_Baseline": "-0.05"}, {"ID": "FBgn0083986", "EGF_Baseline": "11.31"}, {"ID": "FBgn0039180", "EGF_Baseline": "0.77"}, {"ID": "FBgn0030777", "EGF_Baseline": "-1.67"}, {"ID": "FBgn0250835", "EGF_Baseline": "1.58"}, {"ID": "FBgn0039799", "EGF_Baseline": "1.36"}, {"ID": "FBgn0032376", "EGF_Baseline": "0.31"}, {"ID": "FBgn0030945", "EGF_Baseline": "0.75"}, {"ID": "FBgn0034540", "EGF_Baseline": "-1.93"}, {"ID": "FBgn0036857", "EGF_Baseline": "-0.37"}, {"ID": "FBgn0260987", "EGF_Baseline": "-1.74"}, {"ID": "FBgn0035791", "EGF_Baseline": "1.58"}, {"ID": "FBgn0034595", "EGF_Baseline": "-0.15"}, {"ID": "FBgn0050181", "EGF_Baseline": "-1"}, {"ID": "FBgn0052588", "EGF_Baseline": "0.28"}, {"ID": "FBgn0035782", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0023129", "EGF_Baseline": "1.95"}, {"ID": "FBgn0039621", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0037633", "EGF_Baseline": "-0.52"}, {"ID": "FBgn0031821", "EGF_Baseline": "0.4"}, {"ID": "FBgn0052750", "EGF_Baseline": "-0.35"}, {"ID": "FBgn0041581", "EGF_Baseline": "0.51"}, {"ID": "FBgn0034457", "EGF_Baseline": "0.32"}, {"ID": "FBgn0031266", "EGF_Baseline": "4.85"}, {"ID": "FBgn0030991", "EGF_Baseline": "-0.46"}, {"ID": "FBgn0033185", "EGF_Baseline": "-0.59"}, {"ID": "FBgn0014092", "EGF_Baseline": "0.35"}, {"ID": "FBgn0010516", "EGF_Baseline": "-0.84"}, {"ID": "FBgn0058178", "EGF_Baseline": "0.88"}, {"ID": "FBgn0033879", "EGF_Baseline": "0.97"}, {"ID": "FBgn0037647", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0032503", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0031895", "EGF_Baseline": "0.56"}, {"ID": "FBgn0010314", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0036765", "EGF_Baseline": "0.57"}, {"ID": "FBgn0051148", "EGF_Baseline": "-0.43"}, {"ID": "FBgn0013987", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0053631", "EGF_Baseline": "-0.33"}, {"ID": "FBgn0020305", "EGF_Baseline": "-0.91"}, {"ID": "FBgn0033130", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0050447", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0028685", "EGF_Baseline": "-0.26"}, {"ID": "FBgn0028490", "EGF_Baseline": "-2.23"}, {"ID": "FBgn0004087", "EGF_Baseline": "-0.77"}, {"ID": "FBgn0259174", "EGF_Baseline": "-1.54"}, {"ID": "FBgn0259238", "EGF_Baseline": "-1.36"}, {"ID": "FBgn0034768", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0000629", "EGF_Baseline": "0.66"}, {"ID": "FBgn0260768", "EGF_Baseline": "0.36"}, {"ID": "FBgn0030794", "EGF_Baseline": "1.17"}, {"ID": "FBgn0051204", "EGF_Baseline": "-1.38"}, {"ID": "FBgn0036005", "EGF_Baseline": "1.36"}, {"ID": "FBgn0029507", "EGF_Baseline": "-1.21"}, {"ID": "FBgn0085326", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0011817", "EGF_Baseline": "-1.88"}, {"ID": "FBgn0085288", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0086134", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0083938", "EGF_Baseline": "-1.82"}, {"ID": "FBgn0036732", "EGF_Baseline": "-1.72"}, {"ID": "FBgn0030540", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0031142", "EGF_Baseline": "1.42"}, {"ID": "FBgn0261259", "EGF_Baseline": "-1.55"}, {"ID": "FBgn0030671", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0032446", "EGF_Baseline": "0.63"}, {"ID": "FBgn0033273", "EGF_Baseline": "-0.91"}, {"ID": "FBgn0002528", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0036617", "EGF_Baseline": "-1.33"}, {"ID": "FBgn0029590", "EGF_Baseline": "0.52"}, {"ID": "FBgn0040376", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0033015", "EGF_Baseline": "1.32"}, {"ID": "FBgn0033241", "EGF_Baseline": "-0.72"}, {"ID": "FBgn0020620", "EGF_Baseline": "1.01"}, {"ID": "FBgn0035692", "EGF_Baseline": "-0.17"}, {"ID": "FBgn0034956", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0030587", "EGF_Baseline": "1.24"}, {"ID": "FBgn0261284", "EGF_Baseline": "0.68"}, {"ID": "FBgn0053172", "EGF_Baseline": "0.64"}, {"ID": "FBgn0034534", "EGF_Baseline": "-1.4"}, {"ID": "FBgn0004876", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0033115", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0035772", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0035858", "EGF_Baseline": "0.63"}, {"ID": "FBgn0031531", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0038512", "EGF_Baseline": "-0.27"}, {"ID": "FBgn0027605", "EGF_Baseline": "-0.98"}, {"ID": "FBgn0036246", "EGF_Baseline": "0.27"}, {"ID": "FBgn0030318", "EGF_Baseline": "-1.37"}, {"ID": "FBgn0036179", "EGF_Baseline": "-1.83"}, {"ID": "FBgn0031322", "EGF_Baseline": "0.91"}, {"ID": "FBgn0036547", "EGF_Baseline": "-1.82"}, {"ID": "FBgn0039075", "EGF_Baseline": "-1.76"}, {"ID": "FBgn0031752", "EGF_Baseline": "0.47"}, {"ID": "FBgn0034646", "EGF_Baseline": "-2.03"}, {"ID": "FBgn0002733", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0002577", "EGF_Baseline": "0.41"}, {"ID": "FBgn0034876", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0050349", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0051157", "EGF_Baseline": "0.77"}, {"ID": "FBgn0030993", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0058042", "EGF_Baseline": "0.88"}, {"ID": "FBgn0038436", "EGF_Baseline": "-1.44"}, {"ID": "FBgn0039664", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0027529", "EGF_Baseline": "-0.59"}, {"ID": "FBgn0014849", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0038631", "EGF_Baseline": "0.89"}, {"ID": "FBgn0030770", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0034761", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0038388", "EGF_Baseline": "-1.22"}, {"ID": "FBgn0027535", "EGF_Baseline": "0.14"}, {"ID": "FBgn0029882", "EGF_Baseline": "-1.15"}, {"ID": "FBgn0052695", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0034221", "EGF_Baseline": "-1.98"}, {"ID": "FBgn0029728", "EGF_Baseline": "0.8"}, {"ID": "FBgn0035139", "EGF_Baseline": "1.24"}, {"ID": "FBgn0000054", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0041186", "EGF_Baseline": "1.1"}, {"ID": "FBgn0067311", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0039208", "EGF_Baseline": "0.64"}, {"ID": "FBgn0028526", "EGF_Baseline": "-0.44"}, {"ID": "FBgn0051244", "EGF_Baseline": "-1.96"}, {"ID": "FBgn0036702", "EGF_Baseline": "-1.28"}, {"ID": "FBgn0032751", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0029685", "EGF_Baseline": "-1.16"}, {"ID": "FBgn0050384", "EGF_Baseline": "-1.4"}, {"ID": "FBgn0035358", "EGF_Baseline": "-1.2"}, {"ID": "FBgn0039671", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0037144", "EGF_Baseline": "-1.17"}, {"ID": "FBgn0029523", "EGF_Baseline": "-1.46"}, {"ID": "FBgn0053454", "EGF_Baseline": "0.71"}, {"ID": "FBgn0261046", "EGF_Baseline": "0.69"}, {"ID": "FBgn0026239", "EGF_Baseline": "1.02"}, {"ID": "FBgn0051697", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0027091", "EGF_Baseline": "-1.53"}, {"ID": "FBgn0033998", "EGF_Baseline": "-2.4"}, {"ID": "FBgn0031070", "EGF_Baseline": "-1.44"}, {"ID": "FBgn0034476", "EGF_Baseline": "-1.75"}, {"ID": "FBgn0029769", "EGF_Baseline": "-1.73"}, {"ID": "FBgn0005677", "EGF_Baseline": "1.33"}, {"ID": "FBgn0001321", "EGF_Baseline": "0.74"}, {"ID": "FBgn0035429", "EGF_Baseline": "0.11"}, {"ID": "FBgn0036654", "EGF_Baseline": "1.11"}, {"ID": "FBgn0036610", "EGF_Baseline": "-1.22"}, {"ID": "FBgn0024958", "EGF_Baseline": "0.4"}, {"ID": "FBgn0011584", "EGF_Baseline": "0.42"}, {"ID": "FBgn0038221", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0037589", "EGF_Baseline": "-1.23"}, {"ID": "FBgn0032358", "EGF_Baseline": "0.19"}, {"ID": "FBgn0010803", "EGF_Baseline": "-1.55"}, {"ID": "FBgn0039217", "EGF_Baseline": "-0.28"}, {"ID": "FBgn0035364", "EGF_Baseline": "1.64"}, {"ID": "FBgn0040297", "EGF_Baseline": "1.51"}, {"ID": "FBgn0031986", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0039237", "EGF_Baseline": "0.68"}, {"ID": "FBgn0031893", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0038183", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0040290", "EGF_Baseline": "-0.77"}, {"ID": "FBgn0038018", "EGF_Baseline": "-0.44"}, {"ID": "FBgn0033827", "EGF_Baseline": "-0.59"}, {"ID": "FBgn0039676", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0020389", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0259147", "EGF_Baseline": "-1.44"}, {"ID": "FBgn0036428", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0053481", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0036141", "EGF_Baseline": "-1.89"}, {"ID": "FBgn0085374", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0032247", "EGF_Baseline": "1.57"}, {"ID": "FBgn0036824", "EGF_Baseline": "-1.57"}, {"ID": "FBgn0037501", "EGF_Baseline": "0.89"}, {"ID": "FBgn0037108", "EGF_Baseline": "-0.4"}, {"ID": "FBgn0036490", "EGF_Baseline": "1.54"}, {"ID": "FBgn0020618", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0041105", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0040252", "EGF_Baseline": "0.34"}, {"ID": "FBgn0037011", "EGF_Baseline": "-1.77"}, {"ID": "FBgn0034903", "EGF_Baseline": "4.11"}, {"ID": "FBgn0032124", "EGF_Baseline": "-1.24"}, {"ID": "FBgn0031824", "EGF_Baseline": "1.32"}, {"ID": "FBgn0035539", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0005533", "EGF_Baseline": "3.49"}, {"ID": "FBgn0037003", "EGF_Baseline": "0.68"}, {"ID": "FBgn0032040", "EGF_Baseline": "0.9"}, {"ID": "FBgn0036410", "EGF_Baseline": "-1.96"}, {"ID": "FBgn0038708", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0031128", "EGF_Baseline": "-1"}, {"ID": "FBgn0053116", "EGF_Baseline": "1.49"}, {"ID": "FBgn0011559", "EGF_Baseline": "1.24"}, {"ID": "FBgn0052463", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0033906", "EGF_Baseline": "0.33"}, {"ID": "FBgn0037678", "EGF_Baseline": "-1.35"}, {"ID": "FBgn0038424", "EGF_Baseline": "-0.32"}, {"ID": "FBgn0034665", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0039282", "EGF_Baseline": "6.83"}, {"ID": "FBgn0052762", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0024352", "EGF_Baseline": "-0.24"}, {"ID": "FBgn0050495", "EGF_Baseline": "1.06"}, {"ID": "FBgn0037993", "EGF_Baseline": "0.81"}, {"ID": "FBgn0004110", "EGF_Baseline": "0.75"}, {"ID": "FBgn0024293", "EGF_Baseline": "0.3"}, {"ID": "FBgn0039722", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0015040", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0040628", "EGF_Baseline": "1.7"}, {"ID": "FBgn0023479", "EGF_Baseline": "1.04"}, {"ID": "FBgn0051388", "EGF_Baseline": "-0.16"}, {"ID": "FBgn0031186", "EGF_Baseline": "-1.31"}, {"ID": "FBgn0000043", "EGF_Baseline": "0.62"}, {"ID": "FBgn0031940", "EGF_Baseline": "-1.54"}, {"ID": "FBgn0037422", "EGF_Baseline": "-1.83"}, {"ID": "FBgn0050364", "EGF_Baseline": "-0.72"}, {"ID": "FBgn0037539", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0032981", "EGF_Baseline": "0.56"}, {"ID": "FBgn0038539", "EGF_Baseline": "-1.53"}, {"ID": "FBgn0051636", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0027348", "EGF_Baseline": "2.02"}, {"ID": "FBgn0051184", "EGF_Baseline": "-0.49"}, {"ID": "FBgn0030121", "EGF_Baseline": "0.42"}, {"ID": "FBgn0029924", "EGF_Baseline": "0.63"}, {"ID": "FBgn0024943", "EGF_Baseline": "0.03"}, {"ID": "FBgn0004394", "EGF_Baseline": "1.53"}, {"ID": "FBgn0032625", "EGF_Baseline": "1.07"}, {"ID": "FBgn0051659", "EGF_Baseline": "1.84"}, {"ID": "FBgn0039507", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0035610", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0036094", "EGF_Baseline": "5.42"}, {"ID": "FBgn0027515", "EGF_Baseline": "-1.23"}, {"ID": "FBgn0030459", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0053640", "EGF_Baseline": "0.66"}, {"ID": "FBgn0038947", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0011554", "EGF_Baseline": "-1.2"}, {"ID": "FBgn0261813", "EGF_Baseline": "-1.71"}, {"ID": "FBgn0035617", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0034294", "EGF_Baseline": "-1.42"}, {"ID": "FBgn0031469", "EGF_Baseline": "1.15"}, {"ID": "FBgn0085302", "EGF_Baseline": "-1.56"}, {"ID": "FBgn0037128", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0028926", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0028424", "EGF_Baseline": "-1.74"}, {"ID": "FBgn0024330", "EGF_Baseline": "2.1"}, {"ID": "FBgn0016053", "EGF_Baseline": "0.52"}, {"ID": "FBgn0033856", "EGF_Baseline": "-1.33"}, {"ID": "FBgn0026371", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0000477", "EGF_Baseline": "0.44"}, {"ID": "FBgn0032276", "EGF_Baseline": "0.04"}, {"ID": "FBgn0035852", "EGF_Baseline": "-0.72"}, {"ID": "FBgn0062978", "EGF_Baseline": "-1.44"}, {"ID": "FBgn0039849", "EGF_Baseline": "-1.67"}, {"ID": "FBgn0032804", "EGF_Baseline": "0.89"}, {"ID": "FBgn0036995", "EGF_Baseline": "-1.71"}, {"ID": "FBgn0038464", "EGF_Baseline": "2.13"}, {"ID": "FBgn0036794", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0051832", "EGF_Baseline": "0.47"}, {"ID": "FBgn0259168", "EGF_Baseline": "-0.54"}, {"ID": "FBgn0015553", "EGF_Baseline": "-1.27"}, {"ID": "FBgn0041195", "EGF_Baseline": "1.43"}, {"ID": "FBgn0051647", "EGF_Baseline": "0.78"}, {"ID": "FBgn0053124", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0038901", "EGF_Baseline": "-1.27"}, {"ID": "FBgn0037449", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0034824", "EGF_Baseline": "0.42"}, {"ID": "FBgn0261065", "EGF_Baseline": "-1.21"}, {"ID": "FBgn0039069", "EGF_Baseline": "0.87"}, {"ID": "FBgn0036935", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0036125", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0050355", "EGF_Baseline": "-1.3"}, {"ID": "FBgn0030834", "EGF_Baseline": "0.61"}, {"ID": "FBgn0021847", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0032006", "EGF_Baseline": "1.65"}, {"ID": "FBgn0033268", "EGF_Baseline": "1.12"}, {"ID": "FBgn0014464", "EGF_Baseline": "0.82"}, {"ID": "FBgn0034105", "EGF_Baseline": "-1.59"}, {"ID": "FBgn0038105", "EGF_Baseline": "-1.47"}, {"ID": "FBgn0035933", "EGF_Baseline": "1.73"}, {"ID": "FBgn0035711", "EGF_Baseline": "-0.28"}, {"ID": "FBgn0036580", "EGF_Baseline": "0.25"}, {"ID": "FBgn0039190", "EGF_Baseline": "-0.28"}, {"ID": "FBgn0033271", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0036771", "EGF_Baseline": "0.33"}, {"ID": "FBgn0033955", "EGF_Baseline": "-1.48"}, {"ID": "FBgn0039000", "EGF_Baseline": "-0.63"}, {"ID": "FBgn0004587", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0261930", "EGF_Baseline": "1.53"}, {"ID": "FBgn0250874", "EGF_Baseline": "0.56"}, {"ID": "FBgn0043535", "EGF_Baseline": "-2.43"}, {"ID": "FBgn0030039", "EGF_Baseline": "-0.98"}, {"ID": "FBgn0004636", "EGF_Baseline": "1.44"}, {"ID": "FBgn0034144", "EGF_Baseline": "1.41"}, {"ID": "FBgn0051176", "EGF_Baseline": "1.22"}, {"ID": "FBgn0064237", "EGF_Baseline": "1.7"}, {"ID": "FBgn0250824", "EGF_Baseline": "1.08"}, {"ID": "FBgn0086697", "EGF_Baseline": "0.45"}, {"ID": "FBgn0034392", "EGF_Baseline": "0.93"}, {"ID": "FBgn0032740", "EGF_Baseline": "-1.16"}, {"ID": "FBgn0051664", "EGF_Baseline": "2.41"}, {"ID": "FBgn0037707", "EGF_Baseline": "0.91"}, {"ID": "FBgn0260635", "EGF_Baseline": "11.37"}, {"ID": "FBgn0039026", "EGF_Baseline": "0.64"}, {"ID": "FBgn0032783", "EGF_Baseline": "-0.5"}, {"ID": "FBgn0029589", "EGF_Baseline": "-0.77"}, {"ID": "FBgn0261797", "EGF_Baseline": "0.94"}, {"ID": "FBgn0033137", "EGF_Baseline": "0.45"}, {"ID": "FBgn0036263", "EGF_Baseline": "1.29"}, {"ID": "FBgn0260396", "EGF_Baseline": "-1.48"}, {"ID": "FBgn0038346", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0032851", "EGF_Baseline": "0.9"}, {"ID": "FBgn0033515", "EGF_Baseline": "0.88"}, {"ID": "FBgn0033954", "EGF_Baseline": "-0.18"}, {"ID": "FBgn0003747", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0085192", "EGF_Baseline": "-0.42"}, {"ID": "FBgn0035707", "EGF_Baseline": "1.8"}, {"ID": "FBgn0261803", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0039669", "EGF_Baseline": "-1.3"}, {"ID": "FBgn0032530", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0035907", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0029157", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0032264", "EGF_Baseline": "0.3"}, {"ID": "FBgn0015663", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0034318", "EGF_Baseline": "-0.66"}, {"ID": "FBgn0016070", "EGF_Baseline": "0.96"}, {"ID": "FBgn0259711", "EGF_Baseline": "0.8"}, {"ID": "FBgn0029935", "EGF_Baseline": "2.57"}, {"ID": "FBgn0035844", "EGF_Baseline": "1.13"}, {"ID": "FBgn0260779", "EGF_Baseline": "0.67"}, {"ID": "FBgn0051826", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0003655", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0029596", "EGF_Baseline": "2.25"}, {"ID": "FBgn0050395", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0004554", "EGF_Baseline": "0.94"}, {"ID": "FBgn0032632", "EGF_Baseline": "0.94"}, {"ID": "FBgn0005561", "EGF_Baseline": "0.93"}, {"ID": "FBgn0031566", "EGF_Baseline": "0.35"}, {"ID": "FBgn0030452", "EGF_Baseline": "1.15"}, {"ID": "FBgn0039197", "EGF_Baseline": "1.12"}, {"ID": "FBgn0033248", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0050468", "EGF_Baseline": "-1.86"}, {"ID": "FBgn0036349", "EGF_Baseline": "1.34"}, {"ID": "FBgn0002521", "EGF_Baseline": "0.95"}, {"ID": "FBgn0000281", "EGF_Baseline": "0.79"}, {"ID": "FBgn0035399", "EGF_Baseline": "-0.39"}, {"ID": "FBgn0038858", "EGF_Baseline": "0.91"}, {"ID": "FBgn0261239", "EGF_Baseline": "1.15"}, {"ID": "FBgn0024973", "EGF_Baseline": "-0.26"}, {"ID": "FBgn0052594", "EGF_Baseline": "1.36"}, {"ID": "FBgn0027378", "EGF_Baseline": "0.36"}, {"ID": "FBgn0016641", "EGF_Baseline": "1.23"}, {"ID": "FBgn0259213", "EGF_Baseline": "1.88"}, {"ID": "FBgn0041234", "EGF_Baseline": "-0.52"}, {"ID": "FBgn0031849", "EGF_Baseline": "-1.68"}, {"ID": "FBgn0261270", "EGF_Baseline": "-0.27"}, {"ID": "FBgn0031081", "EGF_Baseline": "0.29"}, {"ID": "FBgn0037418", "EGF_Baseline": "-1.68"}, {"ID": "FBgn0036462", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0031519", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0003313", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0032883", "EGF_Baseline": "-2.29"}, {"ID": "FBgn0037202", "EGF_Baseline": "-0.3"}, {"ID": "FBgn0026428", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0039854", "EGF_Baseline": "-0.52"}, {"ID": "FBgn0028515", "EGF_Baseline": "-0.32"}, {"ID": "FBgn0034500", "EGF_Baseline": "2.41"}, {"ID": "FBgn0005658", "EGF_Baseline": "-1.48"}, {"ID": "FBgn0036628", "EGF_Baseline": "-0.46"}, {"ID": "FBgn0035169", "EGF_Baseline": "1.94"}, {"ID": "FBgn0051674", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0039743", "EGF_Baseline": "0.32"}, {"ID": "FBgn0031785", "EGF_Baseline": "-0.32"}, {"ID": "FBgn0015269", "EGF_Baseline": "0.4"}, {"ID": "FBgn0031118", "EGF_Baseline": "1.98"}, {"ID": "FBgn0024189", "EGF_Baseline": "3.54"}, {"ID": "FBgn0038037", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0032054", "EGF_Baseline": "-0.66"}, {"ID": "FBgn0038363", "EGF_Baseline": "-0.27"}, {"ID": "FBgn0037660", "EGF_Baseline": "-1.39"}, {"ID": "FBgn0039435", "EGF_Baseline": "-1.28"}, {"ID": "FBgn0032228", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0004885", "EGF_Baseline": "-0.39"}, {"ID": "FBgn0042132", "EGF_Baseline": "-1.93"}, {"ID": "FBgn0052425", "EGF_Baseline": "0.77"}, {"ID": "FBgn0035545", "EGF_Baseline": "-1.23"}, {"ID": "FBgn0053337", "EGF_Baseline": "1.02"}, {"ID": "FBgn0259748", "EGF_Baseline": "-0.54"}, {"ID": "FBgn0037570", "EGF_Baseline": "1.13"}, {"ID": "FBgn0034794", "EGF_Baseline": "-0.29"}, {"ID": "FBgn0027280", "EGF_Baseline": "-1.46"}, {"ID": "FBgn0035833", "EGF_Baseline": "-0.44"}, {"ID": "FBgn0037279", "EGF_Baseline": "-1.75"}, {"ID": "FBgn0002787", "EGF_Baseline": "0.27"}, {"ID": "FBgn0038878", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0025629", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0031651", "EGF_Baseline": "-1.73"}, {"ID": "FBgn0034383", "EGF_Baseline": "0.47"}, {"ID": "FBgn0035160", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0014011", "EGF_Baseline": "-1"}, {"ID": "FBgn0031351", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0052182", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0024754", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0029663", "EGF_Baseline": "0.64"}, {"ID": "FBgn0029703", "EGF_Baseline": "-0.52"}, {"ID": "FBgn0032181", "EGF_Baseline": "-1.79"}, {"ID": "FBgn0032717", "EGF_Baseline": "-1.17"}, {"ID": "FBgn0025638", "EGF_Baseline": "-1.21"}, {"ID": "FBgn0038056", "EGF_Baseline": "-0.31"}, {"ID": "FBgn0028664", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0050409", "EGF_Baseline": "0.6"}, {"ID": "FBgn0037772", "EGF_Baseline": "0.96"}, {"ID": "FBgn0038966", "EGF_Baseline": "-2.03"}, {"ID": "FBgn0040011", "EGF_Baseline": "0.68"}, {"ID": "FBgn0032910", "EGF_Baseline": "0.83"}, {"ID": "FBgn0035383", "EGF_Baseline": "-1.28"}, {"ID": "FBgn0261379", "EGF_Baseline": "-1.77"}, {"ID": "FBgn0032467", "EGF_Baseline": "0.54"}, {"ID": "FBgn0033261", "EGF_Baseline": "-1.62"}, {"ID": "FBgn0037244", "EGF_Baseline": "1.56"}, {"ID": "FBgn0031493", "EGF_Baseline": "1.33"}, {"ID": "FBgn0004465", "EGF_Baseline": "-1.74"}, {"ID": "FBgn0052226", "EGF_Baseline": "-1.73"}, {"ID": "FBgn0011669", "EGF_Baseline": "-1.85"}, {"ID": "FBgn0000032", "EGF_Baseline": "1.42"}, {"ID": "FBgn0053060", "EGF_Baseline": "-1.1"}, {"ID": "FBgn0010382", "EGF_Baseline": "6.55"}, {"ID": "FBgn0052138", "EGF_Baseline": "-1.31"}, {"ID": "FBgn0032732", "EGF_Baseline": "1.14"}, {"ID": "FBgn0034509", "EGF_Baseline": "0.31"}, {"ID": "FBgn0261708", "EGF_Baseline": "-0.17"}, {"ID": "FBgn0039107", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0040813", "EGF_Baseline": "0.72"}, {"ID": "FBgn0026149", "EGF_Baseline": "1.26"}, {"ID": "FBgn0032397", "EGF_Baseline": "0.68"}, {"ID": "FBgn0021967", "EGF_Baseline": "1.07"}, {"ID": "FBgn0052181", "EGF_Baseline": "0.48"}, {"ID": "FBgn0025635", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0037164", "EGF_Baseline": "0.75"}, {"ID": "FBgn0037239", "EGF_Baseline": "0.08"}, {"ID": "FBgn0033207", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0051551", "EGF_Baseline": "0.93"}, {"ID": "FBgn0032008", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0038419", "EGF_Baseline": "-0.84"}, {"ID": "FBgn0037817", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0034684", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0053263", "EGF_Baseline": "0.77"}, {"ID": "FBgn0004666", "EGF_Baseline": "0.23"}, {"ID": "FBgn0086784", "EGF_Baseline": "-1.15"}, {"ID": "FBgn0259831", "EGF_Baseline": "-0.14"}, {"ID": "FBgn0261914", "EGF_Baseline": "-1.56"}, {"ID": "FBgn0042173", "EGF_Baseline": "-1.98"}, {"ID": "FBgn0085483", "EGF_Baseline": "-1.75"}, {"ID": "FBgn0032406", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0010877", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0035152", "EGF_Baseline": "0.47"}, {"ID": "FBgn0000114", "EGF_Baseline": "0.53"}, {"ID": "FBgn0019624", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0027597", "EGF_Baseline": "-1"}, {"ID": "FBgn0036950", "EGF_Baseline": "-1.88"}, {"ID": "FBgn0051441", "EGF_Baseline": "-1.67"}, {"ID": "FBgn0035440", "EGF_Baseline": "-2.13"}, {"ID": "FBgn0250844", "EGF_Baseline": "0.18"}, {"ID": "FBgn0035871", "EGF_Baseline": "0.37"}, {"ID": "FBgn0026873", "EGF_Baseline": "0.62"}, {"ID": "FBgn0000139", "EGF_Baseline": "0.98"}, {"ID": "FBgn0031268", "EGF_Baseline": "-0.26"}, {"ID": "FBgn0034271", "EGF_Baseline": "0.36"}, {"ID": "FBgn0025879", "EGF_Baseline": "1.48"}, {"ID": "FBgn0032577", "EGF_Baseline": "0.91"}, {"ID": "FBgn0035649", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0029997", "EGF_Baseline": "-1.64"}, {"ID": "FBgn0024983", "EGF_Baseline": "-0.25"}, {"ID": "FBgn0033544", "EGF_Baseline": "0.81"}, {"ID": "FBgn0260718", "EGF_Baseline": "-0.33"}, {"ID": "FBgn0032473", "EGF_Baseline": "0.41"}, {"ID": "FBgn0036846", "EGF_Baseline": "-0.91"}, {"ID": "FBgn0037884", "EGF_Baseline": "0.4"}, {"ID": "FBgn0029858", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0038237", "EGF_Baseline": "-1.73"}, {"ID": "FBgn0038063", "EGF_Baseline": "-1.35"}, {"ID": "FBgn0035727", "EGF_Baseline": "-1.31"}, {"ID": "FBgn0038597", "EGF_Baseline": "1.05"}, {"ID": "FBgn0029980", "EGF_Baseline": "0.32"}, {"ID": "FBgn0051496", "EGF_Baseline": "-0.33"}, {"ID": "FBgn0054033", "EGF_Baseline": "0.33"}, {"ID": "FBgn0261597", "EGF_Baseline": "3.24"}, {"ID": "FBgn0039925", "EGF_Baseline": "1.17"}, {"ID": "FBgn0013325", "EGF_Baseline": "5"}, {"ID": "FBgn0039979", "EGF_Baseline": "0.75"}, {"ID": "FBgn0041579", "EGF_Baseline": "-0.84"}, {"ID": "FBgn0039331", "EGF_Baseline": "1.18"}, {"ID": "FBgn0038400", "EGF_Baseline": "0.53"}, {"ID": "FBgn0259978", "EGF_Baseline": "0.95"}, {"ID": "FBgn0038200", "EGF_Baseline": "-0.38"}, {"ID": "FBgn0012037", "EGF_Baseline": "-0.29"}, {"ID": "FBgn0039150", "EGF_Baseline": "-2.29"}, {"ID": "FBgn0003567", "EGF_Baseline": "-1.11"}, {"ID": "FBgn0036837", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0053769", "EGF_Baseline": "0.82"}, {"ID": "FBgn0032750", "EGF_Baseline": "0.62"}, {"ID": "FBgn0038619", "EGF_Baseline": "2.1"}, {"ID": "FBgn0035065", "EGF_Baseline": "0.12"}, {"ID": "FBgn0051103", "EGF_Baseline": "1.36"}, {"ID": "FBgn0030078", "EGF_Baseline": "-0.15"}, {"ID": "FBgn0260873", "EGF_Baseline": "0.4"}, {"ID": "FBgn0031775", "EGF_Baseline": "1.88"}, {"ID": "FBgn0001108", "EGF_Baseline": "-1.52"}, {"ID": "FBgn0031974", "EGF_Baseline": "-1.46"}, {"ID": "FBgn0039620", "EGF_Baseline": "-0.63"}, {"ID": "FBgn0040259", "EGF_Baseline": "0.14"}, {"ID": "FBgn0039860", "EGF_Baseline": "-1.04"}, {"ID": "FBgn0039836", "EGF_Baseline": "5.36"}, {"ID": "FBgn0036760", "EGF_Baseline": "0.7"}, {"ID": "FBgn0011217", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0033623", "EGF_Baseline": "-1.54"}, {"ID": "FBgn0032269", "EGF_Baseline": "-0.72"}, {"ID": "FBgn0034191", "EGF_Baseline": "-1.91"}, {"ID": "FBgn0028703", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0027930", "EGF_Baseline": "0.91"}, {"ID": "FBgn0031273", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0035257", "EGF_Baseline": "0.81"}, {"ID": "FBgn0052638", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0029708", "EGF_Baseline": "1.41"}, {"ID": "FBgn0028984", "EGF_Baseline": "-0.3"}, {"ID": "FBgn0033374", "EGF_Baseline": "-1.48"}, {"ID": "FBgn0032934", "EGF_Baseline": "-0.72"}, {"ID": "FBgn0033081", "EGF_Baseline": "-0.72"}, {"ID": "FBgn0015270", "EGF_Baseline": "-2.3"}, {"ID": "FBgn0003866", "EGF_Baseline": "-1.51"}, {"ID": "FBgn0085459", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0005670", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0004449", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0051719", "EGF_Baseline": "-1.35"}, {"ID": "FBgn0039783", "EGF_Baseline": "-0.45"}, {"ID": "FBgn0039339", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0025679", "EGF_Baseline": "0.86"}, {"ID": "FBgn0014454", "EGF_Baseline": "-1.7"}, {"ID": "FBgn0005558", "EGF_Baseline": "0.82"}, {"ID": "FBgn0051530", "EGF_Baseline": "0.55"}, {"ID": "FBgn0050036", "EGF_Baseline": "-1.65"}, {"ID": "FBgn0032770", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0033812", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0032178", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0025680", "EGF_Baseline": "0.86"}, {"ID": "FBgn0039019", "EGF_Baseline": "2.63"}, {"ID": "FBgn0011224", "EGF_Baseline": "-2.46"}, {"ID": "FBgn0039311", "EGF_Baseline": "-1.23"}, {"ID": "FBgn0037667", "EGF_Baseline": "1.85"}, {"ID": "FBgn0014395", "EGF_Baseline": "-0.72"}, {"ID": "FBgn0031909", "EGF_Baseline": "0.22"}, {"ID": "FBgn0035593", "EGF_Baseline": "-1.65"}, {"ID": "FBgn0032184", "EGF_Baseline": "-1.2"}, {"ID": "FBgn0035813", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0037665", "EGF_Baseline": "1.19"}, {"ID": "FBgn0034092", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0050049", "EGF_Baseline": "14.91"}, {"ID": "FBgn0004795", "EGF_Baseline": "-1.61"}, {"ID": "FBgn0053966", "EGF_Baseline": "-1.15"}, {"ID": "FBgn0037838", "EGF_Baseline": "-0.46"}, {"ID": "FBgn0034986", "EGF_Baseline": "-1.17"}, {"ID": "FBgn0061200", "EGF_Baseline": "9.49"}, {"ID": "FBgn0035020", "EGF_Baseline": "0.88"}, {"ID": "FBgn0036899", "EGF_Baseline": "-1.47"}, {"ID": "FBgn0061197", "EGF_Baseline": "-0.27"}, {"ID": "FBgn0015509", "EGF_Baseline": "0.87"}, {"ID": "FBgn0086604", "EGF_Baseline": "0.89"}, {"ID": "FBgn0036608", "EGF_Baseline": "0.31"}, {"ID": "FBgn0034293", "EGF_Baseline": "-1.64"}, {"ID": "FBgn0036531", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0037149", "EGF_Baseline": "0.7"}, {"ID": "FBgn0037566", "EGF_Baseline": "-1.44"}, {"ID": "FBgn0050485", "EGF_Baseline": "1.49"}, {"ID": "FBgn0031470", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0036677", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0038323", "EGF_Baseline": "1.11"}, {"ID": "FBgn0016013", "EGF_Baseline": "-1.57"}, {"ID": "FBgn0030592", "EGF_Baseline": "1.39"}, {"ID": "FBgn0004170", "EGF_Baseline": "-1.44"}, {"ID": "FBgn0040102", "EGF_Baseline": "-1.42"}, {"ID": "FBgn0033808", "EGF_Baseline": "-1.04"}, {"ID": "FBgn0027586", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0030746", "EGF_Baseline": "0.42"}, {"ID": "FBgn0036569", "EGF_Baseline": "1.84"}, {"ID": "FBgn0010411", "EGF_Baseline": "2.99"}, {"ID": "FBgn0039427", "EGF_Baseline": "-0.77"}, {"ID": "FBgn0039420", "EGF_Baseline": "0.25"}, {"ID": "FBgn0038585", "EGF_Baseline": "0.76"}, {"ID": "FBgn0034712", "EGF_Baseline": "0.59"}, {"ID": "FBgn0036474", "EGF_Baseline": "1.21"}, {"ID": "FBgn0032923", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0000210", "EGF_Baseline": "-1.16"}, {"ID": "FBgn0004895", "EGF_Baseline": "-0.67"}, {"ID": "FBgn0039113", "EGF_Baseline": "-0.1"}, {"ID": "FBgn0020646", "EGF_Baseline": "1.35"}, {"ID": "FBgn0005593", "EGF_Baseline": "2.63"}, {"ID": "FBgn0035750", "EGF_Baseline": "0.7"}, {"ID": "FBgn0010197", "EGF_Baseline": "-1.17"}, {"ID": "FBgn0013678", "EGF_Baseline": "0.98"}, {"ID": "FBgn0017429", "EGF_Baseline": "-1.93"}, {"ID": "FBgn0037263", "EGF_Baseline": "1.12"}, {"ID": "FBgn0085426", "EGF_Baseline": "-1.37"}, {"ID": "FBgn0040959", "EGF_Baseline": "0.58"}, {"ID": "FBgn0030181", "EGF_Baseline": "0.82"}, {"ID": "FBgn0261014", "EGF_Baseline": "-1.17"}, {"ID": "FBgn0036589", "EGF_Baseline": "-1.43"}, {"ID": "FBgn0033984", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0035798", "EGF_Baseline": "1.14"}, {"ID": "FBgn0032162", "EGF_Baseline": "-1.48"}, {"ID": "FBgn0034464", "EGF_Baseline": "-1.3"}, {"ID": "FBgn0004379", "EGF_Baseline": "1.36"}, {"ID": "FBgn0004175", "EGF_Baseline": "-0.56"}, {"ID": "FBgn0039543", "EGF_Baseline": "0.4"}, {"ID": "FBgn0031865", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0038871", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0035640", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0020368", "EGF_Baseline": "-0.98"}, {"ID": "FBgn0004372", "EGF_Baseline": "0.97"}, {"ID": "FBgn0250788", "EGF_Baseline": "-1.24"}, {"ID": "FBgn0031644", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0033912", "EGF_Baseline": "2.7"}, {"ID": "FBgn0085440", "EGF_Baseline": "0.83"}, {"ID": "FBgn0034423", "EGF_Baseline": "0.68"}, {"ID": "FBgn0038762", "EGF_Baseline": "-1.49"}, {"ID": "FBgn0030894", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0038914", "EGF_Baseline": "-0.63"}, {"ID": "FBgn0030829", "EGF_Baseline": "1.74"}, {"ID": "FBgn0036393", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0031805", "EGF_Baseline": "-1.23"}, {"ID": "FBgn0035195", "EGF_Baseline": "-2.15"}, {"ID": "FBgn0037650", "EGF_Baseline": "0.99"}, {"ID": "FBgn0039157", "EGF_Baseline": "-1.1"}, {"ID": "FBgn0023076", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0028506", "EGF_Baseline": "-2.03"}, {"ID": "FBgn0038428", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0031233", "EGF_Baseline": "0.89"}, {"ID": "FBgn0035896", "EGF_Baseline": "-1.42"}, {"ID": "FBgn0030914", "EGF_Baseline": "1.01"}, {"ID": "FBgn0029804", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0031397", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0027504", "EGF_Baseline": "-1.37"}, {"ID": "FBgn0052436", "EGF_Baseline": "-1.67"}, {"ID": "FBgn0039993", "EGF_Baseline": "0.59"}, {"ID": "FBgn0026320", "EGF_Baseline": "0.05"}, {"ID": "FBgn0011591", "EGF_Baseline": "1.17"}, {"ID": "FBgn0259481", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0039766", "EGF_Baseline": "2.21"}, {"ID": "FBgn0037396", "EGF_Baseline": "-0.72"}, {"ID": "FBgn0038320", "EGF_Baseline": "0.25"}, {"ID": "FBgn0026255", "EGF_Baseline": "-1.44"}, {"ID": "FBgn0034735", "EGF_Baseline": "-1.67"}, {"ID": "FBgn0053998", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0022720", "EGF_Baseline": "-1.42"}, {"ID": "FBgn0041252", "EGF_Baseline": "0.5"}, {"ID": "FBgn0028949", "EGF_Baseline": "0.81"}, {"ID": "FBgn0036136", "EGF_Baseline": "-1.1"}, {"ID": "FBgn0051207", "EGF_Baseline": "-0.26"}, {"ID": "FBgn0029966", "EGF_Baseline": "1.25"}, {"ID": "FBgn0030071", "EGF_Baseline": "0.74"}, {"ID": "FBgn0011474", "EGF_Baseline": "-0.56"}, {"ID": "FBgn0000721", "EGF_Baseline": "0.28"}, {"ID": "FBgn0030752", "EGF_Baseline": "-0.31"}, {"ID": "FBgn0087021", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0033303", "EGF_Baseline": "1.47"}, {"ID": "FBgn0051105", "EGF_Baseline": "-1.91"}, {"ID": "FBgn0024804", "EGF_Baseline": "0.19"}, {"ID": "FBgn0050157", "EGF_Baseline": "-0.66"}, {"ID": "FBgn0010247", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0259220", "EGF_Baseline": "-2.37"}, {"ID": "FBgn0013684", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0044871", "EGF_Baseline": "-2.21"}, {"ID": "FBgn0031523", "EGF_Baseline": "-0.24"}, {"ID": "FBgn0053283", "EGF_Baseline": "0.65"}, {"ID": "FBgn0026409", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0039500", "EGF_Baseline": "1.08"}, {"ID": "FBgn0051065", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0032961", "EGF_Baseline": "-0.19"}, {"ID": "FBgn0037215", "EGF_Baseline": "1.09"}, {"ID": "FBgn0085403", "EGF_Baseline": "-1.62"}, {"ID": "FBgn0051788", "EGF_Baseline": "0.92"}, {"ID": "FBgn0002069", "EGF_Baseline": "0.81"}, {"ID": "FBgn0019809", "EGF_Baseline": "1.53"}, {"ID": "FBgn0052657", "EGF_Baseline": "0.92"}, {"ID": "FBgn0039972", "EGF_Baseline": "2.45"}, {"ID": "FBgn0034631", "EGF_Baseline": "0.87"}, {"ID": "FBgn0010014", "EGF_Baseline": "-1.11"}, {"ID": "FBgn0005694", "EGF_Baseline": "0.66"}, {"ID": "FBgn0051472", "EGF_Baseline": "0.46"}, {"ID": "FBgn0034454", "EGF_Baseline": "0.13"}, {"ID": "FBgn0003022", "EGF_Baseline": "1.26"}, {"ID": "FBgn0033948", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0001247", "EGF_Baseline": "0.47"}, {"ID": "FBgn0036913", "EGF_Baseline": "1.39"}, {"ID": "FBgn0036816", "EGF_Baseline": "0.79"}, {"ID": "FBgn0029134", "EGF_Baseline": "1.56"}, {"ID": "FBgn0027572", "EGF_Baseline": "-1.89"}, {"ID": "FBgn0053758", "EGF_Baseline": "1.35"}, {"ID": "FBgn0027107", "EGF_Baseline": "-1.16"}, {"ID": "FBgn0260943", "EGF_Baseline": "1.14"}, {"ID": "FBgn0031410", "EGF_Baseline": "-0.63"}, {"ID": "FBgn0033609", "EGF_Baseline": "1.57"}, {"ID": "FBgn0052086", "EGF_Baseline": "-0.56"}, {"ID": "FBgn0051457", "EGF_Baseline": "0.91"}, {"ID": "FBgn0031139", "EGF_Baseline": "1.71"}, {"ID": "FBgn0039788", "EGF_Baseline": "0.29"}, {"ID": "FBgn0038158", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0034157", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0037385", "EGF_Baseline": "-1.42"}, {"ID": "FBgn0052655", "EGF_Baseline": "1.16"}, {"ID": "FBgn0023096", "EGF_Baseline": "0.9"}, {"ID": "FBgn0029868", "EGF_Baseline": "0.91"}, {"ID": "FBgn0036207", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0030053", "EGF_Baseline": "0.94"}, {"ID": "FBgn0036494", "EGF_Baseline": "-1.73"}, {"ID": "FBgn0000246", "EGF_Baseline": "-1.53"}, {"ID": "FBgn0260744", "EGF_Baseline": "0.56"}, {"ID": "FBgn0039488", "EGF_Baseline": "-2.44"}, {"ID": "FBgn0020496", "EGF_Baseline": "-1.61"}, {"ID": "FBgn0067629", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0003227", "EGF_Baseline": "-1.24"}, {"ID": "FBgn0035315", "EGF_Baseline": "-1.73"}, {"ID": "FBgn0053970", "EGF_Baseline": "1.18"}, {"ID": "FBgn0040636", "EGF_Baseline": "1.6"}, {"ID": "FBgn0013998", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0031238", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0038306", "EGF_Baseline": "1.81"}, {"ID": "FBgn0032509", "EGF_Baseline": "0.6"}, {"ID": "FBgn0035552", "EGF_Baseline": "1.98"}, {"ID": "FBgn0016920", "EGF_Baseline": "0.91"}, {"ID": "FBgn0034585", "EGF_Baseline": "0.16"}, {"ID": "FBgn0050082", "EGF_Baseline": "-1.38"}, {"ID": "FBgn0046296", "EGF_Baseline": "-1.3"}, {"ID": "FBgn0027950", "EGF_Baseline": "-1.23"}, {"ID": "FBgn0085386", "EGF_Baseline": "1.26"}, {"ID": "FBgn0039916", "EGF_Baseline": "0.08"}, {"ID": "FBgn0031649", "EGF_Baseline": "-0.21"}, {"ID": "FBgn0035147", "EGF_Baseline": "0.42"}, {"ID": "FBgn0032919", "EGF_Baseline": "2.22"}, {"ID": "FBgn0011763", "EGF_Baseline": "5.4"}, {"ID": "FBgn0033090", "EGF_Baseline": "0.66"}, {"ID": "FBgn0037083", "EGF_Baseline": "0.23"}, {"ID": "FBgn0051469", "EGF_Baseline": "0.41"}, {"ID": "FBgn0031661", "EGF_Baseline": "-0.81"}, {"ID": "FBgn0038918", "EGF_Baseline": "0.6"}, {"ID": "FBgn0037322", "EGF_Baseline": "0.07"}, {"ID": "FBgn0037514", "EGF_Baseline": "-0.2"}, {"ID": "FBgn0035335", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0000253", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0053958", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0029128", "EGF_Baseline": "0.69"}, {"ID": "FBgn0259142", "EGF_Baseline": "-1.53"}, {"ID": "FBgn0026702", "EGF_Baseline": "-1.99"}, {"ID": "FBgn0015808", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0032219", "EGF_Baseline": "1"}, {"ID": "FBgn0034087", "EGF_Baseline": "-2.04"}, {"ID": "FBgn0038810", "EGF_Baseline": "-0.1"}, {"ID": "FBgn0039163", "EGF_Baseline": "-1.51"}, {"ID": "FBgn0038356", "EGF_Baseline": "-0.72"}, {"ID": "FBgn0053179", "EGF_Baseline": "0.57"}, {"ID": "FBgn0026619", "EGF_Baseline": "0.87"}, {"ID": "FBgn0038550", "EGF_Baseline": "0.79"}, {"ID": "FBgn0034816", "EGF_Baseline": "0.96"}, {"ID": "FBgn0051272", "EGF_Baseline": "-0.43"}, {"ID": "FBgn0034838", "EGF_Baseline": "-1.47"}, {"ID": "FBgn0034618", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0015037", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0035483", "EGF_Baseline": "0.33"}, {"ID": "FBgn0033258", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0038704", "EGF_Baseline": "-1.68"}, {"ID": "FBgn0040348", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0031631", "EGF_Baseline": "0.92"}, {"ID": "FBgn0032482", "EGF_Baseline": "-1.59"}, {"ID": "FBgn0032968", "EGF_Baseline": "-0.49"}, {"ID": "FBgn0015376", "EGF_Baseline": "-1.67"}, {"ID": "FBgn0022709", "EGF_Baseline": "0.32"}, {"ID": "FBgn0051337", "EGF_Baseline": "-1.44"}, {"ID": "FBgn0031692", "EGF_Baseline": "-0.46"}, {"ID": "FBgn0035228", "EGF_Baseline": "-1.14"}, {"ID": "FBgn0035589", "EGF_Baseline": "-0.32"}, {"ID": "FBgn0036992", "EGF_Baseline": "0.95"}, {"ID": "FBgn0261294", "EGF_Baseline": "-1.24"}, {"ID": "FBgn0051709", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0039052", "EGF_Baseline": "-0.54"}, {"ID": "FBgn0037845", "EGF_Baseline": "0.49"}, {"ID": "FBgn0039904", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0030276", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0041248", "EGF_Baseline": "0.86"}, {"ID": "FBgn0040367", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0025286", "EGF_Baseline": "2.34"}, {"ID": "FBgn0033665", "EGF_Baseline": "-0.65"}, {"ID": "FBgn0034275", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0050039", "EGF_Baseline": "0.63"}, {"ID": "FBgn0086736", "EGF_Baseline": "1.04"}, {"ID": "FBgn0051779", "EGF_Baseline": "0.99"}, {"ID": "FBgn0031231", "EGF_Baseline": "-1.77"}, {"ID": "FBgn0030099", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0029913", "EGF_Baseline": "0.99"}, {"ID": "FBgn0038771", "EGF_Baseline": "-0.98"}, {"ID": "FBgn0003165", "EGF_Baseline": "-1.77"}, {"ID": "FBgn0260653", "EGF_Baseline": "1.63"}, {"ID": "FBgn0261593", "EGF_Baseline": "2.38"}, {"ID": "FBgn0030274", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0036689", "EGF_Baseline": "-0.26"}, {"ID": "FBgn0037715", "EGF_Baseline": "0.77"}, {"ID": "FBgn0011659", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0039476", "EGF_Baseline": "0.43"}, {"ID": "FBgn0027509", "EGF_Baseline": "-1.49"}, {"ID": "FBgn0032791", "EGF_Baseline": "0.92"}, {"ID": "FBgn0032489", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0014189", "EGF_Baseline": "6.29"}, {"ID": "FBgn0036233", "EGF_Baseline": "-0.28"}, {"ID": "FBgn0261060", "EGF_Baseline": "-1.66"}, {"ID": "FBgn0042693", "EGF_Baseline": "-0.35"}, {"ID": "FBgn0035260", "EGF_Baseline": "1.44"}, {"ID": "FBgn0000723", "EGF_Baseline": "0.8"}, {"ID": "FBgn0261566", "EGF_Baseline": "-1.7"}, {"ID": "FBgn0037529", "EGF_Baseline": "-1.52"}, {"ID": "FBgn0038476", "EGF_Baseline": "0.55"}, {"ID": "FBgn0038595", "EGF_Baseline": "-1"}, {"ID": "FBgn0032416", "EGF_Baseline": "0.09"}, {"ID": "FBgn0036380", "EGF_Baseline": "-0.34"}, {"ID": "FBgn0033960", "EGF_Baseline": "2.93"}, {"ID": "FBgn0024806", "EGF_Baseline": "0.55"}, {"ID": "FBgn0035034", "EGF_Baseline": "-0.14"}, {"ID": "FBgn0015558", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0032957", "EGF_Baseline": "-0.22"}, {"ID": "FBgn0003660", "EGF_Baseline": "0.53"}, {"ID": "FBgn0034067", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0004168", "EGF_Baseline": "-0.1"}, {"ID": "FBgn0032061", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0025633", "EGF_Baseline": "-0.77"}, {"ID": "FBgn0038722", "EGF_Baseline": "0.81"}, {"ID": "FBgn0038568", "EGF_Baseline": "-1.27"}, {"ID": "FBgn0033650", "EGF_Baseline": "1.06"}, {"ID": "FBgn0003002", "EGF_Baseline": "-0.5"}, {"ID": "FBgn0031461", "EGF_Baseline": "-1.22"}, {"ID": "FBgn0029798", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0013432", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0052499", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0024227", "EGF_Baseline": "0.91"}, {"ID": "FBgn0034253", "EGF_Baseline": "1.2"}, {"ID": "FBgn0051810", "EGF_Baseline": "-1.82"}, {"ID": "FBgn0027499", "EGF_Baseline": "-1.48"}, {"ID": "FBgn0030868", "EGF_Baseline": "-1.83"}, {"ID": "FBgn0032154", "EGF_Baseline": "0.42"}, {"ID": "FBgn0031377", "EGF_Baseline": "0.75"}, {"ID": "FBgn0037797", "EGF_Baseline": "-1.16"}, {"ID": "FBgn0032838", "EGF_Baseline": "-1.8"}, {"ID": "FBgn0031058", "EGF_Baseline": "0.15"}, {"ID": "FBgn0038243", "EGF_Baseline": "-1.11"}, {"ID": "FBgn0260945", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0013765", "EGF_Baseline": "-1.58"}, {"ID": "FBgn0040582", "EGF_Baseline": "-1.17"}, {"ID": "FBgn0038239", "EGF_Baseline": "-0.81"}, {"ID": "FBgn0039224", "EGF_Baseline": "0.99"}, {"ID": "FBgn0028573", "EGF_Baseline": "0.9"}, {"ID": "FBgn0034753", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0036053", "EGF_Baseline": "1.24"}, {"ID": "FBgn0037551", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0035666", "EGF_Baseline": "-1.38"}, {"ID": "FBgn0033402", "EGF_Baseline": "-0.81"}, {"ID": "FBgn0020238", "EGF_Baseline": "-1.31"}, {"ID": "FBgn0003892", "EGF_Baseline": "-0.43"}, {"ID": "FBgn0037632", "EGF_Baseline": "0.72"}, {"ID": "FBgn0052280", "EGF_Baseline": "0.96"}, {"ID": "FBgn0032465", "EGF_Baseline": "-0.28"}, {"ID": "FBgn0040602", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0039589", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0024734", "EGF_Baseline": "-0.52"}, {"ID": "FBgn0085388", "EGF_Baseline": "2.28"}, {"ID": "FBgn0043005", "EGF_Baseline": "-0.43"}, {"ID": "FBgn0000463", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0024285", "EGF_Baseline": "-1.28"}, {"ID": "FBgn0040699", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0052856", "EGF_Baseline": "0.93"}, {"ID": "FBgn0024920", "EGF_Baseline": "-2"}, {"ID": "FBgn0050361", "EGF_Baseline": "1.76"}, {"ID": "FBgn0035046", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0051562", "EGF_Baseline": "-0.32"}, {"ID": "FBgn0015522", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0020415", "EGF_Baseline": "1.38"}, {"ID": "FBgn0261872", "EGF_Baseline": "1.46"}, {"ID": "FBgn0021944", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0033348", "EGF_Baseline": "0.55"}, {"ID": "FBgn0259209", "EGF_Baseline": "-1.55"}, {"ID": "FBgn0030366", "EGF_Baseline": "-1.71"}, {"ID": "FBgn0032395", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0083961", "EGF_Baseline": "2.2"}, {"ID": "FBgn0050280", "EGF_Baseline": "0.93"}, {"ID": "FBgn0053291", "EGF_Baseline": "3.99"}, {"ID": "FBgn0039580", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0036063", "EGF_Baseline": "0.5"}, {"ID": "FBgn0051681", "EGF_Baseline": "-1.6"}, {"ID": "FBgn0002031", "EGF_Baseline": "0.14"}, {"ID": "FBgn0037834", "EGF_Baseline": "0.76"}, {"ID": "FBgn0260639", "EGF_Baseline": "-0.84"}, {"ID": "FBgn0261799", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0032198", "EGF_Baseline": "0.95"}, {"ID": "FBgn0000313", "EGF_Baseline": "0.1"}, {"ID": "FBgn0025640", "EGF_Baseline": "0.9"}, {"ID": "FBgn0085473", "EGF_Baseline": "0.36"}, {"ID": "FBgn0032287", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0003475", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0037742", "EGF_Baseline": "-1.28"}, {"ID": "FBgn0052284", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0259916", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0038377", "EGF_Baseline": "1.1"}, {"ID": "FBgn0025642", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0003268", "EGF_Baseline": "-1.16"}, {"ID": "FBgn0051848", "EGF_Baseline": "1.63"}, {"ID": "FBgn0039564", "EGF_Baseline": "1.82"}, {"ID": "FBgn0037812", "EGF_Baseline": "0.49"}, {"ID": "FBgn0040777", "EGF_Baseline": "0.49"}, {"ID": "FBgn0062449", "EGF_Baseline": "1.4"}, {"ID": "FBgn0050278", "EGF_Baseline": "-2.01"}, {"ID": "FBgn0026370", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0260861", "EGF_Baseline": "-0.67"}, {"ID": "FBgn0037671", "EGF_Baseline": "-0.3"}, {"ID": "FBgn0038127", "EGF_Baseline": "-1.47"}, {"ID": "FBgn0032345", "EGF_Baseline": "0.53"}, {"ID": "FBgn0030494", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0029521", "EGF_Baseline": "0.27"}, {"ID": "FBgn0034888", "EGF_Baseline": "0.32"}, {"ID": "FBgn0029885", "EGF_Baseline": "-0.72"}, {"ID": "FBgn0031837", "EGF_Baseline": "-1.42"}, {"ID": "FBgn0030465", "EGF_Baseline": "-1.17"}, {"ID": "FBgn0032280", "EGF_Baseline": "0.34"}, {"ID": "FBgn0054006", "EGF_Baseline": "-2.04"}, {"ID": "FBgn0038658", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0036335", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0036923", "EGF_Baseline": "0.33"}, {"ID": "FBgn0032843", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0036690", "EGF_Baseline": "0.8"}, {"ID": "FBgn0037698", "EGF_Baseline": "-1.55"}, {"ID": "FBgn0259735", "EGF_Baseline": "-1.72"}, {"ID": "FBgn0004656", "EGF_Baseline": "-1.7"}, {"ID": "FBgn0032858", "EGF_Baseline": "1.4"}, {"ID": "FBgn0036949", "EGF_Baseline": "-2.04"}, {"ID": "FBgn0052845", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0033901", "EGF_Baseline": "0.24"}, {"ID": "FBgn0040755", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0050440", "EGF_Baseline": "-1.67"}, {"ID": "FBgn0035860", "EGF_Baseline": "0.57"}, {"ID": "FBgn0031930", "EGF_Baseline": "0.9"}, {"ID": "FBgn0052344", "EGF_Baseline": "1.33"}, {"ID": "FBgn0010097", "EGF_Baseline": "0.51"}, {"ID": "FBgn0019661", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0036735", "EGF_Baseline": "-0.1"}, {"ID": "FBgn0033307", "EGF_Baseline": "1.44"}, {"ID": "FBgn0036459", "EGF_Baseline": "-0.11"}, {"ID": "FBgn0027790", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0085358", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0024740", "EGF_Baseline": "0.97"}, {"ID": "FBgn0037377", "EGF_Baseline": "-1"}, {"ID": "FBgn0000715", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0039869", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0038552", "EGF_Baseline": "0.79"}, {"ID": "FBgn0039175", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0032129", "EGF_Baseline": "-1.16"}, {"ID": "FBgn0023526", "EGF_Baseline": "-1.04"}, {"ID": "FBgn0259246", "EGF_Baseline": "1.66"}, {"ID": "FBgn0037074", "EGF_Baseline": "-0.15"}, {"ID": "FBgn0036450", "EGF_Baseline": "0.42"}, {"ID": "FBgn0003016", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0050430", "EGF_Baseline": "-2.7"}, {"ID": "FBgn0030086", "EGF_Baseline": "-0.5"}, {"ID": "FBgn0036881", "EGF_Baseline": "-2.03"}, {"ID": "FBgn0016701", "EGF_Baseline": "-1.82"}, {"ID": "FBgn0050265", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0034408", "EGF_Baseline": "0.34"}, {"ID": "FBgn0027547", "EGF_Baseline": "0.61"}, {"ID": "FBgn0029837", "EGF_Baseline": "0.65"}, {"ID": "FBgn0051041", "EGF_Baseline": "1.2"}, {"ID": "FBgn0027500", "EGF_Baseline": "-1.53"}, {"ID": "FBgn0029962", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0011270", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0034808", "EGF_Baseline": "1.88"}, {"ID": "FBgn0031904", "EGF_Baseline": "-0.81"}, {"ID": "FBgn0031043", "EGF_Baseline": "-1.55"}, {"ID": "FBgn0034361", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0028561", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0038607", "EGF_Baseline": "-2.17"}, {"ID": "FBgn0032025", "EGF_Baseline": "-1.71"}, {"ID": "FBgn0000564", "EGF_Baseline": "0.39"}, {"ID": "FBgn0031051", "EGF_Baseline": "-0.77"}, {"ID": "FBgn0033761", "EGF_Baseline": "1.36"}, {"ID": "FBgn0034282", "EGF_Baseline": "0.35"}, {"ID": "FBgn0261553", "EGF_Baseline": "1.36"}, {"ID": "FBgn0030936", "EGF_Baseline": "0.28"}, {"ID": "FBgn0035236", "EGF_Baseline": "0.8"}, {"ID": "FBgn0029608", "EGF_Baseline": "1.1"}, {"ID": "FBgn0031436", "EGF_Baseline": "1.42"}, {"ID": "FBgn0027101", "EGF_Baseline": "-1.15"}, {"ID": "FBgn0033716", "EGF_Baseline": "-0.33"}, {"ID": "FBgn0028844", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0001565", "EGF_Baseline": "1.37"}, {"ID": "FBgn0015600", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0032313", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0039030", "EGF_Baseline": "1.63"}, {"ID": "FBgn0005586", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0040294", "EGF_Baseline": "1.06"}, {"ID": "FBgn0261429", "EGF_Baseline": "0.55"}, {"ID": "FBgn0031626", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0032644", "EGF_Baseline": "-0.71"}, {"ID": "FBgn0030384", "EGF_Baseline": "0.97"}, {"ID": "FBgn0052170", "EGF_Baseline": "2.37"}, {"ID": "FBgn0034452", "EGF_Baseline": "0.65"}, {"ID": "FBgn0032774", "EGF_Baseline": "1.77"}, {"ID": "FBgn0030802", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0031496", "EGF_Baseline": "-1.36"}, {"ID": "FBgn0002938", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0041183", "EGF_Baseline": "1.43"}, {"ID": "FBgn0259923", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0002626", "EGF_Baseline": "3.88"}, {"ID": "FBgn0034962", "EGF_Baseline": "-1.1"}, {"ID": "FBgn0030093", "EGF_Baseline": "1.26"}, {"ID": "FBgn0017566", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0029730", "EGF_Baseline": "1.06"}, {"ID": "FBgn0003598", "EGF_Baseline": "-1.04"}, {"ID": "FBgn0052082", "EGF_Baseline": "0.7"}, {"ID": "FBgn0030391", "EGF_Baseline": "1.31"}, {"ID": "FBgn0032891", "EGF_Baseline": "0.16"}, {"ID": "FBgn0036767", "EGF_Baseline": "-0.43"}, {"ID": "FBgn0031381", "EGF_Baseline": "-0.07"}, {"ID": "FBgn0010395", "EGF_Baseline": "1.09"}, {"ID": "FBgn0004003", "EGF_Baseline": "0.43"}, {"ID": "FBgn0038536", "EGF_Baseline": "1.04"}, {"ID": "FBgn0032665", "EGF_Baseline": "0.99"}, {"ID": "FBgn0028534", "EGF_Baseline": "1.45"}, {"ID": "FBgn0085407", "EGF_Baseline": "1.27"}, {"ID": "FBgn0039594", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0038302", "EGF_Baseline": "-0.3"}, {"ID": "FBgn0001248", "EGF_Baseline": "-1.39"}, {"ID": "FBgn0045035", "EGF_Baseline": "1.66"}, {"ID": "FBgn0033766", "EGF_Baseline": "-0.18"}, {"ID": "FBgn0085371", "EGF_Baseline": "1.24"}, {"ID": "FBgn0002926", "EGF_Baseline": "1.26"}, {"ID": "FBgn0038003", "EGF_Baseline": "-0.43"}, {"ID": "FBgn0027494", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0030596", "EGF_Baseline": "2.18"}, {"ID": "FBgn0039003", "EGF_Baseline": "0.28"}, {"ID": "FBgn0033005", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0033754", "EGF_Baseline": "1.2"}, {"ID": "FBgn0038146", "EGF_Baseline": "4.22"}, {"ID": "FBgn0036018", "EGF_Baseline": "-0.11"}, {"ID": "FBgn0031741", "EGF_Baseline": "-1.6"}, {"ID": "FBgn0004594", "EGF_Baseline": "-1.23"}, {"ID": "FBgn0051861", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0033097", "EGF_Baseline": "0.59"}, {"ID": "FBgn0086898", "EGF_Baseline": "-0.27"}, {"ID": "FBgn0004389", "EGF_Baseline": "-0.56"}, {"ID": "FBgn0051361", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0051029", "EGF_Baseline": "1.1"}, {"ID": "FBgn0259242", "EGF_Baseline": "1.32"}, {"ID": "FBgn0086908", "EGF_Baseline": "-2.89"}, {"ID": "FBgn0260456", "EGF_Baseline": "0.76"}, {"ID": "FBgn0039373", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0002431", "EGF_Baseline": "-1.74"}, {"ID": "FBgn0030725", "EGF_Baseline": "0.89"}, {"ID": "FBgn0037530", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0019972", "EGF_Baseline": "-0.42"}, {"ID": "FBgn0259100", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0036827", "EGF_Baseline": "-1.66"}, {"ID": "FBgn0039403", "EGF_Baseline": "0.66"}, {"ID": "FBgn0000181", "EGF_Baseline": "0.7"}, {"ID": "FBgn0033657", "EGF_Baseline": "1.45"}, {"ID": "FBgn0053505", "EGF_Baseline": "0.32"}, {"ID": "FBgn0021796", "EGF_Baseline": "1.26"}, {"ID": "FBgn0030484", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0029942", "EGF_Baseline": "0.33"}, {"ID": "FBgn0031943", "EGF_Baseline": "-1.95"}, {"ID": "FBgn0026056", "EGF_Baseline": "-0.07"}, {"ID": "FBgn0003979", "EGF_Baseline": "0.5"}, {"ID": "FBgn0036176", "EGF_Baseline": "-0.07"}, {"ID": "FBgn0033789", "EGF_Baseline": "-0.5"}, {"ID": "FBgn0033280", "EGF_Baseline": "-1.24"}, {"ID": "FBgn0030520", "EGF_Baseline": "-1.2"}, {"ID": "FBgn0038014", "EGF_Baseline": "-1.85"}, {"ID": "FBgn0033145", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0043841", "EGF_Baseline": "-1.04"}, {"ID": "FBgn0036013", "EGF_Baseline": "-0.81"}, {"ID": "FBgn0029737", "EGF_Baseline": "-1.83"}, {"ID": "FBgn0024236", "EGF_Baseline": "-1.22"}, {"ID": "FBgn0025835", "EGF_Baseline": "1.83"}, {"ID": "FBgn0032945", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0037646", "EGF_Baseline": "-0.63"}, {"ID": "FBgn0039251", "EGF_Baseline": "-1.74"}, {"ID": "FBgn0030103", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0026431", "EGF_Baseline": "0.32"}, {"ID": "FBgn0032370", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0028879", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0032660", "EGF_Baseline": "0.6"}, {"ID": "FBgn0033982", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0040211", "EGF_Baseline": "-0.77"}, {"ID": "FBgn0034289", "EGF_Baseline": "-1.36"}, {"ID": "FBgn0025613", "EGF_Baseline": "-0.13"}, {"ID": "FBgn0037061", "EGF_Baseline": "0.6"}, {"ID": "FBgn0030242", "EGF_Baseline": "-0.29"}, {"ID": "FBgn0003884", "EGF_Baseline": "3.84"}, {"ID": "FBgn0035762", "EGF_Baseline": "-1.21"}, {"ID": "FBgn0038893", "EGF_Baseline": "-1.81"}, {"ID": "FBgn0003295", "EGF_Baseline": "-0.33"}, {"ID": "FBgn0036487", "EGF_Baseline": "-0.27"}, {"ID": "FBgn0085383", "EGF_Baseline": "1.03"}, {"ID": "FBgn0014024", "EGF_Baseline": "-1.65"}, {"ID": "FBgn0038649", "EGF_Baseline": "1.42"}, {"ID": "FBgn0031723", "EGF_Baseline": "-0.3"}, {"ID": "FBgn0035754", "EGF_Baseline": "1.15"}, {"ID": "FBgn0032294", "EGF_Baseline": "-0.27"}, {"ID": "FBgn0036248", "EGF_Baseline": "0.68"}, {"ID": "FBgn0052473", "EGF_Baseline": "1.41"}, {"ID": "FBgn0031676", "EGF_Baseline": "0.75"}, {"ID": "FBgn0035432", "EGF_Baseline": "-2.01"}, {"ID": "FBgn0031601", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0036353", "EGF_Baseline": "1.04"}, {"ID": "FBgn0058298", "EGF_Baseline": "-1.6"}, {"ID": "FBgn0036749", "EGF_Baseline": "-0.18"}, {"ID": "FBgn0051418", "EGF_Baseline": "0.7"}, {"ID": "FBgn0037413", "EGF_Baseline": "0.5"}, {"ID": "FBgn0036886", "EGF_Baseline": "-0.26"}, {"ID": "FBgn0031302", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0027609", "EGF_Baseline": "-1.14"}, {"ID": "FBgn0010551", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0051269", "EGF_Baseline": "0.69"}, {"ID": "FBgn0027560", "EGF_Baseline": "-1.55"}, {"ID": "FBgn0035461", "EGF_Baseline": "-1.43"}, {"ID": "FBgn0031034", "EGF_Baseline": "0.52"}, {"ID": "FBgn0033074", "EGF_Baseline": "1.23"}, {"ID": "FBgn0030013", "EGF_Baseline": "-1.68"}, {"ID": "FBgn0004227", "EGF_Baseline": "1.77"}, {"ID": "FBgn0030508", "EGF_Baseline": "-0.39"}, {"ID": "FBgn0038492", "EGF_Baseline": "0.1"}, {"ID": "FBgn0037900", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0031882", "EGF_Baseline": "0.37"}, {"ID": "FBgn0050109", "EGF_Baseline": "1.22"}, {"ID": "FBgn0000120", "EGF_Baseline": "0.6"}, {"ID": "FBgn0034553", "EGF_Baseline": "2.52"}, {"ID": "FBgn0051031", "EGF_Baseline": "1.69"}, {"ID": "FBgn0011230", "EGF_Baseline": "-0.84"}, {"ID": "FBgn0039773", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0034913", "EGF_Baseline": "1.03"}, {"ID": "FBgn0034368", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0034850", "EGF_Baseline": "-1.1"}, {"ID": "FBgn0040670", "EGF_Baseline": "0.73"}, {"ID": "FBgn0003374", "EGF_Baseline": "-0.67"}, {"ID": "FBgn0035563", "EGF_Baseline": "1.97"}, {"ID": "FBgn0036040", "EGF_Baseline": "-1.36"}, {"ID": "FBgn0051139", "EGF_Baseline": "0.21"}, {"ID": "FBgn0036482", "EGF_Baseline": "1.22"}, {"ID": "FBgn0039415", "EGF_Baseline": "0.47"}, {"ID": "FBgn0035211", "EGF_Baseline": "-1.34"}, {"ID": "FBgn0259823", "EGF_Baseline": "-0.08"}, {"ID": "FBgn0034159", "EGF_Baseline": "-1.49"}, {"ID": "FBgn0015790", "EGF_Baseline": "0.76"}, {"ID": "FBgn0035511", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0033926", "EGF_Baseline": "-1.84"}, {"ID": "FBgn0033862", "EGF_Baseline": "0.87"}, {"ID": "FBgn0033574", "EGF_Baseline": "0.38"}, {"ID": "FBgn0030954", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0035914", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0036962", "EGF_Baseline": "-1.7"}, {"ID": "FBgn0031181", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0039681", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0051526", "EGF_Baseline": "1.22"}, {"ID": "FBgn0038926", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0038047", "EGF_Baseline": "0.59"}, {"ID": "FBgn0039637", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0030552", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0028906", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0037466", "EGF_Baseline": "-1.58"}, {"ID": "FBgn0050098", "EGF_Baseline": "-1.63"}, {"ID": "FBgn0050502", "EGF_Baseline": "1.63"}, {"ID": "FBgn0032546", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0051792", "EGF_Baseline": "-1.23"}, {"ID": "FBgn0004915", "EGF_Baseline": "0.89"}, {"ID": "FBgn0034129", "EGF_Baseline": "0.36"}, {"ID": "FBgn0035189", "EGF_Baseline": "0.65"}, {"ID": "FBgn0039009", "EGF_Baseline": "-1.73"}, {"ID": "FBgn0051642", "EGF_Baseline": "-1.63"}, {"ID": "FBgn0050148", "EGF_Baseline": "1.7"}, {"ID": "FBgn0036709", "EGF_Baseline": "-0.54"}, {"ID": "FBgn0243513", "EGF_Baseline": "-1.72"}, {"ID": "FBgn0051528", "EGF_Baseline": "0.97"}, {"ID": "FBgn0038198", "EGF_Baseline": "0.18"}, {"ID": "FBgn0085292", "EGF_Baseline": "-0.3"}, {"ID": "FBgn0086130", "EGF_Baseline": "-1.5"}, {"ID": "FBgn0027583", "EGF_Baseline": "-1.11"}, {"ID": "FBgn0086704", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0031251", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0029648", "EGF_Baseline": "1.32"}, {"ID": "FBgn0037298", "EGF_Baseline": "-1.74"}, {"ID": "FBgn0010621", "EGF_Baseline": "-1.25"}, {"ID": "FBgn0011286", "EGF_Baseline": "0.5"}, {"ID": "FBgn0041094", "EGF_Baseline": "1.19"}, {"ID": "FBgn0037439", "EGF_Baseline": "1.34"}, {"ID": "FBgn0030653", "EGF_Baseline": "1.57"}, {"ID": "FBgn0086902", "EGF_Baseline": "-1.5"}, {"ID": "FBgn0053458", "EGF_Baseline": "0.7"}, {"ID": "FBgn0026083", "EGF_Baseline": "-0.21"}, {"ID": "FBgn0030010", "EGF_Baseline": "-1.61"}, {"ID": "FBgn0039152", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0028952", "EGF_Baseline": "-1.22"}, {"ID": "FBgn0038647", "EGF_Baseline": "-0.71"}, {"ID": "FBgn0039343", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0031285", "EGF_Baseline": "0.32"}, {"ID": "FBgn0023511", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0030611", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0039538", "EGF_Baseline": "0.66"}, {"ID": "FBgn0039555", "EGF_Baseline": "-0.33"}, {"ID": "FBgn0029689", "EGF_Baseline": "-0.22"}, {"ID": "FBgn0035413", "EGF_Baseline": "0.89"}, {"ID": "FBgn0039277", "EGF_Baseline": "-0.34"}, {"ID": "FBgn0037915", "EGF_Baseline": "-0.2"}, {"ID": "FBgn0030878", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0053555", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0032925", "EGF_Baseline": "0.36"}, {"ID": "FBgn0036918", "EGF_Baseline": "0.59"}, {"ID": "FBgn0261286", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0027334", "EGF_Baseline": "0.34"}, {"ID": "FBgn0050163", "EGF_Baseline": "-0.22"}, {"ID": "FBgn0040666", "EGF_Baseline": "1.25"}, {"ID": "FBgn0031549", "EGF_Baseline": "5.85"}, {"ID": "FBgn0261722", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0035076", "EGF_Baseline": "0.61"}, {"ID": "FBgn0033648", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0039713", "EGF_Baseline": "5.62"}, {"ID": "FBgn0086913", "EGF_Baseline": "1.59"}, {"ID": "FBgn0036814", "EGF_Baseline": "1.24"}, {"ID": "FBgn0051974", "EGF_Baseline": "1.78"}, {"ID": "FBgn0033527", "EGF_Baseline": "-0.12"}, {"ID": "FBgn0004624", "EGF_Baseline": "0.18"}, {"ID": "FBgn0011272", "EGF_Baseline": "5.71"}, {"ID": "FBgn0052704", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0040364", "EGF_Baseline": "1.23"}, {"ID": "FBgn0031762", "EGF_Baseline": "-2.06"}, {"ID": "FBgn0036997", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0031116", "EGF_Baseline": "-1.22"}, {"ID": "FBgn0038258", "EGF_Baseline": "-1.67"}, {"ID": "FBgn0001257", "EGF_Baseline": "-0.31"}, {"ID": "FBgn0038675", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0034201", "EGF_Baseline": "-1.16"}, {"ID": "FBgn0261801", "EGF_Baseline": "-0.26"}, {"ID": "FBgn0085378", "EGF_Baseline": "-2.09"}, {"ID": "FBgn0036116", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0261456", "EGF_Baseline": "-1.77"}, {"ID": "FBgn0259791", "EGF_Baseline": "0.79"}, {"ID": "FBgn0031730", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0000640", "EGF_Baseline": "-0.31"}, {"ID": "FBgn0039059", "EGF_Baseline": "1.18"}, {"ID": "FBgn0027865", "EGF_Baseline": "-0.12"}, {"ID": "FBgn0050413", "EGF_Baseline": "-1.63"}, {"ID": "FBgn0032336", "EGF_Baseline": "-1.67"}, {"ID": "FBgn0037757", "EGF_Baseline": "-0.67"}, {"ID": "FBgn0261625", "EGF_Baseline": "0.58"}, {"ID": "FBgn0022984", "EGF_Baseline": "-0.4"}, {"ID": "FBgn0031873", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0032387", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0051151", "EGF_Baseline": "1.58"}, {"ID": "FBgn0015565", "EGF_Baseline": "-2.52"}, {"ID": "FBgn0028374", "EGF_Baseline": "0.89"}, {"ID": "FBgn0002562", "EGF_Baseline": "0.42"}, {"ID": "FBgn0027553", "EGF_Baseline": "0.46"}, {"ID": "FBgn0259715", "EGF_Baseline": "0.97"}, {"ID": "FBgn0029603", "EGF_Baseline": "1.24"}, {"ID": "FBgn0030694", "EGF_Baseline": "-0.67"}, {"ID": "FBgn0020640", "EGF_Baseline": "0.35"}, {"ID": "FBgn0039801", "EGF_Baseline": "-0.07"}, {"ID": "FBgn0035891", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0011455", "EGF_Baseline": "0.23"}, {"ID": "FBgn0086610", "EGF_Baseline": "1.11"}, {"ID": "FBgn0028850", "EGF_Baseline": "-0.22"}, {"ID": "FBgn0015816", "EGF_Baseline": "1.25"}, {"ID": "FBgn0032871", "EGF_Baseline": "0.72"}, {"ID": "FBgn0010105", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0036321", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0034705", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0086608", "EGF_Baseline": "0.74"}, {"ID": "FBgn0036406", "EGF_Baseline": "-0.91"}, {"ID": "FBgn0029658", "EGF_Baseline": "1.57"}, {"ID": "FBgn0039225", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0025355", "EGF_Baseline": "-1.39"}, {"ID": "FBgn0027259", "EGF_Baseline": "-0.46"}, {"ID": "FBgn0036287", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0035574", "EGF_Baseline": "0.89"}, {"ID": "FBgn0037611", "EGF_Baseline": "-0.39"}, {"ID": "FBgn0023416", "EGF_Baseline": "-1.27"}, {"ID": "FBgn0024833", "EGF_Baseline": "-1.15"}, {"ID": "FBgn0008651", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0033873", "EGF_Baseline": "1.05"}, {"ID": "FBgn0053514", "EGF_Baseline": "-1.65"}, {"ID": "FBgn0022700", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0040958", "EGF_Baseline": "0.81"}, {"ID": "FBgn0039909", "EGF_Baseline": "-1.53"}, {"ID": "FBgn0034210", "EGF_Baseline": "-0.98"}, {"ID": "FBgn0261396", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0027525", "EGF_Baseline": "1.24"}, {"ID": "FBgn0039087", "EGF_Baseline": "-0.98"}, {"ID": "FBgn0034661", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0033056", "EGF_Baseline": "0.78"}, {"ID": "FBgn0005648", "EGF_Baseline": "1.92"}, {"ID": "FBgn0035204", "EGF_Baseline": "-1.52"}, {"ID": "FBgn0259099", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0036104", "EGF_Baseline": "0.5"}, {"ID": "FBgn0051323", "EGF_Baseline": "-0.54"}, {"ID": "FBgn0037131", "EGF_Baseline": "-1.53"}, {"ID": "FBgn0063499", "EGF_Baseline": "1.83"}, {"ID": "FBgn0031513", "EGF_Baseline": "-1.71"}, {"ID": "FBgn0031357", "EGF_Baseline": "0.34"}, {"ID": "FBgn0032493", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0039080", "EGF_Baseline": "0.78"}, {"ID": "FBgn0038256", "EGF_Baseline": "0.78"}, {"ID": "FBgn0004432", "EGF_Baseline": "0.25"}, {"ID": "FBgn0250816", "EGF_Baseline": "1.01"}, {"ID": "FBgn0259222", "EGF_Baseline": "1.05"}, {"ID": "FBgn0041097", "EGF_Baseline": "-0.71"}, {"ID": "FBgn0038852", "EGF_Baseline": "1.72"}, {"ID": "FBgn0023517", "EGF_Baseline": "-1.28"}, {"ID": "FBgn0033264", "EGF_Baseline": "0.5"}, {"ID": "FBgn0000644", "EGF_Baseline": "1.31"}, {"ID": "FBgn0029155", "EGF_Baseline": "-0.12"}, {"ID": "FBgn0038167", "EGF_Baseline": "1.72"}, {"ID": "FBgn0040466", "EGF_Baseline": "0.67"}, {"ID": "FBgn0038354", "EGF_Baseline": "-2.69"}, {"ID": "FBgn0015924", "EGF_Baseline": "0.9"}, {"ID": "FBgn0053300", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0038269", "EGF_Baseline": "2.22"}, {"ID": "FBgn0036225", "EGF_Baseline": "0.62"}, {"ID": "FBgn0034899", "EGF_Baseline": "1.74"}, {"ID": "FBgn0038889", "EGF_Baseline": "0.73"}, {"ID": "FBgn0003559", "EGF_Baseline": "1.77"}, {"ID": "FBgn0035270", "EGF_Baseline": "-1.4"}, {"ID": "FBgn0035151", "EGF_Baseline": "0.74"}, {"ID": "FBgn0039844", "EGF_Baseline": "0.08"}, {"ID": "FBgn0023521", "EGF_Baseline": "-1.27"}, {"ID": "FBgn0038266", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0033508", "EGF_Baseline": "1.31"}, {"ID": "FBgn0045866", "EGF_Baseline": "0.76"}, {"ID": "FBgn0038642", "EGF_Baseline": "-2.39"}, {"ID": "FBgn0038567", "EGF_Baseline": "-1.14"}, {"ID": "FBgn0033244", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0051872", "EGF_Baseline": "0.79"}, {"ID": "FBgn0053792", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0038219", "EGF_Baseline": "-0.91"}, {"ID": "FBgn0000212", "EGF_Baseline": "0.98"}, {"ID": "FBgn0038805", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0032151", "EGF_Baseline": "-1.52"}, {"ID": "FBgn0260933", "EGF_Baseline": "0.11"}, {"ID": "FBgn0050287", "EGF_Baseline": "1.19"}, {"ID": "FBgn0003326", "EGF_Baseline": "0.97"}, {"ID": "FBgn0031757", "EGF_Baseline": "0.47"}, {"ID": "FBgn0032066", "EGF_Baseline": "-1.6"}, {"ID": "FBgn0030050", "EGF_Baseline": "0.26"}, {"ID": "FBgn0033153", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0030007", "EGF_Baseline": "-1.55"}, {"ID": "FBgn0010611", "EGF_Baseline": "1.26"}, {"ID": "FBgn0261067", "EGF_Baseline": "0.48"}, {"ID": "FBgn0035393", "EGF_Baseline": "-2.11"}, {"ID": "FBgn0034354", "EGF_Baseline": "0.65"}, {"ID": "FBgn0034924", "EGF_Baseline": "1.09"}, {"ID": "FBgn0023197", "EGF_Baseline": "-0.56"}, {"ID": "FBgn0036781", "EGF_Baseline": "-0.71"}, {"ID": "FBgn0029791", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0001297", "EGF_Baseline": "1.18"}, {"ID": "FBgn0030338", "EGF_Baseline": "-0.56"}, {"ID": "FBgn0029724", "EGF_Baseline": "0.28"}, {"ID": "FBgn0027621", "EGF_Baseline": "0.76"}, {"ID": "FBgn0037786", "EGF_Baseline": "0.65"}, {"ID": "FBgn0036202", "EGF_Baseline": "0.49"}, {"ID": "FBgn0032513", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0024364", "EGF_Baseline": "-0.29"}, {"ID": "FBgn0036072", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0035410", "EGF_Baseline": "0.5"}, {"ID": "FBgn0040087", "EGF_Baseline": "0.14"}, {"ID": "FBgn0040553", "EGF_Baseline": "-1"}, {"ID": "FBgn0004855", "EGF_Baseline": "2.12"}, {"ID": "FBgn0038131", "EGF_Baseline": "-1.39"}, {"ID": "FBgn0034128", "EGF_Baseline": "0.78"}, {"ID": "FBgn0031638", "EGF_Baseline": "0.77"}, {"ID": "FBgn0032943", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0085313", "EGF_Baseline": "-1.49"}, {"ID": "FBgn0032721", "EGF_Baseline": "-1.35"}, {"ID": "FBgn0261858", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0003206", "EGF_Baseline": "2.13"}, {"ID": "FBgn0035679", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0038547", "EGF_Baseline": "-2.58"}, {"ID": "FBgn0038467", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0034173", "EGF_Baseline": "0.48"}, {"ID": "FBgn0033366", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0004649", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0037561", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0052376", "EGF_Baseline": "0.84"}, {"ID": "FBgn0038206", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0011569", "EGF_Baseline": "1.4"}, {"ID": "FBgn0033726", "EGF_Baseline": "-0.32"}, {"ID": "FBgn0037975", "EGF_Baseline": "-0.24"}, {"ID": "FBgn0052263", "EGF_Baseline": "-1.43"}, {"ID": "FBgn0030859", "EGF_Baseline": "-1.28"}, {"ID": "FBgn0031392", "EGF_Baseline": "-1.51"}, {"ID": "FBgn0041625", "EGF_Baseline": "-1.93"}, {"ID": "FBgn0037008", "EGF_Baseline": "0.49"}, {"ID": "FBgn0034511", "EGF_Baseline": "0.69"}, {"ID": "FBgn0033330", "EGF_Baseline": "0.53"}, {"ID": "FBgn0260442", "EGF_Baseline": "0.71"}, {"ID": "FBgn0032223", "EGF_Baseline": "0.48"}, {"ID": "FBgn0002906", "EGF_Baseline": "-1.96"}, {"ID": "FBgn0259192", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0036266", "EGF_Baseline": "-0.56"}, {"ID": "FBgn0010263", "EGF_Baseline": "-2.22"}, {"ID": "FBgn0085234", "EGF_Baseline": "-2.47"}, {"ID": "FBgn0032971", "EGF_Baseline": "-1.42"}, {"ID": "FBgn0035476", "EGF_Baseline": "-0.84"}, {"ID": "FBgn0038450", "EGF_Baseline": "0.5"}, {"ID": "FBgn0050118", "EGF_Baseline": "1.38"}, {"ID": "FBgn0032523", "EGF_Baseline": "-1.61"}, {"ID": "FBgn0038783", "EGF_Baseline": "-1.42"}, {"ID": "FBgn0000416", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0036078", "EGF_Baseline": "-1.35"}, {"ID": "FBgn0039718", "EGF_Baseline": "1.5"}, {"ID": "FBgn0032698", "EGF_Baseline": "-0.5"}, {"ID": "FBgn0044812", "EGF_Baseline": "-1.28"}, {"ID": "FBgn0036187", "EGF_Baseline": "-0.72"}, {"ID": "FBgn0028406", "EGF_Baseline": "1.32"}, {"ID": "FBgn0031309", "EGF_Baseline": "-1.43"}, {"ID": "FBgn0052834", "EGF_Baseline": "0.45"}, {"ID": "FBgn0050172", "EGF_Baseline": "1.1"}, {"ID": "FBgn0031878", "EGF_Baseline": "0.39"}, {"ID": "FBgn0004868", "EGF_Baseline": "0.91"}, {"ID": "FBgn0034724", "EGF_Baseline": "-1.46"}, {"ID": "FBgn0034196", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0036363", "EGF_Baseline": "0.51"}, {"ID": "FBgn0004861", "EGF_Baseline": "0.7"}, {"ID": "FBgn0038115", "EGF_Baseline": "0.76"}, {"ID": "FBgn0039313", "EGF_Baseline": "-1.81"}, {"ID": "FBgn0086689", "EGF_Baseline": "-2"}, {"ID": "FBgn0063492", "EGF_Baseline": "1.09"}, {"ID": "FBgn0030266", "EGF_Baseline": "0.58"}, {"ID": "FBgn0037265", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0037101", "EGF_Baseline": "-1.67"}, {"ID": "FBgn0040323", "EGF_Baseline": "-1.71"}, {"ID": "FBgn0052260", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0003302", "EGF_Baseline": "0.37"}, {"ID": "FBgn0052829", "EGF_Baseline": "4.75"}, {"ID": "FBgn0038598", "EGF_Baseline": "-2.29"}, {"ID": "FBgn0033814", "EGF_Baseline": "-1.91"}, {"ID": "FBgn0040391", "EGF_Baseline": "-0.39"}, {"ID": "FBgn0030162", "EGF_Baseline": "1.33"}, {"ID": "FBgn0011704", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0023549", "EGF_Baseline": "0.53"}, {"ID": "FBgn0034879", "EGF_Baseline": "-0.52"}, {"ID": "FBgn0030257", "EGF_Baseline": "0.84"}, {"ID": "FBgn0033463", "EGF_Baseline": "-1"}, {"ID": "FBgn0031688", "EGF_Baseline": "0.28"}, {"ID": "FBgn0003942", "EGF_Baseline": "3.13"}, {"ID": "FBgn0031659", "EGF_Baseline": "1.36"}, {"ID": "FBgn0031995", "EGF_Baseline": "1.04"}, {"ID": "FBgn0032753", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0029825", "EGF_Baseline": "0.73"}, {"ID": "FBgn0032888", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0052590", "EGF_Baseline": "1.19"}, {"ID": "FBgn0016696", "EGF_Baseline": "2.61"}, {"ID": "FBgn0036716", "EGF_Baseline": "0.5"}, {"ID": "FBgn0031860", "EGF_Baseline": "0.67"}, {"ID": "FBgn0036579", "EGF_Baseline": "-1.52"}, {"ID": "FBgn0013303", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0037856", "EGF_Baseline": "1.12"}, {"ID": "FBgn0039296", "EGF_Baseline": "0.13"}, {"ID": "FBgn0030643", "EGF_Baseline": "0.19"}, {"ID": "FBgn0038873", "EGF_Baseline": "0.25"}, {"ID": "FBgn0032729", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0036154", "EGF_Baseline": "0.31"}, {"ID": "FBgn0033170", "EGF_Baseline": "1.25"}, {"ID": "FBgn0053642", "EGF_Baseline": "0.46"}, {"ID": "FBgn0083978", "EGF_Baseline": "0.9"}, {"ID": "FBgn0026176", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0031020", "EGF_Baseline": "-1.39"}, {"ID": "FBgn0039115", "EGF_Baseline": "1.11"}, {"ID": "FBgn0026080", "EGF_Baseline": "1.07"}, {"ID": "FBgn0011244", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0021738", "EGF_Baseline": "-1.49"}, {"ID": "FBgn0051230", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0022361", "EGF_Baseline": "0.19"}, {"ID": "FBgn0034726", "EGF_Baseline": "-1.97"}, {"ID": "FBgn0032126", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0045478", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0010422", "EGF_Baseline": "-1.56"}, {"ID": "FBgn0029114", "EGF_Baseline": "0.98"}, {"ID": "FBgn0002638", "EGF_Baseline": "0.43"}, {"ID": "FBgn0028935", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0033957", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0015774", "EGF_Baseline": "-1.59"}, {"ID": "FBgn0040075", "EGF_Baseline": "-2.17"}, {"ID": "FBgn0033395", "EGF_Baseline": "-1.15"}, {"ID": "FBgn0030195", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0034721", "EGF_Baseline": "-1.14"}, {"ID": "FBgn0036204", "EGF_Baseline": "-1.04"}, {"ID": "FBgn0000533", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0039239", "EGF_Baseline": "-1.79"}, {"ID": "FBgn0038348", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0035849", "EGF_Baseline": "0.88"}, {"ID": "FBgn0036783", "EGF_Baseline": "0.46"}, {"ID": "FBgn0040318", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0260721", "EGF_Baseline": "0.22"}, {"ID": "FBgn0260746", "EGF_Baseline": "0.52"}, {"ID": "FBgn0259676", "EGF_Baseline": "-0.44"}, {"ID": "FBgn0041205", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0035356", "EGF_Baseline": "-0.23"}, {"ID": "FBgn0028884", "EGF_Baseline": "-1.17"}, {"ID": "FBgn0026319", "EGF_Baseline": "-1.97"}, {"ID": "FBgn0025790", "EGF_Baseline": "1.63"}, {"ID": "FBgn0250757", "EGF_Baseline": "-1.04"}, {"ID": "FBgn0038402", "EGF_Baseline": "0.27"}, {"ID": "FBgn0040299", "EGF_Baseline": "1.18"}, {"ID": "FBgn0259149", "EGF_Baseline": "-1.33"}, {"ID": "FBgn0003716", "EGF_Baseline": "-1.11"}, {"ID": "FBgn0086442", "EGF_Baseline": "-0.46"}, {"ID": "FBgn0031613", "EGF_Baseline": "-0.22"}, {"ID": "FBgn0004057", "EGF_Baseline": "0.58"}, {"ID": "FBgn0003346", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0065109", "EGF_Baseline": "0.29"}, {"ID": "FBgn0261058", "EGF_Baseline": "0.61"}, {"ID": "FBgn0043533", "EGF_Baseline": "0.39"}, {"ID": "FBgn0039748", "EGF_Baseline": "2.14"}, {"ID": "FBgn0003447", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0030836", "EGF_Baseline": "0.59"}, {"ID": "FBgn0031479", "EGF_Baseline": "-0.5"}, {"ID": "FBgn0011828", "EGF_Baseline": "0.78"}, {"ID": "FBgn0038505", "EGF_Baseline": "0.42"}, {"ID": "FBgn0037995", "EGF_Baseline": "0.95"}, {"ID": "FBgn0027513", "EGF_Baseline": "1.66"}, {"ID": "FBgn0036839", "EGF_Baseline": "-2"}, {"ID": "FBgn0015831", "EGF_Baseline": "1.38"}, {"ID": "FBgn0026373", "EGF_Baseline": "2.14"}, {"ID": "FBgn0035922", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0034663", "EGF_Baseline": "0.5"}, {"ID": "FBgn0037749", "EGF_Baseline": "-0.1"}, {"ID": "FBgn0035642", "EGF_Baseline": "0.64"}, {"ID": "FBgn0086691", "EGF_Baseline": "0.23"}, {"ID": "FBgn0069913", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0051759", "EGF_Baseline": "1.42"}, {"ID": "FBgn0250842", "EGF_Baseline": "0.97"}, {"ID": "FBgn0040493", "EGF_Baseline": "-1.73"}, {"ID": "FBgn0036571", "EGF_Baseline": "0.94"}, {"ID": "FBgn0033131", "EGF_Baseline": "-1.33"}, {"ID": "FBgn0023531", "EGF_Baseline": "3.28"}, {"ID": "FBgn0085442", "EGF_Baseline": "1.87"}, {"ID": "FBgn0051634", "EGF_Baseline": "-1.47"}, {"ID": "FBgn0085428", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0051661", "EGF_Baseline": "0.29"}, {"ID": "FBgn0036214", "EGF_Baseline": "0.38"}, {"ID": "FBgn0039270", "EGF_Baseline": "0.3"}, {"ID": "FBgn0034152", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0002022", "EGF_Baseline": "-1.56"}, {"ID": "FBgn0032627", "EGF_Baseline": "-1.23"}, {"ID": "FBgn0051949", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0011290", "EGF_Baseline": "-1.38"}, {"ID": "FBgn0025625", "EGF_Baseline": "1.46"}, {"ID": "FBgn0051431", "EGF_Baseline": "1.03"}, {"ID": "FBgn0050357", "EGF_Baseline": "2.52"}, {"ID": "FBgn0053483", "EGF_Baseline": "-0.35"}, {"ID": "FBgn0250908", "EGF_Baseline": "-0.49"}, {"ID": "FBgn0054026", "EGF_Baseline": "-1.16"}, {"ID": "FBgn0041232", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0026394", "EGF_Baseline": "-1.76"}, {"ID": "FBgn0030984", "EGF_Baseline": "-0.16"}, {"ID": "FBgn0038672", "EGF_Baseline": "-1.21"}, {"ID": "FBgn0030306", "EGF_Baseline": "-1.21"}, {"ID": "FBgn0034441", "EGF_Baseline": "-0.63"}, {"ID": "FBgn0038602", "EGF_Baseline": "-1.37"}, {"ID": "FBgn0050340", "EGF_Baseline": "1.29"}, {"ID": "FBgn0027364", "EGF_Baseline": "-0.15"}, {"ID": "FBgn0014007", "EGF_Baseline": "-1.47"}, {"ID": "FBgn0030421", "EGF_Baseline": "-1.4"}, {"ID": "FBgn0038282", "EGF_Baseline": "0.32"}, {"ID": "FBgn0037847", "EGF_Baseline": "-0.07"}, {"ID": "FBgn0033059", "EGF_Baseline": "-0.15"}, {"ID": "FBgn0035931", "EGF_Baseline": "0.83"}, {"ID": "FBgn0033993", "EGF_Baseline": "-0.67"}, {"ID": "FBgn0035850", "EGF_Baseline": "0.93"}, {"ID": "FBgn0003996", "EGF_Baseline": "0.7"}, {"ID": "FBgn0051824", "EGF_Baseline": "0.98"}, {"ID": "FBgn0027945", "EGF_Baseline": "0.18"}, {"ID": "FBgn0261836", "EGF_Baseline": "1.5"}, {"ID": "FBgn0011297", "EGF_Baseline": "-0.49"}, {"ID": "FBgn0037591", "EGF_Baseline": "-1.56"}, {"ID": "FBgn0016687", "EGF_Baseline": "1.53"}, {"ID": "FBgn0261509", "EGF_Baseline": "-0.22"}, {"ID": "FBgn0027929", "EGF_Baseline": "-0.5"}, {"ID": "FBgn0033266", "EGF_Baseline": "-1.04"}, {"ID": "FBgn0004926", "EGF_Baseline": "0.87"}, {"ID": "FBgn0030037", "EGF_Baseline": "0.42"}, {"ID": "FBgn0010504", "EGF_Baseline": "-0.4"}, {"ID": "FBgn0085297", "EGF_Baseline": "-0.26"}, {"ID": "FBgn0029892", "EGF_Baseline": "0.54"}, {"ID": "FBgn0029088", "EGF_Baseline": "1.03"}, {"ID": "FBgn0051174", "EGF_Baseline": "-1.49"}, {"ID": "FBgn0261532", "EGF_Baseline": "1.45"}, {"ID": "FBgn0030374", "EGF_Baseline": "0.64"}, {"ID": "FBgn0031859", "EGF_Baseline": "1.7"}, {"ID": "FBgn0261565", "EGF_Baseline": "-2.43"}, {"ID": "FBgn0050393", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0034142", "EGF_Baseline": "1.22"}, {"ID": "FBgn0036310", "EGF_Baseline": "-0.65"}, {"ID": "FBgn0259215", "EGF_Baseline": "1.31"}, {"ID": "FBgn0037482", "EGF_Baseline": "0.59"}, {"ID": "FBgn0037760", "EGF_Baseline": "1.21"}, {"ID": "FBgn0261788", "EGF_Baseline": "1.19"}, {"ID": "FBgn0000479", "EGF_Baseline": "0.63"}, {"ID": "FBgn0037433", "EGF_Baseline": "0.9"}, {"ID": "FBgn0021764", "EGF_Baseline": "0.77"}, {"ID": "FBgn0000158", "EGF_Baseline": "1.37"}, {"ID": "FBgn0033466", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0033594", "EGF_Baseline": "-1.22"}, {"ID": "FBgn0037420", "EGF_Baseline": "-2.05"}, {"ID": "FBgn0033501", "EGF_Baseline": "-0.67"}, {"ID": "FBgn0038720", "EGF_Baseline": "1.08"}, {"ID": "FBgn0034822", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0028387", "EGF_Baseline": "1.05"}, {"ID": "FBgn0037492", "EGF_Baseline": "-0.5"}, {"ID": "FBgn0000183", "EGF_Baseline": "1.49"}, {"ID": "FBgn0000546", "EGF_Baseline": "1.45"}, {"ID": "FBgn0024329", "EGF_Baseline": "-1.49"}, {"ID": "FBgn0040261", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0039792", "EGF_Baseline": "1.27"}, {"ID": "FBgn0033928", "EGF_Baseline": "0.91"}, {"ID": "FBgn0033735", "EGF_Baseline": "-1.17"}, {"ID": "FBgn0036830", "EGF_Baseline": "-1.8"}, {"ID": "FBgn0020616", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0031491", "EGF_Baseline": "-0.66"}, {"ID": "FBgn0019925", "EGF_Baseline": "0.81"}, {"ID": "FBgn0033246", "EGF_Baseline": "0.22"}, {"ID": "FBgn0030259", "EGF_Baseline": "0.97"}, {"ID": "FBgn0034901", "EGF_Baseline": "0.49"}, {"ID": "FBgn0013347", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0027616", "EGF_Baseline": "-1.25"}, {"ID": "FBgn0040877", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0032600", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0039369", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0037516", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0035001", "EGF_Baseline": "0.74"}, {"ID": "FBgn0036751", "EGF_Baseline": "-0.81"}, {"ID": "FBgn0035975", "EGF_Baseline": "-2.13"}, {"ID": "FBgn0037850", "EGF_Baseline": "0.29"}, {"ID": "FBgn0052259", "EGF_Baseline": "0.42"}, {"ID": "FBgn0032781", "EGF_Baseline": "0.31"}, {"ID": "FBgn0031997", "EGF_Baseline": "-1.47"}, {"ID": "FBgn0034766", "EGF_Baseline": "-0.43"}, {"ID": "FBgn0022268", "EGF_Baseline": "0.68"}, {"ID": "FBgn0036937", "EGF_Baseline": "0.69"}, {"ID": "FBgn0000611", "EGF_Baseline": "0.6"}, {"ID": "FBgn0052687", "EGF_Baseline": "-0.3"}, {"ID": "FBgn0034502", "EGF_Baseline": "0.56"}, {"ID": "FBgn0036415", "EGF_Baseline": "0.22"}, {"ID": "FBgn0043903", "EGF_Baseline": "-1.14"}, {"ID": "FBgn0260645", "EGF_Baseline": "-1.17"}, {"ID": "FBgn0035083", "EGF_Baseline": "1.4"}, {"ID": "FBgn0001124", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0040208", "EGF_Baseline": "-1.65"}, {"ID": "FBgn0031144", "EGF_Baseline": "2.49"}, {"ID": "FBgn0044328", "EGF_Baseline": "0.9"}, {"ID": "FBgn0031453", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0035693", "EGF_Baseline": "-1.14"}, {"ID": "FBgn0035027", "EGF_Baseline": "0.82"}, {"ID": "FBgn0031528", "EGF_Baseline": "0.5"}, {"ID": "FBgn0039696", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0040907", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0029941", "EGF_Baseline": "1.27"}, {"ID": "FBgn0053490", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0038525", "EGF_Baseline": "0.53"}, {"ID": "FBgn0085396", "EGF_Baseline": "-1.8"}, {"ID": "FBgn0037217", "EGF_Baseline": "0.38"}, {"ID": "FBgn0032448", "EGF_Baseline": "-0.44"}, {"ID": "FBgn0051624", "EGF_Baseline": "-1.68"}, {"ID": "FBgn0033029", "EGF_Baseline": "2.24"}, {"ID": "FBgn0034569", "EGF_Baseline": "0.79"}, {"ID": "FBgn0001149", "EGF_Baseline": "0.36"}, {"ID": "FBgn0034539", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0034542", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0033083", "EGF_Baseline": "2.73"}, {"ID": "FBgn0041247", "EGF_Baseline": "0.76"}, {"ID": "FBgn0033932", "EGF_Baseline": "0.6"}, {"ID": "FBgn0030700", "EGF_Baseline": "0.81"}, {"ID": "FBgn0032000", "EGF_Baseline": "0.53"}, {"ID": "FBgn0026090", "EGF_Baseline": "0.32"}, {"ID": "FBgn0033187", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0010488", "EGF_Baseline": "-0.63"}, {"ID": "FBgn0004878", "EGF_Baseline": "0.46"}, {"ID": "FBgn0000116", "EGF_Baseline": "3.3"}, {"ID": "FBgn0037416", "EGF_Baseline": "1.17"}, {"ID": "FBgn0034487", "EGF_Baseline": "0.28"}, {"ID": "FBgn0033104", "EGF_Baseline": "-1"}, {"ID": "FBgn0032634", "EGF_Baseline": "1.19"}, {"ID": "FBgn0028863", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0030998", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0039648", "EGF_Baseline": "0.52"}, {"ID": "FBgn0036557", "EGF_Baseline": "-1.38"}, {"ID": "FBgn0051690", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0011582", "EGF_Baseline": "0.44"}, {"ID": "FBgn0038275", "EGF_Baseline": "-0.41"}, {"ID": "FBgn0017581", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0038956", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0038510", "EGF_Baseline": "0.75"}, {"ID": "FBgn0038330", "EGF_Baseline": "-1"}, {"ID": "FBgn0038001", "EGF_Baseline": "0.61"}, {"ID": "FBgn0004052", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0033275", "EGF_Baseline": "0.34"}, {"ID": "FBgn0035718", "EGF_Baseline": "1.18"}, {"ID": "FBgn0033499", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0029105", "EGF_Baseline": "-0.38"}, {"ID": "FBgn0037533", "EGF_Baseline": "1.76"}, {"ID": "FBgn0033382", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0259176", "EGF_Baseline": "1.8"}, {"ID": "FBgn0034554", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0037930", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0023216", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0040719", "EGF_Baseline": "-0.33"}, {"ID": "FBgn0033431", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0004431", "EGF_Baseline": "-1.6"}, {"ID": "FBgn0035842", "EGF_Baseline": "-1.36"}, {"ID": "FBgn0034583", "EGF_Baseline": "-0.43"}, {"ID": "FBgn0033899", "EGF_Baseline": "-1.3"}, {"ID": "FBgn0038210", "EGF_Baseline": "-1.72"}, {"ID": "FBgn0027527", "EGF_Baseline": "-0.41"}, {"ID": "FBgn0050183", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0036685", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0039182", "EGF_Baseline": "0.81"}, {"ID": "FBgn0037415", "EGF_Baseline": "1.21"}, {"ID": "FBgn0026721", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0032393", "EGF_Baseline": "-1.5"}, {"ID": "FBgn0003416", "EGF_Baseline": "4"}, {"ID": "FBgn0032563", "EGF_Baseline": "0.83"}, {"ID": "FBgn0030722", "EGF_Baseline": "1.1"}, {"ID": "FBgn0030589", "EGF_Baseline": "-1.53"}, {"ID": "FBgn0030943", "EGF_Baseline": "1.1"}, {"ID": "FBgn0040305", "EGF_Baseline": "-2.04"}, {"ID": "FBgn0039337", "EGF_Baseline": "1.36"}, {"ID": "FBgn0042129", "EGF_Baseline": "-2.13"}, {"ID": "FBgn0038398", "EGF_Baseline": "0.36"}, {"ID": "FBgn0034657", "EGF_Baseline": "-1.37"}, {"ID": "FBgn0029762", "EGF_Baseline": "-1.28"}, {"ID": "FBgn0002531", "EGF_Baseline": "0.92"}, {"ID": "FBgn0052507", "EGF_Baseline": "1.59"}, {"ID": "FBgn0034915", "EGF_Baseline": "3.08"}, {"ID": "FBgn0035137", "EGF_Baseline": "1.33"}, {"ID": "FBgn0016926", "EGF_Baseline": "1.39"}, {"ID": "FBgn0016075", "EGF_Baseline": "1.12"}, {"ID": "FBgn0000308", "EGF_Baseline": "-0.4"}, {"ID": "FBgn0034094", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0027932", "EGF_Baseline": "0.72"}, {"ID": "FBgn0051404", "EGF_Baseline": "-1.64"}, {"ID": "FBgn0039189", "EGF_Baseline": "0.97"}, {"ID": "FBgn0029656", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0013981", "EGF_Baseline": "0.62"}, {"ID": "FBgn0035325", "EGF_Baseline": "0.97"}, {"ID": "FBgn0051741", "EGF_Baseline": "-0.35"}, {"ID": "FBgn0026741", "EGF_Baseline": "-1.39"}, {"ID": "FBgn0027342", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0000137", "EGF_Baseline": "-1.4"}, {"ID": "FBgn0034572", "EGF_Baseline": "2.02"}, {"ID": "FBgn0032907", "EGF_Baseline": "0.89"}, {"ID": "FBgn0010288", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0051155", "EGF_Baseline": "3.55"}, {"ID": "FBgn0034223", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0037360", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0054030", "EGF_Baseline": "0.86"}, {"ID": "FBgn0001169", "EGF_Baseline": "0.81"}, {"ID": "FBgn0052563", "EGF_Baseline": "0.95"}, {"ID": "FBgn0051374", "EGF_Baseline": "0.59"}, {"ID": "FBgn0052713", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0052391", "EGF_Baseline": "-1.23"}, {"ID": "FBgn0034478", "EGF_Baseline": "1"}, {"ID": "FBgn0003401", "EGF_Baseline": "1.45"}, {"ID": "FBgn0004509", "EGF_Baseline": "-1.56"}, {"ID": "FBgn0029525", "EGF_Baseline": "-1.69"}, {"ID": "FBgn0036285", "EGF_Baseline": "1.96"}, {"ID": "FBgn0032084", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0032908", "EGF_Baseline": "2.17"}, {"ID": "FBgn0033050", "EGF_Baseline": "0.85"}, {"ID": "FBgn0033379", "EGF_Baseline": "1.24"}, {"ID": "FBgn0028665", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0032029", "EGF_Baseline": "0.38"}, {"ID": "FBgn0030792", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0029880", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0031563", "EGF_Baseline": "2.26"}, {"ID": "FBgn0040338", "EGF_Baseline": "0.92"}, {"ID": "FBgn0032249", "EGF_Baseline": "0.34"}, {"ID": "FBgn0039674", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0021953", "EGF_Baseline": "-1.28"}, {"ID": "FBgn0033475", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0000384", "EGF_Baseline": "0.11"}, {"ID": "FBgn0050096", "EGF_Baseline": "-0.54"}, {"ID": "FBgn0041588", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0037894", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0010041", "EGF_Baseline": "-0.54"}, {"ID": "FBgn0014342", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0026395", "EGF_Baseline": "0.44"}, {"ID": "FBgn0033215", "EGF_Baseline": "-0.43"}, {"ID": "FBgn0031773", "EGF_Baseline": "1.36"}, {"ID": "FBgn0011694", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0034703", "EGF_Baseline": "-1.45"}, {"ID": "FBgn0037814", "EGF_Baseline": "1.67"}, {"ID": "FBgn0033679", "EGF_Baseline": "-1.82"}, {"ID": "FBgn0031538", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0031498", "EGF_Baseline": "-1.57"}, {"ID": "FBgn0040809", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0053557", "EGF_Baseline": "-0.33"}, {"ID": "FBgn0052103", "EGF_Baseline": "1.09"}, {"ID": "FBgn0052631", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0035588", "EGF_Baseline": "-0.29"}, {"ID": "FBgn0033919", "EGF_Baseline": "0.18"}, {"ID": "FBgn0026620", "EGF_Baseline": "-0.5"}, {"ID": "FBgn0051612", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0046222", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0015001", "EGF_Baseline": "-0.37"}, {"ID": "FBgn0052727", "EGF_Baseline": "-1.2"}, {"ID": "FBgn0033996", "EGF_Baseline": "-2.26"}, {"ID": "FBgn0036546", "EGF_Baseline": "0.67"}, {"ID": "FBgn0259219", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0085265", "EGF_Baseline": "-0.81"}, {"ID": "FBgn0032340", "EGF_Baseline": "0.07"}, {"ID": "FBgn0003463", "EGF_Baseline": "0.95"}, {"ID": "FBgn0050104", "EGF_Baseline": "-0.3"}, {"ID": "FBgn0035255", "EGF_Baseline": "0.74"}, {"ID": "FBgn0043578", "EGF_Baseline": "0.73"}, {"ID": "FBgn0035929", "EGF_Baseline": "-0.31"}, {"ID": "FBgn0016041", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0031988", "EGF_Baseline": "1.57"}, {"ID": "FBgn0030850", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0004687", "EGF_Baseline": "-0.44"}, {"ID": "FBgn0040268", "EGF_Baseline": "1.25"}, {"ID": "FBgn0034394", "EGF_Baseline": "-0.91"}, {"ID": "FBgn0027338", "EGF_Baseline": "-0.81"}, {"ID": "FBgn0036138", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0024689", "EGF_Baseline": "0.63"}, {"ID": "FBgn0260798", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0039734", "EGF_Baseline": "-0.19"}, {"ID": "FBgn0033687", "EGF_Baseline": "-1.31"}, {"ID": "FBgn0031164", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0033458", "EGF_Baseline": "-0.15"}, {"ID": "FBgn0038440", "EGF_Baseline": "0.26"}, {"ID": "FBgn0031209", "EGF_Baseline": "1.76"}, {"ID": "FBgn0034232", "EGF_Baseline": "-0.46"}, {"ID": "FBgn0038381", "EGF_Baseline": "-1.56"}, {"ID": "FBgn0037063", "EGF_Baseline": "0.88"}, {"ID": "FBgn0052106", "EGF_Baseline": "0.28"}, {"ID": "FBgn0030418", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0035685", "EGF_Baseline": "-1.33"}, {"ID": "FBgn0040528", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0035004", "EGF_Baseline": "0.57"}, {"ID": "FBgn0030594", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0039505", "EGF_Baseline": "0.7"}, {"ID": "FBgn0028407", "EGF_Baseline": "-0.11"}, {"ID": "FBgn0034814", "EGF_Baseline": "1.53"}, {"ID": "FBgn0041150", "EGF_Baseline": "0.63"}, {"ID": "FBgn0015806", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0025111", "EGF_Baseline": "-1.45"}, {"ID": "FBgn0039124", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0028411", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0051279", "EGF_Baseline": "-0.44"}, {"ID": "FBgn0040502", "EGF_Baseline": "-1"}, {"ID": "FBgn0034425", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0035508", "EGF_Baseline": "-0.33"}, {"ID": "FBgn0013576", "EGF_Baseline": "-1.35"}, {"ID": "FBgn0032609", "EGF_Baseline": "0.75"}, {"ID": "FBgn0030342", "EGF_Baseline": "0.55"}, {"ID": "FBgn0086370", "EGF_Baseline": "-0.43"}, {"ID": "FBgn0260007", "EGF_Baseline": "-1.78"}, {"ID": "FBgn0031760", "EGF_Baseline": "-0.35"}, {"ID": "FBgn0042146", "EGF_Baseline": "1.26"}, {"ID": "FBgn0047114", "EGF_Baseline": "0.31"}, {"ID": "FBgn0038325", "EGF_Baseline": "0.77"}, {"ID": "FBgn0085503", "EGF_Baseline": "-1.8"}, {"ID": "FBgn0026263", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0051728", "EGF_Baseline": "4.01"}, {"ID": "FBgn0259113", "EGF_Baseline": "0.99"}, {"ID": "FBgn0020272", "EGF_Baseline": "0.5"}, {"ID": "FBgn0030787", "EGF_Baseline": "-1.3"}, {"ID": "FBgn0036893", "EGF_Baseline": "-1.43"}, {"ID": "FBgn0051516", "EGF_Baseline": "-0.24"}, {"ID": "FBgn0033566", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0086356", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0001315", "EGF_Baseline": "1.84"}, {"ID": "FBgn0002552", "EGF_Baseline": "0.62"}, {"ID": "FBgn0034943", "EGF_Baseline": "-0.05"}, {"ID": "FBgn0036402", "EGF_Baseline": "-1.62"}, {"ID": "FBgn0004777", "EGF_Baseline": "1.93"}, {"ID": "FBgn0035983", "EGF_Baseline": "-1.42"}, {"ID": "FBgn0013676", "EGF_Baseline": "1.46"}, {"ID": "FBgn0036496", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0029646", "EGF_Baseline": "1.38"}, {"ID": "FBgn0004380", "EGF_Baseline": "0.88"}, {"ID": "FBgn0039920", "EGF_Baseline": "1.69"}, {"ID": "FBgn0038447", "EGF_Baseline": "1.07"}, {"ID": "FBgn0037489", "EGF_Baseline": "0.62"}, {"ID": "FBgn0050067", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0050192", "EGF_Baseline": "-1.26"}, {"ID": "FBgn0053543", "EGF_Baseline": "0.55"}, {"ID": "FBgn0051922", "EGF_Baseline": "-0.37"}, {"ID": "FBgn0050151", "EGF_Baseline": "-1.1"}, {"ID": "FBgn0033696", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0039261", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0024191", "EGF_Baseline": "-1.49"}, {"ID": "FBgn0036476", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0032193", "EGF_Baseline": "-1.26"}, {"ID": "FBgn0001254", "EGF_Baseline": "-0.34"}, {"ID": "FBgn0052808", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0030495", "EGF_Baseline": "-0.43"}, {"ID": "FBgn0030563", "EGF_Baseline": "0.25"}, {"ID": "FBgn0014466", "EGF_Baseline": "-0.34"}, {"ID": "FBgn0038301", "EGF_Baseline": "1.2"}, {"ID": "FBgn0030718", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0038695", "EGF_Baseline": "-1.27"}, {"ID": "FBgn0038972", "EGF_Baseline": "0.16"}, {"ID": "FBgn0028892", "EGF_Baseline": "1.4"}, {"ID": "FBgn0003274", "EGF_Baseline": "4.38"}, {"ID": "FBgn0032701", "EGF_Baseline": "-1.17"}, {"ID": "FBgn0037606", "EGF_Baseline": "0.67"}, {"ID": "FBgn0031281", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0038098", "EGF_Baseline": "2.3"}, {"ID": "FBgn0020545", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0033889", "EGF_Baseline": "2.76"}, {"ID": "FBgn0037195", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0035193", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0038170", "EGF_Baseline": "0.87"}, {"ID": "FBgn0024945", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0052693", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0037722", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0046878", "EGF_Baseline": "0.83"}, {"ID": "FBgn0036679", "EGF_Baseline": "0.67"}, {"ID": "FBgn0029690", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0037614", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0039064", "EGF_Baseline": "1.57"}, {"ID": "FBgn0032217", "EGF_Baseline": "1.32"}, {"ID": "FBgn0036277", "EGF_Baseline": "-0.16"}, {"ID": "FBgn0034180", "EGF_Baseline": "-1.25"}, {"ID": "FBgn0003261", "EGF_Baseline": "-1.65"}, {"ID": "FBgn0029951", "EGF_Baseline": "-0.43"}, {"ID": "FBgn0053704", "EGF_Baseline": "0.58"}, {"ID": "FBgn0035317", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0031446", "EGF_Baseline": "-0.05"}, {"ID": "FBgn0026754", "EGF_Baseline": "-1.83"}, {"ID": "FBgn0052600", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0038035", "EGF_Baseline": "0.88"}, {"ID": "FBgn0035501", "EGF_Baseline": "0.32"}, {"ID": "FBgn0031769", "EGF_Baseline": "1.48"}, {"ID": "FBgn0036951", "EGF_Baseline": "-1.88"}, {"ID": "FBgn0005633", "EGF_Baseline": "-0.84"}, {"ID": "FBgn0027094", "EGF_Baseline": "1.35"}, {"ID": "FBgn0011476", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0023536", "EGF_Baseline": "0.17"}, {"ID": "FBgn0037875", "EGF_Baseline": "0.46"}, {"ID": "FBgn0039324", "EGF_Baseline": "1.36"}, {"ID": "FBgn0015797", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0013726", "EGF_Baseline": "-0.23"}, {"ID": "FBgn0039429", "EGF_Baseline": "-1.51"}, {"ID": "FBgn0036616", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0033092", "EGF_Baseline": "0.53"}, {"ID": "FBgn0043364", "EGF_Baseline": "-0.98"}, {"ID": "FBgn0038159", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0033140", "EGF_Baseline": "-1.25"}, {"ID": "FBgn0005696", "EGF_Baseline": "1.57"}, {"ID": "FBgn0039481", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0016919", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0039043", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0002715", "EGF_Baseline": "-1.73"}, {"ID": "FBgn0004373", "EGF_Baseline": "1.78"}, {"ID": "FBgn0028541", "EGF_Baseline": "-1.27"}, {"ID": "FBgn0250833", "EGF_Baseline": "0.43"}, {"ID": "FBgn0051999", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0038319", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0031412", "EGF_Baseline": "0.66"}, {"ID": "FBgn0031220", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0027903", "EGF_Baseline": "0.71"}, {"ID": "FBgn0027620", "EGF_Baseline": "-1.58"}, {"ID": "FBgn0035550", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0001234", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0259236", "EGF_Baseline": "-0.98"}, {"ID": "FBgn0038916", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0004908", "EGF_Baseline": "0.57"}, {"ID": "FBgn0039636", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0053194", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0015521", "EGF_Baseline": "1.56"}, {"ID": "FBgn0036874", "EGF_Baseline": "-0.45"}, {"ID": "FBgn0037779", "EGF_Baseline": "-1.81"}, {"ID": "FBgn0037013", "EGF_Baseline": "-1.81"}, {"ID": "FBgn0028504", "EGF_Baseline": "0.43"}, {"ID": "FBgn0037312", "EGF_Baseline": "-0.59"}, {"ID": "FBgn0039471", "EGF_Baseline": "0.66"}, {"ID": "FBgn0037964", "EGF_Baseline": "0.65"}, {"ID": "FBgn0032507", "EGF_Baseline": "0.31"}, {"ID": "FBgn0033168", "EGF_Baseline": "-0.45"}, {"ID": "FBgn0261928", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0030688", "EGF_Baseline": "0.52"}, {"ID": "FBgn0021825", "EGF_Baseline": "1.62"}, {"ID": "FBgn0037085", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0029863", "EGF_Baseline": "0.53"}, {"ID": "FBgn0032813", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0032314", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0027538", "EGF_Baseline": "1.12"}, {"ID": "FBgn0037429", "EGF_Baseline": "0.53"}, {"ID": "FBgn0050466", "EGF_Baseline": "0.72"}, {"ID": "FBgn0086779", "EGF_Baseline": "-2.22"}, {"ID": "FBgn0037635", "EGF_Baseline": "0.92"}, {"ID": "FBgn0025865", "EGF_Baseline": "1.07"}, {"ID": "FBgn0260461", "EGF_Baseline": "-1.1"}, {"ID": "FBgn0037207", "EGF_Baseline": "4.72"}, {"ID": "FBgn0052462", "EGF_Baseline": "0.81"}, {"ID": "FBgn0029697", "EGF_Baseline": "0.21"}, {"ID": "FBgn0038039", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0015010", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0024995", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0035333", "EGF_Baseline": "0.82"}, {"ID": "FBgn0039355", "EGF_Baseline": "-1.15"}, {"ID": "FBgn0039486", "EGF_Baseline": "-1.38"}, {"ID": "FBgn0028691", "EGF_Baseline": "1.06"}, {"ID": "FBgn0029661", "EGF_Baseline": "1.31"}, {"ID": "FBgn0085465", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0086472", "EGF_Baseline": "0.88"}, {"ID": "FBgn0085204", "EGF_Baseline": "-2.29"}, {"ID": "FBgn0014026", "EGF_Baseline": "2.06"}, {"ID": "FBgn0014141", "EGF_Baseline": "-2.21"}, {"ID": "FBgn0029990", "EGF_Baseline": "-1.36"}, {"ID": "FBgn0000244", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0033638", "EGF_Baseline": "1.36"}, {"ID": "FBgn0030660", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0051004", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0011762", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0004778", "EGF_Baseline": "-1.55"}, {"ID": "FBgn0034463", "EGF_Baseline": "-0.91"}, {"ID": "FBgn0039164", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0051055", "EGF_Baseline": "0.77"}, {"ID": "FBgn0038341", "EGF_Baseline": "2.42"}, {"ID": "FBgn0028875", "EGF_Baseline": "-1.67"}, {"ID": "FBgn0034069", "EGF_Baseline": "-1.35"}, {"ID": "FBgn0037700", "EGF_Baseline": "-1.1"}, {"ID": "FBgn0028327", "EGF_Baseline": "0.79"}, {"ID": "FBgn0015277", "EGF_Baseline": "-0.84"}, {"ID": "FBgn0034072", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0260003", "EGF_Baseline": "-1.76"}, {"ID": "FBgn0037147", "EGF_Baseline": "1.28"}, {"ID": "FBgn0035162", "EGF_Baseline": "1.64"}, {"ID": "FBgn0038960", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0040650", "EGF_Baseline": "-0.27"}, {"ID": "FBgn0024814", "EGF_Baseline": "1.27"}, {"ID": "FBgn0039770", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0034741", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0039627", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0031976", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0003279", "EGF_Baseline": "4.27"}, {"ID": "FBgn0034520", "EGF_Baseline": "-1.49"}, {"ID": "FBgn0039017", "EGF_Baseline": "0.27"}, {"ID": "FBgn0028513", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0053474", "EGF_Baseline": "-1.61"}, {"ID": "FBgn0038361", "EGF_Baseline": "0.57"}, {"ID": "FBgn0034623", "EGF_Baseline": "-1.14"}, {"ID": "FBgn0036528", "EGF_Baseline": "-0.34"}, {"ID": "FBgn0000256", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0036820", "EGF_Baseline": "0.53"}, {"ID": "FBgn0032256", "EGF_Baseline": "0.33"}, {"ID": "FBgn0039525", "EGF_Baseline": "1.83"}, {"ID": "FBgn0023542", "EGF_Baseline": "-1.83"}, {"ID": "FBgn0039010", "EGF_Baseline": "-0.98"}, {"ID": "FBgn0039852", "EGF_Baseline": "-1.52"}, {"ID": "FBgn0026252", "EGF_Baseline": "1.77"}, {"ID": "FBgn0028401", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0033209", "EGF_Baseline": "-1.3"}, {"ID": "FBgn0025682", "EGF_Baseline": "0.33"}, {"ID": "FBgn0033663", "EGF_Baseline": "-1.67"}, {"ID": "FBgn0030744", "EGF_Baseline": "1.42"}, {"ID": "FBgn0031361", "EGF_Baseline": "0.38"}, {"ID": "FBgn0028396", "EGF_Baseline": "0.55"}, {"ID": "FBgn0033221", "EGF_Baseline": "-1.45"}, {"ID": "FBgn0004463", "EGF_Baseline": "0.29"}, {"ID": "FBgn0036762", "EGF_Baseline": "0.42"}, {"ID": "FBgn0001085", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0030799", "EGF_Baseline": "-0.45"}, {"ID": "FBgn0032230", "EGF_Baseline": "1.07"}, {"ID": "FBgn0030510", "EGF_Baseline": "-1.92"}, {"ID": "FBgn0032475", "EGF_Baseline": "-0.36"}, {"ID": "FBgn0052423", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0024332", "EGF_Baseline": "-1.34"}, {"ID": "FBgn0050158", "EGF_Baseline": "-0.98"}, {"ID": "FBgn0037819", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0028475", "EGF_Baseline": "0.79"}, {"ID": "FBgn0005386", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0035815", "EGF_Baseline": "-1.34"}, {"ID": "FBgn0037572", "EGF_Baseline": "0.87"}, {"ID": "FBgn0010316", "EGF_Baseline": "-0.59"}, {"ID": "FBgn0004569", "EGF_Baseline": "0.27"}, {"ID": "FBgn0052274", "EGF_Baseline": "0.75"}, {"ID": "FBgn0039641", "EGF_Baseline": "0.28"}, {"ID": "FBgn0259745", "EGF_Baseline": "0.47"}, {"ID": "FBgn0033400", "EGF_Baseline": "0.25"}, {"ID": "FBgn0037386", "EGF_Baseline": "0.73"}, {"ID": "FBgn0051902", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0039760", "EGF_Baseline": "0.61"}, {"ID": "FBgn0085481", "EGF_Baseline": "0.4"}, {"ID": "FBgn0037920", "EGF_Baseline": "-1.17"}, {"ID": "FBgn0030222", "EGF_Baseline": "0.39"}, {"ID": "FBgn0033020", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0039755", "EGF_Baseline": "1.2"}, {"ID": "FBgn0031463", "EGF_Baseline": "0.41"}, {"ID": "FBgn0028919", "EGF_Baseline": "1.14"}, {"ID": "FBgn0050259", "EGF_Baseline": "-1.4"}, {"ID": "FBgn0028274", "EGF_Baseline": "-0.49"}, {"ID": "FBgn0052745", "EGF_Baseline": "-0.25"}, {"ID": "FBgn0040382", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0034035", "EGF_Baseline": "0.85"}, {"ID": "FBgn0052188", "EGF_Baseline": "-0.22"}, {"ID": "FBgn0011260", "EGF_Baseline": "1.03"}, {"ID": "FBgn0052228", "EGF_Baseline": "0.48"}, {"ID": "FBgn0038576", "EGF_Baseline": "0.48"}, {"ID": "FBgn0031694", "EGF_Baseline": "-1.39"}, {"ID": "FBgn0038107", "EGF_Baseline": "-1.92"}, {"ID": "FBgn0015336", "EGF_Baseline": "-0.36"}, {"ID": "FBgn0034994", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0036000", "EGF_Baseline": "1.59"}, {"ID": "FBgn0000358", "EGF_Baseline": "0.45"}, {"ID": "FBgn0053673", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0014366", "EGF_Baseline": "1.68"}, {"ID": "FBgn0032100", "EGF_Baseline": "-0.49"}, {"ID": "FBgn0051998", "EGF_Baseline": "-0.31"}, {"ID": "FBgn0039896", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0038438", "EGF_Baseline": "1.08"}, {"ID": "FBgn0030912", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0036492", "EGF_Baseline": "5.54"}, {"ID": "FBgn0024291", "EGF_Baseline": "0.79"}, {"ID": "FBgn0020509", "EGF_Baseline": "1.18"}, {"ID": "FBgn0053969", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0039060", "EGF_Baseline": "-0.67"}, {"ID": "FBgn0039380", "EGF_Baseline": "-0.65"}, {"ID": "FBgn0085349", "EGF_Baseline": "-1.7"}, {"ID": "FBgn0042119", "EGF_Baseline": "1.62"}, {"ID": "FBgn0260000", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0025777", "EGF_Baseline": "0.4"}, {"ID": "FBgn0037166", "EGF_Baseline": "0.83"}, {"ID": "FBgn0011737", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0024509", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0030577", "EGF_Baseline": "0.99"}, {"ID": "FBgn0038755", "EGF_Baseline": "1.67"}, {"ID": "FBgn0051463", "EGF_Baseline": "0.92"}, {"ID": "FBgn0037652", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0037659", "EGF_Baseline": "-0.66"}, {"ID": "FBgn0031912", "EGF_Baseline": "0.44"}, {"ID": "FBgn0031703", "EGF_Baseline": "2.54"}, {"ID": "FBgn0040106", "EGF_Baseline": "-0.98"}, {"ID": "FBgn0036652", "EGF_Baseline": "1.17"}, {"ID": "FBgn0034471", "EGF_Baseline": "0.12"}, {"ID": "FBgn0259229", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0029706", "EGF_Baseline": "-0.66"}, {"ID": "FBgn0040509", "EGF_Baseline": "0.99"}, {"ID": "FBgn0037005", "EGF_Baseline": "-0.77"}, {"ID": "FBgn0035063", "EGF_Baseline": "-0.18"}, {"ID": "FBgn0029771", "EGF_Baseline": "0.54"}, {"ID": "FBgn0022787", "EGF_Baseline": "0.8"}, {"ID": "FBgn0035657", "EGF_Baseline": "-1.21"}, {"ID": "FBgn0032868", "EGF_Baseline": "-1.54"}, {"ID": "FBgn0036549", "EGF_Baseline": "-1.1"}, {"ID": "FBgn0015574", "EGF_Baseline": "-1.31"}, {"ID": "FBgn0037230", "EGF_Baseline": "0.51"}, {"ID": "FBgn0036101", "EGF_Baseline": "-1.49"}, {"ID": "FBgn0029092", "EGF_Baseline": "1.06"}, {"ID": "FBgn0031683", "EGF_Baseline": "-0.43"}, {"ID": "FBgn0036500", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0005672", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0038548", "EGF_Baseline": "1.12"}, {"ID": "FBgn0014269", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0001225", "EGF_Baseline": "0.65"}, {"ID": "FBgn0020379", "EGF_Baseline": "1.41"}, {"ID": "FBgn0005411", "EGF_Baseline": "-3.96"}, {"ID": "FBgn0038207", "EGF_Baseline": "-1.73"}, {"ID": "FBgn0037125", "EGF_Baseline": "-0.15"}, {"ID": "FBgn0051960", "EGF_Baseline": "0.58"}, {"ID": "FBgn0035570", "EGF_Baseline": "-1.7"}, {"ID": "FBgn0031171", "EGF_Baseline": "-0.46"}, {"ID": "FBgn0050203", "EGF_Baseline": "-1.6"}, {"ID": "FBgn0020280", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0030979", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0010228", "EGF_Baseline": "-1.58"}, {"ID": "FBgn0033989", "EGF_Baseline": "0.78"}, {"ID": "FBgn0052091", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0032048", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0000078", "EGF_Baseline": "-0.39"}, {"ID": "FBgn0034403", "EGF_Baseline": "0.48"}, {"ID": "FBgn0002842", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0045827", "EGF_Baseline": "0.45"}, {"ID": "FBgn0036447", "EGF_Baseline": "-0.32"}, {"ID": "FBgn0028986", "EGF_Baseline": "0.37"}, {"ID": "FBgn0039073", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0037669", "EGF_Baseline": "2.08"}, {"ID": "FBgn0025627", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0029701", "EGF_Baseline": "0.36"}, {"ID": "FBgn0261277", "EGF_Baseline": "-1.78"}, {"ID": "FBgn0028969", "EGF_Baseline": "0.24"}, {"ID": "FBgn0004797", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0032797", "EGF_Baseline": "1.65"}, {"ID": "FBgn0051288", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0030673", "EGF_Baseline": "-0.19"}, {"ID": "FBgn0038656", "EGF_Baseline": "-1.77"}, {"ID": "FBgn0261439", "EGF_Baseline": "-1.5"}, {"ID": "FBgn0024846", "EGF_Baseline": "1.34"}, {"ID": "FBgn0010452", "EGF_Baseline": "-1.35"}, {"ID": "FBgn0034057", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0032652", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0261627", "EGF_Baseline": "1.44"}, {"ID": "FBgn0035954", "EGF_Baseline": "0.49"}, {"ID": "FBgn0051371", "EGF_Baseline": "-0.98"}, {"ID": "FBgn0034415", "EGF_Baseline": "-1.21"}, {"ID": "FBgn0028974", "EGF_Baseline": "2.07"}, {"ID": "FBgn0039129", "EGF_Baseline": "1.18"}, {"ID": "FBgn0038577", "EGF_Baseline": "1.39"}, {"ID": "FBgn0085224", "EGF_Baseline": "0.35"}, {"ID": "FBgn0051423", "EGF_Baseline": "0.84"}, {"ID": "FBgn0040519", "EGF_Baseline": "-2.19"}, {"ID": "FBgn0034432", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0039807", "EGF_Baseline": "0.64"}, {"ID": "FBgn0058378", "EGF_Baseline": "1.15"}, {"ID": "FBgn0040725", "EGF_Baseline": "-0.77"}, {"ID": "FBgn0053315", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0063261", "EGF_Baseline": "-0.81"}, {"ID": "FBgn0038832", "EGF_Baseline": "0.54"}, {"ID": "FBgn0031464", "EGF_Baseline": "0.55"}, {"ID": "FBgn0033010", "EGF_Baseline": "-1.17"}, {"ID": "FBgn0028979", "EGF_Baseline": "-0.36"}, {"ID": "FBgn0032462", "EGF_Baseline": "0.4"}, {"ID": "FBgn0028980", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0003997", "EGF_Baseline": "1.24"}, {"ID": "FBgn0002940", "EGF_Baseline": "-0.07"}, {"ID": "FBgn0036514", "EGF_Baseline": "1.12"}, {"ID": "FBgn0030305", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0052686", "EGF_Baseline": "1.45"}, {"ID": "FBgn0032402", "EGF_Baseline": "-1.46"}, {"ID": "FBgn0039381", "EGF_Baseline": "-0.03"}, {"ID": "FBgn0032196", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0031390", "EGF_Baseline": "-0.09"}, {"ID": "FBgn0029770", "EGF_Baseline": "-0.54"}, {"ID": "FBgn0040823", "EGF_Baseline": "0.74"}, {"ID": "FBgn0034828", "EGF_Baseline": "-0.52"}, {"ID": "FBgn0030976", "EGF_Baseline": "-0.39"}, {"ID": "FBgn0000439", "EGF_Baseline": "-0.67"}, {"ID": "FBgn0013717", "EGF_Baseline": "1.06"}, {"ID": "FBgn0021874", "EGF_Baseline": "0.7"}, {"ID": "FBgn0030137", "EGF_Baseline": "0.36"}, {"ID": "FBgn0031632", "EGF_Baseline": "-0.27"}, {"ID": "FBgn0030081", "EGF_Baseline": "0.39"}, {"ID": "FBgn0260970", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0002734", "EGF_Baseline": "-0.22"}, {"ID": "FBgn0029176", "EGF_Baseline": "4.2"}, {"ID": "FBgn0034095", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0030658", "EGF_Baseline": "0.66"}, {"ID": "FBgn0261933", "EGF_Baseline": "1.63"}, {"ID": "FBgn0001112", "EGF_Baseline": "0.84"}, {"ID": "FBgn0052262", "EGF_Baseline": "-0.31"}, {"ID": "FBgn0037291", "EGF_Baseline": "0.58"}, {"ID": "FBgn0035412", "EGF_Baseline": "-0.33"}, {"ID": "FBgn0051301", "EGF_Baseline": "-2.33"}, {"ID": "FBgn0036773", "EGF_Baseline": "0.66"}, {"ID": "FBgn0041627", "EGF_Baseline": "0.93"}, {"ID": "FBgn0086519", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0034005", "EGF_Baseline": "0.98"}, {"ID": "FBgn0002931", "EGF_Baseline": "2.07"}, {"ID": "FBgn0260499", "EGF_Baseline": "1.32"}, {"ID": "FBgn0030060", "EGF_Baseline": "-0.32"}, {"ID": "FBgn0032704", "EGF_Baseline": "-0.66"}, {"ID": "FBgn0032587", "EGF_Baseline": "0.8"}, {"ID": "FBgn0034844", "EGF_Baseline": "1.64"}, {"ID": "FBgn0039022", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0038854", "EGF_Baseline": "1.06"}, {"ID": "FBgn0035512", "EGF_Baseline": "0.87"}, {"ID": "FBgn0046114", "EGF_Baseline": "0.17"}, {"ID": "FBgn0036602", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0000667", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0004173", "EGF_Baseline": "1.49"}, {"ID": "FBgn0010350", "EGF_Baseline": "-1.14"}, {"ID": "FBgn0036228", "EGF_Baseline": "1.51"}, {"ID": "FBgn0002936", "EGF_Baseline": "0.88"}, {"ID": "FBgn0038173", "EGF_Baseline": "0.37"}, {"ID": "FBgn0029823", "EGF_Baseline": "0.95"}, {"ID": "FBgn0031881", "EGF_Baseline": "-1.57"}, {"ID": "FBgn0019932", "EGF_Baseline": "0.25"}, {"ID": "FBgn0029840", "EGF_Baseline": "1.2"}, {"ID": "FBgn0030088", "EGF_Baseline": "-0.56"}, {"ID": "FBgn0027588", "EGF_Baseline": "-1.44"}, {"ID": "FBgn0037138", "EGF_Baseline": "-1.15"}, {"ID": "FBgn0027783", "EGF_Baseline": "0.26"}, {"ID": "FBgn0038490", "EGF_Baseline": "0.03"}, {"ID": "FBgn0027103", "EGF_Baseline": "-1.73"}, {"ID": "FBgn0036960", "EGF_Baseline": "-1.86"}, {"ID": "FBgn0037408", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0031628", "EGF_Baseline": "0.98"}, {"ID": "FBgn0051864", "EGF_Baseline": "-0.39"}, {"ID": "FBgn0085352", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0037275", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0050005", "EGF_Baseline": "1.52"}, {"ID": "FBgn0035311", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0053922", "EGF_Baseline": "-0.91"}, {"ID": "FBgn0044452", "EGF_Baseline": "0.71"}, {"ID": "FBgn0036609", "EGF_Baseline": "-0.4"}, {"ID": "FBgn0020909", "EGF_Baseline": "-0.13"}, {"ID": "FBgn0034247", "EGF_Baseline": "-2.4"}, {"ID": "FBgn0052644", "EGF_Baseline": "0.82"}, {"ID": "FBgn0085414", "EGF_Baseline": "-1.28"}, {"ID": "FBgn0031362", "EGF_Baseline": "0.96"}, {"ID": "FBgn0037372", "EGF_Baseline": "-1.25"}, {"ID": "FBgn0035285", "EGF_Baseline": "-0.52"}, {"ID": "FBgn0033659", "EGF_Baseline": "0.89"}, {"ID": "FBgn0037685", "EGF_Baseline": "0.11"}, {"ID": "FBgn0001134", "EGF_Baseline": "1.18"}, {"ID": "FBgn0030160", "EGF_Baseline": "0.99"}, {"ID": "FBgn0020224", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0031356", "EGF_Baseline": "0.58"}, {"ID": "FBgn0045482", "EGF_Baseline": "0.87"}, {"ID": "FBgn0051660", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0035980", "EGF_Baseline": "-0.49"}, {"ID": "FBgn0016694", "EGF_Baseline": "0.92"}, {"ID": "FBgn0031292", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0039800", "EGF_Baseline": "-0.09"}, {"ID": "FBgn0033368", "EGF_Baseline": "1.46"}, {"ID": "FBgn0052551", "EGF_Baseline": "-0.4"}, {"ID": "FBgn0050048", "EGF_Baseline": "-0.21"}, {"ID": "FBgn0031305", "EGF_Baseline": "0.73"}, {"ID": "FBgn0017448", "EGF_Baseline": "0.26"}, {"ID": "FBgn0038045", "EGF_Baseline": "0.44"}, {"ID": "FBgn0042083", "EGF_Baseline": "1.39"}, {"ID": "FBgn0032727", "EGF_Baseline": "-0.12"}, {"ID": "FBgn0032303", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0033846", "EGF_Baseline": "0.74"}, {"ID": "FBgn0085210", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0052088", "EGF_Baseline": "1.38"}, {"ID": "FBgn0261266", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0062440", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0050324", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0033645", "EGF_Baseline": "0.14"}, {"ID": "FBgn0035248", "EGF_Baseline": "1.68"}, {"ID": "FBgn0051874", "EGF_Baseline": "-0.72"}, {"ID": "FBgn0010397", "EGF_Baseline": "0.7"}, {"ID": "FBgn0085212", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0086906", "EGF_Baseline": "-1.45"}, {"ID": "FBgn0260935", "EGF_Baseline": "-0.72"}, {"ID": "FBgn0031677", "EGF_Baseline": "0.47"}, {"ID": "FBgn0039454", "EGF_Baseline": "-0.33"}, {"ID": "FBgn0025394", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0250848", "EGF_Baseline": "-1.17"}, {"ID": "FBgn0030667", "EGF_Baseline": "0.68"}, {"ID": "FBgn0024230", "EGF_Baseline": "-0.42"}, {"ID": "FBgn0039519", "EGF_Baseline": "1.28"}, {"ID": "FBgn0036515", "EGF_Baseline": "-0.39"}, {"ID": "FBgn0010434", "EGF_Baseline": "-0.07"}, {"ID": "FBgn0032115", "EGF_Baseline": "-1.52"}, {"ID": "FBgn0034307", "EGF_Baseline": "-0.42"}, {"ID": "FBgn0020506", "EGF_Baseline": "1.09"}, {"ID": "FBgn0032335", "EGF_Baseline": "-1.25"}, {"ID": "FBgn0038498", "EGF_Baseline": "0.95"}, {"ID": "FBgn0085420", "EGF_Baseline": "1.79"}, {"ID": "FBgn0261859", "EGF_Baseline": "1.32"}, {"ID": "FBgn0036712", "EGF_Baseline": "0.15"}, {"ID": "FBgn0014032", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0028936", "EGF_Baseline": "0.55"}, {"ID": "FBgn0034605", "EGF_Baseline": "-0.26"}, {"ID": "FBgn0038808", "EGF_Baseline": "0.4"}, {"ID": "FBgn0025676", "EGF_Baseline": "-1.28"}, {"ID": "FBgn0053203", "EGF_Baseline": "0.99"}, {"ID": "FBgn0015299", "EGF_Baseline": "-1.65"}, {"ID": "FBgn0020240", "EGF_Baseline": "-0.52"}, {"ID": "FBgn0032140", "EGF_Baseline": "1.06"}, {"ID": "FBgn0039430", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0036036", "EGF_Baseline": "0.42"}, {"ID": "FBgn0030815", "EGF_Baseline": "0.82"}, {"ID": "FBgn0026086", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0035956", "EGF_Baseline": "0.61"}, {"ID": "FBgn0025615", "EGF_Baseline": "1.25"}, {"ID": "FBgn0038412", "EGF_Baseline": "0.78"}, {"ID": "FBgn0042126", "EGF_Baseline": "-0.91"}, {"ID": "FBgn0035878", "EGF_Baseline": "1.09"}, {"ID": "FBgn0038601", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0022935", "EGF_Baseline": "3.77"}, {"ID": "FBgn0030223", "EGF_Baseline": "-0.71"}, {"ID": "FBgn0086687", "EGF_Baseline": "-3.23"}, {"ID": "FBgn0035742", "EGF_Baseline": "-0.32"}, {"ID": "FBgn0085454", "EGF_Baseline": "-2.44"}, {"ID": "FBgn0037910", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0003486", "EGF_Baseline": "1.16"}, {"ID": "FBgn0037324", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0038196", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0030545", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0052374", "EGF_Baseline": "0.89"}, {"ID": "FBgn0052548", "EGF_Baseline": "0.01"}, {"ID": "FBgn0029679", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0031032", "EGF_Baseline": "1.2"}, {"ID": "FBgn0010042", "EGF_Baseline": "0.31"}, {"ID": "FBgn0004863", "EGF_Baseline": "6.61"}, {"ID": "FBgn0039132", "EGF_Baseline": "0.94"}, {"ID": "FBgn0039271", "EGF_Baseline": "0.64"}, {"ID": "FBgn0031483", "EGF_Baseline": "-1.64"}, {"ID": "FBgn0052571", "EGF_Baseline": "0.61"}, {"ID": "FBgn0002044", "EGF_Baseline": "0.77"}, {"ID": "FBgn0038316", "EGF_Baseline": "-0.54"}, {"ID": "FBgn0011760", "EGF_Baseline": "-2.09"}, {"ID": "FBgn0035438", "EGF_Baseline": "-1.34"}, {"ID": "FBgn0038292", "EGF_Baseline": "-0.35"}, {"ID": "FBgn0015818", "EGF_Baseline": "4.83"}, {"ID": "FBgn0003720", "EGF_Baseline": "-0.29"}, {"ID": "FBgn0036043", "EGF_Baseline": "1.59"}, {"ID": "FBgn0259234", "EGF_Baseline": "-0.27"}, {"ID": "FBgn0036988", "EGF_Baseline": "1.06"}, {"ID": "FBgn0034122", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0032420", "EGF_Baseline": "8.34151625118546e-03"}, {"ID": "FBgn0021750", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0000552", "EGF_Baseline": "-1.21"}, {"ID": "FBgn0051141", "EGF_Baseline": "-0.31"}, {"ID": "FBgn0028990", "EGF_Baseline": "-1.52"}, {"ID": "FBgn0037724", "EGF_Baseline": "0.49"}, {"ID": "FBgn0035567", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0004647", "EGF_Baseline": "0.49"}, {"ID": "FBgn0036361", "EGF_Baseline": "0.43"}, {"ID": "FBgn0002736", "EGF_Baseline": "0.59"}, {"ID": "FBgn0036747", "EGF_Baseline": "-0.45"}, {"ID": "FBgn0052579", "EGF_Baseline": "-1.22"}, {"ID": "FBgn0034870", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0036994", "EGF_Baseline": "0.37"}, {"ID": "FBgn0011785", "EGF_Baseline": "0.7"}, {"ID": "FBgn0037110", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0025463", "EGF_Baseline": "1.62"}, {"ID": "FBgn0028867", "EGF_Baseline": "1.26"}, {"ID": "FBgn0031690", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0036696", "EGF_Baseline": "0.2"}, {"ID": "FBgn0032205", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0051454", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0025866", "EGF_Baseline": "0.92"}, {"ID": "FBgn0035443", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0050414", "EGF_Baseline": "-1.51"}, {"ID": "FBgn0036742", "EGF_Baseline": "-1.35"}, {"ID": "FBgn0085437", "EGF_Baseline": "0.97"}, {"ID": "FBgn0026679", "EGF_Baseline": "-0.66"}, {"ID": "FBgn0038979", "EGF_Baseline": "1.46"}, {"ID": "FBgn0027568", "EGF_Baseline": "1.29"}, {"ID": "FBgn0034474", "EGF_Baseline": "1.18"}, {"ID": "FBgn0039756", "EGF_Baseline": "1.09"}, {"ID": "FBgn0002891", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0038471", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0051092", "EGF_Baseline": "-1.27"}, {"ID": "FBgn0031936", "EGF_Baseline": "-1.54"}, {"ID": "FBgn0035632", "EGF_Baseline": "-0.46"}, {"ID": "FBgn0082582", "EGF_Baseline": "-2.03"}, {"ID": "FBgn0024366", "EGF_Baseline": "0.9"}, {"ID": "FBgn0039259", "EGF_Baseline": "-1.66"}, {"ID": "FBgn0032088", "EGF_Baseline": "-0.28"}, {"ID": "FBgn0260776", "EGF_Baseline": "0.66"}, {"ID": "FBgn0029747", "EGF_Baseline": "0.14"}, {"ID": "FBgn0022893", "EGF_Baseline": "-1.16"}, {"ID": "FBgn0038733", "EGF_Baseline": "1.07"}, {"ID": "FBgn0039668", "EGF_Baseline": "0.45"}, {"ID": "FBgn0034346", "EGF_Baseline": "0.97"}, {"ID": "FBgn0001075", "EGF_Baseline": "-1.56"}, {"ID": "FBgn0034529", "EGF_Baseline": "0.62"}, {"ID": "FBgn0033851", "EGF_Baseline": "-1.68"}, {"ID": "FBgn0036301", "EGF_Baseline": "1.01"}, {"ID": "FBgn0029977", "EGF_Baseline": "0.23"}, {"ID": "FBgn0004841", "EGF_Baseline": "0.9"}, {"ID": "FBgn0032801", "EGF_Baseline": "1.12"}, {"ID": "FBgn0034468", "EGF_Baseline": "1.05"}, {"ID": "FBgn0003656", "EGF_Baseline": "0.76"}, {"ID": "FBgn0085310", "EGF_Baseline": "0.37"}, {"ID": "FBgn0052485", "EGF_Baseline": "-1.82"}, {"ID": "FBgn0021818", "EGF_Baseline": "-1.15"}, {"ID": "FBgn0039687", "EGF_Baseline": "1.33"}, {"ID": "FBgn0260985", "EGF_Baseline": "-1.55"}, {"ID": "FBgn0031697", "EGF_Baseline": "0.55"}, {"ID": "FBgn0052528", "EGF_Baseline": "-1.57"}, {"ID": "FBgn0038465", "EGF_Baseline": "-1.16"}, {"ID": "FBgn0032382", "EGF_Baseline": "0.62"}, {"ID": "FBgn0033124", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0034660", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0036397", "EGF_Baseline": "-1.49"}, {"ID": "FBgn0032442", "EGF_Baseline": "-1.8"}, {"ID": "FBgn0032593", "EGF_Baseline": "1.37"}, {"ID": "FBgn0050037", "EGF_Baseline": "0.28"}, {"ID": "FBgn0034412", "EGF_Baseline": "0.32"}, {"ID": "FBgn0038693", "EGF_Baseline": "0.47"}, {"ID": "FBgn0028482", "EGF_Baseline": "-1.42"}, {"ID": "FBgn0043025", "EGF_Baseline": "0.46"}, {"ID": "FBgn0037172", "EGF_Baseline": "1.49"}, {"ID": "FBgn0039487", "EGF_Baseline": "-1.7"}, {"ID": "FBgn0033667", "EGF_Baseline": "0.53"}, {"ID": "FBgn0004629", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0031474", "EGF_Baseline": "-0.43"}, {"ID": "FBgn0038788", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0029514", "EGF_Baseline": "-1.2"}, {"ID": "FBgn0052221", "EGF_Baseline": "2.49"}, {"ID": "FBgn0052177", "EGF_Baseline": "-0.59"}, {"ID": "FBgn0031288", "EGF_Baseline": "1.36"}, {"ID": "FBgn0030435", "EGF_Baseline": "1.06"}, {"ID": "FBgn0038134", "EGF_Baseline": "-1"}, {"ID": "FBgn0033427", "EGF_Baseline": "-1.23"}, {"ID": "FBgn0038984", "EGF_Baseline": "1.46"}, {"ID": "FBgn0030148", "EGF_Baseline": "0.51"}, {"ID": "FBgn0014850", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0034046", "EGF_Baseline": "1.23"}, {"ID": "FBgn0037519", "EGF_Baseline": "-1.43"}, {"ID": "FBgn0032709", "EGF_Baseline": "-0.45"}, {"ID": "FBgn0050169", "EGF_Baseline": "0.55"}, {"ID": "FBgn0038225", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0026411", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0033453", "EGF_Baseline": "0.74"}, {"ID": "FBgn0038950", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0029970", "EGF_Baseline": "0.46"}, {"ID": "FBgn0039697", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0035186", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0013467", "EGF_Baseline": "-2.01"}, {"ID": "FBgn0015582", "EGF_Baseline": "-0.19"}, {"ID": "FBgn0022213", "EGF_Baseline": "1.26"}, {"ID": "FBgn0030001", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0027291", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0034496", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0051051", "EGF_Baseline": "-1.61"}, {"ID": "FBgn0036501", "EGF_Baseline": "-0.81"}, {"ID": "FBgn0037613", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0085217", "EGF_Baseline": "0.7"}, {"ID": "FBgn0004698", "EGF_Baseline": "-1.76"}, {"ID": "FBgn0036551", "EGF_Baseline": "-1.25"}, {"ID": "FBgn0051858", "EGF_Baseline": "1.2"}, {"ID": "FBgn0013746", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0259224", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0051072", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0015075", "EGF_Baseline": "-0.39"}, {"ID": "FBgn0010520", "EGF_Baseline": "-1.62"}, {"ID": "FBgn0043070", "EGF_Baseline": "-1.83"}, {"ID": "FBgn0034231", "EGF_Baseline": "0.59"}, {"ID": "FBgn0040031", "EGF_Baseline": "1.21"}, {"ID": "FBgn0050052", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0030631", "EGF_Baseline": "-1.36"}, {"ID": "FBgn0035084", "EGF_Baseline": "0.73"}, {"ID": "FBgn0034560", "EGF_Baseline": "1.23"}, {"ID": "FBgn0036203", "EGF_Baseline": "0.72"}, {"ID": "FBgn0043854", "EGF_Baseline": "-0.52"}, {"ID": "FBgn0015247", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0051785", "EGF_Baseline": "-0.24"}, {"ID": "FBgn0035571", "EGF_Baseline": "-1.63"}, {"ID": "FBgn0039776", "EGF_Baseline": "0.94"}, {"ID": "FBgn0011016", "EGF_Baseline": "0.7"}, {"ID": "FBgn0039882", "EGF_Baseline": "0.74"}, {"ID": "FBgn0033439", "EGF_Baseline": "-0.56"}, {"ID": "FBgn0041238", "EGF_Baseline": "1.75"}, {"ID": "FBgn0039451", "EGF_Baseline": "-0.91"}, {"ID": "FBgn0036382", "EGF_Baseline": "0.88"}, {"ID": "FBgn0041246", "EGF_Baseline": "-0.37"}, {"ID": "FBgn0035216", "EGF_Baseline": "-0.32"}, {"ID": "FBgn0004622", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0035371", "EGF_Baseline": "-0.44"}, {"ID": "FBgn0261267", "EGF_Baseline": "1.2"}, {"ID": "FBgn0030006", "EGF_Baseline": "0.24"}, {"ID": "FBgn0034033", "EGF_Baseline": "1.06"}, {"ID": "FBgn0036320", "EGF_Baseline": "-1.65"}, {"ID": "FBgn0039099", "EGF_Baseline": "0.41"}, {"ID": "FBgn0011596", "EGF_Baseline": "1.33"}, {"ID": "FBgn0033296", "EGF_Baseline": "0.42"}, {"ID": "FBgn0040020", "EGF_Baseline": "0.69"}, {"ID": "FBgn0026181", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0040795", "EGF_Baseline": "-1.81"}, {"ID": "FBgn0053208", "EGF_Baseline": "-1.69"}, {"ID": "FBgn0002856", "EGF_Baseline": "-0.31"}, {"ID": "FBgn0025335", "EGF_Baseline": "1.29"}, {"ID": "FBgn0037338", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0032125", "EGF_Baseline": "-0.98"}, {"ID": "FBgn0031299", "EGF_Baseline": "0.57"}, {"ID": "FBgn0038095", "EGF_Baseline": "-1.16"}, {"ID": "FBgn0038768", "EGF_Baseline": "-1.65"}, {"ID": "FBgn0011832", "EGF_Baseline": "0.93"}, {"ID": "FBgn0051262", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0037718", "EGF_Baseline": "-1"}, {"ID": "FBgn0036908", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0031157", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0023091", "EGF_Baseline": "-0.16"}, {"ID": "FBgn0038865", "EGF_Baseline": "-0.13"}, {"ID": "FBgn0032453", "EGF_Baseline": "0.75"}, {"ID": "FBgn0051030", "EGF_Baseline": "1.88"}, {"ID": "FBgn0003372", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0051973", "EGF_Baseline": "-1.71"}, {"ID": "FBgn0031602", "EGF_Baseline": "-1.71"}, {"ID": "FBgn0039690", "EGF_Baseline": "-1.23"}, {"ID": "FBgn0034366", "EGF_Baseline": "-1.48"}, {"ID": "FBgn0038740", "EGF_Baseline": "0.83"}, {"ID": "FBgn0034727", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0085427", "EGF_Baseline": "-2.13"}, {"ID": "FBgn0033605", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0033721", "EGF_Baseline": "-1.94"}, {"ID": "FBgn0039582", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0002863", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0034206", "EGF_Baseline": "-1.17"}, {"ID": "FBgn0033579", "EGF_Baseline": "-1.86"}, {"ID": "FBgn0051081", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0016059", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0011742", "EGF_Baseline": "-1.1"}, {"ID": "FBgn0040362", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0004228", "EGF_Baseline": "-1.46"}, {"ID": "FBgn0034284", "EGF_Baseline": "-0.23"}, {"ID": "FBgn0002973", "EGF_Baseline": "0.6"}, {"ID": "FBgn0039149", "EGF_Baseline": "-0.43"}, {"ID": "FBgn0030246", "EGF_Baseline": "0.89"}, {"ID": "FBgn0034859", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0036059", "EGF_Baseline": "1.67"}, {"ID": "FBgn0030244", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0001941", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0033871", "EGF_Baseline": "1.53"}, {"ID": "FBgn0020412", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0033449", "EGF_Baseline": "-0.38"}, {"ID": "FBgn0045468", "EGF_Baseline": "0.8"}, {"ID": "FBgn0004512", "EGF_Baseline": "0.62"}, {"ID": "FBgn0037270", "EGF_Baseline": "0.7"}, {"ID": "FBgn0029996", "EGF_Baseline": "-1.95"}, {"ID": "FBgn0037996", "EGF_Baseline": "0.41"}, {"ID": "FBgn0024989", "EGF_Baseline": "0.56"}, {"ID": "FBgn0023506", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0003046", "EGF_Baseline": "0.6"}, {"ID": "FBgn0003882", "EGF_Baseline": "-1.76"}, {"ID": "FBgn0038814", "EGF_Baseline": "1.43"}, {"ID": "FBgn0261394", "EGF_Baseline": "0.74"}, {"ID": "FBgn0050062", "EGF_Baseline": "-0.43"}, {"ID": "FBgn0037473", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0050432", "EGF_Baseline": "1.26"}, {"ID": "FBgn0032072", "EGF_Baseline": "-1"}, {"ID": "FBgn0058053", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0039406", "EGF_Baseline": "-0.14"}, {"ID": "FBgn0013983", "EGF_Baseline": "0.4"}, {"ID": "FBgn0032642", "EGF_Baseline": "-1.86"}, {"ID": "FBgn0041100", "EGF_Baseline": "0.46"}, {"ID": "FBgn0051606", "EGF_Baseline": "-0.66"}, {"ID": "FBgn0085362", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0037750", "EGF_Baseline": "-0.31"}, {"ID": "FBgn0039213", "EGF_Baseline": "0.62"}, {"ID": "FBgn0034485", "EGF_Baseline": "0.57"}, {"ID": "FBgn0037117", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0010303", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0023179", "EGF_Baseline": "1.36"}, {"ID": "FBgn0038565", "EGF_Baseline": "-1.47"}, {"ID": "FBgn0030808", "EGF_Baseline": "1.94"}, {"ID": "FBgn0036926", "EGF_Baseline": "-1.77"}, {"ID": "FBgn0031772", "EGF_Baseline": "0.9"}, {"ID": "FBgn0013531", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0032835", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0036258", "EGF_Baseline": "1.64"}, {"ID": "FBgn0036192", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0001235", "EGF_Baseline": "0.7"}, {"ID": "FBgn0036686", "EGF_Baseline": "0.83"}, {"ID": "FBgn0034659", "EGF_Baseline": "0.63"}, {"ID": "FBgn0045443", "EGF_Baseline": "0.73"}, {"ID": "FBgn0035768", "EGF_Baseline": "-0.45"}, {"ID": "FBgn0024998", "EGF_Baseline": "1.73"}, {"ID": "FBgn0032649", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0031536", "EGF_Baseline": "1.89"}, {"ID": "FBgn0036641", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0025740", "EGF_Baseline": "-1.25"}, {"ID": "FBgn0002306", "EGF_Baseline": "1.1"}, {"ID": "FBgn0028961", "EGF_Baseline": "-1.49"}, {"ID": "FBgn0004924", "EGF_Baseline": "-2.61"}, {"ID": "FBgn0025558", "EGF_Baseline": "0.83"}, {"ID": "FBgn0037046", "EGF_Baseline": "1"}, {"ID": "FBgn0031108", "EGF_Baseline": "1.47"}, {"ID": "FBgn0030261", "EGF_Baseline": "1.28"}, {"ID": "FBgn0033095", "EGF_Baseline": "-0.3"}, {"ID": "FBgn0038124", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0005671", "EGF_Baseline": "1.19"}, {"ID": "FBgn0051803", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0041181", "EGF_Baseline": "0.56"}, {"ID": "FBgn0014018", "EGF_Baseline": "-0.06"}, {"ID": "FBgn0035103", "EGF_Baseline": "-1.62"}, {"ID": "FBgn0013548", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0051010", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0050424", "EGF_Baseline": "1.33"}, {"ID": "FBgn0030207", "EGF_Baseline": "-0.42"}, {"ID": "FBgn0028532", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0261479", "EGF_Baseline": "-0.18"}, {"ID": "FBgn0039703", "EGF_Baseline": "0.08"}, {"ID": "FBgn0005391", "EGF_Baseline": "1.5"}, {"ID": "FBgn0022770", "EGF_Baseline": "0.54"}, {"ID": "FBgn0028837", "EGF_Baseline": "-1.86"}, {"ID": "FBgn0027608", "EGF_Baseline": "-1.23"}, {"ID": "FBgn0034599", "EGF_Baseline": "0.98"}, {"ID": "FBgn0034459", "EGF_Baseline": "0.18"}, {"ID": "FBgn0027081", "EGF_Baseline": "-1.35"}, {"ID": "FBgn0039177", "EGF_Baseline": "0.49"}, {"ID": "FBgn0003683", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0036967", "EGF_Baseline": "0.95"}, {"ID": "FBgn0035612", "EGF_Baseline": "2.09"}, {"ID": "FBgn0054011", "EGF_Baseline": "-1.74"}, {"ID": "FBgn0038008", "EGF_Baseline": "-0.24"}, {"ID": "FBgn0053461", "EGF_Baseline": "0.84"}, {"ID": "FBgn0035132", "EGF_Baseline": "0.6"}, {"ID": "FBgn0031430", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0052160", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0031045", "EGF_Baseline": "0.88"}, {"ID": "FBgn0036906", "EGF_Baseline": "1.4"}, {"ID": "FBgn0028880", "EGF_Baseline": "0.99"}, {"ID": "FBgn0031119", "EGF_Baseline": "-0.81"}, {"ID": "FBgn0033728", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0003977", "EGF_Baseline": "-0.65"}, {"ID": "FBgn0030852", "EGF_Baseline": "-0.66"}, {"ID": "FBgn0036892", "EGF_Baseline": "0.52"}, {"ID": "FBgn0037024", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0011723", "EGF_Baseline": "-0.2"}, {"ID": "FBgn0028408", "EGF_Baseline": "-1.23"}, {"ID": "FBgn0035875", "EGF_Baseline": "-1.47"}, {"ID": "FBgn0040743", "EGF_Baseline": "0.99"}, {"ID": "FBgn0030528", "EGF_Baseline": "0.28"}, {"ID": "FBgn0038944", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0027090", "EGF_Baseline": "-1.71"}, {"ID": "FBgn0031580", "EGF_Baseline": "0.34"}, {"ID": "FBgn0051226", "EGF_Baseline": "-1.26"}, {"ID": "FBgn0033526", "EGF_Baseline": "-0.27"}, {"ID": "FBgn0037816", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0053527", "EGF_Baseline": "1.42"}, {"ID": "FBgn0036015", "EGF_Baseline": "1.2"}, {"ID": "FBgn0002780", "EGF_Baseline": "-0.56"}, {"ID": "FBgn0038079", "EGF_Baseline": "-0.24"}, {"ID": "FBgn0031558", "EGF_Baseline": "1.19"}, {"ID": "FBgn0051221", "EGF_Baseline": "-0.28"}, {"ID": "FBgn0034758", "EGF_Baseline": "0.54"}, {"ID": "FBgn0038527", "EGF_Baseline": "1.05"}, {"ID": "FBgn0037737", "EGF_Baseline": "0.99"}, {"ID": "FBgn0031830", "EGF_Baseline": "-2.46"}, {"ID": "FBgn0034073", "EGF_Baseline": "0.43"}, {"ID": "FBgn0053260", "EGF_Baseline": "-1.78"}, {"ID": "FBgn0030701", "EGF_Baseline": "1.96"}, {"ID": "FBgn0038452", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0038083", "EGF_Baseline": "0.23"}, {"ID": "FBgn0036888", "EGF_Baseline": "0.44"}, {"ID": "FBgn0034194", "EGF_Baseline": "-1.86"}, {"ID": "FBgn0039680", "EGF_Baseline": "0.37"}, {"ID": "FBgn0029963", "EGF_Baseline": "0.98"}, {"ID": "FBgn0054032", "EGF_Baseline": "-1.7"}, {"ID": "FBgn0032848", "EGF_Baseline": "0.42"}, {"ID": "FBgn0032913", "EGF_Baseline": "1.22"}, {"ID": "FBgn0035587", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0028292", "EGF_Baseline": "0.46"}, {"ID": "FBgn0032131", "EGF_Baseline": "1.26"}, {"ID": "FBgn0029095", "EGF_Baseline": "-1.22"}, {"ID": "FBgn0032235", "EGF_Baseline": "-0.43"}, {"ID": "FBgn0031855", "EGF_Baseline": "-0.59"}, {"ID": "FBgn0037031", "EGF_Baseline": "0.17"}, {"ID": "FBgn0039531", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0025571", "EGF_Baseline": "0.61"}, {"ID": "FBgn0039140", "EGF_Baseline": "0.47"}, {"ID": "FBgn0035546", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0035951", "EGF_Baseline": "1.45"}, {"ID": "FBgn0035816", "EGF_Baseline": "1.03"}, {"ID": "FBgn0044051", "EGF_Baseline": "1.16"}, {"ID": "FBgn0035158", "EGF_Baseline": "0.43"}, {"ID": "FBgn0036343", "EGF_Baseline": "-0.03"}, {"ID": "FBgn0051048", "EGF_Baseline": "1.8"}, {"ID": "FBgn0031574", "EGF_Baseline": "1.84"}, {"ID": "FBgn0032248", "EGF_Baseline": "0.41"}, {"ID": "FBgn0040730", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0035673", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0015905", "EGF_Baseline": "-1.52"}, {"ID": "FBgn0039969", "EGF_Baseline": "-1.48"}, {"ID": "FBgn0034507", "EGF_Baseline": "-0.65"}, {"ID": "FBgn0012058", "EGF_Baseline": "8.01"}, {"ID": "FBgn0032433", "EGF_Baseline": "1.28"}, {"ID": "FBgn0085294", "EGF_Baseline": "-0.52"}, {"ID": "FBgn0004510", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0037004", "EGF_Baseline": "-1.6"}, {"ID": "FBgn0003965", "EGF_Baseline": "-0.18"}, {"ID": "FBgn0002561", "EGF_Baseline": "-1.63"}, {"ID": "FBgn0085409", "EGF_Baseline": "-1"}, {"ID": "FBgn0032372", "EGF_Baseline": "0.62"}, {"ID": "FBgn0033352", "EGF_Baseline": "-0.66"}, {"ID": "FBgn0000283", "EGF_Baseline": "-0.28"}, {"ID": "FBgn0002924", "EGF_Baseline": "0.59"}, {"ID": "FBgn0260964", "EGF_Baseline": "1.85"}, {"ID": "FBgn0051201", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0250820", "EGF_Baseline": "1.37"}, {"ID": "FBgn0000303", "EGF_Baseline": "-2.01"}, {"ID": "FBgn0033359", "EGF_Baseline": "-1.31"}, {"ID": "FBgn0028474", "EGF_Baseline": "-1.92"}, {"ID": "FBgn0034495", "EGF_Baseline": "-0.45"}, {"ID": "FBgn0025631", "EGF_Baseline": "1.56"}, {"ID": "FBgn0002989", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0031495", "EGF_Baseline": "-0.37"}, {"ID": "FBgn0033756", "EGF_Baseline": "1.12"}, {"ID": "FBgn0052683", "EGF_Baseline": "-1.46"}, {"ID": "FBgn0259824", "EGF_Baseline": "0.16"}, {"ID": "FBgn0035777", "EGF_Baseline": "-0.84"}, {"ID": "FBgn0027796", "EGF_Baseline": "-1.7"}, {"ID": "FBgn0028872", "EGF_Baseline": "0.69"}, {"ID": "FBgn0032400", "EGF_Baseline": "-7.24"}, {"ID": "FBgn0036290", "EGF_Baseline": "-1.15"}, {"ID": "FBgn0033000", "EGF_Baseline": "-1.16"}, {"ID": "FBgn0260742", "EGF_Baseline": "0.81"}, {"ID": "FBgn0260962", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0039592", "EGF_Baseline": "1.19"}, {"ID": "FBgn0028496", "EGF_Baseline": "1.2"}, {"ID": "FBgn0035234", "EGF_Baseline": "-0.67"}, {"ID": "FBgn0261675", "EGF_Baseline": "1.47"}, {"ID": "FBgn0052305", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0034897", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0035423", "EGF_Baseline": "0.55"}, {"ID": "FBgn0000392", "EGF_Baseline": "0.92"}, {"ID": "FBgn0033710", "EGF_Baseline": "0.39"}, {"ID": "FBgn0051823", "EGF_Baseline": "0.18"}, {"ID": "FBgn0033718", "EGF_Baseline": "-1.48"}, {"ID": "FBgn0004400", "EGF_Baseline": "0.88"}, {"ID": "FBgn0052409", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0000405", "EGF_Baseline": "0.58"}, {"ID": "FBgn0053307", "EGF_Baseline": "2.04"}, {"ID": "FBgn0030100", "EGF_Baseline": "-0.5"}, {"ID": "FBgn0029714", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0031318", "EGF_Baseline": "-1.24"}, {"ID": "FBgn0051345", "EGF_Baseline": "1.17"}, {"ID": "FBgn0037902", "EGF_Baseline": "1.16"}, {"ID": "FBgn0259678", "EGF_Baseline": "-0.66"}, {"ID": "FBgn0038716", "EGF_Baseline": "-0.39"}, {"ID": "FBgn0030485", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0045843", "EGF_Baseline": "-0.4"}, {"ID": "FBgn0039820", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0030803", "EGF_Baseline": "-0.41"}, {"ID": "FBgn0261682", "EGF_Baseline": "-1.36"}, {"ID": "FBgn0015550", "EGF_Baseline": "1.1"}, {"ID": "FBgn0031725", "EGF_Baseline": "-0.91"}, {"ID": "FBgn0000615", "EGF_Baseline": "0.4"}, {"ID": "FBgn0036973", "EGF_Baseline": "0.81"}, {"ID": "FBgn0032315", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0051019", "EGF_Baseline": "-1.76"}, {"ID": "FBgn0053265", "EGF_Baseline": "0.7"}, {"ID": "FBgn0039417", "EGF_Baseline": "1.7"}, {"ID": "FBgn0035258", "EGF_Baseline": "1.44"}, {"ID": "FBgn0030158", "EGF_Baseline": "1.23"}, {"ID": "FBgn0010406", "EGF_Baseline": "2.16"}, {"ID": "FBgn0033627", "EGF_Baseline": "0.67"}, {"ID": "FBgn0016794", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0036730", "EGF_Baseline": "-1.33"}, {"ID": "FBgn0017545", "EGF_Baseline": "2.27"}, {"ID": "FBgn0010287", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0031945", "EGF_Baseline": "-1.76"}, {"ID": "FBgn0028645", "EGF_Baseline": "1.13"}, {"ID": "FBgn0040396", "EGF_Baseline": "1.22"}, {"ID": "FBgn0261564", "EGF_Baseline": "1.83"}, {"ID": "FBgn0050271", "EGF_Baseline": "0.4"}, {"ID": "FBgn0026777", "EGF_Baseline": "-0.67"}, {"ID": "FBgn0000339", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0000229", "EGF_Baseline": "0.88"}, {"ID": "FBgn0034716", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0039054", "EGF_Baseline": "-1.96"}, {"ID": "FBgn0031542", "EGF_Baseline": "1.1"}, {"ID": "FBgn0035233", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0037086", "EGF_Baseline": "-1.77"}, {"ID": "FBgn0010015", "EGF_Baseline": "1.32"}, {"ID": "FBgn0016930", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0031195", "EGF_Baseline": "0.88"}, {"ID": "FBgn0039461", "EGF_Baseline": "-1.36"}, {"ID": "FBgn0087013", "EGF_Baseline": "1.92"}, {"ID": "FBgn0034405", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0011284", "EGF_Baseline": "3.85"}, {"ID": "FBgn0039371", "EGF_Baseline": "0.73"}, {"ID": "FBgn0037759", "EGF_Baseline": "-0.66"}, {"ID": "FBgn0001206", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0037521", "EGF_Baseline": "-1.89"}, {"ID": "FBgn0050484", "EGF_Baseline": "0.8"}, {"ID": "FBgn0036784", "EGF_Baseline": "1.11"}, {"ID": "FBgn0050268", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0033376", "EGF_Baseline": "0.7"}, {"ID": "FBgn0053013", "EGF_Baseline": "-0.35"}, {"ID": "FBgn0040687", "EGF_Baseline": "0.51"}, {"ID": "FBgn0050491", "EGF_Baseline": "-0.42"}, {"ID": "FBgn0025457", "EGF_Baseline": "0.65"}, {"ID": "FBgn0261458", "EGF_Baseline": "0.84"}, {"ID": "FBgn0261649", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0038404", "EGF_Baseline": "1.26"}, {"ID": "FBgn0033049", "EGF_Baseline": "0.6"}, {"ID": "FBgn0053189", "EGF_Baseline": "1.49"}, {"ID": "FBgn0000042", "EGF_Baseline": "-0.3"}, {"ID": "FBgn0039170", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0003889", "EGF_Baseline": "2.14"}, {"ID": "FBgn0031256", "EGF_Baseline": "-2.1"}, {"ID": "FBgn0030455", "EGF_Baseline": "-0.59"}, {"ID": "FBgn0037124", "EGF_Baseline": "-1.58"}, {"ID": "FBgn0032814", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0028539", "EGF_Baseline": "-1.92"}, {"ID": "FBgn0053289", "EGF_Baseline": "1.08"}, {"ID": "FBgn0085446", "EGF_Baseline": "-1.72"}, {"ID": "FBgn0032304", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0031405", "EGF_Baseline": "-1.23"}, {"ID": "FBgn0034706", "EGF_Baseline": "-0.37"}, {"ID": "FBgn0020762", "EGF_Baseline": "-1.53"}, {"ID": "FBgn0036536", "EGF_Baseline": "0.6"}, {"ID": "FBgn0031163", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0030360", "EGF_Baseline": "1.09"}, {"ID": "FBgn0036828", "EGF_Baseline": "1.89"}, {"ID": "FBgn0035499", "EGF_Baseline": "-0.72"}, {"ID": "FBgn0030935", "EGF_Baseline": "0.6"}, {"ID": "FBgn0036999", "EGF_Baseline": "-1.27"}, {"ID": "FBgn0033763", "EGF_Baseline": "0.41"}, {"ID": "FBgn0040078", "EGF_Baseline": "-2.71"}, {"ID": "FBgn0017549", "EGF_Baseline": "-0.09"}, {"ID": "FBgn0052064", "EGF_Baseline": "-1.51"}, {"ID": "FBgn0034737", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0032967", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0261401", "EGF_Baseline": "1.38"}, {"ID": "FBgn0030960", "EGF_Baseline": "-0.98"}, {"ID": "FBgn0038369", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0030599", "EGF_Baseline": "0.91"}, {"ID": "FBgn0029834", "EGF_Baseline": "1.36"}, {"ID": "FBgn0015391", "EGF_Baseline": "1.44"}, {"ID": "FBgn0050373", "EGF_Baseline": "-0.45"}, {"ID": "FBgn0038148", "EGF_Baseline": "-0.49"}, {"ID": "FBgn0023181", "EGF_Baseline": "-0.91"}, {"ID": "FBgn0028988", "EGF_Baseline": "-1.48"}, {"ID": "FBgn0030613", "EGF_Baseline": "-0.26"}, {"ID": "FBgn0001105", "EGF_Baseline": "1.46"}, {"ID": "FBgn0033639", "EGF_Baseline": "1.41"}, {"ID": "FBgn0038334", "EGF_Baseline": "0.71"}, {"ID": "FBgn0261380", "EGF_Baseline": "0.09"}, {"ID": "FBgn0031746", "EGF_Baseline": "0.37"}, {"ID": "FBgn0030389", "EGF_Baseline": "0.27"}, {"ID": "FBgn0086910", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0035227", "EGF_Baseline": "-1.69"}, {"ID": "FBgn0085290", "EGF_Baseline": "-1.55"}, {"ID": "FBgn0031054", "EGF_Baseline": "0.48"}, {"ID": "FBgn0037917", "EGF_Baseline": "1.38"}, {"ID": "FBgn0051407", "EGF_Baseline": "-2.03"}, {"ID": "FBgn0031918", "EGF_Baseline": "0.54"}, {"ID": "FBgn0026563", "EGF_Baseline": "1.16"}, {"ID": "FBgn0019990", "EGF_Baseline": "-0.3"}, {"ID": "FBgn0031733", "EGF_Baseline": "0.38"}, {"ID": "FBgn0030321", "EGF_Baseline": "0.27"}, {"ID": "FBgn0035262", "EGF_Baseline": "1.32"}, {"ID": "FBgn0037094", "EGF_Baseline": "-1.17"}, {"ID": "FBgn0033076", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0038460", "EGF_Baseline": "-1.17"}, {"ID": "FBgn0053770", "EGF_Baseline": "1.19"}, {"ID": "FBgn0037809", "EGF_Baseline": "0.54"}, {"ID": "FBgn0038593", "EGF_Baseline": "0.86"}, {"ID": "FBgn0261109", "EGF_Baseline": "-1.15"}, {"ID": "FBgn0004654", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0032615", "EGF_Baseline": "-1.43"}, {"ID": "FBgn0050177", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0031110", "EGF_Baseline": "1.68"}, {"ID": "FBgn0038248", "EGF_Baseline": "-1.2"}, {"ID": "FBgn0053128", "EGF_Baseline": "-2.8"}, {"ID": "FBgn0030297", "EGF_Baseline": "0.62"}, {"ID": "FBgn0010421", "EGF_Baseline": "1.15"}, {"ID": "FBgn0037943", "EGF_Baseline": "-1.4"}, {"ID": "FBgn0036717", "EGF_Baseline": "-0.23"}, {"ID": "FBgn0029947", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0037781", "EGF_Baseline": "-1.87"}, {"ID": "FBgn0029580", "EGF_Baseline": "-1.17"}, {"ID": "FBgn0039462", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0034314", "EGF_Baseline": "1.44"}, {"ID": "FBgn0037076", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0040890", "EGF_Baseline": "1.03"}, {"ID": "FBgn0039709", "EGF_Baseline": "-1.57"}, {"ID": "FBgn0261641", "EGF_Baseline": "-2.42"}, {"ID": "FBgn0032554", "EGF_Baseline": "0.61"}, {"ID": "FBgn0020236", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0038013", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0032682", "EGF_Baseline": "0.58"}, {"ID": "FBgn0030696", "EGF_Baseline": "0.22"}, {"ID": "FBgn0051198", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0037573", "EGF_Baseline": "-2.25"}, {"ID": "FBgn0039563", "EGF_Baseline": "1"}, {"ID": "FBgn0261617", "EGF_Baseline": "2.53"}, {"ID": "FBgn0039474", "EGF_Baseline": "1.42"}, {"ID": "FBgn0034886", "EGF_Baseline": "-0.19"}, {"ID": "FBgn0035390", "EGF_Baseline": "-0.18"}, {"ID": "FBgn0038837", "EGF_Baseline": "1.24"}, {"ID": "FBgn0050281", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0040385", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0031684", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0010241", "EGF_Baseline": "0.93"}, {"ID": "FBgn0052056", "EGF_Baseline": "-1.28"}, {"ID": "FBgn0016122", "EGF_Baseline": "-1.27"}, {"ID": "FBgn0000541", "EGF_Baseline": "-1.23"}, {"ID": "FBgn0040892", "EGF_Baseline": "-1.27"}, {"ID": "FBgn0053552", "EGF_Baseline": "0.62"}, {"ID": "FBgn0036790", "EGF_Baseline": "0.48"}, {"ID": "FBgn0036090", "EGF_Baseline": "-0.54"}, {"ID": "FBgn0039536", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0032822", "EGF_Baseline": "-2.05"}, {"ID": "FBgn0030969", "EGF_Baseline": "0.95"}, {"ID": "FBgn0039050", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0034693", "EGF_Baseline": "3.08"}, {"ID": "FBgn0036368", "EGF_Baseline": "0.47"}, {"ID": "FBgn0052185", "EGF_Baseline": "0.2"}, {"ID": "FBgn0040929", "EGF_Baseline": "0.24"}, {"ID": "FBgn0016061", "EGF_Baseline": "-1.33"}, {"ID": "FBgn0052201", "EGF_Baseline": "0.63"}, {"ID": "FBgn0002775", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0041156", "EGF_Baseline": "-0.41"}, {"ID": "FBgn0038052", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0050359", "EGF_Baseline": "0.37"}, {"ID": "FBgn0037327", "EGF_Baseline": "0.23"}, {"ID": "FBgn0261549", "EGF_Baseline": "0.61"}, {"ID": "FBgn0030810", "EGF_Baseline": "1.23"}, {"ID": "FBgn0035069", "EGF_Baseline": "1.42"}, {"ID": "FBgn0037986", "EGF_Baseline": "1.25"}, {"ID": "FBgn0029693", "EGF_Baseline": "0.46"}, {"ID": "FBgn0035996", "EGF_Baseline": "-0.06"}, {"ID": "FBgn0028509", "EGF_Baseline": "0.62"}, {"ID": "FBgn0046999", "EGF_Baseline": "-1.76"}, {"ID": "FBgn0038725", "EGF_Baseline": "1.66"}, {"ID": "FBgn0034743", "EGF_Baseline": "3.17"}, {"ID": "FBgn0034183", "EGF_Baseline": "-0.16"}, {"ID": "FBgn0035838", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0035400", "EGF_Baseline": "-1.56"}, {"ID": "FBgn0033985", "EGF_Baseline": "0.94"}, {"ID": "FBgn0032018", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0027866", "EGF_Baseline": "0.15"}, {"ID": "FBgn0004956", "EGF_Baseline": "0.81"}, {"ID": "FBgn0026250", "EGF_Baseline": "1.81"}, {"ID": "FBgn0027578", "EGF_Baseline": "-1.59"}, {"ID": "FBgn0034614", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0037885", "EGF_Baseline": "-1.6"}, {"ID": "FBgn0003334", "EGF_Baseline": "0.61"}, {"ID": "FBgn0017430", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0044323", "EGF_Baseline": "-2.46"}, {"ID": "FBgn0000356", "EGF_Baseline": "0.49"}, {"ID": "FBgn0004179", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0083942", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0002566", "EGF_Baseline": "0.83"}, {"ID": "FBgn0039356", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0032480", "EGF_Baseline": "-2.11"}, {"ID": "FBgn0034063", "EGF_Baseline": "0.69"}, {"ID": "FBgn0025383", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0038078", "EGF_Baseline": "0.35"}, {"ID": "FBgn0053113", "EGF_Baseline": "-1.46"}, {"ID": "FBgn0031718", "EGF_Baseline": "-1.87"}, {"ID": "FBgn0000464", "EGF_Baseline": "0.88"}, {"ID": "FBgn0033934", "EGF_Baseline": "1.01"}, {"ID": "FBgn0085246", "EGF_Baseline": "1.25"}, {"ID": "FBgn0003733", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0034788", "EGF_Baseline": "1.59"}, {"ID": "FBgn0086361", "EGF_Baseline": "1.08"}, {"ID": "FBgn0034612", "EGF_Baseline": "-2.13"}, {"ID": "FBgn0052115", "EGF_Baseline": "-1.45"}, {"ID": "FBgn0037601", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0010408", "EGF_Baseline": "1.4"}, {"ID": "FBgn0035770", "EGF_Baseline": "-1.2"}, {"ID": "FBgn0051281", "EGF_Baseline": "0.54"}, {"ID": "FBgn0039850", "EGF_Baseline": "-1.47"}, {"ID": "FBgn0028943", "EGF_Baseline": "-0.65"}, {"ID": "FBgn0033128", "EGF_Baseline": "0.72"}, {"ID": "FBgn0052279", "EGF_Baseline": "-1.23"}, {"ID": "FBgn0250732", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0011361", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0025741", "EGF_Baseline": "-0.2"}, {"ID": "FBgn0040608", "EGF_Baseline": "-1.96"}, {"ID": "FBgn0002590", "EGF_Baseline": "2.67"}, {"ID": "FBgn0033457", "EGF_Baseline": "0.94"}, {"ID": "FBgn0029167", "EGF_Baseline": "-0.67"}, {"ID": "FBgn0030532", "EGF_Baseline": "-1.86"}, {"ID": "FBgn0040390", "EGF_Baseline": "3.62"}, {"ID": "FBgn0033202", "EGF_Baseline": "1.2"}, {"ID": "FBgn0024732", "EGF_Baseline": "0.6"}, {"ID": "FBgn0031951", "EGF_Baseline": "-0.33"}, {"ID": "FBgn0261387", "EGF_Baseline": "1.32"}, {"ID": "FBgn0051678", "EGF_Baseline": "-1.78"}, {"ID": "FBgn0033542", "EGF_Baseline": "0.77"}, {"ID": "FBgn0016977", "EGF_Baseline": "-1.68"}, {"ID": "FBgn0038028", "EGF_Baseline": "-0.84"}, {"ID": "FBgn0034920", "EGF_Baseline": "1.84"}, {"ID": "FBgn0029828", "EGF_Baseline": "0.28"}, {"ID": "FBgn0038611", "EGF_Baseline": "1.23"}, {"ID": "FBgn0036638", "EGF_Baseline": "0.56"}, {"ID": "FBgn0032849", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0003862", "EGF_Baseline": "-0.31"}, {"ID": "FBgn0001970", "EGF_Baseline": "-0.36"}, {"ID": "FBgn0029800", "EGF_Baseline": "0.92"}, {"ID": "FBgn0038067", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0032180", "EGF_Baseline": "-1.73"}, {"ID": "FBgn0031526", "EGF_Baseline": "1"}, {"ID": "FBgn0015338", "EGF_Baseline": "0.87"}, {"ID": "FBgn0026439", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0023540", "EGF_Baseline": "0.48"}, {"ID": "FBgn0028707", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0024975", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0035300", "EGF_Baseline": "0.04"}, {"ID": "FBgn0037038", "EGF_Baseline": "0.45"}, {"ID": "FBgn0010387", "EGF_Baseline": "-1.22"}, {"ID": "FBgn0051547", "EGF_Baseline": "-1.55"}, {"ID": "FBgn0038943", "EGF_Baseline": "0.51"}, {"ID": "FBgn0001983", "EGF_Baseline": "0.61"}, {"ID": "FBgn0052591", "EGF_Baseline": "0.64"}, {"ID": "FBgn0034131", "EGF_Baseline": "0.74"}, {"ID": "FBgn0016984", "EGF_Baseline": "-1.69"}, {"ID": "FBgn0034731", "EGF_Baseline": "0.4"}, {"ID": "FBgn0032773", "EGF_Baseline": "-0.81"}, {"ID": "FBgn0034877", "EGF_Baseline": "-1.86"}, {"ID": "FBgn0035575", "EGF_Baseline": "0.72"}, {"ID": "FBgn0031753", "EGF_Baseline": "0.72"}, {"ID": "FBgn0020392", "EGF_Baseline": "0.3"}, {"ID": "FBgn0033962", "EGF_Baseline": "0.5"}, {"ID": "FBgn0038100", "EGF_Baseline": "1.63"}, {"ID": "FBgn0046698", "EGF_Baseline": "0.56"}, {"ID": "FBgn0051988", "EGF_Baseline": "2.16"}, {"ID": "FBgn0036928", "EGF_Baseline": "-0.36"}, {"ID": "FBgn0050479", "EGF_Baseline": "-0.34"}, {"ID": "FBgn0026430", "EGF_Baseline": "-1.31"}, {"ID": "FBgn0029170", "EGF_Baseline": "0.52"}, {"ID": "FBgn0038545", "EGF_Baseline": "-2.63"}, {"ID": "FBgn0031065", "EGF_Baseline": "-1.5"}, {"ID": "FBgn0053278", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0052248", "EGF_Baseline": "2.05"}, {"ID": "FBgn0013334", "EGF_Baseline": "-1.49"}, {"ID": "FBgn0031970", "EGF_Baseline": "0.24"}, {"ID": "FBgn0033972", "EGF_Baseline": "0.36"}, {"ID": "FBgn0039120", "EGF_Baseline": "6.27"}, {"ID": "FBgn0259171", "EGF_Baseline": "-1.55"}, {"ID": "FBgn0038888", "EGF_Baseline": "-1.58"}, {"ID": "FBgn0032914", "EGF_Baseline": "-0.32"}, {"ID": "FBgn0030087", "EGF_Baseline": "-1.48"}, {"ID": "FBgn0053121", "EGF_Baseline": "0.28"}, {"ID": "FBgn0030597", "EGF_Baseline": "-0.67"}, {"ID": "FBgn0029854", "EGF_Baseline": "-0.16"}, {"ID": "FBgn0036942", "EGF_Baseline": "1.15"}, {"ID": "FBgn0028997", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0031630", "EGF_Baseline": "-1.35"}, {"ID": "FBgn0053476", "EGF_Baseline": "0.5"}, {"ID": "FBgn0051109", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0032938", "EGF_Baseline": "-1.58"}, {"ID": "FBgn0034793", "EGF_Baseline": "1"}, {"ID": "FBgn0024558", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0040491", "EGF_Baseline": "2.28"}, {"ID": "FBgn0052652", "EGF_Baseline": "1.61"}, {"ID": "FBgn0037391", "EGF_Baseline": "0.7"}, {"ID": "FBgn0032477", "EGF_Baseline": "-0.81"}, {"ID": "FBgn0025684", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0005590", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0038753", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0034274", "EGF_Baseline": "0.96"}, {"ID": "FBgn0032082", "EGF_Baseline": "0.59"}, {"ID": "FBgn0037654", "EGF_Baseline": "-0.28"}, {"ID": "FBgn0038217", "EGF_Baseline": "-1.97"}, {"ID": "FBgn0037661", "EGF_Baseline": "0.56"}, {"ID": "FBgn0039335", "EGF_Baseline": "-1.43"}, {"ID": "FBgn0043576", "EGF_Baseline": "0.41"}, {"ID": "FBgn0032654", "EGF_Baseline": "-1.34"}, {"ID": "FBgn0024957", "EGF_Baseline": "0.54"}, {"ID": "FBgn0042135", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0051028", "EGF_Baseline": "0.82"}, {"ID": "FBgn0034638", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0051501", "EGF_Baseline": "1.76"}, {"ID": "FBgn0045770", "EGF_Baseline": "-0.41"}, {"ID": "FBgn0038828", "EGF_Baseline": "0.44"}, {"ID": "FBgn0035521", "EGF_Baseline": "0.78"}, {"ID": "FBgn0085276", "EGF_Baseline": "1"}, {"ID": "FBgn0050369", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0030742", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0260794", "EGF_Baseline": "-1.25"}, {"ID": "FBgn0033547", "EGF_Baseline": "0.35"}, {"ID": "FBgn0039839", "EGF_Baseline": "1.78"}, {"ID": "FBgn0259743", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0031720", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0030356", "EGF_Baseline": "1.28"}, {"ID": "FBgn0031437", "EGF_Baseline": "2.47"}, {"ID": "FBgn0033265", "EGF_Baseline": "-0.77"}, {"ID": "FBgn0015781", "EGF_Baseline": "0.68"}, {"ID": "FBgn0004832", "EGF_Baseline": "-1.48"}, {"ID": "FBgn0034117", "EGF_Baseline": "1.61"}, {"ID": "FBgn0086656", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0001084", "EGF_Baseline": "0.66"}, {"ID": "FBgn0061476", "EGF_Baseline": "1.18"}, {"ID": "FBgn0033979", "EGF_Baseline": "0.64"}, {"ID": "FBgn0020443", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0039419", "EGF_Baseline": "-0.42"}, {"ID": "FBgn0031985", "EGF_Baseline": "0.85"}, {"ID": "FBgn0032987", "EGF_Baseline": "4.51"}, {"ID": "FBgn0031779", "EGF_Baseline": "0.55"}, {"ID": "FBgn0038332", "EGF_Baseline": "0.4"}, {"ID": "FBgn0029174", "EGF_Baseline": "-0.65"}, {"ID": "FBgn0032296", "EGF_Baseline": "-1.72"}, {"ID": "FBgn0030801", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0051102", "EGF_Baseline": "0.6"}, {"ID": "FBgn0027111", "EGF_Baseline": "2.17"}, {"ID": "FBgn0034835", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0052062", "EGF_Baseline": "-1.49"}, {"ID": "FBgn0259744", "EGF_Baseline": "1.23"}, {"ID": "FBgn0051924", "EGF_Baseline": "1.72"}, {"ID": "FBgn0035600", "EGF_Baseline": "-2.02"}, {"ID": "FBgn0053214", "EGF_Baseline": "-2.41"}, {"ID": "FBgn0019947", "EGF_Baseline": "-0.43"}, {"ID": "FBgn0032901", "EGF_Baseline": "3.33"}, {"ID": "FBgn0039386", "EGF_Baseline": "0.76"}, {"ID": "FBgn0027654", "EGF_Baseline": "0.16"}, {"ID": "FBgn0037332", "EGF_Baseline": "-1.49"}, {"ID": "FBgn0065108", "EGF_Baseline": "0.44"}, {"ID": "FBgn0036842", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0013949", "EGF_Baseline": "-0.24"}, {"ID": "FBgn0030780", "EGF_Baseline": "0.22"}, {"ID": "FBgn0035374", "EGF_Baseline": "0.3"}, {"ID": "FBgn0015331", "EGF_Baseline": "-0.45"}, {"ID": "FBgn0040765", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0030678", "EGF_Baseline": "-0.36"}, {"ID": "FBgn0031548", "EGF_Baseline": "-1.61"}, {"ID": "FBgn0039160", "EGF_Baseline": "-0.56"}, {"ID": "FBgn0031086", "EGF_Baseline": "-0.91"}, {"ID": "FBgn0029812", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0053517", "EGF_Baseline": "1.78"}, {"ID": "FBgn0066365", "EGF_Baseline": "2.83"}, {"ID": "FBgn0037892", "EGF_Baseline": "0.41"}, {"ID": "FBgn0031248", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0034084", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0032398", "EGF_Baseline": "-1.36"}, {"ID": "FBgn0037770", "EGF_Baseline": "1.61"}, {"ID": "FBgn0041780", "EGF_Baseline": "1.77"}, {"ID": "FBgn0032435", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0003449", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0037506", "EGF_Baseline": "-2.21"}, {"ID": "FBgn0052985", "EGF_Baseline": "-1.71"}, {"ID": "FBgn0052793", "EGF_Baseline": "-0.52"}, {"ID": "FBgn0015240", "EGF_Baseline": "0.74"}, {"ID": "FBgn0038203", "EGF_Baseline": "0.96"}, {"ID": "FBgn0031005", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0261786", "EGF_Baseline": "1.24"}, {"ID": "FBgn0038484", "EGF_Baseline": "0.78"}, {"ID": "FBgn0036279", "EGF_Baseline": "0.64"}, {"ID": "FBgn0032472", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0000635", "EGF_Baseline": "-1.67"}, {"ID": "FBgn0041004", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0038917", "EGF_Baseline": "0.57"}, {"ID": "FBgn0051752", "EGF_Baseline": "0.5"}, {"ID": "FBgn0031654", "EGF_Baseline": "1.93"}, {"ID": "FBgn0035143", "EGF_Baseline": "1.73"}, {"ID": "FBgn0037475", "EGF_Baseline": "0.97"}, {"ID": "FBgn0039631", "EGF_Baseline": "-1.43"}, {"ID": "FBgn0027508", "EGF_Baseline": "0.37"}, {"ID": "FBgn0034029", "EGF_Baseline": "0.62"}, {"ID": "FBgn0031792", "EGF_Baseline": "0.37"}, {"ID": "FBgn0033773", "EGF_Baseline": "0.67"}, {"ID": "FBgn0052368", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0040816", "EGF_Baseline": "-1.5"}, {"ID": "FBgn0039326", "EGF_Baseline": "-1.52"}, {"ID": "FBgn0031844", "EGF_Baseline": "-0.35"}, {"ID": "FBgn0037427", "EGF_Baseline": "-2.22"}, {"ID": "FBgn0031444", "EGF_Baseline": "0.25"}, {"ID": "FBgn0031818", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0034427", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0053702", "EGF_Baseline": "-0.91"}, {"ID": "FBgn0050194", "EGF_Baseline": "1.98"}, {"ID": "FBgn0046689", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0038486", "EGF_Baseline": "0.72"}, {"ID": "FBgn0037310", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0031716", "EGF_Baseline": "0.87"}, {"ID": "FBgn0051118", "EGF_Baseline": "1.74"}, {"ID": "FBgn0250850", "EGF_Baseline": "-1.74"}, {"ID": "FBgn0031617", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0259937", "EGF_Baseline": "-1.47"}, {"ID": "FBgn0036566", "EGF_Baseline": "0.97"}, {"ID": "FBgn0041171", "EGF_Baseline": "1.42"}, {"ID": "FBgn0031957", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0035781", "EGF_Baseline": "0.63"}, {"ID": "FBgn0085379", "EGF_Baseline": "0.25"}, {"ID": "FBgn0032679", "EGF_Baseline": "0.4"}, {"ID": "FBgn0015011", "EGF_Baseline": "7.83"}, {"ID": "FBgn0052821", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0024947", "EGF_Baseline": "-0.13"}, {"ID": "FBgn0051099", "EGF_Baseline": "0.33"}, {"ID": "FBgn0027524", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0035252", "EGF_Baseline": "0.8"}, {"ID": "FBgn0046323", "EGF_Baseline": "-2"}, {"ID": "FBgn0025874", "EGF_Baseline": "-1.11"}, {"ID": "FBgn0050121", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0022772", "EGF_Baseline": "-1.67"}, {"ID": "FBgn0039117", "EGF_Baseline": "0.72"}, {"ID": "FBgn0038380", "EGF_Baseline": "-0.08"}, {"ID": "FBgn0036485", "EGF_Baseline": "0.71"}, {"ID": "FBgn0034978", "EGF_Baseline": "0.41"}, {"ID": "FBgn0039154", "EGF_Baseline": "-1.22"}, {"ID": "FBgn0040942", "EGF_Baseline": "-0.81"}, {"ID": "FBgn0052806", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0031800", "EGF_Baseline": "0.73"}, {"ID": "FBgn0030539", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0039832", "EGF_Baseline": "-1.33"}, {"ID": "FBgn0039078", "EGF_Baseline": "-1.88"}, {"ID": "FBgn0003887", "EGF_Baseline": "1.58"}, {"ID": "FBgn0034407", "EGF_Baseline": "0.67"}, {"ID": "FBgn0036876", "EGF_Baseline": "-0.37"}, {"ID": "FBgn0033464", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0032965", "EGF_Baseline": "-1.57"}, {"ID": "FBgn0035761", "EGF_Baseline": "0.89"}, {"ID": "FBgn0037608", "EGF_Baseline": "-1.23"}, {"ID": "FBgn0052075", "EGF_Baseline": "-1.21"}, {"ID": "FBgn0036337", "EGF_Baseline": "0.87"}, {"ID": "FBgn0039104", "EGF_Baseline": "0.49"}, {"ID": "FBgn0034374", "EGF_Baseline": "-1.64"}, {"ID": "FBgn0032189", "EGF_Baseline": "-1.36"}, {"ID": "FBgn0085468", "EGF_Baseline": "-1.9"}, {"ID": "FBgn0015799", "EGF_Baseline": "0.94"}, {"ID": "FBgn0030706", "EGF_Baseline": "1.06"}, {"ID": "FBgn0003114", "EGF_Baseline": "-0.23"}, {"ID": "FBgn0037342", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0030056", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0086358", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0015008", "EGF_Baseline": "0.32"}, {"ID": "FBgn0260400", "EGF_Baseline": "2.54"}, {"ID": "FBgn0003513", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0052255", "EGF_Baseline": "1.2"}, {"ID": "FBgn0027363", "EGF_Baseline": "0.51"}, {"ID": "FBgn0031399", "EGF_Baseline": "1.3"}, {"ID": "FBgn0053287", "EGF_Baseline": "-0.39"}, {"ID": "FBgn0039227", "EGF_Baseline": "2.81"}, {"ID": "FBgn0033371", "EGF_Baseline": "-0.37"}, {"ID": "FBgn0030412", "EGF_Baseline": "-1.77"}, {"ID": "FBgn0030757", "EGF_Baseline": "-1.39"}, {"ID": "FBgn0035755", "EGF_Baseline": "1.79"}, {"ID": "FBgn0035165", "EGF_Baseline": "0.07"}, {"ID": "FBgn0030684", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0031781", "EGF_Baseline": "1.28"}, {"ID": "FBgn0031514", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0028544", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0033860", "EGF_Baseline": "0.83"}, {"ID": "FBgn0028693", "EGF_Baseline": "-0.5"}, {"ID": "FBgn0086707", "EGF_Baseline": "1.42"}, {"ID": "FBgn0032200", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0031227", "EGF_Baseline": "-1.36"}, {"ID": "FBgn0028421", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0035688", "EGF_Baseline": "-1.43"}, {"ID": "FBgn0039485", "EGF_Baseline": "0.95"}, {"ID": "FBgn0031106", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0031497", "EGF_Baseline": "-1.33"}, {"ID": "FBgn0031254", "EGF_Baseline": "0.3"}, {"ID": "FBgn0034908", "EGF_Baseline": "2.25"}, {"ID": "FBgn0035541", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0032101", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0036479", "EGF_Baseline": "-0.31"}, {"ID": "FBgn0035989", "EGF_Baseline": "1.2"}, {"ID": "FBgn0031663", "EGF_Baseline": "1.19"}, {"ID": "FBgn0039041", "EGF_Baseline": "-1.31"}, {"ID": "FBgn0029002", "EGF_Baseline": "0.28"}, {"ID": "FBgn0039707", "EGF_Baseline": "0.43"}, {"ID": "FBgn0033925", "EGF_Baseline": "0.51"}, {"ID": "FBgn0020370", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0033286", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0023441", "EGF_Baseline": "2.59"}, {"ID": "FBgn0033324", "EGF_Baseline": "0.15"}, {"ID": "FBgn0035199", "EGF_Baseline": "-1.39"}, {"ID": "FBgn0250839", "EGF_Baseline": "1.72"}, {"ID": "FBgn0053098", "EGF_Baseline": "0.5"}, {"ID": "FBgn0038415", "EGF_Baseline": "0.66"}, {"ID": "FBgn0086372", "EGF_Baseline": "0.25"}, {"ID": "FBgn0052037", "EGF_Baseline": "-0.67"}, {"ID": "FBgn0037463", "EGF_Baseline": "1.73"}, {"ID": "FBgn0036812", "EGF_Baseline": "-0.25"}, {"ID": "FBgn0024361", "EGF_Baseline": "0.9"}, {"ID": "FBgn0003011", "EGF_Baseline": "0.87"}, {"ID": "FBgn0037498", "EGF_Baseline": "-0.07"}, {"ID": "FBgn0052982", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0260005", "EGF_Baseline": "-1.17"}, {"ID": "FBgn0040534", "EGF_Baseline": "3.27"}, {"ID": "FBgn0260446", "EGF_Baseline": "1.45"}, {"ID": "FBgn0038860", "EGF_Baseline": "-0.31"}, {"ID": "FBgn0013720", "EGF_Baseline": "-0.23"}, {"ID": "FBgn0086675", "EGF_Baseline": "-1.46"}, {"ID": "FBgn0031286", "EGF_Baseline": "-1.55"}, {"ID": "FBgn0010590", "EGF_Baseline": "-1.8"}, {"ID": "FBgn0034971", "EGF_Baseline": "1.05"}, {"ID": "FBgn0020626", "EGF_Baseline": "0.83"}, {"ID": "FBgn0031869", "EGF_Baseline": "0.34"}, {"ID": "FBgn0035779", "EGF_Baseline": "0.52"}, {"ID": "FBgn0053459", "EGF_Baseline": "-1.3"}, {"ID": "FBgn0035290", "EGF_Baseline": "0.49"}, {"ID": "FBgn0035733", "EGF_Baseline": "-0.26"}, {"ID": "FBgn0027602", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0034748", "EGF_Baseline": "0.26"}, {"ID": "FBgn0016119", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0034505", "EGF_Baseline": "-1"}, {"ID": "FBgn0037184", "EGF_Baseline": "0.39"}, {"ID": "FBgn0027518", "EGF_Baseline": "0.83"}, {"ID": "FBgn0034153", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0036726", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0037643", "EGF_Baseline": "-0.65"}, {"ID": "FBgn0032636", "EGF_Baseline": "1.53"}, {"ID": "FBgn0053548", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0052372", "EGF_Baseline": "1.3"}, {"ID": "FBgn0036294", "EGF_Baseline": "-0.29"}, {"ID": "FBgn0052971", "EGF_Baseline": "-0.65"}, {"ID": "FBgn0031681", "EGF_Baseline": "-1.34"}, {"ID": "FBgn0034176", "EGF_Baseline": "-2.12"}, {"ID": "FBgn0035645", "EGF_Baseline": "-1.26"}, {"ID": "FBgn0261245", "EGF_Baseline": "-1.4"}, {"ID": "FBgn0037703", "EGF_Baseline": "-1.23"}, {"ID": "FBgn0029897", "EGF_Baseline": "4.91"}, {"ID": "FBgn0033485", "EGF_Baseline": "0.31"}, {"ID": "FBgn0039184", "EGF_Baseline": "0.78"}, {"ID": "FBgn0040487", "EGF_Baseline": "-1.21"}, {"ID": "FBgn0039595", "EGF_Baseline": "1.45"}, {"ID": "FBgn0041244", "EGF_Baseline": "-1.73"}, {"ID": "FBgn0051948", "EGF_Baseline": "-0.67"}, {"ID": "FBgn0051053", "EGF_Baseline": "0.65"}, {"ID": "FBgn0036160", "EGF_Baseline": "0.57"}, {"ID": "FBgn0033047", "EGF_Baseline": "2.33"}, {"ID": "FBgn0016970", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0034461", "EGF_Baseline": "1.03"}, {"ID": "FBgn0261090", "EGF_Baseline": "1.6"}, {"ID": "FBgn0030749", "EGF_Baseline": "-0.31"}, {"ID": "FBgn0036488", "EGF_Baseline": "1.7"}, {"ID": "FBgn0046756", "EGF_Baseline": "0.3"}, {"ID": "FBgn0036348", "EGF_Baseline": "1.22"}, {"ID": "FBgn0037860", "EGF_Baseline": "0.37"}, {"ID": "FBgn0011812", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0261551", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0042112", "EGF_Baseline": "0.03"}, {"ID": "FBgn0004888", "EGF_Baseline": "-2.27"}, {"ID": "FBgn0052081", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0032361", "EGF_Baseline": "-1.84"}, {"ID": "FBgn0035695", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0051909", "EGF_Baseline": "-2.38"}, {"ID": "FBgn0041147", "EGF_Baseline": "0.85"}, {"ID": "FBgn0050404", "EGF_Baseline": "1.05"}, {"ID": "FBgn0033397", "EGF_Baseline": "-1.88"}, {"ID": "FBgn0040717", "EGF_Baseline": "-0.12"}, {"ID": "FBgn0050050", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0028744", "EGF_Baseline": "0.43"}, {"ID": "FBgn0039071", "EGF_Baseline": "1.49"}, {"ID": "FBgn0052833", "EGF_Baseline": "0.61"}, {"ID": "FBgn0259785", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0034538", "EGF_Baseline": "-1.79"}, {"ID": "FBgn0030519", "EGF_Baseline": "-1.38"}, {"ID": "FBgn0047135", "EGF_Baseline": "1.6"}, {"ID": "FBgn0037540", "EGF_Baseline": "1.3"}, {"ID": "FBgn0027376", "EGF_Baseline": "-1.9"}, {"ID": "FBgn0004363", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0039737", "EGF_Baseline": "-1.7"}, {"ID": "FBgn0034472", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0036858", "EGF_Baseline": "-2.04"}, {"ID": "FBgn0052379", "EGF_Baseline": "-0.63"}, {"ID": "FBgn0038821", "EGF_Baseline": "1.11"}, {"ID": "FBgn0038020", "EGF_Baseline": "0.51"}, {"ID": "FBgn0051862", "EGF_Baseline": "1.67"}, {"ID": "FBgn0003068", "EGF_Baseline": "-1.27"}, {"ID": "FBgn0010812", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0015572", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0000153", "EGF_Baseline": "0.38"}, {"ID": "FBgn0032391", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0030996", "EGF_Baseline": "-1.35"}, {"ID": "FBgn0033019", "EGF_Baseline": "-1.28"}, {"ID": "FBgn0259178", "EGF_Baseline": "1.32"}, {"ID": "FBgn0085197", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0029969", "EGF_Baseline": "-0.19"}, {"ID": "FBgn0033278", "EGF_Baseline": "-0.67"}, {"ID": "FBgn0029756", "EGF_Baseline": "-1.27"}, {"ID": "FBgn0051133", "EGF_Baseline": "-0.39"}, {"ID": "FBgn0029765", "EGF_Baseline": "-1.48"}, {"ID": "FBgn0031535", "EGF_Baseline": "-0.54"}, {"ID": "FBgn0054047", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0087005", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0038578", "EGF_Baseline": "3.83"}, {"ID": "FBgn0030028", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0030890", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0050094", "EGF_Baseline": "-0.16"}, {"ID": "FBgn0037223", "EGF_Baseline": "-0.77"}, {"ID": "FBgn0032522", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0026738", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0038700", "EGF_Baseline": "-0.77"}, {"ID": "FBgn0027571", "EGF_Baseline": "1.5"}, {"ID": "FBgn0040227", "EGF_Baseline": "1.02"}, {"ID": "FBgn0062442", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0003277", "EGF_Baseline": "2.48"}, {"ID": "FBgn0040372", "EGF_Baseline": "-0.38"}, {"ID": "FBgn0031888", "EGF_Baseline": "-1.45"}, {"ID": "FBgn0035964", "EGF_Baseline": "1.36"}, {"ID": "FBgn0015618", "EGF_Baseline": "4.86"}, {"ID": "FBgn0035056", "EGF_Baseline": "0.03"}, {"ID": "FBgn0036288", "EGF_Baseline": "3.47"}, {"ID": "FBgn0086679", "EGF_Baseline": "0.91"}, {"ID": "FBgn0028942", "EGF_Baseline": "-1.3"}, {"ID": "FBgn0005626", "EGF_Baseline": "1.32"}, {"ID": "FBgn0037358", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0002772", "EGF_Baseline": "0.12"}, {"ID": "FBgn0011693", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0031146", "EGF_Baseline": "1.14"}, {"ID": "FBgn0001978", "EGF_Baseline": "2.22"}, {"ID": "FBgn0003140", "EGF_Baseline": "0.4"}, {"ID": "FBgn0038180", "EGF_Baseline": "1.88"}, {"ID": "FBgn0031450", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0040465", "EGF_Baseline": "-1.4"}, {"ID": "FBgn0033134", "EGF_Baseline": "-0.11"}, {"ID": "FBgn0002524", "EGF_Baseline": "1.69"}, {"ID": "FBgn0260474", "EGF_Baseline": "1.77"}, {"ID": "FBgn0039048", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0051619", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0033990", "EGF_Baseline": "0.58"}, {"ID": "FBgn0010770", "EGF_Baseline": "1.5"}, {"ID": "FBgn0040950", "EGF_Baseline": "2.23"}, {"ID": "FBgn0261530", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0034396", "EGF_Baseline": "0.75"}, {"ID": "FBgn0040257", "EGF_Baseline": "1.17"}, {"ID": "FBgn0261534", "EGF_Baseline": "-0.14"}, {"ID": "FBgn0010044", "EGF_Baseline": "-1.85"}, {"ID": "FBgn0036680", "EGF_Baseline": "-0.28"}, {"ID": "FBgn0261585", "EGF_Baseline": "1.46"}, {"ID": "FBgn0033943", "EGF_Baseline": "-1.26"}, {"ID": "FBgn0040505", "EGF_Baseline": "0.91"}, {"ID": "FBgn0037121", "EGF_Baseline": "0.71"}, {"ID": "FBgn0031886", "EGF_Baseline": "0.59"}, {"ID": "FBgn0030398", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0032451", "EGF_Baseline": "0.27"}, {"ID": "FBgn0040091", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0050046", "EGF_Baseline": "-1"}, {"ID": "FBgn0036422", "EGF_Baseline": "0.5"}, {"ID": "FBgn0259729", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0260753", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0010223", "EGF_Baseline": "-0.17"}, {"ID": "FBgn0025185", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0023167", "EGF_Baseline": "0.45"}, {"ID": "FBgn0035626", "EGF_Baseline": "0.15"}, {"ID": "FBgn0010352", "EGF_Baseline": "1.5"}, {"ID": "FBgn0040571", "EGF_Baseline": "0.8"}, {"ID": "FBgn0031934", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0038516", "EGF_Baseline": "0.76"}, {"ID": "FBgn0052667", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0008635", "EGF_Baseline": "1.31"}, {"ID": "FBgn0038654", "EGF_Baseline": "-1.67"}, {"ID": "FBgn0032095", "EGF_Baseline": "0.23"}, {"ID": "FBgn0000258", "EGF_Baseline": "1.03"}, {"ID": "FBgn0038673", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0030941", "EGF_Baseline": "-1.22"}, {"ID": "FBgn0039679", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0260764", "EGF_Baseline": "-1.22"}, {"ID": "FBgn0030904", "EGF_Baseline": "0.63"}, {"ID": "FBgn0033935", "EGF_Baseline": "0.59"}, {"ID": "FBgn0030773", "EGF_Baseline": "-0.38"}, {"ID": "FBgn0038385", "EGF_Baseline": "-0.63"}, {"ID": "FBgn0015218", "EGF_Baseline": "1.93"}, {"ID": "FBgn0039212", "EGF_Baseline": "0.56"}, {"ID": "FBgn0034430", "EGF_Baseline": "-0.44"}, {"ID": "FBgn0029723", "EGF_Baseline": "0.52"}, {"ID": "FBgn0033027", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0033473", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0030582", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0032243", "EGF_Baseline": "-1.35"}, {"ID": "FBgn0033680", "EGF_Baseline": "-1.46"}, {"ID": "FBgn0014340", "EGF_Baseline": "-1.5"}, {"ID": "FBgn0020309", "EGF_Baseline": "-1.11"}, {"ID": "FBgn0035855", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0002723", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0029712", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0051739", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0032533", "EGF_Baseline": "-1.59"}, {"ID": "FBgn0045495", "EGF_Baseline": "0.77"}, {"ID": "FBgn0085400", "EGF_Baseline": "1.11"}, {"ID": "FBgn0033101", "EGF_Baseline": "1.48"}, {"ID": "FBgn0003256", "EGF_Baseline": "9.67"}, {"ID": "FBgn0033061", "EGF_Baseline": "1.01"}, {"ID": "FBgn0036159", "EGF_Baseline": "-1.53"}, {"ID": "FBgn0050460", "EGF_Baseline": "-1.54"}, {"ID": "FBgn0030218", "EGF_Baseline": "0.49"}, {"ID": "FBgn0005613", "EGF_Baseline": "3.15"}, {"ID": "FBgn0017579", "EGF_Baseline": "3.86"}, {"ID": "FBgn0050345", "EGF_Baseline": "-1.39"}, {"ID": "FBgn0031829", "EGF_Baseline": "-2.54"}, {"ID": "FBgn0046886", "EGF_Baseline": "0.43"}, {"ID": "FBgn0032354", "EGF_Baseline": "0.49"}, {"ID": "FBgn0260226", "EGF_Baseline": "-1.16"}, {"ID": "FBgn0038881", "EGF_Baseline": "2.14"}, {"ID": "FBgn0039670", "EGF_Baseline": "-1.24"}, {"ID": "FBgn0033917", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0042098", "EGF_Baseline": "1.34"}, {"ID": "FBgn0036316", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0030035", "EGF_Baseline": "0.41"}, {"ID": "FBgn0030186", "EGF_Baseline": "-0.77"}, {"ID": "FBgn0031130", "EGF_Baseline": "-0.66"}, {"ID": "FBgn0259210", "EGF_Baseline": "2.12"}, {"ID": "FBgn0051693", "EGF_Baseline": "-1.9"}, {"ID": "FBgn0021979", "EGF_Baseline": "0.71"}, {"ID": "FBgn0032033", "EGF_Baseline": "1.08"}, {"ID": "FBgn0000036", "EGF_Baseline": "-0.32"}, {"ID": "FBgn0083963", "EGF_Baseline": "-2.04"}, {"ID": "FBgn0051815", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0030789", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0038342", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0039193", "EGF_Baseline": "1.13"}, {"ID": "FBgn0260856", "EGF_Baseline": "1.07"}, {"ID": "FBgn0039651", "EGF_Baseline": "0.74"}, {"ID": "FBgn0032026", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0001114", "EGF_Baseline": "-1.17"}, {"ID": "FBgn0005355", "EGF_Baseline": "1.14"}, {"ID": "FBgn0261502", "EGF_Baseline": "1.39"}, {"ID": "FBgn0086444", "EGF_Baseline": "0.69"}, {"ID": "FBgn0053533", "EGF_Baseline": "1.18"}, {"ID": "FBgn0033951", "EGF_Baseline": "0.34"}, {"ID": "FBgn0031375", "EGF_Baseline": "-0.35"}, {"ID": "FBgn0037199", "EGF_Baseline": "-1.64"}, {"ID": "FBgn0250870", "EGF_Baseline": "-0.45"}, {"ID": "FBgn0022786", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0039812", "EGF_Baseline": "0.21"}, {"ID": "FBgn0032120", "EGF_Baseline": "-1.88"}, {"ID": "FBgn0043539", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0039727", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0086855", "EGF_Baseline": "0.82"}, {"ID": "FBgn0026317", "EGF_Baseline": "-1.2"}, {"ID": "FBgn0024913", "EGF_Baseline": "1.51"}, {"ID": "FBgn0001313", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0035598", "EGF_Baseline": "-0.43"}, {"ID": "FBgn0028382", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0037899", "EGF_Baseline": "0.38"}, {"ID": "FBgn0038507", "EGF_Baseline": "0.54"}, {"ID": "FBgn0037490", "EGF_Baseline": "0.57"}, {"ID": "FBgn0033950", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0035792", "EGF_Baseline": "1.38"}, {"ID": "FBgn0250755", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0051742", "EGF_Baseline": "2.01"}, {"ID": "FBgn0051390", "EGF_Baseline": "1.13"}, {"ID": "FBgn0029906", "EGF_Baseline": "1.03"}, {"ID": "FBgn0035510", "EGF_Baseline": "0.82"}, {"ID": "FBgn0053054", "EGF_Baseline": "-0.54"}, {"ID": "FBgn0025802", "EGF_Baseline": "0.08"}, {"ID": "FBgn0034763", "EGF_Baseline": "-0.59"}, {"ID": "FBgn0028789", "EGF_Baseline": "-0.34"}, {"ID": "FBgn0033113", "EGF_Baseline": "0.15"}, {"ID": "FBgn0051191", "EGF_Baseline": "0.96"}, {"ID": "FBgn0037371", "EGF_Baseline": "-0.77"}, {"ID": "FBgn0038299", "EGF_Baseline": "1.4"}, {"ID": "FBgn0032003", "EGF_Baseline": "-1.26"}, {"ID": "FBgn0003710", "EGF_Baseline": "-1.89"}, {"ID": "FBgn0028467", "EGF_Baseline": "1.21"}, {"ID": "FBgn0014020", "EGF_Baseline": "-3.02"}, {"ID": "FBgn0040697", "EGF_Baseline": "0.45"}, {"ID": "FBgn0033519", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0033674", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0014380", "EGF_Baseline": "-1.59"}, {"ID": "FBgn0023520", "EGF_Baseline": "-1.88"}, {"ID": "FBgn0040255", "EGF_Baseline": "0.8"}, {"ID": "FBgn0029930", "EGF_Baseline": "0.6"}, {"ID": "FBgn0259188", "EGF_Baseline": "-0.16"}, {"ID": "FBgn0010774", "EGF_Baseline": "5.1"}, {"ID": "FBgn0024196", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0025716", "EGF_Baseline": "-1.65"}, {"ID": "FBgn0051639", "EGF_Baseline": "1.05"}, {"ID": "FBgn0032015", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0035847", "EGF_Baseline": "0.26"}, {"ID": "FBgn0038280", "EGF_Baseline": "0.56"}, {"ID": "FBgn0037743", "EGF_Baseline": "-0.41"}, {"ID": "FBgn0038581", "EGF_Baseline": "-1.3"}, {"ID": "FBgn0032808", "EGF_Baseline": "-1.1"}, {"ID": "FBgn0025825", "EGF_Baseline": "2.1"}, {"ID": "FBgn0066293", "EGF_Baseline": "-0.72"}, {"ID": "FBgn0001991", "EGF_Baseline": "0.37"}, {"ID": "FBgn0035534", "EGF_Baseline": "-1.36"}, {"ID": "FBgn0031977", "EGF_Baseline": "-1.14"}, {"ID": "FBgn0037535", "EGF_Baseline": "1.2"}, {"ID": "FBgn0034326", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0259967", "EGF_Baseline": "-0.59"}, {"ID": "FBgn0036584", "EGF_Baseline": "0.53"}, {"ID": "FBgn0028675", "EGF_Baseline": "-0.24"}, {"ID": "FBgn0033341", "EGF_Baseline": "1.11"}, {"ID": "FBgn0036663", "EGF_Baseline": "-1.24"}, {"ID": "FBgn0031149", "EGF_Baseline": "-0.25"}, {"ID": "FBgn0062413", "EGF_Baseline": "-1.39"}, {"ID": "FBgn0026392", "EGF_Baseline": "-1.21"}, {"ID": "FBgn0034662", "EGF_Baseline": "-1.64"}, {"ID": "FBgn0011826", "EGF_Baseline": "1.61"}, {"ID": "FBgn0031197", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0033033", "EGF_Baseline": "0.17"}, {"ID": "FBgn0052438", "EGF_Baseline": "0.51"}, {"ID": "FBgn0000150", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0026174", "EGF_Baseline": "0.35"}, {"ID": "FBgn0041336", "EGF_Baseline": "-1.62"}, {"ID": "FBgn0039321", "EGF_Baseline": "-1.45"}, {"ID": "FBgn0030499", "EGF_Baseline": "0.23"}, {"ID": "FBgn0033166", "EGF_Baseline": "-0.28"}, {"ID": "FBgn0000497", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0037764", "EGF_Baseline": "1.21"}, {"ID": "FBgn0052660", "EGF_Baseline": "-1.45"}, {"ID": "FBgn0036421", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0032787", "EGF_Baseline": "1.34"}, {"ID": "FBgn0259985", "EGF_Baseline": "-0.28"}, {"ID": "FBgn0039302", "EGF_Baseline": "1.49"}, {"ID": "FBgn0029504", "EGF_Baseline": "0.42"}, {"ID": "FBgn0261561", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0004575", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0000382", "EGF_Baseline": "3.77"}, {"ID": "FBgn0035901", "EGF_Baseline": "-0.44"}, {"ID": "FBgn0004390", "EGF_Baseline": "2.42"}, {"ID": "FBgn0037442", "EGF_Baseline": "-1.23"}, {"ID": "FBgn0052203", "EGF_Baseline": "-1.64"}, {"ID": "FBgn0032266", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0035309", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0051992", "EGF_Baseline": "4.6"}, {"ID": "FBgn0034514", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0050391", "EGF_Baseline": "1.15"}, {"ID": "FBgn0033387", "EGF_Baseline": "-1.62"}, {"ID": "FBgn0028373", "EGF_Baseline": "-0.17"}, {"ID": "FBgn0034263", "EGF_Baseline": "0.12"}, {"ID": "FBgn0010473", "EGF_Baseline": "-1.79"}, {"ID": "FBgn0031813", "EGF_Baseline": "-1.43"}, {"ID": "FBgn0037873", "EGF_Baseline": "-1.25"}, {"ID": "FBgn0052602", "EGF_Baseline": "1.81"}, {"ID": "FBgn0033141", "EGF_Baseline": "-1.5"}, {"ID": "FBgn0040780", "EGF_Baseline": "-1.39"}, {"ID": "FBgn0261085", "EGF_Baseline": "0.77"}, {"ID": "FBgn0040923", "EGF_Baseline": "0.05"}, {"ID": "FBgn0040347", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0034937", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0037093", "EGF_Baseline": "1.34"}, {"ID": "FBgn0041622", "EGF_Baseline": "0.78"}, {"ID": "FBgn0038439", "EGF_Baseline": "0.98"}, {"ID": "FBgn0037761", "EGF_Baseline": "-0.56"}, {"ID": "FBgn0034165", "EGF_Baseline": "-1.98"}, {"ID": "FBgn0029920", "EGF_Baseline": "-0.38"}, {"ID": "FBgn0020306", "EGF_Baseline": "-2.74"}, {"ID": "FBgn0040904", "EGF_Baseline": "-1.56"}, {"ID": "FBgn0000473", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0033884", "EGF_Baseline": "-0.56"}, {"ID": "FBgn0039252", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0034443", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0030669", "EGF_Baseline": "0.45"}, {"ID": "FBgn0040905", "EGF_Baseline": "-0.44"}, {"ID": "FBgn0040871", "EGF_Baseline": "-0.91"}, {"ID": "FBgn0039795", "EGF_Baseline": "-1.38"}, {"ID": "FBgn0011769", "EGF_Baseline": "-0.43"}, {"ID": "FBgn0037051", "EGF_Baseline": "0.26"}, {"ID": "FBgn0036757", "EGF_Baseline": "0.62"}, {"ID": "FBgn0039273", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0037844", "EGF_Baseline": "0.22"}, {"ID": "FBgn0030574", "EGF_Baseline": "-1.26"}, {"ID": "FBgn0038931", "EGF_Baseline": "0.38"}, {"ID": "FBgn0004901", "EGF_Baseline": "-1.88"}, {"ID": "FBgn0036750", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0031442", "EGF_Baseline": "0.63"}, {"ID": "FBgn0035426", "EGF_Baseline": "0.5"}, {"ID": "FBgn0052553", "EGF_Baseline": "-0.67"}, {"ID": "FBgn0259164", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0036417", "EGF_Baseline": "-0.25"}, {"ID": "FBgn0024510", "EGF_Baseline": "0.26"}, {"ID": "FBgn0038136", "EGF_Baseline": "0.75"}, {"ID": "FBgn0032251", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0036882", "EGF_Baseline": "0.47"}, {"ID": "FBgn0036745", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0037726", "EGF_Baseline": "0.39"}, {"ID": "FBgn0050417", "EGF_Baseline": "-1.04"}, {"ID": "FBgn0058191", "EGF_Baseline": "-1.82"}, {"ID": "FBgn0038194", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0026160", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0039347", "EGF_Baseline": "-1"}, {"ID": "FBgn0085404", "EGF_Baseline": "-0.43"}, {"ID": "FBgn0086348", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0053003", "EGF_Baseline": "-1.71"}, {"ID": "FBgn0261630", "EGF_Baseline": "0.33"}, {"ID": "FBgn0051036", "EGF_Baseline": "1.28"}, {"ID": "FBgn0260960", "EGF_Baseline": "-0.08"}, {"ID": "FBgn0039083", "EGF_Baseline": "0.7"}, {"ID": "FBgn0035678", "EGF_Baseline": "-0.43"}, {"ID": "FBgn0035578", "EGF_Baseline": "-0.54"}, {"ID": "FBgn0027330", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0039452", "EGF_Baseline": "-0.29"}, {"ID": "FBgn0032020", "EGF_Baseline": "-1.38"}, {"ID": "FBgn0052801", "EGF_Baseline": "0.69"}, {"ID": "FBgn0033853", "EGF_Baseline": "-1.33"}, {"ID": "FBgn0034996", "EGF_Baseline": "-0.41"}, {"ID": "FBgn0004181", "EGF_Baseline": "1.5"}, {"ID": "FBgn0013750", "EGF_Baseline": "0.82"}, {"ID": "FBgn0034096", "EGF_Baseline": "-1.62"}, {"ID": "FBgn0033429", "EGF_Baseline": "-1.38"}, {"ID": "FBgn0030055", "EGF_Baseline": "-0.15"}, {"ID": "FBgn0035241", "EGF_Baseline": "-0.54"}, {"ID": "FBgn0031874", "EGF_Baseline": "1.18"}, {"ID": "FBgn0000617", "EGF_Baseline": "-1.51"}, {"ID": "FBgn0030525", "EGF_Baseline": "-1.39"}, {"ID": "FBgn0033122", "EGF_Baseline": "1.54"}, {"ID": "FBgn0034965", "EGF_Baseline": "-0.21"}, {"ID": "FBgn0040793", "EGF_Baseline": "-1.89"}, {"ID": "FBgn0044047", "EGF_Baseline": "1"}, {"ID": "FBgn0053267", "EGF_Baseline": "0.56"}, {"ID": "FBgn0053257", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0036519", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0010482", "EGF_Baseline": "1.98"}, {"ID": "FBgn0051445", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0000489", "EGF_Baseline": "-1.45"}, {"ID": "FBgn0051876", "EGF_Baseline": "-1.63"}, {"ID": "FBgn0033412", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0029688", "EGF_Baseline": "1.25"}, {"ID": "FBgn0085435", "EGF_Baseline": "-1.31"}, {"ID": "FBgn0031857", "EGF_Baseline": "0.71"}, {"ID": "FBgn0050145", "EGF_Baseline": "-0.39"}, {"ID": "FBgn0034467", "EGF_Baseline": "0.49"}, {"ID": "FBgn0035347", "EGF_Baseline": "-1.77"}, {"ID": "FBgn0036327", "EGF_Baseline": "0.7"}, {"ID": "FBgn0019985", "EGF_Baseline": "0.63"}, {"ID": "FBgn0025574", "EGF_Baseline": "1.5"}, {"ID": "FBgn0052487", "EGF_Baseline": "-0.91"}, {"ID": "FBgn0021906", "EGF_Baseline": "-1.23"}, {"ID": "FBgn0031429", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0032318", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0039685", "EGF_Baseline": "1.03"}, {"ID": "FBgn0033572", "EGF_Baseline": "0.59"}, {"ID": "FBgn0030555", "EGF_Baseline": "-1.15"}, {"ID": "FBgn0032258", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0023508", "EGF_Baseline": "-1.24"}, {"ID": "FBgn0052670", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0034893", "EGF_Baseline": "-1.27"}, {"ID": "FBgn0038922", "EGF_Baseline": "-1.99"}, {"ID": "FBgn0039316", "EGF_Baseline": "-1.55"}, {"ID": "FBgn0052072", "EGF_Baseline": "1.36"}, {"ID": "FBgn0036112", "EGF_Baseline": "0.52"}, {"ID": "FBgn0030310", "EGF_Baseline": "-0.27"}, {"ID": "FBgn0010401", "EGF_Baseline": "0.82"}, {"ID": "FBgn0034603", "EGF_Baseline": "2.48"}, {"ID": "FBgn0031030", "EGF_Baseline": "-1.59"}, {"ID": "FBgn0038691", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0052006", "EGF_Baseline": "-1.82"}, {"ID": "FBgn0015584", "EGF_Baseline": "0.37"}, {"ID": "FBgn0030680", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0050464", "EGF_Baseline": "1.05"}, {"ID": "FBgn0034708", "EGF_Baseline": "-0.4"}, {"ID": "FBgn0029928", "EGF_Baseline": "-0.36"}, {"ID": "FBgn0015589", "EGF_Baseline": "0.84"}, {"ID": "FBgn0030008", "EGF_Baseline": "-1.42"}, {"ID": "FBgn0036196", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0027106", "EGF_Baseline": "0.54"}, {"ID": "FBgn0000376", "EGF_Baseline": "0.54"}, {"ID": "FBgn0261637", "EGF_Baseline": "-0.65"}, {"ID": "FBgn0035005", "EGF_Baseline": "0.44"}, {"ID": "FBgn0031948", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0004108", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0032882", "EGF_Baseline": "-2.09"}, {"ID": "FBgn0031621", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0261613", "EGF_Baseline": "-1.5"}, {"ID": "FBgn0036939", "EGF_Baseline": "-0.52"}, {"ID": "FBgn0041180", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0261269", "EGF_Baseline": "0.53"}, {"ID": "FBgn0034013", "EGF_Baseline": "1.16"}, {"ID": "FBgn0038735", "EGF_Baseline": "1.65"}, {"ID": "FBgn0051682", "EGF_Baseline": "0.27"}, {"ID": "FBgn0034214", "EGF_Baseline": "-2.23"}, {"ID": "FBgn0001280", "EGF_Baseline": "1.32"}, {"ID": "FBgn0031332", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0035675", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0038309", "EGF_Baseline": "0.38"}, {"ID": "FBgn0015664", "EGF_Baseline": "0.52"}, {"ID": "FBgn0036932", "EGF_Baseline": "-1.33"}, {"ID": "FBgn0030014", "EGF_Baseline": "0.82"}, {"ID": "FBgn0261922", "EGF_Baseline": "-1.15"}, {"ID": "FBgn0261929", "EGF_Baseline": "-1.47"}, {"ID": "FBgn0030958", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0033610", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0039490", "EGF_Baseline": "2.47"}, {"ID": "FBgn0002855", "EGF_Baseline": "0.4"}, {"ID": "FBgn0040337", "EGF_Baseline": "-1.28"}, {"ID": "FBgn0052679", "EGF_Baseline": "1.05"}, {"ID": "FBgn0000395", "EGF_Baseline": "1.29"}, {"ID": "FBgn0033866", "EGF_Baseline": "0.49"}, {"ID": "FBgn0036366", "EGF_Baseline": "-1.25"}, {"ID": "FBgn0033774", "EGF_Baseline": "-0.66"}, {"ID": "FBgn0004620", "EGF_Baseline": "-1.54"}, {"ID": "FBgn0038533", "EGF_Baseline": "0.21"}, {"ID": "FBgn0001233", "EGF_Baseline": "1.19"}, {"ID": "FBgn0000412", "EGF_Baseline": "-1.04"}, {"ID": "FBgn0085496", "EGF_Baseline": "0.95"}, {"ID": "FBgn0053094", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0028956", "EGF_Baseline": "-0.3"}, {"ID": "FBgn0015396", "EGF_Baseline": "-1.54"}, {"ID": "FBgn0033550", "EGF_Baseline": "0.26"}, {"ID": "FBgn0066101", "EGF_Baseline": "-1.35"}, {"ID": "FBgn0030017", "EGF_Baseline": "-0.38"}, {"ID": "FBgn0053463", "EGF_Baseline": "1.23"}, {"ID": "FBgn0031485", "EGF_Baseline": "-1.9"}, {"ID": "FBgn0043865", "EGF_Baseline": "-0.77"}, {"ID": "FBgn0034000", "EGF_Baseline": "-2"}, {"ID": "FBgn0039875", "EGF_Baseline": "0.29"}, {"ID": "FBgn0030828", "EGF_Baseline": "1.2"}, {"ID": "FBgn0052672", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0038766", "EGF_Baseline": "0.61"}, {"ID": "FBgn0035924", "EGF_Baseline": "0.54"}, {"ID": "FBgn0033451", "EGF_Baseline": "0.33"}, {"ID": "FBgn0035630", "EGF_Baseline": "-2.12"}, {"ID": "FBgn0052625", "EGF_Baseline": "-1.35"}, {"ID": "FBgn0027575", "EGF_Baseline": "0.64"}, {"ID": "FBgn0050421", "EGF_Baseline": "-0.67"}, {"ID": "FBgn0034498", "EGF_Baseline": "1.59"}, {"ID": "FBgn0017558", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0038784", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0002869", "EGF_Baseline": "1.5"}, {"ID": "FBgn0035648", "EGF_Baseline": "-1.33"}, {"ID": "FBgn0026144", "EGF_Baseline": "0.46"}, {"ID": "FBgn0037410", "EGF_Baseline": "0.82"}, {"ID": "FBgn0035318", "EGF_Baseline": "-2.14"}, {"ID": "FBgn0051265", "EGF_Baseline": "0.18"}, {"ID": "FBgn0031606", "EGF_Baseline": "-1.15"}, {"ID": "FBgn0039558", "EGF_Baseline": "1.41"}, {"ID": "FBgn0046332", "EGF_Baseline": "1.43"}, {"ID": "FBgn0030332", "EGF_Baseline": "0.62"}, {"ID": "FBgn0037341", "EGF_Baseline": "-0.22"}, {"ID": "FBgn0040747", "EGF_Baseline": "-0.35"}, {"ID": "FBgn0260452", "EGF_Baseline": "0.43"}, {"ID": "FBgn0037565", "EGF_Baseline": "-0.84"}, {"ID": "FBgn0030003", "EGF_Baseline": "-1.77"}, {"ID": "FBgn0261260", "EGF_Baseline": "1.23"}, {"ID": "FBgn0036588", "EGF_Baseline": "-1.71"}, {"ID": "FBgn0040022", "EGF_Baseline": "1.55"}, {"ID": "FBgn0026418", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0034688", "EGF_Baseline": "0.4"}, {"ID": "FBgn0002865", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0032590", "EGF_Baseline": "0.96"}, {"ID": "FBgn0032455", "EGF_Baseline": "0.71"}, {"ID": "FBgn0029965", "EGF_Baseline": "1.1"}, {"ID": "FBgn0034958", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0037336", "EGF_Baseline": "-1.23"}, {"ID": "FBgn0261112", "EGF_Baseline": "-0.43"}, {"ID": "FBgn0051327", "EGF_Baseline": "0.67"}, {"ID": "FBgn0015949", "EGF_Baseline": "0.16"}, {"ID": "FBgn0015569", "EGF_Baseline": "-0.21"}, {"ID": "FBgn0031604", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0259110", "EGF_Baseline": "1.13"}, {"ID": "FBgn0032167", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0015576", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0002183", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0052582", "EGF_Baseline": "-1.74"}, {"ID": "FBgn0036786", "EGF_Baseline": "1.72"}, {"ID": "FBgn0033304", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0035702", "EGF_Baseline": "1.19"}, {"ID": "FBgn0034312", "EGF_Baseline": "1.94"}, {"ID": "FBgn0052649", "EGF_Baseline": "-1.15"}, {"ID": "FBgn0033504", "EGF_Baseline": "-1.45"}, {"ID": "FBgn0085422", "EGF_Baseline": "0.3"}, {"ID": "FBgn0000566", "EGF_Baseline": "-1.37"}, {"ID": "FBgn0038632", "EGF_Baseline": "0.29"}, {"ID": "FBgn0033698", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0039805", "EGF_Baseline": "0.13"}, {"ID": "FBgn0040361", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0028992", "EGF_Baseline": "1.2"}, {"ID": "FBgn0003514", "EGF_Baseline": "-1.28"}, {"ID": "FBgn0011604", "EGF_Baseline": "1.13"}, {"ID": "FBgn0039186", "EGF_Baseline": "0.62"}, {"ID": "FBgn0053144", "EGF_Baseline": "0.91"}, {"ID": "FBgn0035273", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0052058", "EGF_Baseline": "-0.17"}, {"ID": "FBgn0031634", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0030847", "EGF_Baseline": "0.38"}, {"ID": "FBgn0023512", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0030873", "EGF_Baseline": "-0.09"}, {"ID": "FBgn0000455", "EGF_Baseline": "0.45"}, {"ID": "FBgn0036221", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0038830", "EGF_Baseline": "0.58"}, {"ID": "FBgn0039520", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0033100", "EGF_Baseline": "0.99"}, {"ID": "FBgn0032166", "EGF_Baseline": "-1.65"}, {"ID": "FBgn0029849", "EGF_Baseline": "0.51"}, {"ID": "FBgn0032889", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0030872", "EGF_Baseline": "-1.34"}, {"ID": "FBgn0025674", "EGF_Baseline": "0.49"}, {"ID": "FBgn0032464", "EGF_Baseline": "0.6"}, {"ID": "FBgn0035101", "EGF_Baseline": "1.19"}, {"ID": "FBgn0033819", "EGF_Baseline": "0.35"}, {"ID": "FBgn0033216", "EGF_Baseline": "-0.32"}, {"ID": "FBgn0031517", "EGF_Baseline": "-1.37"}, {"ID": "FBgn0030319", "EGF_Baseline": "-1.59"}, {"ID": "FBgn0039127", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0030395", "EGF_Baseline": "0.21"}, {"ID": "FBgn0036108", "EGF_Baseline": "-0.91"}, {"ID": "FBgn0034417", "EGF_Baseline": "0.09"}, {"ID": "FBgn0029696", "EGF_Baseline": "-1.04"}, {"ID": "FBgn0030349", "EGF_Baseline": "-1.21"}, {"ID": "FBgn0051373", "EGF_Baseline": "0.78"}, {"ID": "FBgn0038425", "EGF_Baseline": "1.06"}, {"ID": "FBgn0034007", "EGF_Baseline": "1.39"}, {"ID": "FBgn0015623", "EGF_Baseline": "1.11"}, {"ID": "FBgn0013771", "EGF_Baseline": "-0.23"}, {"ID": "FBgn0038804", "EGF_Baseline": "0.6"}, {"ID": "FBgn0029821", "EGF_Baseline": "0.5"}, {"ID": "FBgn0052267", "EGF_Baseline": "0.74"}, {"ID": "FBgn0030974", "EGF_Baseline": "1.24"}, {"ID": "FBgn0032725", "EGF_Baseline": "0.92"}, {"ID": "FBgn0038856", "EGF_Baseline": "-1.25"}, {"ID": "FBgn0000559", "EGF_Baseline": "1.87"}, {"ID": "FBgn0052441", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0053309", "EGF_Baseline": "1.01"}, {"ID": "FBgn0031307", "EGF_Baseline": "-0.44"}, {"ID": "FBgn0038750", "EGF_Baseline": "0.59"}, {"ID": "FBgn0038646", "EGF_Baseline": "0.28"}, {"ID": "FBgn0036226", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0034387", "EGF_Baseline": "0.49"}, {"ID": "FBgn0052264", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0063496", "EGF_Baseline": "0.34"}, {"ID": "FBgn0033978", "EGF_Baseline": "0.29"}, {"ID": "FBgn0054040", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0036449", "EGF_Baseline": "0.07"}, {"ID": "FBgn0032498", "EGF_Baseline": "1.67"}, {"ID": "FBgn0036668", "EGF_Baseline": "4.27"}, {"ID": "FBgn0038058", "EGF_Baseline": "0.65"}, {"ID": "FBgn0032338", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0020907", "EGF_Baseline": "1.13"}, {"ID": "FBgn0015770", "EGF_Baseline": "1.33"}, {"ID": "FBgn0028342", "EGF_Baseline": "0.2"}, {"ID": "FBgn0030603", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0011766", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0037293", "EGF_Baseline": "-1.61"}, {"ID": "FBgn0028999", "EGF_Baseline": "-1.58"}, {"ID": "FBgn0035873", "EGF_Baseline": "0.35"}, {"ID": "FBgn0037017", "EGF_Baseline": "-0.26"}, {"ID": "FBgn0015794", "EGF_Baseline": "1.16"}, {"ID": "FBgn0053796", "EGF_Baseline": "-1.44"}, {"ID": "FBgn0025781", "EGF_Baseline": "-0.45"}, {"ID": "FBgn0038877", "EGF_Baseline": "0.45"}, {"ID": "FBgn0029753", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0031466", "EGF_Baseline": "0.43"}, {"ID": "FBgn0037935", "EGF_Baseline": "0.43"}, {"ID": "FBgn0027563", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0033810", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0039529", "EGF_Baseline": "-1.73"}, {"ID": "FBgn0036469", "EGF_Baseline": "5.1"}, {"ID": "FBgn0033741", "EGF_Baseline": "0.36"}, {"ID": "FBgn0086680", "EGF_Baseline": "1.02"}, {"ID": "FBgn0261386", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0032733", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0052406", "EGF_Baseline": "-1.33"}, {"ID": "FBgn0032377", "EGF_Baseline": "1.38"}, {"ID": "FBgn0033408", "EGF_Baseline": "-0.21"}, {"ID": "FBgn0036607", "EGF_Baseline": "-0.33"}, {"ID": "FBgn0000216", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0010399", "EGF_Baseline": "-0.19"}, {"ID": "FBgn0086712", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0034325", "EGF_Baseline": "-0.49"}, {"ID": "FBgn0038588", "EGF_Baseline": "0.47"}, {"ID": "FBgn0036463", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0036442", "EGF_Baseline": "-0.37"}, {"ID": "FBgn0034278", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0085254", "EGF_Baseline": "-0.34"}, {"ID": "FBgn0040388", "EGF_Baseline": "-1.38"}, {"ID": "FBgn0030615", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0033672", "EGF_Baseline": "0.88"}, {"ID": "FBgn0038202", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0033088", "EGF_Baseline": "0.66"}, {"ID": "FBgn0035283", "EGF_Baseline": "2.34"}, {"ID": "FBgn0039879", "EGF_Baseline": "-1.2"}, {"ID": "FBgn0031011", "EGF_Baseline": "0.67"}, {"ID": "FBgn0034245", "EGF_Baseline": "0.25"}, {"ID": "FBgn0085385", "EGF_Baseline": "0.47"}, {"ID": "FBgn0011740", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0036272", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0051851", "EGF_Baseline": "-1.3"}, {"ID": "FBgn0085317", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0038261", "EGF_Baseline": "0.06"}, {"ID": "FBgn0020294", "EGF_Baseline": "0.59"}, {"ID": "FBgn0033691", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0050074", "EGF_Baseline": "0.6"}, {"ID": "FBgn0003145", "EGF_Baseline": "0.26"}, {"ID": "FBgn0030543", "EGF_Baseline": "-0.46"}, {"ID": "FBgn0035178", "EGF_Baseline": "-1.35"}, {"ID": "FBgn0038390", "EGF_Baseline": "-0.35"}, {"ID": "FBgn0032878", "EGF_Baseline": "0.53"}, {"ID": "FBgn0032017", "EGF_Baseline": "-0.16"}, {"ID": "FBgn0000008", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0035880", "EGF_Baseline": "0.43"}, {"ID": "FBgn0037688", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0039710", "EGF_Baseline": "-1.81"}, {"ID": "FBgn0031016", "EGF_Baseline": "1.53"}, {"ID": "FBgn0046214", "EGF_Baseline": "0.88"}, {"ID": "FBgn0042186", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0013435", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0052708", "EGF_Baseline": "-1.4"}, {"ID": "FBgn0010342", "EGF_Baseline": "-1"}, {"ID": "FBgn0015033", "EGF_Baseline": "1.79"}, {"ID": "FBgn0037374", "EGF_Baseline": "-1.04"}, {"ID": "FBgn0036210", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0028331", "EGF_Baseline": "0.53"}, {"ID": "FBgn0261931", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0040342", "EGF_Baseline": "-1.46"}, {"ID": "FBgn0002036", "EGF_Baseline": "0.87"}, {"ID": "FBgn0020249", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0030813", "EGF_Baseline": "-1.61"}, {"ID": "FBgn0031261", "EGF_Baseline": "-0.19"}, {"ID": "FBgn0039293", "EGF_Baseline": "1.47"}, {"ID": "FBgn0038414", "EGF_Baseline": "-1.54"}, {"ID": "FBgn0038454", "EGF_Baseline": "-1.6"}, {"ID": "FBgn0036574", "EGF_Baseline": "0.19"}, {"ID": "FBgn0039714", "EGF_Baseline": "-0.54"}, {"ID": "FBgn0024244", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0030662", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0036199", "EGF_Baseline": "0.42"}, {"ID": "FBgn0086254", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0051343", "EGF_Baseline": "1.43"}, {"ID": "FBgn0041629", "EGF_Baseline": "0.72"}, {"ID": "FBgn0036038", "EGF_Baseline": "-1.46"}, {"ID": "FBgn0031670", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0024289", "EGF_Baseline": "1"}, {"ID": "FBgn0032846", "EGF_Baseline": "0.56"}, {"ID": "FBgn0033598", "EGF_Baseline": "-0.63"}, {"ID": "FBgn0035287", "EGF_Baseline": "1.22"}, {"ID": "FBgn0014857", "EGF_Baseline": "-2.03"}, {"ID": "FBgn0037036", "EGF_Baseline": "0.43"}, {"ID": "FBgn0011708", "EGF_Baseline": "1.27"}, {"ID": "FBgn0039634", "EGF_Baseline": "-1.77"}, {"ID": "FBgn0040565", "EGF_Baseline": "0.53"}, {"ID": "FBgn0033357", "EGF_Baseline": "-1.46"}, {"ID": "FBgn0037621", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0038775", "EGF_Baseline": "-1.5"}, {"ID": "FBgn0030620", "EGF_Baseline": "1.34"}, {"ID": "FBgn0041224", "EGF_Baseline": "0.91"}, {"ID": "FBgn0260743", "EGF_Baseline": "0.55"}, {"ID": "FBgn0031695", "EGF_Baseline": "-1.14"}, {"ID": "FBgn0040394", "EGF_Baseline": "2.19"}, {"ID": "FBgn0038049", "EGF_Baseline": "-6.26"}, {"ID": "FBgn0034974", "EGF_Baseline": "-1.65"}, {"ID": "FBgn0030933", "EGF_Baseline": "1.63"}, {"ID": "FBgn0039304", "EGF_Baseline": "-1.61"}, {"ID": "FBgn0010246", "EGF_Baseline": "0.69"}, {"ID": "FBgn0038273", "EGF_Baseline": "-1.24"}, {"ID": "FBgn0030151", "EGF_Baseline": "-0.5"}, {"ID": "FBgn0033820", "EGF_Baseline": "-0.37"}, {"ID": "FBgn0036510", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0039464", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0039350", "EGF_Baseline": "0.8"}, {"ID": "FBgn0024222", "EGF_Baseline": "-1.52"}, {"ID": "FBgn0033195", "EGF_Baseline": "2.46"}, {"ID": "FBgn0030041", "EGF_Baseline": "1.35"}, {"ID": "FBgn0028647", "EGF_Baseline": "0.94"}, {"ID": "FBgn0033712", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0004514", "EGF_Baseline": "1.3"}, {"ID": "FBgn0261562", "EGF_Baseline": "0.54"}, {"ID": "FBgn0032769", "EGF_Baseline": "-0.65"}, {"ID": "FBgn0033380", "EGF_Baseline": "-0.41"}, {"ID": "FBgn0035401", "EGF_Baseline": "-1.39"}, {"ID": "FBgn0035264", "EGF_Baseline": "0.8"}, {"ID": "FBgn0085345", "EGF_Baseline": "0.11"}, {"ID": "FBgn0261816", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0038706", "EGF_Baseline": "-1.4"}, {"ID": "FBgn0000233", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0038718", "EGF_Baseline": "1.78"}, {"ID": "FBgn0035092", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0260817", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0036698", "EGF_Baseline": "-0.71"}, {"ID": "FBgn0038290", "EGF_Baseline": "0.19"}, {"ID": "FBgn0034082", "EGF_Baseline": "0.3"}, {"ID": "FBgn0050497", "EGF_Baseline": "1.17"}, {"ID": "FBgn0035944", "EGF_Baseline": "-0.29"}, {"ID": "FBgn0039937", "EGF_Baseline": "-1.21"}, {"ID": "FBgn0016762", "EGF_Baseline": "-1.73"}, {"ID": "FBgn0040285", "EGF_Baseline": "-1.21"}, {"ID": "FBgn0035488", "EGF_Baseline": "2.07"}, {"ID": "FBgn0031540", "EGF_Baseline": "0.73"}, {"ID": "FBgn0034590", "EGF_Baseline": "1.05"}, {"ID": "FBgn0037388", "EGF_Baseline": "1.24"}, {"ID": "FBgn0035585", "EGF_Baseline": "-0.77"}, {"ID": "FBgn0037071", "EGF_Baseline": "0.37"}, {"ID": "FBgn0039585", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0051955", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0037849", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0015296", "EGF_Baseline": "-1.17"}, {"ID": "FBgn0030720", "EGF_Baseline": "1.05"}, {"ID": "FBgn0033389", "EGF_Baseline": "0.6"}, {"ID": "FBgn0259241", "EGF_Baseline": "0.76"}, {"ID": "FBgn0045502", "EGF_Baseline": "1.32"}, {"ID": "FBgn0038142", "EGF_Baseline": "-1.75"}, {"ID": "FBgn0040238", "EGF_Baseline": "-1.24"}, {"ID": "FBgn0051915", "EGF_Baseline": "0.55"}, {"ID": "FBgn0034784", "EGF_Baseline": "-0.66"}, {"ID": "FBgn0004118", "EGF_Baseline": "-0.08"}, {"ID": "FBgn0051347", "EGF_Baseline": "-1.72"}, {"ID": "FBgn0032816", "EGF_Baseline": "-1.91"}, {"ID": "FBgn0029879", "EGF_Baseline": "-0.64"}, {"ID": "FBgn0030930", "EGF_Baseline": "1.63"}, {"ID": "FBgn0083971", "EGF_Baseline": "0.9"}, {"ID": "FBgn0037837", "EGF_Baseline": "-0.81"}, {"ID": "FBgn0034300", "EGF_Baseline": "-0.38"}, {"ID": "FBgn0033669", "EGF_Baseline": "-1.38"}, {"ID": "FBgn0037544", "EGF_Baseline": "-1.1"}, {"ID": "FBgn0036619", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0045064", "EGF_Baseline": "-1.36"}, {"ID": "FBgn0034429", "EGF_Baseline": "-1.27"}, {"ID": "FBgn0031258", "EGF_Baseline": "0.38"}, {"ID": "FBgn0259166", "EGF_Baseline": "-1.55"}, {"ID": "FBgn0045498", "EGF_Baseline": "1.1"}, {"ID": "FBgn0083950", "EGF_Baseline": "1.01"}, {"ID": "FBgn0038665", "EGF_Baseline": "-1.51"}, {"ID": "FBgn0045479", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0032065", "EGF_Baseline": "-1.74"}, {"ID": "FBgn0000239", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0036770", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0039378", "EGF_Baseline": "-0.98"}, {"ID": "FBgn0033905", "EGF_Baseline": "0.4"}, {"ID": "FBgn0003366", "EGF_Baseline": "1.5"}, {"ID": "FBgn0033512", "EGF_Baseline": "0.6"}, {"ID": "FBgn0004657", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0036945", "EGF_Baseline": "-0.59"}, {"ID": "FBgn0031784", "EGF_Baseline": "-1.27"}, {"ID": "FBgn0050285", "EGF_Baseline": "1.27"}, {"ID": "FBgn0050273", "EGF_Baseline": "-0.08"}, {"ID": "FBgn0035031", "EGF_Baseline": "1.35"}, {"ID": "FBgn0037747", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0019929", "EGF_Baseline": "1.13"}, {"ID": "FBgn0031906", "EGF_Baseline": "-0.45"}, {"ID": "FBgn0042104", "EGF_Baseline": "-1.24"}, {"ID": "FBgn0029740", "EGF_Baseline": "0.46"}, {"ID": "FBgn0001404", "EGF_Baseline": "-1.36"}, {"ID": "FBgn0035639", "EGF_Baseline": "-1.24"}, {"ID": "FBgn0035168", "EGF_Baseline": "0.2"}, {"ID": "FBgn0086365", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0037794", "EGF_Baseline": "0.98"}, {"ID": "FBgn0039705", "EGF_Baseline": "1.05"}, {"ID": "FBgn0034199", "EGF_Baseline": "0.27"}, {"ID": "FBgn0037676", "EGF_Baseline": "-1.54"}, {"ID": "FBgn0052549", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0052066", "EGF_Baseline": "-0.54"}, {"ID": "FBgn0050375", "EGF_Baseline": "-1.81"}, {"ID": "FBgn0037842", "EGF_Baseline": "0.21"}, {"ID": "FBgn0035238", "EGF_Baseline": "-1.37"}, {"ID": "FBgn0031161", "EGF_Baseline": "-0.63"}, {"ID": "FBgn0001217", "EGF_Baseline": "0.35"}, {"ID": "FBgn0029587", "EGF_Baseline": "0.32"}, {"ID": "FBgn0032429", "EGF_Baseline": "0.53"}, {"ID": "FBgn0034001", "EGF_Baseline": "1.22"}, {"ID": "FBgn0039560", "EGF_Baseline": "1.45"}, {"ID": "FBgn0052521", "EGF_Baseline": "0.5"}, {"ID": "FBgn0032613", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0030469", "EGF_Baseline": "-0.33"}, {"ID": "FBgn0020372", "EGF_Baseline": "1.38"}, {"ID": "FBgn0033921", "EGF_Baseline": "-0.5"}, {"ID": "FBgn0040759", "EGF_Baseline": "-1.31"}, {"ID": "FBgn0000427", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0032684", "EGF_Baseline": "-0.37"}, {"ID": "FBgn0051465", "EGF_Baseline": "0.69"}, {"ID": "FBgn0024177", "EGF_Baseline": "1.15"}, {"ID": "FBgn0030927", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0035120", "EGF_Baseline": "0.38"}, {"ID": "FBgn0261437", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0031432", "EGF_Baseline": "-0.16"}, {"ID": "FBgn0039942", "EGF_Baseline": "-0.52"}, {"ID": "FBgn0030109", "EGF_Baseline": "0.22"}, {"ID": "FBgn0037941", "EGF_Baseline": "0.67"}, {"ID": "FBgn0261403", "EGF_Baseline": "-0.81"}, {"ID": "FBgn0039034", "EGF_Baseline": "0.27"}, {"ID": "FBgn0037988", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0029118", "EGF_Baseline": "1.1"}, {"ID": "FBgn0025838", "EGF_Baseline": "-1.53"}, {"ID": "FBgn0028473", "EGF_Baseline": "-0.54"}, {"ID": "FBgn0035043", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0036740", "EGF_Baseline": "-0.49"}, {"ID": "FBgn0026404", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0051897", "EGF_Baseline": "-1.3"}, {"ID": "FBgn0004652", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0032321", "EGF_Baseline": "0.35"}, {"ID": "FBgn0039472", "EGF_Baseline": "-1.1"}, {"ID": "FBgn0023023", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0034729", "EGF_Baseline": "-1.64"}, {"ID": "FBgn0034884", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0033883", "EGF_Baseline": "1.06"}, {"ID": "FBgn0051813", "EGF_Baseline": "1.66"}, {"ID": "FBgn0026207", "EGF_Baseline": "1.96"}, {"ID": "FBgn0085300", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0035049", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0030805", "EGF_Baseline": "-0.59"}, {"ID": "FBgn0038816", "EGF_Baseline": "-1.34"}, {"ID": "FBgn0038318", "EGF_Baseline": "0.47"}, {"ID": "FBgn0261862", "EGF_Baseline": "1.14"}, {"ID": "FBgn0036219", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0034739", "EGF_Baseline": "-0.31"}, {"ID": "FBgn0033782", "EGF_Baseline": "0.88"}, {"ID": "FBgn0036695", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0030433", "EGF_Baseline": "-1.27"}, {"ID": "FBgn0030362", "EGF_Baseline": "0.98"}, {"ID": "FBgn0039565", "EGF_Baseline": "0.75"}, {"ID": "FBgn0039552", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0020439", "EGF_Baseline": "1.53"}, {"ID": "FBgn0040696", "EGF_Baseline": "-0.11"}, {"ID": "FBgn0035496", "EGF_Baseline": "1.09"}, {"ID": "FBgn0028582", "EGF_Baseline": "2.81"}, {"ID": "FBgn0037807", "EGF_Baseline": "1.12"}, {"ID": "FBgn0032283", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0030074", "EGF_Baseline": "0.97"}, {"ID": "FBgn0010423", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0035042", "EGF_Baseline": "0.93"}, {"ID": "FBgn0028945", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0016080", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0038011", "EGF_Baseline": "-0.39"}, {"ID": "FBgn0053296", "EGF_Baseline": "-0.54"}, {"ID": "FBgn0026761", "EGF_Baseline": "0.04"}, {"ID": "FBgn0052418", "EGF_Baseline": "1.23"}, {"ID": "FBgn0037488", "EGF_Baseline": "0.72"}, {"ID": "FBgn0052054", "EGF_Baseline": "-1.35"}, {"ID": "FBgn0026573", "EGF_Baseline": "-1.64"}, {"ID": "FBgn0041789", "EGF_Baseline": "1.3"}, {"ID": "FBgn0260866", "EGF_Baseline": "-1.17"}, {"ID": "FBgn0034365", "EGF_Baseline": "0.17"}, {"ID": "FBgn0037213", "EGF_Baseline": "0.84"}, {"ID": "FBgn0085360", "EGF_Baseline": "0.3"}, {"ID": "FBgn0046776", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0027794", "EGF_Baseline": "-0.3"}, {"ID": "FBgn0033235", "EGF_Baseline": "-1.45"}, {"ID": "FBgn0037364", "EGF_Baseline": "-0.66"}, {"ID": "FBgn0051016", "EGF_Baseline": "-0.26"}, {"ID": "FBgn0032138", "EGF_Baseline": "1.51"}, {"ID": "FBgn0051365", "EGF_Baseline": "1.69"}, {"ID": "FBgn0036807", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0037115", "EGF_Baseline": "0.22"}, {"ID": "FBgn0053282", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0039731", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0037956", "EGF_Baseline": "1.14"}, {"ID": "FBgn0030918", "EGF_Baseline": "0.55"}, {"ID": "FBgn0030796", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0012042", "EGF_Baseline": "0.18"}, {"ID": "FBgn0053322", "EGF_Baseline": "0.56"}, {"ID": "FBgn0005630", "EGF_Baseline": "-2.42"}, {"ID": "FBgn0035086", "EGF_Baseline": "-0.28"}, {"ID": "FBgn0011586", "EGF_Baseline": "0.81"}, {"ID": "FBgn0052720", "EGF_Baseline": "-0.41"}, {"ID": "FBgn0033524", "EGF_Baseline": "-0.71"}, {"ID": "FBgn0029093", "EGF_Baseline": "-1.21"}, {"ID": "FBgn0085456", "EGF_Baseline": "0.4"}, {"ID": "FBgn0028852", "EGF_Baseline": "0.64"}, {"ID": "FBgn0054002", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0035023", "EGF_Baseline": "0.54"}, {"ID": "FBgn0050053", "EGF_Baseline": "1.26"}, {"ID": "FBgn0035766", "EGF_Baseline": "1.42"}, {"ID": "FBgn0037638", "EGF_Baseline": "0.98"}, {"ID": "FBgn0053648", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0002413", "EGF_Baseline": "0.55"}, {"ID": "FBgn0033588", "EGF_Baseline": "-1.64"}, {"ID": "FBgn0261698", "EGF_Baseline": "1.51"}, {"ID": "FBgn0032409", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0051882", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0035382", "EGF_Baseline": "0.27"}, {"ID": "FBgn0259139", "EGF_Baseline": "-2.12"}, {"ID": "FBgn0028847", "EGF_Baseline": "-1.71"}, {"ID": "FBgn0030863", "EGF_Baseline": "-1.04"}, {"ID": "FBgn0037739", "EGF_Baseline": "0.53"}, {"ID": "FBgn0003975", "EGF_Baseline": "-1.67"}, {"ID": "FBgn0034756", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0051805", "EGF_Baseline": "-0.84"}, {"ID": "FBgn0036194", "EGF_Baseline": "1.44"}, {"ID": "FBgn0033447", "EGF_Baseline": "0.45"}, {"ID": "FBgn0037944", "EGF_Baseline": "-0.65"}, {"ID": "FBgn0039254", "EGF_Baseline": "-1.51"}, {"ID": "FBgn0023177", "EGF_Baseline": "2.24"}, {"ID": "FBgn0038603", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0037832", "EGF_Baseline": "0.73"}, {"ID": "FBgn0052022", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0011300", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0013813", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0030729", "EGF_Baseline": "-0.91"}, {"ID": "FBgn0024315", "EGF_Baseline": "-1.65"}, {"ID": "FBgn0038952", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0033653", "EGF_Baseline": "1.8"}, {"ID": "FBgn0035295", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0038307", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0085354", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0036150", "EGF_Baseline": "0.67"}, {"ID": "FBgn0030840", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0032796", "EGF_Baseline": "0.83"}, {"ID": "FBgn0037044", "EGF_Baseline": "-0.25"}, {"ID": "FBgn0036028", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0029888", "EGF_Baseline": "-1.26"}, {"ID": "FBgn0029799", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0259707", "EGF_Baseline": "1.31"}, {"ID": "FBgn0026402", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0034826", "EGF_Baseline": "0.32"}, {"ID": "FBgn0034491", "EGF_Baseline": "-0.28"}, {"ID": "FBgn0032669", "EGF_Baseline": "-0.22"}, {"ID": "FBgn0086711", "EGF_Baseline": "-1.77"}, {"ID": "FBgn0004837", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0038042", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0005777", "EGF_Baseline": "0.54"}, {"ID": "FBgn0036481", "EGF_Baseline": "-0.43"}, {"ID": "FBgn0033052", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0040734", "EGF_Baseline": "1.65"}, {"ID": "FBgn0037064", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0030270", "EGF_Baseline": "0.71"}, {"ID": "FBgn0028968", "EGF_Baseline": "0.29"}, {"ID": "FBgn0025645", "EGF_Baseline": "0.84"}, {"ID": "FBgn0038662", "EGF_Baseline": "-1.26"}, {"ID": "FBgn0031047", "EGF_Baseline": "1.42"}, {"ID": "FBgn0038897", "EGF_Baseline": "-1.23"}, {"ID": "FBgn0022943", "EGF_Baseline": "-1.37"}, {"ID": "FBgn0036257", "EGF_Baseline": "0.66"}, {"ID": "FBgn0032210", "EGF_Baseline": "0.48"}, {"ID": "FBgn0002922", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0032647", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0040298", "EGF_Baseline": "-1.37"}, {"ID": "FBgn0037555", "EGF_Baseline": "-1.69"}, {"ID": "FBgn0036319", "EGF_Baseline": "0.32"}, {"ID": "FBgn0035942", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0034579", "EGF_Baseline": "-1.38"}, {"ID": "FBgn0040001", "EGF_Baseline": "-0.28"}, {"ID": "FBgn0039817", "EGF_Baseline": "1.2"}, {"ID": "FBgn0037106", "EGF_Baseline": "-0.81"}, {"ID": "FBgn0004368", "EGF_Baseline": "-1.45"}, {"ID": "FBgn0031832", "EGF_Baseline": "-1.22"}, {"ID": "FBgn0003210", "EGF_Baseline": "-1.53"}, {"ID": "FBgn0032651", "EGF_Baseline": "-0.4"}, {"ID": "FBgn0053158", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0033178", "EGF_Baseline": "-0.98"}, {"ID": "FBgn0017572", "EGF_Baseline": "-1.84"}, {"ID": "FBgn0027498", "EGF_Baseline": "-0.8"}, {"ID": "FBgn0027492", "EGF_Baseline": "-1.14"}, {"ID": "FBgn0003317", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0031735", "EGF_Baseline": "-0.9"}, {"ID": "FBgn0035953", "EGF_Baseline": "0.29"}, {"ID": "FBgn0043458", "EGF_Baseline": "-1.57"}, {"ID": "FBgn0051025", "EGF_Baseline": "1.07"}, {"ID": "FBgn0024232", "EGF_Baseline": "1.16"}, {"ID": "FBgn0035099", "EGF_Baseline": "-1.39"}, {"ID": "FBgn0034371", "EGF_Baseline": "0.72"}, {"ID": "FBgn0035708", "EGF_Baseline": "-1.51"}, {"ID": "FBgn0011204", "EGF_Baseline": "-1.15"}, {"ID": "FBgn0015019", "EGF_Baseline": "-1.62"}, {"ID": "FBgn0000482", "EGF_Baseline": "-1.21"}, {"ID": "FBgn0033750", "EGF_Baseline": "0.74"}, {"ID": "FBgn0036007", "EGF_Baseline": "-0.28"}, {"ID": "FBgn0031407", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0035246", "EGF_Baseline": "0.31"}, {"ID": "FBgn0033350", "EGF_Baseline": "1.45"}, {"ID": "FBgn0033093", "EGF_Baseline": "0.98"}, {"ID": "FBgn0032486", "EGF_Baseline": "0.19"}, {"ID": "FBgn0050035", "EGF_Baseline": "2.03"}, {"ID": "FBgn0038006", "EGF_Baseline": "-0.2"}, {"ID": "FBgn0035113", "EGF_Baseline": "-1.58"}, {"ID": "FBgn0043792", "EGF_Baseline": "0.94"}, {"ID": "FBgn0003950", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0037026", "EGF_Baseline": "1.5"}, {"ID": "FBgn0034447", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0086613", "EGF_Baseline": "-1.9"}, {"ID": "FBgn0036099", "EGF_Baseline": "-0.72"}, {"ID": "FBgn0052451", "EGF_Baseline": "-1.72"}, {"ID": "FBgn0011725", "EGF_Baseline": "0.87"}, {"ID": "FBgn0031814", "EGF_Baseline": "-1.39"}, {"ID": "FBgn0031747", "EGF_Baseline": "0.89"}, {"ID": "FBgn0010355", "EGF_Baseline": "-1"}, {"ID": "FBgn0036341", "EGF_Baseline": "0.87"}, {"ID": "FBgn0033107", "EGF_Baseline": "-1.69"}, {"ID": "FBgn0050295", "EGF_Baseline": "1.55"}, {"ID": "FBgn0053775", "EGF_Baseline": "0.45"}, {"ID": "FBgn0260481", "EGF_Baseline": "-0.27"}, {"ID": "FBgn0030642", "EGF_Baseline": "0.57"}, {"ID": "FBgn0261647", "EGF_Baseline": "0.64"}, {"ID": "FBgn0050077", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0030883", "EGF_Baseline": "-1.31"}, {"ID": "FBgn0038109", "EGF_Baseline": "0.13"}, {"ID": "FBgn0052448", "EGF_Baseline": "1.2"}, {"ID": "FBgn0053180", "EGF_Baseline": "0.24"}, {"ID": "FBgn0034229", "EGF_Baseline": "1.33"}, {"ID": "FBgn0042198", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0000259", "EGF_Baseline": "1.06"}, {"ID": "FBgn0022349", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0051126", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0036612", "EGF_Baseline": "-0.56"}, {"ID": "FBgn0028746", "EGF_Baseline": "1.5"}, {"ID": "FBgn0038584", "EGF_Baseline": "0.73"}, {"ID": "FBgn0039881", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0019960", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0020621", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0033321", "EGF_Baseline": "0.14"}, {"ID": "FBgn0030853", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0031770", "EGF_Baseline": "-1.75"}, {"ID": "FBgn0030753", "EGF_Baseline": "-0.38"}, {"ID": "FBgn0032833", "EGF_Baseline": "-1.21"}, {"ID": "FBgn0037419", "EGF_Baseline": "-1.81"}, {"ID": "FBgn0052407", "EGF_Baseline": "-1.21"}, {"ID": "FBgn0032431", "EGF_Baseline": "1.66"}, {"ID": "FBgn0011648", "EGF_Baseline": "-0.39"}, {"ID": "FBgn0085488", "EGF_Baseline": "-1.3"}, {"ID": "FBgn0017561", "EGF_Baseline": "-0.59"}, {"ID": "FBgn0033706", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0028668", "EGF_Baseline": "0.6"}, {"ID": "FBgn0052027", "EGF_Baseline": "-0.1"}, {"ID": "FBgn0039408", "EGF_Baseline": "0.48"}, {"ID": "FBgn0000352", "EGF_Baseline": "-0.39"}, {"ID": "FBgn0038659", "EGF_Baseline": "-1.3"}, {"ID": "FBgn0039768", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0031660", "EGF_Baseline": "0.78"}, {"ID": "FBgn0031802", "EGF_Baseline": "1.01"}, {"ID": "FBgn0029147", "EGF_Baseline": "0.33"}, {"ID": "FBgn0037563", "EGF_Baseline": "0.76"}, {"ID": "FBgn0032690", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0040532", "EGF_Baseline": "0.93"}, {"ID": "FBgn0052791", "EGF_Baseline": "-0.34"}, {"ID": "FBgn0035141", "EGF_Baseline": "1.17"}, {"ID": "FBgn0038482", "EGF_Baseline": "1.02"}, {"ID": "FBgn0039092", "EGF_Baseline": "-1.89"}, {"ID": "FBgn0030504", "EGF_Baseline": "-0.08"}, {"ID": "FBgn0039694", "EGF_Baseline": "-1.52"}, {"ID": "FBgn0031765", "EGF_Baseline": "0.67"}, {"ID": "FBgn0014022", "EGF_Baseline": "-0.44"}, {"ID": "FBgn0039613", "EGF_Baseline": "1.01"}, {"ID": "FBgn0033629", "EGF_Baseline": "1.18"}, {"ID": "FBgn0259927", "EGF_Baseline": "0.69"}, {"ID": "FBgn0051414", "EGF_Baseline": "1.77"}, {"ID": "FBgn0035384", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0037001", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0053752", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0260990", "EGF_Baseline": "1.79"}, {"ID": "FBgn0028500", "EGF_Baseline": "-0.28"}, {"ID": "FBgn0037081", "EGF_Baseline": "-0.25"}, {"ID": "FBgn0085419", "EGF_Baseline": "0.87"}, {"ID": "FBgn0036878", "EGF_Baseline": "-1.95"}, {"ID": "FBgn0032214", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0086673", "EGF_Baseline": "-1.44"}, {"ID": "FBgn0037249", "EGF_Baseline": "2.32"}, {"ID": "FBgn0037461", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0037504", "EGF_Baseline": "-1.78"}, {"ID": "FBgn0046294", "EGF_Baseline": "-1.62"}, {"ID": "FBgn0053519", "EGF_Baseline": "1.36"}, {"ID": "FBgn0034973", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0052987", "EGF_Baseline": "-1.66"}, {"ID": "FBgn0035969", "EGF_Baseline": "1.04"}, {"ID": "FBgn0032050", "EGF_Baseline": "-1.33"}, {"ID": "FBgn0033569", "EGF_Baseline": "0.53"}, {"ID": "FBgn0040954", "EGF_Baseline": "1.51"}, {"ID": "FBgn0036083", "EGF_Baseline": "-2.01"}, {"ID": "FBgn0036706", "EGF_Baseline": "1.36"}, {"ID": "FBgn0036292", "EGF_Baseline": "0.49"}, {"ID": "FBgn0259483", "EGF_Baseline": "0.99"}, {"ID": "FBgn0037255", "EGF_Baseline": "-0.39"}, {"ID": "FBgn0030049", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0038189", "EGF_Baseline": "-0.35"}, {"ID": "FBgn0035505", "EGF_Baseline": "0.74"}, {"ID": "FBgn0031093", "EGF_Baseline": "2.55"}, {"ID": "FBgn0000499", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0037583", "EGF_Baseline": "-1.31"}, {"ID": "FBgn0037670", "EGF_Baseline": "1.56"}, {"ID": "FBgn0030537", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0037369", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0038233", "EGF_Baseline": "0.07"}, {"ID": "FBgn0051278", "EGF_Baseline": "0.38"}, {"ID": "FBgn0031786", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0050106", "EGF_Baseline": "1.11"}, {"ID": "FBgn0052446", "EGF_Baseline": "-0.98"}, {"ID": "FBgn0054007", "EGF_Baseline": "0.68"}, {"ID": "FBgn0039923", "EGF_Baseline": "-1.88"}, {"ID": "FBgn0083945", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0026257", "EGF_Baseline": "-0.39"}, {"ID": "FBgn0036386", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0027085", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0036909", "EGF_Baseline": "-0.05"}, {"ID": "FBgn0043532", "EGF_Baseline": "-1.81"}, {"ID": "FBgn0085412", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0010282", "EGF_Baseline": "0.63"}, {"ID": "FBgn0261529", "EGF_Baseline": "-0.42"}, {"ID": "FBgn0002565", "EGF_Baseline": "-0.77"}, {"ID": "FBgn0085201", "EGF_Baseline": "-1.86"}, {"ID": "FBgn0051713", "EGF_Baseline": "-0.63"}, {"ID": "FBgn0031168", "EGF_Baseline": "-1.37"}, {"ID": "FBgn0023211", "EGF_Baseline": "0.38"}, {"ID": "FBgn0010078", "EGF_Baseline": "5.31"}, {"ID": "FBgn0036848", "EGF_Baseline": "-1.43"}, {"ID": "FBgn0032864", "EGF_Baseline": "1.35"}, {"ID": "FBgn0037618", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0031842", "EGF_Baseline": "0.39"}, {"ID": "FBgn0029121", "EGF_Baseline": "0.49"}, {"ID": "FBgn0016917", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0052319", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0052237", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0037301", "EGF_Baseline": "-1.37"}, {"ID": "FBgn0036809", "EGF_Baseline": "-0.54"}, {"ID": "FBgn0031619", "EGF_Baseline": "-0.31"}, {"ID": "FBgn0028902", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0030823", "EGF_Baseline": "-0.46"}, {"ID": "FBgn0053284", "EGF_Baseline": "-0.84"}, {"ID": "FBgn0052751", "EGF_Baseline": "-0.43"}, {"ID": "FBgn0030571", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0037241", "EGF_Baseline": "-1.56"}, {"ID": "FBgn0031610", "EGF_Baseline": "1.58"}, {"ID": "FBgn0041706", "EGF_Baseline": "0.92"}, {"ID": "FBgn0032422", "EGF_Baseline": "-1.48"}, {"ID": "FBgn0051116", "EGF_Baseline": "0.75"}, {"ID": "FBgn0038862", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0035155", "EGF_Baseline": "-1.11"}, {"ID": "FBgn0051292", "EGF_Baseline": "0.39"}, {"ID": "FBgn0038686", "EGF_Baseline": "-0.52"}, {"ID": "FBgn0044872", "EGF_Baseline": "0.63"}, {"ID": "FBgn0036929", "EGF_Baseline": "-0.24"}, {"ID": "FBgn0030328", "EGF_Baseline": "0.88"}, {"ID": "FBgn0031061", "EGF_Baseline": "0.74"}, {"ID": "FBgn0037329", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0015570", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0052523", "EGF_Baseline": "-1.11"}, {"ID": "FBgn0004893", "EGF_Baseline": "1.28"}, {"ID": "FBgn0036832", "EGF_Baseline": "-1.37"}, {"ID": "FBgn0034745", "EGF_Baseline": "-0.77"}, {"ID": "FBgn0027594", "EGF_Baseline": "1.49"}, {"ID": "FBgn0013343", "EGF_Baseline": "0.7"}, {"ID": "FBgn0051251", "EGF_Baseline": "-1.76"}, {"ID": "FBgn0028371", "EGF_Baseline": "7.82"}, {"ID": "FBgn0037078", "EGF_Baseline": "-0.67"}, {"ID": "FBgn0033723", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0085259", "EGF_Baseline": "-1.42"}, {"ID": "FBgn0023458", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0034910", "EGF_Baseline": "-1.82"}, {"ID": "FBgn0043456", "EGF_Baseline": "-0.56"}, {"ID": "FBgn0052726", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0031504", "EGF_Baseline": "-1.74"}, {"ID": "FBgn0039102", "EGF_Baseline": "0.61"}, {"ID": "FBgn0024991", "EGF_Baseline": "0.58"}, {"ID": "FBgn0013759", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0050196", "EGF_Baseline": "0.57"}, {"ID": "FBgn0050350", "EGF_Baseline": "0.62"}, {"ID": "FBgn0003444", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0050362", "EGF_Baseline": "0.52"}, {"ID": "FBgn0026598", "EGF_Baseline": "-1.62"}, {"ID": "FBgn0038446", "EGF_Baseline": "-0.67"}, {"ID": "FBgn0039830", "EGF_Baseline": "-1.67"}, {"ID": "FBgn0014930", "EGF_Baseline": "-1.4"}, {"ID": "FBgn0033830", "EGF_Baseline": "0.56"}, {"ID": "FBgn0034248", "EGF_Baseline": "0.65"}, {"ID": "FBgn0032706", "EGF_Baseline": "-2.02"}, {"ID": "FBgn0028546", "EGF_Baseline": "0.91"}, {"ID": "FBgn0000719", "EGF_Baseline": "-1.59"}, {"ID": "FBgn0051798", "EGF_Baseline": "6.24"}, {"ID": "FBgn0040674", "EGF_Baseline": "-1.31"}, {"ID": "FBgn0005536", "EGF_Baseline": "-1.51"}, {"ID": "FBgn0031104", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0083167", "EGF_Baseline": "-0.34"}, {"ID": "FBgn0001185", "EGF_Baseline": "0.81"}, {"ID": "FBgn0037998", "EGF_Baseline": "0.56"}, {"ID": "FBgn0039425", "EGF_Baseline": "1.56"}, {"ID": "FBgn0036234", "EGF_Baseline": "-0.69"}, {"ID": "FBgn0031955", "EGF_Baseline": "1.56"}, {"ID": "FBgn0004828", "EGF_Baseline": "-1.84"}, {"ID": "FBgn0030590", "EGF_Baseline": "1.49"}, {"ID": "FBgn0039109", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0032780", "EGF_Baseline": "2.75"}, {"ID": "FBgn0033557", "EGF_Baseline": "-0.4"}, {"ID": "FBgn0033807", "EGF_Baseline": "0.23"}, {"ID": "FBgn0002284", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0038761", "EGF_Baseline": "1.12"}, {"ID": "FBgn0031472", "EGF_Baseline": "0.5"}, {"ID": "FBgn0032853", "EGF_Baseline": "-0.28"}, {"ID": "FBgn0026376", "EGF_Baseline": "0.09"}, {"ID": "FBgn0052984", "EGF_Baseline": "-0.46"}, {"ID": "FBgn0038975", "EGF_Baseline": "1.5"}, {"ID": "FBgn0013679", "EGF_Baseline": "0.19"}, {"ID": "FBgn0034906", "EGF_Baseline": "1.58"}, {"ID": "FBgn0030747", "EGF_Baseline": "1.17"}, {"ID": "FBgn0037204", "EGF_Baseline": "-1.7"}, {"ID": "FBgn0030686", "EGF_Baseline": "-1.72"}, {"ID": "FBgn0250837", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0036568", "EGF_Baseline": "1.11"}, {"ID": "FBgn0032262", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0003429", "EGF_Baseline": "0.31"}, {"ID": "FBgn0025595", "EGF_Baseline": "0.92"}, {"ID": "FBgn0032187", "EGF_Baseline": "-1.27"}, {"ID": "FBgn0037186", "EGF_Baseline": "0.72"}, {"ID": "FBgn0085451", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0036314", "EGF_Baseline": "1.94"}, {"ID": "FBgn0035735", "EGF_Baseline": "-0.25"}, {"ID": "FBgn0085190", "EGF_Baseline": "1.49"}, {"ID": "FBgn0029818", "EGF_Baseline": "0.33"}, {"ID": "FBgn0028471", "EGF_Baseline": "-1.52"}, {"ID": "FBgn0039483", "EGF_Baseline": "-0.82"}, {"ID": "FBgn0035604", "EGF_Baseline": "1.55"}, {"ID": "FBgn0030704", "EGF_Baseline": "1.14"}, {"ID": "FBgn0033285", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0004643", "EGF_Baseline": "0.51"}, {"ID": "FBgn0033226", "EGF_Baseline": "-1.36"}, {"ID": "FBgn0037828", "EGF_Baseline": "-0.35"}, {"ID": "FBgn0259140", "EGF_Baseline": "-1.47"}, {"ID": "FBgn0027074", "EGF_Baseline": "-0.3"}, {"ID": "FBgn0011573", "EGF_Baseline": "-1.7"}, {"ID": "FBgn0034380", "EGF_Baseline": "0.51"}, {"ID": "FBgn0038321", "EGF_Baseline": "-0.1"}, {"ID": "FBgn0038964", "EGF_Baseline": "-0.71"}, {"ID": "FBgn0010416", "EGF_Baseline": "0.38"}, {"ID": "FBgn0053489", "EGF_Baseline": "-0.56"}, {"ID": "FBgn0013442", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0029986", "EGF_Baseline": "-0.33"}, {"ID": "FBgn0031998", "EGF_Baseline": "0.75"}, {"ID": "FBgn0026361", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0029811", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0034776", "EGF_Baseline": "-1.08"}, {"ID": "FBgn0052113", "EGF_Baseline": "-1.64"}, {"ID": "FBgn0023171", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0029867", "EGF_Baseline": "-1.42"}, {"ID": "FBgn0260748", "EGF_Baseline": "-1.38"}, {"ID": "FBgn0028887", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0085486", "EGF_Baseline": "1.1"}, {"ID": "FBgn0050154", "EGF_Baseline": "-0.27"}, {"ID": "FBgn0000711", "EGF_Baseline": "-1.33"}, {"ID": "FBgn0040207", "EGF_Baseline": "-1.4"}, {"ID": "FBgn0028325", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0039219", "EGF_Baseline": "0.33"}, {"ID": "FBgn0029831", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0028658", "EGF_Baseline": "0.74"}, {"ID": "FBgn0036834", "EGF_Baseline": "-0.54"}, {"ID": "FBgn0037470", "EGF_Baseline": "1.4"}, {"ID": "FBgn0001145", "EGF_Baseline": "0.31"}, {"ID": "FBgn0035811", "EGF_Baseline": "0.83"}, {"ID": "FBgn0019968", "EGF_Baseline": "-0.41"}, {"ID": "FBgn0243511", "EGF_Baseline": "0.36"}, {"ID": "FBgn0040773", "EGF_Baseline": "-2.27"}, {"ID": "FBgn0033482", "EGF_Baseline": "0.3"}, {"ID": "FBgn0017577", "EGF_Baseline": "0.68"}, {"ID": "FBgn0039856", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0017456", "EGF_Baseline": "1.05"}, {"ID": "FBgn0035167", "EGF_Baseline": "0.65"}, {"ID": "FBgn0037981", "EGF_Baseline": "1.27"}, {"ID": "FBgn0013953", "EGF_Baseline": "0.38"}, {"ID": "FBgn0027934", "EGF_Baseline": "1.68"}, {"ID": "FBgn0033164", "EGF_Baseline": "-1.45"}, {"ID": "FBgn0004177", "EGF_Baseline": "2"}, {"ID": "FBgn0025725", "EGF_Baseline": "1.99"}, {"ID": "FBgn0042178", "EGF_Baseline": "0.48"}, {"ID": "FBgn0005592", "EGF_Baseline": "-1.7"}, {"ID": "FBgn0030572", "EGF_Baseline": "-1.7"}, {"ID": "FBgn0038613", "EGF_Baseline": "0.65"}, {"ID": "FBgn0035266", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0036183", "EGF_Baseline": "-0.06"}, {"ID": "FBgn0003870", "EGF_Baseline": "0.44"}, {"ID": "FBgn0033692", "EGF_Baseline": "-1.28"}, {"ID": "FBgn0034286", "EGF_Baseline": "0.56"}, {"ID": "FBgn0026323", "EGF_Baseline": "-1.6"}, {"ID": "FBgn0034065", "EGF_Baseline": "-0.52"}, {"ID": "FBgn0036157", "EGF_Baseline": "0.2"}, {"ID": "FBgn0034940", "EGF_Baseline": "-0.52"}, {"ID": "FBgn0025833", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0027611", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0260386", "EGF_Baseline": "-0.17"}, {"ID": "FBgn0045473", "EGF_Baseline": "-0.35"}, {"ID": "FBgn0024371", "EGF_Baseline": "-1.69"}, {"ID": "FBgn0039623", "EGF_Baseline": "-1.83"}, {"ID": "FBgn0028978", "EGF_Baseline": "0.94"}, {"ID": "FBgn0036331", "EGF_Baseline": "-0.11"}, {"ID": "FBgn0054039", "EGF_Baseline": "0.25"}, {"ID": "FBgn0030664", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0019952", "EGF_Baseline": "-1.28"}, {"ID": "FBgn0033461", "EGF_Baseline": "1.29"}, {"ID": "FBgn0024556", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0035106", "EGF_Baseline": "-0.41"}, {"ID": "FBgn0038065", "EGF_Baseline": "0.71"}, {"ID": "FBgn0033581", "EGF_Baseline": "1.08"}, {"ID": "FBgn0053160", "EGF_Baseline": "-0.14"}, {"ID": "FBgn0010389", "EGF_Baseline": "0.24"}, {"ID": "FBgn0034782", "EGF_Baseline": "-0.99"}, {"ID": "FBgn0046692", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0031589", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0033243", "EGF_Baseline": "-0.4"}, {"ID": "FBgn0052650", "EGF_Baseline": "0.74"}, {"ID": "FBgn0024985", "EGF_Baseline": "0.84"}, {"ID": "FBgn0000018", "EGF_Baseline": "0.83"}, {"ID": "FBgn0028940", "EGF_Baseline": "-1.43"}, {"ID": "FBgn0261547", "EGF_Baseline": "-0.37"}, {"ID": "FBgn0250830", "EGF_Baseline": "-0.98"}, {"ID": "FBgn0261015", "EGF_Baseline": "1.52"}, {"ID": "FBgn0027052", "EGF_Baseline": "-0.3"}, {"ID": "FBgn0036105", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0030530", "EGF_Baseline": "0.26"}, {"ID": "FBgn0085334", "EGF_Baseline": "-1.26"}, {"ID": "FBgn0035337", "EGF_Baseline": "0.45"}, {"ID": "FBgn0040606", "EGF_Baseline": "1.95"}, {"ID": "FBgn0032479", "EGF_Baseline": "0.67"}, {"ID": "FBgn0261445", "EGF_Baseline": "1.05"}, {"ID": "FBgn0020312", "EGF_Baseline": "-0.98"}, {"ID": "FBgn0050472", "EGF_Baseline": "1.24"}, {"ID": "FBgn0033017", "EGF_Baseline": "-1.72"}, {"ID": "FBgn0050088", "EGF_Baseline": "0.78"}, {"ID": "FBgn0022774", "EGF_Baseline": "0.25"}, {"ID": "FBgn0016034", "EGF_Baseline": "0.82"}, {"ID": "FBgn0029172", "EGF_Baseline": "1.61"}, {"ID": "FBgn0000588", "EGF_Baseline": "-1.18"}, {"ID": "FBgn0034400", "EGF_Baseline": "0.67"}, {"ID": "FBgn0026602", "EGF_Baseline": "1.23"}, {"ID": "FBgn0024889", "EGF_Baseline": "2.02"}, {"ID": "FBgn0050389", "EGF_Baseline": "1.17"}, {"ID": "FBgn0051676", "EGF_Baseline": "1.79"}, {"ID": "FBgn0038941", "EGF_Baseline": "-2.86"}, {"ID": "FBgn0024887", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0030740", "EGF_Baseline": "0.42"}, {"ID": "FBgn0052183", "EGF_Baseline": "-1.1"}, {"ID": "FBgn0003231", "EGF_Baseline": "0.78"}, {"ID": "FBgn0001229", "EGF_Baseline": "-0.27"}, {"ID": "FBgn0038072", "EGF_Baseline": "-0.4"}, {"ID": "FBgn0023535", "EGF_Baseline": "0.43"}, {"ID": "FBgn0036503", "EGF_Baseline": "2.2"}, {"ID": "FBgn0036334", "EGF_Baseline": "-0.81"}, {"ID": "FBgn0039265", "EGF_Baseline": "-1.05"}, {"ID": "FBgn0051100", "EGF_Baseline": "-1.04"}, {"ID": "FBgn0052642", "EGF_Baseline": "0.93"}, {"ID": "FBgn0026787", "EGF_Baseline": "-1.52"}, {"ID": "FBgn0037577", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0032771", "EGF_Baseline": "2.1"}, {"ID": "FBgn0010340", "EGF_Baseline": "-1.37"}, {"ID": "FBgn0034137", "EGF_Baseline": "1.31"}, {"ID": "FBgn0039959", "EGF_Baseline": "0.88"}, {"ID": "FBgn0002579", "EGF_Baseline": "5.39"}, {"ID": "FBgn0085285", "EGF_Baseline": "-1.92"}, {"ID": "FBgn0051467", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0015372", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0051716", "EGF_Baseline": "0.56"}, {"ID": "FBgn0029666", "EGF_Baseline": "-0.06"}, {"ID": "FBgn0039908", "EGF_Baseline": "0.63"}, {"ID": "FBgn0034999", "EGF_Baseline": "-1.16"}, {"ID": "FBgn0034854", "EGF_Baseline": "-0.59"}, {"ID": "FBgn0000658", "EGF_Baseline": "-0.59"}, {"ID": "FBgn0036438", "EGF_Baseline": "0.55"}, {"ID": "FBgn0035554", "EGF_Baseline": "-0.52"}, {"ID": "FBgn0259145", "EGF_Baseline": "-1.68"}, {"ID": "FBgn0038251", "EGF_Baseline": "0.36"}, {"ID": "FBgn0027506", "EGF_Baseline": "-0.67"}, {"ID": "FBgn0029709", "EGF_Baseline": "0.87"}, {"ID": "FBgn0036144", "EGF_Baseline": "2.51"}, {"ID": "FBgn0045500", "EGF_Baseline": "2.48"}, {"ID": "FBgn0260399", "EGF_Baseline": "-1.25"}, {"ID": "FBgn0050222", "EGF_Baseline": "-0.34"}, {"ID": "FBgn0037382", "EGF_Baseline": "0.74"}, {"ID": "FBgn0026755", "EGF_Baseline": "0.58"}, {"ID": "FBgn0025140", "EGF_Baseline": "0.86"}, {"ID": "FBgn0023174", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0019890", "EGF_Baseline": "-2.08"}, {"ID": "FBgn0032298", "EGF_Baseline": "-0.72"}, {"ID": "FBgn0046793", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0037656", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0035523", "EGF_Baseline": "0.55"}, {"ID": "FBgn0033191", "EGF_Baseline": "1.29"}, {"ID": "FBgn0034628", "EGF_Baseline": "1.2"}, {"ID": "FBgn0025686", "EGF_Baseline": "-0.44"}, {"ID": "FBgn0034113", "EGF_Baseline": "-0.17"}, {"ID": "FBgn0029710", "EGF_Baseline": "-1.15"}, {"ID": "FBgn0051008", "EGF_Baseline": "-0.63"}, {"ID": "FBgn0038652", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0024698", "EGF_Baseline": "1.63"}, {"ID": "FBgn0046876", "EGF_Baseline": "1.36"}, {"ID": "FBgn0051224", "EGF_Baseline": "-1.95"}, {"ID": "FBgn0004009", "EGF_Baseline": "0.57"}, {"ID": "FBgn0011710", "EGF_Baseline": "0.76"}, {"ID": "FBgn0050378", "EGF_Baseline": "0.8"}, {"ID": "FBgn0010380", "EGF_Baseline": "-1.72"}, {"ID": "FBgn0034833", "EGF_Baseline": "-1.67"}, {"ID": "FBgn0034145", "EGF_Baseline": "1.52"}, {"ID": "FBgn0031972", "EGF_Baseline": "-2.69"}, {"ID": "FBgn0033732", "EGF_Baseline": "0.87"}, {"ID": "FBgn0037146", "EGF_Baseline": "0.79"}, {"ID": "FBgn0034053", "EGF_Baseline": "-1.77"}, {"ID": "FBgn0031914", "EGF_Baseline": "-0.38"}, {"ID": "FBgn0032052", "EGF_Baseline": "-1.25"}, {"ID": "FBgn0033549", "EGF_Baseline": "0.97"}, {"ID": "FBgn0001219", "EGF_Baseline": "3.95"}, {"ID": "FBgn0033169", "EGF_Baseline": "1.71"}, {"ID": "FBgn0042133", "EGF_Baseline": "-1.78"}, {"ID": "FBgn0032031", "EGF_Baseline": "1.12"}, {"ID": "FBgn0036426", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0029899", "EGF_Baseline": "0.94"}, {"ID": "FBgn0040296", "EGF_Baseline": "-1.03"}, {"ID": "FBgn0038508", "EGF_Baseline": "-0.27"}, {"ID": "FBgn0030468", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0033055", "EGF_Baseline": "0.26"}, {"ID": "FBgn0011556", "EGF_Baseline": "0.56"}, {"ID": "FBgn0032145", "EGF_Baseline": "0.68"}, {"ID": "FBgn0086451", "EGF_Baseline": "-0.81"}, {"ID": "FBgn0052396", "EGF_Baseline": "-0.74"}, {"ID": "FBgn0037890", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0261041", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0046225", "EGF_Baseline": "-0.23"}, {"ID": "FBgn0041194", "EGF_Baseline": "-0.66"}, {"ID": "FBgn0030033", "EGF_Baseline": "-0.98"}, {"ID": "FBgn0030697", "EGF_Baseline": "-0.67"}, {"ID": "FBgn0039867", "EGF_Baseline": "0.53"}, {"ID": "FBgn0027053", "EGF_Baseline": "-0.55"}, {"ID": "FBgn0039601", "EGF_Baseline": "-0.43"}, {"ID": "FBgn0040649", "EGF_Baseline": "-0.46"}, {"ID": "FBgn0037320", "EGF_Baseline": "-1.14"}, {"ID": "FBgn0062411", "EGF_Baseline": "1.45"}, {"ID": "FBgn0038583", "EGF_Baseline": "0.95"}, {"ID": "FBgn0053477", "EGF_Baseline": "-0.24"}, {"ID": "FBgn0259212", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0031560", "EGF_Baseline": "1.47"}, {"ID": "FBgn0086129", "EGF_Baseline": "-0.66"}, {"ID": "FBgn0085377", "EGF_Baseline": "-0.29"}, {"ID": "FBgn0052773", "EGF_Baseline": "0.56"}, {"ID": "FBgn0004589", "EGF_Baseline": "-0.91"}, {"ID": "FBgn0050380", "EGF_Baseline": "-0.26"}, {"ID": "FBgn0020764", "EGF_Baseline": "0.64"}, {"ID": "FBgn0039758", "EGF_Baseline": "-0.97"}, {"ID": "FBgn0086916", "EGF_Baseline": "0.6"}, {"ID": "FBgn0039510", "EGF_Baseline": "1.84"}, {"ID": "FBgn0032122", "EGF_Baseline": "-1"}, {"ID": "FBgn0260858", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0250753", "EGF_Baseline": "0.62"}, {"ID": "FBgn0039056", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0036461", "EGF_Baseline": "-0.5"}, {"ID": "FBgn0037924", "EGF_Baseline": "1.94"}, {"ID": "FBgn0085424", "EGF_Baseline": "0.78"}, {"ID": "FBgn0030373", "EGF_Baseline": "0.86"}, {"ID": "FBgn0031132", "EGF_Baseline": "-0.92"}, {"ID": "FBgn0086446", "EGF_Baseline": "-1.43"}, {"ID": "FBgn0034565", "EGF_Baseline": "-0.27"}, {"ID": "FBgn0052017", "EGF_Baseline": "-0.19"}, {"ID": "FBgn0033799", "EGF_Baseline": "-1.21"}, {"ID": "FBgn0087007", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0035926", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0010235", "EGF_Baseline": "0.7"}, {"ID": "FBgn0037630", "EGF_Baseline": "1.42"}, {"ID": "FBgn0002543", "EGF_Baseline": "1.25"}, {"ID": "FBgn0086698", "EGF_Baseline": "0.47"}, {"ID": "FBgn0037897", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0035192", "EGF_Baseline": "-1.11"}, {"ID": "FBgn0011294", "EGF_Baseline": "-0.81"}, {"ID": "FBgn0015324", "EGF_Baseline": "0.12"}, {"ID": "FBgn0085329", "EGF_Baseline": "0.62"}, {"ID": "FBgn0037261", "EGF_Baseline": "2.44"}, {"ID": "FBgn0000277", "EGF_Baseline": "0.65"}, {"ID": "FBgn0033915", "EGF_Baseline": "-0.67"}, {"ID": "FBgn0026315", "EGF_Baseline": "0.32"}, {"ID": "FBgn0040805", "EGF_Baseline": "-1.36"}, {"ID": "FBgn0041236", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0052627", "EGF_Baseline": "1.22"}, {"ID": "FBgn0040250", "EGF_Baseline": "1.03"}, {"ID": "FBgn0054049", "EGF_Baseline": "-1.11"}, {"ID": "FBgn0031459", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0034667", "EGF_Baseline": "0.49"}, {"ID": "FBgn0051216", "EGF_Baseline": "0.3"}, {"ID": "FBgn0038727", "EGF_Baseline": "1.44"}, {"ID": "FBgn0051601", "EGF_Baseline": "-1.64"}, {"ID": "FBgn0031993", "EGF_Baseline": "1.75"}, {"ID": "FBgn0037440", "EGF_Baseline": "-0.42"}, {"ID": "FBgn0033204", "EGF_Baseline": "-2.1"}, {"ID": "FBgn0051637", "EGF_Baseline": "-0.84"}, {"ID": "FBgn0038638", "EGF_Baseline": "-1"}, {"ID": "FBgn0050001", "EGF_Baseline": "1.14"}, {"ID": "FBgn0026399", "EGF_Baseline": "-1.23"}, {"ID": "FBgn0016974", "EGF_Baseline": "0.54"}, {"ID": "FBgn0033953", "EGF_Baseline": "-1.5"}, {"ID": "FBgn0035619", "EGF_Baseline": "1.11"}, {"ID": "FBgn0036542", "EGF_Baseline": "-1.06"}, {"ID": "FBgn0031418", "EGF_Baseline": "0.72"}, {"ID": "FBgn0035713", "EGF_Baseline": "1.6"}, {"ID": "FBgn0033442", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0037782", "EGF_Baseline": "-0.71"}, {"ID": "FBgn0259151", "EGF_Baseline": "-1.2"}, {"ID": "FBgn0040351", "EGF_Baseline": "2.24"}, {"ID": "FBgn0034733", "EGF_Baseline": "-1.73"}, {"ID": "FBgn0038626", "EGF_Baseline": "1.22"}, {"ID": "FBgn0013732", "EGF_Baseline": "0.7"}, {"ID": "FBgn0040309", "EGF_Baseline": "1.22"}, {"ID": "FBgn0039323", "EGF_Baseline": "0.23"}, {"ID": "FBgn0028499", "EGF_Baseline": "0.8"}, {"ID": "FBgn0015279", "EGF_Baseline": "1.03"}, {"ID": "FBgn0035831", "EGF_Baseline": "-0.7"}, {"ID": "FBgn0039067", "EGF_Baseline": "1.24"}, {"ID": "FBgn0038715", "EGF_Baseline": "-0.07"}, {"ID": "FBgn0038358", "EGF_Baseline": "2.81"}, {"ID": "FBgn0051084", "EGF_Baseline": "-1.1"}, {"ID": "FBgn0050398", "EGF_Baseline": "0.84"}, {"ID": "FBgn0004574", "EGF_Baseline": "-0.54"}, {"ID": "FBgn0053169", "EGF_Baseline": "-1.15"}, {"ID": "FBgn0085356", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0035428", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0261571", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0032059", "EGF_Baseline": "-0.28"}, {"ID": "FBgn0037181", "EGF_Baseline": "1.38"}, {"ID": "FBgn0030739", "EGF_Baseline": "-0.25"}, {"ID": "FBgn0038747", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0051202", "EGF_Baseline": "0.8"}, {"ID": "FBgn0030507", "EGF_Baseline": "-0.6"}, {"ID": "FBgn0002570", "EGF_Baseline": "1.6"}, {"ID": "FBgn0036775", "EGF_Baseline": "0.69"}, {"ID": "FBgn0028931", "EGF_Baseline": "-1.01"}, {"ID": "FBgn0036661", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0038304", "EGF_Baseline": "3.36"}, {"ID": "FBgn0031176", "EGF_Baseline": "0.79"}, {"ID": "FBgn0004638", "EGF_Baseline": "-1.7"}, {"ID": "FBgn0022764", "EGF_Baseline": "0.71"}, {"ID": "FBgn0053276", "EGF_Baseline": "-0.12"}, {"ID": "FBgn0025621", "EGF_Baseline": "-0.96"}, {"ID": "FBgn0036205", "EGF_Baseline": "-0.54"}, {"ID": "FBgn0037762", "EGF_Baseline": "0.39"}, {"ID": "FBgn0085319", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0041103", "EGF_Baseline": "0.29"}, {"ID": "FBgn0004611", "EGF_Baseline": "-1.34"}, {"ID": "FBgn0053983", "EGF_Baseline": "-1.55"}, {"ID": "FBgn0030359", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0033135", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0035806", "EGF_Baseline": "1.16"}, {"ID": "FBgn0032785", "EGF_Baseline": "-1.17"}, {"ID": "FBgn0033355", "EGF_Baseline": "-1.35"}, {"ID": "FBgn0030327", "EGF_Baseline": "-0.42"}, {"ID": "FBgn0015229", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0031229", "EGF_Baseline": "1.14"}, {"ID": "FBgn0038344", "EGF_Baseline": "0.74"}, {"ID": "FBgn0036586", "EGF_Baseline": "1.84"}, {"ID": "FBgn0034265", "EGF_Baseline": "0.08"}, {"ID": "FBgn0036356", "EGF_Baseline": "0.7"}, {"ID": "FBgn0040963", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0051232", "EGF_Baseline": "1.98"}, {"ID": "FBgn0034261", "EGF_Baseline": "0.69"}, {"ID": "FBgn0037456", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0051730", "EGF_Baseline": "1.21"}, {"ID": "FBgn0032363", "EGF_Baseline": "-1.4"}, {"ID": "FBgn0034935", "EGF_Baseline": "-0.37"}, {"ID": "FBgn0033886", "EGF_Baseline": "0.41"}, {"ID": "FBgn0028683", "EGF_Baseline": "0.26"}, {"ID": "FBgn0030558", "EGF_Baseline": "-0.12"}, {"ID": "FBgn0040842", "EGF_Baseline": "-1.15"}, {"ID": "FBgn0025936", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0039840", "EGF_Baseline": "2.84"}, {"ID": "FBgn0034819", "EGF_Baseline": "-1.83"}, {"ID": "FBgn0004552", "EGF_Baseline": "0.85"}, {"ID": "FBgn0000409", "EGF_Baseline": "0.55"}, {"ID": "FBgn0039024", "EGF_Baseline": "0.65"}, {"ID": "FBgn0052803", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0035970", "EGF_Baseline": "1.81"}, {"ID": "FBgn0038925", "EGF_Baseline": "-1.31"}, {"ID": "FBgn0000581", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0021760", "EGF_Baseline": "0.39"}, {"ID": "FBgn0015756", "EGF_Baseline": "3"}, {"ID": "FBgn0029890", "EGF_Baseline": "0.12"}, {"ID": "FBgn0032268", "EGF_Baseline": "0.72"}, {"ID": "FBgn0034674", "EGF_Baseline": "1.18"}, {"ID": "FBgn0028913", "EGF_Baseline": "-0.79"}, {"ID": "FBgn0000448", "EGF_Baseline": "0.93"}, {"ID": "FBgn0032517", "EGF_Baseline": "0.8"}, {"ID": "FBgn0053288", "EGF_Baseline": "0.51"}, {"ID": "FBgn0037512", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0037283", "EGF_Baseline": "0.63"}, {"ID": "FBgn0036311", "EGF_Baseline": "-0.65"}, {"ID": "FBgn0029719", "EGF_Baseline": "0.81"}, {"ID": "FBgn0040344", "EGF_Baseline": "-0.89"}, {"ID": "FBgn0038395", "EGF_Baseline": "0.28"}, {"ID": "FBgn0031049", "EGF_Baseline": "-1.29"}, {"ID": "FBgn0039358", "EGF_Baseline": "-1.88"}, {"ID": "FBgn0026147", "EGF_Baseline": "1.2"}, {"ID": "FBgn0036623", "EGF_Baseline": "-0.11"}, {"ID": "FBgn0033903", "EGF_Baseline": "-0.21"}, {"ID": "FBgn0028520", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0003983", "EGF_Baseline": "1"}, {"ID": "FBgn0034641", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0033539", "EGF_Baseline": "0.99"}, {"ID": "FBgn0035209", "EGF_Baseline": "-0.36"}, {"ID": "FBgn0035584", "EGF_Baseline": "-1.14"}, {"ID": "FBgn0031590", "EGF_Baseline": "-0.48"}, {"ID": "FBgn0051211", "EGF_Baseline": "1.62"}, {"ID": "FBgn0031422", "EGF_Baseline": "0.48"}, {"ID": "FBgn0004055", "EGF_Baseline": "-0.81"}, {"ID": "FBgn0051721", "EGF_Baseline": "0.9"}, {"ID": "FBgn0003292", "EGF_Baseline": "-0.84"}, {"ID": "FBgn0011771", "EGF_Baseline": "3.75"}, {"ID": "FBgn0051913", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0036169", "EGF_Baseline": "-0.35"}, {"ID": "FBgn0031099", "EGF_Baseline": "-0.16"}, {"ID": "FBgn0051907", "EGF_Baseline": "0.83"}, {"ID": "FBgn0039210", "EGF_Baseline": "1.21"}, {"ID": "FBgn0003248", "EGF_Baseline": "-1.28"}, {"ID": "FBgn0032375", "EGF_Baseline": "-0.26"}, {"ID": "FBgn0045759", "EGF_Baseline": "-0.62"}, {"ID": "FBgn0034155", "EGF_Baseline": "-0.45"}, {"ID": "FBgn0051533", "EGF_Baseline": "-0.47"}, {"ID": "FBgn0001098", "EGF_Baseline": "2.33"}, {"ID": "FBgn0051481", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0051158", "EGF_Baseline": "-1.71"}, {"ID": "FBgn0033437", "EGF_Baseline": "1.14"}, {"ID": "FBgn0050021", "EGF_Baseline": "-1.69"}, {"ID": "FBgn0010772", "EGF_Baseline": "-2.12"}, {"ID": "FBgn0034577", "EGF_Baseline": "0.27"}, {"ID": "FBgn0040370", "EGF_Baseline": "0.63"}, {"ID": "FBgn0031183", "EGF_Baseline": "-1.11"}, {"ID": "FBgn0003048", "EGF_Baseline": "1.6"}, {"ID": "FBgn0261574", "EGF_Baseline": "-0.28"}, {"ID": "FBgn0034139", "EGF_Baseline": "0.56"}, {"ID": "FBgn0032004", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0024184", "EGF_Baseline": "1.25"}, {"ID": "FBgn0085399", "EGF_Baseline": "1.72"}, {"ID": "FBgn0086677", "EGF_Baseline": "-1.76"}, {"ID": "FBgn0067317", "EGF_Baseline": "1.09"}, {"ID": "FBgn0036553", "EGF_Baseline": "0.39"}, {"ID": "FBgn0033739", "EGF_Baseline": "-1.36"}, {"ID": "FBgn0039234", "EGF_Baseline": "1.08"}, {"ID": "FBgn0052428", "EGF_Baseline": "-1.62"}, {"ID": "FBgn0038738", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0032904", "EGF_Baseline": "-0.95"}, {"ID": "FBgn0037486", "EGF_Baseline": "1.51"}, {"ID": "FBgn0034258", "EGF_Baseline": "3.6"}, {"ID": "FBgn0025720", "EGF_Baseline": "-2.12"}, {"ID": "FBgn0036162", "EGF_Baseline": "0.7"}, {"ID": "FBgn0087002", "EGF_Baseline": "-0.76"}, {"ID": "FBgn0029971", "EGF_Baseline": "0.75"}, {"ID": "FBgn0031811", "EGF_Baseline": "0.78"}, {"ID": "FBgn0038312", "EGF_Baseline": "-0.14"}, {"ID": "FBgn0002631", "EGF_Baseline": "1.32"}, {"ID": "FBgn0041243", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0052814", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0035725", "EGF_Baseline": "1.11"}, {"ID": "FBgn0040097", "EGF_Baseline": "-1.33"}, {"ID": "FBgn0034098", "EGF_Baseline": "-0.29"}, {"ID": "FBgn0036346", "EGF_Baseline": "-0.75"}, {"ID": "FBgn0032444", "EGF_Baseline": "-1.27"}, {"ID": "FBgn0035936", "EGF_Baseline": "0.84"}, {"ID": "FBgn0039598", "EGF_Baseline": "1.27"}, {"ID": "FBgn0260755", "EGF_Baseline": "0.34"}, {"ID": "FBgn0037273", "EGF_Baseline": "5.27"}, {"ID": "FBgn0031440", "EGF_Baseline": "1.87"}, {"ID": "FBgn0038790", "EGF_Baseline": "-0.53"}, {"ID": "FBgn0037225", "EGF_Baseline": "-1.33"}, {"ID": "FBgn0051935", "EGF_Baseline": "-0.78"}, {"ID": "FBgn0052225", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0031533", "EGF_Baseline": "-0.86"}, {"ID": "FBgn0032074", "EGF_Baseline": "-0.73"}, {"ID": "FBgn0030892", "EGF_Baseline": "-0.21"}, {"ID": "FBgn0051450", "EGF_Baseline": "-1.41"}, {"ID": "FBgn0010549", "EGF_Baseline": "0.73"}, {"ID": "FBgn0261243", "EGF_Baseline": "-2.01"}, {"ID": "FBgn0032521", "EGF_Baseline": "-0.57"}, {"ID": "FBgn0028670", "EGF_Baseline": "-1.49"}, {"ID": "FBgn0038277", "EGF_Baseline": "1.02"}, {"ID": "FBgn0086346", "EGF_Baseline": "1.05"}, {"ID": "FBgn0036763", "EGF_Baseline": "-0.49"}, {"ID": "FBgn0003358", "EGF_Baseline": "1.38"}, {"ID": "FBgn0030994", "EGF_Baseline": "-0.66"}, {"ID": "FBgn0040093", "EGF_Baseline": "-1.16"}, {"ID": "FBgn0039509", "EGF_Baseline": "-0.87"}, {"ID": "FBgn0032638", "EGF_Baseline": "0.72"}, {"ID": "FBgn0034643", "EGF_Baseline": "-0.65"}, {"ID": "FBgn0051926", "EGF_Baseline": "0.11"}, {"ID": "FBgn0050060", "EGF_Baseline": "-1.09"}, {"ID": "FBgn0027841", "EGF_Baseline": "1.34"}, {"ID": "FBgn0034919", "EGF_Baseline": "2.17"}, {"ID": "FBgn0031457", "EGF_Baseline": "-1.04"}, {"ID": "FBgn0039911", "EGF_Baseline": "-1.13"}, {"ID": "FBgn0023522", "EGF_Baseline": "-0.24"}, {"ID": "FBgn0035070", "EGF_Baseline": "0.91"}, {"ID": "FBgn0035853", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0037176", "EGF_Baseline": "1.02"}, {"ID": "FBgn0037547", "EGF_Baseline": "0.94"}, {"ID": "FBgn0036030", "EGF_Baseline": "0.86"}, {"ID": "FBgn0044510", "EGF_Baseline": "-1.23"}, {"ID": "FBgn0052815", "EGF_Baseline": "-1.42"}, {"ID": "FBgn0040496", "EGF_Baseline": "-0.85"}, {"ID": "FBgn0053205", "EGF_Baseline": "0.61"}, {"ID": "FBgn0063494", "EGF_Baseline": "-0.58"}, {"ID": "FBgn0003023", "EGF_Baseline": "1.07"}, {"ID": "FBgn0010501", "EGF_Baseline": "-0.5"}, {"ID": "FBgn0004581", "EGF_Baseline": "1.4"}, {"ID": "FBgn0031276", "EGF_Baseline": "-1.19"}, {"ID": "FBgn0035528", "EGF_Baseline": "2.06"}, {"ID": "FBgn0000052", "EGF_Baseline": "2.01"}, {"ID": "FBgn0050055", "EGF_Baseline": "1.09"}, {"ID": "FBgn0031946", "EGF_Baseline": "-0.94"}, {"ID": "FBgn0032080", "EGF_Baseline": "-0.51"}, {"ID": "FBgn0053137", "EGF_Baseline": "-1.32"}, {"ID": "FBgn0030775", "EGF_Baseline": "11.54"}, {"ID": "FBgn0034681", "EGF_Baseline": "0.21"}, {"ID": "FBgn0038902", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0039203", "EGF_Baseline": "-0.05"}, {"ID": "FBgn0039977", "EGF_Baseline": "1.88"}, {"ID": "FBgn0025582", "EGF_Baseline": "3.98"}, {"ID": "FBgn0032949", "EGF_Baseline": "0.35"}, {"ID": "FBgn0038928", "EGF_Baseline": "-0.68"}, {"ID": "FBgn0035918", "EGF_Baseline": "-0.23"}, {"ID": "FBgn0036934", "EGF_Baseline": "-2.05"}, {"ID": "FBgn0023130", "EGF_Baseline": "-1.16"}, {"ID": "FBgn0032504", "EGF_Baseline": "0.88"}, {"ID": "FBgn0038271", "EGF_Baseline": "-0.88"}, {"ID": "FBgn0032916", "EGF_Baseline": "1.07"}, {"ID": "FBgn0067407", "EGF_Baseline": "-1.04"}, {"ID": "FBgn0034398", "EGF_Baseline": "-0.61"}, {"ID": "FBgn0035624", "EGF_Baseline": "0.57"}, {"ID": "FBgn0034866", "EGF_Baseline": "-1.14"}, {"ID": "FBgn0051436", "EGF_Baseline": "1.56"}, {"ID": "FBgn0030500", "EGF_Baseline": "-2.57"}, {"ID": "FBgn0031417", "EGF_Baseline": "-0.5"}, {"ID": "FBgn0014073", "EGF_Baseline": "0.38"}, {"ID": "FBgn0029993", "EGF_Baseline": "-1.02"}, {"ID": "FBgn0035218", "EGF_Baseline": "0.71"}, {"ID": "FBgn0001981", "EGF_Baseline": "-1.07"}, {"ID": "FBgn0034291", "EGF_Baseline": "-1.84"}, {"ID": "FBgn0010531", "EGF_Baseline": "-0.83"}, {"ID": "FBgn0039677", "EGF_Baseline": "-1.25"}, {"ID": "FBgn0036851", "EGF_Baseline": "0.39"}, {"ID": "FBgn0051267", "EGF_Baseline": "0.28"}, {"ID": "FBgn0032368", "EGF_Baseline": "0.46"}, {"ID": "FBgn0030584", "EGF_Baseline": "-1.67"}, {"ID": "FBgn0023169", "EGF_Baseline": "0.84"}, {"ID": "FBgn0030443", "EGF_Baseline": "0.66"}, {"ID": "FBgn0035008", "EGF_Baseline": "-0.32"}, {"ID": "FBgn0030403", "EGF_Baseline": "-0.41"}, {"ID": "FBgn0001128", "EGF_Baseline": "-1.6"}, {"ID": "FBgn0250846", "EGF_Baseline": "-1.2"}, {"ID": "FBgn0015609", "EGF_Baseline": "1.07"}, {"ID": "FBgn0259994", "EGF_Baseline": "-1.21"}, {"ID": "FBgn0035011", "EGF_Baseline": "-1.12"}, {"ID": "FBgn0033063", "EGF_Baseline": "0.78"}, {"ID": "FBgn0032895", "EGF_Baseline": "-0.23"}, {"ID": "FBgn0031141", "EGF_Baseline": "0.49"}, {"ID": "FBgn0040069", "EGF_Baseline": "-0.93"}, {"ID": "FBgn0033471", "EGF_Baseline": "0.7"}, {"ID": "FBgn0035591", "EGF_Baseline": "-0.3"}, {"ID": "FBgn0036822", "EGF_Baseline": "-0.46"}, {"ID": "FBgn0028530", "EGF_Baseline": "-0.35"}, {"ID": "FBgn0026136", "EGF_Baseline": "0.57"}, {"ID": "FBgn0037356", "EGF_Baseline": "1.14"}, {"ID": "FBgn0038214", "EGF_Baseline": "-1.86"}, {"ID": "FBgn0042110", "EGF_Baseline": "1.49"}, {"ID": "FBgn0034202", "EGF_Baseline": "-1.32"}] jc-1.17.3/tests/fixtures/generic/csv-flyrna.tsv000066400000000000000000006207411415226333200214630ustar00rootroot00000000000000ID EGF_Baseline FBgn0029994 -1.25 FBgn0037191 -1.05 FBgn0036810 2.08 FBgn0033320 1.15 FBgn0051156 -1.77 FBgn0004635 -0.77 FBgn0260646 -0.92 FBgn0038397 0.04 FBgn0010583 -0.77 FBgn0025583 -2.18 FBgn0032906 -1.63 FBgn0031321 0.57 FBgn0052568 0.69 FBgn0030674 -0.45 FBgn0085397 -1.19 FBgn0038427 -0.17 FBgn0033233 -1.14 FBgn0033736 1.12 FBgn0033495 0.82 FBgn0020503 0.06 FBgn0031885 0.65 FBgn0067864 1.14 FBgn0035785 -1.26 FBgn0039673 -1.24 FBgn0051717 7.19 FBgn0030748 0.7 FBgn0031751 1.32 FBgn0039207 -0.99 FBgn0067312 -0.52 FBgn0052816 -0.83 FBgn0040005 -0.55 FBgn0040477 -0.87 FBgn0029727 -1.32 FBgn0039328 -1.79 FBgn0066084 -0.97 FBgn0000053 -0.76 FBgn0030038 -0.8 FBgn0052712 -0.73 FBgn0038481 -0.55 FBgn0034162 -1.68 FBgn0005632 0.76 FBgn0034860 -0.8 FBgn0259979 -0.6 FBgn0051140 -1.63 FBgn0038959 -0.63 FBgn0034138 4.47 FBgn0003388 0.59 FBgn0034945 0.6 FBgn0033272 -1.66 FBgn0050428 -1.18 FBgn0033556 1.66 FBgn0027341 0.18 FBgn0029606 -0.57 FBgn0261804 0.38 FBgn0036465 -1.1 FBgn0027610 -0.04 FBgn0033997 -0.42 FBgn0038834 4.94 FBgn0027550 -1.34 FBgn0030992 -1.81 FBgn0037109 -1.46 FBgn0039198 -0.35 FBgn0019686 1.29 FBgn0052251 -1.49 FBgn0031987 0.97 FBgn0034548 -1.8 FBgn0053217 -2.01 FBgn0038092 2.27 FBgn0053627 -0.24 FBgn0037010 -0.9 FBgn0037895 1.46 FBgn0034477 0.76 FBgn0029705 0.48 FBgn0013772 0.82 FBgn0038437 0.19 FBgn0053178 0.31 FBgn0027559 0.79 FBgn0038389 -1.8 FBgn0031426 -0.48 FBgn0040784 0.95 FBgn0001187 1.42 FBgn0052450 -0.36 FBgn0028671 -1.32 FBgn0015614 2.86 FBgn0037009 -0.78 FBgn0032359 -0.24 FBgn0028717 -1.19 FBgn0032450 0.92 FBgn0033327 0.82 FBgn0051820 -1.26 FBgn0015773 -1.52 FBgn0020299 -0.9 FBgn0034537 0.5 FBgn0030286 1.12 FBgn0050469 0.17 FBgn0260745 -0.9 FBgn0037472 -0.17 FBgn0051054 -0.99 FBgn0031127 -0.44 FBgn0051933 0.65 FBgn0029133 -0.87 FBgn0260986 -1.12 FBgn0030503 1.52 FBgn0028491 -0.51 FBgn0039359 2.76 FBgn0030447 0.68 FBgn0000241 -1.04 FBgn0083985 -1.97 FBgn0030855 0.18 FBgn0261241 -1.19 FBgn0015268 -0.42 FBgn0033907 0.6 FBgn0032001 1.2 FBgn0052758 -0.69 FBgn0032208 -0.53 FBgn0003742 0.79 FBgn0002121 -0.22 FBgn0010217 1.29 FBgn0037042 0.89 FBgn0035812 0.41 FBgn0032940 -2.26 FBgn0040377 -1.84 FBgn0011834 0.53 FBgn0039684 2.03 FBgn0033392 0.3 FBgn0026427 0.65 FBgn0063491 -0.54 FBgn0037970 -0.35 FBgn0037648 -1.41 FBgn0033154 -0.57 FBgn0045499 1.74 FBgn0259184 -0.82 FBgn0031822 1.51 FBgn0034543 -0.12 FBgn0036731 -1.33 FBgn0036849 -0.37 FBgn0036825 2.35 FBgn0031109 1.14 FBgn0030990 -0.8 FBgn0034655 -0.83 FBgn0005617 -2.45 FBgn0030764 -1.09 FBgn0259173 1.7 FBgn0052457 -2.3 FBgn0036212 1.31 FBgn0023530 -1.23 FBgn0027514 -0.34 FBgn0044811 -2.19 FBgn0032445 1.49 FBgn0036135 -1.23 FBgn0053630 -0.84 FBgn0030586 2.18 FBgn0026313 -0.5 FBgn0031263 -1.04 FBgn0032633 0.56 FBgn0037590 -1.25 FBgn0036618 -1.44 FBgn0047338 -0.43 FBgn0015765 -0.62 FBgn0039188 1.81 FBgn0040812 -0.51 FBgn0028399 0.32 FBgn0250907 0.86 FBgn0260767 0.79 FBgn0051106 -0.07 FBgn0011576 0.42 FBgn0035542 -1.61 FBgn0032626 0.17 FBgn0053494 -1.15 FBgn0033434 -0.38 FBgn0039797 -1 FBgn0040625 1.81 FBgn0034106 -0.83 FBgn0036124 -1.5 FBgn0005634 1.55 FBgn0053937 -2.17 FBgn0003462 0.63 FBgn0086768 0.41 FBgn0037862 1.36 FBgn0033888 -0.61 FBgn0037260 1.63 FBgn0003731 -8.29 FBgn0038639 -1.37 FBgn0036615 -0.98 FBgn0086378 -0.87 FBgn0031097 -1.34 FBgn0038542 -1.34 FBgn0028425 -1.09 FBgn0029857 -0.26 FBgn0004875 0.66 FBgn0051648 -1.89 FBgn0035928 0.22 FBgn0261508 1 FBgn0051314 1 FBgn0034440 -1.55 FBgn0031851 -0.83 FBgn0029877 -0.84 FBgn0261596 0.9 FBgn0035517 0.78 FBgn0030027 1.07 FBgn0035823 0.98 FBgn0011660 -1.82 FBgn0032170 -1.48 FBgn0025608 -1.22 FBgn0039877 -0.97 FBgn0260397 -0.05 FBgn0035360 0.46 FBgn0033388 -1.55 FBgn0038927 1.14 FBgn0037431 0.68 FBgn0033337 1.25 FBgn0028542 -1.09 FBgn0030833 0.56 FBgn0004588 -0.72 FBgn0261789 3.75 FBgn0034295 -0.61 FBgn0036772 -0.49 FBgn0031782 -0.1 FBgn0030514 0.84 FBgn0036752 -0.39 FBgn0011770 -0.27 FBgn0051195 0.29 FBgn0050115 -1.21 FBgn0037870 0.54 FBgn0052392 -1.22 FBgn0032343 -0.42 FBgn0031562 1.56 FBgn0000157 0.96 FBgn0038423 1.06 FBgn0034634 0.44 FBgn0040279 -1.59 FBgn0004456 2.08 FBgn0015754 0.58 FBgn0034867 -1.7 FBgn0026398 1.96 FBgn0002917 -1.58 FBgn0051675 -0.94 FBgn0030375 0.81 FBgn0086371 1.09 FBgn0036936 -0.45 FBgn0035932 -0.59 FBgn0034345 0.63 FBgn0041235 -1.53 FBgn0002873 -1.2 FBgn0029657 1.07 FBgn0052595 1.91 FBgn0033310 0.87 FBgn0039739 -0.55 FBgn0051665 -1.17 FBgn0037143 -1.32 FBgn0001218 4.68 FBgn0032974 -0.78 FBgn0030570 -0.33 FBgn0259749 1.22 FBgn0038586 1.14 FBgn0033138 -1.41 FBgn0036759 -0.76 FBgn0001319 0.92 FBgn0038621 1.71 FBgn0029158 0.6 FBgn0001974 -0.93 FBgn0014075 0.13 FBgn0038721 -0.75 FBgn0039873 -0.63 FBgn0034050 0.55 FBgn0026666 -1.7 FBgn0030778 -1.62 FBgn0026753 1.94 FBgn0040099 -1.16 FBgn0031473 -0.17 FBgn0033167 -1.36 FBgn0026369 0.19 FBgn0039283 0.51 FBgn0037000 -1.49 FBgn0036066 -0.77 FBgn0050480 -0.8 FBgn0085390 2 FBgn0036139 -0.58 FBgn0040694 -1.31 FBgn0001995 -0.37 FBgn0030573 -1.4 FBgn0039723 2.2 FBgn0261572 -1.34 FBgn0035028 -0.97 FBgn0085479 1.29 FBgn0064912 0.52 FBgn0034186 0.67 FBgn0036414 0.7 FBgn0034666 1.6 FBgn0028686 -1.09 FBgn0036142 0.15 FBgn0038989 -1.56 FBgn0034976 -1.34 FBgn0038347 0.83 FBgn0025697 1.43 FBgn0026318 -0.96 FBgn0028470 -1.22 FBgn0037741 0.48 FBgn0030999 -1.01 FBgn0039861 -1.72 FBgn0259982 -0.32 FBgn0051774 -2.72 FBgn0050496 -1.64 FBgn0032149 -1.65 FBgn0260766 0.3 FBgn0037992 0.39 FBgn0039249 -1.31 FBgn0051627 0.51 FBgn0033931 0.21 FBgn0030692 -0.21 FBgn0035014 0.75 FBgn0036667 1.19 FBgn0052068 -0.96 FBgn0020766 -0.95 FBgn0032897 0.84 FBgn0036173 -0.69 FBgn0031419 -0.65 FBgn0086695 0.51 FBgn0035059 -1.25 FBgn0014848 -1.5 FBgn0031643 -1.32 FBgn0010194 0.34 FBgn0034592 0.24 FBgn0031315 -1.33 FBgn0053348 -1.08 FBgn0036780 -0.63 FBgn0069242 -1.67 FBgn0040074 -1.24 FBgn0050383 1.65 FBgn0033058 1.12 FBgn0038709 -1.53 FBgn0029925 0.13 FBgn0250825 0.91 FBgn0031530 -1.91 FBgn0260658 -0.6 FBgn0058354 0.99 FBgn0031468 1.22 FBgn0035641 -1.5 FBgn0083979 -1.04 FBgn0050016 -1.12 FBgn0034732 -1.95 FBgn0039238 0.89 FBgn0030837 1.35 FBgn0051635 -0.53 FBgn0052628 1.56 FBgn0030944 0.86 FBgn0037848 -0.12 FBgn0040251 0.89 FBgn0035538 1.32 FBgn0010414 -0.44 FBgn0034151 -1.43 FBgn0032058 -1.7 FBgn0001125 -1.49 FBgn0005666 -1.79 FBgn0027054 -0.27 FBgn0031279 -0.85 FBgn0050354 0.44 FBgn0028689 2.58 FBgn0086757 0.58 FBgn0260750 1.09 FBgn0047351 -1.76 FBgn0259938 -2.4 FBgn0015271 -0.92 FBgn0020416 0.66 FBgn0020018 0.35 FBgn0038432 0.29 FBgn0024319 2.79 FBgn0034259 -0.86 FBgn0034270 -0.63 FBgn0052100 0.85 FBgn0052110 0.32 FBgn0032859 0.96 FBgn0025878 -0.04 FBgn0028983 -0.9 FBgn0037019 0.34 FBgn0036491 1.56 FBgn0032111 -1.62 FBgn0039835 -0.53 FBgn0085415 -1.34 FBgn0035558 -1.29 FBgn0030326 -1.07 FBgn0053757 1.41 FBgn0014879 0.95 FBgn0039747 2.07 FBgn0053784 -1.45 FBgn0038201 0.62 FBgn0050476 -0.49 FBgn0003865 0.97 FBgn0034889 -1.17 FBgn0030793 0.56 FBgn0023545 0.7 FBgn0023172 -0.2 FBgn0261276 -1.26 FBgn0003087 2.59 FBgn0034967 -0.12 FBgn0038238 -0.5 FBgn0025366 0.64 FBgn0036227 -0.57 FBgn0030578 -0.51 FBgn0037238 0.73 FBgn0053325 0.51 FBgn0032746 -1.4 FBgn0036208 -1.13 FBgn0085387 1.84 FBgn0024912 0.82 FBgn0030814 -1.04 FBgn0037668 1.55 FBgn0031529 -0.57 FBgn0040153 0.87 FBgn0032869 1.25 FBgn0034389 -1.62 FBgn0033373 0.71 FBgn0024909 -1.85 FBgn0034987 -0.86 FBgn0036777 0.64 FBgn0001222 -0.78 FBgn0033813 -0.6 FBgn0033543 1.57 FBgn0003257 -2.3 FBgn0039443 -0.73 FBgn0040066 -1.01 FBgn0260944 0.37 FBgn0043577 -1.06 FBgn0039338 -1.97 FBgn0005642 -1.56 FBgn0017578 -0.17 FBgn0039112 -0.28 FBgn0051718 1.1 FBgn0030659 -0.84 FBgn0085203 -1.58 FBgn0024984 -0.39 FBgn0010704 -1.08 FBgn0054034 -0.3 FBgn0033190 -0.96 FBgn0032474 -0.25 FBgn0033079 0.64 FBgn0037666 1.21 FBgn0000180 -1.28 FBgn0036230 0.7 FBgn0015278 -0.09 FBgn0037447 1 FBgn0051957 -1.35 FBgn0024555 1.07 FBgn0010381 -0.59 FBgn0032405 -1.56 FBgn0039640 -0.48 FBgn0085484 -1.55 FBgn0031650 -0.6 FBgn0035407 0.85 FBgn0031249 0.41 FBgn0034639 -0.31 FBgn0030030 -0.92 FBgn0260939 1.53 FBgn0036891 1.28 FBgn0032884 -1.28 FBgn0033699 3.19 FBgn0028402 1.47 FBgn0036627 0.09 FBgn0019957 -2.85 FBgn0039628 -1.56 FBgn0010379 0.04 FBgn0085252 -0.6 FBgn0038286 1.2 FBgn0031516 -0.3 FBgn0033913 1.14 FBgn0040629 1.3 FBgn0032731 -1.31 FBgn0054054 1.2 FBgn0087040 2.16 FBgn0035663 7.47 FBgn0025634 -0.76 FBgn0026749 -0.38 FBgn0052945 1.7 FBgn0031500 -1.11 FBgn0033206 -1.11 FBgn0050127 0.59 FBgn0034689 0.7 FBgn0036427 -1.94 FBgn0032229 0.94 FBgn0050081 1.09 FBgn0037417 -1.78 FBgn0015575 -1.02 FBgn0042131 -0.56 FBgn0039855 -1.56 FBgn0030893 0.71 FBgn0013997 0.96 FBgn0027066 0.79 FBgn0031068 -1.52 FBgn0039597 1.06 FBgn0038331 1.01 FBgn0051104 1.02 FBgn0035161 -0.47 FBgn0010100 0.48 FBgn0022160 -1.32 FBgn0040653 -1.28 FBgn0039434 -1.62 FBgn0027070 -0.76 FBgn0037818 1.29 FBgn0031308 7.85 FBgn0033608 0.6 FBgn0027791 -0.86 FBgn0034582 -0.23 FBgn0036330 -0.65 FBgn0000075 -1.35 FBgn0039020 -0.75 FBgn0050401 0.34 FBgn0031080 0.54 FBgn0031003 1.11 FBgn0051007 -0.68 FBgn0051921 -0.41 FBgn0035710 -0.51 FBgn0017567 -2 FBgn0002440 -0.55 FBgn0038847 1.01 FBgn0038558 0.47 FBgn0032036 0.55 FBgn0011305 0.9 FBgn0036959 -2.07 FBgn0053294 -0.82 FBgn0033486 0.41 FBgn0033225 -1.54 FBgn0031398 -1.32 FBgn0032692 -2 FBgn0025712 0.6 FBgn0083949 1.08 FBgn0030985 -1.35 FBgn0038326 -0.72 FBgn0028932 0.36 FBgn0003071 0.8 FBgn0039994 -1.39 FBgn0032664 -0.56 FBgn0042174 -0.47 FBgn0031522 -0.07 FBgn0036952 -0.34 FBgn0050065 -1.49 FBgn0051473 0.53 FBgn0001089 1.43 FBgn0052694 1.26 FBgn0034470 1.52 FBgn0034158 0.34 FBgn0039091 -1.84 FBgn0036819 2.19 FBgn0025469 -0.78 FBgn0000247 2.16 FBgn0031244 -1.24 FBgn0034455 -0.23 FBgn0033994 0.2 FBgn0051460 -0.71 FBgn0052150 -0.63 FBgn0050125 -0.42 FBgn0039108 -0.63 FBgn0052479 -1.63 FBgn0038919 0.84 FBgn0003250 1.4 FBgn0021856 0.54 FBgn0002778 -0.75 FBgn0034049 -1.92 FBgn0039915 1.86 FBgn0000299 -0.65 FBgn0001989 -1.13 FBgn0261290 -1.46 FBgn0027596 1.32 FBgn0036795 -0.8 FBgn0045470 -2.38 FBgn0037114 0.9 FBgn0034420 -1.26 FBgn0026388 -1.87 FBgn0011674 1.58 FBgn0031490 -1.45 FBgn0086200 0.62 FBgn0261794 -0.52 FBgn0023095 2.34 FBgn0053971 0.23 FBgn0013685 0.76 FBgn0051064 2.48 FBgn0029664 0.45 FBgn0036467 0.7 FBgn0003082 -1.68 FBgn0038681 -1.32 FBgn0033601 -0.56 FBgn0040319 -0.79 FBgn0040234 -0.99 FBgn0031702 1.46 FBgn0040056 0.76 FBgn0005410 -1.83 FBgn0038551 0.74 FBgn0037515 -1.26 FBgn0053639 -1.97 FBgn0025628 -1.15 FBgn0030622 -0.97 FBgn0003396 -1.18 FBgn0038102 -1.61 FBgn0027108 1.28 FBgn0040900 1.25 FBgn0046685 1.07 FBgn0031100 -0.38 FBgn0030493 0.82 FBgn0035839 -0.91 FBgn0061196 -0.37 FBgn0026389 -1.01 FBgn0083940 1.23 FBgn0035553 -1.3 FBgn0034839 -1.31 FBgn0039929 0.74 FBgn0022029 -0.11 FBgn0032799 1.21 FBgn0032601 0.84 FBgn0039900 -1.35 FBgn0039742 1.25 FBgn0037792 1.2 FBgn0031908 -0.74 FBgn0036646 -1.73 FBgn0035334 0.74 FBgn0037340 -1.06 FBgn0004045 1.15 FBgn0001120 0.52 FBgn0010926 -1.15 FBgn0037082 -0.4 FBgn0030189 0.67 FBgn0016038 -1.19 FBgn0037634 1.1 FBgn0032922 -0.47 FBgn0039101 -1.52 FBgn0036727 -0.65 FBgn0052835 -0.82 FBgn0015520 -0.33 FBgn0035751 -1.69 FBgn0005655 1.71 FBgn0034617 -0.97 FBgn0026417 0.81 FBgn0041709 -0.12 FBgn0032439 -0.8 FBgn0002716 0.39 FBgn0015316 -1.12 FBgn0086355 0.92 FBgn0261881 0.14 FBgn0033864 0.39 FBgn0027587 0.75 FBgn0000071 1.72 FBgn0033983 -0.47 FBgn0038915 -1.05 FBgn0032805 -2.1 FBgn0030629 -1.5 FBgn0086605 1.18 FBgn0260388 -0.98 FBgn0034501 2.96 FBgn0037315 -2 FBgn0001301 1.05 FBgn0044826 2.51 FBgn0035888 -0.98 FBgn0052107 0.7 FBgn0030745 0.84 FBgn0250834 0.74 FBgn0033212 -1.68 FBgn0022224 -1.31 FBgn0260996 0.47 FBgn0036527 -0.25 FBgn0035122 -0.54 FBgn0039310 1.56 FBgn0037567 1.81 FBgn0039260 -0.93 FBgn0038879 0.5 FBgn0030593 -1.32 FBgn0040531 -1.59 FBgn0034713 0.34 FBgn0039467 -0.91 FBgn0038448 0.22 FBgn0038872 0.19 FBgn0035799 -1.54 FBgn0017418 -0.99 FBgn0086690 1.16 FBgn0260991 1.44 FBgn0033809 -0.88 FBgn0030098 -1.43 FBgn0032055 -1.13 FBgn0037397 0.58 FBgn0037721 0.7 FBgn0031975 0.63 FBgn0037976 -1.46 FBgn0037203 -0.51 FBgn0016031 -0.41 FBgn0034791 1.11 FBgn0029669 -1.44 FBgn0032457 0.7 FBgn0036394 -0.86 FBgn0038150 -0.77 FBgn0035473 -0.31 FBgn0085423 1.41 FBgn0023395 -2.06 FBgn0053125 0.8 FBgn0029647 1.51 FBgn0030687 1.3 FBgn0034066 0.49 FBgn0001179 -0.23 FBgn0028525 -0.85 FBgn0031804 0.98 FBgn0031384 -1.34 FBgn0035689 -1.3 FBgn0000527 -0.14 FBgn0032430 0.48 FBgn0033784 -0.83 FBgn0035498 0.36 FBgn0083969 0.55 FBgn0014903 0.47 FBgn0036239 3.09 FBgn0033725 -0.77 FBgn0035379 0.54 FBgn0037603 0.81 FBgn0003275 6.63 FBgn0036495 -1.17 FBgn0052117 1.36 FBgn0028412 -0.21 FBgn0034099 -0.48 FBgn0030234 -0.56 FBgn0047205 -1.66 FBgn0014465 0.57 FBgn0035978 0.92 FBgn0051544 1.67 FBgn0038475 -1.21 FBgn0031078 0.42 FBgn0037728 1.44 FBgn0037538 1.11 FBgn0032929 -0.87 FBgn0030480 1.04 FBgn0036111 0.19 FBgn0020930 0.85 FBgn0030719 1.16 FBgn0040212 0.52 FBgn0028507 -0.85 FBgn0032597 -0.65 FBgn0039156 -1.5 FBgn0039544 -1.06 FBgn0039765 -1.75 FBgn0261587 -1.43 FBgn0052085 -0.91 FBgn0045477 0.53 FBgn0035985 -0.31 FBgn0031347 0.75 FBgn0029766 -0.8 FBgn0036676 -1.17 FBgn0036581 2.89 FBgn0036403 -1.11 FBgn0036940 0.83 FBgn0040973 2.67 FBgn0051015 -1.32 FBgn0004367 -0.79 FBgn0039887 0.27 FBgn0034363 1.15 FBgn0038088 0.78 FBgn0025836 -0.54 FBgn0033792 -0.58 FBgn0038890 -1.73 FBgn0037035 1.17 FBgn0038589 -1.2 FBgn0035268 0.9 FBgn0037552 -0.97 FBgn0033375 0.6 FBgn0019886 -0.52 FBgn0051462 -1.29 FBgn0033656 0.51 FBgn0034842 -1.8 FBgn0027493 1.1 FBgn0032291 0.54 FBgn0010278 -2.13 FBgn0033349 -1.71 FBgn0031050 -0.82 FBgn0035298 0.42 FBgn0000422 -1.86 FBgn0032812 -1.01 FBgn0036188 -0.39 FBgn0033353 -1.04 FBgn0036155 0.22 FBgn0031389 -0.7 FBgn0029838 -0.47 FBgn0038849 -0.57 FBgn0030946 0.69 FBgn0026713 0.76 FBgn0038870 -2.34 FBgn0259245 -1.44 FBgn0038002 1.49 FBgn0261673 -2.21 FBgn0030889 -0.81 FBgn0034288 -1.31 FBgn0050076 0.7 FBgn0038453 -0.42 FBgn0036306 -1.32 FBgn0031722 -0.31 FBgn0010109 -0.91 FBgn0038143 1.12 FBgn0033238 -1.03 FBgn0010825 -0.33 FBgn0029738 -0.95 FBgn0036354 0.9 FBgn0035449 -1.28 FBgn0028743 -0.25 FBgn0085458 0.75 FBgn0033139 -0.68 FBgn0013810 0.62 FBgn0027936 4.63 FBgn0003360 -1.55 FBgn0031571 1.14 FBgn0032819 -0.76 FBgn0036896 1.12 FBgn0065110 -0.38 FBgn0003137 1.21 FBgn0039810 1.27 FBgn0030409 -1.71 FBgn0037027 -0.39 FBgn0003139 0.07 FBgn0034709 1.16 FBgn0051802 0.79 FBgn0031738 0.4 FBgn0036622 -0.99 FBgn0037549 -0.55 FBgn0035104 -1.24 FBgn0015544 -1.21 FBgn0000094 -0.45 FBgn0030724 1.84 FBgn0261293 -1.09 FBgn0023516 0.52 FBgn0004381 0.45 FBgn0036017 -1.25 FBgn0035583 -1.6 FBgn0030096 -0.51 FBgn0039958 0.26 FBgn0036340 -0.25 FBgn0032645 -0.8 FBgn0036734 -1.79 FBgn0033715 -1.47 FBgn0053140 0.21 FBgn0031693 -0.85 FBgn0029945 -1.31 FBgn0034281 0.48 FBgn0051800 -1.63 FBgn0260872 0.2 FBgn0034391 -1.5 FBgn0019660 0.56 FBgn0052311 -1.67 FBgn0030260 0.82 FBgn0031462 0.24 FBgn0035960 0.28 FBgn0034360 0.41 FBgn0035136 0.78 FBgn0033184 -0.8 FBgn0036470 1.37 FBgn0030989 -0.8 FBgn0032969 -2.01 FBgn0001092 1.2 FBgn0041605 1.29 FBgn0031903 -1.14 FBgn0031700 0.88 FBgn0039732 -1.03 FBgn0037483 1.55 FBgn0004896 0.4 FBgn0038608 -0.81 FBgn0042138 -0.29 FBgn0031421 -0.62 FBgn0030248 -0.54 FBgn0038470 0.67 FBgn0039402 0.15 FBgn0034925 -0.33 FBgn0035471 -0.78 FBgn0040732 -1.21 FBgn0033469 0.29 FBgn0031409 -0.75 FBgn0033968 0.99 FBgn0011211 -0.56 FBgn0259108 2.73 FBgn0034804 0.6 FBgn0031834 -1.82 FBgn0086475 -0.91 FBgn0052043 1.21 FBgn0031026 0.51 FBgn0036250 0.74 FBgn0000579 1.45 FBgn0026401 -0.48 FBgn0039131 -0.7 FBgn0038315 0.75 FBgn0259703 1 FBgn0087011 -0.76 FBgn0027784 0.34 FBgn0028841 -0.68 FBgn0032768 -1.91 FBgn0051789 0.78 FBgn0032244 0.97 FBgn0039145 -0.11 FBgn0037280 0.36 FBgn0036977 0.75 FBgn0259682 0.85 FBgn0043043 1.41 FBgn0031018 -0.86 FBgn0038705 -1.02 FBgn0000524 -0.21 FBgn0034626 0.98 FBgn0038938 -1.81 FBgn0038130 1.09 FBgn0027503 -1.43 FBgn0034215 -1.98 FBgn0036704 -1.51 FBgn0040849 -1.04 FBgn0011280 -1.18 FBgn0033786 1.29 FBgn0032839 -0.71 FBgn0052850 -0.1 FBgn0033021 -0.02 FBgn0002174 -0.39 FBgn0037073 0.8 FBgn0039235 -1.1 FBgn0259996 1.82 FBgn0005778 0.67 FBgn0039044 2.3 FBgn0039201 -0.74 FBgn0000063 -0.63 FBgn0038773 -1.13 FBgn0037835 -1.89 FBgn0032694 -1.79 FBgn0085216 0.55 FBgn0025821 0.88 FBgn0024921 -1.79 FBgn0261612 -0.92 FBgn0043884 -1.19 FBgn0053530 -0.88 FBgn0026634 0.86 FBgn0037936 0.45 FBgn0050339 1.25 FBgn0040763 0.74 FBgn0027864 0.16 FBgn0052283 1.26 FBgn0031267 -1.1 FBgn0259226 1.43 FBgn0034304 -0.17 FBgn0029717 -0.66 FBgn0028953 -0.6 FBgn0260450 0.56 FBgn0037712 0.68 FBgn0052512 -0.85 FBgn0051128 0.98 FBgn0032286 -1.12 FBgn0039612 -0.78 FBgn0085417 0.47 FBgn0040283 -0.7 FBgn0037406 -1.94 FBgn0033528 -1.18 FBgn0032153 -0.31 FBgn0034817 1.19 FBgn0034434 -1.34 FBgn0038797 -1.59 FBgn0004650 1.14 FBgn0260862 0.32 FBgn0052719 -0.85 FBgn0038977 1.66 FBgn0022343 1.44 FBgn0036922 1.05 FBgn0052227 -1.47 FBgn0035756 -1.28 FBgn0034323 -0.31 FBgn0028948 -1.36 FBgn0038118 -1.91 FBgn0053771 0.89 FBgn0035427 -0.32 FBgn0040850 -1.27 FBgn0031313 0.91 FBgn0040368 1.06 FBgn0038235 -1.27 FBgn0000173 0.28 FBgn0050293 -0.24 FBgn0026079 2.96 FBgn0030481 0.5 FBgn0085474 2.67 FBgn0037687 0.55 FBgn0024277 -1.73 FBgn0260648 1.31 FBgn0027083 -1.21 FBgn0023213 1.42 FBgn0030365 0.5 FBgn0032136 -0.71 FBgn0002563 -0.92 FBgn0033042 0.9 FBgn0032483 -0.92 FBgn0051245 -1.67 FBgn0039172 0.48 FBgn0039588 1.01 FBgn0034437 -0.9 FBgn0052191 0.23 FBgn0045852 -1.58 FBgn0004858 -0.68 FBgn0030466 -0.75 FBgn0025700 -0.97 FBgn0004655 0.95 FBgn0032346 -0.7 FBgn0036691 0.07 FBgn0053221 -1.1 FBgn0027329 0.87 FBgn0002354 -0.81 FBgn0052718 -0.59 FBgn0053299 -0.32 FBgn0085359 -0.62 FBgn0014029 -0.7 FBgn0034990 -0.92 FBgn0035420 -1.45 FBgn0033340 0.84 FBgn0034849 -0.62 FBgn0261111 -1.06 FBgn0022708 -1.07 FBgn0037753 0.5 FBgn0029987 -1.18 FBgn0050275 0.26 FBgn0016126 0.82 FBgn0036262 0.2 FBgn0030347 0.53 FBgn0027793 -0.78 FBgn0030928 2.07 FBgn0029898 -0.84 FBgn0010894 0.48 FBgn0030460 -1.87 FBgn0035003 1.11 FBgn0022338 1 FBgn0030271 0.63 FBgn0038246 2.19 FBgn0051706 -0.62 FBgn0051437 -1.57 FBgn0086657 1.12 FBgn0032870 0.94 FBgn0035482 0.62 FBgn0260634 -1.46 FBgn0035231 -0.67 FBgn0051869 -1.75 FBgn0036804 -0.59 FBgn0015477 -1.48 FBgn0010341 -1.88 FBgn0031856 -0.84 FBgn0030786 -0.64 FBgn0085380 -1.3 FBgn0033440 -1.96 FBgn0039938 0.81 FBgn0029979 -1.47 FBgn0040236 0.41 FBgn0028436 1.76 FBgn0020378 -1.71 FBgn0032407 -0.63 FBgn0033875 -1.1 FBgn0011668 -1.64 FBgn0014006 -1.49 FBgn0026060 -0.58 FBgn0040284 9.59 FBgn0037163 -0.13 FBgn0053108 -0.62 FBgn0028663 0.32 FBgn0035153 1.28 FBgn0035861 -0.45 FBgn0031707 -0.84 FBgn0053696 -0.74 FBgn0015907 -1.93 FBgn0033162 -0.86 FBgn0013272 -0.82 FBgn0015527 0.64 FBgn0028916 -1.2 FBgn0029914 -0.27 FBgn0027885 1.71 FBgn0037798 -0.68 FBgn0034933 -0.41 FBgn0034567 0.55 FBgn0024807 1.54 FBgn0033538 0.99 FBgn0038596 -1.47 FBgn0013733 1.43 FBgn0038660 -0.88 FBgn0004169 4.29 FBgn0036597 -0.89 FBgn0011676 -0.99 FBgn0243514 -1.01 FBgn0024841 -0.49 FBgn0031749 1.46 FBgn0035035 0.69 FBgn0030884 0.62 FBgn0016797 -0.99 FBgn0040827 -0.55 FBgn0031335 1.75 FBgn0052647 -0.81 FBgn0051740 1.18 FBgn0051658 1.21 FBgn0011703 1.2 FBgn0032419 -0.94 FBgn0000543 0.93 FBgn0033089 -1.63 FBgn0052240 -0.6 FBgn0261885 1.97 FBgn0033423 -0.55 FBgn0029006 4.72 FBgn0261064 1.54 FBgn0036996 0.54 FBgn0036441 -0.93 FBgn0033065 -1.35 FBgn0032845 -1.29 FBgn0042101 0.46 FBgn0054023 0.78 FBgn0030717 0.78 FBgn0000394 -0.61 FBgn0039740 1.17 FBgn0030451 -0.76 FBgn0038463 -0.28 FBgn0030330 1.04 FBgn0053467 -0.74 FBgn0045485 0.58 FBgn0030646 0.32 FBgn0036022 0.3 FBgn0052266 0.39 FBgn0040775 -2.26 FBgn0039299 0.2 FBgn0050412 -1.62 FBgn0004870 -1.58 FBgn0031623 -2.23 FBgn0034527 -1.69 FBgn0004435 0.88 FBgn0050438 -1.05 FBgn0039617 -1.7 FBgn0036887 -0.27 FBgn0032603 2.03 FBgn0033599 -0.29 FBgn0031879 -0.68 FBgn0034136 0.74 FBgn0035415 0.2 FBgn0261383 -0.75 FBgn0023000 -0.79 FBgn0039305 -1.28 FBgn0034200 -1.99 FBgn0019938 0.58 FBgn0020245 -1.13 FBgn0035851 0.77 FBgn0031923 0.72 FBgn0030921 1.69 FBgn0033815 -1.71 FBgn0086683 -0.57 FBgn0026760 -1.37 FBgn0038981 0.85 FBgn0261624 0.46 FBgn0020660 0.47 FBgn0002905 1.46 FBgn0004619 -0.54 FBgn0034512 0.2 FBgn0036364 0.46 FBgn0038744 -0.85 FBgn0085195 -1.31 FBgn0032224 -0.36 FBgn0034418 -2.11 FBgn0037824 0.92 FBgn0025391 -1.2 FBgn0050379 0.79 FBgn0036518 -1.9 FBgn0037972 0.78 FBgn0038857 0.47 FBgn0032700 -2 FBgn0034723 -1.14 FBgn0053117 -0.68 FBgn0002791 -1.07 FBgn0025839 0.6 FBgn0037853 -0.72 FBgn0035934 1.14 FBgn0040660 -1.08 FBgn0010292 1.38 FBgn0031980 1.71 FBgn0030610 -2.13 FBgn0035398 -1.81 FBgn0003041 0.41 FBgn0050009 -1.18 FBgn0036236 0.5 FBgn0051097 0.46 FBgn0052320 0.57 FBgn0002633 1.05 FBgn0039846 0.49 FBgn0051928 1.13 FBgn0034242 1.05 FBgn0011592 2.07 FBgn0036224 0.38 FBgn0031360 -1.19 FBgn0030606 1.99 FBgn0042187 -0.42 FBgn0038295 0.38 FBgn0015562 -0.29 FBgn0034120 -0.75 FBgn0026379 -0.32 FBgn0004397 -0.41 FBgn0052232 -0.85 FBgn0001189 -1.28 FBgn0034011 -0.9 FBgn0021776 -0.89 FBgn0039136 0.39 FBgn0085283 1.31 FBgn0029826 -0.31 FBgn0004237 -0.76 FBgn0037376 -0.66 FBgn0000121 0.28 FBgn0031301 1.2 FBgn0030292 -1.37 FBgn0032899 -0.59 FBgn0052383 0.17 FBgn0040799 1.03 FBgn0038641 -1.27 FBgn0031600 -1.96 FBgn0014455 1.01 FBgn0036070 -0.39 FBgn0020633 -0.47 FBgn0030170 1.58 FBgn0035205 1.63 FBgn0038160 0.76 FBgn0083991 -1.79 FBgn0038190 -0.78 FBgn0003386 1.13 FBgn0026876 1.1 FBgn0031596 -1.08 FBgn0037789 -0.9 FBgn0031546 -0.9 FBgn0039385 -0.56 FBgn0043471 -0.9 FBgn0032935 -0.85 FBgn0032724 0.71 FBgn0034856 -1.15 FBgn0004593 -1.62 FBgn0030899 0.29 FBgn0000319 1.81 FBgn0033480 -1.3 FBgn0030385 0.86 FBgn0086350 1.02 FBgn0037305 -2 FBgn0051871 1.14 FBgn0032172 -0.41 FBgn0040324 -1.19 FBgn0037801 -0.3 FBgn0034060 -1.06 FBgn0010309 -0.83 FBgn0031374 0.78 FBgn0039255 -1.83 FBgn0032312 0.23 FBgn0003015 -0.9 FBgn0003435 0.51 FBgn0035089 -0.77 FBgn0000536 -1.65 FBgn0003159 0.38 FBgn0039712 -1.26 FBgn0035247 -0.96 FBgn0032067 -1.89 FBgn0036480 -0.58 FBgn0027546 0.53 FBgn0013674 0.35 FBgn0030339 -0.53 FBgn0051320 1.03 FBgn0029761 -2.21 FBgn0042711 0.65 FBgn0036656 0.26 FBgn0033363 -1.38 FBgn0030441 0.38 FBgn0011606 0.69 FBgn0030666 -0.7 FBgn0085410 -0.7 FBgn0030870 -0.93 FBgn0040514 -0.88 FBgn0261850 -0.21 FBgn0032253 0.67 FBgn0050147 -1.58 FBgn0000413 -0.99 FBgn0038806 -0.87 FBgn0259795 2.16 FBgn0034825 0.87 FBgn0033500 -0.97 FBgn0015222 1.8 FBgn0039395 -0.16 FBgn0011715 0.34 FBgn0000261 1.11 FBgn0039459 -0.82 FBgn0027087 0.78 FBgn0005640 0.26 FBgn0033973 0.09 FBgn0051427 -1.06 FBgn0014868 -1.34 FBgn0035890 -0.75 FBgn0036093 -0.27 FBgn0039058 1.54 FBgn0038250 0.96 FBgn0033893 0.56 FBgn0010622 1.21 FBgn0031484 -1.09 FBgn0030654 -1 FBgn0025373 0.73 FBgn0031609 1.54 FBgn0259111 -1.91 FBgn0032470 -0.84 FBgn0032337 0.24 FBgn0039622 -0.97 FBgn0033730 -1.12 FBgn0033292 0.2 FBgn0003891 0.62 FBgn0026261 -2.25 FBgn0086912 0.95 FBgn0039342 -0.66 FBgn0035181 0.32 FBgn0039495 0.98 FBgn0031763 -1.31 FBgn0053110 -1.41 FBgn0052133 -1.74 FBgn0035414 -1.08 FBgn0013751 0.41 FBgn0038123 0.49 FBgn0037829 -0.53 FBgn0011745 -0.48 FBgn0037107 0.82 FBgn0036146 0.85 FBgn0052574 -1.07 FBgn0011207 -1.07 FBgn0004360 0.84 FBgn0036117 -1.74 FBgn0032705 -1.75 FBgn0010052 -0.54 FBgn0035533 -1.75 FBgn0000639 -0.8 FBgn0034489 -0.82 FBgn0030737 -0.15 FBgn0052071 0.59 FBgn0036606 0.39 FBgn0052699 -1.76 FBgn0027528 0.29 FBgn0034988 0.5 FBgn0035077 -0.27 FBgn0040754 -2.17 FBgn0030844 1.39 FBgn0037460 -1.34 FBgn0003517 1.54 FBgn0016756 -1.14 FBgn0085432 1.56 FBgn0001612 0.9 FBgn0001138 -1.6 FBgn0029816 0.16 FBgn0001258 1.06 FBgn0052301 1.28 FBgn0037612 -0.47 FBgn0051077 -1.12 FBgn0043530 -0.9 FBgn0037938 0.61 FBgn0031585 0.68 FBgn0030699 1.54 FBgn0033826 -0.45 FBgn0028518 -1.47 FBgn0011289 -1.66 FBgn0033929 0.21 FBgn0031731 -0.88 FBgn0051145 -1.18 FBgn0004623 -1.63 FBgn0050372 -1.19 FBgn0032069 -0.95 FBgn0051760 -0.71 FBgn0037672 0.94 FBgn0013749 1.73 FBgn0036110 -0.89 FBgn0029755 -1.16 FBgn0039559 -0.94 FBgn0004597 0.82 FBgn0052026 -1.16 FBgn0031776 1.11 FBgn0036198 1.65 FBgn0013305 0.47 FBgn0013469 0.55 FBgn0260860 -0.78 FBgn0035825 -1.02 FBgn0030012 -1.28 FBgn0085434 -0.54 FBgn0016032 1.31 FBgn0034904 1.21 FBgn0038268 -0.66 FBgn0038968 0.82 FBgn0033633 -1.61 FBgn0010220 -0.73 FBgn0031675 0.57 FBgn0051523 0.91 FBgn0260940 -0.83 FBgn0052304 -0.58 FBgn0053301 2.37 FBgn0260660 -1.23 FBgn0261283 3.18 FBgn0034950 1.02 FBgn0003479 1.08 FBgn0035464 0.65 FBgn0039349 -0.73 FBgn0040786 2.25 FBgn0003885 3.13 FBgn0039804 0.93 FBgn0259714 -1.3 FBgn0083951 -0.29 FBgn0015025 -1.12 FBgn0034670 -0.25 FBgn0086384 -0.74 FBgn0037467 0.22 FBgn0004914 1.18 FBgn0021814 -0.89 FBgn0053513 -1.26 FBgn0044048 -1.47 FBgn0004133 -1.53 FBgn0003300 -0.99 FBgn0050101 -0.27 FBgn0032549 0.61 FBgn0052529 -1.55 FBgn0035917 1.18 FBgn0039809 2.37 FBgn0039645 -0.85 FBgn0024891 -0.36 FBgn0037020 -1.36 FBgn0030524 -1.46 FBgn0036046 1.04 FBgn0039719 1 FBgn0031449 -0.19 FBgn0036915 2.57 FBgn0039006 -0.74 FBgn0039656 -0.86 FBgn0011276 -0.69 FBgn0026084 0.59 FBgn0002629 1.06 FBgn0034103 -0.74 FBgn0033578 -0.83 FBgn0052532 1.16 FBgn0033863 -1.08 FBgn0031174 -0.76 FBgn0033507 0.88 FBgn0000140 1.47 FBgn0041249 0.87 FBgn0015621 -0.69 FBgn0034237 3.91 FBgn0032512 1.15 FBgn0027584 1.07 FBgn0003651 1.04 FBgn0037617 -0.36 FBgn0052476 -0.74 FBgn0052023 -0.21 FBgn0025378 -1.6 FBgn0035294 1.94 FBgn0026378 -0.8 FBgn0039638 0.83 FBgn0022987 -0.84 FBgn0041624 -1.57 FBgn0034957 -1.87 FBgn0035421 0.31 FBgn0030566 -0.49 FBgn0050385 -0.26 FBgn0028476 -0.03 FBgn0039790 1 FBgn0036545 1.06 FBgn0027617 1.48 FBgn0036729 -0.92 FBgn0034636 -1.11 FBgn0034645 0.58 FBgn0036868 -1.1 FBgn0029763 -1.4 FBgn0037432 -0.57 FBgn0027526 2.08 FBgn0030025 -1.29 FBgn0038247 -0.69 FBgn0036817 2.26 FBgn0035865 0.52 FBgn0039754 1.38 FBgn0051088 0.9 FBgn0035164 0.33 FBgn0034141 0.86 FBgn0034172 0.38 FBgn0032476 1.03 FBgn0025827 -1.95 FBgn0034442 -1.07 FBgn0050394 -1.18 FBgn0026396 -0.84 FBgn0034909 -0.48 FBgn0010786 -1.42 FBgn0037162 1.42 FBgn0061492 0.35 FBgn0034664 -1.22 FBgn0030457 0.29 FBgn0000182 0.88 FBgn0030983 0.33 FBgn0030556 -0.35 FBgn0050018 -0.37 FBgn0039029 -1.89 FBgn0031858 -0.44 FBgn0027603 -1.31 FBgn0033051 0.2 FBgn0030512 0.15 FBgn0039300 4.77 FBgn0052202 -1.35 FBgn0031820 0.22 FBgn0040658 -1.11 FBgn0034858 -0.93 FBgn0026196 1.26 FBgn0051673 -0.67 FBgn0035359 0.24 FBgn0046301 -0.92 FBgn0034774 -0.69 FBgn0033160 0.69 FBgn0037517 1 FBgn0041233 -0.46 FBgn0030437 -0.74 FBgn0041723 0.58 FBgn0031037 -1.2 FBgn0034869 -0.9 FBgn0033516 -0.65 FBgn0261787 0.18 FBgn0000547 1 FBgn0024188 -1.01 FBgn0036298 -0.48 FBgn0040906 -0.86 FBgn0033294 1.27 FBgn0036938 -0.25 FBgn0035949 0.49 FBgn0020617 0.62 FBgn0037454 -0.62 FBgn0037174 -1.76 FBgn0041096 1.43 FBgn0261363 0.39 FBgn0003034 0.41 FBgn0035976 -1.8 FBgn0030900 0.53 FBgn0041164 -1.51 FBgn0034086 -1.33 FBgn0028494 -2.26 FBgn0004556 -1.61 FBgn0051776 -0.61 FBgn0030880 -0.55 FBgn0033312 0.86 FBgn0034837 -1.69 FBgn0038829 -0.4 FBgn0015320 1.98 FBgn0036831 0.21 FBgn0053099 -0.65 FBgn0036416 -0.47 FBgn0035737 0.85 FBgn0026316 4.5 FBgn0261873 -0.87 FBgn0029715 0.32 FBgn0050493 1.03 FBgn0028704 1.29 FBgn0031143 0.09 FBgn0034720 -0.4 FBgn0035519 0.93 FBgn0003701 2.13 FBgn0031317 0.78 FBgn0030788 0.79 FBgn0039200 1.5 FBgn0033214 0.89 FBgn0015393 7.75 FBgn0030215 -0.73 FBgn0022069 0.59 FBgn0029113 0.17 FBgn0032341 1.17 FBgn0031090 2.47 FBgn0037766 1.01 FBgn0039114 1.17 FBgn0032752 0.9 FBgn0034725 -1.95 FBgn0040253 1.13 FBgn0033031 -1.58 FBgn0028893 -0.37 FBgn0000492 -1.79 FBgn0031021 0.32 FBgn0085425 3.94 FBgn0025393 0.18 FBgn0033918 0.35 FBgn0037352 -0.99 FBgn0028419 1.36 FBgn0036153 0.86 FBgn0035050 1.39 FBgn0035608 0.33 FBgn0028688 -0.62 FBgn0040801 3.21 FBgn0033554 -1.26 FBgn0050288 -1.09 FBgn0033155 0.57 FBgn0035848 -0.39 FBgn0001148 -0.31 FBgn0047133 -2.34 FBgn0037926 -0.67 FBgn0004430 -0.31 FBgn0027843 0.89 FBgn0033203 1.12 FBgn0032873 -1.54 FBgn0038504 0.26 FBgn0038353 -1.05 FBgn0036684 -0.73 FBgn0033484 -0.68 FBgn0031478 -0.68 FBgn0053139 1.07 FBgn0250843 -0.42 FBgn0085443 1.64 FBgn0053200 1.22 FBgn0085395 -1.42 FBgn0039061 0.68 FBgn0035691 -1.08 FBgn0039015 -1.64 FBgn0024273 1.32 FBgn0034979 -0.6 FBgn0037994 -1.87 FBgn0032824 -1.93 FBgn0032789 0.67 FBgn0039749 2.11 FBgn0030141 1.4 FBgn0051633 -0.28 FBgn0016054 -1.08 FBgn0020641 -1.19 FBgn0039336 1.41 FBgn0069938 -1.29 FBgn0026630 -0.17 FBgn0261808 0.73 FBgn0035594 -0.88 FBgn0032246 -0.78 FBgn0035789 -0.95 FBgn0050356 0.69 FBgn0003415 3.72 FBgn0032713 -1.5 FBgn0051183 -1.27 FBgn0086655 -1.03 FBgn0040467 -1.54 FBgn0038795 -1.57 FBgn0034093 0.52 FBgn0051220 -1.29 FBgn0031135 0.55 FBgn0086253 -1.45 FBgn0259214 -1.02 FBgn0259704 0.47 FBgn0027343 -1.07 FBgn0036529 -0.87 FBgn0035138 1.18 FBgn0026722 8.31 FBgn0033038 0.82 FBgn0010225 0.57 FBgn0029725 -1.32 FBgn0030307 -1.25 FBgn0013563 -1.22 FBgn0037708 -2.21 FBgn0054045 0.19 FBgn0016675 0.34 FBgn0038281 2.43 FBgn0033734 -0.34 FBgn0031537 2.84 FBgn0040064 0.5 FBgn0031883 -1.24 FBgn0261802 -1.55 FBgn0037481 0.95 FBgn0036483 -0.87 FBgn0013755 0.88 FBgn0032635 1.42 FBgn0031323 -0.89 FBgn0040339 0.66 FBgn0034479 -1.47 FBgn0053329 -0.1 FBgn0038575 -0.72 FBgn0027552 -1.06 FBgn0050456 -1.89 FBgn0035627 -0.71 FBgn0259977 -1.79 FBgn0046880 0.68 FBgn0261860 -1.16 FBgn0000320 0.69 FBgn0035857 -0.28 FBgn0038839 0.14 FBgn0029501 1.22 FBgn0039288 -0.43 FBgn0029508 -0.87 FBgn0031424 -1.78 FBgn0004197 1.89 FBgn0038126 -0.85 FBgn0033686 -1.45 FBgn0037619 -0.32 FBgn0026238 1.64 FBgn0043575 0.27 FBgn0038197 -1.25 FBgn0053556 -0.76 FBgn0050103 -0.78 FBgn0037893 0.3 FBgn0085277 0.64 FBgn0001324 0.33 FBgn0051231 3.16 FBgn0011754 -1.25 FBgn0002466 -0.84 FBgn0033067 1.07 FBgn0034504 -2.09 FBgn0032275 0.53 FBgn0033584 0.65 FBgn0259193 -0.91 FBgn0029881 1.49 FBgn0250823 -1.17 FBgn0038676 -0.62 FBgn0035906 -1.09 FBgn0039086 0.69 FBgn0030509 0.74 FBgn0037102 -0.28 FBgn0001180 -0.85 FBgn0000404 2.76 FBgn0052105 -0.82 FBgn0050467 1.55 FBgn0032536 -0.96 FBgn0051698 1.32 FBgn0020388 0.68 FBgn0031247 -1.1 FBgn0039183 1.34 FBgn0037877 0.69 FBgn0000500 0.73 FBgn0033872 -1.17 FBgn0001174 0.54 FBgn0039654 0.24 FBgn0032553 1.25 FBgn0034568 -0.19 FBgn0054056 -2.02 FBgn0032447 -0.92 FBgn0025724 6.43 FBgn0032085 -0.5 FBgn0041607 1.08 FBgn0031861 0.88 FBgn0051556 4.66 FBgn0029736 0.16 FBgn0004859 0.28 FBgn0029526 -1.18 FBgn0039240 -0.4 FBgn0028519 1.77 FBgn0040375 -0.35 FBgn0037931 -1.34 FBgn0033186 0.9 FBgn0034175 -0.64 FBgn0005619 1.24 FBgn0011836 0.39 FBgn0033028 -1.42 FBgn0052986 -1.85 FBgn0037493 -0.53 FBgn0031452 -0.74 FBgn0261238 0.86 FBgn0050095 -1.13 FBgn0034821 0.81 FBgn0034580 0.97 FBgn0040030 1.24 FBgn0039626 1.54 FBgn0035452 -1.1 FBgn0038946 -0.73 FBgn0037421 -2.02 FBgn0051453 -1.75 FBgn0085325 1.77 FBgn0000594 0.47 FBgn0034939 -0.34 FBgn0039779 -0.63 FBgn0051213 0.86 FBgn0037677 -1.62 FBgn0026175 -0.96 FBgn0033844 -1.37 FBgn0027082 -0.45 FBgn0033378 -1.26 FBgn0039215 0.59 FBgn0029940 0.8 FBgn0259175 -1.49 FBgn0036165 -0.88 FBgn0031894 1.33 FBgn0030858 -0.79 FBgn0000115 -1.05 FBgn0030251 -0.88 FBgn0026088 -0.51 FBgn0011296 0.51 FBgn0028484 1.4 FBgn0031129 0.53 FBgn0038387 0.19 FBgn0036498 -1.37 FBgn0035280 -0.71 FBgn0036853 -0.49 FBgn0085293 0.63 FBgn0259936 -1.7 FBgn0260011 -0.33 FBgn0002773 1.22 FBgn0023215 -0.87 FBgn0030588 0.6 FBgn0034075 -1.69 FBgn0028941 -0.74 FBgn0029789 -1.08 FBgn0039780 0.28 FBgn0011695 -0.53 FBgn0010620 -1.59 FBgn0038186 -0.5 FBgn0034658 -0.97 FBgn0038000 -0.81 FBgn0037578 -0.3 FBgn0039590 -1.62 FBgn0035016 0.86 FBgn0040475 -1.61 FBgn0031107 -0.78 FBgn0035526 0.71 FBgn0035694 -0.12 FBgn0250832 -0.64 FBgn0038405 -0.6 FBgn0032803 1.76 FBgn0036975 -1.32 FBgn0028560 -0.38 FBgn0020497 -0.71 FBgn0061198 -1.3 FBgn0039042 -2.14 FBgn0034025 1.51 FBgn0039470 -0.47 FBgn0038151 -1.42 FBgn0052656 -1.18 FBgn0037384 -1.43 FBgn0020508 -0.18 FBgn0032964 -1.33 FBgn0022740 1.22 FBgn0034882 0.28 FBgn0052654 0.31 FBgn0032506 -0.8 FBgn0023537 -0.97 FBgn0037399 0.64 FBgn0051997 -1.27 FBgn0085408 -0.08 FBgn0036583 1.14 FBgn0052195 0.11 FBgn0026386 -0.86 FBgn0259143 3.38 FBgn0037040 0.94 FBgn0039928 1.23 FBgn0260441 5.11 FBgn0052119 -1.3 FBgn0039325 0.61 FBgn0041250 -1.24 FBgn0051797 0.82 FBgn0046687 -0.48 FBgn0034545 -0.61 FBgn0035500 -1.39 FBgn0037571 1.5 FBgn0032218 -0.52 FBgn0001087 -0.96 FBgn0260049 0.24 FBgn0033165 3.13 FBgn0033404 -1.45 FBgn0036836 -1.9 FBgn0034936 0.26 FBgn0027093 1.39 FBgn0001255 2.51 FBgn0037218 0.46 FBgn0037778 -1.62 FBgn0039049 -0.73 FBgn0033339 1.53 FBgn0031240 -0.3 FBgn0005695 0.72 FBgn0038488 -0.3 FBgn0039479 -0.96 FBgn0086357 -1.84 FBgn0259237 -1.85 FBgn0036126 -0.7 FBgn0025519 -1.37 FBgn0039489 -0.24 FBgn0038038 0.8 FBgn0038473 2.45 FBgn0030743 1.06 FBgn0051849 0.43 FBgn0040794 -0.96 FBgn0261610 0.77 FBgn0000057 0.05 FBgn0004374 0.79 FBgn0052639 2.38 FBgn0052570 -1.66 FBgn0033981 -1.71 FBgn0029807 -1.16 FBgn0034032 -0.3 FBgn0028523 1.84 FBgn0037012 -0.26 FBgn0025864 -0.44 FBgn0035551 1.54 FBgn0035332 1.13 FBgn0034718 -1.44 FBgn0030239 -0.8 FBgn0016036 -0.93 FBgn0037978 0.77 FBgn0052461 0.94 FBgn0030228 -2.09 FBgn0030483 2.98 FBgn0034422 -1.48 FBgn0036875 0.62 FBgn0015805 2.83 FBgn0031364 0.99 FBgn0028692 -1.22 FBgn0030521 0.48 FBgn0034503 -0.6 FBgn0031520 -1.29 FBgn0031662 1.3 FBgn0037963 0.21 FBgn0039504 2.11 FBgn0003654 -0.59 FBgn0037251 2.12 FBgn0033767 1.11 FBgn0036986 0.32 FBgn0002968 -1.65 FBgn0001197 -1.04 FBgn0003353 -1.1 FBgn0030187 -0.64 FBgn0010709 -1.02 FBgn0050184 0.3 FBgn0030417 -1.05 FBgn0086785 0.25 FBgn0038055 1.38 FBgn0051546 -1.88 FBgn0036024 -0.32 FBgn0036563 1.29 FBgn0029836 1.1 FBgn0026751 -0.54 FBgn0039868 -0.2 FBgn0022027 0.36 FBgn0032123 -0.47 FBgn0029989 -0.94 FBgn0036844 -1.58 FBgn0036678 -0.64 FBgn0261524 1.07 FBgn0015838 -1.47 FBgn0036826 0.53 FBgn0030196 -1.48 FBgn0004959 0.43 FBgn0039421 0.72 FBgn0039437 -1.14 FBgn0030343 -0.97 FBgn0033778 0.96 FBgn0034068 -0.33 FBgn0033129 -0.91 FBgn0038360 -1.08 FBgn0033308 1.34 FBgn0034528 0.76 FBgn0039125 1.29 FBgn0010333 -1.23 FBgn0260006 -1.14 FBgn0086532 -1.83 FBgn0003116 1.04 FBgn0029975 -0.64 FBgn0027598 0.58 FBgn0036080 -2.25 FBgn0261602 2.91 FBgn0034327 0.57 FBgn0010412 1.36 FBgn0030623 -1.29 FBgn0038300 1.1 FBgn0037716 1.04 FBgn0039106 -0.98 FBgn0029949 -0.22 FBgn0052350 -0.96 FBgn0023097 -0.72 FBgn0037165 -0.92 FBgn0041342 -0.52 FBgn0033794 -0.15 FBgn0038765 -1.39 FBgn0040529 -1.47 FBgn0031282 2.18 FBgn0052437 -1.96 FBgn0030798 0.32 FBgn0039158 -0.2 FBgn0034683 -0.76 FBgn0038324 1 FBgn0024944 -1.74 FBgn0019644 -0.31 FBgn0039833 1.61 FBgn0038449 0.26 FBgn0030997 -0.27 FBgn0003285 2.42 FBgn0032702 -0.73 FBgn0034942 -0.16 FBgn0005596 -0.72 FBgn0037734 1.1 FBgn0052039 1.06 FBgn0038540 -1.61 FBgn0026593 -0.67 FBgn0053123 -0.95 FBgn0032900 -1.44 FBgn0013675 -0.56 FBgn0028567 -1.48 FBgn0035686 -1.16 FBgn0028410 1.63 FBgn0035965 0.78 FBgn0001987 0.4 FBgn0036396 -1.15 FBgn0003511 1.57 FBgn0053542 1.3 FBgn0039065 -0.15 FBgn0050156 -0.99 FBgn0030595 0.83 FBgn0039752 1.01 FBgn0037395 -0.82 FBgn0051515 2.78 FBgn0038097 -1.65 FBgn0031201 -0.61 FBgn0038818 1.92 FBgn0034426 -1.46 FBgn0032744 -0.64 FBgn0035021 0.92 FBgn0037502 -0.61 FBgn0058245 0.78 FBgn0039269 -1.16 FBgn0260946 1.76 FBgn0012036 -1.02 FBgn0038973 0.74 FBgn0020910 -2.79 FBgn0005649 -1.33 FBgn0040383 -1.42 FBgn0039449 -0.62 FBgn0036710 -0.94 FBgn0035060 -0.19 FBgn0039151 -1.23 FBgn0034968 4.51 FBgn0033624 -1.65 FBgn0031774 1.88 FBgn0020908 1.1 FBgn0031008 0.78 FBgn0036309 -1.15 FBgn0031913 -0.77 FBgn0035316 -0.2 FBgn0036493 -1.27 FBgn0032857 -0.45 FBgn0037323 -2.14 FBgn0030410 0.49 FBgn0031235 0.46 FBgn0035064 -0.31 FBgn0031150 1.67 FBgn0034797 1.11 FBgn0030079 0.57 FBgn0032658 1.93 FBgn0030791 -0.89 FBgn0000108 -1.16 FBgn0261584 0.5 FBgn0035146 0.81 FBgn0034110 -0.98 FBgn0032394 -1.18 FBgn0039094 -1.37 FBgn0039192 0.6 FBgn0010280 -0.53 FBgn0025678 1.12 FBgn0025381 -0.34 FBgn0027570 0.29 FBgn0085413 0.83 FBgn0030263 0.61 FBgn0031066 -1.82 FBgn0051641 -1.42 FBgn0002789 -1.18 FBgn0035256 0.54 FBgn0013348 -0.85 FBgn0039663 -1.34 FBgn0004839 0.43 FBgn0058441 1.08 FBgn0013725 -1.35 FBgn0050360 1.24 FBgn0003867 -1.32 FBgn0052277 -0.98 FBgn0053346 0.27 FBgn0013809 1.1 FBgn0036821 0.7 FBgn0030607 -0.67 FBgn0001220 -1.7 FBgn0036570 -0.48 FBgn0032079 0.79 FBgn0026869 -0.69 FBgn0032860 -1.08 FBgn0038090 0.7 FBgn0037126 0.97 FBgn0036109 -0.49 FBgn0053993 -1.25 FBgn0036655 1.1 FBgn0051296 0.66 FBgn0038549 1.51 FBgn0035870 0.4 FBgn0028985 -1.78 FBgn0030136 4.48 FBgn0037445 1.32 FBgn0029672 0.53 FBgn0026433 1.27 FBgn0034402 -0.81 FBgn0010453 1.46 FBgn0015038 -0.55 FBgn0031006 0.66 FBgn0026326 -1.19 FBgn0030576 0.26 FBgn0035244 0.74 FBgn0032147 -1.5 FBgn0053333 -1.52 FBgn0037883 -0.57 FBgn0031646 -1.56 FBgn0030377 -0.74 FBgn0029992 -1.27 FBgn0042710 -0.22 FBgn0031866 1.59 FBgn0003090 -2.65 FBgn0051249 -1.61 FBgn0052702 1.49 FBgn0036629 0.2 FBgn0033933 0.8 FBgn0033900 0.74 FBgn0086448 0.12 FBgn0010768 -1.34 FBgn0024996 -1.72 FBgn0038179 -0.18 FBgn0032924 -0.75 FBgn0001990 -0.99 FBgn0001341 0.45 FBgn0052163 0.75 FBgn0035790 0.9 FBgn0035955 1.1 FBgn0033802 1.2 FBgn0036255 0.83 FBgn0031518 -0.93 FBgn0038523 0.84 FBgn0051287 -1.24 FBgn0051778 0.51 FBgn0027512 -0.16 FBgn0035404 -1.51 FBgn0037773 -1.44 FBgn0012051 -0.32 FBgn0033208 -1.1 FBgn0046297 -0.48 FBgn0036336 0.72 FBgn0032034 0.72 FBgn0039165 -1.3 FBgn0050486 0.33 FBgn0028400 0.8 FBgn0035405 0.62 FBgn0031082 1.73 FBgn0036008 -0.24 FBgn0031471 0.85 FBgn0031117 -1.17 FBgn0029131 0.42 FBgn0030703 0.47 FBgn0038349 0.84 FBgn0015380 0.51 FBgn0053978 -0.98 FBgn0004171 -1.14 FBgn0026190 -0.95 FBgn0035879 -1.31 FBgn0032850 -1.64 FBgn0052099 -0.41 FBgn0031959 0.27 FBgn0038208 -1.05 FBgn0034382 0.41 FBgn0013988 -1.66 FBgn0039744 0.7 FBgn0004779 -1.46 FBgn0034624 -0.98 FBgn0040814 0.29 FBgn0050159 1.21 FBgn0031148 0.78 FBgn0039016 0.62 FBgn0003312 0.3 FBgn0004898 0.54 FBgn0038106 -1.32 FBgn0039480 -1.08 FBgn0004174 -1.38 FBgn0000061 -0.67 FBgn0031713 0.4 FBgn0031265 0.35 FBgn0052243 -0.09 FBgn0010385 -1.61 FBgn0051989 0.86 FBgn0040508 0.67 FBgn0051005 0.97 FBgn0039599 1.18 FBgn0085296 -1.51 FBgn0003278 -1.2 FBgn0036232 -0.62 FBgn0004462 2.23 FBgn0032142 0.91 FBgn0038034 -0.56 FBgn0028514 1.31 FBgn0035308 -1.22 FBgn0039642 0.89 FBgn0053306 -1.54 FBgn0053061 -0.82 FBgn0033697 -1.25 FBgn0020510 -0.86 FBgn0025632 -0.75 FBgn0052187 1.05 FBgn0032329 0.95 FBgn0039038 -1.2 FBgn0039764 -0.96 FBgn0032233 0.58 FBgn0052364 -2.2 FBgn0011581 -1.28 FBgn0030766 0.56 FBgn0010383 -1.24 FBgn0032194 -0.75 FBgn0036847 -0.59 FBgn0036369 -0.62 FBgn0030066 -0.27 FBgn0050291 -1.82 FBgn0040601 -1.74 FBgn0086681 0.33 FBgn0034329 -1.36 FBgn0026077 1.25 FBgn0030367 0.61 FBgn0036741 -0.62 FBgn0028533 0.34 FBgn0037916 0.22 FBgn0052281 -0.85 FBgn0030817 -0.58 FBgn0025612 -1.19 FBgn0086899 3.39 FBgn0041240 -0.72 FBgn0036595 -0.41 FBgn0028903 -0.45 FBgn0030336 1.37 FBgn0033401 -1.34 FBgn0033720 -1.37 FBgn0051680 -0.42 FBgn0029091 1.85 FBgn0036019 -0.88 FBgn0004856 4.41 FBgn0039223 0.29 FBgn0029968 0.1 FBgn0035237 1.64 FBgn0028579 -0.18 FBgn0259228 -1.12 FBgn0054015 0.8 FBgn0052073 3.39 FBgn0034887 0.12 FBgn0003391 0.53 FBgn0032499 -0.93 FBgn0051561 -2.31 FBgn0050279 -0.75 FBgn0085222 1.29 FBgn0039031 0.4 FBgn0030323 -0.73 FBgn0033760 0.75 FBgn0053777 2.24 FBgn0038627 0.85 FBgn0030937 0.51 FBgn0035999 0.55 FBgn0036052 0.3 FBgn0011666 -1.06 FBgn0031191 -2.12 FBgn0030668 -0.1 FBgn0034056 -1.46 FBgn0036662 -0.38 FBgn0042180 0.97 FBgn0067102 0.26 FBgn0033980 0.77 FBgn0040797 -1.56 FBgn0023529 -0.62 FBgn0035957 0.52 FBgn0030241 1.03 FBgn0051360 -0.53 FBgn0051538 -0.24 FBgn0025643 -0.49 FBgn0031652 -1.16 FBgn0033301 1.4 FBgn0032197 -0.88 FBgn0025641 2.1 FBgn0003978 0.71 FBgn0031942 -1.83 FBgn0002652 1.26 FBgn0036984 -1.03 FBgn0036924 0.63 FBgn0014870 -1.76 FBgn0011336 -0.89 FBgn0259150 1.47 FBgn0085786 0.45 FBgn0037714 -0.51 FBgn0038244 1.13 FBgn0037697 -0.75 FBgn0004577 -0.98 FBgn0085449 -0.34 FBgn0038139 -0.83 FBgn0033911 1.13 FBgn0042106 -1.36 FBgn0030966 1.33 FBgn0260874 -1.33 FBgn0034802 -1.31 FBgn0051816 0.41 FBgn0025626 -0.87 FBgn0036437 -0.28 FBgn0028738 1.83 FBgn0038128 -1.22 FBgn0024194 0.5 FBgn0259221 -0.62 FBgn0053051 0.63 FBgn0039561 -1.24 FBgn0261811 -0.72 FBgn0036538 -0.62 FBgn0052846 -0.98 FBgn0050277 0.54 FBgn0039577 -0.13 FBgn0037949 -1.27 FBgn0037626 0.25 FBgn0066114 -0.44 FBgn0001967 0.73 FBgn0243516 0.76 FBgn0033518 0.44 FBgn0053017 -0.5 FBgn0035484 -0.83 FBgn0038376 -1.72 FBgn0032798 1.95 FBgn0033651 2.68 FBgn0051708 -1.37 FBgn0037755 -0.36 FBgn0037846 1.11 FBgn0028552 1.29 FBgn0260632 1.06 FBgn0032144 0.54 FBgn0039522 -1.49 FBgn0038921 0.59 FBgn0024491 0.47 FBgn0031937 -1.81 FBgn0028562 -0.9 FBgn0001202 -0.28 FBgn0000808 -1.09 FBgn0032415 -1.06 FBgn0032161 -0.42 FBgn0029912 0.31 FBgn0035644 0.94 FBgn0031729 -1.74 FBgn0039735 0.78 FBgn0033297 -0.35 FBgn0040007 3.44 FBgn0034480 0.89 FBgn0027057 0.93 FBgn0032677 0.93 FBgn0032481 -1.45 FBgn0034711 0.43 FBgn0004167 -1.18 FBgn0033969 1.01 FBgn0028644 -1.2 FBgn0051781 1.71 FBgn0003129 -0.49 FBgn0026268 0.68 FBgn0037826 0.74 FBgn0031512 0.38 FBgn0035033 -2.65 FBgn0029974 0.08 FBgn0021795 -1.27 FBgn0034045 -1.61 FBgn0039053 -0.58 FBgn0051495 0.49 FBgn0022238 -1.46 FBgn0035872 -2.2 FBgn0039863 0.45 FBgn0040349 -1.33 FBgn0037141 -0.72 FBgn0037802 -0.62 FBgn0259162 -1.22 FBgn0000359 0.49 FBgn0035196 -0.37 FBgn0000451 -1.7 FBgn0025693 -0.78 FBgn0025681 -1.42 FBgn0038569 1.86 FBgn0043455 -1.64 FBgn0046888 0.3 FBgn0033326 -0.64 FBgn0026566 1.04 FBgn0038961 -1.12 FBgn0039002 -0.55 FBgn0035802 -0.89 FBgn0035229 -0.78 FBgn0004143 0.87 FBgn0033250 1.16 FBgn0035124 0.61 FBgn0032057 1.3 FBgn0261791 0.77 FBgn0003377 0.51 FBgn0019650 -0.38 FBgn0039897 -0.49 FBgn0038337 0.43 FBgn0001086 7.88 FBgn0082598 0.48 FBgn0051206 1.1 FBgn0039970 -0.22 FBgn0030091 -1.96 FBgn0040281 -1.34 FBgn0032231 0.48 FBgn0000227 0.11 FBgn0032535 -0.34 FBgn0039936 -0.59 FBgn0034734 -1.02 FBgn0032090 -0.35 FBgn0052413 -0.57 FBgn0010638 -2.1 FBgn0039307 -2.5 FBgn0021995 -0.3 FBgn0039532 -1.65 FBgn0033072 -0.27 FBgn0032452 -1.2 FBgn0259984 -1.89 FBgn0037723 0.81 FBgn0033347 1.42 FBgn0032371 -1.28 FBgn0035581 -0.87 FBgn0003008 -0.25 FBgn0037550 1.24 FBgn0259243 -0.71 FBgn0259685 -0.48 FBgn0260932 -1.57 FBgn0260486 2.04 FBgn0011656 0.25 FBgn0039593 -0.47 FBgn0261362 -1.05 FBgn0040392 0.89 FBgn0038145 1.96 FBgn0050007 0.85 FBgn0051510 1.62 FBgn0004406 -1.73 FBgn0039769 -0.4 FBgn0052313 -0.79 FBgn0033755 1.74 FBgn0002525 1.43 FBgn0036381 -1.26 FBgn0032688 -2.72 FBgn0051860 -0.53 FBgn0038017 -1.73 FBgn0030407 0.79 FBgn0051119 0.35 FBgn0033110 -1.84 FBgn0020414 0.97 FBgn0011259 -0.64 FBgn0001296 1.71 FBgn0036497 0.54 FBgn0051809 -1.03 FBgn0036486 1.12 FBgn0013433 0.52 FBgn0037060 -0.57 FBgn0036768 -0.83 FBgn0036889 0.82 FBgn0030915 0.56 FBgn0032524 -1.16 FBgn0028963 0.69 FBgn0028397 0.96 FBgn0037428 -1.29 FBgn0032236 -2.59 FBgn0037090 -0.19 FBgn0035763 -1.56 FBgn0014023 -1.19 FBgn0032879 -2.45 FBgn0032643 -0.57 FBgn0028569 -2.12 FBgn0035674 -0.35 FBgn0085382 -1.05 FBgn0038886 -1.72 FBgn0036620 -1.73 FBgn0003969 0.64 FBgn0004516 0.88 FBgn0085541 -0.92 FBgn0052373 0.63 FBgn0010909 -0.28 FBgn0038892 -1.22 FBgn0030102 -0.94 FBgn0029846 -1.43 FBgn0015031 -1.52 FBgn0037911 0.4 FBgn0037645 3.74 FBgn0037022 -0.39 FBgn0032116 -0.78 FBgn0039354 -0.52 FBgn0036010 -0.87 FBgn0035094 -0.24 FBgn0002707 -1.02 FBgn0261822 -0.99 FBgn0011481 -0.93 FBgn0039250 0.54 FBgn0061515 -1.16 FBgn0038303 0.62 FBgn0033752 0.85 FBgn0002945 -1.82 FBgn0036947 -1.32 FBgn0031544 -1.45 FBgn0052179 -0.41 FBgn0038195 0.63 FBgn0019662 -1.51 FBgn0052230 -0.88 FBgn0054005 -1.58 FBgn0000551 0.94 FBgn0038089 0.68 FBgn0035134 4.24 FBgn0036512 0.01 FBgn0031724 -1.38 FBgn0052161 -1.58 FBgn0051729 1.51 FBgn0052343 1.26 FBgn0004591 -1.08 FBgn0033459 -1.08 FBgn0034197 -0.69 FBgn0020261 -1.18 FBgn0052681 -0.61 FBgn0038811 -0.57 FBgn0033174 1.45 FBgn0029152 -1.27 FBgn0031232 -1.8 FBgn0023495 -0.72 FBgn0039257 0.68 FBgn0036451 -0.59 FBgn0003130 1.06 FBgn0024980 0.66 FBgn0034225 -0.58 FBgn0052040 1.15 FBgn0029961 0.43 FBgn0035444 -0.89 FBgn0037690 0.11 FBgn0031905 0.75 FBgn0260459 0.9 FBgn0033769 0.73 FBgn0000565 -1.1 FBgn0014861 -1.36 FBgn0037351 1.67 FBgn0028858 1.19 FBgn0036286 0.97 FBgn0031413 -1.9 FBgn0033987 0.86 FBgn0260968 -1.51 FBgn0029704 0.51 FBgn0020386 1.93 FBgn0039147 -0.63 FBgn0030301 -1.71 FBgn0063498 -1.58 FBgn0035720 -1.91 FBgn0031460 -1.61 FBgn0261262 -2.09 FBgn0039644 -0.29 FBgn0032671 0.89 FBgn0034283 0.21 FBgn0031372 1.16 FBgn0053292 0.76 FBgn0035982 0.06 FBgn0051804 -1.17 FBgn0038799 0.71 FBgn0027786 0.87 FBgn0052557 1.09 FBgn0023527 -0.31 FBgn0032911 -0.74 FBgn0021872 0.54 FBgn0031042 -0.78 FBgn0050431 -1.12 FBgn0032836 0.45 FBgn0051021 -0.52 FBgn0033717 -0.61 FBgn0063368 0.84 FBgn0036181 1.59 FBgn0039689 -0.7 FBgn0052000 0.14 FBgn0259922 -1.29 FBgn0004403 4.38 FBgn0000577 1.01 FBgn0001090 2.21 FBgn0029943 0.57 FBgn0034961 -1.6 FBgn0085370 -1.53 FBgn0020369 -0.68 FBgn0031969 1.13 FBgn0003254 -1.8 FBgn0050043 -0.71 FBgn0033788 0.27 FBgn0041184 0.55 FBgn0031337 1.25 FBgn0032013 0.58 FBgn0033727 -1.47 FBgn0052668 0.47 FBgn0037560 0.22 FBgn0034218 -1.41 FBgn0035620 -1.75 FBgn0040949 -0.48 FBgn0050110 0.5 FBgn0033498 -0.62 FBgn0029835 1.2 FBgn0003205 -5.54 FBgn0030683 0.34 FBgn0035372 1.03 FBgn0086251 -1.01 FBgn0030092 -1.41 FBgn0039554 -0.53 FBgn0010435 -1.39 FBgn0037068 0.77 FBgn0004362 -1.77 FBgn0032956 -0.2 FBgn0000024 -0.82 FBgn0034410 3.28 FBgn0038257 -1.11 FBgn0004369 -1.63 FBgn0085330 1.92 FBgn0031872 -1.06 FBgn0025336 1.08 FBgn0033891 -1.19 FBgn0023510 1.1 FBgn0261291 -1.5 FBgn0038678 -1.1 FBgn0017556 -1.18 FBgn0259701 0.58 FBgn0036640 -1.44 FBgn0036880 -1.43 FBgn0030439 -1.74 FBgn0030735 -0.81 FBgn0261285 0.49 FBgn0085430 -1.17 FBgn0038458 -0.34 FBgn0031115 -0.88 FBgn0037881 -0.34 FBgn0035892 -1 FBgn0010591 -0.34 FBgn0034573 -1.43 FBgn0028516 0.88 FBgn0261634 -0.55 FBgn0032024 2.12 FBgn0001256 1.75 FBgn0039802 -1.02 FBgn0010040 -0.48 FBgn0000490 1.12 FBgn0038499 -1.78 FBgn0011743 0.71 FBgn0030964 0.98 FBgn0052572 0.47 FBgn0038168 -1.54 FBgn0027554 0.77 FBgn0038166 -0.68 FBgn0032699 -1.41 FBgn0030895 -0.68 FBgn0033868 2.12 FBgn0053111 -0.98 FBgn0036147 -1.06 FBgn0038851 -0.5 FBgn0010019 0.19 FBgn0028375 1 FBgn0087035 0.64 FBgn0037683 -2.25 FBgn0085351 -0.75 FBgn0039666 -1.43 FBgn0051410 0.63 FBgn0032585 0.26 FBgn0259247 -1.09 FBgn0030695 0.05 FBgn0037950 -2.12 FBgn0039088 -0.52 FBgn0011722 2.53 FBgn0261395 -0.53 FBgn0038223 -1.14 FBgn0034276 -2.04 FBgn0030345 0.73 FBgn0036815 0.51 FBgn0037780 -1.76 FBgn0038132 -0.27 FBgn0085312 -1.5 FBgn0036782 1.52 FBgn0034871 -0.26 FBgn0259878 -1.63 FBgn0003482 -1.09 FBgn0033927 0.25 FBgn0032087 -0.89 FBgn0030018 -0.44 FBgn0036352 -0.62 FBgn0051032 0.92 FBgn0034902 -1 FBgn0028370 -1.39 FBgn0035753 6.42 FBgn0025525 -0.93 FBgn0000557 1.14 FBgn0031284 -0.43 FBgn0030400 1.34 FBgn0034552 -0.44 FBgn0026150 1.31 FBgn0036862 -0.45 FBgn0036324 -0.92 FBgn0033995 -0.8 FBgn0015791 0.91 FBgn0031187 -1 FBgn0001123 -1.16 FBgn0035911 -0.64 FBgn0033861 -0.58 FBgn0036249 0.59 FBgn0086611 -1.57 FBgn0027582 -1.06 FBgn0037465 0.95 FBgn0035176 -1.89 FBgn0031252 5.53 FBgn0053281 -1.47 FBgn0033742 -0.64 FBgn0038511 -0.99 FBgn0039153 -0.94 FBgn0004867 2.33 FBgn0031217 1.38 FBgn0051475 -0.34 FBgn0037344 -0.05 FBgn0037387 1.37 FBgn0035458 -1.63 FBgn0261619 -1.84 FBgn0004244 -0.62 FBgn0027561 0.9 FBgn0034027 -1.37 FBgn0032494 1.29 FBgn0030011 -0.94 FBgn0011829 -1.5 FBgn0036590 -0.94 FBgn0002933 -0.42 FBgn0030051 -0.89 FBgn0031476 -1.05 FBgn0039344 0.77 FBgn0035524 1.28 FBgn0034931 -0.62 FBgn0037933 -1.41 FBgn0032514 -1.28 FBgn0031941 -1.29 FBgn0032119 -0.61 FBgn0034914 2.17 FBgn0053234 0.91 FBgn0029667 -1.5 FBgn0032437 -1.76 FBgn0034651 0.83 FBgn0086907 1.27 FBgn0015777 -1.28 FBgn0034143 1.43 FBgn0051793 1.04 FBgn0038957 -0.15 FBgn0035462 -1.3 FBgn0035210 2.04 FBgn0034127 1.35 FBgn0026372 2.99 FBgn0260934 -1.89 FBgn0037414 0.7 FBgn0035082 -0.96 FBgn0039774 0.64 FBgn0039008 -0.36 FBgn0013753 1.55 FBgn0051643 -1.11 FBgn0259716 1.41 FBgn0028572 -1.48 FBgn0029649 1.49 FBgn0040340 -1.34 FBgn0086901 -1.57 FBgn0035057 0.93 FBgn0033573 0.19 FBgn0037295 -2.47 FBgn0052483 0.58 FBgn0034330 -0.8 FBgn0036925 0.62 FBgn0015625 -1.06 FBgn0028369 1.33 FBgn0051525 1.22 FBgn0035915 -1.29 FBgn0038723 0.96 FBgn0037906 1.6 FBgn0014010 0.96 FBgn0004395 1.36 FBgn0053460 0.92 FBgn0032880 -1.14 FBgn0053919 -1.12 FBgn0053252 -1.5 FBgn0037974 1.92 FBgn0030877 -1.62 FBgn0026192 -1.11 FBgn0031052 1.46 FBgn0024248 1.34 FBgn0000147 1.77 FBgn0030812 0.39 FBgn0052645 -1.27 FBgn0037220 -0.34 FBgn0022960 1.43 FBgn0033365 -0.32 FBgn0036998 1.33 FBgn0038054 -0.52 FBgn0038461 -0.79 FBgn0035947 -0.6 FBgn0046258 1.31 FBgn0032222 -0.38 FBgn0028434 1.54 FBgn0024994 -1.13 FBgn0261723 -1.01 FBgn0031435 -0.97 FBgn0030876 -1.32 FBgn0010323 -1.61 FBgn0021765 0.34 FBgn0036325 1.04 FBgn0038859 0.75 FBgn0038546 1.42 FBgn0034510 0.53 FBgn0016792 -2.11 FBgn0016697 -1.5 FBgn0030851 -0.75 FBgn0031391 -1.64 FBgn0033593 -1.87 FBgn0028862 -0.3 FBgn0024977 0.41 FBgn0036217 0.52 FBgn0034704 -0.89 FBgn0250785 -0.76 FBgn0083956 -1.32 FBgn0035469 -0.74 FBgn0039889 -1.03 FBgn0030612 -1.11 FBgn0001079 -0.64 FBgn0037139 -1.35 FBgn0039319 -0.8 FBgn0003520 -1.6 FBgn0260789 -1.01 FBgn0039297 0.59 FBgn0030258 0.47 FBgn0038429 -0.27 FBgn0032972 0.42 FBgn0040322 1.92 FBgn0037855 0.77 FBgn0036362 -0.82 FBgn0039368 -0.97 FBgn0035159 0.3 FBgn0036688 0.45 FBgn0019936 5.19 FBgn0036665 2.14 FBgn0028427 1.06 FBgn0033247 0.17 FBgn0040967 -1.28 FBgn0034697 -0.9 FBgn0260437 0.36 FBgn0040079 0.91 FBgn0039312 -1.22 FBgn0026582 -0.88 FBgn0039081 1.14 FBgn0037985 0.85 FBgn0035867 0.47 FBgn0052268 -1.32 FBgn0259734 1.27 FBgn0027835 1.16 FBgn0035343 0.24 FBgn0030477 1.76 FBgn0038076 1.12 FBgn0041626 -0.08 FBgn0038531 -1.36 FBgn0015925 0.27 FBgn0037330 -0.56 FBgn0031926 0.63 FBgn0015721 0.64 FBgn0010830 0.98 FBgn0039828 1 FBgn0033817 0.49 FBgn0031639 -1.23 FBgn0029768 -1.07 FBgn0035491 0.86 FBgn0027335 1.27 FBgn0036715 0.35 FBgn0030004 -1.73 FBgn0051163 1.83 FBgn0036264 2.11 FBgn0038114 -1.58 FBgn0045487 -1.17 FBgn0033640 1.99 FBgn0003719 0.36 FBgn0261554 -2.09 FBgn0000206 -0.44 FBgn0002569 1.62 FBgn0040366 -0.75 FBgn0003943 -1.41 FBgn0046696 -1.27 FBgn0029853 -0.51 FBgn0085369 1.64 FBgn0032730 -1.56 FBgn0031925 -0.61 FBgn0259098 -0.83 FBgn0038293 -0.27 FBgn0030354 -1.63 FBgn0035150 0.33 FBgn0035431 0.61 FBgn0019940 0.94 FBgn0027296 -1.13 FBgn0034317 0.29 FBgn0035271 0.52 FBgn0036372 -0.38 FBgn0019949 0.96 FBgn0034494 0.43 FBgn0261356 1.27 FBgn0037231 1.03 FBgn0001337 1.3 FBgn0042189 -1.57 FBgn0030846 0.53 FBgn0036062 0.63 FBgn0085498 -1.37 FBgn0031853 0.55 FBgn0003375 -0.59 FBgn0038491 0.2 FBgn0033132 0.56 FBgn0034413 1.55 FBgn0051419 1.29 FBgn0052944 2.15 FBgn0051855 -1.65 FBgn0039682 -0.55 FBgn0039290 0.1 FBgn0085280 -1.47 FBgn0052677 -0.57 FBgn0036222 -0.25 FBgn0034240 -0.34 FBgn0034037 0.63 FBgn0051380 -1.06 FBgn0033502 0.34 FBgn0034786 0.94 FBgn0034133 1.18 FBgn0013672 -0.97 FBgn0033540 -0.47 FBgn0033971 0.9 FBgn0038355 -1.58 FBgn0031758 0.88 FBgn0031379 -0.71 FBgn0004028 -1.41 FBgn0030163 1.64 FBgn0037378 -1.7 FBgn0034923 -2.35 FBgn0028938 -0.53 FBgn0035102 0.98 FBgn0038983 0.94 FBgn0037580 -0.91 FBgn0034601 -1.95 FBgn0051954 0.44 FBgn0023178 -1.14 FBgn0039404 1.01 FBgn0038218 -0.88 FBgn0000360 0.68 FBgn0003149 -1.37 FBgn0037134 -0.54 FBgn0013764 -1.06 FBgn0039360 -1.04 FBgn0028987 0.76 FBgn0033448 -1.25 FBgn0036260 1.5 FBgn0054025 0.38 FBgn0035392 -1.99 FBgn0033834 0.17 FBgn0033658 0.63 FBgn0053689 0.75 FBgn0024542 -1.38 FBgn0023507 0.24 FBgn0036240 -0.7 FBgn0040355 -0.84 FBgn0050286 -0.48 FBgn0052703 -1.04 FBgn0053465 0.67 FBgn0011291 0.4 FBgn0038108 -0.53 FBgn0031971 -0.8 FBgn0030759 -0.63 FBgn0085411 0.97 FBgn0028372 -0.76 FBgn0033961 0.49 FBgn0033683 -1.41 FBgn0015571 -1.71 FBgn0046697 1.16 FBgn0019948 -1.25 FBgn0033479 -0.28 FBgn0016672 -1.2 FBgn0052249 -1.21 FBgn0034401 -1.1 FBgn0015803 0.63 FBgn0034406 0.54 FBgn0001330 0.59 FBgn0010441 0.53 FBgn0036941 -1.62 FBgn0001142 -1.26 FBgn0003169 0.38 FBgn0037232 0.34 FBgn0004419 1.38 FBgn0037808 -0.3 FBgn0052104 -0.91 FBgn0036956 -1.9 FBgn0029700 -0.92 FBgn0029665 -0.23 FBgn0034428 -1.48 FBgn0028422 0.79 FBgn0037662 0.16 FBgn0029722 1.3 FBgn0041229 1.29 FBgn0029173 -1.96 FBgn0033194 0.66 FBgn0035817 0.3 FBgn0036223 0.33 FBgn0017457 -2.5 FBgn0050195 -0.87 FBgn0030357 -1.51 FBgn0038874 1.63 FBgn0000442 -0.9 FBgn0035520 1.04 FBgn0038612 1.5 FBgn0042085 -0.77 FBgn0039862 -0.92 FBgn0039838 1.53 FBgn0050185 -1.13 FBgn0024956 0.43 FBgn0034982 0.01 FBgn0040070 0.7 FBgn0037653 -0.23 FBgn0025630 0.51 FBgn0025683 1.43 FBgn0002914 1.36 FBgn0037574 -0.58 FBgn0032856 -1.89 FBgn0001986 1.39 FBgn0034118 0.96 FBgn0020300 0.78 FBgn0038752 -0.93 FBgn0034290 -1.71 FBgn0037142 1.54 FBgn0003382 -1.3 FBgn0000287 -0.42 FBgn0032988 10.6 FBgn0039286 1.56 FBgn0032790 1 FBgn0030804 0.15 FBgn0039264 -0.6 FBgn0003502 -1.04 FBgn0032032 0.96 FBgn0038401 2.31 FBgn0016726 -0.78 FBgn0041203 0.16 FBgn0039463 -1.41 FBgn0037167 1.23 FBgn0031573 2.21 FBgn0039821 -0.64 FBgn0010407 0.69 FBgn0038741 -0.57 FBgn0036708 1.61 FBgn0010417 -0.76 FBgn0033816 -1.84 FBgn0261790 1.95 FBgn0034062 -0.59 FBgn0032754 0.2 FBgn0037569 -1.4 FBgn0031126 0.86 FBgn0031710 0.44 FBgn0035667 -0.7 FBgn0260004 1.23 FBgn0261388 0.58 FBgn0033454 -0.61 FBgn0261548 1.61 FBgn0044324 -1.45 FBgn0050008 1.06 FBgn0029864 -0.33 FBgn0031245 -1.58 FBgn0003612 0.67 FBgn0037037 1.48 FBgn0039859 -0.76 FBgn0038068 0.53 FBgn0031053 -0.57 FBgn0259190 0.77 FBgn0025115 -1.43 FBgn0036764 -0.41 FBgn0005659 -0.61 FBgn0034085 -0.58 FBgn0039782 -0.96 FBgn0037987 1.36 FBgn0051121 -2.08 FBgn0033580 -1.82 FBgn0038012 -1.62 FBgn0033222 -1.54 FBgn0034970 -1.37 FBgn0035402 -0.07 FBgn0034717 0.25 FBgn0014906 -1.47 FBgn0027655 0.95 FBgn0038204 0.43 FBgn0025382 -0.16 FBgn0034611 -0.55 FBgn0259677 -1.21 FBgn0051098 0.21 FBgn0036870 -0.5 FBgn0040512 2.05 FBgn0003861 0.61 FBgn0029801 -0.87 FBgn0027579 0.87 FBgn0039851 -1.68 FBgn0031228 -1.73 FBgn0000996 3.85 FBgn0053547 -2.09 FBgn0051710 -1.15 FBgn0032047 0.46 FBgn0050089 1.99 FBgn0032049 -0.92 FBgn0050026 0.83 FBgn0033988 0.72 FBgn0037326 0.58 FBgn0003483 0.31 FBgn0036953 -1.99 FBgn0031717 1.51 FBgn0031515 -1.46 FBgn0261274 -0.75 FBgn0031304 0.48 FBgn0025803 2.32 FBgn0000079 -1 FBgn0026438 -1.08 FBgn0004592 -1.64 FBgn0036484 -0.72 FBgn0052643 -0.76 FBgn0024733 1.32 FBgn0020513 0.55 FBgn0033460 -0.86 FBgn0038156 -1.63 FBgn0023477 -0.48 FBgn0039246 -0.88 FBgn0035529 0.33 FBgn0034182 -1.21 FBgn0035771 1.17 FBgn0034921 -1.22 FBgn0050471 -0.69 FBgn0039438 -1.63 FBgn0028433 -0.9 FBgn0000117 -1.53 FBgn0004049 1.04 FBgn0031950 -0.79 FBgn0023541 -1.43 FBgn0026385 -0.25 FBgn0016978 -2.01 FBgn0010348 1.06 FBgn0002567 -1.06 FBgn0032421 -1.31 FBgn0051679 0.26 FBgn0051548 -0.88 FBgn0038153 -1.04 FBgn0037607 0.69 FBgn0021761 -0.49 FBgn0035002 -1.06 FBgn0033205 -1.51 FBgn0033733 -0.98 FBgn0032966 -0.25 FBgn0053223 2.59 FBgn0052061 0.42 FBgn0053196 -2.23 FBgn0028694 1.13 FBgn0036235 -0.32 FBgn0038359 -1.2 FBgn0065032 2.43 FBgn0036791 -1.09 FBgn0040363 -0.37 FBgn0036877 -1 FBgn0003607 0.53 FBgn0034021 -1.09 FBgn0051477 -1.74 FBgn0030262 0.49 FBgn0032478 0.41 FBgn0031559 0.9 FBgn0053129 -1.15 FBgn0040751 0.72 FBgn0024314 0.71 FBgn0022097 -0.39 FBgn0030411 -0.9 FBgn0053475 -1.05 FBgn0037200 -0.3 FBgn0034853 1.47 FBgn0039040 -0.31 FBgn0039013 -0.84 FBgn0034647 0.52 FBgn0003732 0.4 FBgn0051464 0.78 FBgn0028543 -1.13 FBgn0010258 0.4 FBgn0030685 0.76 FBgn0039228 1.2 FBgn0030756 -1.76 FBgn0037350 -0.89 FBgn0030715 0.93 FBgn0015239 0.2 FBgn0086706 -0.44 FBgn0038685 -1.25 FBgn0004584 -1.95 FBgn0014427 -0.66 FBgn0031640 -1.42 FBgn0013767 -1.13 FBgn0031771 0.68 FBgn0036910 -0.74 FBgn0015776 0.7 FBgn0027615 -1.56 FBgn0051867 0.75 FBgn0033924 0.15 FBgn0005674 0.69 FBgn0039141 2.36 FBgn0039761 -1.16 FBgn0040651 -0.6 FBgn0033289 -0.84 FBgn0032782 0.98 FBgn0261397 1.09 FBgn0022724 -0.95 FBgn0029809 0.34 FBgn0028904 -1.64 FBgn0031664 -0.45 FBgn0052690 1.67 FBgn0035721 0.71 FBgn0038737 0.62 FBgn0027507 -0.7 FBgn0011818 0.7 FBgn0035760 -0.71 FBgn0035776 2.05 FBgn0038524 -1.51 FBgn0259728 0.83 FBgn0037183 0.21 FBgn0037212 0.55 FBgn0015129 0.9 FBgn0029995 -0.94 FBgn0027453 -0.97 FBgn0015245 -0.33 FBgn0038827 1.54 FBgn0030237 -1.08 FBgn0032749 -0.97 FBgn0019637 -1.21 FBgn0035557 0.76 FBgn0260741 -2.05 FBgn0250838 -2.68 FBgn0036436 0.5 FBgn0037464 1.35 FBgn0259876 1.68 FBgn0035375 0.96 FBgn0040260 -1.55 FBgn0037069 0.77 FBgn0028886 -1.17 FBgn0031996 0.54 FBgn0036082 -1.89 FBgn0035537 -1.49 FBgn0083965 0.49 FBgn0037962 -2.08 FBgn0002535 1.5 FBgn0039161 -0.69 FBgn0051068 -1.17 FBgn0030768 -1.53 FBgn0002021 -1.07 FBgn0259189 -0.7 FBgn0054038 0.89 FBgn0050105 -0.68 FBgn0037562 -0.69 FBgn0000015 -0.86 FBgn0001263 1.47 FBgn0003074 0.46 FBgn0036520 -0.89 FBgn0031208 2.13 FBgn0030628 -1.47 FBgn0041781 -0.61 FBgn0026384 -0.68 FBgn0250904 -0.69 FBgn0085200 0.58 FBgn0040994 -0.8 FBgn0032894 1.36 FBgn0019643 1.13 FBgn0053914 -1.19 FBgn0053516 -1.73 FBgn0031868 -0.75 FBgn0031092 0.78 FBgn0040503 0.86 FBgn0040941 -1.25 FBgn0038487 -0.68 FBgn0261631 1.87 FBgn0031367 -0.64 FBgn0029813 -1.14 FBgn0051111 2.89 FBgn0013954 -1.46 FBgn0050443 1.11 FBgn0033127 -0.86 FBgn0031253 0.07 FBgn0028468 1.31 FBgn0086368 0.45 FBgn0000357 -0.46 FBgn0035780 -0.71 FBgn0030289 -1.53 FBgn0039632 -0.89 FBgn0015524 2.15 FBgn0036537 -1.04 FBgn0040609 1.86 FBgn0035923 -0.66 FBgn0034710 0.45 FBgn0051002 -1.33 FBgn0038099 -1.4 FBgn0086359 -0.92 FBgn0003888 1.75 FBgn0030538 -1.63 FBgn0032815 -1.16 FBgn0029642 0.34 FBgn0035253 1.68 FBgn0030322 -0.38 FBgn0038868 0.65 FBgn0030625 -1.2 FBgn0031103 -1.02 FBgn0040832 1.14 FBgn0261526 1.42 FBgn0033041 0.55 FBgn0031064 -1.94 FBgn0002774 -0.59 FBgn0011787 1.12 FBgn0031062 1.66 FBgn0039927 -1.23 FBgn0035243 1.63 FBgn0036927 -0.67 FBgn0027079 0.43 FBgn0051415 -0.85 FBgn0000659 1.5 FBgn0050122 0.77 FBgn0037389 1.29 FBgn0026374 -0.5 FBgn0003741 1 FBgn0036338 0.75 FBgn0030341 1.2 FBgn0031310 0.89 FBgn0040972 0.2 FBgn0052238 -0.52 FBgn0036333 1.32 FBgn0033636 -1.88 FBgn0030313 -0.76 FBgn0037876 1.21 FBgn0035480 2.23 FBgn0033452 0.59 FBgn0050045 -1.09 FBgn0040256 -1.04 FBgn0023528 -0.15 FBgn0041239 -0.86 FBgn0027948 0.51 FBgn0039789 -0.57 FBgn0260799 -1.02 FBgn0037359 -0.08 FBgn0030544 -1.07 FBgn0022702 1.44 FBgn0001325 0.81 FBgn0032369 -1 FBgn0052633 -1.92 FBgn0035856 -0.94 FBgn0039665 -0.3 FBgn0028487 0.2 FBgn0003676 2.11 FBgn0033158 0.81 FBgn0039939 -0.09 FBgn0030399 -0.48 FBgn0014184 -1.28 FBgn0037122 0.89 FBgn0085284 3.03 FBgn0261535 -1.03 FBgn0038732 0.27 FBgn0012034 -1.13 FBgn0031145 -0.92 FBgn0041161 0.55 FBgn0003067 0.84 FBgn0002578 0.21 FBgn0016650 -1.61 FBgn0053138 1.12 FBgn0259216 -1.04 FBgn0036565 1.93 FBgn0035144 -0.2 FBgn0033438 -0.77 FBgn0250841 0.32 FBgn0038272 0.04 FBgn0030949 -1.52 FBgn0053286 1.02 FBgn0032005 0.16 FBgn0038674 -1.43 FBgn0015000 0.61 FBgn0004907 0.56 FBgn0039796 0.66 FBgn0051901 1.21 FBgn0037379 -1.06 FBgn0039204 0.38 FBgn0032515 -1.57 FBgn0029079 1.51 FBgn0034397 0.61 FBgn0003321 1.45 FBgn0027601 1.28 FBgn0003255 -0.88 FBgn0036552 -0.34 FBgn0032290 -0.96 FBgn0261854 -0.51 FBgn0030940 4.58 FBgn0030774 -1.63 FBgn0037500 0.49 FBgn0261800 0.54 FBgn0003638 0.44 FBgn0032094 -0.11 FBgn0259896 0.94 FBgn0038188 0.48 FBgn0034530 -1.21 FBgn0051235 -1.46 FBgn0035254 0.76 FBgn0032772 0.68 FBgn0038630 0.5 FBgn0011509 0.23 FBgn0038386 0.39 FBgn0035741 1.31 FBgn0030217 -0.73 FBgn0052811 0.95 FBgn0004872 0.31 FBgn0036489 1.05 FBgn0260747 -0.41 FBgn0035696 -0.64 FBgn0032260 1.74 FBgn0037644 -0.19 FBgn0004054 -0.83 FBgn0040096 -1.96 FBgn0085812 -0.73 FBgn0025726 -1.36 FBgn0027109 0.96 FBgn0032039 0.84 FBgn0085489 -1.79 FBgn0039596 1.2 FBgn0038582 -1.28 FBgn0032637 0.73 FBgn0041245 -1.71 FBgn0027600 -0.94 FBgn0034462 -0.87 FBgn0033902 3.08 FBgn0042134 0.66 FBgn0040718 -0.66 FBgn0010660 0.5 FBgn0020385 -0.5 FBgn0014163 0.63 FBgn0038416 -1.14 FBgn0011566 -1.45 FBgn0034262 -0.88 FBgn0031319 0.32 FBgn0030518 1.83 FBgn0000592 0.17 FBgn0050085 0.66 FBgn0085476 -0.41 FBgn0033323 1.1 FBgn0031048 -1.45 FBgn0039811 1.16 FBgn0035208 1.22 FBgn0053213 1.33 FBgn0019828 0.98 FBgn0260857 1.18 FBgn0034154 0.52 FBgn0250786 -0.79 FBgn0024183 -1.51 FBgn0037709 -1.01 FBgn0033688 3.17 FBgn0025637 -0.61 FBgn0052371 0.54 FBgn0050403 1.75 FBgn0038617 -1.21 FBgn0035338 0.95 FBgn0000928 0.59 FBgn0038845 1.51 FBgn0050093 0.57 FBgn0038394 0.35 FBgn0036859 -0.73 FBgn0036302 0.72 FBgn0046879 2.39 FBgn0037594 -1.39 FBgn0038701 -1.07 FBgn0032867 -1.12 FBgn0030390 -1.18 FBgn0037370 -2.02 FBgn0051550 -1.31 FBgn0052772 -1.16 FBgn0031756 -0.51 FBgn0050392 0.38 FBgn0038350 -0.9 FBgn0035009 0.75 FBgn0037702 -1.7 FBgn0036161 0.28 FBgn0085321 -0.95 FBgn0015615 -0.45 FBgn0010548 -0.5 FBgn0010497 -1.33 FBgn0031897 -1.92 FBgn0002632 0.58 FBgn0034177 -0.53 FBgn0038224 -1.18 FBgn0038133 -0.73 FBgn0085350 -1.36 FBgn0028622 -2.14 FBgn0036131 2.01 FBgn0030511 0.82 FBgn0030562 -1.21 FBgn0053182 1.81 FBgn0030980 -0.45 FBgn0032390 1.72 FBgn0010213 1.06 FBgn0085196 0.53 FBgn0033236 -1.1 FBgn0051391 1.7 FBgn0031270 -1.69 FBgn0035830 -0.78 FBgn0034251 1.38 FBgn0037796 1.21 FBgn0031592 -2.07 FBgn0026393 -1.07 FBgn0032265 -0.09 FBgn0037059 -1.23 FBgn0039902 -1.27 FBgn0037443 0.44 FBgn0015283 -0.94 FBgn0035409 0.32 FBgn0026737 0.57 FBgn0035902 -0.82 FBgn0034515 -0.31 FBgn0033032 0.26 FBgn0034299 -0.6 FBgn0031275 -1 FBgn0083981 0.34 FBgn0035827 -0.58 FBgn0038756 -1.43 FBgn0038407 -1.39 FBgn0085328 0.97 FBgn0015323 0.18 FBgn0023090 -0.56 FBgn0010762 0.13 FBgn0001961 0.15 FBgn0029931 -0.51 FBgn0034335 -0.38 FBgn0085271 0.77 FBgn0259170 -1.03 FBgn0036838 -2 FBgn0031564 1.28 FBgn0033342 1.02 FBgn0051875 -1.66 FBgn0035518 1.04 FBgn0029532 -0.95 FBgn0014391 1.36 FBgn0034140 -1.22 FBgn0034865 -0.17 FBgn0032620 0.92 FBgn0051199 0.52 FBgn0037014 0.3 FBgn0035513 0.57 FBgn0027539 1.37 FBgn0029750 -0.45 FBgn0004391 1.09 FBgn0015789 0.91 FBgn0020307 0.33 FBgn0037843 -0.43 FBgn0032109 -0.97 FBgn0040346 -1.41 FBgn0259163 -0.51 FBgn0035793 1.59 FBgn0002643 1.15 FBgn0032505 -1.13 FBgn0028380 -0.08 FBgn0031505 -0.82 FBgn0034907 1.17 FBgn0039303 2.35 FBgn0001291 -0.74 FBgn0039659 -1.29 FBgn0261279 -1.04 FBgn0040308 0.46 FBgn0032629 0.63 FBgn0011761 -0.77 FBgn0030370 0.91 FBgn0052016 1.14 FBgn0025692 0.69 FBgn0038974 0.82 FBgn0052988 -1.64 FBgn0260855 -0.77 FBgn0030506 -0.3 FBgn0035166 -0.98 FBgn0032360 -1.52 FBgn0030406 1.8 FBgn0041621 -0.95 FBgn0036359 0.53 FBgn0041102 -1.06 FBgn0033885 0.69 FBgn0026143 1.34 FBgn0051087 -0.59 FBgn0028695 -1.44 FBgn0037679 -1.33 FBgn0034911 1.51 FBgn0033949 0.55 FBgn0037050 0.47 FBgn0261086 -0.84 FBgn0261871 -1.01 FBgn0029929 1.3 FBgn0036756 -0.4 FBgn0039272 0.4 FBgn0029003 -0.58 FBgn0038655 -1.06 FBgn0037307 -1.85 FBgn0003141 7.93 FBgn0012344 0.55 FBgn0033109 -0.84 FBgn0014002 1.55 FBgn0011774 -0.71 FBgn0053202 -1.31 FBgn0085339 -0.11 FBgn0038610 0.54 FBgn0037435 1.69 FBgn0029870 -1.03 FBgn0036168 -1.25 FBgn0051638 0.23 FBgn0038172 0.47 FBgn0011555 -0.34 FBgn0051159 -1.91 FBgn0039023 0.81 FBgn0038509 0.59 FBgn0038343 -0.22 FBgn0001992 0.22 FBgn0003028 -1.64 FBgn0033859 -0.7 FBgn0052685 1.03 FBgn0000449 -0.69 FBgn0040356 0.82 FBgn0029503 -0.52 FBgn0036128 -0.69 FBgn0029907 -0.08 FBgn0034166 -1.01 FBgn0033054 0.73 FBgn0085376 2.01 FBgn0031376 -1.29 FBgn0033428 -0.48 FBgn0033916 -0.9 FBgn0037744 0.62 FBgn0004644 -0.7 FBgn0038880 0.95 FBgn0032449 -1 FBgn0033069 0.19 FBgn0030925 3.3 FBgn0035411 -0.48 FBgn0038053 -0.25 FBgn0033958 -0.95 FBgn0051446 0.84 FBgn0030067 0.98 FBgn0020655 -0.63 FBgn0064766 0.79 FBgn0039089 -1.61 FBgn0261292 0.84 FBgn0050020 1.13 FBgn0036177 -0.46 FBgn0250849 -1.32 FBgn0028381 0.58 FBgn0038506 -0.5 FBgn0085225 -1.79 FBgn0014009 0.27 FBgn0031085 -1.05 FBgn0036289 2.11 FBgn0028996 -0.85 FBgn0010339 -0.82 FBgn0261592 3.33 FBgn0260754 -0.63 FBgn0003448 1.27 FBgn0036774 0.31 FBgn0086694 -2.45 FBgn0004921 0.87 FBgn0040107 13.58 FBgn0026314 0.51 FBgn0050342 -1.16 FBgn0024941 -0.59 FBgn0032083 -0.44 FBgn0040387 1.28 FBgn0037898 -1.34 FBgn0039233 2.25 FBgn0001316 -1.19 FBgn0037882 0.66 FBgn0033942 -0.89 FBgn0053207 -1.69 FBgn0022359 0.52 FBgn0039602 0.26 FBgn0250867 0.73 FBgn0034473 0.49 FBgn0037170 1.23 FBgn0083975 -1.49 FBgn0031534 -0.56 FBgn0058045 1.47 FBgn0031004 -0.25 FBgn0031260 -0.34 FBgn0038029 -0.71 FBgn0035194 -0.94 FBgn0040398 1.23 FBgn0026199 -0.46 FBgn0039194 -0.49 FBgn0030995 -0.32 FBgn0037921 1.05 FBgn0031423 -1.04 FBgn0032800 2.64 FBgn0037880 -0.44 FBgn0026089 -1.03 FBgn0010398 -2.18 FBgn0017550 -0.28 FBgn0035981 -1.22 FBgn0025885 1.19 FBgn0037686 -0.98 FBgn0031331 0.33 FBgn0034246 -1.04 FBgn0085256 -1.52 FBgn0050000 0.34 FBgn0028895 -2.07 FBgn0034047 -1.68 FBgn0039431 0.75 FBgn0051424 -1.98 FBgn0087039 0.61 FBgn0053093 -0.7 FBgn0033644 1.92 FBgn0053290 1.2 FBgn0004781 -1.03 FBgn0052855 1.99 FBgn0031678 0.39 FBgn0028418 -0.97 FBgn0038260 -1.05 FBgn0260643 0.86 FBgn0031012 0.8 FBgn0046704 0.61 FBgn0040931 -1.16 FBgn0033590 -1.6 FBgn0000560 -0.49 FBgn0052137 -0.63 FBgn0032650 1.13 FBgn0023523 0.9 FBgn0030016 0.56 FBgn0004648 1.57 FBgn0037325 1.21 FBgn0051189 -1.04 FBgn0260936 -0.35 FBgn0035279 0.67 FBgn0051324 0.9 FBgn0038069 0.33 FBgn0259986 -1.33 FBgn0036271 -0.51 FBgn0034997 -0.64 FBgn0002930 -0.53 FBgn0033367 0.84 FBgn0031734 0.71 FBgn0032002 -0.97 FBgn0039874 -0.96 FBgn0037092 -0.28 FBgn0053988 1.5 FBgn0032728 1.55 FBgn0004240 -0.26 FBgn0040321 0.6 FBgn0050499 -1.46 FBgn0023083 1.02 FBgn0034255 0.96 FBgn0037240 -0.61 FBgn0061435 0.85 FBgn0037365 -1.33 FBgn0030429 -0.53 FBgn0015519 0.68 FBgn0010043 -1.75 FBgn0034195 -0.78 FBgn0052333 -1.66 FBgn0051852 -1.41 FBgn0031393 -0.48 FBgn0039301 0.82 FBgn0039530 -1.46 FBgn0052603 -1.71 FBgn0034351 0.83 FBgn0036107 -1.42 FBgn0250814 -1.04 FBgn0034521 -1.82 FBgn0050289 -0.11 FBgn0032492 -0.92 FBgn0030614 -0.78 FBgn0034367 -0.63 FBgn0020887 0.94 FBgn0036697 9.91031984367451e-03 FBgn0034356 -0.77 FBgn0036860 -0.26 FBgn0003527 0.8 FBgn0052700 -0.89 FBgn0038294 0.59 FBgn0036446 0.07 FBgn0033677 -0.57 FBgn0028667 0.43 FBgn0028868 0.5 FBgn0037620 1 FBgn0025709 -1.13 FBgn0038291 0.51 FBgn0032720 -0.37 FBgn0029848 -0.47 FBgn0016693 0.86 FBgn0052380 1.59 FBgn0035173 0.34 FBgn0038683 0.46 FBgn0020278 -0.69 FBgn0260430 -0.62 FBgn0038113 -0.62 FBgn0039757 5.08 FBgn0010296 -0.41 FBgn0066292 -0.99 FBgn0039827 0.5 FBgn0031465 -0.13 FBgn0053082 0.93 FBgn0051248 0.97 FBgn0034829 0.58 FBgn0035085 2.21 FBgn0037292 1.57 FBgn0030807 1.33 FBgn0036577 0.7 FBgn0261049 -0.92 FBgn0030874 -0.91 FBgn0050376 0.92 FBgn0039128 -0.88 FBgn0011603 1.54 FBgn0052055 0.55 FBgn0031910 -0.09 FBgn0032221 -2.14 FBgn0030224 -1.35 FBgn0036360 0.4 FBgn0035272 -0.5 FBgn0054046 0.55 FBgn0051080 -1.38 FBgn0028856 0.87 FBgn0030634 0.23 FBgn0026718 0.68 FBgn0034985 0.18 FBgn0260477 -0.7 FBgn0027779 -1.11 FBgn0039751 1.26 FBgn0028848 1.26 FBgn0031378 0.86 FBgn0001491 0.46 FBgn0033970 0.6 FBgn0040063 -1.42 FBgn0052442 1.29 FBgn0020521 1.19 FBgn0260010 -1.06 FBgn0038978 1.43 FBgn0027095 -0.8 FBgn0030657 -0.87 FBgn0052635 1.2 FBgn0002939 -1.51 FBgn0030438 -0.58 FBgn0031489 -2 FBgn0001224 -0.15 FBgn0261068 1.77 FBgn0260971 0.45 FBgn0036220 -0.3 FBgn0033446 -0.95 FBgn0038645 -0.61 FBgn0030061 -0.85 FBgn0033897 -1.07 FBgn0037087 0.23 FBgn0026309 -1.99 FBgn0037276 -1.07 FBgn0261268 1.97 FBgn0001624 -1.24 FBgn0015872 -1.18 FBgn0031345 0.66 FBgn0037491 0.18 FBgn0261629 0.98 FBgn0031627 -1.04 FBgn0033551 -1.46 FBgn0030905 -0.51 FBgn0000454 -1.29 FBgn0031657 -0.96 FBgn0002901 0.17 FBgn0005638 -1.41 FBgn0032250 -1.87 FBgn0013301 -0.39 FBgn0037016 -1.09 FBgn0051769 -1.53 FBgn0023509 1 FBgn0050161 -0.46 FBgn0037137 -0.26 FBgn0025186 1.33 FBgn0037236 -0.55 FBgn0036601 -0.49 FBgn0035948 -0.96 FBgn0032014 -0.81 FBgn0037541 1.08 FBgn0029822 2.05 FBgn0010226 -1.84 FBgn0063493 1.64 FBgn0036373 -0.47 FBgn0034963 0.24 FBgn0047038 -1.06 FBgn0052432 1.93 FBgn0053462 0.25 FBgn0039698 -0.36 FBgn0002862 -0.95 FBgn0035470 -0.49 FBgn0010433 0.96 FBgn0034880 -1.92 FBgn0000535 0.86 FBgn0015583 0.79 FBgn0260460 -0.88 FBgn0037299 -1.52 FBgn0051784 -0.61 FBgn0038640 -2.03 FBgn0051050 0.94 FBgn0038866 -1.28 FBgn0004913 0.71 FBgn0037710 -0.67 FBgn0038769 -0.38 FBgn0033867 1.4 FBgn0010750 1.58 FBgn0027562 -1.14 FBgn0260655 0.27 FBgn0083962 1.05 FBgn0024294 0.82 FBgn0003545 -0.23 FBgn0033426 1.44 FBgn0030280 0.35 FBgn0038853 -1.03 FBgn0039609 -0.42 FBgn0036502 -0.61 FBgn0034598 -1.25 FBgn0036229 0.41 FBgn0005427 -0.83 FBgn0069969 0.29 FBgn0024997 -0.43 FBgn0025334 1.44 FBgn0035959 0.97 FBgn0037940 0.5 FBgn0035468 0.85 FBgn0036785 1.42 FBgn0040232 0.88 FBgn0001994 3.79 FBgn0021875 -0.74 FBgn0020248 1.3 FBgn0037339 -2.01 FBgn0035724 1.14 FBgn0034058 -1.05 FBgn0036075 -0.71 FBgn0036367 -1.18 FBgn0003091 -1.62 FBgn0034230 0.47 FBgn0260763 0.75 FBgn0028538 0.64 FBgn0034497 -0.71 FBgn0052196 -1.76 FBgn0038951 0.7 FBgn0085305 0.33 FBgn0000370 -0.48 FBgn0031320 -1.23 FBgn0039691 -0.7 FBgn0085444 -2.44 FBgn0041337 -0.69 FBgn0000377 2.21 FBgn0029117 1.84 FBgn0030243 0.66 FBgn0028894 -0.6 FBgn0052832 -0.74 FBgn0036723 -1.27 FBgn0040985 0.33 FBgn0085318 -1.77 FBgn0032216 0.4 FBgn0039635 -1.02 FBgn0039518 1.17 FBgn0037958 0.62 FBgn0001104 -0.25 FBgn0036096 0.65 FBgn0035073 -1.2 FBgn0033259 -0.9 FBgn0015034 1.24 FBgn0016120 -1.15 FBgn0001253 -1.21 FBgn0027359 -0.85 FBgn0039167 -0.66 FBgn0032168 -0.41 FBgn0051150 -1.32 FBgn0026872 -1.04 FBgn0031033 -0.37 FBgn0020642 -1.26 FBgn0032176 0.37 FBgn0261108 -2.15 FBgn0014031 -0.62 FBgn0052547 1.25 FBgn0004573 -0.58 FBgn0035743 0.28 FBgn0028950 1.3 FBgn0003373 -0.91 FBgn0013718 0.61 FBgn0039465 0.09 FBgn0025592 -1.35 FBgn0034728 -0.24 FBgn0003089 -1 FBgn0261609 -0.66 FBgn0027279 -1.5 FBgn0050091 0.75 FBgn0037756 -0.39 FBgn0036550 -1.05 FBgn0024432 1.03 FBgn0034898 -1.12 FBgn0260439 1.03 FBgn0032946 -0.65 FBgn0031633 0.09 FBgn0023513 -1.42 FBgn0024249 -0.73 FBgn0038135 -1.83 FBgn0035631 -0.77 FBgn0054028 -1.32 FBgn0260959 1.23 FBgn0027569 0.41 FBgn0015793 0.52 FBgn0031170 -0.57 FBgn0051038 1.83 FBgn0026879 -1.49 FBgn0003721 -0.33 FBgn0034411 0.7 FBgn0025456 0.8 FBgn0031920 0.58 FBgn0003319 -0.63 FBgn0051294 1.57 FBgn0052220 -1.4 FBgn0033121 1.09 FBgn0034694 -1.64 FBgn0051093 0.47 FBgn0038909 0.92 FBgn0040273 0.72 FBgn0038165 0.42 FBgn0037616 0.82 FBgn0040384 -0.67 FBgn0036711 -0.66 FBgn0031875 -0.72 FBgn0065035 -0.53 FBgn0259822 1.67 FBgn0039258 -0.39 FBgn0260965 -1.42 FBgn0025739 -0.88 FBgn0085438 0.91 FBgn0038789 -0.39 FBgn0058439 0.29 FBgn0032339 -1.71 FBgn0261287 -0.83 FBgn0037918 -2.02 FBgn0026141 -0.83 FBgn0040345 -0.86 FBgn0050416 -1.23 FBgn0031935 -1.6 FBgn0036585 1.95 FBgn0032385 -1.18 FBgn0032703 -1.88 FBgn0050325 0.3 FBgn0036626 -1.05 FBgn0027580 -0.87 FBgn0032680 0.91 FBgn0032809 -2 FBgn0037518 1.59 FBgn0052486 -0.93 FBgn0037222 -0.72 FBgn0086915 1.81 FBgn0085447 -1.49 FBgn0031306 0.7 FBgn0035676 -0.74 FBgn0027951 0.27 FBgn0051089 0.88 FBgn0033850 -0.26 FBgn0029959 0.64 FBgn0034789 1.51 FBgn0002899 0.67 FBgn0034012 -0.61 FBgn0022699 -0.36 FBgn0034460 0.67 FBgn0040940 -1.59 FBgn0040373 -0.45 FBgn0030114 -1.07 FBgn0004364 -1.16 FBgn0037436 -0.86 FBgn0039688 -0.51 FBgn0033729 0.85 FBgn0030982 -1.09 FBgn0023550 -0.97 FBgn0034219 -1.46 FBgn0031768 1.56 FBgn0035348 3.87 FBgn0035437 0.98 FBgn0031287 -1.52 FBgn0036035 3 FBgn0031952 3.4 FBgn0037852 0.33 FBgn0029952 -0.65 FBgn0037297 -2.09 FBgn0038046 -0.26 FBgn0037409 -1.04 FBgn0026015 -0.76 FBgn0038147 -0.85 FBgn0036009 -0.14 FBgn0035032 0.82 FBgn0037696 -1.91 FBgn0033757 -0.21 FBgn0033351 -1.09 FBgn0033465 0.64 FBgn0026479 -0.36 FBgn0037534 0.86 FBgn0037023 0.68 FBgn0025644 1.57 FBgn0032373 0.65 FBgn0039625 -1.33 FBgn0041712 -1.11 FBgn0033177 0.28 FBgn0003464 1.06 FBgn0014037 -0.22 FBgn0036738 -1.13 FBgn0035445 -0.2 FBgn0022288 0.59 FBgn0085233 0.8 FBgn0030529 -0.86 FBgn0051807 1.29 FBgn0030298 0.27 FBgn0002781 -1.44 FBgn0030361 -0.82 FBgn0085450 -1.32 FBgn0039232 1.14 FBgn0037736 1.04 FBgn0033377 0.76 FBgn0026576 -1.64 FBgn0035475 -1.51 FBgn0031739 -0.72 FBgn0043842 1.31 FBgn0051040 2.01 FBgn0053554 -3.06 FBgn0002645 -0.91 FBgn0024365 0.78 FBgn0000109 -1.02 FBgn0261671 1.27 FBgn0038071 -0.54 FBgn0037815 -0.67 FBgn0038526 -0.3 FBgn0052076 -0.58 FBgn0025832 -1.45 FBgn0051773 -2.15 FBgn0031388 -0.79 FBgn0031494 -1.19 FBgn0001077 -1.47 FBgn0044030 1.55 FBgn0040365 0.97 FBgn0036211 -0.32 FBgn0039226 1.93 FBgn0004436 -2.78 FBgn0032834 -1.47 FBgn0033845 -1.01 FBgn0038084 0.61 FBgn0042199 -0.09 FBgn0037556 -1.91 FBgn0031575 0.78 FBgn0029958 0.78 FBgn0261393 -1.61 FBgn0036291 1.05 FBgn0004957 0.65 FBgn0032434 -0.68 FBgn0035601 0.22 FBgn0040723 1.59 FBgn0014863 1.86 FBgn0029861 -1.64 FBgn0013756 -0.57 FBgn0032997 0.7 FBgn0003218 -0.07 FBgn0011672 0.93 FBgn0033358 -0.93 FBgn0014469 -0.68 FBgn0028554 -0.72 FBgn0037531 1.33 FBgn0029932 0.29 FBgn0033234 0.34 FBgn0016123 0.85 FBgn0259697 -1.03 FBgn0083141 -1.2 FBgn0069354 -1.67 FBgn0034506 -0.6 FBgn0023170 4.28 FBgn0039591 1.5 FBgn0030177 1.06 FBgn0086676 -0.72 FBgn0004401 -1.34 FBgn0259832 1.04 FBgn0029588 -1.16 FBgn0039528 -1.08 FBgn0250821 -0.89 FBgn0034948 -2.94 FBgn0033405 -0.83 FBgn0032821 -1.6 FBgn0051229 1.33 FBgn0037185 -0.87 FBgn0016081 -1.11 FBgn0029660 1.12 FBgn0020269 -1.03 FBgn0040736 -0.83 FBgn0028360 -0.29 FBgn0015399 0.47 FBgn0010240 0.83 FBgn0027080 0.44 FBgn0030314 -1.37 FBgn0053143 -0.93 FBgn0028962 -1.33 FBgn0039118 -1.46 FBgn0030245 -0.69 FBgn0038566 -0.79 FBgn0035904 -0.71 FBgn0036191 0.92 FBgn0033783 0.93 FBgn0011589 -1.32 FBgn0038694 -0.64 FBgn0085355 1.14 FBgn0036058 0.45 FBgn0039051 -1.81 FBgn0085455 0.65 FBgn0051956 -1.22 FBgn0050272 -0.23 FBgn0038774 -1.22 FBgn0028838 2.02 FBgn0031726 0.71 FBgn0011638 -0.57 FBgn0029948 -0.34 FBgn0040735 0.45 FBgn0030970 -0.89 FBgn0030159 1.24 FBgn0029137 -1.61 FBgn0033188 -1.84 FBgn0032204 1.09 FBgn0025702 1.46 FBgn0259818 0.86 FBgn0036278 -0.62 FBgn0030790 -1.48 FBgn0261618 -1.35 FBgn0011570 0.37 FBgn0035263 0.71 FBgn0030932 0.92 FBgn0026189 -1.97 FBgn0038009 -0.51 FBgn0039584 -0.94 FBgn0027556 -0.94 FBgn0035245 1.81 FBgn0031817 -1.19 FBgn0035068 0.78 FBgn0032078 -0.45 FBgn0051806 1.44 FBgn0030675 -0.23 FBgn0031791 -0.4 FBgn0030208 -1.41 FBgn0040607 -0.36 FBgn0003510 4.3 FBgn0031044 -1.55 FBgn0041182 0.67 FBgn0038125 -0.35 FBgn0035586 -0.79 FBgn0053506 0.49 FBgn0034458 1.3 FBgn0050423 -0.93 FBgn0035572 -1.79 FBgn0034490 -1.48 FBgn0034783 0.31 FBgn0040334 -1.72 FBgn0040524 0.96 FBgn0039702 -0.54 FBgn0030881 -0.81 FBgn0261552 -3.4 FBgn0052675 0.68 FBgn0015039 -1.65 FBgn0259240 -0.96 FBgn0027780 1.91 FBgn0035131 -0.41 FBgn0036769 -0.31 FBgn0038838 0.94 FBgn0041087 -1.19 FBgn0023407 -1.11 FBgn0000520 1.52 FBgn0037290 1.68 FBgn0026432 0.99 FBgn0032648 0.54 FBgn0030334 -0.9 FBgn0037123 0.41 FBgn0036687 -0.99 FBgn0015359 -1.06 FBgn0037153 -1.85 FBgn0036242 -1.12 FBgn0033615 -2 FBgn0036468 3.86 FBgn0039079 -0.24 FBgn0039576 -0.98 FBgn0030723 0.42 FBgn0032876 -1.82 FBgn0000028 1.5 FBgn0003411 -0.82 FBgn0034588 1.11 FBgn0034820 -0.76 FBgn0036643 -1.57 FBgn0036985 -0.4 FBgn0036593 0.91 FBgn0033775 0.63 FBgn0051814 0.75 FBgn0039503 -0.35 FBgn0031745 0.69 FBgn0027497 -1.31 FBgn0030073 -0.88 FBgn0027889 1.18 FBgn0034377 -1.39 FBgn0051712 -0.95 FBgn0024238 -1.6 FBgn0053526 -1.22 FBgn0030968 -1.16 FBgn0036895 0.48 FBgn0032614 -1.52 FBgn0028420 -0.74 FBgn0051950 1.36 FBgn0030174 1.48 FBgn0032096 -0.55 FBgn0030320 -0.95 FBgn0030598 -0.93 FBgn0037717 -0.37 FBgn0034315 1.28 FBgn0039616 1.51 FBgn0050374 -1.07 FBgn0039864 0.16 FBgn0043457 0.42 FBgn0052109 -1.01 FBgn0032163 0.34 FBgn0035121 -0.91 FBgn0000279 -1.18 FBgn0039205 -1.37 FBgn0032487 -0.65 FBgn0037070 0.22 FBgn0033096 0.82 FBgn0054012 1.15 FBgn0032414 -0.82 FBgn0031022 -1.17 FBgn0026616 -1.85 FBgn0030955 -0.87 FBgn0029833 0.18 FBgn0259223 -1.62 FBgn0259742 1.44 FBgn0030329 -1.17 FBgn0038474 -0.8 FBgn0053198 -0.53 FBgn0035044 -0.36 FBgn0037487 1.32 FBgn0010114 -1.45 FBgn0031055 -1 FBgn0020381 -0.19 FBgn0038819 -0.54 FBgn0039943 1.26 FBgn0030456 0.64 FBgn0032350 0.5 FBgn0038366 -0.19 FBgn0034885 -0.78 FBgn0032132 1.32 FBgn0085367 -1.03 FBgn0039033 -0.58 FBgn0085462 -0.43 FBgn0032195 -1.02 FBgn0010424 0.56 FBgn0260793 0.89 FBgn0039093 -2.19 FBgn0033762 0.93 FBgn0030304 -0.6 FBgn0004132 1.29 FBgn0035866 -0.55 FBgn0004511 -0.95 FBgn0043362 0.16 FBgn0037140 1.1 FBgn0051259 -0.46 FBgn0032683 0.95 FBgn0010602 0.33 FBgn0040899 -0.52 FBgn0010470 0.63 FBgn0085295 -0.77 FBgn0028563 -0.57 FBgn0053317 1.17 FBgn0033744 1.55 FBgn0001308 0.56 FBgn0034308 -0.6 FBgn0030376 -1.31 FBgn0003941 0.98 FBgn0033631 -0.97 FBgn0032598 1.46 FBgn0015321 -1.46 FBgn0053002 -1.48 FBgn0030080 -0.86 FBgn0025624 1.6 FBgn0028901 0.65 FBgn0028944 -0.4 FBgn0031944 -1.73 FBgn0039475 -0.64 FBgn0261563 -0.35 FBgn0036991 0.45 FBgn0036089 -1.96 FBgn0034800 0.73 FBgn0033344 1.43 FBgn0083943 -0.44 FBgn0037412 -0.6 FBgn0040397 1.46 FBgn0034654 -3.54 FBgn0037955 0.57 FBgn0028853 -1.13 FBgn0085480 0.3 FBgn0051368 0.62 FBgn0052102 -1.13 FBgn0037901 1.04 FBgn0037039 1.42 FBgn0033880 -1.45 FBgn0035807 0.17 FBgn0029746 -0.72 FBgn0035039 0.6 FBgn0050054 -1.02 FBgn0030440 -0.76 FBgn0015591 0.42 FBgn0038894 0.22 FBgn0028646 -1.58 FBgn0014368 0.92 FBgn0259233 -0.72 FBgn0000406 0.95 FBgn0032282 -0.33 FBgn0085491 -0.9 FBgn0028497 -0.58 FBgn0029713 0.41 FBgn0036614 -0.98 FBgn0015829 0.3 FBgn0032139 -1.3 FBgn0261461 -1.27 FBgn0038717 1.08 FBgn0039370 -0.74 FBgn0020371 0.83 FBgn0038923 -1.42 FBgn0050334 -0.83 FBgn0042205 0.51 FBgn0005612 -1.22 FBgn0031182 -0.73 FBgn0004117 -0.83 FBgn0003117 0.26 FBgn0028570 0.57 FBgn0052176 -1.33 FBgn0029733 -1.75 FBgn0032117 -1.86 FBgn0050269 -1.66 FBgn0039004 0.86 FBgn0033770 1.29 FBgn0015379 -0.42 FBgn0031194 -0.53 FBgn0020255 4.27 FBgn0003392 2.89 FBgn0043791 -1.36 FBgn0032150 -1.71 FBgn0037065 -1.48 FBgn0035800 -0.63 FBgn0037908 0.4 FBgn0029795 -1.12 FBgn0011822 -1.33 FBgn0029976 0.75 FBgn0004590 -0.76 FBgn0040688 -0.62 FBgn0035941 0.69 FBgn0000221 1.72 FBgn0051300 -0.39 FBgn0040009 -1.51 FBgn0039055 1.12 FBgn0250791 0.39 FBgn0037751 0.51 FBgn0036808 -0.32 FBgn0032666 0.61 FBgn0053229 -0.57 FBgn0034132 -0.75 FBgn0002441 -0.53 FBgn0053127 -1.75 FBgn0036833 -1.75 FBgn0035336 -0.99 FBgn0034156 -0.69 FBgn0041111 1.4 FBgn0250906 0.88 FBgn0034736 -1.3 FBgn0023180 0.37 FBgn0043550 -1.07 FBgn0259172 1.35 FBgn0000099 0.9 FBgn0053120 -0.89 FBgn0039501 1.4 FBgn0036522 0.93 FBgn0037609 0.97 FBgn0037309 0.86 FBgn0035000 -0.99 FBgn0028527 -1.15 FBgn0026597 2.27 FBgn0040237 0.4 FBgn0001083 -0.73 FBgn0024986 -0.49 FBgn0041191 0.84 FBgn0035430 -0.72 FBgn0029538 0.72 FBgn0037448 -1.19 FBgn0039482 -0.99 FBgn0032788 1.21 FBgn0034249 1.45 FBgn0027073 -0.71 FBgn0032408 1.82 FBgn0003162 0.21 FBgn0052651 -0.91 FBgn0005636 -1.61 FBgn0261258 -0.4 FBgn0250836 -0.42 FBgn0086708 -0.46 FBgn0041707 2.37 FBgn0035515 -0.78 FBgn0031344 1.27 FBgn0038861 -0.92 FBgn0037317 -0.96 FBgn0011288 0.92 FBgn0051291 1.14 FBgn0027356 1.03 FBgn0053225 1.01 FBgn0000346 1.52 FBgn0033287 -0.32 FBgn0036567 1.31 FBgn0052141 -0.47 FBgn0051225 -1.07 FBgn0038796 0.82 FBgn0039068 1.03 FBgn0039424 1.55 FBgn0261792 1.34 FBgn0015230 -1.1 FBgn0050296 -1.32 FBgn0038690 -1.03 FBgn0037827 0.48 FBgn0051663 -1.88 FBgn0038418 0.51 FBgn0053181 -1.92 FBgn0039218 1.73 FBgn0033587 -1.76 FBgn0035734 -0.28 FBgn0250876 0.61 FBgn0040817 -0.94 FBgn0040010 1.97 FBgn0032051 -1.09 FBgn0036004 -0.46 FBgn0261399 -1.47 FBgn0010356 0.35 FBgn0037197 -1.06 FBgn0038327 1.26 FBgn0036143 -1.1 FBgn0034483 -1.75 FBgn0037503 1.45 FBgn0029694 -0.17 FBgn0024992 -0.21 FBgn0027537 1.24 FBgn0030575 -1.55 FBgn0037205 0.76 FBgn0032896 1.22 FBgn0040080 -1.2 FBgn0030707 1.78 FBgn0037960 1.54 FBgn0031801 -0.86 FBgn0030369 0.91 FBgn0026259 -0.63 FBgn0001314 -2.13 FBgn0035026 0.51 FBgn0051344 0.25 FBgn0037462 -0.86 FBgn0022023 0.96 FBgn0032631 0.87 FBgn0029529 -0.92 FBgn0002283 1.9 FBgn0032292 -0.21 FBgn0028577 -2.21 FBgn0037610 0.88 FBgn0039045 1.05 FBgn0085267 -0.41 FBgn0010388 -1.19 FBgn0260795 -0.74 FBgn0260938 1.06 FBgn0086674 -1.68 FBgn0030474 1.21 FBgn0036639 -1.45 FBgn0020546 -1.8 FBgn0038070 0.02 FBgn0024811 0.63 FBgn0033483 -0.74 FBgn0043010 -1.1 FBgn0004513 -0.85 FBgn0031255 0.41 FBgn0037242 1.34 FBgn0030536 0.49 FBgn0029512 0.57 FBgn0036605 -0.55 FBgn0037478 0.36 FBgn0003076 0.43 FBgn0035251 -1.5 FBgn0033523 -0.34 FBgn0086778 2.33 FBgn0051413 -0.87 FBgn0050487 1.7 FBgn0038912 -0.47 FBgn0026148 0.45 FBgn0036560 -1.56 FBgn0085243 -0.24 FBgn0002838 0.55 FBgn0028737 1.31 FBgn0034546 -1.25 FBgn0250789 0.94 FBgn0023214 -1.05 FBgn0035321 0.33 FBgn0031655 0.94 FBgn0035569 0.16 FBgn0030761 -1.07 FBgn0053768 2.67 FBgn0037127 -0.67 FBgn0051735 1.1 FBgn0029778 -0.26 FBgn0034390 -0.19 FBgn0259482 -1.35 FBgn0043012 0.47 FBgn0016700 1.15 FBgn0031155 -0.51 FBgn0004370 -1.03 FBgn0039914 0.3 FBgn0025687 -0.74 FBgn0035968 0.92 FBgn0038485 0.35 FBgn0039924 1.27 FBgn0030679 -0.7 FBgn0039508 0.28 FBgn0053285 -0.51 FBgn0034730 -1.7 FBgn0033600 -1.38 FBgn0261053 0.68 FBgn0033043 0.71 FBgn0261514 -2.27 FBgn0020493 -2.06 FBgn0034451 -1.34 FBgn0031060 -0.44 FBgn0003345 -0.66 FBgn0037424 -1.18 FBgn0039767 1.31 FBgn0038445 -1.55 FBgn0034031 0.12 FBgn0041174 -1.13 FBgn0030795 0.46 FBgn0039629 -2.02 FBgn0033476 -1.44 FBgn0039848 -1.31 FBgn0036085 -1.73 FBgn0000542 1.07 FBgn0024360 -0.63 FBgn0011692 1.18 FBgn0032104 0.71 FBgn0034928 -1.96 FBgn0034629 0.34 FBgn0032915 -1.27 FBgn0035987 -1.52 FBgn0010905 1.5 FBgn0039266 -0.42 FBgn0028982 1.55 FBgn0031189 -0.79 FBgn0015402 -1.13 FBgn0033199 1.18 FBgn0038435 -0.46 FBgn0030824 0.86 FBgn0019928 7.56 FBgn0015371 0.59 FBgn0022153 -1.29 FBgn0053453 -0.33 FBgn0031581 -1.29 FBgn0051700 -1.23 FBgn0032297 -1.31 FBgn0044028 -1.27 FBgn0035540 1.35 FBgn0000307 1.83 FBgn0036439 -0.62 FBgn0037576 0.79 FBgn0015801 0.74 FBgn0035687 -1.53 FBgn0036843 -1.52 FBgn0032986 0.58 FBgn0031999 -1.62 FBgn0033192 -1.63 FBgn0034691 -0.4 FBgn0025360 0.72 FBgn0052369 1.76 FBgn0036813 0.86 FBgn0024963 0.68 FBgn0034792 0.57 FBgn0014019 -1.16 FBgn0039907 0.98 FBgn0083972 -1.45 FBgn0025742 2.37 FBgn0031848 -0.45 FBgn0261699 0.38 FBgn0027785 0.79 FBgn0032030 -3.36 FBgn0021800 -2.3 FBgn0037234 0.63 FBgn0003060 -1.61 FBgn0038876 0.28 FBgn0026756 -1.44 FBgn0031069 -1.42 FBgn0037664 -1.27 FBgn0028970 0.56 FBgn0030434 -0.43 FBgn0015221 -1.6 FBgn0031414 -0.95 FBgn0035203 -0.62 FBgn0037657 5.02 FBgn0036377 0.62 FBgn0025109 -1.73 FBgn0031547 -1.61 FBgn0032271 1.24 FBgn0033685 -1.79 FBgn0026403 0.35 FBgn0038051 1.09 FBgn0034052 -1.34 FBgn0030032 -0.59 FBgn0029819 -1.25 FBgn0029866 0.3 FBgn0037169 1.27 FBgn0034834 -2.04 FBgn0031431 0.42 FBgn0035797 0.3 FBgn0030048 -1.25 FBgn0052983 0.27 FBgn0020645 0.54 FBgn0000826 2.15 FBgn0050377 -0.86 FBgn0046885 -1.41 FBgn0032191 1.24 FBgn0040679 1.17 FBgn0016715 0.2 FBgn0037469 1.23 FBgn0000662 1.33 FBgn0050344 -1.09 FBgn0004507 0.09 FBgn0016983 -1.19 FBgn0037655 -2 FBgn0031973 1.08 FBgn0045501 -0.61 FBgn0039379 -0.59 FBgn0032428 0.93 FBgn0045497 4.08 FBgn0031365 0.84 FBgn0038976 0.15 FBgn0039155 -0.9 FBgn0005614 -2.7 FBgn0036184 -1.11 FBgn0040395 1.03 FBgn0052112 -1.25 FBgn0052121 0.95 FBgn0034715 0.31 FBgn0031778 0.26 FBgn0260462 -1.62 FBgn0036879 -0.99 FBgn0014179 1.36 FBgn0028480 -1.11 FBgn0031298 0.57 FBgn0036766 0.48 FBgn0033381 0.72 FBgn0050087 1.24 FBgn0031954 -0.96 FBgn0028870 0.74 FBgn0051205 0.76 FBgn0032215 1.83 FBgn0046875 1.16 FBgn0053340 0.58 FBgn0038948 -1.91 FBgn0037150 -0.93 FBgn0039407 -0.36 FBgn0029148 -0.93 FBgn0016660 1 FBgn0261848 -1.73 FBgn0036835 -2.07 FBgn0013984 -1.26 FBgn0032471 1.07 FBgn0031719 -2.13 FBgn0033224 -1.31 FBgn0039741 0.61 FBgn0003963 2.59 FBgn0034083 -1.2 FBgn0003178 -0.35 FBgn0033582 -1.36 FBgn0035504 -0.24 FBgn0036156 0.49 FBgn0039857 1.61 FBgn0027657 -1.89 FBgn0037777 -1.2 FBgn0032305 2.19 FBgn0036305 -0.52 FBgn0038965 -0.95 FBgn0052095 2.01 FBgn0054008 -1.16 FBgn0020277 -0.41 FBgn0030204 -0.86 FBgn0035730 -0.31 FBgn0036787 2.16 FBgn0044511 -1.62 FBgn0029573 0.7 FBgn0033628 1.27 FBgn0034966 -0.21 FBgn0039357 -1.19 FBgn0050187 0.21 FBgn0038234 -1.76 FBgn0061469 0.91 FBgn0037151 0.34 FBgn0261004 -1.86 FBgn0033240 -0.89 FBgn0033963 0.74 FBgn0029720 -1.43 FBgn0032624 0.52 FBgn0037989 0.61 FBgn0037045 1.02 FBgn0035829 0.74 FBgn0011020 1.07 FBgn0042179 1.51 FBgn0037979 -0.73 FBgn0010415 -1.41 FBgn0034076 -1.28 FBgn0030839 1.16 FBgn0031401 -1.46 FBgn0036206 -1.24 FBgn0260393 -1.84 FBgn0051108 0.72 FBgn0035769 -1.46 FBgn0035669 -0.58 FBgn0037888 -0.49 FBgn0023143 -1.63 FBgn0030040 0.61 FBgn0085260 -1.27 FBgn0036332 1.3 FBgn0042627 -1.41 FBgn0039077 -0.68 FBgn0011241 -1.4 FBgn0033945 -1.45 FBgn0045842 2.1 FBgn0261446 1.08 FBgn0032110 -1.69 FBgn0053136 -0.9 FBgn0039387 -0.54 FBgn0031239 -1.3 FBgn0050083 -1.22 FBgn0260749 0.77 FBgn0030672 -0.33 FBgn0032691 -1.41 FBgn0039440 -1.65 FBgn0046322 0.39 FBgn0030346 0.97 FBgn0002571 0.89 FBgn0030057 0.73 FBgn0040206 -0.33 FBgn0034264 -0.84 FBgn0038855 1.44 FBgn0040798 0.55 FBgn0033887 0.75 FBgn0038357 -0.92 FBgn0031799 0.3 FBgn0033356 0.62 FBgn0011327 0.4 FBgn0034279 1.83 FBgn0036350 0.86 FBgn0041160 -0.32 FBgn0002533 1.39 FBgn0050010 1.28 FBgn0086377 0.49 FBgn0033673 -0.78 FBgn0035355 -0.71 FBgn0001977 -1.37 FBgn0037765 -0.36 FBgn0028540 1.99 FBgn0052152 -1.78 FBgn0036575 1.55 FBgn0052038 -1.88 FBgn0039137 0.89 FBgn0040350 -0.58 FBgn0031990 1.25 FBgn0029084 0.32 FBgn0039883 -0.75 FBgn0028684 -3.93 FBgn0040389 0.35 FBgn0003751 0.63 FBgn0033159 1.21 FBgn0261560 0.59 FBgn0052206 1.15 FBgn0015834 2.92 FBgn0250826 0.99 FBgn0030501 0.45 FBgn0025620 2.08 FBgn0084001 0.63 FBgn0025616 -0.56 FBgn0259187 0.74 FBgn0031492 -1.68 FBgn0083946 0.93 FBgn0026391 -1.32 FBgn0038746 -1.61 FBgn0261569 0.41 FBgn0003744 -1.21 FBgn0036454 -1.26 FBgn0035019 1.44 FBgn0032516 1.61 FBgn0051482 -0.58 FBgn0037328 1.62 FBgn0243512 -1.45 FBgn0003748 1.09 FBgn0051233 -1.34 FBgn0038606 -1.39 FBgn0037284 0.58 FBgn0035971 -1.79 FBgn0053349 0.59 FBgn0011768 -1.41 FBgn0030551 -1.58 FBgn0015828 1.31 FBgn0026390 -1.18 FBgn0000250 1.71 FBgn0085478 0.31 FBgn0010317 -1.24 FBgn0035425 1.07 FBgn0035900 5.63 FBgn0015714 0.69 FBgn0040098 0.86 FBgn0050011 -1.02 FBgn0051646 -1.19 FBgn0030583 -1.12 FBgn0037455 0.17 FBgn0033876 0.55 FBgn0040360 -0.94 FBgn0039025 -1.12 FBgn0004396 -0.49 FBgn0034446 -0.63 FBgn0036754 -1.12 FBgn0037874 0.59 FBgn0003093 -1.71 FBgn0050022 -1.33 FBgn0029909 -0.73 FBgn0036725 -0.7 FBgn0038653 -2.22 FBgn0033136 1.24 FBgn0032877 0.65 FBgn0030029 0.21 FBgn0031635 -0.37 FBgn0029891 0.34 FBgn0010238 0.63 FBgn0261550 -1.23 FBgn0005278 2.07 FBgn0021768 1.54 FBgn0040262 1.42 FBgn0037513 -1.43 FBgn0031645 1.12 FBgn0039187 -1.09 FBgn0029785 2.09 FBgn0035795 0.86 FBgn0030191 -1.47 FBgn0032362 2.86 FBgn0032053 -1.67 FBgn0085421 1.41 FBgn0051668 0.42 FBgn0029896 1.49 FBgn0015737 0.58 FBgn0035331 -0.8 FBgn0011741 -0.6 FBgn0023388 -1.05 FBgn0031458 -0.84 FBgn0039955 -1.5 FBgn0034114 -0.4 FBgn0030559 -0.69 FBgn0029594 -0.92 FBgn0033731 -1.05 FBgn0036460 -1.93 FBgn0051720 0.76 FBgn0040371 0.69 FBgn0016684 0.7 FBgn0250871 0.35 FBgn0037067 -0.93 FBgn0034160 -1.38 FBgn0040648 1.02 FBgn0010651 0.65 FBgn0035522 -0.42 FBgn0031682 0.98 FBgn0035012 -2.38 FBgn0038420 0.86 FBgn0029707 2.2 FBgn0002719 -2.12 FBgn0032042 0.49 FBgn0028479 -1.02 FBgn0053635 -1.2 FBgn0031312 0.5 FBgn0032755 -1.72 FBgn0054051 -1.84 FBgn0029659 -0.45 FBgn0033179 0.07 FBgn0005564 -1.57 FBgn0085311 0.78 FBgn0053532 -2.33 FBgn0008636 0.57 FBgn0022344 -1.2 FBgn0030026 -0.92 FBgn0087008 0.72 FBgn0030887 -1.51 FBgn0034475 0.47 FBgn0259152 0.73 FBgn0028897 -0.83 FBgn0020653 -1.57 FBgn0031561 1.93 FBgn0260719 0.88 FBgn0051822 1.16 FBgn0034168 -0.71 FBgn0052626 -1.51 FBgn0034310 3.89 FBgn0259211 -1.31 FBgn0050365 -1.12 FBgn0037923 1 FBgn0085391 -1.5 FBgn0037536 -0.89 FBgn0032068 -1.19 FBgn0027505 -0.87 FBgn0036534 1.98 FBgn0032010 -0.7 FBgn0002542 0.95 FBgn0030122 0.58 FBgn0036541 -0.09 FBgn0033952 -0.48 FBgn0026562 -1.03 FBgn0017414 0.9 FBgn0250847 -1.32 FBgn0004242 1.18 FBgn0036237 -0.34 FBgn0020376 -0.79 FBgn0039229 5.02 FBgn0028734 0.6 FBgn0028920 -0.46 FBgn0085357 0.74 FBgn0051694 -1.55 FBgn0004567 1.25 FBgn0036705 1.9 FBgn0036660 1.64 FBgn0250862 -0.27 FBgn0038515 -0.96 FBgn0046302 -1.24 FBgn0030947 -1.24 FBgn0039987 -0.78 FBgn0010222 -0.73 FBgn0082585 -1.28 FBgn0040506 0.75 FBgn0035854 0.84 FBgn0000083 1.11 FBgn0261477 1.02 FBgn0085282 0.23 FBgn0010215 0.96 FBgn0037175 0.53 FBgn0016078 -0.6 FBgn0035726 1.02 FBgn0013972 -0.25 FBgn0031947 0.76 FBgn0051115 0.61 FBgn0035590 -0.09 FBgn0030542 -1.55 FBgn0038579 -0.89 FBgn0027086 -0.61 FBgn0020391 -1.47 FBgn0033133 0.61 FBgn0030973 0.52 FBgn0085273 -0.95 FBgn0030161 0.81 FBgn0010053 -1.75 FBgn0037896 0.54 FBgn0030776 -1.85 FBgn0028939 0.41 FBgn0052219 1.15 FBgn0032520 -0.61 FBgn0039678 -0.51 FBgn0040918 1.08 FBgn0014028 0.78 FBgn0000257 -1.41 FBgn0010808 3.28 FBgn0039784 -0.78 FBgn0030054 -1.37 FBgn0051268 -0.58 FBgn0003187 -0.32 FBgn0034399 -0.39 FBgn0026375 -0.8 FBgn0039511 2.04 FBgn0038929 -1.16 FBgn0031622 1.02 FBgn0030505 -0.81 FBgn0035623 0.86 FBgn0035690 -0.67 FBgn0261856 -2.57 FBgn0034292 -0.86 FBgn0036850 -0.29 FBgn0052354 -2.49 FBgn0032171 -1.22 FBgn0036681 0.52 FBgn0032242 -0.86 FBgn0044823 1.2 FBgn0036423 -1.19 FBgn0011227 -0.58 FBgn0040068 -0.64 FBgn0039798 0.44 FBgn0026592 -0.36 FBgn0051715 -0.66 FBgn0039675 -0.79 FBgn0033060 0.94 FBgn0014877 -1.04 FBgn0033210 0.63 FBgn0035206 -1.07 FBgn0034532 -1.69 FBgn0037120 -0.97 FBgn0033558 0.41 FBgn0041237 1.4 FBgn0039630 -1.18 FBgn0054041 -0.97 FBgn0011293 0.34 FBgn0003575 -1.09 FBgn0040034 -0.57 FBgn0035007 0.34 FBgn0034687 -0.74 FBgn0038840 1.12 FBgn0034184 -0.33 FBgn0034541 -1.33 FBgn0086450 1.18 FBgn0034564 -1.2 FBgn0261244 1.81 FBgn0041585 0.63 FBgn0036133 1.52 FBgn0031098 -0.57 FBgn0028690 -1.12 FBgn0085278 -0.61 FBgn0001122 0.47 FBgn0028697 3.43 FBgn0038396 -0.36 FBgn0040551 -0.97 FBgn0039726 -0.49 FBgn0010173 0.91 FBgn0032261 -1.6 FBgn0034770 -0.69 FBgn0030425 2 FBgn0026262 -1.77 FBgn0039202 -0.71 FBgn0004889 -0.73 FBgn0027375 -0.66 FBgn0031184 -0.68 FBgn0050446 0.52 FBgn0052774 -0.88 FBgn0036300 -0.08 FBgn0033279 -0.97 FBgn0032021 1.19 FBgn0023423 1.09 FBgn0034742 -1.09 FBgn0051370 -1.41 FBgn0025117 -2.42 FBgn0033791 -0.99 FBgn0038313 0.41 FBgn0261575 1.39 FBgn0011283 0.28 FBgn0085198 -1.4 FBgn0032374 0.74 FBgn0039070 1.49 FBgn0031359 -2.09 FBgn0034456 1.45 FBgn0033999 1.36 FBgn0033738 0.96 FBgn0034622 -1.83 FBgn0028379 -0.49 FBgn0031373 1 FBgn0038371 -0.82 FBgn0037602 1.22 FBgn0024836 1.62 FBgn0031591 -1.82 FBgn0028394 -1.27 FBgn0035697 -0.33 FBgn0259179 -1.42 FBgn0033260 -1.57 FBgn0034535 -0.98 FBgn0037548 -2.04 FBgn0085398 1.55 FBgn0036345 0.19 FBgn0039787 -0.61 FBgn0036121 -1.03 FBgn0035935 0.83 FBgn0038739 0.38 FBgn0052813 -0.75 FBgn0038532 -1.06 FBgn0035577 0.4 FBgn0041242 0.48 FBgn0037485 1.07 FBgn0085333 1.25 FBgn0039736 -0.41 FBgn0011823 0.13 FBgn0000152 0.33 FBgn0261545 2.52 FBgn0029082 0.37 FBgn0030891 0.29 FBgn0029729 1.24 FBgn0000278 -0.64 FBgn0031456 -0.94 FBgn0039650 -0.59 FBgn0031451 0.53 FBgn0051559 0.82 FBgn0016131 4.37 FBgn0020556 -0.64 FBgn0032639 1.25 FBgn0035344 -0.44 FBgn0031887 1.51 FBgn0051217 -1.61 FBgn0037592 -2.34 FBgn0031428 -0.41 FBgn0003380 0.48 FBgn0032202 1.03 FBgn0030000 -1.47 FBgn0013973 -0.87 FBgn0031607 -1.19 FBgn0040336 0.25 FBgn0036979 -1.81 FBgn0003189 0.87 FBgn0051522 1.18 FBgn0001311 -0.47 FBgn0027564 -0.86 FBgn0039491 1 FBgn0032921 0.76 FBgn0005322 0.78 FBgn0036029 1.16 FBgn0261402 1.19 FBgn0028955 -0.84 FBgn0030827 -0.74 FBgn0051787 1.49 FBgn0034179 -0.38 FBgn0029843 -0.41 FBgn0038842 1 FBgn0040778 -1.26 FBgn0037248 -0.51 FBgn0047199 0.35 FBgn0015568 -1.73 FBgn0019982 -0.5 FBgn0052021 -0.8 FBgn0004366 -2.38 FBgn0036931 -1.38 FBgn0023094 1.49 FBgn0051075 -1.1 FBgn0033075 -0.35 FBgn0001133 0.72 FBgn0031219 1.92 FBgn0085307 -0.29 FBgn0050056 -0.62 FBgn0037720 -1.02 FBgn0030052 -1.15 FBgn0002641 0.53 FBgn0050323 -0.55 FBgn0034109 -0.78 FBgn0039453 -1.42 FBgn0030206 -0.87 FBgn0036509 -1.46 FBgn0022981 1.36 FBgn0035187 -0.23 FBgn0017557 -0.75 FBgn0014851 -0.54 FBgn0040343 -1.05 FBgn0035170 0.52 FBgn0030731 -0.35 FBgn0034104 -0.79 FBgn0011279 1.22 FBgn0035148 -0.49 FBgn0002868 -1.03 FBgn0015585 -1.06 FBgn0030691 -1.12 FBgn0032456 0.79 FBgn0033865 -0.42 FBgn0034671 1.05 FBgn0027873 -1.54 FBgn0004425 -1.26 FBgn0031443 -0.57 FBgn0039537 0.7 FBgn0003430 1.23 FBgn0086443 -0.87 FBgn0040752 1.1 FBgn0069973 1.31 FBgn0003480 -0.28 FBgn0034563 0.81 FBgn0000092 -0.84 FBgn0042185 1.8 FBgn0030809 -1.91 FBgn0038767 -0.41 FBgn0058064 0.77 FBgn0034692 0.84 FBgn0000100 3.01 FBgn0029874 -0.91 FBgn0010409 5.32 FBgn0261573 1.97 FBgn0014127 1.59 FBgn0038903 1.34 FBgn0034951 0.81 FBgn0036587 1.14 FBgn0036091 -1.35 FBgn0002735 -0.62 FBgn0015577 -1 FBgn0032511 1.73 FBgn0001170 -0.77 FBgn0011225 1.69 FBgn0039396 -1.12 FBgn0031620 -0.15 FBgn0039084 -1.66 FBgn0038426 -1.63 FBgn0035677 -0.87 FBgn0085436 5.1 FBgn0035714 -1.05 FBgn0052576 -0.44 FBgn0030661 -0.66 FBgn0003515 -0.9 FBgn0036728 -1.27 FBgn0025454 0.84 FBgn0034964 -1.91 FBgn0036624 -1.22 FBgn0034959 -0.73 FBgn0052569 0.19 FBgn0035346 0.19 FBgn0039876 -0.95 FBgn0058198 -1.26 FBgn0032401 -1.12 FBgn0031101 -1.03 FBgn0261289 1.27 FBgn0035824 0.72 FBgn0027795 -0.12 FBgn0025573 0.39 FBgn0033232 -1.12 FBgn0036044 0.7 FBgn0260657 1.19 FBgn0031289 -0.45 FBgn0035638 1.82 FBgn0030420 -0.83 FBgn0053012 -0.78 FBgn0024245 -0.59 FBgn0034416 -0.14 FBgn0010300 -0.28 FBgn0052192 0.7 FBgn0029748 2.18 FBgn0025549 -0.39 FBgn0034205 -0.79 FBgn0032715 -0.81 FBgn0029999 -1.61 FBgn0039341 -1.46 FBgn0036911 -0.95 FBgn0259713 1.44 FBgn0038953 -1.14 FBgn0035397 -1.32 FBgn0000228 1.13 FBgn0034097 -0.87 FBgn0031877 0.56 FBgn0010575 -0.8 FBgn0032668 -0.66 FBgn0030311 -0.97 FBgn0036329 0.24 FBgn0020756 1.28 FBgn0039686 -0.52 FBgn0011726 0.7 FBgn0040038 1.18 FBgn0030961 -1.33 FBgn0038734 -0.16 FBgn0033828 -1.53 FBgn0004842 -0.96 FBgn0034269 -0.6 FBgn0039966 0.87 FBgn0037347 -1.73 FBgn0036195 -0.78 FBgn0032023 0.82 FBgn0031327 0.77 FBgn0004919 -0.6 FBgn0044046 -1.58 FBgn0053523 -1.32 FBgn0038609 0.77 FBgn0015795 0.91 FBgn0032211 1.26 FBgn0050420 -0.71 FBgn0027574 1.5 FBgn0051313 0.22 FBgn0038692 -0.42 FBgn0032075 -0.41 FBgn0051352 -2.07 FBgn0038191 -0.39 FBgn0038466 -1.6 FBgn0036993 -0.84 FBgn0031766 0.96 FBgn0032388 0.28 FBgn0001281 1.1 FBgn0033571 4.53 FBgn0004910 -1.01 FBgn0051219 1.38 FBgn0033490 -0.78 FBgn0034894 0.54 FBgn0052488 1.21 FBgn0050463 -1.67 FBgn0039806 -0.21 FBgn0035179 -1.62 FBgn0038742 -1.07 FBgn0038535 1.07 FBgn0034324 0.35 FBgn0040045 2.13 FBgn0015586 -0.77 FBgn0053469 1.47 FBgn0040352 0.37 FBgn0033690 -0.83 FBgn0053100 -1.05 FBgn0085384 -1.78 FBgn0038111 -1.61 FBgn0036213 4.53 FBgn0261385 -1.4 FBgn0004107 3.79 FBgn0036443 -1.33 FBgn0032881 -1.07 FBgn0031089 -0.47 FBgn0085253 -1.09 FBgn0030738 -1.19 FBgn0032234 0.59 FBgn0036778 1.43 FBgn0051326 -1.81 FBgn0035217 -0.65 FBgn0036516 -0.88 FBgn0034023 0.4 FBgn0038262 -1.41 FBgn0052707 0.48 FBgn0038826 -1.2 FBgn0032810 -0.64 FBgn0037680 -2.23 FBgn0033450 0.65 FBgn0032259 -1.46 FBgn0031010 1.37 FBgn0033705 -0.54 FBgn0039450 0.99 FBgn0038451 0.24 FBgn0037224 1.02 FBgn0052405 -1.28 FBgn0033369 0.21 FBgn0040964 -0.83 FBgn0002872 1.56 FBgn0038345 -1.51 FBgn0261451 -1.43 FBgn0052087 -1.65 FBgn0033607 -0.56 FBgn0037584 -1.44 FBgn0039294 0.91 FBgn0010294 -0.62 FBgn0039135 -0.65 FBgn0039581 -0.27 FBgn0033597 0.37 FBgn0032817 1.08 FBgn0037282 -1.54 FBgn0027495 0.22 FBgn0261710 0.33 FBgn0038809 -0.97 FBgn0035312 0.73 FBgn0036039 -0.37 FBgn0001208 0.83 FBgn0030616 1.2 FBgn0051342 -1.71 FBgn0022382 1.55 FBgn0035453 -1.02 FBgn0004864 -0.03 FBgn0039098 -1.48 FBgn0034700 0.52 FBgn0020765 -0.71 FBgn0031264 0.06 FBgn0032586 -1.41 FBgn0052382 1.43 FBgn0030816 1.04 FBgn0038175 0.71 FBgn0032518 -3.1 FBgn0261588 -0.95 FBgn0034656 -2.27 FBgn0053080 -1.22 FBgn0000447 -1.03 FBgn0037363 -0.75 FBgn0035877 -0.71 FBgn0034523 -1.99 FBgn0033936 -1.83 FBgn0033740 0.44 FBgn0045483 0.17 FBgn0033635 -1.45 FBgn0086758 -1.75 FBgn0037130 0.57 FBgn0022710 -0.47 FBgn0004034 -1.48 FBgn0039711 1.05 FBgn0034009 -1.84 FBgn0053177 0.47 FBgn0035282 1.15 FBgn0032016 -0.47 FBgn0039498 1.33 FBgn0037727 0.6 FBgn0030348 0.89 FBgn0024326 0.99 FBgn0003371 -0.82 FBgn0022355 -1.39 FBgn0035495 -0.98 FBgn0040726 -1.7 FBgn0039759 -1.07 FBgn0052057 -0.76 FBgn0032157 -0.99 FBgn0028993 -1.52 FBgn0011670 -0.85 FBgn0050029 -0.58 FBgn0004784 0.3 FBgn0029820 0.67 FBgn0013770 -1.15 FBgn0015400 -0.51 FBgn0035435 -0.98 FBgn0025809 -0.77 FBgn0030871 -1.12 FBgn0014417 0.65 FBgn0035286 0.29 FBgn0041092 -1.05 FBgn0029687 0.37 FBgn0034008 1.07 FBgn0036259 0.84 FBgn0020440 -1.1 FBgn0032726 -0.79 FBgn0003715 -0.12 FBgn0033818 -1.53 FBgn0037135 -0.82 FBgn0001186 0.59 FBgn0038057 -1.32 FBgn0030108 -0.51 FBgn0030294 0.74 FBgn0030841 -0.23 FBgn0030063 -1.33 FBgn0031929 0.52 FBgn0052440 -0.78 FBgn0030975 -1.4 FBgn0016047 -1.88 FBgn0023525 -0.76 FBgn0016691 -0.17 FBgn0037294 -2.4 FBgn0023081 -1.18 FBgn0063495 -0.68 FBgn0036448 0.23 FBgn0261614 0.64 FBgn0039890 -1.34 FBgn0053262 0.83 FBgn0037525 -1.38 FBgn0038422 0.47 FBgn0037105 0.46 FBgn0050457 -2.06 FBgn0086783 1.26 FBgn0025578 0.7 FBgn0037543 0.79 FBgn0037018 0.72 FBgn0001226 0.63 FBgn0051600 -0.9 FBgn0010329 -1.12 FBgn0028343 0.98 FBgn0030142 1.35 FBgn0039329 1.79 FBgn0038564 -0.72 FBgn0034002 -2.1 FBgn0014076 1.97 FBgn0031074 -1.13 FBgn0020429 -1.38 FBgn0030009 -0.67 FBgn0038751 -0.88 FBgn0038680 -1.17 FBgn0027607 -0.77 FBgn0039274 1.56 FBgn0025388 -0.82 FBgn0038803 2.35 FBgn0039126 0.76 FBgn0015513 -1.36 FBgn0050390 0.26 FBgn0017590 0.41 FBgn0027558 0.4 FBgn0004646 0.83 FBgn0031907 -1.29 FBgn0020445 -0.97 FBgn0033821 -0.94 FBgn0037934 0.19 FBgn0037129 -0.17 FBgn0051704 -0.83 FBgn0025807 -0.46 FBgn0032779 1.62 FBgn0039566 2.36 FBgn0020257 -0.24 FBgn0000039 0.86 FBgn0031831 -1.21 FBgn0034217 -0.45 FBgn0010328 1.15 FBgn0034439 -1.53 FBgn0000337 0.95 FBgn0086710 4.47 FBgn0040705 -0.38 FBgn0037746 -0.9 FBgn0035109 -1.12 FBgn0031979 -1.5 FBgn0051677 0.16 FBgn0034484 0.93 FBgn0023534 -1.76 FBgn0000179 -0.73 FBgn0045474 -0.81 FBgn0261055 -0.52 FBgn0259225 2.22 FBgn0030670 -0.58 FBgn0050274 -0.85 FBgn0033904 1.3 FBgn0036591 -1.12 FBgn0036987 0.73 FBgn0040230 -0.64 FBgn0032685 1.47 FBgn0037831 -0.76 FBgn0040104 0.83 FBgn0034759 -0.83 FBgn0038479 0.36 FBgn0034436 -1.53 FBgn0039941 -1.11 FBgn0004066 0.75 FBgn0039111 0.16 FBgn0042103 -1.24 FBgn0033661 -1.06 FBgn0016754 0.31 FBgn0011758 -0.21 FBgn0034379 -1.28 FBgn0013680 0.67 FBgn0024234 1.44 FBgn0034975 1.68 FBgn0030721 0.84 FBgn0031094 0.66 FBgn0030462 -0.93 FBgn0005775 0.27 FBgn0046253 0.15 FBgn0035265 1.39 FBgn0004607 0.31 FBgn0036218 -0.58 FBgn0037758 1.02 FBgn0037719 -1.38 FBgn0039521 -1.3 FBgn0031854 -0.28 FBgn0036666 0.69 FBgn0038252 1.14 FBgn0030938 -1.17 FBgn0051755 0.68 FBgn0052271 0.25 FBgn0024288 3.08 FBgn0001216 3.23 FBgn0261436 0.24 FBgn0053319 -1.69 FBgn0030864 -0.9 FBgn0032485 -1.09 FBgn0032612 0.07 FBgn0005683 -1.33 FBgn0039568 -1.03 FBgn0051812 -1.88 FBgn0033777 -0.88 FBgn0038472 -0.94 FBgn0034883 -0.21 FBgn0032979 -1.92 FBgn0037675 -2.15 FBgn0032331 0.58 FBgn0050284 -1.72 FBgn0029856 10.12 FBgn0053310 -1.33 FBgn0031598 -0.68 FBgn0031296 -0.67 FBgn0043806 -0.24 FBgn0010269 -1.19 FBgn0036980 -0.63 FBgn0052053 0.7 FBgn0052198 -0.57 FBgn0037057 1.77 FBgn0031057 -0.62 FBgn0053653 -0.71 FBgn0053773 -1.36 FBgn0085464 -0.35 FBgn0032538 -0.35 FBgn0030082 -1.35 FBgn0039551 -1.2 FBgn0039332 0.79 FBgn0031673 -1.22 FBgn0032820 -0.98 FBgn0053926 -0.56 FBgn0250819 -1.3 FBgn0050429 0.74 FBgn0085401 -1.3 FBgn0035945 0.28 FBgn0041225 1.37 FBgn0036796 0.57 FBgn0032734 -0.25 FBgn0037383 0.5 FBgn0028946 -1.97 FBgn0030486 1.79 FBgn0053107 -0.33 FBgn0031250 -0.73 FBgn0032596 1.42 FBgn0015541 -1.38 FBgn0033117 0.29 FBgn0004359 -0.95 FBgn0038274 -1.03 FBgn0031169 -0.2 FBgn0040239 0.67 FBgn0028648 -2.13 FBgn0039473 1.84 FBgn0029878 -0.3 FBgn0028426 -0.65 FBgn0028888 -0.93 FBgn0038240 -0.56 FBgn0029552 1.13 FBgn0036158 0.8 FBgn0038149 0.6 FBgn0032156 0.95 FBgn0261113 -1.16 FBgn0036974 0.77 FBgn0037822 0.43 FBgn0037999 1.07 FBgn0004852 -1.15 FBgn0030394 0.31 FBgn0013812 1.44 FBgn0035767 1.14 FBgn0030926 0.69 FBgn0039872 -1.7 FBgn0034089 -2.04 FBgn0034301 -0.58 FBgn0030101 -0.73 FBgn0045980 -0.85 FBgn0015036 1.07 FBgn0033196 -0.88 FBgn0053193 -1.7 FBgn0036273 0.45 FBgn0261648 0.68 FBgn0035232 -0.73 FBgn0032348 1.18 FBgn0028708 -0.71 FBgn0031550 0.37 FBgn0030522 -1.14 FBgn0025815 0.87 FBgn0038719 1.39 FBgn0035943 -0.39 FBgn0086895 -0.15 FBgn0036818 2.11 FBgn0038373 -0.86 FBgn0033048 -0.91 FBgn0003495 -0.46 FBgn0035490 0.11 FBgn0259231 -1.79 FBgn0001942 4.03 FBgn0033781 1.24 FBgn0259167 0.39 FBgn0042207 -0.78 FBgn0261882 -1.06 FBgn0015295 -1.49 FBgn0034381 -0.91 FBgn0023212 1.88 FBgn0031689 -1.49 FBgn0025830 -0.53 FBgn0022942 -2.73 FBgn0033421 1.21 FBgn0035952 -2.98 FBgn0041710 -1.61 FBgn0038529 0.49 FBgn0035006 -0.26 FBgn0032847 0.8 FBgn0005198 0.3 FBgn0034578 0.79 FBgn0025352 1.78 FBgn0035876 -0.71 FBgn0013995 -2.12 FBgn0261020 -1.18 FBgn0052365 1.06 FBgn0039818 -0.77 FBgn0039704 -1.46 FBgn0050418 -1.63 FBgn0037554 0.19 FBgn0032381 -0.62 FBgn0032763 0.42 FBgn0053159 0.82 FBgn0053508 1.13 FBgn0037025 2.35 FBgn0026059 -1.47 FBgn0033751 0.64 FBgn0020407 -1.43 FBgn0020622 -0.77 FBgn0261674 0.41 FBgn0045471 0.28 FBgn0031002 -0.83 FBgn0013300 -0.78 FBgn0038679 1.1 FBgn0031629 -0.52 FBgn0015374 -1.27 FBgn0044050 0.82 FBgn0013763 0.82 FBgn0035622 1.41 FBgn0029629 4.28 FBgn0035709 0.38 FBgn0052447 -1.29 FBgn0028740 0.3 FBgn0053095 0.26 FBgn0037627 -0.12 FBgn0038082 0.35 FBgn0030278 0.95 FBgn0036806 -0.59 FBgn0031111 -0.58 FBgn0005390 -1.2 FBgn0036342 0.6 FBgn0005631 -0.85 FBgn0035110 1.46 FBgn0031406 -0.68 FBgn0035385 0.39 FBgn0032827 -1.57 FBgn0022800 -1.16 FBgn0051091 -0.59 FBgn0260482 -1.94 FBgn0032289 0.68 FBgn0050178 -0.47 FBgn0029946 0.38 FBgn0053126 0.68 FBgn0005624 -0.8 FBgn0032188 -1.28 FBgn0046873 -1.05 FBgn0040588 2.25 FBgn0004595 -1.95 FBgn0034769 -0.41 FBgn0031214 1.06 FBgn0031826 0.21 FBgn0038073 0.35 FBgn0010741 -1.44 FBgn0053062 -1.44 FBgn0038285 0.51 FBgn0031815 1.35 FBgn0002783 2.2 FBgn0034878 -1.64 FBgn0053230 -0.66 FBgn0050197 -1.56 FBgn0033724 0.66 FBgn0032673 0.38 FBgn0036648 -0.34 FBgn0053145 -0.17 FBgn0037411 1.14 FBgn0051200 0.72 FBgn0033322 -1.18 FBgn0033785 -0.98 FBgn0050099 -0.81 FBgn0030591 1.41 FBgn0028866 0.95 FBgn0029094 -1.31 FBgn0037622 0.91 FBgn0037030 1.01 FBgn0030854 -0.59 FBgn0000504 0.43 FBgn0062517 0.51 FBgn0033257 -0.75 FBgn0037007 -0.55 FBgn0014865 0.86 FBgn0030951 0.41 FBgn0045442 -0.69 FBgn0028871 -1.25 FBgn0039932 0.88 FBgn0040228 -0.84 FBgn0034785 -1.05 FBgn0027548 0.98 FBgn0039411 0.94 FBgn0002948 0.83 FBgn0023515 -0.82 FBgn0039244 0.89 FBgn0050047 -0.46 FBgn0034362 0.77 FBgn0015561 0.67 FBgn0038590 -1.07 FBgn0035703 0.52 FBgn0027521 0.41 FBgn0033713 0.24 FBgn0037730 0.87 FBgn0037116 -1.11 FBgn0020235 0.66 FBgn0034972 -0.68 FBgn0035091 -0.36 FBgn0033413 -1 FBgn0040843 -0.46 FBgn0011705 -1.03 FBgn0002526 -0.78 FBgn0036282 -0.11 FBgn0035024 -0.43 FBgn0037254 1.07 FBgn0015360 0.56 FBgn0036193 -1.32 FBgn0030183 0.39 FBgn0064225 2.61 FBgn0259834 -1.02 FBgn0036671 0.34 FBgn0000273 -0.82 FBgn0036186 -0.46 FBgn0051017 0.55 FBgn0036801 0.92 FBgn0037637 1.09 FBgn0052459 -1.31 FBgn0010391 -1.17 FBgn0054001 0.86 FBgn0011232 -0.26 FBgn0035087 -0.24 FBgn0013323 -0.64 FBgn0060296 0.84 FBgn0036020 -0.47 FBgn0004047 -1.24 FBgn0036466 1.8 FBgn0035611 2.6 FBgn0052452 -2.06 FBgn0259680 -1.02 FBgn0039178 1.28 FBgn0035647 -1.35 FBgn0031900 3.74 FBgn0033592 -1.29 FBgn0038007 -0.56 FBgn0002607 6.91 FBgn0028899 1.67 FBgn0039730 -0.92 FBgn0036920 -0.58 FBgn0014931 0.6 FBgn0034707 0.31 FBgn0038666 -1.14 FBgn0030296 0.63 FBgn0038958 -0.76 FBgn0038942 0.82 FBgn0003134 -1.03 FBgn0029964 0.9 FBgn0034827 0.2 FBgn0086266 0.17 FBgn0002937 0.48 FBgn0035249 1.03 FBgn0259101 1.14 FBgn0037229 0.52 FBgn0026179 -0.9 FBgn0000119 0.63 FBgn0034071 -0.46 FBgn0036014 -0.3 FBgn0004838 -0.59 FBgn0000317 0.94 FBgn0040733 -0.27 FBgn0030797 0.44 FBgn0002622 3.1 FBgn0031728 -1.1 FBgn0033317 1.18 FBgn0058006 -1.23 FBgn0037354 -1.47 FBgn0030089 -1.02 FBgn0001215 -0.41 FBgn0038643 1.15 FBgn0030247 0.24 FBgn0043825 -1.41 FBgn0042137 -0.5 FBgn0039209 0.58 FBgn0029955 -1.75 FBgn0039130 0.48 FBgn0003308 0.25 FBgn0036254 -0.92 FBgn0051044 0.56 FBgn0036621 -0.77 FBgn0028583 -0.12 FBgn0032775 0.73 FBgn0033806 -0.47 FBgn0032160 -0.89 FBgn0250910 -1.43 FBgn0042650 0.86 FBgn0036733 4.95 FBgn0030105 -0.32 FBgn0036016 1.07 FBgn0036471 1.58 FBgn0032127 0.23 FBgn0036703 0.88 FBgn0001250 1.03 FBgn0038887 -1.02 FBgn0030608 -0.64 FBgn0032670 -0.48 FBgn0261705 -1.43 FBgn0037553 -0.42 FBgn0030097 -1.25 FBgn0034803 0.6 FBgn0028836 -1.52 FBgn0032646 0.75 FBgn0033468 0.67 FBgn0024150 -1.25 FBgn0032311 -0.56 FBgn0031902 1.26 FBgn0011642 -0.5 FBgn0051493 -0.13 FBgn0035704 1.67 FBgn0051898 -0.84 FBgn0031701 1.3 FBgn0030317 -0.74 FBgn0036978 -1.68 FBgn0022986 -0.6 FBgn0026400 0.81 FBgn0038850 -0.45 FBgn0260487 1.31 FBgn0039733 -1.1 FBgn0033787 -0.32 FBgn0034989 0.95 FBgn0052351 0.37 FBgn0028833 0.38 FBgn0085232 0.75 FBgn0259683 -0.87 FBgn0260428 -0.67 FBgn0260444 0.66 FBgn0034488 -0.61 FBgn0020399 0.27 FBgn0039816 0.4 FBgn0030249 0.79 FBgn0039611 0.93 FBgn0023175 -0.91 FBgn0052079 0.51 FBgn0015929 0.39 FBgn0033714 -1.42 FBgn0034627 1.18 FBgn0011281 0.91 FBgn0010039 -1.83 FBgn0000351 -0.77 FBgn0037980 1.13 FBgn0005779 -1.72 FBgn0026324 -0.75 FBgn0004404 3.75 FBgn0030898 -1.3 FBgn0031545 -1.32 FBgn0087012 -0.1 FBgn0031968 -0.87 FBgn0260012 -1.35 FBgn0035909 -0.48 FBgn0261016 -1.23 FBgn0033793 0.47 FBgn0003507 0.24 FBgn0037537 -1.15 FBgn0051014 -1.22 FBgn0015602 -1.07 FBgn0029718 0.76 FBgn0045469 -0.72 FBgn0003249 -1.53 FBgn0047092 -2.22 FBgn0039413 0.72 FBgn0040575 -1.5 FBgn0020270 -0.57 FBgn0042094 0.74 FBgn0003062 3.73 FBgn0032818 1.4 FBgn0032135 1.13 FBgn0085315 0.92 FBgn0259244 1.43 FBgn0038080 -0.32 FBgn0010612 -1.75 FBgn0053339 1.13 FBgn0085257 -0.84 FBgn0038891 -0.78 FBgn0032689 0.28 FBgn0029839 0.69 FBgn0034841 -1.37 FBgn0025837 0.66 FBgn0051120 0.97 FBgn0038005 1.11 FBgn0033391 -1.27 FBgn0050069 1.05 FBgn0035313 -1.32 FBgn0035299 -0.7 FBgn0030167 1.16 FBgn0051013 0.69 FBgn0052412 0.41 FBgn0040353 -0.65 FBgn0035107 0.84 FBgn0036317 -1.43 FBgn0003714 -1.9 FBgn0037228 0.42 FBgn0261341 -1.64 FBgn0029506 -1.39 FBgn0033315 -1.1 FBgn0011706 1.82 FBgn0051363 1.16 FBgn0042213 1.93 FBgn0032863 2.18 FBgn0030482 0.92 FBgn0029950 0.54 FBgn0050075 1.26 FBgn0050090 -2.76 FBgn0003138 1.07 FBgn0034493 0.37 FBgn0003961 -1.98 FBgn0035207 -0.94 FBgn0045073 0.76 FBgn0033753 2.09 FBgn0050034 1.21 FBgn0051406 1.31 FBgn0035111 0.93 FBgn0034321 1.38 FBgn0031721 -2.01 FBgn0031395 -1.44 FBgn0051536 -1.63 FBgn0011239 -0.58 FBgn0260436 -1.73 FBgn0010265 4.49 FBgn0038110 0.21 FBgn0029810 0.57 FBgn0013811 1.51 FBgn0037368 -0.66 FBgn0039466 -0.65 FBgn0036948 0.09 FBgn0023514 1.33 FBgn0031737 0.4 FBgn0261606 4.26 FBgn0035097 -0.68 FBgn0027084 1.97 FBgn0085405 0.4 FBgn0035868 0.3 FBgn0052404 0.59 FBgn0031213 0.14 FBgn0025808 -0.71 FBgn0046113 -0.83 FBgn0027660 -0.3 FBgn0031501 -0.95 FBgn0035036 1.26 FBgn0035140 1.2 FBgn0030952 -1.62 FBgn0036805 0.42 FBgn0041630 -0.39 FBgn0033491 -1.2 FBgn0037446 1.1 FBgn0011747 -0.31 FBgn0030268 -1.57 FBgn0034481 0.98 FBgn0054029 -1.09 FBgn0032551 1.18 FBgn0032022 1.45 FBgn0035481 -1.19 FBgn0259821 -0.58 FBgn0030711 1.25 FBgn0034198 -0.89 FBgn0037028 0.48 FBgn0031611 2.02 FBgn0026061 -1.18 FBgn0028857 0.99 FBgn0024897 -0.69 FBgn0032723 -2.13 FBgn0032143 0.76 FBgn0038144 -0.54 FBgn0052036 1.74 FBgn0035154 0.59 FBgn0003886 1.9 FBgn0053303 -0.97 FBgn0040928 1.22 FBgn0033354 -1.02 FBgn0046763 0.34 FBgn0039965 1.74 FBgn0067779 -1.39 FBgn0039478 -0.67 FBgn0051438 1 FBgn0003378 -0.53 FBgn0001965 -3.36 FBgn0053109 -1.56 FBgn0010403 0.67 FBgn0021873 1.31 FBgn0038798 -1.6 FBgn0000280 -1.74 FBgn0000318 0.08 FBgn0040684 -1.06 FBgn0027599 0.97 FBgn0032663 -0.47 FBgn0033589 -2.65 FBgn0044011 -1.05 FBgn0039728 -0.91 FBgn0052074 -1.25 FBgn0033422 0.47 FBgn0011802 -1.66 FBgn0051821 0.26 FBgn0259227 -0.38 FBgn0034566 -0.91 FBgn0027490 -0.92 FBgn0038697 -0.3 FBgn0261119 0.48 FBgn0032741 -1.19 FBgn0260941 -0.65 FBgn0033874 -1.04 FBgn0031961 -1.12 FBgn0031708 0.84 FBgn0029915 -0.6 FBgn0027590 0.88 FBgn0260407 1.1 FBgn0032252 -1.23 FBgn0015546 -1.65 FBgn0033890 0.41 FBgn0030300 1.52 FBgn0024320 -0.19 FBgn0038651 -0.92 FBgn0027496 1.44 FBgn0010607 -0.98 FBgn0001091 -1.48 FBgn0021742 0.47 FBgn0260859 -0.08 FBgn0022936 -0.52 FBgn0003124 1.12 FBgn0033149 0.44 FBgn0002921 1.33 FBgn0030090 -1.57 FBgn0037937 -0.49 FBgn0003499 1.48 FBgn0037296 -1.77 FBgn0052111 -1.4 FBgn0011274 0.98 FBgn0036499 -0.86 FBgn0038311 -0.56 FBgn0037623 -0.95 FBgn0053531 1.32 FBgn0000064 0.49 FBgn0038431 0.71 FBgn0083960 0.49 FBgn0033112 -1.79 FBgn0030931 -0.24 FBgn0052511 -0.75 FBgn0038772 -1.19 FBgn0034755 -0.96 FBgn0028662 -0.89 FBgn0027088 -0.73 FBgn0032693 -1.57 FBgn0041241 1.08 FBgn0052732 0.71 FBgn0045063 1.67 FBgn0050044 1.27 FBgn0025820 0.54 FBgn0036921 -0.99 FBgn0031000 1.41 FBgn0037713 0.51 FBgn0029830 0.62 FBgn0052847 1.25 FBgn0038365 1.06 FBgn0030467 0.91 FBgn0053468 0.67 FBgn0038087 0.18 FBgn0032793 0.7 FBgn0037836 -0.84 FBgn0034438 -1.58 FBgn0038129 0.49 FBgn0032519 -1.57 FBgn0033302 1.86 FBgn0083919 -1.86 FBgn0031835 -0.93 FBgn0035040 1.06 FBgn0034322 -1.24 FBgn0000326 1.19 FBgn0085229 -0.57 FBgn0031190 -0.64 FBgn0000038 1.15 FBgn0039085 -1.45 FBgn0050381 0.81 FBgn0052282 -0.42 FBgn0034433 -0.97 FBgn0033529 -0.58 FBgn0052199 0.15 FBgn0029887 0.45 FBgn0051560 -1.82 FBgn0038478 -0.64 FBgn0014869 -0.19 FBgn0038279 -0.92 FBgn0035047 -0.23 FBgn0002564 0.49 FBgn0050263 -4.48 FBgn0030309 -1.31 FBgn0036897 -0.63 FBgn0039930 0.73 FBgn0035479 -1.04 FBgn0052190 -1.06 FBgn0004603 -0.66 FBgn0003890 1.33 FBgn0039562 1.25 FBgn0051958 -1.47 FBgn0028947 -1.45 FBgn0085457 0.85 FBgn0026170 -1.77 FBgn0042105 -1.19 FBgn0030202 -1.15 FBgn0024179 -0.85 FBgn0027872 -1.56 FBgn0020251 -1.15 FBgn0053156 -1.59 FBgn0054057 -1.9 FBgn0031314 0.51 FBgn0050338 0.91 FBgn0038209 -1.4 FBgn0032169 -1.56 FBgn0000636 1.16 FBgn0015298 -0.49 FBgn0035643 1.06 FBgn0030364 -0.72 FBgn0037810 1.37 FBgn0004429 -1.03 FBgn0051146 -2.11 FBgn0002878 -0.42 FBgn0034998 0.04 FBgn0030291 -0.59 FBgn0053218 -1.75 FBgn0034722 0.61 FBgn0003328 1.82 FBgn0032495 -1.13 FBgn0001147 -2.15 FBgn0002673 -0.52 FBgn0030449 -0.42 FBgn0031597 -0.88 FBgn0032886 -0.5 FBgn0261089 -1.18 FBgn0036659 -1.19 FBgn0051870 -0.52 FBgn0051961 -0.75 FBgn0036106 -1.97 FBgn0031188 -0.94 FBgn0037526 0.68 FBgn0043470 -1.47 FBgn0034650 -0.95 FBgn0039870 -1.26 FBgn0034187 -0.22 FBgn0085239 -1.39 FBgn0030638 -0.46 FBgn0051321 1.33 FBgn0034419 -1.53 FBgn0037321 0.09 FBgn0038236 -1.08 FBgn0032299 -1.24 FBgn0050419 2.67 FBgn0038074 0.59 FBgn0035592 0.62 FBgn0031759 0.79 FBgn0036714 -0.69 FBgn0050015 1.07 FBgn0053096 0.81 FBgn0053087 -0.89 FBgn0259794 -2.03 FBgn0042712 0.44 FBgn0016698 1.58 FBgn0260659 1.18 FBgn0030617 -1.66 FBgn0033481 -1.72 FBgn0002932 -1.02 FBgn0026085 0.42 FBgn0037788 0.6 FBgn0034352 0.19 FBgn0085556 1.02 FBgn0030386 -1.29 FBgn0029726 0.89 FBgn0261611 0.89 FBgn0035293 0.51 FBgn0052246 -0.42 FBgn0037857 0.8 FBgn0063497 0.97 FBgn0030800 -0.65 FBgn0035439 -1 FBgn0030283 -0.75 FBgn0031850 0.4 FBgn0037304 -2.25 FBgn0052755 0.45 FBgn0001139 -1.32 FBgn0034010 -1.19 FBgn0040271 0.64 FBgn0052544 -0.99 FBgn0034602 -0.5 FBgn0261555 -1.3 FBgn0035328 -1.09 FBgn0043783 -1.02 FBgn0023496 0.25 FBgn0017551 1.66 FBgn0015300 0.74 FBgn0044809 0.67 FBgn0013673 -1.29 FBgn0030164 0.61 FBgn0036598 1.42 FBgn0030605 0.81 FBgn0000618 -0.54 FBgn0004387 -3.12 FBgn0038016 -4.45 FBgn0036433 -1.19 FBgn0052554 -0.51 FBgn0051164 -0.49 FBgn0030647 0.69 FBgn0030331 -1.12 FBgn0042102 1.46 FBgn0000146 1.29 FBgn0040729 0.25 FBgn0054024 -0.37 FBgn0033842 1.01 FBgn0000414 -0.95 FBgn0038745 -0.99 FBgn0041231 -1.37 FBgn0045486 1.89 FBgn0033039 -0.79 FBgn0086408 0.48 FBgn0031636 -0.57 FBgn0032955 0.77 FBgn0020258 -1.56 FBgn0036440 -1.83 FBgn0023001 0.29 FBgn0038980 1.28 FBgn0033364 -0.65 FBgn0035416 1.77 FBgn0086686 -0.94 FBgn0031981 0.5 FBgn0041711 -0.5 FBgn0035281 -0.35 FBgn0261261 -1.66 FBgn0044810 0.29 FBgn0030929 0.51 FBgn0063667 -0.45 FBgn0052533 1.89 FBgn0259961 0.89 FBgn0030645 -0.93 FBgn0039315 -0.17 FBgn0035088 2.36 FBgn0036916 1.28 FBgn0011206 1.74 FBgn0033708 -2.07 FBgn0039306 1.92 FBgn0039298 -0.73 FBgn0011661 -0.37 FBgn0032602 -0.31 FBgn0030663 -0.1 FBgn0020912 1.57 FBgn0042092 -0.74 FBgn0015926 -0.95 FBgn0039291 -0.67 FBgn0036544 0.9 FBgn0032225 -0.44 FBgn0000276 0.8 FBgn0034513 0.45 FBgn0031403 -0.56 FBgn0030272 0.1 FBgn0025390 -1.5 FBgn0028336 -2.64 FBgn0038530 -1.19 FBgn0034135 1.26 FBgn0003204 1.8 FBgn0032192 -1.13 FBgn0053471 0.55 FBgn0053679 -1.59 FBgn0013762 -0.24 FBgn0032484 -1.35 FBgn0030716 0.61 FBgn0030178 0.22 FBgn0086367 -0.25 FBgn0027836 -0.93 FBgn0259194 -0.51 FBgn0038702 -1.23 FBgn0034938 -1.38 FBgn0038519 -1.26 FBgn0085298 -0.06 FBgn0001137 0.67 FBgn0033749 1.67 FBgn0003209 -1.63 FBgn0024728 0.49 FBgn0035380 -1.14 FBgn0027549 -0.9 FBgn0039738 0.79 FBgn0053302 0.35 FBgn0026058 -0.9 FBgn0034243 1.56 FBgn0036511 0.84 FBgn0030811 1.04 FBgn0029827 -0.24 FBgn0003450 0.23 FBgn0032719 -1.29 FBgn0033443 -0.55 FBgn0004106 2.33 FBgn0039527 -1.49 FBgn0037973 0.61 FBgn0032973 -0.44 FBgn0026397 -1.37 FBgn0030826 -0.16 FBgn0027619 -1.3 FBgn0030344 1.17 FBgn0040989 1.42 FBgn0040796 -0.86 FBgn0035078 0.86 FBgn0035805 0.39 FBgn0010438 0.86 FBgn0086909 -2.22 FBgn0036964 -0.66 FBgn0051524 -1.73 FBgn0013773 -0.11 FBgn0261556 -1.86 FBgn0051357 -0.42 FBgn0039771 -0.75 FBgn0013308 -1.01 FBgn0005660 -0.39 FBgn0037468 1.31 FBgn0085433 1.03 FBgn0032209 -0.93 FBgn0035455 -0.89 FBgn0038296 -1.03 FBgn0026570 0.24 FBgn0052669 2.43 FBgn0031216 -1.64 FBgn0001269 -1.12 FBgn0036670 -1.38 FBgn0053192 1.16 FBgn0015772 0.85 FBgn0027868 4.29 FBgn0039639 -0.99 FBgn0011277 -0.89 FBgn0035670 -0.33 FBgn0039886 -0.79 FBgn0036031 0.54 FBgn0037250 0.77 FBgn0033183 0.31 FBgn0029067 -1.39 FBgn0031333 0.57 FBgn0030352 -0.76 FBgn0034558 2.03 FBgn0000709 0.93 FBgn0045761 -1.67 FBgn0261570 -1.14 FBgn0050488 -1.51 FBgn0033570 0.61 FBgn0031283 -0.97 FBgn0015024 0.29 FBgn0038993 -1.51 FBgn0038161 -0.22 FBgn0037581 -1.44 FBgn0034277 -0.79 FBgn0038494 -0.74 FBgn0010747 -1.17 FBgn0035090 0.95 FBgn0039655 -1.19 FBgn0050410 -1.57 FBgn0014396 0.39 FBgn0000556 0.57 FBgn0005616 -0.62 FBgn0035568 1.75 FBgn0259185 1.01 FBgn0031134 -0.6 FBgn0003009 -1.78 FBgn0083990 0.28 FBgn0036505 -0.75 FBgn0063649 -1.52 FBgn0001230 -0.83 FBgn0032811 -0.73 FBgn0028687 -2.49 FBgn0038924 -1.25 FBgn0019830 -1.01 FBgn0031876 -1.74 FBgn0003423 -0.55 FBgn0023519 -1.03 FBgn0053512 10.78 FBgn0037345 -1.1 FBgn0034744 -0.77 FBgn0033591 -1.26 FBgn0050411 -0.94 FBgn0051266 -0.86 FBgn0015282 -2.41 FBgn0034061 0.34 FBgn0086904 -0.71 FBgn0032213 0.66 FBgn0052475 1.31 FBgn0039007 -0.3 FBgn0026415 1.32 FBgn0028900 0.98 FBgn0039376 0.35 FBgn0033087 0.87 FBgn0037430 -0.92 FBgn0027585 1.86 FBgn0035621 -1.93 FBgn0041623 -0.96 FBgn0036990 -0.5 FBgn0053493 0.46 FBgn0053170 1.32 FBgn0027565 -0.4 FBgn0038213 -2.17 FBgn0051223 1.26 FBgn0040341 -0.69 FBgn0030015 0.37 FBgn0035213 -1.33 FBgn0051644 -1.64 FBgn0034576 -0.69 FBgn0036145 0.58 FBgn0035434 -0.21 FBgn0038469 0.43 FBgn0035916 -1.32 FBgn0015035 0.97 FBgn0035543 -0.97 FBgn0032424 0.25 FBgn0052484 -1.75 FBgn0046247 -1.6 FBgn0030963 1.78 FBgn0052792 1.39 FBgn0033737 -0.2 FBgn0036118 -1.01 FBgn0028954 -1.92 FBgn0086347 -1.24 FBgn0033062 -2.23 FBgn0040828 -0.15 FBgn0086911 -1.71 FBgn0044049 1.16 FBgn0031114 0.42 FBgn0035532 -0.73 FBgn0250746 -0.54 FBgn0039348 0.63 FBgn0086445 -1.25 FBgn0052024 -0.25 FBgn0032582 -1.64 FBgn0051777 0.86 FBgn0031871 -0.39 FBgn0036328 -0.66 FBgn0029535 -1.28 FBgn0046887 0.92 FBgn0037288 1.8 FBgn0053233 1.21 FBgn0038122 -0.99 FBgn0031732 -1.98 FBgn0010051 -0.47 FBgn0024993 0.17 FBgn0039553 -0.87 FBgn0031764 -1.31 FBgn0036299 0.47 FBgn0034054 -1.5 FBgn0051076 -1.02 FBgn0030734 0.6 FBgn0030431 0.88 FBgn0031036 -1.71 FBgn0085331 -0.81 FBgn0052698 -1.5 FBgn0031434 0.77 FBgn0036180 -0.81 FBgn0033798 -0.61 FBgn0036603 0.97 FBgn0051549 1.02 FBgn0001259 -1.4 FBgn0028699 0.61 FBgn0250754 -0.38 FBgn0051459 1.16 FBgn0029783 -0.9 FBgn0085431 -0.9 FBgn0033701 -0.93 FBgn0039494 4 FBgn0028669 0.97 FBgn0031808 -0.99 FBgn0053056 -1.13 FBgn0031608 -0.9 FBgn0029817 -0.67 FBgn0030630 -0.63 FBgn0026380 -0.25 FBgn0027287 -0.31 FBgn0029754 -1.21 FBgn0042696 -1.79 FBgn0037939 -0.85 FBgn0037402 -0.21 FBgn0032588 -0.33 FBgn0039829 0.8 FBgn0031992 -1.46 FBgn0034126 1.07 FBgn0031803 0.88 FBgn0031777 1.2 FBgn0052302 -0.35 FBgn0035603 0.82 FBgn0037783 0.09 FBgn0020767 0.5 FBgn0022246 -0.99 FBgn0259918 -1.2 FBgn0030478 1.51 FBgn0031441 1.4 FBgn0000591 0.63 FBgn0037684 -0.91 FBgn0259112 -0.8 FBgn0030554 -1.46 FBgn0085309 -2.11 FBgn0083959 -2.37 FBgn0052250 -1.48 FBgn0050371 -0.82 FBgn0052445 1.83 FBgn0030005 -1.19 FBgn0039139 -0.69 FBgn0038869 2.33 FBgn0025806 -1.84 FBgn0037405 -1.71 FBgn0004598 1.04 FBgn0032525 -1.63 FBgn0036323 -0.05 FBgn0083986 11.31 FBgn0039180 0.77 FBgn0030777 -1.67 FBgn0250835 1.58 FBgn0039799 1.36 FBgn0032376 0.31 FBgn0030945 0.75 FBgn0034540 -1.93 FBgn0036857 -0.37 FBgn0260987 -1.74 FBgn0035791 1.58 FBgn0034595 -0.15 FBgn0050181 -1 FBgn0052588 0.28 FBgn0035782 -0.8 FBgn0023129 1.95 FBgn0039621 -0.92 FBgn0037633 -0.52 FBgn0031821 0.4 FBgn0052750 -0.35 FBgn0041581 0.51 FBgn0034457 0.32 FBgn0031266 4.85 FBgn0030991 -0.46 FBgn0033185 -0.59 FBgn0014092 0.35 FBgn0010516 -0.84 FBgn0058178 0.88 FBgn0033879 0.97 FBgn0037647 -0.9 FBgn0032503 -0.9 FBgn0031895 0.56 FBgn0010314 -0.8 FBgn0036765 0.57 FBgn0051148 -0.43 FBgn0013987 -1.09 FBgn0053631 -0.33 FBgn0020305 -0.91 FBgn0033130 -0.82 FBgn0050447 -0.57 FBgn0028685 -0.26 FBgn0028490 -2.23 FBgn0004087 -0.77 FBgn0259174 -1.54 FBgn0259238 -1.36 FBgn0034768 -0.75 FBgn0000629 0.66 FBgn0260768 0.36 FBgn0030794 1.17 FBgn0051204 -1.38 FBgn0036005 1.36 FBgn0029507 -1.21 FBgn0085326 -1.13 FBgn0011817 -1.88 FBgn0085288 -0.95 FBgn0086134 -1.08 FBgn0083938 -1.82 FBgn0036732 -1.72 FBgn0030540 -0.85 FBgn0031142 1.42 FBgn0261259 -1.55 FBgn0030671 -0.6 FBgn0032446 0.63 FBgn0033273 -0.91 FBgn0002528 -0.9 FBgn0036617 -1.33 FBgn0029590 0.52 FBgn0040376 -0.8 FBgn0033015 1.32 FBgn0033241 -0.72 FBgn0020620 1.01 FBgn0035692 -0.17 FBgn0034956 -0.85 FBgn0030587 1.24 FBgn0261284 0.68 FBgn0053172 0.64 FBgn0034534 -1.4 FBgn0004876 -1.18 FBgn0033115 -1.09 FBgn0035772 -0.6 FBgn0035858 0.63 FBgn0031531 -0.94 FBgn0038512 -0.27 FBgn0027605 -0.98 FBgn0036246 0.27 FBgn0030318 -1.37 FBgn0036179 -1.83 FBgn0031322 0.91 FBgn0036547 -1.82 FBgn0039075 -1.76 FBgn0031752 0.47 FBgn0034646 -2.03 FBgn0002733 -0.64 FBgn0002577 0.41 FBgn0034876 -0.89 FBgn0050349 -0.89 FBgn0051157 0.77 FBgn0030993 -0.53 FBgn0058042 0.88 FBgn0038436 -1.44 FBgn0039664 -1.03 FBgn0027529 -0.59 FBgn0014849 -0.48 FBgn0038631 0.89 FBgn0030770 -0.48 FBgn0034761 -1.03 FBgn0038388 -1.22 FBgn0027535 0.14 FBgn0029882 -1.15 FBgn0052695 -0.7 FBgn0034221 -1.98 FBgn0029728 0.8 FBgn0035139 1.24 FBgn0000054 -0.74 FBgn0041186 1.1 FBgn0067311 -0.78 FBgn0039208 0.64 FBgn0028526 -0.44 FBgn0051244 -1.96 FBgn0036702 -1.28 FBgn0032751 -0.79 FBgn0029685 -1.16 FBgn0050384 -1.4 FBgn0035358 -1.2 FBgn0039671 -0.85 FBgn0037144 -1.17 FBgn0029523 -1.46 FBgn0053454 0.71 FBgn0261046 0.69 FBgn0026239 1.02 FBgn0051697 -0.85 FBgn0027091 -1.53 FBgn0033998 -2.4 FBgn0031070 -1.44 FBgn0034476 -1.75 FBgn0029769 -1.73 FBgn0005677 1.33 FBgn0001321 0.74 FBgn0035429 0.11 FBgn0036654 1.11 FBgn0036610 -1.22 FBgn0024958 0.4 FBgn0011584 0.42 FBgn0038221 -0.85 FBgn0037589 -1.23 FBgn0032358 0.19 FBgn0010803 -1.55 FBgn0039217 -0.28 FBgn0035364 1.64 FBgn0040297 1.51 FBgn0031986 -0.8 FBgn0039237 0.68 FBgn0031893 -1.09 FBgn0038183 -1.18 FBgn0040290 -0.77 FBgn0038018 -0.44 FBgn0033827 -0.59 FBgn0039676 -0.69 FBgn0020389 -0.62 FBgn0259147 -1.44 FBgn0036428 -0.82 FBgn0053481 -1.12 FBgn0036141 -1.89 FBgn0085374 -0.99 FBgn0032247 1.57 FBgn0036824 -1.57 FBgn0037501 0.89 FBgn0037108 -0.4 FBgn0036490 1.54 FBgn0020618 -1.32 FBgn0041105 -0.61 FBgn0040252 0.34 FBgn0037011 -1.77 FBgn0034903 4.11 FBgn0032124 -1.24 FBgn0031824 1.32 FBgn0035539 -1.41 FBgn0005533 3.49 FBgn0037003 0.68 FBgn0032040 0.9 FBgn0036410 -1.96 FBgn0038708 -0.99 FBgn0031128 -1 FBgn0053116 1.49 FBgn0011559 1.24 FBgn0052463 -0.99 FBgn0033906 0.33 FBgn0037678 -1.35 FBgn0038424 -0.32 FBgn0034665 -0.7 FBgn0039282 6.83 FBgn0052762 -0.89 FBgn0024352 -0.24 FBgn0050495 1.06 FBgn0037993 0.81 FBgn0004110 0.75 FBgn0024293 0.3 FBgn0039722 -1.03 FBgn0015040 -0.88 FBgn0040628 1.7 FBgn0023479 1.04 FBgn0051388 -0.16 FBgn0031186 -1.31 FBgn0000043 0.62 FBgn0031940 -1.54 FBgn0037422 -1.83 FBgn0050364 -0.72 FBgn0037539 -0.79 FBgn0032981 0.56 FBgn0038539 -1.53 FBgn0051636 -1.19 FBgn0027348 2.02 FBgn0051184 -0.49 FBgn0030121 0.42 FBgn0029924 0.63 FBgn0024943 0.03 FBgn0004394 1.53 FBgn0032625 1.07 FBgn0051659 1.84 FBgn0039507 -0.64 FBgn0035610 -0.78 FBgn0036094 5.42 FBgn0027515 -1.23 FBgn0030459 -1.06 FBgn0053640 0.66 FBgn0038947 -1.19 FBgn0011554 -1.2 FBgn0261813 -1.71 FBgn0035617 -0.85 FBgn0034294 -1.42 FBgn0031469 1.15 FBgn0085302 -1.56 FBgn0037128 -1.29 FBgn0028926 -0.48 FBgn0028424 -1.74 FBgn0024330 2.1 FBgn0016053 0.52 FBgn0033856 -1.33 FBgn0026371 -0.74 FBgn0000477 0.44 FBgn0032276 0.04 FBgn0035852 -0.72 FBgn0062978 -1.44 FBgn0039849 -1.67 FBgn0032804 0.89 FBgn0036995 -1.71 FBgn0038464 2.13 FBgn0036794 -0.6 FBgn0051832 0.47 FBgn0259168 -0.54 FBgn0015553 -1.27 FBgn0041195 1.43 FBgn0051647 0.78 FBgn0053124 -0.73 FBgn0038901 -1.27 FBgn0037449 -1.01 FBgn0034824 0.42 FBgn0261065 -1.21 FBgn0039069 0.87 FBgn0036935 -0.62 FBgn0036125 -0.85 FBgn0050355 -1.3 FBgn0030834 0.61 FBgn0021847 -0.53 FBgn0032006 1.65 FBgn0033268 1.12 FBgn0014464 0.82 FBgn0034105 -1.59 FBgn0038105 -1.47 FBgn0035933 1.73 FBgn0035711 -0.28 FBgn0036580 0.25 FBgn0039190 -0.28 FBgn0033271 -0.68 FBgn0036771 0.33 FBgn0033955 -1.48 FBgn0039000 -0.63 FBgn0004587 -0.75 FBgn0261930 1.53 FBgn0250874 0.56 FBgn0043535 -2.43 FBgn0030039 -0.98 FBgn0004636 1.44 FBgn0034144 1.41 FBgn0051176 1.22 FBgn0064237 1.7 FBgn0250824 1.08 FBgn0086697 0.45 FBgn0034392 0.93 FBgn0032740 -1.16 FBgn0051664 2.41 FBgn0037707 0.91 FBgn0260635 11.37 FBgn0039026 0.64 FBgn0032783 -0.5 FBgn0029589 -0.77 FBgn0261797 0.94 FBgn0033137 0.45 FBgn0036263 1.29 FBgn0260396 -1.48 FBgn0038346 -1.32 FBgn0032851 0.9 FBgn0033515 0.88 FBgn0033954 -0.18 FBgn0003747 -1.09 FBgn0085192 -0.42 FBgn0035707 1.8 FBgn0261803 -0.85 FBgn0039669 -1.3 FBgn0032530 -0.74 FBgn0035907 -0.57 FBgn0029157 -0.8 FBgn0032264 0.3 FBgn0015663 -0.68 FBgn0034318 -0.66 FBgn0016070 0.96 FBgn0259711 0.8 FBgn0029935 2.57 FBgn0035844 1.13 FBgn0260779 0.67 FBgn0051826 -1.12 FBgn0003655 -1.29 FBgn0029596 2.25 FBgn0050395 -1.08 FBgn0004554 0.94 FBgn0032632 0.94 FBgn0005561 0.93 FBgn0031566 0.35 FBgn0030452 1.15 FBgn0039197 1.12 FBgn0033248 -1.41 FBgn0050468 -1.86 FBgn0036349 1.34 FBgn0002521 0.95 FBgn0000281 0.79 FBgn0035399 -0.39 FBgn0038858 0.91 FBgn0261239 1.15 FBgn0024973 -0.26 FBgn0052594 1.36 FBgn0027378 0.36 FBgn0016641 1.23 FBgn0259213 1.88 FBgn0041234 -0.52 FBgn0031849 -1.68 FBgn0261270 -0.27 FBgn0031081 0.29 FBgn0037418 -1.68 FBgn0036462 -1.08 FBgn0031519 -0.86 FBgn0003313 -0.69 FBgn0032883 -2.29 FBgn0037202 -0.3 FBgn0026428 -0.95 FBgn0039854 -0.52 FBgn0028515 -0.32 FBgn0034500 2.41 FBgn0005658 -1.48 FBgn0036628 -0.46 FBgn0035169 1.94 FBgn0051674 -0.64 FBgn0039743 0.32 FBgn0031785 -0.32 FBgn0015269 0.4 FBgn0031118 1.98 FBgn0024189 3.54 FBgn0038037 -0.97 FBgn0032054 -0.66 FBgn0038363 -0.27 FBgn0037660 -1.39 FBgn0039435 -1.28 FBgn0032228 -0.6 FBgn0004885 -0.39 FBgn0042132 -1.93 FBgn0052425 0.77 FBgn0035545 -1.23 FBgn0053337 1.02 FBgn0259748 -0.54 FBgn0037570 1.13 FBgn0034794 -0.29 FBgn0027280 -1.46 FBgn0035833 -0.44 FBgn0037279 -1.75 FBgn0002787 0.27 FBgn0038878 -0.55 FBgn0025629 -0.8 FBgn0031651 -1.73 FBgn0034383 0.47 FBgn0035160 -0.8 FBgn0014011 -1 FBgn0031351 -0.55 FBgn0052182 -0.61 FBgn0024754 -1.12 FBgn0029663 0.64 FBgn0029703 -0.52 FBgn0032181 -1.79 FBgn0032717 -1.17 FBgn0025638 -1.21 FBgn0038056 -0.31 FBgn0028664 -0.95 FBgn0050409 0.6 FBgn0037772 0.96 FBgn0038966 -2.03 FBgn0040011 0.68 FBgn0032910 0.83 FBgn0035383 -1.28 FBgn0261379 -1.77 FBgn0032467 0.54 FBgn0033261 -1.62 FBgn0037244 1.56 FBgn0031493 1.33 FBgn0004465 -1.74 FBgn0052226 -1.73 FBgn0011669 -1.85 FBgn0000032 1.42 FBgn0053060 -1.1 FBgn0010382 6.55 FBgn0052138 -1.31 FBgn0032732 1.14 FBgn0034509 0.31 FBgn0261708 -0.17 FBgn0039107 -0.78 FBgn0040813 0.72 FBgn0026149 1.26 FBgn0032397 0.68 FBgn0021967 1.07 FBgn0052181 0.48 FBgn0025635 -1.05 FBgn0037164 0.75 FBgn0037239 0.08 FBgn0033207 -0.96 FBgn0051551 0.93 FBgn0032008 -0.68 FBgn0038419 -0.84 FBgn0037817 -1.07 FBgn0034684 -0.96 FBgn0053263 0.77 FBgn0004666 0.23 FBgn0086784 -1.15 FBgn0259831 -0.14 FBgn0261914 -1.56 FBgn0042173 -1.98 FBgn0085483 -1.75 FBgn0032406 -1.01 FBgn0010877 -1.19 FBgn0035152 0.47 FBgn0000114 0.53 FBgn0019624 -1.29 FBgn0027597 -1 FBgn0036950 -1.88 FBgn0051441 -1.67 FBgn0035440 -2.13 FBgn0250844 0.18 FBgn0035871 0.37 FBgn0026873 0.62 FBgn0000139 0.98 FBgn0031268 -0.26 FBgn0034271 0.36 FBgn0025879 1.48 FBgn0032577 0.91 FBgn0035649 -1.12 FBgn0029997 -1.64 FBgn0024983 -0.25 FBgn0033544 0.81 FBgn0260718 -0.33 FBgn0032473 0.41 FBgn0036846 -0.91 FBgn0037884 0.4 FBgn0029858 -0.73 FBgn0038237 -1.73 FBgn0038063 -1.35 FBgn0035727 -1.31 FBgn0038597 1.05 FBgn0029980 0.32 FBgn0051496 -0.33 FBgn0054033 0.33 FBgn0261597 3.24 FBgn0039925 1.17 FBgn0013325 5 FBgn0039979 0.75 FBgn0041579 -0.84 FBgn0039331 1.18 FBgn0038400 0.53 FBgn0259978 0.95 FBgn0038200 -0.38 FBgn0012037 -0.29 FBgn0039150 -2.29 FBgn0003567 -1.11 FBgn0036837 -1.08 FBgn0053769 0.82 FBgn0032750 0.62 FBgn0038619 2.1 FBgn0035065 0.12 FBgn0051103 1.36 FBgn0030078 -0.15 FBgn0260873 0.4 FBgn0031775 1.88 FBgn0001108 -1.52 FBgn0031974 -1.46 FBgn0039620 -0.63 FBgn0040259 0.14 FBgn0039860 -1.04 FBgn0039836 5.36 FBgn0036760 0.7 FBgn0011217 -0.8 FBgn0033623 -1.54 FBgn0032269 -0.72 FBgn0034191 -1.91 FBgn0028703 -0.78 FBgn0027930 0.91 FBgn0031273 -1.12 FBgn0035257 0.81 FBgn0052638 -0.88 FBgn0029708 1.41 FBgn0028984 -0.3 FBgn0033374 -1.48 FBgn0032934 -0.72 FBgn0033081 -0.72 FBgn0015270 -2.3 FBgn0003866 -1.51 FBgn0085459 -0.69 FBgn0005670 -0.99 FBgn0004449 -0.51 FBgn0051719 -1.35 FBgn0039783 -0.45 FBgn0039339 -1.09 FBgn0025679 0.86 FBgn0014454 -1.7 FBgn0005558 0.82 FBgn0051530 0.55 FBgn0050036 -1.65 FBgn0032770 -1.07 FBgn0033812 -1.05 FBgn0032178 -0.68 FBgn0025680 0.86 FBgn0039019 2.63 FBgn0011224 -2.46 FBgn0039311 -1.23 FBgn0037667 1.85 FBgn0014395 -0.72 FBgn0031909 0.22 FBgn0035593 -1.65 FBgn0032184 -1.2 FBgn0035813 -0.78 FBgn0037665 1.19 FBgn0034092 -0.82 FBgn0050049 14.91 FBgn0004795 -1.61 FBgn0053966 -1.15 FBgn0037838 -0.46 FBgn0034986 -1.17 FBgn0061200 9.49 FBgn0035020 0.88 FBgn0036899 -1.47 FBgn0061197 -0.27 FBgn0015509 0.87 FBgn0086604 0.89 FBgn0036608 0.31 FBgn0034293 -1.64 FBgn0036531 -1.41 FBgn0037149 0.7 FBgn0037566 -1.44 FBgn0050485 1.49 FBgn0031470 -0.51 FBgn0036677 -0.51 FBgn0038323 1.11 FBgn0016013 -1.57 FBgn0030592 1.39 FBgn0004170 -1.44 FBgn0040102 -1.42 FBgn0033808 -1.04 FBgn0027586 -0.57 FBgn0030746 0.42 FBgn0036569 1.84 FBgn0010411 2.99 FBgn0039427 -0.77 FBgn0039420 0.25 FBgn0038585 0.76 FBgn0034712 0.59 FBgn0036474 1.21 FBgn0032923 -0.94 FBgn0000210 -1.16 FBgn0004895 -0.67 FBgn0039113 -0.1 FBgn0020646 1.35 FBgn0005593 2.63 FBgn0035750 0.7 FBgn0010197 -1.17 FBgn0013678 0.98 FBgn0017429 -1.93 FBgn0037263 1.12 FBgn0085426 -1.37 FBgn0040959 0.58 FBgn0030181 0.82 FBgn0261014 -1.17 FBgn0036589 -1.43 FBgn0033984 -0.79 FBgn0035798 1.14 FBgn0032162 -1.48 FBgn0034464 -1.3 FBgn0004379 1.36 FBgn0004175 -0.56 FBgn0039543 0.4 FBgn0031865 -0.89 FBgn0038871 -0.68 FBgn0035640 -0.64 FBgn0020368 -0.98 FBgn0004372 0.97 FBgn0250788 -1.24 FBgn0031644 -0.82 FBgn0033912 2.7 FBgn0085440 0.83 FBgn0034423 0.68 FBgn0038762 -1.49 FBgn0030894 -0.88 FBgn0038914 -0.63 FBgn0030829 1.74 FBgn0036393 -1.29 FBgn0031805 -1.23 FBgn0035195 -2.15 FBgn0037650 0.99 FBgn0039157 -1.1 FBgn0023076 -0.51 FBgn0028506 -2.03 FBgn0038428 -0.69 FBgn0031233 0.89 FBgn0035896 -1.42 FBgn0030914 1.01 FBgn0029804 -1.29 FBgn0031397 -0.93 FBgn0027504 -1.37 FBgn0052436 -1.67 FBgn0039993 0.59 FBgn0026320 0.05 FBgn0011591 1.17 FBgn0259481 -0.53 FBgn0039766 2.21 FBgn0037396 -0.72 FBgn0038320 0.25 FBgn0026255 -1.44 FBgn0034735 -1.67 FBgn0053998 -0.78 FBgn0022720 -1.42 FBgn0041252 0.5 FBgn0028949 0.81 FBgn0036136 -1.1 FBgn0051207 -0.26 FBgn0029966 1.25 FBgn0030071 0.74 FBgn0011474 -0.56 FBgn0000721 0.28 FBgn0030752 -0.31 FBgn0087021 -1.03 FBgn0033303 1.47 FBgn0051105 -1.91 FBgn0024804 0.19 FBgn0050157 -0.66 FBgn0010247 -0.93 FBgn0259220 -2.37 FBgn0013684 -0.82 FBgn0044871 -2.21 FBgn0031523 -0.24 FBgn0053283 0.65 FBgn0026409 -0.99 FBgn0039500 1.08 FBgn0051065 -1.09 FBgn0032961 -0.19 FBgn0037215 1.09 FBgn0085403 -1.62 FBgn0051788 0.92 FBgn0002069 0.81 FBgn0019809 1.53 FBgn0052657 0.92 FBgn0039972 2.45 FBgn0034631 0.87 FBgn0010014 -1.11 FBgn0005694 0.66 FBgn0051472 0.46 FBgn0034454 0.13 FBgn0003022 1.26 FBgn0033948 -0.64 FBgn0001247 0.47 FBgn0036913 1.39 FBgn0036816 0.79 FBgn0029134 1.56 FBgn0027572 -1.89 FBgn0053758 1.35 FBgn0027107 -1.16 FBgn0260943 1.14 FBgn0031410 -0.63 FBgn0033609 1.57 FBgn0052086 -0.56 FBgn0051457 0.91 FBgn0031139 1.71 FBgn0039788 0.29 FBgn0038158 -0.96 FBgn0034157 -0.86 FBgn0037385 -1.42 FBgn0052655 1.16 FBgn0023096 0.9 FBgn0029868 0.91 FBgn0036207 -1.01 FBgn0030053 0.94 FBgn0036494 -1.73 FBgn0000246 -1.53 FBgn0260744 0.56 FBgn0039488 -2.44 FBgn0020496 -1.61 FBgn0067629 -1.02 FBgn0003227 -1.24 FBgn0035315 -1.73 FBgn0053970 1.18 FBgn0040636 1.6 FBgn0013998 -0.95 FBgn0031238 -0.6 FBgn0038306 1.81 FBgn0032509 0.6 FBgn0035552 1.98 FBgn0016920 0.91 FBgn0034585 0.16 FBgn0050082 -1.38 FBgn0046296 -1.3 FBgn0027950 -1.23 FBgn0085386 1.26 FBgn0039916 0.08 FBgn0031649 -0.21 FBgn0035147 0.42 FBgn0032919 2.22 FBgn0011763 5.4 FBgn0033090 0.66 FBgn0037083 0.23 FBgn0051469 0.41 FBgn0031661 -0.81 FBgn0038918 0.6 FBgn0037322 0.07 FBgn0037514 -0.2 FBgn0035335 -1.02 FBgn0000253 -1.02 FBgn0053958 -0.78 FBgn0029128 0.69 FBgn0259142 -1.53 FBgn0026702 -1.99 FBgn0015808 -1.07 FBgn0032219 1 FBgn0034087 -2.04 FBgn0038810 -0.1 FBgn0039163 -1.51 FBgn0038356 -0.72 FBgn0053179 0.57 FBgn0026619 0.87 FBgn0038550 0.79 FBgn0034816 0.96 FBgn0051272 -0.43 FBgn0034838 -1.47 FBgn0034618 -1.13 FBgn0015037 -0.97 FBgn0035483 0.33 FBgn0033258 -0.69 FBgn0038704 -1.68 FBgn0040348 -1.19 FBgn0031631 0.92 FBgn0032482 -1.59 FBgn0032968 -0.49 FBgn0015376 -1.67 FBgn0022709 0.32 FBgn0051337 -1.44 FBgn0031692 -0.46 FBgn0035228 -1.14 FBgn0035589 -0.32 FBgn0036992 0.95 FBgn0261294 -1.24 FBgn0051709 -0.61 FBgn0039052 -0.54 FBgn0037845 0.49 FBgn0039904 -0.94 FBgn0030276 -1.18 FBgn0041248 0.86 FBgn0040367 -0.51 FBgn0025286 2.34 FBgn0033665 -0.65 FBgn0034275 -0.47 FBgn0050039 0.63 FBgn0086736 1.04 FBgn0051779 0.99 FBgn0031231 -1.77 FBgn0030099 -0.68 FBgn0029913 0.99 FBgn0038771 -0.98 FBgn0003165 -1.77 FBgn0260653 1.63 FBgn0261593 2.38 FBgn0030274 -0.93 FBgn0036689 -0.26 FBgn0037715 0.77 FBgn0011659 -0.82 FBgn0039476 0.43 FBgn0027509 -1.49 FBgn0032791 0.92 FBgn0032489 -0.68 FBgn0014189 6.29 FBgn0036233 -0.28 FBgn0261060 -1.66 FBgn0042693 -0.35 FBgn0035260 1.44 FBgn0000723 0.8 FBgn0261566 -1.7 FBgn0037529 -1.52 FBgn0038476 0.55 FBgn0038595 -1 FBgn0032416 0.09 FBgn0036380 -0.34 FBgn0033960 2.93 FBgn0024806 0.55 FBgn0035034 -0.14 FBgn0015558 -1.12 FBgn0032957 -0.22 FBgn0003660 0.53 FBgn0034067 -0.92 FBgn0004168 -0.1 FBgn0032061 -0.86 FBgn0025633 -0.77 FBgn0038722 0.81 FBgn0038568 -1.27 FBgn0033650 1.06 FBgn0003002 -0.5 FBgn0031461 -1.22 FBgn0029798 -1.18 FBgn0013432 -1.09 FBgn0052499 -0.7 FBgn0024227 0.91 FBgn0034253 1.2 FBgn0051810 -1.82 FBgn0027499 -1.48 FBgn0030868 -1.83 FBgn0032154 0.42 FBgn0031377 0.75 FBgn0037797 -1.16 FBgn0032838 -1.8 FBgn0031058 0.15 FBgn0038243 -1.11 FBgn0260945 -0.99 FBgn0013765 -1.58 FBgn0040582 -1.17 FBgn0038239 -0.81 FBgn0039224 0.99 FBgn0028573 0.9 FBgn0034753 -0.58 FBgn0036053 1.24 FBgn0037551 -1.07 FBgn0035666 -1.38 FBgn0033402 -0.81 FBgn0020238 -1.31 FBgn0003892 -0.43 FBgn0037632 0.72 FBgn0052280 0.96 FBgn0032465 -0.28 FBgn0040602 -0.69 FBgn0039589 -0.89 FBgn0024734 -0.52 FBgn0085388 2.28 FBgn0043005 -0.43 FBgn0000463 -0.99 FBgn0024285 -1.28 FBgn0040699 -0.82 FBgn0052856 0.93 FBgn0024920 -2 FBgn0050361 1.76 FBgn0035046 -0.94 FBgn0051562 -0.32 FBgn0015522 -0.89 FBgn0020415 1.38 FBgn0261872 1.46 FBgn0021944 -0.97 FBgn0033348 0.55 FBgn0259209 -1.55 FBgn0030366 -1.71 FBgn0032395 -1.03 FBgn0083961 2.2 FBgn0050280 0.93 FBgn0053291 3.99 FBgn0039580 -0.78 FBgn0036063 0.5 FBgn0051681 -1.6 FBgn0002031 0.14 FBgn0037834 0.76 FBgn0260639 -0.84 FBgn0261799 -0.48 FBgn0032198 0.95 FBgn0000313 0.1 FBgn0025640 0.9 FBgn0085473 0.36 FBgn0032287 -1.01 FBgn0003475 -0.6 FBgn0037742 -1.28 FBgn0052284 -0.92 FBgn0259916 -1.13 FBgn0038377 1.1 FBgn0025642 -0.97 FBgn0003268 -1.16 FBgn0051848 1.63 FBgn0039564 1.82 FBgn0037812 0.49 FBgn0040777 0.49 FBgn0062449 1.4 FBgn0050278 -2.01 FBgn0026370 -1.18 FBgn0260861 -0.67 FBgn0037671 -0.3 FBgn0038127 -1.47 FBgn0032345 0.53 FBgn0030494 -0.51 FBgn0029521 0.27 FBgn0034888 0.32 FBgn0029885 -0.72 FBgn0031837 -1.42 FBgn0030465 -1.17 FBgn0032280 0.34 FBgn0054006 -2.04 FBgn0038658 -0.83 FBgn0036335 -0.47 FBgn0036923 0.33 FBgn0032843 -0.51 FBgn0036690 0.8 FBgn0037698 -1.55 FBgn0259735 -1.72 FBgn0004656 -1.7 FBgn0032858 1.4 FBgn0036949 -2.04 FBgn0052845 -0.48 FBgn0033901 0.24 FBgn0040755 -1.05 FBgn0050440 -1.67 FBgn0035860 0.57 FBgn0031930 0.9 FBgn0052344 1.33 FBgn0010097 0.51 FBgn0019661 -0.57 FBgn0036735 -0.1 FBgn0033307 1.44 FBgn0036459 -0.11 FBgn0027790 -0.64 FBgn0085358 -0.69 FBgn0024740 0.97 FBgn0037377 -1 FBgn0000715 -1.01 FBgn0039869 -0.99 FBgn0038552 0.79 FBgn0039175 -1.32 FBgn0032129 -1.16 FBgn0023526 -1.04 FBgn0259246 1.66 FBgn0037074 -0.15 FBgn0036450 0.42 FBgn0003016 -0.97 FBgn0050430 -2.7 FBgn0030086 -0.5 FBgn0036881 -2.03 FBgn0016701 -1.82 FBgn0050265 -0.94 FBgn0034408 0.34 FBgn0027547 0.61 FBgn0029837 0.65 FBgn0051041 1.2 FBgn0027500 -1.53 FBgn0029962 -0.87 FBgn0011270 -0.53 FBgn0034808 1.88 FBgn0031904 -0.81 FBgn0031043 -1.55 FBgn0034361 -0.7 FBgn0028561 -0.93 FBgn0038607 -2.17 FBgn0032025 -1.71 FBgn0000564 0.39 FBgn0031051 -0.77 FBgn0033761 1.36 FBgn0034282 0.35 FBgn0261553 1.36 FBgn0030936 0.28 FBgn0035236 0.8 FBgn0029608 1.1 FBgn0031436 1.42 FBgn0027101 -1.15 FBgn0033716 -0.33 FBgn0028844 -1.03 FBgn0001565 1.37 FBgn0015600 -1.12 FBgn0032313 -1.09 FBgn0039030 1.63 FBgn0005586 -0.47 FBgn0040294 1.06 FBgn0261429 0.55 FBgn0031626 -0.79 FBgn0032644 -0.71 FBgn0030384 0.97 FBgn0052170 2.37 FBgn0034452 0.65 FBgn0032774 1.77 FBgn0030802 -1.06 FBgn0031496 -1.36 FBgn0002938 -1.02 FBgn0041183 1.43 FBgn0259923 -0.87 FBgn0002626 3.88 FBgn0034962 -1.1 FBgn0030093 1.26 FBgn0017566 -0.95 FBgn0029730 1.06 FBgn0003598 -1.04 FBgn0052082 0.7 FBgn0030391 1.31 FBgn0032891 0.16 FBgn0036767 -0.43 FBgn0031381 -0.07 FBgn0010395 1.09 FBgn0004003 0.43 FBgn0038536 1.04 FBgn0032665 0.99 FBgn0028534 1.45 FBgn0085407 1.27 FBgn0039594 -1.12 FBgn0038302 -0.3 FBgn0001248 -1.39 FBgn0045035 1.66 FBgn0033766 -0.18 FBgn0085371 1.24 FBgn0002926 1.26 FBgn0038003 -0.43 FBgn0027494 -0.82 FBgn0030596 2.18 FBgn0039003 0.28 FBgn0033005 -0.79 FBgn0033754 1.2 FBgn0038146 4.22 FBgn0036018 -0.11 FBgn0031741 -1.6 FBgn0004594 -1.23 FBgn0051861 -1.06 FBgn0033097 0.59 FBgn0086898 -0.27 FBgn0004389 -0.56 FBgn0051361 -1.41 FBgn0051029 1.1 FBgn0259242 1.32 FBgn0086908 -2.89 FBgn0260456 0.76 FBgn0039373 -0.82 FBgn0002431 -1.74 FBgn0030725 0.89 FBgn0037530 -1.08 FBgn0019972 -0.42 FBgn0259100 -1.09 FBgn0036827 -1.66 FBgn0039403 0.66 FBgn0000181 0.7 FBgn0033657 1.45 FBgn0053505 0.32 FBgn0021796 1.26 FBgn0030484 -0.76 FBgn0029942 0.33 FBgn0031943 -1.95 FBgn0026056 -0.07 FBgn0003979 0.5 FBgn0036176 -0.07 FBgn0033789 -0.5 FBgn0033280 -1.24 FBgn0030520 -1.2 FBgn0038014 -1.85 FBgn0033145 -0.73 FBgn0043841 -1.04 FBgn0036013 -0.81 FBgn0029737 -1.83 FBgn0024236 -1.22 FBgn0025835 1.83 FBgn0032945 -0.62 FBgn0037646 -0.63 FBgn0039251 -1.74 FBgn0030103 -0.64 FBgn0026431 0.32 FBgn0032370 -0.47 FBgn0028879 -1.18 FBgn0032660 0.6 FBgn0033982 -0.9 FBgn0040211 -0.77 FBgn0034289 -1.36 FBgn0025613 -0.13 FBgn0037061 0.6 FBgn0030242 -0.29 FBgn0003884 3.84 FBgn0035762 -1.21 FBgn0038893 -1.81 FBgn0003295 -0.33 FBgn0036487 -0.27 FBgn0085383 1.03 FBgn0014024 -1.65 FBgn0038649 1.42 FBgn0031723 -0.3 FBgn0035754 1.15 FBgn0032294 -0.27 FBgn0036248 0.68 FBgn0052473 1.41 FBgn0031676 0.75 FBgn0035432 -2.01 FBgn0031601 -0.53 FBgn0036353 1.04 FBgn0058298 -1.6 FBgn0036749 -0.18 FBgn0051418 0.7 FBgn0037413 0.5 FBgn0036886 -0.26 FBgn0031302 -0.93 FBgn0027609 -1.14 FBgn0010551 -1.01 FBgn0051269 0.69 FBgn0027560 -1.55 FBgn0035461 -1.43 FBgn0031034 0.52 FBgn0033074 1.23 FBgn0030013 -1.68 FBgn0004227 1.77 FBgn0030508 -0.39 FBgn0038492 0.1 FBgn0037900 -0.73 FBgn0031882 0.37 FBgn0050109 1.22 FBgn0000120 0.6 FBgn0034553 2.52 FBgn0051031 1.69 FBgn0011230 -0.84 FBgn0039773 -1.29 FBgn0034913 1.03 FBgn0034368 -1.12 FBgn0034850 -1.1 FBgn0040670 0.73 FBgn0003374 -0.67 FBgn0035563 1.97 FBgn0036040 -1.36 FBgn0051139 0.21 FBgn0036482 1.22 FBgn0039415 0.47 FBgn0035211 -1.34 FBgn0259823 -0.08 FBgn0034159 -1.49 FBgn0015790 0.76 FBgn0035511 -0.51 FBgn0033926 -1.84 FBgn0033862 0.87 FBgn0033574 0.38 FBgn0030954 -1.01 FBgn0035914 -0.92 FBgn0036962 -1.7 FBgn0031181 -1.32 FBgn0039681 -0.58 FBgn0051526 1.22 FBgn0038926 -0.96 FBgn0038047 0.59 FBgn0039637 -1.05 FBgn0030552 -1.01 FBgn0028906 -1.19 FBgn0037466 -1.58 FBgn0050098 -1.63 FBgn0050502 1.63 FBgn0032546 -0.47 FBgn0051792 -1.23 FBgn0004915 0.89 FBgn0034129 0.36 FBgn0035189 0.65 FBgn0039009 -1.73 FBgn0051642 -1.63 FBgn0050148 1.7 FBgn0036709 -0.54 FBgn0243513 -1.72 FBgn0051528 0.97 FBgn0038198 0.18 FBgn0085292 -0.3 FBgn0086130 -1.5 FBgn0027583 -1.11 FBgn0086704 -0.87 FBgn0031251 -0.86 FBgn0029648 1.32 FBgn0037298 -1.74 FBgn0010621 -1.25 FBgn0011286 0.5 FBgn0041094 1.19 FBgn0037439 1.34 FBgn0030653 1.57 FBgn0086902 -1.5 FBgn0053458 0.7 FBgn0026083 -0.21 FBgn0030010 -1.61 FBgn0039152 -0.73 FBgn0028952 -1.22 FBgn0038647 -0.71 FBgn0039343 -0.47 FBgn0031285 0.32 FBgn0023511 -0.87 FBgn0030611 -0.76 FBgn0039538 0.66 FBgn0039555 -0.33 FBgn0029689 -0.22 FBgn0035413 0.89 FBgn0039277 -0.34 FBgn0037915 -0.2 FBgn0030878 -1.01 FBgn0053555 -0.68 FBgn0032925 0.36 FBgn0036918 0.59 FBgn0261286 -0.74 FBgn0027334 0.34 FBgn0050163 -0.22 FBgn0040666 1.25 FBgn0031549 5.85 FBgn0261722 -0.83 FBgn0035076 0.61 FBgn0033648 -0.64 FBgn0039713 5.62 FBgn0086913 1.59 FBgn0036814 1.24 FBgn0051974 1.78 FBgn0033527 -0.12 FBgn0004624 0.18 FBgn0011272 5.71 FBgn0052704 -0.96 FBgn0040364 1.23 FBgn0031762 -2.06 FBgn0036997 -0.76 FBgn0031116 -1.22 FBgn0038258 -1.67 FBgn0001257 -0.31 FBgn0038675 -0.51 FBgn0034201 -1.16 FBgn0261801 -0.26 FBgn0085378 -2.09 FBgn0036116 -0.53 FBgn0261456 -1.77 FBgn0259791 0.79 FBgn0031730 -0.88 FBgn0000640 -0.31 FBgn0039059 1.18 FBgn0027865 -0.12 FBgn0050413 -1.63 FBgn0032336 -1.67 FBgn0037757 -0.67 FBgn0261625 0.58 FBgn0022984 -0.4 FBgn0031873 -0.9 FBgn0032387 -0.57 FBgn0051151 1.58 FBgn0015565 -2.52 FBgn0028374 0.89 FBgn0002562 0.42 FBgn0027553 0.46 FBgn0259715 0.97 FBgn0029603 1.24 FBgn0030694 -0.67 FBgn0020640 0.35 FBgn0039801 -0.07 FBgn0035891 -0.94 FBgn0011455 0.23 FBgn0086610 1.11 FBgn0028850 -0.22 FBgn0015816 1.25 FBgn0032871 0.72 FBgn0010105 -0.74 FBgn0036321 -1.05 FBgn0034705 -1.09 FBgn0086608 0.74 FBgn0036406 -0.91 FBgn0029658 1.57 FBgn0039225 -0.75 FBgn0025355 -1.39 FBgn0027259 -0.46 FBgn0036287 -0.9 FBgn0035574 0.89 FBgn0037611 -0.39 FBgn0023416 -1.27 FBgn0024833 -1.15 FBgn0008651 -0.8 FBgn0033873 1.05 FBgn0053514 -1.65 FBgn0022700 -0.53 FBgn0040958 0.81 FBgn0039909 -1.53 FBgn0034210 -0.98 FBgn0261396 -0.51 FBgn0027525 1.24 FBgn0039087 -0.98 FBgn0034661 -1.18 FBgn0033056 0.78 FBgn0005648 1.92 FBgn0035204 -1.52 FBgn0259099 -0.82 FBgn0036104 0.5 FBgn0051323 -0.54 FBgn0037131 -1.53 FBgn0063499 1.83 FBgn0031513 -1.71 FBgn0031357 0.34 FBgn0032493 -0.92 FBgn0039080 0.78 FBgn0038256 0.78 FBgn0004432 0.25 FBgn0250816 1.01 FBgn0259222 1.05 FBgn0041097 -0.71 FBgn0038852 1.72 FBgn0023517 -1.28 FBgn0033264 0.5 FBgn0000644 1.31 FBgn0029155 -0.12 FBgn0038167 1.72 FBgn0040466 0.67 FBgn0038354 -2.69 FBgn0015924 0.9 FBgn0053300 -1.08 FBgn0038269 2.22 FBgn0036225 0.62 FBgn0034899 1.74 FBgn0038889 0.73 FBgn0003559 1.77 FBgn0035270 -1.4 FBgn0035151 0.74 FBgn0039844 0.08 FBgn0023521 -1.27 FBgn0038266 -0.83 FBgn0033508 1.31 FBgn0045866 0.76 FBgn0038642 -2.39 FBgn0038567 -1.14 FBgn0033244 -0.48 FBgn0051872 0.79 FBgn0053792 -1.12 FBgn0038219 -0.91 FBgn0000212 0.98 FBgn0038805 -0.7 FBgn0032151 -1.52 FBgn0260933 0.11 FBgn0050287 1.19 FBgn0003326 0.97 FBgn0031757 0.47 FBgn0032066 -1.6 FBgn0030050 0.26 FBgn0033153 -1.12 FBgn0030007 -1.55 FBgn0010611 1.26 FBgn0261067 0.48 FBgn0035393 -2.11 FBgn0034354 0.65 FBgn0034924 1.09 FBgn0023197 -0.56 FBgn0036781 -0.71 FBgn0029791 -0.68 FBgn0001297 1.18 FBgn0030338 -0.56 FBgn0029724 0.28 FBgn0027621 0.76 FBgn0037786 0.65 FBgn0036202 0.49 FBgn0032513 -0.6 FBgn0024364 -0.29 FBgn0036072 -1.13 FBgn0035410 0.5 FBgn0040087 0.14 FBgn0040553 -1 FBgn0004855 2.12 FBgn0038131 -1.39 FBgn0034128 0.78 FBgn0031638 0.77 FBgn0032943 -0.95 FBgn0085313 -1.49 FBgn0032721 -1.35 FBgn0261858 -0.75 FBgn0003206 2.13 FBgn0035679 -0.99 FBgn0038547 -2.58 FBgn0038467 -1.41 FBgn0034173 0.48 FBgn0033366 -1.13 FBgn0004649 -1.05 FBgn0037561 -0.73 FBgn0052376 0.84 FBgn0038206 -0.47 FBgn0011569 1.4 FBgn0033726 -0.32 FBgn0037975 -0.24 FBgn0052263 -1.43 FBgn0030859 -1.28 FBgn0031392 -1.51 FBgn0041625 -1.93 FBgn0037008 0.49 FBgn0034511 0.69 FBgn0033330 0.53 FBgn0260442 0.71 FBgn0032223 0.48 FBgn0002906 -1.96 FBgn0259192 -0.61 FBgn0036266 -0.56 FBgn0010263 -2.22 FBgn0085234 -2.47 FBgn0032971 -1.42 FBgn0035476 -0.84 FBgn0038450 0.5 FBgn0050118 1.38 FBgn0032523 -1.61 FBgn0038783 -1.42 FBgn0000416 -0.99 FBgn0036078 -1.35 FBgn0039718 1.5 FBgn0032698 -0.5 FBgn0044812 -1.28 FBgn0036187 -0.72 FBgn0028406 1.32 FBgn0031309 -1.43 FBgn0052834 0.45 FBgn0050172 1.1 FBgn0031878 0.39 FBgn0004868 0.91 FBgn0034724 -1.46 FBgn0034196 -1.06 FBgn0036363 0.51 FBgn0004861 0.7 FBgn0038115 0.76 FBgn0039313 -1.81 FBgn0086689 -2 FBgn0063492 1.09 FBgn0030266 0.58 FBgn0037265 -0.55 FBgn0037101 -1.67 FBgn0040323 -1.71 FBgn0052260 -0.99 FBgn0003302 0.37 FBgn0052829 4.75 FBgn0038598 -2.29 FBgn0033814 -1.91 FBgn0040391 -0.39 FBgn0030162 1.33 FBgn0011704 -0.94 FBgn0023549 0.53 FBgn0034879 -0.52 FBgn0030257 0.84 FBgn0033463 -1 FBgn0031688 0.28 FBgn0003942 3.13 FBgn0031659 1.36 FBgn0031995 1.04 FBgn0032753 -1.41 FBgn0029825 0.73 FBgn0032888 -0.78 FBgn0052590 1.19 FBgn0016696 2.61 FBgn0036716 0.5 FBgn0031860 0.67 FBgn0036579 -1.52 FBgn0013303 -1.13 FBgn0037856 1.12 FBgn0039296 0.13 FBgn0030643 0.19 FBgn0038873 0.25 FBgn0032729 -0.62 FBgn0036154 0.31 FBgn0033170 1.25 FBgn0053642 0.46 FBgn0083978 0.9 FBgn0026176 -1.29 FBgn0031020 -1.39 FBgn0039115 1.11 FBgn0026080 1.07 FBgn0011244 -0.64 FBgn0021738 -1.49 FBgn0051230 -0.75 FBgn0022361 0.19 FBgn0034726 -1.97 FBgn0032126 -1.03 FBgn0045478 -0.51 FBgn0010422 -1.56 FBgn0029114 0.98 FBgn0002638 0.43 FBgn0028935 -0.57 FBgn0033957 -0.51 FBgn0015774 -1.59 FBgn0040075 -2.17 FBgn0033395 -1.15 FBgn0030195 -1.19 FBgn0034721 -1.14 FBgn0036204 -1.04 FBgn0000533 -0.88 FBgn0039239 -1.79 FBgn0038348 -0.95 FBgn0035849 0.88 FBgn0036783 0.46 FBgn0040318 -0.83 FBgn0260721 0.22 FBgn0260746 0.52 FBgn0259676 -0.44 FBgn0041205 -1.32 FBgn0035356 -0.23 FBgn0028884 -1.17 FBgn0026319 -1.97 FBgn0025790 1.63 FBgn0250757 -1.04 FBgn0038402 0.27 FBgn0040299 1.18 FBgn0259149 -1.33 FBgn0003716 -1.11 FBgn0086442 -0.46 FBgn0031613 -0.22 FBgn0004057 0.58 FBgn0003346 -1.01 FBgn0065109 0.29 FBgn0261058 0.61 FBgn0043533 0.39 FBgn0039748 2.14 FBgn0003447 -0.7 FBgn0030836 0.59 FBgn0031479 -0.5 FBgn0011828 0.78 FBgn0038505 0.42 FBgn0037995 0.95 FBgn0027513 1.66 FBgn0036839 -2 FBgn0015831 1.38 FBgn0026373 2.14 FBgn0035922 -1.02 FBgn0034663 0.5 FBgn0037749 -0.1 FBgn0035642 0.64 FBgn0086691 0.23 FBgn0069913 -0.74 FBgn0051759 1.42 FBgn0250842 0.97 FBgn0040493 -1.73 FBgn0036571 0.94 FBgn0033131 -1.33 FBgn0023531 3.28 FBgn0085442 1.87 FBgn0051634 -1.47 FBgn0085428 -0.9 FBgn0051661 0.29 FBgn0036214 0.38 FBgn0039270 0.3 FBgn0034152 -1.19 FBgn0002022 -1.56 FBgn0032627 -1.23 FBgn0051949 -0.92 FBgn0011290 -1.38 FBgn0025625 1.46 FBgn0051431 1.03 FBgn0050357 2.52 FBgn0053483 -0.35 FBgn0250908 -0.49 FBgn0054026 -1.16 FBgn0041232 -0.57 FBgn0026394 -1.76 FBgn0030984 -0.16 FBgn0038672 -1.21 FBgn0030306 -1.21 FBgn0034441 -0.63 FBgn0038602 -1.37 FBgn0050340 1.29 FBgn0027364 -0.15 FBgn0014007 -1.47 FBgn0030421 -1.4 FBgn0038282 0.32 FBgn0037847 -0.07 FBgn0033059 -0.15 FBgn0035931 0.83 FBgn0033993 -0.67 FBgn0035850 0.93 FBgn0003996 0.7 FBgn0051824 0.98 FBgn0027945 0.18 FBgn0261836 1.5 FBgn0011297 -0.49 FBgn0037591 -1.56 FBgn0016687 1.53 FBgn0261509 -0.22 FBgn0027929 -0.5 FBgn0033266 -1.04 FBgn0004926 0.87 FBgn0030037 0.42 FBgn0010504 -0.4 FBgn0085297 -0.26 FBgn0029892 0.54 FBgn0029088 1.03 FBgn0051174 -1.49 FBgn0261532 1.45 FBgn0030374 0.64 FBgn0031859 1.7 FBgn0261565 -2.43 FBgn0050393 -0.62 FBgn0034142 1.22 FBgn0036310 -0.65 FBgn0259215 1.31 FBgn0037482 0.59 FBgn0037760 1.21 FBgn0261788 1.19 FBgn0000479 0.63 FBgn0037433 0.9 FBgn0021764 0.77 FBgn0000158 1.37 FBgn0033466 -0.73 FBgn0033594 -1.22 FBgn0037420 -2.05 FBgn0033501 -0.67 FBgn0038720 1.08 FBgn0034822 -0.61 FBgn0028387 1.05 FBgn0037492 -0.5 FBgn0000183 1.49 FBgn0000546 1.45 FBgn0024329 -1.49 FBgn0040261 -1.18 FBgn0039792 1.27 FBgn0033928 0.91 FBgn0033735 -1.17 FBgn0036830 -1.8 FBgn0020616 -1.13 FBgn0031491 -0.66 FBgn0019925 0.81 FBgn0033246 0.22 FBgn0030259 0.97 FBgn0034901 0.49 FBgn0013347 -1.32 FBgn0027616 -1.25 FBgn0040877 -0.6 FBgn0032600 -0.83 FBgn0039369 -0.79 FBgn0037516 -0.8 FBgn0035001 0.74 FBgn0036751 -0.81 FBgn0035975 -2.13 FBgn0037850 0.29 FBgn0052259 0.42 FBgn0032781 0.31 FBgn0031997 -1.47 FBgn0034766 -0.43 FBgn0022268 0.68 FBgn0036937 0.69 FBgn0000611 0.6 FBgn0052687 -0.3 FBgn0034502 0.56 FBgn0036415 0.22 FBgn0043903 -1.14 FBgn0260645 -1.17 FBgn0035083 1.4 FBgn0001124 -1.19 FBgn0040208 -1.65 FBgn0031144 2.49 FBgn0044328 0.9 FBgn0031453 -0.53 FBgn0035693 -1.14 FBgn0035027 0.82 FBgn0031528 0.5 FBgn0039696 -0.6 FBgn0040907 -1.03 FBgn0029941 1.27 FBgn0053490 -0.79 FBgn0038525 0.53 FBgn0085396 -1.8 FBgn0037217 0.38 FBgn0032448 -0.44 FBgn0051624 -1.68 FBgn0033029 2.24 FBgn0034569 0.79 FBgn0001149 0.36 FBgn0034539 -0.8 FBgn0034542 -0.68 FBgn0033083 2.73 FBgn0041247 0.76 FBgn0033932 0.6 FBgn0030700 0.81 FBgn0032000 0.53 FBgn0026090 0.32 FBgn0033187 -0.93 FBgn0010488 -0.63 FBgn0004878 0.46 FBgn0000116 3.3 FBgn0037416 1.17 FBgn0034487 0.28 FBgn0033104 -1 FBgn0032634 1.19 FBgn0028863 -1.03 FBgn0030998 -0.89 FBgn0039648 0.52 FBgn0036557 -1.38 FBgn0051690 -1.03 FBgn0011582 0.44 FBgn0038275 -0.41 FBgn0017581 -0.74 FBgn0038956 -0.99 FBgn0038510 0.75 FBgn0038330 -1 FBgn0038001 0.61 FBgn0004052 -0.85 FBgn0033275 0.34 FBgn0035718 1.18 FBgn0033499 -1.29 FBgn0029105 -0.38 FBgn0037533 1.76 FBgn0033382 -0.79 FBgn0259176 1.8 FBgn0034554 -0.89 FBgn0037930 -0.62 FBgn0023216 -0.89 FBgn0040719 -0.33 FBgn0033431 -0.64 FBgn0004431 -1.6 FBgn0035842 -1.36 FBgn0034583 -0.43 FBgn0033899 -1.3 FBgn0038210 -1.72 FBgn0027527 -0.41 FBgn0050183 -0.83 FBgn0036685 -0.74 FBgn0039182 0.81 FBgn0037415 1.21 FBgn0026721 -0.47 FBgn0032393 -1.5 FBgn0003416 4 FBgn0032563 0.83 FBgn0030722 1.1 FBgn0030589 -1.53 FBgn0030943 1.1 FBgn0040305 -2.04 FBgn0039337 1.36 FBgn0042129 -2.13 FBgn0038398 0.36 FBgn0034657 -1.37 FBgn0029762 -1.28 FBgn0002531 0.92 FBgn0052507 1.59 FBgn0034915 3.08 FBgn0035137 1.33 FBgn0016926 1.39 FBgn0016075 1.12 FBgn0000308 -0.4 FBgn0034094 -1.32 FBgn0027932 0.72 FBgn0051404 -1.64 FBgn0039189 0.97 FBgn0029656 -0.99 FBgn0013981 0.62 FBgn0035325 0.97 FBgn0051741 -0.35 FBgn0026741 -1.39 FBgn0027342 -0.47 FBgn0000137 -1.4 FBgn0034572 2.02 FBgn0032907 0.89 FBgn0010288 -1.08 FBgn0051155 3.55 FBgn0034223 -1.06 FBgn0037360 -1.29 FBgn0054030 0.86 FBgn0001169 0.81 FBgn0052563 0.95 FBgn0051374 0.59 FBgn0052713 -0.83 FBgn0052391 -1.23 FBgn0034478 1 FBgn0003401 1.45 FBgn0004509 -1.56 FBgn0029525 -1.69 FBgn0036285 1.96 FBgn0032084 -0.95 FBgn0032908 2.17 FBgn0033050 0.85 FBgn0033379 1.24 FBgn0028665 -0.53 FBgn0032029 0.38 FBgn0030792 -1.06 FBgn0029880 -0.57 FBgn0031563 2.26 FBgn0040338 0.92 FBgn0032249 0.34 FBgn0039674 -1.32 FBgn0021953 -1.28 FBgn0033475 -1.01 FBgn0000384 0.11 FBgn0050096 -0.54 FBgn0041588 -0.57 FBgn0037894 -0.88 FBgn0010041 -0.54 FBgn0014342 -0.92 FBgn0026395 0.44 FBgn0033215 -0.43 FBgn0031773 1.36 FBgn0011694 -0.61 FBgn0034703 -1.45 FBgn0037814 1.67 FBgn0033679 -1.82 FBgn0031538 -0.97 FBgn0031498 -1.57 FBgn0040809 -0.75 FBgn0053557 -0.33 FBgn0052103 1.09 FBgn0052631 -1.09 FBgn0035588 -0.29 FBgn0033919 0.18 FBgn0026620 -0.5 FBgn0051612 -1.13 FBgn0046222 -0.93 FBgn0015001 -0.37 FBgn0052727 -1.2 FBgn0033996 -2.26 FBgn0036546 0.67 FBgn0259219 -0.68 FBgn0085265 -0.81 FBgn0032340 0.07 FBgn0003463 0.95 FBgn0050104 -0.3 FBgn0035255 0.74 FBgn0043578 0.73 FBgn0035929 -0.31 FBgn0016041 -0.9 FBgn0031988 1.57 FBgn0030850 -0.97 FBgn0004687 -0.44 FBgn0040268 1.25 FBgn0034394 -0.91 FBgn0027338 -0.81 FBgn0036138 -0.62 FBgn0024689 0.63 FBgn0260798 -0.83 FBgn0039734 -0.19 FBgn0033687 -1.31 FBgn0031164 -0.9 FBgn0033458 -0.15 FBgn0038440 0.26 FBgn0031209 1.76 FBgn0034232 -0.46 FBgn0038381 -1.56 FBgn0037063 0.88 FBgn0052106 0.28 FBgn0030418 -1.29 FBgn0035685 -1.33 FBgn0040528 -1.09 FBgn0035004 0.57 FBgn0030594 -1.29 FBgn0039505 0.7 FBgn0028407 -0.11 FBgn0034814 1.53 FBgn0041150 0.63 FBgn0015806 -0.74 FBgn0025111 -1.45 FBgn0039124 -0.93 FBgn0028411 -0.64 FBgn0051279 -0.44 FBgn0040502 -1 FBgn0034425 -1.13 FBgn0035508 -0.33 FBgn0013576 -1.35 FBgn0032609 0.75 FBgn0030342 0.55 FBgn0086370 -0.43 FBgn0260007 -1.78 FBgn0031760 -0.35 FBgn0042146 1.26 FBgn0047114 0.31 FBgn0038325 0.77 FBgn0085503 -1.8 FBgn0026263 -0.93 FBgn0051728 4.01 FBgn0259113 0.99 FBgn0020272 0.5 FBgn0030787 -1.3 FBgn0036893 -1.43 FBgn0051516 -0.24 FBgn0033566 -0.62 FBgn0086356 -0.53 FBgn0001315 1.84 FBgn0002552 0.62 FBgn0034943 -0.05 FBgn0036402 -1.62 FBgn0004777 1.93 FBgn0035983 -1.42 FBgn0013676 1.46 FBgn0036496 -0.88 FBgn0029646 1.38 FBgn0004380 0.88 FBgn0039920 1.69 FBgn0038447 1.07 FBgn0037489 0.62 FBgn0050067 -0.86 FBgn0050192 -1.26 FBgn0053543 0.55 FBgn0051922 -0.37 FBgn0050151 -1.1 FBgn0033696 -0.96 FBgn0039261 -0.76 FBgn0024191 -1.49 FBgn0036476 -0.68 FBgn0032193 -1.26 FBgn0001254 -0.34 FBgn0052808 -0.64 FBgn0030495 -0.43 FBgn0030563 0.25 FBgn0014466 -0.34 FBgn0038301 1.2 FBgn0030718 -0.55 FBgn0038695 -1.27 FBgn0038972 0.16 FBgn0028892 1.4 FBgn0003274 4.38 FBgn0032701 -1.17 FBgn0037606 0.67 FBgn0031281 -1.02 FBgn0038098 2.3 FBgn0020545 -0.92 FBgn0033889 2.76 FBgn0037195 -0.96 FBgn0035193 -0.57 FBgn0038170 0.87 FBgn0024945 -0.57 FBgn0052693 -0.7 FBgn0037722 -1.05 FBgn0046878 0.83 FBgn0036679 0.67 FBgn0029690 -0.47 FBgn0037614 -0.48 FBgn0039064 1.57 FBgn0032217 1.32 FBgn0036277 -0.16 FBgn0034180 -1.25 FBgn0003261 -1.65 FBgn0029951 -0.43 FBgn0053704 0.58 FBgn0035317 -0.76 FBgn0031446 -0.05 FBgn0026754 -1.83 FBgn0052600 -1.29 FBgn0038035 0.88 FBgn0035501 0.32 FBgn0031769 1.48 FBgn0036951 -1.88 FBgn0005633 -0.84 FBgn0027094 1.35 FBgn0011476 -0.87 FBgn0023536 0.17 FBgn0037875 0.46 FBgn0039324 1.36 FBgn0015797 -1.12 FBgn0013726 -0.23 FBgn0039429 -1.51 FBgn0036616 -0.62 FBgn0033092 0.53 FBgn0043364 -0.98 FBgn0038159 -0.62 FBgn0033140 -1.25 FBgn0005696 1.57 FBgn0039481 -0.74 FBgn0016919 -0.87 FBgn0039043 -0.69 FBgn0002715 -1.73 FBgn0004373 1.78 FBgn0028541 -1.27 FBgn0250833 0.43 FBgn0051999 -1.12 FBgn0038319 -1.06 FBgn0031412 0.66 FBgn0031220 -1.12 FBgn0027903 0.71 FBgn0027620 -1.58 FBgn0035550 -1.05 FBgn0001234 -0.62 FBgn0259236 -0.98 FBgn0038916 -0.58 FBgn0004908 0.57 FBgn0039636 -0.69 FBgn0053194 -0.55 FBgn0015521 1.56 FBgn0036874 -0.45 FBgn0037779 -1.81 FBgn0037013 -1.81 FBgn0028504 0.43 FBgn0037312 -0.59 FBgn0039471 0.66 FBgn0037964 0.65 FBgn0032507 0.31 FBgn0033168 -0.45 FBgn0261928 -0.57 FBgn0030688 0.52 FBgn0021825 1.62 FBgn0037085 -1.12 FBgn0029863 0.53 FBgn0032813 -0.74 FBgn0032314 -0.9 FBgn0027538 1.12 FBgn0037429 0.53 FBgn0050466 0.72 FBgn0086779 -2.22 FBgn0037635 0.92 FBgn0025865 1.07 FBgn0260461 -1.1 FBgn0037207 4.72 FBgn0052462 0.81 FBgn0029697 0.21 FBgn0038039 -0.57 FBgn0015010 -0.99 FBgn0024995 -0.92 FBgn0035333 0.82 FBgn0039355 -1.15 FBgn0039486 -1.38 FBgn0028691 1.06 FBgn0029661 1.31 FBgn0085465 -0.78 FBgn0086472 0.88 FBgn0085204 -2.29 FBgn0014026 2.06 FBgn0014141 -2.21 FBgn0029990 -1.36 FBgn0000244 -0.97 FBgn0033638 1.36 FBgn0030660 -0.78 FBgn0051004 -1.12 FBgn0011762 -1.03 FBgn0004778 -1.55 FBgn0034463 -0.91 FBgn0039164 -0.7 FBgn0051055 0.77 FBgn0038341 2.42 FBgn0028875 -1.67 FBgn0034069 -1.35 FBgn0037700 -1.1 FBgn0028327 0.79 FBgn0015277 -0.84 FBgn0034072 -0.82 FBgn0260003 -1.76 FBgn0037147 1.28 FBgn0035162 1.64 FBgn0038960 -0.69 FBgn0040650 -0.27 FBgn0024814 1.27 FBgn0039770 -1.07 FBgn0034741 -0.78 FBgn0039627 -0.88 FBgn0031976 -1.12 FBgn0003279 4.27 FBgn0034520 -1.49 FBgn0039017 0.27 FBgn0028513 -1.06 FBgn0053474 -1.61 FBgn0038361 0.57 FBgn0034623 -1.14 FBgn0036528 -0.34 FBgn0000256 -1.13 FBgn0036820 0.53 FBgn0032256 0.33 FBgn0039525 1.83 FBgn0023542 -1.83 FBgn0039010 -0.98 FBgn0039852 -1.52 FBgn0026252 1.77 FBgn0028401 -0.69 FBgn0033209 -1.3 FBgn0025682 0.33 FBgn0033663 -1.67 FBgn0030744 1.42 FBgn0031361 0.38 FBgn0028396 0.55 FBgn0033221 -1.45 FBgn0004463 0.29 FBgn0036762 0.42 FBgn0001085 -0.8 FBgn0030799 -0.45 FBgn0032230 1.07 FBgn0030510 -1.92 FBgn0032475 -0.36 FBgn0052423 -0.8 FBgn0024332 -1.34 FBgn0050158 -0.98 FBgn0037819 -0.95 FBgn0028475 0.79 FBgn0005386 -0.58 FBgn0035815 -1.34 FBgn0037572 0.87 FBgn0010316 -0.59 FBgn0004569 0.27 FBgn0052274 0.75 FBgn0039641 0.28 FBgn0259745 0.47 FBgn0033400 0.25 FBgn0037386 0.73 FBgn0051902 -0.51 FBgn0039760 0.61 FBgn0085481 0.4 FBgn0037920 -1.17 FBgn0030222 0.39 FBgn0033020 -1.02 FBgn0039755 1.2 FBgn0031463 0.41 FBgn0028919 1.14 FBgn0050259 -1.4 FBgn0028274 -0.49 FBgn0052745 -0.25 FBgn0040382 -0.7 FBgn0034035 0.85 FBgn0052188 -0.22 FBgn0011260 1.03 FBgn0052228 0.48 FBgn0038576 0.48 FBgn0031694 -1.39 FBgn0038107 -1.92 FBgn0015336 -0.36 FBgn0034994 -1.01 FBgn0036000 1.59 FBgn0000358 0.45 FBgn0053673 -0.6 FBgn0014366 1.68 FBgn0032100 -0.49 FBgn0051998 -0.31 FBgn0039896 -0.8 FBgn0038438 1.08 FBgn0030912 -0.83 FBgn0036492 5.54 FBgn0024291 0.79 FBgn0020509 1.18 FBgn0053969 -1.09 FBgn0039060 -0.67 FBgn0039380 -0.65 FBgn0085349 -1.7 FBgn0042119 1.62 FBgn0260000 -0.92 FBgn0025777 0.4 FBgn0037166 0.83 FBgn0011737 -0.48 FBgn0024509 -0.62 FBgn0030577 0.99 FBgn0038755 1.67 FBgn0051463 0.92 FBgn0037652 -0.55 FBgn0037659 -0.66 FBgn0031912 0.44 FBgn0031703 2.54 FBgn0040106 -0.98 FBgn0036652 1.17 FBgn0034471 0.12 FBgn0259229 -0.86 FBgn0029706 -0.66 FBgn0040509 0.99 FBgn0037005 -0.77 FBgn0035063 -0.18 FBgn0029771 0.54 FBgn0022787 0.8 FBgn0035657 -1.21 FBgn0032868 -1.54 FBgn0036549 -1.1 FBgn0015574 -1.31 FBgn0037230 0.51 FBgn0036101 -1.49 FBgn0029092 1.06 FBgn0031683 -0.43 FBgn0036500 -0.62 FBgn0005672 -0.95 FBgn0038548 1.12 FBgn0014269 -0.82 FBgn0001225 0.65 FBgn0020379 1.41 FBgn0005411 -3.96 FBgn0038207 -1.73 FBgn0037125 -0.15 FBgn0051960 0.58 FBgn0035570 -1.7 FBgn0031171 -0.46 FBgn0050203 -1.6 FBgn0020280 -0.6 FBgn0030979 -1.13 FBgn0010228 -1.58 FBgn0033989 0.78 FBgn0052091 -0.82 FBgn0032048 -0.9 FBgn0000078 -0.39 FBgn0034403 0.48 FBgn0002842 -1.03 FBgn0045827 0.45 FBgn0036447 -0.32 FBgn0028986 0.37 FBgn0039073 -0.97 FBgn0037669 2.08 FBgn0025627 -0.47 FBgn0029701 0.36 FBgn0261277 -1.78 FBgn0028969 0.24 FBgn0004797 -0.92 FBgn0032797 1.65 FBgn0051288 -0.61 FBgn0030673 -0.19 FBgn0038656 -1.77 FBgn0261439 -1.5 FBgn0024846 1.34 FBgn0010452 -1.35 FBgn0034057 -0.79 FBgn0032652 -0.68 FBgn0261627 1.44 FBgn0035954 0.49 FBgn0051371 -0.98 FBgn0034415 -1.21 FBgn0028974 2.07 FBgn0039129 1.18 FBgn0038577 1.39 FBgn0085224 0.35 FBgn0051423 0.84 FBgn0040519 -2.19 FBgn0034432 -1.03 FBgn0039807 0.64 FBgn0058378 1.15 FBgn0040725 -0.77 FBgn0053315 -0.58 FBgn0063261 -0.81 FBgn0038832 0.54 FBgn0031464 0.55 FBgn0033010 -1.17 FBgn0028979 -0.36 FBgn0032462 0.4 FBgn0028980 -1.07 FBgn0003997 1.24 FBgn0002940 -0.07 FBgn0036514 1.12 FBgn0030305 -1.13 FBgn0052686 1.45 FBgn0032402 -1.46 FBgn0039381 -0.03 FBgn0032196 -0.97 FBgn0031390 -0.09 FBgn0029770 -0.54 FBgn0040823 0.74 FBgn0034828 -0.52 FBgn0030976 -0.39 FBgn0000439 -0.67 FBgn0013717 1.06 FBgn0021874 0.7 FBgn0030137 0.36 FBgn0031632 -0.27 FBgn0030081 0.39 FBgn0260970 -0.62 FBgn0002734 -0.22 FBgn0029176 4.2 FBgn0034095 -1.08 FBgn0030658 0.66 FBgn0261933 1.63 FBgn0001112 0.84 FBgn0052262 -0.31 FBgn0037291 0.58 FBgn0035412 -0.33 FBgn0051301 -2.33 FBgn0036773 0.66 FBgn0041627 0.93 FBgn0086519 -0.78 FBgn0034005 0.98 FBgn0002931 2.07 FBgn0260499 1.32 FBgn0030060 -0.32 FBgn0032704 -0.66 FBgn0032587 0.8 FBgn0034844 1.64 FBgn0039022 -0.74 FBgn0038854 1.06 FBgn0035512 0.87 FBgn0046114 0.17 FBgn0036602 -0.68 FBgn0000667 -0.6 FBgn0004173 1.49 FBgn0010350 -1.14 FBgn0036228 1.51 FBgn0002936 0.88 FBgn0038173 0.37 FBgn0029823 0.95 FBgn0031881 -1.57 FBgn0019932 0.25 FBgn0029840 1.2 FBgn0030088 -0.56 FBgn0027588 -1.44 FBgn0037138 -1.15 FBgn0027783 0.26 FBgn0038490 0.03 FBgn0027103 -1.73 FBgn0036960 -1.86 FBgn0037408 -0.7 FBgn0031628 0.98 FBgn0051864 -0.39 FBgn0085352 -1.19 FBgn0037275 -0.87 FBgn0050005 1.52 FBgn0035311 -0.73 FBgn0053922 -0.91 FBgn0044452 0.71 FBgn0036609 -0.4 FBgn0020909 -0.13 FBgn0034247 -2.4 FBgn0052644 0.82 FBgn0085414 -1.28 FBgn0031362 0.96 FBgn0037372 -1.25 FBgn0035285 -0.52 FBgn0033659 0.89 FBgn0037685 0.11 FBgn0001134 1.18 FBgn0030160 0.99 FBgn0020224 -0.61 FBgn0031356 0.58 FBgn0045482 0.87 FBgn0051660 -1.01 FBgn0035980 -0.49 FBgn0016694 0.92 FBgn0031292 -1.07 FBgn0039800 -0.09 FBgn0033368 1.46 FBgn0052551 -0.4 FBgn0050048 -0.21 FBgn0031305 0.73 FBgn0017448 0.26 FBgn0038045 0.44 FBgn0042083 1.39 FBgn0032727 -0.12 FBgn0032303 -0.95 FBgn0033846 0.74 FBgn0085210 -0.88 FBgn0052088 1.38 FBgn0261266 -0.62 FBgn0062440 -1.07 FBgn0050324 -0.79 FBgn0033645 0.14 FBgn0035248 1.68 FBgn0051874 -0.72 FBgn0010397 0.7 FBgn0085212 -0.95 FBgn0086906 -1.45 FBgn0260935 -0.72 FBgn0031677 0.47 FBgn0039454 -0.33 FBgn0025394 -1.03 FBgn0250848 -1.17 FBgn0030667 0.68 FBgn0024230 -0.42 FBgn0039519 1.28 FBgn0036515 -0.39 FBgn0010434 -0.07 FBgn0032115 -1.52 FBgn0034307 -0.42 FBgn0020506 1.09 FBgn0032335 -1.25 FBgn0038498 0.95 FBgn0085420 1.79 FBgn0261859 1.32 FBgn0036712 0.15 FBgn0014032 -0.9 FBgn0028936 0.55 FBgn0034605 -0.26 FBgn0038808 0.4 FBgn0025676 -1.28 FBgn0053203 0.99 FBgn0015299 -1.65 FBgn0020240 -0.52 FBgn0032140 1.06 FBgn0039430 -0.68 FBgn0036036 0.42 FBgn0030815 0.82 FBgn0026086 -0.9 FBgn0035956 0.61 FBgn0025615 1.25 FBgn0038412 0.78 FBgn0042126 -0.91 FBgn0035878 1.09 FBgn0038601 -1.02 FBgn0022935 3.77 FBgn0030223 -0.71 FBgn0086687 -3.23 FBgn0035742 -0.32 FBgn0085454 -2.44 FBgn0037910 -0.99 FBgn0003486 1.16 FBgn0037324 -0.83 FBgn0038196 -0.99 FBgn0030545 -0.69 FBgn0052374 0.89 FBgn0052548 0.01 FBgn0029679 -0.85 FBgn0031032 1.2 FBgn0010042 0.31 FBgn0004863 6.61 FBgn0039132 0.94 FBgn0039271 0.64 FBgn0031483 -1.64 FBgn0052571 0.61 FBgn0002044 0.77 FBgn0038316 -0.54 FBgn0011760 -2.09 FBgn0035438 -1.34 FBgn0038292 -0.35 FBgn0015818 4.83 FBgn0003720 -0.29 FBgn0036043 1.59 FBgn0259234 -0.27 FBgn0036988 1.06 FBgn0034122 -0.73 FBgn0032420 8.34151625118546e-03 FBgn0021750 -0.8 FBgn0000552 -1.21 FBgn0051141 -0.31 FBgn0028990 -1.52 FBgn0037724 0.49 FBgn0035567 -0.47 FBgn0004647 0.49 FBgn0036361 0.43 FBgn0002736 0.59 FBgn0036747 -0.45 FBgn0052579 -1.22 FBgn0034870 -0.79 FBgn0036994 0.37 FBgn0011785 0.7 FBgn0037110 -0.58 FBgn0025463 1.62 FBgn0028867 1.26 FBgn0031690 -1.02 FBgn0036696 0.2 FBgn0032205 -1.13 FBgn0051454 -1.03 FBgn0025866 0.92 FBgn0035443 -1.03 FBgn0050414 -1.51 FBgn0036742 -1.35 FBgn0085437 0.97 FBgn0026679 -0.66 FBgn0038979 1.46 FBgn0027568 1.29 FBgn0034474 1.18 FBgn0039756 1.09 FBgn0002891 -0.8 FBgn0038471 -1.29 FBgn0051092 -1.27 FBgn0031936 -1.54 FBgn0035632 -0.46 FBgn0082582 -2.03 FBgn0024366 0.9 FBgn0039259 -1.66 FBgn0032088 -0.28 FBgn0260776 0.66 FBgn0029747 0.14 FBgn0022893 -1.16 FBgn0038733 1.07 FBgn0039668 0.45 FBgn0034346 0.97 FBgn0001075 -1.56 FBgn0034529 0.62 FBgn0033851 -1.68 FBgn0036301 1.01 FBgn0029977 0.23 FBgn0004841 0.9 FBgn0032801 1.12 FBgn0034468 1.05 FBgn0003656 0.76 FBgn0085310 0.37 FBgn0052485 -1.82 FBgn0021818 -1.15 FBgn0039687 1.33 FBgn0260985 -1.55 FBgn0031697 0.55 FBgn0052528 -1.57 FBgn0038465 -1.16 FBgn0032382 0.62 FBgn0033124 -0.51 FBgn0034660 -0.76 FBgn0036397 -1.49 FBgn0032442 -1.8 FBgn0032593 1.37 FBgn0050037 0.28 FBgn0034412 0.32 FBgn0038693 0.47 FBgn0028482 -1.42 FBgn0043025 0.46 FBgn0037172 1.49 FBgn0039487 -1.7 FBgn0033667 0.53 FBgn0004629 -0.7 FBgn0031474 -0.43 FBgn0038788 -0.57 FBgn0029514 -1.2 FBgn0052221 2.49 FBgn0052177 -0.59 FBgn0031288 1.36 FBgn0030435 1.06 FBgn0038134 -1 FBgn0033427 -1.23 FBgn0038984 1.46 FBgn0030148 0.51 FBgn0014850 -0.75 FBgn0034046 1.23 FBgn0037519 -1.43 FBgn0032709 -0.45 FBgn0050169 0.55 FBgn0038225 -0.85 FBgn0026411 -0.55 FBgn0033453 0.74 FBgn0038950 -1.05 FBgn0029970 0.46 FBgn0039697 -1.05 FBgn0035186 -0.76 FBgn0013467 -2.01 FBgn0015582 -0.19 FBgn0022213 1.26 FBgn0030001 -0.96 FBgn0027291 -0.6 FBgn0034496 -1.03 FBgn0051051 -1.61 FBgn0036501 -0.81 FBgn0037613 -1.32 FBgn0085217 0.7 FBgn0004698 -1.76 FBgn0036551 -1.25 FBgn0051858 1.2 FBgn0013746 -0.48 FBgn0259224 -0.99 FBgn0051072 -1.02 FBgn0015075 -0.39 FBgn0010520 -1.62 FBgn0043070 -1.83 FBgn0034231 0.59 FBgn0040031 1.21 FBgn0050052 -0.9 FBgn0030631 -1.36 FBgn0035084 0.73 FBgn0034560 1.23 FBgn0036203 0.72 FBgn0043854 -0.52 FBgn0015247 -0.55 FBgn0051785 -0.24 FBgn0035571 -1.63 FBgn0039776 0.94 FBgn0011016 0.7 FBgn0039882 0.74 FBgn0033439 -0.56 FBgn0041238 1.75 FBgn0039451 -0.91 FBgn0036382 0.88 FBgn0041246 -0.37 FBgn0035216 -0.32 FBgn0004622 -0.88 FBgn0035371 -0.44 FBgn0261267 1.2 FBgn0030006 0.24 FBgn0034033 1.06 FBgn0036320 -1.65 FBgn0039099 0.41 FBgn0011596 1.33 FBgn0033296 0.42 FBgn0040020 0.69 FBgn0026181 -1.06 FBgn0040795 -1.81 FBgn0053208 -1.69 FBgn0002856 -0.31 FBgn0025335 1.29 FBgn0037338 -1.09 FBgn0032125 -0.98 FBgn0031299 0.57 FBgn0038095 -1.16 FBgn0038768 -1.65 FBgn0011832 0.93 FBgn0051262 -0.57 FBgn0037718 -1 FBgn0036908 -1.32 FBgn0031157 -1.06 FBgn0023091 -0.16 FBgn0038865 -0.13 FBgn0032453 0.75 FBgn0051030 1.88 FBgn0003372 -1.12 FBgn0051973 -1.71 FBgn0031602 -1.71 FBgn0039690 -1.23 FBgn0034366 -1.48 FBgn0038740 0.83 FBgn0034727 -0.85 FBgn0085427 -2.13 FBgn0033605 -0.61 FBgn0033721 -1.94 FBgn0039582 -0.6 FBgn0002863 -0.61 FBgn0034206 -1.17 FBgn0033579 -1.86 FBgn0051081 -0.83 FBgn0016059 -0.61 FBgn0011742 -1.1 FBgn0040362 -0.83 FBgn0004228 -1.46 FBgn0034284 -0.23 FBgn0002973 0.6 FBgn0039149 -0.43 FBgn0030246 0.89 FBgn0034859 -1.05 FBgn0036059 1.67 FBgn0030244 -0.89 FBgn0001941 -1.13 FBgn0033871 1.53 FBgn0020412 -0.75 FBgn0033449 -0.38 FBgn0045468 0.8 FBgn0004512 0.62 FBgn0037270 0.7 FBgn0029996 -1.95 FBgn0037996 0.41 FBgn0024989 0.56 FBgn0023506 -0.9 FBgn0003046 0.6 FBgn0003882 -1.76 FBgn0038814 1.43 FBgn0261394 0.74 FBgn0050062 -0.43 FBgn0037473 -1.08 FBgn0050432 1.26 FBgn0032072 -1 FBgn0058053 -1.05 FBgn0039406 -0.14 FBgn0013983 0.4 FBgn0032642 -1.86 FBgn0041100 0.46 FBgn0051606 -0.66 FBgn0085362 -0.83 FBgn0037750 -0.31 FBgn0039213 0.62 FBgn0034485 0.57 FBgn0037117 -0.7 FBgn0010303 -0.79 FBgn0023179 1.36 FBgn0038565 -1.47 FBgn0030808 1.94 FBgn0036926 -1.77 FBgn0031772 0.9 FBgn0013531 -0.7 FBgn0032835 -1.01 FBgn0036258 1.64 FBgn0036192 -1.08 FBgn0001235 0.7 FBgn0036686 0.83 FBgn0034659 0.63 FBgn0045443 0.73 FBgn0035768 -0.45 FBgn0024998 1.73 FBgn0032649 -0.75 FBgn0031536 1.89 FBgn0036641 -1.07 FBgn0025740 -1.25 FBgn0002306 1.1 FBgn0028961 -1.49 FBgn0004924 -2.61 FBgn0025558 0.83 FBgn0037046 1 FBgn0031108 1.47 FBgn0030261 1.28 FBgn0033095 -0.3 FBgn0038124 -1.08 FBgn0005671 1.19 FBgn0051803 -0.85 FBgn0041181 0.56 FBgn0014018 -0.06 FBgn0035103 -1.62 FBgn0013548 -0.53 FBgn0051010 -0.96 FBgn0050424 1.33 FBgn0030207 -0.42 FBgn0028532 -1.19 FBgn0261479 -0.18 FBgn0039703 0.08 FBgn0005391 1.5 FBgn0022770 0.54 FBgn0028837 -1.86 FBgn0027608 -1.23 FBgn0034599 0.98 FBgn0034459 0.18 FBgn0027081 -1.35 FBgn0039177 0.49 FBgn0003683 -1.19 FBgn0036967 0.95 FBgn0035612 2.09 FBgn0054011 -1.74 FBgn0038008 -0.24 FBgn0053461 0.84 FBgn0035132 0.6 FBgn0031430 -0.93 FBgn0052160 -0.55 FBgn0031045 0.88 FBgn0036906 1.4 FBgn0028880 0.99 FBgn0031119 -0.81 FBgn0033728 -1.12 FBgn0003977 -0.65 FBgn0030852 -0.66 FBgn0036892 0.52 FBgn0037024 -0.99 FBgn0011723 -0.2 FBgn0028408 -1.23 FBgn0035875 -1.47 FBgn0040743 0.99 FBgn0030528 0.28 FBgn0038944 -0.47 FBgn0027090 -1.71 FBgn0031580 0.34 FBgn0051226 -1.26 FBgn0033526 -0.27 FBgn0037816 -0.97 FBgn0053527 1.42 FBgn0036015 1.2 FBgn0002780 -0.56 FBgn0038079 -0.24 FBgn0031558 1.19 FBgn0051221 -0.28 FBgn0034758 0.54 FBgn0038527 1.05 FBgn0037737 0.99 FBgn0031830 -2.46 FBgn0034073 0.43 FBgn0053260 -1.78 FBgn0030701 1.96 FBgn0038452 -1.09 FBgn0038083 0.23 FBgn0036888 0.44 FBgn0034194 -1.86 FBgn0039680 0.37 FBgn0029963 0.98 FBgn0054032 -1.7 FBgn0032848 0.42 FBgn0032913 1.22 FBgn0035587 -0.94 FBgn0028292 0.46 FBgn0032131 1.26 FBgn0029095 -1.22 FBgn0032235 -0.43 FBgn0031855 -0.59 FBgn0037031 0.17 FBgn0039531 -1.41 FBgn0025571 0.61 FBgn0039140 0.47 FBgn0035546 -1.18 FBgn0035951 1.45 FBgn0035816 1.03 FBgn0044051 1.16 FBgn0035158 0.43 FBgn0036343 -0.03 FBgn0051048 1.8 FBgn0031574 1.84 FBgn0032248 0.41 FBgn0040730 -1.18 FBgn0035673 -0.95 FBgn0015905 -1.52 FBgn0039969 -1.48 FBgn0034507 -0.65 FBgn0012058 8.01 FBgn0032433 1.28 FBgn0085294 -0.52 FBgn0004510 -0.61 FBgn0037004 -1.6 FBgn0003965 -0.18 FBgn0002561 -1.63 FBgn0085409 -1 FBgn0032372 0.62 FBgn0033352 -0.66 FBgn0000283 -0.28 FBgn0002924 0.59 FBgn0260964 1.85 FBgn0051201 -0.7 FBgn0250820 1.37 FBgn0000303 -2.01 FBgn0033359 -1.31 FBgn0028474 -1.92 FBgn0034495 -0.45 FBgn0025631 1.56 FBgn0002989 -1.13 FBgn0031495 -0.37 FBgn0033756 1.12 FBgn0052683 -1.46 FBgn0259824 0.16 FBgn0035777 -0.84 FBgn0027796 -1.7 FBgn0028872 0.69 FBgn0032400 -7.24 FBgn0036290 -1.15 FBgn0033000 -1.16 FBgn0260742 0.81 FBgn0260962 -0.55 FBgn0039592 1.19 FBgn0028496 1.2 FBgn0035234 -0.67 FBgn0261675 1.47 FBgn0052305 -1.08 FBgn0034897 -0.83 FBgn0035423 0.55 FBgn0000392 0.92 FBgn0033710 0.39 FBgn0051823 0.18 FBgn0033718 -1.48 FBgn0004400 0.88 FBgn0052409 -1.06 FBgn0000405 0.58 FBgn0053307 2.04 FBgn0030100 -0.5 FBgn0029714 -0.86 FBgn0031318 -1.24 FBgn0051345 1.17 FBgn0037902 1.16 FBgn0259678 -0.66 FBgn0038716 -0.39 FBgn0030485 -0.78 FBgn0045843 -0.4 FBgn0039820 -1.12 FBgn0030803 -0.41 FBgn0261682 -1.36 FBgn0015550 1.1 FBgn0031725 -0.91 FBgn0000615 0.4 FBgn0036973 0.81 FBgn0032315 -1.29 FBgn0051019 -1.76 FBgn0053265 0.7 FBgn0039417 1.7 FBgn0035258 1.44 FBgn0030158 1.23 FBgn0010406 2.16 FBgn0033627 0.67 FBgn0016794 -0.8 FBgn0036730 -1.33 FBgn0017545 2.27 FBgn0010287 -0.95 FBgn0031945 -1.76 FBgn0028645 1.13 FBgn0040396 1.22 FBgn0261564 1.83 FBgn0050271 0.4 FBgn0026777 -0.67 FBgn0000339 -0.87 FBgn0000229 0.88 FBgn0034716 -1.08 FBgn0039054 -1.96 FBgn0031542 1.1 FBgn0035233 -1.03 FBgn0037086 -1.77 FBgn0010015 1.32 FBgn0016930 -0.74 FBgn0031195 0.88 FBgn0039461 -1.36 FBgn0087013 1.92 FBgn0034405 -0.76 FBgn0011284 3.85 FBgn0039371 0.73 FBgn0037759 -0.66 FBgn0001206 -0.95 FBgn0037521 -1.89 FBgn0050484 0.8 FBgn0036784 1.11 FBgn0050268 -1.19 FBgn0033376 0.7 FBgn0053013 -0.35 FBgn0040687 0.51 FBgn0050491 -0.42 FBgn0025457 0.65 FBgn0261458 0.84 FBgn0261649 -0.76 FBgn0038404 1.26 FBgn0033049 0.6 FBgn0053189 1.49 FBgn0000042 -0.3 FBgn0039170 -1.32 FBgn0003889 2.14 FBgn0031256 -2.1 FBgn0030455 -0.59 FBgn0037124 -1.58 FBgn0032814 -1.29 FBgn0028539 -1.92 FBgn0053289 1.08 FBgn0085446 -1.72 FBgn0032304 -0.87 FBgn0031405 -1.23 FBgn0034706 -0.37 FBgn0020762 -1.53 FBgn0036536 0.6 FBgn0031163 -1.05 FBgn0030360 1.09 FBgn0036828 1.89 FBgn0035499 -0.72 FBgn0030935 0.6 FBgn0036999 -1.27 FBgn0033763 0.41 FBgn0040078 -2.71 FBgn0017549 -0.09 FBgn0052064 -1.51 FBgn0034737 -1.32 FBgn0032967 -1.13 FBgn0261401 1.38 FBgn0030960 -0.98 FBgn0038369 -1.07 FBgn0030599 0.91 FBgn0029834 1.36 FBgn0015391 1.44 FBgn0050373 -0.45 FBgn0038148 -0.49 FBgn0023181 -0.91 FBgn0028988 -1.48 FBgn0030613 -0.26 FBgn0001105 1.46 FBgn0033639 1.41 FBgn0038334 0.71 FBgn0261380 0.09 FBgn0031746 0.37 FBgn0030389 0.27 FBgn0086910 -1.01 FBgn0035227 -1.69 FBgn0085290 -1.55 FBgn0031054 0.48 FBgn0037917 1.38 FBgn0051407 -2.03 FBgn0031918 0.54 FBgn0026563 1.16 FBgn0019990 -0.3 FBgn0031733 0.38 FBgn0030321 0.27 FBgn0035262 1.32 FBgn0037094 -1.17 FBgn0033076 -0.96 FBgn0038460 -1.17 FBgn0053770 1.19 FBgn0037809 0.54 FBgn0038593 0.86 FBgn0261109 -1.15 FBgn0004654 -0.7 FBgn0032615 -1.43 FBgn0050177 -0.53 FBgn0031110 1.68 FBgn0038248 -1.2 FBgn0053128 -2.8 FBgn0030297 0.62 FBgn0010421 1.15 FBgn0037943 -1.4 FBgn0036717 -0.23 FBgn0029947 -1.02 FBgn0037781 -1.87 FBgn0029580 -1.17 FBgn0039462 -1.29 FBgn0034314 1.44 FBgn0037076 -0.76 FBgn0040890 1.03 FBgn0039709 -1.57 FBgn0261641 -2.42 FBgn0032554 0.61 FBgn0020236 -1.02 FBgn0038013 -0.48 FBgn0032682 0.58 FBgn0030696 0.22 FBgn0051198 -0.95 FBgn0037573 -2.25 FBgn0039563 1 FBgn0261617 2.53 FBgn0039474 1.42 FBgn0034886 -0.19 FBgn0035390 -0.18 FBgn0038837 1.24 FBgn0050281 -0.9 FBgn0040385 -0.75 FBgn0031684 -0.9 FBgn0010241 0.93 FBgn0052056 -1.28 FBgn0016122 -1.27 FBgn0000541 -1.23 FBgn0040892 -1.27 FBgn0053552 0.62 FBgn0036790 0.48 FBgn0036090 -0.54 FBgn0039536 -1.03 FBgn0032822 -2.05 FBgn0030969 0.95 FBgn0039050 -0.68 FBgn0034693 3.08 FBgn0036368 0.47 FBgn0052185 0.2 FBgn0040929 0.24 FBgn0016061 -1.33 FBgn0052201 0.63 FBgn0002775 -0.69 FBgn0041156 -0.41 FBgn0038052 -0.57 FBgn0050359 0.37 FBgn0037327 0.23 FBgn0261549 0.61 FBgn0030810 1.23 FBgn0035069 1.42 FBgn0037986 1.25 FBgn0029693 0.46 FBgn0035996 -0.06 FBgn0028509 0.62 FBgn0046999 -1.76 FBgn0038725 1.66 FBgn0034743 3.17 FBgn0034183 -0.16 FBgn0035838 -0.51 FBgn0035400 -1.56 FBgn0033985 0.94 FBgn0032018 -1.01 FBgn0027866 0.15 FBgn0004956 0.81 FBgn0026250 1.81 FBgn0027578 -1.59 FBgn0034614 -0.79 FBgn0037885 -1.6 FBgn0003334 0.61 FBgn0017430 -1.01 FBgn0044323 -2.46 FBgn0000356 0.49 FBgn0004179 -0.87 FBgn0083942 -0.87 FBgn0002566 0.83 FBgn0039356 -0.9 FBgn0032480 -2.11 FBgn0034063 0.69 FBgn0025383 -1.32 FBgn0038078 0.35 FBgn0053113 -1.46 FBgn0031718 -1.87 FBgn0000464 0.88 FBgn0033934 1.01 FBgn0085246 1.25 FBgn0003733 -0.6 FBgn0034788 1.59 FBgn0086361 1.08 FBgn0034612 -2.13 FBgn0052115 -1.45 FBgn0037601 -0.7 FBgn0010408 1.4 FBgn0035770 -1.2 FBgn0051281 0.54 FBgn0039850 -1.47 FBgn0028943 -0.65 FBgn0033128 0.72 FBgn0052279 -1.23 FBgn0250732 -0.76 FBgn0011361 -0.82 FBgn0025741 -0.2 FBgn0040608 -1.96 FBgn0002590 2.67 FBgn0033457 0.94 FBgn0029167 -0.67 FBgn0030532 -1.86 FBgn0040390 3.62 FBgn0033202 1.2 FBgn0024732 0.6 FBgn0031951 -0.33 FBgn0261387 1.32 FBgn0051678 -1.78 FBgn0033542 0.77 FBgn0016977 -1.68 FBgn0038028 -0.84 FBgn0034920 1.84 FBgn0029828 0.28 FBgn0038611 1.23 FBgn0036638 0.56 FBgn0032849 -0.55 FBgn0003862 -0.31 FBgn0001970 -0.36 FBgn0029800 0.92 FBgn0038067 -0.76 FBgn0032180 -1.73 FBgn0031526 1 FBgn0015338 0.87 FBgn0026439 -0.58 FBgn0023540 0.48 FBgn0028707 -0.96 FBgn0024975 -0.64 FBgn0035300 0.04 FBgn0037038 0.45 FBgn0010387 -1.22 FBgn0051547 -1.55 FBgn0038943 0.51 FBgn0001983 0.61 FBgn0052591 0.64 FBgn0034131 0.74 FBgn0016984 -1.69 FBgn0034731 0.4 FBgn0032773 -0.81 FBgn0034877 -1.86 FBgn0035575 0.72 FBgn0031753 0.72 FBgn0020392 0.3 FBgn0033962 0.5 FBgn0038100 1.63 FBgn0046698 0.56 FBgn0051988 2.16 FBgn0036928 -0.36 FBgn0050479 -0.34 FBgn0026430 -1.31 FBgn0029170 0.52 FBgn0038545 -2.63 FBgn0031065 -1.5 FBgn0053278 -0.88 FBgn0052248 2.05 FBgn0013334 -1.49 FBgn0031970 0.24 FBgn0033972 0.36 FBgn0039120 6.27 FBgn0259171 -1.55 FBgn0038888 -1.58 FBgn0032914 -0.32 FBgn0030087 -1.48 FBgn0053121 0.28 FBgn0030597 -0.67 FBgn0029854 -0.16 FBgn0036942 1.15 FBgn0028997 -1.32 FBgn0031630 -1.35 FBgn0053476 0.5 FBgn0051109 -0.86 FBgn0032938 -1.58 FBgn0034793 1 FBgn0024558 -0.86 FBgn0040491 2.28 FBgn0052652 1.61 FBgn0037391 0.7 FBgn0032477 -0.81 FBgn0025684 -1.13 FBgn0005590 -0.55 FBgn0038753 -0.55 FBgn0034274 0.96 FBgn0032082 0.59 FBgn0037654 -0.28 FBgn0038217 -1.97 FBgn0037661 0.56 FBgn0039335 -1.43 FBgn0043576 0.41 FBgn0032654 -1.34 FBgn0024957 0.54 FBgn0042135 -0.55 FBgn0051028 0.82 FBgn0034638 -0.96 FBgn0051501 1.76 FBgn0045770 -0.41 FBgn0038828 0.44 FBgn0035521 0.78 FBgn0085276 1 FBgn0050369 -0.87 FBgn0030742 -0.92 FBgn0260794 -1.25 FBgn0033547 0.35 FBgn0039839 1.78 FBgn0259743 -1.07 FBgn0031720 -0.53 FBgn0030356 1.28 FBgn0031437 2.47 FBgn0033265 -0.77 FBgn0015781 0.68 FBgn0004832 -1.48 FBgn0034117 1.61 FBgn0086656 -0.96 FBgn0001084 0.66 FBgn0061476 1.18 FBgn0033979 0.64 FBgn0020443 -1.08 FBgn0039419 -0.42 FBgn0031985 0.85 FBgn0032987 4.51 FBgn0031779 0.55 FBgn0038332 0.4 FBgn0029174 -0.65 FBgn0032296 -1.72 FBgn0030801 -1.08 FBgn0051102 0.6 FBgn0027111 2.17 FBgn0034835 -0.57 FBgn0052062 -1.49 FBgn0259744 1.23 FBgn0051924 1.72 FBgn0035600 -2.02 FBgn0053214 -2.41 FBgn0019947 -0.43 FBgn0032901 3.33 FBgn0039386 0.76 FBgn0027654 0.16 FBgn0037332 -1.49 FBgn0065108 0.44 FBgn0036842 -1.12 FBgn0013949 -0.24 FBgn0030780 0.22 FBgn0035374 0.3 FBgn0015331 -0.45 FBgn0040765 -0.94 FBgn0030678 -0.36 FBgn0031548 -1.61 FBgn0039160 -0.56 FBgn0031086 -0.91 FBgn0029812 -1.19 FBgn0053517 1.78 FBgn0066365 2.83 FBgn0037892 0.41 FBgn0031248 -1.08 FBgn0034084 -0.75 FBgn0032398 -1.36 FBgn0037770 1.61 FBgn0041780 1.77 FBgn0032435 -0.99 FBgn0003449 -0.74 FBgn0037506 -2.21 FBgn0052985 -1.71 FBgn0052793 -0.52 FBgn0015240 0.74 FBgn0038203 0.96 FBgn0031005 -1.19 FBgn0261786 1.24 FBgn0038484 0.78 FBgn0036279 0.64 FBgn0032472 -0.74 FBgn0000635 -1.67 FBgn0041004 -1.03 FBgn0038917 0.57 FBgn0051752 0.5 FBgn0031654 1.93 FBgn0035143 1.73 FBgn0037475 0.97 FBgn0039631 -1.43 FBgn0027508 0.37 FBgn0034029 0.62 FBgn0031792 0.37 FBgn0033773 0.67 FBgn0052368 -1.03 FBgn0040816 -1.5 FBgn0039326 -1.52 FBgn0031844 -0.35 FBgn0037427 -2.22 FBgn0031444 0.25 FBgn0031818 -1.07 FBgn0034427 -1.01 FBgn0053702 -0.91 FBgn0050194 1.98 FBgn0046689 -0.68 FBgn0038486 0.72 FBgn0037310 -0.48 FBgn0031716 0.87 FBgn0051118 1.74 FBgn0250850 -1.74 FBgn0031617 -0.88 FBgn0259937 -1.47 FBgn0036566 0.97 FBgn0041171 1.42 FBgn0031957 -0.7 FBgn0035781 0.63 FBgn0085379 0.25 FBgn0032679 0.4 FBgn0015011 7.83 FBgn0052821 -0.6 FBgn0024947 -0.13 FBgn0051099 0.33 FBgn0027524 -0.97 FBgn0035252 0.8 FBgn0046323 -2 FBgn0025874 -1.11 FBgn0050121 -1.29 FBgn0022772 -1.67 FBgn0039117 0.72 FBgn0038380 -0.08 FBgn0036485 0.71 FBgn0034978 0.41 FBgn0039154 -1.22 FBgn0040942 -0.81 FBgn0052806 -0.75 FBgn0031800 0.73 FBgn0030539 -0.48 FBgn0039832 -1.33 FBgn0039078 -1.88 FBgn0003887 1.58 FBgn0034407 0.67 FBgn0036876 -0.37 FBgn0033464 -0.68 FBgn0032965 -1.57 FBgn0035761 0.89 FBgn0037608 -1.23 FBgn0052075 -1.21 FBgn0036337 0.87 FBgn0039104 0.49 FBgn0034374 -1.64 FBgn0032189 -1.36 FBgn0085468 -1.9 FBgn0015799 0.94 FBgn0030706 1.06 FBgn0003114 -0.23 FBgn0037342 -0.6 FBgn0030056 -0.73 FBgn0086358 -1.05 FBgn0015008 0.32 FBgn0260400 2.54 FBgn0003513 -0.48 FBgn0052255 1.2 FBgn0027363 0.51 FBgn0031399 1.3 FBgn0053287 -0.39 FBgn0039227 2.81 FBgn0033371 -0.37 FBgn0030412 -1.77 FBgn0030757 -1.39 FBgn0035755 1.79 FBgn0035165 0.07 FBgn0030684 -0.92 FBgn0031781 1.28 FBgn0031514 -0.74 FBgn0028544 -1.41 FBgn0033860 0.83 FBgn0028693 -0.5 FBgn0086707 1.42 FBgn0032200 -0.9 FBgn0031227 -1.36 FBgn0028421 -0.87 FBgn0035688 -1.43 FBgn0039485 0.95 FBgn0031106 -0.61 FBgn0031497 -1.33 FBgn0031254 0.3 FBgn0034908 2.25 FBgn0035541 -1.01 FBgn0032101 -1.07 FBgn0036479 -0.31 FBgn0035989 1.2 FBgn0031663 1.19 FBgn0039041 -1.31 FBgn0029002 0.28 FBgn0039707 0.43 FBgn0033925 0.51 FBgn0020370 -0.78 FBgn0033286 -0.87 FBgn0023441 2.59 FBgn0033324 0.15 FBgn0035199 -1.39 FBgn0250839 1.72 FBgn0053098 0.5 FBgn0038415 0.66 FBgn0086372 0.25 FBgn0052037 -0.67 FBgn0037463 1.73 FBgn0036812 -0.25 FBgn0024361 0.9 FBgn0003011 0.87 FBgn0037498 -0.07 FBgn0052982 -0.95 FBgn0260005 -1.17 FBgn0040534 3.27 FBgn0260446 1.45 FBgn0038860 -0.31 FBgn0013720 -0.23 FBgn0086675 -1.46 FBgn0031286 -1.55 FBgn0010590 -1.8 FBgn0034971 1.05 FBgn0020626 0.83 FBgn0031869 0.34 FBgn0035779 0.52 FBgn0053459 -1.3 FBgn0035290 0.49 FBgn0035733 -0.26 FBgn0027602 -0.74 FBgn0034748 0.26 FBgn0016119 -0.48 FBgn0034505 -1 FBgn0037184 0.39 FBgn0027518 0.83 FBgn0034153 -0.64 FBgn0036726 -0.69 FBgn0037643 -0.65 FBgn0032636 1.53 FBgn0053548 -0.78 FBgn0052372 1.3 FBgn0036294 -0.29 FBgn0052971 -0.65 FBgn0031681 -1.34 FBgn0034176 -2.12 FBgn0035645 -1.26 FBgn0261245 -1.4 FBgn0037703 -1.23 FBgn0029897 4.91 FBgn0033485 0.31 FBgn0039184 0.78 FBgn0040487 -1.21 FBgn0039595 1.45 FBgn0041244 -1.73 FBgn0051948 -0.67 FBgn0051053 0.65 FBgn0036160 0.57 FBgn0033047 2.33 FBgn0016970 -0.76 FBgn0034461 1.03 FBgn0261090 1.6 FBgn0030749 -0.31 FBgn0036488 1.7 FBgn0046756 0.3 FBgn0036348 1.22 FBgn0037860 0.37 FBgn0011812 -0.76 FBgn0261551 -0.94 FBgn0042112 0.03 FBgn0004888 -2.27 FBgn0052081 -0.86 FBgn0032361 -1.84 FBgn0035695 -1.41 FBgn0051909 -2.38 FBgn0041147 0.85 FBgn0050404 1.05 FBgn0033397 -1.88 FBgn0040717 -0.12 FBgn0050050 -1.02 FBgn0028744 0.43 FBgn0039071 1.49 FBgn0052833 0.61 FBgn0259785 -0.79 FBgn0034538 -1.79 FBgn0030519 -1.38 FBgn0047135 1.6 FBgn0037540 1.3 FBgn0027376 -1.9 FBgn0004363 -1.07 FBgn0039737 -1.7 FBgn0034472 -0.78 FBgn0036858 -2.04 FBgn0052379 -0.63 FBgn0038821 1.11 FBgn0038020 0.51 FBgn0051862 1.67 FBgn0003068 -1.27 FBgn0010812 -0.57 FBgn0015572 -1.02 FBgn0000153 0.38 FBgn0032391 -1.07 FBgn0030996 -1.35 FBgn0033019 -1.28 FBgn0259178 1.32 FBgn0085197 -0.6 FBgn0029969 -0.19 FBgn0033278 -0.67 FBgn0029756 -1.27 FBgn0051133 -0.39 FBgn0029765 -1.48 FBgn0031535 -0.54 FBgn0054047 -0.74 FBgn0087005 -1.41 FBgn0038578 3.83 FBgn0030028 -0.85 FBgn0030890 -0.87 FBgn0050094 -0.16 FBgn0037223 -0.77 FBgn0032522 -0.85 FBgn0026738 -0.79 FBgn0038700 -0.77 FBgn0027571 1.5 FBgn0040227 1.02 FBgn0062442 -0.78 FBgn0003277 2.48 FBgn0040372 -0.38 FBgn0031888 -1.45 FBgn0035964 1.36 FBgn0015618 4.86 FBgn0035056 0.03 FBgn0036288 3.47 FBgn0086679 0.91 FBgn0028942 -1.3 FBgn0005626 1.32 FBgn0037358 -1.08 FBgn0002772 0.12 FBgn0011693 -0.48 FBgn0031146 1.14 FBgn0001978 2.22 FBgn0003140 0.4 FBgn0038180 1.88 FBgn0031450 -1.01 FBgn0040465 -1.4 FBgn0033134 -0.11 FBgn0002524 1.69 FBgn0260474 1.77 FBgn0039048 -0.48 FBgn0051619 -0.94 FBgn0033990 0.58 FBgn0010770 1.5 FBgn0040950 2.23 FBgn0261530 -1.12 FBgn0034396 0.75 FBgn0040257 1.17 FBgn0261534 -0.14 FBgn0010044 -1.85 FBgn0036680 -0.28 FBgn0261585 1.46 FBgn0033943 -1.26 FBgn0040505 0.91 FBgn0037121 0.71 FBgn0031886 0.59 FBgn0030398 -0.8 FBgn0032451 0.27 FBgn0040091 -0.7 FBgn0050046 -1 FBgn0036422 0.5 FBgn0259729 -0.75 FBgn0260753 -0.93 FBgn0010223 -0.17 FBgn0025185 -0.48 FBgn0023167 0.45 FBgn0035626 0.15 FBgn0010352 1.5 FBgn0040571 0.8 FBgn0031934 -0.96 FBgn0038516 0.76 FBgn0052667 -0.83 FBgn0008635 1.31 FBgn0038654 -1.67 FBgn0032095 0.23 FBgn0000258 1.03 FBgn0038673 -0.83 FBgn0030941 -1.22 FBgn0039679 -0.7 FBgn0260764 -1.22 FBgn0030904 0.63 FBgn0033935 0.59 FBgn0030773 -0.38 FBgn0038385 -0.63 FBgn0015218 1.93 FBgn0039212 0.56 FBgn0034430 -0.44 FBgn0029723 0.52 FBgn0033027 -1.07 FBgn0033473 -1.19 FBgn0030582 -0.57 FBgn0032243 -1.35 FBgn0033680 -1.46 FBgn0014340 -1.5 FBgn0020309 -1.11 FBgn0035855 -0.69 FBgn0002723 -0.92 FBgn0029712 -0.7 FBgn0051739 -0.83 FBgn0032533 -1.59 FBgn0045495 0.77 FBgn0085400 1.11 FBgn0033101 1.48 FBgn0003256 9.67 FBgn0033061 1.01 FBgn0036159 -1.53 FBgn0050460 -1.54 FBgn0030218 0.49 FBgn0005613 3.15 FBgn0017579 3.86 FBgn0050345 -1.39 FBgn0031829 -2.54 FBgn0046886 0.43 FBgn0032354 0.49 FBgn0260226 -1.16 FBgn0038881 2.14 FBgn0039670 -1.24 FBgn0033917 -0.62 FBgn0042098 1.34 FBgn0036316 -0.79 FBgn0030035 0.41 FBgn0030186 -0.77 FBgn0031130 -0.66 FBgn0259210 2.12 FBgn0051693 -1.9 FBgn0021979 0.71 FBgn0032033 1.08 FBgn0000036 -0.32 FBgn0083963 -2.04 FBgn0051815 -0.78 FBgn0030789 -0.55 FBgn0038342 -0.61 FBgn0039193 1.13 FBgn0260856 1.07 FBgn0039651 0.74 FBgn0032026 -1.06 FBgn0001114 -1.17 FBgn0005355 1.14 FBgn0261502 1.39 FBgn0086444 0.69 FBgn0053533 1.18 FBgn0033951 0.34 FBgn0031375 -0.35 FBgn0037199 -1.64 FBgn0250870 -0.45 FBgn0022786 -0.79 FBgn0039812 0.21 FBgn0032120 -1.88 FBgn0043539 -0.97 FBgn0039727 -1.03 FBgn0086855 0.82 FBgn0026317 -1.2 FBgn0024913 1.51 FBgn0001313 -1.13 FBgn0035598 -0.43 FBgn0028382 -0.83 FBgn0037899 0.38 FBgn0038507 0.54 FBgn0037490 0.57 FBgn0033950 -1.01 FBgn0035792 1.38 FBgn0250755 -0.6 FBgn0051742 2.01 FBgn0051390 1.13 FBgn0029906 1.03 FBgn0035510 0.82 FBgn0053054 -0.54 FBgn0025802 0.08 FBgn0034763 -0.59 FBgn0028789 -0.34 FBgn0033113 0.15 FBgn0051191 0.96 FBgn0037371 -0.77 FBgn0038299 1.4 FBgn0032003 -1.26 FBgn0003710 -1.89 FBgn0028467 1.21 FBgn0014020 -3.02 FBgn0040697 0.45 FBgn0033519 -0.96 FBgn0033674 -1.13 FBgn0014380 -1.59 FBgn0023520 -1.88 FBgn0040255 0.8 FBgn0029930 0.6 FBgn0259188 -0.16 FBgn0010774 5.1 FBgn0024196 -1.32 FBgn0025716 -1.65 FBgn0051639 1.05 FBgn0032015 -1.41 FBgn0035847 0.26 FBgn0038280 0.56 FBgn0037743 -0.41 FBgn0038581 -1.3 FBgn0032808 -1.1 FBgn0025825 2.1 FBgn0066293 -0.72 FBgn0001991 0.37 FBgn0035534 -1.36 FBgn0031977 -1.14 FBgn0037535 1.2 FBgn0034326 -0.69 FBgn0259967 -0.59 FBgn0036584 0.53 FBgn0028675 -0.24 FBgn0033341 1.11 FBgn0036663 -1.24 FBgn0031149 -0.25 FBgn0062413 -1.39 FBgn0026392 -1.21 FBgn0034662 -1.64 FBgn0011826 1.61 FBgn0031197 -1.19 FBgn0033033 0.17 FBgn0052438 0.51 FBgn0000150 -0.6 FBgn0026174 0.35 FBgn0041336 -1.62 FBgn0039321 -1.45 FBgn0030499 0.23 FBgn0033166 -0.28 FBgn0000497 -0.9 FBgn0037764 1.21 FBgn0052660 -1.45 FBgn0036421 -0.57 FBgn0032787 1.34 FBgn0259985 -0.28 FBgn0039302 1.49 FBgn0029504 0.42 FBgn0261561 -0.94 FBgn0004575 -0.55 FBgn0000382 3.77 FBgn0035901 -0.44 FBgn0004390 2.42 FBgn0037442 -1.23 FBgn0052203 -1.64 FBgn0032266 -0.51 FBgn0035309 -0.64 FBgn0051992 4.6 FBgn0034514 -0.47 FBgn0050391 1.15 FBgn0033387 -1.62 FBgn0028373 -0.17 FBgn0034263 0.12 FBgn0010473 -1.79 FBgn0031813 -1.43 FBgn0037873 -1.25 FBgn0052602 1.81 FBgn0033141 -1.5 FBgn0040780 -1.39 FBgn0261085 0.77 FBgn0040923 0.05 FBgn0040347 -1.29 FBgn0034937 -0.8 FBgn0037093 1.34 FBgn0041622 0.78 FBgn0038439 0.98 FBgn0037761 -0.56 FBgn0034165 -1.98 FBgn0029920 -0.38 FBgn0020306 -2.74 FBgn0040904 -1.56 FBgn0000473 -0.53 FBgn0033884 -0.56 FBgn0039252 -0.88 FBgn0034443 -0.96 FBgn0030669 0.45 FBgn0040905 -0.44 FBgn0040871 -0.91 FBgn0039795 -1.38 FBgn0011769 -0.43 FBgn0037051 0.26 FBgn0036757 0.62 FBgn0039273 -0.48 FBgn0037844 0.22 FBgn0030574 -1.26 FBgn0038931 0.38 FBgn0004901 -1.88 FBgn0036750 -1.12 FBgn0031442 0.63 FBgn0035426 0.5 FBgn0052553 -0.67 FBgn0259164 -0.88 FBgn0036417 -0.25 FBgn0024510 0.26 FBgn0038136 0.75 FBgn0032251 -1.03 FBgn0036882 0.47 FBgn0036745 -0.6 FBgn0037726 0.39 FBgn0050417 -1.04 FBgn0058191 -1.82 FBgn0038194 -0.78 FBgn0026160 -0.64 FBgn0039347 -1 FBgn0085404 -0.43 FBgn0086348 -0.83 FBgn0053003 -1.71 FBgn0261630 0.33 FBgn0051036 1.28 FBgn0260960 -0.08 FBgn0039083 0.7 FBgn0035678 -0.43 FBgn0035578 -0.54 FBgn0027330 -0.53 FBgn0039452 -0.29 FBgn0032020 -1.38 FBgn0052801 0.69 FBgn0033853 -1.33 FBgn0034996 -0.41 FBgn0004181 1.5 FBgn0013750 0.82 FBgn0034096 -1.62 FBgn0033429 -1.38 FBgn0030055 -0.15 FBgn0035241 -0.54 FBgn0031874 1.18 FBgn0000617 -1.51 FBgn0030525 -1.39 FBgn0033122 1.54 FBgn0034965 -0.21 FBgn0040793 -1.89 FBgn0044047 1 FBgn0053267 0.56 FBgn0053257 -1.01 FBgn0036519 -1.41 FBgn0010482 1.98 FBgn0051445 -0.97 FBgn0000489 -1.45 FBgn0051876 -1.63 FBgn0033412 -0.86 FBgn0029688 1.25 FBgn0085435 -1.31 FBgn0031857 0.71 FBgn0050145 -0.39 FBgn0034467 0.49 FBgn0035347 -1.77 FBgn0036327 0.7 FBgn0019985 0.63 FBgn0025574 1.5 FBgn0052487 -0.91 FBgn0021906 -1.23 FBgn0031429 -0.96 FBgn0032318 -0.55 FBgn0039685 1.03 FBgn0033572 0.59 FBgn0030555 -1.15 FBgn0032258 -0.55 FBgn0023508 -1.24 FBgn0052670 -1.07 FBgn0034893 -1.27 FBgn0038922 -1.99 FBgn0039316 -1.55 FBgn0052072 1.36 FBgn0036112 0.52 FBgn0030310 -0.27 FBgn0010401 0.82 FBgn0034603 2.48 FBgn0031030 -1.59 FBgn0038691 -0.92 FBgn0052006 -1.82 FBgn0015584 0.37 FBgn0030680 -0.76 FBgn0050464 1.05 FBgn0034708 -0.4 FBgn0029928 -0.36 FBgn0015589 0.84 FBgn0030008 -1.42 FBgn0036196 -1.06 FBgn0027106 0.54 FBgn0000376 0.54 FBgn0261637 -0.65 FBgn0035005 0.44 FBgn0031948 -1.12 FBgn0004108 -0.55 FBgn0032882 -2.09 FBgn0031621 -0.64 FBgn0261613 -1.5 FBgn0036939 -0.52 FBgn0041180 -0.79 FBgn0261269 0.53 FBgn0034013 1.16 FBgn0038735 1.65 FBgn0051682 0.27 FBgn0034214 -2.23 FBgn0001280 1.32 FBgn0031332 -0.7 FBgn0035675 -1.03 FBgn0038309 0.38 FBgn0015664 0.52 FBgn0036932 -1.33 FBgn0030014 0.82 FBgn0261922 -1.15 FBgn0261929 -1.47 FBgn0030958 -1.06 FBgn0033610 -0.96 FBgn0039490 2.47 FBgn0002855 0.4 FBgn0040337 -1.28 FBgn0052679 1.05 FBgn0000395 1.29 FBgn0033866 0.49 FBgn0036366 -1.25 FBgn0033774 -0.66 FBgn0004620 -1.54 FBgn0038533 0.21 FBgn0001233 1.19 FBgn0000412 -1.04 FBgn0085496 0.95 FBgn0053094 -1.08 FBgn0028956 -0.3 FBgn0015396 -1.54 FBgn0033550 0.26 FBgn0066101 -1.35 FBgn0030017 -0.38 FBgn0053463 1.23 FBgn0031485 -1.9 FBgn0043865 -0.77 FBgn0034000 -2 FBgn0039875 0.29 FBgn0030828 1.2 FBgn0052672 -0.88 FBgn0038766 0.61 FBgn0035924 0.54 FBgn0033451 0.33 FBgn0035630 -2.12 FBgn0052625 -1.35 FBgn0027575 0.64 FBgn0050421 -0.67 FBgn0034498 1.59 FBgn0017558 -0.51 FBgn0038784 -0.99 FBgn0002869 1.5 FBgn0035648 -1.33 FBgn0026144 0.46 FBgn0037410 0.82 FBgn0035318 -2.14 FBgn0051265 0.18 FBgn0031606 -1.15 FBgn0039558 1.41 FBgn0046332 1.43 FBgn0030332 0.62 FBgn0037341 -0.22 FBgn0040747 -0.35 FBgn0260452 0.43 FBgn0037565 -0.84 FBgn0030003 -1.77 FBgn0261260 1.23 FBgn0036588 -1.71 FBgn0040022 1.55 FBgn0026418 -1.06 FBgn0034688 0.4 FBgn0002865 -0.86 FBgn0032590 0.96 FBgn0032455 0.71 FBgn0029965 1.1 FBgn0034958 -0.75 FBgn0037336 -1.23 FBgn0261112 -0.43 FBgn0051327 0.67 FBgn0015949 0.16 FBgn0015569 -0.21 FBgn0031604 -0.6 FBgn0259110 1.13 FBgn0032167 -0.82 FBgn0015576 -0.94 FBgn0002183 -0.47 FBgn0052582 -1.74 FBgn0036786 1.72 FBgn0033304 -0.61 FBgn0035702 1.19 FBgn0034312 1.94 FBgn0052649 -1.15 FBgn0033504 -1.45 FBgn0085422 0.3 FBgn0000566 -1.37 FBgn0038632 0.29 FBgn0033698 -0.82 FBgn0039805 0.13 FBgn0040361 -0.55 FBgn0028992 1.2 FBgn0003514 -1.28 FBgn0011604 1.13 FBgn0039186 0.62 FBgn0053144 0.91 FBgn0035273 -0.48 FBgn0052058 -0.17 FBgn0031634 -0.75 FBgn0030847 0.38 FBgn0023512 -0.76 FBgn0030873 -0.09 FBgn0000455 0.45 FBgn0036221 -1.08 FBgn0038830 0.58 FBgn0039520 -0.69 FBgn0033100 0.99 FBgn0032166 -1.65 FBgn0029849 0.51 FBgn0032889 -0.94 FBgn0030872 -1.34 FBgn0025674 0.49 FBgn0032464 0.6 FBgn0035101 1.19 FBgn0033819 0.35 FBgn0033216 -0.32 FBgn0031517 -1.37 FBgn0030319 -1.59 FBgn0039127 -0.58 FBgn0030395 0.21 FBgn0036108 -0.91 FBgn0034417 0.09 FBgn0029696 -1.04 FBgn0030349 -1.21 FBgn0051373 0.78 FBgn0038425 1.06 FBgn0034007 1.39 FBgn0015623 1.11 FBgn0013771 -0.23 FBgn0038804 0.6 FBgn0029821 0.5 FBgn0052267 0.74 FBgn0030974 1.24 FBgn0032725 0.92 FBgn0038856 -1.25 FBgn0000559 1.87 FBgn0052441 -0.74 FBgn0053309 1.01 FBgn0031307 -0.44 FBgn0038750 0.59 FBgn0038646 0.28 FBgn0036226 -0.74 FBgn0034387 0.49 FBgn0052264 -1.05 FBgn0063496 0.34 FBgn0033978 0.29 FBgn0054040 -0.96 FBgn0036449 0.07 FBgn0032498 1.67 FBgn0036668 4.27 FBgn0038058 0.65 FBgn0032338 -0.94 FBgn0020907 1.13 FBgn0015770 1.33 FBgn0028342 0.2 FBgn0030603 -1.01 FBgn0011766 -0.83 FBgn0037293 -1.61 FBgn0028999 -1.58 FBgn0035873 0.35 FBgn0037017 -0.26 FBgn0015794 1.16 FBgn0053796 -1.44 FBgn0025781 -0.45 FBgn0038877 0.45 FBgn0029753 -0.92 FBgn0031466 0.43 FBgn0037935 0.43 FBgn0027563 -0.97 FBgn0033810 -0.53 FBgn0039529 -1.73 FBgn0036469 5.1 FBgn0033741 0.36 FBgn0086680 1.02 FBgn0261386 -0.61 FBgn0032733 -0.58 FBgn0052406 -1.33 FBgn0032377 1.38 FBgn0033408 -0.21 FBgn0036607 -0.33 FBgn0000216 -1.02 FBgn0010399 -0.19 FBgn0086712 -1.29 FBgn0034325 -0.49 FBgn0038588 0.47 FBgn0036463 -0.69 FBgn0036442 -0.37 FBgn0034278 -0.83 FBgn0085254 -0.34 FBgn0040388 -1.38 FBgn0030615 -0.96 FBgn0033672 0.88 FBgn0038202 -0.53 FBgn0033088 0.66 FBgn0035283 2.34 FBgn0039879 -1.2 FBgn0031011 0.67 FBgn0034245 0.25 FBgn0085385 0.47 FBgn0011740 -0.89 FBgn0036272 -0.76 FBgn0051851 -1.3 FBgn0085317 -0.74 FBgn0038261 0.06 FBgn0020294 0.59 FBgn0033691 -0.83 FBgn0050074 0.6 FBgn0003145 0.26 FBgn0030543 -0.46 FBgn0035178 -1.35 FBgn0038390 -0.35 FBgn0032878 0.53 FBgn0032017 -0.16 FBgn0000008 -0.6 FBgn0035880 0.43 FBgn0037688 -0.86 FBgn0039710 -1.81 FBgn0031016 1.53 FBgn0046214 0.88 FBgn0042186 -0.76 FBgn0013435 -0.85 FBgn0052708 -1.4 FBgn0010342 -1 FBgn0015033 1.79 FBgn0037374 -1.04 FBgn0036210 -0.47 FBgn0028331 0.53 FBgn0261931 -1.18 FBgn0040342 -1.46 FBgn0002036 0.87 FBgn0020249 -1.02 FBgn0030813 -1.61 FBgn0031261 -0.19 FBgn0039293 1.47 FBgn0038414 -1.54 FBgn0038454 -1.6 FBgn0036574 0.19 FBgn0039714 -0.54 FBgn0024244 -0.68 FBgn0030662 -0.92 FBgn0036199 0.42 FBgn0086254 -0.74 FBgn0051343 1.43 FBgn0041629 0.72 FBgn0036038 -1.46 FBgn0031670 -1.18 FBgn0024289 1 FBgn0032846 0.56 FBgn0033598 -0.63 FBgn0035287 1.22 FBgn0014857 -2.03 FBgn0037036 0.43 FBgn0011708 1.27 FBgn0039634 -1.77 FBgn0040565 0.53 FBgn0033357 -1.46 FBgn0037621 -1.02 FBgn0038775 -1.5 FBgn0030620 1.34 FBgn0041224 0.91 FBgn0260743 0.55 FBgn0031695 -1.14 FBgn0040394 2.19 FBgn0038049 -6.26 FBgn0034974 -1.65 FBgn0030933 1.63 FBgn0039304 -1.61 FBgn0010246 0.69 FBgn0038273 -1.24 FBgn0030151 -0.5 FBgn0033820 -0.37 FBgn0036510 -1.07 FBgn0039464 -0.75 FBgn0039350 0.8 FBgn0024222 -1.52 FBgn0033195 2.46 FBgn0030041 1.35 FBgn0028647 0.94 FBgn0033712 -0.47 FBgn0004514 1.3 FBgn0261562 0.54 FBgn0032769 -0.65 FBgn0033380 -0.41 FBgn0035401 -1.39 FBgn0035264 0.8 FBgn0085345 0.11 FBgn0261816 -0.8 FBgn0038706 -1.4 FBgn0000233 -0.93 FBgn0038718 1.78 FBgn0035092 -0.57 FBgn0260817 -0.88 FBgn0036698 -0.71 FBgn0038290 0.19 FBgn0034082 0.3 FBgn0050497 1.17 FBgn0035944 -0.29 FBgn0039937 -1.21 FBgn0016762 -1.73 FBgn0040285 -1.21 FBgn0035488 2.07 FBgn0031540 0.73 FBgn0034590 1.05 FBgn0037388 1.24 FBgn0035585 -0.77 FBgn0037071 0.37 FBgn0039585 -0.58 FBgn0051955 -0.75 FBgn0037849 -0.97 FBgn0015296 -1.17 FBgn0030720 1.05 FBgn0033389 0.6 FBgn0259241 0.76 FBgn0045502 1.32 FBgn0038142 -1.75 FBgn0040238 -1.24 FBgn0051915 0.55 FBgn0034784 -0.66 FBgn0004118 -0.08 FBgn0051347 -1.72 FBgn0032816 -1.91 FBgn0029879 -0.64 FBgn0030930 1.63 FBgn0083971 0.9 FBgn0037837 -0.81 FBgn0034300 -0.38 FBgn0033669 -1.38 FBgn0037544 -1.1 FBgn0036619 -0.96 FBgn0045064 -1.36 FBgn0034429 -1.27 FBgn0031258 0.38 FBgn0259166 -1.55 FBgn0045498 1.1 FBgn0083950 1.01 FBgn0038665 -1.51 FBgn0045479 -0.86 FBgn0032065 -1.74 FBgn0000239 -0.99 FBgn0036770 -1.08 FBgn0039378 -0.98 FBgn0033905 0.4 FBgn0003366 1.5 FBgn0033512 0.6 FBgn0004657 -0.47 FBgn0036945 -0.59 FBgn0031784 -1.27 FBgn0050285 1.27 FBgn0050273 -0.08 FBgn0035031 1.35 FBgn0037747 -1.12 FBgn0019929 1.13 FBgn0031906 -0.45 FBgn0042104 -1.24 FBgn0029740 0.46 FBgn0001404 -1.36 FBgn0035639 -1.24 FBgn0035168 0.2 FBgn0086365 -0.83 FBgn0037794 0.98 FBgn0039705 1.05 FBgn0034199 0.27 FBgn0037676 -1.54 FBgn0052549 -0.97 FBgn0052066 -0.54 FBgn0050375 -1.81 FBgn0037842 0.21 FBgn0035238 -1.37 FBgn0031161 -0.63 FBgn0001217 0.35 FBgn0029587 0.32 FBgn0032429 0.53 FBgn0034001 1.22 FBgn0039560 1.45 FBgn0052521 0.5 FBgn0032613 -1.09 FBgn0030469 -0.33 FBgn0020372 1.38 FBgn0033921 -0.5 FBgn0040759 -1.31 FBgn0000427 -1.02 FBgn0032684 -0.37 FBgn0051465 0.69 FBgn0024177 1.15 FBgn0030927 -0.55 FBgn0035120 0.38 FBgn0261437 -1.03 FBgn0031432 -0.16 FBgn0039942 -0.52 FBgn0030109 0.22 FBgn0037941 0.67 FBgn0261403 -0.81 FBgn0039034 0.27 FBgn0037988 -0.78 FBgn0029118 1.1 FBgn0025838 -1.53 FBgn0028473 -0.54 FBgn0035043 -0.73 FBgn0036740 -0.49 FBgn0026404 -0.61 FBgn0051897 -1.3 FBgn0004652 -1.01 FBgn0032321 0.35 FBgn0039472 -1.1 FBgn0023023 -0.85 FBgn0034729 -1.64 FBgn0034884 -0.78 FBgn0033883 1.06 FBgn0051813 1.66 FBgn0026207 1.96 FBgn0085300 -0.58 FBgn0035049 -0.93 FBgn0030805 -0.59 FBgn0038816 -1.34 FBgn0038318 0.47 FBgn0261862 1.14 FBgn0036219 -0.97 FBgn0034739 -0.31 FBgn0033782 0.88 FBgn0036695 -0.57 FBgn0030433 -1.27 FBgn0030362 0.98 FBgn0039565 0.75 FBgn0039552 -0.48 FBgn0020439 1.53 FBgn0040696 -0.11 FBgn0035496 1.09 FBgn0028582 2.81 FBgn0037807 1.12 FBgn0032283 -0.88 FBgn0030074 0.97 FBgn0010423 -1.41 FBgn0035042 0.93 FBgn0028945 -0.97 FBgn0016080 -0.62 FBgn0038011 -0.39 FBgn0053296 -0.54 FBgn0026761 0.04 FBgn0052418 1.23 FBgn0037488 0.72 FBgn0052054 -1.35 FBgn0026573 -1.64 FBgn0041789 1.3 FBgn0260866 -1.17 FBgn0034365 0.17 FBgn0037213 0.84 FBgn0085360 0.3 FBgn0046776 -0.7 FBgn0027794 -0.3 FBgn0033235 -1.45 FBgn0037364 -0.66 FBgn0051016 -0.26 FBgn0032138 1.51 FBgn0051365 1.69 FBgn0036807 -0.76 FBgn0037115 0.22 FBgn0053282 -0.78 FBgn0039731 -0.86 FBgn0037956 1.14 FBgn0030918 0.55 FBgn0030796 -1.18 FBgn0012042 0.18 FBgn0053322 0.56 FBgn0005630 -2.42 FBgn0035086 -0.28 FBgn0011586 0.81 FBgn0052720 -0.41 FBgn0033524 -0.71 FBgn0029093 -1.21 FBgn0085456 0.4 FBgn0028852 0.64 FBgn0054002 -0.8 FBgn0035023 0.54 FBgn0050053 1.26 FBgn0035766 1.42 FBgn0037638 0.98 FBgn0053648 -1.41 FBgn0002413 0.55 FBgn0033588 -1.64 FBgn0261698 1.51 FBgn0032409 -0.94 FBgn0051882 -0.88 FBgn0035382 0.27 FBgn0259139 -2.12 FBgn0028847 -1.71 FBgn0030863 -1.04 FBgn0037739 0.53 FBgn0003975 -1.67 FBgn0034756 -0.74 FBgn0051805 -0.84 FBgn0036194 1.44 FBgn0033447 0.45 FBgn0037944 -0.65 FBgn0039254 -1.51 FBgn0023177 2.24 FBgn0038603 -1.29 FBgn0037832 0.73 FBgn0052022 -0.51 FBgn0011300 -0.68 FBgn0013813 -0.57 FBgn0030729 -0.91 FBgn0024315 -1.65 FBgn0038952 -0.79 FBgn0033653 1.8 FBgn0035295 -1.07 FBgn0038307 -0.85 FBgn0085354 -1.06 FBgn0036150 0.67 FBgn0030840 -0.78 FBgn0032796 0.83 FBgn0037044 -0.25 FBgn0036028 -0.79 FBgn0029888 -1.26 FBgn0029799 -0.95 FBgn0259707 1.31 FBgn0026402 -0.94 FBgn0034826 0.32 FBgn0034491 -0.28 FBgn0032669 -0.22 FBgn0086711 -1.77 FBgn0004837 -0.55 FBgn0038042 -0.51 FBgn0005777 0.54 FBgn0036481 -0.43 FBgn0033052 -0.62 FBgn0040734 1.65 FBgn0037064 -0.62 FBgn0030270 0.71 FBgn0028968 0.29 FBgn0025645 0.84 FBgn0038662 -1.26 FBgn0031047 1.42 FBgn0038897 -1.23 FBgn0022943 -1.37 FBgn0036257 0.66 FBgn0032210 0.48 FBgn0002922 -0.68 FBgn0032647 -1.12 FBgn0040298 -1.37 FBgn0037555 -1.69 FBgn0036319 0.32 FBgn0035942 -1.12 FBgn0034579 -1.38 FBgn0040001 -0.28 FBgn0039817 1.2 FBgn0037106 -0.81 FBgn0004368 -1.45 FBgn0031832 -1.22 FBgn0003210 -1.53 FBgn0032651 -0.4 FBgn0053158 -1.18 FBgn0033178 -0.98 FBgn0017572 -1.84 FBgn0027498 -0.8 FBgn0027492 -1.14 FBgn0003317 -0.78 FBgn0031735 -0.9 FBgn0035953 0.29 FBgn0043458 -1.57 FBgn0051025 1.07 FBgn0024232 1.16 FBgn0035099 -1.39 FBgn0034371 0.72 FBgn0035708 -1.51 FBgn0011204 -1.15 FBgn0015019 -1.62 FBgn0000482 -1.21 FBgn0033750 0.74 FBgn0036007 -0.28 FBgn0031407 -0.73 FBgn0035246 0.31 FBgn0033350 1.45 FBgn0033093 0.98 FBgn0032486 0.19 FBgn0050035 2.03 FBgn0038006 -0.2 FBgn0035113 -1.58 FBgn0043792 0.94 FBgn0003950 -1.09 FBgn0037026 1.5 FBgn0034447 -0.89 FBgn0086613 -1.9 FBgn0036099 -0.72 FBgn0052451 -1.72 FBgn0011725 0.87 FBgn0031814 -1.39 FBgn0031747 0.89 FBgn0010355 -1 FBgn0036341 0.87 FBgn0033107 -1.69 FBgn0050295 1.55 FBgn0053775 0.45 FBgn0260481 -0.27 FBgn0030642 0.57 FBgn0261647 0.64 FBgn0050077 -0.69 FBgn0030883 -1.31 FBgn0038109 0.13 FBgn0052448 1.2 FBgn0053180 0.24 FBgn0034229 1.33 FBgn0042198 -1.05 FBgn0000259 1.06 FBgn0022349 -0.78 FBgn0051126 -0.82 FBgn0036612 -0.56 FBgn0028746 1.5 FBgn0038584 0.73 FBgn0039881 -0.86 FBgn0019960 -0.55 FBgn0020621 -0.6 FBgn0033321 0.14 FBgn0030853 -1.18 FBgn0031770 -1.75 FBgn0030753 -0.38 FBgn0032833 -1.21 FBgn0037419 -1.81 FBgn0052407 -1.21 FBgn0032431 1.66 FBgn0011648 -0.39 FBgn0085488 -1.3 FBgn0017561 -0.59 FBgn0033706 -1.03 FBgn0028668 0.6 FBgn0052027 -0.1 FBgn0039408 0.48 FBgn0000352 -0.39 FBgn0038659 -1.3 FBgn0039768 -1.13 FBgn0031660 0.78 FBgn0031802 1.01 FBgn0029147 0.33 FBgn0037563 0.76 FBgn0032690 -1.09 FBgn0040532 0.93 FBgn0052791 -0.34 FBgn0035141 1.17 FBgn0038482 1.02 FBgn0039092 -1.89 FBgn0030504 -0.08 FBgn0039694 -1.52 FBgn0031765 0.67 FBgn0014022 -0.44 FBgn0039613 1.01 FBgn0033629 1.18 FBgn0259927 0.69 FBgn0051414 1.77 FBgn0035384 -0.7 FBgn0037001 -0.89 FBgn0053752 -1.08 FBgn0260990 1.79 FBgn0028500 -0.28 FBgn0037081 -0.25 FBgn0085419 0.87 FBgn0036878 -1.95 FBgn0032214 -1.08 FBgn0086673 -1.44 FBgn0037249 2.32 FBgn0037461 -0.87 FBgn0037504 -1.78 FBgn0046294 -1.62 FBgn0053519 1.36 FBgn0034973 -0.89 FBgn0052987 -1.66 FBgn0035969 1.04 FBgn0032050 -1.33 FBgn0033569 0.53 FBgn0040954 1.51 FBgn0036083 -2.01 FBgn0036706 1.36 FBgn0036292 0.49 FBgn0259483 0.99 FBgn0037255 -0.39 FBgn0030049 -0.61 FBgn0038189 -0.35 FBgn0035505 0.74 FBgn0031093 2.55 FBgn0000499 -0.82 FBgn0037583 -1.31 FBgn0037670 1.56 FBgn0030537 -1.29 FBgn0037369 -0.96 FBgn0038233 0.07 FBgn0051278 0.38 FBgn0031786 -0.74 FBgn0050106 1.11 FBgn0052446 -0.98 FBgn0054007 0.68 FBgn0039923 -1.88 FBgn0083945 -1.09 FBgn0026257 -0.39 FBgn0036386 -1.08 FBgn0027085 -0.58 FBgn0036909 -0.05 FBgn0043532 -1.81 FBgn0085412 -1.13 FBgn0010282 0.63 FBgn0261529 -0.42 FBgn0002565 -0.77 FBgn0085201 -1.86 FBgn0051713 -0.63 FBgn0031168 -1.37 FBgn0023211 0.38 FBgn0010078 5.31 FBgn0036848 -1.43 FBgn0032864 1.35 FBgn0037618 -1.41 FBgn0031842 0.39 FBgn0029121 0.49 FBgn0016917 -0.95 FBgn0052319 -1.07 FBgn0052237 -1.01 FBgn0037301 -1.37 FBgn0036809 -0.54 FBgn0031619 -0.31 FBgn0028902 -0.95 FBgn0030823 -0.46 FBgn0053284 -0.84 FBgn0052751 -0.43 FBgn0030571 -0.79 FBgn0037241 -1.56 FBgn0031610 1.58 FBgn0041706 0.92 FBgn0032422 -1.48 FBgn0051116 0.75 FBgn0038862 -1.18 FBgn0035155 -1.11 FBgn0051292 0.39 FBgn0038686 -0.52 FBgn0044872 0.63 FBgn0036929 -0.24 FBgn0030328 0.88 FBgn0031061 0.74 FBgn0037329 -0.93 FBgn0015570 -1.09 FBgn0052523 -1.11 FBgn0004893 1.28 FBgn0036832 -1.37 FBgn0034745 -0.77 FBgn0027594 1.49 FBgn0013343 0.7 FBgn0051251 -1.76 FBgn0028371 7.82 FBgn0037078 -0.67 FBgn0033723 -0.74 FBgn0085259 -1.42 FBgn0023458 -0.78 FBgn0034910 -1.82 FBgn0043456 -0.56 FBgn0052726 -0.95 FBgn0031504 -1.74 FBgn0039102 0.61 FBgn0024991 0.58 FBgn0013759 -1.03 FBgn0050196 0.57 FBgn0050350 0.62 FBgn0003444 -0.51 FBgn0050362 0.52 FBgn0026598 -1.62 FBgn0038446 -0.67 FBgn0039830 -1.67 FBgn0014930 -1.4 FBgn0033830 0.56 FBgn0034248 0.65 FBgn0032706 -2.02 FBgn0028546 0.91 FBgn0000719 -1.59 FBgn0051798 6.24 FBgn0040674 -1.31 FBgn0005536 -1.51 FBgn0031104 -0.57 FBgn0083167 -0.34 FBgn0001185 0.81 FBgn0037998 0.56 FBgn0039425 1.56 FBgn0036234 -0.69 FBgn0031955 1.56 FBgn0004828 -1.84 FBgn0030590 1.49 FBgn0039109 -0.88 FBgn0032780 2.75 FBgn0033557 -0.4 FBgn0033807 0.23 FBgn0002284 -0.73 FBgn0038761 1.12 FBgn0031472 0.5 FBgn0032853 -0.28 FBgn0026376 0.09 FBgn0052984 -0.46 FBgn0038975 1.5 FBgn0013679 0.19 FBgn0034906 1.58 FBgn0030747 1.17 FBgn0037204 -1.7 FBgn0030686 -1.72 FBgn0250837 -1.01 FBgn0036568 1.11 FBgn0032262 -1.19 FBgn0003429 0.31 FBgn0025595 0.92 FBgn0032187 -1.27 FBgn0037186 0.72 FBgn0085451 -1.08 FBgn0036314 1.94 FBgn0035735 -0.25 FBgn0085190 1.49 FBgn0029818 0.33 FBgn0028471 -1.52 FBgn0039483 -0.82 FBgn0035604 1.55 FBgn0030704 1.14 FBgn0033285 -1.08 FBgn0004643 0.51 FBgn0033226 -1.36 FBgn0037828 -0.35 FBgn0259140 -1.47 FBgn0027074 -0.3 FBgn0011573 -1.7 FBgn0034380 0.51 FBgn0038321 -0.1 FBgn0038964 -0.71 FBgn0010416 0.38 FBgn0053489 -0.56 FBgn0013442 -0.95 FBgn0029986 -0.33 FBgn0031998 0.75 FBgn0026361 -0.68 FBgn0029811 -1.12 FBgn0034776 -1.08 FBgn0052113 -1.64 FBgn0023171 -1.32 FBgn0029867 -1.42 FBgn0260748 -1.38 FBgn0028887 -1.07 FBgn0085486 1.1 FBgn0050154 -0.27 FBgn0000711 -1.33 FBgn0040207 -1.4 FBgn0028325 -0.53 FBgn0039219 0.33 FBgn0029831 -0.92 FBgn0028658 0.74 FBgn0036834 -0.54 FBgn0037470 1.4 FBgn0001145 0.31 FBgn0035811 0.83 FBgn0019968 -0.41 FBgn0243511 0.36 FBgn0040773 -2.27 FBgn0033482 0.3 FBgn0017577 0.68 FBgn0039856 -1.05 FBgn0017456 1.05 FBgn0035167 0.65 FBgn0037981 1.27 FBgn0013953 0.38 FBgn0027934 1.68 FBgn0033164 -1.45 FBgn0004177 2 FBgn0025725 1.99 FBgn0042178 0.48 FBgn0005592 -1.7 FBgn0030572 -1.7 FBgn0038613 0.65 FBgn0035266 -0.48 FBgn0036183 -0.06 FBgn0003870 0.44 FBgn0033692 -1.28 FBgn0034286 0.56 FBgn0026323 -1.6 FBgn0034065 -0.52 FBgn0036157 0.2 FBgn0034940 -0.52 FBgn0025833 -1.29 FBgn0027611 -0.7 FBgn0260386 -0.17 FBgn0045473 -0.35 FBgn0024371 -1.69 FBgn0039623 -1.83 FBgn0028978 0.94 FBgn0036331 -0.11 FBgn0054039 0.25 FBgn0030664 -0.89 FBgn0019952 -1.28 FBgn0033461 1.29 FBgn0024556 -1.07 FBgn0035106 -0.41 FBgn0038065 0.71 FBgn0033581 1.08 FBgn0053160 -0.14 FBgn0010389 0.24 FBgn0034782 -0.99 FBgn0046692 -0.57 FBgn0031589 -1.32 FBgn0033243 -0.4 FBgn0052650 0.74 FBgn0024985 0.84 FBgn0000018 0.83 FBgn0028940 -1.43 FBgn0261547 -0.37 FBgn0250830 -0.98 FBgn0261015 1.52 FBgn0027052 -0.3 FBgn0036105 -1.41 FBgn0030530 0.26 FBgn0085334 -1.26 FBgn0035337 0.45 FBgn0040606 1.95 FBgn0032479 0.67 FBgn0261445 1.05 FBgn0020312 -0.98 FBgn0050472 1.24 FBgn0033017 -1.72 FBgn0050088 0.78 FBgn0022774 0.25 FBgn0016034 0.82 FBgn0029172 1.61 FBgn0000588 -1.18 FBgn0034400 0.67 FBgn0026602 1.23 FBgn0024889 2.02 FBgn0050389 1.17 FBgn0051676 1.79 FBgn0038941 -2.86 FBgn0024887 -1.09 FBgn0030740 0.42 FBgn0052183 -1.1 FBgn0003231 0.78 FBgn0001229 -0.27 FBgn0038072 -0.4 FBgn0023535 0.43 FBgn0036503 2.2 FBgn0036334 -0.81 FBgn0039265 -1.05 FBgn0051100 -1.04 FBgn0052642 0.93 FBgn0026787 -1.52 FBgn0037577 -1.07 FBgn0032771 2.1 FBgn0010340 -1.37 FBgn0034137 1.31 FBgn0039959 0.88 FBgn0002579 5.39 FBgn0085285 -1.92 FBgn0051467 -0.93 FBgn0015372 -0.88 FBgn0051716 0.56 FBgn0029666 -0.06 FBgn0039908 0.63 FBgn0034999 -1.16 FBgn0034854 -0.59 FBgn0000658 -0.59 FBgn0036438 0.55 FBgn0035554 -0.52 FBgn0259145 -1.68 FBgn0038251 0.36 FBgn0027506 -0.67 FBgn0029709 0.87 FBgn0036144 2.51 FBgn0045500 2.48 FBgn0260399 -1.25 FBgn0050222 -0.34 FBgn0037382 0.74 FBgn0026755 0.58 FBgn0025140 0.86 FBgn0023174 -0.53 FBgn0019890 -2.08 FBgn0032298 -0.72 FBgn0046793 -0.6 FBgn0037656 -0.51 FBgn0035523 0.55 FBgn0033191 1.29 FBgn0034628 1.2 FBgn0025686 -0.44 FBgn0034113 -0.17 FBgn0029710 -1.15 FBgn0051008 -0.63 FBgn0038652 -1.29 FBgn0024698 1.63 FBgn0046876 1.36 FBgn0051224 -1.95 FBgn0004009 0.57 FBgn0011710 0.76 FBgn0050378 0.8 FBgn0010380 -1.72 FBgn0034833 -1.67 FBgn0034145 1.52 FBgn0031972 -2.69 FBgn0033732 0.87 FBgn0037146 0.79 FBgn0034053 -1.77 FBgn0031914 -0.38 FBgn0032052 -1.25 FBgn0033549 0.97 FBgn0001219 3.95 FBgn0033169 1.71 FBgn0042133 -1.78 FBgn0032031 1.12 FBgn0036426 -0.75 FBgn0029899 0.94 FBgn0040296 -1.03 FBgn0038508 -0.27 FBgn0030468 -0.76 FBgn0033055 0.26 FBgn0011556 0.56 FBgn0032145 0.68 FBgn0086451 -0.81 FBgn0052396 -0.74 FBgn0037890 -0.73 FBgn0261041 -0.96 FBgn0046225 -0.23 FBgn0041194 -0.66 FBgn0030033 -0.98 FBgn0030697 -0.67 FBgn0039867 0.53 FBgn0027053 -0.55 FBgn0039601 -0.43 FBgn0040649 -0.46 FBgn0037320 -1.14 FBgn0062411 1.45 FBgn0038583 0.95 FBgn0053477 -0.24 FBgn0259212 -0.58 FBgn0031560 1.47 FBgn0086129 -0.66 FBgn0085377 -0.29 FBgn0052773 0.56 FBgn0004589 -0.91 FBgn0050380 -0.26 FBgn0020764 0.64 FBgn0039758 -0.97 FBgn0086916 0.6 FBgn0039510 1.84 FBgn0032122 -1 FBgn0260858 -0.76 FBgn0250753 0.62 FBgn0039056 -1.07 FBgn0036461 -0.5 FBgn0037924 1.94 FBgn0085424 0.78 FBgn0030373 0.86 FBgn0031132 -0.92 FBgn0086446 -1.43 FBgn0034565 -0.27 FBgn0052017 -0.19 FBgn0033799 -1.21 FBgn0087007 -0.89 FBgn0035926 -0.68 FBgn0010235 0.7 FBgn0037630 1.42 FBgn0002543 1.25 FBgn0086698 0.47 FBgn0037897 -0.87 FBgn0035192 -1.11 FBgn0011294 -0.81 FBgn0015324 0.12 FBgn0085329 0.62 FBgn0037261 2.44 FBgn0000277 0.65 FBgn0033915 -0.67 FBgn0026315 0.32 FBgn0040805 -1.36 FBgn0041236 -1.29 FBgn0052627 1.22 FBgn0040250 1.03 FBgn0054049 -1.11 FBgn0031459 -0.83 FBgn0034667 0.49 FBgn0051216 0.3 FBgn0038727 1.44 FBgn0051601 -1.64 FBgn0031993 1.75 FBgn0037440 -0.42 FBgn0033204 -2.1 FBgn0051637 -0.84 FBgn0038638 -1 FBgn0050001 1.14 FBgn0026399 -1.23 FBgn0016974 0.54 FBgn0033953 -1.5 FBgn0035619 1.11 FBgn0036542 -1.06 FBgn0031418 0.72 FBgn0035713 1.6 FBgn0033442 -1.41 FBgn0037782 -0.71 FBgn0259151 -1.2 FBgn0040351 2.24 FBgn0034733 -1.73 FBgn0038626 1.22 FBgn0013732 0.7 FBgn0040309 1.22 FBgn0039323 0.23 FBgn0028499 0.8 FBgn0015279 1.03 FBgn0035831 -0.7 FBgn0039067 1.24 FBgn0038715 -0.07 FBgn0038358 2.81 FBgn0051084 -1.1 FBgn0050398 0.84 FBgn0004574 -0.54 FBgn0053169 -1.15 FBgn0085356 -0.53 FBgn0035428 -0.61 FBgn0261571 -1.01 FBgn0032059 -0.28 FBgn0037181 1.38 FBgn0030739 -0.25 FBgn0038747 -1.09 FBgn0051202 0.8 FBgn0030507 -0.6 FBgn0002570 1.6 FBgn0036775 0.69 FBgn0028931 -1.01 FBgn0036661 -0.87 FBgn0038304 3.36 FBgn0031176 0.79 FBgn0004638 -1.7 FBgn0022764 0.71 FBgn0053276 -0.12 FBgn0025621 -0.96 FBgn0036205 -0.54 FBgn0037762 0.39 FBgn0085319 -0.87 FBgn0041103 0.29 FBgn0004611 -1.34 FBgn0053983 -1.55 FBgn0030359 -0.78 FBgn0033135 -0.79 FBgn0035806 1.16 FBgn0032785 -1.17 FBgn0033355 -1.35 FBgn0030327 -0.42 FBgn0015229 -0.87 FBgn0031229 1.14 FBgn0038344 0.74 FBgn0036586 1.84 FBgn0034265 0.08 FBgn0036356 0.7 FBgn0040963 -0.86 FBgn0051232 1.98 FBgn0034261 0.69 FBgn0037456 -0.95 FBgn0051730 1.21 FBgn0032363 -1.4 FBgn0034935 -0.37 FBgn0033886 0.41 FBgn0028683 0.26 FBgn0030558 -0.12 FBgn0040842 -1.15 FBgn0025936 -0.87 FBgn0039840 2.84 FBgn0034819 -1.83 FBgn0004552 0.85 FBgn0000409 0.55 FBgn0039024 0.65 FBgn0052803 -0.93 FBgn0035970 1.81 FBgn0038925 -1.31 FBgn0000581 -1.41 FBgn0021760 0.39 FBgn0015756 3 FBgn0029890 0.12 FBgn0032268 0.72 FBgn0034674 1.18 FBgn0028913 -0.79 FBgn0000448 0.93 FBgn0032517 0.8 FBgn0053288 0.51 FBgn0037512 -1.41 FBgn0037283 0.63 FBgn0036311 -0.65 FBgn0029719 0.81 FBgn0040344 -0.89 FBgn0038395 0.28 FBgn0031049 -1.29 FBgn0039358 -1.88 FBgn0026147 1.2 FBgn0036623 -0.11 FBgn0033903 -0.21 FBgn0028520 -0.83 FBgn0003983 1 FBgn0034641 -0.76 FBgn0033539 0.99 FBgn0035209 -0.36 FBgn0035584 -1.14 FBgn0031590 -0.48 FBgn0051211 1.62 FBgn0031422 0.48 FBgn0004055 -0.81 FBgn0051721 0.9 FBgn0003292 -0.84 FBgn0011771 3.75 FBgn0051913 -1.02 FBgn0036169 -0.35 FBgn0031099 -0.16 FBgn0051907 0.83 FBgn0039210 1.21 FBgn0003248 -1.28 FBgn0032375 -0.26 FBgn0045759 -0.62 FBgn0034155 -0.45 FBgn0051533 -0.47 FBgn0001098 2.33 FBgn0051481 -0.61 FBgn0051158 -1.71 FBgn0033437 1.14 FBgn0050021 -1.69 FBgn0010772 -2.12 FBgn0034577 0.27 FBgn0040370 0.63 FBgn0031183 -1.11 FBgn0003048 1.6 FBgn0261574 -0.28 FBgn0034139 0.56 FBgn0032004 -0.57 FBgn0024184 1.25 FBgn0085399 1.72 FBgn0086677 -1.76 FBgn0067317 1.09 FBgn0036553 0.39 FBgn0033739 -1.36 FBgn0039234 1.08 FBgn0052428 -1.62 FBgn0038738 -0.95 FBgn0032904 -0.95 FBgn0037486 1.51 FBgn0034258 3.6 FBgn0025720 -2.12 FBgn0036162 0.7 FBgn0087002 -0.76 FBgn0029971 0.75 FBgn0031811 0.78 FBgn0038312 -0.14 FBgn0002631 1.32 FBgn0041243 -0.73 FBgn0052814 -0.57 FBgn0035725 1.11 FBgn0040097 -1.33 FBgn0034098 -0.29 FBgn0036346 -0.75 FBgn0032444 -1.27 FBgn0035936 0.84 FBgn0039598 1.27 FBgn0260755 0.34 FBgn0037273 5.27 FBgn0031440 1.87 FBgn0038790 -0.53 FBgn0037225 -1.33 FBgn0051935 -0.78 FBgn0052225 -1.12 FBgn0031533 -0.86 FBgn0032074 -0.73 FBgn0030892 -0.21 FBgn0051450 -1.41 FBgn0010549 0.73 FBgn0261243 -2.01 FBgn0032521 -0.57 FBgn0028670 -1.49 FBgn0038277 1.02 FBgn0086346 1.05 FBgn0036763 -0.49 FBgn0003358 1.38 FBgn0030994 -0.66 FBgn0040093 -1.16 FBgn0039509 -0.87 FBgn0032638 0.72 FBgn0034643 -0.65 FBgn0051926 0.11 FBgn0050060 -1.09 FBgn0027841 1.34 FBgn0034919 2.17 FBgn0031457 -1.04 FBgn0039911 -1.13 FBgn0023522 -0.24 FBgn0035070 0.91 FBgn0035853 -0.88 FBgn0037176 1.02 FBgn0037547 0.94 FBgn0036030 0.86 FBgn0044510 -1.23 FBgn0052815 -1.42 FBgn0040496 -0.85 FBgn0053205 0.61 FBgn0063494 -0.58 FBgn0003023 1.07 FBgn0010501 -0.5 FBgn0004581 1.4 FBgn0031276 -1.19 FBgn0035528 2.06 FBgn0000052 2.01 FBgn0050055 1.09 FBgn0031946 -0.94 FBgn0032080 -0.51 FBgn0053137 -1.32 FBgn0030775 11.54 FBgn0034681 0.21 FBgn0038902 -0.83 FBgn0039203 -0.05 FBgn0039977 1.88 FBgn0025582 3.98 FBgn0032949 0.35 FBgn0038928 -0.68 FBgn0035918 -0.23 FBgn0036934 -2.05 FBgn0023130 -1.16 FBgn0032504 0.88 FBgn0038271 -0.88 FBgn0032916 1.07 FBgn0067407 -1.04 FBgn0034398 -0.61 FBgn0035624 0.57 FBgn0034866 -1.14 FBgn0051436 1.56 FBgn0030500 -2.57 FBgn0031417 -0.5 FBgn0014073 0.38 FBgn0029993 -1.02 FBgn0035218 0.71 FBgn0001981 -1.07 FBgn0034291 -1.84 FBgn0010531 -0.83 FBgn0039677 -1.25 FBgn0036851 0.39 FBgn0051267 0.28 FBgn0032368 0.46 FBgn0030584 -1.67 FBgn0023169 0.84 FBgn0030443 0.66 FBgn0035008 -0.32 FBgn0030403 -0.41 FBgn0001128 -1.6 FBgn0250846 -1.2 FBgn0015609 1.07 FBgn0259994 -1.21 FBgn0035011 -1.12 FBgn0033063 0.78 FBgn0032895 -0.23 FBgn0031141 0.49 FBgn0040069 -0.93 FBgn0033471 0.7 FBgn0035591 -0.3 FBgn0036822 -0.46 FBgn0028530 -0.35 FBgn0026136 0.57 FBgn0037356 1.14 FBgn0038214 -1.86 FBgn0042110 1.49 FBgn0034202 -1.32 jc-1.17.3/tests/fixtures/generic/csv-flyrna2-streaming.json000066400000000000000000017432471415226333200237010ustar00rootroot00000000000000[{"ID":"FBgn0029994","EGF_Stimulus":"-0.27"},{"ID":"FBgn0037191","EGF_Stimulus":"0.78"},{"ID":"FBgn0036810","EGF_Stimulus":"1.34"},{"ID":"FBgn0033320","EGF_Stimulus":"0.45"},{"ID":"FBgn0051156","EGF_Stimulus":"-0.76"},{"ID":"FBgn0004635","EGF_Stimulus":"-0.42"},{"ID":"FBgn0260646","EGF_Stimulus":"0.97"},{"ID":"FBgn0038397","EGF_Stimulus":"0.22"},{"ID":"FBgn0010583","EGF_Stimulus":"-0.59"},{"ID":"FBgn0025583","EGF_Stimulus":"-2.13"},{"ID":"FBgn0032906","EGF_Stimulus":"0.25"},{"ID":"FBgn0031321","EGF_Stimulus":"-0.42"},{"ID":"FBgn0052568","EGF_Stimulus":"0.39"},{"ID":"FBgn0030674","EGF_Stimulus":"1.63"},{"ID":"FBgn0085397","EGF_Stimulus":"-1.37"},{"ID":"FBgn0038427","EGF_Stimulus":"0.38"},{"ID":"FBgn0033233","EGF_Stimulus":"0.46"},{"ID":"FBgn0033736","EGF_Stimulus":"0.93"},{"ID":"FBgn0033495","EGF_Stimulus":"-0.33"},{"ID":"FBgn0020503","EGF_Stimulus":"-1.13"},{"ID":"FBgn0031885","EGF_Stimulus":"0.06"},{"ID":"FBgn0067864","EGF_Stimulus":"0.13"},{"ID":"FBgn0035785","EGF_Stimulus":"-1.06"},{"ID":"FBgn0039673","EGF_Stimulus":"1.01"},{"ID":"FBgn0051717","EGF_Stimulus":"-0.27"},{"ID":"FBgn0030748","EGF_Stimulus":"-0.58"},{"ID":"FBgn0031751","EGF_Stimulus":"-0.6"},{"ID":"FBgn0039207","EGF_Stimulus":"-0.96"},{"ID":"FBgn0067312","EGF_Stimulus":"-0.71"},{"ID":"FBgn0052816","EGF_Stimulus":"0.61"},{"ID":"FBgn0040005","EGF_Stimulus":"-1.3"},{"ID":"FBgn0040477","EGF_Stimulus":"-0.11"},{"ID":"FBgn0029727","EGF_Stimulus":"0.5"},{"ID":"FBgn0039328","EGF_Stimulus":"0.4"},{"ID":"FBgn0066084","EGF_Stimulus":"-1.64"},{"ID":"FBgn0000053","EGF_Stimulus":"1.49"},{"ID":"FBgn0030038","EGF_Stimulus":"-0.86"},{"ID":"FBgn0052712","EGF_Stimulus":"-0.92"},{"ID":"FBgn0038481","EGF_Stimulus":"0.09"},{"ID":"FBgn0034162","EGF_Stimulus":"0.31"},{"ID":"FBgn0005632","EGF_Stimulus":"-0.71"},{"ID":"FBgn0034860","EGF_Stimulus":"0.42"},{"ID":"FBgn0259979","EGF_Stimulus":"0.56"},{"ID":"FBgn0051140","EGF_Stimulus":"0.76"},{"ID":"FBgn0038959","EGF_Stimulus":"0.68"},{"ID":"FBgn0034138","EGF_Stimulus":"-2.91"},{"ID":"FBgn0003388","EGF_Stimulus":"0.56"},{"ID":"FBgn0034945","EGF_Stimulus":"-1.15"},{"ID":"FBgn0033272","EGF_Stimulus":"0.73"},{"ID":"FBgn0050428","EGF_Stimulus":"-1.11"},{"ID":"FBgn0033556","EGF_Stimulus":"2.11"},{"ID":"FBgn0027341","EGF_Stimulus":"-0.8"},{"ID":"FBgn0029606","EGF_Stimulus":"0.96"},{"ID":"FBgn0261804","EGF_Stimulus":"-0.62"},{"ID":"FBgn0036465","EGF_Stimulus":"-0.82"},{"ID":"FBgn0027610","EGF_Stimulus":"-1.76"},{"ID":"FBgn0033997","EGF_Stimulus":"0.26"},{"ID":"FBgn0038834","EGF_Stimulus":"-4.02"},{"ID":"FBgn0027550","EGF_Stimulus":"-0.52"},{"ID":"FBgn0030992","EGF_Stimulus":"1.47"},{"ID":"FBgn0037109","EGF_Stimulus":"0.99"},{"ID":"FBgn0039198","EGF_Stimulus":"1.71"},{"ID":"FBgn0019686","EGF_Stimulus":"1.44"},{"ID":"FBgn0052251","EGF_Stimulus":"1.5"},{"ID":"FBgn0031987","EGF_Stimulus":"-0.72"},{"ID":"FBgn0034548","EGF_Stimulus":"0.8"},{"ID":"FBgn0053217","EGF_Stimulus":"-0.94"},{"ID":"FBgn0038092","EGF_Stimulus":"2.75"},{"ID":"FBgn0053627","EGF_Stimulus":"-0.57"},{"ID":"FBgn0037010","EGF_Stimulus":"-0.77"},{"ID":"FBgn0037895","EGF_Stimulus":"0.66"},{"ID":"FBgn0034477","EGF_Stimulus":"-0.4"},{"ID":"FBgn0029705","EGF_Stimulus":"1.28"},{"ID":"FBgn0013772","EGF_Stimulus":"-0.46"},{"ID":"FBgn0038437","EGF_Stimulus":"0.86"},{"ID":"FBgn0053178","EGF_Stimulus":"0.58"},{"ID":"FBgn0027559","EGF_Stimulus":"0.21"},{"ID":"FBgn0038389","EGF_Stimulus":"-1.61"},{"ID":"FBgn0031426","EGF_Stimulus":"-1.15"},{"ID":"FBgn0040784","EGF_Stimulus":"-0.52"},{"ID":"FBgn0001187","EGF_Stimulus":"-0.27"},{"ID":"FBgn0052450","EGF_Stimulus":"-1.15"},{"ID":"FBgn0028671","EGF_Stimulus":"-1.93"},{"ID":"FBgn0015614","EGF_Stimulus":"1.12"},{"ID":"FBgn0037009","EGF_Stimulus":"-0.34"},{"ID":"FBgn0032359","EGF_Stimulus":"-0.74"},{"ID":"FBgn0028717","EGF_Stimulus":"-1.28"},{"ID":"FBgn0032450","EGF_Stimulus":"1.25"},{"ID":"FBgn0033327","EGF_Stimulus":"0.61"},{"ID":"FBgn0051820","EGF_Stimulus":"-1.19"},{"ID":"FBgn0015773","EGF_Stimulus":"0.34"},{"ID":"FBgn0020299","EGF_Stimulus":"-1.65"},{"ID":"FBgn0034537","EGF_Stimulus":"-4.73"},{"ID":"FBgn0030286","EGF_Stimulus":"0.54"},{"ID":"FBgn0050469","EGF_Stimulus":"-0.59"},{"ID":"FBgn0260745","EGF_Stimulus":"0.83"},{"ID":"FBgn0037472","EGF_Stimulus":"-0.94"},{"ID":"FBgn0051054","EGF_Stimulus":"-1.12"},{"ID":"FBgn0031127","EGF_Stimulus":"0.36"},{"ID":"FBgn0051933","EGF_Stimulus":"0.78"},{"ID":"FBgn0029133","EGF_Stimulus":"0.7"},{"ID":"FBgn0260986","EGF_Stimulus":"-0.58"},{"ID":"FBgn0030503","EGF_Stimulus":"0.54"},{"ID":"FBgn0028491","EGF_Stimulus":"0.69"},{"ID":"FBgn0039359","EGF_Stimulus":"-4.47"},{"ID":"FBgn0030447","EGF_Stimulus":"0.8"},{"ID":"FBgn0000241","EGF_Stimulus":"0.57"},{"ID":"FBgn0083985","EGF_Stimulus":"0.39"},{"ID":"FBgn0030855","EGF_Stimulus":"-0.28"},{"ID":"FBgn0261241","EGF_Stimulus":"-0.87"},{"ID":"FBgn0015268","EGF_Stimulus":"1.06"},{"ID":"FBgn0033907","EGF_Stimulus":"-0.75"},{"ID":"FBgn0032001","EGF_Stimulus":"0.5"},{"ID":"FBgn0052758","EGF_Stimulus":"-0.44"},{"ID":"FBgn0032208","EGF_Stimulus":"0.29"},{"ID":"FBgn0003742","EGF_Stimulus":"1.22"},{"ID":"FBgn0002121","EGF_Stimulus":"0.31"},{"ID":"FBgn0010217","EGF_Stimulus":"0.15"},{"ID":"FBgn0037042","EGF_Stimulus":"-0.56"},{"ID":"FBgn0035812","EGF_Stimulus":"0.91"},{"ID":"FBgn0032940","EGF_Stimulus":"1.58"},{"ID":"FBgn0040377","EGF_Stimulus":"-0.42"},{"ID":"FBgn0011834","EGF_Stimulus":"0.7"},{"ID":"FBgn0039684","EGF_Stimulus":"-1.18"},{"ID":"FBgn0033392","EGF_Stimulus":"-0.73"},{"ID":"FBgn0026427","EGF_Stimulus":"0.24"},{"ID":"FBgn0063491","EGF_Stimulus":"0.78"},{"ID":"FBgn0037970","EGF_Stimulus":"1.98"},{"ID":"FBgn0037648","EGF_Stimulus":"0.24"},{"ID":"FBgn0033154","EGF_Stimulus":"1.54"},{"ID":"FBgn0045499","EGF_Stimulus":"0.72"},{"ID":"FBgn0259184","EGF_Stimulus":"-0.66"},{"ID":"FBgn0031822","EGF_Stimulus":"1.85"},{"ID":"FBgn0034543","EGF_Stimulus":"0.98"},{"ID":"FBgn0036731","EGF_Stimulus":"-0.76"},{"ID":"FBgn0036849","EGF_Stimulus":"0.64"},{"ID":"FBgn0036825","EGF_Stimulus":"-4.51"},{"ID":"FBgn0031109","EGF_Stimulus":"0.36"},{"ID":"FBgn0030990","EGF_Stimulus":"-4.21"},{"ID":"FBgn0034655","EGF_Stimulus":"-1.46"},{"ID":"FBgn0005617","EGF_Stimulus":"0.88"},{"ID":"FBgn0030764","EGF_Stimulus":"-0.63"},{"ID":"FBgn0259173","EGF_Stimulus":"-1.31"},{"ID":"FBgn0052457","EGF_Stimulus":"-1.79"},{"ID":"FBgn0036212","EGF_Stimulus":"1"},{"ID":"FBgn0023530","EGF_Stimulus":"-0.65"},{"ID":"FBgn0027514","EGF_Stimulus":"-1.44"},{"ID":"FBgn0044811","EGF_Stimulus":"0.23"},{"ID":"FBgn0032445","EGF_Stimulus":"-1.07"},{"ID":"FBgn0036135","EGF_Stimulus":"0.39"},{"ID":"FBgn0053630","EGF_Stimulus":"1.17"},{"ID":"FBgn0030586","EGF_Stimulus":"0.43"},{"ID":"FBgn0026313","EGF_Stimulus":"-0.72"},{"ID":"FBgn0031263","EGF_Stimulus":"1.17"},{"ID":"FBgn0032633","EGF_Stimulus":"-1.81"},{"ID":"FBgn0037590","EGF_Stimulus":"0.99"},{"ID":"FBgn0036618","EGF_Stimulus":"-1.68"},{"ID":"FBgn0047338","EGF_Stimulus":"1.38"},{"ID":"FBgn0015765","EGF_Stimulus":"1.06"},{"ID":"FBgn0039188","EGF_Stimulus":"0.27"},{"ID":"FBgn0040812","EGF_Stimulus":"0.98"},{"ID":"FBgn0028399","EGF_Stimulus":"-0.3"},{"ID":"FBgn0250907","EGF_Stimulus":"0.91"},{"ID":"FBgn0260767","EGF_Stimulus":"0.95"},{"ID":"FBgn0051106","EGF_Stimulus":"0.31"},{"ID":"FBgn0011576","EGF_Stimulus":"0.93"},{"ID":"FBgn0035542","EGF_Stimulus":"-1.84"},{"ID":"FBgn0032626","EGF_Stimulus":"0.21"},{"ID":"FBgn0053494","EGF_Stimulus":"-1.57"},{"ID":"FBgn0033434","EGF_Stimulus":"0.73"},{"ID":"FBgn0039797","EGF_Stimulus":"0.99"},{"ID":"FBgn0040625","EGF_Stimulus":"-1.62"},{"ID":"FBgn0034106","EGF_Stimulus":"0.74"},{"ID":"FBgn0036124","EGF_Stimulus":"0.97"},{"ID":"FBgn0005634","EGF_Stimulus":"0.65"},{"ID":"FBgn0053937","EGF_Stimulus":"-0.59"},{"ID":"FBgn0003462","EGF_Stimulus":"0.54"},{"ID":"FBgn0086768","EGF_Stimulus":"-0.19"},{"ID":"FBgn0037862","EGF_Stimulus":"-0.85"},{"ID":"FBgn0033888","EGF_Stimulus":"-0.82"},{"ID":"FBgn0037260","EGF_Stimulus":"-0.87"},{"ID":"FBgn0003731","EGF_Stimulus":"-10.03"},{"ID":"FBgn0038639","EGF_Stimulus":"-0.48"},{"ID":"FBgn0036615","EGF_Stimulus":"-0.88"},{"ID":"FBgn0086378","EGF_Stimulus":"-0.88"},{"ID":"FBgn0031097","EGF_Stimulus":"-0.71"},{"ID":"FBgn0038542","EGF_Stimulus":"-0.83"},{"ID":"FBgn0028425","EGF_Stimulus":"0.76"},{"ID":"FBgn0029857","EGF_Stimulus":"-0.57"},{"ID":"FBgn0004875","EGF_Stimulus":"1.11"},{"ID":"FBgn0051648","EGF_Stimulus":"-1.44"},{"ID":"FBgn0035928","EGF_Stimulus":"1.35"},{"ID":"FBgn0261508","EGF_Stimulus":"0.25"},{"ID":"FBgn0051314","EGF_Stimulus":"0.71"},{"ID":"FBgn0034440","EGF_Stimulus":"-0.38"},{"ID":"FBgn0031851","EGF_Stimulus":"0.59"},{"ID":"FBgn0029877","EGF_Stimulus":"0.16"},{"ID":"FBgn0261596","EGF_Stimulus":"-3.68"},{"ID":"FBgn0035517","EGF_Stimulus":"0.44"},{"ID":"FBgn0030027","EGF_Stimulus":"1.17"},{"ID":"FBgn0035823","EGF_Stimulus":"0.5"},{"ID":"FBgn0011660","EGF_Stimulus":"1.48"},{"ID":"FBgn0032170","EGF_Stimulus":"1.32"},{"ID":"FBgn0025608","EGF_Stimulus":"-0.48"},{"ID":"FBgn0039877","EGF_Stimulus":"1.09"},{"ID":"FBgn0260397","EGF_Stimulus":"1.38"},{"ID":"FBgn0035360","EGF_Stimulus":"-0.95"},{"ID":"FBgn0033388","EGF_Stimulus":"0.71"},{"ID":"FBgn0038927","EGF_Stimulus":"1.09"},{"ID":"FBgn0037431","EGF_Stimulus":"1.79"},{"ID":"FBgn0033337","EGF_Stimulus":"1.28"},{"ID":"FBgn0028542","EGF_Stimulus":"-0.66"},{"ID":"FBgn0030833","EGF_Stimulus":"-0.86"},{"ID":"FBgn0004588","EGF_Stimulus":"0.82"},{"ID":"FBgn0261789","EGF_Stimulus":"0.83"},{"ID":"FBgn0034295","EGF_Stimulus":"0.71"},{"ID":"FBgn0036772","EGF_Stimulus":"0.82"},{"ID":"FBgn0031782","EGF_Stimulus":"-1.39"},{"ID":"FBgn0030514","EGF_Stimulus":"1.05"},{"ID":"FBgn0036752","EGF_Stimulus":"0.83"},{"ID":"FBgn0011770","EGF_Stimulus":"0.88"},{"ID":"FBgn0051195","EGF_Stimulus":"0.64"},{"ID":"FBgn0050115","EGF_Stimulus":"-1.23"},{"ID":"FBgn0037870","EGF_Stimulus":"0.34"},{"ID":"FBgn0052392","EGF_Stimulus":"1.02"},{"ID":"FBgn0032343","EGF_Stimulus":"0.87"},{"ID":"FBgn0031562","EGF_Stimulus":"0.97"},{"ID":"FBgn0000157","EGF_Stimulus":"1.68"},{"ID":"FBgn0038423","EGF_Stimulus":"0.43"},{"ID":"FBgn0034634","EGF_Stimulus":"1.16"},{"ID":"FBgn0040279","EGF_Stimulus":"1.08"},{"ID":"FBgn0004456","EGF_Stimulus":"0.32"},{"ID":"FBgn0015754","EGF_Stimulus":"0.26"},{"ID":"FBgn0034867","EGF_Stimulus":"-1.67"},{"ID":"FBgn0026398","EGF_Stimulus":"1.45"},{"ID":"FBgn0002917","EGF_Stimulus":"-0.53"},{"ID":"FBgn0051675","EGF_Stimulus":"0.16"},{"ID":"FBgn0030375","EGF_Stimulus":"-0.83"},{"ID":"FBgn0086371","EGF_Stimulus":"-1.34"},{"ID":"FBgn0036936","EGF_Stimulus":"0.39"},{"ID":"FBgn0035932","EGF_Stimulus":"0.8"},{"ID":"FBgn0034345","EGF_Stimulus":"-0.32"},{"ID":"FBgn0041235","EGF_Stimulus":"1.07"},{"ID":"FBgn0002873","EGF_Stimulus":"-1.29"},{"ID":"FBgn0029657","EGF_Stimulus":"0.71"},{"ID":"FBgn0052595","EGF_Stimulus":"-0.54"},{"ID":"FBgn0033310","EGF_Stimulus":"0.5"},{"ID":"FBgn0039739","EGF_Stimulus":"0.18"},{"ID":"FBgn0051665","EGF_Stimulus":"-1.5"},{"ID":"FBgn0037143","EGF_Stimulus":"-1.67"},{"ID":"FBgn0001218","EGF_Stimulus":"-1.29"},{"ID":"FBgn0032974","EGF_Stimulus":"-0.46"},{"ID":"FBgn0030570","EGF_Stimulus":"0.86"},{"ID":"FBgn0259749","EGF_Stimulus":"0.28"},{"ID":"FBgn0038586","EGF_Stimulus":"-1.29"},{"ID":"FBgn0033138","EGF_Stimulus":"-1.02"},{"ID":"FBgn0036759","EGF_Stimulus":"1.25"},{"ID":"FBgn0001319","EGF_Stimulus":"0.75"},{"ID":"FBgn0038621","EGF_Stimulus":"-0.21"},{"ID":"FBgn0029158","EGF_Stimulus":"0.86"},{"ID":"FBgn0001974","EGF_Stimulus":"1.1"},{"ID":"FBgn0014075","EGF_Stimulus":"-0.36"},{"ID":"FBgn0038721","EGF_Stimulus":"-0.74"},{"ID":"FBgn0039873","EGF_Stimulus":"-0.45"},{"ID":"FBgn0034050","EGF_Stimulus":"0.57"},{"ID":"FBgn0026666","EGF_Stimulus":"0.71"},{"ID":"FBgn0030778","EGF_Stimulus":"0.82"},{"ID":"FBgn0026753","EGF_Stimulus":"-1.47"},{"ID":"FBgn0040099","EGF_Stimulus":"-0.5"},{"ID":"FBgn0031473","EGF_Stimulus":"1.1"},{"ID":"FBgn0033167","EGF_Stimulus":"-0.19"},{"ID":"FBgn0026369","EGF_Stimulus":"-0.11"},{"ID":"FBgn0039283","EGF_Stimulus":"-0.18"},{"ID":"FBgn0037000","EGF_Stimulus":"0.97"},{"ID":"FBgn0036066","EGF_Stimulus":"0.46"},{"ID":"FBgn0050480","EGF_Stimulus":"-0.7"},{"ID":"FBgn0085390","EGF_Stimulus":"1.41"},{"ID":"FBgn0036139","EGF_Stimulus":"1.05"},{"ID":"FBgn0040694","EGF_Stimulus":"0.8"},{"ID":"FBgn0001995","EGF_Stimulus":"0.59"},{"ID":"FBgn0030573","EGF_Stimulus":"0.15"},{"ID":"FBgn0039723","EGF_Stimulus":"-0.34"},{"ID":"FBgn0261572","EGF_Stimulus":"-0.73"},{"ID":"FBgn0035028","EGF_Stimulus":"-0.85"},{"ID":"FBgn0085479","EGF_Stimulus":"-0.39"},{"ID":"FBgn0064912","EGF_Stimulus":"-0.06"},{"ID":"FBgn0034186","EGF_Stimulus":"1.68"},{"ID":"FBgn0036414","EGF_Stimulus":"-1.05"},{"ID":"FBgn0034666","EGF_Stimulus":"0.84"},{"ID":"FBgn0028686","EGF_Stimulus":"-4.37"},{"ID":"FBgn0036142","EGF_Stimulus":"-0.05"},{"ID":"FBgn0038989","EGF_Stimulus":"-0.43"},{"ID":"FBgn0034976","EGF_Stimulus":"-1.4"},{"ID":"FBgn0038347","EGF_Stimulus":"-0.55"},{"ID":"FBgn0025697","EGF_Stimulus":"1.68"},{"ID":"FBgn0026318","EGF_Stimulus":"0.19"},{"ID":"FBgn0028470","EGF_Stimulus":"0.89"},{"ID":"FBgn0037741","EGF_Stimulus":"-0.28"},{"ID":"FBgn0030999","EGF_Stimulus":"1.67"},{"ID":"FBgn0039861","EGF_Stimulus":"1.22"},{"ID":"FBgn0259982","EGF_Stimulus":"0.36"},{"ID":"FBgn0051774","EGF_Stimulus":"-2.09"},{"ID":"FBgn0050496","EGF_Stimulus":"-1.54"},{"ID":"FBgn0032149","EGF_Stimulus":"-0.79"},{"ID":"FBgn0260766","EGF_Stimulus":"0.6"},{"ID":"FBgn0037992","EGF_Stimulus":"-1.27"},{"ID":"FBgn0039249","EGF_Stimulus":"0.8"},{"ID":"FBgn0051627","EGF_Stimulus":"-0.86"},{"ID":"FBgn0033931","EGF_Stimulus":"1.82"},{"ID":"FBgn0030692","EGF_Stimulus":"0.29"},{"ID":"FBgn0035014","EGF_Stimulus":"1.38"},{"ID":"FBgn0036667","EGF_Stimulus":"-0.76"},{"ID":"FBgn0052068","EGF_Stimulus":"-0.97"},{"ID":"FBgn0020766","EGF_Stimulus":"-0.45"},{"ID":"FBgn0032897","EGF_Stimulus":"0.67"},{"ID":"FBgn0036173","EGF_Stimulus":"-0.19"},{"ID":"FBgn0031419","EGF_Stimulus":"1.05"},{"ID":"FBgn0086695","EGF_Stimulus":"0.44"},{"ID":"FBgn0035059","EGF_Stimulus":"-0.88"},{"ID":"FBgn0014848","EGF_Stimulus":"-0.51"},{"ID":"FBgn0031643","EGF_Stimulus":"0.05"},{"ID":"FBgn0010194","EGF_Stimulus":"-0.38"},{"ID":"FBgn0034592","EGF_Stimulus":"-1.06"},{"ID":"FBgn0031315","EGF_Stimulus":"0.37"},{"ID":"FBgn0053348","EGF_Stimulus":"-0.63"},{"ID":"FBgn0036780","EGF_Stimulus":"-0.87"},{"ID":"FBgn0069242","EGF_Stimulus":"-1.1"},{"ID":"FBgn0040074","EGF_Stimulus":"1.4"},{"ID":"FBgn0050383","EGF_Stimulus":"1.08"},{"ID":"FBgn0033058","EGF_Stimulus":"3.48"},{"ID":"FBgn0038709","EGF_Stimulus":"0.98"},{"ID":"FBgn0029925","EGF_Stimulus":"-0.95"},{"ID":"FBgn0250825","EGF_Stimulus":"0.93"},{"ID":"FBgn0031530","EGF_Stimulus":"0.12"},{"ID":"FBgn0260658","EGF_Stimulus":"0.52"},{"ID":"FBgn0058354","EGF_Stimulus":"0.83"},{"ID":"FBgn0031468","EGF_Stimulus":"0.66"},{"ID":"FBgn0035641","EGF_Stimulus":"2.03"},{"ID":"FBgn0083979","EGF_Stimulus":"0.67"},{"ID":"FBgn0050016","EGF_Stimulus":"-0.34"},{"ID":"FBgn0034732","EGF_Stimulus":"-1.1"},{"ID":"FBgn0039238","EGF_Stimulus":"0.5"},{"ID":"FBgn0030837","EGF_Stimulus":"0.62"},{"ID":"FBgn0051635","EGF_Stimulus":"0.4"},{"ID":"FBgn0052628","EGF_Stimulus":"0.78"},{"ID":"FBgn0030944","EGF_Stimulus":"-0.3"},{"ID":"FBgn0037848","EGF_Stimulus":"0.26"},{"ID":"FBgn0040251","EGF_Stimulus":"0.21"},{"ID":"FBgn0035538","EGF_Stimulus":"0.91"},{"ID":"FBgn0010414","EGF_Stimulus":"1.27"},{"ID":"FBgn0034151","EGF_Stimulus":"-0.21"},{"ID":"FBgn0032058","EGF_Stimulus":"0.94"},{"ID":"FBgn0001125","EGF_Stimulus":"0.52"},{"ID":"FBgn0005666","EGF_Stimulus":"0.53"},{"ID":"FBgn0027054","EGF_Stimulus":"-0.48"},{"ID":"FBgn0031279","EGF_Stimulus":"0.24"},{"ID":"FBgn0050354","EGF_Stimulus":"0.67"},{"ID":"FBgn0028689","EGF_Stimulus":"-3.36"},{"ID":"FBgn0086757","EGF_Stimulus":"0.19"},{"ID":"FBgn0260750","EGF_Stimulus":"0.17"},{"ID":"FBgn0047351","EGF_Stimulus":"-0.58"},{"ID":"FBgn0259938","EGF_Stimulus":"-1.65"},{"ID":"FBgn0015271","EGF_Stimulus":"-0.46"},{"ID":"FBgn0020416","EGF_Stimulus":"0.74"},{"ID":"FBgn0020018","EGF_Stimulus":"0.75"},{"ID":"FBgn0038432","EGF_Stimulus":"0.78"},{"ID":"FBgn0024319","EGF_Stimulus":"0.74"},{"ID":"FBgn0034259","EGF_Stimulus":"-1.25"},{"ID":"FBgn0034270","EGF_Stimulus":"0.59"},{"ID":"FBgn0052100","EGF_Stimulus":"1.18"},{"ID":"FBgn0052110","EGF_Stimulus":"-0.38"},{"ID":"FBgn0032859","EGF_Stimulus":"-0.93"},{"ID":"FBgn0025878","EGF_Stimulus":"-1.09"},{"ID":"FBgn0028983","EGF_Stimulus":"-1.34"},{"ID":"FBgn0037019","EGF_Stimulus":"0.84"},{"ID":"FBgn0036491","EGF_Stimulus":"0.61"},{"ID":"FBgn0032111","EGF_Stimulus":"-0.26"},{"ID":"FBgn0039835","EGF_Stimulus":"-0.74"},{"ID":"FBgn0085415","EGF_Stimulus":"0.41"},{"ID":"FBgn0035558","EGF_Stimulus":"-1.08"},{"ID":"FBgn0030326","EGF_Stimulus":"0.79"},{"ID":"FBgn0053757","EGF_Stimulus":"0.37"},{"ID":"FBgn0014879","EGF_Stimulus":"-1.04"},{"ID":"FBgn0039747","EGF_Stimulus":"-0.83"},{"ID":"FBgn0053784","EGF_Stimulus":"0.54"},{"ID":"FBgn0038201","EGF_Stimulus":"1.14"},{"ID":"FBgn0050476","EGF_Stimulus":"-4.11"},{"ID":"FBgn0003865","EGF_Stimulus":"0.65"},{"ID":"FBgn0034889","EGF_Stimulus":"0.83"},{"ID":"FBgn0030793","EGF_Stimulus":"0.71"},{"ID":"FBgn0023545","EGF_Stimulus":"0.95"},{"ID":"FBgn0023172","EGF_Stimulus":"0.87"},{"ID":"FBgn0261276","EGF_Stimulus":"0.89"},{"ID":"FBgn0003087","EGF_Stimulus":"-3.39"},{"ID":"FBgn0034967","EGF_Stimulus":"-1.85"},{"ID":"FBgn0038238","EGF_Stimulus":"-0.29"},{"ID":"FBgn0025366","EGF_Stimulus":"-2.16"},{"ID":"FBgn0036227","EGF_Stimulus":"0.23"},{"ID":"FBgn0030578","EGF_Stimulus":"0.54"},{"ID":"FBgn0037238","EGF_Stimulus":"-1.06"},{"ID":"FBgn0053325","EGF_Stimulus":"0.21"},{"ID":"FBgn0032746","EGF_Stimulus":"0.51"},{"ID":"FBgn0036208","EGF_Stimulus":"-0.81"},{"ID":"FBgn0085387","EGF_Stimulus":"-1.03"},{"ID":"FBgn0024912","EGF_Stimulus":"0.72"},{"ID":"FBgn0030814","EGF_Stimulus":"-0.92"},{"ID":"FBgn0037668","EGF_Stimulus":"-0.28"},{"ID":"FBgn0031529","EGF_Stimulus":"-0.79"},{"ID":"FBgn0040153","EGF_Stimulus":"0.75"},{"ID":"FBgn0032869","EGF_Stimulus":"-1.19"},{"ID":"FBgn0034389","EGF_Stimulus":"-0.93"},{"ID":"FBgn0033373","EGF_Stimulus":"-0.34"},{"ID":"FBgn0024909","EGF_Stimulus":"-0.36"},{"ID":"FBgn0034987","EGF_Stimulus":"-0.87"},{"ID":"FBgn0036777","EGF_Stimulus":"0.75"},{"ID":"FBgn0001222","EGF_Stimulus":"1.46"},{"ID":"FBgn0033813","EGF_Stimulus":"-0.14"},{"ID":"FBgn0033543","EGF_Stimulus":"-0.49"},{"ID":"FBgn0003257","EGF_Stimulus":"-1.79"},{"ID":"FBgn0039443","EGF_Stimulus":"1.1"},{"ID":"FBgn0040066","EGF_Stimulus":"-4.09"},{"ID":"FBgn0260944","EGF_Stimulus":"1.37"},{"ID":"FBgn0043577","EGF_Stimulus":"0.15"},{"ID":"FBgn0039338","EGF_Stimulus":"0.58"},{"ID":"FBgn0005642","EGF_Stimulus":"-0.45"},{"ID":"FBgn0017578","EGF_Stimulus":"-1.08"},{"ID":"FBgn0039112","EGF_Stimulus":"0.41"},{"ID":"FBgn0051718","EGF_Stimulus":"0.53"},{"ID":"FBgn0030659","EGF_Stimulus":"-2.11"},{"ID":"FBgn0085203","EGF_Stimulus":"-1.44"},{"ID":"FBgn0024984","EGF_Stimulus":"0.79"},{"ID":"FBgn0010704","EGF_Stimulus":"0.72"},{"ID":"FBgn0054034","EGF_Stimulus":"-0.73"},{"ID":"FBgn0033190","EGF_Stimulus":"0.37"},{"ID":"FBgn0032474","EGF_Stimulus":"-1.2"},{"ID":"FBgn0033079","EGF_Stimulus":"0.49"},{"ID":"FBgn0037666","EGF_Stimulus":"0.49"},{"ID":"FBgn0000180","EGF_Stimulus":"-1.32"},{"ID":"FBgn0036230","EGF_Stimulus":"-0.15"},{"ID":"FBgn0015278","EGF_Stimulus":"-0.76"},{"ID":"FBgn0037447","EGF_Stimulus":"-0.82"},{"ID":"FBgn0051957","EGF_Stimulus":"-1.33"},{"ID":"FBgn0024555","EGF_Stimulus":"-3.96"},{"ID":"FBgn0010381","EGF_Stimulus":"1.37"},{"ID":"FBgn0032405","EGF_Stimulus":"-0.26"},{"ID":"FBgn0039640","EGF_Stimulus":"0.13"},{"ID":"FBgn0085484","EGF_Stimulus":"0.7"},{"ID":"FBgn0031650","EGF_Stimulus":"-0.78"},{"ID":"FBgn0035407","EGF_Stimulus":"-0.56"},{"ID":"FBgn0031249","EGF_Stimulus":"-0.2"},{"ID":"FBgn0034639","EGF_Stimulus":"-0.68"},{"ID":"FBgn0030030","EGF_Stimulus":"0.8"},{"ID":"FBgn0260939","EGF_Stimulus":"-1.03"},{"ID":"FBgn0036891","EGF_Stimulus":"0.3"},{"ID":"FBgn0032884","EGF_Stimulus":"-2.65"},{"ID":"FBgn0033699","EGF_Stimulus":"-1.04"},{"ID":"FBgn0028402","EGF_Stimulus":"-0.99"},{"ID":"FBgn0036627","EGF_Stimulus":"-0.63"},{"ID":"FBgn0019957","EGF_Stimulus":"0.37"},{"ID":"FBgn0039628","EGF_Stimulus":"0.47"},{"ID":"FBgn0010379","EGF_Stimulus":"1.24"},{"ID":"FBgn0085252","EGF_Stimulus":"1.01"},{"ID":"FBgn0038286","EGF_Stimulus":"-0.5"},{"ID":"FBgn0031516","EGF_Stimulus":"-0.32"},{"ID":"FBgn0033913","EGF_Stimulus":"0.48"},{"ID":"FBgn0040629","EGF_Stimulus":"0.93"},{"ID":"FBgn0032731","EGF_Stimulus":"-1.05"},{"ID":"FBgn0054054","EGF_Stimulus":"0.43"},{"ID":"FBgn0087040","EGF_Stimulus":"-1.37"},{"ID":"FBgn0035663","EGF_Stimulus":"-0.44"},{"ID":"FBgn0025634","EGF_Stimulus":"-0.71"},{"ID":"FBgn0026749","EGF_Stimulus":"0.68"},{"ID":"FBgn0052945","EGF_Stimulus":"1"},{"ID":"FBgn0031500","EGF_Stimulus":"-0.46"},{"ID":"FBgn0033206","EGF_Stimulus":"0.89"},{"ID":"FBgn0050127","EGF_Stimulus":"-0.66"},{"ID":"FBgn0034689","EGF_Stimulus":"0.93"},{"ID":"FBgn0036427","EGF_Stimulus":"-0.37"},{"ID":"FBgn0032229","EGF_Stimulus":"0.81"},{"ID":"FBgn0050081","EGF_Stimulus":"0.72"},{"ID":"FBgn0037417","EGF_Stimulus":"0.98"},{"ID":"FBgn0015575","EGF_Stimulus":"1.2"},{"ID":"FBgn0042131","EGF_Stimulus":"0.93"},{"ID":"FBgn0039855","EGF_Stimulus":"-0.86"},{"ID":"FBgn0030893","EGF_Stimulus":"0.58"},{"ID":"FBgn0013997","EGF_Stimulus":"-1.41"},{"ID":"FBgn0027066","EGF_Stimulus":"-1.05"},{"ID":"FBgn0031068","EGF_Stimulus":"0.5"},{"ID":"FBgn0039597","EGF_Stimulus":"1.33"},{"ID":"FBgn0038331","EGF_Stimulus":"0.84"},{"ID":"FBgn0051104","EGF_Stimulus":"0.42"},{"ID":"FBgn0035161","EGF_Stimulus":"0.36"},{"ID":"FBgn0010100","EGF_Stimulus":"0.97"},{"ID":"FBgn0022160","EGF_Stimulus":"0.67"},{"ID":"FBgn0040653","EGF_Stimulus":"-0.69"},{"ID":"FBgn0039434","EGF_Stimulus":"0.34"},{"ID":"FBgn0027070","EGF_Stimulus":"-0.82"},{"ID":"FBgn0037818","EGF_Stimulus":"-1.04"},{"ID":"FBgn0031308","EGF_Stimulus":"0.61"},{"ID":"FBgn0033608","EGF_Stimulus":"0.47"},{"ID":"FBgn0027791","EGF_Stimulus":"0.5"},{"ID":"FBgn0034582","EGF_Stimulus":"0.27"},{"ID":"FBgn0036330","EGF_Stimulus":"-0.63"},{"ID":"FBgn0000075","EGF_Stimulus":"1.3"},{"ID":"FBgn0039020","EGF_Stimulus":"0.2"},{"ID":"FBgn0050401","EGF_Stimulus":"-0.64"},{"ID":"FBgn0031080","EGF_Stimulus":"0.85"},{"ID":"FBgn0031003","EGF_Stimulus":"-1.45"},{"ID":"FBgn0051007","EGF_Stimulus":"-0.94"},{"ID":"FBgn0051921","EGF_Stimulus":"-1.22"},{"ID":"FBgn0035710","EGF_Stimulus":"0.44"},{"ID":"FBgn0017567","EGF_Stimulus":"0.52"},{"ID":"FBgn0002440","EGF_Stimulus":"-0.1"},{"ID":"FBgn0038847","EGF_Stimulus":"1.48"},{"ID":"FBgn0038558","EGF_Stimulus":"-0.63"},{"ID":"FBgn0032036","EGF_Stimulus":"0.61"},{"ID":"FBgn0011305","EGF_Stimulus":"-1.06"},{"ID":"FBgn0036959","EGF_Stimulus":"-0.28"},{"ID":"FBgn0053294","EGF_Stimulus":"-0.39"},{"ID":"FBgn0033486","EGF_Stimulus":"1.33"},{"ID":"FBgn0033225","EGF_Stimulus":"-0.29"},{"ID":"FBgn0031398","EGF_Stimulus":"0.95"},{"ID":"FBgn0032692","EGF_Stimulus":"0.28"},{"ID":"FBgn0025712","EGF_Stimulus":"1.1"},{"ID":"FBgn0083949","EGF_Stimulus":"1.02"},{"ID":"FBgn0030985","EGF_Stimulus":"0.31"},{"ID":"FBgn0038326","EGF_Stimulus":"2.84"},{"ID":"FBgn0028932","EGF_Stimulus":"-0.07"},{"ID":"FBgn0003071","EGF_Stimulus":"-0.33"},{"ID":"FBgn0039994","EGF_Stimulus":"-0.8"},{"ID":"FBgn0032664","EGF_Stimulus":"0.47"},{"ID":"FBgn0042174","EGF_Stimulus":"-0.79"},{"ID":"FBgn0031522","EGF_Stimulus":"-0.18"},{"ID":"FBgn0036952","EGF_Stimulus":"1.02"},{"ID":"FBgn0050065","EGF_Stimulus":"0.31"},{"ID":"FBgn0051473","EGF_Stimulus":"1.52"},{"ID":"FBgn0001089","EGF_Stimulus":"1.48"},{"ID":"FBgn0052694","EGF_Stimulus":"-0.65"},{"ID":"FBgn0034470","EGF_Stimulus":"0.32"},{"ID":"FBgn0034158","EGF_Stimulus":"-0.53"},{"ID":"FBgn0039091","EGF_Stimulus":"0.56"},{"ID":"FBgn0036819","EGF_Stimulus":"1.84"},{"ID":"FBgn0025469","EGF_Stimulus":"0.79"},{"ID":"FBgn0000247","EGF_Stimulus":"1.02"},{"ID":"FBgn0031244","EGF_Stimulus":"-1.24"},{"ID":"FBgn0034455","EGF_Stimulus":"0.77"},{"ID":"FBgn0033994","EGF_Stimulus":"0.56"},{"ID":"FBgn0051460","EGF_Stimulus":"1.17"},{"ID":"FBgn0052150","EGF_Stimulus":"-0.85"},{"ID":"FBgn0050125","EGF_Stimulus":"-0.38"},{"ID":"FBgn0039108","EGF_Stimulus":"0.35"},{"ID":"FBgn0052479","EGF_Stimulus":"1.51"},{"ID":"FBgn0038919","EGF_Stimulus":"0.66"},{"ID":"FBgn0003250","EGF_Stimulus":"-1.46"},{"ID":"FBgn0021856","EGF_Stimulus":"1.13"},{"ID":"FBgn0002778","EGF_Stimulus":"-0.47"},{"ID":"FBgn0034049","EGF_Stimulus":"-0.37"},{"ID":"FBgn0039915","EGF_Stimulus":"0.97"},{"ID":"FBgn0000299","EGF_Stimulus":"0.33"},{"ID":"FBgn0001989","EGF_Stimulus":"0.5"},{"ID":"FBgn0261290","EGF_Stimulus":"-0.42"},{"ID":"FBgn0027596","EGF_Stimulus":"-0.45"},{"ID":"FBgn0036795","EGF_Stimulus":"-0.84"},{"ID":"FBgn0045470","EGF_Stimulus":"-1.79"},{"ID":"FBgn0037114","EGF_Stimulus":"0.98"},{"ID":"FBgn0034420","EGF_Stimulus":"0.49"},{"ID":"FBgn0026388","EGF_Stimulus":"-1.83"},{"ID":"FBgn0011674","EGF_Stimulus":"0.52"},{"ID":"FBgn0031490","EGF_Stimulus":"0.84"},{"ID":"FBgn0086200","EGF_Stimulus":"1.23"},{"ID":"FBgn0261794","EGF_Stimulus":"1.28"},{"ID":"FBgn0023095","EGF_Stimulus":"1.19"},{"ID":"FBgn0053971","EGF_Stimulus":"0.18"},{"ID":"FBgn0013685","EGF_Stimulus":"1.01"},{"ID":"FBgn0051064","EGF_Stimulus":"-1.93"},{"ID":"FBgn0029664","EGF_Stimulus":"-0.61"},{"ID":"FBgn0036467","EGF_Stimulus":"0.96"},{"ID":"FBgn0003082","EGF_Stimulus":"1.62"},{"ID":"FBgn0038681","EGF_Stimulus":"0.88"},{"ID":"FBgn0033601","EGF_Stimulus":"0.51"},{"ID":"FBgn0040319","EGF_Stimulus":"-0.81"},{"ID":"FBgn0040234","EGF_Stimulus":"-0.38"},{"ID":"FBgn0031702","EGF_Stimulus":"1.73"},{"ID":"FBgn0040056","EGF_Stimulus":"0.61"},{"ID":"FBgn0005410","EGF_Stimulus":"-1.58"},{"ID":"FBgn0038551","EGF_Stimulus":"0.67"},{"ID":"FBgn0037515","EGF_Stimulus":"0.37"},{"ID":"FBgn0053639","EGF_Stimulus":"1.07"},{"ID":"FBgn0025628","EGF_Stimulus":"-1.46"},{"ID":"FBgn0030622","EGF_Stimulus":"-0.9"},{"ID":"FBgn0003396","EGF_Stimulus":"-1.54"},{"ID":"FBgn0038102","EGF_Stimulus":"0.24"},{"ID":"FBgn0027108","EGF_Stimulus":"0.59"},{"ID":"FBgn0040900","EGF_Stimulus":"1.98"},{"ID":"FBgn0046685","EGF_Stimulus":"-0.88"},{"ID":"FBgn0031100","EGF_Stimulus":"-0.22"},{"ID":"FBgn0030493","EGF_Stimulus":"0.31"},{"ID":"FBgn0035839","EGF_Stimulus":"0.69"},{"ID":"FBgn0061196","EGF_Stimulus":"-0.4"},{"ID":"FBgn0026389","EGF_Stimulus":"0.33"},{"ID":"FBgn0083940","EGF_Stimulus":"1.62"},{"ID":"FBgn0035553","EGF_Stimulus":"-1.2"},{"ID":"FBgn0034839","EGF_Stimulus":"0.9"},{"ID":"FBgn0039929","EGF_Stimulus":"-0.12"},{"ID":"FBgn0022029","EGF_Stimulus":"-0.88"},{"ID":"FBgn0032799","EGF_Stimulus":"-0.42"},{"ID":"FBgn0032601","EGF_Stimulus":"0.71"},{"ID":"FBgn0039900","EGF_Stimulus":"0.73"},{"ID":"FBgn0039742","EGF_Stimulus":"-1.26"},{"ID":"FBgn0037792","EGF_Stimulus":"-0.95"},{"ID":"FBgn0031908","EGF_Stimulus":"-0.44"},{"ID":"FBgn0036646","EGF_Stimulus":"-1.01"},{"ID":"FBgn0035334","EGF_Stimulus":"-1.29"},{"ID":"FBgn0037340","EGF_Stimulus":"-0.33"},{"ID":"FBgn0004045","EGF_Stimulus":"-0.28"},{"ID":"FBgn0001120","EGF_Stimulus":"-0.91"},{"ID":"FBgn0010926","EGF_Stimulus":"-0.84"},{"ID":"FBgn0037082","EGF_Stimulus":"1.23"},{"ID":"FBgn0030189","EGF_Stimulus":"-0.44"},{"ID":"FBgn0016038","EGF_Stimulus":"-0.71"},{"ID":"FBgn0037634","EGF_Stimulus":"-0.42"},{"ID":"FBgn0032922","EGF_Stimulus":"1.57"},{"ID":"FBgn0039101","EGF_Stimulus":"-0.76"},{"ID":"FBgn0036727","EGF_Stimulus":"0.85"},{"ID":"FBgn0052835","EGF_Stimulus":"-1.33"},{"ID":"FBgn0015520","EGF_Stimulus":"1.14"},{"ID":"FBgn0035751","EGF_Stimulus":"0.47"},{"ID":"FBgn0005655","EGF_Stimulus":"-1.07"},{"ID":"FBgn0034617","EGF_Stimulus":"0.14"},{"ID":"FBgn0026417","EGF_Stimulus":"4.71"},{"ID":"FBgn0041709","EGF_Stimulus":"0.46"},{"ID":"FBgn0032439","EGF_Stimulus":"0.42"},{"ID":"FBgn0002716","EGF_Stimulus":"-0.46"},{"ID":"FBgn0015316","EGF_Stimulus":"0.14"},{"ID":"FBgn0086355","EGF_Stimulus":"0.79"},{"ID":"FBgn0261881","EGF_Stimulus":"1.12"},{"ID":"FBgn0033864","EGF_Stimulus":"0.3"},{"ID":"FBgn0027587","EGF_Stimulus":"0.84"},{"ID":"FBgn0000071","EGF_Stimulus":"0.58"},{"ID":"FBgn0033983","EGF_Stimulus":"1.28"},{"ID":"FBgn0038915","EGF_Stimulus":"0.95"},{"ID":"FBgn0032805","EGF_Stimulus":"1.57"},{"ID":"FBgn0030629","EGF_Stimulus":"-0.94"},{"ID":"FBgn0086605","EGF_Stimulus":"0.92"},{"ID":"FBgn0260388","EGF_Stimulus":"0.47"},{"ID":"FBgn0034501","EGF_Stimulus":"0.42"},{"ID":"FBgn0037315","EGF_Stimulus":"0.75"},{"ID":"FBgn0001301","EGF_Stimulus":"0.35"},{"ID":"FBgn0044826","EGF_Stimulus":"-2.07"},{"ID":"FBgn0035888","EGF_Stimulus":"-0.25"},{"ID":"FBgn0052107","EGF_Stimulus":"-0.81"},{"ID":"FBgn0030745","EGF_Stimulus":"-0.59"},{"ID":"FBgn0250834","EGF_Stimulus":"-1.8"},{"ID":"FBgn0033212","EGF_Stimulus":"1.9"},{"ID":"FBgn0022224","EGF_Stimulus":"-0.69"},{"ID":"FBgn0260996","EGF_Stimulus":"0.72"},{"ID":"FBgn0036527","EGF_Stimulus":"0.92"},{"ID":"FBgn0035122","EGF_Stimulus":"-0.33"},{"ID":"FBgn0039310","EGF_Stimulus":"-0.35"},{"ID":"FBgn0037567","EGF_Stimulus":"-0.05"},{"ID":"FBgn0039260","EGF_Stimulus":"-1.2"},{"ID":"FBgn0038879","EGF_Stimulus":"0.73"},{"ID":"FBgn0030593","EGF_Stimulus":"-0.32"},{"ID":"FBgn0040531","EGF_Stimulus":"-0.27"},{"ID":"FBgn0034713","EGF_Stimulus":"0.3"},{"ID":"FBgn0039467","EGF_Stimulus":"0.55"},{"ID":"FBgn0038448","EGF_Stimulus":"0.08"},{"ID":"FBgn0038872","EGF_Stimulus":"-1.59"},{"ID":"FBgn0035799","EGF_Stimulus":"0.66"},{"ID":"FBgn0017418","EGF_Stimulus":"1.24"},{"ID":"FBgn0086690","EGF_Stimulus":"1.27"},{"ID":"FBgn0260991","EGF_Stimulus":"1.26"},{"ID":"FBgn0033809","EGF_Stimulus":"0.62"},{"ID":"FBgn0030098","EGF_Stimulus":"-0.93"},{"ID":"FBgn0032055","EGF_Stimulus":"0.23"},{"ID":"FBgn0037397","EGF_Stimulus":"-0.47"},{"ID":"FBgn0037721","EGF_Stimulus":"0.92"},{"ID":"FBgn0031975","EGF_Stimulus":"-0.53"},{"ID":"FBgn0037976","EGF_Stimulus":"1.46"},{"ID":"FBgn0037203","EGF_Stimulus":"0.87"},{"ID":"FBgn0016031","EGF_Stimulus":"1"},{"ID":"FBgn0034791","EGF_Stimulus":"0.34"},{"ID":"FBgn0029669","EGF_Stimulus":"-0.79"},{"ID":"FBgn0032457","EGF_Stimulus":"-1.17"},{"ID":"FBgn0036394","EGF_Stimulus":"1.77"},{"ID":"FBgn0038150","EGF_Stimulus":"-0.23"},{"ID":"FBgn0035473","EGF_Stimulus":"-0.62"},{"ID":"FBgn0085423","EGF_Stimulus":"-1.7"},{"ID":"FBgn0023395","EGF_Stimulus":"-1.45"},{"ID":"FBgn0053125","EGF_Stimulus":"0.34"},{"ID":"FBgn0029647","EGF_Stimulus":"0.65"},{"ID":"FBgn0030687","EGF_Stimulus":"0.88"},{"ID":"FBgn0034066","EGF_Stimulus":"0.73"},{"ID":"FBgn0001179","EGF_Stimulus":"0.82"},{"ID":"FBgn0028525","EGF_Stimulus":"-0.92"},{"ID":"FBgn0031804","EGF_Stimulus":"0.99"},{"ID":"FBgn0031384","EGF_Stimulus":"-0.62"},{"ID":"FBgn0035689","EGF_Stimulus":"-1.59"},{"ID":"FBgn0000527","EGF_Stimulus":"-1.01"},{"ID":"FBgn0032430","EGF_Stimulus":"-1.03"},{"ID":"FBgn0033784","EGF_Stimulus":"0.91"},{"ID":"FBgn0035498","EGF_Stimulus":"-0.83"},{"ID":"FBgn0083969","EGF_Stimulus":"0.81"},{"ID":"FBgn0014903","EGF_Stimulus":"0.74"},{"ID":"FBgn0036239","EGF_Stimulus":"-4.17"},{"ID":"FBgn0033725","EGF_Stimulus":"1.5"},{"ID":"FBgn0035379","EGF_Stimulus":"0.9"},{"ID":"FBgn0037603","EGF_Stimulus":"0.67"},{"ID":"FBgn0003275","EGF_Stimulus":"-1.45"},{"ID":"FBgn0036495","EGF_Stimulus":"0.91"},{"ID":"FBgn0052117","EGF_Stimulus":"1.49"},{"ID":"FBgn0028412","EGF_Stimulus":"0.82"},{"ID":"FBgn0034099","EGF_Stimulus":"-0.58"},{"ID":"FBgn0030234","EGF_Stimulus":"1.25"},{"ID":"FBgn0047205","EGF_Stimulus":"-1.58"},{"ID":"FBgn0014465","EGF_Stimulus":"-0.83"},{"ID":"FBgn0035978","EGF_Stimulus":"1.73"},{"ID":"FBgn0051544","EGF_Stimulus":"1.59"},{"ID":"FBgn0038475","EGF_Stimulus":"-0.45"},{"ID":"FBgn0031078","EGF_Stimulus":"0.92"},{"ID":"FBgn0037728","EGF_Stimulus":"1"},{"ID":"FBgn0037538","EGF_Stimulus":"-0.99"},{"ID":"FBgn0032929","EGF_Stimulus":"-1.38"},{"ID":"FBgn0030480","EGF_Stimulus":"-0.69"},{"ID":"FBgn0036111","EGF_Stimulus":"-0.41"},{"ID":"FBgn0020930","EGF_Stimulus":"1.67"},{"ID":"FBgn0030719","EGF_Stimulus":"-0.97"},{"ID":"FBgn0040212","EGF_Stimulus":"-0.9"},{"ID":"FBgn0028507","EGF_Stimulus":"0.68"},{"ID":"FBgn0032597","EGF_Stimulus":"1.26"},{"ID":"FBgn0039156","EGF_Stimulus":"0.56"},{"ID":"FBgn0039544","EGF_Stimulus":"0.48"},{"ID":"FBgn0039765","EGF_Stimulus":"0.8"},{"ID":"FBgn0261587","EGF_Stimulus":"0.37"},{"ID":"FBgn0052085","EGF_Stimulus":"1.41"},{"ID":"FBgn0045477","EGF_Stimulus":"0.6"},{"ID":"FBgn0035985","EGF_Stimulus":"-0.71"},{"ID":"FBgn0031347","EGF_Stimulus":"0.74"},{"ID":"FBgn0029766","EGF_Stimulus":"-0.34"},{"ID":"FBgn0036676","EGF_Stimulus":"-1.12"},{"ID":"FBgn0036581","EGF_Stimulus":"-0.49"},{"ID":"FBgn0036403","EGF_Stimulus":"0.66"},{"ID":"FBgn0036940","EGF_Stimulus":"0.58"},{"ID":"FBgn0040973","EGF_Stimulus":"-0.81"},{"ID":"FBgn0051015","EGF_Stimulus":"-1.34"},{"ID":"FBgn0004367","EGF_Stimulus":"-0.56"},{"ID":"FBgn0039887","EGF_Stimulus":"-0.42"},{"ID":"FBgn0034363","EGF_Stimulus":"0.75"},{"ID":"FBgn0038088","EGF_Stimulus":"1.2"},{"ID":"FBgn0025836","EGF_Stimulus":"0.96"},{"ID":"FBgn0033792","EGF_Stimulus":"-1.06"},{"ID":"FBgn0038890","EGF_Stimulus":"0.57"},{"ID":"FBgn0037035","EGF_Stimulus":"0.8"},{"ID":"FBgn0038589","EGF_Stimulus":"0.37"},{"ID":"FBgn0035268","EGF_Stimulus":"1.45"},{"ID":"FBgn0037552","EGF_Stimulus":"0.25"},{"ID":"FBgn0033375","EGF_Stimulus":"0.84"},{"ID":"FBgn0019886","EGF_Stimulus":"-1.14"},{"ID":"FBgn0051462","EGF_Stimulus":"0.59"},{"ID":"FBgn0033656","EGF_Stimulus":"0.78"},{"ID":"FBgn0034842","EGF_Stimulus":"1.09"},{"ID":"FBgn0027493","EGF_Stimulus":"0.5"},{"ID":"FBgn0032291","EGF_Stimulus":"-0.89"},{"ID":"FBgn0010278","EGF_Stimulus":"-4.16"},{"ID":"FBgn0033349","EGF_Stimulus":"0.54"},{"ID":"FBgn0031050","EGF_Stimulus":"-1.18"},{"ID":"FBgn0035298","EGF_Stimulus":"-0.23"},{"ID":"FBgn0000422","EGF_Stimulus":"0.69"},{"ID":"FBgn0032812","EGF_Stimulus":"1.16"},{"ID":"FBgn0036188","EGF_Stimulus":"0.69"},{"ID":"FBgn0033353","EGF_Stimulus":"0.1"},{"ID":"FBgn0036155","EGF_Stimulus":"-0.06"},{"ID":"FBgn0031389","EGF_Stimulus":"1.31"},{"ID":"FBgn0029838","EGF_Stimulus":"0.13"},{"ID":"FBgn0038849","EGF_Stimulus":"0.32"},{"ID":"FBgn0030946","EGF_Stimulus":"-0.52"},{"ID":"FBgn0026713","EGF_Stimulus":"1.47"},{"ID":"FBgn0038870","EGF_Stimulus":"-1.98"},{"ID":"FBgn0259245","EGF_Stimulus":"-1.48"},{"ID":"FBgn0038002","EGF_Stimulus":"0.31"},{"ID":"FBgn0261673","EGF_Stimulus":"1.34"},{"ID":"FBgn0030889","EGF_Stimulus":"0.53"},{"ID":"FBgn0034288","EGF_Stimulus":"-0.48"},{"ID":"FBgn0050076","EGF_Stimulus":"-1.06"},{"ID":"FBgn0038453","EGF_Stimulus":"1.46"},{"ID":"FBgn0036306","EGF_Stimulus":"0.83"},{"ID":"FBgn0031722","EGF_Stimulus":"0.46"},{"ID":"FBgn0010109","EGF_Stimulus":"0.54"},{"ID":"FBgn0038143","EGF_Stimulus":"-1.32"},{"ID":"FBgn0033238","EGF_Stimulus":"-0.31"},{"ID":"FBgn0010825","EGF_Stimulus":"0.24"},{"ID":"FBgn0029738","EGF_Stimulus":"0.51"},{"ID":"FBgn0036354","EGF_Stimulus":"1.63"},{"ID":"FBgn0035449","EGF_Stimulus":"1.11"},{"ID":"FBgn0028743","EGF_Stimulus":"-0.62"},{"ID":"FBgn0085458","EGF_Stimulus":"-0.36"},{"ID":"FBgn0033139","EGF_Stimulus":"0.4"},{"ID":"FBgn0013810","EGF_Stimulus":"0.5"},{"ID":"FBgn0027936","EGF_Stimulus":"-3.55"},{"ID":"FBgn0003360","EGF_Stimulus":"-0.26"},{"ID":"FBgn0031571","EGF_Stimulus":"2.12"},{"ID":"FBgn0032819","EGF_Stimulus":"-1.34"},{"ID":"FBgn0036896","EGF_Stimulus":"0.8"},{"ID":"FBgn0065110","EGF_Stimulus":"-0.3"},{"ID":"FBgn0003137","EGF_Stimulus":"-0.47"},{"ID":"FBgn0039810","EGF_Stimulus":"-0.16"},{"ID":"FBgn0030409","EGF_Stimulus":"-1.83"},{"ID":"FBgn0037027","EGF_Stimulus":"1.08"},{"ID":"FBgn0003139","EGF_Stimulus":"1.05"},{"ID":"FBgn0034709","EGF_Stimulus":"0.39"},{"ID":"FBgn0051802","EGF_Stimulus":"-0.64"},{"ID":"FBgn0031738","EGF_Stimulus":"1.57"},{"ID":"FBgn0036622","EGF_Stimulus":"-0.37"},{"ID":"FBgn0037549","EGF_Stimulus":"0.67"},{"ID":"FBgn0035104","EGF_Stimulus":"1.33"},{"ID":"FBgn0015544","EGF_Stimulus":"-1.01"},{"ID":"FBgn0000094","EGF_Stimulus":"1.14"},{"ID":"FBgn0030724","EGF_Stimulus":"1.43"},{"ID":"FBgn0261293","EGF_Stimulus":"-0.55"},{"ID":"FBgn0023516","EGF_Stimulus":"0.59"},{"ID":"FBgn0004381","EGF_Stimulus":"-0.56"},{"ID":"FBgn0036017","EGF_Stimulus":"-0.08"},{"ID":"FBgn0035583","EGF_Stimulus":"-0.58"},{"ID":"FBgn0030096","EGF_Stimulus":"0.28"},{"ID":"FBgn0039958","EGF_Stimulus":"1.31"},{"ID":"FBgn0036340","EGF_Stimulus":"-0.72"},{"ID":"FBgn0032645","EGF_Stimulus":"0.83"},{"ID":"FBgn0036734","EGF_Stimulus":"-2.2"},{"ID":"FBgn0033715","EGF_Stimulus":"-0.71"},{"ID":"FBgn0053140","EGF_Stimulus":"-0.61"},{"ID":"FBgn0031693","EGF_Stimulus":"1.34"},{"ID":"FBgn0029945","EGF_Stimulus":"0.9"},{"ID":"FBgn0034281","EGF_Stimulus":"0.93"},{"ID":"FBgn0051800","EGF_Stimulus":"-1.64"},{"ID":"FBgn0260872","EGF_Stimulus":"0.46"},{"ID":"FBgn0034391","EGF_Stimulus":"0.74"},{"ID":"FBgn0019660","EGF_Stimulus":"0.46"},{"ID":"FBgn0052311","EGF_Stimulus":"1.44"},{"ID":"FBgn0030260","EGF_Stimulus":"2.46"},{"ID":"FBgn0031462","EGF_Stimulus":"-1.14"},{"ID":"FBgn0035960","EGF_Stimulus":"0.64"},{"ID":"FBgn0034360","EGF_Stimulus":"0.64"},{"ID":"FBgn0035136","EGF_Stimulus":"1.75"},{"ID":"FBgn0033184","EGF_Stimulus":"1.11"},{"ID":"FBgn0036470","EGF_Stimulus":"-0.42"},{"ID":"FBgn0030989","EGF_Stimulus":"-0.47"},{"ID":"FBgn0032969","EGF_Stimulus":"0.32"},{"ID":"FBgn0001092","EGF_Stimulus":"0.65"},{"ID":"FBgn0041605","EGF_Stimulus":"1.28"},{"ID":"FBgn0031903","EGF_Stimulus":"-1.43"},{"ID":"FBgn0031700","EGF_Stimulus":"-0.8"},{"ID":"FBgn0039732","EGF_Stimulus":"0.15"},{"ID":"FBgn0037483","EGF_Stimulus":"-0.18"},{"ID":"FBgn0004896","EGF_Stimulus":"-0.48"},{"ID":"FBgn0038608","EGF_Stimulus":"-1.13"},{"ID":"FBgn0042138","EGF_Stimulus":"0.99"},{"ID":"FBgn0031421","EGF_Stimulus":"0.65"},{"ID":"FBgn0030248","EGF_Stimulus":"1.66"},{"ID":"FBgn0038470","EGF_Stimulus":"1.17"},{"ID":"FBgn0039402","EGF_Stimulus":"-1.73"},{"ID":"FBgn0034925","EGF_Stimulus":"1.23"},{"ID":"FBgn0035471","EGF_Stimulus":"-1.95"},{"ID":"FBgn0040732","EGF_Stimulus":"-0.31"},{"ID":"FBgn0033469","EGF_Stimulus":"0.93"},{"ID":"FBgn0031409","EGF_Stimulus":"0.11"},{"ID":"FBgn0033968","EGF_Stimulus":"0.46"},{"ID":"FBgn0011211","EGF_Stimulus":"0.43"},{"ID":"FBgn0259108","EGF_Stimulus":"-1.83"},{"ID":"FBgn0034804","EGF_Stimulus":"0.3"},{"ID":"FBgn0031834","EGF_Stimulus":"1.59"},{"ID":"FBgn0086475","EGF_Stimulus":"0.42"},{"ID":"FBgn0052043","EGF_Stimulus":"-0.55"},{"ID":"FBgn0031026","EGF_Stimulus":"0.61"},{"ID":"FBgn0036250","EGF_Stimulus":"0.12"},{"ID":"FBgn0000579","EGF_Stimulus":"-1.53"},{"ID":"FBgn0026401","EGF_Stimulus":"1.32"},{"ID":"FBgn0039131","EGF_Stimulus":"0.19"},{"ID":"FBgn0038315","EGF_Stimulus":"1.16"},{"ID":"FBgn0259703","EGF_Stimulus":"0.37"},{"ID":"FBgn0087011","EGF_Stimulus":"0.78"},{"ID":"FBgn0027784","EGF_Stimulus":"1.31"},{"ID":"FBgn0028841","EGF_Stimulus":"-0.68"},{"ID":"FBgn0032768","EGF_Stimulus":"-0.26"},{"ID":"FBgn0051789","EGF_Stimulus":"1.47"},{"ID":"FBgn0032244","EGF_Stimulus":"0.43"},{"ID":"FBgn0039145","EGF_Stimulus":"0.94"},{"ID":"FBgn0037280","EGF_Stimulus":"0.52"},{"ID":"FBgn0036977","EGF_Stimulus":"0.25"},{"ID":"FBgn0259682","EGF_Stimulus":"1.91"},{"ID":"FBgn0043043","EGF_Stimulus":"0.55"},{"ID":"FBgn0031018","EGF_Stimulus":"-0.65"},{"ID":"FBgn0038705","EGF_Stimulus":"1.04"},{"ID":"FBgn0000524","EGF_Stimulus":"0.46"},{"ID":"FBgn0034626","EGF_Stimulus":"0.34"},{"ID":"FBgn0038938","EGF_Stimulus":"1.2"},{"ID":"FBgn0038130","EGF_Stimulus":"-1.57"},{"ID":"FBgn0027503","EGF_Stimulus":"-1.75"},{"ID":"FBgn0034215","EGF_Stimulus":"0.93"},{"ID":"FBgn0036704","EGF_Stimulus":"-1.79"},{"ID":"FBgn0040849","EGF_Stimulus":"0.58"},{"ID":"FBgn0011280","EGF_Stimulus":"0.9"},{"ID":"FBgn0033786","EGF_Stimulus":"0.79"},{"ID":"FBgn0032839","EGF_Stimulus":"1.41"},{"ID":"FBgn0052850","EGF_Stimulus":"-0.97"},{"ID":"FBgn0033021","EGF_Stimulus":"-0.35"},{"ID":"FBgn0002174","EGF_Stimulus":"-0.47"},{"ID":"FBgn0037073","EGF_Stimulus":"-1.32"},{"ID":"FBgn0039235","EGF_Stimulus":"-0.94"},{"ID":"FBgn0259996","EGF_Stimulus":"0.92"},{"ID":"FBgn0005778","EGF_Stimulus":"1.01"},{"ID":"FBgn0039044","EGF_Stimulus":"-0.28"},{"ID":"FBgn0039201","EGF_Stimulus":"-1.03"},{"ID":"FBgn0000063","EGF_Stimulus":"0.72"},{"ID":"FBgn0038773","EGF_Stimulus":"-1.97"},{"ID":"FBgn0037835","EGF_Stimulus":"-0.95"},{"ID":"FBgn0032694","EGF_Stimulus":"0.52"},{"ID":"FBgn0085216","EGF_Stimulus":"0.64"},{"ID":"FBgn0025821","EGF_Stimulus":"0.7"},{"ID":"FBgn0024921","EGF_Stimulus":"-3.7"},{"ID":"FBgn0261612","EGF_Stimulus":"-0.24"},{"ID":"FBgn0043884","EGF_Stimulus":"-1.36"},{"ID":"FBgn0053530","EGF_Stimulus":"-0.27"},{"ID":"FBgn0026634","EGF_Stimulus":"-0.1"},{"ID":"FBgn0037936","EGF_Stimulus":"0.75"},{"ID":"FBgn0050339","EGF_Stimulus":"0.59"},{"ID":"FBgn0040763","EGF_Stimulus":"1.28"},{"ID":"FBgn0027864","EGF_Stimulus":"-1.03"},{"ID":"FBgn0052283","EGF_Stimulus":"0.71"},{"ID":"FBgn0031267","EGF_Stimulus":"0.1"},{"ID":"FBgn0259226","EGF_Stimulus":"0.46"},{"ID":"FBgn0034304","EGF_Stimulus":"1.07"},{"ID":"FBgn0029717","EGF_Stimulus":"0.28"},{"ID":"FBgn0028953","EGF_Stimulus":"-0.42"},{"ID":"FBgn0260450","EGF_Stimulus":"0.97"},{"ID":"FBgn0037712","EGF_Stimulus":"-0.8"},{"ID":"FBgn0052512","EGF_Stimulus":"0.87"},{"ID":"FBgn0051128","EGF_Stimulus":"0.48"},{"ID":"FBgn0032286","EGF_Stimulus":"0.4"},{"ID":"FBgn0039612","EGF_Stimulus":"-0.58"},{"ID":"FBgn0085417","EGF_Stimulus":"-0.52"},{"ID":"FBgn0040283","EGF_Stimulus":"1.09"},{"ID":"FBgn0037406","EGF_Stimulus":"-0.44"},{"ID":"FBgn0033528","EGF_Stimulus":"-0.26"},{"ID":"FBgn0032153","EGF_Stimulus":"-0.59"},{"ID":"FBgn0034817","EGF_Stimulus":"-1.23"},{"ID":"FBgn0034434","EGF_Stimulus":"1.16"},{"ID":"FBgn0038797","EGF_Stimulus":"0.68"},{"ID":"FBgn0004650","EGF_Stimulus":"0.2"},{"ID":"FBgn0260862","EGF_Stimulus":"-1.04"},{"ID":"FBgn0052719","EGF_Stimulus":"0.91"},{"ID":"FBgn0038977","EGF_Stimulus":"-0.64"},{"ID":"FBgn0022343","EGF_Stimulus":"0.31"},{"ID":"FBgn0036922","EGF_Stimulus":"-1.08"},{"ID":"FBgn0052227","EGF_Stimulus":"-0.85"},{"ID":"FBgn0035756","EGF_Stimulus":"0.87"},{"ID":"FBgn0034323","EGF_Stimulus":"1.08"},{"ID":"FBgn0028948","EGF_Stimulus":"-1.33"},{"ID":"FBgn0038118","EGF_Stimulus":"-2.48"},{"ID":"FBgn0053771","EGF_Stimulus":"0.77"},{"ID":"FBgn0035427","EGF_Stimulus":"1.28"},{"ID":"FBgn0040850","EGF_Stimulus":"0.36"},{"ID":"FBgn0031313","EGF_Stimulus":"-0.68"},{"ID":"FBgn0040368","EGF_Stimulus":"-0.82"},{"ID":"FBgn0038235","EGF_Stimulus":"-0.59"},{"ID":"FBgn0000173","EGF_Stimulus":"0.4"},{"ID":"FBgn0050293","EGF_Stimulus":"0.22"},{"ID":"FBgn0026079","EGF_Stimulus":"-1.2"},{"ID":"FBgn0030481","EGF_Stimulus":"1.17"},{"ID":"FBgn0085474","EGF_Stimulus":"-1.14"},{"ID":"FBgn0037687","EGF_Stimulus":"-1.07"},{"ID":"FBgn0024277","EGF_Stimulus":"-1.1"},{"ID":"FBgn0260648","EGF_Stimulus":"0.52"},{"ID":"FBgn0027083","EGF_Stimulus":"0.83"},{"ID":"FBgn0023213","EGF_Stimulus":"-1.46"},{"ID":"FBgn0030365","EGF_Stimulus":"1.61"},{"ID":"FBgn0032136","EGF_Stimulus":"0.64"},{"ID":"FBgn0002563","EGF_Stimulus":"0.33"},{"ID":"FBgn0033042","EGF_Stimulus":"-0.9"},{"ID":"FBgn0032483","EGF_Stimulus":"-1.32"},{"ID":"FBgn0051245","EGF_Stimulus":"0.9"},{"ID":"FBgn0039172","EGF_Stimulus":"-0.93"},{"ID":"FBgn0039588","EGF_Stimulus":"-1.01"},{"ID":"FBgn0034437","EGF_Stimulus":"-0.12"},{"ID":"FBgn0052191","EGF_Stimulus":"0.78"},{"ID":"FBgn0045852","EGF_Stimulus":"1.02"},{"ID":"FBgn0004858","EGF_Stimulus":"-1.12"},{"ID":"FBgn0030466","EGF_Stimulus":"-0.77"},{"ID":"FBgn0025700","EGF_Stimulus":"-0.8"},{"ID":"FBgn0004655","EGF_Stimulus":"0.97"},{"ID":"FBgn0032346","EGF_Stimulus":"-1.46"},{"ID":"FBgn0036691","EGF_Stimulus":"-0.68"},{"ID":"FBgn0053221","EGF_Stimulus":"0.84"},{"ID":"FBgn0027329","EGF_Stimulus":"0.46"},{"ID":"FBgn0002354","EGF_Stimulus":"-0.59"},{"ID":"FBgn0052718","EGF_Stimulus":"0.51"},{"ID":"FBgn0053299","EGF_Stimulus":"-0.56"},{"ID":"FBgn0085359","EGF_Stimulus":"-0.53"},{"ID":"FBgn0014029","EGF_Stimulus":"0.39"},{"ID":"FBgn0034990","EGF_Stimulus":"0.39"},{"ID":"FBgn0035420","EGF_Stimulus":"1"},{"ID":"FBgn0033340","EGF_Stimulus":"1.24"},{"ID":"FBgn0034849","EGF_Stimulus":"-0.79"},{"ID":"FBgn0261111","EGF_Stimulus":"0.74"},{"ID":"FBgn0022708","EGF_Stimulus":"0.82"},{"ID":"FBgn0037753","EGF_Stimulus":"0.45"},{"ID":"FBgn0029987","EGF_Stimulus":"-0.44"},{"ID":"FBgn0050275","EGF_Stimulus":"-0.58"},{"ID":"FBgn0016126","EGF_Stimulus":"1.17"},{"ID":"FBgn0036262","EGF_Stimulus":"0.76"},{"ID":"FBgn0030347","EGF_Stimulus":"0.62"},{"ID":"FBgn0027793","EGF_Stimulus":"-0.58"},{"ID":"FBgn0030928","EGF_Stimulus":"1.03"},{"ID":"FBgn0029898","EGF_Stimulus":"0.65"},{"ID":"FBgn0010894","EGF_Stimulus":"0.66"},{"ID":"FBgn0030460","EGF_Stimulus":"-1.11"},{"ID":"FBgn0035003","EGF_Stimulus":"-0.32"},{"ID":"FBgn0022338","EGF_Stimulus":"-1.14"},{"ID":"FBgn0030271","EGF_Stimulus":"0.62"},{"ID":"FBgn0038246","EGF_Stimulus":"1.04"},{"ID":"FBgn0051706","EGF_Stimulus":"0.81"},{"ID":"FBgn0051437","EGF_Stimulus":"1.59"},{"ID":"FBgn0086657","EGF_Stimulus":"0.99"},{"ID":"FBgn0032870","EGF_Stimulus":"-1.54"},{"ID":"FBgn0035482","EGF_Stimulus":"0.93"},{"ID":"FBgn0260634","EGF_Stimulus":"-1.17"},{"ID":"FBgn0035231","EGF_Stimulus":"0.6"},{"ID":"FBgn0051869","EGF_Stimulus":"1.15"},{"ID":"FBgn0036804","EGF_Stimulus":"-0.62"},{"ID":"FBgn0015477","EGF_Stimulus":"-0.35"},{"ID":"FBgn0010341","EGF_Stimulus":"-0.57"},{"ID":"FBgn0031856","EGF_Stimulus":"-0.57"},{"ID":"FBgn0030786","EGF_Stimulus":"-0.37"},{"ID":"FBgn0085380","EGF_Stimulus":"0.67"},{"ID":"FBgn0033440","EGF_Stimulus":"-1.17"},{"ID":"FBgn0039938","EGF_Stimulus":"0.93"},{"ID":"FBgn0029979","EGF_Stimulus":"1.07"},{"ID":"FBgn0040236","EGF_Stimulus":"0.71"},{"ID":"FBgn0028436","EGF_Stimulus":"-0.5"},{"ID":"FBgn0020378","EGF_Stimulus":"-0.44"},{"ID":"FBgn0032407","EGF_Stimulus":"-0.37"},{"ID":"FBgn0033875","EGF_Stimulus":"0.44"},{"ID":"FBgn0011668","EGF_Stimulus":"-0.22"},{"ID":"FBgn0014006","EGF_Stimulus":"1.11"},{"ID":"FBgn0026060","EGF_Stimulus":"0.65"},{"ID":"FBgn0040284","EGF_Stimulus":"2.98"},{"ID":"FBgn0037163","EGF_Stimulus":"0.28"},{"ID":"FBgn0053108","EGF_Stimulus":"-1.3"},{"ID":"FBgn0028663","EGF_Stimulus":"0.73"},{"ID":"FBgn0035153","EGF_Stimulus":"-2.07"},{"ID":"FBgn0035861","EGF_Stimulus":"-0.66"},{"ID":"FBgn0031707","EGF_Stimulus":"1.2"},{"ID":"FBgn0053696","EGF_Stimulus":"-0.39"},{"ID":"FBgn0015907","EGF_Stimulus":"-1.31"},{"ID":"FBgn0033162","EGF_Stimulus":"-0.35"},{"ID":"FBgn0013272","EGF_Stimulus":"0.95"},{"ID":"FBgn0015527","EGF_Stimulus":"-0.43"},{"ID":"FBgn0028916","EGF_Stimulus":"0.8"},{"ID":"FBgn0029914","EGF_Stimulus":"-1.13"},{"ID":"FBgn0027885","EGF_Stimulus":"-1.57"},{"ID":"FBgn0037798","EGF_Stimulus":"-0.66"},{"ID":"FBgn0034933","EGF_Stimulus":"0.75"},{"ID":"FBgn0034567","EGF_Stimulus":"1.13"},{"ID":"FBgn0024807","EGF_Stimulus":"0.55"},{"ID":"FBgn0033538","EGF_Stimulus":"0.48"},{"ID":"FBgn0038596","EGF_Stimulus":"0.88"},{"ID":"FBgn0013733","EGF_Stimulus":"-1.01"},{"ID":"FBgn0038660","EGF_Stimulus":"0.88"},{"ID":"FBgn0004169","EGF_Stimulus":"-1.15"},{"ID":"FBgn0036597","EGF_Stimulus":"-1.27"},{"ID":"FBgn0011676","EGF_Stimulus":"0.29"},{"ID":"FBgn0243514","EGF_Stimulus":"1.2"},{"ID":"FBgn0024841","EGF_Stimulus":"2.21"},{"ID":"FBgn0031749","EGF_Stimulus":"-0.65"},{"ID":"FBgn0035035","EGF_Stimulus":"1.25"},{"ID":"FBgn0030884","EGF_Stimulus":"0.84"},{"ID":"FBgn0016797","EGF_Stimulus":"-1.82"},{"ID":"FBgn0040827","EGF_Stimulus":"0.24"},{"ID":"FBgn0031335","EGF_Stimulus":"0.95"},{"ID":"FBgn0052647","EGF_Stimulus":"0.43"},{"ID":"FBgn0051740","EGF_Stimulus":"1.37"},{"ID":"FBgn0051658","EGF_Stimulus":"-0.93"},{"ID":"FBgn0011703","EGF_Stimulus":"-0.59"},{"ID":"FBgn0032419","EGF_Stimulus":"-0.58"},{"ID":"FBgn0000543","EGF_Stimulus":"0.91"},{"ID":"FBgn0033089","EGF_Stimulus":"-1.66"},{"ID":"FBgn0052240","EGF_Stimulus":"0.37"},{"ID":"FBgn0261885","EGF_Stimulus":"2.13"},{"ID":"FBgn0033423","EGF_Stimulus":"-0.26"},{"ID":"FBgn0029006","EGF_Stimulus":"-0.54"},{"ID":"FBgn0261064","EGF_Stimulus":"0.87"},{"ID":"FBgn0036996","EGF_Stimulus":"1.4"},{"ID":"FBgn0036441","EGF_Stimulus":"-1.26"},{"ID":"FBgn0033065","EGF_Stimulus":"1.13"},{"ID":"FBgn0032845","EGF_Stimulus":"-0.42"},{"ID":"FBgn0042101","EGF_Stimulus":"0.78"},{"ID":"FBgn0054023","EGF_Stimulus":"-1.17"},{"ID":"FBgn0030717","EGF_Stimulus":"1.02"},{"ID":"FBgn0000394","EGF_Stimulus":"0.39"},{"ID":"FBgn0039740","EGF_Stimulus":"0.8"},{"ID":"FBgn0030451","EGF_Stimulus":"-0.63"},{"ID":"FBgn0038463","EGF_Stimulus":"-0.53"},{"ID":"FBgn0030330","EGF_Stimulus":"-1.55"},{"ID":"FBgn0053467","EGF_Stimulus":"-0.49"},{"ID":"FBgn0045485","EGF_Stimulus":"0.31"},{"ID":"FBgn0030646","EGF_Stimulus":"-1.48"},{"ID":"FBgn0036022","EGF_Stimulus":"1.08"},{"ID":"FBgn0052266","EGF_Stimulus":"0.74"},{"ID":"FBgn0040775","EGF_Stimulus":"-1.43"},{"ID":"FBgn0039299","EGF_Stimulus":"-1.19"},{"ID":"FBgn0050412","EGF_Stimulus":"-0.55"},{"ID":"FBgn0004870","EGF_Stimulus":"-0.9"},{"ID":"FBgn0031623","EGF_Stimulus":"-1"},{"ID":"FBgn0034527","EGF_Stimulus":"0.17"},{"ID":"FBgn0004435","EGF_Stimulus":"1.57"},{"ID":"FBgn0050438","EGF_Stimulus":"-1.24"},{"ID":"FBgn0039617","EGF_Stimulus":"0.39"},{"ID":"FBgn0036887","EGF_Stimulus":"1.09"},{"ID":"FBgn0032603","EGF_Stimulus":"-0.5"},{"ID":"FBgn0033599","EGF_Stimulus":"0.73"},{"ID":"FBgn0031879","EGF_Stimulus":"1.24"},{"ID":"FBgn0034136","EGF_Stimulus":"-0.54"},{"ID":"FBgn0035415","EGF_Stimulus":"1.08"},{"ID":"FBgn0261383","EGF_Stimulus":"-2.29"},{"ID":"FBgn0023000","EGF_Stimulus":"0.42"},{"ID":"FBgn0039305","EGF_Stimulus":"1.08"},{"ID":"FBgn0034200","EGF_Stimulus":"1.68"},{"ID":"FBgn0019938","EGF_Stimulus":"0.97"},{"ID":"FBgn0020245","EGF_Stimulus":"1.04"},{"ID":"FBgn0035851","EGF_Stimulus":"-0.14"},{"ID":"FBgn0031923","EGF_Stimulus":"1.05"},{"ID":"FBgn0030921","EGF_Stimulus":"0.83"},{"ID":"FBgn0033815","EGF_Stimulus":"-1.33"},{"ID":"FBgn0086683","EGF_Stimulus":"0.28"},{"ID":"FBgn0026760","EGF_Stimulus":"1.06"},{"ID":"FBgn0038981","EGF_Stimulus":"0.81"},{"ID":"FBgn0261624","EGF_Stimulus":"-0.41"},{"ID":"FBgn0020660","EGF_Stimulus":"-0.27"},{"ID":"FBgn0002905","EGF_Stimulus":"0.86"},{"ID":"FBgn0004619","EGF_Stimulus":"0.37"},{"ID":"FBgn0034512","EGF_Stimulus":"0.46"},{"ID":"FBgn0036364","EGF_Stimulus":"1.26"},{"ID":"FBgn0038744","EGF_Stimulus":"0.31"},{"ID":"FBgn0085195","EGF_Stimulus":"-1.13"},{"ID":"FBgn0032224","EGF_Stimulus":"1.21"},{"ID":"FBgn0034418","EGF_Stimulus":"2.01"},{"ID":"FBgn0037824","EGF_Stimulus":"-0.14"},{"ID":"FBgn0025391","EGF_Stimulus":"0.76"},{"ID":"FBgn0050379","EGF_Stimulus":"0.54"},{"ID":"FBgn0036518","EGF_Stimulus":"3.35"},{"ID":"FBgn0037972","EGF_Stimulus":"1.45"},{"ID":"FBgn0038857","EGF_Stimulus":"0.42"},{"ID":"FBgn0032700","EGF_Stimulus":"0.64"},{"ID":"FBgn0034723","EGF_Stimulus":"0.53"},{"ID":"FBgn0053117","EGF_Stimulus":"0.3"},{"ID":"FBgn0002791","EGF_Stimulus":"-1.01"},{"ID":"FBgn0025839","EGF_Stimulus":"1.16"},{"ID":"FBgn0037853","EGF_Stimulus":"0.84"},{"ID":"FBgn0035934","EGF_Stimulus":"0.67"},{"ID":"FBgn0040660","EGF_Stimulus":"-1.85"},{"ID":"FBgn0010292","EGF_Stimulus":"0.93"},{"ID":"FBgn0031980","EGF_Stimulus":"-3.31"},{"ID":"FBgn0030610","EGF_Stimulus":"-0.9"},{"ID":"FBgn0035398","EGF_Stimulus":"0.8"},{"ID":"FBgn0003041","EGF_Stimulus":"-0.86"},{"ID":"FBgn0050009","EGF_Stimulus":"-0.36"},{"ID":"FBgn0036236","EGF_Stimulus":"0.95"},{"ID":"FBgn0051097","EGF_Stimulus":"-0.3"},{"ID":"FBgn0052320","EGF_Stimulus":"0.94"},{"ID":"FBgn0002633","EGF_Stimulus":"0.51"},{"ID":"FBgn0039846","EGF_Stimulus":"0.34"},{"ID":"FBgn0051928","EGF_Stimulus":"0.66"},{"ID":"FBgn0034242","EGF_Stimulus":"0.78"},{"ID":"FBgn0011592","EGF_Stimulus":"1.04"},{"ID":"FBgn0036224","EGF_Stimulus":"-0.08"},{"ID":"FBgn0031360","EGF_Stimulus":"0.98"},{"ID":"FBgn0030606","EGF_Stimulus":"-1.56"},{"ID":"FBgn0042187","EGF_Stimulus":"0.08"},{"ID":"FBgn0038295","EGF_Stimulus":"0.33"},{"ID":"FBgn0015562","EGF_Stimulus":"0.38"},{"ID":"FBgn0034120","EGF_Stimulus":"-0.37"},{"ID":"FBgn0026379","EGF_Stimulus":"0.24"},{"ID":"FBgn0004397","EGF_Stimulus":"0.3"},{"ID":"FBgn0052232","EGF_Stimulus":"0.67"},{"ID":"FBgn0001189","EGF_Stimulus":"0.74"},{"ID":"FBgn0034011","EGF_Stimulus":"-1.47"},{"ID":"FBgn0021776","EGF_Stimulus":"0.95"},{"ID":"FBgn0039136","EGF_Stimulus":"0.76"},{"ID":"FBgn0085283","EGF_Stimulus":"-0.57"},{"ID":"FBgn0029826","EGF_Stimulus":"0.56"},{"ID":"FBgn0004237","EGF_Stimulus":"-1.24"},{"ID":"FBgn0037376","EGF_Stimulus":"0.28"},{"ID":"FBgn0000121","EGF_Stimulus":"0.08"},{"ID":"FBgn0031301","EGF_Stimulus":"0.38"},{"ID":"FBgn0030292","EGF_Stimulus":"-0.25"},{"ID":"FBgn0032899","EGF_Stimulus":"0.32"},{"ID":"FBgn0052383","EGF_Stimulus":"-0.34"},{"ID":"FBgn0040799","EGF_Stimulus":"-1.56"},{"ID":"FBgn0038641","EGF_Stimulus":"-0.19"},{"ID":"FBgn0031600","EGF_Stimulus":"-0.49"},{"ID":"FBgn0014455","EGF_Stimulus":"0.6"},{"ID":"FBgn0036070","EGF_Stimulus":"0.55"},{"ID":"FBgn0020633","EGF_Stimulus":"-0.59"},{"ID":"FBgn0030170","EGF_Stimulus":"0.67"},{"ID":"FBgn0035205","EGF_Stimulus":"0.56"},{"ID":"FBgn0038160","EGF_Stimulus":"0.26"},{"ID":"FBgn0083991","EGF_Stimulus":"-1.33"},{"ID":"FBgn0038190","EGF_Stimulus":"0.97"},{"ID":"FBgn0003386","EGF_Stimulus":"1.4"},{"ID":"FBgn0026876","EGF_Stimulus":"1.41"},{"ID":"FBgn0031596","EGF_Stimulus":"-0.83"},{"ID":"FBgn0037789","EGF_Stimulus":"-1.08"},{"ID":"FBgn0031546","EGF_Stimulus":"0.17"},{"ID":"FBgn0039385","EGF_Stimulus":"1.14"},{"ID":"FBgn0043471","EGF_Stimulus":"-0.53"},{"ID":"FBgn0032935","EGF_Stimulus":"-0.78"},{"ID":"FBgn0032724","EGF_Stimulus":"0.74"},{"ID":"FBgn0034856","EGF_Stimulus":"0.47"},{"ID":"FBgn0004593","EGF_Stimulus":"-0.9"},{"ID":"FBgn0030899","EGF_Stimulus":"0.87"},{"ID":"FBgn0000319","EGF_Stimulus":"2.2"},{"ID":"FBgn0033480","EGF_Stimulus":"0.56"},{"ID":"FBgn0030385","EGF_Stimulus":"-0.15"},{"ID":"FBgn0086350","EGF_Stimulus":"1.97"},{"ID":"FBgn0037305","EGF_Stimulus":"0.82"},{"ID":"FBgn0051871","EGF_Stimulus":"-1.28"},{"ID":"FBgn0032172","EGF_Stimulus":"0.34"},{"ID":"FBgn0040324","EGF_Stimulus":"-0.16"},{"ID":"FBgn0037801","EGF_Stimulus":"0.36"},{"ID":"FBgn0034060","EGF_Stimulus":"-0.28"},{"ID":"FBgn0010309","EGF_Stimulus":"1.05"},{"ID":"FBgn0031374","EGF_Stimulus":"-0.75"},{"ID":"FBgn0039255","EGF_Stimulus":"-0.41"},{"ID":"FBgn0032312","EGF_Stimulus":"0.85"},{"ID":"FBgn0003015","EGF_Stimulus":"2.17"},{"ID":"FBgn0003435","EGF_Stimulus":"-0.56"},{"ID":"FBgn0035089","EGF_Stimulus":"1"},{"ID":"FBgn0000536","EGF_Stimulus":"1.83"},{"ID":"FBgn0003159","EGF_Stimulus":"0.37"},{"ID":"FBgn0039712","EGF_Stimulus":"-0.13"},{"ID":"FBgn0035247","EGF_Stimulus":"-0.39"},{"ID":"FBgn0032067","EGF_Stimulus":"1.15"},{"ID":"FBgn0036480","EGF_Stimulus":"1.39"},{"ID":"FBgn0027546","EGF_Stimulus":"0.57"},{"ID":"FBgn0013674","EGF_Stimulus":"-0.15"},{"ID":"FBgn0030339","EGF_Stimulus":"-0.41"},{"ID":"FBgn0051320","EGF_Stimulus":"0.58"},{"ID":"FBgn0029761","EGF_Stimulus":"1.1"},{"ID":"FBgn0042711","EGF_Stimulus":"-1.12"},{"ID":"FBgn0036656","EGF_Stimulus":"0.81"},{"ID":"FBgn0033363","EGF_Stimulus":"-0.12"},{"ID":"FBgn0030441","EGF_Stimulus":"0.54"},{"ID":"FBgn0011606","EGF_Stimulus":"1.6"},{"ID":"FBgn0030666","EGF_Stimulus":"0.9"},{"ID":"FBgn0085410","EGF_Stimulus":"-0.47"},{"ID":"FBgn0030870","EGF_Stimulus":"1.6"},{"ID":"FBgn0040514","EGF_Stimulus":"1.59"},{"ID":"FBgn0261850","EGF_Stimulus":"-0.6"},{"ID":"FBgn0032253","EGF_Stimulus":"1.12"},{"ID":"FBgn0050147","EGF_Stimulus":"1.27"},{"ID":"FBgn0000413","EGF_Stimulus":"-1.02"},{"ID":"FBgn0038806","EGF_Stimulus":"1.12"},{"ID":"FBgn0259795","EGF_Stimulus":"1.11"},{"ID":"FBgn0034825","EGF_Stimulus":"-1.02"},{"ID":"FBgn0033500","EGF_Stimulus":"0.47"},{"ID":"FBgn0015222","EGF_Stimulus":"-1.18"},{"ID":"FBgn0039395","EGF_Stimulus":"0.81"},{"ID":"FBgn0011715","EGF_Stimulus":"0.38"},{"ID":"FBgn0000261","EGF_Stimulus":"0.82"},{"ID":"FBgn0039459","EGF_Stimulus":"0.08"},{"ID":"FBgn0027087","EGF_Stimulus":"-0.64"},{"ID":"FBgn0005640","EGF_Stimulus":"1.45"},{"ID":"FBgn0033973","EGF_Stimulus":"0.77"},{"ID":"FBgn0051427","EGF_Stimulus":"-1.28"},{"ID":"FBgn0014868","EGF_Stimulus":"0.65"},{"ID":"FBgn0035890","EGF_Stimulus":"1.06"},{"ID":"FBgn0036093","EGF_Stimulus":"0.24"},{"ID":"FBgn0039058","EGF_Stimulus":"-0.06"},{"ID":"FBgn0038250","EGF_Stimulus":"-0.51"},{"ID":"FBgn0033893","EGF_Stimulus":"0.75"},{"ID":"FBgn0010622","EGF_Stimulus":"0.52"},{"ID":"FBgn0031484","EGF_Stimulus":"1.05"},{"ID":"FBgn0030654","EGF_Stimulus":"0.3"},{"ID":"FBgn0025373","EGF_Stimulus":"0.67"},{"ID":"FBgn0031609","EGF_Stimulus":"0.25"},{"ID":"FBgn0259111","EGF_Stimulus":"-1.88"},{"ID":"FBgn0032470","EGF_Stimulus":"-1.35"},{"ID":"FBgn0032337","EGF_Stimulus":"0.95"},{"ID":"FBgn0039622","EGF_Stimulus":"-1.63"},{"ID":"FBgn0033730","EGF_Stimulus":"0.74"},{"ID":"FBgn0033292","EGF_Stimulus":"0.56"},{"ID":"FBgn0003891","EGF_Stimulus":"0.69"},{"ID":"FBgn0026261","EGF_Stimulus":"1.02"},{"ID":"FBgn0086912","EGF_Stimulus":"0.33"},{"ID":"FBgn0039342","EGF_Stimulus":"0.41"},{"ID":"FBgn0035181","EGF_Stimulus":"0.58"},{"ID":"FBgn0039495","EGF_Stimulus":"0.5"},{"ID":"FBgn0031763","EGF_Stimulus":"1.39"},{"ID":"FBgn0053110","EGF_Stimulus":"-0.78"},{"ID":"FBgn0052133","EGF_Stimulus":"1.65"},{"ID":"FBgn0035414","EGF_Stimulus":"0.79"},{"ID":"FBgn0013751","EGF_Stimulus":"2"},{"ID":"FBgn0038123","EGF_Stimulus":"0.84"},{"ID":"FBgn0037829","EGF_Stimulus":"-0.45"},{"ID":"FBgn0011745","EGF_Stimulus":"0.59"},{"ID":"FBgn0037107","EGF_Stimulus":"1.49"},{"ID":"FBgn0036146","EGF_Stimulus":"0.89"},{"ID":"FBgn0052574","EGF_Stimulus":"-0.4"},{"ID":"FBgn0011207","EGF_Stimulus":"0.88"},{"ID":"FBgn0004360","EGF_Stimulus":"-1.06"},{"ID":"FBgn0036117","EGF_Stimulus":"0.62"},{"ID":"FBgn0032705","EGF_Stimulus":"0.68"},{"ID":"FBgn0010052","EGF_Stimulus":"-0.13"},{"ID":"FBgn0035533","EGF_Stimulus":"1.46"},{"ID":"FBgn0000639","EGF_Stimulus":"-0.69"},{"ID":"FBgn0034489","EGF_Stimulus":"-1.13"},{"ID":"FBgn0030737","EGF_Stimulus":"-0.15"},{"ID":"FBgn0052071","EGF_Stimulus":"1.93"},{"ID":"FBgn0036606","EGF_Stimulus":"1.13"},{"ID":"FBgn0052699","EGF_Stimulus":"1.54"},{"ID":"FBgn0027528","EGF_Stimulus":"0.63"},{"ID":"FBgn0034988","EGF_Stimulus":"-0.75"},{"ID":"FBgn0035077","EGF_Stimulus":"0.73"},{"ID":"FBgn0040754","EGF_Stimulus":"-0.15"},{"ID":"FBgn0030844","EGF_Stimulus":"0.68"},{"ID":"FBgn0037460","EGF_Stimulus":"-0.81"},{"ID":"FBgn0003517","EGF_Stimulus":"-2.88"},{"ID":"FBgn0016756","EGF_Stimulus":"0.8"},{"ID":"FBgn0085432","EGF_Stimulus":"-0.86"},{"ID":"FBgn0001612","EGF_Stimulus":"0.99"},{"ID":"FBgn0001138","EGF_Stimulus":"-0.61"},{"ID":"FBgn0029816","EGF_Stimulus":"0.12"},{"ID":"FBgn0001258","EGF_Stimulus":"0.55"},{"ID":"FBgn0052301","EGF_Stimulus":"-0.39"},{"ID":"FBgn0037612","EGF_Stimulus":"-1.46"},{"ID":"FBgn0051077","EGF_Stimulus":"1.09"},{"ID":"FBgn0043530","EGF_Stimulus":"0.6"},{"ID":"FBgn0037938","EGF_Stimulus":"0.87"},{"ID":"FBgn0031585","EGF_Stimulus":"0.57"},{"ID":"FBgn0030699","EGF_Stimulus":"0.77"},{"ID":"FBgn0033826","EGF_Stimulus":"1.56"},{"ID":"FBgn0028518","EGF_Stimulus":"0.73"},{"ID":"FBgn0011289","EGF_Stimulus":"1.24"},{"ID":"FBgn0033929","EGF_Stimulus":"-0.33"},{"ID":"FBgn0031731","EGF_Stimulus":"-1.32"},{"ID":"FBgn0051145","EGF_Stimulus":"-1.2"},{"ID":"FBgn0004623","EGF_Stimulus":"1.47"},{"ID":"FBgn0050372","EGF_Stimulus":"0.22"},{"ID":"FBgn0032069","EGF_Stimulus":"-0.55"},{"ID":"FBgn0051760","EGF_Stimulus":"-0.68"},{"ID":"FBgn0037672","EGF_Stimulus":"0.41"},{"ID":"FBgn0013749","EGF_Stimulus":"-2.32"},{"ID":"FBgn0036110","EGF_Stimulus":"0.14"},{"ID":"FBgn0029755","EGF_Stimulus":"1.12"},{"ID":"FBgn0039559","EGF_Stimulus":"-0.6"},{"ID":"FBgn0004597","EGF_Stimulus":"0.72"},{"ID":"FBgn0052026","EGF_Stimulus":"-0.67"},{"ID":"FBgn0031776","EGF_Stimulus":"1.06"},{"ID":"FBgn0036198","EGF_Stimulus":"-0.62"},{"ID":"FBgn0013305","EGF_Stimulus":"0.45"},{"ID":"FBgn0013469","EGF_Stimulus":"-1.14"},{"ID":"FBgn0260860","EGF_Stimulus":"0.24"},{"ID":"FBgn0035825","EGF_Stimulus":"0.1"},{"ID":"FBgn0030012","EGF_Stimulus":"-1.12"},{"ID":"FBgn0085434","EGF_Stimulus":"0.97"},{"ID":"FBgn0016032","EGF_Stimulus":"0.24"},{"ID":"FBgn0034904","EGF_Stimulus":"-0.88"},{"ID":"FBgn0038268","EGF_Stimulus":"-0.68"},{"ID":"FBgn0038968","EGF_Stimulus":"0.55"},{"ID":"FBgn0033633","EGF_Stimulus":"0.31"},{"ID":"FBgn0010220","EGF_Stimulus":"-0.87"},{"ID":"FBgn0031675","EGF_Stimulus":"1.65"},{"ID":"FBgn0051523","EGF_Stimulus":"0.87"},{"ID":"FBgn0260940","EGF_Stimulus":"0.54"},{"ID":"FBgn0052304","EGF_Stimulus":"-0.14"},{"ID":"FBgn0053301","EGF_Stimulus":"1.11"},{"ID":"FBgn0260660","EGF_Stimulus":"1.44"},{"ID":"FBgn0261283","EGF_Stimulus":"-1.83"},{"ID":"FBgn0034950","EGF_Stimulus":"0.12"},{"ID":"FBgn0003479","EGF_Stimulus":"-0.65"},{"ID":"FBgn0035464","EGF_Stimulus":"0.89"},{"ID":"FBgn0039349","EGF_Stimulus":"0.3"},{"ID":"FBgn0040786","EGF_Stimulus":"0.5"},{"ID":"FBgn0003885","EGF_Stimulus":"-1.25"},{"ID":"FBgn0039804","EGF_Stimulus":"1.46"},{"ID":"FBgn0259714","EGF_Stimulus":"1.44"},{"ID":"FBgn0083951","EGF_Stimulus":"-0.55"},{"ID":"FBgn0015025","EGF_Stimulus":"-0.86"},{"ID":"FBgn0034670","EGF_Stimulus":"0.27"},{"ID":"FBgn0086384","EGF_Stimulus":"1.22"},{"ID":"FBgn0037467","EGF_Stimulus":"-0.19"},{"ID":"FBgn0004914","EGF_Stimulus":"1.69"},{"ID":"FBgn0021814","EGF_Stimulus":"-1.33"},{"ID":"FBgn0053513","EGF_Stimulus":"0.74"},{"ID":"FBgn0044048","EGF_Stimulus":"0.23"},{"ID":"FBgn0004133","EGF_Stimulus":"1.1"},{"ID":"FBgn0003300","EGF_Stimulus":"-1.05"},{"ID":"FBgn0050101","EGF_Stimulus":"0.68"},{"ID":"FBgn0032549","EGF_Stimulus":"1.38"},{"ID":"FBgn0052529","EGF_Stimulus":"0.44"},{"ID":"FBgn0035917","EGF_Stimulus":"1.17"},{"ID":"FBgn0039809","EGF_Stimulus":"-0.55"},{"ID":"FBgn0039645","EGF_Stimulus":"-2"},{"ID":"FBgn0024891","EGF_Stimulus":"-0.83"},{"ID":"FBgn0037020","EGF_Stimulus":"-0.09"},{"ID":"FBgn0030524","EGF_Stimulus":"-0.88"},{"ID":"FBgn0036046","EGF_Stimulus":"2"},{"ID":"FBgn0039719","EGF_Stimulus":"0.34"},{"ID":"FBgn0031449","EGF_Stimulus":"-0.73"},{"ID":"FBgn0036915","EGF_Stimulus":"2.02"},{"ID":"FBgn0039006","EGF_Stimulus":"0.69"},{"ID":"FBgn0039656","EGF_Stimulus":"2.06"},{"ID":"FBgn0011276","EGF_Stimulus":"0.82"},{"ID":"FBgn0026084","EGF_Stimulus":"0.74"},{"ID":"FBgn0002629","EGF_Stimulus":"1.27"},{"ID":"FBgn0034103","EGF_Stimulus":"-0.7"},{"ID":"FBgn0033578","EGF_Stimulus":"1.25"},{"ID":"FBgn0052532","EGF_Stimulus":"0.84"},{"ID":"FBgn0033863","EGF_Stimulus":"0.26"},{"ID":"FBgn0031174","EGF_Stimulus":"-0.79"},{"ID":"FBgn0033507","EGF_Stimulus":"-1.95"},{"ID":"FBgn0000140","EGF_Stimulus":"-0.55"},{"ID":"FBgn0041249","EGF_Stimulus":"0.99"},{"ID":"FBgn0015621","EGF_Stimulus":"-0.91"},{"ID":"FBgn0034237","EGF_Stimulus":"-3.6"},{"ID":"FBgn0032512","EGF_Stimulus":"-1.26"},{"ID":"FBgn0027584","EGF_Stimulus":"0.93"},{"ID":"FBgn0003651","EGF_Stimulus":"1.2"},{"ID":"FBgn0037617","EGF_Stimulus":"0.7"},{"ID":"FBgn0052476","EGF_Stimulus":"-0.69"},{"ID":"FBgn0052023","EGF_Stimulus":"-0.34"},{"ID":"FBgn0025378","EGF_Stimulus":"0.4"},{"ID":"FBgn0035294","EGF_Stimulus":"0.42"},{"ID":"FBgn0026378","EGF_Stimulus":"-0.99"},{"ID":"FBgn0039638","EGF_Stimulus":"-0.56"},{"ID":"FBgn0022987","EGF_Stimulus":"0.59"},{"ID":"FBgn0041624","EGF_Stimulus":"-0.39"},{"ID":"FBgn0034957","EGF_Stimulus":"-1.11"},{"ID":"FBgn0035421","EGF_Stimulus":"0.59"},{"ID":"FBgn0030566","EGF_Stimulus":"-0.95"},{"ID":"FBgn0050385","EGF_Stimulus":"-0.96"},{"ID":"FBgn0028476","EGF_Stimulus":"-0.22"},{"ID":"FBgn0039790","EGF_Stimulus":"-1.13"},{"ID":"FBgn0036545","EGF_Stimulus":"0.87"},{"ID":"FBgn0027617","EGF_Stimulus":"1.51"},{"ID":"FBgn0036729","EGF_Stimulus":"0.74"},{"ID":"FBgn0034636","EGF_Stimulus":"0.18"},{"ID":"FBgn0034645","EGF_Stimulus":"0.49"},{"ID":"FBgn0036868","EGF_Stimulus":"-0.48"},{"ID":"FBgn0029763","EGF_Stimulus":"-0.45"},{"ID":"FBgn0037432","EGF_Stimulus":"0.88"},{"ID":"FBgn0027526","EGF_Stimulus":"-0.69"},{"ID":"FBgn0030025","EGF_Stimulus":"0.49"},{"ID":"FBgn0038247","EGF_Stimulus":"0.21"},{"ID":"FBgn0036817","EGF_Stimulus":"1.74"},{"ID":"FBgn0035865","EGF_Stimulus":"1.01"},{"ID":"FBgn0039754","EGF_Stimulus":"-0.91"},{"ID":"FBgn0051088","EGF_Stimulus":"0.69"},{"ID":"FBgn0035164","EGF_Stimulus":"0.85"},{"ID":"FBgn0034141","EGF_Stimulus":"1.16"},{"ID":"FBgn0034172","EGF_Stimulus":"-1.13"},{"ID":"FBgn0032476","EGF_Stimulus":"0.11"},{"ID":"FBgn0025827","EGF_Stimulus":"0.36"},{"ID":"FBgn0034442","EGF_Stimulus":"0.63"},{"ID":"FBgn0050394","EGF_Stimulus":"1.05"},{"ID":"FBgn0026396","EGF_Stimulus":"-0.13"},{"ID":"FBgn0034909","EGF_Stimulus":"0.55"},{"ID":"FBgn0010786","EGF_Stimulus":"0.91"},{"ID":"FBgn0037162","EGF_Stimulus":"1.22"},{"ID":"FBgn0061492","EGF_Stimulus":"-0.83"},{"ID":"FBgn0034664","EGF_Stimulus":"0.74"},{"ID":"FBgn0030457","EGF_Stimulus":"-0.64"},{"ID":"FBgn0000182","EGF_Stimulus":"-0.77"},{"ID":"FBgn0030983","EGF_Stimulus":"0.38"},{"ID":"FBgn0030556","EGF_Stimulus":"-0.61"},{"ID":"FBgn0050018","EGF_Stimulus":"-0.44"},{"ID":"FBgn0039029","EGF_Stimulus":"-0.53"},{"ID":"FBgn0031858","EGF_Stimulus":"0.38"},{"ID":"FBgn0027603","EGF_Stimulus":"-1.77"},{"ID":"FBgn0033051","EGF_Stimulus":"-0.39"},{"ID":"FBgn0030512","EGF_Stimulus":"-0.84"},{"ID":"FBgn0039300","EGF_Stimulus":"-2.67"},{"ID":"FBgn0052202","EGF_Stimulus":"-2.22"},{"ID":"FBgn0031820","EGF_Stimulus":"0.22"},{"ID":"FBgn0040658","EGF_Stimulus":"-1.77"},{"ID":"FBgn0034858","EGF_Stimulus":"-1.16"},{"ID":"FBgn0026196","EGF_Stimulus":"-1.32"},{"ID":"FBgn0051673","EGF_Stimulus":"-0.75"},{"ID":"FBgn0035359","EGF_Stimulus":"-0.51"},{"ID":"FBgn0046301","EGF_Stimulus":"0.88"},{"ID":"FBgn0034774","EGF_Stimulus":"0.66"},{"ID":"FBgn0033160","EGF_Stimulus":"-0.86"},{"ID":"FBgn0037517","EGF_Stimulus":"-0.76"},{"ID":"FBgn0041233","EGF_Stimulus":"0.56"},{"ID":"FBgn0030437","EGF_Stimulus":"0.49"},{"ID":"FBgn0041723","EGF_Stimulus":"0.6"},{"ID":"FBgn0031037","EGF_Stimulus":"0.54"},{"ID":"FBgn0034869","EGF_Stimulus":"1.22"},{"ID":"FBgn0033516","EGF_Stimulus":"-0.23"},{"ID":"FBgn0261787","EGF_Stimulus":"0.97"},{"ID":"FBgn0000547","EGF_Stimulus":"1.32"},{"ID":"FBgn0024188","EGF_Stimulus":"-0.58"},{"ID":"FBgn0036298","EGF_Stimulus":"-0.72"},{"ID":"FBgn0040906","EGF_Stimulus":"0.87"},{"ID":"FBgn0033294","EGF_Stimulus":"-0.91"},{"ID":"FBgn0036938","EGF_Stimulus":"-0.94"},{"ID":"FBgn0035949","EGF_Stimulus":"0.88"},{"ID":"FBgn0020617","EGF_Stimulus":"-0.9"},{"ID":"FBgn0037454","EGF_Stimulus":"0.68"},{"ID":"FBgn0037174","EGF_Stimulus":"-1.17"},{"ID":"FBgn0041096","EGF_Stimulus":"0.52"},{"ID":"FBgn0261363","EGF_Stimulus":"0.54"},{"ID":"FBgn0003034","EGF_Stimulus":"0.67"},{"ID":"FBgn0035976","EGF_Stimulus":"0.76"},{"ID":"FBgn0030900","EGF_Stimulus":"1.52"},{"ID":"FBgn0041164","EGF_Stimulus":"-0.45"},{"ID":"FBgn0034086","EGF_Stimulus":"0.43"},{"ID":"FBgn0028494","EGF_Stimulus":"1.19"},{"ID":"FBgn0004556","EGF_Stimulus":"0.94"},{"ID":"FBgn0051776","EGF_Stimulus":"0.4"},{"ID":"FBgn0030880","EGF_Stimulus":"-0.54"},{"ID":"FBgn0033312","EGF_Stimulus":"-0.55"},{"ID":"FBgn0034837","EGF_Stimulus":"0.27"},{"ID":"FBgn0038829","EGF_Stimulus":"0.84"},{"ID":"FBgn0015320","EGF_Stimulus":"0.47"},{"ID":"FBgn0036831","EGF_Stimulus":"0.71"},{"ID":"FBgn0053099","EGF_Stimulus":"-0.16"},{"ID":"FBgn0036416","EGF_Stimulus":"-0.39"},{"ID":"FBgn0035737","EGF_Stimulus":"-0.23"},{"ID":"FBgn0026316","EGF_Stimulus":"1.05"},{"ID":"FBgn0261873","EGF_Stimulus":"1.16"},{"ID":"FBgn0029715","EGF_Stimulus":"1.27"},{"ID":"FBgn0050493","EGF_Stimulus":"1.58"},{"ID":"FBgn0028704","EGF_Stimulus":"0.64"},{"ID":"FBgn0031143","EGF_Stimulus":"0.89"},{"ID":"FBgn0034720","EGF_Stimulus":"-0.63"},{"ID":"FBgn0035519","EGF_Stimulus":"0.84"},{"ID":"FBgn0003701","EGF_Stimulus":"-2.66"},{"ID":"FBgn0031317","EGF_Stimulus":"0.36"},{"ID":"FBgn0030788","EGF_Stimulus":"1.51"},{"ID":"FBgn0039200","EGF_Stimulus":"0.39"},{"ID":"FBgn0033214","EGF_Stimulus":"1.07"},{"ID":"FBgn0015393","EGF_Stimulus":"-4.05"},{"ID":"FBgn0030215","EGF_Stimulus":"0.27"},{"ID":"FBgn0022069","EGF_Stimulus":"-2.58"},{"ID":"FBgn0029113","EGF_Stimulus":"0.34"},{"ID":"FBgn0032341","EGF_Stimulus":"-0.69"},{"ID":"FBgn0031090","EGF_Stimulus":"-1.62"},{"ID":"FBgn0037766","EGF_Stimulus":"1.27"},{"ID":"FBgn0039114","EGF_Stimulus":"-0.45"},{"ID":"FBgn0032752","EGF_Stimulus":"-1.08"},{"ID":"FBgn0034725","EGF_Stimulus":"1.03"},{"ID":"FBgn0040253","EGF_Stimulus":"0.84"},{"ID":"FBgn0033031","EGF_Stimulus":"-0.94"},{"ID":"FBgn0028893","EGF_Stimulus":"0.52"},{"ID":"FBgn0000492","EGF_Stimulus":"-4.23"},{"ID":"FBgn0031021","EGF_Stimulus":"-0.41"},{"ID":"FBgn0085425","EGF_Stimulus":"-2.59"},{"ID":"FBgn0025393","EGF_Stimulus":"2.15"},{"ID":"FBgn0033918","EGF_Stimulus":"1.32"},{"ID":"FBgn0037352","EGF_Stimulus":"0.34"},{"ID":"FBgn0028419","EGF_Stimulus":"1.69"},{"ID":"FBgn0036153","EGF_Stimulus":"0.82"},{"ID":"FBgn0035050","EGF_Stimulus":"1.2"},{"ID":"FBgn0035608","EGF_Stimulus":"0.88"},{"ID":"FBgn0028688","EGF_Stimulus":"-2.78"},{"ID":"FBgn0040801","EGF_Stimulus":"0.3"},{"ID":"FBgn0033554","EGF_Stimulus":"0.87"},{"ID":"FBgn0050288","EGF_Stimulus":"-0.71"},{"ID":"FBgn0033155","EGF_Stimulus":"-0.49"},{"ID":"FBgn0035848","EGF_Stimulus":"-1.96"},{"ID":"FBgn0001148","EGF_Stimulus":"0.95"},{"ID":"FBgn0047133","EGF_Stimulus":"-1.76"},{"ID":"FBgn0037926","EGF_Stimulus":"1.93"},{"ID":"FBgn0004430","EGF_Stimulus":"0.35"},{"ID":"FBgn0027843","EGF_Stimulus":"0.75"},{"ID":"FBgn0033203","EGF_Stimulus":"-1.16"},{"ID":"FBgn0032873","EGF_Stimulus":"-0.85"},{"ID":"FBgn0038504","EGF_Stimulus":"-2.01"},{"ID":"FBgn0038353","EGF_Stimulus":"-0.43"},{"ID":"FBgn0036684","EGF_Stimulus":"-1.2"},{"ID":"FBgn0033484","EGF_Stimulus":"-0.12"},{"ID":"FBgn0031478","EGF_Stimulus":"0.71"},{"ID":"FBgn0053139","EGF_Stimulus":"1.55"},{"ID":"FBgn0250843","EGF_Stimulus":"-2.02"},{"ID":"FBgn0085443","EGF_Stimulus":"-1.04"},{"ID":"FBgn0053200","EGF_Stimulus":"1.28"},{"ID":"FBgn0085395","EGF_Stimulus":"-1.16"},{"ID":"FBgn0039061","EGF_Stimulus":"-0.79"},{"ID":"FBgn0035691","EGF_Stimulus":"0.8"},{"ID":"FBgn0039015","EGF_Stimulus":"0.26"},{"ID":"FBgn0024273","EGF_Stimulus":"0.21"},{"ID":"FBgn0034979","EGF_Stimulus":"1.03"},{"ID":"FBgn0037994","EGF_Stimulus":"1.18"},{"ID":"FBgn0032824","EGF_Stimulus":"-0.12"},{"ID":"FBgn0032789","EGF_Stimulus":"0.44"},{"ID":"FBgn0039749","EGF_Stimulus":"-1.07"},{"ID":"FBgn0030141","EGF_Stimulus":"1.57"},{"ID":"FBgn0051633","EGF_Stimulus":"-1.24"},{"ID":"FBgn0016054","EGF_Stimulus":"-0.7"},{"ID":"FBgn0020641","EGF_Stimulus":"-0.92"},{"ID":"FBgn0039336","EGF_Stimulus":"1.19"},{"ID":"FBgn0069938","EGF_Stimulus":"0.44"},{"ID":"FBgn0026630","EGF_Stimulus":"0.25"},{"ID":"FBgn0261808","EGF_Stimulus":"1.33"},{"ID":"FBgn0035594","EGF_Stimulus":"-0.32"},{"ID":"FBgn0032246","EGF_Stimulus":"0.85"},{"ID":"FBgn0035789","EGF_Stimulus":"0.94"},{"ID":"FBgn0050356","EGF_Stimulus":"-0.81"},{"ID":"FBgn0003415","EGF_Stimulus":"3.18"},{"ID":"FBgn0032713","EGF_Stimulus":"-0.76"},{"ID":"FBgn0051183","EGF_Stimulus":"1.59"},{"ID":"FBgn0086655","EGF_Stimulus":"0.75"},{"ID":"FBgn0040467","EGF_Stimulus":"0.57"},{"ID":"FBgn0038795","EGF_Stimulus":"0.5"},{"ID":"FBgn0034093","EGF_Stimulus":"-0.36"},{"ID":"FBgn0051220","EGF_Stimulus":"-0.74"},{"ID":"FBgn0031135","EGF_Stimulus":"-0.71"},{"ID":"FBgn0086253","EGF_Stimulus":"0.23"},{"ID":"FBgn0259214","EGF_Stimulus":"-1.99"},{"ID":"FBgn0259704","EGF_Stimulus":"0.45"},{"ID":"FBgn0027343","EGF_Stimulus":"-0.57"},{"ID":"FBgn0036529","EGF_Stimulus":"0.64"},{"ID":"FBgn0035138","EGF_Stimulus":"1.29"},{"ID":"FBgn0026722","EGF_Stimulus":"0.99"},{"ID":"FBgn0033038","EGF_Stimulus":"0.56"},{"ID":"FBgn0010225","EGF_Stimulus":"2.99"},{"ID":"FBgn0029725","EGF_Stimulus":"-1.87"},{"ID":"FBgn0030307","EGF_Stimulus":"0.39"},{"ID":"FBgn0013563","EGF_Stimulus":"-0.87"},{"ID":"FBgn0037708","EGF_Stimulus":"-2.69"},{"ID":"FBgn0054045","EGF_Stimulus":"-0.68"},{"ID":"FBgn0016675","EGF_Stimulus":"0.64"},{"ID":"FBgn0038281","EGF_Stimulus":"-1.78"},{"ID":"FBgn0033734","EGF_Stimulus":"1.23"},{"ID":"FBgn0031537","EGF_Stimulus":"0.54"},{"ID":"FBgn0040064","EGF_Stimulus":"1.02"},{"ID":"FBgn0031883","EGF_Stimulus":"1.6"},{"ID":"FBgn0261802","EGF_Stimulus":"-0.99"},{"ID":"FBgn0037481","EGF_Stimulus":"0.19"},{"ID":"FBgn0036483","EGF_Stimulus":"-0.19"},{"ID":"FBgn0013755","EGF_Stimulus":"1.14"},{"ID":"FBgn0032635","EGF_Stimulus":"-1.66"},{"ID":"FBgn0031323","EGF_Stimulus":"0.67"},{"ID":"FBgn0040339","EGF_Stimulus":"1.68"},{"ID":"FBgn0034479","EGF_Stimulus":"0.15"},{"ID":"FBgn0053329","EGF_Stimulus":"0.55"},{"ID":"FBgn0038575","EGF_Stimulus":"-0.42"},{"ID":"FBgn0027552","EGF_Stimulus":"-0.44"},{"ID":"FBgn0050456","EGF_Stimulus":"1.32"},{"ID":"FBgn0035627","EGF_Stimulus":"-2.14"},{"ID":"FBgn0259977","EGF_Stimulus":"-0.95"},{"ID":"FBgn0046880","EGF_Stimulus":"0.98"},{"ID":"FBgn0261860","EGF_Stimulus":"-0.79"},{"ID":"FBgn0000320","EGF_Stimulus":"0.86"},{"ID":"FBgn0035857","EGF_Stimulus":"1.62"},{"ID":"FBgn0038839","EGF_Stimulus":"-0.64"},{"ID":"FBgn0029501","EGF_Stimulus":"1.29"},{"ID":"FBgn0039288","EGF_Stimulus":"-0.54"},{"ID":"FBgn0029508","EGF_Stimulus":"0.64"},{"ID":"FBgn0031424","EGF_Stimulus":"-1.48"},{"ID":"FBgn0004197","EGF_Stimulus":"0.45"},{"ID":"FBgn0038126","EGF_Stimulus":"0.56"},{"ID":"FBgn0033686","EGF_Stimulus":"0.65"},{"ID":"FBgn0037619","EGF_Stimulus":"0.85"},{"ID":"FBgn0026238","EGF_Stimulus":"-2.59"},{"ID":"FBgn0043575","EGF_Stimulus":"0.85"},{"ID":"FBgn0038197","EGF_Stimulus":"0.95"},{"ID":"FBgn0053556","EGF_Stimulus":"-0.73"},{"ID":"FBgn0050103","EGF_Stimulus":"0.47"},{"ID":"FBgn0037893","EGF_Stimulus":"0.9"},{"ID":"FBgn0085277","EGF_Stimulus":"0.34"},{"ID":"FBgn0001324","EGF_Stimulus":"2.03"},{"ID":"FBgn0051231","EGF_Stimulus":"1.54"},{"ID":"FBgn0011754","EGF_Stimulus":"-0.92"},{"ID":"FBgn0002466","EGF_Stimulus":"0.42"},{"ID":"FBgn0033067","EGF_Stimulus":"-0.19"},{"ID":"FBgn0034504","EGF_Stimulus":"-1.15"},{"ID":"FBgn0032275","EGF_Stimulus":"0.35"},{"ID":"FBgn0033584","EGF_Stimulus":"0.18"},{"ID":"FBgn0259193","EGF_Stimulus":"-0.98"},{"ID":"FBgn0029881","EGF_Stimulus":"0.83"},{"ID":"FBgn0250823","EGF_Stimulus":"1.36"},{"ID":"FBgn0038676","EGF_Stimulus":"0.3"},{"ID":"FBgn0035906","EGF_Stimulus":"0.75"},{"ID":"FBgn0039086","EGF_Stimulus":"0.66"},{"ID":"FBgn0030509","EGF_Stimulus":"-0.3"},{"ID":"FBgn0037102","EGF_Stimulus":"0.15"},{"ID":"FBgn0001180","EGF_Stimulus":"-0.25"},{"ID":"FBgn0000404","EGF_Stimulus":"-2.87"},{"ID":"FBgn0052105","EGF_Stimulus":"0.59"},{"ID":"FBgn0050467","EGF_Stimulus":"0.76"},{"ID":"FBgn0032536","EGF_Stimulus":"-0.92"},{"ID":"FBgn0051698","EGF_Stimulus":"0.38"},{"ID":"FBgn0020388","EGF_Stimulus":"-0.75"},{"ID":"FBgn0031247","EGF_Stimulus":"-1.14"},{"ID":"FBgn0039183","EGF_Stimulus":"-2.22"},{"ID":"FBgn0037877","EGF_Stimulus":"0.5"},{"ID":"FBgn0000500","EGF_Stimulus":"0.69"},{"ID":"FBgn0033872","EGF_Stimulus":"-0.41"},{"ID":"FBgn0001174","EGF_Stimulus":"0.27"},{"ID":"FBgn0039654","EGF_Stimulus":"-2.15"},{"ID":"FBgn0032553","EGF_Stimulus":"2.22"},{"ID":"FBgn0034568","EGF_Stimulus":"0.9"},{"ID":"FBgn0054056","EGF_Stimulus":"0.62"},{"ID":"FBgn0032447","EGF_Stimulus":"-1.08"},{"ID":"FBgn0025724","EGF_Stimulus":"-3.86"},{"ID":"FBgn0032085","EGF_Stimulus":"0.51"},{"ID":"FBgn0041607","EGF_Stimulus":"0.96"},{"ID":"FBgn0031861","EGF_Stimulus":"1.51"},{"ID":"FBgn0051556","EGF_Stimulus":"3.12"},{"ID":"FBgn0029736","EGF_Stimulus":"-0.69"},{"ID":"FBgn0004859","EGF_Stimulus":"0.27"},{"ID":"FBgn0029526","EGF_Stimulus":"1.55"},{"ID":"FBgn0039240","EGF_Stimulus":"1.76"},{"ID":"FBgn0028519","EGF_Stimulus":"-2.45"},{"ID":"FBgn0040375","EGF_Stimulus":"0.64"},{"ID":"FBgn0037931","EGF_Stimulus":"2"},{"ID":"FBgn0033186","EGF_Stimulus":"-1.29"},{"ID":"FBgn0034175","EGF_Stimulus":"0.36"},{"ID":"FBgn0005619","EGF_Stimulus":"-1.21"},{"ID":"FBgn0011836","EGF_Stimulus":"1.22"},{"ID":"FBgn0033028","EGF_Stimulus":"-0.75"},{"ID":"FBgn0052986","EGF_Stimulus":"1.59"},{"ID":"FBgn0037493","EGF_Stimulus":"-0.27"},{"ID":"FBgn0031452","EGF_Stimulus":"0.85"},{"ID":"FBgn0261238","EGF_Stimulus":"-0.07"},{"ID":"FBgn0050095","EGF_Stimulus":"0.37"},{"ID":"FBgn0034821","EGF_Stimulus":"0.92"},{"ID":"FBgn0034580","EGF_Stimulus":"0.61"},{"ID":"FBgn0040030","EGF_Stimulus":"2.48"},{"ID":"FBgn0039626","EGF_Stimulus":"0.47"},{"ID":"FBgn0035452","EGF_Stimulus":"0.03"},{"ID":"FBgn0038946","EGF_Stimulus":"1.82"},{"ID":"FBgn0037421","EGF_Stimulus":"0.45"},{"ID":"FBgn0051453","EGF_Stimulus":"-0.18"},{"ID":"FBgn0085325","EGF_Stimulus":"-0.88"},{"ID":"FBgn0000594","EGF_Stimulus":"-0.19"},{"ID":"FBgn0034939","EGF_Stimulus":"-0.76"},{"ID":"FBgn0039779","EGF_Stimulus":"0.36"},{"ID":"FBgn0051213","EGF_Stimulus":"-0.35"},{"ID":"FBgn0037677","EGF_Stimulus":"-1.14"},{"ID":"FBgn0026175","EGF_Stimulus":"-0.34"},{"ID":"FBgn0033844","EGF_Stimulus":"0.79"},{"ID":"FBgn0027082","EGF_Stimulus":"0.29"},{"ID":"FBgn0033378","EGF_Stimulus":"-0.48"},{"ID":"FBgn0039215","EGF_Stimulus":"1.7"},{"ID":"FBgn0029940","EGF_Stimulus":"0.11"},{"ID":"FBgn0259175","EGF_Stimulus":"1.36"},{"ID":"FBgn0036165","EGF_Stimulus":"0.68"},{"ID":"FBgn0031894","EGF_Stimulus":"0.69"},{"ID":"FBgn0030858","EGF_Stimulus":"-1.22"},{"ID":"FBgn0000115","EGF_Stimulus":"1.31"},{"ID":"FBgn0030251","EGF_Stimulus":"-0.79"},{"ID":"FBgn0026088","EGF_Stimulus":"1.03"},{"ID":"FBgn0011296","EGF_Stimulus":"0.47"},{"ID":"FBgn0028484","EGF_Stimulus":"0.62"},{"ID":"FBgn0031129","EGF_Stimulus":"-1.44"},{"ID":"FBgn0038387","EGF_Stimulus":"-0.84"},{"ID":"FBgn0036498","EGF_Stimulus":"0.17"},{"ID":"FBgn0035280","EGF_Stimulus":"0.58"},{"ID":"FBgn0036853","EGF_Stimulus":"0.77"},{"ID":"FBgn0085293","EGF_Stimulus":"0.6"},{"ID":"FBgn0259936","EGF_Stimulus":"-1.43"},{"ID":"FBgn0260011","EGF_Stimulus":"0.39"},{"ID":"FBgn0002773","EGF_Stimulus":"0.71"},{"ID":"FBgn0023215","EGF_Stimulus":"2.45"},{"ID":"FBgn0030588","EGF_Stimulus":"0.59"},{"ID":"FBgn0034075","EGF_Stimulus":"-1.24"},{"ID":"FBgn0028941","EGF_Stimulus":"0.83"},{"ID":"FBgn0029789","EGF_Stimulus":"-0.63"},{"ID":"FBgn0039780","EGF_Stimulus":"0.47"},{"ID":"FBgn0011695","EGF_Stimulus":"2.2"},{"ID":"FBgn0010620","EGF_Stimulus":"1.73"},{"ID":"FBgn0038186","EGF_Stimulus":"0.79"},{"ID":"FBgn0034658","EGF_Stimulus":"-0.99"},{"ID":"FBgn0038000","EGF_Stimulus":"-0.78"},{"ID":"FBgn0037578","EGF_Stimulus":"0.93"},{"ID":"FBgn0039590","EGF_Stimulus":"-1.62"},{"ID":"FBgn0035016","EGF_Stimulus":"1.24"},{"ID":"FBgn0040475","EGF_Stimulus":"0.76"},{"ID":"FBgn0031107","EGF_Stimulus":"0.79"},{"ID":"FBgn0035526","EGF_Stimulus":"0.89"},{"ID":"FBgn0035694","EGF_Stimulus":"-0.68"},{"ID":"FBgn0250832","EGF_Stimulus":"-0.32"},{"ID":"FBgn0038405","EGF_Stimulus":"-0.2"},{"ID":"FBgn0032803","EGF_Stimulus":"-0.67"},{"ID":"FBgn0036975","EGF_Stimulus":"0.91"},{"ID":"FBgn0028560","EGF_Stimulus":"-0.54"},{"ID":"FBgn0020497","EGF_Stimulus":"-1.64"},{"ID":"FBgn0061198","EGF_Stimulus":"-0.58"},{"ID":"FBgn0039042","EGF_Stimulus":"-0.56"},{"ID":"FBgn0034025","EGF_Stimulus":"-1.1"},{"ID":"FBgn0039470","EGF_Stimulus":"0.68"},{"ID":"FBgn0038151","EGF_Stimulus":"0.32"},{"ID":"FBgn0052656","EGF_Stimulus":"0.61"},{"ID":"FBgn0037384","EGF_Stimulus":"0.59"},{"ID":"FBgn0020508","EGF_Stimulus":"0.81"},{"ID":"FBgn0032964","EGF_Stimulus":"0.88"},{"ID":"FBgn0022740","EGF_Stimulus":"-1.22"},{"ID":"FBgn0034882","EGF_Stimulus":"0.26"},{"ID":"FBgn0052654","EGF_Stimulus":"-1.51"},{"ID":"FBgn0032506","EGF_Stimulus":"-0.6"},{"ID":"FBgn0023537","EGF_Stimulus":"0.9"},{"ID":"FBgn0037399","EGF_Stimulus":"0.43"},{"ID":"FBgn0051997","EGF_Stimulus":"-1.22"},{"ID":"FBgn0085408","EGF_Stimulus":"0.32"},{"ID":"FBgn0036583","EGF_Stimulus":"-1.84"},{"ID":"FBgn0052195","EGF_Stimulus":"0.11"},{"ID":"FBgn0026386","EGF_Stimulus":"1.03"},{"ID":"FBgn0259143","EGF_Stimulus":"1.11"},{"ID":"FBgn0037040","EGF_Stimulus":"-0.46"},{"ID":"FBgn0039928","EGF_Stimulus":"0.5"},{"ID":"FBgn0260441","EGF_Stimulus":"-4.78"},{"ID":"FBgn0052119","EGF_Stimulus":"-1.5"},{"ID":"FBgn0039325","EGF_Stimulus":"0.98"},{"ID":"FBgn0041250","EGF_Stimulus":"0.49"},{"ID":"FBgn0051797","EGF_Stimulus":"0.21"},{"ID":"FBgn0046687","EGF_Stimulus":"-1.59"},{"ID":"FBgn0034545","EGF_Stimulus":"0.77"},{"ID":"FBgn0035500","EGF_Stimulus":"0.79"},{"ID":"FBgn0037571","EGF_Stimulus":"0.56"},{"ID":"FBgn0032218","EGF_Stimulus":"-0.41"},{"ID":"FBgn0001087","EGF_Stimulus":"0.76"},{"ID":"FBgn0260049","EGF_Stimulus":"0.95"},{"ID":"FBgn0033165","EGF_Stimulus":"-0.57"},{"ID":"FBgn0033404","EGF_Stimulus":"0.43"},{"ID":"FBgn0036836","EGF_Stimulus":"0.4"},{"ID":"FBgn0034936","EGF_Stimulus":"-0.91"},{"ID":"FBgn0027093","EGF_Stimulus":"-1.01"},{"ID":"FBgn0001255","EGF_Stimulus":"1.63"},{"ID":"FBgn0037218","EGF_Stimulus":"0.53"},{"ID":"FBgn0037778","EGF_Stimulus":"0.41"},{"ID":"FBgn0039049","EGF_Stimulus":"0.44"},{"ID":"FBgn0033339","EGF_Stimulus":"0.86"},{"ID":"FBgn0031240","EGF_Stimulus":"0.46"},{"ID":"FBgn0005695","EGF_Stimulus":"-1.52"},{"ID":"FBgn0038488","EGF_Stimulus":"0.4"},{"ID":"FBgn0039479","EGF_Stimulus":"0.96"},{"ID":"FBgn0086357","EGF_Stimulus":"-1.78"},{"ID":"FBgn0259237","EGF_Stimulus":"0.47"},{"ID":"FBgn0036126","EGF_Stimulus":"1.65"},{"ID":"FBgn0025519","EGF_Stimulus":"-1.46"},{"ID":"FBgn0039489","EGF_Stimulus":"0.83"},{"ID":"FBgn0038038","EGF_Stimulus":"0.5"},{"ID":"FBgn0038473","EGF_Stimulus":"1.45"},{"ID":"FBgn0030743","EGF_Stimulus":"0.85"},{"ID":"FBgn0051849","EGF_Stimulus":"0.37"},{"ID":"FBgn0040794","EGF_Stimulus":"0.65"},{"ID":"FBgn0261610","EGF_Stimulus":"-1.87"},{"ID":"FBgn0000057","EGF_Stimulus":"1.14"},{"ID":"FBgn0004374","EGF_Stimulus":"-0.8"},{"ID":"FBgn0052639","EGF_Stimulus":"0.23"},{"ID":"FBgn0052570","EGF_Stimulus":"-1.49"},{"ID":"FBgn0033981","EGF_Stimulus":"0.42"},{"ID":"FBgn0029807","EGF_Stimulus":"-0.51"},{"ID":"FBgn0034032","EGF_Stimulus":"1.01"},{"ID":"FBgn0028523","EGF_Stimulus":"-0.21"},{"ID":"FBgn0037012","EGF_Stimulus":"-1.82"},{"ID":"FBgn0025864","EGF_Stimulus":"-1.78"},{"ID":"FBgn0035551","EGF_Stimulus":"1.53"},{"ID":"FBgn0035332","EGF_Stimulus":"-0.78"},{"ID":"FBgn0034718","EGF_Stimulus":"-2.07"},{"ID":"FBgn0030239","EGF_Stimulus":"0.43"},{"ID":"FBgn0016036","EGF_Stimulus":"0.22"},{"ID":"FBgn0037978","EGF_Stimulus":"-0.92"},{"ID":"FBgn0052461","EGF_Stimulus":"-1.02"},{"ID":"FBgn0030228","EGF_Stimulus":"-1.44"},{"ID":"FBgn0030483","EGF_Stimulus":"-1.22"},{"ID":"FBgn0034422","EGF_Stimulus":"0.48"},{"ID":"FBgn0036875","EGF_Stimulus":"0.55"},{"ID":"FBgn0015805","EGF_Stimulus":"-0.87"},{"ID":"FBgn0031364","EGF_Stimulus":"-1.13"},{"ID":"FBgn0028692","EGF_Stimulus":"-3.22"},{"ID":"FBgn0030521","EGF_Stimulus":"0.31"},{"ID":"FBgn0034503","EGF_Stimulus":"-0.41"},{"ID":"FBgn0031520","EGF_Stimulus":"0.68"},{"ID":"FBgn0031662","EGF_Stimulus":"0.83"},{"ID":"FBgn0037963","EGF_Stimulus":"0.7"},{"ID":"FBgn0039504","EGF_Stimulus":"1.77"},{"ID":"FBgn0003654","EGF_Stimulus":"1.06"},{"ID":"FBgn0037251","EGF_Stimulus":"1.29"},{"ID":"FBgn0033767","EGF_Stimulus":"-1.48"},{"ID":"FBgn0036986","EGF_Stimulus":"1.07"},{"ID":"FBgn0002968","EGF_Stimulus":"-0.98"},{"ID":"FBgn0001197","EGF_Stimulus":"-2.45"},{"ID":"FBgn0003353","EGF_Stimulus":"0.61"},{"ID":"FBgn0030187","EGF_Stimulus":"0.46"},{"ID":"FBgn0010709","EGF_Stimulus":"-1.8"},{"ID":"FBgn0050184","EGF_Stimulus":"0.51"},{"ID":"FBgn0030417","EGF_Stimulus":"0.37"},{"ID":"FBgn0086785","EGF_Stimulus":"0.73"},{"ID":"FBgn0038055","EGF_Stimulus":"1.02"},{"ID":"FBgn0051546","EGF_Stimulus":"-0.9"},{"ID":"FBgn0036024","EGF_Stimulus":"-1.09"},{"ID":"FBgn0036563","EGF_Stimulus":"-0.67"},{"ID":"FBgn0029836","EGF_Stimulus":"-0.38"},{"ID":"FBgn0026751","EGF_Stimulus":"-0.54"},{"ID":"FBgn0039868","EGF_Stimulus":"-1.61"},{"ID":"FBgn0022027","EGF_Stimulus":"0.13"},{"ID":"FBgn0032123","EGF_Stimulus":"0.76"},{"ID":"FBgn0029989","EGF_Stimulus":"0.7"},{"ID":"FBgn0036844","EGF_Stimulus":"-1.14"},{"ID":"FBgn0036678","EGF_Stimulus":"-0.29"},{"ID":"FBgn0261524","EGF_Stimulus":"1.42"},{"ID":"FBgn0015838","EGF_Stimulus":"-0.7"},{"ID":"FBgn0036826","EGF_Stimulus":"0.23"},{"ID":"FBgn0030196","EGF_Stimulus":"-1.05"},{"ID":"FBgn0004959","EGF_Stimulus":"-1.4"},{"ID":"FBgn0039421","EGF_Stimulus":"2.51"},{"ID":"FBgn0039437","EGF_Stimulus":"-1.36"},{"ID":"FBgn0030343","EGF_Stimulus":"1.22"},{"ID":"FBgn0033778","EGF_Stimulus":"0.68"},{"ID":"FBgn0034068","EGF_Stimulus":"-0.74"},{"ID":"FBgn0033129","EGF_Stimulus":"-0.22"},{"ID":"FBgn0038360","EGF_Stimulus":"0.41"},{"ID":"FBgn0033308","EGF_Stimulus":"0.34"},{"ID":"FBgn0034528","EGF_Stimulus":"-0.87"},{"ID":"FBgn0039125","EGF_Stimulus":"-0.96"},{"ID":"FBgn0010333","EGF_Stimulus":"-2.49"},{"ID":"FBgn0260006","EGF_Stimulus":"-1.54"},{"ID":"FBgn0086532","EGF_Stimulus":"0.43"},{"ID":"FBgn0003116","EGF_Stimulus":"-0.98"},{"ID":"FBgn0029975","EGF_Stimulus":"0.76"},{"ID":"FBgn0027598","EGF_Stimulus":"-1.21"},{"ID":"FBgn0036080","EGF_Stimulus":"0.57"},{"ID":"FBgn0261602","EGF_Stimulus":"-3.99"},{"ID":"FBgn0034327","EGF_Stimulus":"1.17"},{"ID":"FBgn0010412","EGF_Stimulus":"-4.12"},{"ID":"FBgn0030623","EGF_Stimulus":"-1.48"},{"ID":"FBgn0038300","EGF_Stimulus":"-0.3"},{"ID":"FBgn0037716","EGF_Stimulus":"0.81"},{"ID":"FBgn0039106","EGF_Stimulus":"-0.77"},{"ID":"FBgn0029949","EGF_Stimulus":"0.98"},{"ID":"FBgn0052350","EGF_Stimulus":"-0.92"},{"ID":"FBgn0023097","EGF_Stimulus":"1.14"},{"ID":"FBgn0037165","EGF_Stimulus":"0.87"},{"ID":"FBgn0041342","EGF_Stimulus":"-1.1"},{"ID":"FBgn0033794","EGF_Stimulus":"-0.59"},{"ID":"FBgn0038765","EGF_Stimulus":"-0.63"},{"ID":"FBgn0040529","EGF_Stimulus":"0.23"},{"ID":"FBgn0031282","EGF_Stimulus":"0.34"},{"ID":"FBgn0052437","EGF_Stimulus":"0.67"},{"ID":"FBgn0030798","EGF_Stimulus":"0.6"},{"ID":"FBgn0039158","EGF_Stimulus":"1.62"},{"ID":"FBgn0034683","EGF_Stimulus":"0.44"},{"ID":"FBgn0038324","EGF_Stimulus":"0.73"},{"ID":"FBgn0024944","EGF_Stimulus":"-1.7"},{"ID":"FBgn0019644","EGF_Stimulus":"-4.02"},{"ID":"FBgn0039833","EGF_Stimulus":"0.58"},{"ID":"FBgn0038449","EGF_Stimulus":"0.09"},{"ID":"FBgn0030997","EGF_Stimulus":"-0.53"},{"ID":"FBgn0003285","EGF_Stimulus":"-0.97"},{"ID":"FBgn0032702","EGF_Stimulus":"0.49"},{"ID":"FBgn0034942","EGF_Stimulus":"1.12"},{"ID":"FBgn0005596","EGF_Stimulus":"-1.45"},{"ID":"FBgn0037734","EGF_Stimulus":"-0.48"},{"ID":"FBgn0052039","EGF_Stimulus":"-0.52"},{"ID":"FBgn0038540","EGF_Stimulus":"0.79"},{"ID":"FBgn0026593","EGF_Stimulus":"0.48"},{"ID":"FBgn0053123","EGF_Stimulus":"-0.54"},{"ID":"FBgn0032900","EGF_Stimulus":"-1.3"},{"ID":"FBgn0013675","EGF_Stimulus":"0.23"},{"ID":"FBgn0028567","EGF_Stimulus":"0.64"},{"ID":"FBgn0035686","EGF_Stimulus":"0.94"},{"ID":"FBgn0028410","EGF_Stimulus":"-0.98"},{"ID":"FBgn0035965","EGF_Stimulus":"0.29"},{"ID":"FBgn0001987","EGF_Stimulus":"-0.29"},{"ID":"FBgn0036396","EGF_Stimulus":"-1.08"},{"ID":"FBgn0003511","EGF_Stimulus":"-0.82"},{"ID":"FBgn0053542","EGF_Stimulus":"1.61"},{"ID":"FBgn0039065","EGF_Stimulus":"-1.07"},{"ID":"FBgn0050156","EGF_Stimulus":"-1.07"},{"ID":"FBgn0030595","EGF_Stimulus":"-0.51"},{"ID":"FBgn0039752","EGF_Stimulus":"0.23"},{"ID":"FBgn0037395","EGF_Stimulus":"-0.46"},{"ID":"FBgn0051515","EGF_Stimulus":"4.44"},{"ID":"FBgn0038097","EGF_Stimulus":"0.56"},{"ID":"FBgn0031201","EGF_Stimulus":"0.45"},{"ID":"FBgn0038818","EGF_Stimulus":"0.56"},{"ID":"FBgn0034426","EGF_Stimulus":"-0.11"},{"ID":"FBgn0032744","EGF_Stimulus":"-0.95"},{"ID":"FBgn0035021","EGF_Stimulus":"0.66"},{"ID":"FBgn0037502","EGF_Stimulus":"0.32"},{"ID":"FBgn0058245","EGF_Stimulus":"0.9"},{"ID":"FBgn0039269","EGF_Stimulus":"0.27"},{"ID":"FBgn0260946","EGF_Stimulus":"-1.49"},{"ID":"FBgn0012036","EGF_Stimulus":"0.89"},{"ID":"FBgn0038973","EGF_Stimulus":"0.85"},{"ID":"FBgn0020910","EGF_Stimulus":"-2.79"},{"ID":"FBgn0005649","EGF_Stimulus":"-1.34"},{"ID":"FBgn0040383","EGF_Stimulus":"0.17"},{"ID":"FBgn0039449","EGF_Stimulus":"0.36"},{"ID":"FBgn0036710","EGF_Stimulus":"-2.36"},{"ID":"FBgn0035060","EGF_Stimulus":"0.97"},{"ID":"FBgn0039151","EGF_Stimulus":"-0.4"},{"ID":"FBgn0034968","EGF_Stimulus":"-3.54"},{"ID":"FBgn0033624","EGF_Stimulus":"1.21"},{"ID":"FBgn0031774","EGF_Stimulus":"-0.74"},{"ID":"FBgn0020908","EGF_Stimulus":"1.4"},{"ID":"FBgn0031008","EGF_Stimulus":"-1.14"},{"ID":"FBgn0036309","EGF_Stimulus":"-0.68"},{"ID":"FBgn0031913","EGF_Stimulus":"-0.62"},{"ID":"FBgn0035316","EGF_Stimulus":"-0.65"},{"ID":"FBgn0036493","EGF_Stimulus":"0.33"},{"ID":"FBgn0032857","EGF_Stimulus":"-0.41"},{"ID":"FBgn0037323","EGF_Stimulus":"-0.3"},{"ID":"FBgn0030410","EGF_Stimulus":"-0.68"},{"ID":"FBgn0031235","EGF_Stimulus":"0.23"},{"ID":"FBgn0035064","EGF_Stimulus":"-1.09"},{"ID":"FBgn0031150","EGF_Stimulus":"-0.95"},{"ID":"FBgn0034797","EGF_Stimulus":"-0.65"},{"ID":"FBgn0030079","EGF_Stimulus":"1.41"},{"ID":"FBgn0032658","EGF_Stimulus":"0.33"},{"ID":"FBgn0030791","EGF_Stimulus":"-0.67"},{"ID":"FBgn0000108","EGF_Stimulus":"0.93"},{"ID":"FBgn0261584","EGF_Stimulus":"-0.12"},{"ID":"FBgn0035146","EGF_Stimulus":"0.39"},{"ID":"FBgn0034110","EGF_Stimulus":"-0.48"},{"ID":"FBgn0032394","EGF_Stimulus":"0.38"},{"ID":"FBgn0039094","EGF_Stimulus":"-0.64"},{"ID":"FBgn0039192","EGF_Stimulus":"0.74"},{"ID":"FBgn0010280","EGF_Stimulus":"-1.26"},{"ID":"FBgn0025678","EGF_Stimulus":"-1.26"},{"ID":"FBgn0025381","EGF_Stimulus":"0.54"},{"ID":"FBgn0027570","EGF_Stimulus":"0.61"},{"ID":"FBgn0085413","EGF_Stimulus":"-0.6"},{"ID":"FBgn0030263","EGF_Stimulus":"0.53"},{"ID":"FBgn0031066","EGF_Stimulus":"-1.28"},{"ID":"FBgn0051641","EGF_Stimulus":"-0.66"},{"ID":"FBgn0002789","EGF_Stimulus":"0.38"},{"ID":"FBgn0035256","EGF_Stimulus":"0.96"},{"ID":"FBgn0013348","EGF_Stimulus":"1.34"},{"ID":"FBgn0039663","EGF_Stimulus":"0.56"},{"ID":"FBgn0004839","EGF_Stimulus":"-0.17"},{"ID":"FBgn0058441","EGF_Stimulus":"1.56"},{"ID":"FBgn0013725","EGF_Stimulus":"-1.79"},{"ID":"FBgn0050360","EGF_Stimulus":"0.74"},{"ID":"FBgn0003867","EGF_Stimulus":"-1.34"},{"ID":"FBgn0052277","EGF_Stimulus":"0.76"},{"ID":"FBgn0053346","EGF_Stimulus":"0.93"},{"ID":"FBgn0013809","EGF_Stimulus":"1.22"},{"ID":"FBgn0036821","EGF_Stimulus":"-1.34"},{"ID":"FBgn0030607","EGF_Stimulus":"0.35"},{"ID":"FBgn0001220","EGF_Stimulus":"0.47"},{"ID":"FBgn0036570","EGF_Stimulus":"-0.93"},{"ID":"FBgn0032079","EGF_Stimulus":"-0.47"},{"ID":"FBgn0026869","EGF_Stimulus":"-0.35"},{"ID":"FBgn0032860","EGF_Stimulus":"-1.36"},{"ID":"FBgn0038090","EGF_Stimulus":"1.15"},{"ID":"FBgn0037126","EGF_Stimulus":"0.62"},{"ID":"FBgn0036109","EGF_Stimulus":"-0.42"},{"ID":"FBgn0053993","EGF_Stimulus":"0.28"},{"ID":"FBgn0036655","EGF_Stimulus":"1.56"},{"ID":"FBgn0051296","EGF_Stimulus":"0.39"},{"ID":"FBgn0038549","EGF_Stimulus":"-0.17"},{"ID":"FBgn0035870","EGF_Stimulus":"0.21"},{"ID":"FBgn0028985","EGF_Stimulus":"0.55"},{"ID":"FBgn0030136","EGF_Stimulus":"-2.21"},{"ID":"FBgn0037445","EGF_Stimulus":"-1.42"},{"ID":"FBgn0029672","EGF_Stimulus":"-0.64"},{"ID":"FBgn0026433","EGF_Stimulus":"0.36"},{"ID":"FBgn0034402","EGF_Stimulus":"1.12"},{"ID":"FBgn0010453","EGF_Stimulus":"1.38"},{"ID":"FBgn0015038","EGF_Stimulus":"0.89"},{"ID":"FBgn0031006","EGF_Stimulus":"-0.65"},{"ID":"FBgn0026326","EGF_Stimulus":"-0.86"},{"ID":"FBgn0030576","EGF_Stimulus":"-0.22"},{"ID":"FBgn0035244","EGF_Stimulus":"-0.87"},{"ID":"FBgn0032147","EGF_Stimulus":"-0.79"},{"ID":"FBgn0053333","EGF_Stimulus":"-1.12"},{"ID":"FBgn0037883","EGF_Stimulus":"0.64"},{"ID":"FBgn0031646","EGF_Stimulus":"-0.29"},{"ID":"FBgn0030377","EGF_Stimulus":"-0.58"},{"ID":"FBgn0029992","EGF_Stimulus":"-1.61"},{"ID":"FBgn0042710","EGF_Stimulus":"-2.36"},{"ID":"FBgn0031866","EGF_Stimulus":"0.23"},{"ID":"FBgn0003090","EGF_Stimulus":"3.2"},{"ID":"FBgn0051249","EGF_Stimulus":"-0.53"},{"ID":"FBgn0052702","EGF_Stimulus":"1.52"},{"ID":"FBgn0036629","EGF_Stimulus":"1.08"},{"ID":"FBgn0033933","EGF_Stimulus":"-0.55"},{"ID":"FBgn0033900","EGF_Stimulus":"-0.65"},{"ID":"FBgn0086448","EGF_Stimulus":"-1.41"},{"ID":"FBgn0010768","EGF_Stimulus":"0.52"},{"ID":"FBgn0024996","EGF_Stimulus":"-0.12"},{"ID":"FBgn0038179","EGF_Stimulus":"1.12"},{"ID":"FBgn0032924","EGF_Stimulus":"0.5"},{"ID":"FBgn0001990","EGF_Stimulus":"0.85"},{"ID":"FBgn0001341","EGF_Stimulus":"1.21"},{"ID":"FBgn0052163","EGF_Stimulus":"0.93"},{"ID":"FBgn0035790","EGF_Stimulus":"0.75"},{"ID":"FBgn0035955","EGF_Stimulus":"0.22"},{"ID":"FBgn0033802","EGF_Stimulus":"-0.72"},{"ID":"FBgn0036255","EGF_Stimulus":"0.7"},{"ID":"FBgn0031518","EGF_Stimulus":"-0.45"},{"ID":"FBgn0038523","EGF_Stimulus":"0.38"},{"ID":"FBgn0051287","EGF_Stimulus":"-0.42"},{"ID":"FBgn0051778","EGF_Stimulus":"0.98"},{"ID":"FBgn0027512","EGF_Stimulus":"-1.82"},{"ID":"FBgn0035404","EGF_Stimulus":"0.33"},{"ID":"FBgn0037773","EGF_Stimulus":"-1.29"},{"ID":"FBgn0012051","EGF_Stimulus":"0.33"},{"ID":"FBgn0033208","EGF_Stimulus":"-0.33"},{"ID":"FBgn0046297","EGF_Stimulus":"-0.94"},{"ID":"FBgn0036336","EGF_Stimulus":"0.16"},{"ID":"FBgn0032034","EGF_Stimulus":"0.42"},{"ID":"FBgn0039165","EGF_Stimulus":"-0.89"},{"ID":"FBgn0050486","EGF_Stimulus":"0.78"},{"ID":"FBgn0028400","EGF_Stimulus":"-0.58"},{"ID":"FBgn0035405","EGF_Stimulus":"-0.56"},{"ID":"FBgn0031082","EGF_Stimulus":"-0.21"},{"ID":"FBgn0036008","EGF_Stimulus":"0.94"},{"ID":"FBgn0031471","EGF_Stimulus":"-0.83"},{"ID":"FBgn0031117","EGF_Stimulus":"0.5"},{"ID":"FBgn0029131","EGF_Stimulus":"-0.65"},{"ID":"FBgn0030703","EGF_Stimulus":"0.81"},{"ID":"FBgn0038349","EGF_Stimulus":"-0.18"},{"ID":"FBgn0015380","EGF_Stimulus":"1.21"},{"ID":"FBgn0053978","EGF_Stimulus":"-2.14"},{"ID":"FBgn0004171","EGF_Stimulus":"1.26"},{"ID":"FBgn0026190","EGF_Stimulus":"0.29"},{"ID":"FBgn0035879","EGF_Stimulus":"-0.5"},{"ID":"FBgn0032850","EGF_Stimulus":"0.73"},{"ID":"FBgn0052099","EGF_Stimulus":"-0.38"},{"ID":"FBgn0031959","EGF_Stimulus":"-1.06"},{"ID":"FBgn0038208","EGF_Stimulus":"1.12"},{"ID":"FBgn0034382","EGF_Stimulus":"-0.11"},{"ID":"FBgn0013988","EGF_Stimulus":"1.57"},{"ID":"FBgn0039744","EGF_Stimulus":"0.69"},{"ID":"FBgn0004779","EGF_Stimulus":"-0.91"},{"ID":"FBgn0034624","EGF_Stimulus":"-0.33"},{"ID":"FBgn0040814","EGF_Stimulus":"0.4"},{"ID":"FBgn0050159","EGF_Stimulus":"0.28"},{"ID":"FBgn0031148","EGF_Stimulus":"0.75"},{"ID":"FBgn0039016","EGF_Stimulus":"1.35"},{"ID":"FBgn0003312","EGF_Stimulus":"0.5"},{"ID":"FBgn0004898","EGF_Stimulus":"1.55"},{"ID":"FBgn0038106","EGF_Stimulus":"-0.33"},{"ID":"FBgn0039480","EGF_Stimulus":"0.77"},{"ID":"FBgn0004174","EGF_Stimulus":"0.73"},{"ID":"FBgn0000061","EGF_Stimulus":"1.14"},{"ID":"FBgn0031713","EGF_Stimulus":"0.12"},{"ID":"FBgn0031265","EGF_Stimulus":"0.47"},{"ID":"FBgn0052243","EGF_Stimulus":"0.67"},{"ID":"FBgn0010385","EGF_Stimulus":"0.55"},{"ID":"FBgn0051989","EGF_Stimulus":"1.03"},{"ID":"FBgn0040508","EGF_Stimulus":"-0.44"},{"ID":"FBgn0051005","EGF_Stimulus":"-0.87"},{"ID":"FBgn0039599","EGF_Stimulus":"-1.05"},{"ID":"FBgn0085296","EGF_Stimulus":"-0.25"},{"ID":"FBgn0003278","EGF_Stimulus":"-0.11"},{"ID":"FBgn0036232","EGF_Stimulus":"0.4"},{"ID":"FBgn0004462","EGF_Stimulus":"1.52"},{"ID":"FBgn0032142","EGF_Stimulus":"0.2"},{"ID":"FBgn0038034","EGF_Stimulus":"0.65"},{"ID":"FBgn0028514","EGF_Stimulus":"0.53"},{"ID":"FBgn0035308","EGF_Stimulus":"-0.55"},{"ID":"FBgn0039642","EGF_Stimulus":"2.06"},{"ID":"FBgn0053306","EGF_Stimulus":"0.77"},{"ID":"FBgn0053061","EGF_Stimulus":"0.67"},{"ID":"FBgn0033697","EGF_Stimulus":"-0.41"},{"ID":"FBgn0020510","EGF_Stimulus":"0.57"},{"ID":"FBgn0025632","EGF_Stimulus":"-0.62"},{"ID":"FBgn0052187","EGF_Stimulus":"-0.68"},{"ID":"FBgn0032329","EGF_Stimulus":"0.74"},{"ID":"FBgn0039038","EGF_Stimulus":"0.9"},{"ID":"FBgn0039764","EGF_Stimulus":"0.91"},{"ID":"FBgn0032233","EGF_Stimulus":"0.46"},{"ID":"FBgn0052364","EGF_Stimulus":"-0.76"},{"ID":"FBgn0011581","EGF_Stimulus":"-0.88"},{"ID":"FBgn0030766","EGF_Stimulus":"0.2"},{"ID":"FBgn0010383","EGF_Stimulus":"0.09"},{"ID":"FBgn0032194","EGF_Stimulus":"1.37"},{"ID":"FBgn0036847","EGF_Stimulus":"-0.83"},{"ID":"FBgn0036369","EGF_Stimulus":"-0.4"},{"ID":"FBgn0030066","EGF_Stimulus":"0.89"},{"ID":"FBgn0050291","EGF_Stimulus":"-0.51"},{"ID":"FBgn0040601","EGF_Stimulus":"0.99"},{"ID":"FBgn0086681","EGF_Stimulus":"1.3"},{"ID":"FBgn0034329","EGF_Stimulus":"-0.9"},{"ID":"FBgn0026077","EGF_Stimulus":"-0.31"},{"ID":"FBgn0030367","EGF_Stimulus":"0.11"},{"ID":"FBgn0036741","EGF_Stimulus":"-0.57"},{"ID":"FBgn0028533","EGF_Stimulus":"0.69"},{"ID":"FBgn0037916","EGF_Stimulus":"0.28"},{"ID":"FBgn0052281","EGF_Stimulus":"0.65"},{"ID":"FBgn0030817","EGF_Stimulus":"1.13"},{"ID":"FBgn0025612","EGF_Stimulus":"-0.3"},{"ID":"FBgn0086899","EGF_Stimulus":"-4.3"},{"ID":"FBgn0041240","EGF_Stimulus":"0.59"},{"ID":"FBgn0036595","EGF_Stimulus":"-0.54"},{"ID":"FBgn0028903","EGF_Stimulus":"-0.87"},{"ID":"FBgn0030336","EGF_Stimulus":"-0.62"},{"ID":"FBgn0033401","EGF_Stimulus":"-0.36"},{"ID":"FBgn0033720","EGF_Stimulus":"0.53"},{"ID":"FBgn0051680","EGF_Stimulus":"0.37"},{"ID":"FBgn0029091","EGF_Stimulus":"1.89"},{"ID":"FBgn0036019","EGF_Stimulus":"0.8"},{"ID":"FBgn0004856","EGF_Stimulus":"-3.38"},{"ID":"FBgn0039223","EGF_Stimulus":"0.1"},{"ID":"FBgn0029968","EGF_Stimulus":"0.86"},{"ID":"FBgn0035237","EGF_Stimulus":"0.88"},{"ID":"FBgn0028579","EGF_Stimulus":"-0.27"},{"ID":"FBgn0259228","EGF_Stimulus":"0.43"},{"ID":"FBgn0054015","EGF_Stimulus":"0.34"},{"ID":"FBgn0052073","EGF_Stimulus":"-0.8"},{"ID":"FBgn0034887","EGF_Stimulus":"0.78"},{"ID":"FBgn0003391","EGF_Stimulus":"0.47"},{"ID":"FBgn0032499","EGF_Stimulus":"-0.19"},{"ID":"FBgn0051561","EGF_Stimulus":"-1.53"},{"ID":"FBgn0050279","EGF_Stimulus":"-1.15"},{"ID":"FBgn0085222","EGF_Stimulus":"0.64"},{"ID":"FBgn0039031","EGF_Stimulus":"0.18"},{"ID":"FBgn0030323","EGF_Stimulus":"-1.15"},{"ID":"FBgn0033760","EGF_Stimulus":"-0.9"},{"ID":"FBgn0053777","EGF_Stimulus":"0.14"},{"ID":"FBgn0038627","EGF_Stimulus":"0.25"},{"ID":"FBgn0030937","EGF_Stimulus":"0.74"},{"ID":"FBgn0035999","EGF_Stimulus":"0.15"},{"ID":"FBgn0036052","EGF_Stimulus":"1.07"},{"ID":"FBgn0011666","EGF_Stimulus":"-1.6"},{"ID":"FBgn0031191","EGF_Stimulus":"-1.63"},{"ID":"FBgn0030668","EGF_Stimulus":"-0.36"},{"ID":"FBgn0034056","EGF_Stimulus":"0.16"},{"ID":"FBgn0036662","EGF_Stimulus":"0.74"},{"ID":"FBgn0042180","EGF_Stimulus":"-0.38"},{"ID":"FBgn0067102","EGF_Stimulus":"1.25"},{"ID":"FBgn0033980","EGF_Stimulus":"-0.78"},{"ID":"FBgn0040797","EGF_Stimulus":"-0.78"},{"ID":"FBgn0023529","EGF_Stimulus":"-0.48"},{"ID":"FBgn0035957","EGF_Stimulus":"0.7"},{"ID":"FBgn0030241","EGF_Stimulus":"0.84"},{"ID":"FBgn0051360","EGF_Stimulus":"0.97"},{"ID":"FBgn0051538","EGF_Stimulus":"-1.04"},{"ID":"FBgn0025643","EGF_Stimulus":"0.8"},{"ID":"FBgn0031652","EGF_Stimulus":"-0.48"},{"ID":"FBgn0033301","EGF_Stimulus":"0.93"},{"ID":"FBgn0032197","EGF_Stimulus":"0.91"},{"ID":"FBgn0025641","EGF_Stimulus":"0.15"},{"ID":"FBgn0003978","EGF_Stimulus":"0.59"},{"ID":"FBgn0031942","EGF_Stimulus":"1.23"},{"ID":"FBgn0002652","EGF_Stimulus":"-0.75"},{"ID":"FBgn0036984","EGF_Stimulus":"0.23"},{"ID":"FBgn0036924","EGF_Stimulus":"-0.56"},{"ID":"FBgn0014870","EGF_Stimulus":"1.26"},{"ID":"FBgn0011336","EGF_Stimulus":"0.12"},{"ID":"FBgn0259150","EGF_Stimulus":"-1.2"},{"ID":"FBgn0085786","EGF_Stimulus":"1.05"},{"ID":"FBgn0037714","EGF_Stimulus":"0.65"},{"ID":"FBgn0038244","EGF_Stimulus":"-1.01"},{"ID":"FBgn0037697","EGF_Stimulus":"-0.49"},{"ID":"FBgn0004577","EGF_Stimulus":"-0.56"},{"ID":"FBgn0085449","EGF_Stimulus":"0.62"},{"ID":"FBgn0038139","EGF_Stimulus":"-0.21"},{"ID":"FBgn0033911","EGF_Stimulus":"1.15"},{"ID":"FBgn0042106","EGF_Stimulus":"0.88"},{"ID":"FBgn0030966","EGF_Stimulus":"0.5"},{"ID":"FBgn0260874","EGF_Stimulus":"0.76"},{"ID":"FBgn0034802","EGF_Stimulus":"1.36"},{"ID":"FBgn0051816","EGF_Stimulus":"-0.18"},{"ID":"FBgn0025626","EGF_Stimulus":"0.8"},{"ID":"FBgn0036437","EGF_Stimulus":"0.99"},{"ID":"FBgn0028738","EGF_Stimulus":"-0.26"},{"ID":"FBgn0038128","EGF_Stimulus":"1.3"},{"ID":"FBgn0024194","EGF_Stimulus":"0.41"},{"ID":"FBgn0259221","EGF_Stimulus":"0.64"},{"ID":"FBgn0053051","EGF_Stimulus":"0.6"},{"ID":"FBgn0039561","EGF_Stimulus":"-0.36"},{"ID":"FBgn0261811","EGF_Stimulus":"-0.22"},{"ID":"FBgn0036538","EGF_Stimulus":"0.77"},{"ID":"FBgn0052846","EGF_Stimulus":"-0.35"},{"ID":"FBgn0050277","EGF_Stimulus":"1.09"},{"ID":"FBgn0039577","EGF_Stimulus":"0.4"},{"ID":"FBgn0037949","EGF_Stimulus":"-1.63"},{"ID":"FBgn0037626","EGF_Stimulus":"-0.12"},{"ID":"FBgn0066114","EGF_Stimulus":"-1.45"},{"ID":"FBgn0001967","EGF_Stimulus":"-0.46"},{"ID":"FBgn0243516","EGF_Stimulus":"-1.31"},{"ID":"FBgn0033518","EGF_Stimulus":"-2.23"},{"ID":"FBgn0053017","EGF_Stimulus":"1.02"},{"ID":"FBgn0035484","EGF_Stimulus":"-0.03"},{"ID":"FBgn0038376","EGF_Stimulus":"1.01"},{"ID":"FBgn0032798","EGF_Stimulus":"-0.64"},{"ID":"FBgn0033651","EGF_Stimulus":"-1.35"},{"ID":"FBgn0051708","EGF_Stimulus":"-1.38"},{"ID":"FBgn0037755","EGF_Stimulus":"0.52"},{"ID":"FBgn0037846","EGF_Stimulus":"0.2"},{"ID":"FBgn0028552","EGF_Stimulus":"1.5"},{"ID":"FBgn0260632","EGF_Stimulus":"-1.47"},{"ID":"FBgn0032144","EGF_Stimulus":"0.71"},{"ID":"FBgn0039522","EGF_Stimulus":"-0.2"},{"ID":"FBgn0038921","EGF_Stimulus":"-0.58"},{"ID":"FBgn0024491","EGF_Stimulus":"0.76"},{"ID":"FBgn0031937","EGF_Stimulus":"0.48"},{"ID":"FBgn0028562","EGF_Stimulus":"0.52"},{"ID":"FBgn0001202","EGF_Stimulus":"0.35"},{"ID":"FBgn0000808","EGF_Stimulus":"0.53"},{"ID":"FBgn0032415","EGF_Stimulus":"-0.44"},{"ID":"FBgn0032161","EGF_Stimulus":"-0.72"},{"ID":"FBgn0029912","EGF_Stimulus":"0.12"},{"ID":"FBgn0035644","EGF_Stimulus":"2.36"},{"ID":"FBgn0031729","EGF_Stimulus":"-1.91"},{"ID":"FBgn0039735","EGF_Stimulus":"0.24"},{"ID":"FBgn0033297","EGF_Stimulus":"0.25"},{"ID":"FBgn0040007","EGF_Stimulus":"-3.67"},{"ID":"FBgn0034480","EGF_Stimulus":"0.94"},{"ID":"FBgn0027057","EGF_Stimulus":"0.93"},{"ID":"FBgn0032677","EGF_Stimulus":"0.89"},{"ID":"FBgn0032481","EGF_Stimulus":"0.3"},{"ID":"FBgn0034711","EGF_Stimulus":"0.58"},{"ID":"FBgn0004167","EGF_Stimulus":"-1.11"},{"ID":"FBgn0033969","EGF_Stimulus":"0.88"},{"ID":"FBgn0028644","EGF_Stimulus":"-0.16"},{"ID":"FBgn0051781","EGF_Stimulus":"0.33"},{"ID":"FBgn0003129","EGF_Stimulus":"0.36"},{"ID":"FBgn0026268","EGF_Stimulus":"0.53"},{"ID":"FBgn0037826","EGF_Stimulus":"0.86"},{"ID":"FBgn0031512","EGF_Stimulus":"-0.76"},{"ID":"FBgn0035033","EGF_Stimulus":"0.24"},{"ID":"FBgn0029974","EGF_Stimulus":"0.9"},{"ID":"FBgn0021795","EGF_Stimulus":"-0.34"},{"ID":"FBgn0034045","EGF_Stimulus":"0.47"},{"ID":"FBgn0039053","EGF_Stimulus":"-1.17"},{"ID":"FBgn0051495","EGF_Stimulus":"0.8"},{"ID":"FBgn0022238","EGF_Stimulus":"-0.78"},{"ID":"FBgn0035872","EGF_Stimulus":"0.45"},{"ID":"FBgn0039863","EGF_Stimulus":"0.48"},{"ID":"FBgn0040349","EGF_Stimulus":"-0.92"},{"ID":"FBgn0037141","EGF_Stimulus":"0.81"},{"ID":"FBgn0037802","EGF_Stimulus":"-1.06"},{"ID":"FBgn0259162","EGF_Stimulus":"-0.54"},{"ID":"FBgn0000359","EGF_Stimulus":"0.6"},{"ID":"FBgn0035196","EGF_Stimulus":"0.95"},{"ID":"FBgn0000451","EGF_Stimulus":"-1.32"},{"ID":"FBgn0025693","EGF_Stimulus":"-1.62"},{"ID":"FBgn0025681","EGF_Stimulus":"0.68"},{"ID":"FBgn0038569","EGF_Stimulus":"0.59"},{"ID":"FBgn0043455","EGF_Stimulus":"-0.78"},{"ID":"FBgn0046888","EGF_Stimulus":"1.21"},{"ID":"FBgn0033326","EGF_Stimulus":"0.76"},{"ID":"FBgn0026566","EGF_Stimulus":"0.82"},{"ID":"FBgn0038961","EGF_Stimulus":"-0.85"},{"ID":"FBgn0039002","EGF_Stimulus":"-0.67"},{"ID":"FBgn0035802","EGF_Stimulus":"1.44"},{"ID":"FBgn0035229","EGF_Stimulus":"0.26"},{"ID":"FBgn0004143","EGF_Stimulus":"0.91"},{"ID":"FBgn0033250","EGF_Stimulus":"1.68"},{"ID":"FBgn0035124","EGF_Stimulus":"-0.5"},{"ID":"FBgn0032057","EGF_Stimulus":"1.37"},{"ID":"FBgn0261791","EGF_Stimulus":"1.48"},{"ID":"FBgn0003377","EGF_Stimulus":"0.57"},{"ID":"FBgn0019650","EGF_Stimulus":"-0.95"},{"ID":"FBgn0039897","EGF_Stimulus":"-0.66"},{"ID":"FBgn0038337","EGF_Stimulus":"-0.84"},{"ID":"FBgn0001086","EGF_Stimulus":"7.27"},{"ID":"FBgn0082598","EGF_Stimulus":"-0.7"},{"ID":"FBgn0051206","EGF_Stimulus":"-0.41"},{"ID":"FBgn0039970","EGF_Stimulus":"0.65"},{"ID":"FBgn0030091","EGF_Stimulus":"0.58"},{"ID":"FBgn0040281","EGF_Stimulus":"-1.2"},{"ID":"FBgn0032231","EGF_Stimulus":"-1"},{"ID":"FBgn0000227","EGF_Stimulus":"-1.25"},{"ID":"FBgn0032535","EGF_Stimulus":"1.41"},{"ID":"FBgn0039936","EGF_Stimulus":"0.38"},{"ID":"FBgn0034734","EGF_Stimulus":"1.4"},{"ID":"FBgn0032090","EGF_Stimulus":"0.28"},{"ID":"FBgn0052413","EGF_Stimulus":"-1.63"},{"ID":"FBgn0010638","EGF_Stimulus":"-0.88"},{"ID":"FBgn0039307","EGF_Stimulus":"0.89"},{"ID":"FBgn0021995","EGF_Stimulus":"-0.66"},{"ID":"FBgn0039532","EGF_Stimulus":"-0.46"},{"ID":"FBgn0033072","EGF_Stimulus":"0.95"},{"ID":"FBgn0032452","EGF_Stimulus":"-1.54"},{"ID":"FBgn0259984","EGF_Stimulus":"-1.41"},{"ID":"FBgn0037723","EGF_Stimulus":"-1.43"},{"ID":"FBgn0033347","EGF_Stimulus":"0.47"},{"ID":"FBgn0032371","EGF_Stimulus":"-1.1"},{"ID":"FBgn0035581","EGF_Stimulus":"-1.16"},{"ID":"FBgn0003008","EGF_Stimulus":"-1.31"},{"ID":"FBgn0037550","EGF_Stimulus":"1.13"},{"ID":"FBgn0259243","EGF_Stimulus":"-2.93"},{"ID":"FBgn0259685","EGF_Stimulus":"-0.71"},{"ID":"FBgn0260932","EGF_Stimulus":"0.81"},{"ID":"FBgn0260486","EGF_Stimulus":"1.86"},{"ID":"FBgn0011656","EGF_Stimulus":"1.6"},{"ID":"FBgn0039593","EGF_Stimulus":"0.53"},{"ID":"FBgn0261362","EGF_Stimulus":"-0.62"},{"ID":"FBgn0040392","EGF_Stimulus":"0.25"},{"ID":"FBgn0038145","EGF_Stimulus":"1.41"},{"ID":"FBgn0050007","EGF_Stimulus":"1.27"},{"ID":"FBgn0051510","EGF_Stimulus":"1.23"},{"ID":"FBgn0004406","EGF_Stimulus":"-0.99"},{"ID":"FBgn0039769","EGF_Stimulus":"0.53"},{"ID":"FBgn0052313","EGF_Stimulus":"-0.79"},{"ID":"FBgn0033755","EGF_Stimulus":"-1.37"},{"ID":"FBgn0002525","EGF_Stimulus":"-1.42"},{"ID":"FBgn0036381","EGF_Stimulus":"1.6"},{"ID":"FBgn0032688","EGF_Stimulus":"0.47"},{"ID":"FBgn0051860","EGF_Stimulus":"0.42"},{"ID":"FBgn0038017","EGF_Stimulus":"-2.47"},{"ID":"FBgn0030407","EGF_Stimulus":"0.5"},{"ID":"FBgn0051119","EGF_Stimulus":"0.65"},{"ID":"FBgn0033110","EGF_Stimulus":"0.62"},{"ID":"FBgn0020414","EGF_Stimulus":"-0.11"},{"ID":"FBgn0011259","EGF_Stimulus":"0.32"},{"ID":"FBgn0001296","EGF_Stimulus":"1.28"},{"ID":"FBgn0036497","EGF_Stimulus":"0.89"},{"ID":"FBgn0051809","EGF_Stimulus":"-1.61"},{"ID":"FBgn0036486","EGF_Stimulus":"0.72"},{"ID":"FBgn0013433","EGF_Stimulus":"0.54"},{"ID":"FBgn0037060","EGF_Stimulus":"0.85"},{"ID":"FBgn0036768","EGF_Stimulus":"0.34"},{"ID":"FBgn0036889","EGF_Stimulus":"0.91"},{"ID":"FBgn0030915","EGF_Stimulus":"-1.39"},{"ID":"FBgn0032524","EGF_Stimulus":"-1.02"},{"ID":"FBgn0028963","EGF_Stimulus":"0.83"},{"ID":"FBgn0028397","EGF_Stimulus":"1.57"},{"ID":"FBgn0037428","EGF_Stimulus":"0.49"},{"ID":"FBgn0032236","EGF_Stimulus":"-0.57"},{"ID":"FBgn0037090","EGF_Stimulus":"1.43"},{"ID":"FBgn0035763","EGF_Stimulus":"-2.24"},{"ID":"FBgn0014023","EGF_Stimulus":"0.93"},{"ID":"FBgn0032879","EGF_Stimulus":"-2.78"},{"ID":"FBgn0032643","EGF_Stimulus":"1.37"},{"ID":"FBgn0028569","EGF_Stimulus":"-1.01"},{"ID":"FBgn0035674","EGF_Stimulus":"-0.6"},{"ID":"FBgn0085382","EGF_Stimulus":"-0.61"},{"ID":"FBgn0038886","EGF_Stimulus":"-0.84"},{"ID":"FBgn0036620","EGF_Stimulus":"1.01"},{"ID":"FBgn0003969","EGF_Stimulus":"0.66"},{"ID":"FBgn0004516","EGF_Stimulus":"-1.09"},{"ID":"FBgn0085541","EGF_Stimulus":"-0.89"},{"ID":"FBgn0052373","EGF_Stimulus":"-0.68"},{"ID":"FBgn0010909","EGF_Stimulus":"0.07"},{"ID":"FBgn0038892","EGF_Stimulus":"0.45"},{"ID":"FBgn0030102","EGF_Stimulus":"0.34"},{"ID":"FBgn0029846","EGF_Stimulus":"-0.94"},{"ID":"FBgn0015031","EGF_Stimulus":"-1.04"},{"ID":"FBgn0037911","EGF_Stimulus":"1.23"},{"ID":"FBgn0037645","EGF_Stimulus":"0.76"},{"ID":"FBgn0037022","EGF_Stimulus":"0.97"},{"ID":"FBgn0032116","EGF_Stimulus":"0.44"},{"ID":"FBgn0039354","EGF_Stimulus":"0.82"},{"ID":"FBgn0036010","EGF_Stimulus":"0.95"},{"ID":"FBgn0035094","EGF_Stimulus":"0.6"},{"ID":"FBgn0002707","EGF_Stimulus":"-1.76"},{"ID":"FBgn0261822","EGF_Stimulus":"-2.38"},{"ID":"FBgn0011481","EGF_Stimulus":"1.06"},{"ID":"FBgn0039250","EGF_Stimulus":"-1.01"},{"ID":"FBgn0061515","EGF_Stimulus":"0.84"},{"ID":"FBgn0038303","EGF_Stimulus":"-0.36"},{"ID":"FBgn0033752","EGF_Stimulus":"1.63"},{"ID":"FBgn0002945","EGF_Stimulus":"-0.87"},{"ID":"FBgn0036947","EGF_Stimulus":"0.51"},{"ID":"FBgn0031544","EGF_Stimulus":"0.35"},{"ID":"FBgn0052179","EGF_Stimulus":"1.32"},{"ID":"FBgn0038195","EGF_Stimulus":"0.77"},{"ID":"FBgn0019662","EGF_Stimulus":"-0.71"},{"ID":"FBgn0052230","EGF_Stimulus":"-1.04"},{"ID":"FBgn0054005","EGF_Stimulus":"-0.65"},{"ID":"FBgn0000551","EGF_Stimulus":"1.53"},{"ID":"FBgn0038089","EGF_Stimulus":"1.74"},{"ID":"FBgn0035134","EGF_Stimulus":"-0.76"},{"ID":"FBgn0036512","EGF_Stimulus":"1.37"},{"ID":"FBgn0031724","EGF_Stimulus":"-0.81"},{"ID":"FBgn0052161","EGF_Stimulus":"-1.68"},{"ID":"FBgn0051729","EGF_Stimulus":"-2"},{"ID":"FBgn0052343","EGF_Stimulus":"-0.23"},{"ID":"FBgn0004591","EGF_Stimulus":"-1"},{"ID":"FBgn0033459","EGF_Stimulus":"0.78"},{"ID":"FBgn0034197","EGF_Stimulus":"0.5"},{"ID":"FBgn0020261","EGF_Stimulus":"-1.83"},{"ID":"FBgn0052681","EGF_Stimulus":"-0.55"},{"ID":"FBgn0038811","EGF_Stimulus":"0.93"},{"ID":"FBgn0033174","EGF_Stimulus":"0.3"},{"ID":"FBgn0029152","EGF_Stimulus":"-1.32"},{"ID":"FBgn0031232","EGF_Stimulus":"-1.2"},{"ID":"FBgn0023495","EGF_Stimulus":"1.25"},{"ID":"FBgn0039257","EGF_Stimulus":"-0.2"},{"ID":"FBgn0036451","EGF_Stimulus":"-0.68"},{"ID":"FBgn0003130","EGF_Stimulus":"-0.25"},{"ID":"FBgn0024980","EGF_Stimulus":"0.72"},{"ID":"FBgn0034225","EGF_Stimulus":"-0.45"},{"ID":"FBgn0052040","EGF_Stimulus":"0.92"},{"ID":"FBgn0029961","EGF_Stimulus":"0.35"},{"ID":"FBgn0035444","EGF_Stimulus":"2.1"},{"ID":"FBgn0037690","EGF_Stimulus":"0.47"},{"ID":"FBgn0031905","EGF_Stimulus":"-1.75"},{"ID":"FBgn0260459","EGF_Stimulus":"0.64"},{"ID":"FBgn0033769","EGF_Stimulus":"0.29"},{"ID":"FBgn0000565","EGF_Stimulus":"-0.58"},{"ID":"FBgn0014861","EGF_Stimulus":"-0.56"},{"ID":"FBgn0037351","EGF_Stimulus":"-4.36"},{"ID":"FBgn0028858","EGF_Stimulus":"0.51"},{"ID":"FBgn0036286","EGF_Stimulus":"-0.45"},{"ID":"FBgn0031413","EGF_Stimulus":"1.83"},{"ID":"FBgn0033987","EGF_Stimulus":"-0.69"},{"ID":"FBgn0260968","EGF_Stimulus":"-0.78"},{"ID":"FBgn0029704","EGF_Stimulus":"1.48"},{"ID":"FBgn0020386","EGF_Stimulus":"-2.37"},{"ID":"FBgn0039147","EGF_Stimulus":"0.89"},{"ID":"FBgn0030301","EGF_Stimulus":"0.29"},{"ID":"FBgn0063498","EGF_Stimulus":"-0.35"},{"ID":"FBgn0035720","EGF_Stimulus":"-1.18"},{"ID":"FBgn0031460","EGF_Stimulus":"-2.29"},{"ID":"FBgn0261262","EGF_Stimulus":"1.52"},{"ID":"FBgn0039644","EGF_Stimulus":"-0.43"},{"ID":"FBgn0032671","EGF_Stimulus":"0.95"},{"ID":"FBgn0034283","EGF_Stimulus":"0.24"},{"ID":"FBgn0031372","EGF_Stimulus":"0.97"},{"ID":"FBgn0053292","EGF_Stimulus":"-0.54"},{"ID":"FBgn0035982","EGF_Stimulus":"0.19"},{"ID":"FBgn0051804","EGF_Stimulus":"-0.39"},{"ID":"FBgn0038799","EGF_Stimulus":"0.89"},{"ID":"FBgn0027786","EGF_Stimulus":"-0.13"},{"ID":"FBgn0052557","EGF_Stimulus":"-0.52"},{"ID":"FBgn0023527","EGF_Stimulus":"0.76"},{"ID":"FBgn0032911","EGF_Stimulus":"-0.11"},{"ID":"FBgn0021872","EGF_Stimulus":"0.82"},{"ID":"FBgn0031042","EGF_Stimulus":"0.7"},{"ID":"FBgn0050431","EGF_Stimulus":"0.61"},{"ID":"FBgn0032836","EGF_Stimulus":"1.27"},{"ID":"FBgn0051021","EGF_Stimulus":"1.22"},{"ID":"FBgn0033717","EGF_Stimulus":"1.17"},{"ID":"FBgn0063368","EGF_Stimulus":"0.49"},{"ID":"FBgn0036181","EGF_Stimulus":"1.1"},{"ID":"FBgn0039689","EGF_Stimulus":"0.91"},{"ID":"FBgn0052000","EGF_Stimulus":"-2.52"},{"ID":"FBgn0259922","EGF_Stimulus":"-0.5"},{"ID":"FBgn0004403","EGF_Stimulus":"-3.02"},{"ID":"FBgn0000577","EGF_Stimulus":"0.43"},{"ID":"FBgn0001090","EGF_Stimulus":"0.72"},{"ID":"FBgn0029943","EGF_Stimulus":"0.69"},{"ID":"FBgn0034961","EGF_Stimulus":"-0.34"},{"ID":"FBgn0085370","EGF_Stimulus":"1.28"},{"ID":"FBgn0020369","EGF_Stimulus":"-0.99"},{"ID":"FBgn0031969","EGF_Stimulus":"0.24"},{"ID":"FBgn0003254","EGF_Stimulus":"1.32"},{"ID":"FBgn0050043","EGF_Stimulus":"-0.29"},{"ID":"FBgn0033788","EGF_Stimulus":"1"},{"ID":"FBgn0041184","EGF_Stimulus":"3.01"},{"ID":"FBgn0031337","EGF_Stimulus":"1.05"},{"ID":"FBgn0032013","EGF_Stimulus":"0.27"},{"ID":"FBgn0033727","EGF_Stimulus":"-0.21"},{"ID":"FBgn0052668","EGF_Stimulus":"0.87"},{"ID":"FBgn0037560","EGF_Stimulus":"-0.23"},{"ID":"FBgn0034218","EGF_Stimulus":"0.32"},{"ID":"FBgn0035620","EGF_Stimulus":"-0.38"},{"ID":"FBgn0040949","EGF_Stimulus":"-0.5"},{"ID":"FBgn0050110","EGF_Stimulus":"-0.16"},{"ID":"FBgn0033498","EGF_Stimulus":"0.92"},{"ID":"FBgn0029835","EGF_Stimulus":"-0.43"},{"ID":"FBgn0003205","EGF_Stimulus":"-4.87"},{"ID":"FBgn0030683","EGF_Stimulus":"0.75"},{"ID":"FBgn0035372","EGF_Stimulus":"1.41"},{"ID":"FBgn0086251","EGF_Stimulus":"-0.79"},{"ID":"FBgn0030092","EGF_Stimulus":"-0.77"},{"ID":"FBgn0039554","EGF_Stimulus":"1.22"},{"ID":"FBgn0010435","EGF_Stimulus":"-1.44"},{"ID":"FBgn0037068","EGF_Stimulus":"0.65"},{"ID":"FBgn0004362","EGF_Stimulus":"-1.29"},{"ID":"FBgn0032956","EGF_Stimulus":"-0.53"},{"ID":"FBgn0000024","EGF_Stimulus":"1.16"},{"ID":"FBgn0034410","EGF_Stimulus":"-1.06"},{"ID":"FBgn0038257","EGF_Stimulus":"0.47"},{"ID":"FBgn0004369","EGF_Stimulus":"1.2"},{"ID":"FBgn0085330","EGF_Stimulus":"1.84"},{"ID":"FBgn0031872","EGF_Stimulus":"0.33"},{"ID":"FBgn0025336","EGF_Stimulus":"-1.02"},{"ID":"FBgn0033891","EGF_Stimulus":"0.44"},{"ID":"FBgn0023510","EGF_Stimulus":"-0.6"},{"ID":"FBgn0261291","EGF_Stimulus":"-1.52"},{"ID":"FBgn0038678","EGF_Stimulus":"-0.69"},{"ID":"FBgn0017556","EGF_Stimulus":"1.22"},{"ID":"FBgn0259701","EGF_Stimulus":"0.17"},{"ID":"FBgn0036640","EGF_Stimulus":"0.89"},{"ID":"FBgn0036880","EGF_Stimulus":"-0.71"},{"ID":"FBgn0030439","EGF_Stimulus":"-0.73"},{"ID":"FBgn0030735","EGF_Stimulus":"-1.67"},{"ID":"FBgn0261285","EGF_Stimulus":"1.11"},{"ID":"FBgn0085430","EGF_Stimulus":"-0.79"},{"ID":"FBgn0038458","EGF_Stimulus":"1.27"},{"ID":"FBgn0031115","EGF_Stimulus":"0.34"},{"ID":"FBgn0037881","EGF_Stimulus":"0.55"},{"ID":"FBgn0035892","EGF_Stimulus":"0.49"},{"ID":"FBgn0010591","EGF_Stimulus":"0.85"},{"ID":"FBgn0034573","EGF_Stimulus":"-1.01"},{"ID":"FBgn0028516","EGF_Stimulus":"-0.18"},{"ID":"FBgn0261634","EGF_Stimulus":"0.35"},{"ID":"FBgn0032024","EGF_Stimulus":"0.75"},{"ID":"FBgn0001256","EGF_Stimulus":"1.53"},{"ID":"FBgn0039802","EGF_Stimulus":"0.95"},{"ID":"FBgn0010040","EGF_Stimulus":"0.59"},{"ID":"FBgn0000490","EGF_Stimulus":"0.71"},{"ID":"FBgn0038499","EGF_Stimulus":"-2.13"},{"ID":"FBgn0011743","EGF_Stimulus":"-0.45"},{"ID":"FBgn0030964","EGF_Stimulus":"0.72"},{"ID":"FBgn0052572","EGF_Stimulus":"0.61"},{"ID":"FBgn0038168","EGF_Stimulus":"-1.3"},{"ID":"FBgn0027554","EGF_Stimulus":"-0.44"},{"ID":"FBgn0038166","EGF_Stimulus":"0.53"},{"ID":"FBgn0032699","EGF_Stimulus":"0.49"},{"ID":"FBgn0030895","EGF_Stimulus":"-0.58"},{"ID":"FBgn0033868","EGF_Stimulus":"1.06"},{"ID":"FBgn0053111","EGF_Stimulus":"0.64"},{"ID":"FBgn0036147","EGF_Stimulus":"1"},{"ID":"FBgn0038851","EGF_Stimulus":"1.33"},{"ID":"FBgn0010019","EGF_Stimulus":"-0.62"},{"ID":"FBgn0028375","EGF_Stimulus":"0.57"},{"ID":"FBgn0087035","EGF_Stimulus":"-5.84"},{"ID":"FBgn0037683","EGF_Stimulus":"-1.05"},{"ID":"FBgn0085351","EGF_Stimulus":"0.83"},{"ID":"FBgn0039666","EGF_Stimulus":"0.35"},{"ID":"FBgn0051410","EGF_Stimulus":"-2.8"},{"ID":"FBgn0032585","EGF_Stimulus":"0.6"},{"ID":"FBgn0259247","EGF_Stimulus":"-0.96"},{"ID":"FBgn0030695","EGF_Stimulus":"-0.7"},{"ID":"FBgn0037950","EGF_Stimulus":"0.5"},{"ID":"FBgn0039088","EGF_Stimulus":"-0.62"},{"ID":"FBgn0011722","EGF_Stimulus":"-0.72"},{"ID":"FBgn0261395","EGF_Stimulus":"-0.46"},{"ID":"FBgn0038223","EGF_Stimulus":"1.94"},{"ID":"FBgn0034276","EGF_Stimulus":"-1.56"},{"ID":"FBgn0030345","EGF_Stimulus":"0.63"},{"ID":"FBgn0036815","EGF_Stimulus":"0.51"},{"ID":"FBgn0037780","EGF_Stimulus":"-0.41"},{"ID":"FBgn0038132","EGF_Stimulus":"0.47"},{"ID":"FBgn0085312","EGF_Stimulus":"-1.43"},{"ID":"FBgn0036782","EGF_Stimulus":"-1.27"},{"ID":"FBgn0034871","EGF_Stimulus":"0.61"},{"ID":"FBgn0259878","EGF_Stimulus":"0.58"},{"ID":"FBgn0003482","EGF_Stimulus":"-1.59"},{"ID":"FBgn0033927","EGF_Stimulus":"-0.92"},{"ID":"FBgn0032087","EGF_Stimulus":"0.71"},{"ID":"FBgn0030018","EGF_Stimulus":"1.71"},{"ID":"FBgn0036352","EGF_Stimulus":"1.43"},{"ID":"FBgn0051032","EGF_Stimulus":"0.89"},{"ID":"FBgn0034902","EGF_Stimulus":"0.3"},{"ID":"FBgn0028370","EGF_Stimulus":"-1.53"},{"ID":"FBgn0035753","EGF_Stimulus":"-4.48"},{"ID":"FBgn0025525","EGF_Stimulus":"0.41"},{"ID":"FBgn0000557","EGF_Stimulus":"-1.86"},{"ID":"FBgn0031284","EGF_Stimulus":"0.11"},{"ID":"FBgn0030400","EGF_Stimulus":"-1.63"},{"ID":"FBgn0034552","EGF_Stimulus":"0.37"},{"ID":"FBgn0026150","EGF_Stimulus":"-1"},{"ID":"FBgn0036862","EGF_Stimulus":"0.59"},{"ID":"FBgn0036324","EGF_Stimulus":"1.32"},{"ID":"FBgn0033995","EGF_Stimulus":"-1.81"},{"ID":"FBgn0015791","EGF_Stimulus":"0.65"},{"ID":"FBgn0031187","EGF_Stimulus":"-1.32"},{"ID":"FBgn0001123","EGF_Stimulus":"-1.33"},{"ID":"FBgn0035911","EGF_Stimulus":"1.15"},{"ID":"FBgn0033861","EGF_Stimulus":"0.61"},{"ID":"FBgn0036249","EGF_Stimulus":"-1.01"},{"ID":"FBgn0086611","EGF_Stimulus":"-1.28"},{"ID":"FBgn0027582","EGF_Stimulus":"0.31"},{"ID":"FBgn0037465","EGF_Stimulus":"-0.81"},{"ID":"FBgn0035176","EGF_Stimulus":"1.07"},{"ID":"FBgn0031252","EGF_Stimulus":"-0.72"},{"ID":"FBgn0053281","EGF_Stimulus":"0.82"},{"ID":"FBgn0033742","EGF_Stimulus":"-0.08"},{"ID":"FBgn0038511","EGF_Stimulus":"0.7"},{"ID":"FBgn0039153","EGF_Stimulus":"0.47"},{"ID":"FBgn0004867","EGF_Stimulus":"-4.5"},{"ID":"FBgn0031217","EGF_Stimulus":"-0.6"},{"ID":"FBgn0051475","EGF_Stimulus":"0.87"},{"ID":"FBgn0037344","EGF_Stimulus":"-0.86"},{"ID":"FBgn0037387","EGF_Stimulus":"0.72"},{"ID":"FBgn0035458","EGF_Stimulus":"-1.54"},{"ID":"FBgn0261619","EGF_Stimulus":"-4.53"},{"ID":"FBgn0004244","EGF_Stimulus":"1.35"},{"ID":"FBgn0027561","EGF_Stimulus":"-0.55"},{"ID":"FBgn0034027","EGF_Stimulus":"-0.64"},{"ID":"FBgn0032494","EGF_Stimulus":"1.53"},{"ID":"FBgn0030011","EGF_Stimulus":"-0.55"},{"ID":"FBgn0011829","EGF_Stimulus":"0.79"},{"ID":"FBgn0036590","EGF_Stimulus":"-1.4"},{"ID":"FBgn0002933","EGF_Stimulus":"0.82"},{"ID":"FBgn0030051","EGF_Stimulus":"-1.31"},{"ID":"FBgn0031476","EGF_Stimulus":"0.37"},{"ID":"FBgn0039344","EGF_Stimulus":"-0.61"},{"ID":"FBgn0035524","EGF_Stimulus":"-0.63"},{"ID":"FBgn0034931","EGF_Stimulus":"-2.96"},{"ID":"FBgn0037933","EGF_Stimulus":"0.92"},{"ID":"FBgn0032514","EGF_Stimulus":"-1.11"},{"ID":"FBgn0031941","EGF_Stimulus":"1.41"},{"ID":"FBgn0032119","EGF_Stimulus":"0.49"},{"ID":"FBgn0034914","EGF_Stimulus":"-1.24"},{"ID":"FBgn0053234","EGF_Stimulus":"-1.04"},{"ID":"FBgn0029667","EGF_Stimulus":"-0.8"},{"ID":"FBgn0032437","EGF_Stimulus":"-1.69"},{"ID":"FBgn0034651","EGF_Stimulus":"-0.56"},{"ID":"FBgn0086907","EGF_Stimulus":"0.56"},{"ID":"FBgn0015777","EGF_Stimulus":"0.77"},{"ID":"FBgn0034143","EGF_Stimulus":"-0.46"},{"ID":"FBgn0051793","EGF_Stimulus":"-0.97"},{"ID":"FBgn0038957","EGF_Stimulus":"-0.4"},{"ID":"FBgn0035462","EGF_Stimulus":"0.62"},{"ID":"FBgn0035210","EGF_Stimulus":"1.65"},{"ID":"FBgn0034127","EGF_Stimulus":"-0.27"},{"ID":"FBgn0026372","EGF_Stimulus":"-3.58"},{"ID":"FBgn0260934","EGF_Stimulus":"-1.56"},{"ID":"FBgn0037414","EGF_Stimulus":"-0.38"},{"ID":"FBgn0035082","EGF_Stimulus":"0.22"},{"ID":"FBgn0039774","EGF_Stimulus":"0.71"},{"ID":"FBgn0039008","EGF_Stimulus":"-0.77"},{"ID":"FBgn0013753","EGF_Stimulus":"-0.15"},{"ID":"FBgn0051643","EGF_Stimulus":"-0.74"},{"ID":"FBgn0259716","EGF_Stimulus":"0.54"},{"ID":"FBgn0028572","EGF_Stimulus":"0.24"},{"ID":"FBgn0029649","EGF_Stimulus":"0.37"},{"ID":"FBgn0040340","EGF_Stimulus":"0.79"},{"ID":"FBgn0086901","EGF_Stimulus":"-0.73"},{"ID":"FBgn0035057","EGF_Stimulus":"0.53"},{"ID":"FBgn0033573","EGF_Stimulus":"-1.07"},{"ID":"FBgn0037295","EGF_Stimulus":"2.27"},{"ID":"FBgn0052483","EGF_Stimulus":"-0.27"},{"ID":"FBgn0034330","EGF_Stimulus":"0.39"},{"ID":"FBgn0036925","EGF_Stimulus":"-0.35"},{"ID":"FBgn0015625","EGF_Stimulus":"1.08"},{"ID":"FBgn0028369","EGF_Stimulus":"0.55"},{"ID":"FBgn0051525","EGF_Stimulus":"1.26"},{"ID":"FBgn0035915","EGF_Stimulus":"-0.67"},{"ID":"FBgn0038723","EGF_Stimulus":"0.58"},{"ID":"FBgn0037906","EGF_Stimulus":"-0.44"},{"ID":"FBgn0014010","EGF_Stimulus":"-5.77"},{"ID":"FBgn0004395","EGF_Stimulus":"-1.63"},{"ID":"FBgn0053460","EGF_Stimulus":"-0.77"},{"ID":"FBgn0032880","EGF_Stimulus":"-4.64"},{"ID":"FBgn0053919","EGF_Stimulus":"1.27"},{"ID":"FBgn0053252","EGF_Stimulus":"-0.48"},{"ID":"FBgn0037974","EGF_Stimulus":"1.07"},{"ID":"FBgn0030877","EGF_Stimulus":"-0.92"},{"ID":"FBgn0026192","EGF_Stimulus":"1.77"},{"ID":"FBgn0031052","EGF_Stimulus":"-1.42"},{"ID":"FBgn0024248","EGF_Stimulus":"-1.29"},{"ID":"FBgn0000147","EGF_Stimulus":"-5.37"},{"ID":"FBgn0030812","EGF_Stimulus":"-0.93"},{"ID":"FBgn0052645","EGF_Stimulus":"0.76"},{"ID":"FBgn0037220","EGF_Stimulus":"2.04"},{"ID":"FBgn0022960","EGF_Stimulus":"-0.65"},{"ID":"FBgn0033365","EGF_Stimulus":"0.45"},{"ID":"FBgn0036998","EGF_Stimulus":"0.91"},{"ID":"FBgn0038054","EGF_Stimulus":"-0.87"},{"ID":"FBgn0038461","EGF_Stimulus":"1.23"},{"ID":"FBgn0035947","EGF_Stimulus":"0.35"},{"ID":"FBgn0046258","EGF_Stimulus":"0.27"},{"ID":"FBgn0032222","EGF_Stimulus":"0.94"},{"ID":"FBgn0028434","EGF_Stimulus":"-2.01"},{"ID":"FBgn0024994","EGF_Stimulus":"-1.07"},{"ID":"FBgn0261723","EGF_Stimulus":"0.63"},{"ID":"FBgn0031435","EGF_Stimulus":"0.98"},{"ID":"FBgn0030876","EGF_Stimulus":"-0.21"},{"ID":"FBgn0010323","EGF_Stimulus":"1.42"},{"ID":"FBgn0021765","EGF_Stimulus":"0.73"},{"ID":"FBgn0036325","EGF_Stimulus":"1.48"},{"ID":"FBgn0038859","EGF_Stimulus":"0.79"},{"ID":"FBgn0038546","EGF_Stimulus":"-0.8"},{"ID":"FBgn0034510","EGF_Stimulus":"0.68"},{"ID":"FBgn0016792","EGF_Stimulus":"-3.27"},{"ID":"FBgn0016697","EGF_Stimulus":"-2.43"},{"ID":"FBgn0030851","EGF_Stimulus":"-1.11"},{"ID":"FBgn0031391","EGF_Stimulus":"0.78"},{"ID":"FBgn0033593","EGF_Stimulus":"0.54"},{"ID":"FBgn0028862","EGF_Stimulus":"0.38"},{"ID":"FBgn0024977","EGF_Stimulus":"0.65"},{"ID":"FBgn0036217","EGF_Stimulus":"0.36"},{"ID":"FBgn0034704","EGF_Stimulus":"-0.64"},{"ID":"FBgn0250785","EGF_Stimulus":"0.67"},{"ID":"FBgn0083956","EGF_Stimulus":"0.64"},{"ID":"FBgn0035469","EGF_Stimulus":"1.47"},{"ID":"FBgn0039889","EGF_Stimulus":"0.51"},{"ID":"FBgn0030612","EGF_Stimulus":"-0.99"},{"ID":"FBgn0001079","EGF_Stimulus":"0.59"},{"ID":"FBgn0037139","EGF_Stimulus":"1.86"},{"ID":"FBgn0039319","EGF_Stimulus":"0.22"},{"ID":"FBgn0003520","EGF_Stimulus":"1.12"},{"ID":"FBgn0260789","EGF_Stimulus":"-1.4"},{"ID":"FBgn0039297","EGF_Stimulus":"0.25"},{"ID":"FBgn0030258","EGF_Stimulus":"0.77"},{"ID":"FBgn0038429","EGF_Stimulus":"-1.18"},{"ID":"FBgn0032972","EGF_Stimulus":"-0.31"},{"ID":"FBgn0040322","EGF_Stimulus":"0.45"},{"ID":"FBgn0037855","EGF_Stimulus":"1.31"},{"ID":"FBgn0036362","EGF_Stimulus":"1.15"},{"ID":"FBgn0039368","EGF_Stimulus":"-0.42"},{"ID":"FBgn0035159","EGF_Stimulus":"-0.5"},{"ID":"FBgn0036688","EGF_Stimulus":"-0.67"},{"ID":"FBgn0019936","EGF_Stimulus":"-2.93"},{"ID":"FBgn0036665","EGF_Stimulus":"-1.53"},{"ID":"FBgn0028427","EGF_Stimulus":"0.62"},{"ID":"FBgn0033247","EGF_Stimulus":"0.52"},{"ID":"FBgn0040967","EGF_Stimulus":"0.7"},{"ID":"FBgn0034697","EGF_Stimulus":"-0.37"},{"ID":"FBgn0260437","EGF_Stimulus":"-0.73"},{"ID":"FBgn0040079","EGF_Stimulus":"0.99"},{"ID":"FBgn0039312","EGF_Stimulus":"0.54"},{"ID":"FBgn0026582","EGF_Stimulus":"-1.47"},{"ID":"FBgn0039081","EGF_Stimulus":"1.08"},{"ID":"FBgn0037985","EGF_Stimulus":"0.68"},{"ID":"FBgn0035867","EGF_Stimulus":"1.3"},{"ID":"FBgn0052268","EGF_Stimulus":"1.17"},{"ID":"FBgn0259734","EGF_Stimulus":"2.02"},{"ID":"FBgn0027835","EGF_Stimulus":"-0.69"},{"ID":"FBgn0035343","EGF_Stimulus":"1.23"},{"ID":"FBgn0030477","EGF_Stimulus":"0.63"},{"ID":"FBgn0038076","EGF_Stimulus":"1.06"},{"ID":"FBgn0041626","EGF_Stimulus":"0.93"},{"ID":"FBgn0038531","EGF_Stimulus":"-0.25"},{"ID":"FBgn0015925","EGF_Stimulus":"0.92"},{"ID":"FBgn0037330","EGF_Stimulus":"1.19"},{"ID":"FBgn0031926","EGF_Stimulus":"0.79"},{"ID":"FBgn0015721","EGF_Stimulus":"0.91"},{"ID":"FBgn0010830","EGF_Stimulus":"0.78"},{"ID":"FBgn0039828","EGF_Stimulus":"-1.08"},{"ID":"FBgn0033817","EGF_Stimulus":"-0.18"},{"ID":"FBgn0031639","EGF_Stimulus":"-0.4"},{"ID":"FBgn0029768","EGF_Stimulus":"1.1"},{"ID":"FBgn0035491","EGF_Stimulus":"0.54"},{"ID":"FBgn0027335","EGF_Stimulus":"-0.48"},{"ID":"FBgn0036715","EGF_Stimulus":"0.37"},{"ID":"FBgn0030004","EGF_Stimulus":"0.89"},{"ID":"FBgn0051163","EGF_Stimulus":"0.86"},{"ID":"FBgn0036264","EGF_Stimulus":"0.32"},{"ID":"FBgn0038114","EGF_Stimulus":"-0.57"},{"ID":"FBgn0045487","EGF_Stimulus":"-1.46"},{"ID":"FBgn0033640","EGF_Stimulus":"0.72"},{"ID":"FBgn0003719","EGF_Stimulus":"-1.45"},{"ID":"FBgn0261554","EGF_Stimulus":"-1.22"},{"ID":"FBgn0000206","EGF_Stimulus":"0.55"},{"ID":"FBgn0002569","EGF_Stimulus":"0.56"},{"ID":"FBgn0040366","EGF_Stimulus":"-0.16"},{"ID":"FBgn0003943","EGF_Stimulus":"-0.63"},{"ID":"FBgn0046696","EGF_Stimulus":"-1.02"},{"ID":"FBgn0029853","EGF_Stimulus":"0.94"},{"ID":"FBgn0085369","EGF_Stimulus":"1.04"},{"ID":"FBgn0032730","EGF_Stimulus":"0.44"},{"ID":"FBgn0031925","EGF_Stimulus":"0.39"},{"ID":"FBgn0259098","EGF_Stimulus":"-1.06"},{"ID":"FBgn0038293","EGF_Stimulus":"0.6"},{"ID":"FBgn0030354","EGF_Stimulus":"-2"},{"ID":"FBgn0035150","EGF_Stimulus":"1.2"},{"ID":"FBgn0035431","EGF_Stimulus":"0.83"},{"ID":"FBgn0019940","EGF_Stimulus":"-0.21"},{"ID":"FBgn0027296","EGF_Stimulus":"0.92"},{"ID":"FBgn0034317","EGF_Stimulus":"0.52"},{"ID":"FBgn0035271","EGF_Stimulus":"1.31"},{"ID":"FBgn0036372","EGF_Stimulus":"0.81"},{"ID":"FBgn0019949","EGF_Stimulus":"2.33"},{"ID":"FBgn0034494","EGF_Stimulus":"-0.76"},{"ID":"FBgn0261356","EGF_Stimulus":"1.18"},{"ID":"FBgn0037231","EGF_Stimulus":"1.08"},{"ID":"FBgn0001337","EGF_Stimulus":"0.62"},{"ID":"FBgn0042189","EGF_Stimulus":"-1.09"},{"ID":"FBgn0030846","EGF_Stimulus":"0.98"},{"ID":"FBgn0036062","EGF_Stimulus":"-0.47"},{"ID":"FBgn0085498","EGF_Stimulus":"-1.09"},{"ID":"FBgn0031853","EGF_Stimulus":"-0.8"},{"ID":"FBgn0003375","EGF_Stimulus":"0.31"},{"ID":"FBgn0038491","EGF_Stimulus":"0.43"},{"ID":"FBgn0033132","EGF_Stimulus":"-0.88"},{"ID":"FBgn0034413","EGF_Stimulus":"-0.47"},{"ID":"FBgn0051419","EGF_Stimulus":"-0.62"},{"ID":"FBgn0052944","EGF_Stimulus":"-0.94"},{"ID":"FBgn0051855","EGF_Stimulus":"-1.28"},{"ID":"FBgn0039682","EGF_Stimulus":"-1.02"},{"ID":"FBgn0039290","EGF_Stimulus":"0.97"},{"ID":"FBgn0085280","EGF_Stimulus":"-1.84"},{"ID":"FBgn0052677","EGF_Stimulus":"0.59"},{"ID":"FBgn0036222","EGF_Stimulus":"0.92"},{"ID":"FBgn0034240","EGF_Stimulus":"-0.49"},{"ID":"FBgn0034037","EGF_Stimulus":"-1.07"},{"ID":"FBgn0051380","EGF_Stimulus":"0.45"},{"ID":"FBgn0033502","EGF_Stimulus":"-0.99"},{"ID":"FBgn0034786","EGF_Stimulus":"0.17"},{"ID":"FBgn0034133","EGF_Stimulus":"0.31"},{"ID":"FBgn0013672","EGF_Stimulus":"0.4"},{"ID":"FBgn0033540","EGF_Stimulus":"-0.48"},{"ID":"FBgn0033971","EGF_Stimulus":"0.26"},{"ID":"FBgn0038355","EGF_Stimulus":"-0.12"},{"ID":"FBgn0031758","EGF_Stimulus":"1.08"},{"ID":"FBgn0031379","EGF_Stimulus":"0.5"},{"ID":"FBgn0004028","EGF_Stimulus":"0.67"},{"ID":"FBgn0030163","EGF_Stimulus":"-0.25"},{"ID":"FBgn0037378","EGF_Stimulus":"-0.63"},{"ID":"FBgn0034923","EGF_Stimulus":"-1.27"},{"ID":"FBgn0028938","EGF_Stimulus":"-0.92"},{"ID":"FBgn0035102","EGF_Stimulus":"-0.13"},{"ID":"FBgn0038983","EGF_Stimulus":"-0.64"},{"ID":"FBgn0037580","EGF_Stimulus":"0.62"},{"ID":"FBgn0034601","EGF_Stimulus":"-1.52"},{"ID":"FBgn0051954","EGF_Stimulus":"1.05"},{"ID":"FBgn0023178","EGF_Stimulus":"-1.38"},{"ID":"FBgn0039404","EGF_Stimulus":"-2.1"},{"ID":"FBgn0038218","EGF_Stimulus":"1.03"},{"ID":"FBgn0000360","EGF_Stimulus":"-0.77"},{"ID":"FBgn0003149","EGF_Stimulus":"-0.75"},{"ID":"FBgn0037134","EGF_Stimulus":"0.51"},{"ID":"FBgn0013764","EGF_Stimulus":"0.61"},{"ID":"FBgn0039360","EGF_Stimulus":"-0.68"},{"ID":"FBgn0028987","EGF_Stimulus":"0.46"},{"ID":"FBgn0033448","EGF_Stimulus":"1.68"},{"ID":"FBgn0036260","EGF_Stimulus":"-1.69"},{"ID":"FBgn0054025","EGF_Stimulus":"-0.14"},{"ID":"FBgn0035392","EGF_Stimulus":"0.53"},{"ID":"FBgn0033834","EGF_Stimulus":"0.12"},{"ID":"FBgn0033658","EGF_Stimulus":"-0.34"},{"ID":"FBgn0053689","EGF_Stimulus":"0.94"},{"ID":"FBgn0024542","EGF_Stimulus":"0.52"},{"ID":"FBgn0023507","EGF_Stimulus":"0.94"},{"ID":"FBgn0036240","EGF_Stimulus":"-0.15"},{"ID":"FBgn0040355","EGF_Stimulus":"0.59"},{"ID":"FBgn0050286","EGF_Stimulus":"-0.46"},{"ID":"FBgn0052703","EGF_Stimulus":"0.8"},{"ID":"FBgn0053465","EGF_Stimulus":"-0.72"},{"ID":"FBgn0011291","EGF_Stimulus":"1.62"},{"ID":"FBgn0038108","EGF_Stimulus":"-1.15"},{"ID":"FBgn0031971","EGF_Stimulus":"-0.81"},{"ID":"FBgn0030759","EGF_Stimulus":"0.3"},{"ID":"FBgn0085411","EGF_Stimulus":"-0.73"},{"ID":"FBgn0028372","EGF_Stimulus":"0.75"},{"ID":"FBgn0033961","EGF_Stimulus":"-0.5"},{"ID":"FBgn0033683","EGF_Stimulus":"1.11"},{"ID":"FBgn0015571","EGF_Stimulus":"1.48"},{"ID":"FBgn0046697","EGF_Stimulus":"1.22"},{"ID":"FBgn0019948","EGF_Stimulus":"-1.06"},{"ID":"FBgn0033479","EGF_Stimulus":"0.61"},{"ID":"FBgn0016672","EGF_Stimulus":"0.58"},{"ID":"FBgn0052249","EGF_Stimulus":"0.92"},{"ID":"FBgn0034401","EGF_Stimulus":"-1.53"},{"ID":"FBgn0015803","EGF_Stimulus":"0.72"},{"ID":"FBgn0034406","EGF_Stimulus":"1.41"},{"ID":"FBgn0001330","EGF_Stimulus":"-0.68"},{"ID":"FBgn0010441","EGF_Stimulus":"1.2"},{"ID":"FBgn0036941","EGF_Stimulus":"-0.19"},{"ID":"FBgn0001142","EGF_Stimulus":"0.52"},{"ID":"FBgn0003169","EGF_Stimulus":"0.43"},{"ID":"FBgn0037232","EGF_Stimulus":"0.57"},{"ID":"FBgn0004419","EGF_Stimulus":"-3.48"},{"ID":"FBgn0037808","EGF_Stimulus":"-1.87"},{"ID":"FBgn0052104","EGF_Stimulus":"0.74"},{"ID":"FBgn0036956","EGF_Stimulus":"0.89"},{"ID":"FBgn0029700","EGF_Stimulus":"0.51"},{"ID":"FBgn0029665","EGF_Stimulus":"-0.22"},{"ID":"FBgn0034428","EGF_Stimulus":"0.59"},{"ID":"FBgn0028422","EGF_Stimulus":"0.24"},{"ID":"FBgn0037662","EGF_Stimulus":"-0.26"},{"ID":"FBgn0029722","EGF_Stimulus":"-0.79"},{"ID":"FBgn0041229","EGF_Stimulus":"0.59"},{"ID":"FBgn0029173","EGF_Stimulus":"1.01"},{"ID":"FBgn0033194","EGF_Stimulus":"1.2"},{"ID":"FBgn0035817","EGF_Stimulus":"1.13"},{"ID":"FBgn0036223","EGF_Stimulus":"0.36"},{"ID":"FBgn0017457","EGF_Stimulus":"-0.99"},{"ID":"FBgn0050195","EGF_Stimulus":"-0.37"},{"ID":"FBgn0030357","EGF_Stimulus":"-0.63"},{"ID":"FBgn0038874","EGF_Stimulus":"0.36"},{"ID":"FBgn0000442","EGF_Stimulus":"0.63"},{"ID":"FBgn0035520","EGF_Stimulus":"0.52"},{"ID":"FBgn0038612","EGF_Stimulus":"-0.23"},{"ID":"FBgn0042085","EGF_Stimulus":"-1"},{"ID":"FBgn0039862","EGF_Stimulus":"1.54"},{"ID":"FBgn0039838","EGF_Stimulus":"-0.28"},{"ID":"FBgn0050185","EGF_Stimulus":"-0.96"},{"ID":"FBgn0024956","EGF_Stimulus":"-0.55"},{"ID":"FBgn0034982","EGF_Stimulus":"-0.41"},{"ID":"FBgn0040070","EGF_Stimulus":"0.72"},{"ID":"FBgn0037653","EGF_Stimulus":"1.06"},{"ID":"FBgn0025630","EGF_Stimulus":"0.79"},{"ID":"FBgn0025683","EGF_Stimulus":"0.57"},{"ID":"FBgn0002914","EGF_Stimulus":"-2.62"},{"ID":"FBgn0037574","EGF_Stimulus":"1.34"},{"ID":"FBgn0032856","EGF_Stimulus":"-1.27"},{"ID":"FBgn0001986","EGF_Stimulus":"-1.11"},{"ID":"FBgn0034118","EGF_Stimulus":"1.37"},{"ID":"FBgn0020300","EGF_Stimulus":"1.4"},{"ID":"FBgn0038752","EGF_Stimulus":"0.81"},{"ID":"FBgn0034290","EGF_Stimulus":"-1.73"},{"ID":"FBgn0037142","EGF_Stimulus":"1.69"},{"ID":"FBgn0003382","EGF_Stimulus":"0.46"},{"ID":"FBgn0000287","EGF_Stimulus":"0.71"},{"ID":"FBgn0032988","EGF_Stimulus":"-1.61"},{"ID":"FBgn0039286","EGF_Stimulus":"-0.59"},{"ID":"FBgn0032790","EGF_Stimulus":"-0.48"},{"ID":"FBgn0030804","EGF_Stimulus":"0.45"},{"ID":"FBgn0039264","EGF_Stimulus":"0.26"},{"ID":"FBgn0003502","EGF_Stimulus":"1.14"},{"ID":"FBgn0032032","EGF_Stimulus":"0.86"},{"ID":"FBgn0038401","EGF_Stimulus":"1.41"},{"ID":"FBgn0016726","EGF_Stimulus":"0.94"},{"ID":"FBgn0041203","EGF_Stimulus":"1.07"},{"ID":"FBgn0039463","EGF_Stimulus":"0.91"},{"ID":"FBgn0037167","EGF_Stimulus":"0.75"},{"ID":"FBgn0031573","EGF_Stimulus":"-0.82"},{"ID":"FBgn0039821","EGF_Stimulus":"0.76"},{"ID":"FBgn0010407","EGF_Stimulus":"-0.19"},{"ID":"FBgn0038741","EGF_Stimulus":"-1.69"},{"ID":"FBgn0036708","EGF_Stimulus":"-0.75"},{"ID":"FBgn0010417","EGF_Stimulus":"0.79"},{"ID":"FBgn0033816","EGF_Stimulus":"-0.12"},{"ID":"FBgn0261790","EGF_Stimulus":"0.9"},{"ID":"FBgn0034062","EGF_Stimulus":"-1.01"},{"ID":"FBgn0032754","EGF_Stimulus":"-0.45"},{"ID":"FBgn0037569","EGF_Stimulus":"-0.24"},{"ID":"FBgn0031126","EGF_Stimulus":"-0.46"},{"ID":"FBgn0031710","EGF_Stimulus":"1.35"},{"ID":"FBgn0035667","EGF_Stimulus":"0.24"},{"ID":"FBgn0260004","EGF_Stimulus":"-1.84"},{"ID":"FBgn0261388","EGF_Stimulus":"-0.39"},{"ID":"FBgn0033454","EGF_Stimulus":"0.62"},{"ID":"FBgn0261548","EGF_Stimulus":"1.29"},{"ID":"FBgn0044324","EGF_Stimulus":"-1.77"},{"ID":"FBgn0050008","EGF_Stimulus":"0.15"},{"ID":"FBgn0029864","EGF_Stimulus":"0.5"},{"ID":"FBgn0031245","EGF_Stimulus":"-1.63"},{"ID":"FBgn0003612","EGF_Stimulus":"-1.42"},{"ID":"FBgn0037037","EGF_Stimulus":"-0.71"},{"ID":"FBgn0039859","EGF_Stimulus":"0.76"},{"ID":"FBgn0038068","EGF_Stimulus":"-0.58"},{"ID":"FBgn0031053","EGF_Stimulus":"0.97"},{"ID":"FBgn0259190","EGF_Stimulus":"0.76"},{"ID":"FBgn0025115","EGF_Stimulus":"0.57"},{"ID":"FBgn0036764","EGF_Stimulus":"-0.19"},{"ID":"FBgn0005659","EGF_Stimulus":"0.7"},{"ID":"FBgn0034085","EGF_Stimulus":"-0.55"},{"ID":"FBgn0039782","EGF_Stimulus":"-0.65"},{"ID":"FBgn0037987","EGF_Stimulus":"0.5"},{"ID":"FBgn0051121","EGF_Stimulus":"-0.23"},{"ID":"FBgn0033580","EGF_Stimulus":"-0.26"},{"ID":"FBgn0038012","EGF_Stimulus":"1.63"},{"ID":"FBgn0033222","EGF_Stimulus":"-0.2"},{"ID":"FBgn0034970","EGF_Stimulus":"0.51"},{"ID":"FBgn0035402","EGF_Stimulus":"0.64"},{"ID":"FBgn0034717","EGF_Stimulus":"2.09"},{"ID":"FBgn0014906","EGF_Stimulus":"0.53"},{"ID":"FBgn0027655","EGF_Stimulus":"0.58"},{"ID":"FBgn0038204","EGF_Stimulus":"2.38"},{"ID":"FBgn0025382","EGF_Stimulus":"0.46"},{"ID":"FBgn0034611","EGF_Stimulus":"0.37"},{"ID":"FBgn0259677","EGF_Stimulus":"-0.88"},{"ID":"FBgn0051098","EGF_Stimulus":"1.09"},{"ID":"FBgn0036870","EGF_Stimulus":"-0.6"},{"ID":"FBgn0040512","EGF_Stimulus":"-3.48"},{"ID":"FBgn0003861","EGF_Stimulus":"0.82"},{"ID":"FBgn0029801","EGF_Stimulus":"0.36"},{"ID":"FBgn0027579","EGF_Stimulus":"-0.58"},{"ID":"FBgn0039851","EGF_Stimulus":"0.41"},{"ID":"FBgn0031228","EGF_Stimulus":"0.8"},{"ID":"FBgn0000996","EGF_Stimulus":"-4.38"},{"ID":"FBgn0053547","EGF_Stimulus":"0.59"},{"ID":"FBgn0051710","EGF_Stimulus":"-1.82"},{"ID":"FBgn0032047","EGF_Stimulus":"0.58"},{"ID":"FBgn0050089","EGF_Stimulus":"0.95"},{"ID":"FBgn0032049","EGF_Stimulus":"0.58"},{"ID":"FBgn0050026","EGF_Stimulus":"0.41"},{"ID":"FBgn0033988","EGF_Stimulus":"0.04"},{"ID":"FBgn0037326","EGF_Stimulus":"-1.2"},{"ID":"FBgn0003483","EGF_Stimulus":"-0.63"},{"ID":"FBgn0036953","EGF_Stimulus":"0.83"},{"ID":"FBgn0031717","EGF_Stimulus":"0.81"},{"ID":"FBgn0031515","EGF_Stimulus":"0.36"},{"ID":"FBgn0261274","EGF_Stimulus":"0.7"},{"ID":"FBgn0031304","EGF_Stimulus":"0.56"},{"ID":"FBgn0025803","EGF_Stimulus":"1.35"},{"ID":"FBgn0000079","EGF_Stimulus":"0.45"},{"ID":"FBgn0026438","EGF_Stimulus":"0.86"},{"ID":"FBgn0004592","EGF_Stimulus":"-1.3"},{"ID":"FBgn0036484","EGF_Stimulus":"0.57"},{"ID":"FBgn0052643","EGF_Stimulus":"0.87"},{"ID":"FBgn0024733","EGF_Stimulus":"-4.28"},{"ID":"FBgn0020513","EGF_Stimulus":"-1.02"},{"ID":"FBgn0033460","EGF_Stimulus":"-1.18"},{"ID":"FBgn0038156","EGF_Stimulus":"0.2"},{"ID":"FBgn0023477","EGF_Stimulus":"-1.83"},{"ID":"FBgn0039246","EGF_Stimulus":"0.84"},{"ID":"FBgn0035529","EGF_Stimulus":"0.88"},{"ID":"FBgn0034182","EGF_Stimulus":"0.26"},{"ID":"FBgn0035771","EGF_Stimulus":"-0.71"},{"ID":"FBgn0034921","EGF_Stimulus":"-0.81"},{"ID":"FBgn0050471","EGF_Stimulus":"-1.49"},{"ID":"FBgn0039438","EGF_Stimulus":"0.41"},{"ID":"FBgn0028433","EGF_Stimulus":"0.63"},{"ID":"FBgn0000117","EGF_Stimulus":"-0.66"},{"ID":"FBgn0004049","EGF_Stimulus":"-0.98"},{"ID":"FBgn0031950","EGF_Stimulus":"0.31"},{"ID":"FBgn0023541","EGF_Stimulus":"0.96"},{"ID":"FBgn0026385","EGF_Stimulus":"-0.33"},{"ID":"FBgn0016978","EGF_Stimulus":"2.2"},{"ID":"FBgn0010348","EGF_Stimulus":"-1.84"},{"ID":"FBgn0002567","EGF_Stimulus":"0.71"},{"ID":"FBgn0032421","EGF_Stimulus":"-0.66"},{"ID":"FBgn0051679","EGF_Stimulus":"0.55"},{"ID":"FBgn0051548","EGF_Stimulus":"-0.2"},{"ID":"FBgn0038153","EGF_Stimulus":"0.02"},{"ID":"FBgn0037607","EGF_Stimulus":"1.08"},{"ID":"FBgn0021761","EGF_Stimulus":"-0.59"},{"ID":"FBgn0035002","EGF_Stimulus":"1.64"},{"ID":"FBgn0033205","EGF_Stimulus":"0.59"},{"ID":"FBgn0033733","EGF_Stimulus":"0.47"},{"ID":"FBgn0032966","EGF_Stimulus":"0.86"},{"ID":"FBgn0053223","EGF_Stimulus":"-0.42"},{"ID":"FBgn0052061","EGF_Stimulus":"0.6"},{"ID":"FBgn0053196","EGF_Stimulus":"-1.49"},{"ID":"FBgn0028694","EGF_Stimulus":"-2"},{"ID":"FBgn0036235","EGF_Stimulus":"0.08"},{"ID":"FBgn0038359","EGF_Stimulus":"0.72"},{"ID":"FBgn0065032","EGF_Stimulus":"0.45"},{"ID":"FBgn0036791","EGF_Stimulus":"0.42"},{"ID":"FBgn0040363","EGF_Stimulus":"-1.66"},{"ID":"FBgn0036877","EGF_Stimulus":"1.05"},{"ID":"FBgn0003607","EGF_Stimulus":"0.93"},{"ID":"FBgn0034021","EGF_Stimulus":"-1.54"},{"ID":"FBgn0051477","EGF_Stimulus":"-1.91"},{"ID":"FBgn0030262","EGF_Stimulus":"1.07"},{"ID":"FBgn0032478","EGF_Stimulus":"0.39"},{"ID":"FBgn0031559","EGF_Stimulus":"0.94"},{"ID":"FBgn0053129","EGF_Stimulus":"-0.94"},{"ID":"FBgn0040751","EGF_Stimulus":"0.77"},{"ID":"FBgn0024314","EGF_Stimulus":"-0.89"},{"ID":"FBgn0022097","EGF_Stimulus":"-1.32"},{"ID":"FBgn0030411","EGF_Stimulus":"1.05"},{"ID":"FBgn0053475","EGF_Stimulus":"-0.28"},{"ID":"FBgn0037200","EGF_Stimulus":"0.47"},{"ID":"FBgn0034853","EGF_Stimulus":"-0.75"},{"ID":"FBgn0039040","EGF_Stimulus":"0.59"},{"ID":"FBgn0039013","EGF_Stimulus":"0.41"},{"ID":"FBgn0034647","EGF_Stimulus":"0.5"},{"ID":"FBgn0003732","EGF_Stimulus":"-0.85"},{"ID":"FBgn0051464","EGF_Stimulus":"0.89"},{"ID":"FBgn0028543","EGF_Stimulus":"-0.7"},{"ID":"FBgn0010258","EGF_Stimulus":"0.34"},{"ID":"FBgn0030685","EGF_Stimulus":"0.53"},{"ID":"FBgn0039228","EGF_Stimulus":"0.63"},{"ID":"FBgn0030756","EGF_Stimulus":"-1.24"},{"ID":"FBgn0037350","EGF_Stimulus":"-0.7"},{"ID":"FBgn0030715","EGF_Stimulus":"0.69"},{"ID":"FBgn0015239","EGF_Stimulus":"0.73"},{"ID":"FBgn0086706","EGF_Stimulus":"-1.35"},{"ID":"FBgn0038685","EGF_Stimulus":"0.41"},{"ID":"FBgn0004584","EGF_Stimulus":"-1.52"},{"ID":"FBgn0014427","EGF_Stimulus":"0.87"},{"ID":"FBgn0031640","EGF_Stimulus":"-0.93"},{"ID":"FBgn0013767","EGF_Stimulus":"-0.5"},{"ID":"FBgn0031771","EGF_Stimulus":"0.08"},{"ID":"FBgn0036910","EGF_Stimulus":"0.35"},{"ID":"FBgn0015776","EGF_Stimulus":"0.86"},{"ID":"FBgn0027615","EGF_Stimulus":"0.4"},{"ID":"FBgn0051867","EGF_Stimulus":"0.59"},{"ID":"FBgn0033924","EGF_Stimulus":"0.22"},{"ID":"FBgn0005674","EGF_Stimulus":"-1.02"},{"ID":"FBgn0039141","EGF_Stimulus":"1.34"},{"ID":"FBgn0039761","EGF_Stimulus":"0.63"},{"ID":"FBgn0040651","EGF_Stimulus":"-0.98"},{"ID":"FBgn0033289","EGF_Stimulus":"-0.55"},{"ID":"FBgn0032782","EGF_Stimulus":"1.23"},{"ID":"FBgn0261397","EGF_Stimulus":"-0.49"},{"ID":"FBgn0022724","EGF_Stimulus":"-0.71"},{"ID":"FBgn0029809","EGF_Stimulus":"0.73"},{"ID":"FBgn0028904","EGF_Stimulus":"-1.3"},{"ID":"FBgn0031664","EGF_Stimulus":"0.78"},{"ID":"FBgn0052690","EGF_Stimulus":"1.19"},{"ID":"FBgn0035721","EGF_Stimulus":"0.31"},{"ID":"FBgn0038737","EGF_Stimulus":"0.8"},{"ID":"FBgn0027507","EGF_Stimulus":"-0.25"},{"ID":"FBgn0011818","EGF_Stimulus":"0.8"},{"ID":"FBgn0035760","EGF_Stimulus":"0.92"},{"ID":"FBgn0035776","EGF_Stimulus":"0.52"},{"ID":"FBgn0038524","EGF_Stimulus":"0.7"},{"ID":"FBgn0259728","EGF_Stimulus":"0.58"},{"ID":"FBgn0037183","EGF_Stimulus":"0.99"},{"ID":"FBgn0037212","EGF_Stimulus":"0.4"},{"ID":"FBgn0015129","EGF_Stimulus":"1.23"},{"ID":"FBgn0029995","EGF_Stimulus":"0.27"},{"ID":"FBgn0027453","EGF_Stimulus":"1.03"},{"ID":"FBgn0015245","EGF_Stimulus":"1"},{"ID":"FBgn0038827","EGF_Stimulus":"0.62"},{"ID":"FBgn0030237","EGF_Stimulus":"0.05"},{"ID":"FBgn0032749","EGF_Stimulus":"-0.61"},{"ID":"FBgn0019637","EGF_Stimulus":"-1.56"},{"ID":"FBgn0035557","EGF_Stimulus":"1.04"},{"ID":"FBgn0260741","EGF_Stimulus":"0.54"},{"ID":"FBgn0250838","EGF_Stimulus":"-1.21"},{"ID":"FBgn0036436","EGF_Stimulus":"0.67"},{"ID":"FBgn0037464","EGF_Stimulus":"0.33"},{"ID":"FBgn0259876","EGF_Stimulus":"-1.31"},{"ID":"FBgn0035375","EGF_Stimulus":"1.21"},{"ID":"FBgn0040260","EGF_Stimulus":"0.93"},{"ID":"FBgn0037069","EGF_Stimulus":"1.4"},{"ID":"FBgn0028886","EGF_Stimulus":"-0.62"},{"ID":"FBgn0031996","EGF_Stimulus":"1.01"},{"ID":"FBgn0036082","EGF_Stimulus":"0.54"},{"ID":"FBgn0035537","EGF_Stimulus":"0.9"},{"ID":"FBgn0083965","EGF_Stimulus":"-1.31"},{"ID":"FBgn0037962","EGF_Stimulus":"0.33"},{"ID":"FBgn0002535","EGF_Stimulus":"0.7"},{"ID":"FBgn0039161","EGF_Stimulus":"1.52"},{"ID":"FBgn0051068","EGF_Stimulus":"0.61"},{"ID":"FBgn0030768","EGF_Stimulus":"0.67"},{"ID":"FBgn0002021","EGF_Stimulus":"1.29"},{"ID":"FBgn0259189","EGF_Stimulus":"0.52"},{"ID":"FBgn0054038","EGF_Stimulus":"1.85"},{"ID":"FBgn0050105","EGF_Stimulus":"-0.7"},{"ID":"FBgn0037562","EGF_Stimulus":"-0.25"},{"ID":"FBgn0000015","EGF_Stimulus":"0.69"},{"ID":"FBgn0001263","EGF_Stimulus":"1.37"},{"ID":"FBgn0003074","EGF_Stimulus":"0.74"},{"ID":"FBgn0036520","EGF_Stimulus":"-0.98"},{"ID":"FBgn0031208","EGF_Stimulus":"-0.96"},{"ID":"FBgn0030628","EGF_Stimulus":"-0.69"},{"ID":"FBgn0041781","EGF_Stimulus":"0.6"},{"ID":"FBgn0026384","EGF_Stimulus":"-0.67"},{"ID":"FBgn0250904","EGF_Stimulus":"0.41"},{"ID":"FBgn0085200","EGF_Stimulus":"0.43"},{"ID":"FBgn0040994","EGF_Stimulus":"-0.98"},{"ID":"FBgn0032894","EGF_Stimulus":"-0.09"},{"ID":"FBgn0019643","EGF_Stimulus":"0.41"},{"ID":"FBgn0053914","EGF_Stimulus":"-0.95"},{"ID":"FBgn0053516","EGF_Stimulus":"0.93"},{"ID":"FBgn0031868","EGF_Stimulus":"0.51"},{"ID":"FBgn0031092","EGF_Stimulus":"0.7"},{"ID":"FBgn0040503","EGF_Stimulus":"0.64"},{"ID":"FBgn0040941","EGF_Stimulus":"0.45"},{"ID":"FBgn0038487","EGF_Stimulus":"0.64"},{"ID":"FBgn0261631","EGF_Stimulus":"-0.98"},{"ID":"FBgn0031367","EGF_Stimulus":"-1.55"},{"ID":"FBgn0029813","EGF_Stimulus":"0.17"},{"ID":"FBgn0051111","EGF_Stimulus":"-2.01"},{"ID":"FBgn0013954","EGF_Stimulus":"0.41"},{"ID":"FBgn0050443","EGF_Stimulus":"1.67"},{"ID":"FBgn0033127","EGF_Stimulus":"-0.59"},{"ID":"FBgn0031253","EGF_Stimulus":"-0.53"},{"ID":"FBgn0028468","EGF_Stimulus":"0.15"},{"ID":"FBgn0086368","EGF_Stimulus":"0.86"},{"ID":"FBgn0000357","EGF_Stimulus":"1.04"},{"ID":"FBgn0035780","EGF_Stimulus":"0.21"},{"ID":"FBgn0030289","EGF_Stimulus":"0.15"},{"ID":"FBgn0039632","EGF_Stimulus":"1.32"},{"ID":"FBgn0015524","EGF_Stimulus":"0.85"},{"ID":"FBgn0036537","EGF_Stimulus":"0.5"},{"ID":"FBgn0040609","EGF_Stimulus":"-0.48"},{"ID":"FBgn0035923","EGF_Stimulus":"1.32"},{"ID":"FBgn0034710","EGF_Stimulus":"-0.75"},{"ID":"FBgn0051002","EGF_Stimulus":"0.27"},{"ID":"FBgn0038099","EGF_Stimulus":"-0.51"},{"ID":"FBgn0086359","EGF_Stimulus":"-0.24"},{"ID":"FBgn0003888","EGF_Stimulus":"1.44"},{"ID":"FBgn0030538","EGF_Stimulus":"-0.25"},{"ID":"FBgn0032815","EGF_Stimulus":"1.26"},{"ID":"FBgn0029642","EGF_Stimulus":"0.27"},{"ID":"FBgn0035253","EGF_Stimulus":"0.74"},{"ID":"FBgn0030322","EGF_Stimulus":"0.51"},{"ID":"FBgn0038868","EGF_Stimulus":"-2.33"},{"ID":"FBgn0030625","EGF_Stimulus":"-1.53"},{"ID":"FBgn0031103","EGF_Stimulus":"-0.34"},{"ID":"FBgn0040832","EGF_Stimulus":"0.51"},{"ID":"FBgn0261526","EGF_Stimulus":"-1.46"},{"ID":"FBgn0033041","EGF_Stimulus":"-0.63"},{"ID":"FBgn0031064","EGF_Stimulus":"-0.78"},{"ID":"FBgn0002774","EGF_Stimulus":"1.22"},{"ID":"FBgn0011787","EGF_Stimulus":"1"},{"ID":"FBgn0031062","EGF_Stimulus":"1.17"},{"ID":"FBgn0039927","EGF_Stimulus":"1.65"},{"ID":"FBgn0035243","EGF_Stimulus":"-0.42"},{"ID":"FBgn0036927","EGF_Stimulus":"-0.26"},{"ID":"FBgn0027079","EGF_Stimulus":"0.14"},{"ID":"FBgn0051415","EGF_Stimulus":"-0.61"},{"ID":"FBgn0000659","EGF_Stimulus":"-0.37"},{"ID":"FBgn0050122","EGF_Stimulus":"1.23"},{"ID":"FBgn0037389","EGF_Stimulus":"-0.51"},{"ID":"FBgn0026374","EGF_Stimulus":"0.64"},{"ID":"FBgn0003741","EGF_Stimulus":"-0.49"},{"ID":"FBgn0036338","EGF_Stimulus":"0.54"},{"ID":"FBgn0030341","EGF_Stimulus":"-0.14"},{"ID":"FBgn0031310","EGF_Stimulus":"0.67"},{"ID":"FBgn0040972","EGF_Stimulus":"-0.38"},{"ID":"FBgn0052238","EGF_Stimulus":"-0.41"},{"ID":"FBgn0036333","EGF_Stimulus":"1.15"},{"ID":"FBgn0033636","EGF_Stimulus":"-1.95"},{"ID":"FBgn0030313","EGF_Stimulus":"0.59"},{"ID":"FBgn0037876","EGF_Stimulus":"-1.38"},{"ID":"FBgn0035480","EGF_Stimulus":"0.35"},{"ID":"FBgn0033452","EGF_Stimulus":"0.77"},{"ID":"FBgn0050045","EGF_Stimulus":"0.47"},{"ID":"FBgn0040256","EGF_Stimulus":"0.85"},{"ID":"FBgn0023528","EGF_Stimulus":"-1.1"},{"ID":"FBgn0041239","EGF_Stimulus":"-1.29"},{"ID":"FBgn0027948","EGF_Stimulus":"-0.46"},{"ID":"FBgn0039789","EGF_Stimulus":"0.7"},{"ID":"FBgn0260799","EGF_Stimulus":"0.6"},{"ID":"FBgn0037359","EGF_Stimulus":"-1"},{"ID":"FBgn0030544","EGF_Stimulus":"-0.6"},{"ID":"FBgn0022702","EGF_Stimulus":"0.23"},{"ID":"FBgn0001325","EGF_Stimulus":"0.74"},{"ID":"FBgn0032369","EGF_Stimulus":"0.89"},{"ID":"FBgn0052633","EGF_Stimulus":"-0.52"},{"ID":"FBgn0035856","EGF_Stimulus":"0.32"},{"ID":"FBgn0039665","EGF_Stimulus":"0.32"},{"ID":"FBgn0028487","EGF_Stimulus":"3.41"},{"ID":"FBgn0003676","EGF_Stimulus":"-1.37"},{"ID":"FBgn0033158","EGF_Stimulus":"1.59"},{"ID":"FBgn0039939","EGF_Stimulus":"0.22"},{"ID":"FBgn0030399","EGF_Stimulus":"0.77"},{"ID":"FBgn0014184","EGF_Stimulus":"-0.57"},{"ID":"FBgn0037122","EGF_Stimulus":"0.91"},{"ID":"FBgn0085284","EGF_Stimulus":"1.71"},{"ID":"FBgn0261535","EGF_Stimulus":"0.55"},{"ID":"FBgn0038732","EGF_Stimulus":"0.15"},{"ID":"FBgn0012034","EGF_Stimulus":"-2.06"},{"ID":"FBgn0031145","EGF_Stimulus":"0.77"},{"ID":"FBgn0041161","EGF_Stimulus":"0.58"},{"ID":"FBgn0003067","EGF_Stimulus":"-0.17"},{"ID":"FBgn0002578","EGF_Stimulus":"-1.43"},{"ID":"FBgn0016650","EGF_Stimulus":"-0.22"},{"ID":"FBgn0053138","EGF_Stimulus":"-0.9"},{"ID":"FBgn0259216","EGF_Stimulus":"-1.72"},{"ID":"FBgn0036565","EGF_Stimulus":"0.19"},{"ID":"FBgn0035144","EGF_Stimulus":"0.85"},{"ID":"FBgn0033438","EGF_Stimulus":"0.49"},{"ID":"FBgn0250841","EGF_Stimulus":"-0.54"},{"ID":"FBgn0038272","EGF_Stimulus":"1.47"},{"ID":"FBgn0030949","EGF_Stimulus":"-0.85"},{"ID":"FBgn0053286","EGF_Stimulus":"0.42"},{"ID":"FBgn0032005","EGF_Stimulus":"0.38"},{"ID":"FBgn0038674","EGF_Stimulus":"-0.11"},{"ID":"FBgn0015000","EGF_Stimulus":"-0.51"},{"ID":"FBgn0004907","EGF_Stimulus":"-0.53"},{"ID":"FBgn0039796","EGF_Stimulus":"-0.38"},{"ID":"FBgn0051901","EGF_Stimulus":"1.09"},{"ID":"FBgn0037379","EGF_Stimulus":"0.15"},{"ID":"FBgn0039204","EGF_Stimulus":"0.84"},{"ID":"FBgn0032515","EGF_Stimulus":"-1.08"},{"ID":"FBgn0029079","EGF_Stimulus":"0.24"},{"ID":"FBgn0034397","EGF_Stimulus":"0.68"},{"ID":"FBgn0003321","EGF_Stimulus":"1.59"},{"ID":"FBgn0027601","EGF_Stimulus":"-1.53"},{"ID":"FBgn0003255","EGF_Stimulus":"0.34"},{"ID":"FBgn0036552","EGF_Stimulus":"0.79"},{"ID":"FBgn0032290","EGF_Stimulus":"1.17"},{"ID":"FBgn0261854","EGF_Stimulus":"1.39"},{"ID":"FBgn0030940","EGF_Stimulus":"1.69"},{"ID":"FBgn0030774","EGF_Stimulus":"-0.83"},{"ID":"FBgn0037500","EGF_Stimulus":"1.2"},{"ID":"FBgn0261800","EGF_Stimulus":"0.99"},{"ID":"FBgn0003638","EGF_Stimulus":"-2.15"},{"ID":"FBgn0032094","EGF_Stimulus":"1.22"},{"ID":"FBgn0259896","EGF_Stimulus":"0.72"},{"ID":"FBgn0038188","EGF_Stimulus":"0.18"},{"ID":"FBgn0034530","EGF_Stimulus":"0.65"},{"ID":"FBgn0051235","EGF_Stimulus":"0.58"},{"ID":"FBgn0035254","EGF_Stimulus":"-0.55"},{"ID":"FBgn0032772","EGF_Stimulus":"1.21"},{"ID":"FBgn0038630","EGF_Stimulus":"-0.06"},{"ID":"FBgn0011509","EGF_Stimulus":"0.71"},{"ID":"FBgn0038386","EGF_Stimulus":"0.44"},{"ID":"FBgn0035741","EGF_Stimulus":"1.13"},{"ID":"FBgn0030217","EGF_Stimulus":"0.86"},{"ID":"FBgn0052811","EGF_Stimulus":"-0.47"},{"ID":"FBgn0004872","EGF_Stimulus":"0.2"},{"ID":"FBgn0036489","EGF_Stimulus":"0.44"},{"ID":"FBgn0260747","EGF_Stimulus":"-0.48"},{"ID":"FBgn0035696","EGF_Stimulus":"0.42"},{"ID":"FBgn0032260","EGF_Stimulus":"1.54"},{"ID":"FBgn0037644","EGF_Stimulus":"-0.4"},{"ID":"FBgn0004054","EGF_Stimulus":"0.97"},{"ID":"FBgn0040096","EGF_Stimulus":"-1.37"},{"ID":"FBgn0085812","EGF_Stimulus":"1.3"},{"ID":"FBgn0025726","EGF_Stimulus":"-1.29"},{"ID":"FBgn0027109","EGF_Stimulus":"0.56"},{"ID":"FBgn0032039","EGF_Stimulus":"0.94"},{"ID":"FBgn0085489","EGF_Stimulus":"-0.66"},{"ID":"FBgn0039596","EGF_Stimulus":"0.62"},{"ID":"FBgn0038582","EGF_Stimulus":"0.73"},{"ID":"FBgn0032637","EGF_Stimulus":"-1.03"},{"ID":"FBgn0041245","EGF_Stimulus":"1.71"},{"ID":"FBgn0027600","EGF_Stimulus":"0.68"},{"ID":"FBgn0034462","EGF_Stimulus":"0.48"},{"ID":"FBgn0033902","EGF_Stimulus":"-2.55"},{"ID":"FBgn0042134","EGF_Stimulus":"1.69"},{"ID":"FBgn0040718","EGF_Stimulus":"0.81"},{"ID":"FBgn0010660","EGF_Stimulus":"-0.84"},{"ID":"FBgn0020385","EGF_Stimulus":"-0.83"},{"ID":"FBgn0014163","EGF_Stimulus":"-2"},{"ID":"FBgn0038416","EGF_Stimulus":"0.95"},{"ID":"FBgn0011566","EGF_Stimulus":"0.45"},{"ID":"FBgn0034262","EGF_Stimulus":"-0.7"},{"ID":"FBgn0031319","EGF_Stimulus":"-1.32"},{"ID":"FBgn0030518","EGF_Stimulus":"-0.26"},{"ID":"FBgn0000592","EGF_Stimulus":"0.53"},{"ID":"FBgn0050085","EGF_Stimulus":"-0.73"},{"ID":"FBgn0085476","EGF_Stimulus":"-1.43"},{"ID":"FBgn0033323","EGF_Stimulus":"0.67"},{"ID":"FBgn0031048","EGF_Stimulus":"-1.69"},{"ID":"FBgn0039811","EGF_Stimulus":"-0.5"},{"ID":"FBgn0035208","EGF_Stimulus":"1.52"},{"ID":"FBgn0053213","EGF_Stimulus":"-0.13"},{"ID":"FBgn0019828","EGF_Stimulus":"-0.58"},{"ID":"FBgn0260857","EGF_Stimulus":"-1.42"},{"ID":"FBgn0034154","EGF_Stimulus":"0.13"},{"ID":"FBgn0250786","EGF_Stimulus":"1.66"},{"ID":"FBgn0024183","EGF_Stimulus":"1.47"},{"ID":"FBgn0037709","EGF_Stimulus":"-2.25"},{"ID":"FBgn0033688","EGF_Stimulus":"0.1"},{"ID":"FBgn0025637","EGF_Stimulus":"0.57"},{"ID":"FBgn0052371","EGF_Stimulus":"-0.47"},{"ID":"FBgn0050403","EGF_Stimulus":"0.35"},{"ID":"FBgn0038617","EGF_Stimulus":"-0.76"},{"ID":"FBgn0035338","EGF_Stimulus":"1.19"},{"ID":"FBgn0000928","EGF_Stimulus":"1.36"},{"ID":"FBgn0038845","EGF_Stimulus":"-0.79"},{"ID":"FBgn0050093","EGF_Stimulus":"0.33"},{"ID":"FBgn0038394","EGF_Stimulus":"-0.05"},{"ID":"FBgn0036859","EGF_Stimulus":"-0.88"},{"ID":"FBgn0036302","EGF_Stimulus":"0.9"},{"ID":"FBgn0046879","EGF_Stimulus":"-0.94"},{"ID":"FBgn0037594","EGF_Stimulus":"0.13"},{"ID":"FBgn0038701","EGF_Stimulus":"0.42"},{"ID":"FBgn0032867","EGF_Stimulus":"-0.83"},{"ID":"FBgn0030390","EGF_Stimulus":"-1.05"},{"ID":"FBgn0037370","EGF_Stimulus":"0.49"},{"ID":"FBgn0051550","EGF_Stimulus":"-1.17"},{"ID":"FBgn0052772","EGF_Stimulus":"-0.94"},{"ID":"FBgn0031756","EGF_Stimulus":"0.98"},{"ID":"FBgn0050392","EGF_Stimulus":"1.37"},{"ID":"FBgn0038350","EGF_Stimulus":"2.64"},{"ID":"FBgn0035009","EGF_Stimulus":"-1.66"},{"ID":"FBgn0037702","EGF_Stimulus":"1.28"},{"ID":"FBgn0036161","EGF_Stimulus":"0.21"},{"ID":"FBgn0085321","EGF_Stimulus":"-1.24"},{"ID":"FBgn0015615","EGF_Stimulus":"0.72"},{"ID":"FBgn0010548","EGF_Stimulus":"-0.41"},{"ID":"FBgn0010497","EGF_Stimulus":"2.02"},{"ID":"FBgn0031897","EGF_Stimulus":"-1.69"},{"ID":"FBgn0002632","EGF_Stimulus":"-0.14"},{"ID":"FBgn0034177","EGF_Stimulus":"0.27"},{"ID":"FBgn0038224","EGF_Stimulus":"-1.05"},{"ID":"FBgn0038133","EGF_Stimulus":"-0.5"},{"ID":"FBgn0085350","EGF_Stimulus":"-0.34"},{"ID":"FBgn0028622","EGF_Stimulus":"-0.53"},{"ID":"FBgn0036131","EGF_Stimulus":"-0.36"},{"ID":"FBgn0030511","EGF_Stimulus":"0.95"},{"ID":"FBgn0030562","EGF_Stimulus":"0.55"},{"ID":"FBgn0053182","EGF_Stimulus":"0.38"},{"ID":"FBgn0030980","EGF_Stimulus":"-0.48"},{"ID":"FBgn0032390","EGF_Stimulus":"-1.16"},{"ID":"FBgn0010213","EGF_Stimulus":"0.31"},{"ID":"FBgn0085196","EGF_Stimulus":"-0.41"},{"ID":"FBgn0033236","EGF_Stimulus":"-1.39"},{"ID":"FBgn0051391","EGF_Stimulus":"-1.38"},{"ID":"FBgn0031270","EGF_Stimulus":"0.41"},{"ID":"FBgn0035830","EGF_Stimulus":"1.46"},{"ID":"FBgn0034251","EGF_Stimulus":"0.23"},{"ID":"FBgn0037796","EGF_Stimulus":"-1.41"},{"ID":"FBgn0031592","EGF_Stimulus":"-0.35"},{"ID":"FBgn0026393","EGF_Stimulus":"-0.73"},{"ID":"FBgn0032265","EGF_Stimulus":"0.82"},{"ID":"FBgn0037059","EGF_Stimulus":"-1.63"},{"ID":"FBgn0039902","EGF_Stimulus":"1.18"},{"ID":"FBgn0037443","EGF_Stimulus":"-0.84"},{"ID":"FBgn0015283","EGF_Stimulus":"-1.12"},{"ID":"FBgn0035409","EGF_Stimulus":"0.35"},{"ID":"FBgn0026737","EGF_Stimulus":"-1.39"},{"ID":"FBgn0035902","EGF_Stimulus":"0.81"},{"ID":"FBgn0034515","EGF_Stimulus":"0.33"},{"ID":"FBgn0033032","EGF_Stimulus":"0.71"},{"ID":"FBgn0034299","EGF_Stimulus":"0.78"},{"ID":"FBgn0031275","EGF_Stimulus":"0.26"},{"ID":"FBgn0083981","EGF_Stimulus":"0.46"},{"ID":"FBgn0035827","EGF_Stimulus":"1.24"},{"ID":"FBgn0038756","EGF_Stimulus":"0.4"},{"ID":"FBgn0038407","EGF_Stimulus":"-0.61"},{"ID":"FBgn0085328","EGF_Stimulus":"-0.88"},{"ID":"FBgn0015323","EGF_Stimulus":"0.42"},{"ID":"FBgn0023090","EGF_Stimulus":"0.29"},{"ID":"FBgn0010762","EGF_Stimulus":"0.6"},{"ID":"FBgn0001961","EGF_Stimulus":"0.32"},{"ID":"FBgn0029931","EGF_Stimulus":"0.74"},{"ID":"FBgn0034335","EGF_Stimulus":"0.1"},{"ID":"FBgn0085271","EGF_Stimulus":"1.39"},{"ID":"FBgn0259170","EGF_Stimulus":"0.49"},{"ID":"FBgn0036838","EGF_Stimulus":"-0.18"},{"ID":"FBgn0031564","EGF_Stimulus":"0.92"},{"ID":"FBgn0033342","EGF_Stimulus":"-0.18"},{"ID":"FBgn0051875","EGF_Stimulus":"-1.48"},{"ID":"FBgn0035518","EGF_Stimulus":"-0.32"},{"ID":"FBgn0029532","EGF_Stimulus":"-0.62"},{"ID":"FBgn0014391","EGF_Stimulus":"-1.49"},{"ID":"FBgn0034140","EGF_Stimulus":"-0.87"},{"ID":"FBgn0034865","EGF_Stimulus":"-0.86"},{"ID":"FBgn0032620","EGF_Stimulus":"1.38"},{"ID":"FBgn0051199","EGF_Stimulus":"-0.26"},{"ID":"FBgn0037014","EGF_Stimulus":"0.1"},{"ID":"FBgn0035513","EGF_Stimulus":"-0.78"},{"ID":"FBgn0027539","EGF_Stimulus":"-0.65"},{"ID":"FBgn0029750","EGF_Stimulus":"0.82"},{"ID":"FBgn0004391","EGF_Stimulus":"0.53"},{"ID":"FBgn0015789","EGF_Stimulus":"-1.76"},{"ID":"FBgn0020307","EGF_Stimulus":"-0.75"},{"ID":"FBgn0037843","EGF_Stimulus":"0.55"},{"ID":"FBgn0032109","EGF_Stimulus":"0.69"},{"ID":"FBgn0040346","EGF_Stimulus":"-0.51"},{"ID":"FBgn0259163","EGF_Stimulus":"-0.43"},{"ID":"FBgn0035793","EGF_Stimulus":"1.54"},{"ID":"FBgn0002643","EGF_Stimulus":"-4.34"},{"ID":"FBgn0032505","EGF_Stimulus":"-1.81"},{"ID":"FBgn0028380","EGF_Stimulus":"1.15"},{"ID":"FBgn0031505","EGF_Stimulus":"0.8"},{"ID":"FBgn0034907","EGF_Stimulus":"-1.18"},{"ID":"FBgn0039303","EGF_Stimulus":"-0.21"},{"ID":"FBgn0001291","EGF_Stimulus":"1.63"},{"ID":"FBgn0039659","EGF_Stimulus":"0.54"},{"ID":"FBgn0261279","EGF_Stimulus":"-1.47"},{"ID":"FBgn0040308","EGF_Stimulus":"0.54"},{"ID":"FBgn0032629","EGF_Stimulus":"-1.65"},{"ID":"FBgn0011761","EGF_Stimulus":"-0.37"},{"ID":"FBgn0030370","EGF_Stimulus":"0.54"},{"ID":"FBgn0052016","EGF_Stimulus":"-1.25"},{"ID":"FBgn0025692","EGF_Stimulus":"0.49"},{"ID":"FBgn0038974","EGF_Stimulus":"-0.75"},{"ID":"FBgn0052988","EGF_Stimulus":"1.23"},{"ID":"FBgn0260855","EGF_Stimulus":"-1.87"},{"ID":"FBgn0030506","EGF_Stimulus":"-0.2"},{"ID":"FBgn0035166","EGF_Stimulus":"0.2"},{"ID":"FBgn0032360","EGF_Stimulus":"0.38"},{"ID":"FBgn0030406","EGF_Stimulus":"1.6"},{"ID":"FBgn0041621","EGF_Stimulus":"-0.25"},{"ID":"FBgn0036359","EGF_Stimulus":"0.32"},{"ID":"FBgn0041102","EGF_Stimulus":"0.87"},{"ID":"FBgn0033885","EGF_Stimulus":"0.47"},{"ID":"FBgn0026143","EGF_Stimulus":"-1.02"},{"ID":"FBgn0051087","EGF_Stimulus":"-1.19"},{"ID":"FBgn0028695","EGF_Stimulus":"-1.08"},{"ID":"FBgn0037679","EGF_Stimulus":"-0.91"},{"ID":"FBgn0034911","EGF_Stimulus":"-1"},{"ID":"FBgn0033949","EGF_Stimulus":"0.79"},{"ID":"FBgn0037050","EGF_Stimulus":"0.39"},{"ID":"FBgn0261086","EGF_Stimulus":"0.37"},{"ID":"FBgn0261871","EGF_Stimulus":"-0.97"},{"ID":"FBgn0029929","EGF_Stimulus":"0.74"},{"ID":"FBgn0036756","EGF_Stimulus":"0.7"},{"ID":"FBgn0039272","EGF_Stimulus":"-0.56"},{"ID":"FBgn0029003","EGF_Stimulus":"-1.16"},{"ID":"FBgn0038655","EGF_Stimulus":"-0.51"},{"ID":"FBgn0037307","EGF_Stimulus":"0.78"},{"ID":"FBgn0003141","EGF_Stimulus":"-1.02"},{"ID":"FBgn0012344","EGF_Stimulus":"0.14"},{"ID":"FBgn0033109","EGF_Stimulus":"-1.88"},{"ID":"FBgn0014002","EGF_Stimulus":"-0.7"},{"ID":"FBgn0011774","EGF_Stimulus":"0.45"},{"ID":"FBgn0053202","EGF_Stimulus":"0.53"},{"ID":"FBgn0085339","EGF_Stimulus":"1.34"},{"ID":"FBgn0038610","EGF_Stimulus":"-1.84"},{"ID":"FBgn0037435","EGF_Stimulus":"0.53"},{"ID":"FBgn0029870","EGF_Stimulus":"0.57"},{"ID":"FBgn0036168","EGF_Stimulus":"0.47"},{"ID":"FBgn0051638","EGF_Stimulus":"1.5"},{"ID":"FBgn0038172","EGF_Stimulus":"-0.6"},{"ID":"FBgn0011555","EGF_Stimulus":"0.22"},{"ID":"FBgn0051159","EGF_Stimulus":"-0.94"},{"ID":"FBgn0039023","EGF_Stimulus":"-0.44"},{"ID":"FBgn0038509","EGF_Stimulus":"1.27"},{"ID":"FBgn0038343","EGF_Stimulus":"-0.41"},{"ID":"FBgn0001992","EGF_Stimulus":"0.53"},{"ID":"FBgn0003028","EGF_Stimulus":"-0.94"},{"ID":"FBgn0033859","EGF_Stimulus":"1.43"},{"ID":"FBgn0052685","EGF_Stimulus":"0.83"},{"ID":"FBgn0000449","EGF_Stimulus":"0.42"},{"ID":"FBgn0040356","EGF_Stimulus":"0.33"},{"ID":"FBgn0029503","EGF_Stimulus":"0.93"},{"ID":"FBgn0036128","EGF_Stimulus":"-0.29"},{"ID":"FBgn0029907","EGF_Stimulus":"0.75"},{"ID":"FBgn0034166","EGF_Stimulus":"-2.59"},{"ID":"FBgn0033054","EGF_Stimulus":"-0.42"},{"ID":"FBgn0085376","EGF_Stimulus":"-0.36"},{"ID":"FBgn0031376","EGF_Stimulus":"1.4"},{"ID":"FBgn0033428","EGF_Stimulus":"-1.27"},{"ID":"FBgn0033916","EGF_Stimulus":"1.57"},{"ID":"FBgn0037744","EGF_Stimulus":"-0.49"},{"ID":"FBgn0004644","EGF_Stimulus":"-0.44"},{"ID":"FBgn0038880","EGF_Stimulus":"0.51"},{"ID":"FBgn0032449","EGF_Stimulus":"-1.93"},{"ID":"FBgn0033069","EGF_Stimulus":"0.85"},{"ID":"FBgn0030925","EGF_Stimulus":"0.69"},{"ID":"FBgn0035411","EGF_Stimulus":"-0.27"},{"ID":"FBgn0038053","EGF_Stimulus":"-1.98"},{"ID":"FBgn0033958","EGF_Stimulus":"0.68"},{"ID":"FBgn0051446","EGF_Stimulus":"-1.38"},{"ID":"FBgn0030067","EGF_Stimulus":"-1.04"},{"ID":"FBgn0020655","EGF_Stimulus":"0.64"},{"ID":"FBgn0064766","EGF_Stimulus":"0.62"},{"ID":"FBgn0039089","EGF_Stimulus":"1.24"},{"ID":"FBgn0261292","EGF_Stimulus":"1.07"},{"ID":"FBgn0050020","EGF_Stimulus":"-1.02"},{"ID":"FBgn0036177","EGF_Stimulus":"-0.25"},{"ID":"FBgn0250849","EGF_Stimulus":"0.82"},{"ID":"FBgn0028381","EGF_Stimulus":"3.03"},{"ID":"FBgn0038506","EGF_Stimulus":"-1.02"},{"ID":"FBgn0085225","EGF_Stimulus":"-0.53"},{"ID":"FBgn0014009","EGF_Stimulus":"-2.14"},{"ID":"FBgn0031085","EGF_Stimulus":"0.33"},{"ID":"FBgn0036289","EGF_Stimulus":"-0.62"},{"ID":"FBgn0028996","EGF_Stimulus":"-0.26"},{"ID":"FBgn0010339","EGF_Stimulus":"-0.83"},{"ID":"FBgn0261592","EGF_Stimulus":"-3.96"},{"ID":"FBgn0260754","EGF_Stimulus":"1.05"},{"ID":"FBgn0003448","EGF_Stimulus":"-1.33"},{"ID":"FBgn0036774","EGF_Stimulus":"2.05"},{"ID":"FBgn0086694","EGF_Stimulus":"1.23"},{"ID":"FBgn0004921","EGF_Stimulus":"0.47"},{"ID":"FBgn0040107","EGF_Stimulus":"-0.59"},{"ID":"FBgn0026314","EGF_Stimulus":"-0.74"},{"ID":"FBgn0050342","EGF_Stimulus":"1.25"},{"ID":"FBgn0024941","EGF_Stimulus":"1.05"},{"ID":"FBgn0032083","EGF_Stimulus":"0.83"},{"ID":"FBgn0040387","EGF_Stimulus":"-0.25"},{"ID":"FBgn0037898","EGF_Stimulus":"-1.81"},{"ID":"FBgn0039233","EGF_Stimulus":"0.8"},{"ID":"FBgn0001316","EGF_Stimulus":"2.12"},{"ID":"FBgn0037882","EGF_Stimulus":"0.98"},{"ID":"FBgn0033942","EGF_Stimulus":"0.16"},{"ID":"FBgn0053207","EGF_Stimulus":"3.06"},{"ID":"FBgn0022359","EGF_Stimulus":"-1.02"},{"ID":"FBgn0039602","EGF_Stimulus":"0.79"},{"ID":"FBgn0250867","EGF_Stimulus":"0.62"},{"ID":"FBgn0034473","EGF_Stimulus":"-0.65"},{"ID":"FBgn0037170","EGF_Stimulus":"-0.6"},{"ID":"FBgn0083975","EGF_Stimulus":"-1.35"},{"ID":"FBgn0031534","EGF_Stimulus":"1.18"},{"ID":"FBgn0058045","EGF_Stimulus":"0.54"},{"ID":"FBgn0031004","EGF_Stimulus":"-0.36"},{"ID":"FBgn0031260","EGF_Stimulus":"-0.75"},{"ID":"FBgn0038029","EGF_Stimulus":"0.4"},{"ID":"FBgn0035194","EGF_Stimulus":"0.98"},{"ID":"FBgn0040398","EGF_Stimulus":"0.69"},{"ID":"FBgn0026199","EGF_Stimulus":"0.74"},{"ID":"FBgn0039194","EGF_Stimulus":"0.36"},{"ID":"FBgn0030995","EGF_Stimulus":"0.28"},{"ID":"FBgn0037921","EGF_Stimulus":"1.21"},{"ID":"FBgn0031423","EGF_Stimulus":"-0.13"},{"ID":"FBgn0032800","EGF_Stimulus":"-1.71"},{"ID":"FBgn0037880","EGF_Stimulus":"0.64"},{"ID":"FBgn0026089","EGF_Stimulus":"0.5"},{"ID":"FBgn0010398","EGF_Stimulus":"-0.32"},{"ID":"FBgn0017550","EGF_Stimulus":"-0.29"},{"ID":"FBgn0035981","EGF_Stimulus":"0.98"},{"ID":"FBgn0025885","EGF_Stimulus":"-0.6"},{"ID":"FBgn0037686","EGF_Stimulus":"-1.34"},{"ID":"FBgn0031331","EGF_Stimulus":"-0.76"},{"ID":"FBgn0034246","EGF_Stimulus":"1.21"},{"ID":"FBgn0085256","EGF_Stimulus":"0.58"},{"ID":"FBgn0050000","EGF_Stimulus":"0.57"},{"ID":"FBgn0028895","EGF_Stimulus":"-1.52"},{"ID":"FBgn0034047","EGF_Stimulus":"0.57"},{"ID":"FBgn0039431","EGF_Stimulus":"-0.65"},{"ID":"FBgn0051424","EGF_Stimulus":"-1.48"},{"ID":"FBgn0087039","EGF_Stimulus":"1.3"},{"ID":"FBgn0053093","EGF_Stimulus":"-1.02"},{"ID":"FBgn0033644","EGF_Stimulus":"0.57"},{"ID":"FBgn0053290","EGF_Stimulus":"0.85"},{"ID":"FBgn0004781","EGF_Stimulus":"0.24"},{"ID":"FBgn0052855","EGF_Stimulus":"-1.24"},{"ID":"FBgn0031678","EGF_Stimulus":"0.63"},{"ID":"FBgn0028418","EGF_Stimulus":"0.68"},{"ID":"FBgn0038260","EGF_Stimulus":"1.02"},{"ID":"FBgn0260643","EGF_Stimulus":"-0.94"},{"ID":"FBgn0031012","EGF_Stimulus":"-0.66"},{"ID":"FBgn0046704","EGF_Stimulus":"-0.3"},{"ID":"FBgn0040931","EGF_Stimulus":"0.32"},{"ID":"FBgn0033590","EGF_Stimulus":"0.4"},{"ID":"FBgn0000560","EGF_Stimulus":"-0.76"},{"ID":"FBgn0052137","EGF_Stimulus":"-0.22"},{"ID":"FBgn0032650","EGF_Stimulus":"1.04"},{"ID":"FBgn0023523","EGF_Stimulus":"-0.48"},{"ID":"FBgn0030016","EGF_Stimulus":"0.77"},{"ID":"FBgn0004648","EGF_Stimulus":"1.14"},{"ID":"FBgn0037325","EGF_Stimulus":"1"},{"ID":"FBgn0051189","EGF_Stimulus":"1.04"},{"ID":"FBgn0260936","EGF_Stimulus":"1.22"},{"ID":"FBgn0035279","EGF_Stimulus":"0.28"},{"ID":"FBgn0051324","EGF_Stimulus":"0.54"},{"ID":"FBgn0038069","EGF_Stimulus":"1"},{"ID":"FBgn0259986","EGF_Stimulus":"0.99"},{"ID":"FBgn0036271","EGF_Stimulus":"0.52"},{"ID":"FBgn0034997","EGF_Stimulus":"-1.27"},{"ID":"FBgn0002930","EGF_Stimulus":"0.77"},{"ID":"FBgn0033367","EGF_Stimulus":"0.27"},{"ID":"FBgn0031734","EGF_Stimulus":"1.6"},{"ID":"FBgn0032002","EGF_Stimulus":"0.85"},{"ID":"FBgn0039874","EGF_Stimulus":"0.85"},{"ID":"FBgn0037092","EGF_Stimulus":"-0.08"},{"ID":"FBgn0053988","EGF_Stimulus":"1.13"},{"ID":"FBgn0032728","EGF_Stimulus":"-0.61"},{"ID":"FBgn0004240","EGF_Stimulus":"0.77"},{"ID":"FBgn0040321","EGF_Stimulus":"0.55"},{"ID":"FBgn0050499","EGF_Stimulus":"1.22"},{"ID":"FBgn0023083","EGF_Stimulus":"-0.44"},{"ID":"FBgn0034255","EGF_Stimulus":"1.27"},{"ID":"FBgn0037240","EGF_Stimulus":"0.55"},{"ID":"FBgn0061435","EGF_Stimulus":"0.8"},{"ID":"FBgn0037365","EGF_Stimulus":"0.33"},{"ID":"FBgn0030429","EGF_Stimulus":"0.39"},{"ID":"FBgn0015519","EGF_Stimulus":"0.93"},{"ID":"FBgn0010043","EGF_Stimulus":"-1.57"},{"ID":"FBgn0034195","EGF_Stimulus":"0.21"},{"ID":"FBgn0052333","EGF_Stimulus":"1.27"},{"ID":"FBgn0051852","EGF_Stimulus":"-1.82"},{"ID":"FBgn0031393","EGF_Stimulus":"1.87"},{"ID":"FBgn0039301","EGF_Stimulus":"0.14"},{"ID":"FBgn0039530","EGF_Stimulus":"0.9"},{"ID":"FBgn0052603","EGF_Stimulus":"-1.21"},{"ID":"FBgn0034351","EGF_Stimulus":"0.59"},{"ID":"FBgn0036107","EGF_Stimulus":"-1.1"},{"ID":"FBgn0250814","EGF_Stimulus":"0.5"},{"ID":"FBgn0034521","EGF_Stimulus":"1.15"},{"ID":"FBgn0050289","EGF_Stimulus":"0.68"},{"ID":"FBgn0032492","EGF_Stimulus":"0.22"},{"ID":"FBgn0030614","EGF_Stimulus":"-0.49"},{"ID":"FBgn0034367","EGF_Stimulus":"1.64"},{"ID":"FBgn0020887","EGF_Stimulus":"0.28"},{"ID":"FBgn0036697","EGF_Stimulus":"-0.19"},{"ID":"FBgn0034356","EGF_Stimulus":"0.31"},{"ID":"FBgn0036860","EGF_Stimulus":"-0.53"},{"ID":"FBgn0003527","EGF_Stimulus":"1.7"},{"ID":"FBgn0052700","EGF_Stimulus":"0.87"},{"ID":"FBgn0038294","EGF_Stimulus":"-0.15"},{"ID":"FBgn0036446","EGF_Stimulus":"0.18"},{"ID":"FBgn0033677","EGF_Stimulus":"0.39"},{"ID":"FBgn0028667","EGF_Stimulus":"-0.54"},{"ID":"FBgn0028868","EGF_Stimulus":"-2.35"},{"ID":"FBgn0037620","EGF_Stimulus":"0.78"},{"ID":"FBgn0025709","EGF_Stimulus":"0.27"},{"ID":"FBgn0038291","EGF_Stimulus":"-0.52"},{"ID":"FBgn0032720","EGF_Stimulus":"0.28"},{"ID":"FBgn0029848","EGF_Stimulus":"0.99"},{"ID":"FBgn0016693","EGF_Stimulus":"1.16"},{"ID":"FBgn0052380","EGF_Stimulus":"-0.47"},{"ID":"FBgn0035173","EGF_Stimulus":"-1.1"},{"ID":"FBgn0038683","EGF_Stimulus":"-1.73"},{"ID":"FBgn0020278","EGF_Stimulus":"1.63"},{"ID":"FBgn0260430","EGF_Stimulus":"-0.73"},{"ID":"FBgn0038113","EGF_Stimulus":"-0.4"},{"ID":"FBgn0039757","EGF_Stimulus":"-3.27"},{"ID":"FBgn0010296","EGF_Stimulus":"0.55"},{"ID":"FBgn0066292","EGF_Stimulus":"-0.26"},{"ID":"FBgn0039827","EGF_Stimulus":"1.47"},{"ID":"FBgn0031465","EGF_Stimulus":"-1.06"},{"ID":"FBgn0053082","EGF_Stimulus":"1.25"},{"ID":"FBgn0051248","EGF_Stimulus":"0.78"},{"ID":"FBgn0034829","EGF_Stimulus":"0.58"},{"ID":"FBgn0035085","EGF_Stimulus":"1.41"},{"ID":"FBgn0037292","EGF_Stimulus":"-0.22"},{"ID":"FBgn0030807","EGF_Stimulus":"1.07"},{"ID":"FBgn0036577","EGF_Stimulus":"0.49"},{"ID":"FBgn0261049","EGF_Stimulus":"-1.09"},{"ID":"FBgn0030874","EGF_Stimulus":"-0.75"},{"ID":"FBgn0050376","EGF_Stimulus":"1"},{"ID":"FBgn0039128","EGF_Stimulus":"-0.88"},{"ID":"FBgn0011603","EGF_Stimulus":"0.71"},{"ID":"FBgn0052055","EGF_Stimulus":"2.08"},{"ID":"FBgn0031910","EGF_Stimulus":"0.63"},{"ID":"FBgn0032221","EGF_Stimulus":"0.59"},{"ID":"FBgn0030224","EGF_Stimulus":"-0.61"},{"ID":"FBgn0036360","EGF_Stimulus":"0.68"},{"ID":"FBgn0035272","EGF_Stimulus":"-1.88"},{"ID":"FBgn0054046","EGF_Stimulus":"0.55"},{"ID":"FBgn0051080","EGF_Stimulus":"0.54"},{"ID":"FBgn0028856","EGF_Stimulus":"0.7"},{"ID":"FBgn0030634","EGF_Stimulus":"-0.51"},{"ID":"FBgn0026718","EGF_Stimulus":"-0.15"},{"ID":"FBgn0034985","EGF_Stimulus":"0.86"},{"ID":"FBgn0260477","EGF_Stimulus":"-0.42"},{"ID":"FBgn0027779","EGF_Stimulus":"-0.4"},{"ID":"FBgn0039751","EGF_Stimulus":"0.4"},{"ID":"FBgn0028848","EGF_Stimulus":"-1.22"},{"ID":"FBgn0031378","EGF_Stimulus":"-0.45"},{"ID":"FBgn0001491","EGF_Stimulus":"1.22"},{"ID":"FBgn0033970","EGF_Stimulus":"-0.51"},{"ID":"FBgn0040063","EGF_Stimulus":"0.08"},{"ID":"FBgn0052442","EGF_Stimulus":"1.19"},{"ID":"FBgn0020521","EGF_Stimulus":"0.75"},{"ID":"FBgn0260010","EGF_Stimulus":"-0.27"},{"ID":"FBgn0038978","EGF_Stimulus":"-1.06"},{"ID":"FBgn0027095","EGF_Stimulus":"-0.92"},{"ID":"FBgn0030657","EGF_Stimulus":"-0.42"},{"ID":"FBgn0052635","EGF_Stimulus":"1.48"},{"ID":"FBgn0002939","EGF_Stimulus":"-1.05"},{"ID":"FBgn0030438","EGF_Stimulus":"-0.22"},{"ID":"FBgn0031489","EGF_Stimulus":"0.41"},{"ID":"FBgn0001224","EGF_Stimulus":"-1.44"},{"ID":"FBgn0261068","EGF_Stimulus":"2.51"},{"ID":"FBgn0260971","EGF_Stimulus":"-0.11"},{"ID":"FBgn0036220","EGF_Stimulus":"0.25"},{"ID":"FBgn0033446","EGF_Stimulus":"-0.45"},{"ID":"FBgn0038645","EGF_Stimulus":"0.26"},{"ID":"FBgn0030061","EGF_Stimulus":"-1.1"},{"ID":"FBgn0033897","EGF_Stimulus":"-4.62"},{"ID":"FBgn0037087","EGF_Stimulus":"0.91"},{"ID":"FBgn0026309","EGF_Stimulus":"-0.59"},{"ID":"FBgn0037276","EGF_Stimulus":"-0.08"},{"ID":"FBgn0261268","EGF_Stimulus":"0.69"},{"ID":"FBgn0001624","EGF_Stimulus":"-0.75"},{"ID":"FBgn0015872","EGF_Stimulus":"-0.52"},{"ID":"FBgn0031345","EGF_Stimulus":"-0.79"},{"ID":"FBgn0037491","EGF_Stimulus":"-0.19"},{"ID":"FBgn0261629","EGF_Stimulus":"0.34"},{"ID":"FBgn0031627","EGF_Stimulus":"0.93"},{"ID":"FBgn0033551","EGF_Stimulus":"0.43"},{"ID":"FBgn0030905","EGF_Stimulus":"1.32"},{"ID":"FBgn0000454","EGF_Stimulus":"-0.23"},{"ID":"FBgn0031657","EGF_Stimulus":"-0.19"},{"ID":"FBgn0002901","EGF_Stimulus":"1.61"},{"ID":"FBgn0005638","EGF_Stimulus":"-2.39"},{"ID":"FBgn0032250","EGF_Stimulus":"-1.12"},{"ID":"FBgn0013301","EGF_Stimulus":"1.44"},{"ID":"FBgn0037016","EGF_Stimulus":"0.66"},{"ID":"FBgn0051769","EGF_Stimulus":"-1.47"},{"ID":"FBgn0023509","EGF_Stimulus":"-2.52"},{"ID":"FBgn0050161","EGF_Stimulus":"-0.38"},{"ID":"FBgn0037137","EGF_Stimulus":"-1.12"},{"ID":"FBgn0025186","EGF_Stimulus":"1.47"},{"ID":"FBgn0037236","EGF_Stimulus":"0.45"},{"ID":"FBgn0036601","EGF_Stimulus":"-0.12"},{"ID":"FBgn0035948","EGF_Stimulus":"0.49"},{"ID":"FBgn0032014","EGF_Stimulus":"1.3"},{"ID":"FBgn0037541","EGF_Stimulus":"0.6"},{"ID":"FBgn0029822","EGF_Stimulus":"-5.64"},{"ID":"FBgn0010226","EGF_Stimulus":"2.58"},{"ID":"FBgn0063493","EGF_Stimulus":"-0.56"},{"ID":"FBgn0036373","EGF_Stimulus":"0.92"},{"ID":"FBgn0034963","EGF_Stimulus":"0.88"},{"ID":"FBgn0047038","EGF_Stimulus":"0.24"},{"ID":"FBgn0052432","EGF_Stimulus":"0.79"},{"ID":"FBgn0053462","EGF_Stimulus":"0.58"},{"ID":"FBgn0039698","EGF_Stimulus":"0.68"},{"ID":"FBgn0002862","EGF_Stimulus":"-0.21"},{"ID":"FBgn0035470","EGF_Stimulus":"1.37"},{"ID":"FBgn0010433","EGF_Stimulus":"1.01"},{"ID":"FBgn0034880","EGF_Stimulus":"-0.73"},{"ID":"FBgn0000535","EGF_Stimulus":"-0.03"},{"ID":"FBgn0015583","EGF_Stimulus":"-1.18"},{"ID":"FBgn0260460","EGF_Stimulus":"1.31"},{"ID":"FBgn0037299","EGF_Stimulus":"-0.87"},{"ID":"FBgn0051784","EGF_Stimulus":"-1.19"},{"ID":"FBgn0038640","EGF_Stimulus":"0.54"},{"ID":"FBgn0051050","EGF_Stimulus":"-0.54"},{"ID":"FBgn0038866","EGF_Stimulus":"-1.07"},{"ID":"FBgn0004913","EGF_Stimulus":"-1.65"},{"ID":"FBgn0037710","EGF_Stimulus":"0.45"},{"ID":"FBgn0038769","EGF_Stimulus":"0.57"},{"ID":"FBgn0033867","EGF_Stimulus":"1.21"},{"ID":"FBgn0010750","EGF_Stimulus":"-0.39"},{"ID":"FBgn0027562","EGF_Stimulus":"0.84"},{"ID":"FBgn0260655","EGF_Stimulus":"1.04"},{"ID":"FBgn0083962","EGF_Stimulus":"-0.99"},{"ID":"FBgn0024294","EGF_Stimulus":"0.52"},{"ID":"FBgn0003545","EGF_Stimulus":"1.09"},{"ID":"FBgn0033426","EGF_Stimulus":"-2.36"},{"ID":"FBgn0030280","EGF_Stimulus":"-0.45"},{"ID":"FBgn0038853","EGF_Stimulus":"0.55"},{"ID":"FBgn0039609","EGF_Stimulus":"-0.56"},{"ID":"FBgn0036502","EGF_Stimulus":"-1.26"},{"ID":"FBgn0034598","EGF_Stimulus":"0.05"},{"ID":"FBgn0036229","EGF_Stimulus":"-0.37"},{"ID":"FBgn0005427","EGF_Stimulus":"0.59"},{"ID":"FBgn0069969","EGF_Stimulus":"1.84"},{"ID":"FBgn0024997","EGF_Stimulus":"-0.55"},{"ID":"FBgn0025334","EGF_Stimulus":"-0.9"},{"ID":"FBgn0035959","EGF_Stimulus":"-0.94"},{"ID":"FBgn0037940","EGF_Stimulus":"0.49"},{"ID":"FBgn0035468","EGF_Stimulus":"1.15"},{"ID":"FBgn0036785","EGF_Stimulus":"-0.94"},{"ID":"FBgn0040232","EGF_Stimulus":"-0.64"},{"ID":"FBgn0001994","EGF_Stimulus":"3.09"},{"ID":"FBgn0021875","EGF_Stimulus":"0.74"},{"ID":"FBgn0020248","EGF_Stimulus":"-1.31"},{"ID":"FBgn0037339","EGF_Stimulus":"-1.36"},{"ID":"FBgn0035724","EGF_Stimulus":"1.11"},{"ID":"FBgn0034058","EGF_Stimulus":"0.51"},{"ID":"FBgn0036075","EGF_Stimulus":"0.57"},{"ID":"FBgn0036367","EGF_Stimulus":"0.43"},{"ID":"FBgn0003091","EGF_Stimulus":"0.69"},{"ID":"FBgn0034230","EGF_Stimulus":"-0.51"},{"ID":"FBgn0260763","EGF_Stimulus":"0.87"},{"ID":"FBgn0028538","EGF_Stimulus":"1.06"},{"ID":"FBgn0034497","EGF_Stimulus":"0.93"},{"ID":"FBgn0052196","EGF_Stimulus":"-0.83"},{"ID":"FBgn0038951","EGF_Stimulus":"-0.27"},{"ID":"FBgn0085305","EGF_Stimulus":"0.53"},{"ID":"FBgn0000370","EGF_Stimulus":"2.03"},{"ID":"FBgn0031320","EGF_Stimulus":"-0.34"},{"ID":"FBgn0039691","EGF_Stimulus":"0.77"},{"ID":"FBgn0085444","EGF_Stimulus":"-3.1"},{"ID":"FBgn0041337","EGF_Stimulus":"0.84"},{"ID":"FBgn0000377","EGF_Stimulus":"1.69"},{"ID":"FBgn0029117","EGF_Stimulus":"-1"},{"ID":"FBgn0030243","EGF_Stimulus":"-0.56"},{"ID":"FBgn0028894","EGF_Stimulus":"-0.06"},{"ID":"FBgn0052832","EGF_Stimulus":"-1"},{"ID":"FBgn0036723","EGF_Stimulus":"-0.46"},{"ID":"FBgn0040985","EGF_Stimulus":"0.92"},{"ID":"FBgn0085318","EGF_Stimulus":"-0.84"},{"ID":"FBgn0032216","EGF_Stimulus":"-0.74"},{"ID":"FBgn0039635","EGF_Stimulus":"-0.19"},{"ID":"FBgn0039518","EGF_Stimulus":"0.62"},{"ID":"FBgn0037958","EGF_Stimulus":"-2.13"},{"ID":"FBgn0001104","EGF_Stimulus":"1.29"},{"ID":"FBgn0036096","EGF_Stimulus":"0.43"},{"ID":"FBgn0035073","EGF_Stimulus":"0.38"},{"ID":"FBgn0033259","EGF_Stimulus":"-0.61"},{"ID":"FBgn0015034","EGF_Stimulus":"0.58"},{"ID":"FBgn0016120","EGF_Stimulus":"-1.81"},{"ID":"FBgn0001253","EGF_Stimulus":"-0.66"},{"ID":"FBgn0027359","EGF_Stimulus":"0.2"},{"ID":"FBgn0039167","EGF_Stimulus":"-0.7"},{"ID":"FBgn0032168","EGF_Stimulus":"0.76"},{"ID":"FBgn0051150","EGF_Stimulus":"1.11"},{"ID":"FBgn0026872","EGF_Stimulus":"0.57"},{"ID":"FBgn0031033","EGF_Stimulus":"0.34"},{"ID":"FBgn0020642","EGF_Stimulus":"-0.23"},{"ID":"FBgn0032176","EGF_Stimulus":"1.04"},{"ID":"FBgn0261108","EGF_Stimulus":"-0.44"},{"ID":"FBgn0014031","EGF_Stimulus":"0.97"},{"ID":"FBgn0052547","EGF_Stimulus":"-0.89"},{"ID":"FBgn0004573","EGF_Stimulus":"0.48"},{"ID":"FBgn0035743","EGF_Stimulus":"0.53"},{"ID":"FBgn0028950","EGF_Stimulus":"-0.95"},{"ID":"FBgn0003373","EGF_Stimulus":"-0.13"},{"ID":"FBgn0013718","EGF_Stimulus":"-1.03"},{"ID":"FBgn0039465","EGF_Stimulus":"1.51"},{"ID":"FBgn0025592","EGF_Stimulus":"-0.3"},{"ID":"FBgn0034728","EGF_Stimulus":"0.32"},{"ID":"FBgn0003089","EGF_Stimulus":"0.25"},{"ID":"FBgn0261609","EGF_Stimulus":"-1.91"},{"ID":"FBgn0027279","EGF_Stimulus":"-1.77"},{"ID":"FBgn0050091","EGF_Stimulus":"1.75"},{"ID":"FBgn0037756","EGF_Stimulus":"0.63"},{"ID":"FBgn0036550","EGF_Stimulus":"0.62"},{"ID":"FBgn0024432","EGF_Stimulus":"-1.71"},{"ID":"FBgn0034898","EGF_Stimulus":"-1.19"},{"ID":"FBgn0260439","EGF_Stimulus":"0.06"},{"ID":"FBgn0032946","EGF_Stimulus":"0.95"},{"ID":"FBgn0031633","EGF_Stimulus":"0.33"},{"ID":"FBgn0023513","EGF_Stimulus":"0.79"},{"ID":"FBgn0024249","EGF_Stimulus":"0.76"},{"ID":"FBgn0038135","EGF_Stimulus":"2.21"},{"ID":"FBgn0035631","EGF_Stimulus":"-0.61"},{"ID":"FBgn0054028","EGF_Stimulus":"-0.31"},{"ID":"FBgn0260959","EGF_Stimulus":"-1.22"},{"ID":"FBgn0027569","EGF_Stimulus":"0.39"},{"ID":"FBgn0015793","EGF_Stimulus":"0.62"},{"ID":"FBgn0031170","EGF_Stimulus":"1.74"},{"ID":"FBgn0051038","EGF_Stimulus":"-0.94"},{"ID":"FBgn0026879","EGF_Stimulus":"0.52"},{"ID":"FBgn0003721","EGF_Stimulus":"-1.08"},{"ID":"FBgn0034411","EGF_Stimulus":"0.87"},{"ID":"FBgn0025456","EGF_Stimulus":"-0.75"},{"ID":"FBgn0031920","EGF_Stimulus":"0.37"},{"ID":"FBgn0003319","EGF_Stimulus":"-0.26"},{"ID":"FBgn0051294","EGF_Stimulus":"0.81"},{"ID":"FBgn0052220","EGF_Stimulus":"-1.37"},{"ID":"FBgn0033121","EGF_Stimulus":"1.73"},{"ID":"FBgn0034694","EGF_Stimulus":"0.84"},{"ID":"FBgn0051093","EGF_Stimulus":"0.87"},{"ID":"FBgn0038909","EGF_Stimulus":"0.53"},{"ID":"FBgn0040273","EGF_Stimulus":"1.3"},{"ID":"FBgn0038165","EGF_Stimulus":"0.5"},{"ID":"FBgn0037616","EGF_Stimulus":"1.12"},{"ID":"FBgn0040384","EGF_Stimulus":"1.27"},{"ID":"FBgn0036711","EGF_Stimulus":"1.23"},{"ID":"FBgn0031875","EGF_Stimulus":"-0.07"},{"ID":"FBgn0065035","EGF_Stimulus":"-1.4"},{"ID":"FBgn0259822","EGF_Stimulus":"0.82"},{"ID":"FBgn0039258","EGF_Stimulus":"0.39"},{"ID":"FBgn0260965","EGF_Stimulus":"-1.18"},{"ID":"FBgn0025739","EGF_Stimulus":"0.38"},{"ID":"FBgn0085438","EGF_Stimulus":"0.5"},{"ID":"FBgn0038789","EGF_Stimulus":"0.3"},{"ID":"FBgn0058439","EGF_Stimulus":"0.6"},{"ID":"FBgn0032339","EGF_Stimulus":"-0.46"},{"ID":"FBgn0261287","EGF_Stimulus":"0.43"},{"ID":"FBgn0037918","EGF_Stimulus":"1.23"},{"ID":"FBgn0026141","EGF_Stimulus":"-1.56"},{"ID":"FBgn0040345","EGF_Stimulus":"-0.13"},{"ID":"FBgn0050416","EGF_Stimulus":"0.51"},{"ID":"FBgn0031935","EGF_Stimulus":"0.8"},{"ID":"FBgn0036585","EGF_Stimulus":"-0.59"},{"ID":"FBgn0032385","EGF_Stimulus":"-1.25"},{"ID":"FBgn0032703","EGF_Stimulus":"-0.1"},{"ID":"FBgn0050325","EGF_Stimulus":"0.34"},{"ID":"FBgn0036626","EGF_Stimulus":"1.26"},{"ID":"FBgn0027580","EGF_Stimulus":"0.8"},{"ID":"FBgn0032680","EGF_Stimulus":"0.75"},{"ID":"FBgn0032809","EGF_Stimulus":"-0.58"},{"ID":"FBgn0037518","EGF_Stimulus":"0.35"},{"ID":"FBgn0052486","EGF_Stimulus":"1.07"},{"ID":"FBgn0037222","EGF_Stimulus":"1.62"},{"ID":"FBgn0086915","EGF_Stimulus":"-0.22"},{"ID":"FBgn0085447","EGF_Stimulus":"0.88"},{"ID":"FBgn0031306","EGF_Stimulus":"0.48"},{"ID":"FBgn0035676","EGF_Stimulus":"-0.43"},{"ID":"FBgn0027951","EGF_Stimulus":"0.55"},{"ID":"FBgn0051089","EGF_Stimulus":"0.96"},{"ID":"FBgn0033850","EGF_Stimulus":"-1.52"},{"ID":"FBgn0029959","EGF_Stimulus":"0.41"},{"ID":"FBgn0034789","EGF_Stimulus":"1.02"},{"ID":"FBgn0002899","EGF_Stimulus":"-0.9"},{"ID":"FBgn0034012","EGF_Stimulus":"0.75"},{"ID":"FBgn0022699","EGF_Stimulus":"-1.49"},{"ID":"FBgn0034460","EGF_Stimulus":"-0.8"},{"ID":"FBgn0040940","EGF_Stimulus":"-0.41"},{"ID":"FBgn0040373","EGF_Stimulus":"0.59"},{"ID":"FBgn0030114","EGF_Stimulus":"-0.47"},{"ID":"FBgn0004364","EGF_Stimulus":"-0.56"},{"ID":"FBgn0037436","EGF_Stimulus":"0.59"},{"ID":"FBgn0039688","EGF_Stimulus":"1.27"},{"ID":"FBgn0033729","EGF_Stimulus":"-1.02"},{"ID":"FBgn0030982","EGF_Stimulus":"-0.71"},{"ID":"FBgn0023550","EGF_Stimulus":"0.62"},{"ID":"FBgn0034219","EGF_Stimulus":"-0.49"},{"ID":"FBgn0031768","EGF_Stimulus":"0.61"},{"ID":"FBgn0035348","EGF_Stimulus":"-0.28"},{"ID":"FBgn0035437","EGF_Stimulus":"0.31"},{"ID":"FBgn0031287","EGF_Stimulus":"0.47"},{"ID":"FBgn0036035","EGF_Stimulus":"0.54"},{"ID":"FBgn0031952","EGF_Stimulus":"0.66"},{"ID":"FBgn0037852","EGF_Stimulus":"1.07"},{"ID":"FBgn0029952","EGF_Stimulus":"0.35"},{"ID":"FBgn0037297","EGF_Stimulus":"1.3"},{"ID":"FBgn0038046","EGF_Stimulus":"1.15"},{"ID":"FBgn0037409","EGF_Stimulus":"-1.25"},{"ID":"FBgn0026015","EGF_Stimulus":"-1.02"},{"ID":"FBgn0038147","EGF_Stimulus":"-1.76"},{"ID":"FBgn0036009","EGF_Stimulus":"1.2"},{"ID":"FBgn0035032","EGF_Stimulus":"-0.87"},{"ID":"FBgn0037696","EGF_Stimulus":"1.73"},{"ID":"FBgn0033757","EGF_Stimulus":"0.84"},{"ID":"FBgn0033351","EGF_Stimulus":"0.42"},{"ID":"FBgn0033465","EGF_Stimulus":"-0.77"},{"ID":"FBgn0026479","EGF_Stimulus":"0.12"},{"ID":"FBgn0037534","EGF_Stimulus":"-1.22"},{"ID":"FBgn0037023","EGF_Stimulus":"-0.67"},{"ID":"FBgn0025644","EGF_Stimulus":"0.8"},{"ID":"FBgn0032373","EGF_Stimulus":"-2.28"},{"ID":"FBgn0039625","EGF_Stimulus":"-0.46"},{"ID":"FBgn0041712","EGF_Stimulus":"-0.53"},{"ID":"FBgn0033177","EGF_Stimulus":"0.56"},{"ID":"FBgn0003464","EGF_Stimulus":"-1.18"},{"ID":"FBgn0014037","EGF_Stimulus":"2"},{"ID":"FBgn0036738","EGF_Stimulus":"0.85"},{"ID":"FBgn0035445","EGF_Stimulus":"0.55"},{"ID":"FBgn0022288","EGF_Stimulus":"-0.78"},{"ID":"FBgn0085233","EGF_Stimulus":"0.84"},{"ID":"FBgn0030529","EGF_Stimulus":"0.79"},{"ID":"FBgn0051807","EGF_Stimulus":"-0.77"},{"ID":"FBgn0030298","EGF_Stimulus":"0.72"},{"ID":"FBgn0002781","EGF_Stimulus":"1.94"},{"ID":"FBgn0030361","EGF_Stimulus":"-1.99"},{"ID":"FBgn0085450","EGF_Stimulus":"-0.45"},{"ID":"FBgn0039232","EGF_Stimulus":"0.53"},{"ID":"FBgn0037736","EGF_Stimulus":"0.85"},{"ID":"FBgn0033377","EGF_Stimulus":"0.05"},{"ID":"FBgn0026576","EGF_Stimulus":"-0.95"},{"ID":"FBgn0035475","EGF_Stimulus":"-0.27"},{"ID":"FBgn0031739","EGF_Stimulus":"1.57"},{"ID":"FBgn0043842","EGF_Stimulus":"-3.63"},{"ID":"FBgn0051040","EGF_Stimulus":"0.65"},{"ID":"FBgn0053554","EGF_Stimulus":"-4.38"},{"ID":"FBgn0002645","EGF_Stimulus":"-1.01"},{"ID":"FBgn0024365","EGF_Stimulus":"1.45"},{"ID":"FBgn0000109","EGF_Stimulus":"-0.34"},{"ID":"FBgn0261671","EGF_Stimulus":"1.33"},{"ID":"FBgn0038071","EGF_Stimulus":"1.19"},{"ID":"FBgn0037815","EGF_Stimulus":"-0.42"},{"ID":"FBgn0038526","EGF_Stimulus":"-0.16"},{"ID":"FBgn0052076","EGF_Stimulus":"-0.4"},{"ID":"FBgn0025832","EGF_Stimulus":"0.69"},{"ID":"FBgn0051773","EGF_Stimulus":"1.14"},{"ID":"FBgn0031388","EGF_Stimulus":"0.92"},{"ID":"FBgn0031494","EGF_Stimulus":"0.92"},{"ID":"FBgn0001077","EGF_Stimulus":"-0.94"},{"ID":"FBgn0044030","EGF_Stimulus":"-0.33"},{"ID":"FBgn0040365","EGF_Stimulus":"0.26"},{"ID":"FBgn0036211","EGF_Stimulus":"-0.67"},{"ID":"FBgn0039226","EGF_Stimulus":"0.6"},{"ID":"FBgn0004436","EGF_Stimulus":"-1.65"},{"ID":"FBgn0032834","EGF_Stimulus":"-1.64"},{"ID":"FBgn0033845","EGF_Stimulus":"-0.68"},{"ID":"FBgn0038084","EGF_Stimulus":"-1.55"},{"ID":"FBgn0042199","EGF_Stimulus":"-0.44"},{"ID":"FBgn0037556","EGF_Stimulus":"-0.55"},{"ID":"FBgn0031575","EGF_Stimulus":"-1.05"},{"ID":"FBgn0029958","EGF_Stimulus":"-0.39"},{"ID":"FBgn0261393","EGF_Stimulus":"0.87"},{"ID":"FBgn0036291","EGF_Stimulus":"-1.26"},{"ID":"FBgn0004957","EGF_Stimulus":"0.74"},{"ID":"FBgn0032434","EGF_Stimulus":"0.61"},{"ID":"FBgn0035601","EGF_Stimulus":"1.03"},{"ID":"FBgn0040723","EGF_Stimulus":"1.34"},{"ID":"FBgn0014863","EGF_Stimulus":"-0.21"},{"ID":"FBgn0029861","EGF_Stimulus":"-0.39"},{"ID":"FBgn0013756","EGF_Stimulus":"-1.02"},{"ID":"FBgn0032997","EGF_Stimulus":"0.3"},{"ID":"FBgn0003218","EGF_Stimulus":"0.66"},{"ID":"FBgn0011672","EGF_Stimulus":"-0.68"},{"ID":"FBgn0033358","EGF_Stimulus":"0.9"},{"ID":"FBgn0014469","EGF_Stimulus":"0.72"},{"ID":"FBgn0028554","EGF_Stimulus":"0.75"},{"ID":"FBgn0037531","EGF_Stimulus":"0.34"},{"ID":"FBgn0029932","EGF_Stimulus":"-0.65"},{"ID":"FBgn0033234","EGF_Stimulus":"0.43"},{"ID":"FBgn0016123","EGF_Stimulus":"-0.27"},{"ID":"FBgn0259697","EGF_Stimulus":"-0.41"},{"ID":"FBgn0083141","EGF_Stimulus":"-1.07"},{"ID":"FBgn0069354","EGF_Stimulus":"-0.34"},{"ID":"FBgn0034506","EGF_Stimulus":"-0.35"},{"ID":"FBgn0023170","EGF_Stimulus":"-3.39"},{"ID":"FBgn0039591","EGF_Stimulus":"-0.86"},{"ID":"FBgn0030177","EGF_Stimulus":"0.17"},{"ID":"FBgn0086676","EGF_Stimulus":"-0.5"},{"ID":"FBgn0004401","EGF_Stimulus":"1.44"},{"ID":"FBgn0259832","EGF_Stimulus":"1.73"},{"ID":"FBgn0029588","EGF_Stimulus":"0.74"},{"ID":"FBgn0039528","EGF_Stimulus":"-1.03"},{"ID":"FBgn0250821","EGF_Stimulus":"0.87"},{"ID":"FBgn0034948","EGF_Stimulus":"2.32"},{"ID":"FBgn0033405","EGF_Stimulus":"2.71"},{"ID":"FBgn0032821","EGF_Stimulus":"0.81"},{"ID":"FBgn0051229","EGF_Stimulus":"-0.68"},{"ID":"FBgn0037185","EGF_Stimulus":"0.45"},{"ID":"FBgn0016081","EGF_Stimulus":"-0.36"},{"ID":"FBgn0029660","EGF_Stimulus":"-0.49"},{"ID":"FBgn0020269","EGF_Stimulus":"1.35"},{"ID":"FBgn0040736","EGF_Stimulus":"-1.39"},{"ID":"FBgn0028360","EGF_Stimulus":"-0.57"},{"ID":"FBgn0015399","EGF_Stimulus":"-0.61"},{"ID":"FBgn0010240","EGF_Stimulus":"0.29"},{"ID":"FBgn0027080","EGF_Stimulus":"1.05"},{"ID":"FBgn0030314","EGF_Stimulus":"-1.25"},{"ID":"FBgn0053143","EGF_Stimulus":"1.17"},{"ID":"FBgn0028962","EGF_Stimulus":"1.14"},{"ID":"FBgn0039118","EGF_Stimulus":"-0.91"},{"ID":"FBgn0030245","EGF_Stimulus":"1"},{"ID":"FBgn0038566","EGF_Stimulus":"0.7"},{"ID":"FBgn0035904","EGF_Stimulus":"-0.15"},{"ID":"FBgn0036191","EGF_Stimulus":"1.02"},{"ID":"FBgn0033783","EGF_Stimulus":"0.46"},{"ID":"FBgn0011589","EGF_Stimulus":"0.64"},{"ID":"FBgn0038694","EGF_Stimulus":"-0.73"},{"ID":"FBgn0085355","EGF_Stimulus":"-0.56"},{"ID":"FBgn0036058","EGF_Stimulus":"0.32"},{"ID":"FBgn0039051","EGF_Stimulus":"-0.22"},{"ID":"FBgn0085455","EGF_Stimulus":"1.04"},{"ID":"FBgn0051956","EGF_Stimulus":"0.36"},{"ID":"FBgn0050272","EGF_Stimulus":"0.34"},{"ID":"FBgn0038774","EGF_Stimulus":"-1.69"},{"ID":"FBgn0028838","EGF_Stimulus":"1.69"},{"ID":"FBgn0031726","EGF_Stimulus":"1.32"},{"ID":"FBgn0011638","EGF_Stimulus":"-0.66"},{"ID":"FBgn0029948","EGF_Stimulus":"1.39"},{"ID":"FBgn0040735","EGF_Stimulus":"0.76"},{"ID":"FBgn0030970","EGF_Stimulus":"-0.64"},{"ID":"FBgn0030159","EGF_Stimulus":"0.14"},{"ID":"FBgn0029137","EGF_Stimulus":"-0.63"},{"ID":"FBgn0033188","EGF_Stimulus":"1.14"},{"ID":"FBgn0032204","EGF_Stimulus":"-1.11"},{"ID":"FBgn0025702","EGF_Stimulus":"0.82"},{"ID":"FBgn0259818","EGF_Stimulus":"0.65"},{"ID":"FBgn0036278","EGF_Stimulus":"0.68"},{"ID":"FBgn0030790","EGF_Stimulus":"0.63"},{"ID":"FBgn0261618","EGF_Stimulus":"1.11"},{"ID":"FBgn0011570","EGF_Stimulus":"0.2"},{"ID":"FBgn0035263","EGF_Stimulus":"-0.57"},{"ID":"FBgn0030932","EGF_Stimulus":"0.69"},{"ID":"FBgn0026189","EGF_Stimulus":"0.52"},{"ID":"FBgn0038009","EGF_Stimulus":"0.4"},{"ID":"FBgn0039584","EGF_Stimulus":"0.98"},{"ID":"FBgn0027556","EGF_Stimulus":"1.08"},{"ID":"FBgn0035245","EGF_Stimulus":"0.41"},{"ID":"FBgn0031817","EGF_Stimulus":"-1.37"},{"ID":"FBgn0035068","EGF_Stimulus":"-0.83"},{"ID":"FBgn0032078","EGF_Stimulus":"-0.52"},{"ID":"FBgn0051806","EGF_Stimulus":"4.88"},{"ID":"FBgn0030675","EGF_Stimulus":"-1.33"},{"ID":"FBgn0031791","EGF_Stimulus":"0.28"},{"ID":"FBgn0030208","EGF_Stimulus":"-0.92"},{"ID":"FBgn0040607","EGF_Stimulus":"0.87"},{"ID":"FBgn0003510","EGF_Stimulus":"1.34"},{"ID":"FBgn0031044","EGF_Stimulus":"0.71"},{"ID":"FBgn0041182","EGF_Stimulus":"1.28"},{"ID":"FBgn0038125","EGF_Stimulus":"-0.06"},{"ID":"FBgn0035586","EGF_Stimulus":"-0.54"},{"ID":"FBgn0053506","EGF_Stimulus":"-0.67"},{"ID":"FBgn0034458","EGF_Stimulus":"0.68"},{"ID":"FBgn0050423","EGF_Stimulus":"0.67"},{"ID":"FBgn0035572","EGF_Stimulus":"0.99"},{"ID":"FBgn0034490","EGF_Stimulus":"0.53"},{"ID":"FBgn0034783","EGF_Stimulus":"0.55"},{"ID":"FBgn0040334","EGF_Stimulus":"0.54"},{"ID":"FBgn0040524","EGF_Stimulus":"-1.39"},{"ID":"FBgn0039702","EGF_Stimulus":"1.19"},{"ID":"FBgn0030881","EGF_Stimulus":"-1.37"},{"ID":"FBgn0261552","EGF_Stimulus":"-3.4"},{"ID":"FBgn0052675","EGF_Stimulus":"0.96"},{"ID":"FBgn0015039","EGF_Stimulus":"0.87"},{"ID":"FBgn0259240","EGF_Stimulus":"0.74"},{"ID":"FBgn0027780","EGF_Stimulus":"-0.09"},{"ID":"FBgn0035131","EGF_Stimulus":"0.39"},{"ID":"FBgn0036769","EGF_Stimulus":"0.87"},{"ID":"FBgn0038838","EGF_Stimulus":"0.58"},{"ID":"FBgn0041087","EGF_Stimulus":"0.61"},{"ID":"FBgn0023407","EGF_Stimulus":"1.13"},{"ID":"FBgn0000520","EGF_Stimulus":"0.56"},{"ID":"FBgn0037290","EGF_Stimulus":"0.09"},{"ID":"FBgn0026432","EGF_Stimulus":"-0.15"},{"ID":"FBgn0032648","EGF_Stimulus":"0.6"},{"ID":"FBgn0030334","EGF_Stimulus":"-0.71"},{"ID":"FBgn0037123","EGF_Stimulus":"0.19"},{"ID":"FBgn0036687","EGF_Stimulus":"-1.24"},{"ID":"FBgn0015359","EGF_Stimulus":"0.19"},{"ID":"FBgn0037153","EGF_Stimulus":"-1.04"},{"ID":"FBgn0036242","EGF_Stimulus":"0.73"},{"ID":"FBgn0033615","EGF_Stimulus":"-1.02"},{"ID":"FBgn0036468","EGF_Stimulus":"0.88"},{"ID":"FBgn0039079","EGF_Stimulus":"-0.43"},{"ID":"FBgn0039576","EGF_Stimulus":"-0.88"},{"ID":"FBgn0030723","EGF_Stimulus":"0.75"},{"ID":"FBgn0032876","EGF_Stimulus":"-1.82"},{"ID":"FBgn0000028","EGF_Stimulus":"-0.72"},{"ID":"FBgn0003411","EGF_Stimulus":"0.31"},{"ID":"FBgn0034588","EGF_Stimulus":"1.44"},{"ID":"FBgn0034820","EGF_Stimulus":"-0.83"},{"ID":"FBgn0036643","EGF_Stimulus":"0.66"},{"ID":"FBgn0036985","EGF_Stimulus":"-0.09"},{"ID":"FBgn0036593","EGF_Stimulus":"-0.77"},{"ID":"FBgn0033775","EGF_Stimulus":"0.9"},{"ID":"FBgn0051814","EGF_Stimulus":"-0.18"},{"ID":"FBgn0039503","EGF_Stimulus":"-1.1"},{"ID":"FBgn0031745","EGF_Stimulus":"-0.21"},{"ID":"FBgn0027497","EGF_Stimulus":"-1.31"},{"ID":"FBgn0030073","EGF_Stimulus":"0.73"},{"ID":"FBgn0027889","EGF_Stimulus":"-1.12"},{"ID":"FBgn0034377","EGF_Stimulus":"0.77"},{"ID":"FBgn0051712","EGF_Stimulus":"0.76"},{"ID":"FBgn0024238","EGF_Stimulus":"0.72"},{"ID":"FBgn0053526","EGF_Stimulus":"-4.33"},{"ID":"FBgn0030968","EGF_Stimulus":"-0.54"},{"ID":"FBgn0036895","EGF_Stimulus":"-0.26"},{"ID":"FBgn0032614","EGF_Stimulus":"-0.9"},{"ID":"FBgn0028420","EGF_Stimulus":"-2.37"},{"ID":"FBgn0051950","EGF_Stimulus":"-0.83"},{"ID":"FBgn0030174","EGF_Stimulus":"-0.8"},{"ID":"FBgn0032096","EGF_Stimulus":"0.57"},{"ID":"FBgn0030320","EGF_Stimulus":"0.82"},{"ID":"FBgn0030598","EGF_Stimulus":"-0.56"},{"ID":"FBgn0037717","EGF_Stimulus":"0.43"},{"ID":"FBgn0034315","EGF_Stimulus":"0.44"},{"ID":"FBgn0039616","EGF_Stimulus":"1.03"},{"ID":"FBgn0050374","EGF_Stimulus":"0.91"},{"ID":"FBgn0039864","EGF_Stimulus":"0.5"},{"ID":"FBgn0043457","EGF_Stimulus":"-0.66"},{"ID":"FBgn0052109","EGF_Stimulus":"0.62"},{"ID":"FBgn0032163","EGF_Stimulus":"0.8"},{"ID":"FBgn0035121","EGF_Stimulus":"-1.26"},{"ID":"FBgn0000279","EGF_Stimulus":"1.07"},{"ID":"FBgn0039205","EGF_Stimulus":"0.5"},{"ID":"FBgn0032487","EGF_Stimulus":"-0.7"},{"ID":"FBgn0037070","EGF_Stimulus":"-2.15"},{"ID":"FBgn0033096","EGF_Stimulus":"-0.29"},{"ID":"FBgn0054012","EGF_Stimulus":"-0.78"},{"ID":"FBgn0032414","EGF_Stimulus":"-1.39"},{"ID":"FBgn0031022","EGF_Stimulus":"-0.82"},{"ID":"FBgn0026616","EGF_Stimulus":"0.31"},{"ID":"FBgn0030955","EGF_Stimulus":"-0.2"},{"ID":"FBgn0029833","EGF_Stimulus":"0.83"},{"ID":"FBgn0259223","EGF_Stimulus":"-0.32"},{"ID":"FBgn0259742","EGF_Stimulus":"-0.6"},{"ID":"FBgn0030329","EGF_Stimulus":"0.67"},{"ID":"FBgn0038474","EGF_Stimulus":"-0.59"},{"ID":"FBgn0053198","EGF_Stimulus":"0.87"},{"ID":"FBgn0035044","EGF_Stimulus":"-0.81"},{"ID":"FBgn0037487","EGF_Stimulus":"-0.68"},{"ID":"FBgn0010114","EGF_Stimulus":"1.17"},{"ID":"FBgn0031055","EGF_Stimulus":"0.89"},{"ID":"FBgn0020381","EGF_Stimulus":"0.66"},{"ID":"FBgn0038819","EGF_Stimulus":"0.41"},{"ID":"FBgn0039943","EGF_Stimulus":"-0.42"},{"ID":"FBgn0030456","EGF_Stimulus":"-0.47"},{"ID":"FBgn0032350","EGF_Stimulus":"-0.09"},{"ID":"FBgn0038366","EGF_Stimulus":"0.47"},{"ID":"FBgn0034885","EGF_Stimulus":"0.14"},{"ID":"FBgn0032132","EGF_Stimulus":"-0.62"},{"ID":"FBgn0085367","EGF_Stimulus":"-1.05"},{"ID":"FBgn0039033","EGF_Stimulus":"0.97"},{"ID":"FBgn0085462","EGF_Stimulus":"0.42"},{"ID":"FBgn0032195","EGF_Stimulus":"0.6"},{"ID":"FBgn0010424","EGF_Stimulus":"1.84"},{"ID":"FBgn0260793","EGF_Stimulus":"-1.01"},{"ID":"FBgn0039093","EGF_Stimulus":"-1.08"},{"ID":"FBgn0033762","EGF_Stimulus":"0.81"},{"ID":"FBgn0030304","EGF_Stimulus":"-1.01"},{"ID":"FBgn0004132","EGF_Stimulus":"1.02"},{"ID":"FBgn0035866","EGF_Stimulus":"1.28"},{"ID":"FBgn0004511","EGF_Stimulus":"-0.46"},{"ID":"FBgn0043362","EGF_Stimulus":"-0.51"},{"ID":"FBgn0037140","EGF_Stimulus":"1.37"},{"ID":"FBgn0051259","EGF_Stimulus":"0.57"},{"ID":"FBgn0032683","EGF_Stimulus":"0.59"},{"ID":"FBgn0010602","EGF_Stimulus":"-0.5"},{"ID":"FBgn0040899","EGF_Stimulus":"0.29"},{"ID":"FBgn0010470","EGF_Stimulus":"0.68"},{"ID":"FBgn0085295","EGF_Stimulus":"1.16"},{"ID":"FBgn0028563","EGF_Stimulus":"1.1"},{"ID":"FBgn0053317","EGF_Stimulus":"0.62"},{"ID":"FBgn0033744","EGF_Stimulus":"-0.81"},{"ID":"FBgn0001308","EGF_Stimulus":"0.7"},{"ID":"FBgn0034308","EGF_Stimulus":"0.67"},{"ID":"FBgn0030376","EGF_Stimulus":"0.86"},{"ID":"FBgn0003941","EGF_Stimulus":"-4.72"},{"ID":"FBgn0033631","EGF_Stimulus":"1.41"},{"ID":"FBgn0032598","EGF_Stimulus":"1.82"},{"ID":"FBgn0015321","EGF_Stimulus":"0.79"},{"ID":"FBgn0053002","EGF_Stimulus":"0.66"},{"ID":"FBgn0030080","EGF_Stimulus":"0.82"},{"ID":"FBgn0025624","EGF_Stimulus":"0.71"},{"ID":"FBgn0028901","EGF_Stimulus":"0.63"},{"ID":"FBgn0028944","EGF_Stimulus":"-1.45"},{"ID":"FBgn0031944","EGF_Stimulus":"1.08"},{"ID":"FBgn0039475","EGF_Stimulus":"0.76"},{"ID":"FBgn0261563","EGF_Stimulus":"-0.65"},{"ID":"FBgn0036991","EGF_Stimulus":"0.05"},{"ID":"FBgn0036089","EGF_Stimulus":"-0.52"},{"ID":"FBgn0034800","EGF_Stimulus":"0.78"},{"ID":"FBgn0033344","EGF_Stimulus":"1.09"},{"ID":"FBgn0083943","EGF_Stimulus":"-0.96"},{"ID":"FBgn0037412","EGF_Stimulus":"-0.74"},{"ID":"FBgn0040397","EGF_Stimulus":"0.67"},{"ID":"FBgn0034654","EGF_Stimulus":"-1.72"},{"ID":"FBgn0037955","EGF_Stimulus":"1.34"},{"ID":"FBgn0028853","EGF_Stimulus":"-1.23"},{"ID":"FBgn0085480","EGF_Stimulus":"0.92"},{"ID":"FBgn0051368","EGF_Stimulus":"0.46"},{"ID":"FBgn0052102","EGF_Stimulus":"-0.64"},{"ID":"FBgn0037901","EGF_Stimulus":"0.4"},{"ID":"FBgn0037039","EGF_Stimulus":"-0.87"},{"ID":"FBgn0033880","EGF_Stimulus":"1.09"},{"ID":"FBgn0035807","EGF_Stimulus":"-0.54"},{"ID":"FBgn0029746","EGF_Stimulus":"0.59"},{"ID":"FBgn0035039","EGF_Stimulus":"1.09"},{"ID":"FBgn0050054","EGF_Stimulus":"0.35"},{"ID":"FBgn0030440","EGF_Stimulus":"0.44"},{"ID":"FBgn0015591","EGF_Stimulus":"1.66"},{"ID":"FBgn0038894","EGF_Stimulus":"-0.81"},{"ID":"FBgn0028646","EGF_Stimulus":"-0.57"},{"ID":"FBgn0014368","EGF_Stimulus":"3.81"},{"ID":"FBgn0259233","EGF_Stimulus":"0.32"},{"ID":"FBgn0000406","EGF_Stimulus":"1.91"},{"ID":"FBgn0032282","EGF_Stimulus":"0.51"},{"ID":"FBgn0085491","EGF_Stimulus":"-0.78"},{"ID":"FBgn0028497","EGF_Stimulus":"-1.65"},{"ID":"FBgn0029713","EGF_Stimulus":"0.92"},{"ID":"FBgn0036614","EGF_Stimulus":"-2.27"},{"ID":"FBgn0015829","EGF_Stimulus":"0.71"},{"ID":"FBgn0032139","EGF_Stimulus":"-2.21"},{"ID":"FBgn0261461","EGF_Stimulus":"1.63"},{"ID":"FBgn0038717","EGF_Stimulus":"0.75"},{"ID":"FBgn0039370","EGF_Stimulus":"0.59"},{"ID":"FBgn0020371","EGF_Stimulus":"-0.92"},{"ID":"FBgn0038923","EGF_Stimulus":"1.45"},{"ID":"FBgn0050334","EGF_Stimulus":"-0.22"},{"ID":"FBgn0042205","EGF_Stimulus":"0.54"},{"ID":"FBgn0005612","EGF_Stimulus":"-1.01"},{"ID":"FBgn0031182","EGF_Stimulus":"-0.36"},{"ID":"FBgn0004117","EGF_Stimulus":"0.41"},{"ID":"FBgn0003117","EGF_Stimulus":"1.3"},{"ID":"FBgn0028570","EGF_Stimulus":"-1.02"},{"ID":"FBgn0052176","EGF_Stimulus":"0.37"},{"ID":"FBgn0029733","EGF_Stimulus":"0.66"},{"ID":"FBgn0032117","EGF_Stimulus":"0.23"},{"ID":"FBgn0050269","EGF_Stimulus":"-1.33"},{"ID":"FBgn0039004","EGF_Stimulus":"-0.75"},{"ID":"FBgn0033770","EGF_Stimulus":"0.86"},{"ID":"FBgn0015379","EGF_Stimulus":"-0.31"},{"ID":"FBgn0031194","EGF_Stimulus":"-0.95"},{"ID":"FBgn0020255","EGF_Stimulus":"-0.52"},{"ID":"FBgn0003392","EGF_Stimulus":"-0.78"},{"ID":"FBgn0043791","EGF_Stimulus":"-1.65"},{"ID":"FBgn0032150","EGF_Stimulus":"-0.19"},{"ID":"FBgn0037065","EGF_Stimulus":"0.83"},{"ID":"FBgn0035800","EGF_Stimulus":"0.2"},{"ID":"FBgn0037908","EGF_Stimulus":"0.94"},{"ID":"FBgn0029795","EGF_Stimulus":"0.94"},{"ID":"FBgn0011822","EGF_Stimulus":"-0.65"},{"ID":"FBgn0029976","EGF_Stimulus":"0.93"},{"ID":"FBgn0004590","EGF_Stimulus":"-0.47"},{"ID":"FBgn0040688","EGF_Stimulus":"0.4"},{"ID":"FBgn0035941","EGF_Stimulus":"0.95"},{"ID":"FBgn0000221","EGF_Stimulus":"-2.02"},{"ID":"FBgn0051300","EGF_Stimulus":"0.51"},{"ID":"FBgn0040009","EGF_Stimulus":"-1.12"},{"ID":"FBgn0039055","EGF_Stimulus":"0.88"},{"ID":"FBgn0250791","EGF_Stimulus":"-3.69"},{"ID":"FBgn0037751","EGF_Stimulus":"0.99"},{"ID":"FBgn0036808","EGF_Stimulus":"2.03"},{"ID":"FBgn0032666","EGF_Stimulus":"0.92"},{"ID":"FBgn0053229","EGF_Stimulus":"-0.85"},{"ID":"FBgn0034132","EGF_Stimulus":"-0.34"},{"ID":"FBgn0002441","EGF_Stimulus":"-1.74"},{"ID":"FBgn0053127","EGF_Stimulus":"-1.79"},{"ID":"FBgn0036833","EGF_Stimulus":"0.93"},{"ID":"FBgn0035336","EGF_Stimulus":"1.56"},{"ID":"FBgn0034156","EGF_Stimulus":"0.54"},{"ID":"FBgn0041111","EGF_Stimulus":"2.08"},{"ID":"FBgn0250906","EGF_Stimulus":"1"},{"ID":"FBgn0034736","EGF_Stimulus":"1.11"},{"ID":"FBgn0023180","EGF_Stimulus":"0.69"},{"ID":"FBgn0043550","EGF_Stimulus":"-1.69"},{"ID":"FBgn0259172","EGF_Stimulus":"-3.9"},{"ID":"FBgn0000099","EGF_Stimulus":"0.51"},{"ID":"FBgn0053120","EGF_Stimulus":"0.69"},{"ID":"FBgn0039501","EGF_Stimulus":"-1.18"},{"ID":"FBgn0036522","EGF_Stimulus":"1.09"},{"ID":"FBgn0037609","EGF_Stimulus":"0.68"},{"ID":"FBgn0037309","EGF_Stimulus":"0.58"},{"ID":"FBgn0035000","EGF_Stimulus":"0.19"},{"ID":"FBgn0028527","EGF_Stimulus":"1.06"},{"ID":"FBgn0026597","EGF_Stimulus":"0.72"},{"ID":"FBgn0040237","EGF_Stimulus":"-1.48"},{"ID":"FBgn0001083","EGF_Stimulus":"0.33"},{"ID":"FBgn0024986","EGF_Stimulus":"1.46"},{"ID":"FBgn0041191","EGF_Stimulus":"1.21"},{"ID":"FBgn0035430","EGF_Stimulus":"0.88"},{"ID":"FBgn0029538","EGF_Stimulus":"0.55"},{"ID":"FBgn0037448","EGF_Stimulus":"0.53"},{"ID":"FBgn0039482","EGF_Stimulus":"-0.35"},{"ID":"FBgn0032788","EGF_Stimulus":"0.62"},{"ID":"FBgn0034249","EGF_Stimulus":"-1.13"},{"ID":"FBgn0027073","EGF_Stimulus":"0.82"},{"ID":"FBgn0032408","EGF_Stimulus":"1.16"},{"ID":"FBgn0003162","EGF_Stimulus":"0.92"},{"ID":"FBgn0052651","EGF_Stimulus":"0.89"},{"ID":"FBgn0005636","EGF_Stimulus":"1.83"},{"ID":"FBgn0261258","EGF_Stimulus":"0.9"},{"ID":"FBgn0250836","EGF_Stimulus":"-0.32"},{"ID":"FBgn0086708","EGF_Stimulus":"0.92"},{"ID":"FBgn0041707","EGF_Stimulus":"1.07"},{"ID":"FBgn0035515","EGF_Stimulus":"0.78"},{"ID":"FBgn0031344","EGF_Stimulus":"-0.5"},{"ID":"FBgn0038861","EGF_Stimulus":"0.55"},{"ID":"FBgn0037317","EGF_Stimulus":"-0.1"},{"ID":"FBgn0011288","EGF_Stimulus":"1.06"},{"ID":"FBgn0051291","EGF_Stimulus":"-3.11"},{"ID":"FBgn0027356","EGF_Stimulus":"0.36"},{"ID":"FBgn0053225","EGF_Stimulus":"0.47"},{"ID":"FBgn0000346","EGF_Stimulus":"-1.82"},{"ID":"FBgn0033287","EGF_Stimulus":"1.59"},{"ID":"FBgn0036567","EGF_Stimulus":"0.81"},{"ID":"FBgn0052141","EGF_Stimulus":"-0.41"},{"ID":"FBgn0051225","EGF_Stimulus":"-0.42"},{"ID":"FBgn0038796","EGF_Stimulus":"1.9"},{"ID":"FBgn0039068","EGF_Stimulus":"0.72"},{"ID":"FBgn0039424","EGF_Stimulus":"-0.84"},{"ID":"FBgn0261792","EGF_Stimulus":"0.68"},{"ID":"FBgn0015230","EGF_Stimulus":"-0.29"},{"ID":"FBgn0050296","EGF_Stimulus":"1.43"},{"ID":"FBgn0038690","EGF_Stimulus":"-1.13"},{"ID":"FBgn0037827","EGF_Stimulus":"0.61"},{"ID":"FBgn0051663","EGF_Stimulus":"0.98"},{"ID":"FBgn0038418","EGF_Stimulus":"1.24"},{"ID":"FBgn0053181","EGF_Stimulus":"-0.99"},{"ID":"FBgn0039218","EGF_Stimulus":"-1.68"},{"ID":"FBgn0033587","EGF_Stimulus":"-0.79"},{"ID":"FBgn0035734","EGF_Stimulus":"1.13"},{"ID":"FBgn0250876","EGF_Stimulus":"0.83"},{"ID":"FBgn0040817","EGF_Stimulus":"1.2"},{"ID":"FBgn0040010","EGF_Stimulus":"0.98"},{"ID":"FBgn0032051","EGF_Stimulus":"1.07"},{"ID":"FBgn0036004","EGF_Stimulus":"-1"},{"ID":"FBgn0261399","EGF_Stimulus":"1.68"},{"ID":"FBgn0010356","EGF_Stimulus":"-0.52"},{"ID":"FBgn0037197","EGF_Stimulus":"1.05"},{"ID":"FBgn0038327","EGF_Stimulus":"1.55"},{"ID":"FBgn0036143","EGF_Stimulus":"-0.56"},{"ID":"FBgn0034483","EGF_Stimulus":"-1.67"},{"ID":"FBgn0037503","EGF_Stimulus":"0.77"},{"ID":"FBgn0029694","EGF_Stimulus":"-0.32"},{"ID":"FBgn0024992","EGF_Stimulus":"-0.34"},{"ID":"FBgn0027537","EGF_Stimulus":"-5.13"},{"ID":"FBgn0030575","EGF_Stimulus":"0.75"},{"ID":"FBgn0037205","EGF_Stimulus":"1.21"},{"ID":"FBgn0032896","EGF_Stimulus":"1.13"},{"ID":"FBgn0040080","EGF_Stimulus":"0.43"},{"ID":"FBgn0030707","EGF_Stimulus":"0.65"},{"ID":"FBgn0037960","EGF_Stimulus":"0.39"},{"ID":"FBgn0031801","EGF_Stimulus":"1.26"},{"ID":"FBgn0030369","EGF_Stimulus":"0.45"},{"ID":"FBgn0026259","EGF_Stimulus":"-1.13"},{"ID":"FBgn0001314","EGF_Stimulus":"-2.18"},{"ID":"FBgn0035026","EGF_Stimulus":"0.12"},{"ID":"FBgn0051344","EGF_Stimulus":"0.76"},{"ID":"FBgn0037462","EGF_Stimulus":"0.43"},{"ID":"FBgn0022023","EGF_Stimulus":"-0.35"},{"ID":"FBgn0032631","EGF_Stimulus":"-2.28"},{"ID":"FBgn0029529","EGF_Stimulus":"0.34"},{"ID":"FBgn0002283","EGF_Stimulus":"-1.58"},{"ID":"FBgn0032292","EGF_Stimulus":"-1.02"},{"ID":"FBgn0028577","EGF_Stimulus":"-0.86"},{"ID":"FBgn0037610","EGF_Stimulus":"-0.53"},{"ID":"FBgn0039045","EGF_Stimulus":"0.53"},{"ID":"FBgn0085267","EGF_Stimulus":"0.66"},{"ID":"FBgn0010388","EGF_Stimulus":"-0.88"},{"ID":"FBgn0260795","EGF_Stimulus":"0.4"},{"ID":"FBgn0260938","EGF_Stimulus":"0.85"},{"ID":"FBgn0086674","EGF_Stimulus":"0.49"},{"ID":"FBgn0030474","EGF_Stimulus":"1.01"},{"ID":"FBgn0036639","EGF_Stimulus":"1.25"},{"ID":"FBgn0020546","EGF_Stimulus":"-1.41"},{"ID":"FBgn0038070","EGF_Stimulus":"0.98"},{"ID":"FBgn0024811","EGF_Stimulus":"-0.26"},{"ID":"FBgn0033483","EGF_Stimulus":"0.34"},{"ID":"FBgn0043010","EGF_Stimulus":"0.11"},{"ID":"FBgn0004513","EGF_Stimulus":"-1.01"},{"ID":"FBgn0031255","EGF_Stimulus":"0.78"},{"ID":"FBgn0037242","EGF_Stimulus":"1"},{"ID":"FBgn0030536","EGF_Stimulus":"-0.35"},{"ID":"FBgn0029512","EGF_Stimulus":"1.25"},{"ID":"FBgn0036605","EGF_Stimulus":"-0.49"},{"ID":"FBgn0037478","EGF_Stimulus":"-1.07"},{"ID":"FBgn0003076","EGF_Stimulus":"1.11"},{"ID":"FBgn0035251","EGF_Stimulus":"-1.68"},{"ID":"FBgn0033523","EGF_Stimulus":"0.66"},{"ID":"FBgn0086778","EGF_Stimulus":"1.23"},{"ID":"FBgn0051413","EGF_Stimulus":"0.71"},{"ID":"FBgn0050487","EGF_Stimulus":"-0.37"},{"ID":"FBgn0038912","EGF_Stimulus":"1.01"},{"ID":"FBgn0026148","EGF_Stimulus":"-0.87"},{"ID":"FBgn0036560","EGF_Stimulus":"1.19"},{"ID":"FBgn0085243","EGF_Stimulus":"-1.09"},{"ID":"FBgn0002838","EGF_Stimulus":"-0.45"},{"ID":"FBgn0028737","EGF_Stimulus":"-1.01"},{"ID":"FBgn0034546","EGF_Stimulus":"0.63"},{"ID":"FBgn0250789","EGF_Stimulus":"-0.26"},{"ID":"FBgn0023214","EGF_Stimulus":"2.84"},{"ID":"FBgn0035321","EGF_Stimulus":"-0.38"},{"ID":"FBgn0031655","EGF_Stimulus":"-0.84"},{"ID":"FBgn0035569","EGF_Stimulus":"-0.34"},{"ID":"FBgn0030761","EGF_Stimulus":"0.44"},{"ID":"FBgn0053768","EGF_Stimulus":"-0.4"},{"ID":"FBgn0037127","EGF_Stimulus":"0.47"},{"ID":"FBgn0051735","EGF_Stimulus":"-0.96"},{"ID":"FBgn0029778","EGF_Stimulus":"0.69"},{"ID":"FBgn0034390","EGF_Stimulus":"1.35"},{"ID":"FBgn0259482","EGF_Stimulus":"-0.92"},{"ID":"FBgn0043012","EGF_Stimulus":"1.75"},{"ID":"FBgn0016700","EGF_Stimulus":"-1.08"},{"ID":"FBgn0031155","EGF_Stimulus":"0.27"},{"ID":"FBgn0004370","EGF_Stimulus":"-0.43"},{"ID":"FBgn0039914","EGF_Stimulus":"0.54"},{"ID":"FBgn0025687","EGF_Stimulus":"0.72"},{"ID":"FBgn0035968","EGF_Stimulus":"0.51"},{"ID":"FBgn0038485","EGF_Stimulus":"0.55"},{"ID":"FBgn0039924","EGF_Stimulus":"0.69"},{"ID":"FBgn0030679","EGF_Stimulus":"2.14"},{"ID":"FBgn0039508","EGF_Stimulus":"1.39"},{"ID":"FBgn0053285","EGF_Stimulus":"0.76"},{"ID":"FBgn0034730","EGF_Stimulus":"0.61"},{"ID":"FBgn0033600","EGF_Stimulus":"-1.19"},{"ID":"FBgn0261053","EGF_Stimulus":"0.89"},{"ID":"FBgn0033043","EGF_Stimulus":"-0.81"},{"ID":"FBgn0261514","EGF_Stimulus":"-1.56"},{"ID":"FBgn0020493","EGF_Stimulus":"-0.92"},{"ID":"FBgn0034451","EGF_Stimulus":"1.06"},{"ID":"FBgn0031060","EGF_Stimulus":"-0.9"},{"ID":"FBgn0003345","EGF_Stimulus":"1.49"},{"ID":"FBgn0037424","EGF_Stimulus":"0.31"},{"ID":"FBgn0039767","EGF_Stimulus":"0.34"},{"ID":"FBgn0038445","EGF_Stimulus":"-0.67"},{"ID":"FBgn0034031","EGF_Stimulus":"0.86"},{"ID":"FBgn0041174","EGF_Stimulus":"0.87"},{"ID":"FBgn0030795","EGF_Stimulus":"0.28"},{"ID":"FBgn0039629","EGF_Stimulus":"0.58"},{"ID":"FBgn0033476","EGF_Stimulus":"-2.23"},{"ID":"FBgn0039848","EGF_Stimulus":"-0.46"},{"ID":"FBgn0036085","EGF_Stimulus":"0.42"},{"ID":"FBgn0000542","EGF_Stimulus":"-1.54"},{"ID":"FBgn0024360","EGF_Stimulus":"-0.47"},{"ID":"FBgn0011692","EGF_Stimulus":"-0.82"},{"ID":"FBgn0032104","EGF_Stimulus":"0.64"},{"ID":"FBgn0034928","EGF_Stimulus":"-0.46"},{"ID":"FBgn0034629","EGF_Stimulus":"0.99"},{"ID":"FBgn0032915","EGF_Stimulus":"-1.76"},{"ID":"FBgn0035987","EGF_Stimulus":"0.58"},{"ID":"FBgn0010905","EGF_Stimulus":"-0.57"},{"ID":"FBgn0039266","EGF_Stimulus":"-1.4"},{"ID":"FBgn0028982","EGF_Stimulus":"2.83"},{"ID":"FBgn0031189","EGF_Stimulus":"-0.11"},{"ID":"FBgn0015402","EGF_Stimulus":"-8.49"},{"ID":"FBgn0033199","EGF_Stimulus":"0.67"},{"ID":"FBgn0038435","EGF_Stimulus":"0.59"},{"ID":"FBgn0030824","EGF_Stimulus":"-0.35"},{"ID":"FBgn0019928","EGF_Stimulus":"0.82"},{"ID":"FBgn0015371","EGF_Stimulus":"0.65"},{"ID":"FBgn0022153","EGF_Stimulus":"0.38"},{"ID":"FBgn0053453","EGF_Stimulus":"1.08"},{"ID":"FBgn0031581","EGF_Stimulus":"1.06"},{"ID":"FBgn0051700","EGF_Stimulus":"0.65"},{"ID":"FBgn0032297","EGF_Stimulus":"1.22"},{"ID":"FBgn0044028","EGF_Stimulus":"1.34"},{"ID":"FBgn0035540","EGF_Stimulus":"-0.97"},{"ID":"FBgn0000307","EGF_Stimulus":"-0.7"},{"ID":"FBgn0036439","EGF_Stimulus":"-3.37"},{"ID":"FBgn0037576","EGF_Stimulus":"-0.32"},{"ID":"FBgn0015801","EGF_Stimulus":"1.83"},{"ID":"FBgn0035687","EGF_Stimulus":"-0.49"},{"ID":"FBgn0036843","EGF_Stimulus":"0.51"},{"ID":"FBgn0032986","EGF_Stimulus":"1.16"},{"ID":"FBgn0031999","EGF_Stimulus":"0.06"},{"ID":"FBgn0033192","EGF_Stimulus":"-0.86"},{"ID":"FBgn0034691","EGF_Stimulus":"-1.31"},{"ID":"FBgn0025360","EGF_Stimulus":"-0.82"},{"ID":"FBgn0052369","EGF_Stimulus":"-1.41"},{"ID":"FBgn0036813","EGF_Stimulus":"1.97"},{"ID":"FBgn0024963","EGF_Stimulus":"-0.33"},{"ID":"FBgn0034792","EGF_Stimulus":"0.76"},{"ID":"FBgn0014019","EGF_Stimulus":"1.08"},{"ID":"FBgn0039907","EGF_Stimulus":"0.5"},{"ID":"FBgn0083972","EGF_Stimulus":"-0.9"},{"ID":"FBgn0025742","EGF_Stimulus":"-0.86"},{"ID":"FBgn0031848","EGF_Stimulus":"-0.36"},{"ID":"FBgn0261699","EGF_Stimulus":"0.65"},{"ID":"FBgn0027785","EGF_Stimulus":"-0.1"},{"ID":"FBgn0032030","EGF_Stimulus":"-3.94"},{"ID":"FBgn0021800","EGF_Stimulus":"-1.5"},{"ID":"FBgn0037234","EGF_Stimulus":"0.97"},{"ID":"FBgn0003060","EGF_Stimulus":"-0.36"},{"ID":"FBgn0038876","EGF_Stimulus":"-1.04"},{"ID":"FBgn0026756","EGF_Stimulus":"-0.81"},{"ID":"FBgn0031069","EGF_Stimulus":"0.55"},{"ID":"FBgn0037664","EGF_Stimulus":"-0.54"},{"ID":"FBgn0028970","EGF_Stimulus":"-0.71"},{"ID":"FBgn0030434","EGF_Stimulus":"1.32"},{"ID":"FBgn0015221","EGF_Stimulus":"-0.49"},{"ID":"FBgn0031414","EGF_Stimulus":"1.43"},{"ID":"FBgn0035203","EGF_Stimulus":"-0.73"},{"ID":"FBgn0037657","EGF_Stimulus":"1.31"},{"ID":"FBgn0036377","EGF_Stimulus":"0.65"},{"ID":"FBgn0025109","EGF_Stimulus":"-0.25"},{"ID":"FBgn0031547","EGF_Stimulus":"-0.08"},{"ID":"FBgn0032271","EGF_Stimulus":"0.04"},{"ID":"FBgn0033685","EGF_Stimulus":"0.67"},{"ID":"FBgn0026403","EGF_Stimulus":"-0.66"},{"ID":"FBgn0038051","EGF_Stimulus":"-0.96"},{"ID":"FBgn0034052","EGF_Stimulus":"-0.44"},{"ID":"FBgn0030032","EGF_Stimulus":"1.24"},{"ID":"FBgn0029819","EGF_Stimulus":"-1.11"},{"ID":"FBgn0029866","EGF_Stimulus":"0.54"},{"ID":"FBgn0037169","EGF_Stimulus":"0.35"},{"ID":"FBgn0034834","EGF_Stimulus":"0.77"},{"ID":"FBgn0031431","EGF_Stimulus":"0.61"},{"ID":"FBgn0035797","EGF_Stimulus":"-0.74"},{"ID":"FBgn0030048","EGF_Stimulus":"-1.64"},{"ID":"FBgn0052983","EGF_Stimulus":"-0.48"},{"ID":"FBgn0020645","EGF_Stimulus":"0.23"},{"ID":"FBgn0000826","EGF_Stimulus":"-0.24"},{"ID":"FBgn0050377","EGF_Stimulus":"0.78"},{"ID":"FBgn0046885","EGF_Stimulus":"0.22"},{"ID":"FBgn0032191","EGF_Stimulus":"0.92"},{"ID":"FBgn0040679","EGF_Stimulus":"-0.28"},{"ID":"FBgn0016715","EGF_Stimulus":"1.29"},{"ID":"FBgn0037469","EGF_Stimulus":"-0.76"},{"ID":"FBgn0000662","EGF_Stimulus":"-1.35"},{"ID":"FBgn0050344","EGF_Stimulus":"-0.38"},{"ID":"FBgn0004507","EGF_Stimulus":"-0.47"},{"ID":"FBgn0016983","EGF_Stimulus":"-0.34"},{"ID":"FBgn0037655","EGF_Stimulus":"-0.79"},{"ID":"FBgn0031973","EGF_Stimulus":"-0.89"},{"ID":"FBgn0045501","EGF_Stimulus":"0.82"},{"ID":"FBgn0039379","EGF_Stimulus":"-1.56"},{"ID":"FBgn0032428","EGF_Stimulus":"0.86"},{"ID":"FBgn0045497","EGF_Stimulus":"1.84"},{"ID":"FBgn0031365","EGF_Stimulus":"6.57"},{"ID":"FBgn0038976","EGF_Stimulus":"-0.44"},{"ID":"FBgn0039155","EGF_Stimulus":"1.65"},{"ID":"FBgn0005614","EGF_Stimulus":"1.58"},{"ID":"FBgn0036184","EGF_Stimulus":"1.01"},{"ID":"FBgn0040395","EGF_Stimulus":"0.23"},{"ID":"FBgn0052112","EGF_Stimulus":"-0.88"},{"ID":"FBgn0052121","EGF_Stimulus":"0.76"},{"ID":"FBgn0034715","EGF_Stimulus":"1.34"},{"ID":"FBgn0031778","EGF_Stimulus":"-0.14"},{"ID":"FBgn0260462","EGF_Stimulus":"1.31"},{"ID":"FBgn0036879","EGF_Stimulus":"-1.46"},{"ID":"FBgn0014179","EGF_Stimulus":"-0.53"},{"ID":"FBgn0028480","EGF_Stimulus":"-1.4"},{"ID":"FBgn0031298","EGF_Stimulus":"-0.41"},{"ID":"FBgn0036766","EGF_Stimulus":"-0.8"},{"ID":"FBgn0033381","EGF_Stimulus":"-0.62"},{"ID":"FBgn0050087","EGF_Stimulus":"1.46"},{"ID":"FBgn0031954","EGF_Stimulus":"-0.26"},{"ID":"FBgn0028870","EGF_Stimulus":"0.16"},{"ID":"FBgn0051205","EGF_Stimulus":"-1.46"},{"ID":"FBgn0032215","EGF_Stimulus":"-2.09"},{"ID":"FBgn0046875","EGF_Stimulus":"-0.72"},{"ID":"FBgn0053340","EGF_Stimulus":"-1.39"},{"ID":"FBgn0038948","EGF_Stimulus":"-0.72"},{"ID":"FBgn0037150","EGF_Stimulus":"0.46"},{"ID":"FBgn0039407","EGF_Stimulus":"1"},{"ID":"FBgn0029148","EGF_Stimulus":"0.74"},{"ID":"FBgn0016660","EGF_Stimulus":"1.3"},{"ID":"FBgn0261848","EGF_Stimulus":"-0.54"},{"ID":"FBgn0036835","EGF_Stimulus":"0.81"},{"ID":"FBgn0013984","EGF_Stimulus":"-0.71"},{"ID":"FBgn0032471","EGF_Stimulus":"-1.65"},{"ID":"FBgn0031719","EGF_Stimulus":"-1.29"},{"ID":"FBgn0033224","EGF_Stimulus":"0.83"},{"ID":"FBgn0039741","EGF_Stimulus":"1.11"},{"ID":"FBgn0003963","EGF_Stimulus":"-0.92"},{"ID":"FBgn0034083","EGF_Stimulus":"-0.19"},{"ID":"FBgn0003178","EGF_Stimulus":"-0.17"},{"ID":"FBgn0033582","EGF_Stimulus":"0.73"},{"ID":"FBgn0035504","EGF_Stimulus":"0.71"},{"ID":"FBgn0036156","EGF_Stimulus":"0.54"},{"ID":"FBgn0039857","EGF_Stimulus":"-3.82"},{"ID":"FBgn0027657","EGF_Stimulus":"1.16"},{"ID":"FBgn0037777","EGF_Stimulus":"0.6"},{"ID":"FBgn0032305","EGF_Stimulus":"-1.77"},{"ID":"FBgn0036305","EGF_Stimulus":"1.55"},{"ID":"FBgn0038965","EGF_Stimulus":"-0.61"},{"ID":"FBgn0052095","EGF_Stimulus":"0.26"},{"ID":"FBgn0054008","EGF_Stimulus":"-0.4"},{"ID":"FBgn0020277","EGF_Stimulus":"1.54"},{"ID":"FBgn0030204","EGF_Stimulus":"-0.49"},{"ID":"FBgn0035730","EGF_Stimulus":"0.4"},{"ID":"FBgn0036787","EGF_Stimulus":"0.74"},{"ID":"FBgn0044511","EGF_Stimulus":"-1.05"},{"ID":"FBgn0029573","EGF_Stimulus":"0.24"},{"ID":"FBgn0033628","EGF_Stimulus":"-0.64"},{"ID":"FBgn0034966","EGF_Stimulus":"0.75"},{"ID":"FBgn0039357","EGF_Stimulus":"0.08"},{"ID":"FBgn0050187","EGF_Stimulus":"1.54"},{"ID":"FBgn0038234","EGF_Stimulus":"-0.41"},{"ID":"FBgn0061469","EGF_Stimulus":"0.82"},{"ID":"FBgn0037151","EGF_Stimulus":"-0.17"},{"ID":"FBgn0261004","EGF_Stimulus":"0.94"},{"ID":"FBgn0033240","EGF_Stimulus":"1.18"},{"ID":"FBgn0033963","EGF_Stimulus":"0.61"},{"ID":"FBgn0029720","EGF_Stimulus":"1.67"},{"ID":"FBgn0032624","EGF_Stimulus":"-0.31"},{"ID":"FBgn0037989","EGF_Stimulus":"1.03"},{"ID":"FBgn0037045","EGF_Stimulus":"0.35"},{"ID":"FBgn0035829","EGF_Stimulus":"0.66"},{"ID":"FBgn0011020","EGF_Stimulus":"-0.45"},{"ID":"FBgn0042179","EGF_Stimulus":"0.33"},{"ID":"FBgn0037979","EGF_Stimulus":"-0.32"},{"ID":"FBgn0010415","EGF_Stimulus":"1.01"},{"ID":"FBgn0034076","EGF_Stimulus":"-0.34"},{"ID":"FBgn0030839","EGF_Stimulus":"-0.45"},{"ID":"FBgn0031401","EGF_Stimulus":"0.76"},{"ID":"FBgn0036206","EGF_Stimulus":"1.07"},{"ID":"FBgn0260393","EGF_Stimulus":"0.82"},{"ID":"FBgn0051108","EGF_Stimulus":"1.52"},{"ID":"FBgn0035769","EGF_Stimulus":"0.5"},{"ID":"FBgn0035669","EGF_Stimulus":"0.53"},{"ID":"FBgn0037888","EGF_Stimulus":"1.3"},{"ID":"FBgn0023143","EGF_Stimulus":"-1.47"},{"ID":"FBgn0030040","EGF_Stimulus":"-0.31"},{"ID":"FBgn0085260","EGF_Stimulus":"-0.34"},{"ID":"FBgn0036332","EGF_Stimulus":"1.03"},{"ID":"FBgn0042627","EGF_Stimulus":"0.68"},{"ID":"FBgn0039077","EGF_Stimulus":"0.47"},{"ID":"FBgn0011241","EGF_Stimulus":"0.6"},{"ID":"FBgn0033945","EGF_Stimulus":"-0.03"},{"ID":"FBgn0045842","EGF_Stimulus":"1.55"},{"ID":"FBgn0261446","EGF_Stimulus":"-0.23"},{"ID":"FBgn0032110","EGF_Stimulus":"-0.74"},{"ID":"FBgn0053136","EGF_Stimulus":"0.81"},{"ID":"FBgn0039387","EGF_Stimulus":"1.32"},{"ID":"FBgn0031239","EGF_Stimulus":"-0.27"},{"ID":"FBgn0050083","EGF_Stimulus":"0.61"},{"ID":"FBgn0260749","EGF_Stimulus":"1.74"},{"ID":"FBgn0030672","EGF_Stimulus":"-0.35"},{"ID":"FBgn0032691","EGF_Stimulus":"-0.51"},{"ID":"FBgn0039440","EGF_Stimulus":"0.66"},{"ID":"FBgn0046322","EGF_Stimulus":"1.13"},{"ID":"FBgn0030346","EGF_Stimulus":"0.54"},{"ID":"FBgn0002571","EGF_Stimulus":"0.72"},{"ID":"FBgn0030057","EGF_Stimulus":"0.62"},{"ID":"FBgn0040206","EGF_Stimulus":"-0.94"},{"ID":"FBgn0034264","EGF_Stimulus":"-0.35"},{"ID":"FBgn0038855","EGF_Stimulus":"-0.49"},{"ID":"FBgn0040798","EGF_Stimulus":"-0.34"},{"ID":"FBgn0033887","EGF_Stimulus":"0.4"},{"ID":"FBgn0038357","EGF_Stimulus":"-0.42"},{"ID":"FBgn0031799","EGF_Stimulus":"0.98"},{"ID":"FBgn0033356","EGF_Stimulus":"0.44"},{"ID":"FBgn0011327","EGF_Stimulus":"0.63"},{"ID":"FBgn0034279","EGF_Stimulus":"-0.32"},{"ID":"FBgn0036350","EGF_Stimulus":"0.52"},{"ID":"FBgn0041160","EGF_Stimulus":"-0.55"},{"ID":"FBgn0002533","EGF_Stimulus":"0.79"},{"ID":"FBgn0050010","EGF_Stimulus":"0.2"},{"ID":"FBgn0086377","EGF_Stimulus":"0.99"},{"ID":"FBgn0033673","EGF_Stimulus":"0.64"},{"ID":"FBgn0035355","EGF_Stimulus":"0.1"},{"ID":"FBgn0001977","EGF_Stimulus":"-0.35"},{"ID":"FBgn0037765","EGF_Stimulus":"0.8"},{"ID":"FBgn0028540","EGF_Stimulus":"-0.81"},{"ID":"FBgn0052152","EGF_Stimulus":"-1.4"},{"ID":"FBgn0036575","EGF_Stimulus":"0.75"},{"ID":"FBgn0052038","EGF_Stimulus":"1.31"},{"ID":"FBgn0039137","EGF_Stimulus":"0.25"},{"ID":"FBgn0040350","EGF_Stimulus":"0.73"},{"ID":"FBgn0031990","EGF_Stimulus":"-1.35"},{"ID":"FBgn0029084","EGF_Stimulus":"0.47"},{"ID":"FBgn0039883","EGF_Stimulus":"0.87"},{"ID":"FBgn0028684","EGF_Stimulus":"-6.04"},{"ID":"FBgn0040389","EGF_Stimulus":"-0.21"},{"ID":"FBgn0003751","EGF_Stimulus":"0.7"},{"ID":"FBgn0033159","EGF_Stimulus":"2.59"},{"ID":"FBgn0261560","EGF_Stimulus":"0.48"},{"ID":"FBgn0052206","EGF_Stimulus":"1.29"},{"ID":"FBgn0015834","EGF_Stimulus":"-4.01"},{"ID":"FBgn0250826","EGF_Stimulus":"0.6"},{"ID":"FBgn0030501","EGF_Stimulus":"-0.56"},{"ID":"FBgn0025620","EGF_Stimulus":"-1.97"},{"ID":"FBgn0084001","EGF_Stimulus":"0.89"},{"ID":"FBgn0025616","EGF_Stimulus":"-0.69"},{"ID":"FBgn0259187","EGF_Stimulus":"0.61"},{"ID":"FBgn0031492","EGF_Stimulus":"-1.94"},{"ID":"FBgn0083946","EGF_Stimulus":"-0.69"},{"ID":"FBgn0026391","EGF_Stimulus":"-1.02"},{"ID":"FBgn0038746","EGF_Stimulus":"-0.56"},{"ID":"FBgn0261569","EGF_Stimulus":"-0.63"},{"ID":"FBgn0003744","EGF_Stimulus":"-0.48"},{"ID":"FBgn0036454","EGF_Stimulus":"-1.71"},{"ID":"FBgn0035019","EGF_Stimulus":"0.38"},{"ID":"FBgn0032516","EGF_Stimulus":"1.98"},{"ID":"FBgn0051482","EGF_Stimulus":"0.55"},{"ID":"FBgn0037328","EGF_Stimulus":"-4.45"},{"ID":"FBgn0243512","EGF_Stimulus":"-2.05"},{"ID":"FBgn0003748","EGF_Stimulus":"0.35"},{"ID":"FBgn0051233","EGF_Stimulus":"0.57"},{"ID":"FBgn0038606","EGF_Stimulus":"-0.23"},{"ID":"FBgn0037284","EGF_Stimulus":"0.54"},{"ID":"FBgn0035971","EGF_Stimulus":"0.96"},{"ID":"FBgn0053349","EGF_Stimulus":"0.78"},{"ID":"FBgn0011768","EGF_Stimulus":"-0.69"},{"ID":"FBgn0030551","EGF_Stimulus":"-1.02"},{"ID":"FBgn0015828","EGF_Stimulus":"0.5"},{"ID":"FBgn0026390","EGF_Stimulus":"-1.27"},{"ID":"FBgn0000250","EGF_Stimulus":"-2.1"},{"ID":"FBgn0085478","EGF_Stimulus":"1.2"},{"ID":"FBgn0010317","EGF_Stimulus":"-0.38"},{"ID":"FBgn0035425","EGF_Stimulus":"2.19"},{"ID":"FBgn0035900","EGF_Stimulus":"-1.87"},{"ID":"FBgn0015714","EGF_Stimulus":"-0.91"},{"ID":"FBgn0040098","EGF_Stimulus":"1.55"},{"ID":"FBgn0050011","EGF_Stimulus":"1.18"},{"ID":"FBgn0051646","EGF_Stimulus":"1.33"},{"ID":"FBgn0030583","EGF_Stimulus":"-0.05"},{"ID":"FBgn0037455","EGF_Stimulus":"0.45"},{"ID":"FBgn0033876","EGF_Stimulus":"1.13"},{"ID":"FBgn0040360","EGF_Stimulus":"-0.23"},{"ID":"FBgn0039025","EGF_Stimulus":"-0.49"},{"ID":"FBgn0004396","EGF_Stimulus":"1.05"},{"ID":"FBgn0034446","EGF_Stimulus":"0.58"},{"ID":"FBgn0036754","EGF_Stimulus":"-0.54"},{"ID":"FBgn0037874","EGF_Stimulus":"-1.45"},{"ID":"FBgn0003093","EGF_Stimulus":"-0.32"},{"ID":"FBgn0050022","EGF_Stimulus":"-0.97"},{"ID":"FBgn0029909","EGF_Stimulus":"0.45"},{"ID":"FBgn0036725","EGF_Stimulus":"0.89"},{"ID":"FBgn0038653","EGF_Stimulus":"-1.65"},{"ID":"FBgn0033136","EGF_Stimulus":"0.78"},{"ID":"FBgn0032877","EGF_Stimulus":"0.91"},{"ID":"FBgn0030029","EGF_Stimulus":"0.84"},{"ID":"FBgn0031635","EGF_Stimulus":"-0.33"},{"ID":"FBgn0029891","EGF_Stimulus":"-0.45"},{"ID":"FBgn0010238","EGF_Stimulus":"0.7"},{"ID":"FBgn0261550","EGF_Stimulus":"0.79"},{"ID":"FBgn0005278","EGF_Stimulus":"-5.03"},{"ID":"FBgn0021768","EGF_Stimulus":"2.59"},{"ID":"FBgn0040262","EGF_Stimulus":"-0.85"},{"ID":"FBgn0037513","EGF_Stimulus":"1.31"},{"ID":"FBgn0031645","EGF_Stimulus":"1.12"},{"ID":"FBgn0039187","EGF_Stimulus":"-1.03"},{"ID":"FBgn0029785","EGF_Stimulus":"-2.76"},{"ID":"FBgn0035795","EGF_Stimulus":"-0.32"},{"ID":"FBgn0030191","EGF_Stimulus":"1.01"},{"ID":"FBgn0032362","EGF_Stimulus":"-0.81"},{"ID":"FBgn0032053","EGF_Stimulus":"0.37"},{"ID":"FBgn0085421","EGF_Stimulus":"1.82"},{"ID":"FBgn0051668","EGF_Stimulus":"0.07"},{"ID":"FBgn0029896","EGF_Stimulus":"2.3"},{"ID":"FBgn0015737","EGF_Stimulus":"0.98"},{"ID":"FBgn0035331","EGF_Stimulus":"1.77"},{"ID":"FBgn0011741","EGF_Stimulus":"0.4"},{"ID":"FBgn0023388","EGF_Stimulus":"-1.47"},{"ID":"FBgn0031458","EGF_Stimulus":"-0.9"},{"ID":"FBgn0039955","EGF_Stimulus":"-0.51"},{"ID":"FBgn0034114","EGF_Stimulus":"0.17"},{"ID":"FBgn0030559","EGF_Stimulus":"-0.6"},{"ID":"FBgn0029594","EGF_Stimulus":"1.81"},{"ID":"FBgn0033731","EGF_Stimulus":"-0.14"},{"ID":"FBgn0036460","EGF_Stimulus":"-1.94"},{"ID":"FBgn0051720","EGF_Stimulus":"0.35"},{"ID":"FBgn0040371","EGF_Stimulus":"0.22"},{"ID":"FBgn0016684","EGF_Stimulus":"-0.46"},{"ID":"FBgn0250871","EGF_Stimulus":"-0.36"},{"ID":"FBgn0037067","EGF_Stimulus":"0.33"},{"ID":"FBgn0034160","EGF_Stimulus":"-0.78"},{"ID":"FBgn0040648","EGF_Stimulus":"-0.27"},{"ID":"FBgn0010651","EGF_Stimulus":"1.51"},{"ID":"FBgn0035522","EGF_Stimulus":"-0.25"},{"ID":"FBgn0031682","EGF_Stimulus":"1.51"},{"ID":"FBgn0035012","EGF_Stimulus":"-2.56"},{"ID":"FBgn0038420","EGF_Stimulus":"1.16"},{"ID":"FBgn0029707","EGF_Stimulus":"1.83"},{"ID":"FBgn0002719","EGF_Stimulus":"-4.86"},{"ID":"FBgn0032042","EGF_Stimulus":"0.72"},{"ID":"FBgn0028479","EGF_Stimulus":"1.15"},{"ID":"FBgn0053635","EGF_Stimulus":"-1.62"},{"ID":"FBgn0031312","EGF_Stimulus":"-0.86"},{"ID":"FBgn0032755","EGF_Stimulus":"0.92"},{"ID":"FBgn0054051","EGF_Stimulus":"-1.92"},{"ID":"FBgn0029659","EGF_Stimulus":"0.56"},{"ID":"FBgn0033179","EGF_Stimulus":"1.08"},{"ID":"FBgn0005564","EGF_Stimulus":"-1.1"},{"ID":"FBgn0085311","EGF_Stimulus":"0.82"},{"ID":"FBgn0053532","EGF_Stimulus":"-1.4"},{"ID":"FBgn0008636","EGF_Stimulus":"0.79"},{"ID":"FBgn0022344","EGF_Stimulus":"-1.19"},{"ID":"FBgn0030026","EGF_Stimulus":"0.95"},{"ID":"FBgn0087008","EGF_Stimulus":"-3.49"},{"ID":"FBgn0030887","EGF_Stimulus":"1.35"},{"ID":"FBgn0034475","EGF_Stimulus":"-0.74"},{"ID":"FBgn0259152","EGF_Stimulus":"0.84"},{"ID":"FBgn0028897","EGF_Stimulus":"0.22"},{"ID":"FBgn0020653","EGF_Stimulus":"1.13"},{"ID":"FBgn0031561","EGF_Stimulus":"1.65"},{"ID":"FBgn0260719","EGF_Stimulus":"0.62"},{"ID":"FBgn0051822","EGF_Stimulus":"-0.58"},{"ID":"FBgn0034168","EGF_Stimulus":"0.79"},{"ID":"FBgn0052626","EGF_Stimulus":"-1.57"},{"ID":"FBgn0034310","EGF_Stimulus":"0.82"},{"ID":"FBgn0259211","EGF_Stimulus":"1.2"},{"ID":"FBgn0050365","EGF_Stimulus":"1.03"},{"ID":"FBgn0037923","EGF_Stimulus":"0.45"},{"ID":"FBgn0085391","EGF_Stimulus":"1.24"},{"ID":"FBgn0037536","EGF_Stimulus":"-1.24"},{"ID":"FBgn0032068","EGF_Stimulus":"-0.71"},{"ID":"FBgn0027505","EGF_Stimulus":"0.23"},{"ID":"FBgn0036534","EGF_Stimulus":"-2.82"},{"ID":"FBgn0032010","EGF_Stimulus":"0.74"},{"ID":"FBgn0002542","EGF_Stimulus":"0.35"},{"ID":"FBgn0030122","EGF_Stimulus":"-0.83"},{"ID":"FBgn0036541","EGF_Stimulus":"0.8"},{"ID":"FBgn0033952","EGF_Stimulus":"-0.11"},{"ID":"FBgn0026562","EGF_Stimulus":"0.73"},{"ID":"FBgn0017414","EGF_Stimulus":"1.43"},{"ID":"FBgn0250847","EGF_Stimulus":"-1.48"},{"ID":"FBgn0004242","EGF_Stimulus":"-1.12"},{"ID":"FBgn0036237","EGF_Stimulus":"0.74"},{"ID":"FBgn0020376","EGF_Stimulus":"-1.08"},{"ID":"FBgn0039229","EGF_Stimulus":"2.28"},{"ID":"FBgn0028734","EGF_Stimulus":"0.69"},{"ID":"FBgn0028920","EGF_Stimulus":"-0.65"},{"ID":"FBgn0085357","EGF_Stimulus":"-0.54"},{"ID":"FBgn0051694","EGF_Stimulus":"0.66"},{"ID":"FBgn0004567","EGF_Stimulus":"0.88"},{"ID":"FBgn0036705","EGF_Stimulus":"-0.86"},{"ID":"FBgn0036660","EGF_Stimulus":"0.66"},{"ID":"FBgn0250862","EGF_Stimulus":"0.39"},{"ID":"FBgn0038515","EGF_Stimulus":"0.12"},{"ID":"FBgn0046302","EGF_Stimulus":"-0.59"},{"ID":"FBgn0030947","EGF_Stimulus":"-1.17"},{"ID":"FBgn0039987","EGF_Stimulus":"-0.53"},{"ID":"FBgn0010222","EGF_Stimulus":"-0.54"},{"ID":"FBgn0082585","EGF_Stimulus":"0.31"},{"ID":"FBgn0040506","EGF_Stimulus":"0.96"},{"ID":"FBgn0035854","EGF_Stimulus":"0.49"},{"ID":"FBgn0000083","EGF_Stimulus":"-0.99"},{"ID":"FBgn0261477","EGF_Stimulus":"-0.35"},{"ID":"FBgn0085282","EGF_Stimulus":"1.57"},{"ID":"FBgn0010215","EGF_Stimulus":"0.37"},{"ID":"FBgn0037175","EGF_Stimulus":"1.53"},{"ID":"FBgn0016078","EGF_Stimulus":"0.49"},{"ID":"FBgn0035726","EGF_Stimulus":"-1.02"},{"ID":"FBgn0013972","EGF_Stimulus":"-1.02"},{"ID":"FBgn0031947","EGF_Stimulus":"-1.29"},{"ID":"FBgn0051115","EGF_Stimulus":"-0.31"},{"ID":"FBgn0035590","EGF_Stimulus":"0.52"},{"ID":"FBgn0030542","EGF_Stimulus":"-0.87"},{"ID":"FBgn0038579","EGF_Stimulus":"0.38"},{"ID":"FBgn0027086","EGF_Stimulus":"0.76"},{"ID":"FBgn0020391","EGF_Stimulus":"0.24"},{"ID":"FBgn0033133","EGF_Stimulus":"0.83"},{"ID":"FBgn0030973","EGF_Stimulus":"-0.83"},{"ID":"FBgn0085273","EGF_Stimulus":"-0.63"},{"ID":"FBgn0030161","EGF_Stimulus":"0.54"},{"ID":"FBgn0010053","EGF_Stimulus":"-0.84"},{"ID":"FBgn0037896","EGF_Stimulus":"-0.82"},{"ID":"FBgn0030776","EGF_Stimulus":"-1.61"},{"ID":"FBgn0028939","EGF_Stimulus":"0.33"},{"ID":"FBgn0052219","EGF_Stimulus":"1.67"},{"ID":"FBgn0032520","EGF_Stimulus":"1.38"},{"ID":"FBgn0039678","EGF_Stimulus":"-1.1"},{"ID":"FBgn0040918","EGF_Stimulus":"1.68"},{"ID":"FBgn0014028","EGF_Stimulus":"1.42"},{"ID":"FBgn0000257","EGF_Stimulus":"-0.42"},{"ID":"FBgn0010808","EGF_Stimulus":"-1.62"},{"ID":"FBgn0039784","EGF_Stimulus":"-0.43"},{"ID":"FBgn0030054","EGF_Stimulus":"1.29"},{"ID":"FBgn0051268","EGF_Stimulus":"-0.67"},{"ID":"FBgn0003187","EGF_Stimulus":"0.32"},{"ID":"FBgn0034399","EGF_Stimulus":"0.99"},{"ID":"FBgn0026375","EGF_Stimulus":"1.14"},{"ID":"FBgn0039511","EGF_Stimulus":"-0.43"},{"ID":"FBgn0038929","EGF_Stimulus":"0.78"},{"ID":"FBgn0031622","EGF_Stimulus":"-1.11"},{"ID":"FBgn0030505","EGF_Stimulus":"-0.61"},{"ID":"FBgn0035623","EGF_Stimulus":"1.42"},{"ID":"FBgn0035690","EGF_Stimulus":"-1.31"},{"ID":"FBgn0261856","EGF_Stimulus":"-0.96"},{"ID":"FBgn0034292","EGF_Stimulus":"0.87"},{"ID":"FBgn0036850","EGF_Stimulus":"-0.45"},{"ID":"FBgn0052354","EGF_Stimulus":"-2.01"},{"ID":"FBgn0032171","EGF_Stimulus":"0.51"},{"ID":"FBgn0036681","EGF_Stimulus":"-0.74"},{"ID":"FBgn0032242","EGF_Stimulus":"0.53"},{"ID":"FBgn0044823","EGF_Stimulus":"0.82"},{"ID":"FBgn0036423","EGF_Stimulus":"0.6"},{"ID":"FBgn0011227","EGF_Stimulus":"-0.22"},{"ID":"FBgn0040068","EGF_Stimulus":"-1.23"},{"ID":"FBgn0039798","EGF_Stimulus":"0.5"},{"ID":"FBgn0026592","EGF_Stimulus":"0.77"},{"ID":"FBgn0051715","EGF_Stimulus":"-0.87"},{"ID":"FBgn0039675","EGF_Stimulus":"0.5"},{"ID":"FBgn0033060","EGF_Stimulus":"0.31"},{"ID":"FBgn0014877","EGF_Stimulus":"-1.12"},{"ID":"FBgn0033210","EGF_Stimulus":"-0.74"},{"ID":"FBgn0035206","EGF_Stimulus":"0.61"},{"ID":"FBgn0034532","EGF_Stimulus":"0.98"},{"ID":"FBgn0037120","EGF_Stimulus":"0.91"},{"ID":"FBgn0033558","EGF_Stimulus":"0.44"},{"ID":"FBgn0041237","EGF_Stimulus":"0.87"},{"ID":"FBgn0039630","EGF_Stimulus":"-0.87"},{"ID":"FBgn0054041","EGF_Stimulus":"0.54"},{"ID":"FBgn0011293","EGF_Stimulus":"-0.34"},{"ID":"FBgn0003575","EGF_Stimulus":"-1.3"},{"ID":"FBgn0040034","EGF_Stimulus":"0.63"},{"ID":"FBgn0035007","EGF_Stimulus":"1.02"},{"ID":"FBgn0034687","EGF_Stimulus":"-0.26"},{"ID":"FBgn0038840","EGF_Stimulus":"1.14"},{"ID":"FBgn0034184","EGF_Stimulus":"-0.18"},{"ID":"FBgn0034541","EGF_Stimulus":"1.07"},{"ID":"FBgn0086450","EGF_Stimulus":"0.46"},{"ID":"FBgn0034564","EGF_Stimulus":"1.78"},{"ID":"FBgn0261244","EGF_Stimulus":"-0.64"},{"ID":"FBgn0041585","EGF_Stimulus":"0.71"},{"ID":"FBgn0036133","EGF_Stimulus":"1.87"},{"ID":"FBgn0031098","EGF_Stimulus":"-0.36"},{"ID":"FBgn0028690","EGF_Stimulus":"-0.21"},{"ID":"FBgn0085278","EGF_Stimulus":"0.39"},{"ID":"FBgn0001122","EGF_Stimulus":"1.32"},{"ID":"FBgn0028697","EGF_Stimulus":"-2.73"},{"ID":"FBgn0038396","EGF_Stimulus":"0.15"},{"ID":"FBgn0040551","EGF_Stimulus":"0.59"},{"ID":"FBgn0039726","EGF_Stimulus":"0.62"},{"ID":"FBgn0010173","EGF_Stimulus":"-1"},{"ID":"FBgn0032261","EGF_Stimulus":"0.66"},{"ID":"FBgn0034770","EGF_Stimulus":"-0.95"},{"ID":"FBgn0030425","EGF_Stimulus":"-2.45"},{"ID":"FBgn0026262","EGF_Stimulus":"1.18"},{"ID":"FBgn0039202","EGF_Stimulus":"-0.77"},{"ID":"FBgn0004889","EGF_Stimulus":"-3.09"},{"ID":"FBgn0027375","EGF_Stimulus":"0.92"},{"ID":"FBgn0031184","EGF_Stimulus":"0.49"},{"ID":"FBgn0050446","EGF_Stimulus":"0.32"},{"ID":"FBgn0052774","EGF_Stimulus":"-2.44"},{"ID":"FBgn0036300","EGF_Stimulus":"0.7"},{"ID":"FBgn0033279","EGF_Stimulus":"-0.25"},{"ID":"FBgn0032021","EGF_Stimulus":"0.68"},{"ID":"FBgn0023423","EGF_Stimulus":"-2.18"},{"ID":"FBgn0034742","EGF_Stimulus":"-1"},{"ID":"FBgn0051370","EGF_Stimulus":"-0.89"},{"ID":"FBgn0025117","EGF_Stimulus":"-1.95"},{"ID":"FBgn0033791","EGF_Stimulus":"-1.26"},{"ID":"FBgn0038313","EGF_Stimulus":"-1.45"},{"ID":"FBgn0261575","EGF_Stimulus":"-0.8"},{"ID":"FBgn0011283","EGF_Stimulus":"-1.8"},{"ID":"FBgn0085198","EGF_Stimulus":"-0.3"},{"ID":"FBgn0032374","EGF_Stimulus":"-0.14"},{"ID":"FBgn0039070","EGF_Stimulus":"0.42"},{"ID":"FBgn0031359","EGF_Stimulus":"-0.62"},{"ID":"FBgn0034456","EGF_Stimulus":"0.55"},{"ID":"FBgn0033999","EGF_Stimulus":"-1.19"},{"ID":"FBgn0033738","EGF_Stimulus":"1.21"},{"ID":"FBgn0034622","EGF_Stimulus":"0.38"},{"ID":"FBgn0028379","EGF_Stimulus":"0.58"},{"ID":"FBgn0031373","EGF_Stimulus":"0.46"},{"ID":"FBgn0038371","EGF_Stimulus":"-0.13"},{"ID":"FBgn0037602","EGF_Stimulus":"0.12"},{"ID":"FBgn0024836","EGF_Stimulus":"0.08"},{"ID":"FBgn0031591","EGF_Stimulus":"-0.54"},{"ID":"FBgn0028394","EGF_Stimulus":"-0.6"},{"ID":"FBgn0035697","EGF_Stimulus":"0.74"},{"ID":"FBgn0259179","EGF_Stimulus":"-1.16"},{"ID":"FBgn0033260","EGF_Stimulus":"-2.1"},{"ID":"FBgn0034535","EGF_Stimulus":"1.53"},{"ID":"FBgn0037548","EGF_Stimulus":"-1.67"},{"ID":"FBgn0085398","EGF_Stimulus":"-1.39"},{"ID":"FBgn0036345","EGF_Stimulus":"-0.15"},{"ID":"FBgn0039787","EGF_Stimulus":"0.63"},{"ID":"FBgn0036121","EGF_Stimulus":"-0.17"},{"ID":"FBgn0035935","EGF_Stimulus":"1.26"},{"ID":"FBgn0038739","EGF_Stimulus":"0.24"},{"ID":"FBgn0052813","EGF_Stimulus":"0.15"},{"ID":"FBgn0038532","EGF_Stimulus":"-0.52"},{"ID":"FBgn0035577","EGF_Stimulus":"0.33"},{"ID":"FBgn0041242","EGF_Stimulus":"-0.69"},{"ID":"FBgn0037485","EGF_Stimulus":"0.54"},{"ID":"FBgn0085333","EGF_Stimulus":"0.72"},{"ID":"FBgn0039736","EGF_Stimulus":"0.24"},{"ID":"FBgn0011823","EGF_Stimulus":"0.61"},{"ID":"FBgn0000152","EGF_Stimulus":"-0.33"},{"ID":"FBgn0261545","EGF_Stimulus":"0.59"},{"ID":"FBgn0029082","EGF_Stimulus":"0.44"},{"ID":"FBgn0030891","EGF_Stimulus":"1.2"},{"ID":"FBgn0029729","EGF_Stimulus":"0.85"},{"ID":"FBgn0000278","EGF_Stimulus":"0.51"},{"ID":"FBgn0031456","EGF_Stimulus":"0.53"},{"ID":"FBgn0039650","EGF_Stimulus":"0.59"},{"ID":"FBgn0031451","EGF_Stimulus":"0.84"},{"ID":"FBgn0051559","EGF_Stimulus":"0.68"},{"ID":"FBgn0016131","EGF_Stimulus":"-2.36"},{"ID":"FBgn0020556","EGF_Stimulus":"0.76"},{"ID":"FBgn0032639","EGF_Stimulus":"-0.52"},{"ID":"FBgn0035344","EGF_Stimulus":"-0.08"},{"ID":"FBgn0031887","EGF_Stimulus":"-0.44"},{"ID":"FBgn0051217","EGF_Stimulus":"1.13"},{"ID":"FBgn0037592","EGF_Stimulus":"-0.67"},{"ID":"FBgn0031428","EGF_Stimulus":"0.4"},{"ID":"FBgn0003380","EGF_Stimulus":"0.78"},{"ID":"FBgn0032202","EGF_Stimulus":"-0.99"},{"ID":"FBgn0030000","EGF_Stimulus":"0.53"},{"ID":"FBgn0013973","EGF_Stimulus":"1.76"},{"ID":"FBgn0031607","EGF_Stimulus":"1.39"},{"ID":"FBgn0040336","EGF_Stimulus":"0.99"},{"ID":"FBgn0036979","EGF_Stimulus":"0.36"},{"ID":"FBgn0003189","EGF_Stimulus":"-0.73"},{"ID":"FBgn0051522","EGF_Stimulus":"0.43"},{"ID":"FBgn0001311","EGF_Stimulus":"0.62"},{"ID":"FBgn0027564","EGF_Stimulus":"-1.9"},{"ID":"FBgn0039491","EGF_Stimulus":"-0.72"},{"ID":"FBgn0032921","EGF_Stimulus":"-1.3"},{"ID":"FBgn0005322","EGF_Stimulus":"-0.86"},{"ID":"FBgn0036029","EGF_Stimulus":"0.46"},{"ID":"FBgn0261402","EGF_Stimulus":"1.15"},{"ID":"FBgn0028955","EGF_Stimulus":"0.31"},{"ID":"FBgn0030827","EGF_Stimulus":"0.48"},{"ID":"FBgn0051787","EGF_Stimulus":"-0.89"},{"ID":"FBgn0034179","EGF_Stimulus":"1.84"},{"ID":"FBgn0029843","EGF_Stimulus":"1.3"},{"ID":"FBgn0038842","EGF_Stimulus":"0.62"},{"ID":"FBgn0040778","EGF_Stimulus":"1.18"},{"ID":"FBgn0037248","EGF_Stimulus":"-1.04"},{"ID":"FBgn0047199","EGF_Stimulus":"-1.27"},{"ID":"FBgn0015568","EGF_Stimulus":"1.47"},{"ID":"FBgn0019982","EGF_Stimulus":"-0.51"},{"ID":"FBgn0052021","EGF_Stimulus":"0.8"},{"ID":"FBgn0004366","EGF_Stimulus":"0.36"},{"ID":"FBgn0036931","EGF_Stimulus":"-0.73"},{"ID":"FBgn0023094","EGF_Stimulus":"0.12"},{"ID":"FBgn0051075","EGF_Stimulus":"1.04"},{"ID":"FBgn0033075","EGF_Stimulus":"1.22"},{"ID":"FBgn0001133","EGF_Stimulus":"-0.48"},{"ID":"FBgn0031219","EGF_Stimulus":"-0.39"},{"ID":"FBgn0085307","EGF_Stimulus":"-0.44"},{"ID":"FBgn0050056","EGF_Stimulus":"-0.68"},{"ID":"FBgn0037720","EGF_Stimulus":"-1.65"},{"ID":"FBgn0030052","EGF_Stimulus":"1.31"},{"ID":"FBgn0002641","EGF_Stimulus":"-0.76"},{"ID":"FBgn0050323","EGF_Stimulus":"0.35"},{"ID":"FBgn0034109","EGF_Stimulus":"1.23"},{"ID":"FBgn0039453","EGF_Stimulus":"0.53"},{"ID":"FBgn0030206","EGF_Stimulus":"0.45"},{"ID":"FBgn0036509","EGF_Stimulus":"-1.14"},{"ID":"FBgn0022981","EGF_Stimulus":"1.74"},{"ID":"FBgn0035187","EGF_Stimulus":"0.68"},{"ID":"FBgn0017557","EGF_Stimulus":"1.1"},{"ID":"FBgn0014851","EGF_Stimulus":"1"},{"ID":"FBgn0040343","EGF_Stimulus":"1.07"},{"ID":"FBgn0035170","EGF_Stimulus":"-0.98"},{"ID":"FBgn0030731","EGF_Stimulus":"-0.68"},{"ID":"FBgn0034104","EGF_Stimulus":"-0.34"},{"ID":"FBgn0011279","EGF_Stimulus":"0.52"},{"ID":"FBgn0035148","EGF_Stimulus":"1.56"},{"ID":"FBgn0002868","EGF_Stimulus":"-0.58"},{"ID":"FBgn0015585","EGF_Stimulus":"1.37"},{"ID":"FBgn0030691","EGF_Stimulus":"-0.14"},{"ID":"FBgn0032456","EGF_Stimulus":"0.91"},{"ID":"FBgn0033865","EGF_Stimulus":"-1.23"},{"ID":"FBgn0034671","EGF_Stimulus":"-1.06"},{"ID":"FBgn0027873","EGF_Stimulus":"-0.45"},{"ID":"FBgn0004425","EGF_Stimulus":"1.19"},{"ID":"FBgn0031443","EGF_Stimulus":"0.53"},{"ID":"FBgn0039537","EGF_Stimulus":"0.75"},{"ID":"FBgn0003430","EGF_Stimulus":"0.58"},{"ID":"FBgn0086443","EGF_Stimulus":"-0.54"},{"ID":"FBgn0040752","EGF_Stimulus":"1.9"},{"ID":"FBgn0069973","EGF_Stimulus":"0.35"},{"ID":"FBgn0003480","EGF_Stimulus":"0.81"},{"ID":"FBgn0034563","EGF_Stimulus":"0.35"},{"ID":"FBgn0000092","EGF_Stimulus":"0.29"},{"ID":"FBgn0042185","EGF_Stimulus":"0.19"},{"ID":"FBgn0030809","EGF_Stimulus":"-2.37"},{"ID":"FBgn0038767","EGF_Stimulus":"-0.24"},{"ID":"FBgn0058064","EGF_Stimulus":"3.11"},{"ID":"FBgn0034692","EGF_Stimulus":"1.01"},{"ID":"FBgn0000100","EGF_Stimulus":"-3.91"},{"ID":"FBgn0029874","EGF_Stimulus":"0.5"},{"ID":"FBgn0010409","EGF_Stimulus":"-3.99"},{"ID":"FBgn0261573","EGF_Stimulus":"-2.19"},{"ID":"FBgn0014127","EGF_Stimulus":"-1.08"},{"ID":"FBgn0038903","EGF_Stimulus":"-0.94"},{"ID":"FBgn0034951","EGF_Stimulus":"-0.13"},{"ID":"FBgn0036587","EGF_Stimulus":"-0.96"},{"ID":"FBgn0036091","EGF_Stimulus":"-0.65"},{"ID":"FBgn0002735","EGF_Stimulus":"-0.32"},{"ID":"FBgn0015577","EGF_Stimulus":"1.32"},{"ID":"FBgn0032511","EGF_Stimulus":"-0.29"},{"ID":"FBgn0001170","EGF_Stimulus":"-0.6"},{"ID":"FBgn0011225","EGF_Stimulus":"1.37"},{"ID":"FBgn0039396","EGF_Stimulus":"1.5"},{"ID":"FBgn0031620","EGF_Stimulus":"-1.09"},{"ID":"FBgn0039084","EGF_Stimulus":"-2.29"},{"ID":"FBgn0038426","EGF_Stimulus":"-1.54"},{"ID":"FBgn0035677","EGF_Stimulus":"-1.4"},{"ID":"FBgn0085436","EGF_Stimulus":"-5.44"},{"ID":"FBgn0035714","EGF_Stimulus":"-0.97"},{"ID":"FBgn0052576","EGF_Stimulus":"-0.89"},{"ID":"FBgn0030661","EGF_Stimulus":"-0.73"},{"ID":"FBgn0003515","EGF_Stimulus":"0.93"},{"ID":"FBgn0036728","EGF_Stimulus":"1.1"},{"ID":"FBgn0025454","EGF_Stimulus":"-0.45"},{"ID":"FBgn0034964","EGF_Stimulus":"-0.64"},{"ID":"FBgn0036624","EGF_Stimulus":"-1.42"},{"ID":"FBgn0034959","EGF_Stimulus":"-0.9"},{"ID":"FBgn0052569","EGF_Stimulus":"-0.28"},{"ID":"FBgn0035346","EGF_Stimulus":"1.66"},{"ID":"FBgn0039876","EGF_Stimulus":"-4.29"},{"ID":"FBgn0058198","EGF_Stimulus":"0.11"},{"ID":"FBgn0032401","EGF_Stimulus":"1.75"},{"ID":"FBgn0031101","EGF_Stimulus":"-0.53"},{"ID":"FBgn0261289","EGF_Stimulus":"0.95"},{"ID":"FBgn0035824","EGF_Stimulus":"0.24"},{"ID":"FBgn0027795","EGF_Stimulus":"0.91"},{"ID":"FBgn0025573","EGF_Stimulus":"1.18"},{"ID":"FBgn0033232","EGF_Stimulus":"-0.02"},{"ID":"FBgn0036044","EGF_Stimulus":"1.16"},{"ID":"FBgn0260657","EGF_Stimulus":"-1.37"},{"ID":"FBgn0031289","EGF_Stimulus":"0.91"},{"ID":"FBgn0035638","EGF_Stimulus":"-3.34"},{"ID":"FBgn0030420","EGF_Stimulus":"-0.36"},{"ID":"FBgn0053012","EGF_Stimulus":"-1.09"},{"ID":"FBgn0024245","EGF_Stimulus":"1.53"},{"ID":"FBgn0034416","EGF_Stimulus":"-0.61"},{"ID":"FBgn0010300","EGF_Stimulus":"-1.99"},{"ID":"FBgn0052192","EGF_Stimulus":"1.35"},{"ID":"FBgn0029748","EGF_Stimulus":"1.33"},{"ID":"FBgn0025549","EGF_Stimulus":"-0.57"},{"ID":"FBgn0034205","EGF_Stimulus":"0.47"},{"ID":"FBgn0032715","EGF_Stimulus":"0.52"},{"ID":"FBgn0029999","EGF_Stimulus":"1.03"},{"ID":"FBgn0039341","EGF_Stimulus":"0.52"},{"ID":"FBgn0036911","EGF_Stimulus":"-0.22"},{"ID":"FBgn0259713","EGF_Stimulus":"0.55"},{"ID":"FBgn0038953","EGF_Stimulus":"1.03"},{"ID":"FBgn0035397","EGF_Stimulus":"-1.16"},{"ID":"FBgn0000228","EGF_Stimulus":"0.62"},{"ID":"FBgn0034097","EGF_Stimulus":"-1.33"},{"ID":"FBgn0031877","EGF_Stimulus":"0.61"},{"ID":"FBgn0010575","EGF_Stimulus":"2.27"},{"ID":"FBgn0032668","EGF_Stimulus":"0.29"},{"ID":"FBgn0030311","EGF_Stimulus":"0.82"},{"ID":"FBgn0036329","EGF_Stimulus":"-0.34"},{"ID":"FBgn0020756","EGF_Stimulus":"1.88"},{"ID":"FBgn0039686","EGF_Stimulus":"1.68"},{"ID":"FBgn0011726","EGF_Stimulus":"-0.5"},{"ID":"FBgn0040038","EGF_Stimulus":"1.14"},{"ID":"FBgn0030961","EGF_Stimulus":"-0.27"},{"ID":"FBgn0038734","EGF_Stimulus":"0.57"},{"ID":"FBgn0033828","EGF_Stimulus":"-0.57"},{"ID":"FBgn0004842","EGF_Stimulus":"-0.14"},{"ID":"FBgn0034269","EGF_Stimulus":"-0.61"},{"ID":"FBgn0039966","EGF_Stimulus":"1.1"},{"ID":"FBgn0037347","EGF_Stimulus":"-0.57"},{"ID":"FBgn0036195","EGF_Stimulus":"0.42"},{"ID":"FBgn0032023","EGF_Stimulus":"-0.6"},{"ID":"FBgn0031327","EGF_Stimulus":"-0.64"},{"ID":"FBgn0004919","EGF_Stimulus":"1.44"},{"ID":"FBgn0044046","EGF_Stimulus":"0.94"},{"ID":"FBgn0053523","EGF_Stimulus":"0.62"},{"ID":"FBgn0038609","EGF_Stimulus":"0.86"},{"ID":"FBgn0015795","EGF_Stimulus":"-1.29"},{"ID":"FBgn0032211","EGF_Stimulus":"0.61"},{"ID":"FBgn0050420","EGF_Stimulus":"1.02"},{"ID":"FBgn0027574","EGF_Stimulus":"-0.45"},{"ID":"FBgn0051313","EGF_Stimulus":"1.84"},{"ID":"FBgn0038692","EGF_Stimulus":"-0.33"},{"ID":"FBgn0032075","EGF_Stimulus":"-0.21"},{"ID":"FBgn0051352","EGF_Stimulus":"-0.83"},{"ID":"FBgn0038191","EGF_Stimulus":"0.59"},{"ID":"FBgn0038466","EGF_Stimulus":"-1.07"},{"ID":"FBgn0036993","EGF_Stimulus":"-0.48"},{"ID":"FBgn0031766","EGF_Stimulus":"0.88"},{"ID":"FBgn0032388","EGF_Stimulus":"1.61"},{"ID":"FBgn0001281","EGF_Stimulus":"0.54"},{"ID":"FBgn0033571","EGF_Stimulus":"0.23"},{"ID":"FBgn0004910","EGF_Stimulus":"0.72"},{"ID":"FBgn0051219","EGF_Stimulus":"-0.18"},{"ID":"FBgn0033490","EGF_Stimulus":"0.71"},{"ID":"FBgn0034894","EGF_Stimulus":"1.06"},{"ID":"FBgn0052488","EGF_Stimulus":"0.97"},{"ID":"FBgn0050463","EGF_Stimulus":"-1.58"},{"ID":"FBgn0039806","EGF_Stimulus":"-0.23"},{"ID":"FBgn0035179","EGF_Stimulus":"0.89"},{"ID":"FBgn0038742","EGF_Stimulus":"-0.36"},{"ID":"FBgn0038535","EGF_Stimulus":"-0.12"},{"ID":"FBgn0034324","EGF_Stimulus":"1.73"},{"ID":"FBgn0040045","EGF_Stimulus":"1.09"},{"ID":"FBgn0015586","EGF_Stimulus":"-1.28"},{"ID":"FBgn0053469","EGF_Stimulus":"0.95"},{"ID":"FBgn0040352","EGF_Stimulus":"0.42"},{"ID":"FBgn0033690","EGF_Stimulus":"0.88"},{"ID":"FBgn0053100","EGF_Stimulus":"1.54"},{"ID":"FBgn0085384","EGF_Stimulus":"1.75"},{"ID":"FBgn0038111","EGF_Stimulus":"-0.66"},{"ID":"FBgn0036213","EGF_Stimulus":"-3.34"},{"ID":"FBgn0261385","EGF_Stimulus":"0.33"},{"ID":"FBgn0004107","EGF_Stimulus":"-2.9"},{"ID":"FBgn0036443","EGF_Stimulus":"-1.99"},{"ID":"FBgn0032881","EGF_Stimulus":"-5"},{"ID":"FBgn0031089","EGF_Stimulus":"1.23"},{"ID":"FBgn0085253","EGF_Stimulus":"0.36"},{"ID":"FBgn0030738","EGF_Stimulus":"-0.2"},{"ID":"FBgn0032234","EGF_Stimulus":"-0.13"},{"ID":"FBgn0036778","EGF_Stimulus":"0.81"},{"ID":"FBgn0051326","EGF_Stimulus":"1.16"},{"ID":"FBgn0035217","EGF_Stimulus":"-0.93"},{"ID":"FBgn0036516","EGF_Stimulus":"0.58"},{"ID":"FBgn0034023","EGF_Stimulus":"0.98"},{"ID":"FBgn0038262","EGF_Stimulus":"0.9"},{"ID":"FBgn0052707","EGF_Stimulus":"-1.31"},{"ID":"FBgn0038826","EGF_Stimulus":"-0.38"},{"ID":"FBgn0032810","EGF_Stimulus":"0.53"},{"ID":"FBgn0037680","EGF_Stimulus":"0.88"},{"ID":"FBgn0033450","EGF_Stimulus":"1.22"},{"ID":"FBgn0032259","EGF_Stimulus":"-1.22"},{"ID":"FBgn0031010","EGF_Stimulus":"0.22"},{"ID":"FBgn0033705","EGF_Stimulus":"0.71"},{"ID":"FBgn0039450","EGF_Stimulus":"0.29"},{"ID":"FBgn0038451","EGF_Stimulus":"-0.44"},{"ID":"FBgn0037224","EGF_Stimulus":"1.25"},{"ID":"FBgn0052405","EGF_Stimulus":"-0.44"},{"ID":"FBgn0033369","EGF_Stimulus":"0.35"},{"ID":"FBgn0040964","EGF_Stimulus":"-0.42"},{"ID":"FBgn0002872","EGF_Stimulus":"0.44"},{"ID":"FBgn0038345","EGF_Stimulus":"0.71"},{"ID":"FBgn0261451","EGF_Stimulus":"0.8"},{"ID":"FBgn0052087","EGF_Stimulus":"1"},{"ID":"FBgn0033607","EGF_Stimulus":"0.93"},{"ID":"FBgn0037584","EGF_Stimulus":"0.6"},{"ID":"FBgn0039294","EGF_Stimulus":"1.3"},{"ID":"FBgn0010294","EGF_Stimulus":"0.93"},{"ID":"FBgn0039135","EGF_Stimulus":"1.01"},{"ID":"FBgn0039581","EGF_Stimulus":"1"},{"ID":"FBgn0033597","EGF_Stimulus":"0.48"},{"ID":"FBgn0032817","EGF_Stimulus":"1.87"},{"ID":"FBgn0037282","EGF_Stimulus":"1.97"},{"ID":"FBgn0027495","EGF_Stimulus":"-0.21"},{"ID":"FBgn0261710","EGF_Stimulus":"-2.08"},{"ID":"FBgn0038809","EGF_Stimulus":"1.42"},{"ID":"FBgn0035312","EGF_Stimulus":"0.55"},{"ID":"FBgn0036039","EGF_Stimulus":"0.46"},{"ID":"FBgn0001208","EGF_Stimulus":"-0.73"},{"ID":"FBgn0030616","EGF_Stimulus":"-3.28"},{"ID":"FBgn0051342","EGF_Stimulus":"-0.53"},{"ID":"FBgn0022382","EGF_Stimulus":"0.65"},{"ID":"FBgn0035453","EGF_Stimulus":"0.57"},{"ID":"FBgn0004864","EGF_Stimulus":"0.65"},{"ID":"FBgn0039098","EGF_Stimulus":"-1.67"},{"ID":"FBgn0034700","EGF_Stimulus":"1.81"},{"ID":"FBgn0020765","EGF_Stimulus":"0.77"},{"ID":"FBgn0031264","EGF_Stimulus":"-0.97"},{"ID":"FBgn0032586","EGF_Stimulus":"0.9"},{"ID":"FBgn0052382","EGF_Stimulus":"1.91"},{"ID":"FBgn0030816","EGF_Stimulus":"1.34"},{"ID":"FBgn0038175","EGF_Stimulus":"0.26"},{"ID":"FBgn0032518","EGF_Stimulus":"4.05"},{"ID":"FBgn0261588","EGF_Stimulus":"-0.4"},{"ID":"FBgn0034656","EGF_Stimulus":"-5.07"},{"ID":"FBgn0053080","EGF_Stimulus":"-1.19"},{"ID":"FBgn0000447","EGF_Stimulus":"-0.81"},{"ID":"FBgn0037363","EGF_Stimulus":"-0.99"},{"ID":"FBgn0035877","EGF_Stimulus":"-0.45"},{"ID":"FBgn0034523","EGF_Stimulus":"0.64"},{"ID":"FBgn0033936","EGF_Stimulus":"-0.14"},{"ID":"FBgn0033740","EGF_Stimulus":"0.64"},{"ID":"FBgn0045483","EGF_Stimulus":"-0.73"},{"ID":"FBgn0033635","EGF_Stimulus":"-0.38"},{"ID":"FBgn0086758","EGF_Stimulus":"2.33"},{"ID":"FBgn0037130","EGF_Stimulus":"0.59"},{"ID":"FBgn0022710","EGF_Stimulus":"-1.19"},{"ID":"FBgn0004034","EGF_Stimulus":"-0.13"},{"ID":"FBgn0039711","EGF_Stimulus":"0.31"},{"ID":"FBgn0034009","EGF_Stimulus":"1.09"},{"ID":"FBgn0053177","EGF_Stimulus":"0.96"},{"ID":"FBgn0035282","EGF_Stimulus":"-0.45"},{"ID":"FBgn0032016","EGF_Stimulus":"0.32"},{"ID":"FBgn0039498","EGF_Stimulus":"-0.38"},{"ID":"FBgn0037727","EGF_Stimulus":"0.54"},{"ID":"FBgn0030348","EGF_Stimulus":"-0.09"},{"ID":"FBgn0024326","EGF_Stimulus":"0.49"},{"ID":"FBgn0003371","EGF_Stimulus":"1.85"},{"ID":"FBgn0022355","EGF_Stimulus":"1.02"},{"ID":"FBgn0035495","EGF_Stimulus":"1.31"},{"ID":"FBgn0040726","EGF_Stimulus":"1.55"},{"ID":"FBgn0039759","EGF_Stimulus":"1.1"},{"ID":"FBgn0052057","EGF_Stimulus":"-0.57"},{"ID":"FBgn0032157","EGF_Stimulus":"-0.72"},{"ID":"FBgn0028993","EGF_Stimulus":"-0.77"},{"ID":"FBgn0011670","EGF_Stimulus":"-0.35"},{"ID":"FBgn0050029","EGF_Stimulus":"0.83"},{"ID":"FBgn0004784","EGF_Stimulus":"-0.29"},{"ID":"FBgn0029820","EGF_Stimulus":"-1.08"},{"ID":"FBgn0013770","EGF_Stimulus":"-1.59"},{"ID":"FBgn0015400","EGF_Stimulus":"-0.26"},{"ID":"FBgn0035435","EGF_Stimulus":"2.06"},{"ID":"FBgn0025809","EGF_Stimulus":"0.55"},{"ID":"FBgn0030871","EGF_Stimulus":"1.01"},{"ID":"FBgn0014417","EGF_Stimulus":"0.69"},{"ID":"FBgn0035286","EGF_Stimulus":"-0.36"},{"ID":"FBgn0041092","EGF_Stimulus":"-0.68"},{"ID":"FBgn0029687","EGF_Stimulus":"1.36"},{"ID":"FBgn0034008","EGF_Stimulus":"0.45"},{"ID":"FBgn0036259","EGF_Stimulus":"0.86"},{"ID":"FBgn0020440","EGF_Stimulus":"0.54"},{"ID":"FBgn0032726","EGF_Stimulus":"0.08"},{"ID":"FBgn0003715","EGF_Stimulus":"0.36"},{"ID":"FBgn0033818","EGF_Stimulus":"0.58"},{"ID":"FBgn0037135","EGF_Stimulus":"0.57"},{"ID":"FBgn0001186","EGF_Stimulus":"-0.35"},{"ID":"FBgn0038057","EGF_Stimulus":"-0.5"},{"ID":"FBgn0030108","EGF_Stimulus":"1.47"},{"ID":"FBgn0030294","EGF_Stimulus":"0.25"},{"ID":"FBgn0030841","EGF_Stimulus":"-0.66"},{"ID":"FBgn0030063","EGF_Stimulus":"0.76"},{"ID":"FBgn0031929","EGF_Stimulus":"0.51"},{"ID":"FBgn0052440","EGF_Stimulus":"0.76"},{"ID":"FBgn0030975","EGF_Stimulus":"0.41"},{"ID":"FBgn0016047","EGF_Stimulus":"-0.23"},{"ID":"FBgn0023525","EGF_Stimulus":"0.49"},{"ID":"FBgn0016691","EGF_Stimulus":"-1.75"},{"ID":"FBgn0037294","EGF_Stimulus":"0.78"},{"ID":"FBgn0023081","EGF_Stimulus":"0.37"},{"ID":"FBgn0063495","EGF_Stimulus":"0.44"},{"ID":"FBgn0036448","EGF_Stimulus":"-1.64"},{"ID":"FBgn0261614","EGF_Stimulus":"1.74"},{"ID":"FBgn0039890","EGF_Stimulus":"0.88"},{"ID":"FBgn0053262","EGF_Stimulus":"-1.31"},{"ID":"FBgn0037525","EGF_Stimulus":"-1.74"},{"ID":"FBgn0038422","EGF_Stimulus":"1.31"},{"ID":"FBgn0037105","EGF_Stimulus":"0.77"},{"ID":"FBgn0050457","EGF_Stimulus":"-0.79"},{"ID":"FBgn0086783","EGF_Stimulus":"-3.83"},{"ID":"FBgn0025578","EGF_Stimulus":"0.51"},{"ID":"FBgn0037543","EGF_Stimulus":"0.84"},{"ID":"FBgn0037018","EGF_Stimulus":"0.42"},{"ID":"FBgn0001226","EGF_Stimulus":"0.35"},{"ID":"FBgn0051600","EGF_Stimulus":"-0.96"},{"ID":"FBgn0010329","EGF_Stimulus":"-0.15"},{"ID":"FBgn0028343","EGF_Stimulus":"-2.67"},{"ID":"FBgn0030142","EGF_Stimulus":"0.29"},{"ID":"FBgn0039329","EGF_Stimulus":"1.93"},{"ID":"FBgn0038564","EGF_Stimulus":"0.31"},{"ID":"FBgn0034002","EGF_Stimulus":"1.29"},{"ID":"FBgn0014076","EGF_Stimulus":"-0.93"},{"ID":"FBgn0031074","EGF_Stimulus":"0.47"},{"ID":"FBgn0020429","EGF_Stimulus":"-1.09"},{"ID":"FBgn0030009","EGF_Stimulus":"0.29"},{"ID":"FBgn0038751","EGF_Stimulus":"1.64"},{"ID":"FBgn0038680","EGF_Stimulus":"-0.56"},{"ID":"FBgn0027607","EGF_Stimulus":"0.53"},{"ID":"FBgn0039274","EGF_Stimulus":"-1.55"},{"ID":"FBgn0025388","EGF_Stimulus":"0.28"},{"ID":"FBgn0038803","EGF_Stimulus":"1.13"},{"ID":"FBgn0039126","EGF_Stimulus":"-0.72"},{"ID":"FBgn0015513","EGF_Stimulus":"0.4"},{"ID":"FBgn0050390","EGF_Stimulus":"-1.5"},{"ID":"FBgn0017590","EGF_Stimulus":"-1.05"},{"ID":"FBgn0027558","EGF_Stimulus":"1.02"},{"ID":"FBgn0004646","EGF_Stimulus":"-0.51"},{"ID":"FBgn0031907","EGF_Stimulus":"0.89"},{"ID":"FBgn0020445","EGF_Stimulus":"-0.62"},{"ID":"FBgn0033821","EGF_Stimulus":"0.66"},{"ID":"FBgn0037934","EGF_Stimulus":"-1.18"},{"ID":"FBgn0037129","EGF_Stimulus":"0.76"},{"ID":"FBgn0051704","EGF_Stimulus":"-1.36"},{"ID":"FBgn0025807","EGF_Stimulus":"-0.54"},{"ID":"FBgn0032779","EGF_Stimulus":"0.21"},{"ID":"FBgn0039566","EGF_Stimulus":"1.48"},{"ID":"FBgn0020257","EGF_Stimulus":"1.21"},{"ID":"FBgn0000039","EGF_Stimulus":"1.29"},{"ID":"FBgn0031831","EGF_Stimulus":"-0.67"},{"ID":"FBgn0034217","EGF_Stimulus":"0.66"},{"ID":"FBgn0010328","EGF_Stimulus":"-0.36"},{"ID":"FBgn0034439","EGF_Stimulus":"-1.86"},{"ID":"FBgn0000337","EGF_Stimulus":"-1.14"},{"ID":"FBgn0086710","EGF_Stimulus":"-3.39"},{"ID":"FBgn0040705","EGF_Stimulus":"1.04"},{"ID":"FBgn0037746","EGF_Stimulus":"-1.58"},{"ID":"FBgn0035109","EGF_Stimulus":"0.58"},{"ID":"FBgn0031979","EGF_Stimulus":"1"},{"ID":"FBgn0051677","EGF_Stimulus":"-0.35"},{"ID":"FBgn0034484","EGF_Stimulus":"1"},{"ID":"FBgn0023534","EGF_Stimulus":"-0.76"},{"ID":"FBgn0000179","EGF_Stimulus":"0.62"},{"ID":"FBgn0045474","EGF_Stimulus":"-0.91"},{"ID":"FBgn0261055","EGF_Stimulus":"-2.14"},{"ID":"FBgn0259225","EGF_Stimulus":"-1.78"},{"ID":"FBgn0030670","EGF_Stimulus":"0.79"},{"ID":"FBgn0050274","EGF_Stimulus":"0.38"},{"ID":"FBgn0033904","EGF_Stimulus":"0.56"},{"ID":"FBgn0036591","EGF_Stimulus":"-0.62"},{"ID":"FBgn0036987","EGF_Stimulus":"0.79"},{"ID":"FBgn0040230","EGF_Stimulus":"0.56"},{"ID":"FBgn0032685","EGF_Stimulus":"-0.76"},{"ID":"FBgn0037831","EGF_Stimulus":"-1.39"},{"ID":"FBgn0040104","EGF_Stimulus":"0.58"},{"ID":"FBgn0034759","EGF_Stimulus":"-0.94"},{"ID":"FBgn0038479","EGF_Stimulus":"-0.92"},{"ID":"FBgn0034436","EGF_Stimulus":"0.96"},{"ID":"FBgn0039941","EGF_Stimulus":"-1.49"},{"ID":"FBgn0004066","EGF_Stimulus":"-0.98"},{"ID":"FBgn0039111","EGF_Stimulus":"-0.53"},{"ID":"FBgn0042103","EGF_Stimulus":"0.58"},{"ID":"FBgn0033661","EGF_Stimulus":"-0.72"},{"ID":"FBgn0016754","EGF_Stimulus":"-0.43"},{"ID":"FBgn0011758","EGF_Stimulus":"1.03"},{"ID":"FBgn0034379","EGF_Stimulus":"1.07"},{"ID":"FBgn0013680","EGF_Stimulus":"1.49"},{"ID":"FBgn0024234","EGF_Stimulus":"-0.86"},{"ID":"FBgn0034975","EGF_Stimulus":"-0.76"},{"ID":"FBgn0030721","EGF_Stimulus":"0.3"},{"ID":"FBgn0031094","EGF_Stimulus":"-0.93"},{"ID":"FBgn0030462","EGF_Stimulus":"-1.43"},{"ID":"FBgn0005775","EGF_Stimulus":"0.64"},{"ID":"FBgn0046253","EGF_Stimulus":"-1.63"},{"ID":"FBgn0035265","EGF_Stimulus":"0.71"},{"ID":"FBgn0004607","EGF_Stimulus":"0.49"},{"ID":"FBgn0036218","EGF_Stimulus":"1.11"},{"ID":"FBgn0037758","EGF_Stimulus":"-0.59"},{"ID":"FBgn0037719","EGF_Stimulus":"-0.99"},{"ID":"FBgn0039521","EGF_Stimulus":"1.34"},{"ID":"FBgn0031854","EGF_Stimulus":"0.18"},{"ID":"FBgn0036666","EGF_Stimulus":"-2"},{"ID":"FBgn0038252","EGF_Stimulus":"0.91"},{"ID":"FBgn0030938","EGF_Stimulus":"-1.06"},{"ID":"FBgn0051755","EGF_Stimulus":"1.3"},{"ID":"FBgn0052271","EGF_Stimulus":"0.62"},{"ID":"FBgn0024288","EGF_Stimulus":"-0.78"},{"ID":"FBgn0001216","EGF_Stimulus":"-2.18"},{"ID":"FBgn0261436","EGF_Stimulus":"-0.11"},{"ID":"FBgn0053319","EGF_Stimulus":"-0.38"},{"ID":"FBgn0030864","EGF_Stimulus":"-0.34"},{"ID":"FBgn0032485","EGF_Stimulus":"-0.7"},{"ID":"FBgn0032612","EGF_Stimulus":"0.48"},{"ID":"FBgn0005683","EGF_Stimulus":"1.5"},{"ID":"FBgn0039568","EGF_Stimulus":"0.71"},{"ID":"FBgn0051812","EGF_Stimulus":"-1.14"},{"ID":"FBgn0033777","EGF_Stimulus":"0.43"},{"ID":"FBgn0038472","EGF_Stimulus":"0.87"},{"ID":"FBgn0034883","EGF_Stimulus":"0.28"},{"ID":"FBgn0032979","EGF_Stimulus":"-2.31"},{"ID":"FBgn0037675","EGF_Stimulus":"-1.44"},{"ID":"FBgn0032331","EGF_Stimulus":"-0.92"},{"ID":"FBgn0050284","EGF_Stimulus":"-0.78"},{"ID":"FBgn0029856","EGF_Stimulus":"-3.02"},{"ID":"FBgn0053310","EGF_Stimulus":"0.47"},{"ID":"FBgn0031598","EGF_Stimulus":"1.1"},{"ID":"FBgn0031296","EGF_Stimulus":"-0.36"},{"ID":"FBgn0043806","EGF_Stimulus":"0.19"},{"ID":"FBgn0010269","EGF_Stimulus":"-1.98"},{"ID":"FBgn0036980","EGF_Stimulus":"1.47"},{"ID":"FBgn0052053","EGF_Stimulus":"0.91"},{"ID":"FBgn0052198","EGF_Stimulus":"0.8"},{"ID":"FBgn0037057","EGF_Stimulus":"-0.69"},{"ID":"FBgn0031057","EGF_Stimulus":"-1.39"},{"ID":"FBgn0053653","EGF_Stimulus":"-0.47"},{"ID":"FBgn0053773","EGF_Stimulus":"-0.69"},{"ID":"FBgn0085464","EGF_Stimulus":"-0.72"},{"ID":"FBgn0032538","EGF_Stimulus":"-1.5"},{"ID":"FBgn0030082","EGF_Stimulus":"-1.16"},{"ID":"FBgn0039551","EGF_Stimulus":"0.42"},{"ID":"FBgn0039332","EGF_Stimulus":"-1"},{"ID":"FBgn0031673","EGF_Stimulus":"0.77"},{"ID":"FBgn0032820","EGF_Stimulus":"1.64"},{"ID":"FBgn0053926","EGF_Stimulus":"-0.79"},{"ID":"FBgn0250819","EGF_Stimulus":"-1.26"},{"ID":"FBgn0050429","EGF_Stimulus":"0.49"},{"ID":"FBgn0085401","EGF_Stimulus":"1.27"},{"ID":"FBgn0035945","EGF_Stimulus":"0.82"},{"ID":"FBgn0041225","EGF_Stimulus":"0.38"},{"ID":"FBgn0036796","EGF_Stimulus":"-0.88"},{"ID":"FBgn0032734","EGF_Stimulus":"-0.26"},{"ID":"FBgn0037383","EGF_Stimulus":"1.53"},{"ID":"FBgn0028946","EGF_Stimulus":"0.81"},{"ID":"FBgn0030486","EGF_Stimulus":"0.52"},{"ID":"FBgn0053107","EGF_Stimulus":"1.79"},{"ID":"FBgn0031250","EGF_Stimulus":"-0.27"},{"ID":"FBgn0032596","EGF_Stimulus":"-4.12"},{"ID":"FBgn0015541","EGF_Stimulus":"0.76"},{"ID":"FBgn0033117","EGF_Stimulus":"-0.02"},{"ID":"FBgn0004359","EGF_Stimulus":"0.5"},{"ID":"FBgn0038274","EGF_Stimulus":"0.62"},{"ID":"FBgn0031169","EGF_Stimulus":"0.67"},{"ID":"FBgn0040239","EGF_Stimulus":"0.77"},{"ID":"FBgn0028648","EGF_Stimulus":"0.71"},{"ID":"FBgn0039473","EGF_Stimulus":"-0.39"},{"ID":"FBgn0029878","EGF_Stimulus":"0.48"},{"ID":"FBgn0028426","EGF_Stimulus":"-1.15"},{"ID":"FBgn0028888","EGF_Stimulus":"-0.89"},{"ID":"FBgn0038240","EGF_Stimulus":"1.07"},{"ID":"FBgn0029552","EGF_Stimulus":"0.8"},{"ID":"FBgn0036158","EGF_Stimulus":"0.43"},{"ID":"FBgn0038149","EGF_Stimulus":"0.57"},{"ID":"FBgn0032156","EGF_Stimulus":"-0.72"},{"ID":"FBgn0261113","EGF_Stimulus":"-0.38"},{"ID":"FBgn0036974","EGF_Stimulus":"-2.4"},{"ID":"FBgn0037822","EGF_Stimulus":"-0.62"},{"ID":"FBgn0037999","EGF_Stimulus":"1.52"},{"ID":"FBgn0004852","EGF_Stimulus":"-0.45"},{"ID":"FBgn0030394","EGF_Stimulus":"1.03"},{"ID":"FBgn0013812","EGF_Stimulus":"1.34"},{"ID":"FBgn0035767","EGF_Stimulus":"0.64"},{"ID":"FBgn0030926","EGF_Stimulus":"-0.71"},{"ID":"FBgn0039872","EGF_Stimulus":"0.87"},{"ID":"FBgn0034089","EGF_Stimulus":"-0.86"},{"ID":"FBgn0034301","EGF_Stimulus":"0.13"},{"ID":"FBgn0030101","EGF_Stimulus":"0.78"},{"ID":"FBgn0045980","EGF_Stimulus":"0.55"},{"ID":"FBgn0015036","EGF_Stimulus":"1.14"},{"ID":"FBgn0033196","EGF_Stimulus":"-2.8"},{"ID":"FBgn0053193","EGF_Stimulus":"0.97"},{"ID":"FBgn0036273","EGF_Stimulus":"0.44"},{"ID":"FBgn0261648","EGF_Stimulus":"1.22"},{"ID":"FBgn0035232","EGF_Stimulus":"-1.21"},{"ID":"FBgn0032348","EGF_Stimulus":"-0.56"},{"ID":"FBgn0028708","EGF_Stimulus":"0.41"},{"ID":"FBgn0031550","EGF_Stimulus":"-0.32"},{"ID":"FBgn0030522","EGF_Stimulus":"-0.44"},{"ID":"FBgn0025815","EGF_Stimulus":"-0.35"},{"ID":"FBgn0038719","EGF_Stimulus":"0.43"},{"ID":"FBgn0035943","EGF_Stimulus":"0.75"},{"ID":"FBgn0086895","EGF_Stimulus":"1.88"},{"ID":"FBgn0036818","EGF_Stimulus":"-1.59"},{"ID":"FBgn0038373","EGF_Stimulus":"-0.61"},{"ID":"FBgn0033048","EGF_Stimulus":"1.2"},{"ID":"FBgn0003495","EGF_Stimulus":"0.59"},{"ID":"FBgn0035490","EGF_Stimulus":"0.62"},{"ID":"FBgn0259231","EGF_Stimulus":"-0.69"},{"ID":"FBgn0001942","EGF_Stimulus":"-5.39"},{"ID":"FBgn0033781","EGF_Stimulus":"0.14"},{"ID":"FBgn0259167","EGF_Stimulus":"-0.49"},{"ID":"FBgn0042207","EGF_Stimulus":"0.41"},{"ID":"FBgn0261882","EGF_Stimulus":"1.38"},{"ID":"FBgn0015295","EGF_Stimulus":"-0.27"},{"ID":"FBgn0034381","EGF_Stimulus":"0.76"},{"ID":"FBgn0023212","EGF_Stimulus":"0.9"},{"ID":"FBgn0031689","EGF_Stimulus":"-1.51"},{"ID":"FBgn0025830","EGF_Stimulus":"-0.88"},{"ID":"FBgn0022942","EGF_Stimulus":"-1.56"},{"ID":"FBgn0033421","EGF_Stimulus":"-0.45"},{"ID":"FBgn0035952","EGF_Stimulus":"-2.31"},{"ID":"FBgn0041710","EGF_Stimulus":"-0.3"},{"ID":"FBgn0038529","EGF_Stimulus":"0.49"},{"ID":"FBgn0035006","EGF_Stimulus":"-0.83"},{"ID":"FBgn0032847","EGF_Stimulus":"1.2"},{"ID":"FBgn0005198","EGF_Stimulus":"1.07"},{"ID":"FBgn0034578","EGF_Stimulus":"-0.53"},{"ID":"FBgn0025352","EGF_Stimulus":"1.37"},{"ID":"FBgn0035876","EGF_Stimulus":"0.45"},{"ID":"FBgn0013995","EGF_Stimulus":"-1.48"},{"ID":"FBgn0261020","EGF_Stimulus":"0.52"},{"ID":"FBgn0052365","EGF_Stimulus":"0.97"},{"ID":"FBgn0039818","EGF_Stimulus":"1.01"},{"ID":"FBgn0039704","EGF_Stimulus":"0.71"},{"ID":"FBgn0050418","EGF_Stimulus":"0.92"},{"ID":"FBgn0037554","EGF_Stimulus":"0.42"},{"ID":"FBgn0032381","EGF_Stimulus":"0.58"},{"ID":"FBgn0032763","EGF_Stimulus":"1.52"},{"ID":"FBgn0053159","EGF_Stimulus":"-0.82"},{"ID":"FBgn0053508","EGF_Stimulus":"9.52252449247213e-03"},{"ID":"FBgn0037025","EGF_Stimulus":"-2.87"},{"ID":"FBgn0026059","EGF_Stimulus":"-1.01"},{"ID":"FBgn0033751","EGF_Stimulus":"1.53"},{"ID":"FBgn0020407","EGF_Stimulus":"-0.59"},{"ID":"FBgn0020622","EGF_Stimulus":"0.22"},{"ID":"FBgn0261674","EGF_Stimulus":"0.7"},{"ID":"FBgn0045471","EGF_Stimulus":"0.21"},{"ID":"FBgn0031002","EGF_Stimulus":"-0.42"},{"ID":"FBgn0013300","EGF_Stimulus":"1.38"},{"ID":"FBgn0038679","EGF_Stimulus":"1.36"},{"ID":"FBgn0031629","EGF_Stimulus":"1.12"},{"ID":"FBgn0015374","EGF_Stimulus":"0.42"},{"ID":"FBgn0044050","EGF_Stimulus":"0.61"},{"ID":"FBgn0013763","EGF_Stimulus":"-0.24"},{"ID":"FBgn0035622","EGF_Stimulus":"-0.75"},{"ID":"FBgn0029629","EGF_Stimulus":"-4.4"},{"ID":"FBgn0035709","EGF_Stimulus":"-1.26"},{"ID":"FBgn0052447","EGF_Stimulus":"-0.18"},{"ID":"FBgn0028740","EGF_Stimulus":"0.59"},{"ID":"FBgn0053095","EGF_Stimulus":"0.11"},{"ID":"FBgn0037627","EGF_Stimulus":"-1.02"},{"ID":"FBgn0038082","EGF_Stimulus":"1.88"},{"ID":"FBgn0030278","EGF_Stimulus":"-0.64"},{"ID":"FBgn0036806","EGF_Stimulus":"0.96"},{"ID":"FBgn0031111","EGF_Stimulus":"-0.73"},{"ID":"FBgn0005390","EGF_Stimulus":"0.37"},{"ID":"FBgn0036342","EGF_Stimulus":"-0.17"},{"ID":"FBgn0005631","EGF_Stimulus":"-0.97"},{"ID":"FBgn0035110","EGF_Stimulus":"0.29"},{"ID":"FBgn0031406","EGF_Stimulus":"0.4"},{"ID":"FBgn0035385","EGF_Stimulus":"0.79"},{"ID":"FBgn0032827","EGF_Stimulus":"0.78"},{"ID":"FBgn0022800","EGF_Stimulus":"1.03"},{"ID":"FBgn0051091","EGF_Stimulus":"0.99"},{"ID":"FBgn0260482","EGF_Stimulus":"0.57"},{"ID":"FBgn0032289","EGF_Stimulus":"0.81"},{"ID":"FBgn0050178","EGF_Stimulus":"0.99"},{"ID":"FBgn0029946","EGF_Stimulus":"0.93"},{"ID":"FBgn0053126","EGF_Stimulus":"0.65"},{"ID":"FBgn0005624","EGF_Stimulus":"0.81"},{"ID":"FBgn0032188","EGF_Stimulus":"0.37"},{"ID":"FBgn0046873","EGF_Stimulus":"1"},{"ID":"FBgn0040588","EGF_Stimulus":"-1.23"},{"ID":"FBgn0004595","EGF_Stimulus":"0.77"},{"ID":"FBgn0034769","EGF_Stimulus":"0.84"},{"ID":"FBgn0031214","EGF_Stimulus":"-1.19"},{"ID":"FBgn0031826","EGF_Stimulus":"-1.33"},{"ID":"FBgn0038073","EGF_Stimulus":"0.67"},{"ID":"FBgn0010741","EGF_Stimulus":"-0.51"},{"ID":"FBgn0053062","EGF_Stimulus":"-1.21"},{"ID":"FBgn0038285","EGF_Stimulus":"-0.31"},{"ID":"FBgn0031815","EGF_Stimulus":"-0.31"},{"ID":"FBgn0002783","EGF_Stimulus":"0.43"},{"ID":"FBgn0034878","EGF_Stimulus":"-4.12"},{"ID":"FBgn0053230","EGF_Stimulus":"0.61"},{"ID":"FBgn0050197","EGF_Stimulus":"-1.92"},{"ID":"FBgn0033724","EGF_Stimulus":"0.96"},{"ID":"FBgn0032673","EGF_Stimulus":"-1.21"},{"ID":"FBgn0036648","EGF_Stimulus":"-0.59"},{"ID":"FBgn0053145","EGF_Stimulus":"-0.2"},{"ID":"FBgn0037411","EGF_Stimulus":"-0.67"},{"ID":"FBgn0051200","EGF_Stimulus":"0.64"},{"ID":"FBgn0033322","EGF_Stimulus":"0.81"},{"ID":"FBgn0033785","EGF_Stimulus":"-1.09"},{"ID":"FBgn0050099","EGF_Stimulus":"0.42"},{"ID":"FBgn0030591","EGF_Stimulus":"0.99"},{"ID":"FBgn0028866","EGF_Stimulus":"1.64"},{"ID":"FBgn0029094","EGF_Stimulus":"-1.69"},{"ID":"FBgn0037622","EGF_Stimulus":"0.55"},{"ID":"FBgn0037030","EGF_Stimulus":"0.78"},{"ID":"FBgn0030854","EGF_Stimulus":"-0.79"},{"ID":"FBgn0000504","EGF_Stimulus":"0.38"},{"ID":"FBgn0062517","EGF_Stimulus":"0.89"},{"ID":"FBgn0033257","EGF_Stimulus":"0.46"},{"ID":"FBgn0037007","EGF_Stimulus":"0.73"},{"ID":"FBgn0014865","EGF_Stimulus":"0.89"},{"ID":"FBgn0030951","EGF_Stimulus":"-0.63"},{"ID":"FBgn0045442","EGF_Stimulus":"-0.48"},{"ID":"FBgn0028871","EGF_Stimulus":"-1.4"},{"ID":"FBgn0039932","EGF_Stimulus":"-1.04"},{"ID":"FBgn0040228","EGF_Stimulus":"1.12"},{"ID":"FBgn0034785","EGF_Stimulus":"-1.15"},{"ID":"FBgn0027548","EGF_Stimulus":"1.42"},{"ID":"FBgn0039411","EGF_Stimulus":"0.75"},{"ID":"FBgn0002948","EGF_Stimulus":"0.81"},{"ID":"FBgn0023515","EGF_Stimulus":"0.15"},{"ID":"FBgn0039244","EGF_Stimulus":"-1.09"},{"ID":"FBgn0050047","EGF_Stimulus":"0.56"},{"ID":"FBgn0034362","EGF_Stimulus":"0.88"},{"ID":"FBgn0015561","EGF_Stimulus":"0.7"},{"ID":"FBgn0038590","EGF_Stimulus":"0.71"},{"ID":"FBgn0035703","EGF_Stimulus":"0.5"},{"ID":"FBgn0027521","EGF_Stimulus":"-1.66"},{"ID":"FBgn0033713","EGF_Stimulus":"-0.66"},{"ID":"FBgn0037730","EGF_Stimulus":"0.43"},{"ID":"FBgn0037116","EGF_Stimulus":"0.79"},{"ID":"FBgn0020235","EGF_Stimulus":"-1.51"},{"ID":"FBgn0034972","EGF_Stimulus":"0.51"},{"ID":"FBgn0035091","EGF_Stimulus":"-0.37"},{"ID":"FBgn0033413","EGF_Stimulus":"0.27"},{"ID":"FBgn0040843","EGF_Stimulus":"0.41"},{"ID":"FBgn0011705","EGF_Stimulus":"0.52"},{"ID":"FBgn0002526","EGF_Stimulus":"0.73"},{"ID":"FBgn0036282","EGF_Stimulus":"-0.44"},{"ID":"FBgn0035024","EGF_Stimulus":"0.68"},{"ID":"FBgn0037254","EGF_Stimulus":"0.81"},{"ID":"FBgn0015360","EGF_Stimulus":"0.87"},{"ID":"FBgn0036193","EGF_Stimulus":"0.29"},{"ID":"FBgn0030183","EGF_Stimulus":"0.8"},{"ID":"FBgn0064225","EGF_Stimulus":"-4.16"},{"ID":"FBgn0259834","EGF_Stimulus":"1.91"},{"ID":"FBgn0036671","EGF_Stimulus":"0.73"},{"ID":"FBgn0000273","EGF_Stimulus":"-0.44"},{"ID":"FBgn0036186","EGF_Stimulus":"0.67"},{"ID":"FBgn0051017","EGF_Stimulus":"-0.96"},{"ID":"FBgn0036801","EGF_Stimulus":"0.62"},{"ID":"FBgn0037637","EGF_Stimulus":"0.22"},{"ID":"FBgn0052459","EGF_Stimulus":"0.75"},{"ID":"FBgn0010391","EGF_Stimulus":"-0.46"},{"ID":"FBgn0054001","EGF_Stimulus":"1.11"},{"ID":"FBgn0011232","EGF_Stimulus":"0.68"},{"ID":"FBgn0035087","EGF_Stimulus":"0.24"},{"ID":"FBgn0013323","EGF_Stimulus":"1.02"},{"ID":"FBgn0060296","EGF_Stimulus":"-1.2"},{"ID":"FBgn0036020","EGF_Stimulus":"1.32"},{"ID":"FBgn0004047","EGF_Stimulus":"-0.76"},{"ID":"FBgn0036466","EGF_Stimulus":"0.98"},{"ID":"FBgn0035611","EGF_Stimulus":"0.61"},{"ID":"FBgn0052452","EGF_Stimulus":"-0.92"},{"ID":"FBgn0259680","EGF_Stimulus":"-0.64"},{"ID":"FBgn0039178","EGF_Stimulus":"0.74"},{"ID":"FBgn0035647","EGF_Stimulus":"0.81"},{"ID":"FBgn0031900","EGF_Stimulus":"-0.23"},{"ID":"FBgn0033592","EGF_Stimulus":"0.36"},{"ID":"FBgn0038007","EGF_Stimulus":"1.24"},{"ID":"FBgn0002607","EGF_Stimulus":"5.6"},{"ID":"FBgn0028899","EGF_Stimulus":"1.1"},{"ID":"FBgn0039730","EGF_Stimulus":"0.66"},{"ID":"FBgn0036920","EGF_Stimulus":"-0.31"},{"ID":"FBgn0014931","EGF_Stimulus":"-1.07"},{"ID":"FBgn0034707","EGF_Stimulus":"1.53"},{"ID":"FBgn0038666","EGF_Stimulus":"0.52"},{"ID":"FBgn0030296","EGF_Stimulus":"0.82"},{"ID":"FBgn0038958","EGF_Stimulus":"0.84"},{"ID":"FBgn0038942","EGF_Stimulus":"-0.6"},{"ID":"FBgn0003134","EGF_Stimulus":"-0.62"},{"ID":"FBgn0029964","EGF_Stimulus":"1.04"},{"ID":"FBgn0034827","EGF_Stimulus":"0.32"},{"ID":"FBgn0086266","EGF_Stimulus":"0.53"},{"ID":"FBgn0002937","EGF_Stimulus":"0.32"},{"ID":"FBgn0035249","EGF_Stimulus":"-0.68"},{"ID":"FBgn0259101","EGF_Stimulus":"-0.74"},{"ID":"FBgn0037229","EGF_Stimulus":"0.45"},{"ID":"FBgn0026179","EGF_Stimulus":"1.27"},{"ID":"FBgn0000119","EGF_Stimulus":"0.38"},{"ID":"FBgn0034071","EGF_Stimulus":"-0.34"},{"ID":"FBgn0036014","EGF_Stimulus":"-0.37"},{"ID":"FBgn0004838","EGF_Stimulus":"-0.44"},{"ID":"FBgn0000317","EGF_Stimulus":"-0.13"},{"ID":"FBgn0040733","EGF_Stimulus":"1.01"},{"ID":"FBgn0030797","EGF_Stimulus":"0.84"},{"ID":"FBgn0002622","EGF_Stimulus":"-4.37"},{"ID":"FBgn0031728","EGF_Stimulus":"-1.04"},{"ID":"FBgn0033317","EGF_Stimulus":"1.31"},{"ID":"FBgn0058006","EGF_Stimulus":"-0.89"},{"ID":"FBgn0037354","EGF_Stimulus":"-0.43"},{"ID":"FBgn0030089","EGF_Stimulus":"-0.75"},{"ID":"FBgn0001215","EGF_Stimulus":"-2.12"},{"ID":"FBgn0038643","EGF_Stimulus":"0.17"},{"ID":"FBgn0030247","EGF_Stimulus":"0.79"},{"ID":"FBgn0043825","EGF_Stimulus":"0.84"},{"ID":"FBgn0042137","EGF_Stimulus":"0.49"},{"ID":"FBgn0039209","EGF_Stimulus":"0.93"},{"ID":"FBgn0029955","EGF_Stimulus":"0.81"},{"ID":"FBgn0039130","EGF_Stimulus":"-0.14"},{"ID":"FBgn0003308","EGF_Stimulus":"-0.63"},{"ID":"FBgn0036254","EGF_Stimulus":"0.35"},{"ID":"FBgn0051044","EGF_Stimulus":"0.66"},{"ID":"FBgn0036621","EGF_Stimulus":"1.55"},{"ID":"FBgn0028583","EGF_Stimulus":"-0.2"},{"ID":"FBgn0032775","EGF_Stimulus":"-0.37"},{"ID":"FBgn0033806","EGF_Stimulus":"0.35"},{"ID":"FBgn0032160","EGF_Stimulus":"1.01"},{"ID":"FBgn0250910","EGF_Stimulus":"-1.15"},{"ID":"FBgn0042650","EGF_Stimulus":"0.64"},{"ID":"FBgn0036733","EGF_Stimulus":"0.91"},{"ID":"FBgn0030105","EGF_Stimulus":"0.57"},{"ID":"FBgn0036016","EGF_Stimulus":"1.14"},{"ID":"FBgn0036471","EGF_Stimulus":"0.66"},{"ID":"FBgn0032127","EGF_Stimulus":"-1.32"},{"ID":"FBgn0036703","EGF_Stimulus":"-1.19"},{"ID":"FBgn0001250","EGF_Stimulus":"-0.94"},{"ID":"FBgn0038887","EGF_Stimulus":"-0.19"},{"ID":"FBgn0030608","EGF_Stimulus":"0.49"},{"ID":"FBgn0032670","EGF_Stimulus":"0.58"},{"ID":"FBgn0261705","EGF_Stimulus":"-1.05"},{"ID":"FBgn0037553","EGF_Stimulus":"-0.08"},{"ID":"FBgn0030097","EGF_Stimulus":"0.45"},{"ID":"FBgn0034803","EGF_Stimulus":"-0.87"},{"ID":"FBgn0028836","EGF_Stimulus":"1.33"},{"ID":"FBgn0032646","EGF_Stimulus":"-0.98"},{"ID":"FBgn0033468","EGF_Stimulus":"0.82"},{"ID":"FBgn0024150","EGF_Stimulus":"1.53"},{"ID":"FBgn0032311","EGF_Stimulus":"1.49"},{"ID":"FBgn0031902","EGF_Stimulus":"1.29"},{"ID":"FBgn0011642","EGF_Stimulus":"0.05"},{"ID":"FBgn0051493","EGF_Stimulus":"-0.92"},{"ID":"FBgn0035704","EGF_Stimulus":"-0.31"},{"ID":"FBgn0051898","EGF_Stimulus":"0.33"},{"ID":"FBgn0031701","EGF_Stimulus":"-0.89"},{"ID":"FBgn0030317","EGF_Stimulus":"-0.95"},{"ID":"FBgn0036978","EGF_Stimulus":"-0.89"},{"ID":"FBgn0022986","EGF_Stimulus":"-0.44"},{"ID":"FBgn0026400","EGF_Stimulus":"0.36"},{"ID":"FBgn0038850","EGF_Stimulus":"0.8"},{"ID":"FBgn0260487","EGF_Stimulus":"-0.99"},{"ID":"FBgn0039733","EGF_Stimulus":"1.22"},{"ID":"FBgn0033787","EGF_Stimulus":"0.67"},{"ID":"FBgn0034989","EGF_Stimulus":"0.21"},{"ID":"FBgn0052351","EGF_Stimulus":"0.47"},{"ID":"FBgn0028833","EGF_Stimulus":"-0.41"},{"ID":"FBgn0085232","EGF_Stimulus":"0.48"},{"ID":"FBgn0259683","EGF_Stimulus":"0.58"},{"ID":"FBgn0260428","EGF_Stimulus":"-0.36"},{"ID":"FBgn0260444","EGF_Stimulus":"1"},{"ID":"FBgn0034488","EGF_Stimulus":"0.72"},{"ID":"FBgn0020399","EGF_Stimulus":"-0.32"},{"ID":"FBgn0039816","EGF_Stimulus":"-0.95"},{"ID":"FBgn0030249","EGF_Stimulus":"-3.04"},{"ID":"FBgn0039611","EGF_Stimulus":"-0.29"},{"ID":"FBgn0023175","EGF_Stimulus":"-1.59"},{"ID":"FBgn0052079","EGF_Stimulus":"0.81"},{"ID":"FBgn0015929","EGF_Stimulus":"-0.01"},{"ID":"FBgn0033714","EGF_Stimulus":"-0.8"},{"ID":"FBgn0034627","EGF_Stimulus":"-0.23"},{"ID":"FBgn0011281","EGF_Stimulus":"0.57"},{"ID":"FBgn0010039","EGF_Stimulus":"0.56"},{"ID":"FBgn0000351","EGF_Stimulus":"-0.39"},{"ID":"FBgn0037980","EGF_Stimulus":"-0.64"},{"ID":"FBgn0005779","EGF_Stimulus":"-0.32"},{"ID":"FBgn0026324","EGF_Stimulus":"0.45"},{"ID":"FBgn0004404","EGF_Stimulus":"-3.08"},{"ID":"FBgn0030898","EGF_Stimulus":"0.93"},{"ID":"FBgn0031545","EGF_Stimulus":"-0.96"},{"ID":"FBgn0087012","EGF_Stimulus":"-1.17"},{"ID":"FBgn0031968","EGF_Stimulus":"0.59"},{"ID":"FBgn0260012","EGF_Stimulus":"0.68"},{"ID":"FBgn0035909","EGF_Stimulus":"-0.92"},{"ID":"FBgn0261016","EGF_Stimulus":"1.07"},{"ID":"FBgn0033793","EGF_Stimulus":"-1.21"},{"ID":"FBgn0003507","EGF_Stimulus":"-0.25"},{"ID":"FBgn0037537","EGF_Stimulus":"-0.25"},{"ID":"FBgn0051014","EGF_Stimulus":"0.79"},{"ID":"FBgn0015602","EGF_Stimulus":"-1.04"},{"ID":"FBgn0029718","EGF_Stimulus":"-1.02"},{"ID":"FBgn0045469","EGF_Stimulus":"1.08"},{"ID":"FBgn0003249","EGF_Stimulus":"0.37"},{"ID":"FBgn0047092","EGF_Stimulus":"-1.56"},{"ID":"FBgn0039413","EGF_Stimulus":"0.56"},{"ID":"FBgn0040575","EGF_Stimulus":"0.57"},{"ID":"FBgn0020270","EGF_Stimulus":"1.01"},{"ID":"FBgn0042094","EGF_Stimulus":"0.66"},{"ID":"FBgn0003062","EGF_Stimulus":"-1.72"},{"ID":"FBgn0032818","EGF_Stimulus":"-0.71"},{"ID":"FBgn0032135","EGF_Stimulus":"0.26"},{"ID":"FBgn0085315","EGF_Stimulus":"1"},{"ID":"FBgn0259244","EGF_Stimulus":"2.38"},{"ID":"FBgn0038080","EGF_Stimulus":"-0.59"},{"ID":"FBgn0010612","EGF_Stimulus":"-2.02"},{"ID":"FBgn0053339","EGF_Stimulus":"1.38"},{"ID":"FBgn0085257","EGF_Stimulus":"-0.27"},{"ID":"FBgn0038891","EGF_Stimulus":"0.51"},{"ID":"FBgn0032689","EGF_Stimulus":"0.98"},{"ID":"FBgn0029839","EGF_Stimulus":"-0.87"},{"ID":"FBgn0034841","EGF_Stimulus":"0.27"},{"ID":"FBgn0025837","EGF_Stimulus":"0.59"},{"ID":"FBgn0051120","EGF_Stimulus":"-0.75"},{"ID":"FBgn0038005","EGF_Stimulus":"1.14"},{"ID":"FBgn0033391","EGF_Stimulus":"0.51"},{"ID":"FBgn0050069","EGF_Stimulus":"1.37"},{"ID":"FBgn0035313","EGF_Stimulus":"-0.44"},{"ID":"FBgn0035299","EGF_Stimulus":"-0.5"},{"ID":"FBgn0030167","EGF_Stimulus":"0.1"},{"ID":"FBgn0051013","EGF_Stimulus":"0.5"},{"ID":"FBgn0052412","EGF_Stimulus":"0.46"},{"ID":"FBgn0040353","EGF_Stimulus":"0.45"},{"ID":"FBgn0035107","EGF_Stimulus":"-1.01"},{"ID":"FBgn0036317","EGF_Stimulus":"-0.78"},{"ID":"FBgn0003714","EGF_Stimulus":"-0.2"},{"ID":"FBgn0037228","EGF_Stimulus":"0.62"},{"ID":"FBgn0261341","EGF_Stimulus":"0.57"},{"ID":"FBgn0029506","EGF_Stimulus":"0.23"},{"ID":"FBgn0033315","EGF_Stimulus":"-0.67"},{"ID":"FBgn0011706","EGF_Stimulus":"-2.54"},{"ID":"FBgn0051363","EGF_Stimulus":"0.95"},{"ID":"FBgn0042213","EGF_Stimulus":"0.15"},{"ID":"FBgn0032863","EGF_Stimulus":"-1.17"},{"ID":"FBgn0030482","EGF_Stimulus":"-0.42"},{"ID":"FBgn0029950","EGF_Stimulus":"0.2"},{"ID":"FBgn0050075","EGF_Stimulus":"0.51"},{"ID":"FBgn0050090","EGF_Stimulus":"1.64"},{"ID":"FBgn0003138","EGF_Stimulus":"-1.99"},{"ID":"FBgn0034493","EGF_Stimulus":"0.64"},{"ID":"FBgn0003961","EGF_Stimulus":"0.92"},{"ID":"FBgn0035207","EGF_Stimulus":"0.39"},{"ID":"FBgn0045073","EGF_Stimulus":"0.95"},{"ID":"FBgn0033753","EGF_Stimulus":"0.43"},{"ID":"FBgn0050034","EGF_Stimulus":"0.3"},{"ID":"FBgn0051406","EGF_Stimulus":"1.15"},{"ID":"FBgn0035111","EGF_Stimulus":"-0.27"},{"ID":"FBgn0034321","EGF_Stimulus":"0.19"},{"ID":"FBgn0031721","EGF_Stimulus":"0.63"},{"ID":"FBgn0031395","EGF_Stimulus":"-0.22"},{"ID":"FBgn0051536","EGF_Stimulus":"1.47"},{"ID":"FBgn0011239","EGF_Stimulus":"-1.62"},{"ID":"FBgn0260436","EGF_Stimulus":"0.64"},{"ID":"FBgn0010265","EGF_Stimulus":"-4.77"},{"ID":"FBgn0038110","EGF_Stimulus":"2.51"},{"ID":"FBgn0029810","EGF_Stimulus":"-1.33"},{"ID":"FBgn0013811","EGF_Stimulus":"0.33"},{"ID":"FBgn0037368","EGF_Stimulus":"0.78"},{"ID":"FBgn0039466","EGF_Stimulus":"-3.58"},{"ID":"FBgn0036948","EGF_Stimulus":"0.44"},{"ID":"FBgn0023514","EGF_Stimulus":"0.71"},{"ID":"FBgn0031737","EGF_Stimulus":"0.16"},{"ID":"FBgn0261606","EGF_Stimulus":"-4.66"},{"ID":"FBgn0035097","EGF_Stimulus":"-0.89"},{"ID":"FBgn0027084","EGF_Stimulus":"1.07"},{"ID":"FBgn0085405","EGF_Stimulus":"1.04"},{"ID":"FBgn0035868","EGF_Stimulus":"0.54"},{"ID":"FBgn0052404","EGF_Stimulus":"-0.98"},{"ID":"FBgn0031213","EGF_Stimulus":"1.15"},{"ID":"FBgn0025808","EGF_Stimulus":"0.49"},{"ID":"FBgn0046113","EGF_Stimulus":"0.77"},{"ID":"FBgn0027660","EGF_Stimulus":"-1.44"},{"ID":"FBgn0031501","EGF_Stimulus":"-0.33"},{"ID":"FBgn0035036","EGF_Stimulus":"0.52"},{"ID":"FBgn0035140","EGF_Stimulus":"-0.52"},{"ID":"FBgn0030952","EGF_Stimulus":"0.6"},{"ID":"FBgn0036805","EGF_Stimulus":"-0.41"},{"ID":"FBgn0041630","EGF_Stimulus":"0.56"},{"ID":"FBgn0033491","EGF_Stimulus":"-0.35"},{"ID":"FBgn0037446","EGF_Stimulus":"-1.86"},{"ID":"FBgn0011747","EGF_Stimulus":"-0.65"},{"ID":"FBgn0030268","EGF_Stimulus":"-0.11"},{"ID":"FBgn0034481","EGF_Stimulus":"1.21"},{"ID":"FBgn0054029","EGF_Stimulus":"-0.71"},{"ID":"FBgn0032551","EGF_Stimulus":"1.37"},{"ID":"FBgn0032022","EGF_Stimulus":"-0.83"},{"ID":"FBgn0035481","EGF_Stimulus":"-0.26"},{"ID":"FBgn0259821","EGF_Stimulus":"0.38"},{"ID":"FBgn0030711","EGF_Stimulus":"-0.7"},{"ID":"FBgn0034198","EGF_Stimulus":"-0.22"},{"ID":"FBgn0037028","EGF_Stimulus":"0.85"},{"ID":"FBgn0031611","EGF_Stimulus":"-0.17"},{"ID":"FBgn0026061","EGF_Stimulus":"0.22"},{"ID":"FBgn0028857","EGF_Stimulus":"0.63"},{"ID":"FBgn0024897","EGF_Stimulus":"-0.9"},{"ID":"FBgn0032723","EGF_Stimulus":"0.86"},{"ID":"FBgn0032143","EGF_Stimulus":"1.16"},{"ID":"FBgn0038144","EGF_Stimulus":"-0.22"},{"ID":"FBgn0052036","EGF_Stimulus":"-0.39"},{"ID":"FBgn0035154","EGF_Stimulus":"1.51"},{"ID":"FBgn0003886","EGF_Stimulus":"-2.81"},{"ID":"FBgn0053303","EGF_Stimulus":"-0.78"},{"ID":"FBgn0040928","EGF_Stimulus":"0.89"},{"ID":"FBgn0033354","EGF_Stimulus":"0.38"},{"ID":"FBgn0046763","EGF_Stimulus":"-2.61"},{"ID":"FBgn0039965","EGF_Stimulus":"1.31"},{"ID":"FBgn0067779","EGF_Stimulus":"1.27"},{"ID":"FBgn0039478","EGF_Stimulus":"0.22"},{"ID":"FBgn0051438","EGF_Stimulus":"1.42"},{"ID":"FBgn0003378","EGF_Stimulus":"0.41"},{"ID":"FBgn0001965","EGF_Stimulus":"-4.07"},{"ID":"FBgn0053109","EGF_Stimulus":"0.47"},{"ID":"FBgn0010403","EGF_Stimulus":"1.03"},{"ID":"FBgn0021873","EGF_Stimulus":"1.26"},{"ID":"FBgn0038798","EGF_Stimulus":"0.2"},{"ID":"FBgn0000280","EGF_Stimulus":"-1.47"},{"ID":"FBgn0000318","EGF_Stimulus":"0.8"},{"ID":"FBgn0040684","EGF_Stimulus":"-1.04"},{"ID":"FBgn0027599","EGF_Stimulus":"1.49"},{"ID":"FBgn0032663","EGF_Stimulus":"-0.3"},{"ID":"FBgn0033589","EGF_Stimulus":"-1.77"},{"ID":"FBgn0044011","EGF_Stimulus":"0.81"},{"ID":"FBgn0039728","EGF_Stimulus":"0.47"},{"ID":"FBgn0052074","EGF_Stimulus":"-1.63"},{"ID":"FBgn0033422","EGF_Stimulus":"0.16"},{"ID":"FBgn0011802","EGF_Stimulus":"0.48"},{"ID":"FBgn0051821","EGF_Stimulus":"-0.44"},{"ID":"FBgn0259227","EGF_Stimulus":"-2.11"},{"ID":"FBgn0034566","EGF_Stimulus":"-1.48"},{"ID":"FBgn0027490","EGF_Stimulus":"-0.57"},{"ID":"FBgn0038697","EGF_Stimulus":"1.02"},{"ID":"FBgn0261119","EGF_Stimulus":"1.32"},{"ID":"FBgn0032741","EGF_Stimulus":"0.17"},{"ID":"FBgn0260941","EGF_Stimulus":"0.21"},{"ID":"FBgn0033874","EGF_Stimulus":"-0.08"},{"ID":"FBgn0031961","EGF_Stimulus":"0.92"},{"ID":"FBgn0031708","EGF_Stimulus":"-0.38"},{"ID":"FBgn0029915","EGF_Stimulus":"0.33"},{"ID":"FBgn0027590","EGF_Stimulus":"-0.6"},{"ID":"FBgn0260407","EGF_Stimulus":"-1.26"},{"ID":"FBgn0032252","EGF_Stimulus":"0.65"},{"ID":"FBgn0015546","EGF_Stimulus":"-0.59"},{"ID":"FBgn0033890","EGF_Stimulus":"0.63"},{"ID":"FBgn0030300","EGF_Stimulus":"-0.27"},{"ID":"FBgn0024320","EGF_Stimulus":"0.91"},{"ID":"FBgn0038651","EGF_Stimulus":"0.77"},{"ID":"FBgn0027496","EGF_Stimulus":"0.4"},{"ID":"FBgn0010607","EGF_Stimulus":"0.93"},{"ID":"FBgn0001091","EGF_Stimulus":"-1.18"},{"ID":"FBgn0021742","EGF_Stimulus":"-0.54"},{"ID":"FBgn0260859","EGF_Stimulus":"0.36"},{"ID":"FBgn0022936","EGF_Stimulus":"-0.75"},{"ID":"FBgn0003124","EGF_Stimulus":"-2.06"},{"ID":"FBgn0033149","EGF_Stimulus":"0.62"},{"ID":"FBgn0002921","EGF_Stimulus":"-0.76"},{"ID":"FBgn0030090","EGF_Stimulus":"0.34"},{"ID":"FBgn0037937","EGF_Stimulus":"0.6"},{"ID":"FBgn0003499","EGF_Stimulus":"0.33"},{"ID":"FBgn0037296","EGF_Stimulus":"1.31"},{"ID":"FBgn0052111","EGF_Stimulus":"-0.38"},{"ID":"FBgn0011274","EGF_Stimulus":"-1"},{"ID":"FBgn0036499","EGF_Stimulus":"-0.78"},{"ID":"FBgn0038311","EGF_Stimulus":"0.28"},{"ID":"FBgn0037623","EGF_Stimulus":"0.65"},{"ID":"FBgn0053531","EGF_Stimulus":"1.72"},{"ID":"FBgn0000064","EGF_Stimulus":"-2.35"},{"ID":"FBgn0038431","EGF_Stimulus":"1.13"},{"ID":"FBgn0083960","EGF_Stimulus":"0.92"},{"ID":"FBgn0033112","EGF_Stimulus":"-0.54"},{"ID":"FBgn0030931","EGF_Stimulus":"0.44"},{"ID":"FBgn0052511","EGF_Stimulus":"2.04"},{"ID":"FBgn0038772","EGF_Stimulus":"1.51"},{"ID":"FBgn0034755","EGF_Stimulus":"0.23"},{"ID":"FBgn0028662","EGF_Stimulus":"-0.87"},{"ID":"FBgn0027088","EGF_Stimulus":"-0.27"},{"ID":"FBgn0032693","EGF_Stimulus":"0.86"},{"ID":"FBgn0041241","EGF_Stimulus":"0.39"},{"ID":"FBgn0052732","EGF_Stimulus":"1.35"},{"ID":"FBgn0045063","EGF_Stimulus":"0.68"},{"ID":"FBgn0050044","EGF_Stimulus":"0.39"},{"ID":"FBgn0025820","EGF_Stimulus":"0.23"},{"ID":"FBgn0036921","EGF_Stimulus":"0.57"},{"ID":"FBgn0031000","EGF_Stimulus":"0.66"},{"ID":"FBgn0037713","EGF_Stimulus":"0.86"},{"ID":"FBgn0029830","EGF_Stimulus":"0.56"},{"ID":"FBgn0052847","EGF_Stimulus":"0.59"},{"ID":"FBgn0038365","EGF_Stimulus":"0.54"},{"ID":"FBgn0030467","EGF_Stimulus":"1.89"},{"ID":"FBgn0053468","EGF_Stimulus":"0.67"},{"ID":"FBgn0038087","EGF_Stimulus":"0.92"},{"ID":"FBgn0032793","EGF_Stimulus":"-0.68"},{"ID":"FBgn0037836","EGF_Stimulus":"0.26"},{"ID":"FBgn0034438","EGF_Stimulus":"1.38"},{"ID":"FBgn0038129","EGF_Stimulus":"0.83"},{"ID":"FBgn0032519","EGF_Stimulus":"0.58"},{"ID":"FBgn0033302","EGF_Stimulus":"-0.38"},{"ID":"FBgn0083919","EGF_Stimulus":"0.07"},{"ID":"FBgn0031835","EGF_Stimulus":"-1.52"},{"ID":"FBgn0035040","EGF_Stimulus":"0.9"},{"ID":"FBgn0034322","EGF_Stimulus":"0.89"},{"ID":"FBgn0000326","EGF_Stimulus":"-0.39"},{"ID":"FBgn0085229","EGF_Stimulus":"1.88"},{"ID":"FBgn0031190","EGF_Stimulus":"-1.58"},{"ID":"FBgn0000038","EGF_Stimulus":"0.86"},{"ID":"FBgn0039085","EGF_Stimulus":"-0.73"},{"ID":"FBgn0050381","EGF_Stimulus":"0.92"},{"ID":"FBgn0052282","EGF_Stimulus":"-0.7"},{"ID":"FBgn0034433","EGF_Stimulus":"0.59"},{"ID":"FBgn0033529","EGF_Stimulus":"0.69"},{"ID":"FBgn0052199","EGF_Stimulus":"-0.87"},{"ID":"FBgn0029887","EGF_Stimulus":"-0.77"},{"ID":"FBgn0051560","EGF_Stimulus":"0.65"},{"ID":"FBgn0038478","EGF_Stimulus":"0.36"},{"ID":"FBgn0014869","EGF_Stimulus":"-0.31"},{"ID":"FBgn0038279","EGF_Stimulus":"0.81"},{"ID":"FBgn0035047","EGF_Stimulus":"-0.45"},{"ID":"FBgn0002564","EGF_Stimulus":"0.64"},{"ID":"FBgn0050263","EGF_Stimulus":"-1.39"},{"ID":"FBgn0030309","EGF_Stimulus":"-1.22"},{"ID":"FBgn0036897","EGF_Stimulus":"-0.95"},{"ID":"FBgn0039930","EGF_Stimulus":"-0.3"},{"ID":"FBgn0035479","EGF_Stimulus":"1.45"},{"ID":"FBgn0052190","EGF_Stimulus":"-0.71"},{"ID":"FBgn0004603","EGF_Stimulus":"-6.03"},{"ID":"FBgn0003890","EGF_Stimulus":"-1.3"},{"ID":"FBgn0039562","EGF_Stimulus":"-0.99"},{"ID":"FBgn0051958","EGF_Stimulus":"1.13"},{"ID":"FBgn0028947","EGF_Stimulus":"-0.84"},{"ID":"FBgn0085457","EGF_Stimulus":"0.21"},{"ID":"FBgn0026170","EGF_Stimulus":"-1.51"},{"ID":"FBgn0042105","EGF_Stimulus":"1.2"},{"ID":"FBgn0030202","EGF_Stimulus":"-0.29"},{"ID":"FBgn0024179","EGF_Stimulus":"0.32"},{"ID":"FBgn0027872","EGF_Stimulus":"-0.09"},{"ID":"FBgn0020251","EGF_Stimulus":"-0.82"},{"ID":"FBgn0053156","EGF_Stimulus":"1.14"},{"ID":"FBgn0054057","EGF_Stimulus":"0.49"},{"ID":"FBgn0031314","EGF_Stimulus":"-0.24"},{"ID":"FBgn0050338","EGF_Stimulus":"-0.46"},{"ID":"FBgn0038209","EGF_Stimulus":"0.71"},{"ID":"FBgn0032169","EGF_Stimulus":"1.31"},{"ID":"FBgn0000636","EGF_Stimulus":"1.02"},{"ID":"FBgn0015298","EGF_Stimulus":"0.4"},{"ID":"FBgn0035643","EGF_Stimulus":"2.19"},{"ID":"FBgn0030364","EGF_Stimulus":"-0.61"},{"ID":"FBgn0037810","EGF_Stimulus":"-0.69"},{"ID":"FBgn0004429","EGF_Stimulus":"0.91"},{"ID":"FBgn0051146","EGF_Stimulus":"1.21"},{"ID":"FBgn0002878","EGF_Stimulus":"-0.42"},{"ID":"FBgn0034998","EGF_Stimulus":"0.63"},{"ID":"FBgn0030291","EGF_Stimulus":"0.23"},{"ID":"FBgn0053218","EGF_Stimulus":"-0.74"},{"ID":"FBgn0034722","EGF_Stimulus":"0.04"},{"ID":"FBgn0003328","EGF_Stimulus":"1.52"},{"ID":"FBgn0032495","EGF_Stimulus":"0.8"},{"ID":"FBgn0001147","EGF_Stimulus":"0.98"},{"ID":"FBgn0002673","EGF_Stimulus":"0.92"},{"ID":"FBgn0030449","EGF_Stimulus":"-0.09"},{"ID":"FBgn0031597","EGF_Stimulus":"0.33"},{"ID":"FBgn0032886","EGF_Stimulus":"-0.8"},{"ID":"FBgn0261089","EGF_Stimulus":"-0.49"},{"ID":"FBgn0036659","EGF_Stimulus":"0.75"},{"ID":"FBgn0051870","EGF_Stimulus":"-1.16"},{"ID":"FBgn0051961","EGF_Stimulus":"-0.7"},{"ID":"FBgn0036106","EGF_Stimulus":"0.96"},{"ID":"FBgn0031188","EGF_Stimulus":"0.25"},{"ID":"FBgn0037526","EGF_Stimulus":"-0.95"},{"ID":"FBgn0043470","EGF_Stimulus":"0.2"},{"ID":"FBgn0034650","EGF_Stimulus":"0.08"},{"ID":"FBgn0039870","EGF_Stimulus":"0.27"},{"ID":"FBgn0034187","EGF_Stimulus":"1.51"},{"ID":"FBgn0085239","EGF_Stimulus":"0.64"},{"ID":"FBgn0030638","EGF_Stimulus":"-0.95"},{"ID":"FBgn0051321","EGF_Stimulus":"0.57"},{"ID":"FBgn0034419","EGF_Stimulus":"-1.39"},{"ID":"FBgn0037321","EGF_Stimulus":"0.53"},{"ID":"FBgn0038236","EGF_Stimulus":"0.34"},{"ID":"FBgn0032299","EGF_Stimulus":"0.63"},{"ID":"FBgn0050419","EGF_Stimulus":"1.56"},{"ID":"FBgn0038074","EGF_Stimulus":"0.98"},{"ID":"FBgn0035592","EGF_Stimulus":"-0.11"},{"ID":"FBgn0031759","EGF_Stimulus":"0.83"},{"ID":"FBgn0036714","EGF_Stimulus":"0.67"},{"ID":"FBgn0050015","EGF_Stimulus":"1.3"},{"ID":"FBgn0053096","EGF_Stimulus":"-1.38"},{"ID":"FBgn0053087","EGF_Stimulus":"0.6"},{"ID":"FBgn0259794","EGF_Stimulus":"-1.08"},{"ID":"FBgn0042712","EGF_Stimulus":"1.25"},{"ID":"FBgn0016698","EGF_Stimulus":"1.07"},{"ID":"FBgn0260659","EGF_Stimulus":"-0.91"},{"ID":"FBgn0030617","EGF_Stimulus":"0.44"},{"ID":"FBgn0033481","EGF_Stimulus":"0.38"},{"ID":"FBgn0002932","EGF_Stimulus":"-0.5"},{"ID":"FBgn0026085","EGF_Stimulus":"-0.43"},{"ID":"FBgn0037788","EGF_Stimulus":"-0.17"},{"ID":"FBgn0034352","EGF_Stimulus":"0.37"},{"ID":"FBgn0085556","EGF_Stimulus":"1.28"},{"ID":"FBgn0030386","EGF_Stimulus":"0.74"},{"ID":"FBgn0029726","EGF_Stimulus":"-1.37"},{"ID":"FBgn0261611","EGF_Stimulus":"0.58"},{"ID":"FBgn0035293","EGF_Stimulus":"-0.4"},{"ID":"FBgn0052246","EGF_Stimulus":"-0.42"},{"ID":"FBgn0037857","EGF_Stimulus":"1.43"},{"ID":"FBgn0063497","EGF_Stimulus":"-0.84"},{"ID":"FBgn0030800","EGF_Stimulus":"-0.36"},{"ID":"FBgn0035439","EGF_Stimulus":"0.72"},{"ID":"FBgn0030283","EGF_Stimulus":"-0.37"},{"ID":"FBgn0031850","EGF_Stimulus":"-1.09"},{"ID":"FBgn0037304","EGF_Stimulus":"-0.14"},{"ID":"FBgn0052755","EGF_Stimulus":"0.76"},{"ID":"FBgn0001139","EGF_Stimulus":"-0.48"},{"ID":"FBgn0034010","EGF_Stimulus":"-1.51"},{"ID":"FBgn0040271","EGF_Stimulus":"-0.26"},{"ID":"FBgn0052544","EGF_Stimulus":"-0.7"},{"ID":"FBgn0034602","EGF_Stimulus":"0.4"},{"ID":"FBgn0261555","EGF_Stimulus":"-0.78"},{"ID":"FBgn0035328","EGF_Stimulus":"0.54"},{"ID":"FBgn0043783","EGF_Stimulus":"1.45"},{"ID":"FBgn0023496","EGF_Stimulus":"0.6"},{"ID":"FBgn0017551","EGF_Stimulus":"-2.6"},{"ID":"FBgn0015300","EGF_Stimulus":"0.42"},{"ID":"FBgn0044809","EGF_Stimulus":"1.37"},{"ID":"FBgn0013673","EGF_Stimulus":"0.85"},{"ID":"FBgn0030164","EGF_Stimulus":"-0.73"},{"ID":"FBgn0036598","EGF_Stimulus":"0.73"},{"ID":"FBgn0030605","EGF_Stimulus":"-0.51"},{"ID":"FBgn0000618","EGF_Stimulus":"0.57"},{"ID":"FBgn0004387","EGF_Stimulus":"-2.68"},{"ID":"FBgn0038016","EGF_Stimulus":"-4.51"},{"ID":"FBgn0036433","EGF_Stimulus":"1.03"},{"ID":"FBgn0052554","EGF_Stimulus":"0.78"},{"ID":"FBgn0051164","EGF_Stimulus":"-0.42"},{"ID":"FBgn0030647","EGF_Stimulus":"-0.21"},{"ID":"FBgn0030331","EGF_Stimulus":"-0.29"},{"ID":"FBgn0042102","EGF_Stimulus":"-0.56"},{"ID":"FBgn0000146","EGF_Stimulus":"0.65"},{"ID":"FBgn0040729","EGF_Stimulus":"0.83"},{"ID":"FBgn0054024","EGF_Stimulus":"-0.55"},{"ID":"FBgn0033842","EGF_Stimulus":"0.94"},{"ID":"FBgn0000414","EGF_Stimulus":"-1.29"},{"ID":"FBgn0038745","EGF_Stimulus":"-1.09"},{"ID":"FBgn0041231","EGF_Stimulus":"1.24"},{"ID":"FBgn0045486","EGF_Stimulus":"1.99"},{"ID":"FBgn0033039","EGF_Stimulus":"1.26"},{"ID":"FBgn0086408","EGF_Stimulus":"-0.43"},{"ID":"FBgn0031636","EGF_Stimulus":"-0.94"},{"ID":"FBgn0032955","EGF_Stimulus":"0.92"},{"ID":"FBgn0020258","EGF_Stimulus":"-1.82"},{"ID":"FBgn0036440","EGF_Stimulus":"-1.21"},{"ID":"FBgn0023001","EGF_Stimulus":"0.39"},{"ID":"FBgn0038980","EGF_Stimulus":"1.33"},{"ID":"FBgn0033364","EGF_Stimulus":"-1.4"},{"ID":"FBgn0035416","EGF_Stimulus":"1.23"},{"ID":"FBgn0086686","EGF_Stimulus":"-0.92"},{"ID":"FBgn0031981","EGF_Stimulus":"-0.19"},{"ID":"FBgn0041711","EGF_Stimulus":"-0.45"},{"ID":"FBgn0035281","EGF_Stimulus":"-0.22"},{"ID":"FBgn0261261","EGF_Stimulus":"0.73"},{"ID":"FBgn0044810","EGF_Stimulus":"0.54"},{"ID":"FBgn0030929","EGF_Stimulus":"-0.33"},{"ID":"FBgn0063667","EGF_Stimulus":"-1.45"},{"ID":"FBgn0052533","EGF_Stimulus":"-0.98"},{"ID":"FBgn0259961","EGF_Stimulus":"0.86"},{"ID":"FBgn0030645","EGF_Stimulus":"-0.88"},{"ID":"FBgn0039315","EGF_Stimulus":"0.62"},{"ID":"FBgn0035088","EGF_Stimulus":"1.31"},{"ID":"FBgn0036916","EGF_Stimulus":"-2.36"},{"ID":"FBgn0011206","EGF_Stimulus":"0.67"},{"ID":"FBgn0033708","EGF_Stimulus":"-0.57"},{"ID":"FBgn0039306","EGF_Stimulus":"0.58"},{"ID":"FBgn0039298","EGF_Stimulus":"5.38"},{"ID":"FBgn0011661","EGF_Stimulus":"0.73"},{"ID":"FBgn0032602","EGF_Stimulus":"1.07"},{"ID":"FBgn0030663","EGF_Stimulus":"-1.29"},{"ID":"FBgn0020912","EGF_Stimulus":"0.75"},{"ID":"FBgn0042092","EGF_Stimulus":"0.31"},{"ID":"FBgn0015926","EGF_Stimulus":"-0.76"},{"ID":"FBgn0039291","EGF_Stimulus":"0.39"},{"ID":"FBgn0036544","EGF_Stimulus":"-0.65"},{"ID":"FBgn0032225","EGF_Stimulus":"1.29"},{"ID":"FBgn0000276","EGF_Stimulus":"0.6"},{"ID":"FBgn0034513","EGF_Stimulus":"0.59"},{"ID":"FBgn0031403","EGF_Stimulus":"0.85"},{"ID":"FBgn0030272","EGF_Stimulus":"-0.33"},{"ID":"FBgn0025390","EGF_Stimulus":"1.04"},{"ID":"FBgn0028336","EGF_Stimulus":"1.8"},{"ID":"FBgn0038530","EGF_Stimulus":"-0.18"},{"ID":"FBgn0034135","EGF_Stimulus":"0.55"},{"ID":"FBgn0003204","EGF_Stimulus":"-1.43"},{"ID":"FBgn0032192","EGF_Stimulus":"0.56"},{"ID":"FBgn0053471","EGF_Stimulus":"-0.81"},{"ID":"FBgn0053679","EGF_Stimulus":"0.59"},{"ID":"FBgn0013762","EGF_Stimulus":"1.49"},{"ID":"FBgn0032484","EGF_Stimulus":"-0.1"},{"ID":"FBgn0030716","EGF_Stimulus":"0.14"},{"ID":"FBgn0030178","EGF_Stimulus":"0.42"},{"ID":"FBgn0086367","EGF_Stimulus":"0.88"},{"ID":"FBgn0027836","EGF_Stimulus":"0.61"},{"ID":"FBgn0259194","EGF_Stimulus":"-0.86"},{"ID":"FBgn0038702","EGF_Stimulus":"0.27"},{"ID":"FBgn0034938","EGF_Stimulus":"0.84"},{"ID":"FBgn0038519","EGF_Stimulus":"0.65"},{"ID":"FBgn0085298","EGF_Stimulus":"-0.68"},{"ID":"FBgn0001137","EGF_Stimulus":"1.15"},{"ID":"FBgn0033749","EGF_Stimulus":"1.76"},{"ID":"FBgn0003209","EGF_Stimulus":"-4.42"},{"ID":"FBgn0024728","EGF_Stimulus":"0.8"},{"ID":"FBgn0035380","EGF_Stimulus":"0.26"},{"ID":"FBgn0027549","EGF_Stimulus":"-1.01"},{"ID":"FBgn0039738","EGF_Stimulus":"-0.29"},{"ID":"FBgn0053302","EGF_Stimulus":"-0.63"},{"ID":"FBgn0026058","EGF_Stimulus":"-0.52"},{"ID":"FBgn0034243","EGF_Stimulus":"-0.72"},{"ID":"FBgn0036511","EGF_Stimulus":"0.81"},{"ID":"FBgn0030811","EGF_Stimulus":"-0.88"},{"ID":"FBgn0029827","EGF_Stimulus":"0.59"},{"ID":"FBgn0003450","EGF_Stimulus":"-1.21"},{"ID":"FBgn0032719","EGF_Stimulus":"0.63"},{"ID":"FBgn0033443","EGF_Stimulus":"0.22"},{"ID":"FBgn0004106","EGF_Stimulus":"-2.36"},{"ID":"FBgn0039527","EGF_Stimulus":"0.29"},{"ID":"FBgn0037973","EGF_Stimulus":"0.88"},{"ID":"FBgn0032973","EGF_Stimulus":"0.15"},{"ID":"FBgn0026397","EGF_Stimulus":"1.43"},{"ID":"FBgn0030826","EGF_Stimulus":"-0.49"},{"ID":"FBgn0027619","EGF_Stimulus":"-0.37"},{"ID":"FBgn0030344","EGF_Stimulus":"1"},{"ID":"FBgn0040989","EGF_Stimulus":"0.69"},{"ID":"FBgn0040796","EGF_Stimulus":"-1.1"},{"ID":"FBgn0035078","EGF_Stimulus":"-0.85"},{"ID":"FBgn0035805","EGF_Stimulus":"1.09"},{"ID":"FBgn0010438","EGF_Stimulus":"-0.13"},{"ID":"FBgn0086909","EGF_Stimulus":"1.35"},{"ID":"FBgn0036964","EGF_Stimulus":"0.8"},{"ID":"FBgn0051524","EGF_Stimulus":"-1.89"},{"ID":"FBgn0013773","EGF_Stimulus":"-0.96"},{"ID":"FBgn0261556","EGF_Stimulus":"0.81"},{"ID":"FBgn0051357","EGF_Stimulus":"-0.57"},{"ID":"FBgn0039771","EGF_Stimulus":"-0.24"},{"ID":"FBgn0013308","EGF_Stimulus":"0.77"},{"ID":"FBgn0005660","EGF_Stimulus":"1.03"},{"ID":"FBgn0037468","EGF_Stimulus":"1"},{"ID":"FBgn0085433","EGF_Stimulus":"2.48"},{"ID":"FBgn0032209","EGF_Stimulus":"0.92"},{"ID":"FBgn0035455","EGF_Stimulus":"0.59"},{"ID":"FBgn0038296","EGF_Stimulus":"0.15"},{"ID":"FBgn0026570","EGF_Stimulus":"0.46"},{"ID":"FBgn0052669","EGF_Stimulus":"0.91"},{"ID":"FBgn0031216","EGF_Stimulus":"0.88"},{"ID":"FBgn0001269","EGF_Stimulus":"-0.98"},{"ID":"FBgn0036670","EGF_Stimulus":"0.44"},{"ID":"FBgn0053192","EGF_Stimulus":"1.08"},{"ID":"FBgn0015772","EGF_Stimulus":"-0.78"},{"ID":"FBgn0027868","EGF_Stimulus":"-0.92"},{"ID":"FBgn0039639","EGF_Stimulus":"1.19"},{"ID":"FBgn0011277","EGF_Stimulus":"0.51"},{"ID":"FBgn0035670","EGF_Stimulus":"0.22"},{"ID":"FBgn0039886","EGF_Stimulus":"0.45"},{"ID":"FBgn0036031","EGF_Stimulus":"0.86"},{"ID":"FBgn0037250","EGF_Stimulus":"0.89"},{"ID":"FBgn0033183","EGF_Stimulus":"1.09"},{"ID":"FBgn0029067","EGF_Stimulus":"-0.49"},{"ID":"FBgn0031333","EGF_Stimulus":"-0.99"},{"ID":"FBgn0030352","EGF_Stimulus":"0.6"},{"ID":"FBgn0034558","EGF_Stimulus":"0.94"},{"ID":"FBgn0000709","EGF_Stimulus":"-0.71"},{"ID":"FBgn0045761","EGF_Stimulus":"2.13"},{"ID":"FBgn0261570","EGF_Stimulus":"0.96"},{"ID":"FBgn0050488","EGF_Stimulus":"-1.19"},{"ID":"FBgn0033570","EGF_Stimulus":"-0.97"},{"ID":"FBgn0031283","EGF_Stimulus":"0.35"},{"ID":"FBgn0015024","EGF_Stimulus":"1.45"},{"ID":"FBgn0038993","EGF_Stimulus":"-0.76"},{"ID":"FBgn0038161","EGF_Stimulus":"1.01"},{"ID":"FBgn0037581","EGF_Stimulus":"0.12"},{"ID":"FBgn0034277","EGF_Stimulus":"-0.77"},{"ID":"FBgn0038494","EGF_Stimulus":"0.9"},{"ID":"FBgn0010747","EGF_Stimulus":"0.27"},{"ID":"FBgn0035090","EGF_Stimulus":"-1.74"},{"ID":"FBgn0039655","EGF_Stimulus":"-0.47"},{"ID":"FBgn0050410","EGF_Stimulus":"1.2"},{"ID":"FBgn0014396","EGF_Stimulus":"-0.79"},{"ID":"FBgn0000556","EGF_Stimulus":"-3.57"},{"ID":"FBgn0005616","EGF_Stimulus":"0.85"},{"ID":"FBgn0035568","EGF_Stimulus":"0.72"},{"ID":"FBgn0259185","EGF_Stimulus":"1.51"},{"ID":"FBgn0031134","EGF_Stimulus":"-0.78"},{"ID":"FBgn0003009","EGF_Stimulus":"1.07"},{"ID":"FBgn0083990","EGF_Stimulus":"-0.71"},{"ID":"FBgn0036505","EGF_Stimulus":"0.73"},{"ID":"FBgn0063649","EGF_Stimulus":"1.47"},{"ID":"FBgn0001230","EGF_Stimulus":"0.59"},{"ID":"FBgn0032811","EGF_Stimulus":"0.18"},{"ID":"FBgn0028687","EGF_Stimulus":"-1.92"},{"ID":"FBgn0038924","EGF_Stimulus":"1.18"},{"ID":"FBgn0019830","EGF_Stimulus":"-0.54"},{"ID":"FBgn0031876","EGF_Stimulus":"-0.52"},{"ID":"FBgn0003423","EGF_Stimulus":"0.35"},{"ID":"FBgn0023519","EGF_Stimulus":"1.09"},{"ID":"FBgn0053512","EGF_Stimulus":"1.18"},{"ID":"FBgn0037345","EGF_Stimulus":"-0.07"},{"ID":"FBgn0034744","EGF_Stimulus":"-0.64"},{"ID":"FBgn0033591","EGF_Stimulus":"0.14"},{"ID":"FBgn0050411","EGF_Stimulus":"-0.4"},{"ID":"FBgn0051266","EGF_Stimulus":"-0.74"},{"ID":"FBgn0015282","EGF_Stimulus":"-4.51"},{"ID":"FBgn0034061","EGF_Stimulus":"1.03"},{"ID":"FBgn0086904","EGF_Stimulus":"-1.21"},{"ID":"FBgn0032213","EGF_Stimulus":"-0.75"},{"ID":"FBgn0052475","EGF_Stimulus":"1.05"},{"ID":"FBgn0039007","EGF_Stimulus":"-0.16"},{"ID":"FBgn0026415","EGF_Stimulus":"-0.68"},{"ID":"FBgn0028900","EGF_Stimulus":"-1.14"},{"ID":"FBgn0039376","EGF_Stimulus":"-0.2"},{"ID":"FBgn0033087","EGF_Stimulus":"-0.87"},{"ID":"FBgn0037430","EGF_Stimulus":"0.53"},{"ID":"FBgn0027585","EGF_Stimulus":"0.73"},{"ID":"FBgn0035621","EGF_Stimulus":"0.6"},{"ID":"FBgn0041623","EGF_Stimulus":"-1.16"},{"ID":"FBgn0036990","EGF_Stimulus":"0.31"},{"ID":"FBgn0053493","EGF_Stimulus":"0.91"},{"ID":"FBgn0053170","EGF_Stimulus":"0.91"},{"ID":"FBgn0027565","EGF_Stimulus":"0.96"},{"ID":"FBgn0038213","EGF_Stimulus":"-0.57"},{"ID":"FBgn0051223","EGF_Stimulus":"-0.55"},{"ID":"FBgn0040341","EGF_Stimulus":"-0.67"},{"ID":"FBgn0030015","EGF_Stimulus":"0.66"},{"ID":"FBgn0035213","EGF_Stimulus":"-0.8"},{"ID":"FBgn0051644","EGF_Stimulus":"-1.88"},{"ID":"FBgn0034576","EGF_Stimulus":"0.76"},{"ID":"FBgn0036145","EGF_Stimulus":"0.42"},{"ID":"FBgn0035434","EGF_Stimulus":"-0.8"},{"ID":"FBgn0038469","EGF_Stimulus":"-0.02"},{"ID":"FBgn0035916","EGF_Stimulus":"-0.8"},{"ID":"FBgn0015035","EGF_Stimulus":"-0.33"},{"ID":"FBgn0035543","EGF_Stimulus":"0.86"},{"ID":"FBgn0032424","EGF_Stimulus":"1.44"},{"ID":"FBgn0052484","EGF_Stimulus":"1.19"},{"ID":"FBgn0046247","EGF_Stimulus":"2.51"},{"ID":"FBgn0030963","EGF_Stimulus":"0.89"},{"ID":"FBgn0052792","EGF_Stimulus":"-0.91"},{"ID":"FBgn0033737","EGF_Stimulus":"0.96"},{"ID":"FBgn0036118","EGF_Stimulus":"-0.17"},{"ID":"FBgn0028954","EGF_Stimulus":"0.32"},{"ID":"FBgn0086347","EGF_Stimulus":"0.69"},{"ID":"FBgn0033062","EGF_Stimulus":"-1.03"},{"ID":"FBgn0040828","EGF_Stimulus":"0.75"},{"ID":"FBgn0086911","EGF_Stimulus":"1.73"},{"ID":"FBgn0044049","EGF_Stimulus":"0.5"},{"ID":"FBgn0031114","EGF_Stimulus":"1.22"},{"ID":"FBgn0035532","EGF_Stimulus":"1.49"},{"ID":"FBgn0250746","EGF_Stimulus":"-2.52"},{"ID":"FBgn0039348","EGF_Stimulus":"0.8"},{"ID":"FBgn0086445","EGF_Stimulus":"0.6"},{"ID":"FBgn0052024","EGF_Stimulus":"0.15"},{"ID":"FBgn0032582","EGF_Stimulus":"0.18"},{"ID":"FBgn0051777","EGF_Stimulus":"-1.19"},{"ID":"FBgn0031871","EGF_Stimulus":"0.08"},{"ID":"FBgn0036328","EGF_Stimulus":"1.22"},{"ID":"FBgn0029535","EGF_Stimulus":"-0.27"},{"ID":"FBgn0046887","EGF_Stimulus":"0.71"},{"ID":"FBgn0037288","EGF_Stimulus":"-0.45"},{"ID":"FBgn0053233","EGF_Stimulus":"0.72"},{"ID":"FBgn0038122","EGF_Stimulus":"-0.22"},{"ID":"FBgn0031732","EGF_Stimulus":"-1.36"},{"ID":"FBgn0010051","EGF_Stimulus":"-1.04"},{"ID":"FBgn0024993","EGF_Stimulus":"-0.89"},{"ID":"FBgn0039553","EGF_Stimulus":"0.76"},{"ID":"FBgn0031764","EGF_Stimulus":"0.69"},{"ID":"FBgn0036299","EGF_Stimulus":"1.16"},{"ID":"FBgn0034054","EGF_Stimulus":"0.98"},{"ID":"FBgn0051076","EGF_Stimulus":"-0.25"},{"ID":"FBgn0030734","EGF_Stimulus":"0.99"},{"ID":"FBgn0030431","EGF_Stimulus":"1.47"},{"ID":"FBgn0031036","EGF_Stimulus":"0.16"},{"ID":"FBgn0085331","EGF_Stimulus":"-1.1"},{"ID":"FBgn0052698","EGF_Stimulus":"-1.63"},{"ID":"FBgn0031434","EGF_Stimulus":"-0.75"},{"ID":"FBgn0036180","EGF_Stimulus":"-1.07"},{"ID":"FBgn0033798","EGF_Stimulus":"-0.22"},{"ID":"FBgn0036603","EGF_Stimulus":"0.46"},{"ID":"FBgn0051549","EGF_Stimulus":"0.57"},{"ID":"FBgn0001259","EGF_Stimulus":"-0.62"},{"ID":"FBgn0028699","EGF_Stimulus":"1.08"},{"ID":"FBgn0250754","EGF_Stimulus":"0.48"},{"ID":"FBgn0051459","EGF_Stimulus":"1.79"},{"ID":"FBgn0029783","EGF_Stimulus":"0.43"},{"ID":"FBgn0085431","EGF_Stimulus":"0.65"},{"ID":"FBgn0033701","EGF_Stimulus":"0.17"},{"ID":"FBgn0039494","EGF_Stimulus":"0.24"},{"ID":"FBgn0028669","EGF_Stimulus":"-0.26"},{"ID":"FBgn0031808","EGF_Stimulus":"0.42"},{"ID":"FBgn0053056","EGF_Stimulus":"-1.44"},{"ID":"FBgn0031608","EGF_Stimulus":"-0.38"},{"ID":"FBgn0029817","EGF_Stimulus":"0.3"},{"ID":"FBgn0030630","EGF_Stimulus":"-0.68"},{"ID":"FBgn0026380","EGF_Stimulus":"-2.28"},{"ID":"FBgn0027287","EGF_Stimulus":"-0.91"},{"ID":"FBgn0029754","EGF_Stimulus":"0.95"},{"ID":"FBgn0042696","EGF_Stimulus":"-0.37"},{"ID":"FBgn0037939","EGF_Stimulus":"0.66"},{"ID":"FBgn0037402","EGF_Stimulus":"-1.17"},{"ID":"FBgn0032588","EGF_Stimulus":"-0.76"},{"ID":"FBgn0039829","EGF_Stimulus":"-0.84"},{"ID":"FBgn0031992","EGF_Stimulus":"-0.86"},{"ID":"FBgn0034126","EGF_Stimulus":"0.33"},{"ID":"FBgn0031803","EGF_Stimulus":"1.76"},{"ID":"FBgn0031777","EGF_Stimulus":"0.65"},{"ID":"FBgn0052302","EGF_Stimulus":"0.37"},{"ID":"FBgn0035603","EGF_Stimulus":"-0.13"},{"ID":"FBgn0037783","EGF_Stimulus":"-1.74"},{"ID":"FBgn0020767","EGF_Stimulus":"0.6"},{"ID":"FBgn0022246","EGF_Stimulus":"0.58"},{"ID":"FBgn0259918","EGF_Stimulus":"-0.24"},{"ID":"FBgn0030478","EGF_Stimulus":"1.51"},{"ID":"FBgn0031441","EGF_Stimulus":"1.25"},{"ID":"FBgn0000591","EGF_Stimulus":"0.55"},{"ID":"FBgn0037684","EGF_Stimulus":"-3.07"},{"ID":"FBgn0259112","EGF_Stimulus":"0.67"},{"ID":"FBgn0030554","EGF_Stimulus":"0.72"},{"ID":"FBgn0085309","EGF_Stimulus":"-1.78"},{"ID":"FBgn0083959","EGF_Stimulus":"-1.6"},{"ID":"FBgn0052250","EGF_Stimulus":"-1.79"},{"ID":"FBgn0050371","EGF_Stimulus":"-1.25"},{"ID":"FBgn0052445","EGF_Stimulus":"-1.41"},{"ID":"FBgn0030005","EGF_Stimulus":"1.17"},{"ID":"FBgn0039139","EGF_Stimulus":"0.47"},{"ID":"FBgn0038869","EGF_Stimulus":"2.31"},{"ID":"FBgn0025806","EGF_Stimulus":"-0.53"},{"ID":"FBgn0037405","EGF_Stimulus":"-1.49"},{"ID":"FBgn0004598","EGF_Stimulus":"0.4"},{"ID":"FBgn0032525","EGF_Stimulus":"-1.63"},{"ID":"FBgn0036323","EGF_Stimulus":"0.37"},{"ID":"FBgn0083986","EGF_Stimulus":"1.1"},{"ID":"FBgn0039180","EGF_Stimulus":"0.63"},{"ID":"FBgn0030777","EGF_Stimulus":"-0.42"},{"ID":"FBgn0250835","EGF_Stimulus":"0.63"},{"ID":"FBgn0039799","EGF_Stimulus":"0.5"},{"ID":"FBgn0032376","EGF_Stimulus":"0.75"},{"ID":"FBgn0030945","EGF_Stimulus":"-1.47"},{"ID":"FBgn0034540","EGF_Stimulus":"2.28"},{"ID":"FBgn0036857","EGF_Stimulus":"-0.76"},{"ID":"FBgn0260987","EGF_Stimulus":"-0.49"},{"ID":"FBgn0035791","EGF_Stimulus":"-1"},{"ID":"FBgn0034595","EGF_Stimulus":"-0.26"},{"ID":"FBgn0050181","EGF_Stimulus":"-0.81"},{"ID":"FBgn0052588","EGF_Stimulus":"1.71"},{"ID":"FBgn0035782","EGF_Stimulus":"0.21"},{"ID":"FBgn0023129","EGF_Stimulus":"1.51"},{"ID":"FBgn0039621","EGF_Stimulus":"-1.16"},{"ID":"FBgn0037633","EGF_Stimulus":"0.33"},{"ID":"FBgn0031821","EGF_Stimulus":"1.16"},{"ID":"FBgn0052750","EGF_Stimulus":"0.55"},{"ID":"FBgn0041581","EGF_Stimulus":"-0.42"},{"ID":"FBgn0034457","EGF_Stimulus":"1.21"},{"ID":"FBgn0031266","EGF_Stimulus":"-3.78"},{"ID":"FBgn0030991","EGF_Stimulus":"-0.52"},{"ID":"FBgn0033185","EGF_Stimulus":"-0.45"},{"ID":"FBgn0014092","EGF_Stimulus":"0.41"},{"ID":"FBgn0010516","EGF_Stimulus":"-0.57"},{"ID":"FBgn0058178","EGF_Stimulus":"1.22"},{"ID":"FBgn0033879","EGF_Stimulus":"-0.72"},{"ID":"FBgn0037647","EGF_Stimulus":"-0.21"},{"ID":"FBgn0032503","EGF_Stimulus":"-0.87"},{"ID":"FBgn0031895","EGF_Stimulus":"0.23"},{"ID":"FBgn0010314","EGF_Stimulus":"0.74"},{"ID":"FBgn0036765","EGF_Stimulus":"0.79"},{"ID":"FBgn0051148","EGF_Stimulus":"-0.28"},{"ID":"FBgn0013987","EGF_Stimulus":"0.17"},{"ID":"FBgn0053631","EGF_Stimulus":"0.86"},{"ID":"FBgn0020305","EGF_Stimulus":"0.94"},{"ID":"FBgn0033130","EGF_Stimulus":"0.43"},{"ID":"FBgn0050447","EGF_Stimulus":"-0.5"},{"ID":"FBgn0028685","EGF_Stimulus":"-2.29"},{"ID":"FBgn0028490","EGF_Stimulus":"-3.45"},{"ID":"FBgn0004087","EGF_Stimulus":"0.25"},{"ID":"FBgn0259174","EGF_Stimulus":"0.58"},{"ID":"FBgn0259238","EGF_Stimulus":"-1.39"},{"ID":"FBgn0034768","EGF_Stimulus":"-0.88"},{"ID":"FBgn0000629","EGF_Stimulus":"-0.51"},{"ID":"FBgn0260768","EGF_Stimulus":"-0.78"},{"ID":"FBgn0030794","EGF_Stimulus":"0.85"},{"ID":"FBgn0051204","EGF_Stimulus":"0.16"},{"ID":"FBgn0036005","EGF_Stimulus":"1.11"},{"ID":"FBgn0029507","EGF_Stimulus":"0.97"},{"ID":"FBgn0085326","EGF_Stimulus":"-0.3"},{"ID":"FBgn0011817","EGF_Stimulus":"-1.32"},{"ID":"FBgn0085288","EGF_Stimulus":"0.37"},{"ID":"FBgn0086134","EGF_Stimulus":"-3.14"},{"ID":"FBgn0083938","EGF_Stimulus":"-0.33"},{"ID":"FBgn0036732","EGF_Stimulus":"-0.53"},{"ID":"FBgn0030540","EGF_Stimulus":"-1.35"},{"ID":"FBgn0031142","EGF_Stimulus":"-0.38"},{"ID":"FBgn0261259","EGF_Stimulus":"1.18"},{"ID":"FBgn0030671","EGF_Stimulus":"-0.96"},{"ID":"FBgn0032446","EGF_Stimulus":"-0.96"},{"ID":"FBgn0033273","EGF_Stimulus":"-0.22"},{"ID":"FBgn0002528","EGF_Stimulus":"0.76"},{"ID":"FBgn0036617","EGF_Stimulus":"-0.42"},{"ID":"FBgn0029590","EGF_Stimulus":"1.56"},{"ID":"FBgn0040376","EGF_Stimulus":"-0.12"},{"ID":"FBgn0033015","EGF_Stimulus":"-1.86"},{"ID":"FBgn0033241","EGF_Stimulus":"0.33"},{"ID":"FBgn0020620","EGF_Stimulus":"-1.35"},{"ID":"FBgn0035692","EGF_Stimulus":"0.66"},{"ID":"FBgn0034956","EGF_Stimulus":"1.22"},{"ID":"FBgn0030587","EGF_Stimulus":"-0.1"},{"ID":"FBgn0261284","EGF_Stimulus":"1.39"},{"ID":"FBgn0053172","EGF_Stimulus":"0.7"},{"ID":"FBgn0034534","EGF_Stimulus":"0.6"},{"ID":"FBgn0004876","EGF_Stimulus":"-0.97"},{"ID":"FBgn0033115","EGF_Stimulus":"-0.2"},{"ID":"FBgn0035772","EGF_Stimulus":"0.82"},{"ID":"FBgn0035858","EGF_Stimulus":"0.66"},{"ID":"FBgn0031531","EGF_Stimulus":"-0.2"},{"ID":"FBgn0038512","EGF_Stimulus":"0.89"},{"ID":"FBgn0027605","EGF_Stimulus":"-5.28"},{"ID":"FBgn0036246","EGF_Stimulus":"0.55"},{"ID":"FBgn0030318","EGF_Stimulus":"-0.55"},{"ID":"FBgn0036179","EGF_Stimulus":"-1.87"},{"ID":"FBgn0031322","EGF_Stimulus":"0.62"},{"ID":"FBgn0036547","EGF_Stimulus":"-0.43"},{"ID":"FBgn0039075","EGF_Stimulus":"-1.26"},{"ID":"FBgn0031752","EGF_Stimulus":"0.9"},{"ID":"FBgn0034646","EGF_Stimulus":"-5.06"},{"ID":"FBgn0002733","EGF_Stimulus":"0.23"},{"ID":"FBgn0002577","EGF_Stimulus":"-0.94"},{"ID":"FBgn0034876","EGF_Stimulus":"-1.04"},{"ID":"FBgn0050349","EGF_Stimulus":"-0.62"},{"ID":"FBgn0051157","EGF_Stimulus":"-1.07"},{"ID":"FBgn0030993","EGF_Stimulus":"-1.12"},{"ID":"FBgn0058042","EGF_Stimulus":"-0.14"},{"ID":"FBgn0038436","EGF_Stimulus":"0.5"},{"ID":"FBgn0039664","EGF_Stimulus":"-1.25"},{"ID":"FBgn0027529","EGF_Stimulus":"0.54"},{"ID":"FBgn0014849","EGF_Stimulus":"0.89"},{"ID":"FBgn0038631","EGF_Stimulus":"0.28"},{"ID":"FBgn0030770","EGF_Stimulus":"0.4"},{"ID":"FBgn0034761","EGF_Stimulus":"-0.56"},{"ID":"FBgn0038388","EGF_Stimulus":"1"},{"ID":"FBgn0027535","EGF_Stimulus":"0.91"},{"ID":"FBgn0029882","EGF_Stimulus":"-0.54"},{"ID":"FBgn0052695","EGF_Stimulus":"0.56"},{"ID":"FBgn0034221","EGF_Stimulus":"-0.08"},{"ID":"FBgn0029728","EGF_Stimulus":"-0.47"},{"ID":"FBgn0035139","EGF_Stimulus":"0.63"},{"ID":"FBgn0000054","EGF_Stimulus":"2.15"},{"ID":"FBgn0041186","EGF_Stimulus":"0.61"},{"ID":"FBgn0067311","EGF_Stimulus":"0.58"},{"ID":"FBgn0039208","EGF_Stimulus":"-0.69"},{"ID":"FBgn0028526","EGF_Stimulus":"-0.97"},{"ID":"FBgn0051244","EGF_Stimulus":"-1.15"},{"ID":"FBgn0036702","EGF_Stimulus":"-1.17"},{"ID":"FBgn0032751","EGF_Stimulus":"1.5"},{"ID":"FBgn0029685","EGF_Stimulus":"0.83"},{"ID":"FBgn0050384","EGF_Stimulus":"-0.66"},{"ID":"FBgn0035358","EGF_Stimulus":"0.21"},{"ID":"FBgn0039671","EGF_Stimulus":"0.25"},{"ID":"FBgn0037144","EGF_Stimulus":"1.26"},{"ID":"FBgn0029523","EGF_Stimulus":"0.77"},{"ID":"FBgn0053454","EGF_Stimulus":"1.65"},{"ID":"FBgn0261046","EGF_Stimulus":"1.02"},{"ID":"FBgn0026239","EGF_Stimulus":"-1.17"},{"ID":"FBgn0051697","EGF_Stimulus":"-1.64"},{"ID":"FBgn0027091","EGF_Stimulus":"-0.28"},{"ID":"FBgn0033998","EGF_Stimulus":"1.37"},{"ID":"FBgn0031070","EGF_Stimulus":"0.1"},{"ID":"FBgn0034476","EGF_Stimulus":"-1.38"},{"ID":"FBgn0029769","EGF_Stimulus":"-0.54"},{"ID":"FBgn0005677","EGF_Stimulus":"0.66"},{"ID":"FBgn0001321","EGF_Stimulus":"0.84"},{"ID":"FBgn0035429","EGF_Stimulus":"-1.17"},{"ID":"FBgn0036654","EGF_Stimulus":"0.72"},{"ID":"FBgn0036610","EGF_Stimulus":"-0.4"},{"ID":"FBgn0024958","EGF_Stimulus":"0.87"},{"ID":"FBgn0011584","EGF_Stimulus":"0.87"},{"ID":"FBgn0038221","EGF_Stimulus":"-0.67"},{"ID":"FBgn0037589","EGF_Stimulus":"0.17"},{"ID":"FBgn0032358","EGF_Stimulus":"-0.24"},{"ID":"FBgn0010803","EGF_Stimulus":"-1.31"},{"ID":"FBgn0039217","EGF_Stimulus":"-0.5"},{"ID":"FBgn0035364","EGF_Stimulus":"0.39"},{"ID":"FBgn0040297","EGF_Stimulus":"-0.84"},{"ID":"FBgn0031986","EGF_Stimulus":"-0.52"},{"ID":"FBgn0039237","EGF_Stimulus":"-0.36"},{"ID":"FBgn0031893","EGF_Stimulus":"-0.93"},{"ID":"FBgn0038183","EGF_Stimulus":"-0.97"},{"ID":"FBgn0040290","EGF_Stimulus":"-0.47"},{"ID":"FBgn0038018","EGF_Stimulus":"-0.86"},{"ID":"FBgn0033827","EGF_Stimulus":"-1.25"},{"ID":"FBgn0039676","EGF_Stimulus":"0.17"},{"ID":"FBgn0020389","EGF_Stimulus":"0.69"},{"ID":"FBgn0259147","EGF_Stimulus":"0.86"},{"ID":"FBgn0036428","EGF_Stimulus":"-0.39"},{"ID":"FBgn0053481","EGF_Stimulus":"-1.59"},{"ID":"FBgn0036141","EGF_Stimulus":"1.01"},{"ID":"FBgn0085374","EGF_Stimulus":"0.45"},{"ID":"FBgn0032247","EGF_Stimulus":"-0.24"},{"ID":"FBgn0036824","EGF_Stimulus":"0.79"},{"ID":"FBgn0037501","EGF_Stimulus":"0.3"},{"ID":"FBgn0037108","EGF_Stimulus":"0.59"},{"ID":"FBgn0036490","EGF_Stimulus":"0.3"},{"ID":"FBgn0020618","EGF_Stimulus":"-0.6"},{"ID":"FBgn0041105","EGF_Stimulus":"1.1"},{"ID":"FBgn0040252","EGF_Stimulus":"0.82"},{"ID":"FBgn0037011","EGF_Stimulus":"0.46"},{"ID":"FBgn0034903","EGF_Stimulus":"1.07"},{"ID":"FBgn0032124","EGF_Stimulus":"0.36"},{"ID":"FBgn0031824","EGF_Stimulus":"0.43"},{"ID":"FBgn0035539","EGF_Stimulus":"1.13"},{"ID":"FBgn0005533","EGF_Stimulus":"-2.95"},{"ID":"FBgn0037003","EGF_Stimulus":"0.97"},{"ID":"FBgn0032040","EGF_Stimulus":"1.3"},{"ID":"FBgn0036410","EGF_Stimulus":"-0.81"},{"ID":"FBgn0038708","EGF_Stimulus":"-1.61"},{"ID":"FBgn0031128","EGF_Stimulus":"0.62"},{"ID":"FBgn0053116","EGF_Stimulus":"-1.25"},{"ID":"FBgn0011559","EGF_Stimulus":"-0.22"},{"ID":"FBgn0052463","EGF_Stimulus":"-1.05"},{"ID":"FBgn0033906","EGF_Stimulus":"0.31"},{"ID":"FBgn0037678","EGF_Stimulus":"-0.93"},{"ID":"FBgn0038424","EGF_Stimulus":"-1.13"},{"ID":"FBgn0034665","EGF_Stimulus":"0.64"},{"ID":"FBgn0039282","EGF_Stimulus":"0.45"},{"ID":"FBgn0052762","EGF_Stimulus":"0.8"},{"ID":"FBgn0024352","EGF_Stimulus":"0.28"},{"ID":"FBgn0050495","EGF_Stimulus":"0.57"},{"ID":"FBgn0037993","EGF_Stimulus":"0.46"},{"ID":"FBgn0004110","EGF_Stimulus":"-0.47"},{"ID":"FBgn0024293","EGF_Stimulus":"-0.17"},{"ID":"FBgn0039722","EGF_Stimulus":"-0.26"},{"ID":"FBgn0015040","EGF_Stimulus":"0.76"},{"ID":"FBgn0040628","EGF_Stimulus":"0.8"},{"ID":"FBgn0023479","EGF_Stimulus":"-1.31"},{"ID":"FBgn0051388","EGF_Stimulus":"0.86"},{"ID":"FBgn0031186","EGF_Stimulus":"1.45"},{"ID":"FBgn0000043","EGF_Stimulus":"-1.62"},{"ID":"FBgn0031940","EGF_Stimulus":"1.21"},{"ID":"FBgn0037422","EGF_Stimulus":"1.36"},{"ID":"FBgn0050364","EGF_Stimulus":"0.47"},{"ID":"FBgn0037539","EGF_Stimulus":"-1.26"},{"ID":"FBgn0032981","EGF_Stimulus":"0.72"},{"ID":"FBgn0038539","EGF_Stimulus":"-0.94"},{"ID":"FBgn0051636","EGF_Stimulus":"-0.97"},{"ID":"FBgn0027348","EGF_Stimulus":"-3.32"},{"ID":"FBgn0051184","EGF_Stimulus":"1.18"},{"ID":"FBgn0030121","EGF_Stimulus":"-0.91"},{"ID":"FBgn0029924","EGF_Stimulus":"-1.09"},{"ID":"FBgn0024943","EGF_Stimulus":"-1.28"},{"ID":"FBgn0004394","EGF_Stimulus":"1.28"},{"ID":"FBgn0032625","EGF_Stimulus":"1.14"},{"ID":"FBgn0051659","EGF_Stimulus":"1.01"},{"ID":"FBgn0039507","EGF_Stimulus":"0.73"},{"ID":"FBgn0035610","EGF_Stimulus":"-0.97"},{"ID":"FBgn0036094","EGF_Stimulus":"-0.39"},{"ID":"FBgn0027515","EGF_Stimulus":"-2.55"},{"ID":"FBgn0030459","EGF_Stimulus":"1.16"},{"ID":"FBgn0053640","EGF_Stimulus":"0.29"},{"ID":"FBgn0038947","EGF_Stimulus":"0.19"},{"ID":"FBgn0011554","EGF_Stimulus":"-0.27"},{"ID":"FBgn0261813","EGF_Stimulus":"-1.07"},{"ID":"FBgn0035617","EGF_Stimulus":"1.57"},{"ID":"FBgn0034294","EGF_Stimulus":"-1.06"},{"ID":"FBgn0031469","EGF_Stimulus":"-1.76"},{"ID":"FBgn0085302","EGF_Stimulus":"-0.47"},{"ID":"FBgn0037128","EGF_Stimulus":"0.99"},{"ID":"FBgn0028926","EGF_Stimulus":"-1.42"},{"ID":"FBgn0028424","EGF_Stimulus":"-0.59"},{"ID":"FBgn0024330","EGF_Stimulus":"1.04"},{"ID":"FBgn0016053","EGF_Stimulus":"0.85"},{"ID":"FBgn0033856","EGF_Stimulus":"0.46"},{"ID":"FBgn0026371","EGF_Stimulus":"-0.42"},{"ID":"FBgn0000477","EGF_Stimulus":"0.47"},{"ID":"FBgn0032276","EGF_Stimulus":"1.27"},{"ID":"FBgn0035852","EGF_Stimulus":"0.32"},{"ID":"FBgn0062978","EGF_Stimulus":"-1.77"},{"ID":"FBgn0039849","EGF_Stimulus":"-2.16"},{"ID":"FBgn0032804","EGF_Stimulus":"0.36"},{"ID":"FBgn0036995","EGF_Stimulus":"-1.01"},{"ID":"FBgn0038464","EGF_Stimulus":"-1.19"},{"ID":"FBgn0036794","EGF_Stimulus":"1.29"},{"ID":"FBgn0051832","EGF_Stimulus":"2.05"},{"ID":"FBgn0259168","EGF_Stimulus":"1.35"},{"ID":"FBgn0015553","EGF_Stimulus":"1.2"},{"ID":"FBgn0041195","EGF_Stimulus":"-1.69"},{"ID":"FBgn0051647","EGF_Stimulus":"0.35"},{"ID":"FBgn0053124","EGF_Stimulus":"0.7"},{"ID":"FBgn0038901","EGF_Stimulus":"0.58"},{"ID":"FBgn0037449","EGF_Stimulus":"-0.55"},{"ID":"FBgn0034824","EGF_Stimulus":"-0.83"},{"ID":"FBgn0261065","EGF_Stimulus":"-1.21"},{"ID":"FBgn0039069","EGF_Stimulus":"-0.32"},{"ID":"FBgn0036935","EGF_Stimulus":"-0.8"},{"ID":"FBgn0036125","EGF_Stimulus":"0.16"},{"ID":"FBgn0050355","EGF_Stimulus":"-0.51"},{"ID":"FBgn0030834","EGF_Stimulus":"0.38"},{"ID":"FBgn0021847","EGF_Stimulus":"0.24"},{"ID":"FBgn0032006","EGF_Stimulus":"3.45"},{"ID":"FBgn0033268","EGF_Stimulus":"0.36"},{"ID":"FBgn0014464","EGF_Stimulus":"0.88"},{"ID":"FBgn0034105","EGF_Stimulus":"-0.63"},{"ID":"FBgn0038105","EGF_Stimulus":"1.54"},{"ID":"FBgn0035933","EGF_Stimulus":"0.9"},{"ID":"FBgn0035711","EGF_Stimulus":"-0.38"},{"ID":"FBgn0036580","EGF_Stimulus":"2.73"},{"ID":"FBgn0039190","EGF_Stimulus":"-0.77"},{"ID":"FBgn0033271","EGF_Stimulus":"-0.62"},{"ID":"FBgn0036771","EGF_Stimulus":"0.6"},{"ID":"FBgn0033955","EGF_Stimulus":"0.23"},{"ID":"FBgn0039000","EGF_Stimulus":"-0.57"},{"ID":"FBgn0004587","EGF_Stimulus":"0.95"},{"ID":"FBgn0261930","EGF_Stimulus":"0.55"},{"ID":"FBgn0250874","EGF_Stimulus":"-0.56"},{"ID":"FBgn0043535","EGF_Stimulus":"-1.46"},{"ID":"FBgn0030039","EGF_Stimulus":"-1.63"},{"ID":"FBgn0004636","EGF_Stimulus":"-1.12"},{"ID":"FBgn0034144","EGF_Stimulus":"-0.86"},{"ID":"FBgn0051176","EGF_Stimulus":"1.04"},{"ID":"FBgn0064237","EGF_Stimulus":"0.33"},{"ID":"FBgn0250824","EGF_Stimulus":"0.96"},{"ID":"FBgn0086697","EGF_Stimulus":"-2"},{"ID":"FBgn0034392","EGF_Stimulus":"-0.1"},{"ID":"FBgn0032740","EGF_Stimulus":"-1.05"},{"ID":"FBgn0051664","EGF_Stimulus":"1.26"},{"ID":"FBgn0037707","EGF_Stimulus":"1.56"},{"ID":"FBgn0260635","EGF_Stimulus":"1.89"},{"ID":"FBgn0039026","EGF_Stimulus":"3.34"},{"ID":"FBgn0032783","EGF_Stimulus":"-0.54"},{"ID":"FBgn0029589","EGF_Stimulus":"1.06"},{"ID":"FBgn0261797","EGF_Stimulus":"1.16"},{"ID":"FBgn0033137","EGF_Stimulus":"-1.21"},{"ID":"FBgn0036263","EGF_Stimulus":"-0.39"},{"ID":"FBgn0260396","EGF_Stimulus":"0.32"},{"ID":"FBgn0038346","EGF_Stimulus":"0.35"},{"ID":"FBgn0032851","EGF_Stimulus":"-0.17"},{"ID":"FBgn0033515","EGF_Stimulus":"-1.59"},{"ID":"FBgn0033954","EGF_Stimulus":"0.77"},{"ID":"FBgn0003747","EGF_Stimulus":"-0.3"},{"ID":"FBgn0085192","EGF_Stimulus":"-1.69"},{"ID":"FBgn0035707","EGF_Stimulus":"0.61"},{"ID":"FBgn0261803","EGF_Stimulus":"0.85"},{"ID":"FBgn0039669","EGF_Stimulus":"-0.51"},{"ID":"FBgn0032530","EGF_Stimulus":"-0.14"},{"ID":"FBgn0035907","EGF_Stimulus":"0.63"},{"ID":"FBgn0029157","EGF_Stimulus":"0.21"},{"ID":"FBgn0032264","EGF_Stimulus":"-0.86"},{"ID":"FBgn0015663","EGF_Stimulus":"-0.39"},{"ID":"FBgn0034318","EGF_Stimulus":"0.68"},{"ID":"FBgn0016070","EGF_Stimulus":"-0.37"},{"ID":"FBgn0259711","EGF_Stimulus":"-0.36"},{"ID":"FBgn0029935","EGF_Stimulus":"-0.68"},{"ID":"FBgn0035844","EGF_Stimulus":"0.85"},{"ID":"FBgn0260779","EGF_Stimulus":"1.77"},{"ID":"FBgn0051826","EGF_Stimulus":"0.87"},{"ID":"FBgn0003655","EGF_Stimulus":"1.02"},{"ID":"FBgn0029596","EGF_Stimulus":"1.39"},{"ID":"FBgn0050395","EGF_Stimulus":"0.44"},{"ID":"FBgn0004554","EGF_Stimulus":"0.81"},{"ID":"FBgn0032632","EGF_Stimulus":"-1.29"},{"ID":"FBgn0005561","EGF_Stimulus":"0.26"},{"ID":"FBgn0031566","EGF_Stimulus":"0.64"},{"ID":"FBgn0030452","EGF_Stimulus":"0.75"},{"ID":"FBgn0039197","EGF_Stimulus":"0.31"},{"ID":"FBgn0033248","EGF_Stimulus":"-0.58"},{"ID":"FBgn0050468","EGF_Stimulus":"-1.5"},{"ID":"FBgn0036349","EGF_Stimulus":"0.96"},{"ID":"FBgn0002521","EGF_Stimulus":"0.6"},{"ID":"FBgn0000281","EGF_Stimulus":"-0.02"},{"ID":"FBgn0035399","EGF_Stimulus":"0.46"},{"ID":"FBgn0038858","EGF_Stimulus":"1.32"},{"ID":"FBgn0261239","EGF_Stimulus":"-1.43"},{"ID":"FBgn0024973","EGF_Stimulus":"0.82"},{"ID":"FBgn0052594","EGF_Stimulus":"0.86"},{"ID":"FBgn0027378","EGF_Stimulus":"-1.38"},{"ID":"FBgn0016641","EGF_Stimulus":"-0.88"},{"ID":"FBgn0259213","EGF_Stimulus":"1.4"},{"ID":"FBgn0041234","EGF_Stimulus":"-1.06"},{"ID":"FBgn0031849","EGF_Stimulus":"1.23"},{"ID":"FBgn0261270","EGF_Stimulus":"-0.71"},{"ID":"FBgn0031081","EGF_Stimulus":"0.5"},{"ID":"FBgn0037418","EGF_Stimulus":"1.46"},{"ID":"FBgn0036462","EGF_Stimulus":"0.93"},{"ID":"FBgn0031519","EGF_Stimulus":"0.73"},{"ID":"FBgn0003313","EGF_Stimulus":"1.56"},{"ID":"FBgn0032883","EGF_Stimulus":"-1.75"},{"ID":"FBgn0037202","EGF_Stimulus":"0.65"},{"ID":"FBgn0026428","EGF_Stimulus":"0.22"},{"ID":"FBgn0039854","EGF_Stimulus":"0.37"},{"ID":"FBgn0028515","EGF_Stimulus":"0.42"},{"ID":"FBgn0034500","EGF_Stimulus":"1.36"},{"ID":"FBgn0005658","EGF_Stimulus":"0.78"},{"ID":"FBgn0036628","EGF_Stimulus":"0.99"},{"ID":"FBgn0035169","EGF_Stimulus":"0.48"},{"ID":"FBgn0051674","EGF_Stimulus":"-0.48"},{"ID":"FBgn0039743","EGF_Stimulus":"0.94"},{"ID":"FBgn0031785","EGF_Stimulus":"-1.33"},{"ID":"FBgn0015269","EGF_Stimulus":"-0.66"},{"ID":"FBgn0031118","EGF_Stimulus":"-1.87"},{"ID":"FBgn0024189","EGF_Stimulus":"1.08"},{"ID":"FBgn0038037","EGF_Stimulus":"1.25"},{"ID":"FBgn0032054","EGF_Stimulus":"0.12"},{"ID":"FBgn0038363","EGF_Stimulus":"-0.45"},{"ID":"FBgn0037660","EGF_Stimulus":"0.52"},{"ID":"FBgn0039435","EGF_Stimulus":"-0.3"},{"ID":"FBgn0032228","EGF_Stimulus":"0.8"},{"ID":"FBgn0004885","EGF_Stimulus":"0.53"},{"ID":"FBgn0042132","EGF_Stimulus":"-1.17"},{"ID":"FBgn0052425","EGF_Stimulus":"0.68"},{"ID":"FBgn0035545","EGF_Stimulus":"0.65"},{"ID":"FBgn0053337","EGF_Stimulus":"0.46"},{"ID":"FBgn0259748","EGF_Stimulus":"0.35"},{"ID":"FBgn0037570","EGF_Stimulus":"0.71"},{"ID":"FBgn0034794","EGF_Stimulus":"-1.93"},{"ID":"FBgn0027280","EGF_Stimulus":"-0.83"},{"ID":"FBgn0035833","EGF_Stimulus":"0.99"},{"ID":"FBgn0037279","EGF_Stimulus":"1.28"},{"ID":"FBgn0002787","EGF_Stimulus":"-2.66"},{"ID":"FBgn0038878","EGF_Stimulus":"0.73"},{"ID":"FBgn0025629","EGF_Stimulus":"1.16"},{"ID":"FBgn0031651","EGF_Stimulus":"0.49"},{"ID":"FBgn0034383","EGF_Stimulus":"-0.84"},{"ID":"FBgn0035160","EGF_Stimulus":"-0.26"},{"ID":"FBgn0014011","EGF_Stimulus":"-0.77"},{"ID":"FBgn0031351","EGF_Stimulus":"1.28"},{"ID":"FBgn0052182","EGF_Stimulus":"0.15"},{"ID":"FBgn0024754","EGF_Stimulus":"0.44"},{"ID":"FBgn0029663","EGF_Stimulus":"-0.56"},{"ID":"FBgn0029703","EGF_Stimulus":"0.5"},{"ID":"FBgn0032181","EGF_Stimulus":"-0.09"},{"ID":"FBgn0032717","EGF_Stimulus":"-0.5"},{"ID":"FBgn0025638","EGF_Stimulus":"-3.56"},{"ID":"FBgn0038056","EGF_Stimulus":"-0.24"},{"ID":"FBgn0028664","EGF_Stimulus":"1.38"},{"ID":"FBgn0050409","EGF_Stimulus":"0.07"},{"ID":"FBgn0037772","EGF_Stimulus":"0.97"},{"ID":"FBgn0038966","EGF_Stimulus":"-0.4"},{"ID":"FBgn0040011","EGF_Stimulus":"0.32"},{"ID":"FBgn0032910","EGF_Stimulus":"0.59"},{"ID":"FBgn0035383","EGF_Stimulus":"1.12"},{"ID":"FBgn0261379","EGF_Stimulus":"-2.67"},{"ID":"FBgn0032467","EGF_Stimulus":"1.22"},{"ID":"FBgn0033261","EGF_Stimulus":"0.63"},{"ID":"FBgn0037244","EGF_Stimulus":"1.13"},{"ID":"FBgn0031493","EGF_Stimulus":"-1.61"},{"ID":"FBgn0004465","EGF_Stimulus":"-0.74"},{"ID":"FBgn0052226","EGF_Stimulus":"0.27"},{"ID":"FBgn0011669","EGF_Stimulus":"-1.1"},{"ID":"FBgn0000032","EGF_Stimulus":"1.55"},{"ID":"FBgn0053060","EGF_Stimulus":"1.47"},{"ID":"FBgn0010382","EGF_Stimulus":"-4.59"},{"ID":"FBgn0052138","EGF_Stimulus":"1.29"},{"ID":"FBgn0032732","EGF_Stimulus":"1.17"},{"ID":"FBgn0034509","EGF_Stimulus":"0.86"},{"ID":"FBgn0261708","EGF_Stimulus":"1.17"},{"ID":"FBgn0039107","EGF_Stimulus":"-0.55"},{"ID":"FBgn0040813","EGF_Stimulus":"0.4"},{"ID":"FBgn0026149","EGF_Stimulus":"-0.64"},{"ID":"FBgn0032397","EGF_Stimulus":"0.39"},{"ID":"FBgn0021967","EGF_Stimulus":"-1.3"},{"ID":"FBgn0052181","EGF_Stimulus":"0.89"},{"ID":"FBgn0025635","EGF_Stimulus":"0.14"},{"ID":"FBgn0037164","EGF_Stimulus":"0.49"},{"ID":"FBgn0037239","EGF_Stimulus":"0.72"},{"ID":"FBgn0033207","EGF_Stimulus":"0.05"},{"ID":"FBgn0051551","EGF_Stimulus":"-1.84"},{"ID":"FBgn0032008","EGF_Stimulus":"-1.06"},{"ID":"FBgn0038419","EGF_Stimulus":"1.18"},{"ID":"FBgn0037817","EGF_Stimulus":"-1.34"},{"ID":"FBgn0034684","EGF_Stimulus":"0.65"},{"ID":"FBgn0053263","EGF_Stimulus":"0.72"},{"ID":"FBgn0004666","EGF_Stimulus":"-0.58"},{"ID":"FBgn0086784","EGF_Stimulus":"-1.5"},{"ID":"FBgn0259831","EGF_Stimulus":"0.61"},{"ID":"FBgn0261914","EGF_Stimulus":"-1.8"},{"ID":"FBgn0042173","EGF_Stimulus":"0.12"},{"ID":"FBgn0085483","EGF_Stimulus":"-0.94"},{"ID":"FBgn0032406","EGF_Stimulus":"0.44"},{"ID":"FBgn0010877","EGF_Stimulus":"-1.1"},{"ID":"FBgn0035152","EGF_Stimulus":"-1.1"},{"ID":"FBgn0000114","EGF_Stimulus":"-0.87"},{"ID":"FBgn0019624","EGF_Stimulus":"-0.78"},{"ID":"FBgn0027597","EGF_Stimulus":"0.74"},{"ID":"FBgn0036950","EGF_Stimulus":"0.45"},{"ID":"FBgn0051441","EGF_Stimulus":"-0.96"},{"ID":"FBgn0035440","EGF_Stimulus":"0.49"},{"ID":"FBgn0250844","EGF_Stimulus":"0.66"},{"ID":"FBgn0035871","EGF_Stimulus":"1.52"},{"ID":"FBgn0026873","EGF_Stimulus":"0.14"},{"ID":"FBgn0000139","EGF_Stimulus":"0.93"},{"ID":"FBgn0031268","EGF_Stimulus":"0.57"},{"ID":"FBgn0034271","EGF_Stimulus":"0.2"},{"ID":"FBgn0025879","EGF_Stimulus":"-0.67"},{"ID":"FBgn0032577","EGF_Stimulus":"0.83"},{"ID":"FBgn0035649","EGF_Stimulus":"0.31"},{"ID":"FBgn0029997","EGF_Stimulus":"1.44"},{"ID":"FBgn0024983","EGF_Stimulus":"0.72"},{"ID":"FBgn0033544","EGF_Stimulus":"-1.06"},{"ID":"FBgn0260718","EGF_Stimulus":"0.51"},{"ID":"FBgn0032473","EGF_Stimulus":"0.43"},{"ID":"FBgn0036846","EGF_Stimulus":"-0.63"},{"ID":"FBgn0037884","EGF_Stimulus":"1.37"},{"ID":"FBgn0029858","EGF_Stimulus":"0.76"},{"ID":"FBgn0038237","EGF_Stimulus":"0.99"},{"ID":"FBgn0038063","EGF_Stimulus":"-1.26"},{"ID":"FBgn0035727","EGF_Stimulus":"0.81"},{"ID":"FBgn0038597","EGF_Stimulus":"0.79"},{"ID":"FBgn0029980","EGF_Stimulus":"0.66"},{"ID":"FBgn0051496","EGF_Stimulus":"0.76"},{"ID":"FBgn0054033","EGF_Stimulus":"-1.23"},{"ID":"FBgn0261597","EGF_Stimulus":"-2.84"},{"ID":"FBgn0039925","EGF_Stimulus":"0.91"},{"ID":"FBgn0013325","EGF_Stimulus":"-3.72"},{"ID":"FBgn0039979","EGF_Stimulus":"1.8"},{"ID":"FBgn0041579","EGF_Stimulus":"0.57"},{"ID":"FBgn0039331","EGF_Stimulus":"-0.92"},{"ID":"FBgn0038400","EGF_Stimulus":"1.43"},{"ID":"FBgn0259978","EGF_Stimulus":"7.13"},{"ID":"FBgn0038200","EGF_Stimulus":"0.98"},{"ID":"FBgn0012037","EGF_Stimulus":"0.44"},{"ID":"FBgn0039150","EGF_Stimulus":"1.64"},{"ID":"FBgn0003567","EGF_Stimulus":"1.54"},{"ID":"FBgn0036837","EGF_Stimulus":"0.91"},{"ID":"FBgn0053769","EGF_Stimulus":"0.22"},{"ID":"FBgn0032750","EGF_Stimulus":"0.12"},{"ID":"FBgn0038619","EGF_Stimulus":"-0.25"},{"ID":"FBgn0035065","EGF_Stimulus":"0.43"},{"ID":"FBgn0051103","EGF_Stimulus":"1.62"},{"ID":"FBgn0030078","EGF_Stimulus":"0.57"},{"ID":"FBgn0260873","EGF_Stimulus":"0.51"},{"ID":"FBgn0031775","EGF_Stimulus":"1.17"},{"ID":"FBgn0001108","EGF_Stimulus":"-0.48"},{"ID":"FBgn0031974","EGF_Stimulus":"0.42"},{"ID":"FBgn0039620","EGF_Stimulus":"-1.25"},{"ID":"FBgn0040259","EGF_Stimulus":"-0.52"},{"ID":"FBgn0039860","EGF_Stimulus":"0.49"},{"ID":"FBgn0039836","EGF_Stimulus":"-0.32"},{"ID":"FBgn0036760","EGF_Stimulus":"0.43"},{"ID":"FBgn0011217","EGF_Stimulus":"1.2"},{"ID":"FBgn0033623","EGF_Stimulus":"0.3"},{"ID":"FBgn0032269","EGF_Stimulus":"2.07"},{"ID":"FBgn0034191","EGF_Stimulus":"1.14"},{"ID":"FBgn0028703","EGF_Stimulus":"-1.72"},{"ID":"FBgn0027930","EGF_Stimulus":"0.58"},{"ID":"FBgn0031273","EGF_Stimulus":"1.82"},{"ID":"FBgn0035257","EGF_Stimulus":"-1.08"},{"ID":"FBgn0052638","EGF_Stimulus":"0.09"},{"ID":"FBgn0029708","EGF_Stimulus":"1.89"},{"ID":"FBgn0028984","EGF_Stimulus":"-0.81"},{"ID":"FBgn0033374","EGF_Stimulus":"0.28"},{"ID":"FBgn0032934","EGF_Stimulus":"0.45"},{"ID":"FBgn0033081","EGF_Stimulus":"-0.68"},{"ID":"FBgn0015270","EGF_Stimulus":"-0.49"},{"ID":"FBgn0003866","EGF_Stimulus":"-0.37"},{"ID":"FBgn0085459","EGF_Stimulus":"0.66"},{"ID":"FBgn0005670","EGF_Stimulus":"0.85"},{"ID":"FBgn0004449","EGF_Stimulus":"-0.53"},{"ID":"FBgn0051719","EGF_Stimulus":"1.47"},{"ID":"FBgn0039783","EGF_Stimulus":"-0.72"},{"ID":"FBgn0039339","EGF_Stimulus":"-0.33"},{"ID":"FBgn0025679","EGF_Stimulus":"-0.6"},{"ID":"FBgn0014454","EGF_Stimulus":"1.15"},{"ID":"FBgn0005558","EGF_Stimulus":"0.43"},{"ID":"FBgn0051530","EGF_Stimulus":"-0.37"},{"ID":"FBgn0050036","EGF_Stimulus":"-1.93"},{"ID":"FBgn0032770","EGF_Stimulus":"-0.45"},{"ID":"FBgn0033812","EGF_Stimulus":"0.82"},{"ID":"FBgn0032178","EGF_Stimulus":"0.91"},{"ID":"FBgn0025680","EGF_Stimulus":"-0.39"},{"ID":"FBgn0039019","EGF_Stimulus":"-0.89"},{"ID":"FBgn0011224","EGF_Stimulus":"-1.99"},{"ID":"FBgn0039311","EGF_Stimulus":"-0.91"},{"ID":"FBgn0037667","EGF_Stimulus":"-0.7"},{"ID":"FBgn0014395","EGF_Stimulus":"0.4"},{"ID":"FBgn0031909","EGF_Stimulus":"0.95"},{"ID":"FBgn0035593","EGF_Stimulus":"1.66"},{"ID":"FBgn0032184","EGF_Stimulus":"1.41"},{"ID":"FBgn0035813","EGF_Stimulus":"-1.86"},{"ID":"FBgn0037665","EGF_Stimulus":"-1.1"},{"ID":"FBgn0034092","EGF_Stimulus":"0.38"},{"ID":"FBgn0050049","EGF_Stimulus":"-1"},{"ID":"FBgn0004795","EGF_Stimulus":"0.42"},{"ID":"FBgn0053966","EGF_Stimulus":"-0.58"},{"ID":"FBgn0037838","EGF_Stimulus":"-0.87"},{"ID":"FBgn0034986","EGF_Stimulus":"0.55"},{"ID":"FBgn0061200","EGF_Stimulus":"-3.99"},{"ID":"FBgn0035020","EGF_Stimulus":"-1.07"},{"ID":"FBgn0036899","EGF_Stimulus":"-1.16"},{"ID":"FBgn0061197","EGF_Stimulus":"0.72"},{"ID":"FBgn0015509","EGF_Stimulus":"1.98"},{"ID":"FBgn0086604","EGF_Stimulus":"1"},{"ID":"FBgn0036608","EGF_Stimulus":"0.63"},{"ID":"FBgn0034293","EGF_Stimulus":"0.9"},{"ID":"FBgn0036531","EGF_Stimulus":"-0.74"},{"ID":"FBgn0037149","EGF_Stimulus":"0.77"},{"ID":"FBgn0037566","EGF_Stimulus":"-0.41"},{"ID":"FBgn0050485","EGF_Stimulus":"1.05"},{"ID":"FBgn0031470","EGF_Stimulus":"-0.9"},{"ID":"FBgn0036677","EGF_Stimulus":"1.24"},{"ID":"FBgn0038323","EGF_Stimulus":"0.64"},{"ID":"FBgn0016013","EGF_Stimulus":"-0.73"},{"ID":"FBgn0030592","EGF_Stimulus":"1.03"},{"ID":"FBgn0004170","EGF_Stimulus":"-1.07"},{"ID":"FBgn0040102","EGF_Stimulus":"0.58"},{"ID":"FBgn0033808","EGF_Stimulus":"-0.37"},{"ID":"FBgn0027586","EGF_Stimulus":"0.37"},{"ID":"FBgn0030746","EGF_Stimulus":"-0.25"},{"ID":"FBgn0036569","EGF_Stimulus":"0.39"},{"ID":"FBgn0010411","EGF_Stimulus":"-3.46"},{"ID":"FBgn0039427","EGF_Stimulus":"1.89"},{"ID":"FBgn0039420","EGF_Stimulus":"-0.27"},{"ID":"FBgn0038585","EGF_Stimulus":"-1.06"},{"ID":"FBgn0034712","EGF_Stimulus":"0.69"},{"ID":"FBgn0036474","EGF_Stimulus":"-0.63"},{"ID":"FBgn0032923","EGF_Stimulus":"0.79"},{"ID":"FBgn0000210","EGF_Stimulus":"0.08"},{"ID":"FBgn0004895","EGF_Stimulus":"0.41"},{"ID":"FBgn0039113","EGF_Stimulus":"-0.19"},{"ID":"FBgn0020646","EGF_Stimulus":"0.62"},{"ID":"FBgn0005593","EGF_Stimulus":"-4.25"},{"ID":"FBgn0035750","EGF_Stimulus":"0.45"},{"ID":"FBgn0010197","EGF_Stimulus":"0.65"},{"ID":"FBgn0013678","EGF_Stimulus":"0.53"},{"ID":"FBgn0017429","EGF_Stimulus":"0.5"},{"ID":"FBgn0037263","EGF_Stimulus":"-0.55"},{"ID":"FBgn0085426","EGF_Stimulus":"0.92"},{"ID":"FBgn0040959","EGF_Stimulus":"-0.4"},{"ID":"FBgn0030181","EGF_Stimulus":"-0.43"},{"ID":"FBgn0261014","EGF_Stimulus":"0.48"},{"ID":"FBgn0036589","EGF_Stimulus":"-0.63"},{"ID":"FBgn0033984","EGF_Stimulus":"0.64"},{"ID":"FBgn0035798","EGF_Stimulus":"0.3"},{"ID":"FBgn0032162","EGF_Stimulus":"-0.81"},{"ID":"FBgn0034464","EGF_Stimulus":"-0.66"},{"ID":"FBgn0004379","EGF_Stimulus":"-2.77"},{"ID":"FBgn0004175","EGF_Stimulus":"0.98"},{"ID":"FBgn0039543","EGF_Stimulus":"0.98"},{"ID":"FBgn0031865","EGF_Stimulus":"-0.7"},{"ID":"FBgn0038871","EGF_Stimulus":"-0.48"},{"ID":"FBgn0035640","EGF_Stimulus":"-1.36"},{"ID":"FBgn0020368","EGF_Stimulus":"-1.51"},{"ID":"FBgn0004372","EGF_Stimulus":"0.95"},{"ID":"FBgn0250788","EGF_Stimulus":"-0.35"},{"ID":"FBgn0031644","EGF_Stimulus":"-0.28"},{"ID":"FBgn0033912","EGF_Stimulus":"-3.93"},{"ID":"FBgn0085440","EGF_Stimulus":"1.08"},{"ID":"FBgn0034423","EGF_Stimulus":"0.67"},{"ID":"FBgn0038762","EGF_Stimulus":"0.87"},{"ID":"FBgn0030894","EGF_Stimulus":"0.9"},{"ID":"FBgn0038914","EGF_Stimulus":"0.49"},{"ID":"FBgn0030829","EGF_Stimulus":"0.24"},{"ID":"FBgn0036393","EGF_Stimulus":"-0.95"},{"ID":"FBgn0031805","EGF_Stimulus":"0.58"},{"ID":"FBgn0035195","EGF_Stimulus":"1.38"},{"ID":"FBgn0037650","EGF_Stimulus":"0.83"},{"ID":"FBgn0039157","EGF_Stimulus":"1.58"},{"ID":"FBgn0023076","EGF_Stimulus":"0.87"},{"ID":"FBgn0028506","EGF_Stimulus":"-3.89"},{"ID":"FBgn0038428","EGF_Stimulus":"0.58"},{"ID":"FBgn0031233","EGF_Stimulus":"-0.44"},{"ID":"FBgn0035896","EGF_Stimulus":"1.73"},{"ID":"FBgn0030914","EGF_Stimulus":"0.69"},{"ID":"FBgn0029804","EGF_Stimulus":"-0.97"},{"ID":"FBgn0031397","EGF_Stimulus":"-0.29"},{"ID":"FBgn0027504","EGF_Stimulus":"-1.01"},{"ID":"FBgn0052436","EGF_Stimulus":"-0.53"},{"ID":"FBgn0039993","EGF_Stimulus":"0.96"},{"ID":"FBgn0026320","EGF_Stimulus":"0.78"},{"ID":"FBgn0011591","EGF_Stimulus":"-0.87"},{"ID":"FBgn0259481","EGF_Stimulus":"1.04"},{"ID":"FBgn0039766","EGF_Stimulus":"1.26"},{"ID":"FBgn0037396","EGF_Stimulus":"0.37"},{"ID":"FBgn0038320","EGF_Stimulus":"0.96"},{"ID":"FBgn0026255","EGF_Stimulus":"0.27"},{"ID":"FBgn0034735","EGF_Stimulus":"-1"},{"ID":"FBgn0053998","EGF_Stimulus":"0.78"},{"ID":"FBgn0022720","EGF_Stimulus":"1.04"},{"ID":"FBgn0041252","EGF_Stimulus":"-0.4"},{"ID":"FBgn0028949","EGF_Stimulus":"1.43"},{"ID":"FBgn0036136","EGF_Stimulus":"1.13"},{"ID":"FBgn0051207","EGF_Stimulus":"-0.1"},{"ID":"FBgn0029966","EGF_Stimulus":"0.6"},{"ID":"FBgn0030071","EGF_Stimulus":"0.59"},{"ID":"FBgn0011474","EGF_Stimulus":"1.54"},{"ID":"FBgn0000721","EGF_Stimulus":"0.41"},{"ID":"FBgn0030752","EGF_Stimulus":"-0.08"},{"ID":"FBgn0087021","EGF_Stimulus":"-0.85"},{"ID":"FBgn0033303","EGF_Stimulus":"3.13"},{"ID":"FBgn0051105","EGF_Stimulus":"-1.3"},{"ID":"FBgn0024804","EGF_Stimulus":"0.43"},{"ID":"FBgn0050157","EGF_Stimulus":"-0.68"},{"ID":"FBgn0010247","EGF_Stimulus":"0.52"},{"ID":"FBgn0259220","EGF_Stimulus":"-1"},{"ID":"FBgn0013684","EGF_Stimulus":"-0.57"},{"ID":"FBgn0044871","EGF_Stimulus":"-2"},{"ID":"FBgn0031523","EGF_Stimulus":"-0.38"},{"ID":"FBgn0053283","EGF_Stimulus":"0.08"},{"ID":"FBgn0026409","EGF_Stimulus":"-1.35"},{"ID":"FBgn0039500","EGF_Stimulus":"-1.04"},{"ID":"FBgn0051065","EGF_Stimulus":"-0.93"},{"ID":"FBgn0032961","EGF_Stimulus":"-1.29"},{"ID":"FBgn0037215","EGF_Stimulus":"-0.49"},{"ID":"FBgn0085403","EGF_Stimulus":"11.42"},{"ID":"FBgn0051788","EGF_Stimulus":"0.1"},{"ID":"FBgn0002069","EGF_Stimulus":"0.5"},{"ID":"FBgn0019809","EGF_Stimulus":"-0.61"},{"ID":"FBgn0052657","EGF_Stimulus":"0.83"},{"ID":"FBgn0039972","EGF_Stimulus":"-0.36"},{"ID":"FBgn0034631","EGF_Stimulus":"0.69"},{"ID":"FBgn0010014","EGF_Stimulus":"1.31"},{"ID":"FBgn0005694","EGF_Stimulus":"5.4"},{"ID":"FBgn0051472","EGF_Stimulus":"0.45"},{"ID":"FBgn0034454","EGF_Stimulus":"1.24"},{"ID":"FBgn0003022","EGF_Stimulus":"0.58"},{"ID":"FBgn0033948","EGF_Stimulus":"-0.66"},{"ID":"FBgn0001247","EGF_Stimulus":"0.92"},{"ID":"FBgn0036913","EGF_Stimulus":"-0.88"},{"ID":"FBgn0036816","EGF_Stimulus":"0.85"},{"ID":"FBgn0029134","EGF_Stimulus":"-2.16"},{"ID":"FBgn0027572","EGF_Stimulus":"-1.43"},{"ID":"FBgn0053758","EGF_Stimulus":"1.12"},{"ID":"FBgn0027107","EGF_Stimulus":"-1.07"},{"ID":"FBgn0260943","EGF_Stimulus":"1.29"},{"ID":"FBgn0031410","EGF_Stimulus":"-0.66"},{"ID":"FBgn0033609","EGF_Stimulus":"1.36"},{"ID":"FBgn0052086","EGF_Stimulus":"0.3"},{"ID":"FBgn0051457","EGF_Stimulus":"0.48"},{"ID":"FBgn0031139","EGF_Stimulus":"-0.2"},{"ID":"FBgn0039788","EGF_Stimulus":"1.57"},{"ID":"FBgn0038158","EGF_Stimulus":"0.31"},{"ID":"FBgn0034157","EGF_Stimulus":"0.84"},{"ID":"FBgn0037385","EGF_Stimulus":"0.78"},{"ID":"FBgn0052655","EGF_Stimulus":"0.46"},{"ID":"FBgn0023096","EGF_Stimulus":"0.98"},{"ID":"FBgn0029868","EGF_Stimulus":"0.62"},{"ID":"FBgn0036207","EGF_Stimulus":"0.78"},{"ID":"FBgn0030053","EGF_Stimulus":"1.1"},{"ID":"FBgn0036494","EGF_Stimulus":"-0.8"},{"ID":"FBgn0000246","EGF_Stimulus":"1.26"},{"ID":"FBgn0260744","EGF_Stimulus":"0.4"},{"ID":"FBgn0039488","EGF_Stimulus":"-1.78"},{"ID":"FBgn0020496","EGF_Stimulus":"-2.58"},{"ID":"FBgn0067629","EGF_Stimulus":"-0.84"},{"ID":"FBgn0003227","EGF_Stimulus":"0.85"},{"ID":"FBgn0035315","EGF_Stimulus":"1.45"},{"ID":"FBgn0053970","EGF_Stimulus":"1.37"},{"ID":"FBgn0040636","EGF_Stimulus":"0.13"},{"ID":"FBgn0013998","EGF_Stimulus":"-0.49"},{"ID":"FBgn0031238","EGF_Stimulus":"-2.3"},{"ID":"FBgn0038306","EGF_Stimulus":"-0.5"},{"ID":"FBgn0032509","EGF_Stimulus":"0.36"},{"ID":"FBgn0035552","EGF_Stimulus":"-0.95"},{"ID":"FBgn0016920","EGF_Stimulus":"1.63"},{"ID":"FBgn0034585","EGF_Stimulus":"0.52"},{"ID":"FBgn0050082","EGF_Stimulus":"-1.42"},{"ID":"FBgn0046296","EGF_Stimulus":"0.37"},{"ID":"FBgn0027950","EGF_Stimulus":"-1"},{"ID":"FBgn0085386","EGF_Stimulus":"1.16"},{"ID":"FBgn0039916","EGF_Stimulus":"1.19"},{"ID":"FBgn0031649","EGF_Stimulus":"0.7"},{"ID":"FBgn0035147","EGF_Stimulus":"1.12"},{"ID":"FBgn0032919","EGF_Stimulus":"-0.19"},{"ID":"FBgn0011763","EGF_Stimulus":"-3.4"},{"ID":"FBgn0033090","EGF_Stimulus":"-1.76"},{"ID":"FBgn0037083","EGF_Stimulus":"1.27"},{"ID":"FBgn0051469","EGF_Stimulus":"0.32"},{"ID":"FBgn0031661","EGF_Stimulus":"0.43"},{"ID":"FBgn0038918","EGF_Stimulus":"1.25"},{"ID":"FBgn0037322","EGF_Stimulus":"-0.25"},{"ID":"FBgn0037514","EGF_Stimulus":"0.47"},{"ID":"FBgn0035335","EGF_Stimulus":"1.17"},{"ID":"FBgn0000253","EGF_Stimulus":"4.7"},{"ID":"FBgn0053958","EGF_Stimulus":"0.96"},{"ID":"FBgn0029128","EGF_Stimulus":"0.3"},{"ID":"FBgn0259142","EGF_Stimulus":"1.28"},{"ID":"FBgn0026702","EGF_Stimulus":"1.26"},{"ID":"FBgn0015808","EGF_Stimulus":"0.79"},{"ID":"FBgn0032219","EGF_Stimulus":"0.88"},{"ID":"FBgn0034087","EGF_Stimulus":"2.95"},{"ID":"FBgn0038810","EGF_Stimulus":"-0.73"},{"ID":"FBgn0039163","EGF_Stimulus":"-0.35"},{"ID":"FBgn0038356","EGF_Stimulus":"-0.47"},{"ID":"FBgn0053179","EGF_Stimulus":"0.44"},{"ID":"FBgn0026619","EGF_Stimulus":"-0.92"},{"ID":"FBgn0038550","EGF_Stimulus":"0.64"},{"ID":"FBgn0034816","EGF_Stimulus":"0.64"},{"ID":"FBgn0051272","EGF_Stimulus":"-2.35"},{"ID":"FBgn0034838","EGF_Stimulus":"0.84"},{"ID":"FBgn0034618","EGF_Stimulus":"-0.58"},{"ID":"FBgn0015037","EGF_Stimulus":"-0.58"},{"ID":"FBgn0035483","EGF_Stimulus":"-0.68"},{"ID":"FBgn0033258","EGF_Stimulus":"0.22"},{"ID":"FBgn0038704","EGF_Stimulus":"-0.55"},{"ID":"FBgn0040348","EGF_Stimulus":"0.88"},{"ID":"FBgn0031631","EGF_Stimulus":"0.73"},{"ID":"FBgn0032482","EGF_Stimulus":"-2.32"},{"ID":"FBgn0032968","EGF_Stimulus":"0.13"},{"ID":"FBgn0015376","EGF_Stimulus":"0.64"},{"ID":"FBgn0022709","EGF_Stimulus":"0.14"},{"ID":"FBgn0051337","EGF_Stimulus":"0.8"},{"ID":"FBgn0031692","EGF_Stimulus":"-0.97"},{"ID":"FBgn0035228","EGF_Stimulus":"0.76"},{"ID":"FBgn0035589","EGF_Stimulus":"-0.96"},{"ID":"FBgn0036992","EGF_Stimulus":"-1.09"},{"ID":"FBgn0261294","EGF_Stimulus":"0.24"},{"ID":"FBgn0051709","EGF_Stimulus":"0.66"},{"ID":"FBgn0039052","EGF_Stimulus":"0.65"},{"ID":"FBgn0037845","EGF_Stimulus":"1.29"},{"ID":"FBgn0039904","EGF_Stimulus":"-0.4"},{"ID":"FBgn0030276","EGF_Stimulus":"0.76"},{"ID":"FBgn0041248","EGF_Stimulus":"-0.88"},{"ID":"FBgn0040367","EGF_Stimulus":"0.12"},{"ID":"FBgn0025286","EGF_Stimulus":"-3.45"},{"ID":"FBgn0033665","EGF_Stimulus":"-0.45"},{"ID":"FBgn0034275","EGF_Stimulus":"0.66"},{"ID":"FBgn0050039","EGF_Stimulus":"0.42"},{"ID":"FBgn0086736","EGF_Stimulus":"-2.62"},{"ID":"FBgn0051779","EGF_Stimulus":"-0.15"},{"ID":"FBgn0031231","EGF_Stimulus":"-0.24"},{"ID":"FBgn0030099","EGF_Stimulus":"1.06"},{"ID":"FBgn0029913","EGF_Stimulus":"-0.19"},{"ID":"FBgn0038771","EGF_Stimulus":"0.6"},{"ID":"FBgn0003165","EGF_Stimulus":"1.17"},{"ID":"FBgn0260653","EGF_Stimulus":"1.53"},{"ID":"FBgn0261593","EGF_Stimulus":"0.56"},{"ID":"FBgn0030274","EGF_Stimulus":"-2.31"},{"ID":"FBgn0036689","EGF_Stimulus":"-0.69"},{"ID":"FBgn0037715","EGF_Stimulus":"0.86"},{"ID":"FBgn0011659","EGF_Stimulus":"0.68"},{"ID":"FBgn0039476","EGF_Stimulus":"1.19"},{"ID":"FBgn0027509","EGF_Stimulus":"0.3"},{"ID":"FBgn0032791","EGF_Stimulus":"-0.51"},{"ID":"FBgn0032489","EGF_Stimulus":"-1.28"},{"ID":"FBgn0014189","EGF_Stimulus":"-1.61"},{"ID":"FBgn0036233","EGF_Stimulus":"0.5"},{"ID":"FBgn0261060","EGF_Stimulus":"-1.23"},{"ID":"FBgn0042693","EGF_Stimulus":"-0.83"},{"ID":"FBgn0035260","EGF_Stimulus":"0.99"},{"ID":"FBgn0000723","EGF_Stimulus":"-2.24"},{"ID":"FBgn0261566","EGF_Stimulus":"0.75"},{"ID":"FBgn0037529","EGF_Stimulus":"0.96"},{"ID":"FBgn0038476","EGF_Stimulus":"0.99"},{"ID":"FBgn0038595","EGF_Stimulus":"-0.67"},{"ID":"FBgn0032416","EGF_Stimulus":"-0.75"},{"ID":"FBgn0036380","EGF_Stimulus":"0.78"},{"ID":"FBgn0033960","EGF_Stimulus":"-1.14"},{"ID":"FBgn0024806","EGF_Stimulus":"-1.51"},{"ID":"FBgn0035034","EGF_Stimulus":"0.84"},{"ID":"FBgn0015558","EGF_Stimulus":"-0.64"},{"ID":"FBgn0032957","EGF_Stimulus":"-1.03"},{"ID":"FBgn0003660","EGF_Stimulus":"0.63"},{"ID":"FBgn0034067","EGF_Stimulus":"-1.36"},{"ID":"FBgn0004168","EGF_Stimulus":"0.46"},{"ID":"FBgn0032061","EGF_Stimulus":"-0.69"},{"ID":"FBgn0025633","EGF_Stimulus":"0.79"},{"ID":"FBgn0038722","EGF_Stimulus":"0.77"},{"ID":"FBgn0038568","EGF_Stimulus":"0.5"},{"ID":"FBgn0033650","EGF_Stimulus":"0.58"},{"ID":"FBgn0003002","EGF_Stimulus":"-0.68"},{"ID":"FBgn0031461","EGF_Stimulus":"-0.76"},{"ID":"FBgn0029798","EGF_Stimulus":"0.44"},{"ID":"FBgn0013432","EGF_Stimulus":"0.9"},{"ID":"FBgn0052499","EGF_Stimulus":"0.72"},{"ID":"FBgn0024227","EGF_Stimulus":"-1.14"},{"ID":"FBgn0034253","EGF_Stimulus":"-0.88"},{"ID":"FBgn0051810","EGF_Stimulus":"-1.07"},{"ID":"FBgn0027499","EGF_Stimulus":"-0.69"},{"ID":"FBgn0030868","EGF_Stimulus":"-0.35"},{"ID":"FBgn0032154","EGF_Stimulus":"-0.13"},{"ID":"FBgn0031377","EGF_Stimulus":"0.72"},{"ID":"FBgn0037797","EGF_Stimulus":"-1"},{"ID":"FBgn0032838","EGF_Stimulus":"1.12"},{"ID":"FBgn0031058","EGF_Stimulus":"-0.09"},{"ID":"FBgn0038243","EGF_Stimulus":"-0.26"},{"ID":"FBgn0260945","EGF_Stimulus":"-0.75"},{"ID":"FBgn0013765","EGF_Stimulus":"4.79"},{"ID":"FBgn0040582","EGF_Stimulus":"1.1"},{"ID":"FBgn0038239","EGF_Stimulus":"-0.41"},{"ID":"FBgn0039224","EGF_Stimulus":"-0.46"},{"ID":"FBgn0028573","EGF_Stimulus":"0.24"},{"ID":"FBgn0034753","EGF_Stimulus":"0.63"},{"ID":"FBgn0036053","EGF_Stimulus":"1.27"},{"ID":"FBgn0037551","EGF_Stimulus":"0.8"},{"ID":"FBgn0035666","EGF_Stimulus":"0.74"},{"ID":"FBgn0033402","EGF_Stimulus":"-0.39"},{"ID":"FBgn0020238","EGF_Stimulus":"-0.25"},{"ID":"FBgn0003892","EGF_Stimulus":"-0.85"},{"ID":"FBgn0037632","EGF_Stimulus":"-1.5"},{"ID":"FBgn0052280","EGF_Stimulus":"-0.29"},{"ID":"FBgn0032465","EGF_Stimulus":"-0.89"},{"ID":"FBgn0040602","EGF_Stimulus":"0.53"},{"ID":"FBgn0039589","EGF_Stimulus":"-0.9"},{"ID":"FBgn0024734","EGF_Stimulus":"0.52"},{"ID":"FBgn0085388","EGF_Stimulus":"-1.27"},{"ID":"FBgn0043005","EGF_Stimulus":"-0.66"},{"ID":"FBgn0000463","EGF_Stimulus":"0.55"},{"ID":"FBgn0024285","EGF_Stimulus":"-0.71"},{"ID":"FBgn0040699","EGF_Stimulus":"-0.36"},{"ID":"FBgn0052856","EGF_Stimulus":"0.87"},{"ID":"FBgn0024920","EGF_Stimulus":"-0.83"},{"ID":"FBgn0050361","EGF_Stimulus":"-1.64"},{"ID":"FBgn0035046","EGF_Stimulus":"-2.03"},{"ID":"FBgn0051562","EGF_Stimulus":"-0.54"},{"ID":"FBgn0015522","EGF_Stimulus":"0.6"},{"ID":"FBgn0020415","EGF_Stimulus":"-0.32"},{"ID":"FBgn0261872","EGF_Stimulus":"1.51"},{"ID":"FBgn0021944","EGF_Stimulus":"0.51"},{"ID":"FBgn0033348","EGF_Stimulus":"-2.09"},{"ID":"FBgn0259209","EGF_Stimulus":"-0.88"},{"ID":"FBgn0030366","EGF_Stimulus":"-1.78"},{"ID":"FBgn0032395","EGF_Stimulus":"2.18"},{"ID":"FBgn0083961","EGF_Stimulus":"1.68"},{"ID":"FBgn0050280","EGF_Stimulus":"1.77"},{"ID":"FBgn0053291","EGF_Stimulus":"1.14"},{"ID":"FBgn0039580","EGF_Stimulus":"-0.52"},{"ID":"FBgn0036063","EGF_Stimulus":"1.06"},{"ID":"FBgn0051681","EGF_Stimulus":"-0.25"},{"ID":"FBgn0002031","EGF_Stimulus":"-2.45"},{"ID":"FBgn0037834","EGF_Stimulus":"-1.16"},{"ID":"FBgn0260639","EGF_Stimulus":"-0.71"},{"ID":"FBgn0261799","EGF_Stimulus":"-1.22"},{"ID":"FBgn0032198","EGF_Stimulus":"-0.95"},{"ID":"FBgn0000313","EGF_Stimulus":"0.89"},{"ID":"FBgn0025640","EGF_Stimulus":"0.06"},{"ID":"FBgn0085473","EGF_Stimulus":"-0.84"},{"ID":"FBgn0032287","EGF_Stimulus":"0.85"},{"ID":"FBgn0003475","EGF_Stimulus":"-0.56"},{"ID":"FBgn0037742","EGF_Stimulus":"-0.89"},{"ID":"FBgn0052284","EGF_Stimulus":"0.43"},{"ID":"FBgn0259916","EGF_Stimulus":"0.26"},{"ID":"FBgn0038377","EGF_Stimulus":"0.68"},{"ID":"FBgn0025642","EGF_Stimulus":"-1.74"},{"ID":"FBgn0003268","EGF_Stimulus":"-0.51"},{"ID":"FBgn0051848","EGF_Stimulus":"1.13"},{"ID":"FBgn0039564","EGF_Stimulus":"-0.53"},{"ID":"FBgn0037812","EGF_Stimulus":"-1.64"},{"ID":"FBgn0040777","EGF_Stimulus":"1.27"},{"ID":"FBgn0062449","EGF_Stimulus":"-1.04"},{"ID":"FBgn0050278","EGF_Stimulus":"-1.7"},{"ID":"FBgn0026370","EGF_Stimulus":"2.62"},{"ID":"FBgn0260861","EGF_Stimulus":"1.14"},{"ID":"FBgn0037671","EGF_Stimulus":"0.35"},{"ID":"FBgn0038127","EGF_Stimulus":"-0.63"},{"ID":"FBgn0032345","EGF_Stimulus":"-0.28"},{"ID":"FBgn0030494","EGF_Stimulus":"0.42"},{"ID":"FBgn0029521","EGF_Stimulus":"0.36"},{"ID":"FBgn0034888","EGF_Stimulus":"0.55"},{"ID":"FBgn0029885","EGF_Stimulus":"0.93"},{"ID":"FBgn0031837","EGF_Stimulus":"-0.64"},{"ID":"FBgn0030465","EGF_Stimulus":"0.27"},{"ID":"FBgn0032280","EGF_Stimulus":"1.06"},{"ID":"FBgn0054006","EGF_Stimulus":"-0.69"},{"ID":"FBgn0038658","EGF_Stimulus":"-0.34"},{"ID":"FBgn0036335","EGF_Stimulus":"0.2"},{"ID":"FBgn0036923","EGF_Stimulus":"0.49"},{"ID":"FBgn0032843","EGF_Stimulus":"0.47"},{"ID":"FBgn0036690","EGF_Stimulus":"-0.93"},{"ID":"FBgn0037698","EGF_Stimulus":"-1.68"},{"ID":"FBgn0259735","EGF_Stimulus":"1.29"},{"ID":"FBgn0004656","EGF_Stimulus":"-0.78"},{"ID":"FBgn0032858","EGF_Stimulus":"-0.66"},{"ID":"FBgn0036949","EGF_Stimulus":"0.51"},{"ID":"FBgn0052845","EGF_Stimulus":"0.56"},{"ID":"FBgn0033901","EGF_Stimulus":"0.81"},{"ID":"FBgn0040755","EGF_Stimulus":"1.25"},{"ID":"FBgn0050440","EGF_Stimulus":"-1.49"},{"ID":"FBgn0035860","EGF_Stimulus":"0.83"},{"ID":"FBgn0031930","EGF_Stimulus":"0.9"},{"ID":"FBgn0052344","EGF_Stimulus":"0.45"},{"ID":"FBgn0010097","EGF_Stimulus":"1.09"},{"ID":"FBgn0019661","EGF_Stimulus":"0.53"},{"ID":"FBgn0036735","EGF_Stimulus":"-1.03"},{"ID":"FBgn0033307","EGF_Stimulus":"0.87"},{"ID":"FBgn0036459","EGF_Stimulus":"1.49"},{"ID":"FBgn0027790","EGF_Stimulus":"0.4"},{"ID":"FBgn0085358","EGF_Stimulus":"0.29"},{"ID":"FBgn0024740","EGF_Stimulus":"-0.95"},{"ID":"FBgn0037377","EGF_Stimulus":"-0.69"},{"ID":"FBgn0000715","EGF_Stimulus":"-0.77"},{"ID":"FBgn0039869","EGF_Stimulus":"0.2"},{"ID":"FBgn0038552","EGF_Stimulus":"1.08"},{"ID":"FBgn0039175","EGF_Stimulus":"-0.72"},{"ID":"FBgn0032129","EGF_Stimulus":"-0.58"},{"ID":"FBgn0023526","EGF_Stimulus":"0.38"},{"ID":"FBgn0259246","EGF_Stimulus":"1.03"},{"ID":"FBgn0037074","EGF_Stimulus":"0.9"},{"ID":"FBgn0036450","EGF_Stimulus":"1.16"},{"ID":"FBgn0003016","EGF_Stimulus":"-1.02"},{"ID":"FBgn0050430","EGF_Stimulus":"-1.54"},{"ID":"FBgn0030086","EGF_Stimulus":"-3.18"},{"ID":"FBgn0036881","EGF_Stimulus":"-0.5"},{"ID":"FBgn0016701","EGF_Stimulus":"-1.05"},{"ID":"FBgn0050265","EGF_Stimulus":"-1.65"},{"ID":"FBgn0034408","EGF_Stimulus":"1.3"},{"ID":"FBgn0027547","EGF_Stimulus":"0.7"},{"ID":"FBgn0029837","EGF_Stimulus":"1.27"},{"ID":"FBgn0051041","EGF_Stimulus":"0.96"},{"ID":"FBgn0027500","EGF_Stimulus":"0.48"},{"ID":"FBgn0029962","EGF_Stimulus":"0.95"},{"ID":"FBgn0011270","EGF_Stimulus":"-0.22"},{"ID":"FBgn0034808","EGF_Stimulus":"1.27"},{"ID":"FBgn0031904","EGF_Stimulus":"-0.21"},{"ID":"FBgn0031043","EGF_Stimulus":"-0.16"},{"ID":"FBgn0034361","EGF_Stimulus":"1.06"},{"ID":"FBgn0028561","EGF_Stimulus":"0.65"},{"ID":"FBgn0038607","EGF_Stimulus":"-1.62"},{"ID":"FBgn0032025","EGF_Stimulus":"0.41"},{"ID":"FBgn0000564","EGF_Stimulus":"1.23"},{"ID":"FBgn0031051","EGF_Stimulus":"0.27"},{"ID":"FBgn0033761","EGF_Stimulus":"-0.89"},{"ID":"FBgn0034282","EGF_Stimulus":"0.96"},{"ID":"FBgn0261553","EGF_Stimulus":"0.39"},{"ID":"FBgn0030936","EGF_Stimulus":"0.79"},{"ID":"FBgn0035236","EGF_Stimulus":"-0.72"},{"ID":"FBgn0029608","EGF_Stimulus":"0.3"},{"ID":"FBgn0031436","EGF_Stimulus":"0.79"},{"ID":"FBgn0027101","EGF_Stimulus":"0.48"},{"ID":"FBgn0033716","EGF_Stimulus":"-0.52"},{"ID":"FBgn0028844","EGF_Stimulus":"0.45"},{"ID":"FBgn0001565","EGF_Stimulus":"-0.33"},{"ID":"FBgn0015600","EGF_Stimulus":"0.79"},{"ID":"FBgn0032313","EGF_Stimulus":"0.77"},{"ID":"FBgn0039030","EGF_Stimulus":"0.33"},{"ID":"FBgn0005586","EGF_Stimulus":"-0.53"},{"ID":"FBgn0040294","EGF_Stimulus":"0.61"},{"ID":"FBgn0261429","EGF_Stimulus":"-0.42"},{"ID":"FBgn0031626","EGF_Stimulus":"-0.06"},{"ID":"FBgn0032644","EGF_Stimulus":"0.29"},{"ID":"FBgn0030384","EGF_Stimulus":"1.33"},{"ID":"FBgn0052170","EGF_Stimulus":"-0.58"},{"ID":"FBgn0034452","EGF_Stimulus":"1.64"},{"ID":"FBgn0032774","EGF_Stimulus":"0.81"},{"ID":"FBgn0030802","EGF_Stimulus":"0.54"},{"ID":"FBgn0031496","EGF_Stimulus":"0.68"},{"ID":"FBgn0002938","EGF_Stimulus":"-0.38"},{"ID":"FBgn0041183","EGF_Stimulus":"-0.66"},{"ID":"FBgn0259923","EGF_Stimulus":"-0.71"},{"ID":"FBgn0002626","EGF_Stimulus":"-3.43"},{"ID":"FBgn0034962","EGF_Stimulus":"1.14"},{"ID":"FBgn0030093","EGF_Stimulus":"0.8"},{"ID":"FBgn0017566","EGF_Stimulus":"0.29"},{"ID":"FBgn0029730","EGF_Stimulus":"-0.61"},{"ID":"FBgn0003598","EGF_Stimulus":"0.16"},{"ID":"FBgn0052082","EGF_Stimulus":"-0.22"},{"ID":"FBgn0030391","EGF_Stimulus":"0.77"},{"ID":"FBgn0032891","EGF_Stimulus":"-0.45"},{"ID":"FBgn0036767","EGF_Stimulus":"0.54"},{"ID":"FBgn0031381","EGF_Stimulus":"1.22"},{"ID":"FBgn0010395","EGF_Stimulus":"-0.94"},{"ID":"FBgn0004003","EGF_Stimulus":"0.87"},{"ID":"FBgn0038536","EGF_Stimulus":"-0.75"},{"ID":"FBgn0032665","EGF_Stimulus":"-0.69"},{"ID":"FBgn0028534","EGF_Stimulus":"1.59"},{"ID":"FBgn0085407","EGF_Stimulus":"1.04"},{"ID":"FBgn0039594","EGF_Stimulus":"1.45"},{"ID":"FBgn0038302","EGF_Stimulus":"-0.74"},{"ID":"FBgn0001248","EGF_Stimulus":"0.63"},{"ID":"FBgn0045035","EGF_Stimulus":"-1.17"},{"ID":"FBgn0033766","EGF_Stimulus":"-0.42"},{"ID":"FBgn0085371","EGF_Stimulus":"0.2"},{"ID":"FBgn0002926","EGF_Stimulus":"0.73"},{"ID":"FBgn0038003","EGF_Stimulus":"-1.82"},{"ID":"FBgn0027494","EGF_Stimulus":"0.87"},{"ID":"FBgn0030596","EGF_Stimulus":"0.97"},{"ID":"FBgn0039003","EGF_Stimulus":"-0.47"},{"ID":"FBgn0033005","EGF_Stimulus":"-0.67"},{"ID":"FBgn0033754","EGF_Stimulus":"0.36"},{"ID":"FBgn0038146","EGF_Stimulus":"0.86"},{"ID":"FBgn0036018","EGF_Stimulus":"-0.3"},{"ID":"FBgn0031741","EGF_Stimulus":"0.56"},{"ID":"FBgn0004594","EGF_Stimulus":"-1.61"},{"ID":"FBgn0051861","EGF_Stimulus":"-0.9"},{"ID":"FBgn0033097","EGF_Stimulus":"0.86"},{"ID":"FBgn0086898","EGF_Stimulus":"0.19"},{"ID":"FBgn0004389","EGF_Stimulus":"-0.89"},{"ID":"FBgn0051361","EGF_Stimulus":"1.56"},{"ID":"FBgn0051029","EGF_Stimulus":"-0.66"},{"ID":"FBgn0259242","EGF_Stimulus":"1.92"},{"ID":"FBgn0086908","EGF_Stimulus":"-1.84"},{"ID":"FBgn0260456","EGF_Stimulus":"0.65"},{"ID":"FBgn0039373","EGF_Stimulus":"0.93"},{"ID":"FBgn0002431","EGF_Stimulus":"-2.39"},{"ID":"FBgn0030725","EGF_Stimulus":"-0.17"},{"ID":"FBgn0037530","EGF_Stimulus":"1.33"},{"ID":"FBgn0019972","EGF_Stimulus":"0.8"},{"ID":"FBgn0259100","EGF_Stimulus":"-1.81"},{"ID":"FBgn0036827","EGF_Stimulus":"-0.28"},{"ID":"FBgn0039403","EGF_Stimulus":"-0.5"},{"ID":"FBgn0000181","EGF_Stimulus":"0.42"},{"ID":"FBgn0033657","EGF_Stimulus":"-1.32"},{"ID":"FBgn0053505","EGF_Stimulus":"-1.05"},{"ID":"FBgn0021796","EGF_Stimulus":"1.26"},{"ID":"FBgn0030484","EGF_Stimulus":"0.76"},{"ID":"FBgn0029942","EGF_Stimulus":"0.68"},{"ID":"FBgn0031943","EGF_Stimulus":"0.87"},{"ID":"FBgn0026056","EGF_Stimulus":"0.85"},{"ID":"FBgn0003979","EGF_Stimulus":"0.37"},{"ID":"FBgn0036176","EGF_Stimulus":"-0.61"},{"ID":"FBgn0033789","EGF_Stimulus":"-0.26"},{"ID":"FBgn0033280","EGF_Stimulus":"-0.67"},{"ID":"FBgn0030520","EGF_Stimulus":"-0.94"},{"ID":"FBgn0038014","EGF_Stimulus":"-1.1"},{"ID":"FBgn0033145","EGF_Stimulus":"0.73"},{"ID":"FBgn0043841","EGF_Stimulus":"-1.15"},{"ID":"FBgn0036013","EGF_Stimulus":"0.97"},{"ID":"FBgn0029737","EGF_Stimulus":"0.45"},{"ID":"FBgn0024236","EGF_Stimulus":"-5.98"},{"ID":"FBgn0025835","EGF_Stimulus":"0.88"},{"ID":"FBgn0032945","EGF_Stimulus":"0.75"},{"ID":"FBgn0037646","EGF_Stimulus":"-0.84"},{"ID":"FBgn0039251","EGF_Stimulus":"-0.21"},{"ID":"FBgn0030103","EGF_Stimulus":"0.38"},{"ID":"FBgn0026431","EGF_Stimulus":"0.2"},{"ID":"FBgn0032370","EGF_Stimulus":"0.37"},{"ID":"FBgn0028879","EGF_Stimulus":"-1.12"},{"ID":"FBgn0032660","EGF_Stimulus":"-1.11"},{"ID":"FBgn0033982","EGF_Stimulus":"0.75"},{"ID":"FBgn0040211","EGF_Stimulus":"1.02"},{"ID":"FBgn0034289","EGF_Stimulus":"0.48"},{"ID":"FBgn0025613","EGF_Stimulus":"-0.56"},{"ID":"FBgn0037061","EGF_Stimulus":"-0.51"},{"ID":"FBgn0030242","EGF_Stimulus":"0.81"},{"ID":"FBgn0003884","EGF_Stimulus":"-1.77"},{"ID":"FBgn0035762","EGF_Stimulus":"-0.55"},{"ID":"FBgn0038893","EGF_Stimulus":"-0.04"},{"ID":"FBgn0003295","EGF_Stimulus":"-0.67"},{"ID":"FBgn0036487","EGF_Stimulus":"2.55"},{"ID":"FBgn0085383","EGF_Stimulus":"0.58"},{"ID":"FBgn0014024","EGF_Stimulus":"-1.07"},{"ID":"FBgn0038649","EGF_Stimulus":"0.99"},{"ID":"FBgn0031723","EGF_Stimulus":"0.41"},{"ID":"FBgn0035754","EGF_Stimulus":"0.9"},{"ID":"FBgn0032294","EGF_Stimulus":"-0.62"},{"ID":"FBgn0036248","EGF_Stimulus":"-0.6"},{"ID":"FBgn0052473","EGF_Stimulus":"1.63"},{"ID":"FBgn0031676","EGF_Stimulus":"1.07"},{"ID":"FBgn0035432","EGF_Stimulus":"-0.76"},{"ID":"FBgn0031601","EGF_Stimulus":"-0.6"},{"ID":"FBgn0036353","EGF_Stimulus":"1.48"},{"ID":"FBgn0058298","EGF_Stimulus":"-1.13"},{"ID":"FBgn0036749","EGF_Stimulus":"-0.94"},{"ID":"FBgn0051418","EGF_Stimulus":"0.69"},{"ID":"FBgn0037413","EGF_Stimulus":"0.46"},{"ID":"FBgn0036886","EGF_Stimulus":"0.84"},{"ID":"FBgn0031302","EGF_Stimulus":"0.38"},{"ID":"FBgn0027609","EGF_Stimulus":"0.26"},{"ID":"FBgn0010551","EGF_Stimulus":"-1.52"},{"ID":"FBgn0051269","EGF_Stimulus":"0.31"},{"ID":"FBgn0027560","EGF_Stimulus":"1.32"},{"ID":"FBgn0035461","EGF_Stimulus":"0.28"},{"ID":"FBgn0031034","EGF_Stimulus":"0.54"},{"ID":"FBgn0033074","EGF_Stimulus":"0.84"},{"ID":"FBgn0030013","EGF_Stimulus":"0.44"},{"ID":"FBgn0004227","EGF_Stimulus":"1.91"},{"ID":"FBgn0030508","EGF_Stimulus":"0.14"},{"ID":"FBgn0038492","EGF_Stimulus":"-0.49"},{"ID":"FBgn0037900","EGF_Stimulus":"0.44"},{"ID":"FBgn0031882","EGF_Stimulus":"1.09"},{"ID":"FBgn0050109","EGF_Stimulus":"-0.84"},{"ID":"FBgn0000120","EGF_Stimulus":"-0.91"},{"ID":"FBgn0034553","EGF_Stimulus":"0.97"},{"ID":"FBgn0051031","EGF_Stimulus":"0.92"},{"ID":"FBgn0011230","EGF_Stimulus":"-1.06"},{"ID":"FBgn0039773","EGF_Stimulus":"-0.7"},{"ID":"FBgn0034913","EGF_Stimulus":"-1.07"},{"ID":"FBgn0034368","EGF_Stimulus":"1.18"},{"ID":"FBgn0034850","EGF_Stimulus":"0.51"},{"ID":"FBgn0040670","EGF_Stimulus":"0.92"},{"ID":"FBgn0003374","EGF_Stimulus":"0.28"},{"ID":"FBgn0035563","EGF_Stimulus":"-1.76"},{"ID":"FBgn0036040","EGF_Stimulus":"0.82"},{"ID":"FBgn0051139","EGF_Stimulus":"-0.49"},{"ID":"FBgn0036482","EGF_Stimulus":"0.67"},{"ID":"FBgn0039415","EGF_Stimulus":"-0.8"},{"ID":"FBgn0035211","EGF_Stimulus":"0.93"},{"ID":"FBgn0259823","EGF_Stimulus":"0.51"},{"ID":"FBgn0034159","EGF_Stimulus":"-0.99"},{"ID":"FBgn0015790","EGF_Stimulus":"-0.56"},{"ID":"FBgn0035511","EGF_Stimulus":"0.83"},{"ID":"FBgn0033926","EGF_Stimulus":"-1.27"},{"ID":"FBgn0033862","EGF_Stimulus":"0.49"},{"ID":"FBgn0033574","EGF_Stimulus":"0.84"},{"ID":"FBgn0030954","EGF_Stimulus":"-0.82"},{"ID":"FBgn0035914","EGF_Stimulus":"0.52"},{"ID":"FBgn0036962","EGF_Stimulus":"-0.5"},{"ID":"FBgn0031181","EGF_Stimulus":"-0.27"},{"ID":"FBgn0039681","EGF_Stimulus":"-0.07"},{"ID":"FBgn0051526","EGF_Stimulus":"0.97"},{"ID":"FBgn0038926","EGF_Stimulus":"1.23"},{"ID":"FBgn0038047","EGF_Stimulus":"0.31"},{"ID":"FBgn0039637","EGF_Stimulus":"0.58"},{"ID":"FBgn0030552","EGF_Stimulus":"-0.8"},{"ID":"FBgn0028906","EGF_Stimulus":"-1.66"},{"ID":"FBgn0037466","EGF_Stimulus":"0.46"},{"ID":"FBgn0050098","EGF_Stimulus":"-0.78"},{"ID":"FBgn0050502","EGF_Stimulus":"0.49"},{"ID":"FBgn0032546","EGF_Stimulus":"0.17"},{"ID":"FBgn0051792","EGF_Stimulus":"-0.87"},{"ID":"FBgn0004915","EGF_Stimulus":"-0.82"},{"ID":"FBgn0034129","EGF_Stimulus":"0.41"},{"ID":"FBgn0035189","EGF_Stimulus":"0.82"},{"ID":"FBgn0039009","EGF_Stimulus":"-0.85"},{"ID":"FBgn0051642","EGF_Stimulus":"-0.9"},{"ID":"FBgn0050148","EGF_Stimulus":"0.9"},{"ID":"FBgn0036709","EGF_Stimulus":"-0.51"},{"ID":"FBgn0243513","EGF_Stimulus":"-0.05"},{"ID":"FBgn0051528","EGF_Stimulus":"1.25"},{"ID":"FBgn0038198","EGF_Stimulus":"0.55"},{"ID":"FBgn0085292","EGF_Stimulus":"0.23"},{"ID":"FBgn0086130","EGF_Stimulus":"1.29"},{"ID":"FBgn0027583","EGF_Stimulus":"0.68"},{"ID":"FBgn0086704","EGF_Stimulus":"0.55"},{"ID":"FBgn0031251","EGF_Stimulus":"-0.96"},{"ID":"FBgn0029648","EGF_Stimulus":"0.42"},{"ID":"FBgn0037298","EGF_Stimulus":"1.5"},{"ID":"FBgn0010621","EGF_Stimulus":"0.62"},{"ID":"FBgn0011286","EGF_Stimulus":"1.2"},{"ID":"FBgn0041094","EGF_Stimulus":"1.37"},{"ID":"FBgn0037439","EGF_Stimulus":"0.51"},{"ID":"FBgn0030653","EGF_Stimulus":"-0.3"},{"ID":"FBgn0086902","EGF_Stimulus":"-2.12"},{"ID":"FBgn0053458","EGF_Stimulus":"0.52"},{"ID":"FBgn0026083","EGF_Stimulus":"-0.27"},{"ID":"FBgn0030010","EGF_Stimulus":"0.54"},{"ID":"FBgn0039152","EGF_Stimulus":"0.2"},{"ID":"FBgn0028952","EGF_Stimulus":"0.39"},{"ID":"FBgn0038647","EGF_Stimulus":"0.94"},{"ID":"FBgn0039343","EGF_Stimulus":"-0.76"},{"ID":"FBgn0031285","EGF_Stimulus":"-1.2"},{"ID":"FBgn0023511","EGF_Stimulus":"-0.48"},{"ID":"FBgn0030611","EGF_Stimulus":"0.69"},{"ID":"FBgn0039538","EGF_Stimulus":"0.87"},{"ID":"FBgn0039555","EGF_Stimulus":"0.47"},{"ID":"FBgn0029689","EGF_Stimulus":"0.78"},{"ID":"FBgn0035413","EGF_Stimulus":"-1.01"},{"ID":"FBgn0039277","EGF_Stimulus":"0.61"},{"ID":"FBgn0037915","EGF_Stimulus":"-0.09"},{"ID":"FBgn0030878","EGF_Stimulus":"1.42"},{"ID":"FBgn0053555","EGF_Stimulus":"0.59"},{"ID":"FBgn0032925","EGF_Stimulus":"0.76"},{"ID":"FBgn0036918","EGF_Stimulus":"-0.3"},{"ID":"FBgn0261286","EGF_Stimulus":"-0.18"},{"ID":"FBgn0027334","EGF_Stimulus":"0.77"},{"ID":"FBgn0050163","EGF_Stimulus":"0.81"},{"ID":"FBgn0040666","EGF_Stimulus":"-0.91"},{"ID":"FBgn0031549","EGF_Stimulus":"-2.97"},{"ID":"FBgn0261722","EGF_Stimulus":"0.89"},{"ID":"FBgn0035076","EGF_Stimulus":"1.16"},{"ID":"FBgn0033648","EGF_Stimulus":"0.59"},{"ID":"FBgn0039713","EGF_Stimulus":"-2.56"},{"ID":"FBgn0086913","EGF_Stimulus":"0.85"},{"ID":"FBgn0036814","EGF_Stimulus":"1.02"},{"ID":"FBgn0051974","EGF_Stimulus":"0.82"},{"ID":"FBgn0033527","EGF_Stimulus":"1.32"},{"ID":"FBgn0004624","EGF_Stimulus":"1.21"},{"ID":"FBgn0011272","EGF_Stimulus":"-3.66"},{"ID":"FBgn0052704","EGF_Stimulus":"-0.41"},{"ID":"FBgn0040364","EGF_Stimulus":"-0.82"},{"ID":"FBgn0031762","EGF_Stimulus":"-1.37"},{"ID":"FBgn0036997","EGF_Stimulus":"-0.5"},{"ID":"FBgn0031116","EGF_Stimulus":"0.59"},{"ID":"FBgn0038258","EGF_Stimulus":"-1.8"},{"ID":"FBgn0001257","EGF_Stimulus":"0.12"},{"ID":"FBgn0038675","EGF_Stimulus":"-1.24"},{"ID":"FBgn0034201","EGF_Stimulus":"1.1"},{"ID":"FBgn0261801","EGF_Stimulus":"-0.3"},{"ID":"FBgn0085378","EGF_Stimulus":"-2.45"},{"ID":"FBgn0036116","EGF_Stimulus":"0.82"},{"ID":"FBgn0261456","EGF_Stimulus":"-0.29"},{"ID":"FBgn0259791","EGF_Stimulus":"0.92"},{"ID":"FBgn0031730","EGF_Stimulus":"-1.43"},{"ID":"FBgn0000640","EGF_Stimulus":"0.69"},{"ID":"FBgn0039059","EGF_Stimulus":"0.55"},{"ID":"FBgn0027865","EGF_Stimulus":"-0.26"},{"ID":"FBgn0050413","EGF_Stimulus":"-0.24"},{"ID":"FBgn0032336","EGF_Stimulus":"0.73"},{"ID":"FBgn0037757","EGF_Stimulus":"1.41"},{"ID":"FBgn0261625","EGF_Stimulus":"1.05"},{"ID":"FBgn0022984","EGF_Stimulus":"0.61"},{"ID":"FBgn0031873","EGF_Stimulus":"-1.19"},{"ID":"FBgn0032387","EGF_Stimulus":"-1.14"},{"ID":"FBgn0051151","EGF_Stimulus":"0.5"},{"ID":"FBgn0015565","EGF_Stimulus":"-1.38"},{"ID":"FBgn0028374","EGF_Stimulus":"0.56"},{"ID":"FBgn0002562","EGF_Stimulus":"0.27"},{"ID":"FBgn0027553","EGF_Stimulus":"0.88"},{"ID":"FBgn0259715","EGF_Stimulus":"1.71"},{"ID":"FBgn0029603","EGF_Stimulus":"0.93"},{"ID":"FBgn0030694","EGF_Stimulus":"0.33"},{"ID":"FBgn0020640","EGF_Stimulus":"1.68"},{"ID":"FBgn0039801","EGF_Stimulus":"0.57"},{"ID":"FBgn0035891","EGF_Stimulus":"0.9"},{"ID":"FBgn0011455","EGF_Stimulus":"0.92"},{"ID":"FBgn0086610","EGF_Stimulus":"-0.38"},{"ID":"FBgn0028850","EGF_Stimulus":"-0.41"},{"ID":"FBgn0015816","EGF_Stimulus":"-0.88"},{"ID":"FBgn0032871","EGF_Stimulus":"-0.6"},{"ID":"FBgn0010105","EGF_Stimulus":"1.24"},{"ID":"FBgn0036321","EGF_Stimulus":"0.39"},{"ID":"FBgn0034705","EGF_Stimulus":"-1.11"},{"ID":"FBgn0086608","EGF_Stimulus":"0.29"},{"ID":"FBgn0036406","EGF_Stimulus":"-0.67"},{"ID":"FBgn0029658","EGF_Stimulus":"0.8"},{"ID":"FBgn0039225","EGF_Stimulus":"0.4"},{"ID":"FBgn0025355","EGF_Stimulus":"-0.46"},{"ID":"FBgn0027259","EGF_Stimulus":"0.2"},{"ID":"FBgn0036287","EGF_Stimulus":"0.33"},{"ID":"FBgn0035574","EGF_Stimulus":"-0.87"},{"ID":"FBgn0037611","EGF_Stimulus":"0.56"},{"ID":"FBgn0023416","EGF_Stimulus":"-0.74"},{"ID":"FBgn0024833","EGF_Stimulus":"0.65"},{"ID":"FBgn0008651","EGF_Stimulus":"0.47"},{"ID":"FBgn0033873","EGF_Stimulus":"-1.4"},{"ID":"FBgn0053514","EGF_Stimulus":"-1.45"},{"ID":"FBgn0022700","EGF_Stimulus":"0.82"},{"ID":"FBgn0040958","EGF_Stimulus":"0.47"},{"ID":"FBgn0039909","EGF_Stimulus":"0.53"},{"ID":"FBgn0034210","EGF_Stimulus":"0.68"},{"ID":"FBgn0261396","EGF_Stimulus":"-2.03"},{"ID":"FBgn0027525","EGF_Stimulus":"-0.81"},{"ID":"FBgn0039087","EGF_Stimulus":"-1.71"},{"ID":"FBgn0034661","EGF_Stimulus":"-0.93"},{"ID":"FBgn0033056","EGF_Stimulus":"0.86"},{"ID":"FBgn0005648","EGF_Stimulus":"-1.72"},{"ID":"FBgn0035204","EGF_Stimulus":"0.81"},{"ID":"FBgn0259099","EGF_Stimulus":"-1.45"},{"ID":"FBgn0036104","EGF_Stimulus":"0.53"},{"ID":"FBgn0051323","EGF_Stimulus":"-0.86"},{"ID":"FBgn0037131","EGF_Stimulus":"-1.7"},{"ID":"FBgn0063499","EGF_Stimulus":"0.28"},{"ID":"FBgn0031513","EGF_Stimulus":"-0.53"},{"ID":"FBgn0031357","EGF_Stimulus":"-0.67"},{"ID":"FBgn0032493","EGF_Stimulus":"-0.91"},{"ID":"FBgn0039080","EGF_Stimulus":"1.02"},{"ID":"FBgn0038256","EGF_Stimulus":"-1.48"},{"ID":"FBgn0004432","EGF_Stimulus":"-0.87"},{"ID":"FBgn0250816","EGF_Stimulus":"0.77"},{"ID":"FBgn0259222","EGF_Stimulus":"0.82"},{"ID":"FBgn0041097","EGF_Stimulus":"1.54"},{"ID":"FBgn0038852","EGF_Stimulus":"-1.63"},{"ID":"FBgn0023517","EGF_Stimulus":"0.61"},{"ID":"FBgn0033264","EGF_Stimulus":"0.59"},{"ID":"FBgn0000644","EGF_Stimulus":"0.32"},{"ID":"FBgn0029155","EGF_Stimulus":"-0.5"},{"ID":"FBgn0038167","EGF_Stimulus":"0.78"},{"ID":"FBgn0040466","EGF_Stimulus":"-1.26"},{"ID":"FBgn0038354","EGF_Stimulus":"-2.97"},{"ID":"FBgn0015924","EGF_Stimulus":"1.07"},{"ID":"FBgn0053300","EGF_Stimulus":"-0.79"},{"ID":"FBgn0038269","EGF_Stimulus":"-2.55"},{"ID":"FBgn0036225","EGF_Stimulus":"0.5"},{"ID":"FBgn0034899","EGF_Stimulus":"1.1"},{"ID":"FBgn0038889","EGF_Stimulus":"1.79"},{"ID":"FBgn0003559","EGF_Stimulus":"2.34"},{"ID":"FBgn0035270","EGF_Stimulus":"-0.1"},{"ID":"FBgn0035151","EGF_Stimulus":"1.72"},{"ID":"FBgn0039844","EGF_Stimulus":"0.33"},{"ID":"FBgn0023521","EGF_Stimulus":"-1.15"},{"ID":"FBgn0038266","EGF_Stimulus":"0.29"},{"ID":"FBgn0033508","EGF_Stimulus":"0.14"},{"ID":"FBgn0045866","EGF_Stimulus":"-0.41"},{"ID":"FBgn0038642","EGF_Stimulus":"-1.57"},{"ID":"FBgn0038567","EGF_Stimulus":"-0.24"},{"ID":"FBgn0033244","EGF_Stimulus":"0.75"},{"ID":"FBgn0051872","EGF_Stimulus":"-0.71"},{"ID":"FBgn0053792","EGF_Stimulus":"0.2"},{"ID":"FBgn0038219","EGF_Stimulus":"-1.53"},{"ID":"FBgn0000212","EGF_Stimulus":"2.23"},{"ID":"FBgn0038805","EGF_Stimulus":"0.81"},{"ID":"FBgn0032151","EGF_Stimulus":"-2.59"},{"ID":"FBgn0260933","EGF_Stimulus":"-0.61"},{"ID":"FBgn0050287","EGF_Stimulus":"-0.61"},{"ID":"FBgn0003326","EGF_Stimulus":"-1.4"},{"ID":"FBgn0031757","EGF_Stimulus":"0.59"},{"ID":"FBgn0032066","EGF_Stimulus":"0.66"},{"ID":"FBgn0030050","EGF_Stimulus":"0.62"},{"ID":"FBgn0033153","EGF_Stimulus":"0.35"},{"ID":"FBgn0030007","EGF_Stimulus":"1.24"},{"ID":"FBgn0010611","EGF_Stimulus":"0.36"},{"ID":"FBgn0261067","EGF_Stimulus":"0.44"},{"ID":"FBgn0035393","EGF_Stimulus":"-1.16"},{"ID":"FBgn0034354","EGF_Stimulus":"0.72"},{"ID":"FBgn0034924","EGF_Stimulus":"-1.28"},{"ID":"FBgn0023197","EGF_Stimulus":"0.14"},{"ID":"FBgn0036781","EGF_Stimulus":"-0.77"},{"ID":"FBgn0029791","EGF_Stimulus":"-0.61"},{"ID":"FBgn0001297","EGF_Stimulus":"2.08"},{"ID":"FBgn0030338","EGF_Stimulus":"-0.69"},{"ID":"FBgn0029724","EGF_Stimulus":"-0.81"},{"ID":"FBgn0027621","EGF_Stimulus":"1.48"},{"ID":"FBgn0037786","EGF_Stimulus":"1.07"},{"ID":"FBgn0036202","EGF_Stimulus":"0.88"},{"ID":"FBgn0032513","EGF_Stimulus":"1.34"},{"ID":"FBgn0024364","EGF_Stimulus":"1.22"},{"ID":"FBgn0036072","EGF_Stimulus":"0.56"},{"ID":"FBgn0035410","EGF_Stimulus":"0.15"},{"ID":"FBgn0040087","EGF_Stimulus":"0.31"},{"ID":"FBgn0040553","EGF_Stimulus":"0.65"},{"ID":"FBgn0004855","EGF_Stimulus":"-1.28"},{"ID":"FBgn0038131","EGF_Stimulus":"-0.44"},{"ID":"FBgn0034128","EGF_Stimulus":"1.09"},{"ID":"FBgn0031638","EGF_Stimulus":"-0.58"},{"ID":"FBgn0032943","EGF_Stimulus":"0.86"},{"ID":"FBgn0085313","EGF_Stimulus":"-1.22"},{"ID":"FBgn0032721","EGF_Stimulus":"-0.43"},{"ID":"FBgn0261858","EGF_Stimulus":"0.51"},{"ID":"FBgn0003206","EGF_Stimulus":"-1.67"},{"ID":"FBgn0035679","EGF_Stimulus":"0.44"},{"ID":"FBgn0038547","EGF_Stimulus":"-4.29"},{"ID":"FBgn0038467","EGF_Stimulus":"1.08"},{"ID":"FBgn0034173","EGF_Stimulus":"0.52"},{"ID":"FBgn0033366","EGF_Stimulus":"0.81"},{"ID":"FBgn0004649","EGF_Stimulus":"0.27"},{"ID":"FBgn0037561","EGF_Stimulus":"-0.46"},{"ID":"FBgn0052376","EGF_Stimulus":"1.14"},{"ID":"FBgn0038206","EGF_Stimulus":"0.68"},{"ID":"FBgn0011569","EGF_Stimulus":"0.63"},{"ID":"FBgn0033726","EGF_Stimulus":"0.78"},{"ID":"FBgn0037975","EGF_Stimulus":"-0.95"},{"ID":"FBgn0052263","EGF_Stimulus":"-0.93"},{"ID":"FBgn0030859","EGF_Stimulus":"0.39"},{"ID":"FBgn0031392","EGF_Stimulus":"0.45"},{"ID":"FBgn0041625","EGF_Stimulus":"-0.97"},{"ID":"FBgn0037008","EGF_Stimulus":"0.39"},{"ID":"FBgn0034511","EGF_Stimulus":"1"},{"ID":"FBgn0033330","EGF_Stimulus":"0.6"},{"ID":"FBgn0260442","EGF_Stimulus":"-1.1"},{"ID":"FBgn0032223","EGF_Stimulus":"1.79"},{"ID":"FBgn0002906","EGF_Stimulus":"0.91"},{"ID":"FBgn0259192","EGF_Stimulus":"1.26"},{"ID":"FBgn0036266","EGF_Stimulus":"3.5"},{"ID":"FBgn0010263","EGF_Stimulus":"-0.66"},{"ID":"FBgn0085234","EGF_Stimulus":"-2.94"},{"ID":"FBgn0032971","EGF_Stimulus":"0.29"},{"ID":"FBgn0035476","EGF_Stimulus":"0.43"},{"ID":"FBgn0038450","EGF_Stimulus":"-0.39"},{"ID":"FBgn0050118","EGF_Stimulus":"0.72"},{"ID":"FBgn0032523","EGF_Stimulus":"0.67"},{"ID":"FBgn0038783","EGF_Stimulus":"-0.35"},{"ID":"FBgn0000416","EGF_Stimulus":"-0.7"},{"ID":"FBgn0036078","EGF_Stimulus":"0.49"},{"ID":"FBgn0039718","EGF_Stimulus":"0.9"},{"ID":"FBgn0032698","EGF_Stimulus":"0.4"},{"ID":"FBgn0044812","EGF_Stimulus":"0.81"},{"ID":"FBgn0036187","EGF_Stimulus":"-0.55"},{"ID":"FBgn0028406","EGF_Stimulus":"-1.95"},{"ID":"FBgn0031309","EGF_Stimulus":"-0.64"},{"ID":"FBgn0052834","EGF_Stimulus":"1.03"},{"ID":"FBgn0050172","EGF_Stimulus":"0.23"},{"ID":"FBgn0031878","EGF_Stimulus":"0.48"},{"ID":"FBgn0004868","EGF_Stimulus":"0.41"},{"ID":"FBgn0034724","EGF_Stimulus":"-0.83"},{"ID":"FBgn0034196","EGF_Stimulus":"0.16"},{"ID":"FBgn0036363","EGF_Stimulus":"1.24"},{"ID":"FBgn0004861","EGF_Stimulus":"0.75"},{"ID":"FBgn0038115","EGF_Stimulus":"1.3"},{"ID":"FBgn0039313","EGF_Stimulus":"-0.42"},{"ID":"FBgn0086689","EGF_Stimulus":"0.23"},{"ID":"FBgn0063492","EGF_Stimulus":"0.6"},{"ID":"FBgn0030266","EGF_Stimulus":"0.75"},{"ID":"FBgn0037265","EGF_Stimulus":"0.7"},{"ID":"FBgn0037101","EGF_Stimulus":"0.58"},{"ID":"FBgn0040323","EGF_Stimulus":"-1.84"},{"ID":"FBgn0052260","EGF_Stimulus":"-0.66"},{"ID":"FBgn0003302","EGF_Stimulus":"0.86"},{"ID":"FBgn0052829","EGF_Stimulus":"0.98"},{"ID":"FBgn0038598","EGF_Stimulus":"-1.46"},{"ID":"FBgn0033814","EGF_Stimulus":"-1.84"},{"ID":"FBgn0040391","EGF_Stimulus":"0.08"},{"ID":"FBgn0030162","EGF_Stimulus":"1.04"},{"ID":"FBgn0011704","EGF_Stimulus":"-3.38"},{"ID":"FBgn0023549","EGF_Stimulus":"1.03"},{"ID":"FBgn0034879","EGF_Stimulus":"-1.06"},{"ID":"FBgn0030257","EGF_Stimulus":"0.78"},{"ID":"FBgn0033463","EGF_Stimulus":"-0.94"},{"ID":"FBgn0031688","EGF_Stimulus":"0.75"},{"ID":"FBgn0003942","EGF_Stimulus":"-3.57"},{"ID":"FBgn0031659","EGF_Stimulus":"0.74"},{"ID":"FBgn0031995","EGF_Stimulus":"0.61"},{"ID":"FBgn0032753","EGF_Stimulus":"-0.61"},{"ID":"FBgn0029825","EGF_Stimulus":"0.6"},{"ID":"FBgn0032888","EGF_Stimulus":"0.51"},{"ID":"FBgn0052590","EGF_Stimulus":"-0.81"},{"ID":"FBgn0016696","EGF_Stimulus":"-0.32"},{"ID":"FBgn0036716","EGF_Stimulus":"1.25"},{"ID":"FBgn0031860","EGF_Stimulus":"0.29"},{"ID":"FBgn0036579","EGF_Stimulus":"0.46"},{"ID":"FBgn0013303","EGF_Stimulus":"-0.48"},{"ID":"FBgn0037856","EGF_Stimulus":"1.07"},{"ID":"FBgn0039296","EGF_Stimulus":"0.98"},{"ID":"FBgn0030643","EGF_Stimulus":"0.82"},{"ID":"FBgn0038873","EGF_Stimulus":"0.3"},{"ID":"FBgn0032729","EGF_Stimulus":"-1.06"},{"ID":"FBgn0036154","EGF_Stimulus":"2.13"},{"ID":"FBgn0033170","EGF_Stimulus":"0.97"},{"ID":"FBgn0053642","EGF_Stimulus":"1.44"},{"ID":"FBgn0083978","EGF_Stimulus":"1.34"},{"ID":"FBgn0026176","EGF_Stimulus":"0.93"},{"ID":"FBgn0031020","EGF_Stimulus":"2.41"},{"ID":"FBgn0039115","EGF_Stimulus":"-0.55"},{"ID":"FBgn0026080","EGF_Stimulus":"-3.5"},{"ID":"FBgn0011244","EGF_Stimulus":"1.16"},{"ID":"FBgn0021738","EGF_Stimulus":"-1.41"},{"ID":"FBgn0051230","EGF_Stimulus":"-1.31"},{"ID":"FBgn0022361","EGF_Stimulus":"1.15"},{"ID":"FBgn0034726","EGF_Stimulus":"0.52"},{"ID":"FBgn0032126","EGF_Stimulus":"-0.51"},{"ID":"FBgn0045478","EGF_Stimulus":"0.99"},{"ID":"FBgn0010422","EGF_Stimulus":"0.52"},{"ID":"FBgn0029114","EGF_Stimulus":"-1.14"},{"ID":"FBgn0002638","EGF_Stimulus":"1.29"},{"ID":"FBgn0028935","EGF_Stimulus":"-0.87"},{"ID":"FBgn0033957","EGF_Stimulus":"-0.63"},{"ID":"FBgn0015774","EGF_Stimulus":"0.65"},{"ID":"FBgn0040075","EGF_Stimulus":"-2.89"},{"ID":"FBgn0033395","EGF_Stimulus":"0.44"},{"ID":"FBgn0030195","EGF_Stimulus":"0.62"},{"ID":"FBgn0034721","EGF_Stimulus":"0.15"},{"ID":"FBgn0036204","EGF_Stimulus":"1.63"},{"ID":"FBgn0000533","EGF_Stimulus":"0.14"},{"ID":"FBgn0039239","EGF_Stimulus":"0.89"},{"ID":"FBgn0038348","EGF_Stimulus":"0.86"},{"ID":"FBgn0035849","EGF_Stimulus":"-0.6"},{"ID":"FBgn0036783","EGF_Stimulus":"0.21"},{"ID":"FBgn0040318","EGF_Stimulus":"0.71"},{"ID":"FBgn0260721","EGF_Stimulus":"0.79"},{"ID":"FBgn0260746","EGF_Stimulus":"0.75"},{"ID":"FBgn0259676","EGF_Stimulus":"0.32"},{"ID":"FBgn0041205","EGF_Stimulus":"1.92"},{"ID":"FBgn0035356","EGF_Stimulus":"1.37"},{"ID":"FBgn0028884","EGF_Stimulus":"-1.01"},{"ID":"FBgn0026319","EGF_Stimulus":"-0.77"},{"ID":"FBgn0025790","EGF_Stimulus":"2.2"},{"ID":"FBgn0250757","EGF_Stimulus":"0.9"},{"ID":"FBgn0038402","EGF_Stimulus":"0.21"},{"ID":"FBgn0040299","EGF_Stimulus":"1.34"},{"ID":"FBgn0259149","EGF_Stimulus":"-0.72"},{"ID":"FBgn0003716","EGF_Stimulus":"0.31"},{"ID":"FBgn0086442","EGF_Stimulus":"-1.13"},{"ID":"FBgn0031613","EGF_Stimulus":"-1"},{"ID":"FBgn0004057","EGF_Stimulus":"-1.09"},{"ID":"FBgn0003346","EGF_Stimulus":"0.98"},{"ID":"FBgn0065109","EGF_Stimulus":"-0.78"},{"ID":"FBgn0261058","EGF_Stimulus":"0.9"},{"ID":"FBgn0043533","EGF_Stimulus":"-0.41"},{"ID":"FBgn0039748","EGF_Stimulus":"0.51"},{"ID":"FBgn0003447","EGF_Stimulus":"0.68"},{"ID":"FBgn0030836","EGF_Stimulus":"0.95"},{"ID":"FBgn0031479","EGF_Stimulus":"0.02"},{"ID":"FBgn0011828","EGF_Stimulus":"-1.67"},{"ID":"FBgn0038505","EGF_Stimulus":"-1.14"},{"ID":"FBgn0037995","EGF_Stimulus":"0.76"},{"ID":"FBgn0027513","EGF_Stimulus":"0.91"},{"ID":"FBgn0036839","EGF_Stimulus":"0.53"},{"ID":"FBgn0015831","EGF_Stimulus":"1.2"},{"ID":"FBgn0026373","EGF_Stimulus":"-1.3"},{"ID":"FBgn0035922","EGF_Stimulus":"0.5"},{"ID":"FBgn0034663","EGF_Stimulus":"1.43"},{"ID":"FBgn0037749","EGF_Stimulus":"0.95"},{"ID":"FBgn0035642","EGF_Stimulus":"0.22"},{"ID":"FBgn0086691","EGF_Stimulus":"1.33"},{"ID":"FBgn0069913","EGF_Stimulus":"1.58"},{"ID":"FBgn0051759","EGF_Stimulus":"0.14"},{"ID":"FBgn0250842","EGF_Stimulus":"0.34"},{"ID":"FBgn0040493","EGF_Stimulus":"0.47"},{"ID":"FBgn0036571","EGF_Stimulus":"1.73"},{"ID":"FBgn0033131","EGF_Stimulus":"1.03"},{"ID":"FBgn0023531","EGF_Stimulus":"2.05"},{"ID":"FBgn0085442","EGF_Stimulus":"1.04"},{"ID":"FBgn0051634","EGF_Stimulus":"1.2"},{"ID":"FBgn0085428","EGF_Stimulus":"0.54"},{"ID":"FBgn0051661","EGF_Stimulus":"-0.76"},{"ID":"FBgn0036214","EGF_Stimulus":"0.16"},{"ID":"FBgn0039270","EGF_Stimulus":"-1.57"},{"ID":"FBgn0034152","EGF_Stimulus":"-0.31"},{"ID":"FBgn0002022","EGF_Stimulus":"-0.41"},{"ID":"FBgn0032627","EGF_Stimulus":"0.73"},{"ID":"FBgn0051949","EGF_Stimulus":"-0.63"},{"ID":"FBgn0011290","EGF_Stimulus":"1.72"},{"ID":"FBgn0025625","EGF_Stimulus":"0.82"},{"ID":"FBgn0051431","EGF_Stimulus":"-0.81"},{"ID":"FBgn0050357","EGF_Stimulus":"1.56"},{"ID":"FBgn0053483","EGF_Stimulus":"-0.53"},{"ID":"FBgn0250908","EGF_Stimulus":"0.8"},{"ID":"FBgn0054026","EGF_Stimulus":"0.25"},{"ID":"FBgn0041232","EGF_Stimulus":"-0.33"},{"ID":"FBgn0026394","EGF_Stimulus":"-0.49"},{"ID":"FBgn0030984","EGF_Stimulus":"0.35"},{"ID":"FBgn0038672","EGF_Stimulus":"1.6"},{"ID":"FBgn0030306","EGF_Stimulus":"0.43"},{"ID":"FBgn0034441","EGF_Stimulus":"0.56"},{"ID":"FBgn0038602","EGF_Stimulus":"0.43"},{"ID":"FBgn0050340","EGF_Stimulus":"1.58"},{"ID":"FBgn0027364","EGF_Stimulus":"-0.73"},{"ID":"FBgn0014007","EGF_Stimulus":"-1.02"},{"ID":"FBgn0030421","EGF_Stimulus":"0.67"},{"ID":"FBgn0038282","EGF_Stimulus":"1.02"},{"ID":"FBgn0037847","EGF_Stimulus":"1.45"},{"ID":"FBgn0033059","EGF_Stimulus":"-1.49"},{"ID":"FBgn0035931","EGF_Stimulus":"0.72"},{"ID":"FBgn0033993","EGF_Stimulus":"0.38"},{"ID":"FBgn0035850","EGF_Stimulus":"0.31"},{"ID":"FBgn0003996","EGF_Stimulus":"-0.39"},{"ID":"FBgn0051824","EGF_Stimulus":"-1.1"},{"ID":"FBgn0027945","EGF_Stimulus":"-1.21"},{"ID":"FBgn0261836","EGF_Stimulus":"1.69"},{"ID":"FBgn0011297","EGF_Stimulus":"-1.21"},{"ID":"FBgn0037591","EGF_Stimulus":"-0.53"},{"ID":"FBgn0016687","EGF_Stimulus":"1.14"},{"ID":"FBgn0261509","EGF_Stimulus":"1.52"},{"ID":"FBgn0027929","EGF_Stimulus":"0.57"},{"ID":"FBgn0033266","EGF_Stimulus":"-1.75"},{"ID":"FBgn0004926","EGF_Stimulus":"-2.16"},{"ID":"FBgn0030037","EGF_Stimulus":"0.4"},{"ID":"FBgn0010504","EGF_Stimulus":"0.4"},{"ID":"FBgn0085297","EGF_Stimulus":"1.08"},{"ID":"FBgn0029892","EGF_Stimulus":"-0.89"},{"ID":"FBgn0029088","EGF_Stimulus":"-0.46"},{"ID":"FBgn0051174","EGF_Stimulus":"-1.06"},{"ID":"FBgn0261532","EGF_Stimulus":"0.46"},{"ID":"FBgn0030374","EGF_Stimulus":"1.25"},{"ID":"FBgn0031859","EGF_Stimulus":"1.53"},{"ID":"FBgn0261565","EGF_Stimulus":"1.77"},{"ID":"FBgn0050393","EGF_Stimulus":"0.76"},{"ID":"FBgn0034142","EGF_Stimulus":"-0.71"},{"ID":"FBgn0036310","EGF_Stimulus":"0.22"},{"ID":"FBgn0259215","EGF_Stimulus":"1.21"},{"ID":"FBgn0037482","EGF_Stimulus":"0.23"},{"ID":"FBgn0037760","EGF_Stimulus":"0.73"},{"ID":"FBgn0261788","EGF_Stimulus":"-0.76"},{"ID":"FBgn0000479","EGF_Stimulus":"-1.67"},{"ID":"FBgn0037433","EGF_Stimulus":"0.88"},{"ID":"FBgn0021764","EGF_Stimulus":"1.22"},{"ID":"FBgn0000158","EGF_Stimulus":"0.91"},{"ID":"FBgn0033466","EGF_Stimulus":"-0.55"},{"ID":"FBgn0033594","EGF_Stimulus":"0.98"},{"ID":"FBgn0037420","EGF_Stimulus":"-1.66"},{"ID":"FBgn0033501","EGF_Stimulus":"0.36"},{"ID":"FBgn0038720","EGF_Stimulus":"0.91"},{"ID":"FBgn0034822","EGF_Stimulus":"0.75"},{"ID":"FBgn0028387","EGF_Stimulus":"0.95"},{"ID":"FBgn0037492","EGF_Stimulus":"-0.95"},{"ID":"FBgn0000183","EGF_Stimulus":"-0.3"},{"ID":"FBgn0000546","EGF_Stimulus":"0.92"},{"ID":"FBgn0024329","EGF_Stimulus":"1.18"},{"ID":"FBgn0040261","EGF_Stimulus":"0.16"},{"ID":"FBgn0039792","EGF_Stimulus":"0.77"},{"ID":"FBgn0033928","EGF_Stimulus":"0.23"},{"ID":"FBgn0033735","EGF_Stimulus":"-1.45"},{"ID":"FBgn0036830","EGF_Stimulus":"1.62"},{"ID":"FBgn0020616","EGF_Stimulus":"1.72"},{"ID":"FBgn0031491","EGF_Stimulus":"0.59"},{"ID":"FBgn0019925","EGF_Stimulus":"0.95"},{"ID":"FBgn0033246","EGF_Stimulus":"-0.74"},{"ID":"FBgn0030259","EGF_Stimulus":"1.39"},{"ID":"FBgn0034901","EGF_Stimulus":"0.99"},{"ID":"FBgn0013347","EGF_Stimulus":"1.33"},{"ID":"FBgn0027616","EGF_Stimulus":"-0.59"},{"ID":"FBgn0040877","EGF_Stimulus":"-1.07"},{"ID":"FBgn0032600","EGF_Stimulus":"-2.36"},{"ID":"FBgn0039369","EGF_Stimulus":"-0.27"},{"ID":"FBgn0037516","EGF_Stimulus":"0.22"},{"ID":"FBgn0035001","EGF_Stimulus":"1.56"},{"ID":"FBgn0036751","EGF_Stimulus":"-0.84"},{"ID":"FBgn0035975","EGF_Stimulus":"0.88"},{"ID":"FBgn0037850","EGF_Stimulus":"-5.05"},{"ID":"FBgn0052259","EGF_Stimulus":"0.09"},{"ID":"FBgn0032781","EGF_Stimulus":"0.54"},{"ID":"FBgn0031997","EGF_Stimulus":"-0.72"},{"ID":"FBgn0034766","EGF_Stimulus":"0.7"},{"ID":"FBgn0022268","EGF_Stimulus":"0.86"},{"ID":"FBgn0036937","EGF_Stimulus":"-0.49"},{"ID":"FBgn0000611","EGF_Stimulus":"0.46"},{"ID":"FBgn0052687","EGF_Stimulus":"0.96"},{"ID":"FBgn0034502","EGF_Stimulus":"0.34"},{"ID":"FBgn0036415","EGF_Stimulus":"-0.62"},{"ID":"FBgn0043903","EGF_Stimulus":"2.13"},{"ID":"FBgn0260645","EGF_Stimulus":"0.81"},{"ID":"FBgn0035083","EGF_Stimulus":"1.35"},{"ID":"FBgn0001124","EGF_Stimulus":"0.62"},{"ID":"FBgn0040208","EGF_Stimulus":"1.44"},{"ID":"FBgn0031144","EGF_Stimulus":"0.73"},{"ID":"FBgn0044328","EGF_Stimulus":"0.6"},{"ID":"FBgn0031453","EGF_Stimulus":"1.67"},{"ID":"FBgn0035693","EGF_Stimulus":"0.35"},{"ID":"FBgn0035027","EGF_Stimulus":"0.43"},{"ID":"FBgn0031528","EGF_Stimulus":"-0.58"},{"ID":"FBgn0039696","EGF_Stimulus":"-1.28"},{"ID":"FBgn0040907","EGF_Stimulus":"0.43"},{"ID":"FBgn0029941","EGF_Stimulus":"-0.94"},{"ID":"FBgn0053490","EGF_Stimulus":"-1.07"},{"ID":"FBgn0038525","EGF_Stimulus":"-1.45"},{"ID":"FBgn0085396","EGF_Stimulus":"1.38"},{"ID":"FBgn0037217","EGF_Stimulus":"-0.51"},{"ID":"FBgn0032448","EGF_Stimulus":"0.64"},{"ID":"FBgn0051624","EGF_Stimulus":"-0.96"},{"ID":"FBgn0033029","EGF_Stimulus":"2.38"},{"ID":"FBgn0034569","EGF_Stimulus":"-1.09"},{"ID":"FBgn0001149","EGF_Stimulus":"1.04"},{"ID":"FBgn0034539","EGF_Stimulus":"2.27"},{"ID":"FBgn0034542","EGF_Stimulus":"1.38"},{"ID":"FBgn0033083","EGF_Stimulus":"-0.94"},{"ID":"FBgn0041247","EGF_Stimulus":"0.19"},{"ID":"FBgn0033932","EGF_Stimulus":"1.08"},{"ID":"FBgn0030700","EGF_Stimulus":"0.21"},{"ID":"FBgn0032000","EGF_Stimulus":"-0.29"},{"ID":"FBgn0026090","EGF_Stimulus":"0.86"},{"ID":"FBgn0033187","EGF_Stimulus":"0.34"},{"ID":"FBgn0010488","EGF_Stimulus":"1.96"},{"ID":"FBgn0004878","EGF_Stimulus":"-0.19"},{"ID":"FBgn0000116","EGF_Stimulus":"-0.98"},{"ID":"FBgn0037416","EGF_Stimulus":"-0.2"},{"ID":"FBgn0034487","EGF_Stimulus":"-0.17"},{"ID":"FBgn0033104","EGF_Stimulus":"-0.73"},{"ID":"FBgn0032634","EGF_Stimulus":"-1.46"},{"ID":"FBgn0028863","EGF_Stimulus":"0.25"},{"ID":"FBgn0030998","EGF_Stimulus":"0.24"},{"ID":"FBgn0039648","EGF_Stimulus":"0.6"},{"ID":"FBgn0036557","EGF_Stimulus":"0.28"},{"ID":"FBgn0051690","EGF_Stimulus":"1.18"},{"ID":"FBgn0011582","EGF_Stimulus":"0.24"},{"ID":"FBgn0038275","EGF_Stimulus":"0.61"},{"ID":"FBgn0017581","EGF_Stimulus":"-0.19"},{"ID":"FBgn0038956","EGF_Stimulus":"0.16"},{"ID":"FBgn0038510","EGF_Stimulus":"1.44"},{"ID":"FBgn0038330","EGF_Stimulus":"0.63"},{"ID":"FBgn0038001","EGF_Stimulus":"-2.24"},{"ID":"FBgn0004052","EGF_Stimulus":"0.29"},{"ID":"FBgn0033275","EGF_Stimulus":"-0.62"},{"ID":"FBgn0035718","EGF_Stimulus":"0.44"},{"ID":"FBgn0033499","EGF_Stimulus":"0.91"},{"ID":"FBgn0029105","EGF_Stimulus":"-1.5"},{"ID":"FBgn0037533","EGF_Stimulus":"0.91"},{"ID":"FBgn0033382","EGF_Stimulus":"0.18"},{"ID":"FBgn0259176","EGF_Stimulus":"0.73"},{"ID":"FBgn0034554","EGF_Stimulus":"0.44"},{"ID":"FBgn0037930","EGF_Stimulus":"1.07"},{"ID":"FBgn0023216","EGF_Stimulus":"-0.31"},{"ID":"FBgn0040719","EGF_Stimulus":"1.14"},{"ID":"FBgn0033431","EGF_Stimulus":"-1.46"},{"ID":"FBgn0004431","EGF_Stimulus":"1.64"},{"ID":"FBgn0035842","EGF_Stimulus":"-1.11"},{"ID":"FBgn0034583","EGF_Stimulus":"0.28"},{"ID":"FBgn0033899","EGF_Stimulus":"-2.19"},{"ID":"FBgn0038210","EGF_Stimulus":"0.69"},{"ID":"FBgn0027527","EGF_Stimulus":"-0.59"},{"ID":"FBgn0050183","EGF_Stimulus":"1.5"},{"ID":"FBgn0036685","EGF_Stimulus":"-1.28"},{"ID":"FBgn0039182","EGF_Stimulus":"-0.95"},{"ID":"FBgn0037415","EGF_Stimulus":"-0.88"},{"ID":"FBgn0026721","EGF_Stimulus":"2.28"},{"ID":"FBgn0032393","EGF_Stimulus":"0.65"},{"ID":"FBgn0003416","EGF_Stimulus":"1.76"},{"ID":"FBgn0032563","EGF_Stimulus":"-1.97"},{"ID":"FBgn0030722","EGF_Stimulus":"-0.18"},{"ID":"FBgn0030589","EGF_Stimulus":"0.31"},{"ID":"FBgn0030943","EGF_Stimulus":"-0.27"},{"ID":"FBgn0040305","EGF_Stimulus":"1.41"},{"ID":"FBgn0039337","EGF_Stimulus":"1.39"},{"ID":"FBgn0042129","EGF_Stimulus":"-0.62"},{"ID":"FBgn0038398","EGF_Stimulus":"1.49"},{"ID":"FBgn0034657","EGF_Stimulus":"-1"},{"ID":"FBgn0029762","EGF_Stimulus":"-0.81"},{"ID":"FBgn0002531","EGF_Stimulus":"-2.38"},{"ID":"FBgn0052507","EGF_Stimulus":"-0.41"},{"ID":"FBgn0034915","EGF_Stimulus":"1.72"},{"ID":"FBgn0035137","EGF_Stimulus":"-0.05"},{"ID":"FBgn0016926","EGF_Stimulus":"-2.33"},{"ID":"FBgn0016075","EGF_Stimulus":"1.3"},{"ID":"FBgn0000308","EGF_Stimulus":"0.9"},{"ID":"FBgn0034094","EGF_Stimulus":"1.07"},{"ID":"FBgn0027932","EGF_Stimulus":"0.53"},{"ID":"FBgn0051404","EGF_Stimulus":"1.09"},{"ID":"FBgn0039189","EGF_Stimulus":"-0.68"},{"ID":"FBgn0029656","EGF_Stimulus":"-1.13"},{"ID":"FBgn0013981","EGF_Stimulus":"-6.3"},{"ID":"FBgn0035325","EGF_Stimulus":"-0.51"},{"ID":"FBgn0051741","EGF_Stimulus":"1.1"},{"ID":"FBgn0026741","EGF_Stimulus":"0.78"},{"ID":"FBgn0027342","EGF_Stimulus":"0.28"},{"ID":"FBgn0000137","EGF_Stimulus":"-0.73"},{"ID":"FBgn0034572","EGF_Stimulus":"2.18"},{"ID":"FBgn0032907","EGF_Stimulus":"-1.57"},{"ID":"FBgn0010288","EGF_Stimulus":"-0.07"},{"ID":"FBgn0051155","EGF_Stimulus":"-1.39"},{"ID":"FBgn0034223","EGF_Stimulus":"0.42"},{"ID":"FBgn0037360","EGF_Stimulus":"1.11"},{"ID":"FBgn0054030","EGF_Stimulus":"0.56"},{"ID":"FBgn0001169","EGF_Stimulus":"0.32"},{"ID":"FBgn0052563","EGF_Stimulus":"0.11"},{"ID":"FBgn0051374","EGF_Stimulus":"1.15"},{"ID":"FBgn0052713","EGF_Stimulus":"0.17"},{"ID":"FBgn0052391","EGF_Stimulus":"0.55"},{"ID":"FBgn0034478","EGF_Stimulus":"-0.4"},{"ID":"FBgn0003401","EGF_Stimulus":"1.38"},{"ID":"FBgn0004509","EGF_Stimulus":"0.75"},{"ID":"FBgn0029525","EGF_Stimulus":"-0.73"},{"ID":"FBgn0036285","EGF_Stimulus":"0.48"},{"ID":"FBgn0032084","EGF_Stimulus":"0.68"},{"ID":"FBgn0032908","EGF_Stimulus":"1.71"},{"ID":"FBgn0033050","EGF_Stimulus":"1.69"},{"ID":"FBgn0033379","EGF_Stimulus":"-1.56"},{"ID":"FBgn0028665","EGF_Stimulus":"-1.53"},{"ID":"FBgn0032029","EGF_Stimulus":"0.76"},{"ID":"FBgn0030792","EGF_Stimulus":"0.55"},{"ID":"FBgn0029880","EGF_Stimulus":"0.64"},{"ID":"FBgn0031563","EGF_Stimulus":"-0.49"},{"ID":"FBgn0040338","EGF_Stimulus":"0.98"},{"ID":"FBgn0032249","EGF_Stimulus":"-0.67"},{"ID":"FBgn0039674","EGF_Stimulus":"-0.88"},{"ID":"FBgn0021953","EGF_Stimulus":"-0.29"},{"ID":"FBgn0033475","EGF_Stimulus":"1.39"},{"ID":"FBgn0000384","EGF_Stimulus":"0.33"},{"ID":"FBgn0050096","EGF_Stimulus":"-0.9"},{"ID":"FBgn0041588","EGF_Stimulus":"0.24"},{"ID":"FBgn0037894","EGF_Stimulus":"-0.52"},{"ID":"FBgn0010041","EGF_Stimulus":"-0.78"},{"ID":"FBgn0014342","EGF_Stimulus":"0.41"},{"ID":"FBgn0026395","EGF_Stimulus":"1"},{"ID":"FBgn0033215","EGF_Stimulus":"-0.5"},{"ID":"FBgn0031773","EGF_Stimulus":"0.84"},{"ID":"FBgn0011694","EGF_Stimulus":"-1.04"},{"ID":"FBgn0034703","EGF_Stimulus":"0.89"},{"ID":"FBgn0037814","EGF_Stimulus":"-1.1"},{"ID":"FBgn0033679","EGF_Stimulus":"-0.65"},{"ID":"FBgn0031538","EGF_Stimulus":"-0.53"},{"ID":"FBgn0031498","EGF_Stimulus":"-0.25"},{"ID":"FBgn0040809","EGF_Stimulus":"-1.05"},{"ID":"FBgn0053557","EGF_Stimulus":"-0.57"},{"ID":"FBgn0052103","EGF_Stimulus":"-0.86"},{"ID":"FBgn0052631","EGF_Stimulus":"-1.39"},{"ID":"FBgn0035588","EGF_Stimulus":"1.76"},{"ID":"FBgn0033919","EGF_Stimulus":"1.35"},{"ID":"FBgn0026620","EGF_Stimulus":"-0.52"},{"ID":"FBgn0051612","EGF_Stimulus":"-1.01"},{"ID":"FBgn0046222","EGF_Stimulus":"-2.14"},{"ID":"FBgn0015001","EGF_Stimulus":"0.37"},{"ID":"FBgn0052727","EGF_Stimulus":"0.28"},{"ID":"FBgn0033996","EGF_Stimulus":"1.24"},{"ID":"FBgn0036546","EGF_Stimulus":"1.12"},{"ID":"FBgn0259219","EGF_Stimulus":"0.92"},{"ID":"FBgn0085265","EGF_Stimulus":"0.77"},{"ID":"FBgn0032340","EGF_Stimulus":"1.83"},{"ID":"FBgn0003463","EGF_Stimulus":"-0.96"},{"ID":"FBgn0050104","EGF_Stimulus":"-0.16"},{"ID":"FBgn0035255","EGF_Stimulus":"-0.18"},{"ID":"FBgn0043578","EGF_Stimulus":"-0.29"},{"ID":"FBgn0035929","EGF_Stimulus":"0.34"},{"ID":"FBgn0016041","EGF_Stimulus":"-0.59"},{"ID":"FBgn0031988","EGF_Stimulus":"-0.57"},{"ID":"FBgn0030850","EGF_Stimulus":"-1.25"},{"ID":"FBgn0004687","EGF_Stimulus":"1.23"},{"ID":"FBgn0040268","EGF_Stimulus":"0.64"},{"ID":"FBgn0034394","EGF_Stimulus":"1.29"},{"ID":"FBgn0027338","EGF_Stimulus":"-1.46"},{"ID":"FBgn0036138","EGF_Stimulus":"0.61"},{"ID":"FBgn0024689","EGF_Stimulus":"-0.92"},{"ID":"FBgn0260798","EGF_Stimulus":"-0.56"},{"ID":"FBgn0039734","EGF_Stimulus":"1.16"},{"ID":"FBgn0033687","EGF_Stimulus":"0.82"},{"ID":"FBgn0031164","EGF_Stimulus":"-0.44"},{"ID":"FBgn0033458","EGF_Stimulus":"-0.49"},{"ID":"FBgn0038440","EGF_Stimulus":"0.62"},{"ID":"FBgn0031209","EGF_Stimulus":"0.91"},{"ID":"FBgn0034232","EGF_Stimulus":"0.44"},{"ID":"FBgn0038381","EGF_Stimulus":"2.01"},{"ID":"FBgn0037063","EGF_Stimulus":"1.04"},{"ID":"FBgn0052106","EGF_Stimulus":"-0.49"},{"ID":"FBgn0030418","EGF_Stimulus":"-1.25"},{"ID":"FBgn0035685","EGF_Stimulus":"0.6"},{"ID":"FBgn0040528","EGF_Stimulus":"0.66"},{"ID":"FBgn0035004","EGF_Stimulus":"-1.19"},{"ID":"FBgn0030594","EGF_Stimulus":"-0.54"},{"ID":"FBgn0039505","EGF_Stimulus":"-0.2"},{"ID":"FBgn0028407","EGF_Stimulus":"1.17"},{"ID":"FBgn0034814","EGF_Stimulus":"1.29"},{"ID":"FBgn0041150","EGF_Stimulus":"-0.98"},{"ID":"FBgn0015806","EGF_Stimulus":"-1.4"},{"ID":"FBgn0025111","EGF_Stimulus":"-1.61"},{"ID":"FBgn0039124","EGF_Stimulus":"0.19"},{"ID":"FBgn0028411","EGF_Stimulus":"2.06"},{"ID":"FBgn0051279","EGF_Stimulus":"-0.8"},{"ID":"FBgn0040502","EGF_Stimulus":"0.4"},{"ID":"FBgn0034425","EGF_Stimulus":"0.37"},{"ID":"FBgn0035508","EGF_Stimulus":"0.97"},{"ID":"FBgn0013576","EGF_Stimulus":"1.04"},{"ID":"FBgn0032609","EGF_Stimulus":"1.04"},{"ID":"FBgn0030342","EGF_Stimulus":"0.97"},{"ID":"FBgn0086370","EGF_Stimulus":"1.49"},{"ID":"FBgn0260007","EGF_Stimulus":"-1.53"},{"ID":"FBgn0031760","EGF_Stimulus":"1.1"},{"ID":"FBgn0042146","EGF_Stimulus":"1.2"},{"ID":"FBgn0047114","EGF_Stimulus":"1.08"},{"ID":"FBgn0038325","EGF_Stimulus":"-0.62"},{"ID":"FBgn0085503","EGF_Stimulus":"0.75"},{"ID":"FBgn0026263","EGF_Stimulus":"1.17"},{"ID":"FBgn0051728","EGF_Stimulus":"0.73"},{"ID":"FBgn0259113","EGF_Stimulus":"0.86"},{"ID":"FBgn0020272","EGF_Stimulus":"-0.44"},{"ID":"FBgn0030787","EGF_Stimulus":"0.46"},{"ID":"FBgn0036893","EGF_Stimulus":"0.41"},{"ID":"FBgn0051516","EGF_Stimulus":"0.5"},{"ID":"FBgn0033566","EGF_Stimulus":"-0.74"},{"ID":"FBgn0086356","EGF_Stimulus":"-0.75"},{"ID":"FBgn0001315","EGF_Stimulus":"0.97"},{"ID":"FBgn0002552","EGF_Stimulus":"0.28"},{"ID":"FBgn0034943","EGF_Stimulus":"-0.58"},{"ID":"FBgn0036402","EGF_Stimulus":"6.19"},{"ID":"FBgn0004777","EGF_Stimulus":"1.46"},{"ID":"FBgn0035983","EGF_Stimulus":"0.58"},{"ID":"FBgn0013676","EGF_Stimulus":"0.4"},{"ID":"FBgn0036496","EGF_Stimulus":"0.99"},{"ID":"FBgn0029646","EGF_Stimulus":"0.94"},{"ID":"FBgn0004380","EGF_Stimulus":"-0.14"},{"ID":"FBgn0039920","EGF_Stimulus":"-0.84"},{"ID":"FBgn0038447","EGF_Stimulus":"0.67"},{"ID":"FBgn0037489","EGF_Stimulus":"-1.12"},{"ID":"FBgn0050067","EGF_Stimulus":"0.51"},{"ID":"FBgn0050192","EGF_Stimulus":"1.14"},{"ID":"FBgn0053543","EGF_Stimulus":"-0.97"},{"ID":"FBgn0051922","EGF_Stimulus":"-0.6"},{"ID":"FBgn0050151","EGF_Stimulus":"-0.79"},{"ID":"FBgn0033696","EGF_Stimulus":"0.49"},{"ID":"FBgn0039261","EGF_Stimulus":"-0.3"},{"ID":"FBgn0024191","EGF_Stimulus":"1.16"},{"ID":"FBgn0036476","EGF_Stimulus":"-1.8"},{"ID":"FBgn0032193","EGF_Stimulus":"0.76"},{"ID":"FBgn0001254","EGF_Stimulus":"-1.17"},{"ID":"FBgn0052808","EGF_Stimulus":"-1.07"},{"ID":"FBgn0030495","EGF_Stimulus":"-0.48"},{"ID":"FBgn0030563","EGF_Stimulus":"0.69"},{"ID":"FBgn0014466","EGF_Stimulus":"0.82"},{"ID":"FBgn0038301","EGF_Stimulus":"0.69"},{"ID":"FBgn0030718","EGF_Stimulus":"1.41"},{"ID":"FBgn0038695","EGF_Stimulus":"-0.08"},{"ID":"FBgn0038972","EGF_Stimulus":"1.06"},{"ID":"FBgn0028892","EGF_Stimulus":"-1.62"},{"ID":"FBgn0003274","EGF_Stimulus":"-4.32"},{"ID":"FBgn0032701","EGF_Stimulus":"0.59"},{"ID":"FBgn0037606","EGF_Stimulus":"0.59"},{"ID":"FBgn0031281","EGF_Stimulus":"1.38"},{"ID":"FBgn0038098","EGF_Stimulus":"0.77"},{"ID":"FBgn0020545","EGF_Stimulus":"0.73"},{"ID":"FBgn0033889","EGF_Stimulus":"-4.96"},{"ID":"FBgn0037195","EGF_Stimulus":"0.61"},{"ID":"FBgn0035193","EGF_Stimulus":"-0.2"},{"ID":"FBgn0038170","EGF_Stimulus":"0.53"},{"ID":"FBgn0024945","EGF_Stimulus":"-0.44"},{"ID":"FBgn0052693","EGF_Stimulus":"-0.24"},{"ID":"FBgn0037722","EGF_Stimulus":"-1.63"},{"ID":"FBgn0046878","EGF_Stimulus":"-0.72"},{"ID":"FBgn0036679","EGF_Stimulus":"-0.86"},{"ID":"FBgn0029690","EGF_Stimulus":"0.58"},{"ID":"FBgn0037614","EGF_Stimulus":"0.74"},{"ID":"FBgn0039064","EGF_Stimulus":"0.48"},{"ID":"FBgn0032217","EGF_Stimulus":"0.27"},{"ID":"FBgn0036277","EGF_Stimulus":"1.46"},{"ID":"FBgn0034180","EGF_Stimulus":"1.83"},{"ID":"FBgn0003261","EGF_Stimulus":"-1.43"},{"ID":"FBgn0029951","EGF_Stimulus":"1.23"},{"ID":"FBgn0053704","EGF_Stimulus":"-0.26"},{"ID":"FBgn0035317","EGF_Stimulus":"0.75"},{"ID":"FBgn0031446","EGF_Stimulus":"-0.31"},{"ID":"FBgn0026754","EGF_Stimulus":"-0.29"},{"ID":"FBgn0052600","EGF_Stimulus":"1.07"},{"ID":"FBgn0038035","EGF_Stimulus":"0.61"},{"ID":"FBgn0035501","EGF_Stimulus":"0.15"},{"ID":"FBgn0031769","EGF_Stimulus":"0.75"},{"ID":"FBgn0036951","EGF_Stimulus":"0.75"},{"ID":"FBgn0005633","EGF_Stimulus":"0.35"},{"ID":"FBgn0027094","EGF_Stimulus":"0.31"},{"ID":"FBgn0011476","EGF_Stimulus":"0.47"},{"ID":"FBgn0023536","EGF_Stimulus":"1.22"},{"ID":"FBgn0037875","EGF_Stimulus":"-1.34"},{"ID":"FBgn0039324","EGF_Stimulus":"-0.57"},{"ID":"FBgn0015797","EGF_Stimulus":"-0.57"},{"ID":"FBgn0013726","EGF_Stimulus":"0.7"},{"ID":"FBgn0039429","EGF_Stimulus":"-1.36"},{"ID":"FBgn0036616","EGF_Stimulus":"0.52"},{"ID":"FBgn0033092","EGF_Stimulus":"-0.55"},{"ID":"FBgn0043364","EGF_Stimulus":"0.8"},{"ID":"FBgn0038159","EGF_Stimulus":"0.38"},{"ID":"FBgn0033140","EGF_Stimulus":"0.76"},{"ID":"FBgn0005696","EGF_Stimulus":"-1.3"},{"ID":"FBgn0039481","EGF_Stimulus":"0.79"},{"ID":"FBgn0016919","EGF_Stimulus":"0.92"},{"ID":"FBgn0039043","EGF_Stimulus":"-0.59"},{"ID":"FBgn0002715","EGF_Stimulus":"-1.64"},{"ID":"FBgn0004373","EGF_Stimulus":"-0.32"},{"ID":"FBgn0028541","EGF_Stimulus":"-1.06"},{"ID":"FBgn0250833","EGF_Stimulus":"1.08"},{"ID":"FBgn0051999","EGF_Stimulus":"0.93"},{"ID":"FBgn0038319","EGF_Stimulus":"0.24"},{"ID":"FBgn0031412","EGF_Stimulus":"-0.79"},{"ID":"FBgn0031220","EGF_Stimulus":"1.6"},{"ID":"FBgn0027903","EGF_Stimulus":"-0.36"},{"ID":"FBgn0027620","EGF_Stimulus":"-0.95"},{"ID":"FBgn0035550","EGF_Stimulus":"0.52"},{"ID":"FBgn0001234","EGF_Stimulus":"-0.4"},{"ID":"FBgn0259236","EGF_Stimulus":"1.27"},{"ID":"FBgn0038916","EGF_Stimulus":"0.3"},{"ID":"FBgn0004908","EGF_Stimulus":"-0.69"},{"ID":"FBgn0039636","EGF_Stimulus":"1.06"},{"ID":"FBgn0053194","EGF_Stimulus":"-0.65"},{"ID":"FBgn0015521","EGF_Stimulus":"-2.73"},{"ID":"FBgn0036874","EGF_Stimulus":"0.35"},{"ID":"FBgn0037779","EGF_Stimulus":"-1.22"},{"ID":"FBgn0037013","EGF_Stimulus":"-0.27"},{"ID":"FBgn0028504","EGF_Stimulus":"1.25"},{"ID":"FBgn0037312","EGF_Stimulus":"0.9"},{"ID":"FBgn0039471","EGF_Stimulus":"-1"},{"ID":"FBgn0037964","EGF_Stimulus":"1.29"},{"ID":"FBgn0032507","EGF_Stimulus":"0.41"},{"ID":"FBgn0033168","EGF_Stimulus":"-0.78"},{"ID":"FBgn0261928","EGF_Stimulus":"0.9"},{"ID":"FBgn0030688","EGF_Stimulus":"1.21"},{"ID":"FBgn0021825","EGF_Stimulus":"0.3"},{"ID":"FBgn0037085","EGF_Stimulus":"1.15"},{"ID":"FBgn0029863","EGF_Stimulus":"0.66"},{"ID":"FBgn0032813","EGF_Stimulus":"0.8"},{"ID":"FBgn0032314","EGF_Stimulus":"-0.31"},{"ID":"FBgn0027538","EGF_Stimulus":"-0.09"},{"ID":"FBgn0037429","EGF_Stimulus":"1.08"},{"ID":"FBgn0050466","EGF_Stimulus":"0.37"},{"ID":"FBgn0086779","EGF_Stimulus":"0.68"},{"ID":"FBgn0037635","EGF_Stimulus":"0.46"},{"ID":"FBgn0025865","EGF_Stimulus":"-0.78"},{"ID":"FBgn0260461","EGF_Stimulus":"0.46"},{"ID":"FBgn0037207","EGF_Stimulus":"-1.74"},{"ID":"FBgn0052462","EGF_Stimulus":"-0.55"},{"ID":"FBgn0029697","EGF_Stimulus":"0.15"},{"ID":"FBgn0038039","EGF_Stimulus":"-0.36"},{"ID":"FBgn0015010","EGF_Stimulus":"-0.68"},{"ID":"FBgn0024995","EGF_Stimulus":"0.36"},{"ID":"FBgn0035333","EGF_Stimulus":"0.64"},{"ID":"FBgn0039355","EGF_Stimulus":"-0.43"},{"ID":"FBgn0039486","EGF_Stimulus":"0.43"},{"ID":"FBgn0028691","EGF_Stimulus":"-0.82"},{"ID":"FBgn0029661","EGF_Stimulus":"0.37"},{"ID":"FBgn0085465","EGF_Stimulus":"-0.65"},{"ID":"FBgn0086472","EGF_Stimulus":"-0.66"},{"ID":"FBgn0085204","EGF_Stimulus":"-3.24"},{"ID":"FBgn0014026","EGF_Stimulus":"-3.38"},{"ID":"FBgn0014141","EGF_Stimulus":"0.79"},{"ID":"FBgn0029990","EGF_Stimulus":"0.74"},{"ID":"FBgn0000244","EGF_Stimulus":"0.29"},{"ID":"FBgn0033638","EGF_Stimulus":"-1.05"},{"ID":"FBgn0030660","EGF_Stimulus":"-0.33"},{"ID":"FBgn0051004","EGF_Stimulus":"0.48"},{"ID":"FBgn0011762","EGF_Stimulus":"-0.06"},{"ID":"FBgn0004778","EGF_Stimulus":"0.1"},{"ID":"FBgn0034463","EGF_Stimulus":"0.19"},{"ID":"FBgn0039164","EGF_Stimulus":"0.66"},{"ID":"FBgn0051055","EGF_Stimulus":"0.99"},{"ID":"FBgn0038341","EGF_Stimulus":"0.99"},{"ID":"FBgn0028875","EGF_Stimulus":"-1.18"},{"ID":"FBgn0034069","EGF_Stimulus":"0.55"},{"ID":"FBgn0037700","EGF_Stimulus":"-1.38"},{"ID":"FBgn0028327","EGF_Stimulus":"1.05"},{"ID":"FBgn0015277","EGF_Stimulus":"-0.97"},{"ID":"FBgn0034072","EGF_Stimulus":"0.84"},{"ID":"FBgn0260003","EGF_Stimulus":"0.68"},{"ID":"FBgn0037147","EGF_Stimulus":"0.62"},{"ID":"FBgn0035162","EGF_Stimulus":"0.85"},{"ID":"FBgn0038960","EGF_Stimulus":"-0.76"},{"ID":"FBgn0040650","EGF_Stimulus":"0.59"},{"ID":"FBgn0024814","EGF_Stimulus":"0.94"},{"ID":"FBgn0039770","EGF_Stimulus":"-0.7"},{"ID":"FBgn0034741","EGF_Stimulus":"0.88"},{"ID":"FBgn0039627","EGF_Stimulus":"-0.33"},{"ID":"FBgn0031976","EGF_Stimulus":"-0.7"},{"ID":"FBgn0003279","EGF_Stimulus":"-3.6"},{"ID":"FBgn0034520","EGF_Stimulus":"0.94"},{"ID":"FBgn0039017","EGF_Stimulus":"1"},{"ID":"FBgn0028513","EGF_Stimulus":"-0.66"},{"ID":"FBgn0053474","EGF_Stimulus":"-1.12"},{"ID":"FBgn0038361","EGF_Stimulus":"0.38"},{"ID":"FBgn0034623","EGF_Stimulus":"0.5"},{"ID":"FBgn0036528","EGF_Stimulus":"0.85"},{"ID":"FBgn0000256","EGF_Stimulus":"1.29"},{"ID":"FBgn0036820","EGF_Stimulus":"-1.85"},{"ID":"FBgn0032256","EGF_Stimulus":"0.16"},{"ID":"FBgn0039525","EGF_Stimulus":"1.18"},{"ID":"FBgn0023542","EGF_Stimulus":"0.54"},{"ID":"FBgn0039010","EGF_Stimulus":"-0.77"},{"ID":"FBgn0039852","EGF_Stimulus":"-1.42"},{"ID":"FBgn0026252","EGF_Stimulus":"-0.27"},{"ID":"FBgn0028401","EGF_Stimulus":"0.17"},{"ID":"FBgn0033209","EGF_Stimulus":"0.86"},{"ID":"FBgn0025682","EGF_Stimulus":"-0.66"},{"ID":"FBgn0033663","EGF_Stimulus":"-0.53"},{"ID":"FBgn0030744","EGF_Stimulus":"1.04"},{"ID":"FBgn0031361","EGF_Stimulus":"0.89"},{"ID":"FBgn0028396","EGF_Stimulus":"1.37"},{"ID":"FBgn0033221","EGF_Stimulus":"-0.98"},{"ID":"FBgn0004463","EGF_Stimulus":"-0.69"},{"ID":"FBgn0036762","EGF_Stimulus":"-0.65"},{"ID":"FBgn0001085","EGF_Stimulus":"-0.68"},{"ID":"FBgn0030799","EGF_Stimulus":"0.04"},{"ID":"FBgn0032230","EGF_Stimulus":"1.23"},{"ID":"FBgn0030510","EGF_Stimulus":"1.07"},{"ID":"FBgn0032475","EGF_Stimulus":"0.16"},{"ID":"FBgn0052423","EGF_Stimulus":"1.33"},{"ID":"FBgn0024332","EGF_Stimulus":"-1.19"},{"ID":"FBgn0050158","EGF_Stimulus":"-0.94"},{"ID":"FBgn0037819","EGF_Stimulus":"-0.91"},{"ID":"FBgn0028475","EGF_Stimulus":"-1.19"},{"ID":"FBgn0005386","EGF_Stimulus":"1.79"},{"ID":"FBgn0035815","EGF_Stimulus":"1.14"},{"ID":"FBgn0037572","EGF_Stimulus":"1.29"},{"ID":"FBgn0010316","EGF_Stimulus":"0.85"},{"ID":"FBgn0004569","EGF_Stimulus":"-0.41"},{"ID":"FBgn0052274","EGF_Stimulus":"0.47"},{"ID":"FBgn0039641","EGF_Stimulus":"1.22"},{"ID":"FBgn0259745","EGF_Stimulus":"2.26"},{"ID":"FBgn0033400","EGF_Stimulus":"1.5"},{"ID":"FBgn0037386","EGF_Stimulus":"0.18"},{"ID":"FBgn0051902","EGF_Stimulus":"0.18"},{"ID":"FBgn0039760","EGF_Stimulus":"0.54"},{"ID":"FBgn0085481","EGF_Stimulus":"0.19"},{"ID":"FBgn0037920","EGF_Stimulus":"1.17"},{"ID":"FBgn0030222","EGF_Stimulus":"0.91"},{"ID":"FBgn0033020","EGF_Stimulus":"0.51"},{"ID":"FBgn0039755","EGF_Stimulus":"0.79"},{"ID":"FBgn0031463","EGF_Stimulus":"-0.7"},{"ID":"FBgn0028919","EGF_Stimulus":"1.77"},{"ID":"FBgn0050259","EGF_Stimulus":"-1"},{"ID":"FBgn0028274","EGF_Stimulus":"0.99"},{"ID":"FBgn0052745","EGF_Stimulus":"0.24"},{"ID":"FBgn0040382","EGF_Stimulus":"-0.7"},{"ID":"FBgn0034035","EGF_Stimulus":"1.16"},{"ID":"FBgn0052188","EGF_Stimulus":"-0.21"},{"ID":"FBgn0011260","EGF_Stimulus":"0.36"},{"ID":"FBgn0052228","EGF_Stimulus":"1.18"},{"ID":"FBgn0038576","EGF_Stimulus":"4.47"},{"ID":"FBgn0031694","EGF_Stimulus":"-1.05"},{"ID":"FBgn0038107","EGF_Stimulus":"-0.1"},{"ID":"FBgn0015336","EGF_Stimulus":"0.74"},{"ID":"FBgn0034994","EGF_Stimulus":"0.6"},{"ID":"FBgn0036000","EGF_Stimulus":"-0.86"},{"ID":"FBgn0000358","EGF_Stimulus":"1.07"},{"ID":"FBgn0053673","EGF_Stimulus":"-1.17"},{"ID":"FBgn0014366","EGF_Stimulus":"-0.53"},{"ID":"FBgn0032100","EGF_Stimulus":"-0.79"},{"ID":"FBgn0051998","EGF_Stimulus":"1.26"},{"ID":"FBgn0039896","EGF_Stimulus":"0.57"},{"ID":"FBgn0038438","EGF_Stimulus":"-0.31"},{"ID":"FBgn0030912","EGF_Stimulus":"0.23"},{"ID":"FBgn0036492","EGF_Stimulus":"-1.15"},{"ID":"FBgn0024291","EGF_Stimulus":"0.55"},{"ID":"FBgn0020509","EGF_Stimulus":"0.26"},{"ID":"FBgn0053969","EGF_Stimulus":"0.24"},{"ID":"FBgn0039060","EGF_Stimulus":"0.82"},{"ID":"FBgn0039380","EGF_Stimulus":"1.18"},{"ID":"FBgn0085349","EGF_Stimulus":"-0.52"},{"ID":"FBgn0042119","EGF_Stimulus":"1.53"},{"ID":"FBgn0260000","EGF_Stimulus":"-0.68"},{"ID":"FBgn0025777","EGF_Stimulus":"0.25"},{"ID":"FBgn0037166","EGF_Stimulus":"-0.67"},{"ID":"FBgn0011737","EGF_Stimulus":"-0.85"},{"ID":"FBgn0024509","EGF_Stimulus":"-1.31"},{"ID":"FBgn0030577","EGF_Stimulus":"0.41"},{"ID":"FBgn0038755","EGF_Stimulus":"1.24"},{"ID":"FBgn0051463","EGF_Stimulus":"-0.29"},{"ID":"FBgn0037652","EGF_Stimulus":"-1.01"},{"ID":"FBgn0037659","EGF_Stimulus":"0.73"},{"ID":"FBgn0031912","EGF_Stimulus":"-2.19"},{"ID":"FBgn0031703","EGF_Stimulus":"1.49"},{"ID":"FBgn0040106","EGF_Stimulus":"0.58"},{"ID":"FBgn0036652","EGF_Stimulus":"0.78"},{"ID":"FBgn0034471","EGF_Stimulus":"0.73"},{"ID":"FBgn0259229","EGF_Stimulus":"1.13"},{"ID":"FBgn0029706","EGF_Stimulus":"1.01"},{"ID":"FBgn0040509","EGF_Stimulus":"0.3"},{"ID":"FBgn0037005","EGF_Stimulus":"1.13"},{"ID":"FBgn0035063","EGF_Stimulus":"1.56"},{"ID":"FBgn0029771","EGF_Stimulus":"1.15"},{"ID":"FBgn0022787","EGF_Stimulus":"-0.59"},{"ID":"FBgn0035657","EGF_Stimulus":"-0.26"},{"ID":"FBgn0032868","EGF_Stimulus":"-0.5"},{"ID":"FBgn0036549","EGF_Stimulus":"0.38"},{"ID":"FBgn0015574","EGF_Stimulus":"1.79"},{"ID":"FBgn0037230","EGF_Stimulus":"0.73"},{"ID":"FBgn0036101","EGF_Stimulus":"-1.47"},{"ID":"FBgn0029092","EGF_Stimulus":"0.59"},{"ID":"FBgn0031683","EGF_Stimulus":"0.87"},{"ID":"FBgn0036500","EGF_Stimulus":"0.68"},{"ID":"FBgn0005672","EGF_Stimulus":"0.65"},{"ID":"FBgn0038548","EGF_Stimulus":"0.79"},{"ID":"FBgn0014269","EGF_Stimulus":"0.43"},{"ID":"FBgn0001225","EGF_Stimulus":"0.72"},{"ID":"FBgn0020379","EGF_Stimulus":"1.55"},{"ID":"FBgn0005411","EGF_Stimulus":"-3.87"},{"ID":"FBgn0038207","EGF_Stimulus":"-0.5"},{"ID":"FBgn0037125","EGF_Stimulus":"0.45"},{"ID":"FBgn0051960","EGF_Stimulus":"1.4"},{"ID":"FBgn0035570","EGF_Stimulus":"0.59"},{"ID":"FBgn0031171","EGF_Stimulus":"-0.8"},{"ID":"FBgn0050203","EGF_Stimulus":"-1.3"},{"ID":"FBgn0020280","EGF_Stimulus":"-0.64"},{"ID":"FBgn0030979","EGF_Stimulus":"-0.54"},{"ID":"FBgn0010228","EGF_Stimulus":"-1.45"},{"ID":"FBgn0033989","EGF_Stimulus":"1.68"},{"ID":"FBgn0052091","EGF_Stimulus":"0.53"},{"ID":"FBgn0032048","EGF_Stimulus":"0.67"},{"ID":"FBgn0000078","EGF_Stimulus":"0.58"},{"ID":"FBgn0034403","EGF_Stimulus":"0.73"},{"ID":"FBgn0002842","EGF_Stimulus":"-0.34"},{"ID":"FBgn0045827","EGF_Stimulus":"1.87"},{"ID":"FBgn0036447","EGF_Stimulus":"-0.45"},{"ID":"FBgn0028986","EGF_Stimulus":"-0.24"},{"ID":"FBgn0039073","EGF_Stimulus":"-0.76"},{"ID":"FBgn0037669","EGF_Stimulus":"0.47"},{"ID":"FBgn0025627","EGF_Stimulus":"0.56"},{"ID":"FBgn0029701","EGF_Stimulus":"-0.49"},{"ID":"FBgn0261277","EGF_Stimulus":"0.61"},{"ID":"FBgn0028969","EGF_Stimulus":"-2.81"},{"ID":"FBgn0004797","EGF_Stimulus":"1.08"},{"ID":"FBgn0032797","EGF_Stimulus":"-0.52"},{"ID":"FBgn0051288","EGF_Stimulus":"-0.47"},{"ID":"FBgn0030673","EGF_Stimulus":"0.84"},{"ID":"FBgn0038656","EGF_Stimulus":"-0.48"},{"ID":"FBgn0261439","EGF_Stimulus":"1.64"},{"ID":"FBgn0024846","EGF_Stimulus":"-0.47"},{"ID":"FBgn0010452","EGF_Stimulus":"0.39"},{"ID":"FBgn0034057","EGF_Stimulus":"0.66"},{"ID":"FBgn0032652","EGF_Stimulus":"1.08"},{"ID":"FBgn0261627","EGF_Stimulus":"-0.07"},{"ID":"FBgn0035954","EGF_Stimulus":"1.09"},{"ID":"FBgn0051371","EGF_Stimulus":"0.32"},{"ID":"FBgn0034415","EGF_Stimulus":"0.74"},{"ID":"FBgn0028974","EGF_Stimulus":"-1.54"},{"ID":"FBgn0039129","EGF_Stimulus":"-2.12"},{"ID":"FBgn0038577","EGF_Stimulus":"-0.95"},{"ID":"FBgn0085224","EGF_Stimulus":"0.34"},{"ID":"FBgn0051423","EGF_Stimulus":"0.74"},{"ID":"FBgn0040519","EGF_Stimulus":"0.87"},{"ID":"FBgn0034432","EGF_Stimulus":"1.1"},{"ID":"FBgn0039807","EGF_Stimulus":"1.15"},{"ID":"FBgn0058378","EGF_Stimulus":"-1.68"},{"ID":"FBgn0040725","EGF_Stimulus":"-0.21"},{"ID":"FBgn0053315","EGF_Stimulus":"-0.83"},{"ID":"FBgn0063261","EGF_Stimulus":"-0.71"},{"ID":"FBgn0038832","EGF_Stimulus":"0.28"},{"ID":"FBgn0031464","EGF_Stimulus":"-0.64"},{"ID":"FBgn0033010","EGF_Stimulus":"1.21"},{"ID":"FBgn0028979","EGF_Stimulus":"-0.1"},{"ID":"FBgn0032462","EGF_Stimulus":"0.49"},{"ID":"FBgn0028980","EGF_Stimulus":"0.58"},{"ID":"FBgn0003997","EGF_Stimulus":"1.48"},{"ID":"FBgn0002940","EGF_Stimulus":"1.24"},{"ID":"FBgn0036514","EGF_Stimulus":"-0.97"},{"ID":"FBgn0030305","EGF_Stimulus":"0.48"},{"ID":"FBgn0052686","EGF_Stimulus":"0.36"},{"ID":"FBgn0032402","EGF_Stimulus":"0.5"},{"ID":"FBgn0039381","EGF_Stimulus":"1.29"},{"ID":"FBgn0032196","EGF_Stimulus":"1.05"},{"ID":"FBgn0031390","EGF_Stimulus":"1.77"},{"ID":"FBgn0029770","EGF_Stimulus":"-0.67"},{"ID":"FBgn0040823","EGF_Stimulus":"0.9"},{"ID":"FBgn0034828","EGF_Stimulus":"-1.82"},{"ID":"FBgn0030976","EGF_Stimulus":"0.28"},{"ID":"FBgn0000439","EGF_Stimulus":"0.24"},{"ID":"FBgn0013717","EGF_Stimulus":"0.29"},{"ID":"FBgn0021874","EGF_Stimulus":"0.53"},{"ID":"FBgn0030137","EGF_Stimulus":"0.43"},{"ID":"FBgn0031632","EGF_Stimulus":"0.29"},{"ID":"FBgn0030081","EGF_Stimulus":"-0.5"},{"ID":"FBgn0260970","EGF_Stimulus":"1.51"},{"ID":"FBgn0002734","EGF_Stimulus":"-1.49"},{"ID":"FBgn0029176","EGF_Stimulus":"-1.73"},{"ID":"FBgn0034095","EGF_Stimulus":"-0.72"},{"ID":"FBgn0030658","EGF_Stimulus":"-0.92"},{"ID":"FBgn0261933","EGF_Stimulus":"2.03"},{"ID":"FBgn0001112","EGF_Stimulus":"-0.65"},{"ID":"FBgn0052262","EGF_Stimulus":"0.31"},{"ID":"FBgn0037291","EGF_Stimulus":"-0.34"},{"ID":"FBgn0035412","EGF_Stimulus":"0.79"},{"ID":"FBgn0051301","EGF_Stimulus":"-1.99"},{"ID":"FBgn0036773","EGF_Stimulus":"0.77"},{"ID":"FBgn0041627","EGF_Stimulus":"1.14"},{"ID":"FBgn0086519","EGF_Stimulus":"-0.17"},{"ID":"FBgn0034005","EGF_Stimulus":"1.2"},{"ID":"FBgn0002931","EGF_Stimulus":"-0.65"},{"ID":"FBgn0260499","EGF_Stimulus":"0.6"},{"ID":"FBgn0030060","EGF_Stimulus":"0.26"},{"ID":"FBgn0032704","EGF_Stimulus":"-0.82"},{"ID":"FBgn0032587","EGF_Stimulus":"1.23"},{"ID":"FBgn0034844","EGF_Stimulus":"-0.41"},{"ID":"FBgn0039022","EGF_Stimulus":"0.57"},{"ID":"FBgn0038854","EGF_Stimulus":"-0.93"},{"ID":"FBgn0035512","EGF_Stimulus":"1"},{"ID":"FBgn0046114","EGF_Stimulus":"0.37"},{"ID":"FBgn0036602","EGF_Stimulus":"-0.47"},{"ID":"FBgn0000667","EGF_Stimulus":"-0.74"},{"ID":"FBgn0004173","EGF_Stimulus":"1.4"},{"ID":"FBgn0010350","EGF_Stimulus":"-1.41"},{"ID":"FBgn0036228","EGF_Stimulus":"0.19"},{"ID":"FBgn0002936","EGF_Stimulus":"0.64"},{"ID":"FBgn0038173","EGF_Stimulus":"-0.7"},{"ID":"FBgn0029823","EGF_Stimulus":"1.01"},{"ID":"FBgn0031881","EGF_Stimulus":"-0.84"},{"ID":"FBgn0019932","EGF_Stimulus":"1.36"},{"ID":"FBgn0029840","EGF_Stimulus":"-0.45"},{"ID":"FBgn0030088","EGF_Stimulus":"-1.32"},{"ID":"FBgn0027588","EGF_Stimulus":"-0.16"},{"ID":"FBgn0037138","EGF_Stimulus":"1.06"},{"ID":"FBgn0027783","EGF_Stimulus":"0.99"},{"ID":"FBgn0038490","EGF_Stimulus":"0.63"},{"ID":"FBgn0027103","EGF_Stimulus":"1.86"},{"ID":"FBgn0036960","EGF_Stimulus":"1.11"},{"ID":"FBgn0037408","EGF_Stimulus":"-1.09"},{"ID":"FBgn0031628","EGF_Stimulus":"1.01"},{"ID":"FBgn0051864","EGF_Stimulus":"1.17"},{"ID":"FBgn0085352","EGF_Stimulus":"1"},{"ID":"FBgn0037275","EGF_Stimulus":"1"},{"ID":"FBgn0050005","EGF_Stimulus":"1.05"},{"ID":"FBgn0035311","EGF_Stimulus":"0.87"},{"ID":"FBgn0053922","EGF_Stimulus":"-0.35"},{"ID":"FBgn0044452","EGF_Stimulus":"1.95"},{"ID":"FBgn0036609","EGF_Stimulus":"1.07"},{"ID":"FBgn0020909","EGF_Stimulus":"-0.97"},{"ID":"FBgn0034247","EGF_Stimulus":"-1.06"},{"ID":"FBgn0052644","EGF_Stimulus":"-1.18"},{"ID":"FBgn0085414","EGF_Stimulus":"2.8"},{"ID":"FBgn0031362","EGF_Stimulus":"0.77"},{"ID":"FBgn0037372","EGF_Stimulus":"1.54"},{"ID":"FBgn0035285","EGF_Stimulus":"1.08"},{"ID":"FBgn0033659","EGF_Stimulus":"0.86"},{"ID":"FBgn0037685","EGF_Stimulus":"-1.89"},{"ID":"FBgn0001134","EGF_Stimulus":"1.01"},{"ID":"FBgn0030160","EGF_Stimulus":"0.21"},{"ID":"FBgn0020224","EGF_Stimulus":"2.24"},{"ID":"FBgn0031356","EGF_Stimulus":"-0.61"},{"ID":"FBgn0045482","EGF_Stimulus":"-0.89"},{"ID":"FBgn0051660","EGF_Stimulus":"-0.05"},{"ID":"FBgn0035980","EGF_Stimulus":"0.53"},{"ID":"FBgn0016694","EGF_Stimulus":"1.73"},{"ID":"FBgn0031292","EGF_Stimulus":"0.19"},{"ID":"FBgn0039800","EGF_Stimulus":"0.89"},{"ID":"FBgn0033368","EGF_Stimulus":"1.13"},{"ID":"FBgn0052551","EGF_Stimulus":"0.48"},{"ID":"FBgn0050048","EGF_Stimulus":"1.18"},{"ID":"FBgn0031305","EGF_Stimulus":"0.68"},{"ID":"FBgn0017448","EGF_Stimulus":"-0.37"},{"ID":"FBgn0038045","EGF_Stimulus":"-0.51"},{"ID":"FBgn0042083","EGF_Stimulus":"-0.06"},{"ID":"FBgn0032727","EGF_Stimulus":"0.39"},{"ID":"FBgn0032303","EGF_Stimulus":"-1.34"},{"ID":"FBgn0033846","EGF_Stimulus":"-2.3"},{"ID":"FBgn0085210","EGF_Stimulus":"-0.85"},{"ID":"FBgn0052088","EGF_Stimulus":"0.86"},{"ID":"FBgn0261266","EGF_Stimulus":"-0.62"},{"ID":"FBgn0062440","EGF_Stimulus":"-0.52"},{"ID":"FBgn0050324","EGF_Stimulus":"-0.5"},{"ID":"FBgn0033645","EGF_Stimulus":"-0.34"},{"ID":"FBgn0035248","EGF_Stimulus":"-0.41"},{"ID":"FBgn0051874","EGF_Stimulus":"-0.44"},{"ID":"FBgn0010397","EGF_Stimulus":"1.27"},{"ID":"FBgn0085212","EGF_Stimulus":"-0.6"},{"ID":"FBgn0086906","EGF_Stimulus":"-1.52"},{"ID":"FBgn0260935","EGF_Stimulus":"-1.63"},{"ID":"FBgn0031677","EGF_Stimulus":"0.96"},{"ID":"FBgn0039454","EGF_Stimulus":"0.27"},{"ID":"FBgn0025394","EGF_Stimulus":"-3.35"},{"ID":"FBgn0250848","EGF_Stimulus":"-0.63"},{"ID":"FBgn0030667","EGF_Stimulus":"-0.39"},{"ID":"FBgn0024230","EGF_Stimulus":"-1.17"},{"ID":"FBgn0039519","EGF_Stimulus":"1.23"},{"ID":"FBgn0036515","EGF_Stimulus":"0.64"},{"ID":"FBgn0010434","EGF_Stimulus":"0.61"},{"ID":"FBgn0032115","EGF_Stimulus":"-0.48"},{"ID":"FBgn0034307","EGF_Stimulus":"0.25"},{"ID":"FBgn0020506","EGF_Stimulus":"0.81"},{"ID":"FBgn0032335","EGF_Stimulus":"1.73"},{"ID":"FBgn0038498","EGF_Stimulus":"0.46"},{"ID":"FBgn0085420","EGF_Stimulus":"1.41"},{"ID":"FBgn0261859","EGF_Stimulus":"-1.35"},{"ID":"FBgn0036712","EGF_Stimulus":"-1.76"},{"ID":"FBgn0014032","EGF_Stimulus":"0.52"},{"ID":"FBgn0028936","EGF_Stimulus":"-0.77"},{"ID":"FBgn0034605","EGF_Stimulus":"0.19"},{"ID":"FBgn0038808","EGF_Stimulus":"1.42"},{"ID":"FBgn0025676","EGF_Stimulus":"1.26"},{"ID":"FBgn0053203","EGF_Stimulus":"-0.73"},{"ID":"FBgn0015299","EGF_Stimulus":"-0.19"},{"ID":"FBgn0020240","EGF_Stimulus":"1.1"},{"ID":"FBgn0032140","EGF_Stimulus":"0.45"},{"ID":"FBgn0039430","EGF_Stimulus":"-0.23"},{"ID":"FBgn0036036","EGF_Stimulus":"0.6"},{"ID":"FBgn0030815","EGF_Stimulus":"1.49"},{"ID":"FBgn0026086","EGF_Stimulus":"0.7"},{"ID":"FBgn0035956","EGF_Stimulus":"1.02"},{"ID":"FBgn0025615","EGF_Stimulus":"-0.57"},{"ID":"FBgn0038412","EGF_Stimulus":"-0.45"},{"ID":"FBgn0042126","EGF_Stimulus":"-0.69"},{"ID":"FBgn0035878","EGF_Stimulus":"1.02"},{"ID":"FBgn0038601","EGF_Stimulus":"-1.56"},{"ID":"FBgn0022935","EGF_Stimulus":"-4.41"},{"ID":"FBgn0030223","EGF_Stimulus":"0.58"},{"ID":"FBgn0086687","EGF_Stimulus":"-2.41"},{"ID":"FBgn0035742","EGF_Stimulus":"0.61"},{"ID":"FBgn0085454","EGF_Stimulus":"-1.55"},{"ID":"FBgn0037910","EGF_Stimulus":"-2.3"},{"ID":"FBgn0003486","EGF_Stimulus":"0.58"},{"ID":"FBgn0037324","EGF_Stimulus":"-1.14"},{"ID":"FBgn0038196","EGF_Stimulus":"0.82"},{"ID":"FBgn0030545","EGF_Stimulus":"-0.7"},{"ID":"FBgn0052374","EGF_Stimulus":"0.06"},{"ID":"FBgn0052548","EGF_Stimulus":"1.26"},{"ID":"FBgn0029679","EGF_Stimulus":"0.23"},{"ID":"FBgn0031032","EGF_Stimulus":"0.21"},{"ID":"FBgn0010042","EGF_Stimulus":"0.86"},{"ID":"FBgn0004863","EGF_Stimulus":"1.57"},{"ID":"FBgn0039132","EGF_Stimulus":"0.78"},{"ID":"FBgn0039271","EGF_Stimulus":"0.63"},{"ID":"FBgn0031483","EGF_Stimulus":"0.46"},{"ID":"FBgn0052571","EGF_Stimulus":"-0.46"},{"ID":"FBgn0002044","EGF_Stimulus":"-0.83"},{"ID":"FBgn0038316","EGF_Stimulus":"0.89"},{"ID":"FBgn0011760","EGF_Stimulus":"0.25"},{"ID":"FBgn0035438","EGF_Stimulus":"-0.89"},{"ID":"FBgn0038292","EGF_Stimulus":"1.21"},{"ID":"FBgn0015818","EGF_Stimulus":"1.28"},{"ID":"FBgn0003720","EGF_Stimulus":"1.09"},{"ID":"FBgn0036043","EGF_Stimulus":"-1.53"},{"ID":"FBgn0259234","EGF_Stimulus":"0.47"},{"ID":"FBgn0036988","EGF_Stimulus":"0.29"},{"ID":"FBgn0034122","EGF_Stimulus":"0.41"},{"ID":"FBgn0032420","EGF_Stimulus":"0.84"},{"ID":"FBgn0021750","EGF_Stimulus":"0.5"},{"ID":"FBgn0000552","EGF_Stimulus":"-0.71"},{"ID":"FBgn0051141","EGF_Stimulus":"-0.15"},{"ID":"FBgn0028990","EGF_Stimulus":"1.15"},{"ID":"FBgn0037724","EGF_Stimulus":"-0.5"},{"ID":"FBgn0035567","EGF_Stimulus":"-0.67"},{"ID":"FBgn0004647","EGF_Stimulus":"0.43"},{"ID":"FBgn0036361","EGF_Stimulus":"1.19"},{"ID":"FBgn0002736","EGF_Stimulus":"2.16"},{"ID":"FBgn0036747","EGF_Stimulus":"0.92"},{"ID":"FBgn0052579","EGF_Stimulus":"0.73"},{"ID":"FBgn0034870","EGF_Stimulus":"1.17"},{"ID":"FBgn0036994","EGF_Stimulus":"-1.02"},{"ID":"FBgn0011785","EGF_Stimulus":"0.49"},{"ID":"FBgn0037110","EGF_Stimulus":"0.79"},{"ID":"FBgn0025463","EGF_Stimulus":"-0.13"},{"ID":"FBgn0028867","EGF_Stimulus":"2.5"},{"ID":"FBgn0031690","EGF_Stimulus":"-0.56"},{"ID":"FBgn0036696","EGF_Stimulus":"1.43"},{"ID":"FBgn0032205","EGF_Stimulus":"0.91"},{"ID":"FBgn0051454","EGF_Stimulus":"0.66"},{"ID":"FBgn0025866","EGF_Stimulus":"1.21"},{"ID":"FBgn0035443","EGF_Stimulus":"1.46"},{"ID":"FBgn0050414","EGF_Stimulus":"-0.8"},{"ID":"FBgn0036742","EGF_Stimulus":"-0.51"},{"ID":"FBgn0085437","EGF_Stimulus":"-0.51"},{"ID":"FBgn0026679","EGF_Stimulus":"-1.7"},{"ID":"FBgn0038979","EGF_Stimulus":"1.15"},{"ID":"FBgn0027568","EGF_Stimulus":"1.45"},{"ID":"FBgn0034474","EGF_Stimulus":"-0.82"},{"ID":"FBgn0039756","EGF_Stimulus":"0.78"},{"ID":"FBgn0002891","EGF_Stimulus":"-0.39"},{"ID":"FBgn0038471","EGF_Stimulus":"-0.32"},{"ID":"FBgn0051092","EGF_Stimulus":"0.95"},{"ID":"FBgn0031936","EGF_Stimulus":"0.98"},{"ID":"FBgn0035632","EGF_Stimulus":"-0.69"},{"ID":"FBgn0082582","EGF_Stimulus":"1.27"},{"ID":"FBgn0024366","EGF_Stimulus":"-1.4"},{"ID":"FBgn0039259","EGF_Stimulus":"0.64"},{"ID":"FBgn0032088","EGF_Stimulus":"-1.56"},{"ID":"FBgn0260776","EGF_Stimulus":"-0.67"},{"ID":"FBgn0029747","EGF_Stimulus":"1.06"},{"ID":"FBgn0022893","EGF_Stimulus":"-1.08"},{"ID":"FBgn0038733","EGF_Stimulus":"-0.94"},{"ID":"FBgn0039668","EGF_Stimulus":"-0.02"},{"ID":"FBgn0034346","EGF_Stimulus":"0.21"},{"ID":"FBgn0001075","EGF_Stimulus":"1.47"},{"ID":"FBgn0034529","EGF_Stimulus":"0.91"},{"ID":"FBgn0033851","EGF_Stimulus":"-0.4"},{"ID":"FBgn0036301","EGF_Stimulus":"-1.62"},{"ID":"FBgn0029977","EGF_Stimulus":"0.76"},{"ID":"FBgn0004841","EGF_Stimulus":"0.73"},{"ID":"FBgn0032801","EGF_Stimulus":"-1"},{"ID":"FBgn0034468","EGF_Stimulus":"2.27"},{"ID":"FBgn0003656","EGF_Stimulus":"0.56"},{"ID":"FBgn0085310","EGF_Stimulus":"1.2"},{"ID":"FBgn0052485","EGF_Stimulus":"-1.6"},{"ID":"FBgn0021818","EGF_Stimulus":"-7.41"},{"ID":"FBgn0039687","EGF_Stimulus":"1.16"},{"ID":"FBgn0260985","EGF_Stimulus":"-0.47"},{"ID":"FBgn0031697","EGF_Stimulus":"1.2"},{"ID":"FBgn0052528","EGF_Stimulus":"-0.69"},{"ID":"FBgn0038465","EGF_Stimulus":"0.76"},{"ID":"FBgn0032382","EGF_Stimulus":"-1.25"},{"ID":"FBgn0033124","EGF_Stimulus":"-0.88"},{"ID":"FBgn0034660","EGF_Stimulus":"-1.5"},{"ID":"FBgn0036397","EGF_Stimulus":"0.26"},{"ID":"FBgn0032442","EGF_Stimulus":"-1.44"},{"ID":"FBgn0032593","EGF_Stimulus":"0.78"},{"ID":"FBgn0050037","EGF_Stimulus":"0.57"},{"ID":"FBgn0034412","EGF_Stimulus":"-1.17"},{"ID":"FBgn0038693","EGF_Stimulus":"0.66"},{"ID":"FBgn0028482","EGF_Stimulus":"0.28"},{"ID":"FBgn0043025","EGF_Stimulus":"0.42"},{"ID":"FBgn0037172","EGF_Stimulus":"-0.61"},{"ID":"FBgn0039487","EGF_Stimulus":"-1.2"},{"ID":"FBgn0033667","EGF_Stimulus":"-0.67"},{"ID":"FBgn0004629","EGF_Stimulus":"-0.35"},{"ID":"FBgn0031474","EGF_Stimulus":"0.28"},{"ID":"FBgn0038788","EGF_Stimulus":"0.01"},{"ID":"FBgn0029514","EGF_Stimulus":"0.41"},{"ID":"FBgn0052221","EGF_Stimulus":"0.84"},{"ID":"FBgn0052177","EGF_Stimulus":"0.79"},{"ID":"FBgn0031288","EGF_Stimulus":"1.18"},{"ID":"FBgn0030435","EGF_Stimulus":"-0.47"},{"ID":"FBgn0038134","EGF_Stimulus":"-0.52"},{"ID":"FBgn0033427","EGF_Stimulus":"-0.94"},{"ID":"FBgn0038984","EGF_Stimulus":"-0.96"},{"ID":"FBgn0030148","EGF_Stimulus":"0.32"},{"ID":"FBgn0014850","EGF_Stimulus":"0.22"},{"ID":"FBgn0034046","EGF_Stimulus":"-0.77"},{"ID":"FBgn0037519","EGF_Stimulus":"0.44"},{"ID":"FBgn0032709","EGF_Stimulus":"1.67"},{"ID":"FBgn0050169","EGF_Stimulus":"1.17"},{"ID":"FBgn0038225","EGF_Stimulus":"-0.61"},{"ID":"FBgn0026411","EGF_Stimulus":"0.67"},{"ID":"FBgn0033453","EGF_Stimulus":"2.83"},{"ID":"FBgn0038950","EGF_Stimulus":"0.68"},{"ID":"FBgn0029970","EGF_Stimulus":"1.54"},{"ID":"FBgn0039697","EGF_Stimulus":"-0.89"},{"ID":"FBgn0035186","EGF_Stimulus":"0.8"},{"ID":"FBgn0013467","EGF_Stimulus":"1.86"},{"ID":"FBgn0015582","EGF_Stimulus":"1.3"},{"ID":"FBgn0022213","EGF_Stimulus":"-1.61"},{"ID":"FBgn0030001","EGF_Stimulus":"1.04"},{"ID":"FBgn0027291","EGF_Stimulus":"-0.27"},{"ID":"FBgn0034496","EGF_Stimulus":"0.77"},{"ID":"FBgn0051051","EGF_Stimulus":"1.86"},{"ID":"FBgn0036501","EGF_Stimulus":"-1.38"},{"ID":"FBgn0037613","EGF_Stimulus":"1.21"},{"ID":"FBgn0085217","EGF_Stimulus":"0.35"},{"ID":"FBgn0004698","EGF_Stimulus":"1.16"},{"ID":"FBgn0036551","EGF_Stimulus":"1.27"},{"ID":"FBgn0051858","EGF_Stimulus":"0.75"},{"ID":"FBgn0013746","EGF_Stimulus":"1.42"},{"ID":"FBgn0259224","EGF_Stimulus":"1.08"},{"ID":"FBgn0051072","EGF_Stimulus":"1.21"},{"ID":"FBgn0015075","EGF_Stimulus":"0.24"},{"ID":"FBgn0010520","EGF_Stimulus":"0.93"},{"ID":"FBgn0043070","EGF_Stimulus":"0.96"},{"ID":"FBgn0034231","EGF_Stimulus":"-0.46"},{"ID":"FBgn0040031","EGF_Stimulus":"2.38"},{"ID":"FBgn0050052","EGF_Stimulus":"0.64"},{"ID":"FBgn0030631","EGF_Stimulus":"0.14"},{"ID":"FBgn0035084","EGF_Stimulus":"-0.43"},{"ID":"FBgn0034560","EGF_Stimulus":"0.4"},{"ID":"FBgn0036203","EGF_Stimulus":"0.56"},{"ID":"FBgn0043854","EGF_Stimulus":"2.41"},{"ID":"FBgn0015247","EGF_Stimulus":"1.19"},{"ID":"FBgn0051785","EGF_Stimulus":"-0.97"},{"ID":"FBgn0035571","EGF_Stimulus":"0.68"},{"ID":"FBgn0039776","EGF_Stimulus":"0.61"},{"ID":"FBgn0011016","EGF_Stimulus":"-1.13"},{"ID":"FBgn0039882","EGF_Stimulus":"-0.55"},{"ID":"FBgn0033439","EGF_Stimulus":"-0.32"},{"ID":"FBgn0041238","EGF_Stimulus":"0.3"},{"ID":"FBgn0039451","EGF_Stimulus":"1.68"},{"ID":"FBgn0036382","EGF_Stimulus":"-0.61"},{"ID":"FBgn0041246","EGF_Stimulus":"0.28"},{"ID":"FBgn0035216","EGF_Stimulus":"-0.25"},{"ID":"FBgn0004622","EGF_Stimulus":"0.37"},{"ID":"FBgn0035371","EGF_Stimulus":"-0.43"},{"ID":"FBgn0261267","EGF_Stimulus":"-0.93"},{"ID":"FBgn0030006","EGF_Stimulus":"1.02"},{"ID":"FBgn0034033","EGF_Stimulus":"1.37"},{"ID":"FBgn0036320","EGF_Stimulus":"-0.33"},{"ID":"FBgn0039099","EGF_Stimulus":"0.83"},{"ID":"FBgn0011596","EGF_Stimulus":"0.45"},{"ID":"FBgn0033296","EGF_Stimulus":"-0.76"},{"ID":"FBgn0040020","EGF_Stimulus":"1.26"},{"ID":"FBgn0026181","EGF_Stimulus":"-0.66"},{"ID":"FBgn0040795","EGF_Stimulus":"-0.33"},{"ID":"FBgn0053208","EGF_Stimulus":"-1.63"},{"ID":"FBgn0002856","EGF_Stimulus":"-0.6"},{"ID":"FBgn0025335","EGF_Stimulus":"3.88"},{"ID":"FBgn0037338","EGF_Stimulus":"0.87"},{"ID":"FBgn0032125","EGF_Stimulus":"0.36"},{"ID":"FBgn0031299","EGF_Stimulus":"0.71"},{"ID":"FBgn0038095","EGF_Stimulus":"2.33"},{"ID":"FBgn0038768","EGF_Stimulus":"1.83"},{"ID":"FBgn0011832","EGF_Stimulus":"1.17"},{"ID":"FBgn0051262","EGF_Stimulus":"-1.15"},{"ID":"FBgn0037718","EGF_Stimulus":"-0.71"},{"ID":"FBgn0036908","EGF_Stimulus":"1.2"},{"ID":"FBgn0031157","EGF_Stimulus":"1.84"},{"ID":"FBgn0023091","EGF_Stimulus":"1.18"},{"ID":"FBgn0038865","EGF_Stimulus":"-1.9"},{"ID":"FBgn0032453","EGF_Stimulus":"0.73"},{"ID":"FBgn0051030","EGF_Stimulus":"0.64"},{"ID":"FBgn0003372","EGF_Stimulus":"0.9"},{"ID":"FBgn0051973","EGF_Stimulus":"-1.67"},{"ID":"FBgn0031602","EGF_Stimulus":"-0.55"},{"ID":"FBgn0039690","EGF_Stimulus":"0.57"},{"ID":"FBgn0034366","EGF_Stimulus":"1.24"},{"ID":"FBgn0038740","EGF_Stimulus":"0.9"},{"ID":"FBgn0034727","EGF_Stimulus":"0.32"},{"ID":"FBgn0085427","EGF_Stimulus":"-0.61"},{"ID":"FBgn0033605","EGF_Stimulus":"0.61"},{"ID":"FBgn0033721","EGF_Stimulus":"0.44"},{"ID":"FBgn0039582","EGF_Stimulus":"-0.76"},{"ID":"FBgn0002863","EGF_Stimulus":"0.51"},{"ID":"FBgn0034206","EGF_Stimulus":"-1.49"},{"ID":"FBgn0033579","EGF_Stimulus":"0.89"},{"ID":"FBgn0051081","EGF_Stimulus":"-0.83"},{"ID":"FBgn0016059","EGF_Stimulus":"0.66"},{"ID":"FBgn0011742","EGF_Stimulus":"-0.99"},{"ID":"FBgn0040362","EGF_Stimulus":"-0.31"},{"ID":"FBgn0004228","EGF_Stimulus":"-1.09"},{"ID":"FBgn0034284","EGF_Stimulus":"0.42"},{"ID":"FBgn0002973","EGF_Stimulus":"0.2"},{"ID":"FBgn0039149","EGF_Stimulus":"0.33"},{"ID":"FBgn0030246","EGF_Stimulus":"0.4"},{"ID":"FBgn0034859","EGF_Stimulus":"-0.34"},{"ID":"FBgn0036059","EGF_Stimulus":"-0.24"},{"ID":"FBgn0030244","EGF_Stimulus":"1.09"},{"ID":"FBgn0001941","EGF_Stimulus":"0.41"},{"ID":"FBgn0033871","EGF_Stimulus":"-0.38"},{"ID":"FBgn0020412","EGF_Stimulus":"1.96"},{"ID":"FBgn0033449","EGF_Stimulus":"1.31"},{"ID":"FBgn0045468","EGF_Stimulus":"-0.17"},{"ID":"FBgn0004512","EGF_Stimulus":"-1.11"},{"ID":"FBgn0037270","EGF_Stimulus":"-2.75"},{"ID":"FBgn0029996","EGF_Stimulus":"0.68"},{"ID":"FBgn0037996","EGF_Stimulus":"0.35"},{"ID":"FBgn0024989","EGF_Stimulus":"1.29"},{"ID":"FBgn0023506","EGF_Stimulus":"0.58"},{"ID":"FBgn0003046","EGF_Stimulus":"0.61"},{"ID":"FBgn0003882","EGF_Stimulus":"1.68"},{"ID":"FBgn0038814","EGF_Stimulus":"-0.89"},{"ID":"FBgn0261394","EGF_Stimulus":"-1.08"},{"ID":"FBgn0050062","EGF_Stimulus":"-1.04"},{"ID":"FBgn0037473","EGF_Stimulus":"1.42"},{"ID":"FBgn0050432","EGF_Stimulus":"0.88"},{"ID":"FBgn0032072","EGF_Stimulus":"0.29"},{"ID":"FBgn0058053","EGF_Stimulus":"-1.14"},{"ID":"FBgn0039406","EGF_Stimulus":"-0.31"},{"ID":"FBgn0013983","EGF_Stimulus":"-0.44"},{"ID":"FBgn0032642","EGF_Stimulus":"-0.41"},{"ID":"FBgn0041100","EGF_Stimulus":"0.35"},{"ID":"FBgn0051606","EGF_Stimulus":"-0.48"},{"ID":"FBgn0085362","EGF_Stimulus":"-0.88"},{"ID":"FBgn0037750","EGF_Stimulus":"0.6"},{"ID":"FBgn0039213","EGF_Stimulus":"0.27"},{"ID":"FBgn0034485","EGF_Stimulus":"-0.64"},{"ID":"FBgn0037117","EGF_Stimulus":"0.67"},{"ID":"FBgn0010303","EGF_Stimulus":"1.54"},{"ID":"FBgn0023179","EGF_Stimulus":"1.44"},{"ID":"FBgn0038565","EGF_Stimulus":"0.37"},{"ID":"FBgn0030808","EGF_Stimulus":"-1.49"},{"ID":"FBgn0036926","EGF_Stimulus":"0.49"},{"ID":"FBgn0031772","EGF_Stimulus":"2"},{"ID":"FBgn0013531","EGF_Stimulus":"-0.89"},{"ID":"FBgn0032835","EGF_Stimulus":"-0.53"},{"ID":"FBgn0036258","EGF_Stimulus":"0.52"},{"ID":"FBgn0036192","EGF_Stimulus":"0.42"},{"ID":"FBgn0001235","EGF_Stimulus":"-0.3"},{"ID":"FBgn0036686","EGF_Stimulus":"-1.48"},{"ID":"FBgn0034659","EGF_Stimulus":"0.44"},{"ID":"FBgn0045443","EGF_Stimulus":"0.87"},{"ID":"FBgn0035768","EGF_Stimulus":"0.32"},{"ID":"FBgn0024998","EGF_Stimulus":"-1.54"},{"ID":"FBgn0032649","EGF_Stimulus":"0.34"},{"ID":"FBgn0031536","EGF_Stimulus":"-1.47"},{"ID":"FBgn0036641","EGF_Stimulus":"-0.51"},{"ID":"FBgn0025740","EGF_Stimulus":"-0.35"},{"ID":"FBgn0002306","EGF_Stimulus":"0.37"},{"ID":"FBgn0028961","EGF_Stimulus":"1.45"},{"ID":"FBgn0004924","EGF_Stimulus":"-2.08"},{"ID":"FBgn0025558","EGF_Stimulus":"0.8"},{"ID":"FBgn0037046","EGF_Stimulus":"-0.83"},{"ID":"FBgn0031108","EGF_Stimulus":"-1.45"},{"ID":"FBgn0030261","EGF_Stimulus":"1.29"},{"ID":"FBgn0033095","EGF_Stimulus":"-0.45"},{"ID":"FBgn0038124","EGF_Stimulus":"-0.05"},{"ID":"FBgn0005671","EGF_Stimulus":"-1.09"},{"ID":"FBgn0051803","EGF_Stimulus":"1.41"},{"ID":"FBgn0041181","EGF_Stimulus":"1.8"},{"ID":"FBgn0014018","EGF_Stimulus":"2.58"},{"ID":"FBgn0035103","EGF_Stimulus":"-0.89"},{"ID":"FBgn0013548","EGF_Stimulus":"2.81"},{"ID":"FBgn0051010","EGF_Stimulus":"-1.05"},{"ID":"FBgn0050424","EGF_Stimulus":"-0.78"},{"ID":"FBgn0030207","EGF_Stimulus":"0.67"},{"ID":"FBgn0028532","EGF_Stimulus":"0.16"},{"ID":"FBgn0261479","EGF_Stimulus":"-0.24"},{"ID":"FBgn0039703","EGF_Stimulus":"0.97"},{"ID":"FBgn0005391","EGF_Stimulus":"0.22"},{"ID":"FBgn0022770","EGF_Stimulus":"-0.22"},{"ID":"FBgn0028837","EGF_Stimulus":"1.43"},{"ID":"FBgn0027608","EGF_Stimulus":"1.62"},{"ID":"FBgn0034599","EGF_Stimulus":"-1.01"},{"ID":"FBgn0034459","EGF_Stimulus":"0.92"},{"ID":"FBgn0027081","EGF_Stimulus":"-0.88"},{"ID":"FBgn0039177","EGF_Stimulus":"-0.26"},{"ID":"FBgn0003683","EGF_Stimulus":"-0.48"},{"ID":"FBgn0036967","EGF_Stimulus":"0.87"},{"ID":"FBgn0035612","EGF_Stimulus":"1.72"},{"ID":"FBgn0054011","EGF_Stimulus":"-0.31"},{"ID":"FBgn0038008","EGF_Stimulus":"0.98"},{"ID":"FBgn0053461","EGF_Stimulus":"0.28"},{"ID":"FBgn0035132","EGF_Stimulus":"0.69"},{"ID":"FBgn0031430","EGF_Stimulus":"1.33"},{"ID":"FBgn0052160","EGF_Stimulus":"1.17"},{"ID":"FBgn0031045","EGF_Stimulus":"-0.77"},{"ID":"FBgn0036906","EGF_Stimulus":"0.63"},{"ID":"FBgn0028880","EGF_Stimulus":"1.18"},{"ID":"FBgn0031119","EGF_Stimulus":"0.7"},{"ID":"FBgn0033728","EGF_Stimulus":"2.08"},{"ID":"FBgn0003977","EGF_Stimulus":"-0.79"},{"ID":"FBgn0030852","EGF_Stimulus":"-0.43"},{"ID":"FBgn0036892","EGF_Stimulus":"-0.54"},{"ID":"FBgn0037024","EGF_Stimulus":"-0.16"},{"ID":"FBgn0011723","EGF_Stimulus":"-0.66"},{"ID":"FBgn0028408","EGF_Stimulus":"0.54"},{"ID":"FBgn0035875","EGF_Stimulus":"-0.29"},{"ID":"FBgn0040743","EGF_Stimulus":"0.7"},{"ID":"FBgn0030528","EGF_Stimulus":"1.2"},{"ID":"FBgn0038944","EGF_Stimulus":"1.24"},{"ID":"FBgn0027090","EGF_Stimulus":"1.38"},{"ID":"FBgn0031580","EGF_Stimulus":"-0.77"},{"ID":"FBgn0051226","EGF_Stimulus":"-1.59"},{"ID":"FBgn0033526","EGF_Stimulus":"0.58"},{"ID":"FBgn0037816","EGF_Stimulus":"-1.5"},{"ID":"FBgn0053527","EGF_Stimulus":"0.28"},{"ID":"FBgn0036015","EGF_Stimulus":"0.6"},{"ID":"FBgn0002780","EGF_Stimulus":"0.72"},{"ID":"FBgn0038079","EGF_Stimulus":"0.28"},{"ID":"FBgn0031558","EGF_Stimulus":"1.05"},{"ID":"FBgn0051221","EGF_Stimulus":"0.89"},{"ID":"FBgn0034758","EGF_Stimulus":"0.6"},{"ID":"FBgn0038527","EGF_Stimulus":"1.06"},{"ID":"FBgn0037737","EGF_Stimulus":"0.21"},{"ID":"FBgn0031830","EGF_Stimulus":"-0.83"},{"ID":"FBgn0034073","EGF_Stimulus":"-0.53"},{"ID":"FBgn0053260","EGF_Stimulus":"-1.37"},{"ID":"FBgn0030701","EGF_Stimulus":"0.7"},{"ID":"FBgn0038452","EGF_Stimulus":"0.31"},{"ID":"FBgn0038083","EGF_Stimulus":"2"},{"ID":"FBgn0036888","EGF_Stimulus":"0.46"},{"ID":"FBgn0034194","EGF_Stimulus":"1.28"},{"ID":"FBgn0039680","EGF_Stimulus":"-0.71"},{"ID":"FBgn0029963","EGF_Stimulus":"0.49"},{"ID":"FBgn0054032","EGF_Stimulus":"-1.39"},{"ID":"FBgn0032848","EGF_Stimulus":"-0.87"},{"ID":"FBgn0032913","EGF_Stimulus":"1.1"},{"ID":"FBgn0035587","EGF_Stimulus":"0.68"},{"ID":"FBgn0028292","EGF_Stimulus":"-0.53"},{"ID":"FBgn0032131","EGF_Stimulus":"-0.77"},{"ID":"FBgn0029095","EGF_Stimulus":"-0.71"},{"ID":"FBgn0032235","EGF_Stimulus":"-1.12"},{"ID":"FBgn0031855","EGF_Stimulus":"0.23"},{"ID":"FBgn0037031","EGF_Stimulus":"1.99"},{"ID":"FBgn0039531","EGF_Stimulus":"1.16"},{"ID":"FBgn0025571","EGF_Stimulus":"1.22"},{"ID":"FBgn0039140","EGF_Stimulus":"-0.52"},{"ID":"FBgn0035546","EGF_Stimulus":"0.52"},{"ID":"FBgn0035951","EGF_Stimulus":"0.02"},{"ID":"FBgn0035816","EGF_Stimulus":"-0.74"},{"ID":"FBgn0044051","EGF_Stimulus":"0.79"},{"ID":"FBgn0035158","EGF_Stimulus":"-0.45"},{"ID":"FBgn0036343","EGF_Stimulus":"0.58"},{"ID":"FBgn0051048","EGF_Stimulus":"-0.91"},{"ID":"FBgn0031574","EGF_Stimulus":"-0.79"},{"ID":"FBgn0032248","EGF_Stimulus":"0.65"},{"ID":"FBgn0040730","EGF_Stimulus":"-1.61"},{"ID":"FBgn0035673","EGF_Stimulus":"0.44"},{"ID":"FBgn0015905","EGF_Stimulus":"0.1"},{"ID":"FBgn0039969","EGF_Stimulus":"0.55"},{"ID":"FBgn0034507","EGF_Stimulus":"0.35"},{"ID":"FBgn0012058","EGF_Stimulus":"-4.71"},{"ID":"FBgn0032433","EGF_Stimulus":"-0.56"},{"ID":"FBgn0085294","EGF_Stimulus":"-0.45"},{"ID":"FBgn0004510","EGF_Stimulus":"-0.61"},{"ID":"FBgn0037004","EGF_Stimulus":"0.66"},{"ID":"FBgn0003965","EGF_Stimulus":"-1.12"},{"ID":"FBgn0002561","EGF_Stimulus":"-0.39"},{"ID":"FBgn0085409","EGF_Stimulus":"1.18"},{"ID":"FBgn0032372","EGF_Stimulus":"1.67"},{"ID":"FBgn0033352","EGF_Stimulus":"0.52"},{"ID":"FBgn0000283","EGF_Stimulus":"-1.55"},{"ID":"FBgn0002924","EGF_Stimulus":"-1.14"},{"ID":"FBgn0260964","EGF_Stimulus":"0.54"},{"ID":"FBgn0051201","EGF_Stimulus":"-1.11"},{"ID":"FBgn0250820","EGF_Stimulus":"1.32"},{"ID":"FBgn0000303","EGF_Stimulus":"-1.73"},{"ID":"FBgn0033359","EGF_Stimulus":"0.8"},{"ID":"FBgn0028474","EGF_Stimulus":"0.49"},{"ID":"FBgn0034495","EGF_Stimulus":"-0.6"},{"ID":"FBgn0025631","EGF_Stimulus":"1.09"},{"ID":"FBgn0002989","EGF_Stimulus":"0.72"},{"ID":"FBgn0031495","EGF_Stimulus":"0.34"},{"ID":"FBgn0033756","EGF_Stimulus":"1.52"},{"ID":"FBgn0052683","EGF_Stimulus":"-0.62"},{"ID":"FBgn0259824","EGF_Stimulus":"1.48"},{"ID":"FBgn0035777","EGF_Stimulus":"0.34"},{"ID":"FBgn0027796","EGF_Stimulus":"0.27"},{"ID":"FBgn0028872","EGF_Stimulus":"1.34"},{"ID":"FBgn0032400","EGF_Stimulus":"-5.65"},{"ID":"FBgn0036290","EGF_Stimulus":"-0.14"},{"ID":"FBgn0033000","EGF_Stimulus":"-0.82"},{"ID":"FBgn0260742","EGF_Stimulus":"1.39"},{"ID":"FBgn0260962","EGF_Stimulus":"-2.05"},{"ID":"FBgn0039592","EGF_Stimulus":"-0.12"},{"ID":"FBgn0028496","EGF_Stimulus":"0.43"},{"ID":"FBgn0035234","EGF_Stimulus":"-0.63"},{"ID":"FBgn0261675","EGF_Stimulus":"0.45"},{"ID":"FBgn0052305","EGF_Stimulus":"-0.07"},{"ID":"FBgn0034897","EGF_Stimulus":"-0.44"},{"ID":"FBgn0035423","EGF_Stimulus":"1.3"},{"ID":"FBgn0000392","EGF_Stimulus":"-0.39"},{"ID":"FBgn0033710","EGF_Stimulus":"-1.27"},{"ID":"FBgn0051823","EGF_Stimulus":"-0.47"},{"ID":"FBgn0033718","EGF_Stimulus":"0.29"},{"ID":"FBgn0004400","EGF_Stimulus":"-0.78"},{"ID":"FBgn0052409","EGF_Stimulus":"-0.52"},{"ID":"FBgn0000405","EGF_Stimulus":"3.18"},{"ID":"FBgn0053307","EGF_Stimulus":"1.17"},{"ID":"FBgn0030100","EGF_Stimulus":"1.03"},{"ID":"FBgn0029714","EGF_Stimulus":"-0.03"},{"ID":"FBgn0031318","EGF_Stimulus":"1.2"},{"ID":"FBgn0051345","EGF_Stimulus":"1.9"},{"ID":"FBgn0037902","EGF_Stimulus":"0.94"},{"ID":"FBgn0259678","EGF_Stimulus":"0.78"},{"ID":"FBgn0038716","EGF_Stimulus":"1.15"},{"ID":"FBgn0030485","EGF_Stimulus":"-0.74"},{"ID":"FBgn0045843","EGF_Stimulus":"-0.27"},{"ID":"FBgn0039820","EGF_Stimulus":"1.08"},{"ID":"FBgn0030803","EGF_Stimulus":"-0.7"},{"ID":"FBgn0261682","EGF_Stimulus":"-1.13"},{"ID":"FBgn0015550","EGF_Stimulus":"-1.97"},{"ID":"FBgn0031725","EGF_Stimulus":"1.12"},{"ID":"FBgn0000615","EGF_Stimulus":"0.33"},{"ID":"FBgn0036973","EGF_Stimulus":"-0.23"},{"ID":"FBgn0032315","EGF_Stimulus":"-0.7"},{"ID":"FBgn0051019","EGF_Stimulus":"-0.98"},{"ID":"FBgn0053265","EGF_Stimulus":"1.15"},{"ID":"FBgn0039417","EGF_Stimulus":"1.33"},{"ID":"FBgn0035258","EGF_Stimulus":"-0.74"},{"ID":"FBgn0030158","EGF_Stimulus":"-1.83"},{"ID":"FBgn0010406","EGF_Stimulus":"-0.78"},{"ID":"FBgn0033627","EGF_Stimulus":"0.75"},{"ID":"FBgn0016794","EGF_Stimulus":"-0.18"},{"ID":"FBgn0036730","EGF_Stimulus":"-1.2"},{"ID":"FBgn0017545","EGF_Stimulus":"-3.58"},{"ID":"FBgn0010287","EGF_Stimulus":"1.23"},{"ID":"FBgn0031945","EGF_Stimulus":"0.94"},{"ID":"FBgn0028645","EGF_Stimulus":"0.54"},{"ID":"FBgn0040396","EGF_Stimulus":"0.94"},{"ID":"FBgn0261564","EGF_Stimulus":"1.5"},{"ID":"FBgn0050271","EGF_Stimulus":"1.23"},{"ID":"FBgn0026777","EGF_Stimulus":"0.45"},{"ID":"FBgn0000339","EGF_Stimulus":"-0.99"},{"ID":"FBgn0000229","EGF_Stimulus":"1"},{"ID":"FBgn0034716","EGF_Stimulus":"-0.34"},{"ID":"FBgn0039054","EGF_Stimulus":"-1.2"},{"ID":"FBgn0031542","EGF_Stimulus":"0.76"},{"ID":"FBgn0035233","EGF_Stimulus":"0.53"},{"ID":"FBgn0037086","EGF_Stimulus":"0.3"},{"ID":"FBgn0010015","EGF_Stimulus":"0.25"},{"ID":"FBgn0016930","EGF_Stimulus":"1.24"},{"ID":"FBgn0031195","EGF_Stimulus":"0.72"},{"ID":"FBgn0039461","EGF_Stimulus":"-0.55"},{"ID":"FBgn0087013","EGF_Stimulus":"-2.35"},{"ID":"FBgn0034405","EGF_Stimulus":"0.97"},{"ID":"FBgn0011284","EGF_Stimulus":"-2.92"},{"ID":"FBgn0039371","EGF_Stimulus":"1.65"},{"ID":"FBgn0037759","EGF_Stimulus":"0.99"},{"ID":"FBgn0001206","EGF_Stimulus":"0.93"},{"ID":"FBgn0037521","EGF_Stimulus":"1.08"},{"ID":"FBgn0050484","EGF_Stimulus":"-0.46"},{"ID":"FBgn0036784","EGF_Stimulus":"1.21"},{"ID":"FBgn0050268","EGF_Stimulus":"-1.23"},{"ID":"FBgn0033376","EGF_Stimulus":"-0.91"},{"ID":"FBgn0053013","EGF_Stimulus":"-0.6"},{"ID":"FBgn0040687","EGF_Stimulus":"1.15"},{"ID":"FBgn0050491","EGF_Stimulus":"-1.65"},{"ID":"FBgn0025457","EGF_Stimulus":"-1.42"},{"ID":"FBgn0261458","EGF_Stimulus":"1.01"},{"ID":"FBgn0261649","EGF_Stimulus":"-0.72"},{"ID":"FBgn0038404","EGF_Stimulus":"9.19"},{"ID":"FBgn0033049","EGF_Stimulus":"-0.67"},{"ID":"FBgn0053189","EGF_Stimulus":"1.2"},{"ID":"FBgn0000042","EGF_Stimulus":"-1.67"},{"ID":"FBgn0039170","EGF_Stimulus":"-0.86"},{"ID":"FBgn0003889","EGF_Stimulus":"1.4"},{"ID":"FBgn0031256","EGF_Stimulus":"-1.46"},{"ID":"FBgn0030455","EGF_Stimulus":"0.55"},{"ID":"FBgn0037124","EGF_Stimulus":"-0.41"},{"ID":"FBgn0032814","EGF_Stimulus":"0.72"},{"ID":"FBgn0028539","EGF_Stimulus":"0.95"},{"ID":"FBgn0053289","EGF_Stimulus":"0.78"},{"ID":"FBgn0085446","EGF_Stimulus":"1.01"},{"ID":"FBgn0032304","EGF_Stimulus":"0.6"},{"ID":"FBgn0031405","EGF_Stimulus":"1.16"},{"ID":"FBgn0034706","EGF_Stimulus":"0.82"},{"ID":"FBgn0020762","EGF_Stimulus":"0.39"},{"ID":"FBgn0036536","EGF_Stimulus":"1.26"},{"ID":"FBgn0031163","EGF_Stimulus":"0.03"},{"ID":"FBgn0030360","EGF_Stimulus":"1.81"},{"ID":"FBgn0036828","EGF_Stimulus":"3.09"},{"ID":"FBgn0035499","EGF_Stimulus":"-0.95"},{"ID":"FBgn0030935","EGF_Stimulus":"1.03"},{"ID":"FBgn0036999","EGF_Stimulus":"0.34"},{"ID":"FBgn0033763","EGF_Stimulus":"-0.35"},{"ID":"FBgn0040078","EGF_Stimulus":"-2.88"},{"ID":"FBgn0017549","EGF_Stimulus":"-0.53"},{"ID":"FBgn0052064","EGF_Stimulus":"1.04"},{"ID":"FBgn0034737","EGF_Stimulus":"0.82"},{"ID":"FBgn0032967","EGF_Stimulus":"0.28"},{"ID":"FBgn0261401","EGF_Stimulus":"1.21"},{"ID":"FBgn0030960","EGF_Stimulus":"-0.23"},{"ID":"FBgn0038369","EGF_Stimulus":"-0.54"},{"ID":"FBgn0030599","EGF_Stimulus":"0.5"},{"ID":"FBgn0029834","EGF_Stimulus":"0.59"},{"ID":"FBgn0015391","EGF_Stimulus":"1.71"},{"ID":"FBgn0050373","EGF_Stimulus":"1.26"},{"ID":"FBgn0038148","EGF_Stimulus":"0.55"},{"ID":"FBgn0023181","EGF_Stimulus":"0.34"},{"ID":"FBgn0028988","EGF_Stimulus":"-2.3"},{"ID":"FBgn0030613","EGF_Stimulus":"0.57"},{"ID":"FBgn0001105","EGF_Stimulus":"1.16"},{"ID":"FBgn0033639","EGF_Stimulus":"0.31"},{"ID":"FBgn0038334","EGF_Stimulus":"-1.43"},{"ID":"FBgn0261380","EGF_Stimulus":"-0.1"},{"ID":"FBgn0031746","EGF_Stimulus":"0.36"},{"ID":"FBgn0030389","EGF_Stimulus":"-0.14"},{"ID":"FBgn0086910","EGF_Stimulus":"0.39"},{"ID":"FBgn0035227","EGF_Stimulus":"-0.95"},{"ID":"FBgn0085290","EGF_Stimulus":"-0.32"},{"ID":"FBgn0031054","EGF_Stimulus":"1.4"},{"ID":"FBgn0037917","EGF_Stimulus":"0.79"},{"ID":"FBgn0051407","EGF_Stimulus":"0.29"},{"ID":"FBgn0031918","EGF_Stimulus":"1.66"},{"ID":"FBgn0026563","EGF_Stimulus":"-0.73"},{"ID":"FBgn0019990","EGF_Stimulus":"0.34"},{"ID":"FBgn0031733","EGF_Stimulus":"1.79"},{"ID":"FBgn0030321","EGF_Stimulus":"0.69"},{"ID":"FBgn0035262","EGF_Stimulus":"0.61"},{"ID":"FBgn0037094","EGF_Stimulus":"-1.35"},{"ID":"FBgn0033076","EGF_Stimulus":"-1.8"},{"ID":"FBgn0038460","EGF_Stimulus":"-0.69"},{"ID":"FBgn0053770","EGF_Stimulus":"-0.27"},{"ID":"FBgn0037809","EGF_Stimulus":"-1.05"},{"ID":"FBgn0038593","EGF_Stimulus":"-0.68"},{"ID":"FBgn0261109","EGF_Stimulus":"-0.27"},{"ID":"FBgn0004654","EGF_Stimulus":"0.25"},{"ID":"FBgn0032615","EGF_Stimulus":"0.44"},{"ID":"FBgn0050177","EGF_Stimulus":"-1.19"},{"ID":"FBgn0031110","EGF_Stimulus":"-0.87"},{"ID":"FBgn0038248","EGF_Stimulus":"-0.21"},{"ID":"FBgn0053128","EGF_Stimulus":"-1.88"},{"ID":"FBgn0030297","EGF_Stimulus":"-0.53"},{"ID":"FBgn0010421","EGF_Stimulus":"-0.39"},{"ID":"FBgn0037943","EGF_Stimulus":"0.63"},{"ID":"FBgn0036717","EGF_Stimulus":"0.85"},{"ID":"FBgn0029947","EGF_Stimulus":"-0.56"},{"ID":"FBgn0037781","EGF_Stimulus":"-0.84"},{"ID":"FBgn0029580","EGF_Stimulus":"-0.21"},{"ID":"FBgn0039462","EGF_Stimulus":"0.7"},{"ID":"FBgn0034314","EGF_Stimulus":"0.25"},{"ID":"FBgn0037076","EGF_Stimulus":"0.52"},{"ID":"FBgn0040890","EGF_Stimulus":"0.84"},{"ID":"FBgn0039709","EGF_Stimulus":"0.93"},{"ID":"FBgn0261641","EGF_Stimulus":"-2.26"},{"ID":"FBgn0032554","EGF_Stimulus":"1.21"},{"ID":"FBgn0020236","EGF_Stimulus":"-0.39"},{"ID":"FBgn0038013","EGF_Stimulus":"1.29"},{"ID":"FBgn0032682","EGF_Stimulus":"0.96"},{"ID":"FBgn0030696","EGF_Stimulus":"-1.45"},{"ID":"FBgn0051198","EGF_Stimulus":"1.31"},{"ID":"FBgn0037573","EGF_Stimulus":"-3.15"},{"ID":"FBgn0039563","EGF_Stimulus":"-0.81"},{"ID":"FBgn0261617","EGF_Stimulus":"3.64"},{"ID":"FBgn0039474","EGF_Stimulus":"0.6"},{"ID":"FBgn0034886","EGF_Stimulus":"0.26"},{"ID":"FBgn0035390","EGF_Stimulus":"1.52"},{"ID":"FBgn0038837","EGF_Stimulus":"1.03"},{"ID":"FBgn0050281","EGF_Stimulus":"-1.7"},{"ID":"FBgn0040385","EGF_Stimulus":"-0.26"},{"ID":"FBgn0031684","EGF_Stimulus":"-1.26"},{"ID":"FBgn0010241","EGF_Stimulus":"-1.1"},{"ID":"FBgn0052056","EGF_Stimulus":"0.42"},{"ID":"FBgn0016122","EGF_Stimulus":"1.38"},{"ID":"FBgn0000541","EGF_Stimulus":"0.68"},{"ID":"FBgn0040892","EGF_Stimulus":"0.7"},{"ID":"FBgn0053552","EGF_Stimulus":"0.53"},{"ID":"FBgn0036790","EGF_Stimulus":"1.11"},{"ID":"FBgn0036090","EGF_Stimulus":"0.91"},{"ID":"FBgn0039536","EGF_Stimulus":"0.92"},{"ID":"FBgn0032822","EGF_Stimulus":"0.73"},{"ID":"FBgn0030969","EGF_Stimulus":"2.38"},{"ID":"FBgn0039050","EGF_Stimulus":"0.47"},{"ID":"FBgn0034693","EGF_Stimulus":"1.11"},{"ID":"FBgn0036368","EGF_Stimulus":"0.17"},{"ID":"FBgn0052185","EGF_Stimulus":"-0.45"},{"ID":"FBgn0040929","EGF_Stimulus":"0.36"},{"ID":"FBgn0016061","EGF_Stimulus":"0.53"},{"ID":"FBgn0052201","EGF_Stimulus":"0.75"},{"ID":"FBgn0002775","EGF_Stimulus":"-0.33"},{"ID":"FBgn0041156","EGF_Stimulus":"0.91"},{"ID":"FBgn0038052","EGF_Stimulus":"-0.3"},{"ID":"FBgn0050359","EGF_Stimulus":"0.36"},{"ID":"FBgn0037327","EGF_Stimulus":"2.51"},{"ID":"FBgn0261549","EGF_Stimulus":"0.62"},{"ID":"FBgn0030810","EGF_Stimulus":"0.78"},{"ID":"FBgn0035069","EGF_Stimulus":"-0.67"},{"ID":"FBgn0037986","EGF_Stimulus":"0.67"},{"ID":"FBgn0029693","EGF_Stimulus":"0.8"},{"ID":"FBgn0035996","EGF_Stimulus":"-0.96"},{"ID":"FBgn0028509","EGF_Stimulus":"0.59"},{"ID":"FBgn0046999","EGF_Stimulus":"0.26"},{"ID":"FBgn0038725","EGF_Stimulus":"-0.87"},{"ID":"FBgn0034743","EGF_Stimulus":"-2.45"},{"ID":"FBgn0034183","EGF_Stimulus":"0.28"},{"ID":"FBgn0035838","EGF_Stimulus":"1.43"},{"ID":"FBgn0035400","EGF_Stimulus":"0.87"},{"ID":"FBgn0033985","EGF_Stimulus":"1.22"},{"ID":"FBgn0032018","EGF_Stimulus":"0.69"},{"ID":"FBgn0027866","EGF_Stimulus":"0.56"},{"ID":"FBgn0004956","EGF_Stimulus":"1.14"},{"ID":"FBgn0026250","EGF_Stimulus":"-2.34"},{"ID":"FBgn0027578","EGF_Stimulus":"0.56"},{"ID":"FBgn0034614","EGF_Stimulus":"-0.53"},{"ID":"FBgn0037885","EGF_Stimulus":"-1.1"},{"ID":"FBgn0003334","EGF_Stimulus":"0.47"},{"ID":"FBgn0017430","EGF_Stimulus":"-1.17"},{"ID":"FBgn0044323","EGF_Stimulus":"-2.34"},{"ID":"FBgn0000356","EGF_Stimulus":"1.22"},{"ID":"FBgn0004179","EGF_Stimulus":"-0.82"},{"ID":"FBgn0083942","EGF_Stimulus":"0.39"},{"ID":"FBgn0002566","EGF_Stimulus":"-0.59"},{"ID":"FBgn0039356","EGF_Stimulus":"0.76"},{"ID":"FBgn0032480","EGF_Stimulus":"-1.27"},{"ID":"FBgn0034063","EGF_Stimulus":"1.5"},{"ID":"FBgn0025383","EGF_Stimulus":"0.65"},{"ID":"FBgn0038078","EGF_Stimulus":"-0.27"},{"ID":"FBgn0053113","EGF_Stimulus":"0.92"},{"ID":"FBgn0031718","EGF_Stimulus":"-0.69"},{"ID":"FBgn0000464","EGF_Stimulus":"1.17"},{"ID":"FBgn0033934","EGF_Stimulus":"0.43"},{"ID":"FBgn0085246","EGF_Stimulus":"1.06"},{"ID":"FBgn0003733","EGF_Stimulus":"0.71"},{"ID":"FBgn0034788","EGF_Stimulus":"1.77"},{"ID":"FBgn0086361","EGF_Stimulus":"0.58"},{"ID":"FBgn0034612","EGF_Stimulus":"0.67"},{"ID":"FBgn0052115","EGF_Stimulus":"-0.98"},{"ID":"FBgn0037601","EGF_Stimulus":"-0.56"},{"ID":"FBgn0010408","EGF_Stimulus":"-3.71"},{"ID":"FBgn0035770","EGF_Stimulus":"0.44"},{"ID":"FBgn0051281","EGF_Stimulus":"0.54"},{"ID":"FBgn0039850","EGF_Stimulus":"-0.82"},{"ID":"FBgn0028943","EGF_Stimulus":"-0.28"},{"ID":"FBgn0033128","EGF_Stimulus":"-0.5"},{"ID":"FBgn0052279","EGF_Stimulus":"-0.61"},{"ID":"FBgn0250732","EGF_Stimulus":"-1.24"},{"ID":"FBgn0011361","EGF_Stimulus":"-0.23"},{"ID":"FBgn0025741","EGF_Stimulus":"1.16"},{"ID":"FBgn0040608","EGF_Stimulus":"-0.16"},{"ID":"FBgn0002590","EGF_Stimulus":"-1.9"},{"ID":"FBgn0033457","EGF_Stimulus":"0.72"},{"ID":"FBgn0029167","EGF_Stimulus":"0.7"},{"ID":"FBgn0030532","EGF_Stimulus":"-1.1"},{"ID":"FBgn0040390","EGF_Stimulus":"1.47"},{"ID":"FBgn0033202","EGF_Stimulus":"1.21"},{"ID":"FBgn0024732","EGF_Stimulus":"0.58"},{"ID":"FBgn0031951","EGF_Stimulus":"-0.38"},{"ID":"FBgn0261387","EGF_Stimulus":"-0.13"},{"ID":"FBgn0051678","EGF_Stimulus":"-1.11"},{"ID":"FBgn0033542","EGF_Stimulus":"0.53"},{"ID":"FBgn0016977","EGF_Stimulus":"1.29"},{"ID":"FBgn0038028","EGF_Stimulus":"0.1"},{"ID":"FBgn0034920","EGF_Stimulus":"-1.61"},{"ID":"FBgn0029828","EGF_Stimulus":"0.28"},{"ID":"FBgn0038611","EGF_Stimulus":"-0.35"},{"ID":"FBgn0036638","EGF_Stimulus":"0.49"},{"ID":"FBgn0032849","EGF_Stimulus":"-1.7"},{"ID":"FBgn0003862","EGF_Stimulus":"2.23"},{"ID":"FBgn0001970","EGF_Stimulus":"-0.97"},{"ID":"FBgn0029800","EGF_Stimulus":"-0.97"},{"ID":"FBgn0038067","EGF_Stimulus":"-0.59"},{"ID":"FBgn0032180","EGF_Stimulus":"-1.34"},{"ID":"FBgn0031526","EGF_Stimulus":"-0.42"},{"ID":"FBgn0015338","EGF_Stimulus":"-1.29"},{"ID":"FBgn0026439","EGF_Stimulus":"-0.66"},{"ID":"FBgn0023540","EGF_Stimulus":"0.6"},{"ID":"FBgn0028707","EGF_Stimulus":"-0.64"},{"ID":"FBgn0024975","EGF_Stimulus":"1.01"},{"ID":"FBgn0035300","EGF_Stimulus":"0.74"},{"ID":"FBgn0037038","EGF_Stimulus":"-0.83"},{"ID":"FBgn0010387","EGF_Stimulus":"0.26"},{"ID":"FBgn0051547","EGF_Stimulus":"0.85"},{"ID":"FBgn0038943","EGF_Stimulus":"-1.08"},{"ID":"FBgn0001983","EGF_Stimulus":"-1.09"},{"ID":"FBgn0052591","EGF_Stimulus":"-0.65"},{"ID":"FBgn0034131","EGF_Stimulus":"0.76"},{"ID":"FBgn0016984","EGF_Stimulus":"-1.45"},{"ID":"FBgn0034731","EGF_Stimulus":"-0.09"},{"ID":"FBgn0032773","EGF_Stimulus":"1.76"},{"ID":"FBgn0034877","EGF_Stimulus":"-0.78"},{"ID":"FBgn0035575","EGF_Stimulus":"0.17"},{"ID":"FBgn0031753","EGF_Stimulus":"0.57"},{"ID":"FBgn0020392","EGF_Stimulus":"0.27"},{"ID":"FBgn0033962","EGF_Stimulus":"0.62"},{"ID":"FBgn0038100","EGF_Stimulus":"0.42"},{"ID":"FBgn0046698","EGF_Stimulus":"-0.75"},{"ID":"FBgn0051988","EGF_Stimulus":"1.63"},{"ID":"FBgn0036928","EGF_Stimulus":"0.48"},{"ID":"FBgn0050479","EGF_Stimulus":"-0.28"},{"ID":"FBgn0026430","EGF_Stimulus":"-0.72"},{"ID":"FBgn0029170","EGF_Stimulus":"1.36"},{"ID":"FBgn0038545","EGF_Stimulus":"-1.57"},{"ID":"FBgn0031065","EGF_Stimulus":"-0.19"},{"ID":"FBgn0053278","EGF_Stimulus":"-0.37"},{"ID":"FBgn0052248","EGF_Stimulus":"-0.77"},{"ID":"FBgn0013334","EGF_Stimulus":"2.52"},{"ID":"FBgn0031970","EGF_Stimulus":"0.66"},{"ID":"FBgn0033972","EGF_Stimulus":"0.25"},{"ID":"FBgn0039120","EGF_Stimulus":"-1.84"},{"ID":"FBgn0259171","EGF_Stimulus":"-0.69"},{"ID":"FBgn0038888","EGF_Stimulus":"0.34"},{"ID":"FBgn0032914","EGF_Stimulus":"0.67"},{"ID":"FBgn0030087","EGF_Stimulus":"1.08"},{"ID":"FBgn0053121","EGF_Stimulus":"0.56"},{"ID":"FBgn0030597","EGF_Stimulus":"-0.71"},{"ID":"FBgn0029854","EGF_Stimulus":"1.6"},{"ID":"FBgn0036942","EGF_Stimulus":"-0.43"},{"ID":"FBgn0028997","EGF_Stimulus":"-0.77"},{"ID":"FBgn0031630","EGF_Stimulus":"0.74"},{"ID":"FBgn0053476","EGF_Stimulus":"1.2"},{"ID":"FBgn0051109","EGF_Stimulus":"-0.69"},{"ID":"FBgn0032938","EGF_Stimulus":"0.88"},{"ID":"FBgn0034793","EGF_Stimulus":"0.28"},{"ID":"FBgn0024558","EGF_Stimulus":"1.1"},{"ID":"FBgn0040491","EGF_Stimulus":"0.47"},{"ID":"FBgn0052652","EGF_Stimulus":"-1.16"},{"ID":"FBgn0037391","EGF_Stimulus":"-0.65"},{"ID":"FBgn0032477","EGF_Stimulus":"-0.41"},{"ID":"FBgn0025684","EGF_Stimulus":"1.2"},{"ID":"FBgn0005590","EGF_Stimulus":"-0.77"},{"ID":"FBgn0038753","EGF_Stimulus":"0.5"},{"ID":"FBgn0034274","EGF_Stimulus":"-0.41"},{"ID":"FBgn0032082","EGF_Stimulus":"-0.34"},{"ID":"FBgn0037654","EGF_Stimulus":"0.42"},{"ID":"FBgn0038217","EGF_Stimulus":"1.19"},{"ID":"FBgn0037661","EGF_Stimulus":"1.91"},{"ID":"FBgn0039335","EGF_Stimulus":"0.66"},{"ID":"FBgn0043576","EGF_Stimulus":"0.68"},{"ID":"FBgn0032654","EGF_Stimulus":"1.25"},{"ID":"FBgn0024957","EGF_Stimulus":"1.55"},{"ID":"FBgn0042135","EGF_Stimulus":"0.75"},{"ID":"FBgn0051028","EGF_Stimulus":"-0.29"},{"ID":"FBgn0034638","EGF_Stimulus":"-0.69"},{"ID":"FBgn0051501","EGF_Stimulus":"-0.81"},{"ID":"FBgn0045770","EGF_Stimulus":"1.87"},{"ID":"FBgn0038828","EGF_Stimulus":"0.58"},{"ID":"FBgn0035521","EGF_Stimulus":"-0.08"},{"ID":"FBgn0085276","EGF_Stimulus":"-0.83"},{"ID":"FBgn0050369","EGF_Stimulus":"-1.22"},{"ID":"FBgn0030742","EGF_Stimulus":"-1.14"},{"ID":"FBgn0260794","EGF_Stimulus":"1.25"},{"ID":"FBgn0033547","EGF_Stimulus":"-0.71"},{"ID":"FBgn0039839","EGF_Stimulus":"0.36"},{"ID":"FBgn0259743","EGF_Stimulus":"0.59"},{"ID":"FBgn0031720","EGF_Stimulus":"-1.24"},{"ID":"FBgn0030356","EGF_Stimulus":"0.9"},{"ID":"FBgn0031437","EGF_Stimulus":"-1.01"},{"ID":"FBgn0033265","EGF_Stimulus":"0.16"},{"ID":"FBgn0015781","EGF_Stimulus":"-0.24"},{"ID":"FBgn0004832","EGF_Stimulus":"-0.56"},{"ID":"FBgn0034117","EGF_Stimulus":"-1.15"},{"ID":"FBgn0086656","EGF_Stimulus":"-2.08"},{"ID":"FBgn0001084","EGF_Stimulus":"0.45"},{"ID":"FBgn0061476","EGF_Stimulus":"-0.26"},{"ID":"FBgn0033979","EGF_Stimulus":"-0.55"},{"ID":"FBgn0020443","EGF_Stimulus":"-0.8"},{"ID":"FBgn0039419","EGF_Stimulus":"-0.59"},{"ID":"FBgn0031985","EGF_Stimulus":"-1.04"},{"ID":"FBgn0032987","EGF_Stimulus":"-4.18"},{"ID":"FBgn0031779","EGF_Stimulus":"-0.58"},{"ID":"FBgn0038332","EGF_Stimulus":"1.92"},{"ID":"FBgn0029174","EGF_Stimulus":"0.16"},{"ID":"FBgn0032296","EGF_Stimulus":"-1.69"},{"ID":"FBgn0030801","EGF_Stimulus":"-1.17"},{"ID":"FBgn0051102","EGF_Stimulus":"0.89"},{"ID":"FBgn0027111","EGF_Stimulus":"0.45"},{"ID":"FBgn0034835","EGF_Stimulus":"-0.14"},{"ID":"FBgn0052062","EGF_Stimulus":"-0.46"},{"ID":"FBgn0259744","EGF_Stimulus":"-0.62"},{"ID":"FBgn0051924","EGF_Stimulus":"1.1"},{"ID":"FBgn0035600","EGF_Stimulus":"0.54"},{"ID":"FBgn0053214","EGF_Stimulus":"-0.57"},{"ID":"FBgn0019947","EGF_Stimulus":"-0.42"},{"ID":"FBgn0032901","EGF_Stimulus":"3.39"},{"ID":"FBgn0039386","EGF_Stimulus":"0.48"},{"ID":"FBgn0027654","EGF_Stimulus":"1.02"},{"ID":"FBgn0037332","EGF_Stimulus":"-1.14"},{"ID":"FBgn0065108","EGF_Stimulus":"0.89"},{"ID":"FBgn0036842","EGF_Stimulus":"0.48"},{"ID":"FBgn0013949","EGF_Stimulus":"1.42"},{"ID":"FBgn0030780","EGF_Stimulus":"0.5"},{"ID":"FBgn0035374","EGF_Stimulus":"0.45"},{"ID":"FBgn0015331","EGF_Stimulus":"1.44"},{"ID":"FBgn0040765","EGF_Stimulus":"-0.42"},{"ID":"FBgn0030678","EGF_Stimulus":"0.67"},{"ID":"FBgn0031548","EGF_Stimulus":"1.21"},{"ID":"FBgn0039160","EGF_Stimulus":"0.98"},{"ID":"FBgn0031086","EGF_Stimulus":"0.97"},{"ID":"FBgn0029812","EGF_Stimulus":"0.53"},{"ID":"FBgn0053517","EGF_Stimulus":"-0.67"},{"ID":"FBgn0066365","EGF_Stimulus":"1.39"},{"ID":"FBgn0037892","EGF_Stimulus":"0.14"},{"ID":"FBgn0031248","EGF_Stimulus":"-0.42"},{"ID":"FBgn0034084","EGF_Stimulus":"1.94"},{"ID":"FBgn0032398","EGF_Stimulus":"0.95"},{"ID":"FBgn0037770","EGF_Stimulus":"2.06"},{"ID":"FBgn0041780","EGF_Stimulus":"-0.71"},{"ID":"FBgn0032435","EGF_Stimulus":"0.34"},{"ID":"FBgn0003449","EGF_Stimulus":"0.95"},{"ID":"FBgn0037506","EGF_Stimulus":"0.76"},{"ID":"FBgn0052985","EGF_Stimulus":"0.03"},{"ID":"FBgn0052793","EGF_Stimulus":"0.75"},{"ID":"FBgn0015240","EGF_Stimulus":"-1.45"},{"ID":"FBgn0038203","EGF_Stimulus":"0.86"},{"ID":"FBgn0031005","EGF_Stimulus":"-0.46"},{"ID":"FBgn0261786","EGF_Stimulus":"0.88"},{"ID":"FBgn0038484","EGF_Stimulus":"-0.87"},{"ID":"FBgn0036279","EGF_Stimulus":"-0.63"},{"ID":"FBgn0032472","EGF_Stimulus":"1.11"},{"ID":"FBgn0000635","EGF_Stimulus":"1.98"},{"ID":"FBgn0041004","EGF_Stimulus":"1.11"},{"ID":"FBgn0038917","EGF_Stimulus":"0.62"},{"ID":"FBgn0051752","EGF_Stimulus":"0.66"},{"ID":"FBgn0031654","EGF_Stimulus":"0.86"},{"ID":"FBgn0035143","EGF_Stimulus":"1.65"},{"ID":"FBgn0037475","EGF_Stimulus":"-1.8"},{"ID":"FBgn0039631","EGF_Stimulus":"0.33"},{"ID":"FBgn0027508","EGF_Stimulus":"-0.71"},{"ID":"FBgn0034029","EGF_Stimulus":"-1.43"},{"ID":"FBgn0031792","EGF_Stimulus":"1.91"},{"ID":"FBgn0033773","EGF_Stimulus":"0.26"},{"ID":"FBgn0052368","EGF_Stimulus":"-0.6"},{"ID":"FBgn0040816","EGF_Stimulus":"0.82"},{"ID":"FBgn0039326","EGF_Stimulus":"0.22"},{"ID":"FBgn0031844","EGF_Stimulus":"-1.37"},{"ID":"FBgn0037427","EGF_Stimulus":"0.83"},{"ID":"FBgn0031444","EGF_Stimulus":"1.37"},{"ID":"FBgn0031818","EGF_Stimulus":"-0.63"},{"ID":"FBgn0034427","EGF_Stimulus":"0.71"},{"ID":"FBgn0053702","EGF_Stimulus":"-0.42"},{"ID":"FBgn0050194","EGF_Stimulus":"-0.91"},{"ID":"FBgn0046689","EGF_Stimulus":"0.85"},{"ID":"FBgn0038486","EGF_Stimulus":"0.55"},{"ID":"FBgn0037310","EGF_Stimulus":"-0.44"},{"ID":"FBgn0031716","EGF_Stimulus":"0.95"},{"ID":"FBgn0051118","EGF_Stimulus":"1.59"},{"ID":"FBgn0250850","EGF_Stimulus":"0.52"},{"ID":"FBgn0031617","EGF_Stimulus":"-1.02"},{"ID":"FBgn0259937","EGF_Stimulus":"-1.17"},{"ID":"FBgn0036566","EGF_Stimulus":"0.82"},{"ID":"FBgn0041171","EGF_Stimulus":"2.22"},{"ID":"FBgn0031957","EGF_Stimulus":"0.05"},{"ID":"FBgn0035781","EGF_Stimulus":"0.48"},{"ID":"FBgn0085379","EGF_Stimulus":"-0.68"},{"ID":"FBgn0032679","EGF_Stimulus":"-0.84"},{"ID":"FBgn0015011","EGF_Stimulus":"0.62"},{"ID":"FBgn0052821","EGF_Stimulus":"0.29"},{"ID":"FBgn0024947","EGF_Stimulus":"-1.2"},{"ID":"FBgn0051099","EGF_Stimulus":"-0.51"},{"ID":"FBgn0027524","EGF_Stimulus":"-0.75"},{"ID":"FBgn0035252","EGF_Stimulus":"0.56"},{"ID":"FBgn0046323","EGF_Stimulus":"-1.11"},{"ID":"FBgn0025874","EGF_Stimulus":"-0.44"},{"ID":"FBgn0050121","EGF_Stimulus":"-1.64"},{"ID":"FBgn0022772","EGF_Stimulus":"-1.08"},{"ID":"FBgn0039117","EGF_Stimulus":"-1.9"},{"ID":"FBgn0038380","EGF_Stimulus":"-0.27"},{"ID":"FBgn0036485","EGF_Stimulus":"-0.08"},{"ID":"FBgn0034978","EGF_Stimulus":"-0.38"},{"ID":"FBgn0039154","EGF_Stimulus":"1.32"},{"ID":"FBgn0040942","EGF_Stimulus":"0.48"},{"ID":"FBgn0052806","EGF_Stimulus":"-0.98"},{"ID":"FBgn0031800","EGF_Stimulus":"0.59"},{"ID":"FBgn0030539","EGF_Stimulus":"1.02"},{"ID":"FBgn0039832","EGF_Stimulus":"-1.11"},{"ID":"FBgn0039078","EGF_Stimulus":"0.7"},{"ID":"FBgn0003887","EGF_Stimulus":"-1.79"},{"ID":"FBgn0034407","EGF_Stimulus":"0.86"},{"ID":"FBgn0036876","EGF_Stimulus":"-0.58"},{"ID":"FBgn0033464","EGF_Stimulus":"0.46"},{"ID":"FBgn0032965","EGF_Stimulus":"0.54"},{"ID":"FBgn0035761","EGF_Stimulus":"0.77"},{"ID":"FBgn0037608","EGF_Stimulus":"0.74"},{"ID":"FBgn0052075","EGF_Stimulus":"-0.84"},{"ID":"FBgn0036337","EGF_Stimulus":"1.71"},{"ID":"FBgn0039104","EGF_Stimulus":"-1.17"},{"ID":"FBgn0034374","EGF_Stimulus":"-0.86"},{"ID":"FBgn0032189","EGF_Stimulus":"-0.86"},{"ID":"FBgn0085468","EGF_Stimulus":"0.37"},{"ID":"FBgn0015799","EGF_Stimulus":"1.24"},{"ID":"FBgn0030706","EGF_Stimulus":"-0.23"},{"ID":"FBgn0003114","EGF_Stimulus":"0.53"},{"ID":"FBgn0037342","EGF_Stimulus":"0.89"},{"ID":"FBgn0030056","EGF_Stimulus":"0.87"},{"ID":"FBgn0086358","EGF_Stimulus":"0.48"},{"ID":"FBgn0015008","EGF_Stimulus":"0.17"},{"ID":"FBgn0260400","EGF_Stimulus":"1.46"},{"ID":"FBgn0003513","EGF_Stimulus":"0.49"},{"ID":"FBgn0052255","EGF_Stimulus":"-0.43"},{"ID":"FBgn0027363","EGF_Stimulus":"-0.36"},{"ID":"FBgn0031399","EGF_Stimulus":"0.82"},{"ID":"FBgn0053287","EGF_Stimulus":"0.88"},{"ID":"FBgn0039227","EGF_Stimulus":"-0.52"},{"ID":"FBgn0033371","EGF_Stimulus":"-0.34"},{"ID":"FBgn0030412","EGF_Stimulus":"1.28"},{"ID":"FBgn0030757","EGF_Stimulus":"-0.31"},{"ID":"FBgn0035755","EGF_Stimulus":"0.77"},{"ID":"FBgn0035165","EGF_Stimulus":"0.55"},{"ID":"FBgn0030684","EGF_Stimulus":"0.3"},{"ID":"FBgn0031781","EGF_Stimulus":"-0.14"},{"ID":"FBgn0031514","EGF_Stimulus":"0.43"},{"ID":"FBgn0028544","EGF_Stimulus":"-0.19"},{"ID":"FBgn0033860","EGF_Stimulus":"1.08"},{"ID":"FBgn0028693","EGF_Stimulus":"-1.62"},{"ID":"FBgn0086707","EGF_Stimulus":"1.31"},{"ID":"FBgn0032200","EGF_Stimulus":"0.54"},{"ID":"FBgn0031227","EGF_Stimulus":"0.36"},{"ID":"FBgn0028421","EGF_Stimulus":"0.23"},{"ID":"FBgn0035688","EGF_Stimulus":"-0.79"},{"ID":"FBgn0039485","EGF_Stimulus":"-0.31"},{"ID":"FBgn0031106","EGF_Stimulus":"0.15"},{"ID":"FBgn0031497","EGF_Stimulus":"0.77"},{"ID":"FBgn0031254","EGF_Stimulus":"1.31"},{"ID":"FBgn0034908","EGF_Stimulus":"2.24"},{"ID":"FBgn0035541","EGF_Stimulus":"-0.41"},{"ID":"FBgn0032101","EGF_Stimulus":"0.34"},{"ID":"FBgn0036479","EGF_Stimulus":"-0.24"},{"ID":"FBgn0035989","EGF_Stimulus":"-0.68"},{"ID":"FBgn0031663","EGF_Stimulus":"-0.6"},{"ID":"FBgn0039041","EGF_Stimulus":"1.72"},{"ID":"FBgn0029002","EGF_Stimulus":"0.16"},{"ID":"FBgn0039707","EGF_Stimulus":"1.23"},{"ID":"FBgn0033925","EGF_Stimulus":"1.07"},{"ID":"FBgn0020370","EGF_Stimulus":"-0.91"},{"ID":"FBgn0033286","EGF_Stimulus":"-0.21"},{"ID":"FBgn0023441","EGF_Stimulus":"0.51"},{"ID":"FBgn0033324","EGF_Stimulus":"0.42"},{"ID":"FBgn0035199","EGF_Stimulus":"0.97"},{"ID":"FBgn0250839","EGF_Stimulus":"-1.47"},{"ID":"FBgn0053098","EGF_Stimulus":"0.56"},{"ID":"FBgn0038415","EGF_Stimulus":"1.17"},{"ID":"FBgn0086372","EGF_Stimulus":"1.1"},{"ID":"FBgn0052037","EGF_Stimulus":"0.53"},{"ID":"FBgn0037463","EGF_Stimulus":"1.06"},{"ID":"FBgn0036812","EGF_Stimulus":"-0.02"},{"ID":"FBgn0024361","EGF_Stimulus":"-0.28"},{"ID":"FBgn0003011","EGF_Stimulus":"0.32"},{"ID":"FBgn0037498","EGF_Stimulus":"-0.51"},{"ID":"FBgn0052982","EGF_Stimulus":"0.81"},{"ID":"FBgn0260005","EGF_Stimulus":"2.16"},{"ID":"FBgn0040534","EGF_Stimulus":"-0.01"},{"ID":"FBgn0260446","EGF_Stimulus":"1.26"},{"ID":"FBgn0038860","EGF_Stimulus":"0.56"},{"ID":"FBgn0013720","EGF_Stimulus":"0.73"},{"ID":"FBgn0086675","EGF_Stimulus":"-1.69"},{"ID":"FBgn0031286","EGF_Stimulus":"0.72"},{"ID":"FBgn0010590","EGF_Stimulus":"-3.54"},{"ID":"FBgn0034971","EGF_Stimulus":"0.93"},{"ID":"FBgn0020626","EGF_Stimulus":"0.96"},{"ID":"FBgn0031869","EGF_Stimulus":"-0.68"},{"ID":"FBgn0035779","EGF_Stimulus":"0.39"},{"ID":"FBgn0053459","EGF_Stimulus":"0.29"},{"ID":"FBgn0035290","EGF_Stimulus":"0.54"},{"ID":"FBgn0035733","EGF_Stimulus":"0.5"},{"ID":"FBgn0027602","EGF_Stimulus":"-0.52"},{"ID":"FBgn0034748","EGF_Stimulus":"-0.65"},{"ID":"FBgn0016119","EGF_Stimulus":"-0.95"},{"ID":"FBgn0034505","EGF_Stimulus":"-0.17"},{"ID":"FBgn0037184","EGF_Stimulus":"-0.49"},{"ID":"FBgn0027518","EGF_Stimulus":"-1.76"},{"ID":"FBgn0034153","EGF_Stimulus":"0.77"},{"ID":"FBgn0036726","EGF_Stimulus":"-0.75"},{"ID":"FBgn0037643","EGF_Stimulus":"1.2"},{"ID":"FBgn0032636","EGF_Stimulus":"-1.56"},{"ID":"FBgn0053548","EGF_Stimulus":"-0.43"},{"ID":"FBgn0052372","EGF_Stimulus":"0.69"},{"ID":"FBgn0036294","EGF_Stimulus":"0.95"},{"ID":"FBgn0052971","EGF_Stimulus":"-1.23"},{"ID":"FBgn0031681","EGF_Stimulus":"0.43"},{"ID":"FBgn0034176","EGF_Stimulus":"0.82"},{"ID":"FBgn0035645","EGF_Stimulus":"-0.21"},{"ID":"FBgn0261245","EGF_Stimulus":"-0.59"},{"ID":"FBgn0037703","EGF_Stimulus":"0.63"},{"ID":"FBgn0029897","EGF_Stimulus":"-3.53"},{"ID":"FBgn0033485","EGF_Stimulus":"0.21"},{"ID":"FBgn0039184","EGF_Stimulus":"-0.61"},{"ID":"FBgn0040487","EGF_Stimulus":"1.1"},{"ID":"FBgn0039595","EGF_Stimulus":"0.56"},{"ID":"FBgn0041244","EGF_Stimulus":"-1.31"},{"ID":"FBgn0051948","EGF_Stimulus":"0.51"},{"ID":"FBgn0051053","EGF_Stimulus":"-0.45"},{"ID":"FBgn0036160","EGF_Stimulus":"0.49"},{"ID":"FBgn0033047","EGF_Stimulus":"1.15"},{"ID":"FBgn0016970","EGF_Stimulus":"0.54"},{"ID":"FBgn0034461","EGF_Stimulus":"-0.22"},{"ID":"FBgn0261090","EGF_Stimulus":"-1.46"},{"ID":"FBgn0030749","EGF_Stimulus":"-1.07"},{"ID":"FBgn0036488","EGF_Stimulus":"-0.82"},{"ID":"FBgn0046756","EGF_Stimulus":"1.08"},{"ID":"FBgn0036348","EGF_Stimulus":"0.78"},{"ID":"FBgn0037860","EGF_Stimulus":"0.8"},{"ID":"FBgn0011812","EGF_Stimulus":"-1.01"},{"ID":"FBgn0261551","EGF_Stimulus":"-1.11"},{"ID":"FBgn0042112","EGF_Stimulus":"0.25"},{"ID":"FBgn0004888","EGF_Stimulus":"-1.2"},{"ID":"FBgn0052081","EGF_Stimulus":"0.4"},{"ID":"FBgn0032361","EGF_Stimulus":"0.51"},{"ID":"FBgn0035695","EGF_Stimulus":"1.48"},{"ID":"FBgn0051909","EGF_Stimulus":"-2.05"},{"ID":"FBgn0041147","EGF_Stimulus":"-0.67"},{"ID":"FBgn0050404","EGF_Stimulus":"1.06"},{"ID":"FBgn0033397","EGF_Stimulus":"0.66"},{"ID":"FBgn0040717","EGF_Stimulus":"0.17"},{"ID":"FBgn0050050","EGF_Stimulus":"-0.19"},{"ID":"FBgn0028744","EGF_Stimulus":"0.44"},{"ID":"FBgn0039071","EGF_Stimulus":"2.13"},{"ID":"FBgn0052833","EGF_Stimulus":"0.33"},{"ID":"FBgn0259785","EGF_Stimulus":"-2.57"},{"ID":"FBgn0034538","EGF_Stimulus":"-0.7"},{"ID":"FBgn0030519","EGF_Stimulus":"-0.63"},{"ID":"FBgn0047135","EGF_Stimulus":"-0.76"},{"ID":"FBgn0037540","EGF_Stimulus":"1.29"},{"ID":"FBgn0027376","EGF_Stimulus":"-0.34"},{"ID":"FBgn0004363","EGF_Stimulus":"-0.38"},{"ID":"FBgn0039737","EGF_Stimulus":"-1.81"},{"ID":"FBgn0034472","EGF_Stimulus":"-0.41"},{"ID":"FBgn0036858","EGF_Stimulus":"-1.23"},{"ID":"FBgn0052379","EGF_Stimulus":"0.13"},{"ID":"FBgn0038821","EGF_Stimulus":"1.25"},{"ID":"FBgn0038020","EGF_Stimulus":"0.99"},{"ID":"FBgn0051862","EGF_Stimulus":"-1.08"},{"ID":"FBgn0003068","EGF_Stimulus":"0.71"},{"ID":"FBgn0010812","EGF_Stimulus":"0.51"},{"ID":"FBgn0015572","EGF_Stimulus":"0.15"},{"ID":"FBgn0000153","EGF_Stimulus":"0.53"},{"ID":"FBgn0032391","EGF_Stimulus":"-0.54"},{"ID":"FBgn0030996","EGF_Stimulus":"-0.21"},{"ID":"FBgn0033019","EGF_Stimulus":"-2.08"},{"ID":"FBgn0259178","EGF_Stimulus":"0.85"},{"ID":"FBgn0085197","EGF_Stimulus":"-0.81"},{"ID":"FBgn0029969","EGF_Stimulus":"-0.27"},{"ID":"FBgn0033278","EGF_Stimulus":"-0.98"},{"ID":"FBgn0029756","EGF_Stimulus":"0.93"},{"ID":"FBgn0051133","EGF_Stimulus":"-0.43"},{"ID":"FBgn0029765","EGF_Stimulus":"0.89"},{"ID":"FBgn0031535","EGF_Stimulus":"1.25"},{"ID":"FBgn0054047","EGF_Stimulus":"1.35"},{"ID":"FBgn0087005","EGF_Stimulus":"-1.16"},{"ID":"FBgn0038578","EGF_Stimulus":"-1.04"},{"ID":"FBgn0030028","EGF_Stimulus":"0.33"},{"ID":"FBgn0030890","EGF_Stimulus":"0.93"},{"ID":"FBgn0050094","EGF_Stimulus":"-0.42"},{"ID":"FBgn0037223","EGF_Stimulus":"1.32"},{"ID":"FBgn0032522","EGF_Stimulus":"0.36"},{"ID":"FBgn0026738","EGF_Stimulus":"-1.18"},{"ID":"FBgn0038700","EGF_Stimulus":"1.24"},{"ID":"FBgn0027571","EGF_Stimulus":"-3.02"},{"ID":"FBgn0040227","EGF_Stimulus":"-2.31"},{"ID":"FBgn0062442","EGF_Stimulus":"1.51"},{"ID":"FBgn0003277","EGF_Stimulus":"-2.47"},{"ID":"FBgn0040372","EGF_Stimulus":"0.24"},{"ID":"FBgn0031888","EGF_Stimulus":"1.47"},{"ID":"FBgn0035964","EGF_Stimulus":"0.29"},{"ID":"FBgn0015618","EGF_Stimulus":"1.58"},{"ID":"FBgn0035056","EGF_Stimulus":"0.91"},{"ID":"FBgn0036288","EGF_Stimulus":"-2.16"},{"ID":"FBgn0086679","EGF_Stimulus":"0.93"},{"ID":"FBgn0028942","EGF_Stimulus":"1.16"},{"ID":"FBgn0005626","EGF_Stimulus":"-3.08"},{"ID":"FBgn0037358","EGF_Stimulus":"-1.39"},{"ID":"FBgn0002772","EGF_Stimulus":"0.87"},{"ID":"FBgn0011693","EGF_Stimulus":"1.25"},{"ID":"FBgn0031146","EGF_Stimulus":"-0.52"},{"ID":"FBgn0001978","EGF_Stimulus":"-1.4"},{"ID":"FBgn0003140","EGF_Stimulus":"0.9"},{"ID":"FBgn0038180","EGF_Stimulus":"-1.17"},{"ID":"FBgn0031450","EGF_Stimulus":"0.08"},{"ID":"FBgn0040465","EGF_Stimulus":"-0.81"},{"ID":"FBgn0033134","EGF_Stimulus":"-0.36"},{"ID":"FBgn0002524","EGF_Stimulus":"-1.47"},{"ID":"FBgn0260474","EGF_Stimulus":"1.83"},{"ID":"FBgn0039048","EGF_Stimulus":"0.79"},{"ID":"FBgn0051619","EGF_Stimulus":"0.53"},{"ID":"FBgn0033990","EGF_Stimulus":"0.51"},{"ID":"FBgn0010770","EGF_Stimulus":"-0.46"},{"ID":"FBgn0040950","EGF_Stimulus":"1.64"},{"ID":"FBgn0261530","EGF_Stimulus":"0.98"},{"ID":"FBgn0034396","EGF_Stimulus":"-0.59"},{"ID":"FBgn0040257","EGF_Stimulus":"0.58"},{"ID":"FBgn0261534","EGF_Stimulus":"1.08"},{"ID":"FBgn0010044","EGF_Stimulus":"-2.33"},{"ID":"FBgn0036680","EGF_Stimulus":"0.7"},{"ID":"FBgn0261585","EGF_Stimulus":"-0.58"},{"ID":"FBgn0033943","EGF_Stimulus":"-0.57"},{"ID":"FBgn0040505","EGF_Stimulus":"-0.73"},{"ID":"FBgn0037121","EGF_Stimulus":"-2.07"},{"ID":"FBgn0031886","EGF_Stimulus":"-0.64"},{"ID":"FBgn0030398","EGF_Stimulus":"1.74"},{"ID":"FBgn0032451","EGF_Stimulus":"0.7"},{"ID":"FBgn0040091","EGF_Stimulus":"-1.1"},{"ID":"FBgn0050046","EGF_Stimulus":"-0.63"},{"ID":"FBgn0036422","EGF_Stimulus":"1.13"},{"ID":"FBgn0259729","EGF_Stimulus":"-1.31"},{"ID":"FBgn0260753","EGF_Stimulus":"1.21"},{"ID":"FBgn0010223","EGF_Stimulus":"1.27"},{"ID":"FBgn0025185","EGF_Stimulus":"0.46"},{"ID":"FBgn0023167","EGF_Stimulus":"-0.41"},{"ID":"FBgn0035626","EGF_Stimulus":"1.21"},{"ID":"FBgn0010352","EGF_Stimulus":"1.03"},{"ID":"FBgn0040571","EGF_Stimulus":"-0.47"},{"ID":"FBgn0031934","EGF_Stimulus":"-0.39"},{"ID":"FBgn0038516","EGF_Stimulus":"0.27"},{"ID":"FBgn0052667","EGF_Stimulus":"0.52"},{"ID":"FBgn0008635","EGF_Stimulus":"-4.46"},{"ID":"FBgn0038654","EGF_Stimulus":"0.47"},{"ID":"FBgn0032095","EGF_Stimulus":"0.4"},{"ID":"FBgn0000258","EGF_Stimulus":"0.25"},{"ID":"FBgn0038673","EGF_Stimulus":"0.22"},{"ID":"FBgn0030941","EGF_Stimulus":"-0.38"},{"ID":"FBgn0039679","EGF_Stimulus":"0.49"},{"ID":"FBgn0260764","EGF_Stimulus":"-0.85"},{"ID":"FBgn0030904","EGF_Stimulus":"-2.28"},{"ID":"FBgn0033935","EGF_Stimulus":"0.68"},{"ID":"FBgn0030773","EGF_Stimulus":"-0.64"},{"ID":"FBgn0038385","EGF_Stimulus":"0.37"},{"ID":"FBgn0015218","EGF_Stimulus":"-2.62"},{"ID":"FBgn0039212","EGF_Stimulus":"-0.74"},{"ID":"FBgn0034430","EGF_Stimulus":"-1.05"},{"ID":"FBgn0029723","EGF_Stimulus":"-0.31"},{"ID":"FBgn0033027","EGF_Stimulus":"0.22"},{"ID":"FBgn0033473","EGF_Stimulus":"0.47"},{"ID":"FBgn0030582","EGF_Stimulus":"-0.51"},{"ID":"FBgn0032243","EGF_Stimulus":"-0.59"},{"ID":"FBgn0033680","EGF_Stimulus":"0.24"},{"ID":"FBgn0014340","EGF_Stimulus":"-0.64"},{"ID":"FBgn0020309","EGF_Stimulus":"0.68"},{"ID":"FBgn0035855","EGF_Stimulus":"0.19"},{"ID":"FBgn0002723","EGF_Stimulus":"0.61"},{"ID":"FBgn0029712","EGF_Stimulus":"0.11"},{"ID":"FBgn0051739","EGF_Stimulus":"0.36"},{"ID":"FBgn0032533","EGF_Stimulus":"0.56"},{"ID":"FBgn0045495","EGF_Stimulus":"1.02"},{"ID":"FBgn0085400","EGF_Stimulus":"0.5"},{"ID":"FBgn0033101","EGF_Stimulus":"1.54"},{"ID":"FBgn0003256","EGF_Stimulus":"-1.82"},{"ID":"FBgn0033061","EGF_Stimulus":"1.16"},{"ID":"FBgn0036159","EGF_Stimulus":"0.57"},{"ID":"FBgn0050460","EGF_Stimulus":"-0.7"},{"ID":"FBgn0030218","EGF_Stimulus":"-0.78"},{"ID":"FBgn0005613","EGF_Stimulus":"-1.07"},{"ID":"FBgn0017579","EGF_Stimulus":"-4.19"},{"ID":"FBgn0050345","EGF_Stimulus":"0.47"},{"ID":"FBgn0031829","EGF_Stimulus":"-0.94"},{"ID":"FBgn0046886","EGF_Stimulus":"-1.03"},{"ID":"FBgn0032354","EGF_Stimulus":"0.49"},{"ID":"FBgn0260226","EGF_Stimulus":"-0.33"},{"ID":"FBgn0038881","EGF_Stimulus":"0.83"},{"ID":"FBgn0039670","EGF_Stimulus":"0.79"},{"ID":"FBgn0033917","EGF_Stimulus":"1.32"},{"ID":"FBgn0042098","EGF_Stimulus":"1.38"},{"ID":"FBgn0036316","EGF_Stimulus":"-0.62"},{"ID":"FBgn0030035","EGF_Stimulus":"0.65"},{"ID":"FBgn0030186","EGF_Stimulus":"0.7"},{"ID":"FBgn0031130","EGF_Stimulus":"0.34"},{"ID":"FBgn0259210","EGF_Stimulus":"3.19"},{"ID":"FBgn0051693","EGF_Stimulus":"1.48"},{"ID":"FBgn0021979","EGF_Stimulus":"0.72"},{"ID":"FBgn0032033","EGF_Stimulus":"0.43"},{"ID":"FBgn0000036","EGF_Stimulus":"-0.51"},{"ID":"FBgn0083963","EGF_Stimulus":"0.71"},{"ID":"FBgn0051815","EGF_Stimulus":"-0.57"},{"ID":"FBgn0030789","EGF_Stimulus":"-0.19"},{"ID":"FBgn0038342","EGF_Stimulus":"-0.5"},{"ID":"FBgn0039193","EGF_Stimulus":"-0.83"},{"ID":"FBgn0260856","EGF_Stimulus":"0.01"},{"ID":"FBgn0039651","EGF_Stimulus":"1.18"},{"ID":"FBgn0032026","EGF_Stimulus":"0.23"},{"ID":"FBgn0001114","EGF_Stimulus":"0.47"},{"ID":"FBgn0005355","EGF_Stimulus":"0.91"},{"ID":"FBgn0261502","EGF_Stimulus":"1.44"},{"ID":"FBgn0086444","EGF_Stimulus":"-0.74"},{"ID":"FBgn0053533","EGF_Stimulus":"0.27"},{"ID":"FBgn0033951","EGF_Stimulus":"-0.36"},{"ID":"FBgn0031375","EGF_Stimulus":"0.89"},{"ID":"FBgn0037199","EGF_Stimulus":"0.75"},{"ID":"FBgn0250870","EGF_Stimulus":"-1"},{"ID":"FBgn0022786","EGF_Stimulus":"0.37"},{"ID":"FBgn0039812","EGF_Stimulus":"-2.2"},{"ID":"FBgn0032120","EGF_Stimulus":"0.39"},{"ID":"FBgn0043539","EGF_Stimulus":"0.81"},{"ID":"FBgn0039727","EGF_Stimulus":"1.3"},{"ID":"FBgn0086855","EGF_Stimulus":"-1.54"},{"ID":"FBgn0026317","EGF_Stimulus":"0.81"},{"ID":"FBgn0024913","EGF_Stimulus":"0.76"},{"ID":"FBgn0001313","EGF_Stimulus":"0.11"},{"ID":"FBgn0035598","EGF_Stimulus":"-1.38"},{"ID":"FBgn0028382","EGF_Stimulus":"-0.52"},{"ID":"FBgn0037899","EGF_Stimulus":"-2.25"},{"ID":"FBgn0038507","EGF_Stimulus":"1.07"},{"ID":"FBgn0037490","EGF_Stimulus":"-0.58"},{"ID":"FBgn0033950","EGF_Stimulus":"0.33"},{"ID":"FBgn0035792","EGF_Stimulus":"0.69"},{"ID":"FBgn0250755","EGF_Stimulus":"-1.36"},{"ID":"FBgn0051742","EGF_Stimulus":"0.61"},{"ID":"FBgn0051390","EGF_Stimulus":"-0.24"},{"ID":"FBgn0029906","EGF_Stimulus":"1.06"},{"ID":"FBgn0035510","EGF_Stimulus":"1.13"},{"ID":"FBgn0053054","EGF_Stimulus":"-1.04"},{"ID":"FBgn0025802","EGF_Stimulus":"-0.76"},{"ID":"FBgn0034763","EGF_Stimulus":"-0.86"},{"ID":"FBgn0028789","EGF_Stimulus":"0.62"},{"ID":"FBgn0033113","EGF_Stimulus":"0.73"},{"ID":"FBgn0051191","EGF_Stimulus":"1.01"},{"ID":"FBgn0037371","EGF_Stimulus":"-0.88"},{"ID":"FBgn0038299","EGF_Stimulus":"0.47"},{"ID":"FBgn0032003","EGF_Stimulus":"0.68"},{"ID":"FBgn0003710","EGF_Stimulus":"0.55"},{"ID":"FBgn0028467","EGF_Stimulus":"-0.31"},{"ID":"FBgn0014020","EGF_Stimulus":"-3.61"},{"ID":"FBgn0040697","EGF_Stimulus":"0.92"},{"ID":"FBgn0033519","EGF_Stimulus":"0.5"},{"ID":"FBgn0033674","EGF_Stimulus":"0.78"},{"ID":"FBgn0014380","EGF_Stimulus":"2.96"},{"ID":"FBgn0023520","EGF_Stimulus":"-0.82"},{"ID":"FBgn0040255","EGF_Stimulus":"1.04"},{"ID":"FBgn0029930","EGF_Stimulus":"1.52"},{"ID":"FBgn0259188","EGF_Stimulus":"0.93"},{"ID":"FBgn0010774","EGF_Stimulus":"2.1"},{"ID":"FBgn0024196","EGF_Stimulus":"0.82"},{"ID":"FBgn0025716","EGF_Stimulus":"-4.09"},{"ID":"FBgn0051639","EGF_Stimulus":"-0.46"},{"ID":"FBgn0032015","EGF_Stimulus":"0.09"},{"ID":"FBgn0035847","EGF_Stimulus":"-0.31"},{"ID":"FBgn0038280","EGF_Stimulus":"0.91"},{"ID":"FBgn0037743","EGF_Stimulus":"0.56"},{"ID":"FBgn0038581","EGF_Stimulus":"0.56"},{"ID":"FBgn0032808","EGF_Stimulus":"1.31"},{"ID":"FBgn0025825","EGF_Stimulus":"-1.31"},{"ID":"FBgn0066293","EGF_Stimulus":"-0.51"},{"ID":"FBgn0001991","EGF_Stimulus":"1.98"},{"ID":"FBgn0035534","EGF_Stimulus":"0.64"},{"ID":"FBgn0031977","EGF_Stimulus":"-0.38"},{"ID":"FBgn0037535","EGF_Stimulus":"-0.4"},{"ID":"FBgn0034326","EGF_Stimulus":"0.28"},{"ID":"FBgn0259967","EGF_Stimulus":"-0.92"},{"ID":"FBgn0036584","EGF_Stimulus":"-0.71"},{"ID":"FBgn0028675","EGF_Stimulus":"-0.24"},{"ID":"FBgn0033341","EGF_Stimulus":"-2.04"},{"ID":"FBgn0036663","EGF_Stimulus":"0.68"},{"ID":"FBgn0031149","EGF_Stimulus":"1.1"},{"ID":"FBgn0062413","EGF_Stimulus":"0.31"},{"ID":"FBgn0026392","EGF_Stimulus":"-1.6"},{"ID":"FBgn0034662","EGF_Stimulus":"1.01"},{"ID":"FBgn0011826","EGF_Stimulus":"1.59"},{"ID":"FBgn0031197","EGF_Stimulus":"0.24"},{"ID":"FBgn0033033","EGF_Stimulus":"0.57"},{"ID":"FBgn0052438","EGF_Stimulus":"-0.81"},{"ID":"FBgn0000150","EGF_Stimulus":"0.34"},{"ID":"FBgn0026174","EGF_Stimulus":"0.68"},{"ID":"FBgn0041336","EGF_Stimulus":"-0.35"},{"ID":"FBgn0039321","EGF_Stimulus":"0.35"},{"ID":"FBgn0030499","EGF_Stimulus":"-1.6"},{"ID":"FBgn0033166","EGF_Stimulus":"-0.86"},{"ID":"FBgn0000497","EGF_Stimulus":"0.36"},{"ID":"FBgn0037764","EGF_Stimulus":"0.59"},{"ID":"FBgn0052660","EGF_Stimulus":"-1.23"},{"ID":"FBgn0036421","EGF_Stimulus":"1.11"},{"ID":"FBgn0032787","EGF_Stimulus":"0.83"},{"ID":"FBgn0259985","EGF_Stimulus":"1.1"},{"ID":"FBgn0039302","EGF_Stimulus":"1.15"},{"ID":"FBgn0029504","EGF_Stimulus":"2.72"},{"ID":"FBgn0261561","EGF_Stimulus":"-1.27"},{"ID":"FBgn0004575","EGF_Stimulus":"-1.39"},{"ID":"FBgn0000382","EGF_Stimulus":"0.34"},{"ID":"FBgn0035901","EGF_Stimulus":"-0.17"},{"ID":"FBgn0004390","EGF_Stimulus":"0.69"},{"ID":"FBgn0037442","EGF_Stimulus":"0.35"},{"ID":"FBgn0052203","EGF_Stimulus":"-1.22"},{"ID":"FBgn0032266","EGF_Stimulus":"-1.12"},{"ID":"FBgn0035309","EGF_Stimulus":"0.57"},{"ID":"FBgn0051992","EGF_Stimulus":"-0.64"},{"ID":"FBgn0034514","EGF_Stimulus":"0.69"},{"ID":"FBgn0050391","EGF_Stimulus":"-0.47"},{"ID":"FBgn0033387","EGF_Stimulus":"0.58"},{"ID":"FBgn0028373","EGF_Stimulus":"1.98"},{"ID":"FBgn0034263","EGF_Stimulus":"-0.09"},{"ID":"FBgn0010473","EGF_Stimulus":"0.73"},{"ID":"FBgn0031813","EGF_Stimulus":"1.16"},{"ID":"FBgn0037873","EGF_Stimulus":"-3.66"},{"ID":"FBgn0052602","EGF_Stimulus":"-0.59"},{"ID":"FBgn0033141","EGF_Stimulus":"-1.16"},{"ID":"FBgn0040780","EGF_Stimulus":"-0.99"},{"ID":"FBgn0261085","EGF_Stimulus":"0.76"},{"ID":"FBgn0040923","EGF_Stimulus":"-0.65"},{"ID":"FBgn0040347","EGF_Stimulus":"0.89"},{"ID":"FBgn0034937","EGF_Stimulus":"-1.23"},{"ID":"FBgn0037093","EGF_Stimulus":"-0.1"},{"ID":"FBgn0041622","EGF_Stimulus":"0.93"},{"ID":"FBgn0038439","EGF_Stimulus":"0.33"},{"ID":"FBgn0037761","EGF_Stimulus":"-1.4"},{"ID":"FBgn0034165","EGF_Stimulus":"0.6"},{"ID":"FBgn0029920","EGF_Stimulus":"1.62"},{"ID":"FBgn0020306","EGF_Stimulus":"-4.81"},{"ID":"FBgn0040904","EGF_Stimulus":"0.59"},{"ID":"FBgn0000473","EGF_Stimulus":"4.11"},{"ID":"FBgn0033884","EGF_Stimulus":"-0.3"},{"ID":"FBgn0039252","EGF_Stimulus":"0.9"},{"ID":"FBgn0034443","EGF_Stimulus":"0.93"},{"ID":"FBgn0030669","EGF_Stimulus":"0.7"},{"ID":"FBgn0040905","EGF_Stimulus":"0.13"},{"ID":"FBgn0040871","EGF_Stimulus":"0.6"},{"ID":"FBgn0039795","EGF_Stimulus":"-1.29"},{"ID":"FBgn0011769","EGF_Stimulus":"-0.76"},{"ID":"FBgn0037051","EGF_Stimulus":"-0.85"},{"ID":"FBgn0036757","EGF_Stimulus":"1.14"},{"ID":"FBgn0039273","EGF_Stimulus":"0.09"},{"ID":"FBgn0037844","EGF_Stimulus":"1.42"},{"ID":"FBgn0030574","EGF_Stimulus":"-0.78"},{"ID":"FBgn0038931","EGF_Stimulus":"0.85"},{"ID":"FBgn0004901","EGF_Stimulus":"1.19"},{"ID":"FBgn0036750","EGF_Stimulus":"-1.15"},{"ID":"FBgn0031442","EGF_Stimulus":"1.04"},{"ID":"FBgn0035426","EGF_Stimulus":"0.8"},{"ID":"FBgn0052553","EGF_Stimulus":"0.49"},{"ID":"FBgn0259164","EGF_Stimulus":"1.2"},{"ID":"FBgn0036417","EGF_Stimulus":"0.43"},{"ID":"FBgn0024510","EGF_Stimulus":"1.26"},{"ID":"FBgn0038136","EGF_Stimulus":"1.6"},{"ID":"FBgn0032251","EGF_Stimulus":"1.55"},{"ID":"FBgn0036882","EGF_Stimulus":"1.34"},{"ID":"FBgn0036745","EGF_Stimulus":"1.12"},{"ID":"FBgn0037726","EGF_Stimulus":"0.96"},{"ID":"FBgn0050417","EGF_Stimulus":"-1.32"},{"ID":"FBgn0058191","EGF_Stimulus":"-0.36"},{"ID":"FBgn0038194","EGF_Stimulus":"0.25"},{"ID":"FBgn0026160","EGF_Stimulus":"1.1"},{"ID":"FBgn0039347","EGF_Stimulus":"0.83"},{"ID":"FBgn0085404","EGF_Stimulus":"0.93"},{"ID":"FBgn0086348","EGF_Stimulus":"-0.29"},{"ID":"FBgn0053003","EGF_Stimulus":"-1"},{"ID":"FBgn0261630","EGF_Stimulus":"-0.8"},{"ID":"FBgn0051036","EGF_Stimulus":"0.1"},{"ID":"FBgn0260960","EGF_Stimulus":"1.76"},{"ID":"FBgn0039083","EGF_Stimulus":"0.32"},{"ID":"FBgn0035678","EGF_Stimulus":"-1.19"},{"ID":"FBgn0035578","EGF_Stimulus":"0.64"},{"ID":"FBgn0027330","EGF_Stimulus":"-1.71"},{"ID":"FBgn0039452","EGF_Stimulus":"-0.42"},{"ID":"FBgn0032020","EGF_Stimulus":"-1.42"},{"ID":"FBgn0052801","EGF_Stimulus":"0.64"},{"ID":"FBgn0033853","EGF_Stimulus":"0.34"},{"ID":"FBgn0034996","EGF_Stimulus":"-0.45"},{"ID":"FBgn0004181","EGF_Stimulus":"0.84"},{"ID":"FBgn0013750","EGF_Stimulus":"-0.72"},{"ID":"FBgn0034096","EGF_Stimulus":"-0.93"},{"ID":"FBgn0033429","EGF_Stimulus":"0.49"},{"ID":"FBgn0030055","EGF_Stimulus":"0.67"},{"ID":"FBgn0035241","EGF_Stimulus":"-0.5"},{"ID":"FBgn0031874","EGF_Stimulus":"-0.52"},{"ID":"FBgn0000617","EGF_Stimulus":"1.72"},{"ID":"FBgn0030525","EGF_Stimulus":"-0.8"},{"ID":"FBgn0033122","EGF_Stimulus":"1.2"},{"ID":"FBgn0034965","EGF_Stimulus":"-0.97"},{"ID":"FBgn0040793","EGF_Stimulus":"-1.93"},{"ID":"FBgn0044047","EGF_Stimulus":"0.45"},{"ID":"FBgn0053267","EGF_Stimulus":"0.82"},{"ID":"FBgn0053257","EGF_Stimulus":"0.48"},{"ID":"FBgn0036519","EGF_Stimulus":"-1.07"},{"ID":"FBgn0010482","EGF_Stimulus":"0.57"},{"ID":"FBgn0051445","EGF_Stimulus":"-0.25"},{"ID":"FBgn0000489","EGF_Stimulus":"-0.73"},{"ID":"FBgn0051876","EGF_Stimulus":"0.86"},{"ID":"FBgn0033412","EGF_Stimulus":"0.29"},{"ID":"FBgn0029688","EGF_Stimulus":"-1.96"},{"ID":"FBgn0085435","EGF_Stimulus":"0.6"},{"ID":"FBgn0031857","EGF_Stimulus":"-0.97"},{"ID":"FBgn0050145","EGF_Stimulus":"-0.86"},{"ID":"FBgn0034467","EGF_Stimulus":"1.12"},{"ID":"FBgn0035347","EGF_Stimulus":"0.69"},{"ID":"FBgn0036327","EGF_Stimulus":"0.98"},{"ID":"FBgn0019985","EGF_Stimulus":"0.47"},{"ID":"FBgn0025574","EGF_Stimulus":"0.82"},{"ID":"FBgn0052487","EGF_Stimulus":"0.29"},{"ID":"FBgn0021906","EGF_Stimulus":"-1.45"},{"ID":"FBgn0031429","EGF_Stimulus":"0.81"},{"ID":"FBgn0032318","EGF_Stimulus":"-0.98"},{"ID":"FBgn0039685","EGF_Stimulus":"0.45"},{"ID":"FBgn0033572","EGF_Stimulus":"1.75"},{"ID":"FBgn0030555","EGF_Stimulus":"-0.44"},{"ID":"FBgn0032258","EGF_Stimulus":"-0.36"},{"ID":"FBgn0023508","EGF_Stimulus":"0.74"},{"ID":"FBgn0052670","EGF_Stimulus":"1.62"},{"ID":"FBgn0034893","EGF_Stimulus":"0.66"},{"ID":"FBgn0038922","EGF_Stimulus":"0.52"},{"ID":"FBgn0039316","EGF_Stimulus":"0.83"},{"ID":"FBgn0052072","EGF_Stimulus":"0.98"},{"ID":"FBgn0036112","EGF_Stimulus":"-0.66"},{"ID":"FBgn0030310","EGF_Stimulus":"0.57"},{"ID":"FBgn0010401","EGF_Stimulus":"-0.66"},{"ID":"FBgn0034603","EGF_Stimulus":"1.02"},{"ID":"FBgn0031030","EGF_Stimulus":"-2.24"},{"ID":"FBgn0038691","EGF_Stimulus":"0.23"},{"ID":"FBgn0052006","EGF_Stimulus":"-1.05"},{"ID":"FBgn0015584","EGF_Stimulus":"0.54"},{"ID":"FBgn0030680","EGF_Stimulus":"1.22"},{"ID":"FBgn0050464","EGF_Stimulus":"-0.64"},{"ID":"FBgn0034708","EGF_Stimulus":"0.56"},{"ID":"FBgn0029928","EGF_Stimulus":"0.57"},{"ID":"FBgn0015589","EGF_Stimulus":"-0.86"},{"ID":"FBgn0030008","EGF_Stimulus":"0.67"},{"ID":"FBgn0036196","EGF_Stimulus":"-0.19"},{"ID":"FBgn0027106","EGF_Stimulus":"1.49"},{"ID":"FBgn0000376","EGF_Stimulus":"1.06"},{"ID":"FBgn0261637","EGF_Stimulus":"-1.18"},{"ID":"FBgn0035005","EGF_Stimulus":"0.42"},{"ID":"FBgn0031948","EGF_Stimulus":"0.62"},{"ID":"FBgn0004108","EGF_Stimulus":"-0.99"},{"ID":"FBgn0032882","EGF_Stimulus":"-4.96"},{"ID":"FBgn0031621","EGF_Stimulus":"0.27"},{"ID":"FBgn0261613","EGF_Stimulus":"0.34"},{"ID":"FBgn0036939","EGF_Stimulus":"-0.25"},{"ID":"FBgn0041180","EGF_Stimulus":"0.61"},{"ID":"FBgn0261269","EGF_Stimulus":"-0.55"},{"ID":"FBgn0034013","EGF_Stimulus":"-2.57"},{"ID":"FBgn0038735","EGF_Stimulus":"0.94"},{"ID":"FBgn0051682","EGF_Stimulus":"0.36"},{"ID":"FBgn0034214","EGF_Stimulus":"2.07"},{"ID":"FBgn0001280","EGF_Stimulus":"1.5"},{"ID":"FBgn0031332","EGF_Stimulus":"-0.18"},{"ID":"FBgn0035675","EGF_Stimulus":"-0.41"},{"ID":"FBgn0038309","EGF_Stimulus":"0.38"},{"ID":"FBgn0015664","EGF_Stimulus":"-4.15"},{"ID":"FBgn0036932","EGF_Stimulus":"-0.66"},{"ID":"FBgn0030014","EGF_Stimulus":"0.75"},{"ID":"FBgn0261922","EGF_Stimulus":"-2.1"},{"ID":"FBgn0261929","EGF_Stimulus":"-0.54"},{"ID":"FBgn0030958","EGF_Stimulus":"-0.33"},{"ID":"FBgn0033610","EGF_Stimulus":"-0.34"},{"ID":"FBgn0039490","EGF_Stimulus":"2.25"},{"ID":"FBgn0002855","EGF_Stimulus":"0.89"},{"ID":"FBgn0040337","EGF_Stimulus":"0.58"},{"ID":"FBgn0052679","EGF_Stimulus":"0.26"},{"ID":"FBgn0000395","EGF_Stimulus":"0.78"},{"ID":"FBgn0033866","EGF_Stimulus":"1.08"},{"ID":"FBgn0036366","EGF_Stimulus":"0.72"},{"ID":"FBgn0033774","EGF_Stimulus":"-0.46"},{"ID":"FBgn0004620","EGF_Stimulus":"0.32"},{"ID":"FBgn0038533","EGF_Stimulus":"1.27"},{"ID":"FBgn0001233","EGF_Stimulus":"-1.92"},{"ID":"FBgn0000412","EGF_Stimulus":"0.76"},{"ID":"FBgn0085496","EGF_Stimulus":"0.29"},{"ID":"FBgn0053094","EGF_Stimulus":"0.97"},{"ID":"FBgn0028956","EGF_Stimulus":"-0.91"},{"ID":"FBgn0015396","EGF_Stimulus":"-0.89"},{"ID":"FBgn0033550","EGF_Stimulus":"0.96"},{"ID":"FBgn0066101","EGF_Stimulus":"-0.93"},{"ID":"FBgn0030017","EGF_Stimulus":"0.92"},{"ID":"FBgn0053463","EGF_Stimulus":"1.24"},{"ID":"FBgn0031485","EGF_Stimulus":"0.16"},{"ID":"FBgn0043865","EGF_Stimulus":"0.2"},{"ID":"FBgn0034000","EGF_Stimulus":"1.38"},{"ID":"FBgn0039875","EGF_Stimulus":"0.75"},{"ID":"FBgn0030828","EGF_Stimulus":"0.58"},{"ID":"FBgn0052672","EGF_Stimulus":"-0.64"},{"ID":"FBgn0038766","EGF_Stimulus":"0.22"},{"ID":"FBgn0035924","EGF_Stimulus":"1.39"},{"ID":"FBgn0033451","EGF_Stimulus":"1.5"},{"ID":"FBgn0035630","EGF_Stimulus":"0.55"},{"ID":"FBgn0052625","EGF_Stimulus":"-0.94"},{"ID":"FBgn0027575","EGF_Stimulus":"0.79"},{"ID":"FBgn0050421","EGF_Stimulus":"1.52"},{"ID":"FBgn0034498","EGF_Stimulus":"0.82"},{"ID":"FBgn0017558","EGF_Stimulus":"0.55"},{"ID":"FBgn0038784","EGF_Stimulus":"0.29"},{"ID":"FBgn0002869","EGF_Stimulus":"1.7"},{"ID":"FBgn0035648","EGF_Stimulus":"0.66"},{"ID":"FBgn0026144","EGF_Stimulus":"-1.56"},{"ID":"FBgn0037410","EGF_Stimulus":"0.75"},{"ID":"FBgn0035318","EGF_Stimulus":"0.51"},{"ID":"FBgn0051265","EGF_Stimulus":"0.18"},{"ID":"FBgn0031606","EGF_Stimulus":"-1.59"},{"ID":"FBgn0039558","EGF_Stimulus":"1.45"},{"ID":"FBgn0046332","EGF_Stimulus":"0.66"},{"ID":"FBgn0030332","EGF_Stimulus":"-0.61"},{"ID":"FBgn0037341","EGF_Stimulus":"0.8"},{"ID":"FBgn0040747","EGF_Stimulus":"0.92"},{"ID":"FBgn0260452","EGF_Stimulus":"-1.56"},{"ID":"FBgn0037565","EGF_Stimulus":"0.66"},{"ID":"FBgn0030003","EGF_Stimulus":"0.37"},{"ID":"FBgn0261260","EGF_Stimulus":"0.87"},{"ID":"FBgn0036588","EGF_Stimulus":"-0.85"},{"ID":"FBgn0040022","EGF_Stimulus":"0.42"},{"ID":"FBgn0026418","EGF_Stimulus":"0.64"},{"ID":"FBgn0034688","EGF_Stimulus":"0.06"},{"ID":"FBgn0002865","EGF_Stimulus":"-1.15"},{"ID":"FBgn0032590","EGF_Stimulus":"1.32"},{"ID":"FBgn0032455","EGF_Stimulus":"1.46"},{"ID":"FBgn0029965","EGF_Stimulus":"-1.03"},{"ID":"FBgn0034958","EGF_Stimulus":"0.67"},{"ID":"FBgn0037336","EGF_Stimulus":"-0.89"},{"ID":"FBgn0261112","EGF_Stimulus":"0.19"},{"ID":"FBgn0051327","EGF_Stimulus":"0.98"},{"ID":"FBgn0015949","EGF_Stimulus":"0.8"},{"ID":"FBgn0015569","EGF_Stimulus":"1.07"},{"ID":"FBgn0031604","EGF_Stimulus":"-0.9"},{"ID":"FBgn0259110","EGF_Stimulus":"1.21"},{"ID":"FBgn0032167","EGF_Stimulus":"1.09"},{"ID":"FBgn0015576","EGF_Stimulus":"0.17"},{"ID":"FBgn0002183","EGF_Stimulus":"-0.98"},{"ID":"FBgn0052582","EGF_Stimulus":"1.56"},{"ID":"FBgn0036786","EGF_Stimulus":"-1.21"},{"ID":"FBgn0033304","EGF_Stimulus":"-0.84"},{"ID":"FBgn0035702","EGF_Stimulus":"0.27"},{"ID":"FBgn0034312","EGF_Stimulus":"0.81"},{"ID":"FBgn0052649","EGF_Stimulus":"-0.8"},{"ID":"FBgn0033504","EGF_Stimulus":"0.81"},{"ID":"FBgn0085422","EGF_Stimulus":"0.91"},{"ID":"FBgn0000566","EGF_Stimulus":"1.7"},{"ID":"FBgn0038632","EGF_Stimulus":"-0.49"},{"ID":"FBgn0033698","EGF_Stimulus":"0.55"},{"ID":"FBgn0039805","EGF_Stimulus":"0.9"},{"ID":"FBgn0040361","EGF_Stimulus":"-0.85"},{"ID":"FBgn0028992","EGF_Stimulus":"-0.62"},{"ID":"FBgn0003514","EGF_Stimulus":"-1.07"},{"ID":"FBgn0011604","EGF_Stimulus":"-1.14"},{"ID":"FBgn0039186","EGF_Stimulus":"-0.61"},{"ID":"FBgn0053144","EGF_Stimulus":"0.98"},{"ID":"FBgn0035273","EGF_Stimulus":"-0.85"},{"ID":"FBgn0052058","EGF_Stimulus":"0.68"},{"ID":"FBgn0031634","EGF_Stimulus":"0.74"},{"ID":"FBgn0030847","EGF_Stimulus":"-0.3"},{"ID":"FBgn0023512","EGF_Stimulus":"-0.9"},{"ID":"FBgn0030873","EGF_Stimulus":"-1.13"},{"ID":"FBgn0000455","EGF_Stimulus":"1.45"},{"ID":"FBgn0036221","EGF_Stimulus":"-0.48"},{"ID":"FBgn0038830","EGF_Stimulus":"1.1"},{"ID":"FBgn0039520","EGF_Stimulus":"0.59"},{"ID":"FBgn0033100","EGF_Stimulus":"-0.4"},{"ID":"FBgn0032166","EGF_Stimulus":"0.57"},{"ID":"FBgn0029849","EGF_Stimulus":"1.09"},{"ID":"FBgn0032889","EGF_Stimulus":"-0.59"},{"ID":"FBgn0030872","EGF_Stimulus":"0.35"},{"ID":"FBgn0025674","EGF_Stimulus":"-1.11"},{"ID":"FBgn0032464","EGF_Stimulus":"-0.86"},{"ID":"FBgn0035101","EGF_Stimulus":"0.72"},{"ID":"FBgn0033819","EGF_Stimulus":"0.33"},{"ID":"FBgn0033216","EGF_Stimulus":"0.58"},{"ID":"FBgn0031517","EGF_Stimulus":"-0.61"},{"ID":"FBgn0030319","EGF_Stimulus":"-0.24"},{"ID":"FBgn0039127","EGF_Stimulus":"-0.43"},{"ID":"FBgn0030395","EGF_Stimulus":"1.31"},{"ID":"FBgn0036108","EGF_Stimulus":"-0.19"},{"ID":"FBgn0034417","EGF_Stimulus":"1.77"},{"ID":"FBgn0029696","EGF_Stimulus":"-0.14"},{"ID":"FBgn0030349","EGF_Stimulus":"0.43"},{"ID":"FBgn0051373","EGF_Stimulus":"0.7"},{"ID":"FBgn0038425","EGF_Stimulus":"1.31"},{"ID":"FBgn0034007","EGF_Stimulus":"1.71"},{"ID":"FBgn0015623","EGF_Stimulus":"0.49"},{"ID":"FBgn0013771","EGF_Stimulus":"0.76"},{"ID":"FBgn0038804","EGF_Stimulus":"0.36"},{"ID":"FBgn0029821","EGF_Stimulus":"0.43"},{"ID":"FBgn0052267","EGF_Stimulus":"1.62"},{"ID":"FBgn0030974","EGF_Stimulus":"-0.85"},{"ID":"FBgn0032725","EGF_Stimulus":"0.87"},{"ID":"FBgn0038856","EGF_Stimulus":"-0.65"},{"ID":"FBgn0000559","EGF_Stimulus":"-2.15"},{"ID":"FBgn0052441","EGF_Stimulus":"-0.38"},{"ID":"FBgn0053309","EGF_Stimulus":"-0.78"},{"ID":"FBgn0031307","EGF_Stimulus":"1.28"},{"ID":"FBgn0038750","EGF_Stimulus":"0.67"},{"ID":"FBgn0038646","EGF_Stimulus":"0.7"},{"ID":"FBgn0036226","EGF_Stimulus":"-0.54"},{"ID":"FBgn0034387","EGF_Stimulus":"0.08"},{"ID":"FBgn0052264","EGF_Stimulus":"-0.86"},{"ID":"FBgn0063496","EGF_Stimulus":"0.31"},{"ID":"FBgn0033978","EGF_Stimulus":"-0.9"},{"ID":"FBgn0054040","EGF_Stimulus":"-0.84"},{"ID":"FBgn0036449","EGF_Stimulus":"0.21"},{"ID":"FBgn0032498","EGF_Stimulus":"-1.92"},{"ID":"FBgn0036668","EGF_Stimulus":"0.18"},{"ID":"FBgn0038058","EGF_Stimulus":"0.44"},{"ID":"FBgn0032338","EGF_Stimulus":"-0.06"},{"ID":"FBgn0020907","EGF_Stimulus":"0.87"},{"ID":"FBgn0015770","EGF_Stimulus":"0.53"},{"ID":"FBgn0028342","EGF_Stimulus":"1.16"},{"ID":"FBgn0030603","EGF_Stimulus":"0.48"},{"ID":"FBgn0011766","EGF_Stimulus":"-3.25"},{"ID":"FBgn0037293","EGF_Stimulus":"1.34"},{"ID":"FBgn0028999","EGF_Stimulus":"0.47"},{"ID":"FBgn0035873","EGF_Stimulus":"0.44"},{"ID":"FBgn0037017","EGF_Stimulus":"1.22"},{"ID":"FBgn0015794","EGF_Stimulus":"-1.02"},{"ID":"FBgn0053796","EGF_Stimulus":"0.57"},{"ID":"FBgn0025781","EGF_Stimulus":"0.57"},{"ID":"FBgn0038877","EGF_Stimulus":"1.33"},{"ID":"FBgn0029753","EGF_Stimulus":"1.37"},{"ID":"FBgn0031466","EGF_Stimulus":"-1.95"},{"ID":"FBgn0037935","EGF_Stimulus":"0.66"},{"ID":"FBgn0027563","EGF_Stimulus":"1.4"},{"ID":"FBgn0033810","EGF_Stimulus":"0.07"},{"ID":"FBgn0039529","EGF_Stimulus":"0.4"},{"ID":"FBgn0036469","EGF_Stimulus":"0.82"},{"ID":"FBgn0033741","EGF_Stimulus":"-0.26"},{"ID":"FBgn0086680","EGF_Stimulus":"0.52"},{"ID":"FBgn0261386","EGF_Stimulus":"-0.41"},{"ID":"FBgn0032733","EGF_Stimulus":"0.18"},{"ID":"FBgn0052406","EGF_Stimulus":"1.03"},{"ID":"FBgn0032377","EGF_Stimulus":"0.68"},{"ID":"FBgn0033408","EGF_Stimulus":"0.3"},{"ID":"FBgn0036607","EGF_Stimulus":"-0.89"},{"ID":"FBgn0000216","EGF_Stimulus":"0.9"},{"ID":"FBgn0010399","EGF_Stimulus":"0.6"},{"ID":"FBgn0086712","EGF_Stimulus":"-1.24"},{"ID":"FBgn0034325","EGF_Stimulus":"0.99"},{"ID":"FBgn0038588","EGF_Stimulus":"-1.4"},{"ID":"FBgn0036463","EGF_Stimulus":"0.73"},{"ID":"FBgn0036442","EGF_Stimulus":"0.9"},{"ID":"FBgn0034278","EGF_Stimulus":"0.33"},{"ID":"FBgn0085254","EGF_Stimulus":"0.24"},{"ID":"FBgn0040388","EGF_Stimulus":"0.48"},{"ID":"FBgn0030615","EGF_Stimulus":"1.3"},{"ID":"FBgn0033672","EGF_Stimulus":"0.23"},{"ID":"FBgn0038202","EGF_Stimulus":"0.68"},{"ID":"FBgn0033088","EGF_Stimulus":"0.24"},{"ID":"FBgn0035283","EGF_Stimulus":"1.03"},{"ID":"FBgn0039879","EGF_Stimulus":"-1.22"},{"ID":"FBgn0031011","EGF_Stimulus":"-3.18"},{"ID":"FBgn0034245","EGF_Stimulus":"0.81"},{"ID":"FBgn0085385","EGF_Stimulus":"0.59"},{"ID":"FBgn0011740","EGF_Stimulus":"0.51"},{"ID":"FBgn0036272","EGF_Stimulus":"0.45"},{"ID":"FBgn0051851","EGF_Stimulus":"-0.98"},{"ID":"FBgn0085317","EGF_Stimulus":"-0.62"},{"ID":"FBgn0038261","EGF_Stimulus":"0.73"},{"ID":"FBgn0020294","EGF_Stimulus":"-0.38"},{"ID":"FBgn0033691","EGF_Stimulus":"-0.72"},{"ID":"FBgn0050074","EGF_Stimulus":"0.36"},{"ID":"FBgn0003145","EGF_Stimulus":"-0.07"},{"ID":"FBgn0030543","EGF_Stimulus":"0.24"},{"ID":"FBgn0035178","EGF_Stimulus":"0.33"},{"ID":"FBgn0038390","EGF_Stimulus":"-0.23"},{"ID":"FBgn0032878","EGF_Stimulus":"0.92"},{"ID":"FBgn0032017","EGF_Stimulus":"0.15"},{"ID":"FBgn0000008","EGF_Stimulus":"-1.12"},{"ID":"FBgn0035880","EGF_Stimulus":"0.94"},{"ID":"FBgn0037688","EGF_Stimulus":"-0.3"},{"ID":"FBgn0039710","EGF_Stimulus":"-4.33"},{"ID":"FBgn0031016","EGF_Stimulus":"0.22"},{"ID":"FBgn0046214","EGF_Stimulus":"-1.4"},{"ID":"FBgn0042186","EGF_Stimulus":"0.96"},{"ID":"FBgn0013435","EGF_Stimulus":"0.95"},{"ID":"FBgn0052708","EGF_Stimulus":"-0.42"},{"ID":"FBgn0010342","EGF_Stimulus":"-0.7"},{"ID":"FBgn0015033","EGF_Stimulus":"-0.63"},{"ID":"FBgn0037374","EGF_Stimulus":"0.41"},{"ID":"FBgn0036210","EGF_Stimulus":"0.06"},{"ID":"FBgn0028331","EGF_Stimulus":"0.53"},{"ID":"FBgn0261931","EGF_Stimulus":"1.02"},{"ID":"FBgn0040342","EGF_Stimulus":"-0.46"},{"ID":"FBgn0002036","EGF_Stimulus":"-1.36"},{"ID":"FBgn0020249","EGF_Stimulus":"0.52"},{"ID":"FBgn0030813","EGF_Stimulus":"-0.08"},{"ID":"FBgn0031261","EGF_Stimulus":"-0.37"},{"ID":"FBgn0039293","EGF_Stimulus":"1.34"},{"ID":"FBgn0038414","EGF_Stimulus":"1.29"},{"ID":"FBgn0038454","EGF_Stimulus":"0.84"},{"ID":"FBgn0036574","EGF_Stimulus":"-0.32"},{"ID":"FBgn0039714","EGF_Stimulus":"0.62"},{"ID":"FBgn0024244","EGF_Stimulus":"0.14"},{"ID":"FBgn0030662","EGF_Stimulus":"0.97"},{"ID":"FBgn0036199","EGF_Stimulus":"-0.25"},{"ID":"FBgn0086254","EGF_Stimulus":"0.12"},{"ID":"FBgn0051343","EGF_Stimulus":"0.42"},{"ID":"FBgn0041629","EGF_Stimulus":"0.9"},{"ID":"FBgn0036038","EGF_Stimulus":"-2.7"},{"ID":"FBgn0031670","EGF_Stimulus":"-0.57"},{"ID":"FBgn0024289","EGF_Stimulus":"-0.67"},{"ID":"FBgn0032846","EGF_Stimulus":"-0.47"},{"ID":"FBgn0033598","EGF_Stimulus":"0.15"},{"ID":"FBgn0035287","EGF_Stimulus":"0.48"},{"ID":"FBgn0014857","EGF_Stimulus":"-3.03"},{"ID":"FBgn0037036","EGF_Stimulus":"-0.78"},{"ID":"FBgn0011708","EGF_Stimulus":"-2.02"},{"ID":"FBgn0039634","EGF_Stimulus":"1.38"},{"ID":"FBgn0040565","EGF_Stimulus":"1.8"},{"ID":"FBgn0033357","EGF_Stimulus":"-1.24"},{"ID":"FBgn0037621","EGF_Stimulus":"-0.91"},{"ID":"FBgn0038775","EGF_Stimulus":"-0.19"},{"ID":"FBgn0030620","EGF_Stimulus":"0.78"},{"ID":"FBgn0041224","EGF_Stimulus":"0.61"},{"ID":"FBgn0260743","EGF_Stimulus":"1.6"},{"ID":"FBgn0031695","EGF_Stimulus":"-0.4"},{"ID":"FBgn0040394","EGF_Stimulus":"0.52"},{"ID":"FBgn0038049","EGF_Stimulus":"-6.09"},{"ID":"FBgn0034974","EGF_Stimulus":"0.89"},{"ID":"FBgn0030933","EGF_Stimulus":"0.75"},{"ID":"FBgn0039304","EGF_Stimulus":"-0.3"},{"ID":"FBgn0010246","EGF_Stimulus":"-0.82"},{"ID":"FBgn0038273","EGF_Stimulus":"-0.29"},{"ID":"FBgn0030151","EGF_Stimulus":"0.43"},{"ID":"FBgn0033820","EGF_Stimulus":"0.78"},{"ID":"FBgn0036510","EGF_Stimulus":"-1.11"},{"ID":"FBgn0039464","EGF_Stimulus":"0.63"},{"ID":"FBgn0039350","EGF_Stimulus":"1.04"},{"ID":"FBgn0024222","EGF_Stimulus":"1.84"},{"ID":"FBgn0033195","EGF_Stimulus":"1.51"},{"ID":"FBgn0030041","EGF_Stimulus":"0.28"},{"ID":"FBgn0028647","EGF_Stimulus":"0.66"},{"ID":"FBgn0033712","EGF_Stimulus":"0.04"},{"ID":"FBgn0004514","EGF_Stimulus":"-0.55"},{"ID":"FBgn0261562","EGF_Stimulus":"-0.44"},{"ID":"FBgn0032769","EGF_Stimulus":"1.36"},{"ID":"FBgn0033380","EGF_Stimulus":"-0.13"},{"ID":"FBgn0035401","EGF_Stimulus":"1.23"},{"ID":"FBgn0035264","EGF_Stimulus":"0.66"},{"ID":"FBgn0085345","EGF_Stimulus":"1.03"},{"ID":"FBgn0261816","EGF_Stimulus":"1.17"},{"ID":"FBgn0038706","EGF_Stimulus":"-0.82"},{"ID":"FBgn0000233","EGF_Stimulus":"0.47"},{"ID":"FBgn0038718","EGF_Stimulus":"0.54"},{"ID":"FBgn0035092","EGF_Stimulus":"1.81"},{"ID":"FBgn0260817","EGF_Stimulus":"0.31"},{"ID":"FBgn0036698","EGF_Stimulus":"0.61"},{"ID":"FBgn0038290","EGF_Stimulus":"-0.2"},{"ID":"FBgn0034082","EGF_Stimulus":"0.44"},{"ID":"FBgn0050497","EGF_Stimulus":"0.22"},{"ID":"FBgn0035944","EGF_Stimulus":"1.4"},{"ID":"FBgn0039937","EGF_Stimulus":"0.91"},{"ID":"FBgn0016762","EGF_Stimulus":"1.31"},{"ID":"FBgn0040285","EGF_Stimulus":"-0.54"},{"ID":"FBgn0035488","EGF_Stimulus":"-1.4"},{"ID":"FBgn0031540","EGF_Stimulus":"0.26"},{"ID":"FBgn0034590","EGF_Stimulus":"1.29"},{"ID":"FBgn0037388","EGF_Stimulus":"0.75"},{"ID":"FBgn0035585","EGF_Stimulus":"0.15"},{"ID":"FBgn0037071","EGF_Stimulus":"0.96"},{"ID":"FBgn0039585","EGF_Stimulus":"0.44"},{"ID":"FBgn0051955","EGF_Stimulus":"1.63"},{"ID":"FBgn0037849","EGF_Stimulus":"0.53"},{"ID":"FBgn0015296","EGF_Stimulus":"-0.68"},{"ID":"FBgn0030720","EGF_Stimulus":"0.85"},{"ID":"FBgn0033389","EGF_Stimulus":"-0.46"},{"ID":"FBgn0259241","EGF_Stimulus":"0.82"},{"ID":"FBgn0045502","EGF_Stimulus":"1.16"},{"ID":"FBgn0038142","EGF_Stimulus":"0.35"},{"ID":"FBgn0040238","EGF_Stimulus":"-2.09"},{"ID":"FBgn0051915","EGF_Stimulus":"1.16"},{"ID":"FBgn0034784","EGF_Stimulus":"-0.61"},{"ID":"FBgn0004118","EGF_Stimulus":"-0.47"},{"ID":"FBgn0051347","EGF_Stimulus":"-1.53"},{"ID":"FBgn0032816","EGF_Stimulus":"0.14"},{"ID":"FBgn0029879","EGF_Stimulus":"-0.79"},{"ID":"FBgn0030930","EGF_Stimulus":"0.74"},{"ID":"FBgn0083971","EGF_Stimulus":"0.96"},{"ID":"FBgn0037837","EGF_Stimulus":"-0.94"},{"ID":"FBgn0034300","EGF_Stimulus":"-0.6"},{"ID":"FBgn0033669","EGF_Stimulus":"0.5"},{"ID":"FBgn0037544","EGF_Stimulus":"-0.44"},{"ID":"FBgn0036619","EGF_Stimulus":"0.74"},{"ID":"FBgn0045064","EGF_Stimulus":"-0.97"},{"ID":"FBgn0034429","EGF_Stimulus":"0.9"},{"ID":"FBgn0031258","EGF_Stimulus":"0.35"},{"ID":"FBgn0259166","EGF_Stimulus":"0.42"},{"ID":"FBgn0045498","EGF_Stimulus":"1.57"},{"ID":"FBgn0083950","EGF_Stimulus":"1.26"},{"ID":"FBgn0038665","EGF_Stimulus":"-0.17"},{"ID":"FBgn0045479","EGF_Stimulus":"-1.96"},{"ID":"FBgn0032065","EGF_Stimulus":"-1.6"},{"ID":"FBgn0000239","EGF_Stimulus":"-0.46"},{"ID":"FBgn0036770","EGF_Stimulus":"2.25"},{"ID":"FBgn0039378","EGF_Stimulus":"0.03"},{"ID":"FBgn0033905","EGF_Stimulus":"0.36"},{"ID":"FBgn0003366","EGF_Stimulus":"0.62"},{"ID":"FBgn0033512","EGF_Stimulus":"0.21"},{"ID":"FBgn0004657","EGF_Stimulus":"-0.44"},{"ID":"FBgn0036945","EGF_Stimulus":"1.08"},{"ID":"FBgn0031784","EGF_Stimulus":"1.56"},{"ID":"FBgn0050285","EGF_Stimulus":"-1.8"},{"ID":"FBgn0050273","EGF_Stimulus":"0.96"},{"ID":"FBgn0035031","EGF_Stimulus":"0.61"},{"ID":"FBgn0037747","EGF_Stimulus":"-1.12"},{"ID":"FBgn0019929","EGF_Stimulus":"-1.26"},{"ID":"FBgn0031906","EGF_Stimulus":"0.23"},{"ID":"FBgn0042104","EGF_Stimulus":"0.74"},{"ID":"FBgn0029740","EGF_Stimulus":"0.37"},{"ID":"FBgn0001404","EGF_Stimulus":"-2.03"},{"ID":"FBgn0035639","EGF_Stimulus":"0.75"},{"ID":"FBgn0035168","EGF_Stimulus":"0.36"},{"ID":"FBgn0086365","EGF_Stimulus":"-0.78"},{"ID":"FBgn0037794","EGF_Stimulus":"-0.83"},{"ID":"FBgn0039705","EGF_Stimulus":"1.03"},{"ID":"FBgn0034199","EGF_Stimulus":"0.5"},{"ID":"FBgn0037676","EGF_Stimulus":"-0.88"},{"ID":"FBgn0052549","EGF_Stimulus":"0.89"},{"ID":"FBgn0052066","EGF_Stimulus":"1.09"},{"ID":"FBgn0050375","EGF_Stimulus":"0.29"},{"ID":"FBgn0037842","EGF_Stimulus":"0.26"},{"ID":"FBgn0035238","EGF_Stimulus":"-1.36"},{"ID":"FBgn0031161","EGF_Stimulus":"-1.8"},{"ID":"FBgn0001217","EGF_Stimulus":"-0.41"},{"ID":"FBgn0029587","EGF_Stimulus":"0.15"},{"ID":"FBgn0032429","EGF_Stimulus":"-0.9"},{"ID":"FBgn0034001","EGF_Stimulus":"0.75"},{"ID":"FBgn0039560","EGF_Stimulus":"0.34"},{"ID":"FBgn0052521","EGF_Stimulus":"0.7"},{"ID":"FBgn0032613","EGF_Stimulus":"0.31"},{"ID":"FBgn0030469","EGF_Stimulus":"-0.58"},{"ID":"FBgn0020372","EGF_Stimulus":"1.92"},{"ID":"FBgn0033921","EGF_Stimulus":"0.46"},{"ID":"FBgn0040759","EGF_Stimulus":"1.34"},{"ID":"FBgn0000427","EGF_Stimulus":"-1.55"},{"ID":"FBgn0032684","EGF_Stimulus":"-1.16"},{"ID":"FBgn0051465","EGF_Stimulus":"0.91"},{"ID":"FBgn0024177","EGF_Stimulus":"1.15"},{"ID":"FBgn0030927","EGF_Stimulus":"-1.58"},{"ID":"FBgn0035120","EGF_Stimulus":"-0.85"},{"ID":"FBgn0261437","EGF_Stimulus":"0.55"},{"ID":"FBgn0031432","EGF_Stimulus":"-1.01"},{"ID":"FBgn0039942","EGF_Stimulus":"-0.82"},{"ID":"FBgn0030109","EGF_Stimulus":"0.42"},{"ID":"FBgn0037941","EGF_Stimulus":"-0.73"},{"ID":"FBgn0261403","EGF_Stimulus":"0.07"},{"ID":"FBgn0039034","EGF_Stimulus":"0.94"},{"ID":"FBgn0037988","EGF_Stimulus":"0.63"},{"ID":"FBgn0029118","EGF_Stimulus":"-0.57"},{"ID":"FBgn0025838","EGF_Stimulus":"-1.42"},{"ID":"FBgn0028473","EGF_Stimulus":"-2.21"},{"ID":"FBgn0035043","EGF_Stimulus":"0.72"},{"ID":"FBgn0036740","EGF_Stimulus":"0.58"},{"ID":"FBgn0026404","EGF_Stimulus":"1.6"},{"ID":"FBgn0051897","EGF_Stimulus":"1.24"},{"ID":"FBgn0004652","EGF_Stimulus":"-1.5"},{"ID":"FBgn0032321","EGF_Stimulus":"0.85"},{"ID":"FBgn0039472","EGF_Stimulus":"-1.04"},{"ID":"FBgn0023023","EGF_Stimulus":"1.67"},{"ID":"FBgn0034729","EGF_Stimulus":"0.48"},{"ID":"FBgn0034884","EGF_Stimulus":"-0.62"},{"ID":"FBgn0033883","EGF_Stimulus":"-0.46"},{"ID":"FBgn0051813","EGF_Stimulus":"-1"},{"ID":"FBgn0026207","EGF_Stimulus":"1.15"},{"ID":"FBgn0085300","EGF_Stimulus":"-0.4"},{"ID":"FBgn0035049","EGF_Stimulus":"-1.34"},{"ID":"FBgn0030805","EGF_Stimulus":"-0.87"},{"ID":"FBgn0038816","EGF_Stimulus":"-0.76"},{"ID":"FBgn0038318","EGF_Stimulus":"1.66"},{"ID":"FBgn0261862","EGF_Stimulus":"0.41"},{"ID":"FBgn0036219","EGF_Stimulus":"5.33"},{"ID":"FBgn0034739","EGF_Stimulus":"0.88"},{"ID":"FBgn0033782","EGF_Stimulus":"0.69"},{"ID":"FBgn0036695","EGF_Stimulus":"-0.36"},{"ID":"FBgn0030433","EGF_Stimulus":"0.6"},{"ID":"FBgn0030362","EGF_Stimulus":"0.77"},{"ID":"FBgn0039565","EGF_Stimulus":"-1.28"},{"ID":"FBgn0039552","EGF_Stimulus":"0.5"},{"ID":"FBgn0020439","EGF_Stimulus":"-3.09"},{"ID":"FBgn0040696","EGF_Stimulus":"0.95"},{"ID":"FBgn0035496","EGF_Stimulus":"0.25"},{"ID":"FBgn0028582","EGF_Stimulus":"0.72"},{"ID":"FBgn0037807","EGF_Stimulus":"-0.5"},{"ID":"FBgn0032283","EGF_Stimulus":"0.53"},{"ID":"FBgn0030074","EGF_Stimulus":"0.31"},{"ID":"FBgn0010423","EGF_Stimulus":"-0.28"},{"ID":"FBgn0035042","EGF_Stimulus":"0.63"},{"ID":"FBgn0028945","EGF_Stimulus":"0.61"},{"ID":"FBgn0016080","EGF_Stimulus":"0.37"},{"ID":"FBgn0038011","EGF_Stimulus":"0.44"},{"ID":"FBgn0053296","EGF_Stimulus":"-1.05"},{"ID":"FBgn0026761","EGF_Stimulus":"-1.37"},{"ID":"FBgn0052418","EGF_Stimulus":"1.61"},{"ID":"FBgn0037488","EGF_Stimulus":"0.77"},{"ID":"FBgn0052054","EGF_Stimulus":"-0.27"},{"ID":"FBgn0026573","EGF_Stimulus":"-0.42"},{"ID":"FBgn0041789","EGF_Stimulus":"1.27"},{"ID":"FBgn0260866","EGF_Stimulus":"0.45"},{"ID":"FBgn0034365","EGF_Stimulus":"0.26"},{"ID":"FBgn0037213","EGF_Stimulus":"1.14"},{"ID":"FBgn0085360","EGF_Stimulus":"1.32"},{"ID":"FBgn0046776","EGF_Stimulus":"4.44"},{"ID":"FBgn0027794","EGF_Stimulus":"0.57"},{"ID":"FBgn0033235","EGF_Stimulus":"-1.1"},{"ID":"FBgn0037364","EGF_Stimulus":"0.57"},{"ID":"FBgn0051016","EGF_Stimulus":"-0.88"},{"ID":"FBgn0032138","EGF_Stimulus":"-0.72"},{"ID":"FBgn0051365","EGF_Stimulus":"0.55"},{"ID":"FBgn0036807","EGF_Stimulus":"-0.91"},{"ID":"FBgn0037115","EGF_Stimulus":"0.56"},{"ID":"FBgn0053282","EGF_Stimulus":"1.01"},{"ID":"FBgn0039731","EGF_Stimulus":"1.02"},{"ID":"FBgn0037956","EGF_Stimulus":"0.95"},{"ID":"FBgn0030918","EGF_Stimulus":"0.51"},{"ID":"FBgn0030796","EGF_Stimulus":"0.61"},{"ID":"FBgn0012042","EGF_Stimulus":"0.5"},{"ID":"FBgn0053322","EGF_Stimulus":"-0.75"},{"ID":"FBgn0005630","EGF_Stimulus":"-2.16"},{"ID":"FBgn0035086","EGF_Stimulus":"0.89"},{"ID":"FBgn0011586","EGF_Stimulus":"2.04"},{"ID":"FBgn0052720","EGF_Stimulus":"-0.3"},{"ID":"FBgn0033524","EGF_Stimulus":"0.92"},{"ID":"FBgn0029093","EGF_Stimulus":"0.5"},{"ID":"FBgn0085456","EGF_Stimulus":"0.83"},{"ID":"FBgn0028852","EGF_Stimulus":"1.71"},{"ID":"FBgn0054002","EGF_Stimulus":"0.76"},{"ID":"FBgn0035023","EGF_Stimulus":"0.66"},{"ID":"FBgn0050053","EGF_Stimulus":"1.61"},{"ID":"FBgn0035766","EGF_Stimulus":"-1.48"},{"ID":"FBgn0037638","EGF_Stimulus":"1.21"},{"ID":"FBgn0053648","EGF_Stimulus":"-1.34"},{"ID":"FBgn0002413","EGF_Stimulus":"0.82"},{"ID":"FBgn0033588","EGF_Stimulus":"0.26"},{"ID":"FBgn0261698","EGF_Stimulus":"0.87"},{"ID":"FBgn0032409","EGF_Stimulus":"-0.6"},{"ID":"FBgn0051882","EGF_Stimulus":"0.21"},{"ID":"FBgn0035382","EGF_Stimulus":"0.93"},{"ID":"FBgn0259139","EGF_Stimulus":"-0.38"},{"ID":"FBgn0028847","EGF_Stimulus":"-1.42"},{"ID":"FBgn0030863","EGF_Stimulus":"1.46"},{"ID":"FBgn0037739","EGF_Stimulus":"0.62"},{"ID":"FBgn0003975","EGF_Stimulus":"-1.6"},{"ID":"FBgn0034756","EGF_Stimulus":"0.41"},{"ID":"FBgn0051805","EGF_Stimulus":"-1.23"},{"ID":"FBgn0036194","EGF_Stimulus":"0.33"},{"ID":"FBgn0033447","EGF_Stimulus":"0.88"},{"ID":"FBgn0037944","EGF_Stimulus":"2.53"},{"ID":"FBgn0039254","EGF_Stimulus":"-0.97"},{"ID":"FBgn0023177","EGF_Stimulus":"-1.67"},{"ID":"FBgn0038603","EGF_Stimulus":"0.56"},{"ID":"FBgn0037832","EGF_Stimulus":"0.98"},{"ID":"FBgn0052022","EGF_Stimulus":"0.24"},{"ID":"FBgn0011300","EGF_Stimulus":"1.13"},{"ID":"FBgn0013813","EGF_Stimulus":"-0.83"},{"ID":"FBgn0030729","EGF_Stimulus":"-0.92"},{"ID":"FBgn0024315","EGF_Stimulus":"-0.58"},{"ID":"FBgn0038952","EGF_Stimulus":"-0.21"},{"ID":"FBgn0033653","EGF_Stimulus":"1.55"},{"ID":"FBgn0035295","EGF_Stimulus":"-0.59"},{"ID":"FBgn0038307","EGF_Stimulus":"0.4"},{"ID":"FBgn0085354","EGF_Stimulus":"0.82"},{"ID":"FBgn0036150","EGF_Stimulus":"0.92"},{"ID":"FBgn0030840","EGF_Stimulus":"0.22"},{"ID":"FBgn0032796","EGF_Stimulus":"0.67"},{"ID":"FBgn0037044","EGF_Stimulus":"-0.67"},{"ID":"FBgn0036028","EGF_Stimulus":"-0.46"},{"ID":"FBgn0029888","EGF_Stimulus":"0.22"},{"ID":"FBgn0029799","EGF_Stimulus":"0.56"},{"ID":"FBgn0259707","EGF_Stimulus":"1.25"},{"ID":"FBgn0026402","EGF_Stimulus":"0.77"},{"ID":"FBgn0034826","EGF_Stimulus":"-1.45"},{"ID":"FBgn0034491","EGF_Stimulus":"-0.84"},{"ID":"FBgn0032669","EGF_Stimulus":"0.83"},{"ID":"FBgn0086711","EGF_Stimulus":"1.91"},{"ID":"FBgn0004837","EGF_Stimulus":"1.74"},{"ID":"FBgn0038042","EGF_Stimulus":"-2.09"},{"ID":"FBgn0005777","EGF_Stimulus":"1.09"},{"ID":"FBgn0036481","EGF_Stimulus":"0.37"},{"ID":"FBgn0033052","EGF_Stimulus":"0.36"},{"ID":"FBgn0040734","EGF_Stimulus":"0.97"},{"ID":"FBgn0037064","EGF_Stimulus":"-1.15"},{"ID":"FBgn0030270","EGF_Stimulus":"0.56"},{"ID":"FBgn0028968","EGF_Stimulus":"-3.98"},{"ID":"FBgn0025645","EGF_Stimulus":"0.65"},{"ID":"FBgn0038662","EGF_Stimulus":"1.67"},{"ID":"FBgn0031047","EGF_Stimulus":"1.41"},{"ID":"FBgn0038897","EGF_Stimulus":"0.72"},{"ID":"FBgn0022943","EGF_Stimulus":"-2.82"},{"ID":"FBgn0036257","EGF_Stimulus":"-1.79"},{"ID":"FBgn0032210","EGF_Stimulus":"0.5"},{"ID":"FBgn0002922","EGF_Stimulus":"-0.39"},{"ID":"FBgn0032647","EGF_Stimulus":"1.58"},{"ID":"FBgn0040298","EGF_Stimulus":"-3.65"},{"ID":"FBgn0037555","EGF_Stimulus":"1.36"},{"ID":"FBgn0036319","EGF_Stimulus":"0.7"},{"ID":"FBgn0035942","EGF_Stimulus":"0.51"},{"ID":"FBgn0034579","EGF_Stimulus":"-0.12"},{"ID":"FBgn0040001","EGF_Stimulus":"0.7"},{"ID":"FBgn0039817","EGF_Stimulus":"0.8"},{"ID":"FBgn0037106","EGF_Stimulus":"-2.82"},{"ID":"FBgn0004368","EGF_Stimulus":"-1.78"},{"ID":"FBgn0031832","EGF_Stimulus":"-0.79"},{"ID":"FBgn0003210","EGF_Stimulus":"-0.4"},{"ID":"FBgn0032651","EGF_Stimulus":"0.91"},{"ID":"FBgn0053158","EGF_Stimulus":"1.3"},{"ID":"FBgn0033178","EGF_Stimulus":"0.48"},{"ID":"FBgn0017572","EGF_Stimulus":"-0.95"},{"ID":"FBgn0027498","EGF_Stimulus":"0.34"},{"ID":"FBgn0027492","EGF_Stimulus":"1.48"},{"ID":"FBgn0003317","EGF_Stimulus":"0.6"},{"ID":"FBgn0031735","EGF_Stimulus":"-1.23"},{"ID":"FBgn0035953","EGF_Stimulus":"1.02"},{"ID":"FBgn0043458","EGF_Stimulus":"1.6"},{"ID":"FBgn0051025","EGF_Stimulus":"-0.69"},{"ID":"FBgn0024232","EGF_Stimulus":"0.27"},{"ID":"FBgn0035099","EGF_Stimulus":"0.64"},{"ID":"FBgn0034371","EGF_Stimulus":"1.09"},{"ID":"FBgn0035708","EGF_Stimulus":"1.05"},{"ID":"FBgn0011204","EGF_Stimulus":"1.56"},{"ID":"FBgn0015019","EGF_Stimulus":"-1.26"},{"ID":"FBgn0000482","EGF_Stimulus":"-0.36"},{"ID":"FBgn0033750","EGF_Stimulus":"0.9"},{"ID":"FBgn0036007","EGF_Stimulus":"1.41"},{"ID":"FBgn0031407","EGF_Stimulus":"0.38"},{"ID":"FBgn0035246","EGF_Stimulus":"-1.34"},{"ID":"FBgn0033350","EGF_Stimulus":"-2.36"},{"ID":"FBgn0033093","EGF_Stimulus":"0.75"},{"ID":"FBgn0032486","EGF_Stimulus":"0.46"},{"ID":"FBgn0050035","EGF_Stimulus":"1.19"},{"ID":"FBgn0038006","EGF_Stimulus":"0.86"},{"ID":"FBgn0035113","EGF_Stimulus":"-0.87"},{"ID":"FBgn0043792","EGF_Stimulus":"1.05"},{"ID":"FBgn0003950","EGF_Stimulus":"-0.62"},{"ID":"FBgn0037026","EGF_Stimulus":"-0.04"},{"ID":"FBgn0034447","EGF_Stimulus":"1.15"},{"ID":"FBgn0086613","EGF_Stimulus":"-1.98"},{"ID":"FBgn0036099","EGF_Stimulus":"0.54"},{"ID":"FBgn0052451","EGF_Stimulus":"0.97"},{"ID":"FBgn0011725","EGF_Stimulus":"-2.21"},{"ID":"FBgn0031814","EGF_Stimulus":"0.33"},{"ID":"FBgn0031747","EGF_Stimulus":"0.5"},{"ID":"FBgn0010355","EGF_Stimulus":"-0.76"},{"ID":"FBgn0036341","EGF_Stimulus":"0.28"},{"ID":"FBgn0033107","EGF_Stimulus":"0.2"},{"ID":"FBgn0050295","EGF_Stimulus":"-1.19"},{"ID":"FBgn0053775","EGF_Stimulus":"-1.44"},{"ID":"FBgn0260481","EGF_Stimulus":"0.82"},{"ID":"FBgn0030642","EGF_Stimulus":"0.46"},{"ID":"FBgn0261647","EGF_Stimulus":"2.49"},{"ID":"FBgn0050077","EGF_Stimulus":"-0.92"},{"ID":"FBgn0030883","EGF_Stimulus":"0.7"},{"ID":"FBgn0038109","EGF_Stimulus":"1.91"},{"ID":"FBgn0052448","EGF_Stimulus":"-0.68"},{"ID":"FBgn0053180","EGF_Stimulus":"0.65"},{"ID":"FBgn0034229","EGF_Stimulus":"0.32"},{"ID":"FBgn0042198","EGF_Stimulus":"0.36"},{"ID":"FBgn0000259","EGF_Stimulus":"1.71"},{"ID":"FBgn0022349","EGF_Stimulus":"1.34"},{"ID":"FBgn0051126","EGF_Stimulus":"0.4"},{"ID":"FBgn0036612","EGF_Stimulus":"1.61"},{"ID":"FBgn0028746","EGF_Stimulus":"-0.44"},{"ID":"FBgn0038584","EGF_Stimulus":"-0.97"},{"ID":"FBgn0039881","EGF_Stimulus":"0.54"},{"ID":"FBgn0019960","EGF_Stimulus":"-0.93"},{"ID":"FBgn0020621","EGF_Stimulus":"-1"},{"ID":"FBgn0033321","EGF_Stimulus":"0.43"},{"ID":"FBgn0030853","EGF_Stimulus":"-1.03"},{"ID":"FBgn0031770","EGF_Stimulus":"1.54"},{"ID":"FBgn0030753","EGF_Stimulus":"-0.21"},{"ID":"FBgn0032833","EGF_Stimulus":"0.85"},{"ID":"FBgn0037419","EGF_Stimulus":"1.66"},{"ID":"FBgn0052407","EGF_Stimulus":"0.75"},{"ID":"FBgn0032431","EGF_Stimulus":"1.02"},{"ID":"FBgn0011648","EGF_Stimulus":"0.81"},{"ID":"FBgn0085488","EGF_Stimulus":"0.26"},{"ID":"FBgn0017561","EGF_Stimulus":"0.84"},{"ID":"FBgn0033706","EGF_Stimulus":"1.07"},{"ID":"FBgn0028668","EGF_Stimulus":"0.37"},{"ID":"FBgn0052027","EGF_Stimulus":"-0.91"},{"ID":"FBgn0039408","EGF_Stimulus":"0.86"},{"ID":"FBgn0000352","EGF_Stimulus":"-1.43"},{"ID":"FBgn0038659","EGF_Stimulus":"0.72"},{"ID":"FBgn0039768","EGF_Stimulus":"-0.25"},{"ID":"FBgn0031660","EGF_Stimulus":"1.03"},{"ID":"FBgn0031802","EGF_Stimulus":"1.24"},{"ID":"FBgn0029147","EGF_Stimulus":"0.61"},{"ID":"FBgn0037563","EGF_Stimulus":"0.37"},{"ID":"FBgn0032690","EGF_Stimulus":"1.94"},{"ID":"FBgn0040532","EGF_Stimulus":"0.18"},{"ID":"FBgn0052791","EGF_Stimulus":"0.55"},{"ID":"FBgn0035141","EGF_Stimulus":"0.62"},{"ID":"FBgn0038482","EGF_Stimulus":"3.62"},{"ID":"FBgn0039092","EGF_Stimulus":"-0.96"},{"ID":"FBgn0030504","EGF_Stimulus":"-1.43"},{"ID":"FBgn0039694","EGF_Stimulus":"0.9"},{"ID":"FBgn0031765","EGF_Stimulus":"-0.9"},{"ID":"FBgn0014022","EGF_Stimulus":"0.69"},{"ID":"FBgn0039613","EGF_Stimulus":"0.44"},{"ID":"FBgn0033629","EGF_Stimulus":"-2.05"},{"ID":"FBgn0259927","EGF_Stimulus":"1.56"},{"ID":"FBgn0051414","EGF_Stimulus":"0.62"},{"ID":"FBgn0035384","EGF_Stimulus":"0.63"},{"ID":"FBgn0037001","EGF_Stimulus":"0.99"},{"ID":"FBgn0053752","EGF_Stimulus":"1.02"},{"ID":"FBgn0260990","EGF_Stimulus":"0.52"},{"ID":"FBgn0028500","EGF_Stimulus":"0.64"},{"ID":"FBgn0037081","EGF_Stimulus":"0.47"},{"ID":"FBgn0085419","EGF_Stimulus":"0.87"},{"ID":"FBgn0036878","EGF_Stimulus":"0.67"},{"ID":"FBgn0032214","EGF_Stimulus":"1.28"},{"ID":"FBgn0086673","EGF_Stimulus":"1.61"},{"ID":"FBgn0037249","EGF_Stimulus":"-3.18"},{"ID":"FBgn0037461","EGF_Stimulus":"0.67"},{"ID":"FBgn0037504","EGF_Stimulus":"0.95"},{"ID":"FBgn0046294","EGF_Stimulus":"1.3"},{"ID":"FBgn0053519","EGF_Stimulus":"0.99"},{"ID":"FBgn0034973","EGF_Stimulus":"0.54"},{"ID":"FBgn0052987","EGF_Stimulus":"-0.51"},{"ID":"FBgn0035969","EGF_Stimulus":"0.63"},{"ID":"FBgn0032050","EGF_Stimulus":"0.33"},{"ID":"FBgn0033569","EGF_Stimulus":"1.1"},{"ID":"FBgn0040954","EGF_Stimulus":"-0.81"},{"ID":"FBgn0036083","EGF_Stimulus":"0.95"},{"ID":"FBgn0036706","EGF_Stimulus":"-1.01"},{"ID":"FBgn0036292","EGF_Stimulus":"-0.48"},{"ID":"FBgn0259483","EGF_Stimulus":"0.25"},{"ID":"FBgn0037255","EGF_Stimulus":"-1.2"},{"ID":"FBgn0030049","EGF_Stimulus":"1.1"},{"ID":"FBgn0038189","EGF_Stimulus":"0.41"},{"ID":"FBgn0035505","EGF_Stimulus":"0.82"},{"ID":"FBgn0031093","EGF_Stimulus":"5.65"},{"ID":"FBgn0000499","EGF_Stimulus":"0.39"},{"ID":"FBgn0037583","EGF_Stimulus":"1.15"},{"ID":"FBgn0037670","EGF_Stimulus":"1.27"},{"ID":"FBgn0030537","EGF_Stimulus":"-0.4"},{"ID":"FBgn0037369","EGF_Stimulus":"-0.57"},{"ID":"FBgn0038233","EGF_Stimulus":"0.46"},{"ID":"FBgn0051278","EGF_Stimulus":"1.09"},{"ID":"FBgn0031786","EGF_Stimulus":"-0.3"},{"ID":"FBgn0050106","EGF_Stimulus":"0.59"},{"ID":"FBgn0052446","EGF_Stimulus":"-1.3"},{"ID":"FBgn0054007","EGF_Stimulus":"1.79"},{"ID":"FBgn0039923","EGF_Stimulus":"-4.05"},{"ID":"FBgn0083945","EGF_Stimulus":"1.25"},{"ID":"FBgn0026257","EGF_Stimulus":"0.75"},{"ID":"FBgn0036386","EGF_Stimulus":"1.11"},{"ID":"FBgn0027085","EGF_Stimulus":"1.34"},{"ID":"FBgn0036909","EGF_Stimulus":"-0.77"},{"ID":"FBgn0043532","EGF_Stimulus":"-0.38"},{"ID":"FBgn0085412","EGF_Stimulus":"0.99"},{"ID":"FBgn0010282","EGF_Stimulus":"0.69"},{"ID":"FBgn0261529","EGF_Stimulus":"0.66"},{"ID":"FBgn0002565","EGF_Stimulus":"-0.45"},{"ID":"FBgn0085201","EGF_Stimulus":"-1.71"},{"ID":"FBgn0051713","EGF_Stimulus":"0.15"},{"ID":"FBgn0031168","EGF_Stimulus":"0.76"},{"ID":"FBgn0023211","EGF_Stimulus":"0.73"},{"ID":"FBgn0010078","EGF_Stimulus":"-3.44"},{"ID":"FBgn0036848","EGF_Stimulus":"-0.64"},{"ID":"FBgn0032864","EGF_Stimulus":"-1.52"},{"ID":"FBgn0037618","EGF_Stimulus":"0.56"},{"ID":"FBgn0031842","EGF_Stimulus":"-0.6"},{"ID":"FBgn0029121","EGF_Stimulus":"-1.01"},{"ID":"FBgn0016917","EGF_Stimulus":"2.55"},{"ID":"FBgn0052319","EGF_Stimulus":"-0.53"},{"ID":"FBgn0052237","EGF_Stimulus":"0.55"},{"ID":"FBgn0037301","EGF_Stimulus":"1.25"},{"ID":"FBgn0036809","EGF_Stimulus":"-1"},{"ID":"FBgn0031619","EGF_Stimulus":"0.56"},{"ID":"FBgn0028902","EGF_Stimulus":"1.01"},{"ID":"FBgn0030823","EGF_Stimulus":"0.74"},{"ID":"FBgn0053284","EGF_Stimulus":"0.24"},{"ID":"FBgn0052751","EGF_Stimulus":"0.37"},{"ID":"FBgn0030571","EGF_Stimulus":"0.12"},{"ID":"FBgn0037241","EGF_Stimulus":"-1.43"},{"ID":"FBgn0031610","EGF_Stimulus":"-0.98"},{"ID":"FBgn0041706","EGF_Stimulus":"-1.15"},{"ID":"FBgn0032422","EGF_Stimulus":"-0.54"},{"ID":"FBgn0051116","EGF_Stimulus":"1.51"},{"ID":"FBgn0038862","EGF_Stimulus":"-2.05"},{"ID":"FBgn0035155","EGF_Stimulus":"-0.31"},{"ID":"FBgn0051292","EGF_Stimulus":"-0.83"},{"ID":"FBgn0038686","EGF_Stimulus":"1.61"},{"ID":"FBgn0044872","EGF_Stimulus":"1.2"},{"ID":"FBgn0036929","EGF_Stimulus":"0.73"},{"ID":"FBgn0030328","EGF_Stimulus":"-0.87"},{"ID":"FBgn0031061","EGF_Stimulus":"-0.07"},{"ID":"FBgn0037329","EGF_Stimulus":"1.48"},{"ID":"FBgn0015570","EGF_Stimulus":"-1.06"},{"ID":"FBgn0052523","EGF_Stimulus":"-0.31"},{"ID":"FBgn0004893","EGF_Stimulus":"-1.72"},{"ID":"FBgn0036832","EGF_Stimulus":"1.14"},{"ID":"FBgn0034745","EGF_Stimulus":"-1.94"},{"ID":"FBgn0027594","EGF_Stimulus":"0.63"},{"ID":"FBgn0013343","EGF_Stimulus":"0.83"},{"ID":"FBgn0051251","EGF_Stimulus":"-0.69"},{"ID":"FBgn0028371","EGF_Stimulus":"-0.89"},{"ID":"FBgn0037078","EGF_Stimulus":"0.32"},{"ID":"FBgn0033723","EGF_Stimulus":"0.28"},{"ID":"FBgn0085259","EGF_Stimulus":"-0.35"},{"ID":"FBgn0023458","EGF_Stimulus":"-0.96"},{"ID":"FBgn0034910","EGF_Stimulus":"0.71"},{"ID":"FBgn0043456","EGF_Stimulus":"0.36"},{"ID":"FBgn0052726","EGF_Stimulus":"-1.23"},{"ID":"FBgn0031504","EGF_Stimulus":"0.91"},{"ID":"FBgn0039102","EGF_Stimulus":"1.53"},{"ID":"FBgn0024991","EGF_Stimulus":"0.58"},{"ID":"FBgn0013759","EGF_Stimulus":"-0.75"},{"ID":"FBgn0050196","EGF_Stimulus":"0.38"},{"ID":"FBgn0050350","EGF_Stimulus":"-1.1"},{"ID":"FBgn0003444","EGF_Stimulus":"0.23"},{"ID":"FBgn0050362","EGF_Stimulus":"0.84"},{"ID":"FBgn0026598","EGF_Stimulus":"1.55"},{"ID":"FBgn0038446","EGF_Stimulus":"1.39"},{"ID":"FBgn0039830","EGF_Stimulus":"0.44"},{"ID":"FBgn0014930","EGF_Stimulus":"1.05"},{"ID":"FBgn0033830","EGF_Stimulus":"0.89"},{"ID":"FBgn0034248","EGF_Stimulus":"-1.02"},{"ID":"FBgn0032706","EGF_Stimulus":"-1.37"},{"ID":"FBgn0028546","EGF_Stimulus":"-0.63"},{"ID":"FBgn0000719","EGF_Stimulus":"0.35"},{"ID":"FBgn0051798","EGF_Stimulus":"1.53"},{"ID":"FBgn0040674","EGF_Stimulus":"0.84"},{"ID":"FBgn0005536","EGF_Stimulus":"-1.26"},{"ID":"FBgn0031104","EGF_Stimulus":"0.71"},{"ID":"FBgn0083167","EGF_Stimulus":"0.56"},{"ID":"FBgn0001185","EGF_Stimulus":"1.61"},{"ID":"FBgn0037998","EGF_Stimulus":"0.66"},{"ID":"FBgn0039425","EGF_Stimulus":"-1.49"},{"ID":"FBgn0036234","EGF_Stimulus":"-0.95"},{"ID":"FBgn0031955","EGF_Stimulus":"0.1"},{"ID":"FBgn0004828","EGF_Stimulus":"-1.28"},{"ID":"FBgn0030590","EGF_Stimulus":"-0.18"},{"ID":"FBgn0039109","EGF_Stimulus":"-0.5"},{"ID":"FBgn0032780","EGF_Stimulus":"0.59"},{"ID":"FBgn0033557","EGF_Stimulus":"-0.5"},{"ID":"FBgn0033807","EGF_Stimulus":"0.32"},{"ID":"FBgn0002284","EGF_Stimulus":"-3.56"},{"ID":"FBgn0038761","EGF_Stimulus":"0.25"},{"ID":"FBgn0031472","EGF_Stimulus":"0.81"},{"ID":"FBgn0032853","EGF_Stimulus":"-0.49"},{"ID":"FBgn0026376","EGF_Stimulus":"-0.58"},{"ID":"FBgn0052984","EGF_Stimulus":"0.59"},{"ID":"FBgn0038975","EGF_Stimulus":"-0.94"},{"ID":"FBgn0013679","EGF_Stimulus":"0.79"},{"ID":"FBgn0034906","EGF_Stimulus":"0.5"},{"ID":"FBgn0030747","EGF_Stimulus":"-0.34"},{"ID":"FBgn0037204","EGF_Stimulus":"-1.23"},{"ID":"FBgn0030686","EGF_Stimulus":"0.58"},{"ID":"FBgn0250837","EGF_Stimulus":"0.38"},{"ID":"FBgn0036568","EGF_Stimulus":"0.54"},{"ID":"FBgn0032262","EGF_Stimulus":"-0.34"},{"ID":"FBgn0003429","EGF_Stimulus":"1.73"},{"ID":"FBgn0025595","EGF_Stimulus":"0.61"},{"ID":"FBgn0032187","EGF_Stimulus":"-1.68"},{"ID":"FBgn0037186","EGF_Stimulus":"-1.44"},{"ID":"FBgn0085451","EGF_Stimulus":"1.39"},{"ID":"FBgn0036314","EGF_Stimulus":"-0.41"},{"ID":"FBgn0035735","EGF_Stimulus":"-0.2"},{"ID":"FBgn0085190","EGF_Stimulus":"-1.02"},{"ID":"FBgn0029818","EGF_Stimulus":"1.14"},{"ID":"FBgn0028471","EGF_Stimulus":"0.7"},{"ID":"FBgn0039483","EGF_Stimulus":"-0.63"},{"ID":"FBgn0035604","EGF_Stimulus":"0.61"},{"ID":"FBgn0030704","EGF_Stimulus":"0.64"},{"ID":"FBgn0033285","EGF_Stimulus":"0.65"},{"ID":"FBgn0004643","EGF_Stimulus":"-1.37"},{"ID":"FBgn0033226","EGF_Stimulus":"0.21"},{"ID":"FBgn0037828","EGF_Stimulus":"-0.81"},{"ID":"FBgn0259140","EGF_Stimulus":"-0.59"},{"ID":"FBgn0027074","EGF_Stimulus":"0.3"},{"ID":"FBgn0011573","EGF_Stimulus":"-0.51"},{"ID":"FBgn0034380","EGF_Stimulus":"0.93"},{"ID":"FBgn0038321","EGF_Stimulus":"1.16"},{"ID":"FBgn0038964","EGF_Stimulus":"-1.2"},{"ID":"FBgn0010416","EGF_Stimulus":"-1.45"},{"ID":"FBgn0053489","EGF_Stimulus":"-0.24"},{"ID":"FBgn0013442","EGF_Stimulus":"1.11"},{"ID":"FBgn0029986","EGF_Stimulus":"0.48"},{"ID":"FBgn0031998","EGF_Stimulus":"1.08"},{"ID":"FBgn0026361","EGF_Stimulus":"0.53"},{"ID":"FBgn0029811","EGF_Stimulus":"-0.48"},{"ID":"FBgn0034776","EGF_Stimulus":"0.63"},{"ID":"FBgn0052113","EGF_Stimulus":"0.9"},{"ID":"FBgn0023171","EGF_Stimulus":"-1.34"},{"ID":"FBgn0029867","EGF_Stimulus":"1.13"},{"ID":"FBgn0260748","EGF_Stimulus":"1.53"},{"ID":"FBgn0028887","EGF_Stimulus":"-1.9"},{"ID":"FBgn0085486","EGF_Stimulus":"0.94"},{"ID":"FBgn0050154","EGF_Stimulus":"0.52"},{"ID":"FBgn0000711","EGF_Stimulus":"0.9"},{"ID":"FBgn0040207","EGF_Stimulus":"0.67"},{"ID":"FBgn0028325","EGF_Stimulus":"0.28"},{"ID":"FBgn0039219","EGF_Stimulus":"0.71"},{"ID":"FBgn0029831","EGF_Stimulus":"0.52"},{"ID":"FBgn0028658","EGF_Stimulus":"0.7"},{"ID":"FBgn0036834","EGF_Stimulus":"0.64"},{"ID":"FBgn0037470","EGF_Stimulus":"1.45"},{"ID":"FBgn0001145","EGF_Stimulus":"0.71"},{"ID":"FBgn0035811","EGF_Stimulus":"-0.33"},{"ID":"FBgn0019968","EGF_Stimulus":"-1.09"},{"ID":"FBgn0243511","EGF_Stimulus":"0.14"},{"ID":"FBgn0040773","EGF_Stimulus":"-0.85"},{"ID":"FBgn0033482","EGF_Stimulus":"0.35"},{"ID":"FBgn0017577","EGF_Stimulus":"-0.68"},{"ID":"FBgn0039856","EGF_Stimulus":"0.32"},{"ID":"FBgn0017456","EGF_Stimulus":"0.69"},{"ID":"FBgn0035167","EGF_Stimulus":"-0.2"},{"ID":"FBgn0037981","EGF_Stimulus":"1.88"},{"ID":"FBgn0013953","EGF_Stimulus":"0.31"},{"ID":"FBgn0027934","EGF_Stimulus":"0.4"},{"ID":"FBgn0033164","EGF_Stimulus":"-0.6"},{"ID":"FBgn0004177","EGF_Stimulus":"-3.55"},{"ID":"FBgn0025725","EGF_Stimulus":"-3.39"},{"ID":"FBgn0042178","EGF_Stimulus":"1.82"},{"ID":"FBgn0005592","EGF_Stimulus":"-1.59"},{"ID":"FBgn0030572","EGF_Stimulus":"-0.35"},{"ID":"FBgn0038613","EGF_Stimulus":"-0.58"},{"ID":"FBgn0035266","EGF_Stimulus":"-1.01"},{"ID":"FBgn0036183","EGF_Stimulus":"1.11"},{"ID":"FBgn0003870","EGF_Stimulus":"-1.1"},{"ID":"FBgn0033692","EGF_Stimulus":"0.41"},{"ID":"FBgn0034286","EGF_Stimulus":"1.61"},{"ID":"FBgn0026323","EGF_Stimulus":"-0.93"},{"ID":"FBgn0034065","EGF_Stimulus":"-1.07"},{"ID":"FBgn0036157","EGF_Stimulus":"0.21"},{"ID":"FBgn0034940","EGF_Stimulus":"-0.99"},{"ID":"FBgn0025833","EGF_Stimulus":"0.61"},{"ID":"FBgn0027611","EGF_Stimulus":"0.58"},{"ID":"FBgn0260386","EGF_Stimulus":"-0.7"},{"ID":"FBgn0045473","EGF_Stimulus":"-1.22"},{"ID":"FBgn0024371","EGF_Stimulus":"1.11"},{"ID":"FBgn0039623","EGF_Stimulus":"-0.1"},{"ID":"FBgn0028978","EGF_Stimulus":"-0.3"},{"ID":"FBgn0036331","EGF_Stimulus":"-0.15"},{"ID":"FBgn0054039","EGF_Stimulus":"-0.37"},{"ID":"FBgn0030664","EGF_Stimulus":"-0.34"},{"ID":"FBgn0019952","EGF_Stimulus":"-0.43"},{"ID":"FBgn0033461","EGF_Stimulus":"1.18"},{"ID":"FBgn0024556","EGF_Stimulus":"0.23"},{"ID":"FBgn0035106","EGF_Stimulus":"1.38"},{"ID":"FBgn0038065","EGF_Stimulus":"0.46"},{"ID":"FBgn0033581","EGF_Stimulus":"1.36"},{"ID":"FBgn0053160","EGF_Stimulus":"0.12"},{"ID":"FBgn0010389","EGF_Stimulus":"0.7"},{"ID":"FBgn0034782","EGF_Stimulus":"0.21"},{"ID":"FBgn0046692","EGF_Stimulus":"-0.47"},{"ID":"FBgn0031589","EGF_Stimulus":"0.54"},{"ID":"FBgn0033243","EGF_Stimulus":"-0.51"},{"ID":"FBgn0052650","EGF_Stimulus":"0.69"},{"ID":"FBgn0024985","EGF_Stimulus":"-0.44"},{"ID":"FBgn0000018","EGF_Stimulus":"0.51"},{"ID":"FBgn0028940","EGF_Stimulus":"0.68"},{"ID":"FBgn0261547","EGF_Stimulus":"-0.7"},{"ID":"FBgn0250830","EGF_Stimulus":"0.61"},{"ID":"FBgn0261015","EGF_Stimulus":"1.57"},{"ID":"FBgn0027052","EGF_Stimulus":"1.17"},{"ID":"FBgn0036105","EGF_Stimulus":"-0.62"},{"ID":"FBgn0030530","EGF_Stimulus":"-0.6"},{"ID":"FBgn0085334","EGF_Stimulus":"1.6"},{"ID":"FBgn0035337","EGF_Stimulus":"0.87"},{"ID":"FBgn0040606","EGF_Stimulus":"1.15"},{"ID":"FBgn0032479","EGF_Stimulus":"-0.45"},{"ID":"FBgn0261445","EGF_Stimulus":"1.47"},{"ID":"FBgn0020312","EGF_Stimulus":"-1.46"},{"ID":"FBgn0050472","EGF_Stimulus":"1.03"},{"ID":"FBgn0033017","EGF_Stimulus":"0.57"},{"ID":"FBgn0050088","EGF_Stimulus":"0.14"},{"ID":"FBgn0022774","EGF_Stimulus":"-0.82"},{"ID":"FBgn0016034","EGF_Stimulus":"1.51"},{"ID":"FBgn0029172","EGF_Stimulus":"-3.33"},{"ID":"FBgn0000588","EGF_Stimulus":"-0.4"},{"ID":"FBgn0034400","EGF_Stimulus":"-0.41"},{"ID":"FBgn0026602","EGF_Stimulus":"1.05"},{"ID":"FBgn0024889","EGF_Stimulus":"0.85"},{"ID":"FBgn0050389","EGF_Stimulus":"-0.45"},{"ID":"FBgn0051676","EGF_Stimulus":"0.97"},{"ID":"FBgn0038941","EGF_Stimulus":"1.98"},{"ID":"FBgn0024887","EGF_Stimulus":"0.3"},{"ID":"FBgn0030740","EGF_Stimulus":"-1.14"},{"ID":"FBgn0052183","EGF_Stimulus":"1.18"},{"ID":"FBgn0003231","EGF_Stimulus":"1.01"},{"ID":"FBgn0001229","EGF_Stimulus":"-0.38"},{"ID":"FBgn0038072","EGF_Stimulus":"1.24"},{"ID":"FBgn0023535","EGF_Stimulus":"0.8"},{"ID":"FBgn0036503","EGF_Stimulus":"1.66"},{"ID":"FBgn0036334","EGF_Stimulus":"0.51"},{"ID":"FBgn0039265","EGF_Stimulus":"1.18"},{"ID":"FBgn0051100","EGF_Stimulus":"1.09"},{"ID":"FBgn0052642","EGF_Stimulus":"0.6"},{"ID":"FBgn0026787","EGF_Stimulus":"0.54"},{"ID":"FBgn0037577","EGF_Stimulus":"0.38"},{"ID":"FBgn0032771","EGF_Stimulus":"-0.74"},{"ID":"FBgn0010340","EGF_Stimulus":"1.16"},{"ID":"FBgn0034137","EGF_Stimulus":"0.44"},{"ID":"FBgn0039959","EGF_Stimulus":"0.7"},{"ID":"FBgn0002579","EGF_Stimulus":"-4.03"},{"ID":"FBgn0085285","EGF_Stimulus":"-2.21"},{"ID":"FBgn0051467","EGF_Stimulus":"0.59"},{"ID":"FBgn0015372","EGF_Stimulus":"1.08"},{"ID":"FBgn0051716","EGF_Stimulus":"1.88"},{"ID":"FBgn0029666","EGF_Stimulus":"0.56"},{"ID":"FBgn0039908","EGF_Stimulus":"0.79"},{"ID":"FBgn0034999","EGF_Stimulus":"0.46"},{"ID":"FBgn0034854","EGF_Stimulus":"-1.49"},{"ID":"FBgn0000658","EGF_Stimulus":"-0.11"},{"ID":"FBgn0036438","EGF_Stimulus":"-0.81"},{"ID":"FBgn0035554","EGF_Stimulus":"0.87"},{"ID":"FBgn0259145","EGF_Stimulus":"-1.29"},{"ID":"FBgn0038251","EGF_Stimulus":"-1.36"},{"ID":"FBgn0027506","EGF_Stimulus":"0.49"},{"ID":"FBgn0029709","EGF_Stimulus":"-1.13"},{"ID":"FBgn0036144","EGF_Stimulus":"0.97"},{"ID":"FBgn0045500","EGF_Stimulus":"-0.67"},{"ID":"FBgn0260399","EGF_Stimulus":"1.22"},{"ID":"FBgn0050222","EGF_Stimulus":"-1.52"},{"ID":"FBgn0037382","EGF_Stimulus":"0.68"},{"ID":"FBgn0026755","EGF_Stimulus":"1.34"},{"ID":"FBgn0025140","EGF_Stimulus":"-1.87"},{"ID":"FBgn0023174","EGF_Stimulus":"-3.53"},{"ID":"FBgn0019890","EGF_Stimulus":"-3.15"},{"ID":"FBgn0032298","EGF_Stimulus":"0.53"},{"ID":"FBgn0046793","EGF_Stimulus":"-1.23"},{"ID":"FBgn0037656","EGF_Stimulus":"1.04"},{"ID":"FBgn0035523","EGF_Stimulus":"-0.59"},{"ID":"FBgn0033191","EGF_Stimulus":"0.36"},{"ID":"FBgn0034628","EGF_Stimulus":"-0.71"},{"ID":"FBgn0025686","EGF_Stimulus":"-0.83"},{"ID":"FBgn0034113","EGF_Stimulus":"0.38"},{"ID":"FBgn0029710","EGF_Stimulus":"0.64"},{"ID":"FBgn0051008","EGF_Stimulus":"-2.22"},{"ID":"FBgn0038652","EGF_Stimulus":"1.84"},{"ID":"FBgn0024698","EGF_Stimulus":"0.53"},{"ID":"FBgn0046876","EGF_Stimulus":"0.42"},{"ID":"FBgn0051224","EGF_Stimulus":"1.56"},{"ID":"FBgn0004009","EGF_Stimulus":"-0.7"},{"ID":"FBgn0011710","EGF_Stimulus":"0.65"},{"ID":"FBgn0050378","EGF_Stimulus":"0.93"},{"ID":"FBgn0010380","EGF_Stimulus":"0.52"},{"ID":"FBgn0034833","EGF_Stimulus":"0.59"},{"ID":"FBgn0034145","EGF_Stimulus":"0.88"},{"ID":"FBgn0031972","EGF_Stimulus":"-1.72"},{"ID":"FBgn0033732","EGF_Stimulus":"-0.5"},{"ID":"FBgn0037146","EGF_Stimulus":"1.02"},{"ID":"FBgn0034053","EGF_Stimulus":"1.19"},{"ID":"FBgn0031914","EGF_Stimulus":"0.75"},{"ID":"FBgn0032052","EGF_Stimulus":"0.78"},{"ID":"FBgn0033549","EGF_Stimulus":"0.94"},{"ID":"FBgn0001219","EGF_Stimulus":"-2.25"},{"ID":"FBgn0033169","EGF_Stimulus":"-1.32"},{"ID":"FBgn0042133","EGF_Stimulus":"-0.63"},{"ID":"FBgn0032031","EGF_Stimulus":"-0.33"},{"ID":"FBgn0036426","EGF_Stimulus":"-0.65"},{"ID":"FBgn0029899","EGF_Stimulus":"-0.91"},{"ID":"FBgn0040296","EGF_Stimulus":"0.14"},{"ID":"FBgn0038508","EGF_Stimulus":"0.9"},{"ID":"FBgn0030468","EGF_Stimulus":"2.26"},{"ID":"FBgn0033055","EGF_Stimulus":"-0.49"},{"ID":"FBgn0011556","EGF_Stimulus":"-0.27"},{"ID":"FBgn0032145","EGF_Stimulus":"0.84"},{"ID":"FBgn0086451","EGF_Stimulus":"0.73"},{"ID":"FBgn0052396","EGF_Stimulus":"0.54"},{"ID":"FBgn0037890","EGF_Stimulus":"-1.94"},{"ID":"FBgn0261041","EGF_Stimulus":"-0.41"},{"ID":"FBgn0046225","EGF_Stimulus":"-0.72"},{"ID":"FBgn0041194","EGF_Stimulus":"-0.99"},{"ID":"FBgn0030033","EGF_Stimulus":"-1.28"},{"ID":"FBgn0030697","EGF_Stimulus":"-1.26"},{"ID":"FBgn0039867","EGF_Stimulus":"0.26"},{"ID":"FBgn0027053","EGF_Stimulus":"-0.79"},{"ID":"FBgn0039601","EGF_Stimulus":"0.82"},{"ID":"FBgn0040649","EGF_Stimulus":"-0.37"},{"ID":"FBgn0037320","EGF_Stimulus":"-0.27"},{"ID":"FBgn0062411","EGF_Stimulus":"0.57"},{"ID":"FBgn0038583","EGF_Stimulus":"-0.87"},{"ID":"FBgn0053477","EGF_Stimulus":"0.22"},{"ID":"FBgn0259212","EGF_Stimulus":"-0.9"},{"ID":"FBgn0031560","EGF_Stimulus":"1.19"},{"ID":"FBgn0086129","EGF_Stimulus":"-0.66"},{"ID":"FBgn0085377","EGF_Stimulus":"0.94"},{"ID":"FBgn0052773","EGF_Stimulus":"1.01"},{"ID":"FBgn0004589","EGF_Stimulus":"-0.27"},{"ID":"FBgn0050380","EGF_Stimulus":"0.72"},{"ID":"FBgn0020764","EGF_Stimulus":"0.64"},{"ID":"FBgn0039758","EGF_Stimulus":"1.09"},{"ID":"FBgn0086916","EGF_Stimulus":"0.83"},{"ID":"FBgn0039510","EGF_Stimulus":"-1.17"},{"ID":"FBgn0032122","EGF_Stimulus":"-0.88"},{"ID":"FBgn0260858","EGF_Stimulus":"0.58"},{"ID":"FBgn0250753","EGF_Stimulus":"1.83"},{"ID":"FBgn0039056","EGF_Stimulus":"-2.04"},{"ID":"FBgn0036461","EGF_Stimulus":"1.17"},{"ID":"FBgn0037924","EGF_Stimulus":"-1.15"},{"ID":"FBgn0085424","EGF_Stimulus":"0.84"},{"ID":"FBgn0030373","EGF_Stimulus":"-0.33"},{"ID":"FBgn0031132","EGF_Stimulus":"-0.31"},{"ID":"FBgn0086446","EGF_Stimulus":"1.29"},{"ID":"FBgn0034565","EGF_Stimulus":"1.05"},{"ID":"FBgn0052017","EGF_Stimulus":"0.69"},{"ID":"FBgn0033799","EGF_Stimulus":"0.49"},{"ID":"FBgn0087007","EGF_Stimulus":"-0.94"},{"ID":"FBgn0035926","EGF_Stimulus":"0.96"},{"ID":"FBgn0010235","EGF_Stimulus":"0.54"},{"ID":"FBgn0037630","EGF_Stimulus":"0.89"},{"ID":"FBgn0002543","EGF_Stimulus":"1.39"},{"ID":"FBgn0086698","EGF_Stimulus":"0.76"},{"ID":"FBgn0037897","EGF_Stimulus":"-0.49"},{"ID":"FBgn0035192","EGF_Stimulus":"-0.63"},{"ID":"FBgn0011294","EGF_Stimulus":"0.65"},{"ID":"FBgn0015324","EGF_Stimulus":"-1.16"},{"ID":"FBgn0085329","EGF_Stimulus":"-0.37"},{"ID":"FBgn0037261","EGF_Stimulus":"-1.2"},{"ID":"FBgn0000277","EGF_Stimulus":"-0.4"},{"ID":"FBgn0033915","EGF_Stimulus":"0.42"},{"ID":"FBgn0026315","EGF_Stimulus":"-0.36"},{"ID":"FBgn0040805","EGF_Stimulus":"-2.03"},{"ID":"FBgn0041236","EGF_Stimulus":"-0.64"},{"ID":"FBgn0052627","EGF_Stimulus":"1.27"},{"ID":"FBgn0040250","EGF_Stimulus":"1.62"},{"ID":"FBgn0054049","EGF_Stimulus":"-1.69"},{"ID":"FBgn0031459","EGF_Stimulus":"-0.87"},{"ID":"FBgn0034667","EGF_Stimulus":"0.4"},{"ID":"FBgn0051216","EGF_Stimulus":"-0.61"},{"ID":"FBgn0038727","EGF_Stimulus":"-1.29"},{"ID":"FBgn0051601","EGF_Stimulus":"-0.13"},{"ID":"FBgn0031993","EGF_Stimulus":"-0.38"},{"ID":"FBgn0037440","EGF_Stimulus":"1.17"},{"ID":"FBgn0033204","EGF_Stimulus":"-1.81"},{"ID":"FBgn0051637","EGF_Stimulus":"-0.52"},{"ID":"FBgn0038638","EGF_Stimulus":"1.02"},{"ID":"FBgn0050001","EGF_Stimulus":"0.57"},{"ID":"FBgn0026399","EGF_Stimulus":"-1"},{"ID":"FBgn0016974","EGF_Stimulus":"0.82"},{"ID":"FBgn0033953","EGF_Stimulus":"0.37"},{"ID":"FBgn0035619","EGF_Stimulus":"-0.42"},{"ID":"FBgn0036542","EGF_Stimulus":"-1.51"},{"ID":"FBgn0031418","EGF_Stimulus":"1.08"},{"ID":"FBgn0035713","EGF_Stimulus":"1.46"},{"ID":"FBgn0033442","EGF_Stimulus":"2.34"},{"ID":"FBgn0037782","EGF_Stimulus":"-2.34"},{"ID":"FBgn0259151","EGF_Stimulus":"-1.06"},{"ID":"FBgn0040351","EGF_Stimulus":"0.57"},{"ID":"FBgn0034733","EGF_Stimulus":"0.95"},{"ID":"FBgn0038626","EGF_Stimulus":"-0.15"},{"ID":"FBgn0013732","EGF_Stimulus":"1.54"},{"ID":"FBgn0040309","EGF_Stimulus":"-0.88"},{"ID":"FBgn0039323","EGF_Stimulus":"-1.36"},{"ID":"FBgn0028499","EGF_Stimulus":"-0.95"},{"ID":"FBgn0015279","EGF_Stimulus":"-0.15"},{"ID":"FBgn0035831","EGF_Stimulus":"0.59"},{"ID":"FBgn0039067","EGF_Stimulus":"2.02"},{"ID":"FBgn0038715","EGF_Stimulus":"1.04"},{"ID":"FBgn0038358","EGF_Stimulus":"0.85"},{"ID":"FBgn0051084","EGF_Stimulus":"-1.25"},{"ID":"FBgn0050398","EGF_Stimulus":"0.1"},{"ID":"FBgn0004574","EGF_Stimulus":"0.93"},{"ID":"FBgn0053169","EGF_Stimulus":"0.33"},{"ID":"FBgn0085356","EGF_Stimulus":"0.66"},{"ID":"FBgn0035428","EGF_Stimulus":"0.47"},{"ID":"FBgn0261571","EGF_Stimulus":"1.17"},{"ID":"FBgn0032059","EGF_Stimulus":"1.54"},{"ID":"FBgn0037181","EGF_Stimulus":"-1.17"},{"ID":"FBgn0030739","EGF_Stimulus":"0.69"},{"ID":"FBgn0038747","EGF_Stimulus":"1.11"},{"ID":"FBgn0051202","EGF_Stimulus":"0.84"},{"ID":"FBgn0030507","EGF_Stimulus":"-0.21"},{"ID":"FBgn0002570","EGF_Stimulus":"0.58"},{"ID":"FBgn0036775","EGF_Stimulus":"-0.51"},{"ID":"FBgn0028931","EGF_Stimulus":"1.06"},{"ID":"FBgn0036661","EGF_Stimulus":"0.49"},{"ID":"FBgn0038304","EGF_Stimulus":"-0.49"},{"ID":"FBgn0031176","EGF_Stimulus":"0.41"},{"ID":"FBgn0004638","EGF_Stimulus":"-1.08"},{"ID":"FBgn0022764","EGF_Stimulus":"1.16"},{"ID":"FBgn0053276","EGF_Stimulus":"0.39"},{"ID":"FBgn0025621","EGF_Stimulus":"-0.77"},{"ID":"FBgn0036205","EGF_Stimulus":"-0.68"},{"ID":"FBgn0037762","EGF_Stimulus":"0.04"},{"ID":"FBgn0085319","EGF_Stimulus":"-0.6"},{"ID":"FBgn0041103","EGF_Stimulus":"-0.43"},{"ID":"FBgn0004611","EGF_Stimulus":"0.37"},{"ID":"FBgn0053983","EGF_Stimulus":"-1.12"},{"ID":"FBgn0030359","EGF_Stimulus":"0.17"},{"ID":"FBgn0033135","EGF_Stimulus":"1.08"},{"ID":"FBgn0035806","EGF_Stimulus":"1.26"},{"ID":"FBgn0032785","EGF_Stimulus":"0.52"},{"ID":"FBgn0033355","EGF_Stimulus":"0.64"},{"ID":"FBgn0030327","EGF_Stimulus":"-1.17"},{"ID":"FBgn0015229","EGF_Stimulus":"1.64"},{"ID":"FBgn0031229","EGF_Stimulus":"-1.28"},{"ID":"FBgn0038344","EGF_Stimulus":"-1.51"},{"ID":"FBgn0036586","EGF_Stimulus":"-1.06"},{"ID":"FBgn0034265","EGF_Stimulus":"0.46"},{"ID":"FBgn0036356","EGF_Stimulus":"0.51"},{"ID":"FBgn0040963","EGF_Stimulus":"0.85"},{"ID":"FBgn0051232","EGF_Stimulus":"1.4"},{"ID":"FBgn0034261","EGF_Stimulus":"0.59"},{"ID":"FBgn0037456","EGF_Stimulus":"-0.85"},{"ID":"FBgn0051730","EGF_Stimulus":"0.55"},{"ID":"FBgn0032363","EGF_Stimulus":"0.26"},{"ID":"FBgn0034935","EGF_Stimulus":"0.72"},{"ID":"FBgn0033886","EGF_Stimulus":"-0.34"},{"ID":"FBgn0028683","EGF_Stimulus":"0.2"},{"ID":"FBgn0030558","EGF_Stimulus":"0.44"},{"ID":"FBgn0040842","EGF_Stimulus":"0.31"},{"ID":"FBgn0025936","EGF_Stimulus":"-0.55"},{"ID":"FBgn0039840","EGF_Stimulus":"1.02"},{"ID":"FBgn0034819","EGF_Stimulus":"1.84"},{"ID":"FBgn0004552","EGF_Stimulus":"0.84"},{"ID":"FBgn0000409","EGF_Stimulus":"0.45"},{"ID":"FBgn0039024","EGF_Stimulus":"1.12"},{"ID":"FBgn0052803","EGF_Stimulus":"-0.58"},{"ID":"FBgn0035970","EGF_Stimulus":"0.8"},{"ID":"FBgn0038925","EGF_Stimulus":"0.16"},{"ID":"FBgn0000581","EGF_Stimulus":"-5.93"},{"ID":"FBgn0021760","EGF_Stimulus":"-1.6"},{"ID":"FBgn0015756","EGF_Stimulus":"-3.58"},{"ID":"FBgn0029890","EGF_Stimulus":"1.8"},{"ID":"FBgn0032268","EGF_Stimulus":"0.25"},{"ID":"FBgn0034674","EGF_Stimulus":"-0.68"},{"ID":"FBgn0028913","EGF_Stimulus":"-0.53"},{"ID":"FBgn0000448","EGF_Stimulus":"0.86"},{"ID":"FBgn0032517","EGF_Stimulus":"0.77"},{"ID":"FBgn0053288","EGF_Stimulus":"-1.3"},{"ID":"FBgn0037512","EGF_Stimulus":"0.66"},{"ID":"FBgn0037283","EGF_Stimulus":"-1.01"},{"ID":"FBgn0036311","EGF_Stimulus":"0.94"},{"ID":"FBgn0029719","EGF_Stimulus":"-0.33"},{"ID":"FBgn0040344","EGF_Stimulus":"1.22"},{"ID":"FBgn0038395","EGF_Stimulus":"0.56"},{"ID":"FBgn0031049","EGF_Stimulus":"1.84"},{"ID":"FBgn0039358","EGF_Stimulus":"0.43"},{"ID":"FBgn0026147","EGF_Stimulus":"0.85"},{"ID":"FBgn0036623","EGF_Stimulus":"-1.13"},{"ID":"FBgn0033903","EGF_Stimulus":"0.19"},{"ID":"FBgn0028520","EGF_Stimulus":"0.76"},{"ID":"FBgn0003983","EGF_Stimulus":"2.49"},{"ID":"FBgn0034641","EGF_Stimulus":"-1.11"},{"ID":"FBgn0033539","EGF_Stimulus":"-1.18"},{"ID":"FBgn0035209","EGF_Stimulus":"-0.98"},{"ID":"FBgn0035584","EGF_Stimulus":"-0.66"},{"ID":"FBgn0031590","EGF_Stimulus":"0.83"},{"ID":"FBgn0051211","EGF_Stimulus":"1.16"},{"ID":"FBgn0031422","EGF_Stimulus":"0.67"},{"ID":"FBgn0004055","EGF_Stimulus":"-1.23"},{"ID":"FBgn0051721","EGF_Stimulus":"0.9"},{"ID":"FBgn0003292","EGF_Stimulus":"0.51"},{"ID":"FBgn0011771","EGF_Stimulus":"0.73"},{"ID":"FBgn0051913","EGF_Stimulus":"-0.5"},{"ID":"FBgn0036169","EGF_Stimulus":"0.2"},{"ID":"FBgn0031099","EGF_Stimulus":"-0.59"},{"ID":"FBgn0051907","EGF_Stimulus":"-0.63"},{"ID":"FBgn0039210","EGF_Stimulus":"0.49"},{"ID":"FBgn0003248","EGF_Stimulus":"0.06"},{"ID":"FBgn0032375","EGF_Stimulus":"-0.32"},{"ID":"FBgn0045759","EGF_Stimulus":"-0.63"},{"ID":"FBgn0034155","EGF_Stimulus":"-0.17"},{"ID":"FBgn0051533","EGF_Stimulus":"-0.41"},{"ID":"FBgn0001098","EGF_Stimulus":"-2.1"},{"ID":"FBgn0051481","EGF_Stimulus":"-0.61"},{"ID":"FBgn0051158","EGF_Stimulus":"-1.82"},{"ID":"FBgn0033437","EGF_Stimulus":"0.92"},{"ID":"FBgn0050021","EGF_Stimulus":"1.16"},{"ID":"FBgn0010772","EGF_Stimulus":"-1.2"},{"ID":"FBgn0034577","EGF_Stimulus":"1.17"},{"ID":"FBgn0040370","EGF_Stimulus":"0.69"},{"ID":"FBgn0031183","EGF_Stimulus":"0.44"},{"ID":"FBgn0003048","EGF_Stimulus":"1.05"},{"ID":"FBgn0261574","EGF_Stimulus":"0.53"},{"ID":"FBgn0034139","EGF_Stimulus":"-0.63"},{"ID":"FBgn0032004","EGF_Stimulus":"0.74"},{"ID":"FBgn0024184","EGF_Stimulus":"2.17"},{"ID":"FBgn0085399","EGF_Stimulus":"-1.14"},{"ID":"FBgn0086677","EGF_Stimulus":"1.06"},{"ID":"FBgn0067317","EGF_Stimulus":"0.96"},{"ID":"FBgn0036553","EGF_Stimulus":"1.2"},{"ID":"FBgn0033739","EGF_Stimulus":"-1.78"},{"ID":"FBgn0039234","EGF_Stimulus":"0.95"},{"ID":"FBgn0052428","EGF_Stimulus":"0.26"},{"ID":"FBgn0038738","EGF_Stimulus":"0.82"},{"ID":"FBgn0032904","EGF_Stimulus":"0.87"},{"ID":"FBgn0037486","EGF_Stimulus":"-0.62"},{"ID":"FBgn0034258","EGF_Stimulus":"-3.76"},{"ID":"FBgn0025720","EGF_Stimulus":"1"},{"ID":"FBgn0036162","EGF_Stimulus":"1.09"},{"ID":"FBgn0087002","EGF_Stimulus":"0.42"},{"ID":"FBgn0029971","EGF_Stimulus":"0.43"},{"ID":"FBgn0031811","EGF_Stimulus":"0.71"},{"ID":"FBgn0038312","EGF_Stimulus":"1.05"},{"ID":"FBgn0002631","EGF_Stimulus":"0.54"},{"ID":"FBgn0041243","EGF_Stimulus":"-0.55"},{"ID":"FBgn0052814","EGF_Stimulus":"-0.67"},{"ID":"FBgn0035725","EGF_Stimulus":"-1.59"},{"ID":"FBgn0040097","EGF_Stimulus":"-0.96"},{"ID":"FBgn0034098","EGF_Stimulus":"1.59"},{"ID":"FBgn0036346","EGF_Stimulus":"1.09"},{"ID":"FBgn0032444","EGF_Stimulus":"-1.03"},{"ID":"FBgn0035936","EGF_Stimulus":"1.21"},{"ID":"FBgn0039598","EGF_Stimulus":"0.4"},{"ID":"FBgn0260755","EGF_Stimulus":"-0.49"},{"ID":"FBgn0037273","EGF_Stimulus":"0.71"},{"ID":"FBgn0031440","EGF_Stimulus":"0.55"},{"ID":"FBgn0038790","EGF_Stimulus":"0.43"},{"ID":"FBgn0037225","EGF_Stimulus":"0.32"},{"ID":"FBgn0051935","EGF_Stimulus":"0.86"},{"ID":"FBgn0052225","EGF_Stimulus":"-0.43"},{"ID":"FBgn0031533","EGF_Stimulus":"0.17"},{"ID":"FBgn0032074","EGF_Stimulus":"0.8"},{"ID":"FBgn0030892","EGF_Stimulus":"0.45"},{"ID":"FBgn0051450","EGF_Stimulus":"0.62"},{"ID":"FBgn0010549","EGF_Stimulus":"0.71"},{"ID":"FBgn0261243","EGF_Stimulus":"1.32"},{"ID":"FBgn0032521","EGF_Stimulus":"1.4"},{"ID":"FBgn0028670","EGF_Stimulus":"-1.26"},{"ID":"FBgn0038277","EGF_Stimulus":"-0.62"},{"ID":"FBgn0086346","EGF_Stimulus":"0.76"},{"ID":"FBgn0036763","EGF_Stimulus":"-1.1"},{"ID":"FBgn0003358","EGF_Stimulus":"0.79"},{"ID":"FBgn0030994","EGF_Stimulus":"0.52"},{"ID":"FBgn0040093","EGF_Stimulus":"-0.71"},{"ID":"FBgn0039509","EGF_Stimulus":"-0.95"},{"ID":"FBgn0032638","EGF_Stimulus":"-1.36"},{"ID":"FBgn0034643","EGF_Stimulus":"-1.15"},{"ID":"FBgn0051926","EGF_Stimulus":"-0.61"},{"ID":"FBgn0050060","EGF_Stimulus":"0.34"},{"ID":"FBgn0027841","EGF_Stimulus":"0.88"},{"ID":"FBgn0034919","EGF_Stimulus":"-0.58"},{"ID":"FBgn0031457","EGF_Stimulus":"-0.42"},{"ID":"FBgn0039911","EGF_Stimulus":"-0.72"},{"ID":"FBgn0023522","EGF_Stimulus":"-0.76"},{"ID":"FBgn0035070","EGF_Stimulus":"-0.38"},{"ID":"FBgn0035853","EGF_Stimulus":"2.53"},{"ID":"FBgn0037176","EGF_Stimulus":"0.94"},{"ID":"FBgn0037547","EGF_Stimulus":"0.38"},{"ID":"FBgn0036030","EGF_Stimulus":"2.35"},{"ID":"FBgn0044510","EGF_Stimulus":"-1.09"},{"ID":"FBgn0052815","EGF_Stimulus":"1.37"},{"ID":"FBgn0040496","EGF_Stimulus":"0.86"},{"ID":"FBgn0053205","EGF_Stimulus":"0.87"},{"ID":"FBgn0063494","EGF_Stimulus":"1.16"},{"ID":"FBgn0003023","EGF_Stimulus":"0.59"},{"ID":"FBgn0010501","EGF_Stimulus":"-0.88"},{"ID":"FBgn0004581","EGF_Stimulus":"-0.57"},{"ID":"FBgn0031276","EGF_Stimulus":"-0.37"},{"ID":"FBgn0035528","EGF_Stimulus":"-0.3"},{"ID":"FBgn0000052","EGF_Stimulus":"0.77"},{"ID":"FBgn0050055","EGF_Stimulus":"0.71"},{"ID":"FBgn0031946","EGF_Stimulus":"-0.65"},{"ID":"FBgn0032080","EGF_Stimulus":"1.56"},{"ID":"FBgn0053137","EGF_Stimulus":"-1.69"},{"ID":"FBgn0030775","EGF_Stimulus":"-0.14"},{"ID":"FBgn0034681","EGF_Stimulus":"-1.11"},{"ID":"FBgn0038902","EGF_Stimulus":"0.28"},{"ID":"FBgn0039203","EGF_Stimulus":"0.89"},{"ID":"FBgn0039977","EGF_Stimulus":"1.92"},{"ID":"FBgn0025582","EGF_Stimulus":"-3.57"},{"ID":"FBgn0032949","EGF_Stimulus":"1"},{"ID":"FBgn0038928","EGF_Stimulus":"1.31"},{"ID":"FBgn0035918","EGF_Stimulus":"0.2"},{"ID":"FBgn0036934","EGF_Stimulus":"-0.6"},{"ID":"FBgn0023130","EGF_Stimulus":"0.17"},{"ID":"FBgn0032504","EGF_Stimulus":"1.43"},{"ID":"FBgn0038271","EGF_Stimulus":"-1.09"},{"ID":"FBgn0032916","EGF_Stimulus":"0.71"},{"ID":"FBgn0067407","EGF_Stimulus":"0.09"},{"ID":"FBgn0034398","EGF_Stimulus":"-1.31"},{"ID":"FBgn0035624","EGF_Stimulus":"-0.81"},{"ID":"FBgn0034866","EGF_Stimulus":"-0.73"},{"ID":"FBgn0051436","EGF_Stimulus":"-0.47"},{"ID":"FBgn0030500","EGF_Stimulus":"-2.84"},{"ID":"FBgn0031417","EGF_Stimulus":"1"},{"ID":"FBgn0014073","EGF_Stimulus":"-0.8"},{"ID":"FBgn0029993","EGF_Stimulus":"-0.59"},{"ID":"FBgn0035218","EGF_Stimulus":"-0.52"},{"ID":"FBgn0001981","EGF_Stimulus":"-1.79"},{"ID":"FBgn0034291","EGF_Stimulus":"-1.43"},{"ID":"FBgn0010531","EGF_Stimulus":"0.76"},{"ID":"FBgn0039677","EGF_Stimulus":"0.53"},{"ID":"FBgn0036851","EGF_Stimulus":"0.82"},{"ID":"FBgn0051267","EGF_Stimulus":"0.83"},{"ID":"FBgn0032368","EGF_Stimulus":"-0.69"},{"ID":"FBgn0030584","EGF_Stimulus":"-0.96"},{"ID":"FBgn0023169","EGF_Stimulus":"0.85"},{"ID":"FBgn0030443","EGF_Stimulus":"0.5"},{"ID":"FBgn0035008","EGF_Stimulus":"-0.22"},{"ID":"FBgn0030403","EGF_Stimulus":"0.35"},{"ID":"FBgn0001128","EGF_Stimulus":"1.6"},{"ID":"FBgn0250846","EGF_Stimulus":"1.05"},{"ID":"FBgn0015609","EGF_Stimulus":"-0.49"},{"ID":"FBgn0259994","EGF_Stimulus":"2.45"},{"ID":"FBgn0035011","EGF_Stimulus":"-1.02"},{"ID":"FBgn0033063","EGF_Stimulus":"1.11"},{"ID":"FBgn0032895","EGF_Stimulus":"-0.74"},{"ID":"FBgn0031141","EGF_Stimulus":"0.64"},{"ID":"FBgn0040069","EGF_Stimulus":"0.79"},{"ID":"FBgn0033471","EGF_Stimulus":"-0.58"},{"ID":"FBgn0035591","EGF_Stimulus":"-0.17"},{"ID":"FBgn0036822","EGF_Stimulus":"0.88"},{"ID":"FBgn0028530","EGF_Stimulus":"0.61"},{"ID":"FBgn0026136","EGF_Stimulus":"1.23"},{"ID":"FBgn0037356","EGF_Stimulus":"-0.95"},{"ID":"FBgn0038214","EGF_Stimulus":"-0.67"},{"ID":"FBgn0042110","EGF_Stimulus":"0.43"},{"ID":"FBgn0034202","EGF_Stimulus":"-0.22"}] jc-1.17.3/tests/fixtures/generic/csv-flyrna2.json000066400000000000000000020771761415226333200217140ustar00rootroot00000000000000[{"ID": "FBgn0029994", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0037191", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0036810", "EGF_Stimulus": "1.34"}, {"ID": "FBgn0033320", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0051156", "EGF_Stimulus": "-0.76"}, {"ID": "FBgn0004635", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0260646", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0038397", "EGF_Stimulus": "0.22"}, {"ID": "FBgn0010583", "EGF_Stimulus": "-0.59"}, {"ID": "FBgn0025583", "EGF_Stimulus": "-2.13"}, {"ID": "FBgn0032906", "EGF_Stimulus": "0.25"}, {"ID": "FBgn0031321", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0052568", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0030674", "EGF_Stimulus": "1.63"}, {"ID": "FBgn0085397", "EGF_Stimulus": "-1.37"}, {"ID": "FBgn0038427", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0033233", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0033736", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0033495", "EGF_Stimulus": "-0.33"}, {"ID": "FBgn0020503", "EGF_Stimulus": "-1.13"}, {"ID": "FBgn0031885", "EGF_Stimulus": "0.06"}, {"ID": "FBgn0067864", "EGF_Stimulus": "0.13"}, {"ID": "FBgn0035785", "EGF_Stimulus": "-1.06"}, {"ID": "FBgn0039673", "EGF_Stimulus": "1.01"}, {"ID": "FBgn0051717", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0030748", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0031751", "EGF_Stimulus": "-0.6"}, {"ID": "FBgn0039207", "EGF_Stimulus": "-0.96"}, {"ID": "FBgn0067312", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0052816", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0040005", "EGF_Stimulus": "-1.3"}, {"ID": "FBgn0040477", "EGF_Stimulus": "-0.11"}, {"ID": "FBgn0029727", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0039328", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0066084", "EGF_Stimulus": "-1.64"}, {"ID": "FBgn0000053", "EGF_Stimulus": "1.49"}, {"ID": "FBgn0030038", "EGF_Stimulus": "-0.86"}, {"ID": "FBgn0052712", "EGF_Stimulus": "-0.92"}, {"ID": "FBgn0038481", "EGF_Stimulus": "0.09"}, {"ID": "FBgn0034162", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0005632", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0034860", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0259979", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0051140", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0038959", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0034138", "EGF_Stimulus": "-2.91"}, {"ID": "FBgn0003388", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0034945", "EGF_Stimulus": "-1.15"}, {"ID": "FBgn0033272", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0050428", "EGF_Stimulus": "-1.11"}, {"ID": "FBgn0033556", "EGF_Stimulus": "2.11"}, {"ID": "FBgn0027341", "EGF_Stimulus": "-0.8"}, {"ID": "FBgn0029606", "EGF_Stimulus": "0.96"}, {"ID": "FBgn0261804", "EGF_Stimulus": "-0.62"}, {"ID": "FBgn0036465", "EGF_Stimulus": "-0.82"}, {"ID": "FBgn0027610", "EGF_Stimulus": "-1.76"}, {"ID": "FBgn0033997", "EGF_Stimulus": "0.26"}, {"ID": "FBgn0038834", "EGF_Stimulus": "-4.02"}, {"ID": "FBgn0027550", "EGF_Stimulus": "-0.52"}, {"ID": "FBgn0030992", "EGF_Stimulus": "1.47"}, {"ID": "FBgn0037109", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0039198", "EGF_Stimulus": "1.71"}, {"ID": "FBgn0019686", "EGF_Stimulus": "1.44"}, {"ID": "FBgn0052251", "EGF_Stimulus": "1.5"}, {"ID": "FBgn0031987", "EGF_Stimulus": "-0.72"}, {"ID": "FBgn0034548", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0053217", "EGF_Stimulus": "-0.94"}, {"ID": "FBgn0038092", "EGF_Stimulus": "2.75"}, {"ID": "FBgn0053627", "EGF_Stimulus": "-0.57"}, {"ID": "FBgn0037010", "EGF_Stimulus": "-0.77"}, {"ID": "FBgn0037895", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0034477", "EGF_Stimulus": "-0.4"}, {"ID": "FBgn0029705", "EGF_Stimulus": "1.28"}, {"ID": "FBgn0013772", "EGF_Stimulus": "-0.46"}, {"ID": "FBgn0038437", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0053178", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0027559", "EGF_Stimulus": "0.21"}, {"ID": "FBgn0038389", "EGF_Stimulus": "-1.61"}, {"ID": "FBgn0031426", "EGF_Stimulus": "-1.15"}, {"ID": "FBgn0040784", "EGF_Stimulus": "-0.52"}, {"ID": "FBgn0001187", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0052450", "EGF_Stimulus": "-1.15"}, {"ID": "FBgn0028671", "EGF_Stimulus": "-1.93"}, {"ID": "FBgn0015614", "EGF_Stimulus": "1.12"}, {"ID": "FBgn0037009", "EGF_Stimulus": "-0.34"}, {"ID": "FBgn0032359", "EGF_Stimulus": "-0.74"}, {"ID": "FBgn0028717", "EGF_Stimulus": "-1.28"}, {"ID": "FBgn0032450", "EGF_Stimulus": "1.25"}, {"ID": "FBgn0033327", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0051820", "EGF_Stimulus": "-1.19"}, {"ID": "FBgn0015773", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0020299", "EGF_Stimulus": "-1.65"}, {"ID": "FBgn0034537", "EGF_Stimulus": "-4.73"}, {"ID": "FBgn0030286", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0050469", "EGF_Stimulus": "-0.59"}, {"ID": "FBgn0260745", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0037472", "EGF_Stimulus": "-0.94"}, {"ID": "FBgn0051054", "EGF_Stimulus": "-1.12"}, {"ID": "FBgn0031127", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0051933", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0029133", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0260986", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0030503", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0028491", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0039359", "EGF_Stimulus": "-4.47"}, {"ID": "FBgn0030447", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0000241", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0083985", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0030855", "EGF_Stimulus": "-0.28"}, {"ID": "FBgn0261241", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0015268", "EGF_Stimulus": "1.06"}, {"ID": "FBgn0033907", "EGF_Stimulus": "-0.75"}, {"ID": "FBgn0032001", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0052758", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0032208", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0003742", "EGF_Stimulus": "1.22"}, {"ID": "FBgn0002121", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0010217", "EGF_Stimulus": "0.15"}, {"ID": "FBgn0037042", "EGF_Stimulus": "-0.56"}, {"ID": "FBgn0035812", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0032940", "EGF_Stimulus": "1.58"}, {"ID": "FBgn0040377", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0011834", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0039684", "EGF_Stimulus": "-1.18"}, {"ID": "FBgn0033392", "EGF_Stimulus": "-0.73"}, {"ID": "FBgn0026427", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0063491", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0037970", "EGF_Stimulus": "1.98"}, {"ID": "FBgn0037648", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0033154", "EGF_Stimulus": "1.54"}, {"ID": "FBgn0045499", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0259184", "EGF_Stimulus": "-0.66"}, {"ID": "FBgn0031822", "EGF_Stimulus": "1.85"}, {"ID": "FBgn0034543", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0036731", "EGF_Stimulus": "-0.76"}, {"ID": "FBgn0036849", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0036825", "EGF_Stimulus": "-4.51"}, {"ID": "FBgn0031109", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0030990", "EGF_Stimulus": "-4.21"}, {"ID": "FBgn0034655", "EGF_Stimulus": "-1.46"}, {"ID": "FBgn0005617", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0030764", "EGF_Stimulus": "-0.63"}, {"ID": "FBgn0259173", "EGF_Stimulus": "-1.31"}, {"ID": "FBgn0052457", "EGF_Stimulus": "-1.79"}, {"ID": "FBgn0036212", "EGF_Stimulus": "1"}, {"ID": "FBgn0023530", "EGF_Stimulus": "-0.65"}, {"ID": "FBgn0027514", "EGF_Stimulus": "-1.44"}, {"ID": "FBgn0044811", "EGF_Stimulus": "0.23"}, {"ID": "FBgn0032445", "EGF_Stimulus": "-1.07"}, {"ID": "FBgn0036135", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0053630", "EGF_Stimulus": "1.17"}, {"ID": "FBgn0030586", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0026313", "EGF_Stimulus": "-0.72"}, {"ID": "FBgn0031263", "EGF_Stimulus": "1.17"}, {"ID": "FBgn0032633", "EGF_Stimulus": "-1.81"}, {"ID": "FBgn0037590", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0036618", "EGF_Stimulus": "-1.68"}, {"ID": "FBgn0047338", "EGF_Stimulus": "1.38"}, {"ID": "FBgn0015765", "EGF_Stimulus": "1.06"}, {"ID": "FBgn0039188", "EGF_Stimulus": "0.27"}, {"ID": "FBgn0040812", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0028399", "EGF_Stimulus": "-0.3"}, {"ID": "FBgn0250907", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0260767", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0051106", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0011576", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0035542", "EGF_Stimulus": "-1.84"}, {"ID": "FBgn0032626", "EGF_Stimulus": "0.21"}, {"ID": "FBgn0053494", "EGF_Stimulus": "-1.57"}, {"ID": "FBgn0033434", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0039797", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0040625", "EGF_Stimulus": "-1.62"}, {"ID": "FBgn0034106", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0036124", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0005634", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0053937", "EGF_Stimulus": "-0.59"}, {"ID": "FBgn0003462", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0086768", "EGF_Stimulus": "-0.19"}, {"ID": "FBgn0037862", "EGF_Stimulus": "-0.85"}, {"ID": "FBgn0033888", "EGF_Stimulus": "-0.82"}, {"ID": "FBgn0037260", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0003731", "EGF_Stimulus": "-10.03"}, {"ID": "FBgn0038639", "EGF_Stimulus": "-0.48"}, {"ID": "FBgn0036615", "EGF_Stimulus": "-0.88"}, {"ID": "FBgn0086378", "EGF_Stimulus": "-0.88"}, {"ID": "FBgn0031097", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0038542", "EGF_Stimulus": "-0.83"}, {"ID": "FBgn0028425", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0029857", "EGF_Stimulus": "-0.57"}, {"ID": "FBgn0004875", "EGF_Stimulus": "1.11"}, {"ID": "FBgn0051648", "EGF_Stimulus": "-1.44"}, {"ID": "FBgn0035928", "EGF_Stimulus": "1.35"}, {"ID": "FBgn0261508", "EGF_Stimulus": "0.25"}, {"ID": "FBgn0051314", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0034440", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0031851", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0029877", "EGF_Stimulus": "0.16"}, {"ID": "FBgn0261596", "EGF_Stimulus": "-3.68"}, {"ID": "FBgn0035517", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0030027", "EGF_Stimulus": "1.17"}, {"ID": "FBgn0035823", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0011660", "EGF_Stimulus": "1.48"}, {"ID": "FBgn0032170", "EGF_Stimulus": "1.32"}, {"ID": "FBgn0025608", "EGF_Stimulus": "-0.48"}, {"ID": "FBgn0039877", "EGF_Stimulus": "1.09"}, {"ID": "FBgn0260397", "EGF_Stimulus": "1.38"}, {"ID": "FBgn0035360", "EGF_Stimulus": "-0.95"}, {"ID": "FBgn0033388", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0038927", "EGF_Stimulus": "1.09"}, {"ID": "FBgn0037431", "EGF_Stimulus": "1.79"}, {"ID": "FBgn0033337", "EGF_Stimulus": "1.28"}, {"ID": "FBgn0028542", "EGF_Stimulus": "-0.66"}, {"ID": "FBgn0030833", "EGF_Stimulus": "-0.86"}, {"ID": "FBgn0004588", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0261789", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0034295", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0036772", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0031782", "EGF_Stimulus": "-1.39"}, {"ID": "FBgn0030514", "EGF_Stimulus": "1.05"}, {"ID": "FBgn0036752", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0011770", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0051195", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0050115", "EGF_Stimulus": "-1.23"}, {"ID": "FBgn0037870", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0052392", "EGF_Stimulus": "1.02"}, {"ID": "FBgn0032343", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0031562", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0000157", "EGF_Stimulus": "1.68"}, {"ID": "FBgn0038423", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0034634", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0040279", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0004456", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0015754", "EGF_Stimulus": "0.26"}, {"ID": "FBgn0034867", "EGF_Stimulus": "-1.67"}, {"ID": "FBgn0026398", "EGF_Stimulus": "1.45"}, {"ID": "FBgn0002917", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0051675", "EGF_Stimulus": "0.16"}, {"ID": "FBgn0030375", "EGF_Stimulus": "-0.83"}, {"ID": "FBgn0086371", "EGF_Stimulus": "-1.34"}, {"ID": "FBgn0036936", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0035932", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0034345", "EGF_Stimulus": "-0.32"}, {"ID": "FBgn0041235", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0002873", "EGF_Stimulus": "-1.29"}, {"ID": "FBgn0029657", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0052595", "EGF_Stimulus": "-0.54"}, {"ID": "FBgn0033310", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0039739", "EGF_Stimulus": "0.18"}, {"ID": "FBgn0051665", "EGF_Stimulus": "-1.5"}, {"ID": "FBgn0037143", "EGF_Stimulus": "-1.67"}, {"ID": "FBgn0001218", "EGF_Stimulus": "-1.29"}, {"ID": "FBgn0032974", "EGF_Stimulus": "-0.46"}, {"ID": "FBgn0030570", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0259749", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0038586", "EGF_Stimulus": "-1.29"}, {"ID": "FBgn0033138", "EGF_Stimulus": "-1.02"}, {"ID": "FBgn0036759", "EGF_Stimulus": "1.25"}, {"ID": "FBgn0001319", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0038621", "EGF_Stimulus": "-0.21"}, {"ID": "FBgn0029158", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0001974", "EGF_Stimulus": "1.1"}, {"ID": "FBgn0014075", "EGF_Stimulus": "-0.36"}, {"ID": "FBgn0038721", "EGF_Stimulus": "-0.74"}, {"ID": "FBgn0039873", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0034050", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0026666", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0030778", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0026753", "EGF_Stimulus": "-1.47"}, {"ID": "FBgn0040099", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0031473", "EGF_Stimulus": "1.1"}, {"ID": "FBgn0033167", "EGF_Stimulus": "-0.19"}, {"ID": "FBgn0026369", "EGF_Stimulus": "-0.11"}, {"ID": "FBgn0039283", "EGF_Stimulus": "-0.18"}, {"ID": "FBgn0037000", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0036066", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0050480", "EGF_Stimulus": "-0.7"}, {"ID": "FBgn0085390", "EGF_Stimulus": "1.41"}, {"ID": "FBgn0036139", "EGF_Stimulus": "1.05"}, {"ID": "FBgn0040694", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0001995", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0030573", "EGF_Stimulus": "0.15"}, {"ID": "FBgn0039723", "EGF_Stimulus": "-0.34"}, {"ID": "FBgn0261572", "EGF_Stimulus": "-0.73"}, {"ID": "FBgn0035028", "EGF_Stimulus": "-0.85"}, {"ID": "FBgn0085479", "EGF_Stimulus": "-0.39"}, {"ID": "FBgn0064912", "EGF_Stimulus": "-0.06"}, {"ID": "FBgn0034186", "EGF_Stimulus": "1.68"}, {"ID": "FBgn0036414", "EGF_Stimulus": "-1.05"}, {"ID": "FBgn0034666", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0028686", "EGF_Stimulus": "-4.37"}, {"ID": "FBgn0036142", "EGF_Stimulus": "-0.05"}, {"ID": "FBgn0038989", "EGF_Stimulus": "-0.43"}, {"ID": "FBgn0034976", "EGF_Stimulus": "-1.4"}, {"ID": "FBgn0038347", "EGF_Stimulus": "-0.55"}, {"ID": "FBgn0025697", "EGF_Stimulus": "1.68"}, {"ID": "FBgn0026318", "EGF_Stimulus": "0.19"}, {"ID": "FBgn0028470", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0037741", "EGF_Stimulus": "-0.28"}, {"ID": "FBgn0030999", "EGF_Stimulus": "1.67"}, {"ID": "FBgn0039861", "EGF_Stimulus": "1.22"}, {"ID": "FBgn0259982", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0051774", "EGF_Stimulus": "-2.09"}, {"ID": "FBgn0050496", "EGF_Stimulus": "-1.54"}, {"ID": "FBgn0032149", "EGF_Stimulus": "-0.79"}, {"ID": "FBgn0260766", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0037992", "EGF_Stimulus": "-1.27"}, {"ID": "FBgn0039249", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0051627", "EGF_Stimulus": "-0.86"}, {"ID": "FBgn0033931", "EGF_Stimulus": "1.82"}, {"ID": "FBgn0030692", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0035014", "EGF_Stimulus": "1.38"}, {"ID": "FBgn0036667", "EGF_Stimulus": "-0.76"}, {"ID": "FBgn0052068", "EGF_Stimulus": "-0.97"}, {"ID": "FBgn0020766", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0032897", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0036173", "EGF_Stimulus": "-0.19"}, {"ID": "FBgn0031419", "EGF_Stimulus": "1.05"}, {"ID": "FBgn0086695", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0035059", "EGF_Stimulus": "-0.88"}, {"ID": "FBgn0014848", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0031643", "EGF_Stimulus": "0.05"}, {"ID": "FBgn0010194", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0034592", "EGF_Stimulus": "-1.06"}, {"ID": "FBgn0031315", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0053348", "EGF_Stimulus": "-0.63"}, {"ID": "FBgn0036780", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0069242", "EGF_Stimulus": "-1.1"}, {"ID": "FBgn0040074", "EGF_Stimulus": "1.4"}, {"ID": "FBgn0050383", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0033058", "EGF_Stimulus": "3.48"}, {"ID": "FBgn0038709", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0029925", "EGF_Stimulus": "-0.95"}, {"ID": "FBgn0250825", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0031530", "EGF_Stimulus": "0.12"}, {"ID": "FBgn0260658", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0058354", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0031468", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0035641", "EGF_Stimulus": "2.03"}, {"ID": "FBgn0083979", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0050016", "EGF_Stimulus": "-0.34"}, {"ID": "FBgn0034732", "EGF_Stimulus": "-1.1"}, {"ID": "FBgn0039238", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0030837", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0051635", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0052628", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0030944", "EGF_Stimulus": "-0.3"}, {"ID": "FBgn0037848", "EGF_Stimulus": "0.26"}, {"ID": "FBgn0040251", "EGF_Stimulus": "0.21"}, {"ID": "FBgn0035538", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0010414", "EGF_Stimulus": "1.27"}, {"ID": "FBgn0034151", "EGF_Stimulus": "-0.21"}, {"ID": "FBgn0032058", "EGF_Stimulus": "0.94"}, {"ID": "FBgn0001125", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0005666", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0027054", "EGF_Stimulus": "-0.48"}, {"ID": "FBgn0031279", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0050354", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0028689", "EGF_Stimulus": "-3.36"}, {"ID": "FBgn0086757", "EGF_Stimulus": "0.19"}, {"ID": "FBgn0260750", "EGF_Stimulus": "0.17"}, {"ID": "FBgn0047351", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0259938", "EGF_Stimulus": "-1.65"}, {"ID": "FBgn0015271", "EGF_Stimulus": "-0.46"}, {"ID": "FBgn0020416", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0020018", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0038432", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0024319", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0034259", "EGF_Stimulus": "-1.25"}, {"ID": "FBgn0034270", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0052100", "EGF_Stimulus": "1.18"}, {"ID": "FBgn0052110", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0032859", "EGF_Stimulus": "-0.93"}, {"ID": "FBgn0025878", "EGF_Stimulus": "-1.09"}, {"ID": "FBgn0028983", "EGF_Stimulus": "-1.34"}, {"ID": "FBgn0037019", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0036491", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0032111", "EGF_Stimulus": "-0.26"}, {"ID": "FBgn0039835", "EGF_Stimulus": "-0.74"}, {"ID": "FBgn0085415", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0035558", "EGF_Stimulus": "-1.08"}, {"ID": "FBgn0030326", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0053757", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0014879", "EGF_Stimulus": "-1.04"}, {"ID": "FBgn0039747", "EGF_Stimulus": "-0.83"}, {"ID": "FBgn0053784", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0038201", "EGF_Stimulus": "1.14"}, {"ID": "FBgn0050476", "EGF_Stimulus": "-4.11"}, {"ID": "FBgn0003865", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0034889", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0030793", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0023545", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0023172", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0261276", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0003087", "EGF_Stimulus": "-3.39"}, {"ID": "FBgn0034967", "EGF_Stimulus": "-1.85"}, {"ID": "FBgn0038238", "EGF_Stimulus": "-0.29"}, {"ID": "FBgn0025366", "EGF_Stimulus": "-2.16"}, {"ID": "FBgn0036227", "EGF_Stimulus": "0.23"}, {"ID": "FBgn0030578", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0037238", "EGF_Stimulus": "-1.06"}, {"ID": "FBgn0053325", "EGF_Stimulus": "0.21"}, {"ID": "FBgn0032746", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0036208", "EGF_Stimulus": "-0.81"}, {"ID": "FBgn0085387", "EGF_Stimulus": "-1.03"}, {"ID": "FBgn0024912", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0030814", "EGF_Stimulus": "-0.92"}, {"ID": "FBgn0037668", "EGF_Stimulus": "-0.28"}, {"ID": "FBgn0031529", "EGF_Stimulus": "-0.79"}, {"ID": "FBgn0040153", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0032869", "EGF_Stimulus": "-1.19"}, {"ID": "FBgn0034389", "EGF_Stimulus": "-0.93"}, {"ID": "FBgn0033373", "EGF_Stimulus": "-0.34"}, {"ID": "FBgn0024909", "EGF_Stimulus": "-0.36"}, {"ID": "FBgn0034987", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0036777", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0001222", "EGF_Stimulus": "1.46"}, {"ID": "FBgn0033813", "EGF_Stimulus": "-0.14"}, {"ID": "FBgn0033543", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0003257", "EGF_Stimulus": "-1.79"}, {"ID": "FBgn0039443", "EGF_Stimulus": "1.1"}, {"ID": "FBgn0040066", "EGF_Stimulus": "-4.09"}, {"ID": "FBgn0260944", "EGF_Stimulus": "1.37"}, {"ID": "FBgn0043577", "EGF_Stimulus": "0.15"}, {"ID": "FBgn0039338", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0005642", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0017578", "EGF_Stimulus": "-1.08"}, {"ID": "FBgn0039112", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0051718", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0030659", "EGF_Stimulus": "-2.11"}, {"ID": "FBgn0085203", "EGF_Stimulus": "-1.44"}, {"ID": "FBgn0024984", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0010704", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0054034", "EGF_Stimulus": "-0.73"}, {"ID": "FBgn0033190", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0032474", "EGF_Stimulus": "-1.2"}, {"ID": "FBgn0033079", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0037666", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0000180", "EGF_Stimulus": "-1.32"}, {"ID": "FBgn0036230", "EGF_Stimulus": "-0.15"}, {"ID": "FBgn0015278", "EGF_Stimulus": "-0.76"}, {"ID": "FBgn0037447", "EGF_Stimulus": "-0.82"}, {"ID": "FBgn0051957", "EGF_Stimulus": "-1.33"}, {"ID": "FBgn0024555", "EGF_Stimulus": "-3.96"}, {"ID": "FBgn0010381", "EGF_Stimulus": "1.37"}, {"ID": "FBgn0032405", "EGF_Stimulus": "-0.26"}, {"ID": "FBgn0039640", "EGF_Stimulus": "0.13"}, {"ID": "FBgn0085484", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0031650", "EGF_Stimulus": "-0.78"}, {"ID": "FBgn0035407", "EGF_Stimulus": "-0.56"}, {"ID": "FBgn0031249", "EGF_Stimulus": "-0.2"}, {"ID": "FBgn0034639", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0030030", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0260939", "EGF_Stimulus": "-1.03"}, {"ID": "FBgn0036891", "EGF_Stimulus": "0.3"}, {"ID": "FBgn0032884", "EGF_Stimulus": "-2.65"}, {"ID": "FBgn0033699", "EGF_Stimulus": "-1.04"}, {"ID": "FBgn0028402", "EGF_Stimulus": "-0.99"}, {"ID": "FBgn0036627", "EGF_Stimulus": "-0.63"}, {"ID": "FBgn0019957", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0039628", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0010379", "EGF_Stimulus": "1.24"}, {"ID": "FBgn0085252", "EGF_Stimulus": "1.01"}, {"ID": "FBgn0038286", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0031516", "EGF_Stimulus": "-0.32"}, {"ID": "FBgn0033913", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0040629", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0032731", "EGF_Stimulus": "-1.05"}, {"ID": "FBgn0054054", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0087040", "EGF_Stimulus": "-1.37"}, {"ID": "FBgn0035663", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0025634", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0026749", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0052945", "EGF_Stimulus": "1"}, {"ID": "FBgn0031500", "EGF_Stimulus": "-0.46"}, {"ID": "FBgn0033206", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0050127", "EGF_Stimulus": "-0.66"}, {"ID": "FBgn0034689", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0036427", "EGF_Stimulus": "-0.37"}, {"ID": "FBgn0032229", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0050081", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0037417", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0015575", "EGF_Stimulus": "1.2"}, {"ID": "FBgn0042131", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0039855", "EGF_Stimulus": "-0.86"}, {"ID": "FBgn0030893", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0013997", "EGF_Stimulus": "-1.41"}, {"ID": "FBgn0027066", "EGF_Stimulus": "-1.05"}, {"ID": "FBgn0031068", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0039597", "EGF_Stimulus": "1.33"}, {"ID": "FBgn0038331", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0051104", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0035161", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0010100", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0022160", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0040653", "EGF_Stimulus": "-0.69"}, {"ID": "FBgn0039434", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0027070", "EGF_Stimulus": "-0.82"}, {"ID": "FBgn0037818", "EGF_Stimulus": "-1.04"}, {"ID": "FBgn0031308", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0033608", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0027791", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0034582", "EGF_Stimulus": "0.27"}, {"ID": "FBgn0036330", "EGF_Stimulus": "-0.63"}, {"ID": "FBgn0000075", "EGF_Stimulus": "1.3"}, {"ID": "FBgn0039020", "EGF_Stimulus": "0.2"}, {"ID": "FBgn0050401", "EGF_Stimulus": "-0.64"}, {"ID": "FBgn0031080", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0031003", "EGF_Stimulus": "-1.45"}, {"ID": "FBgn0051007", "EGF_Stimulus": "-0.94"}, {"ID": "FBgn0051921", "EGF_Stimulus": "-1.22"}, {"ID": "FBgn0035710", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0017567", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0002440", "EGF_Stimulus": "-0.1"}, {"ID": "FBgn0038847", "EGF_Stimulus": "1.48"}, {"ID": "FBgn0038558", "EGF_Stimulus": "-0.63"}, {"ID": "FBgn0032036", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0011305", "EGF_Stimulus": "-1.06"}, {"ID": "FBgn0036959", "EGF_Stimulus": "-0.28"}, {"ID": "FBgn0053294", "EGF_Stimulus": "-0.39"}, {"ID": "FBgn0033486", "EGF_Stimulus": "1.33"}, {"ID": "FBgn0033225", "EGF_Stimulus": "-0.29"}, {"ID": "FBgn0031398", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0032692", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0025712", "EGF_Stimulus": "1.1"}, {"ID": "FBgn0083949", "EGF_Stimulus": "1.02"}, {"ID": "FBgn0030985", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0038326", "EGF_Stimulus": "2.84"}, {"ID": "FBgn0028932", "EGF_Stimulus": "-0.07"}, {"ID": "FBgn0003071", "EGF_Stimulus": "-0.33"}, {"ID": "FBgn0039994", "EGF_Stimulus": "-0.8"}, {"ID": "FBgn0032664", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0042174", "EGF_Stimulus": "-0.79"}, {"ID": "FBgn0031522", "EGF_Stimulus": "-0.18"}, {"ID": "FBgn0036952", "EGF_Stimulus": "1.02"}, {"ID": "FBgn0050065", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0051473", "EGF_Stimulus": "1.52"}, {"ID": "FBgn0001089", "EGF_Stimulus": "1.48"}, {"ID": "FBgn0052694", "EGF_Stimulus": "-0.65"}, {"ID": "FBgn0034470", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0034158", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0039091", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0036819", "EGF_Stimulus": "1.84"}, {"ID": "FBgn0025469", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0000247", "EGF_Stimulus": "1.02"}, {"ID": "FBgn0031244", "EGF_Stimulus": "-1.24"}, {"ID": "FBgn0034455", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0033994", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0051460", "EGF_Stimulus": "1.17"}, {"ID": "FBgn0052150", "EGF_Stimulus": "-0.85"}, {"ID": "FBgn0050125", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0039108", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0052479", "EGF_Stimulus": "1.51"}, {"ID": "FBgn0038919", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0003250", "EGF_Stimulus": "-1.46"}, {"ID": "FBgn0021856", "EGF_Stimulus": "1.13"}, {"ID": "FBgn0002778", "EGF_Stimulus": "-0.47"}, {"ID": "FBgn0034049", "EGF_Stimulus": "-0.37"}, {"ID": "FBgn0039915", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0000299", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0001989", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0261290", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0027596", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0036795", "EGF_Stimulus": "-0.84"}, {"ID": "FBgn0045470", "EGF_Stimulus": "-1.79"}, {"ID": "FBgn0037114", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0034420", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0026388", "EGF_Stimulus": "-1.83"}, {"ID": "FBgn0011674", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0031490", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0086200", "EGF_Stimulus": "1.23"}, {"ID": "FBgn0261794", "EGF_Stimulus": "1.28"}, {"ID": "FBgn0023095", "EGF_Stimulus": "1.19"}, {"ID": "FBgn0053971", "EGF_Stimulus": "0.18"}, {"ID": "FBgn0013685", "EGF_Stimulus": "1.01"}, {"ID": "FBgn0051064", "EGF_Stimulus": "-1.93"}, {"ID": "FBgn0029664", "EGF_Stimulus": "-0.61"}, {"ID": "FBgn0036467", "EGF_Stimulus": "0.96"}, {"ID": "FBgn0003082", "EGF_Stimulus": "1.62"}, {"ID": "FBgn0038681", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0033601", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0040319", "EGF_Stimulus": "-0.81"}, {"ID": "FBgn0040234", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0031702", "EGF_Stimulus": "1.73"}, {"ID": "FBgn0040056", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0005410", "EGF_Stimulus": "-1.58"}, {"ID": "FBgn0038551", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0037515", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0053639", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0025628", "EGF_Stimulus": "-1.46"}, {"ID": "FBgn0030622", "EGF_Stimulus": "-0.9"}, {"ID": "FBgn0003396", "EGF_Stimulus": "-1.54"}, {"ID": "FBgn0038102", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0027108", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0040900", "EGF_Stimulus": "1.98"}, {"ID": "FBgn0046685", "EGF_Stimulus": "-0.88"}, {"ID": "FBgn0031100", "EGF_Stimulus": "-0.22"}, {"ID": "FBgn0030493", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0035839", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0061196", "EGF_Stimulus": "-0.4"}, {"ID": "FBgn0026389", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0083940", "EGF_Stimulus": "1.62"}, {"ID": "FBgn0035553", "EGF_Stimulus": "-1.2"}, {"ID": "FBgn0034839", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0039929", "EGF_Stimulus": "-0.12"}, {"ID": "FBgn0022029", "EGF_Stimulus": "-0.88"}, {"ID": "FBgn0032799", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0032601", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0039900", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0039742", "EGF_Stimulus": "-1.26"}, {"ID": "FBgn0037792", "EGF_Stimulus": "-0.95"}, {"ID": "FBgn0031908", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0036646", "EGF_Stimulus": "-1.01"}, {"ID": "FBgn0035334", "EGF_Stimulus": "-1.29"}, {"ID": "FBgn0037340", "EGF_Stimulus": "-0.33"}, {"ID": "FBgn0004045", "EGF_Stimulus": "-0.28"}, {"ID": "FBgn0001120", "EGF_Stimulus": "-0.91"}, {"ID": "FBgn0010926", "EGF_Stimulus": "-0.84"}, {"ID": "FBgn0037082", "EGF_Stimulus": "1.23"}, {"ID": "FBgn0030189", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0016038", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0037634", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0032922", "EGF_Stimulus": "1.57"}, {"ID": "FBgn0039101", "EGF_Stimulus": "-0.76"}, {"ID": "FBgn0036727", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0052835", "EGF_Stimulus": "-1.33"}, {"ID": "FBgn0015520", "EGF_Stimulus": "1.14"}, {"ID": "FBgn0035751", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0005655", "EGF_Stimulus": "-1.07"}, {"ID": "FBgn0034617", "EGF_Stimulus": "0.14"}, {"ID": "FBgn0026417", "EGF_Stimulus": "4.71"}, {"ID": "FBgn0041709", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0032439", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0002716", "EGF_Stimulus": "-0.46"}, {"ID": "FBgn0015316", "EGF_Stimulus": "0.14"}, {"ID": "FBgn0086355", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0261881", "EGF_Stimulus": "1.12"}, {"ID": "FBgn0033864", "EGF_Stimulus": "0.3"}, {"ID": "FBgn0027587", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0000071", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0033983", "EGF_Stimulus": "1.28"}, {"ID": "FBgn0038915", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0032805", "EGF_Stimulus": "1.57"}, {"ID": "FBgn0030629", "EGF_Stimulus": "-0.94"}, {"ID": "FBgn0086605", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0260388", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0034501", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0037315", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0001301", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0044826", "EGF_Stimulus": "-2.07"}, {"ID": "FBgn0035888", "EGF_Stimulus": "-0.25"}, {"ID": "FBgn0052107", "EGF_Stimulus": "-0.81"}, {"ID": "FBgn0030745", "EGF_Stimulus": "-0.59"}, {"ID": "FBgn0250834", "EGF_Stimulus": "-1.8"}, {"ID": "FBgn0033212", "EGF_Stimulus": "1.9"}, {"ID": "FBgn0022224", "EGF_Stimulus": "-0.69"}, {"ID": "FBgn0260996", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0036527", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0035122", "EGF_Stimulus": "-0.33"}, {"ID": "FBgn0039310", "EGF_Stimulus": "-0.35"}, {"ID": "FBgn0037567", "EGF_Stimulus": "-0.05"}, {"ID": "FBgn0039260", "EGF_Stimulus": "-1.2"}, {"ID": "FBgn0038879", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0030593", "EGF_Stimulus": "-0.32"}, {"ID": "FBgn0040531", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0034713", "EGF_Stimulus": "0.3"}, {"ID": "FBgn0039467", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0038448", "EGF_Stimulus": "0.08"}, {"ID": "FBgn0038872", "EGF_Stimulus": "-1.59"}, {"ID": "FBgn0035799", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0017418", "EGF_Stimulus": "1.24"}, {"ID": "FBgn0086690", "EGF_Stimulus": "1.27"}, {"ID": "FBgn0260991", "EGF_Stimulus": "1.26"}, {"ID": "FBgn0033809", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0030098", "EGF_Stimulus": "-0.93"}, {"ID": "FBgn0032055", "EGF_Stimulus": "0.23"}, {"ID": "FBgn0037397", "EGF_Stimulus": "-0.47"}, {"ID": "FBgn0037721", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0031975", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0037976", "EGF_Stimulus": "1.46"}, {"ID": "FBgn0037203", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0016031", "EGF_Stimulus": "1"}, {"ID": "FBgn0034791", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0029669", "EGF_Stimulus": "-0.79"}, {"ID": "FBgn0032457", "EGF_Stimulus": "-1.17"}, {"ID": "FBgn0036394", "EGF_Stimulus": "1.77"}, {"ID": "FBgn0038150", "EGF_Stimulus": "-0.23"}, {"ID": "FBgn0035473", "EGF_Stimulus": "-0.62"}, {"ID": "FBgn0085423", "EGF_Stimulus": "-1.7"}, {"ID": "FBgn0023395", "EGF_Stimulus": "-1.45"}, {"ID": "FBgn0053125", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0029647", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0030687", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0034066", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0001179", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0028525", "EGF_Stimulus": "-0.92"}, {"ID": "FBgn0031804", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0031384", "EGF_Stimulus": "-0.62"}, {"ID": "FBgn0035689", "EGF_Stimulus": "-1.59"}, {"ID": "FBgn0000527", "EGF_Stimulus": "-1.01"}, {"ID": "FBgn0032430", "EGF_Stimulus": "-1.03"}, {"ID": "FBgn0033784", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0035498", "EGF_Stimulus": "-0.83"}, {"ID": "FBgn0083969", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0014903", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0036239", "EGF_Stimulus": "-4.17"}, {"ID": "FBgn0033725", "EGF_Stimulus": "1.5"}, {"ID": "FBgn0035379", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0037603", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0003275", "EGF_Stimulus": "-1.45"}, {"ID": "FBgn0036495", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0052117", "EGF_Stimulus": "1.49"}, {"ID": "FBgn0028412", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0034099", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0030234", "EGF_Stimulus": "1.25"}, {"ID": "FBgn0047205", "EGF_Stimulus": "-1.58"}, {"ID": "FBgn0014465", "EGF_Stimulus": "-0.83"}, {"ID": "FBgn0035978", "EGF_Stimulus": "1.73"}, {"ID": "FBgn0051544", "EGF_Stimulus": "1.59"}, {"ID": "FBgn0038475", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0031078", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0037728", "EGF_Stimulus": "1"}, {"ID": "FBgn0037538", "EGF_Stimulus": "-0.99"}, {"ID": "FBgn0032929", "EGF_Stimulus": "-1.38"}, {"ID": "FBgn0030480", "EGF_Stimulus": "-0.69"}, {"ID": "FBgn0036111", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0020930", "EGF_Stimulus": "1.67"}, {"ID": "FBgn0030719", "EGF_Stimulus": "-0.97"}, {"ID": "FBgn0040212", "EGF_Stimulus": "-0.9"}, {"ID": "FBgn0028507", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0032597", "EGF_Stimulus": "1.26"}, {"ID": "FBgn0039156", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0039544", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0039765", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0261587", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0052085", "EGF_Stimulus": "1.41"}, {"ID": "FBgn0045477", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0035985", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0031347", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0029766", "EGF_Stimulus": "-0.34"}, {"ID": "FBgn0036676", "EGF_Stimulus": "-1.12"}, {"ID": "FBgn0036581", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0036403", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0036940", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0040973", "EGF_Stimulus": "-0.81"}, {"ID": "FBgn0051015", "EGF_Stimulus": "-1.34"}, {"ID": "FBgn0004367", "EGF_Stimulus": "-0.56"}, {"ID": "FBgn0039887", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0034363", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0038088", "EGF_Stimulus": "1.2"}, {"ID": "FBgn0025836", "EGF_Stimulus": "0.96"}, {"ID": "FBgn0033792", "EGF_Stimulus": "-1.06"}, {"ID": "FBgn0038890", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0037035", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0038589", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0035268", "EGF_Stimulus": "1.45"}, {"ID": "FBgn0037552", "EGF_Stimulus": "0.25"}, {"ID": "FBgn0033375", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0019886", "EGF_Stimulus": "-1.14"}, {"ID": "FBgn0051462", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0033656", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0034842", "EGF_Stimulus": "1.09"}, {"ID": "FBgn0027493", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0032291", "EGF_Stimulus": "-0.89"}, {"ID": "FBgn0010278", "EGF_Stimulus": "-4.16"}, {"ID": "FBgn0033349", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0031050", "EGF_Stimulus": "-1.18"}, {"ID": "FBgn0035298", "EGF_Stimulus": "-0.23"}, {"ID": "FBgn0000422", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0032812", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0036188", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0033353", "EGF_Stimulus": "0.1"}, {"ID": "FBgn0036155", "EGF_Stimulus": "-0.06"}, {"ID": "FBgn0031389", "EGF_Stimulus": "1.31"}, {"ID": "FBgn0029838", "EGF_Stimulus": "0.13"}, {"ID": "FBgn0038849", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0030946", "EGF_Stimulus": "-0.52"}, {"ID": "FBgn0026713", "EGF_Stimulus": "1.47"}, {"ID": "FBgn0038870", "EGF_Stimulus": "-1.98"}, {"ID": "FBgn0259245", "EGF_Stimulus": "-1.48"}, {"ID": "FBgn0038002", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0261673", "EGF_Stimulus": "1.34"}, {"ID": "FBgn0030889", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0034288", "EGF_Stimulus": "-0.48"}, {"ID": "FBgn0050076", "EGF_Stimulus": "-1.06"}, {"ID": "FBgn0038453", "EGF_Stimulus": "1.46"}, {"ID": "FBgn0036306", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0031722", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0010109", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0038143", "EGF_Stimulus": "-1.32"}, {"ID": "FBgn0033238", "EGF_Stimulus": "-0.31"}, {"ID": "FBgn0010825", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0029738", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0036354", "EGF_Stimulus": "1.63"}, {"ID": "FBgn0035449", "EGF_Stimulus": "1.11"}, {"ID": "FBgn0028743", "EGF_Stimulus": "-0.62"}, {"ID": "FBgn0085458", "EGF_Stimulus": "-0.36"}, {"ID": "FBgn0033139", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0013810", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0027936", "EGF_Stimulus": "-3.55"}, {"ID": "FBgn0003360", "EGF_Stimulus": "-0.26"}, {"ID": "FBgn0031571", "EGF_Stimulus": "2.12"}, {"ID": "FBgn0032819", "EGF_Stimulus": "-1.34"}, {"ID": "FBgn0036896", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0065110", "EGF_Stimulus": "-0.3"}, {"ID": "FBgn0003137", "EGF_Stimulus": "-0.47"}, {"ID": "FBgn0039810", "EGF_Stimulus": "-0.16"}, {"ID": "FBgn0030409", "EGF_Stimulus": "-1.83"}, {"ID": "FBgn0037027", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0003139", "EGF_Stimulus": "1.05"}, {"ID": "FBgn0034709", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0051802", "EGF_Stimulus": "-0.64"}, {"ID": "FBgn0031738", "EGF_Stimulus": "1.57"}, {"ID": "FBgn0036622", "EGF_Stimulus": "-0.37"}, {"ID": "FBgn0037549", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0035104", "EGF_Stimulus": "1.33"}, {"ID": "FBgn0015544", "EGF_Stimulus": "-1.01"}, {"ID": "FBgn0000094", "EGF_Stimulus": "1.14"}, {"ID": "FBgn0030724", "EGF_Stimulus": "1.43"}, {"ID": "FBgn0261293", "EGF_Stimulus": "-0.55"}, {"ID": "FBgn0023516", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0004381", "EGF_Stimulus": "-0.56"}, {"ID": "FBgn0036017", "EGF_Stimulus": "-0.08"}, {"ID": "FBgn0035583", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0030096", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0039958", "EGF_Stimulus": "1.31"}, {"ID": "FBgn0036340", "EGF_Stimulus": "-0.72"}, {"ID": "FBgn0032645", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0036734", "EGF_Stimulus": "-2.2"}, {"ID": "FBgn0033715", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0053140", "EGF_Stimulus": "-0.61"}, {"ID": "FBgn0031693", "EGF_Stimulus": "1.34"}, {"ID": "FBgn0029945", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0034281", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0051800", "EGF_Stimulus": "-1.64"}, {"ID": "FBgn0260872", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0034391", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0019660", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0052311", "EGF_Stimulus": "1.44"}, {"ID": "FBgn0030260", "EGF_Stimulus": "2.46"}, {"ID": "FBgn0031462", "EGF_Stimulus": "-1.14"}, {"ID": "FBgn0035960", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0034360", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0035136", "EGF_Stimulus": "1.75"}, {"ID": "FBgn0033184", "EGF_Stimulus": "1.11"}, {"ID": "FBgn0036470", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0030989", "EGF_Stimulus": "-0.47"}, {"ID": "FBgn0032969", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0001092", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0041605", "EGF_Stimulus": "1.28"}, {"ID": "FBgn0031903", "EGF_Stimulus": "-1.43"}, {"ID": "FBgn0031700", "EGF_Stimulus": "-0.8"}, {"ID": "FBgn0039732", "EGF_Stimulus": "0.15"}, {"ID": "FBgn0037483", "EGF_Stimulus": "-0.18"}, {"ID": "FBgn0004896", "EGF_Stimulus": "-0.48"}, {"ID": "FBgn0038608", "EGF_Stimulus": "-1.13"}, {"ID": "FBgn0042138", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0031421", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0030248", "EGF_Stimulus": "1.66"}, {"ID": "FBgn0038470", "EGF_Stimulus": "1.17"}, {"ID": "FBgn0039402", "EGF_Stimulus": "-1.73"}, {"ID": "FBgn0034925", "EGF_Stimulus": "1.23"}, {"ID": "FBgn0035471", "EGF_Stimulus": "-1.95"}, {"ID": "FBgn0040732", "EGF_Stimulus": "-0.31"}, {"ID": "FBgn0033469", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0031409", "EGF_Stimulus": "0.11"}, {"ID": "FBgn0033968", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0011211", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0259108", "EGF_Stimulus": "-1.83"}, {"ID": "FBgn0034804", "EGF_Stimulus": "0.3"}, {"ID": "FBgn0031834", "EGF_Stimulus": "1.59"}, {"ID": "FBgn0086475", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0052043", "EGF_Stimulus": "-0.55"}, {"ID": "FBgn0031026", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0036250", "EGF_Stimulus": "0.12"}, {"ID": "FBgn0000579", "EGF_Stimulus": "-1.53"}, {"ID": "FBgn0026401", "EGF_Stimulus": "1.32"}, {"ID": "FBgn0039131", "EGF_Stimulus": "0.19"}, {"ID": "FBgn0038315", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0259703", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0087011", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0027784", "EGF_Stimulus": "1.31"}, {"ID": "FBgn0028841", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0032768", "EGF_Stimulus": "-0.26"}, {"ID": "FBgn0051789", "EGF_Stimulus": "1.47"}, {"ID": "FBgn0032244", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0039145", "EGF_Stimulus": "0.94"}, {"ID": "FBgn0037280", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0036977", "EGF_Stimulus": "0.25"}, {"ID": "FBgn0259682", "EGF_Stimulus": "1.91"}, {"ID": "FBgn0043043", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0031018", "EGF_Stimulus": "-0.65"}, {"ID": "FBgn0038705", "EGF_Stimulus": "1.04"}, {"ID": "FBgn0000524", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0034626", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0038938", "EGF_Stimulus": "1.2"}, {"ID": "FBgn0038130", "EGF_Stimulus": "-1.57"}, {"ID": "FBgn0027503", "EGF_Stimulus": "-1.75"}, {"ID": "FBgn0034215", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0036704", "EGF_Stimulus": "-1.79"}, {"ID": "FBgn0040849", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0011280", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0033786", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0032839", "EGF_Stimulus": "1.41"}, {"ID": "FBgn0052850", "EGF_Stimulus": "-0.97"}, {"ID": "FBgn0033021", "EGF_Stimulus": "-0.35"}, {"ID": "FBgn0002174", "EGF_Stimulus": "-0.47"}, {"ID": "FBgn0037073", "EGF_Stimulus": "-1.32"}, {"ID": "FBgn0039235", "EGF_Stimulus": "-0.94"}, {"ID": "FBgn0259996", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0005778", "EGF_Stimulus": "1.01"}, {"ID": "FBgn0039044", "EGF_Stimulus": "-0.28"}, {"ID": "FBgn0039201", "EGF_Stimulus": "-1.03"}, {"ID": "FBgn0000063", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0038773", "EGF_Stimulus": "-1.97"}, {"ID": "FBgn0037835", "EGF_Stimulus": "-0.95"}, {"ID": "FBgn0032694", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0085216", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0025821", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0024921", "EGF_Stimulus": "-3.7"}, {"ID": "FBgn0261612", "EGF_Stimulus": "-0.24"}, {"ID": "FBgn0043884", "EGF_Stimulus": "-1.36"}, {"ID": "FBgn0053530", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0026634", "EGF_Stimulus": "-0.1"}, {"ID": "FBgn0037936", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0050339", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0040763", "EGF_Stimulus": "1.28"}, {"ID": "FBgn0027864", "EGF_Stimulus": "-1.03"}, {"ID": "FBgn0052283", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0031267", "EGF_Stimulus": "0.1"}, {"ID": "FBgn0259226", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0034304", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0029717", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0028953", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0260450", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0037712", "EGF_Stimulus": "-0.8"}, {"ID": "FBgn0052512", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0051128", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0032286", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0039612", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0085417", "EGF_Stimulus": "-0.52"}, {"ID": "FBgn0040283", "EGF_Stimulus": "1.09"}, {"ID": "FBgn0037406", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0033528", "EGF_Stimulus": "-0.26"}, {"ID": "FBgn0032153", "EGF_Stimulus": "-0.59"}, {"ID": "FBgn0034817", "EGF_Stimulus": "-1.23"}, {"ID": "FBgn0034434", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0038797", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0004650", "EGF_Stimulus": "0.2"}, {"ID": "FBgn0260862", "EGF_Stimulus": "-1.04"}, {"ID": "FBgn0052719", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0038977", "EGF_Stimulus": "-0.64"}, {"ID": "FBgn0022343", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0036922", "EGF_Stimulus": "-1.08"}, {"ID": "FBgn0052227", "EGF_Stimulus": "-0.85"}, {"ID": "FBgn0035756", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0034323", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0028948", "EGF_Stimulus": "-1.33"}, {"ID": "FBgn0038118", "EGF_Stimulus": "-2.48"}, {"ID": "FBgn0053771", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0035427", "EGF_Stimulus": "1.28"}, {"ID": "FBgn0040850", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0031313", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0040368", "EGF_Stimulus": "-0.82"}, {"ID": "FBgn0038235", "EGF_Stimulus": "-0.59"}, {"ID": "FBgn0000173", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0050293", "EGF_Stimulus": "0.22"}, {"ID": "FBgn0026079", "EGF_Stimulus": "-1.2"}, {"ID": "FBgn0030481", "EGF_Stimulus": "1.17"}, {"ID": "FBgn0085474", "EGF_Stimulus": "-1.14"}, {"ID": "FBgn0037687", "EGF_Stimulus": "-1.07"}, {"ID": "FBgn0024277", "EGF_Stimulus": "-1.1"}, {"ID": "FBgn0260648", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0027083", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0023213", "EGF_Stimulus": "-1.46"}, {"ID": "FBgn0030365", "EGF_Stimulus": "1.61"}, {"ID": "FBgn0032136", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0002563", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0033042", "EGF_Stimulus": "-0.9"}, {"ID": "FBgn0032483", "EGF_Stimulus": "-1.32"}, {"ID": "FBgn0051245", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0039172", "EGF_Stimulus": "-0.93"}, {"ID": "FBgn0039588", "EGF_Stimulus": "-1.01"}, {"ID": "FBgn0034437", "EGF_Stimulus": "-0.12"}, {"ID": "FBgn0052191", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0045852", "EGF_Stimulus": "1.02"}, {"ID": "FBgn0004858", "EGF_Stimulus": "-1.12"}, {"ID": "FBgn0030466", "EGF_Stimulus": "-0.77"}, {"ID": "FBgn0025700", "EGF_Stimulus": "-0.8"}, {"ID": "FBgn0004655", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0032346", "EGF_Stimulus": "-1.46"}, {"ID": "FBgn0036691", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0053221", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0027329", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0002354", "EGF_Stimulus": "-0.59"}, {"ID": "FBgn0052718", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0053299", "EGF_Stimulus": "-0.56"}, {"ID": "FBgn0085359", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0014029", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0034990", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0035420", "EGF_Stimulus": "1"}, {"ID": "FBgn0033340", "EGF_Stimulus": "1.24"}, {"ID": "FBgn0034849", "EGF_Stimulus": "-0.79"}, {"ID": "FBgn0261111", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0022708", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0037753", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0029987", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0050275", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0016126", "EGF_Stimulus": "1.17"}, {"ID": "FBgn0036262", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0030347", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0027793", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0030928", "EGF_Stimulus": "1.03"}, {"ID": "FBgn0029898", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0010894", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0030460", "EGF_Stimulus": "-1.11"}, {"ID": "FBgn0035003", "EGF_Stimulus": "-0.32"}, {"ID": "FBgn0022338", "EGF_Stimulus": "-1.14"}, {"ID": "FBgn0030271", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0038246", "EGF_Stimulus": "1.04"}, {"ID": "FBgn0051706", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0051437", "EGF_Stimulus": "1.59"}, {"ID": "FBgn0086657", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0032870", "EGF_Stimulus": "-1.54"}, {"ID": "FBgn0035482", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0260634", "EGF_Stimulus": "-1.17"}, {"ID": "FBgn0035231", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0051869", "EGF_Stimulus": "1.15"}, {"ID": "FBgn0036804", "EGF_Stimulus": "-0.62"}, {"ID": "FBgn0015477", "EGF_Stimulus": "-0.35"}, {"ID": "FBgn0010341", "EGF_Stimulus": "-0.57"}, {"ID": "FBgn0031856", "EGF_Stimulus": "-0.57"}, {"ID": "FBgn0030786", "EGF_Stimulus": "-0.37"}, {"ID": "FBgn0085380", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0033440", "EGF_Stimulus": "-1.17"}, {"ID": "FBgn0039938", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0029979", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0040236", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0028436", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0020378", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0032407", "EGF_Stimulus": "-0.37"}, {"ID": "FBgn0033875", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0011668", "EGF_Stimulus": "-0.22"}, {"ID": "FBgn0014006", "EGF_Stimulus": "1.11"}, {"ID": "FBgn0026060", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0040284", "EGF_Stimulus": "2.98"}, {"ID": "FBgn0037163", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0053108", "EGF_Stimulus": "-1.3"}, {"ID": "FBgn0028663", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0035153", "EGF_Stimulus": "-2.07"}, {"ID": "FBgn0035861", "EGF_Stimulus": "-0.66"}, {"ID": "FBgn0031707", "EGF_Stimulus": "1.2"}, {"ID": "FBgn0053696", "EGF_Stimulus": "-0.39"}, {"ID": "FBgn0015907", "EGF_Stimulus": "-1.31"}, {"ID": "FBgn0033162", "EGF_Stimulus": "-0.35"}, {"ID": "FBgn0013272", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0015527", "EGF_Stimulus": "-0.43"}, {"ID": "FBgn0028916", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0029914", "EGF_Stimulus": "-1.13"}, {"ID": "FBgn0027885", "EGF_Stimulus": "-1.57"}, {"ID": "FBgn0037798", "EGF_Stimulus": "-0.66"}, {"ID": "FBgn0034933", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0034567", "EGF_Stimulus": "1.13"}, {"ID": "FBgn0024807", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0033538", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0038596", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0013733", "EGF_Stimulus": "-1.01"}, {"ID": "FBgn0038660", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0004169", "EGF_Stimulus": "-1.15"}, {"ID": "FBgn0036597", "EGF_Stimulus": "-1.27"}, {"ID": "FBgn0011676", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0243514", "EGF_Stimulus": "1.2"}, {"ID": "FBgn0024841", "EGF_Stimulus": "2.21"}, {"ID": "FBgn0031749", "EGF_Stimulus": "-0.65"}, {"ID": "FBgn0035035", "EGF_Stimulus": "1.25"}, {"ID": "FBgn0030884", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0016797", "EGF_Stimulus": "-1.82"}, {"ID": "FBgn0040827", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0031335", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0052647", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0051740", "EGF_Stimulus": "1.37"}, {"ID": "FBgn0051658", "EGF_Stimulus": "-0.93"}, {"ID": "FBgn0011703", "EGF_Stimulus": "-0.59"}, {"ID": "FBgn0032419", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0000543", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0033089", "EGF_Stimulus": "-1.66"}, {"ID": "FBgn0052240", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0261885", "EGF_Stimulus": "2.13"}, {"ID": "FBgn0033423", "EGF_Stimulus": "-0.26"}, {"ID": "FBgn0029006", "EGF_Stimulus": "-0.54"}, {"ID": "FBgn0261064", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0036996", "EGF_Stimulus": "1.4"}, {"ID": "FBgn0036441", "EGF_Stimulus": "-1.26"}, {"ID": "FBgn0033065", "EGF_Stimulus": "1.13"}, {"ID": "FBgn0032845", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0042101", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0054023", "EGF_Stimulus": "-1.17"}, {"ID": "FBgn0030717", "EGF_Stimulus": "1.02"}, {"ID": "FBgn0000394", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0039740", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0030451", "EGF_Stimulus": "-0.63"}, {"ID": "FBgn0038463", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0030330", "EGF_Stimulus": "-1.55"}, {"ID": "FBgn0053467", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0045485", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0030646", "EGF_Stimulus": "-1.48"}, {"ID": "FBgn0036022", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0052266", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0040775", "EGF_Stimulus": "-1.43"}, {"ID": "FBgn0039299", "EGF_Stimulus": "-1.19"}, {"ID": "FBgn0050412", "EGF_Stimulus": "-0.55"}, {"ID": "FBgn0004870", "EGF_Stimulus": "-0.9"}, {"ID": "FBgn0031623", "EGF_Stimulus": "-1"}, {"ID": "FBgn0034527", "EGF_Stimulus": "0.17"}, {"ID": "FBgn0004435", "EGF_Stimulus": "1.57"}, {"ID": "FBgn0050438", "EGF_Stimulus": "-1.24"}, {"ID": "FBgn0039617", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0036887", "EGF_Stimulus": "1.09"}, {"ID": "FBgn0032603", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0033599", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0031879", "EGF_Stimulus": "1.24"}, {"ID": "FBgn0034136", "EGF_Stimulus": "-0.54"}, {"ID": "FBgn0035415", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0261383", "EGF_Stimulus": "-2.29"}, {"ID": "FBgn0023000", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0039305", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0034200", "EGF_Stimulus": "1.68"}, {"ID": "FBgn0019938", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0020245", "EGF_Stimulus": "1.04"}, {"ID": "FBgn0035851", "EGF_Stimulus": "-0.14"}, {"ID": "FBgn0031923", "EGF_Stimulus": "1.05"}, {"ID": "FBgn0030921", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0033815", "EGF_Stimulus": "-1.33"}, {"ID": "FBgn0086683", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0026760", "EGF_Stimulus": "1.06"}, {"ID": "FBgn0038981", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0261624", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0020660", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0002905", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0004619", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0034512", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0036364", "EGF_Stimulus": "1.26"}, {"ID": "FBgn0038744", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0085195", "EGF_Stimulus": "-1.13"}, {"ID": "FBgn0032224", "EGF_Stimulus": "1.21"}, {"ID": "FBgn0034418", "EGF_Stimulus": "2.01"}, {"ID": "FBgn0037824", "EGF_Stimulus": "-0.14"}, {"ID": "FBgn0025391", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0050379", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0036518", "EGF_Stimulus": "3.35"}, {"ID": "FBgn0037972", "EGF_Stimulus": "1.45"}, {"ID": "FBgn0038857", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0032700", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0034723", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0053117", "EGF_Stimulus": "0.3"}, {"ID": "FBgn0002791", "EGF_Stimulus": "-1.01"}, {"ID": "FBgn0025839", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0037853", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0035934", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0040660", "EGF_Stimulus": "-1.85"}, {"ID": "FBgn0010292", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0031980", "EGF_Stimulus": "-3.31"}, {"ID": "FBgn0030610", "EGF_Stimulus": "-0.9"}, {"ID": "FBgn0035398", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0003041", "EGF_Stimulus": "-0.86"}, {"ID": "FBgn0050009", "EGF_Stimulus": "-0.36"}, {"ID": "FBgn0036236", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0051097", "EGF_Stimulus": "-0.3"}, {"ID": "FBgn0052320", "EGF_Stimulus": "0.94"}, {"ID": "FBgn0002633", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0039846", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0051928", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0034242", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0011592", "EGF_Stimulus": "1.04"}, {"ID": "FBgn0036224", "EGF_Stimulus": "-0.08"}, {"ID": "FBgn0031360", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0030606", "EGF_Stimulus": "-1.56"}, {"ID": "FBgn0042187", "EGF_Stimulus": "0.08"}, {"ID": "FBgn0038295", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0015562", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0034120", "EGF_Stimulus": "-0.37"}, {"ID": "FBgn0026379", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0004397", "EGF_Stimulus": "0.3"}, {"ID": "FBgn0052232", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0001189", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0034011", "EGF_Stimulus": "-1.47"}, {"ID": "FBgn0021776", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0039136", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0085283", "EGF_Stimulus": "-0.57"}, {"ID": "FBgn0029826", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0004237", "EGF_Stimulus": "-1.24"}, {"ID": "FBgn0037376", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0000121", "EGF_Stimulus": "0.08"}, {"ID": "FBgn0031301", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0030292", "EGF_Stimulus": "-0.25"}, {"ID": "FBgn0032899", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0052383", "EGF_Stimulus": "-0.34"}, {"ID": "FBgn0040799", "EGF_Stimulus": "-1.56"}, {"ID": "FBgn0038641", "EGF_Stimulus": "-0.19"}, {"ID": "FBgn0031600", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0014455", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0036070", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0020633", "EGF_Stimulus": "-0.59"}, {"ID": "FBgn0030170", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0035205", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0038160", "EGF_Stimulus": "0.26"}, {"ID": "FBgn0083991", "EGF_Stimulus": "-1.33"}, {"ID": "FBgn0038190", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0003386", "EGF_Stimulus": "1.4"}, {"ID": "FBgn0026876", "EGF_Stimulus": "1.41"}, {"ID": "FBgn0031596", "EGF_Stimulus": "-0.83"}, {"ID": "FBgn0037789", "EGF_Stimulus": "-1.08"}, {"ID": "FBgn0031546", "EGF_Stimulus": "0.17"}, {"ID": "FBgn0039385", "EGF_Stimulus": "1.14"}, {"ID": "FBgn0043471", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0032935", "EGF_Stimulus": "-0.78"}, {"ID": "FBgn0032724", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0034856", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0004593", "EGF_Stimulus": "-0.9"}, {"ID": "FBgn0030899", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0000319", "EGF_Stimulus": "2.2"}, {"ID": "FBgn0033480", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0030385", "EGF_Stimulus": "-0.15"}, {"ID": "FBgn0086350", "EGF_Stimulus": "1.97"}, {"ID": "FBgn0037305", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0051871", "EGF_Stimulus": "-1.28"}, {"ID": "FBgn0032172", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0040324", "EGF_Stimulus": "-0.16"}, {"ID": "FBgn0037801", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0034060", "EGF_Stimulus": "-0.28"}, {"ID": "FBgn0010309", "EGF_Stimulus": "1.05"}, {"ID": "FBgn0031374", "EGF_Stimulus": "-0.75"}, {"ID": "FBgn0039255", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0032312", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0003015", "EGF_Stimulus": "2.17"}, {"ID": "FBgn0003435", "EGF_Stimulus": "-0.56"}, {"ID": "FBgn0035089", "EGF_Stimulus": "1"}, {"ID": "FBgn0000536", "EGF_Stimulus": "1.83"}, {"ID": "FBgn0003159", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0039712", "EGF_Stimulus": "-0.13"}, {"ID": "FBgn0035247", "EGF_Stimulus": "-0.39"}, {"ID": "FBgn0032067", "EGF_Stimulus": "1.15"}, {"ID": "FBgn0036480", "EGF_Stimulus": "1.39"}, {"ID": "FBgn0027546", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0013674", "EGF_Stimulus": "-0.15"}, {"ID": "FBgn0030339", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0051320", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0029761", "EGF_Stimulus": "1.1"}, {"ID": "FBgn0042711", "EGF_Stimulus": "-1.12"}, {"ID": "FBgn0036656", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0033363", "EGF_Stimulus": "-0.12"}, {"ID": "FBgn0030441", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0011606", "EGF_Stimulus": "1.6"}, {"ID": "FBgn0030666", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0085410", "EGF_Stimulus": "-0.47"}, {"ID": "FBgn0030870", "EGF_Stimulus": "1.6"}, {"ID": "FBgn0040514", "EGF_Stimulus": "1.59"}, {"ID": "FBgn0261850", "EGF_Stimulus": "-0.6"}, {"ID": "FBgn0032253", "EGF_Stimulus": "1.12"}, {"ID": "FBgn0050147", "EGF_Stimulus": "1.27"}, {"ID": "FBgn0000413", "EGF_Stimulus": "-1.02"}, {"ID": "FBgn0038806", "EGF_Stimulus": "1.12"}, {"ID": "FBgn0259795", "EGF_Stimulus": "1.11"}, {"ID": "FBgn0034825", "EGF_Stimulus": "-1.02"}, {"ID": "FBgn0033500", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0015222", "EGF_Stimulus": "-1.18"}, {"ID": "FBgn0039395", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0011715", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0000261", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0039459", "EGF_Stimulus": "0.08"}, {"ID": "FBgn0027087", "EGF_Stimulus": "-0.64"}, {"ID": "FBgn0005640", "EGF_Stimulus": "1.45"}, {"ID": "FBgn0033973", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0051427", "EGF_Stimulus": "-1.28"}, {"ID": "FBgn0014868", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0035890", "EGF_Stimulus": "1.06"}, {"ID": "FBgn0036093", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0039058", "EGF_Stimulus": "-0.06"}, {"ID": "FBgn0038250", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0033893", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0010622", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0031484", "EGF_Stimulus": "1.05"}, {"ID": "FBgn0030654", "EGF_Stimulus": "0.3"}, {"ID": "FBgn0025373", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0031609", "EGF_Stimulus": "0.25"}, {"ID": "FBgn0259111", "EGF_Stimulus": "-1.88"}, {"ID": "FBgn0032470", "EGF_Stimulus": "-1.35"}, {"ID": "FBgn0032337", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0039622", "EGF_Stimulus": "-1.63"}, {"ID": "FBgn0033730", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0033292", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0003891", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0026261", "EGF_Stimulus": "1.02"}, {"ID": "FBgn0086912", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0039342", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0035181", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0039495", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0031763", "EGF_Stimulus": "1.39"}, {"ID": "FBgn0053110", "EGF_Stimulus": "-0.78"}, {"ID": "FBgn0052133", "EGF_Stimulus": "1.65"}, {"ID": "FBgn0035414", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0013751", "EGF_Stimulus": "2"}, {"ID": "FBgn0038123", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0037829", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0011745", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0037107", "EGF_Stimulus": "1.49"}, {"ID": "FBgn0036146", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0052574", "EGF_Stimulus": "-0.4"}, {"ID": "FBgn0011207", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0004360", "EGF_Stimulus": "-1.06"}, {"ID": "FBgn0036117", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0032705", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0010052", "EGF_Stimulus": "-0.13"}, {"ID": "FBgn0035533", "EGF_Stimulus": "1.46"}, {"ID": "FBgn0000639", "EGF_Stimulus": "-0.69"}, {"ID": "FBgn0034489", "EGF_Stimulus": "-1.13"}, {"ID": "FBgn0030737", "EGF_Stimulus": "-0.15"}, {"ID": "FBgn0052071", "EGF_Stimulus": "1.93"}, {"ID": "FBgn0036606", "EGF_Stimulus": "1.13"}, {"ID": "FBgn0052699", "EGF_Stimulus": "1.54"}, {"ID": "FBgn0027528", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0034988", "EGF_Stimulus": "-0.75"}, {"ID": "FBgn0035077", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0040754", "EGF_Stimulus": "-0.15"}, {"ID": "FBgn0030844", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0037460", "EGF_Stimulus": "-0.81"}, {"ID": "FBgn0003517", "EGF_Stimulus": "-2.88"}, {"ID": "FBgn0016756", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0085432", "EGF_Stimulus": "-0.86"}, {"ID": "FBgn0001612", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0001138", "EGF_Stimulus": "-0.61"}, {"ID": "FBgn0029816", "EGF_Stimulus": "0.12"}, {"ID": "FBgn0001258", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0052301", "EGF_Stimulus": "-0.39"}, {"ID": "FBgn0037612", "EGF_Stimulus": "-1.46"}, {"ID": "FBgn0051077", "EGF_Stimulus": "1.09"}, {"ID": "FBgn0043530", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0037938", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0031585", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0030699", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0033826", "EGF_Stimulus": "1.56"}, {"ID": "FBgn0028518", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0011289", "EGF_Stimulus": "1.24"}, {"ID": "FBgn0033929", "EGF_Stimulus": "-0.33"}, {"ID": "FBgn0031731", "EGF_Stimulus": "-1.32"}, {"ID": "FBgn0051145", "EGF_Stimulus": "-1.2"}, {"ID": "FBgn0004623", "EGF_Stimulus": "1.47"}, {"ID": "FBgn0050372", "EGF_Stimulus": "0.22"}, {"ID": "FBgn0032069", "EGF_Stimulus": "-0.55"}, {"ID": "FBgn0051760", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0037672", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0013749", "EGF_Stimulus": "-2.32"}, {"ID": "FBgn0036110", "EGF_Stimulus": "0.14"}, {"ID": "FBgn0029755", "EGF_Stimulus": "1.12"}, {"ID": "FBgn0039559", "EGF_Stimulus": "-0.6"}, {"ID": "FBgn0004597", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0052026", "EGF_Stimulus": "-0.67"}, {"ID": "FBgn0031776", "EGF_Stimulus": "1.06"}, {"ID": "FBgn0036198", "EGF_Stimulus": "-0.62"}, {"ID": "FBgn0013305", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0013469", "EGF_Stimulus": "-1.14"}, {"ID": "FBgn0260860", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0035825", "EGF_Stimulus": "0.1"}, {"ID": "FBgn0030012", "EGF_Stimulus": "-1.12"}, {"ID": "FBgn0085434", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0016032", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0034904", "EGF_Stimulus": "-0.88"}, {"ID": "FBgn0038268", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0038968", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0033633", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0010220", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0031675", "EGF_Stimulus": "1.65"}, {"ID": "FBgn0051523", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0260940", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0052304", "EGF_Stimulus": "-0.14"}, {"ID": "FBgn0053301", "EGF_Stimulus": "1.11"}, {"ID": "FBgn0260660", "EGF_Stimulus": "1.44"}, {"ID": "FBgn0261283", "EGF_Stimulus": "-1.83"}, {"ID": "FBgn0034950", "EGF_Stimulus": "0.12"}, {"ID": "FBgn0003479", "EGF_Stimulus": "-0.65"}, {"ID": "FBgn0035464", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0039349", "EGF_Stimulus": "0.3"}, {"ID": "FBgn0040786", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0003885", "EGF_Stimulus": "-1.25"}, {"ID": "FBgn0039804", "EGF_Stimulus": "1.46"}, {"ID": "FBgn0259714", "EGF_Stimulus": "1.44"}, {"ID": "FBgn0083951", "EGF_Stimulus": "-0.55"}, {"ID": "FBgn0015025", "EGF_Stimulus": "-0.86"}, {"ID": "FBgn0034670", "EGF_Stimulus": "0.27"}, {"ID": "FBgn0086384", "EGF_Stimulus": "1.22"}, {"ID": "FBgn0037467", "EGF_Stimulus": "-0.19"}, {"ID": "FBgn0004914", "EGF_Stimulus": "1.69"}, {"ID": "FBgn0021814", "EGF_Stimulus": "-1.33"}, {"ID": "FBgn0053513", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0044048", "EGF_Stimulus": "0.23"}, {"ID": "FBgn0004133", "EGF_Stimulus": "1.1"}, {"ID": "FBgn0003300", "EGF_Stimulus": "-1.05"}, {"ID": "FBgn0050101", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0032549", "EGF_Stimulus": "1.38"}, {"ID": "FBgn0052529", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0035917", "EGF_Stimulus": "1.17"}, {"ID": "FBgn0039809", "EGF_Stimulus": "-0.55"}, {"ID": "FBgn0039645", "EGF_Stimulus": "-2"}, {"ID": "FBgn0024891", "EGF_Stimulus": "-0.83"}, {"ID": "FBgn0037020", "EGF_Stimulus": "-0.09"}, {"ID": "FBgn0030524", "EGF_Stimulus": "-0.88"}, {"ID": "FBgn0036046", "EGF_Stimulus": "2"}, {"ID": "FBgn0039719", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0031449", "EGF_Stimulus": "-0.73"}, {"ID": "FBgn0036915", "EGF_Stimulus": "2.02"}, {"ID": "FBgn0039006", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0039656", "EGF_Stimulus": "2.06"}, {"ID": "FBgn0011276", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0026084", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0002629", "EGF_Stimulus": "1.27"}, {"ID": "FBgn0034103", "EGF_Stimulus": "-0.7"}, {"ID": "FBgn0033578", "EGF_Stimulus": "1.25"}, {"ID": "FBgn0052532", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0033863", "EGF_Stimulus": "0.26"}, {"ID": "FBgn0031174", "EGF_Stimulus": "-0.79"}, {"ID": "FBgn0033507", "EGF_Stimulus": "-1.95"}, {"ID": "FBgn0000140", "EGF_Stimulus": "-0.55"}, {"ID": "FBgn0041249", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0015621", "EGF_Stimulus": "-0.91"}, {"ID": "FBgn0034237", "EGF_Stimulus": "-3.6"}, {"ID": "FBgn0032512", "EGF_Stimulus": "-1.26"}, {"ID": "FBgn0027584", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0003651", "EGF_Stimulus": "1.2"}, {"ID": "FBgn0037617", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0052476", "EGF_Stimulus": "-0.69"}, {"ID": "FBgn0052023", "EGF_Stimulus": "-0.34"}, {"ID": "FBgn0025378", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0035294", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0026378", "EGF_Stimulus": "-0.99"}, {"ID": "FBgn0039638", "EGF_Stimulus": "-0.56"}, {"ID": "FBgn0022987", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0041624", "EGF_Stimulus": "-0.39"}, {"ID": "FBgn0034957", "EGF_Stimulus": "-1.11"}, {"ID": "FBgn0035421", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0030566", "EGF_Stimulus": "-0.95"}, {"ID": "FBgn0050385", "EGF_Stimulus": "-0.96"}, {"ID": "FBgn0028476", "EGF_Stimulus": "-0.22"}, {"ID": "FBgn0039790", "EGF_Stimulus": "-1.13"}, {"ID": "FBgn0036545", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0027617", "EGF_Stimulus": "1.51"}, {"ID": "FBgn0036729", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0034636", "EGF_Stimulus": "0.18"}, {"ID": "FBgn0034645", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0036868", "EGF_Stimulus": "-0.48"}, {"ID": "FBgn0029763", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0037432", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0027526", "EGF_Stimulus": "-0.69"}, {"ID": "FBgn0030025", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0038247", "EGF_Stimulus": "0.21"}, {"ID": "FBgn0036817", "EGF_Stimulus": "1.74"}, {"ID": "FBgn0035865", "EGF_Stimulus": "1.01"}, {"ID": "FBgn0039754", "EGF_Stimulus": "-0.91"}, {"ID": "FBgn0051088", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0035164", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0034141", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0034172", "EGF_Stimulus": "-1.13"}, {"ID": "FBgn0032476", "EGF_Stimulus": "0.11"}, {"ID": "FBgn0025827", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0034442", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0050394", "EGF_Stimulus": "1.05"}, {"ID": "FBgn0026396", "EGF_Stimulus": "-0.13"}, {"ID": "FBgn0034909", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0010786", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0037162", "EGF_Stimulus": "1.22"}, {"ID": "FBgn0061492", "EGF_Stimulus": "-0.83"}, {"ID": "FBgn0034664", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0030457", "EGF_Stimulus": "-0.64"}, {"ID": "FBgn0000182", "EGF_Stimulus": "-0.77"}, {"ID": "FBgn0030983", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0030556", "EGF_Stimulus": "-0.61"}, {"ID": "FBgn0050018", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0039029", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0031858", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0027603", "EGF_Stimulus": "-1.77"}, {"ID": "FBgn0033051", "EGF_Stimulus": "-0.39"}, {"ID": "FBgn0030512", "EGF_Stimulus": "-0.84"}, {"ID": "FBgn0039300", "EGF_Stimulus": "-2.67"}, {"ID": "FBgn0052202", "EGF_Stimulus": "-2.22"}, {"ID": "FBgn0031820", "EGF_Stimulus": "0.22"}, {"ID": "FBgn0040658", "EGF_Stimulus": "-1.77"}, {"ID": "FBgn0034858", "EGF_Stimulus": "-1.16"}, {"ID": "FBgn0026196", "EGF_Stimulus": "-1.32"}, {"ID": "FBgn0051673", "EGF_Stimulus": "-0.75"}, {"ID": "FBgn0035359", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0046301", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0034774", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0033160", "EGF_Stimulus": "-0.86"}, {"ID": "FBgn0037517", "EGF_Stimulus": "-0.76"}, {"ID": "FBgn0041233", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0030437", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0041723", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0031037", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0034869", "EGF_Stimulus": "1.22"}, {"ID": "FBgn0033516", "EGF_Stimulus": "-0.23"}, {"ID": "FBgn0261787", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0000547", "EGF_Stimulus": "1.32"}, {"ID": "FBgn0024188", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0036298", "EGF_Stimulus": "-0.72"}, {"ID": "FBgn0040906", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0033294", "EGF_Stimulus": "-0.91"}, {"ID": "FBgn0036938", "EGF_Stimulus": "-0.94"}, {"ID": "FBgn0035949", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0020617", "EGF_Stimulus": "-0.9"}, {"ID": "FBgn0037454", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0037174", "EGF_Stimulus": "-1.17"}, {"ID": "FBgn0041096", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0261363", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0003034", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0035976", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0030900", "EGF_Stimulus": "1.52"}, {"ID": "FBgn0041164", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0034086", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0028494", "EGF_Stimulus": "1.19"}, {"ID": "FBgn0004556", "EGF_Stimulus": "0.94"}, {"ID": "FBgn0051776", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0030880", "EGF_Stimulus": "-0.54"}, {"ID": "FBgn0033312", "EGF_Stimulus": "-0.55"}, {"ID": "FBgn0034837", "EGF_Stimulus": "0.27"}, {"ID": "FBgn0038829", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0015320", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0036831", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0053099", "EGF_Stimulus": "-0.16"}, {"ID": "FBgn0036416", "EGF_Stimulus": "-0.39"}, {"ID": "FBgn0035737", "EGF_Stimulus": "-0.23"}, {"ID": "FBgn0026316", "EGF_Stimulus": "1.05"}, {"ID": "FBgn0261873", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0029715", "EGF_Stimulus": "1.27"}, {"ID": "FBgn0050493", "EGF_Stimulus": "1.58"}, {"ID": "FBgn0028704", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0031143", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0034720", "EGF_Stimulus": "-0.63"}, {"ID": "FBgn0035519", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0003701", "EGF_Stimulus": "-2.66"}, {"ID": "FBgn0031317", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0030788", "EGF_Stimulus": "1.51"}, {"ID": "FBgn0039200", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0033214", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0015393", "EGF_Stimulus": "-4.05"}, {"ID": "FBgn0030215", "EGF_Stimulus": "0.27"}, {"ID": "FBgn0022069", "EGF_Stimulus": "-2.58"}, {"ID": "FBgn0029113", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0032341", "EGF_Stimulus": "-0.69"}, {"ID": "FBgn0031090", "EGF_Stimulus": "-1.62"}, {"ID": "FBgn0037766", "EGF_Stimulus": "1.27"}, {"ID": "FBgn0039114", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0032752", "EGF_Stimulus": "-1.08"}, {"ID": "FBgn0034725", "EGF_Stimulus": "1.03"}, {"ID": "FBgn0040253", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0033031", "EGF_Stimulus": "-0.94"}, {"ID": "FBgn0028893", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0000492", "EGF_Stimulus": "-4.23"}, {"ID": "FBgn0031021", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0085425", "EGF_Stimulus": "-2.59"}, {"ID": "FBgn0025393", "EGF_Stimulus": "2.15"}, {"ID": "FBgn0033918", "EGF_Stimulus": "1.32"}, {"ID": "FBgn0037352", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0028419", "EGF_Stimulus": "1.69"}, {"ID": "FBgn0036153", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0035050", "EGF_Stimulus": "1.2"}, {"ID": "FBgn0035608", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0028688", "EGF_Stimulus": "-2.78"}, {"ID": "FBgn0040801", "EGF_Stimulus": "0.3"}, {"ID": "FBgn0033554", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0050288", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0033155", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0035848", "EGF_Stimulus": "-1.96"}, {"ID": "FBgn0001148", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0047133", "EGF_Stimulus": "-1.76"}, {"ID": "FBgn0037926", "EGF_Stimulus": "1.93"}, {"ID": "FBgn0004430", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0027843", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0033203", "EGF_Stimulus": "-1.16"}, {"ID": "FBgn0032873", "EGF_Stimulus": "-0.85"}, {"ID": "FBgn0038504", "EGF_Stimulus": "-2.01"}, {"ID": "FBgn0038353", "EGF_Stimulus": "-0.43"}, {"ID": "FBgn0036684", "EGF_Stimulus": "-1.2"}, {"ID": "FBgn0033484", "EGF_Stimulus": "-0.12"}, {"ID": "FBgn0031478", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0053139", "EGF_Stimulus": "1.55"}, {"ID": "FBgn0250843", "EGF_Stimulus": "-2.02"}, {"ID": "FBgn0085443", "EGF_Stimulus": "-1.04"}, {"ID": "FBgn0053200", "EGF_Stimulus": "1.28"}, {"ID": "FBgn0085395", "EGF_Stimulus": "-1.16"}, {"ID": "FBgn0039061", "EGF_Stimulus": "-0.79"}, {"ID": "FBgn0035691", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0039015", "EGF_Stimulus": "0.26"}, {"ID": "FBgn0024273", "EGF_Stimulus": "0.21"}, {"ID": "FBgn0034979", "EGF_Stimulus": "1.03"}, {"ID": "FBgn0037994", "EGF_Stimulus": "1.18"}, {"ID": "FBgn0032824", "EGF_Stimulus": "-0.12"}, {"ID": "FBgn0032789", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0039749", "EGF_Stimulus": "-1.07"}, {"ID": "FBgn0030141", "EGF_Stimulus": "1.57"}, {"ID": "FBgn0051633", "EGF_Stimulus": "-1.24"}, {"ID": "FBgn0016054", "EGF_Stimulus": "-0.7"}, {"ID": "FBgn0020641", "EGF_Stimulus": "-0.92"}, {"ID": "FBgn0039336", "EGF_Stimulus": "1.19"}, {"ID": "FBgn0069938", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0026630", "EGF_Stimulus": "0.25"}, {"ID": "FBgn0261808", "EGF_Stimulus": "1.33"}, {"ID": "FBgn0035594", "EGF_Stimulus": "-0.32"}, {"ID": "FBgn0032246", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0035789", "EGF_Stimulus": "0.94"}, {"ID": "FBgn0050356", "EGF_Stimulus": "-0.81"}, {"ID": "FBgn0003415", "EGF_Stimulus": "3.18"}, {"ID": "FBgn0032713", "EGF_Stimulus": "-0.76"}, {"ID": "FBgn0051183", "EGF_Stimulus": "1.59"}, {"ID": "FBgn0086655", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0040467", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0038795", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0034093", "EGF_Stimulus": "-0.36"}, {"ID": "FBgn0051220", "EGF_Stimulus": "-0.74"}, {"ID": "FBgn0031135", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0086253", "EGF_Stimulus": "0.23"}, {"ID": "FBgn0259214", "EGF_Stimulus": "-1.99"}, {"ID": "FBgn0259704", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0027343", "EGF_Stimulus": "-0.57"}, {"ID": "FBgn0036529", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0035138", "EGF_Stimulus": "1.29"}, {"ID": "FBgn0026722", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0033038", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0010225", "EGF_Stimulus": "2.99"}, {"ID": "FBgn0029725", "EGF_Stimulus": "-1.87"}, {"ID": "FBgn0030307", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0013563", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0037708", "EGF_Stimulus": "-2.69"}, {"ID": "FBgn0054045", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0016675", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0038281", "EGF_Stimulus": "-1.78"}, {"ID": "FBgn0033734", "EGF_Stimulus": "1.23"}, {"ID": "FBgn0031537", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0040064", "EGF_Stimulus": "1.02"}, {"ID": "FBgn0031883", "EGF_Stimulus": "1.6"}, {"ID": "FBgn0261802", "EGF_Stimulus": "-0.99"}, {"ID": "FBgn0037481", "EGF_Stimulus": "0.19"}, {"ID": "FBgn0036483", "EGF_Stimulus": "-0.19"}, {"ID": "FBgn0013755", "EGF_Stimulus": "1.14"}, {"ID": "FBgn0032635", "EGF_Stimulus": "-1.66"}, {"ID": "FBgn0031323", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0040339", "EGF_Stimulus": "1.68"}, {"ID": "FBgn0034479", "EGF_Stimulus": "0.15"}, {"ID": "FBgn0053329", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0038575", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0027552", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0050456", "EGF_Stimulus": "1.32"}, {"ID": "FBgn0035627", "EGF_Stimulus": "-2.14"}, {"ID": "FBgn0259977", "EGF_Stimulus": "-0.95"}, {"ID": "FBgn0046880", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0261860", "EGF_Stimulus": "-0.79"}, {"ID": "FBgn0000320", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0035857", "EGF_Stimulus": "1.62"}, {"ID": "FBgn0038839", "EGF_Stimulus": "-0.64"}, {"ID": "FBgn0029501", "EGF_Stimulus": "1.29"}, {"ID": "FBgn0039288", "EGF_Stimulus": "-0.54"}, {"ID": "FBgn0029508", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0031424", "EGF_Stimulus": "-1.48"}, {"ID": "FBgn0004197", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0038126", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0033686", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0037619", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0026238", "EGF_Stimulus": "-2.59"}, {"ID": "FBgn0043575", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0038197", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0053556", "EGF_Stimulus": "-0.73"}, {"ID": "FBgn0050103", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0037893", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0085277", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0001324", "EGF_Stimulus": "2.03"}, {"ID": "FBgn0051231", "EGF_Stimulus": "1.54"}, {"ID": "FBgn0011754", "EGF_Stimulus": "-0.92"}, {"ID": "FBgn0002466", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0033067", "EGF_Stimulus": "-0.19"}, {"ID": "FBgn0034504", "EGF_Stimulus": "-1.15"}, {"ID": "FBgn0032275", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0033584", "EGF_Stimulus": "0.18"}, {"ID": "FBgn0259193", "EGF_Stimulus": "-0.98"}, {"ID": "FBgn0029881", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0250823", "EGF_Stimulus": "1.36"}, {"ID": "FBgn0038676", "EGF_Stimulus": "0.3"}, {"ID": "FBgn0035906", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0039086", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0030509", "EGF_Stimulus": "-0.3"}, {"ID": "FBgn0037102", "EGF_Stimulus": "0.15"}, {"ID": "FBgn0001180", "EGF_Stimulus": "-0.25"}, {"ID": "FBgn0000404", "EGF_Stimulus": "-2.87"}, {"ID": "FBgn0052105", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0050467", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0032536", "EGF_Stimulus": "-0.92"}, {"ID": "FBgn0051698", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0020388", "EGF_Stimulus": "-0.75"}, {"ID": "FBgn0031247", "EGF_Stimulus": "-1.14"}, {"ID": "FBgn0039183", "EGF_Stimulus": "-2.22"}, {"ID": "FBgn0037877", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0000500", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0033872", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0001174", "EGF_Stimulus": "0.27"}, {"ID": "FBgn0039654", "EGF_Stimulus": "-2.15"}, {"ID": "FBgn0032553", "EGF_Stimulus": "2.22"}, {"ID": "FBgn0034568", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0054056", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0032447", "EGF_Stimulus": "-1.08"}, {"ID": "FBgn0025724", "EGF_Stimulus": "-3.86"}, {"ID": "FBgn0032085", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0041607", "EGF_Stimulus": "0.96"}, {"ID": "FBgn0031861", "EGF_Stimulus": "1.51"}, {"ID": "FBgn0051556", "EGF_Stimulus": "3.12"}, {"ID": "FBgn0029736", "EGF_Stimulus": "-0.69"}, {"ID": "FBgn0004859", "EGF_Stimulus": "0.27"}, {"ID": "FBgn0029526", "EGF_Stimulus": "1.55"}, {"ID": "FBgn0039240", "EGF_Stimulus": "1.76"}, {"ID": "FBgn0028519", "EGF_Stimulus": "-2.45"}, {"ID": "FBgn0040375", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0037931", "EGF_Stimulus": "2"}, {"ID": "FBgn0033186", "EGF_Stimulus": "-1.29"}, {"ID": "FBgn0034175", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0005619", "EGF_Stimulus": "-1.21"}, {"ID": "FBgn0011836", "EGF_Stimulus": "1.22"}, {"ID": "FBgn0033028", "EGF_Stimulus": "-0.75"}, {"ID": "FBgn0052986", "EGF_Stimulus": "1.59"}, {"ID": "FBgn0037493", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0031452", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0261238", "EGF_Stimulus": "-0.07"}, {"ID": "FBgn0050095", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0034821", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0034580", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0040030", "EGF_Stimulus": "2.48"}, {"ID": "FBgn0039626", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0035452", "EGF_Stimulus": "0.03"}, {"ID": "FBgn0038946", "EGF_Stimulus": "1.82"}, {"ID": "FBgn0037421", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0051453", "EGF_Stimulus": "-0.18"}, {"ID": "FBgn0085325", "EGF_Stimulus": "-0.88"}, {"ID": "FBgn0000594", "EGF_Stimulus": "-0.19"}, {"ID": "FBgn0034939", "EGF_Stimulus": "-0.76"}, {"ID": "FBgn0039779", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0051213", "EGF_Stimulus": "-0.35"}, {"ID": "FBgn0037677", "EGF_Stimulus": "-1.14"}, {"ID": "FBgn0026175", "EGF_Stimulus": "-0.34"}, {"ID": "FBgn0033844", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0027082", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0033378", "EGF_Stimulus": "-0.48"}, {"ID": "FBgn0039215", "EGF_Stimulus": "1.7"}, {"ID": "FBgn0029940", "EGF_Stimulus": "0.11"}, {"ID": "FBgn0259175", "EGF_Stimulus": "1.36"}, {"ID": "FBgn0036165", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0031894", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0030858", "EGF_Stimulus": "-1.22"}, {"ID": "FBgn0000115", "EGF_Stimulus": "1.31"}, {"ID": "FBgn0030251", "EGF_Stimulus": "-0.79"}, {"ID": "FBgn0026088", "EGF_Stimulus": "1.03"}, {"ID": "FBgn0011296", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0028484", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0031129", "EGF_Stimulus": "-1.44"}, {"ID": "FBgn0038387", "EGF_Stimulus": "-0.84"}, {"ID": "FBgn0036498", "EGF_Stimulus": "0.17"}, {"ID": "FBgn0035280", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0036853", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0085293", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0259936", "EGF_Stimulus": "-1.43"}, {"ID": "FBgn0260011", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0002773", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0023215", "EGF_Stimulus": "2.45"}, {"ID": "FBgn0030588", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0034075", "EGF_Stimulus": "-1.24"}, {"ID": "FBgn0028941", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0029789", "EGF_Stimulus": "-0.63"}, {"ID": "FBgn0039780", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0011695", "EGF_Stimulus": "2.2"}, {"ID": "FBgn0010620", "EGF_Stimulus": "1.73"}, {"ID": "FBgn0038186", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0034658", "EGF_Stimulus": "-0.99"}, {"ID": "FBgn0038000", "EGF_Stimulus": "-0.78"}, {"ID": "FBgn0037578", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0039590", "EGF_Stimulus": "-1.62"}, {"ID": "FBgn0035016", "EGF_Stimulus": "1.24"}, {"ID": "FBgn0040475", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0031107", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0035526", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0035694", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0250832", "EGF_Stimulus": "-0.32"}, {"ID": "FBgn0038405", "EGF_Stimulus": "-0.2"}, {"ID": "FBgn0032803", "EGF_Stimulus": "-0.67"}, {"ID": "FBgn0036975", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0028560", "EGF_Stimulus": "-0.54"}, {"ID": "FBgn0020497", "EGF_Stimulus": "-1.64"}, {"ID": "FBgn0061198", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0039042", "EGF_Stimulus": "-0.56"}, {"ID": "FBgn0034025", "EGF_Stimulus": "-1.1"}, {"ID": "FBgn0039470", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0038151", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0052656", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0037384", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0020508", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0032964", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0022740", "EGF_Stimulus": "-1.22"}, {"ID": "FBgn0034882", "EGF_Stimulus": "0.26"}, {"ID": "FBgn0052654", "EGF_Stimulus": "-1.51"}, {"ID": "FBgn0032506", "EGF_Stimulus": "-0.6"}, {"ID": "FBgn0023537", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0037399", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0051997", "EGF_Stimulus": "-1.22"}, {"ID": "FBgn0085408", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0036583", "EGF_Stimulus": "-1.84"}, {"ID": "FBgn0052195", "EGF_Stimulus": "0.11"}, {"ID": "FBgn0026386", "EGF_Stimulus": "1.03"}, {"ID": "FBgn0259143", "EGF_Stimulus": "1.11"}, {"ID": "FBgn0037040", "EGF_Stimulus": "-0.46"}, {"ID": "FBgn0039928", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0260441", "EGF_Stimulus": "-4.78"}, {"ID": "FBgn0052119", "EGF_Stimulus": "-1.5"}, {"ID": "FBgn0039325", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0041250", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0051797", "EGF_Stimulus": "0.21"}, {"ID": "FBgn0046687", "EGF_Stimulus": "-1.59"}, {"ID": "FBgn0034545", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0035500", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0037571", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0032218", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0001087", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0260049", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0033165", "EGF_Stimulus": "-0.57"}, {"ID": "FBgn0033404", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0036836", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0034936", "EGF_Stimulus": "-0.91"}, {"ID": "FBgn0027093", "EGF_Stimulus": "-1.01"}, {"ID": "FBgn0001255", "EGF_Stimulus": "1.63"}, {"ID": "FBgn0037218", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0037778", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0039049", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0033339", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0031240", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0005695", "EGF_Stimulus": "-1.52"}, {"ID": "FBgn0038488", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0039479", "EGF_Stimulus": "0.96"}, {"ID": "FBgn0086357", "EGF_Stimulus": "-1.78"}, {"ID": "FBgn0259237", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0036126", "EGF_Stimulus": "1.65"}, {"ID": "FBgn0025519", "EGF_Stimulus": "-1.46"}, {"ID": "FBgn0039489", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0038038", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0038473", "EGF_Stimulus": "1.45"}, {"ID": "FBgn0030743", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0051849", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0040794", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0261610", "EGF_Stimulus": "-1.87"}, {"ID": "FBgn0000057", "EGF_Stimulus": "1.14"}, {"ID": "FBgn0004374", "EGF_Stimulus": "-0.8"}, {"ID": "FBgn0052639", "EGF_Stimulus": "0.23"}, {"ID": "FBgn0052570", "EGF_Stimulus": "-1.49"}, {"ID": "FBgn0033981", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0029807", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0034032", "EGF_Stimulus": "1.01"}, {"ID": "FBgn0028523", "EGF_Stimulus": "-0.21"}, {"ID": "FBgn0037012", "EGF_Stimulus": "-1.82"}, {"ID": "FBgn0025864", "EGF_Stimulus": "-1.78"}, {"ID": "FBgn0035551", "EGF_Stimulus": "1.53"}, {"ID": "FBgn0035332", "EGF_Stimulus": "-0.78"}, {"ID": "FBgn0034718", "EGF_Stimulus": "-2.07"}, {"ID": "FBgn0030239", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0016036", "EGF_Stimulus": "0.22"}, {"ID": "FBgn0037978", "EGF_Stimulus": "-0.92"}, {"ID": "FBgn0052461", "EGF_Stimulus": "-1.02"}, {"ID": "FBgn0030228", "EGF_Stimulus": "-1.44"}, {"ID": "FBgn0030483", "EGF_Stimulus": "-1.22"}, {"ID": "FBgn0034422", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0036875", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0015805", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0031364", "EGF_Stimulus": "-1.13"}, {"ID": "FBgn0028692", "EGF_Stimulus": "-3.22"}, {"ID": "FBgn0030521", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0034503", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0031520", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0031662", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0037963", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0039504", "EGF_Stimulus": "1.77"}, {"ID": "FBgn0003654", "EGF_Stimulus": "1.06"}, {"ID": "FBgn0037251", "EGF_Stimulus": "1.29"}, {"ID": "FBgn0033767", "EGF_Stimulus": "-1.48"}, {"ID": "FBgn0036986", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0002968", "EGF_Stimulus": "-0.98"}, {"ID": "FBgn0001197", "EGF_Stimulus": "-2.45"}, {"ID": "FBgn0003353", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0030187", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0010709", "EGF_Stimulus": "-1.8"}, {"ID": "FBgn0050184", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0030417", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0086785", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0038055", "EGF_Stimulus": "1.02"}, {"ID": "FBgn0051546", "EGF_Stimulus": "-0.9"}, {"ID": "FBgn0036024", "EGF_Stimulus": "-1.09"}, {"ID": "FBgn0036563", "EGF_Stimulus": "-0.67"}, {"ID": "FBgn0029836", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0026751", "EGF_Stimulus": "-0.54"}, {"ID": "FBgn0039868", "EGF_Stimulus": "-1.61"}, {"ID": "FBgn0022027", "EGF_Stimulus": "0.13"}, {"ID": "FBgn0032123", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0029989", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0036844", "EGF_Stimulus": "-1.14"}, {"ID": "FBgn0036678", "EGF_Stimulus": "-0.29"}, {"ID": "FBgn0261524", "EGF_Stimulus": "1.42"}, {"ID": "FBgn0015838", "EGF_Stimulus": "-0.7"}, {"ID": "FBgn0036826", "EGF_Stimulus": "0.23"}, {"ID": "FBgn0030196", "EGF_Stimulus": "-1.05"}, {"ID": "FBgn0004959", "EGF_Stimulus": "-1.4"}, {"ID": "FBgn0039421", "EGF_Stimulus": "2.51"}, {"ID": "FBgn0039437", "EGF_Stimulus": "-1.36"}, {"ID": "FBgn0030343", "EGF_Stimulus": "1.22"}, {"ID": "FBgn0033778", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0034068", "EGF_Stimulus": "-0.74"}, {"ID": "FBgn0033129", "EGF_Stimulus": "-0.22"}, {"ID": "FBgn0038360", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0033308", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0034528", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0039125", "EGF_Stimulus": "-0.96"}, {"ID": "FBgn0010333", "EGF_Stimulus": "-2.49"}, {"ID": "FBgn0260006", "EGF_Stimulus": "-1.54"}, {"ID": "FBgn0086532", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0003116", "EGF_Stimulus": "-0.98"}, {"ID": "FBgn0029975", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0027598", "EGF_Stimulus": "-1.21"}, {"ID": "FBgn0036080", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0261602", "EGF_Stimulus": "-3.99"}, {"ID": "FBgn0034327", "EGF_Stimulus": "1.17"}, {"ID": "FBgn0010412", "EGF_Stimulus": "-4.12"}, {"ID": "FBgn0030623", "EGF_Stimulus": "-1.48"}, {"ID": "FBgn0038300", "EGF_Stimulus": "-0.3"}, {"ID": "FBgn0037716", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0039106", "EGF_Stimulus": "-0.77"}, {"ID": "FBgn0029949", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0052350", "EGF_Stimulus": "-0.92"}, {"ID": "FBgn0023097", "EGF_Stimulus": "1.14"}, {"ID": "FBgn0037165", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0041342", "EGF_Stimulus": "-1.1"}, {"ID": "FBgn0033794", "EGF_Stimulus": "-0.59"}, {"ID": "FBgn0038765", "EGF_Stimulus": "-0.63"}, {"ID": "FBgn0040529", "EGF_Stimulus": "0.23"}, {"ID": "FBgn0031282", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0052437", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0030798", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0039158", "EGF_Stimulus": "1.62"}, {"ID": "FBgn0034683", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0038324", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0024944", "EGF_Stimulus": "-1.7"}, {"ID": "FBgn0019644", "EGF_Stimulus": "-4.02"}, {"ID": "FBgn0039833", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0038449", "EGF_Stimulus": "0.09"}, {"ID": "FBgn0030997", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0003285", "EGF_Stimulus": "-0.97"}, {"ID": "FBgn0032702", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0034942", "EGF_Stimulus": "1.12"}, {"ID": "FBgn0005596", "EGF_Stimulus": "-1.45"}, {"ID": "FBgn0037734", "EGF_Stimulus": "-0.48"}, {"ID": "FBgn0052039", "EGF_Stimulus": "-0.52"}, {"ID": "FBgn0038540", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0026593", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0053123", "EGF_Stimulus": "-0.54"}, {"ID": "FBgn0032900", "EGF_Stimulus": "-1.3"}, {"ID": "FBgn0013675", "EGF_Stimulus": "0.23"}, {"ID": "FBgn0028567", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0035686", "EGF_Stimulus": "0.94"}, {"ID": "FBgn0028410", "EGF_Stimulus": "-0.98"}, {"ID": "FBgn0035965", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0001987", "EGF_Stimulus": "-0.29"}, {"ID": "FBgn0036396", "EGF_Stimulus": "-1.08"}, {"ID": "FBgn0003511", "EGF_Stimulus": "-0.82"}, {"ID": "FBgn0053542", "EGF_Stimulus": "1.61"}, {"ID": "FBgn0039065", "EGF_Stimulus": "-1.07"}, {"ID": "FBgn0050156", "EGF_Stimulus": "-1.07"}, {"ID": "FBgn0030595", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0039752", "EGF_Stimulus": "0.23"}, {"ID": "FBgn0037395", "EGF_Stimulus": "-0.46"}, {"ID": "FBgn0051515", "EGF_Stimulus": "4.44"}, {"ID": "FBgn0038097", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0031201", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0038818", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0034426", "EGF_Stimulus": "-0.11"}, {"ID": "FBgn0032744", "EGF_Stimulus": "-0.95"}, {"ID": "FBgn0035021", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0037502", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0058245", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0039269", "EGF_Stimulus": "0.27"}, {"ID": "FBgn0260946", "EGF_Stimulus": "-1.49"}, {"ID": "FBgn0012036", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0038973", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0020910", "EGF_Stimulus": "-2.79"}, {"ID": "FBgn0005649", "EGF_Stimulus": "-1.34"}, {"ID": "FBgn0040383", "EGF_Stimulus": "0.17"}, {"ID": "FBgn0039449", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0036710", "EGF_Stimulus": "-2.36"}, {"ID": "FBgn0035060", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0039151", "EGF_Stimulus": "-0.4"}, {"ID": "FBgn0034968", "EGF_Stimulus": "-3.54"}, {"ID": "FBgn0033624", "EGF_Stimulus": "1.21"}, {"ID": "FBgn0031774", "EGF_Stimulus": "-0.74"}, {"ID": "FBgn0020908", "EGF_Stimulus": "1.4"}, {"ID": "FBgn0031008", "EGF_Stimulus": "-1.14"}, {"ID": "FBgn0036309", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0031913", "EGF_Stimulus": "-0.62"}, {"ID": "FBgn0035316", "EGF_Stimulus": "-0.65"}, {"ID": "FBgn0036493", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0032857", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0037323", "EGF_Stimulus": "-0.3"}, {"ID": "FBgn0030410", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0031235", "EGF_Stimulus": "0.23"}, {"ID": "FBgn0035064", "EGF_Stimulus": "-1.09"}, {"ID": "FBgn0031150", "EGF_Stimulus": "-0.95"}, {"ID": "FBgn0034797", "EGF_Stimulus": "-0.65"}, {"ID": "FBgn0030079", "EGF_Stimulus": "1.41"}, {"ID": "FBgn0032658", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0030791", "EGF_Stimulus": "-0.67"}, {"ID": "FBgn0000108", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0261584", "EGF_Stimulus": "-0.12"}, {"ID": "FBgn0035146", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0034110", "EGF_Stimulus": "-0.48"}, {"ID": "FBgn0032394", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0039094", "EGF_Stimulus": "-0.64"}, {"ID": "FBgn0039192", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0010280", "EGF_Stimulus": "-1.26"}, {"ID": "FBgn0025678", "EGF_Stimulus": "-1.26"}, {"ID": "FBgn0025381", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0027570", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0085413", "EGF_Stimulus": "-0.6"}, {"ID": "FBgn0030263", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0031066", "EGF_Stimulus": "-1.28"}, {"ID": "FBgn0051641", "EGF_Stimulus": "-0.66"}, {"ID": "FBgn0002789", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0035256", "EGF_Stimulus": "0.96"}, {"ID": "FBgn0013348", "EGF_Stimulus": "1.34"}, {"ID": "FBgn0039663", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0004839", "EGF_Stimulus": "-0.17"}, {"ID": "FBgn0058441", "EGF_Stimulus": "1.56"}, {"ID": "FBgn0013725", "EGF_Stimulus": "-1.79"}, {"ID": "FBgn0050360", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0003867", "EGF_Stimulus": "-1.34"}, {"ID": "FBgn0052277", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0053346", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0013809", "EGF_Stimulus": "1.22"}, {"ID": "FBgn0036821", "EGF_Stimulus": "-1.34"}, {"ID": "FBgn0030607", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0001220", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0036570", "EGF_Stimulus": "-0.93"}, {"ID": "FBgn0032079", "EGF_Stimulus": "-0.47"}, {"ID": "FBgn0026869", "EGF_Stimulus": "-0.35"}, {"ID": "FBgn0032860", "EGF_Stimulus": "-1.36"}, {"ID": "FBgn0038090", "EGF_Stimulus": "1.15"}, {"ID": "FBgn0037126", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0036109", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0053993", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0036655", "EGF_Stimulus": "1.56"}, {"ID": "FBgn0051296", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0038549", "EGF_Stimulus": "-0.17"}, {"ID": "FBgn0035870", "EGF_Stimulus": "0.21"}, {"ID": "FBgn0028985", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0030136", "EGF_Stimulus": "-2.21"}, {"ID": "FBgn0037445", "EGF_Stimulus": "-1.42"}, {"ID": "FBgn0029672", "EGF_Stimulus": "-0.64"}, {"ID": "FBgn0026433", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0034402", "EGF_Stimulus": "1.12"}, {"ID": "FBgn0010453", "EGF_Stimulus": "1.38"}, {"ID": "FBgn0015038", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0031006", "EGF_Stimulus": "-0.65"}, {"ID": "FBgn0026326", "EGF_Stimulus": "-0.86"}, {"ID": "FBgn0030576", "EGF_Stimulus": "-0.22"}, {"ID": "FBgn0035244", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0032147", "EGF_Stimulus": "-0.79"}, {"ID": "FBgn0053333", "EGF_Stimulus": "-1.12"}, {"ID": "FBgn0037883", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0031646", "EGF_Stimulus": "-0.29"}, {"ID": "FBgn0030377", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0029992", "EGF_Stimulus": "-1.61"}, {"ID": "FBgn0042710", "EGF_Stimulus": "-2.36"}, {"ID": "FBgn0031866", "EGF_Stimulus": "0.23"}, {"ID": "FBgn0003090", "EGF_Stimulus": "3.2"}, {"ID": "FBgn0051249", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0052702", "EGF_Stimulus": "1.52"}, {"ID": "FBgn0036629", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0033933", "EGF_Stimulus": "-0.55"}, {"ID": "FBgn0033900", "EGF_Stimulus": "-0.65"}, {"ID": "FBgn0086448", "EGF_Stimulus": "-1.41"}, {"ID": "FBgn0010768", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0024996", "EGF_Stimulus": "-0.12"}, {"ID": "FBgn0038179", "EGF_Stimulus": "1.12"}, {"ID": "FBgn0032924", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0001990", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0001341", "EGF_Stimulus": "1.21"}, {"ID": "FBgn0052163", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0035790", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0035955", "EGF_Stimulus": "0.22"}, {"ID": "FBgn0033802", "EGF_Stimulus": "-0.72"}, {"ID": "FBgn0036255", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0031518", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0038523", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0051287", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0051778", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0027512", "EGF_Stimulus": "-1.82"}, {"ID": "FBgn0035404", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0037773", "EGF_Stimulus": "-1.29"}, {"ID": "FBgn0012051", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0033208", "EGF_Stimulus": "-0.33"}, {"ID": "FBgn0046297", "EGF_Stimulus": "-0.94"}, {"ID": "FBgn0036336", "EGF_Stimulus": "0.16"}, {"ID": "FBgn0032034", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0039165", "EGF_Stimulus": "-0.89"}, {"ID": "FBgn0050486", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0028400", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0035405", "EGF_Stimulus": "-0.56"}, {"ID": "FBgn0031082", "EGF_Stimulus": "-0.21"}, {"ID": "FBgn0036008", "EGF_Stimulus": "0.94"}, {"ID": "FBgn0031471", "EGF_Stimulus": "-0.83"}, {"ID": "FBgn0031117", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0029131", "EGF_Stimulus": "-0.65"}, {"ID": "FBgn0030703", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0038349", "EGF_Stimulus": "-0.18"}, {"ID": "FBgn0015380", "EGF_Stimulus": "1.21"}, {"ID": "FBgn0053978", "EGF_Stimulus": "-2.14"}, {"ID": "FBgn0004171", "EGF_Stimulus": "1.26"}, {"ID": "FBgn0026190", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0035879", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0032850", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0052099", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0031959", "EGF_Stimulus": "-1.06"}, {"ID": "FBgn0038208", "EGF_Stimulus": "1.12"}, {"ID": "FBgn0034382", "EGF_Stimulus": "-0.11"}, {"ID": "FBgn0013988", "EGF_Stimulus": "1.57"}, {"ID": "FBgn0039744", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0004779", "EGF_Stimulus": "-0.91"}, {"ID": "FBgn0034624", "EGF_Stimulus": "-0.33"}, {"ID": "FBgn0040814", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0050159", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0031148", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0039016", "EGF_Stimulus": "1.35"}, {"ID": "FBgn0003312", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0004898", "EGF_Stimulus": "1.55"}, {"ID": "FBgn0038106", "EGF_Stimulus": "-0.33"}, {"ID": "FBgn0039480", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0004174", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0000061", "EGF_Stimulus": "1.14"}, {"ID": "FBgn0031713", "EGF_Stimulus": "0.12"}, {"ID": "FBgn0031265", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0052243", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0010385", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0051989", "EGF_Stimulus": "1.03"}, {"ID": "FBgn0040508", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0051005", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0039599", "EGF_Stimulus": "-1.05"}, {"ID": "FBgn0085296", "EGF_Stimulus": "-0.25"}, {"ID": "FBgn0003278", "EGF_Stimulus": "-0.11"}, {"ID": "FBgn0036232", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0004462", "EGF_Stimulus": "1.52"}, {"ID": "FBgn0032142", "EGF_Stimulus": "0.2"}, {"ID": "FBgn0038034", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0028514", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0035308", "EGF_Stimulus": "-0.55"}, {"ID": "FBgn0039642", "EGF_Stimulus": "2.06"}, {"ID": "FBgn0053306", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0053061", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0033697", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0020510", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0025632", "EGF_Stimulus": "-0.62"}, {"ID": "FBgn0052187", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0032329", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0039038", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0039764", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0032233", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0052364", "EGF_Stimulus": "-0.76"}, {"ID": "FBgn0011581", "EGF_Stimulus": "-0.88"}, {"ID": "FBgn0030766", "EGF_Stimulus": "0.2"}, {"ID": "FBgn0010383", "EGF_Stimulus": "0.09"}, {"ID": "FBgn0032194", "EGF_Stimulus": "1.37"}, {"ID": "FBgn0036847", "EGF_Stimulus": "-0.83"}, {"ID": "FBgn0036369", "EGF_Stimulus": "-0.4"}, {"ID": "FBgn0030066", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0050291", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0040601", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0086681", "EGF_Stimulus": "1.3"}, {"ID": "FBgn0034329", "EGF_Stimulus": "-0.9"}, {"ID": "FBgn0026077", "EGF_Stimulus": "-0.31"}, {"ID": "FBgn0030367", "EGF_Stimulus": "0.11"}, {"ID": "FBgn0036741", "EGF_Stimulus": "-0.57"}, {"ID": "FBgn0028533", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0037916", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0052281", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0030817", "EGF_Stimulus": "1.13"}, {"ID": "FBgn0025612", "EGF_Stimulus": "-0.3"}, {"ID": "FBgn0086899", "EGF_Stimulus": "-4.3"}, {"ID": "FBgn0041240", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0036595", "EGF_Stimulus": "-0.54"}, {"ID": "FBgn0028903", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0030336", "EGF_Stimulus": "-0.62"}, {"ID": "FBgn0033401", "EGF_Stimulus": "-0.36"}, {"ID": "FBgn0033720", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0051680", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0029091", "EGF_Stimulus": "1.89"}, {"ID": "FBgn0036019", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0004856", "EGF_Stimulus": "-3.38"}, {"ID": "FBgn0039223", "EGF_Stimulus": "0.1"}, {"ID": "FBgn0029968", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0035237", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0028579", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0259228", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0054015", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0052073", "EGF_Stimulus": "-0.8"}, {"ID": "FBgn0034887", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0003391", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0032499", "EGF_Stimulus": "-0.19"}, {"ID": "FBgn0051561", "EGF_Stimulus": "-1.53"}, {"ID": "FBgn0050279", "EGF_Stimulus": "-1.15"}, {"ID": "FBgn0085222", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0039031", "EGF_Stimulus": "0.18"}, {"ID": "FBgn0030323", "EGF_Stimulus": "-1.15"}, {"ID": "FBgn0033760", "EGF_Stimulus": "-0.9"}, {"ID": "FBgn0053777", "EGF_Stimulus": "0.14"}, {"ID": "FBgn0038627", "EGF_Stimulus": "0.25"}, {"ID": "FBgn0030937", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0035999", "EGF_Stimulus": "0.15"}, {"ID": "FBgn0036052", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0011666", "EGF_Stimulus": "-1.6"}, {"ID": "FBgn0031191", "EGF_Stimulus": "-1.63"}, {"ID": "FBgn0030668", "EGF_Stimulus": "-0.36"}, {"ID": "FBgn0034056", "EGF_Stimulus": "0.16"}, {"ID": "FBgn0036662", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0042180", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0067102", "EGF_Stimulus": "1.25"}, {"ID": "FBgn0033980", "EGF_Stimulus": "-0.78"}, {"ID": "FBgn0040797", "EGF_Stimulus": "-0.78"}, {"ID": "FBgn0023529", "EGF_Stimulus": "-0.48"}, {"ID": "FBgn0035957", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0030241", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0051360", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0051538", "EGF_Stimulus": "-1.04"}, {"ID": "FBgn0025643", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0031652", "EGF_Stimulus": "-0.48"}, {"ID": "FBgn0033301", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0032197", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0025641", "EGF_Stimulus": "0.15"}, {"ID": "FBgn0003978", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0031942", "EGF_Stimulus": "1.23"}, {"ID": "FBgn0002652", "EGF_Stimulus": "-0.75"}, {"ID": "FBgn0036984", "EGF_Stimulus": "0.23"}, {"ID": "FBgn0036924", "EGF_Stimulus": "-0.56"}, {"ID": "FBgn0014870", "EGF_Stimulus": "1.26"}, {"ID": "FBgn0011336", "EGF_Stimulus": "0.12"}, {"ID": "FBgn0259150", "EGF_Stimulus": "-1.2"}, {"ID": "FBgn0085786", "EGF_Stimulus": "1.05"}, {"ID": "FBgn0037714", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0038244", "EGF_Stimulus": "-1.01"}, {"ID": "FBgn0037697", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0004577", "EGF_Stimulus": "-0.56"}, {"ID": "FBgn0085449", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0038139", "EGF_Stimulus": "-0.21"}, {"ID": "FBgn0033911", "EGF_Stimulus": "1.15"}, {"ID": "FBgn0042106", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0030966", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0260874", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0034802", "EGF_Stimulus": "1.36"}, {"ID": "FBgn0051816", "EGF_Stimulus": "-0.18"}, {"ID": "FBgn0025626", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0036437", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0028738", "EGF_Stimulus": "-0.26"}, {"ID": "FBgn0038128", "EGF_Stimulus": "1.3"}, {"ID": "FBgn0024194", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0259221", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0053051", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0039561", "EGF_Stimulus": "-0.36"}, {"ID": "FBgn0261811", "EGF_Stimulus": "-0.22"}, {"ID": "FBgn0036538", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0052846", "EGF_Stimulus": "-0.35"}, {"ID": "FBgn0050277", "EGF_Stimulus": "1.09"}, {"ID": "FBgn0039577", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0037949", "EGF_Stimulus": "-1.63"}, {"ID": "FBgn0037626", "EGF_Stimulus": "-0.12"}, {"ID": "FBgn0066114", "EGF_Stimulus": "-1.45"}, {"ID": "FBgn0001967", "EGF_Stimulus": "-0.46"}, {"ID": "FBgn0243516", "EGF_Stimulus": "-1.31"}, {"ID": "FBgn0033518", "EGF_Stimulus": "-2.23"}, {"ID": "FBgn0053017", "EGF_Stimulus": "1.02"}, {"ID": "FBgn0035484", "EGF_Stimulus": "-0.03"}, {"ID": "FBgn0038376", "EGF_Stimulus": "1.01"}, {"ID": "FBgn0032798", "EGF_Stimulus": "-0.64"}, {"ID": "FBgn0033651", "EGF_Stimulus": "-1.35"}, {"ID": "FBgn0051708", "EGF_Stimulus": "-1.38"}, {"ID": "FBgn0037755", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0037846", "EGF_Stimulus": "0.2"}, {"ID": "FBgn0028552", "EGF_Stimulus": "1.5"}, {"ID": "FBgn0260632", "EGF_Stimulus": "-1.47"}, {"ID": "FBgn0032144", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0039522", "EGF_Stimulus": "-0.2"}, {"ID": "FBgn0038921", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0024491", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0031937", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0028562", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0001202", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0000808", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0032415", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0032161", "EGF_Stimulus": "-0.72"}, {"ID": "FBgn0029912", "EGF_Stimulus": "0.12"}, {"ID": "FBgn0035644", "EGF_Stimulus": "2.36"}, {"ID": "FBgn0031729", "EGF_Stimulus": "-1.91"}, {"ID": "FBgn0039735", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0033297", "EGF_Stimulus": "0.25"}, {"ID": "FBgn0040007", "EGF_Stimulus": "-3.67"}, {"ID": "FBgn0034480", "EGF_Stimulus": "0.94"}, {"ID": "FBgn0027057", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0032677", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0032481", "EGF_Stimulus": "0.3"}, {"ID": "FBgn0034711", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0004167", "EGF_Stimulus": "-1.11"}, {"ID": "FBgn0033969", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0028644", "EGF_Stimulus": "-0.16"}, {"ID": "FBgn0051781", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0003129", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0026268", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0037826", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0031512", "EGF_Stimulus": "-0.76"}, {"ID": "FBgn0035033", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0029974", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0021795", "EGF_Stimulus": "-0.34"}, {"ID": "FBgn0034045", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0039053", "EGF_Stimulus": "-1.17"}, {"ID": "FBgn0051495", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0022238", "EGF_Stimulus": "-0.78"}, {"ID": "FBgn0035872", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0039863", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0040349", "EGF_Stimulus": "-0.92"}, {"ID": "FBgn0037141", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0037802", "EGF_Stimulus": "-1.06"}, {"ID": "FBgn0259162", "EGF_Stimulus": "-0.54"}, {"ID": "FBgn0000359", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0035196", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0000451", "EGF_Stimulus": "-1.32"}, {"ID": "FBgn0025693", "EGF_Stimulus": "-1.62"}, {"ID": "FBgn0025681", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0038569", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0043455", "EGF_Stimulus": "-0.78"}, {"ID": "FBgn0046888", "EGF_Stimulus": "1.21"}, {"ID": "FBgn0033326", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0026566", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0038961", "EGF_Stimulus": "-0.85"}, {"ID": "FBgn0039002", "EGF_Stimulus": "-0.67"}, {"ID": "FBgn0035802", "EGF_Stimulus": "1.44"}, {"ID": "FBgn0035229", "EGF_Stimulus": "0.26"}, {"ID": "FBgn0004143", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0033250", "EGF_Stimulus": "1.68"}, {"ID": "FBgn0035124", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0032057", "EGF_Stimulus": "1.37"}, {"ID": "FBgn0261791", "EGF_Stimulus": "1.48"}, {"ID": "FBgn0003377", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0019650", "EGF_Stimulus": "-0.95"}, {"ID": "FBgn0039897", "EGF_Stimulus": "-0.66"}, {"ID": "FBgn0038337", "EGF_Stimulus": "-0.84"}, {"ID": "FBgn0001086", "EGF_Stimulus": "7.27"}, {"ID": "FBgn0082598", "EGF_Stimulus": "-0.7"}, {"ID": "FBgn0051206", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0039970", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0030091", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0040281", "EGF_Stimulus": "-1.2"}, {"ID": "FBgn0032231", "EGF_Stimulus": "-1"}, {"ID": "FBgn0000227", "EGF_Stimulus": "-1.25"}, {"ID": "FBgn0032535", "EGF_Stimulus": "1.41"}, {"ID": "FBgn0039936", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0034734", "EGF_Stimulus": "1.4"}, {"ID": "FBgn0032090", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0052413", "EGF_Stimulus": "-1.63"}, {"ID": "FBgn0010638", "EGF_Stimulus": "-0.88"}, {"ID": "FBgn0039307", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0021995", "EGF_Stimulus": "-0.66"}, {"ID": "FBgn0039532", "EGF_Stimulus": "-0.46"}, {"ID": "FBgn0033072", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0032452", "EGF_Stimulus": "-1.54"}, {"ID": "FBgn0259984", "EGF_Stimulus": "-1.41"}, {"ID": "FBgn0037723", "EGF_Stimulus": "-1.43"}, {"ID": "FBgn0033347", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0032371", "EGF_Stimulus": "-1.1"}, {"ID": "FBgn0035581", "EGF_Stimulus": "-1.16"}, {"ID": "FBgn0003008", "EGF_Stimulus": "-1.31"}, {"ID": "FBgn0037550", "EGF_Stimulus": "1.13"}, {"ID": "FBgn0259243", "EGF_Stimulus": "-2.93"}, {"ID": "FBgn0259685", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0260932", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0260486", "EGF_Stimulus": "1.86"}, {"ID": "FBgn0011656", "EGF_Stimulus": "1.6"}, {"ID": "FBgn0039593", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0261362", "EGF_Stimulus": "-0.62"}, {"ID": "FBgn0040392", "EGF_Stimulus": "0.25"}, {"ID": "FBgn0038145", "EGF_Stimulus": "1.41"}, {"ID": "FBgn0050007", "EGF_Stimulus": "1.27"}, {"ID": "FBgn0051510", "EGF_Stimulus": "1.23"}, {"ID": "FBgn0004406", "EGF_Stimulus": "-0.99"}, {"ID": "FBgn0039769", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0052313", "EGF_Stimulus": "-0.79"}, {"ID": "FBgn0033755", "EGF_Stimulus": "-1.37"}, {"ID": "FBgn0002525", "EGF_Stimulus": "-1.42"}, {"ID": "FBgn0036381", "EGF_Stimulus": "1.6"}, {"ID": "FBgn0032688", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0051860", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0038017", "EGF_Stimulus": "-2.47"}, {"ID": "FBgn0030407", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0051119", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0033110", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0020414", "EGF_Stimulus": "-0.11"}, {"ID": "FBgn0011259", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0001296", "EGF_Stimulus": "1.28"}, {"ID": "FBgn0036497", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0051809", "EGF_Stimulus": "-1.61"}, {"ID": "FBgn0036486", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0013433", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0037060", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0036768", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0036889", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0030915", "EGF_Stimulus": "-1.39"}, {"ID": "FBgn0032524", "EGF_Stimulus": "-1.02"}, {"ID": "FBgn0028963", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0028397", "EGF_Stimulus": "1.57"}, {"ID": "FBgn0037428", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0032236", "EGF_Stimulus": "-0.57"}, {"ID": "FBgn0037090", "EGF_Stimulus": "1.43"}, {"ID": "FBgn0035763", "EGF_Stimulus": "-2.24"}, {"ID": "FBgn0014023", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0032879", "EGF_Stimulus": "-2.78"}, {"ID": "FBgn0032643", "EGF_Stimulus": "1.37"}, {"ID": "FBgn0028569", "EGF_Stimulus": "-1.01"}, {"ID": "FBgn0035674", "EGF_Stimulus": "-0.6"}, {"ID": "FBgn0085382", "EGF_Stimulus": "-0.61"}, {"ID": "FBgn0038886", "EGF_Stimulus": "-0.84"}, {"ID": "FBgn0036620", "EGF_Stimulus": "1.01"}, {"ID": "FBgn0003969", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0004516", "EGF_Stimulus": "-1.09"}, {"ID": "FBgn0085541", "EGF_Stimulus": "-0.89"}, {"ID": "FBgn0052373", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0010909", "EGF_Stimulus": "0.07"}, {"ID": "FBgn0038892", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0030102", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0029846", "EGF_Stimulus": "-0.94"}, {"ID": "FBgn0015031", "EGF_Stimulus": "-1.04"}, {"ID": "FBgn0037911", "EGF_Stimulus": "1.23"}, {"ID": "FBgn0037645", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0037022", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0032116", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0039354", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0036010", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0035094", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0002707", "EGF_Stimulus": "-1.76"}, {"ID": "FBgn0261822", "EGF_Stimulus": "-2.38"}, {"ID": "FBgn0011481", "EGF_Stimulus": "1.06"}, {"ID": "FBgn0039250", "EGF_Stimulus": "-1.01"}, {"ID": "FBgn0061515", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0038303", "EGF_Stimulus": "-0.36"}, {"ID": "FBgn0033752", "EGF_Stimulus": "1.63"}, {"ID": "FBgn0002945", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0036947", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0031544", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0052179", "EGF_Stimulus": "1.32"}, {"ID": "FBgn0038195", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0019662", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0052230", "EGF_Stimulus": "-1.04"}, {"ID": "FBgn0054005", "EGF_Stimulus": "-0.65"}, {"ID": "FBgn0000551", "EGF_Stimulus": "1.53"}, {"ID": "FBgn0038089", "EGF_Stimulus": "1.74"}, {"ID": "FBgn0035134", "EGF_Stimulus": "-0.76"}, {"ID": "FBgn0036512", "EGF_Stimulus": "1.37"}, {"ID": "FBgn0031724", "EGF_Stimulus": "-0.81"}, {"ID": "FBgn0052161", "EGF_Stimulus": "-1.68"}, {"ID": "FBgn0051729", "EGF_Stimulus": "-2"}, {"ID": "FBgn0052343", "EGF_Stimulus": "-0.23"}, {"ID": "FBgn0004591", "EGF_Stimulus": "-1"}, {"ID": "FBgn0033459", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0034197", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0020261", "EGF_Stimulus": "-1.83"}, {"ID": "FBgn0052681", "EGF_Stimulus": "-0.55"}, {"ID": "FBgn0038811", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0033174", "EGF_Stimulus": "0.3"}, {"ID": "FBgn0029152", "EGF_Stimulus": "-1.32"}, {"ID": "FBgn0031232", "EGF_Stimulus": "-1.2"}, {"ID": "FBgn0023495", "EGF_Stimulus": "1.25"}, {"ID": "FBgn0039257", "EGF_Stimulus": "-0.2"}, {"ID": "FBgn0036451", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0003130", "EGF_Stimulus": "-0.25"}, {"ID": "FBgn0024980", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0034225", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0052040", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0029961", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0035444", "EGF_Stimulus": "2.1"}, {"ID": "FBgn0037690", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0031905", "EGF_Stimulus": "-1.75"}, {"ID": "FBgn0260459", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0033769", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0000565", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0014861", "EGF_Stimulus": "-0.56"}, {"ID": "FBgn0037351", "EGF_Stimulus": "-4.36"}, {"ID": "FBgn0028858", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0036286", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0031413", "EGF_Stimulus": "1.83"}, {"ID": "FBgn0033987", "EGF_Stimulus": "-0.69"}, {"ID": "FBgn0260968", "EGF_Stimulus": "-0.78"}, {"ID": "FBgn0029704", "EGF_Stimulus": "1.48"}, {"ID": "FBgn0020386", "EGF_Stimulus": "-2.37"}, {"ID": "FBgn0039147", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0030301", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0063498", "EGF_Stimulus": "-0.35"}, {"ID": "FBgn0035720", "EGF_Stimulus": "-1.18"}, {"ID": "FBgn0031460", "EGF_Stimulus": "-2.29"}, {"ID": "FBgn0261262", "EGF_Stimulus": "1.52"}, {"ID": "FBgn0039644", "EGF_Stimulus": "-0.43"}, {"ID": "FBgn0032671", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0034283", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0031372", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0053292", "EGF_Stimulus": "-0.54"}, {"ID": "FBgn0035982", "EGF_Stimulus": "0.19"}, {"ID": "FBgn0051804", "EGF_Stimulus": "-0.39"}, {"ID": "FBgn0038799", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0027786", "EGF_Stimulus": "-0.13"}, {"ID": "FBgn0052557", "EGF_Stimulus": "-0.52"}, {"ID": "FBgn0023527", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0032911", "EGF_Stimulus": "-0.11"}, {"ID": "FBgn0021872", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0031042", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0050431", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0032836", "EGF_Stimulus": "1.27"}, {"ID": "FBgn0051021", "EGF_Stimulus": "1.22"}, {"ID": "FBgn0033717", "EGF_Stimulus": "1.17"}, {"ID": "FBgn0063368", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0036181", "EGF_Stimulus": "1.1"}, {"ID": "FBgn0039689", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0052000", "EGF_Stimulus": "-2.52"}, {"ID": "FBgn0259922", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0004403", "EGF_Stimulus": "-3.02"}, {"ID": "FBgn0000577", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0001090", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0029943", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0034961", "EGF_Stimulus": "-0.34"}, {"ID": "FBgn0085370", "EGF_Stimulus": "1.28"}, {"ID": "FBgn0020369", "EGF_Stimulus": "-0.99"}, {"ID": "FBgn0031969", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0003254", "EGF_Stimulus": "1.32"}, {"ID": "FBgn0050043", "EGF_Stimulus": "-0.29"}, {"ID": "FBgn0033788", "EGF_Stimulus": "1"}, {"ID": "FBgn0041184", "EGF_Stimulus": "3.01"}, {"ID": "FBgn0031337", "EGF_Stimulus": "1.05"}, {"ID": "FBgn0032013", "EGF_Stimulus": "0.27"}, {"ID": "FBgn0033727", "EGF_Stimulus": "-0.21"}, {"ID": "FBgn0052668", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0037560", "EGF_Stimulus": "-0.23"}, {"ID": "FBgn0034218", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0035620", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0040949", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0050110", "EGF_Stimulus": "-0.16"}, {"ID": "FBgn0033498", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0029835", "EGF_Stimulus": "-0.43"}, {"ID": "FBgn0003205", "EGF_Stimulus": "-4.87"}, {"ID": "FBgn0030683", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0035372", "EGF_Stimulus": "1.41"}, {"ID": "FBgn0086251", "EGF_Stimulus": "-0.79"}, {"ID": "FBgn0030092", "EGF_Stimulus": "-0.77"}, {"ID": "FBgn0039554", "EGF_Stimulus": "1.22"}, {"ID": "FBgn0010435", "EGF_Stimulus": "-1.44"}, {"ID": "FBgn0037068", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0004362", "EGF_Stimulus": "-1.29"}, {"ID": "FBgn0032956", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0000024", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0034410", "EGF_Stimulus": "-1.06"}, {"ID": "FBgn0038257", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0004369", "EGF_Stimulus": "1.2"}, {"ID": "FBgn0085330", "EGF_Stimulus": "1.84"}, {"ID": "FBgn0031872", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0025336", "EGF_Stimulus": "-1.02"}, {"ID": "FBgn0033891", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0023510", "EGF_Stimulus": "-0.6"}, {"ID": "FBgn0261291", "EGF_Stimulus": "-1.52"}, {"ID": "FBgn0038678", "EGF_Stimulus": "-0.69"}, {"ID": "FBgn0017556", "EGF_Stimulus": "1.22"}, {"ID": "FBgn0259701", "EGF_Stimulus": "0.17"}, {"ID": "FBgn0036640", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0036880", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0030439", "EGF_Stimulus": "-0.73"}, {"ID": "FBgn0030735", "EGF_Stimulus": "-1.67"}, {"ID": "FBgn0261285", "EGF_Stimulus": "1.11"}, {"ID": "FBgn0085430", "EGF_Stimulus": "-0.79"}, {"ID": "FBgn0038458", "EGF_Stimulus": "1.27"}, {"ID": "FBgn0031115", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0037881", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0035892", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0010591", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0034573", "EGF_Stimulus": "-1.01"}, {"ID": "FBgn0028516", "EGF_Stimulus": "-0.18"}, {"ID": "FBgn0261634", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0032024", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0001256", "EGF_Stimulus": "1.53"}, {"ID": "FBgn0039802", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0010040", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0000490", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0038499", "EGF_Stimulus": "-2.13"}, {"ID": "FBgn0011743", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0030964", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0052572", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0038168", "EGF_Stimulus": "-1.3"}, {"ID": "FBgn0027554", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0038166", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0032699", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0030895", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0033868", "EGF_Stimulus": "1.06"}, {"ID": "FBgn0053111", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0036147", "EGF_Stimulus": "1"}, {"ID": "FBgn0038851", "EGF_Stimulus": "1.33"}, {"ID": "FBgn0010019", "EGF_Stimulus": "-0.62"}, {"ID": "FBgn0028375", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0087035", "EGF_Stimulus": "-5.84"}, {"ID": "FBgn0037683", "EGF_Stimulus": "-1.05"}, {"ID": "FBgn0085351", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0039666", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0051410", "EGF_Stimulus": "-2.8"}, {"ID": "FBgn0032585", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0259247", "EGF_Stimulus": "-0.96"}, {"ID": "FBgn0030695", "EGF_Stimulus": "-0.7"}, {"ID": "FBgn0037950", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0039088", "EGF_Stimulus": "-0.62"}, {"ID": "FBgn0011722", "EGF_Stimulus": "-0.72"}, {"ID": "FBgn0261395", "EGF_Stimulus": "-0.46"}, {"ID": "FBgn0038223", "EGF_Stimulus": "1.94"}, {"ID": "FBgn0034276", "EGF_Stimulus": "-1.56"}, {"ID": "FBgn0030345", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0036815", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0037780", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0038132", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0085312", "EGF_Stimulus": "-1.43"}, {"ID": "FBgn0036782", "EGF_Stimulus": "-1.27"}, {"ID": "FBgn0034871", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0259878", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0003482", "EGF_Stimulus": "-1.59"}, {"ID": "FBgn0033927", "EGF_Stimulus": "-0.92"}, {"ID": "FBgn0032087", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0030018", "EGF_Stimulus": "1.71"}, {"ID": "FBgn0036352", "EGF_Stimulus": "1.43"}, {"ID": "FBgn0051032", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0034902", "EGF_Stimulus": "0.3"}, {"ID": "FBgn0028370", "EGF_Stimulus": "-1.53"}, {"ID": "FBgn0035753", "EGF_Stimulus": "-4.48"}, {"ID": "FBgn0025525", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0000557", "EGF_Stimulus": "-1.86"}, {"ID": "FBgn0031284", "EGF_Stimulus": "0.11"}, {"ID": "FBgn0030400", "EGF_Stimulus": "-1.63"}, {"ID": "FBgn0034552", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0026150", "EGF_Stimulus": "-1"}, {"ID": "FBgn0036862", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0036324", "EGF_Stimulus": "1.32"}, {"ID": "FBgn0033995", "EGF_Stimulus": "-1.81"}, {"ID": "FBgn0015791", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0031187", "EGF_Stimulus": "-1.32"}, {"ID": "FBgn0001123", "EGF_Stimulus": "-1.33"}, {"ID": "FBgn0035911", "EGF_Stimulus": "1.15"}, {"ID": "FBgn0033861", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0036249", "EGF_Stimulus": "-1.01"}, {"ID": "FBgn0086611", "EGF_Stimulus": "-1.28"}, {"ID": "FBgn0027582", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0037465", "EGF_Stimulus": "-0.81"}, {"ID": "FBgn0035176", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0031252", "EGF_Stimulus": "-0.72"}, {"ID": "FBgn0053281", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0033742", "EGF_Stimulus": "-0.08"}, {"ID": "FBgn0038511", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0039153", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0004867", "EGF_Stimulus": "-4.5"}, {"ID": "FBgn0031217", "EGF_Stimulus": "-0.6"}, {"ID": "FBgn0051475", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0037344", "EGF_Stimulus": "-0.86"}, {"ID": "FBgn0037387", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0035458", "EGF_Stimulus": "-1.54"}, {"ID": "FBgn0261619", "EGF_Stimulus": "-4.53"}, {"ID": "FBgn0004244", "EGF_Stimulus": "1.35"}, {"ID": "FBgn0027561", "EGF_Stimulus": "-0.55"}, {"ID": "FBgn0034027", "EGF_Stimulus": "-0.64"}, {"ID": "FBgn0032494", "EGF_Stimulus": "1.53"}, {"ID": "FBgn0030011", "EGF_Stimulus": "-0.55"}, {"ID": "FBgn0011829", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0036590", "EGF_Stimulus": "-1.4"}, {"ID": "FBgn0002933", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0030051", "EGF_Stimulus": "-1.31"}, {"ID": "FBgn0031476", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0039344", "EGF_Stimulus": "-0.61"}, {"ID": "FBgn0035524", "EGF_Stimulus": "-0.63"}, {"ID": "FBgn0034931", "EGF_Stimulus": "-2.96"}, {"ID": "FBgn0037933", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0032514", "EGF_Stimulus": "-1.11"}, {"ID": "FBgn0031941", "EGF_Stimulus": "1.41"}, {"ID": "FBgn0032119", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0034914", "EGF_Stimulus": "-1.24"}, {"ID": "FBgn0053234", "EGF_Stimulus": "-1.04"}, {"ID": "FBgn0029667", "EGF_Stimulus": "-0.8"}, {"ID": "FBgn0032437", "EGF_Stimulus": "-1.69"}, {"ID": "FBgn0034651", "EGF_Stimulus": "-0.56"}, {"ID": "FBgn0086907", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0015777", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0034143", "EGF_Stimulus": "-0.46"}, {"ID": "FBgn0051793", "EGF_Stimulus": "-0.97"}, {"ID": "FBgn0038957", "EGF_Stimulus": "-0.4"}, {"ID": "FBgn0035462", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0035210", "EGF_Stimulus": "1.65"}, {"ID": "FBgn0034127", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0026372", "EGF_Stimulus": "-3.58"}, {"ID": "FBgn0260934", "EGF_Stimulus": "-1.56"}, {"ID": "FBgn0037414", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0035082", "EGF_Stimulus": "0.22"}, {"ID": "FBgn0039774", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0039008", "EGF_Stimulus": "-0.77"}, {"ID": "FBgn0013753", "EGF_Stimulus": "-0.15"}, {"ID": "FBgn0051643", "EGF_Stimulus": "-0.74"}, {"ID": "FBgn0259716", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0028572", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0029649", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0040340", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0086901", "EGF_Stimulus": "-0.73"}, {"ID": "FBgn0035057", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0033573", "EGF_Stimulus": "-1.07"}, {"ID": "FBgn0037295", "EGF_Stimulus": "2.27"}, {"ID": "FBgn0052483", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0034330", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0036925", "EGF_Stimulus": "-0.35"}, {"ID": "FBgn0015625", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0028369", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0051525", "EGF_Stimulus": "1.26"}, {"ID": "FBgn0035915", "EGF_Stimulus": "-0.67"}, {"ID": "FBgn0038723", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0037906", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0014010", "EGF_Stimulus": "-5.77"}, {"ID": "FBgn0004395", "EGF_Stimulus": "-1.63"}, {"ID": "FBgn0053460", "EGF_Stimulus": "-0.77"}, {"ID": "FBgn0032880", "EGF_Stimulus": "-4.64"}, {"ID": "FBgn0053919", "EGF_Stimulus": "1.27"}, {"ID": "FBgn0053252", "EGF_Stimulus": "-0.48"}, {"ID": "FBgn0037974", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0030877", "EGF_Stimulus": "-0.92"}, {"ID": "FBgn0026192", "EGF_Stimulus": "1.77"}, {"ID": "FBgn0031052", "EGF_Stimulus": "-1.42"}, {"ID": "FBgn0024248", "EGF_Stimulus": "-1.29"}, {"ID": "FBgn0000147", "EGF_Stimulus": "-5.37"}, {"ID": "FBgn0030812", "EGF_Stimulus": "-0.93"}, {"ID": "FBgn0052645", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0037220", "EGF_Stimulus": "2.04"}, {"ID": "FBgn0022960", "EGF_Stimulus": "-0.65"}, {"ID": "FBgn0033365", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0036998", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0038054", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0038461", "EGF_Stimulus": "1.23"}, {"ID": "FBgn0035947", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0046258", "EGF_Stimulus": "0.27"}, {"ID": "FBgn0032222", "EGF_Stimulus": "0.94"}, {"ID": "FBgn0028434", "EGF_Stimulus": "-2.01"}, {"ID": "FBgn0024994", "EGF_Stimulus": "-1.07"}, {"ID": "FBgn0261723", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0031435", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0030876", "EGF_Stimulus": "-0.21"}, {"ID": "FBgn0010323", "EGF_Stimulus": "1.42"}, {"ID": "FBgn0021765", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0036325", "EGF_Stimulus": "1.48"}, {"ID": "FBgn0038859", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0038546", "EGF_Stimulus": "-0.8"}, {"ID": "FBgn0034510", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0016792", "EGF_Stimulus": "-3.27"}, {"ID": "FBgn0016697", "EGF_Stimulus": "-2.43"}, {"ID": "FBgn0030851", "EGF_Stimulus": "-1.11"}, {"ID": "FBgn0031391", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0033593", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0028862", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0024977", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0036217", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0034704", "EGF_Stimulus": "-0.64"}, {"ID": "FBgn0250785", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0083956", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0035469", "EGF_Stimulus": "1.47"}, {"ID": "FBgn0039889", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0030612", "EGF_Stimulus": "-0.99"}, {"ID": "FBgn0001079", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0037139", "EGF_Stimulus": "1.86"}, {"ID": "FBgn0039319", "EGF_Stimulus": "0.22"}, {"ID": "FBgn0003520", "EGF_Stimulus": "1.12"}, {"ID": "FBgn0260789", "EGF_Stimulus": "-1.4"}, {"ID": "FBgn0039297", "EGF_Stimulus": "0.25"}, {"ID": "FBgn0030258", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0038429", "EGF_Stimulus": "-1.18"}, {"ID": "FBgn0032972", "EGF_Stimulus": "-0.31"}, {"ID": "FBgn0040322", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0037855", "EGF_Stimulus": "1.31"}, {"ID": "FBgn0036362", "EGF_Stimulus": "1.15"}, {"ID": "FBgn0039368", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0035159", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0036688", "EGF_Stimulus": "-0.67"}, {"ID": "FBgn0019936", "EGF_Stimulus": "-2.93"}, {"ID": "FBgn0036665", "EGF_Stimulus": "-1.53"}, {"ID": "FBgn0028427", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0033247", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0040967", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0034697", "EGF_Stimulus": "-0.37"}, {"ID": "FBgn0260437", "EGF_Stimulus": "-0.73"}, {"ID": "FBgn0040079", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0039312", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0026582", "EGF_Stimulus": "-1.47"}, {"ID": "FBgn0039081", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0037985", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0035867", "EGF_Stimulus": "1.3"}, {"ID": "FBgn0052268", "EGF_Stimulus": "1.17"}, {"ID": "FBgn0259734", "EGF_Stimulus": "2.02"}, {"ID": "FBgn0027835", "EGF_Stimulus": "-0.69"}, {"ID": "FBgn0035343", "EGF_Stimulus": "1.23"}, {"ID": "FBgn0030477", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0038076", "EGF_Stimulus": "1.06"}, {"ID": "FBgn0041626", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0038531", "EGF_Stimulus": "-0.25"}, {"ID": "FBgn0015925", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0037330", "EGF_Stimulus": "1.19"}, {"ID": "FBgn0031926", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0015721", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0010830", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0039828", "EGF_Stimulus": "-1.08"}, {"ID": "FBgn0033817", "EGF_Stimulus": "-0.18"}, {"ID": "FBgn0031639", "EGF_Stimulus": "-0.4"}, {"ID": "FBgn0029768", "EGF_Stimulus": "1.1"}, {"ID": "FBgn0035491", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0027335", "EGF_Stimulus": "-0.48"}, {"ID": "FBgn0036715", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0030004", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0051163", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0036264", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0038114", "EGF_Stimulus": "-0.57"}, {"ID": "FBgn0045487", "EGF_Stimulus": "-1.46"}, {"ID": "FBgn0033640", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0003719", "EGF_Stimulus": "-1.45"}, {"ID": "FBgn0261554", "EGF_Stimulus": "-1.22"}, {"ID": "FBgn0000206", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0002569", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0040366", "EGF_Stimulus": "-0.16"}, {"ID": "FBgn0003943", "EGF_Stimulus": "-0.63"}, {"ID": "FBgn0046696", "EGF_Stimulus": "-1.02"}, {"ID": "FBgn0029853", "EGF_Stimulus": "0.94"}, {"ID": "FBgn0085369", "EGF_Stimulus": "1.04"}, {"ID": "FBgn0032730", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0031925", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0259098", "EGF_Stimulus": "-1.06"}, {"ID": "FBgn0038293", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0030354", "EGF_Stimulus": "-2"}, {"ID": "FBgn0035150", "EGF_Stimulus": "1.2"}, {"ID": "FBgn0035431", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0019940", "EGF_Stimulus": "-0.21"}, {"ID": "FBgn0027296", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0034317", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0035271", "EGF_Stimulus": "1.31"}, {"ID": "FBgn0036372", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0019949", "EGF_Stimulus": "2.33"}, {"ID": "FBgn0034494", "EGF_Stimulus": "-0.76"}, {"ID": "FBgn0261356", "EGF_Stimulus": "1.18"}, {"ID": "FBgn0037231", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0001337", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0042189", "EGF_Stimulus": "-1.09"}, {"ID": "FBgn0030846", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0036062", "EGF_Stimulus": "-0.47"}, {"ID": "FBgn0085498", "EGF_Stimulus": "-1.09"}, {"ID": "FBgn0031853", "EGF_Stimulus": "-0.8"}, {"ID": "FBgn0003375", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0038491", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0033132", "EGF_Stimulus": "-0.88"}, {"ID": "FBgn0034413", "EGF_Stimulus": "-0.47"}, {"ID": "FBgn0051419", "EGF_Stimulus": "-0.62"}, {"ID": "FBgn0052944", "EGF_Stimulus": "-0.94"}, {"ID": "FBgn0051855", "EGF_Stimulus": "-1.28"}, {"ID": "FBgn0039682", "EGF_Stimulus": "-1.02"}, {"ID": "FBgn0039290", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0085280", "EGF_Stimulus": "-1.84"}, {"ID": "FBgn0052677", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0036222", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0034240", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0034037", "EGF_Stimulus": "-1.07"}, {"ID": "FBgn0051380", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0033502", "EGF_Stimulus": "-0.99"}, {"ID": "FBgn0034786", "EGF_Stimulus": "0.17"}, {"ID": "FBgn0034133", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0013672", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0033540", "EGF_Stimulus": "-0.48"}, {"ID": "FBgn0033971", "EGF_Stimulus": "0.26"}, {"ID": "FBgn0038355", "EGF_Stimulus": "-0.12"}, {"ID": "FBgn0031758", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0031379", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0004028", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0030163", "EGF_Stimulus": "-0.25"}, {"ID": "FBgn0037378", "EGF_Stimulus": "-0.63"}, {"ID": "FBgn0034923", "EGF_Stimulus": "-1.27"}, {"ID": "FBgn0028938", "EGF_Stimulus": "-0.92"}, {"ID": "FBgn0035102", "EGF_Stimulus": "-0.13"}, {"ID": "FBgn0038983", "EGF_Stimulus": "-0.64"}, {"ID": "FBgn0037580", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0034601", "EGF_Stimulus": "-1.52"}, {"ID": "FBgn0051954", "EGF_Stimulus": "1.05"}, {"ID": "FBgn0023178", "EGF_Stimulus": "-1.38"}, {"ID": "FBgn0039404", "EGF_Stimulus": "-2.1"}, {"ID": "FBgn0038218", "EGF_Stimulus": "1.03"}, {"ID": "FBgn0000360", "EGF_Stimulus": "-0.77"}, {"ID": "FBgn0003149", "EGF_Stimulus": "-0.75"}, {"ID": "FBgn0037134", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0013764", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0039360", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0028987", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0033448", "EGF_Stimulus": "1.68"}, {"ID": "FBgn0036260", "EGF_Stimulus": "-1.69"}, {"ID": "FBgn0054025", "EGF_Stimulus": "-0.14"}, {"ID": "FBgn0035392", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0033834", "EGF_Stimulus": "0.12"}, {"ID": "FBgn0033658", "EGF_Stimulus": "-0.34"}, {"ID": "FBgn0053689", "EGF_Stimulus": "0.94"}, {"ID": "FBgn0024542", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0023507", "EGF_Stimulus": "0.94"}, {"ID": "FBgn0036240", "EGF_Stimulus": "-0.15"}, {"ID": "FBgn0040355", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0050286", "EGF_Stimulus": "-0.46"}, {"ID": "FBgn0052703", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0053465", "EGF_Stimulus": "-0.72"}, {"ID": "FBgn0011291", "EGF_Stimulus": "1.62"}, {"ID": "FBgn0038108", "EGF_Stimulus": "-1.15"}, {"ID": "FBgn0031971", "EGF_Stimulus": "-0.81"}, {"ID": "FBgn0030759", "EGF_Stimulus": "0.3"}, {"ID": "FBgn0085411", "EGF_Stimulus": "-0.73"}, {"ID": "FBgn0028372", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0033961", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0033683", "EGF_Stimulus": "1.11"}, {"ID": "FBgn0015571", "EGF_Stimulus": "1.48"}, {"ID": "FBgn0046697", "EGF_Stimulus": "1.22"}, {"ID": "FBgn0019948", "EGF_Stimulus": "-1.06"}, {"ID": "FBgn0033479", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0016672", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0052249", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0034401", "EGF_Stimulus": "-1.53"}, {"ID": "FBgn0015803", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0034406", "EGF_Stimulus": "1.41"}, {"ID": "FBgn0001330", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0010441", "EGF_Stimulus": "1.2"}, {"ID": "FBgn0036941", "EGF_Stimulus": "-0.19"}, {"ID": "FBgn0001142", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0003169", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0037232", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0004419", "EGF_Stimulus": "-3.48"}, {"ID": "FBgn0037808", "EGF_Stimulus": "-1.87"}, {"ID": "FBgn0052104", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0036956", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0029700", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0029665", "EGF_Stimulus": "-0.22"}, {"ID": "FBgn0034428", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0028422", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0037662", "EGF_Stimulus": "-0.26"}, {"ID": "FBgn0029722", "EGF_Stimulus": "-0.79"}, {"ID": "FBgn0041229", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0029173", "EGF_Stimulus": "1.01"}, {"ID": "FBgn0033194", "EGF_Stimulus": "1.2"}, {"ID": "FBgn0035817", "EGF_Stimulus": "1.13"}, {"ID": "FBgn0036223", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0017457", "EGF_Stimulus": "-0.99"}, {"ID": "FBgn0050195", "EGF_Stimulus": "-0.37"}, {"ID": "FBgn0030357", "EGF_Stimulus": "-0.63"}, {"ID": "FBgn0038874", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0000442", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0035520", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0038612", "EGF_Stimulus": "-0.23"}, {"ID": "FBgn0042085", "EGF_Stimulus": "-1"}, {"ID": "FBgn0039862", "EGF_Stimulus": "1.54"}, {"ID": "FBgn0039838", "EGF_Stimulus": "-0.28"}, {"ID": "FBgn0050185", "EGF_Stimulus": "-0.96"}, {"ID": "FBgn0024956", "EGF_Stimulus": "-0.55"}, {"ID": "FBgn0034982", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0040070", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0037653", "EGF_Stimulus": "1.06"}, {"ID": "FBgn0025630", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0025683", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0002914", "EGF_Stimulus": "-2.62"}, {"ID": "FBgn0037574", "EGF_Stimulus": "1.34"}, {"ID": "FBgn0032856", "EGF_Stimulus": "-1.27"}, {"ID": "FBgn0001986", "EGF_Stimulus": "-1.11"}, {"ID": "FBgn0034118", "EGF_Stimulus": "1.37"}, {"ID": "FBgn0020300", "EGF_Stimulus": "1.4"}, {"ID": "FBgn0038752", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0034290", "EGF_Stimulus": "-1.73"}, {"ID": "FBgn0037142", "EGF_Stimulus": "1.69"}, {"ID": "FBgn0003382", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0000287", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0032988", "EGF_Stimulus": "-1.61"}, {"ID": "FBgn0039286", "EGF_Stimulus": "-0.59"}, {"ID": "FBgn0032790", "EGF_Stimulus": "-0.48"}, {"ID": "FBgn0030804", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0039264", "EGF_Stimulus": "0.26"}, {"ID": "FBgn0003502", "EGF_Stimulus": "1.14"}, {"ID": "FBgn0032032", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0038401", "EGF_Stimulus": "1.41"}, {"ID": "FBgn0016726", "EGF_Stimulus": "0.94"}, {"ID": "FBgn0041203", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0039463", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0037167", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0031573", "EGF_Stimulus": "-0.82"}, {"ID": "FBgn0039821", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0010407", "EGF_Stimulus": "-0.19"}, {"ID": "FBgn0038741", "EGF_Stimulus": "-1.69"}, {"ID": "FBgn0036708", "EGF_Stimulus": "-0.75"}, {"ID": "FBgn0010417", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0033816", "EGF_Stimulus": "-0.12"}, {"ID": "FBgn0261790", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0034062", "EGF_Stimulus": "-1.01"}, {"ID": "FBgn0032754", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0037569", "EGF_Stimulus": "-0.24"}, {"ID": "FBgn0031126", "EGF_Stimulus": "-0.46"}, {"ID": "FBgn0031710", "EGF_Stimulus": "1.35"}, {"ID": "FBgn0035667", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0260004", "EGF_Stimulus": "-1.84"}, {"ID": "FBgn0261388", "EGF_Stimulus": "-0.39"}, {"ID": "FBgn0033454", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0261548", "EGF_Stimulus": "1.29"}, {"ID": "FBgn0044324", "EGF_Stimulus": "-1.77"}, {"ID": "FBgn0050008", "EGF_Stimulus": "0.15"}, {"ID": "FBgn0029864", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0031245", "EGF_Stimulus": "-1.63"}, {"ID": "FBgn0003612", "EGF_Stimulus": "-1.42"}, {"ID": "FBgn0037037", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0039859", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0038068", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0031053", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0259190", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0025115", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0036764", "EGF_Stimulus": "-0.19"}, {"ID": "FBgn0005659", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0034085", "EGF_Stimulus": "-0.55"}, {"ID": "FBgn0039782", "EGF_Stimulus": "-0.65"}, {"ID": "FBgn0037987", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0051121", "EGF_Stimulus": "-0.23"}, {"ID": "FBgn0033580", "EGF_Stimulus": "-0.26"}, {"ID": "FBgn0038012", "EGF_Stimulus": "1.63"}, {"ID": "FBgn0033222", "EGF_Stimulus": "-0.2"}, {"ID": "FBgn0034970", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0035402", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0034717", "EGF_Stimulus": "2.09"}, {"ID": "FBgn0014906", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0027655", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0038204", "EGF_Stimulus": "2.38"}, {"ID": "FBgn0025382", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0034611", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0259677", "EGF_Stimulus": "-0.88"}, {"ID": "FBgn0051098", "EGF_Stimulus": "1.09"}, {"ID": "FBgn0036870", "EGF_Stimulus": "-0.6"}, {"ID": "FBgn0040512", "EGF_Stimulus": "-3.48"}, {"ID": "FBgn0003861", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0029801", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0027579", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0039851", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0031228", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0000996", "EGF_Stimulus": "-4.38"}, {"ID": "FBgn0053547", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0051710", "EGF_Stimulus": "-1.82"}, {"ID": "FBgn0032047", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0050089", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0032049", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0050026", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0033988", "EGF_Stimulus": "0.04"}, {"ID": "FBgn0037326", "EGF_Stimulus": "-1.2"}, {"ID": "FBgn0003483", "EGF_Stimulus": "-0.63"}, {"ID": "FBgn0036953", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0031717", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0031515", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0261274", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0031304", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0025803", "EGF_Stimulus": "1.35"}, {"ID": "FBgn0000079", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0026438", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0004592", "EGF_Stimulus": "-1.3"}, {"ID": "FBgn0036484", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0052643", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0024733", "EGF_Stimulus": "-4.28"}, {"ID": "FBgn0020513", "EGF_Stimulus": "-1.02"}, {"ID": "FBgn0033460", "EGF_Stimulus": "-1.18"}, {"ID": "FBgn0038156", "EGF_Stimulus": "0.2"}, {"ID": "FBgn0023477", "EGF_Stimulus": "-1.83"}, {"ID": "FBgn0039246", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0035529", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0034182", "EGF_Stimulus": "0.26"}, {"ID": "FBgn0035771", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0034921", "EGF_Stimulus": "-0.81"}, {"ID": "FBgn0050471", "EGF_Stimulus": "-1.49"}, {"ID": "FBgn0039438", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0028433", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0000117", "EGF_Stimulus": "-0.66"}, {"ID": "FBgn0004049", "EGF_Stimulus": "-0.98"}, {"ID": "FBgn0031950", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0023541", "EGF_Stimulus": "0.96"}, {"ID": "FBgn0026385", "EGF_Stimulus": "-0.33"}, {"ID": "FBgn0016978", "EGF_Stimulus": "2.2"}, {"ID": "FBgn0010348", "EGF_Stimulus": "-1.84"}, {"ID": "FBgn0002567", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0032421", "EGF_Stimulus": "-0.66"}, {"ID": "FBgn0051679", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0051548", "EGF_Stimulus": "-0.2"}, {"ID": "FBgn0038153", "EGF_Stimulus": "0.02"}, {"ID": "FBgn0037607", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0021761", "EGF_Stimulus": "-0.59"}, {"ID": "FBgn0035002", "EGF_Stimulus": "1.64"}, {"ID": "FBgn0033205", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0033733", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0032966", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0053223", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0052061", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0053196", "EGF_Stimulus": "-1.49"}, {"ID": "FBgn0028694", "EGF_Stimulus": "-2"}, {"ID": "FBgn0036235", "EGF_Stimulus": "0.08"}, {"ID": "FBgn0038359", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0065032", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0036791", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0040363", "EGF_Stimulus": "-1.66"}, {"ID": "FBgn0036877", "EGF_Stimulus": "1.05"}, {"ID": "FBgn0003607", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0034021", "EGF_Stimulus": "-1.54"}, {"ID": "FBgn0051477", "EGF_Stimulus": "-1.91"}, {"ID": "FBgn0030262", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0032478", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0031559", "EGF_Stimulus": "0.94"}, {"ID": "FBgn0053129", "EGF_Stimulus": "-0.94"}, {"ID": "FBgn0040751", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0024314", "EGF_Stimulus": "-0.89"}, {"ID": "FBgn0022097", "EGF_Stimulus": "-1.32"}, {"ID": "FBgn0030411", "EGF_Stimulus": "1.05"}, {"ID": "FBgn0053475", "EGF_Stimulus": "-0.28"}, {"ID": "FBgn0037200", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0034853", "EGF_Stimulus": "-0.75"}, {"ID": "FBgn0039040", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0039013", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0034647", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0003732", "EGF_Stimulus": "-0.85"}, {"ID": "FBgn0051464", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0028543", "EGF_Stimulus": "-0.7"}, {"ID": "FBgn0010258", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0030685", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0039228", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0030756", "EGF_Stimulus": "-1.24"}, {"ID": "FBgn0037350", "EGF_Stimulus": "-0.7"}, {"ID": "FBgn0030715", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0015239", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0086706", "EGF_Stimulus": "-1.35"}, {"ID": "FBgn0038685", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0004584", "EGF_Stimulus": "-1.52"}, {"ID": "FBgn0014427", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0031640", "EGF_Stimulus": "-0.93"}, {"ID": "FBgn0013767", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0031771", "EGF_Stimulus": "0.08"}, {"ID": "FBgn0036910", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0015776", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0027615", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0051867", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0033924", "EGF_Stimulus": "0.22"}, {"ID": "FBgn0005674", "EGF_Stimulus": "-1.02"}, {"ID": "FBgn0039141", "EGF_Stimulus": "1.34"}, {"ID": "FBgn0039761", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0040651", "EGF_Stimulus": "-0.98"}, {"ID": "FBgn0033289", "EGF_Stimulus": "-0.55"}, {"ID": "FBgn0032782", "EGF_Stimulus": "1.23"}, {"ID": "FBgn0261397", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0022724", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0029809", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0028904", "EGF_Stimulus": "-1.3"}, {"ID": "FBgn0031664", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0052690", "EGF_Stimulus": "1.19"}, {"ID": "FBgn0035721", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0038737", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0027507", "EGF_Stimulus": "-0.25"}, {"ID": "FBgn0011818", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0035760", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0035776", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0038524", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0259728", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0037183", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0037212", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0015129", "EGF_Stimulus": "1.23"}, {"ID": "FBgn0029995", "EGF_Stimulus": "0.27"}, {"ID": "FBgn0027453", "EGF_Stimulus": "1.03"}, {"ID": "FBgn0015245", "EGF_Stimulus": "1"}, {"ID": "FBgn0038827", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0030237", "EGF_Stimulus": "0.05"}, {"ID": "FBgn0032749", "EGF_Stimulus": "-0.61"}, {"ID": "FBgn0019637", "EGF_Stimulus": "-1.56"}, {"ID": "FBgn0035557", "EGF_Stimulus": "1.04"}, {"ID": "FBgn0260741", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0250838", "EGF_Stimulus": "-1.21"}, {"ID": "FBgn0036436", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0037464", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0259876", "EGF_Stimulus": "-1.31"}, {"ID": "FBgn0035375", "EGF_Stimulus": "1.21"}, {"ID": "FBgn0040260", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0037069", "EGF_Stimulus": "1.4"}, {"ID": "FBgn0028886", "EGF_Stimulus": "-0.62"}, {"ID": "FBgn0031996", "EGF_Stimulus": "1.01"}, {"ID": "FBgn0036082", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0035537", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0083965", "EGF_Stimulus": "-1.31"}, {"ID": "FBgn0037962", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0002535", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0039161", "EGF_Stimulus": "1.52"}, {"ID": "FBgn0051068", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0030768", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0002021", "EGF_Stimulus": "1.29"}, {"ID": "FBgn0259189", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0054038", "EGF_Stimulus": "1.85"}, {"ID": "FBgn0050105", "EGF_Stimulus": "-0.7"}, {"ID": "FBgn0037562", "EGF_Stimulus": "-0.25"}, {"ID": "FBgn0000015", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0001263", "EGF_Stimulus": "1.37"}, {"ID": "FBgn0003074", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0036520", "EGF_Stimulus": "-0.98"}, {"ID": "FBgn0031208", "EGF_Stimulus": "-0.96"}, {"ID": "FBgn0030628", "EGF_Stimulus": "-0.69"}, {"ID": "FBgn0041781", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0026384", "EGF_Stimulus": "-0.67"}, {"ID": "FBgn0250904", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0085200", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0040994", "EGF_Stimulus": "-0.98"}, {"ID": "FBgn0032894", "EGF_Stimulus": "-0.09"}, {"ID": "FBgn0019643", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0053914", "EGF_Stimulus": "-0.95"}, {"ID": "FBgn0053516", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0031868", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0031092", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0040503", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0040941", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0038487", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0261631", "EGF_Stimulus": "-0.98"}, {"ID": "FBgn0031367", "EGF_Stimulus": "-1.55"}, {"ID": "FBgn0029813", "EGF_Stimulus": "0.17"}, {"ID": "FBgn0051111", "EGF_Stimulus": "-2.01"}, {"ID": "FBgn0013954", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0050443", "EGF_Stimulus": "1.67"}, {"ID": "FBgn0033127", "EGF_Stimulus": "-0.59"}, {"ID": "FBgn0031253", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0028468", "EGF_Stimulus": "0.15"}, {"ID": "FBgn0086368", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0000357", "EGF_Stimulus": "1.04"}, {"ID": "FBgn0035780", "EGF_Stimulus": "0.21"}, {"ID": "FBgn0030289", "EGF_Stimulus": "0.15"}, {"ID": "FBgn0039632", "EGF_Stimulus": "1.32"}, {"ID": "FBgn0015524", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0036537", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0040609", "EGF_Stimulus": "-0.48"}, {"ID": "FBgn0035923", "EGF_Stimulus": "1.32"}, {"ID": "FBgn0034710", "EGF_Stimulus": "-0.75"}, {"ID": "FBgn0051002", "EGF_Stimulus": "0.27"}, {"ID": "FBgn0038099", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0086359", "EGF_Stimulus": "-0.24"}, {"ID": "FBgn0003888", "EGF_Stimulus": "1.44"}, {"ID": "FBgn0030538", "EGF_Stimulus": "-0.25"}, {"ID": "FBgn0032815", "EGF_Stimulus": "1.26"}, {"ID": "FBgn0029642", "EGF_Stimulus": "0.27"}, {"ID": "FBgn0035253", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0030322", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0038868", "EGF_Stimulus": "-2.33"}, {"ID": "FBgn0030625", "EGF_Stimulus": "-1.53"}, {"ID": "FBgn0031103", "EGF_Stimulus": "-0.34"}, {"ID": "FBgn0040832", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0261526", "EGF_Stimulus": "-1.46"}, {"ID": "FBgn0033041", "EGF_Stimulus": "-0.63"}, {"ID": "FBgn0031064", "EGF_Stimulus": "-0.78"}, {"ID": "FBgn0002774", "EGF_Stimulus": "1.22"}, {"ID": "FBgn0011787", "EGF_Stimulus": "1"}, {"ID": "FBgn0031062", "EGF_Stimulus": "1.17"}, {"ID": "FBgn0039927", "EGF_Stimulus": "1.65"}, {"ID": "FBgn0035243", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0036927", "EGF_Stimulus": "-0.26"}, {"ID": "FBgn0027079", "EGF_Stimulus": "0.14"}, {"ID": "FBgn0051415", "EGF_Stimulus": "-0.61"}, {"ID": "FBgn0000659", "EGF_Stimulus": "-0.37"}, {"ID": "FBgn0050122", "EGF_Stimulus": "1.23"}, {"ID": "FBgn0037389", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0026374", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0003741", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0036338", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0030341", "EGF_Stimulus": "-0.14"}, {"ID": "FBgn0031310", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0040972", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0052238", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0036333", "EGF_Stimulus": "1.15"}, {"ID": "FBgn0033636", "EGF_Stimulus": "-1.95"}, {"ID": "FBgn0030313", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0037876", "EGF_Stimulus": "-1.38"}, {"ID": "FBgn0035480", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0033452", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0050045", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0040256", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0023528", "EGF_Stimulus": "-1.1"}, {"ID": "FBgn0041239", "EGF_Stimulus": "-1.29"}, {"ID": "FBgn0027948", "EGF_Stimulus": "-0.46"}, {"ID": "FBgn0039789", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0260799", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0037359", "EGF_Stimulus": "-1"}, {"ID": "FBgn0030544", "EGF_Stimulus": "-0.6"}, {"ID": "FBgn0022702", "EGF_Stimulus": "0.23"}, {"ID": "FBgn0001325", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0032369", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0052633", "EGF_Stimulus": "-0.52"}, {"ID": "FBgn0035856", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0039665", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0028487", "EGF_Stimulus": "3.41"}, {"ID": "FBgn0003676", "EGF_Stimulus": "-1.37"}, {"ID": "FBgn0033158", "EGF_Stimulus": "1.59"}, {"ID": "FBgn0039939", "EGF_Stimulus": "0.22"}, {"ID": "FBgn0030399", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0014184", "EGF_Stimulus": "-0.57"}, {"ID": "FBgn0037122", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0085284", "EGF_Stimulus": "1.71"}, {"ID": "FBgn0261535", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0038732", "EGF_Stimulus": "0.15"}, {"ID": "FBgn0012034", "EGF_Stimulus": "-2.06"}, {"ID": "FBgn0031145", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0041161", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0003067", "EGF_Stimulus": "-0.17"}, {"ID": "FBgn0002578", "EGF_Stimulus": "-1.43"}, {"ID": "FBgn0016650", "EGF_Stimulus": "-0.22"}, {"ID": "FBgn0053138", "EGF_Stimulus": "-0.9"}, {"ID": "FBgn0259216", "EGF_Stimulus": "-1.72"}, {"ID": "FBgn0036565", "EGF_Stimulus": "0.19"}, {"ID": "FBgn0035144", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0033438", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0250841", "EGF_Stimulus": "-0.54"}, {"ID": "FBgn0038272", "EGF_Stimulus": "1.47"}, {"ID": "FBgn0030949", "EGF_Stimulus": "-0.85"}, {"ID": "FBgn0053286", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0032005", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0038674", "EGF_Stimulus": "-0.11"}, {"ID": "FBgn0015000", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0004907", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0039796", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0051901", "EGF_Stimulus": "1.09"}, {"ID": "FBgn0037379", "EGF_Stimulus": "0.15"}, {"ID": "FBgn0039204", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0032515", "EGF_Stimulus": "-1.08"}, {"ID": "FBgn0029079", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0034397", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0003321", "EGF_Stimulus": "1.59"}, {"ID": "FBgn0027601", "EGF_Stimulus": "-1.53"}, {"ID": "FBgn0003255", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0036552", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0032290", "EGF_Stimulus": "1.17"}, {"ID": "FBgn0261854", "EGF_Stimulus": "1.39"}, {"ID": "FBgn0030940", "EGF_Stimulus": "1.69"}, {"ID": "FBgn0030774", "EGF_Stimulus": "-0.83"}, {"ID": "FBgn0037500", "EGF_Stimulus": "1.2"}, {"ID": "FBgn0261800", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0003638", "EGF_Stimulus": "-2.15"}, {"ID": "FBgn0032094", "EGF_Stimulus": "1.22"}, {"ID": "FBgn0259896", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0038188", "EGF_Stimulus": "0.18"}, {"ID": "FBgn0034530", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0051235", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0035254", "EGF_Stimulus": "-0.55"}, {"ID": "FBgn0032772", "EGF_Stimulus": "1.21"}, {"ID": "FBgn0038630", "EGF_Stimulus": "-0.06"}, {"ID": "FBgn0011509", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0038386", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0035741", "EGF_Stimulus": "1.13"}, {"ID": "FBgn0030217", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0052811", "EGF_Stimulus": "-0.47"}, {"ID": "FBgn0004872", "EGF_Stimulus": "0.2"}, {"ID": "FBgn0036489", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0260747", "EGF_Stimulus": "-0.48"}, {"ID": "FBgn0035696", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0032260", "EGF_Stimulus": "1.54"}, {"ID": "FBgn0037644", "EGF_Stimulus": "-0.4"}, {"ID": "FBgn0004054", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0040096", "EGF_Stimulus": "-1.37"}, {"ID": "FBgn0085812", "EGF_Stimulus": "1.3"}, {"ID": "FBgn0025726", "EGF_Stimulus": "-1.29"}, {"ID": "FBgn0027109", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0032039", "EGF_Stimulus": "0.94"}, {"ID": "FBgn0085489", "EGF_Stimulus": "-0.66"}, {"ID": "FBgn0039596", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0038582", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0032637", "EGF_Stimulus": "-1.03"}, {"ID": "FBgn0041245", "EGF_Stimulus": "1.71"}, {"ID": "FBgn0027600", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0034462", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0033902", "EGF_Stimulus": "-2.55"}, {"ID": "FBgn0042134", "EGF_Stimulus": "1.69"}, {"ID": "FBgn0040718", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0010660", "EGF_Stimulus": "-0.84"}, {"ID": "FBgn0020385", "EGF_Stimulus": "-0.83"}, {"ID": "FBgn0014163", "EGF_Stimulus": "-2"}, {"ID": "FBgn0038416", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0011566", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0034262", "EGF_Stimulus": "-0.7"}, {"ID": "FBgn0031319", "EGF_Stimulus": "-1.32"}, {"ID": "FBgn0030518", "EGF_Stimulus": "-0.26"}, {"ID": "FBgn0000592", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0050085", "EGF_Stimulus": "-0.73"}, {"ID": "FBgn0085476", "EGF_Stimulus": "-1.43"}, {"ID": "FBgn0033323", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0031048", "EGF_Stimulus": "-1.69"}, {"ID": "FBgn0039811", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0035208", "EGF_Stimulus": "1.52"}, {"ID": "FBgn0053213", "EGF_Stimulus": "-0.13"}, {"ID": "FBgn0019828", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0260857", "EGF_Stimulus": "-1.42"}, {"ID": "FBgn0034154", "EGF_Stimulus": "0.13"}, {"ID": "FBgn0250786", "EGF_Stimulus": "1.66"}, {"ID": "FBgn0024183", "EGF_Stimulus": "1.47"}, {"ID": "FBgn0037709", "EGF_Stimulus": "-2.25"}, {"ID": "FBgn0033688", "EGF_Stimulus": "0.1"}, {"ID": "FBgn0025637", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0052371", "EGF_Stimulus": "-0.47"}, {"ID": "FBgn0050403", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0038617", "EGF_Stimulus": "-0.76"}, {"ID": "FBgn0035338", "EGF_Stimulus": "1.19"}, {"ID": "FBgn0000928", "EGF_Stimulus": "1.36"}, {"ID": "FBgn0038845", "EGF_Stimulus": "-0.79"}, {"ID": "FBgn0050093", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0038394", "EGF_Stimulus": "-0.05"}, {"ID": "FBgn0036859", "EGF_Stimulus": "-0.88"}, {"ID": "FBgn0036302", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0046879", "EGF_Stimulus": "-0.94"}, {"ID": "FBgn0037594", "EGF_Stimulus": "0.13"}, {"ID": "FBgn0038701", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0032867", "EGF_Stimulus": "-0.83"}, {"ID": "FBgn0030390", "EGF_Stimulus": "-1.05"}, {"ID": "FBgn0037370", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0051550", "EGF_Stimulus": "-1.17"}, {"ID": "FBgn0052772", "EGF_Stimulus": "-0.94"}, {"ID": "FBgn0031756", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0050392", "EGF_Stimulus": "1.37"}, {"ID": "FBgn0038350", "EGF_Stimulus": "2.64"}, {"ID": "FBgn0035009", "EGF_Stimulus": "-1.66"}, {"ID": "FBgn0037702", "EGF_Stimulus": "1.28"}, {"ID": "FBgn0036161", "EGF_Stimulus": "0.21"}, {"ID": "FBgn0085321", "EGF_Stimulus": "-1.24"}, {"ID": "FBgn0015615", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0010548", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0010497", "EGF_Stimulus": "2.02"}, {"ID": "FBgn0031897", "EGF_Stimulus": "-1.69"}, {"ID": "FBgn0002632", "EGF_Stimulus": "-0.14"}, {"ID": "FBgn0034177", "EGF_Stimulus": "0.27"}, {"ID": "FBgn0038224", "EGF_Stimulus": "-1.05"}, {"ID": "FBgn0038133", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0085350", "EGF_Stimulus": "-0.34"}, {"ID": "FBgn0028622", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0036131", "EGF_Stimulus": "-0.36"}, {"ID": "FBgn0030511", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0030562", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0053182", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0030980", "EGF_Stimulus": "-0.48"}, {"ID": "FBgn0032390", "EGF_Stimulus": "-1.16"}, {"ID": "FBgn0010213", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0085196", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0033236", "EGF_Stimulus": "-1.39"}, {"ID": "FBgn0051391", "EGF_Stimulus": "-1.38"}, {"ID": "FBgn0031270", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0035830", "EGF_Stimulus": "1.46"}, {"ID": "FBgn0034251", "EGF_Stimulus": "0.23"}, {"ID": "FBgn0037796", "EGF_Stimulus": "-1.41"}, {"ID": "FBgn0031592", "EGF_Stimulus": "-0.35"}, {"ID": "FBgn0026393", "EGF_Stimulus": "-0.73"}, {"ID": "FBgn0032265", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0037059", "EGF_Stimulus": "-1.63"}, {"ID": "FBgn0039902", "EGF_Stimulus": "1.18"}, {"ID": "FBgn0037443", "EGF_Stimulus": "-0.84"}, {"ID": "FBgn0015283", "EGF_Stimulus": "-1.12"}, {"ID": "FBgn0035409", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0026737", "EGF_Stimulus": "-1.39"}, {"ID": "FBgn0035902", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0034515", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0033032", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0034299", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0031275", "EGF_Stimulus": "0.26"}, {"ID": "FBgn0083981", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0035827", "EGF_Stimulus": "1.24"}, {"ID": "FBgn0038756", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0038407", "EGF_Stimulus": "-0.61"}, {"ID": "FBgn0085328", "EGF_Stimulus": "-0.88"}, {"ID": "FBgn0015323", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0023090", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0010762", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0001961", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0029931", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0034335", "EGF_Stimulus": "0.1"}, {"ID": "FBgn0085271", "EGF_Stimulus": "1.39"}, {"ID": "FBgn0259170", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0036838", "EGF_Stimulus": "-0.18"}, {"ID": "FBgn0031564", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0033342", "EGF_Stimulus": "-0.18"}, {"ID": "FBgn0051875", "EGF_Stimulus": "-1.48"}, {"ID": "FBgn0035518", "EGF_Stimulus": "-0.32"}, {"ID": "FBgn0029532", "EGF_Stimulus": "-0.62"}, {"ID": "FBgn0014391", "EGF_Stimulus": "-1.49"}, {"ID": "FBgn0034140", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0034865", "EGF_Stimulus": "-0.86"}, {"ID": "FBgn0032620", "EGF_Stimulus": "1.38"}, {"ID": "FBgn0051199", "EGF_Stimulus": "-0.26"}, {"ID": "FBgn0037014", "EGF_Stimulus": "0.1"}, {"ID": "FBgn0035513", "EGF_Stimulus": "-0.78"}, {"ID": "FBgn0027539", "EGF_Stimulus": "-0.65"}, {"ID": "FBgn0029750", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0004391", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0015789", "EGF_Stimulus": "-1.76"}, {"ID": "FBgn0020307", "EGF_Stimulus": "-0.75"}, {"ID": "FBgn0037843", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0032109", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0040346", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0259163", "EGF_Stimulus": "-0.43"}, {"ID": "FBgn0035793", "EGF_Stimulus": "1.54"}, {"ID": "FBgn0002643", "EGF_Stimulus": "-4.34"}, {"ID": "FBgn0032505", "EGF_Stimulus": "-1.81"}, {"ID": "FBgn0028380", "EGF_Stimulus": "1.15"}, {"ID": "FBgn0031505", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0034907", "EGF_Stimulus": "-1.18"}, {"ID": "FBgn0039303", "EGF_Stimulus": "-0.21"}, {"ID": "FBgn0001291", "EGF_Stimulus": "1.63"}, {"ID": "FBgn0039659", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0261279", "EGF_Stimulus": "-1.47"}, {"ID": "FBgn0040308", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0032629", "EGF_Stimulus": "-1.65"}, {"ID": "FBgn0011761", "EGF_Stimulus": "-0.37"}, {"ID": "FBgn0030370", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0052016", "EGF_Stimulus": "-1.25"}, {"ID": "FBgn0025692", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0038974", "EGF_Stimulus": "-0.75"}, {"ID": "FBgn0052988", "EGF_Stimulus": "1.23"}, {"ID": "FBgn0260855", "EGF_Stimulus": "-1.87"}, {"ID": "FBgn0030506", "EGF_Stimulus": "-0.2"}, {"ID": "FBgn0035166", "EGF_Stimulus": "0.2"}, {"ID": "FBgn0032360", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0030406", "EGF_Stimulus": "1.6"}, {"ID": "FBgn0041621", "EGF_Stimulus": "-0.25"}, {"ID": "FBgn0036359", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0041102", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0033885", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0026143", "EGF_Stimulus": "-1.02"}, {"ID": "FBgn0051087", "EGF_Stimulus": "-1.19"}, {"ID": "FBgn0028695", "EGF_Stimulus": "-1.08"}, {"ID": "FBgn0037679", "EGF_Stimulus": "-0.91"}, {"ID": "FBgn0034911", "EGF_Stimulus": "-1"}, {"ID": "FBgn0033949", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0037050", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0261086", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0261871", "EGF_Stimulus": "-0.97"}, {"ID": "FBgn0029929", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0036756", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0039272", "EGF_Stimulus": "-0.56"}, {"ID": "FBgn0029003", "EGF_Stimulus": "-1.16"}, {"ID": "FBgn0038655", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0037307", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0003141", "EGF_Stimulus": "-1.02"}, {"ID": "FBgn0012344", "EGF_Stimulus": "0.14"}, {"ID": "FBgn0033109", "EGF_Stimulus": "-1.88"}, {"ID": "FBgn0014002", "EGF_Stimulus": "-0.7"}, {"ID": "FBgn0011774", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0053202", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0085339", "EGF_Stimulus": "1.34"}, {"ID": "FBgn0038610", "EGF_Stimulus": "-1.84"}, {"ID": "FBgn0037435", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0029870", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0036168", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0051638", "EGF_Stimulus": "1.5"}, {"ID": "FBgn0038172", "EGF_Stimulus": "-0.6"}, {"ID": "FBgn0011555", "EGF_Stimulus": "0.22"}, {"ID": "FBgn0051159", "EGF_Stimulus": "-0.94"}, {"ID": "FBgn0039023", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0038509", "EGF_Stimulus": "1.27"}, {"ID": "FBgn0038343", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0001992", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0003028", "EGF_Stimulus": "-0.94"}, {"ID": "FBgn0033859", "EGF_Stimulus": "1.43"}, {"ID": "FBgn0052685", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0000449", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0040356", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0029503", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0036128", "EGF_Stimulus": "-0.29"}, {"ID": "FBgn0029907", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0034166", "EGF_Stimulus": "-2.59"}, {"ID": "FBgn0033054", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0085376", "EGF_Stimulus": "-0.36"}, {"ID": "FBgn0031376", "EGF_Stimulus": "1.4"}, {"ID": "FBgn0033428", "EGF_Stimulus": "-1.27"}, {"ID": "FBgn0033916", "EGF_Stimulus": "1.57"}, {"ID": "FBgn0037744", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0004644", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0038880", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0032449", "EGF_Stimulus": "-1.93"}, {"ID": "FBgn0033069", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0030925", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0035411", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0038053", "EGF_Stimulus": "-1.98"}, {"ID": "FBgn0033958", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0051446", "EGF_Stimulus": "-1.38"}, {"ID": "FBgn0030067", "EGF_Stimulus": "-1.04"}, {"ID": "FBgn0020655", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0064766", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0039089", "EGF_Stimulus": "1.24"}, {"ID": "FBgn0261292", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0050020", "EGF_Stimulus": "-1.02"}, {"ID": "FBgn0036177", "EGF_Stimulus": "-0.25"}, {"ID": "FBgn0250849", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0028381", "EGF_Stimulus": "3.03"}, {"ID": "FBgn0038506", "EGF_Stimulus": "-1.02"}, {"ID": "FBgn0085225", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0014009", "EGF_Stimulus": "-2.14"}, {"ID": "FBgn0031085", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0036289", "EGF_Stimulus": "-0.62"}, {"ID": "FBgn0028996", "EGF_Stimulus": "-0.26"}, {"ID": "FBgn0010339", "EGF_Stimulus": "-0.83"}, {"ID": "FBgn0261592", "EGF_Stimulus": "-3.96"}, {"ID": "FBgn0260754", "EGF_Stimulus": "1.05"}, {"ID": "FBgn0003448", "EGF_Stimulus": "-1.33"}, {"ID": "FBgn0036774", "EGF_Stimulus": "2.05"}, {"ID": "FBgn0086694", "EGF_Stimulus": "1.23"}, {"ID": "FBgn0004921", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0040107", "EGF_Stimulus": "-0.59"}, {"ID": "FBgn0026314", "EGF_Stimulus": "-0.74"}, {"ID": "FBgn0050342", "EGF_Stimulus": "1.25"}, {"ID": "FBgn0024941", "EGF_Stimulus": "1.05"}, {"ID": "FBgn0032083", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0040387", "EGF_Stimulus": "-0.25"}, {"ID": "FBgn0037898", "EGF_Stimulus": "-1.81"}, {"ID": "FBgn0039233", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0001316", "EGF_Stimulus": "2.12"}, {"ID": "FBgn0037882", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0033942", "EGF_Stimulus": "0.16"}, {"ID": "FBgn0053207", "EGF_Stimulus": "3.06"}, {"ID": "FBgn0022359", "EGF_Stimulus": "-1.02"}, {"ID": "FBgn0039602", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0250867", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0034473", "EGF_Stimulus": "-0.65"}, {"ID": "FBgn0037170", "EGF_Stimulus": "-0.6"}, {"ID": "FBgn0083975", "EGF_Stimulus": "-1.35"}, {"ID": "FBgn0031534", "EGF_Stimulus": "1.18"}, {"ID": "FBgn0058045", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0031004", "EGF_Stimulus": "-0.36"}, {"ID": "FBgn0031260", "EGF_Stimulus": "-0.75"}, {"ID": "FBgn0038029", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0035194", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0040398", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0026199", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0039194", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0030995", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0037921", "EGF_Stimulus": "1.21"}, {"ID": "FBgn0031423", "EGF_Stimulus": "-0.13"}, {"ID": "FBgn0032800", "EGF_Stimulus": "-1.71"}, {"ID": "FBgn0037880", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0026089", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0010398", "EGF_Stimulus": "-0.32"}, {"ID": "FBgn0017550", "EGF_Stimulus": "-0.29"}, {"ID": "FBgn0035981", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0025885", "EGF_Stimulus": "-0.6"}, {"ID": "FBgn0037686", "EGF_Stimulus": "-1.34"}, {"ID": "FBgn0031331", "EGF_Stimulus": "-0.76"}, {"ID": "FBgn0034246", "EGF_Stimulus": "1.21"}, {"ID": "FBgn0085256", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0050000", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0028895", "EGF_Stimulus": "-1.52"}, {"ID": "FBgn0034047", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0039431", "EGF_Stimulus": "-0.65"}, {"ID": "FBgn0051424", "EGF_Stimulus": "-1.48"}, {"ID": "FBgn0087039", "EGF_Stimulus": "1.3"}, {"ID": "FBgn0053093", "EGF_Stimulus": "-1.02"}, {"ID": "FBgn0033644", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0053290", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0004781", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0052855", "EGF_Stimulus": "-1.24"}, {"ID": "FBgn0031678", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0028418", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0038260", "EGF_Stimulus": "1.02"}, {"ID": "FBgn0260643", "EGF_Stimulus": "-0.94"}, {"ID": "FBgn0031012", "EGF_Stimulus": "-0.66"}, {"ID": "FBgn0046704", "EGF_Stimulus": "-0.3"}, {"ID": "FBgn0040931", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0033590", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0000560", "EGF_Stimulus": "-0.76"}, {"ID": "FBgn0052137", "EGF_Stimulus": "-0.22"}, {"ID": "FBgn0032650", "EGF_Stimulus": "1.04"}, {"ID": "FBgn0023523", "EGF_Stimulus": "-0.48"}, {"ID": "FBgn0030016", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0004648", "EGF_Stimulus": "1.14"}, {"ID": "FBgn0037325", "EGF_Stimulus": "1"}, {"ID": "FBgn0051189", "EGF_Stimulus": "1.04"}, {"ID": "FBgn0260936", "EGF_Stimulus": "1.22"}, {"ID": "FBgn0035279", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0051324", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0038069", "EGF_Stimulus": "1"}, {"ID": "FBgn0259986", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0036271", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0034997", "EGF_Stimulus": "-1.27"}, {"ID": "FBgn0002930", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0033367", "EGF_Stimulus": "0.27"}, {"ID": "FBgn0031734", "EGF_Stimulus": "1.6"}, {"ID": "FBgn0032002", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0039874", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0037092", "EGF_Stimulus": "-0.08"}, {"ID": "FBgn0053988", "EGF_Stimulus": "1.13"}, {"ID": "FBgn0032728", "EGF_Stimulus": "-0.61"}, {"ID": "FBgn0004240", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0040321", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0050499", "EGF_Stimulus": "1.22"}, {"ID": "FBgn0023083", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0034255", "EGF_Stimulus": "1.27"}, {"ID": "FBgn0037240", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0061435", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0037365", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0030429", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0015519", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0010043", "EGF_Stimulus": "-1.57"}, {"ID": "FBgn0034195", "EGF_Stimulus": "0.21"}, {"ID": "FBgn0052333", "EGF_Stimulus": "1.27"}, {"ID": "FBgn0051852", "EGF_Stimulus": "-1.82"}, {"ID": "FBgn0031393", "EGF_Stimulus": "1.87"}, {"ID": "FBgn0039301", "EGF_Stimulus": "0.14"}, {"ID": "FBgn0039530", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0052603", "EGF_Stimulus": "-1.21"}, {"ID": "FBgn0034351", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0036107", "EGF_Stimulus": "-1.1"}, {"ID": "FBgn0250814", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0034521", "EGF_Stimulus": "1.15"}, {"ID": "FBgn0050289", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0032492", "EGF_Stimulus": "0.22"}, {"ID": "FBgn0030614", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0034367", "EGF_Stimulus": "1.64"}, {"ID": "FBgn0020887", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0036697", "EGF_Stimulus": "-0.19"}, {"ID": "FBgn0034356", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0036860", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0003527", "EGF_Stimulus": "1.7"}, {"ID": "FBgn0052700", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0038294", "EGF_Stimulus": "-0.15"}, {"ID": "FBgn0036446", "EGF_Stimulus": "0.18"}, {"ID": "FBgn0033677", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0028667", "EGF_Stimulus": "-0.54"}, {"ID": "FBgn0028868", "EGF_Stimulus": "-2.35"}, {"ID": "FBgn0037620", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0025709", "EGF_Stimulus": "0.27"}, {"ID": "FBgn0038291", "EGF_Stimulus": "-0.52"}, {"ID": "FBgn0032720", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0029848", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0016693", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0052380", "EGF_Stimulus": "-0.47"}, {"ID": "FBgn0035173", "EGF_Stimulus": "-1.1"}, {"ID": "FBgn0038683", "EGF_Stimulus": "-1.73"}, {"ID": "FBgn0020278", "EGF_Stimulus": "1.63"}, {"ID": "FBgn0260430", "EGF_Stimulus": "-0.73"}, {"ID": "FBgn0038113", "EGF_Stimulus": "-0.4"}, {"ID": "FBgn0039757", "EGF_Stimulus": "-3.27"}, {"ID": "FBgn0010296", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0066292", "EGF_Stimulus": "-0.26"}, {"ID": "FBgn0039827", "EGF_Stimulus": "1.47"}, {"ID": "FBgn0031465", "EGF_Stimulus": "-1.06"}, {"ID": "FBgn0053082", "EGF_Stimulus": "1.25"}, {"ID": "FBgn0051248", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0034829", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0035085", "EGF_Stimulus": "1.41"}, {"ID": "FBgn0037292", "EGF_Stimulus": "-0.22"}, {"ID": "FBgn0030807", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0036577", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0261049", "EGF_Stimulus": "-1.09"}, {"ID": "FBgn0030874", "EGF_Stimulus": "-0.75"}, {"ID": "FBgn0050376", "EGF_Stimulus": "1"}, {"ID": "FBgn0039128", "EGF_Stimulus": "-0.88"}, {"ID": "FBgn0011603", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0052055", "EGF_Stimulus": "2.08"}, {"ID": "FBgn0031910", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0032221", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0030224", "EGF_Stimulus": "-0.61"}, {"ID": "FBgn0036360", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0035272", "EGF_Stimulus": "-1.88"}, {"ID": "FBgn0054046", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0051080", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0028856", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0030634", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0026718", "EGF_Stimulus": "-0.15"}, {"ID": "FBgn0034985", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0260477", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0027779", "EGF_Stimulus": "-0.4"}, {"ID": "FBgn0039751", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0028848", "EGF_Stimulus": "-1.22"}, {"ID": "FBgn0031378", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0001491", "EGF_Stimulus": "1.22"}, {"ID": "FBgn0033970", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0040063", "EGF_Stimulus": "0.08"}, {"ID": "FBgn0052442", "EGF_Stimulus": "1.19"}, {"ID": "FBgn0020521", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0260010", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0038978", "EGF_Stimulus": "-1.06"}, {"ID": "FBgn0027095", "EGF_Stimulus": "-0.92"}, {"ID": "FBgn0030657", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0052635", "EGF_Stimulus": "1.48"}, {"ID": "FBgn0002939", "EGF_Stimulus": "-1.05"}, {"ID": "FBgn0030438", "EGF_Stimulus": "-0.22"}, {"ID": "FBgn0031489", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0001224", "EGF_Stimulus": "-1.44"}, {"ID": "FBgn0261068", "EGF_Stimulus": "2.51"}, {"ID": "FBgn0260971", "EGF_Stimulus": "-0.11"}, {"ID": "FBgn0036220", "EGF_Stimulus": "0.25"}, {"ID": "FBgn0033446", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0038645", "EGF_Stimulus": "0.26"}, {"ID": "FBgn0030061", "EGF_Stimulus": "-1.1"}, {"ID": "FBgn0033897", "EGF_Stimulus": "-4.62"}, {"ID": "FBgn0037087", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0026309", "EGF_Stimulus": "-0.59"}, {"ID": "FBgn0037276", "EGF_Stimulus": "-0.08"}, {"ID": "FBgn0261268", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0001624", "EGF_Stimulus": "-0.75"}, {"ID": "FBgn0015872", "EGF_Stimulus": "-0.52"}, {"ID": "FBgn0031345", "EGF_Stimulus": "-0.79"}, {"ID": "FBgn0037491", "EGF_Stimulus": "-0.19"}, {"ID": "FBgn0261629", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0031627", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0033551", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0030905", "EGF_Stimulus": "1.32"}, {"ID": "FBgn0000454", "EGF_Stimulus": "-0.23"}, {"ID": "FBgn0031657", "EGF_Stimulus": "-0.19"}, {"ID": "FBgn0002901", "EGF_Stimulus": "1.61"}, {"ID": "FBgn0005638", "EGF_Stimulus": "-2.39"}, {"ID": "FBgn0032250", "EGF_Stimulus": "-1.12"}, {"ID": "FBgn0013301", "EGF_Stimulus": "1.44"}, {"ID": "FBgn0037016", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0051769", "EGF_Stimulus": "-1.47"}, {"ID": "FBgn0023509", "EGF_Stimulus": "-2.52"}, {"ID": "FBgn0050161", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0037137", "EGF_Stimulus": "-1.12"}, {"ID": "FBgn0025186", "EGF_Stimulus": "1.47"}, {"ID": "FBgn0037236", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0036601", "EGF_Stimulus": "-0.12"}, {"ID": "FBgn0035948", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0032014", "EGF_Stimulus": "1.3"}, {"ID": "FBgn0037541", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0029822", "EGF_Stimulus": "-5.64"}, {"ID": "FBgn0010226", "EGF_Stimulus": "2.58"}, {"ID": "FBgn0063493", "EGF_Stimulus": "-0.56"}, {"ID": "FBgn0036373", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0034963", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0047038", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0052432", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0053462", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0039698", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0002862", "EGF_Stimulus": "-0.21"}, {"ID": "FBgn0035470", "EGF_Stimulus": "1.37"}, {"ID": "FBgn0010433", "EGF_Stimulus": "1.01"}, {"ID": "FBgn0034880", "EGF_Stimulus": "-0.73"}, {"ID": "FBgn0000535", "EGF_Stimulus": "-0.03"}, {"ID": "FBgn0015583", "EGF_Stimulus": "-1.18"}, {"ID": "FBgn0260460", "EGF_Stimulus": "1.31"}, {"ID": "FBgn0037299", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0051784", "EGF_Stimulus": "-1.19"}, {"ID": "FBgn0038640", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0051050", "EGF_Stimulus": "-0.54"}, {"ID": "FBgn0038866", "EGF_Stimulus": "-1.07"}, {"ID": "FBgn0004913", "EGF_Stimulus": "-1.65"}, {"ID": "FBgn0037710", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0038769", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0033867", "EGF_Stimulus": "1.21"}, {"ID": "FBgn0010750", "EGF_Stimulus": "-0.39"}, {"ID": "FBgn0027562", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0260655", "EGF_Stimulus": "1.04"}, {"ID": "FBgn0083962", "EGF_Stimulus": "-0.99"}, {"ID": "FBgn0024294", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0003545", "EGF_Stimulus": "1.09"}, {"ID": "FBgn0033426", "EGF_Stimulus": "-2.36"}, {"ID": "FBgn0030280", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0038853", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0039609", "EGF_Stimulus": "-0.56"}, {"ID": "FBgn0036502", "EGF_Stimulus": "-1.26"}, {"ID": "FBgn0034598", "EGF_Stimulus": "0.05"}, {"ID": "FBgn0036229", "EGF_Stimulus": "-0.37"}, {"ID": "FBgn0005427", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0069969", "EGF_Stimulus": "1.84"}, {"ID": "FBgn0024997", "EGF_Stimulus": "-0.55"}, {"ID": "FBgn0025334", "EGF_Stimulus": "-0.9"}, {"ID": "FBgn0035959", "EGF_Stimulus": "-0.94"}, {"ID": "FBgn0037940", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0035468", "EGF_Stimulus": "1.15"}, {"ID": "FBgn0036785", "EGF_Stimulus": "-0.94"}, {"ID": "FBgn0040232", "EGF_Stimulus": "-0.64"}, {"ID": "FBgn0001994", "EGF_Stimulus": "3.09"}, {"ID": "FBgn0021875", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0020248", "EGF_Stimulus": "-1.31"}, {"ID": "FBgn0037339", "EGF_Stimulus": "-1.36"}, {"ID": "FBgn0035724", "EGF_Stimulus": "1.11"}, {"ID": "FBgn0034058", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0036075", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0036367", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0003091", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0034230", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0260763", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0028538", "EGF_Stimulus": "1.06"}, {"ID": "FBgn0034497", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0052196", "EGF_Stimulus": "-0.83"}, {"ID": "FBgn0038951", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0085305", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0000370", "EGF_Stimulus": "2.03"}, {"ID": "FBgn0031320", "EGF_Stimulus": "-0.34"}, {"ID": "FBgn0039691", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0085444", "EGF_Stimulus": "-3.1"}, {"ID": "FBgn0041337", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0000377", "EGF_Stimulus": "1.69"}, {"ID": "FBgn0029117", "EGF_Stimulus": "-1"}, {"ID": "FBgn0030243", "EGF_Stimulus": "-0.56"}, {"ID": "FBgn0028894", "EGF_Stimulus": "-0.06"}, {"ID": "FBgn0052832", "EGF_Stimulus": "-1"}, {"ID": "FBgn0036723", "EGF_Stimulus": "-0.46"}, {"ID": "FBgn0040985", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0085318", "EGF_Stimulus": "-0.84"}, {"ID": "FBgn0032216", "EGF_Stimulus": "-0.74"}, {"ID": "FBgn0039635", "EGF_Stimulus": "-0.19"}, {"ID": "FBgn0039518", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0037958", "EGF_Stimulus": "-2.13"}, {"ID": "FBgn0001104", "EGF_Stimulus": "1.29"}, {"ID": "FBgn0036096", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0035073", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0033259", "EGF_Stimulus": "-0.61"}, {"ID": "FBgn0015034", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0016120", "EGF_Stimulus": "-1.81"}, {"ID": "FBgn0001253", "EGF_Stimulus": "-0.66"}, {"ID": "FBgn0027359", "EGF_Stimulus": "0.2"}, {"ID": "FBgn0039167", "EGF_Stimulus": "-0.7"}, {"ID": "FBgn0032168", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0051150", "EGF_Stimulus": "1.11"}, {"ID": "FBgn0026872", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0031033", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0020642", "EGF_Stimulus": "-0.23"}, {"ID": "FBgn0032176", "EGF_Stimulus": "1.04"}, {"ID": "FBgn0261108", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0014031", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0052547", "EGF_Stimulus": "-0.89"}, {"ID": "FBgn0004573", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0035743", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0028950", "EGF_Stimulus": "-0.95"}, {"ID": "FBgn0003373", "EGF_Stimulus": "-0.13"}, {"ID": "FBgn0013718", "EGF_Stimulus": "-1.03"}, {"ID": "FBgn0039465", "EGF_Stimulus": "1.51"}, {"ID": "FBgn0025592", "EGF_Stimulus": "-0.3"}, {"ID": "FBgn0034728", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0003089", "EGF_Stimulus": "0.25"}, {"ID": "FBgn0261609", "EGF_Stimulus": "-1.91"}, {"ID": "FBgn0027279", "EGF_Stimulus": "-1.77"}, {"ID": "FBgn0050091", "EGF_Stimulus": "1.75"}, {"ID": "FBgn0037756", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0036550", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0024432", "EGF_Stimulus": "-1.71"}, {"ID": "FBgn0034898", "EGF_Stimulus": "-1.19"}, {"ID": "FBgn0260439", "EGF_Stimulus": "0.06"}, {"ID": "FBgn0032946", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0031633", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0023513", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0024249", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0038135", "EGF_Stimulus": "2.21"}, {"ID": "FBgn0035631", "EGF_Stimulus": "-0.61"}, {"ID": "FBgn0054028", "EGF_Stimulus": "-0.31"}, {"ID": "FBgn0260959", "EGF_Stimulus": "-1.22"}, {"ID": "FBgn0027569", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0015793", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0031170", "EGF_Stimulus": "1.74"}, {"ID": "FBgn0051038", "EGF_Stimulus": "-0.94"}, {"ID": "FBgn0026879", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0003721", "EGF_Stimulus": "-1.08"}, {"ID": "FBgn0034411", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0025456", "EGF_Stimulus": "-0.75"}, {"ID": "FBgn0031920", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0003319", "EGF_Stimulus": "-0.26"}, {"ID": "FBgn0051294", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0052220", "EGF_Stimulus": "-1.37"}, {"ID": "FBgn0033121", "EGF_Stimulus": "1.73"}, {"ID": "FBgn0034694", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0051093", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0038909", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0040273", "EGF_Stimulus": "1.3"}, {"ID": "FBgn0038165", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0037616", "EGF_Stimulus": "1.12"}, {"ID": "FBgn0040384", "EGF_Stimulus": "1.27"}, {"ID": "FBgn0036711", "EGF_Stimulus": "1.23"}, {"ID": "FBgn0031875", "EGF_Stimulus": "-0.07"}, {"ID": "FBgn0065035", "EGF_Stimulus": "-1.4"}, {"ID": "FBgn0259822", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0039258", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0260965", "EGF_Stimulus": "-1.18"}, {"ID": "FBgn0025739", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0085438", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0038789", "EGF_Stimulus": "0.3"}, {"ID": "FBgn0058439", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0032339", "EGF_Stimulus": "-0.46"}, {"ID": "FBgn0261287", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0037918", "EGF_Stimulus": "1.23"}, {"ID": "FBgn0026141", "EGF_Stimulus": "-1.56"}, {"ID": "FBgn0040345", "EGF_Stimulus": "-0.13"}, {"ID": "FBgn0050416", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0031935", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0036585", "EGF_Stimulus": "-0.59"}, {"ID": "FBgn0032385", "EGF_Stimulus": "-1.25"}, {"ID": "FBgn0032703", "EGF_Stimulus": "-0.1"}, {"ID": "FBgn0050325", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0036626", "EGF_Stimulus": "1.26"}, {"ID": "FBgn0027580", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0032680", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0032809", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0037518", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0052486", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0037222", "EGF_Stimulus": "1.62"}, {"ID": "FBgn0086915", "EGF_Stimulus": "-0.22"}, {"ID": "FBgn0085447", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0031306", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0035676", "EGF_Stimulus": "-0.43"}, {"ID": "FBgn0027951", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0051089", "EGF_Stimulus": "0.96"}, {"ID": "FBgn0033850", "EGF_Stimulus": "-1.52"}, {"ID": "FBgn0029959", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0034789", "EGF_Stimulus": "1.02"}, {"ID": "FBgn0002899", "EGF_Stimulus": "-0.9"}, {"ID": "FBgn0034012", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0022699", "EGF_Stimulus": "-1.49"}, {"ID": "FBgn0034460", "EGF_Stimulus": "-0.8"}, {"ID": "FBgn0040940", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0040373", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0030114", "EGF_Stimulus": "-0.47"}, {"ID": "FBgn0004364", "EGF_Stimulus": "-0.56"}, {"ID": "FBgn0037436", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0039688", "EGF_Stimulus": "1.27"}, {"ID": "FBgn0033729", "EGF_Stimulus": "-1.02"}, {"ID": "FBgn0030982", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0023550", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0034219", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0031768", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0035348", "EGF_Stimulus": "-0.28"}, {"ID": "FBgn0035437", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0031287", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0036035", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0031952", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0037852", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0029952", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0037297", "EGF_Stimulus": "1.3"}, {"ID": "FBgn0038046", "EGF_Stimulus": "1.15"}, {"ID": "FBgn0037409", "EGF_Stimulus": "-1.25"}, {"ID": "FBgn0026015", "EGF_Stimulus": "-1.02"}, {"ID": "FBgn0038147", "EGF_Stimulus": "-1.76"}, {"ID": "FBgn0036009", "EGF_Stimulus": "1.2"}, {"ID": "FBgn0035032", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0037696", "EGF_Stimulus": "1.73"}, {"ID": "FBgn0033757", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0033351", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0033465", "EGF_Stimulus": "-0.77"}, {"ID": "FBgn0026479", "EGF_Stimulus": "0.12"}, {"ID": "FBgn0037534", "EGF_Stimulus": "-1.22"}, {"ID": "FBgn0037023", "EGF_Stimulus": "-0.67"}, {"ID": "FBgn0025644", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0032373", "EGF_Stimulus": "-2.28"}, {"ID": "FBgn0039625", "EGF_Stimulus": "-0.46"}, {"ID": "FBgn0041712", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0033177", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0003464", "EGF_Stimulus": "-1.18"}, {"ID": "FBgn0014037", "EGF_Stimulus": "2"}, {"ID": "FBgn0036738", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0035445", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0022288", "EGF_Stimulus": "-0.78"}, {"ID": "FBgn0085233", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0030529", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0051807", "EGF_Stimulus": "-0.77"}, {"ID": "FBgn0030298", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0002781", "EGF_Stimulus": "1.94"}, {"ID": "FBgn0030361", "EGF_Stimulus": "-1.99"}, {"ID": "FBgn0085450", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0039232", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0037736", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0033377", "EGF_Stimulus": "0.05"}, {"ID": "FBgn0026576", "EGF_Stimulus": "-0.95"}, {"ID": "FBgn0035475", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0031739", "EGF_Stimulus": "1.57"}, {"ID": "FBgn0043842", "EGF_Stimulus": "-3.63"}, {"ID": "FBgn0051040", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0053554", "EGF_Stimulus": "-4.38"}, {"ID": "FBgn0002645", "EGF_Stimulus": "-1.01"}, {"ID": "FBgn0024365", "EGF_Stimulus": "1.45"}, {"ID": "FBgn0000109", "EGF_Stimulus": "-0.34"}, {"ID": "FBgn0261671", "EGF_Stimulus": "1.33"}, {"ID": "FBgn0038071", "EGF_Stimulus": "1.19"}, {"ID": "FBgn0037815", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0038526", "EGF_Stimulus": "-0.16"}, {"ID": "FBgn0052076", "EGF_Stimulus": "-0.4"}, {"ID": "FBgn0025832", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0051773", "EGF_Stimulus": "1.14"}, {"ID": "FBgn0031388", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0031494", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0001077", "EGF_Stimulus": "-0.94"}, {"ID": "FBgn0044030", "EGF_Stimulus": "-0.33"}, {"ID": "FBgn0040365", "EGF_Stimulus": "0.26"}, {"ID": "FBgn0036211", "EGF_Stimulus": "-0.67"}, {"ID": "FBgn0039226", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0004436", "EGF_Stimulus": "-1.65"}, {"ID": "FBgn0032834", "EGF_Stimulus": "-1.64"}, {"ID": "FBgn0033845", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0038084", "EGF_Stimulus": "-1.55"}, {"ID": "FBgn0042199", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0037556", "EGF_Stimulus": "-0.55"}, {"ID": "FBgn0031575", "EGF_Stimulus": "-1.05"}, {"ID": "FBgn0029958", "EGF_Stimulus": "-0.39"}, {"ID": "FBgn0261393", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0036291", "EGF_Stimulus": "-1.26"}, {"ID": "FBgn0004957", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0032434", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0035601", "EGF_Stimulus": "1.03"}, {"ID": "FBgn0040723", "EGF_Stimulus": "1.34"}, {"ID": "FBgn0014863", "EGF_Stimulus": "-0.21"}, {"ID": "FBgn0029861", "EGF_Stimulus": "-0.39"}, {"ID": "FBgn0013756", "EGF_Stimulus": "-1.02"}, {"ID": "FBgn0032997", "EGF_Stimulus": "0.3"}, {"ID": "FBgn0003218", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0011672", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0033358", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0014469", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0028554", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0037531", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0029932", "EGF_Stimulus": "-0.65"}, {"ID": "FBgn0033234", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0016123", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0259697", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0083141", "EGF_Stimulus": "-1.07"}, {"ID": "FBgn0069354", "EGF_Stimulus": "-0.34"}, {"ID": "FBgn0034506", "EGF_Stimulus": "-0.35"}, {"ID": "FBgn0023170", "EGF_Stimulus": "-3.39"}, {"ID": "FBgn0039591", "EGF_Stimulus": "-0.86"}, {"ID": "FBgn0030177", "EGF_Stimulus": "0.17"}, {"ID": "FBgn0086676", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0004401", "EGF_Stimulus": "1.44"}, {"ID": "FBgn0259832", "EGF_Stimulus": "1.73"}, {"ID": "FBgn0029588", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0039528", "EGF_Stimulus": "-1.03"}, {"ID": "FBgn0250821", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0034948", "EGF_Stimulus": "2.32"}, {"ID": "FBgn0033405", "EGF_Stimulus": "2.71"}, {"ID": "FBgn0032821", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0051229", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0037185", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0016081", "EGF_Stimulus": "-0.36"}, {"ID": "FBgn0029660", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0020269", "EGF_Stimulus": "1.35"}, {"ID": "FBgn0040736", "EGF_Stimulus": "-1.39"}, {"ID": "FBgn0028360", "EGF_Stimulus": "-0.57"}, {"ID": "FBgn0015399", "EGF_Stimulus": "-0.61"}, {"ID": "FBgn0010240", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0027080", "EGF_Stimulus": "1.05"}, {"ID": "FBgn0030314", "EGF_Stimulus": "-1.25"}, {"ID": "FBgn0053143", "EGF_Stimulus": "1.17"}, {"ID": "FBgn0028962", "EGF_Stimulus": "1.14"}, {"ID": "FBgn0039118", "EGF_Stimulus": "-0.91"}, {"ID": "FBgn0030245", "EGF_Stimulus": "1"}, {"ID": "FBgn0038566", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0035904", "EGF_Stimulus": "-0.15"}, {"ID": "FBgn0036191", "EGF_Stimulus": "1.02"}, {"ID": "FBgn0033783", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0011589", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0038694", "EGF_Stimulus": "-0.73"}, {"ID": "FBgn0085355", "EGF_Stimulus": "-0.56"}, {"ID": "FBgn0036058", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0039051", "EGF_Stimulus": "-0.22"}, {"ID": "FBgn0085455", "EGF_Stimulus": "1.04"}, {"ID": "FBgn0051956", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0050272", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0038774", "EGF_Stimulus": "-1.69"}, {"ID": "FBgn0028838", "EGF_Stimulus": "1.69"}, {"ID": "FBgn0031726", "EGF_Stimulus": "1.32"}, {"ID": "FBgn0011638", "EGF_Stimulus": "-0.66"}, {"ID": "FBgn0029948", "EGF_Stimulus": "1.39"}, {"ID": "FBgn0040735", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0030970", "EGF_Stimulus": "-0.64"}, {"ID": "FBgn0030159", "EGF_Stimulus": "0.14"}, {"ID": "FBgn0029137", "EGF_Stimulus": "-0.63"}, {"ID": "FBgn0033188", "EGF_Stimulus": "1.14"}, {"ID": "FBgn0032204", "EGF_Stimulus": "-1.11"}, {"ID": "FBgn0025702", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0259818", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0036278", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0030790", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0261618", "EGF_Stimulus": "1.11"}, {"ID": "FBgn0011570", "EGF_Stimulus": "0.2"}, {"ID": "FBgn0035263", "EGF_Stimulus": "-0.57"}, {"ID": "FBgn0030932", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0026189", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0038009", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0039584", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0027556", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0035245", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0031817", "EGF_Stimulus": "-1.37"}, {"ID": "FBgn0035068", "EGF_Stimulus": "-0.83"}, {"ID": "FBgn0032078", "EGF_Stimulus": "-0.52"}, {"ID": "FBgn0051806", "EGF_Stimulus": "4.88"}, {"ID": "FBgn0030675", "EGF_Stimulus": "-1.33"}, {"ID": "FBgn0031791", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0030208", "EGF_Stimulus": "-0.92"}, {"ID": "FBgn0040607", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0003510", "EGF_Stimulus": "1.34"}, {"ID": "FBgn0031044", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0041182", "EGF_Stimulus": "1.28"}, {"ID": "FBgn0038125", "EGF_Stimulus": "-0.06"}, {"ID": "FBgn0035586", "EGF_Stimulus": "-0.54"}, {"ID": "FBgn0053506", "EGF_Stimulus": "-0.67"}, {"ID": "FBgn0034458", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0050423", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0035572", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0034490", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0034783", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0040334", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0040524", "EGF_Stimulus": "-1.39"}, {"ID": "FBgn0039702", "EGF_Stimulus": "1.19"}, {"ID": "FBgn0030881", "EGF_Stimulus": "-1.37"}, {"ID": "FBgn0261552", "EGF_Stimulus": "-3.4"}, {"ID": "FBgn0052675", "EGF_Stimulus": "0.96"}, {"ID": "FBgn0015039", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0259240", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0027780", "EGF_Stimulus": "-0.09"}, {"ID": "FBgn0035131", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0036769", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0038838", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0041087", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0023407", "EGF_Stimulus": "1.13"}, {"ID": "FBgn0000520", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0037290", "EGF_Stimulus": "0.09"}, {"ID": "FBgn0026432", "EGF_Stimulus": "-0.15"}, {"ID": "FBgn0032648", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0030334", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0037123", "EGF_Stimulus": "0.19"}, {"ID": "FBgn0036687", "EGF_Stimulus": "-1.24"}, {"ID": "FBgn0015359", "EGF_Stimulus": "0.19"}, {"ID": "FBgn0037153", "EGF_Stimulus": "-1.04"}, {"ID": "FBgn0036242", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0033615", "EGF_Stimulus": "-1.02"}, {"ID": "FBgn0036468", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0039079", "EGF_Stimulus": "-0.43"}, {"ID": "FBgn0039576", "EGF_Stimulus": "-0.88"}, {"ID": "FBgn0030723", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0032876", "EGF_Stimulus": "-1.82"}, {"ID": "FBgn0000028", "EGF_Stimulus": "-0.72"}, {"ID": "FBgn0003411", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0034588", "EGF_Stimulus": "1.44"}, {"ID": "FBgn0034820", "EGF_Stimulus": "-0.83"}, {"ID": "FBgn0036643", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0036985", "EGF_Stimulus": "-0.09"}, {"ID": "FBgn0036593", "EGF_Stimulus": "-0.77"}, {"ID": "FBgn0033775", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0051814", "EGF_Stimulus": "-0.18"}, {"ID": "FBgn0039503", "EGF_Stimulus": "-1.1"}, {"ID": "FBgn0031745", "EGF_Stimulus": "-0.21"}, {"ID": "FBgn0027497", "EGF_Stimulus": "-1.31"}, {"ID": "FBgn0030073", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0027889", "EGF_Stimulus": "-1.12"}, {"ID": "FBgn0034377", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0051712", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0024238", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0053526", "EGF_Stimulus": "-4.33"}, {"ID": "FBgn0030968", "EGF_Stimulus": "-0.54"}, {"ID": "FBgn0036895", "EGF_Stimulus": "-0.26"}, {"ID": "FBgn0032614", "EGF_Stimulus": "-0.9"}, {"ID": "FBgn0028420", "EGF_Stimulus": "-2.37"}, {"ID": "FBgn0051950", "EGF_Stimulus": "-0.83"}, {"ID": "FBgn0030174", "EGF_Stimulus": "-0.8"}, {"ID": "FBgn0032096", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0030320", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0030598", "EGF_Stimulus": "-0.56"}, {"ID": "FBgn0037717", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0034315", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0039616", "EGF_Stimulus": "1.03"}, {"ID": "FBgn0050374", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0039864", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0043457", "EGF_Stimulus": "-0.66"}, {"ID": "FBgn0052109", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0032163", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0035121", "EGF_Stimulus": "-1.26"}, {"ID": "FBgn0000279", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0039205", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0032487", "EGF_Stimulus": "-0.7"}, {"ID": "FBgn0037070", "EGF_Stimulus": "-2.15"}, {"ID": "FBgn0033096", "EGF_Stimulus": "-0.29"}, {"ID": "FBgn0054012", "EGF_Stimulus": "-0.78"}, {"ID": "FBgn0032414", "EGF_Stimulus": "-1.39"}, {"ID": "FBgn0031022", "EGF_Stimulus": "-0.82"}, {"ID": "FBgn0026616", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0030955", "EGF_Stimulus": "-0.2"}, {"ID": "FBgn0029833", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0259223", "EGF_Stimulus": "-0.32"}, {"ID": "FBgn0259742", "EGF_Stimulus": "-0.6"}, {"ID": "FBgn0030329", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0038474", "EGF_Stimulus": "-0.59"}, {"ID": "FBgn0053198", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0035044", "EGF_Stimulus": "-0.81"}, {"ID": "FBgn0037487", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0010114", "EGF_Stimulus": "1.17"}, {"ID": "FBgn0031055", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0020381", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0038819", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0039943", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0030456", "EGF_Stimulus": "-0.47"}, {"ID": "FBgn0032350", "EGF_Stimulus": "-0.09"}, {"ID": "FBgn0038366", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0034885", "EGF_Stimulus": "0.14"}, {"ID": "FBgn0032132", "EGF_Stimulus": "-0.62"}, {"ID": "FBgn0085367", "EGF_Stimulus": "-1.05"}, {"ID": "FBgn0039033", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0085462", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0032195", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0010424", "EGF_Stimulus": "1.84"}, {"ID": "FBgn0260793", "EGF_Stimulus": "-1.01"}, {"ID": "FBgn0039093", "EGF_Stimulus": "-1.08"}, {"ID": "FBgn0033762", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0030304", "EGF_Stimulus": "-1.01"}, {"ID": "FBgn0004132", "EGF_Stimulus": "1.02"}, {"ID": "FBgn0035866", "EGF_Stimulus": "1.28"}, {"ID": "FBgn0004511", "EGF_Stimulus": "-0.46"}, {"ID": "FBgn0043362", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0037140", "EGF_Stimulus": "1.37"}, {"ID": "FBgn0051259", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0032683", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0010602", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0040899", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0010470", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0085295", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0028563", "EGF_Stimulus": "1.1"}, {"ID": "FBgn0053317", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0033744", "EGF_Stimulus": "-0.81"}, {"ID": "FBgn0001308", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0034308", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0030376", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0003941", "EGF_Stimulus": "-4.72"}, {"ID": "FBgn0033631", "EGF_Stimulus": "1.41"}, {"ID": "FBgn0032598", "EGF_Stimulus": "1.82"}, {"ID": "FBgn0015321", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0053002", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0030080", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0025624", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0028901", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0028944", "EGF_Stimulus": "-1.45"}, {"ID": "FBgn0031944", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0039475", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0261563", "EGF_Stimulus": "-0.65"}, {"ID": "FBgn0036991", "EGF_Stimulus": "0.05"}, {"ID": "FBgn0036089", "EGF_Stimulus": "-0.52"}, {"ID": "FBgn0034800", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0033344", "EGF_Stimulus": "1.09"}, {"ID": "FBgn0083943", "EGF_Stimulus": "-0.96"}, {"ID": "FBgn0037412", "EGF_Stimulus": "-0.74"}, {"ID": "FBgn0040397", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0034654", "EGF_Stimulus": "-1.72"}, {"ID": "FBgn0037955", "EGF_Stimulus": "1.34"}, {"ID": "FBgn0028853", "EGF_Stimulus": "-1.23"}, {"ID": "FBgn0085480", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0051368", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0052102", "EGF_Stimulus": "-0.64"}, {"ID": "FBgn0037901", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0037039", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0033880", "EGF_Stimulus": "1.09"}, {"ID": "FBgn0035807", "EGF_Stimulus": "-0.54"}, {"ID": "FBgn0029746", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0035039", "EGF_Stimulus": "1.09"}, {"ID": "FBgn0050054", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0030440", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0015591", "EGF_Stimulus": "1.66"}, {"ID": "FBgn0038894", "EGF_Stimulus": "-0.81"}, {"ID": "FBgn0028646", "EGF_Stimulus": "-0.57"}, {"ID": "FBgn0014368", "EGF_Stimulus": "3.81"}, {"ID": "FBgn0259233", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0000406", "EGF_Stimulus": "1.91"}, {"ID": "FBgn0032282", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0085491", "EGF_Stimulus": "-0.78"}, {"ID": "FBgn0028497", "EGF_Stimulus": "-1.65"}, {"ID": "FBgn0029713", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0036614", "EGF_Stimulus": "-2.27"}, {"ID": "FBgn0015829", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0032139", "EGF_Stimulus": "-2.21"}, {"ID": "FBgn0261461", "EGF_Stimulus": "1.63"}, {"ID": "FBgn0038717", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0039370", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0020371", "EGF_Stimulus": "-0.92"}, {"ID": "FBgn0038923", "EGF_Stimulus": "1.45"}, {"ID": "FBgn0050334", "EGF_Stimulus": "-0.22"}, {"ID": "FBgn0042205", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0005612", "EGF_Stimulus": "-1.01"}, {"ID": "FBgn0031182", "EGF_Stimulus": "-0.36"}, {"ID": "FBgn0004117", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0003117", "EGF_Stimulus": "1.3"}, {"ID": "FBgn0028570", "EGF_Stimulus": "-1.02"}, {"ID": "FBgn0052176", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0029733", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0032117", "EGF_Stimulus": "0.23"}, {"ID": "FBgn0050269", "EGF_Stimulus": "-1.33"}, {"ID": "FBgn0039004", "EGF_Stimulus": "-0.75"}, {"ID": "FBgn0033770", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0015379", "EGF_Stimulus": "-0.31"}, {"ID": "FBgn0031194", "EGF_Stimulus": "-0.95"}, {"ID": "FBgn0020255", "EGF_Stimulus": "-0.52"}, {"ID": "FBgn0003392", "EGF_Stimulus": "-0.78"}, {"ID": "FBgn0043791", "EGF_Stimulus": "-1.65"}, {"ID": "FBgn0032150", "EGF_Stimulus": "-0.19"}, {"ID": "FBgn0037065", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0035800", "EGF_Stimulus": "0.2"}, {"ID": "FBgn0037908", "EGF_Stimulus": "0.94"}, {"ID": "FBgn0029795", "EGF_Stimulus": "0.94"}, {"ID": "FBgn0011822", "EGF_Stimulus": "-0.65"}, {"ID": "FBgn0029976", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0004590", "EGF_Stimulus": "-0.47"}, {"ID": "FBgn0040688", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0035941", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0000221", "EGF_Stimulus": "-2.02"}, {"ID": "FBgn0051300", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0040009", "EGF_Stimulus": "-1.12"}, {"ID": "FBgn0039055", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0250791", "EGF_Stimulus": "-3.69"}, {"ID": "FBgn0037751", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0036808", "EGF_Stimulus": "2.03"}, {"ID": "FBgn0032666", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0053229", "EGF_Stimulus": "-0.85"}, {"ID": "FBgn0034132", "EGF_Stimulus": "-0.34"}, {"ID": "FBgn0002441", "EGF_Stimulus": "-1.74"}, {"ID": "FBgn0053127", "EGF_Stimulus": "-1.79"}, {"ID": "FBgn0036833", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0035336", "EGF_Stimulus": "1.56"}, {"ID": "FBgn0034156", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0041111", "EGF_Stimulus": "2.08"}, {"ID": "FBgn0250906", "EGF_Stimulus": "1"}, {"ID": "FBgn0034736", "EGF_Stimulus": "1.11"}, {"ID": "FBgn0023180", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0043550", "EGF_Stimulus": "-1.69"}, {"ID": "FBgn0259172", "EGF_Stimulus": "-3.9"}, {"ID": "FBgn0000099", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0053120", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0039501", "EGF_Stimulus": "-1.18"}, {"ID": "FBgn0036522", "EGF_Stimulus": "1.09"}, {"ID": "FBgn0037609", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0037309", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0035000", "EGF_Stimulus": "0.19"}, {"ID": "FBgn0028527", "EGF_Stimulus": "1.06"}, {"ID": "FBgn0026597", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0040237", "EGF_Stimulus": "-1.48"}, {"ID": "FBgn0001083", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0024986", "EGF_Stimulus": "1.46"}, {"ID": "FBgn0041191", "EGF_Stimulus": "1.21"}, {"ID": "FBgn0035430", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0029538", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0037448", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0039482", "EGF_Stimulus": "-0.35"}, {"ID": "FBgn0032788", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0034249", "EGF_Stimulus": "-1.13"}, {"ID": "FBgn0027073", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0032408", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0003162", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0052651", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0005636", "EGF_Stimulus": "1.83"}, {"ID": "FBgn0261258", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0250836", "EGF_Stimulus": "-0.32"}, {"ID": "FBgn0086708", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0041707", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0035515", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0031344", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0038861", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0037317", "EGF_Stimulus": "-0.1"}, {"ID": "FBgn0011288", "EGF_Stimulus": "1.06"}, {"ID": "FBgn0051291", "EGF_Stimulus": "-3.11"}, {"ID": "FBgn0027356", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0053225", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0000346", "EGF_Stimulus": "-1.82"}, {"ID": "FBgn0033287", "EGF_Stimulus": "1.59"}, {"ID": "FBgn0036567", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0052141", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0051225", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0038796", "EGF_Stimulus": "1.9"}, {"ID": "FBgn0039068", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0039424", "EGF_Stimulus": "-0.84"}, {"ID": "FBgn0261792", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0015230", "EGF_Stimulus": "-0.29"}, {"ID": "FBgn0050296", "EGF_Stimulus": "1.43"}, {"ID": "FBgn0038690", "EGF_Stimulus": "-1.13"}, {"ID": "FBgn0037827", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0051663", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0038418", "EGF_Stimulus": "1.24"}, {"ID": "FBgn0053181", "EGF_Stimulus": "-0.99"}, {"ID": "FBgn0039218", "EGF_Stimulus": "-1.68"}, {"ID": "FBgn0033587", "EGF_Stimulus": "-0.79"}, {"ID": "FBgn0035734", "EGF_Stimulus": "1.13"}, {"ID": "FBgn0250876", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0040817", "EGF_Stimulus": "1.2"}, {"ID": "FBgn0040010", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0032051", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0036004", "EGF_Stimulus": "-1"}, {"ID": "FBgn0261399", "EGF_Stimulus": "1.68"}, {"ID": "FBgn0010356", "EGF_Stimulus": "-0.52"}, {"ID": "FBgn0037197", "EGF_Stimulus": "1.05"}, {"ID": "FBgn0038327", "EGF_Stimulus": "1.55"}, {"ID": "FBgn0036143", "EGF_Stimulus": "-0.56"}, {"ID": "FBgn0034483", "EGF_Stimulus": "-1.67"}, {"ID": "FBgn0037503", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0029694", "EGF_Stimulus": "-0.32"}, {"ID": "FBgn0024992", "EGF_Stimulus": "-0.34"}, {"ID": "FBgn0027537", "EGF_Stimulus": "-5.13"}, {"ID": "FBgn0030575", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0037205", "EGF_Stimulus": "1.21"}, {"ID": "FBgn0032896", "EGF_Stimulus": "1.13"}, {"ID": "FBgn0040080", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0030707", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0037960", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0031801", "EGF_Stimulus": "1.26"}, {"ID": "FBgn0030369", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0026259", "EGF_Stimulus": "-1.13"}, {"ID": "FBgn0001314", "EGF_Stimulus": "-2.18"}, {"ID": "FBgn0035026", "EGF_Stimulus": "0.12"}, {"ID": "FBgn0051344", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0037462", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0022023", "EGF_Stimulus": "-0.35"}, {"ID": "FBgn0032631", "EGF_Stimulus": "-2.28"}, {"ID": "FBgn0029529", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0002283", "EGF_Stimulus": "-1.58"}, {"ID": "FBgn0032292", "EGF_Stimulus": "-1.02"}, {"ID": "FBgn0028577", "EGF_Stimulus": "-0.86"}, {"ID": "FBgn0037610", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0039045", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0085267", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0010388", "EGF_Stimulus": "-0.88"}, {"ID": "FBgn0260795", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0260938", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0086674", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0030474", "EGF_Stimulus": "1.01"}, {"ID": "FBgn0036639", "EGF_Stimulus": "1.25"}, {"ID": "FBgn0020546", "EGF_Stimulus": "-1.41"}, {"ID": "FBgn0038070", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0024811", "EGF_Stimulus": "-0.26"}, {"ID": "FBgn0033483", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0043010", "EGF_Stimulus": "0.11"}, {"ID": "FBgn0004513", "EGF_Stimulus": "-1.01"}, {"ID": "FBgn0031255", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0037242", "EGF_Stimulus": "1"}, {"ID": "FBgn0030536", "EGF_Stimulus": "-0.35"}, {"ID": "FBgn0029512", "EGF_Stimulus": "1.25"}, {"ID": "FBgn0036605", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0037478", "EGF_Stimulus": "-1.07"}, {"ID": "FBgn0003076", "EGF_Stimulus": "1.11"}, {"ID": "FBgn0035251", "EGF_Stimulus": "-1.68"}, {"ID": "FBgn0033523", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0086778", "EGF_Stimulus": "1.23"}, {"ID": "FBgn0051413", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0050487", "EGF_Stimulus": "-0.37"}, {"ID": "FBgn0038912", "EGF_Stimulus": "1.01"}, {"ID": "FBgn0026148", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0036560", "EGF_Stimulus": "1.19"}, {"ID": "FBgn0085243", "EGF_Stimulus": "-1.09"}, {"ID": "FBgn0002838", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0028737", "EGF_Stimulus": "-1.01"}, {"ID": "FBgn0034546", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0250789", "EGF_Stimulus": "-0.26"}, {"ID": "FBgn0023214", "EGF_Stimulus": "2.84"}, {"ID": "FBgn0035321", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0031655", "EGF_Stimulus": "-0.84"}, {"ID": "FBgn0035569", "EGF_Stimulus": "-0.34"}, {"ID": "FBgn0030761", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0053768", "EGF_Stimulus": "-0.4"}, {"ID": "FBgn0037127", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0051735", "EGF_Stimulus": "-0.96"}, {"ID": "FBgn0029778", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0034390", "EGF_Stimulus": "1.35"}, {"ID": "FBgn0259482", "EGF_Stimulus": "-0.92"}, {"ID": "FBgn0043012", "EGF_Stimulus": "1.75"}, {"ID": "FBgn0016700", "EGF_Stimulus": "-1.08"}, {"ID": "FBgn0031155", "EGF_Stimulus": "0.27"}, {"ID": "FBgn0004370", "EGF_Stimulus": "-0.43"}, {"ID": "FBgn0039914", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0025687", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0035968", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0038485", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0039924", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0030679", "EGF_Stimulus": "2.14"}, {"ID": "FBgn0039508", "EGF_Stimulus": "1.39"}, {"ID": "FBgn0053285", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0034730", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0033600", "EGF_Stimulus": "-1.19"}, {"ID": "FBgn0261053", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0033043", "EGF_Stimulus": "-0.81"}, {"ID": "FBgn0261514", "EGF_Stimulus": "-1.56"}, {"ID": "FBgn0020493", "EGF_Stimulus": "-0.92"}, {"ID": "FBgn0034451", "EGF_Stimulus": "1.06"}, {"ID": "FBgn0031060", "EGF_Stimulus": "-0.9"}, {"ID": "FBgn0003345", "EGF_Stimulus": "1.49"}, {"ID": "FBgn0037424", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0039767", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0038445", "EGF_Stimulus": "-0.67"}, {"ID": "FBgn0034031", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0041174", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0030795", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0039629", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0033476", "EGF_Stimulus": "-2.23"}, {"ID": "FBgn0039848", "EGF_Stimulus": "-0.46"}, {"ID": "FBgn0036085", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0000542", "EGF_Stimulus": "-1.54"}, {"ID": "FBgn0024360", "EGF_Stimulus": "-0.47"}, {"ID": "FBgn0011692", "EGF_Stimulus": "-0.82"}, {"ID": "FBgn0032104", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0034928", "EGF_Stimulus": "-0.46"}, {"ID": "FBgn0034629", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0032915", "EGF_Stimulus": "-1.76"}, {"ID": "FBgn0035987", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0010905", "EGF_Stimulus": "-0.57"}, {"ID": "FBgn0039266", "EGF_Stimulus": "-1.4"}, {"ID": "FBgn0028982", "EGF_Stimulus": "2.83"}, {"ID": "FBgn0031189", "EGF_Stimulus": "-0.11"}, {"ID": "FBgn0015402", "EGF_Stimulus": "-8.49"}, {"ID": "FBgn0033199", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0038435", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0030824", "EGF_Stimulus": "-0.35"}, {"ID": "FBgn0019928", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0015371", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0022153", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0053453", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0031581", "EGF_Stimulus": "1.06"}, {"ID": "FBgn0051700", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0032297", "EGF_Stimulus": "1.22"}, {"ID": "FBgn0044028", "EGF_Stimulus": "1.34"}, {"ID": "FBgn0035540", "EGF_Stimulus": "-0.97"}, {"ID": "FBgn0000307", "EGF_Stimulus": "-0.7"}, {"ID": "FBgn0036439", "EGF_Stimulus": "-3.37"}, {"ID": "FBgn0037576", "EGF_Stimulus": "-0.32"}, {"ID": "FBgn0015801", "EGF_Stimulus": "1.83"}, {"ID": "FBgn0035687", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0036843", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0032986", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0031999", "EGF_Stimulus": "0.06"}, {"ID": "FBgn0033192", "EGF_Stimulus": "-0.86"}, {"ID": "FBgn0034691", "EGF_Stimulus": "-1.31"}, {"ID": "FBgn0025360", "EGF_Stimulus": "-0.82"}, {"ID": "FBgn0052369", "EGF_Stimulus": "-1.41"}, {"ID": "FBgn0036813", "EGF_Stimulus": "1.97"}, {"ID": "FBgn0024963", "EGF_Stimulus": "-0.33"}, {"ID": "FBgn0034792", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0014019", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0039907", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0083972", "EGF_Stimulus": "-0.9"}, {"ID": "FBgn0025742", "EGF_Stimulus": "-0.86"}, {"ID": "FBgn0031848", "EGF_Stimulus": "-0.36"}, {"ID": "FBgn0261699", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0027785", "EGF_Stimulus": "-0.1"}, {"ID": "FBgn0032030", "EGF_Stimulus": "-3.94"}, {"ID": "FBgn0021800", "EGF_Stimulus": "-1.5"}, {"ID": "FBgn0037234", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0003060", "EGF_Stimulus": "-0.36"}, {"ID": "FBgn0038876", "EGF_Stimulus": "-1.04"}, {"ID": "FBgn0026756", "EGF_Stimulus": "-0.81"}, {"ID": "FBgn0031069", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0037664", "EGF_Stimulus": "-0.54"}, {"ID": "FBgn0028970", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0030434", "EGF_Stimulus": "1.32"}, {"ID": "FBgn0015221", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0031414", "EGF_Stimulus": "1.43"}, {"ID": "FBgn0035203", "EGF_Stimulus": "-0.73"}, {"ID": "FBgn0037657", "EGF_Stimulus": "1.31"}, {"ID": "FBgn0036377", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0025109", "EGF_Stimulus": "-0.25"}, {"ID": "FBgn0031547", "EGF_Stimulus": "-0.08"}, {"ID": "FBgn0032271", "EGF_Stimulus": "0.04"}, {"ID": "FBgn0033685", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0026403", "EGF_Stimulus": "-0.66"}, {"ID": "FBgn0038051", "EGF_Stimulus": "-0.96"}, {"ID": "FBgn0034052", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0030032", "EGF_Stimulus": "1.24"}, {"ID": "FBgn0029819", "EGF_Stimulus": "-1.11"}, {"ID": "FBgn0029866", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0037169", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0034834", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0031431", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0035797", "EGF_Stimulus": "-0.74"}, {"ID": "FBgn0030048", "EGF_Stimulus": "-1.64"}, {"ID": "FBgn0052983", "EGF_Stimulus": "-0.48"}, {"ID": "FBgn0020645", "EGF_Stimulus": "0.23"}, {"ID": "FBgn0000826", "EGF_Stimulus": "-0.24"}, {"ID": "FBgn0050377", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0046885", "EGF_Stimulus": "0.22"}, {"ID": "FBgn0032191", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0040679", "EGF_Stimulus": "-0.28"}, {"ID": "FBgn0016715", "EGF_Stimulus": "1.29"}, {"ID": "FBgn0037469", "EGF_Stimulus": "-0.76"}, {"ID": "FBgn0000662", "EGF_Stimulus": "-1.35"}, {"ID": "FBgn0050344", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0004507", "EGF_Stimulus": "-0.47"}, {"ID": "FBgn0016983", "EGF_Stimulus": "-0.34"}, {"ID": "FBgn0037655", "EGF_Stimulus": "-0.79"}, {"ID": "FBgn0031973", "EGF_Stimulus": "-0.89"}, {"ID": "FBgn0045501", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0039379", "EGF_Stimulus": "-1.56"}, {"ID": "FBgn0032428", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0045497", "EGF_Stimulus": "1.84"}, {"ID": "FBgn0031365", "EGF_Stimulus": "6.57"}, {"ID": "FBgn0038976", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0039155", "EGF_Stimulus": "1.65"}, {"ID": "FBgn0005614", "EGF_Stimulus": "1.58"}, {"ID": "FBgn0036184", "EGF_Stimulus": "1.01"}, {"ID": "FBgn0040395", "EGF_Stimulus": "0.23"}, {"ID": "FBgn0052112", "EGF_Stimulus": "-0.88"}, {"ID": "FBgn0052121", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0034715", "EGF_Stimulus": "1.34"}, {"ID": "FBgn0031778", "EGF_Stimulus": "-0.14"}, {"ID": "FBgn0260462", "EGF_Stimulus": "1.31"}, {"ID": "FBgn0036879", "EGF_Stimulus": "-1.46"}, {"ID": "FBgn0014179", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0028480", "EGF_Stimulus": "-1.4"}, {"ID": "FBgn0031298", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0036766", "EGF_Stimulus": "-0.8"}, {"ID": "FBgn0033381", "EGF_Stimulus": "-0.62"}, {"ID": "FBgn0050087", "EGF_Stimulus": "1.46"}, {"ID": "FBgn0031954", "EGF_Stimulus": "-0.26"}, {"ID": "FBgn0028870", "EGF_Stimulus": "0.16"}, {"ID": "FBgn0051205", "EGF_Stimulus": "-1.46"}, {"ID": "FBgn0032215", "EGF_Stimulus": "-2.09"}, {"ID": "FBgn0046875", "EGF_Stimulus": "-0.72"}, {"ID": "FBgn0053340", "EGF_Stimulus": "-1.39"}, {"ID": "FBgn0038948", "EGF_Stimulus": "-0.72"}, {"ID": "FBgn0037150", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0039407", "EGF_Stimulus": "1"}, {"ID": "FBgn0029148", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0016660", "EGF_Stimulus": "1.3"}, {"ID": "FBgn0261848", "EGF_Stimulus": "-0.54"}, {"ID": "FBgn0036835", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0013984", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0032471", "EGF_Stimulus": "-1.65"}, {"ID": "FBgn0031719", "EGF_Stimulus": "-1.29"}, {"ID": "FBgn0033224", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0039741", "EGF_Stimulus": "1.11"}, {"ID": "FBgn0003963", "EGF_Stimulus": "-0.92"}, {"ID": "FBgn0034083", "EGF_Stimulus": "-0.19"}, {"ID": "FBgn0003178", "EGF_Stimulus": "-0.17"}, {"ID": "FBgn0033582", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0035504", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0036156", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0039857", "EGF_Stimulus": "-3.82"}, {"ID": "FBgn0027657", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0037777", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0032305", "EGF_Stimulus": "-1.77"}, {"ID": "FBgn0036305", "EGF_Stimulus": "1.55"}, {"ID": "FBgn0038965", "EGF_Stimulus": "-0.61"}, {"ID": "FBgn0052095", "EGF_Stimulus": "0.26"}, {"ID": "FBgn0054008", "EGF_Stimulus": "-0.4"}, {"ID": "FBgn0020277", "EGF_Stimulus": "1.54"}, {"ID": "FBgn0030204", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0035730", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0036787", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0044511", "EGF_Stimulus": "-1.05"}, {"ID": "FBgn0029573", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0033628", "EGF_Stimulus": "-0.64"}, {"ID": "FBgn0034966", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0039357", "EGF_Stimulus": "0.08"}, {"ID": "FBgn0050187", "EGF_Stimulus": "1.54"}, {"ID": "FBgn0038234", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0061469", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0037151", "EGF_Stimulus": "-0.17"}, {"ID": "FBgn0261004", "EGF_Stimulus": "0.94"}, {"ID": "FBgn0033240", "EGF_Stimulus": "1.18"}, {"ID": "FBgn0033963", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0029720", "EGF_Stimulus": "1.67"}, {"ID": "FBgn0032624", "EGF_Stimulus": "-0.31"}, {"ID": "FBgn0037989", "EGF_Stimulus": "1.03"}, {"ID": "FBgn0037045", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0035829", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0011020", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0042179", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0037979", "EGF_Stimulus": "-0.32"}, {"ID": "FBgn0010415", "EGF_Stimulus": "1.01"}, {"ID": "FBgn0034076", "EGF_Stimulus": "-0.34"}, {"ID": "FBgn0030839", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0031401", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0036206", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0260393", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0051108", "EGF_Stimulus": "1.52"}, {"ID": "FBgn0035769", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0035669", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0037888", "EGF_Stimulus": "1.3"}, {"ID": "FBgn0023143", "EGF_Stimulus": "-1.47"}, {"ID": "FBgn0030040", "EGF_Stimulus": "-0.31"}, {"ID": "FBgn0085260", "EGF_Stimulus": "-0.34"}, {"ID": "FBgn0036332", "EGF_Stimulus": "1.03"}, {"ID": "FBgn0042627", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0039077", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0011241", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0033945", "EGF_Stimulus": "-0.03"}, {"ID": "FBgn0045842", "EGF_Stimulus": "1.55"}, {"ID": "FBgn0261446", "EGF_Stimulus": "-0.23"}, {"ID": "FBgn0032110", "EGF_Stimulus": "-0.74"}, {"ID": "FBgn0053136", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0039387", "EGF_Stimulus": "1.32"}, {"ID": "FBgn0031239", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0050083", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0260749", "EGF_Stimulus": "1.74"}, {"ID": "FBgn0030672", "EGF_Stimulus": "-0.35"}, {"ID": "FBgn0032691", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0039440", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0046322", "EGF_Stimulus": "1.13"}, {"ID": "FBgn0030346", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0002571", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0030057", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0040206", "EGF_Stimulus": "-0.94"}, {"ID": "FBgn0034264", "EGF_Stimulus": "-0.35"}, {"ID": "FBgn0038855", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0040798", "EGF_Stimulus": "-0.34"}, {"ID": "FBgn0033887", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0038357", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0031799", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0033356", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0011327", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0034279", "EGF_Stimulus": "-0.32"}, {"ID": "FBgn0036350", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0041160", "EGF_Stimulus": "-0.55"}, {"ID": "FBgn0002533", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0050010", "EGF_Stimulus": "0.2"}, {"ID": "FBgn0086377", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0033673", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0035355", "EGF_Stimulus": "0.1"}, {"ID": "FBgn0001977", "EGF_Stimulus": "-0.35"}, {"ID": "FBgn0037765", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0028540", "EGF_Stimulus": "-0.81"}, {"ID": "FBgn0052152", "EGF_Stimulus": "-1.4"}, {"ID": "FBgn0036575", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0052038", "EGF_Stimulus": "1.31"}, {"ID": "FBgn0039137", "EGF_Stimulus": "0.25"}, {"ID": "FBgn0040350", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0031990", "EGF_Stimulus": "-1.35"}, {"ID": "FBgn0029084", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0039883", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0028684", "EGF_Stimulus": "-6.04"}, {"ID": "FBgn0040389", "EGF_Stimulus": "-0.21"}, {"ID": "FBgn0003751", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0033159", "EGF_Stimulus": "2.59"}, {"ID": "FBgn0261560", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0052206", "EGF_Stimulus": "1.29"}, {"ID": "FBgn0015834", "EGF_Stimulus": "-4.01"}, {"ID": "FBgn0250826", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0030501", "EGF_Stimulus": "-0.56"}, {"ID": "FBgn0025620", "EGF_Stimulus": "-1.97"}, {"ID": "FBgn0084001", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0025616", "EGF_Stimulus": "-0.69"}, {"ID": "FBgn0259187", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0031492", "EGF_Stimulus": "-1.94"}, {"ID": "FBgn0083946", "EGF_Stimulus": "-0.69"}, {"ID": "FBgn0026391", "EGF_Stimulus": "-1.02"}, {"ID": "FBgn0038746", "EGF_Stimulus": "-0.56"}, {"ID": "FBgn0261569", "EGF_Stimulus": "-0.63"}, {"ID": "FBgn0003744", "EGF_Stimulus": "-0.48"}, {"ID": "FBgn0036454", "EGF_Stimulus": "-1.71"}, {"ID": "FBgn0035019", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0032516", "EGF_Stimulus": "1.98"}, {"ID": "FBgn0051482", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0037328", "EGF_Stimulus": "-4.45"}, {"ID": "FBgn0243512", "EGF_Stimulus": "-2.05"}, {"ID": "FBgn0003748", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0051233", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0038606", "EGF_Stimulus": "-0.23"}, {"ID": "FBgn0037284", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0035971", "EGF_Stimulus": "0.96"}, {"ID": "FBgn0053349", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0011768", "EGF_Stimulus": "-0.69"}, {"ID": "FBgn0030551", "EGF_Stimulus": "-1.02"}, {"ID": "FBgn0015828", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0026390", "EGF_Stimulus": "-1.27"}, {"ID": "FBgn0000250", "EGF_Stimulus": "-2.1"}, {"ID": "FBgn0085478", "EGF_Stimulus": "1.2"}, {"ID": "FBgn0010317", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0035425", "EGF_Stimulus": "2.19"}, {"ID": "FBgn0035900", "EGF_Stimulus": "-1.87"}, {"ID": "FBgn0015714", "EGF_Stimulus": "-0.91"}, {"ID": "FBgn0040098", "EGF_Stimulus": "1.55"}, {"ID": "FBgn0050011", "EGF_Stimulus": "1.18"}, {"ID": "FBgn0051646", "EGF_Stimulus": "1.33"}, {"ID": "FBgn0030583", "EGF_Stimulus": "-0.05"}, {"ID": "FBgn0037455", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0033876", "EGF_Stimulus": "1.13"}, {"ID": "FBgn0040360", "EGF_Stimulus": "-0.23"}, {"ID": "FBgn0039025", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0004396", "EGF_Stimulus": "1.05"}, {"ID": "FBgn0034446", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0036754", "EGF_Stimulus": "-0.54"}, {"ID": "FBgn0037874", "EGF_Stimulus": "-1.45"}, {"ID": "FBgn0003093", "EGF_Stimulus": "-0.32"}, {"ID": "FBgn0050022", "EGF_Stimulus": "-0.97"}, {"ID": "FBgn0029909", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0036725", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0038653", "EGF_Stimulus": "-1.65"}, {"ID": "FBgn0033136", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0032877", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0030029", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0031635", "EGF_Stimulus": "-0.33"}, {"ID": "FBgn0029891", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0010238", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0261550", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0005278", "EGF_Stimulus": "-5.03"}, {"ID": "FBgn0021768", "EGF_Stimulus": "2.59"}, {"ID": "FBgn0040262", "EGF_Stimulus": "-0.85"}, {"ID": "FBgn0037513", "EGF_Stimulus": "1.31"}, {"ID": "FBgn0031645", "EGF_Stimulus": "1.12"}, {"ID": "FBgn0039187", "EGF_Stimulus": "-1.03"}, {"ID": "FBgn0029785", "EGF_Stimulus": "-2.76"}, {"ID": "FBgn0035795", "EGF_Stimulus": "-0.32"}, {"ID": "FBgn0030191", "EGF_Stimulus": "1.01"}, {"ID": "FBgn0032362", "EGF_Stimulus": "-0.81"}, {"ID": "FBgn0032053", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0085421", "EGF_Stimulus": "1.82"}, {"ID": "FBgn0051668", "EGF_Stimulus": "0.07"}, {"ID": "FBgn0029896", "EGF_Stimulus": "2.3"}, {"ID": "FBgn0015737", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0035331", "EGF_Stimulus": "1.77"}, {"ID": "FBgn0011741", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0023388", "EGF_Stimulus": "-1.47"}, {"ID": "FBgn0031458", "EGF_Stimulus": "-0.9"}, {"ID": "FBgn0039955", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0034114", "EGF_Stimulus": "0.17"}, {"ID": "FBgn0030559", "EGF_Stimulus": "-0.6"}, {"ID": "FBgn0029594", "EGF_Stimulus": "1.81"}, {"ID": "FBgn0033731", "EGF_Stimulus": "-0.14"}, {"ID": "FBgn0036460", "EGF_Stimulus": "-1.94"}, {"ID": "FBgn0051720", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0040371", "EGF_Stimulus": "0.22"}, {"ID": "FBgn0016684", "EGF_Stimulus": "-0.46"}, {"ID": "FBgn0250871", "EGF_Stimulus": "-0.36"}, {"ID": "FBgn0037067", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0034160", "EGF_Stimulus": "-0.78"}, {"ID": "FBgn0040648", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0010651", "EGF_Stimulus": "1.51"}, {"ID": "FBgn0035522", "EGF_Stimulus": "-0.25"}, {"ID": "FBgn0031682", "EGF_Stimulus": "1.51"}, {"ID": "FBgn0035012", "EGF_Stimulus": "-2.56"}, {"ID": "FBgn0038420", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0029707", "EGF_Stimulus": "1.83"}, {"ID": "FBgn0002719", "EGF_Stimulus": "-4.86"}, {"ID": "FBgn0032042", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0028479", "EGF_Stimulus": "1.15"}, {"ID": "FBgn0053635", "EGF_Stimulus": "-1.62"}, {"ID": "FBgn0031312", "EGF_Stimulus": "-0.86"}, {"ID": "FBgn0032755", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0054051", "EGF_Stimulus": "-1.92"}, {"ID": "FBgn0029659", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0033179", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0005564", "EGF_Stimulus": "-1.1"}, {"ID": "FBgn0085311", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0053532", "EGF_Stimulus": "-1.4"}, {"ID": "FBgn0008636", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0022344", "EGF_Stimulus": "-1.19"}, {"ID": "FBgn0030026", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0087008", "EGF_Stimulus": "-3.49"}, {"ID": "FBgn0030887", "EGF_Stimulus": "1.35"}, {"ID": "FBgn0034475", "EGF_Stimulus": "-0.74"}, {"ID": "FBgn0259152", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0028897", "EGF_Stimulus": "0.22"}, {"ID": "FBgn0020653", "EGF_Stimulus": "1.13"}, {"ID": "FBgn0031561", "EGF_Stimulus": "1.65"}, {"ID": "FBgn0260719", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0051822", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0034168", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0052626", "EGF_Stimulus": "-1.57"}, {"ID": "FBgn0034310", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0259211", "EGF_Stimulus": "1.2"}, {"ID": "FBgn0050365", "EGF_Stimulus": "1.03"}, {"ID": "FBgn0037923", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0085391", "EGF_Stimulus": "1.24"}, {"ID": "FBgn0037536", "EGF_Stimulus": "-1.24"}, {"ID": "FBgn0032068", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0027505", "EGF_Stimulus": "0.23"}, {"ID": "FBgn0036534", "EGF_Stimulus": "-2.82"}, {"ID": "FBgn0032010", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0002542", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0030122", "EGF_Stimulus": "-0.83"}, {"ID": "FBgn0036541", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0033952", "EGF_Stimulus": "-0.11"}, {"ID": "FBgn0026562", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0017414", "EGF_Stimulus": "1.43"}, {"ID": "FBgn0250847", "EGF_Stimulus": "-1.48"}, {"ID": "FBgn0004242", "EGF_Stimulus": "-1.12"}, {"ID": "FBgn0036237", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0020376", "EGF_Stimulus": "-1.08"}, {"ID": "FBgn0039229", "EGF_Stimulus": "2.28"}, {"ID": "FBgn0028734", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0028920", "EGF_Stimulus": "-0.65"}, {"ID": "FBgn0085357", "EGF_Stimulus": "-0.54"}, {"ID": "FBgn0051694", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0004567", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0036705", "EGF_Stimulus": "-0.86"}, {"ID": "FBgn0036660", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0250862", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0038515", "EGF_Stimulus": "0.12"}, {"ID": "FBgn0046302", "EGF_Stimulus": "-0.59"}, {"ID": "FBgn0030947", "EGF_Stimulus": "-1.17"}, {"ID": "FBgn0039987", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0010222", "EGF_Stimulus": "-0.54"}, {"ID": "FBgn0082585", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0040506", "EGF_Stimulus": "0.96"}, {"ID": "FBgn0035854", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0000083", "EGF_Stimulus": "-0.99"}, {"ID": "FBgn0261477", "EGF_Stimulus": "-0.35"}, {"ID": "FBgn0085282", "EGF_Stimulus": "1.57"}, {"ID": "FBgn0010215", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0037175", "EGF_Stimulus": "1.53"}, {"ID": "FBgn0016078", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0035726", "EGF_Stimulus": "-1.02"}, {"ID": "FBgn0013972", "EGF_Stimulus": "-1.02"}, {"ID": "FBgn0031947", "EGF_Stimulus": "-1.29"}, {"ID": "FBgn0051115", "EGF_Stimulus": "-0.31"}, {"ID": "FBgn0035590", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0030542", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0038579", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0027086", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0020391", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0033133", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0030973", "EGF_Stimulus": "-0.83"}, {"ID": "FBgn0085273", "EGF_Stimulus": "-0.63"}, {"ID": "FBgn0030161", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0010053", "EGF_Stimulus": "-0.84"}, {"ID": "FBgn0037896", "EGF_Stimulus": "-0.82"}, {"ID": "FBgn0030776", "EGF_Stimulus": "-1.61"}, {"ID": "FBgn0028939", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0052219", "EGF_Stimulus": "1.67"}, {"ID": "FBgn0032520", "EGF_Stimulus": "1.38"}, {"ID": "FBgn0039678", "EGF_Stimulus": "-1.1"}, {"ID": "FBgn0040918", "EGF_Stimulus": "1.68"}, {"ID": "FBgn0014028", "EGF_Stimulus": "1.42"}, {"ID": "FBgn0000257", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0010808", "EGF_Stimulus": "-1.62"}, {"ID": "FBgn0039784", "EGF_Stimulus": "-0.43"}, {"ID": "FBgn0030054", "EGF_Stimulus": "1.29"}, {"ID": "FBgn0051268", "EGF_Stimulus": "-0.67"}, {"ID": "FBgn0003187", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0034399", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0026375", "EGF_Stimulus": "1.14"}, {"ID": "FBgn0039511", "EGF_Stimulus": "-0.43"}, {"ID": "FBgn0038929", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0031622", "EGF_Stimulus": "-1.11"}, {"ID": "FBgn0030505", "EGF_Stimulus": "-0.61"}, {"ID": "FBgn0035623", "EGF_Stimulus": "1.42"}, {"ID": "FBgn0035690", "EGF_Stimulus": "-1.31"}, {"ID": "FBgn0261856", "EGF_Stimulus": "-0.96"}, {"ID": "FBgn0034292", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0036850", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0052354", "EGF_Stimulus": "-2.01"}, {"ID": "FBgn0032171", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0036681", "EGF_Stimulus": "-0.74"}, {"ID": "FBgn0032242", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0044823", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0036423", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0011227", "EGF_Stimulus": "-0.22"}, {"ID": "FBgn0040068", "EGF_Stimulus": "-1.23"}, {"ID": "FBgn0039798", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0026592", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0051715", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0039675", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0033060", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0014877", "EGF_Stimulus": "-1.12"}, {"ID": "FBgn0033210", "EGF_Stimulus": "-0.74"}, {"ID": "FBgn0035206", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0034532", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0037120", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0033558", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0041237", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0039630", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0054041", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0011293", "EGF_Stimulus": "-0.34"}, {"ID": "FBgn0003575", "EGF_Stimulus": "-1.3"}, {"ID": "FBgn0040034", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0035007", "EGF_Stimulus": "1.02"}, {"ID": "FBgn0034687", "EGF_Stimulus": "-0.26"}, {"ID": "FBgn0038840", "EGF_Stimulus": "1.14"}, {"ID": "FBgn0034184", "EGF_Stimulus": "-0.18"}, {"ID": "FBgn0034541", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0086450", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0034564", "EGF_Stimulus": "1.78"}, {"ID": "FBgn0261244", "EGF_Stimulus": "-0.64"}, {"ID": "FBgn0041585", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0036133", "EGF_Stimulus": "1.87"}, {"ID": "FBgn0031098", "EGF_Stimulus": "-0.36"}, {"ID": "FBgn0028690", "EGF_Stimulus": "-0.21"}, {"ID": "FBgn0085278", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0001122", "EGF_Stimulus": "1.32"}, {"ID": "FBgn0028697", "EGF_Stimulus": "-2.73"}, {"ID": "FBgn0038396", "EGF_Stimulus": "0.15"}, {"ID": "FBgn0040551", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0039726", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0010173", "EGF_Stimulus": "-1"}, {"ID": "FBgn0032261", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0034770", "EGF_Stimulus": "-0.95"}, {"ID": "FBgn0030425", "EGF_Stimulus": "-2.45"}, {"ID": "FBgn0026262", "EGF_Stimulus": "1.18"}, {"ID": "FBgn0039202", "EGF_Stimulus": "-0.77"}, {"ID": "FBgn0004889", "EGF_Stimulus": "-3.09"}, {"ID": "FBgn0027375", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0031184", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0050446", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0052774", "EGF_Stimulus": "-2.44"}, {"ID": "FBgn0036300", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0033279", "EGF_Stimulus": "-0.25"}, {"ID": "FBgn0032021", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0023423", "EGF_Stimulus": "-2.18"}, {"ID": "FBgn0034742", "EGF_Stimulus": "-1"}, {"ID": "FBgn0051370", "EGF_Stimulus": "-0.89"}, {"ID": "FBgn0025117", "EGF_Stimulus": "-1.95"}, {"ID": "FBgn0033791", "EGF_Stimulus": "-1.26"}, {"ID": "FBgn0038313", "EGF_Stimulus": "-1.45"}, {"ID": "FBgn0261575", "EGF_Stimulus": "-0.8"}, {"ID": "FBgn0011283", "EGF_Stimulus": "-1.8"}, {"ID": "FBgn0085198", "EGF_Stimulus": "-0.3"}, {"ID": "FBgn0032374", "EGF_Stimulus": "-0.14"}, {"ID": "FBgn0039070", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0031359", "EGF_Stimulus": "-0.62"}, {"ID": "FBgn0034456", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0033999", "EGF_Stimulus": "-1.19"}, {"ID": "FBgn0033738", "EGF_Stimulus": "1.21"}, {"ID": "FBgn0034622", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0028379", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0031373", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0038371", "EGF_Stimulus": "-0.13"}, {"ID": "FBgn0037602", "EGF_Stimulus": "0.12"}, {"ID": "FBgn0024836", "EGF_Stimulus": "0.08"}, {"ID": "FBgn0031591", "EGF_Stimulus": "-0.54"}, {"ID": "FBgn0028394", "EGF_Stimulus": "-0.6"}, {"ID": "FBgn0035697", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0259179", "EGF_Stimulus": "-1.16"}, {"ID": "FBgn0033260", "EGF_Stimulus": "-2.1"}, {"ID": "FBgn0034535", "EGF_Stimulus": "1.53"}, {"ID": "FBgn0037548", "EGF_Stimulus": "-1.67"}, {"ID": "FBgn0085398", "EGF_Stimulus": "-1.39"}, {"ID": "FBgn0036345", "EGF_Stimulus": "-0.15"}, {"ID": "FBgn0039787", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0036121", "EGF_Stimulus": "-0.17"}, {"ID": "FBgn0035935", "EGF_Stimulus": "1.26"}, {"ID": "FBgn0038739", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0052813", "EGF_Stimulus": "0.15"}, {"ID": "FBgn0038532", "EGF_Stimulus": "-0.52"}, {"ID": "FBgn0035577", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0041242", "EGF_Stimulus": "-0.69"}, {"ID": "FBgn0037485", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0085333", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0039736", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0011823", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0000152", "EGF_Stimulus": "-0.33"}, {"ID": "FBgn0261545", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0029082", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0030891", "EGF_Stimulus": "1.2"}, {"ID": "FBgn0029729", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0000278", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0031456", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0039650", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0031451", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0051559", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0016131", "EGF_Stimulus": "-2.36"}, {"ID": "FBgn0020556", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0032639", "EGF_Stimulus": "-0.52"}, {"ID": "FBgn0035344", "EGF_Stimulus": "-0.08"}, {"ID": "FBgn0031887", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0051217", "EGF_Stimulus": "1.13"}, {"ID": "FBgn0037592", "EGF_Stimulus": "-0.67"}, {"ID": "FBgn0031428", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0003380", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0032202", "EGF_Stimulus": "-0.99"}, {"ID": "FBgn0030000", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0013973", "EGF_Stimulus": "1.76"}, {"ID": "FBgn0031607", "EGF_Stimulus": "1.39"}, {"ID": "FBgn0040336", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0036979", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0003189", "EGF_Stimulus": "-0.73"}, {"ID": "FBgn0051522", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0001311", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0027564", "EGF_Stimulus": "-1.9"}, {"ID": "FBgn0039491", "EGF_Stimulus": "-0.72"}, {"ID": "FBgn0032921", "EGF_Stimulus": "-1.3"}, {"ID": "FBgn0005322", "EGF_Stimulus": "-0.86"}, {"ID": "FBgn0036029", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0261402", "EGF_Stimulus": "1.15"}, {"ID": "FBgn0028955", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0030827", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0051787", "EGF_Stimulus": "-0.89"}, {"ID": "FBgn0034179", "EGF_Stimulus": "1.84"}, {"ID": "FBgn0029843", "EGF_Stimulus": "1.3"}, {"ID": "FBgn0038842", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0040778", "EGF_Stimulus": "1.18"}, {"ID": "FBgn0037248", "EGF_Stimulus": "-1.04"}, {"ID": "FBgn0047199", "EGF_Stimulus": "-1.27"}, {"ID": "FBgn0015568", "EGF_Stimulus": "1.47"}, {"ID": "FBgn0019982", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0052021", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0004366", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0036931", "EGF_Stimulus": "-0.73"}, {"ID": "FBgn0023094", "EGF_Stimulus": "0.12"}, {"ID": "FBgn0051075", "EGF_Stimulus": "1.04"}, {"ID": "FBgn0033075", "EGF_Stimulus": "1.22"}, {"ID": "FBgn0001133", "EGF_Stimulus": "-0.48"}, {"ID": "FBgn0031219", "EGF_Stimulus": "-0.39"}, {"ID": "FBgn0085307", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0050056", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0037720", "EGF_Stimulus": "-1.65"}, {"ID": "FBgn0030052", "EGF_Stimulus": "1.31"}, {"ID": "FBgn0002641", "EGF_Stimulus": "-0.76"}, {"ID": "FBgn0050323", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0034109", "EGF_Stimulus": "1.23"}, {"ID": "FBgn0039453", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0030206", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0036509", "EGF_Stimulus": "-1.14"}, {"ID": "FBgn0022981", "EGF_Stimulus": "1.74"}, {"ID": "FBgn0035187", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0017557", "EGF_Stimulus": "1.1"}, {"ID": "FBgn0014851", "EGF_Stimulus": "1"}, {"ID": "FBgn0040343", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0035170", "EGF_Stimulus": "-0.98"}, {"ID": "FBgn0030731", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0034104", "EGF_Stimulus": "-0.34"}, {"ID": "FBgn0011279", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0035148", "EGF_Stimulus": "1.56"}, {"ID": "FBgn0002868", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0015585", "EGF_Stimulus": "1.37"}, {"ID": "FBgn0030691", "EGF_Stimulus": "-0.14"}, {"ID": "FBgn0032456", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0033865", "EGF_Stimulus": "-1.23"}, {"ID": "FBgn0034671", "EGF_Stimulus": "-1.06"}, {"ID": "FBgn0027873", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0004425", "EGF_Stimulus": "1.19"}, {"ID": "FBgn0031443", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0039537", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0003430", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0086443", "EGF_Stimulus": "-0.54"}, {"ID": "FBgn0040752", "EGF_Stimulus": "1.9"}, {"ID": "FBgn0069973", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0003480", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0034563", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0000092", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0042185", "EGF_Stimulus": "0.19"}, {"ID": "FBgn0030809", "EGF_Stimulus": "-2.37"}, {"ID": "FBgn0038767", "EGF_Stimulus": "-0.24"}, {"ID": "FBgn0058064", "EGF_Stimulus": "3.11"}, {"ID": "FBgn0034692", "EGF_Stimulus": "1.01"}, {"ID": "FBgn0000100", "EGF_Stimulus": "-3.91"}, {"ID": "FBgn0029874", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0010409", "EGF_Stimulus": "-3.99"}, {"ID": "FBgn0261573", "EGF_Stimulus": "-2.19"}, {"ID": "FBgn0014127", "EGF_Stimulus": "-1.08"}, {"ID": "FBgn0038903", "EGF_Stimulus": "-0.94"}, {"ID": "FBgn0034951", "EGF_Stimulus": "-0.13"}, {"ID": "FBgn0036587", "EGF_Stimulus": "-0.96"}, {"ID": "FBgn0036091", "EGF_Stimulus": "-0.65"}, {"ID": "FBgn0002735", "EGF_Stimulus": "-0.32"}, {"ID": "FBgn0015577", "EGF_Stimulus": "1.32"}, {"ID": "FBgn0032511", "EGF_Stimulus": "-0.29"}, {"ID": "FBgn0001170", "EGF_Stimulus": "-0.6"}, {"ID": "FBgn0011225", "EGF_Stimulus": "1.37"}, {"ID": "FBgn0039396", "EGF_Stimulus": "1.5"}, {"ID": "FBgn0031620", "EGF_Stimulus": "-1.09"}, {"ID": "FBgn0039084", "EGF_Stimulus": "-2.29"}, {"ID": "FBgn0038426", "EGF_Stimulus": "-1.54"}, {"ID": "FBgn0035677", "EGF_Stimulus": "-1.4"}, {"ID": "FBgn0085436", "EGF_Stimulus": "-5.44"}, {"ID": "FBgn0035714", "EGF_Stimulus": "-0.97"}, {"ID": "FBgn0052576", "EGF_Stimulus": "-0.89"}, {"ID": "FBgn0030661", "EGF_Stimulus": "-0.73"}, {"ID": "FBgn0003515", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0036728", "EGF_Stimulus": "1.1"}, {"ID": "FBgn0025454", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0034964", "EGF_Stimulus": "-0.64"}, {"ID": "FBgn0036624", "EGF_Stimulus": "-1.42"}, {"ID": "FBgn0034959", "EGF_Stimulus": "-0.9"}, {"ID": "FBgn0052569", "EGF_Stimulus": "-0.28"}, {"ID": "FBgn0035346", "EGF_Stimulus": "1.66"}, {"ID": "FBgn0039876", "EGF_Stimulus": "-4.29"}, {"ID": "FBgn0058198", "EGF_Stimulus": "0.11"}, {"ID": "FBgn0032401", "EGF_Stimulus": "1.75"}, {"ID": "FBgn0031101", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0261289", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0035824", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0027795", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0025573", "EGF_Stimulus": "1.18"}, {"ID": "FBgn0033232", "EGF_Stimulus": "-0.02"}, {"ID": "FBgn0036044", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0260657", "EGF_Stimulus": "-1.37"}, {"ID": "FBgn0031289", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0035638", "EGF_Stimulus": "-3.34"}, {"ID": "FBgn0030420", "EGF_Stimulus": "-0.36"}, {"ID": "FBgn0053012", "EGF_Stimulus": "-1.09"}, {"ID": "FBgn0024245", "EGF_Stimulus": "1.53"}, {"ID": "FBgn0034416", "EGF_Stimulus": "-0.61"}, {"ID": "FBgn0010300", "EGF_Stimulus": "-1.99"}, {"ID": "FBgn0052192", "EGF_Stimulus": "1.35"}, {"ID": "FBgn0029748", "EGF_Stimulus": "1.33"}, {"ID": "FBgn0025549", "EGF_Stimulus": "-0.57"}, {"ID": "FBgn0034205", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0032715", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0029999", "EGF_Stimulus": "1.03"}, {"ID": "FBgn0039341", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0036911", "EGF_Stimulus": "-0.22"}, {"ID": "FBgn0259713", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0038953", "EGF_Stimulus": "1.03"}, {"ID": "FBgn0035397", "EGF_Stimulus": "-1.16"}, {"ID": "FBgn0000228", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0034097", "EGF_Stimulus": "-1.33"}, {"ID": "FBgn0031877", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0010575", "EGF_Stimulus": "2.27"}, {"ID": "FBgn0032668", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0030311", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0036329", "EGF_Stimulus": "-0.34"}, {"ID": "FBgn0020756", "EGF_Stimulus": "1.88"}, {"ID": "FBgn0039686", "EGF_Stimulus": "1.68"}, {"ID": "FBgn0011726", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0040038", "EGF_Stimulus": "1.14"}, {"ID": "FBgn0030961", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0038734", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0033828", "EGF_Stimulus": "-0.57"}, {"ID": "FBgn0004842", "EGF_Stimulus": "-0.14"}, {"ID": "FBgn0034269", "EGF_Stimulus": "-0.61"}, {"ID": "FBgn0039966", "EGF_Stimulus": "1.1"}, {"ID": "FBgn0037347", "EGF_Stimulus": "-0.57"}, {"ID": "FBgn0036195", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0032023", "EGF_Stimulus": "-0.6"}, {"ID": "FBgn0031327", "EGF_Stimulus": "-0.64"}, {"ID": "FBgn0004919", "EGF_Stimulus": "1.44"}, {"ID": "FBgn0044046", "EGF_Stimulus": "0.94"}, {"ID": "FBgn0053523", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0038609", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0015795", "EGF_Stimulus": "-1.29"}, {"ID": "FBgn0032211", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0050420", "EGF_Stimulus": "1.02"}, {"ID": "FBgn0027574", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0051313", "EGF_Stimulus": "1.84"}, {"ID": "FBgn0038692", "EGF_Stimulus": "-0.33"}, {"ID": "FBgn0032075", "EGF_Stimulus": "-0.21"}, {"ID": "FBgn0051352", "EGF_Stimulus": "-0.83"}, {"ID": "FBgn0038191", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0038466", "EGF_Stimulus": "-1.07"}, {"ID": "FBgn0036993", "EGF_Stimulus": "-0.48"}, {"ID": "FBgn0031766", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0032388", "EGF_Stimulus": "1.61"}, {"ID": "FBgn0001281", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0033571", "EGF_Stimulus": "0.23"}, {"ID": "FBgn0004910", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0051219", "EGF_Stimulus": "-0.18"}, {"ID": "FBgn0033490", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0034894", "EGF_Stimulus": "1.06"}, {"ID": "FBgn0052488", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0050463", "EGF_Stimulus": "-1.58"}, {"ID": "FBgn0039806", "EGF_Stimulus": "-0.23"}, {"ID": "FBgn0035179", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0038742", "EGF_Stimulus": "-0.36"}, {"ID": "FBgn0038535", "EGF_Stimulus": "-0.12"}, {"ID": "FBgn0034324", "EGF_Stimulus": "1.73"}, {"ID": "FBgn0040045", "EGF_Stimulus": "1.09"}, {"ID": "FBgn0015586", "EGF_Stimulus": "-1.28"}, {"ID": "FBgn0053469", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0040352", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0033690", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0053100", "EGF_Stimulus": "1.54"}, {"ID": "FBgn0085384", "EGF_Stimulus": "1.75"}, {"ID": "FBgn0038111", "EGF_Stimulus": "-0.66"}, {"ID": "FBgn0036213", "EGF_Stimulus": "-3.34"}, {"ID": "FBgn0261385", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0004107", "EGF_Stimulus": "-2.9"}, {"ID": "FBgn0036443", "EGF_Stimulus": "-1.99"}, {"ID": "FBgn0032881", "EGF_Stimulus": "-5"}, {"ID": "FBgn0031089", "EGF_Stimulus": "1.23"}, {"ID": "FBgn0085253", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0030738", "EGF_Stimulus": "-0.2"}, {"ID": "FBgn0032234", "EGF_Stimulus": "-0.13"}, {"ID": "FBgn0036778", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0051326", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0035217", "EGF_Stimulus": "-0.93"}, {"ID": "FBgn0036516", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0034023", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0038262", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0052707", "EGF_Stimulus": "-1.31"}, {"ID": "FBgn0038826", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0032810", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0037680", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0033450", "EGF_Stimulus": "1.22"}, {"ID": "FBgn0032259", "EGF_Stimulus": "-1.22"}, {"ID": "FBgn0031010", "EGF_Stimulus": "0.22"}, {"ID": "FBgn0033705", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0039450", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0038451", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0037224", "EGF_Stimulus": "1.25"}, {"ID": "FBgn0052405", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0033369", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0040964", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0002872", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0038345", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0261451", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0052087", "EGF_Stimulus": "1"}, {"ID": "FBgn0033607", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0037584", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0039294", "EGF_Stimulus": "1.3"}, {"ID": "FBgn0010294", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0039135", "EGF_Stimulus": "1.01"}, {"ID": "FBgn0039581", "EGF_Stimulus": "1"}, {"ID": "FBgn0033597", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0032817", "EGF_Stimulus": "1.87"}, {"ID": "FBgn0037282", "EGF_Stimulus": "1.97"}, {"ID": "FBgn0027495", "EGF_Stimulus": "-0.21"}, {"ID": "FBgn0261710", "EGF_Stimulus": "-2.08"}, {"ID": "FBgn0038809", "EGF_Stimulus": "1.42"}, {"ID": "FBgn0035312", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0036039", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0001208", "EGF_Stimulus": "-0.73"}, {"ID": "FBgn0030616", "EGF_Stimulus": "-3.28"}, {"ID": "FBgn0051342", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0022382", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0035453", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0004864", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0039098", "EGF_Stimulus": "-1.67"}, {"ID": "FBgn0034700", "EGF_Stimulus": "1.81"}, {"ID": "FBgn0020765", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0031264", "EGF_Stimulus": "-0.97"}, {"ID": "FBgn0032586", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0052382", "EGF_Stimulus": "1.91"}, {"ID": "FBgn0030816", "EGF_Stimulus": "1.34"}, {"ID": "FBgn0038175", "EGF_Stimulus": "0.26"}, {"ID": "FBgn0032518", "EGF_Stimulus": "4.05"}, {"ID": "FBgn0261588", "EGF_Stimulus": "-0.4"}, {"ID": "FBgn0034656", "EGF_Stimulus": "-5.07"}, {"ID": "FBgn0053080", "EGF_Stimulus": "-1.19"}, {"ID": "FBgn0000447", "EGF_Stimulus": "-0.81"}, {"ID": "FBgn0037363", "EGF_Stimulus": "-0.99"}, {"ID": "FBgn0035877", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0034523", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0033936", "EGF_Stimulus": "-0.14"}, {"ID": "FBgn0033740", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0045483", "EGF_Stimulus": "-0.73"}, {"ID": "FBgn0033635", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0086758", "EGF_Stimulus": "2.33"}, {"ID": "FBgn0037130", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0022710", "EGF_Stimulus": "-1.19"}, {"ID": "FBgn0004034", "EGF_Stimulus": "-0.13"}, {"ID": "FBgn0039711", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0034009", "EGF_Stimulus": "1.09"}, {"ID": "FBgn0053177", "EGF_Stimulus": "0.96"}, {"ID": "FBgn0035282", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0032016", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0039498", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0037727", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0030348", "EGF_Stimulus": "-0.09"}, {"ID": "FBgn0024326", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0003371", "EGF_Stimulus": "1.85"}, {"ID": "FBgn0022355", "EGF_Stimulus": "1.02"}, {"ID": "FBgn0035495", "EGF_Stimulus": "1.31"}, {"ID": "FBgn0040726", "EGF_Stimulus": "1.55"}, {"ID": "FBgn0039759", "EGF_Stimulus": "1.1"}, {"ID": "FBgn0052057", "EGF_Stimulus": "-0.57"}, {"ID": "FBgn0032157", "EGF_Stimulus": "-0.72"}, {"ID": "FBgn0028993", "EGF_Stimulus": "-0.77"}, {"ID": "FBgn0011670", "EGF_Stimulus": "-0.35"}, {"ID": "FBgn0050029", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0004784", "EGF_Stimulus": "-0.29"}, {"ID": "FBgn0029820", "EGF_Stimulus": "-1.08"}, {"ID": "FBgn0013770", "EGF_Stimulus": "-1.59"}, {"ID": "FBgn0015400", "EGF_Stimulus": "-0.26"}, {"ID": "FBgn0035435", "EGF_Stimulus": "2.06"}, {"ID": "FBgn0025809", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0030871", "EGF_Stimulus": "1.01"}, {"ID": "FBgn0014417", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0035286", "EGF_Stimulus": "-0.36"}, {"ID": "FBgn0041092", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0029687", "EGF_Stimulus": "1.36"}, {"ID": "FBgn0034008", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0036259", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0020440", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0032726", "EGF_Stimulus": "0.08"}, {"ID": "FBgn0003715", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0033818", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0037135", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0001186", "EGF_Stimulus": "-0.35"}, {"ID": "FBgn0038057", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0030108", "EGF_Stimulus": "1.47"}, {"ID": "FBgn0030294", "EGF_Stimulus": "0.25"}, {"ID": "FBgn0030841", "EGF_Stimulus": "-0.66"}, {"ID": "FBgn0030063", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0031929", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0052440", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0030975", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0016047", "EGF_Stimulus": "-0.23"}, {"ID": "FBgn0023525", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0016691", "EGF_Stimulus": "-1.75"}, {"ID": "FBgn0037294", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0023081", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0063495", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0036448", "EGF_Stimulus": "-1.64"}, {"ID": "FBgn0261614", "EGF_Stimulus": "1.74"}, {"ID": "FBgn0039890", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0053262", "EGF_Stimulus": "-1.31"}, {"ID": "FBgn0037525", "EGF_Stimulus": "-1.74"}, {"ID": "FBgn0038422", "EGF_Stimulus": "1.31"}, {"ID": "FBgn0037105", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0050457", "EGF_Stimulus": "-0.79"}, {"ID": "FBgn0086783", "EGF_Stimulus": "-3.83"}, {"ID": "FBgn0025578", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0037543", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0037018", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0001226", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0051600", "EGF_Stimulus": "-0.96"}, {"ID": "FBgn0010329", "EGF_Stimulus": "-0.15"}, {"ID": "FBgn0028343", "EGF_Stimulus": "-2.67"}, {"ID": "FBgn0030142", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0039329", "EGF_Stimulus": "1.93"}, {"ID": "FBgn0038564", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0034002", "EGF_Stimulus": "1.29"}, {"ID": "FBgn0014076", "EGF_Stimulus": "-0.93"}, {"ID": "FBgn0031074", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0020429", "EGF_Stimulus": "-1.09"}, {"ID": "FBgn0030009", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0038751", "EGF_Stimulus": "1.64"}, {"ID": "FBgn0038680", "EGF_Stimulus": "-0.56"}, {"ID": "FBgn0027607", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0039274", "EGF_Stimulus": "-1.55"}, {"ID": "FBgn0025388", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0038803", "EGF_Stimulus": "1.13"}, {"ID": "FBgn0039126", "EGF_Stimulus": "-0.72"}, {"ID": "FBgn0015513", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0050390", "EGF_Stimulus": "-1.5"}, {"ID": "FBgn0017590", "EGF_Stimulus": "-1.05"}, {"ID": "FBgn0027558", "EGF_Stimulus": "1.02"}, {"ID": "FBgn0004646", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0031907", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0020445", "EGF_Stimulus": "-0.62"}, {"ID": "FBgn0033821", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0037934", "EGF_Stimulus": "-1.18"}, {"ID": "FBgn0037129", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0051704", "EGF_Stimulus": "-1.36"}, {"ID": "FBgn0025807", "EGF_Stimulus": "-0.54"}, {"ID": "FBgn0032779", "EGF_Stimulus": "0.21"}, {"ID": "FBgn0039566", "EGF_Stimulus": "1.48"}, {"ID": "FBgn0020257", "EGF_Stimulus": "1.21"}, {"ID": "FBgn0000039", "EGF_Stimulus": "1.29"}, {"ID": "FBgn0031831", "EGF_Stimulus": "-0.67"}, {"ID": "FBgn0034217", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0010328", "EGF_Stimulus": "-0.36"}, {"ID": "FBgn0034439", "EGF_Stimulus": "-1.86"}, {"ID": "FBgn0000337", "EGF_Stimulus": "-1.14"}, {"ID": "FBgn0086710", "EGF_Stimulus": "-3.39"}, {"ID": "FBgn0040705", "EGF_Stimulus": "1.04"}, {"ID": "FBgn0037746", "EGF_Stimulus": "-1.58"}, {"ID": "FBgn0035109", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0031979", "EGF_Stimulus": "1"}, {"ID": "FBgn0051677", "EGF_Stimulus": "-0.35"}, {"ID": "FBgn0034484", "EGF_Stimulus": "1"}, {"ID": "FBgn0023534", "EGF_Stimulus": "-0.76"}, {"ID": "FBgn0000179", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0045474", "EGF_Stimulus": "-0.91"}, {"ID": "FBgn0261055", "EGF_Stimulus": "-2.14"}, {"ID": "FBgn0259225", "EGF_Stimulus": "-1.78"}, {"ID": "FBgn0030670", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0050274", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0033904", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0036591", "EGF_Stimulus": "-0.62"}, {"ID": "FBgn0036987", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0040230", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0032685", "EGF_Stimulus": "-0.76"}, {"ID": "FBgn0037831", "EGF_Stimulus": "-1.39"}, {"ID": "FBgn0040104", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0034759", "EGF_Stimulus": "-0.94"}, {"ID": "FBgn0038479", "EGF_Stimulus": "-0.92"}, {"ID": "FBgn0034436", "EGF_Stimulus": "0.96"}, {"ID": "FBgn0039941", "EGF_Stimulus": "-1.49"}, {"ID": "FBgn0004066", "EGF_Stimulus": "-0.98"}, {"ID": "FBgn0039111", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0042103", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0033661", "EGF_Stimulus": "-0.72"}, {"ID": "FBgn0016754", "EGF_Stimulus": "-0.43"}, {"ID": "FBgn0011758", "EGF_Stimulus": "1.03"}, {"ID": "FBgn0034379", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0013680", "EGF_Stimulus": "1.49"}, {"ID": "FBgn0024234", "EGF_Stimulus": "-0.86"}, {"ID": "FBgn0034975", "EGF_Stimulus": "-0.76"}, {"ID": "FBgn0030721", "EGF_Stimulus": "0.3"}, {"ID": "FBgn0031094", "EGF_Stimulus": "-0.93"}, {"ID": "FBgn0030462", "EGF_Stimulus": "-1.43"}, {"ID": "FBgn0005775", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0046253", "EGF_Stimulus": "-1.63"}, {"ID": "FBgn0035265", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0004607", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0036218", "EGF_Stimulus": "1.11"}, {"ID": "FBgn0037758", "EGF_Stimulus": "-0.59"}, {"ID": "FBgn0037719", "EGF_Stimulus": "-0.99"}, {"ID": "FBgn0039521", "EGF_Stimulus": "1.34"}, {"ID": "FBgn0031854", "EGF_Stimulus": "0.18"}, {"ID": "FBgn0036666", "EGF_Stimulus": "-2"}, {"ID": "FBgn0038252", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0030938", "EGF_Stimulus": "-1.06"}, {"ID": "FBgn0051755", "EGF_Stimulus": "1.3"}, {"ID": "FBgn0052271", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0024288", "EGF_Stimulus": "-0.78"}, {"ID": "FBgn0001216", "EGF_Stimulus": "-2.18"}, {"ID": "FBgn0261436", "EGF_Stimulus": "-0.11"}, {"ID": "FBgn0053319", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0030864", "EGF_Stimulus": "-0.34"}, {"ID": "FBgn0032485", "EGF_Stimulus": "-0.7"}, {"ID": "FBgn0032612", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0005683", "EGF_Stimulus": "1.5"}, {"ID": "FBgn0039568", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0051812", "EGF_Stimulus": "-1.14"}, {"ID": "FBgn0033777", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0038472", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0034883", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0032979", "EGF_Stimulus": "-2.31"}, {"ID": "FBgn0037675", "EGF_Stimulus": "-1.44"}, {"ID": "FBgn0032331", "EGF_Stimulus": "-0.92"}, {"ID": "FBgn0050284", "EGF_Stimulus": "-0.78"}, {"ID": "FBgn0029856", "EGF_Stimulus": "-3.02"}, {"ID": "FBgn0053310", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0031598", "EGF_Stimulus": "1.1"}, {"ID": "FBgn0031296", "EGF_Stimulus": "-0.36"}, {"ID": "FBgn0043806", "EGF_Stimulus": "0.19"}, {"ID": "FBgn0010269", "EGF_Stimulus": "-1.98"}, {"ID": "FBgn0036980", "EGF_Stimulus": "1.47"}, {"ID": "FBgn0052053", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0052198", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0037057", "EGF_Stimulus": "-0.69"}, {"ID": "FBgn0031057", "EGF_Stimulus": "-1.39"}, {"ID": "FBgn0053653", "EGF_Stimulus": "-0.47"}, {"ID": "FBgn0053773", "EGF_Stimulus": "-0.69"}, {"ID": "FBgn0085464", "EGF_Stimulus": "-0.72"}, {"ID": "FBgn0032538", "EGF_Stimulus": "-1.5"}, {"ID": "FBgn0030082", "EGF_Stimulus": "-1.16"}, {"ID": "FBgn0039551", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0039332", "EGF_Stimulus": "-1"}, {"ID": "FBgn0031673", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0032820", "EGF_Stimulus": "1.64"}, {"ID": "FBgn0053926", "EGF_Stimulus": "-0.79"}, {"ID": "FBgn0250819", "EGF_Stimulus": "-1.26"}, {"ID": "FBgn0050429", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0085401", "EGF_Stimulus": "1.27"}, {"ID": "FBgn0035945", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0041225", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0036796", "EGF_Stimulus": "-0.88"}, {"ID": "FBgn0032734", "EGF_Stimulus": "-0.26"}, {"ID": "FBgn0037383", "EGF_Stimulus": "1.53"}, {"ID": "FBgn0028946", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0030486", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0053107", "EGF_Stimulus": "1.79"}, {"ID": "FBgn0031250", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0032596", "EGF_Stimulus": "-4.12"}, {"ID": "FBgn0015541", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0033117", "EGF_Stimulus": "-0.02"}, {"ID": "FBgn0004359", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0038274", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0031169", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0040239", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0028648", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0039473", "EGF_Stimulus": "-0.39"}, {"ID": "FBgn0029878", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0028426", "EGF_Stimulus": "-1.15"}, {"ID": "FBgn0028888", "EGF_Stimulus": "-0.89"}, {"ID": "FBgn0038240", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0029552", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0036158", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0038149", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0032156", "EGF_Stimulus": "-0.72"}, {"ID": "FBgn0261113", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0036974", "EGF_Stimulus": "-2.4"}, {"ID": "FBgn0037822", "EGF_Stimulus": "-0.62"}, {"ID": "FBgn0037999", "EGF_Stimulus": "1.52"}, {"ID": "FBgn0004852", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0030394", "EGF_Stimulus": "1.03"}, {"ID": "FBgn0013812", "EGF_Stimulus": "1.34"}, {"ID": "FBgn0035767", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0030926", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0039872", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0034089", "EGF_Stimulus": "-0.86"}, {"ID": "FBgn0034301", "EGF_Stimulus": "0.13"}, {"ID": "FBgn0030101", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0045980", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0015036", "EGF_Stimulus": "1.14"}, {"ID": "FBgn0033196", "EGF_Stimulus": "-2.8"}, {"ID": "FBgn0053193", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0036273", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0261648", "EGF_Stimulus": "1.22"}, {"ID": "FBgn0035232", "EGF_Stimulus": "-1.21"}, {"ID": "FBgn0032348", "EGF_Stimulus": "-0.56"}, {"ID": "FBgn0028708", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0031550", "EGF_Stimulus": "-0.32"}, {"ID": "FBgn0030522", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0025815", "EGF_Stimulus": "-0.35"}, {"ID": "FBgn0038719", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0035943", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0086895", "EGF_Stimulus": "1.88"}, {"ID": "FBgn0036818", "EGF_Stimulus": "-1.59"}, {"ID": "FBgn0038373", "EGF_Stimulus": "-0.61"}, {"ID": "FBgn0033048", "EGF_Stimulus": "1.2"}, {"ID": "FBgn0003495", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0035490", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0259231", "EGF_Stimulus": "-0.69"}, {"ID": "FBgn0001942", "EGF_Stimulus": "-5.39"}, {"ID": "FBgn0033781", "EGF_Stimulus": "0.14"}, {"ID": "FBgn0259167", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0042207", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0261882", "EGF_Stimulus": "1.38"}, {"ID": "FBgn0015295", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0034381", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0023212", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0031689", "EGF_Stimulus": "-1.51"}, {"ID": "FBgn0025830", "EGF_Stimulus": "-0.88"}, {"ID": "FBgn0022942", "EGF_Stimulus": "-1.56"}, {"ID": "FBgn0033421", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0035952", "EGF_Stimulus": "-2.31"}, {"ID": "FBgn0041710", "EGF_Stimulus": "-0.3"}, {"ID": "FBgn0038529", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0035006", "EGF_Stimulus": "-0.83"}, {"ID": "FBgn0032847", "EGF_Stimulus": "1.2"}, {"ID": "FBgn0005198", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0034578", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0025352", "EGF_Stimulus": "1.37"}, {"ID": "FBgn0035876", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0013995", "EGF_Stimulus": "-1.48"}, {"ID": "FBgn0261020", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0052365", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0039818", "EGF_Stimulus": "1.01"}, {"ID": "FBgn0039704", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0050418", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0037554", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0032381", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0032763", "EGF_Stimulus": "1.52"}, {"ID": "FBgn0053159", "EGF_Stimulus": "-0.82"}, {"ID": "FBgn0053508", "EGF_Stimulus": "9.52252449247213e-03"}, {"ID": "FBgn0037025", "EGF_Stimulus": "-2.87"}, {"ID": "FBgn0026059", "EGF_Stimulus": "-1.01"}, {"ID": "FBgn0033751", "EGF_Stimulus": "1.53"}, {"ID": "FBgn0020407", "EGF_Stimulus": "-0.59"}, {"ID": "FBgn0020622", "EGF_Stimulus": "0.22"}, {"ID": "FBgn0261674", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0045471", "EGF_Stimulus": "0.21"}, {"ID": "FBgn0031002", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0013300", "EGF_Stimulus": "1.38"}, {"ID": "FBgn0038679", "EGF_Stimulus": "1.36"}, {"ID": "FBgn0031629", "EGF_Stimulus": "1.12"}, {"ID": "FBgn0015374", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0044050", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0013763", "EGF_Stimulus": "-0.24"}, {"ID": "FBgn0035622", "EGF_Stimulus": "-0.75"}, {"ID": "FBgn0029629", "EGF_Stimulus": "-4.4"}, {"ID": "FBgn0035709", "EGF_Stimulus": "-1.26"}, {"ID": "FBgn0052447", "EGF_Stimulus": "-0.18"}, {"ID": "FBgn0028740", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0053095", "EGF_Stimulus": "0.11"}, {"ID": "FBgn0037627", "EGF_Stimulus": "-1.02"}, {"ID": "FBgn0038082", "EGF_Stimulus": "1.88"}, {"ID": "FBgn0030278", "EGF_Stimulus": "-0.64"}, {"ID": "FBgn0036806", "EGF_Stimulus": "0.96"}, {"ID": "FBgn0031111", "EGF_Stimulus": "-0.73"}, {"ID": "FBgn0005390", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0036342", "EGF_Stimulus": "-0.17"}, {"ID": "FBgn0005631", "EGF_Stimulus": "-0.97"}, {"ID": "FBgn0035110", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0031406", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0035385", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0032827", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0022800", "EGF_Stimulus": "1.03"}, {"ID": "FBgn0051091", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0260482", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0032289", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0050178", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0029946", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0053126", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0005624", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0032188", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0046873", "EGF_Stimulus": "1"}, {"ID": "FBgn0040588", "EGF_Stimulus": "-1.23"}, {"ID": "FBgn0004595", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0034769", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0031214", "EGF_Stimulus": "-1.19"}, {"ID": "FBgn0031826", "EGF_Stimulus": "-1.33"}, {"ID": "FBgn0038073", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0010741", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0053062", "EGF_Stimulus": "-1.21"}, {"ID": "FBgn0038285", "EGF_Stimulus": "-0.31"}, {"ID": "FBgn0031815", "EGF_Stimulus": "-0.31"}, {"ID": "FBgn0002783", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0034878", "EGF_Stimulus": "-4.12"}, {"ID": "FBgn0053230", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0050197", "EGF_Stimulus": "-1.92"}, {"ID": "FBgn0033724", "EGF_Stimulus": "0.96"}, {"ID": "FBgn0032673", "EGF_Stimulus": "-1.21"}, {"ID": "FBgn0036648", "EGF_Stimulus": "-0.59"}, {"ID": "FBgn0053145", "EGF_Stimulus": "-0.2"}, {"ID": "FBgn0037411", "EGF_Stimulus": "-0.67"}, {"ID": "FBgn0051200", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0033322", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0033785", "EGF_Stimulus": "-1.09"}, {"ID": "FBgn0050099", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0030591", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0028866", "EGF_Stimulus": "1.64"}, {"ID": "FBgn0029094", "EGF_Stimulus": "-1.69"}, {"ID": "FBgn0037622", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0037030", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0030854", "EGF_Stimulus": "-0.79"}, {"ID": "FBgn0000504", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0062517", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0033257", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0037007", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0014865", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0030951", "EGF_Stimulus": "-0.63"}, {"ID": "FBgn0045442", "EGF_Stimulus": "-0.48"}, {"ID": "FBgn0028871", "EGF_Stimulus": "-1.4"}, {"ID": "FBgn0039932", "EGF_Stimulus": "-1.04"}, {"ID": "FBgn0040228", "EGF_Stimulus": "1.12"}, {"ID": "FBgn0034785", "EGF_Stimulus": "-1.15"}, {"ID": "FBgn0027548", "EGF_Stimulus": "1.42"}, {"ID": "FBgn0039411", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0002948", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0023515", "EGF_Stimulus": "0.15"}, {"ID": "FBgn0039244", "EGF_Stimulus": "-1.09"}, {"ID": "FBgn0050047", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0034362", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0015561", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0038590", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0035703", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0027521", "EGF_Stimulus": "-1.66"}, {"ID": "FBgn0033713", "EGF_Stimulus": "-0.66"}, {"ID": "FBgn0037730", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0037116", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0020235", "EGF_Stimulus": "-1.51"}, {"ID": "FBgn0034972", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0035091", "EGF_Stimulus": "-0.37"}, {"ID": "FBgn0033413", "EGF_Stimulus": "0.27"}, {"ID": "FBgn0040843", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0011705", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0002526", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0036282", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0035024", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0037254", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0015360", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0036193", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0030183", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0064225", "EGF_Stimulus": "-4.16"}, {"ID": "FBgn0259834", "EGF_Stimulus": "1.91"}, {"ID": "FBgn0036671", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0000273", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0036186", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0051017", "EGF_Stimulus": "-0.96"}, {"ID": "FBgn0036801", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0037637", "EGF_Stimulus": "0.22"}, {"ID": "FBgn0052459", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0010391", "EGF_Stimulus": "-0.46"}, {"ID": "FBgn0054001", "EGF_Stimulus": "1.11"}, {"ID": "FBgn0011232", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0035087", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0013323", "EGF_Stimulus": "1.02"}, {"ID": "FBgn0060296", "EGF_Stimulus": "-1.2"}, {"ID": "FBgn0036020", "EGF_Stimulus": "1.32"}, {"ID": "FBgn0004047", "EGF_Stimulus": "-0.76"}, {"ID": "FBgn0036466", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0035611", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0052452", "EGF_Stimulus": "-0.92"}, {"ID": "FBgn0259680", "EGF_Stimulus": "-0.64"}, {"ID": "FBgn0039178", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0035647", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0031900", "EGF_Stimulus": "-0.23"}, {"ID": "FBgn0033592", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0038007", "EGF_Stimulus": "1.24"}, {"ID": "FBgn0002607", "EGF_Stimulus": "5.6"}, {"ID": "FBgn0028899", "EGF_Stimulus": "1.1"}, {"ID": "FBgn0039730", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0036920", "EGF_Stimulus": "-0.31"}, {"ID": "FBgn0014931", "EGF_Stimulus": "-1.07"}, {"ID": "FBgn0034707", "EGF_Stimulus": "1.53"}, {"ID": "FBgn0038666", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0030296", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0038958", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0038942", "EGF_Stimulus": "-0.6"}, {"ID": "FBgn0003134", "EGF_Stimulus": "-0.62"}, {"ID": "FBgn0029964", "EGF_Stimulus": "1.04"}, {"ID": "FBgn0034827", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0086266", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0002937", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0035249", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0259101", "EGF_Stimulus": "-0.74"}, {"ID": "FBgn0037229", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0026179", "EGF_Stimulus": "1.27"}, {"ID": "FBgn0000119", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0034071", "EGF_Stimulus": "-0.34"}, {"ID": "FBgn0036014", "EGF_Stimulus": "-0.37"}, {"ID": "FBgn0004838", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0000317", "EGF_Stimulus": "-0.13"}, {"ID": "FBgn0040733", "EGF_Stimulus": "1.01"}, {"ID": "FBgn0030797", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0002622", "EGF_Stimulus": "-4.37"}, {"ID": "FBgn0031728", "EGF_Stimulus": "-1.04"}, {"ID": "FBgn0033317", "EGF_Stimulus": "1.31"}, {"ID": "FBgn0058006", "EGF_Stimulus": "-0.89"}, {"ID": "FBgn0037354", "EGF_Stimulus": "-0.43"}, {"ID": "FBgn0030089", "EGF_Stimulus": "-0.75"}, {"ID": "FBgn0001215", "EGF_Stimulus": "-2.12"}, {"ID": "FBgn0038643", "EGF_Stimulus": "0.17"}, {"ID": "FBgn0030247", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0043825", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0042137", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0039209", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0029955", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0039130", "EGF_Stimulus": "-0.14"}, {"ID": "FBgn0003308", "EGF_Stimulus": "-0.63"}, {"ID": "FBgn0036254", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0051044", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0036621", "EGF_Stimulus": "1.55"}, {"ID": "FBgn0028583", "EGF_Stimulus": "-0.2"}, {"ID": "FBgn0032775", "EGF_Stimulus": "-0.37"}, {"ID": "FBgn0033806", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0032160", "EGF_Stimulus": "1.01"}, {"ID": "FBgn0250910", "EGF_Stimulus": "-1.15"}, {"ID": "FBgn0042650", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0036733", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0030105", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0036016", "EGF_Stimulus": "1.14"}, {"ID": "FBgn0036471", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0032127", "EGF_Stimulus": "-1.32"}, {"ID": "FBgn0036703", "EGF_Stimulus": "-1.19"}, {"ID": "FBgn0001250", "EGF_Stimulus": "-0.94"}, {"ID": "FBgn0038887", "EGF_Stimulus": "-0.19"}, {"ID": "FBgn0030608", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0032670", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0261705", "EGF_Stimulus": "-1.05"}, {"ID": "FBgn0037553", "EGF_Stimulus": "-0.08"}, {"ID": "FBgn0030097", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0034803", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0028836", "EGF_Stimulus": "1.33"}, {"ID": "FBgn0032646", "EGF_Stimulus": "-0.98"}, {"ID": "FBgn0033468", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0024150", "EGF_Stimulus": "1.53"}, {"ID": "FBgn0032311", "EGF_Stimulus": "1.49"}, {"ID": "FBgn0031902", "EGF_Stimulus": "1.29"}, {"ID": "FBgn0011642", "EGF_Stimulus": "0.05"}, {"ID": "FBgn0051493", "EGF_Stimulus": "-0.92"}, {"ID": "FBgn0035704", "EGF_Stimulus": "-0.31"}, {"ID": "FBgn0051898", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0031701", "EGF_Stimulus": "-0.89"}, {"ID": "FBgn0030317", "EGF_Stimulus": "-0.95"}, {"ID": "FBgn0036978", "EGF_Stimulus": "-0.89"}, {"ID": "FBgn0022986", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0026400", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0038850", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0260487", "EGF_Stimulus": "-0.99"}, {"ID": "FBgn0039733", "EGF_Stimulus": "1.22"}, {"ID": "FBgn0033787", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0034989", "EGF_Stimulus": "0.21"}, {"ID": "FBgn0052351", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0028833", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0085232", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0259683", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0260428", "EGF_Stimulus": "-0.36"}, {"ID": "FBgn0260444", "EGF_Stimulus": "1"}, {"ID": "FBgn0034488", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0020399", "EGF_Stimulus": "-0.32"}, {"ID": "FBgn0039816", "EGF_Stimulus": "-0.95"}, {"ID": "FBgn0030249", "EGF_Stimulus": "-3.04"}, {"ID": "FBgn0039611", "EGF_Stimulus": "-0.29"}, {"ID": "FBgn0023175", "EGF_Stimulus": "-1.59"}, {"ID": "FBgn0052079", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0015929", "EGF_Stimulus": "-0.01"}, {"ID": "FBgn0033714", "EGF_Stimulus": "-0.8"}, {"ID": "FBgn0034627", "EGF_Stimulus": "-0.23"}, {"ID": "FBgn0011281", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0010039", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0000351", "EGF_Stimulus": "-0.39"}, {"ID": "FBgn0037980", "EGF_Stimulus": "-0.64"}, {"ID": "FBgn0005779", "EGF_Stimulus": "-0.32"}, {"ID": "FBgn0026324", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0004404", "EGF_Stimulus": "-3.08"}, {"ID": "FBgn0030898", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0031545", "EGF_Stimulus": "-0.96"}, {"ID": "FBgn0087012", "EGF_Stimulus": "-1.17"}, {"ID": "FBgn0031968", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0260012", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0035909", "EGF_Stimulus": "-0.92"}, {"ID": "FBgn0261016", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0033793", "EGF_Stimulus": "-1.21"}, {"ID": "FBgn0003507", "EGF_Stimulus": "-0.25"}, {"ID": "FBgn0037537", "EGF_Stimulus": "-0.25"}, {"ID": "FBgn0051014", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0015602", "EGF_Stimulus": "-1.04"}, {"ID": "FBgn0029718", "EGF_Stimulus": "-1.02"}, {"ID": "FBgn0045469", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0003249", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0047092", "EGF_Stimulus": "-1.56"}, {"ID": "FBgn0039413", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0040575", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0020270", "EGF_Stimulus": "1.01"}, {"ID": "FBgn0042094", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0003062", "EGF_Stimulus": "-1.72"}, {"ID": "FBgn0032818", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0032135", "EGF_Stimulus": "0.26"}, {"ID": "FBgn0085315", "EGF_Stimulus": "1"}, {"ID": "FBgn0259244", "EGF_Stimulus": "2.38"}, {"ID": "FBgn0038080", "EGF_Stimulus": "-0.59"}, {"ID": "FBgn0010612", "EGF_Stimulus": "-2.02"}, {"ID": "FBgn0053339", "EGF_Stimulus": "1.38"}, {"ID": "FBgn0085257", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0038891", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0032689", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0029839", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0034841", "EGF_Stimulus": "0.27"}, {"ID": "FBgn0025837", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0051120", "EGF_Stimulus": "-0.75"}, {"ID": "FBgn0038005", "EGF_Stimulus": "1.14"}, {"ID": "FBgn0033391", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0050069", "EGF_Stimulus": "1.37"}, {"ID": "FBgn0035313", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0035299", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0030167", "EGF_Stimulus": "0.1"}, {"ID": "FBgn0051013", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0052412", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0040353", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0035107", "EGF_Stimulus": "-1.01"}, {"ID": "FBgn0036317", "EGF_Stimulus": "-0.78"}, {"ID": "FBgn0003714", "EGF_Stimulus": "-0.2"}, {"ID": "FBgn0037228", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0261341", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0029506", "EGF_Stimulus": "0.23"}, {"ID": "FBgn0033315", "EGF_Stimulus": "-0.67"}, {"ID": "FBgn0011706", "EGF_Stimulus": "-2.54"}, {"ID": "FBgn0051363", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0042213", "EGF_Stimulus": "0.15"}, {"ID": "FBgn0032863", "EGF_Stimulus": "-1.17"}, {"ID": "FBgn0030482", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0029950", "EGF_Stimulus": "0.2"}, {"ID": "FBgn0050075", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0050090", "EGF_Stimulus": "1.64"}, {"ID": "FBgn0003138", "EGF_Stimulus": "-1.99"}, {"ID": "FBgn0034493", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0003961", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0035207", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0045073", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0033753", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0050034", "EGF_Stimulus": "0.3"}, {"ID": "FBgn0051406", "EGF_Stimulus": "1.15"}, {"ID": "FBgn0035111", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0034321", "EGF_Stimulus": "0.19"}, {"ID": "FBgn0031721", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0031395", "EGF_Stimulus": "-0.22"}, {"ID": "FBgn0051536", "EGF_Stimulus": "1.47"}, {"ID": "FBgn0011239", "EGF_Stimulus": "-1.62"}, {"ID": "FBgn0260436", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0010265", "EGF_Stimulus": "-4.77"}, {"ID": "FBgn0038110", "EGF_Stimulus": "2.51"}, {"ID": "FBgn0029810", "EGF_Stimulus": "-1.33"}, {"ID": "FBgn0013811", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0037368", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0039466", "EGF_Stimulus": "-3.58"}, {"ID": "FBgn0036948", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0023514", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0031737", "EGF_Stimulus": "0.16"}, {"ID": "FBgn0261606", "EGF_Stimulus": "-4.66"}, {"ID": "FBgn0035097", "EGF_Stimulus": "-0.89"}, {"ID": "FBgn0027084", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0085405", "EGF_Stimulus": "1.04"}, {"ID": "FBgn0035868", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0052404", "EGF_Stimulus": "-0.98"}, {"ID": "FBgn0031213", "EGF_Stimulus": "1.15"}, {"ID": "FBgn0025808", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0046113", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0027660", "EGF_Stimulus": "-1.44"}, {"ID": "FBgn0031501", "EGF_Stimulus": "-0.33"}, {"ID": "FBgn0035036", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0035140", "EGF_Stimulus": "-0.52"}, {"ID": "FBgn0030952", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0036805", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0041630", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0033491", "EGF_Stimulus": "-0.35"}, {"ID": "FBgn0037446", "EGF_Stimulus": "-1.86"}, {"ID": "FBgn0011747", "EGF_Stimulus": "-0.65"}, {"ID": "FBgn0030268", "EGF_Stimulus": "-0.11"}, {"ID": "FBgn0034481", "EGF_Stimulus": "1.21"}, {"ID": "FBgn0054029", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0032551", "EGF_Stimulus": "1.37"}, {"ID": "FBgn0032022", "EGF_Stimulus": "-0.83"}, {"ID": "FBgn0035481", "EGF_Stimulus": "-0.26"}, {"ID": "FBgn0259821", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0030711", "EGF_Stimulus": "-0.7"}, {"ID": "FBgn0034198", "EGF_Stimulus": "-0.22"}, {"ID": "FBgn0037028", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0031611", "EGF_Stimulus": "-0.17"}, {"ID": "FBgn0026061", "EGF_Stimulus": "0.22"}, {"ID": "FBgn0028857", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0024897", "EGF_Stimulus": "-0.9"}, {"ID": "FBgn0032723", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0032143", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0038144", "EGF_Stimulus": "-0.22"}, {"ID": "FBgn0052036", "EGF_Stimulus": "-0.39"}, {"ID": "FBgn0035154", "EGF_Stimulus": "1.51"}, {"ID": "FBgn0003886", "EGF_Stimulus": "-2.81"}, {"ID": "FBgn0053303", "EGF_Stimulus": "-0.78"}, {"ID": "FBgn0040928", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0033354", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0046763", "EGF_Stimulus": "-2.61"}, {"ID": "FBgn0039965", "EGF_Stimulus": "1.31"}, {"ID": "FBgn0067779", "EGF_Stimulus": "1.27"}, {"ID": "FBgn0039478", "EGF_Stimulus": "0.22"}, {"ID": "FBgn0051438", "EGF_Stimulus": "1.42"}, {"ID": "FBgn0003378", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0001965", "EGF_Stimulus": "-4.07"}, {"ID": "FBgn0053109", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0010403", "EGF_Stimulus": "1.03"}, {"ID": "FBgn0021873", "EGF_Stimulus": "1.26"}, {"ID": "FBgn0038798", "EGF_Stimulus": "0.2"}, {"ID": "FBgn0000280", "EGF_Stimulus": "-1.47"}, {"ID": "FBgn0000318", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0040684", "EGF_Stimulus": "-1.04"}, {"ID": "FBgn0027599", "EGF_Stimulus": "1.49"}, {"ID": "FBgn0032663", "EGF_Stimulus": "-0.3"}, {"ID": "FBgn0033589", "EGF_Stimulus": "-1.77"}, {"ID": "FBgn0044011", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0039728", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0052074", "EGF_Stimulus": "-1.63"}, {"ID": "FBgn0033422", "EGF_Stimulus": "0.16"}, {"ID": "FBgn0011802", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0051821", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0259227", "EGF_Stimulus": "-2.11"}, {"ID": "FBgn0034566", "EGF_Stimulus": "-1.48"}, {"ID": "FBgn0027490", "EGF_Stimulus": "-0.57"}, {"ID": "FBgn0038697", "EGF_Stimulus": "1.02"}, {"ID": "FBgn0261119", "EGF_Stimulus": "1.32"}, {"ID": "FBgn0032741", "EGF_Stimulus": "0.17"}, {"ID": "FBgn0260941", "EGF_Stimulus": "0.21"}, {"ID": "FBgn0033874", "EGF_Stimulus": "-0.08"}, {"ID": "FBgn0031961", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0031708", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0029915", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0027590", "EGF_Stimulus": "-0.6"}, {"ID": "FBgn0260407", "EGF_Stimulus": "-1.26"}, {"ID": "FBgn0032252", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0015546", "EGF_Stimulus": "-0.59"}, {"ID": "FBgn0033890", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0030300", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0024320", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0038651", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0027496", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0010607", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0001091", "EGF_Stimulus": "-1.18"}, {"ID": "FBgn0021742", "EGF_Stimulus": "-0.54"}, {"ID": "FBgn0260859", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0022936", "EGF_Stimulus": "-0.75"}, {"ID": "FBgn0003124", "EGF_Stimulus": "-2.06"}, {"ID": "FBgn0033149", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0002921", "EGF_Stimulus": "-0.76"}, {"ID": "FBgn0030090", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0037937", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0003499", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0037296", "EGF_Stimulus": "1.31"}, {"ID": "FBgn0052111", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0011274", "EGF_Stimulus": "-1"}, {"ID": "FBgn0036499", "EGF_Stimulus": "-0.78"}, {"ID": "FBgn0038311", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0037623", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0053531", "EGF_Stimulus": "1.72"}, {"ID": "FBgn0000064", "EGF_Stimulus": "-2.35"}, {"ID": "FBgn0038431", "EGF_Stimulus": "1.13"}, {"ID": "FBgn0083960", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0033112", "EGF_Stimulus": "-0.54"}, {"ID": "FBgn0030931", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0052511", "EGF_Stimulus": "2.04"}, {"ID": "FBgn0038772", "EGF_Stimulus": "1.51"}, {"ID": "FBgn0034755", "EGF_Stimulus": "0.23"}, {"ID": "FBgn0028662", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0027088", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0032693", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0041241", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0052732", "EGF_Stimulus": "1.35"}, {"ID": "FBgn0045063", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0050044", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0025820", "EGF_Stimulus": "0.23"}, {"ID": "FBgn0036921", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0031000", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0037713", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0029830", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0052847", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0038365", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0030467", "EGF_Stimulus": "1.89"}, {"ID": "FBgn0053468", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0038087", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0032793", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0037836", "EGF_Stimulus": "0.26"}, {"ID": "FBgn0034438", "EGF_Stimulus": "1.38"}, {"ID": "FBgn0038129", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0032519", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0033302", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0083919", "EGF_Stimulus": "0.07"}, {"ID": "FBgn0031835", "EGF_Stimulus": "-1.52"}, {"ID": "FBgn0035040", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0034322", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0000326", "EGF_Stimulus": "-0.39"}, {"ID": "FBgn0085229", "EGF_Stimulus": "1.88"}, {"ID": "FBgn0031190", "EGF_Stimulus": "-1.58"}, {"ID": "FBgn0000038", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0039085", "EGF_Stimulus": "-0.73"}, {"ID": "FBgn0050381", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0052282", "EGF_Stimulus": "-0.7"}, {"ID": "FBgn0034433", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0033529", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0052199", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0029887", "EGF_Stimulus": "-0.77"}, {"ID": "FBgn0051560", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0038478", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0014869", "EGF_Stimulus": "-0.31"}, {"ID": "FBgn0038279", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0035047", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0002564", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0050263", "EGF_Stimulus": "-1.39"}, {"ID": "FBgn0030309", "EGF_Stimulus": "-1.22"}, {"ID": "FBgn0036897", "EGF_Stimulus": "-0.95"}, {"ID": "FBgn0039930", "EGF_Stimulus": "-0.3"}, {"ID": "FBgn0035479", "EGF_Stimulus": "1.45"}, {"ID": "FBgn0052190", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0004603", "EGF_Stimulus": "-6.03"}, {"ID": "FBgn0003890", "EGF_Stimulus": "-1.3"}, {"ID": "FBgn0039562", "EGF_Stimulus": "-0.99"}, {"ID": "FBgn0051958", "EGF_Stimulus": "1.13"}, {"ID": "FBgn0028947", "EGF_Stimulus": "-0.84"}, {"ID": "FBgn0085457", "EGF_Stimulus": "0.21"}, {"ID": "FBgn0026170", "EGF_Stimulus": "-1.51"}, {"ID": "FBgn0042105", "EGF_Stimulus": "1.2"}, {"ID": "FBgn0030202", "EGF_Stimulus": "-0.29"}, {"ID": "FBgn0024179", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0027872", "EGF_Stimulus": "-0.09"}, {"ID": "FBgn0020251", "EGF_Stimulus": "-0.82"}, {"ID": "FBgn0053156", "EGF_Stimulus": "1.14"}, {"ID": "FBgn0054057", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0031314", "EGF_Stimulus": "-0.24"}, {"ID": "FBgn0050338", "EGF_Stimulus": "-0.46"}, {"ID": "FBgn0038209", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0032169", "EGF_Stimulus": "1.31"}, {"ID": "FBgn0000636", "EGF_Stimulus": "1.02"}, {"ID": "FBgn0015298", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0035643", "EGF_Stimulus": "2.19"}, {"ID": "FBgn0030364", "EGF_Stimulus": "-0.61"}, {"ID": "FBgn0037810", "EGF_Stimulus": "-0.69"}, {"ID": "FBgn0004429", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0051146", "EGF_Stimulus": "1.21"}, {"ID": "FBgn0002878", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0034998", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0030291", "EGF_Stimulus": "0.23"}, {"ID": "FBgn0053218", "EGF_Stimulus": "-0.74"}, {"ID": "FBgn0034722", "EGF_Stimulus": "0.04"}, {"ID": "FBgn0003328", "EGF_Stimulus": "1.52"}, {"ID": "FBgn0032495", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0001147", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0002673", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0030449", "EGF_Stimulus": "-0.09"}, {"ID": "FBgn0031597", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0032886", "EGF_Stimulus": "-0.8"}, {"ID": "FBgn0261089", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0036659", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0051870", "EGF_Stimulus": "-1.16"}, {"ID": "FBgn0051961", "EGF_Stimulus": "-0.7"}, {"ID": "FBgn0036106", "EGF_Stimulus": "0.96"}, {"ID": "FBgn0031188", "EGF_Stimulus": "0.25"}, {"ID": "FBgn0037526", "EGF_Stimulus": "-0.95"}, {"ID": "FBgn0043470", "EGF_Stimulus": "0.2"}, {"ID": "FBgn0034650", "EGF_Stimulus": "0.08"}, {"ID": "FBgn0039870", "EGF_Stimulus": "0.27"}, {"ID": "FBgn0034187", "EGF_Stimulus": "1.51"}, {"ID": "FBgn0085239", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0030638", "EGF_Stimulus": "-0.95"}, {"ID": "FBgn0051321", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0034419", "EGF_Stimulus": "-1.39"}, {"ID": "FBgn0037321", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0038236", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0032299", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0050419", "EGF_Stimulus": "1.56"}, {"ID": "FBgn0038074", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0035592", "EGF_Stimulus": "-0.11"}, {"ID": "FBgn0031759", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0036714", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0050015", "EGF_Stimulus": "1.3"}, {"ID": "FBgn0053096", "EGF_Stimulus": "-1.38"}, {"ID": "FBgn0053087", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0259794", "EGF_Stimulus": "-1.08"}, {"ID": "FBgn0042712", "EGF_Stimulus": "1.25"}, {"ID": "FBgn0016698", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0260659", "EGF_Stimulus": "-0.91"}, {"ID": "FBgn0030617", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0033481", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0002932", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0026085", "EGF_Stimulus": "-0.43"}, {"ID": "FBgn0037788", "EGF_Stimulus": "-0.17"}, {"ID": "FBgn0034352", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0085556", "EGF_Stimulus": "1.28"}, {"ID": "FBgn0030386", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0029726", "EGF_Stimulus": "-1.37"}, {"ID": "FBgn0261611", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0035293", "EGF_Stimulus": "-0.4"}, {"ID": "FBgn0052246", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0037857", "EGF_Stimulus": "1.43"}, {"ID": "FBgn0063497", "EGF_Stimulus": "-0.84"}, {"ID": "FBgn0030800", "EGF_Stimulus": "-0.36"}, {"ID": "FBgn0035439", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0030283", "EGF_Stimulus": "-0.37"}, {"ID": "FBgn0031850", "EGF_Stimulus": "-1.09"}, {"ID": "FBgn0037304", "EGF_Stimulus": "-0.14"}, {"ID": "FBgn0052755", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0001139", "EGF_Stimulus": "-0.48"}, {"ID": "FBgn0034010", "EGF_Stimulus": "-1.51"}, {"ID": "FBgn0040271", "EGF_Stimulus": "-0.26"}, {"ID": "FBgn0052544", "EGF_Stimulus": "-0.7"}, {"ID": "FBgn0034602", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0261555", "EGF_Stimulus": "-0.78"}, {"ID": "FBgn0035328", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0043783", "EGF_Stimulus": "1.45"}, {"ID": "FBgn0023496", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0017551", "EGF_Stimulus": "-2.6"}, {"ID": "FBgn0015300", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0044809", "EGF_Stimulus": "1.37"}, {"ID": "FBgn0013673", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0030164", "EGF_Stimulus": "-0.73"}, {"ID": "FBgn0036598", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0030605", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0000618", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0004387", "EGF_Stimulus": "-2.68"}, {"ID": "FBgn0038016", "EGF_Stimulus": "-4.51"}, {"ID": "FBgn0036433", "EGF_Stimulus": "1.03"}, {"ID": "FBgn0052554", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0051164", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0030647", "EGF_Stimulus": "-0.21"}, {"ID": "FBgn0030331", "EGF_Stimulus": "-0.29"}, {"ID": "FBgn0042102", "EGF_Stimulus": "-0.56"}, {"ID": "FBgn0000146", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0040729", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0054024", "EGF_Stimulus": "-0.55"}, {"ID": "FBgn0033842", "EGF_Stimulus": "0.94"}, {"ID": "FBgn0000414", "EGF_Stimulus": "-1.29"}, {"ID": "FBgn0038745", "EGF_Stimulus": "-1.09"}, {"ID": "FBgn0041231", "EGF_Stimulus": "1.24"}, {"ID": "FBgn0045486", "EGF_Stimulus": "1.99"}, {"ID": "FBgn0033039", "EGF_Stimulus": "1.26"}, {"ID": "FBgn0086408", "EGF_Stimulus": "-0.43"}, {"ID": "FBgn0031636", "EGF_Stimulus": "-0.94"}, {"ID": "FBgn0032955", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0020258", "EGF_Stimulus": "-1.82"}, {"ID": "FBgn0036440", "EGF_Stimulus": "-1.21"}, {"ID": "FBgn0023001", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0038980", "EGF_Stimulus": "1.33"}, {"ID": "FBgn0033364", "EGF_Stimulus": "-1.4"}, {"ID": "FBgn0035416", "EGF_Stimulus": "1.23"}, {"ID": "FBgn0086686", "EGF_Stimulus": "-0.92"}, {"ID": "FBgn0031981", "EGF_Stimulus": "-0.19"}, {"ID": "FBgn0041711", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0035281", "EGF_Stimulus": "-0.22"}, {"ID": "FBgn0261261", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0044810", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0030929", "EGF_Stimulus": "-0.33"}, {"ID": "FBgn0063667", "EGF_Stimulus": "-1.45"}, {"ID": "FBgn0052533", "EGF_Stimulus": "-0.98"}, {"ID": "FBgn0259961", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0030645", "EGF_Stimulus": "-0.88"}, {"ID": "FBgn0039315", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0035088", "EGF_Stimulus": "1.31"}, {"ID": "FBgn0036916", "EGF_Stimulus": "-2.36"}, {"ID": "FBgn0011206", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0033708", "EGF_Stimulus": "-0.57"}, {"ID": "FBgn0039306", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0039298", "EGF_Stimulus": "5.38"}, {"ID": "FBgn0011661", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0032602", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0030663", "EGF_Stimulus": "-1.29"}, {"ID": "FBgn0020912", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0042092", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0015926", "EGF_Stimulus": "-0.76"}, {"ID": "FBgn0039291", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0036544", "EGF_Stimulus": "-0.65"}, {"ID": "FBgn0032225", "EGF_Stimulus": "1.29"}, {"ID": "FBgn0000276", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0034513", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0031403", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0030272", "EGF_Stimulus": "-0.33"}, {"ID": "FBgn0025390", "EGF_Stimulus": "1.04"}, {"ID": "FBgn0028336", "EGF_Stimulus": "1.8"}, {"ID": "FBgn0038530", "EGF_Stimulus": "-0.18"}, {"ID": "FBgn0034135", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0003204", "EGF_Stimulus": "-1.43"}, {"ID": "FBgn0032192", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0053471", "EGF_Stimulus": "-0.81"}, {"ID": "FBgn0053679", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0013762", "EGF_Stimulus": "1.49"}, {"ID": "FBgn0032484", "EGF_Stimulus": "-0.1"}, {"ID": "FBgn0030716", "EGF_Stimulus": "0.14"}, {"ID": "FBgn0030178", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0086367", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0027836", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0259194", "EGF_Stimulus": "-0.86"}, {"ID": "FBgn0038702", "EGF_Stimulus": "0.27"}, {"ID": "FBgn0034938", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0038519", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0085298", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0001137", "EGF_Stimulus": "1.15"}, {"ID": "FBgn0033749", "EGF_Stimulus": "1.76"}, {"ID": "FBgn0003209", "EGF_Stimulus": "-4.42"}, {"ID": "FBgn0024728", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0035380", "EGF_Stimulus": "0.26"}, {"ID": "FBgn0027549", "EGF_Stimulus": "-1.01"}, {"ID": "FBgn0039738", "EGF_Stimulus": "-0.29"}, {"ID": "FBgn0053302", "EGF_Stimulus": "-0.63"}, {"ID": "FBgn0026058", "EGF_Stimulus": "-0.52"}, {"ID": "FBgn0034243", "EGF_Stimulus": "-0.72"}, {"ID": "FBgn0036511", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0030811", "EGF_Stimulus": "-0.88"}, {"ID": "FBgn0029827", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0003450", "EGF_Stimulus": "-1.21"}, {"ID": "FBgn0032719", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0033443", "EGF_Stimulus": "0.22"}, {"ID": "FBgn0004106", "EGF_Stimulus": "-2.36"}, {"ID": "FBgn0039527", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0037973", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0032973", "EGF_Stimulus": "0.15"}, {"ID": "FBgn0026397", "EGF_Stimulus": "1.43"}, {"ID": "FBgn0030826", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0027619", "EGF_Stimulus": "-0.37"}, {"ID": "FBgn0030344", "EGF_Stimulus": "1"}, {"ID": "FBgn0040989", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0040796", "EGF_Stimulus": "-1.1"}, {"ID": "FBgn0035078", "EGF_Stimulus": "-0.85"}, {"ID": "FBgn0035805", "EGF_Stimulus": "1.09"}, {"ID": "FBgn0010438", "EGF_Stimulus": "-0.13"}, {"ID": "FBgn0086909", "EGF_Stimulus": "1.35"}, {"ID": "FBgn0036964", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0051524", "EGF_Stimulus": "-1.89"}, {"ID": "FBgn0013773", "EGF_Stimulus": "-0.96"}, {"ID": "FBgn0261556", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0051357", "EGF_Stimulus": "-0.57"}, {"ID": "FBgn0039771", "EGF_Stimulus": "-0.24"}, {"ID": "FBgn0013308", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0005660", "EGF_Stimulus": "1.03"}, {"ID": "FBgn0037468", "EGF_Stimulus": "1"}, {"ID": "FBgn0085433", "EGF_Stimulus": "2.48"}, {"ID": "FBgn0032209", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0035455", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0038296", "EGF_Stimulus": "0.15"}, {"ID": "FBgn0026570", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0052669", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0031216", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0001269", "EGF_Stimulus": "-0.98"}, {"ID": "FBgn0036670", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0053192", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0015772", "EGF_Stimulus": "-0.78"}, {"ID": "FBgn0027868", "EGF_Stimulus": "-0.92"}, {"ID": "FBgn0039639", "EGF_Stimulus": "1.19"}, {"ID": "FBgn0011277", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0035670", "EGF_Stimulus": "0.22"}, {"ID": "FBgn0039886", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0036031", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0037250", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0033183", "EGF_Stimulus": "1.09"}, {"ID": "FBgn0029067", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0031333", "EGF_Stimulus": "-0.99"}, {"ID": "FBgn0030352", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0034558", "EGF_Stimulus": "0.94"}, {"ID": "FBgn0000709", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0045761", "EGF_Stimulus": "2.13"}, {"ID": "FBgn0261570", "EGF_Stimulus": "0.96"}, {"ID": "FBgn0050488", "EGF_Stimulus": "-1.19"}, {"ID": "FBgn0033570", "EGF_Stimulus": "-0.97"}, {"ID": "FBgn0031283", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0015024", "EGF_Stimulus": "1.45"}, {"ID": "FBgn0038993", "EGF_Stimulus": "-0.76"}, {"ID": "FBgn0038161", "EGF_Stimulus": "1.01"}, {"ID": "FBgn0037581", "EGF_Stimulus": "0.12"}, {"ID": "FBgn0034277", "EGF_Stimulus": "-0.77"}, {"ID": "FBgn0038494", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0010747", "EGF_Stimulus": "0.27"}, {"ID": "FBgn0035090", "EGF_Stimulus": "-1.74"}, {"ID": "FBgn0039655", "EGF_Stimulus": "-0.47"}, {"ID": "FBgn0050410", "EGF_Stimulus": "1.2"}, {"ID": "FBgn0014396", "EGF_Stimulus": "-0.79"}, {"ID": "FBgn0000556", "EGF_Stimulus": "-3.57"}, {"ID": "FBgn0005616", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0035568", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0259185", "EGF_Stimulus": "1.51"}, {"ID": "FBgn0031134", "EGF_Stimulus": "-0.78"}, {"ID": "FBgn0003009", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0083990", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0036505", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0063649", "EGF_Stimulus": "1.47"}, {"ID": "FBgn0001230", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0032811", "EGF_Stimulus": "0.18"}, {"ID": "FBgn0028687", "EGF_Stimulus": "-1.92"}, {"ID": "FBgn0038924", "EGF_Stimulus": "1.18"}, {"ID": "FBgn0019830", "EGF_Stimulus": "-0.54"}, {"ID": "FBgn0031876", "EGF_Stimulus": "-0.52"}, {"ID": "FBgn0003423", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0023519", "EGF_Stimulus": "1.09"}, {"ID": "FBgn0053512", "EGF_Stimulus": "1.18"}, {"ID": "FBgn0037345", "EGF_Stimulus": "-0.07"}, {"ID": "FBgn0034744", "EGF_Stimulus": "-0.64"}, {"ID": "FBgn0033591", "EGF_Stimulus": "0.14"}, {"ID": "FBgn0050411", "EGF_Stimulus": "-0.4"}, {"ID": "FBgn0051266", "EGF_Stimulus": "-0.74"}, {"ID": "FBgn0015282", "EGF_Stimulus": "-4.51"}, {"ID": "FBgn0034061", "EGF_Stimulus": "1.03"}, {"ID": "FBgn0086904", "EGF_Stimulus": "-1.21"}, {"ID": "FBgn0032213", "EGF_Stimulus": "-0.75"}, {"ID": "FBgn0052475", "EGF_Stimulus": "1.05"}, {"ID": "FBgn0039007", "EGF_Stimulus": "-0.16"}, {"ID": "FBgn0026415", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0028900", "EGF_Stimulus": "-1.14"}, {"ID": "FBgn0039376", "EGF_Stimulus": "-0.2"}, {"ID": "FBgn0033087", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0037430", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0027585", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0035621", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0041623", "EGF_Stimulus": "-1.16"}, {"ID": "FBgn0036990", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0053493", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0053170", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0027565", "EGF_Stimulus": "0.96"}, {"ID": "FBgn0038213", "EGF_Stimulus": "-0.57"}, {"ID": "FBgn0051223", "EGF_Stimulus": "-0.55"}, {"ID": "FBgn0040341", "EGF_Stimulus": "-0.67"}, {"ID": "FBgn0030015", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0035213", "EGF_Stimulus": "-0.8"}, {"ID": "FBgn0051644", "EGF_Stimulus": "-1.88"}, {"ID": "FBgn0034576", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0036145", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0035434", "EGF_Stimulus": "-0.8"}, {"ID": "FBgn0038469", "EGF_Stimulus": "-0.02"}, {"ID": "FBgn0035916", "EGF_Stimulus": "-0.8"}, {"ID": "FBgn0015035", "EGF_Stimulus": "-0.33"}, {"ID": "FBgn0035543", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0032424", "EGF_Stimulus": "1.44"}, {"ID": "FBgn0052484", "EGF_Stimulus": "1.19"}, {"ID": "FBgn0046247", "EGF_Stimulus": "2.51"}, {"ID": "FBgn0030963", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0052792", "EGF_Stimulus": "-0.91"}, {"ID": "FBgn0033737", "EGF_Stimulus": "0.96"}, {"ID": "FBgn0036118", "EGF_Stimulus": "-0.17"}, {"ID": "FBgn0028954", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0086347", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0033062", "EGF_Stimulus": "-1.03"}, {"ID": "FBgn0040828", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0086911", "EGF_Stimulus": "1.73"}, {"ID": "FBgn0044049", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0031114", "EGF_Stimulus": "1.22"}, {"ID": "FBgn0035532", "EGF_Stimulus": "1.49"}, {"ID": "FBgn0250746", "EGF_Stimulus": "-2.52"}, {"ID": "FBgn0039348", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0086445", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0052024", "EGF_Stimulus": "0.15"}, {"ID": "FBgn0032582", "EGF_Stimulus": "0.18"}, {"ID": "FBgn0051777", "EGF_Stimulus": "-1.19"}, {"ID": "FBgn0031871", "EGF_Stimulus": "0.08"}, {"ID": "FBgn0036328", "EGF_Stimulus": "1.22"}, {"ID": "FBgn0029535", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0046887", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0037288", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0053233", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0038122", "EGF_Stimulus": "-0.22"}, {"ID": "FBgn0031732", "EGF_Stimulus": "-1.36"}, {"ID": "FBgn0010051", "EGF_Stimulus": "-1.04"}, {"ID": "FBgn0024993", "EGF_Stimulus": "-0.89"}, {"ID": "FBgn0039553", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0031764", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0036299", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0034054", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0051076", "EGF_Stimulus": "-0.25"}, {"ID": "FBgn0030734", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0030431", "EGF_Stimulus": "1.47"}, {"ID": "FBgn0031036", "EGF_Stimulus": "0.16"}, {"ID": "FBgn0085331", "EGF_Stimulus": "-1.1"}, {"ID": "FBgn0052698", "EGF_Stimulus": "-1.63"}, {"ID": "FBgn0031434", "EGF_Stimulus": "-0.75"}, {"ID": "FBgn0036180", "EGF_Stimulus": "-1.07"}, {"ID": "FBgn0033798", "EGF_Stimulus": "-0.22"}, {"ID": "FBgn0036603", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0051549", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0001259", "EGF_Stimulus": "-0.62"}, {"ID": "FBgn0028699", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0250754", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0051459", "EGF_Stimulus": "1.79"}, {"ID": "FBgn0029783", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0085431", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0033701", "EGF_Stimulus": "0.17"}, {"ID": "FBgn0039494", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0028669", "EGF_Stimulus": "-0.26"}, {"ID": "FBgn0031808", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0053056", "EGF_Stimulus": "-1.44"}, {"ID": "FBgn0031608", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0029817", "EGF_Stimulus": "0.3"}, {"ID": "FBgn0030630", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0026380", "EGF_Stimulus": "-2.28"}, {"ID": "FBgn0027287", "EGF_Stimulus": "-0.91"}, {"ID": "FBgn0029754", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0042696", "EGF_Stimulus": "-0.37"}, {"ID": "FBgn0037939", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0037402", "EGF_Stimulus": "-1.17"}, {"ID": "FBgn0032588", "EGF_Stimulus": "-0.76"}, {"ID": "FBgn0039829", "EGF_Stimulus": "-0.84"}, {"ID": "FBgn0031992", "EGF_Stimulus": "-0.86"}, {"ID": "FBgn0034126", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0031803", "EGF_Stimulus": "1.76"}, {"ID": "FBgn0031777", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0052302", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0035603", "EGF_Stimulus": "-0.13"}, {"ID": "FBgn0037783", "EGF_Stimulus": "-1.74"}, {"ID": "FBgn0020767", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0022246", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0259918", "EGF_Stimulus": "-0.24"}, {"ID": "FBgn0030478", "EGF_Stimulus": "1.51"}, {"ID": "FBgn0031441", "EGF_Stimulus": "1.25"}, {"ID": "FBgn0000591", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0037684", "EGF_Stimulus": "-3.07"}, {"ID": "FBgn0259112", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0030554", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0085309", "EGF_Stimulus": "-1.78"}, {"ID": "FBgn0083959", "EGF_Stimulus": "-1.6"}, {"ID": "FBgn0052250", "EGF_Stimulus": "-1.79"}, {"ID": "FBgn0050371", "EGF_Stimulus": "-1.25"}, {"ID": "FBgn0052445", "EGF_Stimulus": "-1.41"}, {"ID": "FBgn0030005", "EGF_Stimulus": "1.17"}, {"ID": "FBgn0039139", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0038869", "EGF_Stimulus": "2.31"}, {"ID": "FBgn0025806", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0037405", "EGF_Stimulus": "-1.49"}, {"ID": "FBgn0004598", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0032525", "EGF_Stimulus": "-1.63"}, {"ID": "FBgn0036323", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0083986", "EGF_Stimulus": "1.1"}, {"ID": "FBgn0039180", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0030777", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0250835", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0039799", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0032376", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0030945", "EGF_Stimulus": "-1.47"}, {"ID": "FBgn0034540", "EGF_Stimulus": "2.28"}, {"ID": "FBgn0036857", "EGF_Stimulus": "-0.76"}, {"ID": "FBgn0260987", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0035791", "EGF_Stimulus": "-1"}, {"ID": "FBgn0034595", "EGF_Stimulus": "-0.26"}, {"ID": "FBgn0050181", "EGF_Stimulus": "-0.81"}, {"ID": "FBgn0052588", "EGF_Stimulus": "1.71"}, {"ID": "FBgn0035782", "EGF_Stimulus": "0.21"}, {"ID": "FBgn0023129", "EGF_Stimulus": "1.51"}, {"ID": "FBgn0039621", "EGF_Stimulus": "-1.16"}, {"ID": "FBgn0037633", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0031821", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0052750", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0041581", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0034457", "EGF_Stimulus": "1.21"}, {"ID": "FBgn0031266", "EGF_Stimulus": "-3.78"}, {"ID": "FBgn0030991", "EGF_Stimulus": "-0.52"}, {"ID": "FBgn0033185", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0014092", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0010516", "EGF_Stimulus": "-0.57"}, {"ID": "FBgn0058178", "EGF_Stimulus": "1.22"}, {"ID": "FBgn0033879", "EGF_Stimulus": "-0.72"}, {"ID": "FBgn0037647", "EGF_Stimulus": "-0.21"}, {"ID": "FBgn0032503", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0031895", "EGF_Stimulus": "0.23"}, {"ID": "FBgn0010314", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0036765", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0051148", "EGF_Stimulus": "-0.28"}, {"ID": "FBgn0013987", "EGF_Stimulus": "0.17"}, {"ID": "FBgn0053631", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0020305", "EGF_Stimulus": "0.94"}, {"ID": "FBgn0033130", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0050447", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0028685", "EGF_Stimulus": "-2.29"}, {"ID": "FBgn0028490", "EGF_Stimulus": "-3.45"}, {"ID": "FBgn0004087", "EGF_Stimulus": "0.25"}, {"ID": "FBgn0259174", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0259238", "EGF_Stimulus": "-1.39"}, {"ID": "FBgn0034768", "EGF_Stimulus": "-0.88"}, {"ID": "FBgn0000629", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0260768", "EGF_Stimulus": "-0.78"}, {"ID": "FBgn0030794", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0051204", "EGF_Stimulus": "0.16"}, {"ID": "FBgn0036005", "EGF_Stimulus": "1.11"}, {"ID": "FBgn0029507", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0085326", "EGF_Stimulus": "-0.3"}, {"ID": "FBgn0011817", "EGF_Stimulus": "-1.32"}, {"ID": "FBgn0085288", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0086134", "EGF_Stimulus": "-3.14"}, {"ID": "FBgn0083938", "EGF_Stimulus": "-0.33"}, {"ID": "FBgn0036732", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0030540", "EGF_Stimulus": "-1.35"}, {"ID": "FBgn0031142", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0261259", "EGF_Stimulus": "1.18"}, {"ID": "FBgn0030671", "EGF_Stimulus": "-0.96"}, {"ID": "FBgn0032446", "EGF_Stimulus": "-0.96"}, {"ID": "FBgn0033273", "EGF_Stimulus": "-0.22"}, {"ID": "FBgn0002528", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0036617", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0029590", "EGF_Stimulus": "1.56"}, {"ID": "FBgn0040376", "EGF_Stimulus": "-0.12"}, {"ID": "FBgn0033015", "EGF_Stimulus": "-1.86"}, {"ID": "FBgn0033241", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0020620", "EGF_Stimulus": "-1.35"}, {"ID": "FBgn0035692", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0034956", "EGF_Stimulus": "1.22"}, {"ID": "FBgn0030587", "EGF_Stimulus": "-0.1"}, {"ID": "FBgn0261284", "EGF_Stimulus": "1.39"}, {"ID": "FBgn0053172", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0034534", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0004876", "EGF_Stimulus": "-0.97"}, {"ID": "FBgn0033115", "EGF_Stimulus": "-0.2"}, {"ID": "FBgn0035772", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0035858", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0031531", "EGF_Stimulus": "-0.2"}, {"ID": "FBgn0038512", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0027605", "EGF_Stimulus": "-5.28"}, {"ID": "FBgn0036246", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0030318", "EGF_Stimulus": "-0.55"}, {"ID": "FBgn0036179", "EGF_Stimulus": "-1.87"}, {"ID": "FBgn0031322", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0036547", "EGF_Stimulus": "-0.43"}, {"ID": "FBgn0039075", "EGF_Stimulus": "-1.26"}, {"ID": "FBgn0031752", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0034646", "EGF_Stimulus": "-5.06"}, {"ID": "FBgn0002733", "EGF_Stimulus": "0.23"}, {"ID": "FBgn0002577", "EGF_Stimulus": "-0.94"}, {"ID": "FBgn0034876", "EGF_Stimulus": "-1.04"}, {"ID": "FBgn0050349", "EGF_Stimulus": "-0.62"}, {"ID": "FBgn0051157", "EGF_Stimulus": "-1.07"}, {"ID": "FBgn0030993", "EGF_Stimulus": "-1.12"}, {"ID": "FBgn0058042", "EGF_Stimulus": "-0.14"}, {"ID": "FBgn0038436", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0039664", "EGF_Stimulus": "-1.25"}, {"ID": "FBgn0027529", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0014849", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0038631", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0030770", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0034761", "EGF_Stimulus": "-0.56"}, {"ID": "FBgn0038388", "EGF_Stimulus": "1"}, {"ID": "FBgn0027535", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0029882", "EGF_Stimulus": "-0.54"}, {"ID": "FBgn0052695", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0034221", "EGF_Stimulus": "-0.08"}, {"ID": "FBgn0029728", "EGF_Stimulus": "-0.47"}, {"ID": "FBgn0035139", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0000054", "EGF_Stimulus": "2.15"}, {"ID": "FBgn0041186", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0067311", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0039208", "EGF_Stimulus": "-0.69"}, {"ID": "FBgn0028526", "EGF_Stimulus": "-0.97"}, {"ID": "FBgn0051244", "EGF_Stimulus": "-1.15"}, {"ID": "FBgn0036702", "EGF_Stimulus": "-1.17"}, {"ID": "FBgn0032751", "EGF_Stimulus": "1.5"}, {"ID": "FBgn0029685", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0050384", "EGF_Stimulus": "-0.66"}, {"ID": "FBgn0035358", "EGF_Stimulus": "0.21"}, {"ID": "FBgn0039671", "EGF_Stimulus": "0.25"}, {"ID": "FBgn0037144", "EGF_Stimulus": "1.26"}, {"ID": "FBgn0029523", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0053454", "EGF_Stimulus": "1.65"}, {"ID": "FBgn0261046", "EGF_Stimulus": "1.02"}, {"ID": "FBgn0026239", "EGF_Stimulus": "-1.17"}, {"ID": "FBgn0051697", "EGF_Stimulus": "-1.64"}, {"ID": "FBgn0027091", "EGF_Stimulus": "-0.28"}, {"ID": "FBgn0033998", "EGF_Stimulus": "1.37"}, {"ID": "FBgn0031070", "EGF_Stimulus": "0.1"}, {"ID": "FBgn0034476", "EGF_Stimulus": "-1.38"}, {"ID": "FBgn0029769", "EGF_Stimulus": "-0.54"}, {"ID": "FBgn0005677", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0001321", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0035429", "EGF_Stimulus": "-1.17"}, {"ID": "FBgn0036654", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0036610", "EGF_Stimulus": "-0.4"}, {"ID": "FBgn0024958", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0011584", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0038221", "EGF_Stimulus": "-0.67"}, {"ID": "FBgn0037589", "EGF_Stimulus": "0.17"}, {"ID": "FBgn0032358", "EGF_Stimulus": "-0.24"}, {"ID": "FBgn0010803", "EGF_Stimulus": "-1.31"}, {"ID": "FBgn0039217", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0035364", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0040297", "EGF_Stimulus": "-0.84"}, {"ID": "FBgn0031986", "EGF_Stimulus": "-0.52"}, {"ID": "FBgn0039237", "EGF_Stimulus": "-0.36"}, {"ID": "FBgn0031893", "EGF_Stimulus": "-0.93"}, {"ID": "FBgn0038183", "EGF_Stimulus": "-0.97"}, {"ID": "FBgn0040290", "EGF_Stimulus": "-0.47"}, {"ID": "FBgn0038018", "EGF_Stimulus": "-0.86"}, {"ID": "FBgn0033827", "EGF_Stimulus": "-1.25"}, {"ID": "FBgn0039676", "EGF_Stimulus": "0.17"}, {"ID": "FBgn0020389", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0259147", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0036428", "EGF_Stimulus": "-0.39"}, {"ID": "FBgn0053481", "EGF_Stimulus": "-1.59"}, {"ID": "FBgn0036141", "EGF_Stimulus": "1.01"}, {"ID": "FBgn0085374", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0032247", "EGF_Stimulus": "-0.24"}, {"ID": "FBgn0036824", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0037501", "EGF_Stimulus": "0.3"}, {"ID": "FBgn0037108", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0036490", "EGF_Stimulus": "0.3"}, {"ID": "FBgn0020618", "EGF_Stimulus": "-0.6"}, {"ID": "FBgn0041105", "EGF_Stimulus": "1.1"}, {"ID": "FBgn0040252", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0037011", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0034903", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0032124", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0031824", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0035539", "EGF_Stimulus": "1.13"}, {"ID": "FBgn0005533", "EGF_Stimulus": "-2.95"}, {"ID": "FBgn0037003", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0032040", "EGF_Stimulus": "1.3"}, {"ID": "FBgn0036410", "EGF_Stimulus": "-0.81"}, {"ID": "FBgn0038708", "EGF_Stimulus": "-1.61"}, {"ID": "FBgn0031128", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0053116", "EGF_Stimulus": "-1.25"}, {"ID": "FBgn0011559", "EGF_Stimulus": "-0.22"}, {"ID": "FBgn0052463", "EGF_Stimulus": "-1.05"}, {"ID": "FBgn0033906", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0037678", "EGF_Stimulus": "-0.93"}, {"ID": "FBgn0038424", "EGF_Stimulus": "-1.13"}, {"ID": "FBgn0034665", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0039282", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0052762", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0024352", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0050495", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0037993", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0004110", "EGF_Stimulus": "-0.47"}, {"ID": "FBgn0024293", "EGF_Stimulus": "-0.17"}, {"ID": "FBgn0039722", "EGF_Stimulus": "-0.26"}, {"ID": "FBgn0015040", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0040628", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0023479", "EGF_Stimulus": "-1.31"}, {"ID": "FBgn0051388", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0031186", "EGF_Stimulus": "1.45"}, {"ID": "FBgn0000043", "EGF_Stimulus": "-1.62"}, {"ID": "FBgn0031940", "EGF_Stimulus": "1.21"}, {"ID": "FBgn0037422", "EGF_Stimulus": "1.36"}, {"ID": "FBgn0050364", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0037539", "EGF_Stimulus": "-1.26"}, {"ID": "FBgn0032981", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0038539", "EGF_Stimulus": "-0.94"}, {"ID": "FBgn0051636", "EGF_Stimulus": "-0.97"}, {"ID": "FBgn0027348", "EGF_Stimulus": "-3.32"}, {"ID": "FBgn0051184", "EGF_Stimulus": "1.18"}, {"ID": "FBgn0030121", "EGF_Stimulus": "-0.91"}, {"ID": "FBgn0029924", "EGF_Stimulus": "-1.09"}, {"ID": "FBgn0024943", "EGF_Stimulus": "-1.28"}, {"ID": "FBgn0004394", "EGF_Stimulus": "1.28"}, {"ID": "FBgn0032625", "EGF_Stimulus": "1.14"}, {"ID": "FBgn0051659", "EGF_Stimulus": "1.01"}, {"ID": "FBgn0039507", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0035610", "EGF_Stimulus": "-0.97"}, {"ID": "FBgn0036094", "EGF_Stimulus": "-0.39"}, {"ID": "FBgn0027515", "EGF_Stimulus": "-2.55"}, {"ID": "FBgn0030459", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0053640", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0038947", "EGF_Stimulus": "0.19"}, {"ID": "FBgn0011554", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0261813", "EGF_Stimulus": "-1.07"}, {"ID": "FBgn0035617", "EGF_Stimulus": "1.57"}, {"ID": "FBgn0034294", "EGF_Stimulus": "-1.06"}, {"ID": "FBgn0031469", "EGF_Stimulus": "-1.76"}, {"ID": "FBgn0085302", "EGF_Stimulus": "-0.47"}, {"ID": "FBgn0037128", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0028926", "EGF_Stimulus": "-1.42"}, {"ID": "FBgn0028424", "EGF_Stimulus": "-0.59"}, {"ID": "FBgn0024330", "EGF_Stimulus": "1.04"}, {"ID": "FBgn0016053", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0033856", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0026371", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0000477", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0032276", "EGF_Stimulus": "1.27"}, {"ID": "FBgn0035852", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0062978", "EGF_Stimulus": "-1.77"}, {"ID": "FBgn0039849", "EGF_Stimulus": "-2.16"}, {"ID": "FBgn0032804", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0036995", "EGF_Stimulus": "-1.01"}, {"ID": "FBgn0038464", "EGF_Stimulus": "-1.19"}, {"ID": "FBgn0036794", "EGF_Stimulus": "1.29"}, {"ID": "FBgn0051832", "EGF_Stimulus": "2.05"}, {"ID": "FBgn0259168", "EGF_Stimulus": "1.35"}, {"ID": "FBgn0015553", "EGF_Stimulus": "1.2"}, {"ID": "FBgn0041195", "EGF_Stimulus": "-1.69"}, {"ID": "FBgn0051647", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0053124", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0038901", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0037449", "EGF_Stimulus": "-0.55"}, {"ID": "FBgn0034824", "EGF_Stimulus": "-0.83"}, {"ID": "FBgn0261065", "EGF_Stimulus": "-1.21"}, {"ID": "FBgn0039069", "EGF_Stimulus": "-0.32"}, {"ID": "FBgn0036935", "EGF_Stimulus": "-0.8"}, {"ID": "FBgn0036125", "EGF_Stimulus": "0.16"}, {"ID": "FBgn0050355", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0030834", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0021847", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0032006", "EGF_Stimulus": "3.45"}, {"ID": "FBgn0033268", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0014464", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0034105", "EGF_Stimulus": "-0.63"}, {"ID": "FBgn0038105", "EGF_Stimulus": "1.54"}, {"ID": "FBgn0035933", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0035711", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0036580", "EGF_Stimulus": "2.73"}, {"ID": "FBgn0039190", "EGF_Stimulus": "-0.77"}, {"ID": "FBgn0033271", "EGF_Stimulus": "-0.62"}, {"ID": "FBgn0036771", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0033955", "EGF_Stimulus": "0.23"}, {"ID": "FBgn0039000", "EGF_Stimulus": "-0.57"}, {"ID": "FBgn0004587", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0261930", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0250874", "EGF_Stimulus": "-0.56"}, {"ID": "FBgn0043535", "EGF_Stimulus": "-1.46"}, {"ID": "FBgn0030039", "EGF_Stimulus": "-1.63"}, {"ID": "FBgn0004636", "EGF_Stimulus": "-1.12"}, {"ID": "FBgn0034144", "EGF_Stimulus": "-0.86"}, {"ID": "FBgn0051176", "EGF_Stimulus": "1.04"}, {"ID": "FBgn0064237", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0250824", "EGF_Stimulus": "0.96"}, {"ID": "FBgn0086697", "EGF_Stimulus": "-2"}, {"ID": "FBgn0034392", "EGF_Stimulus": "-0.1"}, {"ID": "FBgn0032740", "EGF_Stimulus": "-1.05"}, {"ID": "FBgn0051664", "EGF_Stimulus": "1.26"}, {"ID": "FBgn0037707", "EGF_Stimulus": "1.56"}, {"ID": "FBgn0260635", "EGF_Stimulus": "1.89"}, {"ID": "FBgn0039026", "EGF_Stimulus": "3.34"}, {"ID": "FBgn0032783", "EGF_Stimulus": "-0.54"}, {"ID": "FBgn0029589", "EGF_Stimulus": "1.06"}, {"ID": "FBgn0261797", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0033137", "EGF_Stimulus": "-1.21"}, {"ID": "FBgn0036263", "EGF_Stimulus": "-0.39"}, {"ID": "FBgn0260396", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0038346", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0032851", "EGF_Stimulus": "-0.17"}, {"ID": "FBgn0033515", "EGF_Stimulus": "-1.59"}, {"ID": "FBgn0033954", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0003747", "EGF_Stimulus": "-0.3"}, {"ID": "FBgn0085192", "EGF_Stimulus": "-1.69"}, {"ID": "FBgn0035707", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0261803", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0039669", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0032530", "EGF_Stimulus": "-0.14"}, {"ID": "FBgn0035907", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0029157", "EGF_Stimulus": "0.21"}, {"ID": "FBgn0032264", "EGF_Stimulus": "-0.86"}, {"ID": "FBgn0015663", "EGF_Stimulus": "-0.39"}, {"ID": "FBgn0034318", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0016070", "EGF_Stimulus": "-0.37"}, {"ID": "FBgn0259711", "EGF_Stimulus": "-0.36"}, {"ID": "FBgn0029935", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0035844", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0260779", "EGF_Stimulus": "1.77"}, {"ID": "FBgn0051826", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0003655", "EGF_Stimulus": "1.02"}, {"ID": "FBgn0029596", "EGF_Stimulus": "1.39"}, {"ID": "FBgn0050395", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0004554", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0032632", "EGF_Stimulus": "-1.29"}, {"ID": "FBgn0005561", "EGF_Stimulus": "0.26"}, {"ID": "FBgn0031566", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0030452", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0039197", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0033248", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0050468", "EGF_Stimulus": "-1.5"}, {"ID": "FBgn0036349", "EGF_Stimulus": "0.96"}, {"ID": "FBgn0002521", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0000281", "EGF_Stimulus": "-0.02"}, {"ID": "FBgn0035399", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0038858", "EGF_Stimulus": "1.32"}, {"ID": "FBgn0261239", "EGF_Stimulus": "-1.43"}, {"ID": "FBgn0024973", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0052594", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0027378", "EGF_Stimulus": "-1.38"}, {"ID": "FBgn0016641", "EGF_Stimulus": "-0.88"}, {"ID": "FBgn0259213", "EGF_Stimulus": "1.4"}, {"ID": "FBgn0041234", "EGF_Stimulus": "-1.06"}, {"ID": "FBgn0031849", "EGF_Stimulus": "1.23"}, {"ID": "FBgn0261270", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0031081", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0037418", "EGF_Stimulus": "1.46"}, {"ID": "FBgn0036462", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0031519", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0003313", "EGF_Stimulus": "1.56"}, {"ID": "FBgn0032883", "EGF_Stimulus": "-1.75"}, {"ID": "FBgn0037202", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0026428", "EGF_Stimulus": "0.22"}, {"ID": "FBgn0039854", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0028515", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0034500", "EGF_Stimulus": "1.36"}, {"ID": "FBgn0005658", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0036628", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0035169", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0051674", "EGF_Stimulus": "-0.48"}, {"ID": "FBgn0039743", "EGF_Stimulus": "0.94"}, {"ID": "FBgn0031785", "EGF_Stimulus": "-1.33"}, {"ID": "FBgn0015269", "EGF_Stimulus": "-0.66"}, {"ID": "FBgn0031118", "EGF_Stimulus": "-1.87"}, {"ID": "FBgn0024189", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0038037", "EGF_Stimulus": "1.25"}, {"ID": "FBgn0032054", "EGF_Stimulus": "0.12"}, {"ID": "FBgn0038363", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0037660", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0039435", "EGF_Stimulus": "-0.3"}, {"ID": "FBgn0032228", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0004885", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0042132", "EGF_Stimulus": "-1.17"}, {"ID": "FBgn0052425", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0035545", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0053337", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0259748", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0037570", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0034794", "EGF_Stimulus": "-1.93"}, {"ID": "FBgn0027280", "EGF_Stimulus": "-0.83"}, {"ID": "FBgn0035833", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0037279", "EGF_Stimulus": "1.28"}, {"ID": "FBgn0002787", "EGF_Stimulus": "-2.66"}, {"ID": "FBgn0038878", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0025629", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0031651", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0034383", "EGF_Stimulus": "-0.84"}, {"ID": "FBgn0035160", "EGF_Stimulus": "-0.26"}, {"ID": "FBgn0014011", "EGF_Stimulus": "-0.77"}, {"ID": "FBgn0031351", "EGF_Stimulus": "1.28"}, {"ID": "FBgn0052182", "EGF_Stimulus": "0.15"}, {"ID": "FBgn0024754", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0029663", "EGF_Stimulus": "-0.56"}, {"ID": "FBgn0029703", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0032181", "EGF_Stimulus": "-0.09"}, {"ID": "FBgn0032717", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0025638", "EGF_Stimulus": "-3.56"}, {"ID": "FBgn0038056", "EGF_Stimulus": "-0.24"}, {"ID": "FBgn0028664", "EGF_Stimulus": "1.38"}, {"ID": "FBgn0050409", "EGF_Stimulus": "0.07"}, {"ID": "FBgn0037772", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0038966", "EGF_Stimulus": "-0.4"}, {"ID": "FBgn0040011", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0032910", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0035383", "EGF_Stimulus": "1.12"}, {"ID": "FBgn0261379", "EGF_Stimulus": "-2.67"}, {"ID": "FBgn0032467", "EGF_Stimulus": "1.22"}, {"ID": "FBgn0033261", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0037244", "EGF_Stimulus": "1.13"}, {"ID": "FBgn0031493", "EGF_Stimulus": "-1.61"}, {"ID": "FBgn0004465", "EGF_Stimulus": "-0.74"}, {"ID": "FBgn0052226", "EGF_Stimulus": "0.27"}, {"ID": "FBgn0011669", "EGF_Stimulus": "-1.1"}, {"ID": "FBgn0000032", "EGF_Stimulus": "1.55"}, {"ID": "FBgn0053060", "EGF_Stimulus": "1.47"}, {"ID": "FBgn0010382", "EGF_Stimulus": "-4.59"}, {"ID": "FBgn0052138", "EGF_Stimulus": "1.29"}, {"ID": "FBgn0032732", "EGF_Stimulus": "1.17"}, {"ID": "FBgn0034509", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0261708", "EGF_Stimulus": "1.17"}, {"ID": "FBgn0039107", "EGF_Stimulus": "-0.55"}, {"ID": "FBgn0040813", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0026149", "EGF_Stimulus": "-0.64"}, {"ID": "FBgn0032397", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0021967", "EGF_Stimulus": "-1.3"}, {"ID": "FBgn0052181", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0025635", "EGF_Stimulus": "0.14"}, {"ID": "FBgn0037164", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0037239", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0033207", "EGF_Stimulus": "0.05"}, {"ID": "FBgn0051551", "EGF_Stimulus": "-1.84"}, {"ID": "FBgn0032008", "EGF_Stimulus": "-1.06"}, {"ID": "FBgn0038419", "EGF_Stimulus": "1.18"}, {"ID": "FBgn0037817", "EGF_Stimulus": "-1.34"}, {"ID": "FBgn0034684", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0053263", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0004666", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0086784", "EGF_Stimulus": "-1.5"}, {"ID": "FBgn0259831", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0261914", "EGF_Stimulus": "-1.8"}, {"ID": "FBgn0042173", "EGF_Stimulus": "0.12"}, {"ID": "FBgn0085483", "EGF_Stimulus": "-0.94"}, {"ID": "FBgn0032406", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0010877", "EGF_Stimulus": "-1.1"}, {"ID": "FBgn0035152", "EGF_Stimulus": "-1.1"}, {"ID": "FBgn0000114", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0019624", "EGF_Stimulus": "-0.78"}, {"ID": "FBgn0027597", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0036950", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0051441", "EGF_Stimulus": "-0.96"}, {"ID": "FBgn0035440", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0250844", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0035871", "EGF_Stimulus": "1.52"}, {"ID": "FBgn0026873", "EGF_Stimulus": "0.14"}, {"ID": "FBgn0000139", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0031268", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0034271", "EGF_Stimulus": "0.2"}, {"ID": "FBgn0025879", "EGF_Stimulus": "-0.67"}, {"ID": "FBgn0032577", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0035649", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0029997", "EGF_Stimulus": "1.44"}, {"ID": "FBgn0024983", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0033544", "EGF_Stimulus": "-1.06"}, {"ID": "FBgn0260718", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0032473", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0036846", "EGF_Stimulus": "-0.63"}, {"ID": "FBgn0037884", "EGF_Stimulus": "1.37"}, {"ID": "FBgn0029858", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0038237", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0038063", "EGF_Stimulus": "-1.26"}, {"ID": "FBgn0035727", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0038597", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0029980", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0051496", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0054033", "EGF_Stimulus": "-1.23"}, {"ID": "FBgn0261597", "EGF_Stimulus": "-2.84"}, {"ID": "FBgn0039925", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0013325", "EGF_Stimulus": "-3.72"}, {"ID": "FBgn0039979", "EGF_Stimulus": "1.8"}, {"ID": "FBgn0041579", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0039331", "EGF_Stimulus": "-0.92"}, {"ID": "FBgn0038400", "EGF_Stimulus": "1.43"}, {"ID": "FBgn0259978", "EGF_Stimulus": "7.13"}, {"ID": "FBgn0038200", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0012037", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0039150", "EGF_Stimulus": "1.64"}, {"ID": "FBgn0003567", "EGF_Stimulus": "1.54"}, {"ID": "FBgn0036837", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0053769", "EGF_Stimulus": "0.22"}, {"ID": "FBgn0032750", "EGF_Stimulus": "0.12"}, {"ID": "FBgn0038619", "EGF_Stimulus": "-0.25"}, {"ID": "FBgn0035065", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0051103", "EGF_Stimulus": "1.62"}, {"ID": "FBgn0030078", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0260873", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0031775", "EGF_Stimulus": "1.17"}, {"ID": "FBgn0001108", "EGF_Stimulus": "-0.48"}, {"ID": "FBgn0031974", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0039620", "EGF_Stimulus": "-1.25"}, {"ID": "FBgn0040259", "EGF_Stimulus": "-0.52"}, {"ID": "FBgn0039860", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0039836", "EGF_Stimulus": "-0.32"}, {"ID": "FBgn0036760", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0011217", "EGF_Stimulus": "1.2"}, {"ID": "FBgn0033623", "EGF_Stimulus": "0.3"}, {"ID": "FBgn0032269", "EGF_Stimulus": "2.07"}, {"ID": "FBgn0034191", "EGF_Stimulus": "1.14"}, {"ID": "FBgn0028703", "EGF_Stimulus": "-1.72"}, {"ID": "FBgn0027930", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0031273", "EGF_Stimulus": "1.82"}, {"ID": "FBgn0035257", "EGF_Stimulus": "-1.08"}, {"ID": "FBgn0052638", "EGF_Stimulus": "0.09"}, {"ID": "FBgn0029708", "EGF_Stimulus": "1.89"}, {"ID": "FBgn0028984", "EGF_Stimulus": "-0.81"}, {"ID": "FBgn0033374", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0032934", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0033081", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0015270", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0003866", "EGF_Stimulus": "-0.37"}, {"ID": "FBgn0085459", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0005670", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0004449", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0051719", "EGF_Stimulus": "1.47"}, {"ID": "FBgn0039783", "EGF_Stimulus": "-0.72"}, {"ID": "FBgn0039339", "EGF_Stimulus": "-0.33"}, {"ID": "FBgn0025679", "EGF_Stimulus": "-0.6"}, {"ID": "FBgn0014454", "EGF_Stimulus": "1.15"}, {"ID": "FBgn0005558", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0051530", "EGF_Stimulus": "-0.37"}, {"ID": "FBgn0050036", "EGF_Stimulus": "-1.93"}, {"ID": "FBgn0032770", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0033812", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0032178", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0025680", "EGF_Stimulus": "-0.39"}, {"ID": "FBgn0039019", "EGF_Stimulus": "-0.89"}, {"ID": "FBgn0011224", "EGF_Stimulus": "-1.99"}, {"ID": "FBgn0039311", "EGF_Stimulus": "-0.91"}, {"ID": "FBgn0037667", "EGF_Stimulus": "-0.7"}, {"ID": "FBgn0014395", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0031909", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0035593", "EGF_Stimulus": "1.66"}, {"ID": "FBgn0032184", "EGF_Stimulus": "1.41"}, {"ID": "FBgn0035813", "EGF_Stimulus": "-1.86"}, {"ID": "FBgn0037665", "EGF_Stimulus": "-1.1"}, {"ID": "FBgn0034092", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0050049", "EGF_Stimulus": "-1"}, {"ID": "FBgn0004795", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0053966", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0037838", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0034986", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0061200", "EGF_Stimulus": "-3.99"}, {"ID": "FBgn0035020", "EGF_Stimulus": "-1.07"}, {"ID": "FBgn0036899", "EGF_Stimulus": "-1.16"}, {"ID": "FBgn0061197", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0015509", "EGF_Stimulus": "1.98"}, {"ID": "FBgn0086604", "EGF_Stimulus": "1"}, {"ID": "FBgn0036608", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0034293", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0036531", "EGF_Stimulus": "-0.74"}, {"ID": "FBgn0037149", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0037566", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0050485", "EGF_Stimulus": "1.05"}, {"ID": "FBgn0031470", "EGF_Stimulus": "-0.9"}, {"ID": "FBgn0036677", "EGF_Stimulus": "1.24"}, {"ID": "FBgn0038323", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0016013", "EGF_Stimulus": "-0.73"}, {"ID": "FBgn0030592", "EGF_Stimulus": "1.03"}, {"ID": "FBgn0004170", "EGF_Stimulus": "-1.07"}, {"ID": "FBgn0040102", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0033808", "EGF_Stimulus": "-0.37"}, {"ID": "FBgn0027586", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0030746", "EGF_Stimulus": "-0.25"}, {"ID": "FBgn0036569", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0010411", "EGF_Stimulus": "-3.46"}, {"ID": "FBgn0039427", "EGF_Stimulus": "1.89"}, {"ID": "FBgn0039420", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0038585", "EGF_Stimulus": "-1.06"}, {"ID": "FBgn0034712", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0036474", "EGF_Stimulus": "-0.63"}, {"ID": "FBgn0032923", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0000210", "EGF_Stimulus": "0.08"}, {"ID": "FBgn0004895", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0039113", "EGF_Stimulus": "-0.19"}, {"ID": "FBgn0020646", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0005593", "EGF_Stimulus": "-4.25"}, {"ID": "FBgn0035750", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0010197", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0013678", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0017429", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0037263", "EGF_Stimulus": "-0.55"}, {"ID": "FBgn0085426", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0040959", "EGF_Stimulus": "-0.4"}, {"ID": "FBgn0030181", "EGF_Stimulus": "-0.43"}, {"ID": "FBgn0261014", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0036589", "EGF_Stimulus": "-0.63"}, {"ID": "FBgn0033984", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0035798", "EGF_Stimulus": "0.3"}, {"ID": "FBgn0032162", "EGF_Stimulus": "-0.81"}, {"ID": "FBgn0034464", "EGF_Stimulus": "-0.66"}, {"ID": "FBgn0004379", "EGF_Stimulus": "-2.77"}, {"ID": "FBgn0004175", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0039543", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0031865", "EGF_Stimulus": "-0.7"}, {"ID": "FBgn0038871", "EGF_Stimulus": "-0.48"}, {"ID": "FBgn0035640", "EGF_Stimulus": "-1.36"}, {"ID": "FBgn0020368", "EGF_Stimulus": "-1.51"}, {"ID": "FBgn0004372", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0250788", "EGF_Stimulus": "-0.35"}, {"ID": "FBgn0031644", "EGF_Stimulus": "-0.28"}, {"ID": "FBgn0033912", "EGF_Stimulus": "-3.93"}, {"ID": "FBgn0085440", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0034423", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0038762", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0030894", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0038914", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0030829", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0036393", "EGF_Stimulus": "-0.95"}, {"ID": "FBgn0031805", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0035195", "EGF_Stimulus": "1.38"}, {"ID": "FBgn0037650", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0039157", "EGF_Stimulus": "1.58"}, {"ID": "FBgn0023076", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0028506", "EGF_Stimulus": "-3.89"}, {"ID": "FBgn0038428", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0031233", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0035896", "EGF_Stimulus": "1.73"}, {"ID": "FBgn0030914", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0029804", "EGF_Stimulus": "-0.97"}, {"ID": "FBgn0031397", "EGF_Stimulus": "-0.29"}, {"ID": "FBgn0027504", "EGF_Stimulus": "-1.01"}, {"ID": "FBgn0052436", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0039993", "EGF_Stimulus": "0.96"}, {"ID": "FBgn0026320", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0011591", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0259481", "EGF_Stimulus": "1.04"}, {"ID": "FBgn0039766", "EGF_Stimulus": "1.26"}, {"ID": "FBgn0037396", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0038320", "EGF_Stimulus": "0.96"}, {"ID": "FBgn0026255", "EGF_Stimulus": "0.27"}, {"ID": "FBgn0034735", "EGF_Stimulus": "-1"}, {"ID": "FBgn0053998", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0022720", "EGF_Stimulus": "1.04"}, {"ID": "FBgn0041252", "EGF_Stimulus": "-0.4"}, {"ID": "FBgn0028949", "EGF_Stimulus": "1.43"}, {"ID": "FBgn0036136", "EGF_Stimulus": "1.13"}, {"ID": "FBgn0051207", "EGF_Stimulus": "-0.1"}, {"ID": "FBgn0029966", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0030071", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0011474", "EGF_Stimulus": "1.54"}, {"ID": "FBgn0000721", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0030752", "EGF_Stimulus": "-0.08"}, {"ID": "FBgn0087021", "EGF_Stimulus": "-0.85"}, {"ID": "FBgn0033303", "EGF_Stimulus": "3.13"}, {"ID": "FBgn0051105", "EGF_Stimulus": "-1.3"}, {"ID": "FBgn0024804", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0050157", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0010247", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0259220", "EGF_Stimulus": "-1"}, {"ID": "FBgn0013684", "EGF_Stimulus": "-0.57"}, {"ID": "FBgn0044871", "EGF_Stimulus": "-2"}, {"ID": "FBgn0031523", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0053283", "EGF_Stimulus": "0.08"}, {"ID": "FBgn0026409", "EGF_Stimulus": "-1.35"}, {"ID": "FBgn0039500", "EGF_Stimulus": "-1.04"}, {"ID": "FBgn0051065", "EGF_Stimulus": "-0.93"}, {"ID": "FBgn0032961", "EGF_Stimulus": "-1.29"}, {"ID": "FBgn0037215", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0085403", "EGF_Stimulus": "11.42"}, {"ID": "FBgn0051788", "EGF_Stimulus": "0.1"}, {"ID": "FBgn0002069", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0019809", "EGF_Stimulus": "-0.61"}, {"ID": "FBgn0052657", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0039972", "EGF_Stimulus": "-0.36"}, {"ID": "FBgn0034631", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0010014", "EGF_Stimulus": "1.31"}, {"ID": "FBgn0005694", "EGF_Stimulus": "5.4"}, {"ID": "FBgn0051472", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0034454", "EGF_Stimulus": "1.24"}, {"ID": "FBgn0003022", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0033948", "EGF_Stimulus": "-0.66"}, {"ID": "FBgn0001247", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0036913", "EGF_Stimulus": "-0.88"}, {"ID": "FBgn0036816", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0029134", "EGF_Stimulus": "-2.16"}, {"ID": "FBgn0027572", "EGF_Stimulus": "-1.43"}, {"ID": "FBgn0053758", "EGF_Stimulus": "1.12"}, {"ID": "FBgn0027107", "EGF_Stimulus": "-1.07"}, {"ID": "FBgn0260943", "EGF_Stimulus": "1.29"}, {"ID": "FBgn0031410", "EGF_Stimulus": "-0.66"}, {"ID": "FBgn0033609", "EGF_Stimulus": "1.36"}, {"ID": "FBgn0052086", "EGF_Stimulus": "0.3"}, {"ID": "FBgn0051457", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0031139", "EGF_Stimulus": "-0.2"}, {"ID": "FBgn0039788", "EGF_Stimulus": "1.57"}, {"ID": "FBgn0038158", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0034157", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0037385", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0052655", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0023096", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0029868", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0036207", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0030053", "EGF_Stimulus": "1.1"}, {"ID": "FBgn0036494", "EGF_Stimulus": "-0.8"}, {"ID": "FBgn0000246", "EGF_Stimulus": "1.26"}, {"ID": "FBgn0260744", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0039488", "EGF_Stimulus": "-1.78"}, {"ID": "FBgn0020496", "EGF_Stimulus": "-2.58"}, {"ID": "FBgn0067629", "EGF_Stimulus": "-0.84"}, {"ID": "FBgn0003227", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0035315", "EGF_Stimulus": "1.45"}, {"ID": "FBgn0053970", "EGF_Stimulus": "1.37"}, {"ID": "FBgn0040636", "EGF_Stimulus": "0.13"}, {"ID": "FBgn0013998", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0031238", "EGF_Stimulus": "-2.3"}, {"ID": "FBgn0038306", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0032509", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0035552", "EGF_Stimulus": "-0.95"}, {"ID": "FBgn0016920", "EGF_Stimulus": "1.63"}, {"ID": "FBgn0034585", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0050082", "EGF_Stimulus": "-1.42"}, {"ID": "FBgn0046296", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0027950", "EGF_Stimulus": "-1"}, {"ID": "FBgn0085386", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0039916", "EGF_Stimulus": "1.19"}, {"ID": "FBgn0031649", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0035147", "EGF_Stimulus": "1.12"}, {"ID": "FBgn0032919", "EGF_Stimulus": "-0.19"}, {"ID": "FBgn0011763", "EGF_Stimulus": "-3.4"}, {"ID": "FBgn0033090", "EGF_Stimulus": "-1.76"}, {"ID": "FBgn0037083", "EGF_Stimulus": "1.27"}, {"ID": "FBgn0051469", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0031661", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0038918", "EGF_Stimulus": "1.25"}, {"ID": "FBgn0037322", "EGF_Stimulus": "-0.25"}, {"ID": "FBgn0037514", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0035335", "EGF_Stimulus": "1.17"}, {"ID": "FBgn0000253", "EGF_Stimulus": "4.7"}, {"ID": "FBgn0053958", "EGF_Stimulus": "0.96"}, {"ID": "FBgn0029128", "EGF_Stimulus": "0.3"}, {"ID": "FBgn0259142", "EGF_Stimulus": "1.28"}, {"ID": "FBgn0026702", "EGF_Stimulus": "1.26"}, {"ID": "FBgn0015808", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0032219", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0034087", "EGF_Stimulus": "2.95"}, {"ID": "FBgn0038810", "EGF_Stimulus": "-0.73"}, {"ID": "FBgn0039163", "EGF_Stimulus": "-0.35"}, {"ID": "FBgn0038356", "EGF_Stimulus": "-0.47"}, {"ID": "FBgn0053179", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0026619", "EGF_Stimulus": "-0.92"}, {"ID": "FBgn0038550", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0034816", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0051272", "EGF_Stimulus": "-2.35"}, {"ID": "FBgn0034838", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0034618", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0015037", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0035483", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0033258", "EGF_Stimulus": "0.22"}, {"ID": "FBgn0038704", "EGF_Stimulus": "-0.55"}, {"ID": "FBgn0040348", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0031631", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0032482", "EGF_Stimulus": "-2.32"}, {"ID": "FBgn0032968", "EGF_Stimulus": "0.13"}, {"ID": "FBgn0015376", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0022709", "EGF_Stimulus": "0.14"}, {"ID": "FBgn0051337", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0031692", "EGF_Stimulus": "-0.97"}, {"ID": "FBgn0035228", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0035589", "EGF_Stimulus": "-0.96"}, {"ID": "FBgn0036992", "EGF_Stimulus": "-1.09"}, {"ID": "FBgn0261294", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0051709", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0039052", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0037845", "EGF_Stimulus": "1.29"}, {"ID": "FBgn0039904", "EGF_Stimulus": "-0.4"}, {"ID": "FBgn0030276", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0041248", "EGF_Stimulus": "-0.88"}, {"ID": "FBgn0040367", "EGF_Stimulus": "0.12"}, {"ID": "FBgn0025286", "EGF_Stimulus": "-3.45"}, {"ID": "FBgn0033665", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0034275", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0050039", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0086736", "EGF_Stimulus": "-2.62"}, {"ID": "FBgn0051779", "EGF_Stimulus": "-0.15"}, {"ID": "FBgn0031231", "EGF_Stimulus": "-0.24"}, {"ID": "FBgn0030099", "EGF_Stimulus": "1.06"}, {"ID": "FBgn0029913", "EGF_Stimulus": "-0.19"}, {"ID": "FBgn0038771", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0003165", "EGF_Stimulus": "1.17"}, {"ID": "FBgn0260653", "EGF_Stimulus": "1.53"}, {"ID": "FBgn0261593", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0030274", "EGF_Stimulus": "-2.31"}, {"ID": "FBgn0036689", "EGF_Stimulus": "-0.69"}, {"ID": "FBgn0037715", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0011659", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0039476", "EGF_Stimulus": "1.19"}, {"ID": "FBgn0027509", "EGF_Stimulus": "0.3"}, {"ID": "FBgn0032791", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0032489", "EGF_Stimulus": "-1.28"}, {"ID": "FBgn0014189", "EGF_Stimulus": "-1.61"}, {"ID": "FBgn0036233", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0261060", "EGF_Stimulus": "-1.23"}, {"ID": "FBgn0042693", "EGF_Stimulus": "-0.83"}, {"ID": "FBgn0035260", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0000723", "EGF_Stimulus": "-2.24"}, {"ID": "FBgn0261566", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0037529", "EGF_Stimulus": "0.96"}, {"ID": "FBgn0038476", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0038595", "EGF_Stimulus": "-0.67"}, {"ID": "FBgn0032416", "EGF_Stimulus": "-0.75"}, {"ID": "FBgn0036380", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0033960", "EGF_Stimulus": "-1.14"}, {"ID": "FBgn0024806", "EGF_Stimulus": "-1.51"}, {"ID": "FBgn0035034", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0015558", "EGF_Stimulus": "-0.64"}, {"ID": "FBgn0032957", "EGF_Stimulus": "-1.03"}, {"ID": "FBgn0003660", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0034067", "EGF_Stimulus": "-1.36"}, {"ID": "FBgn0004168", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0032061", "EGF_Stimulus": "-0.69"}, {"ID": "FBgn0025633", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0038722", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0038568", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0033650", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0003002", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0031461", "EGF_Stimulus": "-0.76"}, {"ID": "FBgn0029798", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0013432", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0052499", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0024227", "EGF_Stimulus": "-1.14"}, {"ID": "FBgn0034253", "EGF_Stimulus": "-0.88"}, {"ID": "FBgn0051810", "EGF_Stimulus": "-1.07"}, {"ID": "FBgn0027499", "EGF_Stimulus": "-0.69"}, {"ID": "FBgn0030868", "EGF_Stimulus": "-0.35"}, {"ID": "FBgn0032154", "EGF_Stimulus": "-0.13"}, {"ID": "FBgn0031377", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0037797", "EGF_Stimulus": "-1"}, {"ID": "FBgn0032838", "EGF_Stimulus": "1.12"}, {"ID": "FBgn0031058", "EGF_Stimulus": "-0.09"}, {"ID": "FBgn0038243", "EGF_Stimulus": "-0.26"}, {"ID": "FBgn0260945", "EGF_Stimulus": "-0.75"}, {"ID": "FBgn0013765", "EGF_Stimulus": "4.79"}, {"ID": "FBgn0040582", "EGF_Stimulus": "1.1"}, {"ID": "FBgn0038239", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0039224", "EGF_Stimulus": "-0.46"}, {"ID": "FBgn0028573", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0034753", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0036053", "EGF_Stimulus": "1.27"}, {"ID": "FBgn0037551", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0035666", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0033402", "EGF_Stimulus": "-0.39"}, {"ID": "FBgn0020238", "EGF_Stimulus": "-0.25"}, {"ID": "FBgn0003892", "EGF_Stimulus": "-0.85"}, {"ID": "FBgn0037632", "EGF_Stimulus": "-1.5"}, {"ID": "FBgn0052280", "EGF_Stimulus": "-0.29"}, {"ID": "FBgn0032465", "EGF_Stimulus": "-0.89"}, {"ID": "FBgn0040602", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0039589", "EGF_Stimulus": "-0.9"}, {"ID": "FBgn0024734", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0085388", "EGF_Stimulus": "-1.27"}, {"ID": "FBgn0043005", "EGF_Stimulus": "-0.66"}, {"ID": "FBgn0000463", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0024285", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0040699", "EGF_Stimulus": "-0.36"}, {"ID": "FBgn0052856", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0024920", "EGF_Stimulus": "-0.83"}, {"ID": "FBgn0050361", "EGF_Stimulus": "-1.64"}, {"ID": "FBgn0035046", "EGF_Stimulus": "-2.03"}, {"ID": "FBgn0051562", "EGF_Stimulus": "-0.54"}, {"ID": "FBgn0015522", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0020415", "EGF_Stimulus": "-0.32"}, {"ID": "FBgn0261872", "EGF_Stimulus": "1.51"}, {"ID": "FBgn0021944", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0033348", "EGF_Stimulus": "-2.09"}, {"ID": "FBgn0259209", "EGF_Stimulus": "-0.88"}, {"ID": "FBgn0030366", "EGF_Stimulus": "-1.78"}, {"ID": "FBgn0032395", "EGF_Stimulus": "2.18"}, {"ID": "FBgn0083961", "EGF_Stimulus": "1.68"}, {"ID": "FBgn0050280", "EGF_Stimulus": "1.77"}, {"ID": "FBgn0053291", "EGF_Stimulus": "1.14"}, {"ID": "FBgn0039580", "EGF_Stimulus": "-0.52"}, {"ID": "FBgn0036063", "EGF_Stimulus": "1.06"}, {"ID": "FBgn0051681", "EGF_Stimulus": "-0.25"}, {"ID": "FBgn0002031", "EGF_Stimulus": "-2.45"}, {"ID": "FBgn0037834", "EGF_Stimulus": "-1.16"}, {"ID": "FBgn0260639", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0261799", "EGF_Stimulus": "-1.22"}, {"ID": "FBgn0032198", "EGF_Stimulus": "-0.95"}, {"ID": "FBgn0000313", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0025640", "EGF_Stimulus": "0.06"}, {"ID": "FBgn0085473", "EGF_Stimulus": "-0.84"}, {"ID": "FBgn0032287", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0003475", "EGF_Stimulus": "-0.56"}, {"ID": "FBgn0037742", "EGF_Stimulus": "-0.89"}, {"ID": "FBgn0052284", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0259916", "EGF_Stimulus": "0.26"}, {"ID": "FBgn0038377", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0025642", "EGF_Stimulus": "-1.74"}, {"ID": "FBgn0003268", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0051848", "EGF_Stimulus": "1.13"}, {"ID": "FBgn0039564", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0037812", "EGF_Stimulus": "-1.64"}, {"ID": "FBgn0040777", "EGF_Stimulus": "1.27"}, {"ID": "FBgn0062449", "EGF_Stimulus": "-1.04"}, {"ID": "FBgn0050278", "EGF_Stimulus": "-1.7"}, {"ID": "FBgn0026370", "EGF_Stimulus": "2.62"}, {"ID": "FBgn0260861", "EGF_Stimulus": "1.14"}, {"ID": "FBgn0037671", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0038127", "EGF_Stimulus": "-0.63"}, {"ID": "FBgn0032345", "EGF_Stimulus": "-0.28"}, {"ID": "FBgn0030494", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0029521", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0034888", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0029885", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0031837", "EGF_Stimulus": "-0.64"}, {"ID": "FBgn0030465", "EGF_Stimulus": "0.27"}, {"ID": "FBgn0032280", "EGF_Stimulus": "1.06"}, {"ID": "FBgn0054006", "EGF_Stimulus": "-0.69"}, {"ID": "FBgn0038658", "EGF_Stimulus": "-0.34"}, {"ID": "FBgn0036335", "EGF_Stimulus": "0.2"}, {"ID": "FBgn0036923", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0032843", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0036690", "EGF_Stimulus": "-0.93"}, {"ID": "FBgn0037698", "EGF_Stimulus": "-1.68"}, {"ID": "FBgn0259735", "EGF_Stimulus": "1.29"}, {"ID": "FBgn0004656", "EGF_Stimulus": "-0.78"}, {"ID": "FBgn0032858", "EGF_Stimulus": "-0.66"}, {"ID": "FBgn0036949", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0052845", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0033901", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0040755", "EGF_Stimulus": "1.25"}, {"ID": "FBgn0050440", "EGF_Stimulus": "-1.49"}, {"ID": "FBgn0035860", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0031930", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0052344", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0010097", "EGF_Stimulus": "1.09"}, {"ID": "FBgn0019661", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0036735", "EGF_Stimulus": "-1.03"}, {"ID": "FBgn0033307", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0036459", "EGF_Stimulus": "1.49"}, {"ID": "FBgn0027790", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0085358", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0024740", "EGF_Stimulus": "-0.95"}, {"ID": "FBgn0037377", "EGF_Stimulus": "-0.69"}, {"ID": "FBgn0000715", "EGF_Stimulus": "-0.77"}, {"ID": "FBgn0039869", "EGF_Stimulus": "0.2"}, {"ID": "FBgn0038552", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0039175", "EGF_Stimulus": "-0.72"}, {"ID": "FBgn0032129", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0023526", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0259246", "EGF_Stimulus": "1.03"}, {"ID": "FBgn0037074", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0036450", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0003016", "EGF_Stimulus": "-1.02"}, {"ID": "FBgn0050430", "EGF_Stimulus": "-1.54"}, {"ID": "FBgn0030086", "EGF_Stimulus": "-3.18"}, {"ID": "FBgn0036881", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0016701", "EGF_Stimulus": "-1.05"}, {"ID": "FBgn0050265", "EGF_Stimulus": "-1.65"}, {"ID": "FBgn0034408", "EGF_Stimulus": "1.3"}, {"ID": "FBgn0027547", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0029837", "EGF_Stimulus": "1.27"}, {"ID": "FBgn0051041", "EGF_Stimulus": "0.96"}, {"ID": "FBgn0027500", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0029962", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0011270", "EGF_Stimulus": "-0.22"}, {"ID": "FBgn0034808", "EGF_Stimulus": "1.27"}, {"ID": "FBgn0031904", "EGF_Stimulus": "-0.21"}, {"ID": "FBgn0031043", "EGF_Stimulus": "-0.16"}, {"ID": "FBgn0034361", "EGF_Stimulus": "1.06"}, {"ID": "FBgn0028561", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0038607", "EGF_Stimulus": "-1.62"}, {"ID": "FBgn0032025", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0000564", "EGF_Stimulus": "1.23"}, {"ID": "FBgn0031051", "EGF_Stimulus": "0.27"}, {"ID": "FBgn0033761", "EGF_Stimulus": "-0.89"}, {"ID": "FBgn0034282", "EGF_Stimulus": "0.96"}, {"ID": "FBgn0261553", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0030936", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0035236", "EGF_Stimulus": "-0.72"}, {"ID": "FBgn0029608", "EGF_Stimulus": "0.3"}, {"ID": "FBgn0031436", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0027101", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0033716", "EGF_Stimulus": "-0.52"}, {"ID": "FBgn0028844", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0001565", "EGF_Stimulus": "-0.33"}, {"ID": "FBgn0015600", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0032313", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0039030", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0005586", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0040294", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0261429", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0031626", "EGF_Stimulus": "-0.06"}, {"ID": "FBgn0032644", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0030384", "EGF_Stimulus": "1.33"}, {"ID": "FBgn0052170", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0034452", "EGF_Stimulus": "1.64"}, {"ID": "FBgn0032774", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0030802", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0031496", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0002938", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0041183", "EGF_Stimulus": "-0.66"}, {"ID": "FBgn0259923", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0002626", "EGF_Stimulus": "-3.43"}, {"ID": "FBgn0034962", "EGF_Stimulus": "1.14"}, {"ID": "FBgn0030093", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0017566", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0029730", "EGF_Stimulus": "-0.61"}, {"ID": "FBgn0003598", "EGF_Stimulus": "0.16"}, {"ID": "FBgn0052082", "EGF_Stimulus": "-0.22"}, {"ID": "FBgn0030391", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0032891", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0036767", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0031381", "EGF_Stimulus": "1.22"}, {"ID": "FBgn0010395", "EGF_Stimulus": "-0.94"}, {"ID": "FBgn0004003", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0038536", "EGF_Stimulus": "-0.75"}, {"ID": "FBgn0032665", "EGF_Stimulus": "-0.69"}, {"ID": "FBgn0028534", "EGF_Stimulus": "1.59"}, {"ID": "FBgn0085407", "EGF_Stimulus": "1.04"}, {"ID": "FBgn0039594", "EGF_Stimulus": "1.45"}, {"ID": "FBgn0038302", "EGF_Stimulus": "-0.74"}, {"ID": "FBgn0001248", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0045035", "EGF_Stimulus": "-1.17"}, {"ID": "FBgn0033766", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0085371", "EGF_Stimulus": "0.2"}, {"ID": "FBgn0002926", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0038003", "EGF_Stimulus": "-1.82"}, {"ID": "FBgn0027494", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0030596", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0039003", "EGF_Stimulus": "-0.47"}, {"ID": "FBgn0033005", "EGF_Stimulus": "-0.67"}, {"ID": "FBgn0033754", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0038146", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0036018", "EGF_Stimulus": "-0.3"}, {"ID": "FBgn0031741", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0004594", "EGF_Stimulus": "-1.61"}, {"ID": "FBgn0051861", "EGF_Stimulus": "-0.9"}, {"ID": "FBgn0033097", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0086898", "EGF_Stimulus": "0.19"}, {"ID": "FBgn0004389", "EGF_Stimulus": "-0.89"}, {"ID": "FBgn0051361", "EGF_Stimulus": "1.56"}, {"ID": "FBgn0051029", "EGF_Stimulus": "-0.66"}, {"ID": "FBgn0259242", "EGF_Stimulus": "1.92"}, {"ID": "FBgn0086908", "EGF_Stimulus": "-1.84"}, {"ID": "FBgn0260456", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0039373", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0002431", "EGF_Stimulus": "-2.39"}, {"ID": "FBgn0030725", "EGF_Stimulus": "-0.17"}, {"ID": "FBgn0037530", "EGF_Stimulus": "1.33"}, {"ID": "FBgn0019972", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0259100", "EGF_Stimulus": "-1.81"}, {"ID": "FBgn0036827", "EGF_Stimulus": "-0.28"}, {"ID": "FBgn0039403", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0000181", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0033657", "EGF_Stimulus": "-1.32"}, {"ID": "FBgn0053505", "EGF_Stimulus": "-1.05"}, {"ID": "FBgn0021796", "EGF_Stimulus": "1.26"}, {"ID": "FBgn0030484", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0029942", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0031943", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0026056", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0003979", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0036176", "EGF_Stimulus": "-0.61"}, {"ID": "FBgn0033789", "EGF_Stimulus": "-0.26"}, {"ID": "FBgn0033280", "EGF_Stimulus": "-0.67"}, {"ID": "FBgn0030520", "EGF_Stimulus": "-0.94"}, {"ID": "FBgn0038014", "EGF_Stimulus": "-1.1"}, {"ID": "FBgn0033145", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0043841", "EGF_Stimulus": "-1.15"}, {"ID": "FBgn0036013", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0029737", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0024236", "EGF_Stimulus": "-5.98"}, {"ID": "FBgn0025835", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0032945", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0037646", "EGF_Stimulus": "-0.84"}, {"ID": "FBgn0039251", "EGF_Stimulus": "-0.21"}, {"ID": "FBgn0030103", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0026431", "EGF_Stimulus": "0.2"}, {"ID": "FBgn0032370", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0028879", "EGF_Stimulus": "-1.12"}, {"ID": "FBgn0032660", "EGF_Stimulus": "-1.11"}, {"ID": "FBgn0033982", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0040211", "EGF_Stimulus": "1.02"}, {"ID": "FBgn0034289", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0025613", "EGF_Stimulus": "-0.56"}, {"ID": "FBgn0037061", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0030242", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0003884", "EGF_Stimulus": "-1.77"}, {"ID": "FBgn0035762", "EGF_Stimulus": "-0.55"}, {"ID": "FBgn0038893", "EGF_Stimulus": "-0.04"}, {"ID": "FBgn0003295", "EGF_Stimulus": "-0.67"}, {"ID": "FBgn0036487", "EGF_Stimulus": "2.55"}, {"ID": "FBgn0085383", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0014024", "EGF_Stimulus": "-1.07"}, {"ID": "FBgn0038649", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0031723", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0035754", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0032294", "EGF_Stimulus": "-0.62"}, {"ID": "FBgn0036248", "EGF_Stimulus": "-0.6"}, {"ID": "FBgn0052473", "EGF_Stimulus": "1.63"}, {"ID": "FBgn0031676", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0035432", "EGF_Stimulus": "-0.76"}, {"ID": "FBgn0031601", "EGF_Stimulus": "-0.6"}, {"ID": "FBgn0036353", "EGF_Stimulus": "1.48"}, {"ID": "FBgn0058298", "EGF_Stimulus": "-1.13"}, {"ID": "FBgn0036749", "EGF_Stimulus": "-0.94"}, {"ID": "FBgn0051418", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0037413", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0036886", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0031302", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0027609", "EGF_Stimulus": "0.26"}, {"ID": "FBgn0010551", "EGF_Stimulus": "-1.52"}, {"ID": "FBgn0051269", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0027560", "EGF_Stimulus": "1.32"}, {"ID": "FBgn0035461", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0031034", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0033074", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0030013", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0004227", "EGF_Stimulus": "1.91"}, {"ID": "FBgn0030508", "EGF_Stimulus": "0.14"}, {"ID": "FBgn0038492", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0037900", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0031882", "EGF_Stimulus": "1.09"}, {"ID": "FBgn0050109", "EGF_Stimulus": "-0.84"}, {"ID": "FBgn0000120", "EGF_Stimulus": "-0.91"}, {"ID": "FBgn0034553", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0051031", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0011230", "EGF_Stimulus": "-1.06"}, {"ID": "FBgn0039773", "EGF_Stimulus": "-0.7"}, {"ID": "FBgn0034913", "EGF_Stimulus": "-1.07"}, {"ID": "FBgn0034368", "EGF_Stimulus": "1.18"}, {"ID": "FBgn0034850", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0040670", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0003374", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0035563", "EGF_Stimulus": "-1.76"}, {"ID": "FBgn0036040", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0051139", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0036482", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0039415", "EGF_Stimulus": "-0.8"}, {"ID": "FBgn0035211", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0259823", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0034159", "EGF_Stimulus": "-0.99"}, {"ID": "FBgn0015790", "EGF_Stimulus": "-0.56"}, {"ID": "FBgn0035511", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0033926", "EGF_Stimulus": "-1.27"}, {"ID": "FBgn0033862", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0033574", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0030954", "EGF_Stimulus": "-0.82"}, {"ID": "FBgn0035914", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0036962", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0031181", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0039681", "EGF_Stimulus": "-0.07"}, {"ID": "FBgn0051526", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0038926", "EGF_Stimulus": "1.23"}, {"ID": "FBgn0038047", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0039637", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0030552", "EGF_Stimulus": "-0.8"}, {"ID": "FBgn0028906", "EGF_Stimulus": "-1.66"}, {"ID": "FBgn0037466", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0050098", "EGF_Stimulus": "-0.78"}, {"ID": "FBgn0050502", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0032546", "EGF_Stimulus": "0.17"}, {"ID": "FBgn0051792", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0004915", "EGF_Stimulus": "-0.82"}, {"ID": "FBgn0034129", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0035189", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0039009", "EGF_Stimulus": "-0.85"}, {"ID": "FBgn0051642", "EGF_Stimulus": "-0.9"}, {"ID": "FBgn0050148", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0036709", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0243513", "EGF_Stimulus": "-0.05"}, {"ID": "FBgn0051528", "EGF_Stimulus": "1.25"}, {"ID": "FBgn0038198", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0085292", "EGF_Stimulus": "0.23"}, {"ID": "FBgn0086130", "EGF_Stimulus": "1.29"}, {"ID": "FBgn0027583", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0086704", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0031251", "EGF_Stimulus": "-0.96"}, {"ID": "FBgn0029648", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0037298", "EGF_Stimulus": "1.5"}, {"ID": "FBgn0010621", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0011286", "EGF_Stimulus": "1.2"}, {"ID": "FBgn0041094", "EGF_Stimulus": "1.37"}, {"ID": "FBgn0037439", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0030653", "EGF_Stimulus": "-0.3"}, {"ID": "FBgn0086902", "EGF_Stimulus": "-2.12"}, {"ID": "FBgn0053458", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0026083", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0030010", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0039152", "EGF_Stimulus": "0.2"}, {"ID": "FBgn0028952", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0038647", "EGF_Stimulus": "0.94"}, {"ID": "FBgn0039343", "EGF_Stimulus": "-0.76"}, {"ID": "FBgn0031285", "EGF_Stimulus": "-1.2"}, {"ID": "FBgn0023511", "EGF_Stimulus": "-0.48"}, {"ID": "FBgn0030611", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0039538", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0039555", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0029689", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0035413", "EGF_Stimulus": "-1.01"}, {"ID": "FBgn0039277", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0037915", "EGF_Stimulus": "-0.09"}, {"ID": "FBgn0030878", "EGF_Stimulus": "1.42"}, {"ID": "FBgn0053555", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0032925", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0036918", "EGF_Stimulus": "-0.3"}, {"ID": "FBgn0261286", "EGF_Stimulus": "-0.18"}, {"ID": "FBgn0027334", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0050163", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0040666", "EGF_Stimulus": "-0.91"}, {"ID": "FBgn0031549", "EGF_Stimulus": "-2.97"}, {"ID": "FBgn0261722", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0035076", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0033648", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0039713", "EGF_Stimulus": "-2.56"}, {"ID": "FBgn0086913", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0036814", "EGF_Stimulus": "1.02"}, {"ID": "FBgn0051974", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0033527", "EGF_Stimulus": "1.32"}, {"ID": "FBgn0004624", "EGF_Stimulus": "1.21"}, {"ID": "FBgn0011272", "EGF_Stimulus": "-3.66"}, {"ID": "FBgn0052704", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0040364", "EGF_Stimulus": "-0.82"}, {"ID": "FBgn0031762", "EGF_Stimulus": "-1.37"}, {"ID": "FBgn0036997", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0031116", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0038258", "EGF_Stimulus": "-1.8"}, {"ID": "FBgn0001257", "EGF_Stimulus": "0.12"}, {"ID": "FBgn0038675", "EGF_Stimulus": "-1.24"}, {"ID": "FBgn0034201", "EGF_Stimulus": "1.1"}, {"ID": "FBgn0261801", "EGF_Stimulus": "-0.3"}, {"ID": "FBgn0085378", "EGF_Stimulus": "-2.45"}, {"ID": "FBgn0036116", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0261456", "EGF_Stimulus": "-0.29"}, {"ID": "FBgn0259791", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0031730", "EGF_Stimulus": "-1.43"}, {"ID": "FBgn0000640", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0039059", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0027865", "EGF_Stimulus": "-0.26"}, {"ID": "FBgn0050413", "EGF_Stimulus": "-0.24"}, {"ID": "FBgn0032336", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0037757", "EGF_Stimulus": "1.41"}, {"ID": "FBgn0261625", "EGF_Stimulus": "1.05"}, {"ID": "FBgn0022984", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0031873", "EGF_Stimulus": "-1.19"}, {"ID": "FBgn0032387", "EGF_Stimulus": "-1.14"}, {"ID": "FBgn0051151", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0015565", "EGF_Stimulus": "-1.38"}, {"ID": "FBgn0028374", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0002562", "EGF_Stimulus": "0.27"}, {"ID": "FBgn0027553", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0259715", "EGF_Stimulus": "1.71"}, {"ID": "FBgn0029603", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0030694", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0020640", "EGF_Stimulus": "1.68"}, {"ID": "FBgn0039801", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0035891", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0011455", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0086610", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0028850", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0015816", "EGF_Stimulus": "-0.88"}, {"ID": "FBgn0032871", "EGF_Stimulus": "-0.6"}, {"ID": "FBgn0010105", "EGF_Stimulus": "1.24"}, {"ID": "FBgn0036321", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0034705", "EGF_Stimulus": "-1.11"}, {"ID": "FBgn0086608", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0036406", "EGF_Stimulus": "-0.67"}, {"ID": "FBgn0029658", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0039225", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0025355", "EGF_Stimulus": "-0.46"}, {"ID": "FBgn0027259", "EGF_Stimulus": "0.2"}, {"ID": "FBgn0036287", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0035574", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0037611", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0023416", "EGF_Stimulus": "-0.74"}, {"ID": "FBgn0024833", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0008651", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0033873", "EGF_Stimulus": "-1.4"}, {"ID": "FBgn0053514", "EGF_Stimulus": "-1.45"}, {"ID": "FBgn0022700", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0040958", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0039909", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0034210", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0261396", "EGF_Stimulus": "-2.03"}, {"ID": "FBgn0027525", "EGF_Stimulus": "-0.81"}, {"ID": "FBgn0039087", "EGF_Stimulus": "-1.71"}, {"ID": "FBgn0034661", "EGF_Stimulus": "-0.93"}, {"ID": "FBgn0033056", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0005648", "EGF_Stimulus": "-1.72"}, {"ID": "FBgn0035204", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0259099", "EGF_Stimulus": "-1.45"}, {"ID": "FBgn0036104", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0051323", "EGF_Stimulus": "-0.86"}, {"ID": "FBgn0037131", "EGF_Stimulus": "-1.7"}, {"ID": "FBgn0063499", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0031513", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0031357", "EGF_Stimulus": "-0.67"}, {"ID": "FBgn0032493", "EGF_Stimulus": "-0.91"}, {"ID": "FBgn0039080", "EGF_Stimulus": "1.02"}, {"ID": "FBgn0038256", "EGF_Stimulus": "-1.48"}, {"ID": "FBgn0004432", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0250816", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0259222", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0041097", "EGF_Stimulus": "1.54"}, {"ID": "FBgn0038852", "EGF_Stimulus": "-1.63"}, {"ID": "FBgn0023517", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0033264", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0000644", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0029155", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0038167", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0040466", "EGF_Stimulus": "-1.26"}, {"ID": "FBgn0038354", "EGF_Stimulus": "-2.97"}, {"ID": "FBgn0015924", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0053300", "EGF_Stimulus": "-0.79"}, {"ID": "FBgn0038269", "EGF_Stimulus": "-2.55"}, {"ID": "FBgn0036225", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0034899", "EGF_Stimulus": "1.1"}, {"ID": "FBgn0038889", "EGF_Stimulus": "1.79"}, {"ID": "FBgn0003559", "EGF_Stimulus": "2.34"}, {"ID": "FBgn0035270", "EGF_Stimulus": "-0.1"}, {"ID": "FBgn0035151", "EGF_Stimulus": "1.72"}, {"ID": "FBgn0039844", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0023521", "EGF_Stimulus": "-1.15"}, {"ID": "FBgn0038266", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0033508", "EGF_Stimulus": "0.14"}, {"ID": "FBgn0045866", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0038642", "EGF_Stimulus": "-1.57"}, {"ID": "FBgn0038567", "EGF_Stimulus": "-0.24"}, {"ID": "FBgn0033244", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0051872", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0053792", "EGF_Stimulus": "0.2"}, {"ID": "FBgn0038219", "EGF_Stimulus": "-1.53"}, {"ID": "FBgn0000212", "EGF_Stimulus": "2.23"}, {"ID": "FBgn0038805", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0032151", "EGF_Stimulus": "-2.59"}, {"ID": "FBgn0260933", "EGF_Stimulus": "-0.61"}, {"ID": "FBgn0050287", "EGF_Stimulus": "-0.61"}, {"ID": "FBgn0003326", "EGF_Stimulus": "-1.4"}, {"ID": "FBgn0031757", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0032066", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0030050", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0033153", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0030007", "EGF_Stimulus": "1.24"}, {"ID": "FBgn0010611", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0261067", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0035393", "EGF_Stimulus": "-1.16"}, {"ID": "FBgn0034354", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0034924", "EGF_Stimulus": "-1.28"}, {"ID": "FBgn0023197", "EGF_Stimulus": "0.14"}, {"ID": "FBgn0036781", "EGF_Stimulus": "-0.77"}, {"ID": "FBgn0029791", "EGF_Stimulus": "-0.61"}, {"ID": "FBgn0001297", "EGF_Stimulus": "2.08"}, {"ID": "FBgn0030338", "EGF_Stimulus": "-0.69"}, {"ID": "FBgn0029724", "EGF_Stimulus": "-0.81"}, {"ID": "FBgn0027621", "EGF_Stimulus": "1.48"}, {"ID": "FBgn0037786", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0036202", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0032513", "EGF_Stimulus": "1.34"}, {"ID": "FBgn0024364", "EGF_Stimulus": "1.22"}, {"ID": "FBgn0036072", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0035410", "EGF_Stimulus": "0.15"}, {"ID": "FBgn0040087", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0040553", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0004855", "EGF_Stimulus": "-1.28"}, {"ID": "FBgn0038131", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0034128", "EGF_Stimulus": "1.09"}, {"ID": "FBgn0031638", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0032943", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0085313", "EGF_Stimulus": "-1.22"}, {"ID": "FBgn0032721", "EGF_Stimulus": "-0.43"}, {"ID": "FBgn0261858", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0003206", "EGF_Stimulus": "-1.67"}, {"ID": "FBgn0035679", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0038547", "EGF_Stimulus": "-4.29"}, {"ID": "FBgn0038467", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0034173", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0033366", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0004649", "EGF_Stimulus": "0.27"}, {"ID": "FBgn0037561", "EGF_Stimulus": "-0.46"}, {"ID": "FBgn0052376", "EGF_Stimulus": "1.14"}, {"ID": "FBgn0038206", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0011569", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0033726", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0037975", "EGF_Stimulus": "-0.95"}, {"ID": "FBgn0052263", "EGF_Stimulus": "-0.93"}, {"ID": "FBgn0030859", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0031392", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0041625", "EGF_Stimulus": "-0.97"}, {"ID": "FBgn0037008", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0034511", "EGF_Stimulus": "1"}, {"ID": "FBgn0033330", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0260442", "EGF_Stimulus": "-1.1"}, {"ID": "FBgn0032223", "EGF_Stimulus": "1.79"}, {"ID": "FBgn0002906", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0259192", "EGF_Stimulus": "1.26"}, {"ID": "FBgn0036266", "EGF_Stimulus": "3.5"}, {"ID": "FBgn0010263", "EGF_Stimulus": "-0.66"}, {"ID": "FBgn0085234", "EGF_Stimulus": "-2.94"}, {"ID": "FBgn0032971", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0035476", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0038450", "EGF_Stimulus": "-0.39"}, {"ID": "FBgn0050118", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0032523", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0038783", "EGF_Stimulus": "-0.35"}, {"ID": "FBgn0000416", "EGF_Stimulus": "-0.7"}, {"ID": "FBgn0036078", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0039718", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0032698", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0044812", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0036187", "EGF_Stimulus": "-0.55"}, {"ID": "FBgn0028406", "EGF_Stimulus": "-1.95"}, {"ID": "FBgn0031309", "EGF_Stimulus": "-0.64"}, {"ID": "FBgn0052834", "EGF_Stimulus": "1.03"}, {"ID": "FBgn0050172", "EGF_Stimulus": "0.23"}, {"ID": "FBgn0031878", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0004868", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0034724", "EGF_Stimulus": "-0.83"}, {"ID": "FBgn0034196", "EGF_Stimulus": "0.16"}, {"ID": "FBgn0036363", "EGF_Stimulus": "1.24"}, {"ID": "FBgn0004861", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0038115", "EGF_Stimulus": "1.3"}, {"ID": "FBgn0039313", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0086689", "EGF_Stimulus": "0.23"}, {"ID": "FBgn0063492", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0030266", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0037265", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0037101", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0040323", "EGF_Stimulus": "-1.84"}, {"ID": "FBgn0052260", "EGF_Stimulus": "-0.66"}, {"ID": "FBgn0003302", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0052829", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0038598", "EGF_Stimulus": "-1.46"}, {"ID": "FBgn0033814", "EGF_Stimulus": "-1.84"}, {"ID": "FBgn0040391", "EGF_Stimulus": "0.08"}, {"ID": "FBgn0030162", "EGF_Stimulus": "1.04"}, {"ID": "FBgn0011704", "EGF_Stimulus": "-3.38"}, {"ID": "FBgn0023549", "EGF_Stimulus": "1.03"}, {"ID": "FBgn0034879", "EGF_Stimulus": "-1.06"}, {"ID": "FBgn0030257", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0033463", "EGF_Stimulus": "-0.94"}, {"ID": "FBgn0031688", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0003942", "EGF_Stimulus": "-3.57"}, {"ID": "FBgn0031659", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0031995", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0032753", "EGF_Stimulus": "-0.61"}, {"ID": "FBgn0029825", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0032888", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0052590", "EGF_Stimulus": "-0.81"}, {"ID": "FBgn0016696", "EGF_Stimulus": "-0.32"}, {"ID": "FBgn0036716", "EGF_Stimulus": "1.25"}, {"ID": "FBgn0031860", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0036579", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0013303", "EGF_Stimulus": "-0.48"}, {"ID": "FBgn0037856", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0039296", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0030643", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0038873", "EGF_Stimulus": "0.3"}, {"ID": "FBgn0032729", "EGF_Stimulus": "-1.06"}, {"ID": "FBgn0036154", "EGF_Stimulus": "2.13"}, {"ID": "FBgn0033170", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0053642", "EGF_Stimulus": "1.44"}, {"ID": "FBgn0083978", "EGF_Stimulus": "1.34"}, {"ID": "FBgn0026176", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0031020", "EGF_Stimulus": "2.41"}, {"ID": "FBgn0039115", "EGF_Stimulus": "-0.55"}, {"ID": "FBgn0026080", "EGF_Stimulus": "-3.5"}, {"ID": "FBgn0011244", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0021738", "EGF_Stimulus": "-1.41"}, {"ID": "FBgn0051230", "EGF_Stimulus": "-1.31"}, {"ID": "FBgn0022361", "EGF_Stimulus": "1.15"}, {"ID": "FBgn0034726", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0032126", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0045478", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0010422", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0029114", "EGF_Stimulus": "-1.14"}, {"ID": "FBgn0002638", "EGF_Stimulus": "1.29"}, {"ID": "FBgn0028935", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0033957", "EGF_Stimulus": "-0.63"}, {"ID": "FBgn0015774", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0040075", "EGF_Stimulus": "-2.89"}, {"ID": "FBgn0033395", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0030195", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0034721", "EGF_Stimulus": "0.15"}, {"ID": "FBgn0036204", "EGF_Stimulus": "1.63"}, {"ID": "FBgn0000533", "EGF_Stimulus": "0.14"}, {"ID": "FBgn0039239", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0038348", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0035849", "EGF_Stimulus": "-0.6"}, {"ID": "FBgn0036783", "EGF_Stimulus": "0.21"}, {"ID": "FBgn0040318", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0260721", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0260746", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0259676", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0041205", "EGF_Stimulus": "1.92"}, {"ID": "FBgn0035356", "EGF_Stimulus": "1.37"}, {"ID": "FBgn0028884", "EGF_Stimulus": "-1.01"}, {"ID": "FBgn0026319", "EGF_Stimulus": "-0.77"}, {"ID": "FBgn0025790", "EGF_Stimulus": "2.2"}, {"ID": "FBgn0250757", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0038402", "EGF_Stimulus": "0.21"}, {"ID": "FBgn0040299", "EGF_Stimulus": "1.34"}, {"ID": "FBgn0259149", "EGF_Stimulus": "-0.72"}, {"ID": "FBgn0003716", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0086442", "EGF_Stimulus": "-1.13"}, {"ID": "FBgn0031613", "EGF_Stimulus": "-1"}, {"ID": "FBgn0004057", "EGF_Stimulus": "-1.09"}, {"ID": "FBgn0003346", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0065109", "EGF_Stimulus": "-0.78"}, {"ID": "FBgn0261058", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0043533", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0039748", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0003447", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0030836", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0031479", "EGF_Stimulus": "0.02"}, {"ID": "FBgn0011828", "EGF_Stimulus": "-1.67"}, {"ID": "FBgn0038505", "EGF_Stimulus": "-1.14"}, {"ID": "FBgn0037995", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0027513", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0036839", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0015831", "EGF_Stimulus": "1.2"}, {"ID": "FBgn0026373", "EGF_Stimulus": "-1.3"}, {"ID": "FBgn0035922", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0034663", "EGF_Stimulus": "1.43"}, {"ID": "FBgn0037749", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0035642", "EGF_Stimulus": "0.22"}, {"ID": "FBgn0086691", "EGF_Stimulus": "1.33"}, {"ID": "FBgn0069913", "EGF_Stimulus": "1.58"}, {"ID": "FBgn0051759", "EGF_Stimulus": "0.14"}, {"ID": "FBgn0250842", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0040493", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0036571", "EGF_Stimulus": "1.73"}, {"ID": "FBgn0033131", "EGF_Stimulus": "1.03"}, {"ID": "FBgn0023531", "EGF_Stimulus": "2.05"}, {"ID": "FBgn0085442", "EGF_Stimulus": "1.04"}, {"ID": "FBgn0051634", "EGF_Stimulus": "1.2"}, {"ID": "FBgn0085428", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0051661", "EGF_Stimulus": "-0.76"}, {"ID": "FBgn0036214", "EGF_Stimulus": "0.16"}, {"ID": "FBgn0039270", "EGF_Stimulus": "-1.57"}, {"ID": "FBgn0034152", "EGF_Stimulus": "-0.31"}, {"ID": "FBgn0002022", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0032627", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0051949", "EGF_Stimulus": "-0.63"}, {"ID": "FBgn0011290", "EGF_Stimulus": "1.72"}, {"ID": "FBgn0025625", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0051431", "EGF_Stimulus": "-0.81"}, {"ID": "FBgn0050357", "EGF_Stimulus": "1.56"}, {"ID": "FBgn0053483", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0250908", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0054026", "EGF_Stimulus": "0.25"}, {"ID": "FBgn0041232", "EGF_Stimulus": "-0.33"}, {"ID": "FBgn0026394", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0030984", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0038672", "EGF_Stimulus": "1.6"}, {"ID": "FBgn0030306", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0034441", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0038602", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0050340", "EGF_Stimulus": "1.58"}, {"ID": "FBgn0027364", "EGF_Stimulus": "-0.73"}, {"ID": "FBgn0014007", "EGF_Stimulus": "-1.02"}, {"ID": "FBgn0030421", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0038282", "EGF_Stimulus": "1.02"}, {"ID": "FBgn0037847", "EGF_Stimulus": "1.45"}, {"ID": "FBgn0033059", "EGF_Stimulus": "-1.49"}, {"ID": "FBgn0035931", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0033993", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0035850", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0003996", "EGF_Stimulus": "-0.39"}, {"ID": "FBgn0051824", "EGF_Stimulus": "-1.1"}, {"ID": "FBgn0027945", "EGF_Stimulus": "-1.21"}, {"ID": "FBgn0261836", "EGF_Stimulus": "1.69"}, {"ID": "FBgn0011297", "EGF_Stimulus": "-1.21"}, {"ID": "FBgn0037591", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0016687", "EGF_Stimulus": "1.14"}, {"ID": "FBgn0261509", "EGF_Stimulus": "1.52"}, {"ID": "FBgn0027929", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0033266", "EGF_Stimulus": "-1.75"}, {"ID": "FBgn0004926", "EGF_Stimulus": "-2.16"}, {"ID": "FBgn0030037", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0010504", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0085297", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0029892", "EGF_Stimulus": "-0.89"}, {"ID": "FBgn0029088", "EGF_Stimulus": "-0.46"}, {"ID": "FBgn0051174", "EGF_Stimulus": "-1.06"}, {"ID": "FBgn0261532", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0030374", "EGF_Stimulus": "1.25"}, {"ID": "FBgn0031859", "EGF_Stimulus": "1.53"}, {"ID": "FBgn0261565", "EGF_Stimulus": "1.77"}, {"ID": "FBgn0050393", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0034142", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0036310", "EGF_Stimulus": "0.22"}, {"ID": "FBgn0259215", "EGF_Stimulus": "1.21"}, {"ID": "FBgn0037482", "EGF_Stimulus": "0.23"}, {"ID": "FBgn0037760", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0261788", "EGF_Stimulus": "-0.76"}, {"ID": "FBgn0000479", "EGF_Stimulus": "-1.67"}, {"ID": "FBgn0037433", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0021764", "EGF_Stimulus": "1.22"}, {"ID": "FBgn0000158", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0033466", "EGF_Stimulus": "-0.55"}, {"ID": "FBgn0033594", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0037420", "EGF_Stimulus": "-1.66"}, {"ID": "FBgn0033501", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0038720", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0034822", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0028387", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0037492", "EGF_Stimulus": "-0.95"}, {"ID": "FBgn0000183", "EGF_Stimulus": "-0.3"}, {"ID": "FBgn0000546", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0024329", "EGF_Stimulus": "1.18"}, {"ID": "FBgn0040261", "EGF_Stimulus": "0.16"}, {"ID": "FBgn0039792", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0033928", "EGF_Stimulus": "0.23"}, {"ID": "FBgn0033735", "EGF_Stimulus": "-1.45"}, {"ID": "FBgn0036830", "EGF_Stimulus": "1.62"}, {"ID": "FBgn0020616", "EGF_Stimulus": "1.72"}, {"ID": "FBgn0031491", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0019925", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0033246", "EGF_Stimulus": "-0.74"}, {"ID": "FBgn0030259", "EGF_Stimulus": "1.39"}, {"ID": "FBgn0034901", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0013347", "EGF_Stimulus": "1.33"}, {"ID": "FBgn0027616", "EGF_Stimulus": "-0.59"}, {"ID": "FBgn0040877", "EGF_Stimulus": "-1.07"}, {"ID": "FBgn0032600", "EGF_Stimulus": "-2.36"}, {"ID": "FBgn0039369", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0037516", "EGF_Stimulus": "0.22"}, {"ID": "FBgn0035001", "EGF_Stimulus": "1.56"}, {"ID": "FBgn0036751", "EGF_Stimulus": "-0.84"}, {"ID": "FBgn0035975", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0037850", "EGF_Stimulus": "-5.05"}, {"ID": "FBgn0052259", "EGF_Stimulus": "0.09"}, {"ID": "FBgn0032781", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0031997", "EGF_Stimulus": "-0.72"}, {"ID": "FBgn0034766", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0022268", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0036937", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0000611", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0052687", "EGF_Stimulus": "0.96"}, {"ID": "FBgn0034502", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0036415", "EGF_Stimulus": "-0.62"}, {"ID": "FBgn0043903", "EGF_Stimulus": "2.13"}, {"ID": "FBgn0260645", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0035083", "EGF_Stimulus": "1.35"}, {"ID": "FBgn0001124", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0040208", "EGF_Stimulus": "1.44"}, {"ID": "FBgn0031144", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0044328", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0031453", "EGF_Stimulus": "1.67"}, {"ID": "FBgn0035693", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0035027", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0031528", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0039696", "EGF_Stimulus": "-1.28"}, {"ID": "FBgn0040907", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0029941", "EGF_Stimulus": "-0.94"}, {"ID": "FBgn0053490", "EGF_Stimulus": "-1.07"}, {"ID": "FBgn0038525", "EGF_Stimulus": "-1.45"}, {"ID": "FBgn0085396", "EGF_Stimulus": "1.38"}, {"ID": "FBgn0037217", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0032448", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0051624", "EGF_Stimulus": "-0.96"}, {"ID": "FBgn0033029", "EGF_Stimulus": "2.38"}, {"ID": "FBgn0034569", "EGF_Stimulus": "-1.09"}, {"ID": "FBgn0001149", "EGF_Stimulus": "1.04"}, {"ID": "FBgn0034539", "EGF_Stimulus": "2.27"}, {"ID": "FBgn0034542", "EGF_Stimulus": "1.38"}, {"ID": "FBgn0033083", "EGF_Stimulus": "-0.94"}, {"ID": "FBgn0041247", "EGF_Stimulus": "0.19"}, {"ID": "FBgn0033932", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0030700", "EGF_Stimulus": "0.21"}, {"ID": "FBgn0032000", "EGF_Stimulus": "-0.29"}, {"ID": "FBgn0026090", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0033187", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0010488", "EGF_Stimulus": "1.96"}, {"ID": "FBgn0004878", "EGF_Stimulus": "-0.19"}, {"ID": "FBgn0000116", "EGF_Stimulus": "-0.98"}, {"ID": "FBgn0037416", "EGF_Stimulus": "-0.2"}, {"ID": "FBgn0034487", "EGF_Stimulus": "-0.17"}, {"ID": "FBgn0033104", "EGF_Stimulus": "-0.73"}, {"ID": "FBgn0032634", "EGF_Stimulus": "-1.46"}, {"ID": "FBgn0028863", "EGF_Stimulus": "0.25"}, {"ID": "FBgn0030998", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0039648", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0036557", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0051690", "EGF_Stimulus": "1.18"}, {"ID": "FBgn0011582", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0038275", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0017581", "EGF_Stimulus": "-0.19"}, {"ID": "FBgn0038956", "EGF_Stimulus": "0.16"}, {"ID": "FBgn0038510", "EGF_Stimulus": "1.44"}, {"ID": "FBgn0038330", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0038001", "EGF_Stimulus": "-2.24"}, {"ID": "FBgn0004052", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0033275", "EGF_Stimulus": "-0.62"}, {"ID": "FBgn0035718", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0033499", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0029105", "EGF_Stimulus": "-1.5"}, {"ID": "FBgn0037533", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0033382", "EGF_Stimulus": "0.18"}, {"ID": "FBgn0259176", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0034554", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0037930", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0023216", "EGF_Stimulus": "-0.31"}, {"ID": "FBgn0040719", "EGF_Stimulus": "1.14"}, {"ID": "FBgn0033431", "EGF_Stimulus": "-1.46"}, {"ID": "FBgn0004431", "EGF_Stimulus": "1.64"}, {"ID": "FBgn0035842", "EGF_Stimulus": "-1.11"}, {"ID": "FBgn0034583", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0033899", "EGF_Stimulus": "-2.19"}, {"ID": "FBgn0038210", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0027527", "EGF_Stimulus": "-0.59"}, {"ID": "FBgn0050183", "EGF_Stimulus": "1.5"}, {"ID": "FBgn0036685", "EGF_Stimulus": "-1.28"}, {"ID": "FBgn0039182", "EGF_Stimulus": "-0.95"}, {"ID": "FBgn0037415", "EGF_Stimulus": "-0.88"}, {"ID": "FBgn0026721", "EGF_Stimulus": "2.28"}, {"ID": "FBgn0032393", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0003416", "EGF_Stimulus": "1.76"}, {"ID": "FBgn0032563", "EGF_Stimulus": "-1.97"}, {"ID": "FBgn0030722", "EGF_Stimulus": "-0.18"}, {"ID": "FBgn0030589", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0030943", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0040305", "EGF_Stimulus": "1.41"}, {"ID": "FBgn0039337", "EGF_Stimulus": "1.39"}, {"ID": "FBgn0042129", "EGF_Stimulus": "-0.62"}, {"ID": "FBgn0038398", "EGF_Stimulus": "1.49"}, {"ID": "FBgn0034657", "EGF_Stimulus": "-1"}, {"ID": "FBgn0029762", "EGF_Stimulus": "-0.81"}, {"ID": "FBgn0002531", "EGF_Stimulus": "-2.38"}, {"ID": "FBgn0052507", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0034915", "EGF_Stimulus": "1.72"}, {"ID": "FBgn0035137", "EGF_Stimulus": "-0.05"}, {"ID": "FBgn0016926", "EGF_Stimulus": "-2.33"}, {"ID": "FBgn0016075", "EGF_Stimulus": "1.3"}, {"ID": "FBgn0000308", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0034094", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0027932", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0051404", "EGF_Stimulus": "1.09"}, {"ID": "FBgn0039189", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0029656", "EGF_Stimulus": "-1.13"}, {"ID": "FBgn0013981", "EGF_Stimulus": "-6.3"}, {"ID": "FBgn0035325", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0051741", "EGF_Stimulus": "1.1"}, {"ID": "FBgn0026741", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0027342", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0000137", "EGF_Stimulus": "-0.73"}, {"ID": "FBgn0034572", "EGF_Stimulus": "2.18"}, {"ID": "FBgn0032907", "EGF_Stimulus": "-1.57"}, {"ID": "FBgn0010288", "EGF_Stimulus": "-0.07"}, {"ID": "FBgn0051155", "EGF_Stimulus": "-1.39"}, {"ID": "FBgn0034223", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0037360", "EGF_Stimulus": "1.11"}, {"ID": "FBgn0054030", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0001169", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0052563", "EGF_Stimulus": "0.11"}, {"ID": "FBgn0051374", "EGF_Stimulus": "1.15"}, {"ID": "FBgn0052713", "EGF_Stimulus": "0.17"}, {"ID": "FBgn0052391", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0034478", "EGF_Stimulus": "-0.4"}, {"ID": "FBgn0003401", "EGF_Stimulus": "1.38"}, {"ID": "FBgn0004509", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0029525", "EGF_Stimulus": "-0.73"}, {"ID": "FBgn0036285", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0032084", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0032908", "EGF_Stimulus": "1.71"}, {"ID": "FBgn0033050", "EGF_Stimulus": "1.69"}, {"ID": "FBgn0033379", "EGF_Stimulus": "-1.56"}, {"ID": "FBgn0028665", "EGF_Stimulus": "-1.53"}, {"ID": "FBgn0032029", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0030792", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0029880", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0031563", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0040338", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0032249", "EGF_Stimulus": "-0.67"}, {"ID": "FBgn0039674", "EGF_Stimulus": "-0.88"}, {"ID": "FBgn0021953", "EGF_Stimulus": "-0.29"}, {"ID": "FBgn0033475", "EGF_Stimulus": "1.39"}, {"ID": "FBgn0000384", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0050096", "EGF_Stimulus": "-0.9"}, {"ID": "FBgn0041588", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0037894", "EGF_Stimulus": "-0.52"}, {"ID": "FBgn0010041", "EGF_Stimulus": "-0.78"}, {"ID": "FBgn0014342", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0026395", "EGF_Stimulus": "1"}, {"ID": "FBgn0033215", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0031773", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0011694", "EGF_Stimulus": "-1.04"}, {"ID": "FBgn0034703", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0037814", "EGF_Stimulus": "-1.1"}, {"ID": "FBgn0033679", "EGF_Stimulus": "-0.65"}, {"ID": "FBgn0031538", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0031498", "EGF_Stimulus": "-0.25"}, {"ID": "FBgn0040809", "EGF_Stimulus": "-1.05"}, {"ID": "FBgn0053557", "EGF_Stimulus": "-0.57"}, {"ID": "FBgn0052103", "EGF_Stimulus": "-0.86"}, {"ID": "FBgn0052631", "EGF_Stimulus": "-1.39"}, {"ID": "FBgn0035588", "EGF_Stimulus": "1.76"}, {"ID": "FBgn0033919", "EGF_Stimulus": "1.35"}, {"ID": "FBgn0026620", "EGF_Stimulus": "-0.52"}, {"ID": "FBgn0051612", "EGF_Stimulus": "-1.01"}, {"ID": "FBgn0046222", "EGF_Stimulus": "-2.14"}, {"ID": "FBgn0015001", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0052727", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0033996", "EGF_Stimulus": "1.24"}, {"ID": "FBgn0036546", "EGF_Stimulus": "1.12"}, {"ID": "FBgn0259219", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0085265", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0032340", "EGF_Stimulus": "1.83"}, {"ID": "FBgn0003463", "EGF_Stimulus": "-0.96"}, {"ID": "FBgn0050104", "EGF_Stimulus": "-0.16"}, {"ID": "FBgn0035255", "EGF_Stimulus": "-0.18"}, {"ID": "FBgn0043578", "EGF_Stimulus": "-0.29"}, {"ID": "FBgn0035929", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0016041", "EGF_Stimulus": "-0.59"}, {"ID": "FBgn0031988", "EGF_Stimulus": "-0.57"}, {"ID": "FBgn0030850", "EGF_Stimulus": "-1.25"}, {"ID": "FBgn0004687", "EGF_Stimulus": "1.23"}, {"ID": "FBgn0040268", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0034394", "EGF_Stimulus": "1.29"}, {"ID": "FBgn0027338", "EGF_Stimulus": "-1.46"}, {"ID": "FBgn0036138", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0024689", "EGF_Stimulus": "-0.92"}, {"ID": "FBgn0260798", "EGF_Stimulus": "-0.56"}, {"ID": "FBgn0039734", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0033687", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0031164", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0033458", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0038440", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0031209", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0034232", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0038381", "EGF_Stimulus": "2.01"}, {"ID": "FBgn0037063", "EGF_Stimulus": "1.04"}, {"ID": "FBgn0052106", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0030418", "EGF_Stimulus": "-1.25"}, {"ID": "FBgn0035685", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0040528", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0035004", "EGF_Stimulus": "-1.19"}, {"ID": "FBgn0030594", "EGF_Stimulus": "-0.54"}, {"ID": "FBgn0039505", "EGF_Stimulus": "-0.2"}, {"ID": "FBgn0028407", "EGF_Stimulus": "1.17"}, {"ID": "FBgn0034814", "EGF_Stimulus": "1.29"}, {"ID": "FBgn0041150", "EGF_Stimulus": "-0.98"}, {"ID": "FBgn0015806", "EGF_Stimulus": "-1.4"}, {"ID": "FBgn0025111", "EGF_Stimulus": "-1.61"}, {"ID": "FBgn0039124", "EGF_Stimulus": "0.19"}, {"ID": "FBgn0028411", "EGF_Stimulus": "2.06"}, {"ID": "FBgn0051279", "EGF_Stimulus": "-0.8"}, {"ID": "FBgn0040502", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0034425", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0035508", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0013576", "EGF_Stimulus": "1.04"}, {"ID": "FBgn0032609", "EGF_Stimulus": "1.04"}, {"ID": "FBgn0030342", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0086370", "EGF_Stimulus": "1.49"}, {"ID": "FBgn0260007", "EGF_Stimulus": "-1.53"}, {"ID": "FBgn0031760", "EGF_Stimulus": "1.1"}, {"ID": "FBgn0042146", "EGF_Stimulus": "1.2"}, {"ID": "FBgn0047114", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0038325", "EGF_Stimulus": "-0.62"}, {"ID": "FBgn0085503", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0026263", "EGF_Stimulus": "1.17"}, {"ID": "FBgn0051728", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0259113", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0020272", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0030787", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0036893", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0051516", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0033566", "EGF_Stimulus": "-0.74"}, {"ID": "FBgn0086356", "EGF_Stimulus": "-0.75"}, {"ID": "FBgn0001315", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0002552", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0034943", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0036402", "EGF_Stimulus": "6.19"}, {"ID": "FBgn0004777", "EGF_Stimulus": "1.46"}, {"ID": "FBgn0035983", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0013676", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0036496", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0029646", "EGF_Stimulus": "0.94"}, {"ID": "FBgn0004380", "EGF_Stimulus": "-0.14"}, {"ID": "FBgn0039920", "EGF_Stimulus": "-0.84"}, {"ID": "FBgn0038447", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0037489", "EGF_Stimulus": "-1.12"}, {"ID": "FBgn0050067", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0050192", "EGF_Stimulus": "1.14"}, {"ID": "FBgn0053543", "EGF_Stimulus": "-0.97"}, {"ID": "FBgn0051922", "EGF_Stimulus": "-0.6"}, {"ID": "FBgn0050151", "EGF_Stimulus": "-0.79"}, {"ID": "FBgn0033696", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0039261", "EGF_Stimulus": "-0.3"}, {"ID": "FBgn0024191", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0036476", "EGF_Stimulus": "-1.8"}, {"ID": "FBgn0032193", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0001254", "EGF_Stimulus": "-1.17"}, {"ID": "FBgn0052808", "EGF_Stimulus": "-1.07"}, {"ID": "FBgn0030495", "EGF_Stimulus": "-0.48"}, {"ID": "FBgn0030563", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0014466", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0038301", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0030718", "EGF_Stimulus": "1.41"}, {"ID": "FBgn0038695", "EGF_Stimulus": "-0.08"}, {"ID": "FBgn0038972", "EGF_Stimulus": "1.06"}, {"ID": "FBgn0028892", "EGF_Stimulus": "-1.62"}, {"ID": "FBgn0003274", "EGF_Stimulus": "-4.32"}, {"ID": "FBgn0032701", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0037606", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0031281", "EGF_Stimulus": "1.38"}, {"ID": "FBgn0038098", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0020545", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0033889", "EGF_Stimulus": "-4.96"}, {"ID": "FBgn0037195", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0035193", "EGF_Stimulus": "-0.2"}, {"ID": "FBgn0038170", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0024945", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0052693", "EGF_Stimulus": "-0.24"}, {"ID": "FBgn0037722", "EGF_Stimulus": "-1.63"}, {"ID": "FBgn0046878", "EGF_Stimulus": "-0.72"}, {"ID": "FBgn0036679", "EGF_Stimulus": "-0.86"}, {"ID": "FBgn0029690", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0037614", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0039064", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0032217", "EGF_Stimulus": "0.27"}, {"ID": "FBgn0036277", "EGF_Stimulus": "1.46"}, {"ID": "FBgn0034180", "EGF_Stimulus": "1.83"}, {"ID": "FBgn0003261", "EGF_Stimulus": "-1.43"}, {"ID": "FBgn0029951", "EGF_Stimulus": "1.23"}, {"ID": "FBgn0053704", "EGF_Stimulus": "-0.26"}, {"ID": "FBgn0035317", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0031446", "EGF_Stimulus": "-0.31"}, {"ID": "FBgn0026754", "EGF_Stimulus": "-0.29"}, {"ID": "FBgn0052600", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0038035", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0035501", "EGF_Stimulus": "0.15"}, {"ID": "FBgn0031769", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0036951", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0005633", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0027094", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0011476", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0023536", "EGF_Stimulus": "1.22"}, {"ID": "FBgn0037875", "EGF_Stimulus": "-1.34"}, {"ID": "FBgn0039324", "EGF_Stimulus": "-0.57"}, {"ID": "FBgn0015797", "EGF_Stimulus": "-0.57"}, {"ID": "FBgn0013726", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0039429", "EGF_Stimulus": "-1.36"}, {"ID": "FBgn0036616", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0033092", "EGF_Stimulus": "-0.55"}, {"ID": "FBgn0043364", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0038159", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0033140", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0005696", "EGF_Stimulus": "-1.3"}, {"ID": "FBgn0039481", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0016919", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0039043", "EGF_Stimulus": "-0.59"}, {"ID": "FBgn0002715", "EGF_Stimulus": "-1.64"}, {"ID": "FBgn0004373", "EGF_Stimulus": "-0.32"}, {"ID": "FBgn0028541", "EGF_Stimulus": "-1.06"}, {"ID": "FBgn0250833", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0051999", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0038319", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0031412", "EGF_Stimulus": "-0.79"}, {"ID": "FBgn0031220", "EGF_Stimulus": "1.6"}, {"ID": "FBgn0027903", "EGF_Stimulus": "-0.36"}, {"ID": "FBgn0027620", "EGF_Stimulus": "-0.95"}, {"ID": "FBgn0035550", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0001234", "EGF_Stimulus": "-0.4"}, {"ID": "FBgn0259236", "EGF_Stimulus": "1.27"}, {"ID": "FBgn0038916", "EGF_Stimulus": "0.3"}, {"ID": "FBgn0004908", "EGF_Stimulus": "-0.69"}, {"ID": "FBgn0039636", "EGF_Stimulus": "1.06"}, {"ID": "FBgn0053194", "EGF_Stimulus": "-0.65"}, {"ID": "FBgn0015521", "EGF_Stimulus": "-2.73"}, {"ID": "FBgn0036874", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0037779", "EGF_Stimulus": "-1.22"}, {"ID": "FBgn0037013", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0028504", "EGF_Stimulus": "1.25"}, {"ID": "FBgn0037312", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0039471", "EGF_Stimulus": "-1"}, {"ID": "FBgn0037964", "EGF_Stimulus": "1.29"}, {"ID": "FBgn0032507", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0033168", "EGF_Stimulus": "-0.78"}, {"ID": "FBgn0261928", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0030688", "EGF_Stimulus": "1.21"}, {"ID": "FBgn0021825", "EGF_Stimulus": "0.3"}, {"ID": "FBgn0037085", "EGF_Stimulus": "1.15"}, {"ID": "FBgn0029863", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0032813", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0032314", "EGF_Stimulus": "-0.31"}, {"ID": "FBgn0027538", "EGF_Stimulus": "-0.09"}, {"ID": "FBgn0037429", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0050466", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0086779", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0037635", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0025865", "EGF_Stimulus": "-0.78"}, {"ID": "FBgn0260461", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0037207", "EGF_Stimulus": "-1.74"}, {"ID": "FBgn0052462", "EGF_Stimulus": "-0.55"}, {"ID": "FBgn0029697", "EGF_Stimulus": "0.15"}, {"ID": "FBgn0038039", "EGF_Stimulus": "-0.36"}, {"ID": "FBgn0015010", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0024995", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0035333", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0039355", "EGF_Stimulus": "-0.43"}, {"ID": "FBgn0039486", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0028691", "EGF_Stimulus": "-0.82"}, {"ID": "FBgn0029661", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0085465", "EGF_Stimulus": "-0.65"}, {"ID": "FBgn0086472", "EGF_Stimulus": "-0.66"}, {"ID": "FBgn0085204", "EGF_Stimulus": "-3.24"}, {"ID": "FBgn0014026", "EGF_Stimulus": "-3.38"}, {"ID": "FBgn0014141", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0029990", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0000244", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0033638", "EGF_Stimulus": "-1.05"}, {"ID": "FBgn0030660", "EGF_Stimulus": "-0.33"}, {"ID": "FBgn0051004", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0011762", "EGF_Stimulus": "-0.06"}, {"ID": "FBgn0004778", "EGF_Stimulus": "0.1"}, {"ID": "FBgn0034463", "EGF_Stimulus": "0.19"}, {"ID": "FBgn0039164", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0051055", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0038341", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0028875", "EGF_Stimulus": "-1.18"}, {"ID": "FBgn0034069", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0037700", "EGF_Stimulus": "-1.38"}, {"ID": "FBgn0028327", "EGF_Stimulus": "1.05"}, {"ID": "FBgn0015277", "EGF_Stimulus": "-0.97"}, {"ID": "FBgn0034072", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0260003", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0037147", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0035162", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0038960", "EGF_Stimulus": "-0.76"}, {"ID": "FBgn0040650", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0024814", "EGF_Stimulus": "0.94"}, {"ID": "FBgn0039770", "EGF_Stimulus": "-0.7"}, {"ID": "FBgn0034741", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0039627", "EGF_Stimulus": "-0.33"}, {"ID": "FBgn0031976", "EGF_Stimulus": "-0.7"}, {"ID": "FBgn0003279", "EGF_Stimulus": "-3.6"}, {"ID": "FBgn0034520", "EGF_Stimulus": "0.94"}, {"ID": "FBgn0039017", "EGF_Stimulus": "1"}, {"ID": "FBgn0028513", "EGF_Stimulus": "-0.66"}, {"ID": "FBgn0053474", "EGF_Stimulus": "-1.12"}, {"ID": "FBgn0038361", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0034623", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0036528", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0000256", "EGF_Stimulus": "1.29"}, {"ID": "FBgn0036820", "EGF_Stimulus": "-1.85"}, {"ID": "FBgn0032256", "EGF_Stimulus": "0.16"}, {"ID": "FBgn0039525", "EGF_Stimulus": "1.18"}, {"ID": "FBgn0023542", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0039010", "EGF_Stimulus": "-0.77"}, {"ID": "FBgn0039852", "EGF_Stimulus": "-1.42"}, {"ID": "FBgn0026252", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0028401", "EGF_Stimulus": "0.17"}, {"ID": "FBgn0033209", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0025682", "EGF_Stimulus": "-0.66"}, {"ID": "FBgn0033663", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0030744", "EGF_Stimulus": "1.04"}, {"ID": "FBgn0031361", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0028396", "EGF_Stimulus": "1.37"}, {"ID": "FBgn0033221", "EGF_Stimulus": "-0.98"}, {"ID": "FBgn0004463", "EGF_Stimulus": "-0.69"}, {"ID": "FBgn0036762", "EGF_Stimulus": "-0.65"}, {"ID": "FBgn0001085", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0030799", "EGF_Stimulus": "0.04"}, {"ID": "FBgn0032230", "EGF_Stimulus": "1.23"}, {"ID": "FBgn0030510", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0032475", "EGF_Stimulus": "0.16"}, {"ID": "FBgn0052423", "EGF_Stimulus": "1.33"}, {"ID": "FBgn0024332", "EGF_Stimulus": "-1.19"}, {"ID": "FBgn0050158", "EGF_Stimulus": "-0.94"}, {"ID": "FBgn0037819", "EGF_Stimulus": "-0.91"}, {"ID": "FBgn0028475", "EGF_Stimulus": "-1.19"}, {"ID": "FBgn0005386", "EGF_Stimulus": "1.79"}, {"ID": "FBgn0035815", "EGF_Stimulus": "1.14"}, {"ID": "FBgn0037572", "EGF_Stimulus": "1.29"}, {"ID": "FBgn0010316", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0004569", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0052274", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0039641", "EGF_Stimulus": "1.22"}, {"ID": "FBgn0259745", "EGF_Stimulus": "2.26"}, {"ID": "FBgn0033400", "EGF_Stimulus": "1.5"}, {"ID": "FBgn0037386", "EGF_Stimulus": "0.18"}, {"ID": "FBgn0051902", "EGF_Stimulus": "0.18"}, {"ID": "FBgn0039760", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0085481", "EGF_Stimulus": "0.19"}, {"ID": "FBgn0037920", "EGF_Stimulus": "1.17"}, {"ID": "FBgn0030222", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0033020", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0039755", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0031463", "EGF_Stimulus": "-0.7"}, {"ID": "FBgn0028919", "EGF_Stimulus": "1.77"}, {"ID": "FBgn0050259", "EGF_Stimulus": "-1"}, {"ID": "FBgn0028274", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0052745", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0040382", "EGF_Stimulus": "-0.7"}, {"ID": "FBgn0034035", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0052188", "EGF_Stimulus": "-0.21"}, {"ID": "FBgn0011260", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0052228", "EGF_Stimulus": "1.18"}, {"ID": "FBgn0038576", "EGF_Stimulus": "4.47"}, {"ID": "FBgn0031694", "EGF_Stimulus": "-1.05"}, {"ID": "FBgn0038107", "EGF_Stimulus": "-0.1"}, {"ID": "FBgn0015336", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0034994", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0036000", "EGF_Stimulus": "-0.86"}, {"ID": "FBgn0000358", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0053673", "EGF_Stimulus": "-1.17"}, {"ID": "FBgn0014366", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0032100", "EGF_Stimulus": "-0.79"}, {"ID": "FBgn0051998", "EGF_Stimulus": "1.26"}, {"ID": "FBgn0039896", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0038438", "EGF_Stimulus": "-0.31"}, {"ID": "FBgn0030912", "EGF_Stimulus": "0.23"}, {"ID": "FBgn0036492", "EGF_Stimulus": "-1.15"}, {"ID": "FBgn0024291", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0020509", "EGF_Stimulus": "0.26"}, {"ID": "FBgn0053969", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0039060", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0039380", "EGF_Stimulus": "1.18"}, {"ID": "FBgn0085349", "EGF_Stimulus": "-0.52"}, {"ID": "FBgn0042119", "EGF_Stimulus": "1.53"}, {"ID": "FBgn0260000", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0025777", "EGF_Stimulus": "0.25"}, {"ID": "FBgn0037166", "EGF_Stimulus": "-0.67"}, {"ID": "FBgn0011737", "EGF_Stimulus": "-0.85"}, {"ID": "FBgn0024509", "EGF_Stimulus": "-1.31"}, {"ID": "FBgn0030577", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0038755", "EGF_Stimulus": "1.24"}, {"ID": "FBgn0051463", "EGF_Stimulus": "-0.29"}, {"ID": "FBgn0037652", "EGF_Stimulus": "-1.01"}, {"ID": "FBgn0037659", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0031912", "EGF_Stimulus": "-2.19"}, {"ID": "FBgn0031703", "EGF_Stimulus": "1.49"}, {"ID": "FBgn0040106", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0036652", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0034471", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0259229", "EGF_Stimulus": "1.13"}, {"ID": "FBgn0029706", "EGF_Stimulus": "1.01"}, {"ID": "FBgn0040509", "EGF_Stimulus": "0.3"}, {"ID": "FBgn0037005", "EGF_Stimulus": "1.13"}, {"ID": "FBgn0035063", "EGF_Stimulus": "1.56"}, {"ID": "FBgn0029771", "EGF_Stimulus": "1.15"}, {"ID": "FBgn0022787", "EGF_Stimulus": "-0.59"}, {"ID": "FBgn0035657", "EGF_Stimulus": "-0.26"}, {"ID": "FBgn0032868", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0036549", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0015574", "EGF_Stimulus": "1.79"}, {"ID": "FBgn0037230", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0036101", "EGF_Stimulus": "-1.47"}, {"ID": "FBgn0029092", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0031683", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0036500", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0005672", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0038548", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0014269", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0001225", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0020379", "EGF_Stimulus": "1.55"}, {"ID": "FBgn0005411", "EGF_Stimulus": "-3.87"}, {"ID": "FBgn0038207", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0037125", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0051960", "EGF_Stimulus": "1.4"}, {"ID": "FBgn0035570", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0031171", "EGF_Stimulus": "-0.8"}, {"ID": "FBgn0050203", "EGF_Stimulus": "-1.3"}, {"ID": "FBgn0020280", "EGF_Stimulus": "-0.64"}, {"ID": "FBgn0030979", "EGF_Stimulus": "-0.54"}, {"ID": "FBgn0010228", "EGF_Stimulus": "-1.45"}, {"ID": "FBgn0033989", "EGF_Stimulus": "1.68"}, {"ID": "FBgn0052091", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0032048", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0000078", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0034403", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0002842", "EGF_Stimulus": "-0.34"}, {"ID": "FBgn0045827", "EGF_Stimulus": "1.87"}, {"ID": "FBgn0036447", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0028986", "EGF_Stimulus": "-0.24"}, {"ID": "FBgn0039073", "EGF_Stimulus": "-0.76"}, {"ID": "FBgn0037669", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0025627", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0029701", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0261277", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0028969", "EGF_Stimulus": "-2.81"}, {"ID": "FBgn0004797", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0032797", "EGF_Stimulus": "-0.52"}, {"ID": "FBgn0051288", "EGF_Stimulus": "-0.47"}, {"ID": "FBgn0030673", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0038656", "EGF_Stimulus": "-0.48"}, {"ID": "FBgn0261439", "EGF_Stimulus": "1.64"}, {"ID": "FBgn0024846", "EGF_Stimulus": "-0.47"}, {"ID": "FBgn0010452", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0034057", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0032652", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0261627", "EGF_Stimulus": "-0.07"}, {"ID": "FBgn0035954", "EGF_Stimulus": "1.09"}, {"ID": "FBgn0051371", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0034415", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0028974", "EGF_Stimulus": "-1.54"}, {"ID": "FBgn0039129", "EGF_Stimulus": "-2.12"}, {"ID": "FBgn0038577", "EGF_Stimulus": "-0.95"}, {"ID": "FBgn0085224", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0051423", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0040519", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0034432", "EGF_Stimulus": "1.1"}, {"ID": "FBgn0039807", "EGF_Stimulus": "1.15"}, {"ID": "FBgn0058378", "EGF_Stimulus": "-1.68"}, {"ID": "FBgn0040725", "EGF_Stimulus": "-0.21"}, {"ID": "FBgn0053315", "EGF_Stimulus": "-0.83"}, {"ID": "FBgn0063261", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0038832", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0031464", "EGF_Stimulus": "-0.64"}, {"ID": "FBgn0033010", "EGF_Stimulus": "1.21"}, {"ID": "FBgn0028979", "EGF_Stimulus": "-0.1"}, {"ID": "FBgn0032462", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0028980", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0003997", "EGF_Stimulus": "1.48"}, {"ID": "FBgn0002940", "EGF_Stimulus": "1.24"}, {"ID": "FBgn0036514", "EGF_Stimulus": "-0.97"}, {"ID": "FBgn0030305", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0052686", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0032402", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0039381", "EGF_Stimulus": "1.29"}, {"ID": "FBgn0032196", "EGF_Stimulus": "1.05"}, {"ID": "FBgn0031390", "EGF_Stimulus": "1.77"}, {"ID": "FBgn0029770", "EGF_Stimulus": "-0.67"}, {"ID": "FBgn0040823", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0034828", "EGF_Stimulus": "-1.82"}, {"ID": "FBgn0030976", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0000439", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0013717", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0021874", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0030137", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0031632", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0030081", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0260970", "EGF_Stimulus": "1.51"}, {"ID": "FBgn0002734", "EGF_Stimulus": "-1.49"}, {"ID": "FBgn0029176", "EGF_Stimulus": "-1.73"}, {"ID": "FBgn0034095", "EGF_Stimulus": "-0.72"}, {"ID": "FBgn0030658", "EGF_Stimulus": "-0.92"}, {"ID": "FBgn0261933", "EGF_Stimulus": "2.03"}, {"ID": "FBgn0001112", "EGF_Stimulus": "-0.65"}, {"ID": "FBgn0052262", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0037291", "EGF_Stimulus": "-0.34"}, {"ID": "FBgn0035412", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0051301", "EGF_Stimulus": "-1.99"}, {"ID": "FBgn0036773", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0041627", "EGF_Stimulus": "1.14"}, {"ID": "FBgn0086519", "EGF_Stimulus": "-0.17"}, {"ID": "FBgn0034005", "EGF_Stimulus": "1.2"}, {"ID": "FBgn0002931", "EGF_Stimulus": "-0.65"}, {"ID": "FBgn0260499", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0030060", "EGF_Stimulus": "0.26"}, {"ID": "FBgn0032704", "EGF_Stimulus": "-0.82"}, {"ID": "FBgn0032587", "EGF_Stimulus": "1.23"}, {"ID": "FBgn0034844", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0039022", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0038854", "EGF_Stimulus": "-0.93"}, {"ID": "FBgn0035512", "EGF_Stimulus": "1"}, {"ID": "FBgn0046114", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0036602", "EGF_Stimulus": "-0.47"}, {"ID": "FBgn0000667", "EGF_Stimulus": "-0.74"}, {"ID": "FBgn0004173", "EGF_Stimulus": "1.4"}, {"ID": "FBgn0010350", "EGF_Stimulus": "-1.41"}, {"ID": "FBgn0036228", "EGF_Stimulus": "0.19"}, {"ID": "FBgn0002936", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0038173", "EGF_Stimulus": "-0.7"}, {"ID": "FBgn0029823", "EGF_Stimulus": "1.01"}, {"ID": "FBgn0031881", "EGF_Stimulus": "-0.84"}, {"ID": "FBgn0019932", "EGF_Stimulus": "1.36"}, {"ID": "FBgn0029840", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0030088", "EGF_Stimulus": "-1.32"}, {"ID": "FBgn0027588", "EGF_Stimulus": "-0.16"}, {"ID": "FBgn0037138", "EGF_Stimulus": "1.06"}, {"ID": "FBgn0027783", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0038490", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0027103", "EGF_Stimulus": "1.86"}, {"ID": "FBgn0036960", "EGF_Stimulus": "1.11"}, {"ID": "FBgn0037408", "EGF_Stimulus": "-1.09"}, {"ID": "FBgn0031628", "EGF_Stimulus": "1.01"}, {"ID": "FBgn0051864", "EGF_Stimulus": "1.17"}, {"ID": "FBgn0085352", "EGF_Stimulus": "1"}, {"ID": "FBgn0037275", "EGF_Stimulus": "1"}, {"ID": "FBgn0050005", "EGF_Stimulus": "1.05"}, {"ID": "FBgn0035311", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0053922", "EGF_Stimulus": "-0.35"}, {"ID": "FBgn0044452", "EGF_Stimulus": "1.95"}, {"ID": "FBgn0036609", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0020909", "EGF_Stimulus": "-0.97"}, {"ID": "FBgn0034247", "EGF_Stimulus": "-1.06"}, {"ID": "FBgn0052644", "EGF_Stimulus": "-1.18"}, {"ID": "FBgn0085414", "EGF_Stimulus": "2.8"}, {"ID": "FBgn0031362", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0037372", "EGF_Stimulus": "1.54"}, {"ID": "FBgn0035285", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0033659", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0037685", "EGF_Stimulus": "-1.89"}, {"ID": "FBgn0001134", "EGF_Stimulus": "1.01"}, {"ID": "FBgn0030160", "EGF_Stimulus": "0.21"}, {"ID": "FBgn0020224", "EGF_Stimulus": "2.24"}, {"ID": "FBgn0031356", "EGF_Stimulus": "-0.61"}, {"ID": "FBgn0045482", "EGF_Stimulus": "-0.89"}, {"ID": "FBgn0051660", "EGF_Stimulus": "-0.05"}, {"ID": "FBgn0035980", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0016694", "EGF_Stimulus": "1.73"}, {"ID": "FBgn0031292", "EGF_Stimulus": "0.19"}, {"ID": "FBgn0039800", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0033368", "EGF_Stimulus": "1.13"}, {"ID": "FBgn0052551", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0050048", "EGF_Stimulus": "1.18"}, {"ID": "FBgn0031305", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0017448", "EGF_Stimulus": "-0.37"}, {"ID": "FBgn0038045", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0042083", "EGF_Stimulus": "-0.06"}, {"ID": "FBgn0032727", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0032303", "EGF_Stimulus": "-1.34"}, {"ID": "FBgn0033846", "EGF_Stimulus": "-2.3"}, {"ID": "FBgn0085210", "EGF_Stimulus": "-0.85"}, {"ID": "FBgn0052088", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0261266", "EGF_Stimulus": "-0.62"}, {"ID": "FBgn0062440", "EGF_Stimulus": "-0.52"}, {"ID": "FBgn0050324", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0033645", "EGF_Stimulus": "-0.34"}, {"ID": "FBgn0035248", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0051874", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0010397", "EGF_Stimulus": "1.27"}, {"ID": "FBgn0085212", "EGF_Stimulus": "-0.6"}, {"ID": "FBgn0086906", "EGF_Stimulus": "-1.52"}, {"ID": "FBgn0260935", "EGF_Stimulus": "-1.63"}, {"ID": "FBgn0031677", "EGF_Stimulus": "0.96"}, {"ID": "FBgn0039454", "EGF_Stimulus": "0.27"}, {"ID": "FBgn0025394", "EGF_Stimulus": "-3.35"}, {"ID": "FBgn0250848", "EGF_Stimulus": "-0.63"}, {"ID": "FBgn0030667", "EGF_Stimulus": "-0.39"}, {"ID": "FBgn0024230", "EGF_Stimulus": "-1.17"}, {"ID": "FBgn0039519", "EGF_Stimulus": "1.23"}, {"ID": "FBgn0036515", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0010434", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0032115", "EGF_Stimulus": "-0.48"}, {"ID": "FBgn0034307", "EGF_Stimulus": "0.25"}, {"ID": "FBgn0020506", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0032335", "EGF_Stimulus": "1.73"}, {"ID": "FBgn0038498", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0085420", "EGF_Stimulus": "1.41"}, {"ID": "FBgn0261859", "EGF_Stimulus": "-1.35"}, {"ID": "FBgn0036712", "EGF_Stimulus": "-1.76"}, {"ID": "FBgn0014032", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0028936", "EGF_Stimulus": "-0.77"}, {"ID": "FBgn0034605", "EGF_Stimulus": "0.19"}, {"ID": "FBgn0038808", "EGF_Stimulus": "1.42"}, {"ID": "FBgn0025676", "EGF_Stimulus": "1.26"}, {"ID": "FBgn0053203", "EGF_Stimulus": "-0.73"}, {"ID": "FBgn0015299", "EGF_Stimulus": "-0.19"}, {"ID": "FBgn0020240", "EGF_Stimulus": "1.1"}, {"ID": "FBgn0032140", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0039430", "EGF_Stimulus": "-0.23"}, {"ID": "FBgn0036036", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0030815", "EGF_Stimulus": "1.49"}, {"ID": "FBgn0026086", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0035956", "EGF_Stimulus": "1.02"}, {"ID": "FBgn0025615", "EGF_Stimulus": "-0.57"}, {"ID": "FBgn0038412", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0042126", "EGF_Stimulus": "-0.69"}, {"ID": "FBgn0035878", "EGF_Stimulus": "1.02"}, {"ID": "FBgn0038601", "EGF_Stimulus": "-1.56"}, {"ID": "FBgn0022935", "EGF_Stimulus": "-4.41"}, {"ID": "FBgn0030223", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0086687", "EGF_Stimulus": "-2.41"}, {"ID": "FBgn0035742", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0085454", "EGF_Stimulus": "-1.55"}, {"ID": "FBgn0037910", "EGF_Stimulus": "-2.3"}, {"ID": "FBgn0003486", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0037324", "EGF_Stimulus": "-1.14"}, {"ID": "FBgn0038196", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0030545", "EGF_Stimulus": "-0.7"}, {"ID": "FBgn0052374", "EGF_Stimulus": "0.06"}, {"ID": "FBgn0052548", "EGF_Stimulus": "1.26"}, {"ID": "FBgn0029679", "EGF_Stimulus": "0.23"}, {"ID": "FBgn0031032", "EGF_Stimulus": "0.21"}, {"ID": "FBgn0010042", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0004863", "EGF_Stimulus": "1.57"}, {"ID": "FBgn0039132", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0039271", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0031483", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0052571", "EGF_Stimulus": "-0.46"}, {"ID": "FBgn0002044", "EGF_Stimulus": "-0.83"}, {"ID": "FBgn0038316", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0011760", "EGF_Stimulus": "0.25"}, {"ID": "FBgn0035438", "EGF_Stimulus": "-0.89"}, {"ID": "FBgn0038292", "EGF_Stimulus": "1.21"}, {"ID": "FBgn0015818", "EGF_Stimulus": "1.28"}, {"ID": "FBgn0003720", "EGF_Stimulus": "1.09"}, {"ID": "FBgn0036043", "EGF_Stimulus": "-1.53"}, {"ID": "FBgn0259234", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0036988", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0034122", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0032420", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0021750", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0000552", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0051141", "EGF_Stimulus": "-0.15"}, {"ID": "FBgn0028990", "EGF_Stimulus": "1.15"}, {"ID": "FBgn0037724", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0035567", "EGF_Stimulus": "-0.67"}, {"ID": "FBgn0004647", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0036361", "EGF_Stimulus": "1.19"}, {"ID": "FBgn0002736", "EGF_Stimulus": "2.16"}, {"ID": "FBgn0036747", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0052579", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0034870", "EGF_Stimulus": "1.17"}, {"ID": "FBgn0036994", "EGF_Stimulus": "-1.02"}, {"ID": "FBgn0011785", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0037110", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0025463", "EGF_Stimulus": "-0.13"}, {"ID": "FBgn0028867", "EGF_Stimulus": "2.5"}, {"ID": "FBgn0031690", "EGF_Stimulus": "-0.56"}, {"ID": "FBgn0036696", "EGF_Stimulus": "1.43"}, {"ID": "FBgn0032205", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0051454", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0025866", "EGF_Stimulus": "1.21"}, {"ID": "FBgn0035443", "EGF_Stimulus": "1.46"}, {"ID": "FBgn0050414", "EGF_Stimulus": "-0.8"}, {"ID": "FBgn0036742", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0085437", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0026679", "EGF_Stimulus": "-1.7"}, {"ID": "FBgn0038979", "EGF_Stimulus": "1.15"}, {"ID": "FBgn0027568", "EGF_Stimulus": "1.45"}, {"ID": "FBgn0034474", "EGF_Stimulus": "-0.82"}, {"ID": "FBgn0039756", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0002891", "EGF_Stimulus": "-0.39"}, {"ID": "FBgn0038471", "EGF_Stimulus": "-0.32"}, {"ID": "FBgn0051092", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0031936", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0035632", "EGF_Stimulus": "-0.69"}, {"ID": "FBgn0082582", "EGF_Stimulus": "1.27"}, {"ID": "FBgn0024366", "EGF_Stimulus": "-1.4"}, {"ID": "FBgn0039259", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0032088", "EGF_Stimulus": "-1.56"}, {"ID": "FBgn0260776", "EGF_Stimulus": "-0.67"}, {"ID": "FBgn0029747", "EGF_Stimulus": "1.06"}, {"ID": "FBgn0022893", "EGF_Stimulus": "-1.08"}, {"ID": "FBgn0038733", "EGF_Stimulus": "-0.94"}, {"ID": "FBgn0039668", "EGF_Stimulus": "-0.02"}, {"ID": "FBgn0034346", "EGF_Stimulus": "0.21"}, {"ID": "FBgn0001075", "EGF_Stimulus": "1.47"}, {"ID": "FBgn0034529", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0033851", "EGF_Stimulus": "-0.4"}, {"ID": "FBgn0036301", "EGF_Stimulus": "-1.62"}, {"ID": "FBgn0029977", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0004841", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0032801", "EGF_Stimulus": "-1"}, {"ID": "FBgn0034468", "EGF_Stimulus": "2.27"}, {"ID": "FBgn0003656", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0085310", "EGF_Stimulus": "1.2"}, {"ID": "FBgn0052485", "EGF_Stimulus": "-1.6"}, {"ID": "FBgn0021818", "EGF_Stimulus": "-7.41"}, {"ID": "FBgn0039687", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0260985", "EGF_Stimulus": "-0.47"}, {"ID": "FBgn0031697", "EGF_Stimulus": "1.2"}, {"ID": "FBgn0052528", "EGF_Stimulus": "-0.69"}, {"ID": "FBgn0038465", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0032382", "EGF_Stimulus": "-1.25"}, {"ID": "FBgn0033124", "EGF_Stimulus": "-0.88"}, {"ID": "FBgn0034660", "EGF_Stimulus": "-1.5"}, {"ID": "FBgn0036397", "EGF_Stimulus": "0.26"}, {"ID": "FBgn0032442", "EGF_Stimulus": "-1.44"}, {"ID": "FBgn0032593", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0050037", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0034412", "EGF_Stimulus": "-1.17"}, {"ID": "FBgn0038693", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0028482", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0043025", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0037172", "EGF_Stimulus": "-0.61"}, {"ID": "FBgn0039487", "EGF_Stimulus": "-1.2"}, {"ID": "FBgn0033667", "EGF_Stimulus": "-0.67"}, {"ID": "FBgn0004629", "EGF_Stimulus": "-0.35"}, {"ID": "FBgn0031474", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0038788", "EGF_Stimulus": "0.01"}, {"ID": "FBgn0029514", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0052221", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0052177", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0031288", "EGF_Stimulus": "1.18"}, {"ID": "FBgn0030435", "EGF_Stimulus": "-0.47"}, {"ID": "FBgn0038134", "EGF_Stimulus": "-0.52"}, {"ID": "FBgn0033427", "EGF_Stimulus": "-0.94"}, {"ID": "FBgn0038984", "EGF_Stimulus": "-0.96"}, {"ID": "FBgn0030148", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0014850", "EGF_Stimulus": "0.22"}, {"ID": "FBgn0034046", "EGF_Stimulus": "-0.77"}, {"ID": "FBgn0037519", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0032709", "EGF_Stimulus": "1.67"}, {"ID": "FBgn0050169", "EGF_Stimulus": "1.17"}, {"ID": "FBgn0038225", "EGF_Stimulus": "-0.61"}, {"ID": "FBgn0026411", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0033453", "EGF_Stimulus": "2.83"}, {"ID": "FBgn0038950", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0029970", "EGF_Stimulus": "1.54"}, {"ID": "FBgn0039697", "EGF_Stimulus": "-0.89"}, {"ID": "FBgn0035186", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0013467", "EGF_Stimulus": "1.86"}, {"ID": "FBgn0015582", "EGF_Stimulus": "1.3"}, {"ID": "FBgn0022213", "EGF_Stimulus": "-1.61"}, {"ID": "FBgn0030001", "EGF_Stimulus": "1.04"}, {"ID": "FBgn0027291", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0034496", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0051051", "EGF_Stimulus": "1.86"}, {"ID": "FBgn0036501", "EGF_Stimulus": "-1.38"}, {"ID": "FBgn0037613", "EGF_Stimulus": "1.21"}, {"ID": "FBgn0085217", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0004698", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0036551", "EGF_Stimulus": "1.27"}, {"ID": "FBgn0051858", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0013746", "EGF_Stimulus": "1.42"}, {"ID": "FBgn0259224", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0051072", "EGF_Stimulus": "1.21"}, {"ID": "FBgn0015075", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0010520", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0043070", "EGF_Stimulus": "0.96"}, {"ID": "FBgn0034231", "EGF_Stimulus": "-0.46"}, {"ID": "FBgn0040031", "EGF_Stimulus": "2.38"}, {"ID": "FBgn0050052", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0030631", "EGF_Stimulus": "0.14"}, {"ID": "FBgn0035084", "EGF_Stimulus": "-0.43"}, {"ID": "FBgn0034560", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0036203", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0043854", "EGF_Stimulus": "2.41"}, {"ID": "FBgn0015247", "EGF_Stimulus": "1.19"}, {"ID": "FBgn0051785", "EGF_Stimulus": "-0.97"}, {"ID": "FBgn0035571", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0039776", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0011016", "EGF_Stimulus": "-1.13"}, {"ID": "FBgn0039882", "EGF_Stimulus": "-0.55"}, {"ID": "FBgn0033439", "EGF_Stimulus": "-0.32"}, {"ID": "FBgn0041238", "EGF_Stimulus": "0.3"}, {"ID": "FBgn0039451", "EGF_Stimulus": "1.68"}, {"ID": "FBgn0036382", "EGF_Stimulus": "-0.61"}, {"ID": "FBgn0041246", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0035216", "EGF_Stimulus": "-0.25"}, {"ID": "FBgn0004622", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0035371", "EGF_Stimulus": "-0.43"}, {"ID": "FBgn0261267", "EGF_Stimulus": "-0.93"}, {"ID": "FBgn0030006", "EGF_Stimulus": "1.02"}, {"ID": "FBgn0034033", "EGF_Stimulus": "1.37"}, {"ID": "FBgn0036320", "EGF_Stimulus": "-0.33"}, {"ID": "FBgn0039099", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0011596", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0033296", "EGF_Stimulus": "-0.76"}, {"ID": "FBgn0040020", "EGF_Stimulus": "1.26"}, {"ID": "FBgn0026181", "EGF_Stimulus": "-0.66"}, {"ID": "FBgn0040795", "EGF_Stimulus": "-0.33"}, {"ID": "FBgn0053208", "EGF_Stimulus": "-1.63"}, {"ID": "FBgn0002856", "EGF_Stimulus": "-0.6"}, {"ID": "FBgn0025335", "EGF_Stimulus": "3.88"}, {"ID": "FBgn0037338", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0032125", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0031299", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0038095", "EGF_Stimulus": "2.33"}, {"ID": "FBgn0038768", "EGF_Stimulus": "1.83"}, {"ID": "FBgn0011832", "EGF_Stimulus": "1.17"}, {"ID": "FBgn0051262", "EGF_Stimulus": "-1.15"}, {"ID": "FBgn0037718", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0036908", "EGF_Stimulus": "1.2"}, {"ID": "FBgn0031157", "EGF_Stimulus": "1.84"}, {"ID": "FBgn0023091", "EGF_Stimulus": "1.18"}, {"ID": "FBgn0038865", "EGF_Stimulus": "-1.9"}, {"ID": "FBgn0032453", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0051030", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0003372", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0051973", "EGF_Stimulus": "-1.67"}, {"ID": "FBgn0031602", "EGF_Stimulus": "-0.55"}, {"ID": "FBgn0039690", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0034366", "EGF_Stimulus": "1.24"}, {"ID": "FBgn0038740", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0034727", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0085427", "EGF_Stimulus": "-0.61"}, {"ID": "FBgn0033605", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0033721", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0039582", "EGF_Stimulus": "-0.76"}, {"ID": "FBgn0002863", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0034206", "EGF_Stimulus": "-1.49"}, {"ID": "FBgn0033579", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0051081", "EGF_Stimulus": "-0.83"}, {"ID": "FBgn0016059", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0011742", "EGF_Stimulus": "-0.99"}, {"ID": "FBgn0040362", "EGF_Stimulus": "-0.31"}, {"ID": "FBgn0004228", "EGF_Stimulus": "-1.09"}, {"ID": "FBgn0034284", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0002973", "EGF_Stimulus": "0.2"}, {"ID": "FBgn0039149", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0030246", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0034859", "EGF_Stimulus": "-0.34"}, {"ID": "FBgn0036059", "EGF_Stimulus": "-0.24"}, {"ID": "FBgn0030244", "EGF_Stimulus": "1.09"}, {"ID": "FBgn0001941", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0033871", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0020412", "EGF_Stimulus": "1.96"}, {"ID": "FBgn0033449", "EGF_Stimulus": "1.31"}, {"ID": "FBgn0045468", "EGF_Stimulus": "-0.17"}, {"ID": "FBgn0004512", "EGF_Stimulus": "-1.11"}, {"ID": "FBgn0037270", "EGF_Stimulus": "-2.75"}, {"ID": "FBgn0029996", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0037996", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0024989", "EGF_Stimulus": "1.29"}, {"ID": "FBgn0023506", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0003046", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0003882", "EGF_Stimulus": "1.68"}, {"ID": "FBgn0038814", "EGF_Stimulus": "-0.89"}, {"ID": "FBgn0261394", "EGF_Stimulus": "-1.08"}, {"ID": "FBgn0050062", "EGF_Stimulus": "-1.04"}, {"ID": "FBgn0037473", "EGF_Stimulus": "1.42"}, {"ID": "FBgn0050432", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0032072", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0058053", "EGF_Stimulus": "-1.14"}, {"ID": "FBgn0039406", "EGF_Stimulus": "-0.31"}, {"ID": "FBgn0013983", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0032642", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0041100", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0051606", "EGF_Stimulus": "-0.48"}, {"ID": "FBgn0085362", "EGF_Stimulus": "-0.88"}, {"ID": "FBgn0037750", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0039213", "EGF_Stimulus": "0.27"}, {"ID": "FBgn0034485", "EGF_Stimulus": "-0.64"}, {"ID": "FBgn0037117", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0010303", "EGF_Stimulus": "1.54"}, {"ID": "FBgn0023179", "EGF_Stimulus": "1.44"}, {"ID": "FBgn0038565", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0030808", "EGF_Stimulus": "-1.49"}, {"ID": "FBgn0036926", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0031772", "EGF_Stimulus": "2"}, {"ID": "FBgn0013531", "EGF_Stimulus": "-0.89"}, {"ID": "FBgn0032835", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0036258", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0036192", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0001235", "EGF_Stimulus": "-0.3"}, {"ID": "FBgn0036686", "EGF_Stimulus": "-1.48"}, {"ID": "FBgn0034659", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0045443", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0035768", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0024998", "EGF_Stimulus": "-1.54"}, {"ID": "FBgn0032649", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0031536", "EGF_Stimulus": "-1.47"}, {"ID": "FBgn0036641", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0025740", "EGF_Stimulus": "-0.35"}, {"ID": "FBgn0002306", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0028961", "EGF_Stimulus": "1.45"}, {"ID": "FBgn0004924", "EGF_Stimulus": "-2.08"}, {"ID": "FBgn0025558", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0037046", "EGF_Stimulus": "-0.83"}, {"ID": "FBgn0031108", "EGF_Stimulus": "-1.45"}, {"ID": "FBgn0030261", "EGF_Stimulus": "1.29"}, {"ID": "FBgn0033095", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0038124", "EGF_Stimulus": "-0.05"}, {"ID": "FBgn0005671", "EGF_Stimulus": "-1.09"}, {"ID": "FBgn0051803", "EGF_Stimulus": "1.41"}, {"ID": "FBgn0041181", "EGF_Stimulus": "1.8"}, {"ID": "FBgn0014018", "EGF_Stimulus": "2.58"}, {"ID": "FBgn0035103", "EGF_Stimulus": "-0.89"}, {"ID": "FBgn0013548", "EGF_Stimulus": "2.81"}, {"ID": "FBgn0051010", "EGF_Stimulus": "-1.05"}, {"ID": "FBgn0050424", "EGF_Stimulus": "-0.78"}, {"ID": "FBgn0030207", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0028532", "EGF_Stimulus": "0.16"}, {"ID": "FBgn0261479", "EGF_Stimulus": "-0.24"}, {"ID": "FBgn0039703", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0005391", "EGF_Stimulus": "0.22"}, {"ID": "FBgn0022770", "EGF_Stimulus": "-0.22"}, {"ID": "FBgn0028837", "EGF_Stimulus": "1.43"}, {"ID": "FBgn0027608", "EGF_Stimulus": "1.62"}, {"ID": "FBgn0034599", "EGF_Stimulus": "-1.01"}, {"ID": "FBgn0034459", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0027081", "EGF_Stimulus": "-0.88"}, {"ID": "FBgn0039177", "EGF_Stimulus": "-0.26"}, {"ID": "FBgn0003683", "EGF_Stimulus": "-0.48"}, {"ID": "FBgn0036967", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0035612", "EGF_Stimulus": "1.72"}, {"ID": "FBgn0054011", "EGF_Stimulus": "-0.31"}, {"ID": "FBgn0038008", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0053461", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0035132", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0031430", "EGF_Stimulus": "1.33"}, {"ID": "FBgn0052160", "EGF_Stimulus": "1.17"}, {"ID": "FBgn0031045", "EGF_Stimulus": "-0.77"}, {"ID": "FBgn0036906", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0028880", "EGF_Stimulus": "1.18"}, {"ID": "FBgn0031119", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0033728", "EGF_Stimulus": "2.08"}, {"ID": "FBgn0003977", "EGF_Stimulus": "-0.79"}, {"ID": "FBgn0030852", "EGF_Stimulus": "-0.43"}, {"ID": "FBgn0036892", "EGF_Stimulus": "-0.54"}, {"ID": "FBgn0037024", "EGF_Stimulus": "-0.16"}, {"ID": "FBgn0011723", "EGF_Stimulus": "-0.66"}, {"ID": "FBgn0028408", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0035875", "EGF_Stimulus": "-0.29"}, {"ID": "FBgn0040743", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0030528", "EGF_Stimulus": "1.2"}, {"ID": "FBgn0038944", "EGF_Stimulus": "1.24"}, {"ID": "FBgn0027090", "EGF_Stimulus": "1.38"}, {"ID": "FBgn0031580", "EGF_Stimulus": "-0.77"}, {"ID": "FBgn0051226", "EGF_Stimulus": "-1.59"}, {"ID": "FBgn0033526", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0037816", "EGF_Stimulus": "-1.5"}, {"ID": "FBgn0053527", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0036015", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0002780", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0038079", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0031558", "EGF_Stimulus": "1.05"}, {"ID": "FBgn0051221", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0034758", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0038527", "EGF_Stimulus": "1.06"}, {"ID": "FBgn0037737", "EGF_Stimulus": "0.21"}, {"ID": "FBgn0031830", "EGF_Stimulus": "-0.83"}, {"ID": "FBgn0034073", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0053260", "EGF_Stimulus": "-1.37"}, {"ID": "FBgn0030701", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0038452", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0038083", "EGF_Stimulus": "2"}, {"ID": "FBgn0036888", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0034194", "EGF_Stimulus": "1.28"}, {"ID": "FBgn0039680", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0029963", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0054032", "EGF_Stimulus": "-1.39"}, {"ID": "FBgn0032848", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0032913", "EGF_Stimulus": "1.1"}, {"ID": "FBgn0035587", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0028292", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0032131", "EGF_Stimulus": "-0.77"}, {"ID": "FBgn0029095", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0032235", "EGF_Stimulus": "-1.12"}, {"ID": "FBgn0031855", "EGF_Stimulus": "0.23"}, {"ID": "FBgn0037031", "EGF_Stimulus": "1.99"}, {"ID": "FBgn0039531", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0025571", "EGF_Stimulus": "1.22"}, {"ID": "FBgn0039140", "EGF_Stimulus": "-0.52"}, {"ID": "FBgn0035546", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0035951", "EGF_Stimulus": "0.02"}, {"ID": "FBgn0035816", "EGF_Stimulus": "-0.74"}, {"ID": "FBgn0044051", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0035158", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0036343", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0051048", "EGF_Stimulus": "-0.91"}, {"ID": "FBgn0031574", "EGF_Stimulus": "-0.79"}, {"ID": "FBgn0032248", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0040730", "EGF_Stimulus": "-1.61"}, {"ID": "FBgn0035673", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0015905", "EGF_Stimulus": "0.1"}, {"ID": "FBgn0039969", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0034507", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0012058", "EGF_Stimulus": "-4.71"}, {"ID": "FBgn0032433", "EGF_Stimulus": "-0.56"}, {"ID": "FBgn0085294", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0004510", "EGF_Stimulus": "-0.61"}, {"ID": "FBgn0037004", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0003965", "EGF_Stimulus": "-1.12"}, {"ID": "FBgn0002561", "EGF_Stimulus": "-0.39"}, {"ID": "FBgn0085409", "EGF_Stimulus": "1.18"}, {"ID": "FBgn0032372", "EGF_Stimulus": "1.67"}, {"ID": "FBgn0033352", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0000283", "EGF_Stimulus": "-1.55"}, {"ID": "FBgn0002924", "EGF_Stimulus": "-1.14"}, {"ID": "FBgn0260964", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0051201", "EGF_Stimulus": "-1.11"}, {"ID": "FBgn0250820", "EGF_Stimulus": "1.32"}, {"ID": "FBgn0000303", "EGF_Stimulus": "-1.73"}, {"ID": "FBgn0033359", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0028474", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0034495", "EGF_Stimulus": "-0.6"}, {"ID": "FBgn0025631", "EGF_Stimulus": "1.09"}, {"ID": "FBgn0002989", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0031495", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0033756", "EGF_Stimulus": "1.52"}, {"ID": "FBgn0052683", "EGF_Stimulus": "-0.62"}, {"ID": "FBgn0259824", "EGF_Stimulus": "1.48"}, {"ID": "FBgn0035777", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0027796", "EGF_Stimulus": "0.27"}, {"ID": "FBgn0028872", "EGF_Stimulus": "1.34"}, {"ID": "FBgn0032400", "EGF_Stimulus": "-5.65"}, {"ID": "FBgn0036290", "EGF_Stimulus": "-0.14"}, {"ID": "FBgn0033000", "EGF_Stimulus": "-0.82"}, {"ID": "FBgn0260742", "EGF_Stimulus": "1.39"}, {"ID": "FBgn0260962", "EGF_Stimulus": "-2.05"}, {"ID": "FBgn0039592", "EGF_Stimulus": "-0.12"}, {"ID": "FBgn0028496", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0035234", "EGF_Stimulus": "-0.63"}, {"ID": "FBgn0261675", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0052305", "EGF_Stimulus": "-0.07"}, {"ID": "FBgn0034897", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0035423", "EGF_Stimulus": "1.3"}, {"ID": "FBgn0000392", "EGF_Stimulus": "-0.39"}, {"ID": "FBgn0033710", "EGF_Stimulus": "-1.27"}, {"ID": "FBgn0051823", "EGF_Stimulus": "-0.47"}, {"ID": "FBgn0033718", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0004400", "EGF_Stimulus": "-0.78"}, {"ID": "FBgn0052409", "EGF_Stimulus": "-0.52"}, {"ID": "FBgn0000405", "EGF_Stimulus": "3.18"}, {"ID": "FBgn0053307", "EGF_Stimulus": "1.17"}, {"ID": "FBgn0030100", "EGF_Stimulus": "1.03"}, {"ID": "FBgn0029714", "EGF_Stimulus": "-0.03"}, {"ID": "FBgn0031318", "EGF_Stimulus": "1.2"}, {"ID": "FBgn0051345", "EGF_Stimulus": "1.9"}, {"ID": "FBgn0037902", "EGF_Stimulus": "0.94"}, {"ID": "FBgn0259678", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0038716", "EGF_Stimulus": "1.15"}, {"ID": "FBgn0030485", "EGF_Stimulus": "-0.74"}, {"ID": "FBgn0045843", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0039820", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0030803", "EGF_Stimulus": "-0.7"}, {"ID": "FBgn0261682", "EGF_Stimulus": "-1.13"}, {"ID": "FBgn0015550", "EGF_Stimulus": "-1.97"}, {"ID": "FBgn0031725", "EGF_Stimulus": "1.12"}, {"ID": "FBgn0000615", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0036973", "EGF_Stimulus": "-0.23"}, {"ID": "FBgn0032315", "EGF_Stimulus": "-0.7"}, {"ID": "FBgn0051019", "EGF_Stimulus": "-0.98"}, {"ID": "FBgn0053265", "EGF_Stimulus": "1.15"}, {"ID": "FBgn0039417", "EGF_Stimulus": "1.33"}, {"ID": "FBgn0035258", "EGF_Stimulus": "-0.74"}, {"ID": "FBgn0030158", "EGF_Stimulus": "-1.83"}, {"ID": "FBgn0010406", "EGF_Stimulus": "-0.78"}, {"ID": "FBgn0033627", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0016794", "EGF_Stimulus": "-0.18"}, {"ID": "FBgn0036730", "EGF_Stimulus": "-1.2"}, {"ID": "FBgn0017545", "EGF_Stimulus": "-3.58"}, {"ID": "FBgn0010287", "EGF_Stimulus": "1.23"}, {"ID": "FBgn0031945", "EGF_Stimulus": "0.94"}, {"ID": "FBgn0028645", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0040396", "EGF_Stimulus": "0.94"}, {"ID": "FBgn0261564", "EGF_Stimulus": "1.5"}, {"ID": "FBgn0050271", "EGF_Stimulus": "1.23"}, {"ID": "FBgn0026777", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0000339", "EGF_Stimulus": "-0.99"}, {"ID": "FBgn0000229", "EGF_Stimulus": "1"}, {"ID": "FBgn0034716", "EGF_Stimulus": "-0.34"}, {"ID": "FBgn0039054", "EGF_Stimulus": "-1.2"}, {"ID": "FBgn0031542", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0035233", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0037086", "EGF_Stimulus": "0.3"}, {"ID": "FBgn0010015", "EGF_Stimulus": "0.25"}, {"ID": "FBgn0016930", "EGF_Stimulus": "1.24"}, {"ID": "FBgn0031195", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0039461", "EGF_Stimulus": "-0.55"}, {"ID": "FBgn0087013", "EGF_Stimulus": "-2.35"}, {"ID": "FBgn0034405", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0011284", "EGF_Stimulus": "-2.92"}, {"ID": "FBgn0039371", "EGF_Stimulus": "1.65"}, {"ID": "FBgn0037759", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0001206", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0037521", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0050484", "EGF_Stimulus": "-0.46"}, {"ID": "FBgn0036784", "EGF_Stimulus": "1.21"}, {"ID": "FBgn0050268", "EGF_Stimulus": "-1.23"}, {"ID": "FBgn0033376", "EGF_Stimulus": "-0.91"}, {"ID": "FBgn0053013", "EGF_Stimulus": "-0.6"}, {"ID": "FBgn0040687", "EGF_Stimulus": "1.15"}, {"ID": "FBgn0050491", "EGF_Stimulus": "-1.65"}, {"ID": "FBgn0025457", "EGF_Stimulus": "-1.42"}, {"ID": "FBgn0261458", "EGF_Stimulus": "1.01"}, {"ID": "FBgn0261649", "EGF_Stimulus": "-0.72"}, {"ID": "FBgn0038404", "EGF_Stimulus": "9.19"}, {"ID": "FBgn0033049", "EGF_Stimulus": "-0.67"}, {"ID": "FBgn0053189", "EGF_Stimulus": "1.2"}, {"ID": "FBgn0000042", "EGF_Stimulus": "-1.67"}, {"ID": "FBgn0039170", "EGF_Stimulus": "-0.86"}, {"ID": "FBgn0003889", "EGF_Stimulus": "1.4"}, {"ID": "FBgn0031256", "EGF_Stimulus": "-1.46"}, {"ID": "FBgn0030455", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0037124", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0032814", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0028539", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0053289", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0085446", "EGF_Stimulus": "1.01"}, {"ID": "FBgn0032304", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0031405", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0034706", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0020762", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0036536", "EGF_Stimulus": "1.26"}, {"ID": "FBgn0031163", "EGF_Stimulus": "0.03"}, {"ID": "FBgn0030360", "EGF_Stimulus": "1.81"}, {"ID": "FBgn0036828", "EGF_Stimulus": "3.09"}, {"ID": "FBgn0035499", "EGF_Stimulus": "-0.95"}, {"ID": "FBgn0030935", "EGF_Stimulus": "1.03"}, {"ID": "FBgn0036999", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0033763", "EGF_Stimulus": "-0.35"}, {"ID": "FBgn0040078", "EGF_Stimulus": "-2.88"}, {"ID": "FBgn0017549", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0052064", "EGF_Stimulus": "1.04"}, {"ID": "FBgn0034737", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0032967", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0261401", "EGF_Stimulus": "1.21"}, {"ID": "FBgn0030960", "EGF_Stimulus": "-0.23"}, {"ID": "FBgn0038369", "EGF_Stimulus": "-0.54"}, {"ID": "FBgn0030599", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0029834", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0015391", "EGF_Stimulus": "1.71"}, {"ID": "FBgn0050373", "EGF_Stimulus": "1.26"}, {"ID": "FBgn0038148", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0023181", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0028988", "EGF_Stimulus": "-2.3"}, {"ID": "FBgn0030613", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0001105", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0033639", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0038334", "EGF_Stimulus": "-1.43"}, {"ID": "FBgn0261380", "EGF_Stimulus": "-0.1"}, {"ID": "FBgn0031746", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0030389", "EGF_Stimulus": "-0.14"}, {"ID": "FBgn0086910", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0035227", "EGF_Stimulus": "-0.95"}, {"ID": "FBgn0085290", "EGF_Stimulus": "-0.32"}, {"ID": "FBgn0031054", "EGF_Stimulus": "1.4"}, {"ID": "FBgn0037917", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0051407", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0031918", "EGF_Stimulus": "1.66"}, {"ID": "FBgn0026563", "EGF_Stimulus": "-0.73"}, {"ID": "FBgn0019990", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0031733", "EGF_Stimulus": "1.79"}, {"ID": "FBgn0030321", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0035262", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0037094", "EGF_Stimulus": "-1.35"}, {"ID": "FBgn0033076", "EGF_Stimulus": "-1.8"}, {"ID": "FBgn0038460", "EGF_Stimulus": "-0.69"}, {"ID": "FBgn0053770", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0037809", "EGF_Stimulus": "-1.05"}, {"ID": "FBgn0038593", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0261109", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0004654", "EGF_Stimulus": "0.25"}, {"ID": "FBgn0032615", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0050177", "EGF_Stimulus": "-1.19"}, {"ID": "FBgn0031110", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0038248", "EGF_Stimulus": "-0.21"}, {"ID": "FBgn0053128", "EGF_Stimulus": "-1.88"}, {"ID": "FBgn0030297", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0010421", "EGF_Stimulus": "-0.39"}, {"ID": "FBgn0037943", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0036717", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0029947", "EGF_Stimulus": "-0.56"}, {"ID": "FBgn0037781", "EGF_Stimulus": "-0.84"}, {"ID": "FBgn0029580", "EGF_Stimulus": "-0.21"}, {"ID": "FBgn0039462", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0034314", "EGF_Stimulus": "0.25"}, {"ID": "FBgn0037076", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0040890", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0039709", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0261641", "EGF_Stimulus": "-2.26"}, {"ID": "FBgn0032554", "EGF_Stimulus": "1.21"}, {"ID": "FBgn0020236", "EGF_Stimulus": "-0.39"}, {"ID": "FBgn0038013", "EGF_Stimulus": "1.29"}, {"ID": "FBgn0032682", "EGF_Stimulus": "0.96"}, {"ID": "FBgn0030696", "EGF_Stimulus": "-1.45"}, {"ID": "FBgn0051198", "EGF_Stimulus": "1.31"}, {"ID": "FBgn0037573", "EGF_Stimulus": "-3.15"}, {"ID": "FBgn0039563", "EGF_Stimulus": "-0.81"}, {"ID": "FBgn0261617", "EGF_Stimulus": "3.64"}, {"ID": "FBgn0039474", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0034886", "EGF_Stimulus": "0.26"}, {"ID": "FBgn0035390", "EGF_Stimulus": "1.52"}, {"ID": "FBgn0038837", "EGF_Stimulus": "1.03"}, {"ID": "FBgn0050281", "EGF_Stimulus": "-1.7"}, {"ID": "FBgn0040385", "EGF_Stimulus": "-0.26"}, {"ID": "FBgn0031684", "EGF_Stimulus": "-1.26"}, {"ID": "FBgn0010241", "EGF_Stimulus": "-1.1"}, {"ID": "FBgn0052056", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0016122", "EGF_Stimulus": "1.38"}, {"ID": "FBgn0000541", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0040892", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0053552", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0036790", "EGF_Stimulus": "1.11"}, {"ID": "FBgn0036090", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0039536", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0032822", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0030969", "EGF_Stimulus": "2.38"}, {"ID": "FBgn0039050", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0034693", "EGF_Stimulus": "1.11"}, {"ID": "FBgn0036368", "EGF_Stimulus": "0.17"}, {"ID": "FBgn0052185", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0040929", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0016061", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0052201", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0002775", "EGF_Stimulus": "-0.33"}, {"ID": "FBgn0041156", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0038052", "EGF_Stimulus": "-0.3"}, {"ID": "FBgn0050359", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0037327", "EGF_Stimulus": "2.51"}, {"ID": "FBgn0261549", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0030810", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0035069", "EGF_Stimulus": "-0.67"}, {"ID": "FBgn0037986", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0029693", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0035996", "EGF_Stimulus": "-0.96"}, {"ID": "FBgn0028509", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0046999", "EGF_Stimulus": "0.26"}, {"ID": "FBgn0038725", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0034743", "EGF_Stimulus": "-2.45"}, {"ID": "FBgn0034183", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0035838", "EGF_Stimulus": "1.43"}, {"ID": "FBgn0035400", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0033985", "EGF_Stimulus": "1.22"}, {"ID": "FBgn0032018", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0027866", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0004956", "EGF_Stimulus": "1.14"}, {"ID": "FBgn0026250", "EGF_Stimulus": "-2.34"}, {"ID": "FBgn0027578", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0034614", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0037885", "EGF_Stimulus": "-1.1"}, {"ID": "FBgn0003334", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0017430", "EGF_Stimulus": "-1.17"}, {"ID": "FBgn0044323", "EGF_Stimulus": "-2.34"}, {"ID": "FBgn0000356", "EGF_Stimulus": "1.22"}, {"ID": "FBgn0004179", "EGF_Stimulus": "-0.82"}, {"ID": "FBgn0083942", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0002566", "EGF_Stimulus": "-0.59"}, {"ID": "FBgn0039356", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0032480", "EGF_Stimulus": "-1.27"}, {"ID": "FBgn0034063", "EGF_Stimulus": "1.5"}, {"ID": "FBgn0025383", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0038078", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0053113", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0031718", "EGF_Stimulus": "-0.69"}, {"ID": "FBgn0000464", "EGF_Stimulus": "1.17"}, {"ID": "FBgn0033934", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0085246", "EGF_Stimulus": "1.06"}, {"ID": "FBgn0003733", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0034788", "EGF_Stimulus": "1.77"}, {"ID": "FBgn0086361", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0034612", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0052115", "EGF_Stimulus": "-0.98"}, {"ID": "FBgn0037601", "EGF_Stimulus": "-0.56"}, {"ID": "FBgn0010408", "EGF_Stimulus": "-3.71"}, {"ID": "FBgn0035770", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0051281", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0039850", "EGF_Stimulus": "-0.82"}, {"ID": "FBgn0028943", "EGF_Stimulus": "-0.28"}, {"ID": "FBgn0033128", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0052279", "EGF_Stimulus": "-0.61"}, {"ID": "FBgn0250732", "EGF_Stimulus": "-1.24"}, {"ID": "FBgn0011361", "EGF_Stimulus": "-0.23"}, {"ID": "FBgn0025741", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0040608", "EGF_Stimulus": "-0.16"}, {"ID": "FBgn0002590", "EGF_Stimulus": "-1.9"}, {"ID": "FBgn0033457", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0029167", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0030532", "EGF_Stimulus": "-1.1"}, {"ID": "FBgn0040390", "EGF_Stimulus": "1.47"}, {"ID": "FBgn0033202", "EGF_Stimulus": "1.21"}, {"ID": "FBgn0024732", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0031951", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0261387", "EGF_Stimulus": "-0.13"}, {"ID": "FBgn0051678", "EGF_Stimulus": "-1.11"}, {"ID": "FBgn0033542", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0016977", "EGF_Stimulus": "1.29"}, {"ID": "FBgn0038028", "EGF_Stimulus": "0.1"}, {"ID": "FBgn0034920", "EGF_Stimulus": "-1.61"}, {"ID": "FBgn0029828", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0038611", "EGF_Stimulus": "-0.35"}, {"ID": "FBgn0036638", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0032849", "EGF_Stimulus": "-1.7"}, {"ID": "FBgn0003862", "EGF_Stimulus": "2.23"}, {"ID": "FBgn0001970", "EGF_Stimulus": "-0.97"}, {"ID": "FBgn0029800", "EGF_Stimulus": "-0.97"}, {"ID": "FBgn0038067", "EGF_Stimulus": "-0.59"}, {"ID": "FBgn0032180", "EGF_Stimulus": "-1.34"}, {"ID": "FBgn0031526", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0015338", "EGF_Stimulus": "-1.29"}, {"ID": "FBgn0026439", "EGF_Stimulus": "-0.66"}, {"ID": "FBgn0023540", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0028707", "EGF_Stimulus": "-0.64"}, {"ID": "FBgn0024975", "EGF_Stimulus": "1.01"}, {"ID": "FBgn0035300", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0037038", "EGF_Stimulus": "-0.83"}, {"ID": "FBgn0010387", "EGF_Stimulus": "0.26"}, {"ID": "FBgn0051547", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0038943", "EGF_Stimulus": "-1.08"}, {"ID": "FBgn0001983", "EGF_Stimulus": "-1.09"}, {"ID": "FBgn0052591", "EGF_Stimulus": "-0.65"}, {"ID": "FBgn0034131", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0016984", "EGF_Stimulus": "-1.45"}, {"ID": "FBgn0034731", "EGF_Stimulus": "-0.09"}, {"ID": "FBgn0032773", "EGF_Stimulus": "1.76"}, {"ID": "FBgn0034877", "EGF_Stimulus": "-0.78"}, {"ID": "FBgn0035575", "EGF_Stimulus": "0.17"}, {"ID": "FBgn0031753", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0020392", "EGF_Stimulus": "0.27"}, {"ID": "FBgn0033962", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0038100", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0046698", "EGF_Stimulus": "-0.75"}, {"ID": "FBgn0051988", "EGF_Stimulus": "1.63"}, {"ID": "FBgn0036928", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0050479", "EGF_Stimulus": "-0.28"}, {"ID": "FBgn0026430", "EGF_Stimulus": "-0.72"}, {"ID": "FBgn0029170", "EGF_Stimulus": "1.36"}, {"ID": "FBgn0038545", "EGF_Stimulus": "-1.57"}, {"ID": "FBgn0031065", "EGF_Stimulus": "-0.19"}, {"ID": "FBgn0053278", "EGF_Stimulus": "-0.37"}, {"ID": "FBgn0052248", "EGF_Stimulus": "-0.77"}, {"ID": "FBgn0013334", "EGF_Stimulus": "2.52"}, {"ID": "FBgn0031970", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0033972", "EGF_Stimulus": "0.25"}, {"ID": "FBgn0039120", "EGF_Stimulus": "-1.84"}, {"ID": "FBgn0259171", "EGF_Stimulus": "-0.69"}, {"ID": "FBgn0038888", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0032914", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0030087", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0053121", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0030597", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0029854", "EGF_Stimulus": "1.6"}, {"ID": "FBgn0036942", "EGF_Stimulus": "-0.43"}, {"ID": "FBgn0028997", "EGF_Stimulus": "-0.77"}, {"ID": "FBgn0031630", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0053476", "EGF_Stimulus": "1.2"}, {"ID": "FBgn0051109", "EGF_Stimulus": "-0.69"}, {"ID": "FBgn0032938", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0034793", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0024558", "EGF_Stimulus": "1.1"}, {"ID": "FBgn0040491", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0052652", "EGF_Stimulus": "-1.16"}, {"ID": "FBgn0037391", "EGF_Stimulus": "-0.65"}, {"ID": "FBgn0032477", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0025684", "EGF_Stimulus": "1.2"}, {"ID": "FBgn0005590", "EGF_Stimulus": "-0.77"}, {"ID": "FBgn0038753", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0034274", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0032082", "EGF_Stimulus": "-0.34"}, {"ID": "FBgn0037654", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0038217", "EGF_Stimulus": "1.19"}, {"ID": "FBgn0037661", "EGF_Stimulus": "1.91"}, {"ID": "FBgn0039335", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0043576", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0032654", "EGF_Stimulus": "1.25"}, {"ID": "FBgn0024957", "EGF_Stimulus": "1.55"}, {"ID": "FBgn0042135", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0051028", "EGF_Stimulus": "-0.29"}, {"ID": "FBgn0034638", "EGF_Stimulus": "-0.69"}, {"ID": "FBgn0051501", "EGF_Stimulus": "-0.81"}, {"ID": "FBgn0045770", "EGF_Stimulus": "1.87"}, {"ID": "FBgn0038828", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0035521", "EGF_Stimulus": "-0.08"}, {"ID": "FBgn0085276", "EGF_Stimulus": "-0.83"}, {"ID": "FBgn0050369", "EGF_Stimulus": "-1.22"}, {"ID": "FBgn0030742", "EGF_Stimulus": "-1.14"}, {"ID": "FBgn0260794", "EGF_Stimulus": "1.25"}, {"ID": "FBgn0033547", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0039839", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0259743", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0031720", "EGF_Stimulus": "-1.24"}, {"ID": "FBgn0030356", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0031437", "EGF_Stimulus": "-1.01"}, {"ID": "FBgn0033265", "EGF_Stimulus": "0.16"}, {"ID": "FBgn0015781", "EGF_Stimulus": "-0.24"}, {"ID": "FBgn0004832", "EGF_Stimulus": "-0.56"}, {"ID": "FBgn0034117", "EGF_Stimulus": "-1.15"}, {"ID": "FBgn0086656", "EGF_Stimulus": "-2.08"}, {"ID": "FBgn0001084", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0061476", "EGF_Stimulus": "-0.26"}, {"ID": "FBgn0033979", "EGF_Stimulus": "-0.55"}, {"ID": "FBgn0020443", "EGF_Stimulus": "-0.8"}, {"ID": "FBgn0039419", "EGF_Stimulus": "-0.59"}, {"ID": "FBgn0031985", "EGF_Stimulus": "-1.04"}, {"ID": "FBgn0032987", "EGF_Stimulus": "-4.18"}, {"ID": "FBgn0031779", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0038332", "EGF_Stimulus": "1.92"}, {"ID": "FBgn0029174", "EGF_Stimulus": "0.16"}, {"ID": "FBgn0032296", "EGF_Stimulus": "-1.69"}, {"ID": "FBgn0030801", "EGF_Stimulus": "-1.17"}, {"ID": "FBgn0051102", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0027111", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0034835", "EGF_Stimulus": "-0.14"}, {"ID": "FBgn0052062", "EGF_Stimulus": "-0.46"}, {"ID": "FBgn0259744", "EGF_Stimulus": "-0.62"}, {"ID": "FBgn0051924", "EGF_Stimulus": "1.1"}, {"ID": "FBgn0035600", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0053214", "EGF_Stimulus": "-0.57"}, {"ID": "FBgn0019947", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0032901", "EGF_Stimulus": "3.39"}, {"ID": "FBgn0039386", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0027654", "EGF_Stimulus": "1.02"}, {"ID": "FBgn0037332", "EGF_Stimulus": "-1.14"}, {"ID": "FBgn0065108", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0036842", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0013949", "EGF_Stimulus": "1.42"}, {"ID": "FBgn0030780", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0035374", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0015331", "EGF_Stimulus": "1.44"}, {"ID": "FBgn0040765", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0030678", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0031548", "EGF_Stimulus": "1.21"}, {"ID": "FBgn0039160", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0031086", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0029812", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0053517", "EGF_Stimulus": "-0.67"}, {"ID": "FBgn0066365", "EGF_Stimulus": "1.39"}, {"ID": "FBgn0037892", "EGF_Stimulus": "0.14"}, {"ID": "FBgn0031248", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0034084", "EGF_Stimulus": "1.94"}, {"ID": "FBgn0032398", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0037770", "EGF_Stimulus": "2.06"}, {"ID": "FBgn0041780", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0032435", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0003449", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0037506", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0052985", "EGF_Stimulus": "0.03"}, {"ID": "FBgn0052793", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0015240", "EGF_Stimulus": "-1.45"}, {"ID": "FBgn0038203", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0031005", "EGF_Stimulus": "-0.46"}, {"ID": "FBgn0261786", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0038484", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0036279", "EGF_Stimulus": "-0.63"}, {"ID": "FBgn0032472", "EGF_Stimulus": "1.11"}, {"ID": "FBgn0000635", "EGF_Stimulus": "1.98"}, {"ID": "FBgn0041004", "EGF_Stimulus": "1.11"}, {"ID": "FBgn0038917", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0051752", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0031654", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0035143", "EGF_Stimulus": "1.65"}, {"ID": "FBgn0037475", "EGF_Stimulus": "-1.8"}, {"ID": "FBgn0039631", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0027508", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0034029", "EGF_Stimulus": "-1.43"}, {"ID": "FBgn0031792", "EGF_Stimulus": "1.91"}, {"ID": "FBgn0033773", "EGF_Stimulus": "0.26"}, {"ID": "FBgn0052368", "EGF_Stimulus": "-0.6"}, {"ID": "FBgn0040816", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0039326", "EGF_Stimulus": "0.22"}, {"ID": "FBgn0031844", "EGF_Stimulus": "-1.37"}, {"ID": "FBgn0037427", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0031444", "EGF_Stimulus": "1.37"}, {"ID": "FBgn0031818", "EGF_Stimulus": "-0.63"}, {"ID": "FBgn0034427", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0053702", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0050194", "EGF_Stimulus": "-0.91"}, {"ID": "FBgn0046689", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0038486", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0037310", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0031716", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0051118", "EGF_Stimulus": "1.59"}, {"ID": "FBgn0250850", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0031617", "EGF_Stimulus": "-1.02"}, {"ID": "FBgn0259937", "EGF_Stimulus": "-1.17"}, {"ID": "FBgn0036566", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0041171", "EGF_Stimulus": "2.22"}, {"ID": "FBgn0031957", "EGF_Stimulus": "0.05"}, {"ID": "FBgn0035781", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0085379", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0032679", "EGF_Stimulus": "-0.84"}, {"ID": "FBgn0015011", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0052821", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0024947", "EGF_Stimulus": "-1.2"}, {"ID": "FBgn0051099", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0027524", "EGF_Stimulus": "-0.75"}, {"ID": "FBgn0035252", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0046323", "EGF_Stimulus": "-1.11"}, {"ID": "FBgn0025874", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0050121", "EGF_Stimulus": "-1.64"}, {"ID": "FBgn0022772", "EGF_Stimulus": "-1.08"}, {"ID": "FBgn0039117", "EGF_Stimulus": "-1.9"}, {"ID": "FBgn0038380", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0036485", "EGF_Stimulus": "-0.08"}, {"ID": "FBgn0034978", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0039154", "EGF_Stimulus": "1.32"}, {"ID": "FBgn0040942", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0052806", "EGF_Stimulus": "-0.98"}, {"ID": "FBgn0031800", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0030539", "EGF_Stimulus": "1.02"}, {"ID": "FBgn0039832", "EGF_Stimulus": "-1.11"}, {"ID": "FBgn0039078", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0003887", "EGF_Stimulus": "-1.79"}, {"ID": "FBgn0034407", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0036876", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0033464", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0032965", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0035761", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0037608", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0052075", "EGF_Stimulus": "-0.84"}, {"ID": "FBgn0036337", "EGF_Stimulus": "1.71"}, {"ID": "FBgn0039104", "EGF_Stimulus": "-1.17"}, {"ID": "FBgn0034374", "EGF_Stimulus": "-0.86"}, {"ID": "FBgn0032189", "EGF_Stimulus": "-0.86"}, {"ID": "FBgn0085468", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0015799", "EGF_Stimulus": "1.24"}, {"ID": "FBgn0030706", "EGF_Stimulus": "-0.23"}, {"ID": "FBgn0003114", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0037342", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0030056", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0086358", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0015008", "EGF_Stimulus": "0.17"}, {"ID": "FBgn0260400", "EGF_Stimulus": "1.46"}, {"ID": "FBgn0003513", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0052255", "EGF_Stimulus": "-0.43"}, {"ID": "FBgn0027363", "EGF_Stimulus": "-0.36"}, {"ID": "FBgn0031399", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0053287", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0039227", "EGF_Stimulus": "-0.52"}, {"ID": "FBgn0033371", "EGF_Stimulus": "-0.34"}, {"ID": "FBgn0030412", "EGF_Stimulus": "1.28"}, {"ID": "FBgn0030757", "EGF_Stimulus": "-0.31"}, {"ID": "FBgn0035755", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0035165", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0030684", "EGF_Stimulus": "0.3"}, {"ID": "FBgn0031781", "EGF_Stimulus": "-0.14"}, {"ID": "FBgn0031514", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0028544", "EGF_Stimulus": "-0.19"}, {"ID": "FBgn0033860", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0028693", "EGF_Stimulus": "-1.62"}, {"ID": "FBgn0086707", "EGF_Stimulus": "1.31"}, {"ID": "FBgn0032200", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0031227", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0028421", "EGF_Stimulus": "0.23"}, {"ID": "FBgn0035688", "EGF_Stimulus": "-0.79"}, {"ID": "FBgn0039485", "EGF_Stimulus": "-0.31"}, {"ID": "FBgn0031106", "EGF_Stimulus": "0.15"}, {"ID": "FBgn0031497", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0031254", "EGF_Stimulus": "1.31"}, {"ID": "FBgn0034908", "EGF_Stimulus": "2.24"}, {"ID": "FBgn0035541", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0032101", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0036479", "EGF_Stimulus": "-0.24"}, {"ID": "FBgn0035989", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0031663", "EGF_Stimulus": "-0.6"}, {"ID": "FBgn0039041", "EGF_Stimulus": "1.72"}, {"ID": "FBgn0029002", "EGF_Stimulus": "0.16"}, {"ID": "FBgn0039707", "EGF_Stimulus": "1.23"}, {"ID": "FBgn0033925", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0020370", "EGF_Stimulus": "-0.91"}, {"ID": "FBgn0033286", "EGF_Stimulus": "-0.21"}, {"ID": "FBgn0023441", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0033324", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0035199", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0250839", "EGF_Stimulus": "-1.47"}, {"ID": "FBgn0053098", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0038415", "EGF_Stimulus": "1.17"}, {"ID": "FBgn0086372", "EGF_Stimulus": "1.1"}, {"ID": "FBgn0052037", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0037463", "EGF_Stimulus": "1.06"}, {"ID": "FBgn0036812", "EGF_Stimulus": "-0.02"}, {"ID": "FBgn0024361", "EGF_Stimulus": "-0.28"}, {"ID": "FBgn0003011", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0037498", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0052982", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0260005", "EGF_Stimulus": "2.16"}, {"ID": "FBgn0040534", "EGF_Stimulus": "-0.01"}, {"ID": "FBgn0260446", "EGF_Stimulus": "1.26"}, {"ID": "FBgn0038860", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0013720", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0086675", "EGF_Stimulus": "-1.69"}, {"ID": "FBgn0031286", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0010590", "EGF_Stimulus": "-3.54"}, {"ID": "FBgn0034971", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0020626", "EGF_Stimulus": "0.96"}, {"ID": "FBgn0031869", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0035779", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0053459", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0035290", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0035733", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0027602", "EGF_Stimulus": "-0.52"}, {"ID": "FBgn0034748", "EGF_Stimulus": "-0.65"}, {"ID": "FBgn0016119", "EGF_Stimulus": "-0.95"}, {"ID": "FBgn0034505", "EGF_Stimulus": "-0.17"}, {"ID": "FBgn0037184", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0027518", "EGF_Stimulus": "-1.76"}, {"ID": "FBgn0034153", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0036726", "EGF_Stimulus": "-0.75"}, {"ID": "FBgn0037643", "EGF_Stimulus": "1.2"}, {"ID": "FBgn0032636", "EGF_Stimulus": "-1.56"}, {"ID": "FBgn0053548", "EGF_Stimulus": "-0.43"}, {"ID": "FBgn0052372", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0036294", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0052971", "EGF_Stimulus": "-1.23"}, {"ID": "FBgn0031681", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0034176", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0035645", "EGF_Stimulus": "-0.21"}, {"ID": "FBgn0261245", "EGF_Stimulus": "-0.59"}, {"ID": "FBgn0037703", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0029897", "EGF_Stimulus": "-3.53"}, {"ID": "FBgn0033485", "EGF_Stimulus": "0.21"}, {"ID": "FBgn0039184", "EGF_Stimulus": "-0.61"}, {"ID": "FBgn0040487", "EGF_Stimulus": "1.1"}, {"ID": "FBgn0039595", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0041244", "EGF_Stimulus": "-1.31"}, {"ID": "FBgn0051948", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0051053", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0036160", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0033047", "EGF_Stimulus": "1.15"}, {"ID": "FBgn0016970", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0034461", "EGF_Stimulus": "-0.22"}, {"ID": "FBgn0261090", "EGF_Stimulus": "-1.46"}, {"ID": "FBgn0030749", "EGF_Stimulus": "-1.07"}, {"ID": "FBgn0036488", "EGF_Stimulus": "-0.82"}, {"ID": "FBgn0046756", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0036348", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0037860", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0011812", "EGF_Stimulus": "-1.01"}, {"ID": "FBgn0261551", "EGF_Stimulus": "-1.11"}, {"ID": "FBgn0042112", "EGF_Stimulus": "0.25"}, {"ID": "FBgn0004888", "EGF_Stimulus": "-1.2"}, {"ID": "FBgn0052081", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0032361", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0035695", "EGF_Stimulus": "1.48"}, {"ID": "FBgn0051909", "EGF_Stimulus": "-2.05"}, {"ID": "FBgn0041147", "EGF_Stimulus": "-0.67"}, {"ID": "FBgn0050404", "EGF_Stimulus": "1.06"}, {"ID": "FBgn0033397", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0040717", "EGF_Stimulus": "0.17"}, {"ID": "FBgn0050050", "EGF_Stimulus": "-0.19"}, {"ID": "FBgn0028744", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0039071", "EGF_Stimulus": "2.13"}, {"ID": "FBgn0052833", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0259785", "EGF_Stimulus": "-2.57"}, {"ID": "FBgn0034538", "EGF_Stimulus": "-0.7"}, {"ID": "FBgn0030519", "EGF_Stimulus": "-0.63"}, {"ID": "FBgn0047135", "EGF_Stimulus": "-0.76"}, {"ID": "FBgn0037540", "EGF_Stimulus": "1.29"}, {"ID": "FBgn0027376", "EGF_Stimulus": "-0.34"}, {"ID": "FBgn0004363", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0039737", "EGF_Stimulus": "-1.81"}, {"ID": "FBgn0034472", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0036858", "EGF_Stimulus": "-1.23"}, {"ID": "FBgn0052379", "EGF_Stimulus": "0.13"}, {"ID": "FBgn0038821", "EGF_Stimulus": "1.25"}, {"ID": "FBgn0038020", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0051862", "EGF_Stimulus": "-1.08"}, {"ID": "FBgn0003068", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0010812", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0015572", "EGF_Stimulus": "0.15"}, {"ID": "FBgn0000153", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0032391", "EGF_Stimulus": "-0.54"}, {"ID": "FBgn0030996", "EGF_Stimulus": "-0.21"}, {"ID": "FBgn0033019", "EGF_Stimulus": "-2.08"}, {"ID": "FBgn0259178", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0085197", "EGF_Stimulus": "-0.81"}, {"ID": "FBgn0029969", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0033278", "EGF_Stimulus": "-0.98"}, {"ID": "FBgn0029756", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0051133", "EGF_Stimulus": "-0.43"}, {"ID": "FBgn0029765", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0031535", "EGF_Stimulus": "1.25"}, {"ID": "FBgn0054047", "EGF_Stimulus": "1.35"}, {"ID": "FBgn0087005", "EGF_Stimulus": "-1.16"}, {"ID": "FBgn0038578", "EGF_Stimulus": "-1.04"}, {"ID": "FBgn0030028", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0030890", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0050094", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0037223", "EGF_Stimulus": "1.32"}, {"ID": "FBgn0032522", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0026738", "EGF_Stimulus": "-1.18"}, {"ID": "FBgn0038700", "EGF_Stimulus": "1.24"}, {"ID": "FBgn0027571", "EGF_Stimulus": "-3.02"}, {"ID": "FBgn0040227", "EGF_Stimulus": "-2.31"}, {"ID": "FBgn0062442", "EGF_Stimulus": "1.51"}, {"ID": "FBgn0003277", "EGF_Stimulus": "-2.47"}, {"ID": "FBgn0040372", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0031888", "EGF_Stimulus": "1.47"}, {"ID": "FBgn0035964", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0015618", "EGF_Stimulus": "1.58"}, {"ID": "FBgn0035056", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0036288", "EGF_Stimulus": "-2.16"}, {"ID": "FBgn0086679", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0028942", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0005626", "EGF_Stimulus": "-3.08"}, {"ID": "FBgn0037358", "EGF_Stimulus": "-1.39"}, {"ID": "FBgn0002772", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0011693", "EGF_Stimulus": "1.25"}, {"ID": "FBgn0031146", "EGF_Stimulus": "-0.52"}, {"ID": "FBgn0001978", "EGF_Stimulus": "-1.4"}, {"ID": "FBgn0003140", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0038180", "EGF_Stimulus": "-1.17"}, {"ID": "FBgn0031450", "EGF_Stimulus": "0.08"}, {"ID": "FBgn0040465", "EGF_Stimulus": "-0.81"}, {"ID": "FBgn0033134", "EGF_Stimulus": "-0.36"}, {"ID": "FBgn0002524", "EGF_Stimulus": "-1.47"}, {"ID": "FBgn0260474", "EGF_Stimulus": "1.83"}, {"ID": "FBgn0039048", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0051619", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0033990", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0010770", "EGF_Stimulus": "-0.46"}, {"ID": "FBgn0040950", "EGF_Stimulus": "1.64"}, {"ID": "FBgn0261530", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0034396", "EGF_Stimulus": "-0.59"}, {"ID": "FBgn0040257", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0261534", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0010044", "EGF_Stimulus": "-2.33"}, {"ID": "FBgn0036680", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0261585", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0033943", "EGF_Stimulus": "-0.57"}, {"ID": "FBgn0040505", "EGF_Stimulus": "-0.73"}, {"ID": "FBgn0037121", "EGF_Stimulus": "-2.07"}, {"ID": "FBgn0031886", "EGF_Stimulus": "-0.64"}, {"ID": "FBgn0030398", "EGF_Stimulus": "1.74"}, {"ID": "FBgn0032451", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0040091", "EGF_Stimulus": "-1.1"}, {"ID": "FBgn0050046", "EGF_Stimulus": "-0.63"}, {"ID": "FBgn0036422", "EGF_Stimulus": "1.13"}, {"ID": "FBgn0259729", "EGF_Stimulus": "-1.31"}, {"ID": "FBgn0260753", "EGF_Stimulus": "1.21"}, {"ID": "FBgn0010223", "EGF_Stimulus": "1.27"}, {"ID": "FBgn0025185", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0023167", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0035626", "EGF_Stimulus": "1.21"}, {"ID": "FBgn0010352", "EGF_Stimulus": "1.03"}, {"ID": "FBgn0040571", "EGF_Stimulus": "-0.47"}, {"ID": "FBgn0031934", "EGF_Stimulus": "-0.39"}, {"ID": "FBgn0038516", "EGF_Stimulus": "0.27"}, {"ID": "FBgn0052667", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0008635", "EGF_Stimulus": "-4.46"}, {"ID": "FBgn0038654", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0032095", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0000258", "EGF_Stimulus": "0.25"}, {"ID": "FBgn0038673", "EGF_Stimulus": "0.22"}, {"ID": "FBgn0030941", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0039679", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0260764", "EGF_Stimulus": "-0.85"}, {"ID": "FBgn0030904", "EGF_Stimulus": "-2.28"}, {"ID": "FBgn0033935", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0030773", "EGF_Stimulus": "-0.64"}, {"ID": "FBgn0038385", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0015218", "EGF_Stimulus": "-2.62"}, {"ID": "FBgn0039212", "EGF_Stimulus": "-0.74"}, {"ID": "FBgn0034430", "EGF_Stimulus": "-1.05"}, {"ID": "FBgn0029723", "EGF_Stimulus": "-0.31"}, {"ID": "FBgn0033027", "EGF_Stimulus": "0.22"}, {"ID": "FBgn0033473", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0030582", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0032243", "EGF_Stimulus": "-0.59"}, {"ID": "FBgn0033680", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0014340", "EGF_Stimulus": "-0.64"}, {"ID": "FBgn0020309", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0035855", "EGF_Stimulus": "0.19"}, {"ID": "FBgn0002723", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0029712", "EGF_Stimulus": "0.11"}, {"ID": "FBgn0051739", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0032533", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0045495", "EGF_Stimulus": "1.02"}, {"ID": "FBgn0085400", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0033101", "EGF_Stimulus": "1.54"}, {"ID": "FBgn0003256", "EGF_Stimulus": "-1.82"}, {"ID": "FBgn0033061", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0036159", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0050460", "EGF_Stimulus": "-0.7"}, {"ID": "FBgn0030218", "EGF_Stimulus": "-0.78"}, {"ID": "FBgn0005613", "EGF_Stimulus": "-1.07"}, {"ID": "FBgn0017579", "EGF_Stimulus": "-4.19"}, {"ID": "FBgn0050345", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0031829", "EGF_Stimulus": "-0.94"}, {"ID": "FBgn0046886", "EGF_Stimulus": "-1.03"}, {"ID": "FBgn0032354", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0260226", "EGF_Stimulus": "-0.33"}, {"ID": "FBgn0038881", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0039670", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0033917", "EGF_Stimulus": "1.32"}, {"ID": "FBgn0042098", "EGF_Stimulus": "1.38"}, {"ID": "FBgn0036316", "EGF_Stimulus": "-0.62"}, {"ID": "FBgn0030035", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0030186", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0031130", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0259210", "EGF_Stimulus": "3.19"}, {"ID": "FBgn0051693", "EGF_Stimulus": "1.48"}, {"ID": "FBgn0021979", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0032033", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0000036", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0083963", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0051815", "EGF_Stimulus": "-0.57"}, {"ID": "FBgn0030789", "EGF_Stimulus": "-0.19"}, {"ID": "FBgn0038342", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0039193", "EGF_Stimulus": "-0.83"}, {"ID": "FBgn0260856", "EGF_Stimulus": "0.01"}, {"ID": "FBgn0039651", "EGF_Stimulus": "1.18"}, {"ID": "FBgn0032026", "EGF_Stimulus": "0.23"}, {"ID": "FBgn0001114", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0005355", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0261502", "EGF_Stimulus": "1.44"}, {"ID": "FBgn0086444", "EGF_Stimulus": "-0.74"}, {"ID": "FBgn0053533", "EGF_Stimulus": "0.27"}, {"ID": "FBgn0033951", "EGF_Stimulus": "-0.36"}, {"ID": "FBgn0031375", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0037199", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0250870", "EGF_Stimulus": "-1"}, {"ID": "FBgn0022786", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0039812", "EGF_Stimulus": "-2.2"}, {"ID": "FBgn0032120", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0043539", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0039727", "EGF_Stimulus": "1.3"}, {"ID": "FBgn0086855", "EGF_Stimulus": "-1.54"}, {"ID": "FBgn0026317", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0024913", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0001313", "EGF_Stimulus": "0.11"}, {"ID": "FBgn0035598", "EGF_Stimulus": "-1.38"}, {"ID": "FBgn0028382", "EGF_Stimulus": "-0.52"}, {"ID": "FBgn0037899", "EGF_Stimulus": "-2.25"}, {"ID": "FBgn0038507", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0037490", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0033950", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0035792", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0250755", "EGF_Stimulus": "-1.36"}, {"ID": "FBgn0051742", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0051390", "EGF_Stimulus": "-0.24"}, {"ID": "FBgn0029906", "EGF_Stimulus": "1.06"}, {"ID": "FBgn0035510", "EGF_Stimulus": "1.13"}, {"ID": "FBgn0053054", "EGF_Stimulus": "-1.04"}, {"ID": "FBgn0025802", "EGF_Stimulus": "-0.76"}, {"ID": "FBgn0034763", "EGF_Stimulus": "-0.86"}, {"ID": "FBgn0028789", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0033113", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0051191", "EGF_Stimulus": "1.01"}, {"ID": "FBgn0037371", "EGF_Stimulus": "-0.88"}, {"ID": "FBgn0038299", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0032003", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0003710", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0028467", "EGF_Stimulus": "-0.31"}, {"ID": "FBgn0014020", "EGF_Stimulus": "-3.61"}, {"ID": "FBgn0040697", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0033519", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0033674", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0014380", "EGF_Stimulus": "2.96"}, {"ID": "FBgn0023520", "EGF_Stimulus": "-0.82"}, {"ID": "FBgn0040255", "EGF_Stimulus": "1.04"}, {"ID": "FBgn0029930", "EGF_Stimulus": "1.52"}, {"ID": "FBgn0259188", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0010774", "EGF_Stimulus": "2.1"}, {"ID": "FBgn0024196", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0025716", "EGF_Stimulus": "-4.09"}, {"ID": "FBgn0051639", "EGF_Stimulus": "-0.46"}, {"ID": "FBgn0032015", "EGF_Stimulus": "0.09"}, {"ID": "FBgn0035847", "EGF_Stimulus": "-0.31"}, {"ID": "FBgn0038280", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0037743", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0038581", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0032808", "EGF_Stimulus": "1.31"}, {"ID": "FBgn0025825", "EGF_Stimulus": "-1.31"}, {"ID": "FBgn0066293", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0001991", "EGF_Stimulus": "1.98"}, {"ID": "FBgn0035534", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0031977", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0037535", "EGF_Stimulus": "-0.4"}, {"ID": "FBgn0034326", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0259967", "EGF_Stimulus": "-0.92"}, {"ID": "FBgn0036584", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0028675", "EGF_Stimulus": "-0.24"}, {"ID": "FBgn0033341", "EGF_Stimulus": "-2.04"}, {"ID": "FBgn0036663", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0031149", "EGF_Stimulus": "1.1"}, {"ID": "FBgn0062413", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0026392", "EGF_Stimulus": "-1.6"}, {"ID": "FBgn0034662", "EGF_Stimulus": "1.01"}, {"ID": "FBgn0011826", "EGF_Stimulus": "1.59"}, {"ID": "FBgn0031197", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0033033", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0052438", "EGF_Stimulus": "-0.81"}, {"ID": "FBgn0000150", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0026174", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0041336", "EGF_Stimulus": "-0.35"}, {"ID": "FBgn0039321", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0030499", "EGF_Stimulus": "-1.6"}, {"ID": "FBgn0033166", "EGF_Stimulus": "-0.86"}, {"ID": "FBgn0000497", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0037764", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0052660", "EGF_Stimulus": "-1.23"}, {"ID": "FBgn0036421", "EGF_Stimulus": "1.11"}, {"ID": "FBgn0032787", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0259985", "EGF_Stimulus": "1.1"}, {"ID": "FBgn0039302", "EGF_Stimulus": "1.15"}, {"ID": "FBgn0029504", "EGF_Stimulus": "2.72"}, {"ID": "FBgn0261561", "EGF_Stimulus": "-1.27"}, {"ID": "FBgn0004575", "EGF_Stimulus": "-1.39"}, {"ID": "FBgn0000382", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0035901", "EGF_Stimulus": "-0.17"}, {"ID": "FBgn0004390", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0037442", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0052203", "EGF_Stimulus": "-1.22"}, {"ID": "FBgn0032266", "EGF_Stimulus": "-1.12"}, {"ID": "FBgn0035309", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0051992", "EGF_Stimulus": "-0.64"}, {"ID": "FBgn0034514", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0050391", "EGF_Stimulus": "-0.47"}, {"ID": "FBgn0033387", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0028373", "EGF_Stimulus": "1.98"}, {"ID": "FBgn0034263", "EGF_Stimulus": "-0.09"}, {"ID": "FBgn0010473", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0031813", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0037873", "EGF_Stimulus": "-3.66"}, {"ID": "FBgn0052602", "EGF_Stimulus": "-0.59"}, {"ID": "FBgn0033141", "EGF_Stimulus": "-1.16"}, {"ID": "FBgn0040780", "EGF_Stimulus": "-0.99"}, {"ID": "FBgn0261085", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0040923", "EGF_Stimulus": "-0.65"}, {"ID": "FBgn0040347", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0034937", "EGF_Stimulus": "-1.23"}, {"ID": "FBgn0037093", "EGF_Stimulus": "-0.1"}, {"ID": "FBgn0041622", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0038439", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0037761", "EGF_Stimulus": "-1.4"}, {"ID": "FBgn0034165", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0029920", "EGF_Stimulus": "1.62"}, {"ID": "FBgn0020306", "EGF_Stimulus": "-4.81"}, {"ID": "FBgn0040904", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0000473", "EGF_Stimulus": "4.11"}, {"ID": "FBgn0033884", "EGF_Stimulus": "-0.3"}, {"ID": "FBgn0039252", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0034443", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0030669", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0040905", "EGF_Stimulus": "0.13"}, {"ID": "FBgn0040871", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0039795", "EGF_Stimulus": "-1.29"}, {"ID": "FBgn0011769", "EGF_Stimulus": "-0.76"}, {"ID": "FBgn0037051", "EGF_Stimulus": "-0.85"}, {"ID": "FBgn0036757", "EGF_Stimulus": "1.14"}, {"ID": "FBgn0039273", "EGF_Stimulus": "0.09"}, {"ID": "FBgn0037844", "EGF_Stimulus": "1.42"}, {"ID": "FBgn0030574", "EGF_Stimulus": "-0.78"}, {"ID": "FBgn0038931", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0004901", "EGF_Stimulus": "1.19"}, {"ID": "FBgn0036750", "EGF_Stimulus": "-1.15"}, {"ID": "FBgn0031442", "EGF_Stimulus": "1.04"}, {"ID": "FBgn0035426", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0052553", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0259164", "EGF_Stimulus": "1.2"}, {"ID": "FBgn0036417", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0024510", "EGF_Stimulus": "1.26"}, {"ID": "FBgn0038136", "EGF_Stimulus": "1.6"}, {"ID": "FBgn0032251", "EGF_Stimulus": "1.55"}, {"ID": "FBgn0036882", "EGF_Stimulus": "1.34"}, {"ID": "FBgn0036745", "EGF_Stimulus": "1.12"}, {"ID": "FBgn0037726", "EGF_Stimulus": "0.96"}, {"ID": "FBgn0050417", "EGF_Stimulus": "-1.32"}, {"ID": "FBgn0058191", "EGF_Stimulus": "-0.36"}, {"ID": "FBgn0038194", "EGF_Stimulus": "0.25"}, {"ID": "FBgn0026160", "EGF_Stimulus": "1.1"}, {"ID": "FBgn0039347", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0085404", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0086348", "EGF_Stimulus": "-0.29"}, {"ID": "FBgn0053003", "EGF_Stimulus": "-1"}, {"ID": "FBgn0261630", "EGF_Stimulus": "-0.8"}, {"ID": "FBgn0051036", "EGF_Stimulus": "0.1"}, {"ID": "FBgn0260960", "EGF_Stimulus": "1.76"}, {"ID": "FBgn0039083", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0035678", "EGF_Stimulus": "-1.19"}, {"ID": "FBgn0035578", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0027330", "EGF_Stimulus": "-1.71"}, {"ID": "FBgn0039452", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0032020", "EGF_Stimulus": "-1.42"}, {"ID": "FBgn0052801", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0033853", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0034996", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0004181", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0013750", "EGF_Stimulus": "-0.72"}, {"ID": "FBgn0034096", "EGF_Stimulus": "-0.93"}, {"ID": "FBgn0033429", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0030055", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0035241", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0031874", "EGF_Stimulus": "-0.52"}, {"ID": "FBgn0000617", "EGF_Stimulus": "1.72"}, {"ID": "FBgn0030525", "EGF_Stimulus": "-0.8"}, {"ID": "FBgn0033122", "EGF_Stimulus": "1.2"}, {"ID": "FBgn0034965", "EGF_Stimulus": "-0.97"}, {"ID": "FBgn0040793", "EGF_Stimulus": "-1.93"}, {"ID": "FBgn0044047", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0053267", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0053257", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0036519", "EGF_Stimulus": "-1.07"}, {"ID": "FBgn0010482", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0051445", "EGF_Stimulus": "-0.25"}, {"ID": "FBgn0000489", "EGF_Stimulus": "-0.73"}, {"ID": "FBgn0051876", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0033412", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0029688", "EGF_Stimulus": "-1.96"}, {"ID": "FBgn0085435", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0031857", "EGF_Stimulus": "-0.97"}, {"ID": "FBgn0050145", "EGF_Stimulus": "-0.86"}, {"ID": "FBgn0034467", "EGF_Stimulus": "1.12"}, {"ID": "FBgn0035347", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0036327", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0019985", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0025574", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0052487", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0021906", "EGF_Stimulus": "-1.45"}, {"ID": "FBgn0031429", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0032318", "EGF_Stimulus": "-0.98"}, {"ID": "FBgn0039685", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0033572", "EGF_Stimulus": "1.75"}, {"ID": "FBgn0030555", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0032258", "EGF_Stimulus": "-0.36"}, {"ID": "FBgn0023508", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0052670", "EGF_Stimulus": "1.62"}, {"ID": "FBgn0034893", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0038922", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0039316", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0052072", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0036112", "EGF_Stimulus": "-0.66"}, {"ID": "FBgn0030310", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0010401", "EGF_Stimulus": "-0.66"}, {"ID": "FBgn0034603", "EGF_Stimulus": "1.02"}, {"ID": "FBgn0031030", "EGF_Stimulus": "-2.24"}, {"ID": "FBgn0038691", "EGF_Stimulus": "0.23"}, {"ID": "FBgn0052006", "EGF_Stimulus": "-1.05"}, {"ID": "FBgn0015584", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0030680", "EGF_Stimulus": "1.22"}, {"ID": "FBgn0050464", "EGF_Stimulus": "-0.64"}, {"ID": "FBgn0034708", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0029928", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0015589", "EGF_Stimulus": "-0.86"}, {"ID": "FBgn0030008", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0036196", "EGF_Stimulus": "-0.19"}, {"ID": "FBgn0027106", "EGF_Stimulus": "1.49"}, {"ID": "FBgn0000376", "EGF_Stimulus": "1.06"}, {"ID": "FBgn0261637", "EGF_Stimulus": "-1.18"}, {"ID": "FBgn0035005", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0031948", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0004108", "EGF_Stimulus": "-0.99"}, {"ID": "FBgn0032882", "EGF_Stimulus": "-4.96"}, {"ID": "FBgn0031621", "EGF_Stimulus": "0.27"}, {"ID": "FBgn0261613", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0036939", "EGF_Stimulus": "-0.25"}, {"ID": "FBgn0041180", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0261269", "EGF_Stimulus": "-0.55"}, {"ID": "FBgn0034013", "EGF_Stimulus": "-2.57"}, {"ID": "FBgn0038735", "EGF_Stimulus": "0.94"}, {"ID": "FBgn0051682", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0034214", "EGF_Stimulus": "2.07"}, {"ID": "FBgn0001280", "EGF_Stimulus": "1.5"}, {"ID": "FBgn0031332", "EGF_Stimulus": "-0.18"}, {"ID": "FBgn0035675", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0038309", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0015664", "EGF_Stimulus": "-4.15"}, {"ID": "FBgn0036932", "EGF_Stimulus": "-0.66"}, {"ID": "FBgn0030014", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0261922", "EGF_Stimulus": "-2.1"}, {"ID": "FBgn0261929", "EGF_Stimulus": "-0.54"}, {"ID": "FBgn0030958", "EGF_Stimulus": "-0.33"}, {"ID": "FBgn0033610", "EGF_Stimulus": "-0.34"}, {"ID": "FBgn0039490", "EGF_Stimulus": "2.25"}, {"ID": "FBgn0002855", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0040337", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0052679", "EGF_Stimulus": "0.26"}, {"ID": "FBgn0000395", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0033866", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0036366", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0033774", "EGF_Stimulus": "-0.46"}, {"ID": "FBgn0004620", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0038533", "EGF_Stimulus": "1.27"}, {"ID": "FBgn0001233", "EGF_Stimulus": "-1.92"}, {"ID": "FBgn0000412", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0085496", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0053094", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0028956", "EGF_Stimulus": "-0.91"}, {"ID": "FBgn0015396", "EGF_Stimulus": "-0.89"}, {"ID": "FBgn0033550", "EGF_Stimulus": "0.96"}, {"ID": "FBgn0066101", "EGF_Stimulus": "-0.93"}, {"ID": "FBgn0030017", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0053463", "EGF_Stimulus": "1.24"}, {"ID": "FBgn0031485", "EGF_Stimulus": "0.16"}, {"ID": "FBgn0043865", "EGF_Stimulus": "0.2"}, {"ID": "FBgn0034000", "EGF_Stimulus": "1.38"}, {"ID": "FBgn0039875", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0030828", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0052672", "EGF_Stimulus": "-0.64"}, {"ID": "FBgn0038766", "EGF_Stimulus": "0.22"}, {"ID": "FBgn0035924", "EGF_Stimulus": "1.39"}, {"ID": "FBgn0033451", "EGF_Stimulus": "1.5"}, {"ID": "FBgn0035630", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0052625", "EGF_Stimulus": "-0.94"}, {"ID": "FBgn0027575", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0050421", "EGF_Stimulus": "1.52"}, {"ID": "FBgn0034498", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0017558", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0038784", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0002869", "EGF_Stimulus": "1.7"}, {"ID": "FBgn0035648", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0026144", "EGF_Stimulus": "-1.56"}, {"ID": "FBgn0037410", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0035318", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0051265", "EGF_Stimulus": "0.18"}, {"ID": "FBgn0031606", "EGF_Stimulus": "-1.59"}, {"ID": "FBgn0039558", "EGF_Stimulus": "1.45"}, {"ID": "FBgn0046332", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0030332", "EGF_Stimulus": "-0.61"}, {"ID": "FBgn0037341", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0040747", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0260452", "EGF_Stimulus": "-1.56"}, {"ID": "FBgn0037565", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0030003", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0261260", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0036588", "EGF_Stimulus": "-0.85"}, {"ID": "FBgn0040022", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0026418", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0034688", "EGF_Stimulus": "0.06"}, {"ID": "FBgn0002865", "EGF_Stimulus": "-1.15"}, {"ID": "FBgn0032590", "EGF_Stimulus": "1.32"}, {"ID": "FBgn0032455", "EGF_Stimulus": "1.46"}, {"ID": "FBgn0029965", "EGF_Stimulus": "-1.03"}, {"ID": "FBgn0034958", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0037336", "EGF_Stimulus": "-0.89"}, {"ID": "FBgn0261112", "EGF_Stimulus": "0.19"}, {"ID": "FBgn0051327", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0015949", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0015569", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0031604", "EGF_Stimulus": "-0.9"}, {"ID": "FBgn0259110", "EGF_Stimulus": "1.21"}, {"ID": "FBgn0032167", "EGF_Stimulus": "1.09"}, {"ID": "FBgn0015576", "EGF_Stimulus": "0.17"}, {"ID": "FBgn0002183", "EGF_Stimulus": "-0.98"}, {"ID": "FBgn0052582", "EGF_Stimulus": "1.56"}, {"ID": "FBgn0036786", "EGF_Stimulus": "-1.21"}, {"ID": "FBgn0033304", "EGF_Stimulus": "-0.84"}, {"ID": "FBgn0035702", "EGF_Stimulus": "0.27"}, {"ID": "FBgn0034312", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0052649", "EGF_Stimulus": "-0.8"}, {"ID": "FBgn0033504", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0085422", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0000566", "EGF_Stimulus": "1.7"}, {"ID": "FBgn0038632", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0033698", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0039805", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0040361", "EGF_Stimulus": "-0.85"}, {"ID": "FBgn0028992", "EGF_Stimulus": "-0.62"}, {"ID": "FBgn0003514", "EGF_Stimulus": "-1.07"}, {"ID": "FBgn0011604", "EGF_Stimulus": "-1.14"}, {"ID": "FBgn0039186", "EGF_Stimulus": "-0.61"}, {"ID": "FBgn0053144", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0035273", "EGF_Stimulus": "-0.85"}, {"ID": "FBgn0052058", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0031634", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0030847", "EGF_Stimulus": "-0.3"}, {"ID": "FBgn0023512", "EGF_Stimulus": "-0.9"}, {"ID": "FBgn0030873", "EGF_Stimulus": "-1.13"}, {"ID": "FBgn0000455", "EGF_Stimulus": "1.45"}, {"ID": "FBgn0036221", "EGF_Stimulus": "-0.48"}, {"ID": "FBgn0038830", "EGF_Stimulus": "1.1"}, {"ID": "FBgn0039520", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0033100", "EGF_Stimulus": "-0.4"}, {"ID": "FBgn0032166", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0029849", "EGF_Stimulus": "1.09"}, {"ID": "FBgn0032889", "EGF_Stimulus": "-0.59"}, {"ID": "FBgn0030872", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0025674", "EGF_Stimulus": "-1.11"}, {"ID": "FBgn0032464", "EGF_Stimulus": "-0.86"}, {"ID": "FBgn0035101", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0033819", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0033216", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0031517", "EGF_Stimulus": "-0.61"}, {"ID": "FBgn0030319", "EGF_Stimulus": "-0.24"}, {"ID": "FBgn0039127", "EGF_Stimulus": "-0.43"}, {"ID": "FBgn0030395", "EGF_Stimulus": "1.31"}, {"ID": "FBgn0036108", "EGF_Stimulus": "-0.19"}, {"ID": "FBgn0034417", "EGF_Stimulus": "1.77"}, {"ID": "FBgn0029696", "EGF_Stimulus": "-0.14"}, {"ID": "FBgn0030349", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0051373", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0038425", "EGF_Stimulus": "1.31"}, {"ID": "FBgn0034007", "EGF_Stimulus": "1.71"}, {"ID": "FBgn0015623", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0013771", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0038804", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0029821", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0052267", "EGF_Stimulus": "1.62"}, {"ID": "FBgn0030974", "EGF_Stimulus": "-0.85"}, {"ID": "FBgn0032725", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0038856", "EGF_Stimulus": "-0.65"}, {"ID": "FBgn0000559", "EGF_Stimulus": "-2.15"}, {"ID": "FBgn0052441", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0053309", "EGF_Stimulus": "-0.78"}, {"ID": "FBgn0031307", "EGF_Stimulus": "1.28"}, {"ID": "FBgn0038750", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0038646", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0036226", "EGF_Stimulus": "-0.54"}, {"ID": "FBgn0034387", "EGF_Stimulus": "0.08"}, {"ID": "FBgn0052264", "EGF_Stimulus": "-0.86"}, {"ID": "FBgn0063496", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0033978", "EGF_Stimulus": "-0.9"}, {"ID": "FBgn0054040", "EGF_Stimulus": "-0.84"}, {"ID": "FBgn0036449", "EGF_Stimulus": "0.21"}, {"ID": "FBgn0032498", "EGF_Stimulus": "-1.92"}, {"ID": "FBgn0036668", "EGF_Stimulus": "0.18"}, {"ID": "FBgn0038058", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0032338", "EGF_Stimulus": "-0.06"}, {"ID": "FBgn0020907", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0015770", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0028342", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0030603", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0011766", "EGF_Stimulus": "-3.25"}, {"ID": "FBgn0037293", "EGF_Stimulus": "1.34"}, {"ID": "FBgn0028999", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0035873", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0037017", "EGF_Stimulus": "1.22"}, {"ID": "FBgn0015794", "EGF_Stimulus": "-1.02"}, {"ID": "FBgn0053796", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0025781", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0038877", "EGF_Stimulus": "1.33"}, {"ID": "FBgn0029753", "EGF_Stimulus": "1.37"}, {"ID": "FBgn0031466", "EGF_Stimulus": "-1.95"}, {"ID": "FBgn0037935", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0027563", "EGF_Stimulus": "1.4"}, {"ID": "FBgn0033810", "EGF_Stimulus": "0.07"}, {"ID": "FBgn0039529", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0036469", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0033741", "EGF_Stimulus": "-0.26"}, {"ID": "FBgn0086680", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0261386", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0032733", "EGF_Stimulus": "0.18"}, {"ID": "FBgn0052406", "EGF_Stimulus": "1.03"}, {"ID": "FBgn0032377", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0033408", "EGF_Stimulus": "0.3"}, {"ID": "FBgn0036607", "EGF_Stimulus": "-0.89"}, {"ID": "FBgn0000216", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0010399", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0086712", "EGF_Stimulus": "-1.24"}, {"ID": "FBgn0034325", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0038588", "EGF_Stimulus": "-1.4"}, {"ID": "FBgn0036463", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0036442", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0034278", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0085254", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0040388", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0030615", "EGF_Stimulus": "1.3"}, {"ID": "FBgn0033672", "EGF_Stimulus": "0.23"}, {"ID": "FBgn0038202", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0033088", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0035283", "EGF_Stimulus": "1.03"}, {"ID": "FBgn0039879", "EGF_Stimulus": "-1.22"}, {"ID": "FBgn0031011", "EGF_Stimulus": "-3.18"}, {"ID": "FBgn0034245", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0085385", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0011740", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0036272", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0051851", "EGF_Stimulus": "-0.98"}, {"ID": "FBgn0085317", "EGF_Stimulus": "-0.62"}, {"ID": "FBgn0038261", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0020294", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0033691", "EGF_Stimulus": "-0.72"}, {"ID": "FBgn0050074", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0003145", "EGF_Stimulus": "-0.07"}, {"ID": "FBgn0030543", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0035178", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0038390", "EGF_Stimulus": "-0.23"}, {"ID": "FBgn0032878", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0032017", "EGF_Stimulus": "0.15"}, {"ID": "FBgn0000008", "EGF_Stimulus": "-1.12"}, {"ID": "FBgn0035880", "EGF_Stimulus": "0.94"}, {"ID": "FBgn0037688", "EGF_Stimulus": "-0.3"}, {"ID": "FBgn0039710", "EGF_Stimulus": "-4.33"}, {"ID": "FBgn0031016", "EGF_Stimulus": "0.22"}, {"ID": "FBgn0046214", "EGF_Stimulus": "-1.4"}, {"ID": "FBgn0042186", "EGF_Stimulus": "0.96"}, {"ID": "FBgn0013435", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0052708", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0010342", "EGF_Stimulus": "-0.7"}, {"ID": "FBgn0015033", "EGF_Stimulus": "-0.63"}, {"ID": "FBgn0037374", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0036210", "EGF_Stimulus": "0.06"}, {"ID": "FBgn0028331", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0261931", "EGF_Stimulus": "1.02"}, {"ID": "FBgn0040342", "EGF_Stimulus": "-0.46"}, {"ID": "FBgn0002036", "EGF_Stimulus": "-1.36"}, {"ID": "FBgn0020249", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0030813", "EGF_Stimulus": "-0.08"}, {"ID": "FBgn0031261", "EGF_Stimulus": "-0.37"}, {"ID": "FBgn0039293", "EGF_Stimulus": "1.34"}, {"ID": "FBgn0038414", "EGF_Stimulus": "1.29"}, {"ID": "FBgn0038454", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0036574", "EGF_Stimulus": "-0.32"}, {"ID": "FBgn0039714", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0024244", "EGF_Stimulus": "0.14"}, {"ID": "FBgn0030662", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0036199", "EGF_Stimulus": "-0.25"}, {"ID": "FBgn0086254", "EGF_Stimulus": "0.12"}, {"ID": "FBgn0051343", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0041629", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0036038", "EGF_Stimulus": "-2.7"}, {"ID": "FBgn0031670", "EGF_Stimulus": "-0.57"}, {"ID": "FBgn0024289", "EGF_Stimulus": "-0.67"}, {"ID": "FBgn0032846", "EGF_Stimulus": "-0.47"}, {"ID": "FBgn0033598", "EGF_Stimulus": "0.15"}, {"ID": "FBgn0035287", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0014857", "EGF_Stimulus": "-3.03"}, {"ID": "FBgn0037036", "EGF_Stimulus": "-0.78"}, {"ID": "FBgn0011708", "EGF_Stimulus": "-2.02"}, {"ID": "FBgn0039634", "EGF_Stimulus": "1.38"}, {"ID": "FBgn0040565", "EGF_Stimulus": "1.8"}, {"ID": "FBgn0033357", "EGF_Stimulus": "-1.24"}, {"ID": "FBgn0037621", "EGF_Stimulus": "-0.91"}, {"ID": "FBgn0038775", "EGF_Stimulus": "-0.19"}, {"ID": "FBgn0030620", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0041224", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0260743", "EGF_Stimulus": "1.6"}, {"ID": "FBgn0031695", "EGF_Stimulus": "-0.4"}, {"ID": "FBgn0040394", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0038049", "EGF_Stimulus": "-6.09"}, {"ID": "FBgn0034974", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0030933", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0039304", "EGF_Stimulus": "-0.3"}, {"ID": "FBgn0010246", "EGF_Stimulus": "-0.82"}, {"ID": "FBgn0038273", "EGF_Stimulus": "-0.29"}, {"ID": "FBgn0030151", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0033820", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0036510", "EGF_Stimulus": "-1.11"}, {"ID": "FBgn0039464", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0039350", "EGF_Stimulus": "1.04"}, {"ID": "FBgn0024222", "EGF_Stimulus": "1.84"}, {"ID": "FBgn0033195", "EGF_Stimulus": "1.51"}, {"ID": "FBgn0030041", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0028647", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0033712", "EGF_Stimulus": "0.04"}, {"ID": "FBgn0004514", "EGF_Stimulus": "-0.55"}, {"ID": "FBgn0261562", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0032769", "EGF_Stimulus": "1.36"}, {"ID": "FBgn0033380", "EGF_Stimulus": "-0.13"}, {"ID": "FBgn0035401", "EGF_Stimulus": "1.23"}, {"ID": "FBgn0035264", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0085345", "EGF_Stimulus": "1.03"}, {"ID": "FBgn0261816", "EGF_Stimulus": "1.17"}, {"ID": "FBgn0038706", "EGF_Stimulus": "-0.82"}, {"ID": "FBgn0000233", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0038718", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0035092", "EGF_Stimulus": "1.81"}, {"ID": "FBgn0260817", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0036698", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0038290", "EGF_Stimulus": "-0.2"}, {"ID": "FBgn0034082", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0050497", "EGF_Stimulus": "0.22"}, {"ID": "FBgn0035944", "EGF_Stimulus": "1.4"}, {"ID": "FBgn0039937", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0016762", "EGF_Stimulus": "1.31"}, {"ID": "FBgn0040285", "EGF_Stimulus": "-0.54"}, {"ID": "FBgn0035488", "EGF_Stimulus": "-1.4"}, {"ID": "FBgn0031540", "EGF_Stimulus": "0.26"}, {"ID": "FBgn0034590", "EGF_Stimulus": "1.29"}, {"ID": "FBgn0037388", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0035585", "EGF_Stimulus": "0.15"}, {"ID": "FBgn0037071", "EGF_Stimulus": "0.96"}, {"ID": "FBgn0039585", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0051955", "EGF_Stimulus": "1.63"}, {"ID": "FBgn0037849", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0015296", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0030720", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0033389", "EGF_Stimulus": "-0.46"}, {"ID": "FBgn0259241", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0045502", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0038142", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0040238", "EGF_Stimulus": "-2.09"}, {"ID": "FBgn0051915", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0034784", "EGF_Stimulus": "-0.61"}, {"ID": "FBgn0004118", "EGF_Stimulus": "-0.47"}, {"ID": "FBgn0051347", "EGF_Stimulus": "-1.53"}, {"ID": "FBgn0032816", "EGF_Stimulus": "0.14"}, {"ID": "FBgn0029879", "EGF_Stimulus": "-0.79"}, {"ID": "FBgn0030930", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0083971", "EGF_Stimulus": "0.96"}, {"ID": "FBgn0037837", "EGF_Stimulus": "-0.94"}, {"ID": "FBgn0034300", "EGF_Stimulus": "-0.6"}, {"ID": "FBgn0033669", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0037544", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0036619", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0045064", "EGF_Stimulus": "-0.97"}, {"ID": "FBgn0034429", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0031258", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0259166", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0045498", "EGF_Stimulus": "1.57"}, {"ID": "FBgn0083950", "EGF_Stimulus": "1.26"}, {"ID": "FBgn0038665", "EGF_Stimulus": "-0.17"}, {"ID": "FBgn0045479", "EGF_Stimulus": "-1.96"}, {"ID": "FBgn0032065", "EGF_Stimulus": "-1.6"}, {"ID": "FBgn0000239", "EGF_Stimulus": "-0.46"}, {"ID": "FBgn0036770", "EGF_Stimulus": "2.25"}, {"ID": "FBgn0039378", "EGF_Stimulus": "0.03"}, {"ID": "FBgn0033905", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0003366", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0033512", "EGF_Stimulus": "0.21"}, {"ID": "FBgn0004657", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0036945", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0031784", "EGF_Stimulus": "1.56"}, {"ID": "FBgn0050285", "EGF_Stimulus": "-1.8"}, {"ID": "FBgn0050273", "EGF_Stimulus": "0.96"}, {"ID": "FBgn0035031", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0037747", "EGF_Stimulus": "-1.12"}, {"ID": "FBgn0019929", "EGF_Stimulus": "-1.26"}, {"ID": "FBgn0031906", "EGF_Stimulus": "0.23"}, {"ID": "FBgn0042104", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0029740", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0001404", "EGF_Stimulus": "-2.03"}, {"ID": "FBgn0035639", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0035168", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0086365", "EGF_Stimulus": "-0.78"}, {"ID": "FBgn0037794", "EGF_Stimulus": "-0.83"}, {"ID": "FBgn0039705", "EGF_Stimulus": "1.03"}, {"ID": "FBgn0034199", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0037676", "EGF_Stimulus": "-0.88"}, {"ID": "FBgn0052549", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0052066", "EGF_Stimulus": "1.09"}, {"ID": "FBgn0050375", "EGF_Stimulus": "0.29"}, {"ID": "FBgn0037842", "EGF_Stimulus": "0.26"}, {"ID": "FBgn0035238", "EGF_Stimulus": "-1.36"}, {"ID": "FBgn0031161", "EGF_Stimulus": "-1.8"}, {"ID": "FBgn0001217", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0029587", "EGF_Stimulus": "0.15"}, {"ID": "FBgn0032429", "EGF_Stimulus": "-0.9"}, {"ID": "FBgn0034001", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0039560", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0052521", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0032613", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0030469", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0020372", "EGF_Stimulus": "1.92"}, {"ID": "FBgn0033921", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0040759", "EGF_Stimulus": "1.34"}, {"ID": "FBgn0000427", "EGF_Stimulus": "-1.55"}, {"ID": "FBgn0032684", "EGF_Stimulus": "-1.16"}, {"ID": "FBgn0051465", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0024177", "EGF_Stimulus": "1.15"}, {"ID": "FBgn0030927", "EGF_Stimulus": "-1.58"}, {"ID": "FBgn0035120", "EGF_Stimulus": "-0.85"}, {"ID": "FBgn0261437", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0031432", "EGF_Stimulus": "-1.01"}, {"ID": "FBgn0039942", "EGF_Stimulus": "-0.82"}, {"ID": "FBgn0030109", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0037941", "EGF_Stimulus": "-0.73"}, {"ID": "FBgn0261403", "EGF_Stimulus": "0.07"}, {"ID": "FBgn0039034", "EGF_Stimulus": "0.94"}, {"ID": "FBgn0037988", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0029118", "EGF_Stimulus": "-0.57"}, {"ID": "FBgn0025838", "EGF_Stimulus": "-1.42"}, {"ID": "FBgn0028473", "EGF_Stimulus": "-2.21"}, {"ID": "FBgn0035043", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0036740", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0026404", "EGF_Stimulus": "1.6"}, {"ID": "FBgn0051897", "EGF_Stimulus": "1.24"}, {"ID": "FBgn0004652", "EGF_Stimulus": "-1.5"}, {"ID": "FBgn0032321", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0039472", "EGF_Stimulus": "-1.04"}, {"ID": "FBgn0023023", "EGF_Stimulus": "1.67"}, {"ID": "FBgn0034729", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0034884", "EGF_Stimulus": "-0.62"}, {"ID": "FBgn0033883", "EGF_Stimulus": "-0.46"}, {"ID": "FBgn0051813", "EGF_Stimulus": "-1"}, {"ID": "FBgn0026207", "EGF_Stimulus": "1.15"}, {"ID": "FBgn0085300", "EGF_Stimulus": "-0.4"}, {"ID": "FBgn0035049", "EGF_Stimulus": "-1.34"}, {"ID": "FBgn0030805", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0038816", "EGF_Stimulus": "-0.76"}, {"ID": "FBgn0038318", "EGF_Stimulus": "1.66"}, {"ID": "FBgn0261862", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0036219", "EGF_Stimulus": "5.33"}, {"ID": "FBgn0034739", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0033782", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0036695", "EGF_Stimulus": "-0.36"}, {"ID": "FBgn0030433", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0030362", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0039565", "EGF_Stimulus": "-1.28"}, {"ID": "FBgn0039552", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0020439", "EGF_Stimulus": "-3.09"}, {"ID": "FBgn0040696", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0035496", "EGF_Stimulus": "0.25"}, {"ID": "FBgn0028582", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0037807", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0032283", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0030074", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0010423", "EGF_Stimulus": "-0.28"}, {"ID": "FBgn0035042", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0028945", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0016080", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0038011", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0053296", "EGF_Stimulus": "-1.05"}, {"ID": "FBgn0026761", "EGF_Stimulus": "-1.37"}, {"ID": "FBgn0052418", "EGF_Stimulus": "1.61"}, {"ID": "FBgn0037488", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0052054", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0026573", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0041789", "EGF_Stimulus": "1.27"}, {"ID": "FBgn0260866", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0034365", "EGF_Stimulus": "0.26"}, {"ID": "FBgn0037213", "EGF_Stimulus": "1.14"}, {"ID": "FBgn0085360", "EGF_Stimulus": "1.32"}, {"ID": "FBgn0046776", "EGF_Stimulus": "4.44"}, {"ID": "FBgn0027794", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0033235", "EGF_Stimulus": "-1.1"}, {"ID": "FBgn0037364", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0051016", "EGF_Stimulus": "-0.88"}, {"ID": "FBgn0032138", "EGF_Stimulus": "-0.72"}, {"ID": "FBgn0051365", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0036807", "EGF_Stimulus": "-0.91"}, {"ID": "FBgn0037115", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0053282", "EGF_Stimulus": "1.01"}, {"ID": "FBgn0039731", "EGF_Stimulus": "1.02"}, {"ID": "FBgn0037956", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0030918", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0030796", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0012042", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0053322", "EGF_Stimulus": "-0.75"}, {"ID": "FBgn0005630", "EGF_Stimulus": "-2.16"}, {"ID": "FBgn0035086", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0011586", "EGF_Stimulus": "2.04"}, {"ID": "FBgn0052720", "EGF_Stimulus": "-0.3"}, {"ID": "FBgn0033524", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0029093", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0085456", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0028852", "EGF_Stimulus": "1.71"}, {"ID": "FBgn0054002", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0035023", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0050053", "EGF_Stimulus": "1.61"}, {"ID": "FBgn0035766", "EGF_Stimulus": "-1.48"}, {"ID": "FBgn0037638", "EGF_Stimulus": "1.21"}, {"ID": "FBgn0053648", "EGF_Stimulus": "-1.34"}, {"ID": "FBgn0002413", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0033588", "EGF_Stimulus": "0.26"}, {"ID": "FBgn0261698", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0032409", "EGF_Stimulus": "-0.6"}, {"ID": "FBgn0051882", "EGF_Stimulus": "0.21"}, {"ID": "FBgn0035382", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0259139", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0028847", "EGF_Stimulus": "-1.42"}, {"ID": "FBgn0030863", "EGF_Stimulus": "1.46"}, {"ID": "FBgn0037739", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0003975", "EGF_Stimulus": "-1.6"}, {"ID": "FBgn0034756", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0051805", "EGF_Stimulus": "-1.23"}, {"ID": "FBgn0036194", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0033447", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0037944", "EGF_Stimulus": "2.53"}, {"ID": "FBgn0039254", "EGF_Stimulus": "-0.97"}, {"ID": "FBgn0023177", "EGF_Stimulus": "-1.67"}, {"ID": "FBgn0038603", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0037832", "EGF_Stimulus": "0.98"}, {"ID": "FBgn0052022", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0011300", "EGF_Stimulus": "1.13"}, {"ID": "FBgn0013813", "EGF_Stimulus": "-0.83"}, {"ID": "FBgn0030729", "EGF_Stimulus": "-0.92"}, {"ID": "FBgn0024315", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0038952", "EGF_Stimulus": "-0.21"}, {"ID": "FBgn0033653", "EGF_Stimulus": "1.55"}, {"ID": "FBgn0035295", "EGF_Stimulus": "-0.59"}, {"ID": "FBgn0038307", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0085354", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0036150", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0030840", "EGF_Stimulus": "0.22"}, {"ID": "FBgn0032796", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0037044", "EGF_Stimulus": "-0.67"}, {"ID": "FBgn0036028", "EGF_Stimulus": "-0.46"}, {"ID": "FBgn0029888", "EGF_Stimulus": "0.22"}, {"ID": "FBgn0029799", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0259707", "EGF_Stimulus": "1.25"}, {"ID": "FBgn0026402", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0034826", "EGF_Stimulus": "-1.45"}, {"ID": "FBgn0034491", "EGF_Stimulus": "-0.84"}, {"ID": "FBgn0032669", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0086711", "EGF_Stimulus": "1.91"}, {"ID": "FBgn0004837", "EGF_Stimulus": "1.74"}, {"ID": "FBgn0038042", "EGF_Stimulus": "-2.09"}, {"ID": "FBgn0005777", "EGF_Stimulus": "1.09"}, {"ID": "FBgn0036481", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0033052", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0040734", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0037064", "EGF_Stimulus": "-1.15"}, {"ID": "FBgn0030270", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0028968", "EGF_Stimulus": "-3.98"}, {"ID": "FBgn0025645", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0038662", "EGF_Stimulus": "1.67"}, {"ID": "FBgn0031047", "EGF_Stimulus": "1.41"}, {"ID": "FBgn0038897", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0022943", "EGF_Stimulus": "-2.82"}, {"ID": "FBgn0036257", "EGF_Stimulus": "-1.79"}, {"ID": "FBgn0032210", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0002922", "EGF_Stimulus": "-0.39"}, {"ID": "FBgn0032647", "EGF_Stimulus": "1.58"}, {"ID": "FBgn0040298", "EGF_Stimulus": "-3.65"}, {"ID": "FBgn0037555", "EGF_Stimulus": "1.36"}, {"ID": "FBgn0036319", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0035942", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0034579", "EGF_Stimulus": "-0.12"}, {"ID": "FBgn0040001", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0039817", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0037106", "EGF_Stimulus": "-2.82"}, {"ID": "FBgn0004368", "EGF_Stimulus": "-1.78"}, {"ID": "FBgn0031832", "EGF_Stimulus": "-0.79"}, {"ID": "FBgn0003210", "EGF_Stimulus": "-0.4"}, {"ID": "FBgn0032651", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0053158", "EGF_Stimulus": "1.3"}, {"ID": "FBgn0033178", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0017572", "EGF_Stimulus": "-0.95"}, {"ID": "FBgn0027498", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0027492", "EGF_Stimulus": "1.48"}, {"ID": "FBgn0003317", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0031735", "EGF_Stimulus": "-1.23"}, {"ID": "FBgn0035953", "EGF_Stimulus": "1.02"}, {"ID": "FBgn0043458", "EGF_Stimulus": "1.6"}, {"ID": "FBgn0051025", "EGF_Stimulus": "-0.69"}, {"ID": "FBgn0024232", "EGF_Stimulus": "0.27"}, {"ID": "FBgn0035099", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0034371", "EGF_Stimulus": "1.09"}, {"ID": "FBgn0035708", "EGF_Stimulus": "1.05"}, {"ID": "FBgn0011204", "EGF_Stimulus": "1.56"}, {"ID": "FBgn0015019", "EGF_Stimulus": "-1.26"}, {"ID": "FBgn0000482", "EGF_Stimulus": "-0.36"}, {"ID": "FBgn0033750", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0036007", "EGF_Stimulus": "1.41"}, {"ID": "FBgn0031407", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0035246", "EGF_Stimulus": "-1.34"}, {"ID": "FBgn0033350", "EGF_Stimulus": "-2.36"}, {"ID": "FBgn0033093", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0032486", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0050035", "EGF_Stimulus": "1.19"}, {"ID": "FBgn0038006", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0035113", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0043792", "EGF_Stimulus": "1.05"}, {"ID": "FBgn0003950", "EGF_Stimulus": "-0.62"}, {"ID": "FBgn0037026", "EGF_Stimulus": "-0.04"}, {"ID": "FBgn0034447", "EGF_Stimulus": "1.15"}, {"ID": "FBgn0086613", "EGF_Stimulus": "-1.98"}, {"ID": "FBgn0036099", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0052451", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0011725", "EGF_Stimulus": "-2.21"}, {"ID": "FBgn0031814", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0031747", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0010355", "EGF_Stimulus": "-0.76"}, {"ID": "FBgn0036341", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0033107", "EGF_Stimulus": "0.2"}, {"ID": "FBgn0050295", "EGF_Stimulus": "-1.19"}, {"ID": "FBgn0053775", "EGF_Stimulus": "-1.44"}, {"ID": "FBgn0260481", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0030642", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0261647", "EGF_Stimulus": "2.49"}, {"ID": "FBgn0050077", "EGF_Stimulus": "-0.92"}, {"ID": "FBgn0030883", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0038109", "EGF_Stimulus": "1.91"}, {"ID": "FBgn0052448", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0053180", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0034229", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0042198", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0000259", "EGF_Stimulus": "1.71"}, {"ID": "FBgn0022349", "EGF_Stimulus": "1.34"}, {"ID": "FBgn0051126", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0036612", "EGF_Stimulus": "1.61"}, {"ID": "FBgn0028746", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0038584", "EGF_Stimulus": "-0.97"}, {"ID": "FBgn0039881", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0019960", "EGF_Stimulus": "-0.93"}, {"ID": "FBgn0020621", "EGF_Stimulus": "-1"}, {"ID": "FBgn0033321", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0030853", "EGF_Stimulus": "-1.03"}, {"ID": "FBgn0031770", "EGF_Stimulus": "1.54"}, {"ID": "FBgn0030753", "EGF_Stimulus": "-0.21"}, {"ID": "FBgn0032833", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0037419", "EGF_Stimulus": "1.66"}, {"ID": "FBgn0052407", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0032431", "EGF_Stimulus": "1.02"}, {"ID": "FBgn0011648", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0085488", "EGF_Stimulus": "0.26"}, {"ID": "FBgn0017561", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0033706", "EGF_Stimulus": "1.07"}, {"ID": "FBgn0028668", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0052027", "EGF_Stimulus": "-0.91"}, {"ID": "FBgn0039408", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0000352", "EGF_Stimulus": "-1.43"}, {"ID": "FBgn0038659", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0039768", "EGF_Stimulus": "-0.25"}, {"ID": "FBgn0031660", "EGF_Stimulus": "1.03"}, {"ID": "FBgn0031802", "EGF_Stimulus": "1.24"}, {"ID": "FBgn0029147", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0037563", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0032690", "EGF_Stimulus": "1.94"}, {"ID": "FBgn0040532", "EGF_Stimulus": "0.18"}, {"ID": "FBgn0052791", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0035141", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0038482", "EGF_Stimulus": "3.62"}, {"ID": "FBgn0039092", "EGF_Stimulus": "-0.96"}, {"ID": "FBgn0030504", "EGF_Stimulus": "-1.43"}, {"ID": "FBgn0039694", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0031765", "EGF_Stimulus": "-0.9"}, {"ID": "FBgn0014022", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0039613", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0033629", "EGF_Stimulus": "-2.05"}, {"ID": "FBgn0259927", "EGF_Stimulus": "1.56"}, {"ID": "FBgn0051414", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0035384", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0037001", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0053752", "EGF_Stimulus": "1.02"}, {"ID": "FBgn0260990", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0028500", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0037081", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0085419", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0036878", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0032214", "EGF_Stimulus": "1.28"}, {"ID": "FBgn0086673", "EGF_Stimulus": "1.61"}, {"ID": "FBgn0037249", "EGF_Stimulus": "-3.18"}, {"ID": "FBgn0037461", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0037504", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0046294", "EGF_Stimulus": "1.3"}, {"ID": "FBgn0053519", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0034973", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0052987", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0035969", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0032050", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0033569", "EGF_Stimulus": "1.1"}, {"ID": "FBgn0040954", "EGF_Stimulus": "-0.81"}, {"ID": "FBgn0036083", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0036706", "EGF_Stimulus": "-1.01"}, {"ID": "FBgn0036292", "EGF_Stimulus": "-0.48"}, {"ID": "FBgn0259483", "EGF_Stimulus": "0.25"}, {"ID": "FBgn0037255", "EGF_Stimulus": "-1.2"}, {"ID": "FBgn0030049", "EGF_Stimulus": "1.1"}, {"ID": "FBgn0038189", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0035505", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0031093", "EGF_Stimulus": "5.65"}, {"ID": "FBgn0000499", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0037583", "EGF_Stimulus": "1.15"}, {"ID": "FBgn0037670", "EGF_Stimulus": "1.27"}, {"ID": "FBgn0030537", "EGF_Stimulus": "-0.4"}, {"ID": "FBgn0037369", "EGF_Stimulus": "-0.57"}, {"ID": "FBgn0038233", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0051278", "EGF_Stimulus": "1.09"}, {"ID": "FBgn0031786", "EGF_Stimulus": "-0.3"}, {"ID": "FBgn0050106", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0052446", "EGF_Stimulus": "-1.3"}, {"ID": "FBgn0054007", "EGF_Stimulus": "1.79"}, {"ID": "FBgn0039923", "EGF_Stimulus": "-4.05"}, {"ID": "FBgn0083945", "EGF_Stimulus": "1.25"}, {"ID": "FBgn0026257", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0036386", "EGF_Stimulus": "1.11"}, {"ID": "FBgn0027085", "EGF_Stimulus": "1.34"}, {"ID": "FBgn0036909", "EGF_Stimulus": "-0.77"}, {"ID": "FBgn0043532", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0085412", "EGF_Stimulus": "0.99"}, {"ID": "FBgn0010282", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0261529", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0002565", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0085201", "EGF_Stimulus": "-1.71"}, {"ID": "FBgn0051713", "EGF_Stimulus": "0.15"}, {"ID": "FBgn0031168", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0023211", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0010078", "EGF_Stimulus": "-3.44"}, {"ID": "FBgn0036848", "EGF_Stimulus": "-0.64"}, {"ID": "FBgn0032864", "EGF_Stimulus": "-1.52"}, {"ID": "FBgn0037618", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0031842", "EGF_Stimulus": "-0.6"}, {"ID": "FBgn0029121", "EGF_Stimulus": "-1.01"}, {"ID": "FBgn0016917", "EGF_Stimulus": "2.55"}, {"ID": "FBgn0052319", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0052237", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0037301", "EGF_Stimulus": "1.25"}, {"ID": "FBgn0036809", "EGF_Stimulus": "-1"}, {"ID": "FBgn0031619", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0028902", "EGF_Stimulus": "1.01"}, {"ID": "FBgn0030823", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0053284", "EGF_Stimulus": "0.24"}, {"ID": "FBgn0052751", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0030571", "EGF_Stimulus": "0.12"}, {"ID": "FBgn0037241", "EGF_Stimulus": "-1.43"}, {"ID": "FBgn0031610", "EGF_Stimulus": "-0.98"}, {"ID": "FBgn0041706", "EGF_Stimulus": "-1.15"}, {"ID": "FBgn0032422", "EGF_Stimulus": "-0.54"}, {"ID": "FBgn0051116", "EGF_Stimulus": "1.51"}, {"ID": "FBgn0038862", "EGF_Stimulus": "-2.05"}, {"ID": "FBgn0035155", "EGF_Stimulus": "-0.31"}, {"ID": "FBgn0051292", "EGF_Stimulus": "-0.83"}, {"ID": "FBgn0038686", "EGF_Stimulus": "1.61"}, {"ID": "FBgn0044872", "EGF_Stimulus": "1.2"}, {"ID": "FBgn0036929", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0030328", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0031061", "EGF_Stimulus": "-0.07"}, {"ID": "FBgn0037329", "EGF_Stimulus": "1.48"}, {"ID": "FBgn0015570", "EGF_Stimulus": "-1.06"}, {"ID": "FBgn0052523", "EGF_Stimulus": "-0.31"}, {"ID": "FBgn0004893", "EGF_Stimulus": "-1.72"}, {"ID": "FBgn0036832", "EGF_Stimulus": "1.14"}, {"ID": "FBgn0034745", "EGF_Stimulus": "-1.94"}, {"ID": "FBgn0027594", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0013343", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0051251", "EGF_Stimulus": "-0.69"}, {"ID": "FBgn0028371", "EGF_Stimulus": "-0.89"}, {"ID": "FBgn0037078", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0033723", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0085259", "EGF_Stimulus": "-0.35"}, {"ID": "FBgn0023458", "EGF_Stimulus": "-0.96"}, {"ID": "FBgn0034910", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0043456", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0052726", "EGF_Stimulus": "-1.23"}, {"ID": "FBgn0031504", "EGF_Stimulus": "0.91"}, {"ID": "FBgn0039102", "EGF_Stimulus": "1.53"}, {"ID": "FBgn0024991", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0013759", "EGF_Stimulus": "-0.75"}, {"ID": "FBgn0050196", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0050350", "EGF_Stimulus": "-1.1"}, {"ID": "FBgn0003444", "EGF_Stimulus": "0.23"}, {"ID": "FBgn0050362", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0026598", "EGF_Stimulus": "1.55"}, {"ID": "FBgn0038446", "EGF_Stimulus": "1.39"}, {"ID": "FBgn0039830", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0014930", "EGF_Stimulus": "1.05"}, {"ID": "FBgn0033830", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0034248", "EGF_Stimulus": "-1.02"}, {"ID": "FBgn0032706", "EGF_Stimulus": "-1.37"}, {"ID": "FBgn0028546", "EGF_Stimulus": "-0.63"}, {"ID": "FBgn0000719", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0051798", "EGF_Stimulus": "1.53"}, {"ID": "FBgn0040674", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0005536", "EGF_Stimulus": "-1.26"}, {"ID": "FBgn0031104", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0083167", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0001185", "EGF_Stimulus": "1.61"}, {"ID": "FBgn0037998", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0039425", "EGF_Stimulus": "-1.49"}, {"ID": "FBgn0036234", "EGF_Stimulus": "-0.95"}, {"ID": "FBgn0031955", "EGF_Stimulus": "0.1"}, {"ID": "FBgn0004828", "EGF_Stimulus": "-1.28"}, {"ID": "FBgn0030590", "EGF_Stimulus": "-0.18"}, {"ID": "FBgn0039109", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0032780", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0033557", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0033807", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0002284", "EGF_Stimulus": "-3.56"}, {"ID": "FBgn0038761", "EGF_Stimulus": "0.25"}, {"ID": "FBgn0031472", "EGF_Stimulus": "0.81"}, {"ID": "FBgn0032853", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0026376", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0052984", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0038975", "EGF_Stimulus": "-0.94"}, {"ID": "FBgn0013679", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0034906", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0030747", "EGF_Stimulus": "-0.34"}, {"ID": "FBgn0037204", "EGF_Stimulus": "-1.23"}, {"ID": "FBgn0030686", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0250837", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0036568", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0032262", "EGF_Stimulus": "-0.34"}, {"ID": "FBgn0003429", "EGF_Stimulus": "1.73"}, {"ID": "FBgn0025595", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0032187", "EGF_Stimulus": "-1.68"}, {"ID": "FBgn0037186", "EGF_Stimulus": "-1.44"}, {"ID": "FBgn0085451", "EGF_Stimulus": "1.39"}, {"ID": "FBgn0036314", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0035735", "EGF_Stimulus": "-0.2"}, {"ID": "FBgn0085190", "EGF_Stimulus": "-1.02"}, {"ID": "FBgn0029818", "EGF_Stimulus": "1.14"}, {"ID": "FBgn0028471", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0039483", "EGF_Stimulus": "-0.63"}, {"ID": "FBgn0035604", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0030704", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0033285", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0004643", "EGF_Stimulus": "-1.37"}, {"ID": "FBgn0033226", "EGF_Stimulus": "0.21"}, {"ID": "FBgn0037828", "EGF_Stimulus": "-0.81"}, {"ID": "FBgn0259140", "EGF_Stimulus": "-0.59"}, {"ID": "FBgn0027074", "EGF_Stimulus": "0.3"}, {"ID": "FBgn0011573", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0034380", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0038321", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0038964", "EGF_Stimulus": "-1.2"}, {"ID": "FBgn0010416", "EGF_Stimulus": "-1.45"}, {"ID": "FBgn0053489", "EGF_Stimulus": "-0.24"}, {"ID": "FBgn0013442", "EGF_Stimulus": "1.11"}, {"ID": "FBgn0029986", "EGF_Stimulus": "0.48"}, {"ID": "FBgn0031998", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0026361", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0029811", "EGF_Stimulus": "-0.48"}, {"ID": "FBgn0034776", "EGF_Stimulus": "0.63"}, {"ID": "FBgn0052113", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0023171", "EGF_Stimulus": "-1.34"}, {"ID": "FBgn0029867", "EGF_Stimulus": "1.13"}, {"ID": "FBgn0260748", "EGF_Stimulus": "1.53"}, {"ID": "FBgn0028887", "EGF_Stimulus": "-1.9"}, {"ID": "FBgn0085486", "EGF_Stimulus": "0.94"}, {"ID": "FBgn0050154", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0000711", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0040207", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0028325", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0039219", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0029831", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0028658", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0036834", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0037470", "EGF_Stimulus": "1.45"}, {"ID": "FBgn0001145", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0035811", "EGF_Stimulus": "-0.33"}, {"ID": "FBgn0019968", "EGF_Stimulus": "-1.09"}, {"ID": "FBgn0243511", "EGF_Stimulus": "0.14"}, {"ID": "FBgn0040773", "EGF_Stimulus": "-0.85"}, {"ID": "FBgn0033482", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0017577", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0039856", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0017456", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0035167", "EGF_Stimulus": "-0.2"}, {"ID": "FBgn0037981", "EGF_Stimulus": "1.88"}, {"ID": "FBgn0013953", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0027934", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0033164", "EGF_Stimulus": "-0.6"}, {"ID": "FBgn0004177", "EGF_Stimulus": "-3.55"}, {"ID": "FBgn0025725", "EGF_Stimulus": "-3.39"}, {"ID": "FBgn0042178", "EGF_Stimulus": "1.82"}, {"ID": "FBgn0005592", "EGF_Stimulus": "-1.59"}, {"ID": "FBgn0030572", "EGF_Stimulus": "-0.35"}, {"ID": "FBgn0038613", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0035266", "EGF_Stimulus": "-1.01"}, {"ID": "FBgn0036183", "EGF_Stimulus": "1.11"}, {"ID": "FBgn0003870", "EGF_Stimulus": "-1.1"}, {"ID": "FBgn0033692", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0034286", "EGF_Stimulus": "1.61"}, {"ID": "FBgn0026323", "EGF_Stimulus": "-0.93"}, {"ID": "FBgn0034065", "EGF_Stimulus": "-1.07"}, {"ID": "FBgn0036157", "EGF_Stimulus": "0.21"}, {"ID": "FBgn0034940", "EGF_Stimulus": "-0.99"}, {"ID": "FBgn0025833", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0027611", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0260386", "EGF_Stimulus": "-0.7"}, {"ID": "FBgn0045473", "EGF_Stimulus": "-1.22"}, {"ID": "FBgn0024371", "EGF_Stimulus": "1.11"}, {"ID": "FBgn0039623", "EGF_Stimulus": "-0.1"}, {"ID": "FBgn0028978", "EGF_Stimulus": "-0.3"}, {"ID": "FBgn0036331", "EGF_Stimulus": "-0.15"}, {"ID": "FBgn0054039", "EGF_Stimulus": "-0.37"}, {"ID": "FBgn0030664", "EGF_Stimulus": "-0.34"}, {"ID": "FBgn0019952", "EGF_Stimulus": "-0.43"}, {"ID": "FBgn0033461", "EGF_Stimulus": "1.18"}, {"ID": "FBgn0024556", "EGF_Stimulus": "0.23"}, {"ID": "FBgn0035106", "EGF_Stimulus": "1.38"}, {"ID": "FBgn0038065", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0033581", "EGF_Stimulus": "1.36"}, {"ID": "FBgn0053160", "EGF_Stimulus": "0.12"}, {"ID": "FBgn0010389", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0034782", "EGF_Stimulus": "0.21"}, {"ID": "FBgn0046692", "EGF_Stimulus": "-0.47"}, {"ID": "FBgn0031589", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0033243", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0052650", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0024985", "EGF_Stimulus": "-0.44"}, {"ID": "FBgn0000018", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0028940", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0261547", "EGF_Stimulus": "-0.7"}, {"ID": "FBgn0250830", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0261015", "EGF_Stimulus": "1.57"}, {"ID": "FBgn0027052", "EGF_Stimulus": "1.17"}, {"ID": "FBgn0036105", "EGF_Stimulus": "-0.62"}, {"ID": "FBgn0030530", "EGF_Stimulus": "-0.6"}, {"ID": "FBgn0085334", "EGF_Stimulus": "1.6"}, {"ID": "FBgn0035337", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0040606", "EGF_Stimulus": "1.15"}, {"ID": "FBgn0032479", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0261445", "EGF_Stimulus": "1.47"}, {"ID": "FBgn0020312", "EGF_Stimulus": "-1.46"}, {"ID": "FBgn0050472", "EGF_Stimulus": "1.03"}, {"ID": "FBgn0033017", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0050088", "EGF_Stimulus": "0.14"}, {"ID": "FBgn0022774", "EGF_Stimulus": "-0.82"}, {"ID": "FBgn0016034", "EGF_Stimulus": "1.51"}, {"ID": "FBgn0029172", "EGF_Stimulus": "-3.33"}, {"ID": "FBgn0000588", "EGF_Stimulus": "-0.4"}, {"ID": "FBgn0034400", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0026602", "EGF_Stimulus": "1.05"}, {"ID": "FBgn0024889", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0050389", "EGF_Stimulus": "-0.45"}, {"ID": "FBgn0051676", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0038941", "EGF_Stimulus": "1.98"}, {"ID": "FBgn0024887", "EGF_Stimulus": "0.3"}, {"ID": "FBgn0030740", "EGF_Stimulus": "-1.14"}, {"ID": "FBgn0052183", "EGF_Stimulus": "1.18"}, {"ID": "FBgn0003231", "EGF_Stimulus": "1.01"}, {"ID": "FBgn0001229", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0038072", "EGF_Stimulus": "1.24"}, {"ID": "FBgn0023535", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0036503", "EGF_Stimulus": "1.66"}, {"ID": "FBgn0036334", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0039265", "EGF_Stimulus": "1.18"}, {"ID": "FBgn0051100", "EGF_Stimulus": "1.09"}, {"ID": "FBgn0052642", "EGF_Stimulus": "0.6"}, {"ID": "FBgn0026787", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0037577", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0032771", "EGF_Stimulus": "-0.74"}, {"ID": "FBgn0010340", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0034137", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0039959", "EGF_Stimulus": "0.7"}, {"ID": "FBgn0002579", "EGF_Stimulus": "-4.03"}, {"ID": "FBgn0085285", "EGF_Stimulus": "-2.21"}, {"ID": "FBgn0051467", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0015372", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0051716", "EGF_Stimulus": "1.88"}, {"ID": "FBgn0029666", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0039908", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0034999", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0034854", "EGF_Stimulus": "-1.49"}, {"ID": "FBgn0000658", "EGF_Stimulus": "-0.11"}, {"ID": "FBgn0036438", "EGF_Stimulus": "-0.81"}, {"ID": "FBgn0035554", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0259145", "EGF_Stimulus": "-1.29"}, {"ID": "FBgn0038251", "EGF_Stimulus": "-1.36"}, {"ID": "FBgn0027506", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0029709", "EGF_Stimulus": "-1.13"}, {"ID": "FBgn0036144", "EGF_Stimulus": "0.97"}, {"ID": "FBgn0045500", "EGF_Stimulus": "-0.67"}, {"ID": "FBgn0260399", "EGF_Stimulus": "1.22"}, {"ID": "FBgn0050222", "EGF_Stimulus": "-1.52"}, {"ID": "FBgn0037382", "EGF_Stimulus": "0.68"}, {"ID": "FBgn0026755", "EGF_Stimulus": "1.34"}, {"ID": "FBgn0025140", "EGF_Stimulus": "-1.87"}, {"ID": "FBgn0023174", "EGF_Stimulus": "-3.53"}, {"ID": "FBgn0019890", "EGF_Stimulus": "-3.15"}, {"ID": "FBgn0032298", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0046793", "EGF_Stimulus": "-1.23"}, {"ID": "FBgn0037656", "EGF_Stimulus": "1.04"}, {"ID": "FBgn0035523", "EGF_Stimulus": "-0.59"}, {"ID": "FBgn0033191", "EGF_Stimulus": "0.36"}, {"ID": "FBgn0034628", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0025686", "EGF_Stimulus": "-0.83"}, {"ID": "FBgn0034113", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0029710", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0051008", "EGF_Stimulus": "-2.22"}, {"ID": "FBgn0038652", "EGF_Stimulus": "1.84"}, {"ID": "FBgn0024698", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0046876", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0051224", "EGF_Stimulus": "1.56"}, {"ID": "FBgn0004009", "EGF_Stimulus": "-0.7"}, {"ID": "FBgn0011710", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0050378", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0010380", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0034833", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0034145", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0031972", "EGF_Stimulus": "-1.72"}, {"ID": "FBgn0033732", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0037146", "EGF_Stimulus": "1.02"}, {"ID": "FBgn0034053", "EGF_Stimulus": "1.19"}, {"ID": "FBgn0031914", "EGF_Stimulus": "0.75"}, {"ID": "FBgn0032052", "EGF_Stimulus": "0.78"}, {"ID": "FBgn0033549", "EGF_Stimulus": "0.94"}, {"ID": "FBgn0001219", "EGF_Stimulus": "-2.25"}, {"ID": "FBgn0033169", "EGF_Stimulus": "-1.32"}, {"ID": "FBgn0042133", "EGF_Stimulus": "-0.63"}, {"ID": "FBgn0032031", "EGF_Stimulus": "-0.33"}, {"ID": "FBgn0036426", "EGF_Stimulus": "-0.65"}, {"ID": "FBgn0029899", "EGF_Stimulus": "-0.91"}, {"ID": "FBgn0040296", "EGF_Stimulus": "0.14"}, {"ID": "FBgn0038508", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0030468", "EGF_Stimulus": "2.26"}, {"ID": "FBgn0033055", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0011556", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0032145", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0086451", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0052396", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0037890", "EGF_Stimulus": "-1.94"}, {"ID": "FBgn0261041", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0046225", "EGF_Stimulus": "-0.72"}, {"ID": "FBgn0041194", "EGF_Stimulus": "-0.99"}, {"ID": "FBgn0030033", "EGF_Stimulus": "-1.28"}, {"ID": "FBgn0030697", "EGF_Stimulus": "-1.26"}, {"ID": "FBgn0039867", "EGF_Stimulus": "0.26"}, {"ID": "FBgn0027053", "EGF_Stimulus": "-0.79"}, {"ID": "FBgn0039601", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0040649", "EGF_Stimulus": "-0.37"}, {"ID": "FBgn0037320", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0062411", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0038583", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0053477", "EGF_Stimulus": "0.22"}, {"ID": "FBgn0259212", "EGF_Stimulus": "-0.9"}, {"ID": "FBgn0031560", "EGF_Stimulus": "1.19"}, {"ID": "FBgn0086129", "EGF_Stimulus": "-0.66"}, {"ID": "FBgn0085377", "EGF_Stimulus": "0.94"}, {"ID": "FBgn0052773", "EGF_Stimulus": "1.01"}, {"ID": "FBgn0004589", "EGF_Stimulus": "-0.27"}, {"ID": "FBgn0050380", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0020764", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0039758", "EGF_Stimulus": "1.09"}, {"ID": "FBgn0086916", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0039510", "EGF_Stimulus": "-1.17"}, {"ID": "FBgn0032122", "EGF_Stimulus": "-0.88"}, {"ID": "FBgn0260858", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0250753", "EGF_Stimulus": "1.83"}, {"ID": "FBgn0039056", "EGF_Stimulus": "-2.04"}, {"ID": "FBgn0036461", "EGF_Stimulus": "1.17"}, {"ID": "FBgn0037924", "EGF_Stimulus": "-1.15"}, {"ID": "FBgn0085424", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0030373", "EGF_Stimulus": "-0.33"}, {"ID": "FBgn0031132", "EGF_Stimulus": "-0.31"}, {"ID": "FBgn0086446", "EGF_Stimulus": "1.29"}, {"ID": "FBgn0034565", "EGF_Stimulus": "1.05"}, {"ID": "FBgn0052017", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0033799", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0087007", "EGF_Stimulus": "-0.94"}, {"ID": "FBgn0035926", "EGF_Stimulus": "0.96"}, {"ID": "FBgn0010235", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0037630", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0002543", "EGF_Stimulus": "1.39"}, {"ID": "FBgn0086698", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0037897", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0035192", "EGF_Stimulus": "-0.63"}, {"ID": "FBgn0011294", "EGF_Stimulus": "0.65"}, {"ID": "FBgn0015324", "EGF_Stimulus": "-1.16"}, {"ID": "FBgn0085329", "EGF_Stimulus": "-0.37"}, {"ID": "FBgn0037261", "EGF_Stimulus": "-1.2"}, {"ID": "FBgn0000277", "EGF_Stimulus": "-0.4"}, {"ID": "FBgn0033915", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0026315", "EGF_Stimulus": "-0.36"}, {"ID": "FBgn0040805", "EGF_Stimulus": "-2.03"}, {"ID": "FBgn0041236", "EGF_Stimulus": "-0.64"}, {"ID": "FBgn0052627", "EGF_Stimulus": "1.27"}, {"ID": "FBgn0040250", "EGF_Stimulus": "1.62"}, {"ID": "FBgn0054049", "EGF_Stimulus": "-1.69"}, {"ID": "FBgn0031459", "EGF_Stimulus": "-0.87"}, {"ID": "FBgn0034667", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0051216", "EGF_Stimulus": "-0.61"}, {"ID": "FBgn0038727", "EGF_Stimulus": "-1.29"}, {"ID": "FBgn0051601", "EGF_Stimulus": "-0.13"}, {"ID": "FBgn0031993", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0037440", "EGF_Stimulus": "1.17"}, {"ID": "FBgn0033204", "EGF_Stimulus": "-1.81"}, {"ID": "FBgn0051637", "EGF_Stimulus": "-0.52"}, {"ID": "FBgn0038638", "EGF_Stimulus": "1.02"}, {"ID": "FBgn0050001", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0026399", "EGF_Stimulus": "-1"}, {"ID": "FBgn0016974", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0033953", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0035619", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0036542", "EGF_Stimulus": "-1.51"}, {"ID": "FBgn0031418", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0035713", "EGF_Stimulus": "1.46"}, {"ID": "FBgn0033442", "EGF_Stimulus": "2.34"}, {"ID": "FBgn0037782", "EGF_Stimulus": "-2.34"}, {"ID": "FBgn0259151", "EGF_Stimulus": "-1.06"}, {"ID": "FBgn0040351", "EGF_Stimulus": "0.57"}, {"ID": "FBgn0034733", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0038626", "EGF_Stimulus": "-0.15"}, {"ID": "FBgn0013732", "EGF_Stimulus": "1.54"}, {"ID": "FBgn0040309", "EGF_Stimulus": "-0.88"}, {"ID": "FBgn0039323", "EGF_Stimulus": "-1.36"}, {"ID": "FBgn0028499", "EGF_Stimulus": "-0.95"}, {"ID": "FBgn0015279", "EGF_Stimulus": "-0.15"}, {"ID": "FBgn0035831", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0039067", "EGF_Stimulus": "2.02"}, {"ID": "FBgn0038715", "EGF_Stimulus": "1.04"}, {"ID": "FBgn0038358", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0051084", "EGF_Stimulus": "-1.25"}, {"ID": "FBgn0050398", "EGF_Stimulus": "0.1"}, {"ID": "FBgn0004574", "EGF_Stimulus": "0.93"}, {"ID": "FBgn0053169", "EGF_Stimulus": "0.33"}, {"ID": "FBgn0085356", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0035428", "EGF_Stimulus": "0.47"}, {"ID": "FBgn0261571", "EGF_Stimulus": "1.17"}, {"ID": "FBgn0032059", "EGF_Stimulus": "1.54"}, {"ID": "FBgn0037181", "EGF_Stimulus": "-1.17"}, {"ID": "FBgn0030739", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0038747", "EGF_Stimulus": "1.11"}, {"ID": "FBgn0051202", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0030507", "EGF_Stimulus": "-0.21"}, {"ID": "FBgn0002570", "EGF_Stimulus": "0.58"}, {"ID": "FBgn0036775", "EGF_Stimulus": "-0.51"}, {"ID": "FBgn0028931", "EGF_Stimulus": "1.06"}, {"ID": "FBgn0036661", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0038304", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0031176", "EGF_Stimulus": "0.41"}, {"ID": "FBgn0004638", "EGF_Stimulus": "-1.08"}, {"ID": "FBgn0022764", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0053276", "EGF_Stimulus": "0.39"}, {"ID": "FBgn0025621", "EGF_Stimulus": "-0.77"}, {"ID": "FBgn0036205", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0037762", "EGF_Stimulus": "0.04"}, {"ID": "FBgn0085319", "EGF_Stimulus": "-0.6"}, {"ID": "FBgn0041103", "EGF_Stimulus": "-0.43"}, {"ID": "FBgn0004611", "EGF_Stimulus": "0.37"}, {"ID": "FBgn0053983", "EGF_Stimulus": "-1.12"}, {"ID": "FBgn0030359", "EGF_Stimulus": "0.17"}, {"ID": "FBgn0033135", "EGF_Stimulus": "1.08"}, {"ID": "FBgn0035806", "EGF_Stimulus": "1.26"}, {"ID": "FBgn0032785", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0033355", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0030327", "EGF_Stimulus": "-1.17"}, {"ID": "FBgn0015229", "EGF_Stimulus": "1.64"}, {"ID": "FBgn0031229", "EGF_Stimulus": "-1.28"}, {"ID": "FBgn0038344", "EGF_Stimulus": "-1.51"}, {"ID": "FBgn0036586", "EGF_Stimulus": "-1.06"}, {"ID": "FBgn0034265", "EGF_Stimulus": "0.46"}, {"ID": "FBgn0036356", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0040963", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0051232", "EGF_Stimulus": "1.4"}, {"ID": "FBgn0034261", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0037456", "EGF_Stimulus": "-0.85"}, {"ID": "FBgn0051730", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0032363", "EGF_Stimulus": "0.26"}, {"ID": "FBgn0034935", "EGF_Stimulus": "0.72"}, {"ID": "FBgn0033886", "EGF_Stimulus": "-0.34"}, {"ID": "FBgn0028683", "EGF_Stimulus": "0.2"}, {"ID": "FBgn0030558", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0040842", "EGF_Stimulus": "0.31"}, {"ID": "FBgn0025936", "EGF_Stimulus": "-0.55"}, {"ID": "FBgn0039840", "EGF_Stimulus": "1.02"}, {"ID": "FBgn0034819", "EGF_Stimulus": "1.84"}, {"ID": "FBgn0004552", "EGF_Stimulus": "0.84"}, {"ID": "FBgn0000409", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0039024", "EGF_Stimulus": "1.12"}, {"ID": "FBgn0052803", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0035970", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0038925", "EGF_Stimulus": "0.16"}, {"ID": "FBgn0000581", "EGF_Stimulus": "-5.93"}, {"ID": "FBgn0021760", "EGF_Stimulus": "-1.6"}, {"ID": "FBgn0015756", "EGF_Stimulus": "-3.58"}, {"ID": "FBgn0029890", "EGF_Stimulus": "1.8"}, {"ID": "FBgn0032268", "EGF_Stimulus": "0.25"}, {"ID": "FBgn0034674", "EGF_Stimulus": "-0.68"}, {"ID": "FBgn0028913", "EGF_Stimulus": "-0.53"}, {"ID": "FBgn0000448", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0032517", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0053288", "EGF_Stimulus": "-1.3"}, {"ID": "FBgn0037512", "EGF_Stimulus": "0.66"}, {"ID": "FBgn0037283", "EGF_Stimulus": "-1.01"}, {"ID": "FBgn0036311", "EGF_Stimulus": "0.94"}, {"ID": "FBgn0029719", "EGF_Stimulus": "-0.33"}, {"ID": "FBgn0040344", "EGF_Stimulus": "1.22"}, {"ID": "FBgn0038395", "EGF_Stimulus": "0.56"}, {"ID": "FBgn0031049", "EGF_Stimulus": "1.84"}, {"ID": "FBgn0039358", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0026147", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0036623", "EGF_Stimulus": "-1.13"}, {"ID": "FBgn0033903", "EGF_Stimulus": "0.19"}, {"ID": "FBgn0028520", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0003983", "EGF_Stimulus": "2.49"}, {"ID": "FBgn0034641", "EGF_Stimulus": "-1.11"}, {"ID": "FBgn0033539", "EGF_Stimulus": "-1.18"}, {"ID": "FBgn0035209", "EGF_Stimulus": "-0.98"}, {"ID": "FBgn0035584", "EGF_Stimulus": "-0.66"}, {"ID": "FBgn0031590", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0051211", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0031422", "EGF_Stimulus": "0.67"}, {"ID": "FBgn0004055", "EGF_Stimulus": "-1.23"}, {"ID": "FBgn0051721", "EGF_Stimulus": "0.9"}, {"ID": "FBgn0003292", "EGF_Stimulus": "0.51"}, {"ID": "FBgn0011771", "EGF_Stimulus": "0.73"}, {"ID": "FBgn0051913", "EGF_Stimulus": "-0.5"}, {"ID": "FBgn0036169", "EGF_Stimulus": "0.2"}, {"ID": "FBgn0031099", "EGF_Stimulus": "-0.59"}, {"ID": "FBgn0051907", "EGF_Stimulus": "-0.63"}, {"ID": "FBgn0039210", "EGF_Stimulus": "0.49"}, {"ID": "FBgn0003248", "EGF_Stimulus": "0.06"}, {"ID": "FBgn0032375", "EGF_Stimulus": "-0.32"}, {"ID": "FBgn0045759", "EGF_Stimulus": "-0.63"}, {"ID": "FBgn0034155", "EGF_Stimulus": "-0.17"}, {"ID": "FBgn0051533", "EGF_Stimulus": "-0.41"}, {"ID": "FBgn0001098", "EGF_Stimulus": "-2.1"}, {"ID": "FBgn0051481", "EGF_Stimulus": "-0.61"}, {"ID": "FBgn0051158", "EGF_Stimulus": "-1.82"}, {"ID": "FBgn0033437", "EGF_Stimulus": "0.92"}, {"ID": "FBgn0050021", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0010772", "EGF_Stimulus": "-1.2"}, {"ID": "FBgn0034577", "EGF_Stimulus": "1.17"}, {"ID": "FBgn0040370", "EGF_Stimulus": "0.69"}, {"ID": "FBgn0031183", "EGF_Stimulus": "0.44"}, {"ID": "FBgn0003048", "EGF_Stimulus": "1.05"}, {"ID": "FBgn0261574", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0034139", "EGF_Stimulus": "-0.63"}, {"ID": "FBgn0032004", "EGF_Stimulus": "0.74"}, {"ID": "FBgn0024184", "EGF_Stimulus": "2.17"}, {"ID": "FBgn0085399", "EGF_Stimulus": "-1.14"}, {"ID": "FBgn0086677", "EGF_Stimulus": "1.06"}, {"ID": "FBgn0067317", "EGF_Stimulus": "0.96"}, {"ID": "FBgn0036553", "EGF_Stimulus": "1.2"}, {"ID": "FBgn0033739", "EGF_Stimulus": "-1.78"}, {"ID": "FBgn0039234", "EGF_Stimulus": "0.95"}, {"ID": "FBgn0052428", "EGF_Stimulus": "0.26"}, {"ID": "FBgn0038738", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0032904", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0037486", "EGF_Stimulus": "-0.62"}, {"ID": "FBgn0034258", "EGF_Stimulus": "-3.76"}, {"ID": "FBgn0025720", "EGF_Stimulus": "1"}, {"ID": "FBgn0036162", "EGF_Stimulus": "1.09"}, {"ID": "FBgn0087002", "EGF_Stimulus": "0.42"}, {"ID": "FBgn0029971", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0031811", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0038312", "EGF_Stimulus": "1.05"}, {"ID": "FBgn0002631", "EGF_Stimulus": "0.54"}, {"ID": "FBgn0041243", "EGF_Stimulus": "-0.55"}, {"ID": "FBgn0052814", "EGF_Stimulus": "-0.67"}, {"ID": "FBgn0035725", "EGF_Stimulus": "-1.59"}, {"ID": "FBgn0040097", "EGF_Stimulus": "-0.96"}, {"ID": "FBgn0034098", "EGF_Stimulus": "1.59"}, {"ID": "FBgn0036346", "EGF_Stimulus": "1.09"}, {"ID": "FBgn0032444", "EGF_Stimulus": "-1.03"}, {"ID": "FBgn0035936", "EGF_Stimulus": "1.21"}, {"ID": "FBgn0039598", "EGF_Stimulus": "0.4"}, {"ID": "FBgn0260755", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0037273", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0031440", "EGF_Stimulus": "0.55"}, {"ID": "FBgn0038790", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0037225", "EGF_Stimulus": "0.32"}, {"ID": "FBgn0051935", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0052225", "EGF_Stimulus": "-0.43"}, {"ID": "FBgn0031533", "EGF_Stimulus": "0.17"}, {"ID": "FBgn0032074", "EGF_Stimulus": "0.8"}, {"ID": "FBgn0030892", "EGF_Stimulus": "0.45"}, {"ID": "FBgn0051450", "EGF_Stimulus": "0.62"}, {"ID": "FBgn0010549", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0261243", "EGF_Stimulus": "1.32"}, {"ID": "FBgn0032521", "EGF_Stimulus": "1.4"}, {"ID": "FBgn0028670", "EGF_Stimulus": "-1.26"}, {"ID": "FBgn0038277", "EGF_Stimulus": "-0.62"}, {"ID": "FBgn0086346", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0036763", "EGF_Stimulus": "-1.1"}, {"ID": "FBgn0003358", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0030994", "EGF_Stimulus": "0.52"}, {"ID": "FBgn0040093", "EGF_Stimulus": "-0.71"}, {"ID": "FBgn0039509", "EGF_Stimulus": "-0.95"}, {"ID": "FBgn0032638", "EGF_Stimulus": "-1.36"}, {"ID": "FBgn0034643", "EGF_Stimulus": "-1.15"}, {"ID": "FBgn0051926", "EGF_Stimulus": "-0.61"}, {"ID": "FBgn0050060", "EGF_Stimulus": "0.34"}, {"ID": "FBgn0027841", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0034919", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0031457", "EGF_Stimulus": "-0.42"}, {"ID": "FBgn0039911", "EGF_Stimulus": "-0.72"}, {"ID": "FBgn0023522", "EGF_Stimulus": "-0.76"}, {"ID": "FBgn0035070", "EGF_Stimulus": "-0.38"}, {"ID": "FBgn0035853", "EGF_Stimulus": "2.53"}, {"ID": "FBgn0037176", "EGF_Stimulus": "0.94"}, {"ID": "FBgn0037547", "EGF_Stimulus": "0.38"}, {"ID": "FBgn0036030", "EGF_Stimulus": "2.35"}, {"ID": "FBgn0044510", "EGF_Stimulus": "-1.09"}, {"ID": "FBgn0052815", "EGF_Stimulus": "1.37"}, {"ID": "FBgn0040496", "EGF_Stimulus": "0.86"}, {"ID": "FBgn0053205", "EGF_Stimulus": "0.87"}, {"ID": "FBgn0063494", "EGF_Stimulus": "1.16"}, {"ID": "FBgn0003023", "EGF_Stimulus": "0.59"}, {"ID": "FBgn0010501", "EGF_Stimulus": "-0.88"}, {"ID": "FBgn0004581", "EGF_Stimulus": "-0.57"}, {"ID": "FBgn0031276", "EGF_Stimulus": "-0.37"}, {"ID": "FBgn0035528", "EGF_Stimulus": "-0.3"}, {"ID": "FBgn0000052", "EGF_Stimulus": "0.77"}, {"ID": "FBgn0050055", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0031946", "EGF_Stimulus": "-0.65"}, {"ID": "FBgn0032080", "EGF_Stimulus": "1.56"}, {"ID": "FBgn0053137", "EGF_Stimulus": "-1.69"}, {"ID": "FBgn0030775", "EGF_Stimulus": "-0.14"}, {"ID": "FBgn0034681", "EGF_Stimulus": "-1.11"}, {"ID": "FBgn0038902", "EGF_Stimulus": "0.28"}, {"ID": "FBgn0039203", "EGF_Stimulus": "0.89"}, {"ID": "FBgn0039977", "EGF_Stimulus": "1.92"}, {"ID": "FBgn0025582", "EGF_Stimulus": "-3.57"}, {"ID": "FBgn0032949", "EGF_Stimulus": "1"}, {"ID": "FBgn0038928", "EGF_Stimulus": "1.31"}, {"ID": "FBgn0035918", "EGF_Stimulus": "0.2"}, {"ID": "FBgn0036934", "EGF_Stimulus": "-0.6"}, {"ID": "FBgn0023130", "EGF_Stimulus": "0.17"}, {"ID": "FBgn0032504", "EGF_Stimulus": "1.43"}, {"ID": "FBgn0038271", "EGF_Stimulus": "-1.09"}, {"ID": "FBgn0032916", "EGF_Stimulus": "0.71"}, {"ID": "FBgn0067407", "EGF_Stimulus": "0.09"}, {"ID": "FBgn0034398", "EGF_Stimulus": "-1.31"}, {"ID": "FBgn0035624", "EGF_Stimulus": "-0.81"}, {"ID": "FBgn0034866", "EGF_Stimulus": "-0.73"}, {"ID": "FBgn0051436", "EGF_Stimulus": "-0.47"}, {"ID": "FBgn0030500", "EGF_Stimulus": "-2.84"}, {"ID": "FBgn0031417", "EGF_Stimulus": "1"}, {"ID": "FBgn0014073", "EGF_Stimulus": "-0.8"}, {"ID": "FBgn0029993", "EGF_Stimulus": "-0.59"}, {"ID": "FBgn0035218", "EGF_Stimulus": "-0.52"}, {"ID": "FBgn0001981", "EGF_Stimulus": "-1.79"}, {"ID": "FBgn0034291", "EGF_Stimulus": "-1.43"}, {"ID": "FBgn0010531", "EGF_Stimulus": "0.76"}, {"ID": "FBgn0039677", "EGF_Stimulus": "0.53"}, {"ID": "FBgn0036851", "EGF_Stimulus": "0.82"}, {"ID": "FBgn0051267", "EGF_Stimulus": "0.83"}, {"ID": "FBgn0032368", "EGF_Stimulus": "-0.69"}, {"ID": "FBgn0030584", "EGF_Stimulus": "-0.96"}, {"ID": "FBgn0023169", "EGF_Stimulus": "0.85"}, {"ID": "FBgn0030443", "EGF_Stimulus": "0.5"}, {"ID": "FBgn0035008", "EGF_Stimulus": "-0.22"}, {"ID": "FBgn0030403", "EGF_Stimulus": "0.35"}, {"ID": "FBgn0001128", "EGF_Stimulus": "1.6"}, {"ID": "FBgn0250846", "EGF_Stimulus": "1.05"}, {"ID": "FBgn0015609", "EGF_Stimulus": "-0.49"}, {"ID": "FBgn0259994", "EGF_Stimulus": "2.45"}, {"ID": "FBgn0035011", "EGF_Stimulus": "-1.02"}, {"ID": "FBgn0033063", "EGF_Stimulus": "1.11"}, {"ID": "FBgn0032895", "EGF_Stimulus": "-0.74"}, {"ID": "FBgn0031141", "EGF_Stimulus": "0.64"}, {"ID": "FBgn0040069", "EGF_Stimulus": "0.79"}, {"ID": "FBgn0033471", "EGF_Stimulus": "-0.58"}, {"ID": "FBgn0035591", "EGF_Stimulus": "-0.17"}, {"ID": "FBgn0036822", "EGF_Stimulus": "0.88"}, {"ID": "FBgn0028530", "EGF_Stimulus": "0.61"}, {"ID": "FBgn0026136", "EGF_Stimulus": "1.23"}, {"ID": "FBgn0037356", "EGF_Stimulus": "-0.95"}, {"ID": "FBgn0038214", "EGF_Stimulus": "-0.67"}, {"ID": "FBgn0042110", "EGF_Stimulus": "0.43"}, {"ID": "FBgn0034202", "EGF_Stimulus": "-0.22"}] jc-1.17.3/tests/fixtures/generic/csv-flyrna2.tsv000066400000000000000000006156711415226333200215530ustar00rootroot00000000000000ID EGF_Stimulus FBgn0029994 -0.27 FBgn0037191 0.78 FBgn0036810 1.34 FBgn0033320 0.45 FBgn0051156 -0.76 FBgn0004635 -0.42 FBgn0260646 0.97 FBgn0038397 0.22 FBgn0010583 -0.59 FBgn0025583 -2.13 FBgn0032906 0.25 FBgn0031321 -0.42 FBgn0052568 0.39 FBgn0030674 1.63 FBgn0085397 -1.37 FBgn0038427 0.38 FBgn0033233 0.46 FBgn0033736 0.93 FBgn0033495 -0.33 FBgn0020503 -1.13 FBgn0031885 0.06 FBgn0067864 0.13 FBgn0035785 -1.06 FBgn0039673 1.01 FBgn0051717 -0.27 FBgn0030748 -0.58 FBgn0031751 -0.6 FBgn0039207 -0.96 FBgn0067312 -0.71 FBgn0052816 0.61 FBgn0040005 -1.3 FBgn0040477 -0.11 FBgn0029727 0.5 FBgn0039328 0.4 FBgn0066084 -1.64 FBgn0000053 1.49 FBgn0030038 -0.86 FBgn0052712 -0.92 FBgn0038481 0.09 FBgn0034162 0.31 FBgn0005632 -0.71 FBgn0034860 0.42 FBgn0259979 0.56 FBgn0051140 0.76 FBgn0038959 0.68 FBgn0034138 -2.91 FBgn0003388 0.56 FBgn0034945 -1.15 FBgn0033272 0.73 FBgn0050428 -1.11 FBgn0033556 2.11 FBgn0027341 -0.8 FBgn0029606 0.96 FBgn0261804 -0.62 FBgn0036465 -0.82 FBgn0027610 -1.76 FBgn0033997 0.26 FBgn0038834 -4.02 FBgn0027550 -0.52 FBgn0030992 1.47 FBgn0037109 0.99 FBgn0039198 1.71 FBgn0019686 1.44 FBgn0052251 1.5 FBgn0031987 -0.72 FBgn0034548 0.8 FBgn0053217 -0.94 FBgn0038092 2.75 FBgn0053627 -0.57 FBgn0037010 -0.77 FBgn0037895 0.66 FBgn0034477 -0.4 FBgn0029705 1.28 FBgn0013772 -0.46 FBgn0038437 0.86 FBgn0053178 0.58 FBgn0027559 0.21 FBgn0038389 -1.61 FBgn0031426 -1.15 FBgn0040784 -0.52 FBgn0001187 -0.27 FBgn0052450 -1.15 FBgn0028671 -1.93 FBgn0015614 1.12 FBgn0037009 -0.34 FBgn0032359 -0.74 FBgn0028717 -1.28 FBgn0032450 1.25 FBgn0033327 0.61 FBgn0051820 -1.19 FBgn0015773 0.34 FBgn0020299 -1.65 FBgn0034537 -4.73 FBgn0030286 0.54 FBgn0050469 -0.59 FBgn0260745 0.83 FBgn0037472 -0.94 FBgn0051054 -1.12 FBgn0031127 0.36 FBgn0051933 0.78 FBgn0029133 0.7 FBgn0260986 -0.58 FBgn0030503 0.54 FBgn0028491 0.69 FBgn0039359 -4.47 FBgn0030447 0.8 FBgn0000241 0.57 FBgn0083985 0.39 FBgn0030855 -0.28 FBgn0261241 -0.87 FBgn0015268 1.06 FBgn0033907 -0.75 FBgn0032001 0.5 FBgn0052758 -0.44 FBgn0032208 0.29 FBgn0003742 1.22 FBgn0002121 0.31 FBgn0010217 0.15 FBgn0037042 -0.56 FBgn0035812 0.91 FBgn0032940 1.58 FBgn0040377 -0.42 FBgn0011834 0.7 FBgn0039684 -1.18 FBgn0033392 -0.73 FBgn0026427 0.24 FBgn0063491 0.78 FBgn0037970 1.98 FBgn0037648 0.24 FBgn0033154 1.54 FBgn0045499 0.72 FBgn0259184 -0.66 FBgn0031822 1.85 FBgn0034543 0.98 FBgn0036731 -0.76 FBgn0036849 0.64 FBgn0036825 -4.51 FBgn0031109 0.36 FBgn0030990 -4.21 FBgn0034655 -1.46 FBgn0005617 0.88 FBgn0030764 -0.63 FBgn0259173 -1.31 FBgn0052457 -1.79 FBgn0036212 1 FBgn0023530 -0.65 FBgn0027514 -1.44 FBgn0044811 0.23 FBgn0032445 -1.07 FBgn0036135 0.39 FBgn0053630 1.17 FBgn0030586 0.43 FBgn0026313 -0.72 FBgn0031263 1.17 FBgn0032633 -1.81 FBgn0037590 0.99 FBgn0036618 -1.68 FBgn0047338 1.38 FBgn0015765 1.06 FBgn0039188 0.27 FBgn0040812 0.98 FBgn0028399 -0.3 FBgn0250907 0.91 FBgn0260767 0.95 FBgn0051106 0.31 FBgn0011576 0.93 FBgn0035542 -1.84 FBgn0032626 0.21 FBgn0053494 -1.57 FBgn0033434 0.73 FBgn0039797 0.99 FBgn0040625 -1.62 FBgn0034106 0.74 FBgn0036124 0.97 FBgn0005634 0.65 FBgn0053937 -0.59 FBgn0003462 0.54 FBgn0086768 -0.19 FBgn0037862 -0.85 FBgn0033888 -0.82 FBgn0037260 -0.87 FBgn0003731 -10.03 FBgn0038639 -0.48 FBgn0036615 -0.88 FBgn0086378 -0.88 FBgn0031097 -0.71 FBgn0038542 -0.83 FBgn0028425 0.76 FBgn0029857 -0.57 FBgn0004875 1.11 FBgn0051648 -1.44 FBgn0035928 1.35 FBgn0261508 0.25 FBgn0051314 0.71 FBgn0034440 -0.38 FBgn0031851 0.59 FBgn0029877 0.16 FBgn0261596 -3.68 FBgn0035517 0.44 FBgn0030027 1.17 FBgn0035823 0.5 FBgn0011660 1.48 FBgn0032170 1.32 FBgn0025608 -0.48 FBgn0039877 1.09 FBgn0260397 1.38 FBgn0035360 -0.95 FBgn0033388 0.71 FBgn0038927 1.09 FBgn0037431 1.79 FBgn0033337 1.28 FBgn0028542 -0.66 FBgn0030833 -0.86 FBgn0004588 0.82 FBgn0261789 0.83 FBgn0034295 0.71 FBgn0036772 0.82 FBgn0031782 -1.39 FBgn0030514 1.05 FBgn0036752 0.83 FBgn0011770 0.88 FBgn0051195 0.64 FBgn0050115 -1.23 FBgn0037870 0.34 FBgn0052392 1.02 FBgn0032343 0.87 FBgn0031562 0.97 FBgn0000157 1.68 FBgn0038423 0.43 FBgn0034634 1.16 FBgn0040279 1.08 FBgn0004456 0.32 FBgn0015754 0.26 FBgn0034867 -1.67 FBgn0026398 1.45 FBgn0002917 -0.53 FBgn0051675 0.16 FBgn0030375 -0.83 FBgn0086371 -1.34 FBgn0036936 0.39 FBgn0035932 0.8 FBgn0034345 -0.32 FBgn0041235 1.07 FBgn0002873 -1.29 FBgn0029657 0.71 FBgn0052595 -0.54 FBgn0033310 0.5 FBgn0039739 0.18 FBgn0051665 -1.5 FBgn0037143 -1.67 FBgn0001218 -1.29 FBgn0032974 -0.46 FBgn0030570 0.86 FBgn0259749 0.28 FBgn0038586 -1.29 FBgn0033138 -1.02 FBgn0036759 1.25 FBgn0001319 0.75 FBgn0038621 -0.21 FBgn0029158 0.86 FBgn0001974 1.1 FBgn0014075 -0.36 FBgn0038721 -0.74 FBgn0039873 -0.45 FBgn0034050 0.57 FBgn0026666 0.71 FBgn0030778 0.82 FBgn0026753 -1.47 FBgn0040099 -0.5 FBgn0031473 1.1 FBgn0033167 -0.19 FBgn0026369 -0.11 FBgn0039283 -0.18 FBgn0037000 0.97 FBgn0036066 0.46 FBgn0050480 -0.7 FBgn0085390 1.41 FBgn0036139 1.05 FBgn0040694 0.8 FBgn0001995 0.59 FBgn0030573 0.15 FBgn0039723 -0.34 FBgn0261572 -0.73 FBgn0035028 -0.85 FBgn0085479 -0.39 FBgn0064912 -0.06 FBgn0034186 1.68 FBgn0036414 -1.05 FBgn0034666 0.84 FBgn0028686 -4.37 FBgn0036142 -0.05 FBgn0038989 -0.43 FBgn0034976 -1.4 FBgn0038347 -0.55 FBgn0025697 1.68 FBgn0026318 0.19 FBgn0028470 0.89 FBgn0037741 -0.28 FBgn0030999 1.67 FBgn0039861 1.22 FBgn0259982 0.36 FBgn0051774 -2.09 FBgn0050496 -1.54 FBgn0032149 -0.79 FBgn0260766 0.6 FBgn0037992 -1.27 FBgn0039249 0.8 FBgn0051627 -0.86 FBgn0033931 1.82 FBgn0030692 0.29 FBgn0035014 1.38 FBgn0036667 -0.76 FBgn0052068 -0.97 FBgn0020766 -0.45 FBgn0032897 0.67 FBgn0036173 -0.19 FBgn0031419 1.05 FBgn0086695 0.44 FBgn0035059 -0.88 FBgn0014848 -0.51 FBgn0031643 0.05 FBgn0010194 -0.38 FBgn0034592 -1.06 FBgn0031315 0.37 FBgn0053348 -0.63 FBgn0036780 -0.87 FBgn0069242 -1.1 FBgn0040074 1.4 FBgn0050383 1.08 FBgn0033058 3.48 FBgn0038709 0.98 FBgn0029925 -0.95 FBgn0250825 0.93 FBgn0031530 0.12 FBgn0260658 0.52 FBgn0058354 0.83 FBgn0031468 0.66 FBgn0035641 2.03 FBgn0083979 0.67 FBgn0050016 -0.34 FBgn0034732 -1.1 FBgn0039238 0.5 FBgn0030837 0.62 FBgn0051635 0.4 FBgn0052628 0.78 FBgn0030944 -0.3 FBgn0037848 0.26 FBgn0040251 0.21 FBgn0035538 0.91 FBgn0010414 1.27 FBgn0034151 -0.21 FBgn0032058 0.94 FBgn0001125 0.52 FBgn0005666 0.53 FBgn0027054 -0.48 FBgn0031279 0.24 FBgn0050354 0.67 FBgn0028689 -3.36 FBgn0086757 0.19 FBgn0260750 0.17 FBgn0047351 -0.58 FBgn0259938 -1.65 FBgn0015271 -0.46 FBgn0020416 0.74 FBgn0020018 0.75 FBgn0038432 0.78 FBgn0024319 0.74 FBgn0034259 -1.25 FBgn0034270 0.59 FBgn0052100 1.18 FBgn0052110 -0.38 FBgn0032859 -0.93 FBgn0025878 -1.09 FBgn0028983 -1.34 FBgn0037019 0.84 FBgn0036491 0.61 FBgn0032111 -0.26 FBgn0039835 -0.74 FBgn0085415 0.41 FBgn0035558 -1.08 FBgn0030326 0.79 FBgn0053757 0.37 FBgn0014879 -1.04 FBgn0039747 -0.83 FBgn0053784 0.54 FBgn0038201 1.14 FBgn0050476 -4.11 FBgn0003865 0.65 FBgn0034889 0.83 FBgn0030793 0.71 FBgn0023545 0.95 FBgn0023172 0.87 FBgn0261276 0.89 FBgn0003087 -3.39 FBgn0034967 -1.85 FBgn0038238 -0.29 FBgn0025366 -2.16 FBgn0036227 0.23 FBgn0030578 0.54 FBgn0037238 -1.06 FBgn0053325 0.21 FBgn0032746 0.51 FBgn0036208 -0.81 FBgn0085387 -1.03 FBgn0024912 0.72 FBgn0030814 -0.92 FBgn0037668 -0.28 FBgn0031529 -0.79 FBgn0040153 0.75 FBgn0032869 -1.19 FBgn0034389 -0.93 FBgn0033373 -0.34 FBgn0024909 -0.36 FBgn0034987 -0.87 FBgn0036777 0.75 FBgn0001222 1.46 FBgn0033813 -0.14 FBgn0033543 -0.49 FBgn0003257 -1.79 FBgn0039443 1.1 FBgn0040066 -4.09 FBgn0260944 1.37 FBgn0043577 0.15 FBgn0039338 0.58 FBgn0005642 -0.45 FBgn0017578 -1.08 FBgn0039112 0.41 FBgn0051718 0.53 FBgn0030659 -2.11 FBgn0085203 -1.44 FBgn0024984 0.79 FBgn0010704 0.72 FBgn0054034 -0.73 FBgn0033190 0.37 FBgn0032474 -1.2 FBgn0033079 0.49 FBgn0037666 0.49 FBgn0000180 -1.32 FBgn0036230 -0.15 FBgn0015278 -0.76 FBgn0037447 -0.82 FBgn0051957 -1.33 FBgn0024555 -3.96 FBgn0010381 1.37 FBgn0032405 -0.26 FBgn0039640 0.13 FBgn0085484 0.7 FBgn0031650 -0.78 FBgn0035407 -0.56 FBgn0031249 -0.2 FBgn0034639 -0.68 FBgn0030030 0.8 FBgn0260939 -1.03 FBgn0036891 0.3 FBgn0032884 -2.65 FBgn0033699 -1.04 FBgn0028402 -0.99 FBgn0036627 -0.63 FBgn0019957 0.37 FBgn0039628 0.47 FBgn0010379 1.24 FBgn0085252 1.01 FBgn0038286 -0.5 FBgn0031516 -0.32 FBgn0033913 0.48 FBgn0040629 0.93 FBgn0032731 -1.05 FBgn0054054 0.43 FBgn0087040 -1.37 FBgn0035663 -0.44 FBgn0025634 -0.71 FBgn0026749 0.68 FBgn0052945 1 FBgn0031500 -0.46 FBgn0033206 0.89 FBgn0050127 -0.66 FBgn0034689 0.93 FBgn0036427 -0.37 FBgn0032229 0.81 FBgn0050081 0.72 FBgn0037417 0.98 FBgn0015575 1.2 FBgn0042131 0.93 FBgn0039855 -0.86 FBgn0030893 0.58 FBgn0013997 -1.41 FBgn0027066 -1.05 FBgn0031068 0.5 FBgn0039597 1.33 FBgn0038331 0.84 FBgn0051104 0.42 FBgn0035161 0.36 FBgn0010100 0.97 FBgn0022160 0.67 FBgn0040653 -0.69 FBgn0039434 0.34 FBgn0027070 -0.82 FBgn0037818 -1.04 FBgn0031308 0.61 FBgn0033608 0.47 FBgn0027791 0.5 FBgn0034582 0.27 FBgn0036330 -0.63 FBgn0000075 1.3 FBgn0039020 0.2 FBgn0050401 -0.64 FBgn0031080 0.85 FBgn0031003 -1.45 FBgn0051007 -0.94 FBgn0051921 -1.22 FBgn0035710 0.44 FBgn0017567 0.52 FBgn0002440 -0.1 FBgn0038847 1.48 FBgn0038558 -0.63 FBgn0032036 0.61 FBgn0011305 -1.06 FBgn0036959 -0.28 FBgn0053294 -0.39 FBgn0033486 1.33 FBgn0033225 -0.29 FBgn0031398 0.95 FBgn0032692 0.28 FBgn0025712 1.1 FBgn0083949 1.02 FBgn0030985 0.31 FBgn0038326 2.84 FBgn0028932 -0.07 FBgn0003071 -0.33 FBgn0039994 -0.8 FBgn0032664 0.47 FBgn0042174 -0.79 FBgn0031522 -0.18 FBgn0036952 1.02 FBgn0050065 0.31 FBgn0051473 1.52 FBgn0001089 1.48 FBgn0052694 -0.65 FBgn0034470 0.32 FBgn0034158 -0.53 FBgn0039091 0.56 FBgn0036819 1.84 FBgn0025469 0.79 FBgn0000247 1.02 FBgn0031244 -1.24 FBgn0034455 0.77 FBgn0033994 0.56 FBgn0051460 1.17 FBgn0052150 -0.85 FBgn0050125 -0.38 FBgn0039108 0.35 FBgn0052479 1.51 FBgn0038919 0.66 FBgn0003250 -1.46 FBgn0021856 1.13 FBgn0002778 -0.47 FBgn0034049 -0.37 FBgn0039915 0.97 FBgn0000299 0.33 FBgn0001989 0.5 FBgn0261290 -0.42 FBgn0027596 -0.45 FBgn0036795 -0.84 FBgn0045470 -1.79 FBgn0037114 0.98 FBgn0034420 0.49 FBgn0026388 -1.83 FBgn0011674 0.52 FBgn0031490 0.84 FBgn0086200 1.23 FBgn0261794 1.28 FBgn0023095 1.19 FBgn0053971 0.18 FBgn0013685 1.01 FBgn0051064 -1.93 FBgn0029664 -0.61 FBgn0036467 0.96 FBgn0003082 1.62 FBgn0038681 0.88 FBgn0033601 0.51 FBgn0040319 -0.81 FBgn0040234 -0.38 FBgn0031702 1.73 FBgn0040056 0.61 FBgn0005410 -1.58 FBgn0038551 0.67 FBgn0037515 0.37 FBgn0053639 1.07 FBgn0025628 -1.46 FBgn0030622 -0.9 FBgn0003396 -1.54 FBgn0038102 0.24 FBgn0027108 0.59 FBgn0040900 1.98 FBgn0046685 -0.88 FBgn0031100 -0.22 FBgn0030493 0.31 FBgn0035839 0.69 FBgn0061196 -0.4 FBgn0026389 0.33 FBgn0083940 1.62 FBgn0035553 -1.2 FBgn0034839 0.9 FBgn0039929 -0.12 FBgn0022029 -0.88 FBgn0032799 -0.42 FBgn0032601 0.71 FBgn0039900 0.73 FBgn0039742 -1.26 FBgn0037792 -0.95 FBgn0031908 -0.44 FBgn0036646 -1.01 FBgn0035334 -1.29 FBgn0037340 -0.33 FBgn0004045 -0.28 FBgn0001120 -0.91 FBgn0010926 -0.84 FBgn0037082 1.23 FBgn0030189 -0.44 FBgn0016038 -0.71 FBgn0037634 -0.42 FBgn0032922 1.57 FBgn0039101 -0.76 FBgn0036727 0.85 FBgn0052835 -1.33 FBgn0015520 1.14 FBgn0035751 0.47 FBgn0005655 -1.07 FBgn0034617 0.14 FBgn0026417 4.71 FBgn0041709 0.46 FBgn0032439 0.42 FBgn0002716 -0.46 FBgn0015316 0.14 FBgn0086355 0.79 FBgn0261881 1.12 FBgn0033864 0.3 FBgn0027587 0.84 FBgn0000071 0.58 FBgn0033983 1.28 FBgn0038915 0.95 FBgn0032805 1.57 FBgn0030629 -0.94 FBgn0086605 0.92 FBgn0260388 0.47 FBgn0034501 0.42 FBgn0037315 0.75 FBgn0001301 0.35 FBgn0044826 -2.07 FBgn0035888 -0.25 FBgn0052107 -0.81 FBgn0030745 -0.59 FBgn0250834 -1.8 FBgn0033212 1.9 FBgn0022224 -0.69 FBgn0260996 0.72 FBgn0036527 0.92 FBgn0035122 -0.33 FBgn0039310 -0.35 FBgn0037567 -0.05 FBgn0039260 -1.2 FBgn0038879 0.73 FBgn0030593 -0.32 FBgn0040531 -0.27 FBgn0034713 0.3 FBgn0039467 0.55 FBgn0038448 0.08 FBgn0038872 -1.59 FBgn0035799 0.66 FBgn0017418 1.24 FBgn0086690 1.27 FBgn0260991 1.26 FBgn0033809 0.62 FBgn0030098 -0.93 FBgn0032055 0.23 FBgn0037397 -0.47 FBgn0037721 0.92 FBgn0031975 -0.53 FBgn0037976 1.46 FBgn0037203 0.87 FBgn0016031 1 FBgn0034791 0.34 FBgn0029669 -0.79 FBgn0032457 -1.17 FBgn0036394 1.77 FBgn0038150 -0.23 FBgn0035473 -0.62 FBgn0085423 -1.7 FBgn0023395 -1.45 FBgn0053125 0.34 FBgn0029647 0.65 FBgn0030687 0.88 FBgn0034066 0.73 FBgn0001179 0.82 FBgn0028525 -0.92 FBgn0031804 0.99 FBgn0031384 -0.62 FBgn0035689 -1.59 FBgn0000527 -1.01 FBgn0032430 -1.03 FBgn0033784 0.91 FBgn0035498 -0.83 FBgn0083969 0.81 FBgn0014903 0.74 FBgn0036239 -4.17 FBgn0033725 1.5 FBgn0035379 0.9 FBgn0037603 0.67 FBgn0003275 -1.45 FBgn0036495 0.91 FBgn0052117 1.49 FBgn0028412 0.82 FBgn0034099 -0.58 FBgn0030234 1.25 FBgn0047205 -1.58 FBgn0014465 -0.83 FBgn0035978 1.73 FBgn0051544 1.59 FBgn0038475 -0.45 FBgn0031078 0.92 FBgn0037728 1 FBgn0037538 -0.99 FBgn0032929 -1.38 FBgn0030480 -0.69 FBgn0036111 -0.41 FBgn0020930 1.67 FBgn0030719 -0.97 FBgn0040212 -0.9 FBgn0028507 0.68 FBgn0032597 1.26 FBgn0039156 0.56 FBgn0039544 0.48 FBgn0039765 0.8 FBgn0261587 0.37 FBgn0052085 1.41 FBgn0045477 0.6 FBgn0035985 -0.71 FBgn0031347 0.74 FBgn0029766 -0.34 FBgn0036676 -1.12 FBgn0036581 -0.49 FBgn0036403 0.66 FBgn0036940 0.58 FBgn0040973 -0.81 FBgn0051015 -1.34 FBgn0004367 -0.56 FBgn0039887 -0.42 FBgn0034363 0.75 FBgn0038088 1.2 FBgn0025836 0.96 FBgn0033792 -1.06 FBgn0038890 0.57 FBgn0037035 0.8 FBgn0038589 0.37 FBgn0035268 1.45 FBgn0037552 0.25 FBgn0033375 0.84 FBgn0019886 -1.14 FBgn0051462 0.59 FBgn0033656 0.78 FBgn0034842 1.09 FBgn0027493 0.5 FBgn0032291 -0.89 FBgn0010278 -4.16 FBgn0033349 0.54 FBgn0031050 -1.18 FBgn0035298 -0.23 FBgn0000422 0.69 FBgn0032812 1.16 FBgn0036188 0.69 FBgn0033353 0.1 FBgn0036155 -0.06 FBgn0031389 1.31 FBgn0029838 0.13 FBgn0038849 0.32 FBgn0030946 -0.52 FBgn0026713 1.47 FBgn0038870 -1.98 FBgn0259245 -1.48 FBgn0038002 0.31 FBgn0261673 1.34 FBgn0030889 0.53 FBgn0034288 -0.48 FBgn0050076 -1.06 FBgn0038453 1.46 FBgn0036306 0.83 FBgn0031722 0.46 FBgn0010109 0.54 FBgn0038143 -1.32 FBgn0033238 -0.31 FBgn0010825 0.24 FBgn0029738 0.51 FBgn0036354 1.63 FBgn0035449 1.11 FBgn0028743 -0.62 FBgn0085458 -0.36 FBgn0033139 0.4 FBgn0013810 0.5 FBgn0027936 -3.55 FBgn0003360 -0.26 FBgn0031571 2.12 FBgn0032819 -1.34 FBgn0036896 0.8 FBgn0065110 -0.3 FBgn0003137 -0.47 FBgn0039810 -0.16 FBgn0030409 -1.83 FBgn0037027 1.08 FBgn0003139 1.05 FBgn0034709 0.39 FBgn0051802 -0.64 FBgn0031738 1.57 FBgn0036622 -0.37 FBgn0037549 0.67 FBgn0035104 1.33 FBgn0015544 -1.01 FBgn0000094 1.14 FBgn0030724 1.43 FBgn0261293 -0.55 FBgn0023516 0.59 FBgn0004381 -0.56 FBgn0036017 -0.08 FBgn0035583 -0.58 FBgn0030096 0.28 FBgn0039958 1.31 FBgn0036340 -0.72 FBgn0032645 0.83 FBgn0036734 -2.2 FBgn0033715 -0.71 FBgn0053140 -0.61 FBgn0031693 1.34 FBgn0029945 0.9 FBgn0034281 0.93 FBgn0051800 -1.64 FBgn0260872 0.46 FBgn0034391 0.74 FBgn0019660 0.46 FBgn0052311 1.44 FBgn0030260 2.46 FBgn0031462 -1.14 FBgn0035960 0.64 FBgn0034360 0.64 FBgn0035136 1.75 FBgn0033184 1.11 FBgn0036470 -0.42 FBgn0030989 -0.47 FBgn0032969 0.32 FBgn0001092 0.65 FBgn0041605 1.28 FBgn0031903 -1.43 FBgn0031700 -0.8 FBgn0039732 0.15 FBgn0037483 -0.18 FBgn0004896 -0.48 FBgn0038608 -1.13 FBgn0042138 0.99 FBgn0031421 0.65 FBgn0030248 1.66 FBgn0038470 1.17 FBgn0039402 -1.73 FBgn0034925 1.23 FBgn0035471 -1.95 FBgn0040732 -0.31 FBgn0033469 0.93 FBgn0031409 0.11 FBgn0033968 0.46 FBgn0011211 0.43 FBgn0259108 -1.83 FBgn0034804 0.3 FBgn0031834 1.59 FBgn0086475 0.42 FBgn0052043 -0.55 FBgn0031026 0.61 FBgn0036250 0.12 FBgn0000579 -1.53 FBgn0026401 1.32 FBgn0039131 0.19 FBgn0038315 1.16 FBgn0259703 0.37 FBgn0087011 0.78 FBgn0027784 1.31 FBgn0028841 -0.68 FBgn0032768 -0.26 FBgn0051789 1.47 FBgn0032244 0.43 FBgn0039145 0.94 FBgn0037280 0.52 FBgn0036977 0.25 FBgn0259682 1.91 FBgn0043043 0.55 FBgn0031018 -0.65 FBgn0038705 1.04 FBgn0000524 0.46 FBgn0034626 0.34 FBgn0038938 1.2 FBgn0038130 -1.57 FBgn0027503 -1.75 FBgn0034215 0.93 FBgn0036704 -1.79 FBgn0040849 0.58 FBgn0011280 0.9 FBgn0033786 0.79 FBgn0032839 1.41 FBgn0052850 -0.97 FBgn0033021 -0.35 FBgn0002174 -0.47 FBgn0037073 -1.32 FBgn0039235 -0.94 FBgn0259996 0.92 FBgn0005778 1.01 FBgn0039044 -0.28 FBgn0039201 -1.03 FBgn0000063 0.72 FBgn0038773 -1.97 FBgn0037835 -0.95 FBgn0032694 0.52 FBgn0085216 0.64 FBgn0025821 0.7 FBgn0024921 -3.7 FBgn0261612 -0.24 FBgn0043884 -1.36 FBgn0053530 -0.27 FBgn0026634 -0.1 FBgn0037936 0.75 FBgn0050339 0.59 FBgn0040763 1.28 FBgn0027864 -1.03 FBgn0052283 0.71 FBgn0031267 0.1 FBgn0259226 0.46 FBgn0034304 1.07 FBgn0029717 0.28 FBgn0028953 -0.42 FBgn0260450 0.97 FBgn0037712 -0.8 FBgn0052512 0.87 FBgn0051128 0.48 FBgn0032286 0.4 FBgn0039612 -0.58 FBgn0085417 -0.52 FBgn0040283 1.09 FBgn0037406 -0.44 FBgn0033528 -0.26 FBgn0032153 -0.59 FBgn0034817 -1.23 FBgn0034434 1.16 FBgn0038797 0.68 FBgn0004650 0.2 FBgn0260862 -1.04 FBgn0052719 0.91 FBgn0038977 -0.64 FBgn0022343 0.31 FBgn0036922 -1.08 FBgn0052227 -0.85 FBgn0035756 0.87 FBgn0034323 1.08 FBgn0028948 -1.33 FBgn0038118 -2.48 FBgn0053771 0.77 FBgn0035427 1.28 FBgn0040850 0.36 FBgn0031313 -0.68 FBgn0040368 -0.82 FBgn0038235 -0.59 FBgn0000173 0.4 FBgn0050293 0.22 FBgn0026079 -1.2 FBgn0030481 1.17 FBgn0085474 -1.14 FBgn0037687 -1.07 FBgn0024277 -1.1 FBgn0260648 0.52 FBgn0027083 0.83 FBgn0023213 -1.46 FBgn0030365 1.61 FBgn0032136 0.64 FBgn0002563 0.33 FBgn0033042 -0.9 FBgn0032483 -1.32 FBgn0051245 0.9 FBgn0039172 -0.93 FBgn0039588 -1.01 FBgn0034437 -0.12 FBgn0052191 0.78 FBgn0045852 1.02 FBgn0004858 -1.12 FBgn0030466 -0.77 FBgn0025700 -0.8 FBgn0004655 0.97 FBgn0032346 -1.46 FBgn0036691 -0.68 FBgn0053221 0.84 FBgn0027329 0.46 FBgn0002354 -0.59 FBgn0052718 0.51 FBgn0053299 -0.56 FBgn0085359 -0.53 FBgn0014029 0.39 FBgn0034990 0.39 FBgn0035420 1 FBgn0033340 1.24 FBgn0034849 -0.79 FBgn0261111 0.74 FBgn0022708 0.82 FBgn0037753 0.45 FBgn0029987 -0.44 FBgn0050275 -0.58 FBgn0016126 1.17 FBgn0036262 0.76 FBgn0030347 0.62 FBgn0027793 -0.58 FBgn0030928 1.03 FBgn0029898 0.65 FBgn0010894 0.66 FBgn0030460 -1.11 FBgn0035003 -0.32 FBgn0022338 -1.14 FBgn0030271 0.62 FBgn0038246 1.04 FBgn0051706 0.81 FBgn0051437 1.59 FBgn0086657 0.99 FBgn0032870 -1.54 FBgn0035482 0.93 FBgn0260634 -1.17 FBgn0035231 0.6 FBgn0051869 1.15 FBgn0036804 -0.62 FBgn0015477 -0.35 FBgn0010341 -0.57 FBgn0031856 -0.57 FBgn0030786 -0.37 FBgn0085380 0.67 FBgn0033440 -1.17 FBgn0039938 0.93 FBgn0029979 1.07 FBgn0040236 0.71 FBgn0028436 -0.5 FBgn0020378 -0.44 FBgn0032407 -0.37 FBgn0033875 0.44 FBgn0011668 -0.22 FBgn0014006 1.11 FBgn0026060 0.65 FBgn0040284 2.98 FBgn0037163 0.28 FBgn0053108 -1.3 FBgn0028663 0.73 FBgn0035153 -2.07 FBgn0035861 -0.66 FBgn0031707 1.2 FBgn0053696 -0.39 FBgn0015907 -1.31 FBgn0033162 -0.35 FBgn0013272 0.95 FBgn0015527 -0.43 FBgn0028916 0.8 FBgn0029914 -1.13 FBgn0027885 -1.57 FBgn0037798 -0.66 FBgn0034933 0.75 FBgn0034567 1.13 FBgn0024807 0.55 FBgn0033538 0.48 FBgn0038596 0.88 FBgn0013733 -1.01 FBgn0038660 0.88 FBgn0004169 -1.15 FBgn0036597 -1.27 FBgn0011676 0.29 FBgn0243514 1.2 FBgn0024841 2.21 FBgn0031749 -0.65 FBgn0035035 1.25 FBgn0030884 0.84 FBgn0016797 -1.82 FBgn0040827 0.24 FBgn0031335 0.95 FBgn0052647 0.43 FBgn0051740 1.37 FBgn0051658 -0.93 FBgn0011703 -0.59 FBgn0032419 -0.58 FBgn0000543 0.91 FBgn0033089 -1.66 FBgn0052240 0.37 FBgn0261885 2.13 FBgn0033423 -0.26 FBgn0029006 -0.54 FBgn0261064 0.87 FBgn0036996 1.4 FBgn0036441 -1.26 FBgn0033065 1.13 FBgn0032845 -0.42 FBgn0042101 0.78 FBgn0054023 -1.17 FBgn0030717 1.02 FBgn0000394 0.39 FBgn0039740 0.8 FBgn0030451 -0.63 FBgn0038463 -0.53 FBgn0030330 -1.55 FBgn0053467 -0.49 FBgn0045485 0.31 FBgn0030646 -1.48 FBgn0036022 1.08 FBgn0052266 0.74 FBgn0040775 -1.43 FBgn0039299 -1.19 FBgn0050412 -0.55 FBgn0004870 -0.9 FBgn0031623 -1 FBgn0034527 0.17 FBgn0004435 1.57 FBgn0050438 -1.24 FBgn0039617 0.39 FBgn0036887 1.09 FBgn0032603 -0.5 FBgn0033599 0.73 FBgn0031879 1.24 FBgn0034136 -0.54 FBgn0035415 1.08 FBgn0261383 -2.29 FBgn0023000 0.42 FBgn0039305 1.08 FBgn0034200 1.68 FBgn0019938 0.97 FBgn0020245 1.04 FBgn0035851 -0.14 FBgn0031923 1.05 FBgn0030921 0.83 FBgn0033815 -1.33 FBgn0086683 0.28 FBgn0026760 1.06 FBgn0038981 0.81 FBgn0261624 -0.41 FBgn0020660 -0.27 FBgn0002905 0.86 FBgn0004619 0.37 FBgn0034512 0.46 FBgn0036364 1.26 FBgn0038744 0.31 FBgn0085195 -1.13 FBgn0032224 1.21 FBgn0034418 2.01 FBgn0037824 -0.14 FBgn0025391 0.76 FBgn0050379 0.54 FBgn0036518 3.35 FBgn0037972 1.45 FBgn0038857 0.42 FBgn0032700 0.64 FBgn0034723 0.53 FBgn0053117 0.3 FBgn0002791 -1.01 FBgn0025839 1.16 FBgn0037853 0.84 FBgn0035934 0.67 FBgn0040660 -1.85 FBgn0010292 0.93 FBgn0031980 -3.31 FBgn0030610 -0.9 FBgn0035398 0.8 FBgn0003041 -0.86 FBgn0050009 -0.36 FBgn0036236 0.95 FBgn0051097 -0.3 FBgn0052320 0.94 FBgn0002633 0.51 FBgn0039846 0.34 FBgn0051928 0.66 FBgn0034242 0.78 FBgn0011592 1.04 FBgn0036224 -0.08 FBgn0031360 0.98 FBgn0030606 -1.56 FBgn0042187 0.08 FBgn0038295 0.33 FBgn0015562 0.38 FBgn0034120 -0.37 FBgn0026379 0.24 FBgn0004397 0.3 FBgn0052232 0.67 FBgn0001189 0.74 FBgn0034011 -1.47 FBgn0021776 0.95 FBgn0039136 0.76 FBgn0085283 -0.57 FBgn0029826 0.56 FBgn0004237 -1.24 FBgn0037376 0.28 FBgn0000121 0.08 FBgn0031301 0.38 FBgn0030292 -0.25 FBgn0032899 0.32 FBgn0052383 -0.34 FBgn0040799 -1.56 FBgn0038641 -0.19 FBgn0031600 -0.49 FBgn0014455 0.6 FBgn0036070 0.55 FBgn0020633 -0.59 FBgn0030170 0.67 FBgn0035205 0.56 FBgn0038160 0.26 FBgn0083991 -1.33 FBgn0038190 0.97 FBgn0003386 1.4 FBgn0026876 1.41 FBgn0031596 -0.83 FBgn0037789 -1.08 FBgn0031546 0.17 FBgn0039385 1.14 FBgn0043471 -0.53 FBgn0032935 -0.78 FBgn0032724 0.74 FBgn0034856 0.47 FBgn0004593 -0.9 FBgn0030899 0.87 FBgn0000319 2.2 FBgn0033480 0.56 FBgn0030385 -0.15 FBgn0086350 1.97 FBgn0037305 0.82 FBgn0051871 -1.28 FBgn0032172 0.34 FBgn0040324 -0.16 FBgn0037801 0.36 FBgn0034060 -0.28 FBgn0010309 1.05 FBgn0031374 -0.75 FBgn0039255 -0.41 FBgn0032312 0.85 FBgn0003015 2.17 FBgn0003435 -0.56 FBgn0035089 1 FBgn0000536 1.83 FBgn0003159 0.37 FBgn0039712 -0.13 FBgn0035247 -0.39 FBgn0032067 1.15 FBgn0036480 1.39 FBgn0027546 0.57 FBgn0013674 -0.15 FBgn0030339 -0.41 FBgn0051320 0.58 FBgn0029761 1.1 FBgn0042711 -1.12 FBgn0036656 0.81 FBgn0033363 -0.12 FBgn0030441 0.54 FBgn0011606 1.6 FBgn0030666 0.9 FBgn0085410 -0.47 FBgn0030870 1.6 FBgn0040514 1.59 FBgn0261850 -0.6 FBgn0032253 1.12 FBgn0050147 1.27 FBgn0000413 -1.02 FBgn0038806 1.12 FBgn0259795 1.11 FBgn0034825 -1.02 FBgn0033500 0.47 FBgn0015222 -1.18 FBgn0039395 0.81 FBgn0011715 0.38 FBgn0000261 0.82 FBgn0039459 0.08 FBgn0027087 -0.64 FBgn0005640 1.45 FBgn0033973 0.77 FBgn0051427 -1.28 FBgn0014868 0.65 FBgn0035890 1.06 FBgn0036093 0.24 FBgn0039058 -0.06 FBgn0038250 -0.51 FBgn0033893 0.75 FBgn0010622 0.52 FBgn0031484 1.05 FBgn0030654 0.3 FBgn0025373 0.67 FBgn0031609 0.25 FBgn0259111 -1.88 FBgn0032470 -1.35 FBgn0032337 0.95 FBgn0039622 -1.63 FBgn0033730 0.74 FBgn0033292 0.56 FBgn0003891 0.69 FBgn0026261 1.02 FBgn0086912 0.33 FBgn0039342 0.41 FBgn0035181 0.58 FBgn0039495 0.5 FBgn0031763 1.39 FBgn0053110 -0.78 FBgn0052133 1.65 FBgn0035414 0.79 FBgn0013751 2 FBgn0038123 0.84 FBgn0037829 -0.45 FBgn0011745 0.59 FBgn0037107 1.49 FBgn0036146 0.89 FBgn0052574 -0.4 FBgn0011207 0.88 FBgn0004360 -1.06 FBgn0036117 0.62 FBgn0032705 0.68 FBgn0010052 -0.13 FBgn0035533 1.46 FBgn0000639 -0.69 FBgn0034489 -1.13 FBgn0030737 -0.15 FBgn0052071 1.93 FBgn0036606 1.13 FBgn0052699 1.54 FBgn0027528 0.63 FBgn0034988 -0.75 FBgn0035077 0.73 FBgn0040754 -0.15 FBgn0030844 0.68 FBgn0037460 -0.81 FBgn0003517 -2.88 FBgn0016756 0.8 FBgn0085432 -0.86 FBgn0001612 0.99 FBgn0001138 -0.61 FBgn0029816 0.12 FBgn0001258 0.55 FBgn0052301 -0.39 FBgn0037612 -1.46 FBgn0051077 1.09 FBgn0043530 0.6 FBgn0037938 0.87 FBgn0031585 0.57 FBgn0030699 0.77 FBgn0033826 1.56 FBgn0028518 0.73 FBgn0011289 1.24 FBgn0033929 -0.33 FBgn0031731 -1.32 FBgn0051145 -1.2 FBgn0004623 1.47 FBgn0050372 0.22 FBgn0032069 -0.55 FBgn0051760 -0.68 FBgn0037672 0.41 FBgn0013749 -2.32 FBgn0036110 0.14 FBgn0029755 1.12 FBgn0039559 -0.6 FBgn0004597 0.72 FBgn0052026 -0.67 FBgn0031776 1.06 FBgn0036198 -0.62 FBgn0013305 0.45 FBgn0013469 -1.14 FBgn0260860 0.24 FBgn0035825 0.1 FBgn0030012 -1.12 FBgn0085434 0.97 FBgn0016032 0.24 FBgn0034904 -0.88 FBgn0038268 -0.68 FBgn0038968 0.55 FBgn0033633 0.31 FBgn0010220 -0.87 FBgn0031675 1.65 FBgn0051523 0.87 FBgn0260940 0.54 FBgn0052304 -0.14 FBgn0053301 1.11 FBgn0260660 1.44 FBgn0261283 -1.83 FBgn0034950 0.12 FBgn0003479 -0.65 FBgn0035464 0.89 FBgn0039349 0.3 FBgn0040786 0.5 FBgn0003885 -1.25 FBgn0039804 1.46 FBgn0259714 1.44 FBgn0083951 -0.55 FBgn0015025 -0.86 FBgn0034670 0.27 FBgn0086384 1.22 FBgn0037467 -0.19 FBgn0004914 1.69 FBgn0021814 -1.33 FBgn0053513 0.74 FBgn0044048 0.23 FBgn0004133 1.1 FBgn0003300 -1.05 FBgn0050101 0.68 FBgn0032549 1.38 FBgn0052529 0.44 FBgn0035917 1.17 FBgn0039809 -0.55 FBgn0039645 -2 FBgn0024891 -0.83 FBgn0037020 -0.09 FBgn0030524 -0.88 FBgn0036046 2 FBgn0039719 0.34 FBgn0031449 -0.73 FBgn0036915 2.02 FBgn0039006 0.69 FBgn0039656 2.06 FBgn0011276 0.82 FBgn0026084 0.74 FBgn0002629 1.27 FBgn0034103 -0.7 FBgn0033578 1.25 FBgn0052532 0.84 FBgn0033863 0.26 FBgn0031174 -0.79 FBgn0033507 -1.95 FBgn0000140 -0.55 FBgn0041249 0.99 FBgn0015621 -0.91 FBgn0034237 -3.6 FBgn0032512 -1.26 FBgn0027584 0.93 FBgn0003651 1.2 FBgn0037617 0.7 FBgn0052476 -0.69 FBgn0052023 -0.34 FBgn0025378 0.4 FBgn0035294 0.42 FBgn0026378 -0.99 FBgn0039638 -0.56 FBgn0022987 0.59 FBgn0041624 -0.39 FBgn0034957 -1.11 FBgn0035421 0.59 FBgn0030566 -0.95 FBgn0050385 -0.96 FBgn0028476 -0.22 FBgn0039790 -1.13 FBgn0036545 0.87 FBgn0027617 1.51 FBgn0036729 0.74 FBgn0034636 0.18 FBgn0034645 0.49 FBgn0036868 -0.48 FBgn0029763 -0.45 FBgn0037432 0.88 FBgn0027526 -0.69 FBgn0030025 0.49 FBgn0038247 0.21 FBgn0036817 1.74 FBgn0035865 1.01 FBgn0039754 -0.91 FBgn0051088 0.69 FBgn0035164 0.85 FBgn0034141 1.16 FBgn0034172 -1.13 FBgn0032476 0.11 FBgn0025827 0.36 FBgn0034442 0.63 FBgn0050394 1.05 FBgn0026396 -0.13 FBgn0034909 0.55 FBgn0010786 0.91 FBgn0037162 1.22 FBgn0061492 -0.83 FBgn0034664 0.74 FBgn0030457 -0.64 FBgn0000182 -0.77 FBgn0030983 0.38 FBgn0030556 -0.61 FBgn0050018 -0.44 FBgn0039029 -0.53 FBgn0031858 0.38 FBgn0027603 -1.77 FBgn0033051 -0.39 FBgn0030512 -0.84 FBgn0039300 -2.67 FBgn0052202 -2.22 FBgn0031820 0.22 FBgn0040658 -1.77 FBgn0034858 -1.16 FBgn0026196 -1.32 FBgn0051673 -0.75 FBgn0035359 -0.51 FBgn0046301 0.88 FBgn0034774 0.66 FBgn0033160 -0.86 FBgn0037517 -0.76 FBgn0041233 0.56 FBgn0030437 0.49 FBgn0041723 0.6 FBgn0031037 0.54 FBgn0034869 1.22 FBgn0033516 -0.23 FBgn0261787 0.97 FBgn0000547 1.32 FBgn0024188 -0.58 FBgn0036298 -0.72 FBgn0040906 0.87 FBgn0033294 -0.91 FBgn0036938 -0.94 FBgn0035949 0.88 FBgn0020617 -0.9 FBgn0037454 0.68 FBgn0037174 -1.17 FBgn0041096 0.52 FBgn0261363 0.54 FBgn0003034 0.67 FBgn0035976 0.76 FBgn0030900 1.52 FBgn0041164 -0.45 FBgn0034086 0.43 FBgn0028494 1.19 FBgn0004556 0.94 FBgn0051776 0.4 FBgn0030880 -0.54 FBgn0033312 -0.55 FBgn0034837 0.27 FBgn0038829 0.84 FBgn0015320 0.47 FBgn0036831 0.71 FBgn0053099 -0.16 FBgn0036416 -0.39 FBgn0035737 -0.23 FBgn0026316 1.05 FBgn0261873 1.16 FBgn0029715 1.27 FBgn0050493 1.58 FBgn0028704 0.64 FBgn0031143 0.89 FBgn0034720 -0.63 FBgn0035519 0.84 FBgn0003701 -2.66 FBgn0031317 0.36 FBgn0030788 1.51 FBgn0039200 0.39 FBgn0033214 1.07 FBgn0015393 -4.05 FBgn0030215 0.27 FBgn0022069 -2.58 FBgn0029113 0.34 FBgn0032341 -0.69 FBgn0031090 -1.62 FBgn0037766 1.27 FBgn0039114 -0.45 FBgn0032752 -1.08 FBgn0034725 1.03 FBgn0040253 0.84 FBgn0033031 -0.94 FBgn0028893 0.52 FBgn0000492 -4.23 FBgn0031021 -0.41 FBgn0085425 -2.59 FBgn0025393 2.15 FBgn0033918 1.32 FBgn0037352 0.34 FBgn0028419 1.69 FBgn0036153 0.82 FBgn0035050 1.2 FBgn0035608 0.88 FBgn0028688 -2.78 FBgn0040801 0.3 FBgn0033554 0.87 FBgn0050288 -0.71 FBgn0033155 -0.49 FBgn0035848 -1.96 FBgn0001148 0.95 FBgn0047133 -1.76 FBgn0037926 1.93 FBgn0004430 0.35 FBgn0027843 0.75 FBgn0033203 -1.16 FBgn0032873 -0.85 FBgn0038504 -2.01 FBgn0038353 -0.43 FBgn0036684 -1.2 FBgn0033484 -0.12 FBgn0031478 0.71 FBgn0053139 1.55 FBgn0250843 -2.02 FBgn0085443 -1.04 FBgn0053200 1.28 FBgn0085395 -1.16 FBgn0039061 -0.79 FBgn0035691 0.8 FBgn0039015 0.26 FBgn0024273 0.21 FBgn0034979 1.03 FBgn0037994 1.18 FBgn0032824 -0.12 FBgn0032789 0.44 FBgn0039749 -1.07 FBgn0030141 1.57 FBgn0051633 -1.24 FBgn0016054 -0.7 FBgn0020641 -0.92 FBgn0039336 1.19 FBgn0069938 0.44 FBgn0026630 0.25 FBgn0261808 1.33 FBgn0035594 -0.32 FBgn0032246 0.85 FBgn0035789 0.94 FBgn0050356 -0.81 FBgn0003415 3.18 FBgn0032713 -0.76 FBgn0051183 1.59 FBgn0086655 0.75 FBgn0040467 0.57 FBgn0038795 0.5 FBgn0034093 -0.36 FBgn0051220 -0.74 FBgn0031135 -0.71 FBgn0086253 0.23 FBgn0259214 -1.99 FBgn0259704 0.45 FBgn0027343 -0.57 FBgn0036529 0.64 FBgn0035138 1.29 FBgn0026722 0.99 FBgn0033038 0.56 FBgn0010225 2.99 FBgn0029725 -1.87 FBgn0030307 0.39 FBgn0013563 -0.87 FBgn0037708 -2.69 FBgn0054045 -0.68 FBgn0016675 0.64 FBgn0038281 -1.78 FBgn0033734 1.23 FBgn0031537 0.54 FBgn0040064 1.02 FBgn0031883 1.6 FBgn0261802 -0.99 FBgn0037481 0.19 FBgn0036483 -0.19 FBgn0013755 1.14 FBgn0032635 -1.66 FBgn0031323 0.67 FBgn0040339 1.68 FBgn0034479 0.15 FBgn0053329 0.55 FBgn0038575 -0.42 FBgn0027552 -0.44 FBgn0050456 1.32 FBgn0035627 -2.14 FBgn0259977 -0.95 FBgn0046880 0.98 FBgn0261860 -0.79 FBgn0000320 0.86 FBgn0035857 1.62 FBgn0038839 -0.64 FBgn0029501 1.29 FBgn0039288 -0.54 FBgn0029508 0.64 FBgn0031424 -1.48 FBgn0004197 0.45 FBgn0038126 0.56 FBgn0033686 0.65 FBgn0037619 0.85 FBgn0026238 -2.59 FBgn0043575 0.85 FBgn0038197 0.95 FBgn0053556 -0.73 FBgn0050103 0.47 FBgn0037893 0.9 FBgn0085277 0.34 FBgn0001324 2.03 FBgn0051231 1.54 FBgn0011754 -0.92 FBgn0002466 0.42 FBgn0033067 -0.19 FBgn0034504 -1.15 FBgn0032275 0.35 FBgn0033584 0.18 FBgn0259193 -0.98 FBgn0029881 0.83 FBgn0250823 1.36 FBgn0038676 0.3 FBgn0035906 0.75 FBgn0039086 0.66 FBgn0030509 -0.3 FBgn0037102 0.15 FBgn0001180 -0.25 FBgn0000404 -2.87 FBgn0052105 0.59 FBgn0050467 0.76 FBgn0032536 -0.92 FBgn0051698 0.38 FBgn0020388 -0.75 FBgn0031247 -1.14 FBgn0039183 -2.22 FBgn0037877 0.5 FBgn0000500 0.69 FBgn0033872 -0.41 FBgn0001174 0.27 FBgn0039654 -2.15 FBgn0032553 2.22 FBgn0034568 0.9 FBgn0054056 0.62 FBgn0032447 -1.08 FBgn0025724 -3.86 FBgn0032085 0.51 FBgn0041607 0.96 FBgn0031861 1.51 FBgn0051556 3.12 FBgn0029736 -0.69 FBgn0004859 0.27 FBgn0029526 1.55 FBgn0039240 1.76 FBgn0028519 -2.45 FBgn0040375 0.64 FBgn0037931 2 FBgn0033186 -1.29 FBgn0034175 0.36 FBgn0005619 -1.21 FBgn0011836 1.22 FBgn0033028 -0.75 FBgn0052986 1.59 FBgn0037493 -0.27 FBgn0031452 0.85 FBgn0261238 -0.07 FBgn0050095 0.37 FBgn0034821 0.92 FBgn0034580 0.61 FBgn0040030 2.48 FBgn0039626 0.47 FBgn0035452 0.03 FBgn0038946 1.82 FBgn0037421 0.45 FBgn0051453 -0.18 FBgn0085325 -0.88 FBgn0000594 -0.19 FBgn0034939 -0.76 FBgn0039779 0.36 FBgn0051213 -0.35 FBgn0037677 -1.14 FBgn0026175 -0.34 FBgn0033844 0.79 FBgn0027082 0.29 FBgn0033378 -0.48 FBgn0039215 1.7 FBgn0029940 0.11 FBgn0259175 1.36 FBgn0036165 0.68 FBgn0031894 0.69 FBgn0030858 -1.22 FBgn0000115 1.31 FBgn0030251 -0.79 FBgn0026088 1.03 FBgn0011296 0.47 FBgn0028484 0.62 FBgn0031129 -1.44 FBgn0038387 -0.84 FBgn0036498 0.17 FBgn0035280 0.58 FBgn0036853 0.77 FBgn0085293 0.6 FBgn0259936 -1.43 FBgn0260011 0.39 FBgn0002773 0.71 FBgn0023215 2.45 FBgn0030588 0.59 FBgn0034075 -1.24 FBgn0028941 0.83 FBgn0029789 -0.63 FBgn0039780 0.47 FBgn0011695 2.2 FBgn0010620 1.73 FBgn0038186 0.79 FBgn0034658 -0.99 FBgn0038000 -0.78 FBgn0037578 0.93 FBgn0039590 -1.62 FBgn0035016 1.24 FBgn0040475 0.76 FBgn0031107 0.79 FBgn0035526 0.89 FBgn0035694 -0.68 FBgn0250832 -0.32 FBgn0038405 -0.2 FBgn0032803 -0.67 FBgn0036975 0.91 FBgn0028560 -0.54 FBgn0020497 -1.64 FBgn0061198 -0.58 FBgn0039042 -0.56 FBgn0034025 -1.1 FBgn0039470 0.68 FBgn0038151 0.32 FBgn0052656 0.61 FBgn0037384 0.59 FBgn0020508 0.81 FBgn0032964 0.88 FBgn0022740 -1.22 FBgn0034882 0.26 FBgn0052654 -1.51 FBgn0032506 -0.6 FBgn0023537 0.9 FBgn0037399 0.43 FBgn0051997 -1.22 FBgn0085408 0.32 FBgn0036583 -1.84 FBgn0052195 0.11 FBgn0026386 1.03 FBgn0259143 1.11 FBgn0037040 -0.46 FBgn0039928 0.5 FBgn0260441 -4.78 FBgn0052119 -1.5 FBgn0039325 0.98 FBgn0041250 0.49 FBgn0051797 0.21 FBgn0046687 -1.59 FBgn0034545 0.77 FBgn0035500 0.79 FBgn0037571 0.56 FBgn0032218 -0.41 FBgn0001087 0.76 FBgn0260049 0.95 FBgn0033165 -0.57 FBgn0033404 0.43 FBgn0036836 0.4 FBgn0034936 -0.91 FBgn0027093 -1.01 FBgn0001255 1.63 FBgn0037218 0.53 FBgn0037778 0.41 FBgn0039049 0.44 FBgn0033339 0.86 FBgn0031240 0.46 FBgn0005695 -1.52 FBgn0038488 0.4 FBgn0039479 0.96 FBgn0086357 -1.78 FBgn0259237 0.47 FBgn0036126 1.65 FBgn0025519 -1.46 FBgn0039489 0.83 FBgn0038038 0.5 FBgn0038473 1.45 FBgn0030743 0.85 FBgn0051849 0.37 FBgn0040794 0.65 FBgn0261610 -1.87 FBgn0000057 1.14 FBgn0004374 -0.8 FBgn0052639 0.23 FBgn0052570 -1.49 FBgn0033981 0.42 FBgn0029807 -0.51 FBgn0034032 1.01 FBgn0028523 -0.21 FBgn0037012 -1.82 FBgn0025864 -1.78 FBgn0035551 1.53 FBgn0035332 -0.78 FBgn0034718 -2.07 FBgn0030239 0.43 FBgn0016036 0.22 FBgn0037978 -0.92 FBgn0052461 -1.02 FBgn0030228 -1.44 FBgn0030483 -1.22 FBgn0034422 0.48 FBgn0036875 0.55 FBgn0015805 -0.87 FBgn0031364 -1.13 FBgn0028692 -3.22 FBgn0030521 0.31 FBgn0034503 -0.41 FBgn0031520 0.68 FBgn0031662 0.83 FBgn0037963 0.7 FBgn0039504 1.77 FBgn0003654 1.06 FBgn0037251 1.29 FBgn0033767 -1.48 FBgn0036986 1.07 FBgn0002968 -0.98 FBgn0001197 -2.45 FBgn0003353 0.61 FBgn0030187 0.46 FBgn0010709 -1.8 FBgn0050184 0.51 FBgn0030417 0.37 FBgn0086785 0.73 FBgn0038055 1.02 FBgn0051546 -0.9 FBgn0036024 -1.09 FBgn0036563 -0.67 FBgn0029836 -0.38 FBgn0026751 -0.54 FBgn0039868 -1.61 FBgn0022027 0.13 FBgn0032123 0.76 FBgn0029989 0.7 FBgn0036844 -1.14 FBgn0036678 -0.29 FBgn0261524 1.42 FBgn0015838 -0.7 FBgn0036826 0.23 FBgn0030196 -1.05 FBgn0004959 -1.4 FBgn0039421 2.51 FBgn0039437 -1.36 FBgn0030343 1.22 FBgn0033778 0.68 FBgn0034068 -0.74 FBgn0033129 -0.22 FBgn0038360 0.41 FBgn0033308 0.34 FBgn0034528 -0.87 FBgn0039125 -0.96 FBgn0010333 -2.49 FBgn0260006 -1.54 FBgn0086532 0.43 FBgn0003116 -0.98 FBgn0029975 0.76 FBgn0027598 -1.21 FBgn0036080 0.57 FBgn0261602 -3.99 FBgn0034327 1.17 FBgn0010412 -4.12 FBgn0030623 -1.48 FBgn0038300 -0.3 FBgn0037716 0.81 FBgn0039106 -0.77 FBgn0029949 0.98 FBgn0052350 -0.92 FBgn0023097 1.14 FBgn0037165 0.87 FBgn0041342 -1.1 FBgn0033794 -0.59 FBgn0038765 -0.63 FBgn0040529 0.23 FBgn0031282 0.34 FBgn0052437 0.67 FBgn0030798 0.6 FBgn0039158 1.62 FBgn0034683 0.44 FBgn0038324 0.73 FBgn0024944 -1.7 FBgn0019644 -4.02 FBgn0039833 0.58 FBgn0038449 0.09 FBgn0030997 -0.53 FBgn0003285 -0.97 FBgn0032702 0.49 FBgn0034942 1.12 FBgn0005596 -1.45 FBgn0037734 -0.48 FBgn0052039 -0.52 FBgn0038540 0.79 FBgn0026593 0.48 FBgn0053123 -0.54 FBgn0032900 -1.3 FBgn0013675 0.23 FBgn0028567 0.64 FBgn0035686 0.94 FBgn0028410 -0.98 FBgn0035965 0.29 FBgn0001987 -0.29 FBgn0036396 -1.08 FBgn0003511 -0.82 FBgn0053542 1.61 FBgn0039065 -1.07 FBgn0050156 -1.07 FBgn0030595 -0.51 FBgn0039752 0.23 FBgn0037395 -0.46 FBgn0051515 4.44 FBgn0038097 0.56 FBgn0031201 0.45 FBgn0038818 0.56 FBgn0034426 -0.11 FBgn0032744 -0.95 FBgn0035021 0.66 FBgn0037502 0.32 FBgn0058245 0.9 FBgn0039269 0.27 FBgn0260946 -1.49 FBgn0012036 0.89 FBgn0038973 0.85 FBgn0020910 -2.79 FBgn0005649 -1.34 FBgn0040383 0.17 FBgn0039449 0.36 FBgn0036710 -2.36 FBgn0035060 0.97 FBgn0039151 -0.4 FBgn0034968 -3.54 FBgn0033624 1.21 FBgn0031774 -0.74 FBgn0020908 1.4 FBgn0031008 -1.14 FBgn0036309 -0.68 FBgn0031913 -0.62 FBgn0035316 -0.65 FBgn0036493 0.33 FBgn0032857 -0.41 FBgn0037323 -0.3 FBgn0030410 -0.68 FBgn0031235 0.23 FBgn0035064 -1.09 FBgn0031150 -0.95 FBgn0034797 -0.65 FBgn0030079 1.41 FBgn0032658 0.33 FBgn0030791 -0.67 FBgn0000108 0.93 FBgn0261584 -0.12 FBgn0035146 0.39 FBgn0034110 -0.48 FBgn0032394 0.38 FBgn0039094 -0.64 FBgn0039192 0.74 FBgn0010280 -1.26 FBgn0025678 -1.26 FBgn0025381 0.54 FBgn0027570 0.61 FBgn0085413 -0.6 FBgn0030263 0.53 FBgn0031066 -1.28 FBgn0051641 -0.66 FBgn0002789 0.38 FBgn0035256 0.96 FBgn0013348 1.34 FBgn0039663 0.56 FBgn0004839 -0.17 FBgn0058441 1.56 FBgn0013725 -1.79 FBgn0050360 0.74 FBgn0003867 -1.34 FBgn0052277 0.76 FBgn0053346 0.93 FBgn0013809 1.22 FBgn0036821 -1.34 FBgn0030607 0.35 FBgn0001220 0.47 FBgn0036570 -0.93 FBgn0032079 -0.47 FBgn0026869 -0.35 FBgn0032860 -1.36 FBgn0038090 1.15 FBgn0037126 0.62 FBgn0036109 -0.42 FBgn0053993 0.28 FBgn0036655 1.56 FBgn0051296 0.39 FBgn0038549 -0.17 FBgn0035870 0.21 FBgn0028985 0.55 FBgn0030136 -2.21 FBgn0037445 -1.42 FBgn0029672 -0.64 FBgn0026433 0.36 FBgn0034402 1.12 FBgn0010453 1.38 FBgn0015038 0.89 FBgn0031006 -0.65 FBgn0026326 -0.86 FBgn0030576 -0.22 FBgn0035244 -0.87 FBgn0032147 -0.79 FBgn0053333 -1.12 FBgn0037883 0.64 FBgn0031646 -0.29 FBgn0030377 -0.58 FBgn0029992 -1.61 FBgn0042710 -2.36 FBgn0031866 0.23 FBgn0003090 3.2 FBgn0051249 -0.53 FBgn0052702 1.52 FBgn0036629 1.08 FBgn0033933 -0.55 FBgn0033900 -0.65 FBgn0086448 -1.41 FBgn0010768 0.52 FBgn0024996 -0.12 FBgn0038179 1.12 FBgn0032924 0.5 FBgn0001990 0.85 FBgn0001341 1.21 FBgn0052163 0.93 FBgn0035790 0.75 FBgn0035955 0.22 FBgn0033802 -0.72 FBgn0036255 0.7 FBgn0031518 -0.45 FBgn0038523 0.38 FBgn0051287 -0.42 FBgn0051778 0.98 FBgn0027512 -1.82 FBgn0035404 0.33 FBgn0037773 -1.29 FBgn0012051 0.33 FBgn0033208 -0.33 FBgn0046297 -0.94 FBgn0036336 0.16 FBgn0032034 0.42 FBgn0039165 -0.89 FBgn0050486 0.78 FBgn0028400 -0.58 FBgn0035405 -0.56 FBgn0031082 -0.21 FBgn0036008 0.94 FBgn0031471 -0.83 FBgn0031117 0.5 FBgn0029131 -0.65 FBgn0030703 0.81 FBgn0038349 -0.18 FBgn0015380 1.21 FBgn0053978 -2.14 FBgn0004171 1.26 FBgn0026190 0.29 FBgn0035879 -0.5 FBgn0032850 0.73 FBgn0052099 -0.38 FBgn0031959 -1.06 FBgn0038208 1.12 FBgn0034382 -0.11 FBgn0013988 1.57 FBgn0039744 0.69 FBgn0004779 -0.91 FBgn0034624 -0.33 FBgn0040814 0.4 FBgn0050159 0.28 FBgn0031148 0.75 FBgn0039016 1.35 FBgn0003312 0.5 FBgn0004898 1.55 FBgn0038106 -0.33 FBgn0039480 0.77 FBgn0004174 0.73 FBgn0000061 1.14 FBgn0031713 0.12 FBgn0031265 0.47 FBgn0052243 0.67 FBgn0010385 0.55 FBgn0051989 1.03 FBgn0040508 -0.44 FBgn0051005 -0.87 FBgn0039599 -1.05 FBgn0085296 -0.25 FBgn0003278 -0.11 FBgn0036232 0.4 FBgn0004462 1.52 FBgn0032142 0.2 FBgn0038034 0.65 FBgn0028514 0.53 FBgn0035308 -0.55 FBgn0039642 2.06 FBgn0053306 0.77 FBgn0053061 0.67 FBgn0033697 -0.41 FBgn0020510 0.57 FBgn0025632 -0.62 FBgn0052187 -0.68 FBgn0032329 0.74 FBgn0039038 0.9 FBgn0039764 0.91 FBgn0032233 0.46 FBgn0052364 -0.76 FBgn0011581 -0.88 FBgn0030766 0.2 FBgn0010383 0.09 FBgn0032194 1.37 FBgn0036847 -0.83 FBgn0036369 -0.4 FBgn0030066 0.89 FBgn0050291 -0.51 FBgn0040601 0.99 FBgn0086681 1.3 FBgn0034329 -0.9 FBgn0026077 -0.31 FBgn0030367 0.11 FBgn0036741 -0.57 FBgn0028533 0.69 FBgn0037916 0.28 FBgn0052281 0.65 FBgn0030817 1.13 FBgn0025612 -0.3 FBgn0086899 -4.3 FBgn0041240 0.59 FBgn0036595 -0.54 FBgn0028903 -0.87 FBgn0030336 -0.62 FBgn0033401 -0.36 FBgn0033720 0.53 FBgn0051680 0.37 FBgn0029091 1.89 FBgn0036019 0.8 FBgn0004856 -3.38 FBgn0039223 0.1 FBgn0029968 0.86 FBgn0035237 0.88 FBgn0028579 -0.27 FBgn0259228 0.43 FBgn0054015 0.34 FBgn0052073 -0.8 FBgn0034887 0.78 FBgn0003391 0.47 FBgn0032499 -0.19 FBgn0051561 -1.53 FBgn0050279 -1.15 FBgn0085222 0.64 FBgn0039031 0.18 FBgn0030323 -1.15 FBgn0033760 -0.9 FBgn0053777 0.14 FBgn0038627 0.25 FBgn0030937 0.74 FBgn0035999 0.15 FBgn0036052 1.07 FBgn0011666 -1.6 FBgn0031191 -1.63 FBgn0030668 -0.36 FBgn0034056 0.16 FBgn0036662 0.74 FBgn0042180 -0.38 FBgn0067102 1.25 FBgn0033980 -0.78 FBgn0040797 -0.78 FBgn0023529 -0.48 FBgn0035957 0.7 FBgn0030241 0.84 FBgn0051360 0.97 FBgn0051538 -1.04 FBgn0025643 0.8 FBgn0031652 -0.48 FBgn0033301 0.93 FBgn0032197 0.91 FBgn0025641 0.15 FBgn0003978 0.59 FBgn0031942 1.23 FBgn0002652 -0.75 FBgn0036984 0.23 FBgn0036924 -0.56 FBgn0014870 1.26 FBgn0011336 0.12 FBgn0259150 -1.2 FBgn0085786 1.05 FBgn0037714 0.65 FBgn0038244 -1.01 FBgn0037697 -0.49 FBgn0004577 -0.56 FBgn0085449 0.62 FBgn0038139 -0.21 FBgn0033911 1.15 FBgn0042106 0.88 FBgn0030966 0.5 FBgn0260874 0.76 FBgn0034802 1.36 FBgn0051816 -0.18 FBgn0025626 0.8 FBgn0036437 0.99 FBgn0028738 -0.26 FBgn0038128 1.3 FBgn0024194 0.41 FBgn0259221 0.64 FBgn0053051 0.6 FBgn0039561 -0.36 FBgn0261811 -0.22 FBgn0036538 0.77 FBgn0052846 -0.35 FBgn0050277 1.09 FBgn0039577 0.4 FBgn0037949 -1.63 FBgn0037626 -0.12 FBgn0066114 -1.45 FBgn0001967 -0.46 FBgn0243516 -1.31 FBgn0033518 -2.23 FBgn0053017 1.02 FBgn0035484 -0.03 FBgn0038376 1.01 FBgn0032798 -0.64 FBgn0033651 -1.35 FBgn0051708 -1.38 FBgn0037755 0.52 FBgn0037846 0.2 FBgn0028552 1.5 FBgn0260632 -1.47 FBgn0032144 0.71 FBgn0039522 -0.2 FBgn0038921 -0.58 FBgn0024491 0.76 FBgn0031937 0.48 FBgn0028562 0.52 FBgn0001202 0.35 FBgn0000808 0.53 FBgn0032415 -0.44 FBgn0032161 -0.72 FBgn0029912 0.12 FBgn0035644 2.36 FBgn0031729 -1.91 FBgn0039735 0.24 FBgn0033297 0.25 FBgn0040007 -3.67 FBgn0034480 0.94 FBgn0027057 0.93 FBgn0032677 0.89 FBgn0032481 0.3 FBgn0034711 0.58 FBgn0004167 -1.11 FBgn0033969 0.88 FBgn0028644 -0.16 FBgn0051781 0.33 FBgn0003129 0.36 FBgn0026268 0.53 FBgn0037826 0.86 FBgn0031512 -0.76 FBgn0035033 0.24 FBgn0029974 0.9 FBgn0021795 -0.34 FBgn0034045 0.47 FBgn0039053 -1.17 FBgn0051495 0.8 FBgn0022238 -0.78 FBgn0035872 0.45 FBgn0039863 0.48 FBgn0040349 -0.92 FBgn0037141 0.81 FBgn0037802 -1.06 FBgn0259162 -0.54 FBgn0000359 0.6 FBgn0035196 0.95 FBgn0000451 -1.32 FBgn0025693 -1.62 FBgn0025681 0.68 FBgn0038569 0.59 FBgn0043455 -0.78 FBgn0046888 1.21 FBgn0033326 0.76 FBgn0026566 0.82 FBgn0038961 -0.85 FBgn0039002 -0.67 FBgn0035802 1.44 FBgn0035229 0.26 FBgn0004143 0.91 FBgn0033250 1.68 FBgn0035124 -0.5 FBgn0032057 1.37 FBgn0261791 1.48 FBgn0003377 0.57 FBgn0019650 -0.95 FBgn0039897 -0.66 FBgn0038337 -0.84 FBgn0001086 7.27 FBgn0082598 -0.7 FBgn0051206 -0.41 FBgn0039970 0.65 FBgn0030091 0.58 FBgn0040281 -1.2 FBgn0032231 -1 FBgn0000227 -1.25 FBgn0032535 1.41 FBgn0039936 0.38 FBgn0034734 1.4 FBgn0032090 0.28 FBgn0052413 -1.63 FBgn0010638 -0.88 FBgn0039307 0.89 FBgn0021995 -0.66 FBgn0039532 -0.46 FBgn0033072 0.95 FBgn0032452 -1.54 FBgn0259984 -1.41 FBgn0037723 -1.43 FBgn0033347 0.47 FBgn0032371 -1.1 FBgn0035581 -1.16 FBgn0003008 -1.31 FBgn0037550 1.13 FBgn0259243 -2.93 FBgn0259685 -0.71 FBgn0260932 0.81 FBgn0260486 1.86 FBgn0011656 1.6 FBgn0039593 0.53 FBgn0261362 -0.62 FBgn0040392 0.25 FBgn0038145 1.41 FBgn0050007 1.27 FBgn0051510 1.23 FBgn0004406 -0.99 FBgn0039769 0.53 FBgn0052313 -0.79 FBgn0033755 -1.37 FBgn0002525 -1.42 FBgn0036381 1.6 FBgn0032688 0.47 FBgn0051860 0.42 FBgn0038017 -2.47 FBgn0030407 0.5 FBgn0051119 0.65 FBgn0033110 0.62 FBgn0020414 -0.11 FBgn0011259 0.32 FBgn0001296 1.28 FBgn0036497 0.89 FBgn0051809 -1.61 FBgn0036486 0.72 FBgn0013433 0.54 FBgn0037060 0.85 FBgn0036768 0.34 FBgn0036889 0.91 FBgn0030915 -1.39 FBgn0032524 -1.02 FBgn0028963 0.83 FBgn0028397 1.57 FBgn0037428 0.49 FBgn0032236 -0.57 FBgn0037090 1.43 FBgn0035763 -2.24 FBgn0014023 0.93 FBgn0032879 -2.78 FBgn0032643 1.37 FBgn0028569 -1.01 FBgn0035674 -0.6 FBgn0085382 -0.61 FBgn0038886 -0.84 FBgn0036620 1.01 FBgn0003969 0.66 FBgn0004516 -1.09 FBgn0085541 -0.89 FBgn0052373 -0.68 FBgn0010909 0.07 FBgn0038892 0.45 FBgn0030102 0.34 FBgn0029846 -0.94 FBgn0015031 -1.04 FBgn0037911 1.23 FBgn0037645 0.76 FBgn0037022 0.97 FBgn0032116 0.44 FBgn0039354 0.82 FBgn0036010 0.95 FBgn0035094 0.6 FBgn0002707 -1.76 FBgn0261822 -2.38 FBgn0011481 1.06 FBgn0039250 -1.01 FBgn0061515 0.84 FBgn0038303 -0.36 FBgn0033752 1.63 FBgn0002945 -0.87 FBgn0036947 0.51 FBgn0031544 0.35 FBgn0052179 1.32 FBgn0038195 0.77 FBgn0019662 -0.71 FBgn0052230 -1.04 FBgn0054005 -0.65 FBgn0000551 1.53 FBgn0038089 1.74 FBgn0035134 -0.76 FBgn0036512 1.37 FBgn0031724 -0.81 FBgn0052161 -1.68 FBgn0051729 -2 FBgn0052343 -0.23 FBgn0004591 -1 FBgn0033459 0.78 FBgn0034197 0.5 FBgn0020261 -1.83 FBgn0052681 -0.55 FBgn0038811 0.93 FBgn0033174 0.3 FBgn0029152 -1.32 FBgn0031232 -1.2 FBgn0023495 1.25 FBgn0039257 -0.2 FBgn0036451 -0.68 FBgn0003130 -0.25 FBgn0024980 0.72 FBgn0034225 -0.45 FBgn0052040 0.92 FBgn0029961 0.35 FBgn0035444 2.1 FBgn0037690 0.47 FBgn0031905 -1.75 FBgn0260459 0.64 FBgn0033769 0.29 FBgn0000565 -0.58 FBgn0014861 -0.56 FBgn0037351 -4.36 FBgn0028858 0.51 FBgn0036286 -0.45 FBgn0031413 1.83 FBgn0033987 -0.69 FBgn0260968 -0.78 FBgn0029704 1.48 FBgn0020386 -2.37 FBgn0039147 0.89 FBgn0030301 0.29 FBgn0063498 -0.35 FBgn0035720 -1.18 FBgn0031460 -2.29 FBgn0261262 1.52 FBgn0039644 -0.43 FBgn0032671 0.95 FBgn0034283 0.24 FBgn0031372 0.97 FBgn0053292 -0.54 FBgn0035982 0.19 FBgn0051804 -0.39 FBgn0038799 0.89 FBgn0027786 -0.13 FBgn0052557 -0.52 FBgn0023527 0.76 FBgn0032911 -0.11 FBgn0021872 0.82 FBgn0031042 0.7 FBgn0050431 0.61 FBgn0032836 1.27 FBgn0051021 1.22 FBgn0033717 1.17 FBgn0063368 0.49 FBgn0036181 1.1 FBgn0039689 0.91 FBgn0052000 -2.52 FBgn0259922 -0.5 FBgn0004403 -3.02 FBgn0000577 0.43 FBgn0001090 0.72 FBgn0029943 0.69 FBgn0034961 -0.34 FBgn0085370 1.28 FBgn0020369 -0.99 FBgn0031969 0.24 FBgn0003254 1.32 FBgn0050043 -0.29 FBgn0033788 1 FBgn0041184 3.01 FBgn0031337 1.05 FBgn0032013 0.27 FBgn0033727 -0.21 FBgn0052668 0.87 FBgn0037560 -0.23 FBgn0034218 0.32 FBgn0035620 -0.38 FBgn0040949 -0.5 FBgn0050110 -0.16 FBgn0033498 0.92 FBgn0029835 -0.43 FBgn0003205 -4.87 FBgn0030683 0.75 FBgn0035372 1.41 FBgn0086251 -0.79 FBgn0030092 -0.77 FBgn0039554 1.22 FBgn0010435 -1.44 FBgn0037068 0.65 FBgn0004362 -1.29 FBgn0032956 -0.53 FBgn0000024 1.16 FBgn0034410 -1.06 FBgn0038257 0.47 FBgn0004369 1.2 FBgn0085330 1.84 FBgn0031872 0.33 FBgn0025336 -1.02 FBgn0033891 0.44 FBgn0023510 -0.6 FBgn0261291 -1.52 FBgn0038678 -0.69 FBgn0017556 1.22 FBgn0259701 0.17 FBgn0036640 0.89 FBgn0036880 -0.71 FBgn0030439 -0.73 FBgn0030735 -1.67 FBgn0261285 1.11 FBgn0085430 -0.79 FBgn0038458 1.27 FBgn0031115 0.34 FBgn0037881 0.55 FBgn0035892 0.49 FBgn0010591 0.85 FBgn0034573 -1.01 FBgn0028516 -0.18 FBgn0261634 0.35 FBgn0032024 0.75 FBgn0001256 1.53 FBgn0039802 0.95 FBgn0010040 0.59 FBgn0000490 0.71 FBgn0038499 -2.13 FBgn0011743 -0.45 FBgn0030964 0.72 FBgn0052572 0.61 FBgn0038168 -1.3 FBgn0027554 -0.44 FBgn0038166 0.53 FBgn0032699 0.49 FBgn0030895 -0.58 FBgn0033868 1.06 FBgn0053111 0.64 FBgn0036147 1 FBgn0038851 1.33 FBgn0010019 -0.62 FBgn0028375 0.57 FBgn0087035 -5.84 FBgn0037683 -1.05 FBgn0085351 0.83 FBgn0039666 0.35 FBgn0051410 -2.8 FBgn0032585 0.6 FBgn0259247 -0.96 FBgn0030695 -0.7 FBgn0037950 0.5 FBgn0039088 -0.62 FBgn0011722 -0.72 FBgn0261395 -0.46 FBgn0038223 1.94 FBgn0034276 -1.56 FBgn0030345 0.63 FBgn0036815 0.51 FBgn0037780 -0.41 FBgn0038132 0.47 FBgn0085312 -1.43 FBgn0036782 -1.27 FBgn0034871 0.61 FBgn0259878 0.58 FBgn0003482 -1.59 FBgn0033927 -0.92 FBgn0032087 0.71 FBgn0030018 1.71 FBgn0036352 1.43 FBgn0051032 0.89 FBgn0034902 0.3 FBgn0028370 -1.53 FBgn0035753 -4.48 FBgn0025525 0.41 FBgn0000557 -1.86 FBgn0031284 0.11 FBgn0030400 -1.63 FBgn0034552 0.37 FBgn0026150 -1 FBgn0036862 0.59 FBgn0036324 1.32 FBgn0033995 -1.81 FBgn0015791 0.65 FBgn0031187 -1.32 FBgn0001123 -1.33 FBgn0035911 1.15 FBgn0033861 0.61 FBgn0036249 -1.01 FBgn0086611 -1.28 FBgn0027582 0.31 FBgn0037465 -0.81 FBgn0035176 1.07 FBgn0031252 -0.72 FBgn0053281 0.82 FBgn0033742 -0.08 FBgn0038511 0.7 FBgn0039153 0.47 FBgn0004867 -4.5 FBgn0031217 -0.6 FBgn0051475 0.87 FBgn0037344 -0.86 FBgn0037387 0.72 FBgn0035458 -1.54 FBgn0261619 -4.53 FBgn0004244 1.35 FBgn0027561 -0.55 FBgn0034027 -0.64 FBgn0032494 1.53 FBgn0030011 -0.55 FBgn0011829 0.79 FBgn0036590 -1.4 FBgn0002933 0.82 FBgn0030051 -1.31 FBgn0031476 0.37 FBgn0039344 -0.61 FBgn0035524 -0.63 FBgn0034931 -2.96 FBgn0037933 0.92 FBgn0032514 -1.11 FBgn0031941 1.41 FBgn0032119 0.49 FBgn0034914 -1.24 FBgn0053234 -1.04 FBgn0029667 -0.8 FBgn0032437 -1.69 FBgn0034651 -0.56 FBgn0086907 0.56 FBgn0015777 0.77 FBgn0034143 -0.46 FBgn0051793 -0.97 FBgn0038957 -0.4 FBgn0035462 0.62 FBgn0035210 1.65 FBgn0034127 -0.27 FBgn0026372 -3.58 FBgn0260934 -1.56 FBgn0037414 -0.38 FBgn0035082 0.22 FBgn0039774 0.71 FBgn0039008 -0.77 FBgn0013753 -0.15 FBgn0051643 -0.74 FBgn0259716 0.54 FBgn0028572 0.24 FBgn0029649 0.37 FBgn0040340 0.79 FBgn0086901 -0.73 FBgn0035057 0.53 FBgn0033573 -1.07 FBgn0037295 2.27 FBgn0052483 -0.27 FBgn0034330 0.39 FBgn0036925 -0.35 FBgn0015625 1.08 FBgn0028369 0.55 FBgn0051525 1.26 FBgn0035915 -0.67 FBgn0038723 0.58 FBgn0037906 -0.44 FBgn0014010 -5.77 FBgn0004395 -1.63 FBgn0053460 -0.77 FBgn0032880 -4.64 FBgn0053919 1.27 FBgn0053252 -0.48 FBgn0037974 1.07 FBgn0030877 -0.92 FBgn0026192 1.77 FBgn0031052 -1.42 FBgn0024248 -1.29 FBgn0000147 -5.37 FBgn0030812 -0.93 FBgn0052645 0.76 FBgn0037220 2.04 FBgn0022960 -0.65 FBgn0033365 0.45 FBgn0036998 0.91 FBgn0038054 -0.87 FBgn0038461 1.23 FBgn0035947 0.35 FBgn0046258 0.27 FBgn0032222 0.94 FBgn0028434 -2.01 FBgn0024994 -1.07 FBgn0261723 0.63 FBgn0031435 0.98 FBgn0030876 -0.21 FBgn0010323 1.42 FBgn0021765 0.73 FBgn0036325 1.48 FBgn0038859 0.79 FBgn0038546 -0.8 FBgn0034510 0.68 FBgn0016792 -3.27 FBgn0016697 -2.43 FBgn0030851 -1.11 FBgn0031391 0.78 FBgn0033593 0.54 FBgn0028862 0.38 FBgn0024977 0.65 FBgn0036217 0.36 FBgn0034704 -0.64 FBgn0250785 0.67 FBgn0083956 0.64 FBgn0035469 1.47 FBgn0039889 0.51 FBgn0030612 -0.99 FBgn0001079 0.59 FBgn0037139 1.86 FBgn0039319 0.22 FBgn0003520 1.12 FBgn0260789 -1.4 FBgn0039297 0.25 FBgn0030258 0.77 FBgn0038429 -1.18 FBgn0032972 -0.31 FBgn0040322 0.45 FBgn0037855 1.31 FBgn0036362 1.15 FBgn0039368 -0.42 FBgn0035159 -0.5 FBgn0036688 -0.67 FBgn0019936 -2.93 FBgn0036665 -1.53 FBgn0028427 0.62 FBgn0033247 0.52 FBgn0040967 0.7 FBgn0034697 -0.37 FBgn0260437 -0.73 FBgn0040079 0.99 FBgn0039312 0.54 FBgn0026582 -1.47 FBgn0039081 1.08 FBgn0037985 0.68 FBgn0035867 1.3 FBgn0052268 1.17 FBgn0259734 2.02 FBgn0027835 -0.69 FBgn0035343 1.23 FBgn0030477 0.63 FBgn0038076 1.06 FBgn0041626 0.93 FBgn0038531 -0.25 FBgn0015925 0.92 FBgn0037330 1.19 FBgn0031926 0.79 FBgn0015721 0.91 FBgn0010830 0.78 FBgn0039828 -1.08 FBgn0033817 -0.18 FBgn0031639 -0.4 FBgn0029768 1.1 FBgn0035491 0.54 FBgn0027335 -0.48 FBgn0036715 0.37 FBgn0030004 0.89 FBgn0051163 0.86 FBgn0036264 0.32 FBgn0038114 -0.57 FBgn0045487 -1.46 FBgn0033640 0.72 FBgn0003719 -1.45 FBgn0261554 -1.22 FBgn0000206 0.55 FBgn0002569 0.56 FBgn0040366 -0.16 FBgn0003943 -0.63 FBgn0046696 -1.02 FBgn0029853 0.94 FBgn0085369 1.04 FBgn0032730 0.44 FBgn0031925 0.39 FBgn0259098 -1.06 FBgn0038293 0.6 FBgn0030354 -2 FBgn0035150 1.2 FBgn0035431 0.83 FBgn0019940 -0.21 FBgn0027296 0.92 FBgn0034317 0.52 FBgn0035271 1.31 FBgn0036372 0.81 FBgn0019949 2.33 FBgn0034494 -0.76 FBgn0261356 1.18 FBgn0037231 1.08 FBgn0001337 0.62 FBgn0042189 -1.09 FBgn0030846 0.98 FBgn0036062 -0.47 FBgn0085498 -1.09 FBgn0031853 -0.8 FBgn0003375 0.31 FBgn0038491 0.43 FBgn0033132 -0.88 FBgn0034413 -0.47 FBgn0051419 -0.62 FBgn0052944 -0.94 FBgn0051855 -1.28 FBgn0039682 -1.02 FBgn0039290 0.97 FBgn0085280 -1.84 FBgn0052677 0.59 FBgn0036222 0.92 FBgn0034240 -0.49 FBgn0034037 -1.07 FBgn0051380 0.45 FBgn0033502 -0.99 FBgn0034786 0.17 FBgn0034133 0.31 FBgn0013672 0.4 FBgn0033540 -0.48 FBgn0033971 0.26 FBgn0038355 -0.12 FBgn0031758 1.08 FBgn0031379 0.5 FBgn0004028 0.67 FBgn0030163 -0.25 FBgn0037378 -0.63 FBgn0034923 -1.27 FBgn0028938 -0.92 FBgn0035102 -0.13 FBgn0038983 -0.64 FBgn0037580 0.62 FBgn0034601 -1.52 FBgn0051954 1.05 FBgn0023178 -1.38 FBgn0039404 -2.1 FBgn0038218 1.03 FBgn0000360 -0.77 FBgn0003149 -0.75 FBgn0037134 0.51 FBgn0013764 0.61 FBgn0039360 -0.68 FBgn0028987 0.46 FBgn0033448 1.68 FBgn0036260 -1.69 FBgn0054025 -0.14 FBgn0035392 0.53 FBgn0033834 0.12 FBgn0033658 -0.34 FBgn0053689 0.94 FBgn0024542 0.52 FBgn0023507 0.94 FBgn0036240 -0.15 FBgn0040355 0.59 FBgn0050286 -0.46 FBgn0052703 0.8 FBgn0053465 -0.72 FBgn0011291 1.62 FBgn0038108 -1.15 FBgn0031971 -0.81 FBgn0030759 0.3 FBgn0085411 -0.73 FBgn0028372 0.75 FBgn0033961 -0.5 FBgn0033683 1.11 FBgn0015571 1.48 FBgn0046697 1.22 FBgn0019948 -1.06 FBgn0033479 0.61 FBgn0016672 0.58 FBgn0052249 0.92 FBgn0034401 -1.53 FBgn0015803 0.72 FBgn0034406 1.41 FBgn0001330 -0.68 FBgn0010441 1.2 FBgn0036941 -0.19 FBgn0001142 0.52 FBgn0003169 0.43 FBgn0037232 0.57 FBgn0004419 -3.48 FBgn0037808 -1.87 FBgn0052104 0.74 FBgn0036956 0.89 FBgn0029700 0.51 FBgn0029665 -0.22 FBgn0034428 0.59 FBgn0028422 0.24 FBgn0037662 -0.26 FBgn0029722 -0.79 FBgn0041229 0.59 FBgn0029173 1.01 FBgn0033194 1.2 FBgn0035817 1.13 FBgn0036223 0.36 FBgn0017457 -0.99 FBgn0050195 -0.37 FBgn0030357 -0.63 FBgn0038874 0.36 FBgn0000442 0.63 FBgn0035520 0.52 FBgn0038612 -0.23 FBgn0042085 -1 FBgn0039862 1.54 FBgn0039838 -0.28 FBgn0050185 -0.96 FBgn0024956 -0.55 FBgn0034982 -0.41 FBgn0040070 0.72 FBgn0037653 1.06 FBgn0025630 0.79 FBgn0025683 0.57 FBgn0002914 -2.62 FBgn0037574 1.34 FBgn0032856 -1.27 FBgn0001986 -1.11 FBgn0034118 1.37 FBgn0020300 1.4 FBgn0038752 0.81 FBgn0034290 -1.73 FBgn0037142 1.69 FBgn0003382 0.46 FBgn0000287 0.71 FBgn0032988 -1.61 FBgn0039286 -0.59 FBgn0032790 -0.48 FBgn0030804 0.45 FBgn0039264 0.26 FBgn0003502 1.14 FBgn0032032 0.86 FBgn0038401 1.41 FBgn0016726 0.94 FBgn0041203 1.07 FBgn0039463 0.91 FBgn0037167 0.75 FBgn0031573 -0.82 FBgn0039821 0.76 FBgn0010407 -0.19 FBgn0038741 -1.69 FBgn0036708 -0.75 FBgn0010417 0.79 FBgn0033816 -0.12 FBgn0261790 0.9 FBgn0034062 -1.01 FBgn0032754 -0.45 FBgn0037569 -0.24 FBgn0031126 -0.46 FBgn0031710 1.35 FBgn0035667 0.24 FBgn0260004 -1.84 FBgn0261388 -0.39 FBgn0033454 0.62 FBgn0261548 1.29 FBgn0044324 -1.77 FBgn0050008 0.15 FBgn0029864 0.5 FBgn0031245 -1.63 FBgn0003612 -1.42 FBgn0037037 -0.71 FBgn0039859 0.76 FBgn0038068 -0.58 FBgn0031053 0.97 FBgn0259190 0.76 FBgn0025115 0.57 FBgn0036764 -0.19 FBgn0005659 0.7 FBgn0034085 -0.55 FBgn0039782 -0.65 FBgn0037987 0.5 FBgn0051121 -0.23 FBgn0033580 -0.26 FBgn0038012 1.63 FBgn0033222 -0.2 FBgn0034970 0.51 FBgn0035402 0.64 FBgn0034717 2.09 FBgn0014906 0.53 FBgn0027655 0.58 FBgn0038204 2.38 FBgn0025382 0.46 FBgn0034611 0.37 FBgn0259677 -0.88 FBgn0051098 1.09 FBgn0036870 -0.6 FBgn0040512 -3.48 FBgn0003861 0.82 FBgn0029801 0.36 FBgn0027579 -0.58 FBgn0039851 0.41 FBgn0031228 0.8 FBgn0000996 -4.38 FBgn0053547 0.59 FBgn0051710 -1.82 FBgn0032047 0.58 FBgn0050089 0.95 FBgn0032049 0.58 FBgn0050026 0.41 FBgn0033988 0.04 FBgn0037326 -1.2 FBgn0003483 -0.63 FBgn0036953 0.83 FBgn0031717 0.81 FBgn0031515 0.36 FBgn0261274 0.7 FBgn0031304 0.56 FBgn0025803 1.35 FBgn0000079 0.45 FBgn0026438 0.86 FBgn0004592 -1.3 FBgn0036484 0.57 FBgn0052643 0.87 FBgn0024733 -4.28 FBgn0020513 -1.02 FBgn0033460 -1.18 FBgn0038156 0.2 FBgn0023477 -1.83 FBgn0039246 0.84 FBgn0035529 0.88 FBgn0034182 0.26 FBgn0035771 -0.71 FBgn0034921 -0.81 FBgn0050471 -1.49 FBgn0039438 0.41 FBgn0028433 0.63 FBgn0000117 -0.66 FBgn0004049 -0.98 FBgn0031950 0.31 FBgn0023541 0.96 FBgn0026385 -0.33 FBgn0016978 2.2 FBgn0010348 -1.84 FBgn0002567 0.71 FBgn0032421 -0.66 FBgn0051679 0.55 FBgn0051548 -0.2 FBgn0038153 0.02 FBgn0037607 1.08 FBgn0021761 -0.59 FBgn0035002 1.64 FBgn0033205 0.59 FBgn0033733 0.47 FBgn0032966 0.86 FBgn0053223 -0.42 FBgn0052061 0.6 FBgn0053196 -1.49 FBgn0028694 -2 FBgn0036235 0.08 FBgn0038359 0.72 FBgn0065032 0.45 FBgn0036791 0.42 FBgn0040363 -1.66 FBgn0036877 1.05 FBgn0003607 0.93 FBgn0034021 -1.54 FBgn0051477 -1.91 FBgn0030262 1.07 FBgn0032478 0.39 FBgn0031559 0.94 FBgn0053129 -0.94 FBgn0040751 0.77 FBgn0024314 -0.89 FBgn0022097 -1.32 FBgn0030411 1.05 FBgn0053475 -0.28 FBgn0037200 0.47 FBgn0034853 -0.75 FBgn0039040 0.59 FBgn0039013 0.41 FBgn0034647 0.5 FBgn0003732 -0.85 FBgn0051464 0.89 FBgn0028543 -0.7 FBgn0010258 0.34 FBgn0030685 0.53 FBgn0039228 0.63 FBgn0030756 -1.24 FBgn0037350 -0.7 FBgn0030715 0.69 FBgn0015239 0.73 FBgn0086706 -1.35 FBgn0038685 0.41 FBgn0004584 -1.52 FBgn0014427 0.87 FBgn0031640 -0.93 FBgn0013767 -0.5 FBgn0031771 0.08 FBgn0036910 0.35 FBgn0015776 0.86 FBgn0027615 0.4 FBgn0051867 0.59 FBgn0033924 0.22 FBgn0005674 -1.02 FBgn0039141 1.34 FBgn0039761 0.63 FBgn0040651 -0.98 FBgn0033289 -0.55 FBgn0032782 1.23 FBgn0261397 -0.49 FBgn0022724 -0.71 FBgn0029809 0.73 FBgn0028904 -1.3 FBgn0031664 0.78 FBgn0052690 1.19 FBgn0035721 0.31 FBgn0038737 0.8 FBgn0027507 -0.25 FBgn0011818 0.8 FBgn0035760 0.92 FBgn0035776 0.52 FBgn0038524 0.7 FBgn0259728 0.58 FBgn0037183 0.99 FBgn0037212 0.4 FBgn0015129 1.23 FBgn0029995 0.27 FBgn0027453 1.03 FBgn0015245 1 FBgn0038827 0.62 FBgn0030237 0.05 FBgn0032749 -0.61 FBgn0019637 -1.56 FBgn0035557 1.04 FBgn0260741 0.54 FBgn0250838 -1.21 FBgn0036436 0.67 FBgn0037464 0.33 FBgn0259876 -1.31 FBgn0035375 1.21 FBgn0040260 0.93 FBgn0037069 1.4 FBgn0028886 -0.62 FBgn0031996 1.01 FBgn0036082 0.54 FBgn0035537 0.9 FBgn0083965 -1.31 FBgn0037962 0.33 FBgn0002535 0.7 FBgn0039161 1.52 FBgn0051068 0.61 FBgn0030768 0.67 FBgn0002021 1.29 FBgn0259189 0.52 FBgn0054038 1.85 FBgn0050105 -0.7 FBgn0037562 -0.25 FBgn0000015 0.69 FBgn0001263 1.37 FBgn0003074 0.74 FBgn0036520 -0.98 FBgn0031208 -0.96 FBgn0030628 -0.69 FBgn0041781 0.6 FBgn0026384 -0.67 FBgn0250904 0.41 FBgn0085200 0.43 FBgn0040994 -0.98 FBgn0032894 -0.09 FBgn0019643 0.41 FBgn0053914 -0.95 FBgn0053516 0.93 FBgn0031868 0.51 FBgn0031092 0.7 FBgn0040503 0.64 FBgn0040941 0.45 FBgn0038487 0.64 FBgn0261631 -0.98 FBgn0031367 -1.55 FBgn0029813 0.17 FBgn0051111 -2.01 FBgn0013954 0.41 FBgn0050443 1.67 FBgn0033127 -0.59 FBgn0031253 -0.53 FBgn0028468 0.15 FBgn0086368 0.86 FBgn0000357 1.04 FBgn0035780 0.21 FBgn0030289 0.15 FBgn0039632 1.32 FBgn0015524 0.85 FBgn0036537 0.5 FBgn0040609 -0.48 FBgn0035923 1.32 FBgn0034710 -0.75 FBgn0051002 0.27 FBgn0038099 -0.51 FBgn0086359 -0.24 FBgn0003888 1.44 FBgn0030538 -0.25 FBgn0032815 1.26 FBgn0029642 0.27 FBgn0035253 0.74 FBgn0030322 0.51 FBgn0038868 -2.33 FBgn0030625 -1.53 FBgn0031103 -0.34 FBgn0040832 0.51 FBgn0261526 -1.46 FBgn0033041 -0.63 FBgn0031064 -0.78 FBgn0002774 1.22 FBgn0011787 1 FBgn0031062 1.17 FBgn0039927 1.65 FBgn0035243 -0.42 FBgn0036927 -0.26 FBgn0027079 0.14 FBgn0051415 -0.61 FBgn0000659 -0.37 FBgn0050122 1.23 FBgn0037389 -0.51 FBgn0026374 0.64 FBgn0003741 -0.49 FBgn0036338 0.54 FBgn0030341 -0.14 FBgn0031310 0.67 FBgn0040972 -0.38 FBgn0052238 -0.41 FBgn0036333 1.15 FBgn0033636 -1.95 FBgn0030313 0.59 FBgn0037876 -1.38 FBgn0035480 0.35 FBgn0033452 0.77 FBgn0050045 0.47 FBgn0040256 0.85 FBgn0023528 -1.1 FBgn0041239 -1.29 FBgn0027948 -0.46 FBgn0039789 0.7 FBgn0260799 0.6 FBgn0037359 -1 FBgn0030544 -0.6 FBgn0022702 0.23 FBgn0001325 0.74 FBgn0032369 0.89 FBgn0052633 -0.52 FBgn0035856 0.32 FBgn0039665 0.32 FBgn0028487 3.41 FBgn0003676 -1.37 FBgn0033158 1.59 FBgn0039939 0.22 FBgn0030399 0.77 FBgn0014184 -0.57 FBgn0037122 0.91 FBgn0085284 1.71 FBgn0261535 0.55 FBgn0038732 0.15 FBgn0012034 -2.06 FBgn0031145 0.77 FBgn0041161 0.58 FBgn0003067 -0.17 FBgn0002578 -1.43 FBgn0016650 -0.22 FBgn0053138 -0.9 FBgn0259216 -1.72 FBgn0036565 0.19 FBgn0035144 0.85 FBgn0033438 0.49 FBgn0250841 -0.54 FBgn0038272 1.47 FBgn0030949 -0.85 FBgn0053286 0.42 FBgn0032005 0.38 FBgn0038674 -0.11 FBgn0015000 -0.51 FBgn0004907 -0.53 FBgn0039796 -0.38 FBgn0051901 1.09 FBgn0037379 0.15 FBgn0039204 0.84 FBgn0032515 -1.08 FBgn0029079 0.24 FBgn0034397 0.68 FBgn0003321 1.59 FBgn0027601 -1.53 FBgn0003255 0.34 FBgn0036552 0.79 FBgn0032290 1.17 FBgn0261854 1.39 FBgn0030940 1.69 FBgn0030774 -0.83 FBgn0037500 1.2 FBgn0261800 0.99 FBgn0003638 -2.15 FBgn0032094 1.22 FBgn0259896 0.72 FBgn0038188 0.18 FBgn0034530 0.65 FBgn0051235 0.58 FBgn0035254 -0.55 FBgn0032772 1.21 FBgn0038630 -0.06 FBgn0011509 0.71 FBgn0038386 0.44 FBgn0035741 1.13 FBgn0030217 0.86 FBgn0052811 -0.47 FBgn0004872 0.2 FBgn0036489 0.44 FBgn0260747 -0.48 FBgn0035696 0.42 FBgn0032260 1.54 FBgn0037644 -0.4 FBgn0004054 0.97 FBgn0040096 -1.37 FBgn0085812 1.3 FBgn0025726 -1.29 FBgn0027109 0.56 FBgn0032039 0.94 FBgn0085489 -0.66 FBgn0039596 0.62 FBgn0038582 0.73 FBgn0032637 -1.03 FBgn0041245 1.71 FBgn0027600 0.68 FBgn0034462 0.48 FBgn0033902 -2.55 FBgn0042134 1.69 FBgn0040718 0.81 FBgn0010660 -0.84 FBgn0020385 -0.83 FBgn0014163 -2 FBgn0038416 0.95 FBgn0011566 0.45 FBgn0034262 -0.7 FBgn0031319 -1.32 FBgn0030518 -0.26 FBgn0000592 0.53 FBgn0050085 -0.73 FBgn0085476 -1.43 FBgn0033323 0.67 FBgn0031048 -1.69 FBgn0039811 -0.5 FBgn0035208 1.52 FBgn0053213 -0.13 FBgn0019828 -0.58 FBgn0260857 -1.42 FBgn0034154 0.13 FBgn0250786 1.66 FBgn0024183 1.47 FBgn0037709 -2.25 FBgn0033688 0.1 FBgn0025637 0.57 FBgn0052371 -0.47 FBgn0050403 0.35 FBgn0038617 -0.76 FBgn0035338 1.19 FBgn0000928 1.36 FBgn0038845 -0.79 FBgn0050093 0.33 FBgn0038394 -0.05 FBgn0036859 -0.88 FBgn0036302 0.9 FBgn0046879 -0.94 FBgn0037594 0.13 FBgn0038701 0.42 FBgn0032867 -0.83 FBgn0030390 -1.05 FBgn0037370 0.49 FBgn0051550 -1.17 FBgn0052772 -0.94 FBgn0031756 0.98 FBgn0050392 1.37 FBgn0038350 2.64 FBgn0035009 -1.66 FBgn0037702 1.28 FBgn0036161 0.21 FBgn0085321 -1.24 FBgn0015615 0.72 FBgn0010548 -0.41 FBgn0010497 2.02 FBgn0031897 -1.69 FBgn0002632 -0.14 FBgn0034177 0.27 FBgn0038224 -1.05 FBgn0038133 -0.5 FBgn0085350 -0.34 FBgn0028622 -0.53 FBgn0036131 -0.36 FBgn0030511 0.95 FBgn0030562 0.55 FBgn0053182 0.38 FBgn0030980 -0.48 FBgn0032390 -1.16 FBgn0010213 0.31 FBgn0085196 -0.41 FBgn0033236 -1.39 FBgn0051391 -1.38 FBgn0031270 0.41 FBgn0035830 1.46 FBgn0034251 0.23 FBgn0037796 -1.41 FBgn0031592 -0.35 FBgn0026393 -0.73 FBgn0032265 0.82 FBgn0037059 -1.63 FBgn0039902 1.18 FBgn0037443 -0.84 FBgn0015283 -1.12 FBgn0035409 0.35 FBgn0026737 -1.39 FBgn0035902 0.81 FBgn0034515 0.33 FBgn0033032 0.71 FBgn0034299 0.78 FBgn0031275 0.26 FBgn0083981 0.46 FBgn0035827 1.24 FBgn0038756 0.4 FBgn0038407 -0.61 FBgn0085328 -0.88 FBgn0015323 0.42 FBgn0023090 0.29 FBgn0010762 0.6 FBgn0001961 0.32 FBgn0029931 0.74 FBgn0034335 0.1 FBgn0085271 1.39 FBgn0259170 0.49 FBgn0036838 -0.18 FBgn0031564 0.92 FBgn0033342 -0.18 FBgn0051875 -1.48 FBgn0035518 -0.32 FBgn0029532 -0.62 FBgn0014391 -1.49 FBgn0034140 -0.87 FBgn0034865 -0.86 FBgn0032620 1.38 FBgn0051199 -0.26 FBgn0037014 0.1 FBgn0035513 -0.78 FBgn0027539 -0.65 FBgn0029750 0.82 FBgn0004391 0.53 FBgn0015789 -1.76 FBgn0020307 -0.75 FBgn0037843 0.55 FBgn0032109 0.69 FBgn0040346 -0.51 FBgn0259163 -0.43 FBgn0035793 1.54 FBgn0002643 -4.34 FBgn0032505 -1.81 FBgn0028380 1.15 FBgn0031505 0.8 FBgn0034907 -1.18 FBgn0039303 -0.21 FBgn0001291 1.63 FBgn0039659 0.54 FBgn0261279 -1.47 FBgn0040308 0.54 FBgn0032629 -1.65 FBgn0011761 -0.37 FBgn0030370 0.54 FBgn0052016 -1.25 FBgn0025692 0.49 FBgn0038974 -0.75 FBgn0052988 1.23 FBgn0260855 -1.87 FBgn0030506 -0.2 FBgn0035166 0.2 FBgn0032360 0.38 FBgn0030406 1.6 FBgn0041621 -0.25 FBgn0036359 0.32 FBgn0041102 0.87 FBgn0033885 0.47 FBgn0026143 -1.02 FBgn0051087 -1.19 FBgn0028695 -1.08 FBgn0037679 -0.91 FBgn0034911 -1 FBgn0033949 0.79 FBgn0037050 0.39 FBgn0261086 0.37 FBgn0261871 -0.97 FBgn0029929 0.74 FBgn0036756 0.7 FBgn0039272 -0.56 FBgn0029003 -1.16 FBgn0038655 -0.51 FBgn0037307 0.78 FBgn0003141 -1.02 FBgn0012344 0.14 FBgn0033109 -1.88 FBgn0014002 -0.7 FBgn0011774 0.45 FBgn0053202 0.53 FBgn0085339 1.34 FBgn0038610 -1.84 FBgn0037435 0.53 FBgn0029870 0.57 FBgn0036168 0.47 FBgn0051638 1.5 FBgn0038172 -0.6 FBgn0011555 0.22 FBgn0051159 -0.94 FBgn0039023 -0.44 FBgn0038509 1.27 FBgn0038343 -0.41 FBgn0001992 0.53 FBgn0003028 -0.94 FBgn0033859 1.43 FBgn0052685 0.83 FBgn0000449 0.42 FBgn0040356 0.33 FBgn0029503 0.93 FBgn0036128 -0.29 FBgn0029907 0.75 FBgn0034166 -2.59 FBgn0033054 -0.42 FBgn0085376 -0.36 FBgn0031376 1.4 FBgn0033428 -1.27 FBgn0033916 1.57 FBgn0037744 -0.49 FBgn0004644 -0.44 FBgn0038880 0.51 FBgn0032449 -1.93 FBgn0033069 0.85 FBgn0030925 0.69 FBgn0035411 -0.27 FBgn0038053 -1.98 FBgn0033958 0.68 FBgn0051446 -1.38 FBgn0030067 -1.04 FBgn0020655 0.64 FBgn0064766 0.62 FBgn0039089 1.24 FBgn0261292 1.07 FBgn0050020 -1.02 FBgn0036177 -0.25 FBgn0250849 0.82 FBgn0028381 3.03 FBgn0038506 -1.02 FBgn0085225 -0.53 FBgn0014009 -2.14 FBgn0031085 0.33 FBgn0036289 -0.62 FBgn0028996 -0.26 FBgn0010339 -0.83 FBgn0261592 -3.96 FBgn0260754 1.05 FBgn0003448 -1.33 FBgn0036774 2.05 FBgn0086694 1.23 FBgn0004921 0.47 FBgn0040107 -0.59 FBgn0026314 -0.74 FBgn0050342 1.25 FBgn0024941 1.05 FBgn0032083 0.83 FBgn0040387 -0.25 FBgn0037898 -1.81 FBgn0039233 0.8 FBgn0001316 2.12 FBgn0037882 0.98 FBgn0033942 0.16 FBgn0053207 3.06 FBgn0022359 -1.02 FBgn0039602 0.79 FBgn0250867 0.62 FBgn0034473 -0.65 FBgn0037170 -0.6 FBgn0083975 -1.35 FBgn0031534 1.18 FBgn0058045 0.54 FBgn0031004 -0.36 FBgn0031260 -0.75 FBgn0038029 0.4 FBgn0035194 0.98 FBgn0040398 0.69 FBgn0026199 0.74 FBgn0039194 0.36 FBgn0030995 0.28 FBgn0037921 1.21 FBgn0031423 -0.13 FBgn0032800 -1.71 FBgn0037880 0.64 FBgn0026089 0.5 FBgn0010398 -0.32 FBgn0017550 -0.29 FBgn0035981 0.98 FBgn0025885 -0.6 FBgn0037686 -1.34 FBgn0031331 -0.76 FBgn0034246 1.21 FBgn0085256 0.58 FBgn0050000 0.57 FBgn0028895 -1.52 FBgn0034047 0.57 FBgn0039431 -0.65 FBgn0051424 -1.48 FBgn0087039 1.3 FBgn0053093 -1.02 FBgn0033644 0.57 FBgn0053290 0.85 FBgn0004781 0.24 FBgn0052855 -1.24 FBgn0031678 0.63 FBgn0028418 0.68 FBgn0038260 1.02 FBgn0260643 -0.94 FBgn0031012 -0.66 FBgn0046704 -0.3 FBgn0040931 0.32 FBgn0033590 0.4 FBgn0000560 -0.76 FBgn0052137 -0.22 FBgn0032650 1.04 FBgn0023523 -0.48 FBgn0030016 0.77 FBgn0004648 1.14 FBgn0037325 1 FBgn0051189 1.04 FBgn0260936 1.22 FBgn0035279 0.28 FBgn0051324 0.54 FBgn0038069 1 FBgn0259986 0.99 FBgn0036271 0.52 FBgn0034997 -1.27 FBgn0002930 0.77 FBgn0033367 0.27 FBgn0031734 1.6 FBgn0032002 0.85 FBgn0039874 0.85 FBgn0037092 -0.08 FBgn0053988 1.13 FBgn0032728 -0.61 FBgn0004240 0.77 FBgn0040321 0.55 FBgn0050499 1.22 FBgn0023083 -0.44 FBgn0034255 1.27 FBgn0037240 0.55 FBgn0061435 0.8 FBgn0037365 0.33 FBgn0030429 0.39 FBgn0015519 0.93 FBgn0010043 -1.57 FBgn0034195 0.21 FBgn0052333 1.27 FBgn0051852 -1.82 FBgn0031393 1.87 FBgn0039301 0.14 FBgn0039530 0.9 FBgn0052603 -1.21 FBgn0034351 0.59 FBgn0036107 -1.1 FBgn0250814 0.5 FBgn0034521 1.15 FBgn0050289 0.68 FBgn0032492 0.22 FBgn0030614 -0.49 FBgn0034367 1.64 FBgn0020887 0.28 FBgn0036697 -0.19 FBgn0034356 0.31 FBgn0036860 -0.53 FBgn0003527 1.7 FBgn0052700 0.87 FBgn0038294 -0.15 FBgn0036446 0.18 FBgn0033677 0.39 FBgn0028667 -0.54 FBgn0028868 -2.35 FBgn0037620 0.78 FBgn0025709 0.27 FBgn0038291 -0.52 FBgn0032720 0.28 FBgn0029848 0.99 FBgn0016693 1.16 FBgn0052380 -0.47 FBgn0035173 -1.1 FBgn0038683 -1.73 FBgn0020278 1.63 FBgn0260430 -0.73 FBgn0038113 -0.4 FBgn0039757 -3.27 FBgn0010296 0.55 FBgn0066292 -0.26 FBgn0039827 1.47 FBgn0031465 -1.06 FBgn0053082 1.25 FBgn0051248 0.78 FBgn0034829 0.58 FBgn0035085 1.41 FBgn0037292 -0.22 FBgn0030807 1.07 FBgn0036577 0.49 FBgn0261049 -1.09 FBgn0030874 -0.75 FBgn0050376 1 FBgn0039128 -0.88 FBgn0011603 0.71 FBgn0052055 2.08 FBgn0031910 0.63 FBgn0032221 0.59 FBgn0030224 -0.61 FBgn0036360 0.68 FBgn0035272 -1.88 FBgn0054046 0.55 FBgn0051080 0.54 FBgn0028856 0.7 FBgn0030634 -0.51 FBgn0026718 -0.15 FBgn0034985 0.86 FBgn0260477 -0.42 FBgn0027779 -0.4 FBgn0039751 0.4 FBgn0028848 -1.22 FBgn0031378 -0.45 FBgn0001491 1.22 FBgn0033970 -0.51 FBgn0040063 0.08 FBgn0052442 1.19 FBgn0020521 0.75 FBgn0260010 -0.27 FBgn0038978 -1.06 FBgn0027095 -0.92 FBgn0030657 -0.42 FBgn0052635 1.48 FBgn0002939 -1.05 FBgn0030438 -0.22 FBgn0031489 0.41 FBgn0001224 -1.44 FBgn0261068 2.51 FBgn0260971 -0.11 FBgn0036220 0.25 FBgn0033446 -0.45 FBgn0038645 0.26 FBgn0030061 -1.1 FBgn0033897 -4.62 FBgn0037087 0.91 FBgn0026309 -0.59 FBgn0037276 -0.08 FBgn0261268 0.69 FBgn0001624 -0.75 FBgn0015872 -0.52 FBgn0031345 -0.79 FBgn0037491 -0.19 FBgn0261629 0.34 FBgn0031627 0.93 FBgn0033551 0.43 FBgn0030905 1.32 FBgn0000454 -0.23 FBgn0031657 -0.19 FBgn0002901 1.61 FBgn0005638 -2.39 FBgn0032250 -1.12 FBgn0013301 1.44 FBgn0037016 0.66 FBgn0051769 -1.47 FBgn0023509 -2.52 FBgn0050161 -0.38 FBgn0037137 -1.12 FBgn0025186 1.47 FBgn0037236 0.45 FBgn0036601 -0.12 FBgn0035948 0.49 FBgn0032014 1.3 FBgn0037541 0.6 FBgn0029822 -5.64 FBgn0010226 2.58 FBgn0063493 -0.56 FBgn0036373 0.92 FBgn0034963 0.88 FBgn0047038 0.24 FBgn0052432 0.79 FBgn0053462 0.58 FBgn0039698 0.68 FBgn0002862 -0.21 FBgn0035470 1.37 FBgn0010433 1.01 FBgn0034880 -0.73 FBgn0000535 -0.03 FBgn0015583 -1.18 FBgn0260460 1.31 FBgn0037299 -0.87 FBgn0051784 -1.19 FBgn0038640 0.54 FBgn0051050 -0.54 FBgn0038866 -1.07 FBgn0004913 -1.65 FBgn0037710 0.45 FBgn0038769 0.57 FBgn0033867 1.21 FBgn0010750 -0.39 FBgn0027562 0.84 FBgn0260655 1.04 FBgn0083962 -0.99 FBgn0024294 0.52 FBgn0003545 1.09 FBgn0033426 -2.36 FBgn0030280 -0.45 FBgn0038853 0.55 FBgn0039609 -0.56 FBgn0036502 -1.26 FBgn0034598 0.05 FBgn0036229 -0.37 FBgn0005427 0.59 FBgn0069969 1.84 FBgn0024997 -0.55 FBgn0025334 -0.9 FBgn0035959 -0.94 FBgn0037940 0.49 FBgn0035468 1.15 FBgn0036785 -0.94 FBgn0040232 -0.64 FBgn0001994 3.09 FBgn0021875 0.74 FBgn0020248 -1.31 FBgn0037339 -1.36 FBgn0035724 1.11 FBgn0034058 0.51 FBgn0036075 0.57 FBgn0036367 0.43 FBgn0003091 0.69 FBgn0034230 -0.51 FBgn0260763 0.87 FBgn0028538 1.06 FBgn0034497 0.93 FBgn0052196 -0.83 FBgn0038951 -0.27 FBgn0085305 0.53 FBgn0000370 2.03 FBgn0031320 -0.34 FBgn0039691 0.77 FBgn0085444 -3.1 FBgn0041337 0.84 FBgn0000377 1.69 FBgn0029117 -1 FBgn0030243 -0.56 FBgn0028894 -0.06 FBgn0052832 -1 FBgn0036723 -0.46 FBgn0040985 0.92 FBgn0085318 -0.84 FBgn0032216 -0.74 FBgn0039635 -0.19 FBgn0039518 0.62 FBgn0037958 -2.13 FBgn0001104 1.29 FBgn0036096 0.43 FBgn0035073 0.38 FBgn0033259 -0.61 FBgn0015034 0.58 FBgn0016120 -1.81 FBgn0001253 -0.66 FBgn0027359 0.2 FBgn0039167 -0.7 FBgn0032168 0.76 FBgn0051150 1.11 FBgn0026872 0.57 FBgn0031033 0.34 FBgn0020642 -0.23 FBgn0032176 1.04 FBgn0261108 -0.44 FBgn0014031 0.97 FBgn0052547 -0.89 FBgn0004573 0.48 FBgn0035743 0.53 FBgn0028950 -0.95 FBgn0003373 -0.13 FBgn0013718 -1.03 FBgn0039465 1.51 FBgn0025592 -0.3 FBgn0034728 0.32 FBgn0003089 0.25 FBgn0261609 -1.91 FBgn0027279 -1.77 FBgn0050091 1.75 FBgn0037756 0.63 FBgn0036550 0.62 FBgn0024432 -1.71 FBgn0034898 -1.19 FBgn0260439 0.06 FBgn0032946 0.95 FBgn0031633 0.33 FBgn0023513 0.79 FBgn0024249 0.76 FBgn0038135 2.21 FBgn0035631 -0.61 FBgn0054028 -0.31 FBgn0260959 -1.22 FBgn0027569 0.39 FBgn0015793 0.62 FBgn0031170 1.74 FBgn0051038 -0.94 FBgn0026879 0.52 FBgn0003721 -1.08 FBgn0034411 0.87 FBgn0025456 -0.75 FBgn0031920 0.37 FBgn0003319 -0.26 FBgn0051294 0.81 FBgn0052220 -1.37 FBgn0033121 1.73 FBgn0034694 0.84 FBgn0051093 0.87 FBgn0038909 0.53 FBgn0040273 1.3 FBgn0038165 0.5 FBgn0037616 1.12 FBgn0040384 1.27 FBgn0036711 1.23 FBgn0031875 -0.07 FBgn0065035 -1.4 FBgn0259822 0.82 FBgn0039258 0.39 FBgn0260965 -1.18 FBgn0025739 0.38 FBgn0085438 0.5 FBgn0038789 0.3 FBgn0058439 0.6 FBgn0032339 -0.46 FBgn0261287 0.43 FBgn0037918 1.23 FBgn0026141 -1.56 FBgn0040345 -0.13 FBgn0050416 0.51 FBgn0031935 0.8 FBgn0036585 -0.59 FBgn0032385 -1.25 FBgn0032703 -0.1 FBgn0050325 0.34 FBgn0036626 1.26 FBgn0027580 0.8 FBgn0032680 0.75 FBgn0032809 -0.58 FBgn0037518 0.35 FBgn0052486 1.07 FBgn0037222 1.62 FBgn0086915 -0.22 FBgn0085447 0.88 FBgn0031306 0.48 FBgn0035676 -0.43 FBgn0027951 0.55 FBgn0051089 0.96 FBgn0033850 -1.52 FBgn0029959 0.41 FBgn0034789 1.02 FBgn0002899 -0.9 FBgn0034012 0.75 FBgn0022699 -1.49 FBgn0034460 -0.8 FBgn0040940 -0.41 FBgn0040373 0.59 FBgn0030114 -0.47 FBgn0004364 -0.56 FBgn0037436 0.59 FBgn0039688 1.27 FBgn0033729 -1.02 FBgn0030982 -0.71 FBgn0023550 0.62 FBgn0034219 -0.49 FBgn0031768 0.61 FBgn0035348 -0.28 FBgn0035437 0.31 FBgn0031287 0.47 FBgn0036035 0.54 FBgn0031952 0.66 FBgn0037852 1.07 FBgn0029952 0.35 FBgn0037297 1.3 FBgn0038046 1.15 FBgn0037409 -1.25 FBgn0026015 -1.02 FBgn0038147 -1.76 FBgn0036009 1.2 FBgn0035032 -0.87 FBgn0037696 1.73 FBgn0033757 0.84 FBgn0033351 0.42 FBgn0033465 -0.77 FBgn0026479 0.12 FBgn0037534 -1.22 FBgn0037023 -0.67 FBgn0025644 0.8 FBgn0032373 -2.28 FBgn0039625 -0.46 FBgn0041712 -0.53 FBgn0033177 0.56 FBgn0003464 -1.18 FBgn0014037 2 FBgn0036738 0.85 FBgn0035445 0.55 FBgn0022288 -0.78 FBgn0085233 0.84 FBgn0030529 0.79 FBgn0051807 -0.77 FBgn0030298 0.72 FBgn0002781 1.94 FBgn0030361 -1.99 FBgn0085450 -0.45 FBgn0039232 0.53 FBgn0037736 0.85 FBgn0033377 0.05 FBgn0026576 -0.95 FBgn0035475 -0.27 FBgn0031739 1.57 FBgn0043842 -3.63 FBgn0051040 0.65 FBgn0053554 -4.38 FBgn0002645 -1.01 FBgn0024365 1.45 FBgn0000109 -0.34 FBgn0261671 1.33 FBgn0038071 1.19 FBgn0037815 -0.42 FBgn0038526 -0.16 FBgn0052076 -0.4 FBgn0025832 0.69 FBgn0051773 1.14 FBgn0031388 0.92 FBgn0031494 0.92 FBgn0001077 -0.94 FBgn0044030 -0.33 FBgn0040365 0.26 FBgn0036211 -0.67 FBgn0039226 0.6 FBgn0004436 -1.65 FBgn0032834 -1.64 FBgn0033845 -0.68 FBgn0038084 -1.55 FBgn0042199 -0.44 FBgn0037556 -0.55 FBgn0031575 -1.05 FBgn0029958 -0.39 FBgn0261393 0.87 FBgn0036291 -1.26 FBgn0004957 0.74 FBgn0032434 0.61 FBgn0035601 1.03 FBgn0040723 1.34 FBgn0014863 -0.21 FBgn0029861 -0.39 FBgn0013756 -1.02 FBgn0032997 0.3 FBgn0003218 0.66 FBgn0011672 -0.68 FBgn0033358 0.9 FBgn0014469 0.72 FBgn0028554 0.75 FBgn0037531 0.34 FBgn0029932 -0.65 FBgn0033234 0.43 FBgn0016123 -0.27 FBgn0259697 -0.41 FBgn0083141 -1.07 FBgn0069354 -0.34 FBgn0034506 -0.35 FBgn0023170 -3.39 FBgn0039591 -0.86 FBgn0030177 0.17 FBgn0086676 -0.5 FBgn0004401 1.44 FBgn0259832 1.73 FBgn0029588 0.74 FBgn0039528 -1.03 FBgn0250821 0.87 FBgn0034948 2.32 FBgn0033405 2.71 FBgn0032821 0.81 FBgn0051229 -0.68 FBgn0037185 0.45 FBgn0016081 -0.36 FBgn0029660 -0.49 FBgn0020269 1.35 FBgn0040736 -1.39 FBgn0028360 -0.57 FBgn0015399 -0.61 FBgn0010240 0.29 FBgn0027080 1.05 FBgn0030314 -1.25 FBgn0053143 1.17 FBgn0028962 1.14 FBgn0039118 -0.91 FBgn0030245 1 FBgn0038566 0.7 FBgn0035904 -0.15 FBgn0036191 1.02 FBgn0033783 0.46 FBgn0011589 0.64 FBgn0038694 -0.73 FBgn0085355 -0.56 FBgn0036058 0.32 FBgn0039051 -0.22 FBgn0085455 1.04 FBgn0051956 0.36 FBgn0050272 0.34 FBgn0038774 -1.69 FBgn0028838 1.69 FBgn0031726 1.32 FBgn0011638 -0.66 FBgn0029948 1.39 FBgn0040735 0.76 FBgn0030970 -0.64 FBgn0030159 0.14 FBgn0029137 -0.63 FBgn0033188 1.14 FBgn0032204 -1.11 FBgn0025702 0.82 FBgn0259818 0.65 FBgn0036278 0.68 FBgn0030790 0.63 FBgn0261618 1.11 FBgn0011570 0.2 FBgn0035263 -0.57 FBgn0030932 0.69 FBgn0026189 0.52 FBgn0038009 0.4 FBgn0039584 0.98 FBgn0027556 1.08 FBgn0035245 0.41 FBgn0031817 -1.37 FBgn0035068 -0.83 FBgn0032078 -0.52 FBgn0051806 4.88 FBgn0030675 -1.33 FBgn0031791 0.28 FBgn0030208 -0.92 FBgn0040607 0.87 FBgn0003510 1.34 FBgn0031044 0.71 FBgn0041182 1.28 FBgn0038125 -0.06 FBgn0035586 -0.54 FBgn0053506 -0.67 FBgn0034458 0.68 FBgn0050423 0.67 FBgn0035572 0.99 FBgn0034490 0.53 FBgn0034783 0.55 FBgn0040334 0.54 FBgn0040524 -1.39 FBgn0039702 1.19 FBgn0030881 -1.37 FBgn0261552 -3.4 FBgn0052675 0.96 FBgn0015039 0.87 FBgn0259240 0.74 FBgn0027780 -0.09 FBgn0035131 0.39 FBgn0036769 0.87 FBgn0038838 0.58 FBgn0041087 0.61 FBgn0023407 1.13 FBgn0000520 0.56 FBgn0037290 0.09 FBgn0026432 -0.15 FBgn0032648 0.6 FBgn0030334 -0.71 FBgn0037123 0.19 FBgn0036687 -1.24 FBgn0015359 0.19 FBgn0037153 -1.04 FBgn0036242 0.73 FBgn0033615 -1.02 FBgn0036468 0.88 FBgn0039079 -0.43 FBgn0039576 -0.88 FBgn0030723 0.75 FBgn0032876 -1.82 FBgn0000028 -0.72 FBgn0003411 0.31 FBgn0034588 1.44 FBgn0034820 -0.83 FBgn0036643 0.66 FBgn0036985 -0.09 FBgn0036593 -0.77 FBgn0033775 0.9 FBgn0051814 -0.18 FBgn0039503 -1.1 FBgn0031745 -0.21 FBgn0027497 -1.31 FBgn0030073 0.73 FBgn0027889 -1.12 FBgn0034377 0.77 FBgn0051712 0.76 FBgn0024238 0.72 FBgn0053526 -4.33 FBgn0030968 -0.54 FBgn0036895 -0.26 FBgn0032614 -0.9 FBgn0028420 -2.37 FBgn0051950 -0.83 FBgn0030174 -0.8 FBgn0032096 0.57 FBgn0030320 0.82 FBgn0030598 -0.56 FBgn0037717 0.43 FBgn0034315 0.44 FBgn0039616 1.03 FBgn0050374 0.91 FBgn0039864 0.5 FBgn0043457 -0.66 FBgn0052109 0.62 FBgn0032163 0.8 FBgn0035121 -1.26 FBgn0000279 1.07 FBgn0039205 0.5 FBgn0032487 -0.7 FBgn0037070 -2.15 FBgn0033096 -0.29 FBgn0054012 -0.78 FBgn0032414 -1.39 FBgn0031022 -0.82 FBgn0026616 0.31 FBgn0030955 -0.2 FBgn0029833 0.83 FBgn0259223 -0.32 FBgn0259742 -0.6 FBgn0030329 0.67 FBgn0038474 -0.59 FBgn0053198 0.87 FBgn0035044 -0.81 FBgn0037487 -0.68 FBgn0010114 1.17 FBgn0031055 0.89 FBgn0020381 0.66 FBgn0038819 0.41 FBgn0039943 -0.42 FBgn0030456 -0.47 FBgn0032350 -0.09 FBgn0038366 0.47 FBgn0034885 0.14 FBgn0032132 -0.62 FBgn0085367 -1.05 FBgn0039033 0.97 FBgn0085462 0.42 FBgn0032195 0.6 FBgn0010424 1.84 FBgn0260793 -1.01 FBgn0039093 -1.08 FBgn0033762 0.81 FBgn0030304 -1.01 FBgn0004132 1.02 FBgn0035866 1.28 FBgn0004511 -0.46 FBgn0043362 -0.51 FBgn0037140 1.37 FBgn0051259 0.57 FBgn0032683 0.59 FBgn0010602 -0.5 FBgn0040899 0.29 FBgn0010470 0.68 FBgn0085295 1.16 FBgn0028563 1.1 FBgn0053317 0.62 FBgn0033744 -0.81 FBgn0001308 0.7 FBgn0034308 0.67 FBgn0030376 0.86 FBgn0003941 -4.72 FBgn0033631 1.41 FBgn0032598 1.82 FBgn0015321 0.79 FBgn0053002 0.66 FBgn0030080 0.82 FBgn0025624 0.71 FBgn0028901 0.63 FBgn0028944 -1.45 FBgn0031944 1.08 FBgn0039475 0.76 FBgn0261563 -0.65 FBgn0036991 0.05 FBgn0036089 -0.52 FBgn0034800 0.78 FBgn0033344 1.09 FBgn0083943 -0.96 FBgn0037412 -0.74 FBgn0040397 0.67 FBgn0034654 -1.72 FBgn0037955 1.34 FBgn0028853 -1.23 FBgn0085480 0.92 FBgn0051368 0.46 FBgn0052102 -0.64 FBgn0037901 0.4 FBgn0037039 -0.87 FBgn0033880 1.09 FBgn0035807 -0.54 FBgn0029746 0.59 FBgn0035039 1.09 FBgn0050054 0.35 FBgn0030440 0.44 FBgn0015591 1.66 FBgn0038894 -0.81 FBgn0028646 -0.57 FBgn0014368 3.81 FBgn0259233 0.32 FBgn0000406 1.91 FBgn0032282 0.51 FBgn0085491 -0.78 FBgn0028497 -1.65 FBgn0029713 0.92 FBgn0036614 -2.27 FBgn0015829 0.71 FBgn0032139 -2.21 FBgn0261461 1.63 FBgn0038717 0.75 FBgn0039370 0.59 FBgn0020371 -0.92 FBgn0038923 1.45 FBgn0050334 -0.22 FBgn0042205 0.54 FBgn0005612 -1.01 FBgn0031182 -0.36 FBgn0004117 0.41 FBgn0003117 1.3 FBgn0028570 -1.02 FBgn0052176 0.37 FBgn0029733 0.66 FBgn0032117 0.23 FBgn0050269 -1.33 FBgn0039004 -0.75 FBgn0033770 0.86 FBgn0015379 -0.31 FBgn0031194 -0.95 FBgn0020255 -0.52 FBgn0003392 -0.78 FBgn0043791 -1.65 FBgn0032150 -0.19 FBgn0037065 0.83 FBgn0035800 0.2 FBgn0037908 0.94 FBgn0029795 0.94 FBgn0011822 -0.65 FBgn0029976 0.93 FBgn0004590 -0.47 FBgn0040688 0.4 FBgn0035941 0.95 FBgn0000221 -2.02 FBgn0051300 0.51 FBgn0040009 -1.12 FBgn0039055 0.88 FBgn0250791 -3.69 FBgn0037751 0.99 FBgn0036808 2.03 FBgn0032666 0.92 FBgn0053229 -0.85 FBgn0034132 -0.34 FBgn0002441 -1.74 FBgn0053127 -1.79 FBgn0036833 0.93 FBgn0035336 1.56 FBgn0034156 0.54 FBgn0041111 2.08 FBgn0250906 1 FBgn0034736 1.11 FBgn0023180 0.69 FBgn0043550 -1.69 FBgn0259172 -3.9 FBgn0000099 0.51 FBgn0053120 0.69 FBgn0039501 -1.18 FBgn0036522 1.09 FBgn0037609 0.68 FBgn0037309 0.58 FBgn0035000 0.19 FBgn0028527 1.06 FBgn0026597 0.72 FBgn0040237 -1.48 FBgn0001083 0.33 FBgn0024986 1.46 FBgn0041191 1.21 FBgn0035430 0.88 FBgn0029538 0.55 FBgn0037448 0.53 FBgn0039482 -0.35 FBgn0032788 0.62 FBgn0034249 -1.13 FBgn0027073 0.82 FBgn0032408 1.16 FBgn0003162 0.92 FBgn0052651 0.89 FBgn0005636 1.83 FBgn0261258 0.9 FBgn0250836 -0.32 FBgn0086708 0.92 FBgn0041707 1.07 FBgn0035515 0.78 FBgn0031344 -0.5 FBgn0038861 0.55 FBgn0037317 -0.1 FBgn0011288 1.06 FBgn0051291 -3.11 FBgn0027356 0.36 FBgn0053225 0.47 FBgn0000346 -1.82 FBgn0033287 1.59 FBgn0036567 0.81 FBgn0052141 -0.41 FBgn0051225 -0.42 FBgn0038796 1.9 FBgn0039068 0.72 FBgn0039424 -0.84 FBgn0261792 0.68 FBgn0015230 -0.29 FBgn0050296 1.43 FBgn0038690 -1.13 FBgn0037827 0.61 FBgn0051663 0.98 FBgn0038418 1.24 FBgn0053181 -0.99 FBgn0039218 -1.68 FBgn0033587 -0.79 FBgn0035734 1.13 FBgn0250876 0.83 FBgn0040817 1.2 FBgn0040010 0.98 FBgn0032051 1.07 FBgn0036004 -1 FBgn0261399 1.68 FBgn0010356 -0.52 FBgn0037197 1.05 FBgn0038327 1.55 FBgn0036143 -0.56 FBgn0034483 -1.67 FBgn0037503 0.77 FBgn0029694 -0.32 FBgn0024992 -0.34 FBgn0027537 -5.13 FBgn0030575 0.75 FBgn0037205 1.21 FBgn0032896 1.13 FBgn0040080 0.43 FBgn0030707 0.65 FBgn0037960 0.39 FBgn0031801 1.26 FBgn0030369 0.45 FBgn0026259 -1.13 FBgn0001314 -2.18 FBgn0035026 0.12 FBgn0051344 0.76 FBgn0037462 0.43 FBgn0022023 -0.35 FBgn0032631 -2.28 FBgn0029529 0.34 FBgn0002283 -1.58 FBgn0032292 -1.02 FBgn0028577 -0.86 FBgn0037610 -0.53 FBgn0039045 0.53 FBgn0085267 0.66 FBgn0010388 -0.88 FBgn0260795 0.4 FBgn0260938 0.85 FBgn0086674 0.49 FBgn0030474 1.01 FBgn0036639 1.25 FBgn0020546 -1.41 FBgn0038070 0.98 FBgn0024811 -0.26 FBgn0033483 0.34 FBgn0043010 0.11 FBgn0004513 -1.01 FBgn0031255 0.78 FBgn0037242 1 FBgn0030536 -0.35 FBgn0029512 1.25 FBgn0036605 -0.49 FBgn0037478 -1.07 FBgn0003076 1.11 FBgn0035251 -1.68 FBgn0033523 0.66 FBgn0086778 1.23 FBgn0051413 0.71 FBgn0050487 -0.37 FBgn0038912 1.01 FBgn0026148 -0.87 FBgn0036560 1.19 FBgn0085243 -1.09 FBgn0002838 -0.45 FBgn0028737 -1.01 FBgn0034546 0.63 FBgn0250789 -0.26 FBgn0023214 2.84 FBgn0035321 -0.38 FBgn0031655 -0.84 FBgn0035569 -0.34 FBgn0030761 0.44 FBgn0053768 -0.4 FBgn0037127 0.47 FBgn0051735 -0.96 FBgn0029778 0.69 FBgn0034390 1.35 FBgn0259482 -0.92 FBgn0043012 1.75 FBgn0016700 -1.08 FBgn0031155 0.27 FBgn0004370 -0.43 FBgn0039914 0.54 FBgn0025687 0.72 FBgn0035968 0.51 FBgn0038485 0.55 FBgn0039924 0.69 FBgn0030679 2.14 FBgn0039508 1.39 FBgn0053285 0.76 FBgn0034730 0.61 FBgn0033600 -1.19 FBgn0261053 0.89 FBgn0033043 -0.81 FBgn0261514 -1.56 FBgn0020493 -0.92 FBgn0034451 1.06 FBgn0031060 -0.9 FBgn0003345 1.49 FBgn0037424 0.31 FBgn0039767 0.34 FBgn0038445 -0.67 FBgn0034031 0.86 FBgn0041174 0.87 FBgn0030795 0.28 FBgn0039629 0.58 FBgn0033476 -2.23 FBgn0039848 -0.46 FBgn0036085 0.42 FBgn0000542 -1.54 FBgn0024360 -0.47 FBgn0011692 -0.82 FBgn0032104 0.64 FBgn0034928 -0.46 FBgn0034629 0.99 FBgn0032915 -1.76 FBgn0035987 0.58 FBgn0010905 -0.57 FBgn0039266 -1.4 FBgn0028982 2.83 FBgn0031189 -0.11 FBgn0015402 -8.49 FBgn0033199 0.67 FBgn0038435 0.59 FBgn0030824 -0.35 FBgn0019928 0.82 FBgn0015371 0.65 FBgn0022153 0.38 FBgn0053453 1.08 FBgn0031581 1.06 FBgn0051700 0.65 FBgn0032297 1.22 FBgn0044028 1.34 FBgn0035540 -0.97 FBgn0000307 -0.7 FBgn0036439 -3.37 FBgn0037576 -0.32 FBgn0015801 1.83 FBgn0035687 -0.49 FBgn0036843 0.51 FBgn0032986 1.16 FBgn0031999 0.06 FBgn0033192 -0.86 FBgn0034691 -1.31 FBgn0025360 -0.82 FBgn0052369 -1.41 FBgn0036813 1.97 FBgn0024963 -0.33 FBgn0034792 0.76 FBgn0014019 1.08 FBgn0039907 0.5 FBgn0083972 -0.9 FBgn0025742 -0.86 FBgn0031848 -0.36 FBgn0261699 0.65 FBgn0027785 -0.1 FBgn0032030 -3.94 FBgn0021800 -1.5 FBgn0037234 0.97 FBgn0003060 -0.36 FBgn0038876 -1.04 FBgn0026756 -0.81 FBgn0031069 0.55 FBgn0037664 -0.54 FBgn0028970 -0.71 FBgn0030434 1.32 FBgn0015221 -0.49 FBgn0031414 1.43 FBgn0035203 -0.73 FBgn0037657 1.31 FBgn0036377 0.65 FBgn0025109 -0.25 FBgn0031547 -0.08 FBgn0032271 0.04 FBgn0033685 0.67 FBgn0026403 -0.66 FBgn0038051 -0.96 FBgn0034052 -0.44 FBgn0030032 1.24 FBgn0029819 -1.11 FBgn0029866 0.54 FBgn0037169 0.35 FBgn0034834 0.77 FBgn0031431 0.61 FBgn0035797 -0.74 FBgn0030048 -1.64 FBgn0052983 -0.48 FBgn0020645 0.23 FBgn0000826 -0.24 FBgn0050377 0.78 FBgn0046885 0.22 FBgn0032191 0.92 FBgn0040679 -0.28 FBgn0016715 1.29 FBgn0037469 -0.76 FBgn0000662 -1.35 FBgn0050344 -0.38 FBgn0004507 -0.47 FBgn0016983 -0.34 FBgn0037655 -0.79 FBgn0031973 -0.89 FBgn0045501 0.82 FBgn0039379 -1.56 FBgn0032428 0.86 FBgn0045497 1.84 FBgn0031365 6.57 FBgn0038976 -0.44 FBgn0039155 1.65 FBgn0005614 1.58 FBgn0036184 1.01 FBgn0040395 0.23 FBgn0052112 -0.88 FBgn0052121 0.76 FBgn0034715 1.34 FBgn0031778 -0.14 FBgn0260462 1.31 FBgn0036879 -1.46 FBgn0014179 -0.53 FBgn0028480 -1.4 FBgn0031298 -0.41 FBgn0036766 -0.8 FBgn0033381 -0.62 FBgn0050087 1.46 FBgn0031954 -0.26 FBgn0028870 0.16 FBgn0051205 -1.46 FBgn0032215 -2.09 FBgn0046875 -0.72 FBgn0053340 -1.39 FBgn0038948 -0.72 FBgn0037150 0.46 FBgn0039407 1 FBgn0029148 0.74 FBgn0016660 1.3 FBgn0261848 -0.54 FBgn0036835 0.81 FBgn0013984 -0.71 FBgn0032471 -1.65 FBgn0031719 -1.29 FBgn0033224 0.83 FBgn0039741 1.11 FBgn0003963 -0.92 FBgn0034083 -0.19 FBgn0003178 -0.17 FBgn0033582 0.73 FBgn0035504 0.71 FBgn0036156 0.54 FBgn0039857 -3.82 FBgn0027657 1.16 FBgn0037777 0.6 FBgn0032305 -1.77 FBgn0036305 1.55 FBgn0038965 -0.61 FBgn0052095 0.26 FBgn0054008 -0.4 FBgn0020277 1.54 FBgn0030204 -0.49 FBgn0035730 0.4 FBgn0036787 0.74 FBgn0044511 -1.05 FBgn0029573 0.24 FBgn0033628 -0.64 FBgn0034966 0.75 FBgn0039357 0.08 FBgn0050187 1.54 FBgn0038234 -0.41 FBgn0061469 0.82 FBgn0037151 -0.17 FBgn0261004 0.94 FBgn0033240 1.18 FBgn0033963 0.61 FBgn0029720 1.67 FBgn0032624 -0.31 FBgn0037989 1.03 FBgn0037045 0.35 FBgn0035829 0.66 FBgn0011020 -0.45 FBgn0042179 0.33 FBgn0037979 -0.32 FBgn0010415 1.01 FBgn0034076 -0.34 FBgn0030839 -0.45 FBgn0031401 0.76 FBgn0036206 1.07 FBgn0260393 0.82 FBgn0051108 1.52 FBgn0035769 0.5 FBgn0035669 0.53 FBgn0037888 1.3 FBgn0023143 -1.47 FBgn0030040 -0.31 FBgn0085260 -0.34 FBgn0036332 1.03 FBgn0042627 0.68 FBgn0039077 0.47 FBgn0011241 0.6 FBgn0033945 -0.03 FBgn0045842 1.55 FBgn0261446 -0.23 FBgn0032110 -0.74 FBgn0053136 0.81 FBgn0039387 1.32 FBgn0031239 -0.27 FBgn0050083 0.61 FBgn0260749 1.74 FBgn0030672 -0.35 FBgn0032691 -0.51 FBgn0039440 0.66 FBgn0046322 1.13 FBgn0030346 0.54 FBgn0002571 0.72 FBgn0030057 0.62 FBgn0040206 -0.94 FBgn0034264 -0.35 FBgn0038855 -0.49 FBgn0040798 -0.34 FBgn0033887 0.4 FBgn0038357 -0.42 FBgn0031799 0.98 FBgn0033356 0.44 FBgn0011327 0.63 FBgn0034279 -0.32 FBgn0036350 0.52 FBgn0041160 -0.55 FBgn0002533 0.79 FBgn0050010 0.2 FBgn0086377 0.99 FBgn0033673 0.64 FBgn0035355 0.1 FBgn0001977 -0.35 FBgn0037765 0.8 FBgn0028540 -0.81 FBgn0052152 -1.4 FBgn0036575 0.75 FBgn0052038 1.31 FBgn0039137 0.25 FBgn0040350 0.73 FBgn0031990 -1.35 FBgn0029084 0.47 FBgn0039883 0.87 FBgn0028684 -6.04 FBgn0040389 -0.21 FBgn0003751 0.7 FBgn0033159 2.59 FBgn0261560 0.48 FBgn0052206 1.29 FBgn0015834 -4.01 FBgn0250826 0.6 FBgn0030501 -0.56 FBgn0025620 -1.97 FBgn0084001 0.89 FBgn0025616 -0.69 FBgn0259187 0.61 FBgn0031492 -1.94 FBgn0083946 -0.69 FBgn0026391 -1.02 FBgn0038746 -0.56 FBgn0261569 -0.63 FBgn0003744 -0.48 FBgn0036454 -1.71 FBgn0035019 0.38 FBgn0032516 1.98 FBgn0051482 0.55 FBgn0037328 -4.45 FBgn0243512 -2.05 FBgn0003748 0.35 FBgn0051233 0.57 FBgn0038606 -0.23 FBgn0037284 0.54 FBgn0035971 0.96 FBgn0053349 0.78 FBgn0011768 -0.69 FBgn0030551 -1.02 FBgn0015828 0.5 FBgn0026390 -1.27 FBgn0000250 -2.1 FBgn0085478 1.2 FBgn0010317 -0.38 FBgn0035425 2.19 FBgn0035900 -1.87 FBgn0015714 -0.91 FBgn0040098 1.55 FBgn0050011 1.18 FBgn0051646 1.33 FBgn0030583 -0.05 FBgn0037455 0.45 FBgn0033876 1.13 FBgn0040360 -0.23 FBgn0039025 -0.49 FBgn0004396 1.05 FBgn0034446 0.58 FBgn0036754 -0.54 FBgn0037874 -1.45 FBgn0003093 -0.32 FBgn0050022 -0.97 FBgn0029909 0.45 FBgn0036725 0.89 FBgn0038653 -1.65 FBgn0033136 0.78 FBgn0032877 0.91 FBgn0030029 0.84 FBgn0031635 -0.33 FBgn0029891 -0.45 FBgn0010238 0.7 FBgn0261550 0.79 FBgn0005278 -5.03 FBgn0021768 2.59 FBgn0040262 -0.85 FBgn0037513 1.31 FBgn0031645 1.12 FBgn0039187 -1.03 FBgn0029785 -2.76 FBgn0035795 -0.32 FBgn0030191 1.01 FBgn0032362 -0.81 FBgn0032053 0.37 FBgn0085421 1.82 FBgn0051668 0.07 FBgn0029896 2.3 FBgn0015737 0.98 FBgn0035331 1.77 FBgn0011741 0.4 FBgn0023388 -1.47 FBgn0031458 -0.9 FBgn0039955 -0.51 FBgn0034114 0.17 FBgn0030559 -0.6 FBgn0029594 1.81 FBgn0033731 -0.14 FBgn0036460 -1.94 FBgn0051720 0.35 FBgn0040371 0.22 FBgn0016684 -0.46 FBgn0250871 -0.36 FBgn0037067 0.33 FBgn0034160 -0.78 FBgn0040648 -0.27 FBgn0010651 1.51 FBgn0035522 -0.25 FBgn0031682 1.51 FBgn0035012 -2.56 FBgn0038420 1.16 FBgn0029707 1.83 FBgn0002719 -4.86 FBgn0032042 0.72 FBgn0028479 1.15 FBgn0053635 -1.62 FBgn0031312 -0.86 FBgn0032755 0.92 FBgn0054051 -1.92 FBgn0029659 0.56 FBgn0033179 1.08 FBgn0005564 -1.1 FBgn0085311 0.82 FBgn0053532 -1.4 FBgn0008636 0.79 FBgn0022344 -1.19 FBgn0030026 0.95 FBgn0087008 -3.49 FBgn0030887 1.35 FBgn0034475 -0.74 FBgn0259152 0.84 FBgn0028897 0.22 FBgn0020653 1.13 FBgn0031561 1.65 FBgn0260719 0.62 FBgn0051822 -0.58 FBgn0034168 0.79 FBgn0052626 -1.57 FBgn0034310 0.82 FBgn0259211 1.2 FBgn0050365 1.03 FBgn0037923 0.45 FBgn0085391 1.24 FBgn0037536 -1.24 FBgn0032068 -0.71 FBgn0027505 0.23 FBgn0036534 -2.82 FBgn0032010 0.74 FBgn0002542 0.35 FBgn0030122 -0.83 FBgn0036541 0.8 FBgn0033952 -0.11 FBgn0026562 0.73 FBgn0017414 1.43 FBgn0250847 -1.48 FBgn0004242 -1.12 FBgn0036237 0.74 FBgn0020376 -1.08 FBgn0039229 2.28 FBgn0028734 0.69 FBgn0028920 -0.65 FBgn0085357 -0.54 FBgn0051694 0.66 FBgn0004567 0.88 FBgn0036705 -0.86 FBgn0036660 0.66 FBgn0250862 0.39 FBgn0038515 0.12 FBgn0046302 -0.59 FBgn0030947 -1.17 FBgn0039987 -0.53 FBgn0010222 -0.54 FBgn0082585 0.31 FBgn0040506 0.96 FBgn0035854 0.49 FBgn0000083 -0.99 FBgn0261477 -0.35 FBgn0085282 1.57 FBgn0010215 0.37 FBgn0037175 1.53 FBgn0016078 0.49 FBgn0035726 -1.02 FBgn0013972 -1.02 FBgn0031947 -1.29 FBgn0051115 -0.31 FBgn0035590 0.52 FBgn0030542 -0.87 FBgn0038579 0.38 FBgn0027086 0.76 FBgn0020391 0.24 FBgn0033133 0.83 FBgn0030973 -0.83 FBgn0085273 -0.63 FBgn0030161 0.54 FBgn0010053 -0.84 FBgn0037896 -0.82 FBgn0030776 -1.61 FBgn0028939 0.33 FBgn0052219 1.67 FBgn0032520 1.38 FBgn0039678 -1.1 FBgn0040918 1.68 FBgn0014028 1.42 FBgn0000257 -0.42 FBgn0010808 -1.62 FBgn0039784 -0.43 FBgn0030054 1.29 FBgn0051268 -0.67 FBgn0003187 0.32 FBgn0034399 0.99 FBgn0026375 1.14 FBgn0039511 -0.43 FBgn0038929 0.78 FBgn0031622 -1.11 FBgn0030505 -0.61 FBgn0035623 1.42 FBgn0035690 -1.31 FBgn0261856 -0.96 FBgn0034292 0.87 FBgn0036850 -0.45 FBgn0052354 -2.01 FBgn0032171 0.51 FBgn0036681 -0.74 FBgn0032242 0.53 FBgn0044823 0.82 FBgn0036423 0.6 FBgn0011227 -0.22 FBgn0040068 -1.23 FBgn0039798 0.5 FBgn0026592 0.77 FBgn0051715 -0.87 FBgn0039675 0.5 FBgn0033060 0.31 FBgn0014877 -1.12 FBgn0033210 -0.74 FBgn0035206 0.61 FBgn0034532 0.98 FBgn0037120 0.91 FBgn0033558 0.44 FBgn0041237 0.87 FBgn0039630 -0.87 FBgn0054041 0.54 FBgn0011293 -0.34 FBgn0003575 -1.3 FBgn0040034 0.63 FBgn0035007 1.02 FBgn0034687 -0.26 FBgn0038840 1.14 FBgn0034184 -0.18 FBgn0034541 1.07 FBgn0086450 0.46 FBgn0034564 1.78 FBgn0261244 -0.64 FBgn0041585 0.71 FBgn0036133 1.87 FBgn0031098 -0.36 FBgn0028690 -0.21 FBgn0085278 0.39 FBgn0001122 1.32 FBgn0028697 -2.73 FBgn0038396 0.15 FBgn0040551 0.59 FBgn0039726 0.62 FBgn0010173 -1 FBgn0032261 0.66 FBgn0034770 -0.95 FBgn0030425 -2.45 FBgn0026262 1.18 FBgn0039202 -0.77 FBgn0004889 -3.09 FBgn0027375 0.92 FBgn0031184 0.49 FBgn0050446 0.32 FBgn0052774 -2.44 FBgn0036300 0.7 FBgn0033279 -0.25 FBgn0032021 0.68 FBgn0023423 -2.18 FBgn0034742 -1 FBgn0051370 -0.89 FBgn0025117 -1.95 FBgn0033791 -1.26 FBgn0038313 -1.45 FBgn0261575 -0.8 FBgn0011283 -1.8 FBgn0085198 -0.3 FBgn0032374 -0.14 FBgn0039070 0.42 FBgn0031359 -0.62 FBgn0034456 0.55 FBgn0033999 -1.19 FBgn0033738 1.21 FBgn0034622 0.38 FBgn0028379 0.58 FBgn0031373 0.46 FBgn0038371 -0.13 FBgn0037602 0.12 FBgn0024836 0.08 FBgn0031591 -0.54 FBgn0028394 -0.6 FBgn0035697 0.74 FBgn0259179 -1.16 FBgn0033260 -2.1 FBgn0034535 1.53 FBgn0037548 -1.67 FBgn0085398 -1.39 FBgn0036345 -0.15 FBgn0039787 0.63 FBgn0036121 -0.17 FBgn0035935 1.26 FBgn0038739 0.24 FBgn0052813 0.15 FBgn0038532 -0.52 FBgn0035577 0.33 FBgn0041242 -0.69 FBgn0037485 0.54 FBgn0085333 0.72 FBgn0039736 0.24 FBgn0011823 0.61 FBgn0000152 -0.33 FBgn0261545 0.59 FBgn0029082 0.44 FBgn0030891 1.2 FBgn0029729 0.85 FBgn0000278 0.51 FBgn0031456 0.53 FBgn0039650 0.59 FBgn0031451 0.84 FBgn0051559 0.68 FBgn0016131 -2.36 FBgn0020556 0.76 FBgn0032639 -0.52 FBgn0035344 -0.08 FBgn0031887 -0.44 FBgn0051217 1.13 FBgn0037592 -0.67 FBgn0031428 0.4 FBgn0003380 0.78 FBgn0032202 -0.99 FBgn0030000 0.53 FBgn0013973 1.76 FBgn0031607 1.39 FBgn0040336 0.99 FBgn0036979 0.36 FBgn0003189 -0.73 FBgn0051522 0.43 FBgn0001311 0.62 FBgn0027564 -1.9 FBgn0039491 -0.72 FBgn0032921 -1.3 FBgn0005322 -0.86 FBgn0036029 0.46 FBgn0261402 1.15 FBgn0028955 0.31 FBgn0030827 0.48 FBgn0051787 -0.89 FBgn0034179 1.84 FBgn0029843 1.3 FBgn0038842 0.62 FBgn0040778 1.18 FBgn0037248 -1.04 FBgn0047199 -1.27 FBgn0015568 1.47 FBgn0019982 -0.51 FBgn0052021 0.8 FBgn0004366 0.36 FBgn0036931 -0.73 FBgn0023094 0.12 FBgn0051075 1.04 FBgn0033075 1.22 FBgn0001133 -0.48 FBgn0031219 -0.39 FBgn0085307 -0.44 FBgn0050056 -0.68 FBgn0037720 -1.65 FBgn0030052 1.31 FBgn0002641 -0.76 FBgn0050323 0.35 FBgn0034109 1.23 FBgn0039453 0.53 FBgn0030206 0.45 FBgn0036509 -1.14 FBgn0022981 1.74 FBgn0035187 0.68 FBgn0017557 1.1 FBgn0014851 1 FBgn0040343 1.07 FBgn0035170 -0.98 FBgn0030731 -0.68 FBgn0034104 -0.34 FBgn0011279 0.52 FBgn0035148 1.56 FBgn0002868 -0.58 FBgn0015585 1.37 FBgn0030691 -0.14 FBgn0032456 0.91 FBgn0033865 -1.23 FBgn0034671 -1.06 FBgn0027873 -0.45 FBgn0004425 1.19 FBgn0031443 0.53 FBgn0039537 0.75 FBgn0003430 0.58 FBgn0086443 -0.54 FBgn0040752 1.9 FBgn0069973 0.35 FBgn0003480 0.81 FBgn0034563 0.35 FBgn0000092 0.29 FBgn0042185 0.19 FBgn0030809 -2.37 FBgn0038767 -0.24 FBgn0058064 3.11 FBgn0034692 1.01 FBgn0000100 -3.91 FBgn0029874 0.5 FBgn0010409 -3.99 FBgn0261573 -2.19 FBgn0014127 -1.08 FBgn0038903 -0.94 FBgn0034951 -0.13 FBgn0036587 -0.96 FBgn0036091 -0.65 FBgn0002735 -0.32 FBgn0015577 1.32 FBgn0032511 -0.29 FBgn0001170 -0.6 FBgn0011225 1.37 FBgn0039396 1.5 FBgn0031620 -1.09 FBgn0039084 -2.29 FBgn0038426 -1.54 FBgn0035677 -1.4 FBgn0085436 -5.44 FBgn0035714 -0.97 FBgn0052576 -0.89 FBgn0030661 -0.73 FBgn0003515 0.93 FBgn0036728 1.1 FBgn0025454 -0.45 FBgn0034964 -0.64 FBgn0036624 -1.42 FBgn0034959 -0.9 FBgn0052569 -0.28 FBgn0035346 1.66 FBgn0039876 -4.29 FBgn0058198 0.11 FBgn0032401 1.75 FBgn0031101 -0.53 FBgn0261289 0.95 FBgn0035824 0.24 FBgn0027795 0.91 FBgn0025573 1.18 FBgn0033232 -0.02 FBgn0036044 1.16 FBgn0260657 -1.37 FBgn0031289 0.91 FBgn0035638 -3.34 FBgn0030420 -0.36 FBgn0053012 -1.09 FBgn0024245 1.53 FBgn0034416 -0.61 FBgn0010300 -1.99 FBgn0052192 1.35 FBgn0029748 1.33 FBgn0025549 -0.57 FBgn0034205 0.47 FBgn0032715 0.52 FBgn0029999 1.03 FBgn0039341 0.52 FBgn0036911 -0.22 FBgn0259713 0.55 FBgn0038953 1.03 FBgn0035397 -1.16 FBgn0000228 0.62 FBgn0034097 -1.33 FBgn0031877 0.61 FBgn0010575 2.27 FBgn0032668 0.29 FBgn0030311 0.82 FBgn0036329 -0.34 FBgn0020756 1.88 FBgn0039686 1.68 FBgn0011726 -0.5 FBgn0040038 1.14 FBgn0030961 -0.27 FBgn0038734 0.57 FBgn0033828 -0.57 FBgn0004842 -0.14 FBgn0034269 -0.61 FBgn0039966 1.1 FBgn0037347 -0.57 FBgn0036195 0.42 FBgn0032023 -0.6 FBgn0031327 -0.64 FBgn0004919 1.44 FBgn0044046 0.94 FBgn0053523 0.62 FBgn0038609 0.86 FBgn0015795 -1.29 FBgn0032211 0.61 FBgn0050420 1.02 FBgn0027574 -0.45 FBgn0051313 1.84 FBgn0038692 -0.33 FBgn0032075 -0.21 FBgn0051352 -0.83 FBgn0038191 0.59 FBgn0038466 -1.07 FBgn0036993 -0.48 FBgn0031766 0.88 FBgn0032388 1.61 FBgn0001281 0.54 FBgn0033571 0.23 FBgn0004910 0.72 FBgn0051219 -0.18 FBgn0033490 0.71 FBgn0034894 1.06 FBgn0052488 0.97 FBgn0050463 -1.58 FBgn0039806 -0.23 FBgn0035179 0.89 FBgn0038742 -0.36 FBgn0038535 -0.12 FBgn0034324 1.73 FBgn0040045 1.09 FBgn0015586 -1.28 FBgn0053469 0.95 FBgn0040352 0.42 FBgn0033690 0.88 FBgn0053100 1.54 FBgn0085384 1.75 FBgn0038111 -0.66 FBgn0036213 -3.34 FBgn0261385 0.33 FBgn0004107 -2.9 FBgn0036443 -1.99 FBgn0032881 -5 FBgn0031089 1.23 FBgn0085253 0.36 FBgn0030738 -0.2 FBgn0032234 -0.13 FBgn0036778 0.81 FBgn0051326 1.16 FBgn0035217 -0.93 FBgn0036516 0.58 FBgn0034023 0.98 FBgn0038262 0.9 FBgn0052707 -1.31 FBgn0038826 -0.38 FBgn0032810 0.53 FBgn0037680 0.88 FBgn0033450 1.22 FBgn0032259 -1.22 FBgn0031010 0.22 FBgn0033705 0.71 FBgn0039450 0.29 FBgn0038451 -0.44 FBgn0037224 1.25 FBgn0052405 -0.44 FBgn0033369 0.35 FBgn0040964 -0.42 FBgn0002872 0.44 FBgn0038345 0.71 FBgn0261451 0.8 FBgn0052087 1 FBgn0033607 0.93 FBgn0037584 0.6 FBgn0039294 1.3 FBgn0010294 0.93 FBgn0039135 1.01 FBgn0039581 1 FBgn0033597 0.48 FBgn0032817 1.87 FBgn0037282 1.97 FBgn0027495 -0.21 FBgn0261710 -2.08 FBgn0038809 1.42 FBgn0035312 0.55 FBgn0036039 0.46 FBgn0001208 -0.73 FBgn0030616 -3.28 FBgn0051342 -0.53 FBgn0022382 0.65 FBgn0035453 0.57 FBgn0004864 0.65 FBgn0039098 -1.67 FBgn0034700 1.81 FBgn0020765 0.77 FBgn0031264 -0.97 FBgn0032586 0.9 FBgn0052382 1.91 FBgn0030816 1.34 FBgn0038175 0.26 FBgn0032518 4.05 FBgn0261588 -0.4 FBgn0034656 -5.07 FBgn0053080 -1.19 FBgn0000447 -0.81 FBgn0037363 -0.99 FBgn0035877 -0.45 FBgn0034523 0.64 FBgn0033936 -0.14 FBgn0033740 0.64 FBgn0045483 -0.73 FBgn0033635 -0.38 FBgn0086758 2.33 FBgn0037130 0.59 FBgn0022710 -1.19 FBgn0004034 -0.13 FBgn0039711 0.31 FBgn0034009 1.09 FBgn0053177 0.96 FBgn0035282 -0.45 FBgn0032016 0.32 FBgn0039498 -0.38 FBgn0037727 0.54 FBgn0030348 -0.09 FBgn0024326 0.49 FBgn0003371 1.85 FBgn0022355 1.02 FBgn0035495 1.31 FBgn0040726 1.55 FBgn0039759 1.1 FBgn0052057 -0.57 FBgn0032157 -0.72 FBgn0028993 -0.77 FBgn0011670 -0.35 FBgn0050029 0.83 FBgn0004784 -0.29 FBgn0029820 -1.08 FBgn0013770 -1.59 FBgn0015400 -0.26 FBgn0035435 2.06 FBgn0025809 0.55 FBgn0030871 1.01 FBgn0014417 0.69 FBgn0035286 -0.36 FBgn0041092 -0.68 FBgn0029687 1.36 FBgn0034008 0.45 FBgn0036259 0.86 FBgn0020440 0.54 FBgn0032726 0.08 FBgn0003715 0.36 FBgn0033818 0.58 FBgn0037135 0.57 FBgn0001186 -0.35 FBgn0038057 -0.5 FBgn0030108 1.47 FBgn0030294 0.25 FBgn0030841 -0.66 FBgn0030063 0.76 FBgn0031929 0.51 FBgn0052440 0.76 FBgn0030975 0.41 FBgn0016047 -0.23 FBgn0023525 0.49 FBgn0016691 -1.75 FBgn0037294 0.78 FBgn0023081 0.37 FBgn0063495 0.44 FBgn0036448 -1.64 FBgn0261614 1.74 FBgn0039890 0.88 FBgn0053262 -1.31 FBgn0037525 -1.74 FBgn0038422 1.31 FBgn0037105 0.77 FBgn0050457 -0.79 FBgn0086783 -3.83 FBgn0025578 0.51 FBgn0037543 0.84 FBgn0037018 0.42 FBgn0001226 0.35 FBgn0051600 -0.96 FBgn0010329 -0.15 FBgn0028343 -2.67 FBgn0030142 0.29 FBgn0039329 1.93 FBgn0038564 0.31 FBgn0034002 1.29 FBgn0014076 -0.93 FBgn0031074 0.47 FBgn0020429 -1.09 FBgn0030009 0.29 FBgn0038751 1.64 FBgn0038680 -0.56 FBgn0027607 0.53 FBgn0039274 -1.55 FBgn0025388 0.28 FBgn0038803 1.13 FBgn0039126 -0.72 FBgn0015513 0.4 FBgn0050390 -1.5 FBgn0017590 -1.05 FBgn0027558 1.02 FBgn0004646 -0.51 FBgn0031907 0.89 FBgn0020445 -0.62 FBgn0033821 0.66 FBgn0037934 -1.18 FBgn0037129 0.76 FBgn0051704 -1.36 FBgn0025807 -0.54 FBgn0032779 0.21 FBgn0039566 1.48 FBgn0020257 1.21 FBgn0000039 1.29 FBgn0031831 -0.67 FBgn0034217 0.66 FBgn0010328 -0.36 FBgn0034439 -1.86 FBgn0000337 -1.14 FBgn0086710 -3.39 FBgn0040705 1.04 FBgn0037746 -1.58 FBgn0035109 0.58 FBgn0031979 1 FBgn0051677 -0.35 FBgn0034484 1 FBgn0023534 -0.76 FBgn0000179 0.62 FBgn0045474 -0.91 FBgn0261055 -2.14 FBgn0259225 -1.78 FBgn0030670 0.79 FBgn0050274 0.38 FBgn0033904 0.56 FBgn0036591 -0.62 FBgn0036987 0.79 FBgn0040230 0.56 FBgn0032685 -0.76 FBgn0037831 -1.39 FBgn0040104 0.58 FBgn0034759 -0.94 FBgn0038479 -0.92 FBgn0034436 0.96 FBgn0039941 -1.49 FBgn0004066 -0.98 FBgn0039111 -0.53 FBgn0042103 0.58 FBgn0033661 -0.72 FBgn0016754 -0.43 FBgn0011758 1.03 FBgn0034379 1.07 FBgn0013680 1.49 FBgn0024234 -0.86 FBgn0034975 -0.76 FBgn0030721 0.3 FBgn0031094 -0.93 FBgn0030462 -1.43 FBgn0005775 0.64 FBgn0046253 -1.63 FBgn0035265 0.71 FBgn0004607 0.49 FBgn0036218 1.11 FBgn0037758 -0.59 FBgn0037719 -0.99 FBgn0039521 1.34 FBgn0031854 0.18 FBgn0036666 -2 FBgn0038252 0.91 FBgn0030938 -1.06 FBgn0051755 1.3 FBgn0052271 0.62 FBgn0024288 -0.78 FBgn0001216 -2.18 FBgn0261436 -0.11 FBgn0053319 -0.38 FBgn0030864 -0.34 FBgn0032485 -0.7 FBgn0032612 0.48 FBgn0005683 1.5 FBgn0039568 0.71 FBgn0051812 -1.14 FBgn0033777 0.43 FBgn0038472 0.87 FBgn0034883 0.28 FBgn0032979 -2.31 FBgn0037675 -1.44 FBgn0032331 -0.92 FBgn0050284 -0.78 FBgn0029856 -3.02 FBgn0053310 0.47 FBgn0031598 1.1 FBgn0031296 -0.36 FBgn0043806 0.19 FBgn0010269 -1.98 FBgn0036980 1.47 FBgn0052053 0.91 FBgn0052198 0.8 FBgn0037057 -0.69 FBgn0031057 -1.39 FBgn0053653 -0.47 FBgn0053773 -0.69 FBgn0085464 -0.72 FBgn0032538 -1.5 FBgn0030082 -1.16 FBgn0039551 0.42 FBgn0039332 -1 FBgn0031673 0.77 FBgn0032820 1.64 FBgn0053926 -0.79 FBgn0250819 -1.26 FBgn0050429 0.49 FBgn0085401 1.27 FBgn0035945 0.82 FBgn0041225 0.38 FBgn0036796 -0.88 FBgn0032734 -0.26 FBgn0037383 1.53 FBgn0028946 0.81 FBgn0030486 0.52 FBgn0053107 1.79 FBgn0031250 -0.27 FBgn0032596 -4.12 FBgn0015541 0.76 FBgn0033117 -0.02 FBgn0004359 0.5 FBgn0038274 0.62 FBgn0031169 0.67 FBgn0040239 0.77 FBgn0028648 0.71 FBgn0039473 -0.39 FBgn0029878 0.48 FBgn0028426 -1.15 FBgn0028888 -0.89 FBgn0038240 1.07 FBgn0029552 0.8 FBgn0036158 0.43 FBgn0038149 0.57 FBgn0032156 -0.72 FBgn0261113 -0.38 FBgn0036974 -2.4 FBgn0037822 -0.62 FBgn0037999 1.52 FBgn0004852 -0.45 FBgn0030394 1.03 FBgn0013812 1.34 FBgn0035767 0.64 FBgn0030926 -0.71 FBgn0039872 0.87 FBgn0034089 -0.86 FBgn0034301 0.13 FBgn0030101 0.78 FBgn0045980 0.55 FBgn0015036 1.14 FBgn0033196 -2.8 FBgn0053193 0.97 FBgn0036273 0.44 FBgn0261648 1.22 FBgn0035232 -1.21 FBgn0032348 -0.56 FBgn0028708 0.41 FBgn0031550 -0.32 FBgn0030522 -0.44 FBgn0025815 -0.35 FBgn0038719 0.43 FBgn0035943 0.75 FBgn0086895 1.88 FBgn0036818 -1.59 FBgn0038373 -0.61 FBgn0033048 1.2 FBgn0003495 0.59 FBgn0035490 0.62 FBgn0259231 -0.69 FBgn0001942 -5.39 FBgn0033781 0.14 FBgn0259167 -0.49 FBgn0042207 0.41 FBgn0261882 1.38 FBgn0015295 -0.27 FBgn0034381 0.76 FBgn0023212 0.9 FBgn0031689 -1.51 FBgn0025830 -0.88 FBgn0022942 -1.56 FBgn0033421 -0.45 FBgn0035952 -2.31 FBgn0041710 -0.3 FBgn0038529 0.49 FBgn0035006 -0.83 FBgn0032847 1.2 FBgn0005198 1.07 FBgn0034578 -0.53 FBgn0025352 1.37 FBgn0035876 0.45 FBgn0013995 -1.48 FBgn0261020 0.52 FBgn0052365 0.97 FBgn0039818 1.01 FBgn0039704 0.71 FBgn0050418 0.92 FBgn0037554 0.42 FBgn0032381 0.58 FBgn0032763 1.52 FBgn0053159 -0.82 FBgn0053508 9.52252449247213e-03 FBgn0037025 -2.87 FBgn0026059 -1.01 FBgn0033751 1.53 FBgn0020407 -0.59 FBgn0020622 0.22 FBgn0261674 0.7 FBgn0045471 0.21 FBgn0031002 -0.42 FBgn0013300 1.38 FBgn0038679 1.36 FBgn0031629 1.12 FBgn0015374 0.42 FBgn0044050 0.61 FBgn0013763 -0.24 FBgn0035622 -0.75 FBgn0029629 -4.4 FBgn0035709 -1.26 FBgn0052447 -0.18 FBgn0028740 0.59 FBgn0053095 0.11 FBgn0037627 -1.02 FBgn0038082 1.88 FBgn0030278 -0.64 FBgn0036806 0.96 FBgn0031111 -0.73 FBgn0005390 0.37 FBgn0036342 -0.17 FBgn0005631 -0.97 FBgn0035110 0.29 FBgn0031406 0.4 FBgn0035385 0.79 FBgn0032827 0.78 FBgn0022800 1.03 FBgn0051091 0.99 FBgn0260482 0.57 FBgn0032289 0.81 FBgn0050178 0.99 FBgn0029946 0.93 FBgn0053126 0.65 FBgn0005624 0.81 FBgn0032188 0.37 FBgn0046873 1 FBgn0040588 -1.23 FBgn0004595 0.77 FBgn0034769 0.84 FBgn0031214 -1.19 FBgn0031826 -1.33 FBgn0038073 0.67 FBgn0010741 -0.51 FBgn0053062 -1.21 FBgn0038285 -0.31 FBgn0031815 -0.31 FBgn0002783 0.43 FBgn0034878 -4.12 FBgn0053230 0.61 FBgn0050197 -1.92 FBgn0033724 0.96 FBgn0032673 -1.21 FBgn0036648 -0.59 FBgn0053145 -0.2 FBgn0037411 -0.67 FBgn0051200 0.64 FBgn0033322 0.81 FBgn0033785 -1.09 FBgn0050099 0.42 FBgn0030591 0.99 FBgn0028866 1.64 FBgn0029094 -1.69 FBgn0037622 0.55 FBgn0037030 0.78 FBgn0030854 -0.79 FBgn0000504 0.38 FBgn0062517 0.89 FBgn0033257 0.46 FBgn0037007 0.73 FBgn0014865 0.89 FBgn0030951 -0.63 FBgn0045442 -0.48 FBgn0028871 -1.4 FBgn0039932 -1.04 FBgn0040228 1.12 FBgn0034785 -1.15 FBgn0027548 1.42 FBgn0039411 0.75 FBgn0002948 0.81 FBgn0023515 0.15 FBgn0039244 -1.09 FBgn0050047 0.56 FBgn0034362 0.88 FBgn0015561 0.7 FBgn0038590 0.71 FBgn0035703 0.5 FBgn0027521 -1.66 FBgn0033713 -0.66 FBgn0037730 0.43 FBgn0037116 0.79 FBgn0020235 -1.51 FBgn0034972 0.51 FBgn0035091 -0.37 FBgn0033413 0.27 FBgn0040843 0.41 FBgn0011705 0.52 FBgn0002526 0.73 FBgn0036282 -0.44 FBgn0035024 0.68 FBgn0037254 0.81 FBgn0015360 0.87 FBgn0036193 0.29 FBgn0030183 0.8 FBgn0064225 -4.16 FBgn0259834 1.91 FBgn0036671 0.73 FBgn0000273 -0.44 FBgn0036186 0.67 FBgn0051017 -0.96 FBgn0036801 0.62 FBgn0037637 0.22 FBgn0052459 0.75 FBgn0010391 -0.46 FBgn0054001 1.11 FBgn0011232 0.68 FBgn0035087 0.24 FBgn0013323 1.02 FBgn0060296 -1.2 FBgn0036020 1.32 FBgn0004047 -0.76 FBgn0036466 0.98 FBgn0035611 0.61 FBgn0052452 -0.92 FBgn0259680 -0.64 FBgn0039178 0.74 FBgn0035647 0.81 FBgn0031900 -0.23 FBgn0033592 0.36 FBgn0038007 1.24 FBgn0002607 5.6 FBgn0028899 1.1 FBgn0039730 0.66 FBgn0036920 -0.31 FBgn0014931 -1.07 FBgn0034707 1.53 FBgn0038666 0.52 FBgn0030296 0.82 FBgn0038958 0.84 FBgn0038942 -0.6 FBgn0003134 -0.62 FBgn0029964 1.04 FBgn0034827 0.32 FBgn0086266 0.53 FBgn0002937 0.32 FBgn0035249 -0.68 FBgn0259101 -0.74 FBgn0037229 0.45 FBgn0026179 1.27 FBgn0000119 0.38 FBgn0034071 -0.34 FBgn0036014 -0.37 FBgn0004838 -0.44 FBgn0000317 -0.13 FBgn0040733 1.01 FBgn0030797 0.84 FBgn0002622 -4.37 FBgn0031728 -1.04 FBgn0033317 1.31 FBgn0058006 -0.89 FBgn0037354 -0.43 FBgn0030089 -0.75 FBgn0001215 -2.12 FBgn0038643 0.17 FBgn0030247 0.79 FBgn0043825 0.84 FBgn0042137 0.49 FBgn0039209 0.93 FBgn0029955 0.81 FBgn0039130 -0.14 FBgn0003308 -0.63 FBgn0036254 0.35 FBgn0051044 0.66 FBgn0036621 1.55 FBgn0028583 -0.2 FBgn0032775 -0.37 FBgn0033806 0.35 FBgn0032160 1.01 FBgn0250910 -1.15 FBgn0042650 0.64 FBgn0036733 0.91 FBgn0030105 0.57 FBgn0036016 1.14 FBgn0036471 0.66 FBgn0032127 -1.32 FBgn0036703 -1.19 FBgn0001250 -0.94 FBgn0038887 -0.19 FBgn0030608 0.49 FBgn0032670 0.58 FBgn0261705 -1.05 FBgn0037553 -0.08 FBgn0030097 0.45 FBgn0034803 -0.87 FBgn0028836 1.33 FBgn0032646 -0.98 FBgn0033468 0.82 FBgn0024150 1.53 FBgn0032311 1.49 FBgn0031902 1.29 FBgn0011642 0.05 FBgn0051493 -0.92 FBgn0035704 -0.31 FBgn0051898 0.33 FBgn0031701 -0.89 FBgn0030317 -0.95 FBgn0036978 -0.89 FBgn0022986 -0.44 FBgn0026400 0.36 FBgn0038850 0.8 FBgn0260487 -0.99 FBgn0039733 1.22 FBgn0033787 0.67 FBgn0034989 0.21 FBgn0052351 0.47 FBgn0028833 -0.41 FBgn0085232 0.48 FBgn0259683 0.58 FBgn0260428 -0.36 FBgn0260444 1 FBgn0034488 0.72 FBgn0020399 -0.32 FBgn0039816 -0.95 FBgn0030249 -3.04 FBgn0039611 -0.29 FBgn0023175 -1.59 FBgn0052079 0.81 FBgn0015929 -0.01 FBgn0033714 -0.8 FBgn0034627 -0.23 FBgn0011281 0.57 FBgn0010039 0.56 FBgn0000351 -0.39 FBgn0037980 -0.64 FBgn0005779 -0.32 FBgn0026324 0.45 FBgn0004404 -3.08 FBgn0030898 0.93 FBgn0031545 -0.96 FBgn0087012 -1.17 FBgn0031968 0.59 FBgn0260012 0.68 FBgn0035909 -0.92 FBgn0261016 1.07 FBgn0033793 -1.21 FBgn0003507 -0.25 FBgn0037537 -0.25 FBgn0051014 0.79 FBgn0015602 -1.04 FBgn0029718 -1.02 FBgn0045469 1.08 FBgn0003249 0.37 FBgn0047092 -1.56 FBgn0039413 0.56 FBgn0040575 0.57 FBgn0020270 1.01 FBgn0042094 0.66 FBgn0003062 -1.72 FBgn0032818 -0.71 FBgn0032135 0.26 FBgn0085315 1 FBgn0259244 2.38 FBgn0038080 -0.59 FBgn0010612 -2.02 FBgn0053339 1.38 FBgn0085257 -0.27 FBgn0038891 0.51 FBgn0032689 0.98 FBgn0029839 -0.87 FBgn0034841 0.27 FBgn0025837 0.59 FBgn0051120 -0.75 FBgn0038005 1.14 FBgn0033391 0.51 FBgn0050069 1.37 FBgn0035313 -0.44 FBgn0035299 -0.5 FBgn0030167 0.1 FBgn0051013 0.5 FBgn0052412 0.46 FBgn0040353 0.45 FBgn0035107 -1.01 FBgn0036317 -0.78 FBgn0003714 -0.2 FBgn0037228 0.62 FBgn0261341 0.57 FBgn0029506 0.23 FBgn0033315 -0.67 FBgn0011706 -2.54 FBgn0051363 0.95 FBgn0042213 0.15 FBgn0032863 -1.17 FBgn0030482 -0.42 FBgn0029950 0.2 FBgn0050075 0.51 FBgn0050090 1.64 FBgn0003138 -1.99 FBgn0034493 0.64 FBgn0003961 0.92 FBgn0035207 0.39 FBgn0045073 0.95 FBgn0033753 0.43 FBgn0050034 0.3 FBgn0051406 1.15 FBgn0035111 -0.27 FBgn0034321 0.19 FBgn0031721 0.63 FBgn0031395 -0.22 FBgn0051536 1.47 FBgn0011239 -1.62 FBgn0260436 0.64 FBgn0010265 -4.77 FBgn0038110 2.51 FBgn0029810 -1.33 FBgn0013811 0.33 FBgn0037368 0.78 FBgn0039466 -3.58 FBgn0036948 0.44 FBgn0023514 0.71 FBgn0031737 0.16 FBgn0261606 -4.66 FBgn0035097 -0.89 FBgn0027084 1.07 FBgn0085405 1.04 FBgn0035868 0.54 FBgn0052404 -0.98 FBgn0031213 1.15 FBgn0025808 0.49 FBgn0046113 0.77 FBgn0027660 -1.44 FBgn0031501 -0.33 FBgn0035036 0.52 FBgn0035140 -0.52 FBgn0030952 0.6 FBgn0036805 -0.41 FBgn0041630 0.56 FBgn0033491 -0.35 FBgn0037446 -1.86 FBgn0011747 -0.65 FBgn0030268 -0.11 FBgn0034481 1.21 FBgn0054029 -0.71 FBgn0032551 1.37 FBgn0032022 -0.83 FBgn0035481 -0.26 FBgn0259821 0.38 FBgn0030711 -0.7 FBgn0034198 -0.22 FBgn0037028 0.85 FBgn0031611 -0.17 FBgn0026061 0.22 FBgn0028857 0.63 FBgn0024897 -0.9 FBgn0032723 0.86 FBgn0032143 1.16 FBgn0038144 -0.22 FBgn0052036 -0.39 FBgn0035154 1.51 FBgn0003886 -2.81 FBgn0053303 -0.78 FBgn0040928 0.89 FBgn0033354 0.38 FBgn0046763 -2.61 FBgn0039965 1.31 FBgn0067779 1.27 FBgn0039478 0.22 FBgn0051438 1.42 FBgn0003378 0.41 FBgn0001965 -4.07 FBgn0053109 0.47 FBgn0010403 1.03 FBgn0021873 1.26 FBgn0038798 0.2 FBgn0000280 -1.47 FBgn0000318 0.8 FBgn0040684 -1.04 FBgn0027599 1.49 FBgn0032663 -0.3 FBgn0033589 -1.77 FBgn0044011 0.81 FBgn0039728 0.47 FBgn0052074 -1.63 FBgn0033422 0.16 FBgn0011802 0.48 FBgn0051821 -0.44 FBgn0259227 -2.11 FBgn0034566 -1.48 FBgn0027490 -0.57 FBgn0038697 1.02 FBgn0261119 1.32 FBgn0032741 0.17 FBgn0260941 0.21 FBgn0033874 -0.08 FBgn0031961 0.92 FBgn0031708 -0.38 FBgn0029915 0.33 FBgn0027590 -0.6 FBgn0260407 -1.26 FBgn0032252 0.65 FBgn0015546 -0.59 FBgn0033890 0.63 FBgn0030300 -0.27 FBgn0024320 0.91 FBgn0038651 0.77 FBgn0027496 0.4 FBgn0010607 0.93 FBgn0001091 -1.18 FBgn0021742 -0.54 FBgn0260859 0.36 FBgn0022936 -0.75 FBgn0003124 -2.06 FBgn0033149 0.62 FBgn0002921 -0.76 FBgn0030090 0.34 FBgn0037937 0.6 FBgn0003499 0.33 FBgn0037296 1.31 FBgn0052111 -0.38 FBgn0011274 -1 FBgn0036499 -0.78 FBgn0038311 0.28 FBgn0037623 0.65 FBgn0053531 1.72 FBgn0000064 -2.35 FBgn0038431 1.13 FBgn0083960 0.92 FBgn0033112 -0.54 FBgn0030931 0.44 FBgn0052511 2.04 FBgn0038772 1.51 FBgn0034755 0.23 FBgn0028662 -0.87 FBgn0027088 -0.27 FBgn0032693 0.86 FBgn0041241 0.39 FBgn0052732 1.35 FBgn0045063 0.68 FBgn0050044 0.39 FBgn0025820 0.23 FBgn0036921 0.57 FBgn0031000 0.66 FBgn0037713 0.86 FBgn0029830 0.56 FBgn0052847 0.59 FBgn0038365 0.54 FBgn0030467 1.89 FBgn0053468 0.67 FBgn0038087 0.92 FBgn0032793 -0.68 FBgn0037836 0.26 FBgn0034438 1.38 FBgn0038129 0.83 FBgn0032519 0.58 FBgn0033302 -0.38 FBgn0083919 0.07 FBgn0031835 -1.52 FBgn0035040 0.9 FBgn0034322 0.89 FBgn0000326 -0.39 FBgn0085229 1.88 FBgn0031190 -1.58 FBgn0000038 0.86 FBgn0039085 -0.73 FBgn0050381 0.92 FBgn0052282 -0.7 FBgn0034433 0.59 FBgn0033529 0.69 FBgn0052199 -0.87 FBgn0029887 -0.77 FBgn0051560 0.65 FBgn0038478 0.36 FBgn0014869 -0.31 FBgn0038279 0.81 FBgn0035047 -0.45 FBgn0002564 0.64 FBgn0050263 -1.39 FBgn0030309 -1.22 FBgn0036897 -0.95 FBgn0039930 -0.3 FBgn0035479 1.45 FBgn0052190 -0.71 FBgn0004603 -6.03 FBgn0003890 -1.3 FBgn0039562 -0.99 FBgn0051958 1.13 FBgn0028947 -0.84 FBgn0085457 0.21 FBgn0026170 -1.51 FBgn0042105 1.2 FBgn0030202 -0.29 FBgn0024179 0.32 FBgn0027872 -0.09 FBgn0020251 -0.82 FBgn0053156 1.14 FBgn0054057 0.49 FBgn0031314 -0.24 FBgn0050338 -0.46 FBgn0038209 0.71 FBgn0032169 1.31 FBgn0000636 1.02 FBgn0015298 0.4 FBgn0035643 2.19 FBgn0030364 -0.61 FBgn0037810 -0.69 FBgn0004429 0.91 FBgn0051146 1.21 FBgn0002878 -0.42 FBgn0034998 0.63 FBgn0030291 0.23 FBgn0053218 -0.74 FBgn0034722 0.04 FBgn0003328 1.52 FBgn0032495 0.8 FBgn0001147 0.98 FBgn0002673 0.92 FBgn0030449 -0.09 FBgn0031597 0.33 FBgn0032886 -0.8 FBgn0261089 -0.49 FBgn0036659 0.75 FBgn0051870 -1.16 FBgn0051961 -0.7 FBgn0036106 0.96 FBgn0031188 0.25 FBgn0037526 -0.95 FBgn0043470 0.2 FBgn0034650 0.08 FBgn0039870 0.27 FBgn0034187 1.51 FBgn0085239 0.64 FBgn0030638 -0.95 FBgn0051321 0.57 FBgn0034419 -1.39 FBgn0037321 0.53 FBgn0038236 0.34 FBgn0032299 0.63 FBgn0050419 1.56 FBgn0038074 0.98 FBgn0035592 -0.11 FBgn0031759 0.83 FBgn0036714 0.67 FBgn0050015 1.3 FBgn0053096 -1.38 FBgn0053087 0.6 FBgn0259794 -1.08 FBgn0042712 1.25 FBgn0016698 1.07 FBgn0260659 -0.91 FBgn0030617 0.44 FBgn0033481 0.38 FBgn0002932 -0.5 FBgn0026085 -0.43 FBgn0037788 -0.17 FBgn0034352 0.37 FBgn0085556 1.28 FBgn0030386 0.74 FBgn0029726 -1.37 FBgn0261611 0.58 FBgn0035293 -0.4 FBgn0052246 -0.42 FBgn0037857 1.43 FBgn0063497 -0.84 FBgn0030800 -0.36 FBgn0035439 0.72 FBgn0030283 -0.37 FBgn0031850 -1.09 FBgn0037304 -0.14 FBgn0052755 0.76 FBgn0001139 -0.48 FBgn0034010 -1.51 FBgn0040271 -0.26 FBgn0052544 -0.7 FBgn0034602 0.4 FBgn0261555 -0.78 FBgn0035328 0.54 FBgn0043783 1.45 FBgn0023496 0.6 FBgn0017551 -2.6 FBgn0015300 0.42 FBgn0044809 1.37 FBgn0013673 0.85 FBgn0030164 -0.73 FBgn0036598 0.73 FBgn0030605 -0.51 FBgn0000618 0.57 FBgn0004387 -2.68 FBgn0038016 -4.51 FBgn0036433 1.03 FBgn0052554 0.78 FBgn0051164 -0.42 FBgn0030647 -0.21 FBgn0030331 -0.29 FBgn0042102 -0.56 FBgn0000146 0.65 FBgn0040729 0.83 FBgn0054024 -0.55 FBgn0033842 0.94 FBgn0000414 -1.29 FBgn0038745 -1.09 FBgn0041231 1.24 FBgn0045486 1.99 FBgn0033039 1.26 FBgn0086408 -0.43 FBgn0031636 -0.94 FBgn0032955 0.92 FBgn0020258 -1.82 FBgn0036440 -1.21 FBgn0023001 0.39 FBgn0038980 1.33 FBgn0033364 -1.4 FBgn0035416 1.23 FBgn0086686 -0.92 FBgn0031981 -0.19 FBgn0041711 -0.45 FBgn0035281 -0.22 FBgn0261261 0.73 FBgn0044810 0.54 FBgn0030929 -0.33 FBgn0063667 -1.45 FBgn0052533 -0.98 FBgn0259961 0.86 FBgn0030645 -0.88 FBgn0039315 0.62 FBgn0035088 1.31 FBgn0036916 -2.36 FBgn0011206 0.67 FBgn0033708 -0.57 FBgn0039306 0.58 FBgn0039298 5.38 FBgn0011661 0.73 FBgn0032602 1.07 FBgn0030663 -1.29 FBgn0020912 0.75 FBgn0042092 0.31 FBgn0015926 -0.76 FBgn0039291 0.39 FBgn0036544 -0.65 FBgn0032225 1.29 FBgn0000276 0.6 FBgn0034513 0.59 FBgn0031403 0.85 FBgn0030272 -0.33 FBgn0025390 1.04 FBgn0028336 1.8 FBgn0038530 -0.18 FBgn0034135 0.55 FBgn0003204 -1.43 FBgn0032192 0.56 FBgn0053471 -0.81 FBgn0053679 0.59 FBgn0013762 1.49 FBgn0032484 -0.1 FBgn0030716 0.14 FBgn0030178 0.42 FBgn0086367 0.88 FBgn0027836 0.61 FBgn0259194 -0.86 FBgn0038702 0.27 FBgn0034938 0.84 FBgn0038519 0.65 FBgn0085298 -0.68 FBgn0001137 1.15 FBgn0033749 1.76 FBgn0003209 -4.42 FBgn0024728 0.8 FBgn0035380 0.26 FBgn0027549 -1.01 FBgn0039738 -0.29 FBgn0053302 -0.63 FBgn0026058 -0.52 FBgn0034243 -0.72 FBgn0036511 0.81 FBgn0030811 -0.88 FBgn0029827 0.59 FBgn0003450 -1.21 FBgn0032719 0.63 FBgn0033443 0.22 FBgn0004106 -2.36 FBgn0039527 0.29 FBgn0037973 0.88 FBgn0032973 0.15 FBgn0026397 1.43 FBgn0030826 -0.49 FBgn0027619 -0.37 FBgn0030344 1 FBgn0040989 0.69 FBgn0040796 -1.1 FBgn0035078 -0.85 FBgn0035805 1.09 FBgn0010438 -0.13 FBgn0086909 1.35 FBgn0036964 0.8 FBgn0051524 -1.89 FBgn0013773 -0.96 FBgn0261556 0.81 FBgn0051357 -0.57 FBgn0039771 -0.24 FBgn0013308 0.77 FBgn0005660 1.03 FBgn0037468 1 FBgn0085433 2.48 FBgn0032209 0.92 FBgn0035455 0.59 FBgn0038296 0.15 FBgn0026570 0.46 FBgn0052669 0.91 FBgn0031216 0.88 FBgn0001269 -0.98 FBgn0036670 0.44 FBgn0053192 1.08 FBgn0015772 -0.78 FBgn0027868 -0.92 FBgn0039639 1.19 FBgn0011277 0.51 FBgn0035670 0.22 FBgn0039886 0.45 FBgn0036031 0.86 FBgn0037250 0.89 FBgn0033183 1.09 FBgn0029067 -0.49 FBgn0031333 -0.99 FBgn0030352 0.6 FBgn0034558 0.94 FBgn0000709 -0.71 FBgn0045761 2.13 FBgn0261570 0.96 FBgn0050488 -1.19 FBgn0033570 -0.97 FBgn0031283 0.35 FBgn0015024 1.45 FBgn0038993 -0.76 FBgn0038161 1.01 FBgn0037581 0.12 FBgn0034277 -0.77 FBgn0038494 0.9 FBgn0010747 0.27 FBgn0035090 -1.74 FBgn0039655 -0.47 FBgn0050410 1.2 FBgn0014396 -0.79 FBgn0000556 -3.57 FBgn0005616 0.85 FBgn0035568 0.72 FBgn0259185 1.51 FBgn0031134 -0.78 FBgn0003009 1.07 FBgn0083990 -0.71 FBgn0036505 0.73 FBgn0063649 1.47 FBgn0001230 0.59 FBgn0032811 0.18 FBgn0028687 -1.92 FBgn0038924 1.18 FBgn0019830 -0.54 FBgn0031876 -0.52 FBgn0003423 0.35 FBgn0023519 1.09 FBgn0053512 1.18 FBgn0037345 -0.07 FBgn0034744 -0.64 FBgn0033591 0.14 FBgn0050411 -0.4 FBgn0051266 -0.74 FBgn0015282 -4.51 FBgn0034061 1.03 FBgn0086904 -1.21 FBgn0032213 -0.75 FBgn0052475 1.05 FBgn0039007 -0.16 FBgn0026415 -0.68 FBgn0028900 -1.14 FBgn0039376 -0.2 FBgn0033087 -0.87 FBgn0037430 0.53 FBgn0027585 0.73 FBgn0035621 0.6 FBgn0041623 -1.16 FBgn0036990 0.31 FBgn0053493 0.91 FBgn0053170 0.91 FBgn0027565 0.96 FBgn0038213 -0.57 FBgn0051223 -0.55 FBgn0040341 -0.67 FBgn0030015 0.66 FBgn0035213 -0.8 FBgn0051644 -1.88 FBgn0034576 0.76 FBgn0036145 0.42 FBgn0035434 -0.8 FBgn0038469 -0.02 FBgn0035916 -0.8 FBgn0015035 -0.33 FBgn0035543 0.86 FBgn0032424 1.44 FBgn0052484 1.19 FBgn0046247 2.51 FBgn0030963 0.89 FBgn0052792 -0.91 FBgn0033737 0.96 FBgn0036118 -0.17 FBgn0028954 0.32 FBgn0086347 0.69 FBgn0033062 -1.03 FBgn0040828 0.75 FBgn0086911 1.73 FBgn0044049 0.5 FBgn0031114 1.22 FBgn0035532 1.49 FBgn0250746 -2.52 FBgn0039348 0.8 FBgn0086445 0.6 FBgn0052024 0.15 FBgn0032582 0.18 FBgn0051777 -1.19 FBgn0031871 0.08 FBgn0036328 1.22 FBgn0029535 -0.27 FBgn0046887 0.71 FBgn0037288 -0.45 FBgn0053233 0.72 FBgn0038122 -0.22 FBgn0031732 -1.36 FBgn0010051 -1.04 FBgn0024993 -0.89 FBgn0039553 0.76 FBgn0031764 0.69 FBgn0036299 1.16 FBgn0034054 0.98 FBgn0051076 -0.25 FBgn0030734 0.99 FBgn0030431 1.47 FBgn0031036 0.16 FBgn0085331 -1.1 FBgn0052698 -1.63 FBgn0031434 -0.75 FBgn0036180 -1.07 FBgn0033798 -0.22 FBgn0036603 0.46 FBgn0051549 0.57 FBgn0001259 -0.62 FBgn0028699 1.08 FBgn0250754 0.48 FBgn0051459 1.79 FBgn0029783 0.43 FBgn0085431 0.65 FBgn0033701 0.17 FBgn0039494 0.24 FBgn0028669 -0.26 FBgn0031808 0.42 FBgn0053056 -1.44 FBgn0031608 -0.38 FBgn0029817 0.3 FBgn0030630 -0.68 FBgn0026380 -2.28 FBgn0027287 -0.91 FBgn0029754 0.95 FBgn0042696 -0.37 FBgn0037939 0.66 FBgn0037402 -1.17 FBgn0032588 -0.76 FBgn0039829 -0.84 FBgn0031992 -0.86 FBgn0034126 0.33 FBgn0031803 1.76 FBgn0031777 0.65 FBgn0052302 0.37 FBgn0035603 -0.13 FBgn0037783 -1.74 FBgn0020767 0.6 FBgn0022246 0.58 FBgn0259918 -0.24 FBgn0030478 1.51 FBgn0031441 1.25 FBgn0000591 0.55 FBgn0037684 -3.07 FBgn0259112 0.67 FBgn0030554 0.72 FBgn0085309 -1.78 FBgn0083959 -1.6 FBgn0052250 -1.79 FBgn0050371 -1.25 FBgn0052445 -1.41 FBgn0030005 1.17 FBgn0039139 0.47 FBgn0038869 2.31 FBgn0025806 -0.53 FBgn0037405 -1.49 FBgn0004598 0.4 FBgn0032525 -1.63 FBgn0036323 0.37 FBgn0083986 1.1 FBgn0039180 0.63 FBgn0030777 -0.42 FBgn0250835 0.63 FBgn0039799 0.5 FBgn0032376 0.75 FBgn0030945 -1.47 FBgn0034540 2.28 FBgn0036857 -0.76 FBgn0260987 -0.49 FBgn0035791 -1 FBgn0034595 -0.26 FBgn0050181 -0.81 FBgn0052588 1.71 FBgn0035782 0.21 FBgn0023129 1.51 FBgn0039621 -1.16 FBgn0037633 0.33 FBgn0031821 1.16 FBgn0052750 0.55 FBgn0041581 -0.42 FBgn0034457 1.21 FBgn0031266 -3.78 FBgn0030991 -0.52 FBgn0033185 -0.45 FBgn0014092 0.41 FBgn0010516 -0.57 FBgn0058178 1.22 FBgn0033879 -0.72 FBgn0037647 -0.21 FBgn0032503 -0.87 FBgn0031895 0.23 FBgn0010314 0.74 FBgn0036765 0.79 FBgn0051148 -0.28 FBgn0013987 0.17 FBgn0053631 0.86 FBgn0020305 0.94 FBgn0033130 0.43 FBgn0050447 -0.5 FBgn0028685 -2.29 FBgn0028490 -3.45 FBgn0004087 0.25 FBgn0259174 0.58 FBgn0259238 -1.39 FBgn0034768 -0.88 FBgn0000629 -0.51 FBgn0260768 -0.78 FBgn0030794 0.85 FBgn0051204 0.16 FBgn0036005 1.11 FBgn0029507 0.97 FBgn0085326 -0.3 FBgn0011817 -1.32 FBgn0085288 0.37 FBgn0086134 -3.14 FBgn0083938 -0.33 FBgn0036732 -0.53 FBgn0030540 -1.35 FBgn0031142 -0.38 FBgn0261259 1.18 FBgn0030671 -0.96 FBgn0032446 -0.96 FBgn0033273 -0.22 FBgn0002528 0.76 FBgn0036617 -0.42 FBgn0029590 1.56 FBgn0040376 -0.12 FBgn0033015 -1.86 FBgn0033241 0.33 FBgn0020620 -1.35 FBgn0035692 0.66 FBgn0034956 1.22 FBgn0030587 -0.1 FBgn0261284 1.39 FBgn0053172 0.7 FBgn0034534 0.6 FBgn0004876 -0.97 FBgn0033115 -0.2 FBgn0035772 0.82 FBgn0035858 0.66 FBgn0031531 -0.2 FBgn0038512 0.89 FBgn0027605 -5.28 FBgn0036246 0.55 FBgn0030318 -0.55 FBgn0036179 -1.87 FBgn0031322 0.62 FBgn0036547 -0.43 FBgn0039075 -1.26 FBgn0031752 0.9 FBgn0034646 -5.06 FBgn0002733 0.23 FBgn0002577 -0.94 FBgn0034876 -1.04 FBgn0050349 -0.62 FBgn0051157 -1.07 FBgn0030993 -1.12 FBgn0058042 -0.14 FBgn0038436 0.5 FBgn0039664 -1.25 FBgn0027529 0.54 FBgn0014849 0.89 FBgn0038631 0.28 FBgn0030770 0.4 FBgn0034761 -0.56 FBgn0038388 1 FBgn0027535 0.91 FBgn0029882 -0.54 FBgn0052695 0.56 FBgn0034221 -0.08 FBgn0029728 -0.47 FBgn0035139 0.63 FBgn0000054 2.15 FBgn0041186 0.61 FBgn0067311 0.58 FBgn0039208 -0.69 FBgn0028526 -0.97 FBgn0051244 -1.15 FBgn0036702 -1.17 FBgn0032751 1.5 FBgn0029685 0.83 FBgn0050384 -0.66 FBgn0035358 0.21 FBgn0039671 0.25 FBgn0037144 1.26 FBgn0029523 0.77 FBgn0053454 1.65 FBgn0261046 1.02 FBgn0026239 -1.17 FBgn0051697 -1.64 FBgn0027091 -0.28 FBgn0033998 1.37 FBgn0031070 0.1 FBgn0034476 -1.38 FBgn0029769 -0.54 FBgn0005677 0.66 FBgn0001321 0.84 FBgn0035429 -1.17 FBgn0036654 0.72 FBgn0036610 -0.4 FBgn0024958 0.87 FBgn0011584 0.87 FBgn0038221 -0.67 FBgn0037589 0.17 FBgn0032358 -0.24 FBgn0010803 -1.31 FBgn0039217 -0.5 FBgn0035364 0.39 FBgn0040297 -0.84 FBgn0031986 -0.52 FBgn0039237 -0.36 FBgn0031893 -0.93 FBgn0038183 -0.97 FBgn0040290 -0.47 FBgn0038018 -0.86 FBgn0033827 -1.25 FBgn0039676 0.17 FBgn0020389 0.69 FBgn0259147 0.86 FBgn0036428 -0.39 FBgn0053481 -1.59 FBgn0036141 1.01 FBgn0085374 0.45 FBgn0032247 -0.24 FBgn0036824 0.79 FBgn0037501 0.3 FBgn0037108 0.59 FBgn0036490 0.3 FBgn0020618 -0.6 FBgn0041105 1.1 FBgn0040252 0.82 FBgn0037011 0.46 FBgn0034903 1.07 FBgn0032124 0.36 FBgn0031824 0.43 FBgn0035539 1.13 FBgn0005533 -2.95 FBgn0037003 0.97 FBgn0032040 1.3 FBgn0036410 -0.81 FBgn0038708 -1.61 FBgn0031128 0.62 FBgn0053116 -1.25 FBgn0011559 -0.22 FBgn0052463 -1.05 FBgn0033906 0.31 FBgn0037678 -0.93 FBgn0038424 -1.13 FBgn0034665 0.64 FBgn0039282 0.45 FBgn0052762 0.8 FBgn0024352 0.28 FBgn0050495 0.57 FBgn0037993 0.46 FBgn0004110 -0.47 FBgn0024293 -0.17 FBgn0039722 -0.26 FBgn0015040 0.76 FBgn0040628 0.8 FBgn0023479 -1.31 FBgn0051388 0.86 FBgn0031186 1.45 FBgn0000043 -1.62 FBgn0031940 1.21 FBgn0037422 1.36 FBgn0050364 0.47 FBgn0037539 -1.26 FBgn0032981 0.72 FBgn0038539 -0.94 FBgn0051636 -0.97 FBgn0027348 -3.32 FBgn0051184 1.18 FBgn0030121 -0.91 FBgn0029924 -1.09 FBgn0024943 -1.28 FBgn0004394 1.28 FBgn0032625 1.14 FBgn0051659 1.01 FBgn0039507 0.73 FBgn0035610 -0.97 FBgn0036094 -0.39 FBgn0027515 -2.55 FBgn0030459 1.16 FBgn0053640 0.29 FBgn0038947 0.19 FBgn0011554 -0.27 FBgn0261813 -1.07 FBgn0035617 1.57 FBgn0034294 -1.06 FBgn0031469 -1.76 FBgn0085302 -0.47 FBgn0037128 0.99 FBgn0028926 -1.42 FBgn0028424 -0.59 FBgn0024330 1.04 FBgn0016053 0.85 FBgn0033856 0.46 FBgn0026371 -0.42 FBgn0000477 0.47 FBgn0032276 1.27 FBgn0035852 0.32 FBgn0062978 -1.77 FBgn0039849 -2.16 FBgn0032804 0.36 FBgn0036995 -1.01 FBgn0038464 -1.19 FBgn0036794 1.29 FBgn0051832 2.05 FBgn0259168 1.35 FBgn0015553 1.2 FBgn0041195 -1.69 FBgn0051647 0.35 FBgn0053124 0.7 FBgn0038901 0.58 FBgn0037449 -0.55 FBgn0034824 -0.83 FBgn0261065 -1.21 FBgn0039069 -0.32 FBgn0036935 -0.8 FBgn0036125 0.16 FBgn0050355 -0.51 FBgn0030834 0.38 FBgn0021847 0.24 FBgn0032006 3.45 FBgn0033268 0.36 FBgn0014464 0.88 FBgn0034105 -0.63 FBgn0038105 1.54 FBgn0035933 0.9 FBgn0035711 -0.38 FBgn0036580 2.73 FBgn0039190 -0.77 FBgn0033271 -0.62 FBgn0036771 0.6 FBgn0033955 0.23 FBgn0039000 -0.57 FBgn0004587 0.95 FBgn0261930 0.55 FBgn0250874 -0.56 FBgn0043535 -1.46 FBgn0030039 -1.63 FBgn0004636 -1.12 FBgn0034144 -0.86 FBgn0051176 1.04 FBgn0064237 0.33 FBgn0250824 0.96 FBgn0086697 -2 FBgn0034392 -0.1 FBgn0032740 -1.05 FBgn0051664 1.26 FBgn0037707 1.56 FBgn0260635 1.89 FBgn0039026 3.34 FBgn0032783 -0.54 FBgn0029589 1.06 FBgn0261797 1.16 FBgn0033137 -1.21 FBgn0036263 -0.39 FBgn0260396 0.32 FBgn0038346 0.35 FBgn0032851 -0.17 FBgn0033515 -1.59 FBgn0033954 0.77 FBgn0003747 -0.3 FBgn0085192 -1.69 FBgn0035707 0.61 FBgn0261803 0.85 FBgn0039669 -0.51 FBgn0032530 -0.14 FBgn0035907 0.63 FBgn0029157 0.21 FBgn0032264 -0.86 FBgn0015663 -0.39 FBgn0034318 0.68 FBgn0016070 -0.37 FBgn0259711 -0.36 FBgn0029935 -0.68 FBgn0035844 0.85 FBgn0260779 1.77 FBgn0051826 0.87 FBgn0003655 1.02 FBgn0029596 1.39 FBgn0050395 0.44 FBgn0004554 0.81 FBgn0032632 -1.29 FBgn0005561 0.26 FBgn0031566 0.64 FBgn0030452 0.75 FBgn0039197 0.31 FBgn0033248 -0.58 FBgn0050468 -1.5 FBgn0036349 0.96 FBgn0002521 0.6 FBgn0000281 -0.02 FBgn0035399 0.46 FBgn0038858 1.32 FBgn0261239 -1.43 FBgn0024973 0.82 FBgn0052594 0.86 FBgn0027378 -1.38 FBgn0016641 -0.88 FBgn0259213 1.4 FBgn0041234 -1.06 FBgn0031849 1.23 FBgn0261270 -0.71 FBgn0031081 0.5 FBgn0037418 1.46 FBgn0036462 0.93 FBgn0031519 0.73 FBgn0003313 1.56 FBgn0032883 -1.75 FBgn0037202 0.65 FBgn0026428 0.22 FBgn0039854 0.37 FBgn0028515 0.42 FBgn0034500 1.36 FBgn0005658 0.78 FBgn0036628 0.99 FBgn0035169 0.48 FBgn0051674 -0.48 FBgn0039743 0.94 FBgn0031785 -1.33 FBgn0015269 -0.66 FBgn0031118 -1.87 FBgn0024189 1.08 FBgn0038037 1.25 FBgn0032054 0.12 FBgn0038363 -0.45 FBgn0037660 0.52 FBgn0039435 -0.3 FBgn0032228 0.8 FBgn0004885 0.53 FBgn0042132 -1.17 FBgn0052425 0.68 FBgn0035545 0.65 FBgn0053337 0.46 FBgn0259748 0.35 FBgn0037570 0.71 FBgn0034794 -1.93 FBgn0027280 -0.83 FBgn0035833 0.99 FBgn0037279 1.28 FBgn0002787 -2.66 FBgn0038878 0.73 FBgn0025629 1.16 FBgn0031651 0.49 FBgn0034383 -0.84 FBgn0035160 -0.26 FBgn0014011 -0.77 FBgn0031351 1.28 FBgn0052182 0.15 FBgn0024754 0.44 FBgn0029663 -0.56 FBgn0029703 0.5 FBgn0032181 -0.09 FBgn0032717 -0.5 FBgn0025638 -3.56 FBgn0038056 -0.24 FBgn0028664 1.38 FBgn0050409 0.07 FBgn0037772 0.97 FBgn0038966 -0.4 FBgn0040011 0.32 FBgn0032910 0.59 FBgn0035383 1.12 FBgn0261379 -2.67 FBgn0032467 1.22 FBgn0033261 0.63 FBgn0037244 1.13 FBgn0031493 -1.61 FBgn0004465 -0.74 FBgn0052226 0.27 FBgn0011669 -1.1 FBgn0000032 1.55 FBgn0053060 1.47 FBgn0010382 -4.59 FBgn0052138 1.29 FBgn0032732 1.17 FBgn0034509 0.86 FBgn0261708 1.17 FBgn0039107 -0.55 FBgn0040813 0.4 FBgn0026149 -0.64 FBgn0032397 0.39 FBgn0021967 -1.3 FBgn0052181 0.89 FBgn0025635 0.14 FBgn0037164 0.49 FBgn0037239 0.72 FBgn0033207 0.05 FBgn0051551 -1.84 FBgn0032008 -1.06 FBgn0038419 1.18 FBgn0037817 -1.34 FBgn0034684 0.65 FBgn0053263 0.72 FBgn0004666 -0.58 FBgn0086784 -1.5 FBgn0259831 0.61 FBgn0261914 -1.8 FBgn0042173 0.12 FBgn0085483 -0.94 FBgn0032406 0.44 FBgn0010877 -1.1 FBgn0035152 -1.1 FBgn0000114 -0.87 FBgn0019624 -0.78 FBgn0027597 0.74 FBgn0036950 0.45 FBgn0051441 -0.96 FBgn0035440 0.49 FBgn0250844 0.66 FBgn0035871 1.52 FBgn0026873 0.14 FBgn0000139 0.93 FBgn0031268 0.57 FBgn0034271 0.2 FBgn0025879 -0.67 FBgn0032577 0.83 FBgn0035649 0.31 FBgn0029997 1.44 FBgn0024983 0.72 FBgn0033544 -1.06 FBgn0260718 0.51 FBgn0032473 0.43 FBgn0036846 -0.63 FBgn0037884 1.37 FBgn0029858 0.76 FBgn0038237 0.99 FBgn0038063 -1.26 FBgn0035727 0.81 FBgn0038597 0.79 FBgn0029980 0.66 FBgn0051496 0.76 FBgn0054033 -1.23 FBgn0261597 -2.84 FBgn0039925 0.91 FBgn0013325 -3.72 FBgn0039979 1.8 FBgn0041579 0.57 FBgn0039331 -0.92 FBgn0038400 1.43 FBgn0259978 7.13 FBgn0038200 0.98 FBgn0012037 0.44 FBgn0039150 1.64 FBgn0003567 1.54 FBgn0036837 0.91 FBgn0053769 0.22 FBgn0032750 0.12 FBgn0038619 -0.25 FBgn0035065 0.43 FBgn0051103 1.62 FBgn0030078 0.57 FBgn0260873 0.51 FBgn0031775 1.17 FBgn0001108 -0.48 FBgn0031974 0.42 FBgn0039620 -1.25 FBgn0040259 -0.52 FBgn0039860 0.49 FBgn0039836 -0.32 FBgn0036760 0.43 FBgn0011217 1.2 FBgn0033623 0.3 FBgn0032269 2.07 FBgn0034191 1.14 FBgn0028703 -1.72 FBgn0027930 0.58 FBgn0031273 1.82 FBgn0035257 -1.08 FBgn0052638 0.09 FBgn0029708 1.89 FBgn0028984 -0.81 FBgn0033374 0.28 FBgn0032934 0.45 FBgn0033081 -0.68 FBgn0015270 -0.49 FBgn0003866 -0.37 FBgn0085459 0.66 FBgn0005670 0.85 FBgn0004449 -0.53 FBgn0051719 1.47 FBgn0039783 -0.72 FBgn0039339 -0.33 FBgn0025679 -0.6 FBgn0014454 1.15 FBgn0005558 0.43 FBgn0051530 -0.37 FBgn0050036 -1.93 FBgn0032770 -0.45 FBgn0033812 0.82 FBgn0032178 0.91 FBgn0025680 -0.39 FBgn0039019 -0.89 FBgn0011224 -1.99 FBgn0039311 -0.91 FBgn0037667 -0.7 FBgn0014395 0.4 FBgn0031909 0.95 FBgn0035593 1.66 FBgn0032184 1.41 FBgn0035813 -1.86 FBgn0037665 -1.1 FBgn0034092 0.38 FBgn0050049 -1 FBgn0004795 0.42 FBgn0053966 -0.58 FBgn0037838 -0.87 FBgn0034986 0.55 FBgn0061200 -3.99 FBgn0035020 -1.07 FBgn0036899 -1.16 FBgn0061197 0.72 FBgn0015509 1.98 FBgn0086604 1 FBgn0036608 0.63 FBgn0034293 0.9 FBgn0036531 -0.74 FBgn0037149 0.77 FBgn0037566 -0.41 FBgn0050485 1.05 FBgn0031470 -0.9 FBgn0036677 1.24 FBgn0038323 0.64 FBgn0016013 -0.73 FBgn0030592 1.03 FBgn0004170 -1.07 FBgn0040102 0.58 FBgn0033808 -0.37 FBgn0027586 0.37 FBgn0030746 -0.25 FBgn0036569 0.39 FBgn0010411 -3.46 FBgn0039427 1.89 FBgn0039420 -0.27 FBgn0038585 -1.06 FBgn0034712 0.69 FBgn0036474 -0.63 FBgn0032923 0.79 FBgn0000210 0.08 FBgn0004895 0.41 FBgn0039113 -0.19 FBgn0020646 0.62 FBgn0005593 -4.25 FBgn0035750 0.45 FBgn0010197 0.65 FBgn0013678 0.53 FBgn0017429 0.5 FBgn0037263 -0.55 FBgn0085426 0.92 FBgn0040959 -0.4 FBgn0030181 -0.43 FBgn0261014 0.48 FBgn0036589 -0.63 FBgn0033984 0.64 FBgn0035798 0.3 FBgn0032162 -0.81 FBgn0034464 -0.66 FBgn0004379 -2.77 FBgn0004175 0.98 FBgn0039543 0.98 FBgn0031865 -0.7 FBgn0038871 -0.48 FBgn0035640 -1.36 FBgn0020368 -1.51 FBgn0004372 0.95 FBgn0250788 -0.35 FBgn0031644 -0.28 FBgn0033912 -3.93 FBgn0085440 1.08 FBgn0034423 0.67 FBgn0038762 0.87 FBgn0030894 0.9 FBgn0038914 0.49 FBgn0030829 0.24 FBgn0036393 -0.95 FBgn0031805 0.58 FBgn0035195 1.38 FBgn0037650 0.83 FBgn0039157 1.58 FBgn0023076 0.87 FBgn0028506 -3.89 FBgn0038428 0.58 FBgn0031233 -0.44 FBgn0035896 1.73 FBgn0030914 0.69 FBgn0029804 -0.97 FBgn0031397 -0.29 FBgn0027504 -1.01 FBgn0052436 -0.53 FBgn0039993 0.96 FBgn0026320 0.78 FBgn0011591 -0.87 FBgn0259481 1.04 FBgn0039766 1.26 FBgn0037396 0.37 FBgn0038320 0.96 FBgn0026255 0.27 FBgn0034735 -1 FBgn0053998 0.78 FBgn0022720 1.04 FBgn0041252 -0.4 FBgn0028949 1.43 FBgn0036136 1.13 FBgn0051207 -0.1 FBgn0029966 0.6 FBgn0030071 0.59 FBgn0011474 1.54 FBgn0000721 0.41 FBgn0030752 -0.08 FBgn0087021 -0.85 FBgn0033303 3.13 FBgn0051105 -1.3 FBgn0024804 0.43 FBgn0050157 -0.68 FBgn0010247 0.52 FBgn0259220 -1 FBgn0013684 -0.57 FBgn0044871 -2 FBgn0031523 -0.38 FBgn0053283 0.08 FBgn0026409 -1.35 FBgn0039500 -1.04 FBgn0051065 -0.93 FBgn0032961 -1.29 FBgn0037215 -0.49 FBgn0085403 11.42 FBgn0051788 0.1 FBgn0002069 0.5 FBgn0019809 -0.61 FBgn0052657 0.83 FBgn0039972 -0.36 FBgn0034631 0.69 FBgn0010014 1.31 FBgn0005694 5.4 FBgn0051472 0.45 FBgn0034454 1.24 FBgn0003022 0.58 FBgn0033948 -0.66 FBgn0001247 0.92 FBgn0036913 -0.88 FBgn0036816 0.85 FBgn0029134 -2.16 FBgn0027572 -1.43 FBgn0053758 1.12 FBgn0027107 -1.07 FBgn0260943 1.29 FBgn0031410 -0.66 FBgn0033609 1.36 FBgn0052086 0.3 FBgn0051457 0.48 FBgn0031139 -0.2 FBgn0039788 1.57 FBgn0038158 0.31 FBgn0034157 0.84 FBgn0037385 0.78 FBgn0052655 0.46 FBgn0023096 0.98 FBgn0029868 0.62 FBgn0036207 0.78 FBgn0030053 1.1 FBgn0036494 -0.8 FBgn0000246 1.26 FBgn0260744 0.4 FBgn0039488 -1.78 FBgn0020496 -2.58 FBgn0067629 -0.84 FBgn0003227 0.85 FBgn0035315 1.45 FBgn0053970 1.37 FBgn0040636 0.13 FBgn0013998 -0.49 FBgn0031238 -2.3 FBgn0038306 -0.5 FBgn0032509 0.36 FBgn0035552 -0.95 FBgn0016920 1.63 FBgn0034585 0.52 FBgn0050082 -1.42 FBgn0046296 0.37 FBgn0027950 -1 FBgn0085386 1.16 FBgn0039916 1.19 FBgn0031649 0.7 FBgn0035147 1.12 FBgn0032919 -0.19 FBgn0011763 -3.4 FBgn0033090 -1.76 FBgn0037083 1.27 FBgn0051469 0.32 FBgn0031661 0.43 FBgn0038918 1.25 FBgn0037322 -0.25 FBgn0037514 0.47 FBgn0035335 1.17 FBgn0000253 4.7 FBgn0053958 0.96 FBgn0029128 0.3 FBgn0259142 1.28 FBgn0026702 1.26 FBgn0015808 0.79 FBgn0032219 0.88 FBgn0034087 2.95 FBgn0038810 -0.73 FBgn0039163 -0.35 FBgn0038356 -0.47 FBgn0053179 0.44 FBgn0026619 -0.92 FBgn0038550 0.64 FBgn0034816 0.64 FBgn0051272 -2.35 FBgn0034838 0.84 FBgn0034618 -0.58 FBgn0015037 -0.58 FBgn0035483 -0.68 FBgn0033258 0.22 FBgn0038704 -0.55 FBgn0040348 0.88 FBgn0031631 0.73 FBgn0032482 -2.32 FBgn0032968 0.13 FBgn0015376 0.64 FBgn0022709 0.14 FBgn0051337 0.8 FBgn0031692 -0.97 FBgn0035228 0.76 FBgn0035589 -0.96 FBgn0036992 -1.09 FBgn0261294 0.24 FBgn0051709 0.66 FBgn0039052 0.65 FBgn0037845 1.29 FBgn0039904 -0.4 FBgn0030276 0.76 FBgn0041248 -0.88 FBgn0040367 0.12 FBgn0025286 -3.45 FBgn0033665 -0.45 FBgn0034275 0.66 FBgn0050039 0.42 FBgn0086736 -2.62 FBgn0051779 -0.15 FBgn0031231 -0.24 FBgn0030099 1.06 FBgn0029913 -0.19 FBgn0038771 0.6 FBgn0003165 1.17 FBgn0260653 1.53 FBgn0261593 0.56 FBgn0030274 -2.31 FBgn0036689 -0.69 FBgn0037715 0.86 FBgn0011659 0.68 FBgn0039476 1.19 FBgn0027509 0.3 FBgn0032791 -0.51 FBgn0032489 -1.28 FBgn0014189 -1.61 FBgn0036233 0.5 FBgn0261060 -1.23 FBgn0042693 -0.83 FBgn0035260 0.99 FBgn0000723 -2.24 FBgn0261566 0.75 FBgn0037529 0.96 FBgn0038476 0.99 FBgn0038595 -0.67 FBgn0032416 -0.75 FBgn0036380 0.78 FBgn0033960 -1.14 FBgn0024806 -1.51 FBgn0035034 0.84 FBgn0015558 -0.64 FBgn0032957 -1.03 FBgn0003660 0.63 FBgn0034067 -1.36 FBgn0004168 0.46 FBgn0032061 -0.69 FBgn0025633 0.79 FBgn0038722 0.77 FBgn0038568 0.5 FBgn0033650 0.58 FBgn0003002 -0.68 FBgn0031461 -0.76 FBgn0029798 0.44 FBgn0013432 0.9 FBgn0052499 0.72 FBgn0024227 -1.14 FBgn0034253 -0.88 FBgn0051810 -1.07 FBgn0027499 -0.69 FBgn0030868 -0.35 FBgn0032154 -0.13 FBgn0031377 0.72 FBgn0037797 -1 FBgn0032838 1.12 FBgn0031058 -0.09 FBgn0038243 -0.26 FBgn0260945 -0.75 FBgn0013765 4.79 FBgn0040582 1.1 FBgn0038239 -0.41 FBgn0039224 -0.46 FBgn0028573 0.24 FBgn0034753 0.63 FBgn0036053 1.27 FBgn0037551 0.8 FBgn0035666 0.74 FBgn0033402 -0.39 FBgn0020238 -0.25 FBgn0003892 -0.85 FBgn0037632 -1.5 FBgn0052280 -0.29 FBgn0032465 -0.89 FBgn0040602 0.53 FBgn0039589 -0.9 FBgn0024734 0.52 FBgn0085388 -1.27 FBgn0043005 -0.66 FBgn0000463 0.55 FBgn0024285 -0.71 FBgn0040699 -0.36 FBgn0052856 0.87 FBgn0024920 -0.83 FBgn0050361 -1.64 FBgn0035046 -2.03 FBgn0051562 -0.54 FBgn0015522 0.6 FBgn0020415 -0.32 FBgn0261872 1.51 FBgn0021944 0.51 FBgn0033348 -2.09 FBgn0259209 -0.88 FBgn0030366 -1.78 FBgn0032395 2.18 FBgn0083961 1.68 FBgn0050280 1.77 FBgn0053291 1.14 FBgn0039580 -0.52 FBgn0036063 1.06 FBgn0051681 -0.25 FBgn0002031 -2.45 FBgn0037834 -1.16 FBgn0260639 -0.71 FBgn0261799 -1.22 FBgn0032198 -0.95 FBgn0000313 0.89 FBgn0025640 0.06 FBgn0085473 -0.84 FBgn0032287 0.85 FBgn0003475 -0.56 FBgn0037742 -0.89 FBgn0052284 0.43 FBgn0259916 0.26 FBgn0038377 0.68 FBgn0025642 -1.74 FBgn0003268 -0.51 FBgn0051848 1.13 FBgn0039564 -0.53 FBgn0037812 -1.64 FBgn0040777 1.27 FBgn0062449 -1.04 FBgn0050278 -1.7 FBgn0026370 2.62 FBgn0260861 1.14 FBgn0037671 0.35 FBgn0038127 -0.63 FBgn0032345 -0.28 FBgn0030494 0.42 FBgn0029521 0.36 FBgn0034888 0.55 FBgn0029885 0.93 FBgn0031837 -0.64 FBgn0030465 0.27 FBgn0032280 1.06 FBgn0054006 -0.69 FBgn0038658 -0.34 FBgn0036335 0.2 FBgn0036923 0.49 FBgn0032843 0.47 FBgn0036690 -0.93 FBgn0037698 -1.68 FBgn0259735 1.29 FBgn0004656 -0.78 FBgn0032858 -0.66 FBgn0036949 0.51 FBgn0052845 0.56 FBgn0033901 0.81 FBgn0040755 1.25 FBgn0050440 -1.49 FBgn0035860 0.83 FBgn0031930 0.9 FBgn0052344 0.45 FBgn0010097 1.09 FBgn0019661 0.53 FBgn0036735 -1.03 FBgn0033307 0.87 FBgn0036459 1.49 FBgn0027790 0.4 FBgn0085358 0.29 FBgn0024740 -0.95 FBgn0037377 -0.69 FBgn0000715 -0.77 FBgn0039869 0.2 FBgn0038552 1.08 FBgn0039175 -0.72 FBgn0032129 -0.58 FBgn0023526 0.38 FBgn0259246 1.03 FBgn0037074 0.9 FBgn0036450 1.16 FBgn0003016 -1.02 FBgn0050430 -1.54 FBgn0030086 -3.18 FBgn0036881 -0.5 FBgn0016701 -1.05 FBgn0050265 -1.65 FBgn0034408 1.3 FBgn0027547 0.7 FBgn0029837 1.27 FBgn0051041 0.96 FBgn0027500 0.48 FBgn0029962 0.95 FBgn0011270 -0.22 FBgn0034808 1.27 FBgn0031904 -0.21 FBgn0031043 -0.16 FBgn0034361 1.06 FBgn0028561 0.65 FBgn0038607 -1.62 FBgn0032025 0.41 FBgn0000564 1.23 FBgn0031051 0.27 FBgn0033761 -0.89 FBgn0034282 0.96 FBgn0261553 0.39 FBgn0030936 0.79 FBgn0035236 -0.72 FBgn0029608 0.3 FBgn0031436 0.79 FBgn0027101 0.48 FBgn0033716 -0.52 FBgn0028844 0.45 FBgn0001565 -0.33 FBgn0015600 0.79 FBgn0032313 0.77 FBgn0039030 0.33 FBgn0005586 -0.53 FBgn0040294 0.61 FBgn0261429 -0.42 FBgn0031626 -0.06 FBgn0032644 0.29 FBgn0030384 1.33 FBgn0052170 -0.58 FBgn0034452 1.64 FBgn0032774 0.81 FBgn0030802 0.54 FBgn0031496 0.68 FBgn0002938 -0.38 FBgn0041183 -0.66 FBgn0259923 -0.71 FBgn0002626 -3.43 FBgn0034962 1.14 FBgn0030093 0.8 FBgn0017566 0.29 FBgn0029730 -0.61 FBgn0003598 0.16 FBgn0052082 -0.22 FBgn0030391 0.77 FBgn0032891 -0.45 FBgn0036767 0.54 FBgn0031381 1.22 FBgn0010395 -0.94 FBgn0004003 0.87 FBgn0038536 -0.75 FBgn0032665 -0.69 FBgn0028534 1.59 FBgn0085407 1.04 FBgn0039594 1.45 FBgn0038302 -0.74 FBgn0001248 0.63 FBgn0045035 -1.17 FBgn0033766 -0.42 FBgn0085371 0.2 FBgn0002926 0.73 FBgn0038003 -1.82 FBgn0027494 0.87 FBgn0030596 0.97 FBgn0039003 -0.47 FBgn0033005 -0.67 FBgn0033754 0.36 FBgn0038146 0.86 FBgn0036018 -0.3 FBgn0031741 0.56 FBgn0004594 -1.61 FBgn0051861 -0.9 FBgn0033097 0.86 FBgn0086898 0.19 FBgn0004389 -0.89 FBgn0051361 1.56 FBgn0051029 -0.66 FBgn0259242 1.92 FBgn0086908 -1.84 FBgn0260456 0.65 FBgn0039373 0.93 FBgn0002431 -2.39 FBgn0030725 -0.17 FBgn0037530 1.33 FBgn0019972 0.8 FBgn0259100 -1.81 FBgn0036827 -0.28 FBgn0039403 -0.5 FBgn0000181 0.42 FBgn0033657 -1.32 FBgn0053505 -1.05 FBgn0021796 1.26 FBgn0030484 0.76 FBgn0029942 0.68 FBgn0031943 0.87 FBgn0026056 0.85 FBgn0003979 0.37 FBgn0036176 -0.61 FBgn0033789 -0.26 FBgn0033280 -0.67 FBgn0030520 -0.94 FBgn0038014 -1.1 FBgn0033145 0.73 FBgn0043841 -1.15 FBgn0036013 0.97 FBgn0029737 0.45 FBgn0024236 -5.98 FBgn0025835 0.88 FBgn0032945 0.75 FBgn0037646 -0.84 FBgn0039251 -0.21 FBgn0030103 0.38 FBgn0026431 0.2 FBgn0032370 0.37 FBgn0028879 -1.12 FBgn0032660 -1.11 FBgn0033982 0.75 FBgn0040211 1.02 FBgn0034289 0.48 FBgn0025613 -0.56 FBgn0037061 -0.51 FBgn0030242 0.81 FBgn0003884 -1.77 FBgn0035762 -0.55 FBgn0038893 -0.04 FBgn0003295 -0.67 FBgn0036487 2.55 FBgn0085383 0.58 FBgn0014024 -1.07 FBgn0038649 0.99 FBgn0031723 0.41 FBgn0035754 0.9 FBgn0032294 -0.62 FBgn0036248 -0.6 FBgn0052473 1.63 FBgn0031676 1.07 FBgn0035432 -0.76 FBgn0031601 -0.6 FBgn0036353 1.48 FBgn0058298 -1.13 FBgn0036749 -0.94 FBgn0051418 0.69 FBgn0037413 0.46 FBgn0036886 0.84 FBgn0031302 0.38 FBgn0027609 0.26 FBgn0010551 -1.52 FBgn0051269 0.31 FBgn0027560 1.32 FBgn0035461 0.28 FBgn0031034 0.54 FBgn0033074 0.84 FBgn0030013 0.44 FBgn0004227 1.91 FBgn0030508 0.14 FBgn0038492 -0.49 FBgn0037900 0.44 FBgn0031882 1.09 FBgn0050109 -0.84 FBgn0000120 -0.91 FBgn0034553 0.97 FBgn0051031 0.92 FBgn0011230 -1.06 FBgn0039773 -0.7 FBgn0034913 -1.07 FBgn0034368 1.18 FBgn0034850 0.51 FBgn0040670 0.92 FBgn0003374 0.28 FBgn0035563 -1.76 FBgn0036040 0.82 FBgn0051139 -0.49 FBgn0036482 0.67 FBgn0039415 -0.8 FBgn0035211 0.93 FBgn0259823 0.51 FBgn0034159 -0.99 FBgn0015790 -0.56 FBgn0035511 0.83 FBgn0033926 -1.27 FBgn0033862 0.49 FBgn0033574 0.84 FBgn0030954 -0.82 FBgn0035914 0.52 FBgn0036962 -0.5 FBgn0031181 -0.27 FBgn0039681 -0.07 FBgn0051526 0.97 FBgn0038926 1.23 FBgn0038047 0.31 FBgn0039637 0.58 FBgn0030552 -0.8 FBgn0028906 -1.66 FBgn0037466 0.46 FBgn0050098 -0.78 FBgn0050502 0.49 FBgn0032546 0.17 FBgn0051792 -0.87 FBgn0004915 -0.82 FBgn0034129 0.41 FBgn0035189 0.82 FBgn0039009 -0.85 FBgn0051642 -0.9 FBgn0050148 0.9 FBgn0036709 -0.51 FBgn0243513 -0.05 FBgn0051528 1.25 FBgn0038198 0.55 FBgn0085292 0.23 FBgn0086130 1.29 FBgn0027583 0.68 FBgn0086704 0.55 FBgn0031251 -0.96 FBgn0029648 0.42 FBgn0037298 1.5 FBgn0010621 0.62 FBgn0011286 1.2 FBgn0041094 1.37 FBgn0037439 0.51 FBgn0030653 -0.3 FBgn0086902 -2.12 FBgn0053458 0.52 FBgn0026083 -0.27 FBgn0030010 0.54 FBgn0039152 0.2 FBgn0028952 0.39 FBgn0038647 0.94 FBgn0039343 -0.76 FBgn0031285 -1.2 FBgn0023511 -0.48 FBgn0030611 0.69 FBgn0039538 0.87 FBgn0039555 0.47 FBgn0029689 0.78 FBgn0035413 -1.01 FBgn0039277 0.61 FBgn0037915 -0.09 FBgn0030878 1.42 FBgn0053555 0.59 FBgn0032925 0.76 FBgn0036918 -0.3 FBgn0261286 -0.18 FBgn0027334 0.77 FBgn0050163 0.81 FBgn0040666 -0.91 FBgn0031549 -2.97 FBgn0261722 0.89 FBgn0035076 1.16 FBgn0033648 0.59 FBgn0039713 -2.56 FBgn0086913 0.85 FBgn0036814 1.02 FBgn0051974 0.82 FBgn0033527 1.32 FBgn0004624 1.21 FBgn0011272 -3.66 FBgn0052704 -0.41 FBgn0040364 -0.82 FBgn0031762 -1.37 FBgn0036997 -0.5 FBgn0031116 0.59 FBgn0038258 -1.8 FBgn0001257 0.12 FBgn0038675 -1.24 FBgn0034201 1.1 FBgn0261801 -0.3 FBgn0085378 -2.45 FBgn0036116 0.82 FBgn0261456 -0.29 FBgn0259791 0.92 FBgn0031730 -1.43 FBgn0000640 0.69 FBgn0039059 0.55 FBgn0027865 -0.26 FBgn0050413 -0.24 FBgn0032336 0.73 FBgn0037757 1.41 FBgn0261625 1.05 FBgn0022984 0.61 FBgn0031873 -1.19 FBgn0032387 -1.14 FBgn0051151 0.5 FBgn0015565 -1.38 FBgn0028374 0.56 FBgn0002562 0.27 FBgn0027553 0.88 FBgn0259715 1.71 FBgn0029603 0.93 FBgn0030694 0.33 FBgn0020640 1.68 FBgn0039801 0.57 FBgn0035891 0.9 FBgn0011455 0.92 FBgn0086610 -0.38 FBgn0028850 -0.41 FBgn0015816 -0.88 FBgn0032871 -0.6 FBgn0010105 1.24 FBgn0036321 0.39 FBgn0034705 -1.11 FBgn0086608 0.29 FBgn0036406 -0.67 FBgn0029658 0.8 FBgn0039225 0.4 FBgn0025355 -0.46 FBgn0027259 0.2 FBgn0036287 0.33 FBgn0035574 -0.87 FBgn0037611 0.56 FBgn0023416 -0.74 FBgn0024833 0.65 FBgn0008651 0.47 FBgn0033873 -1.4 FBgn0053514 -1.45 FBgn0022700 0.82 FBgn0040958 0.47 FBgn0039909 0.53 FBgn0034210 0.68 FBgn0261396 -2.03 FBgn0027525 -0.81 FBgn0039087 -1.71 FBgn0034661 -0.93 FBgn0033056 0.86 FBgn0005648 -1.72 FBgn0035204 0.81 FBgn0259099 -1.45 FBgn0036104 0.53 FBgn0051323 -0.86 FBgn0037131 -1.7 FBgn0063499 0.28 FBgn0031513 -0.53 FBgn0031357 -0.67 FBgn0032493 -0.91 FBgn0039080 1.02 FBgn0038256 -1.48 FBgn0004432 -0.87 FBgn0250816 0.77 FBgn0259222 0.82 FBgn0041097 1.54 FBgn0038852 -1.63 FBgn0023517 0.61 FBgn0033264 0.59 FBgn0000644 0.32 FBgn0029155 -0.5 FBgn0038167 0.78 FBgn0040466 -1.26 FBgn0038354 -2.97 FBgn0015924 1.07 FBgn0053300 -0.79 FBgn0038269 -2.55 FBgn0036225 0.5 FBgn0034899 1.1 FBgn0038889 1.79 FBgn0003559 2.34 FBgn0035270 -0.1 FBgn0035151 1.72 FBgn0039844 0.33 FBgn0023521 -1.15 FBgn0038266 0.29 FBgn0033508 0.14 FBgn0045866 -0.41 FBgn0038642 -1.57 FBgn0038567 -0.24 FBgn0033244 0.75 FBgn0051872 -0.71 FBgn0053792 0.2 FBgn0038219 -1.53 FBgn0000212 2.23 FBgn0038805 0.81 FBgn0032151 -2.59 FBgn0260933 -0.61 FBgn0050287 -0.61 FBgn0003326 -1.4 FBgn0031757 0.59 FBgn0032066 0.66 FBgn0030050 0.62 FBgn0033153 0.35 FBgn0030007 1.24 FBgn0010611 0.36 FBgn0261067 0.44 FBgn0035393 -1.16 FBgn0034354 0.72 FBgn0034924 -1.28 FBgn0023197 0.14 FBgn0036781 -0.77 FBgn0029791 -0.61 FBgn0001297 2.08 FBgn0030338 -0.69 FBgn0029724 -0.81 FBgn0027621 1.48 FBgn0037786 1.07 FBgn0036202 0.88 FBgn0032513 1.34 FBgn0024364 1.22 FBgn0036072 0.56 FBgn0035410 0.15 FBgn0040087 0.31 FBgn0040553 0.65 FBgn0004855 -1.28 FBgn0038131 -0.44 FBgn0034128 1.09 FBgn0031638 -0.58 FBgn0032943 0.86 FBgn0085313 -1.22 FBgn0032721 -0.43 FBgn0261858 0.51 FBgn0003206 -1.67 FBgn0035679 0.44 FBgn0038547 -4.29 FBgn0038467 1.08 FBgn0034173 0.52 FBgn0033366 0.81 FBgn0004649 0.27 FBgn0037561 -0.46 FBgn0052376 1.14 FBgn0038206 0.68 FBgn0011569 0.63 FBgn0033726 0.78 FBgn0037975 -0.95 FBgn0052263 -0.93 FBgn0030859 0.39 FBgn0031392 0.45 FBgn0041625 -0.97 FBgn0037008 0.39 FBgn0034511 1 FBgn0033330 0.6 FBgn0260442 -1.1 FBgn0032223 1.79 FBgn0002906 0.91 FBgn0259192 1.26 FBgn0036266 3.5 FBgn0010263 -0.66 FBgn0085234 -2.94 FBgn0032971 0.29 FBgn0035476 0.43 FBgn0038450 -0.39 FBgn0050118 0.72 FBgn0032523 0.67 FBgn0038783 -0.35 FBgn0000416 -0.7 FBgn0036078 0.49 FBgn0039718 0.9 FBgn0032698 0.4 FBgn0044812 0.81 FBgn0036187 -0.55 FBgn0028406 -1.95 FBgn0031309 -0.64 FBgn0052834 1.03 FBgn0050172 0.23 FBgn0031878 0.48 FBgn0004868 0.41 FBgn0034724 -0.83 FBgn0034196 0.16 FBgn0036363 1.24 FBgn0004861 0.75 FBgn0038115 1.3 FBgn0039313 -0.42 FBgn0086689 0.23 FBgn0063492 0.6 FBgn0030266 0.75 FBgn0037265 0.7 FBgn0037101 0.58 FBgn0040323 -1.84 FBgn0052260 -0.66 FBgn0003302 0.86 FBgn0052829 0.98 FBgn0038598 -1.46 FBgn0033814 -1.84 FBgn0040391 0.08 FBgn0030162 1.04 FBgn0011704 -3.38 FBgn0023549 1.03 FBgn0034879 -1.06 FBgn0030257 0.78 FBgn0033463 -0.94 FBgn0031688 0.75 FBgn0003942 -3.57 FBgn0031659 0.74 FBgn0031995 0.61 FBgn0032753 -0.61 FBgn0029825 0.6 FBgn0032888 0.51 FBgn0052590 -0.81 FBgn0016696 -0.32 FBgn0036716 1.25 FBgn0031860 0.29 FBgn0036579 0.46 FBgn0013303 -0.48 FBgn0037856 1.07 FBgn0039296 0.98 FBgn0030643 0.82 FBgn0038873 0.3 FBgn0032729 -1.06 FBgn0036154 2.13 FBgn0033170 0.97 FBgn0053642 1.44 FBgn0083978 1.34 FBgn0026176 0.93 FBgn0031020 2.41 FBgn0039115 -0.55 FBgn0026080 -3.5 FBgn0011244 1.16 FBgn0021738 -1.41 FBgn0051230 -1.31 FBgn0022361 1.15 FBgn0034726 0.52 FBgn0032126 -0.51 FBgn0045478 0.99 FBgn0010422 0.52 FBgn0029114 -1.14 FBgn0002638 1.29 FBgn0028935 -0.87 FBgn0033957 -0.63 FBgn0015774 0.65 FBgn0040075 -2.89 FBgn0033395 0.44 FBgn0030195 0.62 FBgn0034721 0.15 FBgn0036204 1.63 FBgn0000533 0.14 FBgn0039239 0.89 FBgn0038348 0.86 FBgn0035849 -0.6 FBgn0036783 0.21 FBgn0040318 0.71 FBgn0260721 0.79 FBgn0260746 0.75 FBgn0259676 0.32 FBgn0041205 1.92 FBgn0035356 1.37 FBgn0028884 -1.01 FBgn0026319 -0.77 FBgn0025790 2.2 FBgn0250757 0.9 FBgn0038402 0.21 FBgn0040299 1.34 FBgn0259149 -0.72 FBgn0003716 0.31 FBgn0086442 -1.13 FBgn0031613 -1 FBgn0004057 -1.09 FBgn0003346 0.98 FBgn0065109 -0.78 FBgn0261058 0.9 FBgn0043533 -0.41 FBgn0039748 0.51 FBgn0003447 0.68 FBgn0030836 0.95 FBgn0031479 0.02 FBgn0011828 -1.67 FBgn0038505 -1.14 FBgn0037995 0.76 FBgn0027513 0.91 FBgn0036839 0.53 FBgn0015831 1.2 FBgn0026373 -1.3 FBgn0035922 0.5 FBgn0034663 1.43 FBgn0037749 0.95 FBgn0035642 0.22 FBgn0086691 1.33 FBgn0069913 1.58 FBgn0051759 0.14 FBgn0250842 0.34 FBgn0040493 0.47 FBgn0036571 1.73 FBgn0033131 1.03 FBgn0023531 2.05 FBgn0085442 1.04 FBgn0051634 1.2 FBgn0085428 0.54 FBgn0051661 -0.76 FBgn0036214 0.16 FBgn0039270 -1.57 FBgn0034152 -0.31 FBgn0002022 -0.41 FBgn0032627 0.73 FBgn0051949 -0.63 FBgn0011290 1.72 FBgn0025625 0.82 FBgn0051431 -0.81 FBgn0050357 1.56 FBgn0053483 -0.53 FBgn0250908 0.8 FBgn0054026 0.25 FBgn0041232 -0.33 FBgn0026394 -0.49 FBgn0030984 0.35 FBgn0038672 1.6 FBgn0030306 0.43 FBgn0034441 0.56 FBgn0038602 0.43 FBgn0050340 1.58 FBgn0027364 -0.73 FBgn0014007 -1.02 FBgn0030421 0.67 FBgn0038282 1.02 FBgn0037847 1.45 FBgn0033059 -1.49 FBgn0035931 0.72 FBgn0033993 0.38 FBgn0035850 0.31 FBgn0003996 -0.39 FBgn0051824 -1.1 FBgn0027945 -1.21 FBgn0261836 1.69 FBgn0011297 -1.21 FBgn0037591 -0.53 FBgn0016687 1.14 FBgn0261509 1.52 FBgn0027929 0.57 FBgn0033266 -1.75 FBgn0004926 -2.16 FBgn0030037 0.4 FBgn0010504 0.4 FBgn0085297 1.08 FBgn0029892 -0.89 FBgn0029088 -0.46 FBgn0051174 -1.06 FBgn0261532 0.46 FBgn0030374 1.25 FBgn0031859 1.53 FBgn0261565 1.77 FBgn0050393 0.76 FBgn0034142 -0.71 FBgn0036310 0.22 FBgn0259215 1.21 FBgn0037482 0.23 FBgn0037760 0.73 FBgn0261788 -0.76 FBgn0000479 -1.67 FBgn0037433 0.88 FBgn0021764 1.22 FBgn0000158 0.91 FBgn0033466 -0.55 FBgn0033594 0.98 FBgn0037420 -1.66 FBgn0033501 0.36 FBgn0038720 0.91 FBgn0034822 0.75 FBgn0028387 0.95 FBgn0037492 -0.95 FBgn0000183 -0.3 FBgn0000546 0.92 FBgn0024329 1.18 FBgn0040261 0.16 FBgn0039792 0.77 FBgn0033928 0.23 FBgn0033735 -1.45 FBgn0036830 1.62 FBgn0020616 1.72 FBgn0031491 0.59 FBgn0019925 0.95 FBgn0033246 -0.74 FBgn0030259 1.39 FBgn0034901 0.99 FBgn0013347 1.33 FBgn0027616 -0.59 FBgn0040877 -1.07 FBgn0032600 -2.36 FBgn0039369 -0.27 FBgn0037516 0.22 FBgn0035001 1.56 FBgn0036751 -0.84 FBgn0035975 0.88 FBgn0037850 -5.05 FBgn0052259 0.09 FBgn0032781 0.54 FBgn0031997 -0.72 FBgn0034766 0.7 FBgn0022268 0.86 FBgn0036937 -0.49 FBgn0000611 0.46 FBgn0052687 0.96 FBgn0034502 0.34 FBgn0036415 -0.62 FBgn0043903 2.13 FBgn0260645 0.81 FBgn0035083 1.35 FBgn0001124 0.62 FBgn0040208 1.44 FBgn0031144 0.73 FBgn0044328 0.6 FBgn0031453 1.67 FBgn0035693 0.35 FBgn0035027 0.43 FBgn0031528 -0.58 FBgn0039696 -1.28 FBgn0040907 0.43 FBgn0029941 -0.94 FBgn0053490 -1.07 FBgn0038525 -1.45 FBgn0085396 1.38 FBgn0037217 -0.51 FBgn0032448 0.64 FBgn0051624 -0.96 FBgn0033029 2.38 FBgn0034569 -1.09 FBgn0001149 1.04 FBgn0034539 2.27 FBgn0034542 1.38 FBgn0033083 -0.94 FBgn0041247 0.19 FBgn0033932 1.08 FBgn0030700 0.21 FBgn0032000 -0.29 FBgn0026090 0.86 FBgn0033187 0.34 FBgn0010488 1.96 FBgn0004878 -0.19 FBgn0000116 -0.98 FBgn0037416 -0.2 FBgn0034487 -0.17 FBgn0033104 -0.73 FBgn0032634 -1.46 FBgn0028863 0.25 FBgn0030998 0.24 FBgn0039648 0.6 FBgn0036557 0.28 FBgn0051690 1.18 FBgn0011582 0.24 FBgn0038275 0.61 FBgn0017581 -0.19 FBgn0038956 0.16 FBgn0038510 1.44 FBgn0038330 0.63 FBgn0038001 -2.24 FBgn0004052 0.29 FBgn0033275 -0.62 FBgn0035718 0.44 FBgn0033499 0.91 FBgn0029105 -1.5 FBgn0037533 0.91 FBgn0033382 0.18 FBgn0259176 0.73 FBgn0034554 0.44 FBgn0037930 1.07 FBgn0023216 -0.31 FBgn0040719 1.14 FBgn0033431 -1.46 FBgn0004431 1.64 FBgn0035842 -1.11 FBgn0034583 0.28 FBgn0033899 -2.19 FBgn0038210 0.69 FBgn0027527 -0.59 FBgn0050183 1.5 FBgn0036685 -1.28 FBgn0039182 -0.95 FBgn0037415 -0.88 FBgn0026721 2.28 FBgn0032393 0.65 FBgn0003416 1.76 FBgn0032563 -1.97 FBgn0030722 -0.18 FBgn0030589 0.31 FBgn0030943 -0.27 FBgn0040305 1.41 FBgn0039337 1.39 FBgn0042129 -0.62 FBgn0038398 1.49 FBgn0034657 -1 FBgn0029762 -0.81 FBgn0002531 -2.38 FBgn0052507 -0.41 FBgn0034915 1.72 FBgn0035137 -0.05 FBgn0016926 -2.33 FBgn0016075 1.3 FBgn0000308 0.9 FBgn0034094 1.07 FBgn0027932 0.53 FBgn0051404 1.09 FBgn0039189 -0.68 FBgn0029656 -1.13 FBgn0013981 -6.3 FBgn0035325 -0.51 FBgn0051741 1.1 FBgn0026741 0.78 FBgn0027342 0.28 FBgn0000137 -0.73 FBgn0034572 2.18 FBgn0032907 -1.57 FBgn0010288 -0.07 FBgn0051155 -1.39 FBgn0034223 0.42 FBgn0037360 1.11 FBgn0054030 0.56 FBgn0001169 0.32 FBgn0052563 0.11 FBgn0051374 1.15 FBgn0052713 0.17 FBgn0052391 0.55 FBgn0034478 -0.4 FBgn0003401 1.38 FBgn0004509 0.75 FBgn0029525 -0.73 FBgn0036285 0.48 FBgn0032084 0.68 FBgn0032908 1.71 FBgn0033050 1.69 FBgn0033379 -1.56 FBgn0028665 -1.53 FBgn0032029 0.76 FBgn0030792 0.55 FBgn0029880 0.64 FBgn0031563 -0.49 FBgn0040338 0.98 FBgn0032249 -0.67 FBgn0039674 -0.88 FBgn0021953 -0.29 FBgn0033475 1.39 FBgn0000384 0.33 FBgn0050096 -0.9 FBgn0041588 0.24 FBgn0037894 -0.52 FBgn0010041 -0.78 FBgn0014342 0.41 FBgn0026395 1 FBgn0033215 -0.5 FBgn0031773 0.84 FBgn0011694 -1.04 FBgn0034703 0.89 FBgn0037814 -1.1 FBgn0033679 -0.65 FBgn0031538 -0.53 FBgn0031498 -0.25 FBgn0040809 -1.05 FBgn0053557 -0.57 FBgn0052103 -0.86 FBgn0052631 -1.39 FBgn0035588 1.76 FBgn0033919 1.35 FBgn0026620 -0.52 FBgn0051612 -1.01 FBgn0046222 -2.14 FBgn0015001 0.37 FBgn0052727 0.28 FBgn0033996 1.24 FBgn0036546 1.12 FBgn0259219 0.92 FBgn0085265 0.77 FBgn0032340 1.83 FBgn0003463 -0.96 FBgn0050104 -0.16 FBgn0035255 -0.18 FBgn0043578 -0.29 FBgn0035929 0.34 FBgn0016041 -0.59 FBgn0031988 -0.57 FBgn0030850 -1.25 FBgn0004687 1.23 FBgn0040268 0.64 FBgn0034394 1.29 FBgn0027338 -1.46 FBgn0036138 0.61 FBgn0024689 -0.92 FBgn0260798 -0.56 FBgn0039734 1.16 FBgn0033687 0.82 FBgn0031164 -0.44 FBgn0033458 -0.49 FBgn0038440 0.62 FBgn0031209 0.91 FBgn0034232 0.44 FBgn0038381 2.01 FBgn0037063 1.04 FBgn0052106 -0.49 FBgn0030418 -1.25 FBgn0035685 0.6 FBgn0040528 0.66 FBgn0035004 -1.19 FBgn0030594 -0.54 FBgn0039505 -0.2 FBgn0028407 1.17 FBgn0034814 1.29 FBgn0041150 -0.98 FBgn0015806 -1.4 FBgn0025111 -1.61 FBgn0039124 0.19 FBgn0028411 2.06 FBgn0051279 -0.8 FBgn0040502 0.4 FBgn0034425 0.37 FBgn0035508 0.97 FBgn0013576 1.04 FBgn0032609 1.04 FBgn0030342 0.97 FBgn0086370 1.49 FBgn0260007 -1.53 FBgn0031760 1.1 FBgn0042146 1.2 FBgn0047114 1.08 FBgn0038325 -0.62 FBgn0085503 0.75 FBgn0026263 1.17 FBgn0051728 0.73 FBgn0259113 0.86 FBgn0020272 -0.44 FBgn0030787 0.46 FBgn0036893 0.41 FBgn0051516 0.5 FBgn0033566 -0.74 FBgn0086356 -0.75 FBgn0001315 0.97 FBgn0002552 0.28 FBgn0034943 -0.58 FBgn0036402 6.19 FBgn0004777 1.46 FBgn0035983 0.58 FBgn0013676 0.4 FBgn0036496 0.99 FBgn0029646 0.94 FBgn0004380 -0.14 FBgn0039920 -0.84 FBgn0038447 0.67 FBgn0037489 -1.12 FBgn0050067 0.51 FBgn0050192 1.14 FBgn0053543 -0.97 FBgn0051922 -0.6 FBgn0050151 -0.79 FBgn0033696 0.49 FBgn0039261 -0.3 FBgn0024191 1.16 FBgn0036476 -1.8 FBgn0032193 0.76 FBgn0001254 -1.17 FBgn0052808 -1.07 FBgn0030495 -0.48 FBgn0030563 0.69 FBgn0014466 0.82 FBgn0038301 0.69 FBgn0030718 1.41 FBgn0038695 -0.08 FBgn0038972 1.06 FBgn0028892 -1.62 FBgn0003274 -4.32 FBgn0032701 0.59 FBgn0037606 0.59 FBgn0031281 1.38 FBgn0038098 0.77 FBgn0020545 0.73 FBgn0033889 -4.96 FBgn0037195 0.61 FBgn0035193 -0.2 FBgn0038170 0.53 FBgn0024945 -0.44 FBgn0052693 -0.24 FBgn0037722 -1.63 FBgn0046878 -0.72 FBgn0036679 -0.86 FBgn0029690 0.58 FBgn0037614 0.74 FBgn0039064 0.48 FBgn0032217 0.27 FBgn0036277 1.46 FBgn0034180 1.83 FBgn0003261 -1.43 FBgn0029951 1.23 FBgn0053704 -0.26 FBgn0035317 0.75 FBgn0031446 -0.31 FBgn0026754 -0.29 FBgn0052600 1.07 FBgn0038035 0.61 FBgn0035501 0.15 FBgn0031769 0.75 FBgn0036951 0.75 FBgn0005633 0.35 FBgn0027094 0.31 FBgn0011476 0.47 FBgn0023536 1.22 FBgn0037875 -1.34 FBgn0039324 -0.57 FBgn0015797 -0.57 FBgn0013726 0.7 FBgn0039429 -1.36 FBgn0036616 0.52 FBgn0033092 -0.55 FBgn0043364 0.8 FBgn0038159 0.38 FBgn0033140 0.76 FBgn0005696 -1.3 FBgn0039481 0.79 FBgn0016919 0.92 FBgn0039043 -0.59 FBgn0002715 -1.64 FBgn0004373 -0.32 FBgn0028541 -1.06 FBgn0250833 1.08 FBgn0051999 0.93 FBgn0038319 0.24 FBgn0031412 -0.79 FBgn0031220 1.6 FBgn0027903 -0.36 FBgn0027620 -0.95 FBgn0035550 0.52 FBgn0001234 -0.4 FBgn0259236 1.27 FBgn0038916 0.3 FBgn0004908 -0.69 FBgn0039636 1.06 FBgn0053194 -0.65 FBgn0015521 -2.73 FBgn0036874 0.35 FBgn0037779 -1.22 FBgn0037013 -0.27 FBgn0028504 1.25 FBgn0037312 0.9 FBgn0039471 -1 FBgn0037964 1.29 FBgn0032507 0.41 FBgn0033168 -0.78 FBgn0261928 0.9 FBgn0030688 1.21 FBgn0021825 0.3 FBgn0037085 1.15 FBgn0029863 0.66 FBgn0032813 0.8 FBgn0032314 -0.31 FBgn0027538 -0.09 FBgn0037429 1.08 FBgn0050466 0.37 FBgn0086779 0.68 FBgn0037635 0.46 FBgn0025865 -0.78 FBgn0260461 0.46 FBgn0037207 -1.74 FBgn0052462 -0.55 FBgn0029697 0.15 FBgn0038039 -0.36 FBgn0015010 -0.68 FBgn0024995 0.36 FBgn0035333 0.64 FBgn0039355 -0.43 FBgn0039486 0.43 FBgn0028691 -0.82 FBgn0029661 0.37 FBgn0085465 -0.65 FBgn0086472 -0.66 FBgn0085204 -3.24 FBgn0014026 -3.38 FBgn0014141 0.79 FBgn0029990 0.74 FBgn0000244 0.29 FBgn0033638 -1.05 FBgn0030660 -0.33 FBgn0051004 0.48 FBgn0011762 -0.06 FBgn0004778 0.1 FBgn0034463 0.19 FBgn0039164 0.66 FBgn0051055 0.99 FBgn0038341 0.99 FBgn0028875 -1.18 FBgn0034069 0.55 FBgn0037700 -1.38 FBgn0028327 1.05 FBgn0015277 -0.97 FBgn0034072 0.84 FBgn0260003 0.68 FBgn0037147 0.62 FBgn0035162 0.85 FBgn0038960 -0.76 FBgn0040650 0.59 FBgn0024814 0.94 FBgn0039770 -0.7 FBgn0034741 0.88 FBgn0039627 -0.33 FBgn0031976 -0.7 FBgn0003279 -3.6 FBgn0034520 0.94 FBgn0039017 1 FBgn0028513 -0.66 FBgn0053474 -1.12 FBgn0038361 0.38 FBgn0034623 0.5 FBgn0036528 0.85 FBgn0000256 1.29 FBgn0036820 -1.85 FBgn0032256 0.16 FBgn0039525 1.18 FBgn0023542 0.54 FBgn0039010 -0.77 FBgn0039852 -1.42 FBgn0026252 -0.27 FBgn0028401 0.17 FBgn0033209 0.86 FBgn0025682 -0.66 FBgn0033663 -0.53 FBgn0030744 1.04 FBgn0031361 0.89 FBgn0028396 1.37 FBgn0033221 -0.98 FBgn0004463 -0.69 FBgn0036762 -0.65 FBgn0001085 -0.68 FBgn0030799 0.04 FBgn0032230 1.23 FBgn0030510 1.07 FBgn0032475 0.16 FBgn0052423 1.33 FBgn0024332 -1.19 FBgn0050158 -0.94 FBgn0037819 -0.91 FBgn0028475 -1.19 FBgn0005386 1.79 FBgn0035815 1.14 FBgn0037572 1.29 FBgn0010316 0.85 FBgn0004569 -0.41 FBgn0052274 0.47 FBgn0039641 1.22 FBgn0259745 2.26 FBgn0033400 1.5 FBgn0037386 0.18 FBgn0051902 0.18 FBgn0039760 0.54 FBgn0085481 0.19 FBgn0037920 1.17 FBgn0030222 0.91 FBgn0033020 0.51 FBgn0039755 0.79 FBgn0031463 -0.7 FBgn0028919 1.77 FBgn0050259 -1 FBgn0028274 0.99 FBgn0052745 0.24 FBgn0040382 -0.7 FBgn0034035 1.16 FBgn0052188 -0.21 FBgn0011260 0.36 FBgn0052228 1.18 FBgn0038576 4.47 FBgn0031694 -1.05 FBgn0038107 -0.1 FBgn0015336 0.74 FBgn0034994 0.6 FBgn0036000 -0.86 FBgn0000358 1.07 FBgn0053673 -1.17 FBgn0014366 -0.53 FBgn0032100 -0.79 FBgn0051998 1.26 FBgn0039896 0.57 FBgn0038438 -0.31 FBgn0030912 0.23 FBgn0036492 -1.15 FBgn0024291 0.55 FBgn0020509 0.26 FBgn0053969 0.24 FBgn0039060 0.82 FBgn0039380 1.18 FBgn0085349 -0.52 FBgn0042119 1.53 FBgn0260000 -0.68 FBgn0025777 0.25 FBgn0037166 -0.67 FBgn0011737 -0.85 FBgn0024509 -1.31 FBgn0030577 0.41 FBgn0038755 1.24 FBgn0051463 -0.29 FBgn0037652 -1.01 FBgn0037659 0.73 FBgn0031912 -2.19 FBgn0031703 1.49 FBgn0040106 0.58 FBgn0036652 0.78 FBgn0034471 0.73 FBgn0259229 1.13 FBgn0029706 1.01 FBgn0040509 0.3 FBgn0037005 1.13 FBgn0035063 1.56 FBgn0029771 1.15 FBgn0022787 -0.59 FBgn0035657 -0.26 FBgn0032868 -0.5 FBgn0036549 0.38 FBgn0015574 1.79 FBgn0037230 0.73 FBgn0036101 -1.47 FBgn0029092 0.59 FBgn0031683 0.87 FBgn0036500 0.68 FBgn0005672 0.65 FBgn0038548 0.79 FBgn0014269 0.43 FBgn0001225 0.72 FBgn0020379 1.55 FBgn0005411 -3.87 FBgn0038207 -0.5 FBgn0037125 0.45 FBgn0051960 1.4 FBgn0035570 0.59 FBgn0031171 -0.8 FBgn0050203 -1.3 FBgn0020280 -0.64 FBgn0030979 -0.54 FBgn0010228 -1.45 FBgn0033989 1.68 FBgn0052091 0.53 FBgn0032048 0.67 FBgn0000078 0.58 FBgn0034403 0.73 FBgn0002842 -0.34 FBgn0045827 1.87 FBgn0036447 -0.45 FBgn0028986 -0.24 FBgn0039073 -0.76 FBgn0037669 0.47 FBgn0025627 0.56 FBgn0029701 -0.49 FBgn0261277 0.61 FBgn0028969 -2.81 FBgn0004797 1.08 FBgn0032797 -0.52 FBgn0051288 -0.47 FBgn0030673 0.84 FBgn0038656 -0.48 FBgn0261439 1.64 FBgn0024846 -0.47 FBgn0010452 0.39 FBgn0034057 0.66 FBgn0032652 1.08 FBgn0261627 -0.07 FBgn0035954 1.09 FBgn0051371 0.32 FBgn0034415 0.74 FBgn0028974 -1.54 FBgn0039129 -2.12 FBgn0038577 -0.95 FBgn0085224 0.34 FBgn0051423 0.74 FBgn0040519 0.87 FBgn0034432 1.1 FBgn0039807 1.15 FBgn0058378 -1.68 FBgn0040725 -0.21 FBgn0053315 -0.83 FBgn0063261 -0.71 FBgn0038832 0.28 FBgn0031464 -0.64 FBgn0033010 1.21 FBgn0028979 -0.1 FBgn0032462 0.49 FBgn0028980 0.58 FBgn0003997 1.48 FBgn0002940 1.24 FBgn0036514 -0.97 FBgn0030305 0.48 FBgn0052686 0.36 FBgn0032402 0.5 FBgn0039381 1.29 FBgn0032196 1.05 FBgn0031390 1.77 FBgn0029770 -0.67 FBgn0040823 0.9 FBgn0034828 -1.82 FBgn0030976 0.28 FBgn0000439 0.24 FBgn0013717 0.29 FBgn0021874 0.53 FBgn0030137 0.43 FBgn0031632 0.29 FBgn0030081 -0.5 FBgn0260970 1.51 FBgn0002734 -1.49 FBgn0029176 -1.73 FBgn0034095 -0.72 FBgn0030658 -0.92 FBgn0261933 2.03 FBgn0001112 -0.65 FBgn0052262 0.31 FBgn0037291 -0.34 FBgn0035412 0.79 FBgn0051301 -1.99 FBgn0036773 0.77 FBgn0041627 1.14 FBgn0086519 -0.17 FBgn0034005 1.2 FBgn0002931 -0.65 FBgn0260499 0.6 FBgn0030060 0.26 FBgn0032704 -0.82 FBgn0032587 1.23 FBgn0034844 -0.41 FBgn0039022 0.57 FBgn0038854 -0.93 FBgn0035512 1 FBgn0046114 0.37 FBgn0036602 -0.47 FBgn0000667 -0.74 FBgn0004173 1.4 FBgn0010350 -1.41 FBgn0036228 0.19 FBgn0002936 0.64 FBgn0038173 -0.7 FBgn0029823 1.01 FBgn0031881 -0.84 FBgn0019932 1.36 FBgn0029840 -0.45 FBgn0030088 -1.32 FBgn0027588 -0.16 FBgn0037138 1.06 FBgn0027783 0.99 FBgn0038490 0.63 FBgn0027103 1.86 FBgn0036960 1.11 FBgn0037408 -1.09 FBgn0031628 1.01 FBgn0051864 1.17 FBgn0085352 1 FBgn0037275 1 FBgn0050005 1.05 FBgn0035311 0.87 FBgn0053922 -0.35 FBgn0044452 1.95 FBgn0036609 1.07 FBgn0020909 -0.97 FBgn0034247 -1.06 FBgn0052644 -1.18 FBgn0085414 2.8 FBgn0031362 0.77 FBgn0037372 1.54 FBgn0035285 1.08 FBgn0033659 0.86 FBgn0037685 -1.89 FBgn0001134 1.01 FBgn0030160 0.21 FBgn0020224 2.24 FBgn0031356 -0.61 FBgn0045482 -0.89 FBgn0051660 -0.05 FBgn0035980 0.53 FBgn0016694 1.73 FBgn0031292 0.19 FBgn0039800 0.89 FBgn0033368 1.13 FBgn0052551 0.48 FBgn0050048 1.18 FBgn0031305 0.68 FBgn0017448 -0.37 FBgn0038045 -0.51 FBgn0042083 -0.06 FBgn0032727 0.39 FBgn0032303 -1.34 FBgn0033846 -2.3 FBgn0085210 -0.85 FBgn0052088 0.86 FBgn0261266 -0.62 FBgn0062440 -0.52 FBgn0050324 -0.5 FBgn0033645 -0.34 FBgn0035248 -0.41 FBgn0051874 -0.44 FBgn0010397 1.27 FBgn0085212 -0.6 FBgn0086906 -1.52 FBgn0260935 -1.63 FBgn0031677 0.96 FBgn0039454 0.27 FBgn0025394 -3.35 FBgn0250848 -0.63 FBgn0030667 -0.39 FBgn0024230 -1.17 FBgn0039519 1.23 FBgn0036515 0.64 FBgn0010434 0.61 FBgn0032115 -0.48 FBgn0034307 0.25 FBgn0020506 0.81 FBgn0032335 1.73 FBgn0038498 0.46 FBgn0085420 1.41 FBgn0261859 -1.35 FBgn0036712 -1.76 FBgn0014032 0.52 FBgn0028936 -0.77 FBgn0034605 0.19 FBgn0038808 1.42 FBgn0025676 1.26 FBgn0053203 -0.73 FBgn0015299 -0.19 FBgn0020240 1.1 FBgn0032140 0.45 FBgn0039430 -0.23 FBgn0036036 0.6 FBgn0030815 1.49 FBgn0026086 0.7 FBgn0035956 1.02 FBgn0025615 -0.57 FBgn0038412 -0.45 FBgn0042126 -0.69 FBgn0035878 1.02 FBgn0038601 -1.56 FBgn0022935 -4.41 FBgn0030223 0.58 FBgn0086687 -2.41 FBgn0035742 0.61 FBgn0085454 -1.55 FBgn0037910 -2.3 FBgn0003486 0.58 FBgn0037324 -1.14 FBgn0038196 0.82 FBgn0030545 -0.7 FBgn0052374 0.06 FBgn0052548 1.26 FBgn0029679 0.23 FBgn0031032 0.21 FBgn0010042 0.86 FBgn0004863 1.57 FBgn0039132 0.78 FBgn0039271 0.63 FBgn0031483 0.46 FBgn0052571 -0.46 FBgn0002044 -0.83 FBgn0038316 0.89 FBgn0011760 0.25 FBgn0035438 -0.89 FBgn0038292 1.21 FBgn0015818 1.28 FBgn0003720 1.09 FBgn0036043 -1.53 FBgn0259234 0.47 FBgn0036988 0.29 FBgn0034122 0.41 FBgn0032420 0.84 FBgn0021750 0.5 FBgn0000552 -0.71 FBgn0051141 -0.15 FBgn0028990 1.15 FBgn0037724 -0.5 FBgn0035567 -0.67 FBgn0004647 0.43 FBgn0036361 1.19 FBgn0002736 2.16 FBgn0036747 0.92 FBgn0052579 0.73 FBgn0034870 1.17 FBgn0036994 -1.02 FBgn0011785 0.49 FBgn0037110 0.79 FBgn0025463 -0.13 FBgn0028867 2.5 FBgn0031690 -0.56 FBgn0036696 1.43 FBgn0032205 0.91 FBgn0051454 0.66 FBgn0025866 1.21 FBgn0035443 1.46 FBgn0050414 -0.8 FBgn0036742 -0.51 FBgn0085437 -0.51 FBgn0026679 -1.7 FBgn0038979 1.15 FBgn0027568 1.45 FBgn0034474 -0.82 FBgn0039756 0.78 FBgn0002891 -0.39 FBgn0038471 -0.32 FBgn0051092 0.95 FBgn0031936 0.98 FBgn0035632 -0.69 FBgn0082582 1.27 FBgn0024366 -1.4 FBgn0039259 0.64 FBgn0032088 -1.56 FBgn0260776 -0.67 FBgn0029747 1.06 FBgn0022893 -1.08 FBgn0038733 -0.94 FBgn0039668 -0.02 FBgn0034346 0.21 FBgn0001075 1.47 FBgn0034529 0.91 FBgn0033851 -0.4 FBgn0036301 -1.62 FBgn0029977 0.76 FBgn0004841 0.73 FBgn0032801 -1 FBgn0034468 2.27 FBgn0003656 0.56 FBgn0085310 1.2 FBgn0052485 -1.6 FBgn0021818 -7.41 FBgn0039687 1.16 FBgn0260985 -0.47 FBgn0031697 1.2 FBgn0052528 -0.69 FBgn0038465 0.76 FBgn0032382 -1.25 FBgn0033124 -0.88 FBgn0034660 -1.5 FBgn0036397 0.26 FBgn0032442 -1.44 FBgn0032593 0.78 FBgn0050037 0.57 FBgn0034412 -1.17 FBgn0038693 0.66 FBgn0028482 0.28 FBgn0043025 0.42 FBgn0037172 -0.61 FBgn0039487 -1.2 FBgn0033667 -0.67 FBgn0004629 -0.35 FBgn0031474 0.28 FBgn0038788 0.01 FBgn0029514 0.41 FBgn0052221 0.84 FBgn0052177 0.79 FBgn0031288 1.18 FBgn0030435 -0.47 FBgn0038134 -0.52 FBgn0033427 -0.94 FBgn0038984 -0.96 FBgn0030148 0.32 FBgn0014850 0.22 FBgn0034046 -0.77 FBgn0037519 0.44 FBgn0032709 1.67 FBgn0050169 1.17 FBgn0038225 -0.61 FBgn0026411 0.67 FBgn0033453 2.83 FBgn0038950 0.68 FBgn0029970 1.54 FBgn0039697 -0.89 FBgn0035186 0.8 FBgn0013467 1.86 FBgn0015582 1.3 FBgn0022213 -1.61 FBgn0030001 1.04 FBgn0027291 -0.27 FBgn0034496 0.77 FBgn0051051 1.86 FBgn0036501 -1.38 FBgn0037613 1.21 FBgn0085217 0.35 FBgn0004698 1.16 FBgn0036551 1.27 FBgn0051858 0.75 FBgn0013746 1.42 FBgn0259224 1.08 FBgn0051072 1.21 FBgn0015075 0.24 FBgn0010520 0.93 FBgn0043070 0.96 FBgn0034231 -0.46 FBgn0040031 2.38 FBgn0050052 0.64 FBgn0030631 0.14 FBgn0035084 -0.43 FBgn0034560 0.4 FBgn0036203 0.56 FBgn0043854 2.41 FBgn0015247 1.19 FBgn0051785 -0.97 FBgn0035571 0.68 FBgn0039776 0.61 FBgn0011016 -1.13 FBgn0039882 -0.55 FBgn0033439 -0.32 FBgn0041238 0.3 FBgn0039451 1.68 FBgn0036382 -0.61 FBgn0041246 0.28 FBgn0035216 -0.25 FBgn0004622 0.37 FBgn0035371 -0.43 FBgn0261267 -0.93 FBgn0030006 1.02 FBgn0034033 1.37 FBgn0036320 -0.33 FBgn0039099 0.83 FBgn0011596 0.45 FBgn0033296 -0.76 FBgn0040020 1.26 FBgn0026181 -0.66 FBgn0040795 -0.33 FBgn0053208 -1.63 FBgn0002856 -0.6 FBgn0025335 3.88 FBgn0037338 0.87 FBgn0032125 0.36 FBgn0031299 0.71 FBgn0038095 2.33 FBgn0038768 1.83 FBgn0011832 1.17 FBgn0051262 -1.15 FBgn0037718 -0.71 FBgn0036908 1.2 FBgn0031157 1.84 FBgn0023091 1.18 FBgn0038865 -1.9 FBgn0032453 0.73 FBgn0051030 0.64 FBgn0003372 0.9 FBgn0051973 -1.67 FBgn0031602 -0.55 FBgn0039690 0.57 FBgn0034366 1.24 FBgn0038740 0.9 FBgn0034727 0.32 FBgn0085427 -0.61 FBgn0033605 0.61 FBgn0033721 0.44 FBgn0039582 -0.76 FBgn0002863 0.51 FBgn0034206 -1.49 FBgn0033579 0.89 FBgn0051081 -0.83 FBgn0016059 0.66 FBgn0011742 -0.99 FBgn0040362 -0.31 FBgn0004228 -1.09 FBgn0034284 0.42 FBgn0002973 0.2 FBgn0039149 0.33 FBgn0030246 0.4 FBgn0034859 -0.34 FBgn0036059 -0.24 FBgn0030244 1.09 FBgn0001941 0.41 FBgn0033871 -0.38 FBgn0020412 1.96 FBgn0033449 1.31 FBgn0045468 -0.17 FBgn0004512 -1.11 FBgn0037270 -2.75 FBgn0029996 0.68 FBgn0037996 0.35 FBgn0024989 1.29 FBgn0023506 0.58 FBgn0003046 0.61 FBgn0003882 1.68 FBgn0038814 -0.89 FBgn0261394 -1.08 FBgn0050062 -1.04 FBgn0037473 1.42 FBgn0050432 0.88 FBgn0032072 0.29 FBgn0058053 -1.14 FBgn0039406 -0.31 FBgn0013983 -0.44 FBgn0032642 -0.41 FBgn0041100 0.35 FBgn0051606 -0.48 FBgn0085362 -0.88 FBgn0037750 0.6 FBgn0039213 0.27 FBgn0034485 -0.64 FBgn0037117 0.67 FBgn0010303 1.54 FBgn0023179 1.44 FBgn0038565 0.37 FBgn0030808 -1.49 FBgn0036926 0.49 FBgn0031772 2 FBgn0013531 -0.89 FBgn0032835 -0.53 FBgn0036258 0.52 FBgn0036192 0.42 FBgn0001235 -0.3 FBgn0036686 -1.48 FBgn0034659 0.44 FBgn0045443 0.87 FBgn0035768 0.32 FBgn0024998 -1.54 FBgn0032649 0.34 FBgn0031536 -1.47 FBgn0036641 -0.51 FBgn0025740 -0.35 FBgn0002306 0.37 FBgn0028961 1.45 FBgn0004924 -2.08 FBgn0025558 0.8 FBgn0037046 -0.83 FBgn0031108 -1.45 FBgn0030261 1.29 FBgn0033095 -0.45 FBgn0038124 -0.05 FBgn0005671 -1.09 FBgn0051803 1.41 FBgn0041181 1.8 FBgn0014018 2.58 FBgn0035103 -0.89 FBgn0013548 2.81 FBgn0051010 -1.05 FBgn0050424 -0.78 FBgn0030207 0.67 FBgn0028532 0.16 FBgn0261479 -0.24 FBgn0039703 0.97 FBgn0005391 0.22 FBgn0022770 -0.22 FBgn0028837 1.43 FBgn0027608 1.62 FBgn0034599 -1.01 FBgn0034459 0.92 FBgn0027081 -0.88 FBgn0039177 -0.26 FBgn0003683 -0.48 FBgn0036967 0.87 FBgn0035612 1.72 FBgn0054011 -0.31 FBgn0038008 0.98 FBgn0053461 0.28 FBgn0035132 0.69 FBgn0031430 1.33 FBgn0052160 1.17 FBgn0031045 -0.77 FBgn0036906 0.63 FBgn0028880 1.18 FBgn0031119 0.7 FBgn0033728 2.08 FBgn0003977 -0.79 FBgn0030852 -0.43 FBgn0036892 -0.54 FBgn0037024 -0.16 FBgn0011723 -0.66 FBgn0028408 0.54 FBgn0035875 -0.29 FBgn0040743 0.7 FBgn0030528 1.2 FBgn0038944 1.24 FBgn0027090 1.38 FBgn0031580 -0.77 FBgn0051226 -1.59 FBgn0033526 0.58 FBgn0037816 -1.5 FBgn0053527 0.28 FBgn0036015 0.6 FBgn0002780 0.72 FBgn0038079 0.28 FBgn0031558 1.05 FBgn0051221 0.89 FBgn0034758 0.6 FBgn0038527 1.06 FBgn0037737 0.21 FBgn0031830 -0.83 FBgn0034073 -0.53 FBgn0053260 -1.37 FBgn0030701 0.7 FBgn0038452 0.31 FBgn0038083 2 FBgn0036888 0.46 FBgn0034194 1.28 FBgn0039680 -0.71 FBgn0029963 0.49 FBgn0054032 -1.39 FBgn0032848 -0.87 FBgn0032913 1.1 FBgn0035587 0.68 FBgn0028292 -0.53 FBgn0032131 -0.77 FBgn0029095 -0.71 FBgn0032235 -1.12 FBgn0031855 0.23 FBgn0037031 1.99 FBgn0039531 1.16 FBgn0025571 1.22 FBgn0039140 -0.52 FBgn0035546 0.52 FBgn0035951 0.02 FBgn0035816 -0.74 FBgn0044051 0.79 FBgn0035158 -0.45 FBgn0036343 0.58 FBgn0051048 -0.91 FBgn0031574 -0.79 FBgn0032248 0.65 FBgn0040730 -1.61 FBgn0035673 0.44 FBgn0015905 0.1 FBgn0039969 0.55 FBgn0034507 0.35 FBgn0012058 -4.71 FBgn0032433 -0.56 FBgn0085294 -0.45 FBgn0004510 -0.61 FBgn0037004 0.66 FBgn0003965 -1.12 FBgn0002561 -0.39 FBgn0085409 1.18 FBgn0032372 1.67 FBgn0033352 0.52 FBgn0000283 -1.55 FBgn0002924 -1.14 FBgn0260964 0.54 FBgn0051201 -1.11 FBgn0250820 1.32 FBgn0000303 -1.73 FBgn0033359 0.8 FBgn0028474 0.49 FBgn0034495 -0.6 FBgn0025631 1.09 FBgn0002989 0.72 FBgn0031495 0.34 FBgn0033756 1.52 FBgn0052683 -0.62 FBgn0259824 1.48 FBgn0035777 0.34 FBgn0027796 0.27 FBgn0028872 1.34 FBgn0032400 -5.65 FBgn0036290 -0.14 FBgn0033000 -0.82 FBgn0260742 1.39 FBgn0260962 -2.05 FBgn0039592 -0.12 FBgn0028496 0.43 FBgn0035234 -0.63 FBgn0261675 0.45 FBgn0052305 -0.07 FBgn0034897 -0.44 FBgn0035423 1.3 FBgn0000392 -0.39 FBgn0033710 -1.27 FBgn0051823 -0.47 FBgn0033718 0.29 FBgn0004400 -0.78 FBgn0052409 -0.52 FBgn0000405 3.18 FBgn0053307 1.17 FBgn0030100 1.03 FBgn0029714 -0.03 FBgn0031318 1.2 FBgn0051345 1.9 FBgn0037902 0.94 FBgn0259678 0.78 FBgn0038716 1.15 FBgn0030485 -0.74 FBgn0045843 -0.27 FBgn0039820 1.08 FBgn0030803 -0.7 FBgn0261682 -1.13 FBgn0015550 -1.97 FBgn0031725 1.12 FBgn0000615 0.33 FBgn0036973 -0.23 FBgn0032315 -0.7 FBgn0051019 -0.98 FBgn0053265 1.15 FBgn0039417 1.33 FBgn0035258 -0.74 FBgn0030158 -1.83 FBgn0010406 -0.78 FBgn0033627 0.75 FBgn0016794 -0.18 FBgn0036730 -1.2 FBgn0017545 -3.58 FBgn0010287 1.23 FBgn0031945 0.94 FBgn0028645 0.54 FBgn0040396 0.94 FBgn0261564 1.5 FBgn0050271 1.23 FBgn0026777 0.45 FBgn0000339 -0.99 FBgn0000229 1 FBgn0034716 -0.34 FBgn0039054 -1.2 FBgn0031542 0.76 FBgn0035233 0.53 FBgn0037086 0.3 FBgn0010015 0.25 FBgn0016930 1.24 FBgn0031195 0.72 FBgn0039461 -0.55 FBgn0087013 -2.35 FBgn0034405 0.97 FBgn0011284 -2.92 FBgn0039371 1.65 FBgn0037759 0.99 FBgn0001206 0.93 FBgn0037521 1.08 FBgn0050484 -0.46 FBgn0036784 1.21 FBgn0050268 -1.23 FBgn0033376 -0.91 FBgn0053013 -0.6 FBgn0040687 1.15 FBgn0050491 -1.65 FBgn0025457 -1.42 FBgn0261458 1.01 FBgn0261649 -0.72 FBgn0038404 9.19 FBgn0033049 -0.67 FBgn0053189 1.2 FBgn0000042 -1.67 FBgn0039170 -0.86 FBgn0003889 1.4 FBgn0031256 -1.46 FBgn0030455 0.55 FBgn0037124 -0.41 FBgn0032814 0.72 FBgn0028539 0.95 FBgn0053289 0.78 FBgn0085446 1.01 FBgn0032304 0.6 FBgn0031405 1.16 FBgn0034706 0.82 FBgn0020762 0.39 FBgn0036536 1.26 FBgn0031163 0.03 FBgn0030360 1.81 FBgn0036828 3.09 FBgn0035499 -0.95 FBgn0030935 1.03 FBgn0036999 0.34 FBgn0033763 -0.35 FBgn0040078 -2.88 FBgn0017549 -0.53 FBgn0052064 1.04 FBgn0034737 0.82 FBgn0032967 0.28 FBgn0261401 1.21 FBgn0030960 -0.23 FBgn0038369 -0.54 FBgn0030599 0.5 FBgn0029834 0.59 FBgn0015391 1.71 FBgn0050373 1.26 FBgn0038148 0.55 FBgn0023181 0.34 FBgn0028988 -2.3 FBgn0030613 0.57 FBgn0001105 1.16 FBgn0033639 0.31 FBgn0038334 -1.43 FBgn0261380 -0.1 FBgn0031746 0.36 FBgn0030389 -0.14 FBgn0086910 0.39 FBgn0035227 -0.95 FBgn0085290 -0.32 FBgn0031054 1.4 FBgn0037917 0.79 FBgn0051407 0.29 FBgn0031918 1.66 FBgn0026563 -0.73 FBgn0019990 0.34 FBgn0031733 1.79 FBgn0030321 0.69 FBgn0035262 0.61 FBgn0037094 -1.35 FBgn0033076 -1.8 FBgn0038460 -0.69 FBgn0053770 -0.27 FBgn0037809 -1.05 FBgn0038593 -0.68 FBgn0261109 -0.27 FBgn0004654 0.25 FBgn0032615 0.44 FBgn0050177 -1.19 FBgn0031110 -0.87 FBgn0038248 -0.21 FBgn0053128 -1.88 FBgn0030297 -0.53 FBgn0010421 -0.39 FBgn0037943 0.63 FBgn0036717 0.85 FBgn0029947 -0.56 FBgn0037781 -0.84 FBgn0029580 -0.21 FBgn0039462 0.7 FBgn0034314 0.25 FBgn0037076 0.52 FBgn0040890 0.84 FBgn0039709 0.93 FBgn0261641 -2.26 FBgn0032554 1.21 FBgn0020236 -0.39 FBgn0038013 1.29 FBgn0032682 0.96 FBgn0030696 -1.45 FBgn0051198 1.31 FBgn0037573 -3.15 FBgn0039563 -0.81 FBgn0261617 3.64 FBgn0039474 0.6 FBgn0034886 0.26 FBgn0035390 1.52 FBgn0038837 1.03 FBgn0050281 -1.7 FBgn0040385 -0.26 FBgn0031684 -1.26 FBgn0010241 -1.1 FBgn0052056 0.42 FBgn0016122 1.38 FBgn0000541 0.68 FBgn0040892 0.7 FBgn0053552 0.53 FBgn0036790 1.11 FBgn0036090 0.91 FBgn0039536 0.92 FBgn0032822 0.73 FBgn0030969 2.38 FBgn0039050 0.47 FBgn0034693 1.11 FBgn0036368 0.17 FBgn0052185 -0.45 FBgn0040929 0.36 FBgn0016061 0.53 FBgn0052201 0.75 FBgn0002775 -0.33 FBgn0041156 0.91 FBgn0038052 -0.3 FBgn0050359 0.36 FBgn0037327 2.51 FBgn0261549 0.62 FBgn0030810 0.78 FBgn0035069 -0.67 FBgn0037986 0.67 FBgn0029693 0.8 FBgn0035996 -0.96 FBgn0028509 0.59 FBgn0046999 0.26 FBgn0038725 -0.87 FBgn0034743 -2.45 FBgn0034183 0.28 FBgn0035838 1.43 FBgn0035400 0.87 FBgn0033985 1.22 FBgn0032018 0.69 FBgn0027866 0.56 FBgn0004956 1.14 FBgn0026250 -2.34 FBgn0027578 0.56 FBgn0034614 -0.53 FBgn0037885 -1.1 FBgn0003334 0.47 FBgn0017430 -1.17 FBgn0044323 -2.34 FBgn0000356 1.22 FBgn0004179 -0.82 FBgn0083942 0.39 FBgn0002566 -0.59 FBgn0039356 0.76 FBgn0032480 -1.27 FBgn0034063 1.5 FBgn0025383 0.65 FBgn0038078 -0.27 FBgn0053113 0.92 FBgn0031718 -0.69 FBgn0000464 1.17 FBgn0033934 0.43 FBgn0085246 1.06 FBgn0003733 0.71 FBgn0034788 1.77 FBgn0086361 0.58 FBgn0034612 0.67 FBgn0052115 -0.98 FBgn0037601 -0.56 FBgn0010408 -3.71 FBgn0035770 0.44 FBgn0051281 0.54 FBgn0039850 -0.82 FBgn0028943 -0.28 FBgn0033128 -0.5 FBgn0052279 -0.61 FBgn0250732 -1.24 FBgn0011361 -0.23 FBgn0025741 1.16 FBgn0040608 -0.16 FBgn0002590 -1.9 FBgn0033457 0.72 FBgn0029167 0.7 FBgn0030532 -1.1 FBgn0040390 1.47 FBgn0033202 1.21 FBgn0024732 0.58 FBgn0031951 -0.38 FBgn0261387 -0.13 FBgn0051678 -1.11 FBgn0033542 0.53 FBgn0016977 1.29 FBgn0038028 0.1 FBgn0034920 -1.61 FBgn0029828 0.28 FBgn0038611 -0.35 FBgn0036638 0.49 FBgn0032849 -1.7 FBgn0003862 2.23 FBgn0001970 -0.97 FBgn0029800 -0.97 FBgn0038067 -0.59 FBgn0032180 -1.34 FBgn0031526 -0.42 FBgn0015338 -1.29 FBgn0026439 -0.66 FBgn0023540 0.6 FBgn0028707 -0.64 FBgn0024975 1.01 FBgn0035300 0.74 FBgn0037038 -0.83 FBgn0010387 0.26 FBgn0051547 0.85 FBgn0038943 -1.08 FBgn0001983 -1.09 FBgn0052591 -0.65 FBgn0034131 0.76 FBgn0016984 -1.45 FBgn0034731 -0.09 FBgn0032773 1.76 FBgn0034877 -0.78 FBgn0035575 0.17 FBgn0031753 0.57 FBgn0020392 0.27 FBgn0033962 0.62 FBgn0038100 0.42 FBgn0046698 -0.75 FBgn0051988 1.63 FBgn0036928 0.48 FBgn0050479 -0.28 FBgn0026430 -0.72 FBgn0029170 1.36 FBgn0038545 -1.57 FBgn0031065 -0.19 FBgn0053278 -0.37 FBgn0052248 -0.77 FBgn0013334 2.52 FBgn0031970 0.66 FBgn0033972 0.25 FBgn0039120 -1.84 FBgn0259171 -0.69 FBgn0038888 0.34 FBgn0032914 0.67 FBgn0030087 1.08 FBgn0053121 0.56 FBgn0030597 -0.71 FBgn0029854 1.6 FBgn0036942 -0.43 FBgn0028997 -0.77 FBgn0031630 0.74 FBgn0053476 1.2 FBgn0051109 -0.69 FBgn0032938 0.88 FBgn0034793 0.28 FBgn0024558 1.1 FBgn0040491 0.47 FBgn0052652 -1.16 FBgn0037391 -0.65 FBgn0032477 -0.41 FBgn0025684 1.2 FBgn0005590 -0.77 FBgn0038753 0.5 FBgn0034274 -0.41 FBgn0032082 -0.34 FBgn0037654 0.42 FBgn0038217 1.19 FBgn0037661 1.91 FBgn0039335 0.66 FBgn0043576 0.68 FBgn0032654 1.25 FBgn0024957 1.55 FBgn0042135 0.75 FBgn0051028 -0.29 FBgn0034638 -0.69 FBgn0051501 -0.81 FBgn0045770 1.87 FBgn0038828 0.58 FBgn0035521 -0.08 FBgn0085276 -0.83 FBgn0050369 -1.22 FBgn0030742 -1.14 FBgn0260794 1.25 FBgn0033547 -0.71 FBgn0039839 0.36 FBgn0259743 0.59 FBgn0031720 -1.24 FBgn0030356 0.9 FBgn0031437 -1.01 FBgn0033265 0.16 FBgn0015781 -0.24 FBgn0004832 -0.56 FBgn0034117 -1.15 FBgn0086656 -2.08 FBgn0001084 0.45 FBgn0061476 -0.26 FBgn0033979 -0.55 FBgn0020443 -0.8 FBgn0039419 -0.59 FBgn0031985 -1.04 FBgn0032987 -4.18 FBgn0031779 -0.58 FBgn0038332 1.92 FBgn0029174 0.16 FBgn0032296 -1.69 FBgn0030801 -1.17 FBgn0051102 0.89 FBgn0027111 0.45 FBgn0034835 -0.14 FBgn0052062 -0.46 FBgn0259744 -0.62 FBgn0051924 1.1 FBgn0035600 0.54 FBgn0053214 -0.57 FBgn0019947 -0.42 FBgn0032901 3.39 FBgn0039386 0.48 FBgn0027654 1.02 FBgn0037332 -1.14 FBgn0065108 0.89 FBgn0036842 0.48 FBgn0013949 1.42 FBgn0030780 0.5 FBgn0035374 0.45 FBgn0015331 1.44 FBgn0040765 -0.42 FBgn0030678 0.67 FBgn0031548 1.21 FBgn0039160 0.98 FBgn0031086 0.97 FBgn0029812 0.53 FBgn0053517 -0.67 FBgn0066365 1.39 FBgn0037892 0.14 FBgn0031248 -0.42 FBgn0034084 1.94 FBgn0032398 0.95 FBgn0037770 2.06 FBgn0041780 -0.71 FBgn0032435 0.34 FBgn0003449 0.95 FBgn0037506 0.76 FBgn0052985 0.03 FBgn0052793 0.75 FBgn0015240 -1.45 FBgn0038203 0.86 FBgn0031005 -0.46 FBgn0261786 0.88 FBgn0038484 -0.87 FBgn0036279 -0.63 FBgn0032472 1.11 FBgn0000635 1.98 FBgn0041004 1.11 FBgn0038917 0.62 FBgn0051752 0.66 FBgn0031654 0.86 FBgn0035143 1.65 FBgn0037475 -1.8 FBgn0039631 0.33 FBgn0027508 -0.71 FBgn0034029 -1.43 FBgn0031792 1.91 FBgn0033773 0.26 FBgn0052368 -0.6 FBgn0040816 0.82 FBgn0039326 0.22 FBgn0031844 -1.37 FBgn0037427 0.83 FBgn0031444 1.37 FBgn0031818 -0.63 FBgn0034427 0.71 FBgn0053702 -0.42 FBgn0050194 -0.91 FBgn0046689 0.85 FBgn0038486 0.55 FBgn0037310 -0.44 FBgn0031716 0.95 FBgn0051118 1.59 FBgn0250850 0.52 FBgn0031617 -1.02 FBgn0259937 -1.17 FBgn0036566 0.82 FBgn0041171 2.22 FBgn0031957 0.05 FBgn0035781 0.48 FBgn0085379 -0.68 FBgn0032679 -0.84 FBgn0015011 0.62 FBgn0052821 0.29 FBgn0024947 -1.2 FBgn0051099 -0.51 FBgn0027524 -0.75 FBgn0035252 0.56 FBgn0046323 -1.11 FBgn0025874 -0.44 FBgn0050121 -1.64 FBgn0022772 -1.08 FBgn0039117 -1.9 FBgn0038380 -0.27 FBgn0036485 -0.08 FBgn0034978 -0.38 FBgn0039154 1.32 FBgn0040942 0.48 FBgn0052806 -0.98 FBgn0031800 0.59 FBgn0030539 1.02 FBgn0039832 -1.11 FBgn0039078 0.7 FBgn0003887 -1.79 FBgn0034407 0.86 FBgn0036876 -0.58 FBgn0033464 0.46 FBgn0032965 0.54 FBgn0035761 0.77 FBgn0037608 0.74 FBgn0052075 -0.84 FBgn0036337 1.71 FBgn0039104 -1.17 FBgn0034374 -0.86 FBgn0032189 -0.86 FBgn0085468 0.37 FBgn0015799 1.24 FBgn0030706 -0.23 FBgn0003114 0.53 FBgn0037342 0.89 FBgn0030056 0.87 FBgn0086358 0.48 FBgn0015008 0.17 FBgn0260400 1.46 FBgn0003513 0.49 FBgn0052255 -0.43 FBgn0027363 -0.36 FBgn0031399 0.82 FBgn0053287 0.88 FBgn0039227 -0.52 FBgn0033371 -0.34 FBgn0030412 1.28 FBgn0030757 -0.31 FBgn0035755 0.77 FBgn0035165 0.55 FBgn0030684 0.3 FBgn0031781 -0.14 FBgn0031514 0.43 FBgn0028544 -0.19 FBgn0033860 1.08 FBgn0028693 -1.62 FBgn0086707 1.31 FBgn0032200 0.54 FBgn0031227 0.36 FBgn0028421 0.23 FBgn0035688 -0.79 FBgn0039485 -0.31 FBgn0031106 0.15 FBgn0031497 0.77 FBgn0031254 1.31 FBgn0034908 2.24 FBgn0035541 -0.41 FBgn0032101 0.34 FBgn0036479 -0.24 FBgn0035989 -0.68 FBgn0031663 -0.6 FBgn0039041 1.72 FBgn0029002 0.16 FBgn0039707 1.23 FBgn0033925 1.07 FBgn0020370 -0.91 FBgn0033286 -0.21 FBgn0023441 0.51 FBgn0033324 0.42 FBgn0035199 0.97 FBgn0250839 -1.47 FBgn0053098 0.56 FBgn0038415 1.17 FBgn0086372 1.1 FBgn0052037 0.53 FBgn0037463 1.06 FBgn0036812 -0.02 FBgn0024361 -0.28 FBgn0003011 0.32 FBgn0037498 -0.51 FBgn0052982 0.81 FBgn0260005 2.16 FBgn0040534 -0.01 FBgn0260446 1.26 FBgn0038860 0.56 FBgn0013720 0.73 FBgn0086675 -1.69 FBgn0031286 0.72 FBgn0010590 -3.54 FBgn0034971 0.93 FBgn0020626 0.96 FBgn0031869 -0.68 FBgn0035779 0.39 FBgn0053459 0.29 FBgn0035290 0.54 FBgn0035733 0.5 FBgn0027602 -0.52 FBgn0034748 -0.65 FBgn0016119 -0.95 FBgn0034505 -0.17 FBgn0037184 -0.49 FBgn0027518 -1.76 FBgn0034153 0.77 FBgn0036726 -0.75 FBgn0037643 1.2 FBgn0032636 -1.56 FBgn0053548 -0.43 FBgn0052372 0.69 FBgn0036294 0.95 FBgn0052971 -1.23 FBgn0031681 0.43 FBgn0034176 0.82 FBgn0035645 -0.21 FBgn0261245 -0.59 FBgn0037703 0.63 FBgn0029897 -3.53 FBgn0033485 0.21 FBgn0039184 -0.61 FBgn0040487 1.1 FBgn0039595 0.56 FBgn0041244 -1.31 FBgn0051948 0.51 FBgn0051053 -0.45 FBgn0036160 0.49 FBgn0033047 1.15 FBgn0016970 0.54 FBgn0034461 -0.22 FBgn0261090 -1.46 FBgn0030749 -1.07 FBgn0036488 -0.82 FBgn0046756 1.08 FBgn0036348 0.78 FBgn0037860 0.8 FBgn0011812 -1.01 FBgn0261551 -1.11 FBgn0042112 0.25 FBgn0004888 -1.2 FBgn0052081 0.4 FBgn0032361 0.51 FBgn0035695 1.48 FBgn0051909 -2.05 FBgn0041147 -0.67 FBgn0050404 1.06 FBgn0033397 0.66 FBgn0040717 0.17 FBgn0050050 -0.19 FBgn0028744 0.44 FBgn0039071 2.13 FBgn0052833 0.33 FBgn0259785 -2.57 FBgn0034538 -0.7 FBgn0030519 -0.63 FBgn0047135 -0.76 FBgn0037540 1.29 FBgn0027376 -0.34 FBgn0004363 -0.38 FBgn0039737 -1.81 FBgn0034472 -0.41 FBgn0036858 -1.23 FBgn0052379 0.13 FBgn0038821 1.25 FBgn0038020 0.99 FBgn0051862 -1.08 FBgn0003068 0.71 FBgn0010812 0.51 FBgn0015572 0.15 FBgn0000153 0.53 FBgn0032391 -0.54 FBgn0030996 -0.21 FBgn0033019 -2.08 FBgn0259178 0.85 FBgn0085197 -0.81 FBgn0029969 -0.27 FBgn0033278 -0.98 FBgn0029756 0.93 FBgn0051133 -0.43 FBgn0029765 0.89 FBgn0031535 1.25 FBgn0054047 1.35 FBgn0087005 -1.16 FBgn0038578 -1.04 FBgn0030028 0.33 FBgn0030890 0.93 FBgn0050094 -0.42 FBgn0037223 1.32 FBgn0032522 0.36 FBgn0026738 -1.18 FBgn0038700 1.24 FBgn0027571 -3.02 FBgn0040227 -2.31 FBgn0062442 1.51 FBgn0003277 -2.47 FBgn0040372 0.24 FBgn0031888 1.47 FBgn0035964 0.29 FBgn0015618 1.58 FBgn0035056 0.91 FBgn0036288 -2.16 FBgn0086679 0.93 FBgn0028942 1.16 FBgn0005626 -3.08 FBgn0037358 -1.39 FBgn0002772 0.87 FBgn0011693 1.25 FBgn0031146 -0.52 FBgn0001978 -1.4 FBgn0003140 0.9 FBgn0038180 -1.17 FBgn0031450 0.08 FBgn0040465 -0.81 FBgn0033134 -0.36 FBgn0002524 -1.47 FBgn0260474 1.83 FBgn0039048 0.79 FBgn0051619 0.53 FBgn0033990 0.51 FBgn0010770 -0.46 FBgn0040950 1.64 FBgn0261530 0.98 FBgn0034396 -0.59 FBgn0040257 0.58 FBgn0261534 1.08 FBgn0010044 -2.33 FBgn0036680 0.7 FBgn0261585 -0.58 FBgn0033943 -0.57 FBgn0040505 -0.73 FBgn0037121 -2.07 FBgn0031886 -0.64 FBgn0030398 1.74 FBgn0032451 0.7 FBgn0040091 -1.1 FBgn0050046 -0.63 FBgn0036422 1.13 FBgn0259729 -1.31 FBgn0260753 1.21 FBgn0010223 1.27 FBgn0025185 0.46 FBgn0023167 -0.41 FBgn0035626 1.21 FBgn0010352 1.03 FBgn0040571 -0.47 FBgn0031934 -0.39 FBgn0038516 0.27 FBgn0052667 0.52 FBgn0008635 -4.46 FBgn0038654 0.47 FBgn0032095 0.4 FBgn0000258 0.25 FBgn0038673 0.22 FBgn0030941 -0.38 FBgn0039679 0.49 FBgn0260764 -0.85 FBgn0030904 -2.28 FBgn0033935 0.68 FBgn0030773 -0.64 FBgn0038385 0.37 FBgn0015218 -2.62 FBgn0039212 -0.74 FBgn0034430 -1.05 FBgn0029723 -0.31 FBgn0033027 0.22 FBgn0033473 0.47 FBgn0030582 -0.51 FBgn0032243 -0.59 FBgn0033680 0.24 FBgn0014340 -0.64 FBgn0020309 0.68 FBgn0035855 0.19 FBgn0002723 0.61 FBgn0029712 0.11 FBgn0051739 0.36 FBgn0032533 0.56 FBgn0045495 1.02 FBgn0085400 0.5 FBgn0033101 1.54 FBgn0003256 -1.82 FBgn0033061 1.16 FBgn0036159 0.57 FBgn0050460 -0.7 FBgn0030218 -0.78 FBgn0005613 -1.07 FBgn0017579 -4.19 FBgn0050345 0.47 FBgn0031829 -0.94 FBgn0046886 -1.03 FBgn0032354 0.49 FBgn0260226 -0.33 FBgn0038881 0.83 FBgn0039670 0.79 FBgn0033917 1.32 FBgn0042098 1.38 FBgn0036316 -0.62 FBgn0030035 0.65 FBgn0030186 0.7 FBgn0031130 0.34 FBgn0259210 3.19 FBgn0051693 1.48 FBgn0021979 0.72 FBgn0032033 0.43 FBgn0000036 -0.51 FBgn0083963 0.71 FBgn0051815 -0.57 FBgn0030789 -0.19 FBgn0038342 -0.5 FBgn0039193 -0.83 FBgn0260856 0.01 FBgn0039651 1.18 FBgn0032026 0.23 FBgn0001114 0.47 FBgn0005355 0.91 FBgn0261502 1.44 FBgn0086444 -0.74 FBgn0053533 0.27 FBgn0033951 -0.36 FBgn0031375 0.89 FBgn0037199 0.75 FBgn0250870 -1 FBgn0022786 0.37 FBgn0039812 -2.2 FBgn0032120 0.39 FBgn0043539 0.81 FBgn0039727 1.3 FBgn0086855 -1.54 FBgn0026317 0.81 FBgn0024913 0.76 FBgn0001313 0.11 FBgn0035598 -1.38 FBgn0028382 -0.52 FBgn0037899 -2.25 FBgn0038507 1.07 FBgn0037490 -0.58 FBgn0033950 0.33 FBgn0035792 0.69 FBgn0250755 -1.36 FBgn0051742 0.61 FBgn0051390 -0.24 FBgn0029906 1.06 FBgn0035510 1.13 FBgn0053054 -1.04 FBgn0025802 -0.76 FBgn0034763 -0.86 FBgn0028789 0.62 FBgn0033113 0.73 FBgn0051191 1.01 FBgn0037371 -0.88 FBgn0038299 0.47 FBgn0032003 0.68 FBgn0003710 0.55 FBgn0028467 -0.31 FBgn0014020 -3.61 FBgn0040697 0.92 FBgn0033519 0.5 FBgn0033674 0.78 FBgn0014380 2.96 FBgn0023520 -0.82 FBgn0040255 1.04 FBgn0029930 1.52 FBgn0259188 0.93 FBgn0010774 2.1 FBgn0024196 0.82 FBgn0025716 -4.09 FBgn0051639 -0.46 FBgn0032015 0.09 FBgn0035847 -0.31 FBgn0038280 0.91 FBgn0037743 0.56 FBgn0038581 0.56 FBgn0032808 1.31 FBgn0025825 -1.31 FBgn0066293 -0.51 FBgn0001991 1.98 FBgn0035534 0.64 FBgn0031977 -0.38 FBgn0037535 -0.4 FBgn0034326 0.28 FBgn0259967 -0.92 FBgn0036584 -0.71 FBgn0028675 -0.24 FBgn0033341 -2.04 FBgn0036663 0.68 FBgn0031149 1.1 FBgn0062413 0.31 FBgn0026392 -1.6 FBgn0034662 1.01 FBgn0011826 1.59 FBgn0031197 0.24 FBgn0033033 0.57 FBgn0052438 -0.81 FBgn0000150 0.34 FBgn0026174 0.68 FBgn0041336 -0.35 FBgn0039321 0.35 FBgn0030499 -1.6 FBgn0033166 -0.86 FBgn0000497 0.36 FBgn0037764 0.59 FBgn0052660 -1.23 FBgn0036421 1.11 FBgn0032787 0.83 FBgn0259985 1.1 FBgn0039302 1.15 FBgn0029504 2.72 FBgn0261561 -1.27 FBgn0004575 -1.39 FBgn0000382 0.34 FBgn0035901 -0.17 FBgn0004390 0.69 FBgn0037442 0.35 FBgn0052203 -1.22 FBgn0032266 -1.12 FBgn0035309 0.57 FBgn0051992 -0.64 FBgn0034514 0.69 FBgn0050391 -0.47 FBgn0033387 0.58 FBgn0028373 1.98 FBgn0034263 -0.09 FBgn0010473 0.73 FBgn0031813 1.16 FBgn0037873 -3.66 FBgn0052602 -0.59 FBgn0033141 -1.16 FBgn0040780 -0.99 FBgn0261085 0.76 FBgn0040923 -0.65 FBgn0040347 0.89 FBgn0034937 -1.23 FBgn0037093 -0.1 FBgn0041622 0.93 FBgn0038439 0.33 FBgn0037761 -1.4 FBgn0034165 0.6 FBgn0029920 1.62 FBgn0020306 -4.81 FBgn0040904 0.59 FBgn0000473 4.11 FBgn0033884 -0.3 FBgn0039252 0.9 FBgn0034443 0.93 FBgn0030669 0.7 FBgn0040905 0.13 FBgn0040871 0.6 FBgn0039795 -1.29 FBgn0011769 -0.76 FBgn0037051 -0.85 FBgn0036757 1.14 FBgn0039273 0.09 FBgn0037844 1.42 FBgn0030574 -0.78 FBgn0038931 0.85 FBgn0004901 1.19 FBgn0036750 -1.15 FBgn0031442 1.04 FBgn0035426 0.8 FBgn0052553 0.49 FBgn0259164 1.2 FBgn0036417 0.43 FBgn0024510 1.26 FBgn0038136 1.6 FBgn0032251 1.55 FBgn0036882 1.34 FBgn0036745 1.12 FBgn0037726 0.96 FBgn0050417 -1.32 FBgn0058191 -0.36 FBgn0038194 0.25 FBgn0026160 1.1 FBgn0039347 0.83 FBgn0085404 0.93 FBgn0086348 -0.29 FBgn0053003 -1 FBgn0261630 -0.8 FBgn0051036 0.1 FBgn0260960 1.76 FBgn0039083 0.32 FBgn0035678 -1.19 FBgn0035578 0.64 FBgn0027330 -1.71 FBgn0039452 -0.42 FBgn0032020 -1.42 FBgn0052801 0.64 FBgn0033853 0.34 FBgn0034996 -0.45 FBgn0004181 0.84 FBgn0013750 -0.72 FBgn0034096 -0.93 FBgn0033429 0.49 FBgn0030055 0.67 FBgn0035241 -0.5 FBgn0031874 -0.52 FBgn0000617 1.72 FBgn0030525 -0.8 FBgn0033122 1.2 FBgn0034965 -0.97 FBgn0040793 -1.93 FBgn0044047 0.45 FBgn0053267 0.82 FBgn0053257 0.48 FBgn0036519 -1.07 FBgn0010482 0.57 FBgn0051445 -0.25 FBgn0000489 -0.73 FBgn0051876 0.86 FBgn0033412 0.29 FBgn0029688 -1.96 FBgn0085435 0.6 FBgn0031857 -0.97 FBgn0050145 -0.86 FBgn0034467 1.12 FBgn0035347 0.69 FBgn0036327 0.98 FBgn0019985 0.47 FBgn0025574 0.82 FBgn0052487 0.29 FBgn0021906 -1.45 FBgn0031429 0.81 FBgn0032318 -0.98 FBgn0039685 0.45 FBgn0033572 1.75 FBgn0030555 -0.44 FBgn0032258 -0.36 FBgn0023508 0.74 FBgn0052670 1.62 FBgn0034893 0.66 FBgn0038922 0.52 FBgn0039316 0.83 FBgn0052072 0.98 FBgn0036112 -0.66 FBgn0030310 0.57 FBgn0010401 -0.66 FBgn0034603 1.02 FBgn0031030 -2.24 FBgn0038691 0.23 FBgn0052006 -1.05 FBgn0015584 0.54 FBgn0030680 1.22 FBgn0050464 -0.64 FBgn0034708 0.56 FBgn0029928 0.57 FBgn0015589 -0.86 FBgn0030008 0.67 FBgn0036196 -0.19 FBgn0027106 1.49 FBgn0000376 1.06 FBgn0261637 -1.18 FBgn0035005 0.42 FBgn0031948 0.62 FBgn0004108 -0.99 FBgn0032882 -4.96 FBgn0031621 0.27 FBgn0261613 0.34 FBgn0036939 -0.25 FBgn0041180 0.61 FBgn0261269 -0.55 FBgn0034013 -2.57 FBgn0038735 0.94 FBgn0051682 0.36 FBgn0034214 2.07 FBgn0001280 1.5 FBgn0031332 -0.18 FBgn0035675 -0.41 FBgn0038309 0.38 FBgn0015664 -4.15 FBgn0036932 -0.66 FBgn0030014 0.75 FBgn0261922 -2.1 FBgn0261929 -0.54 FBgn0030958 -0.33 FBgn0033610 -0.34 FBgn0039490 2.25 FBgn0002855 0.89 FBgn0040337 0.58 FBgn0052679 0.26 FBgn0000395 0.78 FBgn0033866 1.08 FBgn0036366 0.72 FBgn0033774 -0.46 FBgn0004620 0.32 FBgn0038533 1.27 FBgn0001233 -1.92 FBgn0000412 0.76 FBgn0085496 0.29 FBgn0053094 0.97 FBgn0028956 -0.91 FBgn0015396 -0.89 FBgn0033550 0.96 FBgn0066101 -0.93 FBgn0030017 0.92 FBgn0053463 1.24 FBgn0031485 0.16 FBgn0043865 0.2 FBgn0034000 1.38 FBgn0039875 0.75 FBgn0030828 0.58 FBgn0052672 -0.64 FBgn0038766 0.22 FBgn0035924 1.39 FBgn0033451 1.5 FBgn0035630 0.55 FBgn0052625 -0.94 FBgn0027575 0.79 FBgn0050421 1.52 FBgn0034498 0.82 FBgn0017558 0.55 FBgn0038784 0.29 FBgn0002869 1.7 FBgn0035648 0.66 FBgn0026144 -1.56 FBgn0037410 0.75 FBgn0035318 0.51 FBgn0051265 0.18 FBgn0031606 -1.59 FBgn0039558 1.45 FBgn0046332 0.66 FBgn0030332 -0.61 FBgn0037341 0.8 FBgn0040747 0.92 FBgn0260452 -1.56 FBgn0037565 0.66 FBgn0030003 0.37 FBgn0261260 0.87 FBgn0036588 -0.85 FBgn0040022 0.42 FBgn0026418 0.64 FBgn0034688 0.06 FBgn0002865 -1.15 FBgn0032590 1.32 FBgn0032455 1.46 FBgn0029965 -1.03 FBgn0034958 0.67 FBgn0037336 -0.89 FBgn0261112 0.19 FBgn0051327 0.98 FBgn0015949 0.8 FBgn0015569 1.07 FBgn0031604 -0.9 FBgn0259110 1.21 FBgn0032167 1.09 FBgn0015576 0.17 FBgn0002183 -0.98 FBgn0052582 1.56 FBgn0036786 -1.21 FBgn0033304 -0.84 FBgn0035702 0.27 FBgn0034312 0.81 FBgn0052649 -0.8 FBgn0033504 0.81 FBgn0085422 0.91 FBgn0000566 1.7 FBgn0038632 -0.49 FBgn0033698 0.55 FBgn0039805 0.9 FBgn0040361 -0.85 FBgn0028992 -0.62 FBgn0003514 -1.07 FBgn0011604 -1.14 FBgn0039186 -0.61 FBgn0053144 0.98 FBgn0035273 -0.85 FBgn0052058 0.68 FBgn0031634 0.74 FBgn0030847 -0.3 FBgn0023512 -0.9 FBgn0030873 -1.13 FBgn0000455 1.45 FBgn0036221 -0.48 FBgn0038830 1.1 FBgn0039520 0.59 FBgn0033100 -0.4 FBgn0032166 0.57 FBgn0029849 1.09 FBgn0032889 -0.59 FBgn0030872 0.35 FBgn0025674 -1.11 FBgn0032464 -0.86 FBgn0035101 0.72 FBgn0033819 0.33 FBgn0033216 0.58 FBgn0031517 -0.61 FBgn0030319 -0.24 FBgn0039127 -0.43 FBgn0030395 1.31 FBgn0036108 -0.19 FBgn0034417 1.77 FBgn0029696 -0.14 FBgn0030349 0.43 FBgn0051373 0.7 FBgn0038425 1.31 FBgn0034007 1.71 FBgn0015623 0.49 FBgn0013771 0.76 FBgn0038804 0.36 FBgn0029821 0.43 FBgn0052267 1.62 FBgn0030974 -0.85 FBgn0032725 0.87 FBgn0038856 -0.65 FBgn0000559 -2.15 FBgn0052441 -0.38 FBgn0053309 -0.78 FBgn0031307 1.28 FBgn0038750 0.67 FBgn0038646 0.7 FBgn0036226 -0.54 FBgn0034387 0.08 FBgn0052264 -0.86 FBgn0063496 0.31 FBgn0033978 -0.9 FBgn0054040 -0.84 FBgn0036449 0.21 FBgn0032498 -1.92 FBgn0036668 0.18 FBgn0038058 0.44 FBgn0032338 -0.06 FBgn0020907 0.87 FBgn0015770 0.53 FBgn0028342 1.16 FBgn0030603 0.48 FBgn0011766 -3.25 FBgn0037293 1.34 FBgn0028999 0.47 FBgn0035873 0.44 FBgn0037017 1.22 FBgn0015794 -1.02 FBgn0053796 0.57 FBgn0025781 0.57 FBgn0038877 1.33 FBgn0029753 1.37 FBgn0031466 -1.95 FBgn0037935 0.66 FBgn0027563 1.4 FBgn0033810 0.07 FBgn0039529 0.4 FBgn0036469 0.82 FBgn0033741 -0.26 FBgn0086680 0.52 FBgn0261386 -0.41 FBgn0032733 0.18 FBgn0052406 1.03 FBgn0032377 0.68 FBgn0033408 0.3 FBgn0036607 -0.89 FBgn0000216 0.9 FBgn0010399 0.6 FBgn0086712 -1.24 FBgn0034325 0.99 FBgn0038588 -1.4 FBgn0036463 0.73 FBgn0036442 0.9 FBgn0034278 0.33 FBgn0085254 0.24 FBgn0040388 0.48 FBgn0030615 1.3 FBgn0033672 0.23 FBgn0038202 0.68 FBgn0033088 0.24 FBgn0035283 1.03 FBgn0039879 -1.22 FBgn0031011 -3.18 FBgn0034245 0.81 FBgn0085385 0.59 FBgn0011740 0.51 FBgn0036272 0.45 FBgn0051851 -0.98 FBgn0085317 -0.62 FBgn0038261 0.73 FBgn0020294 -0.38 FBgn0033691 -0.72 FBgn0050074 0.36 FBgn0003145 -0.07 FBgn0030543 0.24 FBgn0035178 0.33 FBgn0038390 -0.23 FBgn0032878 0.92 FBgn0032017 0.15 FBgn0000008 -1.12 FBgn0035880 0.94 FBgn0037688 -0.3 FBgn0039710 -4.33 FBgn0031016 0.22 FBgn0046214 -1.4 FBgn0042186 0.96 FBgn0013435 0.95 FBgn0052708 -0.42 FBgn0010342 -0.7 FBgn0015033 -0.63 FBgn0037374 0.41 FBgn0036210 0.06 FBgn0028331 0.53 FBgn0261931 1.02 FBgn0040342 -0.46 FBgn0002036 -1.36 FBgn0020249 0.52 FBgn0030813 -0.08 FBgn0031261 -0.37 FBgn0039293 1.34 FBgn0038414 1.29 FBgn0038454 0.84 FBgn0036574 -0.32 FBgn0039714 0.62 FBgn0024244 0.14 FBgn0030662 0.97 FBgn0036199 -0.25 FBgn0086254 0.12 FBgn0051343 0.42 FBgn0041629 0.9 FBgn0036038 -2.7 FBgn0031670 -0.57 FBgn0024289 -0.67 FBgn0032846 -0.47 FBgn0033598 0.15 FBgn0035287 0.48 FBgn0014857 -3.03 FBgn0037036 -0.78 FBgn0011708 -2.02 FBgn0039634 1.38 FBgn0040565 1.8 FBgn0033357 -1.24 FBgn0037621 -0.91 FBgn0038775 -0.19 FBgn0030620 0.78 FBgn0041224 0.61 FBgn0260743 1.6 FBgn0031695 -0.4 FBgn0040394 0.52 FBgn0038049 -6.09 FBgn0034974 0.89 FBgn0030933 0.75 FBgn0039304 -0.3 FBgn0010246 -0.82 FBgn0038273 -0.29 FBgn0030151 0.43 FBgn0033820 0.78 FBgn0036510 -1.11 FBgn0039464 0.63 FBgn0039350 1.04 FBgn0024222 1.84 FBgn0033195 1.51 FBgn0030041 0.28 FBgn0028647 0.66 FBgn0033712 0.04 FBgn0004514 -0.55 FBgn0261562 -0.44 FBgn0032769 1.36 FBgn0033380 -0.13 FBgn0035401 1.23 FBgn0035264 0.66 FBgn0085345 1.03 FBgn0261816 1.17 FBgn0038706 -0.82 FBgn0000233 0.47 FBgn0038718 0.54 FBgn0035092 1.81 FBgn0260817 0.31 FBgn0036698 0.61 FBgn0038290 -0.2 FBgn0034082 0.44 FBgn0050497 0.22 FBgn0035944 1.4 FBgn0039937 0.91 FBgn0016762 1.31 FBgn0040285 -0.54 FBgn0035488 -1.4 FBgn0031540 0.26 FBgn0034590 1.29 FBgn0037388 0.75 FBgn0035585 0.15 FBgn0037071 0.96 FBgn0039585 0.44 FBgn0051955 1.63 FBgn0037849 0.53 FBgn0015296 -0.68 FBgn0030720 0.85 FBgn0033389 -0.46 FBgn0259241 0.82 FBgn0045502 1.16 FBgn0038142 0.35 FBgn0040238 -2.09 FBgn0051915 1.16 FBgn0034784 -0.61 FBgn0004118 -0.47 FBgn0051347 -1.53 FBgn0032816 0.14 FBgn0029879 -0.79 FBgn0030930 0.74 FBgn0083971 0.96 FBgn0037837 -0.94 FBgn0034300 -0.6 FBgn0033669 0.5 FBgn0037544 -0.44 FBgn0036619 0.74 FBgn0045064 -0.97 FBgn0034429 0.9 FBgn0031258 0.35 FBgn0259166 0.42 FBgn0045498 1.57 FBgn0083950 1.26 FBgn0038665 -0.17 FBgn0045479 -1.96 FBgn0032065 -1.6 FBgn0000239 -0.46 FBgn0036770 2.25 FBgn0039378 0.03 FBgn0033905 0.36 FBgn0003366 0.62 FBgn0033512 0.21 FBgn0004657 -0.44 FBgn0036945 1.08 FBgn0031784 1.56 FBgn0050285 -1.8 FBgn0050273 0.96 FBgn0035031 0.61 FBgn0037747 -1.12 FBgn0019929 -1.26 FBgn0031906 0.23 FBgn0042104 0.74 FBgn0029740 0.37 FBgn0001404 -2.03 FBgn0035639 0.75 FBgn0035168 0.36 FBgn0086365 -0.78 FBgn0037794 -0.83 FBgn0039705 1.03 FBgn0034199 0.5 FBgn0037676 -0.88 FBgn0052549 0.89 FBgn0052066 1.09 FBgn0050375 0.29 FBgn0037842 0.26 FBgn0035238 -1.36 FBgn0031161 -1.8 FBgn0001217 -0.41 FBgn0029587 0.15 FBgn0032429 -0.9 FBgn0034001 0.75 FBgn0039560 0.34 FBgn0052521 0.7 FBgn0032613 0.31 FBgn0030469 -0.58 FBgn0020372 1.92 FBgn0033921 0.46 FBgn0040759 1.34 FBgn0000427 -1.55 FBgn0032684 -1.16 FBgn0051465 0.91 FBgn0024177 1.15 FBgn0030927 -1.58 FBgn0035120 -0.85 FBgn0261437 0.55 FBgn0031432 -1.01 FBgn0039942 -0.82 FBgn0030109 0.42 FBgn0037941 -0.73 FBgn0261403 0.07 FBgn0039034 0.94 FBgn0037988 0.63 FBgn0029118 -0.57 FBgn0025838 -1.42 FBgn0028473 -2.21 FBgn0035043 0.72 FBgn0036740 0.58 FBgn0026404 1.6 FBgn0051897 1.24 FBgn0004652 -1.5 FBgn0032321 0.85 FBgn0039472 -1.04 FBgn0023023 1.67 FBgn0034729 0.48 FBgn0034884 -0.62 FBgn0033883 -0.46 FBgn0051813 -1 FBgn0026207 1.15 FBgn0085300 -0.4 FBgn0035049 -1.34 FBgn0030805 -0.87 FBgn0038816 -0.76 FBgn0038318 1.66 FBgn0261862 0.41 FBgn0036219 5.33 FBgn0034739 0.88 FBgn0033782 0.69 FBgn0036695 -0.36 FBgn0030433 0.6 FBgn0030362 0.77 FBgn0039565 -1.28 FBgn0039552 0.5 FBgn0020439 -3.09 FBgn0040696 0.95 FBgn0035496 0.25 FBgn0028582 0.72 FBgn0037807 -0.5 FBgn0032283 0.53 FBgn0030074 0.31 FBgn0010423 -0.28 FBgn0035042 0.63 FBgn0028945 0.61 FBgn0016080 0.37 FBgn0038011 0.44 FBgn0053296 -1.05 FBgn0026761 -1.37 FBgn0052418 1.61 FBgn0037488 0.77 FBgn0052054 -0.27 FBgn0026573 -0.42 FBgn0041789 1.27 FBgn0260866 0.45 FBgn0034365 0.26 FBgn0037213 1.14 FBgn0085360 1.32 FBgn0046776 4.44 FBgn0027794 0.57 FBgn0033235 -1.1 FBgn0037364 0.57 FBgn0051016 -0.88 FBgn0032138 -0.72 FBgn0051365 0.55 FBgn0036807 -0.91 FBgn0037115 0.56 FBgn0053282 1.01 FBgn0039731 1.02 FBgn0037956 0.95 FBgn0030918 0.51 FBgn0030796 0.61 FBgn0012042 0.5 FBgn0053322 -0.75 FBgn0005630 -2.16 FBgn0035086 0.89 FBgn0011586 2.04 FBgn0052720 -0.3 FBgn0033524 0.92 FBgn0029093 0.5 FBgn0085456 0.83 FBgn0028852 1.71 FBgn0054002 0.76 FBgn0035023 0.66 FBgn0050053 1.61 FBgn0035766 -1.48 FBgn0037638 1.21 FBgn0053648 -1.34 FBgn0002413 0.82 FBgn0033588 0.26 FBgn0261698 0.87 FBgn0032409 -0.6 FBgn0051882 0.21 FBgn0035382 0.93 FBgn0259139 -0.38 FBgn0028847 -1.42 FBgn0030863 1.46 FBgn0037739 0.62 FBgn0003975 -1.6 FBgn0034756 0.41 FBgn0051805 -1.23 FBgn0036194 0.33 FBgn0033447 0.88 FBgn0037944 2.53 FBgn0039254 -0.97 FBgn0023177 -1.67 FBgn0038603 0.56 FBgn0037832 0.98 FBgn0052022 0.24 FBgn0011300 1.13 FBgn0013813 -0.83 FBgn0030729 -0.92 FBgn0024315 -0.58 FBgn0038952 -0.21 FBgn0033653 1.55 FBgn0035295 -0.59 FBgn0038307 0.4 FBgn0085354 0.82 FBgn0036150 0.92 FBgn0030840 0.22 FBgn0032796 0.67 FBgn0037044 -0.67 FBgn0036028 -0.46 FBgn0029888 0.22 FBgn0029799 0.56 FBgn0259707 1.25 FBgn0026402 0.77 FBgn0034826 -1.45 FBgn0034491 -0.84 FBgn0032669 0.83 FBgn0086711 1.91 FBgn0004837 1.74 FBgn0038042 -2.09 FBgn0005777 1.09 FBgn0036481 0.37 FBgn0033052 0.36 FBgn0040734 0.97 FBgn0037064 -1.15 FBgn0030270 0.56 FBgn0028968 -3.98 FBgn0025645 0.65 FBgn0038662 1.67 FBgn0031047 1.41 FBgn0038897 0.72 FBgn0022943 -2.82 FBgn0036257 -1.79 FBgn0032210 0.5 FBgn0002922 -0.39 FBgn0032647 1.58 FBgn0040298 -3.65 FBgn0037555 1.36 FBgn0036319 0.7 FBgn0035942 0.51 FBgn0034579 -0.12 FBgn0040001 0.7 FBgn0039817 0.8 FBgn0037106 -2.82 FBgn0004368 -1.78 FBgn0031832 -0.79 FBgn0003210 -0.4 FBgn0032651 0.91 FBgn0053158 1.3 FBgn0033178 0.48 FBgn0017572 -0.95 FBgn0027498 0.34 FBgn0027492 1.48 FBgn0003317 0.6 FBgn0031735 -1.23 FBgn0035953 1.02 FBgn0043458 1.6 FBgn0051025 -0.69 FBgn0024232 0.27 FBgn0035099 0.64 FBgn0034371 1.09 FBgn0035708 1.05 FBgn0011204 1.56 FBgn0015019 -1.26 FBgn0000482 -0.36 FBgn0033750 0.9 FBgn0036007 1.41 FBgn0031407 0.38 FBgn0035246 -1.34 FBgn0033350 -2.36 FBgn0033093 0.75 FBgn0032486 0.46 FBgn0050035 1.19 FBgn0038006 0.86 FBgn0035113 -0.87 FBgn0043792 1.05 FBgn0003950 -0.62 FBgn0037026 -0.04 FBgn0034447 1.15 FBgn0086613 -1.98 FBgn0036099 0.54 FBgn0052451 0.97 FBgn0011725 -2.21 FBgn0031814 0.33 FBgn0031747 0.5 FBgn0010355 -0.76 FBgn0036341 0.28 FBgn0033107 0.2 FBgn0050295 -1.19 FBgn0053775 -1.44 FBgn0260481 0.82 FBgn0030642 0.46 FBgn0261647 2.49 FBgn0050077 -0.92 FBgn0030883 0.7 FBgn0038109 1.91 FBgn0052448 -0.68 FBgn0053180 0.65 FBgn0034229 0.32 FBgn0042198 0.36 FBgn0000259 1.71 FBgn0022349 1.34 FBgn0051126 0.4 FBgn0036612 1.61 FBgn0028746 -0.44 FBgn0038584 -0.97 FBgn0039881 0.54 FBgn0019960 -0.93 FBgn0020621 -1 FBgn0033321 0.43 FBgn0030853 -1.03 FBgn0031770 1.54 FBgn0030753 -0.21 FBgn0032833 0.85 FBgn0037419 1.66 FBgn0052407 0.75 FBgn0032431 1.02 FBgn0011648 0.81 FBgn0085488 0.26 FBgn0017561 0.84 FBgn0033706 1.07 FBgn0028668 0.37 FBgn0052027 -0.91 FBgn0039408 0.86 FBgn0000352 -1.43 FBgn0038659 0.72 FBgn0039768 -0.25 FBgn0031660 1.03 FBgn0031802 1.24 FBgn0029147 0.61 FBgn0037563 0.37 FBgn0032690 1.94 FBgn0040532 0.18 FBgn0052791 0.55 FBgn0035141 0.62 FBgn0038482 3.62 FBgn0039092 -0.96 FBgn0030504 -1.43 FBgn0039694 0.9 FBgn0031765 -0.9 FBgn0014022 0.69 FBgn0039613 0.44 FBgn0033629 -2.05 FBgn0259927 1.56 FBgn0051414 0.62 FBgn0035384 0.63 FBgn0037001 0.99 FBgn0053752 1.02 FBgn0260990 0.52 FBgn0028500 0.64 FBgn0037081 0.47 FBgn0085419 0.87 FBgn0036878 0.67 FBgn0032214 1.28 FBgn0086673 1.61 FBgn0037249 -3.18 FBgn0037461 0.67 FBgn0037504 0.95 FBgn0046294 1.3 FBgn0053519 0.99 FBgn0034973 0.54 FBgn0052987 -0.51 FBgn0035969 0.63 FBgn0032050 0.33 FBgn0033569 1.1 FBgn0040954 -0.81 FBgn0036083 0.95 FBgn0036706 -1.01 FBgn0036292 -0.48 FBgn0259483 0.25 FBgn0037255 -1.2 FBgn0030049 1.1 FBgn0038189 0.41 FBgn0035505 0.82 FBgn0031093 5.65 FBgn0000499 0.39 FBgn0037583 1.15 FBgn0037670 1.27 FBgn0030537 -0.4 FBgn0037369 -0.57 FBgn0038233 0.46 FBgn0051278 1.09 FBgn0031786 -0.3 FBgn0050106 0.59 FBgn0052446 -1.3 FBgn0054007 1.79 FBgn0039923 -4.05 FBgn0083945 1.25 FBgn0026257 0.75 FBgn0036386 1.11 FBgn0027085 1.34 FBgn0036909 -0.77 FBgn0043532 -0.38 FBgn0085412 0.99 FBgn0010282 0.69 FBgn0261529 0.66 FBgn0002565 -0.45 FBgn0085201 -1.71 FBgn0051713 0.15 FBgn0031168 0.76 FBgn0023211 0.73 FBgn0010078 -3.44 FBgn0036848 -0.64 FBgn0032864 -1.52 FBgn0037618 0.56 FBgn0031842 -0.6 FBgn0029121 -1.01 FBgn0016917 2.55 FBgn0052319 -0.53 FBgn0052237 0.55 FBgn0037301 1.25 FBgn0036809 -1 FBgn0031619 0.56 FBgn0028902 1.01 FBgn0030823 0.74 FBgn0053284 0.24 FBgn0052751 0.37 FBgn0030571 0.12 FBgn0037241 -1.43 FBgn0031610 -0.98 FBgn0041706 -1.15 FBgn0032422 -0.54 FBgn0051116 1.51 FBgn0038862 -2.05 FBgn0035155 -0.31 FBgn0051292 -0.83 FBgn0038686 1.61 FBgn0044872 1.2 FBgn0036929 0.73 FBgn0030328 -0.87 FBgn0031061 -0.07 FBgn0037329 1.48 FBgn0015570 -1.06 FBgn0052523 -0.31 FBgn0004893 -1.72 FBgn0036832 1.14 FBgn0034745 -1.94 FBgn0027594 0.63 FBgn0013343 0.83 FBgn0051251 -0.69 FBgn0028371 -0.89 FBgn0037078 0.32 FBgn0033723 0.28 FBgn0085259 -0.35 FBgn0023458 -0.96 FBgn0034910 0.71 FBgn0043456 0.36 FBgn0052726 -1.23 FBgn0031504 0.91 FBgn0039102 1.53 FBgn0024991 0.58 FBgn0013759 -0.75 FBgn0050196 0.38 FBgn0050350 -1.1 FBgn0003444 0.23 FBgn0050362 0.84 FBgn0026598 1.55 FBgn0038446 1.39 FBgn0039830 0.44 FBgn0014930 1.05 FBgn0033830 0.89 FBgn0034248 -1.02 FBgn0032706 -1.37 FBgn0028546 -0.63 FBgn0000719 0.35 FBgn0051798 1.53 FBgn0040674 0.84 FBgn0005536 -1.26 FBgn0031104 0.71 FBgn0083167 0.56 FBgn0001185 1.61 FBgn0037998 0.66 FBgn0039425 -1.49 FBgn0036234 -0.95 FBgn0031955 0.1 FBgn0004828 -1.28 FBgn0030590 -0.18 FBgn0039109 -0.5 FBgn0032780 0.59 FBgn0033557 -0.5 FBgn0033807 0.32 FBgn0002284 -3.56 FBgn0038761 0.25 FBgn0031472 0.81 FBgn0032853 -0.49 FBgn0026376 -0.58 FBgn0052984 0.59 FBgn0038975 -0.94 FBgn0013679 0.79 FBgn0034906 0.5 FBgn0030747 -0.34 FBgn0037204 -1.23 FBgn0030686 0.58 FBgn0250837 0.38 FBgn0036568 0.54 FBgn0032262 -0.34 FBgn0003429 1.73 FBgn0025595 0.61 FBgn0032187 -1.68 FBgn0037186 -1.44 FBgn0085451 1.39 FBgn0036314 -0.41 FBgn0035735 -0.2 FBgn0085190 -1.02 FBgn0029818 1.14 FBgn0028471 0.7 FBgn0039483 -0.63 FBgn0035604 0.61 FBgn0030704 0.64 FBgn0033285 0.65 FBgn0004643 -1.37 FBgn0033226 0.21 FBgn0037828 -0.81 FBgn0259140 -0.59 FBgn0027074 0.3 FBgn0011573 -0.51 FBgn0034380 0.93 FBgn0038321 1.16 FBgn0038964 -1.2 FBgn0010416 -1.45 FBgn0053489 -0.24 FBgn0013442 1.11 FBgn0029986 0.48 FBgn0031998 1.08 FBgn0026361 0.53 FBgn0029811 -0.48 FBgn0034776 0.63 FBgn0052113 0.9 FBgn0023171 -1.34 FBgn0029867 1.13 FBgn0260748 1.53 FBgn0028887 -1.9 FBgn0085486 0.94 FBgn0050154 0.52 FBgn0000711 0.9 FBgn0040207 0.67 FBgn0028325 0.28 FBgn0039219 0.71 FBgn0029831 0.52 FBgn0028658 0.7 FBgn0036834 0.64 FBgn0037470 1.45 FBgn0001145 0.71 FBgn0035811 -0.33 FBgn0019968 -1.09 FBgn0243511 0.14 FBgn0040773 -0.85 FBgn0033482 0.35 FBgn0017577 -0.68 FBgn0039856 0.32 FBgn0017456 0.69 FBgn0035167 -0.2 FBgn0037981 1.88 FBgn0013953 0.31 FBgn0027934 0.4 FBgn0033164 -0.6 FBgn0004177 -3.55 FBgn0025725 -3.39 FBgn0042178 1.82 FBgn0005592 -1.59 FBgn0030572 -0.35 FBgn0038613 -0.58 FBgn0035266 -1.01 FBgn0036183 1.11 FBgn0003870 -1.1 FBgn0033692 0.41 FBgn0034286 1.61 FBgn0026323 -0.93 FBgn0034065 -1.07 FBgn0036157 0.21 FBgn0034940 -0.99 FBgn0025833 0.61 FBgn0027611 0.58 FBgn0260386 -0.7 FBgn0045473 -1.22 FBgn0024371 1.11 FBgn0039623 -0.1 FBgn0028978 -0.3 FBgn0036331 -0.15 FBgn0054039 -0.37 FBgn0030664 -0.34 FBgn0019952 -0.43 FBgn0033461 1.18 FBgn0024556 0.23 FBgn0035106 1.38 FBgn0038065 0.46 FBgn0033581 1.36 FBgn0053160 0.12 FBgn0010389 0.7 FBgn0034782 0.21 FBgn0046692 -0.47 FBgn0031589 0.54 FBgn0033243 -0.51 FBgn0052650 0.69 FBgn0024985 -0.44 FBgn0000018 0.51 FBgn0028940 0.68 FBgn0261547 -0.7 FBgn0250830 0.61 FBgn0261015 1.57 FBgn0027052 1.17 FBgn0036105 -0.62 FBgn0030530 -0.6 FBgn0085334 1.6 FBgn0035337 0.87 FBgn0040606 1.15 FBgn0032479 -0.45 FBgn0261445 1.47 FBgn0020312 -1.46 FBgn0050472 1.03 FBgn0033017 0.57 FBgn0050088 0.14 FBgn0022774 -0.82 FBgn0016034 1.51 FBgn0029172 -3.33 FBgn0000588 -0.4 FBgn0034400 -0.41 FBgn0026602 1.05 FBgn0024889 0.85 FBgn0050389 -0.45 FBgn0051676 0.97 FBgn0038941 1.98 FBgn0024887 0.3 FBgn0030740 -1.14 FBgn0052183 1.18 FBgn0003231 1.01 FBgn0001229 -0.38 FBgn0038072 1.24 FBgn0023535 0.8 FBgn0036503 1.66 FBgn0036334 0.51 FBgn0039265 1.18 FBgn0051100 1.09 FBgn0052642 0.6 FBgn0026787 0.54 FBgn0037577 0.38 FBgn0032771 -0.74 FBgn0010340 1.16 FBgn0034137 0.44 FBgn0039959 0.7 FBgn0002579 -4.03 FBgn0085285 -2.21 FBgn0051467 0.59 FBgn0015372 1.08 FBgn0051716 1.88 FBgn0029666 0.56 FBgn0039908 0.79 FBgn0034999 0.46 FBgn0034854 -1.49 FBgn0000658 -0.11 FBgn0036438 -0.81 FBgn0035554 0.87 FBgn0259145 -1.29 FBgn0038251 -1.36 FBgn0027506 0.49 FBgn0029709 -1.13 FBgn0036144 0.97 FBgn0045500 -0.67 FBgn0260399 1.22 FBgn0050222 -1.52 FBgn0037382 0.68 FBgn0026755 1.34 FBgn0025140 -1.87 FBgn0023174 -3.53 FBgn0019890 -3.15 FBgn0032298 0.53 FBgn0046793 -1.23 FBgn0037656 1.04 FBgn0035523 -0.59 FBgn0033191 0.36 FBgn0034628 -0.71 FBgn0025686 -0.83 FBgn0034113 0.38 FBgn0029710 0.64 FBgn0051008 -2.22 FBgn0038652 1.84 FBgn0024698 0.53 FBgn0046876 0.42 FBgn0051224 1.56 FBgn0004009 -0.7 FBgn0011710 0.65 FBgn0050378 0.93 FBgn0010380 0.52 FBgn0034833 0.59 FBgn0034145 0.88 FBgn0031972 -1.72 FBgn0033732 -0.5 FBgn0037146 1.02 FBgn0034053 1.19 FBgn0031914 0.75 FBgn0032052 0.78 FBgn0033549 0.94 FBgn0001219 -2.25 FBgn0033169 -1.32 FBgn0042133 -0.63 FBgn0032031 -0.33 FBgn0036426 -0.65 FBgn0029899 -0.91 FBgn0040296 0.14 FBgn0038508 0.9 FBgn0030468 2.26 FBgn0033055 -0.49 FBgn0011556 -0.27 FBgn0032145 0.84 FBgn0086451 0.73 FBgn0052396 0.54 FBgn0037890 -1.94 FBgn0261041 -0.41 FBgn0046225 -0.72 FBgn0041194 -0.99 FBgn0030033 -1.28 FBgn0030697 -1.26 FBgn0039867 0.26 FBgn0027053 -0.79 FBgn0039601 0.82 FBgn0040649 -0.37 FBgn0037320 -0.27 FBgn0062411 0.57 FBgn0038583 -0.87 FBgn0053477 0.22 FBgn0259212 -0.9 FBgn0031560 1.19 FBgn0086129 -0.66 FBgn0085377 0.94 FBgn0052773 1.01 FBgn0004589 -0.27 FBgn0050380 0.72 FBgn0020764 0.64 FBgn0039758 1.09 FBgn0086916 0.83 FBgn0039510 -1.17 FBgn0032122 -0.88 FBgn0260858 0.58 FBgn0250753 1.83 FBgn0039056 -2.04 FBgn0036461 1.17 FBgn0037924 -1.15 FBgn0085424 0.84 FBgn0030373 -0.33 FBgn0031132 -0.31 FBgn0086446 1.29 FBgn0034565 1.05 FBgn0052017 0.69 FBgn0033799 0.49 FBgn0087007 -0.94 FBgn0035926 0.96 FBgn0010235 0.54 FBgn0037630 0.89 FBgn0002543 1.39 FBgn0086698 0.76 FBgn0037897 -0.49 FBgn0035192 -0.63 FBgn0011294 0.65 FBgn0015324 -1.16 FBgn0085329 -0.37 FBgn0037261 -1.2 FBgn0000277 -0.4 FBgn0033915 0.42 FBgn0026315 -0.36 FBgn0040805 -2.03 FBgn0041236 -0.64 FBgn0052627 1.27 FBgn0040250 1.62 FBgn0054049 -1.69 FBgn0031459 -0.87 FBgn0034667 0.4 FBgn0051216 -0.61 FBgn0038727 -1.29 FBgn0051601 -0.13 FBgn0031993 -0.38 FBgn0037440 1.17 FBgn0033204 -1.81 FBgn0051637 -0.52 FBgn0038638 1.02 FBgn0050001 0.57 FBgn0026399 -1 FBgn0016974 0.82 FBgn0033953 0.37 FBgn0035619 -0.42 FBgn0036542 -1.51 FBgn0031418 1.08 FBgn0035713 1.46 FBgn0033442 2.34 FBgn0037782 -2.34 FBgn0259151 -1.06 FBgn0040351 0.57 FBgn0034733 0.95 FBgn0038626 -0.15 FBgn0013732 1.54 FBgn0040309 -0.88 FBgn0039323 -1.36 FBgn0028499 -0.95 FBgn0015279 -0.15 FBgn0035831 0.59 FBgn0039067 2.02 FBgn0038715 1.04 FBgn0038358 0.85 FBgn0051084 -1.25 FBgn0050398 0.1 FBgn0004574 0.93 FBgn0053169 0.33 FBgn0085356 0.66 FBgn0035428 0.47 FBgn0261571 1.17 FBgn0032059 1.54 FBgn0037181 -1.17 FBgn0030739 0.69 FBgn0038747 1.11 FBgn0051202 0.84 FBgn0030507 -0.21 FBgn0002570 0.58 FBgn0036775 -0.51 FBgn0028931 1.06 FBgn0036661 0.49 FBgn0038304 -0.49 FBgn0031176 0.41 FBgn0004638 -1.08 FBgn0022764 1.16 FBgn0053276 0.39 FBgn0025621 -0.77 FBgn0036205 -0.68 FBgn0037762 0.04 FBgn0085319 -0.6 FBgn0041103 -0.43 FBgn0004611 0.37 FBgn0053983 -1.12 FBgn0030359 0.17 FBgn0033135 1.08 FBgn0035806 1.26 FBgn0032785 0.52 FBgn0033355 0.64 FBgn0030327 -1.17 FBgn0015229 1.64 FBgn0031229 -1.28 FBgn0038344 -1.51 FBgn0036586 -1.06 FBgn0034265 0.46 FBgn0036356 0.51 FBgn0040963 0.85 FBgn0051232 1.4 FBgn0034261 0.59 FBgn0037456 -0.85 FBgn0051730 0.55 FBgn0032363 0.26 FBgn0034935 0.72 FBgn0033886 -0.34 FBgn0028683 0.2 FBgn0030558 0.44 FBgn0040842 0.31 FBgn0025936 -0.55 FBgn0039840 1.02 FBgn0034819 1.84 FBgn0004552 0.84 FBgn0000409 0.45 FBgn0039024 1.12 FBgn0052803 -0.58 FBgn0035970 0.8 FBgn0038925 0.16 FBgn0000581 -5.93 FBgn0021760 -1.6 FBgn0015756 -3.58 FBgn0029890 1.8 FBgn0032268 0.25 FBgn0034674 -0.68 FBgn0028913 -0.53 FBgn0000448 0.86 FBgn0032517 0.77 FBgn0053288 -1.3 FBgn0037512 0.66 FBgn0037283 -1.01 FBgn0036311 0.94 FBgn0029719 -0.33 FBgn0040344 1.22 FBgn0038395 0.56 FBgn0031049 1.84 FBgn0039358 0.43 FBgn0026147 0.85 FBgn0036623 -1.13 FBgn0033903 0.19 FBgn0028520 0.76 FBgn0003983 2.49 FBgn0034641 -1.11 FBgn0033539 -1.18 FBgn0035209 -0.98 FBgn0035584 -0.66 FBgn0031590 0.83 FBgn0051211 1.16 FBgn0031422 0.67 FBgn0004055 -1.23 FBgn0051721 0.9 FBgn0003292 0.51 FBgn0011771 0.73 FBgn0051913 -0.5 FBgn0036169 0.2 FBgn0031099 -0.59 FBgn0051907 -0.63 FBgn0039210 0.49 FBgn0003248 0.06 FBgn0032375 -0.32 FBgn0045759 -0.63 FBgn0034155 -0.17 FBgn0051533 -0.41 FBgn0001098 -2.1 FBgn0051481 -0.61 FBgn0051158 -1.82 FBgn0033437 0.92 FBgn0050021 1.16 FBgn0010772 -1.2 FBgn0034577 1.17 FBgn0040370 0.69 FBgn0031183 0.44 FBgn0003048 1.05 FBgn0261574 0.53 FBgn0034139 -0.63 FBgn0032004 0.74 FBgn0024184 2.17 FBgn0085399 -1.14 FBgn0086677 1.06 FBgn0067317 0.96 FBgn0036553 1.2 FBgn0033739 -1.78 FBgn0039234 0.95 FBgn0052428 0.26 FBgn0038738 0.82 FBgn0032904 0.87 FBgn0037486 -0.62 FBgn0034258 -3.76 FBgn0025720 1 FBgn0036162 1.09 FBgn0087002 0.42 FBgn0029971 0.43 FBgn0031811 0.71 FBgn0038312 1.05 FBgn0002631 0.54 FBgn0041243 -0.55 FBgn0052814 -0.67 FBgn0035725 -1.59 FBgn0040097 -0.96 FBgn0034098 1.59 FBgn0036346 1.09 FBgn0032444 -1.03 FBgn0035936 1.21 FBgn0039598 0.4 FBgn0260755 -0.49 FBgn0037273 0.71 FBgn0031440 0.55 FBgn0038790 0.43 FBgn0037225 0.32 FBgn0051935 0.86 FBgn0052225 -0.43 FBgn0031533 0.17 FBgn0032074 0.8 FBgn0030892 0.45 FBgn0051450 0.62 FBgn0010549 0.71 FBgn0261243 1.32 FBgn0032521 1.4 FBgn0028670 -1.26 FBgn0038277 -0.62 FBgn0086346 0.76 FBgn0036763 -1.1 FBgn0003358 0.79 FBgn0030994 0.52 FBgn0040093 -0.71 FBgn0039509 -0.95 FBgn0032638 -1.36 FBgn0034643 -1.15 FBgn0051926 -0.61 FBgn0050060 0.34 FBgn0027841 0.88 FBgn0034919 -0.58 FBgn0031457 -0.42 FBgn0039911 -0.72 FBgn0023522 -0.76 FBgn0035070 -0.38 FBgn0035853 2.53 FBgn0037176 0.94 FBgn0037547 0.38 FBgn0036030 2.35 FBgn0044510 -1.09 FBgn0052815 1.37 FBgn0040496 0.86 FBgn0053205 0.87 FBgn0063494 1.16 FBgn0003023 0.59 FBgn0010501 -0.88 FBgn0004581 -0.57 FBgn0031276 -0.37 FBgn0035528 -0.3 FBgn0000052 0.77 FBgn0050055 0.71 FBgn0031946 -0.65 FBgn0032080 1.56 FBgn0053137 -1.69 FBgn0030775 -0.14 FBgn0034681 -1.11 FBgn0038902 0.28 FBgn0039203 0.89 FBgn0039977 1.92 FBgn0025582 -3.57 FBgn0032949 1 FBgn0038928 1.31 FBgn0035918 0.2 FBgn0036934 -0.6 FBgn0023130 0.17 FBgn0032504 1.43 FBgn0038271 -1.09 FBgn0032916 0.71 FBgn0067407 0.09 FBgn0034398 -1.31 FBgn0035624 -0.81 FBgn0034866 -0.73 FBgn0051436 -0.47 FBgn0030500 -2.84 FBgn0031417 1 FBgn0014073 -0.8 FBgn0029993 -0.59 FBgn0035218 -0.52 FBgn0001981 -1.79 FBgn0034291 -1.43 FBgn0010531 0.76 FBgn0039677 0.53 FBgn0036851 0.82 FBgn0051267 0.83 FBgn0032368 -0.69 FBgn0030584 -0.96 FBgn0023169 0.85 FBgn0030443 0.5 FBgn0035008 -0.22 FBgn0030403 0.35 FBgn0001128 1.6 FBgn0250846 1.05 FBgn0015609 -0.49 FBgn0259994 2.45 FBgn0035011 -1.02 FBgn0033063 1.11 FBgn0032895 -0.74 FBgn0031141 0.64 FBgn0040069 0.79 FBgn0033471 -0.58 FBgn0035591 -0.17 FBgn0036822 0.88 FBgn0028530 0.61 FBgn0026136 1.23 FBgn0037356 -0.95 FBgn0038214 -0.67 FBgn0042110 0.43 FBgn0034202 -0.22 jc-1.17.3/tests/fixtures/generic/csv-homes-pipe-streaming.json000066400000000000000000000003571415226333200243550ustar00rootroot00000000000000[{"Sell":"142","List":"160","Living":"28","Rooms":"10","Beds":"5","Baths":"3","Age":"60","Acres":"0.28","Taxes":"3167"},{"Sell":"175","List":"180","Living":"18","Rooms":"8","Beds":"4","Baths":"1","Age":"12","Acres":"0.43","Taxes":"4033"}] jc-1.17.3/tests/fixtures/generic/csv-homes-pipe.csv000066400000000000000000000002361415226333200222040ustar00rootroot00000000000000"Sell"| "List"| "Living"| "Rooms"| "Beds"| "Baths"| "Age"| "Acres"| "Taxes" 142| 160| 28| 10| 5| 3| 60| 0.28| 3167 175| 180| 18| 8| 4| 1| 12| 0.43| 4033 jc-1.17.3/tests/fixtures/generic/csv-homes-pipe.json000066400000000000000000000004221415226333200223570ustar00rootroot00000000000000[{"Sell": "142", "List": "160", "Living": "28", "Rooms": "10", "Beds": "5", "Baths": "3", "Age": "60", "Acres": "0.28", "Taxes": "3167"}, {"Sell": "175", "List": "180", "Living": "18", "Rooms": "8", "Beds": "4", "Baths": "1", "Age": "12", "Acres": "0.43", "Taxes": "4033"}] jc-1.17.3/tests/fixtures/generic/csv-homes-streaming.json000066400000000000000000000134131415226333200234170ustar00rootroot00000000000000[{"Sell":"142","List":"160","Living":"28","Rooms":"10","Beds":"5","Baths":"3","Age":"60","Acres":"0.28","Taxes":"3167"},{"Sell":"175","List":"180","Living":"18","Rooms":"8","Beds":"4","Baths":"1","Age":"12","Acres":"0.43","Taxes":"4033"},{"Sell":"129","List":"132","Living":"13","Rooms":"6","Beds":"3","Baths":"1","Age":"41","Acres":"0.33","Taxes":"1471"},{"Sell":"138","List":"140","Living":"17","Rooms":"7","Beds":"3","Baths":"1","Age":"22","Acres":"0.46","Taxes":"3204"},{"Sell":"232","List":"240","Living":"25","Rooms":"8","Beds":"4","Baths":"3","Age":"5","Acres":"2.05","Taxes":"3613"},{"Sell":"135","List":"140","Living":"18","Rooms":"7","Beds":"4","Baths":"3","Age":"9","Acres":"0.57","Taxes":"3028"},{"Sell":"150","List":"160","Living":"20","Rooms":"8","Beds":"4","Baths":"3","Age":"18","Acres":"4.00","Taxes":"3131"},{"Sell":"207","List":"225","Living":"22","Rooms":"8","Beds":"4","Baths":"2","Age":"16","Acres":"2.22","Taxes":"5158"},{"Sell":"271","List":"285","Living":"30","Rooms":"10","Beds":"5","Baths":"2","Age":"30","Acres":"0.53","Taxes":"5702"},{"Sell":"89","List":"90","Living":"10","Rooms":"5","Beds":"3","Baths":"1","Age":"43","Acres":"0.30","Taxes":"2054"},{"Sell":"153","List":"157","Living":"22","Rooms":"8","Beds":"3","Baths":"3","Age":"18","Acres":"0.38","Taxes":"4127"},{"Sell":"87","List":"90","Living":"16","Rooms":"7","Beds":"3","Baths":"1","Age":"50","Acres":"0.65","Taxes":"1445"},{"Sell":"234","List":"238","Living":"25","Rooms":"8","Beds":"4","Baths":"2","Age":"2","Acres":"1.61","Taxes":"2087"},{"Sell":"106","List":"116","Living":"20","Rooms":"8","Beds":"4","Baths":"1","Age":"13","Acres":"0.22","Taxes":"2818"},{"Sell":"175","List":"180","Living":"22","Rooms":"8","Beds":"4","Baths":"2","Age":"15","Acres":"2.06","Taxes":"3917"},{"Sell":"165","List":"170","Living":"17","Rooms":"8","Beds":"4","Baths":"2","Age":"33","Acres":"0.46","Taxes":"2220"},{"Sell":"166","List":"170","Living":"23","Rooms":"9","Beds":"4","Baths":"2","Age":"37","Acres":"0.27","Taxes":"3498"},{"Sell":"136","List":"140","Living":"19","Rooms":"7","Beds":"3","Baths":"1","Age":"22","Acres":"0.63","Taxes":"3607"},{"Sell":"148","List":"160","Living":"17","Rooms":"7","Beds":"3","Baths":"2","Age":"13","Acres":"0.36","Taxes":"3648"},{"Sell":"151","List":"153","Living":"19","Rooms":"8","Beds":"4","Baths":"2","Age":"24","Acres":"0.34","Taxes":"3561"},{"Sell":"180","List":"190","Living":"24","Rooms":"9","Beds":"4","Baths":"2","Age":"10","Acres":"1.55","Taxes":"4681"},{"Sell":"293","List":"305","Living":"26","Rooms":"8","Beds":"4","Baths":"3","Age":"6","Acres":"0.46","Taxes":"7088"},{"Sell":"167","List":"170","Living":"20","Rooms":"9","Beds":"4","Baths":"2","Age":"46","Acres":"0.46","Taxes":"3482"},{"Sell":"190","List":"193","Living":"22","Rooms":"9","Beds":"5","Baths":"2","Age":"37","Acres":"0.48","Taxes":"3920"},{"Sell":"184","List":"190","Living":"21","Rooms":"9","Beds":"5","Baths":"2","Age":"27","Acres":"1.30","Taxes":"4162"},{"Sell":"157","List":"165","Living":"20","Rooms":"8","Beds":"4","Baths":"2","Age":"7","Acres":"0.30","Taxes":"3785"},{"Sell":"110","List":"115","Living":"16","Rooms":"8","Beds":"4","Baths":"1","Age":"26","Acres":"0.29","Taxes":"3103"},{"Sell":"135","List":"145","Living":"18","Rooms":"7","Beds":"4","Baths":"1","Age":"35","Acres":"0.43","Taxes":"3363"},{"Sell":"567","List":"625","Living":"64","Rooms":"11","Beds":"4","Baths":"4","Age":"4","Acres":"0.85","Taxes":"12192"},{"Sell":"180","List":"185","Living":"20","Rooms":"8","Beds":"4","Baths":"2","Age":"11","Acres":"1.00","Taxes":"3831"},{"Sell":"183","List":"188","Living":"17","Rooms":"7","Beds":"3","Baths":"2","Age":"16","Acres":"3.00","Taxes":"3564"},{"Sell":"185","List":"193","Living":"20","Rooms":"9","Beds":"3","Baths":"2","Age":"56","Acres":"6.49","Taxes":"3765"},{"Sell":"152","List":"155","Living":"17","Rooms":"8","Beds":"4","Baths":"1","Age":"33","Acres":"0.70","Taxes":"3361"},{"Sell":"148","List":"153","Living":"13","Rooms":"6","Beds":"3","Baths":"2","Age":"22","Acres":"0.39","Taxes":"3950"},{"Sell":"152","List":"159","Living":"15","Rooms":"7","Beds":"3","Baths":"1","Age":"25","Acres":"0.59","Taxes":"3055"},{"Sell":"146","List":"150","Living":"16","Rooms":"7","Beds":"3","Baths":"1","Age":"31","Acres":"0.36","Taxes":"2950"},{"Sell":"170","List":"190","Living":"24","Rooms":"10","Beds":"3","Baths":"2","Age":"33","Acres":"0.57","Taxes":"3346"},{"Sell":"127","List":"130","Living":"20","Rooms":"8","Beds":"4","Baths":"1","Age":"65","Acres":"0.40","Taxes":"3334"},{"Sell":"265","List":"270","Living":"36","Rooms":"10","Beds":"6","Baths":"3","Age":"33","Acres":"1.20","Taxes":"5853"},{"Sell":"157","List":"163","Living":"18","Rooms":"8","Beds":"4","Baths":"2","Age":"12","Acres":"1.13","Taxes":"3982"},{"Sell":"128","List":"135","Living":"17","Rooms":"9","Beds":"4","Baths":"1","Age":"25","Acres":"0.52","Taxes":"3374"},{"Sell":"110","List":"120","Living":"15","Rooms":"8","Beds":"4","Baths":"2","Age":"11","Acres":"0.59","Taxes":"3119"},{"Sell":"123","List":"130","Living":"18","Rooms":"8","Beds":"4","Baths":"2","Age":"43","Acres":"0.39","Taxes":"3268"},{"Sell":"212","List":"230","Living":"39","Rooms":"12","Beds":"5","Baths":"3","Age":"202","Acres":"4.29","Taxes":"3648"},{"Sell":"145","List":"145","Living":"18","Rooms":"8","Beds":"4","Baths":"2","Age":"44","Acres":"0.22","Taxes":"2783"},{"Sell":"129","List":"135","Living":"10","Rooms":"6","Beds":"3","Baths":"1","Age":"15","Acres":"1.00","Taxes":"2438"},{"Sell":"143","List":"145","Living":"21","Rooms":"7","Beds":"4","Baths":"2","Age":"10","Acres":"1.20","Taxes":"3529"},{"Sell":"247","List":"252","Living":"29","Rooms":"9","Beds":"4","Baths":"2","Age":"4","Acres":"1.25","Taxes":"4626"},{"Sell":"111","List":"120","Living":"15","Rooms":"8","Beds":"3","Baths":"1","Age":"97","Acres":"1.11","Taxes":"3205"},{"Sell":"133","List":"145","Living":"26","Rooms":"7","Beds":"3","Baths":"1","Age":"42","Acres":"0.36","Taxes":"3059"}] jc-1.17.3/tests/fixtures/generic/csv-homes.csv000066400000000000000000000041151415226333200212510ustar00rootroot00000000000000"Sell", "List", "Living", "Rooms", "Beds", "Baths", "Age", "Acres", "Taxes" 142, 160, 28, 10, 5, 3, 60, 0.28, 3167 175, 180, 18, 8, 4, 1, 12, 0.43, 4033 129, 132, 13, 6, 3, 1, 41, 0.33, 1471 138, 140, 17, 7, 3, 1, 22, 0.46, 3204 232, 240, 25, 8, 4, 3, 5, 2.05, 3613 135, 140, 18, 7, 4, 3, 9, 0.57, 3028 150, 160, 20, 8, 4, 3, 18, 4.00, 3131 207, 225, 22, 8, 4, 2, 16, 2.22, 5158 271, 285, 30, 10, 5, 2, 30, 0.53, 5702 89, 90, 10, 5, 3, 1, 43, 0.30, 2054 153, 157, 22, 8, 3, 3, 18, 0.38, 4127 87, 90, 16, 7, 3, 1, 50, 0.65, 1445 234, 238, 25, 8, 4, 2, 2, 1.61, 2087 106, 116, 20, 8, 4, 1, 13, 0.22, 2818 175, 180, 22, 8, 4, 2, 15, 2.06, 3917 165, 170, 17, 8, 4, 2, 33, 0.46, 2220 166, 170, 23, 9, 4, 2, 37, 0.27, 3498 136, 140, 19, 7, 3, 1, 22, 0.63, 3607 148, 160, 17, 7, 3, 2, 13, 0.36, 3648 151, 153, 19, 8, 4, 2, 24, 0.34, 3561 180, 190, 24, 9, 4, 2, 10, 1.55, 4681 293, 305, 26, 8, 4, 3, 6, 0.46, 7088 167, 170, 20, 9, 4, 2, 46, 0.46, 3482 190, 193, 22, 9, 5, 2, 37, 0.48, 3920 184, 190, 21, 9, 5, 2, 27, 1.30, 4162 157, 165, 20, 8, 4, 2, 7, 0.30, 3785 110, 115, 16, 8, 4, 1, 26, 0.29, 3103 135, 145, 18, 7, 4, 1, 35, 0.43, 3363 567, 625, 64, 11, 4, 4, 4, 0.85, 12192 180, 185, 20, 8, 4, 2, 11, 1.00, 3831 183, 188, 17, 7, 3, 2, 16, 3.00, 3564 185, 193, 20, 9, 3, 2, 56, 6.49, 3765 152, 155, 17, 8, 4, 1, 33, 0.70, 3361 148, 153, 13, 6, 3, 2, 22, 0.39, 3950 152, 159, 15, 7, 3, 1, 25, 0.59, 3055 146, 150, 16, 7, 3, 1, 31, 0.36, 2950 170, 190, 24, 10, 3, 2, 33, 0.57, 3346 127, 130, 20, 8, 4, 1, 65, 0.40, 3334 265, 270, 36, 10, 6, 3, 33, 1.20, 5853 157, 163, 18, 8, 4, 2, 12, 1.13, 3982 128, 135, 17, 9, 4, 1, 25, 0.52, 3374 110, 120, 15, 8, 4, 2, 11, 0.59, 3119 123, 130, 18, 8, 4, 2, 43, 0.39, 3268 212, 230, 39, 12, 5, 3, 202, 4.29, 3648 145, 145, 18, 8, 4, 2, 44, 0.22, 2783 129, 135, 10, 6, 3, 1, 15, 1.00, 2438 143, 145, 21, 7, 4, 2, 10, 1.20, 3529 247, 252, 29, 9, 4, 2, 4, 1.25, 4626 111, 120, 15, 8, 3, 1, 97, 1.11, 3205 133, 145, 26, 7, 3, 1, 42, 0.36, 3059jc-1.17.3/tests/fixtures/generic/csv-homes.json000066400000000000000000000152161415226333200214330ustar00rootroot00000000000000[{"Sell": "142", "List": "160", "Living": "28", "Rooms": "10", "Beds": "5", "Baths": "3", "Age": "60", "Acres": "0.28", "Taxes": "3167"}, {"Sell": "175", "List": "180", "Living": "18", "Rooms": "8", "Beds": "4", "Baths": "1", "Age": "12", "Acres": "0.43", "Taxes": "4033"}, {"Sell": "129", "List": "132", "Living": "13", "Rooms": "6", "Beds": "3", "Baths": "1", "Age": "41", "Acres": "0.33", "Taxes": "1471"}, {"Sell": "138", "List": "140", "Living": "17", "Rooms": "7", "Beds": "3", "Baths": "1", "Age": "22", "Acres": "0.46", "Taxes": "3204"}, {"Sell": "232", "List": "240", "Living": "25", "Rooms": "8", "Beds": "4", "Baths": "3", "Age": "5", "Acres": "2.05", "Taxes": "3613"}, {"Sell": "135", "List": "140", "Living": "18", "Rooms": "7", "Beds": "4", "Baths": "3", "Age": "9", "Acres": "0.57", "Taxes": "3028"}, {"Sell": "150", "List": "160", "Living": "20", "Rooms": "8", "Beds": "4", "Baths": "3", "Age": "18", "Acres": "4.00", "Taxes": "3131"}, {"Sell": "207", "List": "225", "Living": "22", "Rooms": "8", "Beds": "4", "Baths": "2", "Age": "16", "Acres": "2.22", "Taxes": "5158"}, {"Sell": "271", "List": "285", "Living": "30", "Rooms": "10", "Beds": "5", "Baths": "2", "Age": "30", "Acres": "0.53", "Taxes": "5702"}, {"Sell": "89", "List": "90", "Living": "10", "Rooms": "5", "Beds": "3", "Baths": "1", "Age": "43", "Acres": "0.30", "Taxes": "2054"}, {"Sell": "153", "List": "157", "Living": "22", "Rooms": "8", "Beds": "3", "Baths": "3", "Age": "18", "Acres": "0.38", "Taxes": "4127"}, {"Sell": "87", "List": "90", "Living": "16", "Rooms": "7", "Beds": "3", "Baths": "1", "Age": "50", "Acres": "0.65", "Taxes": "1445"}, {"Sell": "234", "List": "238", "Living": "25", "Rooms": "8", "Beds": "4", "Baths": "2", "Age": "2", "Acres": "1.61", "Taxes": "2087"}, {"Sell": "106", "List": "116", "Living": "20", "Rooms": "8", "Beds": "4", "Baths": "1", "Age": "13", "Acres": "0.22", "Taxes": "2818"}, {"Sell": "175", "List": "180", "Living": "22", "Rooms": "8", "Beds": "4", "Baths": "2", "Age": "15", "Acres": "2.06", "Taxes": "3917"}, {"Sell": "165", "List": "170", "Living": "17", "Rooms": "8", "Beds": "4", "Baths": "2", "Age": "33", "Acres": "0.46", "Taxes": "2220"}, {"Sell": "166", "List": "170", "Living": "23", "Rooms": "9", "Beds": "4", "Baths": "2", "Age": "37", "Acres": "0.27", "Taxes": "3498"}, {"Sell": "136", "List": "140", "Living": "19", "Rooms": "7", "Beds": "3", "Baths": "1", "Age": "22", "Acres": "0.63", "Taxes": "3607"}, {"Sell": "148", "List": "160", "Living": "17", "Rooms": "7", "Beds": "3", "Baths": "2", "Age": "13", "Acres": "0.36", "Taxes": "3648"}, {"Sell": "151", "List": "153", "Living": "19", "Rooms": "8", "Beds": "4", "Baths": "2", "Age": "24", "Acres": "0.34", "Taxes": "3561"}, {"Sell": "180", "List": "190", "Living": "24", "Rooms": "9", "Beds": "4", "Baths": "2", "Age": "10", "Acres": "1.55", "Taxes": "4681"}, {"Sell": "293", "List": "305", "Living": "26", "Rooms": "8", "Beds": "4", "Baths": "3", "Age": "6", "Acres": "0.46", "Taxes": "7088"}, {"Sell": "167", "List": "170", "Living": "20", "Rooms": "9", "Beds": "4", "Baths": "2", "Age": "46", "Acres": "0.46", "Taxes": "3482"}, {"Sell": "190", "List": "193", "Living": "22", "Rooms": "9", "Beds": "5", "Baths": "2", "Age": "37", "Acres": "0.48", "Taxes": "3920"}, {"Sell": "184", "List": "190", "Living": "21", "Rooms": "9", "Beds": "5", "Baths": "2", "Age": "27", "Acres": "1.30", "Taxes": "4162"}, {"Sell": "157", "List": "165", "Living": "20", "Rooms": "8", "Beds": "4", "Baths": "2", "Age": "7", "Acres": "0.30", "Taxes": "3785"}, {"Sell": "110", "List": "115", "Living": "16", "Rooms": "8", "Beds": "4", "Baths": "1", "Age": "26", "Acres": "0.29", "Taxes": "3103"}, {"Sell": "135", "List": "145", "Living": "18", "Rooms": "7", "Beds": "4", "Baths": "1", "Age": "35", "Acres": "0.43", "Taxes": "3363"}, {"Sell": "567", "List": "625", "Living": "64", "Rooms": "11", "Beds": "4", "Baths": "4", "Age": "4", "Acres": "0.85", "Taxes": "12192"}, {"Sell": "180", "List": "185", "Living": "20", "Rooms": "8", "Beds": "4", "Baths": "2", "Age": "11", "Acres": "1.00", "Taxes": "3831"}, {"Sell": "183", "List": "188", "Living": "17", "Rooms": "7", "Beds": "3", "Baths": "2", "Age": "16", "Acres": "3.00", "Taxes": "3564"}, {"Sell": "185", "List": "193", "Living": "20", "Rooms": "9", "Beds": "3", "Baths": "2", "Age": "56", "Acres": "6.49", "Taxes": "3765"}, {"Sell": "152", "List": "155", "Living": "17", "Rooms": "8", "Beds": "4", "Baths": "1", "Age": "33", "Acres": "0.70", "Taxes": "3361"}, {"Sell": "148", "List": "153", "Living": "13", "Rooms": "6", "Beds": "3", "Baths": "2", "Age": "22", "Acres": "0.39", "Taxes": "3950"}, {"Sell": "152", "List": "159", "Living": "15", "Rooms": "7", "Beds": "3", "Baths": "1", "Age": "25", "Acres": "0.59", "Taxes": "3055"}, {"Sell": "146", "List": "150", "Living": "16", "Rooms": "7", "Beds": "3", "Baths": "1", "Age": "31", "Acres": "0.36", "Taxes": "2950"}, {"Sell": "170", "List": "190", "Living": "24", "Rooms": "10", "Beds": "3", "Baths": "2", "Age": "33", "Acres": "0.57", "Taxes": "3346"}, {"Sell": "127", "List": "130", "Living": "20", "Rooms": "8", "Beds": "4", "Baths": "1", "Age": "65", "Acres": "0.40", "Taxes": "3334"}, {"Sell": "265", "List": "270", "Living": "36", "Rooms": "10", "Beds": "6", "Baths": "3", "Age": "33", "Acres": "1.20", "Taxes": "5853"}, {"Sell": "157", "List": "163", "Living": "18", "Rooms": "8", "Beds": "4", "Baths": "2", "Age": "12", "Acres": "1.13", "Taxes": "3982"}, {"Sell": "128", "List": "135", "Living": "17", "Rooms": "9", "Beds": "4", "Baths": "1", "Age": "25", "Acres": "0.52", "Taxes": "3374"}, {"Sell": "110", "List": "120", "Living": "15", "Rooms": "8", "Beds": "4", "Baths": "2", "Age": "11", "Acres": "0.59", "Taxes": "3119"}, {"Sell": "123", "List": "130", "Living": "18", "Rooms": "8", "Beds": "4", "Baths": "2", "Age": "43", "Acres": "0.39", "Taxes": "3268"}, {"Sell": "212", "List": "230", "Living": "39", "Rooms": "12", "Beds": "5", "Baths": "3", "Age": "202", "Acres": "4.29", "Taxes": "3648"}, {"Sell": "145", "List": "145", "Living": "18", "Rooms": "8", "Beds": "4", "Baths": "2", "Age": "44", "Acres": "0.22", "Taxes": "2783"}, {"Sell": "129", "List": "135", "Living": "10", "Rooms": "6", "Beds": "3", "Baths": "1", "Age": "15", "Acres": "1.00", "Taxes": "2438"}, {"Sell": "143", "List": "145", "Living": "21", "Rooms": "7", "Beds": "4", "Baths": "2", "Age": "10", "Acres": "1.20", "Taxes": "3529"}, {"Sell": "247", "List": "252", "Living": "29", "Rooms": "9", "Beds": "4", "Baths": "2", "Age": "4", "Acres": "1.25", "Taxes": "4626"}, {"Sell": "111", "List": "120", "Living": "15", "Rooms": "8", "Beds": "3", "Baths": "1", "Age": "97", "Acres": "1.11", "Taxes": "3205"}, {"Sell": "133", "List": "145", "Living": "26", "Rooms": "7", "Beds": "3", "Baths": "1", "Age": "42", "Acres": "0.36", "Taxes": "3059"}] jc-1.17.3/tests/fixtures/generic/csv-insurance.csv000066400000000000000000001510701415226333200221300ustar00rootroot00000000000000policyID,statecode,county,eq_site_limit,hu_site_limit,fl_site_limit,fr_site_limit,tiv_2011,tiv_2012,eq_site_deductible,hu_site_deductible,fl_site_deductible,fr_site_deductible,point_latitude,point_longitude,line,construction,point_granularity 119736,FL,CLAY COUNTY,498960,498960,498960,498960,498960,792148.9,0,9979.2,0,0,30.102261,-81.711777,Residential,Masonry,1 448094,FL,CLAY COUNTY,1322376.3,1322376.3,1322376.3,1322376.3,1322376.3,1438163.57,0,0,0,0,30.063936,-81.707664,Residential,Masonry,3 206893,FL,CLAY COUNTY,190724.4,190724.4,190724.4,190724.4,190724.4,192476.78,0,0,0,0,30.089579,-81.700455,Residential,Wood,1 333743,FL,CLAY COUNTY,0,79520.76,0,0,79520.76,86854.48,0,0,0,0,30.063236,-81.707703,Residential,Wood,3 172534,FL,CLAY COUNTY,0,254281.5,0,254281.5,254281.5,246144.49,0,0,0,0,30.060614,-81.702675,Residential,Wood,1 785275,FL,CLAY COUNTY,0,515035.62,0,0,515035.62,884419.17,0,0,0,0,30.063236,-81.707703,Residential,Masonry,3 995932,FL,CLAY COUNTY,0,19260000,0,0,19260000,20610000,0,0,0,0,30.102226,-81.713882,Commercial,Reinforced Concrete,1 223488,FL,CLAY COUNTY,328500,328500,328500,328500,328500,348374.25,0,16425,0,0,30.102217,-81.707146,Residential,Wood,1 433512,FL,CLAY COUNTY,315000,315000,315000,315000,315000,265821.57,0,15750,0,0,30.118774,-81.704613,Residential,Wood,1 142071,FL,CLAY COUNTY,705600,705600,705600,705600,705600,1010842.56,14112,35280,0,0,30.100628,-81.703751,Residential,Masonry,1 253816,FL,CLAY COUNTY,831498.3,831498.3,831498.3,831498.3,831498.3,1117791.48,0,0,0,0,30.10216,-81.719444,Residential,Masonry,1 894922,FL,CLAY COUNTY,0,24059.09,0,0,24059.09,33952.19,0,0,0,0,30.095957,-81.695099,Residential,Wood,1 422834,FL,CLAY COUNTY,0,48115.94,0,0,48115.94,66755.39,0,0,0,0,30.100073,-81.739822,Residential,Wood,1 582721,FL,CLAY COUNTY,0,28869.12,0,0,28869.12,42826.99,0,0,0,0,30.09248,-81.725167,Residential,Wood,1 842700,FL,CLAY COUNTY,0,56135.64,0,0,56135.64,50656.8,0,0,0,0,30.101356,-81.726248,Residential,Wood,1 874333,FL,CLAY COUNTY,0,48115.94,0,0,48115.94,67905.07,0,0,0,0,30.113743,-81.727463,Residential,Wood,1 580146,FL,CLAY COUNTY,0,48115.94,0,0,48115.94,66938.9,0,0,0,0,30.121655,-81.732391,Residential,Wood,3 456149,FL,CLAY COUNTY,0,80192.49,0,0,80192.49,86421.04,0,0,0,0,30.109537,-81.741661,Residential,Wood,1 767862,FL,CLAY COUNTY,0,48115.94,0,0,48115.94,73798.5,0,0,0,0,30.11824,-81.745335,Residential,Wood,3 353022,FL,CLAY COUNTY,0,60946.79,0,0,60946.79,62467.29,0,0,0,0,30.065799,-81.717416,Residential,Wood,1 367814,FL,CLAY COUNTY,0,28869.12,0,0,28869.12,42727.74,0,0,0,0,30.082993,-81.710581,Residential,Wood,1 671392,FL,CLAY COUNTY,0,13410000,0,0,13410000,11700000,0,0,0,0,30.091921,-81.711929,Commercial,Reinforced Concrete,3 772887,FL,CLAY COUNTY,0,1669113.93,0,0,1669113.93,2099127.76,0,0,0,0,30.117352,-81.711884,Residential,Masonry,1 983122,FL,CLAY COUNTY,0,179562.23,0,0,179562.23,211372.57,0,0,0,0,30.095783,-81.713181,Residential,Wood,3 934215,FL,CLAY COUNTY,0,177744.16,0,0,177744.16,157171.16,0,0,0,0,30.110518,-81.727478,Residential,Wood,1 385951,FL,CLAY COUNTY,0,17757.58,0,0,17757.58,16948.72,0,0,0,0,30.10288,-81.705719,Residential,Wood,1 716332,FL,CLAY COUNTY,0,130129.87,0,0,130129.87,101758.43,0,0,0,0,30.068468,-81.71624,Residential,Wood,1 751262,FL,CLAY COUNTY,0,42854.77,0,0,42854.77,63592.88,0,0,0,0,30.068468,-81.71624,Residential,Wood,1 633663,FL,CLAY COUNTY,0,785.58,0,0,785.58,662.18,0,0,0,0,30.068468,-81.71624,Residential,Wood,1 105851,FL,CLAY COUNTY,0,170361.91,0,0,170361.91,177176.38,0,0,0,0,30.068468,-81.71624,Residential,Wood,1 710400,FL,CLAY COUNTY,0,1430.89,0,0,1430.89,1861.41,0,0,0,0,30.068468,-81.71624,Residential,Wood,1 703001,FL,CLAY COUNTY,0,129913.27,0,0,129913.27,101692.86,0,0,0,0,30.079785,-81.706865,Residential,Wood,4 352792,FL,CLAY COUNTY,0,366285.62,0,0,366285.62,507164.19,0,0,0,0,30.08012,-81.718452,Residential,Masonry,1 717603,FL,CLAY COUNTY,0,22512.61,0,0,22512.61,28637.17,0,0,0,0,30.08012,-81.718452,Residential,Wood,1 937659,FL,SUWANNEE COUNTY,0,9246.6,0,9246.6,9246.6,10880.22,0,0,0,0,29.959805,-82.926659,Residential,Wood,3 294022,FL,SUWANNEE COUNTY,0,96164.64,0,0,96164.64,69357.78,0,0,0,0,29.959805,-82.926659,Residential,Wood,3 410500,FL,SUWANNEE COUNTY,0,11095.92,0,0,11095.92,12737.89,0,0,0,0,29.959805,-82.926659,Residential,Wood,3 524433,FL,SUWANNEE COUNTY,218475,218475,218475,218475,218475,199030.29,0,4369.5,0,0,29.962601,-82.926155,Residential,Wood,3 779298,FL,SUWANNEE COUNTY,1400904,1400904,1400904,1400904,1400904,1772984.1,0,0,0,0,29.962601,-82.926155,Residential,Masonry,3 491831,FL,SUWANNEE COUNTY,4365,4365,4365,4365,4365,4438.05,0,87.3,0,0,29.962601,-82.926155,Residential,Wood,3 814637,FL,SUWANNEE COUNTY,4365,4365,4365,4365,4365,6095.72,0,87.3,0,0,29.962601,-82.926155,Residential,Wood,3 737515,FL,SUWANNEE COUNTY,39789,39789,39789,39789,39789,58106.58,0,0,0,0,29.962601,-82.926155,Residential,Wood,3 222653,FL,SUWANNEE COUNTY,24867,24867,24867,24867,24867,18969.79,0,0,0,0,29.962601,-82.926155,Residential,Wood,3 788543,FL,SUWANNEE COUNTY,213876,213876,213876,213876,213876,261435.18,0,0,0,0,29.962601,-82.926155,Residential,Wood,3 691681,FL,SUWANNEE COUNTY,69435,69435,69435,69435,69435,93674.34,0,1388.7,0,0,29.960735,-82.92542,Residential,Wood,3 368807,FL,SUWANNEE COUNTY,14922,14922,14922,14922,14922,12333.03,0,0,0,0,29.960735,-82.92542,Residential,Wood,3 174002,FL,SUWANNEE COUNTY,165546,165546,165546,165546,165546,239134.51,0,0,0,0,29.963396,-82.916763,Residential,Wood,1 198760,FL,SUWANNEE COUNTY,72837,72837,72837,72837,72837,86637.86,0,0,0,0,29.963396,-82.916763,Residential,Wood,1 831395,FL,SUWANNEE COUNTY,72837,72837,72837,72837,72837,98147.86,0,0,0,0,29.963396,-82.916763,Residential,Wood,1 305698,FL,SUWANNEE COUNTY,19440,19440,19440,19440,19440,30658.59,0,388.8,0,0,29.963396,-82.916763,Residential,Wood,1 515722,FL,SUWANNEE COUNTY,9945,9945,9945,9945,9945,11551.12,0,198.9,0,0,29.963396,-82.916763,Residential,Wood,1 415582,FL,SUWANNEE COUNTY,0,255878.61,0,0,255878.61,345894.66,0,0,0,0,29.958415,-82.92394,Residential,Wood,3 783533,FL,SUWANNEE COUNTY,0,153527.17,0,0,153527.17,138228.8,0,0,0,0,29.9696,-82.92767,Residential,Wood,4 640802,FL,SUWANNEE COUNTY,0,255878.61,0,0,255878.61,177339.74,0,0,0,0,29.959404,-82.927582,Residential,Wood,1 403866,FL,SUWANNEE COUNTY,0,102351.45,0,0,102351.45,95132.8,0,0,0,0,29.958904,-82.922729,Residential,Wood,3 828788,FL,SUWANNEE COUNTY,0,155489.66,0,0,155489.66,145139.65,0,0,0,0,29.95822,-82.922424,Residential,Wood,1 751490,FL,SUWANNEE COUNTY,0,137233.8,0,0,137233.8,114919.58,0,0,0,0,29.965832,-82.933777,Residential,Wood,4 972562,FL,SUWANNEE COUNTY,0,123596.05,0,0,123596.05,183015.09,0,0,0,0,29.965721,-82.933777,Residential,Wood,4 367541,FL,SUWANNEE COUNTY,0,107111.11,0,0,107111.11,88218.85,0,0,0,0,29.965717,-82.933777,Residential,Wood,4 481360,FL,SUWANNEE COUNTY,0,96309.32,0,0,96309.32,85911,0,0,0,0,29.95775,-82.923635,Residential,Wood,3 920232,FL,NASSAU COUNTY,0,104031.7,0,0,104031.7,168443.97,0,0,0,0,30.39431,-81.93397,Residential,Wood,1 727659,FL,NASSAU COUNTY,338944.5,338944.5,338944.5,338944.5,338944.5,485816.61,0,0,0,0,30.56267,-81.830429,Residential,Wood,1 471817,FL,NASSAU COUNTY,272349,272349,272349,272349,272349,414565.56,0,0,0,0,30.56267,-81.830429,Residential,Wood,1 983043,FL,NASSAU COUNTY,129690,129690,129690,129690,129690,129635.53,0,0,0,0,30.561651,-81.830193,Residential,Wood,1 578286,FL,NASSAU COUNTY,123210,123210,123210,123210,123210,120345.61,0,0,0,0,30.56267,-81.830429,Residential,Wood,1 347276,FL,NASSAU COUNTY,0,3698.64,0,0,3698.64,3939.13,0,0,0,0,30.56106,-81.82632,Residential,Wood,3 477786,FL,NASSAU COUNTY,2115760.5,2115760.5,0,0,2115760.5,3057739.39,0,0,0,0,30.5579,-81.8249,Commercial,Reinforced Masonry,4 265907,FL,NASSAU COUNTY,0,93548.58,0,0,93548.58,118401.07,0,0,0,0,30.56106,-81.82632,Residential,Wood,3 107560,FL,NASSAU COUNTY,0,1037311.14,0,0,1037311.14,1487255.23,0,0,0,0,30.56106,-81.82632,Residential,Masonry,3 908183,FL,NASSAU COUNTY,0,15463.3,0,0,15463.3,11825.56,0,0,0,0,30.57185,-81.82383,Residential,Wood,3 356024,FL,NASSAU COUNTY,0,13893.35,0,0,13893.35,13988.5,0,0,0,0,30.562835,-81.826525,Residential,Wood,3 575299,FL,NASSAU COUNTY,0,316618.23,0,0,316618.23,230328.99,0,0,0,0,30.567566,-81.826584,Residential,Wood,1 790478,FL,NASSAU COUNTY,0,54834.66,0,0,54834.66,63053.72,0,0,0,0,30.60895,-81.83645,Residential,Wood,3 801776,FL,NASSAU COUNTY,0,295269.11,0,0,295269.11,488965.65,0,0,0,0,30.59925,-81.81973,Residential,Wood,1 291781,FL,NASSAU COUNTY,0,723734.17,0,0,723734.17,955908.09,0,0,0,0,30.53674,-81.77496,Residential,Masonry,3 537286,FL,NASSAU COUNTY,0,1741572,0,1741572,1741572,1455184.42,0,0,0,0,30.555161,-81.825684,Residential,Masonry,1 289305,FL,COLUMBIA COUNTY,135450,135450,135450,135450,135450,164978.1,0,0,0,0,30.105968,-82.66227,Residential,Wood,4 697409,FL,COLUMBIA COUNTY,60300,60300,60300,60300,60300,77678.46,0,0,0,0,30.1018,-82.7094,Residential,Wood,1 633944,FL,COLUMBIA COUNTY,22500,22500,22500,22500,22500,19501.76,0,0,0,0,30.1018,-82.7094,Residential,Wood,4 963511,FL,COLUMBIA COUNTY,0,34212.42,0,0,34212.42,33250.37,0,0,0,0,30.1018,-82.7094,Residential,Wood,4 729649,FL,COLUMBIA COUNTY,0,460128.2,0,0,460128.2,626142.46,0,0,0,0,30.1653,-82.73404,Residential,Masonry,1 862584,FL,COLUMBIA COUNTY,0,32169.69,0,0,32169.69,37291.11,0,0,0,0,30.1018,-82.7094,Residential,Wood,4 371891,FL,COLUMBIA COUNTY,0,50550.75,0,0,50550.75,49526.38,0,0,0,0,30.17399,-82.57017,Residential,Wood,4 785595,FL,COLUMBIA COUNTY,42300,42300,42300,42300,42300,53762.62,0,0,0,0,30.1515,-82.6126,Residential,Wood,3 567696,FL,COLUMBIA COUNTY,0,10171.26,0,0,10171.26,16798.29,0,0,0,0,30.16269,-82.64,Residential,Wood,4 219025,FL,COLUMBIA COUNTY,0,155342.88,0,0,155342.88,176189.89,0,0,0,0,30.16269,-82.64,Residential,Wood,4 447216,FL,COLUMBIA COUNTY,0,3698.64,0,0,3698.64,4424.48,0,0,0,0,30.16269,-82.64,Residential,Wood,4 305141,FL,COLUMBIA COUNTY,0,4623.3,0,4623.3,4623.3,4525.86,0,0,0,0,30.16269,-82.64,Residential,Wood,4 625575,FL,COLUMBIA COUNTY,0,33287.76,0,0,33287.76,27375.62,0,0,0,0,30.16269,-82.64,Residential,Wood,4 262109,FL,COLUMBIA COUNTY,0,21267.18,0,0,21267.18,24840.49,0,0,0,0,30.163641,-82.640976,Residential,Wood,1 228457,FL,COLUMBIA COUNTY,0,729556.74,0,0,729556.74,889825.76,0,0,0,0,30.163641,-82.640976,Residential,Masonry,1 622799,FL,COLUMBIA COUNTY,0,350446.14,0,0,350446.14,438049.26,0,0,0,0,30.163641,-82.640976,Residential,Wood,1 233271,FL,COLUMBIA COUNTY,0,2135964.6,0,2135964.6,2135964.6,1728721.59,0,0,0,0,30.163641,-82.640976,Commercial,Reinforced Masonry,1 932950,FL,COLUMBIA COUNTY,0,4623.3,0,4623.3,4623.3,4782.1,0,0,0,0,30.163641,-82.640976,Residential,Wood,1 641952,FL,COLUMBIA COUNTY,0,2469639.6,0,2469639.6,2469639.6,2708463.63,0,0,0,0,30.1515,-82.6126,Commercial,Reinforced Masonry,4 796260,FL,COLUMBIA COUNTY,0,914073.3,0,914073.3,914073.3,1296439.3,0,0,0,0,30.1515,-82.6126,Residential,Masonry,4 301822,FL,COLUMBIA COUNTY,0,3042940.5,0,3042940.5,3042940.5,3181868.99,0,0,0,0,30.1515,-82.6126,Commercial,Reinforced Masonry,4 559927,FL,COLUMBIA COUNTY,0,234997.65,0,0,234997.65,255975.89,0,0,0,0,30.1515,-82.6126,Residential,Wood,4 224400,FL,COLUMBIA COUNTY,0,912600,0,912600,912600,1147247.71,0,0,0,0,30.1515,-82.6126,Residential,Masonry,4 123936,FL,COLUMBIA COUNTY,0,1920744.9,0,1920744.9,1920744.9,2837762.3,0,0,0,0,30.1515,-82.6126,Commercial,Reinforced Masonry,4 333818,FL,COLUMBIA COUNTY,0,455754.6,0,455754.6,455754.6,696809.59,0,0,0,0,30.1515,-82.6126,Residential,Masonry,4 254323,FL,COLUMBIA COUNTY,0,1552693.95,0,0,1552693.95,1552594.58,0,0,0,0,30.1515,-82.6126,Residential,Masonry,4 247444,FL,COLUMBIA COUNTY,0,8910,0,8910,8910,13521.83,0,0,0,0,30.1515,-82.6126,Residential,Wood,4 882598,FL,COLUMBIA COUNTY,0,398968.2,0,398968.2,398968.2,424087.24,0,0,0,0,30.1515,-82.6126,Residential,Masonry,4 386918,FL,COLUMBIA COUNTY,0,4500,0,4500,4500,4238.41,0,0,0,0,30.1515,-82.6126,Residential,Wood,4 497337,FL,COLUMBIA COUNTY,0,31071.6,0,31071.6,31071.6,57802.5,0,0,0,0,30.1515,-82.6126,Residential,Wood,4 526844,FL,COLUMBIA COUNTY,0,4956125.85,0,0,4956125.85,7279557.65,0,0,0,0,30.1515,-82.6126,Commercial,Reinforced Masonry,4 623400,FL,COLUMBIA COUNTY,0,40500,0,40500,40500,34160.94,0,0,0,0,30.1515,-82.6126,Residential,Wood,4 826170,FL,COLUMBIA COUNTY,0,135868.99,0,0,135868.99,234280.26,0,0,0,0,30.185885,-82.614795,Residential,Wood,1 185483,FL,COLUMBIA COUNTY,0,36784.23,0,0,36784.23,58447.64,0,0,0,0,30.185885,-82.614795,Residential,Wood,1 920003,FL,COLUMBIA COUNTY,0,1086940.9,0,0,1086940.9,1770235.43,0,0,0,0,30.185885,-82.614795,Residential,Masonry,1 274246,FL,COLUMBIA COUNTY,0,16767.17,0,0,16767.17,17228.6,0,0,0,0,30.16649,-82.63503,Residential,Wood,1 423636,FL,COLUMBIA COUNTY,0,1404900,0,1404900,1404900,1840643.78,0,42147,0,0,30.176,-82.65581,Residential,Masonry,1 970906,FL,COLUMBIA COUNTY,0,4696520.5,0,0,4696520.5,6342697.9,0,0,450000,0,30.00777,-82.59694,Commercial,Reinforced Masonry,3 227898,FL,COLUMBIA COUNTY,0,67892.48,0,0,67892.48,86628.09,0,0,0,0,30.17509,-82.66252,Residential,Wood,1 525138,FL,COLUMBIA COUNTY,0,86056.32,0,0,86056.32,125938.17,0,0,0,0,30.17501,-82.66205,Residential,Wood,1 923627,FL,COLUMBIA COUNTY,0,67892.48,0,0,67892.48,64169.8,0,0,0,0,30.174776,-82.662277,Residential,Wood,1 619743,FL,COLUMBIA COUNTY,0,67892.48,0,0,67892.48,80898.23,0,0,0,0,30.17476,-82.66251,Residential,Wood,1 910727,FL,COLUMBIA COUNTY,0,86056.32,0,0,86056.32,91244.65,0,0,0,0,30.1745,-82.66205,Residential,Wood,1 363647,FL,COLUMBIA COUNTY,0,67892.48,0,0,67892.48,92333.77,0,0,0,0,30.17447,-82.66251,Residential,Wood,1 512519,FL,COLUMBIA COUNTY,0,101009.36,0,0,101009.36,98181.1,0,0,0,0,30.17417,-82.66218,Residential,Wood,1 904304,FL,COLUMBIA COUNTY,0,67892.48,0,0,67892.48,66272.56,0,0,0,0,30.17451,-82.66351,Residential,Wood,1 835349,FL,COLUMBIA COUNTY,0,67892.48,0,0,67892.48,99945.87,0,0,0,0,30.17475,-82.66314,Residential,Wood,1 891725,FL,COLUMBIA COUNTY,0,86056.32,0,0,86056.32,139415.11,0,0,0,0,30.17514,-82.66341,Residential,Wood,1 923503,FL,COLUMBIA COUNTY,0,86056.32,0,0,86056.32,106664.4,0,0,0,0,30.17474,-82.66348,Residential,Wood,1 292347,FL,COLUMBIA COUNTY,0,132603.34,0,0,132603.34,115117.07,0,0,0,0,30.17664,-82.66314,Residential,Wood,3 363828,FL,COLUMBIA COUNTY,0,132603.34,0,0,132603.34,216561.94,0,0,0,0,30.17638,-82.66314,Residential,Wood,3 110490,FL,COLUMBIA COUNTY,0,91764.15,0,0,91764.15,70364.02,0,0,0,0,30.17623,-82.66406,Residential,Wood,3 480733,FL,COLUMBIA COUNTY,0,457854.5,0,0,457854.5,345588.57,0,0,0,0,30.17698,-82.67019,Residential,Masonry,4 993346,FL,COLUMBIA COUNTY,0,385480.82,0,0,385480.82,558330.42,0,0,0,0,30.174486,-82.671326,Residential,Masonry,4 934992,FL,ST JOHNS COUNTY,0,213596.46,0,0,213596.46,190329.82,0,0,0,0,29.7917,-81.4271,Residential,Wood,4 645841,FL,ST JOHNS COUNTY,0,1051338.42,0,0,1051338.42,1069841.98,0,0,0,0,29.7917,-81.4271,Residential,Masonry,4 747846,FL,ST JOHNS COUNTY,0,6472.62,0,0,6472.62,9957.87,0,0,0,0,29.7917,-81.4271,Residential,Wood,4 482457,FL,ST JOHNS COUNTY,0,159041.52,0,0,159041.52,249984.64,0,0,0,0,29.776566,-81.47171,Residential,Wood,1 574787,FL,ST JOHNS COUNTY,0,12945.24,0,0,12945.24,19024.97,0,0,0,0,29.776566,-81.47171,Residential,Wood,1 831418,FL,ST JOHNS COUNTY,0,29589.12,0,0,29589.12,35207.53,0,0,0,0,29.776566,-81.47171,Residential,Wood,1 968562,FL,ST JOHNS COUNTY,0,12945.24,0,0,12945.24,16859.05,0,0,0,0,29.776566,-81.47171,Residential,Wood,1 576324,FL,ST JOHNS COUNTY,29061,29061,29061,29061,29061,40749.33,0,0,0,0,29.7255,-81.466309,Residential,Wood,1 290435,FL,ST JOHNS COUNTY,48087,48087,48087,48087,48087,68008.1,0,0,0,0,29.7255,-81.466309,Residential,Wood,1 526086,FL,ST JOHNS COUNTY,128628,128628,128628,128628,128628,133425.18,0,0,0,0,29.7255,-81.466309,Residential,Wood,1 119823,FL,ST JOHNS COUNTY,128628,128628,128628,128628,128628,168246.71,0,0,0,0,29.7255,-81.466309,Residential,Wood,1 497414,FL,ST JOHNS COUNTY,128628,128628,128628,128628,128628,176279.14,0,0,0,0,29.7255,-81.466309,Residential,Wood,1 340883,FL,ST JOHNS COUNTY,4968,4968,4968,4968,4968,5265.92,0,0,0,0,29.7255,-81.466309,Residential,Wood,1 892551,FL,ST JOHNS COUNTY,157005,157005,157005,157005,157005,131774.3,0,3140.1,0,0,29.7255,-81.466309,Residential,Wood,1 670595,FL,ST JOHNS COUNTY,459,459,459,459,459,847.36,0,0,0,0,29.7255,-81.466309,Residential,Wood,1 194101,FL,ST JOHNS COUNTY,459,459,459,459,459,428.69,0,0,0,0,29.7255,-81.466309,Residential,Wood,1 167200,FL,ST JOHNS COUNTY,1062,1062,1062,1062,1062,1602.72,0,0,0,0,29.7255,-81.466309,Residential,Wood,1 139064,FL,ST JOHNS COUNTY,2304,2304,2304,2304,2304,2474.16,0,0,0,0,29.7255,-81.466309,Residential,Wood,1 846636,FL,ST JOHNS COUNTY,1476,1476,1476,1476,1476,1935.04,0,0,0,0,29.7255,-81.466309,Residential,Wood,1 310177,FL,NASSAU COUNTY,185040,185040,185040,185040,185040,313975.87,0,0,0,0,30.57332,-81.45291,Residential,Wood,1 865452,FL,NASSAU COUNTY,0,11095.92,0,0,11095.92,11961.62,0,0,0,0,30.67464,-81.46114,Residential,Wood,3 783429,FL,NASSAU COUNTY,0,8321.94,0,0,8321.94,9646.79,0,0,0,0,30.67464,-81.46114,Residential,Wood,3 878060,FL,NASSAU COUNTY,0,199726.56,0,0,199726.56,277743.75,0,0,0,0,30.67423,-81.46052,Residential,Wood,1 935342,FL,NASSAU COUNTY,0,118356.48,0,0,118356.48,182860.76,0,0,0,0,30.67423,-81.46052,Residential,Wood,1 456376,FL,NASSAU COUNTY,0,17568.54,0,0,17568.54,29936.79,0,0,0,0,30.67423,-81.46052,Residential,Wood,1 363001,FL,NASSAU COUNTY,0,147945.6,0,147945.6,147945.6,238338.59,0,0,0,0,30.67453,-81.46016,Residential,Wood,1 478864,FL,NASSAU COUNTY,0,724933.44,0,0,724933.44,767347.85,0,0,0,0,30.67513,-81.44708,Residential,Masonry,1 600402,FL,NASSAU COUNTY,0,8284485.6,0,0,8284485.6,8073943.68,0,0,0,0,30.64687,-81.45801,Commercial,Reinforced Masonry,1 483983,FL,NASSAU COUNTY,438498,438498,0,0,438498,636264.11,0,0,0,0,30.650143,-81.454407,Residential,Masonry,1 991615,FL,NASSAU COUNTY,0,99960.9,0,0,99960.9,88679.21,0,0,0,0,30.6202,-81.4719,Residential,Wood,4 644573,FL,NASSAU COUNTY,0,669692.78,0,0,669692.78,841130.78,0,0,0,0,30.576765,-81.453979,Residential,Masonry,1 853278,FL,NASSAU COUNTY,0,240539.39,0,0,240539.39,412765.59,0,0,0,0,30.576765,-81.453979,Residential,Wood,1 100658,FL,NASSAU COUNTY,0,331518.28,0,0,331518.28,464703.76,0,0,0,0,30.6202,-81.4719,Residential,Wood,4 433115,FL,NASSAU COUNTY,0,5919.86,0,0,5919.86,9839.94,0,0,0,0,30.576765,-81.453979,Residential,Wood,1 760337,FL,NASSAU COUNTY,0,77426.73,0,0,77426.73,73196.13,0,0,0,0,30.61988,-81.46815,Residential,Wood,1 884738,FL,NASSAU COUNTY,0,765763.8,0,0,765763.8,735948.78,0,0,0,0,30.576765,-81.453979,Residential,Masonry,1 610102,FL,NASSAU COUNTY,0,7532014.45,0,0,7532014.45,10710000,0,0,0,0,30.671095,-81.462097,Commercial,Reinforced Masonry,1 830823,FL,NASSAU COUNTY,0,963962.79,0,0,963962.79,977226.92,0,0,0,0,30.67,-81.462,Residential,Masonry,3 618364,FL,NASSAU COUNTY,0,121066.57,0,0,121066.57,115414.7,0,0,0,0,30.596535,-81.546837,Residential,Wood,1 712563,FL,NASSAU COUNTY,0,70964.84,0,0,70964.84,72362.85,0,0,0,0,30.596535,-81.546837,Residential,Wood,1 493030,FL,NASSAU COUNTY,0,755749,0,0,755749,658571.77,0,0,0,0,30.57326,-81.45367,Residential,Masonry,1 188150,FL,NASSAU COUNTY,0,2162232,0,2162232,2162232,2520816.55,0,0,0,0,30.65372,-81.45105,Commercial,Reinforced Masonry,1 589642,FL,NASSAU COUNTY,0,615141.68,0,0,615141.68,895926.17,0,0,0,0,30.63945,-81.455553,Residential,Masonry,1 846109,FL,NASSAU COUNTY,0,135000,0,135000,135000,138827.52,0,4050,0,0,30.570326,-81.451576,Residential,Wood,3 399079,FL,NASSAU COUNTY,0,161748,0,161748,161748,235301.93,0,0,0,0,30.5708,-81.44959,Residential,Wood,1 680135,FL,NASSAU COUNTY,0,164484,0,164484,164484,194814.85,0,0,0,0,30.5708,-81.44959,Residential,Wood,1 621379,FL,NASSAU COUNTY,0,170532,0,170532,170532,178465.15,0,0,0,0,30.571087,-81.448578,Residential,Wood,1 606710,FL,NASSAU COUNTY,0,181980,0,181980,181980,181216.05,0,5459.4,0,0,30.570854,-81.448212,Residential,Wood,1 443319,FL,NASSAU COUNTY,0,181980,0,181980,181980,151151.13,0,5459.4,0,0,30.571154,-81.448433,Residential,Wood,1 228591,FL,NASSAU COUNTY,0,186012,0,186012,186012,176389.97,0,0,0,0,30.5708,-81.44959,Residential,Wood,1 721610,FL,NASSAU COUNTY,0,192348,0,192348,192348,210005.55,0,0,0,0,30.571323,-81.450188,Residential,Wood,1 507395,FL,NASSAU COUNTY,0,197604,0,197604,197604,203450.71,0,0,0,0,30.570711,-81.448067,Residential,Wood,1 213399,FL,NASSAU COUNTY,0,198468,0,198468,198468,202538.58,0,0,0,0,30.571777,-81.449326,Residential,Wood,1 579400,FL,NASSAU COUNTY,0,198612,0,198612,198612,226675.88,0,0,0,0,30.5716,-81.45134,Residential,Wood,1 509951,FL,NASSAU COUNTY,0,200052,0,200052,200052,335395.98,0,0,0,0,30.57098,-81.44838,Residential,Wood,1 930798,FL,NASSAU COUNTY,0,201276,0,201276,201276,216909.11,0,0,0,0,30.571613,-81.450577,Residential,Wood,1 729247,FL,NASSAU COUNTY,0,207324,0,207324,207324,252344.61,0,0,0,0,30.5708,-81.44959,Residential,Wood,1 288344,FL,NASSAU COUNTY,0,208836,0,208836,208836,310058.81,0,0,0,0,30.5708,-81.44959,Residential,Wood,1 275351,FL,NASSAU COUNTY,0,212436,0,212436,212436,225030.91,0,0,0,0,30.57164,-81.450279,Residential,Wood,1 976690,FL,NASSAU COUNTY,0,218052,0,218052,218052,332681.94,0,0,0,0,30.571306,-81.45015,Residential,Wood,1 507111,FL,NASSAU COUNTY,0,218412,0,218412,218412,222125,0,0,0,0,30.571608,-81.450661,Residential,Wood,1 547458,FL,NASSAU COUNTY,0,221076,0,221076,221076,277280.37,0,0,0,0,30.571609,-81.450615,Residential,Wood,1 827732,FL,NASSAU COUNTY,0,226764,0,226764,226764,303833.37,0,0,0,0,30.571665,-81.450089,Residential,Wood,1 229489,FL,NASSAU COUNTY,0,237132,0,237132,237132,282225.02,0,0,0,0,30.571615,-81.450531,Residential,Wood,1 175251,FL,NASSAU COUNTY,0,239652,0,239652,239652,178583.88,0,0,0,0,30.571812,-81.448822,Residential,Wood,1 590043,FL,NASSAU COUNTY,0,245052,0,245052,245052,241166.46,0,0,0,0,30.571596,-81.450874,Residential,Wood,1 476037,FL,NASSAU COUNTY,0,245052,0,245052,245052,306551.23,0,0,0,0,30.5708,-81.44959,Residential,Wood,1 674960,FL,NASSAU COUNTY,0,257868,0,257868,257868,338372.33,0,0,0,0,30.57086,-81.448174,Residential,Wood,1 743790,FL,NASSAU COUNTY,0,6381518.4,0,6381518.4,6381518.4,8757880.98,0,0,0,0,30.570326,-81.451576,Commercial,Reinforced Masonry,3 817283,FL,NASSAU COUNTY,0,15390000,0,15390000,15390000,11790000,0,461349,0,0,30.570221,-81.451309,Commercial,Reinforced Concrete,1 201980,FL,NASSAU COUNTY,235696.5,235696.5,235696.5,235696.5,235696.5,353171.41,0,0,0,0,30.64448,-81.45489,Residential,Wood,1 351505,FL,NASSAU COUNTY,18000,18000,18000,18000,18000,16830,0,540,0,0,30.653568,-81.449318,Residential,Wood,1 798806,FL,NASSAU COUNTY,1772074.8,1772074.8,1772074.8,1772074.8,1772074.8,1768133.71,0,0,0,0,30.65118,-81.44969,Residential,Masonry,1 153643,FL,NASSAU COUNTY,95922,95922,95922,95922,95922,150073.42,0,0,0,0,30.65118,-81.44969,Residential,Wood,1 683653,FL,NASSAU COUNTY,20763,20763,20763,20763,20763,20966.31,0,0,0,0,30.65118,-81.44969,Residential,Wood,1 475264,FL,NASSAU COUNTY,0,16560000,0,0,16560000,20610000,0,497691,0,0,30.639568,-81.442482,Commercial,Reinforced Concrete,1 912944,FL,NASSAU COUNTY,0,582759.1,0,0,582759.1,1020490.44,0,0,0,0,30.59491,-81.539909,Residential,Masonry,4 945134,FL,NASSAU COUNTY,0,2244.53,0,0,2244.53,2937.46,0,0,0,0,30.59491,-81.539909,Residential,Wood,4 219959,FL,NASSAU COUNTY,0,196396.18,0,0,196396.18,190425.74,0,0,0,0,30.59491,-81.539909,Residential,Wood,4 793504,FL,NASSAU COUNTY,0,21500.33,0,0,21500.33,19687.96,0,0,0,0,30.6119,-81.455986,Residential,Wood,3 450423,FL,NASSAU COUNTY,0,74091.86,0,0,74091.86,110035.31,0,0,0,0,30.596535,-81.546837,Residential,Wood,1 505178,FL,NASSAU COUNTY,0,86863.23,0,0,86863.23,123807.2,0,0,0,0,30.596535,-81.546837,Residential,Wood,1 408688,FL,NASSAU COUNTY,0,796134.02,0,0,796134.02,838972.4,0,0,0,0,30.66665,-81.45235,Residential,Masonry,1 477759,FL,NASSAU COUNTY,0,298522.2,0,0,298522.2,227585.86,0,0,0,0,30.657654,-81.463341,Residential,Wood,1 882441,FL,NASSAU COUNTY,0,23118.64,0,0,23118.64,23505.92,0,0,0,0,30.65838,-81.46358,Residential,Wood,1 727602,FL,NASSAU COUNTY,0,63407.91,0,0,63407.91,78862,0,0,0,0,30.617165,-81.461609,Residential,Wood,1 313226,FL,NASSAU COUNTY,0,285728.39,0,0,285728.39,288837.12,0,0,0,0,30.617874,-81.457794,Residential,Wood,1 337027,FL,NASSAU COUNTY,0,9016.27,0,0,9016.27,9045.12,0,0,0,0,30.663744,-81.453941,Residential,Wood,4 649251,FL,NASSAU COUNTY,0,80915.23,0,0,80915.23,98214.9,0,0,0,0,30.67024,-81.454628,Residential,Wood,3 142564,FL,NASSAU COUNTY,0,28898.3,0,0,28898.3,36004.04,0,0,0,0,30.61945,-81.465965,Residential,Wood,1 197782,FL,NASSAU COUNTY,0,1505741.49,0,0,1505741.49,2197471.6,0,0,0,0,30.610081,-81.446259,Residential,Masonry,1 709787,FL,NASSAU COUNTY,0,53078.59,0,0,53078.59,62305.99,0,0,0,0,30.610081,-81.446259,Residential,Wood,1 655065,FL,NASSAU COUNTY,0,162952.72,0,0,162952.72,185883.43,0,0,0,0,30.67044,-81.46572,Residential,Wood,3 176778,FL,NASSAU COUNTY,0,2261249.55,0,0,2261249.55,1825782.64,0,0,0,0,30.671413,-81.464905,Commercial,Reinforced Masonry,1 559179,FL,NASSAU COUNTY,0,1363101.75,0,0,1363101.75,1619364.87,0,0,0,0,30.65501,-81.45117,Residential,Masonry,1 698071,FL,NASSAU COUNTY,0,295716.54,0,0,295716.54,247758.41,0,0,0,0,30.665545,-81.43205,Residential,Wood,3 642950,FL,NASSAU COUNTY,0,392231.24,0,0,392231.24,344336.66,0,0,0,0,30.63862,-81.43702,Residential,Masonry,4 477240,FL,NASSAU COUNTY,0,192917.17,0,0,192917.17,238214.12,0,0,0,0,30.66665,-81.45235,Residential,Wood,1 672348,FL,NASSAU COUNTY,0,168339.59,0,0,168339.59,269983.03,0,0,0,0,30.63833,-81.44564,Residential,Wood,1 922844,FL,NASSAU COUNTY,0,316029.52,0,0,316029.52,337216.14,0,0,0,0,30.617874,-81.457794,Residential,Wood,1 948580,FL,NASSAU COUNTY,0,151505.63,0,0,151505.63,185310.32,0,0,0,0,30.67069,-81.458395,Residential,Wood,3 364552,FL,NASSAU COUNTY,0,280565.98,0,0,280565.98,329505.66,0,0,0,0,30.65838,-81.46358,Residential,Wood,1 561601,FL,NASSAU COUNTY,0,460128.2,0,0,460128.2,792672.06,0,0,0,0,30.671312,-81.46492,Residential,Masonry,1 584749,FL,NASSAU COUNTY,0,324000,0,324000,324000,506745.07,0,9720,0,0,30.626793,-81.485847,Residential,Wood,1 601327,FL,COLUMBIA COUNTY,212850,212850,212850,212850,212850,340143.88,0,0,0,0,29.925,-82.7109,Residential,Wood,1 302578,FL,COLUMBIA COUNTY,135000,135000,135000,135000,135000,150719.13,0,0,0,0,29.9248,-82.71114,Residential,Wood,1 756585,FL,COLUMBIA COUNTY,94284,94284,94284,94284,94284,100714.17,0,0,0,0,29.90334,-82.63364,Residential,Wood,1 627591,FL,COLUMBIA COUNTY,6300,6300,6300,6300,6300,9566.42,0,0,0,0,29.919149,-82.639236,Residential,Wood,1 663563,FL,COLUMBIA COUNTY,1248407.1,1248407.1,0,0,1248407.1,1417531.31,0,0,0,0,29.9301,-82.7088,Residential,Masonry,3 108959,FL,COLUMBIA COUNTY,0,114170.34,0,0,114170.34,136068.22,0,0,0,0,30.041415,-82.70641,Residential,Wood,3 951069,FL,COLUMBIA COUNTY,0,498344.66,0,0,498344.66,434656.21,0,0,0,0,29.92143,-82.71411,Residential,Masonry,1 490641,FL,BAKER COUNTY,0,910.22,0,0,910.22,1346.55,0,0,0,0,30.265605,-82.16215,Residential,Wood,3 443968,FL,BAKER COUNTY,0,3195.34,0,0,3195.34,4551.39,0,0,0,0,30.27125,-82.160875,Residential,Wood,3 433688,FL,CLAY COUNTY,0,172157.99,0,0,172157.99,171582.99,0,0,0,0,29.980408,-81.658165,Residential,Wood,1 168578,FL,CLAY COUNTY,945000,945000,945000,945000,945000,750524.67,0,0,0,0,30.0517,-81.82975,Residential,Masonry,1 294375,FL,CLAY COUNTY,76500,76500,76500,76500,76500,121368.78,0,0,0,0,30.0517,-81.82975,Residential,Wood,1 902110,FL,CLAY COUNTY,76500,76500,76500,76500,76500,94517.28,0,0,0,0,30.0517,-81.82975,Residential,Wood,1 279816,FL,CLAY COUNTY,431726.4,431726.4,0,0,431726.4,640896.11,0,0,0,0,29.98839,-81.70777,Residential,Masonry,1 994565,FL,CLAY COUNTY,0,11767.98,0,0,11767.98,14137.95,0,0,0,0,29.9826,-81.7238,Residential,Wood,4 930535,FL,CLAY COUNTY,0,15981.99,0,0,15981.99,25400.89,0,0,0,0,29.9826,-81.7238,Residential,Wood,4 844642,FL,CLAY COUNTY,0,35302.09,0,0,35302.09,47059.67,0,0,0,0,29.9826,-81.7238,Residential,Wood,4 292887,FL,CLAY COUNTY,0,26396.15,0,0,26396.15,28938.78,0,0,0,0,29.9826,-81.7238,Residential,Wood,4 655128,FL,CLAY COUNTY,0,7536.5,0,0,7536.5,10216,0,0,0,0,29.9826,-81.7238,Residential,Wood,4 164038,FL,CLAY COUNTY,0,13198.07,0,0,13198.07,16695.56,0,0,0,0,29.9826,-81.7238,Residential,Wood,4 163057,FL,CLAY COUNTY,0,29410.75,0,0,29410.75,25890.52,0,0,0,0,29.9826,-81.7238,Residential,Wood,4 327730,FL,CLAY COUNTY,0,13198.07,0,0,13198.07,11239.53,0,0,0,0,29.9826,-81.7238,Residential,Wood,4 218187,FL,CLAY COUNTY,0,25780.36,0,0,25780.36,35155,0,0,0,0,29.9826,-81.7238,Residential,Wood,4 697530,FL,CLAY COUNTY,0,9806.65,0,0,9806.65,16990.72,0,0,0,0,29.9826,-81.7238,Residential,Wood,4 619053,FL,CLAY COUNTY,0,15992.1,0,0,15992.1,23431.62,0,0,0,0,29.9826,-81.7238,Residential,Wood,4 431406,FL,CLAY COUNTY,0,9806.65,0,0,9806.65,7026.15,0,0,0,0,29.9826,-81.7238,Residential,Wood,3 256801,FL,CLAY COUNTY,0,13198.07,0,0,13198.07,22117.33,0,0,0,0,29.9826,-81.7238,Residential,Wood,4 571398,FL,CLAY COUNTY,0,304842.43,0,0,304842.43,250185.41,0,0,0,0,29.9826,-81.7238,Residential,Wood,3 239669,FL,CLAY COUNTY,0,13198.07,0,0,13198.07,13200.19,0,0,0,0,29.9826,-81.7238,Residential,Wood,3 530369,FL,CLAY COUNTY,0,48252.01,0,0,48252.01,36139.79,0,0,0,0,29.9826,-81.7238,Residential,Wood,4 948187,FL,CLAY COUNTY,0,9806.65,0,0,9806.65,13926.22,0,0,0,0,29.9826,-81.7238,Residential,Wood,3 571059,FL,CLAY COUNTY,0,9190.86,0,0,9190.86,14678.43,0,0,0,0,29.9826,-81.7238,Residential,Wood,4 470539,FL,CLAY COUNTY,0,68931.45,0,0,68931.45,85159.98,0,0,0,0,29.993125,-81.67742,Residential,Wood,3 791046,FL,CLAY COUNTY,0,68931.45,0,0,68931.45,99578.92,0,0,0,0,29.993125,-81.67742,Residential,Wood,3 563971,FL,CLAY COUNTY,0,27572.58,0,0,27572.58,30033.98,0,0,0,0,29.993125,-81.67742,Residential,Wood,3 823903,FL,CLAY COUNTY,0,13786.29,0,0,13786.29,22316.42,0,0,0,0,29.993125,-81.67742,Residential,Wood,3 812504,FL,CLAY COUNTY,0,9190.86,0,0,9190.86,10540.08,0,0,0,0,29.9826,-81.7238,Residential,Wood,4 597719,FL,CLAY COUNTY,0,102937.63,0,0,102937.63,94857.02,0,0,0,0,29.995916,-81.689049,Residential,Wood,1 716513,FL,CLAY COUNTY,0,19605.94,0,0,19605.94,18479.62,0,0,0,0,30.004622,-81.683899,Residential,Wood,3 378286,FL,CLAY COUNTY,0,13198.07,0,0,13198.07,16161.17,0,0,0,0,29.9826,-81.7238,Residential,Wood,4 698982,FL,CLAY COUNTY,0,9806.65,0,0,9806.65,12391.68,0,0,0,0,29.9826,-81.7238,Residential,Wood,4 624550,FL,CLAY COUNTY,0,9806.65,0,0,9806.65,13533.17,0,0,0,0,29.9826,-81.7238,Residential,Wood,4 666076,FL,CLAY COUNTY,0,11764.3,0,0,11764.3,11058.82,0,0,0,0,29.9826,-81.7238,Residential,Wood,4 474145,FL,CLAY COUNTY,0,7619.22,0,0,7619.22,6304.92,0,0,0,0,29.9826,-81.7238,Residential,Wood,4 572929,FL,CLAY COUNTY,0,13198.07,0,0,13198.07,18039.84,0,0,0,0,29.9826,-81.7238,Residential,Wood,4 640205,FL,CLAY COUNTY,0,6433.6,0,0,6433.6,8588.09,0,0,0,0,29.9826,-81.7238,Residential,Wood,3 295930,FL,CLAY COUNTY,0,6617.42,0,0,6617.42,5824.75,0,0,0,0,30.0156,-81.70065,Residential,Wood,3 823004,FL,CLAY COUNTY,0,9806.65,0,0,9806.65,9970.77,0,0,0,0,29.9826,-81.7238,Residential,Wood,4 230536,FL,CLAY COUNTY,0,8712.94,0,0,8712.94,10813.94,0,0,0,0,30.004385,-81.683762,Residential,Wood,3 936142,FL,CLAY COUNTY,0,301000.66,0,0,301000.66,321265.52,0,0,0,0,30.00421,-81.684,Residential,Wood,3 724639,FL,CLAY COUNTY,0,57442.87,0,0,57442.87,86664.06,0,0,0,0,29.9826,-81.7238,Residential,Wood,4 119986,FL,CLAY COUNTY,0,18381.72,0,0,18381.72,15298.37,0,0,0,0,29.9826,-81.7238,Residential,Wood,4 603370,FL,CLAY COUNTY,0,3032.98,0,0,3032.98,4916.61,0,0,0,0,29.9826,-81.7238,Residential,Wood,4 532496,FL,CLAY COUNTY,0,3032.98,0,0,3032.98,4227.37,0,0,0,0,29.9826,-81.7238,Residential,Wood,4 786954,FL,CLAY COUNTY,0,9007.04,0,0,9007.04,7864.77,0,0,0,0,30.00169,-81.71087,Residential,Wood,4 416348,FL,CLAY COUNTY,0,18381.72,0,0,18381.72,27063.92,0,0,0,0,29.9826,-81.7238,Residential,Wood,4 506364,FL,CLAY COUNTY,0,652150.86,0,0,652150.86,614169.6,0,0,0,0,30.006186,-81.698914,Residential,Masonry,1 311994,FL,CLAY COUNTY,0,75824.59,0,0,75824.59,85602.93,0,0,0,0,30.006186,-81.698914,Residential,Wood,1 807442,FL,CLAY COUNTY,0,91908.6,0,0,91908.6,94516.04,0,0,0,0,30.006186,-81.698914,Residential,Wood,1 235695,FL,CLAY COUNTY,0,45954.3,0,0,45954.3,41626.05,0,0,0,0,30.006186,-81.698914,Residential,Wood,1 481294,FL,CLAY COUNTY,0,64336.02,0,0,64336.02,69354.23,0,0,0,0,30.006186,-81.698914,Residential,Wood,1 292670,FL,CLAY COUNTY,0,234366.92,0,0,234366.92,184597.7,0,0,0,0,30.006186,-81.698914,Residential,Wood,1 127739,FL,CLAY COUNTY,0,13786.29,0,0,13786.29,17192.67,0,0,0,0,30.006186,-81.698914,Residential,Wood,1 869056,FL,CLAY COUNTY,0,22977.15,0,0,22977.15,22060.5,0,0,0,0,29.9994,-81.71524,Residential,Wood,3 514471,FL,CLAY COUNTY,0,18381.72,0,0,18381.72,27269.28,0,0,0,0,29.9826,-81.7238,Residential,Wood,3 903764,FL,CLAY COUNTY,0,91908.6,0,0,91908.6,130879.31,0,0,0,0,29.99534,-81.684074,Residential,Wood,3 192068,FL,CLAY COUNTY,0,43840.4,0,0,43840.4,39041.19,0,0,0,0,29.98799,-81.69477,Residential,Wood,3 109815,FL,CLAY COUNTY,0,38601.61,0,0,38601.61,63272.13,0,0,0,0,30.00593,-81.698545,Residential,Wood,3 495339,FL,CLAY COUNTY,0,413588.69,0,0,413588.69,420116.77,0,0,0,0,29.98272,-81.676795,Residential,Masonry,3 752123,FL,CLAY COUNTY,0,13786.29,0,0,13786.29,18320.32,0,0,0,0,29.9826,-81.7238,Residential,Wood,4 412775,FL,CLAY COUNTY,0,22977.15,0,0,22977.15,28403.71,0,0,0,0,30.00228,-81.699965,Residential,Wood,3 249958,FL,CLAY COUNTY,0,25274.86,0,0,25274.86,38878,0,0,0,0,29.96809,-81.65459,Residential,Wood,3 754919,FL,CLAY COUNTY,0,27572.58,0,0,27572.58,24486.1,0,0,0,0,29.989515,-81.687235,Residential,Wood,3 829637,FL,CLAY COUNTY,0,137862.9,0,0,137862.9,127544.55,0,0,0,0,29.989515,-81.687235,Residential,Wood,3 931429,FL,CLAY COUNTY,0,91908.6,0,0,91908.6,97127.17,0,0,0,0,29.989515,-81.687235,Residential,Wood,3 565451,FL,CLAY COUNTY,0,22977.15,0,0,22977.15,31074.07,0,0,0,0,30.00414,-81.700315,Residential,Wood,3 722334,FL,CLAY COUNTY,0,27572.58,0,0,27572.58,36234.34,0,0,0,0,30.00421,-81.684,Residential,Wood,3 630898,FL,CLAY COUNTY,0,77254.74,0,0,77254.74,114400.37,0,0,0,0,29.9817,-81.81295,Residential,Wood,3 166536,FL,CLAY COUNTY,0,212887.5,0,0,212887.5,184477.66,0,0,0,0,29.9817,-81.81295,Residential,Wood,3 469135,FL,CLAY COUNTY,0,653122.95,0,0,653122.95,1049829.83,0,0,0,0,29.98782,-81.69136,Residential,Masonry,1 678786,FL,CLAY COUNTY,0,635702.59,0,0,635702.59,803088.17,0,0,0,0,30.031706,-81.708595,Residential,Masonry,1 284473,FL,CLAY COUNTY,0,781465.69,0,0,781465.69,1174149.07,0,0,0,0,29.839308,-81.661644,Residential,Masonry,3 499389,FL,CLAY COUNTY,0,638884.47,0,0,638884.47,926230.42,0,0,0,0,29.986181,-81.695091,Residential,Masonry,1 541241,FL,CLAY COUNTY,0,1939500,0,1939500,1939500,3345521.13,0,58185,0,0,29.98,-81.69609,Commercial,Reinforced Masonry,1 797586,FL,CLAY COUNTY,0,6760449.39,0,0,6760449.39,6739694.81,0,0,0,0,29.99665,-81.68111,Commercial,Reinforced Masonry,1 812823,FL,CLAY COUNTY,162366.3,162366.3,162366.3,162366.3,162366.3,168942.46,0,0,0,0,30.026604,-81.70697,Residential,Wood,1 598244,FL,CLAY COUNTY,0,648862.42,0,0,648862.42,981993.57,0,0,0,0,29.981771,-81.675621,Residential,Masonry,3 788363,FL,CLAY COUNTY,0,240578.59,0,0,240578.59,192335.37,0,0,0,0,29.997179,-81.736023,Residential,Wood,1 737787,FL,CLAY COUNTY,0,13467.17,0,0,13467.17,14335.1,0,0,0,0,30.005896,-81.730293,Residential,Wood,1 445518,FL,CLAY COUNTY,0,19639.62,0,0,19639.62,24001.58,0,0,0,0,29.892822,-81.670074,Residential,Wood,1 758347,FL,CLAY COUNTY,0,604316.67,0,0,604316.67,622958.63,0,0,0,0,29.983204,-81.755379,Residential,Masonry,1 195133,FL,CLAY COUNTY,0,171459.48,0,0,171459.48,160656.16,0,0,0,0,29.983204,-81.755379,Residential,Wood,1 991548,FL,CLAY COUNTY,0,822091.98,0,0,822091.98,885491.72,0,0,0,0,29.99319,-81.68175,Residential,Masonry,1 696936,FL,CLAY COUNTY,0,85444.69,0,0,85444.69,124562.37,0,0,0,0,30.00093,-81.679455,Residential,Wood,3 393176,FL,CLAY COUNTY,0,26934.33,0,0,26934.33,34616.01,0,0,0,0,30.00135,-81.742455,Residential,Wood,3 626647,FL,CLAY COUNTY,0,162728.27,0,0,162728.27,266906.9,0,0,0,0,30.00135,-81.742455,Residential,Wood,3 915781,FL,CLAY COUNTY,0,589356.89,0,0,589356.89,472322.4,0,0,0,0,30.00135,-81.742455,Residential,Masonry,3 827852,FL,CLAY COUNTY,0,13657.95,0,0,13657.95,19860.19,0,0,0,0,30.00135,-81.742455,Residential,Wood,3 800420,FL,CLAY COUNTY,0,64726.57,0,0,64726.57,71551.34,0,0,0,0,29.983204,-81.755379,Residential,Wood,1 728346,FL,CLAY COUNTY,0,2603338.04,0,0,2603338.04,3496699.52,0,0,0,0,29.983204,-81.755379,Commercial,Reinforced Masonry,1 928642,FL,CLAY COUNTY,0,67335.83,0,0,67335.83,69182.52,0,0,0,0,29.983204,-81.755379,Residential,Wood,1 442061,FL,CLAY COUNTY,0,22445.28,0,0,22445.28,24191.61,0,0,0,0,29.983204,-81.755379,Residential,Wood,1 810826,FL,CLAY COUNTY,0,31984.52,0,0,31984.52,52870.8,0,0,0,0,29.983204,-81.755379,Residential,Wood,1 336798,FL,CLAY COUNTY,0,44890.56,0,0,44890.56,60419.64,0,0,0,0,29.983204,-81.755379,Residential,Wood,1 830917,FL,CLAY COUNTY,0,15341.35,0,0,15341.35,20025.98,0,0,0,0,29.983204,-81.755379,Residential,Wood,1 984232,FL,CLAY COUNTY,0,1748172.94,0,0,1748172.94,2274163.21,0,0,0,0,29.99146,-81.67947,Residential,Masonry,1 203667,FL,CLAY COUNTY,0,212051.77,0,0,212051.77,205713.96,0,0,0,0,30.024078,-81.714539,Residential,Wood,1 395084,FL,CLAY COUNTY,0,238222.96,0,0,238222.96,347967.51,0,0,0,0,30.024078,-81.714539,Residential,Wood,1 869242,FL,CLAY COUNTY,0,174354.92,0,0,174354.92,187374.87,0,0,0,0,30.024033,-81.714836,Residential,Wood,1 704537,FL,CLAY COUNTY,0,29086.84,0,0,29086.84,39703.53,0,0,0,0,29.9826,-81.7238,Residential,Wood,4 692691,FL,CLAY COUNTY,0,49883.51,0,0,49883.51,54682.3,0,0,0,0,29.99501,-81.69407,Residential,Wood,3 580758,FL,CLAY COUNTY,0,33850.85,0,0,33850.85,47324.63,0,0,0,0,30.046192,-81.795082,Residential,Wood,1 515486,FL,CLAY COUNTY,0,14204.49,0,0,14204.49,21284.3,0,0,0,0,30.046192,-81.795082,Residential,Wood,1 884079,FL,CLAY COUNTY,0,60112.94,0,0,60112.94,67485.56,0,0,0,0,30.046192,-81.795082,Residential,Wood,1 491095,FL,CLAY COUNTY,0,776595.4,0,0,776595.4,788694.76,0,0,0,0,29.9826,-81.7238,Residential,Masonry,4 579764,FL,CLAY COUNTY,0,88434.4,0,0,88434.4,110143.27,0,0,0,0,29.9826,-81.7238,Residential,Wood,1 263177,FL,CLAY COUNTY,0,61724.52,0,0,61724.52,50970.62,0,0,0,0,29.992,-81.68678,Residential,Wood,1 710739,FL,CLAY COUNTY,0,33667.92,0,0,33667.92,45290.08,0,0,0,0,29.99327,-81.724515,Residential,Wood,3 156129,FL,CLAY COUNTY,0,64275.42,0,0,64275.42,80342.73,0,0,0,0,29.992,-81.68678,Residential,Wood,1 178800,FL,BRADFORD COUNTY,216363.6,216363.6,0,0,216363.6,347251.89,0,0,0,0,29.869762,-82.202431,Residential,Wood,1 406073,FL,BRADFORD COUNTY,0,106317.27,0,0,106317.27,105384.87,0,0,0,0,29.86261,-82.135475,Residential,Wood,3 450089,FL,BRADFORD COUNTY,0,170207.57,0,0,170207.57,148194.97,0,0,0,0,29.864408,-82.135536,Residential,Wood,1 894206,FL,NASSAU COUNTY,189999.9,189999.9,0,0,189999.9,291171.43,0,0,0,0,30.687055,-81.9198,Residential,Wood,1 472007,FL,NASSAU COUNTY,635996.7,635996.7,0,0,635996.7,1010881.77,0,0,0,0,30.7595,-81.9576,Residential,Masonry,4 500287,FL,NASSAU COUNTY,1729530,1729530,0,0,1729530,2062651.31,0,0,0,0,30.69844,-81.908635,Residential,Masonry,4 365732,FL,NASSAU COUNTY,0,110218.53,0,0,110218.53,114569.52,0,0,0,0,30.690071,-81.919342,Residential,Wood,3 365145,FL,NASSAU COUNTY,0,123995.38,0,0,123995.38,142594.69,0,0,0,0,30.690071,-81.919342,Residential,Wood,3 237841,FL,NASSAU COUNTY,0,13777.78,0,0,13777.78,22931.74,0,0,0,0,30.690071,-81.919342,Residential,Wood,3 497561,FL,NASSAU COUNTY,0,38954.52,0,0,38954.52,30813.03,0,0,0,0,30.692579,-81.923798,Residential,Wood,1 245837,FL,NASSAU COUNTY,0,428020.45,0,0,428020.45,590955.85,0,0,0,0,30.692579,-81.923798,Residential,Masonry,1 732075,FL,NASSAU COUNTY,0,38954.52,0,0,38954.52,44390.39,0,0,0,0,30.687847,-81.928619,Residential,Wood,3 657625,FL,NASSAU COUNTY,0,3505598.5,0,0,3505598.5,5610030.32,0,0,0,0,30.698156,-81.917923,Commercial,Reinforced Masonry,1 790556,FL,NASSAU COUNTY,0,140160.38,0,0,140160.38,195355.54,0,0,0,0,30.692579,-81.923798,Residential,Wood,1 207626,FL,NASSAU COUNTY,0,60397.19,0,0,60397.19,73202.3,0,0,0,0,30.68227,-82.010965,Residential,Wood,3 902008,FL,NASSAU COUNTY,0,1138559.14,0,0,1138559.14,1124171.17,0,0,0,0,30.68758,-81.90805,Residential,Masonry,1 135936,FL,HAMILTON COUNTY,0,4623.3,0,4623.3,4623.3,7055.16,0,0,0,0,30.51869,-82.95187,Residential,Wood,3 997759,FL,HAMILTON COUNTY,0,34212.42,0,0,34212.42,42302.97,0,0,0,0,30.51869,-82.95187,Residential,Wood,3 470224,FL,HAMILTON COUNTY,0,11095.92,0,0,11095.92,10246.42,0,0,0,0,30.51869,-82.95187,Residential,Wood,3 367761,FL,HAMILTON COUNTY,0,25899.23,0,0,25899.23,35000.32,0,0,0,0,30.505239,-82.95285,Residential,Wood,1 285586,FL,HAMILTON COUNTY,0,10211.17,0,0,10211.17,18829.64,0,0,0,0,30.505239,-82.95285,Residential,Wood,1 122164,FL,HAMILTON COUNTY,0,4084.47,0,0,4084.47,3579.34,0,0,0,0,30.496,-82.9527,Residential,Wood,4 152913,FL,HAMILTON COUNTY,0,26920.35,0,0,26920.35,28007.93,0,0,0,0,30.465835,-83.006185,Residential,Wood,3 655156,FL,HAMILTON COUNTY,0,80668.21,0,0,80668.21,70626.63,0,0,0,0,30.523375,-82.95845,Residential,Wood,1 989201,FL,HAMILTON COUNTY,0,70642.7,0,0,70642.7,63476.71,0,0,0,0,30.523375,-82.95845,Residential,Wood,1 207985,FL,HAMILTON COUNTY,0,263169.6,0,0,263169.6,368477.97,0,0,0,0,30.52085,-82.950535,Residential,Wood,4 732449,FL,HAMILTON COUNTY,0,15873.72,0,0,15873.72,12857.71,0,0,0,0,30.51929,-82.94598,Residential,Wood,1 665653,FL,HAMILTON COUNTY,0,246924.56,0,0,246924.56,419574.22,0,0,0,0,30.519608,-82.954086,Residential,Wood,1 939634,FL,HAMILTON COUNTY,0,942304.98,0,0,942304.98,1133298.89,0,0,0,0,30.496,-82.9527,Residential,Masonry,4 981796,FL,HAMILTON COUNTY,0,12996.03,0,0,12996.03,17111.87,0,0,0,0,30.52296,-82.955515,Residential,Wood,4 269573,FL,HAMILTON COUNTY,0,42886.9,0,0,42886.9,66233.75,0,0,0,0,30.496,-82.9527,Residential,Wood,3 602123,FL,HAMILTON COUNTY,0,2784.86,0,0,2784.86,4613.35,0,0,0,0,30.496,-82.9527,Residential,Wood,4 336717,FL,HAMILTON COUNTY,0,105764.12,0,0,105764.12,116617.63,0,0,0,0,30.518326,-82.948914,Residential,Wood,1 238449,FL,HAMILTON COUNTY,0,18419.71,0,0,18419.71,26153.37,0,0,0,0,30.496,-82.9527,Residential,Wood,3 530357,FL,HAMILTON COUNTY,0,36836.28,0,0,36836.28,38632.56,0,0,0,0,30.52904,-82.960715,Residential,Wood,3 896911,FL,HAMILTON COUNTY,0,214534.66,0,0,214534.66,252790.47,0,0,0,0,30.496,-82.9527,Residential,Wood,3 391646,FL,HAMILTON COUNTY,0,44199.98,0,0,44199.98,54449.07,0,0,0,0,30.496,-82.9527,Residential,Wood,3 710345,FL,HAMILTON COUNTY,0,51130.14,0,0,51130.14,53139.05,0,0,0,0,30.496,-82.9527,Residential,Wood,3 944525,FL,HAMILTON COUNTY,194537.7,194537.7,0,0,194537.7,156395.86,0,0,0,0,30.5696,-83.1456,Residential,Wood,4 800878,FL,HAMILTON COUNTY,0,28776.92,0,0,28776.92,32189.87,0,0,0,0,30.599605,-83.236685,Residential,Wood,3 866106,FL,HAMILTON COUNTY,0,151310.92,0,0,151310.92,158091.16,0,0,0,0,30.58925,-83.09455,Residential,Wood,1 204794,FL,HAMILTON COUNTY,0,179562.23,0,0,179562.23,147384.67,0,0,0,0,30.5696,-83.1456,Residential,Wood,1 849458,FL,HAMILTON COUNTY,0,16833.96,0,0,16833.96,19110.92,0,0,0,0,30.5696,-83.1456,Residential,Wood,4 806471,FL,HAMILTON COUNTY,0,24914.26,0,0,24914.26,33937.58,0,0,0,0,30.5696,-83.1456,Residential,Wood,3 464589,FL,HAMILTON COUNTY,0,169461.85,0,0,169461.85,242525.33,0,0,0,0,30.603361,-83.09906,Residential,Wood,1 591943,FL,UNION COUNTY,407520,407520,407520,407520,407520,652935.06,0,0,0,0,30.02339,-82.3414,Residential,Masonry,3 973133,FL,UNION COUNTY,137160,137160,137160,137160,137160,235651.85,0,0,0,0,30.02339,-82.3414,Residential,Wood,3 743965,FL,UNION COUNTY,123300,123300,123300,123300,123300,117740.65,0,0,0,0,30.02756,-82.33126,Residential,Wood,1 528185,FL,UNION COUNTY,0,37823.84,0,0,37823.84,66198.38,0,0,0,0,29.934589,-82.409576,Residential,Wood,3 219113,FL,UNION COUNTY,0,181487.52,0,0,181487.52,272492.62,0,0,0,0,30.024082,-82.338158,Residential,Wood,3 376803,FL,UNION COUNTY,0,948148.79,0,0,948148.79,1344182.96,0,0,0,0,30.017946,-82.344803,Residential,Masonry,1 233559,FL,COLUMBIA COUNTY,585000,585000,585000,585000,585000,516026.16,0,0,0,0,30.19826,-82.63482,Residential,Masonry,1 579117,FL,COLUMBIA COUNTY,82620,82620,82620,82620,82620,67513.1,0,0,0,0,30.2598,-82.6422,Residential,Wood,4 517674,FL,COLUMBIA COUNTY,0,61027.56,0,0,61027.56,66963.34,0,0,0,0,30.18928,-82.62603,Residential,Wood,1 980808,FL,COLUMBIA COUNTY,0,22500,0,22500,22500,15583.05,0,0,0,0,30.189347,-82.631552,Residential,Wood,1 143584,FL,COLUMBIA COUNTY,874801.8,874801.8,0,0,874801.8,1488037.86,0,0,0,0,30.179675,-82.67663,Residential,Masonry,1 489643,FL,COLUMBIA COUNTY,504230.4,504230.4,0,0,504230.4,381198.18,0,0,0,0,30.367133,-82.629161,Residential,Masonry,3 986109,FL,COLUMBIA COUNTY,0,67591.02,0,0,67591.02,107281.96,0,0,0,0,30.2598,-82.6422,Residential,Wood,4 654640,FL,COLUMBIA COUNTY,0,135763.24,0,0,135763.24,123495.13,0,0,0,0,30.191295,-82.64519,Residential,Wood,1 700895,FL,COLUMBIA COUNTY,702820.8,702820.8,702820.8,702820.8,702820.8,800541,0,0,0,0,30.183475,-82.68749,Residential,Masonry,4 407962,FL,COLUMBIA COUNTY,0,129600000,0,0,129600000,120600000,0,0,0,0,30.232008,-82.638557,Commercial,Steel Frame,3 494610,FL,COLUMBIA COUNTY,0,67892.48,0,0,67892.48,51746.63,0,0,0,0,30.174957,-82.662956,Residential,Wood,1 744305,FL,COLUMBIA COUNTY,0,67892.48,0,0,67892.48,95471.01,0,0,0,0,30.20295,-82.63428,Residential,Wood,1 512991,FL,COLUMBIA COUNTY,0,102221.41,0,0,102221.41,123969.01,0,0,0,0,30.20298,-82.63389,Residential,Wood,1 507789,FL,COLUMBIA COUNTY,0,105926,0,0,105926,149616.24,0,0,0,0,30.174339,-82.662567,Residential,Wood,4 186262,FL,COLUMBIA COUNTY,0,4542119.64,0,0,4542119.64,4765537.43,0,0,0,0,30.194994,-82.638016,Commercial,Reinforced Masonry,1 978388,FL,COLUMBIA COUNTY,0,191242.75,0,0,191242.75,275087.39,0,0,0,0,30.19006,-82.60341,Residential,Wood,1 784347,FL,COLUMBIA COUNTY,0,921352.86,0,0,921352.86,1031325.54,0,0,0,0,30.201794,-82.661995,Residential,Masonry,1 679408,FL,COLUMBIA COUNTY,0,35322.13,0,0,35322.13,51938.8,0,0,0,0,30.218323,-82.645874,Residential,Wood,1 306619,FL,COLUMBIA COUNTY,0,108562.2,0,0,108562.2,128945.84,0,0,0,0,30.218323,-82.645874,Residential,Wood,1 457004,FL,COLUMBIA COUNTY,0,26195.88,0,0,26195.88,31749.41,0,0,0,0,30.218323,-82.645874,Residential,Wood,1 329255,FL,COLUMBIA COUNTY,0,101204.64,0,0,101204.64,159306.22,0,0,0,0,30.25387,-82.70283,Residential,Wood,3 900892,FL,COLUMBIA COUNTY,0,16160.6,0,0,16160.6,12760.09,0,0,0,0,30.25387,-82.70283,Residential,Wood,3 633241,FL,COLUMBIA COUNTY,0,22781.96,0,0,22781.96,31753.49,0,0,0,0,30.25387,-82.70283,Residential,Wood,3 502372,FL,COLUMBIA COUNTY,0,114298.09,0,0,114298.09,87129.43,0,0,0,0,30.27805,-82.69878,Residential,Wood,3 719075,FL,COLUMBIA COUNTY,0,315302.29,0,0,315302.29,370039.71,0,0,0,0,30.186512,-82.695274,Residential,Wood,3 920786,FL,COLUMBIA COUNTY,0,109954.93,0,0,109954.93,131220.21,0,0,0,0,30.2598,-82.6422,Residential,Wood,4 232605,FL,COLUMBIA COUNTY,0,180630.62,0,0,180630.62,222258.75,0,0,0,0,30.160645,-82.708005,Residential,Wood,1 601984,FL,COLUMBIA COUNTY,0,124374.9,0,0,124374.9,178903.34,0,0,0,0,30.2598,-82.6422,Residential,Wood,4 459878,FL,COLUMBIA COUNTY,0,134464.05,0,0,134464.05,189045.7,0,0,0,0,30.201059,-82.635643,Residential,Wood,1 565530,FL,COLUMBIA COUNTY,0,496159.61,0,0,496159.61,489018.88,0,0,0,0,30.201059,-82.635643,Residential,Masonry,1 202651,FL,COLUMBIA COUNTY,0,2311064.6,0,0,2311064.6,2670204.04,0,0,0,0,30.201059,-82.635643,Commercial,Reinforced Masonry,1 909104,FL,COLUMBIA COUNTY,0,72279,0,72279,72279,123617.33,0,0,0,0,30.2988,-82.6063,Residential,Wood,4 872719,FL,COLUMBIA COUNTY,0,22356.54,0,0,22356.54,22455.91,0,0,0,0,30.189365,-82.63753,Residential,Wood,4 997611,FL,COLUMBIA COUNTY,0,16767.17,0,0,16767.17,21121.61,0,0,0,0,30.19182,-82.6585,Residential,Wood,4 519606,FL,COLUMBIA COUNTY,0,16767.17,0,0,16767.17,26327.41,0,0,0,0,30.197075,-82.63814,Residential,Wood,3 624248,FL,COLUMBIA COUNTY,0,396814.48,0,0,396814.48,433692.83,0,0,0,0,30.11852,-82.68968,Residential,Masonry,4 783767,FL,COLUMBIA COUNTY,0,167668.04,0,0,167668.04,255938.56,0,0,0,0,30.189645,-82.63638,Residential,Wood,3 285479,FL,COLUMBIA COUNTY,0,16767.17,0,0,16767.17,12877.19,0,0,0,0,30.201195,-82.7174,Residential,Wood,3 424793,FL,COLUMBIA COUNTY,0,16767.17,0,0,16767.17,20170.81,0,0,0,0,30.183145,-82.636545,Residential,Wood,4 256213,FL,COLUMBIA COUNTY,0,22356.54,0,0,22356.54,24969.08,0,0,0,0,30.1799,-82.66905,Residential,Wood,3 155199,FL,COLUMBIA COUNTY,0,22356.54,0,0,22356.54,27389.44,0,0,0,0,30.188485,-82.6921,Residential,Wood,4 830871,FL,COLUMBIA COUNTY,0,16767.17,0,0,16767.17,23608.18,0,0,0,0,30.2988,-82.6063,Residential,Wood,4 757768,FL,COLUMBIA COUNTY,0,16767.17,0,0,16767.17,14548.41,0,0,0,0,30.17262,-82.66527,Residential,Wood,3 176583,FL,COLUMBIA COUNTY,0,344852.16,0,0,344852.16,433818.5,0,0,0,0,30.2988,-82.6063,Residential,Wood,4 678864,FL,COLUMBIA COUNTY,0,68970.43,0,0,68970.43,96002.7,0,0,0,0,30.2988,-82.6063,Residential,Wood,4 854000,FL,COLUMBIA COUNTY,0,91960.58,0,0,91960.58,80292.62,0,0,0,0,30.18948,-82.61728,Residential,Wood,3 631978,FL,COLUMBIA COUNTY,0,25748.96,0,0,25748.96,36460.53,0,0,0,0,30.2988,-82.6063,Residential,Wood,4 967058,FL,COLUMBIA COUNTY,0,25105.24,0,0,25105.24,30475.72,0,0,0,0,30.2988,-82.6063,Residential,Wood,4 878374,FL,COLUMBIA COUNTY,0,38623.44,0,0,38623.44,60957.06,0,0,0,0,30.2988,-82.6063,Residential,Wood,4 113053,FL,COLUMBIA COUNTY,0,9196.06,0,0,9196.06,7797.29,0,0,0,0,30.18883,-82.62323,Residential,Wood,4 288738,FL,COLUMBIA COUNTY,0,9196.06,0,0,9196.06,12297.35,0,0,0,0,30.195425,-82.636865,Residential,Wood,4 594369,FL,COLUMBIA COUNTY,0,38623.44,0,0,38623.44,42941.54,0,0,0,0,30.2988,-82.6063,Residential,Wood,4 706890,FL,COLUMBIA COUNTY,0,45980.29,0,0,45980.29,63408.66,0,0,0,0,30.2988,-82.6063,Residential,Wood,4 536032,FL,COLUMBIA COUNTY,0,137940.86,0,0,137940.86,213321.55,0,0,0,0,30.2988,-82.6063,Residential,Wood,4 747825,FL,COLUMBIA COUNTY,0,27944.98,0,0,27944.98,47665.19,0,0,0,0,30.2988,-82.6063,Residential,Wood,4 608124,FL,COLUMBIA COUNTY,0,22356.54,0,0,22356.54,37227.66,0,0,0,0,30.2988,-82.6063,Residential,Wood,4 934739,FL,COLUMBIA COUNTY,0,89423.38,0,0,89423.38,126691.92,0,0,0,0,30.2988,-82.6063,Residential,Wood,4 757078,FL,COLUMBIA COUNTY,0,16767.17,0,0,16767.17,16711.17,0,0,0,0,30.175568,-82.588203,Residential,Wood,4 956518,FL,COLUMBIA COUNTY,0,12250.99,0,0,12250.99,17567.13,0,0,0,0,30.2988,-82.6063,Residential,Wood,4 548584,FL,COLUMBIA COUNTY,0,30686.32,0,0,30686.32,40211.36,0,0,0,0,30.2988,-82.6063,Residential,Wood,4 132904,FL,COLUMBIA COUNTY,0,59774.37,0,0,59774.37,50210.47,0,0,0,0,30.2988,-82.6063,Residential,Wood,4 111857,FL,COLUMBIA COUNTY,0,32186.2,0,0,32186.2,38484.4,0,0,0,0,30.2988,-82.6063,Residential,Wood,4 388383,FL,COLUMBIA COUNTY,0,11549.33,0,0,11549.33,16277.72,0,0,0,0,30.16482,-82.64361,Residential,Wood,4 276410,FL,BRADFORD COUNTY,2070,2070,2070,2070,2070,1875.38,0,0,0,0,30.043814,-82.075211,Residential,Wood,1 546756,FL,BRADFORD COUNTY,0,42481.06,0,0,42481.06,44399.5,0,0,0,0,30.045353,-82.073212,Residential,Wood,1 669229,FL,MADISON COUNTY,321053.4,321053.4,321053.4,321053.4,321053.4,518064.61,0,0,0,0,30.422401,-83.30024,Residential,Wood,1 766573,FL,MADISON COUNTY,132651,132651,132651,132651,132651,220996.57,0,0,0,0,30.416973,-83.30043,Residential,Wood,1 765578,FL,MADISON COUNTY,23400,23400,23400,23400,23400,18558.54,0,0,0,0,30.41388,-83.298165,Residential,Wood,3 166613,FL,MADISON COUNTY,0,0,0,0,5932213.89,9630000,0,0,0,0,30.3969,-83.2753,Commercial,Reinforced Masonry,4 883261,FL,MADISON COUNTY,977330.7,977330.7,0,0,977330.7,790445.52,0,0,0,0,30.3969,-83.2753,Residential,Masonry,4 842655,FL,MADISON COUNTY,0,1222262.42,0,0,1222262.42,1186037.01,0,0,0,0,30.423132,-83.306053,Residential,Masonry,1 248167,FL,SUWANNEE COUNTY,493833.6,493833.6,493833.6,493833.6,493833.6,694889.06,0,0,0,0,30.323061,-82.853531,Residential,Masonry,3 976562,FL,SUWANNEE COUNTY,305427.6,305427.6,0,0,305427.6,269112.26,0,0,0,0,30.377098,-83.173874,Residential,Wood,1 620457,FL,SUWANNEE COUNTY,288279,288279,0,0,288279,264045.11,0,0,0,0,30.297314,-82.96032,Residential,Wood,3 336697,FL,SUWANNEE COUNTY,0,910695.68,0,0,910695.68,847083.59,0,0,0,0,30.244864,-82.873199,Residential,Masonry,3 648295,FL,SUWANNEE COUNTY,0,14066.75,0,0,14066.75,14922.01,0,0,0,0,30.2885,-83.0554,Residential,Wood,4 858080,FL,SUWANNEE COUNTY,0,7571.54,0,0,7571.54,6481.05,0,0,0,0,30.304321,-83.012032,Residential,Wood,3 579910,FL,SUWANNEE COUNTY,0,702715.18,0,0,702715.18,644961.83,0,0,0,0,30.304321,-83.012032,Residential,Masonry,3 735184,FL,SUWANNEE COUNTY,0,132894.53,0,0,132894.53,153444.94,0,0,0,0,30.242275,-82.864685,Residential,Wood,3 420445,FL,SUWANNEE COUNTY,0,14066.75,0,0,14066.75,18409.67,0,0,0,0,30.2885,-83.0554,Residential,Wood,4 373504,FL,SUWANNEE COUNTY,0,113441.57,0,0,113441.57,141507.02,0,0,0,0,30.296335,-83.0299,Residential,Wood,1 266080,FL,SUWANNEE COUNTY,0,123449.03,0,0,123449.03,205071.55,0,0,0,0,30.296747,-82.977993,Residential,Wood,3 178535,FL,SUWANNEE COUNTY,0,701414.94,0,0,701414.94,951909.86,0,0,0,0,30.2885,-83.0554,Residential,Masonry,4 574531,FL,BAKER COUNTY,67590,67590,67590,67590,67590,57465.83,0,0,0,0,30.28364,-82.12209,Residential,Wood,3 606491,FL,BAKER COUNTY,14670,14670,14670,14670,14670,15491.3,0,0,0,0,30.283901,-82.122543,Residential,Wood,3 885991,FL,BAKER COUNTY,0,1449866.88,0,0,1449866.88,1338076.34,0,0,0,0,30.285202,-82.105835,Residential,Masonry,1 908170,FL,BAKER COUNTY,0,1849.32,0,0,1849.32,1987.47,0,0,0,0,30.285202,-82.105835,Residential,Wood,1 487022,FL,BAKER COUNTY,0,372637.98,0,0,372637.98,295022.71,0,0,0,0,30.285202,-82.105835,Residential,Masonry,1 723719,FL,BAKER COUNTY,0,211747.14,0,0,211747.14,369024.45,0,0,0,0,30.285257,-82.139542,Residential,Wood,1 628922,FL,BAKER COUNTY,0,6472.62,0,0,6472.62,4657.86,0,0,0,0,30.285257,-82.139542,Residential,Wood,1 232316,FL,BAKER COUNTY,2476576.8,2476576.8,0,0,2476576.8,2011109.14,0,0,0,0,30.2763,-82.1278,Commercial,Reinforced Masonry,4 151933,FL,BAKER COUNTY,0,34713.82,0,0,34713.82,44497.57,0,0,0,0,30.30646,-82.1309,Residential,Wood,1 225577,FL,BAKER COUNTY,0,17198.19,0,0,17198.19,19900.03,0,0,0,0,30.30646,-82.1309,Residential,Wood,1 443296,FL,BAKER COUNTY,0,14453.8,0,0,14453.8,25187.77,0,0,0,0,30.288778,-82.125183,Residential,Wood,1 747464,FL,BAKER COUNTY,0,796867.35,0,0,796867.35,1238331.86,0,0,0,0,30.27934,-82.13954,Residential,Masonry,3jc-1.17.3/tests/fixtures/generic/csv-insurance.json000066400000000000000000007005321415226333200223110ustar00rootroot00000000000000[{"policyID": "119736", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "498960", "hu_site_limit": "498960", "fl_site_limit": "498960", "fr_site_limit": "498960", "tiv_2011": "498960", "tiv_2012": "792148.9", "eq_site_deductible": "0", "hu_site_deductible": "9979.2", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.102261", "point_longitude": "-81.711777", "line": "Residential", "construction": "Masonry", "point_granularity": "1"}, {"policyID": "448094", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "1322376.3", "hu_site_limit": "1322376.3", "fl_site_limit": "1322376.3", "fr_site_limit": "1322376.3", "tiv_2011": "1322376.3", "tiv_2012": "1438163.57", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.063936", "point_longitude": "-81.707664", "line": "Residential", "construction": "Masonry", "point_granularity": "3"}, {"policyID": "206893", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "190724.4", "hu_site_limit": "190724.4", "fl_site_limit": "190724.4", "fr_site_limit": "190724.4", "tiv_2011": "190724.4", "tiv_2012": "192476.78", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.089579", "point_longitude": "-81.700455", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "333743", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "79520.76", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "79520.76", "tiv_2012": "86854.48", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.063236", "point_longitude": "-81.707703", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "172534", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "254281.5", "fl_site_limit": "0", "fr_site_limit": "254281.5", "tiv_2011": "254281.5", "tiv_2012": "246144.49", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.060614", "point_longitude": "-81.702675", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "785275", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "515035.62", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "515035.62", "tiv_2012": "884419.17", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.063236", "point_longitude": "-81.707703", "line": "Residential", "construction": "Masonry", "point_granularity": "3"}, {"policyID": "995932", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "19260000", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "19260000", "tiv_2012": "20610000", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.102226", "point_longitude": "-81.713882", "line": "Commercial", "construction": "Reinforced Concrete", "point_granularity": "1"}, {"policyID": "223488", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "328500", "hu_site_limit": "328500", "fl_site_limit": "328500", "fr_site_limit": "328500", "tiv_2011": "328500", "tiv_2012": "348374.25", "eq_site_deductible": "0", "hu_site_deductible": "16425", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.102217", "point_longitude": "-81.707146", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "433512", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "315000", "hu_site_limit": "315000", "fl_site_limit": "315000", "fr_site_limit": "315000", "tiv_2011": "315000", "tiv_2012": "265821.57", "eq_site_deductible": "0", "hu_site_deductible": "15750", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.118774", "point_longitude": "-81.704613", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "142071", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "705600", "hu_site_limit": "705600", "fl_site_limit": "705600", "fr_site_limit": "705600", "tiv_2011": "705600", "tiv_2012": "1010842.56", "eq_site_deductible": "14112", "hu_site_deductible": "35280", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.100628", "point_longitude": "-81.703751", "line": "Residential", "construction": "Masonry", "point_granularity": "1"}, {"policyID": "253816", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "831498.3", "hu_site_limit": "831498.3", "fl_site_limit": "831498.3", "fr_site_limit": "831498.3", "tiv_2011": "831498.3", "tiv_2012": "1117791.48", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.10216", "point_longitude": "-81.719444", "line": "Residential", "construction": "Masonry", "point_granularity": "1"}, {"policyID": "894922", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "24059.09", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "24059.09", "tiv_2012": "33952.19", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.095957", "point_longitude": "-81.695099", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "422834", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "48115.94", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "48115.94", "tiv_2012": "66755.39", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.100073", "point_longitude": "-81.739822", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "582721", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "28869.12", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "28869.12", "tiv_2012": "42826.99", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.09248", "point_longitude": "-81.725167", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "842700", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "56135.64", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "56135.64", "tiv_2012": "50656.8", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.101356", "point_longitude": "-81.726248", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "874333", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "48115.94", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "48115.94", "tiv_2012": "67905.07", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.113743", "point_longitude": "-81.727463", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "580146", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "48115.94", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "48115.94", "tiv_2012": "66938.9", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.121655", "point_longitude": "-81.732391", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "456149", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "80192.49", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "80192.49", "tiv_2012": "86421.04", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.109537", "point_longitude": "-81.741661", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "767862", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "48115.94", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "48115.94", "tiv_2012": "73798.5", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.11824", "point_longitude": "-81.745335", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "353022", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "60946.79", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "60946.79", "tiv_2012": "62467.29", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.065799", "point_longitude": "-81.717416", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "367814", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "28869.12", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "28869.12", "tiv_2012": "42727.74", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.082993", "point_longitude": "-81.710581", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "671392", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "13410000", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "13410000", "tiv_2012": "11700000", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.091921", "point_longitude": "-81.711929", "line": "Commercial", "construction": "Reinforced Concrete", "point_granularity": "3"}, {"policyID": "772887", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "1669113.93", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "1669113.93", "tiv_2012": "2099127.76", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.117352", "point_longitude": "-81.711884", "line": "Residential", "construction": "Masonry", "point_granularity": "1"}, {"policyID": "983122", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "179562.23", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "179562.23", "tiv_2012": "211372.57", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.095783", "point_longitude": "-81.713181", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "934215", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "177744.16", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "177744.16", "tiv_2012": "157171.16", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.110518", "point_longitude": "-81.727478", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "385951", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "17757.58", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "17757.58", "tiv_2012": "16948.72", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.10288", "point_longitude": "-81.705719", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "716332", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "130129.87", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "130129.87", "tiv_2012": "101758.43", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.068468", "point_longitude": "-81.71624", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "751262", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "42854.77", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "42854.77", "tiv_2012": "63592.88", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.068468", "point_longitude": "-81.71624", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "633663", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "785.58", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "785.58", "tiv_2012": "662.18", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.068468", "point_longitude": "-81.71624", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "105851", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "170361.91", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "170361.91", "tiv_2012": "177176.38", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.068468", "point_longitude": "-81.71624", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "710400", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "1430.89", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "1430.89", "tiv_2012": "1861.41", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.068468", "point_longitude": "-81.71624", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "703001", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "129913.27", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "129913.27", "tiv_2012": "101692.86", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.079785", "point_longitude": "-81.706865", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "352792", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "366285.62", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "366285.62", "tiv_2012": "507164.19", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.08012", "point_longitude": "-81.718452", "line": "Residential", "construction": "Masonry", "point_granularity": "1"}, {"policyID": "717603", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "22512.61", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "22512.61", "tiv_2012": "28637.17", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.08012", "point_longitude": "-81.718452", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "937659", "statecode": "FL", "county": "SUWANNEE COUNTY", "eq_site_limit": "0", "hu_site_limit": "9246.6", "fl_site_limit": "0", "fr_site_limit": "9246.6", "tiv_2011": "9246.6", "tiv_2012": "10880.22", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.959805", "point_longitude": "-82.926659", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "294022", "statecode": "FL", "county": "SUWANNEE COUNTY", "eq_site_limit": "0", "hu_site_limit": "96164.64", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "96164.64", "tiv_2012": "69357.78", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.959805", "point_longitude": "-82.926659", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "410500", "statecode": "FL", "county": "SUWANNEE COUNTY", "eq_site_limit": "0", "hu_site_limit": "11095.92", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "11095.92", "tiv_2012": "12737.89", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.959805", "point_longitude": "-82.926659", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "524433", "statecode": "FL", "county": "SUWANNEE COUNTY", "eq_site_limit": "218475", "hu_site_limit": "218475", "fl_site_limit": "218475", "fr_site_limit": "218475", "tiv_2011": "218475", "tiv_2012": "199030.29", "eq_site_deductible": "0", "hu_site_deductible": "4369.5", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.962601", "point_longitude": "-82.926155", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "779298", "statecode": "FL", "county": "SUWANNEE COUNTY", "eq_site_limit": "1400904", "hu_site_limit": "1400904", "fl_site_limit": "1400904", "fr_site_limit": "1400904", "tiv_2011": "1400904", "tiv_2012": "1772984.1", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.962601", "point_longitude": "-82.926155", "line": "Residential", "construction": "Masonry", "point_granularity": "3"}, {"policyID": "491831", "statecode": "FL", "county": "SUWANNEE COUNTY", "eq_site_limit": "4365", "hu_site_limit": "4365", "fl_site_limit": "4365", "fr_site_limit": "4365", "tiv_2011": "4365", "tiv_2012": "4438.05", "eq_site_deductible": "0", "hu_site_deductible": "87.3", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.962601", "point_longitude": "-82.926155", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "814637", "statecode": "FL", "county": "SUWANNEE COUNTY", "eq_site_limit": "4365", "hu_site_limit": "4365", "fl_site_limit": "4365", "fr_site_limit": "4365", "tiv_2011": "4365", "tiv_2012": "6095.72", "eq_site_deductible": "0", "hu_site_deductible": "87.3", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.962601", "point_longitude": "-82.926155", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "737515", "statecode": "FL", "county": "SUWANNEE COUNTY", "eq_site_limit": "39789", "hu_site_limit": "39789", "fl_site_limit": "39789", "fr_site_limit": "39789", "tiv_2011": "39789", "tiv_2012": "58106.58", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.962601", "point_longitude": "-82.926155", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "222653", "statecode": "FL", "county": "SUWANNEE COUNTY", "eq_site_limit": "24867", "hu_site_limit": "24867", "fl_site_limit": "24867", "fr_site_limit": "24867", "tiv_2011": "24867", "tiv_2012": "18969.79", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.962601", "point_longitude": "-82.926155", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "788543", "statecode": "FL", "county": "SUWANNEE COUNTY", "eq_site_limit": "213876", "hu_site_limit": "213876", "fl_site_limit": "213876", "fr_site_limit": "213876", "tiv_2011": "213876", "tiv_2012": "261435.18", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.962601", "point_longitude": "-82.926155", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "691681", "statecode": "FL", "county": "SUWANNEE COUNTY", "eq_site_limit": "69435", "hu_site_limit": "69435", "fl_site_limit": "69435", "fr_site_limit": "69435", "tiv_2011": "69435", "tiv_2012": "93674.34", "eq_site_deductible": "0", "hu_site_deductible": "1388.7", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.960735", "point_longitude": "-82.92542", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "368807", "statecode": "FL", "county": "SUWANNEE COUNTY", "eq_site_limit": "14922", "hu_site_limit": "14922", "fl_site_limit": "14922", "fr_site_limit": "14922", "tiv_2011": "14922", "tiv_2012": "12333.03", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.960735", "point_longitude": "-82.92542", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "174002", "statecode": "FL", "county": "SUWANNEE COUNTY", "eq_site_limit": "165546", "hu_site_limit": "165546", "fl_site_limit": "165546", "fr_site_limit": "165546", "tiv_2011": "165546", "tiv_2012": "239134.51", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.963396", "point_longitude": "-82.916763", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "198760", "statecode": "FL", "county": "SUWANNEE COUNTY", "eq_site_limit": "72837", "hu_site_limit": "72837", "fl_site_limit": "72837", "fr_site_limit": "72837", "tiv_2011": "72837", "tiv_2012": "86637.86", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.963396", "point_longitude": "-82.916763", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "831395", "statecode": "FL", "county": "SUWANNEE COUNTY", "eq_site_limit": "72837", "hu_site_limit": "72837", "fl_site_limit": "72837", "fr_site_limit": "72837", "tiv_2011": "72837", "tiv_2012": "98147.86", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.963396", "point_longitude": "-82.916763", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "305698", "statecode": "FL", "county": "SUWANNEE COUNTY", "eq_site_limit": "19440", "hu_site_limit": "19440", "fl_site_limit": "19440", "fr_site_limit": "19440", "tiv_2011": "19440", "tiv_2012": "30658.59", "eq_site_deductible": "0", "hu_site_deductible": "388.8", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.963396", "point_longitude": "-82.916763", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "515722", "statecode": "FL", "county": "SUWANNEE COUNTY", "eq_site_limit": "9945", "hu_site_limit": "9945", "fl_site_limit": "9945", "fr_site_limit": "9945", "tiv_2011": "9945", "tiv_2012": "11551.12", "eq_site_deductible": "0", "hu_site_deductible": "198.9", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.963396", "point_longitude": "-82.916763", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "415582", "statecode": "FL", "county": "SUWANNEE COUNTY", "eq_site_limit": "0", "hu_site_limit": "255878.61", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "255878.61", "tiv_2012": "345894.66", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.958415", "point_longitude": "-82.92394", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "783533", "statecode": "FL", "county": "SUWANNEE COUNTY", "eq_site_limit": "0", "hu_site_limit": "153527.17", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "153527.17", "tiv_2012": "138228.8", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9696", "point_longitude": "-82.92767", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "640802", "statecode": "FL", "county": "SUWANNEE COUNTY", "eq_site_limit": "0", "hu_site_limit": "255878.61", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "255878.61", "tiv_2012": "177339.74", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.959404", "point_longitude": "-82.927582", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "403866", "statecode": "FL", "county": "SUWANNEE COUNTY", "eq_site_limit": "0", "hu_site_limit": "102351.45", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "102351.45", "tiv_2012": "95132.8", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.958904", "point_longitude": "-82.922729", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "828788", "statecode": "FL", "county": "SUWANNEE COUNTY", "eq_site_limit": "0", "hu_site_limit": "155489.66", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "155489.66", "tiv_2012": "145139.65", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.95822", "point_longitude": "-82.922424", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "751490", "statecode": "FL", "county": "SUWANNEE COUNTY", "eq_site_limit": "0", "hu_site_limit": "137233.8", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "137233.8", "tiv_2012": "114919.58", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.965832", "point_longitude": "-82.933777", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "972562", "statecode": "FL", "county": "SUWANNEE COUNTY", "eq_site_limit": "0", "hu_site_limit": "123596.05", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "123596.05", "tiv_2012": "183015.09", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.965721", "point_longitude": "-82.933777", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "367541", "statecode": "FL", "county": "SUWANNEE COUNTY", "eq_site_limit": "0", "hu_site_limit": "107111.11", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "107111.11", "tiv_2012": "88218.85", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.965717", "point_longitude": "-82.933777", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "481360", "statecode": "FL", "county": "SUWANNEE COUNTY", "eq_site_limit": "0", "hu_site_limit": "96309.32", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "96309.32", "tiv_2012": "85911", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.95775", "point_longitude": "-82.923635", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "920232", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "104031.7", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "104031.7", "tiv_2012": "168443.97", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.39431", "point_longitude": "-81.93397", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "727659", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "338944.5", "hu_site_limit": "338944.5", "fl_site_limit": "338944.5", "fr_site_limit": "338944.5", "tiv_2011": "338944.5", "tiv_2012": "485816.61", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.56267", "point_longitude": "-81.830429", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "471817", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "272349", "hu_site_limit": "272349", "fl_site_limit": "272349", "fr_site_limit": "272349", "tiv_2011": "272349", "tiv_2012": "414565.56", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.56267", "point_longitude": "-81.830429", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "983043", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "129690", "hu_site_limit": "129690", "fl_site_limit": "129690", "fr_site_limit": "129690", "tiv_2011": "129690", "tiv_2012": "129635.53", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.561651", "point_longitude": "-81.830193", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "578286", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "123210", "hu_site_limit": "123210", "fl_site_limit": "123210", "fr_site_limit": "123210", "tiv_2011": "123210", "tiv_2012": "120345.61", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.56267", "point_longitude": "-81.830429", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "347276", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "3698.64", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "3698.64", "tiv_2012": "3939.13", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.56106", "point_longitude": "-81.82632", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "477786", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "2115760.5", "hu_site_limit": "2115760.5", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "2115760.5", "tiv_2012": "3057739.39", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.5579", "point_longitude": "-81.8249", "line": "Commercial", "construction": "Reinforced Masonry", "point_granularity": "4"}, {"policyID": "265907", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "93548.58", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "93548.58", "tiv_2012": "118401.07", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.56106", "point_longitude": "-81.82632", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "107560", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "1037311.14", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "1037311.14", "tiv_2012": "1487255.23", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.56106", "point_longitude": "-81.82632", "line": "Residential", "construction": "Masonry", "point_granularity": "3"}, {"policyID": "908183", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "15463.3", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "15463.3", "tiv_2012": "11825.56", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.57185", "point_longitude": "-81.82383", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "356024", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "13893.35", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "13893.35", "tiv_2012": "13988.5", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.562835", "point_longitude": "-81.826525", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "575299", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "316618.23", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "316618.23", "tiv_2012": "230328.99", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.567566", "point_longitude": "-81.826584", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "790478", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "54834.66", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "54834.66", "tiv_2012": "63053.72", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.60895", "point_longitude": "-81.83645", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "801776", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "295269.11", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "295269.11", "tiv_2012": "488965.65", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.59925", "point_longitude": "-81.81973", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "291781", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "723734.17", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "723734.17", "tiv_2012": "955908.09", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.53674", "point_longitude": "-81.77496", "line": "Residential", "construction": "Masonry", "point_granularity": "3"}, {"policyID": "537286", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "1741572", "fl_site_limit": "0", "fr_site_limit": "1741572", "tiv_2011": "1741572", "tiv_2012": "1455184.42", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.555161", "point_longitude": "-81.825684", "line": "Residential", "construction": "Masonry", "point_granularity": "1"}, {"policyID": "289305", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "135450", "hu_site_limit": "135450", "fl_site_limit": "135450", "fr_site_limit": "135450", "tiv_2011": "135450", "tiv_2012": "164978.1", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.105968", "point_longitude": "-82.66227", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "697409", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "60300", "hu_site_limit": "60300", "fl_site_limit": "60300", "fr_site_limit": "60300", "tiv_2011": "60300", "tiv_2012": "77678.46", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.1018", "point_longitude": "-82.7094", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "633944", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "22500", "hu_site_limit": "22500", "fl_site_limit": "22500", "fr_site_limit": "22500", "tiv_2011": "22500", "tiv_2012": "19501.76", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.1018", "point_longitude": "-82.7094", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "963511", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "34212.42", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "34212.42", "tiv_2012": "33250.37", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.1018", "point_longitude": "-82.7094", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "729649", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "460128.2", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "460128.2", "tiv_2012": "626142.46", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.1653", "point_longitude": "-82.73404", "line": "Residential", "construction": "Masonry", "point_granularity": "1"}, {"policyID": "862584", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "32169.69", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "32169.69", "tiv_2012": "37291.11", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.1018", "point_longitude": "-82.7094", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "371891", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "50550.75", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "50550.75", "tiv_2012": "49526.38", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.17399", "point_longitude": "-82.57017", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "785595", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "42300", "hu_site_limit": "42300", "fl_site_limit": "42300", "fr_site_limit": "42300", "tiv_2011": "42300", "tiv_2012": "53762.62", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.1515", "point_longitude": "-82.6126", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "567696", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "10171.26", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "10171.26", "tiv_2012": "16798.29", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.16269", "point_longitude": "-82.64", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "219025", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "155342.88", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "155342.88", "tiv_2012": "176189.89", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.16269", "point_longitude": "-82.64", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "447216", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "3698.64", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "3698.64", "tiv_2012": "4424.48", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.16269", "point_longitude": "-82.64", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "305141", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "4623.3", "fl_site_limit": "0", "fr_site_limit": "4623.3", "tiv_2011": "4623.3", "tiv_2012": "4525.86", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.16269", "point_longitude": "-82.64", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "625575", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "33287.76", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "33287.76", "tiv_2012": "27375.62", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.16269", "point_longitude": "-82.64", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "262109", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "21267.18", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "21267.18", "tiv_2012": "24840.49", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.163641", "point_longitude": "-82.640976", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "228457", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "729556.74", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "729556.74", "tiv_2012": "889825.76", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.163641", "point_longitude": "-82.640976", "line": "Residential", "construction": "Masonry", "point_granularity": "1"}, {"policyID": "622799", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "350446.14", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "350446.14", "tiv_2012": "438049.26", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.163641", "point_longitude": "-82.640976", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "233271", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "2135964.6", "fl_site_limit": "0", "fr_site_limit": "2135964.6", "tiv_2011": "2135964.6", "tiv_2012": "1728721.59", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.163641", "point_longitude": "-82.640976", "line": "Commercial", "construction": "Reinforced Masonry", "point_granularity": "1"}, {"policyID": "932950", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "4623.3", "fl_site_limit": "0", "fr_site_limit": "4623.3", "tiv_2011": "4623.3", "tiv_2012": "4782.1", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.163641", "point_longitude": "-82.640976", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "641952", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "2469639.6", "fl_site_limit": "0", "fr_site_limit": "2469639.6", "tiv_2011": "2469639.6", "tiv_2012": "2708463.63", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.1515", "point_longitude": "-82.6126", "line": "Commercial", "construction": "Reinforced Masonry", "point_granularity": "4"}, {"policyID": "796260", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "914073.3", "fl_site_limit": "0", "fr_site_limit": "914073.3", "tiv_2011": "914073.3", "tiv_2012": "1296439.3", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.1515", "point_longitude": "-82.6126", "line": "Residential", "construction": "Masonry", "point_granularity": "4"}, {"policyID": "301822", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "3042940.5", "fl_site_limit": "0", "fr_site_limit": "3042940.5", "tiv_2011": "3042940.5", "tiv_2012": "3181868.99", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.1515", "point_longitude": "-82.6126", "line": "Commercial", "construction": "Reinforced Masonry", "point_granularity": "4"}, {"policyID": "559927", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "234997.65", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "234997.65", "tiv_2012": "255975.89", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.1515", "point_longitude": "-82.6126", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "224400", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "912600", "fl_site_limit": "0", "fr_site_limit": "912600", "tiv_2011": "912600", "tiv_2012": "1147247.71", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.1515", "point_longitude": "-82.6126", "line": "Residential", "construction": "Masonry", "point_granularity": "4"}, {"policyID": "123936", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "1920744.9", "fl_site_limit": "0", "fr_site_limit": "1920744.9", "tiv_2011": "1920744.9", "tiv_2012": "2837762.3", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.1515", "point_longitude": "-82.6126", "line": "Commercial", "construction": "Reinforced Masonry", "point_granularity": "4"}, {"policyID": "333818", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "455754.6", "fl_site_limit": "0", "fr_site_limit": "455754.6", "tiv_2011": "455754.6", "tiv_2012": "696809.59", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.1515", "point_longitude": "-82.6126", "line": "Residential", "construction": "Masonry", "point_granularity": "4"}, {"policyID": "254323", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "1552693.95", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "1552693.95", "tiv_2012": "1552594.58", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.1515", "point_longitude": "-82.6126", "line": "Residential", "construction": "Masonry", "point_granularity": "4"}, {"policyID": "247444", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "8910", "fl_site_limit": "0", "fr_site_limit": "8910", "tiv_2011": "8910", "tiv_2012": "13521.83", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.1515", "point_longitude": "-82.6126", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "882598", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "398968.2", "fl_site_limit": "0", "fr_site_limit": "398968.2", "tiv_2011": "398968.2", "tiv_2012": "424087.24", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.1515", "point_longitude": "-82.6126", "line": "Residential", "construction": "Masonry", "point_granularity": "4"}, {"policyID": "386918", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "4500", "fl_site_limit": "0", "fr_site_limit": "4500", "tiv_2011": "4500", "tiv_2012": "4238.41", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.1515", "point_longitude": "-82.6126", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "497337", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "31071.6", "fl_site_limit": "0", "fr_site_limit": "31071.6", "tiv_2011": "31071.6", "tiv_2012": "57802.5", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.1515", "point_longitude": "-82.6126", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "526844", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "4956125.85", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "4956125.85", "tiv_2012": "7279557.65", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.1515", "point_longitude": "-82.6126", "line": "Commercial", "construction": "Reinforced Masonry", "point_granularity": "4"}, {"policyID": "623400", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "40500", "fl_site_limit": "0", "fr_site_limit": "40500", "tiv_2011": "40500", "tiv_2012": "34160.94", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.1515", "point_longitude": "-82.6126", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "826170", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "135868.99", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "135868.99", "tiv_2012": "234280.26", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.185885", "point_longitude": "-82.614795", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "185483", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "36784.23", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "36784.23", "tiv_2012": "58447.64", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.185885", "point_longitude": "-82.614795", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "920003", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "1086940.9", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "1086940.9", "tiv_2012": "1770235.43", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.185885", "point_longitude": "-82.614795", "line": "Residential", "construction": "Masonry", "point_granularity": "1"}, {"policyID": "274246", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "16767.17", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "16767.17", "tiv_2012": "17228.6", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.16649", "point_longitude": "-82.63503", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "423636", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "1404900", "fl_site_limit": "0", "fr_site_limit": "1404900", "tiv_2011": "1404900", "tiv_2012": "1840643.78", "eq_site_deductible": "0", "hu_site_deductible": "42147", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.176", "point_longitude": "-82.65581", "line": "Residential", "construction": "Masonry", "point_granularity": "1"}, {"policyID": "970906", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "4696520.5", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "4696520.5", "tiv_2012": "6342697.9", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "450000", "fr_site_deductible": "0", "point_latitude": "30.00777", "point_longitude": "-82.59694", "line": "Commercial", "construction": "Reinforced Masonry", "point_granularity": "3"}, {"policyID": "227898", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "67892.48", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "67892.48", "tiv_2012": "86628.09", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.17509", "point_longitude": "-82.66252", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "525138", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "86056.32", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "86056.32", "tiv_2012": "125938.17", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.17501", "point_longitude": "-82.66205", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "923627", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "67892.48", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "67892.48", "tiv_2012": "64169.8", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.174776", "point_longitude": "-82.662277", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "619743", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "67892.48", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "67892.48", "tiv_2012": "80898.23", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.17476", "point_longitude": "-82.66251", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "910727", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "86056.32", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "86056.32", "tiv_2012": "91244.65", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.1745", "point_longitude": "-82.66205", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "363647", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "67892.48", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "67892.48", "tiv_2012": "92333.77", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.17447", "point_longitude": "-82.66251", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "512519", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "101009.36", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "101009.36", "tiv_2012": "98181.1", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.17417", "point_longitude": "-82.66218", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "904304", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "67892.48", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "67892.48", "tiv_2012": "66272.56", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.17451", "point_longitude": "-82.66351", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "835349", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "67892.48", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "67892.48", "tiv_2012": "99945.87", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.17475", "point_longitude": "-82.66314", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "891725", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "86056.32", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "86056.32", "tiv_2012": "139415.11", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.17514", "point_longitude": "-82.66341", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "923503", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "86056.32", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "86056.32", "tiv_2012": "106664.4", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.17474", "point_longitude": "-82.66348", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "292347", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "132603.34", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "132603.34", "tiv_2012": "115117.07", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.17664", "point_longitude": "-82.66314", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "363828", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "132603.34", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "132603.34", "tiv_2012": "216561.94", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.17638", "point_longitude": "-82.66314", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "110490", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "91764.15", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "91764.15", "tiv_2012": "70364.02", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.17623", "point_longitude": "-82.66406", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "480733", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "457854.5", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "457854.5", "tiv_2012": "345588.57", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.17698", "point_longitude": "-82.67019", "line": "Residential", "construction": "Masonry", "point_granularity": "4"}, {"policyID": "993346", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "385480.82", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "385480.82", "tiv_2012": "558330.42", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.174486", "point_longitude": "-82.671326", "line": "Residential", "construction": "Masonry", "point_granularity": "4"}, {"policyID": "934992", "statecode": "FL", "county": "ST JOHNS COUNTY", "eq_site_limit": "0", "hu_site_limit": "213596.46", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "213596.46", "tiv_2012": "190329.82", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.7917", "point_longitude": "-81.4271", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "645841", "statecode": "FL", "county": "ST JOHNS COUNTY", "eq_site_limit": "0", "hu_site_limit": "1051338.42", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "1051338.42", "tiv_2012": "1069841.98", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.7917", "point_longitude": "-81.4271", "line": "Residential", "construction": "Masonry", "point_granularity": "4"}, {"policyID": "747846", "statecode": "FL", "county": "ST JOHNS COUNTY", "eq_site_limit": "0", "hu_site_limit": "6472.62", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "6472.62", "tiv_2012": "9957.87", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.7917", "point_longitude": "-81.4271", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "482457", "statecode": "FL", "county": "ST JOHNS COUNTY", "eq_site_limit": "0", "hu_site_limit": "159041.52", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "159041.52", "tiv_2012": "249984.64", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.776566", "point_longitude": "-81.47171", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "574787", "statecode": "FL", "county": "ST JOHNS COUNTY", "eq_site_limit": "0", "hu_site_limit": "12945.24", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "12945.24", "tiv_2012": "19024.97", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.776566", "point_longitude": "-81.47171", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "831418", "statecode": "FL", "county": "ST JOHNS COUNTY", "eq_site_limit": "0", "hu_site_limit": "29589.12", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "29589.12", "tiv_2012": "35207.53", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.776566", "point_longitude": "-81.47171", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "968562", "statecode": "FL", "county": "ST JOHNS COUNTY", "eq_site_limit": "0", "hu_site_limit": "12945.24", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "12945.24", "tiv_2012": "16859.05", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.776566", "point_longitude": "-81.47171", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "576324", "statecode": "FL", "county": "ST JOHNS COUNTY", "eq_site_limit": "29061", "hu_site_limit": "29061", "fl_site_limit": "29061", "fr_site_limit": "29061", "tiv_2011": "29061", "tiv_2012": "40749.33", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.7255", "point_longitude": "-81.466309", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "290435", "statecode": "FL", "county": "ST JOHNS COUNTY", "eq_site_limit": "48087", "hu_site_limit": "48087", "fl_site_limit": "48087", "fr_site_limit": "48087", "tiv_2011": "48087", "tiv_2012": "68008.1", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.7255", "point_longitude": "-81.466309", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "526086", "statecode": "FL", "county": "ST JOHNS COUNTY", "eq_site_limit": "128628", "hu_site_limit": "128628", "fl_site_limit": "128628", "fr_site_limit": "128628", "tiv_2011": "128628", "tiv_2012": "133425.18", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.7255", "point_longitude": "-81.466309", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "119823", "statecode": "FL", "county": "ST JOHNS COUNTY", "eq_site_limit": "128628", "hu_site_limit": "128628", "fl_site_limit": "128628", "fr_site_limit": "128628", "tiv_2011": "128628", "tiv_2012": "168246.71", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.7255", "point_longitude": "-81.466309", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "497414", "statecode": "FL", "county": "ST JOHNS COUNTY", "eq_site_limit": "128628", "hu_site_limit": "128628", "fl_site_limit": "128628", "fr_site_limit": "128628", "tiv_2011": "128628", "tiv_2012": "176279.14", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.7255", "point_longitude": "-81.466309", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "340883", "statecode": "FL", "county": "ST JOHNS COUNTY", "eq_site_limit": "4968", "hu_site_limit": "4968", "fl_site_limit": "4968", "fr_site_limit": "4968", "tiv_2011": "4968", "tiv_2012": "5265.92", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.7255", "point_longitude": "-81.466309", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "892551", "statecode": "FL", "county": "ST JOHNS COUNTY", "eq_site_limit": "157005", "hu_site_limit": "157005", "fl_site_limit": "157005", "fr_site_limit": "157005", "tiv_2011": "157005", "tiv_2012": "131774.3", "eq_site_deductible": "0", "hu_site_deductible": "3140.1", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.7255", "point_longitude": "-81.466309", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "670595", "statecode": "FL", "county": "ST JOHNS COUNTY", "eq_site_limit": "459", "hu_site_limit": "459", "fl_site_limit": "459", "fr_site_limit": "459", "tiv_2011": "459", "tiv_2012": "847.36", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.7255", "point_longitude": "-81.466309", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "194101", "statecode": "FL", "county": "ST JOHNS COUNTY", "eq_site_limit": "459", "hu_site_limit": "459", "fl_site_limit": "459", "fr_site_limit": "459", "tiv_2011": "459", "tiv_2012": "428.69", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.7255", "point_longitude": "-81.466309", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "167200", "statecode": "FL", "county": "ST JOHNS COUNTY", "eq_site_limit": "1062", "hu_site_limit": "1062", "fl_site_limit": "1062", "fr_site_limit": "1062", "tiv_2011": "1062", "tiv_2012": "1602.72", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.7255", "point_longitude": "-81.466309", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "139064", "statecode": "FL", "county": "ST JOHNS COUNTY", "eq_site_limit": "2304", "hu_site_limit": "2304", "fl_site_limit": "2304", "fr_site_limit": "2304", "tiv_2011": "2304", "tiv_2012": "2474.16", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.7255", "point_longitude": "-81.466309", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "846636", "statecode": "FL", "county": "ST JOHNS COUNTY", "eq_site_limit": "1476", "hu_site_limit": "1476", "fl_site_limit": "1476", "fr_site_limit": "1476", "tiv_2011": "1476", "tiv_2012": "1935.04", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.7255", "point_longitude": "-81.466309", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "310177", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "185040", "hu_site_limit": "185040", "fl_site_limit": "185040", "fr_site_limit": "185040", "tiv_2011": "185040", "tiv_2012": "313975.87", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.57332", "point_longitude": "-81.45291", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "865452", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "11095.92", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "11095.92", "tiv_2012": "11961.62", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.67464", "point_longitude": "-81.46114", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "783429", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "8321.94", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "8321.94", "tiv_2012": "9646.79", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.67464", "point_longitude": "-81.46114", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "878060", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "199726.56", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "199726.56", "tiv_2012": "277743.75", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.67423", "point_longitude": "-81.46052", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "935342", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "118356.48", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "118356.48", "tiv_2012": "182860.76", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.67423", "point_longitude": "-81.46052", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "456376", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "17568.54", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "17568.54", "tiv_2012": "29936.79", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.67423", "point_longitude": "-81.46052", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "363001", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "147945.6", "fl_site_limit": "0", "fr_site_limit": "147945.6", "tiv_2011": "147945.6", "tiv_2012": "238338.59", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.67453", "point_longitude": "-81.46016", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "478864", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "724933.44", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "724933.44", "tiv_2012": "767347.85", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.67513", "point_longitude": "-81.44708", "line": "Residential", "construction": "Masonry", "point_granularity": "1"}, {"policyID": "600402", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "8284485.6", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "8284485.6", "tiv_2012": "8073943.68", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.64687", "point_longitude": "-81.45801", "line": "Commercial", "construction": "Reinforced Masonry", "point_granularity": "1"}, {"policyID": "483983", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "438498", "hu_site_limit": "438498", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "438498", "tiv_2012": "636264.11", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.650143", "point_longitude": "-81.454407", "line": "Residential", "construction": "Masonry", "point_granularity": "1"}, {"policyID": "991615", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "99960.9", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "99960.9", "tiv_2012": "88679.21", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.6202", "point_longitude": "-81.4719", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "644573", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "669692.78", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "669692.78", "tiv_2012": "841130.78", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.576765", "point_longitude": "-81.453979", "line": "Residential", "construction": "Masonry", "point_granularity": "1"}, {"policyID": "853278", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "240539.39", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "240539.39", "tiv_2012": "412765.59", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.576765", "point_longitude": "-81.453979", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "100658", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "331518.28", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "331518.28", "tiv_2012": "464703.76", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.6202", "point_longitude": "-81.4719", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "433115", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "5919.86", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "5919.86", "tiv_2012": "9839.94", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.576765", "point_longitude": "-81.453979", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "760337", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "77426.73", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "77426.73", "tiv_2012": "73196.13", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.61988", "point_longitude": "-81.46815", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "884738", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "765763.8", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "765763.8", "tiv_2012": "735948.78", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.576765", "point_longitude": "-81.453979", "line": "Residential", "construction": "Masonry", "point_granularity": "1"}, {"policyID": "610102", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "7532014.45", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "7532014.45", "tiv_2012": "10710000", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.671095", "point_longitude": "-81.462097", "line": "Commercial", "construction": "Reinforced Masonry", "point_granularity": "1"}, {"policyID": "830823", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "963962.79", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "963962.79", "tiv_2012": "977226.92", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.67", "point_longitude": "-81.462", "line": "Residential", "construction": "Masonry", "point_granularity": "3"}, {"policyID": "618364", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "121066.57", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "121066.57", "tiv_2012": "115414.7", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.596535", "point_longitude": "-81.546837", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "712563", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "70964.84", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "70964.84", "tiv_2012": "72362.85", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.596535", "point_longitude": "-81.546837", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "493030", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "755749", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "755749", "tiv_2012": "658571.77", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.57326", "point_longitude": "-81.45367", "line": "Residential", "construction": "Masonry", "point_granularity": "1"}, {"policyID": "188150", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "2162232", "fl_site_limit": "0", "fr_site_limit": "2162232", "tiv_2011": "2162232", "tiv_2012": "2520816.55", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.65372", "point_longitude": "-81.45105", "line": "Commercial", "construction": "Reinforced Masonry", "point_granularity": "1"}, {"policyID": "589642", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "615141.68", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "615141.68", "tiv_2012": "895926.17", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.63945", "point_longitude": "-81.455553", "line": "Residential", "construction": "Masonry", "point_granularity": "1"}, {"policyID": "846109", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "135000", "fl_site_limit": "0", "fr_site_limit": "135000", "tiv_2011": "135000", "tiv_2012": "138827.52", "eq_site_deductible": "0", "hu_site_deductible": "4050", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.570326", "point_longitude": "-81.451576", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "399079", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "161748", "fl_site_limit": "0", "fr_site_limit": "161748", "tiv_2011": "161748", "tiv_2012": "235301.93", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.5708", "point_longitude": "-81.44959", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "680135", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "164484", "fl_site_limit": "0", "fr_site_limit": "164484", "tiv_2011": "164484", "tiv_2012": "194814.85", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.5708", "point_longitude": "-81.44959", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "621379", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "170532", "fl_site_limit": "0", "fr_site_limit": "170532", "tiv_2011": "170532", "tiv_2012": "178465.15", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.571087", "point_longitude": "-81.448578", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "606710", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "181980", "fl_site_limit": "0", "fr_site_limit": "181980", "tiv_2011": "181980", "tiv_2012": "181216.05", "eq_site_deductible": "0", "hu_site_deductible": "5459.4", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.570854", "point_longitude": "-81.448212", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "443319", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "181980", "fl_site_limit": "0", "fr_site_limit": "181980", "tiv_2011": "181980", "tiv_2012": "151151.13", "eq_site_deductible": "0", "hu_site_deductible": "5459.4", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.571154", "point_longitude": "-81.448433", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "228591", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "186012", "fl_site_limit": "0", "fr_site_limit": "186012", "tiv_2011": "186012", "tiv_2012": "176389.97", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.5708", "point_longitude": "-81.44959", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "721610", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "192348", "fl_site_limit": "0", "fr_site_limit": "192348", "tiv_2011": "192348", "tiv_2012": "210005.55", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.571323", "point_longitude": "-81.450188", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "507395", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "197604", "fl_site_limit": "0", "fr_site_limit": "197604", "tiv_2011": "197604", "tiv_2012": "203450.71", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.570711", "point_longitude": "-81.448067", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "213399", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "198468", "fl_site_limit": "0", "fr_site_limit": "198468", "tiv_2011": "198468", "tiv_2012": "202538.58", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.571777", "point_longitude": "-81.449326", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "579400", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "198612", "fl_site_limit": "0", "fr_site_limit": "198612", "tiv_2011": "198612", "tiv_2012": "226675.88", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.5716", "point_longitude": "-81.45134", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "509951", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "200052", "fl_site_limit": "0", "fr_site_limit": "200052", "tiv_2011": "200052", "tiv_2012": "335395.98", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.57098", "point_longitude": "-81.44838", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "930798", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "201276", "fl_site_limit": "0", "fr_site_limit": "201276", "tiv_2011": "201276", "tiv_2012": "216909.11", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.571613", "point_longitude": "-81.450577", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "729247", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "207324", "fl_site_limit": "0", "fr_site_limit": "207324", "tiv_2011": "207324", "tiv_2012": "252344.61", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.5708", "point_longitude": "-81.44959", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "288344", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "208836", "fl_site_limit": "0", "fr_site_limit": "208836", "tiv_2011": "208836", "tiv_2012": "310058.81", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.5708", "point_longitude": "-81.44959", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "275351", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "212436", "fl_site_limit": "0", "fr_site_limit": "212436", "tiv_2011": "212436", "tiv_2012": "225030.91", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.57164", "point_longitude": "-81.450279", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "976690", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "218052", "fl_site_limit": "0", "fr_site_limit": "218052", "tiv_2011": "218052", "tiv_2012": "332681.94", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.571306", "point_longitude": "-81.45015", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "507111", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "218412", "fl_site_limit": "0", "fr_site_limit": "218412", "tiv_2011": "218412", "tiv_2012": "222125", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.571608", "point_longitude": "-81.450661", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "547458", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "221076", "fl_site_limit": "0", "fr_site_limit": "221076", "tiv_2011": "221076", "tiv_2012": "277280.37", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.571609", "point_longitude": "-81.450615", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "827732", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "226764", "fl_site_limit": "0", "fr_site_limit": "226764", "tiv_2011": "226764", "tiv_2012": "303833.37", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.571665", "point_longitude": "-81.450089", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "229489", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "237132", "fl_site_limit": "0", "fr_site_limit": "237132", "tiv_2011": "237132", "tiv_2012": "282225.02", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.571615", "point_longitude": "-81.450531", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "175251", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "239652", "fl_site_limit": "0", "fr_site_limit": "239652", "tiv_2011": "239652", "tiv_2012": "178583.88", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.571812", "point_longitude": "-81.448822", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "590043", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "245052", "fl_site_limit": "0", "fr_site_limit": "245052", "tiv_2011": "245052", "tiv_2012": "241166.46", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.571596", "point_longitude": "-81.450874", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "476037", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "245052", "fl_site_limit": "0", "fr_site_limit": "245052", "tiv_2011": "245052", "tiv_2012": "306551.23", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.5708", "point_longitude": "-81.44959", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "674960", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "257868", "fl_site_limit": "0", "fr_site_limit": "257868", "tiv_2011": "257868", "tiv_2012": "338372.33", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.57086", "point_longitude": "-81.448174", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "743790", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "6381518.4", "fl_site_limit": "0", "fr_site_limit": "6381518.4", "tiv_2011": "6381518.4", "tiv_2012": "8757880.98", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.570326", "point_longitude": "-81.451576", "line": "Commercial", "construction": "Reinforced Masonry", "point_granularity": "3"}, {"policyID": "817283", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "15390000", "fl_site_limit": "0", "fr_site_limit": "15390000", "tiv_2011": "15390000", "tiv_2012": "11790000", "eq_site_deductible": "0", "hu_site_deductible": "461349", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.570221", "point_longitude": "-81.451309", "line": "Commercial", "construction": "Reinforced Concrete", "point_granularity": "1"}, {"policyID": "201980", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "235696.5", "hu_site_limit": "235696.5", "fl_site_limit": "235696.5", "fr_site_limit": "235696.5", "tiv_2011": "235696.5", "tiv_2012": "353171.41", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.64448", "point_longitude": "-81.45489", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "351505", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "18000", "hu_site_limit": "18000", "fl_site_limit": "18000", "fr_site_limit": "18000", "tiv_2011": "18000", "tiv_2012": "16830", "eq_site_deductible": "0", "hu_site_deductible": "540", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.653568", "point_longitude": "-81.449318", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "798806", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "1772074.8", "hu_site_limit": "1772074.8", "fl_site_limit": "1772074.8", "fr_site_limit": "1772074.8", "tiv_2011": "1772074.8", "tiv_2012": "1768133.71", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.65118", "point_longitude": "-81.44969", "line": "Residential", "construction": "Masonry", "point_granularity": "1"}, {"policyID": "153643", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "95922", "hu_site_limit": "95922", "fl_site_limit": "95922", "fr_site_limit": "95922", "tiv_2011": "95922", "tiv_2012": "150073.42", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.65118", "point_longitude": "-81.44969", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "683653", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "20763", "hu_site_limit": "20763", "fl_site_limit": "20763", "fr_site_limit": "20763", "tiv_2011": "20763", "tiv_2012": "20966.31", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.65118", "point_longitude": "-81.44969", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "475264", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "16560000", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "16560000", "tiv_2012": "20610000", "eq_site_deductible": "0", "hu_site_deductible": "497691", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.639568", "point_longitude": "-81.442482", "line": "Commercial", "construction": "Reinforced Concrete", "point_granularity": "1"}, {"policyID": "912944", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "582759.1", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "582759.1", "tiv_2012": "1020490.44", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.59491", "point_longitude": "-81.539909", "line": "Residential", "construction": "Masonry", "point_granularity": "4"}, {"policyID": "945134", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "2244.53", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "2244.53", "tiv_2012": "2937.46", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.59491", "point_longitude": "-81.539909", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "219959", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "196396.18", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "196396.18", "tiv_2012": "190425.74", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.59491", "point_longitude": "-81.539909", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "793504", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "21500.33", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "21500.33", "tiv_2012": "19687.96", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.6119", "point_longitude": "-81.455986", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "450423", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "74091.86", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "74091.86", "tiv_2012": "110035.31", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.596535", "point_longitude": "-81.546837", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "505178", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "86863.23", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "86863.23", "tiv_2012": "123807.2", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.596535", "point_longitude": "-81.546837", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "408688", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "796134.02", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "796134.02", "tiv_2012": "838972.4", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.66665", "point_longitude": "-81.45235", "line": "Residential", "construction": "Masonry", "point_granularity": "1"}, {"policyID": "477759", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "298522.2", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "298522.2", "tiv_2012": "227585.86", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.657654", "point_longitude": "-81.463341", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "882441", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "23118.64", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "23118.64", "tiv_2012": "23505.92", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.65838", "point_longitude": "-81.46358", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "727602", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "63407.91", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "63407.91", "tiv_2012": "78862", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.617165", "point_longitude": "-81.461609", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "313226", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "285728.39", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "285728.39", "tiv_2012": "288837.12", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.617874", "point_longitude": "-81.457794", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "337027", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "9016.27", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "9016.27", "tiv_2012": "9045.12", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.663744", "point_longitude": "-81.453941", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "649251", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "80915.23", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "80915.23", "tiv_2012": "98214.9", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.67024", "point_longitude": "-81.454628", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "142564", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "28898.3", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "28898.3", "tiv_2012": "36004.04", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.61945", "point_longitude": "-81.465965", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "197782", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "1505741.49", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "1505741.49", "tiv_2012": "2197471.6", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.610081", "point_longitude": "-81.446259", "line": "Residential", "construction": "Masonry", "point_granularity": "1"}, {"policyID": "709787", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "53078.59", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "53078.59", "tiv_2012": "62305.99", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.610081", "point_longitude": "-81.446259", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "655065", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "162952.72", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "162952.72", "tiv_2012": "185883.43", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.67044", "point_longitude": "-81.46572", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "176778", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "2261249.55", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "2261249.55", "tiv_2012": "1825782.64", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.671413", "point_longitude": "-81.464905", "line": "Commercial", "construction": "Reinforced Masonry", "point_granularity": "1"}, {"policyID": "559179", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "1363101.75", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "1363101.75", "tiv_2012": "1619364.87", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.65501", "point_longitude": "-81.45117", "line": "Residential", "construction": "Masonry", "point_granularity": "1"}, {"policyID": "698071", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "295716.54", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "295716.54", "tiv_2012": "247758.41", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.665545", "point_longitude": "-81.43205", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "642950", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "392231.24", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "392231.24", "tiv_2012": "344336.66", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.63862", "point_longitude": "-81.43702", "line": "Residential", "construction": "Masonry", "point_granularity": "4"}, {"policyID": "477240", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "192917.17", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "192917.17", "tiv_2012": "238214.12", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.66665", "point_longitude": "-81.45235", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "672348", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "168339.59", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "168339.59", "tiv_2012": "269983.03", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.63833", "point_longitude": "-81.44564", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "922844", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "316029.52", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "316029.52", "tiv_2012": "337216.14", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.617874", "point_longitude": "-81.457794", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "948580", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "151505.63", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "151505.63", "tiv_2012": "185310.32", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.67069", "point_longitude": "-81.458395", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "364552", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "280565.98", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "280565.98", "tiv_2012": "329505.66", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.65838", "point_longitude": "-81.46358", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "561601", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "460128.2", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "460128.2", "tiv_2012": "792672.06", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.671312", "point_longitude": "-81.46492", "line": "Residential", "construction": "Masonry", "point_granularity": "1"}, {"policyID": "584749", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "324000", "fl_site_limit": "0", "fr_site_limit": "324000", "tiv_2011": "324000", "tiv_2012": "506745.07", "eq_site_deductible": "0", "hu_site_deductible": "9720", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.626793", "point_longitude": "-81.485847", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "601327", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "212850", "hu_site_limit": "212850", "fl_site_limit": "212850", "fr_site_limit": "212850", "tiv_2011": "212850", "tiv_2012": "340143.88", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.925", "point_longitude": "-82.7109", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "302578", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "135000", "hu_site_limit": "135000", "fl_site_limit": "135000", "fr_site_limit": "135000", "tiv_2011": "135000", "tiv_2012": "150719.13", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9248", "point_longitude": "-82.71114", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "756585", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "94284", "hu_site_limit": "94284", "fl_site_limit": "94284", "fr_site_limit": "94284", "tiv_2011": "94284", "tiv_2012": "100714.17", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.90334", "point_longitude": "-82.63364", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "627591", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "6300", "hu_site_limit": "6300", "fl_site_limit": "6300", "fr_site_limit": "6300", "tiv_2011": "6300", "tiv_2012": "9566.42", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.919149", "point_longitude": "-82.639236", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "663563", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "1248407.1", "hu_site_limit": "1248407.1", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "1248407.1", "tiv_2012": "1417531.31", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9301", "point_longitude": "-82.7088", "line": "Residential", "construction": "Masonry", "point_granularity": "3"}, {"policyID": "108959", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "114170.34", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "114170.34", "tiv_2012": "136068.22", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.041415", "point_longitude": "-82.70641", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "951069", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "498344.66", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "498344.66", "tiv_2012": "434656.21", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.92143", "point_longitude": "-82.71411", "line": "Residential", "construction": "Masonry", "point_granularity": "1"}, {"policyID": "490641", "statecode": "FL", "county": "BAKER COUNTY", "eq_site_limit": "0", "hu_site_limit": "910.22", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "910.22", "tiv_2012": "1346.55", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.265605", "point_longitude": "-82.16215", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "443968", "statecode": "FL", "county": "BAKER COUNTY", "eq_site_limit": "0", "hu_site_limit": "3195.34", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "3195.34", "tiv_2012": "4551.39", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.27125", "point_longitude": "-82.160875", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "433688", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "172157.99", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "172157.99", "tiv_2012": "171582.99", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.980408", "point_longitude": "-81.658165", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "168578", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "945000", "hu_site_limit": "945000", "fl_site_limit": "945000", "fr_site_limit": "945000", "tiv_2011": "945000", "tiv_2012": "750524.67", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.0517", "point_longitude": "-81.82975", "line": "Residential", "construction": "Masonry", "point_granularity": "1"}, {"policyID": "294375", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "76500", "hu_site_limit": "76500", "fl_site_limit": "76500", "fr_site_limit": "76500", "tiv_2011": "76500", "tiv_2012": "121368.78", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.0517", "point_longitude": "-81.82975", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "902110", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "76500", "hu_site_limit": "76500", "fl_site_limit": "76500", "fr_site_limit": "76500", "tiv_2011": "76500", "tiv_2012": "94517.28", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.0517", "point_longitude": "-81.82975", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "279816", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "431726.4", "hu_site_limit": "431726.4", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "431726.4", "tiv_2012": "640896.11", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.98839", "point_longitude": "-81.70777", "line": "Residential", "construction": "Masonry", "point_granularity": "1"}, {"policyID": "994565", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "11767.98", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "11767.98", "tiv_2012": "14137.95", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9826", "point_longitude": "-81.7238", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "930535", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "15981.99", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "15981.99", "tiv_2012": "25400.89", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9826", "point_longitude": "-81.7238", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "844642", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "35302.09", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "35302.09", "tiv_2012": "47059.67", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9826", "point_longitude": "-81.7238", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "292887", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "26396.15", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "26396.15", "tiv_2012": "28938.78", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9826", "point_longitude": "-81.7238", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "655128", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "7536.5", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "7536.5", "tiv_2012": "10216", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9826", "point_longitude": "-81.7238", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "164038", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "13198.07", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "13198.07", "tiv_2012": "16695.56", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9826", "point_longitude": "-81.7238", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "163057", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "29410.75", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "29410.75", "tiv_2012": "25890.52", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9826", "point_longitude": "-81.7238", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "327730", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "13198.07", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "13198.07", "tiv_2012": "11239.53", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9826", "point_longitude": "-81.7238", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "218187", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "25780.36", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "25780.36", "tiv_2012": "35155", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9826", "point_longitude": "-81.7238", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "697530", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "9806.65", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "9806.65", "tiv_2012": "16990.72", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9826", "point_longitude": "-81.7238", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "619053", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "15992.1", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "15992.1", "tiv_2012": "23431.62", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9826", "point_longitude": "-81.7238", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "431406", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "9806.65", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "9806.65", "tiv_2012": "7026.15", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9826", "point_longitude": "-81.7238", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "256801", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "13198.07", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "13198.07", "tiv_2012": "22117.33", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9826", "point_longitude": "-81.7238", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "571398", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "304842.43", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "304842.43", "tiv_2012": "250185.41", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9826", "point_longitude": "-81.7238", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "239669", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "13198.07", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "13198.07", "tiv_2012": "13200.19", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9826", "point_longitude": "-81.7238", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "530369", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "48252.01", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "48252.01", "tiv_2012": "36139.79", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9826", "point_longitude": "-81.7238", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "948187", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "9806.65", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "9806.65", "tiv_2012": "13926.22", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9826", "point_longitude": "-81.7238", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "571059", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "9190.86", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "9190.86", "tiv_2012": "14678.43", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9826", "point_longitude": "-81.7238", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "470539", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "68931.45", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "68931.45", "tiv_2012": "85159.98", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.993125", "point_longitude": "-81.67742", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "791046", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "68931.45", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "68931.45", "tiv_2012": "99578.92", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.993125", "point_longitude": "-81.67742", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "563971", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "27572.58", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "27572.58", "tiv_2012": "30033.98", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.993125", "point_longitude": "-81.67742", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "823903", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "13786.29", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "13786.29", "tiv_2012": "22316.42", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.993125", "point_longitude": "-81.67742", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "812504", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "9190.86", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "9190.86", "tiv_2012": "10540.08", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9826", "point_longitude": "-81.7238", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "597719", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "102937.63", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "102937.63", "tiv_2012": "94857.02", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.995916", "point_longitude": "-81.689049", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "716513", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "19605.94", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "19605.94", "tiv_2012": "18479.62", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.004622", "point_longitude": "-81.683899", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "378286", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "13198.07", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "13198.07", "tiv_2012": "16161.17", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9826", "point_longitude": "-81.7238", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "698982", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "9806.65", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "9806.65", "tiv_2012": "12391.68", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9826", "point_longitude": "-81.7238", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "624550", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "9806.65", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "9806.65", "tiv_2012": "13533.17", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9826", "point_longitude": "-81.7238", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "666076", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "11764.3", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "11764.3", "tiv_2012": "11058.82", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9826", "point_longitude": "-81.7238", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "474145", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "7619.22", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "7619.22", "tiv_2012": "6304.92", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9826", "point_longitude": "-81.7238", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "572929", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "13198.07", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "13198.07", "tiv_2012": "18039.84", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9826", "point_longitude": "-81.7238", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "640205", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "6433.6", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "6433.6", "tiv_2012": "8588.09", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9826", "point_longitude": "-81.7238", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "295930", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "6617.42", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "6617.42", "tiv_2012": "5824.75", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.0156", "point_longitude": "-81.70065", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "823004", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "9806.65", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "9806.65", "tiv_2012": "9970.77", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9826", "point_longitude": "-81.7238", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "230536", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "8712.94", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "8712.94", "tiv_2012": "10813.94", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.004385", "point_longitude": "-81.683762", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "936142", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "301000.66", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "301000.66", "tiv_2012": "321265.52", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.00421", "point_longitude": "-81.684", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "724639", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "57442.87", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "57442.87", "tiv_2012": "86664.06", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9826", "point_longitude": "-81.7238", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "119986", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "18381.72", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "18381.72", "tiv_2012": "15298.37", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9826", "point_longitude": "-81.7238", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "603370", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "3032.98", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "3032.98", "tiv_2012": "4916.61", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9826", "point_longitude": "-81.7238", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "532496", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "3032.98", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "3032.98", "tiv_2012": "4227.37", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9826", "point_longitude": "-81.7238", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "786954", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "9007.04", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "9007.04", "tiv_2012": "7864.77", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.00169", "point_longitude": "-81.71087", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "416348", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "18381.72", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "18381.72", "tiv_2012": "27063.92", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9826", "point_longitude": "-81.7238", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "506364", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "652150.86", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "652150.86", "tiv_2012": "614169.6", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.006186", "point_longitude": "-81.698914", "line": "Residential", "construction": "Masonry", "point_granularity": "1"}, {"policyID": "311994", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "75824.59", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "75824.59", "tiv_2012": "85602.93", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.006186", "point_longitude": "-81.698914", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "807442", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "91908.6", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "91908.6", "tiv_2012": "94516.04", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.006186", "point_longitude": "-81.698914", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "235695", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "45954.3", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "45954.3", "tiv_2012": "41626.05", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.006186", "point_longitude": "-81.698914", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "481294", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "64336.02", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "64336.02", "tiv_2012": "69354.23", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.006186", "point_longitude": "-81.698914", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "292670", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "234366.92", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "234366.92", "tiv_2012": "184597.7", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.006186", "point_longitude": "-81.698914", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "127739", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "13786.29", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "13786.29", "tiv_2012": "17192.67", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.006186", "point_longitude": "-81.698914", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "869056", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "22977.15", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "22977.15", "tiv_2012": "22060.5", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9994", "point_longitude": "-81.71524", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "514471", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "18381.72", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "18381.72", "tiv_2012": "27269.28", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9826", "point_longitude": "-81.7238", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "903764", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "91908.6", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "91908.6", "tiv_2012": "130879.31", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.99534", "point_longitude": "-81.684074", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "192068", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "43840.4", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "43840.4", "tiv_2012": "39041.19", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.98799", "point_longitude": "-81.69477", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "109815", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "38601.61", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "38601.61", "tiv_2012": "63272.13", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.00593", "point_longitude": "-81.698545", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "495339", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "413588.69", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "413588.69", "tiv_2012": "420116.77", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.98272", "point_longitude": "-81.676795", "line": "Residential", "construction": "Masonry", "point_granularity": "3"}, {"policyID": "752123", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "13786.29", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "13786.29", "tiv_2012": "18320.32", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9826", "point_longitude": "-81.7238", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "412775", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "22977.15", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "22977.15", "tiv_2012": "28403.71", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.00228", "point_longitude": "-81.699965", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "249958", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "25274.86", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "25274.86", "tiv_2012": "38878", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.96809", "point_longitude": "-81.65459", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "754919", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "27572.58", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "27572.58", "tiv_2012": "24486.1", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.989515", "point_longitude": "-81.687235", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "829637", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "137862.9", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "137862.9", "tiv_2012": "127544.55", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.989515", "point_longitude": "-81.687235", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "931429", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "91908.6", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "91908.6", "tiv_2012": "97127.17", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.989515", "point_longitude": "-81.687235", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "565451", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "22977.15", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "22977.15", "tiv_2012": "31074.07", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.00414", "point_longitude": "-81.700315", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "722334", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "27572.58", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "27572.58", "tiv_2012": "36234.34", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.00421", "point_longitude": "-81.684", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "630898", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "77254.74", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "77254.74", "tiv_2012": "114400.37", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9817", "point_longitude": "-81.81295", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "166536", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "212887.5", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "212887.5", "tiv_2012": "184477.66", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9817", "point_longitude": "-81.81295", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "469135", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "653122.95", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "653122.95", "tiv_2012": "1049829.83", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.98782", "point_longitude": "-81.69136", "line": "Residential", "construction": "Masonry", "point_granularity": "1"}, {"policyID": "678786", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "635702.59", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "635702.59", "tiv_2012": "803088.17", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.031706", "point_longitude": "-81.708595", "line": "Residential", "construction": "Masonry", "point_granularity": "1"}, {"policyID": "284473", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "781465.69", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "781465.69", "tiv_2012": "1174149.07", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.839308", "point_longitude": "-81.661644", "line": "Residential", "construction": "Masonry", "point_granularity": "3"}, {"policyID": "499389", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "638884.47", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "638884.47", "tiv_2012": "926230.42", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.986181", "point_longitude": "-81.695091", "line": "Residential", "construction": "Masonry", "point_granularity": "1"}, {"policyID": "541241", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "1939500", "fl_site_limit": "0", "fr_site_limit": "1939500", "tiv_2011": "1939500", "tiv_2012": "3345521.13", "eq_site_deductible": "0", "hu_site_deductible": "58185", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.98", "point_longitude": "-81.69609", "line": "Commercial", "construction": "Reinforced Masonry", "point_granularity": "1"}, {"policyID": "797586", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "6760449.39", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "6760449.39", "tiv_2012": "6739694.81", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.99665", "point_longitude": "-81.68111", "line": "Commercial", "construction": "Reinforced Masonry", "point_granularity": "1"}, {"policyID": "812823", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "162366.3", "hu_site_limit": "162366.3", "fl_site_limit": "162366.3", "fr_site_limit": "162366.3", "tiv_2011": "162366.3", "tiv_2012": "168942.46", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.026604", "point_longitude": "-81.70697", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "598244", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "648862.42", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "648862.42", "tiv_2012": "981993.57", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.981771", "point_longitude": "-81.675621", "line": "Residential", "construction": "Masonry", "point_granularity": "3"}, {"policyID": "788363", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "240578.59", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "240578.59", "tiv_2012": "192335.37", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.997179", "point_longitude": "-81.736023", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "737787", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "13467.17", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "13467.17", "tiv_2012": "14335.1", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.005896", "point_longitude": "-81.730293", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "445518", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "19639.62", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "19639.62", "tiv_2012": "24001.58", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.892822", "point_longitude": "-81.670074", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "758347", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "604316.67", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "604316.67", "tiv_2012": "622958.63", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.983204", "point_longitude": "-81.755379", "line": "Residential", "construction": "Masonry", "point_granularity": "1"}, {"policyID": "195133", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "171459.48", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "171459.48", "tiv_2012": "160656.16", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.983204", "point_longitude": "-81.755379", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "991548", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "822091.98", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "822091.98", "tiv_2012": "885491.72", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.99319", "point_longitude": "-81.68175", "line": "Residential", "construction": "Masonry", "point_granularity": "1"}, {"policyID": "696936", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "85444.69", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "85444.69", "tiv_2012": "124562.37", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.00093", "point_longitude": "-81.679455", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "393176", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "26934.33", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "26934.33", "tiv_2012": "34616.01", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.00135", "point_longitude": "-81.742455", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "626647", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "162728.27", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "162728.27", "tiv_2012": "266906.9", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.00135", "point_longitude": "-81.742455", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "915781", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "589356.89", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "589356.89", "tiv_2012": "472322.4", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.00135", "point_longitude": "-81.742455", "line": "Residential", "construction": "Masonry", "point_granularity": "3"}, {"policyID": "827852", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "13657.95", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "13657.95", "tiv_2012": "19860.19", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.00135", "point_longitude": "-81.742455", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "800420", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "64726.57", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "64726.57", "tiv_2012": "71551.34", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.983204", "point_longitude": "-81.755379", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "728346", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "2603338.04", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "2603338.04", "tiv_2012": "3496699.52", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.983204", "point_longitude": "-81.755379", "line": "Commercial", "construction": "Reinforced Masonry", "point_granularity": "1"}, {"policyID": "928642", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "67335.83", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "67335.83", "tiv_2012": "69182.52", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.983204", "point_longitude": "-81.755379", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "442061", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "22445.28", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "22445.28", "tiv_2012": "24191.61", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.983204", "point_longitude": "-81.755379", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "810826", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "31984.52", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "31984.52", "tiv_2012": "52870.8", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.983204", "point_longitude": "-81.755379", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "336798", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "44890.56", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "44890.56", "tiv_2012": "60419.64", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.983204", "point_longitude": "-81.755379", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "830917", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "15341.35", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "15341.35", "tiv_2012": "20025.98", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.983204", "point_longitude": "-81.755379", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "984232", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "1748172.94", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "1748172.94", "tiv_2012": "2274163.21", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.99146", "point_longitude": "-81.67947", "line": "Residential", "construction": "Masonry", "point_granularity": "1"}, {"policyID": "203667", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "212051.77", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "212051.77", "tiv_2012": "205713.96", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.024078", "point_longitude": "-81.714539", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "395084", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "238222.96", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "238222.96", "tiv_2012": "347967.51", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.024078", "point_longitude": "-81.714539", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "869242", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "174354.92", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "174354.92", "tiv_2012": "187374.87", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.024033", "point_longitude": "-81.714836", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "704537", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "29086.84", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "29086.84", "tiv_2012": "39703.53", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9826", "point_longitude": "-81.7238", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "692691", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "49883.51", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "49883.51", "tiv_2012": "54682.3", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.99501", "point_longitude": "-81.69407", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "580758", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "33850.85", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "33850.85", "tiv_2012": "47324.63", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.046192", "point_longitude": "-81.795082", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "515486", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "14204.49", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "14204.49", "tiv_2012": "21284.3", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.046192", "point_longitude": "-81.795082", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "884079", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "60112.94", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "60112.94", "tiv_2012": "67485.56", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.046192", "point_longitude": "-81.795082", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "491095", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "776595.4", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "776595.4", "tiv_2012": "788694.76", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9826", "point_longitude": "-81.7238", "line": "Residential", "construction": "Masonry", "point_granularity": "4"}, {"policyID": "579764", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "88434.4", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "88434.4", "tiv_2012": "110143.27", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.9826", "point_longitude": "-81.7238", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "263177", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "61724.52", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "61724.52", "tiv_2012": "50970.62", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.992", "point_longitude": "-81.68678", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "710739", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "33667.92", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "33667.92", "tiv_2012": "45290.08", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.99327", "point_longitude": "-81.724515", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "156129", "statecode": "FL", "county": "CLAY COUNTY", "eq_site_limit": "0", "hu_site_limit": "64275.42", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "64275.42", "tiv_2012": "80342.73", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.992", "point_longitude": "-81.68678", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "178800", "statecode": "FL", "county": "BRADFORD COUNTY", "eq_site_limit": "216363.6", "hu_site_limit": "216363.6", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "216363.6", "tiv_2012": "347251.89", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.869762", "point_longitude": "-82.202431", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "406073", "statecode": "FL", "county": "BRADFORD COUNTY", "eq_site_limit": "0", "hu_site_limit": "106317.27", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "106317.27", "tiv_2012": "105384.87", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.86261", "point_longitude": "-82.135475", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "450089", "statecode": "FL", "county": "BRADFORD COUNTY", "eq_site_limit": "0", "hu_site_limit": "170207.57", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "170207.57", "tiv_2012": "148194.97", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.864408", "point_longitude": "-82.135536", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "894206", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "189999.9", "hu_site_limit": "189999.9", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "189999.9", "tiv_2012": "291171.43", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.687055", "point_longitude": "-81.9198", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "472007", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "635996.7", "hu_site_limit": "635996.7", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "635996.7", "tiv_2012": "1010881.77", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.7595", "point_longitude": "-81.9576", "line": "Residential", "construction": "Masonry", "point_granularity": "4"}, {"policyID": "500287", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "1729530", "hu_site_limit": "1729530", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "1729530", "tiv_2012": "2062651.31", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.69844", "point_longitude": "-81.908635", "line": "Residential", "construction": "Masonry", "point_granularity": "4"}, {"policyID": "365732", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "110218.53", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "110218.53", "tiv_2012": "114569.52", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.690071", "point_longitude": "-81.919342", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "365145", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "123995.38", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "123995.38", "tiv_2012": "142594.69", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.690071", "point_longitude": "-81.919342", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "237841", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "13777.78", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "13777.78", "tiv_2012": "22931.74", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.690071", "point_longitude": "-81.919342", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "497561", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "38954.52", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "38954.52", "tiv_2012": "30813.03", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.692579", "point_longitude": "-81.923798", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "245837", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "428020.45", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "428020.45", "tiv_2012": "590955.85", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.692579", "point_longitude": "-81.923798", "line": "Residential", "construction": "Masonry", "point_granularity": "1"}, {"policyID": "732075", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "38954.52", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "38954.52", "tiv_2012": "44390.39", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.687847", "point_longitude": "-81.928619", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "657625", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "3505598.5", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "3505598.5", "tiv_2012": "5610030.32", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.698156", "point_longitude": "-81.917923", "line": "Commercial", "construction": "Reinforced Masonry", "point_granularity": "1"}, {"policyID": "790556", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "140160.38", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "140160.38", "tiv_2012": "195355.54", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.692579", "point_longitude": "-81.923798", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "207626", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "60397.19", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "60397.19", "tiv_2012": "73202.3", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.68227", "point_longitude": "-82.010965", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "902008", "statecode": "FL", "county": "NASSAU COUNTY", "eq_site_limit": "0", "hu_site_limit": "1138559.14", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "1138559.14", "tiv_2012": "1124171.17", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.68758", "point_longitude": "-81.90805", "line": "Residential", "construction": "Masonry", "point_granularity": "1"}, {"policyID": "135936", "statecode": "FL", "county": "HAMILTON COUNTY", "eq_site_limit": "0", "hu_site_limit": "4623.3", "fl_site_limit": "0", "fr_site_limit": "4623.3", "tiv_2011": "4623.3", "tiv_2012": "7055.16", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.51869", "point_longitude": "-82.95187", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "997759", "statecode": "FL", "county": "HAMILTON COUNTY", "eq_site_limit": "0", "hu_site_limit": "34212.42", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "34212.42", "tiv_2012": "42302.97", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.51869", "point_longitude": "-82.95187", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "470224", "statecode": "FL", "county": "HAMILTON COUNTY", "eq_site_limit": "0", "hu_site_limit": "11095.92", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "11095.92", "tiv_2012": "10246.42", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.51869", "point_longitude": "-82.95187", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "367761", "statecode": "FL", "county": "HAMILTON COUNTY", "eq_site_limit": "0", "hu_site_limit": "25899.23", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "25899.23", "tiv_2012": "35000.32", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.505239", "point_longitude": "-82.95285", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "285586", "statecode": "FL", "county": "HAMILTON COUNTY", "eq_site_limit": "0", "hu_site_limit": "10211.17", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "10211.17", "tiv_2012": "18829.64", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.505239", "point_longitude": "-82.95285", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "122164", "statecode": "FL", "county": "HAMILTON COUNTY", "eq_site_limit": "0", "hu_site_limit": "4084.47", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "4084.47", "tiv_2012": "3579.34", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.496", "point_longitude": "-82.9527", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "152913", "statecode": "FL", "county": "HAMILTON COUNTY", "eq_site_limit": "0", "hu_site_limit": "26920.35", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "26920.35", "tiv_2012": "28007.93", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.465835", "point_longitude": "-83.006185", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "655156", "statecode": "FL", "county": "HAMILTON COUNTY", "eq_site_limit": "0", "hu_site_limit": "80668.21", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "80668.21", "tiv_2012": "70626.63", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.523375", "point_longitude": "-82.95845", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "989201", "statecode": "FL", "county": "HAMILTON COUNTY", "eq_site_limit": "0", "hu_site_limit": "70642.7", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "70642.7", "tiv_2012": "63476.71", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.523375", "point_longitude": "-82.95845", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "207985", "statecode": "FL", "county": "HAMILTON COUNTY", "eq_site_limit": "0", "hu_site_limit": "263169.6", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "263169.6", "tiv_2012": "368477.97", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.52085", "point_longitude": "-82.950535", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "732449", "statecode": "FL", "county": "HAMILTON COUNTY", "eq_site_limit": "0", "hu_site_limit": "15873.72", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "15873.72", "tiv_2012": "12857.71", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.51929", "point_longitude": "-82.94598", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "665653", "statecode": "FL", "county": "HAMILTON COUNTY", "eq_site_limit": "0", "hu_site_limit": "246924.56", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "246924.56", "tiv_2012": "419574.22", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.519608", "point_longitude": "-82.954086", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "939634", "statecode": "FL", "county": "HAMILTON COUNTY", "eq_site_limit": "0", "hu_site_limit": "942304.98", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "942304.98", "tiv_2012": "1133298.89", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.496", "point_longitude": "-82.9527", "line": "Residential", "construction": "Masonry", "point_granularity": "4"}, {"policyID": "981796", "statecode": "FL", "county": "HAMILTON COUNTY", "eq_site_limit": "0", "hu_site_limit": "12996.03", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "12996.03", "tiv_2012": "17111.87", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.52296", "point_longitude": "-82.955515", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "269573", "statecode": "FL", "county": "HAMILTON COUNTY", "eq_site_limit": "0", "hu_site_limit": "42886.9", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "42886.9", "tiv_2012": "66233.75", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.496", "point_longitude": "-82.9527", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "602123", "statecode": "FL", "county": "HAMILTON COUNTY", "eq_site_limit": "0", "hu_site_limit": "2784.86", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "2784.86", "tiv_2012": "4613.35", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.496", "point_longitude": "-82.9527", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "336717", "statecode": "FL", "county": "HAMILTON COUNTY", "eq_site_limit": "0", "hu_site_limit": "105764.12", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "105764.12", "tiv_2012": "116617.63", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.518326", "point_longitude": "-82.948914", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "238449", "statecode": "FL", "county": "HAMILTON COUNTY", "eq_site_limit": "0", "hu_site_limit": "18419.71", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "18419.71", "tiv_2012": "26153.37", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.496", "point_longitude": "-82.9527", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "530357", "statecode": "FL", "county": "HAMILTON COUNTY", "eq_site_limit": "0", "hu_site_limit": "36836.28", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "36836.28", "tiv_2012": "38632.56", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.52904", "point_longitude": "-82.960715", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "896911", "statecode": "FL", "county": "HAMILTON COUNTY", "eq_site_limit": "0", "hu_site_limit": "214534.66", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "214534.66", "tiv_2012": "252790.47", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.496", "point_longitude": "-82.9527", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "391646", "statecode": "FL", "county": "HAMILTON COUNTY", "eq_site_limit": "0", "hu_site_limit": "44199.98", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "44199.98", "tiv_2012": "54449.07", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.496", "point_longitude": "-82.9527", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "710345", "statecode": "FL", "county": "HAMILTON COUNTY", "eq_site_limit": "0", "hu_site_limit": "51130.14", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "51130.14", "tiv_2012": "53139.05", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.496", "point_longitude": "-82.9527", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "944525", "statecode": "FL", "county": "HAMILTON COUNTY", "eq_site_limit": "194537.7", "hu_site_limit": "194537.7", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "194537.7", "tiv_2012": "156395.86", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.5696", "point_longitude": "-83.1456", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "800878", "statecode": "FL", "county": "HAMILTON COUNTY", "eq_site_limit": "0", "hu_site_limit": "28776.92", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "28776.92", "tiv_2012": "32189.87", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.599605", "point_longitude": "-83.236685", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "866106", "statecode": "FL", "county": "HAMILTON COUNTY", "eq_site_limit": "0", "hu_site_limit": "151310.92", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "151310.92", "tiv_2012": "158091.16", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.58925", "point_longitude": "-83.09455", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "204794", "statecode": "FL", "county": "HAMILTON COUNTY", "eq_site_limit": "0", "hu_site_limit": "179562.23", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "179562.23", "tiv_2012": "147384.67", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.5696", "point_longitude": "-83.1456", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "849458", "statecode": "FL", "county": "HAMILTON COUNTY", "eq_site_limit": "0", "hu_site_limit": "16833.96", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "16833.96", "tiv_2012": "19110.92", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.5696", "point_longitude": "-83.1456", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "806471", "statecode": "FL", "county": "HAMILTON COUNTY", "eq_site_limit": "0", "hu_site_limit": "24914.26", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "24914.26", "tiv_2012": "33937.58", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.5696", "point_longitude": "-83.1456", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "464589", "statecode": "FL", "county": "HAMILTON COUNTY", "eq_site_limit": "0", "hu_site_limit": "169461.85", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "169461.85", "tiv_2012": "242525.33", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.603361", "point_longitude": "-83.09906", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "591943", "statecode": "FL", "county": "UNION COUNTY", "eq_site_limit": "407520", "hu_site_limit": "407520", "fl_site_limit": "407520", "fr_site_limit": "407520", "tiv_2011": "407520", "tiv_2012": "652935.06", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.02339", "point_longitude": "-82.3414", "line": "Residential", "construction": "Masonry", "point_granularity": "3"}, {"policyID": "973133", "statecode": "FL", "county": "UNION COUNTY", "eq_site_limit": "137160", "hu_site_limit": "137160", "fl_site_limit": "137160", "fr_site_limit": "137160", "tiv_2011": "137160", "tiv_2012": "235651.85", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.02339", "point_longitude": "-82.3414", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "743965", "statecode": "FL", "county": "UNION COUNTY", "eq_site_limit": "123300", "hu_site_limit": "123300", "fl_site_limit": "123300", "fr_site_limit": "123300", "tiv_2011": "123300", "tiv_2012": "117740.65", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.02756", "point_longitude": "-82.33126", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "528185", "statecode": "FL", "county": "UNION COUNTY", "eq_site_limit": "0", "hu_site_limit": "37823.84", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "37823.84", "tiv_2012": "66198.38", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "29.934589", "point_longitude": "-82.409576", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "219113", "statecode": "FL", "county": "UNION COUNTY", "eq_site_limit": "0", "hu_site_limit": "181487.52", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "181487.52", "tiv_2012": "272492.62", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.024082", "point_longitude": "-82.338158", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "376803", "statecode": "FL", "county": "UNION COUNTY", "eq_site_limit": "0", "hu_site_limit": "948148.79", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "948148.79", "tiv_2012": "1344182.96", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.017946", "point_longitude": "-82.344803", "line": "Residential", "construction": "Masonry", "point_granularity": "1"}, {"policyID": "233559", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "585000", "hu_site_limit": "585000", "fl_site_limit": "585000", "fr_site_limit": "585000", "tiv_2011": "585000", "tiv_2012": "516026.16", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.19826", "point_longitude": "-82.63482", "line": "Residential", "construction": "Masonry", "point_granularity": "1"}, {"policyID": "579117", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "82620", "hu_site_limit": "82620", "fl_site_limit": "82620", "fr_site_limit": "82620", "tiv_2011": "82620", "tiv_2012": "67513.1", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.2598", "point_longitude": "-82.6422", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "517674", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "61027.56", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "61027.56", "tiv_2012": "66963.34", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.18928", "point_longitude": "-82.62603", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "980808", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "22500", "fl_site_limit": "0", "fr_site_limit": "22500", "tiv_2011": "22500", "tiv_2012": "15583.05", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.189347", "point_longitude": "-82.631552", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "143584", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "874801.8", "hu_site_limit": "874801.8", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "874801.8", "tiv_2012": "1488037.86", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.179675", "point_longitude": "-82.67663", "line": "Residential", "construction": "Masonry", "point_granularity": "1"}, {"policyID": "489643", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "504230.4", "hu_site_limit": "504230.4", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "504230.4", "tiv_2012": "381198.18", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.367133", "point_longitude": "-82.629161", "line": "Residential", "construction": "Masonry", "point_granularity": "3"}, {"policyID": "986109", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "67591.02", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "67591.02", "tiv_2012": "107281.96", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.2598", "point_longitude": "-82.6422", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "654640", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "135763.24", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "135763.24", "tiv_2012": "123495.13", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.191295", "point_longitude": "-82.64519", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "700895", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "702820.8", "hu_site_limit": "702820.8", "fl_site_limit": "702820.8", "fr_site_limit": "702820.8", "tiv_2011": "702820.8", "tiv_2012": "800541", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.183475", "point_longitude": "-82.68749", "line": "Residential", "construction": "Masonry", "point_granularity": "4"}, {"policyID": "407962", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "129600000", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "129600000", "tiv_2012": "120600000", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.232008", "point_longitude": "-82.638557", "line": "Commercial", "construction": "Steel Frame", "point_granularity": "3"}, {"policyID": "494610", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "67892.48", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "67892.48", "tiv_2012": "51746.63", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.174957", "point_longitude": "-82.662956", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "744305", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "67892.48", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "67892.48", "tiv_2012": "95471.01", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.20295", "point_longitude": "-82.63428", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "512991", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "102221.41", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "102221.41", "tiv_2012": "123969.01", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.20298", "point_longitude": "-82.63389", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "507789", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "105926", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "105926", "tiv_2012": "149616.24", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.174339", "point_longitude": "-82.662567", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "186262", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "4542119.64", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "4542119.64", "tiv_2012": "4765537.43", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.194994", "point_longitude": "-82.638016", "line": "Commercial", "construction": "Reinforced Masonry", "point_granularity": "1"}, {"policyID": "978388", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "191242.75", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "191242.75", "tiv_2012": "275087.39", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.19006", "point_longitude": "-82.60341", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "784347", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "921352.86", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "921352.86", "tiv_2012": "1031325.54", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.201794", "point_longitude": "-82.661995", "line": "Residential", "construction": "Masonry", "point_granularity": "1"}, {"policyID": "679408", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "35322.13", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "35322.13", "tiv_2012": "51938.8", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.218323", "point_longitude": "-82.645874", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "306619", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "108562.2", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "108562.2", "tiv_2012": "128945.84", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.218323", "point_longitude": "-82.645874", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "457004", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "26195.88", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "26195.88", "tiv_2012": "31749.41", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.218323", "point_longitude": "-82.645874", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "329255", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "101204.64", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "101204.64", "tiv_2012": "159306.22", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.25387", "point_longitude": "-82.70283", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "900892", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "16160.6", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "16160.6", "tiv_2012": "12760.09", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.25387", "point_longitude": "-82.70283", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "633241", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "22781.96", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "22781.96", "tiv_2012": "31753.49", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.25387", "point_longitude": "-82.70283", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "502372", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "114298.09", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "114298.09", "tiv_2012": "87129.43", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.27805", "point_longitude": "-82.69878", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "719075", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "315302.29", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "315302.29", "tiv_2012": "370039.71", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.186512", "point_longitude": "-82.695274", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "920786", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "109954.93", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "109954.93", "tiv_2012": "131220.21", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.2598", "point_longitude": "-82.6422", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "232605", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "180630.62", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "180630.62", "tiv_2012": "222258.75", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.160645", "point_longitude": "-82.708005", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "601984", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "124374.9", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "124374.9", "tiv_2012": "178903.34", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.2598", "point_longitude": "-82.6422", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "459878", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "134464.05", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "134464.05", "tiv_2012": "189045.7", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.201059", "point_longitude": "-82.635643", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "565530", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "496159.61", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "496159.61", "tiv_2012": "489018.88", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.201059", "point_longitude": "-82.635643", "line": "Residential", "construction": "Masonry", "point_granularity": "1"}, {"policyID": "202651", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "2311064.6", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "2311064.6", "tiv_2012": "2670204.04", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.201059", "point_longitude": "-82.635643", "line": "Commercial", "construction": "Reinforced Masonry", "point_granularity": "1"}, {"policyID": "909104", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "72279", "fl_site_limit": "0", "fr_site_limit": "72279", "tiv_2011": "72279", "tiv_2012": "123617.33", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.2988", "point_longitude": "-82.6063", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "872719", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "22356.54", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "22356.54", "tiv_2012": "22455.91", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.189365", "point_longitude": "-82.63753", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "997611", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "16767.17", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "16767.17", "tiv_2012": "21121.61", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.19182", "point_longitude": "-82.6585", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "519606", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "16767.17", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "16767.17", "tiv_2012": "26327.41", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.197075", "point_longitude": "-82.63814", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "624248", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "396814.48", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "396814.48", "tiv_2012": "433692.83", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.11852", "point_longitude": "-82.68968", "line": "Residential", "construction": "Masonry", "point_granularity": "4"}, {"policyID": "783767", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "167668.04", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "167668.04", "tiv_2012": "255938.56", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.189645", "point_longitude": "-82.63638", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "285479", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "16767.17", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "16767.17", "tiv_2012": "12877.19", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.201195", "point_longitude": "-82.7174", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "424793", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "16767.17", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "16767.17", "tiv_2012": "20170.81", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.183145", "point_longitude": "-82.636545", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "256213", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "22356.54", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "22356.54", "tiv_2012": "24969.08", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.1799", "point_longitude": "-82.66905", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "155199", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "22356.54", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "22356.54", "tiv_2012": "27389.44", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.188485", "point_longitude": "-82.6921", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "830871", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "16767.17", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "16767.17", "tiv_2012": "23608.18", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.2988", "point_longitude": "-82.6063", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "757768", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "16767.17", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "16767.17", "tiv_2012": "14548.41", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.17262", "point_longitude": "-82.66527", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "176583", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "344852.16", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "344852.16", "tiv_2012": "433818.5", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.2988", "point_longitude": "-82.6063", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "678864", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "68970.43", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "68970.43", "tiv_2012": "96002.7", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.2988", "point_longitude": "-82.6063", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "854000", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "91960.58", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "91960.58", "tiv_2012": "80292.62", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.18948", "point_longitude": "-82.61728", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "631978", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "25748.96", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "25748.96", "tiv_2012": "36460.53", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.2988", "point_longitude": "-82.6063", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "967058", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "25105.24", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "25105.24", "tiv_2012": "30475.72", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.2988", "point_longitude": "-82.6063", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "878374", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "38623.44", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "38623.44", "tiv_2012": "60957.06", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.2988", "point_longitude": "-82.6063", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "113053", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "9196.06", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "9196.06", "tiv_2012": "7797.29", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.18883", "point_longitude": "-82.62323", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "288738", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "9196.06", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "9196.06", "tiv_2012": "12297.35", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.195425", "point_longitude": "-82.636865", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "594369", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "38623.44", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "38623.44", "tiv_2012": "42941.54", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.2988", "point_longitude": "-82.6063", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "706890", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "45980.29", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "45980.29", "tiv_2012": "63408.66", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.2988", "point_longitude": "-82.6063", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "536032", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "137940.86", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "137940.86", "tiv_2012": "213321.55", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.2988", "point_longitude": "-82.6063", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "747825", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "27944.98", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "27944.98", "tiv_2012": "47665.19", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.2988", "point_longitude": "-82.6063", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "608124", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "22356.54", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "22356.54", "tiv_2012": "37227.66", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.2988", "point_longitude": "-82.6063", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "934739", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "89423.38", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "89423.38", "tiv_2012": "126691.92", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.2988", "point_longitude": "-82.6063", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "757078", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "16767.17", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "16767.17", "tiv_2012": "16711.17", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.175568", "point_longitude": "-82.588203", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "956518", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "12250.99", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "12250.99", "tiv_2012": "17567.13", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.2988", "point_longitude": "-82.6063", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "548584", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "30686.32", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "30686.32", "tiv_2012": "40211.36", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.2988", "point_longitude": "-82.6063", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "132904", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "59774.37", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "59774.37", "tiv_2012": "50210.47", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.2988", "point_longitude": "-82.6063", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "111857", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "32186.2", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "32186.2", "tiv_2012": "38484.4", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.2988", "point_longitude": "-82.6063", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "388383", "statecode": "FL", "county": "COLUMBIA COUNTY", "eq_site_limit": "0", "hu_site_limit": "11549.33", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "11549.33", "tiv_2012": "16277.72", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.16482", "point_longitude": "-82.64361", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "276410", "statecode": "FL", "county": "BRADFORD COUNTY", "eq_site_limit": "2070", "hu_site_limit": "2070", "fl_site_limit": "2070", "fr_site_limit": "2070", "tiv_2011": "2070", "tiv_2012": "1875.38", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.043814", "point_longitude": "-82.075211", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "546756", "statecode": "FL", "county": "BRADFORD COUNTY", "eq_site_limit": "0", "hu_site_limit": "42481.06", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "42481.06", "tiv_2012": "44399.5", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.045353", "point_longitude": "-82.073212", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "669229", "statecode": "FL", "county": "MADISON COUNTY", "eq_site_limit": "321053.4", "hu_site_limit": "321053.4", "fl_site_limit": "321053.4", "fr_site_limit": "321053.4", "tiv_2011": "321053.4", "tiv_2012": "518064.61", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.422401", "point_longitude": "-83.30024", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "766573", "statecode": "FL", "county": "MADISON COUNTY", "eq_site_limit": "132651", "hu_site_limit": "132651", "fl_site_limit": "132651", "fr_site_limit": "132651", "tiv_2011": "132651", "tiv_2012": "220996.57", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.416973", "point_longitude": "-83.30043", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "765578", "statecode": "FL", "county": "MADISON COUNTY", "eq_site_limit": "23400", "hu_site_limit": "23400", "fl_site_limit": "23400", "fr_site_limit": "23400", "tiv_2011": "23400", "tiv_2012": "18558.54", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.41388", "point_longitude": "-83.298165", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "166613", "statecode": "FL", "county": "MADISON COUNTY", "eq_site_limit": "0", "hu_site_limit": "0", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "5932213.89", "tiv_2012": "9630000", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.3969", "point_longitude": "-83.2753", "line": "Commercial", "construction": "Reinforced Masonry", "point_granularity": "4"}, {"policyID": "883261", "statecode": "FL", "county": "MADISON COUNTY", "eq_site_limit": "977330.7", "hu_site_limit": "977330.7", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "977330.7", "tiv_2012": "790445.52", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.3969", "point_longitude": "-83.2753", "line": "Residential", "construction": "Masonry", "point_granularity": "4"}, {"policyID": "842655", "statecode": "FL", "county": "MADISON COUNTY", "eq_site_limit": "0", "hu_site_limit": "1222262.42", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "1222262.42", "tiv_2012": "1186037.01", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.423132", "point_longitude": "-83.306053", "line": "Residential", "construction": "Masonry", "point_granularity": "1"}, {"policyID": "248167", "statecode": "FL", "county": "SUWANNEE COUNTY", "eq_site_limit": "493833.6", "hu_site_limit": "493833.6", "fl_site_limit": "493833.6", "fr_site_limit": "493833.6", "tiv_2011": "493833.6", "tiv_2012": "694889.06", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.323061", "point_longitude": "-82.853531", "line": "Residential", "construction": "Masonry", "point_granularity": "3"}, {"policyID": "976562", "statecode": "FL", "county": "SUWANNEE COUNTY", "eq_site_limit": "305427.6", "hu_site_limit": "305427.6", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "305427.6", "tiv_2012": "269112.26", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.377098", "point_longitude": "-83.173874", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "620457", "statecode": "FL", "county": "SUWANNEE COUNTY", "eq_site_limit": "288279", "hu_site_limit": "288279", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "288279", "tiv_2012": "264045.11", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.297314", "point_longitude": "-82.96032", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "336697", "statecode": "FL", "county": "SUWANNEE COUNTY", "eq_site_limit": "0", "hu_site_limit": "910695.68", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "910695.68", "tiv_2012": "847083.59", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.244864", "point_longitude": "-82.873199", "line": "Residential", "construction": "Masonry", "point_granularity": "3"}, {"policyID": "648295", "statecode": "FL", "county": "SUWANNEE COUNTY", "eq_site_limit": "0", "hu_site_limit": "14066.75", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "14066.75", "tiv_2012": "14922.01", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.2885", "point_longitude": "-83.0554", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "858080", "statecode": "FL", "county": "SUWANNEE COUNTY", "eq_site_limit": "0", "hu_site_limit": "7571.54", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "7571.54", "tiv_2012": "6481.05", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.304321", "point_longitude": "-83.012032", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "579910", "statecode": "FL", "county": "SUWANNEE COUNTY", "eq_site_limit": "0", "hu_site_limit": "702715.18", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "702715.18", "tiv_2012": "644961.83", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.304321", "point_longitude": "-83.012032", "line": "Residential", "construction": "Masonry", "point_granularity": "3"}, {"policyID": "735184", "statecode": "FL", "county": "SUWANNEE COUNTY", "eq_site_limit": "0", "hu_site_limit": "132894.53", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "132894.53", "tiv_2012": "153444.94", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.242275", "point_longitude": "-82.864685", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "420445", "statecode": "FL", "county": "SUWANNEE COUNTY", "eq_site_limit": "0", "hu_site_limit": "14066.75", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "14066.75", "tiv_2012": "18409.67", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.2885", "point_longitude": "-83.0554", "line": "Residential", "construction": "Wood", "point_granularity": "4"}, {"policyID": "373504", "statecode": "FL", "county": "SUWANNEE COUNTY", "eq_site_limit": "0", "hu_site_limit": "113441.57", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "113441.57", "tiv_2012": "141507.02", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.296335", "point_longitude": "-83.0299", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "266080", "statecode": "FL", "county": "SUWANNEE COUNTY", "eq_site_limit": "0", "hu_site_limit": "123449.03", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "123449.03", "tiv_2012": "205071.55", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.296747", "point_longitude": "-82.977993", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "178535", "statecode": "FL", "county": "SUWANNEE COUNTY", "eq_site_limit": "0", "hu_site_limit": "701414.94", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "701414.94", "tiv_2012": "951909.86", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.2885", "point_longitude": "-83.0554", "line": "Residential", "construction": "Masonry", "point_granularity": "4"}, {"policyID": "574531", "statecode": "FL", "county": "BAKER COUNTY", "eq_site_limit": "67590", "hu_site_limit": "67590", "fl_site_limit": "67590", "fr_site_limit": "67590", "tiv_2011": "67590", "tiv_2012": "57465.83", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.28364", "point_longitude": "-82.12209", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "606491", "statecode": "FL", "county": "BAKER COUNTY", "eq_site_limit": "14670", "hu_site_limit": "14670", "fl_site_limit": "14670", "fr_site_limit": "14670", "tiv_2011": "14670", "tiv_2012": "15491.3", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.283901", "point_longitude": "-82.122543", "line": "Residential", "construction": "Wood", "point_granularity": "3"}, {"policyID": "885991", "statecode": "FL", "county": "BAKER COUNTY", "eq_site_limit": "0", "hu_site_limit": "1449866.88", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "1449866.88", "tiv_2012": "1338076.34", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.285202", "point_longitude": "-82.105835", "line": "Residential", "construction": "Masonry", "point_granularity": "1"}, {"policyID": "908170", "statecode": "FL", "county": "BAKER COUNTY", "eq_site_limit": "0", "hu_site_limit": "1849.32", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "1849.32", "tiv_2012": "1987.47", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.285202", "point_longitude": "-82.105835", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "487022", "statecode": "FL", "county": "BAKER COUNTY", "eq_site_limit": "0", "hu_site_limit": "372637.98", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "372637.98", "tiv_2012": "295022.71", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.285202", "point_longitude": "-82.105835", "line": "Residential", "construction": "Masonry", "point_granularity": "1"}, {"policyID": "723719", "statecode": "FL", "county": "BAKER COUNTY", "eq_site_limit": "0", "hu_site_limit": "211747.14", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "211747.14", "tiv_2012": "369024.45", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.285257", "point_longitude": "-82.139542", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "628922", "statecode": "FL", "county": "BAKER COUNTY", "eq_site_limit": "0", "hu_site_limit": "6472.62", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "6472.62", "tiv_2012": "4657.86", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.285257", "point_longitude": "-82.139542", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "232316", "statecode": "FL", "county": "BAKER COUNTY", "eq_site_limit": "2476576.8", "hu_site_limit": "2476576.8", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "2476576.8", "tiv_2012": "2011109.14", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.2763", "point_longitude": "-82.1278", "line": "Commercial", "construction": "Reinforced Masonry", "point_granularity": "4"}, {"policyID": "151933", "statecode": "FL", "county": "BAKER COUNTY", "eq_site_limit": "0", "hu_site_limit": "34713.82", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "34713.82", "tiv_2012": "44497.57", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.30646", "point_longitude": "-82.1309", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "225577", "statecode": "FL", "county": "BAKER COUNTY", "eq_site_limit": "0", "hu_site_limit": "17198.19", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "17198.19", "tiv_2012": "19900.03", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.30646", "point_longitude": "-82.1309", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "443296", "statecode": "FL", "county": "BAKER COUNTY", "eq_site_limit": "0", "hu_site_limit": "14453.8", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "14453.8", "tiv_2012": "25187.77", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.288778", "point_longitude": "-82.125183", "line": "Residential", "construction": "Wood", "point_granularity": "1"}, {"policyID": "747464", "statecode": "FL", "county": "BAKER COUNTY", "eq_site_limit": "0", "hu_site_limit": "796867.35", "fl_site_limit": "0", "fr_site_limit": "0", "tiv_2011": "796867.35", "tiv_2012": "1238331.86", "eq_site_deductible": "0", "hu_site_deductible": "0", "fl_site_deductible": "0", "fr_site_deductible": "0", "point_latitude": "30.27934", "point_longitude": "-82.13954", "line": "Residential", "construction": "Masonry", "point_granularity": "3"}] jc-1.17.3/tests/fixtures/generic/date-after-midnight.json000066400000000000000000000005371415226333200233440ustar00rootroot00000000000000{"year": 2021, "month": "Mar", "month_num": 3, "day": 24, "weekday": "Wed", "weekday_num": 3, "hour": 12, "hour_24": 0, "minute": 54, "second": 47, "period": "AM", "timezone": "UTC", "utc_offset": "+0000", "day_of_year": 83, "week_of_year": 12, "iso": "2021-03-24T00:54:47+00:00", "epoch": 1616572487, "epoch_utc": 1616547287, "timezone_aware": true} jc-1.17.3/tests/fixtures/generic/date-after-midnight.out000066400000000000000000000000411415226333200231700ustar00rootroot00000000000000Wed Mar 24 12:54:47 AM UTC 2021 jc-1.17.3/tests/fixtures/generic/date-before-midnight.json000066400000000000000000000005401415226333200234770ustar00rootroot00000000000000{"year": 2021, "month": "Mar", "month_num": 3, "day": 24, "weekday": "Wed", "weekday_num": 3, "hour": 11, "hour_24": 23, "minute": 54, "second": 47, "period": "PM", "timezone": "UTC", "utc_offset": "+0000", "day_of_year": 83, "week_of_year": 12, "iso": "2021-03-24T23:54:47+00:00", "epoch": 1616655287, "epoch_utc": 1616630087, "timezone_aware": true} jc-1.17.3/tests/fixtures/generic/date-before-midnight.out000066400000000000000000000000411415226333200233310ustar00rootroot00000000000000Wed Mar 24 11:54:47 PM UTC 2021 jc-1.17.3/tests/fixtures/generic/date.json000066400000000000000000000005201415226333200204340ustar00rootroot00000000000000{"year": 2020, "month": "Aug", "month_num": 8, "day": 3, "weekday": "Mon", "weekday_num": 1, "hour": 9, "hour_24": 9, "minute": 12, "second": 51, "period": "AM", "timezone": "PDT", "utc_offset": null, "day_of_year": 216, "week_of_year": 31, "iso": "2020-08-03T09:12:51", "epoch": 1596471171, "epoch_utc": null, "timezone_aware": false} jc-1.17.3/tests/fixtures/generic/date.out000066400000000000000000000000351415226333200202730ustar00rootroot00000000000000Mon Aug 3 09:12:51 PDT 2020 jc-1.17.3/tests/fixtures/generic/df-long-filesystem.json000066400000000000000000000006221415226333200232320ustar00rootroot00000000000000[{"filesystem":"/dev/mapper/VolGroup00-LogVol00","type":"ext3","1024_blocks":6030784,"used":1147932,"available":4571556,"mounted_on":"/","capacity_percent":21},{"filesystem":"proc","type":"proc","1024_blocks":0,"used":0,"available":0,"mounted_on":"/proc","capacity_percent":null},{"filesystem":"sysfs","type":"sysfs","1024_blocks":0,"used":0,"available":0,"mounted_on":"/sys","capacity_percent":null}] jc-1.17.3/tests/fixtures/generic/df-long-filesystem.out000066400000000000000000000004321415226333200230670ustar00rootroot00000000000000Filesystem Type 1024-blocks Used Available Capacity Mounted on /dev/mapper/VolGroup00-LogVol00 ext3 6030784 1147932 4571556 21% / proc proc 0 0 0 - /proc sysfs sysfs 0 0 0 - /sys jc-1.17.3/tests/fixtures/generic/dig-additional.json000066400000000000000000000027561415226333200224050ustar00rootroot00000000000000[{"id":12149,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd"],"query_num":1,"answer_num":0,"authority_num":4,"additional_num":9,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":4096}},"question":{"name":"google.com.","class":"IN","type":"NS"},"authority":[{"name":"google.com.","class":"IN","type":"NS","ttl":172800,"data":"ns2.google.com."},{"name":"google.com.","class":"IN","type":"NS","ttl":172800,"data":"ns1.google.com."},{"name":"google.com.","class":"IN","type":"NS","ttl":172800,"data":"ns3.google.com."},{"name":"google.com.","class":"IN","type":"NS","ttl":172800,"data":"ns4.google.com."}],"additional":[{"name":"ns2.google.com.","class":"IN","type":"AAAA","ttl":172800,"data":"2001:4860:4802:34::a"},{"name":"ns2.google.com.","class":"IN","type":"A","ttl":172800,"data":"216.239.34.10"},{"name":"ns1.google.com.","class":"IN","type":"AAAA","ttl":172800,"data":"2001:4860:4802:32::a"},{"name":"ns1.google.com.","class":"IN","type":"A","ttl":172800,"data":"216.239.32.10"},{"name":"ns3.google.com.","class":"IN","type":"AAAA","ttl":172800,"data":"2001:4860:4802:36::a"},{"name":"ns3.google.com.","class":"IN","type":"A","ttl":172800,"data":"216.239.36.10"},{"name":"ns4.google.com.","class":"IN","type":"AAAA","ttl":172800,"data":"2001:4860:4802:38::a"},{"name":"ns4.google.com.","class":"IN","type":"A","ttl":172800,"data":"216.239.38.10"}],"query_time":68,"server":"192.5.6.30#53(192.5.6.30)","when":"Mon Sep 03 19:23:20 EST 2018","rcvd":287,"when_epoch":1536027800,"when_epoch_utc":null}] jc-1.17.3/tests/fixtures/generic/dig-additional.out000066400000000000000000000022661415226333200222370ustar00rootroot00000000000000; <<>> DiG 9.11.3-1ubuntu1.1-Ubuntu <<>> google.com NS @a.gtld-servers.net ;; global options: +cmd ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 12149 ;; flags: qr rd; QUERY: 1, ANSWER: 0, AUTHORITY: 4, ADDITIONAL: 9 ;; WARNING: recursion requested but not available ;; OPT PSEUDOSECTION: ; EDNS: version: 0, flags:; udp: 4096 ;; QUESTION SECTION: ;google.com. IN NS ;; AUTHORITY SECTION: google.com. 172800 IN NS ns2.google.com. google.com. 172800 IN NS ns1.google.com. google.com. 172800 IN NS ns3.google.com. google.com. 172800 IN NS ns4.google.com. ;; ADDITIONAL SECTION: ns2.google.com. 172800 IN AAAA 2001:4860:4802:34::a ns2.google.com. 172800 IN A 216.239.34.10 ns1.google.com. 172800 IN AAAA 2001:4860:4802:32::a ns1.google.com. 172800 IN A 216.239.32.10 ns3.google.com. 172800 IN AAAA 2001:4860:4802:36::a ns3.google.com. 172800 IN A 216.239.36.10 ns4.google.com. 172800 IN AAAA 2001:4860:4802:38::a ns4.google.com. 172800 IN A 216.239.38.10 ;; Query time: 68 msec ;; SERVER: 192.5.6.30#53(192.5.6.30) ;; WHEN: Mon Sep 03 19:23:20 EST 2018 ;; MSG SIZE rcvd: 287 jc-1.17.3/tests/fixtures/generic/dig-additional2.json000066400000000000000000000033661415226333200224650ustar00rootroot00000000000000[{"id":54105,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd"],"query_num":1,"answer_num":0,"authority_num":10,"additional_num":5,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":4096}},"question":{"name":"ultradns.com.","class":"IN","type":"NS"},"authority":[{"name":"ultradns.com.","class":"IN","type":"NS","ttl":172800,"data":"pdns196.ultradns.com."},{"name":"ultradns.com.","class":"IN","type":"NS","ttl":172800,"data":"pdns196.ultradns.net."},{"name":"ultradns.com.","class":"IN","type":"NS","ttl":172800,"data":"pdns196.ultradns.org."},{"name":"ultradns.com.","class":"IN","type":"NS","ttl":172800,"data":"pdns196.ultradns.info."},{"name":"ultradns.com.","class":"IN","type":"NS","ttl":172800,"data":"pdns196.ultradns.biz."},{"name":"ultradns.com.","class":"IN","type":"NS","ttl":172800,"data":"pdns196.ultradns.co.uk."},{"name":"ultradns.com.","class":"IN","type":"NS","ttl":172800,"data":"ari.alpha.aridns.net.au."},{"name":"ultradns.com.","class":"IN","type":"NS","ttl":172800,"data":"ari.beta.aridns.net.au."},{"name":"ultradns.com.","class":"IN","type":"NS","ttl":172800,"data":"ari.gamma.aridns.net.au."},{"name":"ultradns.com.","class":"IN","type":"NS","ttl":172800,"data":"ari.delta.aridns.net.au."}],"additional":[{"name":"pdns196.ultradns.com.","class":"IN","type":"A","ttl":172800,"data":"156.154.64.196"},{"name":"pdns196.ultradns.com.","class":"IN","type":"AAAA","ttl":172800,"data":"2001:502:f3ff::e8"},{"name":"pdns196.ultradns.net.","class":"IN","type":"A","ttl":172800,"data":"156.154.65.196"},{"name":"pdns196.ultradns.net.","class":"IN","type":"AAAA","ttl":172800,"data":"2610:a1:1014::e8"}],"query_time":72,"server":"192.5.6.30#53(192.5.6.30)","when":"Mon Sep 03 19:25:24 EST 2018","rcvd":432,"when_epoch":1536027924,"when_epoch_utc":null}] jc-1.17.3/tests/fixtures/generic/dig-additional2.out000066400000000000000000000025701415226333200223170ustar00rootroot00000000000000; <<>> DiG 9.11.3-1ubuntu1.1-Ubuntu <<>> ultradns.com NS @a.gtld-servers.net ;; global options: +cmd ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 54105 ;; flags: qr rd; QUERY: 1, ANSWER: 0, AUTHORITY: 10, ADDITIONAL: 5 ;; WARNING: recursion requested but not available ;; OPT PSEUDOSECTION: ; EDNS: version: 0, flags:; udp: 4096 ;; QUESTION SECTION: ;ultradns.com. IN NS ;; AUTHORITY SECTION: ultradns.com. 172800 IN NS pdns196.ultradns.com. ultradns.com. 172800 IN NS pdns196.ultradns.net. ultradns.com. 172800 IN NS pdns196.ultradns.org. ultradns.com. 172800 IN NS pdns196.ultradns.info. ultradns.com. 172800 IN NS pdns196.ultradns.biz. ultradns.com. 172800 IN NS pdns196.ultradns.co.uk. ultradns.com. 172800 IN NS ari.alpha.aridns.net.au. ultradns.com. 172800 IN NS ari.beta.aridns.net.au. ultradns.com. 172800 IN NS ari.gamma.aridns.net.au. ultradns.com. 172800 IN NS ari.delta.aridns.net.au. ;; ADDITIONAL SECTION: pdns196.ultradns.com. 172800 IN A 156.154.64.196 pdns196.ultradns.com. 172800 IN AAAA 2001:502:f3ff::e8 pdns196.ultradns.net. 172800 IN A 156.154.65.196 pdns196.ultradns.net. 172800 IN AAAA 2610:a1:1014::e8 ;; Query time: 72 msec ;; SERVER: 192.5.6.30#53(192.5.6.30) ;; WHEN: Mon Sep 03 19:25:24 EST 2018 ;; MSG SIZE rcvd: 432 jc-1.17.3/tests/fixtures/generic/dig-additional3.json000066400000000000000000000043271415226333200224640ustar00rootroot00000000000000[{"id":54105,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd"],"query_num":1,"answer_num":0,"authority_num":10,"additional_num":5,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":4096}},"question":{"name":"ultradns.com.","class":"IN","type":"NS"},"authority":[{"name":"ultradns.com.","class":"IN","type":"NS","ttl":172800,"data":"pdns196.ultradns.com."},{"name":"ultradns.com.","class":"IN","type":"NS","ttl":172800,"data":"pdns196.ultradns.net."},{"name":"ultradns.com.","class":"IN","type":"NS","ttl":172800,"data":"pdns196.ultradns.org."},{"name":"ultradns.com.","class":"IN","type":"NS","ttl":172800,"data":"pdns196.ultradns.info."},{"name":"ultradns.com.","class":"IN","type":"NS","ttl":172800,"data":"pdns196.ultradns.biz."},{"name":"ultradns.com.","class":"IN","type":"NS","ttl":172800,"data":"pdns196.ultradns.co.uk."},{"name":"ultradns.com.","class":"IN","type":"NS","ttl":172800,"data":"ari.alpha.aridns.net.au."},{"name":"ultradns.com.","class":"IN","type":"NS","ttl":172800,"data":"ari.beta.aridns.net.au."},{"name":"ultradns.com.","class":"IN","type":"NS","ttl":172800,"data":"ari.gamma.aridns.net.au."},{"name":"ultradns.com.","class":"IN","type":"NS","ttl":172800,"data":"ari.delta.aridns.net.au."}],"answer":[{"name":"www.cnn.com.","class":"IN","type":"CNAME","ttl":93,"data":"turner-tls.map.fastly.net."},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":8,"data":"151.101.193.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":8,"data":"151.101.65.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":8,"data":"151.101.1.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":8,"data":"151.101.129.67"}],"additional":[{"name":"pdns196.ultradns.com.","class":"IN","type":"A","ttl":172800,"data":"156.154.64.196"},{"name":"pdns196.ultradns.com.","class":"IN","type":"AAAA","ttl":172800,"data":"2001:502:f3ff::e8"},{"name":"pdns196.ultradns.net.","class":"IN","type":"A","ttl":172800,"data":"156.154.65.196"},{"name":"pdns196.ultradns.net.","class":"IN","type":"AAAA","ttl":172800,"data":"2610:a1:1014::e8"}],"query_time":72,"server":"192.5.6.30#53(192.5.6.30)","when":"Mon Sep 03 19:25:24 EST 2018","rcvd":432,"when_epoch":1536027924,"when_epoch_utc":null}] jc-1.17.3/tests/fixtures/generic/dig-additional3.out000066400000000000000000000032021415226333200223110ustar00rootroot00000000000000; <<>> DiG 9.11.3-1ubuntu1.1-Ubuntu <<>> ultradns.com NS @a.gtld-servers.net ;; global options: +cmd ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 54105 ;; flags: qr rd; QUERY: 1, ANSWER: 0, AUTHORITY: 10, ADDITIONAL: 5 ;; WARNING: recursion requested but not available ;; OPT PSEUDOSECTION: ; EDNS: version: 0, flags:; udp: 4096 ;; QUESTION SECTION: ;ultradns.com. IN NS ;; AUTHORITY SECTION: ultradns.com. 172800 IN NS pdns196.ultradns.com. ultradns.com. 172800 IN NS pdns196.ultradns.net. ultradns.com. 172800 IN NS pdns196.ultradns.org. ultradns.com. 172800 IN NS pdns196.ultradns.info. ultradns.com. 172800 IN NS pdns196.ultradns.biz. ultradns.com. 172800 IN NS pdns196.ultradns.co.uk. ultradns.com. 172800 IN NS ari.alpha.aridns.net.au. ultradns.com. 172800 IN NS ari.beta.aridns.net.au. ultradns.com. 172800 IN NS ari.gamma.aridns.net.au. ultradns.com. 172800 IN NS ari.delta.aridns.net.au. ;; ANSWER SECTION: www.cnn.com. 93 IN CNAME turner-tls.map.fastly.net. turner-tls.map.fastly.net. 8 IN A 151.101.193.67 turner-tls.map.fastly.net. 8 IN A 151.101.65.67 turner-tls.map.fastly.net. 8 IN A 151.101.1.67 turner-tls.map.fastly.net. 8 IN A 151.101.129.67 ;; ADDITIONAL SECTION: pdns196.ultradns.com. 172800 IN A 156.154.64.196 pdns196.ultradns.com. 172800 IN AAAA 2001:502:f3ff::e8 pdns196.ultradns.net. 172800 IN A 156.154.65.196 pdns196.ultradns.net. 172800 IN AAAA 2610:a1:1014::e8 ;; Query time: 72 msec ;; SERVER: 192.5.6.30#53(192.5.6.30) ;; WHEN: Mon Sep 03 19:25:24 EST 2018 ;; MSG SIZE rcvd: 432 jc-1.17.3/tests/fixtures/generic/dig-answer-spaces.json000066400000000000000000000013441415226333200230400ustar00rootroot00000000000000[{"id":26965,"opcode":"QUERY","status":"NXDOMAIN","flags":["qr","rd","ra"],"query_num":1,"answer_num":0,"authority_num":1,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":4096}},"question":{"name":"x.y.z.w.bl.spamcop.net.","class":"IN","type":"TXT"},"authority":[{"name":"bl.spamcop.net.","class":"IN","type":"SOA","ttl":0,"data":"bl.spamcop.net. hostmaster.admin.spamcop.net. 1612535191 3600 1800 3600 0"}],"answer":[{"name":"x.y.z.w.bl.spamcop.net.","class":"IN","type":"TXT","ttl":2100,"data":"Blocked - see https://www.spamcop.net/bl.shtml?w.z.y.x"}],"query_time":297,"server":"192.168.1.254#53(192.168.1.254)","when":"Fri Feb 05 06:28:58 PST 2021","rcvd":104,"when_epoch":1612535338,"when_epoch_utc":null}] jc-1.17.3/tests/fixtures/generic/dig-answer-spaces.out000066400000000000000000000013101415226333200226670ustar00rootroot00000000000000 ; <<>> DiG 9.10.6 <<>> TXT x.y.z.w.bl.spamcop.net ;; global options: +cmd ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NXDOMAIN, id: 26965 ;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 1 ;; OPT PSEUDOSECTION: ; EDNS: version: 0, flags:; udp: 4096 ;; QUESTION SECTION: ;x.y.z.w.bl.spamcop.net. IN TXT ;; AUTHORITY SECTION: bl.spamcop.net. 0 IN SOA bl.spamcop.net. hostmaster.admin.spamcop.net. 1612535191 3600 1800 3600 0 ;; ANSWER SECTION: x.y.z.w.bl.spamcop.net. 2100 IN TXT "Blocked - see https://www.spamcop.net/bl.shtml?w.z.y.x" ;; Query time: 297 msec ;; SERVER: 192.168.1.254#53(192.168.1.254) ;; WHEN: Fri Feb 05 06:28:58 PST 2021 ;; MSG SIZE rcvd: 104 jc-1.17.3/tests/fixtures/generic/dig-edns.json000066400000000000000000000010661415226333200212170ustar00rootroot00000000000000[{"id":24245,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":["do"],"udp":4096},"cookie":"b5dafd2648fa583b"},"question":{"name":"www.google.com.","class":"IN","type":"A"},"answer":[{"name":"www.google.com.","class":"IN","type":"A","ttl":177,"data":"216.58.195.132"}],"query_time":53,"server":"2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)","when":"Thu Apr 15 10:19:50 PDT 2021","rcvd":59,"when_epoch":1618507190,"when_epoch_utc":null}] jc-1.17.3/tests/fixtures/generic/dig-edns.out000066400000000000000000000010611415226333200210500ustar00rootroot00000000000000; <<>> DiG 9.10.6 <<>> www.google.com ;; global options: +cmd ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 24245 ;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1 ;; OPT PSEUDOSECTION: ; EDNS: version: 0, flags: do; udp: 4096 ; COOKIE: b5dafd2648fa583b ;; QUESTION SECTION: ;www.google.com. IN A ;; ANSWER SECTION: www.google.com. 177 IN A 216.58.195.132 ;; Query time: 53 msec ;; SERVER: 2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1) ;; WHEN: Thu Apr 15 10:19:50 PDT 2021 ;; MSG SIZE rcvd: 59 jc-1.17.3/tests/fixtures/generic/dig-edns2.json000066400000000000000000000017531415226333200213040ustar00rootroot00000000000000[{"id":8794,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra","ad"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":512}},"question":{"name":"metebalci.com.","class":"IN","type":"A"},"answer":[{"name":"metebalci.com.","class":"IN","type":"A","ttl":59,"data":"104.198.14.52"}],"query_time":53,"server":"8.8.8.8#53(8.8.8.8)","when":"Fri Apr 16 14:19:58 PDT 2021","rcvd":58,"when_epoch":1618607998,"when_epoch_utc":null},{"id":39319,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":["do"],"udp":512}},"question":{"name":"google.com.","class":"IN","type":"A"},"answer":[{"name":"google.com.","class":"IN","type":"A","ttl":82,"data":"216.58.194.206"}],"query_time":32,"server":"8.8.8.8#53(8.8.8.8)","when":"Fri Apr 16 14:19:58 PDT 2021","rcvd":55,"when_epoch":1618607998,"when_epoch_utc":null}] jc-1.17.3/tests/fixtures/generic/dig-edns2.out000066400000000000000000000016651415226333200211440ustar00rootroot00000000000000 ; <<>> DiG 9.10.6 <<>> @8.8.8.8 metebalci.com google.com +dnssec ; (1 server found) ;; global options: +cmd ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 8794 ;; flags: qr rd ra ad; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1 ;; OPT PSEUDOSECTION: ; EDNS: version: 0, flags:; udp: 512 ;; QUESTION SECTION: ;metebalci.com. IN A ;; ANSWER SECTION: metebalci.com. 59 IN A 104.198.14.52 ;; Query time: 53 msec ;; SERVER: 8.8.8.8#53(8.8.8.8) ;; WHEN: Fri Apr 16 14:19:58 PDT 2021 ;; MSG SIZE rcvd: 58 ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 39319 ;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1 ;; OPT PSEUDOSECTION: ; EDNS: version: 0, flags: do; udp: 512 ;; QUESTION SECTION: ;google.com. IN A ;; ANSWER SECTION: google.com. 82 IN A 216.58.194.206 ;; Query time: 32 msec ;; SERVER: 8.8.8.8#53(8.8.8.8) ;; WHEN: Fri Apr 16 14:19:58 PDT 2021 ;; MSG SIZE rcvd: 55 jc-1.17.3/tests/fixtures/generic/dig-edns3.json000066400000000000000000000022771415226333200213070ustar00rootroot00000000000000[{"id":37727,"opcode":"QUERY","status":"NOERROR","flags":["rd","ad"],"query_num":1,"answer_num":0,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":["do"],"udp":4096},"cookie":"a263795b817be1b1"},"question":{"name":"metebalci.com.","class":"IN","type":"A"},"query_size":54},{"id":37727,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra","ad"],"query_num":1,"answer_num":3,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":["do"],"udp":512}},"question":{"name":"metebalci.com.","class":"IN","type":"A"},"answer":[{"name":"metebalci.com.","class":"IN","type":"A","ttl":299,"data":"151.101.1.195"},{"name":"metebalci.com.","class":"IN","type":"A","ttl":299,"data":"151.101.65.195"},{"name":"metebalci.com.","class":"IN","type":"RRSIG","ttl":299,"data":"A 8 2 300 20181227144044 20181205144044 59764 metebalci.com. z6FupNLEU/8OcB3rNMkVqVaan05Xu89T8hV6+IC7LGjWPtrD+TlNJd8D cGeq8xJLR8b1Q+gBK0QSxpGvk89GaCTjNtMGHLBBdgpyV4syFv2BNzK7 iAJhA8QJ6i5xVFJdzMSsn3WvQvN1W71sirt8+56r1nQ47aVkBSLJoZKP lgw="}],"query_time":41,"server":"8.8.8.8#53(8.8.8.8)","when":"Fri Dec 07 14:09:43 CET 2018","rcvd":247,"when_epoch":1544220583,"when_epoch_utc":null}] jc-1.17.3/tests/fixtures/generic/dig-edns3.out000066400000000000000000000021701415226333200211350ustar00rootroot00000000000000; <<>> DiG 9.11.3-1ubuntu1.3-Ubuntu <<>> @8.8.8.8 metebalci.com +qr +dnssec ; (1 server found) ;; global options: +cmd ;; Sending: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 37727 ;; flags: rd ad; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 1 ;; OPT PSEUDOSECTION: ; EDNS: version: 0, flags: do; udp: 4096 ; COOKIE: a263795b817be1b1 ;; QUESTION SECTION: ;metebalci.com. IN A ;; QUERY SIZE: 54 ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 37727 ;; flags: qr rd ra ad; QUERY: 1, ANSWER: 3, AUTHORITY: 0, ADDITIONAL: 1 ;; OPT PSEUDOSECTION: ; EDNS: version: 0, flags: do; udp: 512 ;; QUESTION SECTION: ;metebalci.com. IN A ;; ANSWER SECTION: metebalci.com. 299 IN A 151.101.1.195 metebalci.com. 299 IN A 151.101.65.195 metebalci.com. 299 IN RRSIG A 8 2 300 20181227144044 20181205144044 59764 metebalci.com. z6FupNLEU/8OcB3rNMkVqVaan05Xu89T8hV6+IC7LGjWPtrD+TlNJd8D cGeq8xJLR8b1Q+gBK0QSxpGvk89GaCTjNtMGHLBBdgpyV4syFv2BNzK7 iAJhA8QJ6i5xVFJdzMSsn3WvQvN1W71sirt8+56r1nQ47aVkBSLJoZKP lgw= ;; Query time: 41 msec ;; SERVER: 8.8.8.8#53(8.8.8.8) ;; WHEN: Fri Dec 07 14:09:43 CET 2018 ;; MSG SIZE rcvd: 247 jc-1.17.3/tests/fixtures/generic/ini-iptelserver.ini000066400000000000000000000111411415226333200224470ustar00rootroot00000000000000[Settings] #====================================================================== # Set detailed log for additional debugging info DetailedLog=1 RunStatus=1 StatusPort=6090 StatusRefresh=10 Archive=1 # Sets the location of the MV_FTP log file LogFile=/opt/ecs/mvuser/MV_IPTel/log/MV_IPTel.log #====================================================================== Version=0.9 Build 4 Created July 11 2004 14:00 ServerName=Unknown [FTP] #====================================================================== # set the FTP server active RunFTP=1 # defines the FTP control port FTPPort=21 # defines the FTP data port FTPDataPort=20 # Sets the location of the FTP data directory to catch terminal backups FTPDir=/opt/ecs/mvuser/MV_IPTel/data/FTPdata # FTP Timeout (secs) FTP_TimeOut=5 # Enable SuperUser EnableSU=1 # set the SuperUser Name SUUserName=mvuser # set the SuperUser Password SUPassword=Avaya # #====================================================================== [FTPS] #====================================================================== # set the FTPS server active RunFTPS=0 # defines the FTP control port FTPPort=990 # defines the FTP data port FTPDataPort=889 #====================================================================== [TFTP] #====================================================================== # set the Trivial FTP server active RunTrivialFTP=1 # defines the Trivial FTP port TrivialFTPPort=69 # Sets the location of the TFTP data directory for terminal downloads TFTPDir=/opt/ecs/mvuser/MV_IPTel/data/TFTPdata #====================================================================== [HTTP] #====================================================================== # set the HTTP download server active RunHTTP=1 # defines the HTTP download port HTTPPort=81 # Sets the location of the HTTP data directory for downloads HTTPDir=/opt/ecs/mvuser/MV_IPTel/data/HTTPdata #====================================================================== [HTTPS] #====================================================================== # set the HTTPS download server active RunHTTPS=0 # defines the HTTPS download port HTTPSPort=411 # Sets the location of the HTTPS data directory for downloads HTTPSDir=/opt/ecs/mvuser/MV_IPTel/data/HTTPSdata # Sets the location of the CertFile CertFile=/opt/ecs/mvuser/MV_IPTel/certs/IPTelcert.pem # Sets the location of the KeyFile KeyFile=/opt/ecs/mvuser/MV_IPTel/certs/IPTelkey.pem # Use Client Authorization ClientAuth=0 # narrow config for Avaya IPTel (TLSV1 using RSA_NULL_SHA) IPTel=0 # sets the SSL variants if not Avaya IPtel (IPTel=0) SSLV2=0 SSLV3=0 TLSV1=1 UseProxy=0 ProxyAddr=simon.avaya.com ProxyPort=9000 #====================================================================== [BACKUP_SERVERS] #====================================================================== # Run as FileServer for Backup & Update requests - Note this process uses HTTPS FileServer=0 # sets whether to download Firmware updates from the primary/secondary file servers RequestUpdates=0 # sets whether to upload FTP files to the primary/secondary file servers RequestBackup=0 # Enable use of the Primary file server UsePrimarySvr=0 # Primary file server IP address ( or resolvable DNS) PrimaryIP=192.168.0.13 # Enable use of the Secondary file server UseSecondarySvr=0 # Secondary file server IP address ( or resolvable DNS) SecondaryIP=192.168.0.10 # Sets the update interval for Backups & updates ; 1 = min; 2 =hour, 3=day, 4 =month UpdateInterval=2 #Send FTP backup to the customer sever CustomFTP=1 # FTP backup directory customer sever CustomFTPDir=home/mvuser/backup # FTP backup directory user login name CustomFTPUName=tom # FTP backup directory user password CustomFTPPwd=jerry # Enable CDR Backup - enable=1 on both File Server & Client CDRBackup=0 # Enable BCMS Backup - enable=1 on both File Server & Client BCMSBackup=0 # Retain CDR / BCMS copy data for x days ( Receiver always + 1 week) RetainDays=7.0 #====================================================================== [SNMP] #================================================================ # # Validate FTP store with SNMP check UseSNMP=1 # In case the SNMPGET syntax changes you can redefine the commands # Uncomment the relevant line to override the internal command #the syntax is "Command + IPADDR + ExtObj + Awk # the IPADRR is derived from the connection # Note there are relavant spaces at the start/end of the component - omit and it will fail #Command=/usr/bin/snmpget #Params= -v2c -cpublic #ExtObject=.1.3.6.1.4.1.6889.2.69.1.4.9.0 #TypeObject=.1.3.6.1.4.1.6889.2.69.1.1.2.0 #Awk=| awk -F \" '' {print $2 } '' #================================================================ jc-1.17.3/tests/fixtures/generic/ini-iptelserver.json000066400000000000000000000027161415226333200226510ustar00rootroot00000000000000{"Settings": {"detailedlog": "1", "runstatus": "1", "statusport": "6090", "statusrefresh": "10", "archive": "1", "logfile": "/opt/ecs/mvuser/MV_IPTel/log/MV_IPTel.log", "version": "0.9 Build 4 Created July 11 2004 14:00", "servername": "Unknown"}, "FTP": {"runftp": "1", "ftpport": "21", "ftpdataport": "20", "ftpdir": "/opt/ecs/mvuser/MV_IPTel/data/FTPdata", "ftp_timeout": "5", "enablesu": "1", "suusername": "mvuser", "supassword": "Avaya"}, "FTPS": {"runftps": "0", "ftpport": "990", "ftpdataport": "889"}, "TFTP": {"runtrivialftp": "1", "trivialftpport": "69", "tftpdir": "/opt/ecs/mvuser/MV_IPTel/data/TFTPdata"}, "HTTP": {"runhttp": "1", "httpport": "81", "httpdir": "/opt/ecs/mvuser/MV_IPTel/data/HTTPdata"}, "HTTPS": {"runhttps": "0", "httpsport": "411", "httpsdir": "/opt/ecs/mvuser/MV_IPTel/data/HTTPSdata", "certfile": "/opt/ecs/mvuser/MV_IPTel/certs/IPTelcert.pem", "keyfile": "/opt/ecs/mvuser/MV_IPTel/certs/IPTelkey.pem", "clientauth": "0", "iptel": "0", "sslv2": "0", "sslv3": "0", "tlsv1": "1", "useproxy": "0", "proxyaddr": "simon.avaya.com", "proxyport": "9000"}, "BACKUP_SERVERS": {"fileserver": "0", "requestupdates": "0", "requestbackup": "0", "useprimarysvr": "0", "primaryip": "192.168.0.13", "usesecondarysvr": "0", "secondaryip": "192.168.0.10", "updateinterval": "2", "customftp": "1", "customftpdir": "home/mvuser/backup", "customftpuname": "tom", "customftppwd": "jerry", "cdrbackup": "0", "bcmsbackup": "0", "retaindays": "7.0"}, "SNMP": {"usesnmp": "1"}} jc-1.17.3/tests/fixtures/generic/ini-test.ini000066400000000000000000000002531415226333200210640ustar00rootroot00000000000000[DEFAULT] ServerAliveInterval = 45 Compression = yes CompressionLevel = 9 ForwardX11 = yes [bitbucket.org] User = hg [topsecret.server.com] Port = 50022 ForwardX11 = no jc-1.17.3/tests/fixtures/generic/ini-test.json000066400000000000000000000004161415226333200212570ustar00rootroot00000000000000{"bitbucket.org": {"serveraliveinterval": "45", "compression": "yes", "compressionlevel": "9", "forwardx11": "yes", "user": "hg"}, "topsecret.server.com": {"serveraliveinterval": "45", "compression": "yes", "compressionlevel": "9", "forwardx11": "no", "port": "50022"}} jc-1.17.3/tests/fixtures/generic/keyvalue-ifcfg.json000066400000000000000000000012341415226333200224230ustar00rootroot00000000000000{"type": "Ethernet", "proxy_method": "none", "browser_only": "no", "bootproto": "dhcp", "defroute": "yes", "ipv4_failure_fatal": "no", "ipv6init": "yes", "ipv6_autoconf": "yes", "ipv6_defroute": "yes", "ipv6_failure_fatal": "no", "ipv6_addr_gen_mode": "stable-privacy", "name": "ens33", "uuid": "d92ece08-9e02-47d5-b2d2-92c80e155744", "device": "ens33", "onboot": "yes", "value_with_spaces": "this value includes spaces", "value_with_quotes_inside": "this value \"has quotation marks\" inside", "value_with_quotes_inside2": "\"this value\" has quotations at the beginning but not the end", "value_with_quotes_inside3": "this value has quotation marks \"at the end\""} jc-1.17.3/tests/fixtures/generic/keyvalue-ifcfg.txt000066400000000000000000000011101415226333200222620ustar00rootroot00000000000000TYPE="Ethernet" PROXY_METHOD="none" BROWSER_ONLY="no" BOOTPROTO="dhcp" DEFROUTE="yes" IPV4_FAILURE_FATAL="no" IPV6INIT="yes" IPV6_AUTOCONF="yes" IPV6_DEFROUTE="yes" IPV6_FAILURE_FATAL="no" IPV6_ADDR_GEN_MODE="stable-privacy" NAME="ens33" UUID="d92ece08-9e02-47d5-b2d2-92c80e155744" DEVICE="ens33" ONBOOT="yes" value_with_spaces: this value includes spaces value_with_quotes_inside = this value "has quotation marks" inside value_with_quotes_inside2 = "this value" has quotations at the beginning but not the end value_with_quotes_inside3 : this value has quotation marks "at the end" jc-1.17.3/tests/fixtures/generic/keyvalue.json000066400000000000000000000001301415226333200213410ustar00rootroot00000000000000{"value1": "hello", "value2": "true", "no_value": "", "value4": "3.14", "value5": "42"} jc-1.17.3/tests/fixtures/generic/keyvalue.txt000066400000000000000000000000771415226333200212210ustar00rootroot00000000000000value1 = hello value2 = true no_value value4 = 3.14 value5: 42 jc-1.17.3/tests/fixtures/generic/lsusb-t.out000066400000000000000000000017531415226333200207570ustar00rootroot00000000000000/: Bus 04.Port 1: Dev 1, Class=root_hub, Driver=xhci_hcd/2p, 5000M /: Bus 03.Port 1: Dev 1, Class=root_hub, Driver=xhci_hcd/2p, 480M |__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/4p, 480M |__ Port 2: Dev 90, If 0, Class=Communications, Driver=cdc_acm, 12M |__ Port 2: Dev 90, If 1, Class=CDC Data, Driver=cdc_acm, 12M /: Bus 02.Port 1: Dev 1, Class=root_hub, Driver=ehci-pci/3p, 480M |__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/8p, 480M /: Bus 01.Port 1: Dev 1, Class=root_hub, Driver=ehci-pci/3p, 480M |__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/6p, 480M |__ Port 1: Dev 3, If 0, Class=Human Interface Device, Driver=usbhid, 1.5M |__ Port 2: Dev 4, If 0, Class=Human Interface Device, Driver=usbhid, 1.5M |__ Port 6: Dev 66, If 0, Class=Hub, Driver=hub/4p, 480M |__ Port 1: Dev 67, If 0, Class=Human Interface Device, Driver=usbhid, 1.5M |__ Port 1: Dev 67, If 1, Class=Human Interface Device, Driver=usbhid, 1.5M jc-1.17.3/tests/fixtures/generic/lsusb-test-attributes.json000066400000000000000000000074421415226333200240220ustar00rootroot00000000000000[{"bus":"003","device":"090","id":"1915:521a","description":"Nordic Semiconductor ASA nRF52 USB CDC BLE Demo","device_descriptor":{"bLength":{"value":"18"},"bDescriptorType":{"value":"1"},"bcdUSB":{"value":"2.00"},"bDeviceClass":{"value":"0"},"bDeviceSubClass":{"value":"0"},"bDeviceProtocol":{"value":"0","attributes":["call management","use DataInterface"]},"bMaxPacketSize0":{"value":"64"},"idVendor":{"value":"0x1915","description":"Nordic Semiconductor ASA"},"idProduct":{"value":"0x521a"},"bcdDevice":{"value":"1.00"},"iManufacturer":{"value":"1","description":"Nordic Semiconductor"},"iProduct":{"value":"2","description":"nRF52 USB CDC BLE Demo"},"iSerial":{"value":"3","description":"F42DE60BE261"},"bNumConfigurations":{"value":"1"},"configuration_descriptor":{"bLength":{"value":"9"},"bDescriptorType":{"value":"2"},"wTotalLength":{"value":"0x004b"},"bNumInterfaces":{"value":"2","attributes":["call management","use DataInterface"]},"bConfigurationValue":{"value":"1"},"iConfiguration":{"value":"4"},"bmAttributes":{"value":"0xc0","attributes":["Self Powered"]},"MaxPower":{"description":"100mA"},"interface_association":{"bLength":{"value":"8"},"bDescriptorType":{"value":"11"},"bFirstInterface":{"value":"0"},"bInterfaceCount":{"value":"2"},"bFunctionClass":{"value":"2","description":"Communications","attributes":["call management","use DataInterface"]},"bFunctionSubClass":{"value":"2","description":"Abstract (modem)"},"bFunctionProtocol":{"value":"1","description":"AT-commands (v.25ter)"},"iFunction":{"value":"0"}},"interface_descriptors":[{"bLength":{"value":"9"},"bDescriptorType":{"value":"4"},"bInterfaceNumber":{"value":"0"},"bAlternateSetting":{"value":"0","attributes":["call management","use DataInterface"]},"bNumEndpoints":{"value":"1"},"bInterfaceClass":{"value":"2","description":"Communications"},"bInterfaceSubClass":{"value":"2","description":"Abstract (modem)"},"bInterfaceProtocol":{"value":"1","description":"AT-commands (v.25ter)"},"iInterface":{"value":"0"},"cdc_header":{"bcdCDC":{"value":"1.10","attributes":["call management","use DataInterface"]}},"cdc_call_management":{"bmCapabilities":{"value":"0x03","attributes":["call management","use DataInterface"]},"bDataInterface":{"value":"1"}},"cdc_acm":{"bmCapabilities":{"value":"0x02","attributes":["line coding and serial state"]}},"cdc_union":{"bMasterInterface":{"value":"0","attributes":["call management","use DataInterface"]},"bSlaveInterface":{"value":"1","attributes":["call management","use DataInterface"]}},"endpoint_descriptors":[{"bLength":{"value":"7"},"bDescriptorType":{"value":"5"},"bEndpointAddress":{"value":"0x82","description":"EP 2 IN"},"bmAttributes":{"value":"3","attributes":["Transfer Type Interrupt","Synch Type None","Usage Type Data"]},"wMaxPacketSize":{"value":"0x0040","description":"1x 64 bytes"},"bInterval":{"value":"16"}}]},{"bLength":{"value":"9"},"bDescriptorType":{"value":"4"},"bInterfaceNumber":{"value":"1"},"bAlternateSetting":{"value":"0"},"bNumEndpoints":{"value":"2"},"bInterfaceClass":{"value":"10","description":"CDC Data","attributes":["call management","use DataInterface"]},"bInterfaceSubClass":{"value":"0"},"bInterfaceProtocol":{"value":"0"},"iInterface":{"value":"0"},"endpoint_descriptors":[{"bLength":{"value":"7"},"bDescriptorType":{"value":"5"},"bEndpointAddress":{"value":"0x81","description":"EP 1 IN"},"bmAttributes":{"value":"2","attributes":["Transfer Type Bulk","Synch Type None","Usage Type Data"]},"wMaxPacketSize":{"value":"0x0040","description":"1x 64 bytes"},"bInterval":{"value":"0"}},{"bLength":{"value":"7"},"bDescriptorType":{"value":"5"},"bEndpointAddress":{"value":"0x01","description":"EP 1 OUT"},"bmAttributes":{"value":"2","attributes":["Transfer Type Bulk","Synch Type None","Usage Type Data"]},"wMaxPacketSize":{"value":"0x0040","description":"1x 64 bytes"},"bInterval":{"value":"0"}}]}]}}}] jc-1.17.3/tests/fixtures/generic/lsusb-test-attributes.out000066400000000000000000000074211415226333200236550ustar00rootroot00000000000000Bus 003 Device 090: ID 1915:521a Nordic Semiconductor ASA nRF52 USB CDC BLE Demo Couldn't open device, some information will be missing Device Descriptor: bLength 18 bDescriptorType 1 bcdUSB 2.00 bDeviceClass 0 bDeviceSubClass 0 bDeviceProtocol 0 call management use DataInterface bMaxPacketSize0 64 idVendor 0x1915 Nordic Semiconductor ASA idProduct 0x521a bcdDevice 1.00 iManufacturer 1 Nordic Semiconductor iProduct 2 nRF52 USB CDC BLE Demo iSerial 3 F42DE60BE261 bNumConfigurations 1 Configuration Descriptor: bLength 9 bDescriptorType 2 wTotalLength 0x004b bNumInterfaces 2 call management use DataInterface bConfigurationValue 1 iConfiguration 4 bmAttributes 0xc0 Self Powered MaxPower 100mA Interface Association: bLength 8 bDescriptorType 11 bFirstInterface 0 bInterfaceCount 2 bFunctionClass 2 Communications call management use DataInterface bFunctionSubClass 2 Abstract (modem) bFunctionProtocol 1 AT-commands (v.25ter) iFunction 0 Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 0 bAlternateSetting 0 call management use DataInterface bNumEndpoints 1 bInterfaceClass 2 Communications bInterfaceSubClass 2 Abstract (modem) bInterfaceProtocol 1 AT-commands (v.25ter) iInterface 0 CDC Header: bcdCDC 1.10 call management use DataInterface CDC Call Management: bmCapabilities 0x03 call management use DataInterface bDataInterface 1 CDC ACM: bmCapabilities 0x02 line coding and serial state CDC Union: bMasterInterface 0 call management use DataInterface bSlaveInterface 1 call management use DataInterface Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x82 EP 2 IN bmAttributes 3 Transfer Type Interrupt Synch Type None Usage Type Data wMaxPacketSize 0x0040 1x 64 bytes bInterval 16 Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 1 bAlternateSetting 0 bNumEndpoints 2 bInterfaceClass 10 CDC Data call management use DataInterface bInterfaceSubClass 0 bInterfaceProtocol 0 iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x81 EP 1 IN bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0040 1x 64 bytes bInterval 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x01 EP 1 OUT bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0040 1x 64 bytes bInterval 0 jc-1.17.3/tests/fixtures/generic/lsusb-test-attributes2.json000066400000000000000000000277011415226333200241040ustar00rootroot00000000000000[{"bus":"002","device":"004","id":"0e0f:0008","description":"VMware, Inc.","device_descriptor":{"bLength":{"value":"18"},"bDescriptorType":{"value":"1"},"bcdUSB":{"value":"2.00"},"bDeviceClass":{"value":"224","description":"Wireless"},"bDeviceSubClass":{"value":"1","description":"Radio Frequency"},"bDeviceProtocol":{"value":"1","description":"Bluetooth"},"bMaxPacketSize0":{"value":"64","attributes":["Transfer Type Isochronous","Synch Type None","Usage Type Data"]},"idVendor":{"value":"0x0e0f","description":"VMware, Inc."},"idProduct":{"value":"0x0008"},"bcdDevice":{"value":"1.00"},"iManufacturer":{"value":"1","description":"VMware"},"iProduct":{"value":"2","description":"Virtual Bluetooth Adapter"},"iSerial":{"value":"3","description":"000650268328"},"bNumConfigurations":{"value":"1"},"configuration_descriptor":{"bLength":{"value":"9"},"bDescriptorType":{"value":"2"},"wTotalLength":{"value":"177"},"bNumInterfaces":{"value":"2"},"bConfigurationValue":{"value":"1"},"iConfiguration":{"value":"0"},"bmAttributes":{"value":"0xc0","attributes":["Self Powered"]},"MaxPower":{"description":"0mA"},"interface_descriptors":[{"bLength":{"value":"9"},"bDescriptorType":{"value":"4"},"bInterfaceNumber":{"value":"0"},"bAlternateSetting":{"value":"0"},"bNumEndpoints":{"value":"3","attributes":["Transfer Type Isochronous","Synch Type None","Usage Type Data"]},"bInterfaceClass":{"value":"224","description":"Wireless"},"bInterfaceSubClass":{"value":"1","description":"Radio Frequency"},"bInterfaceProtocol":{"value":"1","description":"Bluetooth"},"iInterface":{"value":"0"},"endpoint_descriptors":[{"bLength":{"value":"7"},"bDescriptorType":{"value":"5"},"bEndpointAddress":{"value":"0x81","description":"EP 1 IN"},"bmAttributes":{"value":"3","attributes":["Transfer Type Interrupt","Synch Type None","Usage Type Data"]},"wMaxPacketSize":{"value":"0x0010","description":"1x 16 bytes"},"bInterval":{"value":"1"}},{"bLength":{"value":"7"},"bDescriptorType":{"value":"5"},"bEndpointAddress":{"value":"0x02","description":"EP 2 OUT"},"bmAttributes":{"value":"2","attributes":["Transfer Type Bulk","Synch Type None","Usage Type Data"]},"wMaxPacketSize":{"value":"0x0040","description":"1x 64 bytes"},"bInterval":{"value":"0"}},{"bLength":{"value":"7"},"bDescriptorType":{"value":"5"},"bEndpointAddress":{"value":"0x82","description":"EP 2 IN"},"bmAttributes":{"value":"2","attributes":["Transfer Type Bulk","Synch Type None","Usage Type Data"]},"wMaxPacketSize":{"value":"0x0040","description":"1x 64 bytes"},"bInterval":{"value":"0"}}]},{"bLength":{"value":"9"},"bDescriptorType":{"value":"4"},"bInterfaceNumber":{"value":"1"},"bAlternateSetting":{"value":"0"},"bNumEndpoints":{"value":"2"},"bInterfaceClass":{"value":"224","description":"Wireless"},"bInterfaceSubClass":{"value":"1","description":"Radio Frequency","attributes":["Transfer Type Isochronous","Synch Type None","Usage Type Data"]},"bInterfaceProtocol":{"value":"1","description":"Bluetooth"},"iInterface":{"value":"0"},"endpoint_descriptors":[{"bLength":{"value":"7"},"bDescriptorType":{"value":"5"},"bEndpointAddress":{"value":"0x03","description":"EP 3 OUT"},"bmAttributes":{"value":"1","attributes":["Transfer Type Isochronous","Synch Type None","Usage Type Data"]},"wMaxPacketSize":{"value":"0x0000","description":"1x 0 bytes"},"bInterval":{"value":"1"}},{"bLength":{"value":"7"},"bDescriptorType":{"value":"5"},"bEndpointAddress":{"value":"0x83","description":"EP 3 IN"},"bmAttributes":{"value":"1","attributes":["Transfer Type Isochronous","Synch Type None","Usage Type Data"]},"wMaxPacketSize":{"value":"0x0000","description":"1x 0 bytes"},"bInterval":{"value":"1"}}]},{"bLength":{"value":"9"},"bDescriptorType":{"value":"4"},"bInterfaceNumber":{"value":"1"},"bAlternateSetting":{"value":"1","attributes":["Transfer Type Isochronous","Synch Type None","Usage Type Data"]},"bNumEndpoints":{"value":"2"},"bInterfaceClass":{"value":"224","description":"Wireless"},"bInterfaceSubClass":{"value":"1","description":"Radio Frequency"},"bInterfaceProtocol":{"value":"1","description":"Bluetooth"},"iInterface":{"value":"0"},"endpoint_descriptors":[{"bLength":{"value":"7"},"bDescriptorType":{"value":"5"},"bEndpointAddress":{"value":"0x03","description":"EP 3 OUT"},"bmAttributes":{"value":"1","attributes":["Transfer Type Isochronous","Synch Type None","Usage Type Data"]},"wMaxPacketSize":{"value":"0x0009","description":"1x 9 bytes"},"bInterval":{"value":"1"}},{"bLength":{"value":"7"},"bDescriptorType":{"value":"5"},"bEndpointAddress":{"value":"0x83","description":"EP 3 IN"},"bmAttributes":{"value":"1","attributes":["Transfer Type Isochronous","Synch Type None","Usage Type Data"]},"wMaxPacketSize":{"value":"0x0009","description":"1x 9 bytes"},"bInterval":{"value":"1"}}]},{"bLength":{"value":"9","attributes":["Transfer Type Isochronous","Synch Type None","Usage Type Data"]},"bDescriptorType":{"value":"4"},"bInterfaceNumber":{"value":"1"},"bAlternateSetting":{"value":"2"},"bNumEndpoints":{"value":"2"},"bInterfaceClass":{"value":"224","description":"Wireless"},"bInterfaceSubClass":{"value":"1","description":"Radio Frequency"},"bInterfaceProtocol":{"value":"1","description":"Bluetooth"},"iInterface":{"value":"0"},"endpoint_descriptors":[{"bLength":{"value":"7"},"bDescriptorType":{"value":"5"},"bEndpointAddress":{"value":"0x03","description":"EP 3 OUT"},"bmAttributes":{"value":"1","attributes":["Transfer Type Isochronous","Synch Type None","Usage Type Data"]},"wMaxPacketSize":{"value":"0x0011","description":"1x 17 bytes"},"bInterval":{"value":"1"}},{"bLength":{"value":"7"},"bDescriptorType":{"value":"5"},"bEndpointAddress":{"value":"0x83","description":"EP 3 IN"},"bmAttributes":{"value":"1","attributes":["Transfer Type Isochronous","Synch Type None","Usage Type Data"]},"wMaxPacketSize":{"value":"0x0011","description":"1x 17 bytes"},"bInterval":{"value":"1"}}]},{"bLength":{"value":"9"},"bDescriptorType":{"value":"4"},"bInterfaceNumber":{"value":"1"},"bAlternateSetting":{"value":"3","attributes":["Transfer Type Isochronous","Synch Type None","Usage Type Data"]},"bNumEndpoints":{"value":"2"},"bInterfaceClass":{"value":"224","description":"Wireless"},"bInterfaceSubClass":{"value":"1","description":"Radio Frequency"},"bInterfaceProtocol":{"value":"1","description":"Bluetooth"},"iInterface":{"value":"0"},"endpoint_descriptors":[{"bLength":{"value":"7"},"bDescriptorType":{"value":"5"},"bEndpointAddress":{"value":"0x03","description":"EP 3 OUT"},"bmAttributes":{"value":"1","attributes":["Transfer Type Isochronous","Synch Type None","Usage Type Data"]},"wMaxPacketSize":{"value":"0x0019","description":"1x 25 bytes"},"bInterval":{"value":"1"}},{"bLength":{"value":"7"},"bDescriptorType":{"value":"5"},"bEndpointAddress":{"value":"0x83","description":"EP 3 IN"},"bmAttributes":{"value":"1","attributes":["Transfer Type Isochronous","Synch Type None","Usage Type Data"]},"wMaxPacketSize":{"value":"0x0019","description":"1x 25 bytes"},"bInterval":{"value":"1"}}]},{"bLength":{"value":"9"},"bDescriptorType":{"value":"4"},"bInterfaceNumber":{"value":"1"},"bAlternateSetting":{"value":"4"},"bNumEndpoints":{"value":"2"},"bInterfaceClass":{"value":"224","description":"Wireless"},"bInterfaceSubClass":{"value":"1","description":"Radio Frequency"},"bInterfaceProtocol":{"value":"1","description":"Bluetooth"},"iInterface":{"value":"0","attributes":["Transfer Type Isochronous","Synch Type None","Usage Type Data"]},"endpoint_descriptors":[{"bLength":{"value":"7"},"bDescriptorType":{"value":"5"},"bEndpointAddress":{"value":"0x03","description":"EP 3 OUT"},"bmAttributes":{"value":"1","attributes":["Transfer Type Isochronous","Synch Type None","Usage Type Data"]},"wMaxPacketSize":{"value":"0x0021","description":"1x 33 bytes"},"bInterval":{"value":"1"}},{"bLength":{"value":"7"},"bDescriptorType":{"value":"5"},"bEndpointAddress":{"value":"0x83","description":"EP 3 IN"},"bmAttributes":{"value":"1","attributes":["Transfer Type Isochronous","Synch Type None","Usage Type Data"]},"wMaxPacketSize":{"value":"0x0021","description":"1x 33 bytes"},"bInterval":{"value":"1"}}]},{"bLength":{"value":"9"},"bDescriptorType":{"value":"4","attributes":["Transfer Type Isochronous","Synch Type None","Usage Type Data"]},"bInterfaceNumber":{"value":"1"},"bAlternateSetting":{"value":"5"},"bNumEndpoints":{"value":"2"},"bInterfaceClass":{"value":"224","description":"Wireless"},"bInterfaceSubClass":{"value":"1","description":"Radio Frequency"},"bInterfaceProtocol":{"value":"1","description":"Bluetooth"},"iInterface":{"value":"0"},"endpoint_descriptors":[{"bLength":{"value":"7"},"bDescriptorType":{"value":"5"},"bEndpointAddress":{"value":"0x03","description":"EP 3 OUT"},"bmAttributes":{"value":"1","attributes":["Transfer Type Isochronous","Synch Type None","Usage Type Data"]},"wMaxPacketSize":{"value":"0x0031","description":"1x 49 bytes"},"bInterval":{"value":"1"}},{"bLength":{"value":"7"},"bDescriptorType":{"value":"5"},"bEndpointAddress":{"value":"0x83","description":"EP 3 IN"},"bmAttributes":{"value":"1","attributes":["Transfer Type Isochronous","Synch Type None","Usage Type Data"]},"wMaxPacketSize":{"value":"0x0031","description":"1x 49 bytes"},"bInterval":{"value":"1"}}]}]}},"device_status":{"value":"0x0001","description":"Self Powered"}},{"bus":"002","device":"003","id":"0e0f:0002","description":"VMware, Inc. Virtual USB Hub","device_descriptor":{"bLength":{"value":"18"},"bDescriptorType":{"value":"1"},"bcdUSB":{"value":"1.10"},"bDeviceClass":{"value":"9","description":"Hub"},"bDeviceSubClass":{"value":"0","description":"Unused"},"bDeviceProtocol":{"value":"0","description":"Full speed (or root) hub","attributes":["Transfer Type Isochronous","Synch Type None","Usage Type Data"]},"bMaxPacketSize0":{"value":"8"},"idVendor":{"value":"0x0e0f","description":"VMware, Inc."},"idProduct":{"value":"0x0002","description":"Virtual USB Hub"},"bcdDevice":{"value":"1.00"},"iManufacturer":{"value":"1","description":"VMware, Inc."},"iProduct":{"value":"2","description":"VMware Virtual USB Hub"},"iSerial":{"value":"0"},"bNumConfigurations":{"value":"1"},"configuration_descriptor":{"bLength":{"value":"9"},"bDescriptorType":{"value":"2"},"wTotalLength":{"value":"25"},"bNumInterfaces":{"value":"1"},"bConfigurationValue":{"value":"1"},"iConfiguration":{"value":"1","description":"VMware, Inc."},"bmAttributes":{"value":"0xe0","attributes":["Self Powered","Remote Wakeup"]},"MaxPower":{"description":"0mA"},"interface_descriptors":[{"bLength":{"value":"9"},"bDescriptorType":{"value":"4"},"bInterfaceNumber":{"value":"0"},"bAlternateSetting":{"value":"0"},"bNumEndpoints":{"value":"1"},"bInterfaceClass":{"value":"9","description":"Hub"},"bInterfaceSubClass":{"value":"0","description":"Unused"},"bInterfaceProtocol":{"value":"0","description":"Full speed (or root) hub"},"iInterface":{"value":"1","description":"VMware, Inc.","attributes":["Transfer Type Isochronous","Synch Type None","Usage Type Data"]},"endpoint_descriptors":[{"bLength":{"value":"7"},"bDescriptorType":{"value":"5"},"bEndpointAddress":{"value":"0x81","description":"EP 1 IN"},"bmAttributes":{"value":"3","attributes":["Transfer Type Interrupt","Synch Type None","Usage Type Data"]},"wMaxPacketSize":{"value":"0x0001","description":"1x 1 bytes"},"bInterval":{"value":"255"}}]}]}},"hub_descriptor":{"bLength":{"value":"9"},"bDescriptorType":{"value":"41"},"nNbrPorts":{"value":"7"},"wHubCharacteristic":{"value":"0x0009","attributes":["Per-port power switching","Per-port overcurrent protection"]},"bPwrOn2PwrGood":{"value":"50 *","description":"2 milli seconds"},"bHubContrCurrent":{"value":"100","description":"milli Ampere"},"DeviceRemovable":{"value":"0x00"},"PortPwrCtrlMask":{"value":"0xfe"},"hub_port_status":{"Port 1":{"value":"0000.0103","attributes":["power","enable","connect"]},"Port 2":{"value":"0000.0100","attributes":["power"]},"Port 3":{"value":"0000.0100","attributes":["power"]},"Port 4":{"value":"0000.0100","attributes":["power"]},"Port 5":{"value":"0000.0100","attributes":["power"]},"Port 6":{"value":"0000.0100","attributes":["power"]},"Port 7":{"value":"0000.0100","attributes":["power"]}}},"device_status":{"value":"0x2909","description":"Self Powered"}}] jc-1.17.3/tests/fixtures/generic/lsusb-test-attributes2.out000066400000000000000000000302171415226333200237360ustar00rootroot00000000000000Bus 002 Device 004: ID 0e0f:0008 VMware, Inc. Device Descriptor: bLength 18 bDescriptorType 1 bcdUSB 2.00 bDeviceClass 224 Wireless bDeviceSubClass 1 Radio Frequency bDeviceProtocol 1 Bluetooth bMaxPacketSize0 64 Transfer Type Isochronous Synch Type None Usage Type Data idVendor 0x0e0f VMware, Inc. idProduct 0x0008 bcdDevice 1.00 iManufacturer 1 VMware iProduct 2 Virtual Bluetooth Adapter iSerial 3 000650268328 bNumConfigurations 1 Configuration Descriptor: bLength 9 bDescriptorType 2 wTotalLength 177 bNumInterfaces 2 bConfigurationValue 1 iConfiguration 0 bmAttributes 0xc0 Self Powered MaxPower 0mA Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 0 bAlternateSetting 0 bNumEndpoints 3 Transfer Type Isochronous Synch Type None Usage Type Data bInterfaceClass 224 Wireless bInterfaceSubClass 1 Radio Frequency bInterfaceProtocol 1 Bluetooth iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x81 EP 1 IN bmAttributes 3 Transfer Type Interrupt Synch Type None Usage Type Data wMaxPacketSize 0x0010 1x 16 bytes bInterval 1 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x02 EP 2 OUT bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0040 1x 64 bytes bInterval 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x82 EP 2 IN bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0040 1x 64 bytes bInterval 0 Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 1 bAlternateSetting 0 bNumEndpoints 2 bInterfaceClass 224 Wireless bInterfaceSubClass 1 Radio Frequency Transfer Type Isochronous Synch Type None Usage Type Data bInterfaceProtocol 1 Bluetooth iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x03 EP 3 OUT bmAttributes 1 Transfer Type Isochronous Synch Type None Usage Type Data wMaxPacketSize 0x0000 1x 0 bytes bInterval 1 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x83 EP 3 IN bmAttributes 1 Transfer Type Isochronous Synch Type None Usage Type Data wMaxPacketSize 0x0000 1x 0 bytes bInterval 1 Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 1 bAlternateSetting 1 Transfer Type Isochronous Synch Type None Usage Type Data bNumEndpoints 2 bInterfaceClass 224 Wireless bInterfaceSubClass 1 Radio Frequency bInterfaceProtocol 1 Bluetooth iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x03 EP 3 OUT bmAttributes 1 Transfer Type Isochronous Synch Type None Usage Type Data wMaxPacketSize 0x0009 1x 9 bytes bInterval 1 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x83 EP 3 IN bmAttributes 1 Transfer Type Isochronous Synch Type None Usage Type Data wMaxPacketSize 0x0009 1x 9 bytes bInterval 1 Interface Descriptor: bLength 9 Transfer Type Isochronous Synch Type None Usage Type Data bDescriptorType 4 bInterfaceNumber 1 bAlternateSetting 2 bNumEndpoints 2 bInterfaceClass 224 Wireless bInterfaceSubClass 1 Radio Frequency bInterfaceProtocol 1 Bluetooth iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x03 EP 3 OUT bmAttributes 1 Transfer Type Isochronous Synch Type None Usage Type Data wMaxPacketSize 0x0011 1x 17 bytes bInterval 1 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x83 EP 3 IN bmAttributes 1 Transfer Type Isochronous Synch Type None Usage Type Data wMaxPacketSize 0x0011 1x 17 bytes bInterval 1 Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 1 bAlternateSetting 3 Transfer Type Isochronous Synch Type None Usage Type Data bNumEndpoints 2 bInterfaceClass 224 Wireless bInterfaceSubClass 1 Radio Frequency bInterfaceProtocol 1 Bluetooth iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x03 EP 3 OUT bmAttributes 1 Transfer Type Isochronous Synch Type None Usage Type Data wMaxPacketSize 0x0019 1x 25 bytes bInterval 1 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x83 EP 3 IN bmAttributes 1 Transfer Type Isochronous Synch Type None Usage Type Data wMaxPacketSize 0x0019 1x 25 bytes bInterval 1 Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 1 bAlternateSetting 4 bNumEndpoints 2 bInterfaceClass 224 Wireless bInterfaceSubClass 1 Radio Frequency bInterfaceProtocol 1 Bluetooth iInterface 0 Transfer Type Isochronous Synch Type None Usage Type Data Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x03 EP 3 OUT bmAttributes 1 Transfer Type Isochronous Synch Type None Usage Type Data wMaxPacketSize 0x0021 1x 33 bytes bInterval 1 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x83 EP 3 IN bmAttributes 1 Transfer Type Isochronous Synch Type None Usage Type Data wMaxPacketSize 0x0021 1x 33 bytes bInterval 1 Interface Descriptor: bLength 9 bDescriptorType 4 Transfer Type Isochronous Synch Type None Usage Type Data bInterfaceNumber 1 bAlternateSetting 5 bNumEndpoints 2 bInterfaceClass 224 Wireless bInterfaceSubClass 1 Radio Frequency bInterfaceProtocol 1 Bluetooth iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x03 EP 3 OUT bmAttributes 1 Transfer Type Isochronous Synch Type None Usage Type Data wMaxPacketSize 0x0031 1x 49 bytes bInterval 1 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x83 EP 3 IN bmAttributes 1 Transfer Type Isochronous Synch Type None Usage Type Data wMaxPacketSize 0x0031 1x 49 bytes bInterval 1 Device Status: 0x0001 Self Powered Bus 002 Device 003: ID 0e0f:0002 VMware, Inc. Virtual USB Hub Device Descriptor: bLength 18 bDescriptorType 1 bcdUSB 1.10 bDeviceClass 9 Hub bDeviceSubClass 0 Unused bDeviceProtocol 0 Full speed (or root) hub Transfer Type Isochronous Synch Type None Usage Type Data bMaxPacketSize0 8 idVendor 0x0e0f VMware, Inc. idProduct 0x0002 Virtual USB Hub bcdDevice 1.00 iManufacturer 1 VMware, Inc. iProduct 2 VMware Virtual USB Hub iSerial 0 bNumConfigurations 1 Configuration Descriptor: bLength 9 bDescriptorType 2 wTotalLength 25 bNumInterfaces 1 bConfigurationValue 1 iConfiguration 1 VMware, Inc. bmAttributes 0xe0 Self Powered Remote Wakeup MaxPower 0mA Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 0 bAlternateSetting 0 bNumEndpoints 1 bInterfaceClass 9 Hub bInterfaceSubClass 0 Unused bInterfaceProtocol 0 Full speed (or root) hub iInterface 1 VMware, Inc. Transfer Type Isochronous Synch Type None Usage Type Data Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x81 EP 1 IN bmAttributes 3 Transfer Type Interrupt Synch Type None Usage Type Data wMaxPacketSize 0x0001 1x 1 bytes bInterval 255 Hub Descriptor: bLength 9 bDescriptorType 41 nNbrPorts 7 wHubCharacteristic 0x0009 Per-port power switching Per-port overcurrent protection bPwrOn2PwrGood 50 * 2 milli seconds bHubContrCurrent 100 milli Ampere DeviceRemovable 0x00 PortPwrCtrlMask 0xfe Hub Port Status: Port 1: 0000.0103 power enable connect Port 2: 0000.0100 power Port 3: 0000.0100 power Port 4: 0000.0100 power Port 5: 0000.0100 power Port 6: 0000.0100 power Port 7: 0000.0100 power Device Status: 0x2909 Self Powered jc-1.17.3/tests/fixtures/generic/netstat-old.json000066400000000000000000000036101415226333200217600ustar00rootroot00000000000000[{"proto":"tcp","recv_q":0,"send_q":0,"local_address":"0.0.0.0","foreign_address":"0.0.0.0","state":"LISTEN","program_name":"systemd","kind":"network","pid":1,"local_port":"111","foreign_port":"*","transport_protocol":"tcp","network_protocol":"ipv4","local_port_num":111},{"proto":"udp","recv_q":0,"send_q":0,"local_address":"200.4.30.128","foreign_address":"0.0.0.0","state":null,"program_name":"NetworkManager","kind":"network","pid":903,"local_port":"68","foreign_port":"*","transport_protocol":"udp","network_protocol":"ipv4","local_port_num":68},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":18438,"program_name":"systemd","path":"/run/lvm/lvmpolld.socket","kind":"socket","pid":1},{"proto":"unix","refcnt":2,"flags":null,"type":"DGRAM","state":null,"inode":23569,"program_name":"chronyd","path":"/var/run/chrony/chronyd.sock","kind":"socket","pid":871},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":23584,"program_name":"gssproxy","path":"/run/gssproxy.sock","kind":"socket","pid":872},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":18511,"program_name":"systemd","path":"/run/rpcbind.sock","kind":"socket","pid":1},{"proto":"unix","refcnt":2,"flags":"ACC","type":"SEQPACKET","state":"LISTENING","inode":18521,"program_name":"systemd","path":"/run/udev/control","kind":"socket","pid":1},{"proto":"unix","refcnt":3,"flags":null,"type":"DGRAM","state":null,"inode":11098,"program_name":"systemd","path":"/run/systemd/notify","kind":"socket","pid":1},{"proto":"unix","refcnt":2,"flags":null,"type":"DGRAM","state":null,"inode":11100,"program_name":"systemd","path":"/run/systemd/cgroups-agent","kind":"socket","pid":1},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":24236,"program_name":"sssd","path":"/var/lib/sss/pipes/private/sbus-monitor","kind":"socket","pid":863}] jc-1.17.3/tests/fixtures/generic/netstat-old.out000066400000000000000000000024131415226333200216160ustar00rootroot00000000000000Active Internet connections (servers and established) Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN 1/systemd udp 0 0 200.4.30.128:68 0.0.0.0:* 903/NetworkManager Active UNIX domain sockets (servers and established) Proto RefCnt Flags Type State I-Node PID/Program name Path unix 2 [ ACC ] STREAM LISTENING 18438 1/systemd /run/lvm/lvmpolld.socket unix 2 [ ] DGRAM 23569 871/chronyd /var/run/chrony/chronyd.sock unix 2 [ ACC ] STREAM LISTENING 23584 872/gssproxy /run/gssproxy.sock unix 2 [ ACC ] STREAM LISTENING 18511 1/systemd /run/rpcbind.sock unix 2 [ ACC ] SEQPACKET LISTENING 18521 1/systemd /run/udev/control unix 3 [ ] DGRAM 11098 1/systemd /run/systemd/notify unix 2 [ ] DGRAM 11100 1/systemd /run/systemd/cgroups-agent unix 2 [ ACC ] STREAM LISTENING 24236 863/sssd /var/lib/sss/pipes/private/sbus-monitor jc-1.17.3/tests/fixtures/generic/traceroute1.json000066400000000000000000000127011415226333200217610ustar00rootroot00000000000000{"destination_ip": "173.207.22.152", "destination_name": "http://google.es", "hops": [{"hop": 1, "probes": [{"annotation": "!P", "asn": 1739, "ip": "131.240.100.12", "name": "131.240.100.12", "rtt": 0.676}, {"annotation": "!", "asn": 1739, "ip": "131.240.100.12", "name": "131.240.100.12", "rtt": 0.763}, {"annotation": "!<500>", "asn": 1739, "ip": "131.240.100.12", "name": "131.240.100.12", "rtt": 0.91}]}, {"hop": 2, "probes": [{"annotation": null, "asn": 1739, "ip": "131.232.1.26", "name": "http://tut1-fw-vlan558.av.tut.fi", "rtt": 0.266}, {"annotation": null, "asn": 1739, "ip": "131.232.1.26", "name": "http://tut1-fw-vlan558.av.tut.fi", "rtt": 0.404}, {"annotation": null, "asn": 1739, "ip": "131.232.1.26", "name": "http://tut1-fw-vlan558.av.tut.fi", "rtt": 0.493}]}, {"hop": 3, "probes": [{"annotation": null, "asn": 1739, "ip": "131.232.1.20", "name": "http://surf-gw-vlan557.av.tut.fi", "rtt": 0.967}, {"annotation": null, "asn": 1739, "ip": "131.232.1.20", "name": "http://surf-gw-vlan557.av.tut.fi", "rtt": 0.961}, {"annotation": null, "asn": 1739, "ip": "131.232.1.20", "name": "http://surf-gw-vlan557.av.tut.fi", "rtt": 1.085}]}, {"hop": 4, "probes": [{"annotation": null, "asn": 1739, "ip": "130.230.1.237", "name": "http://funet-tut6-rtr-xe-0-0-0.cc.tut.fi", "rtt": 1.096}, {"annotation": null, "asn": 1739, "ip": "130.230.1.237", "name": "http://funet-tut6-rtr-xe-0-0-0.cc.tut.fi", "rtt": 1.086}, {"annotation": null, "asn": 1739, "ip": "130.230.1.237", "name": "http://funet-tut6-rtr-xe-0-0-0.cc.tut.fi", "rtt": 1.049}]}, {"hop": 5, "probes": [{"annotation": null, "asn": 1741, "ip": "86.50.255.220", "name": "http://hameenlinna2-et-0-0-0-1.ip.funet.fi", "rtt": 3.81}, {"annotation": null, "asn": 1741, "ip": "86.50.255.220", "name": "http://hameenlinna2-et-0-0-0-1.ip.funet.fi", "rtt": 3.845}, {"annotation": null, "asn": 1741, "ip": "86.50.255.220", "name": "http://hameenlinna2-et-0-0-0-1.ip.funet.fi", "rtt": 3.82}]}, {"hop": 6, "probes": [{"annotation": null, "asn": 1741, "ip": "86.50.255.224", "name": "http://hameenlinna1-et-0-0-1-1.ip.funet.fi", "rtt": 29.055}, {"annotation": null, "asn": 1741, "ip": "86.50.255.224", "name": "http://hameenlinna1-et-0-0-1-1.ip.funet.fi", "rtt": 29.013}, {"annotation": null, "asn": 1741, "ip": "86.50.255.224", "name": "http://hameenlinna1-et-0-0-1-1.ip.funet.fi", "rtt": 28.977}]}, {"hop": 7, "probes": [{"annotation": null, "asn": 1741, "ip": "86.50.255.223", "name": "http://espoo2-et-0-1-2-1.ip.funet.fi", "rtt": 3.468}, {"annotation": null, "asn": 1741, "ip": "86.50.255.223", "name": "http://espoo2-et-0-1-2-1.ip.funet.fi", "rtt": 8.007}, {"annotation": null, "asn": 1741, "ip": "86.50.255.223", "name": "http://espoo2-et-0-1-2-1.ip.funet.fi", "rtt": 7.89}]}, {"hop": 8, "probes": [{"annotation": null, "asn": 1741, "ip": "86.50.255.232", "name": "http://espoo1-et-0-1-7-1.ip.funet.fi", "rtt": 13.498}, {"annotation": null, "asn": 1741, "ip": "86.50.255.232", "name": "http://espoo1-et-0-1-7-1.ip.funet.fi", "rtt": 13.307}, {"annotation": null, "asn": 1741, "ip": "86.50.255.232", "name": "http://espoo1-et-0-1-7-1.ip.funet.fi", "rtt": 13.399}]}, {"hop": 9, "probes": [{"annotation": null, "asn": 2603, "ip": "109.105.102.168", "name": "http://fi-csc2.nordu.net", "rtt": 3.25}, {"annotation": null, "asn": 2603, "ip": "109.105.102.168", "name": "http://fi-csc2.nordu.net", "rtt": 3.268}, {"annotation": null, "asn": 2603, "ip": "109.105.102.168", "name": "http://fi-csc2.nordu.net", "rtt": 3.236}]}, {"hop": 10, "probes": [{"annotation": null, "asn": 2603, "ip": "109.105.97.93", "name": "http://se-fre.nordu.net", "rtt": 9.418}, {"annotation": null, "asn": 2603, "ip": "109.105.97.93", "name": "http://se-fre.nordu.net", "rtt": 9.41}, {"annotation": null, "asn": 2603, "ip": "109.105.97.93", "name": "http://se-fre.nordu.net", "rtt": 9.369}]}, {"hop": 11, "probes": [{"annotation": null, "asn": 2603, "ip": "109.105.97.27", "name": "http://se-kst2.nordu.net", "rtt": 9.617}, {"annotation": null, "asn": 2603, "ip": "109.105.97.27", "name": "http://se-kst2.nordu.net", "rtt": 9.594}, {"annotation": null, "asn": 2603, "ip": "109.105.97.27", "name": "http://se-kst2.nordu.net", "rtt": 9.603}]}, {"hop": 12, "probes": [{"annotation": null, "asn": 15169, "ip": "192.121.80.47", "name": "http://as15169-10g-sk1.sthix.net", "rtt": 10.01}, {"annotation": null, "asn": 15169, "ip": "192.121.80.47", "name": "http://as15169-10g-sk1.sthix.net", "rtt": 9.182}, {"annotation": null, "asn": 15169, "ip": "192.121.80.47", "name": "http://as15169-10g-sk1.sthix.net", "rtt": 44.983}]}, {"hop": 13, "probes": [{"annotation": null, "asn": 15169, "ip": "108.170.254.49", "name": "108.170.254.49", "rtt": 10.852}, {"annotation": null, "asn": 15169, "ip": "108.170.254.49", "name": "108.170.254.49", "rtt": 11.185}, {"annotation": null, "asn": 15169, "ip": "108.170.254.49", "name": "108.170.254.49", "rtt": 10.876}]}, {"hop": 14, "probes": [{"annotation": null, "asn": 15169, "ip": "209.85.242.11", "name": "209.85.242.11", "rtt": 10.192}, {"annotation": null, "asn": 15169, "ip": "209.85.242.11", "name": "209.85.242.11", "rtt": 10.471}, {"annotation": null, "asn": 15169, "ip": "209.85.242.11", "name": "209.85.242.11", "rtt": 10.502}]}, {"hop": 15, "probes": [{"annotation": null, "asn": 15169, "ip": "172.217.21.163", "name": "http://arn11s03-in-f3.1e100.net", "rtt": 9.652}, {"annotation": null, "asn": 15169, "ip": "172.217.21.163", "name": "http://arn11s03-in-f3.1e100.net", "rtt": 9.664}, {"annotation": null, "asn": 15169, "ip": "172.217.21.163", "name": "http://arn11s03-in-f3.1e100.net", "rtt": 9.777}]}]} jc-1.17.3/tests/fixtures/generic/traceroute1.out000066400000000000000000000030451415226333200216200ustar00rootroot00000000000000traceroute to http://google.es (173.207.22.152), 30 hops max, 60 byte packets 1 131.240.100.12 (131.240.100.12) [AS1739] 0.676 ms !P 0.763 ms ! 0.910 ms !<500> 2 http://tut1-fw-vlan558.av.tut.fi (131.232.1.26) [AS1739] 0.266 ms 0.404 ms 0.493 ms 3 http://surf-gw-vlan557.av.tut.fi (131.232.1.20) [AS1739] 0.967 ms 0.961 ms 1.085 ms 4 http://funet-tut6-rtr-xe-0-0-0.cc.tut.fi (130.230.1.237) [AS1739] 1.096 ms 1.086 ms 1.049 ms 5 http://hameenlinna2-et-0-0-0-1.ip.funet.fi (86.50.255.220) [AS1741] 3.810 ms 3.845 ms 3.820 ms 6 http://hameenlinna1-et-0-0-1-1.ip.funet.fi (86.50.255.224) [AS1741] 29.055 ms 29.013 ms 28.977 ms 7 http://espoo2-et-0-1-2-1.ip.funet.fi (86.50.255.223) [AS1741] 3.468 ms 8.007 ms 7.890 ms 8 http://espoo1-et-0-1-7-1.ip.funet.fi (86.50.255.232) [AS1741] 13.498 ms 13.307 ms 13.399 ms 9 http://fi-csc2.nordu.net (109.105.102.168) [AS2603] 3.250 ms 3.268 ms 3.236 ms 10 http://se-fre.nordu.net (109.105.97.93) [AS2603] 9.418 ms 9.410 ms 9.369 ms 11 http://se-kst2.nordu.net (109.105.97.27) [AS2603] 9.617 ms 9.594 ms 9.603 ms 12 http://as15169-10g-sk1.sthix.net (192.121.80.47) [*] 10.010 ms 72.14.196.42 (72.14.196.42) [AS15169] 9.182 ms 44.983 ms 13 108.170.254.49 (108.170.254.49) [AS15169] 10.852 ms 108.170.254.33 (108.170.254.33) [AS15169] 11.185 ms 108.170.254.49 (108.170.254.49) [AS15169] 10.876 ms 14 209.85.242.11 (209.85.242.11) [AS15169] 10.192 ms 10.471 ms 10.502 ms 15 http://arn11s03-in-f3.1e100.net (172.217.21.163) [AS15169] 9.652 ms 9.664 ms 9.777 ms jc-1.17.3/tests/fixtures/generic/traceroute2.json000066400000000000000000000057531415226333200217730ustar00rootroot00000000000000{"destination_ip": "216.58.194.46", "destination_name": "google.com", "hops": [{"hop": 1, "probes": [{"annotation": null, "asn": null, "ip": "216.230.231.141", "name": "216-230-231-141.static.houston.tx.oplink.net", "rtt": 198.574}, {"annotation": null, "asn": null, "ip": "216.230.231.141", "name": "216-230-231-141.static.houston.tx.oplink.net", "rtt": 198.65}]}, {"hop": 2, "probes": []}, {"hop": 3, "probes": []}, {"hop": 4, "probes": [{"annotation": null, "asn": null, "ip": "72.14.242.34", "name": "72.14.242.34", "rtt": 4.932}, {"annotation": null, "asn": null, "ip": "72.14.242.34", "name": "72.14.242.34", "rtt": 4.945}, {"annotation": null, "asn": null, "ip": "72.14.242.34", "name": "72.14.242.34", "rtt": 4.951}]}, {"hop": 5, "probes": []}, {"hop": 6, "probes": [{"annotation": null, "asn": null, "ip": "108.170.230.116", "name": "108.170.230.116", "rtt": 4.687}, {"annotation": null, "asn": null, "ip": "108.170.230.116", "name": "108.170.230.116", "rtt": 4.798}, {"annotation": null, "asn": null, "ip": "108.170.230.116", "name": "108.170.230.116", "rtt": 4.688}]}, {"hop": 7, "probes": [{"annotation": null, "asn": null, "ip": "108.170.252.130", "name": "108.170.252.130", "rtt": 4.825}, {"annotation": null, "asn": null, "ip": "108.170.252.130", "name": "108.170.252.130", "rtt": 4.844}, {"annotation": null, "asn": null, "ip": "108.170.252.130", "name": "108.170.252.130", "rtt": 4.797}]}, {"hop": 8, "probes": [{"annotation": null, "asn": null, "ip": "108.170.233.117", "name": "108.170.233.117", "rtt": 5.386}, {"annotation": null, "asn": null, "ip": "108.170.233.117", "name": "108.170.233.117", "rtt": 5.288}, {"annotation": null, "asn": null, "ip": "108.170.233.117", "name": "108.170.233.117", "rtt": 5.324}]}, {"hop": 9, "probes": [{"annotation": null, "asn": null, "ip": "216.239.63.250", "name": "216.239.63.250", "rtt": 5.305}, {"annotation": null, "asn": null, "ip": "216.239.63.250", "name": "216.239.63.250", "rtt": 5.369}, {"annotation": null, "asn": null, "ip": "216.239.63.250", "name": "216.239.63.250", "rtt": 5.406}]}, {"hop": 10, "probes": [{"annotation": null, "asn": null, "ip": "108.170.240.129", "name": "108.170.240.129", "rtt": 6.005}, {"annotation": null, "asn": null, "ip": "108.170.240.129", "name": "108.170.240.129", "rtt": 5.93}, {"annotation": null, "asn": null, "ip": "108.170.240.129", "name": "108.170.240.129", "rtt": 5.983}]}, {"hop": 11, "probes": [{"annotation": null, "asn": null, "ip": "209.85.242.53", "name": "209.85.242.53", "rtt": 4.973}, {"annotation": null, "asn": null, "ip": "209.85.242.53", "name": "209.85.242.53", "rtt": 4.973}, {"annotation": null, "asn": null, "ip": "209.85.242.53", "name": "209.85.242.53", "rtt": 4.979}]}, {"hop": 12, "probes": [{"annotation": null, "asn": null, "ip": "216.58.194.46", "name": "dfw25s12-in-f46.1e100.net", "rtt": 4.871}, {"annotation": null, "asn": null, "ip": "216.58.194.46", "name": "dfw25s12-in-f46.1e100.net", "rtt": 4.884}, {"annotation": null, "asn": null, "ip": "216.58.194.46", "name": "dfw25s12-in-f46.1e100.net", "rtt": 4.863}]}]} jc-1.17.3/tests/fixtures/generic/traceroute2.out000066400000000000000000000013371415226333200216230ustar00rootroot00000000000000traceroute to google.com (216.58.194.46), 30 hops max, 40 byte packets 1 216-230-231-141.static.houston.tx.oplink.net (216.230.231.141) 198.574 ms * 198.650 ms 2 * * * 3 * * * 4 72.14.242.34 (72.14.242.34) 4.932 ms 4.945 ms 4.951 ms 5 * * * 6 108.170.230.116 (108.170.230.116) 4.687 ms 4.798 ms 4.688 ms 7 108.170.252.130 (108.170.252.130) 4.825 ms 4.844 ms 4.797 ms 8 108.170.233.117 (108.170.233.117) 5.386 ms 5.288 ms 5.324 ms 9 216.239.63.250 (216.239.63.250) 5.305 ms 5.369 ms 5.406 ms 10 108.170.240.129 (108.170.240.129) 6.005 ms 5.930 ms 5.983 ms 11 209.85.242.53 (209.85.242.53) 4.973 ms 4.973 ms 4.979 ms 12 dfw25s12-in-f46.1e100.net (216.58.194.46) 4.871 ms 4.884 ms 4.863 ms jc-1.17.3/tests/fixtures/generic/traceroute3.json000066400000000000000000000114321415226333200217630ustar00rootroot00000000000000{"destination_ip": "31.13.82.36", "destination_name": "facebook.com", "hops": [{"hop": 1, "probes": [{"annotation": null, "asn": null, "ip": "175.41.192.133", "name": "ec2-175-41-192-133.ap-northeast-1.compute.amazonaws.com", "rtt": 1.002}, {"annotation": null, "asn": null, "ip": "175.41.192.133", "name": "ec2-175-41-192-133.ap-northeast-1.compute.amazonaws.com", "rtt": 1.006}]}, {"hop": 2, "probes": []}, {"hop": 3, "probes": []}, {"hop": 4, "probes": []}, {"hop": 5, "probes": []}, {"hop": 6, "probes": []}, {"hop": 7, "probes": [{"annotation": null, "asn": null, "ip": "100.65.10.33", "name": "100.65.10.33", "rtt": 0.269}, {"annotation": null, "asn": null, "ip": "100.65.10.33", "name": "100.65.10.33", "rtt": 0.282}, {"annotation": null, "asn": null, "ip": "100.65.10.33", "name": "100.65.10.33", "rtt": 0.32}]}, {"hop": 8, "probes": [{"annotation": null, "asn": null, "ip": "54.239.52.186", "name": "54.239.52.186", "rtt": 1.411}, {"annotation": null, "asn": null, "ip": "54.239.52.186", "name": "54.239.52.186", "rtt": 1.431}, {"annotation": null, "asn": null, "ip": "54.239.52.186", "name": "54.239.52.186", "rtt": 1.433}]}, {"hop": 9, "probes": [{"annotation": null, "asn": null, "ip": "52.95.31.89", "name": "52.95.31.89", "rtt": 2.612}, {"annotation": null, "asn": null, "ip": "52.95.31.89", "name": "52.95.31.89", "rtt": 2.634}, {"annotation": null, "asn": null, "ip": "52.95.31.89", "name": "52.95.31.89", "rtt": 2.659}]}, {"hop": 10, "probes": [{"annotation": null, "asn": null, "ip": "52.95.31.56", "name": "52.95.31.56", "rtt": 1.017}, {"annotation": null, "asn": null, "ip": "52.95.31.56", "name": "52.95.31.56", "rtt": 1.028}, {"annotation": null, "asn": null, "ip": "52.95.31.56", "name": "52.95.31.56", "rtt": 1.048}]}, {"hop": 11, "probes": [{"annotation": null, "asn": null, "ip": "52.95.31.149", "name": "52.95.31.149", "rtt": 7.042}, {"annotation": null, "asn": null, "ip": "52.95.31.149", "name": "52.95.31.149", "rtt": 7.057}, {"annotation": null, "asn": null, "ip": "52.95.31.149", "name": "52.95.31.149", "rtt": 7.06}]}, {"hop": 12, "probes": [{"annotation": null, "asn": null, "ip": "54.239.53.66", "name": "54.239.53.66", "rtt": 7.828}, {"annotation": null, "asn": null, "ip": "54.239.53.66", "name": "54.239.53.66", "rtt": 7.81}, {"annotation": null, "asn": null, "ip": "54.239.53.66", "name": "54.239.53.66", "rtt": 7.997}]}, {"hop": 13, "probes": [{"annotation": null, "asn": null, "ip": "54.239.53.82", "name": "54.239.53.82", "rtt": 7.12}, {"annotation": null, "asn": null, "ip": "54.239.53.82", "name": "54.239.53.82", "rtt": 7.126}, {"annotation": null, "asn": null, "ip": "54.239.53.82", "name": "54.239.53.82", "rtt": 7.178}]}, {"hop": 14, "probes": [{"annotation": null, "asn": null, "ip": "63.222.51.9", "name": "63-222-51-9.static.pccwglobal.net", "rtt": 7.657}, {"annotation": null, "asn": null, "ip": "63.222.51.9", "name": "63-222-51-9.static.pccwglobal.net", "rtt": 7.611}, {"annotation": null, "asn": null, "ip": "63.222.51.9", "name": "63-222-51-9.static.pccwglobal.net", "rtt": 7.669}]}, {"hop": 15, "probes": [{"annotation": null, "asn": null, "ip": "63.218.250.169", "name": "HundredGE0-4-0-3.br02.tok02.pccwbtn.net", "rtt": 8.13}, {"annotation": null, "asn": null, "ip": "63.218.250.169", "name": "HundredGE0-4-0-3.br02.tok02.pccwbtn.net", "rtt": 8.368}, {"annotation": null, "asn": null, "ip": "63.218.250.169", "name": "HundredGE0-4-0-3.br02.tok02.pccwbtn.net", "rtt": 8.402}]}, {"hop": 16, "probes": [{"annotation": null, "asn": null, "ip": "63.218.251.118", "name": "63-218-251-118.static.pccwglobal.net", "rtt": 30.511}, {"annotation": null, "asn": null, "ip": "63.218.251.118", "name": "63-218-251-118.static.pccwglobal.net", "rtt": 20.379}, {"annotation": null, "asn": null, "ip": "63.218.251.118", "name": "63-218-251-118.static.pccwglobal.net", "rtt": 20.352}]}, {"hop": 17, "probes": [{"annotation": null, "asn": null, "ip": "157.240.40.9", "name": "po104.psw04.nrt1.tfbnw.net", "rtt": 8.341}, {"annotation": null, "asn": null, "ip": "157.240.40.9", "name": "po104.psw04.nrt1.tfbnw.net", "rtt": 8.303}, {"annotation": null, "asn": null, "ip": "157.240.40.9", "name": "po104.psw04.nrt1.tfbnw.net", "rtt": 8.312}]}, {"hop": 18, "probes": [{"annotation": null, "asn": null, "ip": "173.252.67.191", "name": "173.252.67.191", "rtt": 8.298}, {"annotation": null, "asn": null, "ip": "173.252.67.191", "name": "173.252.67.191", "rtt": 8.328}, {"annotation": null, "asn": null, "ip": "173.252.67.191", "name": "173.252.67.191", "rtt": 8.359}]}, {"hop": 19, "probes": [{"annotation": null, "asn": null, "ip": "31.13.82.36", "name": "edge-star-mini-shv-01-nrt1.facebook.com", "rtt": 8.214}, {"annotation": null, "asn": null, "ip": "31.13.82.36", "name": "edge-star-mini-shv-01-nrt1.facebook.com", "rtt": 8.198}, {"annotation": null, "asn": null, "ip": "31.13.82.36", "name": "edge-star-mini-shv-01-nrt1.facebook.com", "rtt": 8.192}]}]} jc-1.17.3/tests/fixtures/generic/traceroute3.out000066400000000000000000000021731415226333200216230ustar00rootroot00000000000000traceroute to facebook.com (31.13.82.36), 30 hops max, 40 byte packets 1 ec2-175-41-192-133.ap-northeast-1.compute.amazonaws.com (175.41.192.133) 1.002 ms * 1.006 ms 2 * * * 3 * * * 4 * * * 5 * * * 6 * * * 7 100.65.10.33 (100.65.10.33) 0.269 ms 0.282 ms 0.320 ms 8 54.239.52.186 (54.239.52.186) 1.411 ms 1.431 ms 1.433 ms 9 52.95.31.89 (52.95.31.89) 2.612 ms 2.634 ms 2.659 ms 10 52.95.31.56 (52.95.31.56) 1.017 ms 1.028 ms 1.048 ms 11 52.95.31.149 (52.95.31.149) 7.042 ms 7.057 ms 7.060 ms 12 54.239.53.66 (54.239.53.66) 7.828 ms 7.810 ms 7.997 ms 13 54.239.53.82 (54.239.53.82) 7.120 ms 7.126 ms 7.178 ms 14 63-222-51-9.static.pccwglobal.net (63.222.51.9) 7.657 ms 7.611 ms 7.669 ms 15 HundredGE0-4-0-3.br02.tok02.pccwbtn.net (63.218.250.169) 8.130 ms 8.368 ms 8.402 ms 16 63-218-251-118.static.pccwglobal.net (63.218.251.118) 30.511 ms 20.379 ms 20.352 ms 17 po104.psw04.nrt1.tfbnw.net (157.240.40.9) 8.341 ms 8.303 ms 8.312 ms 18 173.252.67.191 (173.252.67.191) 8.298 ms 8.328 ms 8.359 ms 19 edge-star-mini-shv-01-nrt1.facebook.com (31.13.82.36) 8.214 ms 8.198 ms 8.192 ms jc-1.17.3/tests/fixtures/generic/traceroute4.json000066400000000000000000000035701415226333200217700ustar00rootroot00000000000000{"destination_ip": "64.13.192.208", "destination_name": "example.com", "hops": [{"hop": 1, "probes": [{"annotation": null, "asn": null, "ip": "72.10.62.1", "name": "72.10.62.1", "rtt": 1.0}, {"annotation": null, "asn": null, "ip": "72.10.62.1", "name": "72.10.62.1", "rtt": 0.739}, {"annotation": null, "asn": null, "ip": "72.10.62.1", "name": "72.10.62.1", "rtt": 0.702}]}, {"hop": 2, "probes": [{"annotation": null, "asn": null, "ip": "10.101.248.1", "name": "10.101.248.1", "rtt": 0.683}, {"annotation": null, "asn": null, "ip": "10.101.248.1", "name": "10.101.248.1", "rtt": 0.385}, {"annotation": null, "asn": null, "ip": "10.101.248.1", "name": "10.101.248.1", "rtt": 0.315}]}, {"hop": 3, "probes": [{"annotation": null, "asn": null, "ip": "10.104.65.161", "name": "10.104.65.161", "rtt": 0.791}, {"annotation": null, "asn": null, "ip": "10.104.65.161", "name": "10.104.65.161", "rtt": 0.703}, {"annotation": null, "asn": null, "ip": "10.104.65.161", "name": "10.104.65.161", "rtt": 0.686}]}, {"hop": 4, "probes": [{"annotation": null, "asn": null, "ip": "10.104.0.1", "name": "10.104.0.1", "rtt": 1.43}, {"annotation": null, "asn": null, "ip": "10.104.0.1", "name": "10.104.0.1", "rtt": 1.31}, {"annotation": null, "asn": null, "ip": "10.104.0.1", "name": "10.104.0.1", "rtt": 1.063}]}, {"hop": 5, "probes": [{"annotation": null, "asn": null, "ip": "10.0.10.33", "name": "10.0.10.33", "rtt": 2.652}, {"annotation": null, "asn": null, "ip": "10.0.10.33", "name": "10.0.10.33", "rtt": 2.26}, {"annotation": null, "asn": null, "ip": "10.0.10.33", "name": "10.0.10.33", "rtt": 5.353}]}, {"hop": 6, "probes": [{"annotation": null, "asn": null, "ip": "64.13.192.208", "name": "www.example.com", "rtt": 3.384}, {"annotation": null, "asn": null, "ip": "64.13.192.208", "name": "www.example.com", "rtt": 8.001}, {"annotation": null, "asn": null, "ip": "64.13.192.208", "name": "www.example.com", "rtt": 2.439}]}]} jc-1.17.3/tests/fixtures/generic/traceroute4.out000066400000000000000000000006601415226333200216230ustar00rootroot00000000000000traceroute to example.com (64.13.192.208), 64 hops max, 40 byte packets 1 72.10.62.1 (72.10.62.1) 1.000 ms 0.739 ms 0.702 ms 2 10.101.248.1 (10.101.248.1) 0.683 ms 0.385 ms 0.315 ms 3 10.104.65.161 (10.104.65.161) 0.791 ms 0.703 ms 0.686 ms 4 10.104.0.1 (10.104.0.1) 1.430 ms 1.310 ms 1.063 ms 5 10.0.10.33 (10.0.10.33) 2.652 ms 2.260 ms 5.353 ms 6 www.example.com (64.13.192.208) 3.384 ms 8.001 ms 2.439 ms jc-1.17.3/tests/fixtures/generic/traceroute5.json000066400000000000000000000054751415226333200217770ustar00rootroot00000000000000{"destination_ip": "104.18.42.178", "destination_name": "10xhostings.com", "hops": [{"hop": 1, "probes": []}, {"hop": 2, "probes": [{"annotation": null, "asn": null, "ip": null, "name": null, "rtt": 0.894}, {"annotation": null, "asn": null, "ip": null, "name": null, "rtt": 0.89}, {"annotation": null, "asn": null, "ip": null, "name": null, "rtt": 0.876}]}, {"hop": 3, "probes": [{"annotation": null, "asn": null, "ip": "204.141.42.25", "name": "204.141.42.25", "rtt": 2.818}, {"annotation": null, "asn": null, "ip": "204.141.42.25", "name": "204.141.42.25", "rtt": 2.825}, {"annotation": null, "asn": null, "ip": "204.141.42.25", "name": "204.141.42.25", "rtt": 2.825}]}, {"hop": 4, "probes": [{"annotation": null, "asn": null, "ip": "204.141.42.9", "name": "204.141.42.9", "rtt": 1.014}, {"annotation": null, "asn": null, "ip": "204.141.42.9", "name": "204.141.42.9", "rtt": 1.017}, {"annotation": null, "asn": null, "ip": "204.141.42.9", "name": "204.141.42.9", "rtt": 1.082}]}, {"hop": 5, "probes": [{"annotation": null, "asn": null, "ip": "128.241.1.145", "name": "xe-0-0-46-2.a00.sttlwa01.us.bb.gin.ntt.net", "rtt": 30.105}, {"annotation": null, "asn": null, "ip": "128.241.1.145", "name": "xe-0-0-46-2.a00.sttlwa01.us.bb.gin.ntt.net", "rtt": 30.125}, {"annotation": null, "asn": null, "ip": "128.241.1.145", "name": "xe-0-0-46-2.a00.sttlwa01.us.bb.gin.ntt.net", "rtt": 30.125}]}, {"hop": 6, "probes": [{"annotation": null, "asn": null, "ip": "129.250.5.117", "name": "ae-9.r04.sttlwa01.us.bb.gin.ntt.net", "rtt": 32.346}, {"annotation": null, "asn": null, "ip": "129.250.5.117", "name": "ae-9.r04.sttlwa01.us.bb.gin.ntt.net", "rtt": 31.946}, {"annotation": null, "asn": null, "ip": "129.250.5.117", "name": "ae-9.r04.sttlwa01.us.bb.gin.ntt.net", "rtt": 31.96}]}, {"hop": 7, "probes": [{"annotation": null, "asn": null, "ip": "129.250.5.86", "name": "ae-0.a01.sttlwa01.us.bb.gin.ntt.net", "rtt": 32.836}, {"annotation": null, "asn": null, "ip": "129.250.5.86", "name": "ae-0.a01.sttlwa01.us.bb.gin.ntt.net", "rtt": 32.749}, {"annotation": null, "asn": null, "ip": "129.250.5.86", "name": "ae-0.a01.sttlwa01.us.bb.gin.ntt.net", "rtt": 32.743}]}, {"hop": 8, "probes": [{"annotation": null, "asn": null, "ip": "131.103.117.86", "name": "ae-0.cloudflare.sttlwa01.us.bb.gin.ntt.net", "rtt": 44.601}, {"annotation": null, "asn": null, "ip": "131.103.117.86", "name": "ae-0.cloudflare.sttlwa01.us.bb.gin.ntt.net", "rtt": 42.886}, {"annotation": null, "asn": null, "ip": "131.103.117.86", "name": "ae-0.cloudflare.sttlwa01.us.bb.gin.ntt.net", "rtt": 42.874}]}, {"hop": 9, "probes": [{"annotation": null, "asn": null, "ip": "104.18.42.178", "name": "104.18.42.178", "rtt": 29.614}, {"annotation": null, "asn": null, "ip": "104.18.42.178", "name": "104.18.42.178", "rtt": 29.69}, {"annotation": null, "asn": null, "ip": "104.18.42.178", "name": "104.18.42.178", "rtt": 30.461}]}]} jc-1.17.3/tests/fixtures/generic/traceroute5.out000066400000000000000000000012771415226333200216310ustar00rootroot00000000000000traceroute to 10xhostings.com (104.18.42.178), 30 hops max, 40 byte packets 1 * * * 2 Internal (Internal) 0.894 ms 0.890 ms 0.876 ms 3 204.141.42.25 (204.141.42.25) 2.818 ms 2.825 ms 2.825 ms 4 204.141.42.9 (204.141.42.9) 1.014 ms 1.017 ms 1.082 ms 5 xe-0-0-46-2.a00.sttlwa01.us.bb.gin.ntt.net (128.241.1.145) 30.105 ms 30.125 ms 30.125 ms 6 ae-9.r04.sttlwa01.us.bb.gin.ntt.net (129.250.5.117) 32.346 ms 31.946 ms 31.960 ms 7 ae-0.a01.sttlwa01.us.bb.gin.ntt.net (129.250.5.86) 32.836 ms 32.749 ms 32.743 ms 8 ae-0.cloudflare.sttlwa01.us.bb.gin.ntt.net (131.103.117.86) 44.601 ms 42.886 ms 42.874 ms 9 104.18.42.178 (104.18.42.178) 29.614 ms 29.690 ms 30.461 ms jc-1.17.3/tests/fixtures/generic/traceroute6.json000066400000000000000000000116661415226333200217770ustar00rootroot00000000000000{"destination_ip": "52.22.122.82", "destination_name": "alexa.com", "hops": [{"hop": 1, "probes": [{"annotation": null, "asn": null, "ip": "130.185.80.253", "name": "130.185.80.253", "rtt": 0.374}, {"annotation": null, "asn": null, "ip": "130.185.80.253", "name": "130.185.80.253", "rtt": 0.474}]}, {"hop": 2, "probes": [{"annotation": null, "asn": null, "ip": "94.46.128.26", "name": "94.46.128.26", "rtt": 0.44}, {"annotation": null, "asn": null, "ip": "94.46.128.26", "name": "94.46.128.26", "rtt": 0.457}, {"annotation": null, "asn": null, "ip": "94.46.128.26", "name": "94.46.128.26", "rtt": 0.459}]}, {"hop": 3, "probes": [{"annotation": null, "asn": null, "ip": "80.231.158.49", "name": "ix-xe-1-3-0-0.tcore1.pv9-lisbon.as6453.net", "rtt": 0.436}, {"annotation": null, "asn": null, "ip": "80.231.158.49", "name": "ix-xe-1-3-0-0.tcore1.pv9-lisbon.as6453.net", "rtt": 0.436}, {"annotation": null, "asn": null, "ip": "80.231.158.49", "name": "ix-xe-1-3-0-0.tcore1.pv9-lisbon.as6453.net", "rtt": 0.446}]}, {"hop": 4, "probes": [{"annotation": null, "asn": null, "ip": "80.231.158.30", "name": "if-ae-1-3.tcore1.sv8-highbridge.as6453.net", "rtt": 100.3}, {"annotation": null, "asn": null, "ip": "80.231.158.30", "name": "if-ae-1-3.tcore1.sv8-highbridge.as6453.net", "rtt": 100.346}, {"annotation": null, "asn": null, "ip": "80.231.158.30", "name": "if-ae-1-3.tcore1.sv8-highbridge.as6453.net", "rtt": 100.362}]}, {"hop": 5, "probes": [{"annotation": null, "asn": null, "ip": "80.231.139.1", "name": "if-ae-2-2.tcore2.sv8-highbridge.as6453.net", "rtt": 100.737}, {"annotation": null, "asn": null, "ip": "80.231.139.1", "name": "if-ae-2-2.tcore2.sv8-highbridge.as6453.net", "rtt": 100.787}, {"annotation": null, "asn": null, "ip": "80.231.139.1", "name": "if-ae-2-2.tcore2.sv8-highbridge.as6453.net", "rtt": 100.863}]}, {"hop": 6, "probes": [{"annotation": null, "asn": null, "ip": "80.231.139.42", "name": "if-ae-11-2.tcore1.l78-london.as6453.net", "rtt": 94.576}, {"annotation": null, "asn": null, "ip": "80.231.139.42", "name": "if-ae-11-2.tcore1.l78-london.as6453.net", "rtt": 94.647}, {"annotation": null, "asn": null, "ip": "80.231.139.42", "name": "if-ae-11-2.tcore1.l78-london.as6453.net", "rtt": 94.631}]}, {"hop": 7, "probes": [{"annotation": null, "asn": null, "ip": "80.231.130.106", "name": "if-ae-66-2.tcore2.nto-new-york.as6453.net", "rtt": 104.775}, {"annotation": null, "asn": null, "ip": "80.231.130.106", "name": "if-ae-66-2.tcore2.nto-new-york.as6453.net", "rtt": 105.059}, {"annotation": null, "asn": null, "ip": "80.231.130.106", "name": "if-ae-66-2.tcore2.nto-new-york.as6453.net", "rtt": 105.146}]}, {"hop": 8, "probes": [{"annotation": null, "asn": null, "ip": "66.110.96.5", "name": "if-ae-12-2.tcore1.n75-new-york.as6453.net", "rtt": 100.043}, {"annotation": null, "asn": null, "ip": "66.110.96.5", "name": "if-ae-12-2.tcore1.n75-new-york.as6453.net", "rtt": 100.096}, {"annotation": null, "asn": null, "ip": "66.110.96.5", "name": "if-ae-12-2.tcore1.n75-new-york.as6453.net", "rtt": 100.089}]}, {"hop": 9, "probes": [{"annotation": null, "asn": null, "ip": "66.110.96.157", "name": "66.110.96.157", "rtt": 101.514}, {"annotation": null, "asn": null, "ip": "66.110.96.157", "name": "66.110.96.157", "rtt": 101.055}, {"annotation": null, "asn": null, "ip": "66.110.96.157", "name": "66.110.96.157", "rtt": 101.058}]}, {"hop": 10, "probes": [{"annotation": null, "asn": null, "ip": "52.93.31.33", "name": "52.93.31.33", "rtt": 100.489}, {"annotation": null, "asn": null, "ip": "52.93.31.33", "name": "52.93.31.33", "rtt": 100.113}, {"annotation": null, "asn": null, "ip": "52.93.31.33", "name": "52.93.31.33", "rtt": 100.065}]}, {"hop": 11, "probes": [{"annotation": null, "asn": null, "ip": "52.93.4.0", "name": "52.93.4.0", "rtt": 93.575}, {"annotation": null, "asn": null, "ip": "52.93.4.0", "name": "52.93.4.0", "rtt": 93.473}, {"annotation": null, "asn": null, "ip": "52.93.4.0", "name": "52.93.4.0", "rtt": 93.491}]}, {"hop": 12, "probes": []}, {"hop": 13, "probes": [{"annotation": null, "asn": null, "ip": "54.240.229.143", "name": "54.240.229.143", "rtt": 94.307}, {"annotation": null, "asn": null, "ip": "54.240.229.143", "name": "54.240.229.143", "rtt": 94.732}, {"annotation": null, "asn": null, "ip": "54.240.229.143", "name": "54.240.229.143", "rtt": 94.683}]}, {"hop": 14, "probes": []}, {"hop": 15, "probes": []}, {"hop": 16, "probes": []}, {"hop": 17, "probes": []}, {"hop": 18, "probes": []}, {"hop": 19, "probes": []}, {"hop": 20, "probes": []}, {"hop": 21, "probes": []}, {"hop": 22, "probes": []}, {"hop": 23, "probes": []}, {"hop": 24, "probes": []}, {"hop": 25, "probes": [{"annotation": null, "asn": null, "ip": "52.93.28.172", "name": "52.93.28.172", "rtt": 94.27}, {"annotation": null, "asn": null, "ip": "52.93.28.172", "name": "52.93.28.172", "rtt": 94.296}, {"annotation": null, "asn": null, "ip": "52.93.28.172", "name": "52.93.28.172", "rtt": 94.294}]}, {"hop": 26, "probes": []}, {"hop": 27, "probes": []}, {"hop": 28, "probes": []}, {"hop": 29, "probes": []}, {"hop": 30, "probes": []}]} jc-1.17.3/tests/fixtures/generic/traceroute6.out000066400000000000000000000023631415226333200216270ustar00rootroot00000000000000traceroute to alexa.com (52.22.122.82), 30 hops max, 40 byte packets 1 130.185.80.253 (130.185.80.253) 0.374 ms * 0.474 ms 2 94.46.128.26 (94.46.128.26) 0.440 ms 0.457 ms 0.459 ms 3 ix-xe-1-3-0-0.tcore1.pv9-lisbon.as6453.net (80.231.158.49) 0.436 ms 0.436 ms 0.446 ms 4 if-ae-1-3.tcore1.sv8-highbridge.as6453.net (80.231.158.30) 100.300 ms 100.346 ms 100.362 ms 5 if-ae-2-2.tcore2.sv8-highbridge.as6453.net (80.231.139.1) 100.737 ms 100.787 ms 100.863 ms 6 if-ae-11-2.tcore1.l78-london.as6453.net (80.231.139.42) 94.576 ms 94.647 ms 94.631 ms 7 if-ae-66-2.tcore2.nto-new-york.as6453.net (80.231.130.106) 104.775 ms 105.059 ms 105.146 ms 8 if-ae-12-2.tcore1.n75-new-york.as6453.net (66.110.96.5) 100.043 ms 100.096 ms 100.089 ms 9 66.110.96.157 (66.110.96.157) 101.514 ms 101.055 ms 101.058 ms 10 52.93.31.33 (52.93.31.33) 100.489 ms 100.113 ms 100.065 ms 11 52.93.4.0 (52.93.4.0) 93.575 ms 93.473 ms 93.491 ms 12 * * * 13 54.240.229.143 (54.240.229.143) 94.307 ms 94.732 ms 94.683 ms 14 * * * 15 * * * 16 * * * 17 * * * 18 * * * 19 * * * 20 * * * 21 * * * 22 * * * 23 * * * 24 * * * 25 52.93.28.172 (52.93.28.172) 94.270 ms 94.296 ms 94.294 ms 26 * * * 27 * * * 28 * * * 29 * * * 30 * * * jc-1.17.3/tests/fixtures/generic/traceroute7.json000066400000000000000000000045371415226333200217770ustar00rootroot00000000000000{"destination_ip": "181.40.91.83", "destination_name": "paraguay.com", "hops": [{"hop": 1, "probes": [{"annotation": null, "asn": 128742, "ip": "192.168.0.1", "name": "192.168.0.1", "rtt": 9.173}, {"annotation": null, "asn": 128742, "ip": "192.168.0.1", "name": "192.168.0.1", "rtt": 5.49}, {"annotation": null, "asn": 128742, "ip": "192.168.0.1", "name": "192.168.0.1", "rtt": 5.197}]}, {"hop": 2, "probes": []}, {"hop": 3, "probes": [{"annotation": null, "asn": 0, "ip": "192.168.117.58", "name": "192.168.117.58", "rtt": 26.768}, {"annotation": null, "asn": 0, "ip": "192.168.117.58", "name": "192.168.117.58", "rtt": 17.878}, {"annotation": null, "asn": 0, "ip": "192.168.117.58", "name": "192.168.117.58", "rtt": 16.443}]}, {"hop": 4, "probes": [{"annotation": null, "asn": 0, "ip": "192.168.15.1", "name": "192.168.15.1", "rtt": 16.229}, {"annotation": null, "asn": 0, "ip": "192.168.15.1", "name": "192.168.15.1", "rtt": 23.514}, {"annotation": null, "asn": 0, "ip": "192.168.15.1", "name": "192.168.15.1", "rtt": 16.878}]}, {"hop": 5, "probes": [{"annotation": null, "asn": 0, "ip": "91.122.105.27", "name": "91.122.105.27", "rtt": 17.825}, {"annotation": null, "asn": 0, "ip": "91.122.105.27", "name": "91.122.105.27", "rtt": 22.906}, {"annotation": null, "asn": 0, "ip": "91.122.105.27", "name": "91.122.105.27", "rtt": 29.003}]}, {"hop": 6, "probes": [{"annotation": null, "asn": 0, "ip": "94.142.122.45", "name": "94.142.122.45", "rtt": 42.79}, {"annotation": null, "asn": 0, "ip": "94.142.122.45", "name": "94.142.122.45", "rtt": 46.352}, {"annotation": null, "asn": 0, "ip": "94.142.122.44", "name": "94.142.122.44", "rtt": 41.479}]}, {"hop": 7, "probes": [{"annotation": null, "asn": 0, "ip": "94.142.124.46", "name": "94.142.124.46", "rtt": 62.692}, {"annotation": null, "asn": 0, "ip": "94.142.124.46", "name": "94.142.124.46", "rtt": 44.691}, {"annotation": null, "asn": 0, "ip": "5.53.0.153", "name": "5.53.0.153", "rtt": 61.049}]}, {"hop": 8, "probes": [{"annotation": null, "asn": 0, "ip": "181.40.42.30", "name": "pool-30-42-40-181.telecel.com.py", "rtt": 65.148}, {"annotation": null, "asn": 0, "ip": "5.53.0.155", "name": "5.53.0.155", "rtt": 65.096}, {"annotation": null, "asn": 0, "ip": "181.40.42.30", "name": "pool-30-42-40-181.telecel.com.py", "rtt": 65.157}]}, {"hop": 9, "probes": []}, {"hop": 10, "probes": []}, {"hop": 11, "probes": []}, {"hop": 12, "probes": []}]} jc-1.17.3/tests/fixtures/generic/traceroute7.out000066400000000000000000000014571415226333200216330ustar00rootroot00000000000000traceroute to paraguay.com (181.40.91.83), 64 hops max, 52 byte packets 1 [AS128742] 192.168.0.1 (192.168.0.1) 9.173 ms 5.490 ms 5.197 ms 2 * * * 3 [AS0] 192.168.117.58 (192.168.117.58) 26.768 ms 17.878 ms 16.443 ms 4 [AS0] 192.168.15.1 (192.168.15.1) 16.229 ms 23.514 ms 16.878 ms 5 [AS0] 91.122.105.27 (91.122.105.27) 17.825 ms 22.906 ms 29.003 ms 6 [AS0] 94.142.122.45 (94.142.122.45) 42.790 ms 46.352 ms [AS0] 94.142.122.44 (94.142.122.44) 41.479 ms 7 [AS0] 94.142.124.46 (94.142.124.46) 62.692 ms 44.691 ms [AS0] 5.53.0.153 (5.53.0.153) 61.049 ms 8 [AS0] pool-30-42-40-181.telecel.com.py (181.40.42.30) 65.148 ms [AS0] 5.53.0.155 (5.53.0.155) 65.096 ms [AS0] pool-30-42-40-181.telecel.com.py (181.40.42.30) 65.157 ms 9 * * * 10 * * * 11 * * * 12 * * * jc-1.17.3/tests/fixtures/generic/traceroute8.json000066400000000000000000000067301415226333200217750ustar00rootroot00000000000000{"destination_ip": "2606:4700:3030::6812:3e4e", "destination_name": "baeldung.com", "hops": [{"hop": 1, "probes": [{"annotation": null, "asn": null, "ip": "2001:2e8:665:0:2:2:0:1", "name": "2001:2e8:665:0:2:2:0:1", "rtt": 0.083}, {"annotation": null, "asn": null, "ip": "2001:2e8:665:0:2:2:0:1", "name": "2001:2e8:665:0:2:2:0:1", "rtt": 0.048}, {"annotation": null, "asn": null, "ip": "2001:2e8:665:0:2:2:0:1", "name": "2001:2e8:665:0:2:2:0:1", "rtt": 0.044}]}, {"hop": 2, "probes": [{"annotation": null, "asn": null, "ip": "2001:2e8:22:204::2", "name": "2001:2e8:22:204::2", "rtt": 25.128}, {"annotation": null, "asn": null, "ip": "2001:2e8:22:204::2", "name": "2001:2e8:22:204::2", "rtt": 25.047}, {"annotation": null, "asn": null, "ip": "2001:2e8:22:204::2", "name": "2001:2e8:22:204::2", "rtt": 25.025}]}, {"hop": 3, "probes": [{"annotation": null, "asn": null, "ip": "2001:2e8:20::22:11", "name": "2001:2e8:20::22:11", "rtt": 1.106}, {"annotation": null, "asn": null, "ip": "2001:2e8:20::22:11", "name": "2001:2e8:20::22:11", "rtt": 25.83}, {"annotation": null, "asn": null, "ip": "2001:2e8:20::22:11", "name": "2001:2e8:20::22:11", "rtt": 1.007}]}, {"hop": 4, "probes": [{"annotation": null, "asn": null, "ip": "2001:218:2000:5000::305", "name": "xe-0-0-14-1.a02.tokyjp05.jp.bb.gin.ntt.net", "rtt": 0.908}, {"annotation": null, "asn": null, "ip": "2001:218:2000:5000::305", "name": "xe-0-0-14-1.a02.tokyjp05.jp.bb.gin.ntt.net", "rtt": 1.197}, {"annotation": null, "asn": null, "ip": "2001:218:2000:5000::305", "name": "xe-0-0-14-1.a02.tokyjp05.jp.bb.gin.ntt.net", "rtt": 1.097}]}, {"hop": 5, "probes": [{"annotation": null, "asn": null, "ip": "2001:218:0:2000::59", "name": "ae-25.r02.tokyjp05.jp.bb.gin.ntt.net", "rtt": 1.515}, {"annotation": null, "asn": null, "ip": "2001:218:0:2000::59", "name": "ae-25.r02.tokyjp05.jp.bb.gin.ntt.net", "rtt": 1.744}, {"annotation": null, "asn": null, "ip": "2001:218:0:2000::59", "name": "ae-25.r02.tokyjp05.jp.bb.gin.ntt.net", "rtt": 1.785}]}, {"hop": 6, "probes": [{"annotation": null, "asn": null, "ip": "2001:218:0:2000::11a", "name": "ae-4.r30.tokyjp05.jp.bb.gin.ntt.net", "rtt": 1.466}, {"annotation": null, "asn": null, "ip": "2001:218:0:2000::11a", "name": "ae-4.r30.tokyjp05.jp.bb.gin.ntt.net", "rtt": 1.538}, {"annotation": null, "asn": null, "ip": "2001:218:0:2000::11a", "name": "ae-4.r30.tokyjp05.jp.bb.gin.ntt.net", "rtt": 1.337}]}, {"hop": 7, "probes": [{"annotation": null, "asn": null, "ip": "2001:218:0:2000::2d7", "name": "ae-3.r00.tokyjp08.jp.bb.gin.ntt.net", "rtt": 1.857}, {"annotation": null, "asn": null, "ip": "2001:218:0:2000::2d7", "name": "ae-3.r00.tokyjp08.jp.bb.gin.ntt.net", "rtt": 1.839}, {"annotation": null, "asn": null, "ip": "2001:218:0:2000::2d7", "name": "ae-3.r00.tokyjp08.jp.bb.gin.ntt.net", "rtt": 1.901}]}, {"hop": 8, "probes": [{"annotation": null, "asn": null, "ip": "2001:218:2000:5000::26", "name": "as7515.ntt.net", "rtt": 2.717}, {"annotation": null, "asn": null, "ip": "2001:218:2000:5000::26", "name": "as7515.ntt.net", "rtt": 2.419}, {"annotation": null, "asn": null, "ip": "2001:218:2000:5000::26", "name": "as7515.ntt.net", "rtt": 2.325}]}, {"hop": 9, "probes": [{"annotation": null, "asn": null, "ip": "2400:cb00:22:1024::a29e:759c", "name": "2400:cb00:22:1024::a29e:759c", "rtt": 2.115}, {"annotation": null, "asn": null, "ip": "2400:cb00:22:1024::a29e:759c", "name": "2400:cb00:22:1024::a29e:759c", "rtt": 1.985}, {"annotation": null, "asn": null, "ip": "2400:cb00:22:1024::a29e:759c", "name": "2400:cb00:22:1024::a29e:759c", "rtt": 2.272}]}]} jc-1.17.3/tests/fixtures/generic/traceroute8.out000066400000000000000000000020231415226333200216220ustar00rootroot00000000000000traceroute to baeldung.com (2606:4700:3030::6812:3e4e), 30 hops max, 80 byte packets 1 2001:2e8:665:0:2:2:0:1 (2001:2e8:665:0:2:2:0:1) 0.083 ms 0.048 ms 0.044 ms 2 2001:2e8:22:204::2 (2001:2e8:22:204::2) 25.128 ms 25.047 ms 25.025 ms 3 2001:2e8:20::22:11 (2001:2e8:20::22:11) 1.106 ms 25.830 ms 1.007 ms 4 xe-0-0-14-1.a02.tokyjp05.jp.bb.gin.ntt.net (2001:218:2000:5000::305) 0.908 ms 1.197 ms 1.097 ms 5 ae-25.r02.tokyjp05.jp.bb.gin.ntt.net (2001:218:0:2000::59) 1.515 ms 1.744 ms 1.785 ms 6 ae-4.r30.tokyjp05.jp.bb.gin.ntt.net (2001:218:0:2000::11a) 1.466 ms 1.538 ms ae-4.r30.tokyjp05.jp.bb.gin.ntt.net (2001:218:0:2000::11a) 1.337 ms 7 ae-3.r00.tokyjp08.jp.bb.gin.ntt.net (2001:218:0:2000::2d7) 1.857 ms 1.839 ms ae-3.r00.tokyjp08.jp.bb.gin.ntt.net (2001:218:0:2000::2d7) 1.901 ms 8 as7515.ntt.net (2001:218:2000:5000::26) 2.717 ms 2.419 ms 2.325 ms 9 2400:cb00:22:1024::a29e:759c (2400:cb00:22:1024::a29e:759c) 2.115 ms 1.985 ms 2400:cb00:22:1024::a29e:759f (2400:cb00:22:1024::a29e:759f) 2.272 ms jc-1.17.3/tests/fixtures/generic/ufw-appinfo-msn.json000066400000000000000000000004671415226333200225570ustar00rootroot00000000000000[{"profile":"MSN","title":"MSN Chat","description":"MSN chat protocol (with file transfer and voice)","tcp_list":[1863,6901],"udp_list":[1863,6901],"tcp_ranges":[{"start":6891,"end":6900}],"normalized_tcp_list":[1863,6901],"normalized_tcp_ranges":[{"start":6891,"end":6900}],"normalized_udp_list":[1863,6901]}] jc-1.17.3/tests/fixtures/generic/ufw-appinfo-msn.out000066400000000000000000000002021415226333200224000ustar00rootroot00000000000000Profile: MSN Title: MSN Chat Description: MSN chat protocol (with file transfer and voice) Ports: 1863 6891:6900/tcp 6901 jc-1.17.3/tests/fixtures/generic/ufw-appinfo-test.json000066400000000000000000000007131415226333200227330ustar00rootroot00000000000000[{"profile":"TEST","title":"My test app","description":"a longer description of the test app here.","tcp_list":[1,2,3,4,5,6,7,8,9,10,9,8,7,30,53],"tcp_ranges":[{"start":80,"end":90},{"start":8080,"end":8090}],"udp_ranges":[{"start":50,"end":51},{"start":40,"end":60}],"udp_list":[53],"normalized_tcp_list":[1,2,3,4,5,6,7,8,9,10,30,53],"normalized_tcp_ranges":[{"start":80,"end":90},{"start":8080,"end":8090}],"normalized_udp_ranges":[{"start":40,"end":60}]}] jc-1.17.3/tests/fixtures/generic/ufw-appinfo-test.out000066400000000000000000000002551415226333200225720ustar00rootroot00000000000000Profile: TEST Title: My test app Description: a longer description of the test app here. Ports: 1,2,3,4,5,6,7,8,9,10,9,8,7,30,80:90,8080:8090/tcp 50:51,40:60/udp 53 jc-1.17.3/tests/fixtures/generic/ufw-appinfo-test2.json000066400000000000000000000005211415226333200230120ustar00rootroot00000000000000[{"profile":"TEST2","title":"My test app2","description":"a longer description of the test app here.","tcp_ranges":[{"start":0,"end":65535}],"udp_ranges":[{"start":50,"end":51}],"tcp_list":[53],"udp_list":[53],"normalized_tcp_ranges":[{"start":0,"end":65535}],"normalized_udp_list":[53],"normalized_udp_ranges":[{"start":50,"end":51}]}] jc-1.17.3/tests/fixtures/generic/ufw-appinfo-test2.out000066400000000000000000000001771415226333200226570ustar00rootroot00000000000000Profile: TEST2 Title: My test app2 Description: a longer description of the test app here. Ports: any/tcp 50:51/udp 53 jc-1.17.3/tests/fixtures/generic/ufw-appinfo-test3.json000066400000000000000000000005351415226333200230200ustar00rootroot00000000000000[{"profile":"TEST3","title":"My test app3","description":"test overlapping ports","tcp_list":[80,83,80,53],"tcp_ranges":[{"start":70,"end":90}],"udp_ranges":[{"start":50,"end":51}],"udp_list":[53],"normalized_tcp_list":[53],"normalized_tcp_ranges":[{"start":70,"end":90}],"normalized_udp_list":[53],"normalized_udp_ranges":[{"start":50,"end":51}]}] jc-1.17.3/tests/fixtures/generic/ufw-appinfo-test3.out000066400000000000000000000001661415226333200226560ustar00rootroot00000000000000Profile: TEST3 Title: My test app3 Description: test overlapping ports Ports: 80,83,80,70:90/tcp 50:51/udp 53 jc-1.17.3/tests/fixtures/generic/ufw-inactive.json000066400000000000000000000000411415226333200221160ustar00rootroot00000000000000{"status":"inactive","rules":[]} jc-1.17.3/tests/fixtures/generic/ufw-inactive.out000066400000000000000000000000211415226333200217520ustar00rootroot00000000000000Status: inactive jc-1.17.3/tests/fixtures/generic/ufw-numbered.json000066400000000000000000000126341415226333200221300ustar00rootroot00000000000000{"status":"active","logging":"on","logging_level":"low","default":"deny (incoming), allow (outgoing), deny (routed)","new_profiles":"skip","rules":[{"action":"ALLOW","action_direction":"IN","index":1,"network_protocol":"ipv4","to_interface":"any","to_transport":"tcp","to_service":null,"to_ports":[22],"to_ip":"0.0.0.0","to_ip_prefix":0,"comment":null,"from_ip":"0.0.0.0","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"OUT","index":2,"network_protocol":"ipv6","to_interface":"any","to_transport":"tcp","to_service":null,"to_ports":[22],"to_ip":"::","to_ip_prefix":0,"comment":null,"from_ip":"::","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"DENY","action_direction":null,"index":3,"network_protocol":"ipv4","to_interface":"any","to_transport":"tcp","to_service":null,"to_ports":[443],"to_ip":"0.0.0.0","to_ip_prefix":0,"comment":null,"from_interface":"any","from_transport":"any","from_ip":"192.168.0.1","from_ip_prefix":32,"from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"DENY","action_direction":"OUT","index":4,"network_protocol":"ipv4","to_interface":"any","to_transport":"udp","to_service":null,"to_ports":[443],"to_ip":"0.0.0.0","to_ip_prefix":0,"comment":null,"from_interface":"any","from_transport":"any","from_ip":"192.168.0.7","from_ip_prefix":32,"from_service":null,"from_port_ranges":[{"start":8080,"end":8081}]},{"action":"ALLOW","action_direction":null,"index":5,"network_protocol":"ipv4","to_interface":"any","to_transport":"tcp","to_service":null,"to_ports":[22],"to_ip":"0.0.0.0","to_ip_prefix":0,"comment":null,"from_interface":"any","from_transport":"any","from_ip":"192.168.0.0","from_ip_prefix":24,"from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":null,"index":6,"network_protocol":"ipv4","to_interface":"any","to_transport":"udp","to_service":null,"to_ports":[22],"to_ip":"0.0.0.0","to_ip_prefix":0,"comment":null,"from_interface":"en0","from_transport":"any","from_ip":"192.168.0.0","from_ip_prefix":24,"from_service":null,"from_port_ranges":[{"start":8080,"end":8081}]},{"action":"ALLOW","action_direction":"IN","index":7,"network_protocol":"ipv6","to_interface":"any","to_transport":"tcp","to_service":null,"to_ports":[22],"to_ip":"::","to_ip_prefix":0,"comment":null,"from_interface":"en1","from_transport":"any","from_ip":"2405:204:7449:49fc:f09a:6f4a:bc93:1955","from_ip_prefix":64,"from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":8,"network_protocol":"ipv4","to_interface":"any","to_transport":"any","to_service":null,"to_ports":[80],"to_ip":"0.0.0.0","to_ip_prefix":0,"comment":null,"from_ip":"0.0.0.0","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":9,"network_protocol":"ipv6","to_interface":"any","to_transport":"any","to_service":null,"to_ports":[8080],"to_ip":"::","to_ip_prefix":0,"comment":null,"from_ip":"::","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":10,"network_protocol":"ipv4","to_interface":"any","to_transport":null,"to_service":"Apache Full","to_ip":"0.0.0.0","to_ip_prefix":0,"comment":null,"from_ip":"0.0.0.0","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":11,"network_protocol":"ipv6","to_interface":"any","to_transport":null,"to_service":"Apache Full","to_ip":"::","to_ip_prefix":0,"comment":null,"from_ip":"::","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"DENY","action_direction":"IN","index":12,"network_protocol":"ipv6","to_interface":"any","to_transport":null,"to_service":"OpenSSH","to_ip":"::","to_ip_prefix":0,"comment":null,"from_ip":"::","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":null,"index":13,"network_protocol":"ipv4","to_interface":"enp34s0","to_transport":"any","to_ip":"10.10.10.10","to_ip_prefix":32,"to_service":null,"to_ports":[8080],"comment":null,"from_interface":"any","from_transport":"any","from_ip":"127.0.0.1","from_ip_prefix":32,"from_service":null,"from_ports":[8000]},{"action":"ALLOW","action_direction":null,"index":14,"network_protocol":"ipv6","to_interface":"any","to_transport":"tcp","to_service":null,"to_port_ranges":[{"start":50200,"end":50300}],"to_ip":"::","to_ip_prefix":0,"comment":null,"from_ip":"::","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":15,"network_protocol":"ipv6","to_ip":"::","to_ip_prefix":0,"to_interface":"any","to_transport":"any","to_port_ranges":[{"start":0,"end":65535}],"to_service":null,"comment":null,"from_interface":"any","from_transport":"any","from_ip":"2405:204:7449:49fc:f09a:6f4a:bc93:1955","from_ip_prefix":128,"from_port_ranges":[{"start":0,"end":65535}],"from_service":null}]} jc-1.17.3/tests/fixtures/generic/ufw-numbered.out000066400000000000000000000021621415226333200217610ustar00rootroot00000000000000Status: active Logging: on (low) Default: deny (incoming), allow (outgoing), deny (routed) New profiles: skip To Action From -- ------ ---- [ 1] 22/tcp ALLOW IN Anywhere [ 2] 22/tcp (v6) ALLOW OUT Anywhere (v6) [ 3] 443/tcp DENY 192.168.0.1 [ 4] 443/udp DENY OUT 192.168.0.7 8080:8081 [ 5] 22/tcp ALLOW 192.168.0.0/24 [ 6] 22/udp ALLOW 192.168.0.0/24 8080:8081 on en0 [ 7] 22/tcp (v6) ALLOW IN 2405:204:7449:49fc:f09a:6f4a:bc93:1955/64 on en1 [ 8] 80 ALLOW IN Anywhere [ 9] 8080 (v6) ALLOW IN Anywhere (v6) [10] Apache Full ALLOW IN Anywhere [11] Apache Full (v6) ALLOW IN Anywhere (v6) [12] OpenSSH (v6) DENY IN Anywhere (v6) [13] 10.10.10.10 8080 on enp34s0 ALLOW 127.0.0.1 8000 [14] 50200:50300/tcp (v6) ALLOW Anywhere (v6) [15] Anywhere (v6) ALLOW IN 2405:204:7449:49fc:f09a:6f4a:bc93:1955 jc-1.17.3/tests/fixtures/generic/ufw-numbered2.json000066400000000000000000000123061415226333200222060ustar00rootroot00000000000000{"status":"active","rules":[{"action":"ALLOW","action_direction":"IN","index":1,"network_protocol":"ipv4","to_interface":"any","to_transport":null,"to_ip":"224.0.0.251","to_ip_prefix":32,"to_service":"mDNS","comment":null,"from_ip":"0.0.0.0","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":2,"network_protocol":"ipv4","to_ip":"0.0.0.0","to_ip_prefix":0,"to_interface":"any","to_transport":"any","to_port_ranges":[{"start":0,"end":65535}],"to_service":null,"comment":null,"from_interface":"any","from_transport":"any","from_ip":"123.123.123.123","from_ip_prefix":32,"from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":3,"network_protocol":"ipv4","to_interface":"any","to_transport":"any","to_service":null,"to_ports":[25],"to_ip":"0.0.0.0","to_ip_prefix":0,"comment":null,"from_ip":"0.0.0.0","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":4,"network_protocol":"ipv4","to_interface":"any","to_transport":"any","to_service":null,"to_ports":[80],"to_ip":"0.0.0.0","to_ip_prefix":0,"comment":null,"from_ip":"0.0.0.0","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":5,"network_protocol":"ipv4","to_interface":"any","to_transport":"any","to_service":null,"to_ports":[443],"to_ip":"0.0.0.0","to_ip_prefix":0,"comment":null,"from_ip":"0.0.0.0","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":6,"network_protocol":"ipv4","to_interface":"any","to_transport":"any","to_service":null,"to_ports":[465],"to_ip":"0.0.0.0","to_ip_prefix":0,"comment":null,"from_ip":"0.0.0.0","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":7,"network_protocol":"ipv4","to_interface":"any","to_transport":"any","to_service":null,"to_ports":[993],"to_ip":"0.0.0.0","to_ip_prefix":0,"comment":null,"from_ip":"0.0.0.0","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":8,"network_protocol":"ipv4","to_interface":"any","to_transport":"any","to_service":null,"to_ports":[995],"to_ip":"0.0.0.0","to_ip_prefix":0,"comment":null,"from_ip":"0.0.0.0","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":9,"network_protocol":"ipv6","to_interface":"any","to_transport":null,"to_ip":"ff02::fb","to_ip_prefix":128,"to_service":"mDNS","comment":null,"from_ip":"::","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":10,"network_protocol":"ipv6","to_interface":"any","to_transport":"any","to_service":null,"to_ports":[25],"to_ip":"::","to_ip_prefix":0,"comment":null,"from_ip":"::","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":11,"network_protocol":"ipv6","to_interface":"any","to_transport":"any","to_service":null,"to_ports":[80],"to_ip":"::","to_ip_prefix":0,"comment":null,"from_ip":"::","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":12,"network_protocol":"ipv6","to_interface":"any","to_transport":"any","to_service":null,"to_ports":[443],"to_ip":"::","to_ip_prefix":0,"comment":null,"from_ip":"::","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":13,"network_protocol":"ipv6","to_interface":"any","to_transport":"any","to_service":null,"to_ports":[465],"to_ip":"::","to_ip_prefix":0,"comment":null,"from_ip":"::","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":14,"network_protocol":"ipv6","to_interface":"any","to_transport":"any","to_service":null,"to_ports":[993],"to_ip":"::","to_ip_prefix":0,"comment":null,"from_ip":"::","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":15,"network_protocol":"ipv6","to_interface":"any","to_transport":"any","to_service":null,"to_ports":[995],"to_ip":"::","to_ip_prefix":0,"comment":null,"from_ip":"::","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null}]} jc-1.17.3/tests/fixtures/generic/ufw-numbered2.out000066400000000000000000000022211415226333200220370ustar00rootroot00000000000000Status: active To Action From -- ------ ---- [ 1] 224.0.0.251 mDNS ALLOW IN Anywhere [ 2] Anywhere ALLOW IN 123.123.123.123 [ 3] 25 ALLOW IN Anywhere [ 4] 80 ALLOW IN Anywhere [ 5] 443 ALLOW IN Anywhere [ 6] 465 ALLOW IN Anywhere [ 7] 993 ALLOW IN Anywhere [ 8] 995 ALLOW IN Anywhere [ 9] ff02::fb mDNS ALLOW IN Anywhere (v6) [10] 25 (v6) ALLOW IN Anywhere (v6) [11] 80 (v6) ALLOW IN Anywhere (v6) [12] 443 (v6) ALLOW IN Anywhere (v6) [13] 465 (v6) ALLOW IN Anywhere (v6) [14] 993 (v6) ALLOW IN Anywhere (v6) [15] 995 (v6) ALLOW IN Anywhere (v6) jc-1.17.3/tests/fixtures/generic/ufw.json000066400000000000000000000127671415226333200203400ustar00rootroot00000000000000{"status":"active","logging":"on","logging_level":"low","default":"deny (incoming), allow (outgoing), deny (routed)","new_profiles":"skip","rules":[{"action":"ALLOW","action_direction":"IN","index":null,"network_protocol":"ipv4","to_interface":"any","to_transport":"tcp","to_service":null,"to_ports":[22],"to_ip":"0.0.0.0","to_ip_prefix":0,"comment":null,"from_ip":"0.0.0.0","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"OUT","index":null,"network_protocol":"ipv6","to_interface":"any","to_transport":"tcp","to_service":null,"to_ports":[22],"to_ip":"::","to_ip_prefix":0,"comment":null,"from_ip":"::","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"DENY","action_direction":null,"index":null,"network_protocol":"ipv4","to_interface":"any","to_transport":"tcp","to_service":null,"to_ports":[443],"to_ip":"0.0.0.0","to_ip_prefix":0,"comment":"nice comment","from_interface":"any","from_transport":"any","from_ip":"192.168.0.1","from_ip_prefix":32,"from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"DENY","action_direction":"OUT","index":null,"network_protocol":"ipv4","to_interface":"any","to_transport":"udp","to_service":null,"to_ports":[443],"to_ip":"0.0.0.0","to_ip_prefix":0,"comment":null,"from_interface":"any","from_transport":"any","from_ip":"192.168.0.7","from_ip_prefix":32,"from_service":null,"from_port_ranges":[{"start":8080,"end":8081}]},{"action":"ALLOW","action_direction":null,"index":null,"network_protocol":"ipv4","to_interface":"any","to_transport":"tcp","to_service":null,"to_ports":[22],"to_ip":"0.0.0.0","to_ip_prefix":0,"comment":null,"from_interface":"any","from_transport":"any","from_ip":"192.168.0.0","from_ip_prefix":24,"from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":null,"index":null,"network_protocol":"ipv4","to_interface":"any","to_transport":"udp","to_service":null,"to_ports":[22],"to_ip":"0.0.0.0","to_ip_prefix":0,"comment":null,"from_interface":"en0","from_transport":"any","from_ip":"192.168.0.0","from_ip_prefix":24,"from_service":null,"from_port_ranges":[{"start":8080,"end":8081}]},{"action":"ALLOW","action_direction":"FWD","index":null,"network_protocol":"ipv6","to_interface":"any","to_transport":"tcp","to_service":null,"to_ports":[22],"to_ip":"::","to_ip_prefix":0,"comment":"commenting this rule","from_interface":"en1","from_transport":"any","from_ip":"2405:204:7449:49fc:f09a:6f4a:bc93:1955","from_ip_prefix":64,"from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":null,"network_protocol":"ipv4","to_interface":"any","to_transport":"any","to_service":null,"to_ports":[80],"to_ip":"0.0.0.0","to_ip_prefix":0,"comment":null,"from_ip":"0.0.0.0","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"REJECT","action_direction":"IN","index":null,"network_protocol":"ipv6","to_interface":"any","to_transport":"any","to_service":null,"to_ports":[8080],"to_ip":"::","to_ip_prefix":0,"comment":null,"from_ip":"::","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":null,"network_protocol":"ipv4","to_interface":"any","to_transport":null,"to_service":"Apache Full","to_ip":"0.0.0.0","to_ip_prefix":0,"comment":"a comment","from_ip":"0.0.0.0","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":null,"network_protocol":"ipv6","to_interface":"any","to_transport":null,"to_service":"Apache Full","to_ip":"::","to_ip_prefix":0,"comment":null,"from_ip":"::","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"DENY","action_direction":"IN","index":null,"network_protocol":"ipv6","to_interface":"any","to_transport":null,"to_service":"OpenSSH","to_ip":"::","to_ip_prefix":0,"comment":null,"from_ip":"::","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":null,"index":null,"network_protocol":"ipv4","to_interface":"enp34s0","to_transport":"any","to_ip":"10.10.10.10","to_ip_prefix":32,"to_service":null,"to_ports":[8080],"comment":null,"from_interface":"any","from_transport":"any","from_ip":"127.0.0.1","from_ip_prefix":32,"from_service":null,"from_ports":[8000]},{"action":"DENY","action_direction":"FWD","index":null,"network_protocol":"ipv6","to_interface":"any","to_transport":"tcp","to_service":null,"to_port_ranges":[{"start":50200,"end":50300}],"to_ip":"::","to_ip_prefix":0,"comment":null,"from_ip":"::","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"LIMIT","action_direction":null,"index":null,"network_protocol":"ipv6","to_ip":"::","to_ip_prefix":0,"to_interface":"any","to_transport":"any","to_port_ranges":[{"start":0,"end":65535}],"to_service":null,"comment":"this is a comment","from_interface":"any","from_transport":"any","from_ip":"2405:204:7449:49fc:f09a:6f4a:bc93:1955","from_ip_prefix":128,"from_port_ranges":[{"start":0,"end":65535}],"from_service":null}]} jc-1.17.3/tests/fixtures/generic/ufw.out000066400000000000000000000021701415226333200201610ustar00rootroot00000000000000Status: active Logging: on (low) Default: deny (incoming), allow (outgoing), deny (routed) New profiles: skip To Action From -- ------ ---- 22/tcp ALLOW IN Anywhere 22/tcp (v6) ALLOW OUT Anywhere (v6) 443/tcp DENY 192.168.0.1 # nice comment 443/udp DENY OUT 192.168.0.7 8080:8081 22/tcp ALLOW 192.168.0.0/24 22/udp ALLOW 192.168.0.0/24 8080:8081 on en0 22/tcp (v6) ALLOW FWD 2405:204:7449:49fc:f09a:6f4a:bc93:1955/64 on en1 #commenting this rule 80 ALLOW IN Anywhere 8080 (v6) REJECT IN Anywhere (v6) Apache Full ALLOW IN Anywhere # a comment Apache Full (v6) ALLOW IN Anywhere (v6) OpenSSH (v6) DENY IN Anywhere (v6) 10.10.10.10 8080 on enp34s0 ALLOW 127.0.0.1 8000 50200:50300/tcp (v6) DENY FWD Anywhere (v6) Anywhere (v6) LIMIT 2405:204:7449:49fc:f09a:6f4a:bc93:1955 # this is a comment jc-1.17.3/tests/fixtures/generic/uname-a-different-proc.json000066400000000000000000000003511415226333200237510ustar00rootroot00000000000000{"kernel_name":"Linux","node_name":"mymachine","kernel_release":"2.6.18-194.e15PAE","operating_system":"GNU/Linux","processor":"i386","hardware_platform":"i686","machine":"i686","kernel_version":"#1 SMP Fri Apr 2 15:37:44 EDT 2010"} jc-1.17.3/tests/fixtures/generic/uname-a-different-proc.out000066400000000000000000000001361415226333200236100ustar00rootroot00000000000000Linux mymachine 2.6.18-194.e15PAE #1 SMP Fri Apr 2 15:37:44 EDT 2010 i686 i686 i386 GNU/Linux jc-1.17.3/tests/fixtures/generic/uname-a.json000066400000000000000000000003711415226333200210460ustar00rootroot00000000000000{"kernel_name":"Linux","node_name":"host.example.com","kernel_release":"4.19.0-17-amd64","operating_system":"GNU/Linux","processor":"unknown","hardware_platform":"unknown","machine":"x86_64","kernel_version":"#1 SMP Debian 4.19.194-3 (2021-07-18)"} jc-1.17.3/tests/fixtures/generic/uname-a.out000066400000000000000000000001371415226333200207040ustar00rootroot00000000000000Linux host.example.com 4.19.0-17-amd64 #1 SMP Debian 4.19.194-3 (2021-07-18) x86_64 GNU/Linux jc-1.17.3/tests/fixtures/generic/upower-i-c-locale.json000066400000000000000000000025311415226333200227470ustar00rootroot00000000000000[{"native_path": "/sys/devices/LNXSYSTM:00/device:00/PNP0C0A:00/power_supply/BAT0", "vendor": "NOTEBOOK", "model": "BAT", "serial": "0001", "power_supply": true, "updated": "Thu Feb 9 18:42:15 2012", "has_history": true, "has_statistics": true, "detail": {"type": "battery", "present": true, "rechargeable": true, "state": "charging", "energy": 22.3998, "energy_empty": 0.0, "energy_full": 52.6473, "energy_full_design": 62.16, "energy_rate": 31.6905, "voltage": 12.191, "time_to_full": 57.3, "percentage": 42.5469, "capacity": 84.6964, "technology": "lithium-ion", "energy_unit": "Wh", "energy_empty_unit": "Wh", "energy_full_unit": "Wh", "energy_full_design_unit": "Wh", "energy_rate_unit": "W", "voltage_unit": "V", "time_to_full_unit": "minutes"}, "history_charge": [{"time": 1328809335, "percent_charged": 42.547, "status": "charging"}, {"time": 1328809305, "percent_charged": 42.02, "status": "charging"}, {"time": 1328809275, "percent_charged": 41.472, "status": "charging"}, {"time": 1328809245, "percent_charged": 41.008, "status": "charging"}], "history_rate": [{"time": 1328809335, "percent_charged": 31.691, "status": "charging"}, {"time": 1328809305, "percent_charged": 32.323, "status": "charging"}, {"time": 1328809275, "percent_charged": 33.133, "status": "charging"}], "updated_seconds_ago": 1, "updated_epoch": 1328841735, "updated_epoch_utc": null}] jc-1.17.3/tests/fixtures/generic/upower-i-c-locale.out000066400000000000000000000020271415226333200226050ustar00rootroot00000000000000 native-path: /sys/devices/LNXSYSTM:00/device:00/PNP0C0A:00/power_supply/BAT0 vendor: NOTEBOOK model: BAT serial: 0001 power supply: yes updated: Thu Feb 9 18:42:15 2012 (1 seconds ago) has history: yes has statistics: yes battery present: yes rechargeable: yes state: charging energy: 22.3998 Wh energy-empty: 0 Wh energy-full: 52.6473 Wh energy-full-design: 62.16 Wh energy-rate: 31.6905 W voltage: 12.191 V time to full: 57.3 minutes percentage: 42.5469% capacity: 84.6964% technology: lithium-ion History (charge): 1328809335 42.547 charging 1328809305 42.020 charging 1328809275 41.472 charging 1328809245 41.008 charging History (rate): 1328809335 31.691 charging 1328809305 32.323 charging 1328809275 33.133 charging jc-1.17.3/tests/fixtures/generic/upower-i-non-utc.json000066400000000000000000000014671415226333200226620ustar00rootroot00000000000000[{"native_path": "BAT0", "vendor": "Samsung SDI", "model": "DELL 7XFJJA2", "serial": "4448", "power_supply": true, "updated": "Tuesday 01 October 2019 12:50:41 PM IST", "has_history": true, "has_statistics": true, "detail": {"type": "battery", "present": true, "rechargeable": true, "state": "fully-charged", "warning_level": null, "energy": 33.4443, "energy_empty": 0.0, "energy_full": 33.4443, "energy_full_design": 48.84, "energy_rate": 0.0111, "voltage": 12.446, "percentage": 100.0, "capacity": 68.4773, "technology": "lithium-ion", "icon_name": "battery-full-charged-symbolic", "energy_unit": "Wh", "energy_empty_unit": "Wh", "energy_full_unit": "Wh", "energy_full_design_unit": "Wh", "energy_rate_unit": "W", "voltage_unit": "V"}, "updated_seconds_ago": 101, "updated_epoch": 1569959441, "updated_epoch_utc": null}] jc-1.17.3/tests/fixtures/generic/upower-i-non-utc.out000066400000000000000000000014341415226333200225120ustar00rootroot00000000000000 native-path: BAT0 vendor: Samsung SDI model: DELL 7XFJJA2 serial: 4448 power supply: yes updated: Tuesday 01 October 2019 12:50:41 PM IST (101 seconds ago) has history: yes has statistics: yes battery present: yes rechargeable: yes state: fully-charged warning-level: none energy: 33.4443 Wh energy-empty: 0 Wh energy-full: 33.4443 Wh energy-full-design: 48.84 Wh energy-rate: 0.0111 W voltage: 12.446 V percentage: 100% capacity: 68.4773% technology: lithium-ion icon-name: 'battery-full-charged-symbolic' jc-1.17.3/tests/fixtures/generic/upower-i-utc.json000066400000000000000000000014751415226333200220710ustar00rootroot00000000000000[{"native_path": "BAT0", "vendor": "Samsung SDI", "model": "DELL 7XFJJA2", "serial": "4448", "power_supply": true, "updated": "Tuesday 01 October 2019 12:50:41 PM UTC", "has_history": true, "has_statistics": true, "detail": {"type": "battery", "present": true, "rechargeable": true, "state": "fully-charged", "warning_level": null, "energy": 33.4443, "energy_empty": 0.0, "energy_full": 33.4443, "energy_full_design": 48.84, "energy_rate": 0.0111, "voltage": 12.446, "percentage": 100.0, "capacity": 68.4773, "technology": "lithium-ion", "icon_name": "battery-full-charged-symbolic", "energy_unit": "Wh", "energy_empty_unit": "Wh", "energy_full_unit": "Wh", "energy_full_design_unit": "Wh", "energy_rate_unit": "W", "voltage_unit": "V"}, "updated_seconds_ago": 101, "updated_epoch": 1569959441, "updated_epoch_utc": 1569934241}] jc-1.17.3/tests/fixtures/generic/upower-i-utc.out000066400000000000000000000014341415226333200217220ustar00rootroot00000000000000 native-path: BAT0 vendor: Samsung SDI model: DELL 7XFJJA2 serial: 4448 power supply: yes updated: Tuesday 01 October 2019 12:50:41 PM UTC (101 seconds ago) has history: yes has statistics: yes battery present: yes rechargeable: yes state: fully-charged warning-level: none energy: 33.4443 Wh energy-empty: 0 Wh energy-full: 33.4443 Wh energy-full-design: 48.84 Wh energy-rate: 0.0111 W voltage: 12.446 V percentage: 100% capacity: 68.4773% technology: lithium-ion icon-name: 'battery-full-charged-symbolic' jc-1.17.3/tests/fixtures/generic/xml-cd_catalog.json000066400000000000000000000063361415226333200224100ustar00rootroot00000000000000{"CATALOG": {"CD": [{"TITLE": "Empire Burlesque", "ARTIST": "Bob Dylan", "COUNTRY": "USA", "COMPANY": "Columbia", "PRICE": "10.90", "YEAR": "1985"}, {"TITLE": "Hide your heart", "ARTIST": "Bonnie Tyler", "COUNTRY": "UK", "COMPANY": "CBS Records", "PRICE": "9.90", "YEAR": "1988"}, {"TITLE": "Greatest Hits", "ARTIST": "Dolly Parton", "COUNTRY": "USA", "COMPANY": "RCA", "PRICE": "9.90", "YEAR": "1982"}, {"TITLE": "Still got the blues", "ARTIST": "Gary Moore", "COUNTRY": "UK", "COMPANY": "Virgin records", "PRICE": "10.20", "YEAR": "1990"}, {"TITLE": "Eros", "ARTIST": "Eros Ramazzotti", "COUNTRY": "EU", "COMPANY": "BMG", "PRICE": "9.90", "YEAR": "1997"}, {"TITLE": "One night only", "ARTIST": "Bee Gees", "COUNTRY": "UK", "COMPANY": "Polydor", "PRICE": "10.90", "YEAR": "1998"}, {"TITLE": "Sylvias Mother", "ARTIST": "Dr.Hook", "COUNTRY": "UK", "COMPANY": "CBS", "PRICE": "8.10", "YEAR": "1973"}, {"TITLE": "Maggie May", "ARTIST": "Rod Stewart", "COUNTRY": "UK", "COMPANY": "Pickwick", "PRICE": "8.50", "YEAR": "1990"}, {"TITLE": "Romanza", "ARTIST": "Andrea Bocelli", "COUNTRY": "EU", "COMPANY": "Polydor", "PRICE": "10.80", "YEAR": "1996"}, {"TITLE": "When a man loves a woman", "ARTIST": "Percy Sledge", "COUNTRY": "USA", "COMPANY": "Atlantic", "PRICE": "8.70", "YEAR": "1987"}, {"TITLE": "Black angel", "ARTIST": "Savage Rose", "COUNTRY": "EU", "COMPANY": "Mega", "PRICE": "10.90", "YEAR": "1995"}, {"TITLE": "1999 Grammy Nominees", "ARTIST": "Many", "COUNTRY": "USA", "COMPANY": "Grammy", "PRICE": "10.20", "YEAR": "1999"}, {"TITLE": "For the good times", "ARTIST": "Kenny Rogers", "COUNTRY": "UK", "COMPANY": "Mucik Master", "PRICE": "8.70", "YEAR": "1995"}, {"TITLE": "Big Willie style", "ARTIST": "Will Smith", "COUNTRY": "USA", "COMPANY": "Columbia", "PRICE": "9.90", "YEAR": "1997"}, {"TITLE": "Tupelo Honey", "ARTIST": "Van Morrison", "COUNTRY": "UK", "COMPANY": "Polydor", "PRICE": "8.20", "YEAR": "1971"}, {"TITLE": "Soulsville", "ARTIST": "Jorn Hoel", "COUNTRY": "Norway", "COMPANY": "WEA", "PRICE": "7.90", "YEAR": "1996"}, {"TITLE": "The very best of", "ARTIST": "Cat Stevens", "COUNTRY": "UK", "COMPANY": "Island", "PRICE": "8.90", "YEAR": "1990"}, {"TITLE": "Stop", "ARTIST": "Sam Brown", "COUNTRY": "UK", "COMPANY": "A and M", "PRICE": "8.90", "YEAR": "1988"}, {"TITLE": "Bridge of Spies", "ARTIST": "T'Pau", "COUNTRY": "UK", "COMPANY": "Siren", "PRICE": "7.90", "YEAR": "1987"}, {"TITLE": "Private Dancer", "ARTIST": "Tina Turner", "COUNTRY": "UK", "COMPANY": "Capitol", "PRICE": "8.90", "YEAR": "1983"}, {"TITLE": "Midt om natten", "ARTIST": "Kim Larsen", "COUNTRY": "EU", "COMPANY": "Medley", "PRICE": "7.80", "YEAR": "1983"}, {"TITLE": "Pavarotti Gala Concert", "ARTIST": "Luciano Pavarotti", "COUNTRY": "UK", "COMPANY": "DECCA", "PRICE": "9.90", "YEAR": "1991"}, {"TITLE": "The dock of the bay", "ARTIST": "Otis Redding", "COUNTRY": "USA", "COMPANY": "Stax Records", "PRICE": "7.90", "YEAR": "1968"}, {"TITLE": "Picture book", "ARTIST": "Simply Red", "COUNTRY": "EU", "COMPANY": "Elektra", "PRICE": "7.20", "YEAR": "1985"}, {"TITLE": "Red", "ARTIST": "The Communards", "COUNTRY": "UK", "COMPANY": "London", "PRICE": "7.80", "YEAR": "1987"}, {"TITLE": "Unchain my heart", "ARTIST": "Joe Cocker", "COUNTRY": "USA", "COMPANY": "EMI", "PRICE": "8.20", "YEAR": "1987"}]}} jc-1.17.3/tests/fixtures/generic/xml-cd_catalog.xml000066400000000000000000000117251415226333200222350ustar00rootroot00000000000000 Empire Burlesque Bob Dylan USA Columbia 10.90 1985 Hide your heart Bonnie Tyler UK CBS Records 9.90 1988 Greatest Hits Dolly Parton USA RCA 9.90 1982 Still got the blues Gary Moore UK Virgin records 10.20 1990 Eros Eros Ramazzotti EU BMG 9.90 1997 One night only Bee Gees UK Polydor 10.90 1998 Sylvias Mother Dr.Hook UK CBS 8.10 1973 Maggie May Rod Stewart UK Pickwick 8.50 1990 Romanza Andrea Bocelli EU Polydor 10.80 1996 When a man loves a woman Percy Sledge USA Atlantic 8.70 1987 Black angel Savage Rose EU Mega 10.90 1995 1999 Grammy Nominees Many USA Grammy 10.20 1999 For the good times Kenny Rogers UK Mucik Master 8.70 1995 Big Willie style Will Smith USA Columbia 9.90 1997 Tupelo Honey Van Morrison UK Polydor 8.20 1971 Soulsville Jorn Hoel Norway WEA 7.90 1996 The very best of Cat Stevens UK Island 8.90 1990 Stop Sam Brown UK A and M 8.90 1988 Bridge of Spies T'Pau UK Siren 7.90 1987 Private Dancer Tina Turner UK Capitol 8.90 1983 Midt om natten Kim Larsen EU Medley 7.80 1983 Pavarotti Gala Concert Luciano Pavarotti UK DECCA 9.90 1991 The dock of the bay Otis Redding USA Stax Records 7.90 1968 Picture book Simply Red EU Elektra 7.20 1985 Red The Communards UK London 7.80 1987 Unchain my heart Joe Cocker USA EMI 8.20 1987 jc-1.17.3/tests/fixtures/generic/xml-foodmenu.json000066400000000000000000000014531415226333200221370ustar00rootroot00000000000000{"breakfast_menu": {"food": [{"name": "Belgian Waffles", "price": "$5.95", "description": "Two of our famous Belgian Waffles with plenty of real maple syrup", "calories": "650"}, {"name": "Strawberry Belgian Waffles", "price": "$7.95", "description": "Light Belgian waffles covered with strawberries and whipped cream", "calories": "900"}, {"name": "Berry-Berry Belgian Waffles", "price": "$8.95", "description": "Light Belgian waffles covered with an assortment of fresh berries and whipped cream", "calories": "900"}, {"name": "French Toast", "price": "$4.50", "description": "Thick slices made from our homemade sourdough bread", "calories": "600"}, {"name": "Homestyle Breakfast", "price": "$6.95", "description": "Two eggs, bacon or sausage, toast, and our ever-popular hash browns", "calories": "950"}]}} jc-1.17.3/tests/fixtures/generic/xml-foodmenu.xml000066400000000000000000000021161415226333200217630ustar00rootroot00000000000000 Belgian Waffles $5.95 Two of our famous Belgian Waffles with plenty of real maple syrup 650 Strawberry Belgian Waffles $7.95 Light Belgian waffles covered with strawberries and whipped cream 900 Berry-Berry Belgian Waffles $8.95 Light Belgian waffles covered with an assortment of fresh berries and whipped cream 900 French Toast $4.50 Thick slices made from our homemade sourdough bread 600 Homestyle Breakfast $6.95 Two eggs, bacon or sausage, toast, and our ever-popular hash browns 950 jc-1.17.3/tests/fixtures/generic/yaml-istio-sc.json000066400000000000000000000005151415226333200222150ustar00rootroot00000000000000[{"apiVersion": "networking.istio.io/v1alpha3", "kind": "Sidecar", "metadata": {"name": "sidecar-config", "namespace": "default", "testboolean": true}, "spec": {"ingress": [{"port": {"number": 8080, "protocol": "HTTP", "name": "waf"}, "defaultEndpoint": "127.0.0.1:80", "captureMode": "IPTABLES"}], "egress": [{"hosts": ["*/*"]}]}}] jc-1.17.3/tests/fixtures/generic/yaml-istio-sc.yaml000066400000000000000000000004611415226333200222060ustar00rootroot00000000000000apiVersion: networking.istio.io/v1alpha3 kind: Sidecar metadata: name: sidecar-config namespace: default testboolean: true spec: ingress: - port: number: 8080 protocol: HTTP name: waf defaultEndpoint: 127.0.0.1:80 captureMode: IPTABLES egress: - hosts: - "*/*" jc-1.17.3/tests/fixtures/generic/yaml-istio-sidecar.json000066400000000000000000000061521415226333200232250ustar00rootroot00000000000000[{"apiVersion": "v1", "kind": "ServiceAccount", "metadata": {"name": "www", "testboolean": true}}, {"apiVersion": "v1", "kind": "ServiceAccount", "metadata": {"name": "db", "testboolean": false}}, {"apiVersion": "v1", "kind": "ServiceAccount", "metadata": {"name": "auth"}}, {"apiVersion": "apps/v1", "kind": "Deployment", "metadata": {"name": "www"}, "spec": {"replicas": 3, "selector": {"matchLabels": {"app": "www"}}, "template": {"metadata": {"labels": {"app": "www", "version": "v1.0"}}, "spec": {"serviceAccountName": "www", "containers": [{"name": "modsecurity", "image": "owasp/modsecurity-crs:v3.2-modsec2-apache", "ports": [{"containerPort": 80}], "env": [{"name": "SETPROXY", "value": "True"}, {"name": "PROXYLOCATION", "value": "http://127.0.0.1:8080/"}]}, {"name": "microsimserver", "image": "kellybrazil/microsimserver", "ports": [{"containerPort": 8080}], "env": [{"name": "STATS_PORT", "value": "5000"}]}, {"name": "microsimclient", "image": "kellybrazil/microsimclient", "env": [{"name": "STATS_PORT", "value": "5001"}, {"name": "REQUEST_URLS", "value": "http://auth.default.svc.cluster.local:8080/,http://db.default.svc.cluster.local:8080/"}, {"name": "SEND_SQLI", "value": "True"}]}]}}}}, {"apiVersion": "apps/v1", "kind": "Deployment", "metadata": {"name": "auth"}, "spec": {"replicas": 3, "selector": {"matchLabels": {"app": "auth"}}, "template": {"metadata": {"labels": {"app": "auth", "version": "v1.0"}}, "spec": {"serviceAccountName": "auth", "containers": [{"name": "modsecurity", "image": "owasp/modsecurity-crs:v3.2-modsec2-apache", "ports": [{"containerPort": 80}], "env": [{"name": "SETPROXY", "value": "True"}, {"name": "PROXYLOCATION", "value": "http://127.0.0.1:8080/"}]}, {"name": "microsimserver", "image": "kellybrazil/microsimserver", "ports": [{"containerPort": 8080}], "env": [{"name": "STATS_PORT", "value": "5000"}]}]}}}}, {"apiVersion": "apps/v1", "kind": "Deployment", "metadata": {"name": "db"}, "spec": {"replicas": 3, "selector": {"matchLabels": {"app": "db"}}, "template": {"metadata": {"labels": {"app": "db", "version": "v1.0"}}, "spec": {"serviceAccountName": "db", "containers": [{"name": "modsecurity", "image": "owasp/modsecurity-crs:v3.2-modsec2-apache", "ports": [{"containerPort": 80}], "env": [{"name": "SETPROXY", "value": "True"}, {"name": "PROXYLOCATION", "value": "http://127.0.0.1:8080/"}]}, {"name": "microsimserver", "image": "kellybrazil/microsimserver", "ports": [{"containerPort": 8080}], "env": [{"name": "STATS_PORT", "value": "5000"}]}]}}}}, {"apiVersion": "v1", "kind": "Service", "metadata": {"labels": {"app": "www"}, "name": "www"}, "spec": {"ports": [{"port": 8080, "targetPort": 80, "name": "http"}], "selector": {"app": "www"}, "sessionAffinity": "None"}}, {"apiVersion": "v1", "kind": "Service", "metadata": {"labels": {"app": "auth"}, "name": "auth"}, "spec": {"ports": [{"port": 8080, "targetPort": 80, "name": "http"}], "selector": {"app": "auth"}, "sessionAffinity": "None"}}, {"apiVersion": "v1", "kind": "Service", "metadata": {"labels": {"app": "db"}, "name": "db"}, "spec": {"ports": [{"port": 8080, "targetPort": 80, "name": "http"}], "selector": {"app": "db"}, "sessionAffinity": "None"}}] jc-1.17.3/tests/fixtures/generic/yaml-istio-sidecar.yaml000066400000000000000000000071411415226333200232150ustar00rootroot00000000000000apiVersion: v1 kind: ServiceAccount metadata: name: www testboolean: true --- apiVersion: v1 kind: ServiceAccount metadata: name: db testboolean: false --- apiVersion: v1 kind: ServiceAccount metadata: name: auth --- apiVersion: apps/v1 kind: Deployment metadata: name: www spec: replicas: 3 selector: matchLabels: app: www template: metadata: labels: app: www version: v1.0 # add version spec: serviceAccountName: www # add serviceAccountName containers: - name: modsecurity image: owasp/modsecurity-crs:v3.2-modsec2-apache ports: - containerPort: 80 env: - name: SETPROXY value: "True" - name: PROXYLOCATION value: "http://127.0.0.1:8080/" - name: microsimserver image: kellybrazil/microsimserver ports: - containerPort: 8080 # add microsimserver port env: - name: STATS_PORT value: "5000" - name: microsimclient image: kellybrazil/microsimclient env: - name: STATS_PORT value: "5001" - name: REQUEST_URLS value: "http://auth.default.svc.cluster.local:8080/,http://db.default.svc.cluster.local:8080/" - name: SEND_SQLI value: "True" --- apiVersion: apps/v1 kind: Deployment metadata: name: auth spec: replicas: 3 selector: matchLabels: app: auth template: metadata: labels: app: auth version: v1.0 # add version spec: serviceAccountName: auth # add serviceAccountName containers: - name: modsecurity image: owasp/modsecurity-crs:v3.2-modsec2-apache ports: - containerPort: 80 env: - name: SETPROXY value: "True" - name: PROXYLOCATION value: "http://127.0.0.1:8080/" - name: microsimserver image: kellybrazil/microsimserver ports: - containerPort: 8080 # add microsimserver port env: - name: STATS_PORT value: "5000" --- apiVersion: apps/v1 kind: Deployment metadata: name: db spec: replicas: 3 selector: matchLabels: app: db template: metadata: labels: app: db version: v1.0 # add version spec: serviceAccountName: db # add serviceAccountName containers: - name: modsecurity image: owasp/modsecurity-crs:v3.2-modsec2-apache ports: - containerPort: 80 env: - name: SETPROXY value: "True" - name: PROXYLOCATION value: "http://127.0.0.1:8080/" - name: microsimserver image: kellybrazil/microsimserver ports: - containerPort: 8080 # add microsimserver port env: - name: STATS_PORT value: "5000" --- apiVersion: v1 kind: Service metadata: labels: app: www name: www spec: # externalTrafficPolicy: Local # remove externalTrafficPolicy ports: - port: 8080 targetPort: 80 name: http # add port name selector: app: www sessionAffinity: None # type: LoadBalancer # remove LoadBalancer type --- apiVersion: v1 kind: Service metadata: labels: app: auth name: auth spec: ports: - port: 8080 targetPort: 80 name: http # add port name selector: app: auth sessionAffinity: None --- apiVersion: v1 kind: Service metadata: labels: app: db name: db spec: ports: - port: 8080 targetPort: 80 name: http # add port name selector: app: db sessionAffinity: Nonejc-1.17.3/tests/fixtures/nixos/000077500000000000000000000000001415226333200163535ustar00rootroot00000000000000jc-1.17.3/tests/fixtures/nixos/route-ee.json000066400000000000000000000006431415226333200207760ustar00rootroot00000000000000[{"destination": "default", "gateway": "_gateway", "genmask": "0.0.0.0", "flags": "UG", "metric": 202, "ref": 0, "use": 0, "iface": "ens33", "mss": 0, "window": 0, "irtt": 0, "flags_pretty": ["UP", "GATEWAY"]}, {"destination": "192.168.71.0", "gateway": "0.0.0.0", "genmask": "255.255.255.0", "flags": "U", "metric": 202, "ref": 0, "use": 0, "iface": "ens33", "mss": 0, "window": 0, "irtt": 0, "flags_pretty": ["UP"]}] jc-1.17.3/tests/fixtures/nixos/route-ee.out000066400000000000000000000004731415226333200206350ustar00rootroot00000000000000Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface MSS Window irtt default _gateway 0.0.0.0 UG 202 0 0 ens33 0 0 0 192.168.71.0 0.0.0.0 255.255.255.0 U 202 0 0 ens33 0 0 0 jc-1.17.3/tests/fixtures/nixos/w.json000066400000000000000000000006201415226333200175120ustar00rootroot00000000000000[{"user": "kbrazil", "tty": "tty1", "login_at": "23:40", "idle": "0.00s", "jcpu": "0.18s", "pcpu": "0.07s", "what": "ssh localhost"}, {"user": "kbrazil", "tty": "pts/0", "login_at": "23:43", "idle": "1:37", "jcpu": "0.05s", "pcpu": "0.05s", "what": "-bash"}, {"user": "kbrazil", "tty": "pts/1", "login_at": "23:46", "idle": "0.00s", "jcpu": "0.02s", "pcpu": "0.00s", "what": "sshd: kbrazil [priv]"}] jc-1.17.3/tests/fixtures/nixos/w.out000066400000000000000000000005661415226333200173610ustar00rootroot00000000000000 23:50:09 up 10 min, 3 users, load average: 0.00, 0.03, 0.01 USER TTY LOGIN@ IDLE JCPU PCPU WHAT kbrazil tty1 23:40 0.00s 0.18s 0.07s ssh localhost kbrazil pts/0 23:43 1:37 0.05s 0.05s -bash kbrazil pts/1 23:46 0.00s 0.02s 0.00s sshd: kbrazil [priv] jc-1.17.3/tests/fixtures/osx-10.11.6/000077500000000000000000000000001415226333200166265ustar00rootroot00000000000000jc-1.17.3/tests/fixtures/osx-10.11.6/arp-a.json000066400000000000000000000044171415226333200205270ustar00rootroot00000000000000[ { "name": "dev.attlocal.net", "address": "192.168.1.63", "hwtype": "ethernet", "hwaddress": "e0:33:8e:67:38:d6", "iface": "en0", "permanent": false }, { "name": "air.attlocal.net", "address": "192.168.1.66", "hwtype": "ethernet", "hwaddress": "60:c5:47:b:cf:a", "iface": "en0", "permanent": false }, { "name": "ipad.attlocal.net", "address": "192.168.1.76", "hwtype": "ethernet", "hwaddress": "4c:56:9d:6f:b7:4c", "iface": "en0", "permanent": false }, { "name": "storage.attlocal.net", "address": "192.168.1.81", "hwtype": "ethernet", "hwaddress": "0:90:a9:fd:e4:35", "iface": "en0", "permanent": false }, { "name": "family-room.attlocal.net", "address": "192.168.1.89", "hwtype": "ethernet", "hwaddress": "c8:d0:83:cd:f3:2d", "iface": "en0", "permanent": false }, { "name": "bedroom.attlocal.net", "address": "192.168.1.80", "hwtype": "ethernet", "hwaddress": "d0:3:4b:3b:29:d5", "iface": "en0", "permanent": false }, { "name": "upstairs.attlocal.net", "address": "192.168.1.187", "hwtype": "ethernet", "hwaddress": "50:32:37:e7:f5:9b", "iface": "en0", "permanent": false }, { "name": "rb.attlocal.net", "address": "192.168.1.218", "hwtype": "ethernet", "hwaddress": "3c:37:86:15:bd:f7", "iface": "en0", "permanent": false }, { "name": "mac.attlocal.net", "address": "192.168.1.220", "hwtype": "ethernet", "hwaddress": "a4:83:f7:2d:62:8f", "iface": "en0", "permanent": false }, { "name": "rbs.attlocal.net", "address": "192.168.1.252", "hwtype": "ethernet", "hwaddress": "3c:37:86:15:de:b3", "iface": "en0", "permanent": false }, { "name": "dev1.attlocal.net", "address": "192.168.1.253", "hwtype": "ethernet", "hwaddress": "fc:ae:34:a1:3b:80", "iface": "en0", "permanent": false }, { "name": null, "address": "224.0.0.251", "hwtype": "ethernet", "hwaddress": "1:0:5e:0:0:fb", "iface": "en0", "permanent": true }, { "name": null, "address": "239.255.255.250", "hwtype": "ethernet", "hwaddress": "1:0:5e:7f:ff:fa", "iface": "en0", "permanent": true } ] jc-1.17.3/tests/fixtures/osx-10.11.6/arp-a.out000077500000000000000000000020141415226333200203570ustar00rootroot00000000000000dev.attlocal.net (192.168.1.63) at e0:33:8e:67:38:d6 on en0 ifscope [ethernet] air.attlocal.net (192.168.1.66) at 60:c5:47:b:cf:a on en0 ifscope [ethernet] ipad.attlocal.net (192.168.1.76) at 4c:56:9d:6f:b7:4c on en0 ifscope [ethernet] storage.attlocal.net (192.168.1.81) at 0:90:a9:fd:e4:35 on en0 ifscope [ethernet] family-room.attlocal.net (192.168.1.89) at c8:d0:83:cd:f3:2d on en0 ifscope [ethernet] bedroom.attlocal.net (192.168.1.80) at d0:3:4b:3b:29:d5 on en0 ifscope [ethernet] upstairs.attlocal.net (192.168.1.187) at 50:32:37:e7:f5:9b on en0 ifscope [ethernet] rb.attlocal.net (192.168.1.218) at 3c:37:86:15:bd:f7 on en0 ifscope [ethernet] mac.attlocal.net (192.168.1.220) at a4:83:f7:2d:62:8f on en0 ifscope [ethernet] rbs.attlocal.net (192.168.1.252) at 3c:37:86:15:de:b3 on en0 ifscope [ethernet] dev1.attlocal.net (192.168.1.253) at fc:ae:34:a1:3b:80 on en0 ifscope [ethernet] ? (224.0.0.251) at 1:0:5e:0:0:fb on en0 ifscope permanent [ethernet] ? (239.255.255.250) at 1:0:5e:7f:ff:fa on en0 ifscope permanent [ethernet] jc-1.17.3/tests/fixtures/osx-10.11.6/df-h.json000066400000000000000000000017701415226333200203440ustar00rootroot00000000000000[{"filesystem":"/dev/disk1s1","size":"466Gi","used":137,"iused":674413,"ifree":9223372036854101394,"mounted_on":"/","available":326,"capacity_percent":30,"iused_percent":0},{"filesystem":"devfs","size":"188Ki","used":188,"iused":650,"ifree":0,"mounted_on":"/dev","available":0,"capacity_percent":100,"iused_percent":100},{"filesystem":"/dev/disk1s4","size":"466Gi","used":2,"iused":2,"ifree":9223372036854775805,"mounted_on":"/private/var/vm","available":326,"capacity_percent":1,"iused_percent":0},{"filesystem":"map -hosts","size":"0Bi","used":0,"iused":0,"ifree":0,"mounted_on":"/net","available":0,"capacity_percent":100,"iused_percent":100},{"filesystem":"map auto_home","size":"0Bi","used":0,"iused":0,"ifree":0,"mounted_on":"/home","available":0,"capacity_percent":100,"iused_percent":100},{"filesystem":"//brazil@MyCloudEX2Ultra._afpovertcp._tcp.local/brazil","size":"3.5Ti","used":1,"iused":301134832,"ifree":649465741,"mounted_on":"/Volumes/brazil","available":2,"capacity_percent":32,"iused_percent":32}] jc-1.17.3/tests/fixtures/osx-10.11.6/df-h.out000077500000000000000000000016141415226333200202020ustar00rootroot00000000000000Filesystem Size Used Avail Capacity iused ifree %iused Mounted on /dev/disk1s1 466Gi 137Gi 326Gi 30% 674413 9223372036854101394 0% / devfs 188Ki 188Ki 0Bi 100% 650 0 100% /dev /dev/disk1s4 466Gi 2.0Gi 326Gi 1% 2 9223372036854775805 0% /private/var/vm map -hosts 0Bi 0Bi 0Bi 100% 0 0 100% /net map auto_home 0Bi 0Bi 0Bi 100% 0 0 100% /home //brazil@MyCloudEX2Ultra._afpovertcp._tcp.local/brazil 3.5Ti 1.1Ti 2.4Ti 32% 301134832 649465741 32% /Volumes/brazil jc-1.17.3/tests/fixtures/osx-10.11.6/df.json000066400000000000000000000022541415226333200201150ustar00rootroot00000000000000[{"filesystem": "/dev/disk1s1", "512_blocks": 976490576, "used": 286747768, "available": 684150392, "iused": 674410, "ifree": 9223372036854101397, "mounted_on": "/", "capacity_percent": 30, "iused_percent": 0}, {"filesystem": "devfs", "512_blocks": 375, "used": 375, "available": 0, "iused": 650, "ifree": 0, "mounted_on": "/dev", "capacity_percent": 100, "iused_percent": 100}, {"filesystem": "/dev/disk1s4", "512_blocks": 976490576, "used": 4194344, "available": 684150392, "iused": 2, "ifree": 9223372036854775805, "mounted_on": "/private/var/vm", "capacity_percent": 1, "iused_percent": 0}, {"filesystem": "map -hosts", "512_blocks": 0, "used": 0, "available": 0, "iused": 0, "ifree": 0, "mounted_on": "/net", "capacity_percent": 100, "iused_percent": 100}, {"filesystem": "map auto_home", "512_blocks": 0, "used": 0, "available": 0, "iused": 0, "ifree": 0, "mounted_on": "/home", "capacity_percent": 100, "iused_percent": 100}, {"filesystem": "//brazil@MyCloudEX2Ultra._afpovertcp._tcp.local/brazil", "512_blocks": 7604804600, "used": 2409078672, "available": 5195725928, "iused": 301134832, "ifree": 649465741, "mounted_on": "/Volumes/brazil", "capacity_percent": 32, "iused_percent": 32}] jc-1.17.3/tests/fixtures/osx-10.11.6/df.out000077500000000000000000000017401415226333200177550ustar00rootroot00000000000000Filesystem 512-blocks Used Available Capacity iused ifree %iused Mounted on /dev/disk1s1 976490576 286747768 684150392 30% 674410 9223372036854101397 0% / devfs 375 375 0 100% 650 0 100% /dev /dev/disk1s4 976490576 4194344 684150392 1% 2 9223372036854775805 0% /private/var/vm map -hosts 0 0 0 100% 0 0 100% /net map auto_home 0 0 0 100% 0 0 100% /home //brazil@MyCloudEX2Ultra._afpovertcp._tcp.local/brazil 7604804600 2409078672 5195725928 32% 301134832 649465741 32% /Volumes/brazil jc-1.17.3/tests/fixtures/osx-10.11.6/dig-aaaa.json000066400000000000000000000010461415226333200211460ustar00rootroot00000000000000[{"id":41369,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":4096}},"question":{"name":"www.google.com.","class":"IN","type":"AAAA"},"answer":[{"name":"www.google.com.","class":"IN","type":"AAAA","ttl":197,"data":"2607:f8b0:4000:817::2004"}],"query_time":30,"server":"2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)","when":"Wed Dec 11 16:57:37 PST 2019","rcvd":71,"when_epoch":1576112257,"when_epoch_utc":null}] jc-1.17.3/tests/fixtures/osx-10.11.6/dig-aaaa.out000077500000000000000000000010311415226333200210010ustar00rootroot00000000000000 ; <<>> DiG 9.10.6 <<>> www.google.com AAAA ;; global options: +cmd ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 41369 ;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1 ;; OPT PSEUDOSECTION: ; EDNS: version: 0, flags:; udp: 4096 ;; QUESTION SECTION: ;www.google.com. IN AAAA ;; ANSWER SECTION: www.google.com. 197 IN AAAA 2607:f8b0:4000:817::2004 ;; Query time: 30 msec ;; SERVER: 2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1) ;; WHEN: Wed Dec 11 16:57:37 PST 2019 ;; MSG SIZE rcvd: 71 jc-1.17.3/tests/fixtures/osx-10.11.6/dig-x.json000066400000000000000000000010511415226333200205260ustar00rootroot00000000000000[{"id":15549,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":4096}},"question":{"name":"1.1.1.1.in-addr.arpa.","class":"IN","type":"PTR"},"answer":[{"name":"1.1.1.1.in-addr.arpa.","class":"IN","type":"PTR","ttl":1800,"data":"one.one.one.one."}],"query_time":34,"server":"2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)","when":"Wed Dec 11 16:57:37 PST 2019","rcvd":78,"when_epoch":1576112257,"when_epoch_utc":null}] jc-1.17.3/tests/fixtures/osx-10.11.6/dig-x.out000077500000000000000000000010211415226333200203640ustar00rootroot00000000000000 ; <<>> DiG 9.10.6 <<>> -x 1.1.1.1 ;; global options: +cmd ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 15549 ;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1 ;; OPT PSEUDOSECTION: ; EDNS: version: 0, flags:; udp: 4096 ;; QUESTION SECTION: ;1.1.1.1.in-addr.arpa. IN PTR ;; ANSWER SECTION: 1.1.1.1.in-addr.arpa. 1800 IN PTR one.one.one.one. ;; Query time: 34 msec ;; SERVER: 2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1) ;; WHEN: Wed Dec 11 16:57:37 PST 2019 ;; MSG SIZE rcvd: 78 jc-1.17.3/tests/fixtures/osx-10.11.6/dig.json000066400000000000000000000026551415226333200202740ustar00rootroot00000000000000[{"id":57483,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":5,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":4096}},"question":{"name":"www.cnn.com.","class":"IN","type":"A"},"answer":[{"name":"www.cnn.com.","class":"IN","type":"CNAME","ttl":199,"data":"turner-tls.map.fastly.net."},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":13,"data":"151.101.193.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":13,"data":"151.101.65.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":13,"data":"151.101.1.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":13,"data":"151.101.129.67"}],"query_time":30,"server":"2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)","when":"Wed Dec 11 16:57:37 PST 2019","rcvd":143,"when_epoch":1576112257,"when_epoch_utc":null},{"id":53268,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":4096}},"question":{"name":"www.google.com.","class":"IN","type":"A"},"answer":[{"name":"www.google.com.","class":"IN","type":"A","ttl":194,"data":"172.217.9.164"}],"query_time":30,"server":"2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)","when":"Wed Dec 11 16:57:37 PST 2019","rcvd":59,"when_epoch":1576112257,"when_epoch_utc":null}] jc-1.17.3/tests/fixtures/osx-10.11.6/dig.out000077500000000000000000000022441415226333200201270ustar00rootroot00000000000000 ; <<>> DiG 9.10.6 <<>> www.cnn.com www.google.com ;; global options: +cmd ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 57483 ;; flags: qr rd ra; QUERY: 1, ANSWER: 5, AUTHORITY: 0, ADDITIONAL: 1 ;; OPT PSEUDOSECTION: ; EDNS: version: 0, flags:; udp: 4096 ;; QUESTION SECTION: ;www.cnn.com. IN A ;; ANSWER SECTION: www.cnn.com. 199 IN CNAME turner-tls.map.fastly.net. turner-tls.map.fastly.net. 13 IN A 151.101.193.67 turner-tls.map.fastly.net. 13 IN A 151.101.65.67 turner-tls.map.fastly.net. 13 IN A 151.101.1.67 turner-tls.map.fastly.net. 13 IN A 151.101.129.67 ;; Query time: 30 msec ;; SERVER: 2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1) ;; WHEN: Wed Dec 11 16:57:37 PST 2019 ;; MSG SIZE rcvd: 143 ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 53268 ;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1 ;; OPT PSEUDOSECTION: ; EDNS: version: 0, flags:; udp: 4096 ;; QUESTION SECTION: ;www.google.com. IN A ;; ANSWER SECTION: www.google.com. 194 IN A 172.217.9.164 ;; Query time: 30 msec ;; SERVER: 2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1) ;; WHEN: Wed Dec 11 16:57:37 PST 2019 ;; MSG SIZE rcvd: 59 jc-1.17.3/tests/fixtures/osx-10.11.6/du.json000066400000000000000000006565561415226333200201600ustar00rootroot00000000000000[{"size": 0, "name": "/usr/adic/SRVCLOG/logs/events"}, {"size": 0, "name": "/usr/adic/SRVCLOG/logs"}, {"size": 0, "name": "/usr/adic/SRVCLOG"}, {"size": 0, "name": "/usr/adic"}, {"size": 101824, "name": "/usr/bin"}, {"size": 0, "name": "/usr/include/_types"}, {"size": 432, "name": "/usr/include/apache2"}, {"size": 352, "name": "/usr/include/apr-1"}, {"size": 0, "name": "/usr/include/architecture/i386"}, {"size": 0, "name": "/usr/include/architecture"}, {"size": 24, "name": "/usr/include/arpa"}, {"size": 0, "name": "/usr/include/atm"}, {"size": 0, "name": "/usr/include/bank"}, {"size": 80, "name": "/usr/include/bsm"}, {"size": 0, "name": "/usr/include/c++/4.2.1/backward"}, {"size": 768, "name": "/usr/include/c++/4.2.1/bits"}, {"size": 48, "name": "/usr/include/c++/4.2.1/debug"}, {"size": 0, "name": "/usr/include/c++/4.2.1/ext/pb_ds/detail/basic_tree_policy"}, {"size": 8, "name": "/usr/include/c++/4.2.1/ext/pb_ds/detail/bin_search_tree_"}, {"size": 0, "name": "/usr/include/c++/4.2.1/ext/pb_ds/detail/binary_heap_"}, {"size": 0, "name": "/usr/include/c++/4.2.1/ext/pb_ds/detail/binomial_heap_"}, {"size": 0, "name": "/usr/include/c++/4.2.1/ext/pb_ds/detail/binomial_heap_base_"}, {"size": 16, "name": "/usr/include/c++/4.2.1/ext/pb_ds/detail/cc_hash_table_map_"}, {"size": 0, "name": "/usr/include/c++/4.2.1/ext/pb_ds/detail/eq_fn"}, {"size": 16, "name": "/usr/include/c++/4.2.1/ext/pb_ds/detail/gp_hash_table_map_"}, {"size": 0, "name": "/usr/include/c++/4.2.1/ext/pb_ds/detail/hash_fn"}, {"size": 0, "name": "/usr/include/c++/4.2.1/ext/pb_ds/detail/left_child_next_sibling_heap_"}, {"size": 0, "name": "/usr/include/c++/4.2.1/ext/pb_ds/detail/list_update_map_"}, {"size": 0, "name": "/usr/include/c++/4.2.1/ext/pb_ds/detail/list_update_policy"}, {"size": 16, "name": "/usr/include/c++/4.2.1/ext/pb_ds/detail/ov_tree_map_"}, {"size": 0, "name": "/usr/include/c++/4.2.1/ext/pb_ds/detail/pairing_heap_"}, {"size": 48, "name": "/usr/include/c++/4.2.1/ext/pb_ds/detail/pat_trie_"}, {"size": 0, "name": "/usr/include/c++/4.2.1/ext/pb_ds/detail/rb_tree_map_"}, {"size": 0, "name": "/usr/include/c++/4.2.1/ext/pb_ds/detail/rc_binomial_heap_"}, {"size": 0, "name": "/usr/include/c++/4.2.1/ext/pb_ds/detail/resize_policy"}, {"size": 0, "name": "/usr/include/c++/4.2.1/ext/pb_ds/detail/splay_tree_"}, {"size": 0, "name": "/usr/include/c++/4.2.1/ext/pb_ds/detail/thin_heap_"}, {"size": 0, "name": "/usr/include/c++/4.2.1/ext/pb_ds/detail/tree_policy"}, {"size": 0, "name": "/usr/include/c++/4.2.1/ext/pb_ds/detail/trie_policy"}, {"size": 0, "name": "/usr/include/c++/4.2.1/ext/pb_ds/detail/unordered_iterator"}, {"size": 104, "name": "/usr/include/c++/4.2.1/ext/pb_ds/detail"}, {"size": 144, "name": "/usr/include/c++/4.2.1/ext/pb_ds"}, {"size": 448, "name": "/usr/include/c++/4.2.1/ext"}, {"size": 224, "name": "/usr/include/c++/4.2.1/tr1"}, {"size": 1680, "name": "/usr/include/c++/4.2.1"}, {"size": 1680, "name": "/usr/include/c++"}, {"size": 24, "name": "/usr/include/CommonCrypto"}, {"size": 0, "name": "/usr/include/corpses"}, {"size": 120, "name": "/usr/include/cups"}, {"size": 104, "name": "/usr/include/curl"}, {"size": 0, "name": "/usr/include/default_pager"}, {"size": 16, "name": "/usr/include/device"}, {"size": 88, "name": "/usr/include/dispatch"}, {"size": 0, "name": "/usr/include/editline"}, {"size": 8, "name": "/usr/include/ffi"}, {"size": 32, "name": "/usr/include/gssapi"}, {"size": 24, "name": "/usr/include/hfs"}, {"size": 0, "name": "/usr/include/i386"}, {"size": 0, "name": "/usr/include/kern"}, {"size": 72, "name": "/usr/include/krb5"}, {"size": 0, "name": "/usr/include/libexslt"}, {"size": 0, "name": "/usr/include/libkern/i386"}, {"size": 0, "name": "/usr/include/libkern/machine"}, {"size": 32, "name": "/usr/include/libkern"}, {"size": 136, "name": "/usr/include/libxml2/libxml"}, {"size": 136, "name": "/usr/include/libxml2"}, {"size": 40, "name": "/usr/include/libxslt"}, {"size": 32, "name": "/usr/include/mach/i386"}, {"size": 0, "name": "/usr/include/mach/machine"}, {"size": 368, "name": "/usr/include/mach"}, {"size": 0, "name": "/usr/include/mach-o/arm64"}, {"size": 0, "name": "/usr/include/mach-o/i386"}, {"size": 0, "name": "/usr/include/mach-o/ppc"}, {"size": 0, "name": "/usr/include/mach-o/x86_64"}, {"size": 112, "name": "/usr/include/mach-o"}, {"size": 0, "name": "/usr/include/mach_debug"}, {"size": 0, "name": "/usr/include/machine"}, {"size": 16, "name": "/usr/include/malloc"}, {"size": 0, "name": "/usr/include/miscfs/devfs"}, {"size": 0, "name": "/usr/include/miscfs/specfs"}, {"size": 0, "name": "/usr/include/miscfs/union"}, {"size": 0, "name": "/usr/include/miscfs"}, {"size": 120, "name": "/usr/include/net"}, {"size": 0, "name": "/usr/include/net-snmp/agent/util_funcs"}, {"size": 0, "name": "/usr/include/net-snmp/agent"}, {"size": 112, "name": "/usr/include/net-snmp/library"}, {"size": 0, "name": "/usr/include/net-snmp/machine"}, {"size": 0, "name": "/usr/include/net-snmp/system"}, {"size": 184, "name": "/usr/include/net-snmp"}, {"size": 152, "name": "/usr/include/netinet"}, {"size": 40, "name": "/usr/include/netinet6"}, {"size": 0, "name": "/usr/include/netkey"}, {"size": 160, "name": "/usr/include/nfs"}, {"size": 64, "name": "/usr/include/objc"}, {"size": 88, "name": "/usr/include/odmodule"}, {"size": 16, "name": "/usr/include/os"}, {"size": 64, "name": "/usr/include/pcap"}, {"size": 16, "name": "/usr/include/pexpert/i386"}, {"size": 0, "name": "/usr/include/pexpert/machine"}, {"size": 16, "name": "/usr/include/pexpert"}, {"size": 0, "name": "/usr/include/php/ext/date/lib"}, {"size": 0, "name": "/usr/include/php/ext/date"}, {"size": 0, "name": "/usr/include/php/ext/dom"}, {"size": 0, "name": "/usr/include/php/ext/ereg/regex"}, {"size": 0, "name": "/usr/include/php/ext/ereg"}, {"size": 0, "name": "/usr/include/php/ext/filter"}, {"size": 88, "name": "/usr/include/php/ext/gd/libgd"}, {"size": 88, "name": "/usr/include/php/ext/gd"}, {"size": 0, "name": "/usr/include/php/ext/hash"}, {"size": 0, "name": "/usr/include/php/ext/iconv"}, {"size": 0, "name": "/usr/include/php/ext/json"}, {"size": 0, "name": "/usr/include/php/ext/libxml"}, {"size": 0, "name": "/usr/include/php/ext/mbstring/libmbfl/mbfl"}, {"size": 0, "name": "/usr/include/php/ext/mbstring/libmbfl"}, {"size": 24, "name": "/usr/include/php/ext/mbstring/oniguruma"}, {"size": 24, "name": "/usr/include/php/ext/mbstring"}, {"size": 8, "name": "/usr/include/php/ext/mysqli"}, {"size": 80, "name": "/usr/include/php/ext/mysqlnd"}, {"size": 0, "name": "/usr/include/php/ext/pcre"}, {"size": 24, "name": "/usr/include/php/ext/pdo"}, {"size": 0, "name": "/usr/include/php/ext/phar"}, {"size": 8, "name": "/usr/include/php/ext/session"}, {"size": 0, "name": "/usr/include/php/ext/sockets"}, {"size": 0, "name": "/usr/include/php/ext/spl"}, {"size": 264, "name": "/usr/include/php/ext/sqlite3/libsqlite"}, {"size": 264, "name": "/usr/include/php/ext/sqlite3"}, {"size": 184, "name": "/usr/include/php/ext/standard"}, {"size": 0, "name": "/usr/include/php/ext/xml"}, {"size": 680, "name": "/usr/include/php/ext"}, {"size": 0, "name": "/usr/include/php/main/streams"}, {"size": 96, "name": "/usr/include/php/main"}, {"size": 0, "name": "/usr/include/php/sapi/cli"}, {"size": 0, "name": "/usr/include/php/sapi"}, {"size": 16, "name": "/usr/include/php/TSRM"}, {"size": 656, "name": "/usr/include/php/Zend"}, {"size": 1448, "name": "/usr/include/php"}, {"size": 0, "name": "/usr/include/protocols"}, {"size": 16, "name": "/usr/include/pthread"}, {"size": 16, "name": "/usr/include/readline"}, {"size": 48, "name": "/usr/include/rpc"}, {"size": 64, "name": "/usr/include/rpcsvc"}, {"size": 64, "name": "/usr/include/sasl"}, {"size": 0, "name": "/usr/include/secure"}, {"size": 0, "name": "/usr/include/security/audit"}, {"size": 112, "name": "/usr/include/security"}, {"size": 16, "name": "/usr/include/servers"}, {"size": 168, "name": "/usr/include/simd"}, {"size": 0, "name": "/usr/include/sys/_pthread"}, {"size": 0, "name": "/usr/include/sys/_types"}, {"size": 688, "name": "/usr/include/sys"}, {"size": 64, "name": "/usr/include/tidy"}, {"size": 0, "name": "/usr/include/uuid"}, {"size": 0, "name": "/usr/include/vfs"}, {"size": 16, "name": "/usr/include/xar"}, {"size": 0, "name": "/usr/include/xlocale"}, {"size": 80, "name": "/usr/include/xpc"}, {"size": 8888, "name": "/usr/include"}, {"size": 40, "name": "/usr/lib/dtrace"}, {"size": 80, "name": "/usr/lib/groff/groffer"}, {"size": 0, "name": "/usr/lib/groff/site-tmac"}, {"size": 80, "name": "/usr/lib/groff"}, {"size": 440, "name": "/usr/lib/pam"}, {"size": 504, "name": "/usr/lib/php/build"}, {"size": 736, "name": "/usr/lib/php/extensions/no-debug-non-zts-20121212"}, {"size": 736, "name": "/usr/lib/php/extensions"}, {"size": 3112, "name": "/usr/lib/php"}, {"size": 0, "name": "/usr/lib/pkgconfig"}, {"size": 1112, "name": "/usr/lib/rpcsvc"}, {"size": 32, "name": "/usr/lib/sa"}, {"size": 24, "name": "/usr/lib/sasl2/openldap"}, {"size": 1192, "name": "/usr/lib/sasl2"}, {"size": 720, "name": "/usr/lib/system/introspection"}, {"size": 9616, "name": "/usr/lib/system"}, {"size": 0, "name": "/usr/lib/xpc/support.bundle/Contents/_CodeSignature"}, {"size": 56, "name": "/usr/lib/xpc/support.bundle/Contents/MacOS"}, {"size": 56, "name": "/usr/lib/xpc/support.bundle/Contents"}, {"size": 56, "name": "/usr/lib/xpc/support.bundle"}, {"size": 56, "name": "/usr/lib/xpc"}, {"size": 32, "name": "/usr/lib/zsh/5.0.8/zsh/net"}, {"size": 1168, "name": "/usr/lib/zsh/5.0.8/zsh"}, {"size": 1168, "name": "/usr/lib/zsh/5.0.8"}, {"size": 1168, "name": "/usr/lib/zsh"}, {"size": 86176, "name": "/usr/lib"}, {"size": 11464, "name": "/usr/libexec/apache2"}, {"size": 144, "name": "/usr/libexec/ApplicationFirewall"}, {"size": 80, "name": "/usr/libexec/AppSandbox"}, {"size": 224, "name": "/usr/libexec/cups/apple"}, {"size": 480, "name": "/usr/libexec/cups/backend"}, {"size": 128, "name": "/usr/libexec/cups/cgi-bin"}, {"size": 120, "name": "/usr/libexec/cups/daemon"}, {"size": 0, "name": "/usr/libexec/cups/driver"}, {"size": 1408, "name": "/usr/libexec/cups/filter"}, {"size": 32, "name": "/usr/libexec/cups/monitor"}, {"size": 48, "name": "/usr/libexec/cups/notifier"}, {"size": 2440, "name": "/usr/libexec/cups"}, {"size": 112, "name": "/usr/libexec/DeveloperTools"}, {"size": 0, "name": "/usr/libexec/dtrace"}, {"size": 160, "name": "/usr/libexec/emacs/22.1/mac-apple-darwin"}, {"size": 160, "name": "/usr/libexec/emacs/22.1"}, {"size": 160, "name": "/usr/libexec/emacs"}, {"size": 16, "name": "/usr/libexec/fax"}, {"size": 96, "name": "/usr/libexec/feedback"}, {"size": 0, "name": "/usr/libexec/MiniTerm.app/Contents/_CodeSignature"}, {"size": 24, "name": "/usr/libexec/MiniTerm.app/Contents/MacOS"}, {"size": 32, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/ar.lproj"}, {"size": 40, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/ca.lproj"}, {"size": 32, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/cs.lproj"}, {"size": 40, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/da.lproj"}, {"size": 32, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/Dutch.lproj"}, {"size": 40, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/el.lproj"}, {"size": 0, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/English.lproj/MiniTerm-windows.nib"}, {"size": 0, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/English.lproj/MiniTerm.nib"}, {"size": 0, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/English.lproj"}, {"size": 40, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/es_MX.lproj"}, {"size": 32, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/fi.lproj"}, {"size": 40, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/French.lproj"}, {"size": 40, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/German.lproj"}, {"size": 32, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/he.lproj"}, {"size": 32, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/hr.lproj"}, {"size": 32, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/hu.lproj"}, {"size": 32, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/id.lproj"}, {"size": 40, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/Italian.lproj"}, {"size": 32, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/Japanese.lproj"}, {"size": 32, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/ko.lproj"}, {"size": 32, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/ms.lproj"}, {"size": 32, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/no.lproj"}, {"size": 32, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/pl.lproj"}, {"size": 32, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/pt.lproj"}, {"size": 32, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/pt_PT.lproj"}, {"size": 40, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/ro.lproj"}, {"size": 32, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/ru.lproj"}, {"size": 40, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/sk.lproj"}, {"size": 32, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/Spanish.lproj"}, {"size": 40, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/sv.lproj"}, {"size": 40, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/th.lproj"}, {"size": 32, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/tr.lproj"}, {"size": 40, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/uk.lproj"}, {"size": 32, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/vi.lproj"}, {"size": 32, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/zh_CN.lproj"}, {"size": 32, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/zh_TW.lproj"}, {"size": 1152, "name": "/usr/libexec/MiniTerm.app/Contents/Resources"}, {"size": 1176, "name": "/usr/libexec/MiniTerm.app/Contents"}, {"size": 1176, "name": "/usr/libexec/MiniTerm.app"}, {"size": 0, "name": "/usr/libexec/postfix/scripts"}, {"size": 8376, "name": "/usr/libexec/postfix"}, {"size": 176, "name": "/usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle/Contents/MacOS"}, {"size": 200, "name": "/usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle/Contents"}, {"size": 200, "name": "/usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle"}, {"size": 200, "name": "/usr/libexec/SmartCardServices/drivers"}, {"size": 200, "name": "/usr/libexec/SmartCardServices"}, {"size": 55040, "name": "/usr/libexec"}, {"size": 552, "name": "/usr/local/bin"}, {"size": 8, "name": "/usr/local/Cellar/gdbm/1.18.1/.brew"}, {"size": 288, "name": "/usr/local/Cellar/gdbm/1.18.1/bin"}, {"size": 24, "name": "/usr/local/Cellar/gdbm/1.18.1/include"}, {"size": 264, "name": "/usr/local/Cellar/gdbm/1.18.1/lib"}, {"size": 280, "name": "/usr/local/Cellar/gdbm/1.18.1/share/info"}, {"size": 48, "name": "/usr/local/Cellar/gdbm/1.18.1/share/man/man1"}, {"size": 40, "name": "/usr/local/Cellar/gdbm/1.18.1/share/man/man3"}, {"size": 88, "name": "/usr/local/Cellar/gdbm/1.18.1/share/man"}, {"size": 368, "name": "/usr/local/Cellar/gdbm/1.18.1/share"}, {"size": 1288, "name": "/usr/local/Cellar/gdbm/1.18.1"}, {"size": 1288, "name": "/usr/local/Cellar/gdbm"}, {"size": 8, "name": "/usr/local/Cellar/jq/1.5_3/.brew"}, {"size": 480, "name": "/usr/local/Cellar/jq/1.5_3/bin"}, {"size": 24, "name": "/usr/local/Cellar/jq/1.5_3/include"}, {"size": 1136, "name": "/usr/local/Cellar/jq/1.5_3/lib"}, {"size": 32, "name": "/usr/local/Cellar/jq/1.5_3/share/doc/jq"}, {"size": 32, "name": "/usr/local/Cellar/jq/1.5_3/share/doc"}, {"size": 176, "name": "/usr/local/Cellar/jq/1.5_3/share/man/man1"}, {"size": 176, "name": "/usr/local/Cellar/jq/1.5_3/share/man"}, {"size": 208, "name": "/usr/local/Cellar/jq/1.5_3/share"}, {"size": 1976, "name": "/usr/local/Cellar/jq/1.5_3"}, {"size": 1976, "name": "/usr/local/Cellar/jq"}, {"size": 8, "name": "/usr/local/Cellar/oniguruma/6.8.2/.brew"}, {"size": 8, "name": "/usr/local/Cellar/oniguruma/6.8.2/bin"}, {"size": 112, "name": "/usr/local/Cellar/oniguruma/6.8.2/include"}, {"size": 8, "name": "/usr/local/Cellar/oniguruma/6.8.2/lib/pkgconfig"}, {"size": 2208, "name": "/usr/local/Cellar/oniguruma/6.8.2/lib"}, {"size": 2624, "name": "/usr/local/Cellar/oniguruma/6.8.2"}, {"size": 2624, "name": "/usr/local/Cellar/oniguruma"}, {"size": 8, "name": "/usr/local/Cellar/openssl@1.1/1.1.1d/.brew"}, {"size": 1240, "name": "/usr/local/Cellar/openssl@1.1/1.1.1d/bin"}, {"size": 3120, "name": "/usr/local/Cellar/openssl@1.1/1.1.1d/include/openssl"}, {"size": 3120, "name": "/usr/local/Cellar/openssl@1.1/1.1.1d/include"}, {"size": 72, "name": "/usr/local/Cellar/openssl@1.1/1.1.1d/lib/engines-1.1"}, {"size": 24, "name": "/usr/local/Cellar/openssl@1.1/1.1.1d/lib/pkgconfig"}, {"size": 15296, "name": "/usr/local/Cellar/openssl@1.1/1.1.1d/lib"}, {"size": 1808, "name": "/usr/local/Cellar/openssl@1.1/1.1.1d/share/doc/openssl/html/man1"}, {"size": 33432, "name": "/usr/local/Cellar/openssl@1.1/1.1.1d/share/doc/openssl/html/man3"}, {"size": 88, "name": "/usr/local/Cellar/openssl@1.1/1.1.1d/share/doc/openssl/html/man5"}, {"size": 336, "name": "/usr/local/Cellar/openssl@1.1/1.1.1d/share/doc/openssl/html/man7"}, {"size": 35664, "name": "/usr/local/Cellar/openssl@1.1/1.1.1d/share/doc/openssl/html"}, {"size": 35664, "name": "/usr/local/Cellar/openssl@1.1/1.1.1d/share/doc/openssl"}, {"size": 35664, "name": "/usr/local/Cellar/openssl@1.1/1.1.1d/share/doc"}, {"size": 2040, "name": "/usr/local/Cellar/openssl@1.1/1.1.1d/share/man/man1"}, {"size": 36384, "name": "/usr/local/Cellar/openssl@1.1/1.1.1d/share/man/man3"}, {"size": 96, "name": "/usr/local/Cellar/openssl@1.1/1.1.1d/share/man/man5"}, {"size": 432, "name": "/usr/local/Cellar/openssl@1.1/1.1.1d/share/man/man7"}, {"size": 38952, "name": "/usr/local/Cellar/openssl@1.1/1.1.1d/share/man"}, {"size": 74616, "name": "/usr/local/Cellar/openssl@1.1/1.1.1d/share"}, {"size": 95552, "name": "/usr/local/Cellar/openssl@1.1/1.1.1d"}, {"size": 95552, "name": "/usr/local/Cellar/openssl@1.1"}, {"size": 8, "name": "/usr/local/Cellar/pkg-config/0.29.2/.brew"}, {"size": 992, "name": "/usr/local/Cellar/pkg-config/0.29.2/bin"}, {"size": 24, "name": "/usr/local/Cellar/pkg-config/0.29.2/share/aclocal"}, {"size": 40, "name": "/usr/local/Cellar/pkg-config/0.29.2/share/doc/pkg-config"}, {"size": 40, "name": "/usr/local/Cellar/pkg-config/0.29.2/share/doc"}, {"size": 48, "name": "/usr/local/Cellar/pkg-config/0.29.2/share/man/man1"}, {"size": 48, "name": "/usr/local/Cellar/pkg-config/0.29.2/share/man"}, {"size": 112, "name": "/usr/local/Cellar/pkg-config/0.29.2/share"}, {"size": 1304, "name": "/usr/local/Cellar/pkg-config/0.29.2"}, {"size": 1304, "name": "/usr/local/Cellar/pkg-config"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.5/.brew"}, {"size": 144, "name": "/usr/local/Cellar/python/3.7.5/bin"}, {"size": 128, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/bin"}, {"size": 96, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/include/python3.7m/internal"}, {"size": 1784, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/include/python3.7m"}, {"size": 1784, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/include"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/pkgconfig"}, {"size": 19600, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/__pycache__"}, {"size": 2120, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/asyncio/__pycache__"}, {"size": 3024, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/asyncio"}, {"size": 288, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/collections/__pycache__"}, {"size": 392, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/collections"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/concurrent/__pycache__"}, {"size": 312, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/concurrent/futures/__pycache__"}, {"size": 440, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/concurrent/futures"}, {"size": 472, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/concurrent"}, {"size": 288, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/config-3.7m-darwin"}, {"size": 296, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ctypes/__pycache__"}, {"size": 112, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ctypes/macholib/__pycache__"}, {"size": 176, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ctypes/macholib"}, {"size": 2064, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ctypes/test/__pycache__"}, {"size": 2712, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ctypes/test"}, {"size": 3312, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ctypes"}, {"size": 168, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/curses/__pycache__"}, {"size": 224, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/curses"}, {"size": 152, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/dbm/__pycache__"}, {"size": 208, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/dbm"}, {"size": 1760, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/distutils/__pycache__"}, {"size": 1184, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/distutils/command/__pycache__"}, {"size": 5840, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/distutils/command"}, {"size": 1824, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/distutils/tests/__pycache__"}, {"size": 2528, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/distutils/tests"}, {"size": 11056, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/distutils"}, {"size": 1696, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/email/__pycache__"}, {"size": 216, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/email/mime/__pycache__"}, {"size": 280, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/email/mime"}, {"size": 2768, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/email"}, {"size": 3608, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/encodings/__pycache__"}, {"size": 7088, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/encodings"}, {"size": 96, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ensurepip/__pycache__"}, {"size": 3896, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ensurepip/_bundled"}, {"size": 4024, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ensurepip"}, {"size": 408, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/html/__pycache__"}, {"size": 616, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/html"}, {"size": 832, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/http/__pycache__"}, {"size": 1248, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/http"}, {"size": 4008, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/idlelib/__pycache__"}, {"size": 264, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/idlelib/Icons"}, {"size": 3080, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/idlelib/idle_test/__pycache__"}, {"size": 4200, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/idlelib/idle_test"}, {"size": 10696, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/idlelib"}, {"size": 672, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/importlib/__pycache__"}, {"size": 984, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/importlib"}, {"size": 248, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/json/__pycache__"}, {"size": 360, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/json"}, {"size": 8680, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload"}, {"size": 632, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib2to3/__pycache__"}, {"size": 1376, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib2to3/fixes/__pycache__"}, {"size": 1856, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib2to3/fixes"}, {"size": 392, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib2to3/pgen2/__pycache__"}, {"size": 568, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib2to3/pgen2"}, {"size": 1576, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib2to3/tests/__pycache__"}, {"size": 40, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib2to3/tests/data/fixers/myfixes"}, {"size": 64, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib2to3/tests/data/fixers"}, {"size": 416, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib2to3/tests/data"}, {"size": 2448, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib2to3/tests"}, {"size": 5864, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib2to3"}, {"size": 688, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/logging/__pycache__"}, {"size": 1032, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/logging"}, {"size": 1304, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/multiprocessing/__pycache__"}, {"size": 48, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/multiprocessing/dummy/__pycache__"}, {"size": 64, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/multiprocessing/dummy"}, {"size": 1888, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/multiprocessing"}, {"size": 2448, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/pydoc_data/__pycache__"}, {"size": 3752, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/pydoc_data"}, {"size": 72, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/sqlite3/__pycache__"}, {"size": 960, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/sqlite3/test/__pycache__"}, {"size": 1232, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/sqlite3/test"}, {"size": 1328, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/sqlite3"}, {"size": 66648, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/__pycache__"}, {"size": 480, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/audiodata"}, {"size": 48, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/capath"}, {"size": 240, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/cjkencodings"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/data"}, {"size": 9128, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/decimaltestdata"}, {"size": 96, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/dtracedata/__pycache__"}, {"size": 224, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/dtracedata"}, {"size": 120, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/eintrdata/__pycache__"}, {"size": 160, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/eintrdata"}, {"size": 72, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/encoded_modules/__pycache__"}, {"size": 96, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/encoded_modules"}, {"size": 104, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/imghdrdata"}, {"size": 552, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/libregrtest/__pycache__"}, {"size": 792, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/libregrtest"}, {"size": 72, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/sndhdrdata"}, {"size": 120, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/subprocessdata/__pycache__"}, {"size": 160, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/subprocessdata"}, {"size": 536, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/support/__pycache__"}, {"size": 784, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/support"}, {"size": 4360, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_asyncio/__pycache__"}, {"size": 5832, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_asyncio"}, {"size": 3168, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_email/__pycache__"}, {"size": 488, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_email/data"}, {"size": 4760, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_email"}, {"size": 288, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_import/__pycache__"}, {"size": 216, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_import/data/circular_imports/__pycache__"}, {"size": 48, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_import/data/circular_imports/subpkg/__pycache__"}, {"size": 64, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_import/data/circular_imports/subpkg"}, {"size": 352, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_import/data/circular_imports"}, {"size": 48, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_import/data/package/__pycache__"}, {"size": 56, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_import/data/package"}, {"size": 48, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_import/data/package2/__pycache__"}, {"size": 56, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_import/data/package2"}, {"size": 464, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_import/data"}, {"size": 856, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_import"}, {"size": 1224, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/__pycache__"}, {"size": 96, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/builtin/__pycache__"}, {"size": 128, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/builtin"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data01/__pycache__"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data01/subdirectory/__pycache__"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data01/subdirectory"}, {"size": 80, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data01"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data02/__pycache__"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data02/one/__pycache__"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data02/one"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data02/two/__pycache__"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data02/two"}, {"size": 88, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data02"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data03/__pycache__"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data03/namespace/portion1/__pycache__"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data03/namespace/portion1"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data03/namespace/portion2/__pycache__"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data03/namespace/portion2"}, {"size": 48, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data03/namespace"}, {"size": 72, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data03"}, {"size": 192, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/extension/__pycache__"}, {"size": 256, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/extension"}, {"size": 120, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/frozen/__pycache__"}, {"size": 168, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/frozen"}, {"size": 464, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/import_/__pycache__"}, {"size": 616, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/import_"}, {"size": 48, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/both_portions/foo/__pycache__"}, {"size": 64, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/both_portions/foo"}, {"size": 64, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/both_portions"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/module_and_namespace_package/__pycache__"}, {"size": 0, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/module_and_namespace_package"}, {"size": 48, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/__pycache__"}, {"size": 56, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo"}, {"size": 56, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/not_a_namespace_pkg"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/portion1/foo/__pycache__"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/portion1/foo"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/portion1"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/portion2/foo/__pycache__"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/portion2/foo"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/portion2"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/project1/parent/child/__pycache__"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/project1/parent/child"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/project1/parent"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/project1"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/project2/parent/child/__pycache__"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/project2/parent/child"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/project2/parent"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/project2"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/project3/parent/child/__pycache__"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/project3/parent/child"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/project3/parent"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/project3"}, {"size": 336, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs"}, {"size": 400, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/source/__pycache__"}, {"size": 536, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/source"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/zipdata01/__pycache__"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/zipdata01"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/zipdata02/__pycache__"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/zipdata02"}, {"size": 3976, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib"}, {"size": 576, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_json/__pycache__"}, {"size": 768, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_json"}, {"size": 432, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_tools/__pycache__"}, {"size": 576, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_tools"}, {"size": 288, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_warnings/__pycache__"}, {"size": 48, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_warnings/data/__pycache__"}, {"size": 64, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_warnings/data"}, {"size": 472, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_warnings"}, {"size": 48, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/tracedmodules/__pycache__"}, {"size": 64, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/tracedmodules"}, {"size": 40, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/xmltestdata"}, {"size": 122896, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test"}, {"size": 2128, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/tkinter/__pycache__"}, {"size": 216, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/tkinter/test/__pycache__"}, {"size": 816, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/tkinter/test/test_tkinter/__pycache__"}, {"size": 1096, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/tkinter/test/test_tkinter"}, {"size": 504, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/tkinter/test/test_ttk/__pycache__"}, {"size": 712, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/tkinter/test/test_ttk"}, {"size": 2088, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/tkinter/test"}, {"size": 4968, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/tkinter"}, {"size": 656, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/turtledemo/__pycache__"}, {"size": 880, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/turtledemo"}, {"size": 1024, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/__pycache__"}, {"size": 2120, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/test/__pycache__"}, {"size": 1416, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/test/testmock/__pycache__"}, {"size": 1848, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/test/testmock"}, {"size": 4640, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/test"}, {"size": 6120, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest"}, {"size": 704, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/urllib/__pycache__"}, {"size": 1024, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/urllib"}, {"size": 112, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/venv/__pycache__"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/venv/scripts/common"}, {"size": 16, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/venv/scripts/posix"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/venv/scripts"}, {"size": 192, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/venv"}, {"size": 336, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/wsgiref/__pycache__"}, {"size": 472, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/wsgiref"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xml/__pycache__"}, {"size": 776, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xml/dom/__pycache__"}, {"size": 1072, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xml/dom"}, {"size": 352, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xml/etree/__pycache__"}, {"size": 520, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xml/etree"}, {"size": 48, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xml/parsers/__pycache__"}, {"size": 64, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xml/parsers"}, {"size": 424, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xml/sax/__pycache__"}, {"size": 568, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xml/sax"}, {"size": 2256, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xml"}, {"size": 400, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xmlrpc/__pycache__"}, {"size": 576, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xmlrpc"}, {"size": 237496, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7"}, {"size": 237536, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/Resources/Python.app/Contents/MacOS"}, {"size": 216, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/Resources/Python.app/Contents/Resources"}, {"size": 264, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/Resources/Python.app/Contents"}, {"size": 264, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/Resources/Python.app"}, {"size": 272, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/Resources"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/buildbot"}, {"size": 56, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/c-globals"}, {"size": 40, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/ccbench"}, {"size": 320, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/clinic"}, {"size": 224, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/demo"}, {"size": 16, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/freeze/test"}, {"size": 208, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/freeze"}, {"size": 128, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/gdb"}, {"size": 80, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/i18n"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/importbench"}, {"size": 40, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/iobench"}, {"size": 304, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/bundle/bootstrap"}, {"size": 112, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/bundle/packagegroups"}, {"size": 656, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/bundle"}, {"size": 64, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/core"}, {"size": 48, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/dev"}, {"size": 40, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/doc"}, {"size": 80, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/exe"}, {"size": 40, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/launcher"}, {"size": 72, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/lib"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/path"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/pip"}, {"size": 72, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/tcltk"}, {"size": 64, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/test"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/tools"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/ucrt"}, {"size": 1528, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi"}, {"size": 56, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/nuget"}, {"size": 40, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/parser"}, {"size": 48, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/pynche/X"}, {"size": 352, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/pynche"}, {"size": 888, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/scripts"}, {"size": 40, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/ssl"}, {"size": 96, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/stringbench"}, {"size": 16, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/test2to3/test"}, {"size": 16, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/test2to3/test2to3"}, {"size": 56, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/test2to3"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/tz"}, {"size": 96, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/unicode/python-mappings"}, {"size": 296, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/unicode"}, {"size": 48, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/unittestgui"}, {"size": 4576, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools"}, {"size": 4576, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples"}, {"size": 4576, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7"}, {"size": 4576, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc"}, {"size": 4576, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share"}, {"size": 248952, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7"}, {"size": 248952, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions"}, {"size": 248952, "name": "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework"}, {"size": 248952, "name": "/usr/local/Cellar/python/3.7.5/Frameworks"}, {"size": 16, "name": "/usr/local/Cellar/python/3.7.5/IDLE 3.app/Contents/MacOS"}, {"size": 352, "name": "/usr/local/Cellar/python/3.7.5/IDLE 3.app/Contents/Resources"}, {"size": 384, "name": "/usr/local/Cellar/python/3.7.5/IDLE 3.app/Contents"}, {"size": 384, "name": "/usr/local/Cellar/python/3.7.5/IDLE 3.app"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.5/lib/pkgconfig"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.5/lib"}, {"size": 56, "name": "/usr/local/Cellar/python/3.7.5/libexec/bin"}, {"size": 168, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_internal/cli"}, {"size": 216, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_internal/commands"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_internal/distributions/source"}, {"size": 40, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_internal/distributions"}, {"size": 72, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_internal/models"}, {"size": 80, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_internal/network"}, {"size": 80, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_internal/operations"}, {"size": 216, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_internal/req"}, {"size": 352, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_internal/utils"}, {"size": 144, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_internal/vcs"}, {"size": 1848, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_internal"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/cachecontrol/caches"}, {"size": 152, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/cachecontrol"}, {"size": 576, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/certifi"}, {"size": 16, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/chardet/cli"}, {"size": 888, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/chardet"}, {"size": 80, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/colorama"}, {"size": 320, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/distlib/_backport"}, {"size": 1872, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/distlib"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/html5lib/_trie"}, {"size": 120, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/html5lib/filters"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/html5lib/treeadapters"}, {"size": 128, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/html5lib/treebuilders"}, {"size": 80, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/html5lib/treewalkers"}, {"size": 1096, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/html5lib"}, {"size": 536, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/idna"}, {"size": 104, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/msgpack"}, {"size": 192, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/packaging"}, {"size": 128, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/pep517"}, {"size": 224, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/pkg_resources"}, {"size": 40, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/progress"}, {"size": 64, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/pytoml"}, {"size": 424, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/requests"}, {"size": 64, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/urllib3/contrib/_securetransport"}, {"size": 232, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/urllib3/contrib"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/urllib3/packages/backports"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/urllib3/packages/ssl_match_hostname"}, {"size": 104, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/urllib3/packages"}, {"size": 184, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/urllib3/util"}, {"size": 816, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/urllib3"}, {"size": 88, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/webencodings"}, {"size": 8240, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor"}, {"size": 10104, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip"}, {"size": 10104, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build/lib"}, {"size": 10104, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/build"}, {"size": 72, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/docs/html/development/architecture"}, {"size": 168, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/docs/html/development"}, {"size": 192, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/docs/html/reference"}, {"size": 496, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/docs/html"}, {"size": 104, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/docs/man/commands"}, {"size": 112, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/docs/man"}, {"size": 616, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/docs"}, {"size": 168, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_internal/cli"}, {"size": 216, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_internal/commands"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_internal/distributions/source"}, {"size": 40, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_internal/distributions"}, {"size": 72, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_internal/models"}, {"size": 80, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_internal/network"}, {"size": 80, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_internal/operations"}, {"size": 216, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_internal/req"}, {"size": 352, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_internal/utils"}, {"size": 144, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_internal/vcs"}, {"size": 1848, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_internal"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/cachecontrol/caches"}, {"size": 160, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/cachecontrol"}, {"size": 584, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/certifi"}, {"size": 16, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/chardet/cli"}, {"size": 944, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/chardet"}, {"size": 88, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/colorama"}, {"size": 320, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/distlib/_backport"}, {"size": 1904, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/distlib"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/html5lib/_trie"}, {"size": 120, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/html5lib/filters"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/html5lib/treeadapters"}, {"size": 128, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/html5lib/treebuilders"}, {"size": 80, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/html5lib/treewalkers"}, {"size": 1104, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/html5lib"}, {"size": 544, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/idna"}, {"size": 112, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/msgpack"}, {"size": 232, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/packaging"}, {"size": 136, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/pep517"}, {"size": 232, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/pkg_resources"}, {"size": 48, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/progress"}, {"size": 72, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/pytoml"}, {"size": 432, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/requests"}, {"size": 64, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/urllib3/contrib/_securetransport"}, {"size": 232, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/urllib3/contrib"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/urllib3/packages/backports"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/urllib3/packages/ssl_match_hostname"}, {"size": 104, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/urllib3/packages"}, {"size": 184, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/urllib3/util"}, {"size": 824, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/urllib3"}, {"size": 96, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/webencodings"}, {"size": 8592, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor"}, {"size": 10456, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip"}, {"size": 72, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src/pip.egg-info"}, {"size": 10528, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip/src"}, {"size": 21664, "name": "/usr/local/Cellar/python/3.7.5/libexec/pip"}, {"size": 160, "name": "/usr/local/Cellar/python/3.7.5/libexec/setuptools/build/lib/pkg_resources/_vendor/packaging"}, {"size": 736, "name": "/usr/local/Cellar/python/3.7.5/libexec/setuptools/build/lib/pkg_resources/_vendor"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.5/libexec/setuptools/build/lib/pkg_resources/extern"}, {"size": 968, "name": "/usr/local/Cellar/python/3.7.5/libexec/setuptools/build/lib/pkg_resources"}, {"size": 160, "name": "/usr/local/Cellar/python/3.7.5/libexec/setuptools/build/lib/setuptools/_vendor/packaging"}, {"size": 712, "name": "/usr/local/Cellar/python/3.7.5/libexec/setuptools/build/lib/setuptools/_vendor"}, {"size": 576, "name": "/usr/local/Cellar/python/3.7.5/libexec/setuptools/build/lib/setuptools/command"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.5/libexec/setuptools/build/lib/setuptools/extern"}, {"size": 2784, "name": "/usr/local/Cellar/python/3.7.5/libexec/setuptools/build/lib/setuptools"}, {"size": 3760, "name": "/usr/local/Cellar/python/3.7.5/libexec/setuptools/build/lib"}, {"size": 3760, "name": "/usr/local/Cellar/python/3.7.5/libexec/setuptools/build"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.5/libexec/setuptools/docs/_templates"}, {"size": 16, "name": "/usr/local/Cellar/python/3.7.5/libexec/setuptools/docs/_theme/nature/static"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.5/libexec/setuptools/docs/_theme/nature"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.5/libexec/setuptools/docs/_theme"}, {"size": 712, "name": "/usr/local/Cellar/python/3.7.5/libexec/setuptools/docs"}, {"size": 208, "name": "/usr/local/Cellar/python/3.7.5/libexec/setuptools/pkg_resources/__pycache__"}, {"size": 504, "name": "/usr/local/Cellar/python/3.7.5/libexec/setuptools/pkg_resources/_vendor/__pycache__"}, {"size": 128, "name": "/usr/local/Cellar/python/3.7.5/libexec/setuptools/pkg_resources/_vendor/packaging/__pycache__"}, {"size": 288, "name": "/usr/local/Cellar/python/3.7.5/libexec/setuptools/pkg_resources/_vendor/packaging"}, {"size": 1376, "name": "/usr/local/Cellar/python/3.7.5/libexec/setuptools/pkg_resources/_vendor"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.5/libexec/setuptools/pkg_resources/extern/__pycache__"}, {"size": 16, "name": "/usr/local/Cellar/python/3.7.5/libexec/setuptools/pkg_resources/extern"}, {"size": 136, "name": "/usr/local/Cellar/python/3.7.5/libexec/setuptools/pkg_resources/tests"}, {"size": 1984, "name": "/usr/local/Cellar/python/3.7.5/libexec/setuptools/pkg_resources"}, {"size": 520, "name": "/usr/local/Cellar/python/3.7.5/libexec/setuptools/setuptools/__pycache__"}, {"size": 96, "name": "/usr/local/Cellar/python/3.7.5/libexec/setuptools/setuptools/_vendor/__pycache__"}, {"size": 104, "name": "/usr/local/Cellar/python/3.7.5/libexec/setuptools/setuptools/_vendor/packaging/__pycache__"}, {"size": 264, "name": "/usr/local/Cellar/python/3.7.5/libexec/setuptools/setuptools/_vendor/packaging"}, {"size": 920, "name": "/usr/local/Cellar/python/3.7.5/libexec/setuptools/setuptools/_vendor"}, {"size": 328, "name": "/usr/local/Cellar/python/3.7.5/libexec/setuptools/setuptools/command/__pycache__"}, {"size": 904, "name": "/usr/local/Cellar/python/3.7.5/libexec/setuptools/setuptools/command"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.5/libexec/setuptools/setuptools/extern/__pycache__"}, {"size": 16, "name": "/usr/local/Cellar/python/3.7.5/libexec/setuptools/setuptools/extern"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.5/libexec/setuptools/setuptools/tests/indexes/test_links_priority/simple/foobar"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.5/libexec/setuptools/setuptools/tests/indexes/test_links_priority/simple"}, {"size": 16, "name": "/usr/local/Cellar/python/3.7.5/libexec/setuptools/setuptools/tests/indexes/test_links_priority"}, {"size": 16, "name": "/usr/local/Cellar/python/3.7.5/libexec/setuptools/setuptools/tests/indexes"}, {"size": 784, "name": "/usr/local/Cellar/python/3.7.5/libexec/setuptools/setuptools/tests"}, {"size": 4632, "name": "/usr/local/Cellar/python/3.7.5/libexec/setuptools/setuptools"}, {"size": 64, "name": "/usr/local/Cellar/python/3.7.5/libexec/setuptools/setuptools.egg-info"}, {"size": 11616, "name": "/usr/local/Cellar/python/3.7.5/libexec/setuptools"}, {"size": 48, "name": "/usr/local/Cellar/python/3.7.5/libexec/wheel/build/lib/wheel/cli"}, {"size": 160, "name": "/usr/local/Cellar/python/3.7.5/libexec/wheel/build/lib/wheel"}, {"size": 160, "name": "/usr/local/Cellar/python/3.7.5/libexec/wheel/build/lib"}, {"size": 160, "name": "/usr/local/Cellar/python/3.7.5/libexec/wheel/build"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.5/libexec/wheel/docs/reference"}, {"size": 160, "name": "/usr/local/Cellar/python/3.7.5/libexec/wheel/docs"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.5/libexec/wheel/manpages"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.5/libexec/wheel/tests/cli"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.5/libexec/wheel/tests/testdata/complex-dist/complexdist"}, {"size": 16, "name": "/usr/local/Cellar/python/3.7.5/libexec/wheel/tests/testdata/complex-dist"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.5/libexec/wheel/tests/testdata/extension.dist"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.5/libexec/wheel/tests/testdata/headers.dist"}, {"size": 0, "name": "/usr/local/Cellar/python/3.7.5/libexec/wheel/tests/testdata/simple.dist/simpledist"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.5/libexec/wheel/tests/testdata/simple.dist"}, {"size": 0, "name": "/usr/local/Cellar/python/3.7.5/libexec/wheel/tests/testdata/unicode.dist/unicodedist"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.5/libexec/wheel/tests/testdata/unicode.dist"}, {"size": 64, "name": "/usr/local/Cellar/python/3.7.5/libexec/wheel/tests/testdata"}, {"size": 168, "name": "/usr/local/Cellar/python/3.7.5/libexec/wheel/tests"}, {"size": 48, "name": "/usr/local/Cellar/python/3.7.5/libexec/wheel/wheel/cli"}, {"size": 160, "name": "/usr/local/Cellar/python/3.7.5/libexec/wheel/wheel"}, {"size": 56, "name": "/usr/local/Cellar/python/3.7.5/libexec/wheel/wheel.egg-info"}, {"size": 776, "name": "/usr/local/Cellar/python/3.7.5/libexec/wheel"}, {"size": 34112, "name": "/usr/local/Cellar/python/3.7.5/libexec"}, {"size": 96, "name": "/usr/local/Cellar/python/3.7.5/Python Launcher 3.app/Contents/MacOS"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.5/Python Launcher 3.app/Contents/Resources/English.lproj/MainMenu.nib"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.5/Python Launcher 3.app/Contents/Resources/English.lproj/MyDocument.nib"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.5/Python Launcher 3.app/Contents/Resources/English.lproj/PreferenceWindow.nib"}, {"size": 104, "name": "/usr/local/Cellar/python/3.7.5/Python Launcher 3.app/Contents/Resources/English.lproj"}, {"size": 432, "name": "/usr/local/Cellar/python/3.7.5/Python Launcher 3.app/Contents/Resources"}, {"size": 536, "name": "/usr/local/Cellar/python/3.7.5/Python Launcher 3.app/Contents"}, {"size": 536, "name": "/usr/local/Cellar/python/3.7.5/Python Launcher 3.app"}, {"size": 40, "name": "/usr/local/Cellar/python/3.7.5/share/man/man1"}, {"size": 40, "name": "/usr/local/Cellar/python/3.7.5/share/man"}, {"size": 40, "name": "/usr/local/Cellar/python/3.7.5/share"}, {"size": 284288, "name": "/usr/local/Cellar/python/3.7.5"}, {"size": 284288, "name": "/usr/local/Cellar/python"}, {"size": 8, "name": "/usr/local/Cellar/readline/8.0.1/.brew"}, {"size": 160, "name": "/usr/local/Cellar/readline/8.0.1/include/readline"}, {"size": 160, "name": "/usr/local/Cellar/readline/8.0.1/include"}, {"size": 8, "name": "/usr/local/Cellar/readline/8.0.1/lib/pkgconfig"}, {"size": 1520, "name": "/usr/local/Cellar/readline/8.0.1/lib"}, {"size": 192, "name": "/usr/local/Cellar/readline/8.0.1/share/doc/readline"}, {"size": 192, "name": "/usr/local/Cellar/readline/8.0.1/share/doc"}, {"size": 760, "name": "/usr/local/Cellar/readline/8.0.1/share/info"}, {"size": 144, "name": "/usr/local/Cellar/readline/8.0.1/share/man/man3"}, {"size": 144, "name": "/usr/local/Cellar/readline/8.0.1/share/man"}, {"size": 176, "name": "/usr/local/Cellar/readline/8.0.1/share/readline"}, {"size": 1272, "name": "/usr/local/Cellar/readline/8.0.1/share"}, {"size": 3304, "name": "/usr/local/Cellar/readline/8.0.1"}, {"size": 3304, "name": "/usr/local/Cellar/readline"}, {"size": 8, "name": "/usr/local/Cellar/sqlite/3.30.1/.brew"}, {"size": 2416, "name": "/usr/local/Cellar/sqlite/3.30.1/bin"}, {"size": 1176, "name": "/usr/local/Cellar/sqlite/3.30.1/include"}, {"size": 8, "name": "/usr/local/Cellar/sqlite/3.30.1/lib/pkgconfig"}, {"size": 4648, "name": "/usr/local/Cellar/sqlite/3.30.1/lib"}, {"size": 24, "name": "/usr/local/Cellar/sqlite/3.30.1/share/man/man1"}, {"size": 24, "name": "/usr/local/Cellar/sqlite/3.30.1/share/man"}, {"size": 24, "name": "/usr/local/Cellar/sqlite/3.30.1/share"}, {"size": 8288, "name": "/usr/local/Cellar/sqlite/3.30.1"}, {"size": 8288, "name": "/usr/local/Cellar/sqlite"}, {"size": 8, "name": "/usr/local/Cellar/xz/5.2.4/.brew"}, {"size": 400, "name": "/usr/local/Cellar/xz/5.2.4/bin"}, {"size": 376, "name": "/usr/local/Cellar/xz/5.2.4/include/lzma"}, {"size": 400, "name": "/usr/local/Cellar/xz/5.2.4/include"}, {"size": 8, "name": "/usr/local/Cellar/xz/5.2.4/lib/pkgconfig"}, {"size": 720, "name": "/usr/local/Cellar/xz/5.2.4/lib"}, {"size": 96, "name": "/usr/local/Cellar/xz/5.2.4/share/doc/xz/examples"}, {"size": 16, "name": "/usr/local/Cellar/xz/5.2.4/share/doc/xz/examples_old"}, {"size": 408, "name": "/usr/local/Cellar/xz/5.2.4/share/doc/xz"}, {"size": 408, "name": "/usr/local/Cellar/xz/5.2.4/share/doc"}, {"size": 304, "name": "/usr/local/Cellar/xz/5.2.4/share/man/man1"}, {"size": 304, "name": "/usr/local/Cellar/xz/5.2.4/share/man"}, {"size": 712, "name": "/usr/local/Cellar/xz/5.2.4/share"}, {"size": 2720, "name": "/usr/local/Cellar/xz/5.2.4"}, {"size": 2720, "name": "/usr/local/Cellar/xz"}, {"size": 401344, "name": "/usr/local/Cellar"}, {"size": 8, "name": "/usr/local/etc/bash_completion.d"}, {"size": 40, "name": "/usr/local/etc/openssl@1.1/misc"}, {"size": 608, "name": "/usr/local/etc/openssl@1.1"}, {"size": 616, "name": "/usr/local/etc"}, {"size": 8, "name": "/usr/local/Frameworks/Python.framework/Versions"}, {"size": 8, "name": "/usr/local/Frameworks/Python.framework"}, {"size": 8, "name": "/usr/local/Frameworks"}, {"size": 88, "name": "/usr/local/Homebrew/.git/hooks"}, {"size": 8, "name": "/usr/local/Homebrew/.git/info"}, {"size": 16, "name": "/usr/local/Homebrew/.git/logs/refs/heads"}, {"size": 8, "name": "/usr/local/Homebrew/.git/logs/refs/remotes/origin"}, {"size": 8, "name": "/usr/local/Homebrew/.git/logs/refs/remotes"}, {"size": 24, "name": "/usr/local/Homebrew/.git/logs/refs"}, {"size": 32, "name": "/usr/local/Homebrew/.git/logs"}, {"size": 0, "name": "/usr/local/Homebrew/.git/objects/info"}, {"size": 73048, "name": "/usr/local/Homebrew/.git/objects/pack"}, {"size": 73048, "name": "/usr/local/Homebrew/.git/objects"}, {"size": 16, "name": "/usr/local/Homebrew/.git/refs/heads"}, {"size": 8, "name": "/usr/local/Homebrew/.git/refs/remotes/origin"}, {"size": 8, "name": "/usr/local/Homebrew/.git/refs/remotes"}, {"size": 1112, "name": "/usr/local/Homebrew/.git/refs/tags"}, {"size": 1136, "name": "/usr/local/Homebrew/.git/refs"}, {"size": 74848, "name": "/usr/local/Homebrew/.git"}, {"size": 24, "name": "/usr/local/Homebrew/.github/ISSUE_TEMPLATE"}, {"size": 16, "name": "/usr/local/Homebrew/.github/workflows"}, {"size": 64, "name": "/usr/local/Homebrew/.github"}, {"size": 8, "name": "/usr/local/Homebrew/bin"}, {"size": 40, "name": "/usr/local/Homebrew/completions/bash"}, {"size": 104, "name": "/usr/local/Homebrew/completions/fish"}, {"size": 72, "name": "/usr/local/Homebrew/completions/zsh"}, {"size": 224, "name": "/usr/local/Homebrew/completions"}, {"size": 736, "name": "/usr/local/Homebrew/docs/assets/img/docs"}, {"size": 736, "name": "/usr/local/Homebrew/docs/assets/img"}, {"size": 736, "name": "/usr/local/Homebrew/docs/assets"}, {"size": 1568, "name": "/usr/local/Homebrew/docs"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/.bundle"}, {"size": 264, "name": "/usr/local/Homebrew/Library/Homebrew/cask/artifact"}, {"size": 184, "name": "/usr/local/Homebrew/Library/Homebrew/cask/cmd"}, {"size": 96, "name": "/usr/local/Homebrew/Library/Homebrew/cask/dsl"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/cask/utils"}, {"size": 872, "name": "/usr/local/Homebrew/Library/Homebrew/cask"}, {"size": 32, "name": "/usr/local/Homebrew/Library/Homebrew/cli"}, {"size": 624, "name": "/usr/local/Homebrew/Library/Homebrew/cmd"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/compat/cask/dsl"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/compat/cask"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/compat/requirements"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/compat"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/debrew"}, {"size": 376, "name": "/usr/local/Homebrew/Library/Homebrew/dev-cmd"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/extend/ENV"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/extend/os/extend/ENV"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/extend/os/extend"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/extend/os/language"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/extend/os/linux/extend/ENV"}, {"size": 32, "name": "/usr/local/Homebrew/Library/Homebrew/extend/os/linux/extend"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/extend/os/linux/hardware"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/extend/os/linux/requirements"}, {"size": 144, "name": "/usr/local/Homebrew/Library/Homebrew/extend/os/linux"}, {"size": 32, "name": "/usr/local/Homebrew/Library/Homebrew/extend/os/mac/extend/ENV"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/extend/os/mac/extend"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/extend/os/mac/hardware"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/extend/os/mac/language"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/extend/os/mac/requirements"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/extend/os/mac/unpack_strategy"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/extend/os/mac/utils"}, {"size": 240, "name": "/usr/local/Homebrew/Library/Homebrew/extend/os/mac"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/extend/os/requirements"}, {"size": 600, "name": "/usr/local/Homebrew/Library/Homebrew/extend/os"}, {"size": 768, "name": "/usr/local/Homebrew/Library/Homebrew/extend"}, {"size": 64, "name": "/usr/local/Homebrew/Library/Homebrew/language"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/manpages"}, {"size": 48, "name": "/usr/local/Homebrew/Library/Homebrew/os/linux"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.10"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.11"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.12"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.13"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.14"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.15"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.5"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.6"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.7"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.8"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.9"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/fuse"}, {"size": 544, "name": "/usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig"}, {"size": 616, "name": "/usr/local/Homebrew/Library/Homebrew/os/mac"}, {"size": 704, "name": "/usr/local/Homebrew/Library/Homebrew/os"}, {"size": 72, "name": "/usr/local/Homebrew/Library/Homebrew/requirements"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/rubocops/cask/ast"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/rubocops/cask/constants"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/rubocops/cask/extend"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/rubocops/cask/mixin"}, {"size": 112, "name": "/usr/local/Homebrew/Library/Homebrew/rubocops/cask"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/rubocops/extend"}, {"size": 344, "name": "/usr/local/Homebrew/Library/Homebrew/rubocops"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/test/cask/artifact/shared_examples"}, {"size": 144, "name": "/usr/local/Homebrew/Library/Homebrew/test/cask/artifact"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/test/cask/cask_loader"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/test/cask/cmd/shared_examples"}, {"size": 216, "name": "/usr/local/Homebrew/Library/Homebrew/test/cask/cmd"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/test/cask/dsl/shared_examples"}, {"size": 88, "name": "/usr/local/Homebrew/Library/Homebrew/test/cask/dsl"}, {"size": 672, "name": "/usr/local/Homebrew/Library/Homebrew/test/cask"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/test/cli"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/test/cmd/shared_examples"}, {"size": 432, "name": "/usr/local/Homebrew/Library/Homebrew/test/cmd"}, {"size": 184, "name": "/usr/local/Homebrew/Library/Homebrew/test/dev-cmd"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/test/hardware"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/test/language"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/test/os/linux"}, {"size": 64, "name": "/usr/local/Homebrew/Library/Homebrew/test/os/mac"}, {"size": 96, "name": "/usr/local/Homebrew/Library/Homebrew/test/os"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/test/requirements"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/test/rubocops/cask/shared_examples"}, {"size": 72, "name": "/usr/local/Homebrew/Library/Homebrew/test/rubocops/cask"}, {"size": 288, "name": "/usr/local/Homebrew/Library/Homebrew/test/rubocops"}, {"size": 104, "name": "/usr/local/Homebrew/Library/Homebrew/test/support/fixtures/bottles"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/test/support/fixtures/cask/Casks/compat"}, {"size": 136, "name": "/usr/local/Homebrew/Library/Homebrew/test/support/fixtures/cask/Casks/invalid"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/test/support/fixtures/cask/Casks/outdated"}, {"size": 1200, "name": "/usr/local/Homebrew/Library/Homebrew/test/support/fixtures/cask/Casks"}, {"size": 1528, "name": "/usr/local/Homebrew/Library/Homebrew/test/support/fixtures/cask"}, {"size": 32, "name": "/usr/local/Homebrew/Library/Homebrew/test/support/fixtures/elf"}, {"size": 200, "name": "/usr/local/Homebrew/Library/Homebrew/test/support/fixtures/mach"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/test/support/fixtures/patches"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/test/support/fixtures/tarballs"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/test/support/fixtures/third-party/Casks"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/test/support/fixtures/third-party"}, {"size": 2120, "name": "/usr/local/Homebrew/Library/Homebrew/test/support/fixtures"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/test/support/helper/cask"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/test/support/helper/spec/shared_context"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/test/support/helper/spec"}, {"size": 88, "name": "/usr/local/Homebrew/Library/Homebrew/test/support/helper"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/test/support/lib"}, {"size": 2224, "name": "/usr/local/Homebrew/Library/Homebrew/test/support"}, {"size": 160, "name": "/usr/local/Homebrew/Library/Homebrew/test/unpack_strategy"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/test/utils/bottles"}, {"size": 112, "name": "/usr/local/Homebrew/Library/Homebrew/test/utils"}, {"size": 5280, "name": "/usr/local/Homebrew/Library/Homebrew/test"}, {"size": 280, "name": "/usr/local/Homebrew/Library/Homebrew/unpack_strategy"}, {"size": 176, "name": "/usr/local/Homebrew/Library/Homebrew/utils"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/bundler"}, {"size": 64, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/array"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/big_decimal"}, {"size": 32, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/class"}, {"size": 48, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/date"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/date_and_time"}, {"size": 48, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/date_time"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/digest"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/file"}, {"size": 96, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/hash"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/integer"}, {"size": 32, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/kernel"}, {"size": 128, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/module"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/numeric"}, {"size": 104, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/object"}, {"size": 48, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/range"}, {"size": 136, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/string"}, {"size": 64, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/time"}, {"size": 1120, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext"}, {"size": 72, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/deprecation"}, {"size": 72, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/inflector"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/locale"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/notifications"}, {"size": 2232, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/values"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/xml_mini"}, {"size": 4224, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support"}, {"size": 4224, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib"}, {"size": 4224, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3"}, {"size": 240, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic_reference"}, {"size": 104, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent/collection/map"}, {"size": 160, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent/collection"}, {"size": 48, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent/concern"}, {"size": 224, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor"}, {"size": 136, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization"}, {"size": 72, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent/thread_safe/util"}, {"size": 88, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent/thread_safe"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent/utility"}, {"size": 1632, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent"}, {"size": 1656, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib"}, {"size": 1656, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5"}, {"size": 160, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/i18n-1.7.0/lib/i18n/backend"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/i18n-1.7.0/lib/i18n/core_ext"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/i18n-1.7.0/lib/i18n/gettext"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/i18n-1.7.0/lib/i18n/interpolate"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/i18n-1.7.0/lib/i18n/locale/tag"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/i18n-1.7.0/lib/i18n/locale"}, {"size": 304, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/i18n-1.7.0/lib/i18n"}, {"size": 336, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/i18n-1.7.0/lib"}, {"size": 336, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/i18n-1.7.0"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/mechanize-2.7.6/lib/mechanize/http"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/mechanize-2.7.6/lib/mechanize"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/mechanize-2.7.6/lib"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/mechanize-2.7.6"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/plist-3.5.0/lib/plist"}, {"size": 48, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/plist-3.5.0/lib"}, {"size": 48, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/plist-3.5.0"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.5.0/config"}, {"size": 232, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.5.0/lib/rubocop/cop/performance"}, {"size": 240, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.5.0/lib/rubocop/cop"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.5.0/lib/rubocop/performance"}, {"size": 264, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.5.0/lib/rubocop"}, {"size": 272, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.5.0/lib"}, {"size": 288, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.5.0"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0/config"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0/lib/rubocop/cop/rspec/capybara"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0/lib/rubocop/cop/rspec/factory_bot"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0/lib/rubocop/cop/rspec/rails"}, {"size": 672, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0/lib/rubocop/cop/rspec"}, {"size": 680, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0/lib/rubocop/cop"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0/lib/rubocop/rspec/language"}, {"size": 144, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0/lib/rubocop/rspec"}, {"size": 832, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0/lib/rubocop"}, {"size": 840, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0/lib"}, {"size": 880, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0"}, {"size": 312, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/ruby-macho-2.2.0/lib/macho"}, {"size": 320, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/ruby-macho-2.2.0/lib"}, {"size": 320, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/ruby-macho-2.2.0"}, {"size": 136, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/thread_safe-0.3.6/lib/thread_safe"}, {"size": 144, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/thread_safe-0.3.6/lib"}, {"size": 144, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/thread_safe-0.3.6"}, {"size": 416, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/tzinfo-1.2.5/lib/tzinfo"}, {"size": 424, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/tzinfo-1.2.5/lib"}, {"size": 424, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/tzinfo-1.2.5"}, {"size": 8344, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems"}, {"size": 8344, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0"}, {"size": 8344, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby"}, {"size": 8360, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/.brew"}, {"size": 34920, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/bin"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/include/ruby-2.3.0/ruby/backward"}, {"size": 520, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/include/ruby-2.3.0/ruby"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/include/ruby-2.3.0/universal-darwin9.0/ruby"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/include/ruby-2.3.0/universal-darwin9.0"}, {"size": 552, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/include/ruby-2.3.0"}, {"size": 552, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/include"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/pkgconfig"}, {"size": 48, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/bigdecimal"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/cgi/session"}, {"size": 216, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/cgi"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/digest"}, {"size": 224, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/drb"}, {"size": 96, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/fiddle"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/io/console"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/io"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/irb/cmd"}, {"size": 80, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/irb/ext"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/irb/lc/ja"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/irb/lc"}, {"size": 488, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/irb"}, {"size": 104, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/json/add"}, {"size": 160, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/json"}, {"size": 64, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/matrix"}, {"size": 144, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/net/http"}, {"size": 688, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/net"}, {"size": 128, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/openssl"}, {"size": 48, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/optparse"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/psych/handlers"}, {"size": 32, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/psych/json"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/psych/nodes"}, {"size": 96, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/psych/visitors"}, {"size": 360, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/psych"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/racc"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rbconfig"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rdoc/context"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rdoc/generator/pot"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rdoc/generator/template/darkfish/css"}, {"size": 1048, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rdoc/generator/template/darkfish/fonts"}, {"size": 208, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rdoc/generator/template/darkfish/images"}, {"size": 208, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rdoc/generator/template/darkfish/js"}, {"size": 1680, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rdoc/generator/template/darkfish"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rdoc/generator/template/json_index/js"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rdoc/generator/template/json_index"}, {"size": 1704, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rdoc/generator/template"}, {"size": 1808, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rdoc/generator"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rdoc/i18n"}, {"size": 136, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rdoc/markdown"}, {"size": 416, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rdoc/markup"}, {"size": 232, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rdoc/parser"}, {"size": 120, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rdoc/rd"}, {"size": 112, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rdoc/ri"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rdoc/stats"}, {"size": 4472, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rdoc"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rexml/dtd"}, {"size": 32, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rexml/formatters"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rexml/light"}, {"size": 152, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rexml/parsers"}, {"size": 48, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rexml/validation"}, {"size": 760, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rexml"}, {"size": 80, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rinda"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/ripper"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rss/content"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rss/dublincore"}, {"size": 256, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rss/maker"}, {"size": 680, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rss"}, {"size": 400, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rubygems/commands"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rubygems/core_ext"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rubygems/ext"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rubygems/package/tar_reader"}, {"size": 96, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rubygems/package"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rubygems/request"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rubygems/request_set/lockfile"}, {"size": 88, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rubygems/request_set"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rubygems/resolver/molinillo/lib/molinillo/modules"}, {"size": 112, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rubygems/resolver/molinillo/lib/molinillo"}, {"size": 120, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rubygems/resolver/molinillo/lib"}, {"size": 120, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rubygems/resolver/molinillo"}, {"size": 336, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rubygems/resolver"}, {"size": 48, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rubygems/security"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rubygems/source"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rubygems/ssl_certs"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rubygems/util"}, {"size": 2376, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rubygems"}, {"size": 96, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/shell"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/syslog"}, {"size": 368, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/unicode_normalize"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/universal-darwin9.0"}, {"size": 240, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/uri"}, {"size": 80, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/webrick/httpauth"}, {"size": 88, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/webrick/httpservlet"}, {"size": 488, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/webrick"}, {"size": 184, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/xmlrpc"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/yaml"}, {"size": 14840, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0"}, {"size": 1056, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/cache"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/benchmark/jaro_winkler"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/benchmark/levenshtein"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/benchmark"}, {"size": 312, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/doc"}, {"size": 64, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/evaluation"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/lib/did_you_mean/core_ext"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/lib/did_you_mean/extra_features"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/lib/did_you_mean/spell_checkers/name_error_checkers"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/lib/did_you_mean/spell_checkers"}, {"size": 120, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/lib/did_you_mean"}, {"size": 128, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/lib"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/test/core_ext"}, {"size": 32, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/test/correctable"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/test/edit_distance"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/test/extra_features"}, {"size": 88, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/test"}, {"size": 688, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/minitest-5.8.5/lib/hoe"}, {"size": 184, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/minitest-5.8.5/lib/minitest"}, {"size": 232, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/minitest-5.8.5/lib"}, {"size": 200, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/minitest-5.8.5/test/minitest"}, {"size": 200, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/minitest-5.8.5/test"}, {"size": 576, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/minitest-5.8.5"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/net-telnet-0.1.1/bin"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/net-telnet-0.1.1/lib/net/telnet"}, {"size": 72, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/net-telnet-0.1.1/lib/net"}, {"size": 80, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/net-telnet-0.1.1/lib"}, {"size": 128, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/net-telnet-0.1.1"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/power_assert-0.2.6/lib/power_assert"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/power_assert-0.2.6/lib"}, {"size": 32, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/power_assert-0.2.6/test"}, {"size": 120, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/power_assert-0.2.6"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/rake-10.4.2/bin"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/rake-10.4.2/doc/example"}, {"size": 280, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/rake-10.4.2/doc/release_notes"}, {"size": 456, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/rake-10.4.2/doc"}, {"size": 48, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/rake-10.4.2/lib/rake/contrib"}, {"size": 48, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/rake-10.4.2/lib/rake/ext"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/rake-10.4.2/lib/rake/loaders"}, {"size": 600, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/rake-10.4.2/lib/rake"}, {"size": 608, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/rake-10.4.2/lib"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/rake-10.4.2/rakelib"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/rake-10.4.2/test/support"}, {"size": 592, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/rake-10.4.2/test"}, {"size": 1784, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/rake-10.4.2"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/rdoc-4.2.1/bin"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/rdoc-4.2.1"}, {"size": 64, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/test-unit-3.1.5/doc/text"}, {"size": 64, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/test-unit-3.1.5/doc"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/test-unit-3.1.5/lib/test/unit/collector"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/test-unit-3.1.5/lib/test/unit/runner"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/test-unit-3.1.5/lib/test/unit/ui/console"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/test-unit-3.1.5/lib/test/unit/ui/emacs"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/test-unit-3.1.5/lib/test/unit/ui/xml"}, {"size": 104, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/test-unit-3.1.5/lib/test/unit/ui"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/test-unit-3.1.5/lib/test/unit/util"}, {"size": 752, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/test-unit-3.1.5/lib/test/unit"}, {"size": 784, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/test-unit-3.1.5/lib/test"}, {"size": 792, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/test-unit-3.1.5/lib"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/test-unit-3.1.5/sample"}, {"size": 80, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/test-unit-3.1.5/test/collector"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/test-unit-3.1.5/test/fixtures"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/test-unit-3.1.5/test/ui"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/test-unit-3.1.5/test/util"}, {"size": 648, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/test-unit-3.1.5/test"}, {"size": 1696, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/test-unit-3.1.5"}, {"size": 5008, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems"}, {"size": 48, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/specifications/default"}, {"size": 112, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/specifications"}, {"size": 6176, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0"}, {"size": 6176, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems"}, {"size": 21016, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby"}, {"size": 34456, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib"}, {"size": 512, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/libexec"}, {"size": 72, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/share/man/man1"}, {"size": 72, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/share/man"}, {"size": 72, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/share"}, {"size": 71512, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2"}, {"size": 0, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/.bottle/var/homebrew/locks"}, {"size": 0, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/.bottle/var/homebrew"}, {"size": 0, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/.bottle/var"}, {"size": 0, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/.bottle"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/.brew"}, {"size": 18632, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/bin"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/include/ruby-2.6.0/ruby/backward"}, {"size": 584, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/include/ruby-2.6.0/ruby"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/include/ruby-2.6.0/x86_64-darwin13/ruby"}, {"size": 1288, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/include/ruby-2.6.0/x86_64-darwin13"}, {"size": 1880, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/include/ruby-2.6.0"}, {"size": 1880, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/include"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/pkgconfig"}, {"size": 48, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bigdecimal"}, {"size": 272, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/cli"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/compact_index_client"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/fetcher"}, {"size": 32, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/installer"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/plugin/api"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/plugin/installer"}, {"size": 96, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/plugin"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/resolver"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/settings"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/source/git"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/source/path"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/source/rubygems"}, {"size": 136, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/source"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/ssl_certs/index.rubygems.org"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/ssl_certs/rubygems.global.ssl.fastly.net"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/ssl_certs/rubygems.org"}, {"size": 32, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/ssl_certs"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/templates/newgem/bin"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/templates/newgem/exe"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/templates/newgem/ext/newgem"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/templates/newgem/ext"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/templates/newgem/lib/newgem"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/templates/newgem/lib"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/templates/newgem/spec"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/templates/newgem/test"}, {"size": 168, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/templates/newgem"}, {"size": 208, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/templates"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/ui"}, {"size": 96, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/fileutils/lib"}, {"size": 96, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/fileutils"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/molinillo/lib/molinillo/delegates"}, {"size": 80, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/molinillo/lib/molinillo/dependency_graph"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/molinillo/lib/molinillo/modules"}, {"size": 248, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/molinillo/lib/molinillo"}, {"size": 256, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/molinillo/lib"}, {"size": 256, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/molinillo"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/net-http-persistent/lib/net/http/persistent"}, {"size": 96, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/net-http-persistent/lib/net/http"}, {"size": 96, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/net-http-persistent/lib/net"}, {"size": 96, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/net-http-persistent/lib"}, {"size": 96, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/net-http-persistent"}, {"size": 80, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/thor/lib/thor/actions"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/thor/lib/thor/core_ext"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/thor/lib/thor/line_editor"}, {"size": 48, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/thor/lib/thor/parser"}, {"size": 64, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/thor/lib/thor/shell"}, {"size": 456, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/thor/lib/thor"}, {"size": 488, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/thor/lib"}, {"size": 488, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/thor"}, {"size": 936, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor"}, {"size": 2840, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/cgi/session"}, {"size": 216, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/cgi"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/csv/core_ext"}, {"size": 184, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/csv"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/digest"}, {"size": 224, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/drb"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/e2mmap"}, {"size": 96, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/fiddle"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/fileutils"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/forwardable"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/io/console"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/io"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/irb/cmd"}, {"size": 72, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/irb/ext"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/irb/lc/ja"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/irb/lc"}, {"size": 488, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/irb"}, {"size": 104, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/json/add"}, {"size": 160, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/json"}, {"size": 64, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/matrix"}, {"size": 152, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/net/http"}, {"size": 720, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/net"}, {"size": 136, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/openssl"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/optparse"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/psych/handlers"}, {"size": 32, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/psych/json"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/psych/nodes"}, {"size": 88, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/psych/visitors"}, {"size": 344, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/psych"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/racc"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/context"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/generator/pot"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/generator/template/darkfish/css"}, {"size": 1048, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/generator/template/darkfish/fonts"}, {"size": 208, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/generator/template/darkfish/images"}, {"size": 208, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/generator/template/darkfish/js"}, {"size": 1680, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/generator/template/darkfish"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/generator/template/json_index/js"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/generator/template/json_index"}, {"size": 1704, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/generator/template"}, {"size": 1816, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/generator"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/i18n"}, {"size": 136, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/markdown"}, {"size": 416, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/markup"}, {"size": 280, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/parser"}, {"size": 120, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/rd"}, {"size": 120, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/ri"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/stats"}, {"size": 4448, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rexml/dtd"}, {"size": 32, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rexml/formatters"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rexml/light"}, {"size": 160, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rexml/parsers"}, {"size": 48, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rexml/validation"}, {"size": 800, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rexml"}, {"size": 80, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rinda"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/ripper"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rss/content"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rss/dublincore"}, {"size": 256, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rss/maker"}, {"size": 704, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rss"}, {"size": 448, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/commands"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/core_ext"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/ext"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/package/tar_reader"}, {"size": 96, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/package"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/request"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/request_set/lockfile"}, {"size": 88, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/request_set"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/delegates"}, {"size": 72, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/dependency_graph"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/modules"}, {"size": 192, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo"}, {"size": 200, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib"}, {"size": 200, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/resolver/molinillo"}, {"size": 416, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/resolver"}, {"size": 48, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/security"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/source"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/ssl_certs/index.rubygems.org"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/ssl_certs/rubygems.global.ssl.fastly.net"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/ssl_certs/rubygems.org"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/ssl_certs"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/util"}, {"size": 2568, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems"}, {"size": 96, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/shell"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/syslog"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/thwait"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/tracer"}, {"size": 448, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/unicode_normalize"}, {"size": 256, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/uri"}, {"size": 88, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/webrick/httpauth"}, {"size": 88, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/webrick/httpservlet"}, {"size": 512, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/webrick"}, {"size": 32, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/x86_64-darwin13"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/yaml"}, {"size": 18120, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0"}, {"size": 776, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/cache"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/bundler-1.17.2/exe"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/bundler-1.17.2"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/benchmark/jaro_winkler"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/benchmark/levenshtein"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/benchmark"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/doc"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/core_ext"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/experimental"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/formatters"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/spell_checkers/name_error_checkers"}, {"size": 48, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/spell_checkers"}, {"size": 136, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean"}, {"size": 144, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/lib"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/test/core_ext"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/test/edit_distance"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/test/experimental"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/test/fixtures"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/test/spell_checking"}, {"size": 104, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/test"}, {"size": 0, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/tmp"}, {"size": 424, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/irb-1.0.0/exe"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/irb-1.0.0"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/minitest-5.11.3/lib/hoe"}, {"size": 184, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/minitest-5.11.3/lib/minitest"}, {"size": 240, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/minitest-5.11.3/lib"}, {"size": 224, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/minitest-5.11.3/test/minitest"}, {"size": 224, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/minitest-5.11.3/test"}, {"size": 632, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/minitest-5.11.3"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/net-telnet-0.2.0/bin"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/net-telnet-0.2.0/lib/net/telnet"}, {"size": 72, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/net-telnet-0.2.0/lib/net"}, {"size": 80, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/net-telnet-0.2.0/lib"}, {"size": 152, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/net-telnet-0.2.0"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/power_assert-1.1.3/bin"}, {"size": 72, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/power_assert-1.1.3/lib/power_assert"}, {"size": 80, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/power_assert-1.1.3/lib"}, {"size": 168, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/power_assert-1.1.3"}, {"size": 48, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rake-12.3.2/bin"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rake-12.3.2/doc/example"}, {"size": 168, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rake-12.3.2/doc"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rake-12.3.2/exe"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rake-12.3.2/lib/rake/ext"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rake-12.3.2/lib/rake/loaders"}, {"size": 496, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rake-12.3.2/lib/rake"}, {"size": 504, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rake-12.3.2/lib"}, {"size": 944, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rake-12.3.2"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rdoc-6.1.0/exe"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rdoc-6.1.0"}, {"size": 96, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/doc/text"}, {"size": 96, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/doc"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/lib/test/unit/collector"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/lib/test/unit/runner"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/lib/test/unit/ui/console"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/lib/test/unit/ui/emacs"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/lib/test/unit/ui/xml"}, {"size": 104, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/lib/test/unit/ui"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/lib/test/unit/util"}, {"size": 792, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/lib/test/unit"}, {"size": 824, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/lib/test"}, {"size": 832, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/lib"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/sample"}, {"size": 80, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/test/collector"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/test/fixtures"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/test/ui"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/test/util"}, {"size": 664, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/test"}, {"size": 1784, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/xmlrpc-0.3.0/bin"}, {"size": 168, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/xmlrpc-0.3.0/lib/xmlrpc"}, {"size": 184, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/xmlrpc-0.3.0/lib"}, {"size": 256, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/xmlrpc-0.3.0"}, {"size": 4400, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems"}, {"size": 256, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/specifications/default"}, {"size": 320, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/specifications"}, {"size": 5496, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0"}, {"size": 5496, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems"}, {"size": 23616, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby"}, {"size": 31992, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib"}, {"size": 512, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/libexec"}, {"size": 368, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/share/man/man1"}, {"size": 48, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/share/man/man5"}, {"size": 416, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/share/man"}, {"size": 416, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/share"}, {"size": 59088, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3"}, {"size": 130608, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby"}, {"size": 138984, "name": "/usr/local/Homebrew/Library/Homebrew/vendor"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/version"}, {"size": 151032, "name": "/usr/local/Homebrew/Library/Homebrew"}, {"size": 88, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/hooks"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/info"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/logs/refs/heads"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/logs/refs/remotes/origin"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/logs/refs/remotes"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/logs/refs"}, {"size": 32, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/logs"}, {"size": 0, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/objects/info"}, {"size": 199520, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/objects/pack"}, {"size": 199520, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/objects"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/refs/heads"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/refs/remotes/origin"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/refs/remotes"}, {"size": 0, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/refs/tags"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/refs"}, {"size": 200584, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.github/ISSUE_TEMPLATE"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.github/workflows"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.github"}, {"size": 1776, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/Aliases"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/cmd"}, {"size": 41040, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/Formula"}, {"size": 243520, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core"}, {"size": 243520, "name": "/usr/local/Homebrew/Library/Taps/homebrew"}, {"size": 243520, "name": "/usr/local/Homebrew/Library/Taps"}, {"size": 394600, "name": "/usr/local/Homebrew/Library"}, {"size": 144, "name": "/usr/local/Homebrew/manpages"}, {"size": 471560, "name": "/usr/local/Homebrew"}, {"size": 64, "name": "/usr/local/include"}, {"size": 40, "name": "/usr/local/lib/pkgconfig"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/__pycache__"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/ifconfig_parser-0.0.5.dist-info"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ifconfigparser/__pycache__"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/ifconfigparser"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/jc/__pycache__"}, {"size": 376, "name": "/usr/local/lib/python3.7/site-packages/jc/parsers/__pycache__"}, {"size": 752, "name": "/usr/local/lib/python3.7/site-packages/jc/parsers"}, {"size": 816, "name": "/usr/local/lib/python3.7/site-packages/jc"}, {"size": 128, "name": "/usr/local/lib/python3.7/site-packages/jc-1.5.1.dist-info"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/pip/__pycache__"}, {"size": 352, "name": "/usr/local/lib/python3.7/site-packages/pip/_internal/__pycache__"}, {"size": 144, "name": "/usr/local/lib/python3.7/site-packages/pip/_internal/cli/__pycache__"}, {"size": 312, "name": "/usr/local/lib/python3.7/site-packages/pip/_internal/cli"}, {"size": 200, "name": "/usr/local/lib/python3.7/site-packages/pip/_internal/commands/__pycache__"}, {"size": 416, "name": "/usr/local/lib/python3.7/site-packages/pip/_internal/commands"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/pip/_internal/distributions/__pycache__"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/pip/_internal/distributions/source/__pycache__"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/pip/_internal/distributions/source"}, {"size": 88, "name": "/usr/local/lib/python3.7/site-packages/pip/_internal/distributions"}, {"size": 72, "name": "/usr/local/lib/python3.7/site-packages/pip/_internal/models/__pycache__"}, {"size": 144, "name": "/usr/local/lib/python3.7/site-packages/pip/_internal/models"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/pip/_internal/network/__pycache__"}, {"size": 144, "name": "/usr/local/lib/python3.7/site-packages/pip/_internal/network"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/pip/_internal/operations/__pycache__"}, {"size": 136, "name": "/usr/local/lib/python3.7/site-packages/pip/_internal/operations"}, {"size": 168, "name": "/usr/local/lib/python3.7/site-packages/pip/_internal/req/__pycache__"}, {"size": 384, "name": "/usr/local/lib/python3.7/site-packages/pip/_internal/req"}, {"size": 304, "name": "/usr/local/lib/python3.7/site-packages/pip/_internal/utils/__pycache__"}, {"size": 656, "name": "/usr/local/lib/python3.7/site-packages/pip/_internal/utils"}, {"size": 120, "name": "/usr/local/lib/python3.7/site-packages/pip/_internal/vcs/__pycache__"}, {"size": 264, "name": "/usr/local/lib/python3.7/site-packages/pip/_internal/vcs"}, {"size": 3376, "name": "/usr/local/lib/python3.7/site-packages/pip/_internal"}, {"size": 832, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/__pycache__"}, {"size": 104, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/cachecontrol/__pycache__"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/cachecontrol/caches/__pycache__"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/cachecontrol/caches"}, {"size": 280, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/cachecontrol"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/certifi/__pycache__"}, {"size": 600, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/certifi"}, {"size": 912, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/chardet/__pycache__"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/chardet/cli/__pycache__"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/chardet/cli"}, {"size": 1816, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/chardet"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/colorama/__pycache__"}, {"size": 144, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/colorama"}, {"size": 616, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/distlib/__pycache__"}, {"size": 224, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/distlib/_backport/__pycache__"}, {"size": 544, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/distlib/_backport"}, {"size": 2712, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/distlib"}, {"size": 536, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/__pycache__"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/_trie/__pycache__"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/_trie"}, {"size": 96, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/filters/__pycache__"}, {"size": 216, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/filters"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/treeadapters"}, {"size": 104, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__"}, {"size": 232, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/treebuilders"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__"}, {"size": 144, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/treewalkers"}, {"size": 1952, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib"}, {"size": 456, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/idna/__pycache__"}, {"size": 992, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/idna"}, {"size": 80, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/msgpack/__pycache__"}, {"size": 184, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/msgpack"}, {"size": 160, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/packaging/__pycache__"}, {"size": 352, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/packaging"}, {"size": 120, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/pep517/__pycache__"}, {"size": 248, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/pep517"}, {"size": 208, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/pkg_resources/__pycache__"}, {"size": 432, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/pkg_resources"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/progress/__pycache__"}, {"size": 80, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/progress"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/pytoml/__pycache__"}, {"size": 128, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/pytoml"}, {"size": 368, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/requests/__pycache__"}, {"size": 792, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/requests"}, {"size": 240, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/__pycache__"}, {"size": 136, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/contrib/__pycache__"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__"}, {"size": 112, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/contrib/_securetransport"}, {"size": 416, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/contrib"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/packages/__pycache__"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/packages/backports"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname"}, {"size": 200, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/packages"}, {"size": 152, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/util/__pycache__"}, {"size": 336, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/util"}, {"size": 1488, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/webencodings/__pycache__"}, {"size": 152, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/webencodings"}, {"size": 14144, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor"}, {"size": 17552, "name": "/usr/local/lib/python3.7/site-packages/pip"}, {"size": 72, "name": "/usr/local/lib/python3.7/site-packages/pip-19.3.1-py3.7.egg-info"}, {"size": 208, "name": "/usr/local/lib/python3.7/site-packages/pkg_resources/__pycache__"}, {"size": 504, "name": "/usr/local/lib/python3.7/site-packages/pkg_resources/_vendor/__pycache__"}, {"size": 136, "name": "/usr/local/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__"}, {"size": 296, "name": "/usr/local/lib/python3.7/site-packages/pkg_resources/_vendor/packaging"}, {"size": 1376, "name": "/usr/local/lib/python3.7/site-packages/pkg_resources/_vendor"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/pkg_resources/extern/__pycache__"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/pkg_resources/extern"}, {"size": 1824, "name": "/usr/local/lib/python3.7/site-packages/pkg_resources"}, {"size": 576, "name": "/usr/local/lib/python3.7/site-packages/setuptools/__pycache__"}, {"size": 488, "name": "/usr/local/lib/python3.7/site-packages/setuptools/_vendor/__pycache__"}, {"size": 136, "name": "/usr/local/lib/python3.7/site-packages/setuptools/_vendor/packaging/__pycache__"}, {"size": 296, "name": "/usr/local/lib/python3.7/site-packages/setuptools/_vendor/packaging"}, {"size": 1336, "name": "/usr/local/lib/python3.7/site-packages/setuptools/_vendor"}, {"size": 480, "name": "/usr/local/lib/python3.7/site-packages/setuptools/command/__pycache__"}, {"size": 1056, "name": "/usr/local/lib/python3.7/site-packages/setuptools/command"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/setuptools/extern/__pycache__"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/setuptools/extern"}, {"size": 4472, "name": "/usr/local/lib/python3.7/site-packages/setuptools"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/setuptools-41.6.0-py3.7.egg-info"}, {"size": 248, "name": "/usr/local/lib/python3.7/site-packages/tests/__pycache__"}, {"size": 488, "name": "/usr/local/lib/python3.7/site-packages/tests"}, {"size": 96, "name": "/usr/local/lib/python3.7/site-packages/wheel/__pycache__"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/wheel/cli/__pycache__"}, {"size": 88, "name": "/usr/local/lib/python3.7/site-packages/wheel/cli"}, {"size": 296, "name": "/usr/local/lib/python3.7/site-packages/wheel"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/wheel-0.33.6-py3.7.egg-info"}, {"size": 25904, "name": "/usr/local/lib/python3.7/site-packages"}, {"size": 25904, "name": "/usr/local/lib/python3.7"}, {"size": 26040, "name": "/usr/local/lib"}, {"size": 104, "name": "/usr/local/opt"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/_CodeSignature"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/ar.lproj/Welcome.rtfd"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/ar.lproj"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/ca.lproj/Welcome.rtfd"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/ca.lproj"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/cs.lproj/Welcome.rtfd"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/cs.lproj"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/da.lproj/Welcome.rtfd"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/da.lproj"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/Dutch.lproj/Welcome.rtfd"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/Dutch.lproj"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/el.lproj/Welcome.rtfd"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/el.lproj"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/English.lproj/Welcome.rtfd"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/English.lproj"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/es_MX.lproj/Welcome.rtfd"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/es_MX.lproj"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/fi.lproj/Welcome.rtfd"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/fi.lproj"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/French.lproj/Welcome.rtfd"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/French.lproj"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/German.lproj/Welcome.rtfd"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/German.lproj"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/he.lproj/Welcome.rtfd"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/he.lproj"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/hr.lproj/Welcome.rtfd"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/hr.lproj"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/hu.lproj/Welcome.rtfd"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/hu.lproj"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/id.lproj/Welcome.rtfd"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/id.lproj"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/Italian.lproj/Welcome.rtfd"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/Italian.lproj"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/Japanese.lproj/Welcome.rtfd"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/Japanese.lproj"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/ko.lproj/Welcome.rtfd"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/ko.lproj"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/ms.lproj/Welcome.rtfd"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/ms.lproj"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/no.lproj/Welcome.rtfd"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/no.lproj"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/pl.lproj/Welcome.rtfd"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/pl.lproj"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/postflight_actions"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/preflight_actions"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/pt.lproj/Welcome.rtfd"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/pt.lproj"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/pt_PT.lproj/Welcome.rtfd"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/pt_PT.lproj"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/ro.lproj/Welcome.rtfd"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/ro.lproj"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/ru.lproj/Welcome.rtfd"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/ru.lproj"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/sk.lproj/Welcome.rtfd"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/sk.lproj"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/Spanish.lproj/Welcome.rtfd"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/Spanish.lproj"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/sv.lproj/Welcome.rtfd"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/sv.lproj"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/th.lproj/Welcome.rtfd"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/th.lproj"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/tr.lproj/Welcome.rtfd"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/tr.lproj"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/uk.lproj/Welcome.rtfd"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/uk.lproj"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/vi.lproj/Welcome.rtfd"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/vi.lproj"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/zh_CN.lproj/Welcome.rtfd"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/zh_CN.lproj"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/zh_TW.lproj/Welcome.rtfd"}, {"size": 0, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/zh_TW.lproj"}, {"size": 64, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources"}, {"size": 72, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents"}, {"size": 72, "name": "/usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg"}, {"size": 72, "name": "/usr/local/remotedesktop"}, {"size": 0, "name": "/usr/local/sbin"}, {"size": 8, "name": "/usr/local/share/aclocal"}, {"size": 32, "name": "/usr/local/share/doc"}, {"size": 8, "name": "/usr/local/share/fish/vendor_completions.d"}, {"size": 8, "name": "/usr/local/share/fish"}, {"size": 16, "name": "/usr/local/share/info"}, {"size": 264, "name": "/usr/local/share/man/man1"}, {"size": 8, "name": "/usr/local/share/man/man3"}, {"size": 280, "name": "/usr/local/share/man"}, {"size": 16, "name": "/usr/local/share/zsh/site-functions"}, {"size": 16, "name": "/usr/local/share/zsh"}, {"size": 360, "name": "/usr/local/share"}, {"size": 48, "name": "/usr/local/var/homebrew/linked"}, {"size": 0, "name": "/usr/local/var/homebrew/locks"}, {"size": 48, "name": "/usr/local/var/homebrew"}, {"size": 48, "name": "/usr/local/var"}, {"size": 900768, "name": "/usr/local"}, {"size": 32584, "name": "/usr/sbin"}, {"size": 200, "name": "/usr/share/apr-1/build-1"}, {"size": 200, "name": "/usr/share/apr-1"}, {"size": 0, "name": "/usr/share/calendar/de_AT.ISO_8859-15"}, {"size": 16, "name": "/usr/share/calendar/de_DE.ISO8859-1"}, {"size": 0, "name": "/usr/share/calendar/de_DE.ISO8859-15"}, {"size": 32, "name": "/usr/share/calendar/fr_FR.ISO8859-1"}, {"size": 0, "name": "/usr/share/calendar/fr_FR.ISO8859-15"}, {"size": 0, "name": "/usr/share/calendar/hr_HR.ISO8859-2"}, {"size": 16, "name": "/usr/share/calendar/hu_HU.ISO8859-2"}, {"size": 0, "name": "/usr/share/calendar/ru_RU.KOI8-R"}, {"size": 0, "name": "/usr/share/calendar/uk_UA.KOI8-U"}, {"size": 176, "name": "/usr/share/calendar"}, {"size": 0, "name": "/usr/share/CoreDuetDaemonConfig.bundle/Contents/_CodeSignature"}, {"size": 0, "name": "/usr/share/CoreDuetDaemonConfig.bundle/Contents/Resources/en.lproj"}, {"size": 0, "name": "/usr/share/CoreDuetDaemonConfig.bundle/Contents/Resources"}, {"size": 0, "name": "/usr/share/CoreDuetDaemonConfig.bundle/Contents"}, {"size": 0, "name": "/usr/share/CoreDuetDaemonConfig.bundle"}, {"size": 1528, "name": "/usr/share/cracklib"}, {"size": 0, "name": "/usr/share/CSI"}, {"size": 0, "name": "/usr/share/cups/banners"}, {"size": 0, "name": "/usr/share/cups/data"}, {"size": 16, "name": "/usr/share/cups/drv"}, {"size": 0, "name": "/usr/share/cups/examples"}, {"size": 11776, "name": "/usr/share/cups/ipptool"}, {"size": 0, "name": "/usr/share/cups/mime"}, {"size": 0, "name": "/usr/share/cups/model"}, {"size": 0, "name": "/usr/share/cups/ppdc"}, {"size": 0, "name": "/usr/share/cups/profiles"}, {"size": 0, "name": "/usr/share/cups/templates"}, {"size": 11792, "name": "/usr/share/cups"}, {"size": 0, "name": "/usr/share/current-os.sdk/_CodeSignature"}, {"size": 0, "name": "/usr/share/current-os.sdk"}, {"size": 2904, "name": "/usr/share/dict"}, {"size": 3192, "name": "/usr/share/doc/bash"}, {"size": 856, "name": "/usr/share/doc/cups/help"}, {"size": 568, "name": "/usr/share/doc/cups/images"}, {"size": 1440, "name": "/usr/share/doc/cups"}, {"size": 152, "name": "/usr/share/doc/groff/1.19.2/examples/mom"}, {"size": 480, "name": "/usr/share/doc/groff/1.19.2/examples"}, {"size": 680, "name": "/usr/share/doc/groff/1.19.2/html/mom"}, {"size": 680, "name": "/usr/share/doc/groff/1.19.2/html"}, {"size": 1648, "name": "/usr/share/doc/groff/1.19.2"}, {"size": 1648, "name": "/usr/share/doc/groff"}, {"size": 72, "name": "/usr/share/doc/ntp/description_files"}, {"size": 16, "name": "/usr/share/doc/ntp/drivers/icons"}, {"size": 0, "name": "/usr/share/doc/ntp/drivers/scripts"}, {"size": 216, "name": "/usr/share/doc/ntp/drivers"}, {"size": 64, "name": "/usr/share/doc/ntp/hints"}, {"size": 16, "name": "/usr/share/doc/ntp/icons"}, {"size": 1848, "name": "/usr/share/doc/ntp/pic"}, {"size": 0, "name": "/usr/share/doc/ntp/scripts"}, {"size": 2672, "name": "/usr/share/doc/ntp"}, {"size": 0, "name": "/usr/share/doc/postfix/examples"}, {"size": 2040, "name": "/usr/share/doc/postfix/html"}, {"size": 2920, "name": "/usr/share/doc/postfix"}, {"size": 11872, "name": "/usr/share/doc"}, {"size": 0, "name": "/usr/share/emacs/22.1/etc/e"}, {"size": 0, "name": "/usr/share/emacs/22.1/etc/images/ezimage"}, {"size": 40, "name": "/usr/share/emacs/22.1/etc/images/gnus"}, {"size": 0, "name": "/usr/share/emacs/22.1/etc/images/gud"}, {"size": 32, "name": "/usr/share/emacs/22.1/etc/images/icons"}, {"size": 0, "name": "/usr/share/emacs/22.1/etc/images/low-color"}, {"size": 0, "name": "/usr/share/emacs/22.1/etc/images/mail"}, {"size": 0, "name": "/usr/share/emacs/22.1/etc/images/smilies"}, {"size": 72, "name": "/usr/share/emacs/22.1/etc/images"}, {"size": 72, "name": "/usr/share/emacs/22.1/etc/tree-widget/default"}, {"size": 72, "name": "/usr/share/emacs/22.1/etc/tree-widget/folder"}, {"size": 144, "name": "/usr/share/emacs/22.1/etc/tree-widget"}, {"size": 8872, "name": "/usr/share/emacs/22.1/etc"}, {"size": 2208, "name": "/usr/share/emacs/22.1/leim/ja-dic"}, {"size": 7752, "name": "/usr/share/emacs/22.1/leim/quail"}, {"size": 9976, "name": "/usr/share/emacs/22.1/leim"}, {"size": 2000, "name": "/usr/share/emacs/22.1/lisp/calc"}, {"size": 1056, "name": "/usr/share/emacs/22.1/lisp/calendar"}, {"size": 2136, "name": "/usr/share/emacs/22.1/lisp/emacs-lisp"}, {"size": 1264, "name": "/usr/share/emacs/22.1/lisp/emulation"}, {"size": 1032, "name": "/usr/share/emacs/22.1/lisp/erc"}, {"size": 744, "name": "/usr/share/emacs/22.1/lisp/eshell"}, {"size": 5544, "name": "/usr/share/emacs/22.1/lisp/gnus"}, {"size": 2168, "name": "/usr/share/emacs/22.1/lisp/international"}, {"size": 760, "name": "/usr/share/emacs/22.1/lisp/language"}, {"size": 1112, "name": "/usr/share/emacs/22.1/lisp/mail"}, {"size": 1200, "name": "/usr/share/emacs/22.1/lisp/mh-e"}, {"size": 1424, "name": "/usr/share/emacs/22.1/lisp/net"}, {"size": 552, "name": "/usr/share/emacs/22.1/lisp/obsolete"}, {"size": 872, "name": "/usr/share/emacs/22.1/lisp/play"}, {"size": 6312, "name": "/usr/share/emacs/22.1/lisp/progmodes"}, {"size": 464, "name": "/usr/share/emacs/22.1/lisp/term"}, {"size": 3376, "name": "/usr/share/emacs/22.1/lisp/textmodes"}, {"size": 472, "name": "/usr/share/emacs/22.1/lisp/url"}, {"size": 46424, "name": "/usr/share/emacs/22.1/lisp"}, {"size": 0, "name": "/usr/share/emacs/22.1/site-lisp"}, {"size": 65272, "name": "/usr/share/emacs/22.1"}, {"size": 0, "name": "/usr/share/emacs/site-lisp"}, {"size": 65272, "name": "/usr/share/emacs"}, {"size": 0, "name": "/usr/share/examples/DTTk"}, {"size": 0, "name": "/usr/share/examples/tnftpd"}, {"size": 0, "name": "/usr/share/examples"}, {"size": 232, "name": "/usr/share/file/magic"}, {"size": 600, "name": "/usr/share/file"}, {"size": 0, "name": "/usr/share/ftpd/examples"}, {"size": 0, "name": "/usr/share/ftpd"}, {"size": 5272, "name": "/usr/share/germantok"}, {"size": 0, "name": "/usr/share/groff/1.19.2/font/devascii"}, {"size": 0, "name": "/usr/share/groff/1.19.2/font/devdvi/generate"}, {"size": 208, "name": "/usr/share/groff/1.19.2/font/devdvi"}, {"size": 144, "name": "/usr/share/groff/1.19.2/font/devhtml"}, {"size": 0, "name": "/usr/share/groff/1.19.2/font/devlatin1"}, {"size": 192, "name": "/usr/share/groff/1.19.2/font/devlbp"}, {"size": 16, "name": "/usr/share/groff/1.19.2/font/devlj4/generate"}, {"size": 808, "name": "/usr/share/groff/1.19.2/font/devlj4"}, {"size": 16, "name": "/usr/share/groff/1.19.2/font/devps/generate"}, {"size": 512, "name": "/usr/share/groff/1.19.2/font/devps"}, {"size": 64, "name": "/usr/share/groff/1.19.2/font/devutf8"}, {"size": 1928, "name": "/usr/share/groff/1.19.2/font"}, {"size": 32, "name": "/usr/share/groff/1.19.2/tmac/mdoc"}, {"size": 0, "name": "/usr/share/groff/1.19.2/tmac/mm"}, {"size": 648, "name": "/usr/share/groff/1.19.2/tmac"}, {"size": 2576, "name": "/usr/share/groff/1.19.2"}, {"size": 0, "name": "/usr/share/groff/site-font"}, {"size": 0, "name": "/usr/share/groff/site-tmac"}, {"size": 2576, "name": "/usr/share/groff"}, {"size": 16, "name": "/usr/share/hiutil"}, {"size": 0, "name": "/usr/share/httpd/build"}, {"size": 0, "name": "/usr/share/httpd/error/include"}, {"size": 56, "name": "/usr/share/httpd/error"}, {"size": 512, "name": "/usr/share/httpd/icons/small"}, {"size": 2112, "name": "/usr/share/httpd/icons"}, {"size": 2168, "name": "/usr/share/httpd"}, {"size": 23808, "name": "/usr/share/icu"}, {"size": 11912, "name": "/usr/share/info"}, {"size": 40, "name": "/usr/share/java/Stubs"}, {"size": 40, "name": "/usr/share/java"}, {"size": 0, "name": "/usr/share/kdrl.bundle/_CodeSignature"}, {"size": 0, "name": "/usr/share/kdrl.bundle"}, {"size": 632, "name": "/usr/share/kpep"}, {"size": 23488, "name": "/usr/share/langid"}, {"size": 8, "name": "/usr/share/locale/af_ZA/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/af_ZA"}, {"size": 0, "name": "/usr/share/locale/af_ZA.ISO8859-1/LC_MESSAGES"}, {"size": 24, "name": "/usr/share/locale/af_ZA.ISO8859-1"}, {"size": 8, "name": "/usr/share/locale/af_ZA.ISO8859-15/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/af_ZA.ISO8859-15"}, {"size": 8, "name": "/usr/share/locale/af_ZA.UTF-8/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/af_ZA.UTF-8"}, {"size": 0, "name": "/usr/share/locale/am_ET/LC_MESSAGES"}, {"size": 8, "name": "/usr/share/locale/am_ET"}, {"size": 0, "name": "/usr/share/locale/am_ET.UTF-8/LC_MESSAGES"}, {"size": 8, "name": "/usr/share/locale/am_ET.UTF-8"}, {"size": 0, "name": "/usr/share/locale/be_BY/LC_MESSAGES"}, {"size": 24, "name": "/usr/share/locale/be_BY"}, {"size": 0, "name": "/usr/share/locale/be_BY.CP1131/LC_MESSAGES"}, {"size": 8, "name": "/usr/share/locale/be_BY.CP1131"}, {"size": 0, "name": "/usr/share/locale/be_BY.CP1251/LC_MESSAGES"}, {"size": 8, "name": "/usr/share/locale/be_BY.CP1251"}, {"size": 0, "name": "/usr/share/locale/be_BY.ISO8859-5/LC_MESSAGES"}, {"size": 16, "name": "/usr/share/locale/be_BY.ISO8859-5"}, {"size": 0, "name": "/usr/share/locale/be_BY.UTF-8/LC_MESSAGES"}, {"size": 24, "name": "/usr/share/locale/be_BY.UTF-8"}, {"size": 0, "name": "/usr/share/locale/bg_BG/LC_MESSAGES"}, {"size": 24, "name": "/usr/share/locale/bg_BG"}, {"size": 0, "name": "/usr/share/locale/bg_BG.CP1251/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/bg_BG.CP1251"}, {"size": 0, "name": "/usr/share/locale/bg_BG.UTF-8/LC_MESSAGES"}, {"size": 24, "name": "/usr/share/locale/bg_BG.UTF-8"}, {"size": 8, "name": "/usr/share/locale/ca_ES/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/ca_ES"}, {"size": 0, "name": "/usr/share/locale/ca_ES.ISO8859-1/LC_MESSAGES"}, {"size": 8, "name": "/usr/share/locale/ca_ES.ISO8859-1"}, {"size": 8, "name": "/usr/share/locale/ca_ES.ISO8859-15/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/ca_ES.ISO8859-15"}, {"size": 8, "name": "/usr/share/locale/ca_ES.UTF-8/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/ca_ES.UTF-8"}, {"size": 40, "name": "/usr/share/locale/cs/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/cs"}, {"size": 8, "name": "/usr/share/locale/cs_CZ/LC_MESSAGES"}, {"size": 32, "name": "/usr/share/locale/cs_CZ"}, {"size": 0, "name": "/usr/share/locale/cs_CZ.ISO8859-2/LC_MESSAGES"}, {"size": 8, "name": "/usr/share/locale/cs_CZ.ISO8859-2"}, {"size": 8, "name": "/usr/share/locale/cs_CZ.UTF-8/LC_MESSAGES"}, {"size": 32, "name": "/usr/share/locale/cs_CZ.UTF-8"}, {"size": 48, "name": "/usr/share/locale/da/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/da"}, {"size": 8, "name": "/usr/share/locale/da_DK/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/da_DK"}, {"size": 0, "name": "/usr/share/locale/da_DK.ISO8859-1/LC_MESSAGES"}, {"size": 16, "name": "/usr/share/locale/da_DK.ISO8859-1"}, {"size": 8, "name": "/usr/share/locale/da_DK.ISO8859-15/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/da_DK.ISO8859-15"}, {"size": 8, "name": "/usr/share/locale/da_DK.UTF-8/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/da_DK.UTF-8"}, {"size": 72, "name": "/usr/share/locale/de/LC_MESSAGES"}, {"size": 72, "name": "/usr/share/locale/de"}, {"size": 8, "name": "/usr/share/locale/de_AT/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/de_AT"}, {"size": 8, "name": "/usr/share/locale/de_AT.ISO8859-1/LC_MESSAGES"}, {"size": 32, "name": "/usr/share/locale/de_AT.ISO8859-1"}, {"size": 8, "name": "/usr/share/locale/de_AT.ISO8859-15/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/de_AT.ISO8859-15"}, {"size": 8, "name": "/usr/share/locale/de_AT.UTF-8/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/de_AT.UTF-8"}, {"size": 8, "name": "/usr/share/locale/de_CH/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/de_CH"}, {"size": 8, "name": "/usr/share/locale/de_CH.ISO8859-1/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/de_CH.ISO8859-1"}, {"size": 8, "name": "/usr/share/locale/de_CH.ISO8859-15/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/de_CH.ISO8859-15"}, {"size": 8, "name": "/usr/share/locale/de_CH.UTF-8/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/de_CH.UTF-8"}, {"size": 8, "name": "/usr/share/locale/de_DE/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/de_DE"}, {"size": 0, "name": "/usr/share/locale/de_DE.ISO8859-1/LC_MESSAGES"}, {"size": 8, "name": "/usr/share/locale/de_DE.ISO8859-1"}, {"size": 8, "name": "/usr/share/locale/de_DE.ISO8859-15/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/de_DE.ISO8859-15"}, {"size": 8, "name": "/usr/share/locale/de_DE.UTF-8/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/de_DE.UTF-8"}, {"size": 0, "name": "/usr/share/locale/el_GR/LC_MESSAGES"}, {"size": 32, "name": "/usr/share/locale/el_GR"}, {"size": 0, "name": "/usr/share/locale/el_GR.ISO8859-7/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/el_GR.ISO8859-7"}, {"size": 0, "name": "/usr/share/locale/el_GR.UTF-8/LC_MESSAGES"}, {"size": 32, "name": "/usr/share/locale/el_GR.UTF-8"}, {"size": 8, "name": "/usr/share/locale/en_AU/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/en_AU"}, {"size": 8, "name": "/usr/share/locale/en_AU.ISO8859-1/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/en_AU.ISO8859-1"}, {"size": 8, "name": "/usr/share/locale/en_AU.ISO8859-15/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/en_AU.ISO8859-15"}, {"size": 8, "name": "/usr/share/locale/en_AU.US-ASCII/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/en_AU.US-ASCII"}, {"size": 8, "name": "/usr/share/locale/en_AU.UTF-8/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/en_AU.UTF-8"}, {"size": 8, "name": "/usr/share/locale/en_CA/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/en_CA"}, {"size": 0, "name": "/usr/share/locale/en_CA.ISO8859-1/LC_MESSAGES"}, {"size": 32, "name": "/usr/share/locale/en_CA.ISO8859-1"}, {"size": 8, "name": "/usr/share/locale/en_CA.ISO8859-15/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/en_CA.ISO8859-15"}, {"size": 8, "name": "/usr/share/locale/en_CA.US-ASCII/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/en_CA.US-ASCII"}, {"size": 8, "name": "/usr/share/locale/en_CA.UTF-8/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/en_CA.UTF-8"}, {"size": 8, "name": "/usr/share/locale/en_GB/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/en_GB"}, {"size": 0, "name": "/usr/share/locale/en_GB.ISO8859-1/LC_MESSAGES"}, {"size": 24, "name": "/usr/share/locale/en_GB.ISO8859-1"}, {"size": 8, "name": "/usr/share/locale/en_GB.ISO8859-15/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/en_GB.ISO8859-15"}, {"size": 8, "name": "/usr/share/locale/en_GB.US-ASCII/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/en_GB.US-ASCII"}, {"size": 8, "name": "/usr/share/locale/en_GB.UTF-8/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/en_GB.UTF-8"}, {"size": 8, "name": "/usr/share/locale/en_IE/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/en_IE"}, {"size": 8, "name": "/usr/share/locale/en_IE.UTF-8/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/en_IE.UTF-8"}, {"size": 8, "name": "/usr/share/locale/en_NZ/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/en_NZ"}, {"size": 8, "name": "/usr/share/locale/en_NZ.ISO8859-1/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/en_NZ.ISO8859-1"}, {"size": 8, "name": "/usr/share/locale/en_NZ.ISO8859-15/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/en_NZ.ISO8859-15"}, {"size": 8, "name": "/usr/share/locale/en_NZ.US-ASCII/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/en_NZ.US-ASCII"}, {"size": 8, "name": "/usr/share/locale/en_NZ.UTF-8/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/en_NZ.UTF-8"}, {"size": 8, "name": "/usr/share/locale/en_US/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/en_US"}, {"size": 0, "name": "/usr/share/locale/en_US.ISO8859-1/LC_MESSAGES"}, {"size": 16, "name": "/usr/share/locale/en_US.ISO8859-1"}, {"size": 8, "name": "/usr/share/locale/en_US.ISO8859-15/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/en_US.ISO8859-15"}, {"size": 8, "name": "/usr/share/locale/en_US.US-ASCII/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/en_US.US-ASCII"}, {"size": 8, "name": "/usr/share/locale/en_US.UTF-8/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/en_US.UTF-8"}, {"size": 56, "name": "/usr/share/locale/eo/LC_MESSAGES"}, {"size": 56, "name": "/usr/share/locale/eo"}, {"size": 8, "name": "/usr/share/locale/es_ES/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/es_ES"}, {"size": 0, "name": "/usr/share/locale/es_ES.ISO8859-1/LC_MESSAGES"}, {"size": 8, "name": "/usr/share/locale/es_ES.ISO8859-1"}, {"size": 8, "name": "/usr/share/locale/es_ES.ISO8859-15/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/es_ES.ISO8859-15"}, {"size": 8, "name": "/usr/share/locale/es_ES.UTF-8/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/es_ES.UTF-8"}, {"size": 8, "name": "/usr/share/locale/et_EE/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/et_EE"}, {"size": 0, "name": "/usr/share/locale/et_EE.ISO8859-15/LC_MESSAGES"}, {"size": 8, "name": "/usr/share/locale/et_EE.ISO8859-15"}, {"size": 8, "name": "/usr/share/locale/et_EE.UTF-8/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/et_EE.UTF-8"}, {"size": 8, "name": "/usr/share/locale/eu_ES/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/eu_ES"}, {"size": 0, "name": "/usr/share/locale/eu_ES.ISO8859-1/LC_MESSAGES"}, {"size": 24, "name": "/usr/share/locale/eu_ES.ISO8859-1"}, {"size": 8, "name": "/usr/share/locale/eu_ES.ISO8859-15/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/eu_ES.ISO8859-15"}, {"size": 8, "name": "/usr/share/locale/eu_ES.UTF-8/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/eu_ES.UTF-8"}, {"size": 8, "name": "/usr/share/locale/fi_FI/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/fi_FI"}, {"size": 0, "name": "/usr/share/locale/fi_FI.ISO8859-1/LC_MESSAGES"}, {"size": 16, "name": "/usr/share/locale/fi_FI.ISO8859-1"}, {"size": 8, "name": "/usr/share/locale/fi_FI.ISO8859-15/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/fi_FI.ISO8859-15"}, {"size": 8, "name": "/usr/share/locale/fi_FI.UTF-8/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/fi_FI.UTF-8"}, {"size": 72, "name": "/usr/share/locale/fr/LC_MESSAGES"}, {"size": 72, "name": "/usr/share/locale/fr"}, {"size": 8, "name": "/usr/share/locale/fr_BE/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/fr_BE"}, {"size": 0, "name": "/usr/share/locale/fr_BE.ISO8859-1/LC_MESSAGES"}, {"size": 24, "name": "/usr/share/locale/fr_BE.ISO8859-1"}, {"size": 8, "name": "/usr/share/locale/fr_BE.ISO8859-15/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/fr_BE.ISO8859-15"}, {"size": 8, "name": "/usr/share/locale/fr_BE.UTF-8/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/fr_BE.UTF-8"}, {"size": 8, "name": "/usr/share/locale/fr_CA/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/fr_CA"}, {"size": 8, "name": "/usr/share/locale/fr_CA.ISO8859-1/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/fr_CA.ISO8859-1"}, {"size": 8, "name": "/usr/share/locale/fr_CA.ISO8859-15/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/fr_CA.ISO8859-15"}, {"size": 8, "name": "/usr/share/locale/fr_CA.UTF-8/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/fr_CA.UTF-8"}, {"size": 8, "name": "/usr/share/locale/fr_CH/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/fr_CH"}, {"size": 0, "name": "/usr/share/locale/fr_CH.ISO8859-1/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/fr_CH.ISO8859-1"}, {"size": 8, "name": "/usr/share/locale/fr_CH.ISO8859-15/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/fr_CH.ISO8859-15"}, {"size": 8, "name": "/usr/share/locale/fr_CH.UTF-8/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/fr_CH.UTF-8"}, {"size": 8, "name": "/usr/share/locale/fr_FR/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/fr_FR"}, {"size": 0, "name": "/usr/share/locale/fr_FR.ISO8859-1/LC_MESSAGES"}, {"size": 16, "name": "/usr/share/locale/fr_FR.ISO8859-1"}, {"size": 8, "name": "/usr/share/locale/fr_FR.ISO8859-15/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/fr_FR.ISO8859-15"}, {"size": 8, "name": "/usr/share/locale/fr_FR.UTF-8/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/fr_FR.UTF-8"}, {"size": 48, "name": "/usr/share/locale/he/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/he"}, {"size": 0, "name": "/usr/share/locale/he_IL/LC_MESSAGES"}, {"size": 24, "name": "/usr/share/locale/he_IL"}, {"size": 0, "name": "/usr/share/locale/he_IL.UTF-8/LC_MESSAGES"}, {"size": 24, "name": "/usr/share/locale/he_IL.UTF-8"}, {"size": 0, "name": "/usr/share/locale/hi_IN.ISCII-DEV/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/hi_IN.ISCII-DEV"}, {"size": 32, "name": "/usr/share/locale/hr/LC_MESSAGES"}, {"size": 32, "name": "/usr/share/locale/hr"}, {"size": 8, "name": "/usr/share/locale/hr_HR/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/hr_HR"}, {"size": 0, "name": "/usr/share/locale/hr_HR.ISO8859-2/LC_MESSAGES"}, {"size": 16, "name": "/usr/share/locale/hr_HR.ISO8859-2"}, {"size": 8, "name": "/usr/share/locale/hr_HR.UTF-8/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/hr_HR.UTF-8"}, {"size": 8, "name": "/usr/share/locale/hu_HU/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/hu_HU"}, {"size": 0, "name": "/usr/share/locale/hu_HU.ISO8859-2/LC_MESSAGES"}, {"size": 16, "name": "/usr/share/locale/hu_HU.ISO8859-2"}, {"size": 8, "name": "/usr/share/locale/hu_HU.UTF-8/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/hu_HU.UTF-8"}, {"size": 0, "name": "/usr/share/locale/hy_AM/LC_MESSAGES"}, {"size": 24, "name": "/usr/share/locale/hy_AM"}, {"size": 0, "name": "/usr/share/locale/hy_AM.ARMSCII-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/hy_AM.ARMSCII-8"}, {"size": 0, "name": "/usr/share/locale/hy_AM.UTF-8/LC_MESSAGES"}, {"size": 24, "name": "/usr/share/locale/hy_AM.UTF-8"}, {"size": 8, "name": "/usr/share/locale/is_IS/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/is_IS"}, {"size": 0, "name": "/usr/share/locale/is_IS.ISO8859-1/LC_MESSAGES"}, {"size": 8, "name": "/usr/share/locale/is_IS.ISO8859-1"}, {"size": 8, "name": "/usr/share/locale/is_IS.ISO8859-15/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/is_IS.ISO8859-15"}, {"size": 8, "name": "/usr/share/locale/is_IS.UTF-8/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/is_IS.UTF-8"}, {"size": 8, "name": "/usr/share/locale/it_CH/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/it_CH"}, {"size": 8, "name": "/usr/share/locale/it_CH.ISO8859-1/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/it_CH.ISO8859-1"}, {"size": 8, "name": "/usr/share/locale/it_CH.ISO8859-15/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/it_CH.ISO8859-15"}, {"size": 8, "name": "/usr/share/locale/it_CH.UTF-8/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/it_CH.UTF-8"}, {"size": 8, "name": "/usr/share/locale/it_IT/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/it_IT"}, {"size": 0, "name": "/usr/share/locale/it_IT.ISO8859-1/LC_MESSAGES"}, {"size": 16, "name": "/usr/share/locale/it_IT.ISO8859-1"}, {"size": 8, "name": "/usr/share/locale/it_IT.ISO8859-15/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/it_IT.ISO8859-15"}, {"size": 8, "name": "/usr/share/locale/it_IT.UTF-8/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/it_IT.UTF-8"}, {"size": 48, "name": "/usr/share/locale/ja/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/ja"}, {"size": 0, "name": "/usr/share/locale/ja_JP/LC_MESSAGES"}, {"size": 24, "name": "/usr/share/locale/ja_JP"}, {"size": 0, "name": "/usr/share/locale/ja_JP.eucJP/LC_MESSAGES"}, {"size": 8, "name": "/usr/share/locale/ja_JP.eucJP"}, {"size": 0, "name": "/usr/share/locale/ja_JP.SJIS/LC_MESSAGES"}, {"size": 24, "name": "/usr/share/locale/ja_JP.SJIS"}, {"size": 0, "name": "/usr/share/locale/ja_JP.UTF-8/LC_MESSAGES"}, {"size": 24, "name": "/usr/share/locale/ja_JP.UTF-8"}, {"size": 0, "name": "/usr/share/locale/kk_KZ/LC_MESSAGES"}, {"size": 24, "name": "/usr/share/locale/kk_KZ"}, {"size": 0, "name": "/usr/share/locale/kk_KZ.PT154/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/kk_KZ.PT154"}, {"size": 0, "name": "/usr/share/locale/kk_KZ.UTF-8/LC_MESSAGES"}, {"size": 24, "name": "/usr/share/locale/kk_KZ.UTF-8"}, {"size": 8, "name": "/usr/share/locale/ko_KR/LC_MESSAGES"}, {"size": 32, "name": "/usr/share/locale/ko_KR"}, {"size": 8, "name": "/usr/share/locale/ko_KR.CP949/LC_MESSAGES"}, {"size": 56, "name": "/usr/share/locale/ko_KR.CP949"}, {"size": 0, "name": "/usr/share/locale/ko_KR.eucKR/LC_MESSAGES"}, {"size": 16, "name": "/usr/share/locale/ko_KR.eucKR"}, {"size": 8, "name": "/usr/share/locale/ko_KR.UTF-8/LC_MESSAGES"}, {"size": 32, "name": "/usr/share/locale/ko_KR.UTF-8"}, {"size": 0, "name": "/usr/share/locale/la_LN.ISO8859-1"}, {"size": 8, "name": "/usr/share/locale/la_LN.ISO8859-15"}, {"size": 8, "name": "/usr/share/locale/la_LN.ISO8859-2"}, {"size": 8, "name": "/usr/share/locale/la_LN.ISO8859-4"}, {"size": 8, "name": "/usr/share/locale/la_LN.US-ASCII"}, {"size": 8, "name": "/usr/share/locale/lt_LT/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/lt_LT"}, {"size": 0, "name": "/usr/share/locale/lt_LT.ISO8859-13/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/lt_LT.ISO8859-13"}, {"size": 8, "name": "/usr/share/locale/lt_LT.ISO8859-4/LC_MESSAGES"}, {"size": 32, "name": "/usr/share/locale/lt_LT.ISO8859-4"}, {"size": 8, "name": "/usr/share/locale/lt_LT.UTF-8/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/lt_LT.UTF-8"}, {"size": 64, "name": "/usr/share/locale/nb/LC_MESSAGES"}, {"size": 64, "name": "/usr/share/locale/nb"}, {"size": 24, "name": "/usr/share/locale/nl/LC_MESSAGES"}, {"size": 24, "name": "/usr/share/locale/nl"}, {"size": 8, "name": "/usr/share/locale/nl_BE/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/nl_BE"}, {"size": 8, "name": "/usr/share/locale/nl_BE.ISO8859-1/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/nl_BE.ISO8859-1"}, {"size": 8, "name": "/usr/share/locale/nl_BE.ISO8859-15/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/nl_BE.ISO8859-15"}, {"size": 8, "name": "/usr/share/locale/nl_BE.UTF-8/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/nl_BE.UTF-8"}, {"size": 8, "name": "/usr/share/locale/nl_NL/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/nl_NL"}, {"size": 0, "name": "/usr/share/locale/nl_NL.ISO8859-1/LC_MESSAGES"}, {"size": 16, "name": "/usr/share/locale/nl_NL.ISO8859-1"}, {"size": 8, "name": "/usr/share/locale/nl_NL.ISO8859-15/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/nl_NL.ISO8859-15"}, {"size": 8, "name": "/usr/share/locale/nl_NL.UTF-8/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/nl_NL.UTF-8"}, {"size": 56, "name": "/usr/share/locale/no/LC_MESSAGES"}, {"size": 56, "name": "/usr/share/locale/no"}, {"size": 8, "name": "/usr/share/locale/no_NO/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/no_NO"}, {"size": 0, "name": "/usr/share/locale/no_NO.ISO8859-1/LC_MESSAGES"}, {"size": 16, "name": "/usr/share/locale/no_NO.ISO8859-1"}, {"size": 8, "name": "/usr/share/locale/no_NO.ISO8859-15/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/no_NO.ISO8859-15"}, {"size": 8, "name": "/usr/share/locale/no_NO.UTF-8/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/no_NO.UTF-8"}, {"size": 64, "name": "/usr/share/locale/pl/LC_MESSAGES"}, {"size": 64, "name": "/usr/share/locale/pl"}, {"size": 8, "name": "/usr/share/locale/pl_PL/LC_MESSAGES"}, {"size": 32, "name": "/usr/share/locale/pl_PL"}, {"size": 0, "name": "/usr/share/locale/pl_PL.ISO8859-2/LC_MESSAGES"}, {"size": 8, "name": "/usr/share/locale/pl_PL.ISO8859-2"}, {"size": 8, "name": "/usr/share/locale/pl_PL.UTF-8/LC_MESSAGES"}, {"size": 32, "name": "/usr/share/locale/pl_PL.UTF-8"}, {"size": 8, "name": "/usr/share/locale/pt_BR/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/pt_BR"}, {"size": 8, "name": "/usr/share/locale/pt_BR.ISO8859-1/LC_MESSAGES"}, {"size": 24, "name": "/usr/share/locale/pt_BR.ISO8859-1"}, {"size": 8, "name": "/usr/share/locale/pt_BR.UTF-8/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/pt_BR.UTF-8"}, {"size": 8, "name": "/usr/share/locale/pt_PT/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/pt_PT"}, {"size": 0, "name": "/usr/share/locale/pt_PT.ISO8859-1/LC_MESSAGES"}, {"size": 16, "name": "/usr/share/locale/pt_PT.ISO8859-1"}, {"size": 8, "name": "/usr/share/locale/pt_PT.ISO8859-15/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/pt_PT.ISO8859-15"}, {"size": 8, "name": "/usr/share/locale/pt_PT.UTF-8/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/pt_PT.UTF-8"}, {"size": 64, "name": "/usr/share/locale/ro/LC_MESSAGES"}, {"size": 64, "name": "/usr/share/locale/ro"}, {"size": 8, "name": "/usr/share/locale/ro_RO/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/ro_RO"}, {"size": 0, "name": "/usr/share/locale/ro_RO.ISO8859-2/LC_MESSAGES"}, {"size": 16, "name": "/usr/share/locale/ro_RO.ISO8859-2"}, {"size": 8, "name": "/usr/share/locale/ro_RO.UTF-8/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/ro_RO.UTF-8"}, {"size": 64, "name": "/usr/share/locale/ru/LC_MESSAGES"}, {"size": 64, "name": "/usr/share/locale/ru"}, {"size": 0, "name": "/usr/share/locale/ru_RU/LC_MESSAGES"}, {"size": 24, "name": "/usr/share/locale/ru_RU"}, {"size": 0, "name": "/usr/share/locale/ru_RU.CP1251/LC_MESSAGES"}, {"size": 16, "name": "/usr/share/locale/ru_RU.CP1251"}, {"size": 0, "name": "/usr/share/locale/ru_RU.CP866/LC_MESSAGES"}, {"size": 8, "name": "/usr/share/locale/ru_RU.CP866"}, {"size": 0, "name": "/usr/share/locale/ru_RU.ISO8859-5/LC_MESSAGES"}, {"size": 8, "name": "/usr/share/locale/ru_RU.ISO8859-5"}, {"size": 0, "name": "/usr/share/locale/ru_RU.KOI8-R/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ru_RU.KOI8-R"}, {"size": 0, "name": "/usr/share/locale/ru_RU.UTF-8/LC_MESSAGES"}, {"size": 24, "name": "/usr/share/locale/ru_RU.UTF-8"}, {"size": 8, "name": "/usr/share/locale/sk_SK/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/sk_SK"}, {"size": 8, "name": "/usr/share/locale/sk_SK.ISO8859-2/LC_MESSAGES"}, {"size": 24, "name": "/usr/share/locale/sk_SK.ISO8859-2"}, {"size": 8, "name": "/usr/share/locale/sk_SK.UTF-8/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/sk_SK.UTF-8"}, {"size": 8, "name": "/usr/share/locale/sl_SI/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/sl_SI"}, {"size": 0, "name": "/usr/share/locale/sl_SI.ISO8859-2/LC_MESSAGES"}, {"size": 8, "name": "/usr/share/locale/sl_SI.ISO8859-2"}, {"size": 8, "name": "/usr/share/locale/sl_SI.UTF-8/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/sl_SI.UTF-8"}, {"size": 0, "name": "/usr/share/locale/sr_YU/LC_MESSAGES"}, {"size": 32, "name": "/usr/share/locale/sr_YU"}, {"size": 0, "name": "/usr/share/locale/sr_YU.ISO8859-2/LC_MESSAGES"}, {"size": 16, "name": "/usr/share/locale/sr_YU.ISO8859-2"}, {"size": 0, "name": "/usr/share/locale/sr_YU.ISO8859-5/LC_MESSAGES"}, {"size": 8, "name": "/usr/share/locale/sr_YU.ISO8859-5"}, {"size": 0, "name": "/usr/share/locale/sr_YU.UTF-8/LC_MESSAGES"}, {"size": 32, "name": "/usr/share/locale/sr_YU.UTF-8"}, {"size": 64, "name": "/usr/share/locale/sv/LC_MESSAGES"}, {"size": 64, "name": "/usr/share/locale/sv"}, {"size": 8, "name": "/usr/share/locale/sv_SE/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/sv_SE"}, {"size": 0, "name": "/usr/share/locale/sv_SE.ISO8859-1/LC_MESSAGES"}, {"size": 8, "name": "/usr/share/locale/sv_SE.ISO8859-1"}, {"size": 8, "name": "/usr/share/locale/sv_SE.ISO8859-15/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/sv_SE.ISO8859-15"}, {"size": 8, "name": "/usr/share/locale/sv_SE.UTF-8/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/sv_SE.UTF-8"}, {"size": 64, "name": "/usr/share/locale/tr/LC_MESSAGES"}, {"size": 64, "name": "/usr/share/locale/tr"}, {"size": 8, "name": "/usr/share/locale/tr_TR/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/tr_TR"}, {"size": 0, "name": "/usr/share/locale/tr_TR.ISO8859-9/LC_MESSAGES"}, {"size": 16, "name": "/usr/share/locale/tr_TR.ISO8859-9"}, {"size": 8, "name": "/usr/share/locale/tr_TR.UTF-8/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/tr_TR.UTF-8"}, {"size": 0, "name": "/usr/share/locale/uk_UA/LC_MESSAGES"}, {"size": 24, "name": "/usr/share/locale/uk_UA"}, {"size": 0, "name": "/usr/share/locale/uk_UA.ISO8859-5/LC_MESSAGES"}, {"size": 16, "name": "/usr/share/locale/uk_UA.ISO8859-5"}, {"size": 0, "name": "/usr/share/locale/uk_UA.KOI8-U/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/uk_UA.KOI8-U"}, {"size": 0, "name": "/usr/share/locale/uk_UA.UTF-8/LC_MESSAGES"}, {"size": 24, "name": "/usr/share/locale/uk_UA.UTF-8"}, {"size": 24, "name": "/usr/share/locale/UTF-8"}, {"size": 48, "name": "/usr/share/locale/zh_CN/LC_MESSAGES"}, {"size": 72, "name": "/usr/share/locale/zh_CN"}, {"size": 0, "name": "/usr/share/locale/zh_CN.eucCN/LC_MESSAGES"}, {"size": 8, "name": "/usr/share/locale/zh_CN.eucCN"}, {"size": 0, "name": "/usr/share/locale/zh_CN.GB18030/LC_MESSAGES"}, {"size": 80, "name": "/usr/share/locale/zh_CN.GB18030"}, {"size": 0, "name": "/usr/share/locale/zh_CN.GB2312/LC_MESSAGES"}, {"size": 16, "name": "/usr/share/locale/zh_CN.GB2312"}, {"size": 8, "name": "/usr/share/locale/zh_CN.GBK/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/zh_CN.GBK"}, {"size": 0, "name": "/usr/share/locale/zh_CN.UTF-8/LC_MESSAGES"}, {"size": 24, "name": "/usr/share/locale/zh_CN.UTF-8"}, {"size": 8, "name": "/usr/share/locale/zh_HK/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/zh_HK"}, {"size": 8, "name": "/usr/share/locale/zh_HK.Big5HKSCS/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/zh_HK.Big5HKSCS"}, {"size": 8, "name": "/usr/share/locale/zh_HK.UTF-8/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/zh_HK.UTF-8"}, {"size": 32, "name": "/usr/share/locale/zh_TW/LC_MESSAGES"}, {"size": 64, "name": "/usr/share/locale/zh_TW"}, {"size": 0, "name": "/usr/share/locale/zh_TW.Big5/LC_MESSAGES"}, {"size": 16, "name": "/usr/share/locale/zh_TW.Big5"}, {"size": 0, "name": "/usr/share/locale/zh_TW.UTF-8/LC_MESSAGES"}, {"size": 32, "name": "/usr/share/locale/zh_TW.UTF-8"}, {"size": 7664, "name": "/usr/share/locale"}, {"size": 30352, "name": "/usr/share/man/man1"}, {"size": 496, "name": "/usr/share/man/man2"}, {"size": 97600, "name": "/usr/share/man/man3"}, {"size": 264, "name": "/usr/share/man/man4"}, {"size": 2072, "name": "/usr/share/man/man5"}, {"size": 0, "name": "/usr/share/man/man6"}, {"size": 528, "name": "/usr/share/man/man7"}, {"size": 1472, "name": "/usr/share/man/man8"}, {"size": 24, "name": "/usr/share/man/man9"}, {"size": 9960, "name": "/usr/share/man/mann"}, {"size": 143776, "name": "/usr/share/man"}, {"size": 0, "name": "/usr/share/mecabra/common/descriptions/JapaneseBigram.momd"}, {"size": 0, "name": "/usr/share/mecabra/common/descriptions/LearningDictionary.momd"}, {"size": 0, "name": "/usr/share/mecabra/common/descriptions/LearningDictionaryJapanese.momd"}, {"size": 0, "name": "/usr/share/mecabra/common/descriptions"}, {"size": 0, "name": "/usr/share/mecabra/common"}, {"size": 0, "name": "/usr/share/mecabra/ja/conf"}, {"size": 0, "name": "/usr/share/mecabra/ja/lm/Japanese.lm/_CodeSignature"}, {"size": 102624, "name": "/usr/share/mecabra/ja/lm/Japanese.lm"}, {"size": 102624, "name": "/usr/share/mecabra/ja/lm"}, {"size": 131200, "name": "/usr/share/mecabra/ja"}, {"size": 0, "name": "/usr/share/mecabra/updates/com.apple.inputmethod.SCIM.bundle/Contents/_CodeSignature"}, {"size": 0, "name": "/usr/share/mecabra/updates/com.apple.inputmethod.SCIM.bundle/Contents/Resources/Chinese.lm/_CodeSignature"}, {"size": 0, "name": "/usr/share/mecabra/updates/com.apple.inputmethod.SCIM.bundle/Contents/Resources/Chinese.lm"}, {"size": 176, "name": "/usr/share/mecabra/updates/com.apple.inputmethod.SCIM.bundle/Contents/Resources"}, {"size": 176, "name": "/usr/share/mecabra/updates/com.apple.inputmethod.SCIM.bundle/Contents"}, {"size": 176, "name": "/usr/share/mecabra/updates/com.apple.inputmethod.SCIM.bundle"}, {"size": 0, "name": "/usr/share/mecabra/updates/com.apple.inputmethod.TCIM.bundle/Contents/_CodeSignature"}, {"size": 264, "name": "/usr/share/mecabra/updates/com.apple.inputmethod.TCIM.bundle/Contents/Resources"}, {"size": 264, "name": "/usr/share/mecabra/updates/com.apple.inputmethod.TCIM.bundle/Contents"}, {"size": 264, "name": "/usr/share/mecabra/updates/com.apple.inputmethod.TCIM.bundle"}, {"size": 440, "name": "/usr/share/mecabra/updates"}, {"size": 131640, "name": "/usr/share/mecabra"}, {"size": 72, "name": "/usr/share/misc"}, {"size": 16, "name": "/usr/share/php/php/fpm"}, {"size": 16, "name": "/usr/share/php/php"}, {"size": 16, "name": "/usr/share/php"}, {"size": 0, "name": "/usr/share/pmenergy"}, {"size": 16, "name": "/usr/share/sandbox"}, {"size": 544, "name": "/usr/share/screen/utf8encodings"}, {"size": 544, "name": "/usr/share/screen"}, {"size": 0, "name": "/usr/share/skel"}, {"size": 128, "name": "/usr/share/snmp/mib2c-data"}, {"size": 840, "name": "/usr/share/snmp/mibs"}, {"size": 0, "name": "/usr/share/snmp/snmpconf-data/snmp-data"}, {"size": 0, "name": "/usr/share/snmp/snmpconf-data/snmpd-data"}, {"size": 0, "name": "/usr/share/snmp/snmpconf-data/snmptrapd-data"}, {"size": 0, "name": "/usr/share/snmp/snmpconf-data"}, {"size": 1088, "name": "/usr/share/snmp"}, {"size": 0, "name": "/usr/share/tabset"}, {"size": 0, "name": "/usr/share/terminfo/31"}, {"size": 0, "name": "/usr/share/terminfo/32"}, {"size": 0, "name": "/usr/share/terminfo/33"}, {"size": 0, "name": "/usr/share/terminfo/34"}, {"size": 0, "name": "/usr/share/terminfo/35"}, {"size": 0, "name": "/usr/share/terminfo/36"}, {"size": 0, "name": "/usr/share/terminfo/37"}, {"size": 0, "name": "/usr/share/terminfo/38"}, {"size": 0, "name": "/usr/share/terminfo/39"}, {"size": 0, "name": "/usr/share/terminfo/41"}, {"size": 0, "name": "/usr/share/terminfo/45"}, {"size": 0, "name": "/usr/share/terminfo/4c"}, {"size": 0, "name": "/usr/share/terminfo/4d"}, {"size": 0, "name": "/usr/share/terminfo/4e"}, {"size": 0, "name": "/usr/share/terminfo/50"}, {"size": 0, "name": "/usr/share/terminfo/51"}, {"size": 0, "name": "/usr/share/terminfo/58"}, {"size": 0, "name": "/usr/share/terminfo/61"}, {"size": 0, "name": "/usr/share/terminfo/62"}, {"size": 0, "name": "/usr/share/terminfo/63"}, {"size": 0, "name": "/usr/share/terminfo/64"}, {"size": 0, "name": "/usr/share/terminfo/65"}, {"size": 0, "name": "/usr/share/terminfo/66"}, {"size": 0, "name": "/usr/share/terminfo/67"}, {"size": 0, "name": "/usr/share/terminfo/68"}, {"size": 0, "name": "/usr/share/terminfo/69"}, {"size": 0, "name": "/usr/share/terminfo/6a"}, {"size": 0, "name": "/usr/share/terminfo/6b"}, {"size": 0, "name": "/usr/share/terminfo/6c"}, {"size": 0, "name": "/usr/share/terminfo/6d"}, {"size": 0, "name": "/usr/share/terminfo/6e"}, {"size": 0, "name": "/usr/share/terminfo/6f"}, {"size": 0, "name": "/usr/share/terminfo/70"}, {"size": 0, "name": "/usr/share/terminfo/71"}, {"size": 0, "name": "/usr/share/terminfo/72"}, {"size": 0, "name": "/usr/share/terminfo/73"}, {"size": 0, "name": "/usr/share/terminfo/74"}, {"size": 0, "name": "/usr/share/terminfo/75"}, {"size": 0, "name": "/usr/share/terminfo/76"}, {"size": 0, "name": "/usr/share/terminfo/77"}, {"size": 0, "name": "/usr/share/terminfo/78"}, {"size": 0, "name": "/usr/share/terminfo/7a"}, {"size": 0, "name": "/usr/share/terminfo"}, {"size": 16, "name": "/usr/share/texinfo"}, {"size": 0, "name": "/usr/share/thermald.bundle/Contents/_CodeSignature"}, {"size": 0, "name": "/usr/share/thermald.bundle/Contents/Resources"}, {"size": 0, "name": "/usr/share/thermald.bundle/Contents"}, {"size": 0, "name": "/usr/share/thermald.bundle"}, {"size": 90288, "name": "/usr/share/tokenizer/ja"}, {"size": 16440, "name": "/usr/share/tokenizer/ko"}, {"size": 6088, "name": "/usr/share/tokenizer/zh/Hans"}, {"size": 5648, "name": "/usr/share/tokenizer/zh/Hant"}, {"size": 11736, "name": "/usr/share/tokenizer/zh"}, {"size": 118464, "name": "/usr/share/tokenizer"}, {"size": 1704, "name": "/usr/share/ucupdate"}, {"size": 0, "name": "/usr/share/uucp"}, {"size": 160, "name": "/usr/share/vim/vim73/autoload/xml"}, {"size": 784, "name": "/usr/share/vim/vim73/autoload"}, {"size": 0, "name": "/usr/share/vim/vim73/colors"}, {"size": 0, "name": "/usr/share/vim/vim73/compiler"}, {"size": 4768, "name": "/usr/share/vim/vim73/doc"}, {"size": 72, "name": "/usr/share/vim/vim73/ftplugin"}, {"size": 104, "name": "/usr/share/vim/vim73/indent"}, {"size": 32, "name": "/usr/share/vim/vim73/keymap"}, {"size": 704, "name": "/usr/share/vim/vim73/lang"}, {"size": 0, "name": "/usr/share/vim/vim73/macros/hanoi"}, {"size": 0, "name": "/usr/share/vim/vim73/macros/life"}, {"size": 16, "name": "/usr/share/vim/vim73/macros/maze"}, {"size": 0, "name": "/usr/share/vim/vim73/macros/urm"}, {"size": 80, "name": "/usr/share/vim/vim73/macros"}, {"size": 0, "name": "/usr/share/vim/vim73/plugin"}, {"size": 0, "name": "/usr/share/vim/vim73/print"}, {"size": 4408, "name": "/usr/share/vim/vim73/spell"}, {"size": 2072, "name": "/usr/share/vim/vim73/syntax"}, {"size": 24, "name": "/usr/share/vim/vim73/tools"}, {"size": 1632, "name": "/usr/share/vim/vim73/tutor"}, {"size": 14840, "name": "/usr/share/vim/vim73"}, {"size": 14840, "name": "/usr/share/vim"}, {"size": 0, "name": "/usr/share/zoneinfo/Africa"}, {"size": 0, "name": "/usr/share/zoneinfo/America/Argentina"}, {"size": 0, "name": "/usr/share/zoneinfo/America/Indiana"}, {"size": 0, "name": "/usr/share/zoneinfo/America/Kentucky"}, {"size": 0, "name": "/usr/share/zoneinfo/America/North_Dakota"}, {"size": 0, "name": "/usr/share/zoneinfo/America"}, {"size": 0, "name": "/usr/share/zoneinfo/Antarctica"}, {"size": 0, "name": "/usr/share/zoneinfo/Arctic"}, {"size": 0, "name": "/usr/share/zoneinfo/Asia"}, {"size": 0, "name": "/usr/share/zoneinfo/Atlantic"}, {"size": 0, "name": "/usr/share/zoneinfo/Australia"}, {"size": 0, "name": "/usr/share/zoneinfo/Brazil"}, {"size": 0, "name": "/usr/share/zoneinfo/Canada"}, {"size": 0, "name": "/usr/share/zoneinfo/Chile"}, {"size": 0, "name": "/usr/share/zoneinfo/Etc"}, {"size": 0, "name": "/usr/share/zoneinfo/Europe"}, {"size": 0, "name": "/usr/share/zoneinfo/Indian"}, {"size": 0, "name": "/usr/share/zoneinfo/Mexico"}, {"size": 0, "name": "/usr/share/zoneinfo/Pacific"}, {"size": 0, "name": "/usr/share/zoneinfo/US"}, {"size": 24, "name": "/usr/share/zoneinfo"}, {"size": 1264, "name": "/usr/share/zsh/5.0.8/functions"}, {"size": 176, "name": "/usr/share/zsh/5.0.8/help"}, {"size": 0, "name": "/usr/share/zsh/5.0.8/scripts"}, {"size": 1440, "name": "/usr/share/zsh/5.0.8"}, {"size": 0, "name": "/usr/share/zsh/site-functions"}, {"size": 1440, "name": "/usr/share/zsh"}, {"size": 585568, "name": "/usr/share"}, {"size": 17672, "name": "/usr/standalone/i386/EfiLoginUI"}, {"size": 49584, "name": "/usr/standalone/i386"}, {"size": 49592, "name": "/usr/standalone"}, {"size": 992, "name": "/usr/X11/bin"}, {"size": 2376, "name": "/usr/X11/lib"}, {"size": 0, "name": "/usr/X11/libexec"}, {"size": 3368, "name": "/usr/X11"}, {"size": 1823816, "name": "/usr"}] jc-1.17.3/tests/fixtures/osx-10.11.6/du.out000077500000000000000000005046551415226333200200110ustar00rootroot000000000000000 /usr/adic/SRVCLOG/logs/events 0 /usr/adic/SRVCLOG/logs 0 /usr/adic/SRVCLOG 0 /usr/adic 101824 /usr/bin 0 /usr/include/_types 432 /usr/include/apache2 352 /usr/include/apr-1 0 /usr/include/architecture/i386 0 /usr/include/architecture 24 /usr/include/arpa 0 /usr/include/atm 0 /usr/include/bank 80 /usr/include/bsm 0 /usr/include/c++/4.2.1/backward 768 /usr/include/c++/4.2.1/bits 48 /usr/include/c++/4.2.1/debug 0 /usr/include/c++/4.2.1/ext/pb_ds/detail/basic_tree_policy 8 /usr/include/c++/4.2.1/ext/pb_ds/detail/bin_search_tree_ 0 /usr/include/c++/4.2.1/ext/pb_ds/detail/binary_heap_ 0 /usr/include/c++/4.2.1/ext/pb_ds/detail/binomial_heap_ 0 /usr/include/c++/4.2.1/ext/pb_ds/detail/binomial_heap_base_ 16 /usr/include/c++/4.2.1/ext/pb_ds/detail/cc_hash_table_map_ 0 /usr/include/c++/4.2.1/ext/pb_ds/detail/eq_fn 16 /usr/include/c++/4.2.1/ext/pb_ds/detail/gp_hash_table_map_ 0 /usr/include/c++/4.2.1/ext/pb_ds/detail/hash_fn 0 /usr/include/c++/4.2.1/ext/pb_ds/detail/left_child_next_sibling_heap_ 0 /usr/include/c++/4.2.1/ext/pb_ds/detail/list_update_map_ 0 /usr/include/c++/4.2.1/ext/pb_ds/detail/list_update_policy 16 /usr/include/c++/4.2.1/ext/pb_ds/detail/ov_tree_map_ 0 /usr/include/c++/4.2.1/ext/pb_ds/detail/pairing_heap_ 48 /usr/include/c++/4.2.1/ext/pb_ds/detail/pat_trie_ 0 /usr/include/c++/4.2.1/ext/pb_ds/detail/rb_tree_map_ 0 /usr/include/c++/4.2.1/ext/pb_ds/detail/rc_binomial_heap_ 0 /usr/include/c++/4.2.1/ext/pb_ds/detail/resize_policy 0 /usr/include/c++/4.2.1/ext/pb_ds/detail/splay_tree_ 0 /usr/include/c++/4.2.1/ext/pb_ds/detail/thin_heap_ 0 /usr/include/c++/4.2.1/ext/pb_ds/detail/tree_policy 0 /usr/include/c++/4.2.1/ext/pb_ds/detail/trie_policy 0 /usr/include/c++/4.2.1/ext/pb_ds/detail/unordered_iterator 104 /usr/include/c++/4.2.1/ext/pb_ds/detail 144 /usr/include/c++/4.2.1/ext/pb_ds 448 /usr/include/c++/4.2.1/ext 224 /usr/include/c++/4.2.1/tr1 1680 /usr/include/c++/4.2.1 1680 /usr/include/c++ 24 /usr/include/CommonCrypto 0 /usr/include/corpses 120 /usr/include/cups 104 /usr/include/curl 0 /usr/include/default_pager 16 /usr/include/device 88 /usr/include/dispatch 0 /usr/include/editline 8 /usr/include/ffi 32 /usr/include/gssapi 24 /usr/include/hfs 0 /usr/include/i386 0 /usr/include/kern 72 /usr/include/krb5 0 /usr/include/libexslt 0 /usr/include/libkern/i386 0 /usr/include/libkern/machine 32 /usr/include/libkern 136 /usr/include/libxml2/libxml 136 /usr/include/libxml2 40 /usr/include/libxslt 32 /usr/include/mach/i386 0 /usr/include/mach/machine 368 /usr/include/mach 0 /usr/include/mach-o/arm64 0 /usr/include/mach-o/i386 0 /usr/include/mach-o/ppc 0 /usr/include/mach-o/x86_64 112 /usr/include/mach-o 0 /usr/include/mach_debug 0 /usr/include/machine 16 /usr/include/malloc 0 /usr/include/miscfs/devfs 0 /usr/include/miscfs/specfs 0 /usr/include/miscfs/union 0 /usr/include/miscfs 120 /usr/include/net 0 /usr/include/net-snmp/agent/util_funcs 0 /usr/include/net-snmp/agent 112 /usr/include/net-snmp/library 0 /usr/include/net-snmp/machine 0 /usr/include/net-snmp/system 184 /usr/include/net-snmp 152 /usr/include/netinet 40 /usr/include/netinet6 0 /usr/include/netkey 160 /usr/include/nfs 64 /usr/include/objc 88 /usr/include/odmodule 16 /usr/include/os 64 /usr/include/pcap 16 /usr/include/pexpert/i386 0 /usr/include/pexpert/machine 16 /usr/include/pexpert 0 /usr/include/php/ext/date/lib 0 /usr/include/php/ext/date 0 /usr/include/php/ext/dom 0 /usr/include/php/ext/ereg/regex 0 /usr/include/php/ext/ereg 0 /usr/include/php/ext/filter 88 /usr/include/php/ext/gd/libgd 88 /usr/include/php/ext/gd 0 /usr/include/php/ext/hash 0 /usr/include/php/ext/iconv 0 /usr/include/php/ext/json 0 /usr/include/php/ext/libxml 0 /usr/include/php/ext/mbstring/libmbfl/mbfl 0 /usr/include/php/ext/mbstring/libmbfl 24 /usr/include/php/ext/mbstring/oniguruma 24 /usr/include/php/ext/mbstring 8 /usr/include/php/ext/mysqli 80 /usr/include/php/ext/mysqlnd 0 /usr/include/php/ext/pcre 24 /usr/include/php/ext/pdo 0 /usr/include/php/ext/phar 8 /usr/include/php/ext/session 0 /usr/include/php/ext/sockets 0 /usr/include/php/ext/spl 264 /usr/include/php/ext/sqlite3/libsqlite 264 /usr/include/php/ext/sqlite3 184 /usr/include/php/ext/standard 0 /usr/include/php/ext/xml 680 /usr/include/php/ext 0 /usr/include/php/main/streams 96 /usr/include/php/main 0 /usr/include/php/sapi/cli 0 /usr/include/php/sapi 16 /usr/include/php/TSRM 656 /usr/include/php/Zend 1448 /usr/include/php 0 /usr/include/protocols 16 /usr/include/pthread 16 /usr/include/readline 48 /usr/include/rpc 64 /usr/include/rpcsvc 64 /usr/include/sasl 0 /usr/include/secure 0 /usr/include/security/audit 112 /usr/include/security 16 /usr/include/servers 168 /usr/include/simd 0 /usr/include/sys/_pthread 0 /usr/include/sys/_types 688 /usr/include/sys 64 /usr/include/tidy 0 /usr/include/uuid 0 /usr/include/vfs 16 /usr/include/xar 0 /usr/include/xlocale 80 /usr/include/xpc 8888 /usr/include 40 /usr/lib/dtrace 80 /usr/lib/groff/groffer 0 /usr/lib/groff/site-tmac 80 /usr/lib/groff 440 /usr/lib/pam 504 /usr/lib/php/build 736 /usr/lib/php/extensions/no-debug-non-zts-20121212 736 /usr/lib/php/extensions 3112 /usr/lib/php 0 /usr/lib/pkgconfig 1112 /usr/lib/rpcsvc 32 /usr/lib/sa 24 /usr/lib/sasl2/openldap 1192 /usr/lib/sasl2 720 /usr/lib/system/introspection 9616 /usr/lib/system 0 /usr/lib/xpc/support.bundle/Contents/_CodeSignature 56 /usr/lib/xpc/support.bundle/Contents/MacOS 56 /usr/lib/xpc/support.bundle/Contents 56 /usr/lib/xpc/support.bundle 56 /usr/lib/xpc 32 /usr/lib/zsh/5.0.8/zsh/net 1168 /usr/lib/zsh/5.0.8/zsh 1168 /usr/lib/zsh/5.0.8 1168 /usr/lib/zsh 86176 /usr/lib 11464 /usr/libexec/apache2 144 /usr/libexec/ApplicationFirewall 80 /usr/libexec/AppSandbox 224 /usr/libexec/cups/apple 480 /usr/libexec/cups/backend 128 /usr/libexec/cups/cgi-bin 120 /usr/libexec/cups/daemon 0 /usr/libexec/cups/driver 1408 /usr/libexec/cups/filter 32 /usr/libexec/cups/monitor 48 /usr/libexec/cups/notifier 2440 /usr/libexec/cups 112 /usr/libexec/DeveloperTools 0 /usr/libexec/dtrace 160 /usr/libexec/emacs/22.1/mac-apple-darwin 160 /usr/libexec/emacs/22.1 160 /usr/libexec/emacs 16 /usr/libexec/fax 96 /usr/libexec/feedback 0 /usr/libexec/MiniTerm.app/Contents/_CodeSignature 24 /usr/libexec/MiniTerm.app/Contents/MacOS 32 /usr/libexec/MiniTerm.app/Contents/Resources/ar.lproj 40 /usr/libexec/MiniTerm.app/Contents/Resources/ca.lproj 32 /usr/libexec/MiniTerm.app/Contents/Resources/cs.lproj 40 /usr/libexec/MiniTerm.app/Contents/Resources/da.lproj 32 /usr/libexec/MiniTerm.app/Contents/Resources/Dutch.lproj 40 /usr/libexec/MiniTerm.app/Contents/Resources/el.lproj 0 /usr/libexec/MiniTerm.app/Contents/Resources/English.lproj/MiniTerm-windows.nib 0 /usr/libexec/MiniTerm.app/Contents/Resources/English.lproj/MiniTerm.nib 0 /usr/libexec/MiniTerm.app/Contents/Resources/English.lproj 40 /usr/libexec/MiniTerm.app/Contents/Resources/es_MX.lproj 32 /usr/libexec/MiniTerm.app/Contents/Resources/fi.lproj 40 /usr/libexec/MiniTerm.app/Contents/Resources/French.lproj 40 /usr/libexec/MiniTerm.app/Contents/Resources/German.lproj 32 /usr/libexec/MiniTerm.app/Contents/Resources/he.lproj 32 /usr/libexec/MiniTerm.app/Contents/Resources/hr.lproj 32 /usr/libexec/MiniTerm.app/Contents/Resources/hu.lproj 32 /usr/libexec/MiniTerm.app/Contents/Resources/id.lproj 40 /usr/libexec/MiniTerm.app/Contents/Resources/Italian.lproj 32 /usr/libexec/MiniTerm.app/Contents/Resources/Japanese.lproj 32 /usr/libexec/MiniTerm.app/Contents/Resources/ko.lproj 32 /usr/libexec/MiniTerm.app/Contents/Resources/ms.lproj 32 /usr/libexec/MiniTerm.app/Contents/Resources/no.lproj 32 /usr/libexec/MiniTerm.app/Contents/Resources/pl.lproj 32 /usr/libexec/MiniTerm.app/Contents/Resources/pt.lproj 32 /usr/libexec/MiniTerm.app/Contents/Resources/pt_PT.lproj 40 /usr/libexec/MiniTerm.app/Contents/Resources/ro.lproj 32 /usr/libexec/MiniTerm.app/Contents/Resources/ru.lproj 40 /usr/libexec/MiniTerm.app/Contents/Resources/sk.lproj 32 /usr/libexec/MiniTerm.app/Contents/Resources/Spanish.lproj 40 /usr/libexec/MiniTerm.app/Contents/Resources/sv.lproj 40 /usr/libexec/MiniTerm.app/Contents/Resources/th.lproj 32 /usr/libexec/MiniTerm.app/Contents/Resources/tr.lproj 40 /usr/libexec/MiniTerm.app/Contents/Resources/uk.lproj 32 /usr/libexec/MiniTerm.app/Contents/Resources/vi.lproj 32 /usr/libexec/MiniTerm.app/Contents/Resources/zh_CN.lproj 32 /usr/libexec/MiniTerm.app/Contents/Resources/zh_TW.lproj 1152 /usr/libexec/MiniTerm.app/Contents/Resources 1176 /usr/libexec/MiniTerm.app/Contents 1176 /usr/libexec/MiniTerm.app 0 /usr/libexec/postfix/scripts 8376 /usr/libexec/postfix 176 /usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle/Contents/MacOS 200 /usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle/Contents 200 /usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle 200 /usr/libexec/SmartCardServices/drivers 200 /usr/libexec/SmartCardServices 55040 /usr/libexec 552 /usr/local/bin 8 /usr/local/Cellar/gdbm/1.18.1/.brew 288 /usr/local/Cellar/gdbm/1.18.1/bin 24 /usr/local/Cellar/gdbm/1.18.1/include 264 /usr/local/Cellar/gdbm/1.18.1/lib 280 /usr/local/Cellar/gdbm/1.18.1/share/info 48 /usr/local/Cellar/gdbm/1.18.1/share/man/man1 40 /usr/local/Cellar/gdbm/1.18.1/share/man/man3 88 /usr/local/Cellar/gdbm/1.18.1/share/man 368 /usr/local/Cellar/gdbm/1.18.1/share 1288 /usr/local/Cellar/gdbm/1.18.1 1288 /usr/local/Cellar/gdbm 8 /usr/local/Cellar/jq/1.5_3/.brew 480 /usr/local/Cellar/jq/1.5_3/bin 24 /usr/local/Cellar/jq/1.5_3/include 1136 /usr/local/Cellar/jq/1.5_3/lib 32 /usr/local/Cellar/jq/1.5_3/share/doc/jq 32 /usr/local/Cellar/jq/1.5_3/share/doc 176 /usr/local/Cellar/jq/1.5_3/share/man/man1 176 /usr/local/Cellar/jq/1.5_3/share/man 208 /usr/local/Cellar/jq/1.5_3/share 1976 /usr/local/Cellar/jq/1.5_3 1976 /usr/local/Cellar/jq 8 /usr/local/Cellar/oniguruma/6.8.2/.brew 8 /usr/local/Cellar/oniguruma/6.8.2/bin 112 /usr/local/Cellar/oniguruma/6.8.2/include 8 /usr/local/Cellar/oniguruma/6.8.2/lib/pkgconfig 2208 /usr/local/Cellar/oniguruma/6.8.2/lib 2624 /usr/local/Cellar/oniguruma/6.8.2 2624 /usr/local/Cellar/oniguruma 8 /usr/local/Cellar/openssl@1.1/1.1.1d/.brew 1240 /usr/local/Cellar/openssl@1.1/1.1.1d/bin 3120 /usr/local/Cellar/openssl@1.1/1.1.1d/include/openssl 3120 /usr/local/Cellar/openssl@1.1/1.1.1d/include 72 /usr/local/Cellar/openssl@1.1/1.1.1d/lib/engines-1.1 24 /usr/local/Cellar/openssl@1.1/1.1.1d/lib/pkgconfig 15296 /usr/local/Cellar/openssl@1.1/1.1.1d/lib 1808 /usr/local/Cellar/openssl@1.1/1.1.1d/share/doc/openssl/html/man1 33432 /usr/local/Cellar/openssl@1.1/1.1.1d/share/doc/openssl/html/man3 88 /usr/local/Cellar/openssl@1.1/1.1.1d/share/doc/openssl/html/man5 336 /usr/local/Cellar/openssl@1.1/1.1.1d/share/doc/openssl/html/man7 35664 /usr/local/Cellar/openssl@1.1/1.1.1d/share/doc/openssl/html 35664 /usr/local/Cellar/openssl@1.1/1.1.1d/share/doc/openssl 35664 /usr/local/Cellar/openssl@1.1/1.1.1d/share/doc 2040 /usr/local/Cellar/openssl@1.1/1.1.1d/share/man/man1 36384 /usr/local/Cellar/openssl@1.1/1.1.1d/share/man/man3 96 /usr/local/Cellar/openssl@1.1/1.1.1d/share/man/man5 432 /usr/local/Cellar/openssl@1.1/1.1.1d/share/man/man7 38952 /usr/local/Cellar/openssl@1.1/1.1.1d/share/man 74616 /usr/local/Cellar/openssl@1.1/1.1.1d/share 95552 /usr/local/Cellar/openssl@1.1/1.1.1d 95552 /usr/local/Cellar/openssl@1.1 8 /usr/local/Cellar/pkg-config/0.29.2/.brew 992 /usr/local/Cellar/pkg-config/0.29.2/bin 24 /usr/local/Cellar/pkg-config/0.29.2/share/aclocal 40 /usr/local/Cellar/pkg-config/0.29.2/share/doc/pkg-config 40 /usr/local/Cellar/pkg-config/0.29.2/share/doc 48 /usr/local/Cellar/pkg-config/0.29.2/share/man/man1 48 /usr/local/Cellar/pkg-config/0.29.2/share/man 112 /usr/local/Cellar/pkg-config/0.29.2/share 1304 /usr/local/Cellar/pkg-config/0.29.2 1304 /usr/local/Cellar/pkg-config 32 /usr/local/Cellar/python/3.7.5/.brew 144 /usr/local/Cellar/python/3.7.5/bin 128 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/bin 96 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/include/python3.7m/internal 1784 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/include/python3.7m 1784 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/include 24 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/pkgconfig 19600 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/__pycache__ 2120 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/asyncio/__pycache__ 3024 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/asyncio 288 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/collections/__pycache__ 392 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/collections 24 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/concurrent/__pycache__ 312 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/concurrent/futures/__pycache__ 440 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/concurrent/futures 472 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/concurrent 288 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/config-3.7m-darwin 296 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ctypes/__pycache__ 112 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ctypes/macholib/__pycache__ 176 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ctypes/macholib 2064 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ctypes/test/__pycache__ 2712 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ctypes/test 3312 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ctypes 168 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/curses/__pycache__ 224 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/curses 152 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/dbm/__pycache__ 208 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/dbm 1760 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/distutils/__pycache__ 1184 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/distutils/command/__pycache__ 5840 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/distutils/command 1824 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/distutils/tests/__pycache__ 2528 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/distutils/tests 11056 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/distutils 1696 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/email/__pycache__ 216 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/email/mime/__pycache__ 280 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/email/mime 2768 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/email 3608 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/encodings/__pycache__ 7088 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/encodings 96 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ensurepip/__pycache__ 3896 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ensurepip/_bundled 4024 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ensurepip 408 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/html/__pycache__ 616 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/html 832 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/http/__pycache__ 1248 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/http 4008 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/idlelib/__pycache__ 264 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/idlelib/Icons 3080 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/idlelib/idle_test/__pycache__ 4200 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/idlelib/idle_test 10696 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/idlelib 672 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/importlib/__pycache__ 984 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/importlib 248 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/json/__pycache__ 360 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/json 8680 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload 632 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib2to3/__pycache__ 1376 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib2to3/fixes/__pycache__ 1856 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib2to3/fixes 392 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib2to3/pgen2/__pycache__ 568 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib2to3/pgen2 1576 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib2to3/tests/__pycache__ 40 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib2to3/tests/data/fixers/myfixes 64 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib2to3/tests/data/fixers 416 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib2to3/tests/data 2448 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib2to3/tests 5864 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib2to3 688 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/logging/__pycache__ 1032 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/logging 1304 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/multiprocessing/__pycache__ 48 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/multiprocessing/dummy/__pycache__ 64 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/multiprocessing/dummy 1888 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/multiprocessing 2448 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/pydoc_data/__pycache__ 3752 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/pydoc_data 72 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/sqlite3/__pycache__ 960 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/sqlite3/test/__pycache__ 1232 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/sqlite3/test 1328 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/sqlite3 66648 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/__pycache__ 480 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/audiodata 48 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/capath 240 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/cjkencodings 8 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/data 9128 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/decimaltestdata 96 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/dtracedata/__pycache__ 224 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/dtracedata 120 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/eintrdata/__pycache__ 160 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/eintrdata 72 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/encoded_modules/__pycache__ 96 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/encoded_modules 104 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/imghdrdata 552 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/libregrtest/__pycache__ 792 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/libregrtest 72 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/sndhdrdata 120 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/subprocessdata/__pycache__ 160 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/subprocessdata 536 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/support/__pycache__ 784 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/support 4360 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_asyncio/__pycache__ 5832 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_asyncio 3168 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_email/__pycache__ 488 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_email/data 4760 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_email 288 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_import/__pycache__ 216 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_import/data/circular_imports/__pycache__ 48 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_import/data/circular_imports/subpkg/__pycache__ 64 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_import/data/circular_imports/subpkg 352 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_import/data/circular_imports 48 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_import/data/package/__pycache__ 56 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_import/data/package 48 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_import/data/package2/__pycache__ 56 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_import/data/package2 464 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_import/data 856 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_import 1224 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/__pycache__ 96 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/builtin/__pycache__ 128 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/builtin 24 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data01/__pycache__ 24 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data01/subdirectory/__pycache__ 32 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data01/subdirectory 80 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data01 24 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data02/__pycache__ 24 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data02/one/__pycache__ 32 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data02/one 24 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data02/two/__pycache__ 32 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data02/two 88 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data02 24 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data03/__pycache__ 24 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data03/namespace/portion1/__pycache__ 24 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data03/namespace/portion1 24 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data03/namespace/portion2/__pycache__ 24 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data03/namespace/portion2 48 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data03/namespace 72 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data03 192 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/extension/__pycache__ 256 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/extension 120 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/frozen/__pycache__ 168 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/frozen 464 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/import_/__pycache__ 616 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/import_ 48 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/both_portions/foo/__pycache__ 64 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/both_portions/foo 64 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/both_portions 24 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/module_and_namespace_package/__pycache__ 0 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test 32 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/module_and_namespace_package 48 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/__pycache__ 56 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo 56 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/not_a_namespace_pkg 24 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/portion1/foo/__pycache__ 32 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/portion1/foo 32 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/portion1 24 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/portion2/foo/__pycache__ 32 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/portion2/foo 32 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/portion2 24 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/project1/parent/child/__pycache__ 32 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/project1/parent/child 32 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/project1/parent 32 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/project1 24 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/project2/parent/child/__pycache__ 32 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/project2/parent/child 32 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/project2/parent 32 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/project2 24 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/project3/parent/child/__pycache__ 32 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/project3/parent/child 32 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/project3/parent 32 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/project3 336 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs 400 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/source/__pycache__ 536 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/source 24 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/zipdata01/__pycache__ 32 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/zipdata01 24 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/zipdata02/__pycache__ 32 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/zipdata02 3976 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib 576 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_json/__pycache__ 768 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_json 432 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_tools/__pycache__ 576 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_tools 288 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_warnings/__pycache__ 48 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_warnings/data/__pycache__ 64 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_warnings/data 472 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_warnings 48 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/tracedmodules/__pycache__ 64 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/tracedmodules 40 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/xmltestdata 122896 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test 2128 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/tkinter/__pycache__ 216 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/tkinter/test/__pycache__ 816 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/tkinter/test/test_tkinter/__pycache__ 1096 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/tkinter/test/test_tkinter 504 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/tkinter/test/test_ttk/__pycache__ 712 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/tkinter/test/test_ttk 2088 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/tkinter/test 4968 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/tkinter 656 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/turtledemo/__pycache__ 880 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/turtledemo 1024 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/__pycache__ 2120 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/test/__pycache__ 1416 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/test/testmock/__pycache__ 1848 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/test/testmock 4640 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/test 6120 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest 704 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/urllib/__pycache__ 1024 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/urllib 112 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/venv/__pycache__ 8 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/venv/scripts/common 16 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/venv/scripts/posix 24 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/venv/scripts 192 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/venv 336 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/wsgiref/__pycache__ 472 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/wsgiref 24 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xml/__pycache__ 776 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xml/dom/__pycache__ 1072 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xml/dom 352 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xml/etree/__pycache__ 520 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xml/etree 48 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xml/parsers/__pycache__ 64 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xml/parsers 424 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xml/sax/__pycache__ 568 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xml/sax 2256 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xml 400 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xmlrpc/__pycache__ 576 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xmlrpc 237496 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7 237536 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib 32 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/Resources/Python.app/Contents/MacOS 216 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/Resources/Python.app/Contents/Resources 264 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/Resources/Python.app/Contents 264 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/Resources/Python.app 272 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/Resources 32 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/buildbot 56 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/c-globals 40 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/ccbench 320 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/clinic 224 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/demo 16 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/freeze/test 208 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/freeze 128 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/gdb 80 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/i18n 32 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/importbench 40 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/iobench 304 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/bundle/bootstrap 112 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/bundle/packagegroups 656 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/bundle 64 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/core 48 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/dev 40 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/doc 80 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/exe 40 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/launcher 72 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/lib 24 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/path 24 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/pip 72 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/tcltk 64 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/test 32 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/tools 24 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/ucrt 1528 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi 56 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/nuget 40 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/parser 48 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/pynche/X 352 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/pynche 888 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/scripts 40 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/ssl 96 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/stringbench 16 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/test2to3/test 16 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/test2to3/test2to3 56 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/test2to3 8 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/tz 96 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/unicode/python-mappings 296 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/unicode 48 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/unittestgui 4576 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools 4576 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples 4576 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7 4576 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share/doc 4576 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/share 248952 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7 248952 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions 248952 /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework 248952 /usr/local/Cellar/python/3.7.5/Frameworks 16 /usr/local/Cellar/python/3.7.5/IDLE 3.app/Contents/MacOS 352 /usr/local/Cellar/python/3.7.5/IDLE 3.app/Contents/Resources 384 /usr/local/Cellar/python/3.7.5/IDLE 3.app/Contents 384 /usr/local/Cellar/python/3.7.5/IDLE 3.app 24 /usr/local/Cellar/python/3.7.5/lib/pkgconfig 24 /usr/local/Cellar/python/3.7.5/lib 56 /usr/local/Cellar/python/3.7.5/libexec/bin 168 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_internal/cli 216 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_internal/commands 8 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_internal/distributions/source 40 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_internal/distributions 72 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_internal/models 80 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_internal/network 80 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_internal/operations 216 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_internal/req 352 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_internal/utils 144 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_internal/vcs 1848 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_internal 32 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/cachecontrol/caches 152 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/cachecontrol 576 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/certifi 16 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/chardet/cli 888 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/chardet 80 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/colorama 320 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/distlib/_backport 1872 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/distlib 32 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/html5lib/_trie 120 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/html5lib/filters 24 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/html5lib/treeadapters 128 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/html5lib/treebuilders 80 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/html5lib/treewalkers 1096 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/html5lib 536 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/idna 104 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/msgpack 192 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/packaging 128 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/pep517 224 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/pkg_resources 40 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/progress 64 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/pytoml 424 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/requests 64 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/urllib3/contrib/_securetransport 232 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/urllib3/contrib 8 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/urllib3/packages/backports 24 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/urllib3/packages/ssl_match_hostname 104 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/urllib3/packages 184 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/urllib3/util 816 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/urllib3 88 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor/webencodings 8240 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip/_vendor 10104 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib/pip 10104 /usr/local/Cellar/python/3.7.5/libexec/pip/build/lib 10104 /usr/local/Cellar/python/3.7.5/libexec/pip/build 72 /usr/local/Cellar/python/3.7.5/libexec/pip/docs/html/development/architecture 168 /usr/local/Cellar/python/3.7.5/libexec/pip/docs/html/development 192 /usr/local/Cellar/python/3.7.5/libexec/pip/docs/html/reference 496 /usr/local/Cellar/python/3.7.5/libexec/pip/docs/html 104 /usr/local/Cellar/python/3.7.5/libexec/pip/docs/man/commands 112 /usr/local/Cellar/python/3.7.5/libexec/pip/docs/man 616 /usr/local/Cellar/python/3.7.5/libexec/pip/docs 168 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_internal/cli 216 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_internal/commands 8 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_internal/distributions/source 40 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_internal/distributions 72 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_internal/models 80 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_internal/network 80 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_internal/operations 216 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_internal/req 352 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_internal/utils 144 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_internal/vcs 1848 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_internal 32 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/cachecontrol/caches 160 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/cachecontrol 584 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/certifi 16 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/chardet/cli 944 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/chardet 88 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/colorama 320 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/distlib/_backport 1904 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/distlib 32 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/html5lib/_trie 120 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/html5lib/filters 24 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/html5lib/treeadapters 128 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/html5lib/treebuilders 80 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/html5lib/treewalkers 1104 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/html5lib 544 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/idna 112 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/msgpack 232 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/packaging 136 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/pep517 232 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/pkg_resources 48 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/progress 72 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/pytoml 432 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/requests 64 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/urllib3/contrib/_securetransport 232 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/urllib3/contrib 8 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/urllib3/packages/backports 24 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/urllib3/packages/ssl_match_hostname 104 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/urllib3/packages 184 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/urllib3/util 824 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/urllib3 96 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor/webencodings 8592 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip/_vendor 10456 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip 72 /usr/local/Cellar/python/3.7.5/libexec/pip/src/pip.egg-info 10528 /usr/local/Cellar/python/3.7.5/libexec/pip/src 21664 /usr/local/Cellar/python/3.7.5/libexec/pip 160 /usr/local/Cellar/python/3.7.5/libexec/setuptools/build/lib/pkg_resources/_vendor/packaging 736 /usr/local/Cellar/python/3.7.5/libexec/setuptools/build/lib/pkg_resources/_vendor 8 /usr/local/Cellar/python/3.7.5/libexec/setuptools/build/lib/pkg_resources/extern 968 /usr/local/Cellar/python/3.7.5/libexec/setuptools/build/lib/pkg_resources 160 /usr/local/Cellar/python/3.7.5/libexec/setuptools/build/lib/setuptools/_vendor/packaging 712 /usr/local/Cellar/python/3.7.5/libexec/setuptools/build/lib/setuptools/_vendor 576 /usr/local/Cellar/python/3.7.5/libexec/setuptools/build/lib/setuptools/command 8 /usr/local/Cellar/python/3.7.5/libexec/setuptools/build/lib/setuptools/extern 2784 /usr/local/Cellar/python/3.7.5/libexec/setuptools/build/lib/setuptools 3760 /usr/local/Cellar/python/3.7.5/libexec/setuptools/build/lib 3760 /usr/local/Cellar/python/3.7.5/libexec/setuptools/build 8 /usr/local/Cellar/python/3.7.5/libexec/setuptools/docs/_templates 16 /usr/local/Cellar/python/3.7.5/libexec/setuptools/docs/_theme/nature/static 24 /usr/local/Cellar/python/3.7.5/libexec/setuptools/docs/_theme/nature 24 /usr/local/Cellar/python/3.7.5/libexec/setuptools/docs/_theme 712 /usr/local/Cellar/python/3.7.5/libexec/setuptools/docs 208 /usr/local/Cellar/python/3.7.5/libexec/setuptools/pkg_resources/__pycache__ 504 /usr/local/Cellar/python/3.7.5/libexec/setuptools/pkg_resources/_vendor/__pycache__ 128 /usr/local/Cellar/python/3.7.5/libexec/setuptools/pkg_resources/_vendor/packaging/__pycache__ 288 /usr/local/Cellar/python/3.7.5/libexec/setuptools/pkg_resources/_vendor/packaging 1376 /usr/local/Cellar/python/3.7.5/libexec/setuptools/pkg_resources/_vendor 8 /usr/local/Cellar/python/3.7.5/libexec/setuptools/pkg_resources/extern/__pycache__ 16 /usr/local/Cellar/python/3.7.5/libexec/setuptools/pkg_resources/extern 136 /usr/local/Cellar/python/3.7.5/libexec/setuptools/pkg_resources/tests 1984 /usr/local/Cellar/python/3.7.5/libexec/setuptools/pkg_resources 520 /usr/local/Cellar/python/3.7.5/libexec/setuptools/setuptools/__pycache__ 96 /usr/local/Cellar/python/3.7.5/libexec/setuptools/setuptools/_vendor/__pycache__ 104 /usr/local/Cellar/python/3.7.5/libexec/setuptools/setuptools/_vendor/packaging/__pycache__ 264 /usr/local/Cellar/python/3.7.5/libexec/setuptools/setuptools/_vendor/packaging 920 /usr/local/Cellar/python/3.7.5/libexec/setuptools/setuptools/_vendor 328 /usr/local/Cellar/python/3.7.5/libexec/setuptools/setuptools/command/__pycache__ 904 /usr/local/Cellar/python/3.7.5/libexec/setuptools/setuptools/command 8 /usr/local/Cellar/python/3.7.5/libexec/setuptools/setuptools/extern/__pycache__ 16 /usr/local/Cellar/python/3.7.5/libexec/setuptools/setuptools/extern 8 /usr/local/Cellar/python/3.7.5/libexec/setuptools/setuptools/tests/indexes/test_links_priority/simple/foobar 8 /usr/local/Cellar/python/3.7.5/libexec/setuptools/setuptools/tests/indexes/test_links_priority/simple 16 /usr/local/Cellar/python/3.7.5/libexec/setuptools/setuptools/tests/indexes/test_links_priority 16 /usr/local/Cellar/python/3.7.5/libexec/setuptools/setuptools/tests/indexes 784 /usr/local/Cellar/python/3.7.5/libexec/setuptools/setuptools/tests 4632 /usr/local/Cellar/python/3.7.5/libexec/setuptools/setuptools 64 /usr/local/Cellar/python/3.7.5/libexec/setuptools/setuptools.egg-info 11616 /usr/local/Cellar/python/3.7.5/libexec/setuptools 48 /usr/local/Cellar/python/3.7.5/libexec/wheel/build/lib/wheel/cli 160 /usr/local/Cellar/python/3.7.5/libexec/wheel/build/lib/wheel 160 /usr/local/Cellar/python/3.7.5/libexec/wheel/build/lib 160 /usr/local/Cellar/python/3.7.5/libexec/wheel/build 32 /usr/local/Cellar/python/3.7.5/libexec/wheel/docs/reference 160 /usr/local/Cellar/python/3.7.5/libexec/wheel/docs 8 /usr/local/Cellar/python/3.7.5/libexec/wheel/manpages 32 /usr/local/Cellar/python/3.7.5/libexec/wheel/tests/cli 8 /usr/local/Cellar/python/3.7.5/libexec/wheel/tests/testdata/complex-dist/complexdist 16 /usr/local/Cellar/python/3.7.5/libexec/wheel/tests/testdata/complex-dist 8 /usr/local/Cellar/python/3.7.5/libexec/wheel/tests/testdata/extension.dist 8 /usr/local/Cellar/python/3.7.5/libexec/wheel/tests/testdata/headers.dist 0 /usr/local/Cellar/python/3.7.5/libexec/wheel/tests/testdata/simple.dist/simpledist 8 /usr/local/Cellar/python/3.7.5/libexec/wheel/tests/testdata/simple.dist 0 /usr/local/Cellar/python/3.7.5/libexec/wheel/tests/testdata/unicode.dist/unicodedist 8 /usr/local/Cellar/python/3.7.5/libexec/wheel/tests/testdata/unicode.dist 64 /usr/local/Cellar/python/3.7.5/libexec/wheel/tests/testdata 168 /usr/local/Cellar/python/3.7.5/libexec/wheel/tests 48 /usr/local/Cellar/python/3.7.5/libexec/wheel/wheel/cli 160 /usr/local/Cellar/python/3.7.5/libexec/wheel/wheel 56 /usr/local/Cellar/python/3.7.5/libexec/wheel/wheel.egg-info 776 /usr/local/Cellar/python/3.7.5/libexec/wheel 34112 /usr/local/Cellar/python/3.7.5/libexec 96 /usr/local/Cellar/python/3.7.5/Python Launcher 3.app/Contents/MacOS 32 /usr/local/Cellar/python/3.7.5/Python Launcher 3.app/Contents/Resources/English.lproj/MainMenu.nib 32 /usr/local/Cellar/python/3.7.5/Python Launcher 3.app/Contents/Resources/English.lproj/MyDocument.nib 32 /usr/local/Cellar/python/3.7.5/Python Launcher 3.app/Contents/Resources/English.lproj/PreferenceWindow.nib 104 /usr/local/Cellar/python/3.7.5/Python Launcher 3.app/Contents/Resources/English.lproj 432 /usr/local/Cellar/python/3.7.5/Python Launcher 3.app/Contents/Resources 536 /usr/local/Cellar/python/3.7.5/Python Launcher 3.app/Contents 536 /usr/local/Cellar/python/3.7.5/Python Launcher 3.app 40 /usr/local/Cellar/python/3.7.5/share/man/man1 40 /usr/local/Cellar/python/3.7.5/share/man 40 /usr/local/Cellar/python/3.7.5/share 284288 /usr/local/Cellar/python/3.7.5 284288 /usr/local/Cellar/python 8 /usr/local/Cellar/readline/8.0.1/.brew 160 /usr/local/Cellar/readline/8.0.1/include/readline 160 /usr/local/Cellar/readline/8.0.1/include 8 /usr/local/Cellar/readline/8.0.1/lib/pkgconfig 1520 /usr/local/Cellar/readline/8.0.1/lib 192 /usr/local/Cellar/readline/8.0.1/share/doc/readline 192 /usr/local/Cellar/readline/8.0.1/share/doc 760 /usr/local/Cellar/readline/8.0.1/share/info 144 /usr/local/Cellar/readline/8.0.1/share/man/man3 144 /usr/local/Cellar/readline/8.0.1/share/man 176 /usr/local/Cellar/readline/8.0.1/share/readline 1272 /usr/local/Cellar/readline/8.0.1/share 3304 /usr/local/Cellar/readline/8.0.1 3304 /usr/local/Cellar/readline 8 /usr/local/Cellar/sqlite/3.30.1/.brew 2416 /usr/local/Cellar/sqlite/3.30.1/bin 1176 /usr/local/Cellar/sqlite/3.30.1/include 8 /usr/local/Cellar/sqlite/3.30.1/lib/pkgconfig 4648 /usr/local/Cellar/sqlite/3.30.1/lib 24 /usr/local/Cellar/sqlite/3.30.1/share/man/man1 24 /usr/local/Cellar/sqlite/3.30.1/share/man 24 /usr/local/Cellar/sqlite/3.30.1/share 8288 /usr/local/Cellar/sqlite/3.30.1 8288 /usr/local/Cellar/sqlite 8 /usr/local/Cellar/xz/5.2.4/.brew 400 /usr/local/Cellar/xz/5.2.4/bin 376 /usr/local/Cellar/xz/5.2.4/include/lzma 400 /usr/local/Cellar/xz/5.2.4/include 8 /usr/local/Cellar/xz/5.2.4/lib/pkgconfig 720 /usr/local/Cellar/xz/5.2.4/lib 96 /usr/local/Cellar/xz/5.2.4/share/doc/xz/examples 16 /usr/local/Cellar/xz/5.2.4/share/doc/xz/examples_old 408 /usr/local/Cellar/xz/5.2.4/share/doc/xz 408 /usr/local/Cellar/xz/5.2.4/share/doc 304 /usr/local/Cellar/xz/5.2.4/share/man/man1 304 /usr/local/Cellar/xz/5.2.4/share/man 712 /usr/local/Cellar/xz/5.2.4/share 2720 /usr/local/Cellar/xz/5.2.4 2720 /usr/local/Cellar/xz 401344 /usr/local/Cellar 8 /usr/local/etc/bash_completion.d 40 /usr/local/etc/openssl@1.1/misc 608 /usr/local/etc/openssl@1.1 616 /usr/local/etc 8 /usr/local/Frameworks/Python.framework/Versions 8 /usr/local/Frameworks/Python.framework 8 /usr/local/Frameworks 88 /usr/local/Homebrew/.git/hooks 8 /usr/local/Homebrew/.git/info 16 /usr/local/Homebrew/.git/logs/refs/heads 8 /usr/local/Homebrew/.git/logs/refs/remotes/origin 8 /usr/local/Homebrew/.git/logs/refs/remotes 24 /usr/local/Homebrew/.git/logs/refs 32 /usr/local/Homebrew/.git/logs 0 /usr/local/Homebrew/.git/objects/info 73048 /usr/local/Homebrew/.git/objects/pack 73048 /usr/local/Homebrew/.git/objects 16 /usr/local/Homebrew/.git/refs/heads 8 /usr/local/Homebrew/.git/refs/remotes/origin 8 /usr/local/Homebrew/.git/refs/remotes 1112 /usr/local/Homebrew/.git/refs/tags 1136 /usr/local/Homebrew/.git/refs 74848 /usr/local/Homebrew/.git 24 /usr/local/Homebrew/.github/ISSUE_TEMPLATE 16 /usr/local/Homebrew/.github/workflows 64 /usr/local/Homebrew/.github 8 /usr/local/Homebrew/bin 40 /usr/local/Homebrew/completions/bash 104 /usr/local/Homebrew/completions/fish 72 /usr/local/Homebrew/completions/zsh 224 /usr/local/Homebrew/completions 736 /usr/local/Homebrew/docs/assets/img/docs 736 /usr/local/Homebrew/docs/assets/img 736 /usr/local/Homebrew/docs/assets 1568 /usr/local/Homebrew/docs 8 /usr/local/Homebrew/Library/Homebrew/.bundle 264 /usr/local/Homebrew/Library/Homebrew/cask/artifact 184 /usr/local/Homebrew/Library/Homebrew/cask/cmd 96 /usr/local/Homebrew/Library/Homebrew/cask/dsl 16 /usr/local/Homebrew/Library/Homebrew/cask/utils 872 /usr/local/Homebrew/Library/Homebrew/cask 32 /usr/local/Homebrew/Library/Homebrew/cli 624 /usr/local/Homebrew/Library/Homebrew/cmd 8 /usr/local/Homebrew/Library/Homebrew/compat/cask/dsl 8 /usr/local/Homebrew/Library/Homebrew/compat/cask 8 /usr/local/Homebrew/Library/Homebrew/compat/requirements 16 /usr/local/Homebrew/Library/Homebrew/compat 8 /usr/local/Homebrew/Library/Homebrew/debrew 376 /usr/local/Homebrew/Library/Homebrew/dev-cmd 56 /usr/local/Homebrew/Library/Homebrew/extend/ENV 24 /usr/local/Homebrew/Library/Homebrew/extend/os/extend/ENV 24 /usr/local/Homebrew/Library/Homebrew/extend/os/extend 8 /usr/local/Homebrew/Library/Homebrew/extend/os/language 24 /usr/local/Homebrew/Library/Homebrew/extend/os/linux/extend/ENV 32 /usr/local/Homebrew/Library/Homebrew/extend/os/linux/extend 8 /usr/local/Homebrew/Library/Homebrew/extend/os/linux/hardware 16 /usr/local/Homebrew/Library/Homebrew/extend/os/linux/requirements 144 /usr/local/Homebrew/Library/Homebrew/extend/os/linux 32 /usr/local/Homebrew/Library/Homebrew/extend/os/mac/extend/ENV 40 /usr/local/Homebrew/Library/Homebrew/extend/os/mac/extend 8 /usr/local/Homebrew/Library/Homebrew/extend/os/mac/hardware 8 /usr/local/Homebrew/Library/Homebrew/extend/os/mac/language 24 /usr/local/Homebrew/Library/Homebrew/extend/os/mac/requirements 8 /usr/local/Homebrew/Library/Homebrew/extend/os/mac/unpack_strategy 16 /usr/local/Homebrew/Library/Homebrew/extend/os/mac/utils 240 /usr/local/Homebrew/Library/Homebrew/extend/os/mac 24 /usr/local/Homebrew/Library/Homebrew/extend/os/requirements 600 /usr/local/Homebrew/Library/Homebrew/extend/os 768 /usr/local/Homebrew/Library/Homebrew/extend 64 /usr/local/Homebrew/Library/Homebrew/language 56 /usr/local/Homebrew/Library/Homebrew/manpages 48 /usr/local/Homebrew/Library/Homebrew/os/linux 56 /usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.10 56 /usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.11 56 /usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.12 56 /usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.13 56 /usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.14 56 /usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.15 24 /usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.5 24 /usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.6 24 /usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.7 56 /usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.8 56 /usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.9 16 /usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/fuse 544 /usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig 616 /usr/local/Homebrew/Library/Homebrew/os/mac 704 /usr/local/Homebrew/Library/Homebrew/os 72 /usr/local/Homebrew/Library/Homebrew/requirements 24 /usr/local/Homebrew/Library/Homebrew/rubocops/cask/ast 8 /usr/local/Homebrew/Library/Homebrew/rubocops/cask/constants 16 /usr/local/Homebrew/Library/Homebrew/rubocops/cask/extend 16 /usr/local/Homebrew/Library/Homebrew/rubocops/cask/mixin 112 /usr/local/Homebrew/Library/Homebrew/rubocops/cask 40 /usr/local/Homebrew/Library/Homebrew/rubocops/extend 344 /usr/local/Homebrew/Library/Homebrew/rubocops 24 /usr/local/Homebrew/Library/Homebrew/test/cask/artifact/shared_examples 144 /usr/local/Homebrew/Library/Homebrew/test/cask/artifact 24 /usr/local/Homebrew/Library/Homebrew/test/cask/cask_loader 16 /usr/local/Homebrew/Library/Homebrew/test/cask/cmd/shared_examples 216 /usr/local/Homebrew/Library/Homebrew/test/cask/cmd 16 /usr/local/Homebrew/Library/Homebrew/test/cask/dsl/shared_examples 88 /usr/local/Homebrew/Library/Homebrew/test/cask/dsl 672 /usr/local/Homebrew/Library/Homebrew/test/cask 16 /usr/local/Homebrew/Library/Homebrew/test/cli 8 /usr/local/Homebrew/Library/Homebrew/test/cmd/shared_examples 432 /usr/local/Homebrew/Library/Homebrew/test/cmd 184 /usr/local/Homebrew/Library/Homebrew/test/dev-cmd 8 /usr/local/Homebrew/Library/Homebrew/test/hardware 40 /usr/local/Homebrew/Library/Homebrew/test/language 24 /usr/local/Homebrew/Library/Homebrew/test/os/linux 64 /usr/local/Homebrew/Library/Homebrew/test/os/mac 96 /usr/local/Homebrew/Library/Homebrew/test/os 40 /usr/local/Homebrew/Library/Homebrew/test/requirements 8 /usr/local/Homebrew/Library/Homebrew/test/rubocops/cask/shared_examples 72 /usr/local/Homebrew/Library/Homebrew/test/rubocops/cask 288 /usr/local/Homebrew/Library/Homebrew/test/rubocops 104 /usr/local/Homebrew/Library/Homebrew/test/support/fixtures/bottles 8 /usr/local/Homebrew/Library/Homebrew/test/support/fixtures/cask/Casks/compat 136 /usr/local/Homebrew/Library/Homebrew/test/support/fixtures/cask/Casks/invalid 56 /usr/local/Homebrew/Library/Homebrew/test/support/fixtures/cask/Casks/outdated 1200 /usr/local/Homebrew/Library/Homebrew/test/support/fixtures/cask/Casks 1528 /usr/local/Homebrew/Library/Homebrew/test/support/fixtures/cask 32 /usr/local/Homebrew/Library/Homebrew/test/support/fixtures/elf 200 /usr/local/Homebrew/Library/Homebrew/test/support/fixtures/mach 24 /usr/local/Homebrew/Library/Homebrew/test/support/fixtures/patches 24 /usr/local/Homebrew/Library/Homebrew/test/support/fixtures/tarballs 16 /usr/local/Homebrew/Library/Homebrew/test/support/fixtures/third-party/Casks 16 /usr/local/Homebrew/Library/Homebrew/test/support/fixtures/third-party 2120 /usr/local/Homebrew/Library/Homebrew/test/support/fixtures 24 /usr/local/Homebrew/Library/Homebrew/test/support/helper/cask 24 /usr/local/Homebrew/Library/Homebrew/test/support/helper/spec/shared_context 24 /usr/local/Homebrew/Library/Homebrew/test/support/helper/spec 88 /usr/local/Homebrew/Library/Homebrew/test/support/helper 8 /usr/local/Homebrew/Library/Homebrew/test/support/lib 2224 /usr/local/Homebrew/Library/Homebrew/test/support 160 /usr/local/Homebrew/Library/Homebrew/test/unpack_strategy 24 /usr/local/Homebrew/Library/Homebrew/test/utils/bottles 112 /usr/local/Homebrew/Library/Homebrew/test/utils 5280 /usr/local/Homebrew/Library/Homebrew/test 280 /usr/local/Homebrew/Library/Homebrew/unpack_strategy 176 /usr/local/Homebrew/Library/Homebrew/utils 16 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/bundler 64 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/array 8 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/big_decimal 32 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/class 48 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/date 40 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/date_and_time 48 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/date_time 8 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/digest 8 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/file 96 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/hash 24 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/integer 32 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/kernel 128 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/module 40 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/numeric 104 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/object 48 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/range 136 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/string 64 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/time 1120 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext 72 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/deprecation 72 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/inflector 16 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/locale 24 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/notifications 2232 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/values 56 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/xml_mini 4224 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support 4224 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib 4224 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3 240 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic 16 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic_reference 104 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent/collection/map 160 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent/collection 48 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent/concern 224 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor 136 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization 72 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent/thread_safe/util 88 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent/thread_safe 56 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent/utility 1632 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent 1656 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib 1656 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5 160 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/i18n-1.7.0/lib/i18n/backend 8 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/i18n-1.7.0/lib/i18n/core_ext 24 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/i18n-1.7.0/lib/i18n/gettext 8 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/i18n-1.7.0/lib/i18n/interpolate 24 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/i18n-1.7.0/lib/i18n/locale/tag 40 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/i18n-1.7.0/lib/i18n/locale 304 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/i18n-1.7.0/lib/i18n 336 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/i18n-1.7.0/lib 336 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/i18n-1.7.0 16 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/mechanize-2.7.6/lib/mechanize/http 24 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/mechanize-2.7.6/lib/mechanize 24 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/mechanize-2.7.6/lib 24 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/mechanize-2.7.6 40 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/plist-3.5.0/lib/plist 48 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/plist-3.5.0/lib 48 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/plist-3.5.0 16 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.5.0/config 232 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.5.0/lib/rubocop/cop/performance 240 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.5.0/lib/rubocop/cop 16 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.5.0/lib/rubocop/performance 264 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.5.0/lib/rubocop 272 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.5.0/lib 288 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.5.0 40 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0/config 24 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0/lib/rubocop/cop/rspec/capybara 24 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0/lib/rubocop/cop/rspec/factory_bot 8 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0/lib/rubocop/cop/rspec/rails 672 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0/lib/rubocop/cop/rspec 680 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0/lib/rubocop/cop 8 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0/lib/rubocop/rspec/language 144 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0/lib/rubocop/rspec 832 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0/lib/rubocop 840 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0/lib 880 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0 312 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/ruby-macho-2.2.0/lib/macho 320 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/ruby-macho-2.2.0/lib 320 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/ruby-macho-2.2.0 136 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/thread_safe-0.3.6/lib/thread_safe 144 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/thread_safe-0.3.6/lib 144 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/thread_safe-0.3.6 416 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/tzinfo-1.2.5/lib/tzinfo 424 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/tzinfo-1.2.5/lib 424 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/tzinfo-1.2.5 8344 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems 8344 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0 8344 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby 8360 /usr/local/Homebrew/Library/Homebrew/vendor/bundle 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/.brew 34920 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/bin 40 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/include/ruby-2.3.0/ruby/backward 520 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/include/ruby-2.3.0/ruby 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/include/ruby-2.3.0/universal-darwin9.0/ruby 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/include/ruby-2.3.0/universal-darwin9.0 552 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/include/ruby-2.3.0 552 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/include 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/pkgconfig 48 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/bigdecimal 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/cgi/session 216 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/cgi 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/digest 224 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/drb 96 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/fiddle 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/io/console 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/io 56 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/irb/cmd 80 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/irb/ext 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/irb/lc/ja 40 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/irb/lc 488 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/irb 104 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/json/add 160 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/json 64 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/matrix 144 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/net/http 688 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/net 128 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/openssl 48 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/optparse 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/psych/handlers 32 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/psych/json 56 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/psych/nodes 96 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/psych/visitors 360 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/psych 40 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/racc 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rbconfig 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rdoc/context 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rdoc/generator/pot 40 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rdoc/generator/template/darkfish/css 1048 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rdoc/generator/template/darkfish/fonts 208 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rdoc/generator/template/darkfish/images 208 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rdoc/generator/template/darkfish/js 1680 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rdoc/generator/template/darkfish 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rdoc/generator/template/json_index/js 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rdoc/generator/template/json_index 1704 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rdoc/generator/template 1808 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rdoc/generator 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rdoc/i18n 136 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rdoc/markdown 416 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rdoc/markup 232 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rdoc/parser 120 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rdoc/rd 112 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rdoc/ri 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rdoc/stats 4472 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rdoc 40 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rexml/dtd 32 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rexml/formatters 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rexml/light 152 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rexml/parsers 48 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rexml/validation 760 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rexml 80 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rinda 40 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/ripper 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rss/content 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rss/dublincore 256 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rss/maker 680 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rss 400 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rubygems/commands 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rubygems/core_ext 56 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rubygems/ext 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rubygems/package/tar_reader 96 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rubygems/package 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rubygems/request 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rubygems/request_set/lockfile 88 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rubygems/request_set 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rubygems/resolver/molinillo/lib/molinillo/modules 112 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rubygems/resolver/molinillo/lib/molinillo 120 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rubygems/resolver/molinillo/lib 120 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rubygems/resolver/molinillo 336 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rubygems/resolver 48 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rubygems/security 56 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rubygems/source 56 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rubygems/ssl_certs 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rubygems/util 2376 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/rubygems 96 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/shell 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/syslog 368 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/unicode_normalize 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/universal-darwin9.0 240 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/uri 80 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/webrick/httpauth 88 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/webrick/httpservlet 488 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/webrick 184 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/xmlrpc 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0/yaml 14840 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/2.3.0 1056 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/cache 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/benchmark/jaro_winkler 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/benchmark/levenshtein 40 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/benchmark 312 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/doc 64 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/evaluation 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/lib/did_you_mean/core_ext 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/lib/did_you_mean/extra_features 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/lib/did_you_mean/spell_checkers/name_error_checkers 40 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/lib/did_you_mean/spell_checkers 120 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/lib/did_you_mean 128 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/lib 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/test/core_ext 32 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/test/correctable 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/test/edit_distance 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/test/extra_features 88 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/test 688 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/minitest-5.8.5/lib/hoe 184 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/minitest-5.8.5/lib/minitest 232 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/minitest-5.8.5/lib 200 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/minitest-5.8.5/test/minitest 200 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/minitest-5.8.5/test 576 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/minitest-5.8.5 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/net-telnet-0.1.1/bin 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/net-telnet-0.1.1/lib/net/telnet 72 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/net-telnet-0.1.1/lib/net 80 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/net-telnet-0.1.1/lib 128 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/net-telnet-0.1.1 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/power_assert-0.2.6/lib/power_assert 40 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/power_assert-0.2.6/lib 32 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/power_assert-0.2.6/test 120 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/power_assert-0.2.6 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/rake-10.4.2/bin 40 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/rake-10.4.2/doc/example 280 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/rake-10.4.2/doc/release_notes 456 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/rake-10.4.2/doc 48 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/rake-10.4.2/lib/rake/contrib 48 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/rake-10.4.2/lib/rake/ext 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/rake-10.4.2/lib/rake/loaders 600 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/rake-10.4.2/lib/rake 608 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/rake-10.4.2/lib 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/rake-10.4.2/rakelib 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/rake-10.4.2/test/support 592 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/rake-10.4.2/test 1784 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/rake-10.4.2 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/rdoc-4.2.1/bin 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/rdoc-4.2.1 64 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/test-unit-3.1.5/doc/text 64 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/test-unit-3.1.5/doc 56 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/test-unit-3.1.5/lib/test/unit/collector 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/test-unit-3.1.5/lib/test/unit/runner 56 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/test-unit-3.1.5/lib/test/unit/ui/console 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/test-unit-3.1.5/lib/test/unit/ui/emacs 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/test-unit-3.1.5/lib/test/unit/ui/xml 104 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/test-unit-3.1.5/lib/test/unit/ui 40 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/test-unit-3.1.5/lib/test/unit/util 752 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/test-unit-3.1.5/lib/test/unit 784 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/test-unit-3.1.5/lib/test 792 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/test-unit-3.1.5/lib 40 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/test-unit-3.1.5/sample 80 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/test-unit-3.1.5/test/collector 56 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/test-unit-3.1.5/test/fixtures 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/test-unit-3.1.5/test/ui 40 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/test-unit-3.1.5/test/util 648 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/test-unit-3.1.5/test 1696 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems/test-unit-3.1.5 5008 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/gems 48 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/specifications/default 112 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0/specifications 6176 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems/2.3.0 6176 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby/gems 21016 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib/ruby 34456 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/lib 512 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/libexec 72 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/share/man/man1 72 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/share/man 72 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2/share 71512 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.3.3_2 0 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/.bottle/var/homebrew/locks 0 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/.bottle/var/homebrew 0 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/.bottle/var 0 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/.bottle 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/.brew 18632 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/bin 40 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/include/ruby-2.6.0/ruby/backward 584 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/include/ruby-2.6.0/ruby 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/include/ruby-2.6.0/x86_64-darwin13/ruby 1288 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/include/ruby-2.6.0/x86_64-darwin13 1880 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/include/ruby-2.6.0 1880 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/include 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/pkgconfig 48 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bigdecimal 272 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/cli 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/compact_index_client 40 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/fetcher 32 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/installer 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/plugin/api 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/plugin/installer 96 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/plugin 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/resolver 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/settings 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/source/git 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/source/path 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/source/rubygems 136 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/source 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/ssl_certs/index.rubygems.org 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/ssl_certs/rubygems.global.ssl.fastly.net 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/ssl_certs/rubygems.org 32 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/ssl_certs 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/templates/newgem/bin 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/templates/newgem/exe 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/templates/newgem/ext/newgem 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/templates/newgem/ext 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/templates/newgem/lib/newgem 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/templates/newgem/lib 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/templates/newgem/spec 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/templates/newgem/test 168 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/templates/newgem 208 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/templates 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/ui 96 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/fileutils/lib 96 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/fileutils 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/molinillo/lib/molinillo/delegates 80 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/molinillo/lib/molinillo/dependency_graph 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/molinillo/lib/molinillo/modules 248 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/molinillo/lib/molinillo 256 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/molinillo/lib 256 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/molinillo 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/net-http-persistent/lib/net/http/persistent 96 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/net-http-persistent/lib/net/http 96 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/net-http-persistent/lib/net 96 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/net-http-persistent/lib 96 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/net-http-persistent 80 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/thor/lib/thor/actions 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/thor/lib/thor/core_ext 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/thor/lib/thor/line_editor 48 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/thor/lib/thor/parser 64 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/thor/lib/thor/shell 456 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/thor/lib/thor 488 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/thor/lib 488 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/thor 936 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor 2840 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/cgi/session 216 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/cgi 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/csv/core_ext 184 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/csv 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/digest 224 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/drb 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/e2mmap 96 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/fiddle 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/fileutils 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/forwardable 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/io/console 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/io 56 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/irb/cmd 72 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/irb/ext 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/irb/lc/ja 40 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/irb/lc 488 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/irb 104 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/json/add 160 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/json 64 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/matrix 152 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/net/http 720 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/net 136 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/openssl 56 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/optparse 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/psych/handlers 32 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/psych/json 56 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/psych/nodes 88 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/psych/visitors 344 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/psych 40 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/racc 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/context 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/generator/pot 40 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/generator/template/darkfish/css 1048 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/generator/template/darkfish/fonts 208 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/generator/template/darkfish/images 208 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/generator/template/darkfish/js 1680 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/generator/template/darkfish 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/generator/template/json_index/js 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/generator/template/json_index 1704 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/generator/template 1816 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/generator 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/i18n 136 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/markdown 416 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/markup 280 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/parser 120 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/rd 120 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/ri 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/stats 4448 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc 40 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rexml/dtd 32 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rexml/formatters 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rexml/light 160 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rexml/parsers 48 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rexml/validation 800 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rexml 80 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rinda 40 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/ripper 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rss/content 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rss/dublincore 256 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rss/maker 704 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rss 448 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/commands 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/core_ext 56 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/ext 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/package/tar_reader 96 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/package 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/request 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/request_set/lockfile 88 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/request_set 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/delegates 72 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/dependency_graph 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/modules 192 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo 200 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib 200 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/resolver/molinillo 416 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/resolver 48 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/security 56 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/source 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/ssl_certs/index.rubygems.org 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/ssl_certs/rubygems.global.ssl.fastly.net 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/ssl_certs/rubygems.org 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/ssl_certs 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/util 2568 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems 96 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/shell 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/syslog 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/thwait 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/tracer 448 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/unicode_normalize 256 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/uri 88 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/webrick/httpauth 88 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/webrick/httpservlet 512 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/webrick 32 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/x86_64-darwin13 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/yaml 18120 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0 776 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/cache 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/bundler-1.17.2/exe 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/bundler-1.17.2 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/benchmark/jaro_winkler 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/benchmark/levenshtein 40 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/benchmark 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/doc 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/core_ext 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/experimental 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/formatters 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/spell_checkers/name_error_checkers 48 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/spell_checkers 136 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean 144 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/lib 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/test/core_ext 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/test/edit_distance 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/test/experimental 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/test/fixtures 40 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/test/spell_checking 104 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/test 0 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/tmp 424 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/irb-1.0.0/exe 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/irb-1.0.0 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/minitest-5.11.3/lib/hoe 184 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/minitest-5.11.3/lib/minitest 240 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/minitest-5.11.3/lib 224 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/minitest-5.11.3/test/minitest 224 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/minitest-5.11.3/test 632 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/minitest-5.11.3 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/net-telnet-0.2.0/bin 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/net-telnet-0.2.0/lib/net/telnet 72 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/net-telnet-0.2.0/lib/net 80 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/net-telnet-0.2.0/lib 152 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/net-telnet-0.2.0 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/power_assert-1.1.3/bin 72 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/power_assert-1.1.3/lib/power_assert 80 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/power_assert-1.1.3/lib 168 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/power_assert-1.1.3 48 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rake-12.3.2/bin 40 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rake-12.3.2/doc/example 168 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rake-12.3.2/doc 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rake-12.3.2/exe 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rake-12.3.2/lib/rake/ext 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rake-12.3.2/lib/rake/loaders 496 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rake-12.3.2/lib/rake 504 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rake-12.3.2/lib 944 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rake-12.3.2 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rdoc-6.1.0/exe 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rdoc-6.1.0 96 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/doc/text 96 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/doc 56 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/lib/test/unit/collector 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/lib/test/unit/runner 56 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/lib/test/unit/ui/console 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/lib/test/unit/ui/emacs 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/lib/test/unit/ui/xml 104 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/lib/test/unit/ui 40 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/lib/test/unit/util 792 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/lib/test/unit 824 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/lib/test 832 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/lib 40 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/sample 80 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/test/collector 56 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/test/fixtures 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/test/ui 40 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/test/util 664 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/test 1784 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/xmlrpc-0.3.0/bin 168 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/xmlrpc-0.3.0/lib/xmlrpc 184 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/xmlrpc-0.3.0/lib 256 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/xmlrpc-0.3.0 4400 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems 256 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/specifications/default 320 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/specifications 5496 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0 5496 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems 23616 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby 31992 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib 512 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/libexec 368 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/share/man/man1 48 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/share/man/man5 416 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/share/man 416 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/share 59088 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3 130608 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby 138984 /usr/local/Homebrew/Library/Homebrew/vendor 8 /usr/local/Homebrew/Library/Homebrew/version 151032 /usr/local/Homebrew/Library/Homebrew 88 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/hooks 8 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/info 8 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/logs/refs/heads 16 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/logs/refs/remotes/origin 16 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/logs/refs/remotes 24 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/logs/refs 32 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/logs 0 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/objects/info 199520 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/objects/pack 199520 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/objects 8 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/refs/heads 16 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/refs/remotes/origin 16 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/refs/remotes 0 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/refs/tags 24 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/refs 200584 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git 16 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.github/ISSUE_TEMPLATE 8 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.github/workflows 56 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.github 1776 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/Aliases 16 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/cmd 41040 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/Formula 243520 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core 243520 /usr/local/Homebrew/Library/Taps/homebrew 243520 /usr/local/Homebrew/Library/Taps 394600 /usr/local/Homebrew/Library 144 /usr/local/Homebrew/manpages 471560 /usr/local/Homebrew 64 /usr/local/include 40 /usr/local/lib/pkgconfig 16 /usr/local/lib/python3.7/site-packages/__pycache__ 48 /usr/local/lib/python3.7/site-packages/ifconfig_parser-0.0.5.dist-info 24 /usr/local/lib/python3.7/site-packages/ifconfigparser/__pycache__ 56 /usr/local/lib/python3.7/site-packages/ifconfigparser 32 /usr/local/lib/python3.7/site-packages/jc/__pycache__ 376 /usr/local/lib/python3.7/site-packages/jc/parsers/__pycache__ 752 /usr/local/lib/python3.7/site-packages/jc/parsers 816 /usr/local/lib/python3.7/site-packages/jc 128 /usr/local/lib/python3.7/site-packages/jc-1.5.1.dist-info 16 /usr/local/lib/python3.7/site-packages/pip/__pycache__ 352 /usr/local/lib/python3.7/site-packages/pip/_internal/__pycache__ 144 /usr/local/lib/python3.7/site-packages/pip/_internal/cli/__pycache__ 312 /usr/local/lib/python3.7/site-packages/pip/_internal/cli 200 /usr/local/lib/python3.7/site-packages/pip/_internal/commands/__pycache__ 416 /usr/local/lib/python3.7/site-packages/pip/_internal/commands 32 /usr/local/lib/python3.7/site-packages/pip/_internal/distributions/__pycache__ 16 /usr/local/lib/python3.7/site-packages/pip/_internal/distributions/source/__pycache__ 24 /usr/local/lib/python3.7/site-packages/pip/_internal/distributions/source 88 /usr/local/lib/python3.7/site-packages/pip/_internal/distributions 72 /usr/local/lib/python3.7/site-packages/pip/_internal/models/__pycache__ 144 /usr/local/lib/python3.7/site-packages/pip/_internal/models 64 /usr/local/lib/python3.7/site-packages/pip/_internal/network/__pycache__ 144 /usr/local/lib/python3.7/site-packages/pip/_internal/network 56 /usr/local/lib/python3.7/site-packages/pip/_internal/operations/__pycache__ 136 /usr/local/lib/python3.7/site-packages/pip/_internal/operations 168 /usr/local/lib/python3.7/site-packages/pip/_internal/req/__pycache__ 384 /usr/local/lib/python3.7/site-packages/pip/_internal/req 304 /usr/local/lib/python3.7/site-packages/pip/_internal/utils/__pycache__ 656 /usr/local/lib/python3.7/site-packages/pip/_internal/utils 120 /usr/local/lib/python3.7/site-packages/pip/_internal/vcs/__pycache__ 264 /usr/local/lib/python3.7/site-packages/pip/_internal/vcs 3376 /usr/local/lib/python3.7/site-packages/pip/_internal 832 /usr/local/lib/python3.7/site-packages/pip/_vendor/__pycache__ 104 /usr/local/lib/python3.7/site-packages/pip/_vendor/cachecontrol/__pycache__ 24 /usr/local/lib/python3.7/site-packages/pip/_vendor/cachecontrol/caches/__pycache__ 56 /usr/local/lib/python3.7/site-packages/pip/_vendor/cachecontrol/caches 280 /usr/local/lib/python3.7/site-packages/pip/_vendor/cachecontrol 24 /usr/local/lib/python3.7/site-packages/pip/_vendor/certifi/__pycache__ 600 /usr/local/lib/python3.7/site-packages/pip/_vendor/certifi 912 /usr/local/lib/python3.7/site-packages/pip/_vendor/chardet/__pycache__ 16 /usr/local/lib/python3.7/site-packages/pip/_vendor/chardet/cli/__pycache__ 32 /usr/local/lib/python3.7/site-packages/pip/_vendor/chardet/cli 1816 /usr/local/lib/python3.7/site-packages/pip/_vendor/chardet 64 /usr/local/lib/python3.7/site-packages/pip/_vendor/colorama/__pycache__ 144 /usr/local/lib/python3.7/site-packages/pip/_vendor/colorama 616 /usr/local/lib/python3.7/site-packages/pip/_vendor/distlib/__pycache__ 224 /usr/local/lib/python3.7/site-packages/pip/_vendor/distlib/_backport/__pycache__ 544 /usr/local/lib/python3.7/site-packages/pip/_vendor/distlib/_backport 2712 /usr/local/lib/python3.7/site-packages/pip/_vendor/distlib 536 /usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/__pycache__ 32 /usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/_trie/__pycache__ 64 /usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/_trie 96 /usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/filters/__pycache__ 216 /usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/filters 24 /usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__ 48 /usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/treeadapters 104 /usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__ 232 /usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/treebuilders 64 /usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__ 144 /usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/treewalkers 1952 /usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib 456 /usr/local/lib/python3.7/site-packages/pip/_vendor/idna/__pycache__ 992 /usr/local/lib/python3.7/site-packages/pip/_vendor/idna 80 /usr/local/lib/python3.7/site-packages/pip/_vendor/msgpack/__pycache__ 184 /usr/local/lib/python3.7/site-packages/pip/_vendor/msgpack 160 /usr/local/lib/python3.7/site-packages/pip/_vendor/packaging/__pycache__ 352 /usr/local/lib/python3.7/site-packages/pip/_vendor/packaging 120 /usr/local/lib/python3.7/site-packages/pip/_vendor/pep517/__pycache__ 248 /usr/local/lib/python3.7/site-packages/pip/_vendor/pep517 208 /usr/local/lib/python3.7/site-packages/pip/_vendor/pkg_resources/__pycache__ 432 /usr/local/lib/python3.7/site-packages/pip/_vendor/pkg_resources 40 /usr/local/lib/python3.7/site-packages/pip/_vendor/progress/__pycache__ 80 /usr/local/lib/python3.7/site-packages/pip/_vendor/progress 64 /usr/local/lib/python3.7/site-packages/pip/_vendor/pytoml/__pycache__ 128 /usr/local/lib/python3.7/site-packages/pip/_vendor/pytoml 368 /usr/local/lib/python3.7/site-packages/pip/_vendor/requests/__pycache__ 792 /usr/local/lib/python3.7/site-packages/pip/_vendor/requests 240 /usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/__pycache__ 136 /usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/contrib/__pycache__ 48 /usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__ 112 /usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/contrib/_securetransport 416 /usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/contrib 64 /usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/packages/__pycache__ 16 /usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__ 24 /usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/packages/backports 16 /usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__ 40 /usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname 200 /usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/packages 152 /usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/util/__pycache__ 336 /usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/util 1488 /usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3 64 /usr/local/lib/python3.7/site-packages/pip/_vendor/webencodings/__pycache__ 152 /usr/local/lib/python3.7/site-packages/pip/_vendor/webencodings 14144 /usr/local/lib/python3.7/site-packages/pip/_vendor 17552 /usr/local/lib/python3.7/site-packages/pip 72 /usr/local/lib/python3.7/site-packages/pip-19.3.1-py3.7.egg-info 208 /usr/local/lib/python3.7/site-packages/pkg_resources/__pycache__ 504 /usr/local/lib/python3.7/site-packages/pkg_resources/_vendor/__pycache__ 136 /usr/local/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__ 296 /usr/local/lib/python3.7/site-packages/pkg_resources/_vendor/packaging 1376 /usr/local/lib/python3.7/site-packages/pkg_resources/_vendor 8 /usr/local/lib/python3.7/site-packages/pkg_resources/extern/__pycache__ 16 /usr/local/lib/python3.7/site-packages/pkg_resources/extern 1824 /usr/local/lib/python3.7/site-packages/pkg_resources 576 /usr/local/lib/python3.7/site-packages/setuptools/__pycache__ 488 /usr/local/lib/python3.7/site-packages/setuptools/_vendor/__pycache__ 136 /usr/local/lib/python3.7/site-packages/setuptools/_vendor/packaging/__pycache__ 296 /usr/local/lib/python3.7/site-packages/setuptools/_vendor/packaging 1336 /usr/local/lib/python3.7/site-packages/setuptools/_vendor 480 /usr/local/lib/python3.7/site-packages/setuptools/command/__pycache__ 1056 /usr/local/lib/python3.7/site-packages/setuptools/command 8 /usr/local/lib/python3.7/site-packages/setuptools/extern/__pycache__ 16 /usr/local/lib/python3.7/site-packages/setuptools/extern 4472 /usr/local/lib/python3.7/site-packages/setuptools 64 /usr/local/lib/python3.7/site-packages/setuptools-41.6.0-py3.7.egg-info 248 /usr/local/lib/python3.7/site-packages/tests/__pycache__ 488 /usr/local/lib/python3.7/site-packages/tests 96 /usr/local/lib/python3.7/site-packages/wheel/__pycache__ 40 /usr/local/lib/python3.7/site-packages/wheel/cli/__pycache__ 88 /usr/local/lib/python3.7/site-packages/wheel/cli 296 /usr/local/lib/python3.7/site-packages/wheel 56 /usr/local/lib/python3.7/site-packages/wheel-0.33.6-py3.7.egg-info 25904 /usr/local/lib/python3.7/site-packages 25904 /usr/local/lib/python3.7 26040 /usr/local/lib 104 /usr/local/opt 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/_CodeSignature 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/ar.lproj/Welcome.rtfd 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/ar.lproj 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/ca.lproj/Welcome.rtfd 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/ca.lproj 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/cs.lproj/Welcome.rtfd 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/cs.lproj 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/da.lproj/Welcome.rtfd 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/da.lproj 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/Dutch.lproj/Welcome.rtfd 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/Dutch.lproj 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/el.lproj/Welcome.rtfd 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/el.lproj 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/English.lproj/Welcome.rtfd 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/English.lproj 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/es_MX.lproj/Welcome.rtfd 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/es_MX.lproj 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/fi.lproj/Welcome.rtfd 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/fi.lproj 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/French.lproj/Welcome.rtfd 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/French.lproj 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/German.lproj/Welcome.rtfd 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/German.lproj 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/he.lproj/Welcome.rtfd 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/he.lproj 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/hr.lproj/Welcome.rtfd 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/hr.lproj 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/hu.lproj/Welcome.rtfd 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/hu.lproj 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/id.lproj/Welcome.rtfd 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/id.lproj 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/Italian.lproj/Welcome.rtfd 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/Italian.lproj 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/Japanese.lproj/Welcome.rtfd 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/Japanese.lproj 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/ko.lproj/Welcome.rtfd 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/ko.lproj 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/ms.lproj/Welcome.rtfd 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/ms.lproj 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/no.lproj/Welcome.rtfd 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/no.lproj 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/pl.lproj/Welcome.rtfd 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/pl.lproj 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/postflight_actions 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/preflight_actions 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/pt.lproj/Welcome.rtfd 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/pt.lproj 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/pt_PT.lproj/Welcome.rtfd 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/pt_PT.lproj 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/ro.lproj/Welcome.rtfd 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/ro.lproj 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/ru.lproj/Welcome.rtfd 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/ru.lproj 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/sk.lproj/Welcome.rtfd 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/sk.lproj 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/Spanish.lproj/Welcome.rtfd 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/Spanish.lproj 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/sv.lproj/Welcome.rtfd 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/sv.lproj 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/th.lproj/Welcome.rtfd 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/th.lproj 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/tr.lproj/Welcome.rtfd 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/tr.lproj 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/uk.lproj/Welcome.rtfd 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/uk.lproj 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/vi.lproj/Welcome.rtfd 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/vi.lproj 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/zh_CN.lproj/Welcome.rtfd 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/zh_CN.lproj 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/zh_TW.lproj/Welcome.rtfd 0 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources/zh_TW.lproj 64 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents/Resources 72 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg/Contents 72 /usr/local/remotedesktop/RemoteDesktopChangeClientSettings.pkg 72 /usr/local/remotedesktop 0 /usr/local/sbin 8 /usr/local/share/aclocal 32 /usr/local/share/doc 8 /usr/local/share/fish/vendor_completions.d 8 /usr/local/share/fish 16 /usr/local/share/info 264 /usr/local/share/man/man1 8 /usr/local/share/man/man3 280 /usr/local/share/man 16 /usr/local/share/zsh/site-functions 16 /usr/local/share/zsh 360 /usr/local/share 48 /usr/local/var/homebrew/linked 0 /usr/local/var/homebrew/locks 48 /usr/local/var/homebrew 48 /usr/local/var 900768 /usr/local 32584 /usr/sbin 200 /usr/share/apr-1/build-1 200 /usr/share/apr-1 0 /usr/share/calendar/de_AT.ISO_8859-15 16 /usr/share/calendar/de_DE.ISO8859-1 0 /usr/share/calendar/de_DE.ISO8859-15 32 /usr/share/calendar/fr_FR.ISO8859-1 0 /usr/share/calendar/fr_FR.ISO8859-15 0 /usr/share/calendar/hr_HR.ISO8859-2 16 /usr/share/calendar/hu_HU.ISO8859-2 0 /usr/share/calendar/ru_RU.KOI8-R 0 /usr/share/calendar/uk_UA.KOI8-U 176 /usr/share/calendar 0 /usr/share/CoreDuetDaemonConfig.bundle/Contents/_CodeSignature 0 /usr/share/CoreDuetDaemonConfig.bundle/Contents/Resources/en.lproj 0 /usr/share/CoreDuetDaemonConfig.bundle/Contents/Resources 0 /usr/share/CoreDuetDaemonConfig.bundle/Contents 0 /usr/share/CoreDuetDaemonConfig.bundle 1528 /usr/share/cracklib 0 /usr/share/CSI 0 /usr/share/cups/banners 0 /usr/share/cups/data 16 /usr/share/cups/drv 0 /usr/share/cups/examples 11776 /usr/share/cups/ipptool 0 /usr/share/cups/mime 0 /usr/share/cups/model 0 /usr/share/cups/ppdc 0 /usr/share/cups/profiles 0 /usr/share/cups/templates 11792 /usr/share/cups 0 /usr/share/current-os.sdk/_CodeSignature 0 /usr/share/current-os.sdk 2904 /usr/share/dict 3192 /usr/share/doc/bash 856 /usr/share/doc/cups/help 568 /usr/share/doc/cups/images 1440 /usr/share/doc/cups 152 /usr/share/doc/groff/1.19.2/examples/mom 480 /usr/share/doc/groff/1.19.2/examples 680 /usr/share/doc/groff/1.19.2/html/mom 680 /usr/share/doc/groff/1.19.2/html 1648 /usr/share/doc/groff/1.19.2 1648 /usr/share/doc/groff 72 /usr/share/doc/ntp/description_files 16 /usr/share/doc/ntp/drivers/icons 0 /usr/share/doc/ntp/drivers/scripts 216 /usr/share/doc/ntp/drivers 64 /usr/share/doc/ntp/hints 16 /usr/share/doc/ntp/icons 1848 /usr/share/doc/ntp/pic 0 /usr/share/doc/ntp/scripts 2672 /usr/share/doc/ntp 0 /usr/share/doc/postfix/examples 2040 /usr/share/doc/postfix/html 2920 /usr/share/doc/postfix 11872 /usr/share/doc 0 /usr/share/emacs/22.1/etc/e 0 /usr/share/emacs/22.1/etc/images/ezimage 40 /usr/share/emacs/22.1/etc/images/gnus 0 /usr/share/emacs/22.1/etc/images/gud 32 /usr/share/emacs/22.1/etc/images/icons 0 /usr/share/emacs/22.1/etc/images/low-color 0 /usr/share/emacs/22.1/etc/images/mail 0 /usr/share/emacs/22.1/etc/images/smilies 72 /usr/share/emacs/22.1/etc/images 72 /usr/share/emacs/22.1/etc/tree-widget/default 72 /usr/share/emacs/22.1/etc/tree-widget/folder 144 /usr/share/emacs/22.1/etc/tree-widget 8872 /usr/share/emacs/22.1/etc 2208 /usr/share/emacs/22.1/leim/ja-dic 7752 /usr/share/emacs/22.1/leim/quail 9976 /usr/share/emacs/22.1/leim 2000 /usr/share/emacs/22.1/lisp/calc 1056 /usr/share/emacs/22.1/lisp/calendar 2136 /usr/share/emacs/22.1/lisp/emacs-lisp 1264 /usr/share/emacs/22.1/lisp/emulation 1032 /usr/share/emacs/22.1/lisp/erc 744 /usr/share/emacs/22.1/lisp/eshell 5544 /usr/share/emacs/22.1/lisp/gnus 2168 /usr/share/emacs/22.1/lisp/international 760 /usr/share/emacs/22.1/lisp/language 1112 /usr/share/emacs/22.1/lisp/mail 1200 /usr/share/emacs/22.1/lisp/mh-e 1424 /usr/share/emacs/22.1/lisp/net 552 /usr/share/emacs/22.1/lisp/obsolete 872 /usr/share/emacs/22.1/lisp/play 6312 /usr/share/emacs/22.1/lisp/progmodes 464 /usr/share/emacs/22.1/lisp/term 3376 /usr/share/emacs/22.1/lisp/textmodes 472 /usr/share/emacs/22.1/lisp/url 46424 /usr/share/emacs/22.1/lisp 0 /usr/share/emacs/22.1/site-lisp 65272 /usr/share/emacs/22.1 0 /usr/share/emacs/site-lisp 65272 /usr/share/emacs 0 /usr/share/examples/DTTk 0 /usr/share/examples/tnftpd 0 /usr/share/examples 232 /usr/share/file/magic 600 /usr/share/file 0 /usr/share/ftpd/examples 0 /usr/share/ftpd 5272 /usr/share/germantok 0 /usr/share/groff/1.19.2/font/devascii 0 /usr/share/groff/1.19.2/font/devdvi/generate 208 /usr/share/groff/1.19.2/font/devdvi 144 /usr/share/groff/1.19.2/font/devhtml 0 /usr/share/groff/1.19.2/font/devlatin1 192 /usr/share/groff/1.19.2/font/devlbp 16 /usr/share/groff/1.19.2/font/devlj4/generate 808 /usr/share/groff/1.19.2/font/devlj4 16 /usr/share/groff/1.19.2/font/devps/generate 512 /usr/share/groff/1.19.2/font/devps 64 /usr/share/groff/1.19.2/font/devutf8 1928 /usr/share/groff/1.19.2/font 32 /usr/share/groff/1.19.2/tmac/mdoc 0 /usr/share/groff/1.19.2/tmac/mm 648 /usr/share/groff/1.19.2/tmac 2576 /usr/share/groff/1.19.2 0 /usr/share/groff/site-font 0 /usr/share/groff/site-tmac 2576 /usr/share/groff 16 /usr/share/hiutil 0 /usr/share/httpd/build 0 /usr/share/httpd/error/include 56 /usr/share/httpd/error 512 /usr/share/httpd/icons/small 2112 /usr/share/httpd/icons 2168 /usr/share/httpd 23808 /usr/share/icu 11912 /usr/share/info 40 /usr/share/java/Stubs 40 /usr/share/java 0 /usr/share/kdrl.bundle/_CodeSignature 0 /usr/share/kdrl.bundle 632 /usr/share/kpep 23488 /usr/share/langid 8 /usr/share/locale/af_ZA/LC_MESSAGES 48 /usr/share/locale/af_ZA 0 /usr/share/locale/af_ZA.ISO8859-1/LC_MESSAGES 24 /usr/share/locale/af_ZA.ISO8859-1 8 /usr/share/locale/af_ZA.ISO8859-15/LC_MESSAGES 48 /usr/share/locale/af_ZA.ISO8859-15 8 /usr/share/locale/af_ZA.UTF-8/LC_MESSAGES 48 /usr/share/locale/af_ZA.UTF-8 0 /usr/share/locale/am_ET/LC_MESSAGES 8 /usr/share/locale/am_ET 0 /usr/share/locale/am_ET.UTF-8/LC_MESSAGES 8 /usr/share/locale/am_ET.UTF-8 0 /usr/share/locale/be_BY/LC_MESSAGES 24 /usr/share/locale/be_BY 0 /usr/share/locale/be_BY.CP1131/LC_MESSAGES 8 /usr/share/locale/be_BY.CP1131 0 /usr/share/locale/be_BY.CP1251/LC_MESSAGES 8 /usr/share/locale/be_BY.CP1251 0 /usr/share/locale/be_BY.ISO8859-5/LC_MESSAGES 16 /usr/share/locale/be_BY.ISO8859-5 0 /usr/share/locale/be_BY.UTF-8/LC_MESSAGES 24 /usr/share/locale/be_BY.UTF-8 0 /usr/share/locale/bg_BG/LC_MESSAGES 24 /usr/share/locale/bg_BG 0 /usr/share/locale/bg_BG.CP1251/LC_MESSAGES 0 /usr/share/locale/bg_BG.CP1251 0 /usr/share/locale/bg_BG.UTF-8/LC_MESSAGES 24 /usr/share/locale/bg_BG.UTF-8 8 /usr/share/locale/ca_ES/LC_MESSAGES 40 /usr/share/locale/ca_ES 0 /usr/share/locale/ca_ES.ISO8859-1/LC_MESSAGES 8 /usr/share/locale/ca_ES.ISO8859-1 8 /usr/share/locale/ca_ES.ISO8859-15/LC_MESSAGES 40 /usr/share/locale/ca_ES.ISO8859-15 8 /usr/share/locale/ca_ES.UTF-8/LC_MESSAGES 40 /usr/share/locale/ca_ES.UTF-8 40 /usr/share/locale/cs/LC_MESSAGES 40 /usr/share/locale/cs 8 /usr/share/locale/cs_CZ/LC_MESSAGES 32 /usr/share/locale/cs_CZ 0 /usr/share/locale/cs_CZ.ISO8859-2/LC_MESSAGES 8 /usr/share/locale/cs_CZ.ISO8859-2 8 /usr/share/locale/cs_CZ.UTF-8/LC_MESSAGES 32 /usr/share/locale/cs_CZ.UTF-8 48 /usr/share/locale/da/LC_MESSAGES 48 /usr/share/locale/da 8 /usr/share/locale/da_DK/LC_MESSAGES 40 /usr/share/locale/da_DK 0 /usr/share/locale/da_DK.ISO8859-1/LC_MESSAGES 16 /usr/share/locale/da_DK.ISO8859-1 8 /usr/share/locale/da_DK.ISO8859-15/LC_MESSAGES 48 /usr/share/locale/da_DK.ISO8859-15 8 /usr/share/locale/da_DK.UTF-8/LC_MESSAGES 40 /usr/share/locale/da_DK.UTF-8 72 /usr/share/locale/de/LC_MESSAGES 72 /usr/share/locale/de 8 /usr/share/locale/de_AT/LC_MESSAGES 40 /usr/share/locale/de_AT 8 /usr/share/locale/de_AT.ISO8859-1/LC_MESSAGES 32 /usr/share/locale/de_AT.ISO8859-1 8 /usr/share/locale/de_AT.ISO8859-15/LC_MESSAGES 48 /usr/share/locale/de_AT.ISO8859-15 8 /usr/share/locale/de_AT.UTF-8/LC_MESSAGES 40 /usr/share/locale/de_AT.UTF-8 8 /usr/share/locale/de_CH/LC_MESSAGES 48 /usr/share/locale/de_CH 8 /usr/share/locale/de_CH.ISO8859-1/LC_MESSAGES 40 /usr/share/locale/de_CH.ISO8859-1 8 /usr/share/locale/de_CH.ISO8859-15/LC_MESSAGES 48 /usr/share/locale/de_CH.ISO8859-15 8 /usr/share/locale/de_CH.UTF-8/LC_MESSAGES 48 /usr/share/locale/de_CH.UTF-8 8 /usr/share/locale/de_DE/LC_MESSAGES 40 /usr/share/locale/de_DE 0 /usr/share/locale/de_DE.ISO8859-1/LC_MESSAGES 8 /usr/share/locale/de_DE.ISO8859-1 8 /usr/share/locale/de_DE.ISO8859-15/LC_MESSAGES 40 /usr/share/locale/de_DE.ISO8859-15 8 /usr/share/locale/de_DE.UTF-8/LC_MESSAGES 40 /usr/share/locale/de_DE.UTF-8 0 /usr/share/locale/el_GR/LC_MESSAGES 32 /usr/share/locale/el_GR 0 /usr/share/locale/el_GR.ISO8859-7/LC_MESSAGES 0 /usr/share/locale/el_GR.ISO8859-7 0 /usr/share/locale/el_GR.UTF-8/LC_MESSAGES 32 /usr/share/locale/el_GR.UTF-8 8 /usr/share/locale/en_AU/LC_MESSAGES 48 /usr/share/locale/en_AU 8 /usr/share/locale/en_AU.ISO8859-1/LC_MESSAGES 40 /usr/share/locale/en_AU.ISO8859-1 8 /usr/share/locale/en_AU.ISO8859-15/LC_MESSAGES 48 /usr/share/locale/en_AU.ISO8859-15 8 /usr/share/locale/en_AU.US-ASCII/LC_MESSAGES 48 /usr/share/locale/en_AU.US-ASCII 8 /usr/share/locale/en_AU.UTF-8/LC_MESSAGES 48 /usr/share/locale/en_AU.UTF-8 8 /usr/share/locale/en_CA/LC_MESSAGES 48 /usr/share/locale/en_CA 0 /usr/share/locale/en_CA.ISO8859-1/LC_MESSAGES 32 /usr/share/locale/en_CA.ISO8859-1 8 /usr/share/locale/en_CA.ISO8859-15/LC_MESSAGES 48 /usr/share/locale/en_CA.ISO8859-15 8 /usr/share/locale/en_CA.US-ASCII/LC_MESSAGES 48 /usr/share/locale/en_CA.US-ASCII 8 /usr/share/locale/en_CA.UTF-8/LC_MESSAGES 48 /usr/share/locale/en_CA.UTF-8 8 /usr/share/locale/en_GB/LC_MESSAGES 40 /usr/share/locale/en_GB 0 /usr/share/locale/en_GB.ISO8859-1/LC_MESSAGES 24 /usr/share/locale/en_GB.ISO8859-1 8 /usr/share/locale/en_GB.ISO8859-15/LC_MESSAGES 48 /usr/share/locale/en_GB.ISO8859-15 8 /usr/share/locale/en_GB.US-ASCII/LC_MESSAGES 48 /usr/share/locale/en_GB.US-ASCII 8 /usr/share/locale/en_GB.UTF-8/LC_MESSAGES 40 /usr/share/locale/en_GB.UTF-8 8 /usr/share/locale/en_IE/LC_MESSAGES 40 /usr/share/locale/en_IE 8 /usr/share/locale/en_IE.UTF-8/LC_MESSAGES 40 /usr/share/locale/en_IE.UTF-8 8 /usr/share/locale/en_NZ/LC_MESSAGES 48 /usr/share/locale/en_NZ 8 /usr/share/locale/en_NZ.ISO8859-1/LC_MESSAGES 40 /usr/share/locale/en_NZ.ISO8859-1 8 /usr/share/locale/en_NZ.ISO8859-15/LC_MESSAGES 48 /usr/share/locale/en_NZ.ISO8859-15 8 /usr/share/locale/en_NZ.US-ASCII/LC_MESSAGES 48 /usr/share/locale/en_NZ.US-ASCII 8 /usr/share/locale/en_NZ.UTF-8/LC_MESSAGES 48 /usr/share/locale/en_NZ.UTF-8 8 /usr/share/locale/en_US/LC_MESSAGES 48 /usr/share/locale/en_US 0 /usr/share/locale/en_US.ISO8859-1/LC_MESSAGES 16 /usr/share/locale/en_US.ISO8859-1 8 /usr/share/locale/en_US.ISO8859-15/LC_MESSAGES 48 /usr/share/locale/en_US.ISO8859-15 8 /usr/share/locale/en_US.US-ASCII/LC_MESSAGES 48 /usr/share/locale/en_US.US-ASCII 8 /usr/share/locale/en_US.UTF-8/LC_MESSAGES 48 /usr/share/locale/en_US.UTF-8 56 /usr/share/locale/eo/LC_MESSAGES 56 /usr/share/locale/eo 8 /usr/share/locale/es_ES/LC_MESSAGES 40 /usr/share/locale/es_ES 0 /usr/share/locale/es_ES.ISO8859-1/LC_MESSAGES 8 /usr/share/locale/es_ES.ISO8859-1 8 /usr/share/locale/es_ES.ISO8859-15/LC_MESSAGES 40 /usr/share/locale/es_ES.ISO8859-15 8 /usr/share/locale/es_ES.UTF-8/LC_MESSAGES 40 /usr/share/locale/es_ES.UTF-8 8 /usr/share/locale/et_EE/LC_MESSAGES 40 /usr/share/locale/et_EE 0 /usr/share/locale/et_EE.ISO8859-15/LC_MESSAGES 8 /usr/share/locale/et_EE.ISO8859-15 8 /usr/share/locale/et_EE.UTF-8/LC_MESSAGES 40 /usr/share/locale/et_EE.UTF-8 8 /usr/share/locale/eu_ES/LC_MESSAGES 48 /usr/share/locale/eu_ES 0 /usr/share/locale/eu_ES.ISO8859-1/LC_MESSAGES 24 /usr/share/locale/eu_ES.ISO8859-1 8 /usr/share/locale/eu_ES.ISO8859-15/LC_MESSAGES 48 /usr/share/locale/eu_ES.ISO8859-15 8 /usr/share/locale/eu_ES.UTF-8/LC_MESSAGES 48 /usr/share/locale/eu_ES.UTF-8 8 /usr/share/locale/fi_FI/LC_MESSAGES 40 /usr/share/locale/fi_FI 0 /usr/share/locale/fi_FI.ISO8859-1/LC_MESSAGES 16 /usr/share/locale/fi_FI.ISO8859-1 8 /usr/share/locale/fi_FI.ISO8859-15/LC_MESSAGES 48 /usr/share/locale/fi_FI.ISO8859-15 8 /usr/share/locale/fi_FI.UTF-8/LC_MESSAGES 40 /usr/share/locale/fi_FI.UTF-8 72 /usr/share/locale/fr/LC_MESSAGES 72 /usr/share/locale/fr 8 /usr/share/locale/fr_BE/LC_MESSAGES 48 /usr/share/locale/fr_BE 0 /usr/share/locale/fr_BE.ISO8859-1/LC_MESSAGES 24 /usr/share/locale/fr_BE.ISO8859-1 8 /usr/share/locale/fr_BE.ISO8859-15/LC_MESSAGES 48 /usr/share/locale/fr_BE.ISO8859-15 8 /usr/share/locale/fr_BE.UTF-8/LC_MESSAGES 48 /usr/share/locale/fr_BE.UTF-8 8 /usr/share/locale/fr_CA/LC_MESSAGES 48 /usr/share/locale/fr_CA 8 /usr/share/locale/fr_CA.ISO8859-1/LC_MESSAGES 40 /usr/share/locale/fr_CA.ISO8859-1 8 /usr/share/locale/fr_CA.ISO8859-15/LC_MESSAGES 48 /usr/share/locale/fr_CA.ISO8859-15 8 /usr/share/locale/fr_CA.UTF-8/LC_MESSAGES 48 /usr/share/locale/fr_CA.UTF-8 8 /usr/share/locale/fr_CH/LC_MESSAGES 48 /usr/share/locale/fr_CH 0 /usr/share/locale/fr_CH.ISO8859-1/LC_MESSAGES 40 /usr/share/locale/fr_CH.ISO8859-1 8 /usr/share/locale/fr_CH.ISO8859-15/LC_MESSAGES 48 /usr/share/locale/fr_CH.ISO8859-15 8 /usr/share/locale/fr_CH.UTF-8/LC_MESSAGES 48 /usr/share/locale/fr_CH.UTF-8 8 /usr/share/locale/fr_FR/LC_MESSAGES 40 /usr/share/locale/fr_FR 0 /usr/share/locale/fr_FR.ISO8859-1/LC_MESSAGES 16 /usr/share/locale/fr_FR.ISO8859-1 8 /usr/share/locale/fr_FR.ISO8859-15/LC_MESSAGES 48 /usr/share/locale/fr_FR.ISO8859-15 8 /usr/share/locale/fr_FR.UTF-8/LC_MESSAGES 40 /usr/share/locale/fr_FR.UTF-8 48 /usr/share/locale/he/LC_MESSAGES 48 /usr/share/locale/he 0 /usr/share/locale/he_IL/LC_MESSAGES 24 /usr/share/locale/he_IL 0 /usr/share/locale/he_IL.UTF-8/LC_MESSAGES 24 /usr/share/locale/he_IL.UTF-8 0 /usr/share/locale/hi_IN.ISCII-DEV/LC_MESSAGES 0 /usr/share/locale/hi_IN.ISCII-DEV 32 /usr/share/locale/hr/LC_MESSAGES 32 /usr/share/locale/hr 8 /usr/share/locale/hr_HR/LC_MESSAGES 40 /usr/share/locale/hr_HR 0 /usr/share/locale/hr_HR.ISO8859-2/LC_MESSAGES 16 /usr/share/locale/hr_HR.ISO8859-2 8 /usr/share/locale/hr_HR.UTF-8/LC_MESSAGES 40 /usr/share/locale/hr_HR.UTF-8 8 /usr/share/locale/hu_HU/LC_MESSAGES 40 /usr/share/locale/hu_HU 0 /usr/share/locale/hu_HU.ISO8859-2/LC_MESSAGES 16 /usr/share/locale/hu_HU.ISO8859-2 8 /usr/share/locale/hu_HU.UTF-8/LC_MESSAGES 40 /usr/share/locale/hu_HU.UTF-8 0 /usr/share/locale/hy_AM/LC_MESSAGES 24 /usr/share/locale/hy_AM 0 /usr/share/locale/hy_AM.ARMSCII-8/LC_MESSAGES 0 /usr/share/locale/hy_AM.ARMSCII-8 0 /usr/share/locale/hy_AM.UTF-8/LC_MESSAGES 24 /usr/share/locale/hy_AM.UTF-8 8 /usr/share/locale/is_IS/LC_MESSAGES 40 /usr/share/locale/is_IS 0 /usr/share/locale/is_IS.ISO8859-1/LC_MESSAGES 8 /usr/share/locale/is_IS.ISO8859-1 8 /usr/share/locale/is_IS.ISO8859-15/LC_MESSAGES 40 /usr/share/locale/is_IS.ISO8859-15 8 /usr/share/locale/is_IS.UTF-8/LC_MESSAGES 40 /usr/share/locale/is_IS.UTF-8 8 /usr/share/locale/it_CH/LC_MESSAGES 48 /usr/share/locale/it_CH 8 /usr/share/locale/it_CH.ISO8859-1/LC_MESSAGES 48 /usr/share/locale/it_CH.ISO8859-1 8 /usr/share/locale/it_CH.ISO8859-15/LC_MESSAGES 48 /usr/share/locale/it_CH.ISO8859-15 8 /usr/share/locale/it_CH.UTF-8/LC_MESSAGES 48 /usr/share/locale/it_CH.UTF-8 8 /usr/share/locale/it_IT/LC_MESSAGES 40 /usr/share/locale/it_IT 0 /usr/share/locale/it_IT.ISO8859-1/LC_MESSAGES 16 /usr/share/locale/it_IT.ISO8859-1 8 /usr/share/locale/it_IT.ISO8859-15/LC_MESSAGES 48 /usr/share/locale/it_IT.ISO8859-15 8 /usr/share/locale/it_IT.UTF-8/LC_MESSAGES 40 /usr/share/locale/it_IT.UTF-8 48 /usr/share/locale/ja/LC_MESSAGES 48 /usr/share/locale/ja 0 /usr/share/locale/ja_JP/LC_MESSAGES 24 /usr/share/locale/ja_JP 0 /usr/share/locale/ja_JP.eucJP/LC_MESSAGES 8 /usr/share/locale/ja_JP.eucJP 0 /usr/share/locale/ja_JP.SJIS/LC_MESSAGES 24 /usr/share/locale/ja_JP.SJIS 0 /usr/share/locale/ja_JP.UTF-8/LC_MESSAGES 24 /usr/share/locale/ja_JP.UTF-8 0 /usr/share/locale/kk_KZ/LC_MESSAGES 24 /usr/share/locale/kk_KZ 0 /usr/share/locale/kk_KZ.PT154/LC_MESSAGES 0 /usr/share/locale/kk_KZ.PT154 0 /usr/share/locale/kk_KZ.UTF-8/LC_MESSAGES 24 /usr/share/locale/kk_KZ.UTF-8 8 /usr/share/locale/ko_KR/LC_MESSAGES 32 /usr/share/locale/ko_KR 8 /usr/share/locale/ko_KR.CP949/LC_MESSAGES 56 /usr/share/locale/ko_KR.CP949 0 /usr/share/locale/ko_KR.eucKR/LC_MESSAGES 16 /usr/share/locale/ko_KR.eucKR 8 /usr/share/locale/ko_KR.UTF-8/LC_MESSAGES 32 /usr/share/locale/ko_KR.UTF-8 0 /usr/share/locale/la_LN.ISO8859-1 8 /usr/share/locale/la_LN.ISO8859-15 8 /usr/share/locale/la_LN.ISO8859-2 8 /usr/share/locale/la_LN.ISO8859-4 8 /usr/share/locale/la_LN.US-ASCII 8 /usr/share/locale/lt_LT/LC_MESSAGES 40 /usr/share/locale/lt_LT 0 /usr/share/locale/lt_LT.ISO8859-13/LC_MESSAGES 0 /usr/share/locale/lt_LT.ISO8859-13 8 /usr/share/locale/lt_LT.ISO8859-4/LC_MESSAGES 32 /usr/share/locale/lt_LT.ISO8859-4 8 /usr/share/locale/lt_LT.UTF-8/LC_MESSAGES 40 /usr/share/locale/lt_LT.UTF-8 64 /usr/share/locale/nb/LC_MESSAGES 64 /usr/share/locale/nb 24 /usr/share/locale/nl/LC_MESSAGES 24 /usr/share/locale/nl 8 /usr/share/locale/nl_BE/LC_MESSAGES 48 /usr/share/locale/nl_BE 8 /usr/share/locale/nl_BE.ISO8859-1/LC_MESSAGES 40 /usr/share/locale/nl_BE.ISO8859-1 8 /usr/share/locale/nl_BE.ISO8859-15/LC_MESSAGES 48 /usr/share/locale/nl_BE.ISO8859-15 8 /usr/share/locale/nl_BE.UTF-8/LC_MESSAGES 48 /usr/share/locale/nl_BE.UTF-8 8 /usr/share/locale/nl_NL/LC_MESSAGES 48 /usr/share/locale/nl_NL 0 /usr/share/locale/nl_NL.ISO8859-1/LC_MESSAGES 16 /usr/share/locale/nl_NL.ISO8859-1 8 /usr/share/locale/nl_NL.ISO8859-15/LC_MESSAGES 48 /usr/share/locale/nl_NL.ISO8859-15 8 /usr/share/locale/nl_NL.UTF-8/LC_MESSAGES 48 /usr/share/locale/nl_NL.UTF-8 56 /usr/share/locale/no/LC_MESSAGES 56 /usr/share/locale/no 8 /usr/share/locale/no_NO/LC_MESSAGES 40 /usr/share/locale/no_NO 0 /usr/share/locale/no_NO.ISO8859-1/LC_MESSAGES 16 /usr/share/locale/no_NO.ISO8859-1 8 /usr/share/locale/no_NO.ISO8859-15/LC_MESSAGES 48 /usr/share/locale/no_NO.ISO8859-15 8 /usr/share/locale/no_NO.UTF-8/LC_MESSAGES 40 /usr/share/locale/no_NO.UTF-8 64 /usr/share/locale/pl/LC_MESSAGES 64 /usr/share/locale/pl 8 /usr/share/locale/pl_PL/LC_MESSAGES 32 /usr/share/locale/pl_PL 0 /usr/share/locale/pl_PL.ISO8859-2/LC_MESSAGES 8 /usr/share/locale/pl_PL.ISO8859-2 8 /usr/share/locale/pl_PL.UTF-8/LC_MESSAGES 32 /usr/share/locale/pl_PL.UTF-8 8 /usr/share/locale/pt_BR/LC_MESSAGES 40 /usr/share/locale/pt_BR 8 /usr/share/locale/pt_BR.ISO8859-1/LC_MESSAGES 24 /usr/share/locale/pt_BR.ISO8859-1 8 /usr/share/locale/pt_BR.UTF-8/LC_MESSAGES 40 /usr/share/locale/pt_BR.UTF-8 8 /usr/share/locale/pt_PT/LC_MESSAGES 40 /usr/share/locale/pt_PT 0 /usr/share/locale/pt_PT.ISO8859-1/LC_MESSAGES 16 /usr/share/locale/pt_PT.ISO8859-1 8 /usr/share/locale/pt_PT.ISO8859-15/LC_MESSAGES 48 /usr/share/locale/pt_PT.ISO8859-15 8 /usr/share/locale/pt_PT.UTF-8/LC_MESSAGES 40 /usr/share/locale/pt_PT.UTF-8 64 /usr/share/locale/ro/LC_MESSAGES 64 /usr/share/locale/ro 8 /usr/share/locale/ro_RO/LC_MESSAGES 40 /usr/share/locale/ro_RO 0 /usr/share/locale/ro_RO.ISO8859-2/LC_MESSAGES 16 /usr/share/locale/ro_RO.ISO8859-2 8 /usr/share/locale/ro_RO.UTF-8/LC_MESSAGES 40 /usr/share/locale/ro_RO.UTF-8 64 /usr/share/locale/ru/LC_MESSAGES 64 /usr/share/locale/ru 0 /usr/share/locale/ru_RU/LC_MESSAGES 24 /usr/share/locale/ru_RU 0 /usr/share/locale/ru_RU.CP1251/LC_MESSAGES 16 /usr/share/locale/ru_RU.CP1251 0 /usr/share/locale/ru_RU.CP866/LC_MESSAGES 8 /usr/share/locale/ru_RU.CP866 0 /usr/share/locale/ru_RU.ISO8859-5/LC_MESSAGES 8 /usr/share/locale/ru_RU.ISO8859-5 0 /usr/share/locale/ru_RU.KOI8-R/LC_MESSAGES 0 /usr/share/locale/ru_RU.KOI8-R 0 /usr/share/locale/ru_RU.UTF-8/LC_MESSAGES 24 /usr/share/locale/ru_RU.UTF-8 8 /usr/share/locale/sk_SK/LC_MESSAGES 40 /usr/share/locale/sk_SK 8 /usr/share/locale/sk_SK.ISO8859-2/LC_MESSAGES 24 /usr/share/locale/sk_SK.ISO8859-2 8 /usr/share/locale/sk_SK.UTF-8/LC_MESSAGES 40 /usr/share/locale/sk_SK.UTF-8 8 /usr/share/locale/sl_SI/LC_MESSAGES 40 /usr/share/locale/sl_SI 0 /usr/share/locale/sl_SI.ISO8859-2/LC_MESSAGES 8 /usr/share/locale/sl_SI.ISO8859-2 8 /usr/share/locale/sl_SI.UTF-8/LC_MESSAGES 40 /usr/share/locale/sl_SI.UTF-8 0 /usr/share/locale/sr_YU/LC_MESSAGES 32 /usr/share/locale/sr_YU 0 /usr/share/locale/sr_YU.ISO8859-2/LC_MESSAGES 16 /usr/share/locale/sr_YU.ISO8859-2 0 /usr/share/locale/sr_YU.ISO8859-5/LC_MESSAGES 8 /usr/share/locale/sr_YU.ISO8859-5 0 /usr/share/locale/sr_YU.UTF-8/LC_MESSAGES 32 /usr/share/locale/sr_YU.UTF-8 64 /usr/share/locale/sv/LC_MESSAGES 64 /usr/share/locale/sv 8 /usr/share/locale/sv_SE/LC_MESSAGES 40 /usr/share/locale/sv_SE 0 /usr/share/locale/sv_SE.ISO8859-1/LC_MESSAGES 8 /usr/share/locale/sv_SE.ISO8859-1 8 /usr/share/locale/sv_SE.ISO8859-15/LC_MESSAGES 40 /usr/share/locale/sv_SE.ISO8859-15 8 /usr/share/locale/sv_SE.UTF-8/LC_MESSAGES 40 /usr/share/locale/sv_SE.UTF-8 64 /usr/share/locale/tr/LC_MESSAGES 64 /usr/share/locale/tr 8 /usr/share/locale/tr_TR/LC_MESSAGES 40 /usr/share/locale/tr_TR 0 /usr/share/locale/tr_TR.ISO8859-9/LC_MESSAGES 16 /usr/share/locale/tr_TR.ISO8859-9 8 /usr/share/locale/tr_TR.UTF-8/LC_MESSAGES 40 /usr/share/locale/tr_TR.UTF-8 0 /usr/share/locale/uk_UA/LC_MESSAGES 24 /usr/share/locale/uk_UA 0 /usr/share/locale/uk_UA.ISO8859-5/LC_MESSAGES 16 /usr/share/locale/uk_UA.ISO8859-5 0 /usr/share/locale/uk_UA.KOI8-U/LC_MESSAGES 0 /usr/share/locale/uk_UA.KOI8-U 0 /usr/share/locale/uk_UA.UTF-8/LC_MESSAGES 24 /usr/share/locale/uk_UA.UTF-8 24 /usr/share/locale/UTF-8 48 /usr/share/locale/zh_CN/LC_MESSAGES 72 /usr/share/locale/zh_CN 0 /usr/share/locale/zh_CN.eucCN/LC_MESSAGES 8 /usr/share/locale/zh_CN.eucCN 0 /usr/share/locale/zh_CN.GB18030/LC_MESSAGES 80 /usr/share/locale/zh_CN.GB18030 0 /usr/share/locale/zh_CN.GB2312/LC_MESSAGES 16 /usr/share/locale/zh_CN.GB2312 8 /usr/share/locale/zh_CN.GBK/LC_MESSAGES 40 /usr/share/locale/zh_CN.GBK 0 /usr/share/locale/zh_CN.UTF-8/LC_MESSAGES 24 /usr/share/locale/zh_CN.UTF-8 8 /usr/share/locale/zh_HK/LC_MESSAGES 40 /usr/share/locale/zh_HK 8 /usr/share/locale/zh_HK.Big5HKSCS/LC_MESSAGES 40 /usr/share/locale/zh_HK.Big5HKSCS 8 /usr/share/locale/zh_HK.UTF-8/LC_MESSAGES 40 /usr/share/locale/zh_HK.UTF-8 32 /usr/share/locale/zh_TW/LC_MESSAGES 64 /usr/share/locale/zh_TW 0 /usr/share/locale/zh_TW.Big5/LC_MESSAGES 16 /usr/share/locale/zh_TW.Big5 0 /usr/share/locale/zh_TW.UTF-8/LC_MESSAGES 32 /usr/share/locale/zh_TW.UTF-8 7664 /usr/share/locale 30352 /usr/share/man/man1 496 /usr/share/man/man2 97600 /usr/share/man/man3 264 /usr/share/man/man4 2072 /usr/share/man/man5 0 /usr/share/man/man6 528 /usr/share/man/man7 1472 /usr/share/man/man8 24 /usr/share/man/man9 9960 /usr/share/man/mann 143776 /usr/share/man 0 /usr/share/mecabra/common/descriptions/JapaneseBigram.momd 0 /usr/share/mecabra/common/descriptions/LearningDictionary.momd 0 /usr/share/mecabra/common/descriptions/LearningDictionaryJapanese.momd 0 /usr/share/mecabra/common/descriptions 0 /usr/share/mecabra/common 0 /usr/share/mecabra/ja/conf 0 /usr/share/mecabra/ja/lm/Japanese.lm/_CodeSignature 102624 /usr/share/mecabra/ja/lm/Japanese.lm 102624 /usr/share/mecabra/ja/lm 131200 /usr/share/mecabra/ja 0 /usr/share/mecabra/updates/com.apple.inputmethod.SCIM.bundle/Contents/_CodeSignature 0 /usr/share/mecabra/updates/com.apple.inputmethod.SCIM.bundle/Contents/Resources/Chinese.lm/_CodeSignature 0 /usr/share/mecabra/updates/com.apple.inputmethod.SCIM.bundle/Contents/Resources/Chinese.lm 176 /usr/share/mecabra/updates/com.apple.inputmethod.SCIM.bundle/Contents/Resources 176 /usr/share/mecabra/updates/com.apple.inputmethod.SCIM.bundle/Contents 176 /usr/share/mecabra/updates/com.apple.inputmethod.SCIM.bundle 0 /usr/share/mecabra/updates/com.apple.inputmethod.TCIM.bundle/Contents/_CodeSignature 264 /usr/share/mecabra/updates/com.apple.inputmethod.TCIM.bundle/Contents/Resources 264 /usr/share/mecabra/updates/com.apple.inputmethod.TCIM.bundle/Contents 264 /usr/share/mecabra/updates/com.apple.inputmethod.TCIM.bundle 440 /usr/share/mecabra/updates 131640 /usr/share/mecabra 72 /usr/share/misc 16 /usr/share/php/php/fpm 16 /usr/share/php/php 16 /usr/share/php 0 /usr/share/pmenergy 16 /usr/share/sandbox 544 /usr/share/screen/utf8encodings 544 /usr/share/screen 0 /usr/share/skel 128 /usr/share/snmp/mib2c-data 840 /usr/share/snmp/mibs 0 /usr/share/snmp/snmpconf-data/snmp-data 0 /usr/share/snmp/snmpconf-data/snmpd-data 0 /usr/share/snmp/snmpconf-data/snmptrapd-data 0 /usr/share/snmp/snmpconf-data 1088 /usr/share/snmp 0 /usr/share/tabset 0 /usr/share/terminfo/31 0 /usr/share/terminfo/32 0 /usr/share/terminfo/33 0 /usr/share/terminfo/34 0 /usr/share/terminfo/35 0 /usr/share/terminfo/36 0 /usr/share/terminfo/37 0 /usr/share/terminfo/38 0 /usr/share/terminfo/39 0 /usr/share/terminfo/41 0 /usr/share/terminfo/45 0 /usr/share/terminfo/4c 0 /usr/share/terminfo/4d 0 /usr/share/terminfo/4e 0 /usr/share/terminfo/50 0 /usr/share/terminfo/51 0 /usr/share/terminfo/58 0 /usr/share/terminfo/61 0 /usr/share/terminfo/62 0 /usr/share/terminfo/63 0 /usr/share/terminfo/64 0 /usr/share/terminfo/65 0 /usr/share/terminfo/66 0 /usr/share/terminfo/67 0 /usr/share/terminfo/68 0 /usr/share/terminfo/69 0 /usr/share/terminfo/6a 0 /usr/share/terminfo/6b 0 /usr/share/terminfo/6c 0 /usr/share/terminfo/6d 0 /usr/share/terminfo/6e 0 /usr/share/terminfo/6f 0 /usr/share/terminfo/70 0 /usr/share/terminfo/71 0 /usr/share/terminfo/72 0 /usr/share/terminfo/73 0 /usr/share/terminfo/74 0 /usr/share/terminfo/75 0 /usr/share/terminfo/76 0 /usr/share/terminfo/77 0 /usr/share/terminfo/78 0 /usr/share/terminfo/7a 0 /usr/share/terminfo 16 /usr/share/texinfo 0 /usr/share/thermald.bundle/Contents/_CodeSignature 0 /usr/share/thermald.bundle/Contents/Resources 0 /usr/share/thermald.bundle/Contents 0 /usr/share/thermald.bundle 90288 /usr/share/tokenizer/ja 16440 /usr/share/tokenizer/ko 6088 /usr/share/tokenizer/zh/Hans 5648 /usr/share/tokenizer/zh/Hant 11736 /usr/share/tokenizer/zh 118464 /usr/share/tokenizer 1704 /usr/share/ucupdate 0 /usr/share/uucp 160 /usr/share/vim/vim73/autoload/xml 784 /usr/share/vim/vim73/autoload 0 /usr/share/vim/vim73/colors 0 /usr/share/vim/vim73/compiler 4768 /usr/share/vim/vim73/doc 72 /usr/share/vim/vim73/ftplugin 104 /usr/share/vim/vim73/indent 32 /usr/share/vim/vim73/keymap 704 /usr/share/vim/vim73/lang 0 /usr/share/vim/vim73/macros/hanoi 0 /usr/share/vim/vim73/macros/life 16 /usr/share/vim/vim73/macros/maze 0 /usr/share/vim/vim73/macros/urm 80 /usr/share/vim/vim73/macros 0 /usr/share/vim/vim73/plugin 0 /usr/share/vim/vim73/print 4408 /usr/share/vim/vim73/spell 2072 /usr/share/vim/vim73/syntax 24 /usr/share/vim/vim73/tools 1632 /usr/share/vim/vim73/tutor 14840 /usr/share/vim/vim73 14840 /usr/share/vim 0 /usr/share/zoneinfo/Africa 0 /usr/share/zoneinfo/America/Argentina 0 /usr/share/zoneinfo/America/Indiana 0 /usr/share/zoneinfo/America/Kentucky 0 /usr/share/zoneinfo/America/North_Dakota 0 /usr/share/zoneinfo/America 0 /usr/share/zoneinfo/Antarctica 0 /usr/share/zoneinfo/Arctic 0 /usr/share/zoneinfo/Asia 0 /usr/share/zoneinfo/Atlantic 0 /usr/share/zoneinfo/Australia 0 /usr/share/zoneinfo/Brazil 0 /usr/share/zoneinfo/Canada 0 /usr/share/zoneinfo/Chile 0 /usr/share/zoneinfo/Etc 0 /usr/share/zoneinfo/Europe 0 /usr/share/zoneinfo/Indian 0 /usr/share/zoneinfo/Mexico 0 /usr/share/zoneinfo/Pacific 0 /usr/share/zoneinfo/US 24 /usr/share/zoneinfo 1264 /usr/share/zsh/5.0.8/functions 176 /usr/share/zsh/5.0.8/help 0 /usr/share/zsh/5.0.8/scripts 1440 /usr/share/zsh/5.0.8 0 /usr/share/zsh/site-functions 1440 /usr/share/zsh 585568 /usr/share 17672 /usr/standalone/i386/EfiLoginUI 49584 /usr/standalone/i386 49592 /usr/standalone 992 /usr/X11/bin 2376 /usr/X11/lib 0 /usr/X11/libexec 3368 /usr/X11 1823816 /usr jc-1.17.3/tests/fixtures/osx-10.11.6/ifconfig.json000066400000000000000000000073171415226333200213150ustar00rootroot00000000000000[{"name": "lo0", "flags": 8049, "state": ["UP", "LOOPBACK", "RUNNING", "MULTICAST"], "mtu": 16384, "ipv4_addr": "127.0.0.1", "ipv4_mask": "255.0.0.0", "ipv4_bcast": null, "ipv6_addr": "fe80::1", "ipv6_mask": 64, "ipv6_scope": "0x1", "type": null, "mac_addr": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "gif0", "flags": 8010, "state": ["POINTOPOINT", "MULTICAST"], "mtu": 1280, "type": null, "mac_addr": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "ipv6_addr": null, "ipv6_mask": null, "ipv6_scope": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "stf0", "flags": 0, "state": null, "mtu": 1280, "type": null, "mac_addr": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "ipv6_addr": null, "ipv6_mask": null, "ipv6_scope": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "en0", "flags": 8863, "state": ["UP", "BROADCAST", "SMART", "RUNNING", "SIMPLEX", "MULTICAST"], "mtu": 1500, "ipv4_addr": "192.168.1.81", "ipv4_mask": "255.255.255.0", "ipv4_bcast": "192.168.1.255", "ipv6_addr": "fe80::6aa8:6dff:fe12:f575", "ipv6_mask": 64, "ipv6_scope": "0x4", "mac_addr": "68:a8:6d:12:f5:75", "type": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "en1", "flags": 963, "state": ["UP", "BROADCAST", "SMART", "RUNNING", "PROMISC", "SIMPLEX"], "mtu": 1500, "mac_addr": "b2:00:19:cb:f5:50", "type": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "ipv6_addr": null, "ipv6_mask": null, "ipv6_scope": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "p2p0", "flags": 8843, "state": ["UP", "BROADCAST", "RUNNING", "SIMPLEX", "MULTICAST"], "mtu": 2304, "mac_addr": "0a:a8:6d:12:f5:75", "type": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "ipv6_addr": null, "ipv6_mask": null, "ipv6_scope": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "bridge0", "flags": 8863, "state": ["UP", "BROADCAST", "SMART", "RUNNING", "SIMPLEX", "MULTICAST"], "mtu": 1500, "mac_addr": "6a:a8:6d:21:38:00", "type": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "ipv6_addr": null, "ipv6_mask": null, "ipv6_scope": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}] jc-1.17.3/tests/fixtures/osx-10.11.6/ifconfig.out000077500000000000000000000030431415226333200211460ustar00rootroot00000000000000lo0: flags=8049 mtu 16384 options=3 inet6 ::1 prefixlen 128 inet 127.0.0.1 netmask 0xff000000 inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1 nd6 options=1 gif0: flags=8010 mtu 1280 stf0: flags=0<> mtu 1280 en0: flags=8863 mtu 1500 ether 68:a8:6d:12:f5:75 inet6 fe80::6aa8:6dff:fe12:f575%en0 prefixlen 64 scopeid 0x4 inet6 2600:1700:bab0:d40:6aa8:6dff:fe12:f575 prefixlen 64 autoconf inet6 2600:1700:bab0:d40:c0d1:97f7:a613:3ed3 prefixlen 64 autoconf temporary inet 192.168.1.81 netmask 0xffffff00 broadcast 192.168.1.255 inet6 2600:1700:bab0:d40::26 prefixlen 64 dynamic nd6 options=1 media: autoselect status: active en1: flags=963 mtu 1500 options=60 ether b2:00:19:cb:f5:50 media: autoselect status: inactive p2p0: flags=8843 mtu 2304 ether 0a:a8:6d:12:f5:75 media: autoselect status: inactive bridge0: flags=8863 mtu 1500 options=63 ether 6a:a8:6d:21:38:00 Configuration: id 0:0:0:0:0:0 priority 0 hellotime 0 fwddelay 0 maxage 0 holdcnt 0 proto stp maxaddr 100 timeout 1200 root id 0:0:0:0:0:0 priority 0 ifcost 0 port 0 ipfilter disabled flags 0x2 member: en1 flags=3 ifmaxaddr 0 port 5 priority 0 path cost 0 nd6 options=1 media: status: inactive jc-1.17.3/tests/fixtures/osx-10.11.6/ifconfig2.json000066400000000000000000000073171415226333200213770ustar00rootroot00000000000000[{"name": "lo0", "flags": 8049, "state": ["UP", "LOOPBACK", "RUNNING", "MULTICAST"], "mtu": 16384, "ipv4_addr": "127.0.0.1", "ipv4_mask": "255.0.0.0", "ipv4_bcast": null, "ipv6_addr": "fe80::1", "ipv6_mask": 64, "ipv6_scope": "0x1", "type": null, "mac_addr": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "gif0", "flags": 8010, "state": ["POINTOPOINT", "MULTICAST"], "mtu": 1280, "type": null, "mac_addr": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "ipv6_addr": null, "ipv6_mask": null, "ipv6_scope": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "stf0", "flags": 0, "state": null, "mtu": 1280, "type": null, "mac_addr": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "ipv6_addr": null, "ipv6_mask": null, "ipv6_scope": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "en0", "flags": 8863, "state": ["UP", "BROADCAST", "SMART", "RUNNING", "SIMPLEX", "MULTICAST"], "mtu": 1500, "ipv4_addr": "192.168.1.65", "ipv4_mask": "255.255.255.0", "ipv4_bcast": "192.168.1.255", "ipv6_addr": "fe80::62c5:47ff:fe0a:ce0b", "ipv6_mask": 64, "ipv6_scope": "0x4", "mac_addr": "60:c5:47:0a:ce:0b", "type": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "en1", "flags": 963, "state": ["UP", "BROADCAST", "SMART", "RUNNING", "PROMISC", "SIMPLEX"], "mtu": 1500, "mac_addr": "b2:00:14:06:39:21", "type": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "ipv6_addr": null, "ipv6_mask": null, "ipv6_scope": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "p2p0", "flags": 8843, "state": ["UP", "BROADCAST", "RUNNING", "SIMPLEX", "MULTICAST"], "mtu": 2304, "mac_addr": "02:c5:47:0a:ce:0b", "type": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "ipv6_addr": null, "ipv6_mask": null, "ipv6_scope": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "bridge0", "flags": 8863, "state": ["UP", "BROADCAST", "SMART", "RUNNING", "SIMPLEX", "MULTICAST"], "mtu": 1500, "mac_addr": "62:c5:47:a0:f7:10", "type": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "ipv6_addr": null, "ipv6_mask": null, "ipv6_scope": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}] jc-1.17.3/tests/fixtures/osx-10.11.6/ifconfig2.out000077500000000000000000000030431415226333200212300ustar00rootroot00000000000000lo0: flags=8049 mtu 16384 options=3 inet6 ::1 prefixlen 128 inet 127.0.0.1 netmask 0xff000000 inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1 nd6 options=1 gif0: flags=8010 mtu 1280 stf0: flags=0<> mtu 1280 en0: flags=8863 mtu 1500 ether 60:c5:47:0a:ce:0b inet6 fe80::62c5:47ff:fe0a:ce0b%en0 prefixlen 64 scopeid 0x4 inet 192.168.1.65 netmask 0xffffff00 broadcast 192.168.1.255 inet6 2600:1700:bab0:d40:62c5:47ff:fe0a:ce0b prefixlen 64 autoconf inet6 2600:1700:bab0:d40:ad4b:19b2:2ce5:9a1b prefixlen 64 autoconf temporary inet6 2600:1700:bab0:d40::2b prefixlen 64 dynamic nd6 options=1 media: autoselect status: active en1: flags=963 mtu 1500 options=60 ether b2:00:14:06:39:21 media: autoselect status: inactive p2p0: flags=8843 mtu 2304 ether 02:c5:47:0a:ce:0b media: autoselect status: inactive bridge0: flags=8863 mtu 1500 options=63 ether 62:c5:47:a0:f7:10 Configuration: id 0:0:0:0:0:0 priority 0 hellotime 0 fwddelay 0 maxage 0 holdcnt 0 proto stp maxaddr 100 timeout 1200 root id 0:0:0:0:0:0 priority 0 ifcost 0 port 0 ipfilter disabled flags 0x2 member: en1 flags=3 ifmaxaddr 0 port 5 priority 0 path cost 0 nd6 options=1 media: status: inactive jc-1.17.3/tests/fixtures/osx-10.11.6/ls-al.json000066400000000000000000000102431415226333200205310ustar00rootroot00000000000000[{"filename": ".", "flags": "drwxr-xr-x", "links": 33, "owner": "root", "group": "wheel", "size": 1190, "date": "Oct 2 10:55"}, {"filename": "..", "flags": "drwxr-xr-x", "links": 33, "owner": "root", "group": "wheel", "size": 1190, "date": "Oct 2 10:55"}, {"filename": ".DS_Store", "flags": "-rw-rw-r--", "links": 1, "owner": "root", "group": "admin", "size": 6148, "date": "Nov 8 2018"}, {"filename": ".DocumentRevisions-V100", "flags": "d--x--x--x", "links": 9, "owner": "root", "group": "wheel", "size": 306, "date": "Dec 2 22:46"}, {"filename": ".MobileBackups", "flags": "drwxr-xr-x+", "links": 3, "owner": "root", "group": "wheel", "size": 102, "date": "Oct 2 10:56"}, {"filename": ".Spotlight-V100", "flags": "drwx------", "links": 5, "owner": "root", "group": "wheel", "size": 170, "date": "Jul 8 2011"}, {"filename": ".Trashes", "flags": "d-wx-wx-wt", "links": 2, "owner": "root", "group": "wheel", "size": 68, "date": "Nov 10 2014"}, {"filename": ".file", "flags": "----------", "links": 1, "owner": "root", "group": "admin", "size": 0, "date": "Feb 25 2016"}, {"filename": ".fseventsd", "flags": "drwx------", "links": 6, "owner": "root", "group": "wheel", "size": 204, "date": "Dec 12 11:10"}, {"filename": ".vol", "flags": "drwxr-xr-x@", "links": 2, "owner": "root", "group": "wheel", "size": 68, "date": "Apr 19 2016"}, {"filename": "Applications", "flags": "drwxrwxr-x+", "links": 70, "owner": "root", "group": "admin", "size": 2380, "date": "Dec 12 11:09"}, {"filename": "Library", "flags": "drwxr-xr-x+", "links": 64, "owner": "root", "group": "wheel", "size": 2176, "date": "Jun 7 2018"}, {"filename": "Network", "flags": "drwxr-xr-x@", "links": 2, "owner": "root", "group": "wheel", "size": 68, "date": "Apr 19 2016"}, {"filename": "System", "flags": "drwxr-xr-x@", "links": 4, "owner": "root", "group": "wheel", "size": 136, "date": "Jul 18 2018"}, {"filename": "User Guides And Information", "link_to": "/Library/Documentation/User Guides and Information.localized", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 60, "date": "Jan 25 2012"}, {"filename": "Users", "flags": "drwxr-xr-x", "links": 5, "owner": "root", "group": "admin", "size": 170, "date": "Apr 19 2016"}, {"filename": "Volumes", "flags": "drwxrwxrwt@", "links": 5, "owner": "root", "group": "admin", "size": 170, "date": "Dec 12 11:00"}, {"filename": "bin", "flags": "drwxr-xr-x@", "links": 39, "owner": "root", "group": "wheel", "size": 1326, "date": "Jul 18 2018"}, {"filename": "cores", "flags": "drwxrwxr-t@", "links": 2, "owner": "root", "group": "admin", "size": 68, "date": "Apr 19 2016"}, {"filename": "dev", "flags": "dr-xr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 4183, "date": "Dec 2 22:45"}, {"filename": "etc", "link_to": "private/etc", "flags": "lrwxr-xr-x@", "links": 1, "owner": "root", "group": "wheel", "size": 11, "date": "Apr 19 2016"}, {"filename": "home", "flags": "dr-xr-xr-x", "links": 2, "owner": "root", "group": "wheel", "size": 1, "date": "Dec 2 22:45"}, {"filename": "installer.failurerequests", "flags": "-rw-r--r--@", "links": 1, "owner": "root", "group": "wheel", "size": 313, "date": "Aug 2 2015"}, {"filename": "lost+found", "flags": "drwxrwxrwt@", "links": 3, "owner": "root", "group": "wheel", "size": 102, "date": "Jul 29 2017"}, {"filename": "net", "flags": "dr-xr-xr-x", "links": 2, "owner": "root", "group": "wheel", "size": 1, "date": "Dec 2 22:45"}, {"filename": "private", "flags": "drwxr-xr-x@", "links": 6, "owner": "root", "group": "wheel", "size": 204, "date": "Apr 19 2016"}, {"filename": "recover", "flags": "drwxr-xr-x", "links": 3, "owner": "kelly", "group": "wheel", "size": 102, "date": "Aug 4 2012"}, {"filename": "sbin", "flags": "drwxr-xr-x@", "links": 59, "owner": "root", "group": "wheel", "size": 2006, "date": "Jul 18 2018"}, {"filename": "tmp", "link_to": "private/tmp", "flags": "lrwxr-xr-x@", "links": 1, "owner": "root", "group": "wheel", "size": 11, "date": "Apr 19 2016"}, {"filename": "usr", "flags": "drwxr-xr-x@", "links": 13, "owner": "root", "group": "wheel", "size": 442, "date": "Jun 7 2018"}, {"filename": "var", "link_to": "private/var", "flags": "lrwxr-xr-x@", "links": 1, "owner": "root", "group": "wheel", "size": 11, "date": "Apr 19 2016"}] jc-1.17.3/tests/fixtures/osx-10.11.6/ls-al.out000077500000000000000000000034731415226333200204010ustar00rootroot00000000000000total 69 drwxr-xr-x 33 root wheel 1190 Oct 2 10:55 . drwxr-xr-x 33 root wheel 1190 Oct 2 10:55 .. -rw-rw-r-- 1 root admin 6148 Nov 8 2018 .DS_Store d--x--x--x 9 root wheel 306 Dec 2 22:46 .DocumentRevisions-V100 drwxr-xr-x+ 3 root wheel 102 Oct 2 10:56 .MobileBackups drwx------ 5 root wheel 170 Jul 8 2011 .Spotlight-V100 d-wx-wx-wt 2 root wheel 68 Nov 10 2014 .Trashes ---------- 1 root admin 0 Feb 25 2016 .file drwx------ 6 root wheel 204 Dec 12 11:10 .fseventsd drwxr-xr-x@ 2 root wheel 68 Apr 19 2016 .vol drwxrwxr-x+ 70 root admin 2380 Dec 12 11:09 Applications drwxr-xr-x+ 64 root wheel 2176 Jun 7 2018 Library drwxr-xr-x@ 2 root wheel 68 Apr 19 2016 Network drwxr-xr-x@ 4 root wheel 136 Jul 18 2018 System lrwxr-xr-x 1 root wheel 60 Jan 25 2012 User Guides And Information -> /Library/Documentation/User Guides and Information.localized drwxr-xr-x 5 root admin 170 Apr 19 2016 Users drwxrwxrwt@ 5 root admin 170 Dec 12 11:00 Volumes drwxr-xr-x@ 39 root wheel 1326 Jul 18 2018 bin drwxrwxr-t@ 2 root admin 68 Apr 19 2016 cores dr-xr-xr-x 3 root wheel 4183 Dec 2 22:45 dev lrwxr-xr-x@ 1 root wheel 11 Apr 19 2016 etc -> private/etc dr-xr-xr-x 2 root wheel 1 Dec 2 22:45 home -rw-r--r--@ 1 root wheel 313 Aug 2 2015 installer.failurerequests drwxrwxrwt@ 3 root wheel 102 Jul 29 2017 lost+found dr-xr-xr-x 2 root wheel 1 Dec 2 22:45 net drwxr-xr-x@ 6 root wheel 204 Apr 19 2016 private drwxr-xr-x 3 kelly wheel 102 Aug 4 2012 recover drwxr-xr-x@ 59 root wheel 2006 Jul 18 2018 sbin lrwxr-xr-x@ 1 root wheel 11 Apr 19 2016 tmp -> private/tmp drwxr-xr-x@ 13 root wheel 442 Jun 7 2018 usr lrwxr-xr-x@ 1 root wheel 11 Apr 19 2016 var -> private/var jc-1.17.3/tests/fixtures/osx-10.11.6/ls-alh.json000066400000000000000000000073221415226333200207050ustar00rootroot00000000000000[{"filename":".","flags":"drwxr-xr-x","links":33,"owner":"root","group":"wheel","size":1,"date":"Oct 2 10:55"},{"filename":"..","flags":"drwxr-xr-x","links":33,"owner":"root","group":"wheel","size":1,"date":"Oct 2 10:55"},{"filename":".DS_Store","flags":"-rw-rw-r--","links":1,"owner":"root","group":"admin","size":6,"date":"Nov 8 2018"},{"filename":".DocumentRevisions-V100","flags":"d--x--x--x","links":9,"owner":"root","group":"wheel","size":306,"date":"Dec 2 22:46"},{"filename":".MobileBackups","flags":"drwxr-xr-x+","links":3,"owner":"root","group":"wheel","size":102,"date":"Oct 2 10:56"},{"filename":".Spotlight-V100","flags":"drwx------","links":5,"owner":"root","group":"wheel","size":170,"date":"Jul 8 2011"},{"filename":".Trashes","flags":"d-wx-wx-wt","links":2,"owner":"root","group":"wheel","size":68,"date":"Nov 10 2014"},{"filename":".file","flags":"----------","links":1,"owner":"root","group":"admin","size":0,"date":"Feb 25 2016"},{"filename":".fseventsd","flags":"drwx------","links":6,"owner":"root","group":"wheel","size":204,"date":"Dec 12 11:10"},{"filename":".vol","flags":"drwxr-xr-x@","links":2,"owner":"root","group":"wheel","size":68,"date":"Apr 19 2016"},{"filename":"Applications","flags":"drwxrwxr-x+","links":70,"owner":"root","group":"admin","size":2,"date":"Dec 12 11:09"},{"filename":"Library","flags":"drwxr-xr-x+","links":64,"owner":"root","group":"wheel","size":2,"date":"Jun 7 2018"},{"filename":"Network","flags":"drwxr-xr-x@","links":2,"owner":"root","group":"wheel","size":68,"date":"Apr 19 2016"},{"filename":"System","flags":"drwxr-xr-x@","links":4,"owner":"root","group":"wheel","size":136,"date":"Jul 18 2018"},{"filename":"User Guides And Information","link_to":"/Library/Documentation/User Guides and Information.localized","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":60,"date":"Jan 25 2012"},{"filename":"Users","flags":"drwxr-xr-x","links":5,"owner":"root","group":"admin","size":170,"date":"Apr 19 2016"},{"filename":"Volumes","flags":"drwxrwxrwt@","links":5,"owner":"root","group":"admin","size":170,"date":"Dec 12 11:00"},{"filename":"bin","flags":"drwxr-xr-x@","links":39,"owner":"root","group":"wheel","size":1,"date":"Jul 18 2018"},{"filename":"cores","flags":"drwxrwxr-t@","links":2,"owner":"root","group":"admin","size":68,"date":"Apr 19 2016"},{"filename":"dev","flags":"dr-xr-xr-x","links":3,"owner":"root","group":"wheel","size":4,"date":"Dec 2 22:45"},{"filename":"etc","link_to":"private/etc","flags":"lrwxr-xr-x@","links":1,"owner":"root","group":"wheel","size":11,"date":"Apr 19 2016"},{"filename":"home","flags":"dr-xr-xr-x","links":2,"owner":"root","group":"wheel","size":1,"date":"Dec 2 22:45"},{"filename":"installer.failurerequests","flags":"-rw-r--r--@","links":1,"owner":"root","group":"wheel","size":313,"date":"Aug 2 2015"},{"filename":"lost+found","flags":"drwxrwxrwt@","links":3,"owner":"root","group":"wheel","size":102,"date":"Jul 29 2017"},{"filename":"net","flags":"dr-xr-xr-x","links":2,"owner":"root","group":"wheel","size":1,"date":"Dec 2 22:45"},{"filename":"private","flags":"drwxr-xr-x@","links":6,"owner":"root","group":"wheel","size":204,"date":"Apr 19 2016"},{"filename":"recover","flags":"drwxr-xr-x","links":3,"owner":"kelly","group":"wheel","size":102,"date":"Aug 4 2012"},{"filename":"sbin","flags":"drwxr-xr-x@","links":59,"owner":"root","group":"wheel","size":2,"date":"Jul 18 2018"},{"filename":"tmp","link_to":"private/tmp","flags":"lrwxr-xr-x@","links":1,"owner":"root","group":"wheel","size":11,"date":"Apr 19 2016"},{"filename":"usr","flags":"drwxr-xr-x@","links":13,"owner":"root","group":"wheel","size":442,"date":"Jun 7 2018"},{"filename":"var","link_to":"private/var","flags":"lrwxr-xr-x@","links":1,"owner":"root","group":"wheel","size":11,"date":"Apr 19 2016"}] jc-1.17.3/tests/fixtures/osx-10.11.6/ls-alh.out000077500000000000000000000035321415226333200205450ustar00rootroot00000000000000total 69 drwxr-xr-x 33 root wheel 1.2K Oct 2 10:55 . drwxr-xr-x 33 root wheel 1.2K Oct 2 10:55 .. -rw-rw-r-- 1 root admin 6.0K Nov 8 2018 .DS_Store d--x--x--x 9 root wheel 306B Dec 2 22:46 .DocumentRevisions-V100 drwxr-xr-x+ 3 root wheel 102B Oct 2 10:56 .MobileBackups drwx------ 5 root wheel 170B Jul 8 2011 .Spotlight-V100 d-wx-wx-wt 2 root wheel 68B Nov 10 2014 .Trashes ---------- 1 root admin 0B Feb 25 2016 .file drwx------ 6 root wheel 204B Dec 12 11:10 .fseventsd drwxr-xr-x@ 2 root wheel 68B Apr 19 2016 .vol drwxrwxr-x+ 70 root admin 2.3K Dec 12 11:09 Applications drwxr-xr-x+ 64 root wheel 2.1K Jun 7 2018 Library drwxr-xr-x@ 2 root wheel 68B Apr 19 2016 Network drwxr-xr-x@ 4 root wheel 136B Jul 18 2018 System lrwxr-xr-x 1 root wheel 60B Jan 25 2012 User Guides And Information -> /Library/Documentation/User Guides and Information.localized drwxr-xr-x 5 root admin 170B Apr 19 2016 Users drwxrwxrwt@ 5 root admin 170B Dec 12 11:00 Volumes drwxr-xr-x@ 39 root wheel 1.3K Jul 18 2018 bin drwxrwxr-t@ 2 root admin 68B Apr 19 2016 cores dr-xr-xr-x 3 root wheel 4.1K Dec 2 22:45 dev lrwxr-xr-x@ 1 root wheel 11B Apr 19 2016 etc -> private/etc dr-xr-xr-x 2 root wheel 1B Dec 2 22:45 home -rw-r--r--@ 1 root wheel 313B Aug 2 2015 installer.failurerequests drwxrwxrwt@ 3 root wheel 102B Jul 29 2017 lost+found dr-xr-xr-x 2 root wheel 1B Dec 2 22:45 net drwxr-xr-x@ 6 root wheel 204B Apr 19 2016 private drwxr-xr-x 3 kelly wheel 102B Aug 4 2012 recover drwxr-xr-x@ 59 root wheel 2.0K Jul 18 2018 sbin lrwxr-xr-x@ 1 root wheel 11B Apr 19 2016 tmp -> private/tmp drwxr-xr-x@ 13 root wheel 442B Jun 7 2018 usr lrwxr-xr-x@ 1 root wheel 11B Apr 19 2016 var -> private/var jc-1.17.3/tests/fixtures/osx-10.11.6/ls.json000066400000000000000000000010251415226333200201350ustar00rootroot00000000000000[{"filename": "Applications"}, {"filename": "Library"}, {"filename": "Network"}, {"filename": "System"}, {"filename": "User Guides And Information"}, {"filename": "Users"}, {"filename": "Volumes"}, {"filename": "bin"}, {"filename": "cores"}, {"filename": "dev"}, {"filename": "etc"}, {"filename": "home"}, {"filename": "installer.failurerequests"}, {"filename": "lost+found"}, {"filename": "net"}, {"filename": "private"}, {"filename": "recover"}, {"filename": "sbin"}, {"filename": "tmp"}, {"filename": "usr"}, {"filename": "var"}] jc-1.17.3/tests/fixtures/osx-10.11.6/ls.out000077500000000000000000000002571415226333200200040ustar00rootroot00000000000000Applications Library Network System User Guides And Information Users Volumes bin cores dev etc home installer.failurerequests lost+found net private recover sbin tmp usr var jc-1.17.3/tests/fixtures/osx-10.11.6/pip-list.json000066400000000000000000000003401415226333200212570ustar00rootroot00000000000000[{"package": "ifconfig-parser", "version": "0.0.5"}, {"package": "jc", "version": "1.5.1"}, {"package": "pip", "version": "19.3.1"}, {"package": "setuptools", "version": "41.6.0"}, {"package": "wheel", "version": "0.33.6"}] jc-1.17.3/tests/fixtures/osx-10.11.6/pip-list.out000077500000000000000000000002501415226333200211200ustar00rootroot00000000000000Package Version --------------- ------- ifconfig-parser 0.0.5 jc 1.5.1 pip 19.3.1 setuptools 41.6.0 wheel 0.33.6 jc-1.17.3/tests/fixtures/osx-10.11.6/pip-show.json000066400000000000000000000020041415226333200212630ustar00rootroot00000000000000[{"name": "pip", "version": "19.3.1", "summary": "The PyPA recommended tool for installing Python packages.", "home_page": "https://pip.pypa.io/", "author": "The pip developers", "author_email": "pypa-dev@groups.google.com", "license": "MIT", "location": "/usr/local/lib/python3.7/site-packages", "requires": null, "required_by": null}, {"name": "setuptools", "version": "41.6.0", "summary": "Easily download, build, install, upgrade, and uninstall Python packages", "home_page": "https://github.com/pypa/setuptools", "author": "Python Packaging Authority", "author_email": "distutils-sig@python.org", "license": "UNKNOWN", "location": "/usr/local/lib/python3.7/site-packages", "requires": null, "required_by": null}, {"name": "wheel", "version": "0.33.6", "summary": "A built-package format for Python.", "home_page": "https://github.com/pypa/wheel", "author": "Daniel Holth", "author_email": "dholth@fastmail.fm", "license": "MIT", "location": "/usr/local/lib/python3.7/site-packages", "requires": null, "required_by": null}] jc-1.17.3/tests/fixtures/osx-10.11.6/pip-show.out000077500000000000000000000015431415226333200211330ustar00rootroot00000000000000Name: pip Version: 19.3.1 Summary: The PyPA recommended tool for installing Python packages. Home-page: https://pip.pypa.io/ Author: The pip developers Author-email: pypa-dev@groups.google.com License: MIT Location: /usr/local/lib/python3.7/site-packages Requires: Required-by: --- Name: setuptools Version: 41.6.0 Summary: Easily download, build, install, upgrade, and uninstall Python packages Home-page: https://github.com/pypa/setuptools Author: Python Packaging Authority Author-email: distutils-sig@python.org License: UNKNOWN Location: /usr/local/lib/python3.7/site-packages Requires: Required-by: --- Name: wheel Version: 0.33.6 Summary: A built-package format for Python. Home-page: https://github.com/pypa/wheel Author: Daniel Holth Author-email: dholth@fastmail.fm License: MIT Location: /usr/local/lib/python3.7/site-packages Requires: Required-by: jc-1.17.3/tests/fixtures/osx-10.11.6/ps-axu.json000066400000000000000000001506001415226333200207400ustar00rootroot00000000000000[{"user": "kelly", "pid": 568, "vsz": 2534864, "rss": 43136, "tt": null, "stat": "U", "started": "10:11AM", "time": "0:10.58", "command": "/usr/bin/codesign --verify --deep /Applications/Microsoft PowerPoint.app", "cpu_percent": 47.8, "mem_percent": 1.0}, {"user": "kelly", "pid": 519, "vsz": 2509624, "rss": 18852, "tt": null, "stat": "RN", "started": "10:09AM", "time": "0:01.39", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker-bundle -c MDSImporterBundleFinder -m com.apple.mdworker.bundles", "cpu_percent": 4.2, "mem_percent": 0.4}, {"user": "_spotlight", "pid": 514, "vsz": 2517664, "rss": 16848, "tt": null, "stat": "U", "started": "10:09AM", "time": "0:03.04", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker-sizing -c MDSSizingWorker -m com.apple.mdworker.sizing", "cpu_percent": 2.4, "mem_percent": 0.4}, {"user": "_spotlight", "pid": 518, "vsz": 2521956, "rss": 19796, "tt": null, "stat": "UN", "started": "10:09AM", "time": "0:01.23", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker-bundle -c MDSImporterBundleFinder -m com.apple.mdworker.bundles", "cpu_percent": 1.5, "mem_percent": 0.5}, {"user": "_windowserver", "pid": 179, "vsz": 3611664, "rss": 67720, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:14.23", "command": "/System/Library/Frameworks/ApplicationServices.framework/Frameworks/CoreGraphics.framework/Resources/WindowServer -daemon", "cpu_percent": 1.4, "mem_percent": 1.6}, {"user": "root", "pid": 459, "vsz": 2520276, "rss": 12840, "tt": null, "stat": "Us", "started": "10:06AM", "time": "0:09.38", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker-scan -c MDSSyncScanWorker -m com.apple.metadata.mds.scan", "cpu_percent": 0.9, "mem_percent": 0.3}, {"user": "kelly", "pid": 260, "vsz": 2577516, "rss": 49096, "tt": null, "stat": "U", "started": "10:06AM", "time": "0:03.99", "command": "/Applications/Utilities/Terminal.app/Contents/MacOS/Terminal -psn_0_24582", "cpu_percent": 0.7, "mem_percent": 1.2}, {"user": "root", "pid": 100, "vsz": 2473232, "rss": 5356, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:02.71", "command": "/usr/libexec/hidd", "cpu_percent": 0.4, "mem_percent": 0.1}, {"user": "root", "pid": 206, "vsz": 4324960, "rss": 119616, "tt": null, "stat": "Us", "started": "10:06AM", "time": "0:16.66", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mds_stores", "cpu_percent": 0.2, "mem_percent": 2.9}, {"user": "root", "pid": 202, "vsz": 2521392, "rss": 23044, "tt": null, "stat": "Us", "started": "10:06AM", "time": "0:02.29", "command": "/usr/libexec/lsd runAsRoot", "cpu_percent": 0.2, "mem_percent": 0.5}, {"user": "kelly", "pid": 258, "vsz": 2508168, "rss": 15740, "tt": null, "stat": "U", "started": "10:06AM", "time": "0:00.98", "command": "/usr/libexec/lsd", "cpu_percent": 0.1, "mem_percent": 0.4}, {"user": "kelly", "pid": 480, "vsz": 2503776, "rss": 5628, "tt": null, "stat": "S", "started": "10:07AM", "time": "0:00.09", "command": "/usr/libexec/swcd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kelly", "pid": 477, "vsz": 2531036, "rss": 18780, "tt": null, "stat": "S", "started": "10:07AM", "time": "0:00.36", "command": "/System/Library/CoreServices/System Events.app/Contents/MacOS/System Events", "cpu_percent": 0.0, "mem_percent": 0.4}, {"user": "kelly", "pid": 465, "vsz": 2504280, "rss": 12808, "tt": null, "stat": "S", "started": "10:07AM", "time": "0:00.23", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker-sizing -c MDSSizingWorker -m com.apple.mdworker.sizing", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "kelly", "pid": 463, "vsz": 2526912, "rss": 12992, "tt": null, "stat": "S", "started": "10:07AM", "time": "0:00.15", "command": "/System/Library/PrivateFrameworks/CommerceKit.framework/Resources/LaterAgent.app/Contents/MacOS/LaterAgent", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "kelly", "pid": 462, "vsz": 2506432, "rss": 8572, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.16", "command": "/System/Library/PrivateFrameworks/PhotoLibraryPrivate.framework/Versions/A/Support/photolibraryd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kelly", "pid": 461, "vsz": 2498376, "rss": 9636, "tt": null, "stat": "U", "started": "10:06AM", "time": "0:00.12", "command": "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storelegacy", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "root", "pid": 448, "vsz": 2472468, "rss": 1232, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.04", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdflagwriter", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kelly", "pid": 447, "vsz": 2472992, "rss": 1464, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.06", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdflagwriter", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 446, "vsz": 2471160, "rss": 6328, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.03", "command": "/System/Library/PrivateFrameworks/SoftwareUpdate.framework/Resources/suhelperd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "_softwareupdate", "pid": 445, "vsz": 2551592, "rss": 54552, "tt": null, "stat": "Us", "started": "10:06AM", "time": "0:03.71", "command": "/System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdated", "cpu_percent": 0.0, "mem_percent": 1.3}, {"user": "root", "pid": 440, "vsz": 2471132, "rss": 7044, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.06", "command": "/System/Library/CoreServices/SubmitDiagInfo server-init", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "root", "pid": 439, "vsz": 2471736, "rss": 6552, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.04", "command": "/usr/sbin/spindump", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kelly", "pid": 438, "vsz": 2523024, "rss": 32280, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.39", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared", "cpu_percent": 0.0, "mem_percent": 0.8}, {"user": "kelly", "pid": 437, "vsz": 2508488, "rss": 16932, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.37", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared", "cpu_percent": 0.0, "mem_percent": 0.4}, {"user": "kelly", "pid": 436, "vsz": 2512496, "rss": 15620, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.30", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared", "cpu_percent": 0.0, "mem_percent": 0.4}, {"user": "kelly", "pid": 435, "vsz": 2517244, "rss": 22920, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.47", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared", "cpu_percent": 0.0, "mem_percent": 0.5}, {"user": "kelly", "pid": 434, "vsz": 2500988, "rss": 13876, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:01.75", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "kelly", "pid": 432, "vsz": 2500504, "rss": 13952, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.12", "command": "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storedownloadd", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "kelly", "pid": 429, "vsz": 2499248, "rss": 9904, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.07", "command": "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/XPCServices/com.apple.CommerceKit.TransactionService.xpc/Contents/MacOS/com.apple.CommerceKit.TransactionService", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kelly", "pid": 428, "vsz": 2502632, "rss": 15428, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.52", "command": "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeinappd", "cpu_percent": 0.0, "mem_percent": 0.4}, {"user": "kelly", "pid": 427, "vsz": 2504184, "rss": 12340, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.12", "command": "/System/Library/PrivateFrameworks/AssistantServices.framework/assistantd", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "kelly", "pid": 426, "vsz": 2496660, "rss": 11152, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.04", "command": "/System/Library/CoreServices/NotificationCenter.app/Contents/XPCServices/com.apple.notificationcenterui.WeatherSummary.xpc/Contents/MacOS/com.apple.notificationcenterui.WeatherSummary", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "kelly", "pid": 419, "vsz": 2859668, "rss": 170620, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:10.32", "command": "/Applications/Backup and Sync.app/Contents/MacOS/Backup and Sync", "cpu_percent": 0.0, "mem_percent": 4.1}, {"user": "kelly", "pid": 417, "vsz": 2508996, "rss": 9684, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.11", "command": "/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app/Contents/MacOS/iTunesHelper", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kelly", "pid": 412, "vsz": 2497104, "rss": 11932, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.13", "command": "/System/Library/CoreServices/diagnostics_agent", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "kelly", "pid": 411, "vsz": 2525428, "rss": 11540, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.89", "command": "/System/Library/CoreServices/WiFiAgent.app/Contents/MacOS/WiFiAgent", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "kelly", "pid": 408, "vsz": 2524584, "rss": 10320, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.11", "command": "/System/Library/CoreServices/AirPlayUIAgent.app/Contents/MacOS/AirPlayUIAgent --launchd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kelly", "pid": 404, "vsz": 2501812, "rss": 16092, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.57", "command": "/System/Library/CoreServices/AppleIDAuthAgent", "cpu_percent": 0.0, "mem_percent": 0.4}, {"user": "kelly", "pid": 402, "vsz": 2498460, "rss": 10480, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.29", "command": "/System/Library/Image Capture/Support/icdd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kelly", "pid": 400, "vsz": 2552032, "rss": 28396, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:01.47", "command": "/System/Library/CoreServices/NotificationCenter.app/Contents/MacOS/NotificationCenter", "cpu_percent": 0.0, "mem_percent": 0.7}, {"user": "kelly", "pid": 397, "vsz": 2524600, "rss": 16708, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.19", "command": "/System/Library/CoreServices/Keychain Circle Notification.app/Contents/MacOS/Keychain Circle Notification", "cpu_percent": 0.0, "mem_percent": 0.4}, {"user": "kelly", "pid": 394, "vsz": 2497796, "rss": 7932, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.05", "command": "/System/Library/CoreServices/SocialPushAgent.app/Contents/MacOS/SocialPushAgent", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kelly", "pid": 392, "vsz": 2477552, "rss": 3816, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.03", "command": "/usr/libexec/spindump_agent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kelly", "pid": 390, "vsz": 2524556, "rss": 12212, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.11", "command": "/System/Library/CoreServices/FolderActionsDispatcher.app/Contents/MacOS/FolderActionsDispatcher", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "kelly", "pid": 389, "vsz": 2536836, "rss": 23024, "tt": null, "stat": "S", "started": "10:06AM", "time": "1:13.66", "command": "/Library/Application Support/Microsoft/MAU2.0/Microsoft AutoUpdate.app/Contents/MacOS/Microsoft Update Assistant.app/Contents/MacOS/Microsoft Update Assistant -checkForUpdates", "cpu_percent": 0.0, "mem_percent": 0.5}, {"user": "root", "pid": 386, "vsz": 2489324, "rss": 2268, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.02", "command": "/System/Library/Filesystems/AppleShare/check_afp.app/Contents/MacOS/check_afp", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kelly", "pid": 381, "vsz": 2454892, "rss": 1576, "tt": "s001", "stat": "S+", "started": "10:06AM", "time": "0:00.02", "command": "-bash", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 380, "vsz": 2471532, "rss": 4156, "tt": "s001", "stat": "Us", "started": "10:06AM", "time": "0:00.03", "command": "login -pfl kelly /bin/bash -c exec -la bash /bin/bash", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kelly", "pid": 368, "vsz": 2497892, "rss": 9084, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.15", "command": "/System/Library/CoreServices/NetAuthAgent.app/Contents/MacOS/NetAuthSysAgent", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "root", "pid": 367, "vsz": 2471496, "rss": 6360, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.03", "command": "/System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kelly", "pid": 361, "vsz": 2463084, "rss": 1616, "tt": "s000", "stat": "S", "started": "10:06AM", "time": "0:00.06", "command": "-bash", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 360, "vsz": 2471532, "rss": 4208, "tt": "s000", "stat": "Us", "started": "10:06AM", "time": "0:00.05", "command": "login -pfl kelly /bin/bash -c exec -la bash /bin/bash", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kelly", "pid": 359, "vsz": 2505388, "rss": 16844, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.16", "command": "/System/Library/PrivateFrameworks/CloudPhotoServices.framework/Versions/A/Frameworks/CloudPhotosConfigurationXPC.framework/Versions/A/XPCServices/com.apple.CloudPhotosConfiguration.xpc/Contents/MacOS/com.apple.CloudPhotosConfiguration", "cpu_percent": 0.0, "mem_percent": 0.4}, {"user": "kelly", "pid": 357, "vsz": 2497824, "rss": 8516, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.05", "command": "/System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCService", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kelly", "pid": 354, "vsz": 2499952, "rss": 7748, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.54", "command": "/System/Library/PrivateFrameworks/IMFoundation.framework/XPCServices/IMRemoteURLConnectionAgent.xpc/Contents/MacOS/IMRemoteURLConnectionAgent", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "_netbios", "pid": 353, "vsz": 2473112, "rss": 8296, "tt": null, "stat": "SNs", "started": "10:06AM", "time": "0:00.08", "command": "/usr/sbin/netbiosd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kelly", "pid": 349, "vsz": 2496720, "rss": 6752, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.04", "command": "/System/Library/PrivateFrameworks/HelpData.framework/Versions/A/Resources/helpd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kelly", "pid": 346, "vsz": 2497264, "rss": 4200, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.04", "command": "/System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent --launchd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_networkd", "pid": 344, "vsz": 2520416, "rss": 7448, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.56", "command": "/usr/libexec/symptomsd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kelly", "pid": 343, "vsz": 2527064, "rss": 10624, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.11", "command": "/System/Library/CoreServices/CoreServicesUIAgent.app/Contents/MacOS/CoreServicesUIAgent", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "_nsurlstoraged", "pid": 342, "vsz": 2471568, "rss": 4744, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.05", "command": "/usr/libexec/nsurlstoraged", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kelly", "pid": 341, "vsz": 2499248, "rss": 12100, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.08", "command": "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/XPCServices/com.apple.CommerceKit.TransactionService.xpc/Contents/MacOS/com.apple.CommerceKit.TransactionService", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "kelly", "pid": 340, "vsz": 2502544, "rss": 9904, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.27", "command": "/System/Library/PrivateFrameworks/CloudDocsDaemon.framework/XPCServices/ContainerMetadataExtractor.xpc/Contents/MacOS/ContainerMetadataExtractor", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kelly", "pid": 339, "vsz": 2501432, "rss": 13572, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.09", "command": "/System/Library/PrivateFrameworks/CallHistory.framework/Support/CallHistoryPluginHelper", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "kelly", "pid": 338, "vsz": 2500564, "rss": 16336, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.52", "command": "/System/Library/PrivateFrameworks/IMDPersistence.framework/XPCServices/IMDPersistenceAgent.xpc/Contents/MacOS/IMDPersistenceAgent", "cpu_percent": 0.0, "mem_percent": 0.4}, {"user": "kelly", "pid": 337, "vsz": 2499868, "rss": 20196, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.46", "command": "/System/Library/PrivateFrameworks/IMCore.framework/imagent.app/Contents/MacOS/imagent", "cpu_percent": 0.0, "mem_percent": 0.5}, {"user": "kelly", "pid": 336, "vsz": 2538636, "rss": 52132, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:06.10", "command": "/System/Library/PrivateFrameworks/MessagesKit.framework/Resources/soagent.app/Contents/MacOS/soagent", "cpu_percent": 0.0, "mem_percent": 1.2}, {"user": "kelly", "pid": 335, "vsz": 2525728, "rss": 20416, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.32", "command": "/System/Library/CoreServices/Dock.app/Contents/XPCServices/com.apple.dock.extra.xpc/Contents/MacOS/com.apple.dock.extra", "cpu_percent": 0.0, "mem_percent": 0.5}, {"user": "kelly", "pid": 334, "vsz": 2503088, "rss": 13600, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:01.41", "command": "/System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/XPCServices/com.apple.geod.xpc/Contents/MacOS/com.apple.geod", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "kelly", "pid": 333, "vsz": 2471072, "rss": 4244, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.03", "command": "/System/Library/PrivateFrameworks/CommunicationsFilter.framework/CMFSyncAgent.app/Contents/MacOS/CMFSyncAgent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kelly", "pid": 332, "vsz": 2503760, "rss": 20008, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:02.17", "command": "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeaccountd", "cpu_percent": 0.0, "mem_percent": 0.5}, {"user": "kelly", "pid": 331, "vsz": 2472600, "rss": 7088, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.04", "command": "/System/Library/Frameworks/Security.framework/Versions/A/Resources/CloudKeychainProxy.bundle/Contents/MacOS/CloudKeychainProxy", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kelly", "pid": 328, "vsz": 3018556, "rss": 13168, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.17", "command": "/System/Library/Frameworks/QuickLook.framework/Resources/quicklookd.app/Contents/MacOS/quicklookd", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "root", "pid": 327, "vsz": 2471548, "rss": 3348, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.02", "command": "/System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/XPCServices/com.apple.PerformanceAnalysis.animationperfd.xpc/Contents/MacOS/com.apple.PerformanceAnalysis.animationperfd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 325, "vsz": 2542632, "rss": 36124, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:13.82", "command": "/System/Library/PrivateFrameworks/PackageKit.framework/Resources/installd", "cpu_percent": 0.0, "mem_percent": 0.9}, {"user": "root", "pid": 324, "vsz": 2497996, "rss": 14772, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.10", "command": "/System/Library/CoreServices/backupd.bundle/Contents/Resources/TMCacheDelete", "cpu_percent": 0.0, "mem_percent": 0.4}, {"user": "root", "pid": 323, "vsz": 2474660, "rss": 6424, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.41", "command": "/System/Library/PrivateFrameworks/CacheDelete.framework/deleted", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kelly", "pid": 322, "vsz": 2507252, "rss": 29144, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:02.67", "command": "/System/Library/PrivateFrameworks/CoreSuggestions.framework/Versions/A/Support/suggestd", "cpu_percent": 0.0, "mem_percent": 0.7}, {"user": "kelly", "pid": 321, "vsz": 2549048, "rss": 22808, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.48", "command": "/System/Library/CoreServices/cloudphotosd.app/Contents/MacOS/cloudphotosd", "cpu_percent": 0.0, "mem_percent": 0.5}, {"user": "kelly", "pid": 316, "vsz": 2507092, "rss": 30596, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:16.80", "command": "/System/Library/PrivateFrameworks/ParsecUI.framework/Versions/A/Support/SpotlightNetHelper.app/Contents/MacOS/SpotlightNetHelper", "cpu_percent": 0.0, "mem_percent": 0.7}, {"user": "kelly", "pid": 315, "vsz": 2534368, "rss": 49132, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:06.80", "command": "/System/Library/PrivateFrameworks/TelephonyUtilities.framework/callservicesd", "cpu_percent": 0.0, "mem_percent": 1.2}, {"user": "_gamecontrollerd", "pid": 313, "vsz": 2471808, "rss": 7048, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.08", "command": "/usr/libexec/gamecontrollerd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kelly", "pid": 312, "vsz": 2521504, "rss": 36648, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:01.21", "command": "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeassetd", "cpu_percent": 0.0, "mem_percent": 0.9}, {"user": "kelly", "pid": 311, "vsz": 2540140, "rss": 54192, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:07.69", "command": "/System/Library/PrivateFrameworks/CalendarAgent.framework/Versions/A/XPCServices/CalNCService.xpc/Contents/MacOS/CalNCService", "cpu_percent": 0.0, "mem_percent": 1.3}, {"user": "kelly", "pid": 310, "vsz": 2504064, "rss": 18400, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.34", "command": "/System/Library/PrivateFrameworks/CloudKitDaemon.framework/Support/cloudd", "cpu_percent": 0.0, "mem_percent": 0.4}, {"user": "kelly", "pid": 308, "vsz": 2504080, "rss": 16752, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:02.90", "command": "/usr/libexec/nsurlstoraged", "cpu_percent": 0.0, "mem_percent": 0.4}, {"user": "kelly", "pid": 307, "vsz": 2506840, "rss": 26052, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:04.66", "command": "/System/Library/PrivateFrameworks/CloudDocsDaemon.framework/Versions/A/Support/bird", "cpu_percent": 0.0, "mem_percent": 0.6}, {"user": "kelly", "pid": 306, "vsz": 2505496, "rss": 12316, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:01.76", "command": "/System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/Support/akd", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "kelly", "pid": 305, "vsz": 2497192, "rss": 10492, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.06", "command": "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/maspushagent", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "kelly", "pid": 304, "vsz": 2496780, "rss": 13832, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.07", "command": "/System/Library/PrivateFrameworks/AskPermission.framework/Versions/A/Resources/askpermissiond", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "kelly", "pid": 302, "vsz": 2497212, "rss": 15008, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.11", "command": "/System/Library/PrivateFrameworks/CallHistory.framework/Support/CallHistorySyncHelper", "cpu_percent": 0.0, "mem_percent": 0.4}, {"user": "kelly", "pid": 301, "vsz": 2500596, "rss": 20072, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:01.17", "command": "/usr/libexec/fmfd", "cpu_percent": 0.0, "mem_percent": 0.5}, {"user": "kelly", "pid": 300, "vsz": 2577504, "rss": 19696, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.30", "command": "/usr/libexec/SafariCloudHistoryPushAgent", "cpu_percent": 0.0, "mem_percent": 0.5}, {"user": "root", "pid": 299, "vsz": 2471368, "rss": 4696, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.08", "command": "/System/Library/CoreServices/sharedfilelistd --enable-legacy-services", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kelly", "pid": 298, "vsz": 2496992, "rss": 5788, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.11", "command": "/System/Library/PrivateFrameworks/CoreWLANKit.framework/Versions/A/XPCServices/WiFiProxy.xpc/Contents/MacOS/WiFiProxy", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 297, "vsz": 2489740, "rss": 4124, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.05", "command": "/usr/sbin/filecoordinationd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kelly", "pid": 296, "vsz": 2503288, "rss": 18252, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:09.30", "command": "/System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd", "cpu_percent": 0.0, "mem_percent": 0.4}, {"user": "kelly", "pid": 295, "vsz": 2500740, "rss": 11764, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:01.00", "command": "/System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/XPCServices/com.apple.iCloudHelper.xpc/Contents/MacOS/com.apple.iCloudHelper", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "kelly", "pid": 294, "vsz": 2500852, "rss": 11764, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.46", "command": "/usr/libexec/secinitd", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "kelly", "pid": 293, "vsz": 2496692, "rss": 11204, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:01.98", "command": "/System/Library/Frameworks/AddressBook.framework/Versions/A/XPCServices/com.apple.AddressBook.ContactsAccountsService.xpc/Contents/MacOS/com.apple.AddressBook.ContactsAccountsService", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "kelly", "pid": 292, "vsz": 2509444, "rss": 10040, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.12", "command": "/System/Library/CoreServices/iconservicesagent", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kelly", "pid": 291, "vsz": 2506668, "rss": 9184, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.69", "command": "/System/Library/PrivateFrameworks/TCC.framework/Resources/tccd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kelly", "pid": 290, "vsz": 2502680, "rss": 11300, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:02.20", "command": "/usr/libexec/pkd", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "kelly", "pid": 289, "vsz": 2514456, "rss": 23412, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.54", "command": "/usr/libexec/sharingd", "cpu_percent": 0.0, "mem_percent": 0.6}, {"user": "kelly", "pid": 288, "vsz": 2502572, "rss": 8684, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.45", "command": "/usr/libexec/secd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kelly", "pid": 287, "vsz": 2508040, "rss": 18232, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:01.98", "command": "/System/Library/PrivateFrameworks/IDS.framework/identityservicesd.app/Contents/MacOS/identityservicesd", "cpu_percent": 0.0, "mem_percent": 0.4}, {"user": "kelly", "pid": 286, "vsz": 2515132, "rss": 22096, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:01.00", "command": "/System/Library/PrivateFrameworks/GameCenterFoundation.framework/Versions/A/gamed", "cpu_percent": 0.0, "mem_percent": 0.5}, {"user": "kelly", "pid": 285, "vsz": 2496952, "rss": 10460, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.10", "command": "/System/Library/CoreServices/mapspushd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kelly", "pid": 283, "vsz": 2532008, "rss": 45136, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:15.72", "command": "/System/Library/PrivateFrameworks/CalendarAgent.framework/Executables/CalendarAgent", "cpu_percent": 0.0, "mem_percent": 1.1}, {"user": "kelly", "pid": 280, "vsz": 2502976, "rss": 10072, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.17", "command": "/usr/libexec/nsurlsessiond", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kelly", "pid": 279, "vsz": 2498736, "rss": 8940, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:01.13", "command": "/usr/sbin/usernoted", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kelly", "pid": 278, "vsz": 2531248, "rss": 9268, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.87", "command": "/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Support/fontd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kelly", "pid": 275, "vsz": 2571072, "rss": 39528, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:03.06", "command": "/System/Library/CoreServices/Spotlight.app/Contents/MacOS/Spotlight", "cpu_percent": 0.0, "mem_percent": 0.9}, {"user": "root", "pid": 273, "vsz": 2498040, "rss": 5372, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.04", "command": "/System/Library/PrivateFrameworks/TCC.framework/Resources/tccd system", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 272, "vsz": 2500900, "rss": 6760, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.13", "command": "/usr/sbin/systemsoundserverd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kelly", "pid": 270, "vsz": 2463664, "rss": 2416, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.02", "command": "/usr/sbin/pboard", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kelly", "pid": 268, "vsz": 2629144, "rss": 67620, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:11.52", "command": "/System/Library/CoreServices/Finder.app/Contents/MacOS/Finder", "cpu_percent": 0.0, "mem_percent": 1.6}, {"user": "kelly", "pid": 267, "vsz": 2543496, "rss": 27768, "tt": null, "stat": "U", "started": "10:06AM", "time": "0:00.97", "command": "/System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer", "cpu_percent": 0.0, "mem_percent": 0.7}, {"user": "kelly", "pid": 266, "vsz": 2567336, "rss": 44816, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:05.62", "command": "/System/Library/CoreServices/Dock.app/Contents/MacOS/Dock", "cpu_percent": 0.0, "mem_percent": 1.1}, {"user": "root", "pid": 264, "vsz": 2499696, "rss": 6396, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.41", "command": "/usr/libexec/taskgated -s", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "root", "pid": 262, "vsz": 2454932, "rss": 1120, "tt": null, "stat": "Us", "started": "10:06AM", "time": "0:00.02", "command": "/usr/libexec/watchdogd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kelly", "pid": 261, "vsz": 2498036, "rss": 9348, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.24", "command": "/System/Library/CoreServices/sharedfilelistd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kelly", "pid": 257, "vsz": 2471884, "rss": 3812, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.96", "command": "/usr/sbin/cfprefsd agent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kelly", "pid": 255, "vsz": 2470808, "rss": 3816, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.70", "command": "/usr/sbin/distnoted agent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kelly", "pid": 253, "vsz": 2504736, "rss": 18252, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.79", "command": "/usr/libexec/UserEventAgent (Aqua)", "cpu_percent": 0.0, "mem_percent": 0.4}, {"user": "root", "pid": 251, "vsz": 2498968, "rss": 5000, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:02.54", "command": "/usr/libexec/securityd_service", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 244, "vsz": 2472048, "rss": 3380, "tt": null, "stat": "Us", "started": "10:06AM", "time": "0:00.03", "command": "/System/Library/PrivateFrameworks/AccountPolicy.framework/XPCServices/com.apple.AccountPolicyHelper.xpc/Contents/MacOS/com.apple.AccountPolicyHelper", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_cvmsroot", "pid": 242, "vsz": 2493084, "rss": 8892, "tt": null, "stat": "S", "started": "10:06AM", "time": "0:00.21", "command": "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/CVMCompiler 2", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "root", "pid": 226, "vsz": 2497404, "rss": 2844, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.05", "command": "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/CVMServer", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 225, "vsz": 2499172, "rss": 6488, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.15", "command": "/System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/Support/akd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "root", "pid": 218, "vsz": 2497868, "rss": 7440, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.06", "command": "/System/Library/PrivateFrameworks/AmbientDisplay.framework/Versions/A/XPCServices/com.apple.AmbientDisplayAgent.xpc/Contents/MacOS/com.apple.AmbientDisplayAgent", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "root", "pid": 214, "vsz": 2518076, "rss": 8148, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.10", "command": "/System/Library/Frameworks/CoreMediaIO.framework/Resources/VDC.plugin/Contents/Resources/VDCAssistant", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "root", "pid": 213, "vsz": 2471000, "rss": 3572, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.04", "command": "/System/Library/CryptoTokenKit/com.apple.ifdreader.slotd/Contents/MacOS/com.apple.ifdreader", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 212, "vsz": 2497980, "rss": 8700, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.14", "command": "/usr/libexec/usbd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "root", "pid": 210, "vsz": 2473736, "rss": 7516, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.28", "command": "/usr/libexec/corestoraged", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "root", "pid": 209, "vsz": 2500028, "rss": 6064, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.15", "command": "/usr/libexec/nehelper", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 208, "vsz": 2473400, "rss": 2676, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.07", "command": "/usr/sbin/ntpd -c /private/etc/ntp-restrict.conf -n -g -p /var/run/ntpd.pid -f /var/db/ntp.drift", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_nsurlsessiond", "pid": 207, "vsz": 2515308, "rss": 8520, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.10", "command": "/usr/libexec/nsurlsessiond --privileged", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "root", "pid": 204, "vsz": 2498732, "rss": 20336, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:02.49", "command": "/System/Library/CoreServices/backupd.bundle/Contents/Resources/mtmd", "cpu_percent": 0.0, "mem_percent": 0.5}, {"user": "root", "pid": 203, "vsz": 2496740, "rss": 13976, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.07", "command": "/System/Library/CoreServices/backupd.bundle/Contents/Resources/backupd-helper -launchd", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "root", "pid": 201, "vsz": 2518060, "rss": 12396, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.38", "command": "/usr/libexec/findmydeviced", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "root", "pid": 200, "vsz": 2472036, "rss": 3480, "tt": null, "stat": "Us", "started": "10:06AM", "time": "0:00.03", "command": "/usr/libexec/smd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 199, "vsz": 2473728, "rss": 4700, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.05", "command": "/System/Library/PrivateFrameworks/CoreSymbolication.framework/coresymbolicationd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 198, "vsz": 2472468, "rss": 3564, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.09", "command": "/System/Library/Frameworks/Security.framework/Versions/A/XPCServices/com.apple.CodeSigningHelper.xpc/Contents/MacOS/com.apple.CodeSigningHelper", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 193, "vsz": 2470972, "rss": 4168, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.04", "command": "/System/Library/CoreServices/CrashReporterSupportHelper server-init", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 192, "vsz": 2471500, "rss": 3472, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.04", "command": "/usr/libexec/networkd_privileged", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 191, "vsz": 2479676, "rss": 5536, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.06", "command": "/usr/libexec/rpcsvchost -launchd netlogon.bundle", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 190, "vsz": 2497512, "rss": 5944, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.11", "command": "/System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Support/awdd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_coreaudiod", "pid": 189, "vsz": 2497040, "rss": 3252, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.11", "command": "/System/Library/Frameworks/CoreAudio.framework/Versions/A/XPCServices/com.apple.audio.DriverHelper.xpc/Contents/MacOS/com.apple.audio.DriverHelper", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_networkd", "pid": 187, "vsz": 2471556, "rss": 6008, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.57", "command": "/usr/libexec/networkd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_coreaudiod", "pid": 186, "vsz": 2499916, "rss": 10452, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.51", "command": "/usr/sbin/coreaudiod", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "root", "pid": 185, "vsz": 2512968, "rss": 18816, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:04.52", "command": "/usr/sbin/ocspd", "cpu_percent": 0.0, "mem_percent": 0.4}, {"user": "root", "pid": 172, "vsz": 2498428, "rss": 9620, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.10", "command": "/usr/libexec/secinitd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "root", "pid": 171, "vsz": 2471504, "rss": 3384, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.03", "command": "/System/Library/Frameworks/CryptoTokenKit.framework/ctkd -s", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 170, "vsz": 2471520, "rss": 3372, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.04", "command": "/System/Library/Frameworks/PCSC.framework/Versions/A/XPCServices/com.apple.ctkpcscd.xpc/Contents/MacOS/com.apple.ctkpcscd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 152, "vsz": 2502300, "rss": 7672, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.68", "command": "/System/Library/CoreServices/coreservicesd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "root", "pid": 135, "vsz": 2471336, "rss": 4408, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:02.65", "command": "/usr/sbin/cfprefsd daemon", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 134, "vsz": 2506220, "rss": 6328, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.35", "command": "/usr/libexec/sandboxd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "root", "pid": 133, "vsz": 2499692, "rss": 8144, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.49", "command": "/System/Library/Frameworks/Security.framework/Versions/A/XPCServices/authd.xpc/Contents/MacOS/authd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "root", "pid": 130, "vsz": 2471696, "rss": 4212, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.16", "command": "/usr/libexec/diagnosticd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 129, "vsz": 2471528, "rss": 4452, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.22", "command": "aslmanager", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 114, "vsz": 2501932, "rss": 10260, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:03.76", "command": "/usr/libexec/amfid", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "_distnote", "pid": 105, "vsz": 2470808, "rss": 2768, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.56", "command": "/usr/sbin/distnoted daemon", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 102, "vsz": 2471872, "rss": 1816, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:01.53", "command": "/usr/sbin/notifyd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 101, "vsz": 2472724, "rss": 8756, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.16", "command": "/usr/libexec/AirPlayXPCHelper", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "root", "pid": 98, "vsz": 2470996, "rss": 3988, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.05", "command": "/System/Library/CoreServices/logind", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kelly", "pid": 97, "vsz": 2530732, "rss": 20460, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:01.25", "command": "/System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow console", "cpu_percent": 0.0, "mem_percent": 0.5}, {"user": "root", "pid": 96, "vsz": 2471312, "rss": 1872, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.02", "command": "/usr/sbin/KernelEventAgent", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 95, "vsz": 2499208, "rss": 6376, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.15", "command": "/System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Support/revisiond", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "_mdnsresponder", "pid": 93, "vsz": 2500528, "rss": 6968, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.60", "command": "/usr/sbin/mDNSResponder", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "root", "pid": 88, "vsz": 2471480, "rss": 3620, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.03", "command": "autofsd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 87, "vsz": 2499168, "rss": 7428, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.38", "command": "/usr/sbin/blued", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "_locationd", "pid": 84, "vsz": 2525352, "rss": 12744, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:01.81", "command": "/usr/libexec/locationd", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "root", "pid": 82, "vsz": 2502980, "rss": 6116, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:03.27", "command": "/usr/sbin/securityd -i", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_usbmuxd", "pid": 81, "vsz": 2501976, "rss": 5212, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.17", "command": "/System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/Resources/usbmuxd -launchd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 80, "vsz": 2499772, "rss": 7832, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:01.31", "command": "/System/Library/CoreServices/launchservicesd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "root", "pid": 79, "vsz": 2502392, "rss": 15400, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:01.15", "command": "/System/Library/PrivateFrameworks/ApplePushService.framework/apsd", "cpu_percent": 0.0, "mem_percent": 0.4}, {"user": "root", "pid": 77, "vsz": 2472480, "rss": 5544, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.06", "command": "/usr/sbin/wirelessproxd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 76, "vsz": 2513164, "rss": 13512, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:04.28", "command": "/usr/libexec/opendirectoryd", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "root", "pid": 75, "vsz": 2514428, "rss": 18400, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.70", "command": "/System/Library/CoreServices/backupd.bundle/Contents/Resources/mtmfs --tcp --resvport --listen localhost --oneshot --noportmap --nobrowse", "cpu_percent": 0.0, "mem_percent": 0.4}, {"user": "root", "pid": 73, "vsz": 2472572, "rss": 7992, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.06", "command": "/usr/libexec/wdhelper", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "root", "pid": 72, "vsz": 2504400, "rss": 16796, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:01.49", "command": "/usr/libexec/coreduetd", "cpu_percent": 0.0, "mem_percent": 0.4}, {"user": "root", "pid": 70, "vsz": 2496568, "rss": 3252, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.39", "command": "/usr/libexec/diskarbitrationd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_iconservices", "pid": 69, "vsz": 2472656, "rss": 5032, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.05", "command": "/System/Library/CoreServices/iconservicesd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 68, "vsz": 2472656, "rss": 4976, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.04", "command": "/System/Library/CoreServices/iconservicesagent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 64, "vsz": 2625716, "rss": 58472, "tt": null, "stat": "Rs", "started": "10:06AM", "time": "0:25.12", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Support/mds", "cpu_percent": 0.0, "mem_percent": 1.4}, {"user": "root", "pid": 63, "vsz": 2499284, "rss": 9372, "tt": null, "stat": "SNs", "started": "10:06AM", "time": "0:00.14", "command": "/usr/libexec/warmd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "root", "pid": 61, "vsz": 2502372, "rss": 15232, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:02.00", "command": "/usr/libexec/airportd", "cpu_percent": 0.0, "mem_percent": 0.4}, {"user": "root", "pid": 55, "vsz": 2496680, "rss": 3356, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.54", "command": "/System/Library/CoreServices/powerd.bundle/powerd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 54, "vsz": 2500680, "rss": 7388, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:01.19", "command": "/usr/libexec/configd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "_appleevents", "pid": 53, "vsz": 2500628, "rss": 7544, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:00.19", "command": "/System/Library/CoreServices/appleeventsd --server", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "root", "pid": 49, "vsz": 2477508, "rss": 8348, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:01.78", "command": "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/Support/fseventsd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "root", "pid": 48, "vsz": 2504440, "rss": 14888, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:03.93", "command": "/usr/libexec/kextd", "cpu_percent": 0.0, "mem_percent": 0.4}, {"user": "root", "pid": 45, "vsz": 2500908, "rss": 19068, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:01.39", "command": "/usr/libexec/UserEventAgent (System)", "cpu_percent": 0.0, "mem_percent": 0.5}, {"user": "root", "pid": 44, "vsz": 2473508, "rss": 1968, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:01.92", "command": "/usr/sbin/syslogd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 571, "vsz": 2435008, "rss": 940, "tt": "s000", "stat": "R+", "started": "10:11AM", "time": "0:00.01", "command": "ps axu", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 1, "vsz": 2494140, "rss": 12332, "tt": null, "stat": "Ss", "started": "10:06AM", "time": "0:06.31", "command": "/sbin/launchd", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "root", "pid": 556, "vsz": 2471776, "rss": 3448, "tt": null, "stat": "Ss", "started": "10:11AM", "time": "0:00.03", "command": "/usr/libexec/diskmanagementd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 554, "vsz": 2501076, "rss": 10568, "tt": null, "stat": "Ss", "started": "10:11AM", "time": "0:00.16", "command": "/Library/PrivilegedHelperTools/com.microsoft.autoupdate.helper", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "root", "pid": 540, "vsz": 2497284, "rss": 14132, "tt": null, "stat": "Ss", "started": "10:10AM", "time": "0:00.05", "command": "/System/Library/CoreServices/backupd.bundle/Contents/Resources/backupd", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "root", "pid": 521, "vsz": 2472744, "rss": 2564, "tt": null, "stat": "Ss", "started": "10:09AM", "time": "0:00.03", "command": "/usr/libexec/systemstatsd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_spotlight", "pid": 513, "vsz": 2470808, "rss": 2056, "tt": null, "stat": "S", "started": "10:09AM", "time": "0:00.02", "command": "/usr/sbin/distnoted agent", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "_spotlight", "pid": 499, "vsz": 2522340, "rss": 21616, "tt": null, "stat": "S", "started": "10:07AM", "time": "0:01.26", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared", "cpu_percent": 0.0, "mem_percent": 0.5}, {"user": "_spotlight", "pid": 498, "vsz": 2528744, "rss": 29460, "tt": null, "stat": "S", "started": "10:07AM", "time": "0:01.76", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared", "cpu_percent": 0.0, "mem_percent": 0.7}, {"user": "_spotlight", "pid": 497, "vsz": 2501736, "rss": 14176, "tt": null, "stat": "S", "started": "10:07AM", "time": "0:00.09", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "kelly", "pid": 495, "vsz": 2471580, "rss": 7084, "tt": null, "stat": "S", "started": "10:07AM", "time": "0:00.05", "command": "/System/Library/Frameworks/ApplicationServices.framework/Frameworks/PrintCore.framework/Versions/A/printtool agent", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kelly", "pid": 493, "vsz": 2527808, "rss": 15404, "tt": null, "stat": "S", "started": "10:07AM", "time": "0:00.49", "command": "/System/Library/Image Capture/Support/Image Capture Extension.app/Contents/MacOS/Image Capture Extension", "cpu_percent": 0.0, "mem_percent": 0.4}, {"user": "kelly", "pid": 487, "vsz": 2578592, "rss": 41208, "tt": null, "stat": "Ss", "started": "10:07AM", "time": "0:00.39", "command": "/Applications/Backup and Sync.app/Contents/PlugIns/FinderSyncAPIExtension.appex/Contents/MacOS/FinderSyncAPIExtension", "cpu_percent": 0.0, "mem_percent": 1.0}, {"user": "kelly", "pid": 484, "vsz": 2503160, "rss": 5236, "tt": null, "stat": "S", "started": "10:07AM", "time": "0:00.05", "command": "/System/Library/CoreServices/pbs", "cpu_percent": 0.0, "mem_percent": 0.1}] jc-1.17.3/tests/fixtures/osx-10.11.6/ps-axu.out000077500000000000000000000767771415226333200206270ustar00rootroot00000000000000USER PID %CPU %MEM VSZ RSS TT STAT STARTED TIME COMMAND kelly 568 47.8 1.0 2534864 43136 ?? U 10:11AM 0:10.58 /usr/bin/codesign --verify --deep /Applications/Microsoft PowerPoint.app kelly 519 4.2 0.4 2509624 18852 ?? RN 10:09AM 0:01.39 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker-bundle -c MDSImporterBundleFinder -m com.apple.mdworker.bundles _spotlight 514 2.4 0.4 2517664 16848 ?? U 10:09AM 0:03.04 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker-sizing -c MDSSizingWorker -m com.apple.mdworker.sizing _spotlight 518 1.5 0.5 2521956 19796 ?? UN 10:09AM 0:01.23 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker-bundle -c MDSImporterBundleFinder -m com.apple.mdworker.bundles _windowserver 179 1.4 1.6 3611664 67720 ?? Ss 10:06AM 0:14.23 /System/Library/Frameworks/ApplicationServices.framework/Frameworks/CoreGraphics.framework/Resources/WindowServer -daemon root 459 0.9 0.3 2520276 12840 ?? Us 10:06AM 0:09.38 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker-scan -c MDSSyncScanWorker -m com.apple.metadata.mds.scan kelly 260 0.7 1.2 2577516 49096 ?? U 10:06AM 0:03.99 /Applications/Utilities/Terminal.app/Contents/MacOS/Terminal -psn_0_24582 root 100 0.4 0.1 2473232 5356 ?? Ss 10:06AM 0:02.71 /usr/libexec/hidd root 206 0.2 2.9 4324960 119616 ?? Us 10:06AM 0:16.66 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mds_stores root 202 0.2 0.5 2521392 23044 ?? Us 10:06AM 0:02.29 /usr/libexec/lsd runAsRoot kelly 258 0.1 0.4 2508168 15740 ?? U 10:06AM 0:00.98 /usr/libexec/lsd kelly 480 0.0 0.1 2503776 5628 ?? S 10:07AM 0:00.09 /usr/libexec/swcd kelly 477 0.0 0.4 2531036 18780 ?? S 10:07AM 0:00.36 /System/Library/CoreServices/System Events.app/Contents/MacOS/System Events kelly 465 0.0 0.3 2504280 12808 ?? S 10:07AM 0:00.23 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker-sizing -c MDSSizingWorker -m com.apple.mdworker.sizing kelly 463 0.0 0.3 2526912 12992 ?? S 10:07AM 0:00.15 /System/Library/PrivateFrameworks/CommerceKit.framework/Resources/LaterAgent.app/Contents/MacOS/LaterAgent kelly 462 0.0 0.2 2506432 8572 ?? S 10:06AM 0:00.16 /System/Library/PrivateFrameworks/PhotoLibraryPrivate.framework/Versions/A/Support/photolibraryd kelly 461 0.0 0.2 2498376 9636 ?? U 10:06AM 0:00.12 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storelegacy root 448 0.0 0.0 2472468 1232 ?? S 10:06AM 0:00.04 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdflagwriter kelly 447 0.0 0.0 2472992 1464 ?? S 10:06AM 0:00.06 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdflagwriter root 446 0.0 0.2 2471160 6328 ?? Ss 10:06AM 0:00.03 /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Resources/suhelperd _softwareupdate 445 0.0 1.3 2551592 54552 ?? Us 10:06AM 0:03.71 /System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdated root 440 0.0 0.2 2471132 7044 ?? Ss 10:06AM 0:00.06 /System/Library/CoreServices/SubmitDiagInfo server-init root 439 0.0 0.2 2471736 6552 ?? Ss 10:06AM 0:00.04 /usr/sbin/spindump kelly 438 0.0 0.8 2523024 32280 ?? S 10:06AM 0:00.39 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared kelly 437 0.0 0.4 2508488 16932 ?? S 10:06AM 0:00.37 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared kelly 436 0.0 0.4 2512496 15620 ?? S 10:06AM 0:00.30 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared kelly 435 0.0 0.5 2517244 22920 ?? S 10:06AM 0:00.47 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared kelly 434 0.0 0.3 2500988 13876 ?? S 10:06AM 0:01.75 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared kelly 432 0.0 0.3 2500504 13952 ?? S 10:06AM 0:00.12 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storedownloadd kelly 429 0.0 0.2 2499248 9904 ?? Ss 10:06AM 0:00.07 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/XPCServices/com.apple.CommerceKit.TransactionService.xpc/Contents/MacOS/com.apple.CommerceKit.TransactionService kelly 428 0.0 0.4 2502632 15428 ?? S 10:06AM 0:00.52 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeinappd kelly 427 0.0 0.3 2504184 12340 ?? S 10:06AM 0:00.12 /System/Library/PrivateFrameworks/AssistantServices.framework/assistantd kelly 426 0.0 0.3 2496660 11152 ?? Ss 10:06AM 0:00.04 /System/Library/CoreServices/NotificationCenter.app/Contents/XPCServices/com.apple.notificationcenterui.WeatherSummary.xpc/Contents/MacOS/com.apple.notificationcenterui.WeatherSummary kelly 419 0.0 4.1 2859668 170620 ?? S 10:06AM 0:10.32 /Applications/Backup and Sync.app/Contents/MacOS/Backup and Sync kelly 417 0.0 0.2 2508996 9684 ?? S 10:06AM 0:00.11 /Applications/iTunes.app/Contents/MacOS/iTunesHelper.app/Contents/MacOS/iTunesHelper kelly 412 0.0 0.3 2497104 11932 ?? S 10:06AM 0:00.13 /System/Library/CoreServices/diagnostics_agent kelly 411 0.0 0.3 2525428 11540 ?? S 10:06AM 0:00.89 /System/Library/CoreServices/WiFiAgent.app/Contents/MacOS/WiFiAgent kelly 408 0.0 0.2 2524584 10320 ?? S 10:06AM 0:00.11 /System/Library/CoreServices/AirPlayUIAgent.app/Contents/MacOS/AirPlayUIAgent --launchd kelly 404 0.0 0.4 2501812 16092 ?? S 10:06AM 0:00.57 /System/Library/CoreServices/AppleIDAuthAgent kelly 402 0.0 0.2 2498460 10480 ?? S 10:06AM 0:00.29 /System/Library/Image Capture/Support/icdd kelly 400 0.0 0.7 2552032 28396 ?? S 10:06AM 0:01.47 /System/Library/CoreServices/NotificationCenter.app/Contents/MacOS/NotificationCenter kelly 397 0.0 0.4 2524600 16708 ?? S 10:06AM 0:00.19 /System/Library/CoreServices/Keychain Circle Notification.app/Contents/MacOS/Keychain Circle Notification kelly 394 0.0 0.2 2497796 7932 ?? S 10:06AM 0:00.05 /System/Library/CoreServices/SocialPushAgent.app/Contents/MacOS/SocialPushAgent kelly 392 0.0 0.1 2477552 3816 ?? S 10:06AM 0:00.03 /usr/libexec/spindump_agent kelly 390 0.0 0.3 2524556 12212 ?? S 10:06AM 0:00.11 /System/Library/CoreServices/FolderActionsDispatcher.app/Contents/MacOS/FolderActionsDispatcher kelly 389 0.0 0.5 2536836 23024 ?? S 10:06AM 1:13.66 /Library/Application Support/Microsoft/MAU2.0/Microsoft AutoUpdate.app/Contents/MacOS/Microsoft Update Assistant.app/Contents/MacOS/Microsoft Update Assistant -checkForUpdates root 386 0.0 0.1 2489324 2268 ?? Ss 10:06AM 0:00.02 /System/Library/Filesystems/AppleShare/check_afp.app/Contents/MacOS/check_afp kelly 381 0.0 0.0 2454892 1576 s001 S+ 10:06AM 0:00.02 -bash root 380 0.0 0.1 2471532 4156 s001 Us 10:06AM 0:00.03 login -pfl kelly /bin/bash -c exec -la bash /bin/bash kelly 368 0.0 0.2 2497892 9084 ?? S 10:06AM 0:00.15 /System/Library/CoreServices/NetAuthAgent.app/Contents/MacOS/NetAuthSysAgent root 367 0.0 0.2 2471496 6360 ?? Ss 10:06AM 0:00.03 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper kelly 361 0.0 0.0 2463084 1616 s000 S 10:06AM 0:00.06 -bash root 360 0.0 0.1 2471532 4208 s000 Us 10:06AM 0:00.05 login -pfl kelly /bin/bash -c exec -la bash /bin/bash kelly 359 0.0 0.4 2505388 16844 ?? S 10:06AM 0:00.16 /System/Library/PrivateFrameworks/CloudPhotoServices.framework/Versions/A/Frameworks/CloudPhotosConfigurationXPC.framework/Versions/A/XPCServices/com.apple.CloudPhotosConfiguration.xpc/Contents/MacOS/com.apple.CloudPhotosConfiguration kelly 357 0.0 0.2 2497824 8516 ?? Ss 10:06AM 0:00.05 /System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCService kelly 354 0.0 0.2 2499952 7748 ?? Ss 10:06AM 0:00.54 /System/Library/PrivateFrameworks/IMFoundation.framework/XPCServices/IMRemoteURLConnectionAgent.xpc/Contents/MacOS/IMRemoteURLConnectionAgent _netbios 353 0.0 0.2 2473112 8296 ?? SNs 10:06AM 0:00.08 /usr/sbin/netbiosd kelly 349 0.0 0.2 2496720 6752 ?? S 10:06AM 0:00.04 /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/Resources/helpd kelly 346 0.0 0.1 2497264 4200 ?? S 10:06AM 0:00.04 /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent --launchd _networkd 344 0.0 0.2 2520416 7448 ?? Ss 10:06AM 0:00.56 /usr/libexec/symptomsd kelly 343 0.0 0.3 2527064 10624 ?? S 10:06AM 0:00.11 /System/Library/CoreServices/CoreServicesUIAgent.app/Contents/MacOS/CoreServicesUIAgent _nsurlstoraged 342 0.0 0.1 2471568 4744 ?? Ss 10:06AM 0:00.05 /usr/libexec/nsurlstoraged kelly 341 0.0 0.3 2499248 12100 ?? Ss 10:06AM 0:00.08 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/XPCServices/com.apple.CommerceKit.TransactionService.xpc/Contents/MacOS/com.apple.CommerceKit.TransactionService kelly 340 0.0 0.2 2502544 9904 ?? Ss 10:06AM 0:00.27 /System/Library/PrivateFrameworks/CloudDocsDaemon.framework/XPCServices/ContainerMetadataExtractor.xpc/Contents/MacOS/ContainerMetadataExtractor kelly 339 0.0 0.3 2501432 13572 ?? S 10:06AM 0:00.09 /System/Library/PrivateFrameworks/CallHistory.framework/Support/CallHistoryPluginHelper kelly 338 0.0 0.4 2500564 16336 ?? S 10:06AM 0:00.52 /System/Library/PrivateFrameworks/IMDPersistence.framework/XPCServices/IMDPersistenceAgent.xpc/Contents/MacOS/IMDPersistenceAgent kelly 337 0.0 0.5 2499868 20196 ?? S 10:06AM 0:00.46 /System/Library/PrivateFrameworks/IMCore.framework/imagent.app/Contents/MacOS/imagent kelly 336 0.0 1.2 2538636 52132 ?? S 10:06AM 0:06.10 /System/Library/PrivateFrameworks/MessagesKit.framework/Resources/soagent.app/Contents/MacOS/soagent kelly 335 0.0 0.5 2525728 20416 ?? Ss 10:06AM 0:00.32 /System/Library/CoreServices/Dock.app/Contents/XPCServices/com.apple.dock.extra.xpc/Contents/MacOS/com.apple.dock.extra kelly 334 0.0 0.3 2503088 13600 ?? S 10:06AM 0:01.41 /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/XPCServices/com.apple.geod.xpc/Contents/MacOS/com.apple.geod kelly 333 0.0 0.1 2471072 4244 ?? S 10:06AM 0:00.03 /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CMFSyncAgent.app/Contents/MacOS/CMFSyncAgent kelly 332 0.0 0.5 2503760 20008 ?? S 10:06AM 0:02.17 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeaccountd kelly 331 0.0 0.2 2472600 7088 ?? S 10:06AM 0:00.04 /System/Library/Frameworks/Security.framework/Versions/A/Resources/CloudKeychainProxy.bundle/Contents/MacOS/CloudKeychainProxy kelly 328 0.0 0.3 3018556 13168 ?? S 10:06AM 0:00.17 /System/Library/Frameworks/QuickLook.framework/Resources/quicklookd.app/Contents/MacOS/quicklookd root 327 0.0 0.1 2471548 3348 ?? Ss 10:06AM 0:00.02 /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/XPCServices/com.apple.PerformanceAnalysis.animationperfd.xpc/Contents/MacOS/com.apple.PerformanceAnalysis.animationperfd root 325 0.0 0.9 2542632 36124 ?? Ss 10:06AM 0:13.82 /System/Library/PrivateFrameworks/PackageKit.framework/Resources/installd root 324 0.0 0.4 2497996 14772 ?? Ss 10:06AM 0:00.10 /System/Library/CoreServices/backupd.bundle/Contents/Resources/TMCacheDelete root 323 0.0 0.2 2474660 6424 ?? Ss 10:06AM 0:00.41 /System/Library/PrivateFrameworks/CacheDelete.framework/deleted kelly 322 0.0 0.7 2507252 29144 ?? S 10:06AM 0:02.67 /System/Library/PrivateFrameworks/CoreSuggestions.framework/Versions/A/Support/suggestd kelly 321 0.0 0.5 2549048 22808 ?? S 10:06AM 0:00.48 /System/Library/CoreServices/cloudphotosd.app/Contents/MacOS/cloudphotosd kelly 316 0.0 0.7 2507092 30596 ?? S 10:06AM 0:16.80 /System/Library/PrivateFrameworks/ParsecUI.framework/Versions/A/Support/SpotlightNetHelper.app/Contents/MacOS/SpotlightNetHelper kelly 315 0.0 1.2 2534368 49132 ?? S 10:06AM 0:06.80 /System/Library/PrivateFrameworks/TelephonyUtilities.framework/callservicesd _gamecontrollerd 313 0.0 0.2 2471808 7048 ?? Ss 10:06AM 0:00.08 /usr/libexec/gamecontrollerd kelly 312 0.0 0.9 2521504 36648 ?? S 10:06AM 0:01.21 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeassetd kelly 311 0.0 1.3 2540140 54192 ?? Ss 10:06AM 0:07.69 /System/Library/PrivateFrameworks/CalendarAgent.framework/Versions/A/XPCServices/CalNCService.xpc/Contents/MacOS/CalNCService kelly 310 0.0 0.4 2504064 18400 ?? S 10:06AM 0:00.34 /System/Library/PrivateFrameworks/CloudKitDaemon.framework/Support/cloudd kelly 308 0.0 0.4 2504080 16752 ?? S 10:06AM 0:02.90 /usr/libexec/nsurlstoraged kelly 307 0.0 0.6 2506840 26052 ?? S 10:06AM 0:04.66 /System/Library/PrivateFrameworks/CloudDocsDaemon.framework/Versions/A/Support/bird kelly 306 0.0 0.3 2505496 12316 ?? S 10:06AM 0:01.76 /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/Support/akd kelly 305 0.0 0.3 2497192 10492 ?? S 10:06AM 0:00.06 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/maspushagent kelly 304 0.0 0.3 2496780 13832 ?? S 10:06AM 0:00.07 /System/Library/PrivateFrameworks/AskPermission.framework/Versions/A/Resources/askpermissiond kelly 302 0.0 0.4 2497212 15008 ?? S 10:06AM 0:00.11 /System/Library/PrivateFrameworks/CallHistory.framework/Support/CallHistorySyncHelper kelly 301 0.0 0.5 2500596 20072 ?? S 10:06AM 0:01.17 /usr/libexec/fmfd kelly 300 0.0 0.5 2577504 19696 ?? S 10:06AM 0:00.30 /usr/libexec/SafariCloudHistoryPushAgent root 299 0.0 0.1 2471368 4696 ?? Ss 10:06AM 0:00.08 /System/Library/CoreServices/sharedfilelistd --enable-legacy-services kelly 298 0.0 0.1 2496992 5788 ?? Ss 10:06AM 0:00.11 /System/Library/PrivateFrameworks/CoreWLANKit.framework/Versions/A/XPCServices/WiFiProxy.xpc/Contents/MacOS/WiFiProxy root 297 0.0 0.1 2489740 4124 ?? Ss 10:06AM 0:00.05 /usr/sbin/filecoordinationd kelly 296 0.0 0.4 2503288 18252 ?? S 10:06AM 0:09.30 /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd kelly 295 0.0 0.3 2500740 11764 ?? S 10:06AM 0:01.00 /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/XPCServices/com.apple.iCloudHelper.xpc/Contents/MacOS/com.apple.iCloudHelper kelly 294 0.0 0.3 2500852 11764 ?? S 10:06AM 0:00.46 /usr/libexec/secinitd kelly 293 0.0 0.3 2496692 11204 ?? S 10:06AM 0:01.98 /System/Library/Frameworks/AddressBook.framework/Versions/A/XPCServices/com.apple.AddressBook.ContactsAccountsService.xpc/Contents/MacOS/com.apple.AddressBook.ContactsAccountsService kelly 292 0.0 0.2 2509444 10040 ?? S 10:06AM 0:00.12 /System/Library/CoreServices/iconservicesagent kelly 291 0.0 0.2 2506668 9184 ?? S 10:06AM 0:00.69 /System/Library/PrivateFrameworks/TCC.framework/Resources/tccd kelly 290 0.0 0.3 2502680 11300 ?? S 10:06AM 0:02.20 /usr/libexec/pkd kelly 289 0.0 0.6 2514456 23412 ?? S 10:06AM 0:00.54 /usr/libexec/sharingd kelly 288 0.0 0.2 2502572 8684 ?? S 10:06AM 0:00.45 /usr/libexec/secd kelly 287 0.0 0.4 2508040 18232 ?? S 10:06AM 0:01.98 /System/Library/PrivateFrameworks/IDS.framework/identityservicesd.app/Contents/MacOS/identityservicesd kelly 286 0.0 0.5 2515132 22096 ?? S 10:06AM 0:01.00 /System/Library/PrivateFrameworks/GameCenterFoundation.framework/Versions/A/gamed kelly 285 0.0 0.2 2496952 10460 ?? S 10:06AM 0:00.10 /System/Library/CoreServices/mapspushd kelly 283 0.0 1.1 2532008 45136 ?? S 10:06AM 0:15.72 /System/Library/PrivateFrameworks/CalendarAgent.framework/Executables/CalendarAgent kelly 280 0.0 0.2 2502976 10072 ?? S 10:06AM 0:00.17 /usr/libexec/nsurlsessiond kelly 279 0.0 0.2 2498736 8940 ?? S 10:06AM 0:01.13 /usr/sbin/usernoted kelly 278 0.0 0.2 2531248 9268 ?? S 10:06AM 0:00.87 /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Support/fontd kelly 275 0.0 0.9 2571072 39528 ?? S 10:06AM 0:03.06 /System/Library/CoreServices/Spotlight.app/Contents/MacOS/Spotlight root 273 0.0 0.1 2498040 5372 ?? Ss 10:06AM 0:00.04 /System/Library/PrivateFrameworks/TCC.framework/Resources/tccd system root 272 0.0 0.2 2500900 6760 ?? Ss 10:06AM 0:00.13 /usr/sbin/systemsoundserverd kelly 270 0.0 0.1 2463664 2416 ?? S 10:06AM 0:00.02 /usr/sbin/pboard kelly 268 0.0 1.6 2629144 67620 ?? S 10:06AM 0:11.52 /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder kelly 267 0.0 0.7 2543496 27768 ?? U 10:06AM 0:00.97 /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer kelly 266 0.0 1.1 2567336 44816 ?? S 10:06AM 0:05.62 /System/Library/CoreServices/Dock.app/Contents/MacOS/Dock root 264 0.0 0.2 2499696 6396 ?? Ss 10:06AM 0:00.41 /usr/libexec/taskgated -s root 262 0.0 0.0 2454932 1120 ?? Us 10:06AM 0:00.02 /usr/libexec/watchdogd kelly 261 0.0 0.2 2498036 9348 ?? S 10:06AM 0:00.24 /System/Library/CoreServices/sharedfilelistd kelly 257 0.0 0.1 2471884 3812 ?? S 10:06AM 0:00.96 /usr/sbin/cfprefsd agent kelly 255 0.0 0.1 2470808 3816 ?? S 10:06AM 0:00.70 /usr/sbin/distnoted agent kelly 253 0.0 0.4 2504736 18252 ?? S 10:06AM 0:00.79 /usr/libexec/UserEventAgent (Aqua) root 251 0.0 0.1 2498968 5000 ?? Ss 10:06AM 0:02.54 /usr/libexec/securityd_service root 244 0.0 0.1 2472048 3380 ?? Us 10:06AM 0:00.03 /System/Library/PrivateFrameworks/AccountPolicy.framework/XPCServices/com.apple.AccountPolicyHelper.xpc/Contents/MacOS/com.apple.AccountPolicyHelper _cvmsroot 242 0.0 0.2 2493084 8892 ?? S 10:06AM 0:00.21 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/CVMCompiler 2 root 226 0.0 0.1 2497404 2844 ?? Ss 10:06AM 0:00.05 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/CVMServer root 225 0.0 0.2 2499172 6488 ?? Ss 10:06AM 0:00.15 /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/Support/akd root 218 0.0 0.2 2497868 7440 ?? Ss 10:06AM 0:00.06 /System/Library/PrivateFrameworks/AmbientDisplay.framework/Versions/A/XPCServices/com.apple.AmbientDisplayAgent.xpc/Contents/MacOS/com.apple.AmbientDisplayAgent root 214 0.0 0.2 2518076 8148 ?? Ss 10:06AM 0:00.10 /System/Library/Frameworks/CoreMediaIO.framework/Resources/VDC.plugin/Contents/Resources/VDCAssistant root 213 0.0 0.1 2471000 3572 ?? Ss 10:06AM 0:00.04 /System/Library/CryptoTokenKit/com.apple.ifdreader.slotd/Contents/MacOS/com.apple.ifdreader root 212 0.0 0.2 2497980 8700 ?? Ss 10:06AM 0:00.14 /usr/libexec/usbd root 210 0.0 0.2 2473736 7516 ?? Ss 10:06AM 0:00.28 /usr/libexec/corestoraged root 209 0.0 0.1 2500028 6064 ?? Ss 10:06AM 0:00.15 /usr/libexec/nehelper root 208 0.0 0.1 2473400 2676 ?? Ss 10:06AM 0:00.07 /usr/sbin/ntpd -c /private/etc/ntp-restrict.conf -n -g -p /var/run/ntpd.pid -f /var/db/ntp.drift _nsurlsessiond 207 0.0 0.2 2515308 8520 ?? Ss 10:06AM 0:00.10 /usr/libexec/nsurlsessiond --privileged root 204 0.0 0.5 2498732 20336 ?? Ss 10:06AM 0:02.49 /System/Library/CoreServices/backupd.bundle/Contents/Resources/mtmd root 203 0.0 0.3 2496740 13976 ?? Ss 10:06AM 0:00.07 /System/Library/CoreServices/backupd.bundle/Contents/Resources/backupd-helper -launchd root 201 0.0 0.3 2518060 12396 ?? Ss 10:06AM 0:00.38 /usr/libexec/findmydeviced root 200 0.0 0.1 2472036 3480 ?? Us 10:06AM 0:00.03 /usr/libexec/smd root 199 0.0 0.1 2473728 4700 ?? Ss 10:06AM 0:00.05 /System/Library/PrivateFrameworks/CoreSymbolication.framework/coresymbolicationd root 198 0.0 0.1 2472468 3564 ?? Ss 10:06AM 0:00.09 /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/com.apple.CodeSigningHelper.xpc/Contents/MacOS/com.apple.CodeSigningHelper root 193 0.0 0.1 2470972 4168 ?? Ss 10:06AM 0:00.04 /System/Library/CoreServices/CrashReporterSupportHelper server-init root 192 0.0 0.1 2471500 3472 ?? Ss 10:06AM 0:00.04 /usr/libexec/networkd_privileged root 191 0.0 0.1 2479676 5536 ?? Ss 10:06AM 0:00.06 /usr/libexec/rpcsvchost -launchd netlogon.bundle root 190 0.0 0.1 2497512 5944 ?? Ss 10:06AM 0:00.11 /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Support/awdd _coreaudiod 189 0.0 0.1 2497040 3252 ?? Ss 10:06AM 0:00.11 /System/Library/Frameworks/CoreAudio.framework/Versions/A/XPCServices/com.apple.audio.DriverHelper.xpc/Contents/MacOS/com.apple.audio.DriverHelper _networkd 187 0.0 0.1 2471556 6008 ?? Ss 10:06AM 0:00.57 /usr/libexec/networkd _coreaudiod 186 0.0 0.2 2499916 10452 ?? Ss 10:06AM 0:00.51 /usr/sbin/coreaudiod root 185 0.0 0.4 2512968 18816 ?? Ss 10:06AM 0:04.52 /usr/sbin/ocspd root 172 0.0 0.2 2498428 9620 ?? Ss 10:06AM 0:00.10 /usr/libexec/secinitd root 171 0.0 0.1 2471504 3384 ?? Ss 10:06AM 0:00.03 /System/Library/Frameworks/CryptoTokenKit.framework/ctkd -s root 170 0.0 0.1 2471520 3372 ?? Ss 10:06AM 0:00.04 /System/Library/Frameworks/PCSC.framework/Versions/A/XPCServices/com.apple.ctkpcscd.xpc/Contents/MacOS/com.apple.ctkpcscd root 152 0.0 0.2 2502300 7672 ?? Ss 10:06AM 0:00.68 /System/Library/CoreServices/coreservicesd root 135 0.0 0.1 2471336 4408 ?? Ss 10:06AM 0:02.65 /usr/sbin/cfprefsd daemon root 134 0.0 0.2 2506220 6328 ?? Ss 10:06AM 0:00.35 /usr/libexec/sandboxd root 133 0.0 0.2 2499692 8144 ?? Ss 10:06AM 0:00.49 /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/authd.xpc/Contents/MacOS/authd root 130 0.0 0.1 2471696 4212 ?? Ss 10:06AM 0:00.16 /usr/libexec/diagnosticd root 129 0.0 0.1 2471528 4452 ?? Ss 10:06AM 0:00.22 aslmanager root 114 0.0 0.2 2501932 10260 ?? Ss 10:06AM 0:03.76 /usr/libexec/amfid _distnote 105 0.0 0.1 2470808 2768 ?? Ss 10:06AM 0:00.56 /usr/sbin/distnoted daemon root 102 0.0 0.0 2471872 1816 ?? Ss 10:06AM 0:01.53 /usr/sbin/notifyd root 101 0.0 0.2 2472724 8756 ?? Ss 10:06AM 0:00.16 /usr/libexec/AirPlayXPCHelper root 98 0.0 0.1 2470996 3988 ?? Ss 10:06AM 0:00.05 /System/Library/CoreServices/logind kelly 97 0.0 0.5 2530732 20460 ?? Ss 10:06AM 0:01.25 /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow console root 96 0.0 0.0 2471312 1872 ?? Ss 10:06AM 0:00.02 /usr/sbin/KernelEventAgent root 95 0.0 0.2 2499208 6376 ?? Ss 10:06AM 0:00.15 /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Support/revisiond _mdnsresponder 93 0.0 0.2 2500528 6968 ?? Ss 10:06AM 0:00.60 /usr/sbin/mDNSResponder root 88 0.0 0.1 2471480 3620 ?? Ss 10:06AM 0:00.03 autofsd root 87 0.0 0.2 2499168 7428 ?? Ss 10:06AM 0:00.38 /usr/sbin/blued _locationd 84 0.0 0.3 2525352 12744 ?? Ss 10:06AM 0:01.81 /usr/libexec/locationd root 82 0.0 0.1 2502980 6116 ?? Ss 10:06AM 0:03.27 /usr/sbin/securityd -i _usbmuxd 81 0.0 0.1 2501976 5212 ?? Ss 10:06AM 0:00.17 /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/Resources/usbmuxd -launchd root 80 0.0 0.2 2499772 7832 ?? Ss 10:06AM 0:01.31 /System/Library/CoreServices/launchservicesd root 79 0.0 0.4 2502392 15400 ?? Ss 10:06AM 0:01.15 /System/Library/PrivateFrameworks/ApplePushService.framework/apsd root 77 0.0 0.1 2472480 5544 ?? Ss 10:06AM 0:00.06 /usr/sbin/wirelessproxd root 76 0.0 0.3 2513164 13512 ?? Ss 10:06AM 0:04.28 /usr/libexec/opendirectoryd root 75 0.0 0.4 2514428 18400 ?? Ss 10:06AM 0:00.70 /System/Library/CoreServices/backupd.bundle/Contents/Resources/mtmfs --tcp --resvport --listen localhost --oneshot --noportmap --nobrowse root 73 0.0 0.2 2472572 7992 ?? Ss 10:06AM 0:00.06 /usr/libexec/wdhelper root 72 0.0 0.4 2504400 16796 ?? Ss 10:06AM 0:01.49 /usr/libexec/coreduetd root 70 0.0 0.1 2496568 3252 ?? Ss 10:06AM 0:00.39 /usr/libexec/diskarbitrationd _iconservices 69 0.0 0.1 2472656 5032 ?? Ss 10:06AM 0:00.05 /System/Library/CoreServices/iconservicesd root 68 0.0 0.1 2472656 4976 ?? Ss 10:06AM 0:00.04 /System/Library/CoreServices/iconservicesagent root 64 0.0 1.4 2625716 58472 ?? Rs 10:06AM 0:25.12 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Support/mds root 63 0.0 0.2 2499284 9372 ?? SNs 10:06AM 0:00.14 /usr/libexec/warmd root 61 0.0 0.4 2502372 15232 ?? Ss 10:06AM 0:02.00 /usr/libexec/airportd root 55 0.0 0.1 2496680 3356 ?? Ss 10:06AM 0:00.54 /System/Library/CoreServices/powerd.bundle/powerd root 54 0.0 0.2 2500680 7388 ?? Ss 10:06AM 0:01.19 /usr/libexec/configd _appleevents 53 0.0 0.2 2500628 7544 ?? Ss 10:06AM 0:00.19 /System/Library/CoreServices/appleeventsd --server root 49 0.0 0.2 2477508 8348 ?? Ss 10:06AM 0:01.78 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/Support/fseventsd root 48 0.0 0.4 2504440 14888 ?? Ss 10:06AM 0:03.93 /usr/libexec/kextd root 45 0.0 0.5 2500908 19068 ?? Ss 10:06AM 0:01.39 /usr/libexec/UserEventAgent (System) root 44 0.0 0.0 2473508 1968 ?? Ss 10:06AM 0:01.92 /usr/sbin/syslogd root 571 0.0 0.0 2435008 940 s000 R+ 10:11AM 0:00.01 ps axu root 1 0.0 0.3 2494140 12332 ?? Ss 10:06AM 0:06.31 /sbin/launchd root 556 0.0 0.1 2471776 3448 ?? Ss 10:11AM 0:00.03 /usr/libexec/diskmanagementd root 554 0.0 0.3 2501076 10568 ?? Ss 10:11AM 0:00.16 /Library/PrivilegedHelperTools/com.microsoft.autoupdate.helper root 540 0.0 0.3 2497284 14132 ?? Ss 10:10AM 0:00.05 /System/Library/CoreServices/backupd.bundle/Contents/Resources/backupd root 521 0.0 0.1 2472744 2564 ?? Ss 10:09AM 0:00.03 /usr/libexec/systemstatsd _spotlight 513 0.0 0.0 2470808 2056 ?? S 10:09AM 0:00.02 /usr/sbin/distnoted agent _spotlight 499 0.0 0.5 2522340 21616 ?? S 10:07AM 0:01.26 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared _spotlight 498 0.0 0.7 2528744 29460 ?? S 10:07AM 0:01.76 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared _spotlight 497 0.0 0.3 2501736 14176 ?? S 10:07AM 0:00.09 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared kelly 495 0.0 0.2 2471580 7084 ?? S 10:07AM 0:00.05 /System/Library/Frameworks/ApplicationServices.framework/Frameworks/PrintCore.framework/Versions/A/printtool agent kelly 493 0.0 0.4 2527808 15404 ?? S 10:07AM 0:00.49 /System/Library/Image Capture/Support/Image Capture Extension.app/Contents/MacOS/Image Capture Extension kelly 487 0.0 1.0 2578592 41208 ?? Ss 10:07AM 0:00.39 /Applications/Backup and Sync.app/Contents/PlugIns/FinderSyncAPIExtension.appex/Contents/MacOS/FinderSyncAPIExtension kelly 484 0.0 0.1 2503160 5236 ?? S 10:07AM 0:00.05 /System/Library/CoreServices/pbs jc-1.17.3/tests/fixtures/osx-10.11.6/ps-ef.json000066400000000000000000001126231415226333200205400ustar00rootroot00000000000000[{"uid": "0", "pid": 1, "ppid": 0, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:06.30", "cmd": "/sbin/launchd"}, {"uid": "0", "pid": 44, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:01.92", "cmd": "/usr/sbin/syslogd"}, {"uid": "0", "pid": 45, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:01.39", "cmd": "/usr/libexec/UserEventAgent (System)"}, {"uid": "0", "pid": 48, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:03.88", "cmd": "/usr/libexec/kextd"}, {"uid": "0", "pid": 49, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:01.74", "cmd": "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/Support/fseventsd"}, {"uid": "55", "pid": 53, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.19", "cmd": "/System/Library/CoreServices/appleeventsd --server"}, {"uid": "0", "pid": 54, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:01.19", "cmd": "/usr/libexec/configd"}, {"uid": "0", "pid": 55, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.54", "cmd": "/System/Library/CoreServices/powerd.bundle/powerd"}, {"uid": "0", "pid": 61, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:02.00", "cmd": "/usr/libexec/airportd"}, {"uid": "0", "pid": 63, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.14", "cmd": "/usr/libexec/warmd"}, {"uid": "0", "pid": 64, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:24.76", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Support/mds"}, {"uid": "0", "pid": 68, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.04", "cmd": "/System/Library/CoreServices/iconservicesagent"}, {"uid": "240", "pid": 69, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.05", "cmd": "/System/Library/CoreServices/iconservicesd"}, {"uid": "0", "pid": 70, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.39", "cmd": "/usr/libexec/diskarbitrationd"}, {"uid": "0", "pid": 72, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:01.49", "cmd": "/usr/libexec/coreduetd"}, {"uid": "0", "pid": 73, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.06", "cmd": "/usr/libexec/wdhelper"}, {"uid": "0", "pid": 75, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.70", "cmd": "/System/Library/CoreServices/backupd.bundle/Contents/Resources/mtmfs --tcp --resvport --listen localhost --oneshot --noportmap --nobrowse"}, {"uid": "0", "pid": 76, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:04.25", "cmd": "/usr/libexec/opendirectoryd"}, {"uid": "0", "pid": 77, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.06", "cmd": "/usr/sbin/wirelessproxd"}, {"uid": "0", "pid": 79, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:01.15", "cmd": "/System/Library/PrivateFrameworks/ApplePushService.framework/apsd"}, {"uid": "0", "pid": 80, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:01.31", "cmd": "/System/Library/CoreServices/launchservicesd"}, {"uid": "213", "pid": 81, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.17", "cmd": "/System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/Resources/usbmuxd -launchd"}, {"uid": "0", "pid": 82, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:03.23", "cmd": "/usr/sbin/securityd -i"}, {"uid": "205", "pid": 84, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:01.80", "cmd": "/usr/libexec/locationd"}, {"uid": "0", "pid": 87, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.38", "cmd": "/usr/sbin/blued"}, {"uid": "0", "pid": 88, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.03", "cmd": "autofsd"}, {"uid": "65", "pid": 93, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.59", "cmd": "/usr/sbin/mDNSResponder"}, {"uid": "0", "pid": 95, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.15", "cmd": "/System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Support/revisiond"}, {"uid": "0", "pid": 96, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.02", "cmd": "/usr/sbin/KernelEventAgent"}, {"uid": "501", "pid": 97, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:01.25", "cmd": "/System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow console"}, {"uid": "0", "pid": 98, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.05", "cmd": "/System/Library/CoreServices/logind"}, {"uid": "0", "pid": 100, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:02.67", "cmd": "/usr/libexec/hidd"}, {"uid": "0", "pid": 101, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.15", "cmd": "/usr/libexec/AirPlayXPCHelper"}, {"uid": "0", "pid": 102, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:01.52", "cmd": "/usr/sbin/notifyd"}, {"uid": "241", "pid": 105, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.56", "cmd": "/usr/sbin/distnoted daemon"}, {"uid": "0", "pid": 114, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:03.76", "cmd": "/usr/libexec/amfid"}, {"uid": "0", "pid": 129, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.22", "cmd": "aslmanager"}, {"uid": "0", "pid": 130, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.16", "cmd": "/usr/libexec/diagnosticd"}, {"uid": "0", "pid": 133, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.49", "cmd": "/System/Library/Frameworks/Security.framework/Versions/A/XPCServices/authd.xpc/Contents/MacOS/authd"}, {"uid": "0", "pid": 134, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.35", "cmd": "/usr/libexec/sandboxd"}, {"uid": "0", "pid": 135, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:02.64", "cmd": "/usr/sbin/cfprefsd daemon"}, {"uid": "0", "pid": 152, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.68", "cmd": "/System/Library/CoreServices/coreservicesd"}, {"uid": "0", "pid": 170, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.04", "cmd": "/System/Library/Frameworks/PCSC.framework/Versions/A/XPCServices/com.apple.ctkpcscd.xpc/Contents/MacOS/com.apple.ctkpcscd"}, {"uid": "0", "pid": 171, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.03", "cmd": "/System/Library/Frameworks/CryptoTokenKit.framework/ctkd -s"}, {"uid": "0", "pid": 172, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.10", "cmd": "/usr/libexec/secinitd"}, {"uid": "88", "pid": 179, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:13.99", "cmd": "/System/Library/Frameworks/ApplicationServices.framework/Frameworks/CoreGraphics.framework/Resources/WindowServer -daemon"}, {"uid": "0", "pid": 185, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:04.34", "cmd": "/usr/sbin/ocspd"}, {"uid": "202", "pid": 186, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.51", "cmd": "/usr/sbin/coreaudiod"}, {"uid": "24", "pid": 187, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.57", "cmd": "/usr/libexec/networkd"}, {"uid": "202", "pid": 189, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.11", "cmd": "/System/Library/Frameworks/CoreAudio.framework/Versions/A/XPCServices/com.apple.audio.DriverHelper.xpc/Contents/MacOS/com.apple.audio.DriverHelper"}, {"uid": "0", "pid": 190, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.11", "cmd": "/System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Support/awdd"}, {"uid": "0", "pid": 191, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.06", "cmd": "/usr/libexec/rpcsvchost -launchd netlogon.bundle"}, {"uid": "0", "pid": 192, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.04", "cmd": "/usr/libexec/networkd_privileged"}, {"uid": "0", "pid": 193, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.04", "cmd": "/System/Library/CoreServices/CrashReporterSupportHelper server-init"}, {"uid": "0", "pid": 198, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.09", "cmd": "/System/Library/Frameworks/Security.framework/Versions/A/XPCServices/com.apple.CodeSigningHelper.xpc/Contents/MacOS/com.apple.CodeSigningHelper"}, {"uid": "0", "pid": 199, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.05", "cmd": "/System/Library/PrivateFrameworks/CoreSymbolication.framework/coresymbolicationd"}, {"uid": "0", "pid": 200, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.03", "cmd": "/usr/libexec/smd"}, {"uid": "0", "pid": 201, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.38", "cmd": "/usr/libexec/findmydeviced"}, {"uid": "0", "pid": 202, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:02.27", "cmd": "/usr/libexec/lsd runAsRoot"}, {"uid": "0", "pid": 203, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.07", "cmd": "/System/Library/CoreServices/backupd.bundle/Contents/Resources/backupd-helper -launchd"}, {"uid": "0", "pid": 204, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:02.49", "cmd": "/System/Library/CoreServices/backupd.bundle/Contents/Resources/mtmd"}, {"uid": "0", "pid": 206, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:16.58", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mds_stores"}, {"uid": "242", "pid": 207, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.10", "cmd": "/usr/libexec/nsurlsessiond --privileged"}, {"uid": "0", "pid": 208, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.07", "cmd": "/usr/sbin/ntpd -c /private/etc/ntp-restrict.conf -n -g -p /var/run/ntpd.pid -f /var/db/ntp.drift"}, {"uid": "0", "pid": 209, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.15", "cmd": "/usr/libexec/nehelper"}, {"uid": "0", "pid": 210, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.28", "cmd": "/usr/libexec/corestoraged"}, {"uid": "0", "pid": 212, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.14", "cmd": "/usr/libexec/usbd"}, {"uid": "0", "pid": 213, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.04", "cmd": "/System/Library/CryptoTokenKit/com.apple.ifdreader.slotd/Contents/MacOS/com.apple.ifdreader"}, {"uid": "0", "pid": 214, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.10", "cmd": "/System/Library/Frameworks/CoreMediaIO.framework/Resources/VDC.plugin/Contents/Resources/VDCAssistant"}, {"uid": "0", "pid": 218, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.06", "cmd": "/System/Library/PrivateFrameworks/AmbientDisplay.framework/Versions/A/XPCServices/com.apple.AmbientDisplayAgent.xpc/Contents/MacOS/com.apple.AmbientDisplayAgent"}, {"uid": "0", "pid": 225, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.15", "cmd": "/System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/Support/akd"}, {"uid": "0", "pid": 226, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.05", "cmd": "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/CVMServer"}, {"uid": "212", "pid": 242, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.21", "cmd": "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/CVMCompiler 2"}, {"uid": "0", "pid": 244, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.03", "cmd": "/System/Library/PrivateFrameworks/AccountPolicy.framework/XPCServices/com.apple.AccountPolicyHelper.xpc/Contents/MacOS/com.apple.AccountPolicyHelper"}, {"uid": "0", "pid": 251, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:02.48", "cmd": "/usr/libexec/securityd_service"}, {"uid": "501", "pid": 253, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.79", "cmd": "/usr/libexec/UserEventAgent (Aqua)"}, {"uid": "501", "pid": 255, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.70", "cmd": "/usr/sbin/distnoted agent"}, {"uid": "501", "pid": 257, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.96", "cmd": "/usr/sbin/cfprefsd agent"}, {"uid": "501", "pid": 258, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.97", "cmd": "/usr/libexec/lsd"}, {"uid": "501", "pid": 260, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:03.80", "cmd": "/Applications/Utilities/Terminal.app/Contents/MacOS/Terminal -psn_0_24582"}, {"uid": "501", "pid": 261, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.24", "cmd": "/System/Library/CoreServices/sharedfilelistd"}, {"uid": "0", "pid": 262, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.02", "cmd": "/usr/libexec/watchdogd"}, {"uid": "0", "pid": 264, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.41", "cmd": "/usr/libexec/taskgated -s"}, {"uid": "501", "pid": 266, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:05.58", "cmd": "/System/Library/CoreServices/Dock.app/Contents/MacOS/Dock"}, {"uid": "501", "pid": 267, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.97", "cmd": "/System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer"}, {"uid": "501", "pid": 268, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:11.44", "cmd": "/System/Library/CoreServices/Finder.app/Contents/MacOS/Finder"}, {"uid": "501", "pid": 270, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.02", "cmd": "/usr/sbin/pboard"}, {"uid": "0", "pid": 272, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.13", "cmd": "/usr/sbin/systemsoundserverd"}, {"uid": "0", "pid": 273, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.04", "cmd": "/System/Library/PrivateFrameworks/TCC.framework/Resources/tccd system"}, {"uid": "501", "pid": 275, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:03.05", "cmd": "/System/Library/CoreServices/Spotlight.app/Contents/MacOS/Spotlight"}, {"uid": "501", "pid": 278, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.87", "cmd": "/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Support/fontd"}, {"uid": "501", "pid": 279, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:01.13", "cmd": "/usr/sbin/usernoted"}, {"uid": "501", "pid": 280, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.17", "cmd": "/usr/libexec/nsurlsessiond"}, {"uid": "501", "pid": 283, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:15.72", "cmd": "/System/Library/PrivateFrameworks/CalendarAgent.framework/Executables/CalendarAgent"}, {"uid": "501", "pid": 285, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.10", "cmd": "/System/Library/CoreServices/mapspushd"}, {"uid": "501", "pid": 286, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.99", "cmd": "/System/Library/PrivateFrameworks/GameCenterFoundation.framework/Versions/A/gamed"}, {"uid": "501", "pid": 287, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:01.98", "cmd": "/System/Library/PrivateFrameworks/IDS.framework/identityservicesd.app/Contents/MacOS/identityservicesd"}, {"uid": "501", "pid": 288, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.45", "cmd": "/usr/libexec/secd"}, {"uid": "501", "pid": 289, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.54", "cmd": "/usr/libexec/sharingd"}, {"uid": "501", "pid": 290, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:02.20", "cmd": "/usr/libexec/pkd"}, {"uid": "501", "pid": 291, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.69", "cmd": "/System/Library/PrivateFrameworks/TCC.framework/Resources/tccd"}, {"uid": "501", "pid": 292, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.12", "cmd": "/System/Library/CoreServices/iconservicesagent"}, {"uid": "501", "pid": 293, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:01.98", "cmd": "/System/Library/Frameworks/AddressBook.framework/Versions/A/XPCServices/com.apple.AddressBook.ContactsAccountsService.xpc/Contents/MacOS/com.apple.AddressBook.ContactsAccountsService"}, {"uid": "501", "pid": 294, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.46", "cmd": "/usr/libexec/secinitd"}, {"uid": "501", "pid": 295, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:01.00", "cmd": "/System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/XPCServices/com.apple.iCloudHelper.xpc/Contents/MacOS/com.apple.iCloudHelper"}, {"uid": "501", "pid": 296, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:09.17", "cmd": "/System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd"}, {"uid": "0", "pid": 297, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.05", "cmd": "/usr/sbin/filecoordinationd"}, {"uid": "501", "pid": 298, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.11", "cmd": "/System/Library/PrivateFrameworks/CoreWLANKit.framework/Versions/A/XPCServices/WiFiProxy.xpc/Contents/MacOS/WiFiProxy"}, {"uid": "0", "pid": 299, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.08", "cmd": "/System/Library/CoreServices/sharedfilelistd --enable-legacy-services"}, {"uid": "501", "pid": 300, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.30", "cmd": "/usr/libexec/SafariCloudHistoryPushAgent"}, {"uid": "501", "pid": 301, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:01.17", "cmd": "/usr/libexec/fmfd"}, {"uid": "501", "pid": 302, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.11", "cmd": "/System/Library/PrivateFrameworks/CallHistory.framework/Support/CallHistorySyncHelper"}, {"uid": "501", "pid": 304, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.07", "cmd": "/System/Library/PrivateFrameworks/AskPermission.framework/Versions/A/Resources/askpermissiond"}, {"uid": "501", "pid": 305, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.06", "cmd": "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/maspushagent"}, {"uid": "501", "pid": 306, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:01.76", "cmd": "/System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/Support/akd"}, {"uid": "501", "pid": 307, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:04.66", "cmd": "/System/Library/PrivateFrameworks/CloudDocsDaemon.framework/Versions/A/Support/bird"}, {"uid": "501", "pid": 308, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:02.90", "cmd": "/usr/libexec/nsurlstoraged"}, {"uid": "501", "pid": 310, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.34", "cmd": "/System/Library/PrivateFrameworks/CloudKitDaemon.framework/Support/cloudd"}, {"uid": "501", "pid": 311, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:07.69", "cmd": "/System/Library/PrivateFrameworks/CalendarAgent.framework/Versions/A/XPCServices/CalNCService.xpc/Contents/MacOS/CalNCService"}, {"uid": "501", "pid": 312, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:01.21", "cmd": "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeassetd"}, {"uid": "247", "pid": 313, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.07", "cmd": "/usr/libexec/gamecontrollerd"}, {"uid": "501", "pid": 315, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:06.80", "cmd": "/System/Library/PrivateFrameworks/TelephonyUtilities.framework/callservicesd"}, {"uid": "501", "pid": 316, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:16.80", "cmd": "/System/Library/PrivateFrameworks/ParsecUI.framework/Versions/A/Support/SpotlightNetHelper.app/Contents/MacOS/SpotlightNetHelper"}, {"uid": "501", "pid": 321, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.48", "cmd": "/System/Library/CoreServices/cloudphotosd.app/Contents/MacOS/cloudphotosd"}, {"uid": "501", "pid": 322, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:02.67", "cmd": "/System/Library/PrivateFrameworks/CoreSuggestions.framework/Versions/A/Support/suggestd"}, {"uid": "0", "pid": 323, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.41", "cmd": "/System/Library/PrivateFrameworks/CacheDelete.framework/deleted"}, {"uid": "0", "pid": 324, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.10", "cmd": "/System/Library/CoreServices/backupd.bundle/Contents/Resources/TMCacheDelete"}, {"uid": "0", "pid": 325, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:13.82", "cmd": "/System/Library/PrivateFrameworks/PackageKit.framework/Resources/installd"}, {"uid": "0", "pid": 327, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.02", "cmd": "/System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/XPCServices/com.apple.PerformanceAnalysis.animationperfd.xpc/Contents/MacOS/com.apple.PerformanceAnalysis.animationperfd"}, {"uid": "501", "pid": 328, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.17", "cmd": "/System/Library/Frameworks/QuickLook.framework/Resources/quicklookd.app/Contents/MacOS/quicklookd"}, {"uid": "501", "pid": 331, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.04", "cmd": "/System/Library/Frameworks/Security.framework/Versions/A/Resources/CloudKeychainProxy.bundle/Contents/MacOS/CloudKeychainProxy"}, {"uid": "501", "pid": 332, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:02.17", "cmd": "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeaccountd"}, {"uid": "501", "pid": 333, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.03", "cmd": "/System/Library/PrivateFrameworks/CommunicationsFilter.framework/CMFSyncAgent.app/Contents/MacOS/CMFSyncAgent"}, {"uid": "501", "pid": 334, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:01.41", "cmd": "/System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/XPCServices/com.apple.geod.xpc/Contents/MacOS/com.apple.geod"}, {"uid": "501", "pid": 335, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.32", "cmd": "/System/Library/CoreServices/Dock.app/Contents/XPCServices/com.apple.dock.extra.xpc/Contents/MacOS/com.apple.dock.extra"}, {"uid": "501", "pid": 336, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:06.10", "cmd": "/System/Library/PrivateFrameworks/MessagesKit.framework/Resources/soagent.app/Contents/MacOS/soagent"}, {"uid": "501", "pid": 337, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.46", "cmd": "/System/Library/PrivateFrameworks/IMCore.framework/imagent.app/Contents/MacOS/imagent"}, {"uid": "501", "pid": 338, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.52", "cmd": "/System/Library/PrivateFrameworks/IMDPersistence.framework/XPCServices/IMDPersistenceAgent.xpc/Contents/MacOS/IMDPersistenceAgent"}, {"uid": "501", "pid": 339, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.09", "cmd": "/System/Library/PrivateFrameworks/CallHistory.framework/Support/CallHistoryPluginHelper"}, {"uid": "501", "pid": 340, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.27", "cmd": "/System/Library/PrivateFrameworks/CloudDocsDaemon.framework/XPCServices/ContainerMetadataExtractor.xpc/Contents/MacOS/ContainerMetadataExtractor"}, {"uid": "501", "pid": 341, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.08", "cmd": "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/XPCServices/com.apple.CommerceKit.TransactionService.xpc/Contents/MacOS/com.apple.CommerceKit.TransactionService"}, {"uid": "243", "pid": 342, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.05", "cmd": "/usr/libexec/nsurlstoraged"}, {"uid": "501", "pid": 343, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.11", "cmd": "/System/Library/CoreServices/CoreServicesUIAgent.app/Contents/MacOS/CoreServicesUIAgent"}, {"uid": "24", "pid": 344, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.56", "cmd": "/usr/libexec/symptomsd"}, {"uid": "501", "pid": 346, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.04", "cmd": "/System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent --launchd"}, {"uid": "501", "pid": 349, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.04", "cmd": "/System/Library/PrivateFrameworks/HelpData.framework/Versions/A/Resources/helpd"}, {"uid": "222", "pid": 353, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.08", "cmd": "/usr/sbin/netbiosd"}, {"uid": "501", "pid": 354, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.54", "cmd": "/System/Library/PrivateFrameworks/IMFoundation.framework/XPCServices/IMRemoteURLConnectionAgent.xpc/Contents/MacOS/IMRemoteURLConnectionAgent"}, {"uid": "501", "pid": 357, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.05", "cmd": "/System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCService"}, {"uid": "501", "pid": 359, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.16", "cmd": "/System/Library/PrivateFrameworks/CloudPhotoServices.framework/Versions/A/Frameworks/CloudPhotosConfigurationXPC.framework/Versions/A/XPCServices/com.apple.CloudPhotosConfiguration.xpc/Contents/MacOS/com.apple.CloudPhotosConfiguration"}, {"uid": "0", "pid": 367, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.03", "cmd": "/System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper"}, {"uid": "501", "pid": 368, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.15", "cmd": "/System/Library/CoreServices/NetAuthAgent.app/Contents/MacOS/NetAuthSysAgent"}, {"uid": "0", "pid": 386, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.02", "cmd": "/System/Library/Filesystems/AppleShare/check_afp.app/Contents/MacOS/check_afp"}, {"uid": "501", "pid": 389, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "1:13.64", "cmd": "/Library/Application Support/Microsoft/MAU2.0/Microsoft AutoUpdate.app/Contents/MacOS/Microsoft Update Assistant.app/Contents/MacOS/Microsoft Update Assistant -checkForUpdates"}, {"uid": "501", "pid": 390, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.11", "cmd": "/System/Library/CoreServices/FolderActionsDispatcher.app/Contents/MacOS/FolderActionsDispatcher"}, {"uid": "501", "pid": 392, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.03", "cmd": "/usr/libexec/spindump_agent"}, {"uid": "501", "pid": 394, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.05", "cmd": "/System/Library/CoreServices/SocialPushAgent.app/Contents/MacOS/SocialPushAgent"}, {"uid": "501", "pid": 397, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.19", "cmd": "/System/Library/CoreServices/Keychain Circle Notification.app/Contents/MacOS/Keychain Circle Notification"}, {"uid": "501", "pid": 400, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:01.45", "cmd": "/System/Library/CoreServices/NotificationCenter.app/Contents/MacOS/NotificationCenter"}, {"uid": "501", "pid": 402, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.29", "cmd": "/System/Library/Image Capture/Support/icdd"}, {"uid": "501", "pid": 404, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.57", "cmd": "/System/Library/CoreServices/AppleIDAuthAgent"}, {"uid": "501", "pid": 408, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.11", "cmd": "/System/Library/CoreServices/AirPlayUIAgent.app/Contents/MacOS/AirPlayUIAgent --launchd"}, {"uid": "501", "pid": 411, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.89", "cmd": "/System/Library/CoreServices/WiFiAgent.app/Contents/MacOS/WiFiAgent"}, {"uid": "501", "pid": 412, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.13", "cmd": "/System/Library/CoreServices/diagnostics_agent"}, {"uid": "501", "pid": 417, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.11", "cmd": "/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app/Contents/MacOS/iTunesHelper"}, {"uid": "501", "pid": 419, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:10.30", "cmd": "/Applications/Backup and Sync.app/Contents/MacOS/Backup and Sync"}, {"uid": "501", "pid": 426, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.04", "cmd": "/System/Library/CoreServices/NotificationCenter.app/Contents/XPCServices/com.apple.notificationcenterui.WeatherSummary.xpc/Contents/MacOS/com.apple.notificationcenterui.WeatherSummary"}, {"uid": "501", "pid": 427, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.12", "cmd": "/System/Library/PrivateFrameworks/AssistantServices.framework/assistantd"}, {"uid": "501", "pid": 428, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.52", "cmd": "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeinappd"}, {"uid": "501", "pid": 429, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.07", "cmd": "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/XPCServices/com.apple.CommerceKit.TransactionService.xpc/Contents/MacOS/com.apple.CommerceKit.TransactionService"}, {"uid": "501", "pid": 432, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.12", "cmd": "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storedownloadd"}, {"uid": "501", "pid": 434, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:01.75", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared"}, {"uid": "501", "pid": 435, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.45", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared"}, {"uid": "501", "pid": 436, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.30", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared"}, {"uid": "501", "pid": 437, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.37", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared"}, {"uid": "501", "pid": 438, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.39", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared"}, {"uid": "0", "pid": 439, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.04", "cmd": "/usr/sbin/spindump"}, {"uid": "0", "pid": 440, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.06", "cmd": "/System/Library/CoreServices/SubmitDiagInfo server-init"}, {"uid": "200", "pid": 445, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:03.71", "cmd": "/System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdated"}, {"uid": "0", "pid": 446, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.03", "cmd": "/System/Library/PrivateFrameworks/SoftwareUpdate.framework/Resources/suhelperd"}, {"uid": "501", "pid": 447, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.06", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdflagwriter"}, {"uid": "0", "pid": 448, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.04", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdflagwriter"}, {"uid": "0", "pid": 459, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:09.27", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker-scan -c MDSSyncScanWorker -m com.apple.metadata.mds.scan"}, {"uid": "501", "pid": 461, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.12", "cmd": "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storelegacy"}, {"uid": "501", "pid": 462, "ppid": 1, "c": 0, "stime": "10:06AM", "tty": null, "time": "0:00.16", "cmd": "/System/Library/PrivateFrameworks/PhotoLibraryPrivate.framework/Versions/A/Support/photolibraryd"}, {"uid": "501", "pid": 463, "ppid": 1, "c": 0, "stime": "10:07AM", "tty": null, "time": "0:00.15", "cmd": "/System/Library/PrivateFrameworks/CommerceKit.framework/Resources/LaterAgent.app/Contents/MacOS/LaterAgent"}, {"uid": "501", "pid": 465, "ppid": 1, "c": 0, "stime": "10:07AM", "tty": null, "time": "0:00.23", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker-sizing -c MDSSizingWorker -m com.apple.mdworker.sizing"}, {"uid": "501", "pid": 477, "ppid": 1, "c": 0, "stime": "10:07AM", "tty": null, "time": "0:00.36", "cmd": "/System/Library/CoreServices/System Events.app/Contents/MacOS/System Events"}, {"uid": "501", "pid": 480, "ppid": 1, "c": 0, "stime": "10:07AM", "tty": null, "time": "0:00.09", "cmd": "/usr/libexec/swcd"}, {"uid": "501", "pid": 484, "ppid": 1, "c": 0, "stime": "10:07AM", "tty": null, "time": "0:00.05", "cmd": "/System/Library/CoreServices/pbs"}, {"uid": "501", "pid": 487, "ppid": 1, "c": 0, "stime": "10:07AM", "tty": null, "time": "0:00.39", "cmd": "/Applications/Backup and Sync.app/Contents/PlugIns/FinderSyncAPIExtension.appex/Contents/MacOS/FinderSyncAPIExtension"}, {"uid": "501", "pid": 493, "ppid": 1, "c": 0, "stime": "10:07AM", "tty": null, "time": "0:00.49", "cmd": "/System/Library/Image Capture/Support/Image Capture Extension.app/Contents/MacOS/Image Capture Extension"}, {"uid": "501", "pid": 495, "ppid": 1, "c": 0, "stime": "10:07AM", "tty": null, "time": "0:00.05", "cmd": "/System/Library/Frameworks/ApplicationServices.framework/Frameworks/PrintCore.framework/Versions/A/printtool agent"}, {"uid": "89", "pid": 497, "ppid": 1, "c": 0, "stime": "10:07AM", "tty": null, "time": "0:00.09", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared"}, {"uid": "89", "pid": 498, "ppid": 1, "c": 0, "stime": "10:07AM", "tty": null, "time": "0:01.37", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared"}, {"uid": "89", "pid": 499, "ppid": 1, "c": 0, "stime": "10:07AM", "tty": null, "time": "0:01.04", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared"}, {"uid": "89", "pid": 513, "ppid": 1, "c": 0, "stime": "10:09AM", "tty": null, "time": "0:00.02", "cmd": "/usr/sbin/distnoted agent"}, {"uid": "89", "pid": 514, "ppid": 1, "c": 0, "stime": "10:09AM", "tty": null, "time": "0:02.83", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker-sizing -c MDSSizingWorker -m com.apple.mdworker.sizing"}, {"uid": "89", "pid": 518, "ppid": 1, "c": 0, "stime": "10:09AM", "tty": null, "time": "0:01.14", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker-bundle -c MDSImporterBundleFinder -m com.apple.mdworker.bundles"}, {"uid": "501", "pid": 519, "ppid": 1, "c": 0, "stime": "10:09AM", "tty": null, "time": "0:01.24", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker-bundle -c MDSImporterBundleFinder -m com.apple.mdworker.bundles"}, {"uid": "0", "pid": 521, "ppid": 1, "c": 0, "stime": "10:09AM", "tty": null, "time": "0:00.03", "cmd": "/usr/libexec/systemstatsd"}, {"uid": "0", "pid": 540, "ppid": 1, "c": 0, "stime": "10:10AM", "tty": null, "time": "0:00.05", "cmd": "/System/Library/CoreServices/backupd.bundle/Contents/Resources/backupd"}, {"uid": "0", "pid": 554, "ppid": 1, "c": 0, "stime": "10:11AM", "tty": null, "time": "0:00.16", "cmd": "/Library/PrivilegedHelperTools/com.microsoft.autoupdate.helper"}, {"uid": "0", "pid": 556, "ppid": 1, "c": 0, "stime": "10:11AM", "tty": null, "time": "0:00.03", "cmd": "/usr/libexec/diskmanagementd"}, {"uid": "501", "pid": 568, "ppid": 389, "c": 0, "stime": "10:11AM", "tty": null, "time": "0:00.67", "cmd": "/usr/bin/codesign --verify --deep /Applications/Microsoft PowerPoint.app"}, {"uid": "0", "pid": 360, "ppid": 260, "c": 0, "stime": "10:06AM", "tty": "ttys000", "time": "0:00.05", "cmd": "login -pfl kelly /bin/bash -c exec -la bash /bin/bash"}, {"uid": "501", "pid": 361, "ppid": 360, "c": 0, "stime": "10:06AM", "tty": "ttys000", "time": "0:00.06", "cmd": "-bash"}, {"uid": "0", "pid": 569, "ppid": 361, "c": 0, "stime": "10:11AM", "tty": "ttys000", "time": "0:00.01", "cmd": "ps -ef"}, {"uid": "0", "pid": 380, "ppid": 260, "c": 0, "stime": "10:06AM", "tty": "ttys001", "time": "0:00.03", "cmd": "login -pfl kelly /bin/bash -c exec -la bash /bin/bash"}, {"uid": "501", "pid": 381, "ppid": 380, "c": 0, "stime": "10:06AM", "tty": "ttys001", "time": "0:00.02", "cmd": "-bash"}] jc-1.17.3/tests/fixtures/osx-10.11.6/ps-ef.out000077500000000000000000000625011415226333200204000ustar00rootroot00000000000000 UID PID PPID C STIME TTY TIME CMD 0 1 0 0 10:06AM ?? 0:06.30 /sbin/launchd 0 44 1 0 10:06AM ?? 0:01.92 /usr/sbin/syslogd 0 45 1 0 10:06AM ?? 0:01.39 /usr/libexec/UserEventAgent (System) 0 48 1 0 10:06AM ?? 0:03.88 /usr/libexec/kextd 0 49 1 0 10:06AM ?? 0:01.74 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/Support/fseventsd 55 53 1 0 10:06AM ?? 0:00.19 /System/Library/CoreServices/appleeventsd --server 0 54 1 0 10:06AM ?? 0:01.19 /usr/libexec/configd 0 55 1 0 10:06AM ?? 0:00.54 /System/Library/CoreServices/powerd.bundle/powerd 0 61 1 0 10:06AM ?? 0:02.00 /usr/libexec/airportd 0 63 1 0 10:06AM ?? 0:00.14 /usr/libexec/warmd 0 64 1 0 10:06AM ?? 0:24.76 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Support/mds 0 68 1 0 10:06AM ?? 0:00.04 /System/Library/CoreServices/iconservicesagent 240 69 1 0 10:06AM ?? 0:00.05 /System/Library/CoreServices/iconservicesd 0 70 1 0 10:06AM ?? 0:00.39 /usr/libexec/diskarbitrationd 0 72 1 0 10:06AM ?? 0:01.49 /usr/libexec/coreduetd 0 73 1 0 10:06AM ?? 0:00.06 /usr/libexec/wdhelper 0 75 1 0 10:06AM ?? 0:00.70 /System/Library/CoreServices/backupd.bundle/Contents/Resources/mtmfs --tcp --resvport --listen localhost --oneshot --noportmap --nobrowse 0 76 1 0 10:06AM ?? 0:04.25 /usr/libexec/opendirectoryd 0 77 1 0 10:06AM ?? 0:00.06 /usr/sbin/wirelessproxd 0 79 1 0 10:06AM ?? 0:01.15 /System/Library/PrivateFrameworks/ApplePushService.framework/apsd 0 80 1 0 10:06AM ?? 0:01.31 /System/Library/CoreServices/launchservicesd 213 81 1 0 10:06AM ?? 0:00.17 /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/Resources/usbmuxd -launchd 0 82 1 0 10:06AM ?? 0:03.23 /usr/sbin/securityd -i 205 84 1 0 10:06AM ?? 0:01.80 /usr/libexec/locationd 0 87 1 0 10:06AM ?? 0:00.38 /usr/sbin/blued 0 88 1 0 10:06AM ?? 0:00.03 autofsd 65 93 1 0 10:06AM ?? 0:00.59 /usr/sbin/mDNSResponder 0 95 1 0 10:06AM ?? 0:00.15 /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Support/revisiond 0 96 1 0 10:06AM ?? 0:00.02 /usr/sbin/KernelEventAgent 501 97 1 0 10:06AM ?? 0:01.25 /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow console 0 98 1 0 10:06AM ?? 0:00.05 /System/Library/CoreServices/logind 0 100 1 0 10:06AM ?? 0:02.67 /usr/libexec/hidd 0 101 1 0 10:06AM ?? 0:00.15 /usr/libexec/AirPlayXPCHelper 0 102 1 0 10:06AM ?? 0:01.52 /usr/sbin/notifyd 241 105 1 0 10:06AM ?? 0:00.56 /usr/sbin/distnoted daemon 0 114 1 0 10:06AM ?? 0:03.76 /usr/libexec/amfid 0 129 1 0 10:06AM ?? 0:00.22 aslmanager 0 130 1 0 10:06AM ?? 0:00.16 /usr/libexec/diagnosticd 0 133 1 0 10:06AM ?? 0:00.49 /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/authd.xpc/Contents/MacOS/authd 0 134 1 0 10:06AM ?? 0:00.35 /usr/libexec/sandboxd 0 135 1 0 10:06AM ?? 0:02.64 /usr/sbin/cfprefsd daemon 0 152 1 0 10:06AM ?? 0:00.68 /System/Library/CoreServices/coreservicesd 0 170 1 0 10:06AM ?? 0:00.04 /System/Library/Frameworks/PCSC.framework/Versions/A/XPCServices/com.apple.ctkpcscd.xpc/Contents/MacOS/com.apple.ctkpcscd 0 171 1 0 10:06AM ?? 0:00.03 /System/Library/Frameworks/CryptoTokenKit.framework/ctkd -s 0 172 1 0 10:06AM ?? 0:00.10 /usr/libexec/secinitd 88 179 1 0 10:06AM ?? 0:13.99 /System/Library/Frameworks/ApplicationServices.framework/Frameworks/CoreGraphics.framework/Resources/WindowServer -daemon 0 185 1 0 10:06AM ?? 0:04.34 /usr/sbin/ocspd 202 186 1 0 10:06AM ?? 0:00.51 /usr/sbin/coreaudiod 24 187 1 0 10:06AM ?? 0:00.57 /usr/libexec/networkd 202 189 1 0 10:06AM ?? 0:00.11 /System/Library/Frameworks/CoreAudio.framework/Versions/A/XPCServices/com.apple.audio.DriverHelper.xpc/Contents/MacOS/com.apple.audio.DriverHelper 0 190 1 0 10:06AM ?? 0:00.11 /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Support/awdd 0 191 1 0 10:06AM ?? 0:00.06 /usr/libexec/rpcsvchost -launchd netlogon.bundle 0 192 1 0 10:06AM ?? 0:00.04 /usr/libexec/networkd_privileged 0 193 1 0 10:06AM ?? 0:00.04 /System/Library/CoreServices/CrashReporterSupportHelper server-init 0 198 1 0 10:06AM ?? 0:00.09 /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/com.apple.CodeSigningHelper.xpc/Contents/MacOS/com.apple.CodeSigningHelper 0 199 1 0 10:06AM ?? 0:00.05 /System/Library/PrivateFrameworks/CoreSymbolication.framework/coresymbolicationd 0 200 1 0 10:06AM ?? 0:00.03 /usr/libexec/smd 0 201 1 0 10:06AM ?? 0:00.38 /usr/libexec/findmydeviced 0 202 1 0 10:06AM ?? 0:02.27 /usr/libexec/lsd runAsRoot 0 203 1 0 10:06AM ?? 0:00.07 /System/Library/CoreServices/backupd.bundle/Contents/Resources/backupd-helper -launchd 0 204 1 0 10:06AM ?? 0:02.49 /System/Library/CoreServices/backupd.bundle/Contents/Resources/mtmd 0 206 1 0 10:06AM ?? 0:16.58 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mds_stores 242 207 1 0 10:06AM ?? 0:00.10 /usr/libexec/nsurlsessiond --privileged 0 208 1 0 10:06AM ?? 0:00.07 /usr/sbin/ntpd -c /private/etc/ntp-restrict.conf -n -g -p /var/run/ntpd.pid -f /var/db/ntp.drift 0 209 1 0 10:06AM ?? 0:00.15 /usr/libexec/nehelper 0 210 1 0 10:06AM ?? 0:00.28 /usr/libexec/corestoraged 0 212 1 0 10:06AM ?? 0:00.14 /usr/libexec/usbd 0 213 1 0 10:06AM ?? 0:00.04 /System/Library/CryptoTokenKit/com.apple.ifdreader.slotd/Contents/MacOS/com.apple.ifdreader 0 214 1 0 10:06AM ?? 0:00.10 /System/Library/Frameworks/CoreMediaIO.framework/Resources/VDC.plugin/Contents/Resources/VDCAssistant 0 218 1 0 10:06AM ?? 0:00.06 /System/Library/PrivateFrameworks/AmbientDisplay.framework/Versions/A/XPCServices/com.apple.AmbientDisplayAgent.xpc/Contents/MacOS/com.apple.AmbientDisplayAgent 0 225 1 0 10:06AM ?? 0:00.15 /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/Support/akd 0 226 1 0 10:06AM ?? 0:00.05 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/CVMServer 212 242 1 0 10:06AM ?? 0:00.21 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/CVMCompiler 2 0 244 1 0 10:06AM ?? 0:00.03 /System/Library/PrivateFrameworks/AccountPolicy.framework/XPCServices/com.apple.AccountPolicyHelper.xpc/Contents/MacOS/com.apple.AccountPolicyHelper 0 251 1 0 10:06AM ?? 0:02.48 /usr/libexec/securityd_service 501 253 1 0 10:06AM ?? 0:00.79 /usr/libexec/UserEventAgent (Aqua) 501 255 1 0 10:06AM ?? 0:00.70 /usr/sbin/distnoted agent 501 257 1 0 10:06AM ?? 0:00.96 /usr/sbin/cfprefsd agent 501 258 1 0 10:06AM ?? 0:00.97 /usr/libexec/lsd 501 260 1 0 10:06AM ?? 0:03.80 /Applications/Utilities/Terminal.app/Contents/MacOS/Terminal -psn_0_24582 501 261 1 0 10:06AM ?? 0:00.24 /System/Library/CoreServices/sharedfilelistd 0 262 1 0 10:06AM ?? 0:00.02 /usr/libexec/watchdogd 0 264 1 0 10:06AM ?? 0:00.41 /usr/libexec/taskgated -s 501 266 1 0 10:06AM ?? 0:05.58 /System/Library/CoreServices/Dock.app/Contents/MacOS/Dock 501 267 1 0 10:06AM ?? 0:00.97 /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer 501 268 1 0 10:06AM ?? 0:11.44 /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder 501 270 1 0 10:06AM ?? 0:00.02 /usr/sbin/pboard 0 272 1 0 10:06AM ?? 0:00.13 /usr/sbin/systemsoundserverd 0 273 1 0 10:06AM ?? 0:00.04 /System/Library/PrivateFrameworks/TCC.framework/Resources/tccd system 501 275 1 0 10:06AM ?? 0:03.05 /System/Library/CoreServices/Spotlight.app/Contents/MacOS/Spotlight 501 278 1 0 10:06AM ?? 0:00.87 /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Support/fontd 501 279 1 0 10:06AM ?? 0:01.13 /usr/sbin/usernoted 501 280 1 0 10:06AM ?? 0:00.17 /usr/libexec/nsurlsessiond 501 283 1 0 10:06AM ?? 0:15.72 /System/Library/PrivateFrameworks/CalendarAgent.framework/Executables/CalendarAgent 501 285 1 0 10:06AM ?? 0:00.10 /System/Library/CoreServices/mapspushd 501 286 1 0 10:06AM ?? 0:00.99 /System/Library/PrivateFrameworks/GameCenterFoundation.framework/Versions/A/gamed 501 287 1 0 10:06AM ?? 0:01.98 /System/Library/PrivateFrameworks/IDS.framework/identityservicesd.app/Contents/MacOS/identityservicesd 501 288 1 0 10:06AM ?? 0:00.45 /usr/libexec/secd 501 289 1 0 10:06AM ?? 0:00.54 /usr/libexec/sharingd 501 290 1 0 10:06AM ?? 0:02.20 /usr/libexec/pkd 501 291 1 0 10:06AM ?? 0:00.69 /System/Library/PrivateFrameworks/TCC.framework/Resources/tccd 501 292 1 0 10:06AM ?? 0:00.12 /System/Library/CoreServices/iconservicesagent 501 293 1 0 10:06AM ?? 0:01.98 /System/Library/Frameworks/AddressBook.framework/Versions/A/XPCServices/com.apple.AddressBook.ContactsAccountsService.xpc/Contents/MacOS/com.apple.AddressBook.ContactsAccountsService 501 294 1 0 10:06AM ?? 0:00.46 /usr/libexec/secinitd 501 295 1 0 10:06AM ?? 0:01.00 /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/XPCServices/com.apple.iCloudHelper.xpc/Contents/MacOS/com.apple.iCloudHelper 501 296 1 0 10:06AM ?? 0:09.17 /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd 0 297 1 0 10:06AM ?? 0:00.05 /usr/sbin/filecoordinationd 501 298 1 0 10:06AM ?? 0:00.11 /System/Library/PrivateFrameworks/CoreWLANKit.framework/Versions/A/XPCServices/WiFiProxy.xpc/Contents/MacOS/WiFiProxy 0 299 1 0 10:06AM ?? 0:00.08 /System/Library/CoreServices/sharedfilelistd --enable-legacy-services 501 300 1 0 10:06AM ?? 0:00.30 /usr/libexec/SafariCloudHistoryPushAgent 501 301 1 0 10:06AM ?? 0:01.17 /usr/libexec/fmfd 501 302 1 0 10:06AM ?? 0:00.11 /System/Library/PrivateFrameworks/CallHistory.framework/Support/CallHistorySyncHelper 501 304 1 0 10:06AM ?? 0:00.07 /System/Library/PrivateFrameworks/AskPermission.framework/Versions/A/Resources/askpermissiond 501 305 1 0 10:06AM ?? 0:00.06 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/maspushagent 501 306 1 0 10:06AM ?? 0:01.76 /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/Support/akd 501 307 1 0 10:06AM ?? 0:04.66 /System/Library/PrivateFrameworks/CloudDocsDaemon.framework/Versions/A/Support/bird 501 308 1 0 10:06AM ?? 0:02.90 /usr/libexec/nsurlstoraged 501 310 1 0 10:06AM ?? 0:00.34 /System/Library/PrivateFrameworks/CloudKitDaemon.framework/Support/cloudd 501 311 1 0 10:06AM ?? 0:07.69 /System/Library/PrivateFrameworks/CalendarAgent.framework/Versions/A/XPCServices/CalNCService.xpc/Contents/MacOS/CalNCService 501 312 1 0 10:06AM ?? 0:01.21 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeassetd 247 313 1 0 10:06AM ?? 0:00.07 /usr/libexec/gamecontrollerd 501 315 1 0 10:06AM ?? 0:06.80 /System/Library/PrivateFrameworks/TelephonyUtilities.framework/callservicesd 501 316 1 0 10:06AM ?? 0:16.80 /System/Library/PrivateFrameworks/ParsecUI.framework/Versions/A/Support/SpotlightNetHelper.app/Contents/MacOS/SpotlightNetHelper 501 321 1 0 10:06AM ?? 0:00.48 /System/Library/CoreServices/cloudphotosd.app/Contents/MacOS/cloudphotosd 501 322 1 0 10:06AM ?? 0:02.67 /System/Library/PrivateFrameworks/CoreSuggestions.framework/Versions/A/Support/suggestd 0 323 1 0 10:06AM ?? 0:00.41 /System/Library/PrivateFrameworks/CacheDelete.framework/deleted 0 324 1 0 10:06AM ?? 0:00.10 /System/Library/CoreServices/backupd.bundle/Contents/Resources/TMCacheDelete 0 325 1 0 10:06AM ?? 0:13.82 /System/Library/PrivateFrameworks/PackageKit.framework/Resources/installd 0 327 1 0 10:06AM ?? 0:00.02 /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/XPCServices/com.apple.PerformanceAnalysis.animationperfd.xpc/Contents/MacOS/com.apple.PerformanceAnalysis.animationperfd 501 328 1 0 10:06AM ?? 0:00.17 /System/Library/Frameworks/QuickLook.framework/Resources/quicklookd.app/Contents/MacOS/quicklookd 501 331 1 0 10:06AM ?? 0:00.04 /System/Library/Frameworks/Security.framework/Versions/A/Resources/CloudKeychainProxy.bundle/Contents/MacOS/CloudKeychainProxy 501 332 1 0 10:06AM ?? 0:02.17 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeaccountd 501 333 1 0 10:06AM ?? 0:00.03 /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CMFSyncAgent.app/Contents/MacOS/CMFSyncAgent 501 334 1 0 10:06AM ?? 0:01.41 /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/XPCServices/com.apple.geod.xpc/Contents/MacOS/com.apple.geod 501 335 1 0 10:06AM ?? 0:00.32 /System/Library/CoreServices/Dock.app/Contents/XPCServices/com.apple.dock.extra.xpc/Contents/MacOS/com.apple.dock.extra 501 336 1 0 10:06AM ?? 0:06.10 /System/Library/PrivateFrameworks/MessagesKit.framework/Resources/soagent.app/Contents/MacOS/soagent 501 337 1 0 10:06AM ?? 0:00.46 /System/Library/PrivateFrameworks/IMCore.framework/imagent.app/Contents/MacOS/imagent 501 338 1 0 10:06AM ?? 0:00.52 /System/Library/PrivateFrameworks/IMDPersistence.framework/XPCServices/IMDPersistenceAgent.xpc/Contents/MacOS/IMDPersistenceAgent 501 339 1 0 10:06AM ?? 0:00.09 /System/Library/PrivateFrameworks/CallHistory.framework/Support/CallHistoryPluginHelper 501 340 1 0 10:06AM ?? 0:00.27 /System/Library/PrivateFrameworks/CloudDocsDaemon.framework/XPCServices/ContainerMetadataExtractor.xpc/Contents/MacOS/ContainerMetadataExtractor 501 341 1 0 10:06AM ?? 0:00.08 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/XPCServices/com.apple.CommerceKit.TransactionService.xpc/Contents/MacOS/com.apple.CommerceKit.TransactionService 243 342 1 0 10:06AM ?? 0:00.05 /usr/libexec/nsurlstoraged 501 343 1 0 10:06AM ?? 0:00.11 /System/Library/CoreServices/CoreServicesUIAgent.app/Contents/MacOS/CoreServicesUIAgent 24 344 1 0 10:06AM ?? 0:00.56 /usr/libexec/symptomsd 501 346 1 0 10:06AM ?? 0:00.04 /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent --launchd 501 349 1 0 10:06AM ?? 0:00.04 /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/Resources/helpd 222 353 1 0 10:06AM ?? 0:00.08 /usr/sbin/netbiosd 501 354 1 0 10:06AM ?? 0:00.54 /System/Library/PrivateFrameworks/IMFoundation.framework/XPCServices/IMRemoteURLConnectionAgent.xpc/Contents/MacOS/IMRemoteURLConnectionAgent 501 357 1 0 10:06AM ?? 0:00.05 /System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCService 501 359 1 0 10:06AM ?? 0:00.16 /System/Library/PrivateFrameworks/CloudPhotoServices.framework/Versions/A/Frameworks/CloudPhotosConfigurationXPC.framework/Versions/A/XPCServices/com.apple.CloudPhotosConfiguration.xpc/Contents/MacOS/com.apple.CloudPhotosConfiguration 0 367 1 0 10:06AM ?? 0:00.03 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper 501 368 1 0 10:06AM ?? 0:00.15 /System/Library/CoreServices/NetAuthAgent.app/Contents/MacOS/NetAuthSysAgent 0 386 1 0 10:06AM ?? 0:00.02 /System/Library/Filesystems/AppleShare/check_afp.app/Contents/MacOS/check_afp 501 389 1 0 10:06AM ?? 1:13.64 /Library/Application Support/Microsoft/MAU2.0/Microsoft AutoUpdate.app/Contents/MacOS/Microsoft Update Assistant.app/Contents/MacOS/Microsoft Update Assistant -checkForUpdates 501 390 1 0 10:06AM ?? 0:00.11 /System/Library/CoreServices/FolderActionsDispatcher.app/Contents/MacOS/FolderActionsDispatcher 501 392 1 0 10:06AM ?? 0:00.03 /usr/libexec/spindump_agent 501 394 1 0 10:06AM ?? 0:00.05 /System/Library/CoreServices/SocialPushAgent.app/Contents/MacOS/SocialPushAgent 501 397 1 0 10:06AM ?? 0:00.19 /System/Library/CoreServices/Keychain Circle Notification.app/Contents/MacOS/Keychain Circle Notification 501 400 1 0 10:06AM ?? 0:01.45 /System/Library/CoreServices/NotificationCenter.app/Contents/MacOS/NotificationCenter 501 402 1 0 10:06AM ?? 0:00.29 /System/Library/Image Capture/Support/icdd 501 404 1 0 10:06AM ?? 0:00.57 /System/Library/CoreServices/AppleIDAuthAgent 501 408 1 0 10:06AM ?? 0:00.11 /System/Library/CoreServices/AirPlayUIAgent.app/Contents/MacOS/AirPlayUIAgent --launchd 501 411 1 0 10:06AM ?? 0:00.89 /System/Library/CoreServices/WiFiAgent.app/Contents/MacOS/WiFiAgent 501 412 1 0 10:06AM ?? 0:00.13 /System/Library/CoreServices/diagnostics_agent 501 417 1 0 10:06AM ?? 0:00.11 /Applications/iTunes.app/Contents/MacOS/iTunesHelper.app/Contents/MacOS/iTunesHelper 501 419 1 0 10:06AM ?? 0:10.30 /Applications/Backup and Sync.app/Contents/MacOS/Backup and Sync 501 426 1 0 10:06AM ?? 0:00.04 /System/Library/CoreServices/NotificationCenter.app/Contents/XPCServices/com.apple.notificationcenterui.WeatherSummary.xpc/Contents/MacOS/com.apple.notificationcenterui.WeatherSummary 501 427 1 0 10:06AM ?? 0:00.12 /System/Library/PrivateFrameworks/AssistantServices.framework/assistantd 501 428 1 0 10:06AM ?? 0:00.52 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeinappd 501 429 1 0 10:06AM ?? 0:00.07 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/XPCServices/com.apple.CommerceKit.TransactionService.xpc/Contents/MacOS/com.apple.CommerceKit.TransactionService 501 432 1 0 10:06AM ?? 0:00.12 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storedownloadd 501 434 1 0 10:06AM ?? 0:01.75 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared 501 435 1 0 10:06AM ?? 0:00.45 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared 501 436 1 0 10:06AM ?? 0:00.30 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared 501 437 1 0 10:06AM ?? 0:00.37 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared 501 438 1 0 10:06AM ?? 0:00.39 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared 0 439 1 0 10:06AM ?? 0:00.04 /usr/sbin/spindump 0 440 1 0 10:06AM ?? 0:00.06 /System/Library/CoreServices/SubmitDiagInfo server-init 200 445 1 0 10:06AM ?? 0:03.71 /System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdated 0 446 1 0 10:06AM ?? 0:00.03 /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Resources/suhelperd 501 447 1 0 10:06AM ?? 0:00.06 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdflagwriter 0 448 1 0 10:06AM ?? 0:00.04 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdflagwriter 0 459 1 0 10:06AM ?? 0:09.27 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker-scan -c MDSSyncScanWorker -m com.apple.metadata.mds.scan 501 461 1 0 10:06AM ?? 0:00.12 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storelegacy 501 462 1 0 10:06AM ?? 0:00.16 /System/Library/PrivateFrameworks/PhotoLibraryPrivate.framework/Versions/A/Support/photolibraryd 501 463 1 0 10:07AM ?? 0:00.15 /System/Library/PrivateFrameworks/CommerceKit.framework/Resources/LaterAgent.app/Contents/MacOS/LaterAgent 501 465 1 0 10:07AM ?? 0:00.23 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker-sizing -c MDSSizingWorker -m com.apple.mdworker.sizing 501 477 1 0 10:07AM ?? 0:00.36 /System/Library/CoreServices/System Events.app/Contents/MacOS/System Events 501 480 1 0 10:07AM ?? 0:00.09 /usr/libexec/swcd 501 484 1 0 10:07AM ?? 0:00.05 /System/Library/CoreServices/pbs 501 487 1 0 10:07AM ?? 0:00.39 /Applications/Backup and Sync.app/Contents/PlugIns/FinderSyncAPIExtension.appex/Contents/MacOS/FinderSyncAPIExtension 501 493 1 0 10:07AM ?? 0:00.49 /System/Library/Image Capture/Support/Image Capture Extension.app/Contents/MacOS/Image Capture Extension 501 495 1 0 10:07AM ?? 0:00.05 /System/Library/Frameworks/ApplicationServices.framework/Frameworks/PrintCore.framework/Versions/A/printtool agent 89 497 1 0 10:07AM ?? 0:00.09 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared 89 498 1 0 10:07AM ?? 0:01.37 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared 89 499 1 0 10:07AM ?? 0:01.04 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared 89 513 1 0 10:09AM ?? 0:00.02 /usr/sbin/distnoted agent 89 514 1 0 10:09AM ?? 0:02.83 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker-sizing -c MDSSizingWorker -m com.apple.mdworker.sizing 89 518 1 0 10:09AM ?? 0:01.14 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker-bundle -c MDSImporterBundleFinder -m com.apple.mdworker.bundles 501 519 1 0 10:09AM ?? 0:01.24 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker-bundle -c MDSImporterBundleFinder -m com.apple.mdworker.bundles 0 521 1 0 10:09AM ?? 0:00.03 /usr/libexec/systemstatsd 0 540 1 0 10:10AM ?? 0:00.05 /System/Library/CoreServices/backupd.bundle/Contents/Resources/backupd 0 554 1 0 10:11AM ?? 0:00.16 /Library/PrivilegedHelperTools/com.microsoft.autoupdate.helper 0 556 1 0 10:11AM ?? 0:00.03 /usr/libexec/diskmanagementd 501 568 389 0 10:11AM ?? 0:00.67 /usr/bin/codesign --verify --deep /Applications/Microsoft PowerPoint.app 0 360 260 0 10:06AM ttys000 0:00.05 login -pfl kelly /bin/bash -c exec -la bash /bin/bash 501 361 360 0 10:06AM ttys000 0:00.06 -bash 0 569 361 0 10:11AM ttys000 0:00.01 ps -ef 0 380 260 0 10:06AM ttys001 0:00.03 login -pfl kelly /bin/bash -c exec -la bash /bin/bash 501 381 380 0 10:06AM ttys001 0:00.02 -bash jc-1.17.3/tests/fixtures/osx-10.11.6/uname-a.json000066400000000000000000000003511415226333200210430ustar00rootroot00000000000000{"machine": "x86_64", "kernel_name": "Darwin", "node_name": "Kellys-Air.attlocal.net", "kernel_release": "15.6.0", "kernel_version": "Darwin Kernel Version 15.6.0: Thu Jun 21 20:07:40 PDT 2018; root:xnu-3248.73.11~1/RELEASE_X86_64"} jc-1.17.3/tests/fixtures/osx-10.11.6/uname-a.out000077500000000000000000000002161415226333200207040ustar00rootroot00000000000000Darwin Kellys-Air.attlocal.net 15.6.0 Darwin Kernel Version 15.6.0: Thu Jun 21 20:07:40 PDT 2018; root:xnu-3248.73.11~1/RELEASE_X86_64 x86_64 jc-1.17.3/tests/fixtures/osx-10.11.6/uptime.json000066400000000000000000000003651415226333200210300ustar00rootroot00000000000000{"time": "10:09", "uptime": "3 mins", "users": 3, "load_1m": 5.63, "load_5m": 7.26, "load_15m": 3.53, "time_hour": 10, "time_minute": 9, "time_second": null, "uptime_days": 0, "uptime_hours": 0, "uptime_minutes": 3, "uptime_total_seconds": 180} jc-1.17.3/tests/fixtures/osx-10.11.6/uptime.out000077500000000000000000000000711415226333200206630ustar00rootroot0000000000000010:09 up 3 mins, 3 users, load averages: 5.63 7.26 3.53 jc-1.17.3/tests/fixtures/osx-10.11.6/w.json000066400000000000000000000011631415226333200177700ustar00rootroot00000000000000[{"user": "kelly", "tty": "console", "from": null, "login_at": "02Dec19", "idle": "10days", "what": null}, {"user": "kelly", "tty": "s000", "from": null, "login_at": "Thu11", "idle": null, "what": "ssh localhost"}, {"user": "kelly", "tty": "s001", "from": "::1", "login_at": "10:02", "idle": null, "what": "-bash"}, {"user": "kelly", "tty": "s002", "from": null, "login_at": "10:02", "idle": null, "what": "w"}, {"user": "kelly", "tty": "s003", "from": null, "login_at": "10:03", "idle": null, "what": "ssh 127.0.0.1"}, {"user": "kelly", "tty": "s004", "from": "127.0.0.1", "login_at": "10:03", "idle": null, "what": "-bash"}] jc-1.17.3/tests/fixtures/osx-10.11.6/w.out000077500000000000000000000007121415226333200176300ustar00rootroot0000000000000010:03 up 10 days, 11:19, 6 users, load averages: 1.26 1.09 0.99 USER TTY FROM LOGIN@ IDLE WHAT kelly console - 02Dec19 10days - kelly s000 - Thu11 - ssh localhost kelly s001 ::1 10:02 - -bash kelly s002 - 10:02 - w kelly s003 - 10:03 - ssh 127.0.0.1 kelly s004 127.0.0.1 10:03 - -bash jc-1.17.3/tests/fixtures/osx-10.14.6/000077500000000000000000000000001415226333200166315ustar00rootroot00000000000000jc-1.17.3/tests/fixtures/osx-10.14.6/airport-I.json000066400000000000000000000004631415226333200213750ustar00rootroot00000000000000{"agrctlrssi": -66, "agrextrssi": 0, "agrctlnoise": -90, "agrextnoise": 0, "state": "running", "op_mode": "station", "lasttxrate": 195, "maxrate": 867, "lastassocstatus": 0, "802_11_auth": "open", "link_auth": "wpa2-psk", "bssid": "3c:37:86:15:ad:f9", "ssid": "SnazzleDazzle", "mcs": 0, "channel": "48,80"} jc-1.17.3/tests/fixtures/osx-10.14.6/airport-I.out000066400000000000000000000005341415226333200212320ustar00rootroot00000000000000 agrCtlRSSI: -66 agrExtRSSI: 0 agrCtlNoise: -90 agrExtNoise: 0 state: running op mode: station lastTxRate: 195 maxRate: 867 lastAssocStatus: 0 802.11 auth: open link auth: wpa2-psk BSSID: 3c:37:86:15:ad:f9 SSID: SnazzleDazzle MCS: 0 channel: 48,80 jc-1.17.3/tests/fixtures/osx-10.14.6/airport-s.json000066400000000000000000000041501415226333200214440ustar00rootroot00000000000000[{"ssid": "DIRECT-4A-HP OfficeJet 3830", "bssid": "00:68:eb:2b:b7:3b", "rssi": -91, "channel": "6", "ht": true, "cc": "--", "security": ["WPA2(PSK/AES/AES)"]}, {"ssid": "xfinitywifi", "bssid": "6e:e3:0e:c1:74:df", "rssi": -87, "channel": "36", "ht": true, "cc": "US", "security": ["NONE"]}, {"ssid": "XFINITY", "bssid": "8e:e3:0e:c1:74:df", "rssi": -86, "channel": "36", "ht": true, "cc": "US", "security": ["WPA2(802.1x/AES/AES)"]}, {"ssid": "YouAreInfected-5", "bssid": "5c:e3:0e:c1:74:df", "rssi": -86, "channel": "36", "ht": true, "cc": "US", "security": ["WPA(PSK/AES,TKIP/TKIP)", "WPA2(PSK/AES,TKIP/TKIP)"]}, {"ssid": "xfinitywifi", "bssid": "6e:e3:0e:b8:55:8f", "rssi": -85, "channel": "11", "ht": true, "cc": "US", "security": ["NONE"]}, {"ssid": "xfinitywifi", "bssid": "6e:e3:0e:c1:74:de", "rssi": -79, "channel": "6", "ht": true, "cc": "US", "security": ["NONE"]}, {"ssid": "ngHub_319451N814D6D", "bssid": "04:a1:51:56:5c:eb", "rssi": -77, "channel": "11", "ht": true, "cc": "US", "security": ["WPA2(PSK/AES/AES)"]}, {"ssid": "YouAreInfected", "bssid": "5c:e3:0e:c1:74:de", "rssi": -76, "channel": "6", "ht": true, "cc": "US", "security": ["WPA(PSK/AES,TKIP/TKIP)", "WPA2(PSK/AES,TKIP/TKIP)"]}, {"ssid": "YuanFamily_Extender2G", "bssid": "a0:04:60:86:11:89", "rssi": -76, "channel": "11", "ht": true, "cc": "--", "security": ["WPA(PSK/AES,TKIP/TKIP)", "WPA2(PSK/AES,TKIP/TKIP)"]}, {"ssid": "YuanFamily", "bssid": "5c:e3:0e:b8:15:9f", "rssi": -73, "channel": "11", "ht": true, "cc": "US", "security": ["WPA(PSK/AES,TKIP/TKIP)", "WPA2(PSK/AES,TKIP/TKIP)"]}, {"ssid": "SnazzleDazzle", "bssid": "3c:37:86:15:fd:b5", "rssi": -70, "channel": "48", "ht": true, "cc": "US", "security": ["WPA2(PSK/AES/AES)"]}, {"ssid": "SnazzleDazzle", "bssid": "42:37:86:15:fd:b3", "rssi": -62, "channel": "3,+1", "ht": true, "cc": "US", "security": ["WPA2(PSK/AES/AES)"]}, {"ssid": "SnazzleDazzle", "bssid": "42:37:86:15:aa:f7", "rssi": -54, "channel": "3", "ht": true, "cc": "US", "security": ["WPA2(PSK/AES/AES)"]}, {"ssid": "SnazzleDazzle", "bssid": "3c:37:86:15:aa:f9", "rssi": -64, "channel": "48", "ht": true, "cc": "US", "security": ["WPA2(PSK/AES/AES)"]}] jc-1.17.3/tests/fixtures/osx-10.14.6/airport-s.out000066400000000000000000000026171415226333200213100ustar00rootroot00000000000000 SSID BSSID RSSI CHANNEL HT CC SECURITY (auth/unicast/group) DIRECT-4A-HP OfficeJet 3830 00:68:eb:2b:b7:3b -91 6 Y -- WPA2(PSK/AES/AES) xfinitywifi 6e:e3:0e:c1:74:df -87 36 Y US NONE XFINITY 8e:e3:0e:c1:74:df -86 36 Y US WPA2(802.1x/AES/AES) YouAreInfected-5 5c:e3:0e:c1:74:df -86 36 Y US WPA(PSK/AES,TKIP/TKIP) WPA2(PSK/AES,TKIP/TKIP) xfinitywifi 6e:e3:0e:b8:55:8f -85 11 Y US NONE xfinitywifi 6e:e3:0e:c1:74:de -79 6 Y US NONE ngHub_319451N814D6D 04:a1:51:56:5c:eb -77 11 Y US WPA2(PSK/AES/AES) YouAreInfected 5c:e3:0e:c1:74:de -76 6 Y US WPA(PSK/AES,TKIP/TKIP) WPA2(PSK/AES,TKIP/TKIP) YuanFamily_Extender2G a0:04:60:86:11:89 -76 11 Y -- WPA(PSK/AES,TKIP/TKIP) WPA2(PSK/AES,TKIP/TKIP) YuanFamily 5c:e3:0e:b8:15:9f -73 11 Y US WPA(PSK/AES,TKIP/TKIP) WPA2(PSK/AES,TKIP/TKIP) SnazzleDazzle 3c:37:86:15:fd:b5 -70 48 Y US WPA2(PSK/AES/AES) SnazzleDazzle 42:37:86:15:fd:b3 -62 3,+1 Y US WPA2(PSK/AES/AES) SnazzleDazzle 42:37:86:15:aa:f7 -54 3 Y US WPA2(PSK/AES/AES) SnazzleDazzle 3c:37:86:15:aa:f9 -64 48 Y US WPA2(PSK/AES/AES) jc-1.17.3/tests/fixtures/osx-10.14.6/arp-a.json000066400000000000000000000041341415226333200205260ustar00rootroot00000000000000[ { "name": "xxx.attlocal.net", "address": "192.168.1.63", "hwtype": "ethernet", "hwaddress": "e0:33:8e:67:38:d6", "iface": "en0", "permanent": false }, { "name": "mbp.attlocal.net", "address": "192.168.1.74", "hwtype": "ethernet", "hwaddress": "f0:18:98:5:d8:39", "iface": "en0", "permanent": false }, { "name": "tablet.attlocal.net", "address": "192.168.1.77", "hwtype": "ethernet", "hwaddress": "4c:56:9d:5f:b8:4c", "iface": "en0", "permanent": false }, { "name": "living-room.attlocal.net", "address": "192.168.1.80", "hwtype": "ethernet", "hwaddress": "c8:d0:83:cd:f3:2d", "iface": "en0", "permanent": false }, { "name": "outside.attlocal.net", "address": "192.168.1.99", "hwtype": "ethernet", "hwaddress": "d0:3:4b:3b:27:d5", "iface": "en0", "permanent": false }, { "name": "tv.attlocal.net", "address": "192.168.1.187", "hwtype": "ethernet", "hwaddress": "50:32:37:d7:f4:9b", "iface": "en0", "permanent": false }, { "name": "device.attlocal.net", "address": "192.168.1.217", "hwtype": "ethernet", "hwaddress": "3c:37:86:14:ad:f7", "iface": "en0", "permanent": false }, { "name": "mac.attlocal.net", "address": "192.168.1.222", "hwtype": "ethernet", "hwaddress": "a4:83:e7:2d:63:8f", "iface": "en0", "permanent": true }, { "name": "dev2.attlocal.net", "address": "192.168.1.251", "hwtype": "ethernet", "hwaddress": "3c:37:86:15:df:b3", "iface": "en0", "permanent": false }, { "name": "laptop.attlocal.net", "address": "192.168.1.250", "hwtype": "ethernet", "hwaddress": "fc:ae:34:a1:3a:80", "iface": "en0", "permanent": false }, { "name": null, "address": "224.0.0.251", "hwtype": "ethernet", "hwaddress": "1:0:5e:0:0:fb", "iface": "en0", "permanent": true }, { "name": null, "address": "239.255.255.250", "hwtype": "ethernet", "hwaddress": "1:0:5e:7f:ff:fa", "iface": "en0", "permanent": true } ] jc-1.17.3/tests/fixtures/osx-10.14.6/arp-a.out000066400000000000000000000017101415226333200203610ustar00rootroot00000000000000xxx.attlocal.net (192.168.1.63) at e0:33:8e:67:38:d6 on en0 ifscope [ethernet] mbp.attlocal.net (192.168.1.74) at f0:18:98:5:d8:39 on en0 ifscope [ethernet] tablet.attlocal.net (192.168.1.77) at 4c:56:9d:5f:b8:4c on en0 ifscope [ethernet] living-room.attlocal.net (192.168.1.80) at c8:d0:83:cd:f3:2d on en0 ifscope [ethernet] outside.attlocal.net (192.168.1.99) at d0:3:4b:3b:27:d5 on en0 ifscope [ethernet] tv.attlocal.net (192.168.1.187) at 50:32:37:d7:f4:9b on en0 ifscope [ethernet] device.attlocal.net (192.168.1.217) at 3c:37:86:14:ad:f7 on en0 ifscope [ethernet] mac.attlocal.net (192.168.1.222) at a4:83:e7:2d:63:8f on en0 ifscope permanent [ethernet] dev2.attlocal.net (192.168.1.251) at 3c:37:86:15:df:b3 on en0 ifscope [ethernet] laptop.attlocal.net (192.168.1.250) at fc:ae:34:a1:3a:80 on en0 ifscope [ethernet] ? (224.0.0.251) at 1:0:5e:0:0:fb on en0 ifscope permanent [ethernet] ? (239.255.255.250) at 1:0:5e:7f:ff:fa on en0 ifscope permanent [ethernet] jc-1.17.3/tests/fixtures/osx-10.14.6/arp-a2.json000066400000000000000000000056431415226333200206160ustar00rootroot00000000000000[{"name": null, "address": "169.254.81.142", "hwtype": "ethernet", "hwaddress": "60:93:17:3a:28:fc", "iface": "en0", "permanent": false}, {"name": "my-iphone.attlocal.net", "address": "192.168.1.64", "hwtype": "ethernet", "hwaddress": "e0:33:8f:68:39:d6", "iface": "en0", "permanent": false}, {"name": "my-mbp.attlocal.net", "address": "192.168.1.72", "hwtype": "ethernet", "hwaddress": "f0:18:98:3:d7:34", "iface": "en0", "permanent": false}, {"name": "c6180.attlocal.net", "address": "192.168.1.74", "hwtype": "ethernet", "hwaddress": "9c:b6:54:5f:fa:7c", "iface": "en0", "permanent": false}, {"name": "ipad.attlocal.net", "address": "192.168.1.75", "hwtype": "ethernet", "hwaddress": "4c:56:9e:5f:c7:4c", "iface": "en0", "permanent": false}, {"name": "mycloudex2ultra.attlocal.net", "address": "192.168.1.80", "hwtype": "ethernet", "hwaddress": "0:90:a9:ed:f4:3f", "iface": "en0", "permanent": false}, {"name": "family-room-5.attlocal.net", "address": "192.168.1.88", "hwtype": "ethernet", "hwaddress": "c8:d0:84:c3:e3:2d", "iface": "en0", "permanent": false}, {"name": "bedroom.attlocal.net", "address": "192.168.1.89", "hwtype": "ethernet", "hwaddress": "d0:3:4b:3b:29:a5", "iface": "en0", "permanent": false}, {"name": "heriphone.attlocal.net", "address": "192.168.1.178", "hwtype": "ethernet", "hwaddress": "90:e1:7b:ef:1:45", "iface": "en0", "permanent": false}, {"name": "upstairs.attlocal.net", "address": "192.168.1.186", "hwtype": "ethernet", "hwaddress": "50:32:37:d7:e5:7b", "iface": "en0", "permanent": false}, {"name": "rbr50.attlocal.net", "address": "192.168.1.216", "hwtype": "ethernet", "hwaddress": "3c:37:86:25:fd:f7", "iface": "en0", "permanent": false}, {"name": "my-mac.attlocal.net", "address": "192.168.1.221", "hwtype": "ethernet", "hwaddress": "a4:83:e7:2e:f2:8f", "iface": "en0", "permanent": true}, {"name": "irobot-d41934.attlocal.net", "address": "192.168.1.242", "hwtype": "ethernet", "hwaddress": "50:14:79:f2:4f:3e", "iface": "en0", "permanent": false}, {"name": "rbs50.attlocal.net", "address": "192.168.1.253", "hwtype": "ethernet", "hwaddress": "3c:37:86:1f:dd:a3", "iface": "en0", "permanent": false}, {"name": "dsldevice.attlocal.net", "address": "192.168.1.254", "hwtype": "ethernet", "hwaddress": "fc:ae:34:f1:3f:80", "iface": "en0", "permanent": false}, {"name": null, "address": "192.168.1.255", "hwtype": "ethernet", "hwaddress": "ff:ff:ff:ff:ff:ff", "iface": "en0", "permanent": false}, {"name": null, "address": "192.168.71.255", "hwtype": "ethernet", "hwaddress": "ff:ff:ff:ff:ff:ff", "iface": "vmnet8", "permanent": false}, {"name": null, "address": "192.168.101.255", "hwtype": "ethernet", "hwaddress": "ff:ff:ff:ff:ff:ff", "iface": "vmnet1", "permanent": false}, {"name": null, "address": "224.0.0.251", "hwtype": "ethernet", "hwaddress": "1:0:5e:0:0:eb", "iface": "en0", "permanent": true}, {"name": null, "address": "239.255.255.250", "hwtype": "ethernet", "hwaddress": "1:0:5e:7f:ff:fe", "iface": "en0", "permanent": true}] jc-1.17.3/tests/fixtures/osx-10.14.6/arp-a2.out000066400000000000000000000030751415226333200204510ustar00rootroot00000000000000? (169.254.81.142) at 60:93:17:3a:28:fc on en0 [ethernet] my-iphone.attlocal.net (192.168.1.64) at e0:33:8f:68:39:d6 on en0 ifscope [ethernet] my-mbp.attlocal.net (192.168.1.72) at f0:18:98:3:d7:34 on en0 ifscope [ethernet] c6180.attlocal.net (192.168.1.74) at 9c:b6:54:5f:fa:7c on en0 ifscope [ethernet] ipad.attlocal.net (192.168.1.75) at 4c:56:9e:5f:c7:4c on en0 ifscope [ethernet] mycloudex2ultra.attlocal.net (192.168.1.80) at 0:90:a9:ed:f4:3f on en0 ifscope [ethernet] family-room-5.attlocal.net (192.168.1.88) at c8:d0:84:c3:e3:2d on en0 ifscope [ethernet] bedroom.attlocal.net (192.168.1.89) at d0:3:4b:3b:29:a5 on en0 ifscope [ethernet] heriphone.attlocal.net (192.168.1.178) at 90:e1:7b:ef:1:45 on en0 ifscope [ethernet] upstairs.attlocal.net (192.168.1.186) at 50:32:37:d7:e5:7b on en0 ifscope [ethernet] rbr50.attlocal.net (192.168.1.216) at 3c:37:86:25:fd:f7 on en0 ifscope [ethernet] my-mac.attlocal.net (192.168.1.221) at a4:83:e7:2e:f2:8f on en0 ifscope permanent [ethernet] irobot-d41934.attlocal.net (192.168.1.242) at 50:14:79:f2:4f:3e on en0 ifscope [ethernet] rbs50.attlocal.net (192.168.1.253) at 3c:37:86:1f:dd:a3 on en0 ifscope [ethernet] dsldevice.attlocal.net (192.168.1.254) at fc:ae:34:f1:3f:80 on en0 ifscope [ethernet] ? (192.168.1.255) at ff:ff:ff:ff:ff:ff on en0 ifscope [ethernet] ? (192.168.71.255) at ff:ff:ff:ff:ff:ff on vmnet8 ifscope [ethernet] ? (192.168.101.255) at ff:ff:ff:ff:ff:ff on vmnet1 ifscope [ethernet] ? (224.0.0.251) at 1:0:5e:0:0:eb on en0 ifscope permanent [ethernet] ? (239.255.255.250) at 1:0:5e:7f:ff:fe on en0 ifscope permanent [ethernet] jc-1.17.3/tests/fixtures/osx-10.14.6/cksum.json000066400000000000000000000240041415226333200206460ustar00rootroot00000000000000[{"filename": "airport-I.json", "checksum": 460623577, "blocks": 307}, {"filename": "airport-I.out", "checksum": 3884095294, "blocks": 348}, {"filename": "airport-s.json", "checksum": 3823080718, "blocks": 2152}, {"filename": "airport-s.out", "checksum": 1241296374, "blocks": 1423}, {"filename": "arp-a.json", "checksum": 3662476788, "blocks": 2140}, {"filename": "arp-a.out", "checksum": 394323902, "blocks": 968}, {"filename": "arp-a2.json", "checksum": 2211666137, "blocks": 2979}, {"filename": "arp-a2.out", "checksum": 3627494309, "blocks": 1597}, {"filename": "df-h.json", "checksum": 502389395, "blocks": 1686}, {"filename": "df-h.out", "checksum": 400417014, "blocks": 1276}, {"filename": "df.json", "checksum": 4180452583, "blocks": 1764}, {"filename": "df.out", "checksum": 3870323211, "blocks": 1384}, {"filename": "dig-aaaa.json", "checksum": 1350546134, "blocks": 438}, {"filename": "dig-aaaa.out", "checksum": 3856026265, "blocks": 536}, {"filename": "dig-axfr.json", "checksum": 3740315618, "blocks": 5984}, {"filename": "dig-axfr.out", "checksum": 749991410, "blocks": 3511}, {"filename": "dig-x.json", "checksum": 1318143536, "blocks": 442}, {"filename": "dig-x.out", "checksum": 1399488100, "blocks": 529}, {"filename": "dig.json", "checksum": 968550755, "blocks": 1266}, {"filename": "dig.out", "checksum": 1509929607, "blocks": 1182}, {"filename": "du.json", "checksum": 514470835, "blocks": 295780}, {"filename": "du.out", "checksum": 222115381, "blocks": 221925}, {"filename": "file.json", "checksum": 66574512, "blocks": 3589}, {"filename": "file.out", "checksum": 3410084023, "blocks": 2890}, {"filename": "file2.json", "checksum": 3024780012, "blocks": 4715}, {"filename": "file2.out", "checksum": 2271991347, "blocks": 4780}, {"filename": "group.json", "checksum": 2286919983, "blocks": 9646}, {"filename": "group.out", "checksum": 3791479878, "blocks": 2823}, {"filename": "id.json", "checksum": 2497587728, "blocks": 759}, {"filename": "id.out", "checksum": 4055820469, "blocks": 386}, {"filename": "ifconfig.json", "checksum": 1256465312, "blocks": 10823}, {"filename": "ifconfig.out", "checksum": 2946141711, "blocks": 3779}, {"filename": "ifconfig2.json", "checksum": 2248805689, "blocks": 11375}, {"filename": "ifconfig2.out", "checksum": 2826930050, "blocks": 3979}, {"filename": "last.json", "checksum": 1234289001, "blocks": 45274}, {"filename": "last.out", "checksum": 3878741492, "blocks": 25827}, {"filename": "ls-R-newlines.json", "checksum": 2242924774, "blocks": 852}, {"filename": "ls-R-newlines.out", "checksum": 2580385439, "blocks": 278}, {"filename": "ls-R.json", "checksum": 1166655102, "blocks": 469418}, {"filename": "ls-R.out", "checksum": 4218902119, "blocks": 133787}, {"filename": "ls-al.json", "checksum": 872532263, "blocks": 4653}, {"filename": "ls-al.out", "checksum": 1990624448, "blocks": 2111}, {"filename": "ls-alR.json", "checksum": 533361577, "blocks": 959674}, {"filename": "ls-alR.out", "checksum": 1752728607, "blocks": 364578}, {"filename": "ls-alh.json", "checksum": 2907773845, "blocks": 4684}, {"filename": "ls-alh.out", "checksum": 518393231, "blocks": 2111}, {"filename": "ls-glob.json", "checksum": 2219502793, "blocks": 91544}, {"filename": "ls-glob.out", "checksum": 1750032845, "blocks": 19369}, {"filename": "ls-l-newlines.json", "checksum": 197387780, "blocks": 1162}, {"filename": "ls-l-newlines.out", "checksum": 1407749418, "blocks": 583}, {"filename": "ls-lR-empty-folder.json", "checksum": 3137165058, "blocks": 355547}, {"filename": "ls-lR-empty-folder.out", "checksum": 1563455321, "blocks": 128740}, {"filename": "ls-lR-newlines.json", "checksum": 595722164, "blocks": 1450}, {"filename": "ls-lR-newlines.out", "checksum": 1965541686, "blocks": 656}, {"filename": "ls-newlines.json", "checksum": 3798624201, "blocks": 498}, {"filename": "ls-newlines.out", "checksum": 519911259, "blocks": 260}, {"filename": "ls.json", "checksum": 3112030615, "blocks": 585}, {"filename": "ls.out", "checksum": 1810995639, "blocks": 193}, {"filename": "md5.json", "checksum": 902730595, "blocks": 7764}, {"filename": "md5.out", "checksum": 4230488015, "blocks": 5683}, {"filename": "mount.json", "checksum": 1401281069, "blocks": 672}, {"filename": "mount.out", "checksum": 2768344217, "blocks": 349}, {"filename": "mount2.json", "checksum": 605824441, "blocks": 841}, {"filename": "mount2.out", "checksum": 3636857655, "blocks": 464}, {"filename": "netstat-Abn.json", "checksum": 483687891, "blocks": 151042}, {"filename": "netstat-Abn.out", "checksum": 2899854826, "blocks": 76835}, {"filename": "netstat-An.json", "checksum": 1556983, "blocks": 142438}, {"filename": "netstat-An.out", "checksum": 4286408161, "blocks": 71005}, {"filename": "netstat-i.json", "checksum": 2751687123, "blocks": 7246}, {"filename": "netstat-i.out", "checksum": 2993948661, "blocks": 3354}, {"filename": "netstat-r.json", "checksum": 3675238823, "blocks": 16929}, {"filename": "netstat-r.out", "checksum": 1685265265, "blocks": 6178}, {"filename": "netstat-rnl.json", "checksum": 4218947449, "blocks": 21015}, {"filename": "netstat-rnl.out", "checksum": 1696885775, "blocks": 10055}, {"filename": "netstat.json", "checksum": 2629842889, "blocks": 141195}, {"filename": "netstat.out", "checksum": 2526059995, "blocks": 70387}, {"filename": "passwd.json", "checksum": 339467726, "blocks": 14855}, {"filename": "passwd.out", "checksum": 871931958, "blocks": 6804}, {"filename": "ping-hostname-p.json", "checksum": 4064107262, "blocks": 714}, {"filename": "ping-hostname-p.out", "checksum": 414078650, "blocks": 400}, {"filename": "ping-hostname-s.json", "checksum": 3098475978, "blocks": 714}, {"filename": "ping-hostname-s.out", "checksum": 3273862883, "blocks": 389}, {"filename": "ping-hostname.json", "checksum": 3643045541, "blocks": 706}, {"filename": "ping-hostname.out", "checksum": 2961178857, "blocks": 381}, {"filename": "ping-ip-dup.json", "checksum": 1965089944, "blocks": 2251}, {"filename": "ping-ip-dup.out", "checksum": 926326060, "blocks": 1156}, {"filename": "ping-ip-p.json", "checksum": 3383292259, "blocks": 691}, {"filename": "ping-ip-p.out", "checksum": 4030042554, "blocks": 381}, {"filename": "ping-ip-s.json", "checksum": 339690015, "blocks": 699}, {"filename": "ping-ip-s.out", "checksum": 813997878, "blocks": 375}, {"filename": "ping-ip.json", "checksum": 3307987337, "blocks": 689}, {"filename": "ping-ip.out", "checksum": 3560181069, "blocks": 367}, {"filename": "ping6-hostname-p.json", "checksum": 2969280967, "blocks": 786}, {"filename": "ping6-hostname-p.out", "checksum": 773946458, "blocks": 460}, {"filename": "ping6-hostname-s.json", "checksum": 3681725921, "blocks": 788}, {"filename": "ping6-hostname-s.out", "checksum": 1846670269, "blocks": 449}, {"filename": "ping6-hostname.json", "checksum": 2925748820, "blocks": 784}, {"filename": "ping6-hostname.out", "checksum": 1846085995, "blocks": 446}, {"filename": "ping6-ip-dup.json", "checksum": 2213270797, "blocks": 9447}, {"filename": "ping6-ip-dup.out", "checksum": 2488952539, "blocks": 5225}, {"filename": "ping6-ip-p.json", "checksum": 2942459290, "blocks": 683}, {"filename": "ping6-ip-p.out", "checksum": 3995090292, "blocks": 355}, {"filename": "ping6-ip-s.json", "checksum": 1775639128, "blocks": 688}, {"filename": "ping6-ip-s.out", "checksum": 3951402708, "blocks": 352}, {"filename": "ping6-ip.json", "checksum": 1191437562, "blocks": 681}, {"filename": "ping6-ip.out", "checksum": 4079831039, "blocks": 341}, {"filename": "pip-list.json", "checksum": 149164085, "blocks": 224}, {"filename": "pip-list.out", "checksum": 1574360463, "blocks": 168}, {"filename": "pip-show.json", "checksum": 2037155692, "blocks": 1067}, {"filename": "pip-show.out", "checksum": 456333099, "blocks": 910}, {"filename": "ps-axu.json", "checksum": 317517160, "blocks": 99173}, {"filename": "ps-axu.out", "checksum": 1884966502, "blocks": 60107}, {"filename": "ps-ef.json", "checksum": 1247200492, "blocks": 71162}, {"filename": "ps-ef.out", "checksum": 575731254, "blocks": 48758}, {"filename": "shasum.json", "checksum": 3593483594, "blocks": 11817}, {"filename": "shasum.out", "checksum": 359954755, "blocks": 7982}, {"filename": "stat.json", "checksum": 4238888192, "blocks": 35152}, {"filename": "stat.out", "checksum": 1516293752, "blocks": 15599}, {"filename": "sysctl-a.json", "checksum": 3548337072, "blocks": 46473}, {"filename": "sysctl-a.out", "checksum": 3365777883, "blocks": 42505}, {"filename": "traceroute-asn.json", "checksum": 2602794741, "blocks": 1123}, {"filename": "traceroute-asn.out", "checksum": 1064946112, "blocks": 323}, {"filename": "traceroute-mult-addresses.json", "checksum": 138609038, "blocks": 807}, {"filename": "traceroute-mult-addresses.out", "checksum": 2270547956, "blocks": 305}, {"filename": "traceroute-no-header.json", "checksum": 1099425196, "blocks": 793}, {"filename": "traceroute-no-header.out", "checksum": 3762488639, "blocks": 166}, {"filename": "traceroute-q.json", "checksum": 3109879112, "blocks": 1240}, {"filename": "traceroute-q.out", "checksum": 2116677646, "blocks": 272}, {"filename": "traceroute.json", "checksum": 281326074, "blocks": 2419}, {"filename": "traceroute.out", "checksum": 2303838391, "blocks": 579}, {"filename": "traceroute6-mult-addresses.json", "checksum": 385060355, "blocks": 859}, {"filename": "traceroute6-mult-addresses.out", "checksum": 1294841124, "blocks": 401}, {"filename": "traceroute6.json", "checksum": 385060355, "blocks": 859}, {"filename": "traceroute6.out", "checksum": 680069720, "blocks": 304}, {"filename": "uname-a.json", "checksum": 4051060005, "blocks": 221}, {"filename": "uname-a.out", "checksum": 3290829942, "blocks": 131}, {"filename": "uname.out", "checksum": 272784635, "blocks": 7}, {"filename": "uptime.json", "checksum": 1952629296, "blocks": 110}, {"filename": "uptime.out", "checksum": 174899653, "blocks": 65}, {"filename": "w.json", "checksum": 3374858506, "blocks": 836}, {"filename": "w.out", "checksum": 2080091923, "blocks": 570}, {"filename": "who-a.json", "checksum": 235087184, "blocks": 659}, {"filename": "who-a.out", "checksum": 859367914, "blocks": 419}, {"filename": "who.json", "checksum": 2573389091, "blocks": 251}, {"filename": "who.out", "checksum": 2013191876, "blocks": 128}] jc-1.17.3/tests/fixtures/osx-10.14.6/cksum.out000066400000000000000000000103121415226333200205010ustar00rootroot00000000000000460623577 307 airport-I.json 3884095294 348 airport-I.out 3823080718 2152 airport-s.json 1241296374 1423 airport-s.out 3662476788 2140 arp-a.json 394323902 968 arp-a.out 2211666137 2979 arp-a2.json 3627494309 1597 arp-a2.out 502389395 1686 df-h.json 400417014 1276 df-h.out 4180452583 1764 df.json 3870323211 1384 df.out 1350546134 438 dig-aaaa.json 3856026265 536 dig-aaaa.out 3740315618 5984 dig-axfr.json 749991410 3511 dig-axfr.out 1318143536 442 dig-x.json 1399488100 529 dig-x.out 968550755 1266 dig.json 1509929607 1182 dig.out 514470835 295780 du.json 222115381 221925 du.out 66574512 3589 file.json 3410084023 2890 file.out 3024780012 4715 file2.json 2271991347 4780 file2.out 2286919983 9646 group.json 3791479878 2823 group.out 2497587728 759 id.json 4055820469 386 id.out 1256465312 10823 ifconfig.json 2946141711 3779 ifconfig.out 2248805689 11375 ifconfig2.json 2826930050 3979 ifconfig2.out 1234289001 45274 last.json 3878741492 25827 last.out 2242924774 852 ls-R-newlines.json 2580385439 278 ls-R-newlines.out 1166655102 469418 ls-R.json 4218902119 133787 ls-R.out 872532263 4653 ls-al.json 1990624448 2111 ls-al.out 533361577 959674 ls-alR.json 1752728607 364578 ls-alR.out 2907773845 4684 ls-alh.json 518393231 2111 ls-alh.out 2219502793 91544 ls-glob.json 1750032845 19369 ls-glob.out 197387780 1162 ls-l-newlines.json 1407749418 583 ls-l-newlines.out 3137165058 355547 ls-lR-empty-folder.json 1563455321 128740 ls-lR-empty-folder.out 595722164 1450 ls-lR-newlines.json 1965541686 656 ls-lR-newlines.out 3798624201 498 ls-newlines.json 519911259 260 ls-newlines.out 3112030615 585 ls.json 1810995639 193 ls.out 902730595 7764 md5.json 4230488015 5683 md5.out 1401281069 672 mount.json 2768344217 349 mount.out 605824441 841 mount2.json 3636857655 464 mount2.out 483687891 151042 netstat-Abn.json 2899854826 76835 netstat-Abn.out 1556983 142438 netstat-An.json 4286408161 71005 netstat-An.out 2751687123 7246 netstat-i.json 2993948661 3354 netstat-i.out 3675238823 16929 netstat-r.json 1685265265 6178 netstat-r.out 4218947449 21015 netstat-rnl.json 1696885775 10055 netstat-rnl.out 2629842889 141195 netstat.json 2526059995 70387 netstat.out 339467726 14855 passwd.json 871931958 6804 passwd.out 4064107262 714 ping-hostname-p.json 414078650 400 ping-hostname-p.out 3098475978 714 ping-hostname-s.json 3273862883 389 ping-hostname-s.out 3643045541 706 ping-hostname.json 2961178857 381 ping-hostname.out 1965089944 2251 ping-ip-dup.json 926326060 1156 ping-ip-dup.out 3383292259 691 ping-ip-p.json 4030042554 381 ping-ip-p.out 339690015 699 ping-ip-s.json 813997878 375 ping-ip-s.out 3307987337 689 ping-ip.json 3560181069 367 ping-ip.out 2969280967 786 ping6-hostname-p.json 773946458 460 ping6-hostname-p.out 3681725921 788 ping6-hostname-s.json 1846670269 449 ping6-hostname-s.out 2925748820 784 ping6-hostname.json 1846085995 446 ping6-hostname.out 2213270797 9447 ping6-ip-dup.json 2488952539 5225 ping6-ip-dup.out 2942459290 683 ping6-ip-p.json 3995090292 355 ping6-ip-p.out 1775639128 688 ping6-ip-s.json 3951402708 352 ping6-ip-s.out 1191437562 681 ping6-ip.json 4079831039 341 ping6-ip.out 149164085 224 pip-list.json 1574360463 168 pip-list.out 2037155692 1067 pip-show.json 456333099 910 pip-show.out 317517160 99173 ps-axu.json 1884966502 60107 ps-axu.out 1247200492 71162 ps-ef.json 575731254 48758 ps-ef.out 3593483594 11817 shasum.json 359954755 7982 shasum.out 4238888192 35152 stat.json 1516293752 15599 stat.out 3548337072 46473 sysctl-a.json 3365777883 42505 sysctl-a.out 2602794741 1123 traceroute-asn.json 1064946112 323 traceroute-asn.out 138609038 807 traceroute-mult-addresses.json 2270547956 305 traceroute-mult-addresses.out 1099425196 793 traceroute-no-header.json 3762488639 166 traceroute-no-header.out 3109879112 1240 traceroute-q.json 2116677646 272 traceroute-q.out 281326074 2419 traceroute.json 2303838391 579 traceroute.out 385060355 859 traceroute6-mult-addresses.json 1294841124 401 traceroute6-mult-addresses.out 385060355 859 traceroute6.json 680069720 304 traceroute6.out 4051060005 221 uname-a.json 3290829942 131 uname-a.out 272784635 7 uname.out 1952629296 110 uptime.json 174899653 65 uptime.out 3374858506 836 w.json 2080091923 570 w.out 235087184 659 who-a.json 859367914 419 who-a.out 2573389091 251 who.json 2013191876 128 who.out jc-1.17.3/tests/fixtures/osx-10.14.6/df-h.json000066400000000000000000000027431415226333200203500ustar00rootroot00000000000000[{"filesystem":"/dev/disk1s1","size":"466Gi","used":144,"iused":1507697,"ifree":9223372036853268110,"mounted_on":"/","available":315,"capacity_percent":32,"iused_percent":0},{"filesystem":"devfs","size":"334Ki","used":334,"iused":1154,"ifree":0,"mounted_on":"/dev","available":0,"capacity_percent":100,"iused_percent":100},{"filesystem":"/dev/disk1s4","size":"466Gi","used":6,"iused":6,"ifree":9223372036854775801,"mounted_on":"/private/var/vm","available":315,"capacity_percent":2,"iused_percent":0},{"filesystem":"map -hosts","size":"0Bi","used":0,"iused":0,"ifree":0,"mounted_on":"/net","available":0,"capacity_percent":100,"iused_percent":100},{"filesystem":"map auto_home","size":"0Bi","used":0,"iused":0,"ifree":0,"mounted_on":"/home","available":0,"capacity_percent":100,"iused_percent":100},{"filesystem":"/dev/disk2s2","size":"6.9Gi","used":5,"iused":8,"ifree":4294967271,"mounted_on":"/Volumes/InstallESD","available":1,"capacity_percent":76,"iused_percent":0},{"filesystem":"com.apple.TimeMachine.2019-11-29-075900@/dev/disk1s1","size":"466Gi","used":132,"iused":1459164,"ifree":9223372036853316643,"mounted_on":"/Volumes/com.apple.TimeMachine.localsnapshots/Backups.backupdb/kbrazil-mac/2019-11-29-075900/Macintosh HD","available":315,"capacity_percent":30,"iused_percent":0},{"filesystem":"//brazil@MyCloudEX2Ultra._afpovertcp._tcp.local/brazil","size":"3.5Ti","used":1,"iused":301134832,"ifree":649465741,"mounted_on":"/Volumes/brazil","available":2,"capacity_percent":32,"iused_percent":32}] jc-1.17.3/tests/fixtures/osx-10.14.6/df-h.out000066400000000000000000000023741415226333200202060ustar00rootroot00000000000000Filesystem Size Used Avail Capacity iused ifree %iused Mounted on /dev/disk1s1 466Gi 144Gi 315Gi 32% 1507697 9223372036853268110 0% / devfs 334Ki 334Ki 0Bi 100% 1154 0 100% /dev /dev/disk1s4 466Gi 6.0Gi 315Gi 2% 6 9223372036854775801 0% /private/var/vm map -hosts 0Bi 0Bi 0Bi 100% 0 0 100% /net map auto_home 0Bi 0Bi 0Bi 100% 0 0 100% /home /dev/disk2s2 6.9Gi 5.2Gi 1.7Gi 76% 8 4294967271 0% /Volumes/InstallESD com.apple.TimeMachine.2019-11-29-075900@/dev/disk1s1 466Gi 132Gi 315Gi 30% 1459164 9223372036853316643 0% /Volumes/com.apple.TimeMachine.localsnapshots/Backups.backupdb/kbrazil-mac/2019-11-29-075900/Macintosh HD //brazil@MyCloudEX2Ultra._afpovertcp._tcp.local/brazil 3.5Ti 1.1Ti 2.4Ti 32% 301134832 649465741 32% /Volumes/brazil jc-1.17.3/tests/fixtures/osx-10.14.6/df.json000066400000000000000000000033441415226333200201210ustar00rootroot00000000000000[{"filesystem": "/dev/disk1s1", "512_blocks": 976490576, "used": 302197928, "available": 660310352, "iused": 1507695, "ifree": 9223372036853268112, "mounted_on": "/", "capacity_percent": 32, "iused_percent": 0}, {"filesystem": "devfs", "512_blocks": 667, "used": 667, "available": 0, "iused": 1154, "ifree": 0, "mounted_on": "/dev", "capacity_percent": 100, "iused_percent": 100}, {"filesystem": "/dev/disk1s4", "512_blocks": 976490576, "used": 12583000, "available": 660310352, "iused": 6, "ifree": 9223372036854775801, "mounted_on": "/private/var/vm", "capacity_percent": 2, "iused_percent": 0}, {"filesystem": "map -hosts", "512_blocks": 0, "used": 0, "available": 0, "iused": 0, "ifree": 0, "mounted_on": "/net", "capacity_percent": 100, "iused_percent": 100}, {"filesystem": "map auto_home", "512_blocks": 0, "used": 0, "available": 0, "iused": 0, "ifree": 0, "mounted_on": "/home", "capacity_percent": 100, "iused_percent": 100}, {"filesystem": "/dev/disk2s2", "512_blocks": 14463464, "used": 10887304, "available": 3576160, "iused": 8, "ifree": 4294967271, "mounted_on": "/Volumes/InstallESD", "capacity_percent": 76, "iused_percent": 0}, {"filesystem": "com.apple.TimeMachine.2019-11-29-075900@/dev/disk1s1", "512_blocks": 976490576, "used": 277166752, "available": 660310352, "iused": 1459164, "ifree": 9223372036853316643, "mounted_on": "/Volumes/com.apple.TimeMachine.localsnapshots/Backups.backupdb/kbrazil-mac/2019-11-29-075900/Macintosh HD", "capacity_percent": 30, "iused_percent": 0}, {"filesystem": "//brazil@MyCloudEX2Ultra._afpovertcp._tcp.local/brazil", "512_blocks": 7604804600, "used": 2409078672, "available": 5195725928, "iused": 301134832, "ifree": 649465741, "mounted_on": "/Volumes/brazil", "capacity_percent": 32, "iused_percent": 32}] jc-1.17.3/tests/fixtures/osx-10.14.6/df.out000066400000000000000000000025501415226333200177550ustar00rootroot00000000000000Filesystem 512-blocks Used Available Capacity iused ifree %iused Mounted on /dev/disk1s1 976490576 302197928 660310352 32% 1507695 9223372036853268112 0% / devfs 667 667 0 100% 1154 0 100% /dev /dev/disk1s4 976490576 12583000 660310352 2% 6 9223372036854775801 0% /private/var/vm map -hosts 0 0 0 100% 0 0 100% /net map auto_home 0 0 0 100% 0 0 100% /home /dev/disk2s2 14463464 10887304 3576160 76% 8 4294967271 0% /Volumes/InstallESD com.apple.TimeMachine.2019-11-29-075900@/dev/disk1s1 976490576 277166752 660310352 30% 1459164 9223372036853316643 0% /Volumes/com.apple.TimeMachine.localsnapshots/Backups.backupdb/kbrazil-mac/2019-11-29-075900/Macintosh HD //brazil@MyCloudEX2Ultra._afpovertcp._tcp.local/brazil 7604804600 2409078672 5195725928 32% 301134832 649465741 32% /Volumes/brazil jc-1.17.3/tests/fixtures/osx-10.14.6/dig-aaaa.json000066400000000000000000000010451415226333200211500ustar00rootroot00000000000000[{"id":61441,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":4096}},"question":{"name":"www.google.com.","class":"IN","type":"AAAA"},"answer":[{"name":"www.google.com.","class":"IN","type":"AAAA","ttl":63,"data":"2607:f8b0:4000:817::2004"}],"query_time":30,"server":"2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)","when":"Wed Dec 11 16:54:50 PST 2019","rcvd":71,"when_epoch":1576112090,"when_epoch_utc":null}] jc-1.17.3/tests/fixtures/osx-10.14.6/dig-aaaa.out000066400000000000000000000010301415226333200210000ustar00rootroot00000000000000 ; <<>> DiG 9.10.6 <<>> www.google.com AAAA ;; global options: +cmd ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 61441 ;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1 ;; OPT PSEUDOSECTION: ; EDNS: version: 0, flags:; udp: 4096 ;; QUESTION SECTION: ;www.google.com. IN AAAA ;; ANSWER SECTION: www.google.com. 63 IN AAAA 2607:f8b0:4000:817::2004 ;; Query time: 30 msec ;; SERVER: 2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1) ;; WHEN: Wed Dec 11 16:54:50 PST 2019 ;; MSG SIZE rcvd: 71 jc-1.17.3/tests/fixtures/osx-10.14.6/dig-axfr.json000066400000000000000000000131611415226333200212270ustar00rootroot00000000000000[{"axfr":[{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"SOA","data":"nsztm1.digi.ninja. robin.digi.ninja. 2019100801 172800 900 1209600 3600"},{"name":"zonetransfer.me.","ttl":300,"class":"IN","type":"HINFO","data":"\"Casio fx-700G\" \"Windows XP\""},{"name":"zonetransfer.me.","ttl":301,"class":"IN","type":"TXT","data":"\"google-site-verification=tyP28J7JAUHA9fw2sHXMgcCC0I6XBmmoVi04VlMewxA\""},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"0 ASPMX.L.GOOGLE.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"10 ALT1.ASPMX.L.GOOGLE.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"10 ALT2.ASPMX.L.GOOGLE.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"20 ASPMX2.GOOGLEMAIL.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"20 ASPMX3.GOOGLEMAIL.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"20 ASPMX4.GOOGLEMAIL.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"20 ASPMX5.GOOGLEMAIL.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"5.196.105.14"},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"NS","data":"nsztm1.digi.ninja."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"NS","data":"nsztm2.digi.ninja."},{"name":"_acme-challenge.zonetransfer.me.","ttl":301,"class":"IN","type":"TXT","data":"\"6Oa05hbUJ9xSsvYy7pApQvwCUSSGgxvrbdizjePEsZI\""},{"name":"_sip._tcp.zonetransfer.me.","ttl":14000,"class":"IN","type":"SRV","data":"0 0 5060 www.zonetransfer.me."},{"name":"14.105.196.5.IN-ADDR.ARPA.zonetransfer.me.","ttl":7200,"class":"IN","type":"PTR","data":"www.zonetransfer.me."},{"name":"asfdbauthdns.zonetransfer.me.","ttl":7900,"class":"IN","type":"AFSDB","data":"1 asfdbbox.zonetransfer.me."},{"name":"asfdbbox.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"127.0.0.1"},{"name":"asfdbvolume.zonetransfer.me.","ttl":7800,"class":"IN","type":"AFSDB","data":"1 asfdbbox.zonetransfer.me."},{"name":"canberra-office.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"202.14.81.230"},{"name":"cmdexec.zonetransfer.me.","ttl":300,"class":"IN","type":"TXT","data":"\"; ls\""},{"name":"contact.zonetransfer.me.","ttl":2592000,"class":"IN","type":"TXT","data":"\"Remember to call or email Pippa on +44 123 4567890 or pippa@zonetransfer.me when making DNS changes\""},{"name":"dc-office.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"143.228.181.132"},{"name":"deadbeef.zonetransfer.me.","ttl":7201,"class":"IN","type":"AAAA","data":"dead:beaf::"},{"name":"dr.zonetransfer.me.","ttl":300,"class":"IN","type":"LOC","data":"53 20 56.558 N 1 38 33.526 W 0.00m 1m 10000m 10m"},{"name":"DZC.zonetransfer.me.","ttl":7200,"class":"IN","type":"TXT","data":"\"AbCdEfG\""},{"name":"email.zonetransfer.me.","ttl":2222,"class":"IN","type":"NAPTR","data":"1 1 \"P\" \"E2U+email\" \"\" email.zonetransfer.me.zonetransfer.me."},{"name":"email.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"74.125.206.26"},{"name":"Hello.zonetransfer.me.","ttl":7200,"class":"IN","type":"TXT","data":"\"Hi to Josh and all his class\""},{"name":"home.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"127.0.0.1"},{"name":"Info.zonetransfer.me.","ttl":7200,"class":"IN","type":"TXT","data":"\"ZoneTransfer.me service provided by Robin Wood - robin@digi.ninja. See http://digi.ninja/projects/zonetransferme.php for more information.\""},{"name":"internal.zonetransfer.me.","ttl":300,"class":"IN","type":"NS","data":"intns1.zonetransfer.me."},{"name":"internal.zonetransfer.me.","ttl":300,"class":"IN","type":"NS","data":"intns2.zonetransfer.me."},{"name":"intns1.zonetransfer.me.","ttl":300,"class":"IN","type":"A","data":"81.4.108.41"},{"name":"intns2.zonetransfer.me.","ttl":300,"class":"IN","type":"A","data":"167.88.42.94"},{"name":"office.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"4.23.39.254"},{"name":"ipv6actnow.org.zonetransfer.me.","ttl":7200,"class":"IN","type":"AAAA","data":"2001:67c:2e8:11::c100:1332"},{"name":"owa.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"207.46.197.32"},{"name":"robinwood.zonetransfer.me.","ttl":302,"class":"IN","type":"TXT","data":"\"Robin Wood\""},{"name":"rp.zonetransfer.me.","ttl":321,"class":"IN","type":"RP","data":"robin.zonetransfer.me. robinwood.zonetransfer.me."},{"name":"sip.zonetransfer.me.","ttl":3333,"class":"IN","type":"NAPTR","data":"2 3 \"P\" \"E2U+sip\" \"!^.*$!sip:customer-service@zonetransfer.me!\" ."},{"name":"sqli.zonetransfer.me.","ttl":300,"class":"IN","type":"TXT","data":"\"' or 1=1 --\""},{"name":"sshock.zonetransfer.me.","ttl":7200,"class":"IN","type":"TXT","data":"\"() { :]}; echo ShellShocked\""},{"name":"staging.zonetransfer.me.","ttl":7200,"class":"IN","type":"CNAME","data":"www.sydneyoperahouse.com."},{"name":"alltcpportsopen.firewall.test.zonetransfer.me.","ttl":301,"class":"IN","type":"A","data":"127.0.0.1"},{"name":"testing.zonetransfer.me.","ttl":301,"class":"IN","type":"CNAME","data":"www.zonetransfer.me."},{"name":"vpn.zonetransfer.me.","ttl":4000,"class":"IN","type":"A","data":"174.36.59.154"},{"name":"www.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"5.196.105.14"},{"name":"xss.zonetransfer.me.","ttl":300,"class":"IN","type":"TXT","data":"\"'>\""},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"SOA","data":"nsztm1.digi.ninja. robin.digi.ninja. 2019100801 172800 900 1209600 3600"}],"query_time":170,"server":"81.4.108.41#53(81.4.108.41)","when":"Thu Mar 26 16:31:06 PDT 2020","size":"50 records (messages 1, bytes 1994)","when_epoch":1585265466,"when_epoch_utc":null}] jc-1.17.3/tests/fixtures/osx-10.14.6/dig-axfr.out000066400000000000000000000066671415226333200211020ustar00rootroot00000000000000 ; <<>> DiG 9.10.6 <<>> @81.4.108.41 AXFR zonetransfer.me ; (1 server found) ;; global options: +cmd zonetransfer.me. 7200 IN SOA nsztm1.digi.ninja. robin.digi.ninja. 2019100801 172800 900 1209600 3600 zonetransfer.me. 300 IN HINFO "Casio fx-700G" "Windows XP" zonetransfer.me. 301 IN TXT "google-site-verification=tyP28J7JAUHA9fw2sHXMgcCC0I6XBmmoVi04VlMewxA" zonetransfer.me. 7200 IN MX 0 ASPMX.L.GOOGLE.COM. zonetransfer.me. 7200 IN MX 10 ALT1.ASPMX.L.GOOGLE.COM. zonetransfer.me. 7200 IN MX 10 ALT2.ASPMX.L.GOOGLE.COM. zonetransfer.me. 7200 IN MX 20 ASPMX2.GOOGLEMAIL.COM. zonetransfer.me. 7200 IN MX 20 ASPMX3.GOOGLEMAIL.COM. zonetransfer.me. 7200 IN MX 20 ASPMX4.GOOGLEMAIL.COM. zonetransfer.me. 7200 IN MX 20 ASPMX5.GOOGLEMAIL.COM. zonetransfer.me. 7200 IN A 5.196.105.14 zonetransfer.me. 7200 IN NS nsztm1.digi.ninja. zonetransfer.me. 7200 IN NS nsztm2.digi.ninja. _acme-challenge.zonetransfer.me. 301 IN TXT "6Oa05hbUJ9xSsvYy7pApQvwCUSSGgxvrbdizjePEsZI" _sip._tcp.zonetransfer.me. 14000 IN SRV 0 0 5060 www.zonetransfer.me. 14.105.196.5.IN-ADDR.ARPA.zonetransfer.me. 7200 IN PTR www.zonetransfer.me. asfdbauthdns.zonetransfer.me. 7900 IN AFSDB 1 asfdbbox.zonetransfer.me. asfdbbox.zonetransfer.me. 7200 IN A 127.0.0.1 asfdbvolume.zonetransfer.me. 7800 IN AFSDB 1 asfdbbox.zonetransfer.me. canberra-office.zonetransfer.me. 7200 IN A 202.14.81.230 cmdexec.zonetransfer.me. 300 IN TXT "; ls" contact.zonetransfer.me. 2592000 IN TXT "Remember to call or email Pippa on +44 123 4567890 or pippa@zonetransfer.me when making DNS changes" dc-office.zonetransfer.me. 7200 IN A 143.228.181.132 deadbeef.zonetransfer.me. 7201 IN AAAA dead:beaf:: dr.zonetransfer.me. 300 IN LOC 53 20 56.558 N 1 38 33.526 W 0.00m 1m 10000m 10m DZC.zonetransfer.me. 7200 IN TXT "AbCdEfG" email.zonetransfer.me. 2222 IN NAPTR 1 1 "P" "E2U+email" "" email.zonetransfer.me.zonetransfer.me. email.zonetransfer.me. 7200 IN A 74.125.206.26 Hello.zonetransfer.me. 7200 IN TXT "Hi to Josh and all his class" home.zonetransfer.me. 7200 IN A 127.0.0.1 Info.zonetransfer.me. 7200 IN TXT "ZoneTransfer.me service provided by Robin Wood - robin@digi.ninja. See http://digi.ninja/projects/zonetransferme.php for more information." internal.zonetransfer.me. 300 IN NS intns1.zonetransfer.me. internal.zonetransfer.me. 300 IN NS intns2.zonetransfer.me. intns1.zonetransfer.me. 300 IN A 81.4.108.41 intns2.zonetransfer.me. 300 IN A 167.88.42.94 office.zonetransfer.me. 7200 IN A 4.23.39.254 ipv6actnow.org.zonetransfer.me. 7200 IN AAAA 2001:67c:2e8:11::c100:1332 owa.zonetransfer.me. 7200 IN A 207.46.197.32 robinwood.zonetransfer.me. 302 IN TXT "Robin Wood" rp.zonetransfer.me. 321 IN RP robin.zonetransfer.me. robinwood.zonetransfer.me. sip.zonetransfer.me. 3333 IN NAPTR 2 3 "P" "E2U+sip" "!^.*$!sip:customer-service@zonetransfer.me!" . sqli.zonetransfer.me. 300 IN TXT "' or 1=1 --" sshock.zonetransfer.me. 7200 IN TXT "() { :]}; echo ShellShocked" staging.zonetransfer.me. 7200 IN CNAME www.sydneyoperahouse.com. alltcpportsopen.firewall.test.zonetransfer.me. 301 IN A 127.0.0.1 testing.zonetransfer.me. 301 IN CNAME www.zonetransfer.me. vpn.zonetransfer.me. 4000 IN A 174.36.59.154 www.zonetransfer.me. 7200 IN A 5.196.105.14 xss.zonetransfer.me. 300 IN TXT "'>" zonetransfer.me. 7200 IN SOA nsztm1.digi.ninja. robin.digi.ninja. 2019100801 172800 900 1209600 3600 ;; Query time: 170 msec ;; SERVER: 81.4.108.41#53(81.4.108.41) ;; WHEN: Thu Mar 26 16:31:06 PDT 2020 ;; XFR size: 50 records (messages 1, bytes 1994) jc-1.17.3/tests/fixtures/osx-10.14.6/dig-noall-answer.json000066400000000000000000000005001415226333200226620ustar00rootroot00000000000000[{"answer":[{"name":"cnn.com.","class":"IN","type":"A","ttl":47,"data":"151.101.65.67"},{"name":"cnn.com.","class":"IN","type":"A","ttl":47,"data":"151.101.193.67"},{"name":"cnn.com.","class":"IN","type":"A","ttl":47,"data":"151.101.129.67"},{"name":"cnn.com.","class":"IN","type":"A","ttl":47,"data":"151.101.1.67"}]}] jc-1.17.3/tests/fixtures/osx-10.14.6/dig-noall-answer.out000066400000000000000000000002011415226333200225160ustar00rootroot00000000000000cnn.com. 47 IN A 151.101.65.67 cnn.com. 47 IN A 151.101.193.67 cnn.com. 47 IN A 151.101.129.67 cnn.com. 47 IN A 151.101.1.67 jc-1.17.3/tests/fixtures/osx-10.14.6/dig-x.json000066400000000000000000000010511415226333200205310ustar00rootroot00000000000000[{"id":27071,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":4096}},"question":{"name":"1.1.1.1.in-addr.arpa.","class":"IN","type":"PTR"},"answer":[{"name":"1.1.1.1.in-addr.arpa.","class":"IN","type":"PTR","ttl":1800,"data":"one.one.one.one."}],"query_time":39,"server":"2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)","when":"Wed Dec 11 16:54:51 PST 2019","rcvd":78,"when_epoch":1576112091,"when_epoch_utc":null}] jc-1.17.3/tests/fixtures/osx-10.14.6/dig-x.out000066400000000000000000000010211415226333200203640ustar00rootroot00000000000000 ; <<>> DiG 9.10.6 <<>> -x 1.1.1.1 ;; global options: +cmd ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 27071 ;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1 ;; OPT PSEUDOSECTION: ; EDNS: version: 0, flags:; udp: 4096 ;; QUESTION SECTION: ;1.1.1.1.in-addr.arpa. IN PTR ;; ANSWER SECTION: 1.1.1.1.in-addr.arpa. 1800 IN PTR one.one.one.one. ;; Query time: 39 msec ;; SERVER: 2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1) ;; WHEN: Wed Dec 11 16:54:51 PST 2019 ;; MSG SIZE rcvd: 78 jc-1.17.3/tests/fixtures/osx-10.14.6/dig.json000066400000000000000000000026471415226333200203000ustar00rootroot00000000000000[{"id":54065,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":5,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":4096}},"question":{"name":"www.cnn.com.","class":"IN","type":"A"},"answer":[{"name":"www.cnn.com.","class":"IN","type":"CNAME","ttl":72,"data":"turner-tls.map.fastly.net."},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":1,"data":"151.101.65.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":1,"data":"151.101.1.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":1,"data":"151.101.193.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":1,"data":"151.101.129.67"}],"query_time":41,"server":"2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)","when":"Wed Dec 11 16:54:50 PST 2019","rcvd":143,"when_epoch":1576112090,"when_epoch_utc":null},{"id":64484,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":4096}},"question":{"name":"www.google.com.","class":"IN","type":"A"},"answer":[{"name":"www.google.com.","class":"IN","type":"A","ttl":64,"data":"172.217.12.68"}],"query_time":31,"server":"2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)","when":"Wed Dec 11 16:54:50 PST 2019","rcvd":59,"when_epoch":1576112090,"when_epoch_utc":null}] jc-1.17.3/tests/fixtures/osx-10.14.6/dig.out000066400000000000000000000022361415226333200201300ustar00rootroot00000000000000 ; <<>> DiG 9.10.6 <<>> www.cnn.com www.google.com ;; global options: +cmd ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 54065 ;; flags: qr rd ra; QUERY: 1, ANSWER: 5, AUTHORITY: 0, ADDITIONAL: 1 ;; OPT PSEUDOSECTION: ; EDNS: version: 0, flags:; udp: 4096 ;; QUESTION SECTION: ;www.cnn.com. IN A ;; ANSWER SECTION: www.cnn.com. 72 IN CNAME turner-tls.map.fastly.net. turner-tls.map.fastly.net. 1 IN A 151.101.65.67 turner-tls.map.fastly.net. 1 IN A 151.101.1.67 turner-tls.map.fastly.net. 1 IN A 151.101.193.67 turner-tls.map.fastly.net. 1 IN A 151.101.129.67 ;; Query time: 41 msec ;; SERVER: 2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1) ;; WHEN: Wed Dec 11 16:54:50 PST 2019 ;; MSG SIZE rcvd: 143 ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 64484 ;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1 ;; OPT PSEUDOSECTION: ; EDNS: version: 0, flags:; udp: 4096 ;; QUESTION SECTION: ;www.google.com. IN A ;; ANSWER SECTION: www.google.com. 64 IN A 172.217.12.68 ;; Query time: 31 msec ;; SERVER: 2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1) ;; WHEN: Wed Dec 11 16:54:50 PST 2019 ;; MSG SIZE rcvd: 59 jc-1.17.3/tests/fixtures/osx-10.14.6/du.json000066400000000000000000011015441415226333200201420ustar00rootroot00000000000000[{"size": 104608, "name": "/usr/bin"}, {"size": 56, "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/_CodeSignature"}, {"size": 0, "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/Resources/Firmware/usr/local/standalone"}, {"size": 0, "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/Resources/Firmware/usr/local"}, {"size": 0, "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/Resources/Firmware/usr"}, {"size": 1008, "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/Resources/Firmware/dfu"}, {"size": 11528, "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/Resources/Firmware/all_flash/all_flash.x619dev.production"}, {"size": 11536, "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/Resources/Firmware/all_flash/all_flash.x619ap.production"}, {"size": 23064, "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/Resources/Firmware/all_flash"}, {"size": 24072, "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/Resources/Firmware"}, {"size": 124040, "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/Resources"}, {"size": 124112, "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle/Contents"}, {"size": 124112, "name": "/usr/standalone/firmware/iBridge1_1Customer.bundle"}, {"size": 11256, "name": "/usr/standalone/firmware/nfrestore/firmware/jcop-prod"}, {"size": 624, "name": "/usr/standalone/firmware/nfrestore/firmware/fw"}, {"size": 11264, "name": "/usr/standalone/firmware/nfrestore/firmware/jcop-dev"}, {"size": 0, "name": "/usr/standalone/firmware/nfrestore/firmware/fw-mfg"}, {"size": 23144, "name": "/usr/standalone/firmware/nfrestore/firmware"}, {"size": 23144, "name": "/usr/standalone/firmware/nfrestore"}, {"size": 232, "name": "/usr/standalone/firmware/FUD/MultiUpdater"}, {"size": 232, "name": "/usr/standalone/firmware/FUD"}, {"size": 147488, "name": "/usr/standalone/firmware"}, {"size": 17672, "name": "/usr/standalone/i386/EfiLoginUI"}, {"size": 40, "name": "/usr/standalone/i386/SecureBoot.bundle/Contents/_CodeSignature"}, {"size": 752, "name": "/usr/standalone/i386/SecureBoot.bundle/Contents/Resources"}, {"size": 808, "name": "/usr/standalone/i386/SecureBoot.bundle/Contents"}, {"size": 808, "name": "/usr/standalone/i386/SecureBoot.bundle"}, {"size": 51648, "name": "/usr/standalone/i386"}, {"size": 199144, "name": "/usr/standalone"}, {"size": 80, "name": "/usr/libexec/AppSandbox"}, {"size": 152, "name": "/usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle/Contents/MacOS"}, {"size": 176, "name": "/usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle/Contents"}, {"size": 176, "name": "/usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle"}, {"size": 176, "name": "/usr/libexec/SmartCardServices/drivers"}, {"size": 176, "name": "/usr/libexec/SmartCardServices"}, {"size": 56, "name": "/usr/libexec/firmwarecheckers/ethcheck"}, {"size": 928, "name": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"size": 928, "name": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle"}, {"size": 0, "name": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/he.lproj"}, {"size": 0, "name": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/en_AU.lproj"}, {"size": 0, "name": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/ar.lproj"}, {"size": 0, "name": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/el.lproj"}, {"size": 0, "name": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/uk.lproj"}, {"size": 0, "name": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/English.lproj"}, {"size": 0, "name": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/es_419.lproj"}, {"size": 0, "name": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/zh_CN.lproj"}, {"size": 0, "name": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/Dutch.lproj"}, {"size": 0, "name": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/da.lproj"}, {"size": 0, "name": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/sk.lproj"}, {"size": 0, "name": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/pt_PT.lproj"}, {"size": 0, "name": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/German.lproj"}, {"size": 0, "name": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/ms.lproj"}, {"size": 0, "name": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/sv.lproj"}, {"size": 0, "name": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/cs.lproj"}, {"size": 0, "name": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/ko.lproj"}, {"size": 0, "name": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/no.lproj"}, {"size": 0, "name": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/hu.lproj"}, {"size": 0, "name": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/zh_HK.lproj"}, {"size": 0, "name": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/Spanish.lproj"}, {"size": 0, "name": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/tr.lproj"}, {"size": 0, "name": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/pl.lproj"}, {"size": 0, "name": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/zh_TW.lproj"}, {"size": 0, "name": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/en_GB.lproj"}, {"size": 0, "name": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/French.lproj"}, {"size": 0, "name": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/vi.lproj"}, {"size": 0, "name": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/ru.lproj"}, {"size": 0, "name": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/fr_CA.lproj"}, {"size": 0, "name": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/fi.lproj"}, {"size": 0, "name": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/id.lproj"}, {"size": 0, "name": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/th.lproj"}, {"size": 0, "name": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/pt.lproj"}, {"size": 0, "name": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/ro.lproj"}, {"size": 0, "name": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/Japanese.lproj"}, {"size": 0, "name": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/hr.lproj"}, {"size": 0, "name": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/hi.lproj"}, {"size": 0, "name": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/Italian.lproj"}, {"size": 0, "name": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/ca.lproj"}, {"size": 0, "name": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources"}, {"size": 0, "name": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents"}, {"size": 0, "name": "/usr/libexec/firmwarecheckers/eficheck/localization"}, {"size": 1040, "name": "/usr/libexec/firmwarecheckers/eficheck"}, {"size": 1096, "name": "/usr/libexec/firmwarecheckers"}, {"size": 32, "name": "/usr/libexec/AssetCache/AssetCache.momd"}, {"size": 2120, "name": "/usr/libexec/AssetCache"}, {"size": 0, "name": "/usr/libexec/AssetCacheAgent/de.lproj"}, {"size": 0, "name": "/usr/libexec/AssetCacheAgent/he.lproj"}, {"size": 0, "name": "/usr/libexec/AssetCacheAgent/en_AU.lproj"}, {"size": 0, "name": "/usr/libexec/AssetCacheAgent/ar.lproj"}, {"size": 0, "name": "/usr/libexec/AssetCacheAgent/el.lproj"}, {"size": 0, "name": "/usr/libexec/AssetCacheAgent/ja.lproj"}, {"size": 0, "name": "/usr/libexec/AssetCacheAgent/en.lproj"}, {"size": 0, "name": "/usr/libexec/AssetCacheAgent/uk.lproj"}, {"size": 0, "name": "/usr/libexec/AssetCacheAgent/es_419.lproj"}, {"size": 0, "name": "/usr/libexec/AssetCacheAgent/zh_CN.lproj"}, {"size": 0, "name": "/usr/libexec/AssetCacheAgent/es.lproj"}, {"size": 0, "name": "/usr/libexec/AssetCacheAgent/da.lproj"}, {"size": 0, "name": "/usr/libexec/AssetCacheAgent/it.lproj"}, {"size": 0, "name": "/usr/libexec/AssetCacheAgent/sk.lproj"}, {"size": 0, "name": "/usr/libexec/AssetCacheAgent/pt_PT.lproj"}, {"size": 0, "name": "/usr/libexec/AssetCacheAgent/ms.lproj"}, {"size": 0, "name": "/usr/libexec/AssetCacheAgent/sv.lproj"}, {"size": 0, "name": "/usr/libexec/AssetCacheAgent/cs.lproj"}, {"size": 0, "name": "/usr/libexec/AssetCacheAgent/ko.lproj"}, {"size": 0, "name": "/usr/libexec/AssetCacheAgent/no.lproj"}, {"size": 0, "name": "/usr/libexec/AssetCacheAgent/hu.lproj"}, {"size": 0, "name": "/usr/libexec/AssetCacheAgent/zh_HK.lproj"}, {"size": 0, "name": "/usr/libexec/AssetCacheAgent/tr.lproj"}, {"size": 0, "name": "/usr/libexec/AssetCacheAgent/pl.lproj"}, {"size": 0, "name": "/usr/libexec/AssetCacheAgent/zh_TW.lproj"}, {"size": 0, "name": "/usr/libexec/AssetCacheAgent/en_GB.lproj"}, {"size": 0, "name": "/usr/libexec/AssetCacheAgent/vi.lproj"}, {"size": 0, "name": "/usr/libexec/AssetCacheAgent/ru.lproj"}, {"size": 0, "name": "/usr/libexec/AssetCacheAgent/fr_CA.lproj"}, {"size": 0, "name": "/usr/libexec/AssetCacheAgent/fr.lproj"}, {"size": 0, "name": "/usr/libexec/AssetCacheAgent/fi.lproj"}, {"size": 0, "name": "/usr/libexec/AssetCacheAgent/id.lproj"}, {"size": 0, "name": "/usr/libexec/AssetCacheAgent/nl.lproj"}, {"size": 0, "name": "/usr/libexec/AssetCacheAgent/th.lproj"}, {"size": 0, "name": "/usr/libexec/AssetCacheAgent/pt.lproj"}, {"size": 0, "name": "/usr/libexec/AssetCacheAgent/ro.lproj"}, {"size": 0, "name": "/usr/libexec/AssetCacheAgent/hr.lproj"}, {"size": 0, "name": "/usr/libexec/AssetCacheAgent/hi.lproj"}, {"size": 0, "name": "/usr/libexec/AssetCacheAgent/ca.lproj"}, {"size": 32, "name": "/usr/libexec/AssetCacheAgent"}, {"size": 16, "name": "/usr/libexec/fax"}, {"size": 16, "name": "/usr/libexec/MiniTerm.app/Contents/_CodeSignature"}, {"size": 24, "name": "/usr/libexec/MiniTerm.app/Contents/MacOS"}, {"size": 0, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/de.lproj"}, {"size": 0, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/he.lproj"}, {"size": 0, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/en_AU.lproj"}, {"size": 0, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/ar.lproj"}, {"size": 0, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/el.lproj"}, {"size": 0, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/ja.lproj"}, {"size": 0, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/uk.lproj"}, {"size": 0, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/es_419.lproj"}, {"size": 0, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/zh_CN.lproj"}, {"size": 0, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/es.lproj"}, {"size": 0, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/da.lproj"}, {"size": 0, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/it.lproj"}, {"size": 0, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/sk.lproj"}, {"size": 0, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/pt_PT.lproj"}, {"size": 0, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/ms.lproj"}, {"size": 0, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/sv.lproj"}, {"size": 0, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/cs.lproj"}, {"size": 0, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/ko.lproj"}, {"size": 32, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/Base.lproj"}, {"size": 0, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/no.lproj"}, {"size": 0, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/hu.lproj"}, {"size": 0, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/zh_HK.lproj"}, {"size": 0, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/tr.lproj"}, {"size": 0, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/pl.lproj"}, {"size": 0, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/zh_TW.lproj"}, {"size": 0, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/en_GB.lproj"}, {"size": 0, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/vi.lproj"}, {"size": 0, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/ru.lproj"}, {"size": 0, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/fr_CA.lproj"}, {"size": 0, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/fr.lproj"}, {"size": 0, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/fi.lproj"}, {"size": 0, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/id.lproj"}, {"size": 0, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/nl.lproj"}, {"size": 0, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/th.lproj"}, {"size": 0, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/pt.lproj"}, {"size": 0, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/ro.lproj"}, {"size": 0, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/hr.lproj"}, {"size": 0, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/hi.lproj"}, {"size": 0, "name": "/usr/libexec/MiniTerm.app/Contents/Resources/ca.lproj"}, {"size": 32, "name": "/usr/libexec/MiniTerm.app/Contents/Resources"}, {"size": 72, "name": "/usr/libexec/MiniTerm.app/Contents"}, {"size": 72, "name": "/usr/libexec/MiniTerm.app"}, {"size": 0, "name": "/usr/libexec/dtrace"}, {"size": 168, "name": "/usr/libexec/emacs/22.1/mac-apple-darwin"}, {"size": 168, "name": "/usr/libexec/emacs/22.1"}, {"size": 168, "name": "/usr/libexec/emacs"}, {"size": 96, "name": "/usr/libexec/feedback"}, {"size": 13664, "name": "/usr/libexec/apache2"}, {"size": 0, "name": "/usr/libexec/postfix/scripts"}, {"size": 9496, "name": "/usr/libexec/postfix"}, {"size": 56, "name": "/usr/libexec/wfs"}, {"size": 200, "name": "/usr/libexec/cups/apple"}, {"size": 32, "name": "/usr/libexec/cups/monitor"}, {"size": 48, "name": "/usr/libexec/cups/notifier"}, {"size": 0, "name": "/usr/libexec/cups/driver"}, {"size": 408, "name": "/usr/libexec/cups/backend"}, {"size": 120, "name": "/usr/libexec/cups/daemon"}, {"size": 136, "name": "/usr/libexec/cups/cgi-bin"}, {"size": 1496, "name": "/usr/libexec/cups/filter"}, {"size": 2440, "name": "/usr/libexec/cups"}, {"size": 128, "name": "/usr/libexec/DeveloperTools"}, {"size": 144, "name": "/usr/libexec/ApplicationFirewall"}, {"size": 75000, "name": "/usr/libexec"}, {"size": 40256, "name": "/usr/sbin"}, {"size": 16, "name": "/usr/local/ibmcloud/autocomplete"}, {"size": 43736, "name": "/usr/local/ibmcloud/bin/cfcli"}, {"size": 110272, "name": "/usr/local/ibmcloud/bin"}, {"size": 110296, "name": "/usr/local/ibmcloud"}, {"size": 368, "name": "/usr/local/bin"}, {"size": 13248, "name": "/usr/local/jamf/bin"}, {"size": 13248, "name": "/usr/local/jamf"}, {"size": 0, "name": "/usr/local/include"}, {"size": 0, "name": "/usr/local/sbin"}, {"size": 0, "name": "/usr/local/etc/bash_completion.d"}, {"size": 0, "name": "/usr/local/etc/default"}, {"size": 80, "name": "/usr/local/etc/openssl/misc"}, {"size": 648, "name": "/usr/local/etc/openssl"}, {"size": 648, "name": "/usr/local/etc"}, {"size": 8, "name": "/usr/local/Homebrew/bin"}, {"size": 40, "name": "/usr/local/Homebrew/completions/bash"}, {"size": 72, "name": "/usr/local/Homebrew/completions/zsh"}, {"size": 104, "name": "/usr/local/Homebrew/completions/fish"}, {"size": 224, "name": "/usr/local/Homebrew/completions"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/cmd"}, {"size": 41088, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/Formula"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.github/workflows"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.github/ISSUE_TEMPLATE"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.github"}, {"size": 53152, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/objects/pack"}, {"size": 0, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/objects/info"}, {"size": 53152, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/objects"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/info"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/logs/refs/heads"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/logs/refs/remotes/origin"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/logs/refs/remotes"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/logs/refs"}, {"size": 32, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/logs"}, {"size": 96, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/hooks"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/refs/heads"}, {"size": 0, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/refs/tags"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/refs/remotes/origin"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/refs/remotes"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/refs"}, {"size": 54224, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git"}, {"size": 0, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/Aliases"}, {"size": 95432, "name": "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core"}, {"size": 95432, "name": "/usr/local/Homebrew/Library/Taps/homebrew"}, {"size": 95432, "name": "/usr/local/Homebrew/Library/Taps"}, {"size": 624, "name": "/usr/local/Homebrew/Library/Homebrew/cmd"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/extend/ENV"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/extend/os/extend/ENV"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/extend/os/extend"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/extend/os/language"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/extend/os/requirements"}, {"size": 32, "name": "/usr/local/Homebrew/Library/Homebrew/extend/os/mac/extend/ENV"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/extend/os/mac/extend"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/extend/os/mac/hardware"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/extend/os/mac/unpack_strategy"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/extend/os/mac/utils"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/extend/os/mac/language"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/extend/os/mac/requirements"}, {"size": 240, "name": "/usr/local/Homebrew/Library/Homebrew/extend/os/mac"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/extend/os/linux/extend/ENV"}, {"size": 32, "name": "/usr/local/Homebrew/Library/Homebrew/extend/os/linux/extend"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/extend/os/linux/hardware"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/extend/os/linux/requirements"}, {"size": 144, "name": "/usr/local/Homebrew/Library/Homebrew/extend/os/linux"}, {"size": 600, "name": "/usr/local/Homebrew/Library/Homebrew/extend/os"}, {"size": 768, "name": "/usr/local/Homebrew/Library/Homebrew/extend"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/compat/requirements"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/compat/cask/dsl"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/compat/cask"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/compat"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/rubocops/extend"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/rubocops/cask/extend"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/rubocops/cask/constants"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/rubocops/cask/mixin"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/rubocops/cask/ast"}, {"size": 112, "name": "/usr/local/Homebrew/Library/Homebrew/rubocops/cask"}, {"size": 344, "name": "/usr/local/Homebrew/Library/Homebrew/rubocops"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/test/cmd/shared_examples"}, {"size": 432, "name": "/usr/local/Homebrew/Library/Homebrew/test/cmd"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/test/hardware"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/test/rubocops/cask/shared_examples"}, {"size": 72, "name": "/usr/local/Homebrew/Library/Homebrew/test/rubocops/cask"}, {"size": 288, "name": "/usr/local/Homebrew/Library/Homebrew/test/rubocops"}, {"size": 160, "name": "/usr/local/Homebrew/Library/Homebrew/test/unpack_strategy"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/test/utils/bottles"}, {"size": 112, "name": "/usr/local/Homebrew/Library/Homebrew/test/utils"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/test/language"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/test/requirements"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/test/cli"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/test/support/lib"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/test/support/fixtures/patches"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/test/support/fixtures/tarballs"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/test/support/fixtures/bottles"}, {"size": 200, "name": "/usr/local/Homebrew/Library/Homebrew/test/support/fixtures/mach"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/test/support/fixtures/cask/Casks/compat"}, {"size": 136, "name": "/usr/local/Homebrew/Library/Homebrew/test/support/fixtures/cask/Casks/invalid"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/test/support/fixtures/cask/Casks/outdated"}, {"size": 1200, "name": "/usr/local/Homebrew/Library/Homebrew/test/support/fixtures/cask/Casks"}, {"size": 1528, "name": "/usr/local/Homebrew/Library/Homebrew/test/support/fixtures/cask"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/test/support/fixtures/third-party/Casks"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/test/support/fixtures/third-party"}, {"size": 32, "name": "/usr/local/Homebrew/Library/Homebrew/test/support/fixtures/elf"}, {"size": 2024, "name": "/usr/local/Homebrew/Library/Homebrew/test/support/fixtures"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/test/support/helper/spec/shared_context"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/test/support/helper/spec"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/test/support/helper/cask"}, {"size": 88, "name": "/usr/local/Homebrew/Library/Homebrew/test/support/helper"}, {"size": 2128, "name": "/usr/local/Homebrew/Library/Homebrew/test/support"}, {"size": 64, "name": "/usr/local/Homebrew/Library/Homebrew/test/os/mac"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/test/os/linux"}, {"size": 96, "name": "/usr/local/Homebrew/Library/Homebrew/test/os"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/test/cask/cmd/shared_examples"}, {"size": 216, "name": "/usr/local/Homebrew/Library/Homebrew/test/cask/cmd"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/test/cask/cask_loader"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/test/cask/artifact/shared_examples"}, {"size": 144, "name": "/usr/local/Homebrew/Library/Homebrew/test/cask/artifact"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/test/cask/dsl/shared_examples"}, {"size": 88, "name": "/usr/local/Homebrew/Library/Homebrew/test/cask/dsl"}, {"size": 672, "name": "/usr/local/Homebrew/Library/Homebrew/test/cask"}, {"size": 184, "name": "/usr/local/Homebrew/Library/Homebrew/test/dev-cmd"}, {"size": 5184, "name": "/usr/local/Homebrew/Library/Homebrew/test"}, {"size": 280, "name": "/usr/local/Homebrew/Library/Homebrew/unpack_strategy"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/.bundle"}, {"size": 176, "name": "/usr/local/Homebrew/Library/Homebrew/utils"}, {"size": 64, "name": "/usr/local/Homebrew/Library/Homebrew/language"}, {"size": 72, "name": "/usr/local/Homebrew/Library/Homebrew/requirements"}, {"size": 32, "name": "/usr/local/Homebrew/Library/Homebrew/cli"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/manpages"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/version"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/debrew"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.8"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.6"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.7"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.9"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.10"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.11"}, {"size": 0, "name": "/usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/fuse"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.5"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.14"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.13"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.12"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.15"}, {"size": 520, "name": "/usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig"}, {"size": 592, "name": "/usr/local/Homebrew/Library/Homebrew/os/mac"}, {"size": 48, "name": "/usr/local/Homebrew/Library/Homebrew/os/linux"}, {"size": 680, "name": "/usr/local/Homebrew/Library/Homebrew/os"}, {"size": 184, "name": "/usr/local/Homebrew/Library/Homebrew/cask/cmd"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/cask/utils"}, {"size": 264, "name": "/usr/local/Homebrew/Library/Homebrew/cask/artifact"}, {"size": 96, "name": "/usr/local/Homebrew/Library/Homebrew/cask/dsl"}, {"size": 872, "name": "/usr/local/Homebrew/Library/Homebrew/cask"}, {"size": 18632, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/bin"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/.brew"}, {"size": 512, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/libexec"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/include/ruby-2.6.0/x86_64-darwin13/ruby"}, {"size": 1288, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/include/ruby-2.6.0/x86_64-darwin13"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/include/ruby-2.6.0/ruby/backward"}, {"size": 584, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/include/ruby-2.6.0/ruby"}, {"size": 1880, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/include/ruby-2.6.0"}, {"size": 1880, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/include"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/pkgconfig"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/tracer"}, {"size": 448, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/unicode_normalize"}, {"size": 224, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/drb"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/syslog"}, {"size": 152, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/net/http"}, {"size": 720, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/net"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/optparse"}, {"size": 96, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/shell"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/irb/cmd"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/irb/lc/ja"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/irb/lc"}, {"size": 72, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/irb/ext"}, {"size": 488, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/irb"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/digest"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rss/content"}, {"size": 256, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rss/maker"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rss/dublincore"}, {"size": 704, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rss"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/io/console"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/io"}, {"size": 48, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bigdecimal"}, {"size": 96, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/fiddle"}, {"size": 32, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/x86_64-darwin13"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/ssl_certs/rubygems.global.ssl.fastly.net"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/ssl_certs/index.rubygems.org"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/ssl_certs/rubygems.org"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/ssl_certs"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/util"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/core_ext"}, {"size": 48, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/security"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/ext"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/source"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/request"}, {"size": 448, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/commands"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/request_set/lockfile"}, {"size": 88, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/request_set"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/delegates"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/modules"}, {"size": 72, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/dependency_graph"}, {"size": 192, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo"}, {"size": 200, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib"}, {"size": 200, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/resolver/molinillo"}, {"size": 416, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/resolver"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/package/tar_reader"}, {"size": 96, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/package"}, {"size": 2568, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems"}, {"size": 88, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/psych/visitors"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/psych/nodes"}, {"size": 32, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/psych/json"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/psych/handlers"}, {"size": 344, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/psych"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/cgi/session"}, {"size": 216, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/cgi"}, {"size": 104, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/json/add"}, {"size": 160, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/json"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/thwait"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/csv/core_ext"}, {"size": 184, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/csv"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/racc"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/yaml"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/fileutils"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/forwardable"}, {"size": 88, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/webrick/httpservlet"}, {"size": 88, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/webrick/httpauth"}, {"size": 512, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/webrick"}, {"size": 80, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rinda"}, {"size": 136, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/openssl"}, {"size": 256, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/uri"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/ripper"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/context"}, {"size": 136, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/markdown"}, {"size": 120, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/ri"}, {"size": 280, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/parser"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/generator/template/darkfish/css"}, {"size": 208, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/generator/template/darkfish/images"}, {"size": 208, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/generator/template/darkfish/js"}, {"size": 1048, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/generator/template/darkfish/fonts"}, {"size": 1680, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/generator/template/darkfish"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/generator/template/json_index/js"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/generator/template/json_index"}, {"size": 1704, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/generator/template"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/generator/pot"}, {"size": 1816, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/generator"}, {"size": 416, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/markup"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/i18n"}, {"size": 120, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/rd"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/stats"}, {"size": 4448, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc"}, {"size": 64, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/matrix"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/e2mmap"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/compact_index_client"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/ui"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/ssl_certs/rubygems.global.ssl.fastly.net"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/ssl_certs/index.rubygems.org"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/ssl_certs/rubygems.org"}, {"size": 32, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/ssl_certs"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/settings"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/source/path"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/source/rubygems"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/source/git"}, {"size": 136, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/source"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/plugin/api"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/plugin/installer"}, {"size": 96, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/plugin"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/fetcher"}, {"size": 272, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/cli"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/templates/newgem/test"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/templates/newgem/bin"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/templates/newgem/ext/newgem"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/templates/newgem/ext"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/templates/newgem/spec"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/templates/newgem/lib/newgem"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/templates/newgem/lib"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/templates/newgem/exe"}, {"size": 168, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/templates/newgem"}, {"size": 208, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/templates"}, {"size": 32, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/installer"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/resolver"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/thor/lib/thor/line_editor"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/thor/lib/thor/core_ext"}, {"size": 64, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/thor/lib/thor/shell"}, {"size": 48, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/thor/lib/thor/parser"}, {"size": 80, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/thor/lib/thor/actions"}, {"size": 456, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/thor/lib/thor"}, {"size": 488, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/thor/lib"}, {"size": 488, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/thor"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/net-http-persistent/lib/net/http/persistent"}, {"size": 96, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/net-http-persistent/lib/net/http"}, {"size": 96, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/net-http-persistent/lib/net"}, {"size": 96, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/net-http-persistent/lib"}, {"size": 96, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/net-http-persistent"}, {"size": 96, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/fileutils/lib"}, {"size": 96, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/fileutils"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/molinillo/lib/molinillo/delegates"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/molinillo/lib/molinillo/modules"}, {"size": 80, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/molinillo/lib/molinillo/dependency_graph"}, {"size": 248, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/molinillo/lib/molinillo"}, {"size": 256, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/molinillo/lib"}, {"size": 256, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/molinillo"}, {"size": 936, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor"}, {"size": 2840, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler"}, {"size": 160, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rexml/parsers"}, {"size": 32, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rexml/formatters"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rexml/dtd"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rexml/light"}, {"size": 48, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rexml/validation"}, {"size": 800, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rexml"}, {"size": 18120, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0"}, {"size": 256, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/specifications/default"}, {"size": 320, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/specifications"}, {"size": 776, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/cache"}, {"size": 48, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rake-12.3.2/bin"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rake-12.3.2/lib/rake/ext"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rake-12.3.2/lib/rake/loaders"}, {"size": 496, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rake-12.3.2/lib/rake"}, {"size": 504, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rake-12.3.2/lib"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rake-12.3.2/doc/example"}, {"size": 168, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rake-12.3.2/doc"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rake-12.3.2/exe"}, {"size": 944, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rake-12.3.2"}, {"size": 224, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/minitest-5.11.3/test/minitest"}, {"size": 224, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/minitest-5.11.3/test"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/minitest-5.11.3/lib/hoe"}, {"size": 184, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/minitest-5.11.3/lib/minitest"}, {"size": 240, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/minitest-5.11.3/lib"}, {"size": 632, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/minitest-5.11.3"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rdoc-6.1.0/exe"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rdoc-6.1.0"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/bundler-1.17.2/exe"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/bundler-1.17.2"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/net-telnet-0.2.0/bin"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/net-telnet-0.2.0/lib/net/telnet"}, {"size": 72, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/net-telnet-0.2.0/lib/net"}, {"size": 80, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/net-telnet-0.2.0/lib"}, {"size": 152, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/net-telnet-0.2.0"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/irb-1.0.0/exe"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/irb-1.0.0"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/xmlrpc-0.3.0/bin"}, {"size": 168, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/xmlrpc-0.3.0/lib/xmlrpc"}, {"size": 184, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/xmlrpc-0.3.0/lib"}, {"size": 256, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/xmlrpc-0.3.0"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/power_assert-1.1.3/bin"}, {"size": 72, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/power_assert-1.1.3/lib/power_assert"}, {"size": 80, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/power_assert-1.1.3/lib"}, {"size": 168, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/power_assert-1.1.3"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/benchmark/levenshtein"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/benchmark/jaro_winkler"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/benchmark"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/test/edit_distance"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/test/experimental"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/test/core_ext"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/test/spell_checking"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/test/fixtures"}, {"size": 104, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/test"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/experimental"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/core_ext"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/formatters"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/spell_checkers/name_error_checkers"}, {"size": 48, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/spell_checkers"}, {"size": 136, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean"}, {"size": 144, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/lib"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/doc"}, {"size": 0, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/tmp"}, {"size": 424, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/test/ui"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/test/util"}, {"size": 80, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/test/collector"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/test/fixtures"}, {"size": 664, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/test"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/sample"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/lib/test/unit/ui/emacs"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/lib/test/unit/ui/xml"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/lib/test/unit/ui/console"}, {"size": 104, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/lib/test/unit/ui"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/lib/test/unit/util"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/lib/test/unit/runner"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/lib/test/unit/collector"}, {"size": 792, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/lib/test/unit"}, {"size": 824, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/lib/test"}, {"size": 832, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/lib"}, {"size": 96, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/doc/text"}, {"size": 96, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/doc"}, {"size": 1784, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9"}, {"size": 4400, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems"}, {"size": 5496, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0"}, {"size": 5496, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems"}, {"size": 23616, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby"}, {"size": 31992, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib"}, {"size": 0, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/.bottle/var/homebrew/locks"}, {"size": 0, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/.bottle/var/homebrew"}, {"size": 0, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/.bottle/var"}, {"size": 0, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/.bottle"}, {"size": 48, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/share/man/man5"}, {"size": 368, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/share/man/man1"}, {"size": 416, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/share/man"}, {"size": 416, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/share"}, {"size": 59088, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3"}, {"size": 59088, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/bundler"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/mechanize-2.7.6/lib/mechanize/http"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/mechanize-2.7.6/lib/mechanize"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/mechanize-2.7.6/lib"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/mechanize-2.7.6"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/plist-3.5.0/lib/plist"}, {"size": 48, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/plist-3.5.0/lib"}, {"size": 48, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/plist-3.5.0"}, {"size": 312, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/ruby-macho-2.2.0/lib/macho"}, {"size": 320, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/ruby-macho-2.2.0/lib"}, {"size": 320, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/ruby-macho-2.2.0"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.5.0/config"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.5.0/lib/rubocop/performance"}, {"size": 232, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.5.0/lib/rubocop/cop/performance"}, {"size": 240, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.5.0/lib/rubocop/cop"}, {"size": 264, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.5.0/lib/rubocop"}, {"size": 272, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.5.0/lib"}, {"size": 288, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.5.0"}, {"size": 136, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/thread_safe-0.3.6/lib/thread_safe"}, {"size": 144, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/thread_safe-0.3.6/lib"}, {"size": 144, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/thread_safe-0.3.6"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/locale"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/file"}, {"size": 96, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/hash"}, {"size": 64, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/array"}, {"size": 128, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/module"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/digest"}, {"size": 48, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/date"}, {"size": 48, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/date_time"}, {"size": 64, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/time"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/numeric"}, {"size": 104, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/object"}, {"size": 32, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/class"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/integer"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/big_decimal"}, {"size": 136, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/string"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/date_and_time"}, {"size": 48, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/range"}, {"size": 32, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/kernel"}, {"size": 1120, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext"}, {"size": 72, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/inflector"}, {"size": 2232, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/values"}, {"size": 72, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/deprecation"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/xml_mini"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/notifications"}, {"size": 4224, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support"}, {"size": 4224, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib"}, {"size": 4224, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3"}, {"size": 16, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic_reference"}, {"size": 104, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent/collection/map"}, {"size": 160, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent/collection"}, {"size": 136, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization"}, {"size": 48, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent/concern"}, {"size": 240, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic"}, {"size": 72, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent/thread_safe/util"}, {"size": 88, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent/thread_safe"}, {"size": 224, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor"}, {"size": 56, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent/utility"}, {"size": 1632, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent"}, {"size": 1656, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib"}, {"size": 1656, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/i18n-1.7.0/lib/i18n/locale/tag"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/i18n-1.7.0/lib/i18n/locale"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/i18n-1.7.0/lib/i18n/core_ext"}, {"size": 160, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/i18n-1.7.0/lib/i18n/backend"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/i18n-1.7.0/lib/i18n/gettext"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/i18n-1.7.0/lib/i18n/interpolate"}, {"size": 304, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/i18n-1.7.0/lib/i18n"}, {"size": 336, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/i18n-1.7.0/lib"}, {"size": 336, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/i18n-1.7.0"}, {"size": 40, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0/config"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0/lib/rubocop/rspec/language"}, {"size": 144, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0/lib/rubocop/rspec"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0/lib/rubocop/cop/rspec/factory_bot"}, {"size": 24, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0/lib/rubocop/cop/rspec/capybara"}, {"size": 8, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0/lib/rubocop/cop/rspec/rails"}, {"size": 672, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0/lib/rubocop/cop/rspec"}, {"size": 680, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0/lib/rubocop/cop"}, {"size": 832, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0/lib/rubocop"}, {"size": 840, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0/lib"}, {"size": 880, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0"}, {"size": 416, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/tzinfo-1.2.5/lib/tzinfo"}, {"size": 424, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/tzinfo-1.2.5/lib"}, {"size": 424, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/tzinfo-1.2.5"}, {"size": 8344, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems"}, {"size": 8344, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0"}, {"size": 8344, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby"}, {"size": 8360, "name": "/usr/local/Homebrew/Library/Homebrew/vendor/bundle"}, {"size": 67464, "name": "/usr/local/Homebrew/Library/Homebrew/vendor"}, {"size": 376, "name": "/usr/local/Homebrew/Library/Homebrew/dev-cmd"}, {"size": 78568, "name": "/usr/local/Homebrew/Library/Homebrew"}, {"size": 174048, "name": "/usr/local/Homebrew/Library"}, {"size": 736, "name": "/usr/local/Homebrew/docs/assets/img/docs"}, {"size": 736, "name": "/usr/local/Homebrew/docs/assets/img"}, {"size": 736, "name": "/usr/local/Homebrew/docs/assets"}, {"size": 1568, "name": "/usr/local/Homebrew/docs"}, {"size": 144, "name": "/usr/local/Homebrew/manpages"}, {"size": 16, "name": "/usr/local/Homebrew/.github/workflows"}, {"size": 24, "name": "/usr/local/Homebrew/.github/ISSUE_TEMPLATE"}, {"size": 64, "name": "/usr/local/Homebrew/.github"}, {"size": 8, "name": "/usr/local/Homebrew/.git/objects/35"}, {"size": 16, "name": "/usr/local/Homebrew/.git/objects/3c"}, {"size": 8, "name": "/usr/local/Homebrew/.git/objects/56"}, {"size": 8, "name": "/usr/local/Homebrew/.git/objects/0e"}, {"size": 8, "name": "/usr/local/Homebrew/.git/objects/5a"}, {"size": 8, "name": "/usr/local/Homebrew/.git/objects/02"}, {"size": 8, "name": "/usr/local/Homebrew/.git/objects/be"}, {"size": 8, "name": "/usr/local/Homebrew/.git/objects/a2"}, {"size": 8, "name": "/usr/local/Homebrew/.git/objects/eb"}, {"size": 8, "name": "/usr/local/Homebrew/.git/objects/c9"}, {"size": 8, "name": "/usr/local/Homebrew/.git/objects/fb"}, {"size": 8, "name": "/usr/local/Homebrew/.git/objects/c1"}, {"size": 73832, "name": "/usr/local/Homebrew/.git/objects/pack"}, {"size": 8, "name": "/usr/local/Homebrew/.git/objects/29"}, {"size": 8, "name": "/usr/local/Homebrew/.git/objects/42"}, {"size": 8, "name": "/usr/local/Homebrew/.git/objects/89"}, {"size": 8, "name": "/usr/local/Homebrew/.git/objects/74"}, {"size": 8, "name": "/usr/local/Homebrew/.git/objects/17"}, {"size": 8, "name": "/usr/local/Homebrew/.git/objects/2f"}, {"size": 8, "name": "/usr/local/Homebrew/.git/objects/9a"}, {"size": 0, "name": "/usr/local/Homebrew/.git/objects/info"}, {"size": 8, "name": "/usr/local/Homebrew/.git/objects/3a"}, {"size": 8, "name": "/usr/local/Homebrew/.git/objects/bf"}, {"size": 8, "name": "/usr/local/Homebrew/.git/objects/a7"}, {"size": 24, "name": "/usr/local/Homebrew/.git/objects/b6"}, {"size": 24, "name": "/usr/local/Homebrew/.git/objects/aa"}, {"size": 8, "name": "/usr/local/Homebrew/.git/objects/b7"}, {"size": 8, "name": "/usr/local/Homebrew/.git/objects/a8"}, {"size": 8, "name": "/usr/local/Homebrew/.git/objects/a6"}, {"size": 8, "name": "/usr/local/Homebrew/.git/objects/ea"}, {"size": 8, "name": "/usr/local/Homebrew/.git/objects/e1"}, {"size": 8, "name": "/usr/local/Homebrew/.git/objects/f9"}, {"size": 8, "name": "/usr/local/Homebrew/.git/objects/c5"}, {"size": 8, "name": "/usr/local/Homebrew/.git/objects/15"}, {"size": 16, "name": "/usr/local/Homebrew/.git/objects/47"}, {"size": 8, "name": "/usr/local/Homebrew/.git/objects/25"}, {"size": 74152, "name": "/usr/local/Homebrew/.git/objects"}, {"size": 8, "name": "/usr/local/Homebrew/.git/info"}, {"size": 16, "name": "/usr/local/Homebrew/.git/logs/refs/heads"}, {"size": 8, "name": "/usr/local/Homebrew/.git/logs/refs/remotes/origin"}, {"size": 8, "name": "/usr/local/Homebrew/.git/logs/refs/remotes"}, {"size": 24, "name": "/usr/local/Homebrew/.git/logs/refs"}, {"size": 40, "name": "/usr/local/Homebrew/.git/logs"}, {"size": 96, "name": "/usr/local/Homebrew/.git/hooks"}, {"size": 16, "name": "/usr/local/Homebrew/.git/refs/heads"}, {"size": 1112, "name": "/usr/local/Homebrew/.git/refs/tags"}, {"size": 8, "name": "/usr/local/Homebrew/.git/refs/remotes/origin"}, {"size": 8, "name": "/usr/local/Homebrew/.git/refs/remotes"}, {"size": 1136, "name": "/usr/local/Homebrew/.git/refs"}, {"size": 75968, "name": "/usr/local/Homebrew/.git"}, {"size": 252128, "name": "/usr/local/Homebrew"}, {"size": 0, "name": "/usr/local/var/homebrew/locks"}, {"size": 0, "name": "/usr/local/var/homebrew/linked"}, {"size": 0, "name": "/usr/local/var/homebrew"}, {"size": 0, "name": "/usr/local/var"}, {"size": 0, "name": "/usr/local/Caskroom"}, {"size": 48, "name": "/usr/local/LANDesk/Resources"}, {"size": 96, "name": "/usr/local/LANDesk/common/cbaroot/allowed"}, {"size": 0, "name": "/usr/local/LANDesk/common/cbaroot/alert/queue"}, {"size": 8, "name": "/usr/local/LANDesk/common/cbaroot/alert"}, {"size": 0, "name": "/usr/local/LANDesk/common/cbaroot/extensions"}, {"size": 24, "name": "/usr/local/LANDesk/common/cbaroot/certs"}, {"size": 592, "name": "/usr/local/LANDesk/common/cbaroot/services"}, {"size": 736, "name": "/usr/local/LANDesk/common/cbaroot"}, {"size": 48728, "name": "/usr/local/LANDesk/common"}, {"size": 48776, "name": "/usr/local/LANDesk"}, {"size": 0, "name": "/usr/local/lib/pkgconfig"}, {"size": 0, "name": "/usr/local/lib/docker"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/livereload-2.6.1.dist-info"}, {"size": 1232, "name": "/usr/local/lib/python3.7/site-packages/paramiko/__pycache__"}, {"size": 2752, "name": "/usr/local/lib/python3.7/site-packages/paramiko"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/astroid/interpreter/_import/__pycache__"}, {"size": 72, "name": "/usr/local/lib/python3.7/site-packages/astroid/interpreter/_import"}, {"size": 72, "name": "/usr/local/lib/python3.7/site-packages/astroid/interpreter/__pycache__"}, {"size": 200, "name": "/usr/local/lib/python3.7/site-packages/astroid/interpreter"}, {"size": 952, "name": "/usr/local/lib/python3.7/site-packages/astroid/__pycache__"}, {"size": 320, "name": "/usr/local/lib/python3.7/site-packages/astroid/brain/__pycache__"}, {"size": 688, "name": "/usr/local/lib/python3.7/site-packages/astroid/brain"}, {"size": 2936, "name": "/usr/local/lib/python3.7/site-packages/astroid"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/antlr4_python3_runtime-4.7.2.dist-info"}, {"size": 88, "name": "/usr/local/lib/python3.7/site-packages/suds_jurko-0.6.dist-info"}, {"size": 88, "name": "/usr/local/lib/python3.7/site-packages/tornado-6.0.3.dist-info"}, {"size": 96, "name": "/usr/local/lib/python3.7/site-packages/stix2_patterns-1.1.0.dist-info"}, {"size": 80, "name": "/usr/local/lib/python3.7/site-packages/GitPython-3.0.4.dist-info"}, {"size": 96, "name": "/usr/local/lib/python3.7/site-packages/pbr-5.4.3.dist-info"}, {"size": 72, "name": "/usr/local/lib/python3.7/site-packages/chardet-3.0.4.dist-info"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/lazy_object_proxy-1.4.1.dist-info"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/markupsafe/__pycache__"}, {"size": 208, "name": "/usr/local/lib/python3.7/site-packages/markupsafe"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/fortiosapi/__pycache__"}, {"size": 112, "name": "/usr/local/lib/python3.7/site-packages/fortiosapi"}, {"size": 960, "name": "/usr/local/lib/python3.7/site-packages/pylint/checkers/__pycache__"}, {"size": 2352, "name": "/usr/local/lib/python3.7/site-packages/pylint/checkers"}, {"size": 456, "name": "/usr/local/lib/python3.7/site-packages/pylint/test/messages"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/pylint/test/input/func_w0401_package/__pycache__"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/pylint/test/input/func_w0401_package"}, {"size": 520, "name": "/usr/local/lib/python3.7/site-packages/pylint/test/input/__pycache__"}, {"size": 1152, "name": "/usr/local/lib/python3.7/site-packages/pylint/test/input"}, {"size": 592, "name": "/usr/local/lib/python3.7/site-packages/pylint/test/__pycache__"}, {"size": 344, "name": "/usr/local/lib/python3.7/site-packages/pylint/test/extensions/__pycache__"}, {"size": 72, "name": "/usr/local/lib/python3.7/site-packages/pylint/test/extensions/data/__pycache__"}, {"size": 144, "name": "/usr/local/lib/python3.7/site-packages/pylint/test/extensions/data"}, {"size": 808, "name": "/usr/local/lib/python3.7/site-packages/pylint/test/extensions"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/pylint/test/acceptance/__pycache__"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/pylint/test/acceptance"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/pylint/test/regrtest_data/absimp/__pycache__"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/pylint/test/regrtest_data/absimp"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/pylint/test/regrtest_data/dummy/__pycache__"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/pylint/test/regrtest_data/dummy"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/pylint/test/regrtest_data/dummy_plugin/__pycache__"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/pylint/test/regrtest_data/dummy_plugin"}, {"size": 160, "name": "/usr/local/lib/python3.7/site-packages/pylint/test/regrtest_data/__pycache__"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/pylint/test/regrtest_data/bad_package/__pycache__"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/pylint/test/regrtest_data/bad_package"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/pylint/test/regrtest_data/package_all/__pycache__"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/pylint/test/regrtest_data/package_all"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/pylint/test/regrtest_data/init_wildcard/__pycache__"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/pylint/test/regrtest_data/init_wildcard"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/pylint/test/regrtest_data/beyond_top/__pycache__"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/pylint/test/regrtest_data/beyond_top"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/pylint/test/regrtest_data/package/__pycache__"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/pylint/test/regrtest_data/package/subpackage/__pycache__"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/pylint/test/regrtest_data/package/subpackage"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/pylint/test/regrtest_data/package"}, {"size": 664, "name": "/usr/local/lib/python3.7/site-packages/pylint/test/regrtest_data"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/pylint/test/data/__pycache__"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/pylint/test/data"}, {"size": 2760, "name": "/usr/local/lib/python3.7/site-packages/pylint/test/functional/__pycache__"}, {"size": 8896, "name": "/usr/local/lib/python3.7/site-packages/pylint/test/functional"}, {"size": 13264, "name": "/usr/local/lib/python3.7/site-packages/pylint/test"}, {"size": 328, "name": "/usr/local/lib/python3.7/site-packages/pylint/__pycache__"}, {"size": 160, "name": "/usr/local/lib/python3.7/site-packages/pylint/extensions/__pycache__"}, {"size": 336, "name": "/usr/local/lib/python3.7/site-packages/pylint/extensions"}, {"size": 136, "name": "/usr/local/lib/python3.7/site-packages/pylint/pyreverse/__pycache__"}, {"size": 288, "name": "/usr/local/lib/python3.7/site-packages/pylint/pyreverse"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/pylint/reporters/ureports/__pycache__"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/pylint/reporters/ureports"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/pylint/reporters/__pycache__"}, {"size": 136, "name": "/usr/local/lib/python3.7/site-packages/pylint/reporters"}, {"size": 17120, "name": "/usr/local/lib/python3.7/site-packages/pylint"}, {"size": 912, "name": "/usr/local/lib/python3.7/site-packages/chardet/__pycache__"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/chardet/cli/__pycache__"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/chardet/cli"}, {"size": 1816, "name": "/usr/local/lib/python3.7/site-packages/chardet"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/fortiosapi-0.10.8.dist-info"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/gitdb2-2.0.6.dist-info"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/stix2patterns/test/__pycache__"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/stix2patterns/test"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/stix2patterns/__pycache__"}, {"size": 240, "name": "/usr/local/lib/python3.7/site-packages/stix2patterns/grammars/__pycache__"}, {"size": 504, "name": "/usr/local/lib/python3.7/site-packages/stix2patterns/grammars"}, {"size": 656, "name": "/usr/local/lib/python3.7/site-packages/stix2patterns"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/Markdown-3.1.1.dist-info"}, {"size": 216, "name": "/usr/local/lib/python3.7/site-packages/pycparser/ply/__pycache__"}, {"size": 672, "name": "/usr/local/lib/python3.7/site-packages/pycparser/ply"}, {"size": 616, "name": "/usr/local/lib/python3.7/site-packages/pycparser/__pycache__"}, {"size": 1984, "name": "/usr/local/lib/python3.7/site-packages/pycparser"}, {"size": 128, "name": "/usr/local/lib/python3.7/site-packages/cryptography-2.7.dist-info"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/typed_ast-1.4.0.dist-info"}, {"size": 864, "name": "/usr/local/lib/python3.7/site-packages/jinja2/__pycache__"}, {"size": 1824, "name": "/usr/local/lib/python3.7/site-packages/jinja2"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/cryptography/hazmat/backends/__pycache__"}, {"size": 504, "name": "/usr/local/lib/python3.7/site-packages/cryptography/hazmat/backends/openssl/__pycache__"}, {"size": 1152, "name": "/usr/local/lib/python3.7/site-packages/cryptography/hazmat/backends/openssl"}, {"size": 1224, "name": "/usr/local/lib/python3.7/site-packages/cryptography/hazmat/backends"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/cryptography/hazmat/__pycache__"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/cryptography/hazmat/primitives/kdf/__pycache__"}, {"size": 120, "name": "/usr/local/lib/python3.7/site-packages/cryptography/hazmat/primitives/kdf"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/cryptography/hazmat/primitives/twofactor/__pycache__"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/cryptography/hazmat/primitives/twofactor"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/cryptography/hazmat/primitives/serialization/__pycache__"}, {"size": 72, "name": "/usr/local/lib/python3.7/site-packages/cryptography/hazmat/primitives/serialization"}, {"size": 88, "name": "/usr/local/lib/python3.7/site-packages/cryptography/hazmat/primitives/__pycache__"}, {"size": 80, "name": "/usr/local/lib/python3.7/site-packages/cryptography/hazmat/primitives/ciphers/__pycache__"}, {"size": 152, "name": "/usr/local/lib/python3.7/site-packages/cryptography/hazmat/primitives/ciphers"}, {"size": 152, "name": "/usr/local/lib/python3.7/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__"}, {"size": 296, "name": "/usr/local/lib/python3.7/site-packages/cryptography/hazmat/primitives/asymmetric"}, {"size": 880, "name": "/usr/local/lib/python3.7/site-packages/cryptography/hazmat/primitives"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/cryptography/hazmat/bindings/__pycache__"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/cryptography/hazmat/bindings/openssl/__pycache__"}, {"size": 96, "name": "/usr/local/lib/python3.7/site-packages/cryptography/hazmat/bindings/openssl"}, {"size": 6928, "name": "/usr/local/lib/python3.7/site-packages/cryptography/hazmat/bindings"}, {"size": 9064, "name": "/usr/local/lib/python3.7/site-packages/cryptography/hazmat"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/cryptography/__pycache__"}, {"size": 280, "name": "/usr/local/lib/python3.7/site-packages/cryptography/x509/__pycache__"}, {"size": 552, "name": "/usr/local/lib/python3.7/site-packages/cryptography/x509"}, {"size": 9728, "name": "/usr/local/lib/python3.7/site-packages/cryptography"}, {"size": 96, "name": "/usr/local/lib/python3.7/site-packages/stevedore-1.31.0.dist-info"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/bcrypt/__pycache__"}, {"size": 240, "name": "/usr/local/lib/python3.7/site-packages/bcrypt"}, {"size": 304, "name": "/usr/local/lib/python3.7/site-packages/markdown/__pycache__"}, {"size": 224, "name": "/usr/local/lib/python3.7/site-packages/markdown/extensions/__pycache__"}, {"size": 464, "name": "/usr/local/lib/python3.7/site-packages/markdown/extensions"}, {"size": 1104, "name": "/usr/local/lib/python3.7/site-packages/markdown"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/Click-7.0.dist-info"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/Jinja2-2.10.1.dist-info"}, {"size": 568, "name": "/usr/local/lib/python3.7/site-packages/cffi/__pycache__"}, {"size": 1352, "name": "/usr/local/lib/python3.7/site-packages/cffi"}, {"size": 1584, "name": "/usr/local/lib/python3.7/site-packages/ansible-2.8.5.dist-info"}, {"size": 72, "name": "/usr/local/lib/python3.7/site-packages/simplejson-3.16.0.dist-info"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/statsd-3.3.0.dist-info"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/MarkupSafe-1.1.1.dist-info"}, {"size": 80, "name": "/usr/local/lib/python3.7/site-packages/livereload/vendors"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/livereload/management/commands/__pycache__"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/livereload/management/commands"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/livereload/management"}, {"size": 72, "name": "/usr/local/lib/python3.7/site-packages/livereload/__pycache__"}, {"size": 248, "name": "/usr/local/lib/python3.7/site-packages/livereload"}, {"size": 320, "name": "/usr/local/lib/python3.7/site-packages/simplejson/tests/__pycache__"}, {"size": 624, "name": "/usr/local/lib/python3.7/site-packages/simplejson/tests"}, {"size": 152, "name": "/usr/local/lib/python3.7/site-packages/simplejson/__pycache__"}, {"size": 1056, "name": "/usr/local/lib/python3.7/site-packages/simplejson"}, {"size": 72, "name": "/usr/local/lib/python3.7/site-packages/pip-19.1.1-py3.7.egg-info"}, {"size": 976, "name": "/usr/local/lib/python3.7/site-packages/tests/__pycache__"}, {"size": 144, "name": "/usr/local/lib/python3.7/site-packages/tests/external/__pycache__"}, {"size": 240, "name": "/usr/local/lib/python3.7/site-packages/tests/external"}, {"size": 1784, "name": "/usr/local/lib/python3.7/site-packages/tests"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/pydoc_markdown-2.0.5.dist-info"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/smmap2-2.0.5.dist-info"}, {"size": 72, "name": "/usr/local/lib/python3.7/site-packages/mccabe-0.6.1.dist-info"}, {"size": 456, "name": "/usr/local/lib/python3.7/site-packages/idna/__pycache__"}, {"size": 992, "name": "/usr/local/lib/python3.7/site-packages/idna"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/pycparser-2.19.dist-info"}, {"size": 96, "name": "/usr/local/lib/python3.7/site-packages/wheel/__pycache__"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/wheel/cli/__pycache__"}, {"size": 88, "name": "/usr/local/lib/python3.7/site-packages/wheel/cli"}, {"size": 296, "name": "/usr/local/lib/python3.7/site-packages/wheel"}, {"size": 344, "name": "/usr/local/lib/python3.7/site-packages/pylint-2.3.1.dist-info"}, {"size": 520, "name": "/usr/local/lib/python3.7/site-packages/click/__pycache__"}, {"size": 1104, "name": "/usr/local/lib/python3.7/site-packages/click"}, {"size": 72, "name": "/usr/local/lib/python3.7/site-packages/lxml-4.3.4.dist-info"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/stix2/canonicalization/__pycache__"}, {"size": 88, "name": "/usr/local/lib/python3.7/site-packages/stix2/canonicalization"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/stix2/confidence/__pycache__"}, {"size": 80, "name": "/usr/local/lib/python3.7/site-packages/stix2/confidence"}, {"size": 336, "name": "/usr/local/lib/python3.7/site-packages/stix2/__pycache__"}, {"size": 160, "name": "/usr/local/lib/python3.7/site-packages/stix2/datastore/__pycache__"}, {"size": 352, "name": "/usr/local/lib/python3.7/site-packages/stix2/datastore"}, {"size": 144, "name": "/usr/local/lib/python3.7/site-packages/stix2/v20/__pycache__"}, {"size": 304, "name": "/usr/local/lib/python3.7/site-packages/stix2/v20"}, {"size": 176, "name": "/usr/local/lib/python3.7/site-packages/stix2/v21/__pycache__"}, {"size": 400, "name": "/usr/local/lib/python3.7/site-packages/stix2/v21"}, {"size": 80, "name": "/usr/local/lib/python3.7/site-packages/stix2/markings/__pycache__"}, {"size": 160, "name": "/usr/local/lib/python3.7/site-packages/stix2/markings"}, {"size": 2072, "name": "/usr/local/lib/python3.7/site-packages/stix2"}, {"size": 88, "name": "/usr/local/lib/python3.7/site-packages/pytz/zoneinfo/Indian"}, {"size": 96, "name": "/usr/local/lib/python3.7/site-packages/pytz/zoneinfo/Atlantic"}, {"size": 96, "name": "/usr/local/lib/python3.7/site-packages/pytz/zoneinfo/US"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/pytz/zoneinfo/Brazil"}, {"size": 344, "name": "/usr/local/lib/python3.7/site-packages/pytz/zoneinfo/Pacific"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/pytz/zoneinfo/Arctic"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/pytz/zoneinfo/America/Indiana"}, {"size": 104, "name": "/usr/local/lib/python3.7/site-packages/pytz/zoneinfo/America/Argentina"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/pytz/zoneinfo/America/Kentucky"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/pytz/zoneinfo/America/North_Dakota"}, {"size": 1328, "name": "/usr/local/lib/python3.7/site-packages/pytz/zoneinfo/America"}, {"size": 184, "name": "/usr/local/lib/python3.7/site-packages/pytz/zoneinfo/Australia"}, {"size": 280, "name": "/usr/local/lib/python3.7/site-packages/pytz/zoneinfo/Etc"}, {"size": 792, "name": "/usr/local/lib/python3.7/site-packages/pytz/zoneinfo/Asia"}, {"size": 96, "name": "/usr/local/lib/python3.7/site-packages/pytz/zoneinfo/Antarctica"}, {"size": 504, "name": "/usr/local/lib/python3.7/site-packages/pytz/zoneinfo/Europe"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/pytz/zoneinfo/Mexico"}, {"size": 432, "name": "/usr/local/lib/python3.7/site-packages/pytz/zoneinfo/Africa"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/pytz/zoneinfo/Chile"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/pytz/zoneinfo/Canada"}, {"size": 5080, "name": "/usr/local/lib/python3.7/site-packages/pytz/zoneinfo"}, {"size": 136, "name": "/usr/local/lib/python3.7/site-packages/pytz/__pycache__"}, {"size": 5376, "name": "/usr/local/lib/python3.7/site-packages/pytz"}, {"size": 80, "name": "/usr/local/lib/python3.7/site-packages/statsd/__pycache__"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/statsd/defaults/__pycache__"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/statsd/defaults"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/statsd/client/__pycache__"}, {"size": 80, "name": "/usr/local/lib/python3.7/site-packages/statsd/client"}, {"size": 272, "name": "/usr/local/lib/python3.7/site-packages/statsd"}, {"size": 224, "name": "/usr/local/lib/python3.7/site-packages/isort/__pycache__"}, {"size": 520, "name": "/usr/local/lib/python3.7/site-packages/isort"}, {"size": 104, "name": "/usr/local/lib/python3.7/site-packages/__pycache__"}, {"size": 208, "name": "/usr/local/lib/python3.7/site-packages/bandit/core/__pycache__"}, {"size": 456, "name": "/usr/local/lib/python3.7/site-packages/bandit/core"}, {"size": 264, "name": "/usr/local/lib/python3.7/site-packages/bandit/plugins/__pycache__"}, {"size": 560, "name": "/usr/local/lib/python3.7/site-packages/bandit/plugins"}, {"size": 112, "name": "/usr/local/lib/python3.7/site-packages/bandit/formatters/__pycache__"}, {"size": 232, "name": "/usr/local/lib/python3.7/site-packages/bandit/formatters"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/bandit/__pycache__"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/bandit/cli/__pycache__"}, {"size": 128, "name": "/usr/local/lib/python3.7/site-packages/bandit/cli"}, {"size": 96, "name": "/usr/local/lib/python3.7/site-packages/bandit/blacklists/__pycache__"}, {"size": 192, "name": "/usr/local/lib/python3.7/site-packages/bandit/blacklists"}, {"size": 1600, "name": "/usr/local/lib/python3.7/site-packages/bandit"}, {"size": 80, "name": "/usr/local/lib/python3.7/site-packages/PyNaCl-1.3.0.dist-info"}, {"size": 96, "name": "/usr/local/lib/python3.7/site-packages/wrapt/__pycache__"}, {"size": 344, "name": "/usr/local/lib/python3.7/site-packages/wrapt"}, {"size": 72, "name": "/usr/local/lib/python3.7/site-packages/pydocmd/__pycache__"}, {"size": 168, "name": "/usr/local/lib/python3.7/site-packages/pydocmd"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/certifi-2019.6.16.dist-info"}, {"size": 88, "name": "/usr/local/lib/python3.7/site-packages/antlr4/tree/__pycache__"}, {"size": 192, "name": "/usr/local/lib/python3.7/site-packages/antlr4/tree"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/antlr4/xpath/__pycache__"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/antlr4/xpath"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/antlr4/dfa/__pycache__"}, {"size": 80, "name": "/usr/local/lib/python3.7/site-packages/antlr4/dfa"}, {"size": 272, "name": "/usr/local/lib/python3.7/site-packages/antlr4/__pycache__"}, {"size": 280, "name": "/usr/local/lib/python3.7/site-packages/antlr4/atn/__pycache__"}, {"size": 768, "name": "/usr/local/lib/python3.7/site-packages/antlr4/atn"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/antlr4/error/__pycache__"}, {"size": 176, "name": "/usr/local/lib/python3.7/site-packages/antlr4/error"}, {"size": 1912, "name": "/usr/local/lib/python3.7/site-packages/antlr4"}, {"size": 368, "name": "/usr/local/lib/python3.7/site-packages/requests/__pycache__"}, {"size": 792, "name": "/usr/local/lib/python3.7/site-packages/requests"}, {"size": 104, "name": "/usr/local/lib/python3.7/site-packages/ansible/vars/__pycache__"}, {"size": 216, "name": "/usr/local/lib/python3.7/site-packages/ansible/vars"}, {"size": 72, "name": "/usr/local/lib/python3.7/site-packages/ansible/playbook/role/__pycache__"}, {"size": 184, "name": "/usr/local/lib/python3.7/site-packages/ansible/playbook/role"}, {"size": 320, "name": "/usr/local/lib/python3.7/site-packages/ansible/playbook/__pycache__"}, {"size": 920, "name": "/usr/local/lib/python3.7/site-packages/ansible/playbook"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/ansible/compat/__pycache__"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/ansible/compat/selectors/__pycache__"}, {"size": 104, "name": "/usr/local/lib/python3.7/site-packages/ansible/compat/selectors"}, {"size": 120, "name": "/usr/local/lib/python3.7/site-packages/ansible/compat"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/ansible/config/__pycache__"}, {"size": 280, "name": "/usr/local/lib/python3.7/site-packages/ansible/config"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/plugins/vars/__pycache__"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/ansible/plugins/vars"}, {"size": 104, "name": "/usr/local/lib/python3.7/site-packages/ansible/plugins/netconf/__pycache__"}, {"size": 224, "name": "/usr/local/lib/python3.7/site-packages/ansible/plugins/netconf"}, {"size": 128, "name": "/usr/local/lib/python3.7/site-packages/ansible/plugins/cache/__pycache__"}, {"size": 248, "name": "/usr/local/lib/python3.7/site-packages/ansible/plugins/cache"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/ansible/plugins/test/__pycache__"}, {"size": 80, "name": "/usr/local/lib/python3.7/site-packages/ansible/plugins/test"}, {"size": 640, "name": "/usr/local/lib/python3.7/site-packages/ansible/plugins/connection/__pycache__"}, {"size": 1408, "name": "/usr/local/lib/python3.7/site-packages/ansible/plugins/connection"}, {"size": 1016, "name": "/usr/local/lib/python3.7/site-packages/ansible/plugins/doc_fragments/__pycache__"}, {"size": 2024, "name": "/usr/local/lib/python3.7/site-packages/ansible/plugins/doc_fragments"}, {"size": 72, "name": "/usr/local/lib/python3.7/site-packages/ansible/plugins/shell/__pycache__"}, {"size": 160, "name": "/usr/local/lib/python3.7/site-packages/ansible/plugins/shell"}, {"size": 240, "name": "/usr/local/lib/python3.7/site-packages/ansible/plugins/terminal/__pycache__"}, {"size": 488, "name": "/usr/local/lib/python3.7/site-packages/ansible/plugins/terminal"}, {"size": 816, "name": "/usr/local/lib/python3.7/site-packages/ansible/plugins/lookup/__pycache__"}, {"size": 1704, "name": "/usr/local/lib/python3.7/site-packages/ansible/plugins/lookup"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/ansible/plugins/__pycache__"}, {"size": 144, "name": "/usr/local/lib/python3.7/site-packages/ansible/plugins/httpapi/__pycache__"}, {"size": 304, "name": "/usr/local/lib/python3.7/site-packages/ansible/plugins/httpapi"}, {"size": 896, "name": "/usr/local/lib/python3.7/site-packages/ansible/plugins/action/__pycache__"}, {"size": 2080, "name": "/usr/local/lib/python3.7/site-packages/ansible/plugins/action"}, {"size": 672, "name": "/usr/local/lib/python3.7/site-packages/ansible/plugins/inventory/__pycache__"}, {"size": 1504, "name": "/usr/local/lib/python3.7/site-packages/ansible/plugins/inventory"}, {"size": 128, "name": "/usr/local/lib/python3.7/site-packages/ansible/plugins/become/__pycache__"}, {"size": 248, "name": "/usr/local/lib/python3.7/site-packages/ansible/plugins/become"}, {"size": 648, "name": "/usr/local/lib/python3.7/site-packages/ansible/plugins/callback/__pycache__"}, {"size": 1336, "name": "/usr/local/lib/python3.7/site-packages/ansible/plugins/callback"}, {"size": 168, "name": "/usr/local/lib/python3.7/site-packages/ansible/plugins/filter/__pycache__"}, {"size": 368, "name": "/usr/local/lib/python3.7/site-packages/ansible/plugins/filter"}, {"size": 336, "name": "/usr/local/lib/python3.7/site-packages/ansible/plugins/cliconf/__pycache__"}, {"size": 744, "name": "/usr/local/lib/python3.7/site-packages/ansible/plugins/cliconf"}, {"size": 120, "name": "/usr/local/lib/python3.7/site-packages/ansible/plugins/strategy/__pycache__"}, {"size": 328, "name": "/usr/local/lib/python3.7/site-packages/ansible/plugins/strategy"}, {"size": 13432, "name": "/usr/local/lib/python3.7/site-packages/ansible/plugins"}, {"size": 80, "name": "/usr/local/lib/python3.7/site-packages/ansible/template/__pycache__"}, {"size": 200, "name": "/usr/local/lib/python3.7/site-packages/ansible/template"}, {"size": 232, "name": "/usr/local/lib/python3.7/site-packages/ansible/utils/__pycache__"}, {"size": 496, "name": "/usr/local/lib/python3.7/site-packages/ansible/utils"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/ansible/__pycache__"}, {"size": 272, "name": "/usr/local/lib/python3.7/site-packages/ansible/cli/__pycache__"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/ansible/cli/arguments/__pycache__"}, {"size": 88, "name": "/usr/local/lib/python3.7/site-packages/ansible/cli/arguments"}, {"size": 744, "name": "/usr/local/lib/python3.7/site-packages/ansible/cli"}, {"size": 72, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/__pycache__"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/data/apb/vars"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/data/apb/tasks"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/data/apb/tests"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/data/apb/meta"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/data/apb/playbooks"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/data/apb/defaults"}, {"size": 0, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/data/apb/files"}, {"size": 0, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/data/apb/templates"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/data/apb/handlers"}, {"size": 112, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/data/apb"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/data/network/vars"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/data/network/tasks"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/data/network/terminal_plugins"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/data/network/cliconf_plugins"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/data/network/tests"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/data/network/meta"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/data/network/library"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/data/network/netconf_plugins"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/data/network/defaults"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/data/network/module_utils"}, {"size": 0, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/data/network/files"}, {"size": 0, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/data/network/templates"}, {"size": 112, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/data/network"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/data/default/vars"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/data/default/tasks"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/data/default/tests"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/data/default/meta"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/data/default/defaults"}, {"size": 0, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/data/default/files"}, {"size": 0, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/data/default/templates"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/data/default/handlers"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/data/default"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/data/container/vars"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/data/container/tasks"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/data/container/tests"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/data/container/meta"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/data/container/defaults"}, {"size": 0, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/data/container/files"}, {"size": 0, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/data/container/templates"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/data/container/handlers"}, {"size": 80, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/data/container"}, {"size": 368, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy/data"}, {"size": 528, "name": "/usr/local/lib/python3.7/site-packages/ansible/galaxy"}, {"size": 104, "name": "/usr/local/lib/python3.7/site-packages/ansible/inventory/__pycache__"}, {"size": 224, "name": "/usr/local/lib/python3.7/site-packages/ansible/inventory"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/podman/__pycache__"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/podman"}, {"size": 152, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/compat/__pycache__"}, {"size": 328, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/compat"}, {"size": 88, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/docker/__pycache__"}, {"size": 192, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/docker"}, {"size": 88, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/distro/__pycache__"}, {"size": 184, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/distro"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/remote_management/lxca/__pycache__"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/remote_management/lxca"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/remote_management/__pycache__"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/remote_management/dellemc/__pycache__"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/remote_management/dellemc"}, {"size": 112, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/remote_management"}, {"size": 72, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/k8s/__pycache__"}, {"size": 160, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/k8s"}, {"size": 112, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/oracle/__pycache__"}, {"size": 280, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/oracle"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/dellos10/__pycache__"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/dellos10"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/frr/providers/__pycache__"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/frr/providers/cli/config/__pycache__"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/frr/providers/cli/config/bgp/__pycache__"}, {"size": 96, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/frr/providers/cli/config/bgp"}, {"size": 120, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/frr/providers/cli/config"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/frr/providers/cli/__pycache__"}, {"size": 128, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/frr/providers/cli"}, {"size": 176, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/frr/providers"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/frr/__pycache__"}, {"size": 200, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/frr"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/aireos/__pycache__"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/aireos"}, {"size": 144, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/ftd/__pycache__"}, {"size": 288, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/ftd"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/cloudengine/__pycache__"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/cloudengine"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/enos/__pycache__"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/enos"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/netconf/__pycache__"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/netconf"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/checkpoint/__pycache__"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/checkpoint"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/routeros/__pycache__"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/routeros"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/nos/__pycache__"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/nos"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/avi/__pycache__"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/avi"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/exos/__pycache__"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/exos"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/ironware/__pycache__"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/ironware"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/slxos/__pycache__"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/slxos"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/netscaler/__pycache__"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/netscaler"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/bigswitch/__pycache__"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/bigswitch"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/fortimanager/__pycache__"}, {"size": 128, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/fortimanager"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/iosxr/providers/__pycache__"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/iosxr/providers/cli/config/__pycache__"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/iosxr/providers/cli/config/bgp/__pycache__"}, {"size": 72, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/iosxr/providers/cli/config/bgp"}, {"size": 80, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/iosxr/providers/cli/config"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/iosxr/providers/cli/__pycache__"}, {"size": 88, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/iosxr/providers/cli"}, {"size": 136, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/iosxr/providers"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/iosxr/__pycache__"}, {"size": 224, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/iosxr"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/a10/__pycache__"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/a10"}, {"size": 128, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/f5/__pycache__"}, {"size": 288, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/f5"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/nxos/__pycache__"}, {"size": 112, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/nxos"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/nso/__pycache__"}, {"size": 128, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/nso"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/restconf/__pycache__"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/restconf"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/sros/__pycache__"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/sros"}, {"size": 96, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/aci/__pycache__"}, {"size": 232, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/aci"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/__pycache__"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/ios/providers/__pycache__"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/ios/providers/cli/config/__pycache__"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/ios/providers/cli/config/bgp/__pycache__"}, {"size": 104, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/ios/providers/cli/config/bgp"}, {"size": 128, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/ios/providers/cli/config"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/ios/providers/cli/__pycache__"}, {"size": 136, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/ios/providers/cli"}, {"size": 184, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/ios/providers"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/ios/__pycache__"}, {"size": 224, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/ios"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/onyx/__pycache__"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/onyx"}, {"size": 120, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/common/__pycache__"}, {"size": 240, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/common"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/vyos/__pycache__"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/vyos"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/meraki/__pycache__"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/meraki"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/panos/__pycache__"}, {"size": 72, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/panos"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/ordnance/__pycache__"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/ordnance"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/ingate/__pycache__"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/ingate"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/asa/__pycache__"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/asa"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/fortios/__pycache__"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/fortios"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/skydive/__pycache__"}, {"size": 72, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/skydive"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/edgeos/__pycache__"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/edgeos"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/junos/__pycache__"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/junos"}, {"size": 96, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/cnos/__pycache__"}, {"size": 360, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/cnos"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/edgeswitch/__pycache__"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/edgeswitch"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/voss/__pycache__"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/voss"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/netvisor/__pycache__"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/netvisor"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/dellos9/__pycache__"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/dellos9"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/eos/providers/__pycache__"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/eos/providers/cli/config/__pycache__"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/eos/providers/cli/config/bgp/__pycache__"}, {"size": 96, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/eos/providers/cli/config/bgp"}, {"size": 104, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/eos/providers/cli/config"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/eos/providers/cli/__pycache__"}, {"size": 112, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/eos/providers/cli"}, {"size": 160, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/eos/providers"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/eos/__pycache__"}, {"size": 256, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/eos"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/aos/__pycache__"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/aos"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/dellos6/__pycache__"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/dellos6"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/aruba/__pycache__"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network/aruba"}, {"size": 4024, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/network"}, {"size": 1752, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/__pycache__"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/storage/hpe3par/__pycache__"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/storage/hpe3par"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/storage/__pycache__"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/storage/emc/__pycache__"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/storage/emc"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/storage"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/powershell/__pycache__"}, {"size": 168, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/powershell"}, {"size": 160, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/common/__pycache__"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/common/text/__pycache__"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/common/text"}, {"size": 360, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/common"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/csharp/__pycache__"}, {"size": 288, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/csharp"}, {"size": 208, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/aws/__pycache__"}, {"size": 448, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/aws"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/six/__pycache__"}, {"size": 120, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/six"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/parsing/__pycache__"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/parsing"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/net_tools/netbox/__pycache__"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/net_tools/netbox"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/net_tools/nios/__pycache__"}, {"size": 88, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/net_tools/nios"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/net_tools/__pycache__"}, {"size": 144, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/net_tools"}, {"size": 168, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/facts/hardware/__pycache__"}, {"size": 392, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/facts/hardware"}, {"size": 144, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/facts/network/__pycache__"}, {"size": 336, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/facts/network"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/facts/other/__pycache__"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/facts/other"}, {"size": 104, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/facts/__pycache__"}, {"size": 184, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/facts/system/__pycache__"}, {"size": 400, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/facts/system"}, {"size": 88, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/facts/virtual/__pycache__"}, {"size": 184, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/facts/virtual"}, {"size": 1584, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/facts"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/source_control/__pycache__"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils/source_control"}, {"size": 12608, "name": "/usr/local/lib/python3.7/site-packages/ansible/module_utils"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/executor/discovery/__pycache__"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/executor/discovery"}, {"size": 240, "name": "/usr/local/lib/python3.7/site-packages/ansible/executor/__pycache__"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/executor/powershell/__pycache__"}, {"size": 160, "name": "/usr/local/lib/python3.7/site-packages/ansible/executor/powershell"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/executor/process/__pycache__"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/ansible/executor/process"}, {"size": 872, "name": "/usr/local/lib/python3.7/site-packages/ansible/executor"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/ansible/errors/__pycache__"}, {"size": 72, "name": "/usr/local/lib/python3.7/site-packages/ansible/errors"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/ansible/parsing/utils/__pycache__"}, {"size": 80, "name": "/usr/local/lib/python3.7/site-packages/ansible/parsing/utils"}, {"size": 112, "name": "/usr/local/lib/python3.7/site-packages/ansible/parsing/__pycache__"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/ansible/parsing/yaml/__pycache__"}, {"size": 112, "name": "/usr/local/lib/python3.7/site-packages/ansible/parsing/yaml"}, {"size": 72, "name": "/usr/local/lib/python3.7/site-packages/ansible/parsing/vault/__pycache__"}, {"size": 176, "name": "/usr/local/lib/python3.7/site-packages/ansible/parsing/vault"}, {"size": 640, "name": "/usr/local/lib/python3.7/site-packages/ansible/parsing"}, {"size": 256, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/packaging/language/__pycache__"}, {"size": 552, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/packaging/language"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/packaging/__pycache__"}, {"size": 1152, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/packaging/os/__pycache__"}, {"size": 2648, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/packaging/os"}, {"size": 3208, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/packaging"}, {"size": 72, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/database/misc/__pycache__"}, {"size": 152, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/database/misc"}, {"size": 536, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/database/postgresql/__pycache__"}, {"size": 1152, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/database/postgresql"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/database/__pycache__"}, {"size": 96, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/database/mongodb/__pycache__"}, {"size": 200, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/database/mongodb"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/database/influxdb/__pycache__"}, {"size": 120, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/database/influxdb"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/database/aerospike/__pycache__"}, {"size": 80, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/database/aerospike"}, {"size": 112, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/database/mysql/__pycache__"}, {"size": 248, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/database/mysql"}, {"size": 192, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/database/proxysql/__pycache__"}, {"size": 416, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/database/proxysql"}, {"size": 104, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/database/vertica/__pycache__"}, {"size": 216, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/database/vertica"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/database/mssql/__pycache__"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/database/mssql"}, {"size": 2632, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/database"}, {"size": 264, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/crypto/acme/__pycache__"}, {"size": 576, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/crypto/acme"}, {"size": 608, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/crypto/__pycache__"}, {"size": 1904, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/crypto"}, {"size": 288, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/identity/ipa/__pycache__"}, {"size": 592, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/identity/ipa"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/identity/cyberark/__pycache__"}, {"size": 104, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/identity/cyberark"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/identity/__pycache__"}, {"size": 128, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/identity/keycloak/__pycache__"}, {"size": 248, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/identity/keycloak"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/identity/opendj/__pycache__"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/identity/opendj"}, {"size": 1056, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/identity"}, {"size": 384, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/notification/__pycache__"}, {"size": 840, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/notification"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/intersight/__pycache__"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/intersight"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/imc/__pycache__"}, {"size": 72, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/imc"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/lxca/__pycache__"}, {"size": 72, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/lxca"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/stacki/__pycache__"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/stacki"}, {"size": 96, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/redfish/__pycache__"}, {"size": 208, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/redfish"}, {"size": 176, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/oneview/__pycache__"}, {"size": 344, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/oneview"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/cobbler/__pycache__"}, {"size": 72, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/cobbler"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/foreman/__pycache__"}, {"size": 128, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/foreman"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/__pycache__"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/hpilo/__pycache__"}, {"size": 88, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/hpilo"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/cpm/__pycache__"}, {"size": 136, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/cpm"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/dellemc/__pycache__"}, {"size": 88, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/dellemc"}, {"size": 320, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/ucs/__pycache__"}, {"size": 744, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/ucs"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/ipmi/__pycache__"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/ipmi"}, {"size": 240, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/manageiq/__pycache__"}, {"size": 528, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/manageiq"}, {"size": 2664, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/remote_management"}, {"size": 184, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/web_infrastructure/sophos_utm/__pycache__"}, {"size": 376, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/web_infrastructure/sophos_utm"}, {"size": 376, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/web_infrastructure/__pycache__"}, {"size": 304, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/web_infrastructure/ansible_tower/__pycache__"}, {"size": 632, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/web_infrastructure/ansible_tower"}, {"size": 1816, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/web_infrastructure"}, {"size": 80, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/dellos10/__pycache__"}, {"size": 160, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/dellos10"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/frr/__pycache__"}, {"size": 128, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/frr"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/aireos/__pycache__"}, {"size": 96, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/aireos"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/ftd/__pycache__"}, {"size": 128, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/ftd"}, {"size": 2872, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/cloudengine/__pycache__"}, {"size": 7296, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/cloudengine"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/interface/__pycache__"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/interface"}, {"size": 192, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/illumos/__pycache__"}, {"size": 400, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/illumos"}, {"size": 80, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/enos/__pycache__"}, {"size": 152, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/enos"}, {"size": 80, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/netconf/__pycache__"}, {"size": 168, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/netconf"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/opx/__pycache__"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/opx"}, {"size": 96, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/checkpoint/__pycache__"}, {"size": 192, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/checkpoint"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/routeros/__pycache__"}, {"size": 104, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/routeros"}, {"size": 88, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/nos/__pycache__"}, {"size": 168, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/nos"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/ovs/__pycache__"}, {"size": 112, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/ovs"}, {"size": 1056, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/avi/__pycache__"}, {"size": 2208, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/avi"}, {"size": 80, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/exos/__pycache__"}, {"size": 168, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/exos"}, {"size": 88, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/ironware/__pycache__"}, {"size": 168, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/ironware"}, {"size": 192, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/slxos/__pycache__"}, {"size": 432, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/slxos"}, {"size": 640, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/netscaler/__pycache__"}, {"size": 1432, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/netscaler"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/bigswitch/__pycache__"}, {"size": 96, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/bigswitch"}, {"size": 1184, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/fortimanager/__pycache__"}, {"size": 2752, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/fortimanager"}, {"size": 304, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/iosxr/__pycache__"}, {"size": 680, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/iosxr"}, {"size": 72, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/a10/__pycache__"}, {"size": 176, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/a10"}, {"size": 7912, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/f5/__pycache__"}, {"size": 16728, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/f5"}, {"size": 1544, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/nxos/__pycache__"}, {"size": 3608, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/nxos"}, {"size": 72, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/nuage/__pycache__"}, {"size": 160, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/nuage"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/netact/__pycache__"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/netact"}, {"size": 72, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/nso/__pycache__"}, {"size": 144, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/nso"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/restconf/__pycache__"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/restconf"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/sros/__pycache__"}, {"size": 120, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/sros"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/protocol/__pycache__"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/protocol"}, {"size": 1840, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/aci/__pycache__"}, {"size": 3824, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/aci"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/__pycache__"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/cli/__pycache__"}, {"size": 96, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/cli"}, {"size": 432, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/ios/__pycache__"}, {"size": 952, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/ios"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/cloudvision/__pycache__"}, {"size": 104, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/cloudvision"}, {"size": 72, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/radware/__pycache__"}, {"size": 160, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/radware"}, {"size": 456, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/onyx/__pycache__"}, {"size": 944, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/onyx"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/system/__pycache__"}, {"size": 104, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/system"}, {"size": 264, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/vyos/__pycache__"}, {"size": 552, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/vyos"}, {"size": 312, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/meraki/__pycache__"}, {"size": 720, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/meraki"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/layer2/__pycache__"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/layer2"}, {"size": 392, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/panos/__pycache__"}, {"size": 896, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/panos"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/ordnance/__pycache__"}, {"size": 112, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/ordnance"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/ingate/__pycache__"}, {"size": 88, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/ingate"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/layer3/__pycache__"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/layer3"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/files/__pycache__"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/files"}, {"size": 104, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/asa/__pycache__"}, {"size": 232, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/asa"}, {"size": 6840, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/fortios/__pycache__"}, {"size": 15264, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/fortios"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/skydive/__pycache__"}, {"size": 88, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/skydive"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/routing/__pycache__"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/routing"}, {"size": 80, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/cumulus/__pycache__"}, {"size": 152, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/cumulus"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/edgeos/__pycache__"}, {"size": 128, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/edgeos"}, {"size": 400, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/junos/__pycache__"}, {"size": 856, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/junos"}, {"size": 560, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/cnos/__pycache__"}, {"size": 1280, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/cnos"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/edgeswitch/__pycache__"}, {"size": 96, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/edgeswitch"}, {"size": 88, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/voss/__pycache__"}, {"size": 176, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/voss"}, {"size": 632, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/netvisor/__pycache__"}, {"size": 1384, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/netvisor"}, {"size": 88, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/dellos9/__pycache__"}, {"size": 176, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/dellos9"}, {"size": 352, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/eos/__pycache__"}, {"size": 776, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/eos"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/itential/__pycache__"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/itential"}, {"size": 200, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/aos/__pycache__"}, {"size": 464, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/aos"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/citrix/__pycache__"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/citrix"}, {"size": 80, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/dellos6/__pycache__"}, {"size": 160, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/dellos6"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/aruba/__pycache__"}, {"size": 112, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network/aruba"}, {"size": 68360, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/network"}, {"size": 144, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/clustering/k8s/__pycache__"}, {"size": 296, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/clustering/k8s"}, {"size": 176, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/clustering/__pycache__"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/clustering/openshift/__pycache__"}, {"size": 128, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/clustering/openshift"}, {"size": 792, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/clustering"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/__pycache__"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/storage/hpe3par/__pycache__"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/storage/hpe3par"}, {"size": 2736, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/storage/netapp/__pycache__"}, {"size": 6104, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/storage/netapp"}, {"size": 72, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/storage/glusterfs/__pycache__"}, {"size": 144, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/storage/glusterfs"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/storage/vexata/__pycache__"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/storage/vexata"}, {"size": 456, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/storage/purestorage/__pycache__"}, {"size": 968, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/storage/purestorage"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/storage/__pycache__"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/storage/ibm/__pycache__"}, {"size": 112, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/storage/ibm"}, {"size": 80, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/storage/zfs/__pycache__"}, {"size": 160, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/storage/zfs"}, {"size": 88, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/storage/infinidat/__pycache__"}, {"size": 176, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/storage/infinidat"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/storage/emc/__pycache__"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/storage/emc"}, {"size": 7792, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/storage"}, {"size": 200, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/utilities/logic/__pycache__"}, {"size": 408, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/utilities/logic"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/utilities/__pycache__"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/utilities/helper/__pycache__"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/utilities/helper"}, {"size": 472, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/utilities"}, {"size": 1720, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/system/__pycache__"}, {"size": 3984, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/system"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/inventory/__pycache__"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/inventory"}, {"size": 96, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/alicloud/__pycache__"}, {"size": 192, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/alicloud"}, {"size": 72, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/webfaction/__pycache__"}, {"size": 144, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/webfaction"}, {"size": 432, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/misc/__pycache__"}, {"size": 952, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/misc"}, {"size": 856, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/openstack/__pycache__"}, {"size": 1896, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/openstack"}, {"size": 72, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/podman/__pycache__"}, {"size": 144, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/podman"}, {"size": 912, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/docker/__pycache__"}, {"size": 2056, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/docker"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/ovh/__pycache__"}, {"size": 88, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/ovh"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/huawei/__pycache__"}, {"size": 112, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/huawei"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/softlayer/__pycache__"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/softlayer"}, {"size": 5224, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/amazon/__pycache__"}, {"size": 11664, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/amazon"}, {"size": 112, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/profitbricks/__pycache__"}, {"size": 248, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/profitbricks"}, {"size": 112, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/memset/__pycache__"}, {"size": 248, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/memset"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/heroku/__pycache__"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/heroku"}, {"size": 3800, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/azure/__pycache__"}, {"size": 8360, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/azure"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/linode/__pycache__"}, {"size": 136, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/linode"}, {"size": 432, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/rackspace/__pycache__"}, {"size": 968, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/rackspace"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/pubnub/__pycache__"}, {"size": 96, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/pubnub"}, {"size": 3632, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/google/__pycache__"}, {"size": 7832, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/google"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/oracle/__pycache__"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/oracle"}, {"size": 1200, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/cloudstack/__pycache__"}, {"size": 2528, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/cloudstack"}, {"size": 416, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/centurylink/__pycache__"}, {"size": 904, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/centurylink"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/__pycache__"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/atomic/__pycache__"}, {"size": 88, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/atomic"}, {"size": 296, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/digital_ocean/__pycache__"}, {"size": 584, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/digital_ocean"}, {"size": 88, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/cloudscale/__pycache__"}, {"size": 192, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/cloudscale"}, {"size": 192, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/oneandone/__pycache__"}, {"size": 456, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/oneandone"}, {"size": 96, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/lxc/__pycache__"}, {"size": 208, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/lxc"}, {"size": 72, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/lxd/__pycache__"}, {"size": 152, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/lxd"}, {"size": 88, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/spotinst/__pycache__"}, {"size": 192, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/spotinst"}, {"size": 88, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/smartos/__pycache__"}, {"size": 184, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/smartos"}, {"size": 136, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/kubevirt/__pycache__"}, {"size": 272, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/kubevirt"}, {"size": 216, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/scaleway/__pycache__"}, {"size": 448, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/scaleway"}, {"size": 504, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/vultr/__pycache__"}, {"size": 1032, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/vultr"}, {"size": 144, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/xenserver/__pycache__"}, {"size": 376, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/xenserver"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/online/__pycache__"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/online"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/dimensiondata/__pycache__"}, {"size": 120, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/dimensiondata"}, {"size": 1152, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/ovirt/__pycache__"}, {"size": 2480, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/ovirt"}, {"size": 192, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/hcloud/__pycache__"}, {"size": 392, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/hcloud"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/packet/__pycache__"}, {"size": 136, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/packet"}, {"size": 104, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/univention/__pycache__"}, {"size": 232, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/univention"}, {"size": 184, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/opennebula/__pycache__"}, {"size": 408, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/opennebula"}, {"size": 2504, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/vmware/__pycache__"}, {"size": 5696, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud/vmware"}, {"size": 52400, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/cloud"}, {"size": 576, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/files/__pycache__"}, {"size": 1288, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/files"}, {"size": 120, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/commands/__pycache__"}, {"size": 240, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/commands"}, {"size": 1304, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/windows/__pycache__"}, {"size": 4896, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/windows"}, {"size": 688, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/monitoring/__pycache__"}, {"size": 384, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/monitoring/zabbix/__pycache__"}, {"size": 912, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/monitoring/zabbix"}, {"size": 2456, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/monitoring"}, {"size": 96, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/net_tools/basics/__pycache__"}, {"size": 200, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/net_tools/basics"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/net_tools/exoscale/__pycache__"}, {"size": 88, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/net_tools/exoscale"}, {"size": 128, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/net_tools/netbox/__pycache__"}, {"size": 264, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/net_tools/netbox"}, {"size": 288, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/net_tools/nios/__pycache__"}, {"size": 584, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/net_tools/nios"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/net_tools/ldap/__pycache__"}, {"size": 96, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/net_tools/ldap"}, {"size": 352, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/net_tools/__pycache__"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/net_tools/infinity/__pycache__"}, {"size": 88, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/net_tools/infinity"}, {"size": 2096, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/net_tools"}, {"size": 168, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/messaging/rabbitmq/__pycache__"}, {"size": 344, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/messaging/rabbitmq"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/messaging/__pycache__"}, {"size": 352, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/messaging"}, {"size": 440, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/source_control/__pycache__"}, {"size": 72, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/source_control/bitbucket/__pycache__"}, {"size": 160, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/source_control/bitbucket"}, {"size": 1112, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules/source_control"}, {"size": 160408, "name": "/usr/local/lib/python3.7/site-packages/ansible/modules"}, {"size": 191840, "name": "/usr/local/lib/python3.7/site-packages/ansible"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/wrapt-1.11.2.dist-info"}, {"size": 240, "name": "/usr/local/lib/python3.7/site-packages/pip/_internal/utils/__pycache__"}, {"size": 512, "name": "/usr/local/lib/python3.7/site-packages/pip/_internal/utils"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/pip/_internal/models/__pycache__"}, {"size": 96, "name": "/usr/local/lib/python3.7/site-packages/pip/_internal/models"}, {"size": 320, "name": "/usr/local/lib/python3.7/site-packages/pip/_internal/__pycache__"}, {"size": 120, "name": "/usr/local/lib/python3.7/site-packages/pip/_internal/cli/__pycache__"}, {"size": 264, "name": "/usr/local/lib/python3.7/site-packages/pip/_internal/cli"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/pip/_internal/operations/__pycache__"}, {"size": 136, "name": "/usr/local/lib/python3.7/site-packages/pip/_internal/operations"}, {"size": 168, "name": "/usr/local/lib/python3.7/site-packages/pip/_internal/req/__pycache__"}, {"size": 384, "name": "/usr/local/lib/python3.7/site-packages/pip/_internal/req"}, {"size": 96, "name": "/usr/local/lib/python3.7/site-packages/pip/_internal/vcs/__pycache__"}, {"size": 200, "name": "/usr/local/lib/python3.7/site-packages/pip/_internal/vcs"}, {"size": 192, "name": "/usr/local/lib/python3.7/site-packages/pip/_internal/commands/__pycache__"}, {"size": 400, "name": "/usr/local/lib/python3.7/site-packages/pip/_internal/commands"}, {"size": 2752, "name": "/usr/local/lib/python3.7/site-packages/pip/_internal"}, {"size": 136, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/packaging/__pycache__"}, {"size": 296, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/packaging"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/pytoml/__pycache__"}, {"size": 128, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/pytoml"}, {"size": 72, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/msgpack/__pycache__"}, {"size": 168, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/msgpack"}, {"size": 912, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/chardet/__pycache__"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/chardet/cli/__pycache__"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/chardet/cli"}, {"size": 1816, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/chardet"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/webencodings/__pycache__"}, {"size": 152, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/webencodings"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/progress/__pycache__"}, {"size": 80, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/progress"}, {"size": 96, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/pep517/__pycache__"}, {"size": 200, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/pep517"}, {"size": 224, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/distlib/_backport/__pycache__"}, {"size": 544, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/distlib/_backport"}, {"size": 616, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/distlib/__pycache__"}, {"size": 2712, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/distlib"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/colorama/__pycache__"}, {"size": 144, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/colorama"}, {"size": 72, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/lockfile/__pycache__"}, {"size": 152, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/lockfile"}, {"size": 104, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/cachecontrol/__pycache__"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/cachecontrol/caches/__pycache__"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/cachecontrol/caches"}, {"size": 280, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/cachecontrol"}, {"size": 456, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/idna/__pycache__"}, {"size": 992, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/idna"}, {"size": 776, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/__pycache__"}, {"size": 368, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/requests/__pycache__"}, {"size": 792, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/requests"}, {"size": 96, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/filters/__pycache__"}, {"size": 216, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/filters"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__"}, {"size": 144, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/treewalkers"}, {"size": 104, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__"}, {"size": 232, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/treebuilders"}, {"size": 536, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/__pycache__"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/_trie/__pycache__"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/_trie"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/treeadapters"}, {"size": 1952, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/certifi/__pycache__"}, {"size": 608, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/certifi"}, {"size": 144, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/util/__pycache__"}, {"size": 312, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/util"}, {"size": 240, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/__pycache__"}, {"size": 136, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/contrib/__pycache__"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__"}, {"size": 112, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/contrib/_securetransport"}, {"size": 408, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/contrib"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/packages/__pycache__"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/packages/backports"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname"}, {"size": 192, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/packages"}, {"size": 1440, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3"}, {"size": 208, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/pkg_resources/__pycache__"}, {"size": 432, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor/pkg_resources"}, {"size": 14000, "name": "/usr/local/lib/python3.7/site-packages/pip/_vendor"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/pip/__pycache__"}, {"size": 16784, "name": "/usr/local/lib/python3.7/site-packages/pip"}, {"size": 1424, "name": "/usr/local/lib/python3.7/site-packages/tornado/test/__pycache__"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/tornado/test/csv_translations"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/tornado/test/static/dir"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/tornado/test/static"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/tornado/test/templates"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/tornado/test/gettext_translations/fr_FR/LC_MESSAGES"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/tornado/test/gettext_translations/fr_FR"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/tornado/test/gettext_translations"}, {"size": 2880, "name": "/usr/local/lib/python3.7/site-packages/tornado/test"}, {"size": 80, "name": "/usr/local/lib/python3.7/site-packages/tornado/platform/__pycache__"}, {"size": 160, "name": "/usr/local/lib/python3.7/site-packages/tornado/platform"}, {"size": 1480, "name": "/usr/local/lib/python3.7/site-packages/tornado/__pycache__"}, {"size": 6336, "name": "/usr/local/lib/python3.7/site-packages/tornado"}, {"size": 240, "name": "/usr/local/lib/python3.7/site-packages/pytz-2019.3.dist-info"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/smmap/test/__pycache__"}, {"size": 120, "name": "/usr/local/lib/python3.7/site-packages/smmap/test"}, {"size": 88, "name": "/usr/local/lib/python3.7/site-packages/smmap/__pycache__"}, {"size": 304, "name": "/usr/local/lib/python3.7/site-packages/smmap"}, {"size": 872, "name": "/usr/local/lib/python3.7/site-packages/asn1crypto/__pycache__"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/asn1crypto/_perf/__pycache__"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/asn1crypto/_perf"}, {"size": 1944, "name": "/usr/local/lib/python3.7/site-packages/asn1crypto"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/asn1crypto-0.24.0.dist-info"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/certifi/__pycache__"}, {"size": 600, "name": "/usr/local/lib/python3.7/site-packages/certifi"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/PyYAML-5.1.1.dist-info"}, {"size": 72, "name": "/usr/local/lib/python3.7/site-packages/stix2-1.2.1.dist-info"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/idna-2.8.dist-info"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/oyaml-0.9.dist-info"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/ifconfigparser/__pycache__"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/ifconfigparser"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/python_dateutil-2.8.0.dist-info"}, {"size": 72, "name": "/usr/local/lib/python3.7/site-packages/bcrypt-3.1.7.dist-info"}, {"size": 112, "name": "/usr/local/lib/python3.7/site-packages/nacl/__pycache__"}, {"size": 224, "name": "/usr/local/lib/python3.7/site-packages/nacl/bindings/__pycache__"}, {"size": 504, "name": "/usr/local/lib/python3.7/site-packages/nacl/bindings"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/nacl/pwhash/__pycache__"}, {"size": 112, "name": "/usr/local/lib/python3.7/site-packages/nacl/pwhash"}, {"size": 2320, "name": "/usr/local/lib/python3.7/site-packages/nacl"}, {"size": 72, "name": "/usr/local/lib/python3.7/site-packages/mkdocs-1.0.4.dist-info"}, {"size": 64, "name": "/usr/local/lib/python3.7/site-packages/setuptools-41.0.1-py3.7.egg-info"}, {"size": 128, "name": "/usr/local/lib/python3.7/site-packages/urllib3-1.25.3.dist-info"}, {"size": 336, "name": "/usr/local/lib/python3.7/site-packages/yaml/__pycache__"}, {"size": 824, "name": "/usr/local/lib/python3.7/site-packages/yaml"}, {"size": 72, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/config/__pycache__"}, {"size": 152, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/config"}, {"size": 96, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/tests/config/__pycache__"}, {"size": 192, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/tests/config"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/tests/integration/subpages/docs/sub1"}, {"size": 88, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/tests/integration/subpages/docs"}, {"size": 88, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/tests/integration/subpages"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/tests/integration/complicated_config/documentation"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/tests/integration/complicated_config/theme_tweaks"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/tests/integration/complicated_config"}, {"size": 120, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/tests/integration"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/tests/utils/__pycache__"}, {"size": 88, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/tests/utils"}, {"size": 200, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/tests/__pycache__"}, {"size": 152, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/tests/structure/__pycache__"}, {"size": 336, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/tests/structure"}, {"size": 1144, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/tests"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/utils/__pycache__"}, {"size": 112, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/utils"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/__pycache__"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/contrib/__pycache__"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/contrib/search/__pycache__"}, {"size": 184, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/contrib/search/templates/search"}, {"size": 184, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/contrib/search/templates"}, {"size": 664, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/contrib/search/lunr-language"}, {"size": 904, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/contrib/search"}, {"size": 912, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/contrib"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/templates"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/commands/__pycache__"}, {"size": 104, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/commands"}, {"size": 80, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/structure/__pycache__"}, {"size": 152, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/structure"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/themes/__pycache__"}, {"size": 184, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/themes/readthedocs/css"}, {"size": 200, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/themes/readthedocs/js"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/themes/readthedocs/__pycache__"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/themes/readthedocs/img"}, {"size": 720, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/themes/readthedocs/fonts"}, {"size": 1216, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/themes/readthedocs"}, {"size": 296, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/themes/mkdocs/css"}, {"size": 256, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/themes/mkdocs/js"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/themes/mkdocs/__pycache__"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/themes/mkdocs/img"}, {"size": 2312, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/themes/mkdocs/fonts"}, {"size": 2976, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/themes/mkdocs"}, {"size": 4200, "name": "/usr/local/lib/python3.7/site-packages/mkdocs/themes"}, {"size": 6880, "name": "/usr/local/lib/python3.7/site-packages/mkdocs"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/six-1.12.0.dist-info"}, {"size": 144, "name": "/usr/local/lib/python3.7/site-packages/urllib3/util/__pycache__"}, {"size": 320, "name": "/usr/local/lib/python3.7/site-packages/urllib3/util"}, {"size": 240, "name": "/usr/local/lib/python3.7/site-packages/urllib3/__pycache__"}, {"size": 136, "name": "/usr/local/lib/python3.7/site-packages/urllib3/contrib/__pycache__"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/urllib3/contrib/_securetransport/__pycache__"}, {"size": 112, "name": "/usr/local/lib/python3.7/site-packages/urllib3/contrib/_securetransport"}, {"size": 424, "name": "/usr/local/lib/python3.7/site-packages/urllib3/contrib"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/urllib3/packages/__pycache__"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/urllib3/packages/backports/__pycache__"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/urllib3/packages/backports"}, {"size": 200, "name": "/usr/local/lib/python3.7/site-packages/urllib3/packages/rfc3986/__pycache__"}, {"size": 432, "name": "/usr/local/lib/python3.7/site-packages/urllib3/packages/rfc3986"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/urllib3/packages/ssl_match_hostname/__pycache__"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/urllib3/packages/ssl_match_hostname"}, {"size": 624, "name": "/usr/local/lib/python3.7/site-packages/urllib3/packages"}, {"size": 1904, "name": "/usr/local/lib/python3.7/site-packages/urllib3"}, {"size": 120, "name": "/usr/local/lib/python3.7/site-packages/paramiko-2.6.0.dist-info"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/cffi-1.12.3.dist-info"}, {"size": 136, "name": "/usr/local/lib/python3.7/site-packages/setuptools/_vendor/packaging/__pycache__"}, {"size": 296, "name": "/usr/local/lib/python3.7/site-packages/setuptools/_vendor/packaging"}, {"size": 456, "name": "/usr/local/lib/python3.7/site-packages/setuptools/_vendor/__pycache__"}, {"size": 1272, "name": "/usr/local/lib/python3.7/site-packages/setuptools/_vendor"}, {"size": 552, "name": "/usr/local/lib/python3.7/site-packages/setuptools/__pycache__"}, {"size": 472, "name": "/usr/local/lib/python3.7/site-packages/setuptools/command/__pycache__"}, {"size": 1048, "name": "/usr/local/lib/python3.7/site-packages/setuptools/command"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/setuptools/extern/__pycache__"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/setuptools/extern"}, {"size": 4336, "name": "/usr/local/lib/python3.7/site-packages/setuptools"}, {"size": 88, "name": "/usr/local/lib/python3.7/site-packages/isort-4.3.21.dist-info"}, {"size": 136, "name": "/usr/local/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__"}, {"size": 296, "name": "/usr/local/lib/python3.7/site-packages/pkg_resources/_vendor/packaging"}, {"size": 504, "name": "/usr/local/lib/python3.7/site-packages/pkg_resources/_vendor/__pycache__"}, {"size": 1376, "name": "/usr/local/lib/python3.7/site-packages/pkg_resources/_vendor"}, {"size": 208, "name": "/usr/local/lib/python3.7/site-packages/pkg_resources/__pycache__"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/pkg_resources/extern/__pycache__"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/pkg_resources/extern"}, {"size": 1824, "name": "/usr/local/lib/python3.7/site-packages/pkg_resources"}, {"size": 104, "name": "/usr/local/lib/python3.7/site-packages/bandit-1.6.2.dist-info"}, {"size": 88, "name": "/usr/local/lib/python3.7/site-packages/suds/transport/__pycache__"}, {"size": 136, "name": "/usr/local/lib/python3.7/site-packages/suds/transport"}, {"size": 112, "name": "/usr/local/lib/python3.7/site-packages/suds/umx/__pycache__"}, {"size": 184, "name": "/usr/local/lib/python3.7/site-packages/suds/umx"}, {"size": 336, "name": "/usr/local/lib/python3.7/site-packages/suds/sax/__pycache__"}, {"size": 512, "name": "/usr/local/lib/python3.7/site-packages/suds/sax"}, {"size": 896, "name": "/usr/local/lib/python3.7/site-packages/suds/__pycache__"}, {"size": 176, "name": "/usr/local/lib/python3.7/site-packages/suds/mx/__pycache__"}, {"size": 280, "name": "/usr/local/lib/python3.7/site-packages/suds/mx"}, {"size": 144, "name": "/usr/local/lib/python3.7/site-packages/suds/bindings/__pycache__"}, {"size": 232, "name": "/usr/local/lib/python3.7/site-packages/suds/bindings"}, {"size": 392, "name": "/usr/local/lib/python3.7/site-packages/suds/xsd/__pycache__"}, {"size": 576, "name": "/usr/local/lib/python3.7/site-packages/suds/xsd"}, {"size": 3272, "name": "/usr/local/lib/python3.7/site-packages/suds"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/requests-2.22.0.dist-info"}, {"size": 304, "name": "/usr/local/lib/python3.7/site-packages/lxml/isoschematron/resources/xsl/iso-schematron-xslt1"}, {"size": 328, "name": "/usr/local/lib/python3.7/site-packages/lxml/isoschematron/resources/xsl"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/lxml/isoschematron/resources/rng"}, {"size": 368, "name": "/usr/local/lib/python3.7/site-packages/lxml/isoschematron/resources"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/lxml/isoschematron/__pycache__"}, {"size": 424, "name": "/usr/local/lib/python3.7/site-packages/lxml/isoschematron"}, {"size": 1024, "name": "/usr/local/lib/python3.7/site-packages/lxml/includes/libxml"}, {"size": 312, "name": "/usr/local/lib/python3.7/site-packages/lxml/includes/libxslt"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/lxml/includes/libexslt"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/lxml/includes/__pycache__"}, {"size": 1728, "name": "/usr/local/lib/python3.7/site-packages/lxml/includes"}, {"size": 304, "name": "/usr/local/lib/python3.7/site-packages/lxml/html/__pycache__"}, {"size": 3656, "name": "/usr/local/lib/python3.7/site-packages/lxml/html"}, {"size": 120, "name": "/usr/local/lib/python3.7/site-packages/lxml/__pycache__"}, {"size": 44816, "name": "/usr/local/lib/python3.7/site-packages/lxml"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/pbr/cmd/__pycache__"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/pbr/cmd"}, {"size": 288, "name": "/usr/local/lib/python3.7/site-packages/pbr/tests/__pycache__"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/pbr/tests/testpackage/pbr_testpackage/__pycache__"}, {"size": 0, "name": "/usr/local/lib/python3.7/site-packages/pbr/tests/testpackage/pbr_testpackage/package_data"}, {"size": 72, "name": "/usr/local/lib/python3.7/site-packages/pbr/tests/testpackage/pbr_testpackage"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/pbr/tests/testpackage/__pycache__"}, {"size": 0, "name": "/usr/local/lib/python3.7/site-packages/pbr/tests/testpackage/data_files"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/pbr/tests/testpackage/doc/source/__pycache__"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/pbr/tests/testpackage/doc/source"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/pbr/tests/testpackage/doc"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/pbr/tests/testpackage/src"}, {"size": 192, "name": "/usr/local/lib/python3.7/site-packages/pbr/tests/testpackage"}, {"size": 800, "name": "/usr/local/lib/python3.7/site-packages/pbr/tests"}, {"size": 232, "name": "/usr/local/lib/python3.7/site-packages/pbr/__pycache__"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/pbr/hooks/__pycache__"}, {"size": 104, "name": "/usr/local/lib/python3.7/site-packages/pbr/hooks"}, {"size": 1432, "name": "/usr/local/lib/python3.7/site-packages/pbr"}, {"size": 80, "name": "/usr/local/lib/python3.7/site-packages/gitdb/test/__pycache__"}, {"size": 168, "name": "/usr/local/lib/python3.7/site-packages/gitdb/test"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/gitdb/utils/__pycache__"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/gitdb/utils"}, {"size": 224, "name": "/usr/local/lib/python3.7/site-packages/gitdb/__pycache__"}, {"size": 88, "name": "/usr/local/lib/python3.7/site-packages/gitdb/db/__pycache__"}, {"size": 176, "name": "/usr/local/lib/python3.7/site-packages/gitdb/db"}, {"size": 880, "name": "/usr/local/lib/python3.7/site-packages/gitdb"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/ifconfig_parser-0.0.5.dist-info"}, {"size": 456, "name": "/usr/local/lib/python3.7/site-packages/git/test/__pycache__"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/git/test/lib/__pycache__"}, {"size": 88, "name": "/usr/local/lib/python3.7/site-packages/git/test/lib"}, {"size": 8, "name": "/usr/local/lib/python3.7/site-packages/git/test/fixtures/__pycache__"}, {"size": 1952, "name": "/usr/local/lib/python3.7/site-packages/git/test/fixtures"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/git/test/performance/__pycache__"}, {"size": 80, "name": "/usr/local/lib/python3.7/site-packages/git/test/performance"}, {"size": 3248, "name": "/usr/local/lib/python3.7/site-packages/git/test"}, {"size": 112, "name": "/usr/local/lib/python3.7/site-packages/git/objects/submodule/__pycache__"}, {"size": 280, "name": "/usr/local/lib/python3.7/site-packages/git/objects/submodule"}, {"size": 136, "name": "/usr/local/lib/python3.7/site-packages/git/objects/__pycache__"}, {"size": 576, "name": "/usr/local/lib/python3.7/site-packages/git/objects"}, {"size": 304, "name": "/usr/local/lib/python3.7/site-packages/git/__pycache__"}, {"size": 112, "name": "/usr/local/lib/python3.7/site-packages/git/refs/__pycache__"}, {"size": 256, "name": "/usr/local/lib/python3.7/site-packages/git/refs"}, {"size": 136, "name": "/usr/local/lib/python3.7/site-packages/git/index/__pycache__"}, {"size": 304, "name": "/usr/local/lib/python3.7/site-packages/git/index"}, {"size": 96, "name": "/usr/local/lib/python3.7/site-packages/git/repo/__pycache__"}, {"size": 216, "name": "/usr/local/lib/python3.7/site-packages/git/repo"}, {"size": 5280, "name": "/usr/local/lib/python3.7/site-packages/git"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/dateutil/zoneinfo/__pycache__"}, {"size": 352, "name": "/usr/local/lib/python3.7/site-packages/dateutil/zoneinfo"}, {"size": 168, "name": "/usr/local/lib/python3.7/site-packages/dateutil/__pycache__"}, {"size": 112, "name": "/usr/local/lib/python3.7/site-packages/dateutil/parser/__pycache__"}, {"size": 272, "name": "/usr/local/lib/python3.7/site-packages/dateutil/parser"}, {"size": 160, "name": "/usr/local/lib/python3.7/site-packages/dateutil/tz/__pycache__"}, {"size": 368, "name": "/usr/local/lib/python3.7/site-packages/dateutil/tz"}, {"size": 1400, "name": "/usr/local/lib/python3.7/site-packages/dateutil"}, {"size": 16, "name": "/usr/local/lib/python3.7/site-packages/typed_ast/tests/__pycache__"}, {"size": 32, "name": "/usr/local/lib/python3.7/site-packages/typed_ast/tests"}, {"size": 88, "name": "/usr/local/lib/python3.7/site-packages/typed_ast/__pycache__"}, {"size": 1336, "name": "/usr/local/lib/python3.7/site-packages/typed_ast"}, {"size": 56, "name": "/usr/local/lib/python3.7/site-packages/wheel-0.33.4-py3.7.egg-info"}, {"size": 152, "name": "/usr/local/lib/python3.7/site-packages/astroid-2.2.5.dist-info"}, {"size": 24, "name": "/usr/local/lib/python3.7/site-packages/stevedore/example2/__pycache__"}, {"size": 40, "name": "/usr/local/lib/python3.7/site-packages/stevedore/example2"}, {"size": 48, "name": "/usr/local/lib/python3.7/site-packages/stevedore/example/__pycache__"}, {"size": 88, "name": "/usr/local/lib/python3.7/site-packages/stevedore/example"}, {"size": 152, "name": "/usr/local/lib/python3.7/site-packages/stevedore/tests/__pycache__"}, {"size": 296, "name": "/usr/local/lib/python3.7/site-packages/stevedore/tests"}, {"size": 120, "name": "/usr/local/lib/python3.7/site-packages/stevedore/__pycache__"}, {"size": 672, "name": "/usr/local/lib/python3.7/site-packages/stevedore"}, {"size": 80, "name": "/usr/local/lib/python3.7/site-packages/lazy_object_proxy/__pycache__"}, {"size": 232, "name": "/usr/local/lib/python3.7/site-packages/lazy_object_proxy"}, {"size": 361880, "name": "/usr/local/lib/python3.7/site-packages"}, {"size": 361880, "name": "/usr/local/lib/python3.7"}, {"size": 0, "name": "/usr/local/lib/python2.7/site-packages"}, {"size": 0, "name": "/usr/local/lib/python2.7"}, {"size": 361880, "name": "/usr/local/lib"}, {"size": 0, "name": "/usr/local/opt"}, {"size": 0, "name": "/usr/local/Frameworks/Python.framework/Versions"}, {"size": 0, "name": "/usr/local/Frameworks/Python.framework"}, {"size": 0, "name": "/usr/local/Frameworks"}, {"size": 187224, "name": "/usr/local/Cellar/kubernetes-helm/2.14.3/bin"}, {"size": 8, "name": "/usr/local/Cellar/kubernetes-helm/2.14.3/.brew"}, {"size": 120, "name": "/usr/local/Cellar/kubernetes-helm/2.14.3/etc/bash_completion.d"}, {"size": 120, "name": "/usr/local/Cellar/kubernetes-helm/2.14.3/etc"}, {"size": 360, "name": "/usr/local/Cellar/kubernetes-helm/2.14.3/share/man/man1"}, {"size": 360, "name": "/usr/local/Cellar/kubernetes-helm/2.14.3/share/man"}, {"size": 128, "name": "/usr/local/Cellar/kubernetes-helm/2.14.3/share/zsh/site-functions"}, {"size": 128, "name": "/usr/local/Cellar/kubernetes-helm/2.14.3/share/zsh"}, {"size": 488, "name": "/usr/local/Cellar/kubernetes-helm/2.14.3/share"}, {"size": 187880, "name": "/usr/local/Cellar/kubernetes-helm/2.14.3"}, {"size": 187880, "name": "/usr/local/Cellar/kubernetes-helm"}, {"size": 112, "name": "/usr/local/Cellar/picocom/3.1/bin"}, {"size": 8, "name": "/usr/local/Cellar/picocom/3.1/.brew"}, {"size": 64, "name": "/usr/local/Cellar/picocom/3.1/share/man/man1"}, {"size": 64, "name": "/usr/local/Cellar/picocom/3.1/share/man"}, {"size": 64, "name": "/usr/local/Cellar/picocom/3.1/share"}, {"size": 264, "name": "/usr/local/Cellar/picocom/3.1"}, {"size": 264, "name": "/usr/local/Cellar/picocom"}, {"size": 280, "name": "/usr/local/Cellar/gdbm/1.18.1/bin"}, {"size": 8, "name": "/usr/local/Cellar/gdbm/1.18.1/.brew"}, {"size": 24, "name": "/usr/local/Cellar/gdbm/1.18.1/include"}, {"size": 256, "name": "/usr/local/Cellar/gdbm/1.18.1/lib"}, {"size": 40, "name": "/usr/local/Cellar/gdbm/1.18.1/share/man/man3"}, {"size": 48, "name": "/usr/local/Cellar/gdbm/1.18.1/share/man/man1"}, {"size": 88, "name": "/usr/local/Cellar/gdbm/1.18.1/share/man"}, {"size": 280, "name": "/usr/local/Cellar/gdbm/1.18.1/share/info"}, {"size": 368, "name": "/usr/local/Cellar/gdbm/1.18.1/share"}, {"size": 1272, "name": "/usr/local/Cellar/gdbm/1.18.1"}, {"size": 1272, "name": "/usr/local/Cellar/gdbm"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.3/bin"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.3/.brew"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.3/IDLE 3.app/Contents/MacOS"}, {"size": 352, "name": "/usr/local/Cellar/python/3.7.3/IDLE 3.app/Contents/Resources"}, {"size": 376, "name": "/usr/local/Cellar/python/3.7.3/IDLE 3.app/Contents"}, {"size": 376, "name": "/usr/local/Cellar/python/3.7.3/IDLE 3.app"}, {"size": 0, "name": "/usr/local/Cellar/python/3.7.3/libexec/bin"}, {"size": 48, "name": "/usr/local/Cellar/python/3.7.3/libexec/wheel/wheel/cli"}, {"size": 160, "name": "/usr/local/Cellar/python/3.7.3/libexec/wheel/wheel"}, {"size": 56, "name": "/usr/local/Cellar/python/3.7.3/libexec/wheel/wheel.egg-info"}, {"size": 48, "name": "/usr/local/Cellar/python/3.7.3/libexec/wheel/build/lib/wheel/cli"}, {"size": 160, "name": "/usr/local/Cellar/python/3.7.3/libexec/wheel/build/lib/wheel"}, {"size": 160, "name": "/usr/local/Cellar/python/3.7.3/libexec/wheel/build/lib"}, {"size": 160, "name": "/usr/local/Cellar/python/3.7.3/libexec/wheel/build"}, {"size": 432, "name": "/usr/local/Cellar/python/3.7.3/libexec/wheel"}, {"size": 96, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/docs/man/commands"}, {"size": 104, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/docs/man"}, {"size": 72, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/docs/html/development"}, {"size": 184, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/docs/html/reference"}, {"size": 392, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/docs/html"}, {"size": 504, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/docs"}, {"size": 272, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_internal/utils"}, {"size": 48, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_internal/models"}, {"size": 144, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_internal/cli"}, {"size": 80, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_internal/operations"}, {"size": 216, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_internal/req"}, {"size": 104, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_internal/vcs"}, {"size": 208, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_internal/commands"}, {"size": 1512, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_internal"}, {"size": 160, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/packaging"}, {"size": 64, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/pytoml"}, {"size": 96, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/msgpack"}, {"size": 16, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/chardet/cli"}, {"size": 888, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/chardet"}, {"size": 88, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/webencodings"}, {"size": 40, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/progress"}, {"size": 104, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/pep517"}, {"size": 320, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/distlib/_backport"}, {"size": 1872, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/distlib"}, {"size": 80, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/colorama"}, {"size": 80, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/lockfile"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/cachecontrol/caches"}, {"size": 152, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/cachecontrol"}, {"size": 536, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/idna"}, {"size": 424, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/requests"}, {"size": 120, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/html5lib/filters"}, {"size": 80, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/html5lib/treewalkers"}, {"size": 128, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/html5lib/treebuilders"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/html5lib/_trie"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/html5lib/treeadapters"}, {"size": 1096, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/html5lib"}, {"size": 584, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/certifi"}, {"size": 168, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/urllib3/util"}, {"size": 64, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/urllib3/contrib/_securetransport"}, {"size": 224, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/urllib3/contrib"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/urllib3/packages/backports"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/urllib3/packages/ssl_match_hostname"}, {"size": 104, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/urllib3/packages"}, {"size": 784, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/urllib3"}, {"size": 224, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/pkg_resources"}, {"size": 8152, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor"}, {"size": 9680, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip"}, {"size": 9680, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build/lib"}, {"size": 9680, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/build"}, {"size": 72, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src/pip.egg-info"}, {"size": 272, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_internal/utils"}, {"size": 48, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_internal/models"}, {"size": 144, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_internal/cli"}, {"size": 80, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_internal/operations"}, {"size": 216, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_internal/req"}, {"size": 104, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_internal/vcs"}, {"size": 208, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_internal/commands"}, {"size": 1512, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_internal"}, {"size": 200, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/packaging"}, {"size": 72, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/pytoml"}, {"size": 104, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/msgpack"}, {"size": 16, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/chardet/cli"}, {"size": 944, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/chardet"}, {"size": 96, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/webencodings"}, {"size": 48, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/progress"}, {"size": 112, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/pep517"}, {"size": 320, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/distlib/_backport"}, {"size": 1904, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/distlib"}, {"size": 88, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/colorama"}, {"size": 88, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/lockfile"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/cachecontrol/caches"}, {"size": 160, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/cachecontrol"}, {"size": 544, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/idna"}, {"size": 432, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/requests"}, {"size": 120, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/html5lib/filters"}, {"size": 80, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/html5lib/treewalkers"}, {"size": 128, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/html5lib/treebuilders"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/html5lib/_trie"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/html5lib/treeadapters"}, {"size": 1104, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/html5lib"}, {"size": 592, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/certifi"}, {"size": 168, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/urllib3/util"}, {"size": 64, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/urllib3/contrib/_securetransport"}, {"size": 224, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/urllib3/contrib"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/urllib3/packages/backports"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/urllib3/packages/ssl_match_hostname"}, {"size": 104, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/urllib3/packages"}, {"size": 792, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/urllib3"}, {"size": 232, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/pkg_resources"}, {"size": 8496, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor"}, {"size": 10024, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src/pip"}, {"size": 10096, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip/src"}, {"size": 20664, "name": "/usr/local/Cellar/python/3.7.3/libexec/pip"}, {"size": 64, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools/setuptools.egg-info"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools/tests"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools/docs/_templates"}, {"size": 16, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools/docs/_theme/nature/static"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools/docs/_theme/nature"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools/docs/_theme"}, {"size": 744, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools/docs"}, {"size": 160, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools/build/lib/setuptools/_vendor/packaging"}, {"size": 680, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools/build/lib/setuptools/_vendor"}, {"size": 576, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools/build/lib/setuptools/command"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools/build/lib/setuptools/extern"}, {"size": 2712, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools/build/lib/setuptools"}, {"size": 160, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools/build/lib/pkg_resources/_vendor/packaging"}, {"size": 736, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools/build/lib/pkg_resources/_vendor"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools/build/lib/pkg_resources/extern"}, {"size": 968, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools/build/lib/pkg_resources"}, {"size": 3688, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools/build/lib"}, {"size": 3688, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools/build"}, {"size": 104, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools/setuptools/_vendor/packaging/__pycache__"}, {"size": 264, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools/setuptools/_vendor/packaging"}, {"size": 56, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools/setuptools/_vendor/__pycache__"}, {"size": 848, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools/setuptools/_vendor"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools/setuptools/tests/indexes/test_links_priority/simple/foobar"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools/setuptools/tests/indexes/test_links_priority/simple"}, {"size": 16, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools/setuptools/tests/indexes/test_links_priority"}, {"size": 16, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools/setuptools/tests/indexes"}, {"size": 776, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools/setuptools/tests"}, {"size": 496, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools/setuptools/__pycache__"}, {"size": 328, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools/setuptools/command/__pycache__"}, {"size": 904, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools/setuptools/command"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools/setuptools/extern/__pycache__"}, {"size": 16, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools/setuptools/extern"}, {"size": 4488, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools/setuptools"}, {"size": 128, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools/pkg_resources/_vendor/packaging/__pycache__"}, {"size": 288, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools/pkg_resources/_vendor/packaging"}, {"size": 504, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools/pkg_resources/_vendor/__pycache__"}, {"size": 1376, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools/pkg_resources/_vendor"}, {"size": 136, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools/pkg_resources/tests"}, {"size": 208, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools/pkg_resources/__pycache__"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools/pkg_resources/extern/__pycache__"}, {"size": 16, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools/pkg_resources/extern"}, {"size": 1984, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools/pkg_resources"}, {"size": 11432, "name": "/usr/local/Cellar/python/3.7.3/libexec/setuptools"}, {"size": 32528, "name": "/usr/local/Cellar/python/3.7.3/libexec"}, {"size": 0, "name": "/usr/local/Cellar/python/3.7.3/lib/pkgconfig"}, {"size": 0, "name": "/usr/local/Cellar/python/3.7.3/lib"}, {"size": 104, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/bin"}, {"size": 96, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/include/python3.7m/internal"}, {"size": 1784, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/include/python3.7m"}, {"size": 1784, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/include"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/Resources/Python.app/Contents/MacOS"}, {"size": 216, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/Resources/Python.app/Contents/Resources"}, {"size": 264, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/Resources/Python.app/Contents"}, {"size": 264, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/Resources/Python.app"}, {"size": 272, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/Resources"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/pkgconfig"}, {"size": 8672, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload"}, {"size": 120, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/encodings/__pycache__"}, {"size": 3600, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/encodings"}, {"size": 680, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/distutils/tests"}, {"size": 544, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/distutils/__pycache__"}, {"size": 248, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/distutils/command/__pycache__"}, {"size": 4904, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/distutils/command"}, {"size": 7056, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/distutils"}, {"size": 648, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ctypes/test"}, {"size": 56, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ctypes/__pycache__"}, {"size": 40, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ctypes/macholib/__pycache__"}, {"size": 104, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ctypes/macholib"}, {"size": 936, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ctypes"}, {"size": 416, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/test/testmock"}, {"size": 1088, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/test"}, {"size": 240, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/__pycache__"}, {"size": 1768, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/curses/__pycache__"}, {"size": 64, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/curses"}, {"size": 40, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/eintrdata"}, {"size": 192, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_json"}, {"size": 136, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_tools"}, {"size": 480, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/audiodata"}, {"size": 64, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/extension"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/zipdata01"}, {"size": 136, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/source"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data02/one"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data02/two"}, {"size": 16, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data02"}, {"size": 0, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data03/namespace/portion2"}, {"size": 0, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data03/namespace/portion1"}, {"size": 0, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data03/namespace"}, {"size": 0, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data03"}, {"size": 152, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/import_"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/project1/parent/child"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/project1/parent"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/project1"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/portion2/foo"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/portion2"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/not_a_namespace_pkg"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/project3/parent/child"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/project3/parent"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/project3"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/project2/parent/child"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/project2/parent"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/project2"}, {"size": 0, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/module_and_namespace_package"}, {"size": 16, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/both_portions/foo"}, {"size": 16, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/both_portions"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/portion1/foo"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/portion1"}, {"size": 96, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/zipdata02"}, {"size": 48, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/frozen"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/builtin"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data01/subdirectory"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data01"}, {"size": 1000, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib"}, {"size": 128, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/dtracedata"}, {"size": 16, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/tracedmodules"}, {"size": 9128, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/decimaltestdata"}, {"size": 40, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/xmltestdata"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/encoded_modules"}, {"size": 240, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/cjkencodings"}, {"size": 16, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_warnings/data"}, {"size": 136, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_warnings"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_import/data/package2"}, {"size": 16, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_import/data/circular_imports/subpkg"}, {"size": 88, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_import/data/circular_imports"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_import/data/package"}, {"size": 104, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_import/data"}, {"size": 208, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_import"}, {"size": 240, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/support"}, {"size": 104, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/imghdrdata"}, {"size": 72, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/sndhdrdata"}, {"size": 488, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_email/data"}, {"size": 1560, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_email"}, {"size": 1448, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_asyncio"}, {"size": 200, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/libregrtest"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/data"}, {"size": 48, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/capath"}, {"size": 40, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/subprocessdata"}, {"size": 41952, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test"}, {"size": 224, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/turtledemo"}, {"size": 16, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/multiprocessing/dummy"}, {"size": 264, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/multiprocessing/__pycache__"}, {"size": 784, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/multiprocessing"}, {"size": 232, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/urllib/__pycache__"}, {"size": 552, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/urllib"}, {"size": 136, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/html/__pycache__"}, {"size": 344, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/html"}, {"size": 208, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/tkinter/test/test_ttk"}, {"size": 280, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/tkinter/test/test_tkinter"}, {"size": 552, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/tkinter/test"}, {"size": 1304, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/tkinter"}, {"size": 4328, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/__pycache__"}, {"size": 16, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xml/parsers/__pycache__"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xml/parsers"}, {"size": 128, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xml/sax/__pycache__"}, {"size": 272, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xml/sax"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xml/__pycache__"}, {"size": 296, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xml/dom"}, {"size": 120, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xml/etree/__pycache__"}, {"size": 288, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xml/etree"}, {"size": 904, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xml"}, {"size": 136, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/wsgiref"}, {"size": 88, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/json/__pycache__"}, {"size": 200, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/json"}, {"size": 304, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/http/__pycache__"}, {"size": 720, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/http"}, {"size": 264, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/sqlite3/test"}, {"size": 288, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/sqlite3"}, {"size": 3776, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ensurepip/_bundled"}, {"size": 3808, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ensurepip"}, {"size": 56, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/concurrent/futures/__pycache__"}, {"size": 184, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/concurrent/futures"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/concurrent/__pycache__"}, {"size": 200, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/concurrent"}, {"size": 256, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/config-3.7m-darwin"}, {"size": 16, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/venv/scripts/posix"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/venv/scripts/common"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/venv/scripts"}, {"size": 72, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/venv"}, {"size": 56, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/dbm"}, {"size": 72, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/importlib/__pycache__"}, {"size": 384, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/importlib"}, {"size": 80, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xmlrpc/__pycache__"}, {"size": 256, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xmlrpc"}, {"size": 464, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib2to3/fixes/__pycache__"}, {"size": 944, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib2to3/fixes"}, {"size": 40, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib2to3/tests/data/fixers/myfixes"}, {"size": 64, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib2to3/tests/data/fixers"}, {"size": 416, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib2to3/tests/data"}, {"size": 872, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib2to3/tests"}, {"size": 200, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib2to3/__pycache__"}, {"size": 128, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib2to3/pgen2/__pycache__"}, {"size": 304, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib2to3/pgen2"}, {"size": 2680, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib2to3"}, {"size": 264, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/idlelib/Icons"}, {"size": 1072, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/idlelib/idle_test"}, {"size": 3472, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/idlelib"}, {"size": 816, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/pydoc_data/__pycache__"}, {"size": 2120, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/pydoc_data"}, {"size": 104, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/collections/__pycache__"}, {"size": 208, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/collections"}, {"size": 648, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/asyncio/__pycache__"}, {"size": 1552, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/asyncio"}, {"size": 264, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/logging/__pycache__"}, {"size": 608, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/logging"}, {"size": 384, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/email/__pycache__"}, {"size": 64, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/email/mime"}, {"size": 1240, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/email"}, {"size": 99936, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7"}, {"size": 99944, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib"}, {"size": 224, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/demo"}, {"size": 56, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/c-globals"}, {"size": 40, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/ssl"}, {"size": 128, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/gdb"}, {"size": 16, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/freeze/test"}, {"size": 208, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/freeze"}, {"size": 96, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/unicode/python-mappings"}, {"size": 296, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/unicode"}, {"size": 40, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/launcher"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/tools"}, {"size": 64, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/core"}, {"size": 64, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/test"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/path"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/ucrt"}, {"size": 72, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/tcltk"}, {"size": 304, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/bundle/bootstrap"}, {"size": 112, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/bundle/packagegroups"}, {"size": 656, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/bundle"}, {"size": 24, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/pip"}, {"size": 72, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/lib"}, {"size": 48, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/dev"}, {"size": 40, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/doc"}, {"size": 80, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/exe"}, {"size": 1528, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi"}, {"size": 40, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/iobench"}, {"size": 96, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/stringbench"}, {"size": 40, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/parser"}, {"size": 40, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/ccbench"}, {"size": 56, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/nuget"}, {"size": 888, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/scripts"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/importbench"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/buildbot"}, {"size": 48, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/unittestgui"}, {"size": 80, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/i18n"}, {"size": 48, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/pynche/X"}, {"size": 352, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/pynche"}, {"size": 320, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/clinic"}, {"size": 8, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/tz"}, {"size": 16, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/test2to3/test"}, {"size": 16, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/test2to3/test2to3"}, {"size": 56, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/test2to3"}, {"size": 4576, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools"}, {"size": 4576, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples"}, {"size": 4576, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7"}, {"size": 4576, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc"}, {"size": 4576, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share"}, {"size": 111296, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7"}, {"size": 111296, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions"}, {"size": 111296, "name": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework"}, {"size": 111296, "name": "/usr/local/Cellar/python/3.7.3/Frameworks"}, {"size": 96, "name": "/usr/local/Cellar/python/3.7.3/Python Launcher 3.app/Contents/MacOS"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.3/Python Launcher 3.app/Contents/Resources/English.lproj/MyDocument.nib"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.3/Python Launcher 3.app/Contents/Resources/English.lproj/MainMenu.nib"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.3/Python Launcher 3.app/Contents/Resources/English.lproj/PreferenceWindow.nib"}, {"size": 104, "name": "/usr/local/Cellar/python/3.7.3/Python Launcher 3.app/Contents/Resources/English.lproj"}, {"size": 432, "name": "/usr/local/Cellar/python/3.7.3/Python Launcher 3.app/Contents/Resources"}, {"size": 536, "name": "/usr/local/Cellar/python/3.7.3/Python Launcher 3.app/Contents"}, {"size": 536, "name": "/usr/local/Cellar/python/3.7.3/Python Launcher 3.app"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.3/share/man/man1"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.3/share/man"}, {"size": 32, "name": "/usr/local/Cellar/python/3.7.3/share"}, {"size": 144896, "name": "/usr/local/Cellar/python/3.7.3"}, {"size": 144896, "name": "/usr/local/Cellar/python"}, {"size": 8, "name": "/usr/local/Cellar/readline/8.0.0_1/.brew"}, {"size": 160, "name": "/usr/local/Cellar/readline/8.0.0_1/include/readline"}, {"size": 160, "name": "/usr/local/Cellar/readline/8.0.0_1/include"}, {"size": 8, "name": "/usr/local/Cellar/readline/8.0.0_1/lib/pkgconfig"}, {"size": 1456, "name": "/usr/local/Cellar/readline/8.0.0_1/lib"}, {"size": 144, "name": "/usr/local/Cellar/readline/8.0.0_1/share/man/man3"}, {"size": 144, "name": "/usr/local/Cellar/readline/8.0.0_1/share/man"}, {"size": 176, "name": "/usr/local/Cellar/readline/8.0.0_1/share/readline"}, {"size": 760, "name": "/usr/local/Cellar/readline/8.0.0_1/share/info"}, {"size": 192, "name": "/usr/local/Cellar/readline/8.0.0_1/share/doc/readline"}, {"size": 192, "name": "/usr/local/Cellar/readline/8.0.0_1/share/doc"}, {"size": 1272, "name": "/usr/local/Cellar/readline/8.0.0_1/share"}, {"size": 3240, "name": "/usr/local/Cellar/readline/8.0.0_1"}, {"size": 3240, "name": "/usr/local/Cellar/readline"}, {"size": 2192, "name": "/usr/local/Cellar/sqlite/3.28.0/bin"}, {"size": 8, "name": "/usr/local/Cellar/sqlite/3.28.0/.brew"}, {"size": 1168, "name": "/usr/local/Cellar/sqlite/3.28.0/include"}, {"size": 8, "name": "/usr/local/Cellar/sqlite/3.28.0/lib/pkgconfig"}, {"size": 4256, "name": "/usr/local/Cellar/sqlite/3.28.0/lib"}, {"size": 24, "name": "/usr/local/Cellar/sqlite/3.28.0/share/man/man1"}, {"size": 24, "name": "/usr/local/Cellar/sqlite/3.28.0/share/man"}, {"size": 24, "name": "/usr/local/Cellar/sqlite/3.28.0/share"}, {"size": 7664, "name": "/usr/local/Cellar/sqlite/3.28.0"}, {"size": 7664, "name": "/usr/local/Cellar/sqlite"}, {"size": 280, "name": "/usr/local/Cellar/xz/5.2.4/bin"}, {"size": 8, "name": "/usr/local/Cellar/xz/5.2.4/.brew"}, {"size": 376, "name": "/usr/local/Cellar/xz/5.2.4/include/lzma"}, {"size": 400, "name": "/usr/local/Cellar/xz/5.2.4/include"}, {"size": 8, "name": "/usr/local/Cellar/xz/5.2.4/lib/pkgconfig"}, {"size": 696, "name": "/usr/local/Cellar/xz/5.2.4/lib"}, {"size": 176, "name": "/usr/local/Cellar/xz/5.2.4/share/man/man1"}, {"size": 176, "name": "/usr/local/Cellar/xz/5.2.4/share/man"}, {"size": 16, "name": "/usr/local/Cellar/xz/5.2.4/share/doc/xz/examples_old"}, {"size": 96, "name": "/usr/local/Cellar/xz/5.2.4/share/doc/xz/examples"}, {"size": 408, "name": "/usr/local/Cellar/xz/5.2.4/share/doc/xz"}, {"size": 408, "name": "/usr/local/Cellar/xz/5.2.4/share/doc"}, {"size": 584, "name": "/usr/local/Cellar/xz/5.2.4/share"}, {"size": 2448, "name": "/usr/local/Cellar/xz/5.2.4"}, {"size": 2448, "name": "/usr/local/Cellar/xz"}, {"size": 5552, "name": "/usr/local/Cellar/cdrtools/3.01_1/bin"}, {"size": 8, "name": "/usr/local/Cellar/cdrtools/3.01_1/.brew"}, {"size": 248, "name": "/usr/local/Cellar/cdrtools/3.01_1/include/scg"}, {"size": 248, "name": "/usr/local/Cellar/cdrtools/3.01_1/include"}, {"size": 216, "name": "/usr/local/Cellar/cdrtools/3.01_1/sbin"}, {"size": 16, "name": "/usr/local/Cellar/cdrtools/3.01_1/etc/default"}, {"size": 16, "name": "/usr/local/Cellar/cdrtools/3.01_1/etc"}, {"size": 1192, "name": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"size": 1968, "name": "/usr/local/Cellar/cdrtools/3.01_1/lib"}, {"size": 480, "name": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"size": 296, "name": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man8"}, {"size": 480, "name": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man1"}, {"size": 1256, "name": "/usr/local/Cellar/cdrtools/3.01_1/share/man"}, {"size": 240, "name": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/cdrecord"}, {"size": 176, "name": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/mkisofs"}, {"size": 48, "name": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/cdda2wav"}, {"size": 16, "name": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/libparanoia"}, {"size": 8, "name": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/rscsi"}, {"size": 488, "name": "/usr/local/Cellar/cdrtools/3.01_1/share/doc"}, {"size": 1744, "name": "/usr/local/Cellar/cdrtools/3.01_1/share"}, {"size": 10624, "name": "/usr/local/Cellar/cdrtools/3.01_1"}, {"size": 10624, "name": "/usr/local/Cellar/cdrtools"}, {"size": 8, "name": "/usr/local/Cellar/oniguruma/6.9.2/bin"}, {"size": 8, "name": "/usr/local/Cellar/oniguruma/6.9.2/.brew"}, {"size": 120, "name": "/usr/local/Cellar/oniguruma/6.9.2/include"}, {"size": 8, "name": "/usr/local/Cellar/oniguruma/6.9.2/lib/pkgconfig"}, {"size": 2336, "name": "/usr/local/Cellar/oniguruma/6.9.2/lib"}, {"size": 2768, "name": "/usr/local/Cellar/oniguruma/6.9.2"}, {"size": 2768, "name": "/usr/local/Cellar/oniguruma"}, {"size": 888, "name": "/usr/local/Cellar/socat/1.7.3.3/bin"}, {"size": 8, "name": "/usr/local/Cellar/socat/1.7.3.3/.brew"}, {"size": 264, "name": "/usr/local/Cellar/socat/1.7.3.3/share/man/man1"}, {"size": 264, "name": "/usr/local/Cellar/socat/1.7.3.3/share/man"}, {"size": 264, "name": "/usr/local/Cellar/socat/1.7.3.3/share"}, {"size": 1352, "name": "/usr/local/Cellar/socat/1.7.3.3"}, {"size": 1352, "name": "/usr/local/Cellar/socat"}, {"size": 8416, "name": "/usr/local/Cellar/nmap/7.70/bin"}, {"size": 8, "name": "/usr/local/Cellar/nmap/7.70/.brew"}, {"size": 112, "name": "/usr/local/Cellar/nmap/7.70/lib/python2.7/site-packages"}, {"size": 112, "name": "/usr/local/Cellar/nmap/7.70/lib/python2.7"}, {"size": 112, "name": "/usr/local/Cellar/nmap/7.70/lib"}, {"size": 272, "name": "/usr/local/Cellar/nmap/7.70/share/man/sk/man1"}, {"size": 272, "name": "/usr/local/Cellar/nmap/7.70/share/man/sk"}, {"size": 296, "name": "/usr/local/Cellar/nmap/7.70/share/man/pl/man1"}, {"size": 296, "name": "/usr/local/Cellar/nmap/7.70/share/man/pl"}, {"size": 312, "name": "/usr/local/Cellar/nmap/7.70/share/man/pt_BR/man1"}, {"size": 312, "name": "/usr/local/Cellar/nmap/7.70/share/man/pt_BR"}, {"size": 352, "name": "/usr/local/Cellar/nmap/7.70/share/man/ja/man1"}, {"size": 352, "name": "/usr/local/Cellar/nmap/7.70/share/man/ja"}, {"size": 408, "name": "/usr/local/Cellar/nmap/7.70/share/man/it/man1"}, {"size": 408, "name": "/usr/local/Cellar/nmap/7.70/share/man/it"}, {"size": 296, "name": "/usr/local/Cellar/nmap/7.70/share/man/pt_PT/man1"}, {"size": 296, "name": "/usr/local/Cellar/nmap/7.70/share/man/pt_PT"}, {"size": 576, "name": "/usr/local/Cellar/nmap/7.70/share/man/ru/man1"}, {"size": 576, "name": "/usr/local/Cellar/nmap/7.70/share/man/ru"}, {"size": 280, "name": "/usr/local/Cellar/nmap/7.70/share/man/ro/man1"}, {"size": 280, "name": "/usr/local/Cellar/nmap/7.70/share/man/ro"}, {"size": 216, "name": "/usr/local/Cellar/nmap/7.70/share/man/zh/man1"}, {"size": 216, "name": "/usr/local/Cellar/nmap/7.70/share/man/zh"}, {"size": 616, "name": "/usr/local/Cellar/nmap/7.70/share/man/man1"}, {"size": 280, "name": "/usr/local/Cellar/nmap/7.70/share/man/hr/man1"}, {"size": 280, "name": "/usr/local/Cellar/nmap/7.70/share/man/hr"}, {"size": 368, "name": "/usr/local/Cellar/nmap/7.70/share/man/hu/man1"}, {"size": 368, "name": "/usr/local/Cellar/nmap/7.70/share/man/hu"}, {"size": 336, "name": "/usr/local/Cellar/nmap/7.70/share/man/de/man1"}, {"size": 336, "name": "/usr/local/Cellar/nmap/7.70/share/man/de"}, {"size": 384, "name": "/usr/local/Cellar/nmap/7.70/share/man/fr/man1"}, {"size": 384, "name": "/usr/local/Cellar/nmap/7.70/share/man/fr"}, {"size": 320, "name": "/usr/local/Cellar/nmap/7.70/share/man/es/man1"}, {"size": 320, "name": "/usr/local/Cellar/nmap/7.70/share/man/es"}, {"size": 5312, "name": "/usr/local/Cellar/nmap/7.70/share/man"}, {"size": 512, "name": "/usr/local/Cellar/nmap/7.70/share/ncat"}, {"size": 112, "name": "/usr/local/Cellar/nmap/7.70/share/nmap/nselib/data/psexec"}, {"size": 40, "name": "/usr/local/Cellar/nmap/7.70/share/nmap/nselib/data/jdwp-class"}, {"size": 7968, "name": "/usr/local/Cellar/nmap/7.70/share/nmap/nselib/data"}, {"size": 14632, "name": "/usr/local/Cellar/nmap/7.70/share/nmap/nselib"}, {"size": 9608, "name": "/usr/local/Cellar/nmap/7.70/share/nmap/scripts"}, {"size": 42208, "name": "/usr/local/Cellar/nmap/7.70/share/nmap"}, {"size": 48032, "name": "/usr/local/Cellar/nmap/7.70/share"}, {"size": 58064, "name": "/usr/local/Cellar/nmap/7.70"}, {"size": 58064, "name": "/usr/local/Cellar/nmap"}, {"size": 520, "name": "/usr/local/Cellar/jq/1.6/bin"}, {"size": 8, "name": "/usr/local/Cellar/jq/1.6/.brew"}, {"size": 32, "name": "/usr/local/Cellar/jq/1.6/include"}, {"size": 1224, "name": "/usr/local/Cellar/jq/1.6/lib"}, {"size": 200, "name": "/usr/local/Cellar/jq/1.6/share/man/man1"}, {"size": 200, "name": "/usr/local/Cellar/jq/1.6/share/man"}, {"size": 40, "name": "/usr/local/Cellar/jq/1.6/share/doc/jq"}, {"size": 40, "name": "/usr/local/Cellar/jq/1.6/share/doc"}, {"size": 240, "name": "/usr/local/Cellar/jq/1.6/share"}, {"size": 2144, "name": "/usr/local/Cellar/jq/1.6"}, {"size": 2144, "name": "/usr/local/Cellar/jq"}, {"size": 1072, "name": "/usr/local/Cellar/openssl/1.0.2s/bin"}, {"size": 8, "name": "/usr/local/Cellar/openssl/1.0.2s/.brew"}, {"size": 3712, "name": "/usr/local/Cellar/openssl/1.0.2s/include/openssl"}, {"size": 3712, "name": "/usr/local/Cellar/openssl/1.0.2s/include"}, {"size": 24, "name": "/usr/local/Cellar/openssl/1.0.2s/lib/pkgconfig"}, {"size": 888, "name": "/usr/local/Cellar/openssl/1.0.2s/lib/engines"}, {"size": 12576, "name": "/usr/local/Cellar/openssl/1.0.2s/lib"}, {"size": 80, "name": "/usr/local/Cellar/openssl/1.0.2s/.bottle/etc/openssl/misc"}, {"size": 0, "name": "/usr/local/Cellar/openssl/1.0.2s/.bottle/etc/openssl/certs"}, {"size": 0, "name": "/usr/local/Cellar/openssl/1.0.2s/.bottle/etc/openssl/private"}, {"size": 104, "name": "/usr/local/Cellar/openssl/1.0.2s/.bottle/etc/openssl"}, {"size": 104, "name": "/usr/local/Cellar/openssl/1.0.2s/.bottle/etc"}, {"size": 104, "name": "/usr/local/Cellar/openssl/1.0.2s/.bottle"}, {"size": 88, "name": "/usr/local/Cellar/openssl/1.0.2s/share/man/man5"}, {"size": 6424, "name": "/usr/local/Cellar/openssl/1.0.2s/share/man/man3"}, {"size": 1336, "name": "/usr/local/Cellar/openssl/1.0.2s/share/man/man1"}, {"size": 24, "name": "/usr/local/Cellar/openssl/1.0.2s/share/man/man7"}, {"size": 7872, "name": "/usr/local/Cellar/openssl/1.0.2s/share/man"}, {"size": 7872, "name": "/usr/local/Cellar/openssl/1.0.2s/share"}, {"size": 26448, "name": "/usr/local/Cellar/openssl/1.0.2s"}, {"size": 26448, "name": "/usr/local/Cellar/openssl"}, {"size": 449064, "name": "/usr/local/Cellar"}, {"size": 0, "name": "/usr/local/share/man/sk/man1"}, {"size": 0, "name": "/usr/local/share/man/sk"}, {"size": 0, "name": "/usr/local/share/man/pl/man1"}, {"size": 0, "name": "/usr/local/share/man/pl"}, {"size": 0, "name": "/usr/local/share/man/man3"}, {"size": 0, "name": "/usr/local/share/man/pt_BR/man1"}, {"size": 0, "name": "/usr/local/share/man/pt_BR"}, {"size": 0, "name": "/usr/local/share/man/ja/man1"}, {"size": 0, "name": "/usr/local/share/man/ja"}, {"size": 0, "name": "/usr/local/share/man/it/man1"}, {"size": 0, "name": "/usr/local/share/man/it"}, {"size": 0, "name": "/usr/local/share/man/pt_PT/man1"}, {"size": 0, "name": "/usr/local/share/man/pt_PT"}, {"size": 0, "name": "/usr/local/share/man/ru/man1"}, {"size": 0, "name": "/usr/local/share/man/ru"}, {"size": 0, "name": "/usr/local/share/man/ro/man1"}, {"size": 0, "name": "/usr/local/share/man/ro"}, {"size": 0, "name": "/usr/local/share/man/zh/man1"}, {"size": 0, "name": "/usr/local/share/man/zh"}, {"size": 0, "name": "/usr/local/share/man/man8"}, {"size": 0, "name": "/usr/local/share/man/man1"}, {"size": 0, "name": "/usr/local/share/man/hr/man1"}, {"size": 0, "name": "/usr/local/share/man/hr"}, {"size": 0, "name": "/usr/local/share/man/hu/man1"}, {"size": 0, "name": "/usr/local/share/man/hu"}, {"size": 0, "name": "/usr/local/share/man/de/man1"}, {"size": 0, "name": "/usr/local/share/man/de"}, {"size": 0, "name": "/usr/local/share/man/fr/man1"}, {"size": 0, "name": "/usr/local/share/man/fr"}, {"size": 0, "name": "/usr/local/share/man/es/man1"}, {"size": 0, "name": "/usr/local/share/man/es"}, {"size": 24, "name": "/usr/local/share/man"}, {"size": 8, "name": "/usr/local/share/info"}, {"size": 0, "name": "/usr/local/share/doc"}, {"size": 0, "name": "/usr/local/share/zsh/site-functions"}, {"size": 0, "name": "/usr/local/share/zsh"}, {"size": 0, "name": "/usr/local/share/fish/vendor_completions.d"}, {"size": 0, "name": "/usr/local/share/fish"}, {"size": 32, "name": "/usr/local/share"}, {"size": 1236440, "name": "/usr/local"}, {"size": 80, "name": "/usr/lib/groff/groffer"}, {"size": 0, "name": "/usr/lib/groff/site-tmac"}, {"size": 80, "name": "/usr/lib/groff"}, {"size": 0, "name": "/usr/lib/pkgconfig"}, {"size": 1168, "name": "/usr/lib/rpcsvc"}, {"size": 560, "name": "/usr/lib/php/extensions/no-debug-non-zts-20160303"}, {"size": 560, "name": "/usr/lib/php/extensions"}, {"size": 504, "name": "/usr/lib/php/build"}, {"size": 1064, "name": "/usr/lib/php"}, {"size": 672, "name": "/usr/lib/pam"}, {"size": 16, "name": "/usr/lib/dtrace"}, {"size": 960, "name": "/usr/lib/system/introspection"}, {"size": 11664, "name": "/usr/lib/system"}, {"size": 12000, "name": "/usr/lib/swift"}, {"size": 448, "name": "/usr/lib/log"}, {"size": 40, "name": "/usr/lib/zsh/5.3/zsh/net"}, {"size": 24, "name": "/usr/lib/zsh/5.3/zsh/param"}, {"size": 1216, "name": "/usr/lib/zsh/5.3/zsh"}, {"size": 1216, "name": "/usr/lib/zsh/5.3"}, {"size": 1216, "name": "/usr/lib/zsh"}, {"size": 0, "name": "/usr/lib/sasl2/openldap"}, {"size": 1064, "name": "/usr/lib/sasl2"}, {"size": 0, "name": "/usr/lib/xpc/support.bundle/Contents/_CodeSignature"}, {"size": 40, "name": "/usr/lib/xpc/support.bundle/Contents/MacOS"}, {"size": 40, "name": "/usr/lib/xpc/support.bundle/Contents"}, {"size": 40, "name": "/usr/lib/xpc/support.bundle"}, {"size": 40, "name": "/usr/lib/xpc"}, {"size": 124760, "name": "/usr/lib"}, {"size": 0, "name": "/usr/share/com.apple.languageassetd/_CodeSignature"}, {"size": 0, "name": "/usr/share/com.apple.languageassetd"}, {"size": 2080, "name": "/usr/share/man/man5"}, {"size": 248, "name": "/usr/share/man/man4"}, {"size": 0, "name": "/usr/share/man/man8/SidecarRelay.8"}, {"size": 1376, "name": "/usr/share/man/man8"}, {"size": 0, "name": "/usr/share/man/man6"}, {"size": 21616, "name": "/usr/share/man/man1"}, {"size": 544, "name": "/usr/share/man/man7"}, {"size": 24, "name": "/usr/share/man/man9"}, {"size": 9960, "name": "/usr/share/man/mann"}, {"size": 36152, "name": "/usr/share/man"}, {"size": 264, "name": "/usr/share/vim/vim80/indent"}, {"size": 72, "name": "/usr/share/vim/vim80/ftplugin"}, {"size": 24, "name": "/usr/share/vim/vim80/tools"}, {"size": 4824, "name": "/usr/share/vim/vim80/spell"}, {"size": 32, "name": "/usr/share/vim/vim80/plugin"}, {"size": 16, "name": "/usr/share/vim/vim80/pack/dist/opt/termdebug/plugin"}, {"size": 16, "name": "/usr/share/vim/vim80/pack/dist/opt/termdebug"}, {"size": 16, "name": "/usr/share/vim/vim80/pack/dist/opt/justify/plugin"}, {"size": 16, "name": "/usr/share/vim/vim80/pack/dist/opt/justify"}, {"size": 0, "name": "/usr/share/vim/vim80/pack/dist/opt/dvorak/dvorak"}, {"size": 0, "name": "/usr/share/vim/vim80/pack/dist/opt/dvorak/plugin"}, {"size": 0, "name": "/usr/share/vim/vim80/pack/dist/opt/dvorak"}, {"size": 0, "name": "/usr/share/vim/vim80/pack/dist/opt/shellmenu/plugin"}, {"size": 0, "name": "/usr/share/vim/vim80/pack/dist/opt/shellmenu"}, {"size": 0, "name": "/usr/share/vim/vim80/pack/dist/opt/swapmouse/plugin"}, {"size": 0, "name": "/usr/share/vim/vim80/pack/dist/opt/swapmouse"}, {"size": 0, "name": "/usr/share/vim/vim80/pack/dist/opt/editexisting/plugin"}, {"size": 0, "name": "/usr/share/vim/vim80/pack/dist/opt/editexisting"}, {"size": 24, "name": "/usr/share/vim/vim80/pack/dist/opt/matchit/plugin"}, {"size": 24, "name": "/usr/share/vim/vim80/pack/dist/opt/matchit/doc"}, {"size": 48, "name": "/usr/share/vim/vim80/pack/dist/opt/matchit"}, {"size": 80, "name": "/usr/share/vim/vim80/pack/dist/opt"}, {"size": 80, "name": "/usr/share/vim/vim80/pack/dist"}, {"size": 80, "name": "/usr/share/vim/vim80/pack"}, {"size": 0, "name": "/usr/share/vim/vim80/print"}, {"size": 720, "name": "/usr/share/vim/vim80/lang"}, {"size": 0, "name": "/usr/share/vim/vim80/macros/hanoi"}, {"size": 0, "name": "/usr/share/vim/vim80/macros/urm"}, {"size": 0, "name": "/usr/share/vim/vim80/macros/life"}, {"size": 16, "name": "/usr/share/vim/vim80/macros/maze"}, {"size": 16, "name": "/usr/share/vim/vim80/macros"}, {"size": 0, "name": "/usr/share/vim/vim80/colors"}, {"size": 1968, "name": "/usr/share/vim/vim80/tutor"}, {"size": 32, "name": "/usr/share/vim/vim80/keymap"}, {"size": 5832, "name": "/usr/share/vim/vim80/doc"}, {"size": 160, "name": "/usr/share/vim/vim80/autoload/xml"}, {"size": 1000, "name": "/usr/share/vim/vim80/autoload"}, {"size": 2672, "name": "/usr/share/vim/vim80/syntax"}, {"size": 0, "name": "/usr/share/vim/vim80/compiler"}, {"size": 17696, "name": "/usr/share/vim/vim80"}, {"size": 17696, "name": "/usr/share/vim"}, {"size": 72, "name": "/usr/share/misc"}, {"size": 32, "name": "/usr/share/groff/1.19.2/tmac/mdoc"}, {"size": 0, "name": "/usr/share/groff/1.19.2/tmac/mm"}, {"size": 648, "name": "/usr/share/groff/1.19.2/tmac"}, {"size": 64, "name": "/usr/share/groff/1.19.2/font/devutf8"}, {"size": 16, "name": "/usr/share/groff/1.19.2/font/devlj4/generate"}, {"size": 808, "name": "/usr/share/groff/1.19.2/font/devlj4"}, {"size": 144, "name": "/usr/share/groff/1.19.2/font/devhtml"}, {"size": 0, "name": "/usr/share/groff/1.19.2/font/devdvi/generate"}, {"size": 208, "name": "/usr/share/groff/1.19.2/font/devdvi"}, {"size": 0, "name": "/usr/share/groff/1.19.2/font/devascii"}, {"size": 0, "name": "/usr/share/groff/1.19.2/font/devlatin1"}, {"size": 16, "name": "/usr/share/groff/1.19.2/font/devps/generate"}, {"size": 512, "name": "/usr/share/groff/1.19.2/font/devps"}, {"size": 192, "name": "/usr/share/groff/1.19.2/font/devlbp"}, {"size": 1928, "name": "/usr/share/groff/1.19.2/font"}, {"size": 2576, "name": "/usr/share/groff/1.19.2"}, {"size": 0, "name": "/usr/share/groff/site-font"}, {"size": 0, "name": "/usr/share/groff/site-tmac"}, {"size": 2576, "name": "/usr/share/groff"}, {"size": 112, "name": "/usr/share/firmware/wifi/C-4364__s-B3"}, {"size": 0, "name": "/usr/share/firmware/wifi/C-4364__s-B2/perf_sdb_udm"}, {"size": 2056, "name": "/usr/share/firmware/wifi/C-4364__s-B2"}, {"size": 6440, "name": "/usr/share/firmware/wifi/C-4377__s-B3"}, {"size": 4680, "name": "/usr/share/firmware/wifi/C-4355__s-C1"}, {"size": 13288, "name": "/usr/share/firmware/wifi"}, {"size": 13288, "name": "/usr/share/firmware"}, {"size": 0, "name": "/usr/share/skel"}, {"size": 0, "name": "/usr/share/CSI"}, {"size": 0, "name": "/usr/share/calendar/hr_HR.ISO8859-2"}, {"size": 32, "name": "/usr/share/calendar/fr_FR.ISO8859-1"}, {"size": 0, "name": "/usr/share/calendar/uk_UA.KOI8-U"}, {"size": 16, "name": "/usr/share/calendar/hu_HU.ISO8859-2"}, {"size": 0, "name": "/usr/share/calendar/de_DE.ISO8859-15"}, {"size": 0, "name": "/usr/share/calendar/ru_RU.KOI8-R"}, {"size": 0, "name": "/usr/share/calendar/fr_FR.ISO8859-15"}, {"size": 16, "name": "/usr/share/calendar/de_DE.ISO8859-1"}, {"size": 0, "name": "/usr/share/calendar/de_AT.ISO_8859-15"}, {"size": 176, "name": "/usr/share/calendar"}, {"size": 0, "name": "/usr/share/locale/en_NZ/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/en_NZ"}, {"size": 0, "name": "/usr/share/locale/nl_NL.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/nl_NL.UTF-8"}, {"size": 0, "name": "/usr/share/locale/pt_BR.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/pt_BR.UTF-8"}, {"size": 0, "name": "/usr/share/locale/fr_CH.ISO8859-15/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/fr_CH.ISO8859-15"}, {"size": 0, "name": "/usr/share/locale/eu_ES.ISO8859-15/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/eu_ES.ISO8859-15"}, {"size": 0, "name": "/usr/share/locale/en_US.US-ASCII/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/en_US.US-ASCII"}, {"size": 0, "name": "/usr/share/locale/af_ZA/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/af_ZA"}, {"size": 0, "name": "/usr/share/locale/bg_BG/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/bg_BG"}, {"size": 64, "name": "/usr/share/locale/pl/LC_MESSAGES"}, {"size": 64, "name": "/usr/share/locale/pl"}, {"size": 0, "name": "/usr/share/locale/cs_CZ.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/cs_CZ.UTF-8"}, {"size": 0, "name": "/usr/share/locale/fi_FI/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/fi_FI"}, {"size": 0, "name": "/usr/share/locale/zh_CN.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/zh_CN.UTF-8"}, {"size": 0, "name": "/usr/share/locale/eu_ES/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/eu_ES"}, {"size": 0, "name": "/usr/share/locale/sk_SK.ISO8859-2/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sk_SK.ISO8859-2"}, {"size": 0, "name": "/usr/share/locale/nl_BE/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/nl_BE"}, {"size": 0, "name": "/usr/share/locale/fr_BE/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/fr_BE"}, {"size": 0, "name": "/usr/share/locale/sk_SK/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sk_SK"}, {"size": 0, "name": "/usr/share/locale/en_US.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/en_US.UTF-8"}, {"size": 0, "name": "/usr/share/locale/en_NZ.ISO8859-1/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/en_NZ.ISO8859-1"}, {"size": 0, "name": "/usr/share/locale/de_CH/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/de_CH"}, {"size": 0, "name": "/usr/share/locale/sk_SK.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sk_SK.UTF-8"}, {"size": 0, "name": "/usr/share/locale/de_DE.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/de_DE.UTF-8"}, {"size": 64, "name": "/usr/share/locale/sv/LC_MESSAGES"}, {"size": 64, "name": "/usr/share/locale/sv"}, {"size": 0, "name": "/usr/share/locale/am_ET.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/am_ET.UTF-8"}, {"size": 0, "name": "/usr/share/locale/zh_HK/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/zh_HK"}, {"size": 0, "name": "/usr/share/locale/be_BY.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/be_BY.UTF-8"}, {"size": 0, "name": "/usr/share/locale/uk_UA/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/uk_UA"}, {"size": 0, "name": "/usr/share/locale/pt_PT.ISO8859-1/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/pt_PT.ISO8859-1"}, {"size": 48, "name": "/usr/share/locale/he/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/he"}, {"size": 0, "name": "/usr/share/locale/en_AU.US-ASCII/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/en_AU.US-ASCII"}, {"size": 0, "name": "/usr/share/locale/kk_KZ.PT154/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/kk_KZ.PT154"}, {"size": 0, "name": "/usr/share/locale/en_US/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/en_US"}, {"size": 0, "name": "/usr/share/locale/nl_BE.ISO8859-15/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/nl_BE.ISO8859-15"}, {"size": 0, "name": "/usr/share/locale/de_AT.ISO8859-1/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/de_AT.ISO8859-1"}, {"size": 0, "name": "/usr/share/locale/hr_HR.ISO8859-2/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/hr_HR.ISO8859-2"}, {"size": 0, "name": "/usr/share/locale/fr_FR.ISO8859-1/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/fr_FR.ISO8859-1"}, {"size": 0, "name": "/usr/share/locale/af_ZA.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/af_ZA.UTF-8"}, {"size": 0, "name": "/usr/share/locale/am_ET/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/am_ET"}, {"size": 0, "name": "/usr/share/locale/fi_FI.ISO8859-1/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/fi_FI.ISO8859-1"}, {"size": 0, "name": "/usr/share/locale/ro_RO.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ro_RO.UTF-8"}, {"size": 0, "name": "/usr/share/locale/af_ZA.ISO8859-15/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/af_ZA.ISO8859-15"}, {"size": 0, "name": "/usr/share/locale/en_NZ.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/en_NZ.UTF-8"}, {"size": 0, "name": "/usr/share/locale/fi_FI.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/fi_FI.UTF-8"}, {"size": 0, "name": "/usr/share/locale/hr_HR.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/hr_HR.UTF-8"}, {"size": 0, "name": "/usr/share/locale/da_DK.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/da_DK.UTF-8"}, {"size": 0, "name": "/usr/share/locale/ca_ES.ISO8859-1/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ca_ES.ISO8859-1"}, {"size": 0, "name": "/usr/share/locale/en_AU.ISO8859-15/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/en_AU.ISO8859-15"}, {"size": 0, "name": "/usr/share/locale/ro_RO.ISO8859-2/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ro_RO.ISO8859-2"}, {"size": 48, "name": "/usr/share/locale/da/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/da"}, {"size": 0, "name": "/usr/share/locale/de_AT.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/de_AT.UTF-8"}, {"size": 0, "name": "/usr/share/locale/pt_PT.ISO8859-15/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/pt_PT.ISO8859-15"}, {"size": 0, "name": "/usr/share/locale/sv_SE/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sv_SE"}, {"size": 0, "name": "/usr/share/locale/fr_CA.ISO8859-1/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/fr_CA.ISO8859-1"}, {"size": 0, "name": "/usr/share/locale/la_LN.US-ASCII"}, {"size": 0, "name": "/usr/share/locale/fr_BE.ISO8859-1/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/fr_BE.ISO8859-1"}, {"size": 0, "name": "/usr/share/locale/en_US.ISO8859-15/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/en_US.ISO8859-15"}, {"size": 0, "name": "/usr/share/locale/it_CH.ISO8859-1/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/it_CH.ISO8859-1"}, {"size": 0, "name": "/usr/share/locale/en_NZ.ISO8859-15/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/en_NZ.ISO8859-15"}, {"size": 0, "name": "/usr/share/locale/en_AU.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/en_AU.UTF-8"}, {"size": 56, "name": "/usr/share/locale/no/LC_MESSAGES"}, {"size": 56, "name": "/usr/share/locale/no"}, {"size": 0, "name": "/usr/share/locale/de_AT.ISO8859-15/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/de_AT.ISO8859-15"}, {"size": 0, "name": "/usr/share/locale/af_ZA.ISO8859-1/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/af_ZA.ISO8859-1"}, {"size": 0, "name": "/usr/share/locale/la_LN.ISO8859-15"}, {"size": 0, "name": "/usr/share/locale/hu_HU.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/hu_HU.UTF-8"}, {"size": 0, "name": "/usr/share/locale/et_EE.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/et_EE.UTF-8"}, {"size": 0, "name": "/usr/share/locale/la_LN.ISO8859-2"}, {"size": 24, "name": "/usr/share/locale/UTF-8"}, {"size": 0, "name": "/usr/share/locale/he_IL.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/he_IL.UTF-8"}, {"size": 0, "name": "/usr/share/locale/uk_UA.KOI8-U/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/uk_UA.KOI8-U"}, {"size": 0, "name": "/usr/share/locale/be_BY/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/be_BY"}, {"size": 0, "name": "/usr/share/locale/kk_KZ/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/kk_KZ"}, {"size": 0, "name": "/usr/share/locale/hu_HU.ISO8859-2/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/hu_HU.ISO8859-2"}, {"size": 0, "name": "/usr/share/locale/it_CH/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/it_CH"}, {"size": 0, "name": "/usr/share/locale/pt_BR/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/pt_BR"}, {"size": 0, "name": "/usr/share/locale/ko_KR/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ko_KR"}, {"size": 48, "name": "/usr/share/locale/ja/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/ja"}, {"size": 0, "name": "/usr/share/locale/it_IT/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/it_IT"}, {"size": 0, "name": "/usr/share/locale/fr_BE.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/fr_BE.UTF-8"}, {"size": 0, "name": "/usr/share/locale/ru_RU.ISO8859-5/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ru_RU.ISO8859-5"}, {"size": 0, "name": "/usr/share/locale/la_LN.ISO8859-4"}, {"size": 32, "name": "/usr/share/locale/zh_TW/LC_MESSAGES"}, {"size": 32, "name": "/usr/share/locale/zh_TW"}, {"size": 0, "name": "/usr/share/locale/zh_CN.GB2312/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/zh_CN.GB2312"}, {"size": 40, "name": "/usr/share/locale/cs/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/cs"}, {"size": 0, "name": "/usr/share/locale/no_NO.ISO8859-15/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/no_NO.ISO8859-15"}, {"size": 0, "name": "/usr/share/locale/de_DE.ISO8859-15/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/de_DE.ISO8859-15"}, {"size": 0, "name": "/usr/share/locale/en_CA/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/en_CA"}, {"size": 0, "name": "/usr/share/locale/fr_CH.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/fr_CH.UTF-8"}, {"size": 0, "name": "/usr/share/locale/sl_SI.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sl_SI.UTF-8"}, {"size": 0, "name": "/usr/share/locale/uk_UA.ISO8859-5/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/uk_UA.ISO8859-5"}, {"size": 0, "name": "/usr/share/locale/pt_PT/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/pt_PT"}, {"size": 64, "name": "/usr/share/locale/ru/LC_MESSAGES"}, {"size": 64, "name": "/usr/share/locale/ru"}, {"size": 0, "name": "/usr/share/locale/hr_HR/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/hr_HR"}, {"size": 0, "name": "/usr/share/locale/cs_CZ/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/cs_CZ"}, {"size": 0, "name": "/usr/share/locale/fr_CH/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/fr_CH"}, {"size": 0, "name": "/usr/share/locale/he_IL/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/he_IL"}, {"size": 0, "name": "/usr/share/locale/zh_CN.GBK/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/zh_CN.GBK"}, {"size": 0, "name": "/usr/share/locale/zh_CN.GB18030/LC_MESSAGES"}, {"size": 64, "name": "/usr/share/locale/zh_CN.GB18030"}, {"size": 0, "name": "/usr/share/locale/fr_CA/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/fr_CA"}, {"size": 0, "name": "/usr/share/locale/pl_PL.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/pl_PL.UTF-8"}, {"size": 0, "name": "/usr/share/locale/ja_JP.SJIS/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ja_JP.SJIS"}, {"size": 0, "name": "/usr/share/locale/sr_YU.ISO8859-5/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sr_YU.ISO8859-5"}, {"size": 0, "name": "/usr/share/locale/be_BY.CP1251/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/be_BY.CP1251"}, {"size": 0, "name": "/usr/share/locale/sr_YU.ISO8859-2/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sr_YU.ISO8859-2"}, {"size": 0, "name": "/usr/share/locale/sv_SE.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sv_SE.UTF-8"}, {"size": 0, "name": "/usr/share/locale/sr_YU.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sr_YU.UTF-8"}, {"size": 0, "name": "/usr/share/locale/de_CH.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/de_CH.UTF-8"}, {"size": 0, "name": "/usr/share/locale/sl_SI/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sl_SI"}, {"size": 64, "name": "/usr/share/locale/ro/LC_MESSAGES"}, {"size": 64, "name": "/usr/share/locale/ro"}, {"size": 0, "name": "/usr/share/locale/pt_PT.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/pt_PT.UTF-8"}, {"size": 0, "name": "/usr/share/locale/ro_RO/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ro_RO"}, {"size": 0, "name": "/usr/share/locale/en_NZ.US-ASCII/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/en_NZ.US-ASCII"}, {"size": 0, "name": "/usr/share/locale/ja_JP/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ja_JP"}, {"size": 48, "name": "/usr/share/locale/zh_CN/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/zh_CN"}, {"size": 0, "name": "/usr/share/locale/fr_CH.ISO8859-1/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/fr_CH.ISO8859-1"}, {"size": 0, "name": "/usr/share/locale/ko_KR.eucKR/LC_MESSAGES"}, {"size": 8, "name": "/usr/share/locale/ko_KR.eucKR"}, {"size": 0, "name": "/usr/share/locale/be_BY.ISO8859-5/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/be_BY.ISO8859-5"}, {"size": 0, "name": "/usr/share/locale/nl_NL.ISO8859-15/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/nl_NL.ISO8859-15"}, {"size": 0, "name": "/usr/share/locale/en_GB.ISO8859-1/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/en_GB.ISO8859-1"}, {"size": 0, "name": "/usr/share/locale/en_CA.US-ASCII/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/en_CA.US-ASCII"}, {"size": 0, "name": "/usr/share/locale/is_IS.ISO8859-1/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/is_IS.ISO8859-1"}, {"size": 0, "name": "/usr/share/locale/ru_RU.CP866/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ru_RU.CP866"}, {"size": 0, "name": "/usr/share/locale/nl_NL/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/nl_NL"}, {"size": 0, "name": "/usr/share/locale/fr_CA.ISO8859-15/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/fr_CA.ISO8859-15"}, {"size": 0, "name": "/usr/share/locale/sv_SE.ISO8859-15/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sv_SE.ISO8859-15"}, {"size": 0, "name": "/usr/share/locale/hy_AM/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/hy_AM"}, {"size": 0, "name": "/usr/share/locale/en_CA.ISO8859-15/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/en_CA.ISO8859-15"}, {"size": 0, "name": "/usr/share/locale/en_US.ISO8859-1/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/en_US.ISO8859-1"}, {"size": 0, "name": "/usr/share/locale/zh_TW.Big5/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/zh_TW.Big5"}, {"size": 0, "name": "/usr/share/locale/ca_ES.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ca_ES.UTF-8"}, {"size": 0, "name": "/usr/share/locale/ru_RU.CP1251/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ru_RU.CP1251"}, {"size": 0, "name": "/usr/share/locale/en_GB.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/en_GB.UTF-8"}, {"size": 0, "name": "/usr/share/locale/en_GB.US-ASCII/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/en_GB.US-ASCII"}, {"size": 0, "name": "/usr/share/locale/ru_RU.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ru_RU.UTF-8"}, {"size": 0, "name": "/usr/share/locale/eu_ES.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/eu_ES.UTF-8"}, {"size": 0, "name": "/usr/share/locale/es_ES.ISO8859-1/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/es_ES.ISO8859-1"}, {"size": 0, "name": "/usr/share/locale/hu_HU/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/hu_HU"}, {"size": 0, "name": "/usr/share/locale/el_GR.ISO8859-7/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/el_GR.ISO8859-7"}, {"size": 0, "name": "/usr/share/locale/en_AU/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/en_AU"}, {"size": 0, "name": "/usr/share/locale/it_CH.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/it_CH.UTF-8"}, {"size": 0, "name": "/usr/share/locale/en_GB/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/en_GB"}, {"size": 0, "name": "/usr/share/locale/sl_SI.ISO8859-2/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sl_SI.ISO8859-2"}, {"size": 0, "name": "/usr/share/locale/ru_RU.KOI8-R/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ru_RU.KOI8-R"}, {"size": 0, "name": "/usr/share/locale/nl_BE.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/nl_BE.UTF-8"}, {"size": 0, "name": "/usr/share/locale/et_EE/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/et_EE"}, {"size": 0, "name": "/usr/share/locale/fr_FR.ISO8859-15/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/fr_FR.ISO8859-15"}, {"size": 0, "name": "/usr/share/locale/cs_CZ.ISO8859-2/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/cs_CZ.ISO8859-2"}, {"size": 0, "name": "/usr/share/locale/lt_LT.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/lt_LT.UTF-8"}, {"size": 0, "name": "/usr/share/locale/pl_PL.ISO8859-2/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/pl_PL.ISO8859-2"}, {"size": 0, "name": "/usr/share/locale/fr_BE.ISO8859-15/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/fr_BE.ISO8859-15"}, {"size": 0, "name": "/usr/share/locale/is_IS.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/is_IS.UTF-8"}, {"size": 0, "name": "/usr/share/locale/tr_TR.ISO8859-9/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/tr_TR.ISO8859-9"}, {"size": 0, "name": "/usr/share/locale/da_DK.ISO8859-1/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/da_DK.ISO8859-1"}, {"size": 0, "name": "/usr/share/locale/lt_LT.ISO8859-4/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/lt_LT.ISO8859-4"}, {"size": 0, "name": "/usr/share/locale/lt_LT.ISO8859-13/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/lt_LT.ISO8859-13"}, {"size": 0, "name": "/usr/share/locale/zh_TW.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/zh_TW.UTF-8"}, {"size": 0, "name": "/usr/share/locale/bg_BG.CP1251/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/bg_BG.CP1251"}, {"size": 0, "name": "/usr/share/locale/el_GR.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/el_GR.UTF-8"}, {"size": 0, "name": "/usr/share/locale/be_BY.CP1131/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/be_BY.CP1131"}, {"size": 0, "name": "/usr/share/locale/da_DK.ISO8859-15/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/da_DK.ISO8859-15"}, {"size": 0, "name": "/usr/share/locale/is_IS.ISO8859-15/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/is_IS.ISO8859-15"}, {"size": 0, "name": "/usr/share/locale/no_NO.ISO8859-1/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/no_NO.ISO8859-1"}, {"size": 0, "name": "/usr/share/locale/nl_NL.ISO8859-1/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/nl_NL.ISO8859-1"}, {"size": 0, "name": "/usr/share/locale/nl_BE.ISO8859-1/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/nl_BE.ISO8859-1"}, {"size": 32, "name": "/usr/share/locale/hr/LC_MESSAGES"}, {"size": 32, "name": "/usr/share/locale/hr"}, {"size": 0, "name": "/usr/share/locale/sv_SE.ISO8859-1/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sv_SE.ISO8859-1"}, {"size": 24, "name": "/usr/share/locale/nl/LC_MESSAGES"}, {"size": 24, "name": "/usr/share/locale/nl"}, {"size": 0, "name": "/usr/share/locale/pt_BR.ISO8859-1/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/pt_BR.ISO8859-1"}, {"size": 0, "name": "/usr/share/locale/zh_CN.eucCN/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/zh_CN.eucCN"}, {"size": 0, "name": "/usr/share/locale/it_IT.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/it_IT.UTF-8"}, {"size": 0, "name": "/usr/share/locale/en_CA.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/en_CA.UTF-8"}, {"size": 0, "name": "/usr/share/locale/uk_UA.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/uk_UA.UTF-8"}, {"size": 64, "name": "/usr/share/locale/nb/LC_MESSAGES"}, {"size": 64, "name": "/usr/share/locale/nb"}, {"size": 0, "name": "/usr/share/locale/de_CH.ISO8859-15/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/de_CH.ISO8859-15"}, {"size": 0, "name": "/usr/share/locale/de_DE.ISO8859-1/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/de_DE.ISO8859-1"}, {"size": 72, "name": "/usr/share/locale/de/LC_MESSAGES"}, {"size": 72, "name": "/usr/share/locale/de"}, {"size": 0, "name": "/usr/share/locale/ca_ES/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ca_ES"}, {"size": 0, "name": "/usr/share/locale/sr_YU/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/sr_YU"}, {"size": 0, "name": "/usr/share/locale/hy_AM.ARMSCII-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/hy_AM.ARMSCII-8"}, {"size": 0, "name": "/usr/share/locale/ru_RU/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ru_RU"}, {"size": 0, "name": "/usr/share/locale/zh_HK.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/zh_HK.UTF-8"}, {"size": 0, "name": "/usr/share/locale/eu_ES.ISO8859-1/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/eu_ES.ISO8859-1"}, {"size": 0, "name": "/usr/share/locale/is_IS/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/is_IS"}, {"size": 0, "name": "/usr/share/locale/bg_BG.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/bg_BG.UTF-8"}, {"size": 0, "name": "/usr/share/locale/ja_JP.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ja_JP.UTF-8"}, {"size": 0, "name": "/usr/share/locale/it_CH.ISO8859-15/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/it_CH.ISO8859-15"}, {"size": 0, "name": "/usr/share/locale/fr_FR.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/fr_FR.UTF-8"}, {"size": 56, "name": "/usr/share/locale/eo/LC_MESSAGES"}, {"size": 56, "name": "/usr/share/locale/eo"}, {"size": 0, "name": "/usr/share/locale/ko_KR.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ko_KR.UTF-8"}, {"size": 72, "name": "/usr/share/locale/fr/LC_MESSAGES"}, {"size": 72, "name": "/usr/share/locale/fr"}, {"size": 0, "name": "/usr/share/locale/la_LN.ISO8859-1"}, {"size": 0, "name": "/usr/share/locale/et_EE.ISO8859-15/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/et_EE.ISO8859-15"}, {"size": 0, "name": "/usr/share/locale/kk_KZ.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/kk_KZ.UTF-8"}, {"size": 0, "name": "/usr/share/locale/ca_ES.ISO8859-15/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ca_ES.ISO8859-15"}, {"size": 0, "name": "/usr/share/locale/en_IE.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/en_IE.UTF-8"}, {"size": 0, "name": "/usr/share/locale/es_ES/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/es_ES"}, {"size": 0, "name": "/usr/share/locale/de_CH.ISO8859-1/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/de_CH.ISO8859-1"}, {"size": 0, "name": "/usr/share/locale/en_CA.ISO8859-1/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/en_CA.ISO8859-1"}, {"size": 0, "name": "/usr/share/locale/es_ES.ISO8859-15/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/es_ES.ISO8859-15"}, {"size": 0, "name": "/usr/share/locale/en_AU.ISO8859-1/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/en_AU.ISO8859-1"}, {"size": 0, "name": "/usr/share/locale/el_GR/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/el_GR"}, {"size": 0, "name": "/usr/share/locale/da_DK/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/da_DK"}, {"size": 0, "name": "/usr/share/locale/no_NO/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/no_NO"}, {"size": 0, "name": "/usr/share/locale/it_IT.ISO8859-1/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/it_IT.ISO8859-1"}, {"size": 0, "name": "/usr/share/locale/en_IE/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/en_IE"}, {"size": 0, "name": "/usr/share/locale/zh_HK.Big5HKSCS/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/zh_HK.Big5HKSCS"}, {"size": 0, "name": "/usr/share/locale/hi_IN.ISCII-DEV/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/hi_IN.ISCII-DEV"}, {"size": 0, "name": "/usr/share/locale/ja_JP.eucJP/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/ja_JP.eucJP"}, {"size": 0, "name": "/usr/share/locale/it_IT.ISO8859-15/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/it_IT.ISO8859-15"}, {"size": 0, "name": "/usr/share/locale/pl_PL/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/pl_PL"}, {"size": 0, "name": "/usr/share/locale/ko_KR.CP949/LC_MESSAGES"}, {"size": 16, "name": "/usr/share/locale/ko_KR.CP949"}, {"size": 0, "name": "/usr/share/locale/fr_CA.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/fr_CA.UTF-8"}, {"size": 0, "name": "/usr/share/locale/fi_FI.ISO8859-15/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/fi_FI.ISO8859-15"}, {"size": 0, "name": "/usr/share/locale/en_GB.ISO8859-15/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/en_GB.ISO8859-15"}, {"size": 0, "name": "/usr/share/locale/fr_FR/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/fr_FR"}, {"size": 0, "name": "/usr/share/locale/hy_AM.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/hy_AM.UTF-8"}, {"size": 0, "name": "/usr/share/locale/no_NO.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/no_NO.UTF-8"}, {"size": 64, "name": "/usr/share/locale/tr/LC_MESSAGES"}, {"size": 64, "name": "/usr/share/locale/tr"}, {"size": 0, "name": "/usr/share/locale/es_ES.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/es_ES.UTF-8"}, {"size": 0, "name": "/usr/share/locale/de_AT/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/de_AT"}, {"size": 0, "name": "/usr/share/locale/tr_TR.UTF-8/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/tr_TR.UTF-8"}, {"size": 0, "name": "/usr/share/locale/de_DE/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/de_DE"}, {"size": 0, "name": "/usr/share/locale/lt_LT/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/lt_LT"}, {"size": 0, "name": "/usr/share/locale/tr_TR/LC_MESSAGES"}, {"size": 0, "name": "/usr/share/locale/tr_TR"}, {"size": 1072, "name": "/usr/share/locale"}, {"size": 0, "name": "/usr/share/snmp/snmpconf-data/snmp-data"}, {"size": 0, "name": "/usr/share/snmp/snmpconf-data/snmptrapd-data"}, {"size": 0, "name": "/usr/share/snmp/snmpconf-data/snmpd-data"}, {"size": 0, "name": "/usr/share/snmp/snmpconf-data"}, {"size": 128, "name": "/usr/share/snmp/mib2c-data"}, {"size": 840, "name": "/usr/share/snmp/mibs"}, {"size": 1088, "name": "/usr/share/snmp"}, {"size": 0, "name": "/usr/share/pmenergy"}, {"size": 488, "name": "/usr/share/file/magic"}, {"size": 1152, "name": "/usr/share/file"}, {"size": 1528, "name": "/usr/share/cracklib"}, {"size": 0, "name": "/usr/share/CoreDuetDaemonConfig.bundle/Contents/_CodeSignature"}, {"size": 0, "name": "/usr/share/CoreDuetDaemonConfig.bundle/Contents/Resources/en.lproj"}, {"size": 0, "name": "/usr/share/CoreDuetDaemonConfig.bundle/Contents/Resources"}, {"size": 0, "name": "/usr/share/CoreDuetDaemonConfig.bundle/Contents"}, {"size": 0, "name": "/usr/share/CoreDuetDaemonConfig.bundle"}, {"size": 16, "name": "/usr/share/hiutil"}, {"size": 90120, "name": "/usr/share/tokenizer/ja"}, {"size": 6792, "name": "/usr/share/tokenizer/zh/Hans"}, {"size": 5648, "name": "/usr/share/tokenizer/zh/Hant"}, {"size": 12440, "name": "/usr/share/tokenizer/zh"}, {"size": 16440, "name": "/usr/share/tokenizer/ko"}, {"size": 119000, "name": "/usr/share/tokenizer"}, {"size": 7736, "name": "/usr/share/ucupdate"}, {"size": 0, "name": "/usr/share/tabset"}, {"size": 40, "name": "/usr/share/java/Stubs"}, {"size": 40, "name": "/usr/share/java"}, {"size": 592, "name": "/usr/share/kpep"}, {"size": 16, "name": "/usr/share/php/php/fpm"}, {"size": 16, "name": "/usr/share/php/php"}, {"size": 16, "name": "/usr/share/php"}, {"size": 24080, "name": "/usr/share/langid"}, {"size": 5552, "name": "/usr/share/emacs/22.1/lisp/gnus"}, {"size": 1424, "name": "/usr/share/emacs/22.1/lisp/net"}, {"size": 1056, "name": "/usr/share/emacs/22.1/lisp/calendar"}, {"size": 744, "name": "/usr/share/emacs/22.1/lisp/eshell"}, {"size": 552, "name": "/usr/share/emacs/22.1/lisp/obsolete"}, {"size": 3376, "name": "/usr/share/emacs/22.1/lisp/textmodes"}, {"size": 1128, "name": "/usr/share/emacs/22.1/lisp/mail"}, {"size": 1264, "name": "/usr/share/emacs/22.1/lisp/emulation"}, {"size": 464, "name": "/usr/share/emacs/22.1/lisp/term"}, {"size": 760, "name": "/usr/share/emacs/22.1/lisp/language"}, {"size": 1200, "name": "/usr/share/emacs/22.1/lisp/mh-e"}, {"size": 472, "name": "/usr/share/emacs/22.1/lisp/url"}, {"size": 2000, "name": "/usr/share/emacs/22.1/lisp/calc"}, {"size": 1032, "name": "/usr/share/emacs/22.1/lisp/erc"}, {"size": 872, "name": "/usr/share/emacs/22.1/lisp/play"}, {"size": 6312, "name": "/usr/share/emacs/22.1/lisp/progmodes"}, {"size": 2168, "name": "/usr/share/emacs/22.1/lisp/international"}, {"size": 2136, "name": "/usr/share/emacs/22.1/lisp/emacs-lisp"}, {"size": 46392, "name": "/usr/share/emacs/22.1/lisp"}, {"size": 40, "name": "/usr/share/emacs/22.1/etc/images/gnus"}, {"size": 0, "name": "/usr/share/emacs/22.1/etc/images/gud"}, {"size": 0, "name": "/usr/share/emacs/22.1/etc/images/mail"}, {"size": 0, "name": "/usr/share/emacs/22.1/etc/images/smilies"}, {"size": 32, "name": "/usr/share/emacs/22.1/etc/images/icons"}, {"size": 0, "name": "/usr/share/emacs/22.1/etc/images/low-color"}, {"size": 0, "name": "/usr/share/emacs/22.1/etc/images/ezimage"}, {"size": 72, "name": "/usr/share/emacs/22.1/etc/images"}, {"size": 72, "name": "/usr/share/emacs/22.1/etc/tree-widget/folder"}, {"size": 72, "name": "/usr/share/emacs/22.1/etc/tree-widget/default"}, {"size": 144, "name": "/usr/share/emacs/22.1/etc/tree-widget"}, {"size": 0, "name": "/usr/share/emacs/22.1/etc/e"}, {"size": 8872, "name": "/usr/share/emacs/22.1/etc"}, {"size": 2208, "name": "/usr/share/emacs/22.1/leim/ja-dic"}, {"size": 7760, "name": "/usr/share/emacs/22.1/leim/quail"}, {"size": 9984, "name": "/usr/share/emacs/22.1/leim"}, {"size": 0, "name": "/usr/share/emacs/22.1/site-lisp"}, {"size": 65248, "name": "/usr/share/emacs/22.1"}, {"size": 0, "name": "/usr/share/emacs/site-lisp"}, {"size": 65248, "name": "/usr/share/emacs"}, {"size": 11912, "name": "/usr/share/info"}, {"size": 0, "name": "/usr/share/terminfo/61"}, {"size": 0, "name": "/usr/share/terminfo/66"}, {"size": 0, "name": "/usr/share/terminfo/50"}, {"size": 0, "name": "/usr/share/terminfo/68"}, {"size": 0, "name": "/usr/share/terminfo/6f"}, {"size": 0, "name": "/usr/share/terminfo/6a"}, {"size": 0, "name": "/usr/share/terminfo/32"}, {"size": 0, "name": "/usr/share/terminfo/35"}, {"size": 0, "name": "/usr/share/terminfo/69"}, {"size": 0, "name": "/usr/share/terminfo/51"}, {"size": 0, "name": "/usr/share/terminfo/58"}, {"size": 0, "name": "/usr/share/terminfo/67"}, {"size": 0, "name": "/usr/share/terminfo/34"}, {"size": 0, "name": "/usr/share/terminfo/33"}, {"size": 0, "name": "/usr/share/terminfo/4e"}, {"size": 0, "name": "/usr/share/terminfo/45"}, {"size": 0, "name": "/usr/share/terminfo/73"}, {"size": 0, "name": "/usr/share/terminfo/74"}, {"size": 0, "name": "/usr/share/terminfo/4c"}, {"size": 0, "name": "/usr/share/terminfo/4d"}, {"size": 0, "name": "/usr/share/terminfo/75"}, {"size": 0, "name": "/usr/share/terminfo/72"}, {"size": 0, "name": "/usr/share/terminfo/6b"}, {"size": 0, "name": "/usr/share/terminfo/38"}, {"size": 0, "name": "/usr/share/terminfo/6e"}, {"size": 0, "name": "/usr/share/terminfo/36"}, {"size": 0, "name": "/usr/share/terminfo/31"}, {"size": 0, "name": "/usr/share/terminfo/65"}, {"size": 0, "name": "/usr/share/terminfo/62"}, {"size": 0, "name": "/usr/share/terminfo/37"}, {"size": 0, "name": "/usr/share/terminfo/6d"}, {"size": 0, "name": "/usr/share/terminfo/6c"}, {"size": 0, "name": "/usr/share/terminfo/39"}, {"size": 0, "name": "/usr/share/terminfo/63"}, {"size": 0, "name": "/usr/share/terminfo/64"}, {"size": 0, "name": "/usr/share/terminfo/41"}, {"size": 0, "name": "/usr/share/terminfo/77"}, {"size": 0, "name": "/usr/share/terminfo/70"}, {"size": 0, "name": "/usr/share/terminfo/71"}, {"size": 0, "name": "/usr/share/terminfo/76"}, {"size": 0, "name": "/usr/share/terminfo/78"}, {"size": 0, "name": "/usr/share/terminfo/7a"}, {"size": 0, "name": "/usr/share/terminfo"}, {"size": 0, "name": "/usr/share/mecabra/updates"}, {"size": 0, "name": "/usr/share/mecabra/common/descriptions/LearningDictionaryJapanese.momd"}, {"size": 0, "name": "/usr/share/mecabra/common/descriptions/JapaneseBigram.momd"}, {"size": 0, "name": "/usr/share/mecabra/common/descriptions/LearningDictionary.momd"}, {"size": 0, "name": "/usr/share/mecabra/common/descriptions"}, {"size": 0, "name": "/usr/share/mecabra/common"}, {"size": 0, "name": "/usr/share/mecabra"}, {"size": 512, "name": "/usr/share/httpd/icons/small"}, {"size": 2112, "name": "/usr/share/httpd/icons"}, {"size": 0, "name": "/usr/share/httpd/build"}, {"size": 0, "name": "/usr/share/httpd/error/include"}, {"size": 80, "name": "/usr/share/httpd/error"}, {"size": 2192, "name": "/usr/share/httpd"}, {"size": 0, "name": "/usr/share/kdrl.bundle/_CodeSignature"}, {"size": 0, "name": "/usr/share/kdrl.bundle"}, {"size": 16, "name": "/usr/share/sandbox"}, {"size": 0, "name": "/usr/share/examples/DTTk"}, {"size": 0, "name": "/usr/share/examples"}, {"size": 544, "name": "/usr/share/screen/utf8encodings"}, {"size": 544, "name": "/usr/share/screen"}, {"size": 5272, "name": "/usr/share/germantok"}, {"size": 680, "name": "/usr/share/doc/groff/1.19.2/html/mom"}, {"size": 680, "name": "/usr/share/doc/groff/1.19.2/html"}, {"size": 152, "name": "/usr/share/doc/groff/1.19.2/examples/mom"}, {"size": 480, "name": "/usr/share/doc/groff/1.19.2/examples"}, {"size": 1648, "name": "/usr/share/doc/groff/1.19.2"}, {"size": 1648, "name": "/usr/share/doc/groff"}, {"size": 3192, "name": "/usr/share/doc/bash"}, {"size": 2184, "name": "/usr/share/doc/postfix/html"}, {"size": 0, "name": "/usr/share/doc/postfix/examples"}, {"size": 3064, "name": "/usr/share/doc/postfix"}, {"size": 544, "name": "/usr/share/doc/cups/images"}, {"size": 688, "name": "/usr/share/doc/cups/help"}, {"size": 1248, "name": "/usr/share/doc/cups"}, {"size": 9152, "name": "/usr/share/doc"}, {"size": 16, "name": "/usr/share/texinfo"}, {"size": 0, "name": "/usr/share/zoneinfo.default/Indian"}, {"size": 0, "name": "/usr/share/zoneinfo.default/Atlantic"}, {"size": 0, "name": "/usr/share/zoneinfo.default/US"}, {"size": 0, "name": "/usr/share/zoneinfo.default/Brazil"}, {"size": 32, "name": "/usr/share/zoneinfo.default/Pacific"}, {"size": 0, "name": "/usr/share/zoneinfo.default/Arctic"}, {"size": 0, "name": "/usr/share/zoneinfo.default/America/Indiana"}, {"size": 0, "name": "/usr/share/zoneinfo.default/America/Argentina"}, {"size": 0, "name": "/usr/share/zoneinfo.default/America/Kentucky"}, {"size": 0, "name": "/usr/share/zoneinfo.default/America/North_Dakota"}, {"size": 32, "name": "/usr/share/zoneinfo.default/America"}, {"size": 0, "name": "/usr/share/zoneinfo.default/Australia"}, {"size": 0, "name": "/usr/share/zoneinfo.default/Etc"}, {"size": 32, "name": "/usr/share/zoneinfo.default/Asia"}, {"size": 0, "name": "/usr/share/zoneinfo.default/Antarctica"}, {"size": 0, "name": "/usr/share/zoneinfo.default/Europe"}, {"size": 0, "name": "/usr/share/zoneinfo.default/Mexico"}, {"size": 0, "name": "/usr/share/zoneinfo.default/Africa"}, {"size": 0, "name": "/usr/share/zoneinfo.default/Chile"}, {"size": 0, "name": "/usr/share/zoneinfo.default/Canada"}, {"size": 120, "name": "/usr/share/zoneinfo.default"}, {"size": 0, "name": "/usr/share/zsh/5.3/scripts"}, {"size": 1360, "name": "/usr/share/zsh/5.3/functions"}, {"size": 40, "name": "/usr/share/zsh/5.3/help"}, {"size": 1400, "name": "/usr/share/zsh/5.3"}, {"size": 0, "name": "/usr/share/zsh/site-functions"}, {"size": 1400, "name": "/usr/share/zsh"}, {"size": 2896, "name": "/usr/share/dict"}, {"size": 16, "name": "/usr/share/cups/drv"}, {"size": 11656, "name": "/usr/share/cups/ipptool"}, {"size": 0, "name": "/usr/share/cups/ppdc"}, {"size": 0, "name": "/usr/share/cups/banners"}, {"size": 0, "name": "/usr/share/cups/examples"}, {"size": 0, "name": "/usr/share/cups/model"}, {"size": 0, "name": "/usr/share/cups/templates"}, {"size": 0, "name": "/usr/share/cups/mime"}, {"size": 0, "name": "/usr/share/cups/profiles"}, {"size": 0, "name": "/usr/share/cups/data"}, {"size": 11672, "name": "/usr/share/cups"}, {"size": 24872, "name": "/usr/share/icu"}, {"size": 0, "name": "/usr/share/uucp"}, {"size": 0, "name": "/usr/share/thermald.bundle/Contents/_CodeSignature"}, {"size": 0, "name": "/usr/share/thermald.bundle/Contents/Resources"}, {"size": 0, "name": "/usr/share/thermald.bundle/Contents"}, {"size": 0, "name": "/usr/share/thermald.bundle"}, {"size": 361592, "name": "/usr/share"}, {"size": 2141800, "name": "/usr"}] jc-1.17.3/tests/fixtures/osx-10.14.6/du.out000066400000000000000000006613451415226333200200110ustar00rootroot00000000000000104608 /usr/bin 56 /usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/_CodeSignature 0 /usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/Resources/Firmware/usr/local/standalone 0 /usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/Resources/Firmware/usr/local 0 /usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/Resources/Firmware/usr 1008 /usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/Resources/Firmware/dfu 11528 /usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/Resources/Firmware/all_flash/all_flash.x619dev.production 11536 /usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/Resources/Firmware/all_flash/all_flash.x619ap.production 23064 /usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/Resources/Firmware/all_flash 24072 /usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/Resources/Firmware 124040 /usr/standalone/firmware/iBridge1_1Customer.bundle/Contents/Resources 124112 /usr/standalone/firmware/iBridge1_1Customer.bundle/Contents 124112 /usr/standalone/firmware/iBridge1_1Customer.bundle 11256 /usr/standalone/firmware/nfrestore/firmware/jcop-prod 624 /usr/standalone/firmware/nfrestore/firmware/fw 11264 /usr/standalone/firmware/nfrestore/firmware/jcop-dev 0 /usr/standalone/firmware/nfrestore/firmware/fw-mfg 23144 /usr/standalone/firmware/nfrestore/firmware 23144 /usr/standalone/firmware/nfrestore 232 /usr/standalone/firmware/FUD/MultiUpdater 232 /usr/standalone/firmware/FUD 147488 /usr/standalone/firmware 17672 /usr/standalone/i386/EfiLoginUI 40 /usr/standalone/i386/SecureBoot.bundle/Contents/_CodeSignature 752 /usr/standalone/i386/SecureBoot.bundle/Contents/Resources 808 /usr/standalone/i386/SecureBoot.bundle/Contents 808 /usr/standalone/i386/SecureBoot.bundle 51648 /usr/standalone/i386 199144 /usr/standalone 80 /usr/libexec/AppSandbox 152 /usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle/Contents/MacOS 176 /usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle/Contents 176 /usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle 176 /usr/libexec/SmartCardServices/drivers 176 /usr/libexec/SmartCardServices 56 /usr/libexec/firmwarecheckers/ethcheck 928 /usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists 928 /usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle 0 /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/he.lproj 0 /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/en_AU.lproj 0 /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/ar.lproj 0 /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/el.lproj 0 /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/uk.lproj 0 /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/English.lproj 0 /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/es_419.lproj 0 /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/zh_CN.lproj 0 /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/Dutch.lproj 0 /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/da.lproj 0 /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/sk.lproj 0 /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/pt_PT.lproj 0 /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/German.lproj 0 /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/ms.lproj 0 /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/sv.lproj 0 /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/cs.lproj 0 /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/ko.lproj 0 /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/no.lproj 0 /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/hu.lproj 0 /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/zh_HK.lproj 0 /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/Spanish.lproj 0 /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/tr.lproj 0 /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/pl.lproj 0 /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/zh_TW.lproj 0 /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/en_GB.lproj 0 /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/French.lproj 0 /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/vi.lproj 0 /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/ru.lproj 0 /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/fr_CA.lproj 0 /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/fi.lproj 0 /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/id.lproj 0 /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/th.lproj 0 /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/pt.lproj 0 /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/ro.lproj 0 /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/Japanese.lproj 0 /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/hr.lproj 0 /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/hi.lproj 0 /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/Italian.lproj 0 /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/ca.lproj 0 /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources 0 /usr/libexec/firmwarecheckers/eficheck/localization/Contents 0 /usr/libexec/firmwarecheckers/eficheck/localization 1040 /usr/libexec/firmwarecheckers/eficheck 1096 /usr/libexec/firmwarecheckers 32 /usr/libexec/AssetCache/AssetCache.momd 2120 /usr/libexec/AssetCache 0 /usr/libexec/AssetCacheAgent/de.lproj 0 /usr/libexec/AssetCacheAgent/he.lproj 0 /usr/libexec/AssetCacheAgent/en_AU.lproj 0 /usr/libexec/AssetCacheAgent/ar.lproj 0 /usr/libexec/AssetCacheAgent/el.lproj 0 /usr/libexec/AssetCacheAgent/ja.lproj 0 /usr/libexec/AssetCacheAgent/en.lproj 0 /usr/libexec/AssetCacheAgent/uk.lproj 0 /usr/libexec/AssetCacheAgent/es_419.lproj 0 /usr/libexec/AssetCacheAgent/zh_CN.lproj 0 /usr/libexec/AssetCacheAgent/es.lproj 0 /usr/libexec/AssetCacheAgent/da.lproj 0 /usr/libexec/AssetCacheAgent/it.lproj 0 /usr/libexec/AssetCacheAgent/sk.lproj 0 /usr/libexec/AssetCacheAgent/pt_PT.lproj 0 /usr/libexec/AssetCacheAgent/ms.lproj 0 /usr/libexec/AssetCacheAgent/sv.lproj 0 /usr/libexec/AssetCacheAgent/cs.lproj 0 /usr/libexec/AssetCacheAgent/ko.lproj 0 /usr/libexec/AssetCacheAgent/no.lproj 0 /usr/libexec/AssetCacheAgent/hu.lproj 0 /usr/libexec/AssetCacheAgent/zh_HK.lproj 0 /usr/libexec/AssetCacheAgent/tr.lproj 0 /usr/libexec/AssetCacheAgent/pl.lproj 0 /usr/libexec/AssetCacheAgent/zh_TW.lproj 0 /usr/libexec/AssetCacheAgent/en_GB.lproj 0 /usr/libexec/AssetCacheAgent/vi.lproj 0 /usr/libexec/AssetCacheAgent/ru.lproj 0 /usr/libexec/AssetCacheAgent/fr_CA.lproj 0 /usr/libexec/AssetCacheAgent/fr.lproj 0 /usr/libexec/AssetCacheAgent/fi.lproj 0 /usr/libexec/AssetCacheAgent/id.lproj 0 /usr/libexec/AssetCacheAgent/nl.lproj 0 /usr/libexec/AssetCacheAgent/th.lproj 0 /usr/libexec/AssetCacheAgent/pt.lproj 0 /usr/libexec/AssetCacheAgent/ro.lproj 0 /usr/libexec/AssetCacheAgent/hr.lproj 0 /usr/libexec/AssetCacheAgent/hi.lproj 0 /usr/libexec/AssetCacheAgent/ca.lproj 32 /usr/libexec/AssetCacheAgent 16 /usr/libexec/fax 16 /usr/libexec/MiniTerm.app/Contents/_CodeSignature 24 /usr/libexec/MiniTerm.app/Contents/MacOS 0 /usr/libexec/MiniTerm.app/Contents/Resources/de.lproj 0 /usr/libexec/MiniTerm.app/Contents/Resources/he.lproj 0 /usr/libexec/MiniTerm.app/Contents/Resources/en_AU.lproj 0 /usr/libexec/MiniTerm.app/Contents/Resources/ar.lproj 0 /usr/libexec/MiniTerm.app/Contents/Resources/el.lproj 0 /usr/libexec/MiniTerm.app/Contents/Resources/ja.lproj 0 /usr/libexec/MiniTerm.app/Contents/Resources/uk.lproj 0 /usr/libexec/MiniTerm.app/Contents/Resources/es_419.lproj 0 /usr/libexec/MiniTerm.app/Contents/Resources/zh_CN.lproj 0 /usr/libexec/MiniTerm.app/Contents/Resources/es.lproj 0 /usr/libexec/MiniTerm.app/Contents/Resources/da.lproj 0 /usr/libexec/MiniTerm.app/Contents/Resources/it.lproj 0 /usr/libexec/MiniTerm.app/Contents/Resources/sk.lproj 0 /usr/libexec/MiniTerm.app/Contents/Resources/pt_PT.lproj 0 /usr/libexec/MiniTerm.app/Contents/Resources/ms.lproj 0 /usr/libexec/MiniTerm.app/Contents/Resources/sv.lproj 0 /usr/libexec/MiniTerm.app/Contents/Resources/cs.lproj 0 /usr/libexec/MiniTerm.app/Contents/Resources/ko.lproj 32 /usr/libexec/MiniTerm.app/Contents/Resources/Base.lproj 0 /usr/libexec/MiniTerm.app/Contents/Resources/no.lproj 0 /usr/libexec/MiniTerm.app/Contents/Resources/hu.lproj 0 /usr/libexec/MiniTerm.app/Contents/Resources/zh_HK.lproj 0 /usr/libexec/MiniTerm.app/Contents/Resources/tr.lproj 0 /usr/libexec/MiniTerm.app/Contents/Resources/pl.lproj 0 /usr/libexec/MiniTerm.app/Contents/Resources/zh_TW.lproj 0 /usr/libexec/MiniTerm.app/Contents/Resources/en_GB.lproj 0 /usr/libexec/MiniTerm.app/Contents/Resources/vi.lproj 0 /usr/libexec/MiniTerm.app/Contents/Resources/ru.lproj 0 /usr/libexec/MiniTerm.app/Contents/Resources/fr_CA.lproj 0 /usr/libexec/MiniTerm.app/Contents/Resources/fr.lproj 0 /usr/libexec/MiniTerm.app/Contents/Resources/fi.lproj 0 /usr/libexec/MiniTerm.app/Contents/Resources/id.lproj 0 /usr/libexec/MiniTerm.app/Contents/Resources/nl.lproj 0 /usr/libexec/MiniTerm.app/Contents/Resources/th.lproj 0 /usr/libexec/MiniTerm.app/Contents/Resources/pt.lproj 0 /usr/libexec/MiniTerm.app/Contents/Resources/ro.lproj 0 /usr/libexec/MiniTerm.app/Contents/Resources/hr.lproj 0 /usr/libexec/MiniTerm.app/Contents/Resources/hi.lproj 0 /usr/libexec/MiniTerm.app/Contents/Resources/ca.lproj 32 /usr/libexec/MiniTerm.app/Contents/Resources 72 /usr/libexec/MiniTerm.app/Contents 72 /usr/libexec/MiniTerm.app 0 /usr/libexec/dtrace 168 /usr/libexec/emacs/22.1/mac-apple-darwin 168 /usr/libexec/emacs/22.1 168 /usr/libexec/emacs 96 /usr/libexec/feedback 13664 /usr/libexec/apache2 0 /usr/libexec/postfix/scripts 9496 /usr/libexec/postfix 56 /usr/libexec/wfs 200 /usr/libexec/cups/apple 32 /usr/libexec/cups/monitor 48 /usr/libexec/cups/notifier 0 /usr/libexec/cups/driver 408 /usr/libexec/cups/backend 120 /usr/libexec/cups/daemon 136 /usr/libexec/cups/cgi-bin 1496 /usr/libexec/cups/filter 2440 /usr/libexec/cups 128 /usr/libexec/DeveloperTools 144 /usr/libexec/ApplicationFirewall 75000 /usr/libexec 40256 /usr/sbin 16 /usr/local/ibmcloud/autocomplete 43736 /usr/local/ibmcloud/bin/cfcli 110272 /usr/local/ibmcloud/bin 110296 /usr/local/ibmcloud 368 /usr/local/bin 13248 /usr/local/jamf/bin 13248 /usr/local/jamf 0 /usr/local/include 0 /usr/local/sbin 0 /usr/local/etc/bash_completion.d 0 /usr/local/etc/default 80 /usr/local/etc/openssl/misc 648 /usr/local/etc/openssl 648 /usr/local/etc 8 /usr/local/Homebrew/bin 40 /usr/local/Homebrew/completions/bash 72 /usr/local/Homebrew/completions/zsh 104 /usr/local/Homebrew/completions/fish 224 /usr/local/Homebrew/completions 16 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/cmd 41088 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/Formula 8 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.github/workflows 16 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.github/ISSUE_TEMPLATE 56 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.github 53152 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/objects/pack 0 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/objects/info 53152 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/objects 8 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/info 8 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/logs/refs/heads 16 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/logs/refs/remotes/origin 16 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/logs/refs/remotes 24 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/logs/refs 32 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/logs 96 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/hooks 8 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/refs/heads 0 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/refs/tags 16 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/refs/remotes/origin 16 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/refs/remotes 24 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/refs 54224 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git 0 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/Aliases 95432 /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core 95432 /usr/local/Homebrew/Library/Taps/homebrew 95432 /usr/local/Homebrew/Library/Taps 624 /usr/local/Homebrew/Library/Homebrew/cmd 56 /usr/local/Homebrew/Library/Homebrew/extend/ENV 24 /usr/local/Homebrew/Library/Homebrew/extend/os/extend/ENV 24 /usr/local/Homebrew/Library/Homebrew/extend/os/extend 8 /usr/local/Homebrew/Library/Homebrew/extend/os/language 24 /usr/local/Homebrew/Library/Homebrew/extend/os/requirements 32 /usr/local/Homebrew/Library/Homebrew/extend/os/mac/extend/ENV 40 /usr/local/Homebrew/Library/Homebrew/extend/os/mac/extend 8 /usr/local/Homebrew/Library/Homebrew/extend/os/mac/hardware 8 /usr/local/Homebrew/Library/Homebrew/extend/os/mac/unpack_strategy 16 /usr/local/Homebrew/Library/Homebrew/extend/os/mac/utils 8 /usr/local/Homebrew/Library/Homebrew/extend/os/mac/language 24 /usr/local/Homebrew/Library/Homebrew/extend/os/mac/requirements 240 /usr/local/Homebrew/Library/Homebrew/extend/os/mac 24 /usr/local/Homebrew/Library/Homebrew/extend/os/linux/extend/ENV 32 /usr/local/Homebrew/Library/Homebrew/extend/os/linux/extend 8 /usr/local/Homebrew/Library/Homebrew/extend/os/linux/hardware 16 /usr/local/Homebrew/Library/Homebrew/extend/os/linux/requirements 144 /usr/local/Homebrew/Library/Homebrew/extend/os/linux 600 /usr/local/Homebrew/Library/Homebrew/extend/os 768 /usr/local/Homebrew/Library/Homebrew/extend 8 /usr/local/Homebrew/Library/Homebrew/compat/requirements 8 /usr/local/Homebrew/Library/Homebrew/compat/cask/dsl 8 /usr/local/Homebrew/Library/Homebrew/compat/cask 16 /usr/local/Homebrew/Library/Homebrew/compat 40 /usr/local/Homebrew/Library/Homebrew/rubocops/extend 16 /usr/local/Homebrew/Library/Homebrew/rubocops/cask/extend 8 /usr/local/Homebrew/Library/Homebrew/rubocops/cask/constants 16 /usr/local/Homebrew/Library/Homebrew/rubocops/cask/mixin 24 /usr/local/Homebrew/Library/Homebrew/rubocops/cask/ast 112 /usr/local/Homebrew/Library/Homebrew/rubocops/cask 344 /usr/local/Homebrew/Library/Homebrew/rubocops 8 /usr/local/Homebrew/Library/Homebrew/test/cmd/shared_examples 432 /usr/local/Homebrew/Library/Homebrew/test/cmd 8 /usr/local/Homebrew/Library/Homebrew/test/hardware 8 /usr/local/Homebrew/Library/Homebrew/test/rubocops/cask/shared_examples 72 /usr/local/Homebrew/Library/Homebrew/test/rubocops/cask 288 /usr/local/Homebrew/Library/Homebrew/test/rubocops 160 /usr/local/Homebrew/Library/Homebrew/test/unpack_strategy 24 /usr/local/Homebrew/Library/Homebrew/test/utils/bottles 112 /usr/local/Homebrew/Library/Homebrew/test/utils 40 /usr/local/Homebrew/Library/Homebrew/test/language 40 /usr/local/Homebrew/Library/Homebrew/test/requirements 16 /usr/local/Homebrew/Library/Homebrew/test/cli 8 /usr/local/Homebrew/Library/Homebrew/test/support/lib 24 /usr/local/Homebrew/Library/Homebrew/test/support/fixtures/patches 24 /usr/local/Homebrew/Library/Homebrew/test/support/fixtures/tarballs 8 /usr/local/Homebrew/Library/Homebrew/test/support/fixtures/bottles 200 /usr/local/Homebrew/Library/Homebrew/test/support/fixtures/mach 8 /usr/local/Homebrew/Library/Homebrew/test/support/fixtures/cask/Casks/compat 136 /usr/local/Homebrew/Library/Homebrew/test/support/fixtures/cask/Casks/invalid 56 /usr/local/Homebrew/Library/Homebrew/test/support/fixtures/cask/Casks/outdated 1200 /usr/local/Homebrew/Library/Homebrew/test/support/fixtures/cask/Casks 1528 /usr/local/Homebrew/Library/Homebrew/test/support/fixtures/cask 16 /usr/local/Homebrew/Library/Homebrew/test/support/fixtures/third-party/Casks 16 /usr/local/Homebrew/Library/Homebrew/test/support/fixtures/third-party 32 /usr/local/Homebrew/Library/Homebrew/test/support/fixtures/elf 2024 /usr/local/Homebrew/Library/Homebrew/test/support/fixtures 24 /usr/local/Homebrew/Library/Homebrew/test/support/helper/spec/shared_context 24 /usr/local/Homebrew/Library/Homebrew/test/support/helper/spec 24 /usr/local/Homebrew/Library/Homebrew/test/support/helper/cask 88 /usr/local/Homebrew/Library/Homebrew/test/support/helper 2128 /usr/local/Homebrew/Library/Homebrew/test/support 64 /usr/local/Homebrew/Library/Homebrew/test/os/mac 24 /usr/local/Homebrew/Library/Homebrew/test/os/linux 96 /usr/local/Homebrew/Library/Homebrew/test/os 16 /usr/local/Homebrew/Library/Homebrew/test/cask/cmd/shared_examples 216 /usr/local/Homebrew/Library/Homebrew/test/cask/cmd 24 /usr/local/Homebrew/Library/Homebrew/test/cask/cask_loader 24 /usr/local/Homebrew/Library/Homebrew/test/cask/artifact/shared_examples 144 /usr/local/Homebrew/Library/Homebrew/test/cask/artifact 16 /usr/local/Homebrew/Library/Homebrew/test/cask/dsl/shared_examples 88 /usr/local/Homebrew/Library/Homebrew/test/cask/dsl 672 /usr/local/Homebrew/Library/Homebrew/test/cask 184 /usr/local/Homebrew/Library/Homebrew/test/dev-cmd 5184 /usr/local/Homebrew/Library/Homebrew/test 280 /usr/local/Homebrew/Library/Homebrew/unpack_strategy 8 /usr/local/Homebrew/Library/Homebrew/.bundle 176 /usr/local/Homebrew/Library/Homebrew/utils 64 /usr/local/Homebrew/Library/Homebrew/language 72 /usr/local/Homebrew/Library/Homebrew/requirements 32 /usr/local/Homebrew/Library/Homebrew/cli 56 /usr/local/Homebrew/Library/Homebrew/manpages 8 /usr/local/Homebrew/Library/Homebrew/version 8 /usr/local/Homebrew/Library/Homebrew/debrew 56 /usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.8 24 /usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.6 24 /usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.7 56 /usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.9 56 /usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.10 56 /usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.11 0 /usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/fuse 24 /usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.5 56 /usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.14 56 /usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.13 56 /usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.12 56 /usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.15 520 /usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig 592 /usr/local/Homebrew/Library/Homebrew/os/mac 48 /usr/local/Homebrew/Library/Homebrew/os/linux 680 /usr/local/Homebrew/Library/Homebrew/os 184 /usr/local/Homebrew/Library/Homebrew/cask/cmd 16 /usr/local/Homebrew/Library/Homebrew/cask/utils 264 /usr/local/Homebrew/Library/Homebrew/cask/artifact 96 /usr/local/Homebrew/Library/Homebrew/cask/dsl 872 /usr/local/Homebrew/Library/Homebrew/cask 18632 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/bin 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/.brew 512 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/libexec 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/include/ruby-2.6.0/x86_64-darwin13/ruby 1288 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/include/ruby-2.6.0/x86_64-darwin13 40 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/include/ruby-2.6.0/ruby/backward 584 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/include/ruby-2.6.0/ruby 1880 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/include/ruby-2.6.0 1880 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/include 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/pkgconfig 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/tracer 448 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/unicode_normalize 224 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/drb 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/syslog 152 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/net/http 720 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/net 56 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/optparse 96 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/shell 56 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/irb/cmd 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/irb/lc/ja 40 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/irb/lc 72 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/irb/ext 488 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/irb 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/digest 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rss/content 256 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rss/maker 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rss/dublincore 704 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rss 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/io/console 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/io 48 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bigdecimal 96 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/fiddle 32 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/x86_64-darwin13 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/ssl_certs/rubygems.global.ssl.fastly.net 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/ssl_certs/index.rubygems.org 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/ssl_certs/rubygems.org 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/ssl_certs 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/util 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/core_ext 48 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/security 56 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/ext 56 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/source 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/request 448 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/commands 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/request_set/lockfile 88 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/request_set 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/delegates 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/modules 72 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/dependency_graph 192 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo 200 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib 200 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/resolver/molinillo 416 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/resolver 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/package/tar_reader 96 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems/package 2568 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rubygems 88 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/psych/visitors 56 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/psych/nodes 32 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/psych/json 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/psych/handlers 344 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/psych 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/cgi/session 216 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/cgi 104 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/json/add 160 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/json 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/thwait 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/csv/core_ext 184 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/csv 40 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/racc 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/yaml 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/fileutils 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/forwardable 88 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/webrick/httpservlet 88 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/webrick/httpauth 512 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/webrick 80 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rinda 136 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/openssl 256 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/uri 40 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/ripper 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/context 136 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/markdown 120 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/ri 280 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/parser 40 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/generator/template/darkfish/css 208 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/generator/template/darkfish/images 208 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/generator/template/darkfish/js 1048 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/generator/template/darkfish/fonts 1680 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/generator/template/darkfish 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/generator/template/json_index/js 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/generator/template/json_index 1704 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/generator/template 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/generator/pot 1816 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/generator 416 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/markup 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/i18n 120 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/rd 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc/stats 4448 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rdoc 64 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/matrix 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/e2mmap 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/compact_index_client 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/ui 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/ssl_certs/rubygems.global.ssl.fastly.net 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/ssl_certs/index.rubygems.org 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/ssl_certs/rubygems.org 32 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/ssl_certs 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/settings 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/source/path 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/source/rubygems 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/source/git 136 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/source 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/plugin/api 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/plugin/installer 96 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/plugin 40 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/fetcher 272 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/cli 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/templates/newgem/test 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/templates/newgem/bin 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/templates/newgem/ext/newgem 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/templates/newgem/ext 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/templates/newgem/spec 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/templates/newgem/lib/newgem 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/templates/newgem/lib 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/templates/newgem/exe 168 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/templates/newgem 208 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/templates 32 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/installer 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/resolver 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/thor/lib/thor/line_editor 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/thor/lib/thor/core_ext 64 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/thor/lib/thor/shell 48 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/thor/lib/thor/parser 80 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/thor/lib/thor/actions 456 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/thor/lib/thor 488 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/thor/lib 488 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/thor 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/net-http-persistent/lib/net/http/persistent 96 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/net-http-persistent/lib/net/http 96 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/net-http-persistent/lib/net 96 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/net-http-persistent/lib 96 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/net-http-persistent 96 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/fileutils/lib 96 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/fileutils 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/molinillo/lib/molinillo/delegates 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/molinillo/lib/molinillo/modules 80 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/molinillo/lib/molinillo/dependency_graph 248 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/molinillo/lib/molinillo 256 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/molinillo/lib 256 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor/molinillo 936 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler/vendor 2840 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/bundler 160 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rexml/parsers 32 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rexml/formatters 40 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rexml/dtd 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rexml/light 48 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rexml/validation 800 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0/rexml 18120 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/2.6.0 256 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/specifications/default 320 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/specifications 776 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/cache 48 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rake-12.3.2/bin 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rake-12.3.2/lib/rake/ext 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rake-12.3.2/lib/rake/loaders 496 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rake-12.3.2/lib/rake 504 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rake-12.3.2/lib 40 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rake-12.3.2/doc/example 168 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rake-12.3.2/doc 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rake-12.3.2/exe 944 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rake-12.3.2 224 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/minitest-5.11.3/test/minitest 224 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/minitest-5.11.3/test 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/minitest-5.11.3/lib/hoe 184 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/minitest-5.11.3/lib/minitest 240 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/minitest-5.11.3/lib 632 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/minitest-5.11.3 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rdoc-6.1.0/exe 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/rdoc-6.1.0 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/bundler-1.17.2/exe 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/bundler-1.17.2 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/net-telnet-0.2.0/bin 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/net-telnet-0.2.0/lib/net/telnet 72 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/net-telnet-0.2.0/lib/net 80 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/net-telnet-0.2.0/lib 152 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/net-telnet-0.2.0 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/irb-1.0.0/exe 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/irb-1.0.0 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/xmlrpc-0.3.0/bin 168 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/xmlrpc-0.3.0/lib/xmlrpc 184 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/xmlrpc-0.3.0/lib 256 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/xmlrpc-0.3.0 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/power_assert-1.1.3/bin 72 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/power_assert-1.1.3/lib/power_assert 80 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/power_assert-1.1.3/lib 168 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/power_assert-1.1.3 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/benchmark/levenshtein 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/benchmark/jaro_winkler 40 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/benchmark 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/test/edit_distance 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/test/experimental 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/test/core_ext 40 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/test/spell_checking 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/test/fixtures 104 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/test 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/experimental 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/core_ext 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/formatters 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/spell_checkers/name_error_checkers 48 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/spell_checkers 136 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean 144 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/lib 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/doc 0 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/tmp 424 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/test/ui 40 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/test/util 80 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/test/collector 56 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/test/fixtures 664 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/test 40 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/sample 8 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/lib/test/unit/ui/emacs 16 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/lib/test/unit/ui/xml 56 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/lib/test/unit/ui/console 104 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/lib/test/unit/ui 40 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/lib/test/unit/util 24 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/lib/test/unit/runner 56 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/lib/test/unit/collector 792 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/lib/test/unit 824 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/lib/test 832 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/lib 96 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/doc/text 96 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/doc 1784 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9 4400 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0/gems 5496 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems/2.6.0 5496 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby/gems 23616 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib/ruby 31992 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/lib 0 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/.bottle/var/homebrew/locks 0 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/.bottle/var/homebrew 0 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/.bottle/var 0 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/.bottle 48 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/share/man/man5 368 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/share/man/man1 416 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/share/man 416 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3/share 59088 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3 59088 /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby 16 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/bundler 16 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/mechanize-2.7.6/lib/mechanize/http 24 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/mechanize-2.7.6/lib/mechanize 24 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/mechanize-2.7.6/lib 24 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/mechanize-2.7.6 40 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/plist-3.5.0/lib/plist 48 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/plist-3.5.0/lib 48 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/plist-3.5.0 312 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/ruby-macho-2.2.0/lib/macho 320 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/ruby-macho-2.2.0/lib 320 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/ruby-macho-2.2.0 16 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.5.0/config 16 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.5.0/lib/rubocop/performance 232 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.5.0/lib/rubocop/cop/performance 240 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.5.0/lib/rubocop/cop 264 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.5.0/lib/rubocop 272 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.5.0/lib 288 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-performance-1.5.0 136 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/thread_safe-0.3.6/lib/thread_safe 144 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/thread_safe-0.3.6/lib 144 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/thread_safe-0.3.6 16 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/locale 8 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/file 96 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/hash 64 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/array 128 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/module 8 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/digest 48 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/date 48 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/date_time 64 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/time 40 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/numeric 104 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/object 32 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/class 24 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/integer 8 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/big_decimal 136 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/string 40 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/date_and_time 48 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/range 32 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/kernel 1120 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext 72 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/inflector 2232 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/values 72 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/deprecation 56 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/xml_mini 24 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/notifications 4224 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support 4224 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3/lib 4224 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.3 16 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic_reference 104 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent/collection/map 160 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent/collection 136 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization 48 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent/concern 240 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic 72 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent/thread_safe/util 88 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent/thread_safe 224 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent/executor 56 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent/utility 1632 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib/concurrent 1656 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5/lib 1656 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/concurrent-ruby-1.1.5 24 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/i18n-1.7.0/lib/i18n/locale/tag 40 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/i18n-1.7.0/lib/i18n/locale 8 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/i18n-1.7.0/lib/i18n/core_ext 160 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/i18n-1.7.0/lib/i18n/backend 24 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/i18n-1.7.0/lib/i18n/gettext 8 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/i18n-1.7.0/lib/i18n/interpolate 304 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/i18n-1.7.0/lib/i18n 336 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/i18n-1.7.0/lib 336 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/i18n-1.7.0 40 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0/config 8 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0/lib/rubocop/rspec/language 144 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0/lib/rubocop/rspec 24 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0/lib/rubocop/cop/rspec/factory_bot 24 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0/lib/rubocop/cop/rspec/capybara 8 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0/lib/rubocop/cop/rspec/rails 672 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0/lib/rubocop/cop/rspec 680 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0/lib/rubocop/cop 832 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0/lib/rubocop 840 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0/lib 880 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/rubocop-rspec-1.36.0 416 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/tzinfo-1.2.5/lib/tzinfo 424 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/tzinfo-1.2.5/lib 424 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/tzinfo-1.2.5 8344 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems 8344 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0 8344 /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby 8360 /usr/local/Homebrew/Library/Homebrew/vendor/bundle 67464 /usr/local/Homebrew/Library/Homebrew/vendor 376 /usr/local/Homebrew/Library/Homebrew/dev-cmd 78568 /usr/local/Homebrew/Library/Homebrew 174048 /usr/local/Homebrew/Library 736 /usr/local/Homebrew/docs/assets/img/docs 736 /usr/local/Homebrew/docs/assets/img 736 /usr/local/Homebrew/docs/assets 1568 /usr/local/Homebrew/docs 144 /usr/local/Homebrew/manpages 16 /usr/local/Homebrew/.github/workflows 24 /usr/local/Homebrew/.github/ISSUE_TEMPLATE 64 /usr/local/Homebrew/.github 8 /usr/local/Homebrew/.git/objects/35 16 /usr/local/Homebrew/.git/objects/3c 8 /usr/local/Homebrew/.git/objects/56 8 /usr/local/Homebrew/.git/objects/0e 8 /usr/local/Homebrew/.git/objects/5a 8 /usr/local/Homebrew/.git/objects/02 8 /usr/local/Homebrew/.git/objects/be 8 /usr/local/Homebrew/.git/objects/a2 8 /usr/local/Homebrew/.git/objects/eb 8 /usr/local/Homebrew/.git/objects/c9 8 /usr/local/Homebrew/.git/objects/fb 8 /usr/local/Homebrew/.git/objects/c1 73832 /usr/local/Homebrew/.git/objects/pack 8 /usr/local/Homebrew/.git/objects/29 8 /usr/local/Homebrew/.git/objects/42 8 /usr/local/Homebrew/.git/objects/89 8 /usr/local/Homebrew/.git/objects/74 8 /usr/local/Homebrew/.git/objects/17 8 /usr/local/Homebrew/.git/objects/2f 8 /usr/local/Homebrew/.git/objects/9a 0 /usr/local/Homebrew/.git/objects/info 8 /usr/local/Homebrew/.git/objects/3a 8 /usr/local/Homebrew/.git/objects/bf 8 /usr/local/Homebrew/.git/objects/a7 24 /usr/local/Homebrew/.git/objects/b6 24 /usr/local/Homebrew/.git/objects/aa 8 /usr/local/Homebrew/.git/objects/b7 8 /usr/local/Homebrew/.git/objects/a8 8 /usr/local/Homebrew/.git/objects/a6 8 /usr/local/Homebrew/.git/objects/ea 8 /usr/local/Homebrew/.git/objects/e1 8 /usr/local/Homebrew/.git/objects/f9 8 /usr/local/Homebrew/.git/objects/c5 8 /usr/local/Homebrew/.git/objects/15 16 /usr/local/Homebrew/.git/objects/47 8 /usr/local/Homebrew/.git/objects/25 74152 /usr/local/Homebrew/.git/objects 8 /usr/local/Homebrew/.git/info 16 /usr/local/Homebrew/.git/logs/refs/heads 8 /usr/local/Homebrew/.git/logs/refs/remotes/origin 8 /usr/local/Homebrew/.git/logs/refs/remotes 24 /usr/local/Homebrew/.git/logs/refs 40 /usr/local/Homebrew/.git/logs 96 /usr/local/Homebrew/.git/hooks 16 /usr/local/Homebrew/.git/refs/heads 1112 /usr/local/Homebrew/.git/refs/tags 8 /usr/local/Homebrew/.git/refs/remotes/origin 8 /usr/local/Homebrew/.git/refs/remotes 1136 /usr/local/Homebrew/.git/refs 75968 /usr/local/Homebrew/.git 252128 /usr/local/Homebrew 0 /usr/local/var/homebrew/locks 0 /usr/local/var/homebrew/linked 0 /usr/local/var/homebrew 0 /usr/local/var 0 /usr/local/Caskroom 48 /usr/local/LANDesk/Resources 96 /usr/local/LANDesk/common/cbaroot/allowed 0 /usr/local/LANDesk/common/cbaroot/alert/queue 8 /usr/local/LANDesk/common/cbaroot/alert 0 /usr/local/LANDesk/common/cbaroot/extensions 24 /usr/local/LANDesk/common/cbaroot/certs 592 /usr/local/LANDesk/common/cbaroot/services 736 /usr/local/LANDesk/common/cbaroot 48728 /usr/local/LANDesk/common 48776 /usr/local/LANDesk 0 /usr/local/lib/pkgconfig 0 /usr/local/lib/docker 64 /usr/local/lib/python3.7/site-packages/livereload-2.6.1.dist-info 1232 /usr/local/lib/python3.7/site-packages/paramiko/__pycache__ 2752 /usr/local/lib/python3.7/site-packages/paramiko 40 /usr/local/lib/python3.7/site-packages/astroid/interpreter/_import/__pycache__ 72 /usr/local/lib/python3.7/site-packages/astroid/interpreter/_import 72 /usr/local/lib/python3.7/site-packages/astroid/interpreter/__pycache__ 200 /usr/local/lib/python3.7/site-packages/astroid/interpreter 952 /usr/local/lib/python3.7/site-packages/astroid/__pycache__ 320 /usr/local/lib/python3.7/site-packages/astroid/brain/__pycache__ 688 /usr/local/lib/python3.7/site-packages/astroid/brain 2936 /usr/local/lib/python3.7/site-packages/astroid 48 /usr/local/lib/python3.7/site-packages/antlr4_python3_runtime-4.7.2.dist-info 88 /usr/local/lib/python3.7/site-packages/suds_jurko-0.6.dist-info 88 /usr/local/lib/python3.7/site-packages/tornado-6.0.3.dist-info 96 /usr/local/lib/python3.7/site-packages/stix2_patterns-1.1.0.dist-info 80 /usr/local/lib/python3.7/site-packages/GitPython-3.0.4.dist-info 96 /usr/local/lib/python3.7/site-packages/pbr-5.4.3.dist-info 72 /usr/local/lib/python3.7/site-packages/chardet-3.0.4.dist-info 64 /usr/local/lib/python3.7/site-packages/lazy_object_proxy-1.4.1.dist-info 56 /usr/local/lib/python3.7/site-packages/markupsafe/__pycache__ 208 /usr/local/lib/python3.7/site-packages/markupsafe 48 /usr/local/lib/python3.7/site-packages/fortiosapi/__pycache__ 112 /usr/local/lib/python3.7/site-packages/fortiosapi 960 /usr/local/lib/python3.7/site-packages/pylint/checkers/__pycache__ 2352 /usr/local/lib/python3.7/site-packages/pylint/checkers 456 /usr/local/lib/python3.7/site-packages/pylint/test/messages 32 /usr/local/lib/python3.7/site-packages/pylint/test/input/func_w0401_package/__pycache__ 64 /usr/local/lib/python3.7/site-packages/pylint/test/input/func_w0401_package 520 /usr/local/lib/python3.7/site-packages/pylint/test/input/__pycache__ 1152 /usr/local/lib/python3.7/site-packages/pylint/test/input 592 /usr/local/lib/python3.7/site-packages/pylint/test/__pycache__ 344 /usr/local/lib/python3.7/site-packages/pylint/test/extensions/__pycache__ 72 /usr/local/lib/python3.7/site-packages/pylint/test/extensions/data/__pycache__ 144 /usr/local/lib/python3.7/site-packages/pylint/test/extensions/data 808 /usr/local/lib/python3.7/site-packages/pylint/test/extensions 8 /usr/local/lib/python3.7/site-packages/pylint/test/acceptance/__pycache__ 16 /usr/local/lib/python3.7/site-packages/pylint/test/acceptance 16 /usr/local/lib/python3.7/site-packages/pylint/test/regrtest_data/absimp/__pycache__ 32 /usr/local/lib/python3.7/site-packages/pylint/test/regrtest_data/absimp 24 /usr/local/lib/python3.7/site-packages/pylint/test/regrtest_data/dummy/__pycache__ 48 /usr/local/lib/python3.7/site-packages/pylint/test/regrtest_data/dummy 16 /usr/local/lib/python3.7/site-packages/pylint/test/regrtest_data/dummy_plugin/__pycache__ 32 /usr/local/lib/python3.7/site-packages/pylint/test/regrtest_data/dummy_plugin 160 /usr/local/lib/python3.7/site-packages/pylint/test/regrtest_data/__pycache__ 8 /usr/local/lib/python3.7/site-packages/pylint/test/regrtest_data/bad_package/__pycache__ 24 /usr/local/lib/python3.7/site-packages/pylint/test/regrtest_data/bad_package 16 /usr/local/lib/python3.7/site-packages/pylint/test/regrtest_data/package_all/__pycache__ 32 /usr/local/lib/python3.7/site-packages/pylint/test/regrtest_data/package_all 8 /usr/local/lib/python3.7/site-packages/pylint/test/regrtest_data/init_wildcard/__pycache__ 16 /usr/local/lib/python3.7/site-packages/pylint/test/regrtest_data/init_wildcard 16 /usr/local/lib/python3.7/site-packages/pylint/test/regrtest_data/beyond_top/__pycache__ 32 /usr/local/lib/python3.7/site-packages/pylint/test/regrtest_data/beyond_top 16 /usr/local/lib/python3.7/site-packages/pylint/test/regrtest_data/package/__pycache__ 16 /usr/local/lib/python3.7/site-packages/pylint/test/regrtest_data/package/subpackage/__pycache__ 32 /usr/local/lib/python3.7/site-packages/pylint/test/regrtest_data/package/subpackage 64 /usr/local/lib/python3.7/site-packages/pylint/test/regrtest_data/package 664 /usr/local/lib/python3.7/site-packages/pylint/test/regrtest_data 24 /usr/local/lib/python3.7/site-packages/pylint/test/data/__pycache__ 64 /usr/local/lib/python3.7/site-packages/pylint/test/data 2760 /usr/local/lib/python3.7/site-packages/pylint/test/functional/__pycache__ 8896 /usr/local/lib/python3.7/site-packages/pylint/test/functional 13264 /usr/local/lib/python3.7/site-packages/pylint/test 328 /usr/local/lib/python3.7/site-packages/pylint/__pycache__ 160 /usr/local/lib/python3.7/site-packages/pylint/extensions/__pycache__ 336 /usr/local/lib/python3.7/site-packages/pylint/extensions 136 /usr/local/lib/python3.7/site-packages/pylint/pyreverse/__pycache__ 288 /usr/local/lib/python3.7/site-packages/pylint/pyreverse 32 /usr/local/lib/python3.7/site-packages/pylint/reporters/ureports/__pycache__ 64 /usr/local/lib/python3.7/site-packages/pylint/reporters/ureports 40 /usr/local/lib/python3.7/site-packages/pylint/reporters/__pycache__ 136 /usr/local/lib/python3.7/site-packages/pylint/reporters 17120 /usr/local/lib/python3.7/site-packages/pylint 912 /usr/local/lib/python3.7/site-packages/chardet/__pycache__ 16 /usr/local/lib/python3.7/site-packages/chardet/cli/__pycache__ 32 /usr/local/lib/python3.7/site-packages/chardet/cli 1816 /usr/local/lib/python3.7/site-packages/chardet 64 /usr/local/lib/python3.7/site-packages/fortiosapi-0.10.8.dist-info 56 /usr/local/lib/python3.7/site-packages/gitdb2-2.0.6.dist-info 32 /usr/local/lib/python3.7/site-packages/stix2patterns/test/__pycache__ 64 /usr/local/lib/python3.7/site-packages/stix2patterns/test 40 /usr/local/lib/python3.7/site-packages/stix2patterns/__pycache__ 240 /usr/local/lib/python3.7/site-packages/stix2patterns/grammars/__pycache__ 504 /usr/local/lib/python3.7/site-packages/stix2patterns/grammars 656 /usr/local/lib/python3.7/site-packages/stix2patterns 64 /usr/local/lib/python3.7/site-packages/Markdown-3.1.1.dist-info 216 /usr/local/lib/python3.7/site-packages/pycparser/ply/__pycache__ 672 /usr/local/lib/python3.7/site-packages/pycparser/ply 616 /usr/local/lib/python3.7/site-packages/pycparser/__pycache__ 1984 /usr/local/lib/python3.7/site-packages/pycparser 128 /usr/local/lib/python3.7/site-packages/cryptography-2.7.dist-info 40 /usr/local/lib/python3.7/site-packages/typed_ast-1.4.0.dist-info 864 /usr/local/lib/python3.7/site-packages/jinja2/__pycache__ 1824 /usr/local/lib/python3.7/site-packages/jinja2 40 /usr/local/lib/python3.7/site-packages/cryptography/hazmat/backends/__pycache__ 504 /usr/local/lib/python3.7/site-packages/cryptography/hazmat/backends/openssl/__pycache__ 1152 /usr/local/lib/python3.7/site-packages/cryptography/hazmat/backends/openssl 1224 /usr/local/lib/python3.7/site-packages/cryptography/hazmat/backends 16 /usr/local/lib/python3.7/site-packages/cryptography/hazmat/__pycache__ 56 /usr/local/lib/python3.7/site-packages/cryptography/hazmat/primitives/kdf/__pycache__ 120 /usr/local/lib/python3.7/site-packages/cryptography/hazmat/primitives/kdf 32 /usr/local/lib/python3.7/site-packages/cryptography/hazmat/primitives/twofactor/__pycache__ 64 /usr/local/lib/python3.7/site-packages/cryptography/hazmat/primitives/twofactor 32 /usr/local/lib/python3.7/site-packages/cryptography/hazmat/primitives/serialization/__pycache__ 72 /usr/local/lib/python3.7/site-packages/cryptography/hazmat/primitives/serialization 88 /usr/local/lib/python3.7/site-packages/cryptography/hazmat/primitives/__pycache__ 80 /usr/local/lib/python3.7/site-packages/cryptography/hazmat/primitives/ciphers/__pycache__ 152 /usr/local/lib/python3.7/site-packages/cryptography/hazmat/primitives/ciphers 152 /usr/local/lib/python3.7/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__ 296 /usr/local/lib/python3.7/site-packages/cryptography/hazmat/primitives/asymmetric 880 /usr/local/lib/python3.7/site-packages/cryptography/hazmat/primitives 8 /usr/local/lib/python3.7/site-packages/cryptography/hazmat/bindings/__pycache__ 48 /usr/local/lib/python3.7/site-packages/cryptography/hazmat/bindings/openssl/__pycache__ 96 /usr/local/lib/python3.7/site-packages/cryptography/hazmat/bindings/openssl 6928 /usr/local/lib/python3.7/site-packages/cryptography/hazmat/bindings 9064 /usr/local/lib/python3.7/site-packages/cryptography/hazmat 56 /usr/local/lib/python3.7/site-packages/cryptography/__pycache__ 280 /usr/local/lib/python3.7/site-packages/cryptography/x509/__pycache__ 552 /usr/local/lib/python3.7/site-packages/cryptography/x509 9728 /usr/local/lib/python3.7/site-packages/cryptography 96 /usr/local/lib/python3.7/site-packages/stevedore-1.31.0.dist-info 16 /usr/local/lib/python3.7/site-packages/bcrypt/__pycache__ 240 /usr/local/lib/python3.7/site-packages/bcrypt 304 /usr/local/lib/python3.7/site-packages/markdown/__pycache__ 224 /usr/local/lib/python3.7/site-packages/markdown/extensions/__pycache__ 464 /usr/local/lib/python3.7/site-packages/markdown/extensions 1104 /usr/local/lib/python3.7/site-packages/markdown 48 /usr/local/lib/python3.7/site-packages/Click-7.0.dist-info 56 /usr/local/lib/python3.7/site-packages/Jinja2-2.10.1.dist-info 568 /usr/local/lib/python3.7/site-packages/cffi/__pycache__ 1352 /usr/local/lib/python3.7/site-packages/cffi 1584 /usr/local/lib/python3.7/site-packages/ansible-2.8.5.dist-info 72 /usr/local/lib/python3.7/site-packages/simplejson-3.16.0.dist-info 40 /usr/local/lib/python3.7/site-packages/statsd-3.3.0.dist-info 48 /usr/local/lib/python3.7/site-packages/MarkupSafe-1.1.1.dist-info 80 /usr/local/lib/python3.7/site-packages/livereload/vendors 16 /usr/local/lib/python3.7/site-packages/livereload/management/commands/__pycache__ 24 /usr/local/lib/python3.7/site-packages/livereload/management/commands 24 /usr/local/lib/python3.7/site-packages/livereload/management 72 /usr/local/lib/python3.7/site-packages/livereload/__pycache__ 248 /usr/local/lib/python3.7/site-packages/livereload 320 /usr/local/lib/python3.7/site-packages/simplejson/tests/__pycache__ 624 /usr/local/lib/python3.7/site-packages/simplejson/tests 152 /usr/local/lib/python3.7/site-packages/simplejson/__pycache__ 1056 /usr/local/lib/python3.7/site-packages/simplejson 72 /usr/local/lib/python3.7/site-packages/pip-19.1.1-py3.7.egg-info 976 /usr/local/lib/python3.7/site-packages/tests/__pycache__ 144 /usr/local/lib/python3.7/site-packages/tests/external/__pycache__ 240 /usr/local/lib/python3.7/site-packages/tests/external 1784 /usr/local/lib/python3.7/site-packages/tests 64 /usr/local/lib/python3.7/site-packages/pydoc_markdown-2.0.5.dist-info 56 /usr/local/lib/python3.7/site-packages/smmap2-2.0.5.dist-info 72 /usr/local/lib/python3.7/site-packages/mccabe-0.6.1.dist-info 456 /usr/local/lib/python3.7/site-packages/idna/__pycache__ 992 /usr/local/lib/python3.7/site-packages/idna 48 /usr/local/lib/python3.7/site-packages/pycparser-2.19.dist-info 96 /usr/local/lib/python3.7/site-packages/wheel/__pycache__ 40 /usr/local/lib/python3.7/site-packages/wheel/cli/__pycache__ 88 /usr/local/lib/python3.7/site-packages/wheel/cli 296 /usr/local/lib/python3.7/site-packages/wheel 344 /usr/local/lib/python3.7/site-packages/pylint-2.3.1.dist-info 520 /usr/local/lib/python3.7/site-packages/click/__pycache__ 1104 /usr/local/lib/python3.7/site-packages/click 72 /usr/local/lib/python3.7/site-packages/lxml-4.3.4.dist-info 40 /usr/local/lib/python3.7/site-packages/stix2/canonicalization/__pycache__ 88 /usr/local/lib/python3.7/site-packages/stix2/canonicalization 40 /usr/local/lib/python3.7/site-packages/stix2/confidence/__pycache__ 80 /usr/local/lib/python3.7/site-packages/stix2/confidence 336 /usr/local/lib/python3.7/site-packages/stix2/__pycache__ 160 /usr/local/lib/python3.7/site-packages/stix2/datastore/__pycache__ 352 /usr/local/lib/python3.7/site-packages/stix2/datastore 144 /usr/local/lib/python3.7/site-packages/stix2/v20/__pycache__ 304 /usr/local/lib/python3.7/site-packages/stix2/v20 176 /usr/local/lib/python3.7/site-packages/stix2/v21/__pycache__ 400 /usr/local/lib/python3.7/site-packages/stix2/v21 80 /usr/local/lib/python3.7/site-packages/stix2/markings/__pycache__ 160 /usr/local/lib/python3.7/site-packages/stix2/markings 2072 /usr/local/lib/python3.7/site-packages/stix2 88 /usr/local/lib/python3.7/site-packages/pytz/zoneinfo/Indian 96 /usr/local/lib/python3.7/site-packages/pytz/zoneinfo/Atlantic 96 /usr/local/lib/python3.7/site-packages/pytz/zoneinfo/US 32 /usr/local/lib/python3.7/site-packages/pytz/zoneinfo/Brazil 344 /usr/local/lib/python3.7/site-packages/pytz/zoneinfo/Pacific 8 /usr/local/lib/python3.7/site-packages/pytz/zoneinfo/Arctic 64 /usr/local/lib/python3.7/site-packages/pytz/zoneinfo/America/Indiana 104 /usr/local/lib/python3.7/site-packages/pytz/zoneinfo/America/Argentina 16 /usr/local/lib/python3.7/site-packages/pytz/zoneinfo/America/Kentucky 24 /usr/local/lib/python3.7/site-packages/pytz/zoneinfo/America/North_Dakota 1328 /usr/local/lib/python3.7/site-packages/pytz/zoneinfo/America 184 /usr/local/lib/python3.7/site-packages/pytz/zoneinfo/Australia 280 /usr/local/lib/python3.7/site-packages/pytz/zoneinfo/Etc 792 /usr/local/lib/python3.7/site-packages/pytz/zoneinfo/Asia 96 /usr/local/lib/python3.7/site-packages/pytz/zoneinfo/Antarctica 504 /usr/local/lib/python3.7/site-packages/pytz/zoneinfo/Europe 24 /usr/local/lib/python3.7/site-packages/pytz/zoneinfo/Mexico 432 /usr/local/lib/python3.7/site-packages/pytz/zoneinfo/Africa 16 /usr/local/lib/python3.7/site-packages/pytz/zoneinfo/Chile 64 /usr/local/lib/python3.7/site-packages/pytz/zoneinfo/Canada 5080 /usr/local/lib/python3.7/site-packages/pytz/zoneinfo 136 /usr/local/lib/python3.7/site-packages/pytz/__pycache__ 5376 /usr/local/lib/python3.7/site-packages/pytz 80 /usr/local/lib/python3.7/site-packages/statsd/__pycache__ 24 /usr/local/lib/python3.7/site-packages/statsd/defaults/__pycache__ 48 /usr/local/lib/python3.7/site-packages/statsd/defaults 40 /usr/local/lib/python3.7/site-packages/statsd/client/__pycache__ 80 /usr/local/lib/python3.7/site-packages/statsd/client 272 /usr/local/lib/python3.7/site-packages/statsd 224 /usr/local/lib/python3.7/site-packages/isort/__pycache__ 520 /usr/local/lib/python3.7/site-packages/isort 104 /usr/local/lib/python3.7/site-packages/__pycache__ 208 /usr/local/lib/python3.7/site-packages/bandit/core/__pycache__ 456 /usr/local/lib/python3.7/site-packages/bandit/core 264 /usr/local/lib/python3.7/site-packages/bandit/plugins/__pycache__ 560 /usr/local/lib/python3.7/site-packages/bandit/plugins 112 /usr/local/lib/python3.7/site-packages/bandit/formatters/__pycache__ 232 /usr/local/lib/python3.7/site-packages/bandit/formatters 16 /usr/local/lib/python3.7/site-packages/bandit/__pycache__ 64 /usr/local/lib/python3.7/site-packages/bandit/cli/__pycache__ 128 /usr/local/lib/python3.7/site-packages/bandit/cli 96 /usr/local/lib/python3.7/site-packages/bandit/blacklists/__pycache__ 192 /usr/local/lib/python3.7/site-packages/bandit/blacklists 1600 /usr/local/lib/python3.7/site-packages/bandit 80 /usr/local/lib/python3.7/site-packages/PyNaCl-1.3.0.dist-info 96 /usr/local/lib/python3.7/site-packages/wrapt/__pycache__ 344 /usr/local/lib/python3.7/site-packages/wrapt 72 /usr/local/lib/python3.7/site-packages/pydocmd/__pycache__ 168 /usr/local/lib/python3.7/site-packages/pydocmd 64 /usr/local/lib/python3.7/site-packages/certifi-2019.6.16.dist-info 88 /usr/local/lib/python3.7/site-packages/antlr4/tree/__pycache__ 192 /usr/local/lib/python3.7/site-packages/antlr4/tree 32 /usr/local/lib/python3.7/site-packages/antlr4/xpath/__pycache__ 64 /usr/local/lib/python3.7/site-packages/antlr4/xpath 32 /usr/local/lib/python3.7/site-packages/antlr4/dfa/__pycache__ 80 /usr/local/lib/python3.7/site-packages/antlr4/dfa 272 /usr/local/lib/python3.7/site-packages/antlr4/__pycache__ 280 /usr/local/lib/python3.7/site-packages/antlr4/atn/__pycache__ 768 /usr/local/lib/python3.7/site-packages/antlr4/atn 64 /usr/local/lib/python3.7/site-packages/antlr4/error/__pycache__ 176 /usr/local/lib/python3.7/site-packages/antlr4/error 1912 /usr/local/lib/python3.7/site-packages/antlr4 368 /usr/local/lib/python3.7/site-packages/requests/__pycache__ 792 /usr/local/lib/python3.7/site-packages/requests 104 /usr/local/lib/python3.7/site-packages/ansible/vars/__pycache__ 216 /usr/local/lib/python3.7/site-packages/ansible/vars 72 /usr/local/lib/python3.7/site-packages/ansible/playbook/role/__pycache__ 184 /usr/local/lib/python3.7/site-packages/ansible/playbook/role 320 /usr/local/lib/python3.7/site-packages/ansible/playbook/__pycache__ 920 /usr/local/lib/python3.7/site-packages/ansible/playbook 8 /usr/local/lib/python3.7/site-packages/ansible/compat/__pycache__ 48 /usr/local/lib/python3.7/site-packages/ansible/compat/selectors/__pycache__ 104 /usr/local/lib/python3.7/site-packages/ansible/compat/selectors 120 /usr/local/lib/python3.7/site-packages/ansible/compat 48 /usr/local/lib/python3.7/site-packages/ansible/config/__pycache__ 280 /usr/local/lib/python3.7/site-packages/ansible/config 16 /usr/local/lib/python3.7/site-packages/ansible/plugins/vars/__pycache__ 40 /usr/local/lib/python3.7/site-packages/ansible/plugins/vars 104 /usr/local/lib/python3.7/site-packages/ansible/plugins/netconf/__pycache__ 224 /usr/local/lib/python3.7/site-packages/ansible/plugins/netconf 128 /usr/local/lib/python3.7/site-packages/ansible/plugins/cache/__pycache__ 248 /usr/local/lib/python3.7/site-packages/ansible/plugins/cache 40 /usr/local/lib/python3.7/site-packages/ansible/plugins/test/__pycache__ 80 /usr/local/lib/python3.7/site-packages/ansible/plugins/test 640 /usr/local/lib/python3.7/site-packages/ansible/plugins/connection/__pycache__ 1408 /usr/local/lib/python3.7/site-packages/ansible/plugins/connection 1016 /usr/local/lib/python3.7/site-packages/ansible/plugins/doc_fragments/__pycache__ 2024 /usr/local/lib/python3.7/site-packages/ansible/plugins/doc_fragments 72 /usr/local/lib/python3.7/site-packages/ansible/plugins/shell/__pycache__ 160 /usr/local/lib/python3.7/site-packages/ansible/plugins/shell 240 /usr/local/lib/python3.7/site-packages/ansible/plugins/terminal/__pycache__ 488 /usr/local/lib/python3.7/site-packages/ansible/plugins/terminal 816 /usr/local/lib/python3.7/site-packages/ansible/plugins/lookup/__pycache__ 1704 /usr/local/lib/python3.7/site-packages/ansible/plugins/lookup 56 /usr/local/lib/python3.7/site-packages/ansible/plugins/__pycache__ 144 /usr/local/lib/python3.7/site-packages/ansible/plugins/httpapi/__pycache__ 304 /usr/local/lib/python3.7/site-packages/ansible/plugins/httpapi 896 /usr/local/lib/python3.7/site-packages/ansible/plugins/action/__pycache__ 2080 /usr/local/lib/python3.7/site-packages/ansible/plugins/action 672 /usr/local/lib/python3.7/site-packages/ansible/plugins/inventory/__pycache__ 1504 /usr/local/lib/python3.7/site-packages/ansible/plugins/inventory 128 /usr/local/lib/python3.7/site-packages/ansible/plugins/become/__pycache__ 248 /usr/local/lib/python3.7/site-packages/ansible/plugins/become 648 /usr/local/lib/python3.7/site-packages/ansible/plugins/callback/__pycache__ 1336 /usr/local/lib/python3.7/site-packages/ansible/plugins/callback 168 /usr/local/lib/python3.7/site-packages/ansible/plugins/filter/__pycache__ 368 /usr/local/lib/python3.7/site-packages/ansible/plugins/filter 336 /usr/local/lib/python3.7/site-packages/ansible/plugins/cliconf/__pycache__ 744 /usr/local/lib/python3.7/site-packages/ansible/plugins/cliconf 120 /usr/local/lib/python3.7/site-packages/ansible/plugins/strategy/__pycache__ 328 /usr/local/lib/python3.7/site-packages/ansible/plugins/strategy 13432 /usr/local/lib/python3.7/site-packages/ansible/plugins 80 /usr/local/lib/python3.7/site-packages/ansible/template/__pycache__ 200 /usr/local/lib/python3.7/site-packages/ansible/template 232 /usr/local/lib/python3.7/site-packages/ansible/utils/__pycache__ 496 /usr/local/lib/python3.7/site-packages/ansible/utils 40 /usr/local/lib/python3.7/site-packages/ansible/__pycache__ 272 /usr/local/lib/python3.7/site-packages/ansible/cli/__pycache__ 40 /usr/local/lib/python3.7/site-packages/ansible/cli/arguments/__pycache__ 88 /usr/local/lib/python3.7/site-packages/ansible/cli/arguments 744 /usr/local/lib/python3.7/site-packages/ansible/cli 72 /usr/local/lib/python3.7/site-packages/ansible/galaxy/__pycache__ 8 /usr/local/lib/python3.7/site-packages/ansible/galaxy/data/apb/vars 8 /usr/local/lib/python3.7/site-packages/ansible/galaxy/data/apb/tasks 24 /usr/local/lib/python3.7/site-packages/ansible/galaxy/data/apb/tests 8 /usr/local/lib/python3.7/site-packages/ansible/galaxy/data/apb/meta 16 /usr/local/lib/python3.7/site-packages/ansible/galaxy/data/apb/playbooks 8 /usr/local/lib/python3.7/site-packages/ansible/galaxy/data/apb/defaults 0 /usr/local/lib/python3.7/site-packages/ansible/galaxy/data/apb/files 0 /usr/local/lib/python3.7/site-packages/ansible/galaxy/data/apb/templates 8 /usr/local/lib/python3.7/site-packages/ansible/galaxy/data/apb/handlers 112 /usr/local/lib/python3.7/site-packages/ansible/galaxy/data/apb 8 /usr/local/lib/python3.7/site-packages/ansible/galaxy/data/network/vars 8 /usr/local/lib/python3.7/site-packages/ansible/galaxy/data/network/tasks 8 /usr/local/lib/python3.7/site-packages/ansible/galaxy/data/network/terminal_plugins 8 /usr/local/lib/python3.7/site-packages/ansible/galaxy/data/network/cliconf_plugins 16 /usr/local/lib/python3.7/site-packages/ansible/galaxy/data/network/tests 8 /usr/local/lib/python3.7/site-packages/ansible/galaxy/data/network/meta 24 /usr/local/lib/python3.7/site-packages/ansible/galaxy/data/network/library 8 /usr/local/lib/python3.7/site-packages/ansible/galaxy/data/network/netconf_plugins 8 /usr/local/lib/python3.7/site-packages/ansible/galaxy/data/network/defaults 8 /usr/local/lib/python3.7/site-packages/ansible/galaxy/data/network/module_utils 0 /usr/local/lib/python3.7/site-packages/ansible/galaxy/data/network/files 0 /usr/local/lib/python3.7/site-packages/ansible/galaxy/data/network/templates 112 /usr/local/lib/python3.7/site-packages/ansible/galaxy/data/network 8 /usr/local/lib/python3.7/site-packages/ansible/galaxy/data/default/vars 8 /usr/local/lib/python3.7/site-packages/ansible/galaxy/data/default/tasks 16 /usr/local/lib/python3.7/site-packages/ansible/galaxy/data/default/tests 8 /usr/local/lib/python3.7/site-packages/ansible/galaxy/data/default/meta 8 /usr/local/lib/python3.7/site-packages/ansible/galaxy/data/default/defaults 0 /usr/local/lib/python3.7/site-packages/ansible/galaxy/data/default/files 0 /usr/local/lib/python3.7/site-packages/ansible/galaxy/data/default/templates 8 /usr/local/lib/python3.7/site-packages/ansible/galaxy/data/default/handlers 64 /usr/local/lib/python3.7/site-packages/ansible/galaxy/data/default 8 /usr/local/lib/python3.7/site-packages/ansible/galaxy/data/container/vars 8 /usr/local/lib/python3.7/site-packages/ansible/galaxy/data/container/tasks 24 /usr/local/lib/python3.7/site-packages/ansible/galaxy/data/container/tests 16 /usr/local/lib/python3.7/site-packages/ansible/galaxy/data/container/meta 8 /usr/local/lib/python3.7/site-packages/ansible/galaxy/data/container/defaults 0 /usr/local/lib/python3.7/site-packages/ansible/galaxy/data/container/files 0 /usr/local/lib/python3.7/site-packages/ansible/galaxy/data/container/templates 8 /usr/local/lib/python3.7/site-packages/ansible/galaxy/data/container/handlers 80 /usr/local/lib/python3.7/site-packages/ansible/galaxy/data/container 368 /usr/local/lib/python3.7/site-packages/ansible/galaxy/data 528 /usr/local/lib/python3.7/site-packages/ansible/galaxy 104 /usr/local/lib/python3.7/site-packages/ansible/inventory/__pycache__ 224 /usr/local/lib/python3.7/site-packages/ansible/inventory 16 /usr/local/lib/python3.7/site-packages/ansible/module_utils/podman/__pycache__ 24 /usr/local/lib/python3.7/site-packages/ansible/module_utils/podman 152 /usr/local/lib/python3.7/site-packages/ansible/module_utils/compat/__pycache__ 328 /usr/local/lib/python3.7/site-packages/ansible/module_utils/compat 88 /usr/local/lib/python3.7/site-packages/ansible/module_utils/docker/__pycache__ 192 /usr/local/lib/python3.7/site-packages/ansible/module_utils/docker 88 /usr/local/lib/python3.7/site-packages/ansible/module_utils/distro/__pycache__ 184 /usr/local/lib/python3.7/site-packages/ansible/module_utils/distro 16 /usr/local/lib/python3.7/site-packages/ansible/module_utils/remote_management/lxca/__pycache__ 24 /usr/local/lib/python3.7/site-packages/ansible/module_utils/remote_management/lxca 32 /usr/local/lib/python3.7/site-packages/ansible/module_utils/remote_management/__pycache__ 16 /usr/local/lib/python3.7/site-packages/ansible/module_utils/remote_management/dellemc/__pycache__ 24 /usr/local/lib/python3.7/site-packages/ansible/module_utils/remote_management/dellemc 112 /usr/local/lib/python3.7/site-packages/ansible/module_utils/remote_management 72 /usr/local/lib/python3.7/site-packages/ansible/module_utils/k8s/__pycache__ 160 /usr/local/lib/python3.7/site-packages/ansible/module_utils/k8s 112 /usr/local/lib/python3.7/site-packages/ansible/module_utils/oracle/__pycache__ 280 /usr/local/lib/python3.7/site-packages/ansible/module_utils/oracle 16 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/dellos10/__pycache__ 32 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/dellos10 32 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/frr/providers/__pycache__ 16 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/frr/providers/cli/config/__pycache__ 48 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/frr/providers/cli/config/bgp/__pycache__ 96 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/frr/providers/cli/config/bgp 120 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/frr/providers/cli/config 8 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/frr/providers/cli/__pycache__ 128 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/frr/providers/cli 176 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/frr/providers 16 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/frr/__pycache__ 200 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/frr 16 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/aireos/__pycache__ 32 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/aireos 144 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/ftd/__pycache__ 288 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/ftd 32 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/cloudengine/__pycache__ 56 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/cloudengine 16 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/enos/__pycache__ 32 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/enos 16 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/netconf/__pycache__ 24 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/netconf 16 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/checkpoint/__pycache__ 24 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/checkpoint 16 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/routeros/__pycache__ 32 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/routeros 16 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/nos/__pycache__ 32 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/nos 16 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/avi/__pycache__ 32 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/avi 24 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/exos/__pycache__ 48 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/exos 16 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/ironware/__pycache__ 24 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/ironware 16 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/slxos/__pycache__ 32 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/slxos 32 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/netscaler/__pycache__ 56 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/netscaler 16 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/bigswitch/__pycache__ 24 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/bigswitch 56 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/fortimanager/__pycache__ 128 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/fortimanager 32 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/iosxr/providers/__pycache__ 8 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/iosxr/providers/cli/config/__pycache__ 40 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/iosxr/providers/cli/config/bgp/__pycache__ 72 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/iosxr/providers/cli/config/bgp 80 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/iosxr/providers/cli/config 8 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/iosxr/providers/cli/__pycache__ 88 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/iosxr/providers/cli 136 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/iosxr/providers 40 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/iosxr/__pycache__ 224 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/iosxr 16 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/a10/__pycache__ 32 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/a10 128 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/f5/__pycache__ 288 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/f5 48 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/nxos/__pycache__ 112 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/nxos 64 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/nso/__pycache__ 128 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/nso 16 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/restconf/__pycache__ 24 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/restconf 16 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/sros/__pycache__ 32 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/sros 96 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/aci/__pycache__ 232 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/aci 8 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/__pycache__ 32 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/ios/providers/__pycache__ 16 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/ios/providers/cli/config/__pycache__ 56 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/ios/providers/cli/config/bgp/__pycache__ 104 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/ios/providers/cli/config/bgp 128 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/ios/providers/cli/config 8 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/ios/providers/cli/__pycache__ 136 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/ios/providers/cli 184 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/ios/providers 24 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/ios/__pycache__ 224 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/ios 24 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/onyx/__pycache__ 40 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/onyx 120 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/common/__pycache__ 240 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/common 16 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/vyos/__pycache__ 32 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/vyos 32 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/meraki/__pycache__ 64 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/meraki 32 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/panos/__pycache__ 72 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/panos 16 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/ordnance/__pycache__ 24 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/ordnance 16 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/ingate/__pycache__ 24 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/ingate 16 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/asa/__pycache__ 32 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/asa 24 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/fortios/__pycache__ 40 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/fortios 32 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/skydive/__pycache__ 72 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/skydive 16 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/edgeos/__pycache__ 32 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/edgeos 32 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/junos/__pycache__ 64 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/junos 96 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/cnos/__pycache__ 360 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/cnos 24 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/edgeswitch/__pycache__ 48 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/edgeswitch 24 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/voss/__pycache__ 40 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/voss 24 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/netvisor/__pycache__ 40 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/netvisor 16 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/dellos9/__pycache__ 32 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/dellos9 32 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/eos/providers/__pycache__ 8 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/eos/providers/cli/config/__pycache__ 48 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/eos/providers/cli/config/bgp/__pycache__ 96 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/eos/providers/cli/config/bgp 104 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/eos/providers/cli/config 8 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/eos/providers/cli/__pycache__ 112 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/eos/providers/cli 160 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/eos/providers 48 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/eos/__pycache__ 256 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/eos 16 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/aos/__pycache__ 32 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/aos 24 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/dellos6/__pycache__ 48 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/dellos6 16 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/aruba/__pycache__ 32 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network/aruba 4024 /usr/local/lib/python3.7/site-packages/ansible/module_utils/network 1752 /usr/local/lib/python3.7/site-packages/ansible/module_utils/__pycache__ 16 /usr/local/lib/python3.7/site-packages/ansible/module_utils/storage/hpe3par/__pycache__ 24 /usr/local/lib/python3.7/site-packages/ansible/module_utils/storage/hpe3par 8 /usr/local/lib/python3.7/site-packages/ansible/module_utils/storage/__pycache__ 16 /usr/local/lib/python3.7/site-packages/ansible/module_utils/storage/emc/__pycache__ 24 /usr/local/lib/python3.7/site-packages/ansible/module_utils/storage/emc 56 /usr/local/lib/python3.7/site-packages/ansible/module_utils/storage 8 /usr/local/lib/python3.7/site-packages/ansible/module_utils/powershell/__pycache__ 168 /usr/local/lib/python3.7/site-packages/ansible/module_utils/powershell 160 /usr/local/lib/python3.7/site-packages/ansible/module_utils/common/__pycache__ 24 /usr/local/lib/python3.7/site-packages/ansible/module_utils/common/text/__pycache__ 40 /usr/local/lib/python3.7/site-packages/ansible/module_utils/common/text 360 /usr/local/lib/python3.7/site-packages/ansible/module_utils/common 8 /usr/local/lib/python3.7/site-packages/ansible/module_utils/csharp/__pycache__ 288 /usr/local/lib/python3.7/site-packages/ansible/module_utils/csharp 208 /usr/local/lib/python3.7/site-packages/ansible/module_utils/aws/__pycache__ 448 /usr/local/lib/python3.7/site-packages/ansible/module_utils/aws 56 /usr/local/lib/python3.7/site-packages/ansible/module_utils/six/__pycache__ 120 /usr/local/lib/python3.7/site-packages/ansible/module_utils/six 16 /usr/local/lib/python3.7/site-packages/ansible/module_utils/parsing/__pycache__ 24 /usr/local/lib/python3.7/site-packages/ansible/module_utils/parsing 24 /usr/local/lib/python3.7/site-packages/ansible/module_utils/net_tools/netbox/__pycache__ 48 /usr/local/lib/python3.7/site-packages/ansible/module_utils/net_tools/netbox 40 /usr/local/lib/python3.7/site-packages/ansible/module_utils/net_tools/nios/__pycache__ 88 /usr/local/lib/python3.7/site-packages/ansible/module_utils/net_tools/nios 8 /usr/local/lib/python3.7/site-packages/ansible/module_utils/net_tools/__pycache__ 144 /usr/local/lib/python3.7/site-packages/ansible/module_utils/net_tools 168 /usr/local/lib/python3.7/site-packages/ansible/module_utils/facts/hardware/__pycache__ 392 /usr/local/lib/python3.7/site-packages/ansible/module_utils/facts/hardware 144 /usr/local/lib/python3.7/site-packages/ansible/module_utils/facts/network/__pycache__ 336 /usr/local/lib/python3.7/site-packages/ansible/module_utils/facts/network 24 /usr/local/lib/python3.7/site-packages/ansible/module_utils/facts/other/__pycache__ 40 /usr/local/lib/python3.7/site-packages/ansible/module_utils/facts/other 104 /usr/local/lib/python3.7/site-packages/ansible/module_utils/facts/__pycache__ 184 /usr/local/lib/python3.7/site-packages/ansible/module_utils/facts/system/__pycache__ 400 /usr/local/lib/python3.7/site-packages/ansible/module_utils/facts/system 88 /usr/local/lib/python3.7/site-packages/ansible/module_utils/facts/virtual/__pycache__ 184 /usr/local/lib/python3.7/site-packages/ansible/module_utils/facts/virtual 1584 /usr/local/lib/python3.7/site-packages/ansible/module_utils/facts 16 /usr/local/lib/python3.7/site-packages/ansible/module_utils/source_control/__pycache__ 24 /usr/local/lib/python3.7/site-packages/ansible/module_utils/source_control 12608 /usr/local/lib/python3.7/site-packages/ansible/module_utils 16 /usr/local/lib/python3.7/site-packages/ansible/executor/discovery/__pycache__ 24 /usr/local/lib/python3.7/site-packages/ansible/executor/discovery 240 /usr/local/lib/python3.7/site-packages/ansible/executor/__pycache__ 24 /usr/local/lib/python3.7/site-packages/ansible/executor/powershell/__pycache__ 160 /usr/local/lib/python3.7/site-packages/ansible/executor/powershell 24 /usr/local/lib/python3.7/site-packages/ansible/executor/process/__pycache__ 48 /usr/local/lib/python3.7/site-packages/ansible/executor/process 872 /usr/local/lib/python3.7/site-packages/ansible/executor 32 /usr/local/lib/python3.7/site-packages/ansible/errors/__pycache__ 72 /usr/local/lib/python3.7/site-packages/ansible/errors 40 /usr/local/lib/python3.7/site-packages/ansible/parsing/utils/__pycache__ 80 /usr/local/lib/python3.7/site-packages/ansible/parsing/utils 112 /usr/local/lib/python3.7/site-packages/ansible/parsing/__pycache__ 56 /usr/local/lib/python3.7/site-packages/ansible/parsing/yaml/__pycache__ 112 /usr/local/lib/python3.7/site-packages/ansible/parsing/yaml 72 /usr/local/lib/python3.7/site-packages/ansible/parsing/vault/__pycache__ 176 /usr/local/lib/python3.7/site-packages/ansible/parsing/vault 640 /usr/local/lib/python3.7/site-packages/ansible/parsing 256 /usr/local/lib/python3.7/site-packages/ansible/modules/packaging/language/__pycache__ 552 /usr/local/lib/python3.7/site-packages/ansible/modules/packaging/language 8 /usr/local/lib/python3.7/site-packages/ansible/modules/packaging/__pycache__ 1152 /usr/local/lib/python3.7/site-packages/ansible/modules/packaging/os/__pycache__ 2648 /usr/local/lib/python3.7/site-packages/ansible/modules/packaging/os 3208 /usr/local/lib/python3.7/site-packages/ansible/modules/packaging 72 /usr/local/lib/python3.7/site-packages/ansible/modules/database/misc/__pycache__ 152 /usr/local/lib/python3.7/site-packages/ansible/modules/database/misc 536 /usr/local/lib/python3.7/site-packages/ansible/modules/database/postgresql/__pycache__ 1152 /usr/local/lib/python3.7/site-packages/ansible/modules/database/postgresql 8 /usr/local/lib/python3.7/site-packages/ansible/modules/database/__pycache__ 96 /usr/local/lib/python3.7/site-packages/ansible/modules/database/mongodb/__pycache__ 200 /usr/local/lib/python3.7/site-packages/ansible/modules/database/mongodb 64 /usr/local/lib/python3.7/site-packages/ansible/modules/database/influxdb/__pycache__ 120 /usr/local/lib/python3.7/site-packages/ansible/modules/database/influxdb 40 /usr/local/lib/python3.7/site-packages/ansible/modules/database/aerospike/__pycache__ 80 /usr/local/lib/python3.7/site-packages/ansible/modules/database/aerospike 112 /usr/local/lib/python3.7/site-packages/ansible/modules/database/mysql/__pycache__ 248 /usr/local/lib/python3.7/site-packages/ansible/modules/database/mysql 192 /usr/local/lib/python3.7/site-packages/ansible/modules/database/proxysql/__pycache__ 416 /usr/local/lib/python3.7/site-packages/ansible/modules/database/proxysql 104 /usr/local/lib/python3.7/site-packages/ansible/modules/database/vertica/__pycache__ 216 /usr/local/lib/python3.7/site-packages/ansible/modules/database/vertica 24 /usr/local/lib/python3.7/site-packages/ansible/modules/database/mssql/__pycache__ 40 /usr/local/lib/python3.7/site-packages/ansible/modules/database/mssql 2632 /usr/local/lib/python3.7/site-packages/ansible/modules/database 264 /usr/local/lib/python3.7/site-packages/ansible/modules/crypto/acme/__pycache__ 576 /usr/local/lib/python3.7/site-packages/ansible/modules/crypto/acme 608 /usr/local/lib/python3.7/site-packages/ansible/modules/crypto/__pycache__ 1904 /usr/local/lib/python3.7/site-packages/ansible/modules/crypto 288 /usr/local/lib/python3.7/site-packages/ansible/modules/identity/ipa/__pycache__ 592 /usr/local/lib/python3.7/site-packages/ansible/modules/identity/ipa 48 /usr/local/lib/python3.7/site-packages/ansible/modules/identity/cyberark/__pycache__ 104 /usr/local/lib/python3.7/site-packages/ansible/modules/identity/cyberark 40 /usr/local/lib/python3.7/site-packages/ansible/modules/identity/__pycache__ 128 /usr/local/lib/python3.7/site-packages/ansible/modules/identity/keycloak/__pycache__ 248 /usr/local/lib/python3.7/site-packages/ansible/modules/identity/keycloak 24 /usr/local/lib/python3.7/site-packages/ansible/modules/identity/opendj/__pycache__ 40 /usr/local/lib/python3.7/site-packages/ansible/modules/identity/opendj 1056 /usr/local/lib/python3.7/site-packages/ansible/modules/identity 384 /usr/local/lib/python3.7/site-packages/ansible/modules/notification/__pycache__ 840 /usr/local/lib/python3.7/site-packages/ansible/modules/notification 32 /usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/intersight/__pycache__ 56 /usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/intersight 40 /usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/imc/__pycache__ 72 /usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/imc 40 /usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/lxca/__pycache__ 72 /usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/lxca 24 /usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/stacki/__pycache__ 48 /usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/stacki 96 /usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/redfish/__pycache__ 208 /usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/redfish 176 /usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/oneview/__pycache__ 344 /usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/oneview 32 /usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/cobbler/__pycache__ 72 /usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/cobbler 64 /usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/foreman/__pycache__ 128 /usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/foreman 16 /usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/__pycache__ 48 /usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/hpilo/__pycache__ 88 /usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/hpilo 64 /usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/cpm/__pycache__ 136 /usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/cpm 48 /usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/dellemc/__pycache__ 88 /usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/dellemc 320 /usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/ucs/__pycache__ 744 /usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/ucs 32 /usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/ipmi/__pycache__ 56 /usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/ipmi 240 /usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/manageiq/__pycache__ 528 /usr/local/lib/python3.7/site-packages/ansible/modules/remote_management/manageiq 2664 /usr/local/lib/python3.7/site-packages/ansible/modules/remote_management 184 /usr/local/lib/python3.7/site-packages/ansible/modules/web_infrastructure/sophos_utm/__pycache__ 376 /usr/local/lib/python3.7/site-packages/ansible/modules/web_infrastructure/sophos_utm 376 /usr/local/lib/python3.7/site-packages/ansible/modules/web_infrastructure/__pycache__ 304 /usr/local/lib/python3.7/site-packages/ansible/modules/web_infrastructure/ansible_tower/__pycache__ 632 /usr/local/lib/python3.7/site-packages/ansible/modules/web_infrastructure/ansible_tower 1816 /usr/local/lib/python3.7/site-packages/ansible/modules/web_infrastructure 80 /usr/local/lib/python3.7/site-packages/ansible/modules/network/dellos10/__pycache__ 160 /usr/local/lib/python3.7/site-packages/ansible/modules/network/dellos10 64 /usr/local/lib/python3.7/site-packages/ansible/modules/network/frr/__pycache__ 128 /usr/local/lib/python3.7/site-packages/ansible/modules/network/frr 48 /usr/local/lib/python3.7/site-packages/ansible/modules/network/aireos/__pycache__ 96 /usr/local/lib/python3.7/site-packages/ansible/modules/network/aireos 64 /usr/local/lib/python3.7/site-packages/ansible/modules/network/ftd/__pycache__ 128 /usr/local/lib/python3.7/site-packages/ansible/modules/network/ftd 2872 /usr/local/lib/python3.7/site-packages/ansible/modules/network/cloudengine/__pycache__ 7296 /usr/local/lib/python3.7/site-packages/ansible/modules/network/cloudengine 32 /usr/local/lib/python3.7/site-packages/ansible/modules/network/interface/__pycache__ 56 /usr/local/lib/python3.7/site-packages/ansible/modules/network/interface 192 /usr/local/lib/python3.7/site-packages/ansible/modules/network/illumos/__pycache__ 400 /usr/local/lib/python3.7/site-packages/ansible/modules/network/illumos 80 /usr/local/lib/python3.7/site-packages/ansible/modules/network/enos/__pycache__ 152 /usr/local/lib/python3.7/site-packages/ansible/modules/network/enos 80 /usr/local/lib/python3.7/site-packages/ansible/modules/network/netconf/__pycache__ 168 /usr/local/lib/python3.7/site-packages/ansible/modules/network/netconf 32 /usr/local/lib/python3.7/site-packages/ansible/modules/network/opx/__pycache__ 64 /usr/local/lib/python3.7/site-packages/ansible/modules/network/opx 96 /usr/local/lib/python3.7/site-packages/ansible/modules/network/checkpoint/__pycache__ 192 /usr/local/lib/python3.7/site-packages/ansible/modules/network/checkpoint 56 /usr/local/lib/python3.7/site-packages/ansible/modules/network/routeros/__pycache__ 104 /usr/local/lib/python3.7/site-packages/ansible/modules/network/routeros 88 /usr/local/lib/python3.7/site-packages/ansible/modules/network/nos/__pycache__ 168 /usr/local/lib/python3.7/site-packages/ansible/modules/network/nos 56 /usr/local/lib/python3.7/site-packages/ansible/modules/network/ovs/__pycache__ 112 /usr/local/lib/python3.7/site-packages/ansible/modules/network/ovs 1056 /usr/local/lib/python3.7/site-packages/ansible/modules/network/avi/__pycache__ 2208 /usr/local/lib/python3.7/site-packages/ansible/modules/network/avi 80 /usr/local/lib/python3.7/site-packages/ansible/modules/network/exos/__pycache__ 168 /usr/local/lib/python3.7/site-packages/ansible/modules/network/exos 88 /usr/local/lib/python3.7/site-packages/ansible/modules/network/ironware/__pycache__ 168 /usr/local/lib/python3.7/site-packages/ansible/modules/network/ironware 192 /usr/local/lib/python3.7/site-packages/ansible/modules/network/slxos/__pycache__ 432 /usr/local/lib/python3.7/site-packages/ansible/modules/network/slxos 640 /usr/local/lib/python3.7/site-packages/ansible/modules/network/netscaler/__pycache__ 1432 /usr/local/lib/python3.7/site-packages/ansible/modules/network/netscaler 48 /usr/local/lib/python3.7/site-packages/ansible/modules/network/bigswitch/__pycache__ 96 /usr/local/lib/python3.7/site-packages/ansible/modules/network/bigswitch 1184 /usr/local/lib/python3.7/site-packages/ansible/modules/network/fortimanager/__pycache__ 2752 /usr/local/lib/python3.7/site-packages/ansible/modules/network/fortimanager 304 /usr/local/lib/python3.7/site-packages/ansible/modules/network/iosxr/__pycache__ 680 /usr/local/lib/python3.7/site-packages/ansible/modules/network/iosxr 72 /usr/local/lib/python3.7/site-packages/ansible/modules/network/a10/__pycache__ 176 /usr/local/lib/python3.7/site-packages/ansible/modules/network/a10 7912 /usr/local/lib/python3.7/site-packages/ansible/modules/network/f5/__pycache__ 16728 /usr/local/lib/python3.7/site-packages/ansible/modules/network/f5 1544 /usr/local/lib/python3.7/site-packages/ansible/modules/network/nxos/__pycache__ 3608 /usr/local/lib/python3.7/site-packages/ansible/modules/network/nxos 72 /usr/local/lib/python3.7/site-packages/ansible/modules/network/nuage/__pycache__ 160 /usr/local/lib/python3.7/site-packages/ansible/modules/network/nuage 32 /usr/local/lib/python3.7/site-packages/ansible/modules/network/netact/__pycache__ 56 /usr/local/lib/python3.7/site-packages/ansible/modules/network/netact 72 /usr/local/lib/python3.7/site-packages/ansible/modules/network/nso/__pycache__ 144 /usr/local/lib/python3.7/site-packages/ansible/modules/network/nso 32 /usr/local/lib/python3.7/site-packages/ansible/modules/network/restconf/__pycache__ 56 /usr/local/lib/python3.7/site-packages/ansible/modules/network/restconf 64 /usr/local/lib/python3.7/site-packages/ansible/modules/network/sros/__pycache__ 120 /usr/local/lib/python3.7/site-packages/ansible/modules/network/sros 16 /usr/local/lib/python3.7/site-packages/ansible/modules/network/protocol/__pycache__ 24 /usr/local/lib/python3.7/site-packages/ansible/modules/network/protocol 1840 /usr/local/lib/python3.7/site-packages/ansible/modules/network/aci/__pycache__ 3824 /usr/local/lib/python3.7/site-packages/ansible/modules/network/aci 8 /usr/local/lib/python3.7/site-packages/ansible/modules/network/__pycache__ 48 /usr/local/lib/python3.7/site-packages/ansible/modules/network/cli/__pycache__ 96 /usr/local/lib/python3.7/site-packages/ansible/modules/network/cli 432 /usr/local/lib/python3.7/site-packages/ansible/modules/network/ios/__pycache__ 952 /usr/local/lib/python3.7/site-packages/ansible/modules/network/ios 56 /usr/local/lib/python3.7/site-packages/ansible/modules/network/cloudvision/__pycache__ 104 /usr/local/lib/python3.7/site-packages/ansible/modules/network/cloudvision 72 /usr/local/lib/python3.7/site-packages/ansible/modules/network/radware/__pycache__ 160 /usr/local/lib/python3.7/site-packages/ansible/modules/network/radware 456 /usr/local/lib/python3.7/site-packages/ansible/modules/network/onyx/__pycache__ 944 /usr/local/lib/python3.7/site-packages/ansible/modules/network/onyx 56 /usr/local/lib/python3.7/site-packages/ansible/modules/network/system/__pycache__ 104 /usr/local/lib/python3.7/site-packages/ansible/modules/network/system 264 /usr/local/lib/python3.7/site-packages/ansible/modules/network/vyos/__pycache__ 552 /usr/local/lib/python3.7/site-packages/ansible/modules/network/vyos 312 /usr/local/lib/python3.7/site-packages/ansible/modules/network/meraki/__pycache__ 720 /usr/local/lib/python3.7/site-packages/ansible/modules/network/meraki 24 /usr/local/lib/python3.7/site-packages/ansible/modules/network/layer2/__pycache__ 40 /usr/local/lib/python3.7/site-packages/ansible/modules/network/layer2 392 /usr/local/lib/python3.7/site-packages/ansible/modules/network/panos/__pycache__ 896 /usr/local/lib/python3.7/site-packages/ansible/modules/network/panos 56 /usr/local/lib/python3.7/site-packages/ansible/modules/network/ordnance/__pycache__ 112 /usr/local/lib/python3.7/site-packages/ansible/modules/network/ordnance 48 /usr/local/lib/python3.7/site-packages/ansible/modules/network/ingate/__pycache__ 88 /usr/local/lib/python3.7/site-packages/ansible/modules/network/ingate 24 /usr/local/lib/python3.7/site-packages/ansible/modules/network/layer3/__pycache__ 40 /usr/local/lib/python3.7/site-packages/ansible/modules/network/layer3 24 /usr/local/lib/python3.7/site-packages/ansible/modules/network/files/__pycache__ 40 /usr/local/lib/python3.7/site-packages/ansible/modules/network/files 104 /usr/local/lib/python3.7/site-packages/ansible/modules/network/asa/__pycache__ 232 /usr/local/lib/python3.7/site-packages/ansible/modules/network/asa 6840 /usr/local/lib/python3.7/site-packages/ansible/modules/network/fortios/__pycache__ 15264 /usr/local/lib/python3.7/site-packages/ansible/modules/network/fortios 48 /usr/local/lib/python3.7/site-packages/ansible/modules/network/skydive/__pycache__ 88 /usr/local/lib/python3.7/site-packages/ansible/modules/network/skydive 16 /usr/local/lib/python3.7/site-packages/ansible/modules/network/routing/__pycache__ 24 /usr/local/lib/python3.7/site-packages/ansible/modules/network/routing 80 /usr/local/lib/python3.7/site-packages/ansible/modules/network/cumulus/__pycache__ 152 /usr/local/lib/python3.7/site-packages/ansible/modules/network/cumulus 64 /usr/local/lib/python3.7/site-packages/ansible/modules/network/edgeos/__pycache__ 128 /usr/local/lib/python3.7/site-packages/ansible/modules/network/edgeos 400 /usr/local/lib/python3.7/site-packages/ansible/modules/network/junos/__pycache__ 856 /usr/local/lib/python3.7/site-packages/ansible/modules/network/junos 560 /usr/local/lib/python3.7/site-packages/ansible/modules/network/cnos/__pycache__ 1280 /usr/local/lib/python3.7/site-packages/ansible/modules/network/cnos 48 /usr/local/lib/python3.7/site-packages/ansible/modules/network/edgeswitch/__pycache__ 96 /usr/local/lib/python3.7/site-packages/ansible/modules/network/edgeswitch 88 /usr/local/lib/python3.7/site-packages/ansible/modules/network/voss/__pycache__ 176 /usr/local/lib/python3.7/site-packages/ansible/modules/network/voss 632 /usr/local/lib/python3.7/site-packages/ansible/modules/network/netvisor/__pycache__ 1384 /usr/local/lib/python3.7/site-packages/ansible/modules/network/netvisor 88 /usr/local/lib/python3.7/site-packages/ansible/modules/network/dellos9/__pycache__ 176 /usr/local/lib/python3.7/site-packages/ansible/modules/network/dellos9 352 /usr/local/lib/python3.7/site-packages/ansible/modules/network/eos/__pycache__ 776 /usr/local/lib/python3.7/site-packages/ansible/modules/network/eos 32 /usr/local/lib/python3.7/site-packages/ansible/modules/network/itential/__pycache__ 56 /usr/local/lib/python3.7/site-packages/ansible/modules/network/itential 200 /usr/local/lib/python3.7/site-packages/ansible/modules/network/aos/__pycache__ 464 /usr/local/lib/python3.7/site-packages/ansible/modules/network/aos 16 /usr/local/lib/python3.7/site-packages/ansible/modules/network/citrix/__pycache__ 24 /usr/local/lib/python3.7/site-packages/ansible/modules/network/citrix 80 /usr/local/lib/python3.7/site-packages/ansible/modules/network/dellos6/__pycache__ 160 /usr/local/lib/python3.7/site-packages/ansible/modules/network/dellos6 56 /usr/local/lib/python3.7/site-packages/ansible/modules/network/aruba/__pycache__ 112 /usr/local/lib/python3.7/site-packages/ansible/modules/network/aruba 68360 /usr/local/lib/python3.7/site-packages/ansible/modules/network 144 /usr/local/lib/python3.7/site-packages/ansible/modules/clustering/k8s/__pycache__ 296 /usr/local/lib/python3.7/site-packages/ansible/modules/clustering/k8s 176 /usr/local/lib/python3.7/site-packages/ansible/modules/clustering/__pycache__ 64 /usr/local/lib/python3.7/site-packages/ansible/modules/clustering/openshift/__pycache__ 128 /usr/local/lib/python3.7/site-packages/ansible/modules/clustering/openshift 792 /usr/local/lib/python3.7/site-packages/ansible/modules/clustering 8 /usr/local/lib/python3.7/site-packages/ansible/modules/__pycache__ 24 /usr/local/lib/python3.7/site-packages/ansible/modules/storage/hpe3par/__pycache__ 48 /usr/local/lib/python3.7/site-packages/ansible/modules/storage/hpe3par 2736 /usr/local/lib/python3.7/site-packages/ansible/modules/storage/netapp/__pycache__ 6104 /usr/local/lib/python3.7/site-packages/ansible/modules/storage/netapp 72 /usr/local/lib/python3.7/site-packages/ansible/modules/storage/glusterfs/__pycache__ 144 /usr/local/lib/python3.7/site-packages/ansible/modules/storage/glusterfs 24 /usr/local/lib/python3.7/site-packages/ansible/modules/storage/vexata/__pycache__ 40 /usr/local/lib/python3.7/site-packages/ansible/modules/storage/vexata 456 /usr/local/lib/python3.7/site-packages/ansible/modules/storage/purestorage/__pycache__ 968 /usr/local/lib/python3.7/site-packages/ansible/modules/storage/purestorage 8 /usr/local/lib/python3.7/site-packages/ansible/modules/storage/__pycache__ 56 /usr/local/lib/python3.7/site-packages/ansible/modules/storage/ibm/__pycache__ 112 /usr/local/lib/python3.7/site-packages/ansible/modules/storage/ibm 80 /usr/local/lib/python3.7/site-packages/ansible/modules/storage/zfs/__pycache__ 160 /usr/local/lib/python3.7/site-packages/ansible/modules/storage/zfs 88 /usr/local/lib/python3.7/site-packages/ansible/modules/storage/infinidat/__pycache__ 176 /usr/local/lib/python3.7/site-packages/ansible/modules/storage/infinidat 16 /usr/local/lib/python3.7/site-packages/ansible/modules/storage/emc/__pycache__ 32 /usr/local/lib/python3.7/site-packages/ansible/modules/storage/emc 7792 /usr/local/lib/python3.7/site-packages/ansible/modules/storage 200 /usr/local/lib/python3.7/site-packages/ansible/modules/utilities/logic/__pycache__ 408 /usr/local/lib/python3.7/site-packages/ansible/modules/utilities/logic 8 /usr/local/lib/python3.7/site-packages/ansible/modules/utilities/__pycache__ 32 /usr/local/lib/python3.7/site-packages/ansible/modules/utilities/helper/__pycache__ 56 /usr/local/lib/python3.7/site-packages/ansible/modules/utilities/helper 472 /usr/local/lib/python3.7/site-packages/ansible/modules/utilities 1720 /usr/local/lib/python3.7/site-packages/ansible/modules/system/__pycache__ 3984 /usr/local/lib/python3.7/site-packages/ansible/modules/system 24 /usr/local/lib/python3.7/site-packages/ansible/modules/inventory/__pycache__ 40 /usr/local/lib/python3.7/site-packages/ansible/modules/inventory 96 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/alicloud/__pycache__ 192 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/alicloud 72 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/webfaction/__pycache__ 144 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/webfaction 432 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/misc/__pycache__ 952 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/misc 856 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/openstack/__pycache__ 1896 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/openstack 72 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/podman/__pycache__ 144 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/podman 912 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/docker/__pycache__ 2056 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/docker 40 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/ovh/__pycache__ 88 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/ovh 56 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/huawei/__pycache__ 112 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/huawei 32 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/softlayer/__pycache__ 56 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/softlayer 5224 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/amazon/__pycache__ 11664 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/amazon 112 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/profitbricks/__pycache__ 248 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/profitbricks 112 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/memset/__pycache__ 248 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/memset 16 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/heroku/__pycache__ 24 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/heroku 3800 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/azure/__pycache__ 8360 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/azure 56 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/linode/__pycache__ 136 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/linode 432 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/rackspace/__pycache__ 968 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/rackspace 48 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/pubnub/__pycache__ 96 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/pubnub 3632 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/google/__pycache__ 7832 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/google 24 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/oracle/__pycache__ 40 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/oracle 1200 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/cloudstack/__pycache__ 2528 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/cloudstack 416 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/centurylink/__pycache__ 904 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/centurylink 8 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/__pycache__ 48 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/atomic/__pycache__ 88 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/atomic 296 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/digital_ocean/__pycache__ 584 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/digital_ocean 88 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/cloudscale/__pycache__ 192 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/cloudscale 192 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/oneandone/__pycache__ 456 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/oneandone 96 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/lxc/__pycache__ 208 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/lxc 72 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/lxd/__pycache__ 152 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/lxd 88 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/spotinst/__pycache__ 192 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/spotinst 88 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/smartos/__pycache__ 184 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/smartos 136 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/kubevirt/__pycache__ 272 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/kubevirt 216 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/scaleway/__pycache__ 448 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/scaleway 504 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/vultr/__pycache__ 1032 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/vultr 144 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/xenserver/__pycache__ 376 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/xenserver 32 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/online/__pycache__ 56 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/online 56 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/dimensiondata/__pycache__ 120 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/dimensiondata 1152 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/ovirt/__pycache__ 2480 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/ovirt 192 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/hcloud/__pycache__ 392 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/hcloud 64 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/packet/__pycache__ 136 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/packet 104 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/univention/__pycache__ 232 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/univention 184 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/opennebula/__pycache__ 408 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/opennebula 2504 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/vmware/__pycache__ 5696 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud/vmware 52400 /usr/local/lib/python3.7/site-packages/ansible/modules/cloud 576 /usr/local/lib/python3.7/site-packages/ansible/modules/files/__pycache__ 1288 /usr/local/lib/python3.7/site-packages/ansible/modules/files 120 /usr/local/lib/python3.7/site-packages/ansible/modules/commands/__pycache__ 240 /usr/local/lib/python3.7/site-packages/ansible/modules/commands 1304 /usr/local/lib/python3.7/site-packages/ansible/modules/windows/__pycache__ 4896 /usr/local/lib/python3.7/site-packages/ansible/modules/windows 688 /usr/local/lib/python3.7/site-packages/ansible/modules/monitoring/__pycache__ 384 /usr/local/lib/python3.7/site-packages/ansible/modules/monitoring/zabbix/__pycache__ 912 /usr/local/lib/python3.7/site-packages/ansible/modules/monitoring/zabbix 2456 /usr/local/lib/python3.7/site-packages/ansible/modules/monitoring 96 /usr/local/lib/python3.7/site-packages/ansible/modules/net_tools/basics/__pycache__ 200 /usr/local/lib/python3.7/site-packages/ansible/modules/net_tools/basics 48 /usr/local/lib/python3.7/site-packages/ansible/modules/net_tools/exoscale/__pycache__ 88 /usr/local/lib/python3.7/site-packages/ansible/modules/net_tools/exoscale 128 /usr/local/lib/python3.7/site-packages/ansible/modules/net_tools/netbox/__pycache__ 264 /usr/local/lib/python3.7/site-packages/ansible/modules/net_tools/netbox 288 /usr/local/lib/python3.7/site-packages/ansible/modules/net_tools/nios/__pycache__ 584 /usr/local/lib/python3.7/site-packages/ansible/modules/net_tools/nios 48 /usr/local/lib/python3.7/site-packages/ansible/modules/net_tools/ldap/__pycache__ 96 /usr/local/lib/python3.7/site-packages/ansible/modules/net_tools/ldap 352 /usr/local/lib/python3.7/site-packages/ansible/modules/net_tools/__pycache__ 40 /usr/local/lib/python3.7/site-packages/ansible/modules/net_tools/infinity/__pycache__ 88 /usr/local/lib/python3.7/site-packages/ansible/modules/net_tools/infinity 2096 /usr/local/lib/python3.7/site-packages/ansible/modules/net_tools 168 /usr/local/lib/python3.7/site-packages/ansible/modules/messaging/rabbitmq/__pycache__ 344 /usr/local/lib/python3.7/site-packages/ansible/modules/messaging/rabbitmq 8 /usr/local/lib/python3.7/site-packages/ansible/modules/messaging/__pycache__ 352 /usr/local/lib/python3.7/site-packages/ansible/modules/messaging 440 /usr/local/lib/python3.7/site-packages/ansible/modules/source_control/__pycache__ 72 /usr/local/lib/python3.7/site-packages/ansible/modules/source_control/bitbucket/__pycache__ 160 /usr/local/lib/python3.7/site-packages/ansible/modules/source_control/bitbucket 1112 /usr/local/lib/python3.7/site-packages/ansible/modules/source_control 160408 /usr/local/lib/python3.7/site-packages/ansible/modules 191840 /usr/local/lib/python3.7/site-packages/ansible 56 /usr/local/lib/python3.7/site-packages/wrapt-1.11.2.dist-info 240 /usr/local/lib/python3.7/site-packages/pip/_internal/utils/__pycache__ 512 /usr/local/lib/python3.7/site-packages/pip/_internal/utils 48 /usr/local/lib/python3.7/site-packages/pip/_internal/models/__pycache__ 96 /usr/local/lib/python3.7/site-packages/pip/_internal/models 320 /usr/local/lib/python3.7/site-packages/pip/_internal/__pycache__ 120 /usr/local/lib/python3.7/site-packages/pip/_internal/cli/__pycache__ 264 /usr/local/lib/python3.7/site-packages/pip/_internal/cli 56 /usr/local/lib/python3.7/site-packages/pip/_internal/operations/__pycache__ 136 /usr/local/lib/python3.7/site-packages/pip/_internal/operations 168 /usr/local/lib/python3.7/site-packages/pip/_internal/req/__pycache__ 384 /usr/local/lib/python3.7/site-packages/pip/_internal/req 96 /usr/local/lib/python3.7/site-packages/pip/_internal/vcs/__pycache__ 200 /usr/local/lib/python3.7/site-packages/pip/_internal/vcs 192 /usr/local/lib/python3.7/site-packages/pip/_internal/commands/__pycache__ 400 /usr/local/lib/python3.7/site-packages/pip/_internal/commands 2752 /usr/local/lib/python3.7/site-packages/pip/_internal 136 /usr/local/lib/python3.7/site-packages/pip/_vendor/packaging/__pycache__ 296 /usr/local/lib/python3.7/site-packages/pip/_vendor/packaging 64 /usr/local/lib/python3.7/site-packages/pip/_vendor/pytoml/__pycache__ 128 /usr/local/lib/python3.7/site-packages/pip/_vendor/pytoml 72 /usr/local/lib/python3.7/site-packages/pip/_vendor/msgpack/__pycache__ 168 /usr/local/lib/python3.7/site-packages/pip/_vendor/msgpack 912 /usr/local/lib/python3.7/site-packages/pip/_vendor/chardet/__pycache__ 16 /usr/local/lib/python3.7/site-packages/pip/_vendor/chardet/cli/__pycache__ 32 /usr/local/lib/python3.7/site-packages/pip/_vendor/chardet/cli 1816 /usr/local/lib/python3.7/site-packages/pip/_vendor/chardet 64 /usr/local/lib/python3.7/site-packages/pip/_vendor/webencodings/__pycache__ 152 /usr/local/lib/python3.7/site-packages/pip/_vendor/webencodings 40 /usr/local/lib/python3.7/site-packages/pip/_vendor/progress/__pycache__ 80 /usr/local/lib/python3.7/site-packages/pip/_vendor/progress 96 /usr/local/lib/python3.7/site-packages/pip/_vendor/pep517/__pycache__ 200 /usr/local/lib/python3.7/site-packages/pip/_vendor/pep517 224 /usr/local/lib/python3.7/site-packages/pip/_vendor/distlib/_backport/__pycache__ 544 /usr/local/lib/python3.7/site-packages/pip/_vendor/distlib/_backport 616 /usr/local/lib/python3.7/site-packages/pip/_vendor/distlib/__pycache__ 2712 /usr/local/lib/python3.7/site-packages/pip/_vendor/distlib 64 /usr/local/lib/python3.7/site-packages/pip/_vendor/colorama/__pycache__ 144 /usr/local/lib/python3.7/site-packages/pip/_vendor/colorama 72 /usr/local/lib/python3.7/site-packages/pip/_vendor/lockfile/__pycache__ 152 /usr/local/lib/python3.7/site-packages/pip/_vendor/lockfile 104 /usr/local/lib/python3.7/site-packages/pip/_vendor/cachecontrol/__pycache__ 24 /usr/local/lib/python3.7/site-packages/pip/_vendor/cachecontrol/caches/__pycache__ 56 /usr/local/lib/python3.7/site-packages/pip/_vendor/cachecontrol/caches 280 /usr/local/lib/python3.7/site-packages/pip/_vendor/cachecontrol 456 /usr/local/lib/python3.7/site-packages/pip/_vendor/idna/__pycache__ 992 /usr/local/lib/python3.7/site-packages/pip/_vendor/idna 776 /usr/local/lib/python3.7/site-packages/pip/_vendor/__pycache__ 368 /usr/local/lib/python3.7/site-packages/pip/_vendor/requests/__pycache__ 792 /usr/local/lib/python3.7/site-packages/pip/_vendor/requests 96 /usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/filters/__pycache__ 216 /usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/filters 64 /usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__ 144 /usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/treewalkers 104 /usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__ 232 /usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/treebuilders 536 /usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/__pycache__ 32 /usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/_trie/__pycache__ 64 /usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/_trie 24 /usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__ 48 /usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib/treeadapters 1952 /usr/local/lib/python3.7/site-packages/pip/_vendor/html5lib 24 /usr/local/lib/python3.7/site-packages/pip/_vendor/certifi/__pycache__ 608 /usr/local/lib/python3.7/site-packages/pip/_vendor/certifi 144 /usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/util/__pycache__ 312 /usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/util 240 /usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/__pycache__ 136 /usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/contrib/__pycache__ 48 /usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__ 112 /usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/contrib/_securetransport 408 /usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/contrib 56 /usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/packages/__pycache__ 16 /usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__ 24 /usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/packages/backports 16 /usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__ 40 /usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname 192 /usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3/packages 1440 /usr/local/lib/python3.7/site-packages/pip/_vendor/urllib3 208 /usr/local/lib/python3.7/site-packages/pip/_vendor/pkg_resources/__pycache__ 432 /usr/local/lib/python3.7/site-packages/pip/_vendor/pkg_resources 14000 /usr/local/lib/python3.7/site-packages/pip/_vendor 16 /usr/local/lib/python3.7/site-packages/pip/__pycache__ 16784 /usr/local/lib/python3.7/site-packages/pip 1424 /usr/local/lib/python3.7/site-packages/tornado/test/__pycache__ 8 /usr/local/lib/python3.7/site-packages/tornado/test/csv_translations 8 /usr/local/lib/python3.7/site-packages/tornado/test/static/dir 40 /usr/local/lib/python3.7/site-packages/tornado/test/static 8 /usr/local/lib/python3.7/site-packages/tornado/test/templates 16 /usr/local/lib/python3.7/site-packages/tornado/test/gettext_translations/fr_FR/LC_MESSAGES 16 /usr/local/lib/python3.7/site-packages/tornado/test/gettext_translations/fr_FR 16 /usr/local/lib/python3.7/site-packages/tornado/test/gettext_translations 2880 /usr/local/lib/python3.7/site-packages/tornado/test 80 /usr/local/lib/python3.7/site-packages/tornado/platform/__pycache__ 160 /usr/local/lib/python3.7/site-packages/tornado/platform 1480 /usr/local/lib/python3.7/site-packages/tornado/__pycache__ 6336 /usr/local/lib/python3.7/site-packages/tornado 240 /usr/local/lib/python3.7/site-packages/pytz-2019.3.dist-info 56 /usr/local/lib/python3.7/site-packages/smmap/test/__pycache__ 120 /usr/local/lib/python3.7/site-packages/smmap/test 88 /usr/local/lib/python3.7/site-packages/smmap/__pycache__ 304 /usr/local/lib/python3.7/site-packages/smmap 872 /usr/local/lib/python3.7/site-packages/asn1crypto/__pycache__ 16 /usr/local/lib/python3.7/site-packages/asn1crypto/_perf/__pycache__ 24 /usr/local/lib/python3.7/site-packages/asn1crypto/_perf 1944 /usr/local/lib/python3.7/site-packages/asn1crypto 56 /usr/local/lib/python3.7/site-packages/asn1crypto-0.24.0.dist-info 24 /usr/local/lib/python3.7/site-packages/certifi/__pycache__ 600 /usr/local/lib/python3.7/site-packages/certifi 48 /usr/local/lib/python3.7/site-packages/PyYAML-5.1.1.dist-info 72 /usr/local/lib/python3.7/site-packages/stix2-1.2.1.dist-info 64 /usr/local/lib/python3.7/site-packages/idna-2.8.dist-info 48 /usr/local/lib/python3.7/site-packages/oyaml-0.9.dist-info 24 /usr/local/lib/python3.7/site-packages/ifconfigparser/__pycache__ 56 /usr/local/lib/python3.7/site-packages/ifconfigparser 64 /usr/local/lib/python3.7/site-packages/python_dateutil-2.8.0.dist-info 72 /usr/local/lib/python3.7/site-packages/bcrypt-3.1.7.dist-info 112 /usr/local/lib/python3.7/site-packages/nacl/__pycache__ 224 /usr/local/lib/python3.7/site-packages/nacl/bindings/__pycache__ 504 /usr/local/lib/python3.7/site-packages/nacl/bindings 48 /usr/local/lib/python3.7/site-packages/nacl/pwhash/__pycache__ 112 /usr/local/lib/python3.7/site-packages/nacl/pwhash 2320 /usr/local/lib/python3.7/site-packages/nacl 72 /usr/local/lib/python3.7/site-packages/mkdocs-1.0.4.dist-info 64 /usr/local/lib/python3.7/site-packages/setuptools-41.0.1-py3.7.egg-info 128 /usr/local/lib/python3.7/site-packages/urllib3-1.25.3.dist-info 336 /usr/local/lib/python3.7/site-packages/yaml/__pycache__ 824 /usr/local/lib/python3.7/site-packages/yaml 72 /usr/local/lib/python3.7/site-packages/mkdocs/config/__pycache__ 152 /usr/local/lib/python3.7/site-packages/mkdocs/config 96 /usr/local/lib/python3.7/site-packages/mkdocs/tests/config/__pycache__ 192 /usr/local/lib/python3.7/site-packages/mkdocs/tests/config 32 /usr/local/lib/python3.7/site-packages/mkdocs/tests/integration/subpages/docs/sub1 88 /usr/local/lib/python3.7/site-packages/mkdocs/tests/integration/subpages/docs 88 /usr/local/lib/python3.7/site-packages/mkdocs/tests/integration/subpages 24 /usr/local/lib/python3.7/site-packages/mkdocs/tests/integration/complicated_config/documentation 8 /usr/local/lib/python3.7/site-packages/mkdocs/tests/integration/complicated_config/theme_tweaks 32 /usr/local/lib/python3.7/site-packages/mkdocs/tests/integration/complicated_config 120 /usr/local/lib/python3.7/site-packages/mkdocs/tests/integration 40 /usr/local/lib/python3.7/site-packages/mkdocs/tests/utils/__pycache__ 88 /usr/local/lib/python3.7/site-packages/mkdocs/tests/utils 200 /usr/local/lib/python3.7/site-packages/mkdocs/tests/__pycache__ 152 /usr/local/lib/python3.7/site-packages/mkdocs/tests/structure/__pycache__ 336 /usr/local/lib/python3.7/site-packages/mkdocs/tests/structure 1144 /usr/local/lib/python3.7/site-packages/mkdocs/tests 56 /usr/local/lib/python3.7/site-packages/mkdocs/utils/__pycache__ 112 /usr/local/lib/python3.7/site-packages/mkdocs/utils 48 /usr/local/lib/python3.7/site-packages/mkdocs/__pycache__ 8 /usr/local/lib/python3.7/site-packages/mkdocs/contrib/__pycache__ 24 /usr/local/lib/python3.7/site-packages/mkdocs/contrib/search/__pycache__ 184 /usr/local/lib/python3.7/site-packages/mkdocs/contrib/search/templates/search 184 /usr/local/lib/python3.7/site-packages/mkdocs/contrib/search/templates 664 /usr/local/lib/python3.7/site-packages/mkdocs/contrib/search/lunr-language 904 /usr/local/lib/python3.7/site-packages/mkdocs/contrib/search 912 /usr/local/lib/python3.7/site-packages/mkdocs/contrib 8 /usr/local/lib/python3.7/site-packages/mkdocs/templates 48 /usr/local/lib/python3.7/site-packages/mkdocs/commands/__pycache__ 104 /usr/local/lib/python3.7/site-packages/mkdocs/commands 80 /usr/local/lib/python3.7/site-packages/mkdocs/structure/__pycache__ 152 /usr/local/lib/python3.7/site-packages/mkdocs/structure 8 /usr/local/lib/python3.7/site-packages/mkdocs/themes/__pycache__ 184 /usr/local/lib/python3.7/site-packages/mkdocs/themes/readthedocs/css 200 /usr/local/lib/python3.7/site-packages/mkdocs/themes/readthedocs/js 8 /usr/local/lib/python3.7/site-packages/mkdocs/themes/readthedocs/__pycache__ 8 /usr/local/lib/python3.7/site-packages/mkdocs/themes/readthedocs/img 720 /usr/local/lib/python3.7/site-packages/mkdocs/themes/readthedocs/fonts 1216 /usr/local/lib/python3.7/site-packages/mkdocs/themes/readthedocs 296 /usr/local/lib/python3.7/site-packages/mkdocs/themes/mkdocs/css 256 /usr/local/lib/python3.7/site-packages/mkdocs/themes/mkdocs/js 8 /usr/local/lib/python3.7/site-packages/mkdocs/themes/mkdocs/__pycache__ 16 /usr/local/lib/python3.7/site-packages/mkdocs/themes/mkdocs/img 2312 /usr/local/lib/python3.7/site-packages/mkdocs/themes/mkdocs/fonts 2976 /usr/local/lib/python3.7/site-packages/mkdocs/themes/mkdocs 4200 /usr/local/lib/python3.7/site-packages/mkdocs/themes 6880 /usr/local/lib/python3.7/site-packages/mkdocs 48 /usr/local/lib/python3.7/site-packages/six-1.12.0.dist-info 144 /usr/local/lib/python3.7/site-packages/urllib3/util/__pycache__ 320 /usr/local/lib/python3.7/site-packages/urllib3/util 240 /usr/local/lib/python3.7/site-packages/urllib3/__pycache__ 136 /usr/local/lib/python3.7/site-packages/urllib3/contrib/__pycache__ 48 /usr/local/lib/python3.7/site-packages/urllib3/contrib/_securetransport/__pycache__ 112 /usr/local/lib/python3.7/site-packages/urllib3/contrib/_securetransport 424 /usr/local/lib/python3.7/site-packages/urllib3/contrib 56 /usr/local/lib/python3.7/site-packages/urllib3/packages/__pycache__ 16 /usr/local/lib/python3.7/site-packages/urllib3/packages/backports/__pycache__ 24 /usr/local/lib/python3.7/site-packages/urllib3/packages/backports 200 /usr/local/lib/python3.7/site-packages/urllib3/packages/rfc3986/__pycache__ 432 /usr/local/lib/python3.7/site-packages/urllib3/packages/rfc3986 16 /usr/local/lib/python3.7/site-packages/urllib3/packages/ssl_match_hostname/__pycache__ 40 /usr/local/lib/python3.7/site-packages/urllib3/packages/ssl_match_hostname 624 /usr/local/lib/python3.7/site-packages/urllib3/packages 1904 /usr/local/lib/python3.7/site-packages/urllib3 120 /usr/local/lib/python3.7/site-packages/paramiko-2.6.0.dist-info 56 /usr/local/lib/python3.7/site-packages/cffi-1.12.3.dist-info 136 /usr/local/lib/python3.7/site-packages/setuptools/_vendor/packaging/__pycache__ 296 /usr/local/lib/python3.7/site-packages/setuptools/_vendor/packaging 456 /usr/local/lib/python3.7/site-packages/setuptools/_vendor/__pycache__ 1272 /usr/local/lib/python3.7/site-packages/setuptools/_vendor 552 /usr/local/lib/python3.7/site-packages/setuptools/__pycache__ 472 /usr/local/lib/python3.7/site-packages/setuptools/command/__pycache__ 1048 /usr/local/lib/python3.7/site-packages/setuptools/command 8 /usr/local/lib/python3.7/site-packages/setuptools/extern/__pycache__ 16 /usr/local/lib/python3.7/site-packages/setuptools/extern 4336 /usr/local/lib/python3.7/site-packages/setuptools 88 /usr/local/lib/python3.7/site-packages/isort-4.3.21.dist-info 136 /usr/local/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__pycache__ 296 /usr/local/lib/python3.7/site-packages/pkg_resources/_vendor/packaging 504 /usr/local/lib/python3.7/site-packages/pkg_resources/_vendor/__pycache__ 1376 /usr/local/lib/python3.7/site-packages/pkg_resources/_vendor 208 /usr/local/lib/python3.7/site-packages/pkg_resources/__pycache__ 8 /usr/local/lib/python3.7/site-packages/pkg_resources/extern/__pycache__ 16 /usr/local/lib/python3.7/site-packages/pkg_resources/extern 1824 /usr/local/lib/python3.7/site-packages/pkg_resources 104 /usr/local/lib/python3.7/site-packages/bandit-1.6.2.dist-info 88 /usr/local/lib/python3.7/site-packages/suds/transport/__pycache__ 136 /usr/local/lib/python3.7/site-packages/suds/transport 112 /usr/local/lib/python3.7/site-packages/suds/umx/__pycache__ 184 /usr/local/lib/python3.7/site-packages/suds/umx 336 /usr/local/lib/python3.7/site-packages/suds/sax/__pycache__ 512 /usr/local/lib/python3.7/site-packages/suds/sax 896 /usr/local/lib/python3.7/site-packages/suds/__pycache__ 176 /usr/local/lib/python3.7/site-packages/suds/mx/__pycache__ 280 /usr/local/lib/python3.7/site-packages/suds/mx 144 /usr/local/lib/python3.7/site-packages/suds/bindings/__pycache__ 232 /usr/local/lib/python3.7/site-packages/suds/bindings 392 /usr/local/lib/python3.7/site-packages/suds/xsd/__pycache__ 576 /usr/local/lib/python3.7/site-packages/suds/xsd 3272 /usr/local/lib/python3.7/site-packages/suds 56 /usr/local/lib/python3.7/site-packages/requests-2.22.0.dist-info 304 /usr/local/lib/python3.7/site-packages/lxml/isoschematron/resources/xsl/iso-schematron-xslt1 328 /usr/local/lib/python3.7/site-packages/lxml/isoschematron/resources/xsl 40 /usr/local/lib/python3.7/site-packages/lxml/isoschematron/resources/rng 368 /usr/local/lib/python3.7/site-packages/lxml/isoschematron/resources 24 /usr/local/lib/python3.7/site-packages/lxml/isoschematron/__pycache__ 424 /usr/local/lib/python3.7/site-packages/lxml/isoschematron 1024 /usr/local/lib/python3.7/site-packages/lxml/includes/libxml 312 /usr/local/lib/python3.7/site-packages/lxml/includes/libxslt 24 /usr/local/lib/python3.7/site-packages/lxml/includes/libexslt 8 /usr/local/lib/python3.7/site-packages/lxml/includes/__pycache__ 1728 /usr/local/lib/python3.7/site-packages/lxml/includes 304 /usr/local/lib/python3.7/site-packages/lxml/html/__pycache__ 3656 /usr/local/lib/python3.7/site-packages/lxml/html 120 /usr/local/lib/python3.7/site-packages/lxml/__pycache__ 44816 /usr/local/lib/python3.7/site-packages/lxml 16 /usr/local/lib/python3.7/site-packages/pbr/cmd/__pycache__ 24 /usr/local/lib/python3.7/site-packages/pbr/cmd 288 /usr/local/lib/python3.7/site-packages/pbr/tests/__pycache__ 40 /usr/local/lib/python3.7/site-packages/pbr/tests/testpackage/pbr_testpackage/__pycache__ 0 /usr/local/lib/python3.7/site-packages/pbr/tests/testpackage/pbr_testpackage/package_data 72 /usr/local/lib/python3.7/site-packages/pbr/tests/testpackage/pbr_testpackage 8 /usr/local/lib/python3.7/site-packages/pbr/tests/testpackage/__pycache__ 0 /usr/local/lib/python3.7/site-packages/pbr/tests/testpackage/data_files 8 /usr/local/lib/python3.7/site-packages/pbr/tests/testpackage/doc/source/__pycache__ 40 /usr/local/lib/python3.7/site-packages/pbr/tests/testpackage/doc/source 40 /usr/local/lib/python3.7/site-packages/pbr/tests/testpackage/doc 8 /usr/local/lib/python3.7/site-packages/pbr/tests/testpackage/src 192 /usr/local/lib/python3.7/site-packages/pbr/tests/testpackage 800 /usr/local/lib/python3.7/site-packages/pbr/tests 232 /usr/local/lib/python3.7/site-packages/pbr/__pycache__ 48 /usr/local/lib/python3.7/site-packages/pbr/hooks/__pycache__ 104 /usr/local/lib/python3.7/site-packages/pbr/hooks 1432 /usr/local/lib/python3.7/site-packages/pbr 80 /usr/local/lib/python3.7/site-packages/gitdb/test/__pycache__ 168 /usr/local/lib/python3.7/site-packages/gitdb/test 24 /usr/local/lib/python3.7/site-packages/gitdb/utils/__pycache__ 40 /usr/local/lib/python3.7/site-packages/gitdb/utils 224 /usr/local/lib/python3.7/site-packages/gitdb/__pycache__ 88 /usr/local/lib/python3.7/site-packages/gitdb/db/__pycache__ 176 /usr/local/lib/python3.7/site-packages/gitdb/db 880 /usr/local/lib/python3.7/site-packages/gitdb 48 /usr/local/lib/python3.7/site-packages/ifconfig_parser-0.0.5.dist-info 456 /usr/local/lib/python3.7/site-packages/git/test/__pycache__ 40 /usr/local/lib/python3.7/site-packages/git/test/lib/__pycache__ 88 /usr/local/lib/python3.7/site-packages/git/test/lib 8 /usr/local/lib/python3.7/site-packages/git/test/fixtures/__pycache__ 1952 /usr/local/lib/python3.7/site-packages/git/test/fixtures 40 /usr/local/lib/python3.7/site-packages/git/test/performance/__pycache__ 80 /usr/local/lib/python3.7/site-packages/git/test/performance 3248 /usr/local/lib/python3.7/site-packages/git/test 112 /usr/local/lib/python3.7/site-packages/git/objects/submodule/__pycache__ 280 /usr/local/lib/python3.7/site-packages/git/objects/submodule 136 /usr/local/lib/python3.7/site-packages/git/objects/__pycache__ 576 /usr/local/lib/python3.7/site-packages/git/objects 304 /usr/local/lib/python3.7/site-packages/git/__pycache__ 112 /usr/local/lib/python3.7/site-packages/git/refs/__pycache__ 256 /usr/local/lib/python3.7/site-packages/git/refs 136 /usr/local/lib/python3.7/site-packages/git/index/__pycache__ 304 /usr/local/lib/python3.7/site-packages/git/index 96 /usr/local/lib/python3.7/site-packages/git/repo/__pycache__ 216 /usr/local/lib/python3.7/site-packages/git/repo 5280 /usr/local/lib/python3.7/site-packages/git 24 /usr/local/lib/python3.7/site-packages/dateutil/zoneinfo/__pycache__ 352 /usr/local/lib/python3.7/site-packages/dateutil/zoneinfo 168 /usr/local/lib/python3.7/site-packages/dateutil/__pycache__ 112 /usr/local/lib/python3.7/site-packages/dateutil/parser/__pycache__ 272 /usr/local/lib/python3.7/site-packages/dateutil/parser 160 /usr/local/lib/python3.7/site-packages/dateutil/tz/__pycache__ 368 /usr/local/lib/python3.7/site-packages/dateutil/tz 1400 /usr/local/lib/python3.7/site-packages/dateutil 16 /usr/local/lib/python3.7/site-packages/typed_ast/tests/__pycache__ 32 /usr/local/lib/python3.7/site-packages/typed_ast/tests 88 /usr/local/lib/python3.7/site-packages/typed_ast/__pycache__ 1336 /usr/local/lib/python3.7/site-packages/typed_ast 56 /usr/local/lib/python3.7/site-packages/wheel-0.33.4-py3.7.egg-info 152 /usr/local/lib/python3.7/site-packages/astroid-2.2.5.dist-info 24 /usr/local/lib/python3.7/site-packages/stevedore/example2/__pycache__ 40 /usr/local/lib/python3.7/site-packages/stevedore/example2 48 /usr/local/lib/python3.7/site-packages/stevedore/example/__pycache__ 88 /usr/local/lib/python3.7/site-packages/stevedore/example 152 /usr/local/lib/python3.7/site-packages/stevedore/tests/__pycache__ 296 /usr/local/lib/python3.7/site-packages/stevedore/tests 120 /usr/local/lib/python3.7/site-packages/stevedore/__pycache__ 672 /usr/local/lib/python3.7/site-packages/stevedore 80 /usr/local/lib/python3.7/site-packages/lazy_object_proxy/__pycache__ 232 /usr/local/lib/python3.7/site-packages/lazy_object_proxy 361880 /usr/local/lib/python3.7/site-packages 361880 /usr/local/lib/python3.7 0 /usr/local/lib/python2.7/site-packages 0 /usr/local/lib/python2.7 361880 /usr/local/lib 0 /usr/local/opt 0 /usr/local/Frameworks/Python.framework/Versions 0 /usr/local/Frameworks/Python.framework 0 /usr/local/Frameworks 187224 /usr/local/Cellar/kubernetes-helm/2.14.3/bin 8 /usr/local/Cellar/kubernetes-helm/2.14.3/.brew 120 /usr/local/Cellar/kubernetes-helm/2.14.3/etc/bash_completion.d 120 /usr/local/Cellar/kubernetes-helm/2.14.3/etc 360 /usr/local/Cellar/kubernetes-helm/2.14.3/share/man/man1 360 /usr/local/Cellar/kubernetes-helm/2.14.3/share/man 128 /usr/local/Cellar/kubernetes-helm/2.14.3/share/zsh/site-functions 128 /usr/local/Cellar/kubernetes-helm/2.14.3/share/zsh 488 /usr/local/Cellar/kubernetes-helm/2.14.3/share 187880 /usr/local/Cellar/kubernetes-helm/2.14.3 187880 /usr/local/Cellar/kubernetes-helm 112 /usr/local/Cellar/picocom/3.1/bin 8 /usr/local/Cellar/picocom/3.1/.brew 64 /usr/local/Cellar/picocom/3.1/share/man/man1 64 /usr/local/Cellar/picocom/3.1/share/man 64 /usr/local/Cellar/picocom/3.1/share 264 /usr/local/Cellar/picocom/3.1 264 /usr/local/Cellar/picocom 280 /usr/local/Cellar/gdbm/1.18.1/bin 8 /usr/local/Cellar/gdbm/1.18.1/.brew 24 /usr/local/Cellar/gdbm/1.18.1/include 256 /usr/local/Cellar/gdbm/1.18.1/lib 40 /usr/local/Cellar/gdbm/1.18.1/share/man/man3 48 /usr/local/Cellar/gdbm/1.18.1/share/man/man1 88 /usr/local/Cellar/gdbm/1.18.1/share/man 280 /usr/local/Cellar/gdbm/1.18.1/share/info 368 /usr/local/Cellar/gdbm/1.18.1/share 1272 /usr/local/Cellar/gdbm/1.18.1 1272 /usr/local/Cellar/gdbm 32 /usr/local/Cellar/python/3.7.3/bin 32 /usr/local/Cellar/python/3.7.3/.brew 8 /usr/local/Cellar/python/3.7.3/IDLE 3.app/Contents/MacOS 352 /usr/local/Cellar/python/3.7.3/IDLE 3.app/Contents/Resources 376 /usr/local/Cellar/python/3.7.3/IDLE 3.app/Contents 376 /usr/local/Cellar/python/3.7.3/IDLE 3.app 0 /usr/local/Cellar/python/3.7.3/libexec/bin 48 /usr/local/Cellar/python/3.7.3/libexec/wheel/wheel/cli 160 /usr/local/Cellar/python/3.7.3/libexec/wheel/wheel 56 /usr/local/Cellar/python/3.7.3/libexec/wheel/wheel.egg-info 48 /usr/local/Cellar/python/3.7.3/libexec/wheel/build/lib/wheel/cli 160 /usr/local/Cellar/python/3.7.3/libexec/wheel/build/lib/wheel 160 /usr/local/Cellar/python/3.7.3/libexec/wheel/build/lib 160 /usr/local/Cellar/python/3.7.3/libexec/wheel/build 432 /usr/local/Cellar/python/3.7.3/libexec/wheel 96 /usr/local/Cellar/python/3.7.3/libexec/pip/docs/man/commands 104 /usr/local/Cellar/python/3.7.3/libexec/pip/docs/man 72 /usr/local/Cellar/python/3.7.3/libexec/pip/docs/html/development 184 /usr/local/Cellar/python/3.7.3/libexec/pip/docs/html/reference 392 /usr/local/Cellar/python/3.7.3/libexec/pip/docs/html 504 /usr/local/Cellar/python/3.7.3/libexec/pip/docs 272 /usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_internal/utils 48 /usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_internal/models 144 /usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_internal/cli 80 /usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_internal/operations 216 /usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_internal/req 104 /usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_internal/vcs 208 /usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_internal/commands 1512 /usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_internal 160 /usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/packaging 64 /usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/pytoml 96 /usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/msgpack 16 /usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/chardet/cli 888 /usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/chardet 88 /usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/webencodings 40 /usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/progress 104 /usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/pep517 320 /usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/distlib/_backport 1872 /usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/distlib 80 /usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/colorama 80 /usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/lockfile 32 /usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/cachecontrol/caches 152 /usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/cachecontrol 536 /usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/idna 424 /usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/requests 120 /usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/html5lib/filters 80 /usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/html5lib/treewalkers 128 /usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/html5lib/treebuilders 32 /usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/html5lib/_trie 24 /usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/html5lib/treeadapters 1096 /usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/html5lib 584 /usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/certifi 168 /usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/urllib3/util 64 /usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/urllib3/contrib/_securetransport 224 /usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/urllib3/contrib 8 /usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/urllib3/packages/backports 24 /usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/urllib3/packages/ssl_match_hostname 104 /usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/urllib3/packages 784 /usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/urllib3 224 /usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor/pkg_resources 8152 /usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip/_vendor 9680 /usr/local/Cellar/python/3.7.3/libexec/pip/build/lib/pip 9680 /usr/local/Cellar/python/3.7.3/libexec/pip/build/lib 9680 /usr/local/Cellar/python/3.7.3/libexec/pip/build 72 /usr/local/Cellar/python/3.7.3/libexec/pip/src/pip.egg-info 272 /usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_internal/utils 48 /usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_internal/models 144 /usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_internal/cli 80 /usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_internal/operations 216 /usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_internal/req 104 /usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_internal/vcs 208 /usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_internal/commands 1512 /usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_internal 200 /usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/packaging 72 /usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/pytoml 104 /usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/msgpack 16 /usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/chardet/cli 944 /usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/chardet 96 /usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/webencodings 48 /usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/progress 112 /usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/pep517 320 /usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/distlib/_backport 1904 /usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/distlib 88 /usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/colorama 88 /usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/lockfile 32 /usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/cachecontrol/caches 160 /usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/cachecontrol 544 /usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/idna 432 /usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/requests 120 /usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/html5lib/filters 80 /usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/html5lib/treewalkers 128 /usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/html5lib/treebuilders 32 /usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/html5lib/_trie 24 /usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/html5lib/treeadapters 1104 /usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/html5lib 592 /usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/certifi 168 /usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/urllib3/util 64 /usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/urllib3/contrib/_securetransport 224 /usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/urllib3/contrib 8 /usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/urllib3/packages/backports 24 /usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/urllib3/packages/ssl_match_hostname 104 /usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/urllib3/packages 792 /usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/urllib3 232 /usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor/pkg_resources 8496 /usr/local/Cellar/python/3.7.3/libexec/pip/src/pip/_vendor 10024 /usr/local/Cellar/python/3.7.3/libexec/pip/src/pip 10096 /usr/local/Cellar/python/3.7.3/libexec/pip/src 20664 /usr/local/Cellar/python/3.7.3/libexec/pip 64 /usr/local/Cellar/python/3.7.3/libexec/setuptools/setuptools.egg-info 8 /usr/local/Cellar/python/3.7.3/libexec/setuptools/tests 8 /usr/local/Cellar/python/3.7.3/libexec/setuptools/docs/_templates 16 /usr/local/Cellar/python/3.7.3/libexec/setuptools/docs/_theme/nature/static 24 /usr/local/Cellar/python/3.7.3/libexec/setuptools/docs/_theme/nature 24 /usr/local/Cellar/python/3.7.3/libexec/setuptools/docs/_theme 744 /usr/local/Cellar/python/3.7.3/libexec/setuptools/docs 160 /usr/local/Cellar/python/3.7.3/libexec/setuptools/build/lib/setuptools/_vendor/packaging 680 /usr/local/Cellar/python/3.7.3/libexec/setuptools/build/lib/setuptools/_vendor 576 /usr/local/Cellar/python/3.7.3/libexec/setuptools/build/lib/setuptools/command 8 /usr/local/Cellar/python/3.7.3/libexec/setuptools/build/lib/setuptools/extern 2712 /usr/local/Cellar/python/3.7.3/libexec/setuptools/build/lib/setuptools 160 /usr/local/Cellar/python/3.7.3/libexec/setuptools/build/lib/pkg_resources/_vendor/packaging 736 /usr/local/Cellar/python/3.7.3/libexec/setuptools/build/lib/pkg_resources/_vendor 8 /usr/local/Cellar/python/3.7.3/libexec/setuptools/build/lib/pkg_resources/extern 968 /usr/local/Cellar/python/3.7.3/libexec/setuptools/build/lib/pkg_resources 3688 /usr/local/Cellar/python/3.7.3/libexec/setuptools/build/lib 3688 /usr/local/Cellar/python/3.7.3/libexec/setuptools/build 104 /usr/local/Cellar/python/3.7.3/libexec/setuptools/setuptools/_vendor/packaging/__pycache__ 264 /usr/local/Cellar/python/3.7.3/libexec/setuptools/setuptools/_vendor/packaging 56 /usr/local/Cellar/python/3.7.3/libexec/setuptools/setuptools/_vendor/__pycache__ 848 /usr/local/Cellar/python/3.7.3/libexec/setuptools/setuptools/_vendor 8 /usr/local/Cellar/python/3.7.3/libexec/setuptools/setuptools/tests/indexes/test_links_priority/simple/foobar 8 /usr/local/Cellar/python/3.7.3/libexec/setuptools/setuptools/tests/indexes/test_links_priority/simple 16 /usr/local/Cellar/python/3.7.3/libexec/setuptools/setuptools/tests/indexes/test_links_priority 16 /usr/local/Cellar/python/3.7.3/libexec/setuptools/setuptools/tests/indexes 776 /usr/local/Cellar/python/3.7.3/libexec/setuptools/setuptools/tests 496 /usr/local/Cellar/python/3.7.3/libexec/setuptools/setuptools/__pycache__ 328 /usr/local/Cellar/python/3.7.3/libexec/setuptools/setuptools/command/__pycache__ 904 /usr/local/Cellar/python/3.7.3/libexec/setuptools/setuptools/command 8 /usr/local/Cellar/python/3.7.3/libexec/setuptools/setuptools/extern/__pycache__ 16 /usr/local/Cellar/python/3.7.3/libexec/setuptools/setuptools/extern 4488 /usr/local/Cellar/python/3.7.3/libexec/setuptools/setuptools 128 /usr/local/Cellar/python/3.7.3/libexec/setuptools/pkg_resources/_vendor/packaging/__pycache__ 288 /usr/local/Cellar/python/3.7.3/libexec/setuptools/pkg_resources/_vendor/packaging 504 /usr/local/Cellar/python/3.7.3/libexec/setuptools/pkg_resources/_vendor/__pycache__ 1376 /usr/local/Cellar/python/3.7.3/libexec/setuptools/pkg_resources/_vendor 136 /usr/local/Cellar/python/3.7.3/libexec/setuptools/pkg_resources/tests 208 /usr/local/Cellar/python/3.7.3/libexec/setuptools/pkg_resources/__pycache__ 8 /usr/local/Cellar/python/3.7.3/libexec/setuptools/pkg_resources/extern/__pycache__ 16 /usr/local/Cellar/python/3.7.3/libexec/setuptools/pkg_resources/extern 1984 /usr/local/Cellar/python/3.7.3/libexec/setuptools/pkg_resources 11432 /usr/local/Cellar/python/3.7.3/libexec/setuptools 32528 /usr/local/Cellar/python/3.7.3/libexec 0 /usr/local/Cellar/python/3.7.3/lib/pkgconfig 0 /usr/local/Cellar/python/3.7.3/lib 104 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/bin 96 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/include/python3.7m/internal 1784 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/include/python3.7m 1784 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/include 32 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/Resources/Python.app/Contents/MacOS 216 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/Resources/Python.app/Contents/Resources 264 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/Resources/Python.app/Contents 264 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/Resources/Python.app 272 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/Resources 8 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/pkgconfig 8672 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload 120 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/encodings/__pycache__ 3600 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/encodings 680 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/distutils/tests 544 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/distutils/__pycache__ 248 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/distutils/command/__pycache__ 4904 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/distutils/command 7056 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/distutils 648 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ctypes/test 56 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ctypes/__pycache__ 40 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ctypes/macholib/__pycache__ 104 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ctypes/macholib 936 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ctypes 416 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/test/testmock 1088 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/test 240 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/__pycache__ 1768 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest 8 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/curses/__pycache__ 64 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/curses 40 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/eintrdata 192 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_json 136 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_tools 480 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/audiodata 64 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/extension 8 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/zipdata01 136 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/source 8 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data02/one 8 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data02/two 16 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data02 0 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data03/namespace/portion2 0 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data03/namespace/portion1 0 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data03/namespace 0 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data03 152 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/import_ 8 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/project1/parent/child 8 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/project1/parent 8 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/project1 8 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/portion2/foo 8 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/portion2 8 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo 8 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/not_a_namespace_pkg 8 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/project3/parent/child 8 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/project3/parent 8 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/project3 8 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/project2/parent/child 8 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/project2/parent 8 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/project2 0 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test 8 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/module_and_namespace_package 16 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/both_portions/foo 16 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/both_portions 8 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/portion1/foo 8 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs/portion1 96 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/namespace_pkgs 8 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/zipdata02 48 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/frozen 32 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/builtin 8 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data01/subdirectory 32 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib/data01 1000 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_importlib 128 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/dtracedata 16 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/tracedmodules 9128 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/decimaltestdata 40 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/xmltestdata 24 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/encoded_modules 240 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/cjkencodings 16 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_warnings/data 136 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_warnings 8 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_import/data/package2 16 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_import/data/circular_imports/subpkg 88 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_import/data/circular_imports 8 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_import/data/package 104 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_import/data 208 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_import 240 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/support 104 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/imghdrdata 72 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/sndhdrdata 488 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_email/data 1560 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_email 1448 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/test_asyncio 200 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/libregrtest 8 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/data 48 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/capath 40 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test/subprocessdata 41952 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/test 224 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/turtledemo 16 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/multiprocessing/dummy 264 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/multiprocessing/__pycache__ 784 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/multiprocessing 232 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/urllib/__pycache__ 552 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/urllib 136 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/html/__pycache__ 344 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/html 208 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/tkinter/test/test_ttk 280 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/tkinter/test/test_tkinter 552 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/tkinter/test 1304 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/tkinter 4328 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/__pycache__ 16 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xml/parsers/__pycache__ 32 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xml/parsers 128 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xml/sax/__pycache__ 272 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xml/sax 8 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xml/__pycache__ 296 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xml/dom 120 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xml/etree/__pycache__ 288 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xml/etree 904 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xml 136 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/wsgiref 88 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/json/__pycache__ 200 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/json 304 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/http/__pycache__ 720 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/http 264 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/sqlite3/test 288 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/sqlite3 3776 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ensurepip/_bundled 3808 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ensurepip 56 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/concurrent/futures/__pycache__ 184 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/concurrent/futures 8 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/concurrent/__pycache__ 200 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/concurrent 256 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/config-3.7m-darwin 16 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/venv/scripts/posix 8 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/venv/scripts/common 24 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/venv/scripts 72 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/venv 56 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/dbm 72 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/importlib/__pycache__ 384 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/importlib 80 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xmlrpc/__pycache__ 256 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xmlrpc 464 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib2to3/fixes/__pycache__ 944 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib2to3/fixes 40 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib2to3/tests/data/fixers/myfixes 64 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib2to3/tests/data/fixers 416 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib2to3/tests/data 872 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib2to3/tests 200 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib2to3/__pycache__ 128 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib2to3/pgen2/__pycache__ 304 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib2to3/pgen2 2680 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib2to3 264 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/idlelib/Icons 1072 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/idlelib/idle_test 3472 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/idlelib 816 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/pydoc_data/__pycache__ 2120 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/pydoc_data 104 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/collections/__pycache__ 208 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/collections 648 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/asyncio/__pycache__ 1552 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/asyncio 264 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/logging/__pycache__ 608 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/logging 384 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/email/__pycache__ 64 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/email/mime 1240 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/email 99936 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7 99944 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib 224 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/demo 56 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/c-globals 40 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/ssl 128 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/gdb 16 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/freeze/test 208 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/freeze 96 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/unicode/python-mappings 296 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/unicode 40 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/launcher 32 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/tools 64 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/core 64 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/test 24 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/path 24 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/ucrt 72 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/tcltk 304 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/bundle/bootstrap 112 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/bundle/packagegroups 656 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/bundle 24 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/pip 72 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/lib 48 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/dev 40 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/doc 80 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi/exe 1528 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/msi 40 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/iobench 96 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/stringbench 40 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/parser 40 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/ccbench 56 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/nuget 888 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/scripts 32 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/importbench 32 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/buildbot 48 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/unittestgui 80 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/i18n 48 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/pynche/X 352 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/pynche 320 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/clinic 8 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/tz 16 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/test2to3/test 16 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/test2to3/test2to3 56 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools/test2to3 4576 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples/Tools 4576 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7/examples 4576 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc/python3.7 4576 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share/doc 4576 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/share 111296 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7 111296 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions 111296 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework 111296 /usr/local/Cellar/python/3.7.3/Frameworks 96 /usr/local/Cellar/python/3.7.3/Python Launcher 3.app/Contents/MacOS 32 /usr/local/Cellar/python/3.7.3/Python Launcher 3.app/Contents/Resources/English.lproj/MyDocument.nib 32 /usr/local/Cellar/python/3.7.3/Python Launcher 3.app/Contents/Resources/English.lproj/MainMenu.nib 32 /usr/local/Cellar/python/3.7.3/Python Launcher 3.app/Contents/Resources/English.lproj/PreferenceWindow.nib 104 /usr/local/Cellar/python/3.7.3/Python Launcher 3.app/Contents/Resources/English.lproj 432 /usr/local/Cellar/python/3.7.3/Python Launcher 3.app/Contents/Resources 536 /usr/local/Cellar/python/3.7.3/Python Launcher 3.app/Contents 536 /usr/local/Cellar/python/3.7.3/Python Launcher 3.app 32 /usr/local/Cellar/python/3.7.3/share/man/man1 32 /usr/local/Cellar/python/3.7.3/share/man 32 /usr/local/Cellar/python/3.7.3/share 144896 /usr/local/Cellar/python/3.7.3 144896 /usr/local/Cellar/python 8 /usr/local/Cellar/readline/8.0.0_1/.brew 160 /usr/local/Cellar/readline/8.0.0_1/include/readline 160 /usr/local/Cellar/readline/8.0.0_1/include 8 /usr/local/Cellar/readline/8.0.0_1/lib/pkgconfig 1456 /usr/local/Cellar/readline/8.0.0_1/lib 144 /usr/local/Cellar/readline/8.0.0_1/share/man/man3 144 /usr/local/Cellar/readline/8.0.0_1/share/man 176 /usr/local/Cellar/readline/8.0.0_1/share/readline 760 /usr/local/Cellar/readline/8.0.0_1/share/info 192 /usr/local/Cellar/readline/8.0.0_1/share/doc/readline 192 /usr/local/Cellar/readline/8.0.0_1/share/doc 1272 /usr/local/Cellar/readline/8.0.0_1/share 3240 /usr/local/Cellar/readline/8.0.0_1 3240 /usr/local/Cellar/readline 2192 /usr/local/Cellar/sqlite/3.28.0/bin 8 /usr/local/Cellar/sqlite/3.28.0/.brew 1168 /usr/local/Cellar/sqlite/3.28.0/include 8 /usr/local/Cellar/sqlite/3.28.0/lib/pkgconfig 4256 /usr/local/Cellar/sqlite/3.28.0/lib 24 /usr/local/Cellar/sqlite/3.28.0/share/man/man1 24 /usr/local/Cellar/sqlite/3.28.0/share/man 24 /usr/local/Cellar/sqlite/3.28.0/share 7664 /usr/local/Cellar/sqlite/3.28.0 7664 /usr/local/Cellar/sqlite 280 /usr/local/Cellar/xz/5.2.4/bin 8 /usr/local/Cellar/xz/5.2.4/.brew 376 /usr/local/Cellar/xz/5.2.4/include/lzma 400 /usr/local/Cellar/xz/5.2.4/include 8 /usr/local/Cellar/xz/5.2.4/lib/pkgconfig 696 /usr/local/Cellar/xz/5.2.4/lib 176 /usr/local/Cellar/xz/5.2.4/share/man/man1 176 /usr/local/Cellar/xz/5.2.4/share/man 16 /usr/local/Cellar/xz/5.2.4/share/doc/xz/examples_old 96 /usr/local/Cellar/xz/5.2.4/share/doc/xz/examples 408 /usr/local/Cellar/xz/5.2.4/share/doc/xz 408 /usr/local/Cellar/xz/5.2.4/share/doc 584 /usr/local/Cellar/xz/5.2.4/share 2448 /usr/local/Cellar/xz/5.2.4 2448 /usr/local/Cellar/xz 5552 /usr/local/Cellar/cdrtools/3.01_1/bin 8 /usr/local/Cellar/cdrtools/3.01_1/.brew 248 /usr/local/Cellar/cdrtools/3.01_1/include/scg 248 /usr/local/Cellar/cdrtools/3.01_1/include 216 /usr/local/Cellar/cdrtools/3.01_1/sbin 16 /usr/local/Cellar/cdrtools/3.01_1/etc/default 16 /usr/local/Cellar/cdrtools/3.01_1/etc 1192 /usr/local/Cellar/cdrtools/3.01_1/lib/siconv 1968 /usr/local/Cellar/cdrtools/3.01_1/lib 480 /usr/local/Cellar/cdrtools/3.01_1/share/man/man3 296 /usr/local/Cellar/cdrtools/3.01_1/share/man/man8 480 /usr/local/Cellar/cdrtools/3.01_1/share/man/man1 1256 /usr/local/Cellar/cdrtools/3.01_1/share/man 240 /usr/local/Cellar/cdrtools/3.01_1/share/doc/cdrecord 176 /usr/local/Cellar/cdrtools/3.01_1/share/doc/mkisofs 48 /usr/local/Cellar/cdrtools/3.01_1/share/doc/cdda2wav 16 /usr/local/Cellar/cdrtools/3.01_1/share/doc/libparanoia 8 /usr/local/Cellar/cdrtools/3.01_1/share/doc/rscsi 488 /usr/local/Cellar/cdrtools/3.01_1/share/doc 1744 /usr/local/Cellar/cdrtools/3.01_1/share 10624 /usr/local/Cellar/cdrtools/3.01_1 10624 /usr/local/Cellar/cdrtools 8 /usr/local/Cellar/oniguruma/6.9.2/bin 8 /usr/local/Cellar/oniguruma/6.9.2/.brew 120 /usr/local/Cellar/oniguruma/6.9.2/include 8 /usr/local/Cellar/oniguruma/6.9.2/lib/pkgconfig 2336 /usr/local/Cellar/oniguruma/6.9.2/lib 2768 /usr/local/Cellar/oniguruma/6.9.2 2768 /usr/local/Cellar/oniguruma 888 /usr/local/Cellar/socat/1.7.3.3/bin 8 /usr/local/Cellar/socat/1.7.3.3/.brew 264 /usr/local/Cellar/socat/1.7.3.3/share/man/man1 264 /usr/local/Cellar/socat/1.7.3.3/share/man 264 /usr/local/Cellar/socat/1.7.3.3/share 1352 /usr/local/Cellar/socat/1.7.3.3 1352 /usr/local/Cellar/socat 8416 /usr/local/Cellar/nmap/7.70/bin 8 /usr/local/Cellar/nmap/7.70/.brew 112 /usr/local/Cellar/nmap/7.70/lib/python2.7/site-packages 112 /usr/local/Cellar/nmap/7.70/lib/python2.7 112 /usr/local/Cellar/nmap/7.70/lib 272 /usr/local/Cellar/nmap/7.70/share/man/sk/man1 272 /usr/local/Cellar/nmap/7.70/share/man/sk 296 /usr/local/Cellar/nmap/7.70/share/man/pl/man1 296 /usr/local/Cellar/nmap/7.70/share/man/pl 312 /usr/local/Cellar/nmap/7.70/share/man/pt_BR/man1 312 /usr/local/Cellar/nmap/7.70/share/man/pt_BR 352 /usr/local/Cellar/nmap/7.70/share/man/ja/man1 352 /usr/local/Cellar/nmap/7.70/share/man/ja 408 /usr/local/Cellar/nmap/7.70/share/man/it/man1 408 /usr/local/Cellar/nmap/7.70/share/man/it 296 /usr/local/Cellar/nmap/7.70/share/man/pt_PT/man1 296 /usr/local/Cellar/nmap/7.70/share/man/pt_PT 576 /usr/local/Cellar/nmap/7.70/share/man/ru/man1 576 /usr/local/Cellar/nmap/7.70/share/man/ru 280 /usr/local/Cellar/nmap/7.70/share/man/ro/man1 280 /usr/local/Cellar/nmap/7.70/share/man/ro 216 /usr/local/Cellar/nmap/7.70/share/man/zh/man1 216 /usr/local/Cellar/nmap/7.70/share/man/zh 616 /usr/local/Cellar/nmap/7.70/share/man/man1 280 /usr/local/Cellar/nmap/7.70/share/man/hr/man1 280 /usr/local/Cellar/nmap/7.70/share/man/hr 368 /usr/local/Cellar/nmap/7.70/share/man/hu/man1 368 /usr/local/Cellar/nmap/7.70/share/man/hu 336 /usr/local/Cellar/nmap/7.70/share/man/de/man1 336 /usr/local/Cellar/nmap/7.70/share/man/de 384 /usr/local/Cellar/nmap/7.70/share/man/fr/man1 384 /usr/local/Cellar/nmap/7.70/share/man/fr 320 /usr/local/Cellar/nmap/7.70/share/man/es/man1 320 /usr/local/Cellar/nmap/7.70/share/man/es 5312 /usr/local/Cellar/nmap/7.70/share/man 512 /usr/local/Cellar/nmap/7.70/share/ncat 112 /usr/local/Cellar/nmap/7.70/share/nmap/nselib/data/psexec 40 /usr/local/Cellar/nmap/7.70/share/nmap/nselib/data/jdwp-class 7968 /usr/local/Cellar/nmap/7.70/share/nmap/nselib/data 14632 /usr/local/Cellar/nmap/7.70/share/nmap/nselib 9608 /usr/local/Cellar/nmap/7.70/share/nmap/scripts 42208 /usr/local/Cellar/nmap/7.70/share/nmap 48032 /usr/local/Cellar/nmap/7.70/share 58064 /usr/local/Cellar/nmap/7.70 58064 /usr/local/Cellar/nmap 520 /usr/local/Cellar/jq/1.6/bin 8 /usr/local/Cellar/jq/1.6/.brew 32 /usr/local/Cellar/jq/1.6/include 1224 /usr/local/Cellar/jq/1.6/lib 200 /usr/local/Cellar/jq/1.6/share/man/man1 200 /usr/local/Cellar/jq/1.6/share/man 40 /usr/local/Cellar/jq/1.6/share/doc/jq 40 /usr/local/Cellar/jq/1.6/share/doc 240 /usr/local/Cellar/jq/1.6/share 2144 /usr/local/Cellar/jq/1.6 2144 /usr/local/Cellar/jq 1072 /usr/local/Cellar/openssl/1.0.2s/bin 8 /usr/local/Cellar/openssl/1.0.2s/.brew 3712 /usr/local/Cellar/openssl/1.0.2s/include/openssl 3712 /usr/local/Cellar/openssl/1.0.2s/include 24 /usr/local/Cellar/openssl/1.0.2s/lib/pkgconfig 888 /usr/local/Cellar/openssl/1.0.2s/lib/engines 12576 /usr/local/Cellar/openssl/1.0.2s/lib 80 /usr/local/Cellar/openssl/1.0.2s/.bottle/etc/openssl/misc 0 /usr/local/Cellar/openssl/1.0.2s/.bottle/etc/openssl/certs 0 /usr/local/Cellar/openssl/1.0.2s/.bottle/etc/openssl/private 104 /usr/local/Cellar/openssl/1.0.2s/.bottle/etc/openssl 104 /usr/local/Cellar/openssl/1.0.2s/.bottle/etc 104 /usr/local/Cellar/openssl/1.0.2s/.bottle 88 /usr/local/Cellar/openssl/1.0.2s/share/man/man5 6424 /usr/local/Cellar/openssl/1.0.2s/share/man/man3 1336 /usr/local/Cellar/openssl/1.0.2s/share/man/man1 24 /usr/local/Cellar/openssl/1.0.2s/share/man/man7 7872 /usr/local/Cellar/openssl/1.0.2s/share/man 7872 /usr/local/Cellar/openssl/1.0.2s/share 26448 /usr/local/Cellar/openssl/1.0.2s 26448 /usr/local/Cellar/openssl 449064 /usr/local/Cellar 0 /usr/local/share/man/sk/man1 0 /usr/local/share/man/sk 0 /usr/local/share/man/pl/man1 0 /usr/local/share/man/pl 0 /usr/local/share/man/man3 0 /usr/local/share/man/pt_BR/man1 0 /usr/local/share/man/pt_BR 0 /usr/local/share/man/ja/man1 0 /usr/local/share/man/ja 0 /usr/local/share/man/it/man1 0 /usr/local/share/man/it 0 /usr/local/share/man/pt_PT/man1 0 /usr/local/share/man/pt_PT 0 /usr/local/share/man/ru/man1 0 /usr/local/share/man/ru 0 /usr/local/share/man/ro/man1 0 /usr/local/share/man/ro 0 /usr/local/share/man/zh/man1 0 /usr/local/share/man/zh 0 /usr/local/share/man/man8 0 /usr/local/share/man/man1 0 /usr/local/share/man/hr/man1 0 /usr/local/share/man/hr 0 /usr/local/share/man/hu/man1 0 /usr/local/share/man/hu 0 /usr/local/share/man/de/man1 0 /usr/local/share/man/de 0 /usr/local/share/man/fr/man1 0 /usr/local/share/man/fr 0 /usr/local/share/man/es/man1 0 /usr/local/share/man/es 24 /usr/local/share/man 8 /usr/local/share/info 0 /usr/local/share/doc 0 /usr/local/share/zsh/site-functions 0 /usr/local/share/zsh 0 /usr/local/share/fish/vendor_completions.d 0 /usr/local/share/fish 32 /usr/local/share 1236440 /usr/local 80 /usr/lib/groff/groffer 0 /usr/lib/groff/site-tmac 80 /usr/lib/groff 0 /usr/lib/pkgconfig 1168 /usr/lib/rpcsvc 560 /usr/lib/php/extensions/no-debug-non-zts-20160303 560 /usr/lib/php/extensions 504 /usr/lib/php/build 1064 /usr/lib/php 672 /usr/lib/pam 16 /usr/lib/dtrace 960 /usr/lib/system/introspection 11664 /usr/lib/system 12000 /usr/lib/swift 448 /usr/lib/log 40 /usr/lib/zsh/5.3/zsh/net 24 /usr/lib/zsh/5.3/zsh/param 1216 /usr/lib/zsh/5.3/zsh 1216 /usr/lib/zsh/5.3 1216 /usr/lib/zsh 0 /usr/lib/sasl2/openldap 1064 /usr/lib/sasl2 0 /usr/lib/xpc/support.bundle/Contents/_CodeSignature 40 /usr/lib/xpc/support.bundle/Contents/MacOS 40 /usr/lib/xpc/support.bundle/Contents 40 /usr/lib/xpc/support.bundle 40 /usr/lib/xpc 124760 /usr/lib 0 /usr/share/com.apple.languageassetd/_CodeSignature 0 /usr/share/com.apple.languageassetd 2080 /usr/share/man/man5 248 /usr/share/man/man4 0 /usr/share/man/man8/SidecarRelay.8 1376 /usr/share/man/man8 0 /usr/share/man/man6 21616 /usr/share/man/man1 544 /usr/share/man/man7 24 /usr/share/man/man9 9960 /usr/share/man/mann 36152 /usr/share/man 264 /usr/share/vim/vim80/indent 72 /usr/share/vim/vim80/ftplugin 24 /usr/share/vim/vim80/tools 4824 /usr/share/vim/vim80/spell 32 /usr/share/vim/vim80/plugin 16 /usr/share/vim/vim80/pack/dist/opt/termdebug/plugin 16 /usr/share/vim/vim80/pack/dist/opt/termdebug 16 /usr/share/vim/vim80/pack/dist/opt/justify/plugin 16 /usr/share/vim/vim80/pack/dist/opt/justify 0 /usr/share/vim/vim80/pack/dist/opt/dvorak/dvorak 0 /usr/share/vim/vim80/pack/dist/opt/dvorak/plugin 0 /usr/share/vim/vim80/pack/dist/opt/dvorak 0 /usr/share/vim/vim80/pack/dist/opt/shellmenu/plugin 0 /usr/share/vim/vim80/pack/dist/opt/shellmenu 0 /usr/share/vim/vim80/pack/dist/opt/swapmouse/plugin 0 /usr/share/vim/vim80/pack/dist/opt/swapmouse 0 /usr/share/vim/vim80/pack/dist/opt/editexisting/plugin 0 /usr/share/vim/vim80/pack/dist/opt/editexisting 24 /usr/share/vim/vim80/pack/dist/opt/matchit/plugin 24 /usr/share/vim/vim80/pack/dist/opt/matchit/doc 48 /usr/share/vim/vim80/pack/dist/opt/matchit 80 /usr/share/vim/vim80/pack/dist/opt 80 /usr/share/vim/vim80/pack/dist 80 /usr/share/vim/vim80/pack 0 /usr/share/vim/vim80/print 720 /usr/share/vim/vim80/lang 0 /usr/share/vim/vim80/macros/hanoi 0 /usr/share/vim/vim80/macros/urm 0 /usr/share/vim/vim80/macros/life 16 /usr/share/vim/vim80/macros/maze 16 /usr/share/vim/vim80/macros 0 /usr/share/vim/vim80/colors 1968 /usr/share/vim/vim80/tutor 32 /usr/share/vim/vim80/keymap 5832 /usr/share/vim/vim80/doc 160 /usr/share/vim/vim80/autoload/xml 1000 /usr/share/vim/vim80/autoload 2672 /usr/share/vim/vim80/syntax 0 /usr/share/vim/vim80/compiler 17696 /usr/share/vim/vim80 17696 /usr/share/vim 72 /usr/share/misc 32 /usr/share/groff/1.19.2/tmac/mdoc 0 /usr/share/groff/1.19.2/tmac/mm 648 /usr/share/groff/1.19.2/tmac 64 /usr/share/groff/1.19.2/font/devutf8 16 /usr/share/groff/1.19.2/font/devlj4/generate 808 /usr/share/groff/1.19.2/font/devlj4 144 /usr/share/groff/1.19.2/font/devhtml 0 /usr/share/groff/1.19.2/font/devdvi/generate 208 /usr/share/groff/1.19.2/font/devdvi 0 /usr/share/groff/1.19.2/font/devascii 0 /usr/share/groff/1.19.2/font/devlatin1 16 /usr/share/groff/1.19.2/font/devps/generate 512 /usr/share/groff/1.19.2/font/devps 192 /usr/share/groff/1.19.2/font/devlbp 1928 /usr/share/groff/1.19.2/font 2576 /usr/share/groff/1.19.2 0 /usr/share/groff/site-font 0 /usr/share/groff/site-tmac 2576 /usr/share/groff 112 /usr/share/firmware/wifi/C-4364__s-B3 0 /usr/share/firmware/wifi/C-4364__s-B2/perf_sdb_udm 2056 /usr/share/firmware/wifi/C-4364__s-B2 6440 /usr/share/firmware/wifi/C-4377__s-B3 4680 /usr/share/firmware/wifi/C-4355__s-C1 13288 /usr/share/firmware/wifi 13288 /usr/share/firmware 0 /usr/share/skel 0 /usr/share/CSI 0 /usr/share/calendar/hr_HR.ISO8859-2 32 /usr/share/calendar/fr_FR.ISO8859-1 0 /usr/share/calendar/uk_UA.KOI8-U 16 /usr/share/calendar/hu_HU.ISO8859-2 0 /usr/share/calendar/de_DE.ISO8859-15 0 /usr/share/calendar/ru_RU.KOI8-R 0 /usr/share/calendar/fr_FR.ISO8859-15 16 /usr/share/calendar/de_DE.ISO8859-1 0 /usr/share/calendar/de_AT.ISO_8859-15 176 /usr/share/calendar 0 /usr/share/locale/en_NZ/LC_MESSAGES 0 /usr/share/locale/en_NZ 0 /usr/share/locale/nl_NL.UTF-8/LC_MESSAGES 0 /usr/share/locale/nl_NL.UTF-8 0 /usr/share/locale/pt_BR.UTF-8/LC_MESSAGES 0 /usr/share/locale/pt_BR.UTF-8 0 /usr/share/locale/fr_CH.ISO8859-15/LC_MESSAGES 0 /usr/share/locale/fr_CH.ISO8859-15 0 /usr/share/locale/eu_ES.ISO8859-15/LC_MESSAGES 0 /usr/share/locale/eu_ES.ISO8859-15 0 /usr/share/locale/en_US.US-ASCII/LC_MESSAGES 0 /usr/share/locale/en_US.US-ASCII 0 /usr/share/locale/af_ZA/LC_MESSAGES 0 /usr/share/locale/af_ZA 0 /usr/share/locale/bg_BG/LC_MESSAGES 0 /usr/share/locale/bg_BG 64 /usr/share/locale/pl/LC_MESSAGES 64 /usr/share/locale/pl 0 /usr/share/locale/cs_CZ.UTF-8/LC_MESSAGES 0 /usr/share/locale/cs_CZ.UTF-8 0 /usr/share/locale/fi_FI/LC_MESSAGES 0 /usr/share/locale/fi_FI 0 /usr/share/locale/zh_CN.UTF-8/LC_MESSAGES 0 /usr/share/locale/zh_CN.UTF-8 0 /usr/share/locale/eu_ES/LC_MESSAGES 0 /usr/share/locale/eu_ES 0 /usr/share/locale/sk_SK.ISO8859-2/LC_MESSAGES 0 /usr/share/locale/sk_SK.ISO8859-2 0 /usr/share/locale/nl_BE/LC_MESSAGES 0 /usr/share/locale/nl_BE 0 /usr/share/locale/fr_BE/LC_MESSAGES 0 /usr/share/locale/fr_BE 0 /usr/share/locale/sk_SK/LC_MESSAGES 0 /usr/share/locale/sk_SK 0 /usr/share/locale/en_US.UTF-8/LC_MESSAGES 0 /usr/share/locale/en_US.UTF-8 0 /usr/share/locale/en_NZ.ISO8859-1/LC_MESSAGES 0 /usr/share/locale/en_NZ.ISO8859-1 0 /usr/share/locale/de_CH/LC_MESSAGES 0 /usr/share/locale/de_CH 0 /usr/share/locale/sk_SK.UTF-8/LC_MESSAGES 0 /usr/share/locale/sk_SK.UTF-8 0 /usr/share/locale/de_DE.UTF-8/LC_MESSAGES 0 /usr/share/locale/de_DE.UTF-8 64 /usr/share/locale/sv/LC_MESSAGES 64 /usr/share/locale/sv 0 /usr/share/locale/am_ET.UTF-8/LC_MESSAGES 0 /usr/share/locale/am_ET.UTF-8 0 /usr/share/locale/zh_HK/LC_MESSAGES 0 /usr/share/locale/zh_HK 0 /usr/share/locale/be_BY.UTF-8/LC_MESSAGES 0 /usr/share/locale/be_BY.UTF-8 0 /usr/share/locale/uk_UA/LC_MESSAGES 0 /usr/share/locale/uk_UA 0 /usr/share/locale/pt_PT.ISO8859-1/LC_MESSAGES 0 /usr/share/locale/pt_PT.ISO8859-1 48 /usr/share/locale/he/LC_MESSAGES 48 /usr/share/locale/he 0 /usr/share/locale/en_AU.US-ASCII/LC_MESSAGES 0 /usr/share/locale/en_AU.US-ASCII 0 /usr/share/locale/kk_KZ.PT154/LC_MESSAGES 0 /usr/share/locale/kk_KZ.PT154 0 /usr/share/locale/en_US/LC_MESSAGES 0 /usr/share/locale/en_US 0 /usr/share/locale/nl_BE.ISO8859-15/LC_MESSAGES 0 /usr/share/locale/nl_BE.ISO8859-15 0 /usr/share/locale/de_AT.ISO8859-1/LC_MESSAGES 0 /usr/share/locale/de_AT.ISO8859-1 0 /usr/share/locale/hr_HR.ISO8859-2/LC_MESSAGES 0 /usr/share/locale/hr_HR.ISO8859-2 0 /usr/share/locale/fr_FR.ISO8859-1/LC_MESSAGES 0 /usr/share/locale/fr_FR.ISO8859-1 0 /usr/share/locale/af_ZA.UTF-8/LC_MESSAGES 0 /usr/share/locale/af_ZA.UTF-8 0 /usr/share/locale/am_ET/LC_MESSAGES 0 /usr/share/locale/am_ET 0 /usr/share/locale/fi_FI.ISO8859-1/LC_MESSAGES 0 /usr/share/locale/fi_FI.ISO8859-1 0 /usr/share/locale/ro_RO.UTF-8/LC_MESSAGES 0 /usr/share/locale/ro_RO.UTF-8 0 /usr/share/locale/af_ZA.ISO8859-15/LC_MESSAGES 0 /usr/share/locale/af_ZA.ISO8859-15 0 /usr/share/locale/en_NZ.UTF-8/LC_MESSAGES 0 /usr/share/locale/en_NZ.UTF-8 0 /usr/share/locale/fi_FI.UTF-8/LC_MESSAGES 0 /usr/share/locale/fi_FI.UTF-8 0 /usr/share/locale/hr_HR.UTF-8/LC_MESSAGES 0 /usr/share/locale/hr_HR.UTF-8 0 /usr/share/locale/da_DK.UTF-8/LC_MESSAGES 0 /usr/share/locale/da_DK.UTF-8 0 /usr/share/locale/ca_ES.ISO8859-1/LC_MESSAGES 0 /usr/share/locale/ca_ES.ISO8859-1 0 /usr/share/locale/en_AU.ISO8859-15/LC_MESSAGES 0 /usr/share/locale/en_AU.ISO8859-15 0 /usr/share/locale/ro_RO.ISO8859-2/LC_MESSAGES 0 /usr/share/locale/ro_RO.ISO8859-2 48 /usr/share/locale/da/LC_MESSAGES 48 /usr/share/locale/da 0 /usr/share/locale/de_AT.UTF-8/LC_MESSAGES 0 /usr/share/locale/de_AT.UTF-8 0 /usr/share/locale/pt_PT.ISO8859-15/LC_MESSAGES 0 /usr/share/locale/pt_PT.ISO8859-15 0 /usr/share/locale/sv_SE/LC_MESSAGES 0 /usr/share/locale/sv_SE 0 /usr/share/locale/fr_CA.ISO8859-1/LC_MESSAGES 0 /usr/share/locale/fr_CA.ISO8859-1 0 /usr/share/locale/la_LN.US-ASCII 0 /usr/share/locale/fr_BE.ISO8859-1/LC_MESSAGES 0 /usr/share/locale/fr_BE.ISO8859-1 0 /usr/share/locale/en_US.ISO8859-15/LC_MESSAGES 0 /usr/share/locale/en_US.ISO8859-15 0 /usr/share/locale/it_CH.ISO8859-1/LC_MESSAGES 0 /usr/share/locale/it_CH.ISO8859-1 0 /usr/share/locale/en_NZ.ISO8859-15/LC_MESSAGES 0 /usr/share/locale/en_NZ.ISO8859-15 0 /usr/share/locale/en_AU.UTF-8/LC_MESSAGES 0 /usr/share/locale/en_AU.UTF-8 56 /usr/share/locale/no/LC_MESSAGES 56 /usr/share/locale/no 0 /usr/share/locale/de_AT.ISO8859-15/LC_MESSAGES 0 /usr/share/locale/de_AT.ISO8859-15 0 /usr/share/locale/af_ZA.ISO8859-1/LC_MESSAGES 0 /usr/share/locale/af_ZA.ISO8859-1 0 /usr/share/locale/la_LN.ISO8859-15 0 /usr/share/locale/hu_HU.UTF-8/LC_MESSAGES 0 /usr/share/locale/hu_HU.UTF-8 0 /usr/share/locale/et_EE.UTF-8/LC_MESSAGES 0 /usr/share/locale/et_EE.UTF-8 0 /usr/share/locale/la_LN.ISO8859-2 24 /usr/share/locale/UTF-8 0 /usr/share/locale/he_IL.UTF-8/LC_MESSAGES 0 /usr/share/locale/he_IL.UTF-8 0 /usr/share/locale/uk_UA.KOI8-U/LC_MESSAGES 0 /usr/share/locale/uk_UA.KOI8-U 0 /usr/share/locale/be_BY/LC_MESSAGES 0 /usr/share/locale/be_BY 0 /usr/share/locale/kk_KZ/LC_MESSAGES 0 /usr/share/locale/kk_KZ 0 /usr/share/locale/hu_HU.ISO8859-2/LC_MESSAGES 0 /usr/share/locale/hu_HU.ISO8859-2 0 /usr/share/locale/it_CH/LC_MESSAGES 0 /usr/share/locale/it_CH 0 /usr/share/locale/pt_BR/LC_MESSAGES 0 /usr/share/locale/pt_BR 0 /usr/share/locale/ko_KR/LC_MESSAGES 0 /usr/share/locale/ko_KR 48 /usr/share/locale/ja/LC_MESSAGES 48 /usr/share/locale/ja 0 /usr/share/locale/it_IT/LC_MESSAGES 0 /usr/share/locale/it_IT 0 /usr/share/locale/fr_BE.UTF-8/LC_MESSAGES 0 /usr/share/locale/fr_BE.UTF-8 0 /usr/share/locale/ru_RU.ISO8859-5/LC_MESSAGES 0 /usr/share/locale/ru_RU.ISO8859-5 0 /usr/share/locale/la_LN.ISO8859-4 32 /usr/share/locale/zh_TW/LC_MESSAGES 32 /usr/share/locale/zh_TW 0 /usr/share/locale/zh_CN.GB2312/LC_MESSAGES 0 /usr/share/locale/zh_CN.GB2312 40 /usr/share/locale/cs/LC_MESSAGES 40 /usr/share/locale/cs 0 /usr/share/locale/no_NO.ISO8859-15/LC_MESSAGES 0 /usr/share/locale/no_NO.ISO8859-15 0 /usr/share/locale/de_DE.ISO8859-15/LC_MESSAGES 0 /usr/share/locale/de_DE.ISO8859-15 0 /usr/share/locale/en_CA/LC_MESSAGES 0 /usr/share/locale/en_CA 0 /usr/share/locale/fr_CH.UTF-8/LC_MESSAGES 0 /usr/share/locale/fr_CH.UTF-8 0 /usr/share/locale/sl_SI.UTF-8/LC_MESSAGES 0 /usr/share/locale/sl_SI.UTF-8 0 /usr/share/locale/uk_UA.ISO8859-5/LC_MESSAGES 0 /usr/share/locale/uk_UA.ISO8859-5 0 /usr/share/locale/pt_PT/LC_MESSAGES 0 /usr/share/locale/pt_PT 64 /usr/share/locale/ru/LC_MESSAGES 64 /usr/share/locale/ru 0 /usr/share/locale/hr_HR/LC_MESSAGES 0 /usr/share/locale/hr_HR 0 /usr/share/locale/cs_CZ/LC_MESSAGES 0 /usr/share/locale/cs_CZ 0 /usr/share/locale/fr_CH/LC_MESSAGES 0 /usr/share/locale/fr_CH 0 /usr/share/locale/he_IL/LC_MESSAGES 0 /usr/share/locale/he_IL 0 /usr/share/locale/zh_CN.GBK/LC_MESSAGES 0 /usr/share/locale/zh_CN.GBK 0 /usr/share/locale/zh_CN.GB18030/LC_MESSAGES 64 /usr/share/locale/zh_CN.GB18030 0 /usr/share/locale/fr_CA/LC_MESSAGES 0 /usr/share/locale/fr_CA 0 /usr/share/locale/pl_PL.UTF-8/LC_MESSAGES 0 /usr/share/locale/pl_PL.UTF-8 0 /usr/share/locale/ja_JP.SJIS/LC_MESSAGES 0 /usr/share/locale/ja_JP.SJIS 0 /usr/share/locale/sr_YU.ISO8859-5/LC_MESSAGES 0 /usr/share/locale/sr_YU.ISO8859-5 0 /usr/share/locale/be_BY.CP1251/LC_MESSAGES 0 /usr/share/locale/be_BY.CP1251 0 /usr/share/locale/sr_YU.ISO8859-2/LC_MESSAGES 0 /usr/share/locale/sr_YU.ISO8859-2 0 /usr/share/locale/sv_SE.UTF-8/LC_MESSAGES 0 /usr/share/locale/sv_SE.UTF-8 0 /usr/share/locale/sr_YU.UTF-8/LC_MESSAGES 0 /usr/share/locale/sr_YU.UTF-8 0 /usr/share/locale/de_CH.UTF-8/LC_MESSAGES 0 /usr/share/locale/de_CH.UTF-8 0 /usr/share/locale/sl_SI/LC_MESSAGES 0 /usr/share/locale/sl_SI 64 /usr/share/locale/ro/LC_MESSAGES 64 /usr/share/locale/ro 0 /usr/share/locale/pt_PT.UTF-8/LC_MESSAGES 0 /usr/share/locale/pt_PT.UTF-8 0 /usr/share/locale/ro_RO/LC_MESSAGES 0 /usr/share/locale/ro_RO 0 /usr/share/locale/en_NZ.US-ASCII/LC_MESSAGES 0 /usr/share/locale/en_NZ.US-ASCII 0 /usr/share/locale/ja_JP/LC_MESSAGES 0 /usr/share/locale/ja_JP 48 /usr/share/locale/zh_CN/LC_MESSAGES 48 /usr/share/locale/zh_CN 0 /usr/share/locale/fr_CH.ISO8859-1/LC_MESSAGES 0 /usr/share/locale/fr_CH.ISO8859-1 0 /usr/share/locale/ko_KR.eucKR/LC_MESSAGES 8 /usr/share/locale/ko_KR.eucKR 0 /usr/share/locale/be_BY.ISO8859-5/LC_MESSAGES 0 /usr/share/locale/be_BY.ISO8859-5 0 /usr/share/locale/nl_NL.ISO8859-15/LC_MESSAGES 0 /usr/share/locale/nl_NL.ISO8859-15 0 /usr/share/locale/en_GB.ISO8859-1/LC_MESSAGES 0 /usr/share/locale/en_GB.ISO8859-1 0 /usr/share/locale/en_CA.US-ASCII/LC_MESSAGES 0 /usr/share/locale/en_CA.US-ASCII 0 /usr/share/locale/is_IS.ISO8859-1/LC_MESSAGES 0 /usr/share/locale/is_IS.ISO8859-1 0 /usr/share/locale/ru_RU.CP866/LC_MESSAGES 0 /usr/share/locale/ru_RU.CP866 0 /usr/share/locale/nl_NL/LC_MESSAGES 0 /usr/share/locale/nl_NL 0 /usr/share/locale/fr_CA.ISO8859-15/LC_MESSAGES 0 /usr/share/locale/fr_CA.ISO8859-15 0 /usr/share/locale/sv_SE.ISO8859-15/LC_MESSAGES 0 /usr/share/locale/sv_SE.ISO8859-15 0 /usr/share/locale/hy_AM/LC_MESSAGES 0 /usr/share/locale/hy_AM 0 /usr/share/locale/en_CA.ISO8859-15/LC_MESSAGES 0 /usr/share/locale/en_CA.ISO8859-15 0 /usr/share/locale/en_US.ISO8859-1/LC_MESSAGES 0 /usr/share/locale/en_US.ISO8859-1 0 /usr/share/locale/zh_TW.Big5/LC_MESSAGES 0 /usr/share/locale/zh_TW.Big5 0 /usr/share/locale/ca_ES.UTF-8/LC_MESSAGES 0 /usr/share/locale/ca_ES.UTF-8 0 /usr/share/locale/ru_RU.CP1251/LC_MESSAGES 0 /usr/share/locale/ru_RU.CP1251 0 /usr/share/locale/en_GB.UTF-8/LC_MESSAGES 0 /usr/share/locale/en_GB.UTF-8 0 /usr/share/locale/en_GB.US-ASCII/LC_MESSAGES 0 /usr/share/locale/en_GB.US-ASCII 0 /usr/share/locale/ru_RU.UTF-8/LC_MESSAGES 0 /usr/share/locale/ru_RU.UTF-8 0 /usr/share/locale/eu_ES.UTF-8/LC_MESSAGES 0 /usr/share/locale/eu_ES.UTF-8 0 /usr/share/locale/es_ES.ISO8859-1/LC_MESSAGES 0 /usr/share/locale/es_ES.ISO8859-1 0 /usr/share/locale/hu_HU/LC_MESSAGES 0 /usr/share/locale/hu_HU 0 /usr/share/locale/el_GR.ISO8859-7/LC_MESSAGES 0 /usr/share/locale/el_GR.ISO8859-7 0 /usr/share/locale/en_AU/LC_MESSAGES 0 /usr/share/locale/en_AU 0 /usr/share/locale/it_CH.UTF-8/LC_MESSAGES 0 /usr/share/locale/it_CH.UTF-8 0 /usr/share/locale/en_GB/LC_MESSAGES 0 /usr/share/locale/en_GB 0 /usr/share/locale/sl_SI.ISO8859-2/LC_MESSAGES 0 /usr/share/locale/sl_SI.ISO8859-2 0 /usr/share/locale/ru_RU.KOI8-R/LC_MESSAGES 0 /usr/share/locale/ru_RU.KOI8-R 0 /usr/share/locale/nl_BE.UTF-8/LC_MESSAGES 0 /usr/share/locale/nl_BE.UTF-8 0 /usr/share/locale/et_EE/LC_MESSAGES 0 /usr/share/locale/et_EE 0 /usr/share/locale/fr_FR.ISO8859-15/LC_MESSAGES 0 /usr/share/locale/fr_FR.ISO8859-15 0 /usr/share/locale/cs_CZ.ISO8859-2/LC_MESSAGES 0 /usr/share/locale/cs_CZ.ISO8859-2 0 /usr/share/locale/lt_LT.UTF-8/LC_MESSAGES 0 /usr/share/locale/lt_LT.UTF-8 0 /usr/share/locale/pl_PL.ISO8859-2/LC_MESSAGES 0 /usr/share/locale/pl_PL.ISO8859-2 0 /usr/share/locale/fr_BE.ISO8859-15/LC_MESSAGES 0 /usr/share/locale/fr_BE.ISO8859-15 0 /usr/share/locale/is_IS.UTF-8/LC_MESSAGES 0 /usr/share/locale/is_IS.UTF-8 0 /usr/share/locale/tr_TR.ISO8859-9/LC_MESSAGES 0 /usr/share/locale/tr_TR.ISO8859-9 0 /usr/share/locale/da_DK.ISO8859-1/LC_MESSAGES 0 /usr/share/locale/da_DK.ISO8859-1 0 /usr/share/locale/lt_LT.ISO8859-4/LC_MESSAGES 0 /usr/share/locale/lt_LT.ISO8859-4 0 /usr/share/locale/lt_LT.ISO8859-13/LC_MESSAGES 0 /usr/share/locale/lt_LT.ISO8859-13 0 /usr/share/locale/zh_TW.UTF-8/LC_MESSAGES 0 /usr/share/locale/zh_TW.UTF-8 0 /usr/share/locale/bg_BG.CP1251/LC_MESSAGES 0 /usr/share/locale/bg_BG.CP1251 0 /usr/share/locale/el_GR.UTF-8/LC_MESSAGES 0 /usr/share/locale/el_GR.UTF-8 0 /usr/share/locale/be_BY.CP1131/LC_MESSAGES 0 /usr/share/locale/be_BY.CP1131 0 /usr/share/locale/da_DK.ISO8859-15/LC_MESSAGES 0 /usr/share/locale/da_DK.ISO8859-15 0 /usr/share/locale/is_IS.ISO8859-15/LC_MESSAGES 0 /usr/share/locale/is_IS.ISO8859-15 0 /usr/share/locale/no_NO.ISO8859-1/LC_MESSAGES 0 /usr/share/locale/no_NO.ISO8859-1 0 /usr/share/locale/nl_NL.ISO8859-1/LC_MESSAGES 0 /usr/share/locale/nl_NL.ISO8859-1 0 /usr/share/locale/nl_BE.ISO8859-1/LC_MESSAGES 0 /usr/share/locale/nl_BE.ISO8859-1 32 /usr/share/locale/hr/LC_MESSAGES 32 /usr/share/locale/hr 0 /usr/share/locale/sv_SE.ISO8859-1/LC_MESSAGES 0 /usr/share/locale/sv_SE.ISO8859-1 24 /usr/share/locale/nl/LC_MESSAGES 24 /usr/share/locale/nl 0 /usr/share/locale/pt_BR.ISO8859-1/LC_MESSAGES 0 /usr/share/locale/pt_BR.ISO8859-1 0 /usr/share/locale/zh_CN.eucCN/LC_MESSAGES 0 /usr/share/locale/zh_CN.eucCN 0 /usr/share/locale/it_IT.UTF-8/LC_MESSAGES 0 /usr/share/locale/it_IT.UTF-8 0 /usr/share/locale/en_CA.UTF-8/LC_MESSAGES 0 /usr/share/locale/en_CA.UTF-8 0 /usr/share/locale/uk_UA.UTF-8/LC_MESSAGES 0 /usr/share/locale/uk_UA.UTF-8 64 /usr/share/locale/nb/LC_MESSAGES 64 /usr/share/locale/nb 0 /usr/share/locale/de_CH.ISO8859-15/LC_MESSAGES 0 /usr/share/locale/de_CH.ISO8859-15 0 /usr/share/locale/de_DE.ISO8859-1/LC_MESSAGES 0 /usr/share/locale/de_DE.ISO8859-1 72 /usr/share/locale/de/LC_MESSAGES 72 /usr/share/locale/de 0 /usr/share/locale/ca_ES/LC_MESSAGES 0 /usr/share/locale/ca_ES 0 /usr/share/locale/sr_YU/LC_MESSAGES 0 /usr/share/locale/sr_YU 0 /usr/share/locale/hy_AM.ARMSCII-8/LC_MESSAGES 0 /usr/share/locale/hy_AM.ARMSCII-8 0 /usr/share/locale/ru_RU/LC_MESSAGES 0 /usr/share/locale/ru_RU 0 /usr/share/locale/zh_HK.UTF-8/LC_MESSAGES 0 /usr/share/locale/zh_HK.UTF-8 0 /usr/share/locale/eu_ES.ISO8859-1/LC_MESSAGES 0 /usr/share/locale/eu_ES.ISO8859-1 0 /usr/share/locale/is_IS/LC_MESSAGES 0 /usr/share/locale/is_IS 0 /usr/share/locale/bg_BG.UTF-8/LC_MESSAGES 0 /usr/share/locale/bg_BG.UTF-8 0 /usr/share/locale/ja_JP.UTF-8/LC_MESSAGES 0 /usr/share/locale/ja_JP.UTF-8 0 /usr/share/locale/it_CH.ISO8859-15/LC_MESSAGES 0 /usr/share/locale/it_CH.ISO8859-15 0 /usr/share/locale/fr_FR.UTF-8/LC_MESSAGES 0 /usr/share/locale/fr_FR.UTF-8 56 /usr/share/locale/eo/LC_MESSAGES 56 /usr/share/locale/eo 0 /usr/share/locale/ko_KR.UTF-8/LC_MESSAGES 0 /usr/share/locale/ko_KR.UTF-8 72 /usr/share/locale/fr/LC_MESSAGES 72 /usr/share/locale/fr 0 /usr/share/locale/la_LN.ISO8859-1 0 /usr/share/locale/et_EE.ISO8859-15/LC_MESSAGES 0 /usr/share/locale/et_EE.ISO8859-15 0 /usr/share/locale/kk_KZ.UTF-8/LC_MESSAGES 0 /usr/share/locale/kk_KZ.UTF-8 0 /usr/share/locale/ca_ES.ISO8859-15/LC_MESSAGES 0 /usr/share/locale/ca_ES.ISO8859-15 0 /usr/share/locale/en_IE.UTF-8/LC_MESSAGES 0 /usr/share/locale/en_IE.UTF-8 0 /usr/share/locale/es_ES/LC_MESSAGES 0 /usr/share/locale/es_ES 0 /usr/share/locale/de_CH.ISO8859-1/LC_MESSAGES 0 /usr/share/locale/de_CH.ISO8859-1 0 /usr/share/locale/en_CA.ISO8859-1/LC_MESSAGES 0 /usr/share/locale/en_CA.ISO8859-1 0 /usr/share/locale/es_ES.ISO8859-15/LC_MESSAGES 0 /usr/share/locale/es_ES.ISO8859-15 0 /usr/share/locale/en_AU.ISO8859-1/LC_MESSAGES 0 /usr/share/locale/en_AU.ISO8859-1 0 /usr/share/locale/el_GR/LC_MESSAGES 0 /usr/share/locale/el_GR 0 /usr/share/locale/da_DK/LC_MESSAGES 0 /usr/share/locale/da_DK 0 /usr/share/locale/no_NO/LC_MESSAGES 0 /usr/share/locale/no_NO 0 /usr/share/locale/it_IT.ISO8859-1/LC_MESSAGES 0 /usr/share/locale/it_IT.ISO8859-1 0 /usr/share/locale/en_IE/LC_MESSAGES 0 /usr/share/locale/en_IE 0 /usr/share/locale/zh_HK.Big5HKSCS/LC_MESSAGES 0 /usr/share/locale/zh_HK.Big5HKSCS 0 /usr/share/locale/hi_IN.ISCII-DEV/LC_MESSAGES 0 /usr/share/locale/hi_IN.ISCII-DEV 0 /usr/share/locale/ja_JP.eucJP/LC_MESSAGES 0 /usr/share/locale/ja_JP.eucJP 0 /usr/share/locale/it_IT.ISO8859-15/LC_MESSAGES 0 /usr/share/locale/it_IT.ISO8859-15 0 /usr/share/locale/pl_PL/LC_MESSAGES 0 /usr/share/locale/pl_PL 0 /usr/share/locale/ko_KR.CP949/LC_MESSAGES 16 /usr/share/locale/ko_KR.CP949 0 /usr/share/locale/fr_CA.UTF-8/LC_MESSAGES 0 /usr/share/locale/fr_CA.UTF-8 0 /usr/share/locale/fi_FI.ISO8859-15/LC_MESSAGES 0 /usr/share/locale/fi_FI.ISO8859-15 0 /usr/share/locale/en_GB.ISO8859-15/LC_MESSAGES 0 /usr/share/locale/en_GB.ISO8859-15 0 /usr/share/locale/fr_FR/LC_MESSAGES 0 /usr/share/locale/fr_FR 0 /usr/share/locale/hy_AM.UTF-8/LC_MESSAGES 0 /usr/share/locale/hy_AM.UTF-8 0 /usr/share/locale/no_NO.UTF-8/LC_MESSAGES 0 /usr/share/locale/no_NO.UTF-8 64 /usr/share/locale/tr/LC_MESSAGES 64 /usr/share/locale/tr 0 /usr/share/locale/es_ES.UTF-8/LC_MESSAGES 0 /usr/share/locale/es_ES.UTF-8 0 /usr/share/locale/de_AT/LC_MESSAGES 0 /usr/share/locale/de_AT 0 /usr/share/locale/tr_TR.UTF-8/LC_MESSAGES 0 /usr/share/locale/tr_TR.UTF-8 0 /usr/share/locale/de_DE/LC_MESSAGES 0 /usr/share/locale/de_DE 0 /usr/share/locale/lt_LT/LC_MESSAGES 0 /usr/share/locale/lt_LT 0 /usr/share/locale/tr_TR/LC_MESSAGES 0 /usr/share/locale/tr_TR 1072 /usr/share/locale 0 /usr/share/snmp/snmpconf-data/snmp-data 0 /usr/share/snmp/snmpconf-data/snmptrapd-data 0 /usr/share/snmp/snmpconf-data/snmpd-data 0 /usr/share/snmp/snmpconf-data 128 /usr/share/snmp/mib2c-data 840 /usr/share/snmp/mibs 1088 /usr/share/snmp 0 /usr/share/pmenergy 488 /usr/share/file/magic 1152 /usr/share/file 1528 /usr/share/cracklib 0 /usr/share/CoreDuetDaemonConfig.bundle/Contents/_CodeSignature 0 /usr/share/CoreDuetDaemonConfig.bundle/Contents/Resources/en.lproj 0 /usr/share/CoreDuetDaemonConfig.bundle/Contents/Resources 0 /usr/share/CoreDuetDaemonConfig.bundle/Contents 0 /usr/share/CoreDuetDaemonConfig.bundle 16 /usr/share/hiutil 90120 /usr/share/tokenizer/ja 6792 /usr/share/tokenizer/zh/Hans 5648 /usr/share/tokenizer/zh/Hant 12440 /usr/share/tokenizer/zh 16440 /usr/share/tokenizer/ko 119000 /usr/share/tokenizer 7736 /usr/share/ucupdate 0 /usr/share/tabset 40 /usr/share/java/Stubs 40 /usr/share/java 592 /usr/share/kpep 16 /usr/share/php/php/fpm 16 /usr/share/php/php 16 /usr/share/php 24080 /usr/share/langid 5552 /usr/share/emacs/22.1/lisp/gnus 1424 /usr/share/emacs/22.1/lisp/net 1056 /usr/share/emacs/22.1/lisp/calendar 744 /usr/share/emacs/22.1/lisp/eshell 552 /usr/share/emacs/22.1/lisp/obsolete 3376 /usr/share/emacs/22.1/lisp/textmodes 1128 /usr/share/emacs/22.1/lisp/mail 1264 /usr/share/emacs/22.1/lisp/emulation 464 /usr/share/emacs/22.1/lisp/term 760 /usr/share/emacs/22.1/lisp/language 1200 /usr/share/emacs/22.1/lisp/mh-e 472 /usr/share/emacs/22.1/lisp/url 2000 /usr/share/emacs/22.1/lisp/calc 1032 /usr/share/emacs/22.1/lisp/erc 872 /usr/share/emacs/22.1/lisp/play 6312 /usr/share/emacs/22.1/lisp/progmodes 2168 /usr/share/emacs/22.1/lisp/international 2136 /usr/share/emacs/22.1/lisp/emacs-lisp 46392 /usr/share/emacs/22.1/lisp 40 /usr/share/emacs/22.1/etc/images/gnus 0 /usr/share/emacs/22.1/etc/images/gud 0 /usr/share/emacs/22.1/etc/images/mail 0 /usr/share/emacs/22.1/etc/images/smilies 32 /usr/share/emacs/22.1/etc/images/icons 0 /usr/share/emacs/22.1/etc/images/low-color 0 /usr/share/emacs/22.1/etc/images/ezimage 72 /usr/share/emacs/22.1/etc/images 72 /usr/share/emacs/22.1/etc/tree-widget/folder 72 /usr/share/emacs/22.1/etc/tree-widget/default 144 /usr/share/emacs/22.1/etc/tree-widget 0 /usr/share/emacs/22.1/etc/e 8872 /usr/share/emacs/22.1/etc 2208 /usr/share/emacs/22.1/leim/ja-dic 7760 /usr/share/emacs/22.1/leim/quail 9984 /usr/share/emacs/22.1/leim 0 /usr/share/emacs/22.1/site-lisp 65248 /usr/share/emacs/22.1 0 /usr/share/emacs/site-lisp 65248 /usr/share/emacs 11912 /usr/share/info 0 /usr/share/terminfo/61 0 /usr/share/terminfo/66 0 /usr/share/terminfo/50 0 /usr/share/terminfo/68 0 /usr/share/terminfo/6f 0 /usr/share/terminfo/6a 0 /usr/share/terminfo/32 0 /usr/share/terminfo/35 0 /usr/share/terminfo/69 0 /usr/share/terminfo/51 0 /usr/share/terminfo/58 0 /usr/share/terminfo/67 0 /usr/share/terminfo/34 0 /usr/share/terminfo/33 0 /usr/share/terminfo/4e 0 /usr/share/terminfo/45 0 /usr/share/terminfo/73 0 /usr/share/terminfo/74 0 /usr/share/terminfo/4c 0 /usr/share/terminfo/4d 0 /usr/share/terminfo/75 0 /usr/share/terminfo/72 0 /usr/share/terminfo/6b 0 /usr/share/terminfo/38 0 /usr/share/terminfo/6e 0 /usr/share/terminfo/36 0 /usr/share/terminfo/31 0 /usr/share/terminfo/65 0 /usr/share/terminfo/62 0 /usr/share/terminfo/37 0 /usr/share/terminfo/6d 0 /usr/share/terminfo/6c 0 /usr/share/terminfo/39 0 /usr/share/terminfo/63 0 /usr/share/terminfo/64 0 /usr/share/terminfo/41 0 /usr/share/terminfo/77 0 /usr/share/terminfo/70 0 /usr/share/terminfo/71 0 /usr/share/terminfo/76 0 /usr/share/terminfo/78 0 /usr/share/terminfo/7a 0 /usr/share/terminfo 0 /usr/share/mecabra/updates 0 /usr/share/mecabra/common/descriptions/LearningDictionaryJapanese.momd 0 /usr/share/mecabra/common/descriptions/JapaneseBigram.momd 0 /usr/share/mecabra/common/descriptions/LearningDictionary.momd 0 /usr/share/mecabra/common/descriptions 0 /usr/share/mecabra/common 0 /usr/share/mecabra 512 /usr/share/httpd/icons/small 2112 /usr/share/httpd/icons 0 /usr/share/httpd/build 0 /usr/share/httpd/error/include 80 /usr/share/httpd/error 2192 /usr/share/httpd 0 /usr/share/kdrl.bundle/_CodeSignature 0 /usr/share/kdrl.bundle 16 /usr/share/sandbox 0 /usr/share/examples/DTTk 0 /usr/share/examples 544 /usr/share/screen/utf8encodings 544 /usr/share/screen 5272 /usr/share/germantok 680 /usr/share/doc/groff/1.19.2/html/mom 680 /usr/share/doc/groff/1.19.2/html 152 /usr/share/doc/groff/1.19.2/examples/mom 480 /usr/share/doc/groff/1.19.2/examples 1648 /usr/share/doc/groff/1.19.2 1648 /usr/share/doc/groff 3192 /usr/share/doc/bash 2184 /usr/share/doc/postfix/html 0 /usr/share/doc/postfix/examples 3064 /usr/share/doc/postfix 544 /usr/share/doc/cups/images 688 /usr/share/doc/cups/help 1248 /usr/share/doc/cups 9152 /usr/share/doc 16 /usr/share/texinfo 0 /usr/share/zoneinfo.default/Indian 0 /usr/share/zoneinfo.default/Atlantic 0 /usr/share/zoneinfo.default/US 0 /usr/share/zoneinfo.default/Brazil 32 /usr/share/zoneinfo.default/Pacific 0 /usr/share/zoneinfo.default/Arctic 0 /usr/share/zoneinfo.default/America/Indiana 0 /usr/share/zoneinfo.default/America/Argentina 0 /usr/share/zoneinfo.default/America/Kentucky 0 /usr/share/zoneinfo.default/America/North_Dakota 32 /usr/share/zoneinfo.default/America 0 /usr/share/zoneinfo.default/Australia 0 /usr/share/zoneinfo.default/Etc 32 /usr/share/zoneinfo.default/Asia 0 /usr/share/zoneinfo.default/Antarctica 0 /usr/share/zoneinfo.default/Europe 0 /usr/share/zoneinfo.default/Mexico 0 /usr/share/zoneinfo.default/Africa 0 /usr/share/zoneinfo.default/Chile 0 /usr/share/zoneinfo.default/Canada 120 /usr/share/zoneinfo.default 0 /usr/share/zsh/5.3/scripts 1360 /usr/share/zsh/5.3/functions 40 /usr/share/zsh/5.3/help 1400 /usr/share/zsh/5.3 0 /usr/share/zsh/site-functions 1400 /usr/share/zsh 2896 /usr/share/dict 16 /usr/share/cups/drv 11656 /usr/share/cups/ipptool 0 /usr/share/cups/ppdc 0 /usr/share/cups/banners 0 /usr/share/cups/examples 0 /usr/share/cups/model 0 /usr/share/cups/templates 0 /usr/share/cups/mime 0 /usr/share/cups/profiles 0 /usr/share/cups/data 11672 /usr/share/cups 24872 /usr/share/icu 0 /usr/share/uucp 0 /usr/share/thermald.bundle/Contents/_CodeSignature 0 /usr/share/thermald.bundle/Contents/Resources 0 /usr/share/thermald.bundle/Contents 0 /usr/share/thermald.bundle 361592 /usr/share 2141800 /usr jc-1.17.3/tests/fixtures/osx-10.14.6/file.json000066400000000000000000000070051415226333200204450ustar00rootroot00000000000000[{"filename": "Applications", "type": "directory"}, {"filename": "Desktop", "type": "directory"}, {"filename": "Documents", "type": "directory"}, {"filename": "Downloads", "type": "directory"}, {"filename": "Library", "type": "directory"}, {"filename": "Movies", "type": "directory"}, {"filename": "Music", "type": "directory"}, {"filename": "Pictures", "type": "directory"}, {"filename": "Postman", "type": "directory"}, {"filename": "Public", "type": "directory"}, {"filename": "Virtual Machines.localized", "type": "directory"}, {"filename": "another file with spaces", "type": "empty"}, {"filename": "ansible", "type": "directory"}, {"filename": "api", "type": "directory"}, {"filename": "argstest.py", "type": "Python script text executable, ASCII text"}, {"filename": "blkid-p.out", "type": "ASCII text"}, {"filename": "blkid-pi.out", "type": "ASCII text, with very long lines"}, {"filename": "blkid-ubuntu.out", "type": "ASCII text"}, {"filename": "blkid-udev-mult.out", "type": "ASCII text"}, {"filename": "blkid-udev.out", "type": "ASCII text"}, {"filename": "blkid.out", "type": "ASCII text"}, {"filename": "cd_catalog.xml", "type": "XML 1.0 document text, ASCII text, with CRLF line terminators"}, {"filename": "centosserial.sh", "type": "Bourne-Again shell script text executable, UTF-8 Unicode text"}, {"filename": "coreosserial.sh", "type": "Bourne-Again shell script text executable, UTF-8 Unicode text"}, {"filename": "fazserial.sh", "type": "Bourne-Again shell script text executable, UTF-8 Unicode text"}, {"filename": "fgt1serial.sh", "type": "Bourne-Again shell script text executable, UTF-8 Unicode text"}, {"filename": "fgt2serial.sh", "type": "Bourne-Again shell script text executable, UTF-8 Unicode text"}, {"filename": "file with spaces", "type": "empty"}, {"filename": "fortiweb-docker.sh", "type": "Bourne-Again shell script text executable, ASCII text"}, {"filename": "ftmgr.sh", "type": "Bourne-Again shell script text executable, ASCII text"}, {"filename": "git", "type": "directory"}, {"filename": "google-cloud-sdk", "type": "directory"}, {"filename": "ifconfiglines.json", "type": "ASCII text, with very long lines"}, {"filename": "jc-jq-jp-ps-cpu.gif", "type": "GIF image data, version 89a, 1572 x 1212"}, {"filename": "jc-jq-jp-uptime-small.gif", "type": "GIF image data, version 89a, 800 x 617"}, {"filename": "jc-jq-jp-uptime.gif", "type": "GIF image data, version 89a, 1572 x 1212"}, {"filename": "jp", "type": "Mach-O 64-bit executable x86_64"}, {"filename": "jp_1.1.12_osx_x86_64.zip", "type": "Zip archive data, at least v2.0 to extract"}, {"filename": "jupyter.sh", "type": "ASCII text"}, {"filename": "kb.sh", "type": "Bourne-Again shell script text executable, ASCII text"}, {"filename": "kbtesting.txt", "type": "ASCII text"}, {"filename": "kelly-aws.pem", "type": "PEM RSA private key"}, {"filename": "kellyargtest.py", "type": "Python script text executable, ASCII text"}, {"filename": "loadplot.sh", "type": "Bourne-Again shell script text executable, ASCII text"}, {"filename": "ls-R.out", "type": "UTF-8 Unicode text"}, {"filename": "ls-lR-empty-folder.out", "type": "ASCII text"}, {"filename": "ls-lR.out", "type": "UTF-8 Unicode text"}, {"filename": "myrecording", "type": "data"}, {"filename": "smcclient.jnlp", "type": "XML 1.0 document text, ASCII text"}, {"filename": "table.py", "type": "Python script text executable, ASCII text"}, {"filename": "test.ini", "type": "ASCII text"}, {"filename": "ubuntuserial.sh", "type": "Bourne-Again shell script text executable, UTF-8 Unicode text"}, {"filename": "utils", "type": "directory"}] jc-1.17.3/tests/fixtures/osx-10.14.6/file.out000066400000000000000000000055121415226333200203040ustar00rootroot00000000000000Applications: directory Desktop: directory Documents: directory Downloads: directory Library: directory Movies: directory Music: directory Pictures: directory Postman: directory Public: directory Virtual Machines.localized: directory another file with spaces: empty ansible: directory api: directory argstest.py: Python script text executable, ASCII text blkid-p.out: ASCII text blkid-pi.out: ASCII text, with very long lines blkid-ubuntu.out: ASCII text blkid-udev-mult.out: ASCII text blkid-udev.out: ASCII text blkid.out: ASCII text cd_catalog.xml: XML 1.0 document text, ASCII text, with CRLF line terminators centosserial.sh: Bourne-Again shell script text executable, UTF-8 Unicode text coreosserial.sh: Bourne-Again shell script text executable, UTF-8 Unicode text fazserial.sh: Bourne-Again shell script text executable, UTF-8 Unicode text fgt1serial.sh: Bourne-Again shell script text executable, UTF-8 Unicode text fgt2serial.sh: Bourne-Again shell script text executable, UTF-8 Unicode text file with spaces: empty fortiweb-docker.sh: Bourne-Again shell script text executable, ASCII text ftmgr.sh: Bourne-Again shell script text executable, ASCII text git: directory google-cloud-sdk: directory ifconfiglines.json: ASCII text, with very long lines jc-jq-jp-ps-cpu.gif: GIF image data, version 89a, 1572 x 1212 jc-jq-jp-uptime-small.gif: GIF image data, version 89a, 800 x 617 jc-jq-jp-uptime.gif: GIF image data, version 89a, 1572 x 1212 jp: Mach-O 64-bit executable x86_64 jp_1.1.12_osx_x86_64.zip: Zip archive data, at least v2.0 to extract jupyter.sh: ASCII text kb.sh: Bourne-Again shell script text executable, ASCII text kbtesting.txt: ASCII text kelly-aws.pem: PEM RSA private key kellyargtest.py: Python script text executable, ASCII text loadplot.sh: Bourne-Again shell script text executable, ASCII text ls-R.out: UTF-8 Unicode text ls-lR-empty-folder.out: ASCII text ls-lR.out: UTF-8 Unicode text myrecording: data smcclient.jnlp: XML 1.0 document text, ASCII text table.py: Python script text executable, ASCII text test.ini: ASCII text ubuntuserial.sh: Bourne-Again shell script text executable, UTF-8 Unicode text utils: directory jc-1.17.3/tests/fixtures/osx-10.14.6/file2.json000066400000000000000000000111531415226333200205260ustar00rootroot00000000000000[{"filename": "AFP.conf", "type": "data"}, {"filename": "afpovertcp.cfg", "type": "ASCII text"}, {"filename": "aliases", "type": "ASCII text"}, {"filename": "aliases.db", "type": "Berkeley DB 1.85 (Hash, version 2, native byte-order)"}, {"filename": "apache2", "type": "directory"}, {"filename": "asl", "type": "directory"}, {"filename": "asl.conf", "type": "ASCII text"}, {"filename": "auto_home", "type": "ASCII text"}, {"filename": "auto_master", "type": "ASCII text"}, {"filename": "autofs.conf", "type": "ASCII text"}, {"filename": "bashrc", "type": "ASCII text"}, {"filename": "bashrc_Apple_Terminal", "type": "ASCII text"}, {"filename": "com.apple.screensharing.agent.launchd", "type": "ASCII text, with no line terminators"}, {"filename": "csh.cshrc", "type": "ASCII text"}, {"filename": "csh.login", "type": "ASCII text"}, {"filename": "csh.logout", "type": "ASCII text"}, {"filename": "cups", "type": "directory"}, {"filename": "defaults", "type": "directory"}, {"filename": "dnsextd.conf", "type": "ASCII text"}, {"filename": "emond.d", "type": "directory"}, {"filename": "find.codes", "type": "empty"}, {"filename": "fstab.hd", "type": "ASCII text"}, {"filename": "ftpusers", "type": "ASCII text"}, {"filename": "gettytab", "type": "ASCII text"}, {"filename": "group", "type": "ASCII text"}, {"filename": "hosts", "type": "ASCII text"}, {"filename": "hosts.equiv", "type": "empty"}, {"filename": "irbrc", "type": "Ruby script text, ASCII text"}, {"filename": "kern_loader.conf", "type": "empty"}, {"filename": "krb5.keytab", "type": "Kerberos Keytab file, realm=LKDC:SHA1.15090DD365668FBA1B0D2D3DD43FCB7CB9381160, principal=afpserver/LKDC:SHA1.15090DD365668FBA1B0D2D3DD43FCB7CB9381160, type=1, date=Tue Jul 2 15:52:04 2019, kvno=2"}, {"filename": "localtime", "type": "timezone data, version 2, 4 gmt time flags, 4 std time flags, no leap seconds, 185 transition times, 4 abbreviation chars"}, {"filename": "locate.rc", "type": "ASCII text"}, {"filename": "mach_init.d", "type": "directory"}, {"filename": "mach_init_per_login_session.d", "type": "directory"}, {"filename": "mach_init_per_user.d", "type": "directory"}, {"filename": "mail.rc", "type": "ASCII text"}, {"filename": "man.conf", "type": "ASCII text"}, {"filename": "manpaths", "type": "ASCII text"}, {"filename": "manpaths.d", "type": "directory"}, {"filename": "master.passwd", "type": "ASCII text"}, {"filename": "nanorc", "type": "ASCII text"}, {"filename": "networks", "type": "ASCII text"}, {"filename": "newsyslog.conf", "type": "ASCII text"}, {"filename": "newsyslog.d", "type": "directory"}, {"filename": "nfs.conf", "type": "ASCII text"}, {"filename": "notify.conf", "type": "ASCII text"}, {"filename": "ntp.conf", "type": "ASCII text"}, {"filename": "ntp_opendirectory.conf", "type": "ASCII text"}, {"filename": "openldap", "type": "directory"}, {"filename": "pam.d", "type": "directory"}, {"filename": "passwd", "type": "ASCII text"}, {"filename": "paths", "type": "ASCII text"}, {"filename": "paths.d", "type": "directory"}, {"filename": "periodic", "type": "directory"}, {"filename": "pf.anchors", "type": "directory"}, {"filename": "pf.conf", "type": "ASCII text"}, {"filename": "pf.os", "type": "ASCII text"}, {"filename": "php-fpm.conf.default", "type": "ASCII text"}, {"filename": "php-fpm.d", "type": "directory"}, {"filename": "php.ini.default", "type": "ASCII text"}, {"filename": "postfix", "type": "directory"}, {"filename": "ppp", "type": "directory"}, {"filename": "profile", "type": "ASCII text"}, {"filename": "protocols", "type": "ASCII text"}, {"filename": "racoon", "type": "directory"}, {"filename": "rc.common", "type": "ASCII text"}, {"filename": "rc.netboot", "type": "POSIX shell script text executable, ASCII text"}, {"filename": "resolv.conf", "type": "ASCII text"}, {"filename": "rmtab", "type": "empty"}, {"filename": "rpc", "type": "ASCII text"}, {"filename": "rtadvd.conf", "type": "ASCII text"}, {"filename": "security", "type": "directory"}, {"filename": "services", "type": "ASCII text"}, {"filename": "services.broker", "type": "ASCII text"}, {"filename": "shells", "type": "ASCII text"}, {"filename": "snmp", "type": "directory"}, {"filename": "ssh", "type": "directory"}, {"filename": "ssl", "type": "directory"}, {"filename": "sudo_lecture", "type": "ASCII text"}, {"filename": "sudoers", "type": "c program text, ASCII text"}, {"filename": "sudoers.d", "type": "directory"}, {"filename": "syslog.conf", "type": "ASCII text"}, {"filename": "thnuclnt", "type": "directory"}, {"filename": "ttys", "type": "ASCII text"}, {"filename": "wfs", "type": "directory"}, {"filename": "xtab", "type": "empty"}, {"filename": "zprofile", "type": "ASCII text"}, {"filename": "zshrc", "type": "ASCII text"}] jc-1.17.3/tests/fixtures/osx-10.14.6/file2.out000066400000000000000000000112541415226333200203660ustar00rootroot00000000000000AFP.conf: data afpovertcp.cfg: ASCII text aliases: ASCII text aliases.db: Berkeley DB 1.85 (Hash, version 2, native byte-order) apache2: directory asl: directory asl.conf: ASCII text auto_home: ASCII text auto_master: ASCII text autofs.conf: ASCII text bashrc: ASCII text bashrc_Apple_Terminal: ASCII text com.apple.screensharing.agent.launchd: ASCII text, with no line terminators csh.cshrc: ASCII text csh.login: ASCII text csh.logout: ASCII text cups: directory defaults: directory dnsextd.conf: ASCII text emond.d: directory find.codes: empty fstab.hd: ASCII text ftpusers: ASCII text gettytab: ASCII text group: ASCII text hosts: ASCII text hosts.equiv: empty irbrc: Ruby script text, ASCII text kern_loader.conf: empty krb5.keytab: Kerberos Keytab file, realm=LKDC:SHA1.15090DD365668FBA1B0D2D3DD43FCB7CB9381160, principal=afpserver/LKDC:SHA1.15090DD365668FBA1B0D2D3DD43FCB7CB9381160, type=1, date=Tue Jul 2 15:52:04 2019, kvno=2 localtime: timezone data, version 2, 4 gmt time flags, 4 std time flags, no leap seconds, 185 transition times, 4 abbreviation chars locate.rc: ASCII text mach_init.d: directory mach_init_per_login_session.d: directory mach_init_per_user.d: directory mail.rc: ASCII text man.conf: ASCII text manpaths: ASCII text manpaths.d: directory master.passwd: ASCII text nanorc: ASCII text networks: ASCII text newsyslog.conf: ASCII text newsyslog.d: directory nfs.conf: ASCII text notify.conf: ASCII text ntp.conf: ASCII text ntp_opendirectory.conf: ASCII text openldap: directory pam.d: directory passwd: ASCII text paths: ASCII text paths.d: directory periodic: directory pf.anchors: directory pf.conf: ASCII text pf.os: ASCII text php-fpm.conf.default: ASCII text php-fpm.d: directory php.ini.default: ASCII text postfix: directory ppp: directory profile: ASCII text protocols: ASCII text racoon: directory rc.common: ASCII text rc.netboot: POSIX shell script text executable, ASCII text resolv.conf: ASCII text rmtab: empty rpc: ASCII text rtadvd.conf: ASCII text security: directory services: ASCII text services.broker: ASCII text shells: ASCII text snmp: directory ssh: directory ssl: directory sudo_lecture: ASCII text sudoers: c program text, ASCII text sudoers.d: directory syslog.conf: ASCII text thnuclnt: directory ttys: ASCII text wfs: directory xtab: empty zprofile: ASCII text zshrc: ASCII text jc-1.17.3/tests/fixtures/osx-10.14.6/file3.json000066400000000000000000000117601415226333200205330ustar00rootroot00000000000000[{"filename":"Applications","type":"directory"},{"filename":"Desktop","type":"directory"},{"filename":"Documents","type":"directory"},{"filename":"Downloads","type":"directory"},{"filename":"Library","type":"directory"},{"filename":"Movies","type":"directory"},{"filename":"Music","type":"directory"},{"filename":"Pictures","type":"directory"},{"filename":"Postman","type":"directory"},{"filename":"Public","type":"directory"},{"filename":"Virtual Machines.localized","type":"directory"},{"filename":"ansible","type":"directory"},{"filename":"api","type":"directory"},{"filename":"centosserial.sh","type":"Bourne-Again shell script text executable, UTF-8 Unicode text"},{"filename":"coreosserial.sh","type":"Bourne-Again shell script text executable, UTF-8 Unicode text"},{"filename":"data.json","type":"UTF-8 Unicode text, with very long lines"},{"filename":"fazserial.sh","type":"Bourne-Again shell script text executable, UTF-8 Unicode text"},{"filename":"fgt1serial.sh","type":"Bourne-Again shell script text executable, UTF-8 Unicode text"},{"filename":"fgt2serial.sh","type":"Bourne-Again shell script text executable, UTF-8 Unicode text"},{"filename":"file with colon: in the name","type":"empty"},{"filename":"fnditer.py","type":"ASCII text"},{"filename":"fortiweb-docker.sh","type":"Bourne-Again shell script text executable, ASCII text"},{"filename":"ftmgr.sh","type":"Bourne-Again shell script text executable, ASCII text"},{"filename":"git","type":"directory"},{"filename":"google-cloud-sdk","type":"directory"},{"filename":"ipaddr.json","type":"ASCII text, with very long lines"},{"filename":"jc-1.16.0-linux-x86_64.tar.gz","type":"gzip compressed data, last modified: Tue Jul 20 17:32:10 2021, from Unix, original size 93992960"},{"filename":"jc-1.16.1-linux-x86_64.tar.gz","type":"gzip compressed data, last modified: Tue Aug 17 20:42:30 2021, from Unix, original size 94033920"},{"filename":"jc-1.17.0-linux-x86_64.sha256","type":"ASCII text"},{"filename":"jc-1.17.0-linux-x86_64.tar.gz","type":"gzip compressed data, last modified: Sun Sep 26 22:16:00 2021, from Unix, original size 94136320"},{"filename":"jc-jq-jp-ps-cpu.gif","type":"GIF image data, version 89a, 1572 x 1212"},{"filename":"jc-jq-jp-uptime-small.gif","type":"GIF image data, version 89a, 800 x 617"},{"filename":"jc-jq-jp-uptime.gif","type":"GIF image data, version 89a, 1572 x 1212"},{"filename":"jcparsers.jlines","type":"ASCII text, with very long lines"},{"filename":"jcparsers.json","type":"ASCII text, with very long lines"},{"filename":"jello-1.4.0-linux-x86_64.tar.gz","type":"gzip compressed data, last modified: Sat Jun 19 18:19:55 2021, from Unix, original size 92006400"},{"filename":"jello-1.4.4-linux-x86_64.tar.gz","type":"gzip compressed data, last modified: Fri Jun 25 08:53:06 2021, from Unix, original size 92016640"},{"filename":"jp","type":"Mach-O 64-bit executable x86_64"},{"filename":"json-stream.py","type":"Python script text executable, ASCII text"},{"filename":"json-stream2.py","type":"Python script text executable, ASCII text"},{"filename":"jupyter.sh","type":"ASCII text"},{"filename":"kb-fortinet.pem","type":"PEM RSA private key"},{"filename":"kelly-aws.pem","type":"PEM RSA private key"},{"filename":"kelly-aws2.pem","type":"PEM RSA private key"},{"filename":"kellytest.sh","type":"Bourne-Again shell script text executable, ASCII text"},{"filename":"kping.out","type":"ASCII text"},{"filename":"loadplot.sh","type":"Bourne-Again shell script text executable, ASCII text"},{"filename":"ls.jlines","type":"UTF-8 Unicode text, with very long lines"},{"filename":"myrecording","type":"data"},{"filename":"nse-certs","type":"directory"},{"filename":"ping1.out","type":"ASCII text"},{"filename":"reading.py","type":"Python script text executable, ASCII text"},{"filename":"rpmbuild","type":"directory"},{"filename":"scroll.py","type":"Python script text executable, ASCII text"},{"filename":"state_test.py","type":"Python script text executable, ASCII text"},{"filename":"stream-profiling.xlsx","type":"Microsoft Excel 2007+"},{"filename":"test-certs.xls","type":"HTML document text, ISO-8859 text, with very long lines"},{"filename":"test-certs.xlsx","type":"Microsoft Excel 2007+"},{"filename":"test-output","type":"directory"},{"filename":"testcsv.csv","type":"ASCII text, with CR, LF line terminators"},{"filename":"testedit.py","type":"Python script text executable, ASCII text"},{"filename":"testfile.json","type":"ASCII text"},{"filename":"testfile.kb","type":"ASCII text"},{"filename":"testfile2.json","type":"ASCII text"},{"filename":"tr2dot.py","type":"Python script text executable, ASCII text"},{"filename":"traceroute.gv","type":"ASCII text"},{"filename":"traceroute.gv.pdf","type":"PDF document, version 1.5"},{"filename":"trtwitter.out","type":"ASCII text"},{"filename":"twitterdata.jlines","type":"HTML document text, ASCII text, with very long lines"},{"filename":"ubuntuserial.sh","type":"Bourne-Again shell script text executable, UTF-8 Unicode text"},{"filename":"utils","type":"directory"},{"filename":"win32.csv","type":"ASCII text, with CRLF, LF line terminators"}] jc-1.17.3/tests/fixtures/osx-10.14.6/file3.out000066400000000000000000000111471415226333200203700ustar00rootroot00000000000000Applications: directory Desktop: directory Documents: directory Downloads: directory Library: directory Movies: directory Music: directory Pictures: directory Postman: directory Public: directory Virtual Machines.localized: directory ansible: directory api: directory centosserial.sh: Bourne-Again shell script text executable, UTF-8 Unicode text coreosserial.sh: Bourne-Again shell script text executable, UTF-8 Unicode text data.json: UTF-8 Unicode text, with very long lines fazserial.sh: Bourne-Again shell script text executable, UTF-8 Unicode text fgt1serial.sh: Bourne-Again shell script text executable, UTF-8 Unicode text fgt2serial.sh: Bourne-Again shell script text executable, UTF-8 Unicode text file with colon: in the name: empty fnditer.py: ASCII text fortiweb-docker.sh: Bourne-Again shell script text executable, ASCII text ftmgr.sh: Bourne-Again shell script text executable, ASCII text git: directory google-cloud-sdk: directory ipaddr.json: ASCII text, with very long lines jc-1.16.0-linux-x86_64.tar.gz: gzip compressed data, last modified: Tue Jul 20 17:32:10 2021, from Unix, original size 93992960 jc-1.16.1-linux-x86_64.tar.gz: gzip compressed data, last modified: Tue Aug 17 20:42:30 2021, from Unix, original size 94033920 jc-1.17.0-linux-x86_64.sha256: ASCII text jc-1.17.0-linux-x86_64.tar.gz: gzip compressed data, last modified: Sun Sep 26 22:16:00 2021, from Unix, original size 94136320 jc-jq-jp-ps-cpu.gif: GIF image data, version 89a, 1572 x 1212 jc-jq-jp-uptime-small.gif: GIF image data, version 89a, 800 x 617 jc-jq-jp-uptime.gif: GIF image data, version 89a, 1572 x 1212 jcparsers.jlines: ASCII text, with very long lines jcparsers.json: ASCII text, with very long lines jello-1.4.0-linux-x86_64.tar.gz: gzip compressed data, last modified: Sat Jun 19 18:19:55 2021, from Unix, original size 92006400 jello-1.4.4-linux-x86_64.tar.gz: gzip compressed data, last modified: Fri Jun 25 08:53:06 2021, from Unix, original size 92016640 jp: Mach-O 64-bit executable x86_64 json-stream.py: Python script text executable, ASCII text json-stream2.py: Python script text executable, ASCII text jupyter.sh: ASCII text kb-fortinet.pem: PEM RSA private key kelly-aws.pem: PEM RSA private key kelly-aws2.pem: PEM RSA private key kellytest.sh: Bourne-Again shell script text executable, ASCII text kping.out: ASCII text loadplot.sh: Bourne-Again shell script text executable, ASCII text ls.jlines: UTF-8 Unicode text, with very long lines myrecording: data nse-certs: directory ping1.out: ASCII text reading.py: Python script text executable, ASCII text rpmbuild: directory scroll.py: Python script text executable, ASCII text state_test.py: Python script text executable, ASCII text stream-profiling.xlsx: Microsoft Excel 2007+ test-certs.xls: HTML document text, ISO-8859 text, with very long lines test-certs.xlsx: Microsoft Excel 2007+ test-output: directory testcsv.csv: ASCII text, with CR, LF line terminators testedit.py: Python script text executable, ASCII text testfile.json: ASCII text testfile.kb: ASCII text testfile2.json: ASCII text tr2dot.py: Python script text executable, ASCII text traceroute.gv: ASCII text traceroute.gv.pdf: PDF document, version 1.5 trtwitter.out: ASCII text twitterdata.jlines: HTML document text, ASCII text, with very long lines ubuntuserial.sh: Bourne-Again shell script text executable, UTF-8 Unicode text utils: directory win32.csv: ASCII text, with CRLF, LF line terminators jc-1.17.3/tests/fixtures/osx-10.14.6/finger.json000066400000000000000000000012741415226333200210020ustar00rootroot00000000000000[{"login":"kbrazil","name":"kbrazil","tty":"con","idle":"15d","login_time":"Mar 22 07:33","tty_writeable":false,"idle_minutes":0,"idle_hours":0,"idle_days":15,"total_idle_minutes":21600},{"login":"kbrazil","name":"kbrazil","tty":"s00","idle":null,"login_time":"Mar 22 07:34","tty_writeable":true,"idle_minutes":0,"idle_hours":0,"idle_days":0,"total_idle_minutes":0},{"login":"kbrazil","name":"kbrazil","tty":"s00","idle":"8","tty_writeable":true,"idle_minutes":8,"idle_hours":0,"idle_days":0,"total_idle_minutes":8},{"login":"kbrazil","name":"kbrazil","tty":"s00","idle":"1:19","login_time":"Mar 22 07:34","tty_writeable":true,"idle_minutes":19,"idle_hours":1,"idle_days":0,"total_idle_minutes":79}] jc-1.17.3/tests/fixtures/osx-10.14.6/finger.out000066400000000000000000000004351415226333200206360ustar00rootroot00000000000000Login Name TTY Idle Login Time Office Phone kbrazil kbrazil *con 15d Mar 22 07:33 kbrazil kbrazil s00 Mar 22 07:34 kbrazil kbrazil s00 8 Tue 09:04 kbrazil kbrazil s00 1:19 Mar 22 07:34 jc-1.17.3/tests/fixtures/osx-10.14.6/group.json000066400000000000000000000226561415226333200206730ustar00rootroot00000000000000[{"group_name": "nobody", "password": "*", "gid": -2, "members": []}, {"group_name": "nogroup", "password": "*", "gid": -1, "members": []}, {"group_name": "wheel", "password": "*", "gid": 0, "members": ["root"]}, {"group_name": "daemon", "password": "*", "gid": 1, "members": ["root"]}, {"group_name": "kmem", "password": "*", "gid": 2, "members": ["root"]}, {"group_name": "sys", "password": "*", "gid": 3, "members": ["root"]}, {"group_name": "tty", "password": "*", "gid": 4, "members": ["root"]}, {"group_name": "operator", "password": "*", "gid": 5, "members": ["root"]}, {"group_name": "mail", "password": "*", "gid": 6, "members": ["_teamsserver"]}, {"group_name": "bin", "password": "*", "gid": 7, "members": []}, {"group_name": "procview", "password": "*", "gid": 8, "members": ["root"]}, {"group_name": "procmod", "password": "*", "gid": 9, "members": ["root"]}, {"group_name": "owner", "password": "*", "gid": 10, "members": []}, {"group_name": "everyone", "password": "*", "gid": 12, "members": []}, {"group_name": "_taskgated", "password": "*", "gid": 13, "members": ["_taskgated"]}, {"group_name": "group", "password": "*", "gid": 16, "members": []}, {"group_name": "staff", "password": "*", "gid": 20, "members": ["root"]}, {"group_name": "_networkd", "password": "*", "gid": 24, "members": []}, {"group_name": "_installassistant", "password": "*", "gid": 25, "members": []}, {"group_name": "_lp", "password": "*", "gid": 26, "members": []}, {"group_name": "_postfix", "password": "*", "gid": 27, "members": []}, {"group_name": "_postdrop", "password": "*", "gid": 28, "members": []}, {"group_name": "certusers", "password": "*", "gid": 29, "members": ["root", "_jabber", "_postfix", "_cyrus", "_calendar", "_dovecot"]}, {"group_name": "_keytabusers", "password": "*", "gid": 30, "members": ["_calendar", "_jabber", "_postfix"]}, {"group_name": "_scsd", "password": "*", "gid": 31, "members": []}, {"group_name": "_ces", "password": "*", "gid": 32, "members": []}, {"group_name": "_appstore", "password": "*", "gid": 33, "members": ["_appstore"]}, {"group_name": "utmp", "password": "*", "gid": 45, "members": []}, {"group_name": "authedusers", "password": "*", "gid": 50, "members": []}, {"group_name": "interactusers", "password": "*", "gid": 51, "members": []}, {"group_name": "netusers", "password": "*", "gid": 52, "members": []}, {"group_name": "consoleusers", "password": "*", "gid": 53, "members": []}, {"group_name": "_mcxalr", "password": "*", "gid": 54, "members": []}, {"group_name": "_appleevents", "password": "*", "gid": 55, "members": []}, {"group_name": "_geod", "password": "*", "gid": 56, "members": []}, {"group_name": "_devdocs", "password": "*", "gid": 59, "members": []}, {"group_name": "_sandbox", "password": "*", "gid": 60, "members": []}, {"group_name": "localaccounts", "password": "*", "gid": 61, "members": []}, {"group_name": "netaccounts", "password": "*", "gid": 62, "members": []}, {"group_name": "_mdnsresponder", "password": "*", "gid": 65, "members": []}, {"group_name": "_uucp", "password": "*", "gid": 66, "members": []}, {"group_name": "_ard", "password": "*", "gid": 67, "members": []}, {"group_name": "dialer", "password": "*", "gid": 68, "members": []}, {"group_name": "network", "password": "*", "gid": 69, "members": []}, {"group_name": "_www", "password": "*", "gid": 70, "members": ["_devicemgr", "_teamsserver"]}, {"group_name": "_eppc", "password": "*", "gid": 71, "members": ["_eppc"]}, {"group_name": "_cvs", "password": "*", "gid": 72, "members": []}, {"group_name": "_svn", "password": "*", "gid": 73, "members": []}, {"group_name": "_mysql", "password": "*", "gid": 74, "members": []}, {"group_name": "_sshd", "password": "*", "gid": 75, "members": []}, {"group_name": "_qtss", "password": "*", "gid": 76, "members": []}, {"group_name": "_mailman", "password": "*", "gid": 78, "members": []}, {"group_name": "_appserverusr", "password": "*", "gid": 79, "members": []}, {"group_name": "admin", "password": "*", "gid": 80, "members": ["root"]}, {"group_name": "_appserveradm", "password": "*", "gid": 81, "members": []}, {"group_name": "_clamav", "password": "*", "gid": 82, "members": []}, {"group_name": "_amavisd", "password": "*", "gid": 83, "members": []}, {"group_name": "_jabber", "password": "*", "gid": 84, "members": []}, {"group_name": "_appowner", "password": "*", "gid": 87, "members": []}, {"group_name": "_windowserver", "password": "*", "gid": 88, "members": []}, {"group_name": "_spotlight", "password": "*", "gid": 89, "members": []}, {"group_name": "accessibility", "password": "*", "gid": 90, "members": []}, {"group_name": "_tokend", "password": "*", "gid": 91, "members": []}, {"group_name": "_securityagent", "password": "*", "gid": 92, "members": []}, {"group_name": "_calendar", "password": "*", "gid": 93, "members": ["_teamsserver"]}, {"group_name": "_teamsserver", "password": "*", "gid": 94, "members": ["_devicemgr"]}, {"group_name": "_update_sharing", "password": "*", "gid": 95, "members": []}, {"group_name": "_installer", "password": "*", "gid": 96, "members": []}, {"group_name": "_atsserver", "password": "*", "gid": 97, "members": []}, {"group_name": "_lpadmin", "password": "*", "gid": 98, "members": []}, {"group_name": "_unknown", "password": "*", "gid": 99, "members": []}, {"group_name": "_lpoperator", "password": "*", "gid": 100, "members": []}, {"group_name": "_softwareupdate", "password": "*", "gid": 200, "members": ["_softwareupdate"]}, {"group_name": "_guest", "password": "*", "gid": 201, "members": []}, {"group_name": "_coreaudiod", "password": "*", "gid": 202, "members": []}, {"group_name": "_screensaver", "password": "*", "gid": 203, "members": []}, {"group_name": "_developer", "password": "*", "gid": 204, "members": []}, {"group_name": "_locationd", "password": "*", "gid": 205, "members": []}, {"group_name": "_detachedsig", "password": "*", "gid": 207, "members": ["_locationd"]}, {"group_name": "_trustevaluationagent", "password": "*", "gid": 208, "members": []}, {"group_name": "_odchpass", "password": "*", "gid": 209, "members": ["_teamsserver"]}, {"group_name": "_timezone", "password": "*", "gid": 210, "members": []}, {"group_name": "_lda", "password": "*", "gid": 211, "members": []}, {"group_name": "_cvms", "password": "*", "gid": 212, "members": []}, {"group_name": "_usbmuxd", "password": "*", "gid": 213, "members": []}, {"group_name": "_postgres", "password": "*", "gid": 216, "members": ["_devicemgr", "_calendar", "_teamsserver", "_xserverdocs"]}, {"group_name": "_devicemgr", "password": "*", "gid": 220, "members": []}, {"group_name": "_webauthserver", "password": "*", "gid": 221, "members": ["_teamsserver", "_devicemgr"]}, {"group_name": "_netbios", "password": "*", "gid": 222, "members": []}, {"group_name": "_warmd", "password": "*", "gid": 224, "members": ["_warmd"]}, {"group_name": "_dovenull", "password": "*", "gid": 227, "members": []}, {"group_name": "_netstatistics", "password": "*", "gid": 228, "members": []}, {"group_name": "_assetcache", "password": "*", "gid": 235, "members": []}, {"group_name": "_coremediaiod", "password": "*", "gid": 236, "members": []}, {"group_name": "_launchservicesd", "password": "*", "gid": 239, "members": []}, {"group_name": "_iconservices", "password": "*", "gid": 240, "members": []}, {"group_name": "_distnote", "password": "*", "gid": 241, "members": []}, {"group_name": "_nsurlsessiond", "password": "*", "gid": 242, "members": []}, {"group_name": "_nsurlstoraged", "password": "*", "gid": 243, "members": []}, {"group_name": "_displaypolicyd", "password": "*", "gid": 244, "members": []}, {"group_name": "_astris", "password": "*", "gid": 245, "members": []}, {"group_name": "_gamecontrollerd", "password": "*", "gid": 247, "members": []}, {"group_name": "_mbsetupuser", "password": "*", "gid": 248, "members": []}, {"group_name": "_ondemand", "password": "*", "gid": 249, "members": []}, {"group_name": "_analyticsusers", "password": "*", "gid": 250, "members": ["_analyticsd", "_networkd", "_timed", "_reportmemoryexception"]}, {"group_name": "_xserverdocs", "password": "*", "gid": 251, "members": []}, {"group_name": "_wwwproxy", "password": "*", "gid": 252, "members": []}, {"group_name": "_mobileasset", "password": "*", "gid": 253, "members": []}, {"group_name": "_findmydevice", "password": "*", "gid": 254, "members": []}, {"group_name": "_datadetectors", "password": "*", "gid": 257, "members": []}, {"group_name": "_captiveagent", "password": "*", "gid": 258, "members": []}, {"group_name": "_ctkd", "password": "*", "gid": 259, "members": []}, {"group_name": "_applepay", "password": "*", "gid": 260, "members": []}, {"group_name": "_hidd", "password": "*", "gid": 261, "members": []}, {"group_name": "_cmiodalassistants", "password": "*", "gid": 262, "members": []}, {"group_name": "_analyticsd", "password": "*", "gid": 263, "members": ["_analyticsd"]}, {"group_name": "_webdeveloper", "password": "*", "gid": 264, "members": []}, {"group_name": "_fpsd", "password": "*", "gid": 265, "members": ["_fpsd"]}, {"group_name": "_timed", "password": "*", "gid": 266, "members": []}, {"group_name": "_reportmemoryexception", "password": "*", "gid": 269, "members": ["_reportmemoryexception"]}, {"group_name": "com.apple.access_ftp", "password": "*", "gid": 395, "members": []}, {"group_name": "com.apple.access_disabled", "password": "*", "gid": 396, "members": []}, {"group_name": "com.apple.access_sessionkey", "password": "*", "gid": 397, "members": []}, {"group_name": "com.apple.access_screensharing", "password": "*", "gid": 398, "members": []}, {"group_name": "com.apple.access_ssh", "password": "*", "gid": 399, "members": []}] jc-1.17.3/tests/fixtures/osx-10.14.6/group.out000066400000000000000000000054071415226333200205240ustar00rootroot00000000000000## # Group Database # # Note that this file is consulted directly only when the system is running # in single-user mode. At other times this information is provided by # Open Directory. # # See the opendirectoryd(8) man page for additional information about # Open Directory. ## nobody:*:-2: nogroup:*:-1: wheel:*:0:root daemon:*:1:root kmem:*:2:root sys:*:3:root tty:*:4:root operator:*:5:root mail:*:6:_teamsserver bin:*:7: procview:*:8:root procmod:*:9:root owner:*:10: everyone:*:12: _taskgated:*:13:_taskgated group:*:16: staff:*:20:root _networkd:*:24: _installassistant:*:25: _lp:*:26: _postfix:*:27: _postdrop:*:28: certusers:*:29:root,_jabber,_postfix,_cyrus,_calendar,_dovecot _keytabusers:*:30:_calendar,_jabber,_postfix _scsd:*:31: _ces:*:32: _appstore:*:33:_appstore utmp:*:45: authedusers:*:50: interactusers:*:51: netusers:*:52: consoleusers:*:53: _mcxalr:*:54: _appleevents:*:55: _geod:*:56: _devdocs:*:59: _sandbox:*:60: localaccounts:*:61: netaccounts:*:62: _mdnsresponder:*:65: _uucp:*:66: _ard:*:67: dialer:*:68: network:*:69: _www:*:70:_devicemgr,_teamsserver _eppc:*:71:_eppc _cvs:*:72: _svn:*:73: _mysql:*:74: _sshd:*:75: _qtss:*:76: _mailman:*:78: _appserverusr:*:79: admin:*:80:root _appserveradm:*:81: _clamav:*:82: _amavisd:*:83: _jabber:*:84: _appowner:*:87: _windowserver:*:88: _spotlight:*:89: accessibility:*:90: _tokend:*:91: _securityagent:*:92: _calendar:*:93:_teamsserver _teamsserver:*:94:_devicemgr _update_sharing:*:95: _installer:*:96: _atsserver:*:97: _lpadmin:*:98: _unknown:*:99: _lpoperator:*:100: _softwareupdate:*:200:_softwareupdate _guest:*:201: _coreaudiod:*:202: _screensaver:*:203: _developer:*:204: _locationd:*:205: _detachedsig:*:207:_locationd _trustevaluationagent:*:208: _odchpass:*:209:_teamsserver _timezone:*:210: _lda:*:211: _cvms:*:212: _usbmuxd:*:213: _postgres:*:216:_devicemgr,_calendar,_teamsserver,_xserverdocs _devicemgr:*:220: _webauthserver:*:221:_teamsserver,_devicemgr _netbios:*:222: _warmd:*:224:_warmd _dovenull:*:227: _netstatistics:*:228: _assetcache:*:235: _coremediaiod:*:236: _launchservicesd:*:239: _iconservices:*:240: _distnote:*:241: _nsurlsessiond:*:242: _nsurlstoraged:*:243: _displaypolicyd:*:244: _astris:*:245: _gamecontrollerd:*:247: _mbsetupuser:*:248: _ondemand:*:249: _analyticsusers:*:250:_analyticsd,_networkd,_timed,_reportmemoryexception _xserverdocs:*:251: _wwwproxy:*:252: _mobileasset:*:253: _findmydevice:*:254: _datadetectors:*:257: _captiveagent:*:258: _ctkd:*:259: _applepay:*:260: _hidd:*:261: _cmiodalassistants:*:262: _analyticsd:*:263:_analyticsd _webdeveloper:*:264: _fpsd:*:265:_fpsd _timed:*:266: _reportmemoryexception:*:269:_reportmemoryexception com.apple.access_ftp:*:395: com.apple.access_disabled:*:396: com.apple.access_sessionkey:*:397: com.apple.access_screensharing:*:398: com.apple.access_ssh:*:399: jc-1.17.3/tests/fixtures/osx-10.14.6/id.json000066400000000000000000000013671415226333200201270ustar00rootroot00000000000000{"uid": {"id": 501, "name": "kbrazil"}, "gid": {"id": 20, "name": "staff"}, "groups": [{"id": 20, "name": "staff"}, {"id": 501, "name": "access_bpf"}, {"id": 12, "name": "everyone"}, {"id": 61, "name": "localaccounts"}, {"id": 79, "name": "_appserverusr"}, {"id": 80, "name": "admin"}, {"id": 81, "name": "_appserveradm"}, {"id": 98, "name": "_lpadmin"}, {"id": 703, "name": "com.apple.sharepoint.group.3"}, {"id": 701, "name": "com.apple.sharepoint.group.1"}, {"id": 702, "name": "com.apple.sharepoint.group.2"}, {"id": 33, "name": "_appstore"}, {"id": 100, "name": "_lpoperator"}, {"id": 204, "name": "_developer"}, {"id": 250, "name": "_analyticsusers"}, {"id": 395, "name": "com.apple.access_ftp"}, {"id": 398, "name": "com.apple.access_screensharing"}]} jc-1.17.3/tests/fixtures/osx-10.14.6/id.out000066400000000000000000000006021415226333200177540ustar00rootroot00000000000000uid=501(kbrazil) gid=20(staff) groups=20(staff),501(access_bpf),12(everyone),61(localaccounts),79(_appserverusr),80(admin),81(_appserveradm),98(_lpadmin),703(com.apple.sharepoint.group.3),701(com.apple.sharepoint.group.1),702(com.apple.sharepoint.group.2),33(_appstore),100(_lpoperator),204(_developer),250(_analyticsusers),395(com.apple.access_ftp),398(com.apple.access_screensharing) jc-1.17.3/tests/fixtures/osx-10.14.6/ifconfig.json000066400000000000000000000251071415226333200213150ustar00rootroot00000000000000[{"name": "lo0", "flags": 8049, "state": ["UP", "LOOPBACK", "RUNNING", "MULTICAST"], "mtu": 16384, "ipv4_addr": "127.0.0.1", "ipv4_mask": "255.0.0.0", "ipv4_bcast": null, "ipv6_addr": "fe80::1", "ipv6_mask": 64, "ipv6_scope": "0x1", "type": null, "mac_addr": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "gif0", "flags": 8010, "state": ["POINTOPOINT", "MULTICAST"], "mtu": 1280, "type": null, "mac_addr": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "ipv6_addr": null, "ipv6_mask": null, "ipv6_scope": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "stf0", "flags": 0, "state": null, "mtu": 1280, "type": null, "mac_addr": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "ipv6_addr": null, "ipv6_mask": null, "ipv6_scope": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "XHC1", "flags": 0, "state": null, "mtu": 0, "type": null, "mac_addr": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "ipv6_addr": null, "ipv6_mask": null, "ipv6_scope": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "XHC0", "flags": 0, "state": null, "mtu": 0, "type": null, "mac_addr": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "ipv6_addr": null, "ipv6_mask": null, "ipv6_scope": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "XHC20", "flags": 0, "state": null, "mtu": 0, "type": null, "mac_addr": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "ipv6_addr": null, "ipv6_mask": null, "ipv6_scope": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "en5", "flags": 8863, "state": ["UP", "BROADCAST", "SMART", "RUNNING", "SIMPLEX", "MULTICAST"], "mtu": 1500, "ipv6_addr": "fe80::aede:48ff:fe00:1323", "ipv6_mask": 64, "ipv6_scope": "0x7", "mac_addr": "ac:de:48:00:13:23", "type": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "en0", "flags": 8863, "state": ["UP", "BROADCAST", "SMART", "RUNNING", "SIMPLEX", "MULTICAST"], "mtu": 1500, "ipv4_addr": "192.168.1.72", "ipv4_mask": "255.255.255.0", "ipv4_bcast": "192.168.1.255", "ipv6_addr": "fe80::8b7:1281:7499:b504", "ipv6_mask": 64, "ipv6_scope": "0x8", "mac_addr": "f0:18:98:03:d9:30", "type": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "p2p0", "flags": 8843, "state": ["UP", "BROADCAST", "RUNNING", "SIMPLEX", "MULTICAST"], "mtu": 2304, "mac_addr": "02:18:98:03:f8:49", "type": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "ipv6_addr": null, "ipv6_mask": null, "ipv6_scope": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "awdl0", "flags": 8943, "state": ["UP", "BROADCAST", "RUNNING", "PROMISC", "SIMPLEX", "MULTICAST"], "mtu": 1484, "ipv6_addr": "fe80::1c06:52ff:feda:9b86", "ipv6_mask": 64, "ipv6_scope": "0xa", "mac_addr": "1e:06:52:da:9b:86", "type": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "en1", "flags": 8963, "state": ["UP", "BROADCAST", "SMART", "RUNNING", "PROMISC", "SIMPLEX", "MULTICAST"], "mtu": 1500, "mac_addr": "02:00:31:81:83:05", "type": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "ipv6_addr": null, "ipv6_mask": null, "ipv6_scope": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "en2", "flags": 8963, "state": ["UP", "BROADCAST", "SMART", "RUNNING", "PROMISC", "SIMPLEX", "MULTICAST"], "mtu": 1500, "mac_addr": "02:00:31:81:94:10", "type": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "ipv6_addr": null, "ipv6_mask": null, "ipv6_scope": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "en3", "flags": 8963, "state": ["UP", "BROADCAST", "SMART", "RUNNING", "PROMISC", "SIMPLEX", "MULTICAST"], "mtu": 1500, "mac_addr": "02:00:31:81:94:06", "type": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "ipv6_addr": null, "ipv6_mask": null, "ipv6_scope": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "en4", "flags": 8963, "state": ["UP", "BROADCAST", "SMART", "RUNNING", "PROMISC", "SIMPLEX", "MULTICAST"], "mtu": 1500, "mac_addr": "02:00:31:81:94:05", "type": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "ipv6_addr": null, "ipv6_mask": null, "ipv6_scope": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "bridge0", "flags": 8863, "state": ["UP", "BROADCAST", "SMART", "RUNNING", "SIMPLEX", "MULTICAST"], "mtu": 1500, "mac_addr": "02:00:31:81:94:02", "type": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "ipv6_addr": null, "ipv6_mask": null, "ipv6_scope": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "utun0", "flags": 8051, "state": ["UP", "POINTOPOINT", "RUNNING", "MULTICAST"], "mtu": 2000, "ipv6_addr": "fe80::cec:23d0:8cf7:c88e", "ipv6_mask": 64, "ipv6_scope": "0x10", "type": null, "mac_addr": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "utun1", "flags": 8051, "state": ["UP", "POINTOPOINT", "RUNNING", "MULTICAST"], "mtu": 1380, "ipv6_addr": "fe80::cf42:647e:9077:7bcb", "ipv6_mask": 64, "ipv6_scope": "0x11", "type": null, "mac_addr": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "utun2", "flags": 8051, "state": ["UP", "POINTOPOINT", "RUNNING", "MULTICAST"], "mtu": 1380, "ipv6_addr": "fe80::f67f:be47:695a:f5b1", "ipv6_mask": 64, "ipv6_scope": "0x12", "type": null, "mac_addr": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "utun3", "flags": 8051, "state": ["UP", "POINTOPOINT", "RUNNING", "MULTICAST"], "mtu": 1380, "ipv6_addr": "fe80::2998:653d:a6da:9ca5", "ipv6_mask": 64, "ipv6_scope": "0x13", "type": null, "mac_addr": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "utun4", "flags": 8051, "state": ["UP", "POINTOPOINT", "RUNNING", "MULTICAST"], "mtu": 1380, "ipv6_addr": "fe80::8e0f:4631:2328:5209", "ipv6_mask": 64, "ipv6_scope": "0x14", "type": null, "mac_addr": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}] jc-1.17.3/tests/fixtures/osx-10.14.6/ifconfig.out000077500000000000000000000073031415226333200211540ustar00rootroot00000000000000lo0: flags=8049 mtu 16384 options=1203 inet 127.0.0.1 netmask 0xff000000 inet6 ::1 prefixlen 128 inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1 nd6 options=201 gif0: flags=8010 mtu 1280 stf0: flags=0<> mtu 1280 XHC1: flags=0<> mtu 0 XHC0: flags=0<> mtu 0 XHC20: flags=0<> mtu 0 en5: flags=8863 mtu 1500 ether ac:de:48:00:13:23 inet6 fe80::aede:48ff:fe00:1323%en5 prefixlen 64 scopeid 0x7 nd6 options=201 media: autoselect status: active en0: flags=8863 mtu 1500 ether f0:18:98:03:d9:30 inet6 fe80::8b7:1281:7499:b504%en0 prefixlen 64 secured scopeid 0x8 inet 192.168.1.72 netmask 0xffffff00 broadcast 192.168.1.255 inet6 2600:1700:bab0:d40:bb:9ad:34c5:2e9a prefixlen 64 autoconf secured inet6 2600:1700:bab0:d40:4573:9380:5ecb:ef52 prefixlen 64 autoconf temporary inet6 2600:1700:bab0:d40::24 prefixlen 64 dynamic nd6 options=201 media: autoselect status: active p2p0: flags=8843 mtu 2304 ether 02:18:98:03:f8:49 media: autoselect status: inactive awdl0: flags=8943 mtu 1484 ether 1e:06:52:da:9b:86 inet6 fe80::1c06:52ff:feda:9b86%awdl0 prefixlen 64 scopeid 0xa nd6 options=201 media: autoselect status: active en1: flags=8963 mtu 1500 options=60 ether 02:00:31:81:83:05 media: autoselect status: inactive en2: flags=8963 mtu 1500 options=60 ether 02:00:31:81:94:10 media: autoselect status: inactive en3: flags=8963 mtu 1500 options=60 ether 02:00:31:81:94:06 media: autoselect status: inactive en4: flags=8963 mtu 1500 options=60 ether 02:00:31:81:94:05 media: autoselect status: inactive bridge0: flags=8863 mtu 1500 options=63 ether 02:00:31:81:94:02 Configuration: id 0:0:0:0:0:0 priority 0 hellotime 0 fwddelay 0 maxage 0 holdcnt 0 proto stp maxaddr 100 timeout 1200 root id 0:0:0:0:0:0 priority 0 ifcost 0 port 0 ipfilter disabled flags 0x2 member: en1 flags=3 ifmaxaddr 0 port 11 priority 0 path cost 0 member: en2 flags=3 ifmaxaddr 0 port 12 priority 0 path cost 0 member: en3 flags=3 ifmaxaddr 0 port 13 priority 0 path cost 0 member: en4 flags=3 ifmaxaddr 0 port 14 priority 0 path cost 0 nd6 options=201 media: status: inactive utun0: flags=8051 mtu 2000 inet6 fe80::cec:23d0:8cf7:c88e%utun0 prefixlen 64 scopeid 0x10 nd6 options=201 utun1: flags=8051 mtu 1380 inet6 fe80::cf42:647e:9077:7bcb%utun1 prefixlen 64 scopeid 0x11 nd6 options=201 utun2: flags=8051 mtu 1380 inet6 fe80::f67f:be47:695a:f5b1%utun2 prefixlen 64 scopeid 0x12 nd6 options=201 utun3: flags=8051 mtu 1380 inet6 fe80::2998:653d:a6da:9ca5%utun3 prefixlen 64 scopeid 0x13 nd6 options=201 utun4: flags=8051 mtu 1380 inet6 fe80::8e0f:4631:2328:5209%utun4 prefixlen 64 scopeid 0x14 nd6 options=201 jc-1.17.3/tests/fixtures/osx-10.14.6/ifconfig2.json000066400000000000000000000261571415226333200214050ustar00rootroot00000000000000[{"name": "lo0", "flags": 8049, "state": ["UP", "LOOPBACK", "RUNNING", "MULTICAST"], "mtu": 16384, "ipv4_addr": "127.0.0.1", "ipv4_mask": "255.0.0.0", "ipv4_bcast": null, "ipv6_addr": "fe80::1", "ipv6_mask": 64, "ipv6_scope": "0x1", "type": null, "mac_addr": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "gif0", "flags": 8010, "state": ["POINTOPOINT", "MULTICAST"], "mtu": 1280, "type": null, "mac_addr": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "ipv6_addr": null, "ipv6_mask": null, "ipv6_scope": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "stf0", "flags": 0, "state": null, "mtu": 1280, "type": null, "mac_addr": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "ipv6_addr": null, "ipv6_mask": null, "ipv6_scope": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "XHC0", "flags": 0, "state": null, "mtu": 0, "type": null, "mac_addr": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "ipv6_addr": null, "ipv6_mask": null, "ipv6_scope": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "XHC1", "flags": 0, "state": null, "mtu": 0, "type": null, "mac_addr": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "ipv6_addr": null, "ipv6_mask": null, "ipv6_scope": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "XHC20", "flags": 0, "state": null, "mtu": 0, "type": null, "mac_addr": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "ipv6_addr": null, "ipv6_mask": null, "ipv6_scope": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "VHC128", "flags": 0, "state": null, "mtu": 0, "type": null, "mac_addr": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "ipv6_addr": null, "ipv6_mask": null, "ipv6_scope": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "en5", "flags": 8863, "state": ["UP", "BROADCAST", "SMART", "RUNNING", "SIMPLEX", "MULTICAST"], "mtu": 1500, "ipv6_addr": "fe80::aede:48ff:fe00:1020", "ipv6_mask": 64, "ipv6_scope": "0x8", "mac_addr": "ac:de:48:00:10:20", "type": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "ap1", "flags": 8802, "state": ["BROADCAST", "SIMPLEX", "MULTICAST"], "mtu": 1500, "mac_addr": "a6:83:e7:2d:63:8e", "type": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "ipv6_addr": null, "ipv6_mask": null, "ipv6_scope": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "en0", "flags": 8863, "state": ["UP", "BROADCAST", "SMART", "RUNNING", "SIMPLEX", "MULTICAST"], "mtu": 1500, "ipv4_addr": "192.168.1.221", "ipv4_mask": "255.255.255.0", "ipv4_bcast": "192.168.1.255", "ipv6_addr": "fe80::4dd:cbd7:2743:da63", "ipv6_mask": 64, "ipv6_scope": "0xa", "mac_addr": "a4:83:e7:2d:63:8e", "type": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "p2p0", "flags": 8843, "state": ["UP", "BROADCAST", "RUNNING", "SIMPLEX", "MULTICAST"], "mtu": 2304, "mac_addr": "06:83:e7:2d:63:8e", "type": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "ipv6_addr": null, "ipv6_mask": null, "ipv6_scope": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "awdl0", "flags": 8943, "state": ["UP", "BROADCAST", "RUNNING", "PROMISC", "SIMPLEX", "MULTICAST"], "mtu": 1484, "ipv6_addr": "fe80::7c05:c1ff:fe24:14ca", "ipv6_mask": 64, "ipv6_scope": "0xc", "mac_addr": "7e:05:c1:24:14:ca", "type": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "en1", "flags": 8963, "state": ["UP", "BROADCAST", "SMART", "RUNNING", "PROMISC", "SIMPLEX", "MULTICAST"], "mtu": 1500, "mac_addr": "ea:00:fd:08:58:02", "type": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "ipv6_addr": null, "ipv6_mask": null, "ipv6_scope": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "en2", "flags": 8963, "state": ["UP", "BROADCAST", "SMART", "RUNNING", "PROMISC", "SIMPLEX", "MULTICAST"], "mtu": 1500, "mac_addr": "ea:00:fd:08:58:01", "type": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "ipv6_addr": null, "ipv6_mask": null, "ipv6_scope": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "en3", "flags": 8963, "state": ["UP", "BROADCAST", "SMART", "RUNNING", "PROMISC", "SIMPLEX", "MULTICAST"], "mtu": 1500, "mac_addr": "ea:00:fd:08:58:06", "type": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "ipv6_addr": null, "ipv6_mask": null, "ipv6_scope": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "en4", "flags": 8963, "state": ["UP", "BROADCAST", "SMART", "RUNNING", "PROMISC", "SIMPLEX", "MULTICAST"], "mtu": 1500, "mac_addr": "ea:00:fd:08:58:05", "type": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "ipv6_addr": null, "ipv6_mask": null, "ipv6_scope": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "bridge0", "flags": 8863, "state": ["UP", "BROADCAST", "SMART", "RUNNING", "SIMPLEX", "MULTICAST"], "mtu": 1500, "mac_addr": "ea:00:fd:08:58:02", "type": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "ipv6_addr": null, "ipv6_mask": null, "ipv6_scope": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "utun0", "flags": 8051, "state": ["UP", "POINTOPOINT", "RUNNING", "MULTICAST"], "mtu": 2000, "ipv6_addr": "fe80::7b12:adc2:a089:c4d8", "ipv6_mask": 64, "ipv6_scope": "0x12", "type": null, "mac_addr": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "vmnet1", "flags": 8863, "state": ["UP", "BROADCAST", "SMART", "RUNNING", "SIMPLEX", "MULTICAST"], "mtu": 1500, "ipv4_addr": "192.168.101.1", "ipv4_mask": "255.255.255.0", "ipv4_bcast": "192.168.101.255", "mac_addr": "00:50:56:c0:00:01", "type": null, "ipv6_addr": null, "ipv6_mask": null, "ipv6_scope": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "vmnet8", "flags": 8863, "state": ["UP", "BROADCAST", "SMART", "RUNNING", "SIMPLEX", "MULTICAST"], "mtu": 1500, "ipv4_addr": "192.168.71.1", "ipv4_mask": "255.255.255.0", "ipv4_bcast": "192.168.71.255", "mac_addr": "00:50:56:c0:00:08", "type": null, "ipv6_addr": null, "ipv6_mask": null, "ipv6_scope": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}, {"name": "utun1", "flags": 8051, "state": ["UP", "POINTOPOINT", "RUNNING", "MULTICAST"], "mtu": 1380, "ipv6_addr": "fe80::a08a:46aa:a738:2ea7", "ipv6_mask": 64, "ipv6_scope": "0x15", "type": null, "mac_addr": null, "ipv4_addr": null, "ipv4_bcast": null, "ipv4_mask": null, "metric": null, "rx_packets": null, "rx_errors": null, "rx_dropped": null, "rx_overruns": null, "rx_frame": null, "tx_packets": null, "tx_errors": null, "tx_dropped": null, "tx_overruns": null, "tx_carrier": null, "tx_collisions": null, "rx_bytes": null, "tx_bytes": null}] jc-1.17.3/tests/fixtures/osx-10.14.6/ifconfig2.out000066400000000000000000000076131415226333200212370ustar00rootroot00000000000000lo0: flags=8049 mtu 16384 options=1203 inet 127.0.0.1 netmask 0xff000000 inet6 ::1 prefixlen 128 inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1 nd6 options=201 gif0: flags=8010 mtu 1280 stf0: flags=0<> mtu 1280 XHC0: flags=0<> mtu 0 XHC1: flags=0<> mtu 0 XHC20: flags=0<> mtu 0 VHC128: flags=0<> mtu 0 en5: flags=8863 mtu 1500 ether ac:de:48:00:10:20 inet6 fe80::aede:48ff:fe00:1020%en5 prefixlen 64 scopeid 0x8 nd6 options=201 media: autoselect (100baseTX ) status: active ap1: flags=8802 mtu 1500 ether a6:83:e7:2d:63:8e media: autoselect status: inactive en0: flags=8863 mtu 1500 ether a4:83:e7:2d:63:8e inet6 fe80::4dd:cbd7:2743:da63%en0 prefixlen 64 secured scopeid 0xa inet 192.168.1.221 netmask 0xffffff00 broadcast 192.168.1.255 inet6 2600:1700:bab0:d40:1874:4566:6499:f3d1 prefixlen 64 autoconf secured inet6 2600:1700:bab0:d40:30d4:c067:a56d:5888 prefixlen 64 deprecated autoconf temporary inet6 2600:1700:bab0:d40:342e:1ac7:8bdb:6c3d prefixlen 64 deprecated autoconf temporary inet6 2600:1700:bab0:d40:fdd1:e943:edd4:5187 prefixlen 64 autoconf temporary inet6 2600:1700:bab0:d40::39 prefixlen 64 dynamic nd6 options=201 media: autoselect status: active p2p0: flags=8843 mtu 2304 ether 06:83:e7:2d:63:8e media: autoselect status: inactive awdl0: flags=8943 mtu 1484 ether 7e:05:c1:24:14:ca inet6 fe80::7c05:c1ff:fe24:14ca%awdl0 prefixlen 64 scopeid 0xc nd6 options=201 media: autoselect status: active en1: flags=8963 mtu 1500 options=60 ether ea:00:fd:08:58:02 media: autoselect status: inactive en2: flags=8963 mtu 1500 options=60 ether ea:00:fd:08:58:01 media: autoselect status: inactive en3: flags=8963 mtu 1500 options=60 ether ea:00:fd:08:58:06 media: autoselect status: inactive en4: flags=8963 mtu 1500 options=60 ether ea:00:fd:08:58:05 media: autoselect status: inactive bridge0: flags=8863 mtu 1500 options=63 ether ea:00:fd:08:58:02 Configuration: id 0:0:0:0:0:0 priority 0 hellotime 0 fwddelay 0 maxage 0 holdcnt 0 proto stp maxaddr 100 timeout 1200 root id 0:0:0:0:0:0 priority 0 ifcost 0 port 0 ipfilter disabled flags 0x2 member: en1 flags=3 ifmaxaddr 0 port 13 priority 0 path cost 0 member: en2 flags=3 ifmaxaddr 0 port 14 priority 0 path cost 0 member: en3 flags=3 ifmaxaddr 0 port 15 priority 0 path cost 0 member: en4 flags=3 ifmaxaddr 0 port 16 priority 0 path cost 0 nd6 options=201 media: status: inactive utun0: flags=8051 mtu 2000 inet6 fe80::7b12:adc2:a089:c4d8%utun0 prefixlen 64 scopeid 0x12 nd6 options=201 vmnet1: flags=8863 mtu 1500 ether 00:50:56:c0:00:01 inet 192.168.101.1 netmask 0xffffff00 broadcast 192.168.101.255 vmnet8: flags=8863 mtu 1500 ether 00:50:56:c0:00:08 inet 192.168.71.1 netmask 0xffffff00 broadcast 192.168.71.255 utun1: flags=8051 mtu 1380 inet6 fe80::a08a:46aa:a738:2ea7%utun1 prefixlen 64 scopeid 0x15 nd6 options=201 jc-1.17.3/tests/fixtures/osx-10.14.6/last.json000066400000000000000000001302741415226333200204760ustar00rootroot00000000000000[{"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Fri Feb 28 14:45", "logout": "still logged in"}, {"user": "kbrazil", "tty": "ttys003", "hostname": null, "login": "Fri Feb 28 08:59", "logout": "still logged in"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Thu Feb 27 14:31", "logout": "14:31", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys003", "hostname": null, "login": "Thu Feb 27 10:38", "logout": "10:38", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys003", "hostname": null, "login": "Thu Feb 27 10:18", "logout": "10:18", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Fri Feb 21 08:47", "logout": "08:47", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Thu Feb 20 14:53", "logout": "14:53", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Thu Feb 13 16:44", "logout": "16:44", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Tue Feb 11 21:25", "logout": "still logged in"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Mon Feb 10 15:54", "logout": "15:54", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Mon Feb 10 08:52", "logout": "08:52", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Fri Feb 7 23:32", "logout": "23:32", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Fri Feb 7 23:32", "logout": "23:32", "duration": "00:00"}, {"user": "kbrazil", "tty": "console", "hostname": null, "login": "Fri Feb 7 23:32", "logout": "still logged in"}, {"user": "reboot", "tty": null, "hostname": null, "login": "Fri Feb 7 23:31"}, {"user": "shutdown", "tty": null, "hostname": null, "login": "Fri Feb 7 23:26"}, {"user": "root", "tty": "console", "hostname": null, "login": "Fri Feb 7 23:25", "logout": "shutdown", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Fri Feb 7 11:19", "logout": "11:19", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Fri Feb 7 11:19", "logout": "11:19", "duration": "00:00"}, {"user": "kbrazil", "tty": "console", "hostname": null, "login": "Fri Feb 7 07:51", "logout": "23:25", "duration": "15:34"}, {"user": "reboot", "tty": null, "hostname": null, "login": "Fri Feb 7 07:51"}, {"user": "shutdown", "tty": null, "hostname": null, "login": "Fri Feb 7 07:50"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Wed Feb 5 11:42", "logout": "11:42", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Tue Feb 4 14:23", "logout": "14:23", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Mon Feb 3 15:22", "logout": "15:22", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Mon Feb 3 08:58", "logout": "08:58", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Wed Jan 29 11:10", "logout": "11:10", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Tue Jan 28 09:00", "logout": "09:00", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Mon Jan 27 17:15", "logout": "17:15", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Sun Jan 26 19:13", "logout": "19:13", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Fri Jan 24 14:03", "logout": "14:03", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Wed Jan 22 09:17", "logout": "09:17", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Tue Jan 21 11:56", "logout": "11:56", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Fri Jan 17 12:49", "logout": "12:49", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Fri Jan 17 11:32", "logout": "11:32", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Thu Jan 16 14:51", "logout": "14:51", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Wed Jan 15 17:45", "logout": "17:45", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Tue Jan 14 13:30", "logout": "13:30", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Tue Jan 14 13:17", "logout": "13:17", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys004", "hostname": null, "login": "Tue Jan 14 11:55", "logout": "11:55", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Mon Jan 13 17:27", "logout": "17:27", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Mon Jan 13 16:11", "logout": "16:11", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Mon Jan 13 13:51", "logout": "13:51", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Fri Jan 10 13:21", "logout": "13:21", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Thu Jan 9 12:38", "logout": "12:38", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Wed Jan 8 06:08", "logout": "06:08", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Tue Jan 7 14:22", "logout": "14:22", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Tue Jan 7 08:57", "logout": "08:57", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Fri Jan 3 13:24", "logout": "13:24", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Thu Jan 2 14:05", "logout": "14:05", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Thu Jan 2 10:07", "logout": "10:07", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys004", "hostname": null, "login": "Mon Dec 16 14:17", "logout": "14:17", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Mon Dec 16 11:14", "logout": "11:14", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Thu Dec 12 12:10", "logout": "12:10", "duration": "00:00"}, {"user": "kbrazil", "tty": "console", "hostname": null, "login": "Thu Dec 12 12:10", "logout": "07:50", "duration": "1363:39"}, {"user": "reboot", "tty": null, "hostname": null, "login": "Thu Dec 12 12:09"}, {"user": "shutdown", "tty": null, "hostname": null, "login": "Thu Dec 12 12:09"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Thu Dec 12 00:15", "logout": "00:15", "duration": "00:00"}, {"user": "kbrazil", "tty": "console", "hostname": null, "login": "Thu Dec 12 00:15", "logout": "12:09", "duration": "11:54"}, {"user": "reboot", "tty": null, "hostname": null, "login": "Thu Dec 12 00:14"}, {"user": "shutdown", "tty": null, "hostname": null, "login": "Thu Dec 12 00:08"}, {"user": "root", "tty": "console", "hostname": null, "login": "Thu Dec 12 00:08", "logout": "shutdown", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Wed Dec 11 16:17", "logout": "16:17", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Wed Dec 11 16:16", "logout": "16:16", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Fri Dec 6 10:41", "logout": "10:41", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys003", "hostname": null, "login": "Fri Dec 6 07:32", "logout": "07:32", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys003", "hostname": null, "login": "Mon Dec 2 23:44", "logout": "23:44", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Mon Dec 2 23:39", "logout": "23:39", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Mon Dec 2 23:07", "logout": "23:07", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Mon Dec 2 16:23", "logout": "16:23", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Mon Dec 2 16:22", "logout": "16:22", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Mon Dec 2 15:50", "logout": "15:50", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Mon Dec 2 13:50", "logout": "13:50", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Mon Dec 2 12:47", "logout": "12:47", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Mon Dec 2 12:06", "logout": "12:06", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys004", "hostname": null, "login": "Wed Nov 27 09:19", "logout": "09:19", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys005", "hostname": null, "login": "Mon Nov 25 08:08", "logout": "08:08", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys004", "hostname": null, "login": "Thu Nov 21 17:23", "logout": "17:23", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Thu Nov 21 10:28", "logout": "10:28", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Wed Nov 20 09:35", "logout": "09:35", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys003", "hostname": null, "login": "Mon Nov 11 12:49", "logout": "12:49", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Sun Nov 10 13:52", "logout": "13:52", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Sat Nov 9 10:34", "logout": "10:34", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Fri Nov 8 15:37", "logout": "15:37", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Fri Nov 8 14:01", "logout": "14:01", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Fri Nov 8 10:57", "logout": "10:57", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Fri Nov 8 06:29", "logout": "06:29", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Fri Nov 8 06:22", "logout": "06:22", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Thu Nov 7 19:00", "logout": "19:00", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Wed Nov 6 15:19", "logout": "15:19", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys005", "hostname": null, "login": "Mon Nov 4 07:54", "logout": "07:54", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys003", "hostname": null, "login": "Fri Nov 1 15:13", "logout": "15:13", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Fri Nov 1 15:13", "logout": "15:13", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Fri Nov 1 11:55", "logout": "11:55", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Fri Nov 1 11:16", "logout": "11:16", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Fri Nov 1 06:31", "logout": "06:31", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Thu Oct 31 14:13", "logout": "14:13", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Thu Oct 31 11:57", "logout": "11:57", "duration": "00:00"}, {"user": "kbrazil", "tty": "console", "hostname": null, "login": "Thu Oct 31 09:37", "logout": "00:08", "duration": "999:30"}, {"user": "reboot", "tty": null, "hostname": null, "login": "Thu Oct 31 09:37"}, {"user": "shutdown", "tty": null, "hostname": null, "login": "Thu Oct 31 09:30"}, {"user": "root", "tty": "console", "hostname": null, "login": "Thu Oct 31 09:30", "logout": "shutdown", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys006", "hostname": null, "login": "Thu Oct 31 07:35", "logout": "07:35", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys004", "hostname": null, "login": "Wed Oct 30 13:25", "logout": "13:25", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Tue Oct 29 18:16", "logout": "18:16", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys004", "hostname": null, "login": "Tue Oct 29 08:04", "logout": "08:04", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Mon Oct 28 21:58", "logout": "21:58", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Mon Oct 28 21:58", "logout": "21:58", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Mon Oct 28 21:58", "logout": "21:58", "duration": "00:00"}, {"user": "kbrazil", "tty": "console", "hostname": null, "login": "Mon Oct 28 21:58", "logout": "09:30", "duration": "59:31"}, {"user": "reboot", "tty": null, "hostname": null, "login": "Mon Oct 28 21:57"}, {"user": "shutdown", "tty": null, "hostname": null, "login": "Mon Oct 28 21:57"}, {"user": "kbrazil", "tty": "ttys007", "hostname": null, "login": "Mon Oct 28 12:13", "logout": "12:13", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys006", "hostname": null, "login": "Thu Oct 24 15:57", "logout": "15:57", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys006", "hostname": null, "login": "Tue Oct 22 17:06", "logout": "17:06", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Mon Oct 21 12:08", "logout": "12:08", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Mon Oct 21 12:08", "logout": "12:08", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Mon Oct 21 12:08", "logout": "12:08", "duration": "00:00"}, {"user": "kbrazil", "tty": "console", "hostname": null, "login": "Mon Oct 21 12:04", "logout": "21:57", "duration": "177:52"}, {"user": "reboot", "tty": null, "hostname": null, "login": "Mon Oct 21 12:03"}, {"user": "shutdown", "tty": null, "hostname": null, "login": "Mon Oct 21 12:00"}, {"user": "root", "tty": "console", "hostname": null, "login": "Mon Oct 21 11:59", "logout": "shutdown", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Thu Oct 17 17:08", "logout": "17:08", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys004", "hostname": null, "login": "Tue Oct 15 11:36", "logout": "11:36", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys003", "hostname": null, "login": "Tue Oct 15 11:10", "logout": "11:10", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Fri Oct 4 15:07", "logout": "15:07", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Thu Oct 3 11:45", "logout": "11:45", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Thu Oct 3 07:33", "logout": "07:33", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Wed Oct 2 17:03", "logout": "17:03", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Wed Oct 2 15:39", "logout": "15:39", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Wed Oct 2 14:18", "logout": "14:18", "duration": "00:00"}, {"user": "kbrazil", "tty": "console", "hostname": null, "login": "Wed Oct 2 12:47", "logout": "11:59", "duration": "455:12"}, {"user": "reboot", "tty": null, "hostname": null, "login": "Wed Oct 2 12:47"}, {"user": "shutdown", "tty": null, "hostname": null, "login": "Wed Oct 2 12:46"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Wed Oct 2 12:15", "logout": "12:15", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Wed Oct 2 12:06", "logout": "12:06", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Wed Oct 2 11:54", "logout": "11:54", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys003", "hostname": null, "login": "Mon Sep 30 16:29", "logout": "16:29", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Fri Sep 27 15:55", "logout": "15:55", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Fri Sep 27 15:51", "logout": "15:51", "duration": "00:00"}, {"user": "kbrazil", "tty": "console", "hostname": null, "login": "Fri Sep 27 15:18", "logout": "12:46", "duration": "117:28"}, {"user": "reboot", "tty": null, "hostname": null, "login": "Fri Sep 27 15:17"}, {"user": "shutdown", "tty": null, "hostname": null, "login": "Fri Sep 27 15:15"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Fri Sep 27 06:44", "logout": "06:44", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Thu Sep 26 15:22", "logout": "15:22", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Wed Sep 25 15:09", "logout": "15:09", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Wed Sep 25 08:16", "logout": "08:16", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Tue Sep 24 16:42", "logout": "16:42", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Tue Sep 24 14:20", "logout": "14:20", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Tue Sep 24 10:03", "logout": "10:03", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys003", "hostname": null, "login": "Wed Sep 18 12:17", "logout": "12:17", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Wed Sep 18 12:14", "logout": "12:14", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Wed Sep 18 12:09", "logout": "12:09", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Wed Sep 18 12:09", "logout": "12:09", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys004", "hostname": null, "login": "Wed Sep 18 11:25", "logout": "11:25", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Wed Sep 18 11:13", "logout": "11:13", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Tue Sep 17 16:31", "logout": "16:31", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Tue Sep 17 15:53", "logout": "15:53", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Tue Sep 17 14:41", "logout": "14:41", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Tue Sep 17 14:34", "logout": "14:34", "duration": "00:00"}, {"user": "kbrazil", "tty": "console", "hostname": null, "login": "Tue Sep 17 13:54", "logout": "15:15", "duration": "241:20"}, {"user": "reboot", "tty": null, "hostname": null, "login": "Tue Sep 17 13:54"}, {"user": "shutdown", "tty": null, "hostname": null, "login": "Tue Sep 17 13:53"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Tue Sep 17 07:03", "logout": "07:03", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Mon Sep 16 08:50", "logout": "08:50", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Fri Sep 13 02:36", "logout": "02:36", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Fri Sep 13 02:10", "logout": "02:10", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Thu Sep 12 05:15", "logout": "05:15", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Tue Sep 10 04:42", "logout": "04:42", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Fri Sep 6 10:15", "logout": "10:15", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Fri Sep 6 09:20", "logout": "09:20", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Wed Sep 4 14:19", "logout": "14:19", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Wed Sep 4 13:54", "logout": "13:54", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Wed Sep 4 09:10", "logout": "09:10", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Tue Sep 3 14:59", "logout": "14:59", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Tue Sep 3 10:56", "logout": "10:56", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Tue Sep 3 08:32", "logout": "08:32", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Thu Aug 29 17:21", "logout": "17:21", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Thu Aug 29 17:13", "logout": "17:13", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Thu Aug 29 14:48", "logout": "14:48", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys003", "hostname": null, "login": "Thu Aug 29 14:36", "logout": "14:36", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Thu Aug 29 14:35", "logout": "14:35", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Thu Aug 29 14:28", "logout": "14:28", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys003", "hostname": null, "login": "Thu Aug 29 12:47", "logout": "12:47", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys003", "hostname": null, "login": "Thu Aug 29 09:47", "logout": "09:47", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Thu Aug 29 09:41", "logout": "09:41", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Thu Aug 29 09:32", "logout": "09:32", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Thu Aug 29 09:30", "logout": "09:30", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Wed Aug 28 14:29", "logout": "14:29", "duration": "00:00"}, {"user": "kbrazil", "tty": "console", "hostname": null, "login": "Tue Aug 27 21:22", "logout": "13:53", "duration": "496:31"}, {"user": "reboot", "tty": null, "hostname": null, "login": "Tue Aug 27 21:21"}, {"user": "shutdown", "tty": null, "hostname": null, "login": "Tue Aug 27 21:17"}, {"user": "root", "tty": "console", "hostname": null, "login": "Tue Aug 27 21:17", "logout": "shutdown", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Mon Aug 26 15:09", "logout": "15:09", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Mon Aug 26 07:54", "logout": "07:54", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Fri Aug 23 16:22", "logout": "16:22", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Fri Aug 23 15:21", "logout": "15:21", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Fri Aug 23 15:19", "logout": "15:19", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Fri Aug 23 06:46", "logout": "06:46", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Thu Aug 22 17:48", "logout": "17:48", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys003", "hostname": null, "login": "Thu Aug 22 14:21", "logout": "14:21", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Thu Aug 22 14:21", "logout": "14:21", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Thu Aug 22 14:21", "logout": "14:21", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Thu Aug 22 14:21", "logout": "14:21", "duration": "00:00"}, {"user": "kbrazil", "tty": "console", "hostname": null, "login": "Thu Aug 22 14:20", "logout": "21:17", "duration": "126:56"}, {"user": "reboot", "tty": null, "hostname": null, "login": "Thu Aug 22 14:20"}, {"user": "shutdown", "tty": null, "hostname": null, "login": "Thu Aug 22 14:17"}, {"user": "kbrazil", "tty": "ttys004", "hostname": null, "login": "Wed Aug 21 15:24", "logout": "15:24", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Tue Aug 20 19:52", "logout": "19:52", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys003", "hostname": null, "login": "Tue Aug 20 16:32", "logout": "16:32", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys003", "hostname": null, "login": "Mon Aug 19 17:51", "logout": "17:51", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Mon Aug 19 14:42", "logout": "14:42", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Mon Aug 19 14:02", "logout": "14:02", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Sat Aug 17 10:02", "logout": "10:02", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Fri Aug 16 18:20", "logout": "18:20", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Fri Aug 16 06:46", "logout": "06:46", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys003", "hostname": null, "login": "Thu Aug 15 17:07", "logout": "17:07", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Thu Aug 15 17:00", "logout": "17:00", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys003", "hostname": null, "login": "Thu Aug 15 16:01", "logout": "16:01", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Thu Aug 15 15:55", "logout": "15:55", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys005", "hostname": null, "login": "Thu Aug 15 14:48", "logout": "14:48", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys005", "hostname": null, "login": "Thu Aug 15 14:45", "logout": "14:45", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys003", "hostname": null, "login": "Thu Aug 15 14:35", "logout": "14:35", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Thu Aug 15 14:24", "logout": "14:24", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys005", "hostname": null, "login": "Thu Aug 15 10:57", "logout": "10:57", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys003", "hostname": null, "login": "Thu Aug 15 10:48", "logout": "10:48", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Thu Aug 15 10:43", "logout": "10:43", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Thu Aug 15 10:39", "logout": "10:39", "duration": "00:00"}, {"user": "kbrazil", "tty": "console", "hostname": null, "login": "Thu Aug 15 10:39", "logout": "14:17", "duration": "171:37"}, {"user": "reboot", "tty": null, "hostname": null, "login": "Thu Aug 15 10:39"}, {"user": "shutdown", "tty": null, "hostname": null, "login": "Thu Aug 15 10:38"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Thu Aug 15 08:56", "logout": "08:56", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys004", "hostname": null, "login": "Thu Aug 15 08:09", "logout": "08:09", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Thu Aug 15 08:08", "logout": "08:08", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Wed Aug 14 18:12", "logout": "18:12", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Wed Aug 14 15:08", "logout": "15:08", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys004", "hostname": null, "login": "Wed Aug 14 09:11", "logout": "09:11", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Wed Aug 14 09:03", "logout": "09:03", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Tue Aug 13 14:47", "logout": "14:47", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Tue Aug 13 11:14", "logout": "11:14", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Tue Aug 13 11:14", "logout": "11:14", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Tue Aug 13 10:54", "logout": "10:54", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Tue Aug 13 10:43", "logout": "10:43", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Tue Aug 13 10:29", "logout": "10:29", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Tue Aug 13 09:27", "logout": "09:27", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Tue Aug 13 05:40", "logout": "05:40", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Mon Aug 12 14:11", "logout": "14:11", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Mon Aug 12 13:54", "logout": "13:54", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Mon Aug 12 13:54", "logout": "13:54", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Mon Aug 12 13:54", "logout": "13:54", "duration": "00:00"}, {"user": "kbrazil", "tty": "console", "hostname": null, "login": "Mon Aug 12 13:54", "logout": "10:38", "duration": "68:44"}, {"user": "reboot", "tty": null, "hostname": null, "login": "Mon Aug 12 13:53"}, {"user": "shutdown", "tty": null, "hostname": null, "login": "Mon Aug 12 13:52"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Mon Aug 12 13:37", "logout": "13:37", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys004", "hostname": null, "login": "Thu Aug 8 09:15", "logout": "09:15", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys003", "hostname": null, "login": "Thu Aug 8 09:14", "logout": "09:14", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Thu Aug 8 09:03", "logout": "09:03", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Thu Aug 8 07:17", "logout": "07:17", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Mon Aug 5 10:57", "logout": "10:57", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Mon Aug 5 08:34", "logout": "08:34", "duration": "00:00"}, {"user": "kbrazil", "tty": "console", "hostname": null, "login": "Mon Aug 5 08:29", "logout": "13:52", "duration": "173:23"}, {"user": "reboot", "tty": null, "hostname": null, "login": "Mon Aug 5 08:28"}, {"user": "shutdown", "tty": null, "hostname": null, "login": "Mon Aug 5 08:25"}, {"user": "root", "tty": "console", "hostname": null, "login": "Mon Aug 5 08:24", "logout": "shutdown", "duration": "00:01"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Sat Aug 3 07:20", "logout": "07:20", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Sat Aug 3 06:54", "logout": "06:54", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys005", "hostname": null, "login": "Fri Aug 2 10:21", "logout": "10:21", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys004", "hostname": null, "login": "Fri Aug 2 10:21", "logout": "10:21", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys003", "hostname": null, "login": "Fri Aug 2 10:21", "logout": "10:21", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Fri Aug 2 10:21", "logout": "10:21", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Fri Aug 2 10:21", "logout": "10:21", "duration": "00:00"}, {"user": "kbrazil", "tty": "console", "hostname": null, "login": "Fri Aug 2 07:00", "logout": "08:24", "duration": "73:23"}, {"user": "reboot", "tty": null, "hostname": null, "login": "Fri Aug 2 07:00"}, {"user": "shutdown", "tty": null, "hostname": null, "login": "Fri Aug 2 06:59"}, {"user": "kbrazil", "tty": "console", "hostname": null, "login": "Fri Aug 2 06:06", "logout": "06:59", "duration": "00:53"}, {"user": "reboot", "tty": null, "hostname": null, "login": "Fri Aug 2 06:06"}, {"user": "shutdown", "tty": null, "hostname": null, "login": "Fri Aug 2 06:05"}, {"user": "kbrazil", "tty": "ttys010", "hostname": null, "login": "Wed Jul 31 08:44", "logout": "08:44", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys010", "hostname": null, "login": "Tue Jul 30 14:48", "logout": "14:48", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys008", "hostname": null, "login": "Tue Jul 30 08:23", "logout": "08:23", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys006", "hostname": null, "login": "Tue Jul 30 07:24", "logout": "07:24", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys006", "hostname": null, "login": "Mon Jul 29 13:32", "logout": "13:32", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys003", "hostname": null, "login": "Mon Jul 29 12:50", "logout": "12:50", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys003", "hostname": null, "login": "Mon Jul 29 12:46", "logout": "12:46", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Sun Jul 28 14:12", "logout": "14:12", "duration": "00:00"}, {"user": "kbrazil", "tty": "console", "hostname": null, "login": "Sun Jul 28 14:07", "logout": "06:04", "duration": "111:57"}, {"user": "reboot", "tty": null, "hostname": null, "login": "Sun Jul 28 14:07"}, {"user": "shutdown", "tty": null, "hostname": null, "login": "Sun Jul 28 14:06"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Sun Jul 28 13:17", "logout": "13:17", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Sun Jul 28 13:17", "logout": "13:17", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Sun Jul 28 13:16", "logout": "13:16", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Sun Jul 28 13:16", "logout": "13:16", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Sun Jul 28 13:16", "logout": "13:16", "duration": "00:00"}, {"user": "kbrazil", "tty": "console", "hostname": null, "login": "Sun Jul 28 13:16", "logout": "14:06", "duration": "00:50"}, {"user": "reboot", "tty": null, "hostname": null, "login": "Sun Jul 28 13:16"}, {"user": "shutdown", "tty": null, "hostname": null, "login": "Sun Jul 28 13:15"}, {"user": "kbrazil", "tty": "ttys003", "hostname": null, "login": "Sun Jul 28 13:12", "logout": "13:12", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Sun Jul 28 13:10", "logout": "13:10", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys005", "hostname": null, "login": "Sun Jul 28 12:38", "logout": "12:38", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys005", "hostname": null, "login": "Sun Jul 28 12:01", "logout": "12:01", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys005", "hostname": null, "login": "Sun Jul 28 08:17", "logout": "08:17", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys005", "hostname": null, "login": "Sat Jul 27 18:36", "logout": "18:36", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys003", "hostname": null, "login": "Sat Jul 27 18:25", "logout": "18:25", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Sat Jul 27 18:19", "logout": "18:19", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Fri Jul 26 10:58", "logout": "10:58", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Fri Jul 26 08:16", "logout": "08:16", "duration": "00:00"}, {"user": "kbrazil", "tty": "console", "hostname": null, "login": "Thu Jul 25 18:38", "logout": "13:15", "duration": "66:36"}, {"user": "reboot", "tty": null, "hostname": null, "login": "Thu Jul 25 18:38"}, {"user": "shutdown", "tty": null, "hostname": null, "login": "Thu Jul 25 18:37"}, {"user": "kbrazil", "tty": "ttys004", "hostname": null, "login": "Thu Jul 25 10:57", "logout": "10:57", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys004", "hostname": null, "login": "Thu Jul 25 08:33", "logout": "08:33", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Wed Jul 24 14:39", "logout": "14:39", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys005", "hostname": null, "login": "Wed Jul 24 12:13", "logout": "12:13", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys004", "hostname": null, "login": "Wed Jul 24 10:51", "logout": "10:51", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Wed Jul 24 10:17", "logout": "10:17", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Wed Jul 24 02:54", "logout": "02:54", "duration": "00:00"}, {"user": "kbrazil", "tty": "console", "hostname": null, "login": "Tue Jul 23 20:16", "logout": "18:37", "duration": "46:21"}, {"user": "reboot", "tty": null, "hostname": null, "login": "Tue Jul 23 20:15"}, {"user": "shutdown", "tty": null, "hostname": null, "login": "Tue Jul 23 20:09"}, {"user": "root", "tty": "console", "hostname": null, "login": "Tue Jul 23 20:07", "logout": "shutdown", "duration": "00:01"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Tue Jul 23 07:03", "logout": "07:03", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys007", "hostname": null, "login": "Tue Jul 16 14:57", "logout": "14:57", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys007", "hostname": null, "login": "Mon Jul 15 14:45", "logout": "14:45", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys005", "hostname": null, "login": "Mon Jul 15 14:38", "logout": "14:38", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys004", "hostname": null, "login": "Mon Jul 15 12:12", "logout": "12:12", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Fri Jul 12 15:42", "logout": "15:42", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Fri Jul 12 14:40", "logout": "14:40", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Fri Jul 12 08:45", "logout": "08:45", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Thu Jul 11 14:42", "logout": "14:42", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Thu Jul 11 12:03", "logout": "12:03", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Thu Jul 11 11:41", "logout": "11:41", "duration": "00:00"}, {"user": "kbrazil", "tty": "console", "hostname": null, "login": "Thu Jul 11 11:41", "logout": "20:07", "duration": "296:25"}, {"user": "reboot", "tty": null, "hostname": null, "login": "Thu Jul 11 11:41"}, {"user": "shutdown", "tty": null, "hostname": null, "login": "Thu Jul 11 11:41"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Thu Jul 11 11:38", "logout": "11:38", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Thu Jul 11 10:32", "logout": "10:32", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Thu Jul 11 08:24", "logout": "08:24", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Thu Jul 11 08:17", "logout": "08:17", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Thu Jul 11 08:09", "logout": "08:09", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Thu Jul 11 08:07", "logout": "08:07", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Thu Jul 11 08:03", "logout": "08:03", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Thu Jul 11 07:57", "logout": "07:57", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Thu Jul 11 07:52", "logout": "07:52", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Wed Jul 10 17:35", "logout": "17:35", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys003", "hostname": null, "login": "Wed Jul 10 16:58", "logout": "16:58", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Wed Jul 10 16:39", "logout": "16:39", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Wed Jul 10 07:51", "logout": "07:51", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Tue Jul 9 22:30", "logout": "22:30", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Tue Jul 9 22:14", "logout": "22:14", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Tue Jul 9 22:14", "logout": "22:14", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Tue Jul 9 22:14", "logout": "22:14", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Tue Jul 9 22:12", "logout": "22:12", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys003", "hostname": null, "login": "Tue Jul 9 22:11", "logout": "22:11", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys002", "hostname": null, "login": "Tue Jul 9 22:11", "logout": "22:11", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Tue Jul 9 22:11", "logout": "22:11", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Tue Jul 9 22:11", "logout": "22:11", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys001", "hostname": null, "login": "Tue Jul 9 22:10", "logout": "22:10", "duration": "00:00"}, {"user": "kbrazil", "tty": "ttys000", "hostname": null, "login": "Tue Jul 9 22:04", "logout": "22:04", "duration": "00:00"}, {"user": "kbrazil", "tty": "console", "hostname": null, "login": "Tue Jul 9 08:29", "logout": "11:41", "duration": "51:11"}, {"user": "reboot", "tty": null, "hostname": null, "login": "Tue Jul 9 08:29"}, {"user": "shutdown", "tty": null, "hostname": null, "login": "Tue Jul 9 08:27"}, {"user": "kbrazil", "tty": "console", "hostname": null, "login": "Mon Jul 8 18:07", "logout": "08:27", "duration": "14:20"}, {"user": "reboot", "tty": null, "hostname": null, "login": "Mon Jul 8 18:07"}, {"user": "shutdown", "tty": null, "hostname": null, "login": "Mon Jul 8 18:06"}, {"user": "kbrazil", "tty": "console", "hostname": null, "login": "Mon Jul 8 17:47", "logout": "18:06", "duration": "00:18"}, {"user": "reboot", "tty": null, "hostname": null, "login": "Mon Jul 8 17:47"}, {"user": "shutdown", "tty": null, "hostname": null, "login": "Mon Jul 8 17:47"}, {"user": "kbrazil", "tty": "console", "hostname": null, "login": "Tue Jul 2 11:49", "logout": "17:47", "duration": "149:58"}, {"user": "reboot", "tty": null, "hostname": null, "login": "Tue Jul 2 11:48"}, {"user": "shutdown", "tty": null, "hostname": null, "login": "Tue Jul 2 11:44"}, {"user": "kbrazil", "tty": "console", "hostname": null, "login": "Tue Jul 2 10:44", "logout": "11:44", "duration": "00:59"}, {"user": "reboot", "tty": null, "hostname": null, "login": "Tue Jul 2 10:43"}, {"user": "shutdown", "tty": null, "hostname": null, "login": "Tue Jul 2 10:00"}, {"user": "kbrazil", "tty": "console", "hostname": null, "login": "Tue Jul 2 09:52", "logout": "10:00", "duration": "00:08"}, {"user": "reboot", "tty": null, "hostname": null, "login": "Tue Jul 2 09:50"}, {"user": "shutdown", "tty": null, "hostname": null, "login": "Tue Jul 2 09:37"}, {"user": "kbrazil", "tty": "console", "hostname": null, "login": "Tue Jul 2 08:56", "logout": "09:37", "duration": "00:40"}, {"user": "_mbsetupuser", "tty": "console", "hostname": null, "login": "Tue Jul 2 08:52", "logout": "08:57", "duration": "00:05"}, {"user": "root", "tty": "console", "hostname": null, "login": "Tue Jul 2 08:52", "logout": "08:52", "duration": "00:00"}, {"user": "reboot", "tty": null, "hostname": null, "login": "Tue Jul 2 08:51"}, {"user": "reboot", "tty": null, "hostname": null, "login": "Fri Jun 21 15:54"}] jc-1.17.3/tests/fixtures/osx-10.14.6/last.out000066400000000000000000000623431415226333200203350ustar00rootroot00000000000000kbrazil ttys002 Fri Feb 28 14:45 still logged in kbrazil ttys003 Fri Feb 28 08:59 still logged in kbrazil ttys002 Thu Feb 27 14:31 - 14:31 (00:00) kbrazil ttys003 Thu Feb 27 10:38 - 10:38 (00:00) kbrazil ttys003 Thu Feb 27 10:18 - 10:18 (00:00) kbrazil ttys002 Fri Feb 21 08:47 - 08:47 (00:00) kbrazil ttys002 Thu Feb 20 14:53 - 14:53 (00:00) kbrazil ttys000 Thu Feb 13 16:44 - 16:44 (00:00) kbrazil ttys001 Tue Feb 11 21:25 still logged in kbrazil ttys000 Mon Feb 10 15:54 - 15:54 (00:00) kbrazil ttys000 Mon Feb 10 08:52 - 08:52 (00:00) kbrazil ttys001 Fri Feb 7 23:32 - 23:32 (00:00) kbrazil ttys000 Fri Feb 7 23:32 - 23:32 (00:00) kbrazil console Fri Feb 7 23:32 still logged in reboot ~ Fri Feb 7 23:31 shutdown ~ Fri Feb 7 23:26 root console Fri Feb 7 23:25 - shutdown (00:00) kbrazil ttys002 Fri Feb 7 11:19 - 11:19 (00:00) kbrazil ttys001 Fri Feb 7 11:19 - 11:19 (00:00) kbrazil console Fri Feb 7 07:51 - 23:25 (15:34) reboot ~ Fri Feb 7 07:51 shutdown ~ Fri Feb 7 07:50 kbrazil ttys000 Wed Feb 5 11:42 - 11:42 (00:00) kbrazil ttys001 Tue Feb 4 14:23 - 14:23 (00:00) kbrazil ttys000 Mon Feb 3 15:22 - 15:22 (00:00) kbrazil ttys000 Mon Feb 3 08:58 - 08:58 (00:00) kbrazil ttys001 Wed Jan 29 11:10 - 11:10 (00:00) kbrazil ttys000 Tue Jan 28 09:00 - 09:00 (00:00) kbrazil ttys000 Mon Jan 27 17:15 - 17:15 (00:00) kbrazil ttys000 Sun Jan 26 19:13 - 19:13 (00:00) kbrazil ttys000 Fri Jan 24 14:03 - 14:03 (00:00) kbrazil ttys000 Wed Jan 22 09:17 - 09:17 (00:00) kbrazil ttys000 Tue Jan 21 11:56 - 11:56 (00:00) kbrazil ttys000 Fri Jan 17 12:49 - 12:49 (00:00) kbrazil ttys000 Fri Jan 17 11:32 - 11:32 (00:00) kbrazil ttys000 Thu Jan 16 14:51 - 14:51 (00:00) kbrazil ttys000 Wed Jan 15 17:45 - 17:45 (00:00) kbrazil ttys000 Tue Jan 14 13:30 - 13:30 (00:00) kbrazil ttys000 Tue Jan 14 13:17 - 13:17 (00:00) kbrazil ttys004 Tue Jan 14 11:55 - 11:55 (00:00) kbrazil ttys002 Mon Jan 13 17:27 - 17:27 (00:00) kbrazil ttys000 Mon Jan 13 16:11 - 16:11 (00:00) kbrazil ttys000 Mon Jan 13 13:51 - 13:51 (00:00) kbrazil ttys000 Fri Jan 10 13:21 - 13:21 (00:00) kbrazil ttys000 Thu Jan 9 12:38 - 12:38 (00:00) kbrazil ttys000 Wed Jan 8 06:08 - 06:08 (00:00) kbrazil ttys000 Tue Jan 7 14:22 - 14:22 (00:00) kbrazil ttys000 Tue Jan 7 08:57 - 08:57 (00:00) kbrazil ttys002 Fri Jan 3 13:24 - 13:24 (00:00) kbrazil ttys000 Thu Jan 2 14:05 - 14:05 (00:00) kbrazil ttys000 Thu Jan 2 10:07 - 10:07 (00:00) kbrazil ttys004 Mon Dec 16 14:17 - 14:17 (00:00) kbrazil ttys002 Mon Dec 16 11:14 - 11:14 (00:00) kbrazil ttys000 Thu Dec 12 12:10 - 12:10 (00:00) kbrazil console Thu Dec 12 12:10 - 07:50 (56+19:39) reboot ~ Thu Dec 12 12:09 shutdown ~ Thu Dec 12 12:09 kbrazil ttys000 Thu Dec 12 00:15 - 00:15 (00:00) kbrazil console Thu Dec 12 00:15 - 12:09 (11:54) reboot ~ Thu Dec 12 00:14 shutdown ~ Thu Dec 12 00:08 root console Thu Dec 12 00:08 - shutdown (00:00) kbrazil ttys000 Wed Dec 11 16:17 - 16:17 (00:00) kbrazil ttys000 Wed Dec 11 16:16 - 16:16 (00:00) kbrazil ttys000 Fri Dec 6 10:41 - 10:41 (00:00) kbrazil ttys003 Fri Dec 6 07:32 - 07:32 (00:00) kbrazil ttys003 Mon Dec 2 23:44 - 23:44 (00:00) kbrazil ttys002 Mon Dec 2 23:39 - 23:39 (00:00) kbrazil ttys000 Mon Dec 2 23:07 - 23:07 (00:00) kbrazil ttys002 Mon Dec 2 16:23 - 16:23 (00:00) kbrazil ttys001 Mon Dec 2 16:22 - 16:22 (00:00) kbrazil ttys000 Mon Dec 2 15:50 - 15:50 (00:00) kbrazil ttys000 Mon Dec 2 13:50 - 13:50 (00:00) kbrazil ttys000 Mon Dec 2 12:47 - 12:47 (00:00) kbrazil ttys000 Mon Dec 2 12:06 - 12:06 (00:00) kbrazil ttys004 Wed Nov 27 09:19 - 09:19 (00:00) kbrazil ttys005 Mon Nov 25 08:08 - 08:08 (00:00) kbrazil ttys004 Thu Nov 21 17:23 - 17:23 (00:00) kbrazil ttys002 Thu Nov 21 10:28 - 10:28 (00:00) kbrazil ttys002 Wed Nov 20 09:35 - 09:35 (00:00) kbrazil ttys003 Mon Nov 11 12:49 - 12:49 (00:00) kbrazil ttys002 Sun Nov 10 13:52 - 13:52 (00:00) kbrazil ttys000 Sat Nov 9 10:34 - 10:34 (00:00) kbrazil ttys001 Fri Nov 8 15:37 - 15:37 (00:00) kbrazil ttys000 Fri Nov 8 14:01 - 14:01 (00:00) kbrazil ttys002 Fri Nov 8 10:57 - 10:57 (00:00) kbrazil ttys002 Fri Nov 8 06:29 - 06:29 (00:00) kbrazil ttys000 Fri Nov 8 06:22 - 06:22 (00:00) kbrazil ttys001 Thu Nov 7 19:00 - 19:00 (00:00) kbrazil ttys000 Wed Nov 6 15:19 - 15:19 (00:00) kbrazil ttys005 Mon Nov 4 07:54 - 07:54 (00:00) kbrazil ttys003 Fri Nov 1 15:13 - 15:13 (00:00) kbrazil ttys001 Fri Nov 1 15:13 - 15:13 (00:00) kbrazil ttys001 Fri Nov 1 11:55 - 11:55 (00:00) kbrazil ttys001 Fri Nov 1 11:16 - 11:16 (00:00) kbrazil ttys001 Fri Nov 1 06:31 - 06:31 (00:00) kbrazil ttys001 Thu Oct 31 14:13 - 14:13 (00:00) kbrazil ttys001 Thu Oct 31 11:57 - 11:57 (00:00) kbrazil console Thu Oct 31 09:37 - 00:08 (41+15:30) reboot ~ Thu Oct 31 09:37 shutdown ~ Thu Oct 31 09:30 root console Thu Oct 31 09:30 - shutdown (00:00) kbrazil ttys006 Thu Oct 31 07:35 - 07:35 (00:00) kbrazil ttys004 Wed Oct 30 13:25 - 13:25 (00:00) kbrazil ttys000 Tue Oct 29 18:16 - 18:16 (00:00) kbrazil ttys004 Tue Oct 29 08:04 - 08:04 (00:00) kbrazil ttys002 Mon Oct 28 21:58 - 21:58 (00:00) kbrazil ttys001 Mon Oct 28 21:58 - 21:58 (00:00) kbrazil ttys000 Mon Oct 28 21:58 - 21:58 (00:00) kbrazil console Mon Oct 28 21:58 - 09:30 (2+11:31) reboot ~ Mon Oct 28 21:57 shutdown ~ Mon Oct 28 21:57 kbrazil ttys007 Mon Oct 28 12:13 - 12:13 (00:00) kbrazil ttys006 Thu Oct 24 15:57 - 15:57 (00:00) kbrazil ttys006 Tue Oct 22 17:06 - 17:06 (00:00) kbrazil ttys002 Mon Oct 21 12:08 - 12:08 (00:00) kbrazil ttys001 Mon Oct 21 12:08 - 12:08 (00:00) kbrazil ttys000 Mon Oct 21 12:08 - 12:08 (00:00) kbrazil console Mon Oct 21 12:04 - 21:57 (7+09:52) reboot ~ Mon Oct 21 12:03 shutdown ~ Mon Oct 21 12:00 root console Mon Oct 21 11:59 - shutdown (00:00) kbrazil ttys000 Thu Oct 17 17:08 - 17:08 (00:00) kbrazil ttys004 Tue Oct 15 11:36 - 11:36 (00:00) kbrazil ttys003 Tue Oct 15 11:10 - 11:10 (00:00) kbrazil ttys002 Fri Oct 4 15:07 - 15:07 (00:00) kbrazil ttys001 Thu Oct 3 11:45 - 11:45 (00:00) kbrazil ttys001 Thu Oct 3 07:33 - 07:33 (00:00) kbrazil ttys001 Wed Oct 2 17:03 - 17:03 (00:00) kbrazil ttys001 Wed Oct 2 15:39 - 15:39 (00:00) kbrazil ttys001 Wed Oct 2 14:18 - 14:18 (00:00) kbrazil console Wed Oct 2 12:47 - 11:59 (18+23:12) reboot ~ Wed Oct 2 12:47 shutdown ~ Wed Oct 2 12:46 kbrazil ttys002 Wed Oct 2 12:15 - 12:15 (00:00) kbrazil ttys001 Wed Oct 2 12:06 - 12:06 (00:00) kbrazil ttys001 Wed Oct 2 11:54 - 11:54 (00:00) kbrazil ttys003 Mon Sep 30 16:29 - 16:29 (00:00) kbrazil ttys002 Fri Sep 27 15:55 - 15:55 (00:00) kbrazil ttys001 Fri Sep 27 15:51 - 15:51 (00:00) kbrazil console Fri Sep 27 15:18 - 12:46 (4+21:28) reboot ~ Fri Sep 27 15:17 shutdown ~ Fri Sep 27 15:15 kbrazil ttys001 Fri Sep 27 06:44 - 06:44 (00:00) kbrazil ttys001 Thu Sep 26 15:22 - 15:22 (00:00) kbrazil ttys001 Wed Sep 25 15:09 - 15:09 (00:00) kbrazil ttys001 Wed Sep 25 08:16 - 08:16 (00:00) kbrazil ttys001 Tue Sep 24 16:42 - 16:42 (00:00) kbrazil ttys001 Tue Sep 24 14:20 - 14:20 (00:00) kbrazil ttys001 Tue Sep 24 10:03 - 10:03 (00:00) kbrazil ttys003 Wed Sep 18 12:17 - 12:17 (00:00) kbrazil ttys002 Wed Sep 18 12:14 - 12:14 (00:00) kbrazil ttys001 Wed Sep 18 12:09 - 12:09 (00:00) kbrazil ttys001 Wed Sep 18 12:09 - 12:09 (00:00) kbrazil ttys004 Wed Sep 18 11:25 - 11:25 (00:00) kbrazil ttys002 Wed Sep 18 11:13 - 11:13 (00:00) kbrazil ttys001 Tue Sep 17 16:31 - 16:31 (00:00) kbrazil ttys002 Tue Sep 17 15:53 - 15:53 (00:00) kbrazil ttys001 Tue Sep 17 14:41 - 14:41 (00:00) kbrazil ttys001 Tue Sep 17 14:34 - 14:34 (00:00) kbrazil console Tue Sep 17 13:54 - 15:15 (10+01:20) reboot ~ Tue Sep 17 13:54 shutdown ~ Tue Sep 17 13:53 kbrazil ttys001 Tue Sep 17 07:03 - 07:03 (00:00) kbrazil ttys001 Mon Sep 16 08:50 - 08:50 (00:00) kbrazil ttys001 Fri Sep 13 02:36 - 02:36 (00:00) kbrazil ttys001 Fri Sep 13 02:10 - 02:10 (00:00) kbrazil ttys001 Thu Sep 12 05:15 - 05:15 (00:00) kbrazil ttys001 Tue Sep 10 04:42 - 04:42 (00:00) kbrazil ttys002 Fri Sep 6 10:15 - 10:15 (00:00) kbrazil ttys001 Fri Sep 6 09:20 - 09:20 (00:00) kbrazil ttys002 Wed Sep 4 14:19 - 14:19 (00:00) kbrazil ttys001 Wed Sep 4 13:54 - 13:54 (00:00) kbrazil ttys001 Wed Sep 4 09:10 - 09:10 (00:00) kbrazil ttys001 Tue Sep 3 14:59 - 14:59 (00:00) kbrazil ttys001 Tue Sep 3 10:56 - 10:56 (00:00) kbrazil ttys001 Tue Sep 3 08:32 - 08:32 (00:00) kbrazil ttys002 Thu Aug 29 17:21 - 17:21 (00:00) kbrazil ttys001 Thu Aug 29 17:13 - 17:13 (00:00) kbrazil ttys001 Thu Aug 29 14:48 - 14:48 (00:00) kbrazil ttys003 Thu Aug 29 14:36 - 14:36 (00:00) kbrazil ttys002 Thu Aug 29 14:35 - 14:35 (00:00) kbrazil ttys001 Thu Aug 29 14:28 - 14:28 (00:00) kbrazil ttys003 Thu Aug 29 12:47 - 12:47 (00:00) kbrazil ttys003 Thu Aug 29 09:47 - 09:47 (00:00) kbrazil ttys002 Thu Aug 29 09:41 - 09:41 (00:00) kbrazil ttys001 Thu Aug 29 09:32 - 09:32 (00:00) kbrazil ttys001 Thu Aug 29 09:30 - 09:30 (00:00) kbrazil ttys001 Wed Aug 28 14:29 - 14:29 (00:00) kbrazil console Tue Aug 27 21:22 - 13:53 (20+16:31) reboot ~ Tue Aug 27 21:21 shutdown ~ Tue Aug 27 21:17 root console Tue Aug 27 21:17 - shutdown (00:00) kbrazil ttys002 Mon Aug 26 15:09 - 15:09 (00:00) kbrazil ttys002 Mon Aug 26 07:54 - 07:54 (00:00) kbrazil ttys002 Fri Aug 23 16:22 - 16:22 (00:00) kbrazil ttys001 Fri Aug 23 15:21 - 15:21 (00:00) kbrazil ttys000 Fri Aug 23 15:19 - 15:19 (00:00) kbrazil ttys000 Fri Aug 23 06:46 - 06:46 (00:00) kbrazil ttys000 Thu Aug 22 17:48 - 17:48 (00:00) kbrazil ttys003 Thu Aug 22 14:21 - 14:21 (00:00) kbrazil ttys002 Thu Aug 22 14:21 - 14:21 (00:00) kbrazil ttys001 Thu Aug 22 14:21 - 14:21 (00:00) kbrazil ttys000 Thu Aug 22 14:21 - 14:21 (00:00) kbrazil console Thu Aug 22 14:20 - 21:17 (5+06:56) reboot ~ Thu Aug 22 14:20 shutdown ~ Thu Aug 22 14:17 kbrazil ttys004 Wed Aug 21 15:24 - 15:24 (00:00) kbrazil ttys000 Tue Aug 20 19:52 - 19:52 (00:00) kbrazil ttys003 Tue Aug 20 16:32 - 16:32 (00:00) kbrazil ttys003 Mon Aug 19 17:51 - 17:51 (00:00) kbrazil ttys002 Mon Aug 19 14:42 - 14:42 (00:00) kbrazil ttys000 Mon Aug 19 14:02 - 14:02 (00:00) kbrazil ttys002 Sat Aug 17 10:02 - 10:02 (00:00) kbrazil ttys000 Fri Aug 16 18:20 - 18:20 (00:00) kbrazil ttys000 Fri Aug 16 06:46 - 06:46 (00:00) kbrazil ttys003 Thu Aug 15 17:07 - 17:07 (00:00) kbrazil ttys000 Thu Aug 15 17:00 - 17:00 (00:00) kbrazil ttys003 Thu Aug 15 16:01 - 16:01 (00:00) kbrazil ttys000 Thu Aug 15 15:55 - 15:55 (00:00) kbrazil ttys005 Thu Aug 15 14:48 - 14:48 (00:00) kbrazil ttys005 Thu Aug 15 14:45 - 14:45 (00:00) kbrazil ttys003 Thu Aug 15 14:35 - 14:35 (00:00) kbrazil ttys000 Thu Aug 15 14:24 - 14:24 (00:00) kbrazil ttys005 Thu Aug 15 10:57 - 10:57 (00:00) kbrazil ttys003 Thu Aug 15 10:48 - 10:48 (00:00) kbrazil ttys002 Thu Aug 15 10:43 - 10:43 (00:00) kbrazil ttys000 Thu Aug 15 10:39 - 10:39 (00:00) kbrazil console Thu Aug 15 10:39 - 14:17 (7+03:37) reboot ~ Thu Aug 15 10:39 shutdown ~ Thu Aug 15 10:38 kbrazil ttys000 Thu Aug 15 08:56 - 08:56 (00:00) kbrazil ttys004 Thu Aug 15 08:09 - 08:09 (00:00) kbrazil ttys002 Thu Aug 15 08:08 - 08:08 (00:00) kbrazil ttys000 Wed Aug 14 18:12 - 18:12 (00:00) kbrazil ttys000 Wed Aug 14 15:08 - 15:08 (00:00) kbrazil ttys004 Wed Aug 14 09:11 - 09:11 (00:00) kbrazil ttys002 Wed Aug 14 09:03 - 09:03 (00:00) kbrazil ttys000 Tue Aug 13 14:47 - 14:47 (00:00) kbrazil ttys001 Tue Aug 13 11:14 - 11:14 (00:00) kbrazil ttys000 Tue Aug 13 11:14 - 11:14 (00:00) kbrazil ttys001 Tue Aug 13 10:54 - 10:54 (00:00) kbrazil ttys000 Tue Aug 13 10:43 - 10:43 (00:00) kbrazil ttys000 Tue Aug 13 10:29 - 10:29 (00:00) kbrazil ttys000 Tue Aug 13 09:27 - 09:27 (00:00) kbrazil ttys000 Tue Aug 13 05:40 - 05:40 (00:00) kbrazil ttys000 Mon Aug 12 14:11 - 14:11 (00:00) kbrazil ttys002 Mon Aug 12 13:54 - 13:54 (00:00) kbrazil ttys001 Mon Aug 12 13:54 - 13:54 (00:00) kbrazil ttys000 Mon Aug 12 13:54 - 13:54 (00:00) kbrazil console Mon Aug 12 13:54 - 10:38 (2+20:44) reboot ~ Mon Aug 12 13:53 shutdown ~ Mon Aug 12 13:52 kbrazil ttys002 Mon Aug 12 13:37 - 13:37 (00:00) kbrazil ttys004 Thu Aug 8 09:15 - 09:15 (00:00) kbrazil ttys003 Thu Aug 8 09:14 - 09:14 (00:00) kbrazil ttys002 Thu Aug 8 09:03 - 09:03 (00:00) kbrazil ttys002 Thu Aug 8 07:17 - 07:17 (00:00) kbrazil ttys000 Mon Aug 5 10:57 - 10:57 (00:00) kbrazil ttys000 Mon Aug 5 08:34 - 08:34 (00:00) kbrazil console Mon Aug 5 08:29 - 13:52 (7+05:23) reboot ~ Mon Aug 5 08:28 shutdown ~ Mon Aug 5 08:25 root console Mon Aug 5 08:24 - shutdown (00:01) kbrazil ttys002 Sat Aug 3 07:20 - 07:20 (00:00) kbrazil ttys001 Sat Aug 3 06:54 - 06:54 (00:00) kbrazil ttys005 Fri Aug 2 10:21 - 10:21 (00:00) kbrazil ttys004 Fri Aug 2 10:21 - 10:21 (00:00) kbrazil ttys003 Fri Aug 2 10:21 - 10:21 (00:00) kbrazil ttys002 Fri Aug 2 10:21 - 10:21 (00:00) kbrazil ttys001 Fri Aug 2 10:21 - 10:21 (00:00) kbrazil console Fri Aug 2 07:00 - 08:24 (3+01:23) reboot ~ Fri Aug 2 07:00 shutdown ~ Fri Aug 2 06:59 kbrazil console Fri Aug 2 06:06 - 06:59 (00:53) reboot ~ Fri Aug 2 06:06 shutdown ~ Fri Aug 2 06:05 kbrazil ttys010 Wed Jul 31 08:44 - 08:44 (00:00) kbrazil ttys010 Tue Jul 30 14:48 - 14:48 (00:00) kbrazil ttys008 Tue Jul 30 08:23 - 08:23 (00:00) kbrazil ttys006 Tue Jul 30 07:24 - 07:24 (00:00) kbrazil ttys006 Mon Jul 29 13:32 - 13:32 (00:00) kbrazil ttys003 Mon Jul 29 12:50 - 12:50 (00:00) kbrazil ttys003 Mon Jul 29 12:46 - 12:46 (00:00) kbrazil ttys001 Sun Jul 28 14:12 - 14:12 (00:00) kbrazil console Sun Jul 28 14:07 - 06:04 (4+15:57) reboot ~ Sun Jul 28 14:07 shutdown ~ Sun Jul 28 14:06 kbrazil ttys002 Sun Jul 28 13:17 - 13:17 (00:00) kbrazil ttys000 Sun Jul 28 13:17 - 13:17 (00:00) kbrazil ttys002 Sun Jul 28 13:16 - 13:16 (00:00) kbrazil ttys001 Sun Jul 28 13:16 - 13:16 (00:00) kbrazil ttys000 Sun Jul 28 13:16 - 13:16 (00:00) kbrazil console Sun Jul 28 13:16 - 14:06 (00:50) reboot ~ Sun Jul 28 13:16 shutdown ~ Sun Jul 28 13:15 kbrazil ttys003 Sun Jul 28 13:12 - 13:12 (00:00) kbrazil ttys001 Sun Jul 28 13:10 - 13:10 (00:00) kbrazil ttys005 Sun Jul 28 12:38 - 12:38 (00:00) kbrazil ttys005 Sun Jul 28 12:01 - 12:01 (00:00) kbrazil ttys005 Sun Jul 28 08:17 - 08:17 (00:00) kbrazil ttys005 Sat Jul 27 18:36 - 18:36 (00:00) kbrazil ttys003 Sat Jul 27 18:25 - 18:25 (00:00) kbrazil ttys001 Sat Jul 27 18:19 - 18:19 (00:00) kbrazil ttys002 Fri Jul 26 10:58 - 10:58 (00:00) kbrazil ttys002 Fri Jul 26 08:16 - 08:16 (00:00) kbrazil console Thu Jul 25 18:38 - 13:15 (2+18:36) reboot ~ Thu Jul 25 18:38 shutdown ~ Thu Jul 25 18:37 kbrazil ttys004 Thu Jul 25 10:57 - 10:57 (00:00) kbrazil ttys004 Thu Jul 25 08:33 - 08:33 (00:00) kbrazil ttys002 Wed Jul 24 14:39 - 14:39 (00:00) kbrazil ttys005 Wed Jul 24 12:13 - 12:13 (00:00) kbrazil ttys004 Wed Jul 24 10:51 - 10:51 (00:00) kbrazil ttys002 Wed Jul 24 10:17 - 10:17 (00:00) kbrazil ttys000 Wed Jul 24 02:54 - 02:54 (00:00) kbrazil console Tue Jul 23 20:16 - 18:37 (1+22:21) reboot ~ Tue Jul 23 20:15 shutdown ~ Tue Jul 23 20:09 root console Tue Jul 23 20:07 - shutdown (00:01) kbrazil ttys001 Tue Jul 23 07:03 - 07:03 (00:00) kbrazil ttys007 Tue Jul 16 14:57 - 14:57 (00:00) kbrazil ttys007 Mon Jul 15 14:45 - 14:45 (00:00) kbrazil ttys005 Mon Jul 15 14:38 - 14:38 (00:00) kbrazil ttys004 Mon Jul 15 12:12 - 12:12 (00:00) kbrazil ttys002 Fri Jul 12 15:42 - 15:42 (00:00) kbrazil ttys000 Fri Jul 12 14:40 - 14:40 (00:00) kbrazil ttys000 Fri Jul 12 08:45 - 08:45 (00:00) kbrazil ttys000 Thu Jul 11 14:42 - 14:42 (00:00) kbrazil ttys000 Thu Jul 11 12:03 - 12:03 (00:00) kbrazil ttys000 Thu Jul 11 11:41 - 11:41 (00:00) kbrazil console Thu Jul 11 11:41 - 20:07 (12+08:25) reboot ~ Thu Jul 11 11:41 shutdown ~ Thu Jul 11 11:41 kbrazil ttys001 Thu Jul 11 11:38 - 11:38 (00:00) kbrazil ttys002 Thu Jul 11 10:32 - 10:32 (00:00) kbrazil ttys001 Thu Jul 11 08:24 - 08:24 (00:00) kbrazil ttys001 Thu Jul 11 08:17 - 08:17 (00:00) kbrazil ttys001 Thu Jul 11 08:09 - 08:09 (00:00) kbrazil ttys001 Thu Jul 11 08:07 - 08:07 (00:00) kbrazil ttys001 Thu Jul 11 08:03 - 08:03 (00:00) kbrazil ttys001 Thu Jul 11 07:57 - 07:57 (00:00) kbrazil ttys001 Thu Jul 11 07:52 - 07:52 (00:00) kbrazil ttys001 Wed Jul 10 17:35 - 17:35 (00:00) kbrazil ttys003 Wed Jul 10 16:58 - 16:58 (00:00) kbrazil ttys002 Wed Jul 10 16:39 - 16:39 (00:00) kbrazil ttys001 Wed Jul 10 07:51 - 07:51 (00:00) kbrazil ttys000 Tue Jul 9 22:30 - 22:30 (00:00) kbrazil ttys000 Tue Jul 9 22:14 - 22:14 (00:00) kbrazil ttys001 Tue Jul 9 22:14 - 22:14 (00:00) kbrazil ttys000 Tue Jul 9 22:14 - 22:14 (00:00) kbrazil ttys000 Tue Jul 9 22:12 - 22:12 (00:00) kbrazil ttys003 Tue Jul 9 22:11 - 22:11 (00:00) kbrazil ttys002 Tue Jul 9 22:11 - 22:11 (00:00) kbrazil ttys001 Tue Jul 9 22:11 - 22:11 (00:00) kbrazil ttys000 Tue Jul 9 22:11 - 22:11 (00:00) kbrazil ttys001 Tue Jul 9 22:10 - 22:10 (00:00) kbrazil ttys000 Tue Jul 9 22:04 - 22:04 (00:00) kbrazil console Tue Jul 9 08:29 - 11:41 (2+03:11) reboot ~ Tue Jul 9 08:29 shutdown ~ Tue Jul 9 08:27 kbrazil console Mon Jul 8 18:07 - 08:27 (14:20) reboot ~ Mon Jul 8 18:07 shutdown ~ Mon Jul 8 18:06 kbrazil console Mon Jul 8 17:47 - 18:06 (00:18) reboot ~ Mon Jul 8 17:47 shutdown ~ Mon Jul 8 17:47 kbrazil console Tue Jul 2 11:49 - 17:47 (6+05:58) reboot ~ Tue Jul 2 11:48 shutdown ~ Tue Jul 2 11:44 kbrazil console Tue Jul 2 10:44 - 11:44 (00:59) reboot ~ Tue Jul 2 10:43 shutdown ~ Tue Jul 2 10:00 kbrazil console Tue Jul 2 09:52 - 10:00 (00:08) reboot ~ Tue Jul 2 09:50 shutdown ~ Tue Jul 2 09:37 kbrazil console Tue Jul 2 08:56 - 09:37 (00:40) _mbsetupuser console Tue Jul 2 08:52 - 08:57 (00:05) root console Tue Jul 2 08:52 - 08:52 (00:00) reboot ~ Tue Jul 2 08:51 reboot ~ Fri Jun 21 15:54 wtmp begins Fri Jun 21 15:54 jc-1.17.3/tests/fixtures/osx-10.14.6/ls-R-newlines.json000066400000000000000000000015241415226333200221650ustar00rootroot00000000000000[{"filename": "lstest"}, {"filename": "this file starts with four newlines", "parent": "./lstest"}, {"filename": "this file has", "parent": "./lstest"}, {"filename": "a combination", "parent": "./lstest"}, {"filename": "of everything", "parent": "./lstest"}, {"filename": "this file starts with one newline", "parent": "./lstest"}, {"filename": "a regular filename", "parent": "./lstest"}, {"filename": "this file", "parent": "./lstest"}, {"filename": "has", "parent": "./lstest"}, {"filename": "six", "parent": "./lstest"}, {"filename": "newlines", "parent": "./lstest"}, {"filename": "within", "parent": "./lstest"}, {"filename": "this file has", "parent": "./lstest"}, {"filename": "four contiguous newlines inside", "parent": "./lstest"}, {"filename": "this file has", "parent": "./lstest"}, {"filename": "a newline inside", "parent": "./lstest"}] jc-1.17.3/tests/fixtures/osx-10.14.6/ls-R-newlines.out000066400000000000000000000004261415226333200220230ustar00rootroot00000000000000lstest ./lstest: this file starts with four newlines this file has a combination of everything this file starts with one newline a regular filename this file has six newlines within this file has four contiguous newlines inside this file has a newline inside jc-1.17.3/tests/fixtures/osx-10.14.6/ls-R.json000066400000000000000000016246521415226333200203610ustar00rootroot00000000000000[{"filename": "bin"}, {"filename": "lib"}, {"filename": "libexec"}, {"filename": "local"}, {"filename": "sbin"}, {"filename": "share"}, {"filename": "standalone"}, {"filename": "2to3-", "parent": "/usr/bin"}, {"filename": "2to3-2.7", "parent": "/usr/bin"}, {"filename": "AssetCacheLocatorUtil", "parent": "/usr/bin"}, {"filename": "AssetCacheManagerUtil", "parent": "/usr/bin"}, {"filename": "AssetCacheTetheratorUtil", "parent": "/usr/bin"}, {"filename": "BuildStrings", "parent": "/usr/bin"}, {"filename": "CpMac", "parent": "/usr/bin"}, {"filename": "DeRez", "parent": "/usr/bin"}, {"filename": "GetFileInfo", "parent": "/usr/bin"}, {"filename": "IOAccelMemory", "parent": "/usr/bin"}, {"filename": "MergePef", "parent": "/usr/bin"}, {"filename": "MvMac", "parent": "/usr/bin"}, {"filename": "ResMerger", "parent": "/usr/bin"}, {"filename": "Rez", "parent": "/usr/bin"}, {"filename": "RezDet", "parent": "/usr/bin"}, {"filename": "RezWack", "parent": "/usr/bin"}, {"filename": "SafeEjectGPU", "parent": "/usr/bin"}, {"filename": "SetFile", "parent": "/usr/bin"}, {"filename": "SplitForks", "parent": "/usr/bin"}, {"filename": "UnRezWack", "parent": "/usr/bin"}, {"filename": "a2p", "parent": "/usr/bin"}, {"filename": "a2p5.18", "parent": "/usr/bin"}, {"filename": "actool", "parent": "/usr/bin"}, {"filename": "addftinfo", "parent": "/usr/bin"}, {"filename": "afclip", "parent": "/usr/bin"}, {"filename": "afconvert", "parent": "/usr/bin"}, {"filename": "afhash", "parent": "/usr/bin"}, {"filename": "afida", "parent": "/usr/bin"}, {"filename": "afinfo", "parent": "/usr/bin"}, {"filename": "afmtodit", "parent": "/usr/bin"}, {"filename": "afplay", "parent": "/usr/bin"}, {"filename": "afscexpand", "parent": "/usr/bin"}, {"filename": "agentxtrap", "parent": "/usr/bin"}, {"filename": "agvtool", "parent": "/usr/bin"}, {"filename": "alias", "parent": "/usr/bin"}, {"filename": "applesingle", "parent": "/usr/bin"}, {"filename": "appletviewer", "parent": "/usr/bin"}, {"filename": "apply", "parent": "/usr/bin"}, {"filename": "apropos", "parent": "/usr/bin"}, {"filename": "apt", "parent": "/usr/bin"}, {"filename": "ar", "parent": "/usr/bin"}, {"filename": "arch", "parent": "/usr/bin"}, {"filename": "as", "parent": "/usr/bin"}, {"filename": "asa", "parent": "/usr/bin"}, {"filename": "asctl", "parent": "/usr/bin"}, {"filename": "assetutil", "parent": "/usr/bin"}, {"filename": "at", "parent": "/usr/bin"}, {"filename": "atos", "parent": "/usr/bin"}, {"filename": "atq", "parent": "/usr/bin"}, {"filename": "atrm", "parent": "/usr/bin"}, {"filename": "atsutil", "parent": "/usr/bin"}, {"filename": "automator", "parent": "/usr/bin"}, {"filename": "auval", "parent": "/usr/bin"}, {"filename": "auvaltool", "parent": "/usr/bin"}, {"filename": "avbdiagnose", "parent": "/usr/bin"}, {"filename": "avbutil", "parent": "/usr/bin"}, {"filename": "avconvert", "parent": "/usr/bin"}, {"filename": "avmetareadwrite", "parent": "/usr/bin"}, {"filename": "awk", "parent": "/usr/bin"}, {"filename": "banner", "parent": "/usr/bin"}, {"filename": "base64", "parent": "/usr/bin"}, {"filename": "basename", "parent": "/usr/bin"}, {"filename": "bashbug", "parent": "/usr/bin"}, {"filename": "batch", "parent": "/usr/bin"}, {"filename": "bc", "parent": "/usr/bin"}, {"filename": "bg", "parent": "/usr/bin"}, {"filename": "biff", "parent": "/usr/bin"}, {"filename": "binhex", "parent": "/usr/bin"}, {"filename": "binhex.pl", "parent": "/usr/bin"}, {"filename": "binhex5.18.pl", "parent": "/usr/bin"}, {"filename": "bioutil", "parent": "/usr/bin"}, {"filename": "bison", "parent": "/usr/bin"}, {"filename": "bitesize.d", "parent": "/usr/bin"}, {"filename": "brctl", "parent": "/usr/bin"}, {"filename": "bsdtar", "parent": "/usr/bin"}, {"filename": "bspatch", "parent": "/usr/bin"}, {"filename": "btmmdiagnose", "parent": "/usr/bin"}, {"filename": "bunzip2", "parent": "/usr/bin"}, {"filename": "bzcat", "parent": "/usr/bin"}, {"filename": "bzcmp", "parent": "/usr/bin"}, {"filename": "bzdiff", "parent": "/usr/bin"}, {"filename": "bzegrep", "parent": "/usr/bin"}, {"filename": "bzfgrep", "parent": "/usr/bin"}, {"filename": "bzgrep", "parent": "/usr/bin"}, {"filename": "bzip2", "parent": "/usr/bin"}, {"filename": "bzip2recover", "parent": "/usr/bin"}, {"filename": "bzless", "parent": "/usr/bin"}, {"filename": "bzmore", "parent": "/usr/bin"}, {"filename": "c++", "parent": "/usr/bin"}, {"filename": "c++filt", "parent": "/usr/bin"}, {"filename": "c2ph", "parent": "/usr/bin"}, {"filename": "c2ph5.18", "parent": "/usr/bin"}, {"filename": "c89", "parent": "/usr/bin"}, {"filename": "c99", "parent": "/usr/bin"}, {"filename": "caffeinate", "parent": "/usr/bin"}, {"filename": "cal", "parent": "/usr/bin"}, {"filename": "calendar", "parent": "/usr/bin"}, {"filename": "cancel", "parent": "/usr/bin"}, {"filename": "cap_mkdb", "parent": "/usr/bin"}, {"filename": "captoinfo", "parent": "/usr/bin"}, {"filename": "cc", "parent": "/usr/bin"}, {"filename": "cd", "parent": "/usr/bin"}, {"filename": "certtool", "parent": "/usr/bin"}, {"filename": "checknr", "parent": "/usr/bin"}, {"filename": "chflags", "parent": "/usr/bin"}, {"filename": "chfn", "parent": "/usr/bin"}, {"filename": "chgrp", "parent": "/usr/bin"}, {"filename": "chpass", "parent": "/usr/bin"}, {"filename": "chsh", "parent": "/usr/bin"}, {"filename": "cksum", "parent": "/usr/bin"}, {"filename": "clang", "parent": "/usr/bin"}, {"filename": "clang++", "parent": "/usr/bin"}, {"filename": "clear", "parent": "/usr/bin"}, {"filename": "cmp", "parent": "/usr/bin"}, {"filename": "cmpdylib", "parent": "/usr/bin"}, {"filename": "codesign", "parent": "/usr/bin"}, {"filename": "codesign_allocate", "parent": "/usr/bin"}, {"filename": "col", "parent": "/usr/bin"}, {"filename": "colcrt", "parent": "/usr/bin"}, {"filename": "colldef", "parent": "/usr/bin"}, {"filename": "colrm", "parent": "/usr/bin"}, {"filename": "column", "parent": "/usr/bin"}, {"filename": "comm", "parent": "/usr/bin"}, {"filename": "command", "parent": "/usr/bin"}, {"filename": "compress", "parent": "/usr/bin"}, {"filename": "compression_tool", "parent": "/usr/bin"}, {"filename": "config_data", "parent": "/usr/bin"}, {"filename": "config_data5.18", "parent": "/usr/bin"}, {"filename": "corebrightnessdiag", "parent": "/usr/bin"}, {"filename": "corelist", "parent": "/usr/bin"}, {"filename": "corelist5.18", "parent": "/usr/bin"}, {"filename": "cpan", "parent": "/usr/bin"}, {"filename": "cpan2dist", "parent": "/usr/bin"}, {"filename": "cpan2dist5.18", "parent": "/usr/bin"}, {"filename": "cpan5.18", "parent": "/usr/bin"}, {"filename": "cpanp", "parent": "/usr/bin"}, {"filename": "cpanp-run-perl", "parent": "/usr/bin"}, {"filename": "cpanp-run-perl5.18", "parent": "/usr/bin"}, {"filename": "cpanp5.18", "parent": "/usr/bin"}, {"filename": "cpio", "parent": "/usr/bin"}, {"filename": "cpp", "parent": "/usr/bin"}, {"filename": "cpu_profiler.d", "parent": "/usr/bin"}, {"filename": "cpuwalk.d", "parent": "/usr/bin"}, {"filename": "crc32", "parent": "/usr/bin"}, {"filename": "crc325.18", "parent": "/usr/bin"}, {"filename": "creatbyproc.d", "parent": "/usr/bin"}, {"filename": "crlrefresh", "parent": "/usr/bin"}, {"filename": "crontab", "parent": "/usr/bin"}, {"filename": "csdiagnose", "parent": "/usr/bin"}, {"filename": "csgather", "parent": "/usr/bin"}, {"filename": "csplit", "parent": "/usr/bin"}, {"filename": "csreq", "parent": "/usr/bin"}, {"filename": "csrutil", "parent": "/usr/bin"}, {"filename": "ctags", "parent": "/usr/bin"}, {"filename": "ctf_insert", "parent": "/usr/bin"}, {"filename": "cu", "parent": "/usr/bin"}, {"filename": "cups-config", "parent": "/usr/bin"}, {"filename": "cupstestdsc", "parent": "/usr/bin"}, {"filename": "cupstestppd", "parent": "/usr/bin"}, {"filename": "curl", "parent": "/usr/bin"}, {"filename": "curl-config", "parent": "/usr/bin"}, {"filename": "cut", "parent": "/usr/bin"}, {"filename": "cvaffinity", "parent": "/usr/bin"}, {"filename": "cvcp", "parent": "/usr/bin"}, {"filename": "cvmkdir", "parent": "/usr/bin"}, {"filename": "cvmkfile", "parent": "/usr/bin"}, {"filename": "dappprof", "parent": "/usr/bin"}, {"filename": "dapptrace", "parent": "/usr/bin"}, {"filename": "darwinup", "parent": "/usr/bin"}, {"filename": "db_archive", "parent": "/usr/bin"}, {"filename": "db_checkpoint", "parent": "/usr/bin"}, {"filename": "db_codegen", "parent": "/usr/bin"}, {"filename": "db_deadlock", "parent": "/usr/bin"}, {"filename": "db_dump", "parent": "/usr/bin"}, {"filename": "db_hotbackup", "parent": "/usr/bin"}, {"filename": "db_load", "parent": "/usr/bin"}, {"filename": "db_printlog", "parent": "/usr/bin"}, {"filename": "db_recover", "parent": "/usr/bin"}, {"filename": "db_stat", "parent": "/usr/bin"}, {"filename": "db_upgrade", "parent": "/usr/bin"}, {"filename": "db_verify", "parent": "/usr/bin"}, {"filename": "dbicadmin", "parent": "/usr/bin"}, {"filename": "dbicadmin5.18", "parent": "/usr/bin"}, {"filename": "dbilogstrip", "parent": "/usr/bin"}, {"filename": "dbilogstrip5.18", "parent": "/usr/bin"}, {"filename": "dbiprof", "parent": "/usr/bin"}, {"filename": "dbiprof5.18", "parent": "/usr/bin"}, {"filename": "dbiproxy", "parent": "/usr/bin"}, {"filename": "dbiproxy5.18", "parent": "/usr/bin"}, {"filename": "dc", "parent": "/usr/bin"}, {"filename": "debinhex.pl", "parent": "/usr/bin"}, {"filename": "debinhex5.18.pl", "parent": "/usr/bin"}, {"filename": "defaults", "parent": "/usr/bin"}, {"filename": "delv", "parent": "/usr/bin"}, {"filename": "desdp", "parent": "/usr/bin"}, {"filename": "diagnose-fu", "parent": "/usr/bin"}, {"filename": "diff", "parent": "/usr/bin"}, {"filename": "diff3", "parent": "/usr/bin"}, {"filename": "diffstat", "parent": "/usr/bin"}, {"filename": "dig", "parent": "/usr/bin"}, {"filename": "dirname", "parent": "/usr/bin"}, {"filename": "dispqlen.d", "parent": "/usr/bin"}, {"filename": "ditto", "parent": "/usr/bin"}, {"filename": "dmc", "parent": "/usr/bin"}, {"filename": "dns-sd", "parent": "/usr/bin"}, {"filename": "drutil", "parent": "/usr/bin"}, {"filename": "dscacheutil", "parent": "/usr/bin"}, {"filename": "dscl", "parent": "/usr/bin"}, {"filename": "dserr", "parent": "/usr/bin"}, {"filename": "dsexport", "parent": "/usr/bin"}, {"filename": "dsimport", "parent": "/usr/bin"}, {"filename": "dsmemberutil", "parent": "/usr/bin"}, {"filename": "dsymutil", "parent": "/usr/bin"}, {"filename": "dtruss", "parent": "/usr/bin"}, {"filename": "du", "parent": "/usr/bin"}, {"filename": "dwarfdump", "parent": "/usr/bin"}, {"filename": "easy_install", "parent": "/usr/bin"}, {"filename": "easy_install-2.7", "parent": "/usr/bin"}, {"filename": "egrep", "parent": "/usr/bin"}, {"filename": "emacs", "parent": "/usr/bin"}, {"filename": "emacs-undumped", "parent": "/usr/bin"}, {"filename": "emacsclient", "parent": "/usr/bin"}, {"filename": "enc2xs", "parent": "/usr/bin"}, {"filename": "enc2xs5.18", "parent": "/usr/bin"}, {"filename": "encode_keychange", "parent": "/usr/bin"}, {"filename": "env", "parent": "/usr/bin"}, {"filename": "eqn", "parent": "/usr/bin"}, {"filename": "erb", "parent": "/usr/bin"}, {"filename": "errinfo", "parent": "/usr/bin"}, {"filename": "etags", "parent": "/usr/bin"}, {"filename": "ex", "parent": "/usr/bin"}, {"filename": "execsnoop", "parent": "/usr/bin"}, {"filename": "expand", "parent": "/usr/bin"}, {"filename": "expect", "parent": "/usr/bin"}, {"filename": "extcheck", "parent": "/usr/bin"}, {"filename": "eyapp", "parent": "/usr/bin"}, {"filename": "eyapp5.18", "parent": "/usr/bin"}, {"filename": "false", "parent": "/usr/bin"}, {"filename": "fc", "parent": "/usr/bin"}, {"filename": "fddist", "parent": "/usr/bin"}, {"filename": "fdesetup", "parent": "/usr/bin"}, {"filename": "fg", "parent": "/usr/bin"}, {"filename": "fgrep", "parent": "/usr/bin"}, {"filename": "file", "parent": "/usr/bin"}, {"filename": "filebyproc.d", "parent": "/usr/bin"}, {"filename": "filtercalltree", "parent": "/usr/bin"}, {"filename": "find", "parent": "/usr/bin"}, {"filename": "find2perl", "parent": "/usr/bin"}, {"filename": "find2perl5.18", "parent": "/usr/bin"}, {"filename": "findrule", "parent": "/usr/bin"}, {"filename": "findrule5.18", "parent": "/usr/bin"}, {"filename": "finger", "parent": "/usr/bin"}, {"filename": "fixproc", "parent": "/usr/bin"}, {"filename": "flex", "parent": "/usr/bin"}, {"filename": "flex++", "parent": "/usr/bin"}, {"filename": "fmt", "parent": "/usr/bin"}, {"filename": "fold", "parent": "/usr/bin"}, {"filename": "fontrestore", "parent": "/usr/bin"}, {"filename": "footprint", "parent": "/usr/bin"}, {"filename": "format-sql", "parent": "/usr/bin"}, {"filename": "format-sql5.18", "parent": "/usr/bin"}, {"filename": "from", "parent": "/usr/bin"}, {"filename": "fs_usage", "parent": "/usr/bin"}, {"filename": "funzip", "parent": "/usr/bin"}, {"filename": "fuser", "parent": "/usr/bin"}, {"filename": "fwkdp", "parent": "/usr/bin"}, {"filename": "fwkpfv", "parent": "/usr/bin"}, {"filename": "g++", "parent": "/usr/bin"}, {"filename": "gatherheaderdoc", "parent": "/usr/bin"}, {"filename": "gcc", "parent": "/usr/bin"}, {"filename": "gcore", "parent": "/usr/bin"}, {"filename": "gcov", "parent": "/usr/bin"}, {"filename": "gdiffmk", "parent": "/usr/bin"}, {"filename": "gem", "parent": "/usr/bin"}, {"filename": "gen_bridge_metadata", "parent": "/usr/bin"}, {"filename": "gencat", "parent": "/usr/bin"}, {"filename": "genstrings", "parent": "/usr/bin"}, {"filename": "getconf", "parent": "/usr/bin"}, {"filename": "getopt", "parent": "/usr/bin"}, {"filename": "getopts", "parent": "/usr/bin"}, {"filename": "git", "parent": "/usr/bin"}, {"filename": "git-cvsserver", "parent": "/usr/bin"}, {"filename": "git-receive-pack", "parent": "/usr/bin"}, {"filename": "git-shell", "parent": "/usr/bin"}, {"filename": "git-upload-archive", "parent": "/usr/bin"}, {"filename": "git-upload-pack", "parent": "/usr/bin"}, {"filename": "gm4", "parent": "/usr/bin"}, {"filename": "gnumake", "parent": "/usr/bin"}, {"filename": "gperf", "parent": "/usr/bin"}, {"filename": "grep", "parent": "/usr/bin"}, {"filename": "grn", "parent": "/usr/bin"}, {"filename": "grodvi", "parent": "/usr/bin"}, {"filename": "groff", "parent": "/usr/bin"}, {"filename": "groffer", "parent": "/usr/bin"}, {"filename": "grog", "parent": "/usr/bin"}, {"filename": "grolbp", "parent": "/usr/bin"}, {"filename": "grolj4", "parent": "/usr/bin"}, {"filename": "grops", "parent": "/usr/bin"}, {"filename": "grotty", "parent": "/usr/bin"}, {"filename": "groups", "parent": "/usr/bin"}, {"filename": "gunzip", "parent": "/usr/bin"}, {"filename": "gzcat", "parent": "/usr/bin"}, {"filename": "gzexe", "parent": "/usr/bin"}, {"filename": "gzip", "parent": "/usr/bin"}, {"filename": "h2ph", "parent": "/usr/bin"}, {"filename": "h2ph5.18", "parent": "/usr/bin"}, {"filename": "h2xs", "parent": "/usr/bin"}, {"filename": "h2xs5.18", "parent": "/usr/bin"}, {"filename": "hash", "parent": "/usr/bin"}, {"filename": "hdid", "parent": "/usr/bin"}, {"filename": "hdiutil", "parent": "/usr/bin"}, {"filename": "hdxml2manxml", "parent": "/usr/bin"}, {"filename": "head", "parent": "/usr/bin"}, {"filename": "headerdoc2html", "parent": "/usr/bin"}, {"filename": "heap", "parent": "/usr/bin"}, {"filename": "heap32", "parent": "/usr/bin"}, {"filename": "hexdump", "parent": "/usr/bin"}, {"filename": "hidutil", "parent": "/usr/bin"}, {"filename": "hiutil", "parent": "/usr/bin"}, {"filename": "host", "parent": "/usr/bin"}, {"filename": "hostinfo", "parent": "/usr/bin"}, {"filename": "hotspot.d", "parent": "/usr/bin"}, {"filename": "hpftodit", "parent": "/usr/bin"}, {"filename": "hpmdiagnose", "parent": "/usr/bin"}, {"filename": "htmltree", "parent": "/usr/bin"}, {"filename": "htmltree5.18", "parent": "/usr/bin"}, {"filename": "ibtool", "parent": "/usr/bin"}, {"filename": "iconutil", "parent": "/usr/bin"}, {"filename": "iconv", "parent": "/usr/bin"}, {"filename": "ictool", "parent": "/usr/bin"}, {"filename": "id", "parent": "/usr/bin"}, {"filename": "idle", "parent": "/usr/bin"}, {"filename": "idle2.7", "parent": "/usr/bin"}, {"filename": "idlj", "parent": "/usr/bin"}, {"filename": "imptrace", "parent": "/usr/bin"}, {"filename": "indent", "parent": "/usr/bin"}, {"filename": "indxbib", "parent": "/usr/bin"}, {"filename": "info", "parent": "/usr/bin"}, {"filename": "infocmp", "parent": "/usr/bin"}, {"filename": "infokey", "parent": "/usr/bin"}, {"filename": "infotocap", "parent": "/usr/bin"}, {"filename": "install", "parent": "/usr/bin"}, {"filename": "install-info", "parent": "/usr/bin"}, {"filename": "install_name_tool", "parent": "/usr/bin"}, {"filename": "instmodsh", "parent": "/usr/bin"}, {"filename": "instmodsh5.18", "parent": "/usr/bin"}, {"filename": "instruments", "parent": "/usr/bin"}, {"filename": "iofile.d", "parent": "/usr/bin"}, {"filename": "iofileb.d", "parent": "/usr/bin"}, {"filename": "iopattern", "parent": "/usr/bin"}, {"filename": "iopending", "parent": "/usr/bin"}, {"filename": "iosnoop", "parent": "/usr/bin"}, {"filename": "iotop", "parent": "/usr/bin"}, {"filename": "ip2cc", "parent": "/usr/bin"}, {"filename": "ip2cc5.18", "parent": "/usr/bin"}, {"filename": "ipcount", "parent": "/usr/bin"}, {"filename": "ipcount5.18", "parent": "/usr/bin"}, {"filename": "ipcrm", "parent": "/usr/bin"}, {"filename": "ipcs", "parent": "/usr/bin"}, {"filename": "ippfind", "parent": "/usr/bin"}, {"filename": "ipptool", "parent": "/usr/bin"}, {"filename": "iprofiler", "parent": "/usr/bin"}, {"filename": "iptab", "parent": "/usr/bin"}, {"filename": "iptab5.18", "parent": "/usr/bin"}, {"filename": "irb", "parent": "/usr/bin"}, {"filename": "jar", "parent": "/usr/bin"}, {"filename": "jarsigner", "parent": "/usr/bin"}, {"filename": "java", "parent": "/usr/bin"}, {"filename": "javac", "parent": "/usr/bin"}, {"filename": "javadoc", "parent": "/usr/bin"}, {"filename": "javah", "parent": "/usr/bin"}, {"filename": "javap", "parent": "/usr/bin"}, {"filename": "javapackager", "parent": "/usr/bin"}, {"filename": "javaws", "parent": "/usr/bin"}, {"filename": "jcmd", "parent": "/usr/bin"}, {"filename": "jconsole", "parent": "/usr/bin"}, {"filename": "jcontrol", "parent": "/usr/bin"}, {"filename": "jdb", "parent": "/usr/bin"}, {"filename": "jdeps", "parent": "/usr/bin"}, {"filename": "jhat", "parent": "/usr/bin"}, {"filename": "jhsdb", "parent": "/usr/bin"}, {"filename": "jimage", "parent": "/usr/bin"}, {"filename": "jinfo", "parent": "/usr/bin"}, {"filename": "jjs", "parent": "/usr/bin"}, {"filename": "jmap", "parent": "/usr/bin"}, {"filename": "jmc", "parent": "/usr/bin"}, {"filename": "jobs", "parent": "/usr/bin"}, {"filename": "join", "parent": "/usr/bin"}, {"filename": "jot", "parent": "/usr/bin"}, {"filename": "jps", "parent": "/usr/bin"}, {"filename": "jrunscript", "parent": "/usr/bin"}, {"filename": "jsadebugd", "parent": "/usr/bin"}, {"filename": "jshell", "parent": "/usr/bin"}, {"filename": "json_pp", "parent": "/usr/bin"}, {"filename": "json_pp5.18", "parent": "/usr/bin"}, {"filename": "jstack", "parent": "/usr/bin"}, {"filename": "jstat", "parent": "/usr/bin"}, {"filename": "jstatd", "parent": "/usr/bin"}, {"filename": "jvisualvm", "parent": "/usr/bin"}, {"filename": "kcc", "parent": "/usr/bin"}, {"filename": "kdestroy", "parent": "/usr/bin"}, {"filename": "kextutil", "parent": "/usr/bin"}, {"filename": "keytool", "parent": "/usr/bin"}, {"filename": "kgetcred", "parent": "/usr/bin"}, {"filename": "kill.d", "parent": "/usr/bin"}, {"filename": "killall", "parent": "/usr/bin"}, {"filename": "kinit", "parent": "/usr/bin"}, {"filename": "klist", "parent": "/usr/bin"}, {"filename": "kpasswd", "parent": "/usr/bin"}, {"filename": "krb5-config", "parent": "/usr/bin"}, {"filename": "kswitch", "parent": "/usr/bin"}, {"filename": "ktrace", "parent": "/usr/bin"}, {"filename": "lam", "parent": "/usr/bin"}, {"filename": "last", "parent": "/usr/bin"}, {"filename": "lastcomm", "parent": "/usr/bin"}, {"filename": "lastwords", "parent": "/usr/bin"}, {"filename": "latency", "parent": "/usr/bin"}, {"filename": "layerutil", "parent": "/usr/bin"}, {"filename": "ld", "parent": "/usr/bin"}, {"filename": "ldapadd", "parent": "/usr/bin"}, {"filename": "ldapcompare", "parent": "/usr/bin"}, {"filename": "ldapdelete", "parent": "/usr/bin"}, {"filename": "ldapexop", "parent": "/usr/bin"}, {"filename": "ldapmodify", "parent": "/usr/bin"}, {"filename": "ldapmodrdn", "parent": "/usr/bin"}, {"filename": "ldappasswd", "parent": "/usr/bin"}, {"filename": "ldapsearch", "parent": "/usr/bin"}, {"filename": "ldapurl", "parent": "/usr/bin"}, {"filename": "ldapwhoami", "parent": "/usr/bin"}, {"filename": "leaks", "parent": "/usr/bin"}, {"filename": "leaks32", "parent": "/usr/bin"}, {"filename": "leave", "parent": "/usr/bin"}, {"filename": "less", "parent": "/usr/bin"}, {"filename": "lessecho", "parent": "/usr/bin"}, {"filename": "lex", "parent": "/usr/bin"}, {"filename": "libnetcfg", "parent": "/usr/bin"}, {"filename": "libnetcfg5.18", "parent": "/usr/bin"}, {"filename": "libtool", "parent": "/usr/bin"}, {"filename": "lipo", "parent": "/usr/bin"}, {"filename": "lkbib", "parent": "/usr/bin"}, {"filename": "lldb", "parent": "/usr/bin"}, {"filename": "llvm-g++", "parent": "/usr/bin"}, {"filename": "llvm-gcc", "parent": "/usr/bin"}, {"filename": "loads.d", "parent": "/usr/bin"}, {"filename": "locale", "parent": "/usr/bin"}, {"filename": "localedef", "parent": "/usr/bin"}, {"filename": "locate", "parent": "/usr/bin"}, {"filename": "lockstat", "parent": "/usr/bin"}, {"filename": "log", "parent": "/usr/bin"}, {"filename": "logger", "parent": "/usr/bin"}, {"filename": "login", "parent": "/usr/bin"}, {"filename": "logname", "parent": "/usr/bin"}, {"filename": "look", "parent": "/usr/bin"}, {"filename": "lookbib", "parent": "/usr/bin"}, {"filename": "lorder", "parent": "/usr/bin"}, {"filename": "lp", "parent": "/usr/bin"}, {"filename": "lpoptions", "parent": "/usr/bin"}, {"filename": "lpq", "parent": "/usr/bin"}, {"filename": "lpr", "parent": "/usr/bin"}, {"filename": "lprm", "parent": "/usr/bin"}, {"filename": "lpstat", "parent": "/usr/bin"}, {"filename": "lsappinfo", "parent": "/usr/bin"}, {"filename": "lsbom", "parent": "/usr/bin"}, {"filename": "lskq", "parent": "/usr/bin"}, {"filename": "lsm", "parent": "/usr/bin"}, {"filename": "lsmp", "parent": "/usr/bin"}, {"filename": "lsvfs", "parent": "/usr/bin"}, {"filename": "lwp-download", "parent": "/usr/bin"}, {"filename": "lwp-download5.18", "parent": "/usr/bin"}, {"filename": "lwp-dump", "parent": "/usr/bin"}, {"filename": "lwp-dump5.18", "parent": "/usr/bin"}, {"filename": "lwp-mirror", "parent": "/usr/bin"}, {"filename": "lwp-mirror5.18", "parent": "/usr/bin"}, {"filename": "lwp-request", "parent": "/usr/bin"}, {"filename": "lwp-request5.18", "parent": "/usr/bin"}, {"filename": "m4", "parent": "/usr/bin"}, {"filename": "macbinary", "parent": "/usr/bin"}, {"filename": "macerror", "parent": "/usr/bin"}, {"filename": "macerror5.18", "parent": "/usr/bin"}, {"filename": "machine", "parent": "/usr/bin"}, {"filename": "mail", "parent": "/usr/bin"}, {"filename": "mailq", "parent": "/usr/bin"}, {"filename": "mailx", "parent": "/usr/bin"}, {"filename": "make", "parent": "/usr/bin"}, {"filename": "makeinfo", "parent": "/usr/bin"}, {"filename": "malloc_history", "parent": "/usr/bin"}, {"filename": "malloc_history32", "parent": "/usr/bin"}, {"filename": "man", "parent": "/usr/bin"}, {"filename": "manpath", "parent": "/usr/bin"}, {"filename": "mcxquery", "parent": "/usr/bin"}, {"filename": "mcxrefresh", "parent": "/usr/bin"}, {"filename": "mddiagnose", "parent": "/usr/bin"}, {"filename": "mdfind", "parent": "/usr/bin"}, {"filename": "mdimport", "parent": "/usr/bin"}, {"filename": "mdls", "parent": "/usr/bin"}, {"filename": "mdutil", "parent": "/usr/bin"}, {"filename": "memory_pressure", "parent": "/usr/bin"}, {"filename": "mesg", "parent": "/usr/bin"}, {"filename": "mib2c", "parent": "/usr/bin"}, {"filename": "mib2c-update", "parent": "/usr/bin"}, {"filename": "mig", "parent": "/usr/bin"}, {"filename": "mkbom", "parent": "/usr/bin"}, {"filename": "mkdep", "parent": "/usr/bin"}, {"filename": "mkfifo", "parent": "/usr/bin"}, {"filename": "mklocale", "parent": "/usr/bin"}, {"filename": "mktemp", "parent": "/usr/bin"}, {"filename": "mmroff", "parent": "/usr/bin"}, {"filename": "mnthome", "parent": "/usr/bin"}, {"filename": "moo-outdated", "parent": "/usr/bin"}, {"filename": "moo-outdated5.18", "parent": "/usr/bin"}, {"filename": "moose-outdated", "parent": "/usr/bin"}, {"filename": "moose-outdated5.18", "parent": "/usr/bin"}, {"filename": "more", "parent": "/usr/bin"}, {"filename": "mp2bug", "parent": "/usr/bin"}, {"filename": "msgs", "parent": "/usr/bin"}, {"filename": "nano", "parent": "/usr/bin"}, {"filename": "nasm", "parent": "/usr/bin"}, {"filename": "native2ascii", "parent": "/usr/bin"}, {"filename": "nbdst", "parent": "/usr/bin"}, {"filename": "nc", "parent": "/usr/bin"}, {"filename": "ncal", "parent": "/usr/bin"}, {"filename": "ncctl", "parent": "/usr/bin"}, {"filename": "ncdestroy", "parent": "/usr/bin"}, {"filename": "ncinit", "parent": "/usr/bin"}, {"filename": "nclist", "parent": "/usr/bin"}, {"filename": "ncurses5.4-config", "parent": "/usr/bin"}, {"filename": "ndisasm", "parent": "/usr/bin"}, {"filename": "neqn", "parent": "/usr/bin"}, {"filename": "net-server", "parent": "/usr/bin"}, {"filename": "net-server5.18", "parent": "/usr/bin"}, {"filename": "net-snmp-cert", "parent": "/usr/bin"}, {"filename": "net-snmp-config", "parent": "/usr/bin"}, {"filename": "net-snmp-create-v3-user", "parent": "/usr/bin"}, {"filename": "nettop", "parent": "/usr/bin"}, {"filename": "newaliases", "parent": "/usr/bin"}, {"filename": "newgrp", "parent": "/usr/bin"}, {"filename": "newproc.d", "parent": "/usr/bin"}, {"filename": "nfsstat", "parent": "/usr/bin"}, {"filename": "nice", "parent": "/usr/bin"}, {"filename": "nl", "parent": "/usr/bin"}, {"filename": "nm", "parent": "/usr/bin"}, {"filename": "nmedit", "parent": "/usr/bin"}, {"filename": "nohup", "parent": "/usr/bin"}, {"filename": "notifyutil", "parent": "/usr/bin"}, {"filename": "nroff", "parent": "/usr/bin"}, {"filename": "nscurl", "parent": "/usr/bin"}, {"filename": "nslookup", "parent": "/usr/bin"}, {"filename": "nsupdate", "parent": "/usr/bin"}, {"filename": "objdump", "parent": "/usr/bin"}, {"filename": "ocspcheck", "parent": "/usr/bin"}, {"filename": "od", "parent": "/usr/bin"}, {"filename": "odutil", "parent": "/usr/bin"}, {"filename": "open", "parent": "/usr/bin"}, {"filename": "opendiff", "parent": "/usr/bin"}, {"filename": "opensnoop", "parent": "/usr/bin"}, {"filename": "openssl", "parent": "/usr/bin"}, {"filename": "orbd", "parent": "/usr/bin"}, {"filename": "osacompile", "parent": "/usr/bin"}, {"filename": "osadecompile", "parent": "/usr/bin"}, {"filename": "osalang", "parent": "/usr/bin"}, {"filename": "osascript", "parent": "/usr/bin"}, {"filename": "otool", "parent": "/usr/bin"}, {"filename": "pack200", "parent": "/usr/bin"}, {"filename": "package-stash-conflicts", "parent": "/usr/bin"}, {"filename": "package-stash-conflicts5.18", "parent": "/usr/bin"}, {"filename": "pagesize", "parent": "/usr/bin"}, {"filename": "pagestuff", "parent": "/usr/bin"}, {"filename": "par.pl", "parent": "/usr/bin"}, {"filename": "par5.18.pl", "parent": "/usr/bin"}, {"filename": "parl", "parent": "/usr/bin"}, {"filename": "parl5.18", "parent": "/usr/bin"}, {"filename": "parldyn", "parent": "/usr/bin"}, {"filename": "parldyn5.18", "parent": "/usr/bin"}, {"filename": "passwd", "parent": "/usr/bin"}, {"filename": "paste", "parent": "/usr/bin"}, {"filename": "patch", "parent": "/usr/bin"}, {"filename": "pathchk", "parent": "/usr/bin"}, {"filename": "pathopens.d", "parent": "/usr/bin"}, {"filename": "pbcopy", "parent": "/usr/bin"}, {"filename": "pbpaste", "parent": "/usr/bin"}, {"filename": "pcap-config", "parent": "/usr/bin"}, {"filename": "pcsctest", "parent": "/usr/bin"}, {"filename": "perl", "parent": "/usr/bin"}, {"filename": "perl5.18", "parent": "/usr/bin"}, {"filename": "perlbug", "parent": "/usr/bin"}, {"filename": "perlbug5.18", "parent": "/usr/bin"}, {"filename": "perldoc", "parent": "/usr/bin"}, {"filename": "perldoc5.18", "parent": "/usr/bin"}, {"filename": "perlivp", "parent": "/usr/bin"}, {"filename": "perlivp5.18", "parent": "/usr/bin"}, {"filename": "perlthanks", "parent": "/usr/bin"}, {"filename": "perlthanks5.18", "parent": "/usr/bin"}, {"filename": "pfbtops", "parent": "/usr/bin"}, {"filename": "pgrep", "parent": "/usr/bin"}, {"filename": "phar", "parent": "/usr/bin"}, {"filename": "phar.phar", "parent": "/usr/bin"}, {"filename": "php", "parent": "/usr/bin"}, {"filename": "php-config", "parent": "/usr/bin"}, {"filename": "phpize", "parent": "/usr/bin"}, {"filename": "pic", "parent": "/usr/bin"}, {"filename": "pico", "parent": "/usr/bin"}, {"filename": "piconv", "parent": "/usr/bin"}, {"filename": "piconv5.18", "parent": "/usr/bin"}, {"filename": "pidpersec.d", "parent": "/usr/bin"}, {"filename": "pkgbuild", "parent": "/usr/bin"}, {"filename": "pkill", "parent": "/usr/bin"}, {"filename": "pl", "parent": "/usr/bin"}, {"filename": "pl2pm", "parent": "/usr/bin"}, {"filename": "pl2pm5.18", "parent": "/usr/bin"}, {"filename": "plockstat", "parent": "/usr/bin"}, {"filename": "pluginkit", "parent": "/usr/bin"}, {"filename": "plutil", "parent": "/usr/bin"}, {"filename": "pmset", "parent": "/usr/bin"}, {"filename": "pod2html", "parent": "/usr/bin"}, {"filename": "pod2html5.18", "parent": "/usr/bin"}, {"filename": "pod2latex", "parent": "/usr/bin"}, {"filename": "pod2latex5.18", "parent": "/usr/bin"}, {"filename": "pod2man", "parent": "/usr/bin"}, {"filename": "pod2man5.18", "parent": "/usr/bin"}, {"filename": "pod2readme", "parent": "/usr/bin"}, {"filename": "pod2readme5.18", "parent": "/usr/bin"}, {"filename": "pod2text", "parent": "/usr/bin"}, {"filename": "pod2text5.18", "parent": "/usr/bin"}, {"filename": "pod2usage", "parent": "/usr/bin"}, {"filename": "pod2usage5.18", "parent": "/usr/bin"}, {"filename": "podchecker", "parent": "/usr/bin"}, {"filename": "podchecker5.18", "parent": "/usr/bin"}, {"filename": "podselect", "parent": "/usr/bin"}, {"filename": "podselect5.18", "parent": "/usr/bin"}, {"filename": "policytool", "parent": "/usr/bin"}, {"filename": "post-grohtml", "parent": "/usr/bin"}, {"filename": "power_report.sh", "parent": "/usr/bin"}, {"filename": "powermetrics", "parent": "/usr/bin"}, {"filename": "pp", "parent": "/usr/bin"}, {"filename": "pp5.18", "parent": "/usr/bin"}, {"filename": "ppdc", "parent": "/usr/bin"}, {"filename": "ppdhtml", "parent": "/usr/bin"}, {"filename": "ppdi", "parent": "/usr/bin"}, {"filename": "ppdmerge", "parent": "/usr/bin"}, {"filename": "ppdpo", "parent": "/usr/bin"}, {"filename": "pr", "parent": "/usr/bin"}, {"filename": "pre-grohtml", "parent": "/usr/bin"}, {"filename": "priclass.d", "parent": "/usr/bin"}, {"filename": "pridist.d", "parent": "/usr/bin"}, {"filename": "printenv", "parent": "/usr/bin"}, {"filename": "printf", "parent": "/usr/bin"}, {"filename": "procsystime", "parent": "/usr/bin"}, {"filename": "productbuild", "parent": "/usr/bin"}, {"filename": "productsign", "parent": "/usr/bin"}, {"filename": "profiles", "parent": "/usr/bin"}, {"filename": "prove", "parent": "/usr/bin"}, {"filename": "prove5.18", "parent": "/usr/bin"}, {"filename": "psed", "parent": "/usr/bin"}, {"filename": "psed5.18", "parent": "/usr/bin"}, {"filename": "pstopdf", "parent": "/usr/bin"}, {"filename": "pstruct", "parent": "/usr/bin"}, {"filename": "pstruct5.18", "parent": "/usr/bin"}, {"filename": "ptar", "parent": "/usr/bin"}, {"filename": "ptar5.18", "parent": "/usr/bin"}, {"filename": "ptardiff", "parent": "/usr/bin"}, {"filename": "ptardiff5.18", "parent": "/usr/bin"}, {"filename": "ptargrep", "parent": "/usr/bin"}, {"filename": "ptargrep5.18", "parent": "/usr/bin"}, {"filename": "pubsub", "parent": "/usr/bin"}, {"filename": "pwhich", "parent": "/usr/bin"}, {"filename": "pwhich5.18", "parent": "/usr/bin"}, {"filename": "pwpolicy", "parent": "/usr/bin"}, {"filename": "pydoc", "parent": "/usr/bin"}, {"filename": "pydoc2.7", "parent": "/usr/bin"}, {"filename": "python", "parent": "/usr/bin"}, {"filename": "python-config", "parent": "/usr/bin"}, {"filename": "python2.7", "parent": "/usr/bin"}, {"filename": "python2.7-config", "parent": "/usr/bin"}, {"filename": "pythonw", "parent": "/usr/bin"}, {"filename": "pythonw2.7", "parent": "/usr/bin"}, {"filename": "qc2movie", "parent": "/usr/bin"}, {"filename": "qlmanage", "parent": "/usr/bin"}, {"filename": "qtdefaults", "parent": "/usr/bin"}, {"filename": "qtmodernizer", "parent": "/usr/bin"}, {"filename": "quota", "parent": "/usr/bin"}, {"filename": "rails", "parent": "/usr/bin"}, {"filename": "rake", "parent": "/usr/bin"}, {"filename": "ranlib", "parent": "/usr/bin"}, {"filename": "rdoc", "parent": "/usr/bin"}, {"filename": "read", "parent": "/usr/bin"}, {"filename": "readlink", "parent": "/usr/bin"}, {"filename": "rebase", "parent": "/usr/bin"}, {"filename": "redo_prebinding", "parent": "/usr/bin"}, {"filename": "refer", "parent": "/usr/bin"}, {"filename": "renice", "parent": "/usr/bin"}, {"filename": "reset", "parent": "/usr/bin"}, {"filename": "resolveLinks", "parent": "/usr/bin"}, {"filename": "rev", "parent": "/usr/bin"}, {"filename": "ri", "parent": "/usr/bin"}, {"filename": "rmic", "parent": "/usr/bin"}, {"filename": "rmid", "parent": "/usr/bin"}, {"filename": "rmiregistry", "parent": "/usr/bin"}, {"filename": "rpcgen", "parent": "/usr/bin"}, {"filename": "rs", "parent": "/usr/bin"}, {"filename": "rsync", "parent": "/usr/bin"}, {"filename": "ruby", "parent": "/usr/bin"}, {"filename": "rview", "parent": "/usr/bin"}, {"filename": "rvim", "parent": "/usr/bin"}, {"filename": "rwbypid.d", "parent": "/usr/bin"}, {"filename": "rwbytype.d", "parent": "/usr/bin"}, {"filename": "rwsnoop", "parent": "/usr/bin"}, {"filename": "s2p", "parent": "/usr/bin"}, {"filename": "s2p5.18", "parent": "/usr/bin"}, {"filename": "safaridriver", "parent": "/usr/bin"}, {"filename": "sample", "parent": "/usr/bin"}, {"filename": "sampleproc", "parent": "/usr/bin"}, {"filename": "sandbox-exec", "parent": "/usr/bin"}, {"filename": "say", "parent": "/usr/bin"}, {"filename": "sc_usage", "parent": "/usr/bin"}, {"filename": "scandeps.pl", "parent": "/usr/bin"}, {"filename": "scandeps5.18.pl", "parent": "/usr/bin"}, {"filename": "schemagen", "parent": "/usr/bin"}, {"filename": "scp", "parent": "/usr/bin"}, {"filename": "screen", "parent": "/usr/bin"}, {"filename": "script", "parent": "/usr/bin"}, {"filename": "sdef", "parent": "/usr/bin"}, {"filename": "sdiff", "parent": "/usr/bin"}, {"filename": "sdp", "parent": "/usr/bin"}, {"filename": "sdx", "parent": "/usr/bin"}, {"filename": "security", "parent": "/usr/bin"}, {"filename": "sed", "parent": "/usr/bin"}, {"filename": "seeksize.d", "parent": "/usr/bin"}, {"filename": "segedit", "parent": "/usr/bin"}, {"filename": "seq", "parent": "/usr/bin"}, {"filename": "serialver", "parent": "/usr/bin"}, {"filename": "servertool", "parent": "/usr/bin"}, {"filename": "setregion", "parent": "/usr/bin"}, {"filename": "setuids.d", "parent": "/usr/bin"}, {"filename": "sfltool", "parent": "/usr/bin"}, {"filename": "sftp", "parent": "/usr/bin"}, {"filename": "shar", "parent": "/usr/bin"}, {"filename": "shasum", "parent": "/usr/bin"}, {"filename": "shasum5.18", "parent": "/usr/bin"}, {"filename": "shlock", "parent": "/usr/bin"}, {"filename": "showmount", "parent": "/usr/bin"}, {"filename": "sigdist.d", "parent": "/usr/bin"}, {"filename": "sips", "parent": "/usr/bin"}, {"filename": "size", "parent": "/usr/bin"}, {"filename": "slogin", "parent": "/usr/bin"}, {"filename": "smbutil", "parent": "/usr/bin"}, {"filename": "smtpd.py", "parent": "/usr/bin"}, {"filename": "smtpd2.7.py", "parent": "/usr/bin"}, {"filename": "snfsdefrag", "parent": "/usr/bin"}, {"filename": "snmp-bridge-mib", "parent": "/usr/bin"}, {"filename": "snmpbulkget", "parent": "/usr/bin"}, {"filename": "snmpbulkwalk", "parent": "/usr/bin"}, {"filename": "snmpconf", "parent": "/usr/bin"}, {"filename": "snmpdelta", "parent": "/usr/bin"}, {"filename": "snmpdf", "parent": "/usr/bin"}, {"filename": "snmpget", "parent": "/usr/bin"}, {"filename": "snmpgetnext", "parent": "/usr/bin"}, {"filename": "snmpinform", "parent": "/usr/bin"}, {"filename": "snmpnetstat", "parent": "/usr/bin"}, {"filename": "snmpset", "parent": "/usr/bin"}, {"filename": "snmpstatus", "parent": "/usr/bin"}, {"filename": "snmptable", "parent": "/usr/bin"}, {"filename": "snmptest", "parent": "/usr/bin"}, {"filename": "snmptranslate", "parent": "/usr/bin"}, {"filename": "snmptrap", "parent": "/usr/bin"}, {"filename": "snmpusm", "parent": "/usr/bin"}, {"filename": "snmpvacm", "parent": "/usr/bin"}, {"filename": "snmpwalk", "parent": "/usr/bin"}, {"filename": "sntp", "parent": "/usr/bin"}, {"filename": "soelim", "parent": "/usr/bin"}, {"filename": "sort", "parent": "/usr/bin"}, {"filename": "spfd", "parent": "/usr/bin"}, {"filename": "spfd5.18", "parent": "/usr/bin"}, {"filename": "spfquery", "parent": "/usr/bin"}, {"filename": "spfquery5.18", "parent": "/usr/bin"}, {"filename": "splain", "parent": "/usr/bin"}, {"filename": "splain5.18", "parent": "/usr/bin"}, {"filename": "split", "parent": "/usr/bin"}, {"filename": "sqlite3", "parent": "/usr/bin"}, {"filename": "ssh", "parent": "/usr/bin"}, {"filename": "ssh-add", "parent": "/usr/bin"}, {"filename": "ssh-agent", "parent": "/usr/bin"}, {"filename": "ssh-copy-id", "parent": "/usr/bin"}, {"filename": "ssh-keygen", "parent": "/usr/bin"}, {"filename": "ssh-keyscan", "parent": "/usr/bin"}, {"filename": "stapler", "parent": "/usr/bin"}, {"filename": "stat", "parent": "/usr/bin"}, {"filename": "stringdups", "parent": "/usr/bin"}, {"filename": "stringdups32", "parent": "/usr/bin"}, {"filename": "strings", "parent": "/usr/bin"}, {"filename": "strip", "parent": "/usr/bin"}, {"filename": "stty.pl", "parent": "/usr/bin"}, {"filename": "stty5.18.pl", "parent": "/usr/bin"}, {"filename": "su", "parent": "/usr/bin"}, {"filename": "sudo", "parent": "/usr/bin"}, {"filename": "sum", "parent": "/usr/bin"}, {"filename": "svn", "parent": "/usr/bin"}, {"filename": "svnadmin", "parent": "/usr/bin"}, {"filename": "svndumpfilter", "parent": "/usr/bin"}, {"filename": "svnlook", "parent": "/usr/bin"}, {"filename": "svnserve", "parent": "/usr/bin"}, {"filename": "svnsync", "parent": "/usr/bin"}, {"filename": "svnversion", "parent": "/usr/bin"}, {"filename": "sw_vers", "parent": "/usr/bin"}, {"filename": "swift", "parent": "/usr/bin"}, {"filename": "swiftc", "parent": "/usr/bin"}, {"filename": "symbols", "parent": "/usr/bin"}, {"filename": "symbolscache", "parent": "/usr/bin"}, {"filename": "syscallbypid.d", "parent": "/usr/bin"}, {"filename": "syscallbyproc.d", "parent": "/usr/bin"}, {"filename": "syscallbysysc.d", "parent": "/usr/bin"}, {"filename": "sysdiagnose", "parent": "/usr/bin"}, {"filename": "syslog", "parent": "/usr/bin"}, {"filename": "systriage", "parent": "/usr/bin"}, {"filename": "tab2space", "parent": "/usr/bin"}, {"filename": "tabs", "parent": "/usr/bin"}, {"filename": "tail", "parent": "/usr/bin"}, {"filename": "tailspin", "parent": "/usr/bin"}, {"filename": "talk", "parent": "/usr/bin"}, {"filename": "tar", "parent": "/usr/bin"}, {"filename": "taskinfo", "parent": "/usr/bin"}, {"filename": "tbl", "parent": "/usr/bin"}, {"filename": "tbtdiagnose", "parent": "/usr/bin"}, {"filename": "tccutil", "parent": "/usr/bin"}, {"filename": "tclsh", "parent": "/usr/bin"}, {"filename": "tclsh8.5", "parent": "/usr/bin"}, {"filename": "tee", "parent": "/usr/bin"}, {"filename": "texi2dvi", "parent": "/usr/bin"}, {"filename": "texi2pdf", "parent": "/usr/bin"}, {"filename": "texindex", "parent": "/usr/bin"}, {"filename": "textutil", "parent": "/usr/bin"}, {"filename": "tfmtodit", "parent": "/usr/bin"}, {"filename": "tftp", "parent": "/usr/bin"}, {"filename": "thermal", "parent": "/usr/bin"}, {"filename": "tic", "parent": "/usr/bin"}, {"filename": "tidy", "parent": "/usr/bin"}, {"filename": "tiff2icns", "parent": "/usr/bin"}, {"filename": "tiffutil", "parent": "/usr/bin"}, {"filename": "time", "parent": "/usr/bin"}, {"filename": "timer_analyser.d", "parent": "/usr/bin"}, {"filename": "timerfires", "parent": "/usr/bin"}, {"filename": "tkcon", "parent": "/usr/bin"}, {"filename": "tkmib", "parent": "/usr/bin"}, {"filename": "tkpp", "parent": "/usr/bin"}, {"filename": "tkpp5.18", "parent": "/usr/bin"}, {"filename": "tmdiagnose", "parent": "/usr/bin"}, {"filename": "tmutil", "parent": "/usr/bin"}, {"filename": "tnameserv", "parent": "/usr/bin"}, {"filename": "toe", "parent": "/usr/bin"}, {"filename": "top", "parent": "/usr/bin"}, {"filename": "tops", "parent": "/usr/bin"}, {"filename": "topsyscall", "parent": "/usr/bin"}, {"filename": "topsysproc", "parent": "/usr/bin"}, {"filename": "touch", "parent": "/usr/bin"}, {"filename": "tput", "parent": "/usr/bin"}, {"filename": "tr", "parent": "/usr/bin"}, {"filename": "trace", "parent": "/usr/bin"}, {"filename": "traptoemail", "parent": "/usr/bin"}, {"filename": "treereg", "parent": "/usr/bin"}, {"filename": "treereg5.18", "parent": "/usr/bin"}, {"filename": "trimforce", "parent": "/usr/bin"}, {"filename": "troff", "parent": "/usr/bin"}, {"filename": "true", "parent": "/usr/bin"}, {"filename": "tset", "parent": "/usr/bin"}, {"filename": "tsort", "parent": "/usr/bin"}, {"filename": "tty", "parent": "/usr/bin"}, {"filename": "type", "parent": "/usr/bin"}, {"filename": "ul", "parent": "/usr/bin"}, {"filename": "ulimit", "parent": "/usr/bin"}, {"filename": "umask", "parent": "/usr/bin"}, {"filename": "unalias", "parent": "/usr/bin"}, {"filename": "uname", "parent": "/usr/bin"}, {"filename": "uncompress", "parent": "/usr/bin"}, {"filename": "unexpand", "parent": "/usr/bin"}, {"filename": "unifdef", "parent": "/usr/bin"}, {"filename": "unifdefall", "parent": "/usr/bin"}, {"filename": "uniq", "parent": "/usr/bin"}, {"filename": "units", "parent": "/usr/bin"}, {"filename": "unpack200", "parent": "/usr/bin"}, {"filename": "unvis", "parent": "/usr/bin"}, {"filename": "unzip", "parent": "/usr/bin"}, {"filename": "unzipsfx", "parent": "/usr/bin"}, {"filename": "update_dyld_shared_cache", "parent": "/usr/bin"}, {"filename": "uptime", "parent": "/usr/bin"}, {"filename": "usbkdp", "parent": "/usr/bin"}, {"filename": "users", "parent": "/usr/bin"}, {"filename": "uucp", "parent": "/usr/bin"}, {"filename": "uudecode", "parent": "/usr/bin"}, {"filename": "uuencode", "parent": "/usr/bin"}, {"filename": "uuidgen", "parent": "/usr/bin"}, {"filename": "uulog", "parent": "/usr/bin"}, {"filename": "uuname", "parent": "/usr/bin"}, {"filename": "uupick", "parent": "/usr/bin"}, {"filename": "uustat", "parent": "/usr/bin"}, {"filename": "uuto", "parent": "/usr/bin"}, {"filename": "uux", "parent": "/usr/bin"}, {"filename": "vi", "parent": "/usr/bin"}, {"filename": "view", "parent": "/usr/bin"}, {"filename": "vim", "parent": "/usr/bin"}, {"filename": "vimdiff", "parent": "/usr/bin"}, {"filename": "vimtutor", "parent": "/usr/bin"}, {"filename": "vis", "parent": "/usr/bin"}, {"filename": "vm_stat", "parent": "/usr/bin"}, {"filename": "vmmap", "parent": "/usr/bin"}, {"filename": "vmmap32", "parent": "/usr/bin"}, {"filename": "w", "parent": "/usr/bin"}, {"filename": "wait", "parent": "/usr/bin"}, {"filename": "wall", "parent": "/usr/bin"}, {"filename": "wc", "parent": "/usr/bin"}, {"filename": "wdutil", "parent": "/usr/bin"}, {"filename": "what", "parent": "/usr/bin"}, {"filename": "whatis", "parent": "/usr/bin"}, {"filename": "whereis", "parent": "/usr/bin"}, {"filename": "which", "parent": "/usr/bin"}, {"filename": "who", "parent": "/usr/bin"}, {"filename": "whoami", "parent": "/usr/bin"}, {"filename": "whois", "parent": "/usr/bin"}, {"filename": "wish", "parent": "/usr/bin"}, {"filename": "wish8.5", "parent": "/usr/bin"}, {"filename": "write", "parent": "/usr/bin"}, {"filename": "wsgen", "parent": "/usr/bin"}, {"filename": "wsimport", "parent": "/usr/bin"}, {"filename": "xar", "parent": "/usr/bin"}, {"filename": "xargs", "parent": "/usr/bin"}, {"filename": "xattr", "parent": "/usr/bin"}, {"filename": "xattr-2.7", "parent": "/usr/bin"}, {"filename": "xcode-select", "parent": "/usr/bin"}, {"filename": "xcodebuild", "parent": "/usr/bin"}, {"filename": "xcrun", "parent": "/usr/bin"}, {"filename": "xcscontrol", "parent": "/usr/bin"}, {"filename": "xcsdiagnose", "parent": "/usr/bin"}, {"filename": "xed", "parent": "/usr/bin"}, {"filename": "xgettext.pl", "parent": "/usr/bin"}, {"filename": "xgettext5.18.pl", "parent": "/usr/bin"}, {"filename": "xip", "parent": "/usr/bin"}, {"filename": "xjc", "parent": "/usr/bin"}, {"filename": "xml2-config", "parent": "/usr/bin"}, {"filename": "xml2man", "parent": "/usr/bin"}, {"filename": "xmlcatalog", "parent": "/usr/bin"}, {"filename": "xmllint", "parent": "/usr/bin"}, {"filename": "xpath", "parent": "/usr/bin"}, {"filename": "xpath5.18", "parent": "/usr/bin"}, {"filename": "xslt-config", "parent": "/usr/bin"}, {"filename": "xsltproc", "parent": "/usr/bin"}, {"filename": "xsubpp", "parent": "/usr/bin"}, {"filename": "xsubpp5.18", "parent": "/usr/bin"}, {"filename": "xxd", "parent": "/usr/bin"}, {"filename": "yaa", "parent": "/usr/bin"}, {"filename": "yacc", "parent": "/usr/bin"}, {"filename": "yes", "parent": "/usr/bin"}, {"filename": "zcat", "parent": "/usr/bin"}, {"filename": "zcmp", "parent": "/usr/bin"}, {"filename": "zdiff", "parent": "/usr/bin"}, {"filename": "zegrep", "parent": "/usr/bin"}, {"filename": "zfgrep", "parent": "/usr/bin"}, {"filename": "zforce", "parent": "/usr/bin"}, {"filename": "zgrep", "parent": "/usr/bin"}, {"filename": "zip", "parent": "/usr/bin"}, {"filename": "zipcloak", "parent": "/usr/bin"}, {"filename": "zipdetails", "parent": "/usr/bin"}, {"filename": "zipdetails5.18", "parent": "/usr/bin"}, {"filename": "zipgrep", "parent": "/usr/bin"}, {"filename": "zipinfo", "parent": "/usr/bin"}, {"filename": "zipnote", "parent": "/usr/bin"}, {"filename": "zipsplit", "parent": "/usr/bin"}, {"filename": "zless", "parent": "/usr/bin"}, {"filename": "zmore", "parent": "/usr/bin"}, {"filename": "znew", "parent": "/usr/bin"}, {"filename": "zprint", "parent": "/usr/bin"}, {"filename": "ACIPCBTLib.dylib", "parent": "/usr/lib"}, {"filename": "AppleConvergedTransport.dylib", "parent": "/usr/lib"}, {"filename": "PN548.dylib", "parent": "/usr/lib"}, {"filename": "PN548_API.dylib", "parent": "/usr/lib"}, {"filename": "PN548_HAL.dylib", "parent": "/usr/lib"}, {"filename": "charset.alias", "parent": "/usr/lib"}, {"filename": "cron", "parent": "/usr/lib"}, {"filename": "dtrace", "parent": "/usr/lib"}, {"filename": "dyld", "parent": "/usr/lib"}, {"filename": "groff", "parent": "/usr/lib"}, {"filename": "libATCommandStudioDynamic.dylib", "parent": "/usr/lib"}, {"filename": "libAccessibility.dylib", "parent": "/usr/lib"}, {"filename": "libAccountPolicyTranslation.dylib", "parent": "/usr/lib"}, {"filename": "libAppleSSEExt.dylib", "parent": "/usr/lib"}, {"filename": "libAppletTranslationLibrary.dylib", "parent": "/usr/lib"}, {"filename": "libAudioIssueDetector.dylib", "parent": "/usr/lib"}, {"filename": "libAudioStatistics.dylib", "parent": "/usr/lib"}, {"filename": "libBSDPClient.A.dylib", "parent": "/usr/lib"}, {"filename": "libBSDPClient.dylib", "parent": "/usr/lib"}, {"filename": "libCRFSuite.dylib", "parent": "/usr/lib"}, {"filename": "libCRFSuite0.12.dylib", "parent": "/usr/lib"}, {"filename": "libCTGreenTeaLogger.dylib", "parent": "/usr/lib"}, {"filename": "libChineseTokenizer.dylib", "parent": "/usr/lib"}, {"filename": "libCoreStorage.dylib", "parent": "/usr/lib"}, {"filename": "libDHCPServer.A.dylib", "parent": "/usr/lib"}, {"filename": "libDHCPServer.dylib", "parent": "/usr/lib"}, {"filename": "libDiagnosticMessagesClient.dylib", "parent": "/usr/lib"}, {"filename": "libFDR_osx.dylib", "parent": "/usr/lib"}, {"filename": "libFosl_dynamic.dylib", "parent": "/usr/lib"}, {"filename": "libIASAuthReboot.dylib", "parent": "/usr/lib"}, {"filename": "libIASUnifiedProgress.dylib", "parent": "/usr/lib"}, {"filename": "libMatch.1.dylib", "parent": "/usr/lib"}, {"filename": "libMatch.dylib", "parent": "/usr/lib"}, {"filename": "libMaxEnt.dylib", "parent": "/usr/lib"}, {"filename": "libMemoryResourceException.dylib", "parent": "/usr/lib"}, {"filename": "libMobileGestalt.dylib", "parent": "/usr/lib"}, {"filename": "libOpenScriptingUtil.dylib", "parent": "/usr/lib"}, {"filename": "libParallelCompression.dylib", "parent": "/usr/lib"}, {"filename": "libQMIParserDynamic.dylib", "parent": "/usr/lib"}, {"filename": "libSMC.dylib", "parent": "/usr/lib"}, {"filename": "libScreenReader.dylib", "parent": "/usr/lib"}, {"filename": "libSystem.B.dylib", "parent": "/usr/lib"}, {"filename": "libSystem.dylib", "parent": "/usr/lib"}, {"filename": "libTelephonyUtilDynamic.dylib", "parent": "/usr/lib"}, {"filename": "libThaiTokenizer.dylib", "parent": "/usr/lib"}, {"filename": "libUniversalAccess.dylib", "parent": "/usr/lib"}, {"filename": "libXSEvent.dylib", "parent": "/usr/lib"}, {"filename": "libXplugin.1.dylib", "parent": "/usr/lib"}, {"filename": "libXplugin.dylib", "parent": "/usr/lib"}, {"filename": "libapple_nghttp2.dylib", "parent": "/usr/lib"}, {"filename": "libapr-1.0.dylib", "parent": "/usr/lib"}, {"filename": "libapr-1.dylib", "parent": "/usr/lib"}, {"filename": "libaprutil-1.0.dylib", "parent": "/usr/lib"}, {"filename": "libaprutil-1.dylib", "parent": "/usr/lib"}, {"filename": "libarchive.2.dylib", "parent": "/usr/lib"}, {"filename": "libarchive.dylib", "parent": "/usr/lib"}, {"filename": "libate.dylib", "parent": "/usr/lib"}, {"filename": "libauditd.0.dylib", "parent": "/usr/lib"}, {"filename": "libauditd.dylib", "parent": "/usr/lib"}, {"filename": "libauto.dylib", "parent": "/usr/lib"}, {"filename": "libblas.dylib", "parent": "/usr/lib"}, {"filename": "libboringssl.dylib", "parent": "/usr/lib"}, {"filename": "libbsm.0.dylib", "parent": "/usr/lib"}, {"filename": "libbsm.dylib", "parent": "/usr/lib"}, {"filename": "libbz2.1.0.5.dylib", "parent": "/usr/lib"}, {"filename": "libbz2.1.0.dylib", "parent": "/usr/lib"}, {"filename": "libbz2.dylib", "parent": "/usr/lib"}, {"filename": "libc++.1.dylib", "parent": "/usr/lib"}, {"filename": "libc++.dylib", "parent": "/usr/lib"}, {"filename": "libc++abi.dylib", "parent": "/usr/lib"}, {"filename": "libc.dylib", "parent": "/usr/lib"}, {"filename": "libcblas.dylib", "parent": "/usr/lib"}, {"filename": "libcharset.1.0.0.dylib", "parent": "/usr/lib"}, {"filename": "libcharset.1.dylib", "parent": "/usr/lib"}, {"filename": "libcharset.dylib", "parent": "/usr/lib"}, {"filename": "libclapack.dylib", "parent": "/usr/lib"}, {"filename": "libcmph.dylib", "parent": "/usr/lib"}, {"filename": "libcom_err.dylib", "parent": "/usr/lib"}, {"filename": "libcompression.dylib", "parent": "/usr/lib"}, {"filename": "libcoreroutine.dylib", "parent": "/usr/lib"}, {"filename": "libcoretls.dylib", "parent": "/usr/lib"}, {"filename": "libcoretls_cfhelpers.dylib", "parent": "/usr/lib"}, {"filename": "libcrypto.0.9.7.dylib", "parent": "/usr/lib"}, {"filename": "libcrypto.0.9.8.dylib", "parent": "/usr/lib"}, {"filename": "libcrypto.35.dylib", "parent": "/usr/lib"}, {"filename": "libcrypto.41.dylib", "parent": "/usr/lib"}, {"filename": "libcrypto.42.dylib", "parent": "/usr/lib"}, {"filename": "libcrypto.dylib", "parent": "/usr/lib"}, {"filename": "libcsfde.dylib", "parent": "/usr/lib"}, {"filename": "libcupolicy.dylib", "parent": "/usr/lib"}, {"filename": "libcups.2.dylib", "parent": "/usr/lib"}, {"filename": "libcups.dylib", "parent": "/usr/lib"}, {"filename": "libcupscgi.1.dylib", "parent": "/usr/lib"}, {"filename": "libcupscgi.dylib", "parent": "/usr/lib"}, {"filename": "libcupsimage.2.dylib", "parent": "/usr/lib"}, {"filename": "libcupsimage.dylib", "parent": "/usr/lib"}, {"filename": "libcupsmime.1.dylib", "parent": "/usr/lib"}, {"filename": "libcupsmime.dylib", "parent": "/usr/lib"}, {"filename": "libcupsppdc.1.dylib", "parent": "/usr/lib"}, {"filename": "libcupsppdc.dylib", "parent": "/usr/lib"}, {"filename": "libcurl.3.dylib", "parent": "/usr/lib"}, {"filename": "libcurl.4.dylib", "parent": "/usr/lib"}, {"filename": "libcurl.dylib", "parent": "/usr/lib"}, {"filename": "libcurses.dylib", "parent": "/usr/lib"}, {"filename": "libdbm.dylib", "parent": "/usr/lib"}, {"filename": "libdes425.dylib", "parent": "/usr/lib"}, {"filename": "libdl.dylib", "parent": "/usr/lib"}, {"filename": "libdns_services.dylib", "parent": "/usr/lib"}, {"filename": "libdscsym.dylib", "parent": "/usr/lib"}, {"filename": "libdtrace.dylib", "parent": "/usr/lib"}, {"filename": "libdz.dylib", "parent": "/usr/lib"}, {"filename": "libeasyperf.dylib", "parent": "/usr/lib"}, {"filename": "libecpg.6.5.dylib", "parent": "/usr/lib"}, {"filename": "libecpg.6.dylib", "parent": "/usr/lib"}, {"filename": "libecpg.dylib", "parent": "/usr/lib"}, {"filename": "libecpg_compat.3.5.dylib", "parent": "/usr/lib"}, {"filename": "libecpg_compat.3.dylib", "parent": "/usr/lib"}, {"filename": "libecpg_compat.dylib", "parent": "/usr/lib"}, {"filename": "libedit.2.dylib", "parent": "/usr/lib"}, {"filename": "libedit.3.0.dylib", "parent": "/usr/lib"}, {"filename": "libedit.3.dylib", "parent": "/usr/lib"}, {"filename": "libedit.dylib", "parent": "/usr/lib"}, {"filename": "libenergytrace.dylib", "parent": "/usr/lib"}, {"filename": "libexpat.1.dylib", "parent": "/usr/lib"}, {"filename": "libexpat.dylib", "parent": "/usr/lib"}, {"filename": "libexslt.0.dylib", "parent": "/usr/lib"}, {"filename": "libexslt.dylib", "parent": "/usr/lib"}, {"filename": "libextension.dylib", "parent": "/usr/lib"}, {"filename": "libf77lapack.dylib", "parent": "/usr/lib"}, {"filename": "libffi.dylib", "parent": "/usr/lib"}, {"filename": "libform.5.4.dylib", "parent": "/usr/lib"}, {"filename": "libform.dylib", "parent": "/usr/lib"}, {"filename": "libgcc_s.1.dylib", "parent": "/usr/lib"}, {"filename": "libgermantok.dylib", "parent": "/usr/lib"}, {"filename": "libgmalloc.dylib", "parent": "/usr/lib"}, {"filename": "libgssapi_krb5.dylib", "parent": "/usr/lib"}, {"filename": "libheimdal-asn1.dylib", "parent": "/usr/lib"}, {"filename": "libhunspell-1.2.0.0.0.dylib", "parent": "/usr/lib"}, {"filename": "libhunspell-1.2.0.dylib", "parent": "/usr/lib"}, {"filename": "libhunspell-1.2.dylib", "parent": "/usr/lib"}, {"filename": "libiconv.2.4.0.dylib", "parent": "/usr/lib"}, {"filename": "libiconv.2.dylib", "parent": "/usr/lib"}, {"filename": "libiconv.dylib", "parent": "/usr/lib"}, {"filename": "libicucore.A.dylib", "parent": "/usr/lib"}, {"filename": "libicucore.dylib", "parent": "/usr/lib"}, {"filename": "libinfo.dylib", "parent": "/usr/lib"}, {"filename": "libiodbc.2.1.18.dylib", "parent": "/usr/lib"}, {"filename": "libiodbc.2.dylib", "parent": "/usr/lib"}, {"filename": "libiodbc.dylib", "parent": "/usr/lib"}, {"filename": "libiodbcinst.2.1.18.dylib", "parent": "/usr/lib"}, {"filename": "libiodbcinst.2.dylib", "parent": "/usr/lib"}, {"filename": "libiodbcinst.dylib", "parent": "/usr/lib"}, {"filename": "libipconfig.dylib", "parent": "/usr/lib"}, {"filename": "libipsec.A.dylib", "parent": "/usr/lib"}, {"filename": "libipsec.dylib", "parent": "/usr/lib"}, {"filename": "libk5crypto.dylib", "parent": "/usr/lib"}, {"filename": "libkrb4.dylib", "parent": "/usr/lib"}, {"filename": "libkrb5.dylib", "parent": "/usr/lib"}, {"filename": "libkrb524.dylib", "parent": "/usr/lib"}, {"filename": "libkrb5support.dylib", "parent": "/usr/lib"}, {"filename": "libktrace.dylib", "parent": "/usr/lib"}, {"filename": "liblangid.dylib", "parent": "/usr/lib"}, {"filename": "liblapack.dylib", "parent": "/usr/lib"}, {"filename": "liblber.dylib", "parent": "/usr/lib"}, {"filename": "libldap.dylib", "parent": "/usr/lib"}, {"filename": "libldap_r.dylib", "parent": "/usr/lib"}, {"filename": "liblzma.5.dylib", "parent": "/usr/lib"}, {"filename": "liblzma.dylib", "parent": "/usr/lib"}, {"filename": "libm.dylib", "parent": "/usr/lib"}, {"filename": "libmarisa.dylib", "parent": "/usr/lib"}, {"filename": "libmecab.1.0.0.dylib", "parent": "/usr/lib"}, {"filename": "libmecab.dylib", "parent": "/usr/lib"}, {"filename": "libmecabra.dylib", "parent": "/usr/lib"}, {"filename": "libmenu.5.4.dylib", "parent": "/usr/lib"}, {"filename": "libmenu.dylib", "parent": "/usr/lib"}, {"filename": "libmx.A.dylib", "parent": "/usr/lib"}, {"filename": "libmx.dylib", "parent": "/usr/lib"}, {"filename": "libncurses.5.4.dylib", "parent": "/usr/lib"}, {"filename": "libncurses.5.dylib", "parent": "/usr/lib"}, {"filename": "libncurses.dylib", "parent": "/usr/lib"}, {"filename": "libnetsnmp.15.1.2.dylib", "parent": "/usr/lib"}, {"filename": "libnetsnmp.15.dylib", "parent": "/usr/lib"}, {"filename": "libnetsnmp.25.dylib", "parent": "/usr/lib"}, {"filename": "libnetsnmp.5.2.1.dylib", "parent": "/usr/lib"}, {"filename": "libnetsnmp.5.dylib", "parent": "/usr/lib"}, {"filename": "libnetsnmp.dylib", "parent": "/usr/lib"}, {"filename": "libnetsnmpagent.25.dylib", "parent": "/usr/lib"}, {"filename": "libnetsnmpagent.dylib", "parent": "/usr/lib"}, {"filename": "libnetsnmphelpers.25.dylib", "parent": "/usr/lib"}, {"filename": "libnetsnmphelpers.dylib", "parent": "/usr/lib"}, {"filename": "libnetsnmpmibs.25.dylib", "parent": "/usr/lib"}, {"filename": "libnetsnmpmibs.dylib", "parent": "/usr/lib"}, {"filename": "libnetsnmptrapd.25.dylib", "parent": "/usr/lib"}, {"filename": "libnetsnmptrapd.dylib", "parent": "/usr/lib"}, {"filename": "libnetwork.dylib", "parent": "/usr/lib"}, {"filename": "libnetworkextension.dylib", "parent": "/usr/lib"}, {"filename": "libnfrestore.dylib", "parent": "/usr/lib"}, {"filename": "libnfshared.dylib", "parent": "/usr/lib"}, {"filename": "libobjc-trampolines.dylib", "parent": "/usr/lib"}, {"filename": "libobjc.A.dylib", "parent": "/usr/lib"}, {"filename": "libobjc.dylib", "parent": "/usr/lib"}, {"filename": "libodfde.dylib", "parent": "/usr/lib"}, {"filename": "libodmodule.dylib", "parent": "/usr/lib"}, {"filename": "libpam.1.dylib", "parent": "/usr/lib"}, {"filename": "libpam.2.dylib", "parent": "/usr/lib"}, {"filename": "libpam.dylib", "parent": "/usr/lib"}, {"filename": "libpanel.5.4.dylib", "parent": "/usr/lib"}, {"filename": "libpanel.dylib", "parent": "/usr/lib"}, {"filename": "libpcap.A.dylib", "parent": "/usr/lib"}, {"filename": "libpcap.dylib", "parent": "/usr/lib"}, {"filename": "libpcre.0.dylib", "parent": "/usr/lib"}, {"filename": "libpcre.dylib", "parent": "/usr/lib"}, {"filename": "libpcreposix.0.dylib", "parent": "/usr/lib"}, {"filename": "libpcreposix.dylib", "parent": "/usr/lib"}, {"filename": "libperfcheck.dylib", "parent": "/usr/lib"}, {"filename": "libpgtypes.3.4.dylib", "parent": "/usr/lib"}, {"filename": "libpgtypes.3.dylib", "parent": "/usr/lib"}, {"filename": "libpgtypes.dylib", "parent": "/usr/lib"}, {"filename": "libpmenergy.dylib", "parent": "/usr/lib"}, {"filename": "libpmsample.dylib", "parent": "/usr/lib"}, {"filename": "libpoll.dylib", "parent": "/usr/lib"}, {"filename": "libpq.5.6.dylib", "parent": "/usr/lib"}, {"filename": "libpq.5.dylib", "parent": "/usr/lib"}, {"filename": "libpq.dylib", "parent": "/usr/lib"}, {"filename": "libprequelite.dylib", "parent": "/usr/lib"}, {"filename": "libproc.dylib", "parent": "/usr/lib"}, {"filename": "libpthread.dylib", "parent": "/usr/lib"}, {"filename": "libpython.dylib", "parent": "/usr/lib"}, {"filename": "libpython2.7.dylib", "parent": "/usr/lib"}, {"filename": "libquic.dylib", "parent": "/usr/lib"}, {"filename": "libquit.dylib", "parent": "/usr/lib"}, {"filename": "libreadline.dylib", "parent": "/usr/lib"}, {"filename": "libresolv.9.dylib", "parent": "/usr/lib"}, {"filename": "libresolv.dylib", "parent": "/usr/lib"}, {"filename": "librpcsvc.dylib", "parent": "/usr/lib"}, {"filename": "libruby.2.3.0.dylib", "parent": "/usr/lib"}, {"filename": "libruby.2.3.dylib", "parent": "/usr/lib"}, {"filename": "libruby.dylib", "parent": "/usr/lib"}, {"filename": "libsandbox.1.dylib", "parent": "/usr/lib"}, {"filename": "libsandbox.dylib", "parent": "/usr/lib"}, {"filename": "libsasl2.2.0.1.dylib", "parent": "/usr/lib"}, {"filename": "libsasl2.2.0.15.dylib", "parent": "/usr/lib"}, {"filename": "libsasl2.2.0.21.dylib", "parent": "/usr/lib"}, {"filename": "libsasl2.2.0.22.dylib", "parent": "/usr/lib"}, {"filename": "libsasl2.2.dylib", "parent": "/usr/lib"}, {"filename": "libsasl2.dylib", "parent": "/usr/lib"}, {"filename": "libspindump.dylib", "parent": "/usr/lib"}, {"filename": "libsqlite3.0.dylib", "parent": "/usr/lib"}, {"filename": "libsqlite3.dylib", "parent": "/usr/lib"}, {"filename": "libssl.0.9.7.dylib", "parent": "/usr/lib"}, {"filename": "libssl.0.9.8.dylib", "parent": "/usr/lib"}, {"filename": "libssl.35.dylib", "parent": "/usr/lib"}, {"filename": "libssl.43.dylib", "parent": "/usr/lib"}, {"filename": "libssl.44.dylib", "parent": "/usr/lib"}, {"filename": "libssl.dylib", "parent": "/usr/lib"}, {"filename": "libstdc++.6.0.9.dylib", "parent": "/usr/lib"}, {"filename": "libstdc++.6.dylib", "parent": "/usr/lib"}, {"filename": "libstdc++.dylib", "parent": "/usr/lib"}, {"filename": "libsysdiagnose.dylib", "parent": "/usr/lib"}, {"filename": "libsysmon.dylib", "parent": "/usr/lib"}, {"filename": "libsystemstats.dylib", "parent": "/usr/lib"}, {"filename": "libtailspin.dylib", "parent": "/usr/lib"}, {"filename": "libtcl.dylib", "parent": "/usr/lib"}, {"filename": "libtcl8.5.dylib", "parent": "/usr/lib"}, {"filename": "libtermcap.dylib", "parent": "/usr/lib"}, {"filename": "libtidy.A.dylib", "parent": "/usr/lib"}, {"filename": "libtidy.dylib", "parent": "/usr/lib"}, {"filename": "libtk.dylib", "parent": "/usr/lib"}, {"filename": "libtk8.5.dylib", "parent": "/usr/lib"}, {"filename": "libtls.15.dylib", "parent": "/usr/lib"}, {"filename": "libtls.16.dylib", "parent": "/usr/lib"}, {"filename": "libtls.6.dylib", "parent": "/usr/lib"}, {"filename": "libtls.dylib", "parent": "/usr/lib"}, {"filename": "libtzupdate.dylib", "parent": "/usr/lib"}, {"filename": "libusrtcp.dylib", "parent": "/usr/lib"}, {"filename": "libutil.dylib", "parent": "/usr/lib"}, {"filename": "libutil1.0.dylib", "parent": "/usr/lib"}, {"filename": "libxar.1.dylib", "parent": "/usr/lib"}, {"filename": "libxar.dylib", "parent": "/usr/lib"}, {"filename": "libxcselect.dylib", "parent": "/usr/lib"}, {"filename": "libxml2.2.dylib", "parent": "/usr/lib"}, {"filename": "libxml2.dylib", "parent": "/usr/lib"}, {"filename": "libxslt.1.dylib", "parent": "/usr/lib"}, {"filename": "libxslt.dylib", "parent": "/usr/lib"}, {"filename": "libz.1.1.3.dylib", "parent": "/usr/lib"}, {"filename": "libz.1.2.11.dylib", "parent": "/usr/lib"}, {"filename": "libz.1.2.5.dylib", "parent": "/usr/lib"}, {"filename": "libz.1.2.8.dylib", "parent": "/usr/lib"}, {"filename": "libz.1.dylib", "parent": "/usr/lib"}, {"filename": "libz.dylib", "parent": "/usr/lib"}, {"filename": "log", "parent": "/usr/lib"}, {"filename": "pam", "parent": "/usr/lib"}, {"filename": "php", "parent": "/usr/lib"}, {"filename": "pkgconfig", "parent": "/usr/lib"}, {"filename": "python2.7", "parent": "/usr/lib"}, {"filename": "rpcsvc", "parent": "/usr/lib"}, {"filename": "ruby", "parent": "/usr/lib"}, {"filename": "sasl2", "parent": "/usr/lib"}, {"filename": "sqlite3", "parent": "/usr/lib"}, {"filename": "ssh-keychain.dylib", "parent": "/usr/lib"}, {"filename": "swift", "parent": "/usr/lib"}, {"filename": "system", "parent": "/usr/lib"}, {"filename": "xpc", "parent": "/usr/lib"}, {"filename": "zsh", "parent": "/usr/lib"}, {"filename": "darwin.d", "parent": "/usr/lib/dtrace"}, {"filename": "dt_cpp.h", "parent": "/usr/lib/dtrace"}, {"filename": "errno.d", "parent": "/usr/lib/dtrace"}, {"filename": "io.d", "parent": "/usr/lib/dtrace"}, {"filename": "ip.d", "parent": "/usr/lib/dtrace"}, {"filename": "regs_x86_64.d", "parent": "/usr/lib/dtrace"}, {"filename": "sched.d", "parent": "/usr/lib/dtrace"}, {"filename": "signal.d", "parent": "/usr/lib/dtrace"}, {"filename": "socket.d", "parent": "/usr/lib/dtrace"}, {"filename": "tcp.d", "parent": "/usr/lib/dtrace"}, {"filename": "unistd.d", "parent": "/usr/lib/dtrace"}, {"filename": "groffer", "parent": "/usr/lib/groff"}, {"filename": "site-tmac", "parent": "/usr/lib/groff"}, {"filename": "groffer2.sh", "parent": "/usr/lib/groff/groffer"}, {"filename": "liblog_AppStoreDaemon.dylib", "parent": "/usr/lib/log"}, {"filename": "liblog_AppleLDAPTypes.dylib", "parent": "/usr/lib/log"}, {"filename": "liblog_SystemConfiguration.dylib", "parent": "/usr/lib/log"}, {"filename": "liblog_audio.dylib", "parent": "/usr/lib/log"}, {"filename": "liblog_coreacc.dylib", "parent": "/usr/lib/log"}, {"filename": "liblog_geo.dylib", "parent": "/usr/lib/log"}, {"filename": "liblog_location.dylib", "parent": "/usr/lib/log"}, {"filename": "liblog_network.dylib", "parent": "/usr/lib/log"}, {"filename": "liblog_odtypes.dylib", "parent": "/usr/lib/log"}, {"filename": "liblog_signpost.description.dylib", "parent": "/usr/lib/log"}, {"filename": "liblog_signpost.dylib", "parent": "/usr/lib/log"}, {"filename": "liblog_signpost.telemetry.dylib", "parent": "/usr/lib/log"}, {"filename": "pam_aks.so.2", "parent": "/usr/lib/pam"}, {"filename": "pam_deny.so.2", "parent": "/usr/lib/pam"}, {"filename": "pam_env.so.2", "parent": "/usr/lib/pam"}, {"filename": "pam_group.so.2", "parent": "/usr/lib/pam"}, {"filename": "pam_krb5.so.2", "parent": "/usr/lib/pam"}, {"filename": "pam_launchd.so.2", "parent": "/usr/lib/pam"}, {"filename": "pam_localauthentication.so.2", "parent": "/usr/lib/pam"}, {"filename": "pam_mount.so.2", "parent": "/usr/lib/pam"}, {"filename": "pam_nologin.so.2", "parent": "/usr/lib/pam"}, {"filename": "pam_ntlm.so.2", "parent": "/usr/lib/pam"}, {"filename": "pam_opendirectory.so.2", "parent": "/usr/lib/pam"}, {"filename": "pam_permit.so.2", "parent": "/usr/lib/pam"}, {"filename": "pam_rootok.so.2", "parent": "/usr/lib/pam"}, {"filename": "pam_sacl.so.2", "parent": "/usr/lib/pam"}, {"filename": "pam_self.so.2", "parent": "/usr/lib/pam"}, {"filename": "pam_smartcard.so.2", "parent": "/usr/lib/pam"}, {"filename": "pam_tid.so.2", "parent": "/usr/lib/pam"}, {"filename": "pam_uwtmp.so.2", "parent": "/usr/lib/pam"}, {"filename": "build", "parent": "/usr/lib/php"}, {"filename": "extensions", "parent": "/usr/lib/php"}, {"filename": "Makefile.global", "parent": "/usr/lib/php/build"}, {"filename": "acinclude.m4", "parent": "/usr/lib/php/build"}, {"filename": "ax_check_compile_flag.m4", "parent": "/usr/lib/php/build"}, {"filename": "config.guess", "parent": "/usr/lib/php/build"}, {"filename": "config.sub", "parent": "/usr/lib/php/build"}, {"filename": "libtool.m4", "parent": "/usr/lib/php/build"}, {"filename": "ltmain.sh", "parent": "/usr/lib/php/build"}, {"filename": "mkdep.awk", "parent": "/usr/lib/php/build"}, {"filename": "phpize.m4", "parent": "/usr/lib/php/build"}, {"filename": "run-tests.php", "parent": "/usr/lib/php/build"}, {"filename": "scan_makefile_in.awk", "parent": "/usr/lib/php/build"}, {"filename": "shtool", "parent": "/usr/lib/php/build"}, {"filename": "no-debug-non-zts-20160303", "parent": "/usr/lib/php/extensions"}, {"filename": "opcache.so", "parent": "/usr/lib/php/extensions/no-debug-non-zts-20160303"}, {"filename": "xdebug.so", "parent": "/usr/lib/php/extensions/no-debug-non-zts-20160303"}, {"filename": "apr-1.pc", "parent": "/usr/lib/pkgconfig"}, {"filename": "apr-util-1.pc", "parent": "/usr/lib/pkgconfig"}, {"filename": "libecpg.pc", "parent": "/usr/lib/pkgconfig"}, {"filename": "libecpg_compat.pc", "parent": "/usr/lib/pkgconfig"}, {"filename": "libiodbc.pc", "parent": "/usr/lib/pkgconfig"}, {"filename": "libpcre.pc", "parent": "/usr/lib/pkgconfig"}, {"filename": "libpcreposix.pc", "parent": "/usr/lib/pkgconfig"}, {"filename": "libpgtypes.pc", "parent": "/usr/lib/pkgconfig"}, {"filename": "libpq.pc", "parent": "/usr/lib/pkgconfig"}, {"filename": "dssetup.bundle", "parent": "/usr/lib/rpcsvc"}, {"filename": "echosvc.bundle", "parent": "/usr/lib/rpcsvc"}, {"filename": "lsarpc.bundle", "parent": "/usr/lib/rpcsvc"}, {"filename": "mdssvc.bundle", "parent": "/usr/lib/rpcsvc"}, {"filename": "netlogon.bundle", "parent": "/usr/lib/rpcsvc"}, {"filename": "srvsvc.bundle", "parent": "/usr/lib/rpcsvc"}, {"filename": "wkssvc.bundle", "parent": "/usr/lib/rpcsvc"}, {"filename": "apop.so", "parent": "/usr/lib/sasl2"}, {"filename": "atoken.so", "parent": "/usr/lib/sasl2"}, {"filename": "dhx.so", "parent": "/usr/lib/sasl2"}, {"filename": "digestmd5WebDAV.so", "parent": "/usr/lib/sasl2"}, {"filename": "libanonymous.2.so", "parent": "/usr/lib/sasl2"}, {"filename": "libcrammd5.2.so", "parent": "/usr/lib/sasl2"}, {"filename": "libdigestmd5.2.so", "parent": "/usr/lib/sasl2"}, {"filename": "libgssapiv2.2.0.18.so", "parent": "/usr/lib/sasl2"}, {"filename": "libgssapiv2.2.so", "parent": "/usr/lib/sasl2"}, {"filename": "libntlm.so", "parent": "/usr/lib/sasl2"}, {"filename": "libplain.2.so", "parent": "/usr/lib/sasl2"}, {"filename": "login.so", "parent": "/usr/lib/sasl2"}, {"filename": "mschapv2.so", "parent": "/usr/lib/sasl2"}, {"filename": "oauthbearer.so", "parent": "/usr/lib/sasl2"}, {"filename": "openldap", "parent": "/usr/lib/sasl2"}, {"filename": "plain-clienttoken.so", "parent": "/usr/lib/sasl2"}, {"filename": "pwauxprop.so", "parent": "/usr/lib/sasl2"}, {"filename": "shadow_auxprop.so", "parent": "/usr/lib/sasl2"}, {"filename": "smb_ntlmv2.so", "parent": "/usr/lib/sasl2"}, {"filename": "srp.so", "parent": "/usr/lib/sasl2"}, {"filename": "libcrammd5.2.so", "parent": "/usr/lib/sasl2/openldap"}, {"filename": "libgssapiv2.2.so", "parent": "/usr/lib/sasl2/openldap"}, {"filename": "srp.so", "parent": "/usr/lib/sasl2/openldap"}, {"filename": "libswiftAVFoundation.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftAccelerate.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftAppKit.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftCloudKit.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftContacts.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftCore.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftCoreAudio.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftCoreData.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftCoreFoundation.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftCoreGraphics.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftCoreImage.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftCoreLocation.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftCoreMedia.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftCreateML.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftCryptoTokenKit.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftDarwin.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftDemangle.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftDispatch.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftFoundation.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftGLKit.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftGameplayKit.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftIOKit.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftIntents.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftMapKit.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftMetal.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftMetalKit.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftModelIO.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftNaturalLanguage.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftNetwork.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftObjectiveC.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftOpenCL.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftPhotos.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftQuartzCore.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftRemoteMirror.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftRemoteMirror42.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftRemoteMirrorLegacy.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftSIMDOperators.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftSafariServices.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftSceneKit.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftSpriteKit.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftSwiftOnoneSupport.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftUIKit.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftVision.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftXCTest.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftXPC.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftos.dylib", "parent": "/usr/lib/swift"}, {"filename": "libswiftsimd.dylib", "parent": "/usr/lib/swift"}, {"filename": "introspection", "parent": "/usr/lib/system"}, {"filename": "libcache.dylib", "parent": "/usr/lib/system"}, {"filename": "libcommonCrypto.dylib", "parent": "/usr/lib/system"}, {"filename": "libcompiler_rt.dylib", "parent": "/usr/lib/system"}, {"filename": "libcopyfile.dylib", "parent": "/usr/lib/system"}, {"filename": "libcorecrypto.dylib", "parent": "/usr/lib/system"}, {"filename": "libcorecrypto_trace.dylib", "parent": "/usr/lib/system"}, {"filename": "libdispatch.dylib", "parent": "/usr/lib/system"}, {"filename": "libdyld.dylib", "parent": "/usr/lib/system"}, {"filename": "libkeymgr.dylib", "parent": "/usr/lib/system"}, {"filename": "libkxld.dylib", "parent": "/usr/lib/system"}, {"filename": "liblaunch.dylib", "parent": "/usr/lib/system"}, {"filename": "libmacho.dylib", "parent": "/usr/lib/system"}, {"filename": "libmathCommon.A.dylib", "parent": "/usr/lib/system"}, {"filename": "libmathCommon.dylib", "parent": "/usr/lib/system"}, {"filename": "libquarantine.dylib", "parent": "/usr/lib/system"}, {"filename": "libremovefile.dylib", "parent": "/usr/lib/system"}, {"filename": "libsystem_asl.dylib", "parent": "/usr/lib/system"}, {"filename": "libsystem_blocks.dylib", "parent": "/usr/lib/system"}, {"filename": "libsystem_c.dylib", "parent": "/usr/lib/system"}, {"filename": "libsystem_configuration.dylib", "parent": "/usr/lib/system"}, {"filename": "libsystem_coreservices.dylib", "parent": "/usr/lib/system"}, {"filename": "libsystem_darwin.dylib", "parent": "/usr/lib/system"}, {"filename": "libsystem_dnssd.dylib", "parent": "/usr/lib/system"}, {"filename": "libsystem_info.dylib", "parent": "/usr/lib/system"}, {"filename": "libsystem_kernel.dylib", "parent": "/usr/lib/system"}, {"filename": "libsystem_m.dylib", "parent": "/usr/lib/system"}, {"filename": "libsystem_malloc.dylib", "parent": "/usr/lib/system"}, {"filename": "libsystem_networkextension.dylib", "parent": "/usr/lib/system"}, {"filename": "libsystem_notify.dylib", "parent": "/usr/lib/system"}, {"filename": "libsystem_platform.dylib", "parent": "/usr/lib/system"}, {"filename": "libsystem_pthread.dylib", "parent": "/usr/lib/system"}, {"filename": "libsystem_sandbox.dylib", "parent": "/usr/lib/system"}, {"filename": "libsystem_secinit.dylib", "parent": "/usr/lib/system"}, {"filename": "libsystem_symptoms.dylib", "parent": "/usr/lib/system"}, {"filename": "libsystem_trace.dylib", "parent": "/usr/lib/system"}, {"filename": "libunc.dylib", "parent": "/usr/lib/system"}, {"filename": "libunwind.dylib", "parent": "/usr/lib/system"}, {"filename": "libxpc.dylib", "parent": "/usr/lib/system"}, {"filename": "wordexp-helper", "parent": "/usr/lib/system"}, {"filename": "libdispatch.dylib", "parent": "/usr/lib/system/introspection"}, {"filename": "libsystem_pthread.dylib", "parent": "/usr/lib/system/introspection"}, {"filename": "support.bundle", "parent": "/usr/lib/xpc"}, {"filename": "Contents", "parent": "/usr/lib/xpc/support.bundle"}, {"filename": "Info.plist", "parent": "/usr/lib/xpc/support.bundle/Contents"}, {"filename": "MacOS", "parent": "/usr/lib/xpc/support.bundle/Contents"}, {"filename": "_CodeSignature", "parent": "/usr/lib/xpc/support.bundle/Contents"}, {"filename": "version.plist", "parent": "/usr/lib/xpc/support.bundle/Contents"}, {"filename": "support", "parent": "/usr/lib/xpc/support.bundle/Contents/MacOS"}, {"filename": "CodeResources", "parent": "/usr/lib/xpc/support.bundle/Contents/_CodeSignature"}, {"filename": "5.3", "parent": "/usr/lib/zsh"}, {"filename": "zsh", "parent": "/usr/lib/zsh/5.3"}, {"filename": "attr.so", "parent": "/usr/lib/zsh/5.3/zsh"}, {"filename": "cap.so", "parent": "/usr/lib/zsh/5.3/zsh"}, {"filename": "clone.so", "parent": "/usr/lib/zsh/5.3/zsh"}, {"filename": "compctl.so", "parent": "/usr/lib/zsh/5.3/zsh"}, {"filename": "complete.so", "parent": "/usr/lib/zsh/5.3/zsh"}, {"filename": "complist.so", "parent": "/usr/lib/zsh/5.3/zsh"}, {"filename": "computil.so", "parent": "/usr/lib/zsh/5.3/zsh"}, {"filename": "curses.so", "parent": "/usr/lib/zsh/5.3/zsh"}, {"filename": "datetime.so", "parent": "/usr/lib/zsh/5.3/zsh"}, {"filename": "deltochar.so", "parent": "/usr/lib/zsh/5.3/zsh"}, {"filename": "example.so", "parent": "/usr/lib/zsh/5.3/zsh"}, {"filename": "files.so", "parent": "/usr/lib/zsh/5.3/zsh"}, {"filename": "langinfo.so", "parent": "/usr/lib/zsh/5.3/zsh"}, {"filename": "mapfile.so", "parent": "/usr/lib/zsh/5.3/zsh"}, {"filename": "mathfunc.so", "parent": "/usr/lib/zsh/5.3/zsh"}, {"filename": "net", "parent": "/usr/lib/zsh/5.3/zsh"}, {"filename": "newuser.so", "parent": "/usr/lib/zsh/5.3/zsh"}, {"filename": "param", "parent": "/usr/lib/zsh/5.3/zsh"}, {"filename": "parameter.so", "parent": "/usr/lib/zsh/5.3/zsh"}, {"filename": "regex.so", "parent": "/usr/lib/zsh/5.3/zsh"}, {"filename": "rlimits.so", "parent": "/usr/lib/zsh/5.3/zsh"}, {"filename": "sched.so", "parent": "/usr/lib/zsh/5.3/zsh"}, {"filename": "stat.so", "parent": "/usr/lib/zsh/5.3/zsh"}, {"filename": "system.so", "parent": "/usr/lib/zsh/5.3/zsh"}, {"filename": "termcap.so", "parent": "/usr/lib/zsh/5.3/zsh"}, {"filename": "terminfo.so", "parent": "/usr/lib/zsh/5.3/zsh"}, {"filename": "zftp.so", "parent": "/usr/lib/zsh/5.3/zsh"}, {"filename": "zle.so", "parent": "/usr/lib/zsh/5.3/zsh"}, {"filename": "zleparameter.so", "parent": "/usr/lib/zsh/5.3/zsh"}, {"filename": "zprof.so", "parent": "/usr/lib/zsh/5.3/zsh"}, {"filename": "zpty.so", "parent": "/usr/lib/zsh/5.3/zsh"}, {"filename": "zselect.so", "parent": "/usr/lib/zsh/5.3/zsh"}, {"filename": "zutil.so", "parent": "/usr/lib/zsh/5.3/zsh"}, {"filename": "socket.so", "parent": "/usr/lib/zsh/5.3/zsh/net"}, {"filename": "tcp.so", "parent": "/usr/lib/zsh/5.3/zsh/net"}, {"filename": "private.so", "parent": "/usr/lib/zsh/5.3/zsh/param"}, {"filename": "AdvancedCommandsMigrator", "parent": "/usr/libexec"}, {"filename": "AirPlayXPCHelper", "parent": "/usr/libexec"}, {"filename": "AppSandbox", "parent": "/usr/libexec"}, {"filename": "AppleQEMUGuestAgent", "parent": "/usr/libexec"}, {"filename": "ApplicationFirewall", "parent": "/usr/libexec"}, {"filename": "AssetCache", "parent": "/usr/libexec"}, {"filename": "AssetCacheAgent", "parent": "/usr/libexec"}, {"filename": "CSCSupportd", "parent": "/usr/libexec"}, {"filename": "DataDetectorsLocalSources", "parent": "/usr/libexec"}, {"filename": "DataDetectorsSourceAccess", "parent": "/usr/libexec"}, {"filename": "DeveloperTools", "parent": "/usr/libexec"}, {"filename": "FDERecoveryAgent", "parent": "/usr/libexec"}, {"filename": "FirmwareUpdateLauncher", "parent": "/usr/libexec"}, {"filename": "IOAccelMemoryInfoCollector", "parent": "/usr/libexec"}, {"filename": "InternetSharing", "parent": "/usr/libexec"}, {"filename": "KeychainMigrator", "parent": "/usr/libexec"}, {"filename": "MiniTerm.app", "parent": "/usr/libexec"}, {"filename": "NVMeAgent", "parent": "/usr/libexec"}, {"filename": "PerfPowerServices", "parent": "/usr/libexec"}, {"filename": "PerfPowerServicesExtended", "parent": "/usr/libexec"}, {"filename": "PlistBuddy", "parent": "/usr/libexec"}, {"filename": "ReportMemoryException", "parent": "/usr/libexec"}, {"filename": "SafariCloudHistoryPushAgent", "parent": "/usr/libexec"}, {"filename": "SafariHistoryServiceAgent", "parent": "/usr/libexec"}, {"filename": "SafariLaunchAgent", "parent": "/usr/libexec"}, {"filename": "SafariNotificationAgent", "parent": "/usr/libexec"}, {"filename": "SafariPlugInUpdateNotifier", "parent": "/usr/libexec"}, {"filename": "SidecarRelay", "parent": "/usr/libexec"}, {"filename": "SmartCardServices", "parent": "/usr/libexec"}, {"filename": "TouchBarServer", "parent": "/usr/libexec"}, {"filename": "USBAgent", "parent": "/usr/libexec"}, {"filename": "UserEventAgent", "parent": "/usr/libexec"}, {"filename": "WiFiVelocityAgent", "parent": "/usr/libexec"}, {"filename": "adprivacyd", "parent": "/usr/libexec"}, {"filename": "adservicesd", "parent": "/usr/libexec"}, {"filename": "airportd", "parent": "/usr/libexec"}, {"filename": "amfid", "parent": "/usr/libexec"}, {"filename": "amsdstat", "parent": "/usr/libexec"}, {"filename": "apache2", "parent": "/usr/libexec"}, {"filename": "apfsd", "parent": "/usr/libexec"}, {"filename": "applessdstatistics", "parent": "/usr/libexec"}, {"filename": "assertiond", "parent": "/usr/libexec"}, {"filename": "atomicupdatetool", "parent": "/usr/libexec"}, {"filename": "atrun", "parent": "/usr/libexec"}, {"filename": "attach_automation_image", "parent": "/usr/libexec"}, {"filename": "authopen", "parent": "/usr/libexec"}, {"filename": "autofsd", "parent": "/usr/libexec"}, {"filename": "automation_trampoline", "parent": "/usr/libexec"}, {"filename": "automountd", "parent": "/usr/libexec"}, {"filename": "avconferenced", "parent": "/usr/libexec"}, {"filename": "awacsd", "parent": "/usr/libexec"}, {"filename": "biokitaggdd", "parent": "/usr/libexec"}, {"filename": "biometrickitd", "parent": "/usr/libexec"}, {"filename": "bootinstalld", "parent": "/usr/libexec"}, {"filename": "bootpd", "parent": "/usr/libexec"}, {"filename": "bspowerassertiontool", "parent": "/usr/libexec"}, {"filename": "captiveagent", "parent": "/usr/libexec"}, {"filename": "cc_fips_test", "parent": "/usr/libexec"}, {"filename": "checkLocalKDC", "parent": "/usr/libexec"}, {"filename": "chkpasswd", "parent": "/usr/libexec"}, {"filename": "cloudconfigurationd", "parent": "/usr/libexec"}, {"filename": "colorsync.displayservices", "parent": "/usr/libexec"}, {"filename": "colorsyncd", "parent": "/usr/libexec"}, {"filename": "comsat", "parent": "/usr/libexec"}, {"filename": "configd", "parent": "/usr/libexec"}, {"filename": "configureLocalKDC", "parent": "/usr/libexec"}, {"filename": "corebrightnessd", "parent": "/usr/libexec"}, {"filename": "corecaptured", "parent": "/usr/libexec"}, {"filename": "coreduetd", "parent": "/usr/libexec"}, {"filename": "corestoraged", "parent": "/usr/libexec"}, {"filename": "corestoragehelperd", "parent": "/usr/libexec"}, {"filename": "create_automation_image_overlay", "parent": "/usr/libexec"}, {"filename": "cups", "parent": "/usr/libexec"}, {"filename": "dasd", "parent": "/usr/libexec"}, {"filename": "defragx", "parent": "/usr/libexec"}, {"filename": "diagnosticd", "parent": "/usr/libexec"}, {"filename": "dirhelper", "parent": "/usr/libexec"}, {"filename": "diskarbitrationd", "parent": "/usr/libexec"}, {"filename": "diskmanagementd", "parent": "/usr/libexec"}, {"filename": "diskmanagementstartup", "parent": "/usr/libexec"}, {"filename": "displaypolicyd", "parent": "/usr/libexec"}, {"filename": "dmd", "parent": "/usr/libexec"}, {"filename": "dp2hdmiupdater", "parent": "/usr/libexec"}, {"filename": "dpaudiothru", "parent": "/usr/libexec"}, {"filename": "dpd", "parent": "/usr/libexec"}, {"filename": "dprivacyd", "parent": "/usr/libexec"}, {"filename": "dspluginhelperd", "parent": "/usr/libexec"}, {"filename": "dtrace", "parent": "/usr/libexec"}, {"filename": "dumpemacs", "parent": "/usr/libexec"}, {"filename": "efiupdater", "parent": "/usr/libexec"}, {"filename": "emacs", "parent": "/usr/libexec"}, {"filename": "emlog.pl", "parent": "/usr/libexec"}, {"filename": "eoshostd", "parent": "/usr/libexec"}, {"filename": "fax", "parent": "/usr/libexec"}, {"filename": "feedback", "parent": "/usr/libexec"}, {"filename": "femail", "parent": "/usr/libexec"}, {"filename": "findmydevice-user-agent", "parent": "/usr/libexec"}, {"filename": "findmydeviced", "parent": "/usr/libexec"}, {"filename": "firmwarecheckers", "parent": "/usr/libexec"}, {"filename": "firmwaresyncd", "parent": "/usr/libexec"}, {"filename": "fmfd", "parent": "/usr/libexec"}, {"filename": "ftp-proxy", "parent": "/usr/libexec"}, {"filename": "gamecontrollerd", "parent": "/usr/libexec"}, {"filename": "getPPDVersion", "parent": "/usr/libexec"}, {"filename": "getty", "parent": "/usr/libexec"}, {"filename": "gkreport", "parent": "/usr/libexec"}, {"filename": "hidd", "parent": "/usr/libexec"}, {"filename": "ifcstart", "parent": "/usr/libexec"}, {"filename": "installer-core", "parent": "/usr/libexec"}, {"filename": "ioupsd", "parent": "/usr/libexec"}, {"filename": "ippusbd", "parent": "/usr/libexec"}, {"filename": "java_home", "parent": "/usr/libexec"}, {"filename": "kcproxy", "parent": "/usr/libexec"}, {"filename": "kdumpd", "parent": "/usr/libexec"}, {"filename": "kextd", "parent": "/usr/libexec"}, {"filename": "keybagd", "parent": "/usr/libexec"}, {"filename": "keyboardservicesd", "parent": "/usr/libexec"}, {"filename": "knowledge-agent", "parent": "/usr/libexec"}, {"filename": "kuncd", "parent": "/usr/libexec"}, {"filename": "languageassetd", "parent": "/usr/libexec"}, {"filename": "locate.bigram", "parent": "/usr/libexec"}, {"filename": "locate.code", "parent": "/usr/libexec"}, {"filename": "locate.concatdb", "parent": "/usr/libexec"}, {"filename": "locate.mklocatedb", "parent": "/usr/libexec"}, {"filename": "locate.updatedb", "parent": "/usr/libexec"}, {"filename": "locationd", "parent": "/usr/libexec"}, {"filename": "logd", "parent": "/usr/libexec"}, {"filename": "loginitemregisterd", "parent": "/usr/libexec"}, {"filename": "logkextloadsd", "parent": "/usr/libexec"}, {"filename": "lsd", "parent": "/usr/libexec"}, {"filename": "makewhatis", "parent": "/usr/libexec"}, {"filename": "makewhatis.local", "parent": "/usr/libexec"}, {"filename": "mcxalr", "parent": "/usr/libexec"}, {"filename": "mdmclient", "parent": "/usr/libexec"}, {"filename": "migrateLocalKDC", "parent": "/usr/libexec"}, {"filename": "mobileactivationd", "parent": "/usr/libexec"}, {"filename": "mobileassetd", "parent": "/usr/libexec"}, {"filename": "mount_url", "parent": "/usr/libexec"}, {"filename": "msutil", "parent": "/usr/libexec"}, {"filename": "multiversed", "parent": "/usr/libexec"}, {"filename": "natpmpd", "parent": "/usr/libexec"}, {"filename": "neagent", "parent": "/usr/libexec"}, {"filename": "nehelper", "parent": "/usr/libexec"}, {"filename": "nesessionmanager", "parent": "/usr/libexec"}, {"filename": "netbootdisk", "parent": "/usr/libexec"}, {"filename": "networkserviceproxy", "parent": "/usr/libexec"}, {"filename": "nfcd", "parent": "/usr/libexec"}, {"filename": "nfrestore_service", "parent": "/usr/libexec"}, {"filename": "nlcd", "parent": "/usr/libexec"}, {"filename": "nsurlsessiond", "parent": "/usr/libexec"}, {"filename": "nsurlstoraged", "parent": "/usr/libexec"}, {"filename": "ntalkd", "parent": "/usr/libexec"}, {"filename": "od_user_homes", "parent": "/usr/libexec"}, {"filename": "odproxyd", "parent": "/usr/libexec"}, {"filename": "opendirectoryd", "parent": "/usr/libexec"}, {"filename": "osaapplet", "parent": "/usr/libexec"}, {"filename": "otherbsd", "parent": "/usr/libexec"}, {"filename": "path_helper", "parent": "/usr/libexec"}, {"filename": "pboard", "parent": "/usr/libexec"}, {"filename": "pcsstatus", "parent": "/usr/libexec"}, {"filename": "periodic-wrapper", "parent": "/usr/libexec"}, {"filename": "pfd", "parent": "/usr/libexec"}, {"filename": "pkd", "parent": "/usr/libexec"}, {"filename": "pkreporter", "parent": "/usr/libexec"}, {"filename": "postfix", "parent": "/usr/libexec"}, {"filename": "productutil", "parent": "/usr/libexec"}, {"filename": "rapportd", "parent": "/usr/libexec"}, {"filename": "remotectl", "parent": "/usr/libexec"}, {"filename": "rootless-init", "parent": "/usr/libexec"}, {"filename": "routined", "parent": "/usr/libexec"}, {"filename": "rpc.rquotad", "parent": "/usr/libexec"}, {"filename": "rpcsvchost", "parent": "/usr/libexec"}, {"filename": "rtcreportingd", "parent": "/usr/libexec"}, {"filename": "sandboxd", "parent": "/usr/libexec"}, {"filename": "scsid", "parent": "/usr/libexec"}, {"filename": "sdfwupdater", "parent": "/usr/libexec"}, {"filename": "secd", "parent": "/usr/libexec"}, {"filename": "secinitd", "parent": "/usr/libexec"}, {"filename": "security-checksystem", "parent": "/usr/libexec"}, {"filename": "security-sysdiagnose", "parent": "/usr/libexec"}, {"filename": "security_authtrampoline", "parent": "/usr/libexec"}, {"filename": "securityd_service", "parent": "/usr/libexec"}, {"filename": "securityuploadd", "parent": "/usr/libexec"}, {"filename": "seld", "parent": "/usr/libexec"}, {"filename": "sftp-server", "parent": "/usr/libexec"}, {"filename": "sharingd", "parent": "/usr/libexec"}, {"filename": "signpost_reporter", "parent": "/usr/libexec"}, {"filename": "silhouette", "parent": "/usr/libexec"}, {"filename": "siriknowledged", "parent": "/usr/libexec"}, {"filename": "slapconfig-keygen", "parent": "/usr/libexec"}, {"filename": "slapd", "parent": "/usr/libexec"}, {"filename": "smb-migrate-preferences", "parent": "/usr/libexec"}, {"filename": "smb-sync-preferences", "parent": "/usr/libexec"}, {"filename": "smcDiagnose", "parent": "/usr/libexec"}, {"filename": "smcupdater", "parent": "/usr/libexec"}, {"filename": "smd", "parent": "/usr/libexec"}, {"filename": "snmpd", "parent": "/usr/libexec"}, {"filename": "spindump_agent", "parent": "/usr/libexec"}, {"filename": "ssdupdater", "parent": "/usr/libexec"}, {"filename": "ssh-keysign", "parent": "/usr/libexec"}, {"filename": "ssh-pkcs11-helper", "parent": "/usr/libexec"}, {"filename": "sshd-keygen-wrapper", "parent": "/usr/libexec"}, {"filename": "startupdiskhelper", "parent": "/usr/libexec"}, {"filename": "studentd", "parent": "/usr/libexec"}, {"filename": "swcd", "parent": "/usr/libexec"}, {"filename": "symptomsd", "parent": "/usr/libexec"}, {"filename": "sysdiagnose_helper", "parent": "/usr/libexec"}, {"filename": "sysmond", "parent": "/usr/libexec"}, {"filename": "syspolicyd", "parent": "/usr/libexec"}, {"filename": "systemstats_boot", "parent": "/usr/libexec"}, {"filename": "tailspind", "parent": "/usr/libexec"}, {"filename": "taskgated", "parent": "/usr/libexec"}, {"filename": "taskgated-helper", "parent": "/usr/libexec"}, {"filename": "testmanagerd", "parent": "/usr/libexec"}, {"filename": "tftpd", "parent": "/usr/libexec"}, {"filename": "thermald", "parent": "/usr/libexec"}, {"filename": "timed", "parent": "/usr/libexec"}, {"filename": "trustd", "parent": "/usr/libexec"}, {"filename": "tzd", "parent": "/usr/libexec"}, {"filename": "tzinit", "parent": "/usr/libexec"}, {"filename": "tzlinkd", "parent": "/usr/libexec"}, {"filename": "ucupdate", "parent": "/usr/libexec"}, {"filename": "unbound", "parent": "/usr/libexec"}, {"filename": "undoServerAppDNSPrefs", "parent": "/usr/libexec"}, {"filename": "upsshutdown", "parent": "/usr/libexec"}, {"filename": "usbcupdater", "parent": "/usr/libexec"}, {"filename": "usbd", "parent": "/usr/libexec"}, {"filename": "vbiosupdater", "parent": "/usr/libexec"}, {"filename": "videosubscriptionsd", "parent": "/usr/libexec"}, {"filename": "vndevice", "parent": "/usr/libexec"}, {"filename": "warmd", "parent": "/usr/libexec"}, {"filename": "warmd_agent", "parent": "/usr/libexec"}, {"filename": "watchdogd", "parent": "/usr/libexec"}, {"filename": "webinspectord", "parent": "/usr/libexec"}, {"filename": "wfs", "parent": "/usr/libexec"}, {"filename": "wifiFirmwareLoader", "parent": "/usr/libexec"}, {"filename": "wifid", "parent": "/usr/libexec"}, {"filename": "wifivelocityd", "parent": "/usr/libexec"}, {"filename": "wps", "parent": "/usr/libexec"}, {"filename": "x11-select", "parent": "/usr/libexec"}, {"filename": "xartstorageremoted", "parent": "/usr/libexec"}, {"filename": "xpchelper", "parent": "/usr/libexec"}, {"filename": "xpcproxy", "parent": "/usr/libexec"}, {"filename": "xpcroleaccountd", "parent": "/usr/libexec"}, {"filename": "xscertd", "parent": "/usr/libexec"}, {"filename": "xscertd-helper", "parent": "/usr/libexec"}, {"filename": "xssendevent", "parent": "/usr/libexec"}, {"filename": "ContainerRepairAgent", "parent": "/usr/libexec/AppSandbox"}, {"filename": "app_sandbox_cache_builder", "parent": "/usr/libexec/AppSandbox"}, {"filename": "container_check.rb", "parent": "/usr/libexec/AppSandbox"}, {"filename": "Firewall", "parent": "/usr/libexec/ApplicationFirewall"}, {"filename": "appfwloggerd", "parent": "/usr/libexec/ApplicationFirewall"}, {"filename": "com.apple.alf.plist", "parent": "/usr/libexec/ApplicationFirewall"}, {"filename": "socketfilterfw", "parent": "/usr/libexec/ApplicationFirewall"}, {"filename": "socketfilterhelper", "parent": "/usr/libexec/ApplicationFirewall"}, {"filename": "AssetCache", "parent": "/usr/libexec/AssetCache"}, {"filename": "AssetCache.momd", "parent": "/usr/libexec/AssetCache"}, {"filename": "AssetCache-v2.mom", "parent": "/usr/libexec/AssetCache/AssetCache.momd"}, {"filename": "AssetCache-v3.mom", "parent": "/usr/libexec/AssetCache/AssetCache.momd"}, {"filename": "AssetCache-v4.mom", "parent": "/usr/libexec/AssetCache/AssetCache.momd"}, {"filename": "AssetCache-v5.mom", "parent": "/usr/libexec/AssetCache/AssetCache.momd"}, {"filename": "AssetCache-v6.mom", "parent": "/usr/libexec/AssetCache/AssetCache.momd"}, {"filename": "AssetCache-v6.omo", "parent": "/usr/libexec/AssetCache/AssetCache.momd"}, {"filename": "AssetCache.mom", "parent": "/usr/libexec/AssetCache/AssetCache.momd"}, {"filename": "VersionInfo.plist", "parent": "/usr/libexec/AssetCache/AssetCache.momd"}, {"filename": "AssetCacheAgent", "parent": "/usr/libexec/AssetCacheAgent"}, {"filename": "ar.lproj", "parent": "/usr/libexec/AssetCacheAgent"}, {"filename": "ca.lproj", "parent": "/usr/libexec/AssetCacheAgent"}, {"filename": "cs.lproj", "parent": "/usr/libexec/AssetCacheAgent"}, {"filename": "da.lproj", "parent": "/usr/libexec/AssetCacheAgent"}, {"filename": "de.lproj", "parent": "/usr/libexec/AssetCacheAgent"}, {"filename": "el.lproj", "parent": "/usr/libexec/AssetCacheAgent"}, {"filename": "en.lproj", "parent": "/usr/libexec/AssetCacheAgent"}, {"filename": "en_AU.lproj", "parent": "/usr/libexec/AssetCacheAgent"}, {"filename": "en_GB.lproj", "parent": "/usr/libexec/AssetCacheAgent"}, {"filename": "es.lproj", "parent": "/usr/libexec/AssetCacheAgent"}, {"filename": "es_419.lproj", "parent": "/usr/libexec/AssetCacheAgent"}, {"filename": "fi.lproj", "parent": "/usr/libexec/AssetCacheAgent"}, {"filename": "fr.lproj", "parent": "/usr/libexec/AssetCacheAgent"}, {"filename": "fr_CA.lproj", "parent": "/usr/libexec/AssetCacheAgent"}, {"filename": "he.lproj", "parent": "/usr/libexec/AssetCacheAgent"}, {"filename": "hi.lproj", "parent": "/usr/libexec/AssetCacheAgent"}, {"filename": "hr.lproj", "parent": "/usr/libexec/AssetCacheAgent"}, {"filename": "hu.lproj", "parent": "/usr/libexec/AssetCacheAgent"}, {"filename": "id.lproj", "parent": "/usr/libexec/AssetCacheAgent"}, {"filename": "it.lproj", "parent": "/usr/libexec/AssetCacheAgent"}, {"filename": "ja.lproj", "parent": "/usr/libexec/AssetCacheAgent"}, {"filename": "ko.lproj", "parent": "/usr/libexec/AssetCacheAgent"}, {"filename": "ms.lproj", "parent": "/usr/libexec/AssetCacheAgent"}, {"filename": "nl.lproj", "parent": "/usr/libexec/AssetCacheAgent"}, {"filename": "no.lproj", "parent": "/usr/libexec/AssetCacheAgent"}, {"filename": "pl.lproj", "parent": "/usr/libexec/AssetCacheAgent"}, {"filename": "pt.lproj", "parent": "/usr/libexec/AssetCacheAgent"}, {"filename": "pt_PT.lproj", "parent": "/usr/libexec/AssetCacheAgent"}, {"filename": "ro.lproj", "parent": "/usr/libexec/AssetCacheAgent"}, {"filename": "ru.lproj", "parent": "/usr/libexec/AssetCacheAgent"}, {"filename": "sk.lproj", "parent": "/usr/libexec/AssetCacheAgent"}, {"filename": "sv.lproj", "parent": "/usr/libexec/AssetCacheAgent"}, {"filename": "th.lproj", "parent": "/usr/libexec/AssetCacheAgent"}, {"filename": "tr.lproj", "parent": "/usr/libexec/AssetCacheAgent"}, {"filename": "uk.lproj", "parent": "/usr/libexec/AssetCacheAgent"}, {"filename": "vi.lproj", "parent": "/usr/libexec/AssetCacheAgent"}, {"filename": "zh_CN.lproj", "parent": "/usr/libexec/AssetCacheAgent"}, {"filename": "zh_HK.lproj", "parent": "/usr/libexec/AssetCacheAgent"}, {"filename": "zh_TW.lproj", "parent": "/usr/libexec/AssetCacheAgent"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/ar.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/ca.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/cs.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/da.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/de.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/el.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/en.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/en_AU.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/en_GB.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/es.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/es_419.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/fi.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/fr.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/fr_CA.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/he.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/hi.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/hr.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/hu.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/id.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/it.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/ja.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/ko.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/ms.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/nl.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/no.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/pl.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/pt.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/pt_PT.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/ro.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/ru.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/sk.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/sv.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/th.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/tr.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/uk.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/vi.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/zh_CN.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/zh_HK.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/zh_TW.lproj"}, {"filename": "codesign_allocate", "parent": "/usr/libexec/DeveloperTools"}, {"filename": "Contents", "parent": "/usr/libexec/MiniTerm.app"}, {"filename": "Info.plist", "parent": "/usr/libexec/MiniTerm.app/Contents"}, {"filename": "MacOS", "parent": "/usr/libexec/MiniTerm.app/Contents"}, {"filename": "PkgInfo", "parent": "/usr/libexec/MiniTerm.app/Contents"}, {"filename": "Resources", "parent": "/usr/libexec/MiniTerm.app/Contents"}, {"filename": "_CodeSignature", "parent": "/usr/libexec/MiniTerm.app/Contents"}, {"filename": "version.plist", "parent": "/usr/libexec/MiniTerm.app/Contents"}, {"filename": "MiniTerm", "parent": "/usr/libexec/MiniTerm.app/Contents/MacOS"}, {"filename": "Base.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources"}, {"filename": "MiniTerm.iconheader", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources"}, {"filename": "ar.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources"}, {"filename": "ca.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources"}, {"filename": "cs.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources"}, {"filename": "da.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources"}, {"filename": "de.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources"}, {"filename": "el.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources"}, {"filename": "en_AU.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources"}, {"filename": "en_GB.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources"}, {"filename": "es.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources"}, {"filename": "es_419.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources"}, {"filename": "fi.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources"}, {"filename": "fr.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources"}, {"filename": "fr_CA.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources"}, {"filename": "he.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources"}, {"filename": "hi.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources"}, {"filename": "hr.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources"}, {"filename": "hu.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources"}, {"filename": "id.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources"}, {"filename": "it.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources"}, {"filename": "ja.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources"}, {"filename": "ko.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources"}, {"filename": "ms.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources"}, {"filename": "nl.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources"}, {"filename": "no.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources"}, {"filename": "pl.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources"}, {"filename": "pt.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources"}, {"filename": "pt_PT.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources"}, {"filename": "ro.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources"}, {"filename": "ru.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources"}, {"filename": "sk.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources"}, {"filename": "sv.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources"}, {"filename": "th.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources"}, {"filename": "tr.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources"}, {"filename": "uk.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources"}, {"filename": "vi.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources"}, {"filename": "zh_CN.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources"}, {"filename": "zh_HK.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources"}, {"filename": "zh_TW.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources"}, {"filename": "MiniTerm.nib", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/Base.lproj"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/ar.lproj"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/ca.lproj"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/cs.lproj"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/da.lproj"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/de.lproj"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/el.lproj"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/en_AU.lproj"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/en_GB.lproj"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/es.lproj"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/es_419.lproj"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/fi.lproj"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/fr.lproj"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/fr_CA.lproj"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/he.lproj"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/hi.lproj"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/hr.lproj"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/hu.lproj"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/id.lproj"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/it.lproj"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/ja.lproj"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/ko.lproj"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/ms.lproj"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/nl.lproj"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/no.lproj"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/pl.lproj"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/pt.lproj"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/pt_PT.lproj"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/ro.lproj"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/ru.lproj"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/sk.lproj"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/sv.lproj"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/th.lproj"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/tr.lproj"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/uk.lproj"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/vi.lproj"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/zh_CN.lproj"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/zh_HK.lproj"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/zh_TW.lproj"}, {"filename": "CodeResources", "parent": "/usr/libexec/MiniTerm.app/Contents/_CodeSignature"}, {"filename": "drivers", "parent": "/usr/libexec/SmartCardServices"}, {"filename": "ifd-ccid.bundle", "parent": "/usr/libexec/SmartCardServices/drivers"}, {"filename": "Contents", "parent": "/usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle"}, {"filename": "Info.plist", "parent": "/usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle/Contents"}, {"filename": "MacOS", "parent": "/usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle/Contents"}, {"filename": "version.plist", "parent": "/usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle/Contents"}, {"filename": "libccid.dylib", "parent": "/usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle/Contents/MacOS"}, {"filename": "httpd.exp", "parent": "/usr/libexec/apache2"}, {"filename": "libphp7.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_access_compat.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_actions.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_alias.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_allowmethods.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_asis.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_auth_basic.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_auth_digest.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_auth_form.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_authn_anon.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_authn_core.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_authn_dbd.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_authn_dbm.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_authn_file.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_authn_socache.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_authnz_ldap.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_authnz_od_apple.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_authz_core.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_authz_dbd.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_authz_dbm.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_authz_groupfile.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_authz_host.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_authz_owner.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_authz_user.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_autoindex.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_buffer.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_cache.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_cache_disk.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_cache_socache.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_cgi.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_charset_lite.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_data.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_dav.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_dav_fs.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_dav_lock.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_dbd.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_deflate.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_dialup.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_dir.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_dumpio.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_echo.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_env.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_expires.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_ext_filter.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_file_cache.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_filter.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_headers.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_heartbeat.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_heartmonitor.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_hfs_apple.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_http2.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_imagemap.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_include.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_info.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_lbmethod_bybusyness.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_lbmethod_byrequests.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_lbmethod_bytraffic.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_lbmethod_heartbeat.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_ldap.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_log_config.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_log_debug.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_log_forensic.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_logio.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_macro.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_mime.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_mime_magic.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_negotiation.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_perl.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_proxy.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_proxy_ajp.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_proxy_balancer.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_proxy_connect.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_proxy_express.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_proxy_fcgi.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_proxy_fdpass.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_proxy_ftp.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_proxy_hcheck.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_proxy_html.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_proxy_http.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_proxy_scgi.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_proxy_uwsgi.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_proxy_wstunnel.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_ratelimit.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_reflector.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_remoteip.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_reqtimeout.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_request.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_rewrite.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_secure_transport.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_sed.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_session.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_session_cookie.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_session_dbd.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_setenvif.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_slotmem_plain.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_slotmem_shm.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_socache_dbm.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_socache_memcache.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_socache_shmcb.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_speling.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_ssl.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_status.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_substitute.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_unique_id.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_unixd.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_userdir.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_usertrack.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_version.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_vhost_alias.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_watchdog.so", "parent": "/usr/libexec/apache2"}, {"filename": "mod_xml2enc.so", "parent": "/usr/libexec/apache2"}, {"filename": "apple", "parent": "/usr/libexec/cups"}, {"filename": "backend", "parent": "/usr/libexec/cups"}, {"filename": "cgi-bin", "parent": "/usr/libexec/cups"}, {"filename": "daemon", "parent": "/usr/libexec/cups"}, {"filename": "driver", "parent": "/usr/libexec/cups"}, {"filename": "filter", "parent": "/usr/libexec/cups"}, {"filename": "monitor", "parent": "/usr/libexec/cups"}, {"filename": "notifier", "parent": "/usr/libexec/cups"}, {"filename": "http", "parent": "/usr/libexec/cups/apple"}, {"filename": "https", "parent": "/usr/libexec/cups/apple"}, {"filename": "ipp", "parent": "/usr/libexec/cups/apple"}, {"filename": "ipps", "parent": "/usr/libexec/cups/apple"}, {"filename": "smb", "parent": "/usr/libexec/cups/apple"}, {"filename": "bluetooth", "parent": "/usr/libexec/cups/backend"}, {"filename": "dnssd", "parent": "/usr/libexec/cups/backend"}, {"filename": "epsonfax", "parent": "/usr/libexec/cups/backend"}, {"filename": "http", "parent": "/usr/libexec/cups/backend"}, {"filename": "https", "parent": "/usr/libexec/cups/backend"}, {"filename": "ipp", "parent": "/usr/libexec/cups/backend"}, {"filename": "ipps", "parent": "/usr/libexec/cups/backend"}, {"filename": "ippusb", "parent": "/usr/libexec/cups/backend"}, {"filename": "lpd", "parent": "/usr/libexec/cups/backend"}, {"filename": "mdns", "parent": "/usr/libexec/cups/backend"}, {"filename": "riousbprint", "parent": "/usr/libexec/cups/backend"}, {"filename": "smb", "parent": "/usr/libexec/cups/backend"}, {"filename": "snmp", "parent": "/usr/libexec/cups/backend"}, {"filename": "socket", "parent": "/usr/libexec/cups/backend"}, {"filename": "usb", "parent": "/usr/libexec/cups/backend"}, {"filename": "admin.cgi", "parent": "/usr/libexec/cups/cgi-bin"}, {"filename": "classes.cgi", "parent": "/usr/libexec/cups/cgi-bin"}, {"filename": "help.cgi", "parent": "/usr/libexec/cups/cgi-bin"}, {"filename": "jobs.cgi", "parent": "/usr/libexec/cups/cgi-bin"}, {"filename": "printers.cgi", "parent": "/usr/libexec/cups/cgi-bin"}, {"filename": "cups-deviced", "parent": "/usr/libexec/cups/daemon"}, {"filename": "cups-driverd", "parent": "/usr/libexec/cups/daemon"}, {"filename": "cups-exec", "parent": "/usr/libexec/cups/daemon"}, {"filename": "cups-lpd", "parent": "/usr/libexec/cups/daemon"}, {"filename": "cgbannertopdf", "parent": "/usr/libexec/cups/filter"}, {"filename": "cgimagetopdf", "parent": "/usr/libexec/cups/filter"}, {"filename": "cgpdftopdf", "parent": "/usr/libexec/cups/filter"}, {"filename": "cgpdftops", "parent": "/usr/libexec/cups/filter"}, {"filename": "cgpdftoraster", "parent": "/usr/libexec/cups/filter"}, {"filename": "cgtexttopdf", "parent": "/usr/libexec/cups/filter"}, {"filename": "commandtops", "parent": "/usr/libexec/cups/filter"}, {"filename": "gziptoany", "parent": "/usr/libexec/cups/filter"}, {"filename": "pstoappleps", "parent": "/usr/libexec/cups/filter"}, {"filename": "pstocupsraster", "parent": "/usr/libexec/cups/filter"}, {"filename": "pstopdffilter", "parent": "/usr/libexec/cups/filter"}, {"filename": "pstops", "parent": "/usr/libexec/cups/filter"}, {"filename": "rastertodymo", "parent": "/usr/libexec/cups/filter"}, {"filename": "rastertoepson", "parent": "/usr/libexec/cups/filter"}, {"filename": "rastertohp", "parent": "/usr/libexec/cups/filter"}, {"filename": "rastertolabel", "parent": "/usr/libexec/cups/filter"}, {"filename": "rastertopwg", "parent": "/usr/libexec/cups/filter"}, {"filename": "rastertotiff", "parent": "/usr/libexec/cups/filter"}, {"filename": "rastertourf", "parent": "/usr/libexec/cups/filter"}, {"filename": "thnucups", "parent": "/usr/libexec/cups/filter"}, {"filename": "xhtmltopdf", "parent": "/usr/libexec/cups/filter"}, {"filename": "bcp", "parent": "/usr/libexec/cups/monitor"}, {"filename": "tbcp", "parent": "/usr/libexec/cups/monitor"}, {"filename": "mailto", "parent": "/usr/libexec/cups/notifier"}, {"filename": "rss", "parent": "/usr/libexec/cups/notifier"}, {"filename": "file_events.cpp", "parent": "/usr/libexec/dtrace"}, {"filename": "file_events.hpp", "parent": "/usr/libexec/dtrace"}, {"filename": "log_unnest_badness.d", "parent": "/usr/libexec/dtrace"}, {"filename": "smbd_entitlements.plist", "parent": "/usr/libexec/dtrace"}, {"filename": "smbtrace.d", "parent": "/usr/libexec/dtrace"}, {"filename": "vm_map_delete_permanent.d", "parent": "/usr/libexec/dtrace"}, {"filename": "22.1", "parent": "/usr/libexec/emacs"}, {"filename": "mac-apple-darwin", "parent": "/usr/libexec/emacs/22.1"}, {"filename": "cvtmail", "parent": "/usr/libexec/emacs/22.1/mac-apple-darwin"}, {"filename": "digest-doc", "parent": "/usr/libexec/emacs/22.1/mac-apple-darwin"}, {"filename": "fakemail", "parent": "/usr/libexec/emacs/22.1/mac-apple-darwin"}, {"filename": "hexl", "parent": "/usr/libexec/emacs/22.1/mac-apple-darwin"}, {"filename": "movemail", "parent": "/usr/libexec/emacs/22.1/mac-apple-darwin"}, {"filename": "profile", "parent": "/usr/libexec/emacs/22.1/mac-apple-darwin"}, {"filename": "rcs2log", "parent": "/usr/libexec/emacs/22.1/mac-apple-darwin"}, {"filename": "sorted-doc", "parent": "/usr/libexec/emacs/22.1/mac-apple-darwin"}, {"filename": "update-game-score", "parent": "/usr/libexec/emacs/22.1/mac-apple-darwin"}, {"filename": "vcdiff", "parent": "/usr/libexec/emacs/22.1/mac-apple-darwin"}, {"filename": "coverpage.py", "parent": "/usr/libexec/fax"}, {"filename": "appearance.py", "parent": "/usr/libexec/feedback"}, {"filename": "fb_collect", "parent": "/usr/libexec/feedback"}, {"filename": "filevault.py", "parent": "/usr/libexec/feedback"}, {"filename": "sleepwake.sh", "parent": "/usr/libexec/feedback"}, {"filename": "systriage.rb", "parent": "/usr/libexec/feedback"}, {"filename": "eficheck", "parent": "/usr/libexec/firmwarecheckers"}, {"filename": "ethcheck", "parent": "/usr/libexec/firmwarecheckers"}, {"filename": "EFIAllowListShipping.bundle", "parent": "/usr/libexec/firmwarecheckers/eficheck"}, {"filename": "eficheck", "parent": "/usr/libexec/firmwarecheckers/eficheck"}, {"filename": "eficheck-standalone", "parent": "/usr/libexec/firmwarecheckers/eficheck"}, {"filename": "localization", "parent": "/usr/libexec/firmwarecheckers/eficheck"}, {"filename": "allowlists", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle"}, {"filename": "IM111.AAPLEFI1.88Z.0001.I00.0908281642.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0001.I00.0909021206.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0001.I00.0909021315.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0001.I00.0909091053.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0001.I00.0909111152.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0001.I00.0909111312.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0001.I00.0909141538.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0001.I00.0909141605.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0001.I00.0909171006.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.0909231120.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.0909281404.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.0910021021.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.0910021107.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.0910051536.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.0910051609.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.0910071112.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.0910071209.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.0910091045.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.0910091152.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.0910122220.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.0910141109.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.0910141146.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.0910151922.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.0910191602.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.0910191643.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.0910211310.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.0910242121.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.0910281217.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.0910281927.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.0910301725.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.1003151739.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.1003171312.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.1507291353.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.1509231900.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.1701210003.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.1702201847.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.1702241356.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.1704250219.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.1704281850.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.1705021412.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.1706220550.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.1706261402.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.1707231527.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.1708080237.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0005.I00.0911231211.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0005.I00.0912071313.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0005.I00.0912071347.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0005.I00.0912141547.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0005.I00.0912141713.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0005.I00.0912161112.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0005.I00.0912181153.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0005.I00.0912181427.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0005.I00.1001081056.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0005.I00.1001111654.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0005.I00.1001151650.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0005.I00.1001251301.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1002081552.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1002081733.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1002101313.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1002121627.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1002171156.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1002191318.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1002261335.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1003031405.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1003051151.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1003081608.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1003121143.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1003171246.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1003241457.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1004051701.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1004091104.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1004121638.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1004161256.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1004191607.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1004230939.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1004261556.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1005031453.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1112090904.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1112091248.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1507291449.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1509231641.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1612201716.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1701210149.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1702180220.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1702241446.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1704242250.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1704281519.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1705021555.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1706220336.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1706261624.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1707271300.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1708080435.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI2.88Z.0001.I00.1005211133.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI2.88Z.0001.I00.1005241636.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI2.88Z.0003.I00.1006141518.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0004.I00.1006161137.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0004.I00.1006180910.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0004.I00.1006251013.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0004.I00.1006281408.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0005.I00.1007141220.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0005.I00.1007211301.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0005.I00.1007261201.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0005.I00.1007281057.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0005.I00.1008021259.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0005.I00.1008041221.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0005.I00.1008091039.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0005.I00.1008111115.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0005.I00.1008121651.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0005.I00.1008181312.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0005.I00.1008231323.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0005.I00.1008251413.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0005.I00.1008301408.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0005.I00.1009011157.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0005.I00.1009011250.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0006.I00.1009081115.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0006.I00.1009081226.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0007.I00.1009131111.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0007.I00.1009131124.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0007.I00.1009151116.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0007.I00.1009201126.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0007.I00.1009231111.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0007.I00.1009271031.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0008.I00.1009291042.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0008.I00.1010021017.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0008.I00.1010041146.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0008.I00.1010051020.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0008.I00.1010051724.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0008.I00.1010091027.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0008.I00.1010111112.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1010131028.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1010131106.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1010170938.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1010181212.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1010200944.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1010200957.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1010230937.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1010251247.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1010270938.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1010271023.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1010290938.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1010291415.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1011020847.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1011021506.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1011050838.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1011051249.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1011100939.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1011110945.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1011120759.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1011160939.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1011161712.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1011210940.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1011220725.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1011290940.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1011291124.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1012010939.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1012011224.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1012020939.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1012021643.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1012050944.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1012061142.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1012080943.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1012081135.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1012120946.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1012131137.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1012150939.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1012151059.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1012190941.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1012201104.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1101010940.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1101050940.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I01.1101100940.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I01.1101101109.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I01.1101120941.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I01.1101121158.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I01.1101150944.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I01.1101171047.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I02.1101190957.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I02.1101191057.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1101230957.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1101241114.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1101260937.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1101261044.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1101310951.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1101311146.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1102021201.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1102031002.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1102041235.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1102071704.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1102091754.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1103021144.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1103091152.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1103161348.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1103242050.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1103301137.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1104061234.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1104111857.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1104150726.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1104201032.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1104221553.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1107141151.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1107281150.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1108031503.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1108101256.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1108112002.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1108121148.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1108122101.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1108171247.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1108221125.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1108290922.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1108291934.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1109011022.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1109021638.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1109030048.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1109061106.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1109061818.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1109081124.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1109091929.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1109100354.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1109141123.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1109141953.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1109211414.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1109231613.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1109281426.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1110171108.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1110201312.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1201241646.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1506090232.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1506101604.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1509141153.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1510261406.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1610201718.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1611011512.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1612202117.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1701201957.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1702171911.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1703231948.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1703301217.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1703301434.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1704131557.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1704242117.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1704281158.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1705021500.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1705101226.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1706220459.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1706261227.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1707271117.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1708080007.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.88Z.F000.B00.1912181754.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0011.I00.1109120937.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1109141013.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1109141044.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1109190951.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1109191025.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1109211037.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1109260949.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1109271121.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1110031003.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1110031600.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1110050942.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1110100942.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1110101002.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1110121146.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1110121223.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1110170947.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1110201110.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1110211417.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1110211452.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1110260954.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1110270931.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1110271125.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1110271506.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1110271555.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1111020931.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1111021003.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1111070949.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1111071036.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1111091031.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1111091124.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1111141502.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1111171341.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1111280947.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1111281026.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1111301445.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1112051012.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1112051056.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1112051152.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1112070942.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1112071028.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1112121145.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1112121219.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1112140955.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1112141056.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1112201134.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1112201338.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1201041310.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1201041425.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1201090945.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1201091030.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1201120951.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1201122023.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1201122053.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1201160946.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1201161027.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1201181139.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1201181211.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1201231016.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1201231046.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1201251020.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1201251124.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1201300936.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1201301023.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1202011024.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1202011105.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1202021239.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1202061106.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1202061410.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1202061455.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1202081041.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1202081208.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1610041759.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1610041803.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.0000000000.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1202131042.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1202131134.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1202151015.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1202151052.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1202201110.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1202201259.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1202221034.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1202270952.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1202271033.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1202291139.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1202291207.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1203050954.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1203051041.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1203071032.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1203071112.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1203120956.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1203121258.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1203140947.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1203141038.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1203190958.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1203191039.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1203210941.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1203211000.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1203261014.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1203281126.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1203281326.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1204021116.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1204021155.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1204041150.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1204041234.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1204091154.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1204091336.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1204110951.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1204111043.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1204160954.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1204161036.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1204180957.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1204181026.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1204231011.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1204231040.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1204250940.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1204251026.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1204251057.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1204300951.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1204301035.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1205020943.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1205071044.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1205071121.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1205091022.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1205091100.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1205140949.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1205141019.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1205161032.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1205211031.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1205211107.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1205230945.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1205231023.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1205300954.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1205301024.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1206041015.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1206041046.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1206061022.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1206061100.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1206111004.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1206111034.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1206131004.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1206131034.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1206181000.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1206181044.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1206201017.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1206201045.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1206251010.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1206251049.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1206271006.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1206271037.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1207021028.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1207021115.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1207091005.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1207091351.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1207111001.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1207111358.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1207161014.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1207161046.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1207181033.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1207181109.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1207231047.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1207231117.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1207251016.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1207251054.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1207301041.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1207301109.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1208011033.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1208011100.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1208061023.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1208061105.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1208081006.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1208090851.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1208090926.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1208131011.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1208131039.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1208151033.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1208151102.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1208201150.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1208201218.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1208221308.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1208221338.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1208311615.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1208311623.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1208311727.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1209041407.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1209042015.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1209042034.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1209042338.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1209171013.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1209171041.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1209241107.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1209241135.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1210011102.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1210011129.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1210121432.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1210121459.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1211151122.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1211151146.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1302251018.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1302260943.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1302261003.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1302261008.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1506081722.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1506081728.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1509111552.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1509111558.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1610201905.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1610201915.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1612161241.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1612161246.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1701200120.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1701200126.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1701231749.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1701231754.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1701241525.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1701241529.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1702021818.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1702021833.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1702171350.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1702171357.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1703090651.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1703090657.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1703232142.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1703232149.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1705011305.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1705011311.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1706190947.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1706190954.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1706220533.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1706220538.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1706261414.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1706261419.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1707270721.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1708080805.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM141.88Z.F000.B00.1912181604.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM142.88Z.F000.B00.1912181604.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM143.88Z.F000.B00.1912181604.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM144.88Z.F000.B00.1912181611.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM151.88Z.F000.B00.1912181731.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM161.88Z.F000.B00.1910301927.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM162.88Z.F000.B00.1910301924.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM171.88Z.F000.B00.1912161452.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM181.88Z.F000.B00.1912161654.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM183.88Z.F000.B00.1912161654.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "IM191.88Z.F000.B00.1912181732.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MB101.88Z.F000.B00.1912161654.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MB81.88Z.F000.B00.1912161554.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MB91.88Z.F000.B00.1912161452.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.0009.I00.1012150856.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.0009.I00.1012190852.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.0009.I00.1101010850.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.0009.I00.1101050852.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000A.I00.1101100849.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000A.I00.1101120853.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000A.I00.1101140856.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000A.I00.1101150856.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000C.I00.1101190907.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000C.I00.1101200908.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000C.I00.1101210913.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000D.I00.1101220909.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000D.I00.1101230914.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000D.I00.1101240856.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000D.I00.1101250855.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000D.I00.1101261120.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000D.I00.1102021157.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1102091215.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1102091751.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1102111116.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1102111139.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1102111313.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1102111320.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1102111511.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1102111511.1.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1102161116.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1102211052.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1102231217.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1102241543.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1102241720.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1102251038.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1103021232.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1103070731.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1103091936.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1103161348.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1103211026.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1103211031.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1103231036.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1103281025.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1103281030.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1103301120.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1104041043.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1104061117.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1104061122.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1104111221.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1104131115.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1104181024.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1104181030.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1104201030.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1104221256.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1104251137.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1104271026.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I00.1105050916.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I00.1105091028.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I00.1105111250.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I00.1105111313.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I00.1105160959.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I00.1105161031.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I00.1105181141.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I00.1105181211.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I00.1105231054.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I00.1105231132.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I00.1105251109.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I00.1105251142.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I00.1105271358.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I00.1105271428.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I00.1106011425.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I00.1106011454.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I00.1106061000.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I00.1106061642.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I01.1106081015.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I01.1106081046.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1106101104.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1106132213.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1106140816.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1106151001.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1106151037.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1106162146.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1106162216.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1106200956.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1106201206.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1106201233.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1106221510.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1106221541.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1106231541.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1106232232.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1106232301.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1106271224.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1106271253.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1106291141.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1106291211.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1106300901.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1106300929.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1107271705.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1107271736.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1108031120.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1108031344.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1108101017.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1108101049.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1108171239.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1108171457.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1108171535.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1108291522.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1108291605.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1108311547.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1109011021.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1109011050.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1109071213.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1109211407.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1109231610.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1110141153.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1201241518.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1201241549.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1309301452.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1310091423.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1310091428.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1506081722.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1506081728.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1509111552.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1509111558.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1510261804.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1606291853.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1610201436.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1610201441.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1612161003.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1612161009.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1701200227.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1701200234.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1701231856.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1701231905.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1702171849.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1702171855.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1702201321.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1702201326.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1703082356.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1703090011.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1703211803.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1703211809.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1703241835.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1703241839.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1703291020.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1703291024.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1704131531.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1704131536.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1705011209.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1705011214.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1705022113.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1705022117.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1706182246.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1706182250.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1706220616.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1706220621.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1706261209.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1706261217.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1707271102.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1708072159.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.88Z.F000.B00.1912181605.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0012.I00.1110121203.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1111141506.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1111171404.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1111280948.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1111281040.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1111301430.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1111301509.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1112051016.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1112051133.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1112051211.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1112070949.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1112071043.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1112121146.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1112121305.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1112141001.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1112141058.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1112201138.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1112201339.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1201041310.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1201041425.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1201091015.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1201121003.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1201121137.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1201161023.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1201161308.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1201161358.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1201181155.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1201181234.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1201230947.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1201231032.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1201250939.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1201251246.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1201300936.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1201301023.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1202011011.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1202011049.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1202061112.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1202061346.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1202061417.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1202081103.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1202081208.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.0000000000.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1202131131.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1202131211.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1202151049.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1202151130.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1202201147.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1202201301.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1202221017.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1202221053.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1202271030.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1202271055.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1202291156.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1202291238.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1203051021.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1203051042.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1203071108.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1203071145.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1203120956.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1203121259.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1203140948.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1203141013.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1203190958.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1203191039.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1203210941.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1203211000.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1203261015.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1203261043.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1203281127.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1203281150.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1204021117.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1204021140.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1204041153.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1204041235.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1204091154.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1204091337.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1204110952.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1204111044.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1204160951.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1204161036.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1204180957.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1204181043.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1204231017.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1204231109.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1204250940.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1204251030.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1204251115.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1204300953.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1204301036.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1205020944.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1205021014.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1205071045.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1205071121.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1205091022.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1205091101.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1205111019.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1205111052.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1205140950.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1205141142.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1205141211.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1205180833.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1205180901.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1205221412.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1205221442.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1207091048.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1207271032.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1207271048.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1207271121.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1211271001.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1211271023.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1211271028.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1506081618.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1506081623.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1509111646.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1509111653.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1610241029.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1610241034.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1612161124.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1612161130.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1701200120.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1701200126.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1701231856.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1701231905.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1701241625.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1701241632.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1702030112.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1702030117.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1702171350.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1702171357.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1703090651.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1703090657.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1703241418.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1703241423.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1705011406.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1705011412.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1706190947.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1706190954.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1706220516.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1706220521.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1706261427.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1706261433.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1707270721.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1708080803.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA61.88Z.F000.B00.1912181759.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBA71.88Z.F000.B00.1912161554.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.88Z.F000.B00.1912181603.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.0000000000.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1202270953.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1202271033.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1202291150.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1202291238.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1203051001.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1203051042.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1203071033.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1203071113.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1203120955.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1203121022.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1203140948.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1203141013.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1203190959.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1203191039.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1203210941.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1203211019.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1203261016.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1203261100.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1203281126.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1203281150.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1204021117.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1204021140.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1204041151.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1204041235.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1204091154.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1204091219.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1204110951.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1204111044.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1204160955.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1204161036.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1204181109.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1204181135.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1204241531.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1204241558.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1204251023.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1204251058.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1204271732.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1204271809.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1204300951.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1204301036.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1205011144.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1205011212.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1205031113.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1205031115.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1205031148.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1205041142.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1205041513.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1205041550.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1205091751.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1205091823.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1205101811.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1205101839.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1207271031.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1207271103.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1208081105.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1208081132.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1212211406.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1212211431.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1212211436.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1408281415.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1408281420.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1408291526.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1408291532.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1411201035.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1411201127.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1411201133.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1501071024.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1501071030.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1506081208.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1506081214.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1506081359.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1506081405.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1509111552.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1509111558.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1610201436.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1610201441.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1612151848.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1612151859.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1701200227.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1701200234.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1701231856.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1701231905.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1701241625.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1701241632.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1702021808.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1702021830.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1702171350.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1702171357.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1703082230.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1703082236.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1703211803.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1703211810.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1705011305.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1705011311.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1705012100.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1705012106.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1706190853.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1706190857.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1706221015.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1706221021.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1706261413.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1706261418.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1707270653.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1708080809.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.88Z.F000.B00.1912181755.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.0000000000.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1202270953.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1202271034.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1202291153.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1202291238.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1203051006.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1203051042.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1203071033.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1203071113.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1203120956.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1203121224.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1203140948.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1203141013.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1203190958.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1203191021.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1203210943.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1203211019.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1203261015.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1203261043.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1203281127.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1203281326.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1204021116.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1204021155.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1204041150.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1204041235.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1204091153.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1204091337.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1204110950.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1204111029.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1204160951.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1204161036.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1204180957.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1204181043.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1204231011.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1204231041.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1204250940.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1204251024.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1204251115.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1204300950.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1204301018.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1205020944.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1205071045.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1205071106.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1205091022.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1205091101.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1205140950.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1205141037.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1205161033.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1205211031.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1205211107.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1205230946.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1205231024.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1205300954.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1205301025.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1206041016.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1206041047.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1206061023.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1206061101.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1206111004.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1206111035.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1206131004.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1206131232.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1206181001.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1206181022.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1206201017.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1206201046.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1206251011.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1206251049.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1206271005.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1206271037.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1207021029.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1207021055.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1207091007.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1207091352.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1207111001.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1207111359.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1207161014.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1207161047.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1207181029.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1207181056.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1207231047.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1207231118.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1207251017.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1207251055.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1207301044.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1207301122.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1208061024.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1208061129.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1208081006.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1208081549.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1208081616.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1208090843.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1208091051.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1208091120.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1208311607.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1208311636.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1210241012.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1210241108.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1211161109.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1211161128.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1211161133.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1408281415.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1408281420.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1408291452.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1408291502.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1411201142.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1411201220.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1411201232.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1501071209.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1501071215.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1506081208.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1506081215.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1509111646.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1509111653.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1509130950.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1509130955.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1610201905.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1610201915.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1612161124.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1612161130.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1701200120.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1701200127.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1701231749.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1701231754.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1701241525.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1701241530.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1702021808.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1702021830.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1702171350.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1702171357.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1703090651.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1703090657.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1703211803.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1703211810.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1705011305.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1705011311.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1706190947.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1706190954.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1706220440.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1706220445.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1706261821.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1706261827.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1707270836.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1708080805.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP111.88Z.F000.B00.1912181759.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP112.88Z.F000.B00.1912181609.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP114.88Z.F000.B00.1912161555.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP121.88Z.F000.B00.1912161438.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP131.88Z.F000.B00.1912161653.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP132.88Z.F000.B00.1912161510.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP133.88Z.F000.B00.1912161510.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP141.88Z.F000.B00.1912161654.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP142.88Z.F000.B00.1912161510.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP143.88Z.F000.B00.1912161510.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI1.88Z.0001.I00.0908281642.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI1.88Z.0001.I00.0909021206.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI1.88Z.0001.I00.0909091053.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI1.88Z.0001.I00.0909111151.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI1.88Z.0001.I00.0909111311.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI1.88Z.0001.I00.0909141531.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI1.88Z.0001.I00.0909141605.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI1.88Z.0001.I00.0909171006.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI1.88Z.0002.I00.0909231120.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI1.88Z.0002.I00.0909281404.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI1.88Z.0002.I00.0909281434.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI1.88Z.0002.I00.0910021021.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI1.88Z.0002.I00.0910021109.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI1.88Z.0002.I00.0910051536.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI1.88Z.0002.I00.0910051609.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI1.88Z.0002.I00.0910071112.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI1.88Z.0002.I00.0910071204.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI1.88Z.0002.I00.0910091045.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI1.88Z.0002.I00.0910091152.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI1.88Z.0002.I00.0910122219.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI1.88Z.0002.I00.0910141131.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI1.88Z.0002.I00.0910141146.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI1.88Z.0003.I00.0910191448.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI1.88Z.0003.I00.0910261502.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI1.88Z.0003.I00.0910261526.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI1.88Z.0003.I00.0911021519.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0004.I00.0911021455.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0004.I00.0911041106.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0004.I00.0911041225.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0004.I00.0911051851.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0004.I00.0911091623.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0004.I00.0911102030.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0004.I00.0911111320.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0004.I00.0911111458.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0004.I00.0911181055.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0004.I00.0911181122.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0004.I00.0911201450.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.0912041103.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.0912071334.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.0912071351.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.0912111222.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.0912111310.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.0912141534.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.0912141713.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.0912161112.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.0912181400.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.0912181429.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.0912221140.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.0912230907.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.0912231624.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1001041713.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1001061125.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1001061318.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1001111512.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1001111606.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1001130947.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1001131128.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1001151201.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1001151930.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1001181347.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1001201400.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1001221111.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1001251655.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1001300949.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1002031201.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1002081648.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1002101134.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1002121529.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1002171109.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1002171134.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1002191226.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1002191317.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1002221535.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1002221634.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1002261350.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1002261410.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1003011701.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1003012124.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1003040834.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1003101534.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1003121208.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1003151740.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1003191132.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1003241646.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1003311129.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1004071223.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1004141323.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1004141928.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1004161213.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1005120959.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1007091037.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1007261549.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1007270941.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1112091026.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1112091048.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1507212145.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1509232007.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1612201815.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1701210053.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1702172052.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1702241220.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1703211519.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1704250025.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1704281105.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1705021134.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1706170445.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1706220130.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1706261100.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1707241351.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1708072213.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0008.I00.1101140902.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0008.I00.1101150900.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0009.I00.1101180908.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0009.I00.1101190919.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0009.I00.1101200913.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0009.I00.1101210914.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0009.I00.1101220934.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0009.I00.1101230919.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0009.I00.1101240901.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0009.I00.1101250906.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0009.I00.1101260902.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0009.I00.1101270917.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0009.I00.1101280909.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0009.I00.1101290917.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0009.I00.1101310922.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP61.AAPLEFI2.88Z.0009.I00.1102030927.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0005.I00.1008041152.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0005.I00.1008091100.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0005.I00.1008091102.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0005.I00.1008121648.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0005.I00.1008181316.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0005.I00.1008231306.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0005.I00.1008301408.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0005.I00.1009011146.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0005.I00.1009011359.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0006.I00.1009081106.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0006.I00.1009081229.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0007.I00.1009131052.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0007.I00.1009131127.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0007.I00.1009151119.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0007.I00.1009201123.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0007.I00.1009231114.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0007.I00.1009271028.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0008.I00.1009291039.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0008.I00.1010020951.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0008.I00.1010041149.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0008.I00.1010050947.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0008.I00.1010051721.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0008.I00.1010090948.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0008.I00.1010111110.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1010130948.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1010131104.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1010170911.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1010181215.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1010200911.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1010200953.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1010220907.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1010270911.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1010290910.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1010291334.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1011020813.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1011021508.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1011050814.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1011051250.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1011100908.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1011101038.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1011110912.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1011121717.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1011160915.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1011210912.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1011220636.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1011290915.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1011291125.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1012010914.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1012011154.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1012020915.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1012050911.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1012080910.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1012081134.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1012120910.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1012131136.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1012150919.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1012151059.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1012170922.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1012171129.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1012190927.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1012201104.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1012250928.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1012271035.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1101010926.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1101031514.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1101050927.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1101051125.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1101070923.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I01.1101100926.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I01.1101101111.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I01.1101120928.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I01.1101121200.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I01.1101141645.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I01.1101141819.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I01.1101150923.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I01.1101151124.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I01.1101190937.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I01.1101191059.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I01.1101191814.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I01.1101210924.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I01.1101211514.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I01.1101220928.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I01.1101220928.1.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I01.1101230924.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I01.1101231134.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I01.1101282108.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I01.1102022358.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1102021106.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1102030931.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1102041819.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1102071705.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1103021059.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1103091154.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1103161348.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1103242113.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1103301200.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1104061123.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1104111855.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1104150725.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1104201033.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1104221555.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1107141149.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1107281122.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1108031501.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1108101818.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1108151745.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1108180842.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1108251704.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1108291539.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1109011021.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1109071116.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1109091242.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1109141951.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1109150518.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1109211336.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1109212241.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1109231544.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1109240018.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1109281425.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1110061632.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1110141128.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1110311250.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1201241644.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1404091743.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1411211557.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1506082157.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1509141026.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1510261534.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1610201932.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1612201423.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1701201815.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1702180125.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1703291134.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1704131704.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1704242025.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1704281723.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1705021652.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1705101322.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1706170647.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1706220747.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1706261917.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1707271211.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1708080651.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.88Z.F000.B00.1912181730.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0011.I00.1108101438.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0011.I00.1108151010.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0011.I00.1108151051.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0011.I00.1108151158.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0011.I00.1108151229.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0011.I00.1108171239.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0011.I00.1108171455.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0011.I00.1108182037.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0011.I00.1108221029.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0011.I00.1108240732.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0011.I00.1108240851.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0011.I00.1108290950.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0011.I00.1108291009.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0011.I00.1108311344.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0011.I00.1109011003.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0011.I00.1109071042.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0011.I00.1109120938.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1109141014.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1109141045.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1109190952.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1109191026.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1109211037.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1109211108.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1109260950.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1109271122.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1109271154.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1110031002.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1110031550.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1110031624.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1110050943.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1110051014.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1110100943.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1110101024.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1110121145.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1110121224.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1110170947.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1110201059.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1110211410.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1110211654.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1110260953.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1110270932.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1110271505.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1110271556.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1111020932.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1111021220.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1111070952.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1111071049.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1111091018.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1111091102.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1111141507.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1111171322.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1111280948.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1111281040.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1111301450.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1111301545.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1112051020.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1112051117.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1112051211.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1112070946.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1112071043.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1112121146.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1112121305.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1112140956.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1112141058.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1112201140.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1112201339.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1201041310.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1201041425.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1201062157.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1201062224.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1201120937.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1201121147.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1201121220.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1201160947.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1201161303.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1201161358.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1201181137.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1201181211.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1201230951.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1201231032.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1201250939.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1201251022.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1201301018.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1201301058.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1202011010.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1202011331.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1202061139.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1202061333.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1202081118.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1202081208.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.0000000000.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1202131043.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1202131135.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1202151049.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1202151130.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1202201117.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1202201259.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1202221013.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1202221148.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1202241139.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1202251052.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1202251119.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1202291148.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1202291207.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203051001.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203051023.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203071032.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203071112.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203081035.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203081110.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203091410.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203091712.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203120956.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203121154.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203131744.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203141235.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203141254.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203151822.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203151848.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203191245.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203191305.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203191306.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203191520.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203211509.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203211536.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203261014.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203261059.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203281126.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203281326.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1204181246.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1204181313.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1205041512.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1205041549.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1205101121.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1205101148.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1205101838.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1205101904.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1207271032.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1207271103.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1208081105.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1208081131.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1302061104.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1302061158.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1302061204.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1504291452.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1504291456.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1506081208.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1506081214.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1509111646.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1509111652.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1602221701.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1602221712.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1610201607.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1610201614.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1612161003.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1612161009.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1701200227.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1701200233.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1701231856.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1701231904.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1701241625.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1701241631.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1702021808.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1702021828.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1702171514.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1702171521.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1703082356.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1703090008.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1703221856.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1703221900.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1705011406.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1705011411.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1705012100.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1705012105.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1706182353.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1706182357.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1706221015.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1706221020.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1706261209.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1706261216.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1707270908.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1708080744.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1010170858.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1010200858.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1010230857.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1010270858.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1010290858.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1011020758.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1011050801.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1011100902.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1011110859.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1011160900.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1011210900.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1011290901.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1012010901.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1012020901.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1012050859.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1012080859.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1012081210.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1012120907.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1012131137.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1012150907.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1012151059.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1012190912.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1012201104.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1101010913.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1101031515.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1101050912.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1101051127.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000A.I00.1101100912.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000A.I00.1101101135.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000A.I00.1101120913.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000A.I00.1101121201.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000A.I00.1101140913.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000A.I00.1101150912.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000A.I00.1101171151.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000C.I00.1101190924.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000C.I00.1101191059.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000C.I00.1101200933.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000C.I00.1101210919.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000D.I00.1101220928.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000D.I00.1101230921.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000D.I00.1101240912.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000D.I00.1101241139.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000D.I00.1101250919.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000D.I00.1101260911.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000D.I00.1101261042.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000D.I00.1101270934.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000D.I00.1101280922.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000D.I00.1101290932.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000D.I00.1101310938.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000D.I00.1101311143.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000D.I00.1101311851.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000D.I00.1102030926.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1102091751.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1102141048.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1102161116.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1102211052.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1102231153.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1102251052.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1102281126.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1103021054.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1103070731.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1103091937.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1103161348.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1103211026.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1103211031.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1103231036.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1103281025.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1103281030.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1103301120.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1104041043.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1104061117.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1104061122.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1104131115.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1104181024.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1104181030.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1104201030.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1104251122.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1104271026.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I00.1105021032.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I00.1105050916.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I00.1105091028.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I00.1105111247.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I00.1105111400.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I00.1105160959.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I00.1105161031.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I00.1105181142.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I00.1105181211.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I00.1105231054.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I00.1105231132.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I00.1105251109.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I00.1105251142.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I00.1105271358.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I00.1105271441.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I00.1106011420.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I00.1106011454.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I00.1106061000.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I00.1106061029.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I01.1106081014.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I01.1106081046.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1106101105.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1106132213.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1106140816.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1106151001.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1106151037.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1106162146.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1106162216.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1106200956.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1106201202.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1106201233.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1106221510.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1106221623.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1106231540.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1106232231.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1106232352.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1106271223.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1106271442.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1107271705.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1107271736.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1108031123.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1108031344.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1108101016.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1108101049.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1108171238.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1108171440.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1108171509.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1108291522.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1108311547.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1109011011.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1109011050.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1109071213.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1109071242.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1109091159.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1109091225.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1109141942.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1109142033.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1109211406.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1109231610.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1110141153.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1110201308.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1201241544.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1201241549.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1506081722.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1506081728.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1509111552.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1509111558.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1510261804.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1606291827.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1610201607.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1610201614.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1612161003.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1612161009.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1701200227.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1701200234.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1701231856.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1701231905.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1702171514.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1702171522.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1702201321.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1702201326.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1703090219.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1703090225.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1703232120.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1703232137.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1704131531.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1704131536.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1705011209.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1705011214.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1706191359.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1706191403.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1706220614.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1706220620.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1706261432.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1706261437.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1707270909.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1708080744.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.88Z.F000.B00.1912181603.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0012.I00.1110171020.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0012.I00.1111020932.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0012.I00.1111070952.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0012.I00.1111091021.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1111141507.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1111171342.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1111280948.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1111281040.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1111301453.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1111301545.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1112051019.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1112051118.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1112051211.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1112070946.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1112071043.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1112121146.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1112121305.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1112141008.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1112141058.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1112201138.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1112201339.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1201041309.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1201041425.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1201090945.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1201091030.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1201120937.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1201121027.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1201161024.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1201161106.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1201181157.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1201181234.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1201230952.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1201231032.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1201251021.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1201251124.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1201301018.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1201301058.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1202011047.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1202011118.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1202061146.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1202061333.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1202061417.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1202081041.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1202081208.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.0000000000.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1202131131.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1202131211.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1202151012.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1202151052.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1202201143.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1202201301.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1202221015.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1202221149.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1202270953.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1202271033.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1202291155.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1202291238.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1203051026.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1203051102.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1203071107.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1203071145.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1203120956.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1203121259.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1203140947.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1203141013.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1203190958.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1203191021.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1203210941.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1203211019.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1203261016.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1203261059.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1203281127.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1203281326.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1204021117.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1204021140.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1204041151.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1204041213.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1204091153.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1204091337.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1204110951.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1204111207.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1204160951.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1204161014.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1204180957.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1204181043.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1204231017.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1204231109.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1204250940.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1204251024.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1204251115.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1204300952.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1204301036.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1205020951.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1205071045.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1205071121.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1205091022.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1205091101.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1205140949.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1205141019.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1205161032.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1205211031.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1205211108.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1205230945.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1205231023.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1205300954.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1205301024.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1206041016.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1206041047.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1206061023.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1206061101.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1206111004.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1206111035.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1206131004.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1206131035.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1206181001.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1206181044.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1206201018.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1206201059.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1206251011.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1206251049.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1206271007.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1206271104.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1207021029.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1207021115.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1207091006.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1207091352.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1207111001.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1207111359.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1207161014.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1207161047.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1207171148.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1207171406.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1207171438.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1207181033.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1207181110.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1207231047.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1207231118.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1207251016.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1207251054.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1207301044.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1207301122.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1208061023.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1208061129.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1208081006.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1208081548.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1208081616.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1208090842.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1208091051.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1208091120.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1211161109.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1211161132.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1211161202.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1309191428.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1309191433.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1506081208.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1506081214.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1506081359.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1506081405.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1507101017.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1507101043.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1509111646.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1509111653.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1610201648.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1610201653.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1612161124.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1612161130.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1701200120.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1701200126.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1701231856.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1701231907.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1701241625.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1701241632.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1702021808.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1702021830.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1702171714.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1702171720.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1703082356.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1703090009.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1703212034.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1703212039.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1705011508.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1705011514.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1706190947.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1706190954.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1706220458.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1706220503.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1706261209.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1706261217.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1707271000.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1708080649.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MM71.88Z.F000.B00.1912161438.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.88Z.F000.B00.1912181758.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1309251543.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1309251543.1.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1310011106.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1310021032.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1310041108.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1310071034.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1310091025.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1310091030.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1310141105.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1310161051.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1310211035.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1310231030.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1310281050.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1310301042.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1311011054.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1311020955.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1311211810.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1311222013.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1312061508.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1402141110.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1402141115.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1408281630.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1408281640.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1408291649.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1408291655.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1410131006.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1410131032.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1411050951.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1411051458.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1411131657.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1411131702.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1411141736.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1411141741.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1411201041.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1411201134.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1501071118.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1501071126.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1502131710.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1502131715.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1504291754.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1504291759.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1505141121.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1505141126.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1506050539.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1506050547.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1509081425.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1509081436.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1602221551.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1602221559.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1605171347.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1605171350.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1608231225.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1608231228.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1608261904.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1608261907.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1610051051.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1610051056.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1610201517.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1610201523.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1612151849.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1612151900.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1701131523.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1701131542.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1702021713.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1702021720.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1702171850.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1702171856.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1703090219.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1703090226.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1703231639.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1703231703.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1703281328.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1703281336.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1705011710.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1705011717.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1706200304.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1706200309.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1706221129.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1706221151.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1706261347.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1706261354.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1707271003.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.0000000000.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1310011106.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1310021032.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1310041108.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1310071034.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1310091025.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1310091030.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1310141105.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1310161051.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1310211035.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1310231030.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1310281050.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1310301042.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1311011054.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1311020955.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1311211810.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1311222013.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1312061508.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1402141110.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1402141115.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1408281630.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1408281640.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1408291649.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1408291655.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1410131027.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1410131032.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1411051453.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1411051458.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1411131657.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1411131702.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1411141736.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1411141741.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1411201128.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1411201134.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1501071118.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1501071126.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1502131710.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1502131715.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1504291754.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1504291759.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1505141121.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1505141126.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1506050539.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1506050547.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1509081425.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1509081436.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1602221551.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1602221559.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1610051051.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1610051056.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1610201517.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1610201523.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1612151849.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1612151900.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1701131523.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1701131542.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1702021713.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1702021720.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1702171850.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1702171856.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1703090219.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1703090226.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1703231639.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1703231703.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1703281328.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1703281336.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1705011710.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1705011717.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1706200304.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1706200309.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1706221129.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1706221151.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1706261347.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1706261354.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1708080652.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists"}, {"filename": "Contents", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization"}, {"filename": "Resources", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents"}, {"filename": "Dutch.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources"}, {"filename": "English.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources"}, {"filename": "French.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources"}, {"filename": "German.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources"}, {"filename": "Italian.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources"}, {"filename": "Japanese.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources"}, {"filename": "Spanish.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources"}, {"filename": "ar.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources"}, {"filename": "ca.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources"}, {"filename": "cs.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources"}, {"filename": "da.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources"}, {"filename": "el.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources"}, {"filename": "en_AU.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources"}, {"filename": "en_GB.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources"}, {"filename": "es_419.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources"}, {"filename": "fi.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources"}, {"filename": "fr_CA.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources"}, {"filename": "he.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources"}, {"filename": "hi.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources"}, {"filename": "hr.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources"}, {"filename": "hu.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources"}, {"filename": "id.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources"}, {"filename": "ko.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources"}, {"filename": "ms.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources"}, {"filename": "no.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources"}, {"filename": "pl.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources"}, {"filename": "pt.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources"}, {"filename": "pt_PT.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources"}, {"filename": "ro.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources"}, {"filename": "ru.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources"}, {"filename": "sk.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources"}, {"filename": "sv.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources"}, {"filename": "th.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources"}, {"filename": "tr.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources"}, {"filename": "uk.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources"}, {"filename": "vi.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources"}, {"filename": "zh_CN.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources"}, {"filename": "zh_HK.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources"}, {"filename": "zh_TW.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/Dutch.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/English.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/French.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/German.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/Italian.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/Japanese.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/Spanish.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/ar.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/ca.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/cs.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/da.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/el.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/en_AU.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/en_GB.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/es_419.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/fi.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/fr_CA.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/he.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/hi.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/hr.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/hu.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/id.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/ko.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/ms.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/no.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/pl.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/pt.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/pt_PT.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/ro.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/ru.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/sk.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/sv.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/th.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/tr.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/uk.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/vi.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/zh_CN.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/zh_HK.lproj"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/zh_TW.lproj"}, {"filename": "ethcheck", "parent": "/usr/libexec/firmwarecheckers/ethcheck"}, {"filename": "anvil", "parent": "/usr/libexec/postfix"}, {"filename": "bounce", "parent": "/usr/libexec/postfix"}, {"filename": "cleanup", "parent": "/usr/libexec/postfix"}, {"filename": "discard", "parent": "/usr/libexec/postfix"}, {"filename": "dnsblog", "parent": "/usr/libexec/postfix"}, {"filename": "error", "parent": "/usr/libexec/postfix"}, {"filename": "flush", "parent": "/usr/libexec/postfix"}, {"filename": "greylist.pl", "parent": "/usr/libexec/postfix"}, {"filename": "lmtp", "parent": "/usr/libexec/postfix"}, {"filename": "local", "parent": "/usr/libexec/postfix"}, {"filename": "master", "parent": "/usr/libexec/postfix"}, {"filename": "mk_postfix_spool.sh", "parent": "/usr/libexec/postfix"}, {"filename": "nqmgr", "parent": "/usr/libexec/postfix"}, {"filename": "oqmgr", "parent": "/usr/libexec/postfix"}, {"filename": "pickup", "parent": "/usr/libexec/postfix"}, {"filename": "pipe", "parent": "/usr/libexec/postfix"}, {"filename": "post-install", "parent": "/usr/libexec/postfix"}, {"filename": "postfix-script", "parent": "/usr/libexec/postfix"}, {"filename": "postfix-tls-script", "parent": "/usr/libexec/postfix"}, {"filename": "postfix-wrapper", "parent": "/usr/libexec/postfix"}, {"filename": "postfixsetup", "parent": "/usr/libexec/postfix"}, {"filename": "postmulti-script", "parent": "/usr/libexec/postfix"}, {"filename": "postscreen", "parent": "/usr/libexec/postfix"}, {"filename": "proxymap", "parent": "/usr/libexec/postfix"}, {"filename": "qmgr", "parent": "/usr/libexec/postfix"}, {"filename": "qmqp-sink", "parent": "/usr/libexec/postfix"}, {"filename": "qmqp-source", "parent": "/usr/libexec/postfix"}, {"filename": "qmqpd", "parent": "/usr/libexec/postfix"}, {"filename": "scache", "parent": "/usr/libexec/postfix"}, {"filename": "scripts", "parent": "/usr/libexec/postfix"}, {"filename": "set_credentials.sh", "parent": "/usr/libexec/postfix"}, {"filename": "showq", "parent": "/usr/libexec/postfix"}, {"filename": "smtp", "parent": "/usr/libexec/postfix"}, {"filename": "smtp-sink", "parent": "/usr/libexec/postfix"}, {"filename": "smtp-source", "parent": "/usr/libexec/postfix"}, {"filename": "smtpd", "parent": "/usr/libexec/postfix"}, {"filename": "spawn", "parent": "/usr/libexec/postfix"}, {"filename": "tlsmgr", "parent": "/usr/libexec/postfix"}, {"filename": "tlsproxy", "parent": "/usr/libexec/postfix"}, {"filename": "trivial-rewrite", "parent": "/usr/libexec/postfix"}, {"filename": "verify", "parent": "/usr/libexec/postfix"}, {"filename": "virtual", "parent": "/usr/libexec/postfix"}, {"filename": "Kurl.bundle", "parent": "/usr/libexec/wfs"}, {"filename": "webdavsharing_mapper", "parent": "/usr/libexec/wfs"}, {"filename": "webdavsharing_virtual_root", "parent": "/usr/libexec/wfs"}, {"filename": "Caskroom", "parent": "/usr/local"}, {"filename": "Cellar", "parent": "/usr/local"}, {"filename": "Frameworks", "parent": "/usr/local"}, {"filename": "Homebrew", "parent": "/usr/local"}, {"filename": "LANDesk", "parent": "/usr/local"}, {"filename": "bin", "parent": "/usr/local"}, {"filename": "etc", "parent": "/usr/local"}, {"filename": "ibmcloud", "parent": "/usr/local"}, {"filename": "include", "parent": "/usr/local"}, {"filename": "jamf", "parent": "/usr/local"}, {"filename": "lib", "parent": "/usr/local"}, {"filename": "opt", "parent": "/usr/local"}, {"filename": "sbin", "parent": "/usr/local"}, {"filename": "share", "parent": "/usr/local"}, {"filename": "var", "parent": "/usr/local"}, {"filename": "cdrtools", "parent": "/usr/local/Cellar"}, {"filename": "freetype", "parent": "/usr/local/Cellar"}, {"filename": "gdbm", "parent": "/usr/local/Cellar"}, {"filename": "gettext", "parent": "/usr/local/Cellar"}, {"filename": "glib", "parent": "/usr/local/Cellar"}, {"filename": "helm", "parent": "/usr/local/Cellar"}, {"filename": "ilmbase", "parent": "/usr/local/Cellar"}, {"filename": "imagemagick", "parent": "/usr/local/Cellar"}, {"filename": "jpeg", "parent": "/usr/local/Cellar"}, {"filename": "jq", "parent": "/usr/local/Cellar"}, {"filename": "kubernetes-helm", "parent": "/usr/local/Cellar"}, {"filename": "libde265", "parent": "/usr/local/Cellar"}, {"filename": "libffi", "parent": "/usr/local/Cellar"}, {"filename": "libheif", "parent": "/usr/local/Cellar"}, {"filename": "libomp", "parent": "/usr/local/Cellar"}, {"filename": "libpng", "parent": "/usr/local/Cellar"}, {"filename": "libtiff", "parent": "/usr/local/Cellar"}, {"filename": "libtool", "parent": "/usr/local/Cellar"}, {"filename": "little-cms2", "parent": "/usr/local/Cellar"}, {"filename": "nmap", "parent": "/usr/local/Cellar"}, {"filename": "oniguruma", "parent": "/usr/local/Cellar"}, {"filename": "openexr", "parent": "/usr/local/Cellar"}, {"filename": "openjpeg", "parent": "/usr/local/Cellar"}, {"filename": "openssl", "parent": "/usr/local/Cellar"}, {"filename": "openssl@1.1", "parent": "/usr/local/Cellar"}, {"filename": "pcre", "parent": "/usr/local/Cellar"}, {"filename": "picocom", "parent": "/usr/local/Cellar"}, {"filename": "python", "parent": "/usr/local/Cellar"}, {"filename": "readline", "parent": "/usr/local/Cellar"}, {"filename": "shared-mime-info", "parent": "/usr/local/Cellar"}, {"filename": "socat", "parent": "/usr/local/Cellar"}, {"filename": "sqlite", "parent": "/usr/local/Cellar"}, {"filename": "ttygif", "parent": "/usr/local/Cellar"}, {"filename": "ttyrec", "parent": "/usr/local/Cellar"}, {"filename": "webp", "parent": "/usr/local/Cellar"}, {"filename": "x265", "parent": "/usr/local/Cellar"}, {"filename": "xz", "parent": "/usr/local/Cellar"}, {"filename": "3.01_1", "parent": "/usr/local/Cellar/cdrtools"}, {"filename": "ABOUT", "parent": "/usr/local/Cellar/cdrtools/3.01_1"}, {"filename": "COPYING", "parent": "/usr/local/Cellar/cdrtools/3.01_1"}, {"filename": "Changelog", "parent": "/usr/local/Cellar/cdrtools/3.01_1"}, {"filename": "INSTALL_RECEIPT.json", "parent": "/usr/local/Cellar/cdrtools/3.01_1"}, {"filename": "README", "parent": "/usr/local/Cellar/cdrtools/3.01_1"}, {"filename": "bin", "parent": "/usr/local/Cellar/cdrtools/3.01_1"}, {"filename": "etc", "parent": "/usr/local/Cellar/cdrtools/3.01_1"}, {"filename": "include", "parent": "/usr/local/Cellar/cdrtools/3.01_1"}, {"filename": "lib", "parent": "/usr/local/Cellar/cdrtools/3.01_1"}, {"filename": "sbin", "parent": "/usr/local/Cellar/cdrtools/3.01_1"}, {"filename": "share", "parent": "/usr/local/Cellar/cdrtools/3.01_1"}, {"filename": "btcflash", "parent": "/usr/local/Cellar/cdrtools/3.01_1/bin"}, {"filename": "cdda2mp3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/bin"}, {"filename": "cdda2ogg", "parent": "/usr/local/Cellar/cdrtools/3.01_1/bin"}, {"filename": "cdda2wav", "parent": "/usr/local/Cellar/cdrtools/3.01_1/bin"}, {"filename": "cdrecord", "parent": "/usr/local/Cellar/cdrtools/3.01_1/bin"}, {"filename": "devdump", "parent": "/usr/local/Cellar/cdrtools/3.01_1/bin"}, {"filename": "isodebug", "parent": "/usr/local/Cellar/cdrtools/3.01_1/bin"}, {"filename": "isodump", "parent": "/usr/local/Cellar/cdrtools/3.01_1/bin"}, {"filename": "isoinfo", "parent": "/usr/local/Cellar/cdrtools/3.01_1/bin"}, {"filename": "isovfy", "parent": "/usr/local/Cellar/cdrtools/3.01_1/bin"}, {"filename": "mkhybrid", "parent": "/usr/local/Cellar/cdrtools/3.01_1/bin"}, {"filename": "mkisofs", "parent": "/usr/local/Cellar/cdrtools/3.01_1/bin"}, {"filename": "readcd", "parent": "/usr/local/Cellar/cdrtools/3.01_1/bin"}, {"filename": "scgcheck", "parent": "/usr/local/Cellar/cdrtools/3.01_1/bin"}, {"filename": "scgskeleton", "parent": "/usr/local/Cellar/cdrtools/3.01_1/bin"}, {"filename": "default", "parent": "/usr/local/Cellar/cdrtools/3.01_1/etc"}, {"filename": "cdrecord", "parent": "/usr/local/Cellar/cdrtools/3.01_1/etc/default"}, {"filename": "rscsi", "parent": "/usr/local/Cellar/cdrtools/3.01_1/etc/default"}, {"filename": "scg", "parent": "/usr/local/Cellar/cdrtools/3.01_1/include"}, {"filename": "aspi-dos.h", "parent": "/usr/local/Cellar/cdrtools/3.01_1/include/scg"}, {"filename": "aspi-win32.h", "parent": "/usr/local/Cellar/cdrtools/3.01_1/include/scg"}, {"filename": "scgcmd.h", "parent": "/usr/local/Cellar/cdrtools/3.01_1/include/scg"}, {"filename": "scgio.h", "parent": "/usr/local/Cellar/cdrtools/3.01_1/include/scg"}, {"filename": "scgops.h", "parent": "/usr/local/Cellar/cdrtools/3.01_1/include/scg"}, {"filename": "scsicdb.h", "parent": "/usr/local/Cellar/cdrtools/3.01_1/include/scg"}, {"filename": "scsidefs.h", "parent": "/usr/local/Cellar/cdrtools/3.01_1/include/scg"}, {"filename": "scsireg.h", "parent": "/usr/local/Cellar/cdrtools/3.01_1/include/scg"}, {"filename": "scsisense.h", "parent": "/usr/local/Cellar/cdrtools/3.01_1/include/scg"}, {"filename": "scsitransp.h", "parent": "/usr/local/Cellar/cdrtools/3.01_1/include/scg"}, {"filename": "spti-wnt.h", "parent": "/usr/local/Cellar/cdrtools/3.01_1/include/scg"}, {"filename": "srb_os2.h", "parent": "/usr/local/Cellar/cdrtools/3.01_1/include/scg"}, {"filename": "libcdrdeflt.a", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib"}, {"filename": "libedc_ecc.a", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib"}, {"filename": "libedc_ecc_dec.a", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib"}, {"filename": "libfile.a", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib"}, {"filename": "libhfs.a", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib"}, {"filename": "libmdigest.a", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib"}, {"filename": "libparanoia.a", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib"}, {"filename": "librscg.a", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib"}, {"filename": "libscg.a", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib"}, {"filename": "libscgcmd.a", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib"}, {"filename": "libsiconv.a", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib"}, {"filename": "siconv", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib"}, {"filename": "cp10000", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "cp10006", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "cp10007", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "cp10029", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "cp10079", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "cp10081", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "cp1250", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "cp1251", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "cp1252", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "cp1253", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "cp1254", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "cp1255", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "cp1256", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "cp1257", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "cp1258", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "cp437", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "cp737", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "cp775", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "cp850", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "cp852", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "cp855", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "cp857", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "cp860", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "cp861", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "cp862", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "cp863", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "cp864", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "cp865", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "cp866", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "cp869", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "cp874", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "iso8859-1", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "iso8859-10", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "iso8859-11", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "iso8859-13", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "iso8859-14", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "iso8859-15", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "iso8859-16", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "iso8859-2", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "iso8859-3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "iso8859-4", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "iso8859-5", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "iso8859-6", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "iso8859-7", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "iso8859-8", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "iso8859-9", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "koi8-r", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "koi8-u", "parent": "/usr/local/Cellar/cdrtools/3.01_1/lib/siconv"}, {"filename": "rscsi", "parent": "/usr/local/Cellar/cdrtools/3.01_1/sbin"}, {"filename": "doc", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share"}, {"filename": "man", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share"}, {"filename": "cdda2wav", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc"}, {"filename": "cdrecord", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc"}, {"filename": "libparanoia", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc"}, {"filename": "mkisofs", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc"}, {"filename": "rscsi", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc"}, {"filename": "README", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/cdda2wav"}, {"filename": "README", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/cdrecord"}, {"filename": "README.ATAPI", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/cdrecord"}, {"filename": "README.DiskT@2", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/cdrecord"}, {"filename": "README.WORM", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/cdrecord"}, {"filename": "README.audio", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/cdrecord"}, {"filename": "README.cdplus", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/cdrecord"}, {"filename": "README.cdrw", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/cdrecord"}, {"filename": "README.cdtext", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/cdrecord"}, {"filename": "README.clone", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/cdrecord"}, {"filename": "README.copy", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/cdrecord"}, {"filename": "README.multi", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/cdrecord"}, {"filename": "README.parallel", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/cdrecord"}, {"filename": "README.raw", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/cdrecord"}, {"filename": "README.rscsi", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/cdrecord"}, {"filename": "README.solaris-x86-ATAPI-DMA", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/cdrecord"}, {"filename": "README.solaris-x86-ata-DMA", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/cdrecord"}, {"filename": "README.sony", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/cdrecord"}, {"filename": "README.sun-lofi", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/cdrecord"}, {"filename": "README.verify", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/cdrecord"}, {"filename": "README.volmgt", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/cdrecord"}, {"filename": "README.interface", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/libparanoia"}, {"filename": "README.paranoia", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/libparanoia"}, {"filename": "README", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/mkisofs"}, {"filename": "README.compression", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/mkisofs"}, {"filename": "README.eltorito", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/mkisofs"}, {"filename": "README.graft_dirs", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/mkisofs"}, {"filename": "README.hfs_boot", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/mkisofs"}, {"filename": "README.hfs_magic", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/mkisofs"}, {"filename": "README.hide", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/mkisofs"}, {"filename": "README.joliet", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/mkisofs"}, {"filename": "README.macosx", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/mkisofs"}, {"filename": "README.mkhybrid", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/mkisofs"}, {"filename": "README.prep_boot", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/mkisofs"}, {"filename": "README.rootinfo", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/mkisofs"}, {"filename": "README.session", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/mkisofs"}, {"filename": "README.sort", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/mkisofs"}, {"filename": "README.sparcboot", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/mkisofs"}, {"filename": "README.sunx86boot", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/mkisofs"}, {"filename": "default-rscsi.sample", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/doc/rscsi"}, {"filename": "man1", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man"}, {"filename": "man3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man"}, {"filename": "man8", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man"}, {"filename": "btcflash.1", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man1"}, {"filename": "cdda2mp3.1", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man1"}, {"filename": "cdda2ogg.1", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man1"}, {"filename": "cdda2wav.1", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man1"}, {"filename": "cdrecord.1", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man1"}, {"filename": "readcd.1", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man1"}, {"filename": "rscsi.1", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man1"}, {"filename": "scgcheck.1", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man1"}, {"filename": "scgskeleton.1", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man1"}, {"filename": "absfpath.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "absnpath.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "abspath.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "astoi.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "astol.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "breakline.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "comerr.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "comerrno.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "errmsg.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "errmsgno.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "error.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "fdown.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "fdup.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "fexecl.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "fexecle.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "fexecv.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "fexecve.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "fgetline.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "file_raise.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "fileclose.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "fileluopen.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "fileopen.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "filepos.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "fileread.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "filereopen.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "fileseek.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "filesize.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "filestat.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "filewrite.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "findline.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "flush.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "fnmatch.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "format.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "fpipe.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "fprintf.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "getallargs.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "getargs.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "geterrno.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "getfiles.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "getline.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "handlecond.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "movebytes.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "ofindline.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "patcompile.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "patmatch.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "peekc.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "printf.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "raisecond.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "resolvefpath.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "resolvenpath.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "resolvepath.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "spawnl.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "spawnv.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "sprintf.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "strcatl.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "streql.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}, {"filename": "strlen.3", "parent": "/usr/local/Cellar/cdrtools/3.01_1/share/man/man3"}] jc-1.17.3/tests/fixtures/osx-10.14.6/ls-R.out000066400000000000000000004052331415226333200202060ustar00rootroot00000000000000bin lib libexec local sbin share standalone /usr/bin: 2to3- 2to3-2.7 AssetCacheLocatorUtil AssetCacheManagerUtil AssetCacheTetheratorUtil BuildStrings CpMac DeRez GetFileInfo IOAccelMemory MergePef MvMac ResMerger Rez RezDet RezWack SafeEjectGPU SetFile SplitForks UnRezWack a2p a2p5.18 actool addftinfo afclip afconvert afhash afida afinfo afmtodit afplay afscexpand agentxtrap agvtool alias applesingle appletviewer apply apropos apt ar arch as asa asctl assetutil at atos atq atrm atsutil automator auval auvaltool avbdiagnose avbutil avconvert avmetareadwrite awk banner base64 basename bashbug batch bc bg biff binhex binhex.pl binhex5.18.pl bioutil bison bitesize.d brctl bsdtar bspatch btmmdiagnose bunzip2 bzcat bzcmp bzdiff bzegrep bzfgrep bzgrep bzip2 bzip2recover bzless bzmore c++ c++filt c2ph c2ph5.18 c89 c99 caffeinate cal calendar cancel cap_mkdb captoinfo cc cd certtool checknr chflags chfn chgrp chpass chsh cksum clang clang++ clear cmp cmpdylib codesign codesign_allocate col colcrt colldef colrm column comm command compress compression_tool config_data config_data5.18 corebrightnessdiag corelist corelist5.18 cpan cpan2dist cpan2dist5.18 cpan5.18 cpanp cpanp-run-perl cpanp-run-perl5.18 cpanp5.18 cpio cpp cpu_profiler.d cpuwalk.d crc32 crc325.18 creatbyproc.d crlrefresh crontab csdiagnose csgather csplit csreq csrutil ctags ctf_insert cu cups-config cupstestdsc cupstestppd curl curl-config cut cvaffinity cvcp cvmkdir cvmkfile dappprof dapptrace darwinup db_archive db_checkpoint db_codegen db_deadlock db_dump db_hotbackup db_load db_printlog db_recover db_stat db_upgrade db_verify dbicadmin dbicadmin5.18 dbilogstrip dbilogstrip5.18 dbiprof dbiprof5.18 dbiproxy dbiproxy5.18 dc debinhex.pl debinhex5.18.pl defaults delv desdp diagnose-fu diff diff3 diffstat dig dirname dispqlen.d ditto dmc dns-sd drutil dscacheutil dscl dserr dsexport dsimport dsmemberutil dsymutil dtruss du dwarfdump easy_install easy_install-2.7 egrep emacs emacs-undumped emacsclient enc2xs enc2xs5.18 encode_keychange env eqn erb errinfo etags ex execsnoop expand expect extcheck eyapp eyapp5.18 false fc fddist fdesetup fg fgrep file filebyproc.d filtercalltree find find2perl find2perl5.18 findrule findrule5.18 finger fixproc flex flex++ fmt fold fontrestore footprint format-sql format-sql5.18 from fs_usage funzip fuser fwkdp fwkpfv g++ gatherheaderdoc gcc gcore gcov gdiffmk gem gen_bridge_metadata gencat genstrings getconf getopt getopts git git-cvsserver git-receive-pack git-shell git-upload-archive git-upload-pack gm4 gnumake gperf grep grn grodvi groff groffer grog grolbp grolj4 grops grotty groups gunzip gzcat gzexe gzip h2ph h2ph5.18 h2xs h2xs5.18 hash hdid hdiutil hdxml2manxml head headerdoc2html heap heap32 hexdump hidutil hiutil host hostinfo hotspot.d hpftodit hpmdiagnose htmltree htmltree5.18 ibtool iconutil iconv ictool id idle idle2.7 idlj imptrace indent indxbib info infocmp infokey infotocap install install-info install_name_tool instmodsh instmodsh5.18 instruments iofile.d iofileb.d iopattern iopending iosnoop iotop ip2cc ip2cc5.18 ipcount ipcount5.18 ipcrm ipcs ippfind ipptool iprofiler iptab iptab5.18 irb jar jarsigner java javac javadoc javah javap javapackager javaws jcmd jconsole jcontrol jdb jdeps jhat jhsdb jimage jinfo jjs jmap jmc jobs join jot jps jrunscript jsadebugd jshell json_pp json_pp5.18 jstack jstat jstatd jvisualvm kcc kdestroy kextutil keytool kgetcred kill.d killall kinit klist kpasswd krb5-config kswitch ktrace lam last lastcomm lastwords latency layerutil ld ldapadd ldapcompare ldapdelete ldapexop ldapmodify ldapmodrdn ldappasswd ldapsearch ldapurl ldapwhoami leaks leaks32 leave less lessecho lex libnetcfg libnetcfg5.18 libtool lipo lkbib lldb llvm-g++ llvm-gcc loads.d locale localedef locate lockstat log logger login logname look lookbib lorder lp lpoptions lpq lpr lprm lpstat lsappinfo lsbom lskq lsm lsmp lsvfs lwp-download lwp-download5.18 lwp-dump lwp-dump5.18 lwp-mirror lwp-mirror5.18 lwp-request lwp-request5.18 m4 macbinary macerror macerror5.18 machine mail mailq mailx make makeinfo malloc_history malloc_history32 man manpath mcxquery mcxrefresh mddiagnose mdfind mdimport mdls mdutil memory_pressure mesg mib2c mib2c-update mig mkbom mkdep mkfifo mklocale mktemp mmroff mnthome moo-outdated moo-outdated5.18 moose-outdated moose-outdated5.18 more mp2bug msgs nano nasm native2ascii nbdst nc ncal ncctl ncdestroy ncinit nclist ncurses5.4-config ndisasm neqn net-server net-server5.18 net-snmp-cert net-snmp-config net-snmp-create-v3-user nettop newaliases newgrp newproc.d nfsstat nice nl nm nmedit nohup notifyutil nroff nscurl nslookup nsupdate objdump ocspcheck od odutil open opendiff opensnoop openssl orbd osacompile osadecompile osalang osascript otool pack200 package-stash-conflicts package-stash-conflicts5.18 pagesize pagestuff par.pl par5.18.pl parl parl5.18 parldyn parldyn5.18 passwd paste patch pathchk pathopens.d pbcopy pbpaste pcap-config pcsctest perl perl5.18 perlbug perlbug5.18 perldoc perldoc5.18 perlivp perlivp5.18 perlthanks perlthanks5.18 pfbtops pgrep phar phar.phar php php-config phpize pic pico piconv piconv5.18 pidpersec.d pkgbuild pkill pl pl2pm pl2pm5.18 plockstat pluginkit plutil pmset pod2html pod2html5.18 pod2latex pod2latex5.18 pod2man pod2man5.18 pod2readme pod2readme5.18 pod2text pod2text5.18 pod2usage pod2usage5.18 podchecker podchecker5.18 podselect podselect5.18 policytool post-grohtml power_report.sh powermetrics pp pp5.18 ppdc ppdhtml ppdi ppdmerge ppdpo pr pre-grohtml priclass.d pridist.d printenv printf procsystime productbuild productsign profiles prove prove5.18 psed psed5.18 pstopdf pstruct pstruct5.18 ptar ptar5.18 ptardiff ptardiff5.18 ptargrep ptargrep5.18 pubsub pwhich pwhich5.18 pwpolicy pydoc pydoc2.7 python python-config python2.7 python2.7-config pythonw pythonw2.7 qc2movie qlmanage qtdefaults qtmodernizer quota rails rake ranlib rdoc read readlink rebase redo_prebinding refer renice reset resolveLinks rev ri rmic rmid rmiregistry rpcgen rs rsync ruby rview rvim rwbypid.d rwbytype.d rwsnoop s2p s2p5.18 safaridriver sample sampleproc sandbox-exec say sc_usage scandeps.pl scandeps5.18.pl schemagen scp screen script sdef sdiff sdp sdx security sed seeksize.d segedit seq serialver servertool setregion setuids.d sfltool sftp shar shasum shasum5.18 shlock showmount sigdist.d sips size slogin smbutil smtpd.py smtpd2.7.py snfsdefrag snmp-bridge-mib snmpbulkget snmpbulkwalk snmpconf snmpdelta snmpdf snmpget snmpgetnext snmpinform snmpnetstat snmpset snmpstatus snmptable snmptest snmptranslate snmptrap snmpusm snmpvacm snmpwalk sntp soelim sort spfd spfd5.18 spfquery spfquery5.18 splain splain5.18 split sqlite3 ssh ssh-add ssh-agent ssh-copy-id ssh-keygen ssh-keyscan stapler stat stringdups stringdups32 strings strip stty.pl stty5.18.pl su sudo sum svn svnadmin svndumpfilter svnlook svnserve svnsync svnversion sw_vers swift swiftc symbols symbolscache syscallbypid.d syscallbyproc.d syscallbysysc.d sysdiagnose syslog systriage tab2space tabs tail tailspin talk tar taskinfo tbl tbtdiagnose tccutil tclsh tclsh8.5 tee texi2dvi texi2pdf texindex textutil tfmtodit tftp thermal tic tidy tiff2icns tiffutil time timer_analyser.d timerfires tkcon tkmib tkpp tkpp5.18 tmdiagnose tmutil tnameserv toe top tops topsyscall topsysproc touch tput tr trace traptoemail treereg treereg5.18 trimforce troff true tset tsort tty type ul ulimit umask unalias uname uncompress unexpand unifdef unifdefall uniq units unpack200 unvis unzip unzipsfx update_dyld_shared_cache uptime usbkdp users uucp uudecode uuencode uuidgen uulog uuname uupick uustat uuto uux vi view vim vimdiff vimtutor vis vm_stat vmmap vmmap32 w wait wall wc wdutil what whatis whereis which who whoami whois wish wish8.5 write wsgen wsimport xar xargs xattr xattr-2.7 xcode-select xcodebuild xcrun xcscontrol xcsdiagnose xed xgettext.pl xgettext5.18.pl xip xjc xml2-config xml2man xmlcatalog xmllint xpath xpath5.18 xslt-config xsltproc xsubpp xsubpp5.18 xxd yaa yacc yes zcat zcmp zdiff zegrep zfgrep zforce zgrep zip zipcloak zipdetails zipdetails5.18 zipgrep zipinfo zipnote zipsplit zless zmore znew zprint /usr/lib: ACIPCBTLib.dylib AppleConvergedTransport.dylib PN548.dylib PN548_API.dylib PN548_HAL.dylib charset.alias cron dtrace dyld groff libATCommandStudioDynamic.dylib libAccessibility.dylib libAccountPolicyTranslation.dylib libAppleSSEExt.dylib libAppletTranslationLibrary.dylib libAudioIssueDetector.dylib libAudioStatistics.dylib libBSDPClient.A.dylib libBSDPClient.dylib libCRFSuite.dylib libCRFSuite0.12.dylib libCTGreenTeaLogger.dylib libChineseTokenizer.dylib libCoreStorage.dylib libDHCPServer.A.dylib libDHCPServer.dylib libDiagnosticMessagesClient.dylib libFDR_osx.dylib libFosl_dynamic.dylib libIASAuthReboot.dylib libIASUnifiedProgress.dylib libMatch.1.dylib libMatch.dylib libMaxEnt.dylib libMemoryResourceException.dylib libMobileGestalt.dylib libOpenScriptingUtil.dylib libParallelCompression.dylib libQMIParserDynamic.dylib libSMC.dylib libScreenReader.dylib libSystem.B.dylib libSystem.dylib libTelephonyUtilDynamic.dylib libThaiTokenizer.dylib libUniversalAccess.dylib libXSEvent.dylib libXplugin.1.dylib libXplugin.dylib libapple_nghttp2.dylib libapr-1.0.dylib libapr-1.dylib libaprutil-1.0.dylib libaprutil-1.dylib libarchive.2.dylib libarchive.dylib libate.dylib libauditd.0.dylib libauditd.dylib libauto.dylib libblas.dylib libboringssl.dylib libbsm.0.dylib libbsm.dylib libbz2.1.0.5.dylib libbz2.1.0.dylib libbz2.dylib libc++.1.dylib libc++.dylib libc++abi.dylib libc.dylib libcblas.dylib libcharset.1.0.0.dylib libcharset.1.dylib libcharset.dylib libclapack.dylib libcmph.dylib libcom_err.dylib libcompression.dylib libcoreroutine.dylib libcoretls.dylib libcoretls_cfhelpers.dylib libcrypto.0.9.7.dylib libcrypto.0.9.8.dylib libcrypto.35.dylib libcrypto.41.dylib libcrypto.42.dylib libcrypto.dylib libcsfde.dylib libcupolicy.dylib libcups.2.dylib libcups.dylib libcupscgi.1.dylib libcupscgi.dylib libcupsimage.2.dylib libcupsimage.dylib libcupsmime.1.dylib libcupsmime.dylib libcupsppdc.1.dylib libcupsppdc.dylib libcurl.3.dylib libcurl.4.dylib libcurl.dylib libcurses.dylib libdbm.dylib libdes425.dylib libdl.dylib libdns_services.dylib libdscsym.dylib libdtrace.dylib libdz.dylib libeasyperf.dylib libecpg.6.5.dylib libecpg.6.dylib libecpg.dylib libecpg_compat.3.5.dylib libecpg_compat.3.dylib libecpg_compat.dylib libedit.2.dylib libedit.3.0.dylib libedit.3.dylib libedit.dylib libenergytrace.dylib libexpat.1.dylib libexpat.dylib libexslt.0.dylib libexslt.dylib libextension.dylib libf77lapack.dylib libffi.dylib libform.5.4.dylib libform.dylib libgcc_s.1.dylib libgermantok.dylib libgmalloc.dylib libgssapi_krb5.dylib libheimdal-asn1.dylib libhunspell-1.2.0.0.0.dylib libhunspell-1.2.0.dylib libhunspell-1.2.dylib libiconv.2.4.0.dylib libiconv.2.dylib libiconv.dylib libicucore.A.dylib libicucore.dylib libinfo.dylib libiodbc.2.1.18.dylib libiodbc.2.dylib libiodbc.dylib libiodbcinst.2.1.18.dylib libiodbcinst.2.dylib libiodbcinst.dylib libipconfig.dylib libipsec.A.dylib libipsec.dylib libk5crypto.dylib libkrb4.dylib libkrb5.dylib libkrb524.dylib libkrb5support.dylib libktrace.dylib liblangid.dylib liblapack.dylib liblber.dylib libldap.dylib libldap_r.dylib liblzma.5.dylib liblzma.dylib libm.dylib libmarisa.dylib libmecab.1.0.0.dylib libmecab.dylib libmecabra.dylib libmenu.5.4.dylib libmenu.dylib libmx.A.dylib libmx.dylib libncurses.5.4.dylib libncurses.5.dylib libncurses.dylib libnetsnmp.15.1.2.dylib libnetsnmp.15.dylib libnetsnmp.25.dylib libnetsnmp.5.2.1.dylib libnetsnmp.5.dylib libnetsnmp.dylib libnetsnmpagent.25.dylib libnetsnmpagent.dylib libnetsnmphelpers.25.dylib libnetsnmphelpers.dylib libnetsnmpmibs.25.dylib libnetsnmpmibs.dylib libnetsnmptrapd.25.dylib libnetsnmptrapd.dylib libnetwork.dylib libnetworkextension.dylib libnfrestore.dylib libnfshared.dylib libobjc-trampolines.dylib libobjc.A.dylib libobjc.dylib libodfde.dylib libodmodule.dylib libpam.1.dylib libpam.2.dylib libpam.dylib libpanel.5.4.dylib libpanel.dylib libpcap.A.dylib libpcap.dylib libpcre.0.dylib libpcre.dylib libpcreposix.0.dylib libpcreposix.dylib libperfcheck.dylib libpgtypes.3.4.dylib libpgtypes.3.dylib libpgtypes.dylib libpmenergy.dylib libpmsample.dylib libpoll.dylib libpq.5.6.dylib libpq.5.dylib libpq.dylib libprequelite.dylib libproc.dylib libpthread.dylib libpython.dylib libpython2.7.dylib libquic.dylib libquit.dylib libreadline.dylib libresolv.9.dylib libresolv.dylib librpcsvc.dylib libruby.2.3.0.dylib libruby.2.3.dylib libruby.dylib libsandbox.1.dylib libsandbox.dylib libsasl2.2.0.1.dylib libsasl2.2.0.15.dylib libsasl2.2.0.21.dylib libsasl2.2.0.22.dylib libsasl2.2.dylib libsasl2.dylib libspindump.dylib libsqlite3.0.dylib libsqlite3.dylib libssl.0.9.7.dylib libssl.0.9.8.dylib libssl.35.dylib libssl.43.dylib libssl.44.dylib libssl.dylib libstdc++.6.0.9.dylib libstdc++.6.dylib libstdc++.dylib libsysdiagnose.dylib libsysmon.dylib libsystemstats.dylib libtailspin.dylib libtcl.dylib libtcl8.5.dylib libtermcap.dylib libtidy.A.dylib libtidy.dylib libtk.dylib libtk8.5.dylib libtls.15.dylib libtls.16.dylib libtls.6.dylib libtls.dylib libtzupdate.dylib libusrtcp.dylib libutil.dylib libutil1.0.dylib libxar.1.dylib libxar.dylib libxcselect.dylib libxml2.2.dylib libxml2.dylib libxslt.1.dylib libxslt.dylib libz.1.1.3.dylib libz.1.2.11.dylib libz.1.2.5.dylib libz.1.2.8.dylib libz.1.dylib libz.dylib log pam php pkgconfig python2.7 rpcsvc ruby sasl2 sqlite3 ssh-keychain.dylib swift system xpc zsh /usr/lib/dtrace: darwin.d dt_cpp.h errno.d io.d ip.d regs_x86_64.d sched.d signal.d socket.d tcp.d unistd.d /usr/lib/groff: groffer site-tmac /usr/lib/groff/groffer: groffer2.sh /usr/lib/groff/site-tmac: /usr/lib/log: liblog_AppStoreDaemon.dylib liblog_AppleLDAPTypes.dylib liblog_SystemConfiguration.dylib liblog_audio.dylib liblog_coreacc.dylib liblog_geo.dylib liblog_location.dylib liblog_network.dylib liblog_odtypes.dylib liblog_signpost.description.dylib liblog_signpost.dylib liblog_signpost.telemetry.dylib /usr/lib/pam: pam_aks.so.2 pam_deny.so.2 pam_env.so.2 pam_group.so.2 pam_krb5.so.2 pam_launchd.so.2 pam_localauthentication.so.2 pam_mount.so.2 pam_nologin.so.2 pam_ntlm.so.2 pam_opendirectory.so.2 pam_permit.so.2 pam_rootok.so.2 pam_sacl.so.2 pam_self.so.2 pam_smartcard.so.2 pam_tid.so.2 pam_uwtmp.so.2 /usr/lib/php: build extensions /usr/lib/php/build: Makefile.global acinclude.m4 ax_check_compile_flag.m4 config.guess config.sub libtool.m4 ltmain.sh mkdep.awk phpize.m4 run-tests.php scan_makefile_in.awk shtool /usr/lib/php/extensions: no-debug-non-zts-20160303 /usr/lib/php/extensions/no-debug-non-zts-20160303: opcache.so xdebug.so /usr/lib/pkgconfig: apr-1.pc apr-util-1.pc libecpg.pc libecpg_compat.pc libiodbc.pc libpcre.pc libpcreposix.pc libpgtypes.pc libpq.pc /usr/lib/rpcsvc: dssetup.bundle echosvc.bundle lsarpc.bundle mdssvc.bundle netlogon.bundle srvsvc.bundle wkssvc.bundle /usr/lib/sasl2: apop.so atoken.so dhx.so digestmd5WebDAV.so libanonymous.2.so libcrammd5.2.so libdigestmd5.2.so libgssapiv2.2.0.18.so libgssapiv2.2.so libntlm.so libplain.2.so login.so mschapv2.so oauthbearer.so openldap plain-clienttoken.so pwauxprop.so shadow_auxprop.so smb_ntlmv2.so srp.so /usr/lib/sasl2/openldap: libcrammd5.2.so libgssapiv2.2.so srp.so /usr/lib/swift: libswiftAVFoundation.dylib libswiftAccelerate.dylib libswiftAppKit.dylib libswiftCloudKit.dylib libswiftContacts.dylib libswiftCore.dylib libswiftCoreAudio.dylib libswiftCoreData.dylib libswiftCoreFoundation.dylib libswiftCoreGraphics.dylib libswiftCoreImage.dylib libswiftCoreLocation.dylib libswiftCoreMedia.dylib libswiftCreateML.dylib libswiftCryptoTokenKit.dylib libswiftDarwin.dylib libswiftDemangle.dylib libswiftDispatch.dylib libswiftFoundation.dylib libswiftGLKit.dylib libswiftGameplayKit.dylib libswiftIOKit.dylib libswiftIntents.dylib libswiftMapKit.dylib libswiftMetal.dylib libswiftMetalKit.dylib libswiftModelIO.dylib libswiftNaturalLanguage.dylib libswiftNetwork.dylib libswiftObjectiveC.dylib libswiftOpenCL.dylib libswiftPhotos.dylib libswiftQuartzCore.dylib libswiftRemoteMirror.dylib libswiftRemoteMirror42.dylib libswiftRemoteMirrorLegacy.dylib libswiftSIMDOperators.dylib libswiftSafariServices.dylib libswiftSceneKit.dylib libswiftSpriteKit.dylib libswiftSwiftOnoneSupport.dylib libswiftUIKit.dylib libswiftVision.dylib libswiftXCTest.dylib libswiftXPC.dylib libswiftos.dylib libswiftsimd.dylib /usr/lib/system: introspection libcache.dylib libcommonCrypto.dylib libcompiler_rt.dylib libcopyfile.dylib libcorecrypto.dylib libcorecrypto_trace.dylib libdispatch.dylib libdyld.dylib libkeymgr.dylib libkxld.dylib liblaunch.dylib libmacho.dylib libmathCommon.A.dylib libmathCommon.dylib libquarantine.dylib libremovefile.dylib libsystem_asl.dylib libsystem_blocks.dylib libsystem_c.dylib libsystem_configuration.dylib libsystem_coreservices.dylib libsystem_darwin.dylib libsystem_dnssd.dylib libsystem_info.dylib libsystem_kernel.dylib libsystem_m.dylib libsystem_malloc.dylib libsystem_networkextension.dylib libsystem_notify.dylib libsystem_platform.dylib libsystem_pthread.dylib libsystem_sandbox.dylib libsystem_secinit.dylib libsystem_symptoms.dylib libsystem_trace.dylib libunc.dylib libunwind.dylib libxpc.dylib wordexp-helper /usr/lib/system/introspection: libdispatch.dylib libsystem_pthread.dylib /usr/lib/xpc: support.bundle /usr/lib/xpc/support.bundle: Contents /usr/lib/xpc/support.bundle/Contents: Info.plist MacOS _CodeSignature version.plist /usr/lib/xpc/support.bundle/Contents/MacOS: support /usr/lib/xpc/support.bundle/Contents/_CodeSignature: CodeResources /usr/lib/zsh: 5.3 /usr/lib/zsh/5.3: zsh /usr/lib/zsh/5.3/zsh: attr.so cap.so clone.so compctl.so complete.so complist.so computil.so curses.so datetime.so deltochar.so example.so files.so langinfo.so mapfile.so mathfunc.so net newuser.so param parameter.so regex.so rlimits.so sched.so stat.so system.so termcap.so terminfo.so zftp.so zle.so zleparameter.so zprof.so zpty.so zselect.so zutil.so /usr/lib/zsh/5.3/zsh/net: socket.so tcp.so /usr/lib/zsh/5.3/zsh/param: private.so /usr/libexec: AdvancedCommandsMigrator AirPlayXPCHelper AppSandbox AppleQEMUGuestAgent ApplicationFirewall AssetCache AssetCacheAgent CSCSupportd DataDetectorsLocalSources DataDetectorsSourceAccess DeveloperTools FDERecoveryAgent FirmwareUpdateLauncher IOAccelMemoryInfoCollector InternetSharing KeychainMigrator MiniTerm.app NVMeAgent PerfPowerServices PerfPowerServicesExtended PlistBuddy ReportMemoryException SafariCloudHistoryPushAgent SafariHistoryServiceAgent SafariLaunchAgent SafariNotificationAgent SafariPlugInUpdateNotifier SidecarRelay SmartCardServices TouchBarServer USBAgent UserEventAgent WiFiVelocityAgent adprivacyd adservicesd airportd amfid amsdstat apache2 apfsd applessdstatistics assertiond atomicupdatetool atrun attach_automation_image authopen autofsd automation_trampoline automountd avconferenced awacsd biokitaggdd biometrickitd bootinstalld bootpd bspowerassertiontool captiveagent cc_fips_test checkLocalKDC chkpasswd cloudconfigurationd colorsync.displayservices colorsyncd comsat configd configureLocalKDC corebrightnessd corecaptured coreduetd corestoraged corestoragehelperd create_automation_image_overlay cups dasd defragx diagnosticd dirhelper diskarbitrationd diskmanagementd diskmanagementstartup displaypolicyd dmd dp2hdmiupdater dpaudiothru dpd dprivacyd dspluginhelperd dtrace dumpemacs efiupdater emacs emlog.pl eoshostd fax feedback femail findmydevice-user-agent findmydeviced firmwarecheckers firmwaresyncd fmfd ftp-proxy gamecontrollerd getPPDVersion getty gkreport hidd ifcstart installer-core ioupsd ippusbd java_home kcproxy kdumpd kextd keybagd keyboardservicesd knowledge-agent kuncd languageassetd locate.bigram locate.code locate.concatdb locate.mklocatedb locate.updatedb locationd logd loginitemregisterd logkextloadsd lsd makewhatis makewhatis.local mcxalr mdmclient migrateLocalKDC mobileactivationd mobileassetd mount_url msutil multiversed natpmpd neagent nehelper nesessionmanager netbootdisk networkserviceproxy nfcd nfrestore_service nlcd nsurlsessiond nsurlstoraged ntalkd od_user_homes odproxyd opendirectoryd osaapplet otherbsd path_helper pboard pcsstatus periodic-wrapper pfd pkd pkreporter postfix productutil rapportd remotectl rootless-init routined rpc.rquotad rpcsvchost rtcreportingd sandboxd scsid sdfwupdater secd secinitd security-checksystem security-sysdiagnose security_authtrampoline securityd_service securityuploadd seld sftp-server sharingd signpost_reporter silhouette siriknowledged slapconfig-keygen slapd smb-migrate-preferences smb-sync-preferences smcDiagnose smcupdater smd snmpd spindump_agent ssdupdater ssh-keysign ssh-pkcs11-helper sshd-keygen-wrapper startupdiskhelper studentd swcd symptomsd sysdiagnose_helper sysmond syspolicyd systemstats_boot tailspind taskgated taskgated-helper testmanagerd tftpd thermald timed trustd tzd tzinit tzlinkd ucupdate unbound undoServerAppDNSPrefs upsshutdown usbcupdater usbd vbiosupdater videosubscriptionsd vndevice warmd warmd_agent watchdogd webinspectord wfs wifiFirmwareLoader wifid wifivelocityd wps x11-select xartstorageremoted xpchelper xpcproxy xpcroleaccountd xscertd xscertd-helper xssendevent /usr/libexec/AppSandbox: ContainerRepairAgent app_sandbox_cache_builder container_check.rb /usr/libexec/ApplicationFirewall: Firewall appfwloggerd com.apple.alf.plist socketfilterfw socketfilterhelper /usr/libexec/AssetCache: AssetCache AssetCache.momd /usr/libexec/AssetCache/AssetCache.momd: AssetCache-v2.mom AssetCache-v3.mom AssetCache-v4.mom AssetCache-v5.mom AssetCache-v6.mom AssetCache-v6.omo AssetCache.mom VersionInfo.plist /usr/libexec/AssetCacheAgent: AssetCacheAgent ar.lproj ca.lproj cs.lproj da.lproj de.lproj el.lproj en.lproj en_AU.lproj en_GB.lproj es.lproj es_419.lproj fi.lproj fr.lproj fr_CA.lproj he.lproj hi.lproj hr.lproj hu.lproj id.lproj it.lproj ja.lproj ko.lproj ms.lproj nl.lproj no.lproj pl.lproj pt.lproj pt_PT.lproj ro.lproj ru.lproj sk.lproj sv.lproj th.lproj tr.lproj uk.lproj vi.lproj zh_CN.lproj zh_HK.lproj zh_TW.lproj /usr/libexec/AssetCacheAgent/ar.lproj: Localizable.strings /usr/libexec/AssetCacheAgent/ca.lproj: Localizable.strings /usr/libexec/AssetCacheAgent/cs.lproj: Localizable.strings /usr/libexec/AssetCacheAgent/da.lproj: Localizable.strings /usr/libexec/AssetCacheAgent/de.lproj: Localizable.strings /usr/libexec/AssetCacheAgent/el.lproj: Localizable.strings /usr/libexec/AssetCacheAgent/en.lproj: Localizable.strings /usr/libexec/AssetCacheAgent/en_AU.lproj: Localizable.strings /usr/libexec/AssetCacheAgent/en_GB.lproj: Localizable.strings /usr/libexec/AssetCacheAgent/es.lproj: Localizable.strings /usr/libexec/AssetCacheAgent/es_419.lproj: Localizable.strings /usr/libexec/AssetCacheAgent/fi.lproj: Localizable.strings /usr/libexec/AssetCacheAgent/fr.lproj: Localizable.strings /usr/libexec/AssetCacheAgent/fr_CA.lproj: Localizable.strings /usr/libexec/AssetCacheAgent/he.lproj: Localizable.strings /usr/libexec/AssetCacheAgent/hi.lproj: Localizable.strings /usr/libexec/AssetCacheAgent/hr.lproj: Localizable.strings /usr/libexec/AssetCacheAgent/hu.lproj: Localizable.strings /usr/libexec/AssetCacheAgent/id.lproj: Localizable.strings /usr/libexec/AssetCacheAgent/it.lproj: Localizable.strings /usr/libexec/AssetCacheAgent/ja.lproj: Localizable.strings /usr/libexec/AssetCacheAgent/ko.lproj: Localizable.strings /usr/libexec/AssetCacheAgent/ms.lproj: Localizable.strings /usr/libexec/AssetCacheAgent/nl.lproj: Localizable.strings /usr/libexec/AssetCacheAgent/no.lproj: Localizable.strings /usr/libexec/AssetCacheAgent/pl.lproj: Localizable.strings /usr/libexec/AssetCacheAgent/pt.lproj: Localizable.strings /usr/libexec/AssetCacheAgent/pt_PT.lproj: Localizable.strings /usr/libexec/AssetCacheAgent/ro.lproj: Localizable.strings /usr/libexec/AssetCacheAgent/ru.lproj: Localizable.strings /usr/libexec/AssetCacheAgent/sk.lproj: Localizable.strings /usr/libexec/AssetCacheAgent/sv.lproj: Localizable.strings /usr/libexec/AssetCacheAgent/th.lproj: Localizable.strings /usr/libexec/AssetCacheAgent/tr.lproj: Localizable.strings /usr/libexec/AssetCacheAgent/uk.lproj: Localizable.strings /usr/libexec/AssetCacheAgent/vi.lproj: Localizable.strings /usr/libexec/AssetCacheAgent/zh_CN.lproj: Localizable.strings /usr/libexec/AssetCacheAgent/zh_HK.lproj: Localizable.strings /usr/libexec/AssetCacheAgent/zh_TW.lproj: Localizable.strings /usr/libexec/DeveloperTools: codesign_allocate /usr/libexec/MiniTerm.app: Contents /usr/libexec/MiniTerm.app/Contents: Info.plist MacOS PkgInfo Resources _CodeSignature version.plist /usr/libexec/MiniTerm.app/Contents/MacOS: MiniTerm /usr/libexec/MiniTerm.app/Contents/Resources: Base.lproj MiniTerm.iconheader ar.lproj ca.lproj cs.lproj da.lproj de.lproj el.lproj en_AU.lproj en_GB.lproj es.lproj es_419.lproj fi.lproj fr.lproj fr_CA.lproj he.lproj hi.lproj hr.lproj hu.lproj id.lproj it.lproj ja.lproj ko.lproj ms.lproj nl.lproj no.lproj pl.lproj pt.lproj pt_PT.lproj ro.lproj ru.lproj sk.lproj sv.lproj th.lproj tr.lproj uk.lproj vi.lproj zh_CN.lproj zh_HK.lproj zh_TW.lproj /usr/libexec/MiniTerm.app/Contents/Resources/Base.lproj: MiniTerm.nib /usr/libexec/MiniTerm.app/Contents/Resources/ar.lproj: MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/ca.lproj: MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/cs.lproj: MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/da.lproj: MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/de.lproj: MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/el.lproj: MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/en_AU.lproj: MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/en_GB.lproj: MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/es.lproj: MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/es_419.lproj: MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/fi.lproj: MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/fr.lproj: MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/fr_CA.lproj: MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/he.lproj: MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/hi.lproj: MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/hr.lproj: MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/hu.lproj: MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/id.lproj: MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/it.lproj: MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/ja.lproj: MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/ko.lproj: MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/ms.lproj: MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/nl.lproj: MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/no.lproj: MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/pl.lproj: MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/pt.lproj: MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/pt_PT.lproj: MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/ro.lproj: MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/ru.lproj: MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/sk.lproj: MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/sv.lproj: MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/th.lproj: MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/tr.lproj: MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/uk.lproj: MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/vi.lproj: MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/zh_CN.lproj: MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/zh_HK.lproj: MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/zh_TW.lproj: MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/_CodeSignature: CodeResources /usr/libexec/SmartCardServices: drivers /usr/libexec/SmartCardServices/drivers: ifd-ccid.bundle /usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle: Contents /usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle/Contents: Info.plist MacOS version.plist /usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle/Contents/MacOS: libccid.dylib /usr/libexec/apache2: httpd.exp libphp7.so mod_access_compat.so mod_actions.so mod_alias.so mod_allowmethods.so mod_asis.so mod_auth_basic.so mod_auth_digest.so mod_auth_form.so mod_authn_anon.so mod_authn_core.so mod_authn_dbd.so mod_authn_dbm.so mod_authn_file.so mod_authn_socache.so mod_authnz_ldap.so mod_authnz_od_apple.so mod_authz_core.so mod_authz_dbd.so mod_authz_dbm.so mod_authz_groupfile.so mod_authz_host.so mod_authz_owner.so mod_authz_user.so mod_autoindex.so mod_buffer.so mod_cache.so mod_cache_disk.so mod_cache_socache.so mod_cgi.so mod_charset_lite.so mod_data.so mod_dav.so mod_dav_fs.so mod_dav_lock.so mod_dbd.so mod_deflate.so mod_dialup.so mod_dir.so mod_dumpio.so mod_echo.so mod_env.so mod_expires.so mod_ext_filter.so mod_file_cache.so mod_filter.so mod_headers.so mod_heartbeat.so mod_heartmonitor.so mod_hfs_apple.so mod_http2.so mod_imagemap.so mod_include.so mod_info.so mod_lbmethod_bybusyness.so mod_lbmethod_byrequests.so mod_lbmethod_bytraffic.so mod_lbmethod_heartbeat.so mod_ldap.so mod_log_config.so mod_log_debug.so mod_log_forensic.so mod_logio.so mod_macro.so mod_mime.so mod_mime_magic.so mod_negotiation.so mod_perl.so mod_proxy.so mod_proxy_ajp.so mod_proxy_balancer.so mod_proxy_connect.so mod_proxy_express.so mod_proxy_fcgi.so mod_proxy_fdpass.so mod_proxy_ftp.so mod_proxy_hcheck.so mod_proxy_html.so mod_proxy_http.so mod_proxy_scgi.so mod_proxy_uwsgi.so mod_proxy_wstunnel.so mod_ratelimit.so mod_reflector.so mod_remoteip.so mod_reqtimeout.so mod_request.so mod_rewrite.so mod_secure_transport.so mod_sed.so mod_session.so mod_session_cookie.so mod_session_dbd.so mod_setenvif.so mod_slotmem_plain.so mod_slotmem_shm.so mod_socache_dbm.so mod_socache_memcache.so mod_socache_shmcb.so mod_speling.so mod_ssl.so mod_status.so mod_substitute.so mod_unique_id.so mod_unixd.so mod_userdir.so mod_usertrack.so mod_version.so mod_vhost_alias.so mod_watchdog.so mod_xml2enc.so /usr/libexec/cups: apple backend cgi-bin daemon driver filter monitor notifier /usr/libexec/cups/apple: http https ipp ipps smb /usr/libexec/cups/backend: bluetooth dnssd epsonfax http https ipp ipps ippusb lpd mdns riousbprint smb snmp socket usb /usr/libexec/cups/cgi-bin: admin.cgi classes.cgi help.cgi jobs.cgi printers.cgi /usr/libexec/cups/daemon: cups-deviced cups-driverd cups-exec cups-lpd /usr/libexec/cups/driver: /usr/libexec/cups/filter: cgbannertopdf cgimagetopdf cgpdftopdf cgpdftops cgpdftoraster cgtexttopdf commandtops gziptoany pstoappleps pstocupsraster pstopdffilter pstops rastertodymo rastertoepson rastertohp rastertolabel rastertopwg rastertotiff rastertourf thnucups xhtmltopdf /usr/libexec/cups/monitor: bcp tbcp /usr/libexec/cups/notifier: mailto rss /usr/libexec/dtrace: file_events.cpp file_events.hpp log_unnest_badness.d smbd_entitlements.plist smbtrace.d vm_map_delete_permanent.d /usr/libexec/emacs: 22.1 /usr/libexec/emacs/22.1: mac-apple-darwin /usr/libexec/emacs/22.1/mac-apple-darwin: cvtmail digest-doc fakemail hexl movemail profile rcs2log sorted-doc update-game-score vcdiff /usr/libexec/fax: coverpage.py /usr/libexec/feedback: appearance.py fb_collect filevault.py sleepwake.sh systriage.rb /usr/libexec/firmwarecheckers: eficheck ethcheck /usr/libexec/firmwarecheckers/eficheck: EFIAllowListShipping.bundle eficheck eficheck-standalone localization /usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle: allowlists /usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists: IM111.AAPLEFI1.88Z.0001.I00.0908281642.0.ealf IM111.AAPLEFI1.88Z.0001.I00.0909021206.0.ealf IM111.AAPLEFI1.88Z.0001.I00.0909021315.0.ealf IM111.AAPLEFI1.88Z.0001.I00.0909091053.0.ealf IM111.AAPLEFI1.88Z.0001.I00.0909111152.0.ealf IM111.AAPLEFI1.88Z.0001.I00.0909111312.0.ealf IM111.AAPLEFI1.88Z.0001.I00.0909141538.0.ealf IM111.AAPLEFI1.88Z.0001.I00.0909141605.0.ealf IM111.AAPLEFI1.88Z.0001.I00.0909171006.0.ealf IM111.AAPLEFI1.88Z.0002.I00.0909231120.0.ealf IM111.AAPLEFI1.88Z.0002.I00.0909281404.0.ealf IM111.AAPLEFI1.88Z.0002.I00.0910021021.0.ealf IM111.AAPLEFI1.88Z.0002.I00.0910021107.0.ealf IM111.AAPLEFI1.88Z.0002.I00.0910051536.0.ealf IM111.AAPLEFI1.88Z.0002.I00.0910051609.0.ealf IM111.AAPLEFI1.88Z.0002.I00.0910071112.0.ealf IM111.AAPLEFI1.88Z.0002.I00.0910071209.0.ealf IM111.AAPLEFI1.88Z.0002.I00.0910091045.0.ealf IM111.AAPLEFI1.88Z.0002.I00.0910091152.0.ealf IM111.AAPLEFI1.88Z.0002.I00.0910122220.0.ealf IM111.AAPLEFI1.88Z.0002.I00.0910141109.0.ealf IM111.AAPLEFI1.88Z.0002.I00.0910141146.0.ealf IM111.AAPLEFI1.88Z.0002.I00.0910151922.0.ealf IM111.AAPLEFI1.88Z.0002.I00.0910191602.0.ealf IM111.AAPLEFI1.88Z.0002.I00.0910191643.0.ealf IM111.AAPLEFI1.88Z.0002.I00.0910211310.0.ealf IM111.AAPLEFI1.88Z.0002.I00.0910242121.0.ealf IM111.AAPLEFI1.88Z.0002.I00.0910281217.0.ealf IM111.AAPLEFI1.88Z.0002.I00.0910281927.0.ealf IM111.AAPLEFI1.88Z.0002.I00.0910301725.0.ealf IM111.AAPLEFI1.88Z.0002.I00.1003151739.0.ealf IM111.AAPLEFI1.88Z.0002.I00.1003171312.0.ealf IM111.AAPLEFI1.88Z.0002.I00.1507291353.0.ealf IM111.AAPLEFI1.88Z.0002.I00.1509231900.0.ealf IM111.AAPLEFI1.88Z.0002.I00.1701210003.0.ealf IM111.AAPLEFI1.88Z.0002.I00.1702201847.0.ealf IM111.AAPLEFI1.88Z.0002.I00.1702241356.0.ealf IM111.AAPLEFI1.88Z.0002.I00.1704250219.0.ealf IM111.AAPLEFI1.88Z.0002.I00.1704281850.0.ealf IM111.AAPLEFI1.88Z.0002.I00.1705021412.0.ealf IM111.AAPLEFI1.88Z.0002.I00.1706220550.0.ealf IM111.AAPLEFI1.88Z.0002.I00.1706261402.0.ealf IM111.AAPLEFI1.88Z.0002.I00.1707231527.0.ealf IM111.AAPLEFI1.88Z.0002.I00.1708080237.0.ealf IM112.AAPLEFI2.88Z.0005.I00.0911231211.0.ealf IM112.AAPLEFI2.88Z.0005.I00.0912071313.0.ealf IM112.AAPLEFI2.88Z.0005.I00.0912071347.0.ealf IM112.AAPLEFI2.88Z.0005.I00.0912141547.0.ealf IM112.AAPLEFI2.88Z.0005.I00.0912141713.0.ealf IM112.AAPLEFI2.88Z.0005.I00.0912161112.0.ealf IM112.AAPLEFI2.88Z.0005.I00.0912181153.0.ealf IM112.AAPLEFI2.88Z.0005.I00.0912181427.0.ealf IM112.AAPLEFI2.88Z.0005.I00.1001081056.0.ealf IM112.AAPLEFI2.88Z.0005.I00.1001111654.0.ealf IM112.AAPLEFI2.88Z.0005.I00.1001151650.0.ealf IM112.AAPLEFI2.88Z.0005.I00.1001251301.0.ealf IM112.AAPLEFI2.88Z.0006.I00.1002081552.0.ealf IM112.AAPLEFI2.88Z.0006.I00.1002081733.0.ealf IM112.AAPLEFI2.88Z.0006.I00.1002101313.0.ealf IM112.AAPLEFI2.88Z.0006.I00.1002121627.0.ealf IM112.AAPLEFI2.88Z.0006.I00.1002171156.0.ealf IM112.AAPLEFI2.88Z.0006.I00.1002191318.0.ealf IM112.AAPLEFI2.88Z.0006.I00.1002261335.0.ealf IM112.AAPLEFI2.88Z.0006.I00.1003031405.0.ealf IM112.AAPLEFI2.88Z.0006.I00.1003051151.0.ealf IM112.AAPLEFI2.88Z.0006.I00.1003081608.0.ealf IM112.AAPLEFI2.88Z.0006.I00.1003121143.0.ealf IM112.AAPLEFI2.88Z.0006.I00.1003171246.0.ealf IM112.AAPLEFI2.88Z.0006.I00.1003241457.0.ealf IM112.AAPLEFI2.88Z.0006.I00.1004051701.0.ealf IM112.AAPLEFI2.88Z.0006.I00.1004091104.0.ealf IM112.AAPLEFI2.88Z.0006.I00.1004121638.0.ealf IM112.AAPLEFI2.88Z.0006.I00.1004161256.0.ealf IM112.AAPLEFI2.88Z.0006.I00.1004191607.0.ealf IM112.AAPLEFI2.88Z.0006.I00.1004230939.0.ealf IM112.AAPLEFI2.88Z.0006.I00.1004261556.0.ealf IM112.AAPLEFI2.88Z.0006.I00.1005031453.0.ealf IM112.AAPLEFI2.88Z.0006.I00.1112090904.0.ealf IM112.AAPLEFI2.88Z.0006.I00.1112091248.0.ealf IM112.AAPLEFI2.88Z.0006.I00.1507291449.0.ealf IM112.AAPLEFI2.88Z.0006.I00.1509231641.0.ealf IM112.AAPLEFI2.88Z.0006.I00.1612201716.0.ealf IM112.AAPLEFI2.88Z.0006.I00.1701210149.0.ealf IM112.AAPLEFI2.88Z.0006.I00.1702180220.0.ealf IM112.AAPLEFI2.88Z.0006.I00.1702241446.0.ealf IM112.AAPLEFI2.88Z.0006.I00.1704242250.0.ealf IM112.AAPLEFI2.88Z.0006.I00.1704281519.0.ealf IM112.AAPLEFI2.88Z.0006.I00.1705021555.0.ealf IM112.AAPLEFI2.88Z.0006.I00.1706220336.0.ealf IM112.AAPLEFI2.88Z.0006.I00.1706261624.0.ealf IM112.AAPLEFI2.88Z.0006.I00.1707271300.0.ealf IM112.AAPLEFI2.88Z.0006.I00.1708080435.0.ealf IM121.AAPLEFI2.88Z.0001.I00.1005211133.0.ealf IM121.AAPLEFI2.88Z.0001.I00.1005241636.0.ealf IM121.AAPLEFI2.88Z.0003.I00.1006141518.0.ealf IM121.AAPLEFI4.88Z.0004.I00.1006161137.0.ealf IM121.AAPLEFI4.88Z.0004.I00.1006180910.0.ealf IM121.AAPLEFI4.88Z.0004.I00.1006251013.0.ealf IM121.AAPLEFI4.88Z.0004.I00.1006281408.0.ealf IM121.AAPLEFI4.88Z.0005.I00.1007141220.0.ealf IM121.AAPLEFI4.88Z.0005.I00.1007211301.0.ealf IM121.AAPLEFI4.88Z.0005.I00.1007261201.0.ealf IM121.AAPLEFI4.88Z.0005.I00.1007281057.0.ealf IM121.AAPLEFI4.88Z.0005.I00.1008021259.0.ealf IM121.AAPLEFI4.88Z.0005.I00.1008041221.0.ealf IM121.AAPLEFI4.88Z.0005.I00.1008091039.0.ealf IM121.AAPLEFI4.88Z.0005.I00.1008111115.0.ealf IM121.AAPLEFI4.88Z.0005.I00.1008121651.0.ealf IM121.AAPLEFI4.88Z.0005.I00.1008181312.0.ealf IM121.AAPLEFI4.88Z.0005.I00.1008231323.0.ealf IM121.AAPLEFI4.88Z.0005.I00.1008251413.0.ealf IM121.AAPLEFI4.88Z.0005.I00.1008301408.0.ealf IM121.AAPLEFI4.88Z.0005.I00.1009011157.0.ealf IM121.AAPLEFI4.88Z.0005.I00.1009011250.0.ealf IM121.AAPLEFI4.88Z.0006.I00.1009081115.0.ealf IM121.AAPLEFI4.88Z.0006.I00.1009081226.0.ealf IM121.AAPLEFI4.88Z.0007.I00.1009131111.0.ealf IM121.AAPLEFI4.88Z.0007.I00.1009131124.0.ealf IM121.AAPLEFI4.88Z.0007.I00.1009151116.0.ealf IM121.AAPLEFI4.88Z.0007.I00.1009201126.0.ealf IM121.AAPLEFI4.88Z.0007.I00.1009231111.0.ealf IM121.AAPLEFI4.88Z.0007.I00.1009271031.0.ealf IM121.AAPLEFI4.88Z.0008.I00.1009291042.0.ealf IM121.AAPLEFI4.88Z.0008.I00.1010021017.0.ealf IM121.AAPLEFI4.88Z.0008.I00.1010041146.0.ealf IM121.AAPLEFI4.88Z.0008.I00.1010051020.0.ealf IM121.AAPLEFI4.88Z.0008.I00.1010051724.0.ealf IM121.AAPLEFI4.88Z.0008.I00.1010091027.0.ealf IM121.AAPLEFI4.88Z.0008.I00.1010111112.0.ealf IM121.AAPLEFI4.88Z.0009.I00.1010131028.0.ealf IM121.AAPLEFI4.88Z.0009.I00.1010131106.0.ealf IM121.AAPLEFI4.88Z.0009.I00.1010170938.0.ealf IM121.AAPLEFI4.88Z.0009.I00.1010181212.0.ealf IM121.AAPLEFI4.88Z.0009.I00.1010200944.0.ealf IM121.AAPLEFI4.88Z.0009.I00.1010200957.0.ealf IM121.AAPLEFI4.88Z.0009.I00.1010230937.0.ealf IM121.AAPLEFI4.88Z.0009.I00.1010251247.0.ealf IM121.AAPLEFI4.88Z.0009.I00.1010270938.0.ealf IM121.AAPLEFI4.88Z.0009.I00.1010271023.0.ealf IM121.AAPLEFI4.88Z.0009.I00.1010290938.0.ealf IM121.AAPLEFI4.88Z.0009.I00.1010291415.0.ealf IM121.AAPLEFI4.88Z.0009.I00.1011020847.0.ealf IM121.AAPLEFI4.88Z.0009.I00.1011021506.0.ealf IM121.AAPLEFI4.88Z.0009.I00.1011050838.0.ealf IM121.AAPLEFI4.88Z.0009.I00.1011051249.0.ealf IM121.AAPLEFI4.88Z.0009.I00.1011100939.0.ealf IM121.AAPLEFI4.88Z.0009.I00.1011110945.0.ealf IM121.AAPLEFI4.88Z.0009.I00.1011120759.0.ealf IM121.AAPLEFI4.88Z.0009.I00.1011160939.0.ealf IM121.AAPLEFI4.88Z.0009.I00.1011161712.0.ealf IM121.AAPLEFI4.88Z.0009.I00.1011210940.0.ealf IM121.AAPLEFI4.88Z.0009.I00.1011220725.0.ealf IM121.AAPLEFI4.88Z.0009.I00.1011290940.0.ealf IM121.AAPLEFI4.88Z.0009.I00.1011291124.0.ealf IM121.AAPLEFI4.88Z.0009.I00.1012010939.0.ealf IM121.AAPLEFI4.88Z.0009.I00.1012011224.0.ealf IM121.AAPLEFI4.88Z.0009.I00.1012020939.0.ealf IM121.AAPLEFI4.88Z.0009.I00.1012021643.0.ealf IM121.AAPLEFI4.88Z.0009.I00.1012050944.0.ealf IM121.AAPLEFI4.88Z.0009.I00.1012061142.0.ealf IM121.AAPLEFI4.88Z.0009.I00.1012080943.0.ealf IM121.AAPLEFI4.88Z.0009.I00.1012081135.0.ealf IM121.AAPLEFI4.88Z.0009.I00.1012120946.0.ealf IM121.AAPLEFI4.88Z.0009.I00.1012131137.0.ealf IM121.AAPLEFI4.88Z.0009.I00.1012150939.0.ealf IM121.AAPLEFI4.88Z.0009.I00.1012151059.0.ealf IM121.AAPLEFI4.88Z.0009.I00.1012190941.0.ealf IM121.AAPLEFI4.88Z.0009.I00.1012201104.0.ealf IM121.AAPLEFI4.88Z.0009.I00.1101010940.0.ealf IM121.AAPLEFI4.88Z.0009.I00.1101050940.0.ealf IM121.AAPLEFI4.88Z.0009.I01.1101100940.0.ealf IM121.AAPLEFI4.88Z.0009.I01.1101101109.0.ealf IM121.AAPLEFI4.88Z.0009.I01.1101120941.0.ealf IM121.AAPLEFI4.88Z.0009.I01.1101121158.0.ealf IM121.AAPLEFI4.88Z.0009.I01.1101150944.0.ealf IM121.AAPLEFI4.88Z.0009.I01.1101171047.0.ealf IM121.AAPLEFI4.88Z.0009.I02.1101190957.0.ealf IM121.AAPLEFI4.88Z.0009.I02.1101191057.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1101230957.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1101241114.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1101260937.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1101261044.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1101310951.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1101311146.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1102021201.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1102031002.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1102041235.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1102071704.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1102091754.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1103021144.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1103091152.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1103161348.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1103242050.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1103301137.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1104061234.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1104111857.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1104150726.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1104201032.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1104221553.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1107141151.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1107281150.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1108031503.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1108101256.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1108112002.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1108121148.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1108122101.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1108171247.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1108221125.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1108290922.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1108291934.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1109011022.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1109021638.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1109030048.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1109061106.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1109061818.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1109081124.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1109091929.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1109100354.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1109141123.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1109141953.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1109211414.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1109231613.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1109281426.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1110171108.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1110201312.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1201241646.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1506090232.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1506101604.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1509141153.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1510261406.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1610201718.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1611011512.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1612202117.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1701201957.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1702171911.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1703231948.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1703301217.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1703301434.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1704131557.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1704242117.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1704281158.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1705021500.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1705101226.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1706220459.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1706261227.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1707271117.0.ealf IM121.AAPLEFI4.88Z.0009.I03.1708080007.0.ealf IM131.88Z.F000.B00.1912181754.0.ealf IM131.AAPLEFI4.88Z.0011.I00.1109120937.0.ealf IM131.AAPLEFI4.88Z.0012.I00.1109141013.0.ealf IM131.AAPLEFI4.88Z.0012.I00.1109141044.0.ealf IM131.AAPLEFI4.88Z.0012.I00.1109190951.0.ealf IM131.AAPLEFI4.88Z.0012.I00.1109191025.0.ealf IM131.AAPLEFI4.88Z.0012.I00.1109211037.0.ealf IM131.AAPLEFI4.88Z.0012.I00.1109260949.0.ealf IM131.AAPLEFI4.88Z.0012.I00.1109271121.0.ealf IM131.AAPLEFI4.88Z.0012.I00.1110031003.0.ealf IM131.AAPLEFI4.88Z.0012.I00.1110031600.0.ealf IM131.AAPLEFI4.88Z.0012.I00.1110050942.0.ealf IM131.AAPLEFI4.88Z.0012.I00.1110100942.0.ealf IM131.AAPLEFI4.88Z.0012.I00.1110101002.0.ealf IM131.AAPLEFI4.88Z.0012.I00.1110121146.0.ealf IM131.AAPLEFI4.88Z.0012.I00.1110121223.0.ealf IM131.AAPLEFI4.88Z.0012.I00.1110170947.0.ealf IM131.AAPLEFI4.88Z.0012.I00.1110201110.0.ealf IM131.AAPLEFI4.88Z.0012.I00.1110211417.0.ealf IM131.AAPLEFI4.88Z.0012.I00.1110211452.0.ealf IM131.AAPLEFI4.88Z.0012.I00.1110260954.0.ealf IM131.AAPLEFI4.88Z.0012.I00.1110270931.0.ealf IM131.AAPLEFI4.88Z.0012.I00.1110271125.0.ealf IM131.AAPLEFI4.88Z.0012.I00.1110271506.0.ealf IM131.AAPLEFI4.88Z.0012.I00.1110271555.0.ealf IM131.AAPLEFI4.88Z.0012.I00.1111020931.0.ealf IM131.AAPLEFI4.88Z.0012.I00.1111021003.0.ealf IM131.AAPLEFI4.88Z.0012.I00.1111070949.0.ealf IM131.AAPLEFI4.88Z.0012.I00.1111071036.0.ealf IM131.AAPLEFI4.88Z.0012.I00.1111091031.0.ealf IM131.AAPLEFI4.88Z.0012.I00.1111091124.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1111141502.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1111171341.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1111280947.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1111281026.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1111301445.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1112051012.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1112051056.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1112051152.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1112070942.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1112071028.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1112121145.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1112121219.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1112140955.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1112141056.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1112201134.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1112201338.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1201041310.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1201041425.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1201090945.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1201091030.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1201120951.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1201122023.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1201122053.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1201160946.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1201161027.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1201181139.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1201181211.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1201231016.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1201231046.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1201251020.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1201251124.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1201300936.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1201301023.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1202011024.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1202011105.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1202021239.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1202061106.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1202061410.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1202061455.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1202081041.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1202081208.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1610041759.0.ealf IM131.AAPLEFI4.88Z.0013.I00.1610041803.0.ealf IM131.AAPLEFI4.88Z.0014.I00.0000000000.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1202131042.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1202131134.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1202151015.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1202151052.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1202201110.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1202201259.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1202221034.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1202270952.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1202271033.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1202291139.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1202291207.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1203050954.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1203051041.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1203071032.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1203071112.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1203120956.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1203121258.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1203140947.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1203141038.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1203190958.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1203191039.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1203210941.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1203211000.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1203261014.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1203281126.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1203281326.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1204021116.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1204021155.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1204041150.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1204041234.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1204091154.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1204091336.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1204110951.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1204111043.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1204160954.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1204161036.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1204180957.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1204181026.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1204231011.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1204231040.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1204250940.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1204251026.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1204251057.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1204300951.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1204301035.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1205020943.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1205071044.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1205071121.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1205091022.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1205091100.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1205140949.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1205141019.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1205161032.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1205211031.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1205211107.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1205230945.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1205231023.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1205300954.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1205301024.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1206041015.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1206041046.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1206061022.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1206061100.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1206111004.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1206111034.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1206131004.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1206131034.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1206181000.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1206181044.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1206201017.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1206201045.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1206251010.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1206251049.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1206271006.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1206271037.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1207021028.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1207021115.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1207091005.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1207091351.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1207111001.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1207111358.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1207161014.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1207161046.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1207181033.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1207181109.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1207231047.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1207231117.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1207251016.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1207251054.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1207301041.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1207301109.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1208011033.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1208011100.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1208061023.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1208061105.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1208081006.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1208090851.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1208090926.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1208131011.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1208131039.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1208151033.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1208151102.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1208201150.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1208201218.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1208221308.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1208221338.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1208311615.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1208311623.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1208311727.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1209041407.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1209042015.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1209042034.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1209042338.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1209171013.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1209171041.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1209241107.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1209241135.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1210011102.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1210011129.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1210121432.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1210121459.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1211151122.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1211151146.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1302251018.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1302260943.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1302261003.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1302261008.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1506081722.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1506081728.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1509111552.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1509111558.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1610201905.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1610201915.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1612161241.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1612161246.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1701200120.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1701200126.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1701231749.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1701231754.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1701241525.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1701241529.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1702021818.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1702021833.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1702171350.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1702171357.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1703090651.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1703090657.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1703232142.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1703232149.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1705011305.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1705011311.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1706190947.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1706190954.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1706220533.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1706220538.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1706261414.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1706261419.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1707270721.0.ealf IM131.AAPLEFI4.88Z.0014.I00.1708080805.0.ealf IM141.88Z.F000.B00.1912181604.0.ealf IM142.88Z.F000.B00.1912181604.0.ealf IM143.88Z.F000.B00.1912181604.0.ealf IM144.88Z.F000.B00.1912181611.0.ealf IM151.88Z.F000.B00.1912181731.0.ealf IM161.88Z.F000.B00.1910301927.0.ealf IM162.88Z.F000.B00.1910301924.0.ealf IM171.88Z.F000.B00.1912161452.0.ealf IM181.88Z.F000.B00.1912161654.0.ealf IM183.88Z.F000.B00.1912161654.0.ealf IM191.88Z.F000.B00.1912181732.0.ealf MB101.88Z.F000.B00.1912161654.0.ealf MB81.88Z.F000.B00.1912161554.0.ealf MB91.88Z.F000.B00.1912161452.0.ealf MBA41.AAPLEFI4.88Z.0009.I00.1012150856.0.ealf MBA41.AAPLEFI4.88Z.0009.I00.1012190852.0.ealf MBA41.AAPLEFI4.88Z.0009.I00.1101010850.0.ealf MBA41.AAPLEFI4.88Z.0009.I00.1101050852.0.ealf MBA41.AAPLEFI4.88Z.000A.I00.1101100849.0.ealf MBA41.AAPLEFI4.88Z.000A.I00.1101120853.0.ealf MBA41.AAPLEFI4.88Z.000A.I00.1101140856.0.ealf MBA41.AAPLEFI4.88Z.000A.I00.1101150856.0.ealf MBA41.AAPLEFI4.88Z.000C.I00.1101190907.0.ealf MBA41.AAPLEFI4.88Z.000C.I00.1101200908.0.ealf MBA41.AAPLEFI4.88Z.000C.I00.1101210913.0.ealf MBA41.AAPLEFI4.88Z.000D.I00.1101220909.0.ealf MBA41.AAPLEFI4.88Z.000D.I00.1101230914.0.ealf MBA41.AAPLEFI4.88Z.000D.I00.1101240856.0.ealf MBA41.AAPLEFI4.88Z.000D.I00.1101250855.0.ealf MBA41.AAPLEFI4.88Z.000D.I00.1101261120.0.ealf MBA41.AAPLEFI4.88Z.000D.I00.1102021157.0.ealf MBA41.AAPLEFI4.88Z.000E.I00.1102091215.0.ealf MBA41.AAPLEFI4.88Z.000E.I00.1102091751.0.ealf MBA41.AAPLEFI4.88Z.000E.I00.1102111116.0.ealf MBA41.AAPLEFI4.88Z.000E.I00.1102111139.0.ealf MBA41.AAPLEFI4.88Z.000E.I00.1102111313.0.ealf MBA41.AAPLEFI4.88Z.000E.I00.1102111320.0.ealf MBA41.AAPLEFI4.88Z.000E.I00.1102111511.0.ealf MBA41.AAPLEFI4.88Z.000E.I00.1102111511.1.ealf MBA41.AAPLEFI4.88Z.000E.I00.1102161116.0.ealf MBA41.AAPLEFI4.88Z.000E.I00.1102211052.0.ealf MBA41.AAPLEFI4.88Z.000E.I00.1102231217.0.ealf MBA41.AAPLEFI4.88Z.000E.I00.1102241543.0.ealf MBA41.AAPLEFI4.88Z.000E.I00.1102241720.0.ealf MBA41.AAPLEFI4.88Z.000E.I00.1102251038.0.ealf MBA41.AAPLEFI4.88Z.000E.I00.1103021232.0.ealf MBA41.AAPLEFI4.88Z.000E.I00.1103070731.0.ealf MBA41.AAPLEFI4.88Z.000E.I00.1103091936.0.ealf MBA41.AAPLEFI4.88Z.000E.I00.1103161348.0.ealf MBA41.AAPLEFI4.88Z.000E.I00.1103211026.0.ealf MBA41.AAPLEFI4.88Z.000E.I00.1103211031.0.ealf MBA41.AAPLEFI4.88Z.000E.I00.1103231036.0.ealf MBA41.AAPLEFI4.88Z.000E.I00.1103281025.0.ealf MBA41.AAPLEFI4.88Z.000E.I00.1103281030.0.ealf MBA41.AAPLEFI4.88Z.000E.I00.1103301120.0.ealf MBA41.AAPLEFI4.88Z.000E.I00.1104041043.0.ealf MBA41.AAPLEFI4.88Z.000E.I00.1104061117.0.ealf MBA41.AAPLEFI4.88Z.000E.I00.1104061122.0.ealf MBA41.AAPLEFI4.88Z.000E.I00.1104111221.0.ealf MBA41.AAPLEFI4.88Z.000E.I00.1104131115.0.ealf MBA41.AAPLEFI4.88Z.000E.I00.1104181024.0.ealf MBA41.AAPLEFI4.88Z.000E.I00.1104181030.0.ealf MBA41.AAPLEFI4.88Z.000E.I00.1104201030.0.ealf MBA41.AAPLEFI4.88Z.000E.I00.1104221256.0.ealf MBA41.AAPLEFI4.88Z.000E.I00.1104251137.0.ealf MBA41.AAPLEFI4.88Z.000E.I00.1104271026.0.ealf MBA41.AAPLEFI4.88Z.000F.I00.1105050916.0.ealf MBA41.AAPLEFI4.88Z.000F.I00.1105091028.0.ealf MBA41.AAPLEFI4.88Z.000F.I00.1105111250.0.ealf MBA41.AAPLEFI4.88Z.000F.I00.1105111313.0.ealf MBA41.AAPLEFI4.88Z.000F.I00.1105160959.0.ealf MBA41.AAPLEFI4.88Z.000F.I00.1105161031.0.ealf MBA41.AAPLEFI4.88Z.000F.I00.1105181141.0.ealf MBA41.AAPLEFI4.88Z.000F.I00.1105181211.0.ealf MBA41.AAPLEFI4.88Z.000F.I00.1105231054.0.ealf MBA41.AAPLEFI4.88Z.000F.I00.1105231132.0.ealf MBA41.AAPLEFI4.88Z.000F.I00.1105251109.0.ealf MBA41.AAPLEFI4.88Z.000F.I00.1105251142.0.ealf MBA41.AAPLEFI4.88Z.000F.I00.1105271358.0.ealf MBA41.AAPLEFI4.88Z.000F.I00.1105271428.0.ealf MBA41.AAPLEFI4.88Z.000F.I00.1106011425.0.ealf MBA41.AAPLEFI4.88Z.000F.I00.1106011454.0.ealf MBA41.AAPLEFI4.88Z.000F.I00.1106061000.0.ealf MBA41.AAPLEFI4.88Z.000F.I00.1106061642.0.ealf MBA41.AAPLEFI4.88Z.000F.I01.1106081015.0.ealf MBA41.AAPLEFI4.88Z.000F.I01.1106081046.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1106101104.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1106132213.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1106140816.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1106151001.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1106151037.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1106162146.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1106162216.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1106200956.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1106201206.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1106201233.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1106221510.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1106221541.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1106231541.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1106232232.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1106232301.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1106271224.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1106271253.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1106291141.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1106291211.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1106300901.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1106300929.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1107271705.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1107271736.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1108031120.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1108031344.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1108101017.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1108101049.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1108171239.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1108171457.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1108171535.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1108291522.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1108291605.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1108311547.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1109011021.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1109011050.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1109071213.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1109211407.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1109231610.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1110141153.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1201241518.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1201241549.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1309301452.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1310091423.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1310091428.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1506081722.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1506081728.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1509111552.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1509111558.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1510261804.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1606291853.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1610201436.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1610201441.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1612161003.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1612161009.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1701200227.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1701200234.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1701231856.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1701231905.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1702171849.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1702171855.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1702201321.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1702201326.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1703082356.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1703090011.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1703211803.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1703211809.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1703241835.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1703241839.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1703291020.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1703291024.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1704131531.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1704131536.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1705011209.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1705011214.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1705022113.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1705022117.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1706182246.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1706182250.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1706220616.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1706220621.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1706261209.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1706261217.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1707271102.0.ealf MBA41.AAPLEFI4.88Z.000F.I02.1708072159.0.ealf MBA51.88Z.F000.B00.1912181605.0.ealf MBA51.AAPLEFI4.88Z.0012.I00.1110121203.0.ealf MBA51.AAPLEFI4.88Z.0013.I00.1111141506.0.ealf MBA51.AAPLEFI4.88Z.0013.I00.1111171404.0.ealf MBA51.AAPLEFI4.88Z.0013.I00.1111280948.0.ealf MBA51.AAPLEFI4.88Z.0013.I00.1111281040.0.ealf MBA51.AAPLEFI4.88Z.0013.I00.1111301430.0.ealf MBA51.AAPLEFI4.88Z.0013.I00.1111301509.0.ealf MBA51.AAPLEFI4.88Z.0013.I00.1112051016.0.ealf MBA51.AAPLEFI4.88Z.0013.I00.1112051133.0.ealf MBA51.AAPLEFI4.88Z.0013.I00.1112051211.0.ealf MBA51.AAPLEFI4.88Z.0013.I00.1112070949.0.ealf MBA51.AAPLEFI4.88Z.0013.I00.1112071043.0.ealf MBA51.AAPLEFI4.88Z.0013.I00.1112121146.0.ealf MBA51.AAPLEFI4.88Z.0013.I00.1112121305.0.ealf MBA51.AAPLEFI4.88Z.0013.I00.1112141001.0.ealf MBA51.AAPLEFI4.88Z.0013.I00.1112141058.0.ealf MBA51.AAPLEFI4.88Z.0013.I00.1112201138.0.ealf MBA51.AAPLEFI4.88Z.0013.I00.1112201339.0.ealf MBA51.AAPLEFI4.88Z.0013.I00.1201041310.0.ealf MBA51.AAPLEFI4.88Z.0013.I00.1201041425.0.ealf MBA51.AAPLEFI4.88Z.0013.I00.1201091015.0.ealf MBA51.AAPLEFI4.88Z.0013.I00.1201121003.0.ealf MBA51.AAPLEFI4.88Z.0013.I00.1201121137.0.ealf MBA51.AAPLEFI4.88Z.0013.I00.1201161023.0.ealf MBA51.AAPLEFI4.88Z.0013.I00.1201161308.0.ealf MBA51.AAPLEFI4.88Z.0013.I00.1201161358.0.ealf MBA51.AAPLEFI4.88Z.0013.I00.1201181155.0.ealf MBA51.AAPLEFI4.88Z.0013.I00.1201181234.0.ealf MBA51.AAPLEFI4.88Z.0013.I00.1201230947.0.ealf MBA51.AAPLEFI4.88Z.0013.I00.1201231032.0.ealf MBA51.AAPLEFI4.88Z.0013.I00.1201250939.0.ealf MBA51.AAPLEFI4.88Z.0013.I00.1201251246.0.ealf MBA51.AAPLEFI4.88Z.0013.I00.1201300936.0.ealf MBA51.AAPLEFI4.88Z.0013.I00.1201301023.0.ealf MBA51.AAPLEFI4.88Z.0013.I00.1202011011.0.ealf MBA51.AAPLEFI4.88Z.0013.I00.1202011049.0.ealf MBA51.AAPLEFI4.88Z.0013.I00.1202061112.0.ealf MBA51.AAPLEFI4.88Z.0013.I00.1202061346.0.ealf MBA51.AAPLEFI4.88Z.0013.I00.1202061417.0.ealf MBA51.AAPLEFI4.88Z.0013.I00.1202081103.0.ealf MBA51.AAPLEFI4.88Z.0013.I00.1202081208.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.0000000000.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1202131131.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1202131211.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1202151049.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1202151130.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1202201147.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1202201301.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1202221017.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1202221053.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1202271030.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1202271055.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1202291156.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1202291238.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1203051021.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1203051042.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1203071108.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1203071145.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1203120956.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1203121259.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1203140948.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1203141013.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1203190958.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1203191039.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1203210941.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1203211000.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1203261015.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1203261043.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1203281127.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1203281150.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1204021117.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1204021140.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1204041153.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1204041235.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1204091154.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1204091337.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1204110952.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1204111044.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1204160951.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1204161036.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1204180957.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1204181043.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1204231017.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1204231109.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1204250940.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1204251030.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1204251115.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1204300953.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1204301036.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1205020944.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1205021014.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1205071045.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1205071121.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1205091022.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1205091101.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1205111019.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1205111052.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1205140950.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1205141142.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1205141211.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1205180833.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1205180901.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1205221412.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1205221442.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1207091048.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1207271032.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1207271048.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1207271121.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1211271001.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1211271023.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1211271028.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1506081618.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1506081623.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1509111646.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1509111653.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1610241029.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1610241034.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1612161124.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1612161130.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1701200120.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1701200126.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1701231856.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1701231905.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1701241625.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1701241632.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1702030112.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1702030117.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1702171350.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1702171357.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1703090651.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1703090657.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1703241418.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1703241423.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1705011406.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1705011412.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1706190947.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1706190954.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1706220516.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1706220521.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1706261427.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1706261433.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1707270721.0.ealf MBA51.AAPLEFI4.88Z.0014.I00.1708080803.0.ealf MBA61.88Z.F000.B00.1912181759.0.ealf MBA71.88Z.F000.B00.1912161554.0.ealf MBP101.88Z.F000.B00.1912181603.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.0000000000.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1202270953.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1202271033.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1202291150.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1202291238.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1203051001.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1203051042.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1203071033.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1203071113.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1203120955.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1203121022.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1203140948.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1203141013.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1203190959.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1203191039.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1203210941.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1203211019.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1203261016.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1203261100.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1203281126.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1203281150.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1204021117.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1204021140.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1204041151.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1204041235.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1204091154.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1204091219.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1204110951.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1204111044.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1204160955.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1204161036.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1204181109.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1204181135.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1204241531.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1204241558.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1204251023.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1204251058.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1204271732.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1204271809.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1204300951.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1204301036.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1205011144.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1205011212.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1205031113.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1205031115.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1205031148.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1205041142.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1205041513.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1205041550.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1205091751.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1205091823.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1205101811.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1205101839.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1207271031.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1207271103.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1208081105.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1208081132.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1212211406.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1212211431.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1212211436.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1408281415.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1408281420.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1408291526.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1408291532.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1411201035.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1411201127.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1411201133.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1501071024.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1501071030.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1506081208.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1506081214.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1506081359.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1506081405.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1509111552.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1509111558.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1610201436.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1610201441.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1612151848.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1612151859.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1701200227.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1701200234.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1701231856.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1701231905.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1701241625.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1701241632.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1702021808.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1702021830.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1702171350.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1702171357.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1703082230.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1703082236.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1703211803.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1703211810.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1705011305.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1705011311.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1705012100.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1705012106.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1706190853.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1706190857.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1706221015.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1706221021.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1706261413.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1706261418.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1707270653.0.ealf MBP101.AAPLEFI4.88Z.0014.I00.1708080809.0.ealf MBP102.88Z.F000.B00.1912181755.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.0000000000.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1202270953.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1202271034.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1202291153.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1202291238.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1203051006.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1203051042.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1203071033.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1203071113.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1203120956.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1203121224.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1203140948.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1203141013.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1203190958.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1203191021.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1203210943.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1203211019.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1203261015.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1203261043.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1203281127.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1203281326.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1204021116.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1204021155.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1204041150.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1204041235.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1204091153.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1204091337.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1204110950.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1204111029.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1204160951.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1204161036.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1204180957.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1204181043.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1204231011.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1204231041.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1204250940.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1204251024.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1204251115.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1204300950.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1204301018.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1205020944.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1205071045.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1205071106.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1205091022.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1205091101.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1205140950.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1205141037.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1205161033.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1205211031.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1205211107.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1205230946.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1205231024.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1205300954.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1205301025.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1206041016.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1206041047.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1206061023.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1206061101.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1206111004.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1206111035.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1206131004.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1206131232.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1206181001.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1206181022.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1206201017.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1206201046.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1206251011.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1206251049.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1206271005.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1206271037.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1207021029.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1207021055.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1207091007.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1207091352.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1207111001.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1207111359.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1207161014.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1207161047.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1207181029.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1207181056.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1207231047.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1207231118.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1207251017.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1207251055.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1207301044.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1207301122.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1208061024.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1208061129.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1208081006.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1208081549.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1208081616.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1208090843.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1208091051.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1208091120.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1208311607.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1208311636.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1210241012.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1210241108.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1211161109.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1211161128.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1211161133.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1408281415.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1408281420.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1408291452.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1408291502.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1411201142.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1411201220.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1411201232.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1501071209.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1501071215.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1506081208.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1506081215.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1509111646.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1509111653.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1509130950.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1509130955.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1610201905.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1610201915.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1612161124.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1612161130.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1701200120.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1701200127.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1701231749.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1701231754.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1701241525.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1701241530.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1702021808.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1702021830.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1702171350.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1702171357.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1703090651.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1703090657.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1703211803.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1703211810.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1705011305.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1705011311.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1706190947.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1706190954.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1706220440.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1706220445.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1706261821.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1706261827.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1707270836.0.ealf MBP102.AAPLEFI4.88Z.0014.I00.1708080805.0.ealf MBP111.88Z.F000.B00.1912181759.0.ealf MBP112.88Z.F000.B00.1912181609.0.ealf MBP114.88Z.F000.B00.1912161555.0.ealf MBP121.88Z.F000.B00.1912161438.0.ealf MBP131.88Z.F000.B00.1912161653.0.ealf MBP132.88Z.F000.B00.1912161510.0.ealf MBP133.88Z.F000.B00.1912161510.0.ealf MBP141.88Z.F000.B00.1912161654.0.ealf MBP142.88Z.F000.B00.1912161510.0.ealf MBP143.88Z.F000.B00.1912161510.0.ealf MBP61.AAPLEFI1.88Z.0001.I00.0908281642.0.ealf MBP61.AAPLEFI1.88Z.0001.I00.0909021206.0.ealf MBP61.AAPLEFI1.88Z.0001.I00.0909091053.0.ealf MBP61.AAPLEFI1.88Z.0001.I00.0909111151.0.ealf MBP61.AAPLEFI1.88Z.0001.I00.0909111311.0.ealf MBP61.AAPLEFI1.88Z.0001.I00.0909141531.0.ealf MBP61.AAPLEFI1.88Z.0001.I00.0909141605.0.ealf MBP61.AAPLEFI1.88Z.0001.I00.0909171006.0.ealf MBP61.AAPLEFI1.88Z.0002.I00.0909231120.0.ealf MBP61.AAPLEFI1.88Z.0002.I00.0909281404.0.ealf MBP61.AAPLEFI1.88Z.0002.I00.0909281434.0.ealf MBP61.AAPLEFI1.88Z.0002.I00.0910021021.0.ealf MBP61.AAPLEFI1.88Z.0002.I00.0910021109.0.ealf MBP61.AAPLEFI1.88Z.0002.I00.0910051536.0.ealf MBP61.AAPLEFI1.88Z.0002.I00.0910051609.0.ealf MBP61.AAPLEFI1.88Z.0002.I00.0910071112.0.ealf MBP61.AAPLEFI1.88Z.0002.I00.0910071204.0.ealf MBP61.AAPLEFI1.88Z.0002.I00.0910091045.0.ealf MBP61.AAPLEFI1.88Z.0002.I00.0910091152.0.ealf MBP61.AAPLEFI1.88Z.0002.I00.0910122219.0.ealf MBP61.AAPLEFI1.88Z.0002.I00.0910141131.0.ealf MBP61.AAPLEFI1.88Z.0002.I00.0910141146.0.ealf MBP61.AAPLEFI1.88Z.0003.I00.0910191448.0.ealf MBP61.AAPLEFI1.88Z.0003.I00.0910261502.0.ealf MBP61.AAPLEFI1.88Z.0003.I00.0910261526.0.ealf MBP61.AAPLEFI1.88Z.0003.I00.0911021519.0.ealf MBP61.AAPLEFI2.88Z.0004.I00.0911021455.0.ealf MBP61.AAPLEFI2.88Z.0004.I00.0911041106.0.ealf MBP61.AAPLEFI2.88Z.0004.I00.0911041225.0.ealf MBP61.AAPLEFI2.88Z.0004.I00.0911051851.0.ealf MBP61.AAPLEFI2.88Z.0004.I00.0911091623.0.ealf MBP61.AAPLEFI2.88Z.0004.I00.0911102030.0.ealf MBP61.AAPLEFI2.88Z.0004.I00.0911111320.0.ealf MBP61.AAPLEFI2.88Z.0004.I00.0911111458.0.ealf MBP61.AAPLEFI2.88Z.0004.I00.0911181055.0.ealf MBP61.AAPLEFI2.88Z.0004.I00.0911181122.0.ealf MBP61.AAPLEFI2.88Z.0004.I00.0911201450.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.0912041103.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.0912071334.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.0912071351.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.0912111222.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.0912111310.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.0912141534.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.0912141713.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.0912161112.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.0912181400.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.0912181429.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.0912221140.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.0912230907.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.0912231624.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1001041713.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1001061125.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1001061318.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1001111512.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1001111606.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1001130947.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1001131128.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1001151201.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1001151930.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1001181347.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1001201400.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1001221111.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1001251655.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1001300949.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1002031201.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1002081648.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1002101134.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1002121529.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1002171109.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1002171134.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1002191226.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1002191317.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1002221535.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1002221634.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1002261350.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1002261410.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1003011701.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1003012124.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1003040834.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1003101534.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1003121208.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1003151740.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1003191132.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1003241646.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1003311129.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1004071223.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1004141323.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1004141928.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1004161213.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1005120959.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1007091037.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1007261549.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1007270941.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1112091026.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1112091048.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1507212145.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1509232007.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1612201815.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1701210053.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1702172052.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1702241220.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1703211519.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1704250025.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1704281105.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1705021134.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1706170445.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1706220130.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1706261100.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1707241351.0.ealf MBP61.AAPLEFI2.88Z.0005.I00.1708072213.0.ealf MBP61.AAPLEFI2.88Z.0008.I00.1101140902.0.ealf MBP61.AAPLEFI2.88Z.0008.I00.1101150900.0.ealf MBP61.AAPLEFI2.88Z.0009.I00.1101180908.0.ealf MBP61.AAPLEFI2.88Z.0009.I00.1101190919.0.ealf MBP61.AAPLEFI2.88Z.0009.I00.1101200913.0.ealf MBP61.AAPLEFI2.88Z.0009.I00.1101210914.0.ealf MBP61.AAPLEFI2.88Z.0009.I00.1101220934.0.ealf MBP61.AAPLEFI2.88Z.0009.I00.1101230919.0.ealf MBP61.AAPLEFI2.88Z.0009.I00.1101240901.0.ealf MBP61.AAPLEFI2.88Z.0009.I00.1101250906.0.ealf MBP61.AAPLEFI2.88Z.0009.I00.1101260902.0.ealf MBP61.AAPLEFI2.88Z.0009.I00.1101270917.0.ealf MBP61.AAPLEFI2.88Z.0009.I00.1101280909.0.ealf MBP61.AAPLEFI2.88Z.0009.I00.1101290917.0.ealf MBP61.AAPLEFI2.88Z.0009.I00.1101310922.0.ealf MBP61.AAPLEFI2.88Z.0009.I00.1102030927.0.ealf MBP81.AAPLEFI4.88Z.0005.I00.1008041152.0.ealf MBP81.AAPLEFI4.88Z.0005.I00.1008091100.0.ealf MBP81.AAPLEFI4.88Z.0005.I00.1008091102.0.ealf MBP81.AAPLEFI4.88Z.0005.I00.1008121648.0.ealf MBP81.AAPLEFI4.88Z.0005.I00.1008181316.0.ealf MBP81.AAPLEFI4.88Z.0005.I00.1008231306.0.ealf MBP81.AAPLEFI4.88Z.0005.I00.1008301408.0.ealf MBP81.AAPLEFI4.88Z.0005.I00.1009011146.0.ealf MBP81.AAPLEFI4.88Z.0005.I00.1009011359.0.ealf MBP81.AAPLEFI4.88Z.0006.I00.1009081106.0.ealf MBP81.AAPLEFI4.88Z.0006.I00.1009081229.0.ealf MBP81.AAPLEFI4.88Z.0007.I00.1009131052.0.ealf MBP81.AAPLEFI4.88Z.0007.I00.1009131127.0.ealf MBP81.AAPLEFI4.88Z.0007.I00.1009151119.0.ealf MBP81.AAPLEFI4.88Z.0007.I00.1009201123.0.ealf MBP81.AAPLEFI4.88Z.0007.I00.1009231114.0.ealf MBP81.AAPLEFI4.88Z.0007.I00.1009271028.0.ealf MBP81.AAPLEFI4.88Z.0008.I00.1009291039.0.ealf MBP81.AAPLEFI4.88Z.0008.I00.1010020951.0.ealf MBP81.AAPLEFI4.88Z.0008.I00.1010041149.0.ealf MBP81.AAPLEFI4.88Z.0008.I00.1010050947.0.ealf MBP81.AAPLEFI4.88Z.0008.I00.1010051721.0.ealf MBP81.AAPLEFI4.88Z.0008.I00.1010090948.0.ealf MBP81.AAPLEFI4.88Z.0008.I00.1010111110.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1010130948.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1010131104.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1010170911.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1010181215.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1010200911.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1010200953.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1010220907.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1010270911.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1010290910.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1010291334.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1011020813.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1011021508.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1011050814.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1011051250.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1011100908.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1011101038.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1011110912.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1011121717.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1011160915.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1011210912.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1011220636.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1011290915.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1011291125.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1012010914.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1012011154.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1012020915.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1012050911.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1012080910.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1012081134.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1012120910.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1012131136.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1012150919.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1012151059.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1012170922.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1012171129.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1012190927.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1012201104.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1012250928.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1012271035.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1101010926.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1101031514.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1101050927.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1101051125.0.ealf MBP81.AAPLEFI4.88Z.0009.I00.1101070923.0.ealf MBP81.AAPLEFI4.88Z.0009.I01.1101100926.0.ealf MBP81.AAPLEFI4.88Z.0009.I01.1101101111.0.ealf MBP81.AAPLEFI4.88Z.0009.I01.1101120928.0.ealf MBP81.AAPLEFI4.88Z.0009.I01.1101121200.0.ealf MBP81.AAPLEFI4.88Z.0009.I01.1101141645.0.ealf MBP81.AAPLEFI4.88Z.0009.I01.1101141819.0.ealf MBP81.AAPLEFI4.88Z.0009.I01.1101150923.0.ealf MBP81.AAPLEFI4.88Z.0009.I01.1101151124.0.ealf MBP81.AAPLEFI4.88Z.0009.I01.1101190937.0.ealf MBP81.AAPLEFI4.88Z.0009.I01.1101191059.0.ealf MBP81.AAPLEFI4.88Z.0009.I01.1101191814.0.ealf MBP81.AAPLEFI4.88Z.0009.I01.1101210924.0.ealf MBP81.AAPLEFI4.88Z.0009.I01.1101211514.0.ealf MBP81.AAPLEFI4.88Z.0009.I01.1101220928.0.ealf MBP81.AAPLEFI4.88Z.0009.I01.1101220928.1.ealf MBP81.AAPLEFI4.88Z.0009.I01.1101230924.0.ealf MBP81.AAPLEFI4.88Z.0009.I01.1101231134.0.ealf MBP81.AAPLEFI4.88Z.0009.I01.1101282108.0.ealf MBP81.AAPLEFI4.88Z.0009.I01.1102022358.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1102021106.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1102030931.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1102041819.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1102071705.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1103021059.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1103091154.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1103161348.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1103242113.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1103301200.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1104061123.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1104111855.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1104150725.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1104201033.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1104221555.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1107141149.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1107281122.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1108031501.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1108101818.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1108151745.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1108180842.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1108251704.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1108291539.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1109011021.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1109071116.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1109091242.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1109141951.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1109150518.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1109211336.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1109212241.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1109231544.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1109240018.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1109281425.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1110061632.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1110141128.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1110311250.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1201241644.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1404091743.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1411211557.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1506082157.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1509141026.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1510261534.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1610201932.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1612201423.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1701201815.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1702180125.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1703291134.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1704131704.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1704242025.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1704281723.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1705021652.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1705101322.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1706170647.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1706220747.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1706261917.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1707271211.0.ealf MBP81.AAPLEFI4.88Z.0009.I02.1708080651.0.ealf MBP91.88Z.F000.B00.1912181730.0.ealf MBP91.AAPLEFI4.88Z.0011.I00.1108101438.0.ealf MBP91.AAPLEFI4.88Z.0011.I00.1108151010.0.ealf MBP91.AAPLEFI4.88Z.0011.I00.1108151051.0.ealf MBP91.AAPLEFI4.88Z.0011.I00.1108151158.0.ealf MBP91.AAPLEFI4.88Z.0011.I00.1108151229.0.ealf MBP91.AAPLEFI4.88Z.0011.I00.1108171239.0.ealf MBP91.AAPLEFI4.88Z.0011.I00.1108171455.0.ealf MBP91.AAPLEFI4.88Z.0011.I00.1108182037.0.ealf MBP91.AAPLEFI4.88Z.0011.I00.1108221029.0.ealf MBP91.AAPLEFI4.88Z.0011.I00.1108240732.0.ealf MBP91.AAPLEFI4.88Z.0011.I00.1108240851.0.ealf MBP91.AAPLEFI4.88Z.0011.I00.1108290950.0.ealf MBP91.AAPLEFI4.88Z.0011.I00.1108291009.0.ealf MBP91.AAPLEFI4.88Z.0011.I00.1108311344.0.ealf MBP91.AAPLEFI4.88Z.0011.I00.1109011003.0.ealf MBP91.AAPLEFI4.88Z.0011.I00.1109071042.0.ealf MBP91.AAPLEFI4.88Z.0011.I00.1109120938.0.ealf MBP91.AAPLEFI4.88Z.0012.I00.1109141014.0.ealf MBP91.AAPLEFI4.88Z.0012.I00.1109141045.0.ealf MBP91.AAPLEFI4.88Z.0012.I00.1109190952.0.ealf MBP91.AAPLEFI4.88Z.0012.I00.1109191026.0.ealf MBP91.AAPLEFI4.88Z.0012.I00.1109211037.0.ealf MBP91.AAPLEFI4.88Z.0012.I00.1109211108.0.ealf MBP91.AAPLEFI4.88Z.0012.I00.1109260950.0.ealf MBP91.AAPLEFI4.88Z.0012.I00.1109271122.0.ealf MBP91.AAPLEFI4.88Z.0012.I00.1109271154.0.ealf MBP91.AAPLEFI4.88Z.0012.I00.1110031002.0.ealf MBP91.AAPLEFI4.88Z.0012.I00.1110031550.0.ealf MBP91.AAPLEFI4.88Z.0012.I00.1110031624.0.ealf MBP91.AAPLEFI4.88Z.0012.I00.1110050943.0.ealf MBP91.AAPLEFI4.88Z.0012.I00.1110051014.0.ealf MBP91.AAPLEFI4.88Z.0012.I00.1110100943.0.ealf MBP91.AAPLEFI4.88Z.0012.I00.1110101024.0.ealf MBP91.AAPLEFI4.88Z.0012.I00.1110121145.0.ealf MBP91.AAPLEFI4.88Z.0012.I00.1110121224.0.ealf MBP91.AAPLEFI4.88Z.0012.I00.1110170947.0.ealf MBP91.AAPLEFI4.88Z.0012.I00.1110201059.0.ealf MBP91.AAPLEFI4.88Z.0012.I00.1110211410.0.ealf MBP91.AAPLEFI4.88Z.0012.I00.1110211654.0.ealf MBP91.AAPLEFI4.88Z.0012.I00.1110260953.0.ealf MBP91.AAPLEFI4.88Z.0012.I00.1110270932.0.ealf MBP91.AAPLEFI4.88Z.0012.I00.1110271505.0.ealf MBP91.AAPLEFI4.88Z.0012.I00.1110271556.0.ealf MBP91.AAPLEFI4.88Z.0012.I00.1111020932.0.ealf MBP91.AAPLEFI4.88Z.0012.I00.1111021220.0.ealf MBP91.AAPLEFI4.88Z.0012.I00.1111070952.0.ealf MBP91.AAPLEFI4.88Z.0012.I00.1111071049.0.ealf MBP91.AAPLEFI4.88Z.0012.I00.1111091018.0.ealf MBP91.AAPLEFI4.88Z.0012.I00.1111091102.0.ealf MBP91.AAPLEFI4.88Z.0013.I00.1111141507.0.ealf MBP91.AAPLEFI4.88Z.0013.I00.1111171322.0.ealf MBP91.AAPLEFI4.88Z.0013.I00.1111280948.0.ealf MBP91.AAPLEFI4.88Z.0013.I00.1111281040.0.ealf MBP91.AAPLEFI4.88Z.0013.I00.1111301450.0.ealf MBP91.AAPLEFI4.88Z.0013.I00.1111301545.0.ealf MBP91.AAPLEFI4.88Z.0013.I00.1112051020.0.ealf MBP91.AAPLEFI4.88Z.0013.I00.1112051117.0.ealf MBP91.AAPLEFI4.88Z.0013.I00.1112051211.0.ealf MBP91.AAPLEFI4.88Z.0013.I00.1112070946.0.ealf MBP91.AAPLEFI4.88Z.0013.I00.1112071043.0.ealf MBP91.AAPLEFI4.88Z.0013.I00.1112121146.0.ealf MBP91.AAPLEFI4.88Z.0013.I00.1112121305.0.ealf MBP91.AAPLEFI4.88Z.0013.I00.1112140956.0.ealf MBP91.AAPLEFI4.88Z.0013.I00.1112141058.0.ealf MBP91.AAPLEFI4.88Z.0013.I00.1112201140.0.ealf MBP91.AAPLEFI4.88Z.0013.I00.1112201339.0.ealf MBP91.AAPLEFI4.88Z.0013.I00.1201041310.0.ealf MBP91.AAPLEFI4.88Z.0013.I00.1201041425.0.ealf MBP91.AAPLEFI4.88Z.0013.I00.1201062157.0.ealf MBP91.AAPLEFI4.88Z.0013.I00.1201062224.0.ealf MBP91.AAPLEFI4.88Z.0013.I00.1201120937.0.ealf MBP91.AAPLEFI4.88Z.0013.I00.1201121147.0.ealf MBP91.AAPLEFI4.88Z.0013.I00.1201121220.0.ealf MBP91.AAPLEFI4.88Z.0013.I00.1201160947.0.ealf MBP91.AAPLEFI4.88Z.0013.I00.1201161303.0.ealf MBP91.AAPLEFI4.88Z.0013.I00.1201161358.0.ealf MBP91.AAPLEFI4.88Z.0013.I00.1201181137.0.ealf MBP91.AAPLEFI4.88Z.0013.I00.1201181211.0.ealf MBP91.AAPLEFI4.88Z.0013.I00.1201230951.0.ealf MBP91.AAPLEFI4.88Z.0013.I00.1201231032.0.ealf MBP91.AAPLEFI4.88Z.0013.I00.1201250939.0.ealf MBP91.AAPLEFI4.88Z.0013.I00.1201251022.0.ealf MBP91.AAPLEFI4.88Z.0013.I00.1201301018.0.ealf MBP91.AAPLEFI4.88Z.0013.I00.1201301058.0.ealf MBP91.AAPLEFI4.88Z.0013.I00.1202011010.0.ealf MBP91.AAPLEFI4.88Z.0013.I00.1202011331.0.ealf MBP91.AAPLEFI4.88Z.0013.I00.1202061139.0.ealf MBP91.AAPLEFI4.88Z.0013.I00.1202061333.0.ealf MBP91.AAPLEFI4.88Z.0013.I00.1202081118.0.ealf MBP91.AAPLEFI4.88Z.0013.I00.1202081208.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.0000000000.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1202131043.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1202131135.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1202151049.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1202151130.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1202201117.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1202201259.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1202221013.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1202221148.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1202241139.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1202251052.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1202251119.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1202291148.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1202291207.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1203051001.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1203051023.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1203071032.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1203071112.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1203081035.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1203081110.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1203091410.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1203091712.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1203120956.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1203121154.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1203131744.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1203141235.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1203141254.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1203151822.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1203151848.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1203191245.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1203191305.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1203191306.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1203191520.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1203211509.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1203211536.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1203261014.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1203261059.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1203281126.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1203281326.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1204181246.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1204181313.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1205041512.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1205041549.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1205101121.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1205101148.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1205101838.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1205101904.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1207271032.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1207271103.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1208081105.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1208081131.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1302061104.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1302061158.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1302061204.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1504291452.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1504291456.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1506081208.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1506081214.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1509111646.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1509111652.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1602221701.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1602221712.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1610201607.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1610201614.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1612161003.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1612161009.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1701200227.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1701200233.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1701231856.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1701231904.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1701241625.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1701241631.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1702021808.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1702021828.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1702171514.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1702171521.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1703082356.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1703090008.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1703221856.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1703221900.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1705011406.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1705011411.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1705012100.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1705012105.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1706182353.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1706182357.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1706221015.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1706221020.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1706261209.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1706261216.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1707270908.0.ealf MBP91.AAPLEFI4.88Z.0014.I00.1708080744.0.ealf MM51.AAPLEFI4.88Z.0009.I00.1010170858.0.ealf MM51.AAPLEFI4.88Z.0009.I00.1010200858.0.ealf MM51.AAPLEFI4.88Z.0009.I00.1010230857.0.ealf MM51.AAPLEFI4.88Z.0009.I00.1010270858.0.ealf MM51.AAPLEFI4.88Z.0009.I00.1010290858.0.ealf MM51.AAPLEFI4.88Z.0009.I00.1011020758.0.ealf MM51.AAPLEFI4.88Z.0009.I00.1011050801.0.ealf MM51.AAPLEFI4.88Z.0009.I00.1011100902.0.ealf MM51.AAPLEFI4.88Z.0009.I00.1011110859.0.ealf MM51.AAPLEFI4.88Z.0009.I00.1011160900.0.ealf MM51.AAPLEFI4.88Z.0009.I00.1011210900.0.ealf MM51.AAPLEFI4.88Z.0009.I00.1011290901.0.ealf MM51.AAPLEFI4.88Z.0009.I00.1012010901.0.ealf MM51.AAPLEFI4.88Z.0009.I00.1012020901.0.ealf MM51.AAPLEFI4.88Z.0009.I00.1012050859.0.ealf MM51.AAPLEFI4.88Z.0009.I00.1012080859.0.ealf MM51.AAPLEFI4.88Z.0009.I00.1012081210.0.ealf MM51.AAPLEFI4.88Z.0009.I00.1012120907.0.ealf MM51.AAPLEFI4.88Z.0009.I00.1012131137.0.ealf MM51.AAPLEFI4.88Z.0009.I00.1012150907.0.ealf MM51.AAPLEFI4.88Z.0009.I00.1012151059.0.ealf MM51.AAPLEFI4.88Z.0009.I00.1012190912.0.ealf MM51.AAPLEFI4.88Z.0009.I00.1012201104.0.ealf MM51.AAPLEFI4.88Z.0009.I00.1101010913.0.ealf MM51.AAPLEFI4.88Z.0009.I00.1101031515.0.ealf MM51.AAPLEFI4.88Z.0009.I00.1101050912.0.ealf MM51.AAPLEFI4.88Z.0009.I00.1101051127.0.ealf MM51.AAPLEFI4.88Z.000A.I00.1101100912.0.ealf MM51.AAPLEFI4.88Z.000A.I00.1101101135.0.ealf MM51.AAPLEFI4.88Z.000A.I00.1101120913.0.ealf MM51.AAPLEFI4.88Z.000A.I00.1101121201.0.ealf MM51.AAPLEFI4.88Z.000A.I00.1101140913.0.ealf MM51.AAPLEFI4.88Z.000A.I00.1101150912.0.ealf MM51.AAPLEFI4.88Z.000A.I00.1101171151.0.ealf MM51.AAPLEFI4.88Z.000C.I00.1101190924.0.ealf MM51.AAPLEFI4.88Z.000C.I00.1101191059.0.ealf MM51.AAPLEFI4.88Z.000C.I00.1101200933.0.ealf MM51.AAPLEFI4.88Z.000C.I00.1101210919.0.ealf MM51.AAPLEFI4.88Z.000D.I00.1101220928.0.ealf MM51.AAPLEFI4.88Z.000D.I00.1101230921.0.ealf MM51.AAPLEFI4.88Z.000D.I00.1101240912.0.ealf MM51.AAPLEFI4.88Z.000D.I00.1101241139.0.ealf MM51.AAPLEFI4.88Z.000D.I00.1101250919.0.ealf MM51.AAPLEFI4.88Z.000D.I00.1101260911.0.ealf MM51.AAPLEFI4.88Z.000D.I00.1101261042.0.ealf MM51.AAPLEFI4.88Z.000D.I00.1101270934.0.ealf MM51.AAPLEFI4.88Z.000D.I00.1101280922.0.ealf MM51.AAPLEFI4.88Z.000D.I00.1101290932.0.ealf MM51.AAPLEFI4.88Z.000D.I00.1101310938.0.ealf MM51.AAPLEFI4.88Z.000D.I00.1101311143.0.ealf MM51.AAPLEFI4.88Z.000D.I00.1101311851.0.ealf MM51.AAPLEFI4.88Z.000D.I00.1102030926.0.ealf MM51.AAPLEFI4.88Z.000E.I00.1102091751.0.ealf MM51.AAPLEFI4.88Z.000E.I00.1102141048.0.ealf MM51.AAPLEFI4.88Z.000E.I00.1102161116.0.ealf MM51.AAPLEFI4.88Z.000E.I00.1102211052.0.ealf MM51.AAPLEFI4.88Z.000E.I00.1102231153.0.ealf MM51.AAPLEFI4.88Z.000E.I00.1102251052.0.ealf MM51.AAPLEFI4.88Z.000E.I00.1102281126.0.ealf MM51.AAPLEFI4.88Z.000E.I00.1103021054.0.ealf MM51.AAPLEFI4.88Z.000E.I00.1103070731.0.ealf MM51.AAPLEFI4.88Z.000E.I00.1103091937.0.ealf MM51.AAPLEFI4.88Z.000E.I00.1103161348.0.ealf MM51.AAPLEFI4.88Z.000E.I00.1103211026.0.ealf MM51.AAPLEFI4.88Z.000E.I00.1103211031.0.ealf MM51.AAPLEFI4.88Z.000E.I00.1103231036.0.ealf MM51.AAPLEFI4.88Z.000E.I00.1103281025.0.ealf MM51.AAPLEFI4.88Z.000E.I00.1103281030.0.ealf MM51.AAPLEFI4.88Z.000E.I00.1103301120.0.ealf MM51.AAPLEFI4.88Z.000E.I00.1104041043.0.ealf MM51.AAPLEFI4.88Z.000E.I00.1104061117.0.ealf MM51.AAPLEFI4.88Z.000E.I00.1104061122.0.ealf MM51.AAPLEFI4.88Z.000E.I00.1104131115.0.ealf MM51.AAPLEFI4.88Z.000E.I00.1104181024.0.ealf MM51.AAPLEFI4.88Z.000E.I00.1104181030.0.ealf MM51.AAPLEFI4.88Z.000E.I00.1104201030.0.ealf MM51.AAPLEFI4.88Z.000E.I00.1104251122.0.ealf MM51.AAPLEFI4.88Z.000E.I00.1104271026.0.ealf MM51.AAPLEFI4.88Z.000F.I00.1105021032.0.ealf MM51.AAPLEFI4.88Z.000F.I00.1105050916.0.ealf MM51.AAPLEFI4.88Z.000F.I00.1105091028.0.ealf MM51.AAPLEFI4.88Z.000F.I00.1105111247.0.ealf MM51.AAPLEFI4.88Z.000F.I00.1105111400.0.ealf MM51.AAPLEFI4.88Z.000F.I00.1105160959.0.ealf MM51.AAPLEFI4.88Z.000F.I00.1105161031.0.ealf MM51.AAPLEFI4.88Z.000F.I00.1105181142.0.ealf MM51.AAPLEFI4.88Z.000F.I00.1105181211.0.ealf MM51.AAPLEFI4.88Z.000F.I00.1105231054.0.ealf MM51.AAPLEFI4.88Z.000F.I00.1105231132.0.ealf MM51.AAPLEFI4.88Z.000F.I00.1105251109.0.ealf MM51.AAPLEFI4.88Z.000F.I00.1105251142.0.ealf MM51.AAPLEFI4.88Z.000F.I00.1105271358.0.ealf MM51.AAPLEFI4.88Z.000F.I00.1105271441.0.ealf MM51.AAPLEFI4.88Z.000F.I00.1106011420.0.ealf MM51.AAPLEFI4.88Z.000F.I00.1106011454.0.ealf MM51.AAPLEFI4.88Z.000F.I00.1106061000.0.ealf MM51.AAPLEFI4.88Z.000F.I00.1106061029.0.ealf MM51.AAPLEFI4.88Z.000F.I01.1106081014.0.ealf MM51.AAPLEFI4.88Z.000F.I01.1106081046.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1106101105.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1106132213.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1106140816.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1106151001.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1106151037.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1106162146.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1106162216.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1106200956.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1106201202.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1106201233.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1106221510.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1106221623.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1106231540.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1106232231.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1106232352.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1106271223.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1106271442.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1107271705.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1107271736.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1108031123.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1108031344.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1108101016.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1108101049.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1108171238.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1108171440.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1108171509.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1108291522.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1108311547.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1109011011.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1109011050.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1109071213.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1109071242.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1109091159.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1109091225.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1109141942.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1109142033.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1109211406.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1109231610.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1110141153.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1110201308.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1201241544.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1201241549.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1506081722.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1506081728.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1509111552.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1509111558.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1510261804.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1606291827.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1610201607.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1610201614.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1612161003.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1612161009.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1701200227.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1701200234.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1701231856.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1701231905.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1702171514.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1702171522.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1702201321.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1702201326.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1703090219.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1703090225.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1703232120.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1703232137.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1704131531.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1704131536.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1705011209.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1705011214.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1706191359.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1706191403.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1706220614.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1706220620.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1706261432.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1706261437.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1707270909.0.ealf MM51.AAPLEFI4.88Z.000F.I02.1708080744.0.ealf MM61.88Z.F000.B00.1912181603.0.ealf MM61.AAPLEFI4.88Z.0012.I00.1110171020.0.ealf MM61.AAPLEFI4.88Z.0012.I00.1111020932.0.ealf MM61.AAPLEFI4.88Z.0012.I00.1111070952.0.ealf MM61.AAPLEFI4.88Z.0012.I00.1111091021.0.ealf MM61.AAPLEFI4.88Z.0013.I00.1111141507.0.ealf MM61.AAPLEFI4.88Z.0013.I00.1111171342.0.ealf MM61.AAPLEFI4.88Z.0013.I00.1111280948.0.ealf MM61.AAPLEFI4.88Z.0013.I00.1111281040.0.ealf MM61.AAPLEFI4.88Z.0013.I00.1111301453.0.ealf MM61.AAPLEFI4.88Z.0013.I00.1111301545.0.ealf MM61.AAPLEFI4.88Z.0013.I00.1112051019.0.ealf MM61.AAPLEFI4.88Z.0013.I00.1112051118.0.ealf MM61.AAPLEFI4.88Z.0013.I00.1112051211.0.ealf MM61.AAPLEFI4.88Z.0013.I00.1112070946.0.ealf MM61.AAPLEFI4.88Z.0013.I00.1112071043.0.ealf MM61.AAPLEFI4.88Z.0013.I00.1112121146.0.ealf MM61.AAPLEFI4.88Z.0013.I00.1112121305.0.ealf MM61.AAPLEFI4.88Z.0013.I00.1112141008.0.ealf MM61.AAPLEFI4.88Z.0013.I00.1112141058.0.ealf MM61.AAPLEFI4.88Z.0013.I00.1112201138.0.ealf MM61.AAPLEFI4.88Z.0013.I00.1112201339.0.ealf MM61.AAPLEFI4.88Z.0013.I00.1201041309.0.ealf MM61.AAPLEFI4.88Z.0013.I00.1201041425.0.ealf MM61.AAPLEFI4.88Z.0013.I00.1201090945.0.ealf MM61.AAPLEFI4.88Z.0013.I00.1201091030.0.ealf MM61.AAPLEFI4.88Z.0013.I00.1201120937.0.ealf MM61.AAPLEFI4.88Z.0013.I00.1201121027.0.ealf MM61.AAPLEFI4.88Z.0013.I00.1201161024.0.ealf MM61.AAPLEFI4.88Z.0013.I00.1201161106.0.ealf MM61.AAPLEFI4.88Z.0013.I00.1201181157.0.ealf MM61.AAPLEFI4.88Z.0013.I00.1201181234.0.ealf MM61.AAPLEFI4.88Z.0013.I00.1201230952.0.ealf MM61.AAPLEFI4.88Z.0013.I00.1201231032.0.ealf MM61.AAPLEFI4.88Z.0013.I00.1201251021.0.ealf MM61.AAPLEFI4.88Z.0013.I00.1201251124.0.ealf MM61.AAPLEFI4.88Z.0013.I00.1201301018.0.ealf MM61.AAPLEFI4.88Z.0013.I00.1201301058.0.ealf MM61.AAPLEFI4.88Z.0013.I00.1202011047.0.ealf MM61.AAPLEFI4.88Z.0013.I00.1202011118.0.ealf MM61.AAPLEFI4.88Z.0013.I00.1202061146.0.ealf MM61.AAPLEFI4.88Z.0013.I00.1202061333.0.ealf MM61.AAPLEFI4.88Z.0013.I00.1202061417.0.ealf MM61.AAPLEFI4.88Z.0013.I00.1202081041.0.ealf MM61.AAPLEFI4.88Z.0013.I00.1202081208.0.ealf MM61.AAPLEFI4.88Z.0014.I00.0000000000.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1202131131.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1202131211.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1202151012.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1202151052.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1202201143.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1202201301.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1202221015.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1202221149.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1202270953.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1202271033.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1202291155.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1202291238.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1203051026.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1203051102.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1203071107.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1203071145.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1203120956.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1203121259.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1203140947.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1203141013.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1203190958.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1203191021.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1203210941.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1203211019.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1203261016.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1203261059.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1203281127.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1203281326.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1204021117.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1204021140.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1204041151.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1204041213.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1204091153.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1204091337.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1204110951.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1204111207.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1204160951.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1204161014.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1204180957.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1204181043.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1204231017.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1204231109.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1204250940.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1204251024.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1204251115.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1204300952.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1204301036.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1205020951.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1205071045.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1205071121.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1205091022.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1205091101.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1205140949.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1205141019.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1205161032.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1205211031.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1205211108.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1205230945.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1205231023.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1205300954.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1205301024.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1206041016.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1206041047.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1206061023.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1206061101.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1206111004.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1206111035.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1206131004.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1206131035.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1206181001.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1206181044.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1206201018.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1206201059.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1206251011.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1206251049.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1206271007.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1206271104.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1207021029.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1207021115.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1207091006.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1207091352.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1207111001.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1207111359.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1207161014.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1207161047.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1207171148.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1207171406.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1207171438.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1207181033.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1207181110.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1207231047.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1207231118.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1207251016.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1207251054.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1207301044.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1207301122.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1208061023.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1208061129.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1208081006.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1208081548.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1208081616.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1208090842.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1208091051.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1208091120.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1211161109.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1211161132.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1211161202.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1309191428.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1309191433.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1506081208.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1506081214.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1506081359.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1506081405.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1507101017.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1507101043.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1509111646.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1509111653.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1610201648.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1610201653.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1612161124.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1612161130.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1701200120.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1701200126.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1701231856.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1701231907.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1701241625.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1701241632.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1702021808.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1702021830.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1702171714.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1702171720.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1703082356.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1703090009.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1703212034.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1703212039.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1705011508.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1705011514.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1706190947.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1706190954.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1706220458.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1706220503.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1706261209.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1706261217.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1707271000.0.ealf MM61.AAPLEFI4.88Z.0014.I00.1708080649.0.ealf MM71.88Z.F000.B00.1912161438.0.ealf MP61.88Z.F000.B00.1912181758.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1309251543.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1309251543.1.ealf MP61.AAPLEFI5.88Z.0017.I00.1310011106.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1310021032.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1310041108.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1310071034.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1310091025.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1310091030.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1310141105.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1310161051.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1310211035.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1310231030.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1310281050.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1310301042.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1311011054.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1311020955.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1311211810.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1311222013.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1312061508.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1402141110.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1402141115.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1408281630.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1408281640.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1408291649.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1408291655.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1410131006.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1410131032.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1411050951.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1411051458.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1411131657.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1411131702.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1411141736.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1411141741.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1411201041.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1411201134.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1501071118.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1501071126.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1502131710.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1502131715.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1504291754.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1504291759.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1505141121.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1505141126.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1506050539.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1506050547.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1509081425.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1509081436.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1602221551.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1602221559.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1605171347.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1605171350.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1608231225.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1608231228.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1608261904.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1608261907.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1610051051.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1610051056.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1610201517.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1610201523.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1612151849.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1612151900.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1701131523.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1701131542.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1702021713.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1702021720.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1702171850.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1702171856.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1703090219.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1703090226.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1703231639.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1703231703.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1703281328.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1703281336.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1705011710.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1705011717.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1706200304.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1706200309.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1706221129.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1706221151.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1706261347.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1706261354.0.ealf MP61.AAPLEFI5.88Z.0017.I00.1707271003.0.ealf MP61.AAPLEFI5.88Z.9982.I99.0000000000.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1310011106.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1310021032.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1310041108.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1310071034.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1310091025.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1310091030.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1310141105.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1310161051.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1310211035.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1310231030.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1310281050.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1310301042.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1311011054.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1311020955.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1311211810.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1311222013.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1312061508.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1402141110.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1402141115.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1408281630.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1408281640.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1408291649.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1408291655.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1410131027.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1410131032.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1411051453.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1411051458.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1411131657.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1411131702.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1411141736.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1411141741.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1411201128.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1411201134.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1501071118.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1501071126.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1502131710.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1502131715.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1504291754.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1504291759.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1505141121.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1505141126.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1506050539.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1506050547.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1509081425.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1509081436.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1602221551.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1602221559.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1610051051.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1610051056.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1610201517.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1610201523.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1612151849.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1612151900.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1701131523.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1701131542.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1702021713.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1702021720.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1702171850.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1702171856.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1703090219.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1703090226.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1703231639.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1703231703.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1703281328.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1703281336.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1705011710.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1705011717.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1706200304.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1706200309.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1706221129.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1706221151.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1706261347.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1706261354.0.ealf MP61.AAPLEFI5.88Z.9982.I99.1708080652.0.ealf /usr/libexec/firmwarecheckers/eficheck/localization: Contents /usr/libexec/firmwarecheckers/eficheck/localization/Contents: Resources /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources: Dutch.lproj English.lproj French.lproj German.lproj Italian.lproj Japanese.lproj Spanish.lproj ar.lproj ca.lproj cs.lproj da.lproj el.lproj en_AU.lproj en_GB.lproj es_419.lproj fi.lproj fr_CA.lproj he.lproj hi.lproj hr.lproj hu.lproj id.lproj ko.lproj ms.lproj no.lproj pl.lproj pt.lproj pt_PT.lproj ro.lproj ru.lproj sk.lproj sv.lproj th.lproj tr.lproj uk.lproj vi.lproj zh_CN.lproj zh_HK.lproj zh_TW.lproj /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/Dutch.lproj: Localizable.strings /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/English.lproj: Localizable.strings /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/French.lproj: Localizable.strings /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/German.lproj: Localizable.strings /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/Italian.lproj: Localizable.strings /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/Japanese.lproj: Localizable.strings /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/Spanish.lproj: Localizable.strings /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/ar.lproj: Localizable.strings /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/ca.lproj: Localizable.strings /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/cs.lproj: Localizable.strings /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/da.lproj: Localizable.strings /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/el.lproj: Localizable.strings /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/en_AU.lproj: Localizable.strings /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/en_GB.lproj: Localizable.strings /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/es_419.lproj: Localizable.strings /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/fi.lproj: Localizable.strings /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/fr_CA.lproj: Localizable.strings /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/he.lproj: Localizable.strings /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/hi.lproj: Localizable.strings /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/hr.lproj: Localizable.strings /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/hu.lproj: Localizable.strings /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/id.lproj: Localizable.strings /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/ko.lproj: Localizable.strings /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/ms.lproj: Localizable.strings /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/no.lproj: Localizable.strings /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/pl.lproj: Localizable.strings /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/pt.lproj: Localizable.strings /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/pt_PT.lproj: Localizable.strings /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/ro.lproj: Localizable.strings /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/ru.lproj: Localizable.strings /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/sk.lproj: Localizable.strings /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/sv.lproj: Localizable.strings /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/th.lproj: Localizable.strings /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/tr.lproj: Localizable.strings /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/uk.lproj: Localizable.strings /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/vi.lproj: Localizable.strings /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/zh_CN.lproj: Localizable.strings /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/zh_HK.lproj: Localizable.strings /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/zh_TW.lproj: Localizable.strings /usr/libexec/firmwarecheckers/ethcheck: ethcheck /usr/libexec/postfix: anvil bounce cleanup discard dnsblog error flush greylist.pl lmtp local master mk_postfix_spool.sh nqmgr oqmgr pickup pipe post-install postfix-script postfix-tls-script postfix-wrapper postfixsetup postmulti-script postscreen proxymap qmgr qmqp-sink qmqp-source qmqpd scache scripts set_credentials.sh showq smtp smtp-sink smtp-source smtpd spawn tlsmgr tlsproxy trivial-rewrite verify virtual /usr/libexec/postfix/scripts: /usr/libexec/wfs: Kurl.bundle webdavsharing_mapper webdavsharing_virtual_root /usr/local: Caskroom Cellar Frameworks Homebrew LANDesk bin etc ibmcloud include jamf lib opt sbin share var /usr/local/Caskroom: /usr/local/Cellar: cdrtools freetype gdbm gettext glib helm ilmbase imagemagick jpeg jq kubernetes-helm libde265 libffi libheif libomp libpng libtiff libtool little-cms2 nmap oniguruma openexr openjpeg openssl openssl@1.1 pcre picocom python readline shared-mime-info socat sqlite ttygif ttyrec webp x265 xz /usr/local/Cellar/cdrtools: 3.01_1 /usr/local/Cellar/cdrtools/3.01_1: ABOUT COPYING Changelog INSTALL_RECEIPT.json README bin etc include lib sbin share /usr/local/Cellar/cdrtools/3.01_1/bin: btcflash cdda2mp3 cdda2ogg cdda2wav cdrecord devdump isodebug isodump isoinfo isovfy mkhybrid mkisofs readcd scgcheck scgskeleton /usr/local/Cellar/cdrtools/3.01_1/etc: default /usr/local/Cellar/cdrtools/3.01_1/etc/default: cdrecord rscsi /usr/local/Cellar/cdrtools/3.01_1/include: scg /usr/local/Cellar/cdrtools/3.01_1/include/scg: aspi-dos.h aspi-win32.h scgcmd.h scgio.h scgops.h scsicdb.h scsidefs.h scsireg.h scsisense.h scsitransp.h spti-wnt.h srb_os2.h /usr/local/Cellar/cdrtools/3.01_1/lib: libcdrdeflt.a libedc_ecc.a libedc_ecc_dec.a libfile.a libhfs.a libmdigest.a libparanoia.a librscg.a libscg.a libscgcmd.a libsiconv.a siconv /usr/local/Cellar/cdrtools/3.01_1/lib/siconv: cp10000 cp10006 cp10007 cp10029 cp10079 cp10081 cp1250 cp1251 cp1252 cp1253 cp1254 cp1255 cp1256 cp1257 cp1258 cp437 cp737 cp775 cp850 cp852 cp855 cp857 cp860 cp861 cp862 cp863 cp864 cp865 cp866 cp869 cp874 iso8859-1 iso8859-10 iso8859-11 iso8859-13 iso8859-14 iso8859-15 iso8859-16 iso8859-2 iso8859-3 iso8859-4 iso8859-5 iso8859-6 iso8859-7 iso8859-8 iso8859-9 koi8-r koi8-u /usr/local/Cellar/cdrtools/3.01_1/sbin: rscsi /usr/local/Cellar/cdrtools/3.01_1/share: doc man /usr/local/Cellar/cdrtools/3.01_1/share/doc: cdda2wav cdrecord libparanoia mkisofs rscsi /usr/local/Cellar/cdrtools/3.01_1/share/doc/cdda2wav: README /usr/local/Cellar/cdrtools/3.01_1/share/doc/cdrecord: README README.ATAPI README.DiskT@2 README.WORM README.audio README.cdplus README.cdrw README.cdtext README.clone README.copy README.multi README.parallel README.raw README.rscsi README.solaris-x86-ATAPI-DMA README.solaris-x86-ata-DMA README.sony README.sun-lofi README.verify README.volmgt /usr/local/Cellar/cdrtools/3.01_1/share/doc/libparanoia: README.interface README.paranoia /usr/local/Cellar/cdrtools/3.01_1/share/doc/mkisofs: README README.compression README.eltorito README.graft_dirs README.hfs_boot README.hfs_magic README.hide README.joliet README.macosx README.mkhybrid README.prep_boot README.rootinfo README.session README.sort README.sparcboot README.sunx86boot /usr/local/Cellar/cdrtools/3.01_1/share/doc/rscsi: default-rscsi.sample /usr/local/Cellar/cdrtools/3.01_1/share/man: man1 man3 man8 /usr/local/Cellar/cdrtools/3.01_1/share/man/man1: btcflash.1 cdda2mp3.1 cdda2ogg.1 cdda2wav.1 cdrecord.1 readcd.1 rscsi.1 scgcheck.1 scgskeleton.1 /usr/local/Cellar/cdrtools/3.01_1/share/man/man3: absfpath.3 absnpath.3 abspath.3 astoi.3 astol.3 breakline.3 comerr.3 comerrno.3 errmsg.3 errmsgno.3 error.3 fdown.3 fdup.3 fexecl.3 fexecle.3 fexecv.3 fexecve.3 fgetline.3 file_raise.3 fileclose.3 fileluopen.3 fileopen.3 filepos.3 fileread.3 filereopen.3 fileseek.3 filesize.3 filestat.3 filewrite.3 findline.3 flush.3 fnmatch.3 format.3 fpipe.3 fprintf.3 getallargs.3 getargs.3 geterrno.3 getfiles.3 getline.3 handlecond.3 movebytes.3 ofindline.3 patcompile.3 patmatch.3 peekc.3 printf.3 raisecond.3 resolvefpath.3 resolvenpath.3 resolvepath.3 spawnl.3 spawnv.3 sprintf.3 strcatl.3 streql.3 strlen.3jc-1.17.3/tests/fixtures/osx-10.14.6/ls-al-streaming.json000066400000000000000000000101141415226333200225200ustar00rootroot00000000000000[{"filename":".","flags":"drwxr-xr-x","links":34,"owner":"root","group":"wheel","size":1088,"date":"Dec 12 00:13"},{"filename":"..","flags":"drwxr-xr-x","links":34,"owner":"root","group":"wheel","size":1088,"date":"Dec 12 00:13"},{"filename":".DS_Store","flags":"-rw-rw-r--","links":1,"owner":"root","group":"admin","size":8196,"date":"Jul 25 18:21"},{"filename":".DocumentRevisions-V100","flags":"d--x--x--x","links":9,"owner":"root","group":"wheel","size":288,"date":"Dec 12 00:14"},{"filename":".OSInstallerMessages","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":992,"date":"Dec 12 00:13"},{"filename":".PKInstallSandboxManager","flags":"drwxr-xr-x","links":2,"owner":"root","group":"wheel","size":64,"date":"May 4 2019"},{"filename":".PKInstallSandboxManager-SystemSoftware","flags":"drwx------","links":2,"owner":"root","group":"admin","size":64,"date":"Dec 12 00:13"},{"filename":".Spotlight-V100","flags":"drwx------","links":5,"owner":"root","group":"wheel","size":160,"date":"May 4 2019"},{"filename":".file","flags":"----------","links":1,"owner":"root","group":"admin","size":0,"date":"Feb 25 2019"},{"filename":".fseventsd","flags":"drwx------","links":68,"owner":"kbrazil","group":"staff","size":2176,"date":"Dec 12 09:47"},{"filename":".vol","flags":"drwxr-xr-x","links":2,"owner":"root","group":"wheel","size":64,"date":"Feb 25 2019"},{"filename":"Applications","flags":"drwxrwxr-x+","links":73,"owner":"root","group":"admin","size":2336,"date":"Dec 12 00:36"},{"filename":"Library","flags":"drwxr-xr-x+","links":69,"owner":"root","group":"wheel","size":2208,"date":"Dec 12 00:35"},{"filename":"Network","flags":"drwxr-xr-x","links":2,"owner":"root","group":"wheel","size":64,"date":"Feb 25 2019"},{"filename":"System","flags":"drwxr-xr-x@","links":5,"owner":"root","group":"wheel","size":160,"date":"May 3 2019"},{"filename":"Users","flags":"drwxr-xr-x","links":8,"owner":"root","group":"admin","size":256,"date":"Oct 14 07:21"},{"filename":"Volumes","flags":"drwxr-xr-x+","links":6,"owner":"root","group":"wheel","size":192,"date":"Dec 12 08:56"},{"filename":"bin","flags":"drwxr-xr-x@","links":37,"owner":"root","group":"wheel","size":1184,"date":"Dec 12 00:12"},{"filename":"cores","flags":"drwxrwxr-t","links":2,"owner":"root","group":"admin","size":64,"date":"Feb 25 2019"},{"filename":"dev","flags":"dr-xr-xr-x","links":3,"owner":"root","group":"wheel","size":7728,"date":"Dec 12 00:14"},{"filename":"etc","link_to":"private/etc","flags":"lrwxr-xr-x@","links":1,"owner":"root","group":"wheel","size":11,"date":"May 4 2019"},{"filename":"home","flags":"dr-xr-xr-x","links":2,"owner":"root","group":"wheel","size":1,"date":"Dec 12 07:41"},{"filename":"installer.failurerequests","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":313,"date":"Feb 24 2019"},{"filename":"net","flags":"dr-xr-xr-x","links":2,"owner":"root","group":"wheel","size":1,"date":"Dec 12 07:41"},{"filename":"obj_1_uhYWBO","flags":"-rw-------","links":1,"owner":"root","group":"wheel","size":11984,"date":"Jul 30 21:02"},{"filename":"obj_2_Q0HjZP","flags":"-rw-------","links":1,"owner":"root","group":"wheel","size":9080,"date":"Jul 30 21:02"},{"filename":"obj_3_OUvCmT","flags":"-rw-------","links":1,"owner":"root","group":"wheel","size":15912,"date":"Jul 30 21:02"},{"filename":"obj_4_q0hkvG","flags":"-rw-------","links":1,"owner":"root","group":"wheel","size":16880,"date":"Jul 30 21:02"},{"filename":"obj_5_qmI8ZT","flags":"-rw-------","links":1,"owner":"root","group":"wheel","size":9416,"date":"Jul 30 21:02"},{"filename":"private","flags":"drwxr-xr-x","links":6,"owner":"root","group":"wheel","size":192,"date":"May 3 2019"},{"filename":"sbin","flags":"drwxr-xr-x@","links":64,"owner":"root","group":"wheel","size":2048,"date":"Dec 12 00:12"},{"filename":"tmp","link_to":"private/tmp","flags":"lrwxr-xr-x@","links":1,"owner":"root","group":"wheel","size":11,"date":"May 4 2019"},{"filename":"usr","flags":"drwxr-xr-x@","links":9,"owner":"root","group":"wheel","size":288,"date":"May 3 2019"},{"filename":"var","link_to":"private/var","flags":"lrwxr-xr-x@","links":1,"owner":"root","group":"wheel","size":11,"date":"May 4 2019"}] jc-1.17.3/tests/fixtures/osx-10.14.6/ls-al.json000066400000000000000000000110551415226333200205360ustar00rootroot00000000000000[{"filename": ".", "flags": "drwxr-xr-x", "links": 34, "owner": "root", "group": "wheel", "size": 1088, "date": "Dec 12 00:13"}, {"filename": "..", "flags": "drwxr-xr-x", "links": 34, "owner": "root", "group": "wheel", "size": 1088, "date": "Dec 12 00:13"}, {"filename": ".DS_Store", "flags": "-rw-rw-r--", "links": 1, "owner": "root", "group": "admin", "size": 8196, "date": "Jul 25 18:21"}, {"filename": ".DocumentRevisions-V100", "flags": "d--x--x--x", "links": 9, "owner": "root", "group": "wheel", "size": 288, "date": "Dec 12 00:14"}, {"filename": ".OSInstallerMessages", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 992, "date": "Dec 12 00:13"}, {"filename": ".PKInstallSandboxManager", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "wheel", "size": 64, "date": "May 4 2019"}, {"filename": ".PKInstallSandboxManager-SystemSoftware", "flags": "drwx------", "links": 2, "owner": "root", "group": "admin", "size": 64, "date": "Dec 12 00:13"}, {"filename": ".Spotlight-V100", "flags": "drwx------", "links": 5, "owner": "root", "group": "wheel", "size": 160, "date": "May 4 2019"}, {"filename": ".file", "flags": "----------", "links": 1, "owner": "root", "group": "admin", "size": 0, "date": "Feb 25 2019"}, {"filename": ".fseventsd", "flags": "drwx------", "links": 68, "owner": "kbrazil", "group": "staff", "size": 2176, "date": "Dec 12 09:47"}, {"filename": ".vol", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "wheel", "size": 64, "date": "Feb 25 2019"}, {"filename": "Applications", "flags": "drwxrwxr-x+", "links": 73, "owner": "root", "group": "admin", "size": 2336, "date": "Dec 12 00:36"}, {"filename": "Library", "flags": "drwxr-xr-x+", "links": 69, "owner": "root", "group": "wheel", "size": 2208, "date": "Dec 12 00:35"}, {"filename": "Network", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "wheel", "size": 64, "date": "Feb 25 2019"}, {"filename": "System", "flags": "drwxr-xr-x@", "links": 5, "owner": "root", "group": "wheel", "size": 160, "date": "May 3 2019"}, {"filename": "Users", "flags": "drwxr-xr-x", "links": 8, "owner": "root", "group": "admin", "size": 256, "date": "Oct 14 07:21"}, {"filename": "Volumes", "flags": "drwxr-xr-x+", "links": 6, "owner": "root", "group": "wheel", "size": 192, "date": "Dec 12 08:56"}, {"filename": "bin", "flags": "drwxr-xr-x@", "links": 37, "owner": "root", "group": "wheel", "size": 1184, "date": "Dec 12 00:12"}, {"filename": "cores", "flags": "drwxrwxr-t", "links": 2, "owner": "root", "group": "admin", "size": 64, "date": "Feb 25 2019"}, {"filename": "dev", "flags": "dr-xr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 7728, "date": "Dec 12 00:14"}, {"filename": "etc", "link_to": "private/etc", "flags": "lrwxr-xr-x@", "links": 1, "owner": "root", "group": "wheel", "size": 11, "date": "May 4 2019"}, {"filename": "home", "flags": "dr-xr-xr-x", "links": 2, "owner": "root", "group": "wheel", "size": 1, "date": "Dec 12 07:41"}, {"filename": "installer.failurerequests", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 313, "date": "Feb 24 2019"}, {"filename": "net", "flags": "dr-xr-xr-x", "links": 2, "owner": "root", "group": "wheel", "size": 1, "date": "Dec 12 07:41"}, {"filename": "obj_1_uhYWBO", "flags": "-rw-------", "links": 1, "owner": "root", "group": "wheel", "size": 11984, "date": "Jul 30 21:02"}, {"filename": "obj_2_Q0HjZP", "flags": "-rw-------", "links": 1, "owner": "root", "group": "wheel", "size": 9080, "date": "Jul 30 21:02"}, {"filename": "obj_3_OUvCmT", "flags": "-rw-------", "links": 1, "owner": "root", "group": "wheel", "size": 15912, "date": "Jul 30 21:02"}, {"filename": "obj_4_q0hkvG", "flags": "-rw-------", "links": 1, "owner": "root", "group": "wheel", "size": 16880, "date": "Jul 30 21:02"}, {"filename": "obj_5_qmI8ZT", "flags": "-rw-------", "links": 1, "owner": "root", "group": "wheel", "size": 9416, "date": "Jul 30 21:02"}, {"filename": "private", "flags": "drwxr-xr-x", "links": 6, "owner": "root", "group": "wheel", "size": 192, "date": "May 3 2019"}, {"filename": "sbin", "flags": "drwxr-xr-x@", "links": 64, "owner": "root", "group": "wheel", "size": 2048, "date": "Dec 12 00:12"}, {"filename": "tmp", "link_to": "private/tmp", "flags": "lrwxr-xr-x@", "links": 1, "owner": "root", "group": "wheel", "size": 11, "date": "May 4 2019"}, {"filename": "usr", "flags": "drwxr-xr-x@", "links": 9, "owner": "root", "group": "wheel", "size": 288, "date": "May 3 2019"}, {"filename": "var", "link_to": "private/var", "flags": "lrwxr-xr-x@", "links": 1, "owner": "root", "group": "wheel", "size": 11, "date": "May 4 2019"}] jc-1.17.3/tests/fixtures/osx-10.14.6/ls-al.out000077500000000000000000000040771415226333200204050ustar00rootroot00000000000000total 196 drwxr-xr-x 34 root wheel 1088 Dec 12 00:13 . drwxr-xr-x 34 root wheel 1088 Dec 12 00:13 .. -rw-rw-r-- 1 root admin 8196 Jul 25 18:21 .DS_Store d--x--x--x 9 root wheel 288 Dec 12 00:14 .DocumentRevisions-V100 -rw-r--r-- 1 root wheel 992 Dec 12 00:13 .OSInstallerMessages drwxr-xr-x 2 root wheel 64 May 4 2019 .PKInstallSandboxManager drwx------ 2 root admin 64 Dec 12 00:13 .PKInstallSandboxManager-SystemSoftware drwx------ 5 root wheel 160 May 4 2019 .Spotlight-V100 ---------- 1 root admin 0 Feb 25 2019 .file drwx------ 68 kbrazil staff 2176 Dec 12 09:47 .fseventsd drwxr-xr-x 2 root wheel 64 Feb 25 2019 .vol drwxrwxr-x+ 73 root admin 2336 Dec 12 00:36 Applications drwxr-xr-x+ 69 root wheel 2208 Dec 12 00:35 Library drwxr-xr-x 2 root wheel 64 Feb 25 2019 Network drwxr-xr-x@ 5 root wheel 160 May 3 2019 System drwxr-xr-x 8 root admin 256 Oct 14 07:21 Users drwxr-xr-x+ 6 root wheel 192 Dec 12 08:56 Volumes drwxr-xr-x@ 37 root wheel 1184 Dec 12 00:12 bin drwxrwxr-t 2 root admin 64 Feb 25 2019 cores dr-xr-xr-x 3 root wheel 7728 Dec 12 00:14 dev lrwxr-xr-x@ 1 root wheel 11 May 4 2019 etc -> private/etc dr-xr-xr-x 2 root wheel 1 Dec 12 07:41 home -rw-r--r-- 1 root wheel 313 Feb 24 2019 installer.failurerequests dr-xr-xr-x 2 root wheel 1 Dec 12 07:41 net -rw------- 1 root wheel 11984 Jul 30 21:02 obj_1_uhYWBO -rw------- 1 root wheel 9080 Jul 30 21:02 obj_2_Q0HjZP -rw------- 1 root wheel 15912 Jul 30 21:02 obj_3_OUvCmT -rw------- 1 root wheel 16880 Jul 30 21:02 obj_4_q0hkvG -rw------- 1 root wheel 9416 Jul 30 21:02 obj_5_qmI8ZT drwxr-xr-x 6 root wheel 192 May 3 2019 private drwxr-xr-x@ 64 root wheel 2048 Dec 12 00:12 sbin lrwxr-xr-x@ 1 root wheel 11 May 4 2019 tmp -> private/tmp drwxr-xr-x@ 9 root wheel 288 May 3 2019 usr lrwxr-xr-x@ 1 root wheel 11 May 4 2019 var -> private/var jc-1.17.3/tests/fixtures/osx-10.14.6/ls-alR-streaming.json000066400000000000000000033033511415226333200226550ustar00rootroot00000000000000[{"filename":".","flags":"drwxr-xr-x@","links":9,"owner":"root","group":"wheel","size":288,"date":"May 3 2019"},{"filename":"..","flags":"drwxr-xr-x","links":34,"owner":"root","group":"wheel","size":1088,"date":"Feb 7 23:30"},{"filename":"bin","flags":"drwxr-xr-x","links":970,"owner":"root","group":"wheel","size":31040,"date":"Feb 7 23:29"},{"filename":"lib","flags":"drwxr-xr-x","links":306,"owner":"root","group":"wheel","size":9792,"date":"Feb 7 23:29"},{"filename":"libexec","flags":"drwxr-xr-x","links":249,"owner":"root","group":"wheel","size":7968,"date":"Feb 7 23:29"},{"filename":"local","flags":"drwxr-xr-x","links":18,"owner":"root","group":"wheel","size":576,"date":"Oct 3 08:02"},{"filename":"sbin","flags":"drwxr-xr-x","links":239,"owner":"root","group":"wheel","size":7648,"date":"Feb 7 23:29"},{"filename":"share","flags":"drwxr-xr-x","links":46,"owner":"root","group":"wheel","size":1472,"date":"May 4 2019"},{"filename":"standalone","flags":"drwxr-xr-x","links":5,"owner":"root","group":"wheel","size":160,"date":"May 3 2019"},{"filename":".","parent":"/usr/bin","flags":"drwxr-xr-x","links":970,"owner":"root","group":"wheel","size":31040,"date":"Feb 7 23:29"},{"filename":"..","parent":"/usr/bin","flags":"drwxr-xr-x@","links":9,"owner":"root","group":"wheel","size":288,"date":"May 3 2019"},{"filename":"2to3-","parent":"/usr/bin","flags":"-rwxr-xr-x","links":4,"owner":"root","group":"wheel","size":925,"date":"Feb 22 2019"},{"filename":"2to3-2.7","link_to":"../../System/Library/Frameworks/Python.framework/Versions/2.7/bin/2to3-2.7","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":74,"date":"May 4 2019"},{"filename":"AssetCacheLocatorUtil","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":55152,"date":"May 3 2019"},{"filename":"AssetCacheManagerUtil","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":53552,"date":"May 3 2019"},{"filename":"AssetCacheTetheratorUtil","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":48112,"date":"May 3 2019"},{"filename":"BuildStrings","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18320,"date":"Jul 16 2019"},{"filename":"CpMac","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"DeRez","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"GetFileInfo","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18320,"date":"Jul 16 2019"},{"filename":"IOAccelMemory","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":69760,"date":"Jan 24 01:14"},{"filename":"MergePef","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18304,"date":"Jul 16 2019"},{"filename":"MvMac","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"ResMerger","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18304,"date":"Jul 16 2019"},{"filename":"Rez","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"RezDet","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"RezWack","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18304,"date":"Jul 16 2019"},{"filename":"SafeEjectGPU","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":32384,"date":"Jan 24 01:14"},{"filename":"SetFile","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18304,"date":"Jul 16 2019"},{"filename":"SplitForks","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18304,"date":"Jul 16 2019"},{"filename":"UnRezWack","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18304,"date":"Jul 16 2019"},{"filename":"a2p","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":66608,"date":"Jul 16 2019"},{"filename":"a2p5.18","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":234128,"date":"Jul 16 2019"},{"filename":"actool","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"addftinfo","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":33808,"date":"May 3 2019"},{"filename":"afclip","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":68464,"date":"Jul 16 2019"},{"filename":"afconvert","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":120848,"date":"Jul 16 2019"},{"filename":"afhash","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":55712,"date":"Jul 16 2019"},{"filename":"afida","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":98416,"date":"Jul 16 2019"},{"filename":"afinfo","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":110208,"date":"Jul 16 2019"},{"filename":"afmtodit","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":162321,"date":"Feb 22 2019"},{"filename":"afplay","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":65568,"date":"Jul 16 2019"},{"filename":"afscexpand","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":37664,"date":"May 3 2019"},{"filename":"agentxtrap","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":30096,"date":"May 3 2019"},{"filename":"agvtool","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18304,"date":"Jul 16 2019"},{"filename":"alias","parent":"/usr/bin","flags":"-rwxr-xr-x","links":15,"owner":"root","group":"wheel","size":190,"date":"Feb 22 2019"},{"filename":"applesingle","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":41248,"date":"Jul 16 2019"},{"filename":"appletviewer","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/appletviewer","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":82,"date":"May 4 2019"},{"filename":"apply","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18960,"date":"May 3 2019"},{"filename":"apropos","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":1808,"date":"Feb 22 2019"},{"filename":"apt","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/apt","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":73,"date":"May 4 2019"},{"filename":"ar","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18272,"date":"Jul 16 2019"},{"filename":"arch","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":66880,"date":"Jan 24 01:14"},{"filename":"as","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18272,"date":"Jul 16 2019"},{"filename":"asa","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"asctl","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":144528,"date":"Jul 16 2019"},{"filename":"assetutil","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":931568,"date":"Jul 16 2019"},{"filename":"at","parent":"/usr/bin","flags":"-r-sr-xr-x","links":1,"owner":"root","group":"wheel","size":83680,"date":"Jan 24 01:14"},{"filename":"atos","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":80880,"date":"Jan 24 01:14"},{"filename":"atq","parent":"/usr/bin","flags":"-r-sr-xr-x","links":1,"owner":"root","group":"wheel","size":83680,"date":"Jan 24 01:14"},{"filename":"atrm","parent":"/usr/bin","flags":"-r-sr-xr-x","links":1,"owner":"root","group":"wheel","size":83680,"date":"Jan 24 01:14"},{"filename":"atsutil","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":30624,"date":"May 3 2019"},{"filename":"automator","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":39712,"date":"May 3 2019"},{"filename":"auval","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":125,"date":"Apr 10 2019"},{"filename":"auvaltool","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":344976,"date":"Jul 16 2019"},{"filename":"avbdiagnose","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":61152,"date":"Jul 16 2019"},{"filename":"avbutil","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":59776,"date":"Jul 16 2019"},{"filename":"avconvert","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":95232,"date":"Jul 16 2019"},{"filename":"avmetareadwrite","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":29296,"date":"Jan 24 01:14"},{"filename":"awk","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":112576,"date":"May 3 2019"},{"filename":"banner","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":31088,"date":"May 3 2019"},{"filename":"base64","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23248,"date":"May 3 2019"},{"filename":"basename","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18304,"date":"May 3 2019"},{"filename":"bashbug","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":6574,"date":"Feb 22 2019"},{"filename":"batch","parent":"/usr/bin","flags":"-r-sr-xr-x","links":1,"owner":"root","group":"wheel","size":83680,"date":"Jan 24 01:14"},{"filename":"bc","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":81232,"date":"May 3 2019"},{"filename":"bg","parent":"/usr/bin","flags":"-rwxr-xr-x","links":15,"owner":"root","group":"wheel","size":190,"date":"Feb 22 2019"},{"filename":"biff","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18240,"date":"May 3 2019"},{"filename":"binhex","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":45792,"date":"Jul 16 2019"},{"filename":"binhex.pl","parent":"/usr/bin","flags":"-rwxr-xr-x","links":35,"owner":"root","group":"wheel","size":811,"date":"Feb 22 2019"},{"filename":"binhex5.18.pl","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":3941,"date":"Feb 22 2019"},{"filename":"bioutil","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":120160,"date":"Jan 24 01:14"},{"filename":"bison","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"bitesize.d","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1958,"date":"Feb 22 2019"},{"filename":"brctl","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":193792,"date":"May 3 2019"},{"filename":"bsdtar","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":71040,"date":"May 3 2019"},{"filename":"bspatch","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18688,"date":"May 3 2019"},{"filename":"btmmdiagnose","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":8708,"date":"Feb 22 2019"},{"filename":"bunzip2","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":41312,"date":"May 3 2019"},{"filename":"bzcat","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":41312,"date":"May 3 2019"},{"filename":"bzcmp","link_to":"bzdiff","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":6,"date":"May 4 2019"},{"filename":"bzdiff","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":2101,"date":"Feb 22 2019"},{"filename":"bzegrep","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":33952,"date":"May 3 2019"},{"filename":"bzfgrep","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":33952,"date":"May 3 2019"},{"filename":"bzgrep","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":33952,"date":"May 3 2019"},{"filename":"bzip2","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":41312,"date":"May 3 2019"},{"filename":"bzip2recover","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":22848,"date":"May 3 2019"},{"filename":"bzless","link_to":"bzmore","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":6,"date":"May 4 2019"},{"filename":"bzmore","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1259,"date":"Feb 22 2019"},{"filename":"c++","link_to":"clang++","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":7,"date":"May 4 2019"},{"filename":"c++filt","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":439792,"date":"May 3 2019"},{"filename":"c2ph","parent":"/usr/bin","flags":"-rwxr-xr-x","links":38,"owner":"root","group":"wheel","size":811,"date":"Mar 28 2019"},{"filename":"c2ph5.18","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":36642,"date":"Mar 28 2019"},{"filename":"c89","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"c99","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"caffeinate","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":24432,"date":"Jul 16 2019"},{"filename":"cal","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":32192,"date":"May 3 2019"},{"filename":"calendar","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":33632,"date":"May 3 2019"},{"filename":"cancel","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":23728,"date":"Jan 24 01:14"},{"filename":"cap_mkdb","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18688,"date":"May 3 2019"},{"filename":"captoinfo","link_to":"tic","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":3,"date":"May 4 2019"},{"filename":"cc","link_to":"clang","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":5,"date":"May 4 2019"},{"filename":"cd","parent":"/usr/bin","flags":"-rwxr-xr-x","links":15,"owner":"root","group":"wheel","size":190,"date":"Feb 22 2019"},{"filename":"certtool","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":91376,"date":"Jan 24 01:14"},{"filename":"checknr","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":26912,"date":"Jan 24 01:14"},{"filename":"chflags","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18752,"date":"May 3 2019"},{"filename":"chfn","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":73776,"date":"Jan 24 01:14"},{"filename":"chgrp","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23312,"date":"May 3 2019"},{"filename":"chpass","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":73776,"date":"Jan 24 01:14"},{"filename":"chsh","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":73776,"date":"Jan 24 01:14"},{"filename":"cksum","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":22688,"date":"May 3 2019"},{"filename":"clang","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"clang++","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18304,"date":"Jul 16 2019"},{"filename":"clear","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18016,"date":"May 3 2019"},{"filename":"cmp","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":32672,"date":"May 3 2019"},{"filename":"cmpdylib","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18304,"date":"Jul 16 2019"},{"filename":"codesign","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":100448,"date":"Jan 24 01:14"},{"filename":"codesign_allocate","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18320,"date":"Jul 16 2019"},{"filename":"col","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":22944,"date":"May 3 2019"},{"filename":"colcrt","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18560,"date":"Jan 24 01:14"},{"filename":"colldef","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":57536,"date":"May 3 2019"},{"filename":"colrm","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18496,"date":"May 3 2019"},{"filename":"column","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23440,"date":"May 3 2019"},{"filename":"comm","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18592,"date":"May 3 2019"},{"filename":"command","parent":"/usr/bin","flags":"-rwxr-xr-x","links":15,"owner":"root","group":"wheel","size":190,"date":"Feb 22 2019"},{"filename":"compress","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":27712,"date":"May 3 2019"},{"filename":"compression_tool","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":22992,"date":"May 3 2019"},{"filename":"config_data","parent":"/usr/bin","flags":"-rwxr-xr-x","links":38,"owner":"root","group":"wheel","size":811,"date":"Mar 28 2019"},{"filename":"config_data5.18","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":7265,"date":"Mar 28 2019"},{"filename":"corebrightnessdiag","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":25072,"date":"Jan 24 01:14"},{"filename":"corelist","parent":"/usr/bin","flags":"-rwxr-xr-x","links":38,"owner":"root","group":"wheel","size":811,"date":"Mar 28 2019"},{"filename":"corelist5.18","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":12790,"date":"Mar 28 2019"},{"filename":"cpan","parent":"/usr/bin","flags":"-rwxr-xr-x","links":38,"owner":"root","group":"wheel","size":811,"date":"Mar 28 2019"},{"filename":"cpan2dist","parent":"/usr/bin","flags":"-rwxr-xr-x","links":38,"owner":"root","group":"wheel","size":811,"date":"Mar 28 2019"},{"filename":"cpan2dist5.18","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":21859,"date":"Mar 28 2019"},{"filename":"cpan5.18","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":5895,"date":"Mar 28 2019"},{"filename":"cpanp","parent":"/usr/bin","flags":"-rwxr-xr-x","links":38,"owner":"root","group":"wheel","size":811,"date":"Mar 28 2019"},{"filename":"cpanp-run-perl","parent":"/usr/bin","flags":"-rwxr-xr-x","links":38,"owner":"root","group":"wheel","size":811,"date":"Mar 28 2019"},{"filename":"cpanp-run-perl5.18","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":580,"date":"Mar 28 2019"},{"filename":"cpanp5.18","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":3433,"date":"Mar 28 2019"},{"filename":"cpio","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":42976,"date":"May 3 2019"},{"filename":"cpp","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"cpu_profiler.d","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1402,"date":"Apr 7 2019"},{"filename":"cpuwalk.d","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1540,"date":"Feb 22 2019"},{"filename":"crc32","parent":"/usr/bin","flags":"-rwxr-xr-x","links":35,"owner":"root","group":"wheel","size":811,"date":"Feb 22 2019"},{"filename":"crc325.18","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":871,"date":"Feb 22 2019"},{"filename":"creatbyproc.d","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":342,"date":"Feb 22 2019"},{"filename":"crlrefresh","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":35328,"date":"Jan 24 01:14"},{"filename":"crontab","parent":"/usr/bin","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"wheel","size":39184,"date":"May 3 2019"},{"filename":"csdiagnose","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":14990,"date":"Apr 3 2019"},{"filename":"csgather","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":542320,"date":"Jul 16 2019"},{"filename":"csplit","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":24000,"date":"May 3 2019"},{"filename":"csreq","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":37664,"date":"Jan 24 01:14"},{"filename":"csrutil","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":29760,"date":"May 3 2019"},{"filename":"ctags","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"ctf_insert","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18304,"date":"Jul 16 2019"},{"filename":"cu","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"_uucp","group":"wheel","size":133392,"date":"May 3 2019"},{"filename":"cups-config","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":3041,"date":"Jan 8 15:27"},{"filename":"cupstestdsc","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":23040,"date":"Jan 24 01:14"},{"filename":"cupstestppd","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":63360,"date":"Jan 24 01:14"},{"filename":"curl","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":185072,"date":"May 3 2019"},{"filename":"curl-config","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":4089,"date":"Feb 22 2019"},{"filename":"cut","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23712,"date":"May 3 2019"},{"filename":"cvaffinity","link_to":"/System/Library/Filesystems/acfs.fs/Contents/bin/cvaffinity","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":59,"date":"May 4 2019"},{"filename":"cvcp","link_to":"/System/Library/Filesystems/acfs.fs/Contents/bin/cvcp","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":53,"date":"May 4 2019"},{"filename":"cvmkdir","link_to":"/System/Library/Filesystems/acfs.fs/Contents/bin/cvmkdir","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":56,"date":"May 4 2019"},{"filename":"cvmkfile","link_to":"/System/Library/Filesystems/acfs.fs/Contents/bin/cvmkfile","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":57,"date":"May 4 2019"},{"filename":"dappprof","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":7163,"date":"Feb 22 2019"},{"filename":"dapptrace","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":7878,"date":"Feb 22 2019"},{"filename":"darwinup","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":269904,"date":"Jan 24 01:14"},{"filename":"db_archive","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":1986480,"date":"May 3 2019"},{"filename":"db_checkpoint","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":1990640,"date":"May 3 2019"},{"filename":"db_codegen","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":2015200,"date":"May 3 2019"},{"filename":"db_deadlock","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":1990640,"date":"May 3 2019"},{"filename":"db_dump","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":1994816,"date":"May 3 2019"},{"filename":"db_hotbackup","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":2003152,"date":"May 3 2019"},{"filename":"db_load","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":2015840,"date":"May 3 2019"},{"filename":"db_printlog","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":2066192,"date":"May 3 2019"},{"filename":"db_recover","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":1990736,"date":"May 3 2019"},{"filename":"db_stat","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":1994704,"date":"May 3 2019"},{"filename":"db_upgrade","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":1986480,"date":"May 3 2019"},{"filename":"db_verify","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":1990592,"date":"May 3 2019"},{"filename":"dbicadmin","parent":"/usr/bin","flags":"-rwxr-xr-x","links":35,"owner":"root","group":"wheel","size":811,"date":"Feb 22 2019"},{"filename":"dbicadmin5.18","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":7195,"date":"Feb 22 2019"},{"filename":"dbilogstrip","parent":"/usr/bin","flags":"-rwxr-xr-x","links":35,"owner":"root","group":"wheel","size":811,"date":"Feb 22 2019"},{"filename":"dbilogstrip5.18","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":1469,"date":"Feb 22 2019"},{"filename":"dbiprof","parent":"/usr/bin","flags":"-rwxr-xr-x","links":35,"owner":"root","group":"wheel","size":811,"date":"Feb 22 2019"},{"filename":"dbiprof5.18","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":6295,"date":"Feb 22 2019"},{"filename":"dbiproxy","parent":"/usr/bin","flags":"-rwxr-xr-x","links":35,"owner":"root","group":"wheel","size":811,"date":"Feb 22 2019"},{"filename":"dbiproxy5.18","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":5479,"date":"Feb 22 2019"},{"filename":"dc","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":46224,"date":"May 3 2019"},{"filename":"debinhex.pl","parent":"/usr/bin","flags":"-rwxr-xr-x","links":35,"owner":"root","group":"wheel","size":811,"date":"Feb 22 2019"},{"filename":"debinhex5.18.pl","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":5882,"date":"Feb 22 2019"},{"filename":"defaults","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":40000,"date":"Jan 24 01:14"},{"filename":"delv","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1880000,"date":"May 3 2019"},{"filename":"desdp","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"diagnose-fu","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":2391,"date":"Apr 15 2019"},{"filename":"diff","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":105616,"date":"May 3 2019"},{"filename":"diff3","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":37136,"date":"May 3 2019"},{"filename":"diffstat","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":41072,"date":"May 3 2019"},{"filename":"dig","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1881440,"date":"May 3 2019"},{"filename":"dirname","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18128,"date":"May 3 2019"},{"filename":"dispqlen.d","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1290,"date":"Feb 22 2019"},{"filename":"ditto","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":34528,"date":"May 3 2019"},{"filename":"dmc","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":28864,"date":"May 3 2019"},{"filename":"dns-sd","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":60896,"date":"Jan 24 01:14"},{"filename":"drutil","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":272128,"date":"May 3 2019"},{"filename":"dscacheutil","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":34144,"date":"May 3 2019"},{"filename":"dscl","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":194304,"date":"May 3 2019"},{"filename":"dserr","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18016,"date":"May 3 2019"},{"filename":"dsexport","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":33280,"date":"May 3 2019"},{"filename":"dsimport","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":83872,"date":"May 3 2019"},{"filename":"dsmemberutil","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23648,"date":"May 3 2019"},{"filename":"dsymutil","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18304,"date":"Jul 16 2019"},{"filename":"dtruss","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":30607,"date":"Feb 22 2019"},{"filename":"du","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23600,"date":"May 3 2019"},{"filename":"dwarfdump","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18304,"date":"Jul 16 2019"},{"filename":"easy_install","parent":"/usr/bin","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"wheel","size":925,"date":"Feb 22 2019"},{"filename":"easy_install-2.7","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":458,"date":"Feb 22 2019"},{"filename":"egrep","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":33952,"date":"May 3 2019"},{"filename":"emacs","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":117164432,"date":"May 3 2019"},{"filename":"emacs-undumped","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":3173856,"date":"May 3 2019"},{"filename":"emacsclient","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":32960,"date":"May 3 2019"},{"filename":"enc2xs","parent":"/usr/bin","flags":"-rwxr-xr-x","links":38,"owner":"root","group":"wheel","size":811,"date":"Mar 28 2019"},{"filename":"enc2xs5.18","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":39189,"date":"Mar 28 2019"},{"filename":"encode_keychange","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":28800,"date":"May 3 2019"},{"filename":"env","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23504,"date":"May 3 2019"},{"filename":"eqn","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":140976,"date":"May 3 2019"},{"filename":"erb","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":4892,"date":"Feb 22 2019"},{"filename":"errinfo","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":4516,"date":"Feb 22 2019"},{"filename":"etags","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":107376,"date":"May 3 2019"},{"filename":"ex","link_to":"vim","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":3,"date":"May 4 2019"},{"filename":"execsnoop","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":5115,"date":"Feb 22 2019"},{"filename":"expand","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18576,"date":"May 3 2019"},{"filename":"expect","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":51648,"date":"May 3 2019"},{"filename":"extcheck","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/extcheck","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":78,"date":"May 4 2019"},{"filename":"eyapp","parent":"/usr/bin","flags":"-rwxr-xr-x","links":35,"owner":"root","group":"wheel","size":811,"date":"Feb 22 2019"},{"filename":"eyapp5.18","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":12841,"date":"Feb 22 2019"},{"filename":"false","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":17808,"date":"May 3 2019"},{"filename":"fc","parent":"/usr/bin","flags":"-rwxr-xr-x","links":15,"owner":"root","group":"wheel","size":190,"date":"Feb 22 2019"},{"filename":"fddist","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":2668,"date":"Feb 22 2019"},{"filename":"fdesetup","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":280032,"date":"Jan 24 01:14"},{"filename":"fg","parent":"/usr/bin","flags":"-rwxr-xr-x","links":15,"owner":"root","group":"wheel","size":190,"date":"Feb 22 2019"},{"filename":"fgrep","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":33952,"date":"May 3 2019"},{"filename":"file","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":258912,"date":"Jul 16 2019"},{"filename":"filebyproc.d","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":272,"date":"Feb 22 2019"},{"filename":"filtercalltree","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":150576,"date":"Jan 24 01:14"},{"filename":"find","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":51808,"date":"May 3 2019"},{"filename":"find2perl","parent":"/usr/bin","flags":"-rwxr-xr-x","links":38,"owner":"root","group":"wheel","size":811,"date":"Mar 28 2019"},{"filename":"find2perl5.18","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23634,"date":"Mar 28 2019"},{"filename":"findrule","parent":"/usr/bin","flags":"-rwxr-xr-x","links":35,"owner":"root","group":"wheel","size":811,"date":"Feb 22 2019"},{"filename":"findrule5.18","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":3418,"date":"Feb 22 2019"},{"filename":"finger","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":33968,"date":"May 3 2019"},{"filename":"fixproc","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":15523,"date":"Feb 22 2019"},{"filename":"flex","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"flex++","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"fmt","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23216,"date":"May 3 2019"},{"filename":"fold","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18800,"date":"May 3 2019"},{"filename":"fontrestore","link_to":"../../System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Support/fontmover","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":126,"date":"May 4 2019"},{"filename":"footprint","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":157776,"date":"Jul 16 2019"},{"filename":"format-sql","parent":"/usr/bin","flags":"-rwxr-xr-x","links":35,"owner":"root","group":"wheel","size":811,"date":"Feb 22 2019"},{"filename":"format-sql5.18","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":448,"date":"Feb 22 2019"},{"filename":"from","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18768,"date":"May 3 2019"},{"filename":"fs_usage","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":60368,"date":"Jan 24 01:14"},{"filename":"funzip","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":35440,"date":"May 3 2019"},{"filename":"fuser","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":2610,"date":"Feb 22 2019"},{"filename":"fwkdp","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":33936,"date":"May 3 2019"},{"filename":"fwkpfv","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":42352,"date":"May 3 2019"},{"filename":"g++","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"gatherheaderdoc","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18320,"date":"Jul 16 2019"},{"filename":"gcc","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"gcore","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":164752,"date":"Jan 24 01:14"},{"filename":"gcov","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"gdiffmk","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":7198,"date":"Feb 22 2019"},{"filename":"gem","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":596,"date":"Feb 22 2019"},{"filename":"gen_bridge_metadata","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":78936,"date":"Feb 22 2019"},{"filename":"gencat","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":27488,"date":"May 3 2019"},{"filename":"genstrings","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18304,"date":"Jul 16 2019"},{"filename":"getconf","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":63824,"date":"Jan 24 01:14"},{"filename":"getopt","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18000,"date":"May 3 2019"},{"filename":"getopts","parent":"/usr/bin","flags":"-rwxr-xr-x","links":15,"owner":"root","group":"wheel","size":190,"date":"Feb 22 2019"},{"filename":"git","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"git-cvsserver","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18320,"date":"Jul 16 2019"},{"filename":"git-receive-pack","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18320,"date":"Jul 16 2019"},{"filename":"git-shell","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18304,"date":"Jul 16 2019"},{"filename":"git-upload-archive","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18320,"date":"Jul 16 2019"},{"filename":"git-upload-pack","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18320,"date":"Jul 16 2019"},{"filename":"gm4","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"gnumake","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18304,"date":"Jul 16 2019"},{"filename":"gperf","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"grep","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":33952,"date":"May 3 2019"},{"filename":"grn","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":64048,"date":"May 3 2019"},{"filename":"grodvi","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":83296,"date":"May 3 2019"},{"filename":"groff","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":68272,"date":"May 3 2019"},{"filename":"groffer","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":7074,"date":"Feb 22 2019"},{"filename":"grog","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":2471,"date":"Feb 22 2019"},{"filename":"grolbp","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":86928,"date":"May 3 2019"},{"filename":"grolj4","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":82848,"date":"May 3 2019"},{"filename":"grops","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":116800,"date":"May 3 2019"},{"filename":"grotty","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":83024,"date":"May 3 2019"},{"filename":"groups","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23264,"date":"May 3 2019"},{"filename":"gunzip","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":53280,"date":"May 3 2019"},{"filename":"gzcat","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":53280,"date":"May 3 2019"},{"filename":"gzexe","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":4085,"date":"Feb 22 2019"},{"filename":"gzip","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":47120,"date":"May 3 2019"},{"filename":"h2ph","parent":"/usr/bin","flags":"-rwxr-xr-x","links":38,"owner":"root","group":"wheel","size":811,"date":"Mar 28 2019"},{"filename":"h2ph5.18","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":28167,"date":"Mar 28 2019"},{"filename":"h2xs","parent":"/usr/bin","flags":"-rwxr-xr-x","links":38,"owner":"root","group":"wheel","size":811,"date":"Mar 28 2019"},{"filename":"h2xs5.18","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":60725,"date":"Mar 28 2019"},{"filename":"hash","parent":"/usr/bin","flags":"-rwxr-xr-x","links":15,"owner":"root","group":"wheel","size":190,"date":"Feb 22 2019"},{"filename":"hdid","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":17936,"date":"Jan 24 01:14"},{"filename":"hdiutil","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":349536,"date":"Jan 24 01:14"},{"filename":"hdxml2manxml","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18320,"date":"Jul 16 2019"},{"filename":"head","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18928,"date":"May 3 2019"},{"filename":"headerdoc2html","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18320,"date":"Jul 16 2019"},{"filename":"heap","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":97536,"date":"Jan 24 01:14"},{"filename":"heap32","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":108304,"date":"Jan 24 01:14"},{"filename":"hexdump","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":32848,"date":"May 3 2019"},{"filename":"hidutil","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":38944,"date":"Jan 24 01:14"},{"filename":"hiutil","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":105520,"date":"May 3 2019"},{"filename":"host","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1868944,"date":"May 3 2019"},{"filename":"hostinfo","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":43136,"date":"Jan 24 01:14"},{"filename":"hotspot.d","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1939,"date":"Feb 22 2019"},{"filename":"hpftodit","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":122640,"date":"May 3 2019"},{"filename":"hpmdiagnose","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":96528,"date":"Jan 24 01:14"},{"filename":"htmltree","parent":"/usr/bin","flags":"-rwxr-xr-x","links":35,"owner":"root","group":"wheel","size":811,"date":"Feb 22 2019"},{"filename":"htmltree5.18","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":1177,"date":"Feb 22 2019"},{"filename":"ibtool","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"iconutil","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":27968,"date":"May 3 2019"},{"filename":"iconv","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":32192,"date":"May 3 2019"},{"filename":"ictool","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"id","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23264,"date":"May 3 2019"},{"filename":"idle","parent":"/usr/bin","flags":"-rwxr-xr-x","links":4,"owner":"root","group":"wheel","size":925,"date":"Feb 22 2019"},{"filename":"idle2.7","link_to":"../../System/Library/Frameworks/Python.framework/Versions/2.7/bin/idle2.7","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":73,"date":"May 4 2019"},{"filename":"idlj","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/idlj","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":74,"date":"May 4 2019"},{"filename":"imptrace","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":8556,"date":"Apr 25 2019"},{"filename":"indent","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"indxbib","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":44400,"date":"May 3 2019"},{"filename":"info","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":175136,"date":"May 3 2019"},{"filename":"infocmp","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":54624,"date":"May 3 2019"},{"filename":"infokey","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":55376,"date":"May 3 2019"},{"filename":"infotocap","link_to":"tic","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":3,"date":"May 4 2019"},{"filename":"install","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":28576,"date":"May 3 2019"},{"filename":"install-info","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":60032,"date":"May 3 2019"},{"filename":"install_name_tool","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18320,"date":"Jul 16 2019"},{"filename":"instmodsh","parent":"/usr/bin","flags":"-rwxr-xr-x","links":38,"owner":"root","group":"wheel","size":811,"date":"Mar 28 2019"},{"filename":"instmodsh5.18","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":4288,"date":"Mar 28 2019"},{"filename":"instruments","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18320,"date":"Jul 16 2019"},{"filename":"iofile.d","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1976,"date":"Feb 22 2019"},{"filename":"iofileb.d","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1573,"date":"Feb 22 2019"},{"filename":"iopattern","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":6604,"date":"Feb 22 2019"},{"filename":"iopending","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":5946,"date":"Feb 22 2019"},{"filename":"iosnoop","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":12137,"date":"Feb 22 2019"},{"filename":"iotop","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":11884,"date":"Feb 22 2019"},{"filename":"ip2cc","parent":"/usr/bin","flags":"-rwxr-xr-x","links":35,"owner":"root","group":"wheel","size":811,"date":"Feb 22 2019"},{"filename":"ip2cc5.18","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":2116,"date":"Feb 22 2019"},{"filename":"ipcount","parent":"/usr/bin","flags":"-rwxr-xr-x","links":35,"owner":"root","group":"wheel","size":811,"date":"Feb 22 2019"},{"filename":"ipcount5.18","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":3728,"date":"Feb 22 2019"},{"filename":"ipcrm","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18576,"date":"May 3 2019"},{"filename":"ipcs","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":26880,"date":"May 3 2019"},{"filename":"ippfind","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":47216,"date":"Jan 24 01:14"},{"filename":"ipptool","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":92016,"date":"Jan 24 01:14"},{"filename":"iprofiler","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18304,"date":"Jul 16 2019"},{"filename":"iptab","parent":"/usr/bin","flags":"-rwxr-xr-x","links":35,"owner":"root","group":"wheel","size":811,"date":"Feb 22 2019"},{"filename":"iptab5.18","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":986,"date":"Feb 22 2019"},{"filename":"irb","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":240,"date":"Feb 22 2019"},{"filename":"jar","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jar","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":73,"date":"May 4 2019"},{"filename":"jarsigner","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jarsigner","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":79,"date":"May 4 2019"},{"filename":"java","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/java","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":74,"date":"May 4 2019"},{"filename":"javac","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/javac","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":75,"date":"May 4 2019"},{"filename":"javadoc","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/javadoc","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":77,"date":"May 4 2019"},{"filename":"javah","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/javah","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":75,"date":"May 4 2019"},{"filename":"javap","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/javap","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":75,"date":"May 4 2019"},{"filename":"javapackager","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/javapackager","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":82,"date":"May 4 2019"},{"filename":"javaws","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/javaws","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":76,"date":"May 4 2019"},{"filename":"jcmd","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jcmd","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":74,"date":"May 4 2019"},{"filename":"jconsole","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jconsole","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":78,"date":"May 4 2019"},{"filename":"jcontrol","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jcontrol","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":78,"date":"May 4 2019"},{"filename":"jdb","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jdb","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":73,"date":"May 4 2019"},{"filename":"jdeps","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jdeps","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":75,"date":"May 4 2019"},{"filename":"jhat","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jhat","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":74,"date":"May 4 2019"},{"filename":"jhsdb","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jhsdb","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":75,"date":"May 4 2019"},{"filename":"jimage","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jimage","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":76,"date":"May 4 2019"},{"filename":"jinfo","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jinfo","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":75,"date":"May 4 2019"},{"filename":"jjs","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jjs","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":73,"date":"May 4 2019"},{"filename":"jmap","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jmap","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":74,"date":"May 4 2019"},{"filename":"jmc","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jmc","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":73,"date":"May 4 2019"},{"filename":"jobs","parent":"/usr/bin","flags":"-rwxr-xr-x","links":15,"owner":"root","group":"wheel","size":190,"date":"Feb 22 2019"},{"filename":"join","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23504,"date":"May 3 2019"},{"filename":"jot","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23088,"date":"May 3 2019"},{"filename":"jps","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jps","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":73,"date":"May 4 2019"},{"filename":"jrunscript","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jrunscript","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":80,"date":"May 4 2019"},{"filename":"jsadebugd","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jsadebugd","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":79,"date":"May 4 2019"},{"filename":"jshell","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jshell","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":76,"date":"May 4 2019"},{"filename":"json_pp","parent":"/usr/bin","flags":"-rwxr-xr-x","links":38,"owner":"root","group":"wheel","size":811,"date":"Mar 28 2019"},{"filename":"json_pp5.18","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":3953,"date":"Mar 28 2019"},{"filename":"jstack","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jstack","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":76,"date":"May 4 2019"},{"filename":"jstat","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jstat","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":75,"date":"May 4 2019"},{"filename":"jstatd","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jstatd","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":76,"date":"May 4 2019"},{"filename":"jvisualvm","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jvisualvm","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":79,"date":"May 4 2019"},{"filename":"kcc","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":51392,"date":"Jul 16 2019"},{"filename":"kdestroy","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":29024,"date":"Jul 16 2019"},{"filename":"kextutil","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":200656,"date":"Jan 24 01:14"},{"filename":"keytool","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/keytool","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":77,"date":"May 4 2019"},{"filename":"kgetcred","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":29968,"date":"Jul 16 2019"},{"filename":"kill.d","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1621,"date":"Feb 22 2019"},{"filename":"killall","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23984,"date":"May 3 2019"},{"filename":"kinit","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":44224,"date":"Jul 16 2019"},{"filename":"klist","link_to":"kcc","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":3,"date":"May 4 2019"},{"filename":"kpasswd","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":30176,"date":"Jul 16 2019"},{"filename":"krb5-config","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":3252,"date":"Feb 22 2019"},{"filename":"kswitch","link_to":"kcc","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":3,"date":"May 4 2019"},{"filename":"ktrace","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":73616,"date":"Jul 16 2019"},{"filename":"lam","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18624,"date":"May 3 2019"},{"filename":"last","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23392,"date":"May 3 2019"},{"filename":"lastcomm","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18928,"date":"May 3 2019"},{"filename":"lastwords","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":2297,"date":"Feb 22 2019"},{"filename":"latency","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":102768,"date":"Jan 24 01:14"},{"filename":"layerutil","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":853232,"date":"Jul 16 2019"},{"filename":"ld","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18272,"date":"Jul 16 2019"},{"filename":"ldapadd","link_to":"ldapmodify","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":10,"date":"May 4 2019"},{"filename":"ldapcompare","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":301376,"date":"Jan 24 01:14"},{"filename":"ldapdelete","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":305408,"date":"Jan 24 01:14"},{"filename":"ldapexop","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":305488,"date":"Jan 24 01:14"},{"filename":"ldapmodify","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":314000,"date":"Jan 24 01:14"},{"filename":"ldapmodrdn","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":301312,"date":"Jan 24 01:14"},{"filename":"ldappasswd","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":301216,"date":"Jan 24 01:14"},{"filename":"ldapsearch","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":329808,"date":"Jan 24 01:14"},{"filename":"ldapurl","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":251840,"date":"Jan 24 01:14"},{"filename":"ldapwhoami","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":301312,"date":"Jan 24 01:14"},{"filename":"leaks","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":163424,"date":"Jan 24 01:14"},{"filename":"leaks32","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":194736,"date":"Jan 24 01:14"},{"filename":"leave","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":18416,"date":"May 3 2019"},{"filename":"less","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":133856,"date":"May 3 2019"},{"filename":"lessecho","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18320,"date":"May 3 2019"},{"filename":"lex","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"libnetcfg","parent":"/usr/bin","flags":"-rwxr-xr-x","links":38,"owner":"root","group":"wheel","size":811,"date":"Mar 28 2019"},{"filename":"libnetcfg5.18","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":15754,"date":"Mar 28 2019"},{"filename":"libtool","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18304,"date":"Jul 16 2019"},{"filename":"lipo","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"lkbib","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":50560,"date":"May 3 2019"},{"filename":"lldb","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"llvm-g++","link_to":"clang++","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":7,"date":"May 4 2019"},{"filename":"llvm-gcc","link_to":"clang","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":5,"date":"May 4 2019"},{"filename":"loads.d","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1936,"date":"Feb 22 2019"},{"filename":"locale","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":60240,"date":"May 3 2019"},{"filename":"localedef","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":30650,"date":"Feb 22 2019"},{"filename":"locate","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23424,"date":"May 3 2019"},{"filename":"lockstat","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":57760,"date":"May 3 2019"},{"filename":"log","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":267632,"date":"Jan 24 01:14"},{"filename":"logger","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":18848,"date":"May 3 2019"},{"filename":"login","parent":"/usr/bin","flags":"-r-sr-xr-x","links":1,"owner":"root","group":"wheel","size":76288,"date":"Jan 24 01:14"},{"filename":"logname","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18176,"date":"May 3 2019"},{"filename":"look","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18816,"date":"May 3 2019"},{"filename":"lookbib","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":50816,"date":"May 3 2019"},{"filename":"lorder","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"lp","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":28368,"date":"Jan 24 01:14"},{"filename":"lpoptions","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":24224,"date":"Jan 24 01:14"},{"filename":"lpq","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":24208,"date":"Jan 24 01:14"},{"filename":"lpr","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":23856,"date":"Jan 24 01:14"},{"filename":"lprm","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":18592,"date":"Jan 24 01:14"},{"filename":"lpstat","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":37184,"date":"Jan 24 01:14"},{"filename":"lsappinfo","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":230944,"date":"Jul 16 2019"},{"filename":"lsbom","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":29216,"date":"May 3 2019"},{"filename":"lskq","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":68704,"date":"Jan 24 01:14"},{"filename":"lsm","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":52560,"date":"May 3 2019"},{"filename":"lsmp","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":98912,"date":"Jan 24 01:14"},{"filename":"lsvfs","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18336,"date":"May 3 2019"},{"filename":"lwp-download","parent":"/usr/bin","flags":"-rwxr-xr-x","links":35,"owner":"root","group":"wheel","size":811,"date":"Feb 22 2019"},{"filename":"lwp-download5.18","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":8639,"date":"Feb 22 2019"},{"filename":"lwp-dump","parent":"/usr/bin","flags":"-rwxr-xr-x","links":35,"owner":"root","group":"wheel","size":811,"date":"Feb 22 2019"},{"filename":"lwp-dump5.18","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":2802,"date":"Feb 22 2019"},{"filename":"lwp-mirror","parent":"/usr/bin","flags":"-rwxr-xr-x","links":35,"owner":"root","group":"wheel","size":811,"date":"Feb 22 2019"},{"filename":"lwp-mirror5.18","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":2482,"date":"Feb 22 2019"},{"filename":"lwp-request","parent":"/usr/bin","flags":"-rwxr-xr-x","links":35,"owner":"root","group":"wheel","size":811,"date":"Feb 22 2019"},{"filename":"lwp-request5.18","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":15063,"date":"Feb 22 2019"},{"filename":"m4","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18272,"date":"Jul 16 2019"},{"filename":"macbinary","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":42048,"date":"Jul 16 2019"},{"filename":"macerror","parent":"/usr/bin","flags":"-rwxr-xr-x","links":35,"owner":"root","group":"wheel","size":811,"date":"Feb 22 2019"},{"filename":"macerror5.18","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":728,"date":"Feb 22 2019"},{"filename":"machine","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":66880,"date":"Jan 24 01:14"},{"filename":"mail","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":85776,"date":"May 3 2019"},{"filename":"mailq","link_to":"../sbin/sendmail","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":16,"date":"May 4 2019"},{"filename":"mailx","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":85776,"date":"May 3 2019"},{"filename":"make","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"makeinfo","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":239056,"date":"May 3 2019"},{"filename":"malloc_history","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":113040,"date":"Jan 24 01:14"},{"filename":"malloc_history32","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":128768,"date":"Jan 24 01:14"},{"filename":"man","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":70192,"date":"May 3 2019"},{"filename":"manpath","link_to":"man","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":3,"date":"May 4 2019"},{"filename":"mcxquery","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":88096,"date":"Jan 24 01:14"},{"filename":"mcxrefresh","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23392,"date":"Jan 24 01:14"},{"filename":"mddiagnose","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":148192,"date":"Jan 24 01:14"},{"filename":"mdfind","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":29280,"date":"Jan 24 01:14"},{"filename":"mdimport","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":270544,"date":"Jan 24 01:14"},{"filename":"mdls","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":24048,"date":"Jan 24 01:14"},{"filename":"mdutil","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":113136,"date":"Jan 24 01:14"},{"filename":"memory_pressure","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":72736,"date":"Jan 24 01:14"},{"filename":"mesg","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":18224,"date":"May 3 2019"},{"filename":"mib2c","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":43760,"date":"Feb 22 2019"},{"filename":"mib2c-update","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":8780,"date":"Feb 22 2019"},{"filename":"mig","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"mkbom","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":19904,"date":"May 3 2019"},{"filename":"mkdep","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"mkfifo","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18416,"date":"May 3 2019"},{"filename":"mklocale","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":40336,"date":"May 3 2019"},{"filename":"mktemp","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18800,"date":"May 3 2019"},{"filename":"mmroff","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":2975,"date":"Feb 22 2019"},{"filename":"mnthome","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":28720,"date":"May 3 2019"},{"filename":"moo-outdated","parent":"/usr/bin","flags":"-rwxr-xr-x","links":35,"owner":"root","group":"wheel","size":811,"date":"Feb 22 2019"},{"filename":"moo-outdated5.18","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":448,"date":"Feb 22 2019"},{"filename":"moose-outdated","parent":"/usr/bin","flags":"-rwxr-xr-x","links":35,"owner":"root","group":"wheel","size":811,"date":"Feb 22 2019"},{"filename":"moose-outdated5.18","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":455,"date":"Feb 22 2019"},{"filename":"more","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":133856,"date":"May 3 2019"},{"filename":"mp2bug","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":1271,"date":"Feb 22 2019"},{"filename":"msgs","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":29504,"date":"May 3 2019"},{"filename":"nano","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":141312,"date":"May 3 2019"},{"filename":"nasm","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"native2ascii","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/native2ascii","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":82,"date":"May 4 2019"},{"filename":"nbdst","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":25936,"date":"Jan 24 01:14"},{"filename":"nc","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":46896,"date":"May 3 2019"},{"filename":"ncal","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":32192,"date":"May 3 2019"},{"filename":"ncctl","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":23920,"date":"May 3 2019"},{"filename":"ncdestroy","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":23920,"date":"May 3 2019"},{"filename":"ncinit","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":23920,"date":"May 3 2019"},{"filename":"nclist","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":23920,"date":"May 3 2019"},{"filename":"ncurses5.4-config","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":4977,"date":"Feb 22 2019"},{"filename":"ndisasm","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18304,"date":"Jul 16 2019"},{"filename":"neqn","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":271,"date":"Feb 22 2019"},{"filename":"net-server","parent":"/usr/bin","flags":"-rwxr-xr-x","links":35,"owner":"root","group":"wheel","size":811,"date":"Feb 22 2019"},{"filename":"net-server5.18","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":3429,"date":"Feb 22 2019"},{"filename":"net-snmp-cert","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":78699,"date":"Feb 22 2019"},{"filename":"net-snmp-config","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":25498,"date":"Feb 22 2019"},{"filename":"net-snmp-create-v3-user","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":3651,"date":"Feb 22 2019"},{"filename":"nettop","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":71712,"date":"May 3 2019"},{"filename":"newaliases","link_to":"../sbin/sendmail","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":16,"date":"May 4 2019"},{"filename":"newgrp","parent":"/usr/bin","flags":"-r-sr-xr-x","links":1,"owner":"root","group":"wheel","size":52512,"date":"Jan 24 01:14"},{"filename":"newproc.d","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":4376,"date":"Feb 22 2019"},{"filename":"nfsstat","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":45264,"date":"May 3 2019"},{"filename":"nice","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18416,"date":"May 3 2019"},{"filename":"nl","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23552,"date":"May 3 2019"},{"filename":"nm","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18272,"date":"Jul 16 2019"},{"filename":"nmedit","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"nohup","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18640,"date":"May 3 2019"},{"filename":"notifyutil","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":29312,"date":"May 3 2019"},{"filename":"nroff","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":2357,"date":"Feb 22 2019"},{"filename":"nscurl","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":105936,"date":"Jan 24 01:14"},{"filename":"nslookup","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1873120,"date":"May 3 2019"},{"filename":"nsupdate","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1855232,"date":"May 3 2019"},{"filename":"objdump","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18304,"date":"Jul 16 2019"},{"filename":"ocspcheck","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":38976,"date":"Jul 16 2019"},{"filename":"od","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":32848,"date":"May 3 2019"},{"filename":"odutil","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":61952,"date":"May 3 2019"},{"filename":"open","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":105952,"date":"May 3 2019"},{"filename":"opendiff","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18304,"date":"Jul 16 2019"},{"filename":"opensnoop","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":8038,"date":"Feb 22 2019"},{"filename":"openssl","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":488624,"date":"Jul 16 2019"},{"filename":"orbd","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/orbd","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":74,"date":"May 4 2019"},{"filename":"osacompile","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":42128,"date":"May 3 2019"},{"filename":"osadecompile","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":19968,"date":"May 3 2019"},{"filename":"osalang","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18592,"date":"May 3 2019"},{"filename":"osascript","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":43232,"date":"May 3 2019"},{"filename":"otool","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"pack200","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/pack200","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":77,"date":"May 4 2019"},{"filename":"package-stash-conflicts","parent":"/usr/bin","flags":"-rwxr-xr-x","links":35,"owner":"root","group":"wheel","size":811,"date":"Feb 22 2019"},{"filename":"package-stash-conflicts5.18","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":844,"date":"Feb 22 2019"},{"filename":"pagesize","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":2006,"date":"Apr 25 2019"},{"filename":"pagestuff","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18304,"date":"Jul 16 2019"},{"filename":"par.pl","parent":"/usr/bin","flags":"-rwxr-xr-x","links":35,"owner":"root","group":"wheel","size":811,"date":"Feb 22 2019"},{"filename":"par5.18.pl","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":29555,"date":"Feb 22 2019"},{"filename":"parl","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":66608,"date":"May 3 2019"},{"filename":"parl5.18","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":5341072,"date":"May 3 2019"},{"filename":"parldyn","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":66608,"date":"May 3 2019"},{"filename":"parldyn5.18","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":124848,"date":"May 3 2019"},{"filename":"passwd","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":68656,"date":"Jan 24 01:14"},{"filename":"paste","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18592,"date":"May 3 2019"},{"filename":"patch","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":95136,"date":"May 3 2019"},{"filename":"pathchk","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18512,"date":"May 3 2019"},{"filename":"pathopens.d","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":2378,"date":"Feb 22 2019"},{"filename":"pbcopy","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23584,"date":"May 3 2019"},{"filename":"pbpaste","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23584,"date":"May 3 2019"},{"filename":"pcap-config","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1622,"date":"Feb 22 2019"},{"filename":"pcsctest","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":43328,"date":"Jul 16 2019"},{"filename":"perl","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":66608,"date":"Jul 16 2019"},{"filename":"perl5.18","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":52864,"date":"Jul 16 2019"},{"filename":"perlbug","parent":"/usr/bin","flags":"-rwxr-xr-x","links":38,"owner":"root","group":"wheel","size":811,"date":"Mar 28 2019"},{"filename":"perlbug5.18","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":41944,"date":"Apr 1 2019"},{"filename":"perldoc","parent":"/usr/bin","flags":"-rwxr-xr-x","links":38,"owner":"root","group":"wheel","size":811,"date":"Mar 28 2019"},{"filename":"perldoc5.18","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":259,"date":"Mar 28 2019"},{"filename":"perlivp","parent":"/usr/bin","flags":"-rwxr-xr-x","links":38,"owner":"root","group":"wheel","size":811,"date":"Mar 28 2019"},{"filename":"perlivp5.18","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":10807,"date":"Apr 1 2019"},{"filename":"perlthanks","parent":"/usr/bin","flags":"-rwxr-xr-x","links":38,"owner":"root","group":"wheel","size":811,"date":"Mar 28 2019"},{"filename":"perlthanks5.18","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":41944,"date":"Apr 1 2019"},{"filename":"pfbtops","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":22912,"date":"May 3 2019"},{"filename":"pgrep","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":30512,"date":"May 3 2019"},{"filename":"phar","link_to":"phar.phar","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":9,"date":"May 4 2019"},{"filename":"phar.phar","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":14811,"date":"Jan 6 22:21"},{"filename":"php","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":11244288,"date":"Jan 24 01:14"},{"filename":"php-config","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":6438,"date":"Jan 6 22:22"},{"filename":"phpize","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":4520,"date":"Jan 6 22:21"},{"filename":"pic","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":213312,"date":"May 3 2019"},{"filename":"pico","link_to":"nano","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":4,"date":"May 4 2019"},{"filename":"piconv","parent":"/usr/bin","flags":"-rwxr-xr-x","links":38,"owner":"root","group":"wheel","size":811,"date":"Mar 28 2019"},{"filename":"piconv5.18","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":7372,"date":"Mar 28 2019"},{"filename":"pidpersec.d","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1295,"date":"Feb 22 2019"},{"filename":"pkgbuild","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":82784,"date":"Jan 24 01:14"},{"filename":"pkill","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":30512,"date":"May 3 2019"},{"filename":"pl","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":22912,"date":"Jan 24 01:14"},{"filename":"pl2pm","parent":"/usr/bin","flags":"-rwxr-xr-x","links":38,"owner":"root","group":"wheel","size":811,"date":"Mar 28 2019"},{"filename":"pl2pm5.18","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":4566,"date":"Mar 28 2019"},{"filename":"plockstat","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":33536,"date":"May 3 2019"},{"filename":"pluginkit","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":196032,"date":"Jan 24 01:14"},{"filename":"plutil","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":45664,"date":"Jan 24 01:14"},{"filename":"pmset","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":173536,"date":"Jul 16 2019"},{"filename":"pod2html","parent":"/usr/bin","flags":"-rwxr-xr-x","links":38,"owner":"root","group":"wheel","size":811,"date":"Mar 28 2019"},{"filename":"pod2html5.18","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":2073,"date":"Mar 28 2019"},{"filename":"pod2latex","parent":"/usr/bin","flags":"-rwxr-xr-x","links":38,"owner":"root","group":"wheel","size":811,"date":"Mar 28 2019"},{"filename":"pod2latex5.18","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":10374,"date":"Mar 28 2019"},{"filename":"pod2man","parent":"/usr/bin","flags":"-rwxr-xr-x","links":38,"owner":"root","group":"wheel","size":811,"date":"Mar 28 2019"},{"filename":"pod2man5.18","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":13700,"date":"Mar 28 2019"},{"filename":"pod2readme","parent":"/usr/bin","flags":"-rwxr-xr-x","links":35,"owner":"root","group":"wheel","size":811,"date":"Feb 22 2019"},{"filename":"pod2readme5.18","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":1603,"date":"Feb 22 2019"},{"filename":"pod2text","parent":"/usr/bin","flags":"-rwxr-xr-x","links":38,"owner":"root","group":"wheel","size":811,"date":"Mar 28 2019"},{"filename":"pod2text5.18","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":11123,"date":"Mar 28 2019"},{"filename":"pod2usage","parent":"/usr/bin","flags":"-rwxr-xr-x","links":38,"owner":"root","group":"wheel","size":811,"date":"Mar 28 2019"},{"filename":"pod2usage5.18","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":3790,"date":"Mar 28 2019"},{"filename":"podchecker","parent":"/usr/bin","flags":"-rwxr-xr-x","links":38,"owner":"root","group":"wheel","size":811,"date":"Mar 28 2019"},{"filename":"podchecker5.18","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":3819,"date":"Mar 28 2019"},{"filename":"podselect","parent":"/usr/bin","flags":"-rwxr-xr-x","links":38,"owner":"root","group":"wheel","size":811,"date":"Mar 28 2019"},{"filename":"podselect5.18","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":2647,"date":"Mar 28 2019"},{"filename":"policytool","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/policytool","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":80,"date":"May 4 2019"},{"filename":"post-grohtml","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":147568,"date":"May 3 2019"},{"filename":"power_report.sh","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":951,"date":"Apr 7 2019"},{"filename":"powermetrics","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":157536,"date":"Jan 24 01:14"},{"filename":"pp","parent":"/usr/bin","flags":"-rwxr-xr-x","links":35,"owner":"root","group":"wheel","size":811,"date":"Feb 22 2019"},{"filename":"pp5.18","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":152,"date":"Feb 22 2019"},{"filename":"ppdc","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":25344,"date":"Jan 24 01:14"},{"filename":"ppdhtml","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":23680,"date":"Jan 24 01:14"},{"filename":"ppdi","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":18816,"date":"Jan 24 01:14"},{"filename":"ppdmerge","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":24304,"date":"Jan 24 01:14"},{"filename":"ppdpo","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":23824,"date":"Jan 24 01:14"},{"filename":"pr","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":32224,"date":"May 3 2019"},{"filename":"pre-grohtml","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":73952,"date":"May 3 2019"},{"filename":"priclass.d","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1839,"date":"Feb 22 2019"},{"filename":"pridist.d","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1836,"date":"Feb 22 2019"},{"filename":"printenv","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18160,"date":"May 3 2019"},{"filename":"printf","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23232,"date":"May 3 2019"},{"filename":"procsystime","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":6348,"date":"Feb 22 2019"},{"filename":"productbuild","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":122672,"date":"Jan 24 01:14"},{"filename":"productsign","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":34416,"date":"Jan 24 01:14"},{"filename":"profiles","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":158416,"date":"Jan 24 01:14"},{"filename":"prove","parent":"/usr/bin","flags":"-rwxr-xr-x","links":38,"owner":"root","group":"wheel","size":811,"date":"Mar 28 2019"},{"filename":"prove5.18","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":11120,"date":"Mar 28 2019"},{"filename":"psed","parent":"/usr/bin","flags":"-rwxr-xr-x","links":38,"owner":"root","group":"wheel","size":811,"date":"Mar 28 2019"},{"filename":"psed5.18","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":53364,"date":"Mar 28 2019"},{"filename":"pstopdf","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23968,"date":"May 3 2019"},{"filename":"pstruct","parent":"/usr/bin","flags":"-rwxr-xr-x","links":38,"owner":"root","group":"wheel","size":811,"date":"Mar 28 2019"},{"filename":"pstruct5.18","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":36642,"date":"Mar 28 2019"},{"filename":"ptar","parent":"/usr/bin","flags":"-rwxr-xr-x","links":38,"owner":"root","group":"wheel","size":811,"date":"Mar 28 2019"},{"filename":"ptar5.18","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":3559,"date":"Mar 28 2019"},{"filename":"ptardiff","parent":"/usr/bin","flags":"-rwxr-xr-x","links":38,"owner":"root","group":"wheel","size":811,"date":"Mar 28 2019"},{"filename":"ptardiff5.18","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":2507,"date":"Mar 28 2019"},{"filename":"ptargrep","parent":"/usr/bin","flags":"-rwxr-xr-x","links":38,"owner":"root","group":"wheel","size":811,"date":"Mar 28 2019"},{"filename":"ptargrep5.18","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":4274,"date":"Mar 28 2019"},{"filename":"pubsub","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":114416,"date":"May 3 2019"},{"filename":"pwhich","parent":"/usr/bin","flags":"-rwxr-xr-x","links":35,"owner":"root","group":"wheel","size":811,"date":"Feb 22 2019"},{"filename":"pwhich5.18","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":3106,"date":"Feb 22 2019"},{"filename":"pwpolicy","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":47888,"date":"May 3 2019"},{"filename":"pydoc","parent":"/usr/bin","flags":"-rwxr-xr-x","links":4,"owner":"root","group":"wheel","size":925,"date":"Feb 22 2019"},{"filename":"pydoc2.7","link_to":"../../System/Library/Frameworks/Python.framework/Versions/2.7/bin/pydoc2.7","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":74,"date":"May 4 2019"},{"filename":"python","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":66880,"date":"Jan 24 01:14"},{"filename":"python-config","parent":"/usr/bin","flags":"-rwxr-xr-x","links":4,"owner":"root","group":"wheel","size":925,"date":"Feb 22 2019"},{"filename":"python2.7","link_to":"../../System/Library/Frameworks/Python.framework/Versions/2.7/bin/python2.7","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":75,"date":"May 4 2019"},{"filename":"python2.7-config","link_to":"../../System/Library/Frameworks/Python.framework/Versions/2.7/bin/python2.7-config","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":82,"date":"May 4 2019"},{"filename":"pythonw","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":66880,"date":"Jan 24 01:14"},{"filename":"pythonw2.7","link_to":"../../System/Library/Frameworks/Python.framework/Versions/2.7/bin/pythonw2.7","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":76,"date":"May 4 2019"},{"filename":"qc2movie","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":45104,"date":"May 3 2019"},{"filename":"qlmanage","link_to":"../../System/Library/Frameworks/QuickLook.framework/Resources/quicklookd.app/Contents/MacOS/qlmanage","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":100,"date":"May 4 2019"},{"filename":"qtdefaults","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":50992,"date":"Jul 16 2019"},{"filename":"qtmodernizer","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":38592,"date":"Jul 16 2019"},{"filename":"quota","parent":"/usr/bin","flags":"-r-sr-xr-x","links":1,"owner":"root","group":"wheel","size":23568,"date":"May 3 2019"},{"filename":"rails","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":549,"date":"Feb 22 2019"},{"filename":"rake","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":517,"date":"Feb 22 2019"},{"filename":"ranlib","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"rdoc","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":988,"date":"Feb 22 2019"},{"filename":"read","parent":"/usr/bin","flags":"-rwxr-xr-x","links":15,"owner":"root","group":"wheel","size":190,"date":"Feb 22 2019"},{"filename":"readlink","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":27520,"date":"May 3 2019"},{"filename":"rebase","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"redo_prebinding","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18320,"date":"Jul 16 2019"},{"filename":"refer","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":113904,"date":"May 3 2019"},{"filename":"renice","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18304,"date":"May 3 2019"},{"filename":"reset","link_to":"tset","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":4,"date":"May 4 2019"},{"filename":"resolveLinks","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18320,"date":"Jul 16 2019"},{"filename":"rev","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18416,"date":"May 3 2019"},{"filename":"ri","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":238,"date":"Feb 22 2019"},{"filename":"rmic","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/rmic","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":74,"date":"May 4 2019"},{"filename":"rmid","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/rmid","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":74,"date":"May 4 2019"},{"filename":"rmiregistry","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/rmiregistry","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":81,"date":"May 4 2019"},{"filename":"rpcgen","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"rs","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":22720,"date":"May 3 2019"},{"filename":"rsync","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":291632,"date":"May 3 2019"},{"filename":"ruby","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":52016,"date":"May 3 2019"},{"filename":"rview","link_to":"vim","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":3,"date":"May 4 2019"},{"filename":"rvim","link_to":"vim","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":3,"date":"May 4 2019"},{"filename":"rwbypid.d","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1657,"date":"Feb 22 2019"},{"filename":"rwbytype.d","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":2473,"date":"Feb 22 2019"},{"filename":"rwsnoop","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":6357,"date":"Feb 22 2019"},{"filename":"s2p","parent":"/usr/bin","flags":"-rwxr-xr-x","links":38,"owner":"root","group":"wheel","size":811,"date":"Mar 28 2019"},{"filename":"s2p5.18","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":53364,"date":"Mar 28 2019"},{"filename":"safaridriver","link_to":"/System/Library/CoreServices/SafariSupport.bundle/Contents/MacOS/safaridriver","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":77,"date":"May 4 2019"},{"filename":"sample","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":74816,"date":"Jan 24 01:14"},{"filename":"sampleproc","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":2544,"date":"Feb 22 2019"},{"filename":"sandbox-exec","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":19696,"date":"Jan 24 01:14"},{"filename":"say","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":54896,"date":"May 3 2019"},{"filename":"sc_usage","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":82416,"date":"Jan 24 01:14"},{"filename":"scandeps.pl","parent":"/usr/bin","flags":"-rwxr-xr-x","links":35,"owner":"root","group":"wheel","size":811,"date":"Feb 22 2019"},{"filename":"scandeps5.18.pl","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":5815,"date":"Feb 22 2019"},{"filename":"schemagen","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/schemagen","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":79,"date":"May 4 2019"},{"filename":"scp","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":80896,"date":"May 3 2019"},{"filename":"screen","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":294448,"date":"May 3 2019"},{"filename":"script","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":24112,"date":"May 3 2019"},{"filename":"sdef","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"sdiff","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":37584,"date":"May 3 2019"},{"filename":"sdp","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"sdx","link_to":"../../System/Library/Tcl/bin/sdx","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":32,"date":"May 4 2019"},{"filename":"security","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":263584,"date":"Jan 24 01:14"},{"filename":"sed","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":42176,"date":"May 3 2019"},{"filename":"seeksize.d","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":2041,"date":"Feb 22 2019"},{"filename":"segedit","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18304,"date":"Jul 16 2019"},{"filename":"seq","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23008,"date":"May 3 2019"},{"filename":"serialver","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/serialver","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":79,"date":"May 4 2019"},{"filename":"servertool","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/servertool","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":80,"date":"May 4 2019"},{"filename":"setregion","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":25024,"date":"May 3 2019"},{"filename":"setuids.d","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1606,"date":"Feb 22 2019"},{"filename":"sfltool","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":74480,"date":"May 3 2019"},{"filename":"sftp","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":119728,"date":"May 3 2019"},{"filename":"shar","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":2516,"date":"Feb 22 2019"},{"filename":"shasum","parent":"/usr/bin","flags":"-rwxr-xr-x","links":38,"owner":"root","group":"wheel","size":811,"date":"Mar 28 2019"},{"filename":"shasum5.18","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":8629,"date":"Mar 28 2019"},{"filename":"shlock","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23024,"date":"May 3 2019"},{"filename":"showmount","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":25008,"date":"May 3 2019"},{"filename":"sigdist.d","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1603,"date":"Feb 22 2019"},{"filename":"sips","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":99344,"date":"May 3 2019"},{"filename":"size","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"slogin","link_to":"ssh","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":3,"date":"May 4 2019"},{"filename":"smbutil","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":98560,"date":"Jan 24 01:14"},{"filename":"smtpd.py","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":928,"date":"Feb 22 2019"},{"filename":"smtpd2.7.py","link_to":"../../System/Library/Frameworks/Python.framework/Versions/2.7/bin/smtpd2.7.py","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":77,"date":"May 4 2019"},{"filename":"snfsdefrag","link_to":"/System/Library/Filesystems/acfs.fs/Contents/bin/snfsdefrag","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":59,"date":"May 4 2019"},{"filename":"snmp-bridge-mib","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":30680,"date":"Feb 22 2019"},{"filename":"snmpbulkget","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23648,"date":"May 3 2019"},{"filename":"snmpbulkwalk","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":24064,"date":"May 3 2019"},{"filename":"snmpconf","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":26136,"date":"Feb 22 2019"},{"filename":"snmpdelta","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":29520,"date":"May 3 2019"},{"filename":"snmpdf","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23712,"date":"May 3 2019"},{"filename":"snmpget","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":19440,"date":"May 3 2019"},{"filename":"snmpgetnext","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":19456,"date":"May 3 2019"},{"filename":"snmpinform","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":24144,"date":"May 3 2019"},{"filename":"snmpnetstat","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":55344,"date":"May 3 2019"},{"filename":"snmpset","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23568,"date":"May 3 2019"},{"filename":"snmpstatus","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":24192,"date":"May 3 2019"},{"filename":"snmptable","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":29104,"date":"May 3 2019"},{"filename":"snmptest","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":24672,"date":"May 3 2019"},{"filename":"snmptranslate","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":25184,"date":"May 3 2019"},{"filename":"snmptrap","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":24144,"date":"May 3 2019"},{"filename":"snmpusm","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":46256,"date":"May 3 2019"},{"filename":"snmpvacm","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":40128,"date":"May 3 2019"},{"filename":"snmpwalk","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23936,"date":"May 3 2019"},{"filename":"sntp","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":161504,"date":"May 3 2019"},{"filename":"soelim","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":38912,"date":"May 3 2019"},{"filename":"sort","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":56048,"date":"May 3 2019"},{"filename":"spfd","parent":"/usr/bin","flags":"-rwxr-xr-x","links":35,"owner":"root","group":"wheel","size":811,"date":"Feb 22 2019"},{"filename":"spfd5.18","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":9486,"date":"Feb 22 2019"},{"filename":"spfquery","parent":"/usr/bin","flags":"-rwxr-xr-x","links":35,"owner":"root","group":"wheel","size":811,"date":"Feb 22 2019"},{"filename":"spfquery5.18","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":23081,"date":"Feb 22 2019"},{"filename":"splain","parent":"/usr/bin","flags":"-rwxr-xr-x","links":38,"owner":"root","group":"wheel","size":811,"date":"Mar 28 2019"},{"filename":"splain5.18","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18681,"date":"Mar 28 2019"},{"filename":"split","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23104,"date":"May 3 2019"},{"filename":"sqlite3","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":2158960,"date":"Jul 16 2019"},{"filename":"ssh","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":2099264,"date":"May 3 2019"},{"filename":"ssh-add","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1791296,"date":"May 3 2019"},{"filename":"ssh-agent","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1767984,"date":"May 3 2019"},{"filename":"ssh-copy-id","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":10658,"date":"Feb 22 2019"},{"filename":"ssh-keygen","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1845584,"date":"May 3 2019"},{"filename":"ssh-keyscan","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1847504,"date":"May 3 2019"},{"filename":"stapler","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18304,"date":"Jul 16 2019"},{"filename":"stat","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":27520,"date":"May 3 2019"},{"filename":"stringdups","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":88896,"date":"Jan 24 01:14"},{"filename":"stringdups32","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":100384,"date":"Jan 24 01:14"},{"filename":"strings","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18304,"date":"Jul 16 2019"},{"filename":"strip","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"stty.pl","parent":"/usr/bin","flags":"-rwxr-xr-x","links":35,"owner":"root","group":"wheel","size":811,"date":"Feb 22 2019"},{"filename":"stty5.18.pl","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":277,"date":"Feb 22 2019"},{"filename":"su","parent":"/usr/bin","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"wheel","size":25488,"date":"May 3 2019"},{"filename":"sudo","parent":"/usr/bin","flags":"-r-s--x--x","links":1,"owner":"root","group":"wheel","size":438672,"date":"Jan 24 01:14"},{"filename":"sum","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":22688,"date":"May 3 2019"},{"filename":"svn","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"svnadmin","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18304,"date":"Jul 16 2019"},{"filename":"svndumpfilter","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18320,"date":"Jul 16 2019"},{"filename":"svnlook","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18304,"date":"Jul 16 2019"},{"filename":"svnserve","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18304,"date":"Jul 16 2019"},{"filename":"svnsync","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18304,"date":"Jul 16 2019"},{"filename":"svnversion","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18304,"date":"Jul 16 2019"},{"filename":"sw_vers","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18848,"date":"May 3 2019"},{"filename":"swift","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"swiftc","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"symbols","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":155072,"date":"Jan 24 01:14"},{"filename":"symbolscache","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":108688,"date":"Jul 16 2019"},{"filename":"syscallbypid.d","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1260,"date":"Feb 22 2019"},{"filename":"syscallbyproc.d","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":253,"date":"Feb 22 2019"},{"filename":"syscallbysysc.d","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":248,"date":"Feb 22 2019"},{"filename":"sysdiagnose","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":789920,"date":"Jan 24 01:14"},{"filename":"syslog","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":67728,"date":"May 3 2019"},{"filename":"systriage","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":452,"date":"Feb 22 2019"},{"filename":"tab2space","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":47248,"date":"Jul 16 2019"},{"filename":"tabs","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18576,"date":"May 3 2019"},{"filename":"tail","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":28560,"date":"May 3 2019"},{"filename":"tailspin","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":56992,"date":"Jul 16 2019"},{"filename":"talk","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":30928,"date":"May 3 2019"},{"filename":"tar","link_to":"bsdtar","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":6,"date":"May 4 2019"},{"filename":"taskinfo","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":38496,"date":"Jan 24 01:14"},{"filename":"tbl","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":111136,"date":"May 3 2019"},{"filename":"tbtdiagnose","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":55200,"date":"May 3 2019"},{"filename":"tccutil","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":19088,"date":"Jul 16 2019"},{"filename":"tclsh","link_to":"tclsh8.5","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":8,"date":"May 4 2019"},{"filename":"tclsh8.5","link_to":"../../System/Library/Frameworks/Tcl.framework/Versions/8.5/tclsh8.5","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":67,"date":"May 4 2019"},{"filename":"tee","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18400,"date":"May 3 2019"},{"filename":"texi2dvi","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":28218,"date":"Feb 22 2019"},{"filename":"texi2pdf","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":660,"date":"Feb 22 2019"},{"filename":"texindex","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":52368,"date":"May 3 2019"},{"filename":"textutil","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":48720,"date":"May 3 2019"},{"filename":"tfmtodit","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":39152,"date":"May 3 2019"},{"filename":"tftp","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":38976,"date":"May 3 2019"},{"filename":"thermal","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":26272,"date":"Jan 24 01:14"},{"filename":"tic","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":55792,"date":"May 3 2019"},{"filename":"tidy","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":75072,"date":"Jul 16 2019"},{"filename":"tiff2icns","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23440,"date":"May 3 2019"},{"filename":"tiffutil","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":335936,"date":"May 3 2019"},{"filename":"time","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18416,"date":"May 3 2019"},{"filename":"timer_analyser.d","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":2886,"date":"Apr 7 2019"},{"filename":"timerfires","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":6537,"date":"Apr 25 2019"},{"filename":"tkcon","link_to":"../../System/Library/Tcl/tkcon2.6/tkcon.tcl","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":43,"date":"May 4 2019"},{"filename":"tkmib","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":30924,"date":"Feb 22 2019"},{"filename":"tkpp","parent":"/usr/bin","flags":"-rwxr-xr-x","links":35,"owner":"root","group":"wheel","size":811,"date":"Feb 22 2019"},{"filename":"tkpp5.18","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":82203,"date":"Feb 22 2019"},{"filename":"tmdiagnose","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":180416,"date":"May 3 2019"},{"filename":"tmutil","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":293808,"date":"May 3 2019"},{"filename":"tnameserv","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/tnameserv","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":79,"date":"May 4 2019"},{"filename":"toe","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":24672,"date":"May 3 2019"},{"filename":"top","parent":"/usr/bin","flags":"-r-sr-xr-x","links":1,"owner":"root","group":"wheel","size":88400,"date":"May 3 2019"},{"filename":"tops","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":107536,"date":"May 3 2019"},{"filename":"topsyscall","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":4603,"date":"Feb 22 2019"},{"filename":"topsysproc","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":2950,"date":"Feb 22 2019"},{"filename":"touch","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23392,"date":"May 3 2019"},{"filename":"tput","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":24208,"date":"May 3 2019"},{"filename":"tr","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":27744,"date":"May 3 2019"},{"filename":"trace","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":132224,"date":"Jan 24 01:14"},{"filename":"traptoemail","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":2207,"date":"Feb 22 2019"},{"filename":"treereg","parent":"/usr/bin","flags":"-rwxr-xr-x","links":35,"owner":"root","group":"wheel","size":811,"date":"Feb 22 2019"},{"filename":"treereg5.18","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":10339,"date":"Feb 22 2019"},{"filename":"trimforce","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":29968,"date":"Jan 24 01:14"},{"filename":"troff","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":457920,"date":"May 3 2019"},{"filename":"true","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":17808,"date":"May 3 2019"},{"filename":"tset","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":28816,"date":"May 3 2019"},{"filename":"tsort","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":22976,"date":"May 3 2019"},{"filename":"tty","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18048,"date":"May 3 2019"},{"filename":"type","parent":"/usr/bin","flags":"-rwxr-xr-x","links":15,"owner":"root","group":"wheel","size":190,"date":"Feb 22 2019"},{"filename":"ul","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23200,"date":"May 3 2019"},{"filename":"ulimit","parent":"/usr/bin","flags":"-rwxr-xr-x","links":15,"owner":"root","group":"wheel","size":190,"date":"Feb 22 2019"},{"filename":"umask","parent":"/usr/bin","flags":"-rwxr-xr-x","links":15,"owner":"root","group":"wheel","size":190,"date":"Feb 22 2019"},{"filename":"unalias","parent":"/usr/bin","flags":"-rwxr-xr-x","links":15,"owner":"root","group":"wheel","size":190,"date":"Feb 22 2019"},{"filename":"uname","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18432,"date":"May 3 2019"},{"filename":"uncompress","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":27712,"date":"May 3 2019"},{"filename":"unexpand","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18576,"date":"May 3 2019"},{"filename":"unifdef","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18304,"date":"Jul 16 2019"},{"filename":"unifdefall","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18304,"date":"Jul 16 2019"},{"filename":"uniq","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23280,"date":"May 3 2019"},{"filename":"units","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":27712,"date":"May 3 2019"},{"filename":"unpack200","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/unpack200","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":79,"date":"May 4 2019"},{"filename":"unvis","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18400,"date":"May 3 2019"},{"filename":"unzip","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":185536,"date":"May 3 2019"},{"filename":"unzipsfx","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":88064,"date":"May 3 2019"},{"filename":"update_dyld_shared_cache","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":776032,"date":"May 3 2019"},{"filename":"uptime","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":24192,"date":"May 3 2019"},{"filename":"usbkdp","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":38720,"date":"Jan 24 01:14"},{"filename":"users","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18384,"date":"May 3 2019"},{"filename":"uucp","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"_uucp","group":"wheel","size":93664,"date":"May 3 2019"},{"filename":"uudecode","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":24176,"date":"May 3 2019"},{"filename":"uuencode","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":18768,"date":"May 3 2019"},{"filename":"uuidgen","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":43008,"date":"Jan 24 01:14"},{"filename":"uulog","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":70224,"date":"May 3 2019"},{"filename":"uuname","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"_uucp","group":"wheel","size":48288,"date":"May 3 2019"},{"filename":"uupick","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":75424,"date":"May 3 2019"},{"filename":"uustat","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"_uucp","group":"wheel","size":106224,"date":"May 3 2019"},{"filename":"uuto","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1958,"date":"Feb 22 2019"},{"filename":"uux","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"_uucp","group":"wheel","size":97760,"date":"May 3 2019"},{"filename":"vi","link_to":"vim","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":3,"date":"May 4 2019"},{"filename":"view","link_to":"vim","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":3,"date":"May 4 2019"},{"filename":"vim","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1863696,"date":"Jan 24 01:14"},{"filename":"vimdiff","link_to":"vim","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":3,"date":"May 4 2019"},{"filename":"vimtutor","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":2099,"date":"Feb 22 2019"},{"filename":"vis","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18528,"date":"May 3 2019"},{"filename":"vm_stat","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":51776,"date":"Jan 24 01:14"},{"filename":"vmmap","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":80176,"date":"Jan 24 01:14"},{"filename":"vmmap32","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":91104,"date":"Jan 24 01:14"},{"filename":"w","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":24192,"date":"May 3 2019"},{"filename":"wait","parent":"/usr/bin","flags":"-rwxr-xr-x","links":15,"owner":"root","group":"wheel","size":190,"date":"Feb 22 2019"},{"filename":"wall","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":24832,"date":"May 3 2019"},{"filename":"wc","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23072,"date":"May 3 2019"},{"filename":"wdutil","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":96816,"date":"May 3 2019"},{"filename":"what","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18096,"date":"May 3 2019"},{"filename":"whatis","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":1806,"date":"Feb 22 2019"},{"filename":"whereis","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18544,"date":"May 3 2019"},{"filename":"which","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18576,"date":"May 3 2019"},{"filename":"who","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23552,"date":"May 3 2019"},{"filename":"whoami","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23264,"date":"May 3 2019"},{"filename":"whois","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23776,"date":"May 3 2019"},{"filename":"wish","link_to":"wish8.5","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":7,"date":"May 4 2019"},{"filename":"wish8.5","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":127,"date":"Feb 22 2019"},{"filename":"write","parent":"/usr/bin","flags":"-r-xr-sr-x","links":1,"owner":"root","group":"tty","size":23936,"date":"May 3 2019"},{"filename":"wsgen","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/wsgen","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":75,"date":"May 4 2019"},{"filename":"wsimport","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/wsimport","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":78,"date":"May 4 2019"},{"filename":"xar","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":38672,"date":"May 3 2019"},{"filename":"xargs","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":24192,"date":"May 3 2019"},{"filename":"xattr","parent":"/usr/bin","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"wheel","size":925,"date":"Feb 22 2019"},{"filename":"xattr-2.7","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":432,"date":"Feb 22 2019"},{"filename":"xcode-select","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23968,"date":"Jul 16 2019"},{"filename":"xcodebuild","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18304,"date":"Jul 16 2019"},{"filename":"xcrun","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":17952,"date":"Jul 16 2019"},{"filename":"xcscontrol","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18304,"date":"Jul 16 2019"},{"filename":"xcsdiagnose","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18320,"date":"Jul 16 2019"},{"filename":"xed","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"xgettext.pl","parent":"/usr/bin","flags":"-rwxr-xr-x","links":35,"owner":"root","group":"wheel","size":811,"date":"Feb 22 2019"},{"filename":"xgettext5.18.pl","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":6650,"date":"Feb 22 2019"},{"filename":"xip","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":28624,"date":"Jan 24 01:14"},{"filename":"xjc","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/xjc","parent":"/usr/bin","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":73,"date":"May 4 2019"},{"filename":"xml2-config","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1874,"date":"Feb 22 2019"},{"filename":"xml2man","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18304,"date":"Jul 16 2019"},{"filename":"xmlcatalog","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":61104,"date":"Jan 24 01:14"},{"filename":"xmllint","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":141200,"date":"Jan 24 01:14"},{"filename":"xpath","parent":"/usr/bin","flags":"-rwxr-xr-x","links":35,"owner":"root","group":"wheel","size":811,"date":"Feb 22 2019"},{"filename":"xpath5.18","parent":"/usr/bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":1445,"date":"Feb 22 2019"},{"filename":"xslt-config","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":2546,"date":"Feb 22 2019"},{"filename":"xsltproc","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":75072,"date":"Jan 24 01:14"},{"filename":"xsubpp","parent":"/usr/bin","flags":"-rwxr-xr-x","links":38,"owner":"root","group":"wheel","size":811,"date":"Mar 28 2019"},{"filename":"xsubpp5.18","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":4591,"date":"Mar 28 2019"},{"filename":"xxd","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":27312,"date":"Jan 24 01:14"},{"filename":"yaa","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":70192,"date":"May 3 2019"},{"filename":"yacc","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18288,"date":"Jul 16 2019"},{"filename":"yes","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":17808,"date":"May 3 2019"},{"filename":"zcat","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":53280,"date":"May 3 2019"},{"filename":"zcmp","parent":"/usr/bin","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"wheel","size":3264,"date":"Feb 22 2019"},{"filename":"zdiff","parent":"/usr/bin","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"wheel","size":3264,"date":"Feb 22 2019"},{"filename":"zegrep","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":33952,"date":"May 3 2019"},{"filename":"zfgrep","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":33952,"date":"May 3 2019"},{"filename":"zforce","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1454,"date":"Feb 22 2019"},{"filename":"zgrep","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":33952,"date":"May 3 2019"},{"filename":"zip","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":171840,"date":"May 3 2019"},{"filename":"zipcloak","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":78224,"date":"May 3 2019"},{"filename":"zipdetails","parent":"/usr/bin","flags":"-rwxr-xr-x","links":38,"owner":"root","group":"wheel","size":811,"date":"Mar 28 2019"},{"filename":"zipdetails5.18","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":48113,"date":"Mar 28 2019"},{"filename":"zipgrep","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":2953,"date":"Feb 22 2019"},{"filename":"zipinfo","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":185536,"date":"May 3 2019"},{"filename":"zipnote","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":73408,"date":"May 3 2019"},{"filename":"zipsplit","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":77664,"date":"May 3 2019"},{"filename":"zless","parent":"/usr/bin","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"wheel","size":2080,"date":"Feb 22 2019"},{"filename":"zmore","parent":"/usr/bin","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"wheel","size":2080,"date":"Feb 22 2019"},{"filename":"znew","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":3376,"date":"Feb 22 2019"},{"filename":"zprint","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":74672,"date":"Jan 24 01:14"},{"filename":".","parent":"/usr/lib","flags":"drwxr-xr-x","links":306,"owner":"root","group":"wheel","size":9792,"date":"Feb 7 23:29"},{"filename":"..","parent":"/usr/lib","flags":"drwxr-xr-x@","links":9,"owner":"root","group":"wheel","size":288,"date":"May 3 2019"},{"filename":"ACIPCBTLib.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":51520,"date":"Jan 24 01:14"},{"filename":"AppleConvergedTransport.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":161312,"date":"Jan 24 01:14"},{"filename":"PN548.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1007520,"date":"Jan 24 01:14"},{"filename":"PN548_API.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":243472,"date":"Jan 24 01:14"},{"filename":"PN548_HAL.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":92768,"date":"Jan 24 01:14"},{"filename":"charset.alias","parent":"/usr/lib","flags":"-r--r--r--","links":1,"owner":"root","group":"wheel","size":198,"date":"Feb 22 2019"},{"filename":"cron","link_to":"../../var/at","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":12,"date":"May 4 2019"},{"filename":"dtrace","parent":"/usr/lib","flags":"drwxr-xr-x","links":13,"owner":"root","group":"wheel","size":416,"date":"May 3 2019"},{"filename":"dyld","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":973872,"date":"Jan 24 01:14"},{"filename":"groff","parent":"/usr/lib","flags":"drwxr-xr-x","links":4,"owner":"root","group":"wheel","size":128,"date":"Feb 22 2019"},{"filename":"libATCommandStudioDynamic.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":559232,"date":"Jul 16 2019"},{"filename":"libAccessibility.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":224272,"date":"Jul 16 2019"},{"filename":"libAccountPolicyTranslation.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23280,"date":"May 3 2019"},{"filename":"libAppleSSEExt.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":39504,"date":"Jan 24 01:14"},{"filename":"libAppletTranslationLibrary.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":154000,"date":"Jul 16 2019"},{"filename":"libAudioIssueDetector.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":913440,"date":"Jan 24 01:14"},{"filename":"libAudioStatistics.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":158336,"date":"Jan 24 01:14"},{"filename":"libBSDPClient.A.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":80976,"date":"May 3 2019"},{"filename":"libBSDPClient.dylib","link_to":"libBSDPClient.A.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":21,"date":"May 4 2019"},{"filename":"libCRFSuite.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":640240,"date":"May 3 2019"},{"filename":"libCRFSuite0.12.dylib","link_to":"libCRFSuite.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":17,"date":"May 4 2019"},{"filename":"libCTGreenTeaLogger.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":29584,"date":"Jul 16 2019"},{"filename":"libChineseTokenizer.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":201664,"date":"May 3 2019"},{"filename":"libCoreStorage.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1468304,"date":"May 3 2019"},{"filename":"libDHCPServer.A.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":32464,"date":"May 3 2019"},{"filename":"libDHCPServer.dylib","link_to":"libDHCPServer.A.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":21,"date":"May 4 2019"},{"filename":"libDiagnosticMessagesClient.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":57376,"date":"May 3 2019"},{"filename":"libFDR_osx.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":568496,"date":"Jan 24 01:14"},{"filename":"libFosl_dynamic.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":5421872,"date":"Jul 16 2019"},{"filename":"libIASAuthReboot.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":121680,"date":"Jul 16 2019"},{"filename":"libIASUnifiedProgress.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":103632,"date":"Jul 16 2019"},{"filename":"libMatch.1.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":102096,"date":"May 3 2019"},{"filename":"libMatch.dylib","link_to":"libMatch.1.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":16,"date":"May 4 2019"},{"filename":"libMaxEnt.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":86480,"date":"May 3 2019"},{"filename":"libMemoryResourceException.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":191952,"date":"Jul 16 2019"},{"filename":"libMobileGestalt.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":464496,"date":"Jul 16 2019"},{"filename":"libOpenScriptingUtil.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":43088,"date":"May 3 2019"},{"filename":"libParallelCompression.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":810432,"date":"May 3 2019"},{"filename":"libQMIParserDynamic.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":87856,"date":"Jul 16 2019"},{"filename":"libSMC.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1901664,"date":"May 3 2019"},{"filename":"libScreenReader.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":106368,"date":"Jul 16 2019"},{"filename":"libSystem.B.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":60880,"date":"Jan 24 01:14"},{"filename":"libSystem.dylib","link_to":"libSystem.B.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":17,"date":"May 4 2019"},{"filename":"libTelephonyUtilDynamic.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1148544,"date":"Jul 16 2019"},{"filename":"libThaiTokenizer.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":58736,"date":"May 3 2019"},{"filename":"libUniversalAccess.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":41632,"date":"May 3 2019"},{"filename":"libXSEvent.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":20960,"date":"May 3 2019"},{"filename":"libXplugin.1.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":181168,"date":"May 3 2019"},{"filename":"libXplugin.dylib","link_to":"libXplugin.1.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18,"date":"May 4 2019"},{"filename":"libapple_nghttp2.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":279968,"date":"May 3 2019"},{"filename":"libapr-1.0.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":343808,"date":"May 3 2019"},{"filename":"libapr-1.dylib","link_to":"libapr-1.0.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":16,"date":"May 4 2019"},{"filename":"libaprutil-1.0.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":298032,"date":"May 3 2019"},{"filename":"libaprutil-1.dylib","link_to":"libaprutil-1.0.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":20,"date":"May 4 2019"},{"filename":"libarchive.2.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":434528,"date":"May 3 2019"},{"filename":"libarchive.dylib","link_to":"libarchive.2.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18,"date":"May 4 2019"},{"filename":"libate.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":3066912,"date":"May 3 2019"},{"filename":"libauditd.0.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":67936,"date":"May 3 2019"},{"filename":"libauditd.dylib","link_to":"libauditd.0.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":17,"date":"May 4 2019"},{"filename":"libauto.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":50528,"date":"May 3 2019"},{"filename":"libblas.dylib","link_to":"../../System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":116,"date":"May 4 2019"},{"filename":"libboringssl.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1497616,"date":"Jan 24 01:14"},{"filename":"libbsm.0.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":200320,"date":"May 3 2019"},{"filename":"libbsm.dylib","link_to":"libbsm.0.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":14,"date":"May 4 2019"},{"filename":"libbz2.1.0.5.dylib","link_to":"libbz2.1.0.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":16,"date":"May 4 2019"},{"filename":"libbz2.1.0.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":155552,"date":"May 3 2019"},{"filename":"libbz2.dylib","link_to":"libbz2.1.0.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":16,"date":"May 4 2019"},{"filename":"libc++.1.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1432816,"date":"May 3 2019"},{"filename":"libc++.dylib","link_to":"libc++.1.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":14,"date":"May 4 2019"},{"filename":"libc++abi.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":339520,"date":"May 3 2019"},{"filename":"libc.dylib","link_to":"libSystem.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":15,"date":"May 4 2019"},{"filename":"libcblas.dylib","link_to":"../../System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":116,"date":"May 4 2019"},{"filename":"libcharset.1.0.0.dylib","link_to":"libcharset.1.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18,"date":"May 4 2019"},{"filename":"libcharset.1.dylib","parent":"/usr/lib","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":43552,"date":"May 3 2019"},{"filename":"libcharset.dylib","link_to":"libcharset.1.0.0.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":22,"date":"May 4 2019"},{"filename":"libclapack.dylib","link_to":"../../System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":118,"date":"May 4 2019"},{"filename":"libcmph.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":210080,"date":"May 3 2019"},{"filename":"libcom_err.dylib","link_to":"/System/Library/Frameworks/Kerberos.framework/Kerberos","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":54,"date":"May 4 2019"},{"filename":"libcompression.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":380336,"date":"Jul 16 2019"},{"filename":"libcoreroutine.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":4187760,"date":"May 3 2019"},{"filename":"libcoretls.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":271216,"date":"May 3 2019"},{"filename":"libcoretls_cfhelpers.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":60464,"date":"May 3 2019"},{"filename":"libcrypto.0.9.7.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":2015072,"date":"May 3 2019"},{"filename":"libcrypto.0.9.8.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":2652560,"date":"May 3 2019"},{"filename":"libcrypto.35.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":2793664,"date":"Jul 16 2019"},{"filename":"libcrypto.41.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":2826656,"date":"Jul 16 2019"},{"filename":"libcrypto.42.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":2826688,"date":"Jul 16 2019"},{"filename":"libcrypto.dylib","link_to":"libcrypto.35.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18,"date":"May 4 2019"},{"filename":"libcsfde.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":191328,"date":"May 3 2019"},{"filename":"libcupolicy.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":68896,"date":"Jul 16 2019"},{"filename":"libcups.2.dylib","parent":"/usr/lib","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":917120,"date":"Jan 24 01:14"},{"filename":"libcups.dylib","link_to":"libcups.2.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":15,"date":"May 4 2019"},{"filename":"libcupscgi.1.dylib","parent":"/usr/lib","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":125632,"date":"Jan 24 01:14"},{"filename":"libcupscgi.dylib","link_to":"libcupscgi.1.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18,"date":"May 4 2019"},{"filename":"libcupsimage.2.dylib","parent":"/usr/lib","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":94576,"date":"Jan 24 01:14"},{"filename":"libcupsimage.dylib","link_to":"libcupsimage.2.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":20,"date":"May 4 2019"},{"filename":"libcupsmime.1.dylib","parent":"/usr/lib","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":74976,"date":"Jan 24 01:14"},{"filename":"libcupsmime.dylib","link_to":"libcupsmime.1.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":19,"date":"May 4 2019"},{"filename":"libcupsppdc.1.dylib","parent":"/usr/lib","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":243888,"date":"Jan 24 01:14"},{"filename":"libcupsppdc.dylib","link_to":"libcupsppdc.1.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":19,"date":"May 4 2019"},{"filename":"libcurl.3.dylib","link_to":"libcurl.4.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":15,"date":"May 4 2019"},{"filename":"libcurl.4.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":850096,"date":"May 3 2019"},{"filename":"libcurl.dylib","link_to":"libcurl.4.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":15,"date":"May 4 2019"},{"filename":"libcurses.dylib","link_to":"libncurses.5.4.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":20,"date":"May 4 2019"},{"filename":"libdbm.dylib","link_to":"libSystem.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":15,"date":"May 4 2019"},{"filename":"libdes425.dylib","link_to":"/System/Library/Frameworks/Kerberos.framework/Kerberos","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":54,"date":"May 4 2019"},{"filename":"libdl.dylib","link_to":"libSystem.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":15,"date":"May 4 2019"},{"filename":"libdns_services.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":24656,"date":"Jan 24 01:14"},{"filename":"libdscsym.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":57408,"date":"May 3 2019"},{"filename":"libdtrace.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1286176,"date":"May 3 2019"},{"filename":"libdz.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":77024,"date":"May 3 2019"},{"filename":"libeasyperf.dylib","link_to":"libperfcheck.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18,"date":"May 4 2019"},{"filename":"libecpg.6.5.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":92512,"date":"May 3 2019"},{"filename":"libecpg.6.dylib","link_to":"libecpg.6.5.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":17,"date":"May 4 2019"},{"filename":"libecpg.dylib","link_to":"libecpg.6.5.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":17,"date":"May 4 2019"},{"filename":"libecpg_compat.3.5.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":30928,"date":"May 3 2019"},{"filename":"libecpg_compat.3.dylib","link_to":"libecpg_compat.3.5.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":24,"date":"May 4 2019"},{"filename":"libecpg_compat.dylib","link_to":"libecpg_compat.3.5.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":24,"date":"May 4 2019"},{"filename":"libedit.2.dylib","link_to":"libedit.3.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":15,"date":"May 4 2019"},{"filename":"libedit.3.0.dylib","link_to":"libedit.3.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":15,"date":"May 4 2019"},{"filename":"libedit.3.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":308224,"date":"May 3 2019"},{"filename":"libedit.dylib","link_to":"libedit.3.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":15,"date":"May 4 2019"},{"filename":"libenergytrace.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":42688,"date":"May 3 2019"},{"filename":"libexpat.1.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":274240,"date":"Jan 24 01:14"},{"filename":"libexpat.dylib","link_to":"libexpat.1.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":16,"date":"May 4 2019"},{"filename":"libexslt.0.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":171872,"date":"Jan 24 01:14"},{"filename":"libexslt.dylib","link_to":"libexslt.0.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":16,"date":"May 4 2019"},{"filename":"libextension.dylib","link_to":"../../System/Library/Frameworks/Foundation.framework/Versions/C/Foundation","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":74,"date":"May 4 2019"},{"filename":"libf77lapack.dylib","link_to":"../../System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":118,"date":"May 4 2019"},{"filename":"libffi.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":47568,"date":"May 3 2019"},{"filename":"libform.5.4.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":115456,"date":"May 3 2019"},{"filename":"libform.dylib","link_to":"libform.5.4.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":17,"date":"May 4 2019"},{"filename":"libgcc_s.1.dylib","link_to":"libSystem.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":15,"date":"May 4 2019"},{"filename":"libgermantok.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":85936,"date":"May 3 2019"},{"filename":"libgmalloc.dylib","parent":"/usr/lib","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":91872,"date":"May 3 2019"},{"filename":"libgssapi_krb5.dylib","link_to":"/System/Library/Frameworks/Kerberos.framework/Kerberos","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":54,"date":"May 4 2019"},{"filename":"libheimdal-asn1.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":96768,"date":"Jul 16 2019"},{"filename":"libhunspell-1.2.0.0.0.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":461312,"date":"May 3 2019"},{"filename":"libhunspell-1.2.0.dylib","link_to":"libhunspell-1.2.0.0.0.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":27,"date":"May 4 2019"},{"filename":"libhunspell-1.2.dylib","link_to":"libhunspell-1.2.0.0.0.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":27,"date":"May 4 2019"},{"filename":"libiconv.2.4.0.dylib","link_to":"libiconv.2.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":16,"date":"May 4 2019"},{"filename":"libiconv.2.dylib","parent":"/usr/lib","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":2095152,"date":"May 3 2019"},{"filename":"libiconv.dylib","link_to":"libiconv.2.4.0.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":20,"date":"May 4 2019"},{"filename":"libicucore.A.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":6805664,"date":"Jul 16 2019"},{"filename":"libicucore.dylib","link_to":"libicucore.A.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18,"date":"May 4 2019"},{"filename":"libinfo.dylib","link_to":"libSystem.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":15,"date":"May 4 2019"},{"filename":"libiodbc.2.1.18.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":553248,"date":"May 3 2019"},{"filename":"libiodbc.2.dylib","link_to":"libiodbc.2.1.18.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":21,"date":"May 4 2019"},{"filename":"libiodbc.dylib","link_to":"libiodbc.2.1.18.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":21,"date":"May 4 2019"},{"filename":"libiodbcinst.2.1.18.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":154496,"date":"May 3 2019"},{"filename":"libiodbcinst.2.dylib","link_to":"libiodbcinst.2.1.18.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":25,"date":"May 4 2019"},{"filename":"libiodbcinst.dylib","link_to":"libiodbcinst.2.1.18.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":25,"date":"May 4 2019"},{"filename":"libipconfig.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":38976,"date":"May 3 2019"},{"filename":"libipsec.A.dylib","parent":"/usr/lib","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":84736,"date":"Jan 24 01:14"},{"filename":"libipsec.dylib","link_to":"libipsec.A.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":16,"date":"May 4 2019"},{"filename":"libk5crypto.dylib","link_to":"/System/Library/Frameworks/Kerberos.framework/Kerberos","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":54,"date":"May 4 2019"},{"filename":"libkrb4.dylib","link_to":"/System/Library/Frameworks/Kerberos.framework/Kerberos","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":54,"date":"May 4 2019"},{"filename":"libkrb5.dylib","link_to":"/System/Library/Frameworks/Kerberos.framework/Kerberos","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":54,"date":"May 4 2019"},{"filename":"libkrb524.dylib","link_to":"/System/Library/Frameworks/Kerberos.framework/Kerberos","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":54,"date":"May 4 2019"},{"filename":"libkrb5support.dylib","link_to":"/System/Library/Frameworks/Kerberos.framework/Kerberos","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":54,"date":"May 4 2019"},{"filename":"libktrace.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":13632,"date":"Jul 16 2019"},{"filename":"liblangid.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":52496,"date":"May 3 2019"},{"filename":"liblapack.dylib","link_to":"../../System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":118,"date":"May 4 2019"},{"filename":"liblber.dylib","link_to":"/System/Library/Frameworks/LDAP.framework/Versions/A/LDAP","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":57,"date":"May 4 2019"},{"filename":"libldap.dylib","link_to":"/System/Library/Frameworks/LDAP.framework/Versions/A/LDAP","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":57,"date":"May 4 2019"},{"filename":"libldap_r.dylib","link_to":"/System/Library/Frameworks/LDAP.framework/Versions/A/LDAP","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":57,"date":"May 4 2019"},{"filename":"liblzma.5.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":264384,"date":"May 3 2019"},{"filename":"liblzma.dylib","link_to":"liblzma.5.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":15,"date":"May 4 2019"},{"filename":"libm.dylib","link_to":"libSystem.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":15,"date":"May 4 2019"},{"filename":"libmarisa.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":288144,"date":"May 3 2019"},{"filename":"libmecab.1.0.0.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1596512,"date":"May 3 2019"},{"filename":"libmecab.dylib","link_to":"libmecab.1.0.0.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":20,"date":"May 4 2019"},{"filename":"libmecabra.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":4820080,"date":"May 3 2019"},{"filename":"libmenu.5.4.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":76320,"date":"May 3 2019"},{"filename":"libmenu.dylib","link_to":"libmenu.5.4.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":17,"date":"May 4 2019"},{"filename":"libmx.A.dylib","link_to":"libSystem.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":15,"date":"May 4 2019"},{"filename":"libmx.dylib","link_to":"libSystem.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":15,"date":"May 4 2019"},{"filename":"libncurses.5.4.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":518896,"date":"May 3 2019"},{"filename":"libncurses.5.dylib","link_to":"libncurses.5.4.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":20,"date":"May 4 2019"},{"filename":"libncurses.dylib","link_to":"libncurses.5.4.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":20,"date":"May 4 2019"},{"filename":"libnetsnmp.15.1.2.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1116224,"date":"May 3 2019"},{"filename":"libnetsnmp.15.dylib","link_to":"libnetsnmp.15.1.2.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23,"date":"May 4 2019"},{"filename":"libnetsnmp.25.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1105808,"date":"May 3 2019"},{"filename":"libnetsnmp.5.2.1.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":482288,"date":"May 3 2019"},{"filename":"libnetsnmp.5.dylib","link_to":"libnetsnmp.5.2.1.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":22,"date":"May 4 2019"},{"filename":"libnetsnmp.dylib","link_to":"libnetsnmp.25.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":19,"date":"May 4 2019"},{"filename":"libnetsnmpagent.25.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":673808,"date":"May 3 2019"},{"filename":"libnetsnmpagent.dylib","link_to":"libnetsnmpagent.25.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":24,"date":"May 4 2019"},{"filename":"libnetsnmphelpers.25.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":34048,"date":"May 3 2019"},{"filename":"libnetsnmphelpers.dylib","link_to":"libnetsnmphelpers.25.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":26,"date":"May 4 2019"},{"filename":"libnetsnmpmibs.25.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1211776,"date":"May 3 2019"},{"filename":"libnetsnmpmibs.dylib","link_to":"libnetsnmpmibs.25.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23,"date":"May 4 2019"},{"filename":"libnetsnmptrapd.25.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":101840,"date":"May 3 2019"},{"filename":"libnetsnmptrapd.dylib","link_to":"libnetsnmptrapd.25.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":24,"date":"May 4 2019"},{"filename":"libnetwork.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":7980448,"date":"May 3 2019"},{"filename":"libnetworkextension.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":92512,"date":"May 3 2019"},{"filename":"libnfrestore.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":103408,"date":"Jan 24 01:14"},{"filename":"libnfshared.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1009328,"date":"Jan 24 01:14"},{"filename":"libobjc-trampolines.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":87744,"date":"May 3 2019"},{"filename":"libobjc.A.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":28112240,"date":"May 3 2019"},{"filename":"libobjc.dylib","link_to":"libobjc.A.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":15,"date":"May 4 2019"},{"filename":"libodfde.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":53824,"date":"May 3 2019"},{"filename":"libodmodule.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":151024,"date":"May 3 2019"},{"filename":"libpam.1.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":52096,"date":"May 3 2019"},{"filename":"libpam.2.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":85376,"date":"May 3 2019"},{"filename":"libpam.dylib","link_to":"libpam.2.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":14,"date":"May 4 2019"},{"filename":"libpanel.5.4.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":51552,"date":"May 3 2019"},{"filename":"libpanel.dylib","link_to":"libpanel.5.4.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18,"date":"May 4 2019"},{"filename":"libpcap.A.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":546608,"date":"Jan 24 01:14"},{"filename":"libpcap.dylib","link_to":"libpcap.A.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":15,"date":"May 4 2019"},{"filename":"libpcre.0.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":534992,"date":"May 3 2019"},{"filename":"libpcre.dylib","link_to":"libpcre.0.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":15,"date":"May 4 2019"},{"filename":"libpcreposix.0.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":43040,"date":"May 3 2019"},{"filename":"libpcreposix.dylib","link_to":"libpcreposix.0.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":20,"date":"May 4 2019"},{"filename":"libperfcheck.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":84688,"date":"May 3 2019"},{"filename":"libpgtypes.3.4.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":78768,"date":"May 3 2019"},{"filename":"libpgtypes.3.dylib","link_to":"libpgtypes.3.4.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":20,"date":"May 4 2019"},{"filename":"libpgtypes.dylib","link_to":"libpgtypes.3.4.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":20,"date":"May 4 2019"},{"filename":"libpmenergy.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":32976,"date":"Jan 24 01:14"},{"filename":"libpmsample.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":31984,"date":"Jan 24 01:14"},{"filename":"libpoll.dylib","link_to":"libSystem.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":15,"date":"May 4 2019"},{"filename":"libpq.5.6.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":178992,"date":"May 3 2019"},{"filename":"libpq.5.dylib","link_to":"libpq.5.6.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":15,"date":"May 4 2019"},{"filename":"libpq.dylib","link_to":"libpq.5.6.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":15,"date":"May 4 2019"},{"filename":"libprequelite.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":147888,"date":"May 3 2019"},{"filename":"libproc.dylib","link_to":"libSystem.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":15,"date":"May 4 2019"},{"filename":"libpthread.dylib","link_to":"libSystem.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":15,"date":"May 4 2019"},{"filename":"libpython.dylib","link_to":"libpython2.7.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18,"date":"May 4 2019"},{"filename":"libpython2.7.dylib","link_to":"../../System/Library/Frameworks/Python.framework/Versions/2.7/Python","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":68,"date":"May 4 2019"},{"filename":"libquic.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":763136,"date":"May 3 2019"},{"filename":"libquit.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":25520,"date":"Jul 16 2019"},{"filename":"libreadline.dylib","link_to":"libedit.3.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":15,"date":"May 4 2019"},{"filename":"libresolv.9.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":278144,"date":"Jan 24 01:14"},{"filename":"libresolv.dylib","link_to":"libresolv.9.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":17,"date":"May 4 2019"},{"filename":"librpcsvc.dylib","link_to":"libSystem.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":15,"date":"May 4 2019"},{"filename":"libruby.2.3.0.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":388992,"date":"May 3 2019"},{"filename":"libruby.2.3.dylib","link_to":"libruby.2.3.0.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":19,"date":"May 4 2019"},{"filename":"libruby.dylib","link_to":"libruby.2.3.0.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":19,"date":"May 4 2019"},{"filename":"libsandbox.1.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":669856,"date":"Jul 16 2019"},{"filename":"libsandbox.dylib","link_to":"libsandbox.1.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18,"date":"May 4 2019"},{"filename":"libsasl2.2.0.1.dylib","link_to":"libsasl2.2.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":16,"date":"May 4 2019"},{"filename":"libsasl2.2.0.15.dylib","link_to":"libsasl2.2.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":16,"date":"May 4 2019"},{"filename":"libsasl2.2.0.21.dylib","link_to":"libsasl2.2.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":16,"date":"May 4 2019"},{"filename":"libsasl2.2.0.22.dylib","link_to":"libsasl2.2.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":16,"date":"May 4 2019"},{"filename":"libsasl2.2.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":217040,"date":"May 3 2019"},{"filename":"libsasl2.dylib","link_to":"libsasl2.2.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":16,"date":"May 4 2019"},{"filename":"libspindump.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":27040,"date":"Jul 16 2019"},{"filename":"libsqlite3.0.dylib","link_to":"libsqlite3.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":16,"date":"May 4 2019"},{"filename":"libsqlite3.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":6234688,"date":"Jul 16 2019"},{"filename":"libssl.0.9.7.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":392912,"date":"May 3 2019"},{"filename":"libssl.0.9.8.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":642464,"date":"May 3 2019"},{"filename":"libssl.35.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":624624,"date":"Jul 16 2019"},{"filename":"libssl.43.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":599888,"date":"Jul 16 2019"},{"filename":"libssl.44.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":569984,"date":"Jul 16 2019"},{"filename":"libssl.dylib","link_to":"libssl.35.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":15,"date":"May 4 2019"},{"filename":"libstdc++.6.0.9.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1417712,"date":"May 3 2019"},{"filename":"libstdc++.6.dylib","link_to":"libstdc++.6.0.9.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":21,"date":"May 4 2019"},{"filename":"libstdc++.dylib","link_to":"libstdc++.6.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":17,"date":"May 4 2019"},{"filename":"libsysdiagnose.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":45168,"date":"Jul 16 2019"},{"filename":"libsysmon.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":29856,"date":"Jan 24 01:14"},{"filename":"libsystemstats.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":113936,"date":"Jan 24 01:14"},{"filename":"libtailspin.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":141456,"date":"Jul 16 2019"},{"filename":"libtcl.dylib","link_to":"libtcl8.5.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":15,"date":"May 4 2019"},{"filename":"libtcl8.5.dylib","link_to":"../../System/Library/Frameworks/Tcl.framework/Versions/8.5/Tcl","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":62,"date":"May 4 2019"},{"filename":"libtermcap.dylib","link_to":"libncurses.5.4.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":20,"date":"May 4 2019"},{"filename":"libtidy.A.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":519520,"date":"Jul 16 2019"},{"filename":"libtidy.dylib","link_to":"libtidy.A.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":15,"date":"May 4 2019"},{"filename":"libtk.dylib","link_to":"libtk8.5.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":14,"date":"May 4 2019"},{"filename":"libtk8.5.dylib","link_to":"../../System/Library/Frameworks/Tk.framework/Versions/8.5/Tk","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":60,"date":"May 4 2019"},{"filename":"libtls.15.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":125104,"date":"Jul 16 2019"},{"filename":"libtls.16.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":130416,"date":"Jul 16 2019"},{"filename":"libtls.6.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":75472,"date":"Jul 16 2019"},{"filename":"libtls.dylib","link_to":"libtls.6.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":14,"date":"May 4 2019"},{"filename":"libtzupdate.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":65376,"date":"May 3 2019"},{"filename":"libusrtcp.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":886896,"date":"May 3 2019"},{"filename":"libutil.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":82064,"date":"May 3 2019"},{"filename":"libutil1.0.dylib","link_to":"libutil.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":13,"date":"May 4 2019"},{"filename":"libxar.1.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":188816,"date":"May 3 2019"},{"filename":"libxar.dylib","link_to":"libxar.1.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":14,"date":"May 4 2019"},{"filename":"libxcselect.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":34736,"date":"Jul 16 2019"},{"filename":"libxml2.2.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":2262128,"date":"Jan 24 01:14"},{"filename":"libxml2.dylib","link_to":"libxml2.2.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":15,"date":"May 4 2019"},{"filename":"libxslt.1.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":441952,"date":"Jan 24 01:14"},{"filename":"libxslt.dylib","link_to":"libxslt.1.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":15,"date":"May 4 2019"},{"filename":"libz.1.1.3.dylib","link_to":"libz.1.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":12,"date":"May 4 2019"},{"filename":"libz.1.2.11.dylib","link_to":"libz.1.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":12,"date":"May 4 2019"},{"filename":"libz.1.2.5.dylib","link_to":"libz.1.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":12,"date":"May 4 2019"},{"filename":"libz.1.2.8.dylib","link_to":"libz.1.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":12,"date":"May 4 2019"},{"filename":"libz.1.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":186480,"date":"May 3 2019"},{"filename":"libz.dylib","link_to":"libz.1.dylib","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":12,"date":"May 4 2019"},{"filename":"log","parent":"/usr/lib","flags":"drwxr-xr-x","links":14,"owner":"root","group":"wheel","size":448,"date":"Feb 7 23:29"},{"filename":"pam","parent":"/usr/lib","flags":"drwxr-xr-x","links":20,"owner":"root","group":"wheel","size":640,"date":"Feb 7 23:29"},{"filename":"php","parent":"/usr/lib","flags":"drwxr-xr-x","links":4,"owner":"root","group":"wheel","size":128,"date":"Feb 22 2019"},{"filename":"pkgconfig","parent":"/usr/lib","flags":"drwxr-xr-x","links":11,"owner":"root","group":"wheel","size":352,"date":"May 3 2019"},{"filename":"python2.7","link_to":"../../System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":75,"date":"May 4 2019"},{"filename":"rpcsvc","parent":"/usr/lib","flags":"drwxr-xr-x","links":9,"owner":"root","group":"wheel","size":288,"date":"Jul 23 2019"},{"filename":"ruby","link_to":"../../System/Library/Frameworks/Ruby.framework/Versions/Current/usr/lib/ruby","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":76,"date":"May 4 2019"},{"filename":"sasl2","parent":"/usr/lib","flags":"drwxr-xr-x","links":22,"owner":"root","group":"wheel","size":704,"date":"May 4 2019"},{"filename":"sqlite3","link_to":"/System/Library/Tcl/sqlite3","parent":"/usr/lib","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":27,"date":"May 4 2019"},{"filename":"ssh-keychain.dylib","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":53824,"date":"Jul 16 2019"},{"filename":"swift","parent":"/usr/lib","flags":"drwxr-xr-x","links":49,"owner":"root","group":"wheel","size":1568,"date":"Jul 23 2019"},{"filename":"system","parent":"/usr/lib","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Feb 7 23:29"},{"filename":"xpc","parent":"/usr/lib","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"zsh","parent":"/usr/lib","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Feb 22 2019"},{"filename":".","parent":"/usr/lib/dtrace","flags":"drwxr-xr-x","links":13,"owner":"root","group":"wheel","size":416,"date":"May 3 2019"},{"filename":"..","parent":"/usr/lib/dtrace","flags":"drwxr-xr-x","links":306,"owner":"root","group":"wheel","size":9792,"date":"Feb 7 23:29"},{"filename":"darwin.d","parent":"/usr/lib/dtrace","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":13493,"date":"Apr 25 2019"},{"filename":"dt_cpp.h","parent":"/usr/lib/dtrace","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":1004,"date":"Feb 22 2019"},{"filename":"errno.d","parent":"/usr/lib/dtrace","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":7011,"date":"Apr 25 2019"},{"filename":"io.d","parent":"/usr/lib/dtrace","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":9616,"date":"Apr 25 2019"},{"filename":"ip.d","parent":"/usr/lib/dtrace","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":9305,"date":"Apr 25 2019"},{"filename":"regs_x86_64.d","parent":"/usr/lib/dtrace","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":2526,"date":"Apr 25 2019"},{"filename":"sched.d","parent":"/usr/lib/dtrace","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":2577,"date":"Apr 25 2019"},{"filename":"signal.d","parent":"/usr/lib/dtrace","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":2738,"date":"Apr 25 2019"},{"filename":"socket.d","parent":"/usr/lib/dtrace","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":2001,"date":"Apr 25 2019"},{"filename":"tcp.d","parent":"/usr/lib/dtrace","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":8626,"date":"Apr 25 2019"},{"filename":"unistd.d","parent":"/usr/lib/dtrace","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":1973,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/lib/groff","flags":"drwxr-xr-x","links":4,"owner":"root","group":"wheel","size":128,"date":"Feb 22 2019"},{"filename":"..","parent":"/usr/lib/groff","flags":"drwxr-xr-x","links":306,"owner":"root","group":"wheel","size":9792,"date":"Feb 7 23:29"},{"filename":"groffer","parent":"/usr/lib/groff","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Feb 22 2019"},{"filename":"site-tmac","parent":"/usr/lib/groff","flags":"drwxr-xr-x","links":2,"owner":"root","group":"wheel","size":64,"date":"Feb 22 2019"},{"filename":".","parent":"/usr/lib/groff/groffer","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Feb 22 2019"},{"filename":"..","parent":"/usr/lib/groff/groffer","flags":"drwxr-xr-x","links":4,"owner":"root","group":"wheel","size":128,"date":"Feb 22 2019"},{"filename":"groffer2.sh","parent":"/usr/lib/groff/groffer","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":141865,"date":"Feb 22 2019"},{"filename":".","parent":"/usr/lib/groff/site-tmac","flags":"drwxr-xr-x","links":2,"owner":"root","group":"wheel","size":64,"date":"Feb 22 2019"},{"filename":"..","parent":"/usr/lib/groff/site-tmac","flags":"drwxr-xr-x","links":4,"owner":"root","group":"wheel","size":128,"date":"Feb 22 2019"},{"filename":".","parent":"/usr/lib/log","flags":"drwxr-xr-x","links":14,"owner":"root","group":"wheel","size":448,"date":"Feb 7 23:29"},{"filename":"..","parent":"/usr/lib/log","flags":"drwxr-xr-x","links":306,"owner":"root","group":"wheel","size":9792,"date":"Feb 7 23:29"},{"filename":"liblog_AppStoreDaemon.dylib","parent":"/usr/lib/log","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":32256,"date":"Jul 16 2019"},{"filename":"liblog_AppleLDAPTypes.dylib","parent":"/usr/lib/log","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":35872,"date":"May 3 2019"},{"filename":"liblog_SystemConfiguration.dylib","parent":"/usr/lib/log","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":33840,"date":"Jan 24 01:14"},{"filename":"liblog_audio.dylib","parent":"/usr/lib/log","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":114352,"date":"Jan 24 01:14"},{"filename":"liblog_coreacc.dylib","parent":"/usr/lib/log","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":37952,"date":"Jul 16 2019"},{"filename":"liblog_geo.dylib","parent":"/usr/lib/log","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":162608,"date":"Jan 24 01:13"},{"filename":"liblog_location.dylib","parent":"/usr/lib/log","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":83360,"date":"Jul 16 2019"},{"filename":"liblog_network.dylib","parent":"/usr/lib/log","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23712,"date":"May 3 2019"},{"filename":"liblog_odtypes.dylib","parent":"/usr/lib/log","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":27520,"date":"May 3 2019"},{"filename":"liblog_signpost.description.dylib","parent":"/usr/lib/log","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18608,"date":"Jul 16 2019"},{"filename":"liblog_signpost.dylib","parent":"/usr/lib/log","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18112,"date":"Jul 16 2019"},{"filename":"liblog_signpost.telemetry.dylib","parent":"/usr/lib/log","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18608,"date":"Jul 16 2019"},{"filename":".","parent":"/usr/lib/pam","flags":"drwxr-xr-x","links":20,"owner":"root","group":"wheel","size":640,"date":"Feb 7 23:29"},{"filename":"..","parent":"/usr/lib/pam","flags":"drwxr-xr-x","links":306,"owner":"root","group":"wheel","size":9792,"date":"Feb 7 23:29"},{"filename":"pam_aks.so.2","parent":"/usr/lib/pam","flags":"-r--r--r--","links":1,"owner":"root","group":"wheel","size":19024,"date":"Jan 24 01:13"},{"filename":"pam_deny.so.2","parent":"/usr/lib/pam","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":34288,"date":"May 3 2019"},{"filename":"pam_env.so.2","parent":"/usr/lib/pam","flags":"-r--r--r--","links":1,"owner":"root","group":"wheel","size":60768,"date":"Jan 24 01:14"},{"filename":"pam_group.so.2","parent":"/usr/lib/pam","flags":"-r--r--r--","links":1,"owner":"root","group":"wheel","size":43184,"date":"Jan 24 01:13"},{"filename":"pam_krb5.so.2","parent":"/usr/lib/pam","flags":"-r--r--r--","links":1,"owner":"root","group":"wheel","size":100784,"date":"Jan 24 01:13"},{"filename":"pam_launchd.so.2","parent":"/usr/lib/pam","flags":"-r--r--r--","links":1,"owner":"root","group":"wheel","size":43776,"date":"Jan 24 01:13"},{"filename":"pam_localauthentication.so.2","parent":"/usr/lib/pam","flags":"-r--r--r--","links":1,"owner":"root","group":"wheel","size":91936,"date":"Jan 24 01:14"},{"filename":"pam_mount.so.2","parent":"/usr/lib/pam","flags":"-r--r--r--","links":1,"owner":"root","group":"wheel","size":77600,"date":"Jan 24 01:13"},{"filename":"pam_nologin.so.2","parent":"/usr/lib/pam","flags":"-r--r--r--","links":1,"owner":"root","group":"wheel","size":43056,"date":"Jan 24 01:13"},{"filename":"pam_ntlm.so.2","parent":"/usr/lib/pam","flags":"-r--r--r--","links":1,"owner":"root","group":"wheel","size":68432,"date":"Jan 24 01:13"},{"filename":"pam_opendirectory.so.2","parent":"/usr/lib/pam","flags":"-r--r--r--","links":1,"owner":"root","group":"wheel","size":72768,"date":"Jan 24 01:14"},{"filename":"pam_permit.so.2","parent":"/usr/lib/pam","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":34288,"date":"May 3 2019"},{"filename":"pam_rootok.so.2","parent":"/usr/lib/pam","flags":"-r--r--r--","links":1,"owner":"root","group":"wheel","size":42496,"date":"Jan 24 01:13"},{"filename":"pam_sacl.so.2","parent":"/usr/lib/pam","flags":"-r--r--r--","links":1,"owner":"root","group":"wheel","size":43088,"date":"Jan 24 01:13"},{"filename":"pam_self.so.2","parent":"/usr/lib/pam","flags":"-r--r--r--","links":1,"owner":"root","group":"wheel","size":42720,"date":"Jan 24 01:14"},{"filename":"pam_smartcard.so.2","parent":"/usr/lib/pam","flags":"-r--r--r--","links":1,"owner":"root","group":"wheel","size":143408,"date":"Jan 24 01:14"},{"filename":"pam_tid.so.2","parent":"/usr/lib/pam","flags":"-r--r--r--","links":1,"owner":"root","group":"wheel","size":100464,"date":"Jan 24 01:14"},{"filename":"pam_uwtmp.so.2","parent":"/usr/lib/pam","flags":"-r--r--r--","links":1,"owner":"root","group":"wheel","size":43200,"date":"Jan 24 01:13"},{"filename":".","parent":"/usr/lib/php","flags":"drwxr-xr-x","links":4,"owner":"root","group":"wheel","size":128,"date":"Feb 22 2019"},{"filename":"..","parent":"/usr/lib/php","flags":"drwxr-xr-x","links":306,"owner":"root","group":"wheel","size":9792,"date":"Feb 7 23:29"},{"filename":"build","parent":"/usr/lib/php","flags":"drwxr-xr-x","links":14,"owner":"root","group":"wheel","size":448,"date":"Feb 7 23:29"},{"filename":"extensions","parent":"/usr/lib/php","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Feb 22 2019"},{"filename":".","parent":"/usr/lib/php/build","flags":"drwxr-xr-x","links":14,"owner":"root","group":"wheel","size":448,"date":"Feb 7 23:29"},{"filename":"..","parent":"/usr/lib/php/build","flags":"drwxr-xr-x","links":4,"owner":"root","group":"wheel","size":128,"date":"Feb 22 2019"},{"filename":"Makefile.global","parent":"/usr/lib/php/build","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":7156,"date":"Feb 22 2019"},{"filename":"acinclude.m4","parent":"/usr/lib/php/build","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":84357,"date":"Jan 6 22:21"},{"filename":"ax_check_compile_flag.m4","parent":"/usr/lib/php/build","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":3330,"date":"Feb 22 2019"},{"filename":"config.guess","parent":"/usr/lib/php/build","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":42938,"date":"Feb 22 2019"},{"filename":"config.sub","parent":"/usr/lib/php/build","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":35987,"date":"Feb 22 2019"},{"filename":"libtool.m4","parent":"/usr/lib/php/build","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":230377,"date":"Feb 22 2019"},{"filename":"ltmain.sh","parent":"/usr/lib/php/build","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":199728,"date":"Feb 22 2019"},{"filename":"mkdep.awk","parent":"/usr/lib/php/build","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":2215,"date":"Jan 6 22:21"},{"filename":"phpize.m4","parent":"/usr/lib/php/build","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":4684,"date":"Jan 6 22:21"},{"filename":"run-tests.php","parent":"/usr/lib/php/build","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":82608,"date":"Jan 6 22:21"},{"filename":"scan_makefile_in.awk","parent":"/usr/lib/php/build","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":409,"date":"Jan 6 22:21"},{"filename":"shtool","parent":"/usr/lib/php/build","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":65761,"date":"Feb 22 2019"},{"filename":".","parent":"/usr/lib/php/extensions","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Feb 22 2019"},{"filename":"..","parent":"/usr/lib/php/extensions","flags":"drwxr-xr-x","links":4,"owner":"root","group":"wheel","size":128,"date":"Feb 22 2019"},{"filename":"no-debug-non-zts-20160303","parent":"/usr/lib/php/extensions","flags":"drwxr-xr-x","links":4,"owner":"root","group":"wheel","size":128,"date":"Feb 7 23:29"},{"filename":".","parent":"/usr/lib/php/extensions/no-debug-non-zts-20160303","flags":"drwxr-xr-x","links":4,"owner":"root","group":"wheel","size":128,"date":"Feb 7 23:29"},{"filename":"..","parent":"/usr/lib/php/extensions/no-debug-non-zts-20160303","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Feb 22 2019"},{"filename":"opcache.so","parent":"/usr/lib/php/extensions/no-debug-non-zts-20160303","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":363712,"date":"Jan 24 01:13"},{"filename":"xdebug.so","parent":"/usr/lib/php/extensions/no-debug-non-zts-20160303","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":245424,"date":"Jan 24 01:13"},{"filename":".","parent":"/usr/lib/pkgconfig","flags":"drwxr-xr-x","links":11,"owner":"root","group":"wheel","size":352,"date":"May 3 2019"},{"filename":"..","parent":"/usr/lib/pkgconfig","flags":"drwxr-xr-x","links":306,"owner":"root","group":"wheel","size":9792,"date":"Feb 7 23:29"},{"filename":"apr-1.pc","parent":"/usr/lib/pkgconfig","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":341,"date":"Feb 22 2019"},{"filename":"apr-util-1.pc","parent":"/usr/lib/pkgconfig","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":433,"date":"Feb 22 2019"},{"filename":"libecpg.pc","parent":"/usr/lib/pkgconfig","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":465,"date":"Feb 22 2019"},{"filename":"libecpg_compat.pc","parent":"/usr/lib/pkgconfig","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":493,"date":"Feb 22 2019"},{"filename":"libiodbc.pc","parent":"/usr/lib/pkgconfig","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":3591,"date":"Feb 22 2019"},{"filename":"libpcre.pc","parent":"/usr/lib/pkgconfig","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":313,"date":"Feb 22 2019"},{"filename":"libpcreposix.pc","parent":"/usr/lib/pkgconfig","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":301,"date":"Feb 22 2019"},{"filename":"libpgtypes.pc","parent":"/usr/lib/pkgconfig","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":448,"date":"Feb 22 2019"},{"filename":"libpq.pc","parent":"/usr/lib/pkgconfig","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":453,"date":"Feb 22 2019"},{"filename":".","parent":"/usr/lib/rpcsvc","flags":"drwxr-xr-x","links":9,"owner":"root","group":"wheel","size":288,"date":"Jul 23 2019"},{"filename":"..","parent":"/usr/lib/rpcsvc","flags":"drwxr-xr-x","links":306,"owner":"root","group":"wheel","size":9792,"date":"Feb 7 23:29"},{"filename":"dssetup.bundle","parent":"/usr/lib/rpcsvc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":61408,"date":"Jul 16 2019"},{"filename":"echosvc.bundle","parent":"/usr/lib/rpcsvc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":27696,"date":"Jul 16 2019"},{"filename":"lsarpc.bundle","parent":"/usr/lib/rpcsvc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":387088,"date":"Jul 16 2019"},{"filename":"mdssvc.bundle","parent":"/usr/lib/rpcsvc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":134720,"date":"Jul 16 2019"},{"filename":"netlogon.bundle","parent":"/usr/lib/rpcsvc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":488592,"date":"Jul 16 2019"},{"filename":"srvsvc.bundle","parent":"/usr/lib/rpcsvc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":435280,"date":"Jul 16 2019"},{"filename":"wkssvc.bundle","parent":"/usr/lib/rpcsvc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":96160,"date":"Jul 16 2019"},{"filename":".","parent":"/usr/lib/sasl2","flags":"drwxr-xr-x","links":22,"owner":"root","group":"wheel","size":704,"date":"May 4 2019"},{"filename":"..","parent":"/usr/lib/sasl2","flags":"drwxr-xr-x","links":306,"owner":"root","group":"wheel","size":9792,"date":"Feb 7 23:29"},{"filename":"apop.so","parent":"/usr/lib/sasl2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":60688,"date":"May 3 2019"},{"filename":"atoken.so","parent":"/usr/lib/sasl2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":52048,"date":"May 3 2019"},{"filename":"dhx.so","parent":"/usr/lib/sasl2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":241344,"date":"May 3 2019"},{"filename":"digestmd5WebDAV.so","parent":"/usr/lib/sasl2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":116512,"date":"May 3 2019"},{"filename":"libanonymous.2.so","parent":"/usr/lib/sasl2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":57008,"date":"May 3 2019"},{"filename":"libcrammd5.2.so","parent":"/usr/lib/sasl2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":61232,"date":"May 3 2019"},{"filename":"libdigestmd5.2.so","parent":"/usr/lib/sasl2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":120432,"date":"May 3 2019"},{"filename":"libgssapiv2.2.0.18.so","parent":"/usr/lib/sasl2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":84176,"date":"May 3 2019"},{"filename":"libgssapiv2.2.so","link_to":"libgssapiv2.2.0.18.so","parent":"/usr/lib/sasl2","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":21,"date":"May 4 2019"},{"filename":"libntlm.so","parent":"/usr/lib/sasl2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":87040,"date":"May 3 2019"},{"filename":"libplain.2.so","parent":"/usr/lib/sasl2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":61008,"date":"May 3 2019"},{"filename":"login.so","parent":"/usr/lib/sasl2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":61024,"date":"May 3 2019"},{"filename":"mschapv2.so","parent":"/usr/lib/sasl2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":74512,"date":"May 3 2019"},{"filename":"oauthbearer.so","parent":"/usr/lib/sasl2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":56464,"date":"May 3 2019"},{"filename":"openldap","parent":"/usr/lib/sasl2","flags":"drwxr-xr-x","links":5,"owner":"root","group":"wheel","size":160,"date":"May 4 2019"},{"filename":"plain-clienttoken.so","parent":"/usr/lib/sasl2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":52128,"date":"May 3 2019"},{"filename":"pwauxprop.so","parent":"/usr/lib/sasl2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":28336,"date":"May 3 2019"},{"filename":"shadow_auxprop.so","parent":"/usr/lib/sasl2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":66864,"date":"May 3 2019"},{"filename":"smb_ntlmv2.so","parent":"/usr/lib/sasl2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":65840,"date":"May 3 2019"},{"filename":"srp.so","parent":"/usr/lib/sasl2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":111024,"date":"May 3 2019"},{"filename":".","parent":"/usr/lib/sasl2/openldap","flags":"drwxr-xr-x","links":5,"owner":"root","group":"wheel","size":160,"date":"May 4 2019"},{"filename":"..","parent":"/usr/lib/sasl2/openldap","flags":"drwxr-xr-x","links":22,"owner":"root","group":"wheel","size":704,"date":"May 4 2019"},{"filename":"libcrammd5.2.so","link_to":"../libcrammd5.2.so","parent":"/usr/lib/sasl2/openldap","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18,"date":"May 4 2019"},{"filename":"libgssapiv2.2.so","link_to":"../libgssapiv2.2.so","parent":"/usr/lib/sasl2/openldap","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":19,"date":"May 4 2019"},{"filename":"srp.so","link_to":"../srp.so","parent":"/usr/lib/sasl2/openldap","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":9,"date":"May 4 2019"},{"filename":".","parent":"/usr/lib/swift","flags":"drwxr-xr-x","links":49,"owner":"root","group":"wheel","size":1568,"date":"Jul 23 2019"},{"filename":"..","parent":"/usr/lib/swift","flags":"drwxr-xr-x","links":306,"owner":"root","group":"wheel","size":9792,"date":"Feb 7 23:29"},{"filename":"libswiftAVFoundation.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":110320,"date":"Jul 16 2019"},{"filename":"libswiftAccelerate.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":53840,"date":"Jul 16 2019"},{"filename":"libswiftAppKit.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":211248,"date":"Jul 16 2019"},{"filename":"libswiftCloudKit.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":196096,"date":"Jul 16 2019"},{"filename":"libswiftContacts.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":56176,"date":"Jul 16 2019"},{"filename":"libswiftCore.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":6698944,"date":"Jul 16 2019"},{"filename":"libswiftCoreAudio.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":67392,"date":"Jul 16 2019"},{"filename":"libswiftCoreData.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":86064,"date":"Jul 16 2019"},{"filename":"libswiftCoreFoundation.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":28560,"date":"Jul 16 2019"},{"filename":"libswiftCoreGraphics.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":183024,"date":"Jul 16 2019"},{"filename":"libswiftCoreImage.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":32208,"date":"Jul 16 2019"},{"filename":"libswiftCoreLocation.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":41664,"date":"Jul 16 2019"},{"filename":"libswiftCoreMedia.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":62800,"date":"Jul 16 2019"},{"filename":"libswiftCreateML.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":2539376,"date":"Jul 16 2019"},{"filename":"libswiftCryptoTokenKit.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":45600,"date":"Jul 16 2019"},{"filename":"libswiftDarwin.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":87440,"date":"Jul 16 2019"},{"filename":"libswiftDemangle.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":257952,"date":"Jul 16 2019"},{"filename":"libswiftDispatch.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":320912,"date":"Jul 16 2019"},{"filename":"libswiftFoundation.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":3234912,"date":"Jul 16 2019"},{"filename":"libswiftGLKit.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":42720,"date":"Jul 16 2019"},{"filename":"libswiftGameplayKit.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":54608,"date":"Jul 16 2019"},{"filename":"libswiftIOKit.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":31984,"date":"Jul 16 2019"},{"filename":"libswiftIntents.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":44464,"date":"Jul 16 2019"},{"filename":"libswiftMapKit.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":49920,"date":"Jul 16 2019"},{"filename":"libswiftMetal.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":69856,"date":"Jul 16 2019"},{"filename":"libswiftMetalKit.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":47984,"date":"Jul 16 2019"},{"filename":"libswiftModelIO.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":71696,"date":"Jul 16 2019"},{"filename":"libswiftNaturalLanguage.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":83024,"date":"Jul 16 2019"},{"filename":"libswiftNetwork.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":436432,"date":"Jul 16 2019"},{"filename":"libswiftObjectiveC.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":49904,"date":"Jul 16 2019"},{"filename":"libswiftOpenCL.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":28880,"date":"Jul 16 2019"},{"filename":"libswiftPhotos.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":46928,"date":"Jul 16 2019"},{"filename":"libswiftQuartzCore.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":45024,"date":"Jul 16 2019"},{"filename":"libswiftRemoteMirror.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":481584,"date":"Jul 16 2019"},{"filename":"libswiftRemoteMirror42.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":447120,"date":"Jul 16 2019"},{"filename":"libswiftRemoteMirrorLegacy.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":401840,"date":"Jul 16 2019"},{"filename":"libswiftSIMDOperators.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":21952,"date":"Jul 16 2019"},{"filename":"libswiftSafariServices.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":37520,"date":"Jul 16 2019"},{"filename":"libswiftSceneKit.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":75904,"date":"Jul 16 2019"},{"filename":"libswiftSpriteKit.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":57344,"date":"Jul 16 2019"},{"filename":"libswiftSwiftOnoneSupport.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":382624,"date":"Jul 16 2019"},{"filename":"libswiftUIKit.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":153680,"date":"Jul 16 2019"},{"filename":"libswiftVision.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":42864,"date":"Jul 16 2019"},{"filename":"libswiftXCTest.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":123344,"date":"Jul 16 2019"},{"filename":"libswiftXPC.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":32160,"date":"Jul 16 2019"},{"filename":"libswiftos.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":59472,"date":"Jul 16 2019"},{"filename":"libswiftsimd.dylib","parent":"/usr/lib/swift","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":299584,"date":"Jul 16 2019"},{"filename":".","parent":"/usr/lib/system","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Feb 7 23:29"},{"filename":"..","parent":"/usr/lib/system","flags":"drwxr-xr-x","links":306,"owner":"root","group":"wheel","size":9792,"date":"Feb 7 23:29"},{"filename":"introspection","parent":"/usr/lib/system","flags":"drwxr-xr-x","links":4,"owner":"root","group":"wheel","size":128,"date":"Jul 23 2019"},{"filename":"libcache.dylib","parent":"/usr/lib/system","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":83936,"date":"May 3 2019"},{"filename":"libcommonCrypto.dylib","parent":"/usr/lib/system","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":193424,"date":"May 3 2019"},{"filename":"libcompiler_rt.dylib","parent":"/usr/lib/system","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":161280,"date":"May 3 2019"},{"filename":"libcopyfile.dylib","parent":"/usr/lib/system","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":136960,"date":"May 3 2019"},{"filename":"libcorecrypto.dylib","parent":"/usr/lib/system","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1185792,"date":"Jul 16 2019"},{"filename":"libcorecrypto_trace.dylib","parent":"/usr/lib/system","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1194640,"date":"Jul 16 2019"},{"filename":"libdispatch.dylib","parent":"/usr/lib/system","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":828656,"date":"Jul 16 2019"},{"filename":"libdyld.dylib","parent":"/usr/lib/system","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":605024,"date":"May 3 2019"},{"filename":"libkeymgr.dylib","parent":"/usr/lib/system","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":44512,"date":"May 3 2019"},{"filename":"libkxld.dylib","parent":"/usr/lib/system","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":148528,"date":"Jan 24 01:13"},{"filename":"liblaunch.dylib","parent":"/usr/lib/system","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":58704,"date":"Jan 24 01:14"},{"filename":"libmacho.dylib","parent":"/usr/lib/system","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":99264,"date":"Jul 16 2019"},{"filename":"libmathCommon.A.dylib","link_to":"../libSystem.dylib","parent":"/usr/lib/system","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18,"date":"May 4 2019"},{"filename":"libmathCommon.dylib","link_to":"../libSystem.dylib","parent":"/usr/lib/system","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18,"date":"May 4 2019"},{"filename":"libquarantine.dylib","parent":"/usr/lib/system","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":73520,"date":"Jan 24 01:13"},{"filename":"libremovefile.dylib","parent":"/usr/lib/system","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":57808,"date":"May 3 2019"},{"filename":"libsystem_asl.dylib","parent":"/usr/lib/system","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":297920,"date":"May 3 2019"},{"filename":"libsystem_blocks.dylib","parent":"/usr/lib/system","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":44176,"date":"May 3 2019"},{"filename":"libsystem_c.dylib","parent":"/usr/lib/system","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1437088,"date":"May 3 2019"},{"filename":"libsystem_configuration.dylib","parent":"/usr/lib/system","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":84336,"date":"Jul 16 2019"},{"filename":"libsystem_coreservices.dylib","parent":"/usr/lib/system","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":77168,"date":"May 3 2019"},{"filename":"libsystem_darwin.dylib","parent":"/usr/lib/system","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":136208,"date":"May 3 2019"},{"filename":"libsystem_dnssd.dylib","parent":"/usr/lib/system","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":102016,"date":"Jan 24 01:13"},{"filename":"libsystem_info.dylib","parent":"/usr/lib/system","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":804064,"date":"May 3 2019"},{"filename":"libsystem_kernel.dylib","parent":"/usr/lib/system","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":545504,"date":"Jan 24 01:13"},{"filename":"libsystem_m.dylib","parent":"/usr/lib/system","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":755200,"date":"May 3 2019"},{"filename":"libsystem_malloc.dylib","parent":"/usr/lib/system","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":408784,"date":"Jul 16 2019"},{"filename":"libsystem_networkextension.dylib","parent":"/usr/lib/system","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":182304,"date":"May 3 2019"},{"filename":"libsystem_notify.dylib","parent":"/usr/lib/system","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":110528,"date":"May 3 2019"},{"filename":"libsystem_platform.dylib","parent":"/usr/lib/system","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":141568,"date":"Jul 16 2019"},{"filename":"libsystem_pthread.dylib","parent":"/usr/lib/system","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":171856,"date":"May 3 2019"},{"filename":"libsystem_sandbox.dylib","parent":"/usr/lib/system","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":85104,"date":"Jul 16 2019"},{"filename":"libsystem_secinit.dylib","parent":"/usr/lib/system","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":67152,"date":"Jul 16 2019"},{"filename":"libsystem_symptoms.dylib","parent":"/usr/lib/system","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":117136,"date":"Jul 16 2019"},{"filename":"libsystem_trace.dylib","parent":"/usr/lib/system","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":295696,"date":"Jan 24 01:14"},{"filename":"libunc.dylib","parent":"/usr/lib/system","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":34080,"date":"May 3 2019"},{"filename":"libunwind.dylib","parent":"/usr/lib/system","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":112544,"date":"May 3 2019"},{"filename":"libxpc.dylib","parent":"/usr/lib/system","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":656224,"date":"Jan 24 01:13"},{"filename":"wordexp-helper","parent":"/usr/lib/system","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":42576,"date":"Jan 24 01:13"},{"filename":".","parent":"/usr/lib/system/introspection","flags":"drwxr-xr-x","links":4,"owner":"root","group":"wheel","size":128,"date":"Jul 23 2019"},{"filename":"..","parent":"/usr/lib/system/introspection","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Feb 7 23:29"},{"filename":"libdispatch.dylib","parent":"/usr/lib/system/introspection","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":960848,"date":"Jul 16 2019"},{"filename":"libsystem_pthread.dylib","parent":"/usr/lib/system/introspection","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":196528,"date":"May 3 2019"},{"filename":".","parent":"/usr/lib/xpc","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/lib/xpc","flags":"drwxr-xr-x","links":306,"owner":"root","group":"wheel","size":9792,"date":"Feb 7 23:29"},{"filename":"support.bundle","parent":"/usr/lib/xpc","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/lib/xpc/support.bundle","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/lib/xpc/support.bundle","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"Contents","parent":"/usr/lib/xpc/support.bundle","flags":"drwxr-xr-x","links":6,"owner":"root","group":"wheel","size":192,"date":"Feb 7 23:29"},{"filename":".","parent":"/usr/lib/xpc/support.bundle/Contents","flags":"drwxr-xr-x","links":6,"owner":"root","group":"wheel","size":192,"date":"Feb 7 23:29"},{"filename":"..","parent":"/usr/lib/xpc/support.bundle/Contents","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"Info.plist","parent":"/usr/lib/xpc/support.bundle/Contents","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":1352,"date":"Jan 9 01:35"},{"filename":"MacOS","parent":"/usr/lib/xpc/support.bundle/Contents","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Feb 7 23:29"},{"filename":"_CodeSignature","parent":"/usr/lib/xpc/support.bundle/Contents","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Feb 7 23:29"},{"filename":"version.plist","parent":"/usr/lib/xpc/support.bundle/Contents","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":510,"date":"Jan 9 01:35"},{"filename":".","parent":"/usr/lib/xpc/support.bundle/Contents/MacOS","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Feb 7 23:29"},{"filename":"..","parent":"/usr/lib/xpc/support.bundle/Contents/MacOS","flags":"drwxr-xr-x","links":6,"owner":"root","group":"wheel","size":192,"date":"Feb 7 23:29"},{"filename":"support","parent":"/usr/lib/xpc/support.bundle/Contents/MacOS","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":72960,"date":"Jan 24 01:19"},{"filename":".","parent":"/usr/lib/xpc/support.bundle/Contents/_CodeSignature","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Feb 7 23:29"},{"filename":"..","parent":"/usr/lib/xpc/support.bundle/Contents/_CodeSignature","flags":"drwxr-xr-x","links":6,"owner":"root","group":"wheel","size":192,"date":"Feb 7 23:29"},{"filename":"CodeResources","parent":"/usr/lib/xpc/support.bundle/Contents/_CodeSignature","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":2428,"date":"Jan 24 01:19"},{"filename":".","parent":"/usr/lib/zsh","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Feb 22 2019"},{"filename":"..","parent":"/usr/lib/zsh","flags":"drwxr-xr-x","links":306,"owner":"root","group":"wheel","size":9792,"date":"Feb 7 23:29"},{"filename":"5.3","parent":"/usr/lib/zsh","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Feb 22 2019"},{"filename":".","parent":"/usr/lib/zsh/5.3","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Feb 22 2019"},{"filename":"..","parent":"/usr/lib/zsh/5.3","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Feb 22 2019"},{"filename":"zsh","parent":"/usr/lib/zsh/5.3","flags":"drwxr-xr-x","links":35,"owner":"root","group":"wheel","size":1120,"date":"May 3 2019"},{"filename":".","parent":"/usr/lib/zsh/5.3/zsh","flags":"drwxr-xr-x","links":35,"owner":"root","group":"wheel","size":1120,"date":"May 3 2019"},{"filename":"..","parent":"/usr/lib/zsh/5.3/zsh","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Feb 22 2019"},{"filename":"attr.so","parent":"/usr/lib/zsh/5.3/zsh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18960,"date":"May 3 2019"},{"filename":"cap.so","parent":"/usr/lib/zsh/5.3/zsh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18208,"date":"May 3 2019"},{"filename":"clone.so","parent":"/usr/lib/zsh/5.3/zsh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":19248,"date":"May 3 2019"},{"filename":"compctl.so","parent":"/usr/lib/zsh/5.3/zsh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":66624,"date":"May 3 2019"},{"filename":"complete.so","parent":"/usr/lib/zsh/5.3/zsh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":129360,"date":"May 3 2019"},{"filename":"complist.so","parent":"/usr/lib/zsh/5.3/zsh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":63904,"date":"May 3 2019"},{"filename":"computil.so","parent":"/usr/lib/zsh/5.3/zsh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":65280,"date":"May 3 2019"},{"filename":"curses.so","parent":"/usr/lib/zsh/5.3/zsh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":36016,"date":"May 3 2019"},{"filename":"datetime.so","parent":"/usr/lib/zsh/5.3/zsh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":19968,"date":"May 3 2019"},{"filename":"deltochar.so","parent":"/usr/lib/zsh/5.3/zsh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18768,"date":"May 3 2019"},{"filename":"example.so","parent":"/usr/lib/zsh/5.3/zsh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":19200,"date":"May 3 2019"},{"filename":"files.so","parent":"/usr/lib/zsh/5.3/zsh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":29152,"date":"May 3 2019"},{"filename":"langinfo.so","parent":"/usr/lib/zsh/5.3/zsh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18480,"date":"May 3 2019"},{"filename":"mapfile.so","parent":"/usr/lib/zsh/5.3/zsh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":19392,"date":"May 3 2019"},{"filename":"mathfunc.so","parent":"/usr/lib/zsh/5.3/zsh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":24816,"date":"May 3 2019"},{"filename":"net","parent":"/usr/lib/zsh/5.3/zsh","flags":"drwxr-xr-x","links":4,"owner":"root","group":"wheel","size":128,"date":"May 3 2019"},{"filename":"newuser.so","parent":"/usr/lib/zsh/5.3/zsh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18480,"date":"May 3 2019"},{"filename":"param","parent":"/usr/lib/zsh/5.3/zsh","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"May 3 2019"},{"filename":"parameter.so","parent":"/usr/lib/zsh/5.3/zsh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":39408,"date":"May 3 2019"},{"filename":"regex.so","parent":"/usr/lib/zsh/5.3/zsh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":19216,"date":"May 3 2019"},{"filename":"rlimits.so","parent":"/usr/lib/zsh/5.3/zsh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23088,"date":"May 3 2019"},{"filename":"sched.so","parent":"/usr/lib/zsh/5.3/zsh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23712,"date":"May 3 2019"},{"filename":"stat.so","parent":"/usr/lib/zsh/5.3/zsh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23888,"date":"May 3 2019"},{"filename":"system.so","parent":"/usr/lib/zsh/5.3/zsh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":29152,"date":"May 3 2019"},{"filename":"termcap.so","parent":"/usr/lib/zsh/5.3/zsh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":19376,"date":"May 3 2019"},{"filename":"terminfo.so","parent":"/usr/lib/zsh/5.3/zsh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":19408,"date":"May 3 2019"},{"filename":"zftp.so","parent":"/usr/lib/zsh/5.3/zsh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":44912,"date":"May 3 2019"},{"filename":"zle.so","parent":"/usr/lib/zsh/5.3/zsh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":254432,"date":"May 3 2019"},{"filename":"zleparameter.so","parent":"/usr/lib/zsh/5.3/zsh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18880,"date":"May 3 2019"},{"filename":"zprof.so","parent":"/usr/lib/zsh/5.3/zsh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":22912,"date":"May 3 2019"},{"filename":"zpty.so","parent":"/usr/lib/zsh/5.3/zsh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":26240,"date":"May 3 2019"},{"filename":"zselect.so","parent":"/usr/lib/zsh/5.3/zsh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23552,"date":"May 3 2019"},{"filename":"zutil.so","parent":"/usr/lib/zsh/5.3/zsh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":38992,"date":"May 3 2019"},{"filename":".","parent":"/usr/lib/zsh/5.3/zsh/net","flags":"drwxr-xr-x","links":4,"owner":"root","group":"wheel","size":128,"date":"May 3 2019"},{"filename":"..","parent":"/usr/lib/zsh/5.3/zsh/net","flags":"drwxr-xr-x","links":35,"owner":"root","group":"wheel","size":1120,"date":"May 3 2019"},{"filename":"socket.so","parent":"/usr/lib/zsh/5.3/zsh/net","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":19296,"date":"May 3 2019"},{"filename":"tcp.so","parent":"/usr/lib/zsh/5.3/zsh/net","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":24448,"date":"May 3 2019"},{"filename":".","parent":"/usr/lib/zsh/5.3/zsh/param","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"May 3 2019"},{"filename":"..","parent":"/usr/lib/zsh/5.3/zsh/param","flags":"drwxr-xr-x","links":35,"owner":"root","group":"wheel","size":1120,"date":"May 3 2019"},{"filename":"private.so","parent":"/usr/lib/zsh/5.3/zsh/param","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":28224,"date":"May 3 2019"},{"filename":".","parent":"/usr/libexec","flags":"drwxr-xr-x","links":249,"owner":"root","group":"wheel","size":7968,"date":"Feb 7 23:29"},{"filename":"..","parent":"/usr/libexec","flags":"drwxr-xr-x@","links":9,"owner":"root","group":"wheel","size":288,"date":"May 3 2019"},{"filename":"AdvancedCommandsMigrator","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":24432,"date":"May 3 2019"},{"filename":"AirPlayXPCHelper","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":32288,"date":"Jan 24 01:14"},{"filename":"AppSandbox","parent":"/usr/libexec","flags":"drwxr-xr-x","links":5,"owner":"root","group":"wheel","size":160,"date":"Jul 23 2019"},{"filename":"AppleQEMUGuestAgent","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":78608,"date":"Jan 24 01:14"},{"filename":"ApplicationFirewall","parent":"/usr/libexec","flags":"drwxr-xr-x","links":7,"owner":"root","group":"wheel","size":224,"date":"Feb 7 23:29"},{"filename":"AssetCache","parent":"/usr/libexec","flags":"drwxr-xr-x","links":4,"owner":"root","group":"wheel","size":128,"date":"Jul 23 2019"},{"filename":"AssetCacheAgent","parent":"/usr/libexec","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Jul 23 2019"},{"filename":"CSCSupportd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":124176,"date":"Jul 16 2019"},{"filename":"DataDetectorsLocalSources","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":32576,"date":"Jul 16 2019"},{"filename":"DataDetectorsSourceAccess","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":25008,"date":"Jul 16 2019"},{"filename":"DeveloperTools","parent":"/usr/libexec","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Jul 23 2019"},{"filename":"FDERecoveryAgent","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":30576,"date":"Jul 16 2019"},{"filename":"FirmwareUpdateLauncher","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":50560,"date":"Jul 16 2019"},{"filename":"IOAccelMemoryInfoCollector","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":30176,"date":"Jan 24 01:14"},{"filename":"InternetSharing","parent":"/usr/libexec","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":184976,"date":"May 3 2019"},{"filename":"KeychainMigrator","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":50480,"date":"May 3 2019"},{"filename":"MiniTerm.app","parent":"/usr/libexec","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Feb 7 23:30"},{"filename":"NVMeAgent","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":30528,"date":"Jul 16 2019"},{"filename":"PerfPowerServices","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":21328,"date":"Jan 24 01:14"},{"filename":"PerfPowerServicesExtended","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":26832,"date":"Jan 24 01:14"},{"filename":"PlistBuddy","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":41152,"date":"May 3 2019"},{"filename":"ReportMemoryException","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":65184,"date":"Jul 16 2019"},{"filename":"SafariCloudHistoryPushAgent","link_to":"/System/Library/CoreServices/SafariSupport.bundle/Contents/MacOS/SafariCloudHistoryPushAgent","parent":"/usr/libexec","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":92,"date":"May 4 2019"},{"filename":"SafariHistoryServiceAgent","link_to":"/System/Library/CoreServices/SafariSupport.bundle/Contents/MacOS/SafariHistoryServiceAgent","parent":"/usr/libexec","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":90,"date":"May 4 2019"},{"filename":"SafariLaunchAgent","link_to":"/System/Library/CoreServices/SafariSupport.bundle/Contents/MacOS/SafariLaunchAgent","parent":"/usr/libexec","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":82,"date":"May 4 2019"},{"filename":"SafariNotificationAgent","link_to":"/System/Library/CoreServices/SafariSupport.bundle/Contents/MacOS/SafariNotificationAgent","parent":"/usr/libexec","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":88,"date":"May 4 2019"},{"filename":"SafariPlugInUpdateNotifier","link_to":"/System/Library/CoreServices/SafariSupport.bundle/Contents/MacOS/SafariPlugInUpdateNotifier","parent":"/usr/libexec","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":91,"date":"May 4 2019"},{"filename":"SidecarRelay","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":360768,"date":"Jul 16 2019"},{"filename":"SmartCardServices","parent":"/usr/libexec","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Feb 22 2019"},{"filename":"TouchBarServer","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":960416,"date":"Jul 16 2019"},{"filename":"USBAgent","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":35920,"date":"Jul 16 2019"},{"filename":"UserEventAgent","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":35184,"date":"Jan 24 01:14"},{"filename":"WiFiVelocityAgent","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":279104,"date":"Jan 24 01:14"},{"filename":"adprivacyd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":24992,"date":"Jul 16 2019"},{"filename":"adservicesd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":413408,"date":"Jan 24 01:14"},{"filename":"airportd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1485600,"date":"Jan 24 01:14"},{"filename":"amfid","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":51168,"date":"Jan 24 01:14"},{"filename":"amsdstat","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":35520,"date":"Jul 16 2019"},{"filename":"apache2","parent":"/usr/libexec","flags":"drwxr-xr-x","links":114,"owner":"root","group":"wheel","size":3648,"date":"Feb 7 23:29"},{"filename":"apfsd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":117968,"date":"Jan 24 01:14"},{"filename":"applessdstatistics","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":260544,"date":"Jul 16 2019"},{"filename":"assertiond","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":337744,"date":"Jul 16 2019"},{"filename":"atomicupdatetool","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":82208,"date":"Jan 24 01:14"},{"filename":"atrun","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":57536,"date":"Jan 24 01:14"},{"filename":"attach_automation_image","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":29136,"date":"Jul 16 2019"},{"filename":"authopen","parent":"/usr/libexec","flags":"-r-sr-xr-x","links":1,"owner":"root","group":"wheel","size":23472,"date":"Jan 24 01:14"},{"filename":"autofsd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":19872,"date":"Jan 24 01:14"},{"filename":"automation_trampoline","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":51856,"date":"Jul 16 2019"},{"filename":"automountd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":129632,"date":"Jan 24 01:14"},{"filename":"avconferenced","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":55136,"date":"Jan 24 01:14"},{"filename":"awacsd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":498560,"date":"May 3 2019"},{"filename":"biokitaggdd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":47312,"date":"May 3 2019"},{"filename":"biometrickitd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":676224,"date":"Jan 24 01:14"},{"filename":"bootinstalld","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":53744,"date":"Jul 16 2019"},{"filename":"bootpd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":182816,"date":"May 3 2019"},{"filename":"bspowerassertiontool","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":31584,"date":"Jan 24 01:14"},{"filename":"captiveagent","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":58544,"date":"Jul 16 2019"},{"filename":"cc_fips_test","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":19360,"date":"Jul 16 2019"},{"filename":"checkLocalKDC","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":2931,"date":"Feb 22 2019"},{"filename":"chkpasswd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":57344,"date":"Jan 24 01:14"},{"filename":"cloudconfigurationd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":771600,"date":"Jan 24 01:14"},{"filename":"colorsync.displayservices","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":111856,"date":"Jan 24 01:14"},{"filename":"colorsyncd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":74864,"date":"Jan 24 01:14"},{"filename":"comsat","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":24240,"date":"May 3 2019"},{"filename":"configd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":472512,"date":"Jan 24 01:14"},{"filename":"configureLocalKDC","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":3788,"date":"Feb 22 2019"},{"filename":"corebrightnessd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":27488,"date":"Jan 24 01:14"},{"filename":"corecaptured","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":19312,"date":"Jan 24 01:14"},{"filename":"coreduetd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":174432,"date":"Jul 16 2019"},{"filename":"corestoraged","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":67408,"date":"Jul 16 2019"},{"filename":"corestoragehelperd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":34736,"date":"May 3 2019"},{"filename":"create_automation_image_overlay","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":34000,"date":"Jul 16 2019"},{"filename":"cups","parent":"/usr/libexec","flags":"drwxr-xr-x","links":10,"owner":"root","group":"wheel","size":320,"date":"May 3 2019"},{"filename":"dasd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":25520,"date":"May 3 2019"},{"filename":"defragx","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":46688,"date":"May 3 2019"},{"filename":"diagnosticd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":60624,"date":"Jan 24 01:14"},{"filename":"dirhelper","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":39376,"date":"Jan 24 01:14"},{"filename":"diskarbitrationd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":303808,"date":"May 3 2019"},{"filename":"diskmanagementd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":2138528,"date":"Jan 24 01:14"},{"filename":"diskmanagementstartup","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":29088,"date":"Jan 24 01:14"},{"filename":"displaypolicyd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":288416,"date":"Jan 24 01:14"},{"filename":"dmd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":829168,"date":"May 3 2019"},{"filename":"dp2hdmiupdater","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":33552,"date":"Jan 24 01:14"},{"filename":"dpaudiothru","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":86016,"date":"May 3 2019"},{"filename":"dpd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":65664,"date":"May 3 2019"},{"filename":"dprivacyd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18656,"date":"Jul 16 2019"},{"filename":"dspluginhelperd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":449600,"date":"May 3 2019"},{"filename":"dtrace","parent":"/usr/libexec","flags":"drwxr-xr-x","links":8,"owner":"root","group":"wheel","size":256,"date":"May 3 2019"},{"filename":"dumpemacs","parent":"/usr/libexec","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":24272,"date":"May 3 2019"},{"filename":"efiupdater","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":35680,"date":"May 3 2019"},{"filename":"emacs","parent":"/usr/libexec","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Feb 22 2019"},{"filename":"emlog.pl","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":5802,"date":"Feb 22 2019"},{"filename":"eoshostd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":57216,"date":"Jan 24 01:14"},{"filename":"fax","parent":"/usr/libexec","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Feb 22 2019"},{"filename":"feedback","parent":"/usr/libexec","flags":"drwxr-xr-x","links":7,"owner":"root","group":"wheel","size":224,"date":"Feb 7 23:29"},{"filename":"femail","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":28912,"date":"May 3 2019"},{"filename":"findmydevice-user-agent","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":74144,"date":"Jan 24 01:14"},{"filename":"findmydeviced","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":783648,"date":"Jan 24 01:14"},{"filename":"firmwarecheckers","parent":"/usr/libexec","flags":"drwxr-xr-x","links":4,"owner":"root","group":"wheel","size":128,"date":"May 3 2019"},{"filename":"firmwaresyncd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":47440,"date":"Jan 24 01:14"},{"filename":"fmfd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":531296,"date":"May 3 2019"},{"filename":"ftp-proxy","parent":"/usr/libexec","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":45168,"date":"May 3 2019"},{"filename":"gamecontrollerd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":78576,"date":"May 3 2019"},{"filename":"getPPDVersion","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18816,"date":"May 3 2019"},{"filename":"getty","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":74496,"date":"Jan 24 01:14"},{"filename":"gkreport","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":356,"date":"Apr 14 2019"},{"filename":"hidd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":19744,"date":"Jan 24 01:14"},{"filename":"ifcstart","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18096,"date":"May 3 2019"},{"filename":"installer-core","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":32992,"date":"May 3 2019"},{"filename":"ioupsd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":32512,"date":"Jul 16 2019"},{"filename":"ippusbd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":62656,"date":"May 3 2019"},{"filename":"java_home","link_to":"/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/java_home","parent":"/usr/libexec","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":79,"date":"May 4 2019"},{"filename":"kcproxy","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":50816,"date":"Jan 24 01:14"},{"filename":"kdumpd","parent":"/usr/libexec","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":24752,"date":"Jan 24 01:14"},{"filename":"kextd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":447504,"date":"Jan 24 01:14"},{"filename":"keybagd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":221680,"date":"Jan 24 01:14"},{"filename":"keyboardservicesd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":21200,"date":"Jan 24 01:14"},{"filename":"knowledge-agent","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":61856,"date":"Jul 16 2019"},{"filename":"kuncd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":42160,"date":"May 3 2019"},{"filename":"languageassetd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":53824,"date":"May 3 2019"},{"filename":"locate.bigram","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":17952,"date":"May 3 2019"},{"filename":"locate.code","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18480,"date":"May 3 2019"},{"filename":"locate.concatdb","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":2350,"date":"Feb 22 2019"},{"filename":"locate.mklocatedb","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":3150,"date":"Feb 22 2019"},{"filename":"locate.updatedb","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":3495,"date":"Feb 22 2019"},{"filename":"locationd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":5342224,"date":"Jul 16 2019"},{"filename":"logd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":198080,"date":"Jan 24 01:14"},{"filename":"loginitemregisterd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":24864,"date":"Jan 24 01:14"},{"filename":"logkextloadsd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":67472,"date":"Jan 24 01:14"},{"filename":"lsd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":19296,"date":"Jul 16 2019"},{"filename":"makewhatis","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":28976,"date":"Jan 24 01:14"},{"filename":"makewhatis.local","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":2446,"date":"Feb 22 2019"},{"filename":"mcxalr","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":79856,"date":"Jan 24 01:14"},{"filename":"mdmclient","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":914480,"date":"Jan 24 01:14"},{"filename":"migrateLocalKDC","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1135,"date":"Feb 22 2019"},{"filename":"mobileactivationd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":274128,"date":"Jan 24 01:14"},{"filename":"mobileassetd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":487504,"date":"Jul 16 2019"},{"filename":"mount_url","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":19584,"date":"Jan 24 01:14"},{"filename":"msutil","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":34432,"date":"Jan 24 01:14"},{"filename":"multiversed","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":30128,"date":"Jan 24 01:14"},{"filename":"natpmpd","parent":"/usr/libexec","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":47712,"date":"May 3 2019"},{"filename":"neagent","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":185024,"date":"May 3 2019"},{"filename":"nehelper","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":266608,"date":"May 3 2019"},{"filename":"nesessionmanager","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":688640,"date":"May 3 2019"},{"filename":"netbootdisk","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":37232,"date":"May 3 2019"},{"filename":"networkserviceproxy","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":160064,"date":"Jul 16 2019"},{"filename":"nfcd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1378400,"date":"Jan 24 01:14"},{"filename":"nfrestore_service","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":30048,"date":"Jan 24 01:14"},{"filename":"nlcd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":65520,"date":"May 3 2019"},{"filename":"nsurlsessiond","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":831552,"date":"Jan 24 01:14"},{"filename":"nsurlstoraged","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":233264,"date":"Jan 24 01:14"},{"filename":"ntalkd","parent":"/usr/libexec","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":28752,"date":"May 3 2019"},{"filename":"od_user_homes","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":24656,"date":"Jan 24 01:14"},{"filename":"odproxyd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":44944,"date":"May 3 2019"},{"filename":"opendirectoryd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":725072,"date":"Jan 24 01:14"},{"filename":"osaapplet","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18320,"date":"May 3 2019"},{"filename":"otherbsd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":47584,"date":"Jan 24 01:14"},{"filename":"path_helper","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18992,"date":"May 3 2019"},{"filename":"pboard","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":43648,"date":"Jan 24 01:14"},{"filename":"pcsstatus","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":144192,"date":"Jan 24 01:14"},{"filename":"periodic-wrapper","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":19232,"date":"Jan 24 01:14"},{"filename":"pfd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":67264,"date":"May 3 2019"},{"filename":"pkd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":225696,"date":"Jan 24 01:14"},{"filename":"pkreporter","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":24416,"date":"Jan 24 01:14"},{"filename":"postfix","parent":"/usr/libexec","flags":"drwxr-xr-x","links":44,"owner":"root","group":"wheel","size":1408,"date":"Feb 7 23:29"},{"filename":"productutil","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":209152,"date":"Jan 24 01:14"},{"filename":"rapportd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":563568,"date":"Jul 16 2019"},{"filename":"remotectl","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":44960,"date":"Jan 24 01:14"},{"filename":"rootless-init","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":19120,"date":"Jul 16 2019"},{"filename":"routined","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":28000,"date":"May 3 2019"},{"filename":"rpc.rquotad","parent":"/usr/libexec","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":30240,"date":"May 3 2019"},{"filename":"rpcsvchost","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":93536,"date":"Jul 16 2019"},{"filename":"rtcreportingd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":252672,"date":"Jul 16 2019"},{"filename":"sandboxd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":240912,"date":"Jan 24 01:14"},{"filename":"scsid","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":20000,"date":"May 3 2019"},{"filename":"sdfwupdater","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":25536,"date":"May 3 2019"},{"filename":"secd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":2643408,"date":"Jan 24 01:14"},{"filename":"secinitd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":66304,"date":"Jul 16 2019"},{"filename":"security-checksystem","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1635,"date":"Apr 14 2019"},{"filename":"security-sysdiagnose","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":48448,"date":"Jan 24 01:14"},{"filename":"security_authtrampoline","parent":"/usr/libexec","flags":"-rws--x--x","links":1,"owner":"root","group":"wheel","size":19120,"date":"Jan 24 01:14"},{"filename":"securityd_service","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":90656,"date":"Jan 24 01:14"},{"filename":"securityuploadd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":104016,"date":"Jan 24 01:14"},{"filename":"seld","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":284160,"date":"Jan 24 01:14"},{"filename":"sftp-server","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":85392,"date":"May 3 2019"},{"filename":"sharingd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":3914160,"date":"Jan 24 01:14"},{"filename":"signpost_reporter","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":199552,"date":"Jul 16 2019"},{"filename":"silhouette","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":65904,"date":"May 3 2019"},{"filename":"siriknowledged","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":151824,"date":"May 3 2019"},{"filename":"slapconfig-keygen","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1839792,"date":"May 3 2019"},{"filename":"slapd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":3026336,"date":"Jan 24 01:14"},{"filename":"smb-migrate-preferences","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":55440,"date":"Jul 16 2019"},{"filename":"smb-sync-preferences","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":78288,"date":"Jul 16 2019"},{"filename":"smcDiagnose","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":45600,"date":"May 3 2019"},{"filename":"smcupdater","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":40736,"date":"May 3 2019"},{"filename":"smd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":54192,"date":"Jan 24 01:14"},{"filename":"snmpd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":37248,"date":"May 3 2019"},{"filename":"spindump_agent","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":44464,"date":"Jul 16 2019"},{"filename":"ssdupdater","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":25360,"date":"May 3 2019"},{"filename":"ssh-keysign","parent":"/usr/libexec","flags":"-rwx--x--x","links":1,"owner":"root","group":"wheel","size":1859600,"date":"May 3 2019"},{"filename":"ssh-pkcs11-helper","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1763024,"date":"May 3 2019"},{"filename":"sshd-keygen-wrapper","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18592,"date":"May 3 2019"},{"filename":"startupdiskhelper","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":39792,"date":"Jul 16 2019"},{"filename":"studentd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":943648,"date":"Jul 16 2019"},{"filename":"swcd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":116000,"date":"Jan 24 01:14"},{"filename":"symptomsd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":25840,"date":"Jul 16 2019"},{"filename":"sysdiagnose_helper","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":71696,"date":"Jan 24 01:14"},{"filename":"sysmond","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":58976,"date":"Jan 24 01:14"},{"filename":"syspolicyd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":335424,"date":"Jan 24 01:14"},{"filename":"systemstats_boot","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":17856,"date":"Jan 24 01:14"},{"filename":"tailspind","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":57376,"date":"Jul 16 2019"},{"filename":"taskgated","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":71696,"date":"Jan 24 01:14"},{"filename":"taskgated-helper","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":42688,"date":"Jan 24 01:14"},{"filename":"testmanagerd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":363312,"date":"May 3 2019"},{"filename":"tftpd","parent":"/usr/libexec","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":29808,"date":"May 3 2019"},{"filename":"thermald","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":75680,"date":"Jan 24 01:14"},{"filename":"timed","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":326960,"date":"May 3 2019"},{"filename":"trustd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":480064,"date":"Jan 24 01:14"},{"filename":"tzd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":172752,"date":"Jul 16 2019"},{"filename":"tzinit","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":101968,"date":"Jul 16 2019"},{"filename":"tzlinkd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":49024,"date":"May 3 2019"},{"filename":"ucupdate","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":27360,"date":"Jan 24 01:14"},{"filename":"unbound","parent":"/usr/libexec","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":565984,"date":"Jan 24 01:14"},{"filename":"undoServerAppDNSPrefs","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":20208,"date":"May 3 2019"},{"filename":"upsshutdown","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":465,"date":"Feb 25 2019"},{"filename":"usbcupdater","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":62752,"date":"May 3 2019"},{"filename":"usbd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":53440,"date":"Jul 16 2019"},{"filename":"vbiosupdater","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":33600,"date":"Jan 24 01:14"},{"filename":"videosubscriptionsd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":19440,"date":"Jul 16 2019"},{"filename":"vndevice","parent":"/usr/libexec","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":18192,"date":"May 3 2019"},{"filename":"warmd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":204960,"date":"May 3 2019"},{"filename":"warmd_agent","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":36592,"date":"May 3 2019"},{"filename":"watchdogd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":46384,"date":"Jan 24 01:14"},{"filename":"webinspectord","link_to":"/System/Library/CoreServices/SafariSupport.bundle/Contents/MacOS/webinspectord","parent":"/usr/libexec","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":78,"date":"May 4 2019"},{"filename":"wfs","parent":"/usr/libexec","flags":"drwxr-xr-x","links":5,"owner":"root","group":"wheel","size":160,"date":"May 3 2019"},{"filename":"wifiFirmwareLoader","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":54624,"date":"Jan 24 01:14"},{"filename":"wifid","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":398640,"date":"Jul 16 2019"},{"filename":"wifivelocityd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":953136,"date":"Jan 24 01:14"},{"filename":"wps","parent":"/usr/libexec","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":319184,"date":"Jan 24 01:14"},{"filename":"x11-select","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":47568,"date":"May 3 2019"},{"filename":"xartstorageremoted","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":40320,"date":"Jan 24 01:14"},{"filename":"xpchelper","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":42688,"date":"Jan 24 01:14"},{"filename":"xpcproxy","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":43968,"date":"Jan 24 01:14"},{"filename":"xpcroleaccountd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":36976,"date":"Jan 24 01:14"},{"filename":"xscertd","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":74624,"date":"May 3 2019"},{"filename":"xscertd-helper","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":104224,"date":"May 3 2019"},{"filename":"xssendevent","parent":"/usr/libexec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23536,"date":"May 3 2019"},{"filename":".","parent":"/usr/libexec/AppSandbox","flags":"drwxr-xr-x","links":5,"owner":"root","group":"wheel","size":160,"date":"Jul 23 2019"},{"filename":"..","parent":"/usr/libexec/AppSandbox","flags":"drwxr-xr-x","links":249,"owner":"root","group":"wheel","size":7968,"date":"Feb 7 23:29"},{"filename":"ContainerRepairAgent","parent":"/usr/libexec/AppSandbox","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":45520,"date":"Jul 16 2019"},{"filename":"app_sandbox_cache_builder","parent":"/usr/libexec/AppSandbox","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":46176,"date":"Jul 16 2019"},{"filename":"container_check.rb","parent":"/usr/libexec/AppSandbox","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":8799,"date":"Feb 22 2019"},{"filename":".","parent":"/usr/libexec/ApplicationFirewall","flags":"drwxr-xr-x","links":7,"owner":"root","group":"wheel","size":224,"date":"Feb 7 23:29"},{"filename":"..","parent":"/usr/libexec/ApplicationFirewall","flags":"drwxr-xr-x","links":249,"owner":"root","group":"wheel","size":7968,"date":"Feb 7 23:29"},{"filename":"Firewall","parent":"/usr/libexec/ApplicationFirewall","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":19328,"date":"Jan 24 01:13"},{"filename":"appfwloggerd","parent":"/usr/libexec/ApplicationFirewall","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18864,"date":"Jan 24 01:14"},{"filename":"com.apple.alf.plist","parent":"/usr/libexec/ApplicationFirewall","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":3951,"date":"Apr 25 2019"},{"filename":"socketfilterfw","parent":"/usr/libexec/ApplicationFirewall","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":104496,"date":"Jan 24 01:13"},{"filename":"socketfilterhelper","parent":"/usr/libexec/ApplicationFirewall","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":24816,"date":"Jan 24 01:13"},{"filename":".","parent":"/usr/libexec/AssetCache","flags":"drwxr-xr-x","links":4,"owner":"root","group":"wheel","size":128,"date":"Jul 23 2019"},{"filename":"..","parent":"/usr/libexec/AssetCache","flags":"drwxr-xr-x","links":249,"owner":"root","group":"wheel","size":7968,"date":"Feb 7 23:29"},{"filename":"AssetCache","parent":"/usr/libexec/AssetCache","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":1979824,"date":"Jul 16 2019"},{"filename":"AssetCache.momd","parent":"/usr/libexec/AssetCache","flags":"drwxr-xr-x","links":10,"owner":"root","group":"wheel","size":320,"date":"Mar 25 2019"},{"filename":".","parent":"/usr/libexec/AssetCache/AssetCache.momd","flags":"drwxr-xr-x","links":10,"owner":"root","group":"wheel","size":320,"date":"Mar 25 2019"},{"filename":"..","parent":"/usr/libexec/AssetCache/AssetCache.momd","flags":"drwxr-xr-x","links":4,"owner":"root","group":"wheel","size":128,"date":"Jul 23 2019"},{"filename":"AssetCache-v2.mom","parent":"/usr/libexec/AssetCache/AssetCache.momd","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":1854,"date":"Mar 25 2019"},{"filename":"AssetCache-v3.mom","parent":"/usr/libexec/AssetCache/AssetCache.momd","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":1937,"date":"Mar 25 2019"},{"filename":"AssetCache-v4.mom","parent":"/usr/libexec/AssetCache/AssetCache.momd","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":2093,"date":"Mar 25 2019"},{"filename":"AssetCache-v5.mom","parent":"/usr/libexec/AssetCache/AssetCache.momd","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":2876,"date":"Mar 25 2019"},{"filename":"AssetCache-v6.mom","parent":"/usr/libexec/AssetCache/AssetCache.momd","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":8060,"date":"Mar 25 2019"},{"filename":"AssetCache-v6.omo","parent":"/usr/libexec/AssetCache/AssetCache.momd","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":16024,"date":"Mar 25 2019"},{"filename":"AssetCache.mom","parent":"/usr/libexec/AssetCache/AssetCache.momd","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":1678,"date":"Mar 25 2019"},{"filename":"VersionInfo.plist","parent":"/usr/libexec/AssetCache/AssetCache.momd","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":651,"date":"Mar 25 2019"},{"filename":".","parent":"/usr/libexec/AssetCacheAgent","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Jul 23 2019"},{"filename":"..","parent":"/usr/libexec/AssetCacheAgent","flags":"drwxr-xr-x","links":249,"owner":"root","group":"wheel","size":7968,"date":"Feb 7 23:29"},{"filename":"AssetCacheAgent","parent":"/usr/libexec/AssetCacheAgent","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":43648,"date":"Jul 16 2019"},{"filename":"ar.lproj","parent":"/usr/libexec/AssetCacheAgent","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"ca.lproj","parent":"/usr/libexec/AssetCacheAgent","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"cs.lproj","parent":"/usr/libexec/AssetCacheAgent","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"da.lproj","parent":"/usr/libexec/AssetCacheAgent","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"de.lproj","parent":"/usr/libexec/AssetCacheAgent","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"el.lproj","parent":"/usr/libexec/AssetCacheAgent","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"en.lproj","parent":"/usr/libexec/AssetCacheAgent","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"en_AU.lproj","parent":"/usr/libexec/AssetCacheAgent","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"en_GB.lproj","parent":"/usr/libexec/AssetCacheAgent","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"es.lproj","parent":"/usr/libexec/AssetCacheAgent","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"es_419.lproj","parent":"/usr/libexec/AssetCacheAgent","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"fi.lproj","parent":"/usr/libexec/AssetCacheAgent","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"fr.lproj","parent":"/usr/libexec/AssetCacheAgent","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"fr_CA.lproj","parent":"/usr/libexec/AssetCacheAgent","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"he.lproj","parent":"/usr/libexec/AssetCacheAgent","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"hi.lproj","parent":"/usr/libexec/AssetCacheAgent","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"hr.lproj","parent":"/usr/libexec/AssetCacheAgent","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"hu.lproj","parent":"/usr/libexec/AssetCacheAgent","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"id.lproj","parent":"/usr/libexec/AssetCacheAgent","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"it.lproj","parent":"/usr/libexec/AssetCacheAgent","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"ja.lproj","parent":"/usr/libexec/AssetCacheAgent","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"ko.lproj","parent":"/usr/libexec/AssetCacheAgent","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"ms.lproj","parent":"/usr/libexec/AssetCacheAgent","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"nl.lproj","parent":"/usr/libexec/AssetCacheAgent","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"no.lproj","parent":"/usr/libexec/AssetCacheAgent","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"pl.lproj","parent":"/usr/libexec/AssetCacheAgent","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"pt.lproj","parent":"/usr/libexec/AssetCacheAgent","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"pt_PT.lproj","parent":"/usr/libexec/AssetCacheAgent","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"ro.lproj","parent":"/usr/libexec/AssetCacheAgent","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"ru.lproj","parent":"/usr/libexec/AssetCacheAgent","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"sk.lproj","parent":"/usr/libexec/AssetCacheAgent","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"sv.lproj","parent":"/usr/libexec/AssetCacheAgent","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"th.lproj","parent":"/usr/libexec/AssetCacheAgent","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"tr.lproj","parent":"/usr/libexec/AssetCacheAgent","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"uk.lproj","parent":"/usr/libexec/AssetCacheAgent","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"vi.lproj","parent":"/usr/libexec/AssetCacheAgent","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"zh_CN.lproj","parent":"/usr/libexec/AssetCacheAgent","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"zh_HK.lproj","parent":"/usr/libexec/AssetCacheAgent","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"zh_TW.lproj","parent":"/usr/libexec/AssetCacheAgent","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":".","parent":"/usr/libexec/AssetCacheAgent/ar.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"..","parent":"/usr/libexec/AssetCacheAgent/ar.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Jul 23 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/AssetCacheAgent/ar.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":117,"date":"Mar 25 2019"},{"filename":".","parent":"/usr/libexec/AssetCacheAgent/ca.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"..","parent":"/usr/libexec/AssetCacheAgent/ca.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Jul 23 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/AssetCacheAgent/ca.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":112,"date":"Mar 25 2019"},{"filename":".","parent":"/usr/libexec/AssetCacheAgent/cs.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"..","parent":"/usr/libexec/AssetCacheAgent/cs.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Jul 23 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/AssetCacheAgent/cs.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":121,"date":"Mar 25 2019"},{"filename":".","parent":"/usr/libexec/AssetCacheAgent/da.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"..","parent":"/usr/libexec/AssetCacheAgent/da.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Jul 23 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/AssetCacheAgent/da.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":111,"date":"Mar 25 2019"},{"filename":".","parent":"/usr/libexec/AssetCacheAgent/de.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"..","parent":"/usr/libexec/AssetCacheAgent/de.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Jul 23 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/AssetCacheAgent/de.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":124,"date":"Mar 25 2019"},{"filename":".","parent":"/usr/libexec/AssetCacheAgent/el.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"..","parent":"/usr/libexec/AssetCacheAgent/el.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Jul 23 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/AssetCacheAgent/el.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":133,"date":"Mar 25 2019"},{"filename":".","parent":"/usr/libexec/AssetCacheAgent/en.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"..","parent":"/usr/libexec/AssetCacheAgent/en.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Jul 23 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/AssetCacheAgent/en.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":108,"date":"Mar 25 2019"},{"filename":".","parent":"/usr/libexec/AssetCacheAgent/en_AU.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"..","parent":"/usr/libexec/AssetCacheAgent/en_AU.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Jul 23 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/AssetCacheAgent/en_AU.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":108,"date":"Mar 25 2019"},{"filename":".","parent":"/usr/libexec/AssetCacheAgent/en_GB.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"..","parent":"/usr/libexec/AssetCacheAgent/en_GB.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Jul 23 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/AssetCacheAgent/en_GB.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":108,"date":"Mar 25 2019"},{"filename":".","parent":"/usr/libexec/AssetCacheAgent/es.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"..","parent":"/usr/libexec/AssetCacheAgent/es.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Jul 23 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/AssetCacheAgent/es.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":112,"date":"Mar 25 2019"},{"filename":".","parent":"/usr/libexec/AssetCacheAgent/es_419.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"..","parent":"/usr/libexec/AssetCacheAgent/es_419.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Jul 23 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/AssetCacheAgent/es_419.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":114,"date":"Mar 25 2019"},{"filename":".","parent":"/usr/libexec/AssetCacheAgent/fi.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"..","parent":"/usr/libexec/AssetCacheAgent/fi.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Jul 23 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/AssetCacheAgent/fi.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":110,"date":"Mar 25 2019"},{"filename":".","parent":"/usr/libexec/AssetCacheAgent/fr.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"..","parent":"/usr/libexec/AssetCacheAgent/fr.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Jul 23 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/AssetCacheAgent/fr.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":113,"date":"Mar 25 2019"},{"filename":".","parent":"/usr/libexec/AssetCacheAgent/fr_CA.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"..","parent":"/usr/libexec/AssetCacheAgent/fr_CA.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Jul 23 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/AssetCacheAgent/fr_CA.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":113,"date":"Mar 25 2019"},{"filename":".","parent":"/usr/libexec/AssetCacheAgent/he.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"..","parent":"/usr/libexec/AssetCacheAgent/he.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Jul 23 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/AssetCacheAgent/he.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":111,"date":"Mar 25 2019"},{"filename":".","parent":"/usr/libexec/AssetCacheAgent/hi.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"..","parent":"/usr/libexec/AssetCacheAgent/hi.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Jul 23 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/AssetCacheAgent/hi.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":139,"date":"Mar 25 2019"},{"filename":".","parent":"/usr/libexec/AssetCacheAgent/hr.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"..","parent":"/usr/libexec/AssetCacheAgent/hr.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Jul 23 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/AssetCacheAgent/hr.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":115,"date":"Mar 25 2019"},{"filename":".","parent":"/usr/libexec/AssetCacheAgent/hu.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"..","parent":"/usr/libexec/AssetCacheAgent/hu.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Jul 23 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/AssetCacheAgent/hu.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":125,"date":"Mar 25 2019"},{"filename":".","parent":"/usr/libexec/AssetCacheAgent/id.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"..","parent":"/usr/libexec/AssetCacheAgent/id.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Jul 23 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/AssetCacheAgent/id.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":108,"date":"Mar 25 2019"},{"filename":".","parent":"/usr/libexec/AssetCacheAgent/it.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"..","parent":"/usr/libexec/AssetCacheAgent/it.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Jul 23 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/AssetCacheAgent/it.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":111,"date":"Mar 25 2019"},{"filename":".","parent":"/usr/libexec/AssetCacheAgent/ja.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"..","parent":"/usr/libexec/AssetCacheAgent/ja.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Jul 23 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/AssetCacheAgent/ja.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":107,"date":"Mar 25 2019"},{"filename":".","parent":"/usr/libexec/AssetCacheAgent/ko.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"..","parent":"/usr/libexec/AssetCacheAgent/ko.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Jul 23 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/AssetCacheAgent/ko.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":105,"date":"Mar 25 2019"},{"filename":".","parent":"/usr/libexec/AssetCacheAgent/ms.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"..","parent":"/usr/libexec/AssetCacheAgent/ms.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Jul 23 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/AssetCacheAgent/ms.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":109,"date":"Mar 25 2019"},{"filename":".","parent":"/usr/libexec/AssetCacheAgent/nl.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"..","parent":"/usr/libexec/AssetCacheAgent/nl.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Jul 23 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/AssetCacheAgent/nl.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":108,"date":"Mar 25 2019"},{"filename":".","parent":"/usr/libexec/AssetCacheAgent/no.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"..","parent":"/usr/libexec/AssetCacheAgent/no.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Jul 23 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/AssetCacheAgent/no.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":112,"date":"Mar 25 2019"},{"filename":".","parent":"/usr/libexec/AssetCacheAgent/pl.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"..","parent":"/usr/libexec/AssetCacheAgent/pl.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Jul 23 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/AssetCacheAgent/pl.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":122,"date":"Mar 25 2019"},{"filename":".","parent":"/usr/libexec/AssetCacheAgent/pt.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"..","parent":"/usr/libexec/AssetCacheAgent/pt.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Jul 23 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/AssetCacheAgent/pt.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":112,"date":"Mar 25 2019"},{"filename":".","parent":"/usr/libexec/AssetCacheAgent/pt_PT.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"..","parent":"/usr/libexec/AssetCacheAgent/pt_PT.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Jul 23 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/AssetCacheAgent/pt_PT.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":108,"date":"Mar 25 2019"},{"filename":".","parent":"/usr/libexec/AssetCacheAgent/ro.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"..","parent":"/usr/libexec/AssetCacheAgent/ro.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Jul 23 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/AssetCacheAgent/ro.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":133,"date":"Mar 25 2019"},{"filename":".","parent":"/usr/libexec/AssetCacheAgent/ru.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"..","parent":"/usr/libexec/AssetCacheAgent/ru.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Jul 23 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/AssetCacheAgent/ru.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":131,"date":"Mar 25 2019"},{"filename":".","parent":"/usr/libexec/AssetCacheAgent/sk.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"..","parent":"/usr/libexec/AssetCacheAgent/sk.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Jul 23 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/AssetCacheAgent/sk.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":131,"date":"Mar 25 2019"},{"filename":".","parent":"/usr/libexec/AssetCacheAgent/sv.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"..","parent":"/usr/libexec/AssetCacheAgent/sv.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Jul 23 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/AssetCacheAgent/sv.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":114,"date":"Mar 25 2019"},{"filename":".","parent":"/usr/libexec/AssetCacheAgent/th.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"..","parent":"/usr/libexec/AssetCacheAgent/th.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Jul 23 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/AssetCacheAgent/th.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":115,"date":"Mar 25 2019"},{"filename":".","parent":"/usr/libexec/AssetCacheAgent/tr.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"..","parent":"/usr/libexec/AssetCacheAgent/tr.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Jul 23 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/AssetCacheAgent/tr.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":112,"date":"Mar 25 2019"},{"filename":".","parent":"/usr/libexec/AssetCacheAgent/uk.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"..","parent":"/usr/libexec/AssetCacheAgent/uk.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Jul 23 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/AssetCacheAgent/uk.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":127,"date":"Mar 25 2019"},{"filename":".","parent":"/usr/libexec/AssetCacheAgent/vi.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"..","parent":"/usr/libexec/AssetCacheAgent/vi.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Jul 23 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/AssetCacheAgent/vi.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":119,"date":"Mar 25 2019"},{"filename":".","parent":"/usr/libexec/AssetCacheAgent/zh_CN.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"..","parent":"/usr/libexec/AssetCacheAgent/zh_CN.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Jul 23 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/AssetCacheAgent/zh_CN.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":105,"date":"Mar 25 2019"},{"filename":".","parent":"/usr/libexec/AssetCacheAgent/zh_HK.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"..","parent":"/usr/libexec/AssetCacheAgent/zh_HK.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Jul 23 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/AssetCacheAgent/zh_HK.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":105,"date":"Mar 25 2019"},{"filename":".","parent":"/usr/libexec/AssetCacheAgent/zh_TW.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Mar 25 2019"},{"filename":"..","parent":"/usr/libexec/AssetCacheAgent/zh_TW.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"Jul 23 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/AssetCacheAgent/zh_TW.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":105,"date":"Mar 25 2019"},{"filename":".","parent":"/usr/libexec/DeveloperTools","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Jul 23 2019"},{"filename":"..","parent":"/usr/libexec/DeveloperTools","flags":"drwxr-xr-x","links":249,"owner":"root","group":"wheel","size":7968,"date":"Feb 7 23:29"},{"filename":"codesign_allocate","parent":"/usr/libexec/DeveloperTools","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":149200,"date":"Jul 16 2019"},{"filename":".","parent":"/usr/libexec/MiniTerm.app","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Feb 7 23:30"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app","flags":"drwxr-xr-x","links":249,"owner":"root","group":"wheel","size":7968,"date":"Feb 7 23:29"},{"filename":"Contents","parent":"/usr/libexec/MiniTerm.app","flags":"drwxr-xr-x","links":8,"owner":"root","group":"wheel","size":256,"date":"Feb 7 23:29"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents","flags":"drwxr-xr-x","links":8,"owner":"root","group":"wheel","size":256,"date":"Feb 7 23:29"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Feb 7 23:30"},{"filename":"Info.plist","parent":"/usr/libexec/MiniTerm.app/Contents","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":1552,"date":"Jan 23 07:04"},{"filename":"MacOS","parent":"/usr/libexec/MiniTerm.app/Contents","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Feb 7 23:29"},{"filename":"PkgInfo","parent":"/usr/libexec/MiniTerm.app/Contents","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":8,"date":"Apr 25 2019"},{"filename":"Resources","parent":"/usr/libexec/MiniTerm.app/Contents","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"May 3 2019"},{"filename":"_CodeSignature","parent":"/usr/libexec/MiniTerm.app/Contents","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Feb 7 23:29"},{"filename":"version.plist","parent":"/usr/libexec/MiniTerm.app/Contents","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":498,"date":"Jan 23 07:05"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents/MacOS","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Feb 7 23:29"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents/MacOS","flags":"drwxr-xr-x","links":8,"owner":"root","group":"wheel","size":256,"date":"Feb 7 23:29"},{"filename":"MiniTerm","parent":"/usr/libexec/MiniTerm.app/Contents/MacOS","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":28048,"date":"Jan 24 01:20"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents/Resources","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"May 3 2019"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents/Resources","flags":"drwxr-xr-x","links":8,"owner":"root","group":"wheel","size":256,"date":"Feb 7 23:29"},{"filename":"Base.lproj","parent":"/usr/libexec/MiniTerm.app/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"MiniTerm.iconheader","parent":"/usr/libexec/MiniTerm.app/Contents/Resources","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":52,"date":"Apr 25 2019"},{"filename":"ar.lproj","parent":"/usr/libexec/MiniTerm.app/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"ca.lproj","parent":"/usr/libexec/MiniTerm.app/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"cs.lproj","parent":"/usr/libexec/MiniTerm.app/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"da.lproj","parent":"/usr/libexec/MiniTerm.app/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"de.lproj","parent":"/usr/libexec/MiniTerm.app/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"el.lproj","parent":"/usr/libexec/MiniTerm.app/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"en_AU.lproj","parent":"/usr/libexec/MiniTerm.app/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"en_GB.lproj","parent":"/usr/libexec/MiniTerm.app/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"es.lproj","parent":"/usr/libexec/MiniTerm.app/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"es_419.lproj","parent":"/usr/libexec/MiniTerm.app/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"fi.lproj","parent":"/usr/libexec/MiniTerm.app/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"fr.lproj","parent":"/usr/libexec/MiniTerm.app/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"fr_CA.lproj","parent":"/usr/libexec/MiniTerm.app/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"he.lproj","parent":"/usr/libexec/MiniTerm.app/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"hi.lproj","parent":"/usr/libexec/MiniTerm.app/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"hr.lproj","parent":"/usr/libexec/MiniTerm.app/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"hu.lproj","parent":"/usr/libexec/MiniTerm.app/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"id.lproj","parent":"/usr/libexec/MiniTerm.app/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"it.lproj","parent":"/usr/libexec/MiniTerm.app/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"ja.lproj","parent":"/usr/libexec/MiniTerm.app/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"ko.lproj","parent":"/usr/libexec/MiniTerm.app/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"ms.lproj","parent":"/usr/libexec/MiniTerm.app/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"nl.lproj","parent":"/usr/libexec/MiniTerm.app/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"no.lproj","parent":"/usr/libexec/MiniTerm.app/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"pl.lproj","parent":"/usr/libexec/MiniTerm.app/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"pt.lproj","parent":"/usr/libexec/MiniTerm.app/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"pt_PT.lproj","parent":"/usr/libexec/MiniTerm.app/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"ro.lproj","parent":"/usr/libexec/MiniTerm.app/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"ru.lproj","parent":"/usr/libexec/MiniTerm.app/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"sk.lproj","parent":"/usr/libexec/MiniTerm.app/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"sv.lproj","parent":"/usr/libexec/MiniTerm.app/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"th.lproj","parent":"/usr/libexec/MiniTerm.app/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"tr.lproj","parent":"/usr/libexec/MiniTerm.app/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"uk.lproj","parent":"/usr/libexec/MiniTerm.app/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"vi.lproj","parent":"/usr/libexec/MiniTerm.app/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"zh_CN.lproj","parent":"/usr/libexec/MiniTerm.app/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"zh_HK.lproj","parent":"/usr/libexec/MiniTerm.app/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"zh_TW.lproj","parent":"/usr/libexec/MiniTerm.app/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/Base.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/Base.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"May 3 2019"},{"filename":"MiniTerm.nib","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/Base.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":21769,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/ar.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/ar.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"May 3 2019"},{"filename":"MiniTerm.strings","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/ar.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":680,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/ca.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/ca.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"May 3 2019"},{"filename":"MiniTerm.strings","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/ca.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":640,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/cs.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/cs.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"May 3 2019"},{"filename":"MiniTerm.strings","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/cs.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":691,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/da.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/da.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"May 3 2019"},{"filename":"MiniTerm.strings","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/da.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":618,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/de.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/de.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"May 3 2019"},{"filename":"MiniTerm.strings","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/de.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":658,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/el.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/el.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"May 3 2019"},{"filename":"MiniTerm.strings","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/el.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":848,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/en_AU.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/en_AU.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"May 3 2019"},{"filename":"MiniTerm.strings","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/en_AU.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":562,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/en_GB.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/en_GB.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"May 3 2019"},{"filename":"MiniTerm.strings","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/en_GB.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":562,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/es.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/es.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"May 3 2019"},{"filename":"MiniTerm.strings","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/es.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":648,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/es_419.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/es_419.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"May 3 2019"},{"filename":"MiniTerm.strings","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/es_419.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":639,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/fi.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/fi.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"May 3 2019"},{"filename":"MiniTerm.strings","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/fi.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":603,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/fr.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/fr.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"May 3 2019"},{"filename":"MiniTerm.strings","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/fr.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":720,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/fr_CA.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/fr_CA.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"May 3 2019"},{"filename":"MiniTerm.strings","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/fr_CA.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":707,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/he.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/he.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"May 3 2019"},{"filename":"MiniTerm.strings","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/he.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":638,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/hi.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/hi.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"May 3 2019"},{"filename":"MiniTerm.strings","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/hi.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":726,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/hr.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/hr.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"May 3 2019"},{"filename":"MiniTerm.strings","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/hr.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":634,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/hu.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/hu.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"May 3 2019"},{"filename":"MiniTerm.strings","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/hu.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":794,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/id.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/id.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"May 3 2019"},{"filename":"MiniTerm.strings","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/id.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":579,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/it.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/it.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"May 3 2019"},{"filename":"MiniTerm.strings","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/it.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":591,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/ja.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/ja.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"May 3 2019"},{"filename":"MiniTerm.strings","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/ja.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":602,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/ko.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/ko.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"May 3 2019"},{"filename":"MiniTerm.strings","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/ko.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":572,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/ms.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/ms.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"May 3 2019"},{"filename":"MiniTerm.strings","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/ms.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":592,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/nl.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/nl.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"May 3 2019"},{"filename":"MiniTerm.strings","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/nl.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":598,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/no.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/no.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"May 3 2019"},{"filename":"MiniTerm.strings","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/no.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":570,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/pl.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/pl.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"May 3 2019"},{"filename":"MiniTerm.strings","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/pl.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":600,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/pt.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/pt.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"May 3 2019"},{"filename":"MiniTerm.strings","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/pt.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":642,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/pt_PT.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/pt_PT.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"May 3 2019"},{"filename":"MiniTerm.strings","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/pt_PT.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":660,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/ro.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/ro.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"May 3 2019"},{"filename":"MiniTerm.strings","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/ro.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":722,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/ru.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/ru.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"May 3 2019"},{"filename":"MiniTerm.strings","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/ru.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":758,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/sk.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/sk.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"May 3 2019"},{"filename":"MiniTerm.strings","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/sk.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":774,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/sv.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/sv.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"May 3 2019"},{"filename":"MiniTerm.strings","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/sv.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":673,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/th.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/th.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"May 3 2019"},{"filename":"MiniTerm.strings","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/th.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":732,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/tr.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/tr.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"May 3 2019"},{"filename":"MiniTerm.strings","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/tr.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":693,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/uk.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/uk.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"May 3 2019"},{"filename":"MiniTerm.strings","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/uk.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":756,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/vi.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/vi.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"May 3 2019"},{"filename":"MiniTerm.strings","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/vi.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":716,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/zh_CN.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/zh_CN.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"May 3 2019"},{"filename":"MiniTerm.strings","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/zh_CN.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":532,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/zh_HK.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/zh_HK.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"May 3 2019"},{"filename":"MiniTerm.strings","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/zh_HK.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":542,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/zh_TW.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/zh_TW.lproj","flags":"drwxr-xr-x","links":42,"owner":"root","group":"wheel","size":1344,"date":"May 3 2019"},{"filename":"MiniTerm.strings","parent":"/usr/libexec/MiniTerm.app/Contents/Resources/zh_TW.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":542,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/MiniTerm.app/Contents/_CodeSignature","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Feb 7 23:29"},{"filename":"..","parent":"/usr/libexec/MiniTerm.app/Contents/_CodeSignature","flags":"drwxr-xr-x","links":8,"owner":"root","group":"wheel","size":256,"date":"Feb 7 23:29"},{"filename":"CodeResources","parent":"/usr/libexec/MiniTerm.app/Contents/_CodeSignature","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":16844,"date":"Jan 24 01:20"},{"filename":".","parent":"/usr/libexec/SmartCardServices","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Feb 22 2019"},{"filename":"..","parent":"/usr/libexec/SmartCardServices","flags":"drwxr-xr-x","links":249,"owner":"root","group":"wheel","size":7968,"date":"Feb 7 23:29"},{"filename":"drivers","parent":"/usr/libexec/SmartCardServices","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Feb 22 2019"},{"filename":".","parent":"/usr/libexec/SmartCardServices/drivers","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Feb 22 2019"},{"filename":"..","parent":"/usr/libexec/SmartCardServices/drivers","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Feb 22 2019"},{"filename":"ifd-ccid.bundle","parent":"/usr/libexec/SmartCardServices/drivers","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Feb 22 2019"},{"filename":".","parent":"/usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Feb 22 2019"},{"filename":"..","parent":"/usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Feb 22 2019"},{"filename":"Contents","parent":"/usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle","flags":"drwxr-xr-x","links":5,"owner":"root","group":"wheel","size":160,"date":"Feb 22 2019"},{"filename":".","parent":"/usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle/Contents","flags":"drwxr-xr-x","links":5,"owner":"root","group":"wheel","size":160,"date":"Feb 22 2019"},{"filename":"..","parent":"/usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle/Contents","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Feb 22 2019"},{"filename":"Info.plist","parent":"/usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle/Contents","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":41962,"date":"Feb 22 2019"},{"filename":"MacOS","parent":"/usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle/Contents","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Feb 22 2019"},{"filename":"version.plist","parent":"/usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle/Contents","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":529,"date":"Feb 22 2019"},{"filename":".","parent":"/usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle/Contents/MacOS","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Feb 22 2019"},{"filename":"..","parent":"/usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle/Contents/MacOS","flags":"drwxr-xr-x","links":5,"owner":"root","group":"wheel","size":160,"date":"Feb 22 2019"},{"filename":"libccid.dylib","parent":"/usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle/Contents/MacOS","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":142416,"date":"Feb 22 2019"},{"filename":".","parent":"/usr/libexec/apache2","flags":"drwxr-xr-x","links":114,"owner":"root","group":"wheel","size":3648,"date":"Feb 7 23:29"},{"filename":"..","parent":"/usr/libexec/apache2","flags":"drwxr-xr-x","links":249,"owner":"root","group":"wheel","size":7968,"date":"Feb 7 23:29"},{"filename":"httpd.exp","parent":"/usr/libexec/apache2","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":15703,"date":"Feb 22 2019"},{"filename":"libphp7.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":13507664,"date":"Jan 24 01:13"},{"filename":"mod_access_compat.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23312,"date":"May 3 2019"},{"filename":"mod_actions.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23072,"date":"May 3 2019"},{"filename":"mod_alias.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":32768,"date":"May 3 2019"},{"filename":"mod_allowmethods.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18384,"date":"May 3 2019"},{"filename":"mod_asis.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":22784,"date":"May 3 2019"},{"filename":"mod_auth_basic.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":28000,"date":"May 3 2019"},{"filename":"mod_auth_digest.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":57712,"date":"May 3 2019"},{"filename":"mod_auth_form.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":46832,"date":"May 3 2019"},{"filename":"mod_authn_anon.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18464,"date":"May 3 2019"},{"filename":"mod_authn_core.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":24064,"date":"May 3 2019"},{"filename":"mod_authn_dbd.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23728,"date":"May 3 2019"},{"filename":"mod_authn_dbm.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":19040,"date":"May 3 2019"},{"filename":"mod_authn_file.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23088,"date":"May 3 2019"},{"filename":"mod_authn_socache.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":33632,"date":"May 3 2019"},{"filename":"mod_authnz_ldap.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":106224,"date":"May 3 2019"},{"filename":"mod_authnz_od_apple.so","parent":"/usr/libexec/apache2","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":25120,"date":"May 3 2019"},{"filename":"mod_authz_core.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":38432,"date":"May 3 2019"},{"filename":"mod_authz_dbd.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":28480,"date":"May 3 2019"},{"filename":"mod_authz_dbm.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23632,"date":"May 3 2019"},{"filename":"mod_authz_groupfile.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":24112,"date":"May 3 2019"},{"filename":"mod_authz_host.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":24064,"date":"May 3 2019"},{"filename":"mod_authz_owner.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":22656,"date":"May 3 2019"},{"filename":"mod_authz_user.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":22704,"date":"May 3 2019"},{"filename":"mod_autoindex.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":56960,"date":"May 3 2019"},{"filename":"mod_buffer.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23312,"date":"May 3 2019"},{"filename":"mod_cache.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":128592,"date":"May 3 2019"},{"filename":"mod_cache_disk.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":64032,"date":"May 3 2019"},{"filename":"mod_cache_socache.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":63984,"date":"May 3 2019"},{"filename":"mod_cgi.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":45568,"date":"May 3 2019"},{"filename":"mod_charset_lite.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":45488,"date":"May 3 2019"},{"filename":"mod_data.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23616,"date":"May 3 2019"},{"filename":"mod_dav.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":130256,"date":"May 3 2019"},{"filename":"mod_dav_fs.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":70352,"date":"May 3 2019"},{"filename":"mod_dav_lock.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":33424,"date":"May 3 2019"},{"filename":"mod_dbd.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":34304,"date":"May 3 2019"},{"filename":"mod_deflate.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":63632,"date":"May 3 2019"},{"filename":"mod_dialup.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":24032,"date":"May 3 2019"},{"filename":"mod_dir.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23760,"date":"May 3 2019"},{"filename":"mod_dumpio.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":27152,"date":"May 3 2019"},{"filename":"mod_echo.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23456,"date":"May 3 2019"},{"filename":"mod_env.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18928,"date":"May 3 2019"},{"filename":"mod_expires.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23968,"date":"May 3 2019"},{"filename":"mod_ext_filter.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":43840,"date":"May 3 2019"},{"filename":"mod_file_cache.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":24624,"date":"May 3 2019"},{"filename":"mod_filter.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":36688,"date":"May 3 2019"},{"filename":"mod_headers.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":35152,"date":"May 3 2019"},{"filename":"mod_heartbeat.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23632,"date":"May 3 2019"},{"filename":"mod_heartmonitor.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":39584,"date":"May 3 2019"},{"filename":"mod_hfs_apple.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":52272,"date":"May 3 2019"},{"filename":"mod_http2.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":461600,"date":"May 3 2019"},{"filename":"mod_imagemap.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":32640,"date":"May 3 2019"},{"filename":"mod_include.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":91120,"date":"May 3 2019"},{"filename":"mod_info.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":36992,"date":"May 3 2019"},{"filename":"mod_lbmethod_bybusyness.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18144,"date":"May 3 2019"},{"filename":"mod_lbmethod_byrequests.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18144,"date":"May 3 2019"},{"filename":"mod_lbmethod_bytraffic.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18128,"date":"May 3 2019"},{"filename":"mod_lbmethod_heartbeat.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":29344,"date":"May 3 2019"},{"filename":"mod_ldap.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":128848,"date":"May 3 2019"},{"filename":"mod_log_config.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":46064,"date":"May 3 2019"},{"filename":"mod_log_debug.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":28576,"date":"May 3 2019"},{"filename":"mod_log_forensic.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23872,"date":"May 3 2019"},{"filename":"mod_logio.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23904,"date":"May 3 2019"},{"filename":"mod_macro.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":32768,"date":"May 3 2019"},{"filename":"mod_mime.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":33376,"date":"May 3 2019"},{"filename":"mod_mime_magic.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":42560,"date":"May 3 2019"},{"filename":"mod_negotiation.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":53360,"date":"May 3 2019"},{"filename":"mod_perl.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":190432,"date":"May 3 2019"},{"filename":"mod_proxy.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":193376,"date":"May 3 2019"},{"filename":"mod_proxy_ajp.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":100064,"date":"May 3 2019"},{"filename":"mod_proxy_balancer.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":83808,"date":"May 3 2019"},{"filename":"mod_proxy_connect.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":41264,"date":"May 3 2019"},{"filename":"mod_proxy_express.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":27520,"date":"May 3 2019"},{"filename":"mod_proxy_fcgi.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":52224,"date":"May 3 2019"},{"filename":"mod_proxy_fdpass.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23440,"date":"May 3 2019"},{"filename":"mod_proxy_ftp.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":82656,"date":"May 3 2019"},{"filename":"mod_proxy_hcheck.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":57856,"date":"May 3 2019"},{"filename":"mod_proxy_html.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":64896,"date":"May 3 2019"},{"filename":"mod_proxy_http.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":75408,"date":"May 3 2019"},{"filename":"mod_proxy_scgi.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":34464,"date":"May 3 2019"},{"filename":"mod_proxy_uwsgi.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":30080,"date":"May 3 2019"},{"filename":"mod_proxy_wstunnel.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":36832,"date":"May 3 2019"},{"filename":"mod_ratelimit.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":27968,"date":"May 3 2019"},{"filename":"mod_reflector.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23984,"date":"May 3 2019"},{"filename":"mod_remoteip.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":42624,"date":"May 3 2019"},{"filename":"mod_reqtimeout.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":28752,"date":"May 3 2019"},{"filename":"mod_request.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23872,"date":"May 3 2019"},{"filename":"mod_rewrite.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":100400,"date":"May 3 2019"},{"filename":"mod_secure_transport.so","parent":"/usr/libexec/apache2","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":106368,"date":"May 3 2019"},{"filename":"mod_sed.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":64032,"date":"May 3 2019"},{"filename":"mod_session.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":34368,"date":"May 3 2019"},{"filename":"mod_session_cookie.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23360,"date":"May 3 2019"},{"filename":"mod_session_dbd.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":28608,"date":"May 3 2019"},{"filename":"mod_setenvif.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":28480,"date":"May 3 2019"},{"filename":"mod_slotmem_plain.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":22976,"date":"May 3 2019"},{"filename":"mod_slotmem_shm.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":33008,"date":"May 3 2019"},{"filename":"mod_socache_dbm.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":28288,"date":"May 3 2019"},{"filename":"mod_socache_memcache.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":28240,"date":"May 3 2019"},{"filename":"mod_socache_shmcb.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":48704,"date":"May 3 2019"},{"filename":"mod_speling.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":28096,"date":"May 3 2019"},{"filename":"mod_ssl.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":356144,"date":"May 3 2019"},{"filename":"mod_status.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":37200,"date":"May 3 2019"},{"filename":"mod_substitute.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":41136,"date":"May 3 2019"},{"filename":"mod_unique_id.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":18944,"date":"May 3 2019"},{"filename":"mod_unixd.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23856,"date":"May 3 2019"},{"filename":"mod_userdir.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23392,"date":"May 3 2019"},{"filename":"mod_usertrack.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":24096,"date":"May 3 2019"},{"filename":"mod_version.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":22928,"date":"May 3 2019"},{"filename":"mod_vhost_alias.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":23568,"date":"May 3 2019"},{"filename":"mod_watchdog.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":39104,"date":"May 3 2019"},{"filename":"mod_xml2enc.so","parent":"/usr/libexec/apache2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":50416,"date":"May 3 2019"},{"filename":".","parent":"/usr/libexec/cups","flags":"drwxr-xr-x","links":10,"owner":"root","group":"wheel","size":320,"date":"May 3 2019"},{"filename":"..","parent":"/usr/libexec/cups","flags":"drwxr-xr-x","links":249,"owner":"root","group":"wheel","size":7968,"date":"Feb 7 23:29"},{"filename":"apple","parent":"/usr/libexec/cups","flags":"drwxr-xr-x","links":7,"owner":"root","group":"wheel","size":224,"date":"Feb 7 23:29"},{"filename":"backend","parent":"/usr/libexec/cups","flags":"drwxr-xr-x","links":17,"owner":"root","group":"wheel","size":544,"date":"Feb 7 23:29"},{"filename":"cgi-bin","parent":"/usr/libexec/cups","flags":"drwxr-xr-x","links":7,"owner":"root","group":"wheel","size":224,"date":"Feb 7 23:29"},{"filename":"daemon","parent":"/usr/libexec/cups","flags":"drwxr-xr-x","links":6,"owner":"root","group":"wheel","size":192,"date":"Feb 7 23:29"},{"filename":"driver","parent":"/usr/libexec/cups","flags":"drwxr-xr-x","links":2,"owner":"root","group":"wheel","size":64,"date":"Feb 22 2019"},{"filename":"filter","parent":"/usr/libexec/cups","flags":"drwxr-xr-x","links":23,"owner":"root","group":"wheel","size":736,"date":"Feb 7 23:29"},{"filename":"monitor","parent":"/usr/libexec/cups","flags":"drwxr-xr-x","links":4,"owner":"root","group":"wheel","size":128,"date":"Feb 7 23:29"},{"filename":"notifier","parent":"/usr/libexec/cups","flags":"drwxr-xr-x","links":4,"owner":"root","group":"wheel","size":128,"date":"Feb 7 23:29"},{"filename":".","parent":"/usr/libexec/cups/apple","flags":"drwxr-xr-x","links":7,"owner":"root","group":"wheel","size":224,"date":"Feb 7 23:29"},{"filename":"..","parent":"/usr/libexec/cups/apple","flags":"drwxr-xr-x","links":10,"owner":"root","group":"wheel","size":320,"date":"May 3 2019"},{"filename":"http","link_to":"ipp","parent":"/usr/libexec/cups/apple","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":3,"date":"May 4 2019"},{"filename":"https","link_to":"ipp","parent":"/usr/libexec/cups/apple","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":3,"date":"May 4 2019"},{"filename":"ipp","parent":"/usr/libexec/cups/apple","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":83552,"date":"Jan 24 01:13"},{"filename":"ipps","link_to":"ipp","parent":"/usr/libexec/cups/apple","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":3,"date":"May 4 2019"},{"filename":"smb","parent":"/usr/libexec/cups/apple","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":174544,"date":"Jul 16 2019"},{"filename":".","parent":"/usr/libexec/cups/backend","flags":"drwxr-xr-x","links":17,"owner":"root","group":"wheel","size":544,"date":"Feb 7 23:29"},{"filename":"..","parent":"/usr/libexec/cups/backend","flags":"drwxr-xr-x","links":10,"owner":"root","group":"wheel","size":320,"date":"May 3 2019"},{"filename":"bluetooth","parent":"/usr/libexec/cups/backend","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":38688,"date":"Jan 24 01:13"},{"filename":"dnssd","parent":"/usr/libexec/cups/backend","flags":"-rwx------","links":1,"owner":"root","group":"wheel","size":29216,"date":"Jan 24 01:13"},{"filename":"epsonfax","link_to":"/Library/Printers/EPSON/Fax/FaxIOSupport/epsonfax.app/Contents/MacOS/epsonfax","parent":"/usr/libexec/cups/backend","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":77,"date":"May 4 2019"},{"filename":"http","link_to":"ipp","parent":"/usr/libexec/cups/backend","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":3,"date":"May 4 2019"},{"filename":"https","link_to":"ipp","parent":"/usr/libexec/cups/backend","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":3,"date":"May 4 2019"},{"filename":"ipp","parent":"/usr/libexec/cups/backend","flags":"-rwx------","links":1,"owner":"root","group":"wheel","size":83552,"date":"Jan 24 01:13"},{"filename":"ipps","link_to":"ipp","parent":"/usr/libexec/cups/backend","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":3,"date":"May 4 2019"},{"filename":"ippusb","link_to":"dnssd","parent":"/usr/libexec/cups/backend","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":5,"date":"May 4 2019"},{"filename":"lpd","parent":"/usr/libexec/cups/backend","flags":"-rwx------","links":1,"owner":"root","group":"wheel","size":47824,"date":"Jan 24 01:13"},{"filename":"mdns","link_to":"dnssd","parent":"/usr/libexec/cups/backend","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":5,"date":"May 4 2019"},{"filename":"riousbprint","parent":"/usr/libexec/cups/backend","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":34416,"date":"May 3 2019"},{"filename":"smb","parent":"/usr/libexec/cups/backend","flags":"-rwx------","links":1,"owner":"root","group":"wheel","size":30464,"date":"May 3 2019"},{"filename":"snmp","parent":"/usr/libexec/cups/backend","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":34288,"date":"Jan 24 01:13"},{"filename":"socket","parent":"/usr/libexec/cups/backend","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":42608,"date":"Jan 24 01:13"},{"filename":"usb","parent":"/usr/libexec/cups/backend","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":100992,"date":"Jan 24 01:13"},{"filename":".","parent":"/usr/libexec/cups/cgi-bin","flags":"drwxr-xr-x","links":7,"owner":"root","group":"wheel","size":224,"date":"Feb 7 23:29"},{"filename":"..","parent":"/usr/libexec/cups/cgi-bin","flags":"drwxr-xr-x","links":10,"owner":"root","group":"wheel","size":320,"date":"May 3 2019"},{"filename":"admin.cgi","parent":"/usr/libexec/cups/cgi-bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":67072,"date":"Jan 24 01:13"},{"filename":"classes.cgi","parent":"/usr/libexec/cups/cgi-bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":24768,"date":"Jan 24 01:13"},{"filename":"help.cgi","parent":"/usr/libexec/cups/cgi-bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":23856,"date":"Jan 24 01:13"},{"filename":"jobs.cgi","parent":"/usr/libexec/cups/cgi-bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":19568,"date":"Jan 24 01:13"},{"filename":"printers.cgi","parent":"/usr/libexec/cups/cgi-bin","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":24992,"date":"Jan 24 01:13"},{"filename":".","parent":"/usr/libexec/cups/daemon","flags":"drwxr-xr-x","links":6,"owner":"root","group":"wheel","size":192,"date":"Feb 7 23:29"},{"filename":"..","parent":"/usr/libexec/cups/daemon","flags":"drwxr-xr-x","links":10,"owner":"root","group":"wheel","size":320,"date":"May 3 2019"},{"filename":"cups-deviced","parent":"/usr/libexec/cups/daemon","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":29504,"date":"Jan 24 01:13"},{"filename":"cups-driverd","parent":"/usr/libexec/cups/daemon","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":53280,"date":"Jan 24 01:13"},{"filename":"cups-exec","parent":"/usr/libexec/cups/daemon","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":19008,"date":"Jan 24 01:13"},{"filename":"cups-lpd","parent":"/usr/libexec/cups/daemon","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":34048,"date":"Jan 24 01:13"},{"filename":".","parent":"/usr/libexec/cups/driver","flags":"drwxr-xr-x","links":2,"owner":"root","group":"wheel","size":64,"date":"Feb 22 2019"},{"filename":"..","parent":"/usr/libexec/cups/driver","flags":"drwxr-xr-x","links":10,"owner":"root","group":"wheel","size":320,"date":"May 3 2019"},{"filename":".","parent":"/usr/libexec/cups/filter","flags":"drwxr-xr-x","links":23,"owner":"root","group":"wheel","size":736,"date":"Feb 7 23:29"},{"filename":"..","parent":"/usr/libexec/cups/filter","flags":"drwxr-xr-x","links":10,"owner":"root","group":"wheel","size":320,"date":"May 3 2019"},{"filename":"cgbannertopdf","parent":"/usr/libexec/cups/filter","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":45312,"date":"May 3 2019"},{"filename":"cgimagetopdf","parent":"/usr/libexec/cups/filter","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":37248,"date":"May 3 2019"},{"filename":"cgpdftopdf","parent":"/usr/libexec/cups/filter","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":47344,"date":"May 3 2019"},{"filename":"cgpdftops","parent":"/usr/libexec/cups/filter","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":49952,"date":"May 3 2019"},{"filename":"cgpdftoraster","parent":"/usr/libexec/cups/filter","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":371072,"date":"May 3 2019"},{"filename":"cgtexttopdf","parent":"/usr/libexec/cups/filter","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":50096,"date":"May 3 2019"},{"filename":"commandtops","parent":"/usr/libexec/cups/filter","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":23744,"date":"Jan 24 01:13"},{"filename":"gziptoany","parent":"/usr/libexec/cups/filter","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":18800,"date":"Jan 24 01:13"},{"filename":"pstoappleps","parent":"/usr/libexec/cups/filter","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":25184,"date":"May 3 2019"},{"filename":"pstocupsraster","parent":"/usr/libexec/cups/filter","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":35936,"date":"May 3 2019"},{"filename":"pstopdffilter","parent":"/usr/libexec/cups/filter","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":30352,"date":"May 3 2019"},{"filename":"pstops","parent":"/usr/libexec/cups/filter","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":55280,"date":"Jan 24 01:13"},{"filename":"rastertodymo","link_to":"rastertolabel","parent":"/usr/libexec/cups/filter","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":13,"date":"May 4 2019"},{"filename":"rastertoepson","parent":"/usr/libexec/cups/filter","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":28352,"date":"Jan 24 01:13"},{"filename":"rastertohp","parent":"/usr/libexec/cups/filter","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":27984,"date":"Jan 24 01:13"},{"filename":"rastertolabel","parent":"/usr/libexec/cups/filter","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":28576,"date":"Jan 24 01:13"},{"filename":"rastertopwg","parent":"/usr/libexec/cups/filter","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":27968,"date":"Jan 24 01:13"},{"filename":"rastertotiff","parent":"/usr/libexec/cups/filter","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":31888,"date":"May 3 2019"},{"filename":"rastertourf","parent":"/usr/libexec/cups/filter","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":29360,"date":"May 3 2019"},{"filename":"thnucups","parent":"/usr/libexec/cups/filter","flags":"-rwxr-xr-x@","links":1,"owner":"root","group":"wheel","size":128480,"date":"Feb 13 16:44"},{"filename":"xhtmltopdf","parent":"/usr/libexec/cups/filter","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":31792,"date":"May 3 2019"},{"filename":".","parent":"/usr/libexec/cups/monitor","flags":"drwxr-xr-x","links":4,"owner":"root","group":"wheel","size":128,"date":"Feb 7 23:29"},{"filename":"..","parent":"/usr/libexec/cups/monitor","flags":"drwxr-xr-x","links":10,"owner":"root","group":"wheel","size":320,"date":"May 3 2019"},{"filename":"bcp","parent":"/usr/libexec/cups/monitor","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":18624,"date":"Jan 24 01:13"},{"filename":"tbcp","parent":"/usr/libexec/cups/monitor","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":18624,"date":"Jan 24 01:13"},{"filename":".","parent":"/usr/libexec/cups/notifier","flags":"drwxr-xr-x","links":4,"owner":"root","group":"wheel","size":128,"date":"Feb 7 23:29"},{"filename":"..","parent":"/usr/libexec/cups/notifier","flags":"drwxr-xr-x","links":10,"owner":"root","group":"wheel","size":320,"date":"May 3 2019"},{"filename":"mailto","parent":"/usr/libexec/cups/notifier","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":24544,"date":"Jan 24 01:13"},{"filename":"rss","parent":"/usr/libexec/cups/notifier","flags":"-r-xr-xr-x","links":1,"owner":"root","group":"wheel","size":29104,"date":"Jan 24 01:13"},{"filename":".","parent":"/usr/libexec/dtrace","flags":"drwxr-xr-x","links":8,"owner":"root","group":"wheel","size":256,"date":"May 3 2019"},{"filename":"..","parent":"/usr/libexec/dtrace","flags":"drwxr-xr-x","links":249,"owner":"root","group":"wheel","size":7968,"date":"Feb 7 23:29"},{"filename":"file_events.cpp","parent":"/usr/libexec/dtrace","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":8831,"date":"Feb 22 2019"},{"filename":"file_events.hpp","parent":"/usr/libexec/dtrace","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":2647,"date":"Feb 22 2019"},{"filename":"log_unnest_badness.d","parent":"/usr/libexec/dtrace","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":250,"date":"Apr 25 2019"},{"filename":"smbd_entitlements.plist","parent":"/usr/libexec/dtrace","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":326,"date":"Feb 22 2019"},{"filename":"smbtrace.d","parent":"/usr/libexec/dtrace","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":5396,"date":"Feb 22 2019"},{"filename":"vm_map_delete_permanent.d","parent":"/usr/libexec/dtrace","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":279,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/emacs","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Feb 22 2019"},{"filename":"..","parent":"/usr/libexec/emacs","flags":"drwxr-xr-x","links":249,"owner":"root","group":"wheel","size":7968,"date":"Feb 7 23:29"},{"filename":"22.1","parent":"/usr/libexec/emacs","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Feb 22 2019"},{"filename":".","parent":"/usr/libexec/emacs/22.1","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Feb 22 2019"},{"filename":"..","parent":"/usr/libexec/emacs/22.1","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Feb 22 2019"},{"filename":"mac-apple-darwin","parent":"/usr/libexec/emacs/22.1","flags":"drwxr-xr-x","links":12,"owner":"root","group":"wheel","size":384,"date":"May 3 2019"},{"filename":".","parent":"/usr/libexec/emacs/22.1/mac-apple-darwin","flags":"drwxr-xr-x","links":12,"owner":"root","group":"wheel","size":384,"date":"May 3 2019"},{"filename":"..","parent":"/usr/libexec/emacs/22.1/mac-apple-darwin","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Feb 22 2019"},{"filename":"cvtmail","parent":"/usr/libexec/emacs/22.1/mac-apple-darwin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":22896,"date":"May 3 2019"},{"filename":"digest-doc","parent":"/usr/libexec/emacs/22.1/mac-apple-darwin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":22176,"date":"May 3 2019"},{"filename":"fakemail","parent":"/usr/libexec/emacs/22.1/mac-apple-darwin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":17696,"date":"May 3 2019"},{"filename":"hexl","parent":"/usr/libexec/emacs/22.1/mac-apple-darwin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":22800,"date":"May 3 2019"},{"filename":"movemail","parent":"/usr/libexec/emacs/22.1/mac-apple-darwin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":41984,"date":"May 3 2019"},{"filename":"profile","parent":"/usr/libexec/emacs/22.1/mac-apple-darwin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":22176,"date":"May 3 2019"},{"filename":"rcs2log","parent":"/usr/libexec/emacs/22.1/mac-apple-darwin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":20684,"date":"Feb 22 2019"},{"filename":"sorted-doc","parent":"/usr/libexec/emacs/22.1/mac-apple-darwin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":22752,"date":"May 3 2019"},{"filename":"update-game-score","parent":"/usr/libexec/emacs/22.1/mac-apple-darwin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":32944,"date":"May 3 2019"},{"filename":"vcdiff","parent":"/usr/libexec/emacs/22.1/mac-apple-darwin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":2217,"date":"Feb 22 2019"},{"filename":".","parent":"/usr/libexec/fax","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Feb 22 2019"},{"filename":"..","parent":"/usr/libexec/fax","flags":"drwxr-xr-x","links":249,"owner":"root","group":"wheel","size":7968,"date":"Feb 7 23:29"},{"filename":"coverpage.py","parent":"/usr/libexec/fax","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":11646,"date":"Feb 22 2019"},{"filename":".","parent":"/usr/libexec/feedback","flags":"drwxr-xr-x","links":7,"owner":"root","group":"wheel","size":224,"date":"Feb 7 23:29"},{"filename":"..","parent":"/usr/libexec/feedback","flags":"drwxr-xr-x","links":249,"owner":"root","group":"wheel","size":7968,"date":"Feb 7 23:29"},{"filename":"appearance.py","parent":"/usr/libexec/feedback","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":805,"date":"Mar 29 2019"},{"filename":"fb_collect","parent":"/usr/libexec/feedback","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":43760,"date":"Jan 24 01:13"},{"filename":"filevault.py","parent":"/usr/libexec/feedback","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":3381,"date":"Mar 29 2019"},{"filename":"sleepwake.sh","parent":"/usr/libexec/feedback","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":29,"date":"Mar 29 2019"},{"filename":"systriage.rb","parent":"/usr/libexec/feedback","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"wheel","size":111653,"date":"Mar 29 2019"},{"filename":".","parent":"/usr/libexec/firmwarecheckers","flags":"drwxr-xr-x","links":4,"owner":"root","group":"wheel","size":128,"date":"May 3 2019"},{"filename":"..","parent":"/usr/libexec/firmwarecheckers","flags":"drwxr-xr-x","links":249,"owner":"root","group":"wheel","size":7968,"date":"Feb 7 23:29"},{"filename":"eficheck","parent":"/usr/libexec/firmwarecheckers","flags":"drwxr-xr-x","links":6,"owner":"root","group":"wheel","size":192,"date":"Feb 7 23:29"},{"filename":"ethcheck","parent":"/usr/libexec/firmwarecheckers","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"May 3 2019"},{"filename":".","parent":"/usr/libexec/firmwarecheckers/eficheck","flags":"drwxr-xr-x","links":6,"owner":"root","group":"wheel","size":192,"date":"Feb 7 23:29"},{"filename":"..","parent":"/usr/libexec/firmwarecheckers/eficheck","flags":"drwxr-xr-x","links":4,"owner":"root","group":"wheel","size":128,"date":"May 3 2019"},{"filename":"EFIAllowListShipping.bundle","parent":"/usr/libexec/firmwarecheckers/eficheck","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"eficheck","parent":"/usr/libexec/firmwarecheckers/eficheck","flags":"-rwx--x--x","links":1,"owner":"root","group":"wheel","size":79472,"date":"Jan 24 01:13"},{"filename":"eficheck-standalone","parent":"/usr/libexec/firmwarecheckers/eficheck","flags":"-rwx--x--x","links":1,"owner":"root","group":"wheel","size":48096,"date":"Jan 24 01:13"},{"filename":"localization","parent":"/usr/libexec/firmwarecheckers/eficheck","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle","flags":"drwxr-xr-x","links":6,"owner":"root","group":"wheel","size":192,"date":"Feb 7 23:29"},{"filename":"allowlists","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle","flags":"drwxr-xr-x","links":2037,"owner":"root","group":"wheel","size":65184,"date":"Feb 7 23:29"},{"filename":".","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"drwxr-xr-x","links":2037,"owner":"root","group":"wheel","size":65184,"date":"Feb 7 23:29"},{"filename":"..","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0001.I00.0908281642.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0001.I00.0909021206.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0001.I00.0909021315.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0001.I00.0909091053.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0001.I00.0909111152.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0001.I00.0909111312.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0001.I00.0909141538.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0001.I00.0909141605.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0001.I00.0909171006.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0002.I00.0909231120.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0002.I00.0909281404.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0002.I00.0910021021.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0002.I00.0910021107.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0002.I00.0910051536.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0002.I00.0910051609.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0002.I00.0910071112.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0002.I00.0910071209.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0002.I00.0910091045.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0002.I00.0910091152.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0002.I00.0910122220.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0002.I00.0910141109.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0002.I00.0910141146.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0002.I00.0910151922.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0002.I00.0910191602.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0002.I00.0910191643.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0002.I00.0910211310.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0002.I00.0910242121.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0002.I00.0910281217.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0002.I00.0910281927.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0002.I00.0910301725.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0002.I00.1003151739.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0002.I00.1003171312.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0002.I00.1507291353.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0002.I00.1509231900.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0002.I00.1701210003.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0002.I00.1702201847.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0002.I00.1702241356.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0002.I00.1704250219.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0002.I00.1704281850.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0002.I00.1705021412.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0002.I00.1706220550.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0002.I00.1706261402.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0002.I00.1707231527.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM111.AAPLEFI1.88Z.0002.I00.1708080237.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0005.I00.0911231211.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0005.I00.0912071313.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0005.I00.0912071347.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0005.I00.0912141547.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0005.I00.0912141713.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0005.I00.0912161112.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0005.I00.0912181153.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0005.I00.0912181427.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0005.I00.1001081056.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0005.I00.1001111654.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0005.I00.1001151650.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0005.I00.1001251301.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0006.I00.1002081552.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0006.I00.1002081733.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0006.I00.1002101313.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0006.I00.1002121627.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0006.I00.1002171156.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0006.I00.1002191318.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0006.I00.1002261335.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0006.I00.1003031405.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0006.I00.1003051151.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0006.I00.1003081608.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0006.I00.1003121143.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0006.I00.1003171246.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0006.I00.1003241457.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0006.I00.1004051701.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0006.I00.1004091104.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0006.I00.1004121638.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0006.I00.1004161256.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0006.I00.1004191607.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0006.I00.1004230939.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0006.I00.1004261556.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0006.I00.1005031453.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0006.I00.1112090904.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0006.I00.1112091248.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0006.I00.1507291449.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0006.I00.1509231641.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0006.I00.1612201716.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0006.I00.1701210149.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0006.I00.1702180220.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0006.I00.1702241446.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0006.I00.1704242250.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0006.I00.1704281519.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0006.I00.1705021555.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0006.I00.1706220336.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0006.I00.1706261624.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0006.I00.1707271300.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM112.AAPLEFI2.88Z.0006.I00.1708080435.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI2.88Z.0001.I00.1005211133.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI2.88Z.0001.I00.1005241636.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI2.88Z.0003.I00.1006141518.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0004.I00.1006161137.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0004.I00.1006180910.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0004.I00.1006251013.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0004.I00.1006281408.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0005.I00.1007141220.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0005.I00.1007211301.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0005.I00.1007261201.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0005.I00.1007281057.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0005.I00.1008021259.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0005.I00.1008041221.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0005.I00.1008091039.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0005.I00.1008111115.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0005.I00.1008121651.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0005.I00.1008181312.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0005.I00.1008231323.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0005.I00.1008251413.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0005.I00.1008301408.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0005.I00.1009011157.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0005.I00.1009011250.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0006.I00.1009081115.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0006.I00.1009081226.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0007.I00.1009131111.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0007.I00.1009131124.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0007.I00.1009151116.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0007.I00.1009201126.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0007.I00.1009231111.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0007.I00.1009271031.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0008.I00.1009291042.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0008.I00.1010021017.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0008.I00.1010041146.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0008.I00.1010051020.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0008.I00.1010051724.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0008.I00.1010091027.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0008.I00.1010111112.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I00.1010131028.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I00.1010131106.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I00.1010170938.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I00.1010181212.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I00.1010200944.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I00.1010200957.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I00.1010230937.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I00.1010251247.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I00.1010270938.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I00.1010271023.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I00.1010290938.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I00.1010291415.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I00.1011020847.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I00.1011021506.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I00.1011050838.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I00.1011051249.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I00.1011100939.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I00.1011110945.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I00.1011120759.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I00.1011160939.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I00.1011161712.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I00.1011210940.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I00.1011220725.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I00.1011290940.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I00.1011291124.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I00.1012010939.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I00.1012011224.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I00.1012020939.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I00.1012021643.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I00.1012050944.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I00.1012061142.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I00.1012080943.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I00.1012081135.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I00.1012120946.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I00.1012131137.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I00.1012150939.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I00.1012151059.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I00.1012190941.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I00.1012201104.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I00.1101010940.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I00.1101050940.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I01.1101100940.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I01.1101101109.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I01.1101120941.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I01.1101121158.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I01.1101150944.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I01.1101171047.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I02.1101190957.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I02.1101191057.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1101230957.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1101241114.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1101260937.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1101261044.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1101310951.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1101311146.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1102021201.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1102031002.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1102041235.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1102071704.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1102091754.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1103021144.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1103091152.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1103161348.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1103242050.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1103301137.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1104061234.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1104111857.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1104150726.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1104201032.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1104221553.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1107141151.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1107281150.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1108031503.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1108101256.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1108112002.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1108121148.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1108122101.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1108171247.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1108221125.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1108290922.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1108291934.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1109011022.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1109021638.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1109030048.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1109061106.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1109061818.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1109081124.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1109091929.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1109100354.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1109141123.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1109141953.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1109211414.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1109231613.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1109281426.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1110171108.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1110201312.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1201241646.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1506090232.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1506101604.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1509141153.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1510261406.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1610201718.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1611011512.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1612202117.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1701201957.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1702171911.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1703231948.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1703301217.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1703301434.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1704131557.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1704242117.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1704281158.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1705021500.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1705101226.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1706220459.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1706261227.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1707271117.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM121.AAPLEFI4.88Z.0009.I03.1708080007.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"IM131.88Z.F000.B00.1912181754.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":22537,"date":"Jan 23 07:12"},{"filename":"IM131.AAPLEFI4.88Z.0011.I00.1109120937.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0012.I00.1109141013.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0012.I00.1109141044.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0012.I00.1109190951.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0012.I00.1109191025.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0012.I00.1109211037.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0012.I00.1109260949.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0012.I00.1109271121.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0012.I00.1110031003.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0012.I00.1110031600.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0012.I00.1110050942.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0012.I00.1110100942.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0012.I00.1110101002.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0012.I00.1110121146.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0012.I00.1110121223.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0012.I00.1110170947.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0012.I00.1110201110.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0012.I00.1110211417.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0012.I00.1110211452.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0012.I00.1110260954.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0012.I00.1110270931.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0012.I00.1110271125.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0012.I00.1110271506.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0012.I00.1110271555.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0012.I00.1111020931.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0012.I00.1111021003.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0012.I00.1111070949.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0012.I00.1111071036.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0012.I00.1111091031.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0012.I00.1111091124.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1111141502.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1111171341.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1111280947.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1111281026.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1111301445.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1112051012.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1112051056.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1112051152.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1112070942.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1112071028.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1112121145.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1112121219.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1112140955.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1112141056.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1112201134.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1112201338.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1201041310.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1201041425.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1201090945.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1201091030.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1201120951.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1201122023.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1201122053.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1201160946.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1201161027.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1201181139.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1201181211.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1201231016.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1201231046.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1201251020.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1201251124.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1201300936.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1201301023.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1202011024.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1202011105.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1202021239.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1202061106.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1202061410.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1202061455.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1202081041.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1202081208.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1610041759.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0013.I00.1610041803.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.0000000000.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Jan 23 07:12"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1202131042.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1202131134.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1202151015.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1202151052.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1202201110.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1202201259.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1202221034.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1202270952.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1202271033.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1202291139.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1202291207.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1203050954.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1203051041.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1203071032.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1203071112.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1203120956.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1203121258.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1203140947.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1203141038.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1203190958.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1203191039.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1203210941.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1203211000.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1203261014.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1203281126.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1203281326.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1204021116.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1204021155.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1204041150.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1204041234.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1204091154.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1204091336.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1204110951.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1204111043.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1204160954.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1204161036.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1204180957.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1204181026.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1204231011.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1204231040.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1204250940.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1204251026.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1204251057.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1204300951.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1204301035.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1205020943.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1205071044.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1205071121.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1205091022.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1205091100.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1205140949.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1205141019.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1205161032.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1205211031.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1205211107.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1205230945.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1205231023.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1205300954.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1205301024.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1206041015.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1206041046.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1206061022.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1206061100.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1206111004.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1206111034.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1206131004.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1206131034.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1206181000.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1206181044.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1206201017.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1206201045.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1206251010.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1206251049.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1206271006.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1206271037.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1207021028.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1207021115.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1207091005.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1207091351.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1207111001.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1207111358.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1207161014.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1207161046.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1207181033.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1207181109.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1207231047.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1207231117.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1207251016.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1207251054.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1207301041.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1207301109.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1208011033.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1208011100.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1208061023.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1208061105.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1208081006.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1208090851.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1208090926.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1208131011.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1208131039.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1208151033.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1208151102.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1208201150.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1208201218.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1208221308.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1208221338.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1208311615.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1208311623.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1208311727.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1209041407.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1209042015.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1209042034.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1209042338.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1209171013.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1209171041.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1209241107.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1209241135.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1210011102.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1210011129.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1210121432.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1210121459.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1211151122.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1211151146.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1302251018.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1302260943.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1302261003.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1302261008.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1506081722.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1506081728.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1509111552.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1509111558.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1610201905.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1610201915.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1612161241.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1612161246.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1701200120.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1701200126.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1701231749.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1701231754.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1701241525.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1701241529.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1702021818.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1702021833.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1702171350.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1702171357.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1703090651.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1703090657.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1703232142.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1703232149.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1705011305.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1705011311.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1706190947.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1706190954.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1706220533.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1706220538.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1706261414.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1706261419.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1707270721.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM131.AAPLEFI4.88Z.0014.I00.1708080805.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"IM141.88Z.F000.B00.1912181604.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":21757,"date":"Jan 23 07:12"},{"filename":"IM142.88Z.F000.B00.1912181604.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":21997,"date":"Jan 23 07:12"},{"filename":"IM143.88Z.F000.B00.1912181604.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":22177,"date":"Jan 23 07:12"},{"filename":"IM144.88Z.F000.B00.1912181611.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":10597,"date":"Jan 23 07:12"},{"filename":"IM151.88Z.F000.B00.1912181731.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":10777,"date":"Jan 23 07:12"},{"filename":"IM161.88Z.F000.B00.1910301927.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":11197,"date":"Jan 23 07:12"},{"filename":"IM162.88Z.F000.B00.1910301924.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":11317,"date":"Jan 23 07:12"},{"filename":"IM171.88Z.F000.B00.1912161452.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":7537,"date":"Jan 23 07:12"},{"filename":"IM181.88Z.F000.B00.1912161654.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":7777,"date":"Jan 23 07:12"},{"filename":"IM183.88Z.F000.B00.1912161654.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":7597,"date":"Jan 23 07:12"},{"filename":"IM191.88Z.F000.B00.1912181732.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":7777,"date":"Jan 23 07:12"},{"filename":"MB101.88Z.F000.B00.1912161654.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":7357,"date":"Jan 23 07:12"},{"filename":"MB81.88Z.F000.B00.1912161554.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":11437,"date":"Jan 23 07:12"},{"filename":"MB91.88Z.F000.B00.1912161452.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":7657,"date":"Jan 23 07:12"},{"filename":"MBA41.AAPLEFI4.88Z.0009.I00.1012150856.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.0009.I00.1012190852.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.0009.I00.1101010850.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.0009.I00.1101050852.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000A.I00.1101100849.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000A.I00.1101120853.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000A.I00.1101140856.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000A.I00.1101150856.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000C.I00.1101190907.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000C.I00.1101200908.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000C.I00.1101210913.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000D.I00.1101220909.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000D.I00.1101230914.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000D.I00.1101240856.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000D.I00.1101250855.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000D.I00.1101261120.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000D.I00.1102021157.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000E.I00.1102091215.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000E.I00.1102091751.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000E.I00.1102111116.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000E.I00.1102111139.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000E.I00.1102111313.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000E.I00.1102111320.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000E.I00.1102111511.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000E.I00.1102111511.1.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000E.I00.1102161116.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000E.I00.1102211052.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000E.I00.1102231217.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000E.I00.1102241543.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000E.I00.1102241720.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000E.I00.1102251038.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000E.I00.1103021232.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000E.I00.1103070731.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000E.I00.1103091936.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000E.I00.1103161348.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000E.I00.1103211026.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000E.I00.1103211031.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000E.I00.1103231036.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000E.I00.1103281025.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000E.I00.1103281030.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000E.I00.1103301120.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000E.I00.1104041043.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000E.I00.1104061117.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000E.I00.1104061122.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000E.I00.1104111221.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000E.I00.1104131115.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000E.I00.1104181024.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000E.I00.1104181030.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000E.I00.1104201030.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000E.I00.1104221256.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000E.I00.1104251137.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000E.I00.1104271026.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I00.1105050916.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I00.1105091028.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I00.1105111250.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I00.1105111313.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I00.1105160959.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I00.1105161031.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I00.1105181141.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I00.1105181211.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I00.1105231054.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I00.1105231132.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I00.1105251109.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I00.1105251142.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I00.1105271358.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I00.1105271428.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I00.1106011425.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I00.1106011454.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I00.1106061000.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I00.1106061642.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I01.1106081015.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I01.1106081046.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1106101104.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1106132213.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1106140816.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1106151001.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1106151037.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1106162146.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1106162216.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1106200956.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1106201206.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1106201233.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1106221510.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1106221541.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1106231541.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1106232232.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1106232301.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1106271224.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1106271253.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1106291141.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1106291211.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1106300901.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1106300929.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1107271705.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1107271736.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1108031120.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1108031344.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1108101017.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1108101049.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1108171239.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1108171457.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1108171535.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1108291522.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1108291605.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1108311547.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1109011021.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1109011050.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1109071213.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1109211407.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1109231610.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1110141153.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1201241518.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1201241549.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1309301452.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1310091423.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1310091428.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1506081722.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1506081728.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1509111552.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1509111558.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1510261804.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1606291853.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1610201436.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1610201441.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1612161003.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1612161009.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1701200227.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1701200234.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1701231856.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1701231905.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1702171849.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1702171855.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1702201321.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1702201326.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1703082356.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1703090011.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1703211803.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1703211809.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1703241835.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1703241839.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1703291020.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1703291024.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1704131531.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1704131536.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1705011209.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1705011214.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1705022113.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1705022117.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1706182246.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1706182250.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1706220616.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1706220621.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1706261209.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1706261217.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1707271102.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA41.AAPLEFI4.88Z.000F.I02.1708072159.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.88Z.F000.B00.1912181605.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":22417,"date":"Jan 23 07:12"},{"filename":"MBA51.AAPLEFI4.88Z.0012.I00.1110121203.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0013.I00.1111141506.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0013.I00.1111171404.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0013.I00.1111280948.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0013.I00.1111281040.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0013.I00.1111301430.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0013.I00.1111301509.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0013.I00.1112051016.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0013.I00.1112051133.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0013.I00.1112051211.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0013.I00.1112070949.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0013.I00.1112071043.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0013.I00.1112121146.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0013.I00.1112121305.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0013.I00.1112141001.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0013.I00.1112141058.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0013.I00.1112201138.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0013.I00.1112201339.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0013.I00.1201041310.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0013.I00.1201041425.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0013.I00.1201091015.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0013.I00.1201121003.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0013.I00.1201121137.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0013.I00.1201161023.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0013.I00.1201161308.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0013.I00.1201161358.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0013.I00.1201181155.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0013.I00.1201181234.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0013.I00.1201230947.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0013.I00.1201231032.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0013.I00.1201250939.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0013.I00.1201251246.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0013.I00.1201300936.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0013.I00.1201301023.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0013.I00.1202011011.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0013.I00.1202011049.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0013.I00.1202061112.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0013.I00.1202061346.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0013.I00.1202061417.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0013.I00.1202081103.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0013.I00.1202081208.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.0000000000.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Jan 23 07:12"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1202131131.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1202131211.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1202151049.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1202151130.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1202201147.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1202201301.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1202221017.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1202221053.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1202271030.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1202271055.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1202291156.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1202291238.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1203051021.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1203051042.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1203071108.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1203071145.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1203120956.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1203121259.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1203140948.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1203141013.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1203190958.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1203191039.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1203210941.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1203211000.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1203261015.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1203261043.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1203281127.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1203281150.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1204021117.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1204021140.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1204041153.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1204041235.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1204091154.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1204091337.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1204110952.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1204111044.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1204160951.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1204161036.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1204180957.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1204181043.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1204231017.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1204231109.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1204250940.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1204251030.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1204251115.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1204300953.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1204301036.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1205020944.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1205021014.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1205071045.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1205071121.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1205091022.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1205091101.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1205111019.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1205111052.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1205140950.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1205141142.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1205141211.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1205180833.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1205180901.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1205221412.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1205221442.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1207091048.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1207271032.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1207271048.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1207271121.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1211271001.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1211271023.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1211271028.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1506081618.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1506081623.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1509111646.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1509111653.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1610241029.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1610241034.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1612161124.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1612161130.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1701200120.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1701200126.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1701231856.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1701231905.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1701241625.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1701241632.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1702030112.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1702030117.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1702171350.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1702171357.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1703090651.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1703090657.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1703241418.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1703241423.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1705011406.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1705011412.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1706190947.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1706190954.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1706220516.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1706220521.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1706261427.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1706261433.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1707270721.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA51.AAPLEFI4.88Z.0014.I00.1708080803.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBA61.88Z.F000.B00.1912181759.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":22657,"date":"Jan 23 07:12"},{"filename":"MBA71.88Z.F000.B00.1912161554.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":11317,"date":"Jan 23 07:12"},{"filename":"MBP101.88Z.F000.B00.1912181603.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":23137,"date":"Jan 23 07:12"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.0000000000.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Jan 23 07:12"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1202270953.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1202271033.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1202291150.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1202291238.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1203051001.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1203051042.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1203071033.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1203071113.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1203120955.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1203121022.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1203140948.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1203141013.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1203190959.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1203191039.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1203210941.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1203211019.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1203261016.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1203261100.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1203281126.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1203281150.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1204021117.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1204021140.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1204041151.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1204041235.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1204091154.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1204091219.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1204110951.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1204111044.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1204160955.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1204161036.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1204181109.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1204181135.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1204241531.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1204241558.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1204251023.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1204251058.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1204271732.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1204271809.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1204300951.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1204301036.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1205011144.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1205011212.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1205031113.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1205031115.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1205031148.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1205041142.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1205041513.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1205041550.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1205091751.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1205091823.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1205101811.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1205101839.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1207271031.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1207271103.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1208081105.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1208081132.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1212211406.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1212211431.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1212211436.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1408281415.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1408281420.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1408291526.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1408291532.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1411201035.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1411201127.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1411201133.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1501071024.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1501071030.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1506081208.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1506081214.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1506081359.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1506081405.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1509111552.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1509111558.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1610201436.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1610201441.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1612151848.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1612151859.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1701200227.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1701200234.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1701231856.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1701231905.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1701241625.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1701241632.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1702021808.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1702021830.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1702171350.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1702171357.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1703082230.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1703082236.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1703211803.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1703211810.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1705011305.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1705011311.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1705012100.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1705012106.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1706190853.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1706190857.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1706221015.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1706221021.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1706261413.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1706261418.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1707270653.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP101.AAPLEFI4.88Z.0014.I00.1708080809.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.88Z.F000.B00.1912181755.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":22057,"date":"Jan 23 07:12"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.0000000000.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Jan 23 07:12"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1202270953.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1202271034.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1202291153.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1202291238.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1203051006.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1203051042.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1203071033.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1203071113.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1203120956.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1203121224.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1203140948.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1203141013.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1203190958.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1203191021.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1203210943.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1203211019.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1203261015.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1203261043.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1203281127.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1203281326.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1204021116.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1204021155.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1204041150.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1204041235.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1204091153.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1204091337.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1204110950.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1204111029.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1204160951.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1204161036.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1204180957.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1204181043.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1204231011.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1204231041.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1204250940.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1204251024.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1204251115.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1204300950.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1204301018.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1205020944.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1205071045.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1205071106.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1205091022.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1205091101.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1205140950.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1205141037.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1205161033.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1205211031.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1205211107.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1205230946.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1205231024.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1205300954.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1205301025.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1206041016.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1206041047.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1206061023.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1206061101.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1206111004.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1206111035.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1206131004.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1206131232.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1206181001.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1206181022.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1206201017.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1206201046.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1206251011.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1206251049.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1206271005.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1206271037.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1207021029.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1207021055.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1207091007.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1207091352.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1207111001.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1207111359.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1207161014.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1207161047.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1207181029.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1207181056.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1207231047.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1207231118.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1207251017.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1207251055.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1207301044.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1207301122.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1208061024.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1208061129.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1208081006.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1208081549.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1208081616.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1208090843.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1208091051.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1208091120.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1208311607.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1208311636.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1210241012.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1210241108.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1211161109.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1211161128.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1211161133.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1408281415.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1408281420.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1408291452.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1408291502.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1411201142.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1411201220.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1411201232.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1501071209.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1501071215.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1506081208.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1506081215.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1509111646.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1509111653.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1509130950.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1509130955.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1610201905.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1610201915.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1612161124.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1612161130.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1701200120.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1701200127.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1701231749.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1701231754.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1701241525.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1701241530.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1702021808.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1702021830.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1702171350.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1702171357.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1703090651.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1703090657.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1703211803.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1703211810.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1705011305.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1705011311.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1706190947.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1706190954.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1706220440.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1706220445.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1706261821.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1706261827.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1707270836.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP102.AAPLEFI4.88Z.0014.I00.1708080805.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP111.88Z.F000.B00.1912181759.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":22897,"date":"Jan 23 07:12"},{"filename":"MBP112.88Z.F000.B00.1912181609.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":23497,"date":"Jan 23 07:12"},{"filename":"MBP114.88Z.F000.B00.1912161555.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":11737,"date":"Jan 23 07:12"},{"filename":"MBP121.88Z.F000.B00.1912161438.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":11677,"date":"Jan 23 07:12"},{"filename":"MBP131.88Z.F000.B00.1912161653.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":7777,"date":"Jan 23 07:12"},{"filename":"MBP132.88Z.F000.B00.1912161510.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":7597,"date":"Jan 23 07:12"},{"filename":"MBP133.88Z.F000.B00.1912161510.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":7597,"date":"Jan 23 07:12"},{"filename":"MBP141.88Z.F000.B00.1912161654.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":7057,"date":"Jan 23 07:12"},{"filename":"MBP142.88Z.F000.B00.1912161510.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":7237,"date":"Jan 23 07:12"},{"filename":"MBP143.88Z.F000.B00.1912161510.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":7117,"date":"Jan 23 07:12"},{"filename":"MBP61.AAPLEFI1.88Z.0001.I00.0908281642.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI1.88Z.0001.I00.0909021206.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI1.88Z.0001.I00.0909091053.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI1.88Z.0001.I00.0909111151.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI1.88Z.0001.I00.0909111311.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI1.88Z.0001.I00.0909141531.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI1.88Z.0001.I00.0909141605.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI1.88Z.0001.I00.0909171006.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI1.88Z.0002.I00.0909231120.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI1.88Z.0002.I00.0909281404.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI1.88Z.0002.I00.0909281434.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI1.88Z.0002.I00.0910021021.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI1.88Z.0002.I00.0910021109.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI1.88Z.0002.I00.0910051536.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI1.88Z.0002.I00.0910051609.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI1.88Z.0002.I00.0910071112.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI1.88Z.0002.I00.0910071204.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI1.88Z.0002.I00.0910091045.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI1.88Z.0002.I00.0910091152.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI1.88Z.0002.I00.0910122219.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI1.88Z.0002.I00.0910141131.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI1.88Z.0002.I00.0910141146.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI1.88Z.0003.I00.0910191448.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI1.88Z.0003.I00.0910261502.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI1.88Z.0003.I00.0910261526.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI1.88Z.0003.I00.0911021519.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0004.I00.0911021455.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0004.I00.0911041106.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0004.I00.0911041225.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0004.I00.0911051851.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0004.I00.0911091623.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0004.I00.0911102030.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0004.I00.0911111320.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0004.I00.0911111458.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0004.I00.0911181055.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0004.I00.0911181122.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0004.I00.0911201450.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.0912041103.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.0912071334.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.0912071351.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.0912111222.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.0912111310.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.0912141534.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.0912141713.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.0912161112.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.0912181400.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.0912181429.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.0912221140.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.0912230907.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.0912231624.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1001041713.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1001061125.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1001061318.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1001111512.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1001111606.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1001130947.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1001131128.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1001151201.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1001151930.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1001181347.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1001201400.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1001221111.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1001251655.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1001300949.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1002031201.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1002081648.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1002101134.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1002121529.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1002171109.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1002171134.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1002191226.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1002191317.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1002221535.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1002221634.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1002261350.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1002261410.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1003011701.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1003012124.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1003040834.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1003101534.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1003121208.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1003151740.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1003191132.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1003241646.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1003311129.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1004071223.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1004141323.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1004141928.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1004161213.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1005120959.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1007091037.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1007261549.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1007270941.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1112091026.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1112091048.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1507212145.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1509232007.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1612201815.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1701210053.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1702172052.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1702241220.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1703211519.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1704250025.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1704281105.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1705021134.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1706170445.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1706220130.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1706261100.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1707241351.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0005.I00.1708072213.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":397,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0008.I00.1101140902.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":457,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0008.I00.1101150900.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":457,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0009.I00.1101180908.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":457,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0009.I00.1101190919.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":457,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0009.I00.1101200913.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":457,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0009.I00.1101210914.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":457,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0009.I00.1101220934.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":457,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0009.I00.1101230919.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":457,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0009.I00.1101240901.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":457,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0009.I00.1101250906.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":457,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0009.I00.1101260902.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":457,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0009.I00.1101270917.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":457,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0009.I00.1101280909.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":457,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0009.I00.1101290917.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":457,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0009.I00.1101310922.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":457,"date":"Apr 25 2019"},{"filename":"MBP61.AAPLEFI2.88Z.0009.I00.1102030927.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":457,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0005.I00.1008041152.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0005.I00.1008091100.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0005.I00.1008091102.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0005.I00.1008121648.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0005.I00.1008181316.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0005.I00.1008231306.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0005.I00.1008301408.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0005.I00.1009011146.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0005.I00.1009011359.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0006.I00.1009081106.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0006.I00.1009081229.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0007.I00.1009131052.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0007.I00.1009131127.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0007.I00.1009151119.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0007.I00.1009201123.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0007.I00.1009231114.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0007.I00.1009271028.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0008.I00.1009291039.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0008.I00.1010020951.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0008.I00.1010041149.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0008.I00.1010050947.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0008.I00.1010051721.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0008.I00.1010090948.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0008.I00.1010111110.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1010130948.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1010131104.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1010170911.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1010181215.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1010200911.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1010200953.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1010220907.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1010270911.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1010290910.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1010291334.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1011020813.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1011021508.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1011050814.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1011051250.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1011100908.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1011101038.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1011110912.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1011121717.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1011160915.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1011210912.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1011220636.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1011290915.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1011291125.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1012010914.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1012011154.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1012020915.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1012050911.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1012080910.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1012081134.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1012120910.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1012131136.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1012150919.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1012151059.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1012170922.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1012171129.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1012190927.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1012201104.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1012250928.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1012271035.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1101010926.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1101031514.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1101050927.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1101051125.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I00.1101070923.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I01.1101100926.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I01.1101101111.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I01.1101120928.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I01.1101121200.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I01.1101141645.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I01.1101141819.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I01.1101150923.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I01.1101151124.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I01.1101190937.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I01.1101191059.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I01.1101191814.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I01.1101210924.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I01.1101211514.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I01.1101220928.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I01.1101220928.1.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I01.1101230924.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I01.1101231134.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I01.1101282108.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I01.1102022358.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1102021106.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1102030931.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1102041819.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1102071705.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1103021059.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1103091154.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1103161348.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1103242113.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1103301200.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1104061123.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1104111855.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1104150725.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1104201033.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1104221555.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1107141149.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1107281122.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1108031501.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1108101818.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1108151745.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1108180842.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1108251704.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1108291539.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1109011021.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1109071116.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1109091242.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1109141951.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1109150518.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1109211336.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1109212241.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1109231544.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1109240018.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1109281425.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1110061632.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1110141128.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1110311250.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1201241644.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1404091743.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1411211557.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1506082157.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1509141026.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1510261534.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1610201932.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1612201423.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1701201815.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1702180125.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1703291134.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1704131704.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1704242025.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1704281723.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1705021652.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1705101322.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1706170647.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1706220747.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1706261917.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1707271211.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP81.AAPLEFI4.88Z.0009.I02.1708080651.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MBP91.88Z.F000.B00.1912181730.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":22417,"date":"Jan 23 07:12"},{"filename":"MBP91.AAPLEFI4.88Z.0011.I00.1108101438.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0011.I00.1108151010.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0011.I00.1108151051.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0011.I00.1108151158.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0011.I00.1108151229.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0011.I00.1108171239.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0011.I00.1108171455.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0011.I00.1108182037.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0011.I00.1108221029.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0011.I00.1108240732.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0011.I00.1108240851.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0011.I00.1108290950.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0011.I00.1108291009.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0011.I00.1108311344.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0011.I00.1109011003.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0011.I00.1109071042.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0011.I00.1109120938.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0012.I00.1109141014.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0012.I00.1109141045.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0012.I00.1109190952.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0012.I00.1109191026.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0012.I00.1109211037.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0012.I00.1109211108.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0012.I00.1109260950.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0012.I00.1109271122.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0012.I00.1109271154.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0012.I00.1110031002.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0012.I00.1110031550.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0012.I00.1110031624.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0012.I00.1110050943.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0012.I00.1110051014.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0012.I00.1110100943.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0012.I00.1110101024.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0012.I00.1110121145.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0012.I00.1110121224.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0012.I00.1110170947.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0012.I00.1110201059.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0012.I00.1110211410.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0012.I00.1110211654.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0012.I00.1110260953.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0012.I00.1110270932.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0012.I00.1110271505.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0012.I00.1110271556.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0012.I00.1111020932.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0012.I00.1111021220.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0012.I00.1111070952.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0012.I00.1111071049.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0012.I00.1111091018.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0012.I00.1111091102.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0013.I00.1111141507.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0013.I00.1111171322.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0013.I00.1111280948.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0013.I00.1111281040.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0013.I00.1111301450.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0013.I00.1111301545.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0013.I00.1112051020.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0013.I00.1112051117.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0013.I00.1112051211.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0013.I00.1112070946.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0013.I00.1112071043.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0013.I00.1112121146.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0013.I00.1112121305.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0013.I00.1112140956.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0013.I00.1112141058.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0013.I00.1112201140.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0013.I00.1112201339.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0013.I00.1201041310.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0013.I00.1201041425.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0013.I00.1201062157.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0013.I00.1201062224.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0013.I00.1201120937.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0013.I00.1201121147.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0013.I00.1201121220.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0013.I00.1201160947.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0013.I00.1201161303.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0013.I00.1201161358.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0013.I00.1201181137.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0013.I00.1201181211.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0013.I00.1201230951.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0013.I00.1201231032.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0013.I00.1201250939.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0013.I00.1201251022.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0013.I00.1201301018.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0013.I00.1201301058.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0013.I00.1202011010.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0013.I00.1202011331.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0013.I00.1202061139.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0013.I00.1202061333.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0013.I00.1202081118.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0013.I00.1202081208.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.0000000000.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Jan 23 07:12"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1202131043.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1202131135.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1202151049.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1202151130.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1202201117.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1202201259.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1202221013.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1202221148.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1202241139.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1202251052.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1202251119.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1202291148.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1202291207.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1203051001.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1203051023.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1203071032.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1203071112.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1203081035.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1203081110.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1203091410.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1203091712.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1203120956.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1203121154.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1203131744.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1203141235.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1203141254.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1203151822.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1203151848.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1203191245.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1203191305.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1203191306.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1203191520.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1203211509.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1203211536.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1203261014.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1203261059.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1203281126.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1203281326.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1204181246.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1204181313.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1205041512.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1205041549.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1205101121.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1205101148.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1205101838.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1205101904.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1207271032.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1207271103.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1208081105.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1208081131.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1302061104.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1302061158.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1302061204.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1504291452.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1504291456.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1506081208.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1506081214.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1509111646.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1509111652.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1602221701.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1602221712.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1610201607.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1610201614.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1612161003.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1612161009.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1701200227.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1701200233.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1701231856.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1701231904.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1701241625.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1701241631.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1702021808.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1702021828.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1702171514.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1702171521.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1703082356.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1703090008.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1703221856.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1703221900.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1705011406.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1705011411.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1705012100.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1705012105.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1706182353.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1706182357.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1706221015.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1706221020.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1706261209.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1706261216.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1707270908.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MBP91.AAPLEFI4.88Z.0014.I00.1708080744.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.0009.I00.1010170858.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.0009.I00.1010200858.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.0009.I00.1010230857.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.0009.I00.1010270858.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.0009.I00.1010290858.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.0009.I00.1011020758.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.0009.I00.1011050801.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.0009.I00.1011100902.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.0009.I00.1011110859.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.0009.I00.1011160900.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.0009.I00.1011210900.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.0009.I00.1011290901.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.0009.I00.1012010901.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.0009.I00.1012020901.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.0009.I00.1012050859.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.0009.I00.1012080859.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.0009.I00.1012081210.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.0009.I00.1012120907.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.0009.I00.1012131137.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.0009.I00.1012150907.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.0009.I00.1012151059.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.0009.I00.1012190912.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.0009.I00.1012201104.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.0009.I00.1101010913.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.0009.I00.1101031515.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.0009.I00.1101050912.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.0009.I00.1101051127.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000A.I00.1101100912.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000A.I00.1101101135.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000A.I00.1101120913.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000A.I00.1101121201.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":697,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000A.I00.1101140913.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000A.I00.1101150912.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000A.I00.1101171151.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000C.I00.1101190924.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000C.I00.1101191059.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000C.I00.1101200933.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000C.I00.1101210919.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000D.I00.1101220928.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000D.I00.1101230921.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000D.I00.1101240912.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000D.I00.1101241139.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000D.I00.1101250919.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000D.I00.1101260911.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000D.I00.1101261042.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000D.I00.1101270934.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000D.I00.1101280922.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000D.I00.1101290932.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000D.I00.1101310938.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000D.I00.1101311143.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000D.I00.1101311851.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000D.I00.1102030926.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000E.I00.1102091751.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000E.I00.1102141048.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000E.I00.1102161116.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000E.I00.1102211052.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000E.I00.1102231153.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000E.I00.1102251052.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000E.I00.1102281126.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000E.I00.1103021054.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000E.I00.1103070731.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000E.I00.1103091937.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000E.I00.1103161348.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000E.I00.1103211026.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000E.I00.1103211031.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000E.I00.1103231036.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000E.I00.1103281025.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000E.I00.1103281030.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000E.I00.1103301120.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000E.I00.1104041043.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000E.I00.1104061117.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000E.I00.1104061122.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000E.I00.1104131115.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000E.I00.1104181024.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000E.I00.1104181030.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000E.I00.1104201030.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000E.I00.1104251122.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000E.I00.1104271026.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I00.1105021032.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I00.1105050916.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I00.1105091028.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I00.1105111247.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I00.1105111400.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I00.1105160959.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I00.1105161031.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I00.1105181142.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I00.1105181211.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I00.1105231054.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I00.1105231132.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I00.1105251109.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I00.1105251142.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I00.1105271358.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I00.1105271441.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I00.1106011420.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I00.1106011454.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I00.1106061000.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I00.1106061029.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I01.1106081014.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I01.1106081046.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1106101105.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1106132213.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1106140816.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1106151001.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1106151037.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1106162146.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1106162216.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1106200956.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1106201202.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1106201233.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1106221510.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1106221623.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1106231540.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1106232231.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1106232352.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1106271223.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1106271442.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1107271705.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1107271736.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1108031123.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1108031344.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1108101016.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1108101049.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1108171238.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1108171440.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1108171509.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1108291522.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1108311547.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1109011011.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1109011050.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1109071213.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1109071242.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1109091159.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1109091225.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1109141942.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1109142033.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1109211406.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1109231610.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1110141153.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1110201308.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1201241544.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1201241549.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1506081722.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1506081728.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1509111552.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1509111558.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1510261804.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1606291827.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1610201607.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1610201614.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1612161003.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1612161009.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1701200227.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1701200234.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1701231856.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1701231905.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1702171514.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1702171522.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1702201321.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1702201326.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1703090219.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1703090225.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1703232120.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1703232137.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1704131531.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1704131536.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1705011209.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1705011214.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1706191359.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1706191403.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1706220614.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1706220620.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1706261432.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1706261437.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1707270909.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM51.AAPLEFI4.88Z.000F.I02.1708080744.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.88Z.F000.B00.1912181603.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":21337,"date":"Jan 23 07:12"},{"filename":"MM61.AAPLEFI4.88Z.0012.I00.1110171020.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0012.I00.1111020932.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0012.I00.1111070952.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0012.I00.1111091021.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0013.I00.1111141507.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0013.I00.1111171342.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0013.I00.1111280948.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0013.I00.1111281040.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0013.I00.1111301453.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0013.I00.1111301545.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0013.I00.1112051019.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0013.I00.1112051118.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0013.I00.1112051211.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0013.I00.1112070946.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0013.I00.1112071043.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0013.I00.1112121146.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0013.I00.1112121305.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0013.I00.1112141008.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0013.I00.1112141058.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0013.I00.1112201138.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0013.I00.1112201339.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0013.I00.1201041309.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0013.I00.1201041425.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0013.I00.1201090945.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0013.I00.1201091030.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0013.I00.1201120937.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0013.I00.1201121027.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0013.I00.1201161024.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0013.I00.1201161106.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0013.I00.1201181157.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0013.I00.1201181234.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0013.I00.1201230952.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0013.I00.1201231032.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0013.I00.1201251021.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0013.I00.1201251124.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0013.I00.1201301018.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0013.I00.1201301058.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0013.I00.1202011047.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0013.I00.1202011118.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0013.I00.1202061146.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0013.I00.1202061333.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0013.I00.1202061417.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0013.I00.1202081041.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0013.I00.1202081208.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.0000000000.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Jan 23 07:12"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1202131131.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1202131211.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1202151012.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1202151052.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1202201143.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1202201301.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1202221015.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1202221149.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1202270953.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1202271033.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1202291155.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1202291238.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1203051026.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1203051102.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1203071107.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1203071145.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1203120956.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1203121259.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1203140947.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1203141013.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1203190958.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1203191021.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1203210941.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1203211019.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1203261016.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1203261059.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1203281127.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1203281326.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1204021117.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1204021140.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1204041151.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1204041213.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1204091153.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1204091337.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1204110951.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1204111207.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1204160951.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1204161014.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1204180957.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1204181043.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1204231017.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1204231109.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1204250940.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1204251024.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1204251115.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1204300952.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1204301036.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1205020951.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1205071045.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1205071121.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1205091022.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1205091101.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1205140949.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1205141019.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1205161032.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1205211031.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1205211108.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1205230945.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1205231023.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1205300954.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1205301024.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1206041016.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1206041047.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1206061023.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1206061101.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1206111004.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1206111035.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1206131004.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1206131035.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1206181001.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1206181044.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1206201018.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1206201059.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1206251011.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1206251049.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1206271007.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1206271104.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1207021029.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1207021115.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1207091006.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1207091352.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1207111001.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1207111359.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1207161014.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1207161047.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1207171148.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1207171406.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1207171438.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1207181033.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1207181110.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1207231047.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1207231118.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1207251016.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1207251054.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1207301044.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1207301122.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1208061023.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1208061129.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1208081006.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1208081548.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1208081616.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1208090842.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1208091051.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1208091120.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1211161109.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1211161132.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1211161202.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1309191428.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1309191433.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1506081208.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1506081214.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1506081359.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1506081405.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1507101017.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1507101043.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1509111646.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1509111653.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1610201648.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1610201653.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1612161124.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1612161130.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1701200120.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1701200126.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1701231856.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1701231907.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1701241625.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1701241632.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1702021808.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1702021830.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1702171714.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1702171720.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1703082356.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1703090009.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1703212034.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1703212039.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1705011508.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1705011514.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1706190947.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1706190954.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1706220458.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1706220503.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1706261209.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1706261217.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1707271000.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM61.AAPLEFI4.88Z.0014.I00.1708080649.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MM71.88Z.F000.B00.1912161438.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":10837,"date":"Jan 23 07:12"},{"filename":"MP61.88Z.F000.B00.1912181758.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":10297,"date":"Jan 23 07:12"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1309251543.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1309251543.1.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1310011106.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1310021032.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1310041108.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1310071034.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1310091025.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1310091030.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1310141105.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1310161051.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1310211035.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1310231030.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1310281050.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1310301042.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1311011054.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1311020955.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1311211810.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1311222013.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1312061508.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1402141110.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1402141115.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1408281630.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1408281640.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1408291649.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1408291655.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1410131006.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1410131032.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1411050951.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1411051458.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1411131657.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1411131702.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1411141736.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1411141741.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1411201041.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1411201134.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1501071118.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1501071126.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1502131710.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1502131715.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1504291754.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1504291759.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1505141121.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1505141126.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1506050539.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1506050547.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1509081425.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1509081436.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1602221551.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1602221559.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1605171347.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1605171350.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1608231225.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1608231228.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1608261904.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1608261907.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1610051051.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1610051056.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1610201517.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1610201523.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1612151849.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1612151900.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1701131523.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1701131542.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1702021713.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1702021720.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1702171850.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1702171856.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1703090219.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1703090226.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1703231639.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1703231703.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1703281328.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1703281336.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1705011710.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1705011717.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1706200304.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1706200309.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1706221129.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1706221151.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1706261347.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1706261354.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.0017.I00.1707271003.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.0000000000.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Jan 23 07:12"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1310011106.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1310021032.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1310041108.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1310071034.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1310091025.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1310091030.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1310141105.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1310161051.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1310211035.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1310231030.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1310281050.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1310301042.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1311011054.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1311020955.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1311211810.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1311222013.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1312061508.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1402141110.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1402141115.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1408281630.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1408281640.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1408291649.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1408291655.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1410131027.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1410131032.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1411051453.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1411051458.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1411131657.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1411131702.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1411141736.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1411141741.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1411201128.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1411201134.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1501071118.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1501071126.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1502131710.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1502131715.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1504291754.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1504291759.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1505141121.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1505141126.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1506050539.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1506050547.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1509081425.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1509081436.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1602221551.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1602221559.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1610051051.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1610051056.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1610201517.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1610201523.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1612151849.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1612151900.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1701131523.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1701131542.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1702021713.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1702021720.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1702171850.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1702171856.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1703090219.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1703090226.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1703231639.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1703231703.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1703281328.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1703281336.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1705011710.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1705011717.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1706200304.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1706200309.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1706221129.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1706221151.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1706261347.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1706261354.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":"MP61.AAPLEFI5.88Z.9982.I99.1708080652.0.ealf","parent":"/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":817,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/firmwarecheckers/eficheck/localization","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/firmwarecheckers/eficheck/localization","flags":"drwxr-xr-x","links":6,"owner":"root","group":"wheel","size":192,"date":"Feb 7 23:29"},{"filename":"Contents","parent":"/usr/libexec/firmwarecheckers/eficheck/localization","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"Resources","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents","flags":"drwxr-xr-x","links":41,"owner":"root","group":"wheel","size":1312,"date":"May 3 2019"},{"filename":".","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources","flags":"drwxr-xr-x","links":41,"owner":"root","group":"wheel","size":1312,"date":"May 3 2019"},{"filename":"..","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"Dutch.lproj","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"English.lproj","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"French.lproj","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"German.lproj","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"Italian.lproj","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"Japanese.lproj","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"Spanish.lproj","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"ar.lproj","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"ca.lproj","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"cs.lproj","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"da.lproj","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"el.lproj","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"en_AU.lproj","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"en_GB.lproj","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"es_419.lproj","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"fi.lproj","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"fr_CA.lproj","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"he.lproj","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"hi.lproj","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"hr.lproj","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"hu.lproj","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"id.lproj","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"ko.lproj","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"ms.lproj","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"no.lproj","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"pl.lproj","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"pt.lproj","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"pt_PT.lproj","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"ro.lproj","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"ru.lproj","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"sk.lproj","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"sv.lproj","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"th.lproj","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"tr.lproj","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"uk.lproj","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"vi.lproj","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"zh_CN.lproj","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"zh_HK.lproj","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"zh_TW.lproj","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/Dutch.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/Dutch.lproj","flags":"drwxr-xr-x","links":41,"owner":"root","group":"wheel","size":1312,"date":"May 3 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/Dutch.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":391,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/English.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/English.lproj","flags":"drwxr-xr-x","links":41,"owner":"root","group":"wheel","size":1312,"date":"May 3 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/English.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":412,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/French.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/French.lproj","flags":"drwxr-xr-x","links":41,"owner":"root","group":"wheel","size":1312,"date":"May 3 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/French.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":513,"date":"Apr 25 2019"},{"filename":".","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/German.lproj","flags":"drwxr-xr-x","links":3,"owner":"root","group":"wheel","size":96,"date":"Apr 25 2019"},{"filename":"..","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/German.lproj","flags":"drwxr-xr-x","links":41,"owner":"root","group":"wheel","size":1312,"date":"May 3 2019"},{"filename":"Localizable.strings","parent":"/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/German.lproj","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":456,"date":"Apr 25 2019"}] jc-1.17.3/tests/fixtures/osx-10.14.6/ls-alR.json000066400000000000000000035222721415226333200206730ustar00rootroot00000000000000[{"filename": ".", "flags": "drwxr-xr-x@", "links": 9, "owner": "root", "group": "wheel", "size": 288, "date": "May 3 2019"}, {"filename": "..", "flags": "drwxr-xr-x", "links": 34, "owner": "root", "group": "wheel", "size": 1088, "date": "Feb 7 23:30"}, {"filename": "bin", "flags": "drwxr-xr-x", "links": 970, "owner": "root", "group": "wheel", "size": 31040, "date": "Feb 7 23:29"}, {"filename": "lib", "flags": "drwxr-xr-x", "links": 306, "owner": "root", "group": "wheel", "size": 9792, "date": "Feb 7 23:29"}, {"filename": "libexec", "flags": "drwxr-xr-x", "links": 249, "owner": "root", "group": "wheel", "size": 7968, "date": "Feb 7 23:29"}, {"filename": "local", "flags": "drwxr-xr-x", "links": 18, "owner": "root", "group": "wheel", "size": 576, "date": "Oct 3 08:02"}, {"filename": "sbin", "flags": "drwxr-xr-x", "links": 239, "owner": "root", "group": "wheel", "size": 7648, "date": "Feb 7 23:29"}, {"filename": "share", "flags": "drwxr-xr-x", "links": 46, "owner": "root", "group": "wheel", "size": 1472, "date": "May 4 2019"}, {"filename": "standalone", "flags": "drwxr-xr-x", "links": 5, "owner": "root", "group": "wheel", "size": 160, "date": "May 3 2019"}, {"filename": ".", "parent": "/usr/bin", "flags": "drwxr-xr-x", "links": 970, "owner": "root", "group": "wheel", "size": 31040, "date": "Feb 7 23:29"}, {"filename": "..", "parent": "/usr/bin", "flags": "drwxr-xr-x@", "links": 9, "owner": "root", "group": "wheel", "size": 288, "date": "May 3 2019"}, {"filename": "2to3-", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 4, "owner": "root", "group": "wheel", "size": 925, "date": "Feb 22 2019"}, {"filename": "2to3-2.7", "link_to": "../../System/Library/Frameworks/Python.framework/Versions/2.7/bin/2to3-2.7", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 74, "date": "May 4 2019"}, {"filename": "AssetCacheLocatorUtil", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 55152, "date": "May 3 2019"}, {"filename": "AssetCacheManagerUtil", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 53552, "date": "May 3 2019"}, {"filename": "AssetCacheTetheratorUtil", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 48112, "date": "May 3 2019"}, {"filename": "BuildStrings", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18320, "date": "Jul 16 2019"}, {"filename": "CpMac", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "DeRez", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "GetFileInfo", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18320, "date": "Jul 16 2019"}, {"filename": "IOAccelMemory", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 69760, "date": "Jan 24 01:14"}, {"filename": "MergePef", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18304, "date": "Jul 16 2019"}, {"filename": "MvMac", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "ResMerger", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18304, "date": "Jul 16 2019"}, {"filename": "Rez", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "RezDet", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "RezWack", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18304, "date": "Jul 16 2019"}, {"filename": "SafeEjectGPU", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 32384, "date": "Jan 24 01:14"}, {"filename": "SetFile", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18304, "date": "Jul 16 2019"}, {"filename": "SplitForks", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18304, "date": "Jul 16 2019"}, {"filename": "UnRezWack", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18304, "date": "Jul 16 2019"}, {"filename": "a2p", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 66608, "date": "Jul 16 2019"}, {"filename": "a2p5.18", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 234128, "date": "Jul 16 2019"}, {"filename": "actool", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "addftinfo", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 33808, "date": "May 3 2019"}, {"filename": "afclip", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 68464, "date": "Jul 16 2019"}, {"filename": "afconvert", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 120848, "date": "Jul 16 2019"}, {"filename": "afhash", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 55712, "date": "Jul 16 2019"}, {"filename": "afida", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 98416, "date": "Jul 16 2019"}, {"filename": "afinfo", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 110208, "date": "Jul 16 2019"}, {"filename": "afmtodit", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 162321, "date": "Feb 22 2019"}, {"filename": "afplay", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 65568, "date": "Jul 16 2019"}, {"filename": "afscexpand", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 37664, "date": "May 3 2019"}, {"filename": "agentxtrap", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 30096, "date": "May 3 2019"}, {"filename": "agvtool", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18304, "date": "Jul 16 2019"}, {"filename": "alias", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 15, "owner": "root", "group": "wheel", "size": 190, "date": "Feb 22 2019"}, {"filename": "applesingle", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 41248, "date": "Jul 16 2019"}, {"filename": "appletviewer", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/appletviewer", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 82, "date": "May 4 2019"}, {"filename": "apply", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18960, "date": "May 3 2019"}, {"filename": "apropos", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1808, "date": "Feb 22 2019"}, {"filename": "apt", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/apt", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 73, "date": "May 4 2019"}, {"filename": "ar", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18272, "date": "Jul 16 2019"}, {"filename": "arch", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 66880, "date": "Jan 24 01:14"}, {"filename": "as", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18272, "date": "Jul 16 2019"}, {"filename": "asa", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "asctl", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 144528, "date": "Jul 16 2019"}, {"filename": "assetutil", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 931568, "date": "Jul 16 2019"}, {"filename": "at", "parent": "/usr/bin", "flags": "-r-sr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 83680, "date": "Jan 24 01:14"}, {"filename": "atos", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 80880, "date": "Jan 24 01:14"}, {"filename": "atq", "parent": "/usr/bin", "flags": "-r-sr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 83680, "date": "Jan 24 01:14"}, {"filename": "atrm", "parent": "/usr/bin", "flags": "-r-sr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 83680, "date": "Jan 24 01:14"}, {"filename": "atsutil", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 30624, "date": "May 3 2019"}, {"filename": "automator", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 39712, "date": "May 3 2019"}, {"filename": "auval", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 125, "date": "Apr 10 2019"}, {"filename": "auvaltool", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 344976, "date": "Jul 16 2019"}, {"filename": "avbdiagnose", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 61152, "date": "Jul 16 2019"}, {"filename": "avbutil", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 59776, "date": "Jul 16 2019"}, {"filename": "avconvert", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 95232, "date": "Jul 16 2019"}, {"filename": "avmetareadwrite", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 29296, "date": "Jan 24 01:14"}, {"filename": "awk", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 112576, "date": "May 3 2019"}, {"filename": "banner", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 31088, "date": "May 3 2019"}, {"filename": "base64", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23248, "date": "May 3 2019"}, {"filename": "basename", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18304, "date": "May 3 2019"}, {"filename": "bashbug", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 6574, "date": "Feb 22 2019"}, {"filename": "batch", "parent": "/usr/bin", "flags": "-r-sr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 83680, "date": "Jan 24 01:14"}, {"filename": "bc", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 81232, "date": "May 3 2019"}, {"filename": "bg", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 15, "owner": "root", "group": "wheel", "size": 190, "date": "Feb 22 2019"}, {"filename": "biff", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18240, "date": "May 3 2019"}, {"filename": "binhex", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 45792, "date": "Jul 16 2019"}, {"filename": "binhex.pl", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 35, "owner": "root", "group": "wheel", "size": 811, "date": "Feb 22 2019"}, {"filename": "binhex5.18.pl", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 3941, "date": "Feb 22 2019"}, {"filename": "bioutil", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 120160, "date": "Jan 24 01:14"}, {"filename": "bison", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "bitesize.d", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1958, "date": "Feb 22 2019"}, {"filename": "brctl", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 193792, "date": "May 3 2019"}, {"filename": "bsdtar", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 71040, "date": "May 3 2019"}, {"filename": "bspatch", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18688, "date": "May 3 2019"}, {"filename": "btmmdiagnose", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 8708, "date": "Feb 22 2019"}, {"filename": "bunzip2", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 41312, "date": "May 3 2019"}, {"filename": "bzcat", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 41312, "date": "May 3 2019"}, {"filename": "bzcmp", "link_to": "bzdiff", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 6, "date": "May 4 2019"}, {"filename": "bzdiff", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2101, "date": "Feb 22 2019"}, {"filename": "bzegrep", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 33952, "date": "May 3 2019"}, {"filename": "bzfgrep", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 33952, "date": "May 3 2019"}, {"filename": "bzgrep", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 33952, "date": "May 3 2019"}, {"filename": "bzip2", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 41312, "date": "May 3 2019"}, {"filename": "bzip2recover", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 22848, "date": "May 3 2019"}, {"filename": "bzless", "link_to": "bzmore", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 6, "date": "May 4 2019"}, {"filename": "bzmore", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1259, "date": "Feb 22 2019"}, {"filename": "c++", "link_to": "clang++", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 7, "date": "May 4 2019"}, {"filename": "c++filt", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 439792, "date": "May 3 2019"}, {"filename": "c2ph", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 38, "owner": "root", "group": "wheel", "size": 811, "date": "Mar 28 2019"}, {"filename": "c2ph5.18", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 36642, "date": "Mar 28 2019"}, {"filename": "c89", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "c99", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "caffeinate", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24432, "date": "Jul 16 2019"}, {"filename": "cal", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 32192, "date": "May 3 2019"}, {"filename": "calendar", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 33632, "date": "May 3 2019"}, {"filename": "cancel", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23728, "date": "Jan 24 01:14"}, {"filename": "cap_mkdb", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18688, "date": "May 3 2019"}, {"filename": "captoinfo", "link_to": "tic", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 3, "date": "May 4 2019"}, {"filename": "cc", "link_to": "clang", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 5, "date": "May 4 2019"}, {"filename": "cd", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 15, "owner": "root", "group": "wheel", "size": 190, "date": "Feb 22 2019"}, {"filename": "certtool", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 91376, "date": "Jan 24 01:14"}, {"filename": "checknr", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 26912, "date": "Jan 24 01:14"}, {"filename": "chflags", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18752, "date": "May 3 2019"}, {"filename": "chfn", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 73776, "date": "Jan 24 01:14"}, {"filename": "chgrp", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23312, "date": "May 3 2019"}, {"filename": "chpass", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 73776, "date": "Jan 24 01:14"}, {"filename": "chsh", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 73776, "date": "Jan 24 01:14"}, {"filename": "cksum", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 22688, "date": "May 3 2019"}, {"filename": "clang", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "clang++", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18304, "date": "Jul 16 2019"}, {"filename": "clear", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18016, "date": "May 3 2019"}, {"filename": "cmp", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 32672, "date": "May 3 2019"}, {"filename": "cmpdylib", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18304, "date": "Jul 16 2019"}, {"filename": "codesign", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 100448, "date": "Jan 24 01:14"}, {"filename": "codesign_allocate", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18320, "date": "Jul 16 2019"}, {"filename": "col", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 22944, "date": "May 3 2019"}, {"filename": "colcrt", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18560, "date": "Jan 24 01:14"}, {"filename": "colldef", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 57536, "date": "May 3 2019"}, {"filename": "colrm", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18496, "date": "May 3 2019"}, {"filename": "column", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23440, "date": "May 3 2019"}, {"filename": "comm", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18592, "date": "May 3 2019"}, {"filename": "command", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 15, "owner": "root", "group": "wheel", "size": 190, "date": "Feb 22 2019"}, {"filename": "compress", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 27712, "date": "May 3 2019"}, {"filename": "compression_tool", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 22992, "date": "May 3 2019"}, {"filename": "config_data", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 38, "owner": "root", "group": "wheel", "size": 811, "date": "Mar 28 2019"}, {"filename": "config_data5.18", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 7265, "date": "Mar 28 2019"}, {"filename": "corebrightnessdiag", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 25072, "date": "Jan 24 01:14"}, {"filename": "corelist", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 38, "owner": "root", "group": "wheel", "size": 811, "date": "Mar 28 2019"}, {"filename": "corelist5.18", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 12790, "date": "Mar 28 2019"}, {"filename": "cpan", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 38, "owner": "root", "group": "wheel", "size": 811, "date": "Mar 28 2019"}, {"filename": "cpan2dist", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 38, "owner": "root", "group": "wheel", "size": 811, "date": "Mar 28 2019"}, {"filename": "cpan2dist5.18", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 21859, "date": "Mar 28 2019"}, {"filename": "cpan5.18", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 5895, "date": "Mar 28 2019"}, {"filename": "cpanp", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 38, "owner": "root", "group": "wheel", "size": 811, "date": "Mar 28 2019"}, {"filename": "cpanp-run-perl", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 38, "owner": "root", "group": "wheel", "size": 811, "date": "Mar 28 2019"}, {"filename": "cpanp-run-perl5.18", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 580, "date": "Mar 28 2019"}, {"filename": "cpanp5.18", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 3433, "date": "Mar 28 2019"}, {"filename": "cpio", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 42976, "date": "May 3 2019"}, {"filename": "cpp", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "cpu_profiler.d", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1402, "date": "Apr 7 2019"}, {"filename": "cpuwalk.d", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1540, "date": "Feb 22 2019"}, {"filename": "crc32", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 35, "owner": "root", "group": "wheel", "size": 811, "date": "Feb 22 2019"}, {"filename": "crc325.18", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 871, "date": "Feb 22 2019"}, {"filename": "creatbyproc.d", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 342, "date": "Feb 22 2019"}, {"filename": "crlrefresh", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 35328, "date": "Jan 24 01:14"}, {"filename": "crontab", "parent": "/usr/bin", "flags": "-rwsr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 39184, "date": "May 3 2019"}, {"filename": "csdiagnose", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 14990, "date": "Apr 3 2019"}, {"filename": "csgather", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 542320, "date": "Jul 16 2019"}, {"filename": "csplit", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24000, "date": "May 3 2019"}, {"filename": "csreq", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 37664, "date": "Jan 24 01:14"}, {"filename": "csrutil", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 29760, "date": "May 3 2019"}, {"filename": "ctags", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "ctf_insert", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18304, "date": "Jul 16 2019"}, {"filename": "cu", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "_uucp", "group": "wheel", "size": 133392, "date": "May 3 2019"}, {"filename": "cups-config", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 3041, "date": "Jan 8 15:27"}, {"filename": "cupstestdsc", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23040, "date": "Jan 24 01:14"}, {"filename": "cupstestppd", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 63360, "date": "Jan 24 01:14"}, {"filename": "curl", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 185072, "date": "May 3 2019"}, {"filename": "curl-config", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 4089, "date": "Feb 22 2019"}, {"filename": "cut", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23712, "date": "May 3 2019"}, {"filename": "cvaffinity", "link_to": "/System/Library/Filesystems/acfs.fs/Contents/bin/cvaffinity", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 59, "date": "May 4 2019"}, {"filename": "cvcp", "link_to": "/System/Library/Filesystems/acfs.fs/Contents/bin/cvcp", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 53, "date": "May 4 2019"}, {"filename": "cvmkdir", "link_to": "/System/Library/Filesystems/acfs.fs/Contents/bin/cvmkdir", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 56, "date": "May 4 2019"}, {"filename": "cvmkfile", "link_to": "/System/Library/Filesystems/acfs.fs/Contents/bin/cvmkfile", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 57, "date": "May 4 2019"}, {"filename": "dappprof", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 7163, "date": "Feb 22 2019"}, {"filename": "dapptrace", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 7878, "date": "Feb 22 2019"}, {"filename": "darwinup", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 269904, "date": "Jan 24 01:14"}, {"filename": "db_archive", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1986480, "date": "May 3 2019"}, {"filename": "db_checkpoint", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1990640, "date": "May 3 2019"}, {"filename": "db_codegen", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2015200, "date": "May 3 2019"}, {"filename": "db_deadlock", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1990640, "date": "May 3 2019"}, {"filename": "db_dump", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1994816, "date": "May 3 2019"}, {"filename": "db_hotbackup", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2003152, "date": "May 3 2019"}, {"filename": "db_load", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2015840, "date": "May 3 2019"}, {"filename": "db_printlog", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2066192, "date": "May 3 2019"}, {"filename": "db_recover", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1990736, "date": "May 3 2019"}, {"filename": "db_stat", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1994704, "date": "May 3 2019"}, {"filename": "db_upgrade", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1986480, "date": "May 3 2019"}, {"filename": "db_verify", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1990592, "date": "May 3 2019"}, {"filename": "dbicadmin", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 35, "owner": "root", "group": "wheel", "size": 811, "date": "Feb 22 2019"}, {"filename": "dbicadmin5.18", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 7195, "date": "Feb 22 2019"}, {"filename": "dbilogstrip", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 35, "owner": "root", "group": "wheel", "size": 811, "date": "Feb 22 2019"}, {"filename": "dbilogstrip5.18", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1469, "date": "Feb 22 2019"}, {"filename": "dbiprof", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 35, "owner": "root", "group": "wheel", "size": 811, "date": "Feb 22 2019"}, {"filename": "dbiprof5.18", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 6295, "date": "Feb 22 2019"}, {"filename": "dbiproxy", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 35, "owner": "root", "group": "wheel", "size": 811, "date": "Feb 22 2019"}, {"filename": "dbiproxy5.18", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 5479, "date": "Feb 22 2019"}, {"filename": "dc", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 46224, "date": "May 3 2019"}, {"filename": "debinhex.pl", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 35, "owner": "root", "group": "wheel", "size": 811, "date": "Feb 22 2019"}, {"filename": "debinhex5.18.pl", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 5882, "date": "Feb 22 2019"}, {"filename": "defaults", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 40000, "date": "Jan 24 01:14"}, {"filename": "delv", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1880000, "date": "May 3 2019"}, {"filename": "desdp", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "diagnose-fu", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2391, "date": "Apr 15 2019"}, {"filename": "diff", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 105616, "date": "May 3 2019"}, {"filename": "diff3", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 37136, "date": "May 3 2019"}, {"filename": "diffstat", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 41072, "date": "May 3 2019"}, {"filename": "dig", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1881440, "date": "May 3 2019"}, {"filename": "dirname", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18128, "date": "May 3 2019"}, {"filename": "dispqlen.d", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1290, "date": "Feb 22 2019"}, {"filename": "ditto", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 34528, "date": "May 3 2019"}, {"filename": "dmc", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 28864, "date": "May 3 2019"}, {"filename": "dns-sd", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 60896, "date": "Jan 24 01:14"}, {"filename": "drutil", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 272128, "date": "May 3 2019"}, {"filename": "dscacheutil", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 34144, "date": "May 3 2019"}, {"filename": "dscl", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 194304, "date": "May 3 2019"}, {"filename": "dserr", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18016, "date": "May 3 2019"}, {"filename": "dsexport", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 33280, "date": "May 3 2019"}, {"filename": "dsimport", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 83872, "date": "May 3 2019"}, {"filename": "dsmemberutil", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23648, "date": "May 3 2019"}, {"filename": "dsymutil", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18304, "date": "Jul 16 2019"}, {"filename": "dtruss", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 30607, "date": "Feb 22 2019"}, {"filename": "du", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23600, "date": "May 3 2019"}, {"filename": "dwarfdump", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18304, "date": "Jul 16 2019"}, {"filename": "easy_install", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 2, "owner": "root", "group": "wheel", "size": 925, "date": "Feb 22 2019"}, {"filename": "easy_install-2.7", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 458, "date": "Feb 22 2019"}, {"filename": "egrep", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 33952, "date": "May 3 2019"}, {"filename": "emacs", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 117164432, "date": "May 3 2019"}, {"filename": "emacs-undumped", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 3173856, "date": "May 3 2019"}, {"filename": "emacsclient", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 32960, "date": "May 3 2019"}, {"filename": "enc2xs", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 38, "owner": "root", "group": "wheel", "size": 811, "date": "Mar 28 2019"}, {"filename": "enc2xs5.18", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 39189, "date": "Mar 28 2019"}, {"filename": "encode_keychange", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 28800, "date": "May 3 2019"}, {"filename": "env", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23504, "date": "May 3 2019"}, {"filename": "eqn", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 140976, "date": "May 3 2019"}, {"filename": "erb", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 4892, "date": "Feb 22 2019"}, {"filename": "errinfo", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 4516, "date": "Feb 22 2019"}, {"filename": "etags", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 107376, "date": "May 3 2019"}, {"filename": "ex", "link_to": "vim", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 3, "date": "May 4 2019"}, {"filename": "execsnoop", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 5115, "date": "Feb 22 2019"}, {"filename": "expand", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18576, "date": "May 3 2019"}, {"filename": "expect", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 51648, "date": "May 3 2019"}, {"filename": "extcheck", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/extcheck", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 78, "date": "May 4 2019"}, {"filename": "eyapp", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 35, "owner": "root", "group": "wheel", "size": 811, "date": "Feb 22 2019"}, {"filename": "eyapp5.18", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 12841, "date": "Feb 22 2019"}, {"filename": "false", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 17808, "date": "May 3 2019"}, {"filename": "fc", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 15, "owner": "root", "group": "wheel", "size": 190, "date": "Feb 22 2019"}, {"filename": "fddist", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2668, "date": "Feb 22 2019"}, {"filename": "fdesetup", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 280032, "date": "Jan 24 01:14"}, {"filename": "fg", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 15, "owner": "root", "group": "wheel", "size": 190, "date": "Feb 22 2019"}, {"filename": "fgrep", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 33952, "date": "May 3 2019"}, {"filename": "file", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 258912, "date": "Jul 16 2019"}, {"filename": "filebyproc.d", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 272, "date": "Feb 22 2019"}, {"filename": "filtercalltree", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 150576, "date": "Jan 24 01:14"}, {"filename": "find", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 51808, "date": "May 3 2019"}, {"filename": "find2perl", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 38, "owner": "root", "group": "wheel", "size": 811, "date": "Mar 28 2019"}, {"filename": "find2perl5.18", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23634, "date": "Mar 28 2019"}, {"filename": "findrule", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 35, "owner": "root", "group": "wheel", "size": 811, "date": "Feb 22 2019"}, {"filename": "findrule5.18", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 3418, "date": "Feb 22 2019"}, {"filename": "finger", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 33968, "date": "May 3 2019"}, {"filename": "fixproc", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 15523, "date": "Feb 22 2019"}, {"filename": "flex", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "flex++", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "fmt", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23216, "date": "May 3 2019"}, {"filename": "fold", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18800, "date": "May 3 2019"}, {"filename": "fontrestore", "link_to": "../../System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Support/fontmover", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 126, "date": "May 4 2019"}, {"filename": "footprint", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 157776, "date": "Jul 16 2019"}, {"filename": "format-sql", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 35, "owner": "root", "group": "wheel", "size": 811, "date": "Feb 22 2019"}, {"filename": "format-sql5.18", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 448, "date": "Feb 22 2019"}, {"filename": "from", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18768, "date": "May 3 2019"}, {"filename": "fs_usage", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 60368, "date": "Jan 24 01:14"}, {"filename": "funzip", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 35440, "date": "May 3 2019"}, {"filename": "fuser", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2610, "date": "Feb 22 2019"}, {"filename": "fwkdp", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 33936, "date": "May 3 2019"}, {"filename": "fwkpfv", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 42352, "date": "May 3 2019"}, {"filename": "g++", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "gatherheaderdoc", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18320, "date": "Jul 16 2019"}, {"filename": "gcc", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "gcore", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 164752, "date": "Jan 24 01:14"}, {"filename": "gcov", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "gdiffmk", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 7198, "date": "Feb 22 2019"}, {"filename": "gem", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 596, "date": "Feb 22 2019"}, {"filename": "gen_bridge_metadata", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 78936, "date": "Feb 22 2019"}, {"filename": "gencat", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 27488, "date": "May 3 2019"}, {"filename": "genstrings", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18304, "date": "Jul 16 2019"}, {"filename": "getconf", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 63824, "date": "Jan 24 01:14"}, {"filename": "getopt", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18000, "date": "May 3 2019"}, {"filename": "getopts", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 15, "owner": "root", "group": "wheel", "size": 190, "date": "Feb 22 2019"}, {"filename": "git", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "git-cvsserver", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18320, "date": "Jul 16 2019"}, {"filename": "git-receive-pack", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18320, "date": "Jul 16 2019"}, {"filename": "git-shell", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18304, "date": "Jul 16 2019"}, {"filename": "git-upload-archive", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18320, "date": "Jul 16 2019"}, {"filename": "git-upload-pack", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18320, "date": "Jul 16 2019"}, {"filename": "gm4", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "gnumake", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18304, "date": "Jul 16 2019"}, {"filename": "gperf", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "grep", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 33952, "date": "May 3 2019"}, {"filename": "grn", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 64048, "date": "May 3 2019"}, {"filename": "grodvi", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 83296, "date": "May 3 2019"}, {"filename": "groff", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 68272, "date": "May 3 2019"}, {"filename": "groffer", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 7074, "date": "Feb 22 2019"}, {"filename": "grog", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2471, "date": "Feb 22 2019"}, {"filename": "grolbp", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 86928, "date": "May 3 2019"}, {"filename": "grolj4", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 82848, "date": "May 3 2019"}, {"filename": "grops", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 116800, "date": "May 3 2019"}, {"filename": "grotty", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 83024, "date": "May 3 2019"}, {"filename": "groups", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23264, "date": "May 3 2019"}, {"filename": "gunzip", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 53280, "date": "May 3 2019"}, {"filename": "gzcat", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 53280, "date": "May 3 2019"}, {"filename": "gzexe", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 4085, "date": "Feb 22 2019"}, {"filename": "gzip", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 47120, "date": "May 3 2019"}, {"filename": "h2ph", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 38, "owner": "root", "group": "wheel", "size": 811, "date": "Mar 28 2019"}, {"filename": "h2ph5.18", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 28167, "date": "Mar 28 2019"}, {"filename": "h2xs", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 38, "owner": "root", "group": "wheel", "size": 811, "date": "Mar 28 2019"}, {"filename": "h2xs5.18", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 60725, "date": "Mar 28 2019"}, {"filename": "hash", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 15, "owner": "root", "group": "wheel", "size": 190, "date": "Feb 22 2019"}, {"filename": "hdid", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 17936, "date": "Jan 24 01:14"}, {"filename": "hdiutil", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 349536, "date": "Jan 24 01:14"}, {"filename": "hdxml2manxml", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18320, "date": "Jul 16 2019"}, {"filename": "head", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18928, "date": "May 3 2019"}, {"filename": "headerdoc2html", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18320, "date": "Jul 16 2019"}, {"filename": "heap", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 97536, "date": "Jan 24 01:14"}, {"filename": "heap32", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 108304, "date": "Jan 24 01:14"}, {"filename": "hexdump", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 32848, "date": "May 3 2019"}, {"filename": "hidutil", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 38944, "date": "Jan 24 01:14"}, {"filename": "hiutil", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 105520, "date": "May 3 2019"}, {"filename": "host", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1868944, "date": "May 3 2019"}, {"filename": "hostinfo", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 43136, "date": "Jan 24 01:14"}, {"filename": "hotspot.d", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1939, "date": "Feb 22 2019"}, {"filename": "hpftodit", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 122640, "date": "May 3 2019"}, {"filename": "hpmdiagnose", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 96528, "date": "Jan 24 01:14"}, {"filename": "htmltree", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 35, "owner": "root", "group": "wheel", "size": 811, "date": "Feb 22 2019"}, {"filename": "htmltree5.18", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1177, "date": "Feb 22 2019"}, {"filename": "ibtool", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "iconutil", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 27968, "date": "May 3 2019"}, {"filename": "iconv", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 32192, "date": "May 3 2019"}, {"filename": "ictool", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "id", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23264, "date": "May 3 2019"}, {"filename": "idle", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 4, "owner": "root", "group": "wheel", "size": 925, "date": "Feb 22 2019"}, {"filename": "idle2.7", "link_to": "../../System/Library/Frameworks/Python.framework/Versions/2.7/bin/idle2.7", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 73, "date": "May 4 2019"}, {"filename": "idlj", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/idlj", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 74, "date": "May 4 2019"}, {"filename": "imptrace", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 8556, "date": "Apr 25 2019"}, {"filename": "indent", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "indxbib", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 44400, "date": "May 3 2019"}, {"filename": "info", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 175136, "date": "May 3 2019"}, {"filename": "infocmp", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 54624, "date": "May 3 2019"}, {"filename": "infokey", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 55376, "date": "May 3 2019"}, {"filename": "infotocap", "link_to": "tic", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 3, "date": "May 4 2019"}, {"filename": "install", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 28576, "date": "May 3 2019"}, {"filename": "install-info", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 60032, "date": "May 3 2019"}, {"filename": "install_name_tool", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18320, "date": "Jul 16 2019"}, {"filename": "instmodsh", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 38, "owner": "root", "group": "wheel", "size": 811, "date": "Mar 28 2019"}, {"filename": "instmodsh5.18", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 4288, "date": "Mar 28 2019"}, {"filename": "instruments", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18320, "date": "Jul 16 2019"}, {"filename": "iofile.d", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1976, "date": "Feb 22 2019"}, {"filename": "iofileb.d", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1573, "date": "Feb 22 2019"}, {"filename": "iopattern", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 6604, "date": "Feb 22 2019"}, {"filename": "iopending", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 5946, "date": "Feb 22 2019"}, {"filename": "iosnoop", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 12137, "date": "Feb 22 2019"}, {"filename": "iotop", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 11884, "date": "Feb 22 2019"}, {"filename": "ip2cc", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 35, "owner": "root", "group": "wheel", "size": 811, "date": "Feb 22 2019"}, {"filename": "ip2cc5.18", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2116, "date": "Feb 22 2019"}, {"filename": "ipcount", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 35, "owner": "root", "group": "wheel", "size": 811, "date": "Feb 22 2019"}, {"filename": "ipcount5.18", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 3728, "date": "Feb 22 2019"}, {"filename": "ipcrm", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18576, "date": "May 3 2019"}, {"filename": "ipcs", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 26880, "date": "May 3 2019"}, {"filename": "ippfind", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 47216, "date": "Jan 24 01:14"}, {"filename": "ipptool", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 92016, "date": "Jan 24 01:14"}, {"filename": "iprofiler", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18304, "date": "Jul 16 2019"}, {"filename": "iptab", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 35, "owner": "root", "group": "wheel", "size": 811, "date": "Feb 22 2019"}, {"filename": "iptab5.18", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 986, "date": "Feb 22 2019"}, {"filename": "irb", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 240, "date": "Feb 22 2019"}, {"filename": "jar", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jar", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 73, "date": "May 4 2019"}, {"filename": "jarsigner", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jarsigner", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 79, "date": "May 4 2019"}, {"filename": "java", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/java", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 74, "date": "May 4 2019"}, {"filename": "javac", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/javac", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 75, "date": "May 4 2019"}, {"filename": "javadoc", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/javadoc", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 77, "date": "May 4 2019"}, {"filename": "javah", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/javah", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 75, "date": "May 4 2019"}, {"filename": "javap", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/javap", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 75, "date": "May 4 2019"}, {"filename": "javapackager", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/javapackager", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 82, "date": "May 4 2019"}, {"filename": "javaws", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/javaws", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 76, "date": "May 4 2019"}, {"filename": "jcmd", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jcmd", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 74, "date": "May 4 2019"}, {"filename": "jconsole", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jconsole", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 78, "date": "May 4 2019"}, {"filename": "jcontrol", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jcontrol", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 78, "date": "May 4 2019"}, {"filename": "jdb", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jdb", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 73, "date": "May 4 2019"}, {"filename": "jdeps", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jdeps", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 75, "date": "May 4 2019"}, {"filename": "jhat", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jhat", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 74, "date": "May 4 2019"}, {"filename": "jhsdb", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jhsdb", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 75, "date": "May 4 2019"}, {"filename": "jimage", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jimage", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 76, "date": "May 4 2019"}, {"filename": "jinfo", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jinfo", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 75, "date": "May 4 2019"}, {"filename": "jjs", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jjs", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 73, "date": "May 4 2019"}, {"filename": "jmap", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jmap", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 74, "date": "May 4 2019"}, {"filename": "jmc", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jmc", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 73, "date": "May 4 2019"}, {"filename": "jobs", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 15, "owner": "root", "group": "wheel", "size": 190, "date": "Feb 22 2019"}, {"filename": "join", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23504, "date": "May 3 2019"}, {"filename": "jot", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23088, "date": "May 3 2019"}, {"filename": "jps", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jps", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 73, "date": "May 4 2019"}, {"filename": "jrunscript", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jrunscript", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 80, "date": "May 4 2019"}, {"filename": "jsadebugd", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jsadebugd", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 79, "date": "May 4 2019"}, {"filename": "jshell", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jshell", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 76, "date": "May 4 2019"}, {"filename": "json_pp", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 38, "owner": "root", "group": "wheel", "size": 811, "date": "Mar 28 2019"}, {"filename": "json_pp5.18", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 3953, "date": "Mar 28 2019"}, {"filename": "jstack", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jstack", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 76, "date": "May 4 2019"}, {"filename": "jstat", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jstat", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 75, "date": "May 4 2019"}, {"filename": "jstatd", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jstatd", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 76, "date": "May 4 2019"}, {"filename": "jvisualvm", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jvisualvm", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 79, "date": "May 4 2019"}, {"filename": "kcc", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 51392, "date": "Jul 16 2019"}, {"filename": "kdestroy", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 29024, "date": "Jul 16 2019"}, {"filename": "kextutil", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 200656, "date": "Jan 24 01:14"}, {"filename": "keytool", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/keytool", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 77, "date": "May 4 2019"}, {"filename": "kgetcred", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 29968, "date": "Jul 16 2019"}, {"filename": "kill.d", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1621, "date": "Feb 22 2019"}, {"filename": "killall", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23984, "date": "May 3 2019"}, {"filename": "kinit", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 44224, "date": "Jul 16 2019"}, {"filename": "klist", "link_to": "kcc", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 3, "date": "May 4 2019"}, {"filename": "kpasswd", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 30176, "date": "Jul 16 2019"}, {"filename": "krb5-config", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 3252, "date": "Feb 22 2019"}, {"filename": "kswitch", "link_to": "kcc", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 3, "date": "May 4 2019"}, {"filename": "ktrace", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 73616, "date": "Jul 16 2019"}, {"filename": "lam", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18624, "date": "May 3 2019"}, {"filename": "last", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23392, "date": "May 3 2019"}, {"filename": "lastcomm", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18928, "date": "May 3 2019"}, {"filename": "lastwords", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2297, "date": "Feb 22 2019"}, {"filename": "latency", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 102768, "date": "Jan 24 01:14"}, {"filename": "layerutil", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 853232, "date": "Jul 16 2019"}, {"filename": "ld", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18272, "date": "Jul 16 2019"}, {"filename": "ldapadd", "link_to": "ldapmodify", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 10, "date": "May 4 2019"}, {"filename": "ldapcompare", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 301376, "date": "Jan 24 01:14"}, {"filename": "ldapdelete", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 305408, "date": "Jan 24 01:14"}, {"filename": "ldapexop", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 305488, "date": "Jan 24 01:14"}, {"filename": "ldapmodify", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 314000, "date": "Jan 24 01:14"}, {"filename": "ldapmodrdn", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 301312, "date": "Jan 24 01:14"}, {"filename": "ldappasswd", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 301216, "date": "Jan 24 01:14"}, {"filename": "ldapsearch", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 329808, "date": "Jan 24 01:14"}, {"filename": "ldapurl", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 251840, "date": "Jan 24 01:14"}, {"filename": "ldapwhoami", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 301312, "date": "Jan 24 01:14"}, {"filename": "leaks", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 163424, "date": "Jan 24 01:14"}, {"filename": "leaks32", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 194736, "date": "Jan 24 01:14"}, {"filename": "leave", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18416, "date": "May 3 2019"}, {"filename": "less", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 133856, "date": "May 3 2019"}, {"filename": "lessecho", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18320, "date": "May 3 2019"}, {"filename": "lex", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "libnetcfg", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 38, "owner": "root", "group": "wheel", "size": 811, "date": "Mar 28 2019"}, {"filename": "libnetcfg5.18", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 15754, "date": "Mar 28 2019"}, {"filename": "libtool", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18304, "date": "Jul 16 2019"}, {"filename": "lipo", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "lkbib", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 50560, "date": "May 3 2019"}, {"filename": "lldb", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "llvm-g++", "link_to": "clang++", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 7, "date": "May 4 2019"}, {"filename": "llvm-gcc", "link_to": "clang", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 5, "date": "May 4 2019"}, {"filename": "loads.d", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1936, "date": "Feb 22 2019"}, {"filename": "locale", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 60240, "date": "May 3 2019"}, {"filename": "localedef", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 30650, "date": "Feb 22 2019"}, {"filename": "locate", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23424, "date": "May 3 2019"}, {"filename": "lockstat", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 57760, "date": "May 3 2019"}, {"filename": "log", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 267632, "date": "Jan 24 01:14"}, {"filename": "logger", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18848, "date": "May 3 2019"}, {"filename": "login", "parent": "/usr/bin", "flags": "-r-sr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 76288, "date": "Jan 24 01:14"}, {"filename": "logname", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18176, "date": "May 3 2019"}, {"filename": "look", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18816, "date": "May 3 2019"}, {"filename": "lookbib", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 50816, "date": "May 3 2019"}, {"filename": "lorder", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "lp", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 28368, "date": "Jan 24 01:14"}, {"filename": "lpoptions", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24224, "date": "Jan 24 01:14"}, {"filename": "lpq", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24208, "date": "Jan 24 01:14"}, {"filename": "lpr", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23856, "date": "Jan 24 01:14"}, {"filename": "lprm", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18592, "date": "Jan 24 01:14"}, {"filename": "lpstat", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 37184, "date": "Jan 24 01:14"}, {"filename": "lsappinfo", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 230944, "date": "Jul 16 2019"}, {"filename": "lsbom", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 29216, "date": "May 3 2019"}, {"filename": "lskq", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 68704, "date": "Jan 24 01:14"}, {"filename": "lsm", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 52560, "date": "May 3 2019"}, {"filename": "lsmp", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 98912, "date": "Jan 24 01:14"}, {"filename": "lsvfs", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18336, "date": "May 3 2019"}, {"filename": "lwp-download", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 35, "owner": "root", "group": "wheel", "size": 811, "date": "Feb 22 2019"}, {"filename": "lwp-download5.18", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 8639, "date": "Feb 22 2019"}, {"filename": "lwp-dump", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 35, "owner": "root", "group": "wheel", "size": 811, "date": "Feb 22 2019"}, {"filename": "lwp-dump5.18", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2802, "date": "Feb 22 2019"}, {"filename": "lwp-mirror", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 35, "owner": "root", "group": "wheel", "size": 811, "date": "Feb 22 2019"}, {"filename": "lwp-mirror5.18", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2482, "date": "Feb 22 2019"}, {"filename": "lwp-request", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 35, "owner": "root", "group": "wheel", "size": 811, "date": "Feb 22 2019"}, {"filename": "lwp-request5.18", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 15063, "date": "Feb 22 2019"}, {"filename": "m4", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18272, "date": "Jul 16 2019"}, {"filename": "macbinary", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 42048, "date": "Jul 16 2019"}, {"filename": "macerror", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 35, "owner": "root", "group": "wheel", "size": 811, "date": "Feb 22 2019"}, {"filename": "macerror5.18", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 728, "date": "Feb 22 2019"}, {"filename": "machine", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 66880, "date": "Jan 24 01:14"}, {"filename": "mail", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 85776, "date": "May 3 2019"}, {"filename": "mailq", "link_to": "../sbin/sendmail", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 16, "date": "May 4 2019"}, {"filename": "mailx", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 85776, "date": "May 3 2019"}, {"filename": "make", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "makeinfo", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 239056, "date": "May 3 2019"}, {"filename": "malloc_history", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 113040, "date": "Jan 24 01:14"}, {"filename": "malloc_history32", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 128768, "date": "Jan 24 01:14"}, {"filename": "man", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 70192, "date": "May 3 2019"}, {"filename": "manpath", "link_to": "man", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 3, "date": "May 4 2019"}, {"filename": "mcxquery", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 88096, "date": "Jan 24 01:14"}, {"filename": "mcxrefresh", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23392, "date": "Jan 24 01:14"}, {"filename": "mddiagnose", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 148192, "date": "Jan 24 01:14"}, {"filename": "mdfind", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 29280, "date": "Jan 24 01:14"}, {"filename": "mdimport", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 270544, "date": "Jan 24 01:14"}, {"filename": "mdls", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24048, "date": "Jan 24 01:14"}, {"filename": "mdutil", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 113136, "date": "Jan 24 01:14"}, {"filename": "memory_pressure", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 72736, "date": "Jan 24 01:14"}, {"filename": "mesg", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18224, "date": "May 3 2019"}, {"filename": "mib2c", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 43760, "date": "Feb 22 2019"}, {"filename": "mib2c-update", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 8780, "date": "Feb 22 2019"}, {"filename": "mig", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "mkbom", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 19904, "date": "May 3 2019"}, {"filename": "mkdep", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "mkfifo", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18416, "date": "May 3 2019"}, {"filename": "mklocale", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 40336, "date": "May 3 2019"}, {"filename": "mktemp", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18800, "date": "May 3 2019"}, {"filename": "mmroff", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2975, "date": "Feb 22 2019"}, {"filename": "mnthome", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 28720, "date": "May 3 2019"}, {"filename": "moo-outdated", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 35, "owner": "root", "group": "wheel", "size": 811, "date": "Feb 22 2019"}, {"filename": "moo-outdated5.18", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 448, "date": "Feb 22 2019"}, {"filename": "moose-outdated", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 35, "owner": "root", "group": "wheel", "size": 811, "date": "Feb 22 2019"}, {"filename": "moose-outdated5.18", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 455, "date": "Feb 22 2019"}, {"filename": "more", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 133856, "date": "May 3 2019"}, {"filename": "mp2bug", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1271, "date": "Feb 22 2019"}, {"filename": "msgs", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 29504, "date": "May 3 2019"}, {"filename": "nano", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 141312, "date": "May 3 2019"}, {"filename": "nasm", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "native2ascii", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/native2ascii", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 82, "date": "May 4 2019"}, {"filename": "nbdst", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 25936, "date": "Jan 24 01:14"}, {"filename": "nc", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 46896, "date": "May 3 2019"}, {"filename": "ncal", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 32192, "date": "May 3 2019"}, {"filename": "ncctl", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23920, "date": "May 3 2019"}, {"filename": "ncdestroy", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23920, "date": "May 3 2019"}, {"filename": "ncinit", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23920, "date": "May 3 2019"}, {"filename": "nclist", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23920, "date": "May 3 2019"}, {"filename": "ncurses5.4-config", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 4977, "date": "Feb 22 2019"}, {"filename": "ndisasm", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18304, "date": "Jul 16 2019"}, {"filename": "neqn", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 271, "date": "Feb 22 2019"}, {"filename": "net-server", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 35, "owner": "root", "group": "wheel", "size": 811, "date": "Feb 22 2019"}, {"filename": "net-server5.18", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 3429, "date": "Feb 22 2019"}, {"filename": "net-snmp-cert", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 78699, "date": "Feb 22 2019"}, {"filename": "net-snmp-config", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 25498, "date": "Feb 22 2019"}, {"filename": "net-snmp-create-v3-user", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 3651, "date": "Feb 22 2019"}, {"filename": "nettop", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 71712, "date": "May 3 2019"}, {"filename": "newaliases", "link_to": "../sbin/sendmail", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 16, "date": "May 4 2019"}, {"filename": "newgrp", "parent": "/usr/bin", "flags": "-r-sr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 52512, "date": "Jan 24 01:14"}, {"filename": "newproc.d", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 4376, "date": "Feb 22 2019"}, {"filename": "nfsstat", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 45264, "date": "May 3 2019"}, {"filename": "nice", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18416, "date": "May 3 2019"}, {"filename": "nl", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23552, "date": "May 3 2019"}, {"filename": "nm", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18272, "date": "Jul 16 2019"}, {"filename": "nmedit", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "nohup", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18640, "date": "May 3 2019"}, {"filename": "notifyutil", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 29312, "date": "May 3 2019"}, {"filename": "nroff", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2357, "date": "Feb 22 2019"}, {"filename": "nscurl", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 105936, "date": "Jan 24 01:14"}, {"filename": "nslookup", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1873120, "date": "May 3 2019"}, {"filename": "nsupdate", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1855232, "date": "May 3 2019"}, {"filename": "objdump", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18304, "date": "Jul 16 2019"}, {"filename": "ocspcheck", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 38976, "date": "Jul 16 2019"}, {"filename": "od", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 32848, "date": "May 3 2019"}, {"filename": "odutil", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 61952, "date": "May 3 2019"}, {"filename": "open", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 105952, "date": "May 3 2019"}, {"filename": "opendiff", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18304, "date": "Jul 16 2019"}, {"filename": "opensnoop", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 8038, "date": "Feb 22 2019"}, {"filename": "openssl", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 488624, "date": "Jul 16 2019"}, {"filename": "orbd", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/orbd", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 74, "date": "May 4 2019"}, {"filename": "osacompile", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 42128, "date": "May 3 2019"}, {"filename": "osadecompile", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 19968, "date": "May 3 2019"}, {"filename": "osalang", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18592, "date": "May 3 2019"}, {"filename": "osascript", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 43232, "date": "May 3 2019"}, {"filename": "otool", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "pack200", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/pack200", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 77, "date": "May 4 2019"}, {"filename": "package-stash-conflicts", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 35, "owner": "root", "group": "wheel", "size": 811, "date": "Feb 22 2019"}, {"filename": "package-stash-conflicts5.18", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 844, "date": "Feb 22 2019"}, {"filename": "pagesize", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2006, "date": "Apr 25 2019"}, {"filename": "pagestuff", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18304, "date": "Jul 16 2019"}, {"filename": "par.pl", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 35, "owner": "root", "group": "wheel", "size": 811, "date": "Feb 22 2019"}, {"filename": "par5.18.pl", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 29555, "date": "Feb 22 2019"}, {"filename": "parl", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 66608, "date": "May 3 2019"}, {"filename": "parl5.18", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 5341072, "date": "May 3 2019"}, {"filename": "parldyn", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 66608, "date": "May 3 2019"}, {"filename": "parldyn5.18", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 124848, "date": "May 3 2019"}, {"filename": "passwd", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 68656, "date": "Jan 24 01:14"}, {"filename": "paste", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18592, "date": "May 3 2019"}, {"filename": "patch", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 95136, "date": "May 3 2019"}, {"filename": "pathchk", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18512, "date": "May 3 2019"}, {"filename": "pathopens.d", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2378, "date": "Feb 22 2019"}, {"filename": "pbcopy", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23584, "date": "May 3 2019"}, {"filename": "pbpaste", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23584, "date": "May 3 2019"}, {"filename": "pcap-config", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1622, "date": "Feb 22 2019"}, {"filename": "pcsctest", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 43328, "date": "Jul 16 2019"}, {"filename": "perl", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 66608, "date": "Jul 16 2019"}, {"filename": "perl5.18", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 52864, "date": "Jul 16 2019"}, {"filename": "perlbug", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 38, "owner": "root", "group": "wheel", "size": 811, "date": "Mar 28 2019"}, {"filename": "perlbug5.18", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 41944, "date": "Apr 1 2019"}, {"filename": "perldoc", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 38, "owner": "root", "group": "wheel", "size": 811, "date": "Mar 28 2019"}, {"filename": "perldoc5.18", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 259, "date": "Mar 28 2019"}, {"filename": "perlivp", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 38, "owner": "root", "group": "wheel", "size": 811, "date": "Mar 28 2019"}, {"filename": "perlivp5.18", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 10807, "date": "Apr 1 2019"}, {"filename": "perlthanks", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 38, "owner": "root", "group": "wheel", "size": 811, "date": "Mar 28 2019"}, {"filename": "perlthanks5.18", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 41944, "date": "Apr 1 2019"}, {"filename": "pfbtops", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 22912, "date": "May 3 2019"}, {"filename": "pgrep", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 30512, "date": "May 3 2019"}, {"filename": "phar", "link_to": "phar.phar", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 9, "date": "May 4 2019"}, {"filename": "phar.phar", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 14811, "date": "Jan 6 22:21"}, {"filename": "php", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 11244288, "date": "Jan 24 01:14"}, {"filename": "php-config", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 6438, "date": "Jan 6 22:22"}, {"filename": "phpize", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 4520, "date": "Jan 6 22:21"}, {"filename": "pic", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 213312, "date": "May 3 2019"}, {"filename": "pico", "link_to": "nano", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 4, "date": "May 4 2019"}, {"filename": "piconv", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 38, "owner": "root", "group": "wheel", "size": 811, "date": "Mar 28 2019"}, {"filename": "piconv5.18", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 7372, "date": "Mar 28 2019"}, {"filename": "pidpersec.d", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1295, "date": "Feb 22 2019"}, {"filename": "pkgbuild", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 82784, "date": "Jan 24 01:14"}, {"filename": "pkill", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 30512, "date": "May 3 2019"}, {"filename": "pl", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 22912, "date": "Jan 24 01:14"}, {"filename": "pl2pm", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 38, "owner": "root", "group": "wheel", "size": 811, "date": "Mar 28 2019"}, {"filename": "pl2pm5.18", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 4566, "date": "Mar 28 2019"}, {"filename": "plockstat", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 33536, "date": "May 3 2019"}, {"filename": "pluginkit", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 196032, "date": "Jan 24 01:14"}, {"filename": "plutil", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 45664, "date": "Jan 24 01:14"}, {"filename": "pmset", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 173536, "date": "Jul 16 2019"}, {"filename": "pod2html", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 38, "owner": "root", "group": "wheel", "size": 811, "date": "Mar 28 2019"}, {"filename": "pod2html5.18", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2073, "date": "Mar 28 2019"}, {"filename": "pod2latex", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 38, "owner": "root", "group": "wheel", "size": 811, "date": "Mar 28 2019"}, {"filename": "pod2latex5.18", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 10374, "date": "Mar 28 2019"}, {"filename": "pod2man", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 38, "owner": "root", "group": "wheel", "size": 811, "date": "Mar 28 2019"}, {"filename": "pod2man5.18", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 13700, "date": "Mar 28 2019"}, {"filename": "pod2readme", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 35, "owner": "root", "group": "wheel", "size": 811, "date": "Feb 22 2019"}, {"filename": "pod2readme5.18", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1603, "date": "Feb 22 2019"}, {"filename": "pod2text", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 38, "owner": "root", "group": "wheel", "size": 811, "date": "Mar 28 2019"}, {"filename": "pod2text5.18", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 11123, "date": "Mar 28 2019"}, {"filename": "pod2usage", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 38, "owner": "root", "group": "wheel", "size": 811, "date": "Mar 28 2019"}, {"filename": "pod2usage5.18", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 3790, "date": "Mar 28 2019"}, {"filename": "podchecker", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 38, "owner": "root", "group": "wheel", "size": 811, "date": "Mar 28 2019"}, {"filename": "podchecker5.18", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 3819, "date": "Mar 28 2019"}, {"filename": "podselect", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 38, "owner": "root", "group": "wheel", "size": 811, "date": "Mar 28 2019"}, {"filename": "podselect5.18", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2647, "date": "Mar 28 2019"}, {"filename": "policytool", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/policytool", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 80, "date": "May 4 2019"}, {"filename": "post-grohtml", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 147568, "date": "May 3 2019"}, {"filename": "power_report.sh", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 951, "date": "Apr 7 2019"}, {"filename": "powermetrics", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 157536, "date": "Jan 24 01:14"}, {"filename": "pp", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 35, "owner": "root", "group": "wheel", "size": 811, "date": "Feb 22 2019"}, {"filename": "pp5.18", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 152, "date": "Feb 22 2019"}, {"filename": "ppdc", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 25344, "date": "Jan 24 01:14"}, {"filename": "ppdhtml", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23680, "date": "Jan 24 01:14"}, {"filename": "ppdi", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18816, "date": "Jan 24 01:14"}, {"filename": "ppdmerge", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24304, "date": "Jan 24 01:14"}, {"filename": "ppdpo", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23824, "date": "Jan 24 01:14"}, {"filename": "pr", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 32224, "date": "May 3 2019"}, {"filename": "pre-grohtml", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 73952, "date": "May 3 2019"}, {"filename": "priclass.d", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1839, "date": "Feb 22 2019"}, {"filename": "pridist.d", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1836, "date": "Feb 22 2019"}, {"filename": "printenv", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18160, "date": "May 3 2019"}, {"filename": "printf", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23232, "date": "May 3 2019"}, {"filename": "procsystime", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 6348, "date": "Feb 22 2019"}, {"filename": "productbuild", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 122672, "date": "Jan 24 01:14"}, {"filename": "productsign", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 34416, "date": "Jan 24 01:14"}, {"filename": "profiles", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 158416, "date": "Jan 24 01:14"}, {"filename": "prove", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 38, "owner": "root", "group": "wheel", "size": 811, "date": "Mar 28 2019"}, {"filename": "prove5.18", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 11120, "date": "Mar 28 2019"}, {"filename": "psed", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 38, "owner": "root", "group": "wheel", "size": 811, "date": "Mar 28 2019"}, {"filename": "psed5.18", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 53364, "date": "Mar 28 2019"}, {"filename": "pstopdf", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23968, "date": "May 3 2019"}, {"filename": "pstruct", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 38, "owner": "root", "group": "wheel", "size": 811, "date": "Mar 28 2019"}, {"filename": "pstruct5.18", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 36642, "date": "Mar 28 2019"}, {"filename": "ptar", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 38, "owner": "root", "group": "wheel", "size": 811, "date": "Mar 28 2019"}, {"filename": "ptar5.18", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 3559, "date": "Mar 28 2019"}, {"filename": "ptardiff", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 38, "owner": "root", "group": "wheel", "size": 811, "date": "Mar 28 2019"}, {"filename": "ptardiff5.18", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2507, "date": "Mar 28 2019"}, {"filename": "ptargrep", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 38, "owner": "root", "group": "wheel", "size": 811, "date": "Mar 28 2019"}, {"filename": "ptargrep5.18", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 4274, "date": "Mar 28 2019"}, {"filename": "pubsub", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 114416, "date": "May 3 2019"}, {"filename": "pwhich", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 35, "owner": "root", "group": "wheel", "size": 811, "date": "Feb 22 2019"}, {"filename": "pwhich5.18", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 3106, "date": "Feb 22 2019"}, {"filename": "pwpolicy", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 47888, "date": "May 3 2019"}, {"filename": "pydoc", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 4, "owner": "root", "group": "wheel", "size": 925, "date": "Feb 22 2019"}, {"filename": "pydoc2.7", "link_to": "../../System/Library/Frameworks/Python.framework/Versions/2.7/bin/pydoc2.7", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 74, "date": "May 4 2019"}, {"filename": "python", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 66880, "date": "Jan 24 01:14"}, {"filename": "python-config", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 4, "owner": "root", "group": "wheel", "size": 925, "date": "Feb 22 2019"}, {"filename": "python2.7", "link_to": "../../System/Library/Frameworks/Python.framework/Versions/2.7/bin/python2.7", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 75, "date": "May 4 2019"}, {"filename": "python2.7-config", "link_to": "../../System/Library/Frameworks/Python.framework/Versions/2.7/bin/python2.7-config", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 82, "date": "May 4 2019"}, {"filename": "pythonw", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 66880, "date": "Jan 24 01:14"}, {"filename": "pythonw2.7", "link_to": "../../System/Library/Frameworks/Python.framework/Versions/2.7/bin/pythonw2.7", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 76, "date": "May 4 2019"}, {"filename": "qc2movie", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 45104, "date": "May 3 2019"}, {"filename": "qlmanage", "link_to": "../../System/Library/Frameworks/QuickLook.framework/Resources/quicklookd.app/Contents/MacOS/qlmanage", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 100, "date": "May 4 2019"}, {"filename": "qtdefaults", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 50992, "date": "Jul 16 2019"}, {"filename": "qtmodernizer", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 38592, "date": "Jul 16 2019"}, {"filename": "quota", "parent": "/usr/bin", "flags": "-r-sr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23568, "date": "May 3 2019"}, {"filename": "rails", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 549, "date": "Feb 22 2019"}, {"filename": "rake", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 517, "date": "Feb 22 2019"}, {"filename": "ranlib", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "rdoc", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 988, "date": "Feb 22 2019"}, {"filename": "read", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 15, "owner": "root", "group": "wheel", "size": 190, "date": "Feb 22 2019"}, {"filename": "readlink", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 27520, "date": "May 3 2019"}, {"filename": "rebase", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "redo_prebinding", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18320, "date": "Jul 16 2019"}, {"filename": "refer", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 113904, "date": "May 3 2019"}, {"filename": "renice", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18304, "date": "May 3 2019"}, {"filename": "reset", "link_to": "tset", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 4, "date": "May 4 2019"}, {"filename": "resolveLinks", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18320, "date": "Jul 16 2019"}, {"filename": "rev", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18416, "date": "May 3 2019"}, {"filename": "ri", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 238, "date": "Feb 22 2019"}, {"filename": "rmic", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/rmic", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 74, "date": "May 4 2019"}, {"filename": "rmid", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/rmid", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 74, "date": "May 4 2019"}, {"filename": "rmiregistry", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/rmiregistry", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 81, "date": "May 4 2019"}, {"filename": "rpcgen", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "rs", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 22720, "date": "May 3 2019"}, {"filename": "rsync", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 291632, "date": "May 3 2019"}, {"filename": "ruby", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 52016, "date": "May 3 2019"}, {"filename": "rview", "link_to": "vim", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 3, "date": "May 4 2019"}, {"filename": "rvim", "link_to": "vim", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 3, "date": "May 4 2019"}, {"filename": "rwbypid.d", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1657, "date": "Feb 22 2019"}, {"filename": "rwbytype.d", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2473, "date": "Feb 22 2019"}, {"filename": "rwsnoop", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 6357, "date": "Feb 22 2019"}, {"filename": "s2p", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 38, "owner": "root", "group": "wheel", "size": 811, "date": "Mar 28 2019"}, {"filename": "s2p5.18", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 53364, "date": "Mar 28 2019"}, {"filename": "safaridriver", "link_to": "/System/Library/CoreServices/SafariSupport.bundle/Contents/MacOS/safaridriver", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 77, "date": "May 4 2019"}, {"filename": "sample", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 74816, "date": "Jan 24 01:14"}, {"filename": "sampleproc", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2544, "date": "Feb 22 2019"}, {"filename": "sandbox-exec", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 19696, "date": "Jan 24 01:14"}, {"filename": "say", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 54896, "date": "May 3 2019"}, {"filename": "sc_usage", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 82416, "date": "Jan 24 01:14"}, {"filename": "scandeps.pl", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 35, "owner": "root", "group": "wheel", "size": 811, "date": "Feb 22 2019"}, {"filename": "scandeps5.18.pl", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 5815, "date": "Feb 22 2019"}, {"filename": "schemagen", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/schemagen", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 79, "date": "May 4 2019"}, {"filename": "scp", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 80896, "date": "May 3 2019"}, {"filename": "screen", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 294448, "date": "May 3 2019"}, {"filename": "script", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24112, "date": "May 3 2019"}, {"filename": "sdef", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "sdiff", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 37584, "date": "May 3 2019"}, {"filename": "sdp", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "sdx", "link_to": "../../System/Library/Tcl/bin/sdx", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 32, "date": "May 4 2019"}, {"filename": "security", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 263584, "date": "Jan 24 01:14"}, {"filename": "sed", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 42176, "date": "May 3 2019"}, {"filename": "seeksize.d", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2041, "date": "Feb 22 2019"}, {"filename": "segedit", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18304, "date": "Jul 16 2019"}, {"filename": "seq", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23008, "date": "May 3 2019"}, {"filename": "serialver", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/serialver", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 79, "date": "May 4 2019"}, {"filename": "servertool", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/servertool", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 80, "date": "May 4 2019"}, {"filename": "setregion", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 25024, "date": "May 3 2019"}, {"filename": "setuids.d", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1606, "date": "Feb 22 2019"}, {"filename": "sfltool", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 74480, "date": "May 3 2019"}, {"filename": "sftp", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 119728, "date": "May 3 2019"}, {"filename": "shar", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2516, "date": "Feb 22 2019"}, {"filename": "shasum", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 38, "owner": "root", "group": "wheel", "size": 811, "date": "Mar 28 2019"}, {"filename": "shasum5.18", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 8629, "date": "Mar 28 2019"}, {"filename": "shlock", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23024, "date": "May 3 2019"}, {"filename": "showmount", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 25008, "date": "May 3 2019"}, {"filename": "sigdist.d", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1603, "date": "Feb 22 2019"}, {"filename": "sips", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 99344, "date": "May 3 2019"}, {"filename": "size", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "slogin", "link_to": "ssh", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 3, "date": "May 4 2019"}, {"filename": "smbutil", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 98560, "date": "Jan 24 01:14"}, {"filename": "smtpd.py", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 928, "date": "Feb 22 2019"}, {"filename": "smtpd2.7.py", "link_to": "../../System/Library/Frameworks/Python.framework/Versions/2.7/bin/smtpd2.7.py", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 77, "date": "May 4 2019"}, {"filename": "snfsdefrag", "link_to": "/System/Library/Filesystems/acfs.fs/Contents/bin/snfsdefrag", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 59, "date": "May 4 2019"}, {"filename": "snmp-bridge-mib", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 30680, "date": "Feb 22 2019"}, {"filename": "snmpbulkget", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23648, "date": "May 3 2019"}, {"filename": "snmpbulkwalk", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24064, "date": "May 3 2019"}, {"filename": "snmpconf", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 26136, "date": "Feb 22 2019"}, {"filename": "snmpdelta", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 29520, "date": "May 3 2019"}, {"filename": "snmpdf", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23712, "date": "May 3 2019"}, {"filename": "snmpget", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 19440, "date": "May 3 2019"}, {"filename": "snmpgetnext", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 19456, "date": "May 3 2019"}, {"filename": "snmpinform", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24144, "date": "May 3 2019"}, {"filename": "snmpnetstat", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 55344, "date": "May 3 2019"}, {"filename": "snmpset", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23568, "date": "May 3 2019"}, {"filename": "snmpstatus", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24192, "date": "May 3 2019"}, {"filename": "snmptable", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 29104, "date": "May 3 2019"}, {"filename": "snmptest", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24672, "date": "May 3 2019"}, {"filename": "snmptranslate", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 25184, "date": "May 3 2019"}, {"filename": "snmptrap", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24144, "date": "May 3 2019"}, {"filename": "snmpusm", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 46256, "date": "May 3 2019"}, {"filename": "snmpvacm", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 40128, "date": "May 3 2019"}, {"filename": "snmpwalk", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23936, "date": "May 3 2019"}, {"filename": "sntp", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 161504, "date": "May 3 2019"}, {"filename": "soelim", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 38912, "date": "May 3 2019"}, {"filename": "sort", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 56048, "date": "May 3 2019"}, {"filename": "spfd", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 35, "owner": "root", "group": "wheel", "size": 811, "date": "Feb 22 2019"}, {"filename": "spfd5.18", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 9486, "date": "Feb 22 2019"}, {"filename": "spfquery", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 35, "owner": "root", "group": "wheel", "size": 811, "date": "Feb 22 2019"}, {"filename": "spfquery5.18", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23081, "date": "Feb 22 2019"}, {"filename": "splain", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 38, "owner": "root", "group": "wheel", "size": 811, "date": "Mar 28 2019"}, {"filename": "splain5.18", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18681, "date": "Mar 28 2019"}, {"filename": "split", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23104, "date": "May 3 2019"}, {"filename": "sqlite3", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2158960, "date": "Jul 16 2019"}, {"filename": "ssh", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2099264, "date": "May 3 2019"}, {"filename": "ssh-add", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1791296, "date": "May 3 2019"}, {"filename": "ssh-agent", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1767984, "date": "May 3 2019"}, {"filename": "ssh-copy-id", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 10658, "date": "Feb 22 2019"}, {"filename": "ssh-keygen", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1845584, "date": "May 3 2019"}, {"filename": "ssh-keyscan", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1847504, "date": "May 3 2019"}, {"filename": "stapler", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18304, "date": "Jul 16 2019"}, {"filename": "stat", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 27520, "date": "May 3 2019"}, {"filename": "stringdups", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 88896, "date": "Jan 24 01:14"}, {"filename": "stringdups32", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 100384, "date": "Jan 24 01:14"}, {"filename": "strings", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18304, "date": "Jul 16 2019"}, {"filename": "strip", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "stty.pl", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 35, "owner": "root", "group": "wheel", "size": 811, "date": "Feb 22 2019"}, {"filename": "stty5.18.pl", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 277, "date": "Feb 22 2019"}, {"filename": "su", "parent": "/usr/bin", "flags": "-rwsr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 25488, "date": "May 3 2019"}, {"filename": "sudo", "parent": "/usr/bin", "flags": "-r-s--x--x", "links": 1, "owner": "root", "group": "wheel", "size": 438672, "date": "Jan 24 01:14"}, {"filename": "sum", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 22688, "date": "May 3 2019"}, {"filename": "svn", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "svnadmin", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18304, "date": "Jul 16 2019"}, {"filename": "svndumpfilter", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18320, "date": "Jul 16 2019"}, {"filename": "svnlook", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18304, "date": "Jul 16 2019"}, {"filename": "svnserve", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18304, "date": "Jul 16 2019"}, {"filename": "svnsync", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18304, "date": "Jul 16 2019"}, {"filename": "svnversion", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18304, "date": "Jul 16 2019"}, {"filename": "sw_vers", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18848, "date": "May 3 2019"}, {"filename": "swift", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "swiftc", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "symbols", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 155072, "date": "Jan 24 01:14"}, {"filename": "symbolscache", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 108688, "date": "Jul 16 2019"}, {"filename": "syscallbypid.d", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1260, "date": "Feb 22 2019"}, {"filename": "syscallbyproc.d", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 253, "date": "Feb 22 2019"}, {"filename": "syscallbysysc.d", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 248, "date": "Feb 22 2019"}, {"filename": "sysdiagnose", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 789920, "date": "Jan 24 01:14"}, {"filename": "syslog", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 67728, "date": "May 3 2019"}, {"filename": "systriage", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 452, "date": "Feb 22 2019"}, {"filename": "tab2space", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 47248, "date": "Jul 16 2019"}, {"filename": "tabs", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18576, "date": "May 3 2019"}, {"filename": "tail", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 28560, "date": "May 3 2019"}, {"filename": "tailspin", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 56992, "date": "Jul 16 2019"}, {"filename": "talk", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 30928, "date": "May 3 2019"}, {"filename": "tar", "link_to": "bsdtar", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 6, "date": "May 4 2019"}, {"filename": "taskinfo", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 38496, "date": "Jan 24 01:14"}, {"filename": "tbl", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 111136, "date": "May 3 2019"}, {"filename": "tbtdiagnose", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 55200, "date": "May 3 2019"}, {"filename": "tccutil", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 19088, "date": "Jul 16 2019"}, {"filename": "tclsh", "link_to": "tclsh8.5", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 8, "date": "May 4 2019"}, {"filename": "tclsh8.5", "link_to": "../../System/Library/Frameworks/Tcl.framework/Versions/8.5/tclsh8.5", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 67, "date": "May 4 2019"}, {"filename": "tee", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18400, "date": "May 3 2019"}, {"filename": "texi2dvi", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 28218, "date": "Feb 22 2019"}, {"filename": "texi2pdf", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 660, "date": "Feb 22 2019"}, {"filename": "texindex", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 52368, "date": "May 3 2019"}, {"filename": "textutil", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 48720, "date": "May 3 2019"}, {"filename": "tfmtodit", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 39152, "date": "May 3 2019"}, {"filename": "tftp", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 38976, "date": "May 3 2019"}, {"filename": "thermal", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 26272, "date": "Jan 24 01:14"}, {"filename": "tic", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 55792, "date": "May 3 2019"}, {"filename": "tidy", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 75072, "date": "Jul 16 2019"}, {"filename": "tiff2icns", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23440, "date": "May 3 2019"}, {"filename": "tiffutil", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 335936, "date": "May 3 2019"}, {"filename": "time", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18416, "date": "May 3 2019"}, {"filename": "timer_analyser.d", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2886, "date": "Apr 7 2019"}, {"filename": "timerfires", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 6537, "date": "Apr 25 2019"}, {"filename": "tkcon", "link_to": "../../System/Library/Tcl/tkcon2.6/tkcon.tcl", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 43, "date": "May 4 2019"}, {"filename": "tkmib", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 30924, "date": "Feb 22 2019"}, {"filename": "tkpp", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 35, "owner": "root", "group": "wheel", "size": 811, "date": "Feb 22 2019"}, {"filename": "tkpp5.18", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 82203, "date": "Feb 22 2019"}, {"filename": "tmdiagnose", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 180416, "date": "May 3 2019"}, {"filename": "tmutil", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 293808, "date": "May 3 2019"}, {"filename": "tnameserv", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/tnameserv", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 79, "date": "May 4 2019"}, {"filename": "toe", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24672, "date": "May 3 2019"}, {"filename": "top", "parent": "/usr/bin", "flags": "-r-sr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 88400, "date": "May 3 2019"}, {"filename": "tops", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 107536, "date": "May 3 2019"}, {"filename": "topsyscall", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 4603, "date": "Feb 22 2019"}, {"filename": "topsysproc", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2950, "date": "Feb 22 2019"}, {"filename": "touch", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23392, "date": "May 3 2019"}, {"filename": "tput", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24208, "date": "May 3 2019"}, {"filename": "tr", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 27744, "date": "May 3 2019"}, {"filename": "trace", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 132224, "date": "Jan 24 01:14"}, {"filename": "traptoemail", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2207, "date": "Feb 22 2019"}, {"filename": "treereg", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 35, "owner": "root", "group": "wheel", "size": 811, "date": "Feb 22 2019"}, {"filename": "treereg5.18", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 10339, "date": "Feb 22 2019"}, {"filename": "trimforce", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 29968, "date": "Jan 24 01:14"}, {"filename": "troff", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 457920, "date": "May 3 2019"}, {"filename": "true", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 17808, "date": "May 3 2019"}, {"filename": "tset", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 28816, "date": "May 3 2019"}, {"filename": "tsort", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 22976, "date": "May 3 2019"}, {"filename": "tty", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18048, "date": "May 3 2019"}, {"filename": "type", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 15, "owner": "root", "group": "wheel", "size": 190, "date": "Feb 22 2019"}, {"filename": "ul", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23200, "date": "May 3 2019"}, {"filename": "ulimit", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 15, "owner": "root", "group": "wheel", "size": 190, "date": "Feb 22 2019"}, {"filename": "umask", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 15, "owner": "root", "group": "wheel", "size": 190, "date": "Feb 22 2019"}, {"filename": "unalias", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 15, "owner": "root", "group": "wheel", "size": 190, "date": "Feb 22 2019"}, {"filename": "uname", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18432, "date": "May 3 2019"}, {"filename": "uncompress", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 27712, "date": "May 3 2019"}, {"filename": "unexpand", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18576, "date": "May 3 2019"}, {"filename": "unifdef", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18304, "date": "Jul 16 2019"}, {"filename": "unifdefall", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18304, "date": "Jul 16 2019"}, {"filename": "uniq", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23280, "date": "May 3 2019"}, {"filename": "units", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 27712, "date": "May 3 2019"}, {"filename": "unpack200", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/unpack200", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 79, "date": "May 4 2019"}, {"filename": "unvis", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18400, "date": "May 3 2019"}, {"filename": "unzip", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 185536, "date": "May 3 2019"}, {"filename": "unzipsfx", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 88064, "date": "May 3 2019"}, {"filename": "update_dyld_shared_cache", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 776032, "date": "May 3 2019"}, {"filename": "uptime", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24192, "date": "May 3 2019"}, {"filename": "usbkdp", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 38720, "date": "Jan 24 01:14"}, {"filename": "users", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18384, "date": "May 3 2019"}, {"filename": "uucp", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "_uucp", "group": "wheel", "size": 93664, "date": "May 3 2019"}, {"filename": "uudecode", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24176, "date": "May 3 2019"}, {"filename": "uuencode", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18768, "date": "May 3 2019"}, {"filename": "uuidgen", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 43008, "date": "Jan 24 01:14"}, {"filename": "uulog", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 70224, "date": "May 3 2019"}, {"filename": "uuname", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "_uucp", "group": "wheel", "size": 48288, "date": "May 3 2019"}, {"filename": "uupick", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 75424, "date": "May 3 2019"}, {"filename": "uustat", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "_uucp", "group": "wheel", "size": 106224, "date": "May 3 2019"}, {"filename": "uuto", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1958, "date": "Feb 22 2019"}, {"filename": "uux", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "_uucp", "group": "wheel", "size": 97760, "date": "May 3 2019"}, {"filename": "vi", "link_to": "vim", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 3, "date": "May 4 2019"}, {"filename": "view", "link_to": "vim", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 3, "date": "May 4 2019"}, {"filename": "vim", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1863696, "date": "Jan 24 01:14"}, {"filename": "vimdiff", "link_to": "vim", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 3, "date": "May 4 2019"}, {"filename": "vimtutor", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2099, "date": "Feb 22 2019"}, {"filename": "vis", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18528, "date": "May 3 2019"}, {"filename": "vm_stat", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 51776, "date": "Jan 24 01:14"}, {"filename": "vmmap", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 80176, "date": "Jan 24 01:14"}, {"filename": "vmmap32", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 91104, "date": "Jan 24 01:14"}, {"filename": "w", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24192, "date": "May 3 2019"}, {"filename": "wait", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 15, "owner": "root", "group": "wheel", "size": 190, "date": "Feb 22 2019"}, {"filename": "wall", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24832, "date": "May 3 2019"}, {"filename": "wc", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23072, "date": "May 3 2019"}, {"filename": "wdutil", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 96816, "date": "May 3 2019"}, {"filename": "what", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18096, "date": "May 3 2019"}, {"filename": "whatis", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1806, "date": "Feb 22 2019"}, {"filename": "whereis", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18544, "date": "May 3 2019"}, {"filename": "which", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18576, "date": "May 3 2019"}, {"filename": "who", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23552, "date": "May 3 2019"}, {"filename": "whoami", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23264, "date": "May 3 2019"}, {"filename": "whois", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23776, "date": "May 3 2019"}, {"filename": "wish", "link_to": "wish8.5", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 7, "date": "May 4 2019"}, {"filename": "wish8.5", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 127, "date": "Feb 22 2019"}, {"filename": "write", "parent": "/usr/bin", "flags": "-r-xr-sr-x", "links": 1, "owner": "root", "group": "tty", "size": 23936, "date": "May 3 2019"}, {"filename": "wsgen", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/wsgen", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 75, "date": "May 4 2019"}, {"filename": "wsimport", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/wsimport", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 78, "date": "May 4 2019"}, {"filename": "xar", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 38672, "date": "May 3 2019"}, {"filename": "xargs", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24192, "date": "May 3 2019"}, {"filename": "xattr", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 2, "owner": "root", "group": "wheel", "size": 925, "date": "Feb 22 2019"}, {"filename": "xattr-2.7", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 432, "date": "Feb 22 2019"}, {"filename": "xcode-select", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23968, "date": "Jul 16 2019"}, {"filename": "xcodebuild", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18304, "date": "Jul 16 2019"}, {"filename": "xcrun", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 17952, "date": "Jul 16 2019"}, {"filename": "xcscontrol", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18304, "date": "Jul 16 2019"}, {"filename": "xcsdiagnose", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18320, "date": "Jul 16 2019"}, {"filename": "xed", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "xgettext.pl", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 35, "owner": "root", "group": "wheel", "size": 811, "date": "Feb 22 2019"}, {"filename": "xgettext5.18.pl", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 6650, "date": "Feb 22 2019"}, {"filename": "xip", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 28624, "date": "Jan 24 01:14"}, {"filename": "xjc", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/xjc", "parent": "/usr/bin", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 73, "date": "May 4 2019"}, {"filename": "xml2-config", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1874, "date": "Feb 22 2019"}, {"filename": "xml2man", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18304, "date": "Jul 16 2019"}, {"filename": "xmlcatalog", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 61104, "date": "Jan 24 01:14"}, {"filename": "xmllint", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 141200, "date": "Jan 24 01:14"}, {"filename": "xpath", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 35, "owner": "root", "group": "wheel", "size": 811, "date": "Feb 22 2019"}, {"filename": "xpath5.18", "parent": "/usr/bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1445, "date": "Feb 22 2019"}, {"filename": "xslt-config", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2546, "date": "Feb 22 2019"}, {"filename": "xsltproc", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 75072, "date": "Jan 24 01:14"}, {"filename": "xsubpp", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 38, "owner": "root", "group": "wheel", "size": 811, "date": "Mar 28 2019"}, {"filename": "xsubpp5.18", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 4591, "date": "Mar 28 2019"}, {"filename": "xxd", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 27312, "date": "Jan 24 01:14"}, {"filename": "yaa", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 70192, "date": "May 3 2019"}, {"filename": "yacc", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18288, "date": "Jul 16 2019"}, {"filename": "yes", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 17808, "date": "May 3 2019"}, {"filename": "zcat", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 53280, "date": "May 3 2019"}, {"filename": "zcmp", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 2, "owner": "root", "group": "wheel", "size": 3264, "date": "Feb 22 2019"}, {"filename": "zdiff", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 2, "owner": "root", "group": "wheel", "size": 3264, "date": "Feb 22 2019"}, {"filename": "zegrep", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 33952, "date": "May 3 2019"}, {"filename": "zfgrep", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 33952, "date": "May 3 2019"}, {"filename": "zforce", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1454, "date": "Feb 22 2019"}, {"filename": "zgrep", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 33952, "date": "May 3 2019"}, {"filename": "zip", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 171840, "date": "May 3 2019"}, {"filename": "zipcloak", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 78224, "date": "May 3 2019"}, {"filename": "zipdetails", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 38, "owner": "root", "group": "wheel", "size": 811, "date": "Mar 28 2019"}, {"filename": "zipdetails5.18", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 48113, "date": "Mar 28 2019"}, {"filename": "zipgrep", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2953, "date": "Feb 22 2019"}, {"filename": "zipinfo", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 185536, "date": "May 3 2019"}, {"filename": "zipnote", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 73408, "date": "May 3 2019"}, {"filename": "zipsplit", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 77664, "date": "May 3 2019"}, {"filename": "zless", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 2, "owner": "root", "group": "wheel", "size": 2080, "date": "Feb 22 2019"}, {"filename": "zmore", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 2, "owner": "root", "group": "wheel", "size": 2080, "date": "Feb 22 2019"}, {"filename": "znew", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 3376, "date": "Feb 22 2019"}, {"filename": "zprint", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 74672, "date": "Jan 24 01:14"}, {"filename": ".", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 306, "owner": "root", "group": "wheel", "size": 9792, "date": "Feb 7 23:29"}, {"filename": "..", "parent": "/usr/lib", "flags": "drwxr-xr-x@", "links": 9, "owner": "root", "group": "wheel", "size": 288, "date": "May 3 2019"}, {"filename": "ACIPCBTLib.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 51520, "date": "Jan 24 01:14"}, {"filename": "AppleConvergedTransport.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 161312, "date": "Jan 24 01:14"}, {"filename": "PN548.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1007520, "date": "Jan 24 01:14"}, {"filename": "PN548_API.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 243472, "date": "Jan 24 01:14"}, {"filename": "PN548_HAL.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 92768, "date": "Jan 24 01:14"}, {"filename": "charset.alias", "parent": "/usr/lib", "flags": "-r--r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 198, "date": "Feb 22 2019"}, {"filename": "cron", "link_to": "../../var/at", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 12, "date": "May 4 2019"}, {"filename": "dtrace", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 13, "owner": "root", "group": "wheel", "size": 416, "date": "May 3 2019"}, {"filename": "dyld", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 973872, "date": "Jan 24 01:14"}, {"filename": "groff", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "wheel", "size": 128, "date": "Feb 22 2019"}, {"filename": "libATCommandStudioDynamic.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 559232, "date": "Jul 16 2019"}, {"filename": "libAccessibility.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 224272, "date": "Jul 16 2019"}, {"filename": "libAccountPolicyTranslation.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23280, "date": "May 3 2019"}, {"filename": "libAppleSSEExt.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 39504, "date": "Jan 24 01:14"}, {"filename": "libAppletTranslationLibrary.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 154000, "date": "Jul 16 2019"}, {"filename": "libAudioIssueDetector.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 913440, "date": "Jan 24 01:14"}, {"filename": "libAudioStatistics.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 158336, "date": "Jan 24 01:14"}, {"filename": "libBSDPClient.A.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 80976, "date": "May 3 2019"}, {"filename": "libBSDPClient.dylib", "link_to": "libBSDPClient.A.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 21, "date": "May 4 2019"}, {"filename": "libCRFSuite.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 640240, "date": "May 3 2019"}, {"filename": "libCRFSuite0.12.dylib", "link_to": "libCRFSuite.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 17, "date": "May 4 2019"}, {"filename": "libCTGreenTeaLogger.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 29584, "date": "Jul 16 2019"}, {"filename": "libChineseTokenizer.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 201664, "date": "May 3 2019"}, {"filename": "libCoreStorage.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1468304, "date": "May 3 2019"}, {"filename": "libDHCPServer.A.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 32464, "date": "May 3 2019"}, {"filename": "libDHCPServer.dylib", "link_to": "libDHCPServer.A.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 21, "date": "May 4 2019"}, {"filename": "libDiagnosticMessagesClient.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 57376, "date": "May 3 2019"}, {"filename": "libFDR_osx.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 568496, "date": "Jan 24 01:14"}, {"filename": "libFosl_dynamic.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 5421872, "date": "Jul 16 2019"}, {"filename": "libIASAuthReboot.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 121680, "date": "Jul 16 2019"}, {"filename": "libIASUnifiedProgress.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 103632, "date": "Jul 16 2019"}, {"filename": "libMatch.1.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 102096, "date": "May 3 2019"}, {"filename": "libMatch.dylib", "link_to": "libMatch.1.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 16, "date": "May 4 2019"}, {"filename": "libMaxEnt.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 86480, "date": "May 3 2019"}, {"filename": "libMemoryResourceException.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 191952, "date": "Jul 16 2019"}, {"filename": "libMobileGestalt.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 464496, "date": "Jul 16 2019"}, {"filename": "libOpenScriptingUtil.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 43088, "date": "May 3 2019"}, {"filename": "libParallelCompression.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 810432, "date": "May 3 2019"}, {"filename": "libQMIParserDynamic.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 87856, "date": "Jul 16 2019"}, {"filename": "libSMC.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1901664, "date": "May 3 2019"}, {"filename": "libScreenReader.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 106368, "date": "Jul 16 2019"}, {"filename": "libSystem.B.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 60880, "date": "Jan 24 01:14"}, {"filename": "libSystem.dylib", "link_to": "libSystem.B.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 17, "date": "May 4 2019"}, {"filename": "libTelephonyUtilDynamic.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1148544, "date": "Jul 16 2019"}, {"filename": "libThaiTokenizer.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 58736, "date": "May 3 2019"}, {"filename": "libUniversalAccess.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 41632, "date": "May 3 2019"}, {"filename": "libXSEvent.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 20960, "date": "May 3 2019"}, {"filename": "libXplugin.1.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 181168, "date": "May 3 2019"}, {"filename": "libXplugin.dylib", "link_to": "libXplugin.1.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18, "date": "May 4 2019"}, {"filename": "libapple_nghttp2.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 279968, "date": "May 3 2019"}, {"filename": "libapr-1.0.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 343808, "date": "May 3 2019"}, {"filename": "libapr-1.dylib", "link_to": "libapr-1.0.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 16, "date": "May 4 2019"}, {"filename": "libaprutil-1.0.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 298032, "date": "May 3 2019"}, {"filename": "libaprutil-1.dylib", "link_to": "libaprutil-1.0.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 20, "date": "May 4 2019"}, {"filename": "libarchive.2.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 434528, "date": "May 3 2019"}, {"filename": "libarchive.dylib", "link_to": "libarchive.2.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18, "date": "May 4 2019"}, {"filename": "libate.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 3066912, "date": "May 3 2019"}, {"filename": "libauditd.0.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 67936, "date": "May 3 2019"}, {"filename": "libauditd.dylib", "link_to": "libauditd.0.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 17, "date": "May 4 2019"}, {"filename": "libauto.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 50528, "date": "May 3 2019"}, {"filename": "libblas.dylib", "link_to": "../../System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 116, "date": "May 4 2019"}, {"filename": "libboringssl.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1497616, "date": "Jan 24 01:14"}, {"filename": "libbsm.0.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 200320, "date": "May 3 2019"}, {"filename": "libbsm.dylib", "link_to": "libbsm.0.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 14, "date": "May 4 2019"}, {"filename": "libbz2.1.0.5.dylib", "link_to": "libbz2.1.0.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 16, "date": "May 4 2019"}, {"filename": "libbz2.1.0.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 155552, "date": "May 3 2019"}, {"filename": "libbz2.dylib", "link_to": "libbz2.1.0.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 16, "date": "May 4 2019"}, {"filename": "libc++.1.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1432816, "date": "May 3 2019"}, {"filename": "libc++.dylib", "link_to": "libc++.1.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 14, "date": "May 4 2019"}, {"filename": "libc++abi.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 339520, "date": "May 3 2019"}, {"filename": "libc.dylib", "link_to": "libSystem.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 15, "date": "May 4 2019"}, {"filename": "libcblas.dylib", "link_to": "../../System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 116, "date": "May 4 2019"}, {"filename": "libcharset.1.0.0.dylib", "link_to": "libcharset.1.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18, "date": "May 4 2019"}, {"filename": "libcharset.1.dylib", "parent": "/usr/lib", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 43552, "date": "May 3 2019"}, {"filename": "libcharset.dylib", "link_to": "libcharset.1.0.0.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 22, "date": "May 4 2019"}, {"filename": "libclapack.dylib", "link_to": "../../System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 118, "date": "May 4 2019"}, {"filename": "libcmph.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 210080, "date": "May 3 2019"}, {"filename": "libcom_err.dylib", "link_to": "/System/Library/Frameworks/Kerberos.framework/Kerberos", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 54, "date": "May 4 2019"}, {"filename": "libcompression.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 380336, "date": "Jul 16 2019"}, {"filename": "libcoreroutine.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 4187760, "date": "May 3 2019"}, {"filename": "libcoretls.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 271216, "date": "May 3 2019"}, {"filename": "libcoretls_cfhelpers.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 60464, "date": "May 3 2019"}, {"filename": "libcrypto.0.9.7.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2015072, "date": "May 3 2019"}, {"filename": "libcrypto.0.9.8.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2652560, "date": "May 3 2019"}, {"filename": "libcrypto.35.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2793664, "date": "Jul 16 2019"}, {"filename": "libcrypto.41.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2826656, "date": "Jul 16 2019"}, {"filename": "libcrypto.42.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2826688, "date": "Jul 16 2019"}, {"filename": "libcrypto.dylib", "link_to": "libcrypto.35.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18, "date": "May 4 2019"}, {"filename": "libcsfde.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 191328, "date": "May 3 2019"}, {"filename": "libcupolicy.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 68896, "date": "Jul 16 2019"}, {"filename": "libcups.2.dylib", "parent": "/usr/lib", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 917120, "date": "Jan 24 01:14"}, {"filename": "libcups.dylib", "link_to": "libcups.2.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 15, "date": "May 4 2019"}, {"filename": "libcupscgi.1.dylib", "parent": "/usr/lib", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 125632, "date": "Jan 24 01:14"}, {"filename": "libcupscgi.dylib", "link_to": "libcupscgi.1.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18, "date": "May 4 2019"}, {"filename": "libcupsimage.2.dylib", "parent": "/usr/lib", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 94576, "date": "Jan 24 01:14"}, {"filename": "libcupsimage.dylib", "link_to": "libcupsimage.2.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 20, "date": "May 4 2019"}, {"filename": "libcupsmime.1.dylib", "parent": "/usr/lib", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 74976, "date": "Jan 24 01:14"}, {"filename": "libcupsmime.dylib", "link_to": "libcupsmime.1.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 19, "date": "May 4 2019"}, {"filename": "libcupsppdc.1.dylib", "parent": "/usr/lib", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 243888, "date": "Jan 24 01:14"}, {"filename": "libcupsppdc.dylib", "link_to": "libcupsppdc.1.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 19, "date": "May 4 2019"}, {"filename": "libcurl.3.dylib", "link_to": "libcurl.4.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 15, "date": "May 4 2019"}, {"filename": "libcurl.4.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 850096, "date": "May 3 2019"}, {"filename": "libcurl.dylib", "link_to": "libcurl.4.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 15, "date": "May 4 2019"}, {"filename": "libcurses.dylib", "link_to": "libncurses.5.4.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 20, "date": "May 4 2019"}, {"filename": "libdbm.dylib", "link_to": "libSystem.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 15, "date": "May 4 2019"}, {"filename": "libdes425.dylib", "link_to": "/System/Library/Frameworks/Kerberos.framework/Kerberos", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 54, "date": "May 4 2019"}, {"filename": "libdl.dylib", "link_to": "libSystem.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 15, "date": "May 4 2019"}, {"filename": "libdns_services.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24656, "date": "Jan 24 01:14"}, {"filename": "libdscsym.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 57408, "date": "May 3 2019"}, {"filename": "libdtrace.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1286176, "date": "May 3 2019"}, {"filename": "libdz.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 77024, "date": "May 3 2019"}, {"filename": "libeasyperf.dylib", "link_to": "libperfcheck.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18, "date": "May 4 2019"}, {"filename": "libecpg.6.5.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 92512, "date": "May 3 2019"}, {"filename": "libecpg.6.dylib", "link_to": "libecpg.6.5.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 17, "date": "May 4 2019"}, {"filename": "libecpg.dylib", "link_to": "libecpg.6.5.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 17, "date": "May 4 2019"}, {"filename": "libecpg_compat.3.5.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 30928, "date": "May 3 2019"}, {"filename": "libecpg_compat.3.dylib", "link_to": "libecpg_compat.3.5.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24, "date": "May 4 2019"}, {"filename": "libecpg_compat.dylib", "link_to": "libecpg_compat.3.5.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24, "date": "May 4 2019"}, {"filename": "libedit.2.dylib", "link_to": "libedit.3.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 15, "date": "May 4 2019"}, {"filename": "libedit.3.0.dylib", "link_to": "libedit.3.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 15, "date": "May 4 2019"}, {"filename": "libedit.3.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 308224, "date": "May 3 2019"}, {"filename": "libedit.dylib", "link_to": "libedit.3.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 15, "date": "May 4 2019"}, {"filename": "libenergytrace.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 42688, "date": "May 3 2019"}, {"filename": "libexpat.1.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 274240, "date": "Jan 24 01:14"}, {"filename": "libexpat.dylib", "link_to": "libexpat.1.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 16, "date": "May 4 2019"}, {"filename": "libexslt.0.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 171872, "date": "Jan 24 01:14"}, {"filename": "libexslt.dylib", "link_to": "libexslt.0.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 16, "date": "May 4 2019"}, {"filename": "libextension.dylib", "link_to": "../../System/Library/Frameworks/Foundation.framework/Versions/C/Foundation", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 74, "date": "May 4 2019"}, {"filename": "libf77lapack.dylib", "link_to": "../../System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 118, "date": "May 4 2019"}, {"filename": "libffi.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 47568, "date": "May 3 2019"}, {"filename": "libform.5.4.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 115456, "date": "May 3 2019"}, {"filename": "libform.dylib", "link_to": "libform.5.4.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 17, "date": "May 4 2019"}, {"filename": "libgcc_s.1.dylib", "link_to": "libSystem.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 15, "date": "May 4 2019"}, {"filename": "libgermantok.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 85936, "date": "May 3 2019"}, {"filename": "libgmalloc.dylib", "parent": "/usr/lib", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 91872, "date": "May 3 2019"}, {"filename": "libgssapi_krb5.dylib", "link_to": "/System/Library/Frameworks/Kerberos.framework/Kerberos", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 54, "date": "May 4 2019"}, {"filename": "libheimdal-asn1.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 96768, "date": "Jul 16 2019"}, {"filename": "libhunspell-1.2.0.0.0.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 461312, "date": "May 3 2019"}, {"filename": "libhunspell-1.2.0.dylib", "link_to": "libhunspell-1.2.0.0.0.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 27, "date": "May 4 2019"}, {"filename": "libhunspell-1.2.dylib", "link_to": "libhunspell-1.2.0.0.0.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 27, "date": "May 4 2019"}, {"filename": "libiconv.2.4.0.dylib", "link_to": "libiconv.2.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 16, "date": "May 4 2019"}, {"filename": "libiconv.2.dylib", "parent": "/usr/lib", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2095152, "date": "May 3 2019"}, {"filename": "libiconv.dylib", "link_to": "libiconv.2.4.0.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 20, "date": "May 4 2019"}, {"filename": "libicucore.A.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 6805664, "date": "Jul 16 2019"}, {"filename": "libicucore.dylib", "link_to": "libicucore.A.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18, "date": "May 4 2019"}, {"filename": "libinfo.dylib", "link_to": "libSystem.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 15, "date": "May 4 2019"}, {"filename": "libiodbc.2.1.18.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 553248, "date": "May 3 2019"}, {"filename": "libiodbc.2.dylib", "link_to": "libiodbc.2.1.18.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 21, "date": "May 4 2019"}, {"filename": "libiodbc.dylib", "link_to": "libiodbc.2.1.18.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 21, "date": "May 4 2019"}, {"filename": "libiodbcinst.2.1.18.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 154496, "date": "May 3 2019"}, {"filename": "libiodbcinst.2.dylib", "link_to": "libiodbcinst.2.1.18.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 25, "date": "May 4 2019"}, {"filename": "libiodbcinst.dylib", "link_to": "libiodbcinst.2.1.18.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 25, "date": "May 4 2019"}, {"filename": "libipconfig.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 38976, "date": "May 3 2019"}, {"filename": "libipsec.A.dylib", "parent": "/usr/lib", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 84736, "date": "Jan 24 01:14"}, {"filename": "libipsec.dylib", "link_to": "libipsec.A.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 16, "date": "May 4 2019"}, {"filename": "libk5crypto.dylib", "link_to": "/System/Library/Frameworks/Kerberos.framework/Kerberos", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 54, "date": "May 4 2019"}, {"filename": "libkrb4.dylib", "link_to": "/System/Library/Frameworks/Kerberos.framework/Kerberos", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 54, "date": "May 4 2019"}, {"filename": "libkrb5.dylib", "link_to": "/System/Library/Frameworks/Kerberos.framework/Kerberos", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 54, "date": "May 4 2019"}, {"filename": "libkrb524.dylib", "link_to": "/System/Library/Frameworks/Kerberos.framework/Kerberos", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 54, "date": "May 4 2019"}, {"filename": "libkrb5support.dylib", "link_to": "/System/Library/Frameworks/Kerberos.framework/Kerberos", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 54, "date": "May 4 2019"}, {"filename": "libktrace.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 13632, "date": "Jul 16 2019"}, {"filename": "liblangid.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 52496, "date": "May 3 2019"}, {"filename": "liblapack.dylib", "link_to": "../../System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 118, "date": "May 4 2019"}, {"filename": "liblber.dylib", "link_to": "/System/Library/Frameworks/LDAP.framework/Versions/A/LDAP", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 57, "date": "May 4 2019"}, {"filename": "libldap.dylib", "link_to": "/System/Library/Frameworks/LDAP.framework/Versions/A/LDAP", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 57, "date": "May 4 2019"}, {"filename": "libldap_r.dylib", "link_to": "/System/Library/Frameworks/LDAP.framework/Versions/A/LDAP", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 57, "date": "May 4 2019"}, {"filename": "liblzma.5.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 264384, "date": "May 3 2019"}, {"filename": "liblzma.dylib", "link_to": "liblzma.5.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 15, "date": "May 4 2019"}, {"filename": "libm.dylib", "link_to": "libSystem.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 15, "date": "May 4 2019"}, {"filename": "libmarisa.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 288144, "date": "May 3 2019"}, {"filename": "libmecab.1.0.0.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1596512, "date": "May 3 2019"}, {"filename": "libmecab.dylib", "link_to": "libmecab.1.0.0.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 20, "date": "May 4 2019"}, {"filename": "libmecabra.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 4820080, "date": "May 3 2019"}, {"filename": "libmenu.5.4.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 76320, "date": "May 3 2019"}, {"filename": "libmenu.dylib", "link_to": "libmenu.5.4.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 17, "date": "May 4 2019"}, {"filename": "libmx.A.dylib", "link_to": "libSystem.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 15, "date": "May 4 2019"}, {"filename": "libmx.dylib", "link_to": "libSystem.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 15, "date": "May 4 2019"}, {"filename": "libncurses.5.4.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 518896, "date": "May 3 2019"}, {"filename": "libncurses.5.dylib", "link_to": "libncurses.5.4.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 20, "date": "May 4 2019"}, {"filename": "libncurses.dylib", "link_to": "libncurses.5.4.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 20, "date": "May 4 2019"}, {"filename": "libnetsnmp.15.1.2.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1116224, "date": "May 3 2019"}, {"filename": "libnetsnmp.15.dylib", "link_to": "libnetsnmp.15.1.2.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23, "date": "May 4 2019"}, {"filename": "libnetsnmp.25.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1105808, "date": "May 3 2019"}, {"filename": "libnetsnmp.5.2.1.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 482288, "date": "May 3 2019"}, {"filename": "libnetsnmp.5.dylib", "link_to": "libnetsnmp.5.2.1.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 22, "date": "May 4 2019"}, {"filename": "libnetsnmp.dylib", "link_to": "libnetsnmp.25.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 19, "date": "May 4 2019"}, {"filename": "libnetsnmpagent.25.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 673808, "date": "May 3 2019"}, {"filename": "libnetsnmpagent.dylib", "link_to": "libnetsnmpagent.25.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24, "date": "May 4 2019"}, {"filename": "libnetsnmphelpers.25.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 34048, "date": "May 3 2019"}, {"filename": "libnetsnmphelpers.dylib", "link_to": "libnetsnmphelpers.25.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 26, "date": "May 4 2019"}, {"filename": "libnetsnmpmibs.25.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1211776, "date": "May 3 2019"}, {"filename": "libnetsnmpmibs.dylib", "link_to": "libnetsnmpmibs.25.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23, "date": "May 4 2019"}, {"filename": "libnetsnmptrapd.25.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 101840, "date": "May 3 2019"}, {"filename": "libnetsnmptrapd.dylib", "link_to": "libnetsnmptrapd.25.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24, "date": "May 4 2019"}, {"filename": "libnetwork.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 7980448, "date": "May 3 2019"}, {"filename": "libnetworkextension.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 92512, "date": "May 3 2019"}, {"filename": "libnfrestore.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 103408, "date": "Jan 24 01:14"}, {"filename": "libnfshared.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1009328, "date": "Jan 24 01:14"}, {"filename": "libobjc-trampolines.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 87744, "date": "May 3 2019"}, {"filename": "libobjc.A.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 28112240, "date": "May 3 2019"}, {"filename": "libobjc.dylib", "link_to": "libobjc.A.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 15, "date": "May 4 2019"}, {"filename": "libodfde.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 53824, "date": "May 3 2019"}, {"filename": "libodmodule.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 151024, "date": "May 3 2019"}, {"filename": "libpam.1.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 52096, "date": "May 3 2019"}, {"filename": "libpam.2.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 85376, "date": "May 3 2019"}, {"filename": "libpam.dylib", "link_to": "libpam.2.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 14, "date": "May 4 2019"}, {"filename": "libpanel.5.4.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 51552, "date": "May 3 2019"}, {"filename": "libpanel.dylib", "link_to": "libpanel.5.4.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18, "date": "May 4 2019"}, {"filename": "libpcap.A.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 546608, "date": "Jan 24 01:14"}, {"filename": "libpcap.dylib", "link_to": "libpcap.A.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 15, "date": "May 4 2019"}, {"filename": "libpcre.0.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 534992, "date": "May 3 2019"}, {"filename": "libpcre.dylib", "link_to": "libpcre.0.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 15, "date": "May 4 2019"}, {"filename": "libpcreposix.0.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 43040, "date": "May 3 2019"}, {"filename": "libpcreposix.dylib", "link_to": "libpcreposix.0.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 20, "date": "May 4 2019"}, {"filename": "libperfcheck.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 84688, "date": "May 3 2019"}, {"filename": "libpgtypes.3.4.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 78768, "date": "May 3 2019"}, {"filename": "libpgtypes.3.dylib", "link_to": "libpgtypes.3.4.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 20, "date": "May 4 2019"}, {"filename": "libpgtypes.dylib", "link_to": "libpgtypes.3.4.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 20, "date": "May 4 2019"}, {"filename": "libpmenergy.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 32976, "date": "Jan 24 01:14"}, {"filename": "libpmsample.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 31984, "date": "Jan 24 01:14"}, {"filename": "libpoll.dylib", "link_to": "libSystem.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 15, "date": "May 4 2019"}, {"filename": "libpq.5.6.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 178992, "date": "May 3 2019"}, {"filename": "libpq.5.dylib", "link_to": "libpq.5.6.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 15, "date": "May 4 2019"}, {"filename": "libpq.dylib", "link_to": "libpq.5.6.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 15, "date": "May 4 2019"}, {"filename": "libprequelite.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 147888, "date": "May 3 2019"}, {"filename": "libproc.dylib", "link_to": "libSystem.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 15, "date": "May 4 2019"}, {"filename": "libpthread.dylib", "link_to": "libSystem.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 15, "date": "May 4 2019"}, {"filename": "libpython.dylib", "link_to": "libpython2.7.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18, "date": "May 4 2019"}, {"filename": "libpython2.7.dylib", "link_to": "../../System/Library/Frameworks/Python.framework/Versions/2.7/Python", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 68, "date": "May 4 2019"}, {"filename": "libquic.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 763136, "date": "May 3 2019"}, {"filename": "libquit.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 25520, "date": "Jul 16 2019"}, {"filename": "libreadline.dylib", "link_to": "libedit.3.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 15, "date": "May 4 2019"}, {"filename": "libresolv.9.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 278144, "date": "Jan 24 01:14"}, {"filename": "libresolv.dylib", "link_to": "libresolv.9.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 17, "date": "May 4 2019"}, {"filename": "librpcsvc.dylib", "link_to": "libSystem.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 15, "date": "May 4 2019"}, {"filename": "libruby.2.3.0.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 388992, "date": "May 3 2019"}, {"filename": "libruby.2.3.dylib", "link_to": "libruby.2.3.0.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 19, "date": "May 4 2019"}, {"filename": "libruby.dylib", "link_to": "libruby.2.3.0.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 19, "date": "May 4 2019"}, {"filename": "libsandbox.1.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 669856, "date": "Jul 16 2019"}, {"filename": "libsandbox.dylib", "link_to": "libsandbox.1.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18, "date": "May 4 2019"}, {"filename": "libsasl2.2.0.1.dylib", "link_to": "libsasl2.2.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 16, "date": "May 4 2019"}, {"filename": "libsasl2.2.0.15.dylib", "link_to": "libsasl2.2.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 16, "date": "May 4 2019"}, {"filename": "libsasl2.2.0.21.dylib", "link_to": "libsasl2.2.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 16, "date": "May 4 2019"}, {"filename": "libsasl2.2.0.22.dylib", "link_to": "libsasl2.2.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 16, "date": "May 4 2019"}, {"filename": "libsasl2.2.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 217040, "date": "May 3 2019"}, {"filename": "libsasl2.dylib", "link_to": "libsasl2.2.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 16, "date": "May 4 2019"}, {"filename": "libspindump.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 27040, "date": "Jul 16 2019"}, {"filename": "libsqlite3.0.dylib", "link_to": "libsqlite3.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 16, "date": "May 4 2019"}, {"filename": "libsqlite3.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 6234688, "date": "Jul 16 2019"}, {"filename": "libssl.0.9.7.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 392912, "date": "May 3 2019"}, {"filename": "libssl.0.9.8.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 642464, "date": "May 3 2019"}, {"filename": "libssl.35.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 624624, "date": "Jul 16 2019"}, {"filename": "libssl.43.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 599888, "date": "Jul 16 2019"}, {"filename": "libssl.44.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 569984, "date": "Jul 16 2019"}, {"filename": "libssl.dylib", "link_to": "libssl.35.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 15, "date": "May 4 2019"}, {"filename": "libstdc++.6.0.9.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1417712, "date": "May 3 2019"}, {"filename": "libstdc++.6.dylib", "link_to": "libstdc++.6.0.9.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 21, "date": "May 4 2019"}, {"filename": "libstdc++.dylib", "link_to": "libstdc++.6.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 17, "date": "May 4 2019"}, {"filename": "libsysdiagnose.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 45168, "date": "Jul 16 2019"}, {"filename": "libsysmon.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 29856, "date": "Jan 24 01:14"}, {"filename": "libsystemstats.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 113936, "date": "Jan 24 01:14"}, {"filename": "libtailspin.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 141456, "date": "Jul 16 2019"}, {"filename": "libtcl.dylib", "link_to": "libtcl8.5.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 15, "date": "May 4 2019"}, {"filename": "libtcl8.5.dylib", "link_to": "../../System/Library/Frameworks/Tcl.framework/Versions/8.5/Tcl", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 62, "date": "May 4 2019"}, {"filename": "libtermcap.dylib", "link_to": "libncurses.5.4.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 20, "date": "May 4 2019"}, {"filename": "libtidy.A.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 519520, "date": "Jul 16 2019"}, {"filename": "libtidy.dylib", "link_to": "libtidy.A.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 15, "date": "May 4 2019"}, {"filename": "libtk.dylib", "link_to": "libtk8.5.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 14, "date": "May 4 2019"}, {"filename": "libtk8.5.dylib", "link_to": "../../System/Library/Frameworks/Tk.framework/Versions/8.5/Tk", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 60, "date": "May 4 2019"}, {"filename": "libtls.15.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 125104, "date": "Jul 16 2019"}, {"filename": "libtls.16.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 130416, "date": "Jul 16 2019"}, {"filename": "libtls.6.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 75472, "date": "Jul 16 2019"}, {"filename": "libtls.dylib", "link_to": "libtls.6.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 14, "date": "May 4 2019"}, {"filename": "libtzupdate.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 65376, "date": "May 3 2019"}, {"filename": "libusrtcp.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 886896, "date": "May 3 2019"}, {"filename": "libutil.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 82064, "date": "May 3 2019"}, {"filename": "libutil1.0.dylib", "link_to": "libutil.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 13, "date": "May 4 2019"}, {"filename": "libxar.1.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 188816, "date": "May 3 2019"}, {"filename": "libxar.dylib", "link_to": "libxar.1.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 14, "date": "May 4 2019"}, {"filename": "libxcselect.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 34736, "date": "Jul 16 2019"}, {"filename": "libxml2.2.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2262128, "date": "Jan 24 01:14"}, {"filename": "libxml2.dylib", "link_to": "libxml2.2.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 15, "date": "May 4 2019"}, {"filename": "libxslt.1.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 441952, "date": "Jan 24 01:14"}, {"filename": "libxslt.dylib", "link_to": "libxslt.1.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 15, "date": "May 4 2019"}, {"filename": "libz.1.1.3.dylib", "link_to": "libz.1.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 12, "date": "May 4 2019"}, {"filename": "libz.1.2.11.dylib", "link_to": "libz.1.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 12, "date": "May 4 2019"}, {"filename": "libz.1.2.5.dylib", "link_to": "libz.1.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 12, "date": "May 4 2019"}, {"filename": "libz.1.2.8.dylib", "link_to": "libz.1.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 12, "date": "May 4 2019"}, {"filename": "libz.1.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 186480, "date": "May 3 2019"}, {"filename": "libz.dylib", "link_to": "libz.1.dylib", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 12, "date": "May 4 2019"}, {"filename": "log", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 14, "owner": "root", "group": "wheel", "size": 448, "date": "Feb 7 23:29"}, {"filename": "pam", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 20, "owner": "root", "group": "wheel", "size": 640, "date": "Feb 7 23:29"}, {"filename": "php", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "wheel", "size": 128, "date": "Feb 22 2019"}, {"filename": "pkgconfig", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 11, "owner": "root", "group": "wheel", "size": 352, "date": "May 3 2019"}, {"filename": "python2.7", "link_to": "../../System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 75, "date": "May 4 2019"}, {"filename": "rpcsvc", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 9, "owner": "root", "group": "wheel", "size": 288, "date": "Jul 23 2019"}, {"filename": "ruby", "link_to": "../../System/Library/Frameworks/Ruby.framework/Versions/Current/usr/lib/ruby", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 76, "date": "May 4 2019"}, {"filename": "sasl2", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 22, "owner": "root", "group": "wheel", "size": 704, "date": "May 4 2019"}, {"filename": "sqlite3", "link_to": "/System/Library/Tcl/sqlite3", "parent": "/usr/lib", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 27, "date": "May 4 2019"}, {"filename": "ssh-keychain.dylib", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 53824, "date": "Jul 16 2019"}, {"filename": "swift", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 49, "owner": "root", "group": "wheel", "size": 1568, "date": "Jul 23 2019"}, {"filename": "system", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Feb 7 23:29"}, {"filename": "xpc", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "zsh", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Feb 22 2019"}, {"filename": ".", "parent": "/usr/lib/dtrace", "flags": "drwxr-xr-x", "links": 13, "owner": "root", "group": "wheel", "size": 416, "date": "May 3 2019"}, {"filename": "..", "parent": "/usr/lib/dtrace", "flags": "drwxr-xr-x", "links": 306, "owner": "root", "group": "wheel", "size": 9792, "date": "Feb 7 23:29"}, {"filename": "darwin.d", "parent": "/usr/lib/dtrace", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 13493, "date": "Apr 25 2019"}, {"filename": "dt_cpp.h", "parent": "/usr/lib/dtrace", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 1004, "date": "Feb 22 2019"}, {"filename": "errno.d", "parent": "/usr/lib/dtrace", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 7011, "date": "Apr 25 2019"}, {"filename": "io.d", "parent": "/usr/lib/dtrace", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 9616, "date": "Apr 25 2019"}, {"filename": "ip.d", "parent": "/usr/lib/dtrace", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 9305, "date": "Apr 25 2019"}, {"filename": "regs_x86_64.d", "parent": "/usr/lib/dtrace", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 2526, "date": "Apr 25 2019"}, {"filename": "sched.d", "parent": "/usr/lib/dtrace", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 2577, "date": "Apr 25 2019"}, {"filename": "signal.d", "parent": "/usr/lib/dtrace", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 2738, "date": "Apr 25 2019"}, {"filename": "socket.d", "parent": "/usr/lib/dtrace", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 2001, "date": "Apr 25 2019"}, {"filename": "tcp.d", "parent": "/usr/lib/dtrace", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 8626, "date": "Apr 25 2019"}, {"filename": "unistd.d", "parent": "/usr/lib/dtrace", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 1973, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/lib/groff", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "wheel", "size": 128, "date": "Feb 22 2019"}, {"filename": "..", "parent": "/usr/lib/groff", "flags": "drwxr-xr-x", "links": 306, "owner": "root", "group": "wheel", "size": 9792, "date": "Feb 7 23:29"}, {"filename": "groffer", "parent": "/usr/lib/groff", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Feb 22 2019"}, {"filename": "site-tmac", "parent": "/usr/lib/groff", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "wheel", "size": 64, "date": "Feb 22 2019"}, {"filename": ".", "parent": "/usr/lib/groff/groffer", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Feb 22 2019"}, {"filename": "..", "parent": "/usr/lib/groff/groffer", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "wheel", "size": 128, "date": "Feb 22 2019"}, {"filename": "groffer2.sh", "parent": "/usr/lib/groff/groffer", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 141865, "date": "Feb 22 2019"}, {"filename": ".", "parent": "/usr/lib/groff/site-tmac", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "wheel", "size": 64, "date": "Feb 22 2019"}, {"filename": "..", "parent": "/usr/lib/groff/site-tmac", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "wheel", "size": 128, "date": "Feb 22 2019"}, {"filename": ".", "parent": "/usr/lib/log", "flags": "drwxr-xr-x", "links": 14, "owner": "root", "group": "wheel", "size": 448, "date": "Feb 7 23:29"}, {"filename": "..", "parent": "/usr/lib/log", "flags": "drwxr-xr-x", "links": 306, "owner": "root", "group": "wheel", "size": 9792, "date": "Feb 7 23:29"}, {"filename": "liblog_AppStoreDaemon.dylib", "parent": "/usr/lib/log", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 32256, "date": "Jul 16 2019"}, {"filename": "liblog_AppleLDAPTypes.dylib", "parent": "/usr/lib/log", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 35872, "date": "May 3 2019"}, {"filename": "liblog_SystemConfiguration.dylib", "parent": "/usr/lib/log", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 33840, "date": "Jan 24 01:14"}, {"filename": "liblog_audio.dylib", "parent": "/usr/lib/log", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 114352, "date": "Jan 24 01:14"}, {"filename": "liblog_coreacc.dylib", "parent": "/usr/lib/log", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 37952, "date": "Jul 16 2019"}, {"filename": "liblog_geo.dylib", "parent": "/usr/lib/log", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 162608, "date": "Jan 24 01:13"}, {"filename": "liblog_location.dylib", "parent": "/usr/lib/log", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 83360, "date": "Jul 16 2019"}, {"filename": "liblog_network.dylib", "parent": "/usr/lib/log", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23712, "date": "May 3 2019"}, {"filename": "liblog_odtypes.dylib", "parent": "/usr/lib/log", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 27520, "date": "May 3 2019"}, {"filename": "liblog_signpost.description.dylib", "parent": "/usr/lib/log", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18608, "date": "Jul 16 2019"}, {"filename": "liblog_signpost.dylib", "parent": "/usr/lib/log", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18112, "date": "Jul 16 2019"}, {"filename": "liblog_signpost.telemetry.dylib", "parent": "/usr/lib/log", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18608, "date": "Jul 16 2019"}, {"filename": ".", "parent": "/usr/lib/pam", "flags": "drwxr-xr-x", "links": 20, "owner": "root", "group": "wheel", "size": 640, "date": "Feb 7 23:29"}, {"filename": "..", "parent": "/usr/lib/pam", "flags": "drwxr-xr-x", "links": 306, "owner": "root", "group": "wheel", "size": 9792, "date": "Feb 7 23:29"}, {"filename": "pam_aks.so.2", "parent": "/usr/lib/pam", "flags": "-r--r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 19024, "date": "Jan 24 01:13"}, {"filename": "pam_deny.so.2", "parent": "/usr/lib/pam", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 34288, "date": "May 3 2019"}, {"filename": "pam_env.so.2", "parent": "/usr/lib/pam", "flags": "-r--r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 60768, "date": "Jan 24 01:14"}, {"filename": "pam_group.so.2", "parent": "/usr/lib/pam", "flags": "-r--r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 43184, "date": "Jan 24 01:13"}, {"filename": "pam_krb5.so.2", "parent": "/usr/lib/pam", "flags": "-r--r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 100784, "date": "Jan 24 01:13"}, {"filename": "pam_launchd.so.2", "parent": "/usr/lib/pam", "flags": "-r--r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 43776, "date": "Jan 24 01:13"}, {"filename": "pam_localauthentication.so.2", "parent": "/usr/lib/pam", "flags": "-r--r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 91936, "date": "Jan 24 01:14"}, {"filename": "pam_mount.so.2", "parent": "/usr/lib/pam", "flags": "-r--r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 77600, "date": "Jan 24 01:13"}, {"filename": "pam_nologin.so.2", "parent": "/usr/lib/pam", "flags": "-r--r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 43056, "date": "Jan 24 01:13"}, {"filename": "pam_ntlm.so.2", "parent": "/usr/lib/pam", "flags": "-r--r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 68432, "date": "Jan 24 01:13"}, {"filename": "pam_opendirectory.so.2", "parent": "/usr/lib/pam", "flags": "-r--r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 72768, "date": "Jan 24 01:14"}, {"filename": "pam_permit.so.2", "parent": "/usr/lib/pam", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 34288, "date": "May 3 2019"}, {"filename": "pam_rootok.so.2", "parent": "/usr/lib/pam", "flags": "-r--r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 42496, "date": "Jan 24 01:13"}, {"filename": "pam_sacl.so.2", "parent": "/usr/lib/pam", "flags": "-r--r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 43088, "date": "Jan 24 01:13"}, {"filename": "pam_self.so.2", "parent": "/usr/lib/pam", "flags": "-r--r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 42720, "date": "Jan 24 01:14"}, {"filename": "pam_smartcard.so.2", "parent": "/usr/lib/pam", "flags": "-r--r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 143408, "date": "Jan 24 01:14"}, {"filename": "pam_tid.so.2", "parent": "/usr/lib/pam", "flags": "-r--r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 100464, "date": "Jan 24 01:14"}, {"filename": "pam_uwtmp.so.2", "parent": "/usr/lib/pam", "flags": "-r--r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 43200, "date": "Jan 24 01:13"}, {"filename": ".", "parent": "/usr/lib/php", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "wheel", "size": 128, "date": "Feb 22 2019"}, {"filename": "..", "parent": "/usr/lib/php", "flags": "drwxr-xr-x", "links": 306, "owner": "root", "group": "wheel", "size": 9792, "date": "Feb 7 23:29"}, {"filename": "build", "parent": "/usr/lib/php", "flags": "drwxr-xr-x", "links": 14, "owner": "root", "group": "wheel", "size": 448, "date": "Feb 7 23:29"}, {"filename": "extensions", "parent": "/usr/lib/php", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Feb 22 2019"}, {"filename": ".", "parent": "/usr/lib/php/build", "flags": "drwxr-xr-x", "links": 14, "owner": "root", "group": "wheel", "size": 448, "date": "Feb 7 23:29"}, {"filename": "..", "parent": "/usr/lib/php/build", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "wheel", "size": 128, "date": "Feb 22 2019"}, {"filename": "Makefile.global", "parent": "/usr/lib/php/build", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 7156, "date": "Feb 22 2019"}, {"filename": "acinclude.m4", "parent": "/usr/lib/php/build", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 84357, "date": "Jan 6 22:21"}, {"filename": "ax_check_compile_flag.m4", "parent": "/usr/lib/php/build", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 3330, "date": "Feb 22 2019"}, {"filename": "config.guess", "parent": "/usr/lib/php/build", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 42938, "date": "Feb 22 2019"}, {"filename": "config.sub", "parent": "/usr/lib/php/build", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 35987, "date": "Feb 22 2019"}, {"filename": "libtool.m4", "parent": "/usr/lib/php/build", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 230377, "date": "Feb 22 2019"}, {"filename": "ltmain.sh", "parent": "/usr/lib/php/build", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 199728, "date": "Feb 22 2019"}, {"filename": "mkdep.awk", "parent": "/usr/lib/php/build", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 2215, "date": "Jan 6 22:21"}, {"filename": "phpize.m4", "parent": "/usr/lib/php/build", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 4684, "date": "Jan 6 22:21"}, {"filename": "run-tests.php", "parent": "/usr/lib/php/build", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 82608, "date": "Jan 6 22:21"}, {"filename": "scan_makefile_in.awk", "parent": "/usr/lib/php/build", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 409, "date": "Jan 6 22:21"}, {"filename": "shtool", "parent": "/usr/lib/php/build", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 65761, "date": "Feb 22 2019"}, {"filename": ".", "parent": "/usr/lib/php/extensions", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Feb 22 2019"}, {"filename": "..", "parent": "/usr/lib/php/extensions", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "wheel", "size": 128, "date": "Feb 22 2019"}, {"filename": "no-debug-non-zts-20160303", "parent": "/usr/lib/php/extensions", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "wheel", "size": 128, "date": "Feb 7 23:29"}, {"filename": ".", "parent": "/usr/lib/php/extensions/no-debug-non-zts-20160303", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "wheel", "size": 128, "date": "Feb 7 23:29"}, {"filename": "..", "parent": "/usr/lib/php/extensions/no-debug-non-zts-20160303", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Feb 22 2019"}, {"filename": "opcache.so", "parent": "/usr/lib/php/extensions/no-debug-non-zts-20160303", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 363712, "date": "Jan 24 01:13"}, {"filename": "xdebug.so", "parent": "/usr/lib/php/extensions/no-debug-non-zts-20160303", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 245424, "date": "Jan 24 01:13"}, {"filename": ".", "parent": "/usr/lib/pkgconfig", "flags": "drwxr-xr-x", "links": 11, "owner": "root", "group": "wheel", "size": 352, "date": "May 3 2019"}, {"filename": "..", "parent": "/usr/lib/pkgconfig", "flags": "drwxr-xr-x", "links": 306, "owner": "root", "group": "wheel", "size": 9792, "date": "Feb 7 23:29"}, {"filename": "apr-1.pc", "parent": "/usr/lib/pkgconfig", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 341, "date": "Feb 22 2019"}, {"filename": "apr-util-1.pc", "parent": "/usr/lib/pkgconfig", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 433, "date": "Feb 22 2019"}, {"filename": "libecpg.pc", "parent": "/usr/lib/pkgconfig", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 465, "date": "Feb 22 2019"}, {"filename": "libecpg_compat.pc", "parent": "/usr/lib/pkgconfig", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 493, "date": "Feb 22 2019"}, {"filename": "libiodbc.pc", "parent": "/usr/lib/pkgconfig", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 3591, "date": "Feb 22 2019"}, {"filename": "libpcre.pc", "parent": "/usr/lib/pkgconfig", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 313, "date": "Feb 22 2019"}, {"filename": "libpcreposix.pc", "parent": "/usr/lib/pkgconfig", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 301, "date": "Feb 22 2019"}, {"filename": "libpgtypes.pc", "parent": "/usr/lib/pkgconfig", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 448, "date": "Feb 22 2019"}, {"filename": "libpq.pc", "parent": "/usr/lib/pkgconfig", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 453, "date": "Feb 22 2019"}, {"filename": ".", "parent": "/usr/lib/rpcsvc", "flags": "drwxr-xr-x", "links": 9, "owner": "root", "group": "wheel", "size": 288, "date": "Jul 23 2019"}, {"filename": "..", "parent": "/usr/lib/rpcsvc", "flags": "drwxr-xr-x", "links": 306, "owner": "root", "group": "wheel", "size": 9792, "date": "Feb 7 23:29"}, {"filename": "dssetup.bundle", "parent": "/usr/lib/rpcsvc", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 61408, "date": "Jul 16 2019"}, {"filename": "echosvc.bundle", "parent": "/usr/lib/rpcsvc", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 27696, "date": "Jul 16 2019"}, {"filename": "lsarpc.bundle", "parent": "/usr/lib/rpcsvc", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 387088, "date": "Jul 16 2019"}, {"filename": "mdssvc.bundle", "parent": "/usr/lib/rpcsvc", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 134720, "date": "Jul 16 2019"}, {"filename": "netlogon.bundle", "parent": "/usr/lib/rpcsvc", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 488592, "date": "Jul 16 2019"}, {"filename": "srvsvc.bundle", "parent": "/usr/lib/rpcsvc", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 435280, "date": "Jul 16 2019"}, {"filename": "wkssvc.bundle", "parent": "/usr/lib/rpcsvc", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 96160, "date": "Jul 16 2019"}, {"filename": ".", "parent": "/usr/lib/sasl2", "flags": "drwxr-xr-x", "links": 22, "owner": "root", "group": "wheel", "size": 704, "date": "May 4 2019"}, {"filename": "..", "parent": "/usr/lib/sasl2", "flags": "drwxr-xr-x", "links": 306, "owner": "root", "group": "wheel", "size": 9792, "date": "Feb 7 23:29"}, {"filename": "apop.so", "parent": "/usr/lib/sasl2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 60688, "date": "May 3 2019"}, {"filename": "atoken.so", "parent": "/usr/lib/sasl2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 52048, "date": "May 3 2019"}, {"filename": "dhx.so", "parent": "/usr/lib/sasl2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 241344, "date": "May 3 2019"}, {"filename": "digestmd5WebDAV.so", "parent": "/usr/lib/sasl2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 116512, "date": "May 3 2019"}, {"filename": "libanonymous.2.so", "parent": "/usr/lib/sasl2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 57008, "date": "May 3 2019"}, {"filename": "libcrammd5.2.so", "parent": "/usr/lib/sasl2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 61232, "date": "May 3 2019"}, {"filename": "libdigestmd5.2.so", "parent": "/usr/lib/sasl2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 120432, "date": "May 3 2019"}, {"filename": "libgssapiv2.2.0.18.so", "parent": "/usr/lib/sasl2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 84176, "date": "May 3 2019"}, {"filename": "libgssapiv2.2.so", "link_to": "libgssapiv2.2.0.18.so", "parent": "/usr/lib/sasl2", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 21, "date": "May 4 2019"}, {"filename": "libntlm.so", "parent": "/usr/lib/sasl2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 87040, "date": "May 3 2019"}, {"filename": "libplain.2.so", "parent": "/usr/lib/sasl2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 61008, "date": "May 3 2019"}, {"filename": "login.so", "parent": "/usr/lib/sasl2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 61024, "date": "May 3 2019"}, {"filename": "mschapv2.so", "parent": "/usr/lib/sasl2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 74512, "date": "May 3 2019"}, {"filename": "oauthbearer.so", "parent": "/usr/lib/sasl2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 56464, "date": "May 3 2019"}, {"filename": "openldap", "parent": "/usr/lib/sasl2", "flags": "drwxr-xr-x", "links": 5, "owner": "root", "group": "wheel", "size": 160, "date": "May 4 2019"}, {"filename": "plain-clienttoken.so", "parent": "/usr/lib/sasl2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 52128, "date": "May 3 2019"}, {"filename": "pwauxprop.so", "parent": "/usr/lib/sasl2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 28336, "date": "May 3 2019"}, {"filename": "shadow_auxprop.so", "parent": "/usr/lib/sasl2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 66864, "date": "May 3 2019"}, {"filename": "smb_ntlmv2.so", "parent": "/usr/lib/sasl2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 65840, "date": "May 3 2019"}, {"filename": "srp.so", "parent": "/usr/lib/sasl2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 111024, "date": "May 3 2019"}, {"filename": ".", "parent": "/usr/lib/sasl2/openldap", "flags": "drwxr-xr-x", "links": 5, "owner": "root", "group": "wheel", "size": 160, "date": "May 4 2019"}, {"filename": "..", "parent": "/usr/lib/sasl2/openldap", "flags": "drwxr-xr-x", "links": 22, "owner": "root", "group": "wheel", "size": 704, "date": "May 4 2019"}, {"filename": "libcrammd5.2.so", "link_to": "../libcrammd5.2.so", "parent": "/usr/lib/sasl2/openldap", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18, "date": "May 4 2019"}, {"filename": "libgssapiv2.2.so", "link_to": "../libgssapiv2.2.so", "parent": "/usr/lib/sasl2/openldap", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 19, "date": "May 4 2019"}, {"filename": "srp.so", "link_to": "../srp.so", "parent": "/usr/lib/sasl2/openldap", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 9, "date": "May 4 2019"}, {"filename": ".", "parent": "/usr/lib/swift", "flags": "drwxr-xr-x", "links": 49, "owner": "root", "group": "wheel", "size": 1568, "date": "Jul 23 2019"}, {"filename": "..", "parent": "/usr/lib/swift", "flags": "drwxr-xr-x", "links": 306, "owner": "root", "group": "wheel", "size": 9792, "date": "Feb 7 23:29"}, {"filename": "libswiftAVFoundation.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 110320, "date": "Jul 16 2019"}, {"filename": "libswiftAccelerate.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 53840, "date": "Jul 16 2019"}, {"filename": "libswiftAppKit.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 211248, "date": "Jul 16 2019"}, {"filename": "libswiftCloudKit.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 196096, "date": "Jul 16 2019"}, {"filename": "libswiftContacts.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 56176, "date": "Jul 16 2019"}, {"filename": "libswiftCore.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 6698944, "date": "Jul 16 2019"}, {"filename": "libswiftCoreAudio.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 67392, "date": "Jul 16 2019"}, {"filename": "libswiftCoreData.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 86064, "date": "Jul 16 2019"}, {"filename": "libswiftCoreFoundation.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 28560, "date": "Jul 16 2019"}, {"filename": "libswiftCoreGraphics.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 183024, "date": "Jul 16 2019"}, {"filename": "libswiftCoreImage.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 32208, "date": "Jul 16 2019"}, {"filename": "libswiftCoreLocation.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 41664, "date": "Jul 16 2019"}, {"filename": "libswiftCoreMedia.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 62800, "date": "Jul 16 2019"}, {"filename": "libswiftCreateML.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2539376, "date": "Jul 16 2019"}, {"filename": "libswiftCryptoTokenKit.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 45600, "date": "Jul 16 2019"}, {"filename": "libswiftDarwin.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 87440, "date": "Jul 16 2019"}, {"filename": "libswiftDemangle.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 257952, "date": "Jul 16 2019"}, {"filename": "libswiftDispatch.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 320912, "date": "Jul 16 2019"}, {"filename": "libswiftFoundation.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 3234912, "date": "Jul 16 2019"}, {"filename": "libswiftGLKit.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 42720, "date": "Jul 16 2019"}, {"filename": "libswiftGameplayKit.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 54608, "date": "Jul 16 2019"}, {"filename": "libswiftIOKit.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 31984, "date": "Jul 16 2019"}, {"filename": "libswiftIntents.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 44464, "date": "Jul 16 2019"}, {"filename": "libswiftMapKit.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 49920, "date": "Jul 16 2019"}, {"filename": "libswiftMetal.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 69856, "date": "Jul 16 2019"}, {"filename": "libswiftMetalKit.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 47984, "date": "Jul 16 2019"}, {"filename": "libswiftModelIO.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 71696, "date": "Jul 16 2019"}, {"filename": "libswiftNaturalLanguage.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 83024, "date": "Jul 16 2019"}, {"filename": "libswiftNetwork.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 436432, "date": "Jul 16 2019"}, {"filename": "libswiftObjectiveC.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 49904, "date": "Jul 16 2019"}, {"filename": "libswiftOpenCL.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 28880, "date": "Jul 16 2019"}, {"filename": "libswiftPhotos.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 46928, "date": "Jul 16 2019"}, {"filename": "libswiftQuartzCore.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 45024, "date": "Jul 16 2019"}, {"filename": "libswiftRemoteMirror.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 481584, "date": "Jul 16 2019"}, {"filename": "libswiftRemoteMirror42.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 447120, "date": "Jul 16 2019"}, {"filename": "libswiftRemoteMirrorLegacy.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 401840, "date": "Jul 16 2019"}, {"filename": "libswiftSIMDOperators.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 21952, "date": "Jul 16 2019"}, {"filename": "libswiftSafariServices.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 37520, "date": "Jul 16 2019"}, {"filename": "libswiftSceneKit.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 75904, "date": "Jul 16 2019"}, {"filename": "libswiftSpriteKit.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 57344, "date": "Jul 16 2019"}, {"filename": "libswiftSwiftOnoneSupport.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 382624, "date": "Jul 16 2019"}, {"filename": "libswiftUIKit.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 153680, "date": "Jul 16 2019"}, {"filename": "libswiftVision.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 42864, "date": "Jul 16 2019"}, {"filename": "libswiftXCTest.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 123344, "date": "Jul 16 2019"}, {"filename": "libswiftXPC.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 32160, "date": "Jul 16 2019"}, {"filename": "libswiftos.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 59472, "date": "Jul 16 2019"}, {"filename": "libswiftsimd.dylib", "parent": "/usr/lib/swift", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 299584, "date": "Jul 16 2019"}, {"filename": ".", "parent": "/usr/lib/system", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Feb 7 23:29"}, {"filename": "..", "parent": "/usr/lib/system", "flags": "drwxr-xr-x", "links": 306, "owner": "root", "group": "wheel", "size": 9792, "date": "Feb 7 23:29"}, {"filename": "introspection", "parent": "/usr/lib/system", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "wheel", "size": 128, "date": "Jul 23 2019"}, {"filename": "libcache.dylib", "parent": "/usr/lib/system", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 83936, "date": "May 3 2019"}, {"filename": "libcommonCrypto.dylib", "parent": "/usr/lib/system", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 193424, "date": "May 3 2019"}, {"filename": "libcompiler_rt.dylib", "parent": "/usr/lib/system", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 161280, "date": "May 3 2019"}, {"filename": "libcopyfile.dylib", "parent": "/usr/lib/system", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 136960, "date": "May 3 2019"}, {"filename": "libcorecrypto.dylib", "parent": "/usr/lib/system", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1185792, "date": "Jul 16 2019"}, {"filename": "libcorecrypto_trace.dylib", "parent": "/usr/lib/system", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1194640, "date": "Jul 16 2019"}, {"filename": "libdispatch.dylib", "parent": "/usr/lib/system", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 828656, "date": "Jul 16 2019"}, {"filename": "libdyld.dylib", "parent": "/usr/lib/system", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 605024, "date": "May 3 2019"}, {"filename": "libkeymgr.dylib", "parent": "/usr/lib/system", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 44512, "date": "May 3 2019"}, {"filename": "libkxld.dylib", "parent": "/usr/lib/system", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 148528, "date": "Jan 24 01:13"}, {"filename": "liblaunch.dylib", "parent": "/usr/lib/system", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 58704, "date": "Jan 24 01:14"}, {"filename": "libmacho.dylib", "parent": "/usr/lib/system", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 99264, "date": "Jul 16 2019"}, {"filename": "libmathCommon.A.dylib", "link_to": "../libSystem.dylib", "parent": "/usr/lib/system", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18, "date": "May 4 2019"}, {"filename": "libmathCommon.dylib", "link_to": "../libSystem.dylib", "parent": "/usr/lib/system", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18, "date": "May 4 2019"}, {"filename": "libquarantine.dylib", "parent": "/usr/lib/system", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 73520, "date": "Jan 24 01:13"}, {"filename": "libremovefile.dylib", "parent": "/usr/lib/system", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 57808, "date": "May 3 2019"}, {"filename": "libsystem_asl.dylib", "parent": "/usr/lib/system", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 297920, "date": "May 3 2019"}, {"filename": "libsystem_blocks.dylib", "parent": "/usr/lib/system", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 44176, "date": "May 3 2019"}, {"filename": "libsystem_c.dylib", "parent": "/usr/lib/system", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1437088, "date": "May 3 2019"}, {"filename": "libsystem_configuration.dylib", "parent": "/usr/lib/system", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 84336, "date": "Jul 16 2019"}, {"filename": "libsystem_coreservices.dylib", "parent": "/usr/lib/system", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 77168, "date": "May 3 2019"}, {"filename": "libsystem_darwin.dylib", "parent": "/usr/lib/system", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 136208, "date": "May 3 2019"}, {"filename": "libsystem_dnssd.dylib", "parent": "/usr/lib/system", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 102016, "date": "Jan 24 01:13"}, {"filename": "libsystem_info.dylib", "parent": "/usr/lib/system", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 804064, "date": "May 3 2019"}, {"filename": "libsystem_kernel.dylib", "parent": "/usr/lib/system", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 545504, "date": "Jan 24 01:13"}, {"filename": "libsystem_m.dylib", "parent": "/usr/lib/system", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 755200, "date": "May 3 2019"}, {"filename": "libsystem_malloc.dylib", "parent": "/usr/lib/system", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 408784, "date": "Jul 16 2019"}, {"filename": "libsystem_networkextension.dylib", "parent": "/usr/lib/system", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 182304, "date": "May 3 2019"}, {"filename": "libsystem_notify.dylib", "parent": "/usr/lib/system", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 110528, "date": "May 3 2019"}, {"filename": "libsystem_platform.dylib", "parent": "/usr/lib/system", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 141568, "date": "Jul 16 2019"}, {"filename": "libsystem_pthread.dylib", "parent": "/usr/lib/system", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 171856, "date": "May 3 2019"}, {"filename": "libsystem_sandbox.dylib", "parent": "/usr/lib/system", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 85104, "date": "Jul 16 2019"}, {"filename": "libsystem_secinit.dylib", "parent": "/usr/lib/system", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 67152, "date": "Jul 16 2019"}, {"filename": "libsystem_symptoms.dylib", "parent": "/usr/lib/system", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 117136, "date": "Jul 16 2019"}, {"filename": "libsystem_trace.dylib", "parent": "/usr/lib/system", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 295696, "date": "Jan 24 01:14"}, {"filename": "libunc.dylib", "parent": "/usr/lib/system", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 34080, "date": "May 3 2019"}, {"filename": "libunwind.dylib", "parent": "/usr/lib/system", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 112544, "date": "May 3 2019"}, {"filename": "libxpc.dylib", "parent": "/usr/lib/system", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 656224, "date": "Jan 24 01:13"}, {"filename": "wordexp-helper", "parent": "/usr/lib/system", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 42576, "date": "Jan 24 01:13"}, {"filename": ".", "parent": "/usr/lib/system/introspection", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "wheel", "size": 128, "date": "Jul 23 2019"}, {"filename": "..", "parent": "/usr/lib/system/introspection", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Feb 7 23:29"}, {"filename": "libdispatch.dylib", "parent": "/usr/lib/system/introspection", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 960848, "date": "Jul 16 2019"}, {"filename": "libsystem_pthread.dylib", "parent": "/usr/lib/system/introspection", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 196528, "date": "May 3 2019"}, {"filename": ".", "parent": "/usr/lib/xpc", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/lib/xpc", "flags": "drwxr-xr-x", "links": 306, "owner": "root", "group": "wheel", "size": 9792, "date": "Feb 7 23:29"}, {"filename": "support.bundle", "parent": "/usr/lib/xpc", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/lib/xpc/support.bundle", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/lib/xpc/support.bundle", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "Contents", "parent": "/usr/lib/xpc/support.bundle", "flags": "drwxr-xr-x", "links": 6, "owner": "root", "group": "wheel", "size": 192, "date": "Feb 7 23:29"}, {"filename": ".", "parent": "/usr/lib/xpc/support.bundle/Contents", "flags": "drwxr-xr-x", "links": 6, "owner": "root", "group": "wheel", "size": 192, "date": "Feb 7 23:29"}, {"filename": "..", "parent": "/usr/lib/xpc/support.bundle/Contents", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "Info.plist", "parent": "/usr/lib/xpc/support.bundle/Contents", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 1352, "date": "Jan 9 01:35"}, {"filename": "MacOS", "parent": "/usr/lib/xpc/support.bundle/Contents", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Feb 7 23:29"}, {"filename": "_CodeSignature", "parent": "/usr/lib/xpc/support.bundle/Contents", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Feb 7 23:29"}, {"filename": "version.plist", "parent": "/usr/lib/xpc/support.bundle/Contents", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 510, "date": "Jan 9 01:35"}, {"filename": ".", "parent": "/usr/lib/xpc/support.bundle/Contents/MacOS", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Feb 7 23:29"}, {"filename": "..", "parent": "/usr/lib/xpc/support.bundle/Contents/MacOS", "flags": "drwxr-xr-x", "links": 6, "owner": "root", "group": "wheel", "size": 192, "date": "Feb 7 23:29"}, {"filename": "support", "parent": "/usr/lib/xpc/support.bundle/Contents/MacOS", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 72960, "date": "Jan 24 01:19"}, {"filename": ".", "parent": "/usr/lib/xpc/support.bundle/Contents/_CodeSignature", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Feb 7 23:29"}, {"filename": "..", "parent": "/usr/lib/xpc/support.bundle/Contents/_CodeSignature", "flags": "drwxr-xr-x", "links": 6, "owner": "root", "group": "wheel", "size": 192, "date": "Feb 7 23:29"}, {"filename": "CodeResources", "parent": "/usr/lib/xpc/support.bundle/Contents/_CodeSignature", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 2428, "date": "Jan 24 01:19"}, {"filename": ".", "parent": "/usr/lib/zsh", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Feb 22 2019"}, {"filename": "..", "parent": "/usr/lib/zsh", "flags": "drwxr-xr-x", "links": 306, "owner": "root", "group": "wheel", "size": 9792, "date": "Feb 7 23:29"}, {"filename": "5.3", "parent": "/usr/lib/zsh", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Feb 22 2019"}, {"filename": ".", "parent": "/usr/lib/zsh/5.3", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Feb 22 2019"}, {"filename": "..", "parent": "/usr/lib/zsh/5.3", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Feb 22 2019"}, {"filename": "zsh", "parent": "/usr/lib/zsh/5.3", "flags": "drwxr-xr-x", "links": 35, "owner": "root", "group": "wheel", "size": 1120, "date": "May 3 2019"}, {"filename": ".", "parent": "/usr/lib/zsh/5.3/zsh", "flags": "drwxr-xr-x", "links": 35, "owner": "root", "group": "wheel", "size": 1120, "date": "May 3 2019"}, {"filename": "..", "parent": "/usr/lib/zsh/5.3/zsh", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Feb 22 2019"}, {"filename": "attr.so", "parent": "/usr/lib/zsh/5.3/zsh", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18960, "date": "May 3 2019"}, {"filename": "cap.so", "parent": "/usr/lib/zsh/5.3/zsh", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18208, "date": "May 3 2019"}, {"filename": "clone.so", "parent": "/usr/lib/zsh/5.3/zsh", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 19248, "date": "May 3 2019"}, {"filename": "compctl.so", "parent": "/usr/lib/zsh/5.3/zsh", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 66624, "date": "May 3 2019"}, {"filename": "complete.so", "parent": "/usr/lib/zsh/5.3/zsh", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 129360, "date": "May 3 2019"}, {"filename": "complist.so", "parent": "/usr/lib/zsh/5.3/zsh", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 63904, "date": "May 3 2019"}, {"filename": "computil.so", "parent": "/usr/lib/zsh/5.3/zsh", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 65280, "date": "May 3 2019"}, {"filename": "curses.so", "parent": "/usr/lib/zsh/5.3/zsh", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 36016, "date": "May 3 2019"}, {"filename": "datetime.so", "parent": "/usr/lib/zsh/5.3/zsh", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 19968, "date": "May 3 2019"}, {"filename": "deltochar.so", "parent": "/usr/lib/zsh/5.3/zsh", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18768, "date": "May 3 2019"}, {"filename": "example.so", "parent": "/usr/lib/zsh/5.3/zsh", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 19200, "date": "May 3 2019"}, {"filename": "files.so", "parent": "/usr/lib/zsh/5.3/zsh", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 29152, "date": "May 3 2019"}, {"filename": "langinfo.so", "parent": "/usr/lib/zsh/5.3/zsh", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18480, "date": "May 3 2019"}, {"filename": "mapfile.so", "parent": "/usr/lib/zsh/5.3/zsh", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 19392, "date": "May 3 2019"}, {"filename": "mathfunc.so", "parent": "/usr/lib/zsh/5.3/zsh", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24816, "date": "May 3 2019"}, {"filename": "net", "parent": "/usr/lib/zsh/5.3/zsh", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "wheel", "size": 128, "date": "May 3 2019"}, {"filename": "newuser.so", "parent": "/usr/lib/zsh/5.3/zsh", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18480, "date": "May 3 2019"}, {"filename": "param", "parent": "/usr/lib/zsh/5.3/zsh", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "May 3 2019"}, {"filename": "parameter.so", "parent": "/usr/lib/zsh/5.3/zsh", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 39408, "date": "May 3 2019"}, {"filename": "regex.so", "parent": "/usr/lib/zsh/5.3/zsh", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 19216, "date": "May 3 2019"}, {"filename": "rlimits.so", "parent": "/usr/lib/zsh/5.3/zsh", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23088, "date": "May 3 2019"}, {"filename": "sched.so", "parent": "/usr/lib/zsh/5.3/zsh", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23712, "date": "May 3 2019"}, {"filename": "stat.so", "parent": "/usr/lib/zsh/5.3/zsh", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23888, "date": "May 3 2019"}, {"filename": "system.so", "parent": "/usr/lib/zsh/5.3/zsh", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 29152, "date": "May 3 2019"}, {"filename": "termcap.so", "parent": "/usr/lib/zsh/5.3/zsh", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 19376, "date": "May 3 2019"}, {"filename": "terminfo.so", "parent": "/usr/lib/zsh/5.3/zsh", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 19408, "date": "May 3 2019"}, {"filename": "zftp.so", "parent": "/usr/lib/zsh/5.3/zsh", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 44912, "date": "May 3 2019"}, {"filename": "zle.so", "parent": "/usr/lib/zsh/5.3/zsh", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 254432, "date": "May 3 2019"}, {"filename": "zleparameter.so", "parent": "/usr/lib/zsh/5.3/zsh", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18880, "date": "May 3 2019"}, {"filename": "zprof.so", "parent": "/usr/lib/zsh/5.3/zsh", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 22912, "date": "May 3 2019"}, {"filename": "zpty.so", "parent": "/usr/lib/zsh/5.3/zsh", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 26240, "date": "May 3 2019"}, {"filename": "zselect.so", "parent": "/usr/lib/zsh/5.3/zsh", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23552, "date": "May 3 2019"}, {"filename": "zutil.so", "parent": "/usr/lib/zsh/5.3/zsh", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 38992, "date": "May 3 2019"}, {"filename": ".", "parent": "/usr/lib/zsh/5.3/zsh/net", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "wheel", "size": 128, "date": "May 3 2019"}, {"filename": "..", "parent": "/usr/lib/zsh/5.3/zsh/net", "flags": "drwxr-xr-x", "links": 35, "owner": "root", "group": "wheel", "size": 1120, "date": "May 3 2019"}, {"filename": "socket.so", "parent": "/usr/lib/zsh/5.3/zsh/net", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 19296, "date": "May 3 2019"}, {"filename": "tcp.so", "parent": "/usr/lib/zsh/5.3/zsh/net", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24448, "date": "May 3 2019"}, {"filename": ".", "parent": "/usr/lib/zsh/5.3/zsh/param", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "May 3 2019"}, {"filename": "..", "parent": "/usr/lib/zsh/5.3/zsh/param", "flags": "drwxr-xr-x", "links": 35, "owner": "root", "group": "wheel", "size": 1120, "date": "May 3 2019"}, {"filename": "private.so", "parent": "/usr/lib/zsh/5.3/zsh/param", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 28224, "date": "May 3 2019"}, {"filename": ".", "parent": "/usr/libexec", "flags": "drwxr-xr-x", "links": 249, "owner": "root", "group": "wheel", "size": 7968, "date": "Feb 7 23:29"}, {"filename": "..", "parent": "/usr/libexec", "flags": "drwxr-xr-x@", "links": 9, "owner": "root", "group": "wheel", "size": 288, "date": "May 3 2019"}, {"filename": "AdvancedCommandsMigrator", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24432, "date": "May 3 2019"}, {"filename": "AirPlayXPCHelper", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 32288, "date": "Jan 24 01:14"}, {"filename": "AppSandbox", "parent": "/usr/libexec", "flags": "drwxr-xr-x", "links": 5, "owner": "root", "group": "wheel", "size": 160, "date": "Jul 23 2019"}, {"filename": "AppleQEMUGuestAgent", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 78608, "date": "Jan 24 01:14"}, {"filename": "ApplicationFirewall", "parent": "/usr/libexec", "flags": "drwxr-xr-x", "links": 7, "owner": "root", "group": "wheel", "size": 224, "date": "Feb 7 23:29"}, {"filename": "AssetCache", "parent": "/usr/libexec", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "wheel", "size": 128, "date": "Jul 23 2019"}, {"filename": "AssetCacheAgent", "parent": "/usr/libexec", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Jul 23 2019"}, {"filename": "CSCSupportd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 124176, "date": "Jul 16 2019"}, {"filename": "DataDetectorsLocalSources", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 32576, "date": "Jul 16 2019"}, {"filename": "DataDetectorsSourceAccess", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 25008, "date": "Jul 16 2019"}, {"filename": "DeveloperTools", "parent": "/usr/libexec", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Jul 23 2019"}, {"filename": "FDERecoveryAgent", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 30576, "date": "Jul 16 2019"}, {"filename": "FirmwareUpdateLauncher", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 50560, "date": "Jul 16 2019"}, {"filename": "IOAccelMemoryInfoCollector", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 30176, "date": "Jan 24 01:14"}, {"filename": "InternetSharing", "parent": "/usr/libexec", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 184976, "date": "May 3 2019"}, {"filename": "KeychainMigrator", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 50480, "date": "May 3 2019"}, {"filename": "MiniTerm.app", "parent": "/usr/libexec", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Feb 7 23:30"}, {"filename": "NVMeAgent", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 30528, "date": "Jul 16 2019"}, {"filename": "PerfPowerServices", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 21328, "date": "Jan 24 01:14"}, {"filename": "PerfPowerServicesExtended", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 26832, "date": "Jan 24 01:14"}, {"filename": "PlistBuddy", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 41152, "date": "May 3 2019"}, {"filename": "ReportMemoryException", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 65184, "date": "Jul 16 2019"}, {"filename": "SafariCloudHistoryPushAgent", "link_to": "/System/Library/CoreServices/SafariSupport.bundle/Contents/MacOS/SafariCloudHistoryPushAgent", "parent": "/usr/libexec", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 92, "date": "May 4 2019"}, {"filename": "SafariHistoryServiceAgent", "link_to": "/System/Library/CoreServices/SafariSupport.bundle/Contents/MacOS/SafariHistoryServiceAgent", "parent": "/usr/libexec", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 90, "date": "May 4 2019"}, {"filename": "SafariLaunchAgent", "link_to": "/System/Library/CoreServices/SafariSupport.bundle/Contents/MacOS/SafariLaunchAgent", "parent": "/usr/libexec", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 82, "date": "May 4 2019"}, {"filename": "SafariNotificationAgent", "link_to": "/System/Library/CoreServices/SafariSupport.bundle/Contents/MacOS/SafariNotificationAgent", "parent": "/usr/libexec", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 88, "date": "May 4 2019"}, {"filename": "SafariPlugInUpdateNotifier", "link_to": "/System/Library/CoreServices/SafariSupport.bundle/Contents/MacOS/SafariPlugInUpdateNotifier", "parent": "/usr/libexec", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 91, "date": "May 4 2019"}, {"filename": "SidecarRelay", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 360768, "date": "Jul 16 2019"}, {"filename": "SmartCardServices", "parent": "/usr/libexec", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Feb 22 2019"}, {"filename": "TouchBarServer", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 960416, "date": "Jul 16 2019"}, {"filename": "USBAgent", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 35920, "date": "Jul 16 2019"}, {"filename": "UserEventAgent", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 35184, "date": "Jan 24 01:14"}, {"filename": "WiFiVelocityAgent", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 279104, "date": "Jan 24 01:14"}, {"filename": "adprivacyd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24992, "date": "Jul 16 2019"}, {"filename": "adservicesd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 413408, "date": "Jan 24 01:14"}, {"filename": "airportd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1485600, "date": "Jan 24 01:14"}, {"filename": "amfid", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 51168, "date": "Jan 24 01:14"}, {"filename": "amsdstat", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 35520, "date": "Jul 16 2019"}, {"filename": "apache2", "parent": "/usr/libexec", "flags": "drwxr-xr-x", "links": 114, "owner": "root", "group": "wheel", "size": 3648, "date": "Feb 7 23:29"}, {"filename": "apfsd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 117968, "date": "Jan 24 01:14"}, {"filename": "applessdstatistics", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 260544, "date": "Jul 16 2019"}, {"filename": "assertiond", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 337744, "date": "Jul 16 2019"}, {"filename": "atomicupdatetool", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 82208, "date": "Jan 24 01:14"}, {"filename": "atrun", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 57536, "date": "Jan 24 01:14"}, {"filename": "attach_automation_image", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 29136, "date": "Jul 16 2019"}, {"filename": "authopen", "parent": "/usr/libexec", "flags": "-r-sr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23472, "date": "Jan 24 01:14"}, {"filename": "autofsd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 19872, "date": "Jan 24 01:14"}, {"filename": "automation_trampoline", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 51856, "date": "Jul 16 2019"}, {"filename": "automountd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 129632, "date": "Jan 24 01:14"}, {"filename": "avconferenced", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 55136, "date": "Jan 24 01:14"}, {"filename": "awacsd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 498560, "date": "May 3 2019"}, {"filename": "biokitaggdd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 47312, "date": "May 3 2019"}, {"filename": "biometrickitd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 676224, "date": "Jan 24 01:14"}, {"filename": "bootinstalld", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 53744, "date": "Jul 16 2019"}, {"filename": "bootpd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 182816, "date": "May 3 2019"}, {"filename": "bspowerassertiontool", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 31584, "date": "Jan 24 01:14"}, {"filename": "captiveagent", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 58544, "date": "Jul 16 2019"}, {"filename": "cc_fips_test", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 19360, "date": "Jul 16 2019"}, {"filename": "checkLocalKDC", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2931, "date": "Feb 22 2019"}, {"filename": "chkpasswd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 57344, "date": "Jan 24 01:14"}, {"filename": "cloudconfigurationd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 771600, "date": "Jan 24 01:14"}, {"filename": "colorsync.displayservices", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 111856, "date": "Jan 24 01:14"}, {"filename": "colorsyncd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 74864, "date": "Jan 24 01:14"}, {"filename": "comsat", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24240, "date": "May 3 2019"}, {"filename": "configd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 472512, "date": "Jan 24 01:14"}, {"filename": "configureLocalKDC", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 3788, "date": "Feb 22 2019"}, {"filename": "corebrightnessd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 27488, "date": "Jan 24 01:14"}, {"filename": "corecaptured", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 19312, "date": "Jan 24 01:14"}, {"filename": "coreduetd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 174432, "date": "Jul 16 2019"}, {"filename": "corestoraged", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 67408, "date": "Jul 16 2019"}, {"filename": "corestoragehelperd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 34736, "date": "May 3 2019"}, {"filename": "create_automation_image_overlay", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 34000, "date": "Jul 16 2019"}, {"filename": "cups", "parent": "/usr/libexec", "flags": "drwxr-xr-x", "links": 10, "owner": "root", "group": "wheel", "size": 320, "date": "May 3 2019"}, {"filename": "dasd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 25520, "date": "May 3 2019"}, {"filename": "defragx", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 46688, "date": "May 3 2019"}, {"filename": "diagnosticd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 60624, "date": "Jan 24 01:14"}, {"filename": "dirhelper", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 39376, "date": "Jan 24 01:14"}, {"filename": "diskarbitrationd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 303808, "date": "May 3 2019"}, {"filename": "diskmanagementd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2138528, "date": "Jan 24 01:14"}, {"filename": "diskmanagementstartup", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 29088, "date": "Jan 24 01:14"}, {"filename": "displaypolicyd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 288416, "date": "Jan 24 01:14"}, {"filename": "dmd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 829168, "date": "May 3 2019"}, {"filename": "dp2hdmiupdater", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 33552, "date": "Jan 24 01:14"}, {"filename": "dpaudiothru", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 86016, "date": "May 3 2019"}, {"filename": "dpd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 65664, "date": "May 3 2019"}, {"filename": "dprivacyd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18656, "date": "Jul 16 2019"}, {"filename": "dspluginhelperd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 449600, "date": "May 3 2019"}, {"filename": "dtrace", "parent": "/usr/libexec", "flags": "drwxr-xr-x", "links": 8, "owner": "root", "group": "wheel", "size": 256, "date": "May 3 2019"}, {"filename": "dumpemacs", "parent": "/usr/libexec", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24272, "date": "May 3 2019"}, {"filename": "efiupdater", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 35680, "date": "May 3 2019"}, {"filename": "emacs", "parent": "/usr/libexec", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Feb 22 2019"}, {"filename": "emlog.pl", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 5802, "date": "Feb 22 2019"}, {"filename": "eoshostd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 57216, "date": "Jan 24 01:14"}, {"filename": "fax", "parent": "/usr/libexec", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Feb 22 2019"}, {"filename": "feedback", "parent": "/usr/libexec", "flags": "drwxr-xr-x", "links": 7, "owner": "root", "group": "wheel", "size": 224, "date": "Feb 7 23:29"}, {"filename": "femail", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 28912, "date": "May 3 2019"}, {"filename": "findmydevice-user-agent", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 74144, "date": "Jan 24 01:14"}, {"filename": "findmydeviced", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 783648, "date": "Jan 24 01:14"}, {"filename": "firmwarecheckers", "parent": "/usr/libexec", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "wheel", "size": 128, "date": "May 3 2019"}, {"filename": "firmwaresyncd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 47440, "date": "Jan 24 01:14"}, {"filename": "fmfd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 531296, "date": "May 3 2019"}, {"filename": "ftp-proxy", "parent": "/usr/libexec", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 45168, "date": "May 3 2019"}, {"filename": "gamecontrollerd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 78576, "date": "May 3 2019"}, {"filename": "getPPDVersion", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18816, "date": "May 3 2019"}, {"filename": "getty", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 74496, "date": "Jan 24 01:14"}, {"filename": "gkreport", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 356, "date": "Apr 14 2019"}, {"filename": "hidd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 19744, "date": "Jan 24 01:14"}, {"filename": "ifcstart", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18096, "date": "May 3 2019"}, {"filename": "installer-core", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 32992, "date": "May 3 2019"}, {"filename": "ioupsd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 32512, "date": "Jul 16 2019"}, {"filename": "ippusbd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 62656, "date": "May 3 2019"}, {"filename": "java_home", "link_to": "/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/java_home", "parent": "/usr/libexec", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 79, "date": "May 4 2019"}, {"filename": "kcproxy", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 50816, "date": "Jan 24 01:14"}, {"filename": "kdumpd", "parent": "/usr/libexec", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24752, "date": "Jan 24 01:14"}, {"filename": "kextd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 447504, "date": "Jan 24 01:14"}, {"filename": "keybagd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 221680, "date": "Jan 24 01:14"}, {"filename": "keyboardservicesd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 21200, "date": "Jan 24 01:14"}, {"filename": "knowledge-agent", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 61856, "date": "Jul 16 2019"}, {"filename": "kuncd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 42160, "date": "May 3 2019"}, {"filename": "languageassetd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 53824, "date": "May 3 2019"}, {"filename": "locate.bigram", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 17952, "date": "May 3 2019"}, {"filename": "locate.code", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18480, "date": "May 3 2019"}, {"filename": "locate.concatdb", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2350, "date": "Feb 22 2019"}, {"filename": "locate.mklocatedb", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 3150, "date": "Feb 22 2019"}, {"filename": "locate.updatedb", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 3495, "date": "Feb 22 2019"}, {"filename": "locationd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 5342224, "date": "Jul 16 2019"}, {"filename": "logd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 198080, "date": "Jan 24 01:14"}, {"filename": "loginitemregisterd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24864, "date": "Jan 24 01:14"}, {"filename": "logkextloadsd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 67472, "date": "Jan 24 01:14"}, {"filename": "lsd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 19296, "date": "Jul 16 2019"}, {"filename": "makewhatis", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 28976, "date": "Jan 24 01:14"}, {"filename": "makewhatis.local", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2446, "date": "Feb 22 2019"}, {"filename": "mcxalr", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 79856, "date": "Jan 24 01:14"}, {"filename": "mdmclient", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 914480, "date": "Jan 24 01:14"}, {"filename": "migrateLocalKDC", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1135, "date": "Feb 22 2019"}, {"filename": "mobileactivationd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 274128, "date": "Jan 24 01:14"}, {"filename": "mobileassetd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 487504, "date": "Jul 16 2019"}, {"filename": "mount_url", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 19584, "date": "Jan 24 01:14"}, {"filename": "msutil", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 34432, "date": "Jan 24 01:14"}, {"filename": "multiversed", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 30128, "date": "Jan 24 01:14"}, {"filename": "natpmpd", "parent": "/usr/libexec", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 47712, "date": "May 3 2019"}, {"filename": "neagent", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 185024, "date": "May 3 2019"}, {"filename": "nehelper", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 266608, "date": "May 3 2019"}, {"filename": "nesessionmanager", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 688640, "date": "May 3 2019"}, {"filename": "netbootdisk", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 37232, "date": "May 3 2019"}, {"filename": "networkserviceproxy", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 160064, "date": "Jul 16 2019"}, {"filename": "nfcd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1378400, "date": "Jan 24 01:14"}, {"filename": "nfrestore_service", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 30048, "date": "Jan 24 01:14"}, {"filename": "nlcd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 65520, "date": "May 3 2019"}, {"filename": "nsurlsessiond", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 831552, "date": "Jan 24 01:14"}, {"filename": "nsurlstoraged", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 233264, "date": "Jan 24 01:14"}, {"filename": "ntalkd", "parent": "/usr/libexec", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 28752, "date": "May 3 2019"}, {"filename": "od_user_homes", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24656, "date": "Jan 24 01:14"}, {"filename": "odproxyd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 44944, "date": "May 3 2019"}, {"filename": "opendirectoryd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 725072, "date": "Jan 24 01:14"}, {"filename": "osaapplet", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18320, "date": "May 3 2019"}, {"filename": "otherbsd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 47584, "date": "Jan 24 01:14"}, {"filename": "path_helper", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18992, "date": "May 3 2019"}, {"filename": "pboard", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 43648, "date": "Jan 24 01:14"}, {"filename": "pcsstatus", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 144192, "date": "Jan 24 01:14"}, {"filename": "periodic-wrapper", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 19232, "date": "Jan 24 01:14"}, {"filename": "pfd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 67264, "date": "May 3 2019"}, {"filename": "pkd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 225696, "date": "Jan 24 01:14"}, {"filename": "pkreporter", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24416, "date": "Jan 24 01:14"}, {"filename": "postfix", "parent": "/usr/libexec", "flags": "drwxr-xr-x", "links": 44, "owner": "root", "group": "wheel", "size": 1408, "date": "Feb 7 23:29"}, {"filename": "productutil", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 209152, "date": "Jan 24 01:14"}, {"filename": "rapportd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 563568, "date": "Jul 16 2019"}, {"filename": "remotectl", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 44960, "date": "Jan 24 01:14"}, {"filename": "rootless-init", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 19120, "date": "Jul 16 2019"}, {"filename": "routined", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 28000, "date": "May 3 2019"}, {"filename": "rpc.rquotad", "parent": "/usr/libexec", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 30240, "date": "May 3 2019"}, {"filename": "rpcsvchost", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 93536, "date": "Jul 16 2019"}, {"filename": "rtcreportingd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 252672, "date": "Jul 16 2019"}, {"filename": "sandboxd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 240912, "date": "Jan 24 01:14"}, {"filename": "scsid", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 20000, "date": "May 3 2019"}, {"filename": "sdfwupdater", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 25536, "date": "May 3 2019"}, {"filename": "secd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2643408, "date": "Jan 24 01:14"}, {"filename": "secinitd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 66304, "date": "Jul 16 2019"}, {"filename": "security-checksystem", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1635, "date": "Apr 14 2019"}, {"filename": "security-sysdiagnose", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 48448, "date": "Jan 24 01:14"}, {"filename": "security_authtrampoline", "parent": "/usr/libexec", "flags": "-rws--x--x", "links": 1, "owner": "root", "group": "wheel", "size": 19120, "date": "Jan 24 01:14"}, {"filename": "securityd_service", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 90656, "date": "Jan 24 01:14"}, {"filename": "securityuploadd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 104016, "date": "Jan 24 01:14"}, {"filename": "seld", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 284160, "date": "Jan 24 01:14"}, {"filename": "sftp-server", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 85392, "date": "May 3 2019"}, {"filename": "sharingd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 3914160, "date": "Jan 24 01:14"}, {"filename": "signpost_reporter", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 199552, "date": "Jul 16 2019"}, {"filename": "silhouette", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 65904, "date": "May 3 2019"}, {"filename": "siriknowledged", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 151824, "date": "May 3 2019"}, {"filename": "slapconfig-keygen", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1839792, "date": "May 3 2019"}, {"filename": "slapd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 3026336, "date": "Jan 24 01:14"}, {"filename": "smb-migrate-preferences", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 55440, "date": "Jul 16 2019"}, {"filename": "smb-sync-preferences", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 78288, "date": "Jul 16 2019"}, {"filename": "smcDiagnose", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 45600, "date": "May 3 2019"}, {"filename": "smcupdater", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 40736, "date": "May 3 2019"}, {"filename": "smd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 54192, "date": "Jan 24 01:14"}, {"filename": "snmpd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 37248, "date": "May 3 2019"}, {"filename": "spindump_agent", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 44464, "date": "Jul 16 2019"}, {"filename": "ssdupdater", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 25360, "date": "May 3 2019"}, {"filename": "ssh-keysign", "parent": "/usr/libexec", "flags": "-rwx--x--x", "links": 1, "owner": "root", "group": "wheel", "size": 1859600, "date": "May 3 2019"}, {"filename": "ssh-pkcs11-helper", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1763024, "date": "May 3 2019"}, {"filename": "sshd-keygen-wrapper", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18592, "date": "May 3 2019"}, {"filename": "startupdiskhelper", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 39792, "date": "Jul 16 2019"}, {"filename": "studentd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 943648, "date": "Jul 16 2019"}, {"filename": "swcd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 116000, "date": "Jan 24 01:14"}, {"filename": "symptomsd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 25840, "date": "Jul 16 2019"}, {"filename": "sysdiagnose_helper", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 71696, "date": "Jan 24 01:14"}, {"filename": "sysmond", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 58976, "date": "Jan 24 01:14"}, {"filename": "syspolicyd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 335424, "date": "Jan 24 01:14"}, {"filename": "systemstats_boot", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 17856, "date": "Jan 24 01:14"}, {"filename": "tailspind", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 57376, "date": "Jul 16 2019"}, {"filename": "taskgated", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 71696, "date": "Jan 24 01:14"}, {"filename": "taskgated-helper", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 42688, "date": "Jan 24 01:14"}, {"filename": "testmanagerd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 363312, "date": "May 3 2019"}, {"filename": "tftpd", "parent": "/usr/libexec", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 29808, "date": "May 3 2019"}, {"filename": "thermald", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 75680, "date": "Jan 24 01:14"}, {"filename": "timed", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 326960, "date": "May 3 2019"}, {"filename": "trustd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 480064, "date": "Jan 24 01:14"}, {"filename": "tzd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 172752, "date": "Jul 16 2019"}, {"filename": "tzinit", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 101968, "date": "Jul 16 2019"}, {"filename": "tzlinkd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 49024, "date": "May 3 2019"}, {"filename": "ucupdate", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 27360, "date": "Jan 24 01:14"}, {"filename": "unbound", "parent": "/usr/libexec", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 565984, "date": "Jan 24 01:14"}, {"filename": "undoServerAppDNSPrefs", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 20208, "date": "May 3 2019"}, {"filename": "upsshutdown", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 465, "date": "Feb 25 2019"}, {"filename": "usbcupdater", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 62752, "date": "May 3 2019"}, {"filename": "usbd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 53440, "date": "Jul 16 2019"}, {"filename": "vbiosupdater", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 33600, "date": "Jan 24 01:14"}, {"filename": "videosubscriptionsd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 19440, "date": "Jul 16 2019"}, {"filename": "vndevice", "parent": "/usr/libexec", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18192, "date": "May 3 2019"}, {"filename": "warmd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 204960, "date": "May 3 2019"}, {"filename": "warmd_agent", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 36592, "date": "May 3 2019"}, {"filename": "watchdogd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 46384, "date": "Jan 24 01:14"}, {"filename": "webinspectord", "link_to": "/System/Library/CoreServices/SafariSupport.bundle/Contents/MacOS/webinspectord", "parent": "/usr/libexec", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 78, "date": "May 4 2019"}, {"filename": "wfs", "parent": "/usr/libexec", "flags": "drwxr-xr-x", "links": 5, "owner": "root", "group": "wheel", "size": 160, "date": "May 3 2019"}, {"filename": "wifiFirmwareLoader", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 54624, "date": "Jan 24 01:14"}, {"filename": "wifid", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 398640, "date": "Jul 16 2019"}, {"filename": "wifivelocityd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 953136, "date": "Jan 24 01:14"}, {"filename": "wps", "parent": "/usr/libexec", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 319184, "date": "Jan 24 01:14"}, {"filename": "x11-select", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 47568, "date": "May 3 2019"}, {"filename": "xartstorageremoted", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 40320, "date": "Jan 24 01:14"}, {"filename": "xpchelper", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 42688, "date": "Jan 24 01:14"}, {"filename": "xpcproxy", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 43968, "date": "Jan 24 01:14"}, {"filename": "xpcroleaccountd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 36976, "date": "Jan 24 01:14"}, {"filename": "xscertd", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 74624, "date": "May 3 2019"}, {"filename": "xscertd-helper", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 104224, "date": "May 3 2019"}, {"filename": "xssendevent", "parent": "/usr/libexec", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23536, "date": "May 3 2019"}, {"filename": ".", "parent": "/usr/libexec/AppSandbox", "flags": "drwxr-xr-x", "links": 5, "owner": "root", "group": "wheel", "size": 160, "date": "Jul 23 2019"}, {"filename": "..", "parent": "/usr/libexec/AppSandbox", "flags": "drwxr-xr-x", "links": 249, "owner": "root", "group": "wheel", "size": 7968, "date": "Feb 7 23:29"}, {"filename": "ContainerRepairAgent", "parent": "/usr/libexec/AppSandbox", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 45520, "date": "Jul 16 2019"}, {"filename": "app_sandbox_cache_builder", "parent": "/usr/libexec/AppSandbox", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 46176, "date": "Jul 16 2019"}, {"filename": "container_check.rb", "parent": "/usr/libexec/AppSandbox", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 8799, "date": "Feb 22 2019"}, {"filename": ".", "parent": "/usr/libexec/ApplicationFirewall", "flags": "drwxr-xr-x", "links": 7, "owner": "root", "group": "wheel", "size": 224, "date": "Feb 7 23:29"}, {"filename": "..", "parent": "/usr/libexec/ApplicationFirewall", "flags": "drwxr-xr-x", "links": 249, "owner": "root", "group": "wheel", "size": 7968, "date": "Feb 7 23:29"}, {"filename": "Firewall", "parent": "/usr/libexec/ApplicationFirewall", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 19328, "date": "Jan 24 01:13"}, {"filename": "appfwloggerd", "parent": "/usr/libexec/ApplicationFirewall", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18864, "date": "Jan 24 01:14"}, {"filename": "com.apple.alf.plist", "parent": "/usr/libexec/ApplicationFirewall", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 3951, "date": "Apr 25 2019"}, {"filename": "socketfilterfw", "parent": "/usr/libexec/ApplicationFirewall", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 104496, "date": "Jan 24 01:13"}, {"filename": "socketfilterhelper", "parent": "/usr/libexec/ApplicationFirewall", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24816, "date": "Jan 24 01:13"}, {"filename": ".", "parent": "/usr/libexec/AssetCache", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "wheel", "size": 128, "date": "Jul 23 2019"}, {"filename": "..", "parent": "/usr/libexec/AssetCache", "flags": "drwxr-xr-x", "links": 249, "owner": "root", "group": "wheel", "size": 7968, "date": "Feb 7 23:29"}, {"filename": "AssetCache", "parent": "/usr/libexec/AssetCache", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 1979824, "date": "Jul 16 2019"}, {"filename": "AssetCache.momd", "parent": "/usr/libexec/AssetCache", "flags": "drwxr-xr-x", "links": 10, "owner": "root", "group": "wheel", "size": 320, "date": "Mar 25 2019"}, {"filename": ".", "parent": "/usr/libexec/AssetCache/AssetCache.momd", "flags": "drwxr-xr-x", "links": 10, "owner": "root", "group": "wheel", "size": 320, "date": "Mar 25 2019"}, {"filename": "..", "parent": "/usr/libexec/AssetCache/AssetCache.momd", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "wheel", "size": 128, "date": "Jul 23 2019"}, {"filename": "AssetCache-v2.mom", "parent": "/usr/libexec/AssetCache/AssetCache.momd", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 1854, "date": "Mar 25 2019"}, {"filename": "AssetCache-v3.mom", "parent": "/usr/libexec/AssetCache/AssetCache.momd", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 1937, "date": "Mar 25 2019"}, {"filename": "AssetCache-v4.mom", "parent": "/usr/libexec/AssetCache/AssetCache.momd", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 2093, "date": "Mar 25 2019"}, {"filename": "AssetCache-v5.mom", "parent": "/usr/libexec/AssetCache/AssetCache.momd", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 2876, "date": "Mar 25 2019"}, {"filename": "AssetCache-v6.mom", "parent": "/usr/libexec/AssetCache/AssetCache.momd", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 8060, "date": "Mar 25 2019"}, {"filename": "AssetCache-v6.omo", "parent": "/usr/libexec/AssetCache/AssetCache.momd", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 16024, "date": "Mar 25 2019"}, {"filename": "AssetCache.mom", "parent": "/usr/libexec/AssetCache/AssetCache.momd", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 1678, "date": "Mar 25 2019"}, {"filename": "VersionInfo.plist", "parent": "/usr/libexec/AssetCache/AssetCache.momd", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 651, "date": "Mar 25 2019"}, {"filename": ".", "parent": "/usr/libexec/AssetCacheAgent", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Jul 23 2019"}, {"filename": "..", "parent": "/usr/libexec/AssetCacheAgent", "flags": "drwxr-xr-x", "links": 249, "owner": "root", "group": "wheel", "size": 7968, "date": "Feb 7 23:29"}, {"filename": "AssetCacheAgent", "parent": "/usr/libexec/AssetCacheAgent", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 43648, "date": "Jul 16 2019"}, {"filename": "ar.lproj", "parent": "/usr/libexec/AssetCacheAgent", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "ca.lproj", "parent": "/usr/libexec/AssetCacheAgent", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "cs.lproj", "parent": "/usr/libexec/AssetCacheAgent", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "da.lproj", "parent": "/usr/libexec/AssetCacheAgent", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "de.lproj", "parent": "/usr/libexec/AssetCacheAgent", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "el.lproj", "parent": "/usr/libexec/AssetCacheAgent", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "en.lproj", "parent": "/usr/libexec/AssetCacheAgent", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "en_AU.lproj", "parent": "/usr/libexec/AssetCacheAgent", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "en_GB.lproj", "parent": "/usr/libexec/AssetCacheAgent", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "es.lproj", "parent": "/usr/libexec/AssetCacheAgent", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "es_419.lproj", "parent": "/usr/libexec/AssetCacheAgent", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "fi.lproj", "parent": "/usr/libexec/AssetCacheAgent", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "fr.lproj", "parent": "/usr/libexec/AssetCacheAgent", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "fr_CA.lproj", "parent": "/usr/libexec/AssetCacheAgent", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "he.lproj", "parent": "/usr/libexec/AssetCacheAgent", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "hi.lproj", "parent": "/usr/libexec/AssetCacheAgent", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "hr.lproj", "parent": "/usr/libexec/AssetCacheAgent", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "hu.lproj", "parent": "/usr/libexec/AssetCacheAgent", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "id.lproj", "parent": "/usr/libexec/AssetCacheAgent", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "it.lproj", "parent": "/usr/libexec/AssetCacheAgent", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "ja.lproj", "parent": "/usr/libexec/AssetCacheAgent", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "ko.lproj", "parent": "/usr/libexec/AssetCacheAgent", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "ms.lproj", "parent": "/usr/libexec/AssetCacheAgent", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "nl.lproj", "parent": "/usr/libexec/AssetCacheAgent", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "no.lproj", "parent": "/usr/libexec/AssetCacheAgent", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "pl.lproj", "parent": "/usr/libexec/AssetCacheAgent", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "pt.lproj", "parent": "/usr/libexec/AssetCacheAgent", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "pt_PT.lproj", "parent": "/usr/libexec/AssetCacheAgent", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "ro.lproj", "parent": "/usr/libexec/AssetCacheAgent", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "ru.lproj", "parent": "/usr/libexec/AssetCacheAgent", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "sk.lproj", "parent": "/usr/libexec/AssetCacheAgent", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "sv.lproj", "parent": "/usr/libexec/AssetCacheAgent", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "th.lproj", "parent": "/usr/libexec/AssetCacheAgent", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "tr.lproj", "parent": "/usr/libexec/AssetCacheAgent", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "uk.lproj", "parent": "/usr/libexec/AssetCacheAgent", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "vi.lproj", "parent": "/usr/libexec/AssetCacheAgent", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "zh_CN.lproj", "parent": "/usr/libexec/AssetCacheAgent", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "zh_HK.lproj", "parent": "/usr/libexec/AssetCacheAgent", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "zh_TW.lproj", "parent": "/usr/libexec/AssetCacheAgent", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": ".", "parent": "/usr/libexec/AssetCacheAgent/ar.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "..", "parent": "/usr/libexec/AssetCacheAgent/ar.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Jul 23 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/ar.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 117, "date": "Mar 25 2019"}, {"filename": ".", "parent": "/usr/libexec/AssetCacheAgent/ca.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "..", "parent": "/usr/libexec/AssetCacheAgent/ca.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Jul 23 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/ca.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 112, "date": "Mar 25 2019"}, {"filename": ".", "parent": "/usr/libexec/AssetCacheAgent/cs.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "..", "parent": "/usr/libexec/AssetCacheAgent/cs.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Jul 23 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/cs.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 121, "date": "Mar 25 2019"}, {"filename": ".", "parent": "/usr/libexec/AssetCacheAgent/da.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "..", "parent": "/usr/libexec/AssetCacheAgent/da.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Jul 23 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/da.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 111, "date": "Mar 25 2019"}, {"filename": ".", "parent": "/usr/libexec/AssetCacheAgent/de.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "..", "parent": "/usr/libexec/AssetCacheAgent/de.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Jul 23 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/de.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 124, "date": "Mar 25 2019"}, {"filename": ".", "parent": "/usr/libexec/AssetCacheAgent/el.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "..", "parent": "/usr/libexec/AssetCacheAgent/el.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Jul 23 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/el.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 133, "date": "Mar 25 2019"}, {"filename": ".", "parent": "/usr/libexec/AssetCacheAgent/en.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "..", "parent": "/usr/libexec/AssetCacheAgent/en.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Jul 23 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/en.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 108, "date": "Mar 25 2019"}, {"filename": ".", "parent": "/usr/libexec/AssetCacheAgent/en_AU.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "..", "parent": "/usr/libexec/AssetCacheAgent/en_AU.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Jul 23 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/en_AU.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 108, "date": "Mar 25 2019"}, {"filename": ".", "parent": "/usr/libexec/AssetCacheAgent/en_GB.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "..", "parent": "/usr/libexec/AssetCacheAgent/en_GB.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Jul 23 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/en_GB.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 108, "date": "Mar 25 2019"}, {"filename": ".", "parent": "/usr/libexec/AssetCacheAgent/es.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "..", "parent": "/usr/libexec/AssetCacheAgent/es.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Jul 23 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/es.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 112, "date": "Mar 25 2019"}, {"filename": ".", "parent": "/usr/libexec/AssetCacheAgent/es_419.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "..", "parent": "/usr/libexec/AssetCacheAgent/es_419.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Jul 23 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/es_419.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 114, "date": "Mar 25 2019"}, {"filename": ".", "parent": "/usr/libexec/AssetCacheAgent/fi.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "..", "parent": "/usr/libexec/AssetCacheAgent/fi.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Jul 23 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/fi.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 110, "date": "Mar 25 2019"}, {"filename": ".", "parent": "/usr/libexec/AssetCacheAgent/fr.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "..", "parent": "/usr/libexec/AssetCacheAgent/fr.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Jul 23 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/fr.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 113, "date": "Mar 25 2019"}, {"filename": ".", "parent": "/usr/libexec/AssetCacheAgent/fr_CA.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "..", "parent": "/usr/libexec/AssetCacheAgent/fr_CA.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Jul 23 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/fr_CA.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 113, "date": "Mar 25 2019"}, {"filename": ".", "parent": "/usr/libexec/AssetCacheAgent/he.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "..", "parent": "/usr/libexec/AssetCacheAgent/he.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Jul 23 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/he.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 111, "date": "Mar 25 2019"}, {"filename": ".", "parent": "/usr/libexec/AssetCacheAgent/hi.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "..", "parent": "/usr/libexec/AssetCacheAgent/hi.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Jul 23 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/hi.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 139, "date": "Mar 25 2019"}, {"filename": ".", "parent": "/usr/libexec/AssetCacheAgent/hr.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "..", "parent": "/usr/libexec/AssetCacheAgent/hr.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Jul 23 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/hr.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 115, "date": "Mar 25 2019"}, {"filename": ".", "parent": "/usr/libexec/AssetCacheAgent/hu.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "..", "parent": "/usr/libexec/AssetCacheAgent/hu.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Jul 23 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/hu.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 125, "date": "Mar 25 2019"}, {"filename": ".", "parent": "/usr/libexec/AssetCacheAgent/id.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "..", "parent": "/usr/libexec/AssetCacheAgent/id.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Jul 23 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/id.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 108, "date": "Mar 25 2019"}, {"filename": ".", "parent": "/usr/libexec/AssetCacheAgent/it.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "..", "parent": "/usr/libexec/AssetCacheAgent/it.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Jul 23 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/it.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 111, "date": "Mar 25 2019"}, {"filename": ".", "parent": "/usr/libexec/AssetCacheAgent/ja.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "..", "parent": "/usr/libexec/AssetCacheAgent/ja.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Jul 23 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/ja.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 107, "date": "Mar 25 2019"}, {"filename": ".", "parent": "/usr/libexec/AssetCacheAgent/ko.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "..", "parent": "/usr/libexec/AssetCacheAgent/ko.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Jul 23 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/ko.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 105, "date": "Mar 25 2019"}, {"filename": ".", "parent": "/usr/libexec/AssetCacheAgent/ms.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "..", "parent": "/usr/libexec/AssetCacheAgent/ms.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Jul 23 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/ms.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 109, "date": "Mar 25 2019"}, {"filename": ".", "parent": "/usr/libexec/AssetCacheAgent/nl.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "..", "parent": "/usr/libexec/AssetCacheAgent/nl.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Jul 23 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/nl.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 108, "date": "Mar 25 2019"}, {"filename": ".", "parent": "/usr/libexec/AssetCacheAgent/no.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "..", "parent": "/usr/libexec/AssetCacheAgent/no.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Jul 23 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/no.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 112, "date": "Mar 25 2019"}, {"filename": ".", "parent": "/usr/libexec/AssetCacheAgent/pl.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "..", "parent": "/usr/libexec/AssetCacheAgent/pl.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Jul 23 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/pl.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 122, "date": "Mar 25 2019"}, {"filename": ".", "parent": "/usr/libexec/AssetCacheAgent/pt.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "..", "parent": "/usr/libexec/AssetCacheAgent/pt.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Jul 23 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/pt.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 112, "date": "Mar 25 2019"}, {"filename": ".", "parent": "/usr/libexec/AssetCacheAgent/pt_PT.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "..", "parent": "/usr/libexec/AssetCacheAgent/pt_PT.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Jul 23 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/pt_PT.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 108, "date": "Mar 25 2019"}, {"filename": ".", "parent": "/usr/libexec/AssetCacheAgent/ro.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "..", "parent": "/usr/libexec/AssetCacheAgent/ro.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Jul 23 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/ro.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 133, "date": "Mar 25 2019"}, {"filename": ".", "parent": "/usr/libexec/AssetCacheAgent/ru.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "..", "parent": "/usr/libexec/AssetCacheAgent/ru.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Jul 23 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/ru.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 131, "date": "Mar 25 2019"}, {"filename": ".", "parent": "/usr/libexec/AssetCacheAgent/sk.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "..", "parent": "/usr/libexec/AssetCacheAgent/sk.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Jul 23 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/sk.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 131, "date": "Mar 25 2019"}, {"filename": ".", "parent": "/usr/libexec/AssetCacheAgent/sv.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "..", "parent": "/usr/libexec/AssetCacheAgent/sv.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Jul 23 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/sv.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 114, "date": "Mar 25 2019"}, {"filename": ".", "parent": "/usr/libexec/AssetCacheAgent/th.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "..", "parent": "/usr/libexec/AssetCacheAgent/th.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Jul 23 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/th.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 115, "date": "Mar 25 2019"}, {"filename": ".", "parent": "/usr/libexec/AssetCacheAgent/tr.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "..", "parent": "/usr/libexec/AssetCacheAgent/tr.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Jul 23 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/tr.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 112, "date": "Mar 25 2019"}, {"filename": ".", "parent": "/usr/libexec/AssetCacheAgent/uk.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "..", "parent": "/usr/libexec/AssetCacheAgent/uk.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Jul 23 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/uk.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 127, "date": "Mar 25 2019"}, {"filename": ".", "parent": "/usr/libexec/AssetCacheAgent/vi.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "..", "parent": "/usr/libexec/AssetCacheAgent/vi.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Jul 23 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/vi.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 119, "date": "Mar 25 2019"}, {"filename": ".", "parent": "/usr/libexec/AssetCacheAgent/zh_CN.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "..", "parent": "/usr/libexec/AssetCacheAgent/zh_CN.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Jul 23 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/zh_CN.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 105, "date": "Mar 25 2019"}, {"filename": ".", "parent": "/usr/libexec/AssetCacheAgent/zh_HK.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "..", "parent": "/usr/libexec/AssetCacheAgent/zh_HK.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Jul 23 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/zh_HK.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 105, "date": "Mar 25 2019"}, {"filename": ".", "parent": "/usr/libexec/AssetCacheAgent/zh_TW.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Mar 25 2019"}, {"filename": "..", "parent": "/usr/libexec/AssetCacheAgent/zh_TW.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "Jul 23 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/AssetCacheAgent/zh_TW.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 105, "date": "Mar 25 2019"}, {"filename": ".", "parent": "/usr/libexec/DeveloperTools", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Jul 23 2019"}, {"filename": "..", "parent": "/usr/libexec/DeveloperTools", "flags": "drwxr-xr-x", "links": 249, "owner": "root", "group": "wheel", "size": 7968, "date": "Feb 7 23:29"}, {"filename": "codesign_allocate", "parent": "/usr/libexec/DeveloperTools", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 149200, "date": "Jul 16 2019"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Feb 7 23:30"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app", "flags": "drwxr-xr-x", "links": 249, "owner": "root", "group": "wheel", "size": 7968, "date": "Feb 7 23:29"}, {"filename": "Contents", "parent": "/usr/libexec/MiniTerm.app", "flags": "drwxr-xr-x", "links": 8, "owner": "root", "group": "wheel", "size": 256, "date": "Feb 7 23:29"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents", "flags": "drwxr-xr-x", "links": 8, "owner": "root", "group": "wheel", "size": 256, "date": "Feb 7 23:29"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Feb 7 23:30"}, {"filename": "Info.plist", "parent": "/usr/libexec/MiniTerm.app/Contents", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 1552, "date": "Jan 23 07:04"}, {"filename": "MacOS", "parent": "/usr/libexec/MiniTerm.app/Contents", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Feb 7 23:29"}, {"filename": "PkgInfo", "parent": "/usr/libexec/MiniTerm.app/Contents", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 8, "date": "Apr 25 2019"}, {"filename": "Resources", "parent": "/usr/libexec/MiniTerm.app/Contents", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "May 3 2019"}, {"filename": "_CodeSignature", "parent": "/usr/libexec/MiniTerm.app/Contents", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Feb 7 23:29"}, {"filename": "version.plist", "parent": "/usr/libexec/MiniTerm.app/Contents", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 498, "date": "Jan 23 07:05"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents/MacOS", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Feb 7 23:29"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents/MacOS", "flags": "drwxr-xr-x", "links": 8, "owner": "root", "group": "wheel", "size": 256, "date": "Feb 7 23:29"}, {"filename": "MiniTerm", "parent": "/usr/libexec/MiniTerm.app/Contents/MacOS", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 28048, "date": "Jan 24 01:20"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "May 3 2019"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources", "flags": "drwxr-xr-x", "links": 8, "owner": "root", "group": "wheel", "size": 256, "date": "Feb 7 23:29"}, {"filename": "Base.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "MiniTerm.iconheader", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 52, "date": "Apr 25 2019"}, {"filename": "ar.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "ca.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "cs.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "da.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "de.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "el.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "en_AU.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "en_GB.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "es.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "es_419.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "fi.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "fr.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "fr_CA.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "he.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "hi.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "hr.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "hu.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "id.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "it.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "ja.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "ko.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "ms.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "nl.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "no.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "pl.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "pt.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "pt_PT.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "ro.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "ru.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "sk.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "sv.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "th.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "tr.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "uk.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "vi.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "zh_CN.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "zh_HK.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "zh_TW.lproj", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/Base.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/Base.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "May 3 2019"}, {"filename": "MiniTerm.nib", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/Base.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 21769, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/ar.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/ar.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "May 3 2019"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/ar.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 680, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/ca.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/ca.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "May 3 2019"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/ca.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 640, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/cs.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/cs.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "May 3 2019"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/cs.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 691, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/da.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/da.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "May 3 2019"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/da.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 618, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/de.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/de.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "May 3 2019"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/de.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 658, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/el.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/el.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "May 3 2019"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/el.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 848, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/en_AU.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/en_AU.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "May 3 2019"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/en_AU.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 562, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/en_GB.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/en_GB.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "May 3 2019"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/en_GB.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 562, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/es.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/es.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "May 3 2019"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/es.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 648, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/es_419.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/es_419.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "May 3 2019"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/es_419.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 639, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/fi.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/fi.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "May 3 2019"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/fi.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 603, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/fr.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/fr.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "May 3 2019"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/fr.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 720, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/fr_CA.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/fr_CA.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "May 3 2019"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/fr_CA.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 707, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/he.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/he.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "May 3 2019"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/he.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 638, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/hi.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/hi.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "May 3 2019"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/hi.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 726, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/hr.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/hr.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "May 3 2019"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/hr.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 634, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/hu.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/hu.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "May 3 2019"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/hu.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 794, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/id.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/id.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "May 3 2019"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/id.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 579, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/it.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/it.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "May 3 2019"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/it.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 591, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/ja.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/ja.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "May 3 2019"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/ja.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 602, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/ko.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/ko.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "May 3 2019"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/ko.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 572, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/ms.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/ms.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "May 3 2019"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/ms.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 592, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/nl.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/nl.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "May 3 2019"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/nl.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 598, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/no.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/no.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "May 3 2019"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/no.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 570, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/pl.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/pl.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "May 3 2019"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/pl.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 600, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/pt.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/pt.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "May 3 2019"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/pt.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 642, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/pt_PT.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/pt_PT.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "May 3 2019"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/pt_PT.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 660, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/ro.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/ro.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "May 3 2019"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/ro.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 722, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/ru.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/ru.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "May 3 2019"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/ru.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 758, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/sk.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/sk.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "May 3 2019"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/sk.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 774, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/sv.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/sv.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "May 3 2019"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/sv.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 673, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/th.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/th.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "May 3 2019"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/th.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 732, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/tr.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/tr.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "May 3 2019"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/tr.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 693, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/uk.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/uk.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "May 3 2019"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/uk.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 756, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/vi.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/vi.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "May 3 2019"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/vi.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 716, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/zh_CN.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/zh_CN.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "May 3 2019"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/zh_CN.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 532, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/zh_HK.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/zh_HK.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "May 3 2019"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/zh_HK.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 542, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/zh_TW.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/zh_TW.lproj", "flags": "drwxr-xr-x", "links": 42, "owner": "root", "group": "wheel", "size": 1344, "date": "May 3 2019"}, {"filename": "MiniTerm.strings", "parent": "/usr/libexec/MiniTerm.app/Contents/Resources/zh_TW.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 542, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/MiniTerm.app/Contents/_CodeSignature", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Feb 7 23:29"}, {"filename": "..", "parent": "/usr/libexec/MiniTerm.app/Contents/_CodeSignature", "flags": "drwxr-xr-x", "links": 8, "owner": "root", "group": "wheel", "size": 256, "date": "Feb 7 23:29"}, {"filename": "CodeResources", "parent": "/usr/libexec/MiniTerm.app/Contents/_CodeSignature", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 16844, "date": "Jan 24 01:20"}, {"filename": ".", "parent": "/usr/libexec/SmartCardServices", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Feb 22 2019"}, {"filename": "..", "parent": "/usr/libexec/SmartCardServices", "flags": "drwxr-xr-x", "links": 249, "owner": "root", "group": "wheel", "size": 7968, "date": "Feb 7 23:29"}, {"filename": "drivers", "parent": "/usr/libexec/SmartCardServices", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Feb 22 2019"}, {"filename": ".", "parent": "/usr/libexec/SmartCardServices/drivers", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Feb 22 2019"}, {"filename": "..", "parent": "/usr/libexec/SmartCardServices/drivers", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Feb 22 2019"}, {"filename": "ifd-ccid.bundle", "parent": "/usr/libexec/SmartCardServices/drivers", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Feb 22 2019"}, {"filename": ".", "parent": "/usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Feb 22 2019"}, {"filename": "..", "parent": "/usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Feb 22 2019"}, {"filename": "Contents", "parent": "/usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle", "flags": "drwxr-xr-x", "links": 5, "owner": "root", "group": "wheel", "size": 160, "date": "Feb 22 2019"}, {"filename": ".", "parent": "/usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle/Contents", "flags": "drwxr-xr-x", "links": 5, "owner": "root", "group": "wheel", "size": 160, "date": "Feb 22 2019"}, {"filename": "..", "parent": "/usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle/Contents", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Feb 22 2019"}, {"filename": "Info.plist", "parent": "/usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle/Contents", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 41962, "date": "Feb 22 2019"}, {"filename": "MacOS", "parent": "/usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle/Contents", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Feb 22 2019"}, {"filename": "version.plist", "parent": "/usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle/Contents", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 529, "date": "Feb 22 2019"}, {"filename": ".", "parent": "/usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle/Contents/MacOS", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Feb 22 2019"}, {"filename": "..", "parent": "/usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle/Contents/MacOS", "flags": "drwxr-xr-x", "links": 5, "owner": "root", "group": "wheel", "size": 160, "date": "Feb 22 2019"}, {"filename": "libccid.dylib", "parent": "/usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle/Contents/MacOS", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 142416, "date": "Feb 22 2019"}, {"filename": ".", "parent": "/usr/libexec/apache2", "flags": "drwxr-xr-x", "links": 114, "owner": "root", "group": "wheel", "size": 3648, "date": "Feb 7 23:29"}, {"filename": "..", "parent": "/usr/libexec/apache2", "flags": "drwxr-xr-x", "links": 249, "owner": "root", "group": "wheel", "size": 7968, "date": "Feb 7 23:29"}, {"filename": "httpd.exp", "parent": "/usr/libexec/apache2", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 15703, "date": "Feb 22 2019"}, {"filename": "libphp7.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 13507664, "date": "Jan 24 01:13"}, {"filename": "mod_access_compat.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23312, "date": "May 3 2019"}, {"filename": "mod_actions.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23072, "date": "May 3 2019"}, {"filename": "mod_alias.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 32768, "date": "May 3 2019"}, {"filename": "mod_allowmethods.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18384, "date": "May 3 2019"}, {"filename": "mod_asis.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 22784, "date": "May 3 2019"}, {"filename": "mod_auth_basic.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 28000, "date": "May 3 2019"}, {"filename": "mod_auth_digest.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 57712, "date": "May 3 2019"}, {"filename": "mod_auth_form.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 46832, "date": "May 3 2019"}, {"filename": "mod_authn_anon.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18464, "date": "May 3 2019"}, {"filename": "mod_authn_core.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24064, "date": "May 3 2019"}, {"filename": "mod_authn_dbd.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23728, "date": "May 3 2019"}, {"filename": "mod_authn_dbm.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 19040, "date": "May 3 2019"}, {"filename": "mod_authn_file.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23088, "date": "May 3 2019"}, {"filename": "mod_authn_socache.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 33632, "date": "May 3 2019"}, {"filename": "mod_authnz_ldap.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 106224, "date": "May 3 2019"}, {"filename": "mod_authnz_od_apple.so", "parent": "/usr/libexec/apache2", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 25120, "date": "May 3 2019"}, {"filename": "mod_authz_core.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 38432, "date": "May 3 2019"}, {"filename": "mod_authz_dbd.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 28480, "date": "May 3 2019"}, {"filename": "mod_authz_dbm.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23632, "date": "May 3 2019"}, {"filename": "mod_authz_groupfile.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24112, "date": "May 3 2019"}, {"filename": "mod_authz_host.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24064, "date": "May 3 2019"}, {"filename": "mod_authz_owner.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 22656, "date": "May 3 2019"}, {"filename": "mod_authz_user.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 22704, "date": "May 3 2019"}, {"filename": "mod_autoindex.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 56960, "date": "May 3 2019"}, {"filename": "mod_buffer.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23312, "date": "May 3 2019"}, {"filename": "mod_cache.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 128592, "date": "May 3 2019"}, {"filename": "mod_cache_disk.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 64032, "date": "May 3 2019"}, {"filename": "mod_cache_socache.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 63984, "date": "May 3 2019"}, {"filename": "mod_cgi.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 45568, "date": "May 3 2019"}, {"filename": "mod_charset_lite.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 45488, "date": "May 3 2019"}, {"filename": "mod_data.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23616, "date": "May 3 2019"}, {"filename": "mod_dav.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 130256, "date": "May 3 2019"}, {"filename": "mod_dav_fs.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 70352, "date": "May 3 2019"}, {"filename": "mod_dav_lock.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 33424, "date": "May 3 2019"}, {"filename": "mod_dbd.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 34304, "date": "May 3 2019"}, {"filename": "mod_deflate.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 63632, "date": "May 3 2019"}, {"filename": "mod_dialup.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24032, "date": "May 3 2019"}, {"filename": "mod_dir.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23760, "date": "May 3 2019"}, {"filename": "mod_dumpio.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 27152, "date": "May 3 2019"}, {"filename": "mod_echo.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23456, "date": "May 3 2019"}, {"filename": "mod_env.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18928, "date": "May 3 2019"}, {"filename": "mod_expires.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23968, "date": "May 3 2019"}, {"filename": "mod_ext_filter.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 43840, "date": "May 3 2019"}, {"filename": "mod_file_cache.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24624, "date": "May 3 2019"}, {"filename": "mod_filter.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 36688, "date": "May 3 2019"}, {"filename": "mod_headers.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 35152, "date": "May 3 2019"}, {"filename": "mod_heartbeat.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23632, "date": "May 3 2019"}, {"filename": "mod_heartmonitor.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 39584, "date": "May 3 2019"}, {"filename": "mod_hfs_apple.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 52272, "date": "May 3 2019"}, {"filename": "mod_http2.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 461600, "date": "May 3 2019"}, {"filename": "mod_imagemap.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 32640, "date": "May 3 2019"}, {"filename": "mod_include.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 91120, "date": "May 3 2019"}, {"filename": "mod_info.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 36992, "date": "May 3 2019"}, {"filename": "mod_lbmethod_bybusyness.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18144, "date": "May 3 2019"}, {"filename": "mod_lbmethod_byrequests.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18144, "date": "May 3 2019"}, {"filename": "mod_lbmethod_bytraffic.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18128, "date": "May 3 2019"}, {"filename": "mod_lbmethod_heartbeat.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 29344, "date": "May 3 2019"}, {"filename": "mod_ldap.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 128848, "date": "May 3 2019"}, {"filename": "mod_log_config.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 46064, "date": "May 3 2019"}, {"filename": "mod_log_debug.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 28576, "date": "May 3 2019"}, {"filename": "mod_log_forensic.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23872, "date": "May 3 2019"}, {"filename": "mod_logio.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23904, "date": "May 3 2019"}, {"filename": "mod_macro.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 32768, "date": "May 3 2019"}, {"filename": "mod_mime.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 33376, "date": "May 3 2019"}, {"filename": "mod_mime_magic.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 42560, "date": "May 3 2019"}, {"filename": "mod_negotiation.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 53360, "date": "May 3 2019"}, {"filename": "mod_perl.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 190432, "date": "May 3 2019"}, {"filename": "mod_proxy.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 193376, "date": "May 3 2019"}, {"filename": "mod_proxy_ajp.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 100064, "date": "May 3 2019"}, {"filename": "mod_proxy_balancer.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 83808, "date": "May 3 2019"}, {"filename": "mod_proxy_connect.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 41264, "date": "May 3 2019"}, {"filename": "mod_proxy_express.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 27520, "date": "May 3 2019"}, {"filename": "mod_proxy_fcgi.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 52224, "date": "May 3 2019"}, {"filename": "mod_proxy_fdpass.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23440, "date": "May 3 2019"}, {"filename": "mod_proxy_ftp.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 82656, "date": "May 3 2019"}, {"filename": "mod_proxy_hcheck.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 57856, "date": "May 3 2019"}, {"filename": "mod_proxy_html.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 64896, "date": "May 3 2019"}, {"filename": "mod_proxy_http.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 75408, "date": "May 3 2019"}, {"filename": "mod_proxy_scgi.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 34464, "date": "May 3 2019"}, {"filename": "mod_proxy_uwsgi.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 30080, "date": "May 3 2019"}, {"filename": "mod_proxy_wstunnel.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 36832, "date": "May 3 2019"}, {"filename": "mod_ratelimit.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 27968, "date": "May 3 2019"}, {"filename": "mod_reflector.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23984, "date": "May 3 2019"}, {"filename": "mod_remoteip.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 42624, "date": "May 3 2019"}, {"filename": "mod_reqtimeout.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 28752, "date": "May 3 2019"}, {"filename": "mod_request.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23872, "date": "May 3 2019"}, {"filename": "mod_rewrite.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 100400, "date": "May 3 2019"}, {"filename": "mod_secure_transport.so", "parent": "/usr/libexec/apache2", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 106368, "date": "May 3 2019"}, {"filename": "mod_sed.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 64032, "date": "May 3 2019"}, {"filename": "mod_session.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 34368, "date": "May 3 2019"}, {"filename": "mod_session_cookie.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23360, "date": "May 3 2019"}, {"filename": "mod_session_dbd.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 28608, "date": "May 3 2019"}, {"filename": "mod_setenvif.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 28480, "date": "May 3 2019"}, {"filename": "mod_slotmem_plain.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 22976, "date": "May 3 2019"}, {"filename": "mod_slotmem_shm.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 33008, "date": "May 3 2019"}, {"filename": "mod_socache_dbm.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 28288, "date": "May 3 2019"}, {"filename": "mod_socache_memcache.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 28240, "date": "May 3 2019"}, {"filename": "mod_socache_shmcb.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 48704, "date": "May 3 2019"}, {"filename": "mod_speling.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 28096, "date": "May 3 2019"}, {"filename": "mod_ssl.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 356144, "date": "May 3 2019"}, {"filename": "mod_status.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 37200, "date": "May 3 2019"}, {"filename": "mod_substitute.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 41136, "date": "May 3 2019"}, {"filename": "mod_unique_id.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18944, "date": "May 3 2019"}, {"filename": "mod_unixd.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23856, "date": "May 3 2019"}, {"filename": "mod_userdir.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23392, "date": "May 3 2019"}, {"filename": "mod_usertrack.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24096, "date": "May 3 2019"}, {"filename": "mod_version.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 22928, "date": "May 3 2019"}, {"filename": "mod_vhost_alias.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23568, "date": "May 3 2019"}, {"filename": "mod_watchdog.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 39104, "date": "May 3 2019"}, {"filename": "mod_xml2enc.so", "parent": "/usr/libexec/apache2", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 50416, "date": "May 3 2019"}, {"filename": ".", "parent": "/usr/libexec/cups", "flags": "drwxr-xr-x", "links": 10, "owner": "root", "group": "wheel", "size": 320, "date": "May 3 2019"}, {"filename": "..", "parent": "/usr/libexec/cups", "flags": "drwxr-xr-x", "links": 249, "owner": "root", "group": "wheel", "size": 7968, "date": "Feb 7 23:29"}, {"filename": "apple", "parent": "/usr/libexec/cups", "flags": "drwxr-xr-x", "links": 7, "owner": "root", "group": "wheel", "size": 224, "date": "Feb 7 23:29"}, {"filename": "backend", "parent": "/usr/libexec/cups", "flags": "drwxr-xr-x", "links": 17, "owner": "root", "group": "wheel", "size": 544, "date": "Feb 7 23:29"}, {"filename": "cgi-bin", "parent": "/usr/libexec/cups", "flags": "drwxr-xr-x", "links": 7, "owner": "root", "group": "wheel", "size": 224, "date": "Feb 7 23:29"}, {"filename": "daemon", "parent": "/usr/libexec/cups", "flags": "drwxr-xr-x", "links": 6, "owner": "root", "group": "wheel", "size": 192, "date": "Feb 7 23:29"}, {"filename": "driver", "parent": "/usr/libexec/cups", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "wheel", "size": 64, "date": "Feb 22 2019"}, {"filename": "filter", "parent": "/usr/libexec/cups", "flags": "drwxr-xr-x", "links": 23, "owner": "root", "group": "wheel", "size": 736, "date": "Feb 7 23:29"}, {"filename": "monitor", "parent": "/usr/libexec/cups", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "wheel", "size": 128, "date": "Feb 7 23:29"}, {"filename": "notifier", "parent": "/usr/libexec/cups", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "wheel", "size": 128, "date": "Feb 7 23:29"}, {"filename": ".", "parent": "/usr/libexec/cups/apple", "flags": "drwxr-xr-x", "links": 7, "owner": "root", "group": "wheel", "size": 224, "date": "Feb 7 23:29"}, {"filename": "..", "parent": "/usr/libexec/cups/apple", "flags": "drwxr-xr-x", "links": 10, "owner": "root", "group": "wheel", "size": 320, "date": "May 3 2019"}, {"filename": "http", "link_to": "ipp", "parent": "/usr/libexec/cups/apple", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 3, "date": "May 4 2019"}, {"filename": "https", "link_to": "ipp", "parent": "/usr/libexec/cups/apple", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 3, "date": "May 4 2019"}, {"filename": "ipp", "parent": "/usr/libexec/cups/apple", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 83552, "date": "Jan 24 01:13"}, {"filename": "ipps", "link_to": "ipp", "parent": "/usr/libexec/cups/apple", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 3, "date": "May 4 2019"}, {"filename": "smb", "parent": "/usr/libexec/cups/apple", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 174544, "date": "Jul 16 2019"}, {"filename": ".", "parent": "/usr/libexec/cups/backend", "flags": "drwxr-xr-x", "links": 17, "owner": "root", "group": "wheel", "size": 544, "date": "Feb 7 23:29"}, {"filename": "..", "parent": "/usr/libexec/cups/backend", "flags": "drwxr-xr-x", "links": 10, "owner": "root", "group": "wheel", "size": 320, "date": "May 3 2019"}, {"filename": "bluetooth", "parent": "/usr/libexec/cups/backend", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 38688, "date": "Jan 24 01:13"}, {"filename": "dnssd", "parent": "/usr/libexec/cups/backend", "flags": "-rwx------", "links": 1, "owner": "root", "group": "wheel", "size": 29216, "date": "Jan 24 01:13"}, {"filename": "epsonfax", "link_to": "/Library/Printers/EPSON/Fax/FaxIOSupport/epsonfax.app/Contents/MacOS/epsonfax", "parent": "/usr/libexec/cups/backend", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 77, "date": "May 4 2019"}, {"filename": "http", "link_to": "ipp", "parent": "/usr/libexec/cups/backend", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 3, "date": "May 4 2019"}, {"filename": "https", "link_to": "ipp", "parent": "/usr/libexec/cups/backend", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 3, "date": "May 4 2019"}, {"filename": "ipp", "parent": "/usr/libexec/cups/backend", "flags": "-rwx------", "links": 1, "owner": "root", "group": "wheel", "size": 83552, "date": "Jan 24 01:13"}, {"filename": "ipps", "link_to": "ipp", "parent": "/usr/libexec/cups/backend", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 3, "date": "May 4 2019"}, {"filename": "ippusb", "link_to": "dnssd", "parent": "/usr/libexec/cups/backend", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 5, "date": "May 4 2019"}, {"filename": "lpd", "parent": "/usr/libexec/cups/backend", "flags": "-rwx------", "links": 1, "owner": "root", "group": "wheel", "size": 47824, "date": "Jan 24 01:13"}, {"filename": "mdns", "link_to": "dnssd", "parent": "/usr/libexec/cups/backend", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 5, "date": "May 4 2019"}, {"filename": "riousbprint", "parent": "/usr/libexec/cups/backend", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 34416, "date": "May 3 2019"}, {"filename": "smb", "parent": "/usr/libexec/cups/backend", "flags": "-rwx------", "links": 1, "owner": "root", "group": "wheel", "size": 30464, "date": "May 3 2019"}, {"filename": "snmp", "parent": "/usr/libexec/cups/backend", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 34288, "date": "Jan 24 01:13"}, {"filename": "socket", "parent": "/usr/libexec/cups/backend", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 42608, "date": "Jan 24 01:13"}, {"filename": "usb", "parent": "/usr/libexec/cups/backend", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 100992, "date": "Jan 24 01:13"}, {"filename": ".", "parent": "/usr/libexec/cups/cgi-bin", "flags": "drwxr-xr-x", "links": 7, "owner": "root", "group": "wheel", "size": 224, "date": "Feb 7 23:29"}, {"filename": "..", "parent": "/usr/libexec/cups/cgi-bin", "flags": "drwxr-xr-x", "links": 10, "owner": "root", "group": "wheel", "size": 320, "date": "May 3 2019"}, {"filename": "admin.cgi", "parent": "/usr/libexec/cups/cgi-bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 67072, "date": "Jan 24 01:13"}, {"filename": "classes.cgi", "parent": "/usr/libexec/cups/cgi-bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24768, "date": "Jan 24 01:13"}, {"filename": "help.cgi", "parent": "/usr/libexec/cups/cgi-bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23856, "date": "Jan 24 01:13"}, {"filename": "jobs.cgi", "parent": "/usr/libexec/cups/cgi-bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 19568, "date": "Jan 24 01:13"}, {"filename": "printers.cgi", "parent": "/usr/libexec/cups/cgi-bin", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24992, "date": "Jan 24 01:13"}, {"filename": ".", "parent": "/usr/libexec/cups/daemon", "flags": "drwxr-xr-x", "links": 6, "owner": "root", "group": "wheel", "size": 192, "date": "Feb 7 23:29"}, {"filename": "..", "parent": "/usr/libexec/cups/daemon", "flags": "drwxr-xr-x", "links": 10, "owner": "root", "group": "wheel", "size": 320, "date": "May 3 2019"}, {"filename": "cups-deviced", "parent": "/usr/libexec/cups/daemon", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 29504, "date": "Jan 24 01:13"}, {"filename": "cups-driverd", "parent": "/usr/libexec/cups/daemon", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 53280, "date": "Jan 24 01:13"}, {"filename": "cups-exec", "parent": "/usr/libexec/cups/daemon", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 19008, "date": "Jan 24 01:13"}, {"filename": "cups-lpd", "parent": "/usr/libexec/cups/daemon", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 34048, "date": "Jan 24 01:13"}, {"filename": ".", "parent": "/usr/libexec/cups/driver", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "wheel", "size": 64, "date": "Feb 22 2019"}, {"filename": "..", "parent": "/usr/libexec/cups/driver", "flags": "drwxr-xr-x", "links": 10, "owner": "root", "group": "wheel", "size": 320, "date": "May 3 2019"}, {"filename": ".", "parent": "/usr/libexec/cups/filter", "flags": "drwxr-xr-x", "links": 23, "owner": "root", "group": "wheel", "size": 736, "date": "Feb 7 23:29"}, {"filename": "..", "parent": "/usr/libexec/cups/filter", "flags": "drwxr-xr-x", "links": 10, "owner": "root", "group": "wheel", "size": 320, "date": "May 3 2019"}, {"filename": "cgbannertopdf", "parent": "/usr/libexec/cups/filter", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 45312, "date": "May 3 2019"}, {"filename": "cgimagetopdf", "parent": "/usr/libexec/cups/filter", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 37248, "date": "May 3 2019"}, {"filename": "cgpdftopdf", "parent": "/usr/libexec/cups/filter", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 47344, "date": "May 3 2019"}, {"filename": "cgpdftops", "parent": "/usr/libexec/cups/filter", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 49952, "date": "May 3 2019"}, {"filename": "cgpdftoraster", "parent": "/usr/libexec/cups/filter", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 371072, "date": "May 3 2019"}, {"filename": "cgtexttopdf", "parent": "/usr/libexec/cups/filter", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 50096, "date": "May 3 2019"}, {"filename": "commandtops", "parent": "/usr/libexec/cups/filter", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 23744, "date": "Jan 24 01:13"}, {"filename": "gziptoany", "parent": "/usr/libexec/cups/filter", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18800, "date": "Jan 24 01:13"}, {"filename": "pstoappleps", "parent": "/usr/libexec/cups/filter", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 25184, "date": "May 3 2019"}, {"filename": "pstocupsraster", "parent": "/usr/libexec/cups/filter", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 35936, "date": "May 3 2019"}, {"filename": "pstopdffilter", "parent": "/usr/libexec/cups/filter", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 30352, "date": "May 3 2019"}, {"filename": "pstops", "parent": "/usr/libexec/cups/filter", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 55280, "date": "Jan 24 01:13"}, {"filename": "rastertodymo", "link_to": "rastertolabel", "parent": "/usr/libexec/cups/filter", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 13, "date": "May 4 2019"}, {"filename": "rastertoepson", "parent": "/usr/libexec/cups/filter", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 28352, "date": "Jan 24 01:13"}, {"filename": "rastertohp", "parent": "/usr/libexec/cups/filter", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 27984, "date": "Jan 24 01:13"}, {"filename": "rastertolabel", "parent": "/usr/libexec/cups/filter", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 28576, "date": "Jan 24 01:13"}, {"filename": "rastertopwg", "parent": "/usr/libexec/cups/filter", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 27968, "date": "Jan 24 01:13"}, {"filename": "rastertotiff", "parent": "/usr/libexec/cups/filter", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 31888, "date": "May 3 2019"}, {"filename": "rastertourf", "parent": "/usr/libexec/cups/filter", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 29360, "date": "May 3 2019"}, {"filename": "thnucups", "parent": "/usr/libexec/cups/filter", "flags": "-rwxr-xr-x@", "links": 1, "owner": "root", "group": "wheel", "size": 128480, "date": "Feb 13 16:44"}, {"filename": "xhtmltopdf", "parent": "/usr/libexec/cups/filter", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 31792, "date": "May 3 2019"}, {"filename": ".", "parent": "/usr/libexec/cups/monitor", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "wheel", "size": 128, "date": "Feb 7 23:29"}, {"filename": "..", "parent": "/usr/libexec/cups/monitor", "flags": "drwxr-xr-x", "links": 10, "owner": "root", "group": "wheel", "size": 320, "date": "May 3 2019"}, {"filename": "bcp", "parent": "/usr/libexec/cups/monitor", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18624, "date": "Jan 24 01:13"}, {"filename": "tbcp", "parent": "/usr/libexec/cups/monitor", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 18624, "date": "Jan 24 01:13"}, {"filename": ".", "parent": "/usr/libexec/cups/notifier", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "wheel", "size": 128, "date": "Feb 7 23:29"}, {"filename": "..", "parent": "/usr/libexec/cups/notifier", "flags": "drwxr-xr-x", "links": 10, "owner": "root", "group": "wheel", "size": 320, "date": "May 3 2019"}, {"filename": "mailto", "parent": "/usr/libexec/cups/notifier", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 24544, "date": "Jan 24 01:13"}, {"filename": "rss", "parent": "/usr/libexec/cups/notifier", "flags": "-r-xr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 29104, "date": "Jan 24 01:13"}, {"filename": ".", "parent": "/usr/libexec/dtrace", "flags": "drwxr-xr-x", "links": 8, "owner": "root", "group": "wheel", "size": 256, "date": "May 3 2019"}, {"filename": "..", "parent": "/usr/libexec/dtrace", "flags": "drwxr-xr-x", "links": 249, "owner": "root", "group": "wheel", "size": 7968, "date": "Feb 7 23:29"}, {"filename": "file_events.cpp", "parent": "/usr/libexec/dtrace", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 8831, "date": "Feb 22 2019"}, {"filename": "file_events.hpp", "parent": "/usr/libexec/dtrace", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 2647, "date": "Feb 22 2019"}, {"filename": "log_unnest_badness.d", "parent": "/usr/libexec/dtrace", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 250, "date": "Apr 25 2019"}, {"filename": "smbd_entitlements.plist", "parent": "/usr/libexec/dtrace", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 326, "date": "Feb 22 2019"}, {"filename": "smbtrace.d", "parent": "/usr/libexec/dtrace", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 5396, "date": "Feb 22 2019"}, {"filename": "vm_map_delete_permanent.d", "parent": "/usr/libexec/dtrace", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 279, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/emacs", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Feb 22 2019"}, {"filename": "..", "parent": "/usr/libexec/emacs", "flags": "drwxr-xr-x", "links": 249, "owner": "root", "group": "wheel", "size": 7968, "date": "Feb 7 23:29"}, {"filename": "22.1", "parent": "/usr/libexec/emacs", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Feb 22 2019"}, {"filename": ".", "parent": "/usr/libexec/emacs/22.1", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Feb 22 2019"}, {"filename": "..", "parent": "/usr/libexec/emacs/22.1", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Feb 22 2019"}, {"filename": "mac-apple-darwin", "parent": "/usr/libexec/emacs/22.1", "flags": "drwxr-xr-x", "links": 12, "owner": "root", "group": "wheel", "size": 384, "date": "May 3 2019"}, {"filename": ".", "parent": "/usr/libexec/emacs/22.1/mac-apple-darwin", "flags": "drwxr-xr-x", "links": 12, "owner": "root", "group": "wheel", "size": 384, "date": "May 3 2019"}, {"filename": "..", "parent": "/usr/libexec/emacs/22.1/mac-apple-darwin", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Feb 22 2019"}, {"filename": "cvtmail", "parent": "/usr/libexec/emacs/22.1/mac-apple-darwin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 22896, "date": "May 3 2019"}, {"filename": "digest-doc", "parent": "/usr/libexec/emacs/22.1/mac-apple-darwin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 22176, "date": "May 3 2019"}, {"filename": "fakemail", "parent": "/usr/libexec/emacs/22.1/mac-apple-darwin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 17696, "date": "May 3 2019"}, {"filename": "hexl", "parent": "/usr/libexec/emacs/22.1/mac-apple-darwin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 22800, "date": "May 3 2019"}, {"filename": "movemail", "parent": "/usr/libexec/emacs/22.1/mac-apple-darwin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 41984, "date": "May 3 2019"}, {"filename": "profile", "parent": "/usr/libexec/emacs/22.1/mac-apple-darwin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 22176, "date": "May 3 2019"}, {"filename": "rcs2log", "parent": "/usr/libexec/emacs/22.1/mac-apple-darwin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 20684, "date": "Feb 22 2019"}, {"filename": "sorted-doc", "parent": "/usr/libexec/emacs/22.1/mac-apple-darwin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 22752, "date": "May 3 2019"}, {"filename": "update-game-score", "parent": "/usr/libexec/emacs/22.1/mac-apple-darwin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 32944, "date": "May 3 2019"}, {"filename": "vcdiff", "parent": "/usr/libexec/emacs/22.1/mac-apple-darwin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 2217, "date": "Feb 22 2019"}, {"filename": ".", "parent": "/usr/libexec/fax", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Feb 22 2019"}, {"filename": "..", "parent": "/usr/libexec/fax", "flags": "drwxr-xr-x", "links": 249, "owner": "root", "group": "wheel", "size": 7968, "date": "Feb 7 23:29"}, {"filename": "coverpage.py", "parent": "/usr/libexec/fax", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 11646, "date": "Feb 22 2019"}, {"filename": ".", "parent": "/usr/libexec/feedback", "flags": "drwxr-xr-x", "links": 7, "owner": "root", "group": "wheel", "size": 224, "date": "Feb 7 23:29"}, {"filename": "..", "parent": "/usr/libexec/feedback", "flags": "drwxr-xr-x", "links": 249, "owner": "root", "group": "wheel", "size": 7968, "date": "Feb 7 23:29"}, {"filename": "appearance.py", "parent": "/usr/libexec/feedback", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 805, "date": "Mar 29 2019"}, {"filename": "fb_collect", "parent": "/usr/libexec/feedback", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 43760, "date": "Jan 24 01:13"}, {"filename": "filevault.py", "parent": "/usr/libexec/feedback", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 3381, "date": "Mar 29 2019"}, {"filename": "sleepwake.sh", "parent": "/usr/libexec/feedback", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 29, "date": "Mar 29 2019"}, {"filename": "systriage.rb", "parent": "/usr/libexec/feedback", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": 111653, "date": "Mar 29 2019"}, {"filename": ".", "parent": "/usr/libexec/firmwarecheckers", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "wheel", "size": 128, "date": "May 3 2019"}, {"filename": "..", "parent": "/usr/libexec/firmwarecheckers", "flags": "drwxr-xr-x", "links": 249, "owner": "root", "group": "wheel", "size": 7968, "date": "Feb 7 23:29"}, {"filename": "eficheck", "parent": "/usr/libexec/firmwarecheckers", "flags": "drwxr-xr-x", "links": 6, "owner": "root", "group": "wheel", "size": 192, "date": "Feb 7 23:29"}, {"filename": "ethcheck", "parent": "/usr/libexec/firmwarecheckers", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "May 3 2019"}, {"filename": ".", "parent": "/usr/libexec/firmwarecheckers/eficheck", "flags": "drwxr-xr-x", "links": 6, "owner": "root", "group": "wheel", "size": 192, "date": "Feb 7 23:29"}, {"filename": "..", "parent": "/usr/libexec/firmwarecheckers/eficheck", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "wheel", "size": 128, "date": "May 3 2019"}, {"filename": "EFIAllowListShipping.bundle", "parent": "/usr/libexec/firmwarecheckers/eficheck", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "eficheck", "parent": "/usr/libexec/firmwarecheckers/eficheck", "flags": "-rwx--x--x", "links": 1, "owner": "root", "group": "wheel", "size": 79472, "date": "Jan 24 01:13"}, {"filename": "eficheck-standalone", "parent": "/usr/libexec/firmwarecheckers/eficheck", "flags": "-rwx--x--x", "links": 1, "owner": "root", "group": "wheel", "size": 48096, "date": "Jan 24 01:13"}, {"filename": "localization", "parent": "/usr/libexec/firmwarecheckers/eficheck", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle", "flags": "drwxr-xr-x", "links": 6, "owner": "root", "group": "wheel", "size": 192, "date": "Feb 7 23:29"}, {"filename": "allowlists", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle", "flags": "drwxr-xr-x", "links": 2037, "owner": "root", "group": "wheel", "size": 65184, "date": "Feb 7 23:29"}, {"filename": ".", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "drwxr-xr-x", "links": 2037, "owner": "root", "group": "wheel", "size": 65184, "date": "Feb 7 23:29"}, {"filename": "..", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0001.I00.0908281642.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0001.I00.0909021206.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0001.I00.0909021315.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0001.I00.0909091053.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0001.I00.0909111152.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0001.I00.0909111312.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0001.I00.0909141538.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0001.I00.0909141605.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0001.I00.0909171006.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.0909231120.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.0909281404.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.0910021021.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.0910021107.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.0910051536.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.0910051609.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.0910071112.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.0910071209.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.0910091045.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.0910091152.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.0910122220.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.0910141109.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.0910141146.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.0910151922.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.0910191602.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.0910191643.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.0910211310.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.0910242121.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.0910281217.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.0910281927.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.0910301725.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.1003151739.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.1003171312.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.1507291353.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.1509231900.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.1701210003.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.1702201847.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.1702241356.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.1704250219.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.1704281850.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.1705021412.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.1706220550.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.1706261402.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.1707231527.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM111.AAPLEFI1.88Z.0002.I00.1708080237.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0005.I00.0911231211.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0005.I00.0912071313.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0005.I00.0912071347.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0005.I00.0912141547.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0005.I00.0912141713.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0005.I00.0912161112.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0005.I00.0912181153.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0005.I00.0912181427.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0005.I00.1001081056.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0005.I00.1001111654.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0005.I00.1001151650.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0005.I00.1001251301.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1002081552.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1002081733.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1002101313.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1002121627.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1002171156.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1002191318.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1002261335.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1003031405.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1003051151.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1003081608.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1003121143.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1003171246.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1003241457.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1004051701.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1004091104.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1004121638.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1004161256.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1004191607.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1004230939.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1004261556.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1005031453.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1112090904.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1112091248.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1507291449.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1509231641.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1612201716.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1701210149.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1702180220.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1702241446.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1704242250.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1704281519.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1705021555.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1706220336.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1706261624.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1707271300.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM112.AAPLEFI2.88Z.0006.I00.1708080435.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI2.88Z.0001.I00.1005211133.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI2.88Z.0001.I00.1005241636.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI2.88Z.0003.I00.1006141518.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0004.I00.1006161137.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0004.I00.1006180910.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0004.I00.1006251013.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0004.I00.1006281408.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0005.I00.1007141220.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0005.I00.1007211301.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0005.I00.1007261201.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0005.I00.1007281057.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0005.I00.1008021259.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0005.I00.1008041221.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0005.I00.1008091039.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0005.I00.1008111115.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0005.I00.1008121651.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0005.I00.1008181312.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0005.I00.1008231323.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0005.I00.1008251413.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0005.I00.1008301408.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0005.I00.1009011157.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0005.I00.1009011250.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0006.I00.1009081115.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0006.I00.1009081226.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0007.I00.1009131111.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0007.I00.1009131124.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0007.I00.1009151116.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0007.I00.1009201126.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0007.I00.1009231111.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0007.I00.1009271031.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0008.I00.1009291042.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0008.I00.1010021017.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0008.I00.1010041146.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0008.I00.1010051020.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0008.I00.1010051724.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0008.I00.1010091027.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0008.I00.1010111112.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1010131028.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1010131106.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1010170938.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1010181212.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1010200944.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1010200957.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1010230937.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1010251247.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1010270938.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1010271023.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1010290938.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1010291415.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1011020847.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1011021506.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1011050838.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1011051249.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1011100939.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1011110945.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1011120759.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1011160939.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1011161712.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1011210940.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1011220725.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1011290940.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1011291124.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1012010939.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1012011224.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1012020939.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1012021643.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1012050944.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1012061142.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1012080943.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1012081135.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1012120946.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1012131137.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1012150939.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1012151059.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1012190941.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1012201104.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1101010940.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I00.1101050940.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I01.1101100940.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I01.1101101109.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I01.1101120941.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I01.1101121158.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I01.1101150944.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I01.1101171047.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I02.1101190957.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I02.1101191057.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1101230957.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1101241114.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1101260937.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1101261044.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1101310951.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1101311146.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1102021201.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1102031002.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1102041235.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1102071704.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1102091754.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1103021144.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1103091152.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1103161348.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1103242050.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1103301137.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1104061234.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1104111857.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1104150726.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1104201032.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1104221553.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1107141151.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1107281150.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1108031503.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1108101256.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1108112002.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1108121148.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1108122101.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1108171247.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1108221125.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1108290922.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1108291934.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1109011022.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1109021638.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1109030048.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1109061106.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1109061818.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1109081124.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1109091929.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1109100354.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1109141123.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1109141953.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1109211414.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1109231613.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1109281426.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1110171108.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1110201312.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1201241646.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1506090232.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1506101604.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1509141153.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1510261406.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1610201718.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1611011512.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1612202117.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1701201957.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1702171911.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1703231948.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1703301217.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1703301434.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1704131557.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1704242117.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1704281158.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1705021500.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1705101226.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1706220459.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1706261227.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1707271117.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM121.AAPLEFI4.88Z.0009.I03.1708080007.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "IM131.88Z.F000.B00.1912181754.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 22537, "date": "Jan 23 07:12"}, {"filename": "IM131.AAPLEFI4.88Z.0011.I00.1109120937.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1109141013.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1109141044.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1109190951.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1109191025.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1109211037.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1109260949.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1109271121.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1110031003.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1110031600.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1110050942.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1110100942.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1110101002.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1110121146.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1110121223.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1110170947.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1110201110.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1110211417.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1110211452.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1110260954.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1110270931.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1110271125.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1110271506.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1110271555.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1111020931.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1111021003.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1111070949.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1111071036.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1111091031.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0012.I00.1111091124.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1111141502.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1111171341.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1111280947.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1111281026.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1111301445.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1112051012.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1112051056.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1112051152.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1112070942.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1112071028.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1112121145.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1112121219.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1112140955.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1112141056.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1112201134.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1112201338.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1201041310.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1201041425.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1201090945.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1201091030.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1201120951.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1201122023.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1201122053.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1201160946.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1201161027.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1201181139.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1201181211.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1201231016.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1201231046.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1201251020.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1201251124.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1201300936.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1201301023.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1202011024.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1202011105.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1202021239.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1202061106.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1202061410.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1202061455.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1202081041.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1202081208.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1610041759.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0013.I00.1610041803.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.0000000000.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Jan 23 07:12"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1202131042.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1202131134.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1202151015.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1202151052.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1202201110.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1202201259.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1202221034.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1202270952.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1202271033.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1202291139.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1202291207.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1203050954.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1203051041.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1203071032.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1203071112.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1203120956.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1203121258.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1203140947.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1203141038.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1203190958.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1203191039.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1203210941.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1203211000.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1203261014.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1203281126.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1203281326.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1204021116.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1204021155.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1204041150.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1204041234.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1204091154.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1204091336.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1204110951.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1204111043.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1204160954.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1204161036.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1204180957.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1204181026.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1204231011.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1204231040.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1204250940.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1204251026.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1204251057.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1204300951.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1204301035.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1205020943.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1205071044.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1205071121.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1205091022.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1205091100.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1205140949.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1205141019.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1205161032.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1205211031.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1205211107.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1205230945.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1205231023.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1205300954.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1205301024.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1206041015.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1206041046.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1206061022.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1206061100.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1206111004.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1206111034.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1206131004.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1206131034.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1206181000.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1206181044.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1206201017.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1206201045.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1206251010.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1206251049.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1206271006.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1206271037.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1207021028.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1207021115.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1207091005.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1207091351.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1207111001.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1207111358.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1207161014.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1207161046.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1207181033.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1207181109.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1207231047.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1207231117.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1207251016.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1207251054.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1207301041.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1207301109.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1208011033.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1208011100.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1208061023.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1208061105.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1208081006.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1208090851.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1208090926.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1208131011.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1208131039.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1208151033.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1208151102.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1208201150.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1208201218.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1208221308.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1208221338.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1208311615.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1208311623.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1208311727.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1209041407.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1209042015.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1209042034.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1209042338.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1209171013.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1209171041.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1209241107.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1209241135.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1210011102.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1210011129.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1210121432.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1210121459.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1211151122.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1211151146.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1302251018.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1302260943.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1302261003.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1302261008.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1506081722.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1506081728.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1509111552.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1509111558.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1610201905.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1610201915.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1612161241.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1612161246.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1701200120.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1701200126.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1701231749.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1701231754.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1701241525.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1701241529.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1702021818.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1702021833.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1702171350.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1702171357.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1703090651.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1703090657.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1703232142.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1703232149.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1705011305.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1705011311.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1706190947.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1706190954.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1706220533.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1706220538.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1706261414.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1706261419.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1707270721.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM131.AAPLEFI4.88Z.0014.I00.1708080805.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "IM141.88Z.F000.B00.1912181604.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 21757, "date": "Jan 23 07:12"}, {"filename": "IM142.88Z.F000.B00.1912181604.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 21997, "date": "Jan 23 07:12"}, {"filename": "IM143.88Z.F000.B00.1912181604.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 22177, "date": "Jan 23 07:12"}, {"filename": "IM144.88Z.F000.B00.1912181611.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 10597, "date": "Jan 23 07:12"}, {"filename": "IM151.88Z.F000.B00.1912181731.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 10777, "date": "Jan 23 07:12"}, {"filename": "IM161.88Z.F000.B00.1910301927.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 11197, "date": "Jan 23 07:12"}, {"filename": "IM162.88Z.F000.B00.1910301924.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 11317, "date": "Jan 23 07:12"}, {"filename": "IM171.88Z.F000.B00.1912161452.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 7537, "date": "Jan 23 07:12"}, {"filename": "IM181.88Z.F000.B00.1912161654.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 7777, "date": "Jan 23 07:12"}, {"filename": "IM183.88Z.F000.B00.1912161654.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 7597, "date": "Jan 23 07:12"}, {"filename": "IM191.88Z.F000.B00.1912181732.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 7777, "date": "Jan 23 07:12"}, {"filename": "MB101.88Z.F000.B00.1912161654.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 7357, "date": "Jan 23 07:12"}, {"filename": "MB81.88Z.F000.B00.1912161554.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 11437, "date": "Jan 23 07:12"}, {"filename": "MB91.88Z.F000.B00.1912161452.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 7657, "date": "Jan 23 07:12"}, {"filename": "MBA41.AAPLEFI4.88Z.0009.I00.1012150856.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.0009.I00.1012190852.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.0009.I00.1101010850.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.0009.I00.1101050852.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000A.I00.1101100849.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000A.I00.1101120853.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000A.I00.1101140856.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000A.I00.1101150856.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000C.I00.1101190907.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000C.I00.1101200908.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000C.I00.1101210913.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000D.I00.1101220909.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000D.I00.1101230914.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000D.I00.1101240856.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000D.I00.1101250855.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000D.I00.1101261120.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000D.I00.1102021157.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1102091215.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1102091751.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1102111116.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1102111139.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1102111313.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1102111320.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1102111511.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1102111511.1.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1102161116.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1102211052.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1102231217.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1102241543.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1102241720.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1102251038.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1103021232.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1103070731.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1103091936.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1103161348.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1103211026.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1103211031.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1103231036.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1103281025.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1103281030.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1103301120.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1104041043.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1104061117.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1104061122.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1104111221.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1104131115.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1104181024.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1104181030.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1104201030.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1104221256.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1104251137.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000E.I00.1104271026.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I00.1105050916.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I00.1105091028.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I00.1105111250.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I00.1105111313.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I00.1105160959.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I00.1105161031.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I00.1105181141.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I00.1105181211.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I00.1105231054.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I00.1105231132.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I00.1105251109.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I00.1105251142.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I00.1105271358.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I00.1105271428.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I00.1106011425.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I00.1106011454.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I00.1106061000.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I00.1106061642.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I01.1106081015.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I01.1106081046.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1106101104.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1106132213.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1106140816.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1106151001.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1106151037.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1106162146.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1106162216.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1106200956.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1106201206.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1106201233.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1106221510.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1106221541.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1106231541.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1106232232.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1106232301.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1106271224.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1106271253.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1106291141.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1106291211.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1106300901.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1106300929.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1107271705.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1107271736.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1108031120.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1108031344.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1108101017.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1108101049.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1108171239.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1108171457.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1108171535.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1108291522.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1108291605.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1108311547.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1109011021.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1109011050.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1109071213.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1109211407.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1109231610.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1110141153.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1201241518.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1201241549.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1309301452.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1310091423.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1310091428.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1506081722.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1506081728.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1509111552.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1509111558.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1510261804.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1606291853.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1610201436.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1610201441.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1612161003.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1612161009.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1701200227.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1701200234.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1701231856.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1701231905.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1702171849.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1702171855.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1702201321.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1702201326.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1703082356.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1703090011.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1703211803.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1703211809.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1703241835.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1703241839.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1703291020.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1703291024.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1704131531.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1704131536.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1705011209.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1705011214.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1705022113.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1705022117.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1706182246.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1706182250.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1706220616.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1706220621.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1706261209.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1706261217.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1707271102.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA41.AAPLEFI4.88Z.000F.I02.1708072159.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.88Z.F000.B00.1912181605.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 22417, "date": "Jan 23 07:12"}, {"filename": "MBA51.AAPLEFI4.88Z.0012.I00.1110121203.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1111141506.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1111171404.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1111280948.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1111281040.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1111301430.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1111301509.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1112051016.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1112051133.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1112051211.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1112070949.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1112071043.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1112121146.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1112121305.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1112141001.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1112141058.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1112201138.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1112201339.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1201041310.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1201041425.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1201091015.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1201121003.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1201121137.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1201161023.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1201161308.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1201161358.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1201181155.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1201181234.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1201230947.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1201231032.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1201250939.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1201251246.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1201300936.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1201301023.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1202011011.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1202011049.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1202061112.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1202061346.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1202061417.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1202081103.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0013.I00.1202081208.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.0000000000.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Jan 23 07:12"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1202131131.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1202131211.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1202151049.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1202151130.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1202201147.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1202201301.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1202221017.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1202221053.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1202271030.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1202271055.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1202291156.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1202291238.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1203051021.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1203051042.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1203071108.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1203071145.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1203120956.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1203121259.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1203140948.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1203141013.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1203190958.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1203191039.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1203210941.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1203211000.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1203261015.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1203261043.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1203281127.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1203281150.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1204021117.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1204021140.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1204041153.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1204041235.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1204091154.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1204091337.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1204110952.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1204111044.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1204160951.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1204161036.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1204180957.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1204181043.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1204231017.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1204231109.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1204250940.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1204251030.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1204251115.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1204300953.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1204301036.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1205020944.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1205021014.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1205071045.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1205071121.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1205091022.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1205091101.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1205111019.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1205111052.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1205140950.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1205141142.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1205141211.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1205180833.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1205180901.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1205221412.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1205221442.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1207091048.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1207271032.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1207271048.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1207271121.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1211271001.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1211271023.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1211271028.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1506081618.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1506081623.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1509111646.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1509111653.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1610241029.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1610241034.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1612161124.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1612161130.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1701200120.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1701200126.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1701231856.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1701231905.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1701241625.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1701241632.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1702030112.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1702030117.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1702171350.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1702171357.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1703090651.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1703090657.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1703241418.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1703241423.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1705011406.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1705011412.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1706190947.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1706190954.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1706220516.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1706220521.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1706261427.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1706261433.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1707270721.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA51.AAPLEFI4.88Z.0014.I00.1708080803.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBA61.88Z.F000.B00.1912181759.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 22657, "date": "Jan 23 07:12"}, {"filename": "MBA71.88Z.F000.B00.1912161554.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 11317, "date": "Jan 23 07:12"}, {"filename": "MBP101.88Z.F000.B00.1912181603.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 23137, "date": "Jan 23 07:12"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.0000000000.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Jan 23 07:12"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1202270953.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1202271033.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1202291150.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1202291238.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1203051001.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1203051042.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1203071033.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1203071113.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1203120955.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1203121022.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1203140948.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1203141013.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1203190959.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1203191039.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1203210941.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1203211019.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1203261016.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1203261100.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1203281126.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1203281150.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1204021117.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1204021140.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1204041151.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1204041235.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1204091154.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1204091219.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1204110951.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1204111044.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1204160955.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1204161036.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1204181109.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1204181135.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1204241531.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1204241558.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1204251023.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1204251058.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1204271732.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1204271809.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1204300951.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1204301036.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1205011144.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1205011212.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1205031113.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1205031115.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1205031148.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1205041142.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1205041513.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1205041550.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1205091751.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1205091823.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1205101811.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1205101839.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1207271031.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1207271103.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1208081105.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1208081132.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1212211406.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1212211431.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1212211436.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1408281415.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1408281420.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1408291526.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1408291532.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1411201035.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1411201127.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1411201133.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1501071024.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1501071030.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1506081208.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1506081214.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1506081359.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1506081405.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1509111552.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1509111558.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1610201436.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1610201441.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1612151848.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1612151859.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1701200227.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1701200234.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1701231856.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1701231905.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1701241625.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1701241632.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1702021808.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1702021830.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1702171350.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1702171357.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1703082230.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1703082236.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1703211803.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1703211810.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1705011305.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1705011311.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1705012100.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1705012106.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1706190853.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1706190857.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1706221015.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1706221021.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1706261413.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1706261418.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1707270653.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP101.AAPLEFI4.88Z.0014.I00.1708080809.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.88Z.F000.B00.1912181755.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 22057, "date": "Jan 23 07:12"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.0000000000.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Jan 23 07:12"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1202270953.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1202271034.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1202291153.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1202291238.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1203051006.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1203051042.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1203071033.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1203071113.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1203120956.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1203121224.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1203140948.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1203141013.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1203190958.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1203191021.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1203210943.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1203211019.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1203261015.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1203261043.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1203281127.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1203281326.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1204021116.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1204021155.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1204041150.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1204041235.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1204091153.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1204091337.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1204110950.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1204111029.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1204160951.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1204161036.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1204180957.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1204181043.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1204231011.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1204231041.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1204250940.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1204251024.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1204251115.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1204300950.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1204301018.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1205020944.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1205071045.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1205071106.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1205091022.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1205091101.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1205140950.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1205141037.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1205161033.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1205211031.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1205211107.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1205230946.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1205231024.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1205300954.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1205301025.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1206041016.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1206041047.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1206061023.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1206061101.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1206111004.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1206111035.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1206131004.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1206131232.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1206181001.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1206181022.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1206201017.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1206201046.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1206251011.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1206251049.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1206271005.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1206271037.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1207021029.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1207021055.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1207091007.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1207091352.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1207111001.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1207111359.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1207161014.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1207161047.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1207181029.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1207181056.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1207231047.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1207231118.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1207251017.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1207251055.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1207301044.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1207301122.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1208061024.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1208061129.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1208081006.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1208081549.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1208081616.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1208090843.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1208091051.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1208091120.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1208311607.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1208311636.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1210241012.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1210241108.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1211161109.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1211161128.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1211161133.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1408281415.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1408281420.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1408291452.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1408291502.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1411201142.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1411201220.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1411201232.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1501071209.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1501071215.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1506081208.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1506081215.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1509111646.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1509111653.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1509130950.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1509130955.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1610201905.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1610201915.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1612161124.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1612161130.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1701200120.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1701200127.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1701231749.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1701231754.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1701241525.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1701241530.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1702021808.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1702021830.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1702171350.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1702171357.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1703090651.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1703090657.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1703211803.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1703211810.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1705011305.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1705011311.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1706190947.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1706190954.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1706220440.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1706220445.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1706261821.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1706261827.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1707270836.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP102.AAPLEFI4.88Z.0014.I00.1708080805.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP111.88Z.F000.B00.1912181759.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 22897, "date": "Jan 23 07:12"}, {"filename": "MBP112.88Z.F000.B00.1912181609.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 23497, "date": "Jan 23 07:12"}, {"filename": "MBP114.88Z.F000.B00.1912161555.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 11737, "date": "Jan 23 07:12"}, {"filename": "MBP121.88Z.F000.B00.1912161438.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 11677, "date": "Jan 23 07:12"}, {"filename": "MBP131.88Z.F000.B00.1912161653.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 7777, "date": "Jan 23 07:12"}, {"filename": "MBP132.88Z.F000.B00.1912161510.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 7597, "date": "Jan 23 07:12"}, {"filename": "MBP133.88Z.F000.B00.1912161510.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 7597, "date": "Jan 23 07:12"}, {"filename": "MBP141.88Z.F000.B00.1912161654.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 7057, "date": "Jan 23 07:12"}, {"filename": "MBP142.88Z.F000.B00.1912161510.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 7237, "date": "Jan 23 07:12"}, {"filename": "MBP143.88Z.F000.B00.1912161510.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 7117, "date": "Jan 23 07:12"}, {"filename": "MBP61.AAPLEFI1.88Z.0001.I00.0908281642.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI1.88Z.0001.I00.0909021206.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI1.88Z.0001.I00.0909091053.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI1.88Z.0001.I00.0909111151.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI1.88Z.0001.I00.0909111311.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI1.88Z.0001.I00.0909141531.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI1.88Z.0001.I00.0909141605.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI1.88Z.0001.I00.0909171006.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI1.88Z.0002.I00.0909231120.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI1.88Z.0002.I00.0909281404.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI1.88Z.0002.I00.0909281434.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI1.88Z.0002.I00.0910021021.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI1.88Z.0002.I00.0910021109.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI1.88Z.0002.I00.0910051536.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI1.88Z.0002.I00.0910051609.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI1.88Z.0002.I00.0910071112.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI1.88Z.0002.I00.0910071204.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI1.88Z.0002.I00.0910091045.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI1.88Z.0002.I00.0910091152.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI1.88Z.0002.I00.0910122219.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI1.88Z.0002.I00.0910141131.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI1.88Z.0002.I00.0910141146.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI1.88Z.0003.I00.0910191448.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI1.88Z.0003.I00.0910261502.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI1.88Z.0003.I00.0910261526.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI1.88Z.0003.I00.0911021519.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0004.I00.0911021455.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0004.I00.0911041106.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0004.I00.0911041225.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0004.I00.0911051851.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0004.I00.0911091623.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0004.I00.0911102030.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0004.I00.0911111320.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0004.I00.0911111458.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0004.I00.0911181055.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0004.I00.0911181122.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0004.I00.0911201450.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.0912041103.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.0912071334.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.0912071351.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.0912111222.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.0912111310.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.0912141534.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.0912141713.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.0912161112.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.0912181400.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.0912181429.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.0912221140.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.0912230907.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.0912231624.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1001041713.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1001061125.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1001061318.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1001111512.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1001111606.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1001130947.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1001131128.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1001151201.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1001151930.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1001181347.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1001201400.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1001221111.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1001251655.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1001300949.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1002031201.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1002081648.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1002101134.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1002121529.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1002171109.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1002171134.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1002191226.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1002191317.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1002221535.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1002221634.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1002261350.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1002261410.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1003011701.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1003012124.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1003040834.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1003101534.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1003121208.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1003151740.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1003191132.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1003241646.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1003311129.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1004071223.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1004141323.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1004141928.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1004161213.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1005120959.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1007091037.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1007261549.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1007270941.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1112091026.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1112091048.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1507212145.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1509232007.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1612201815.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1701210053.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1702172052.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1702241220.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1703211519.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1704250025.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1704281105.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1705021134.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1706170445.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1706220130.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1706261100.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1707241351.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0005.I00.1708072213.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 397, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0008.I00.1101140902.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 457, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0008.I00.1101150900.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 457, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0009.I00.1101180908.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 457, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0009.I00.1101190919.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 457, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0009.I00.1101200913.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 457, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0009.I00.1101210914.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 457, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0009.I00.1101220934.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 457, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0009.I00.1101230919.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 457, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0009.I00.1101240901.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 457, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0009.I00.1101250906.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 457, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0009.I00.1101260902.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 457, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0009.I00.1101270917.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 457, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0009.I00.1101280909.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 457, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0009.I00.1101290917.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 457, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0009.I00.1101310922.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 457, "date": "Apr 25 2019"}, {"filename": "MBP61.AAPLEFI2.88Z.0009.I00.1102030927.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 457, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0005.I00.1008041152.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0005.I00.1008091100.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0005.I00.1008091102.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0005.I00.1008121648.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0005.I00.1008181316.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0005.I00.1008231306.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0005.I00.1008301408.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0005.I00.1009011146.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0005.I00.1009011359.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0006.I00.1009081106.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0006.I00.1009081229.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0007.I00.1009131052.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0007.I00.1009131127.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0007.I00.1009151119.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0007.I00.1009201123.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0007.I00.1009231114.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0007.I00.1009271028.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0008.I00.1009291039.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0008.I00.1010020951.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0008.I00.1010041149.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0008.I00.1010050947.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0008.I00.1010051721.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0008.I00.1010090948.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0008.I00.1010111110.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1010130948.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1010131104.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1010170911.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1010181215.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1010200911.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1010200953.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1010220907.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1010270911.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1010290910.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1010291334.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1011020813.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1011021508.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1011050814.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1011051250.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1011100908.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1011101038.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1011110912.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1011121717.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1011160915.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1011210912.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1011220636.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1011290915.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1011291125.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1012010914.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1012011154.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1012020915.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1012050911.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1012080910.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1012081134.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1012120910.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1012131136.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1012150919.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1012151059.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1012170922.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1012171129.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1012190927.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1012201104.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1012250928.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1012271035.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1101010926.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1101031514.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1101050927.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1101051125.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I00.1101070923.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I01.1101100926.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I01.1101101111.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I01.1101120928.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I01.1101121200.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I01.1101141645.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I01.1101141819.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I01.1101150923.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I01.1101151124.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I01.1101190937.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I01.1101191059.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I01.1101191814.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I01.1101210924.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I01.1101211514.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I01.1101220928.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I01.1101220928.1.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I01.1101230924.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I01.1101231134.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I01.1101282108.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I01.1102022358.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1102021106.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1102030931.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1102041819.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1102071705.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1103021059.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1103091154.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1103161348.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1103242113.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1103301200.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1104061123.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1104111855.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1104150725.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1104201033.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1104221555.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1107141149.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1107281122.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1108031501.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1108101818.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1108151745.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1108180842.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1108251704.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1108291539.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1109011021.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1109071116.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1109091242.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1109141951.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1109150518.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1109211336.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1109212241.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1109231544.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1109240018.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1109281425.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1110061632.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1110141128.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1110311250.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1201241644.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1404091743.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1411211557.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1506082157.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1509141026.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1510261534.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1610201932.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1612201423.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1701201815.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1702180125.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1703291134.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1704131704.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1704242025.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1704281723.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1705021652.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1705101322.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1706170647.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1706220747.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1706261917.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1707271211.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP81.AAPLEFI4.88Z.0009.I02.1708080651.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MBP91.88Z.F000.B00.1912181730.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 22417, "date": "Jan 23 07:12"}, {"filename": "MBP91.AAPLEFI4.88Z.0011.I00.1108101438.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0011.I00.1108151010.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0011.I00.1108151051.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0011.I00.1108151158.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0011.I00.1108151229.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0011.I00.1108171239.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0011.I00.1108171455.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0011.I00.1108182037.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0011.I00.1108221029.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0011.I00.1108240732.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0011.I00.1108240851.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0011.I00.1108290950.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0011.I00.1108291009.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0011.I00.1108311344.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0011.I00.1109011003.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0011.I00.1109071042.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0011.I00.1109120938.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1109141014.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1109141045.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1109190952.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1109191026.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1109211037.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1109211108.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1109260950.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1109271122.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1109271154.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1110031002.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1110031550.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1110031624.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1110050943.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1110051014.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1110100943.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1110101024.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1110121145.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1110121224.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1110170947.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1110201059.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1110211410.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1110211654.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1110260953.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1110270932.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1110271505.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1110271556.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1111020932.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1111021220.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1111070952.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1111071049.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1111091018.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0012.I00.1111091102.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1111141507.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1111171322.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1111280948.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1111281040.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1111301450.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1111301545.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1112051020.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1112051117.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1112051211.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1112070946.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1112071043.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1112121146.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1112121305.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1112140956.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1112141058.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1112201140.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1112201339.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1201041310.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1201041425.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1201062157.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1201062224.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1201120937.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1201121147.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1201121220.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1201160947.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1201161303.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1201161358.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1201181137.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1201181211.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1201230951.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1201231032.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1201250939.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1201251022.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1201301018.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1201301058.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1202011010.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1202011331.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1202061139.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1202061333.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1202081118.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0013.I00.1202081208.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.0000000000.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Jan 23 07:12"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1202131043.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1202131135.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1202151049.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1202151130.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1202201117.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1202201259.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1202221013.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1202221148.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1202241139.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1202251052.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1202251119.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1202291148.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1202291207.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203051001.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203051023.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203071032.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203071112.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203081035.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203081110.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203091410.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203091712.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203120956.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203121154.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203131744.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203141235.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203141254.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203151822.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203151848.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203191245.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203191305.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203191306.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203191520.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203211509.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203211536.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203261014.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203261059.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203281126.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1203281326.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1204181246.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1204181313.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1205041512.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1205041549.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1205101121.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1205101148.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1205101838.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1205101904.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1207271032.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1207271103.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1208081105.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1208081131.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1302061104.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1302061158.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1302061204.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1504291452.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1504291456.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1506081208.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1506081214.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1509111646.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1509111652.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1602221701.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1602221712.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1610201607.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1610201614.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1612161003.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1612161009.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1701200227.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1701200233.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1701231856.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1701231904.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1701241625.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1701241631.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1702021808.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1702021828.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1702171514.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1702171521.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1703082356.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1703090008.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1703221856.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1703221900.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1705011406.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1705011411.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1705012100.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1705012105.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1706182353.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1706182357.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1706221015.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1706221020.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1706261209.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1706261216.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1707270908.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MBP91.AAPLEFI4.88Z.0014.I00.1708080744.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1010170858.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1010200858.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1010230857.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1010270858.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1010290858.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1011020758.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1011050801.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1011100902.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1011110859.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1011160900.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1011210900.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1011290901.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1012010901.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1012020901.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1012050859.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1012080859.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1012081210.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1012120907.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1012131137.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1012150907.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1012151059.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1012190912.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1012201104.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1101010913.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1101031515.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1101050912.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.0009.I00.1101051127.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000A.I00.1101100912.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000A.I00.1101101135.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000A.I00.1101120913.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000A.I00.1101121201.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 697, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000A.I00.1101140913.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000A.I00.1101150912.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000A.I00.1101171151.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000C.I00.1101190924.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000C.I00.1101191059.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000C.I00.1101200933.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000C.I00.1101210919.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000D.I00.1101220928.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000D.I00.1101230921.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000D.I00.1101240912.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000D.I00.1101241139.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000D.I00.1101250919.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000D.I00.1101260911.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000D.I00.1101261042.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000D.I00.1101270934.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000D.I00.1101280922.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000D.I00.1101290932.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000D.I00.1101310938.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000D.I00.1101311143.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000D.I00.1101311851.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000D.I00.1102030926.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1102091751.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1102141048.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1102161116.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1102211052.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1102231153.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1102251052.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1102281126.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1103021054.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1103070731.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1103091937.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1103161348.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1103211026.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1103211031.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1103231036.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1103281025.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1103281030.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1103301120.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1104041043.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1104061117.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1104061122.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1104131115.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1104181024.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1104181030.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1104201030.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1104251122.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000E.I00.1104271026.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I00.1105021032.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I00.1105050916.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I00.1105091028.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I00.1105111247.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I00.1105111400.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I00.1105160959.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I00.1105161031.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I00.1105181142.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I00.1105181211.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I00.1105231054.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I00.1105231132.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I00.1105251109.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I00.1105251142.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I00.1105271358.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I00.1105271441.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I00.1106011420.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I00.1106011454.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I00.1106061000.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I00.1106061029.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I01.1106081014.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I01.1106081046.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1106101105.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1106132213.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1106140816.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1106151001.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1106151037.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1106162146.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1106162216.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1106200956.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1106201202.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1106201233.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1106221510.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1106221623.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1106231540.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1106232231.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1106232352.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1106271223.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1106271442.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1107271705.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1107271736.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1108031123.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1108031344.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1108101016.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1108101049.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1108171238.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1108171440.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1108171509.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1108291522.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1108311547.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1109011011.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1109011050.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1109071213.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1109071242.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1109091159.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1109091225.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1109141942.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1109142033.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1109211406.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1109231610.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1110141153.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1110201308.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1201241544.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1201241549.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1506081722.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1506081728.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1509111552.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1509111558.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1510261804.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1606291827.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1610201607.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1610201614.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1612161003.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1612161009.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1701200227.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1701200234.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1701231856.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1701231905.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1702171514.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1702171522.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1702201321.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1702201326.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1703090219.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1703090225.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1703232120.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1703232137.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1704131531.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1704131536.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1705011209.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1705011214.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1706191359.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1706191403.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1706220614.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1706220620.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1706261432.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1706261437.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1707270909.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM51.AAPLEFI4.88Z.000F.I02.1708080744.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.88Z.F000.B00.1912181603.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 21337, "date": "Jan 23 07:12"}, {"filename": "MM61.AAPLEFI4.88Z.0012.I00.1110171020.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0012.I00.1111020932.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0012.I00.1111070952.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0012.I00.1111091021.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1111141507.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1111171342.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1111280948.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1111281040.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1111301453.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1111301545.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1112051019.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1112051118.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1112051211.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1112070946.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1112071043.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1112121146.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1112121305.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1112141008.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1112141058.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1112201138.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1112201339.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1201041309.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1201041425.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1201090945.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1201091030.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1201120937.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1201121027.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1201161024.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1201161106.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1201181157.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1201181234.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1201230952.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1201231032.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1201251021.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1201251124.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1201301018.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1201301058.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1202011047.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1202011118.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1202061146.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1202061333.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1202061417.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1202081041.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0013.I00.1202081208.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.0000000000.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Jan 23 07:12"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1202131131.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1202131211.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1202151012.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1202151052.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1202201143.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1202201301.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1202221015.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1202221149.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1202270953.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1202271033.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1202291155.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1202291238.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1203051026.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1203051102.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1203071107.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1203071145.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1203120956.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1203121259.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1203140947.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1203141013.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1203190958.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1203191021.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1203210941.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1203211019.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1203261016.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1203261059.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1203281127.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1203281326.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1204021117.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1204021140.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1204041151.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1204041213.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1204091153.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1204091337.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1204110951.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1204111207.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1204160951.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1204161014.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1204180957.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1204181043.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1204231017.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1204231109.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1204250940.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1204251024.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1204251115.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1204300952.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1204301036.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1205020951.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1205071045.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1205071121.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1205091022.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1205091101.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1205140949.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1205141019.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1205161032.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1205211031.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1205211108.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1205230945.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1205231023.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1205300954.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1205301024.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1206041016.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1206041047.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1206061023.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1206061101.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1206111004.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1206111035.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1206131004.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1206131035.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1206181001.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1206181044.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1206201018.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1206201059.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1206251011.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1206251049.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1206271007.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1206271104.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1207021029.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1207021115.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1207091006.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1207091352.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1207111001.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1207111359.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1207161014.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1207161047.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1207171148.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1207171406.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1207171438.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1207181033.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1207181110.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1207231047.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1207231118.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1207251016.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1207251054.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1207301044.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1207301122.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1208061023.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1208061129.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1208081006.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1208081548.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1208081616.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1208090842.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1208091051.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1208091120.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1211161109.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1211161132.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1211161202.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1309191428.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1309191433.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1506081208.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1506081214.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1506081359.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1506081405.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1507101017.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1507101043.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1509111646.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1509111653.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1610201648.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1610201653.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1612161124.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1612161130.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1701200120.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1701200126.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1701231856.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1701231907.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1701241625.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1701241632.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1702021808.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1702021830.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1702171714.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1702171720.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1703082356.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1703090009.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1703212034.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1703212039.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1705011508.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1705011514.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1706190947.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1706190954.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1706220458.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1706220503.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1706261209.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1706261217.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1707271000.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM61.AAPLEFI4.88Z.0014.I00.1708080649.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MM71.88Z.F000.B00.1912161438.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 10837, "date": "Jan 23 07:12"}, {"filename": "MP61.88Z.F000.B00.1912181758.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 10297, "date": "Jan 23 07:12"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1309251543.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1309251543.1.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1310011106.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1310021032.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1310041108.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1310071034.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1310091025.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1310091030.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1310141105.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1310161051.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1310211035.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1310231030.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1310281050.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1310301042.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1311011054.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1311020955.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1311211810.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1311222013.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1312061508.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1402141110.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1402141115.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1408281630.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1408281640.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1408291649.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1408291655.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1410131006.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1410131032.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1411050951.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1411051458.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1411131657.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1411131702.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1411141736.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1411141741.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1411201041.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1411201134.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1501071118.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1501071126.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1502131710.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1502131715.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1504291754.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1504291759.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1505141121.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1505141126.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1506050539.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1506050547.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1509081425.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1509081436.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1602221551.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1602221559.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1605171347.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1605171350.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1608231225.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1608231228.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1608261904.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1608261907.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1610051051.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1610051056.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1610201517.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1610201523.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1612151849.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1612151900.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1701131523.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1701131542.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1702021713.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1702021720.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1702171850.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1702171856.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1703090219.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1703090226.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1703231639.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1703231703.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1703281328.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1703281336.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1705011710.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1705011717.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1706200304.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1706200309.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1706221129.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1706221151.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1706261347.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1706261354.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.0017.I00.1707271003.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.0000000000.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Jan 23 07:12"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1310011106.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1310021032.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1310041108.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1310071034.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1310091025.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1310091030.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1310141105.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1310161051.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1310211035.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1310231030.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1310281050.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1310301042.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1311011054.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1311020955.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1311211810.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1311222013.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1312061508.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1402141110.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1402141115.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1408281630.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1408281640.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1408291649.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1408291655.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1410131027.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1410131032.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1411051453.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1411051458.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1411131657.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1411131702.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1411141736.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1411141741.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1411201128.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1411201134.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1501071118.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1501071126.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1502131710.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1502131715.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1504291754.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1504291759.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1505141121.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1505141126.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1506050539.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1506050547.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1509081425.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1509081436.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1602221551.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1602221559.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1610051051.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1610051056.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1610201517.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1610201523.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1612151849.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1612151900.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1701131523.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1701131542.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1702021713.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1702021720.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1702171850.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1702171856.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1703090219.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1703090226.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1703231639.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1703231703.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1703281328.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1703281336.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1705011710.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1705011717.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1706200304.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1706200309.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1706221129.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1706221151.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1706261347.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1706261354.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": "MP61.AAPLEFI5.88Z.9982.I99.1708080652.0.ealf", "parent": "/usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 817, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization", "flags": "drwxr-xr-x", "links": 6, "owner": "root", "group": "wheel", "size": 192, "date": "Feb 7 23:29"}, {"filename": "Contents", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "Resources", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents", "flags": "drwxr-xr-x", "links": 41, "owner": "root", "group": "wheel", "size": 1312, "date": "May 3 2019"}, {"filename": ".", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources", "flags": "drwxr-xr-x", "links": 41, "owner": "root", "group": "wheel", "size": 1312, "date": "May 3 2019"}, {"filename": "..", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "Dutch.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "English.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "French.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "German.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "Italian.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "Japanese.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "Spanish.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "ar.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "ca.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "cs.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "da.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "el.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "en_AU.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "en_GB.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "es_419.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "fi.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "fr_CA.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "he.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "hi.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "hr.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "hu.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "id.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "ko.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "ms.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "no.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "pl.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "pt.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "pt_PT.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "ro.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "ru.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "sk.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "sv.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "th.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "tr.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "uk.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "vi.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "zh_CN.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "zh_HK.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "zh_TW.lproj", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/Dutch.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/Dutch.lproj", "flags": "drwxr-xr-x", "links": 41, "owner": "root", "group": "wheel", "size": 1312, "date": "May 3 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/Dutch.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 391, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/English.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/English.lproj", "flags": "drwxr-xr-x", "links": 41, "owner": "root", "group": "wheel", "size": 1312, "date": "May 3 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/English.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 412, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/French.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/French.lproj", "flags": "drwxr-xr-x", "links": 41, "owner": "root", "group": "wheel", "size": 1312, "date": "May 3 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/French.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 513, "date": "Apr 25 2019"}, {"filename": ".", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/German.lproj", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": 96, "date": "Apr 25 2019"}, {"filename": "..", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/German.lproj", "flags": "drwxr-xr-x", "links": 41, "owner": "root", "group": "wheel", "size": 1312, "date": "May 3 2019"}, {"filename": "Localizable.strings", "parent": "/usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/German.lproj", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": 456, "date": "Apr 25 2019"}] jc-1.17.3/tests/fixtures/osx-10.14.6/ls-alR.out000066400000000000000000013100421415226333200205150ustar00rootroot00000000000000total 0 drwxr-xr-x@ 9 root wheel 288 May 3 2019 . drwxr-xr-x 34 root wheel 1088 Feb 7 23:30 .. drwxr-xr-x 970 root wheel 31040 Feb 7 23:29 bin drwxr-xr-x 306 root wheel 9792 Feb 7 23:29 lib drwxr-xr-x 249 root wheel 7968 Feb 7 23:29 libexec drwxr-xr-x 18 root wheel 576 Oct 3 08:02 local drwxr-xr-x 239 root wheel 7648 Feb 7 23:29 sbin drwxr-xr-x 46 root wheel 1472 May 4 2019 share drwxr-xr-x 5 root wheel 160 May 3 2019 standalone /usr/bin: total 104672 drwxr-xr-x 970 root wheel 31040 Feb 7 23:29 . drwxr-xr-x@ 9 root wheel 288 May 3 2019 .. -rwxr-xr-x 4 root wheel 925 Feb 22 2019 2to3- lrwxr-xr-x 1 root wheel 74 May 4 2019 2to3-2.7 -> ../../System/Library/Frameworks/Python.framework/Versions/2.7/bin/2to3-2.7 -rwxr-xr-x 1 root wheel 55152 May 3 2019 AssetCacheLocatorUtil -rwxr-xr-x 1 root wheel 53552 May 3 2019 AssetCacheManagerUtil -rwxr-xr-x 1 root wheel 48112 May 3 2019 AssetCacheTetheratorUtil -rwxr-xr-x 1 root wheel 18320 Jul 16 2019 BuildStrings -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 CpMac -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 DeRez -rwxr-xr-x 1 root wheel 18320 Jul 16 2019 GetFileInfo -rwxr-xr-x 1 root wheel 69760 Jan 24 01:14 IOAccelMemory -rwxr-xr-x 1 root wheel 18304 Jul 16 2019 MergePef -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 MvMac -rwxr-xr-x 1 root wheel 18304 Jul 16 2019 ResMerger -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 Rez -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 RezDet -rwxr-xr-x 1 root wheel 18304 Jul 16 2019 RezWack -rwxr-xr-x 1 root wheel 32384 Jan 24 01:14 SafeEjectGPU -rwxr-xr-x 1 root wheel 18304 Jul 16 2019 SetFile -rwxr-xr-x 1 root wheel 18304 Jul 16 2019 SplitForks -rwxr-xr-x 1 root wheel 18304 Jul 16 2019 UnRezWack -rwxr-xr-x 1 root wheel 66608 Jul 16 2019 a2p -rwxr-xr-x 1 root wheel 234128 Jul 16 2019 a2p5.18 -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 actool -rwxr-xr-x 1 root wheel 33808 May 3 2019 addftinfo -rwxr-xr-x 1 root wheel 68464 Jul 16 2019 afclip -rwxr-xr-x 1 root wheel 120848 Jul 16 2019 afconvert -rwxr-xr-x 1 root wheel 55712 Jul 16 2019 afhash -rwxr-xr-x 1 root wheel 98416 Jul 16 2019 afida -rwxr-xr-x 1 root wheel 110208 Jul 16 2019 afinfo -rwxr-xr-x 1 root wheel 162321 Feb 22 2019 afmtodit -rwxr-xr-x 1 root wheel 65568 Jul 16 2019 afplay -rwxr-xr-x 1 root wheel 37664 May 3 2019 afscexpand -rwxr-xr-x 1 root wheel 30096 May 3 2019 agentxtrap -rwxr-xr-x 1 root wheel 18304 Jul 16 2019 agvtool -rwxr-xr-x 15 root wheel 190 Feb 22 2019 alias -rwxr-xr-x 1 root wheel 41248 Jul 16 2019 applesingle lrwxr-xr-x 1 root wheel 82 May 4 2019 appletviewer -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/appletviewer -rwxr-xr-x 1 root wheel 18960 May 3 2019 apply -r-xr-xr-x 1 root wheel 1808 Feb 22 2019 apropos lrwxr-xr-x 1 root wheel 73 May 4 2019 apt -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/apt -rwxr-xr-x 1 root wheel 18272 Jul 16 2019 ar -rwxr-xr-x 1 root wheel 66880 Jan 24 01:14 arch -rwxr-xr-x 1 root wheel 18272 Jul 16 2019 as -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 asa -rwxr-xr-x 1 root wheel 144528 Jul 16 2019 asctl -rwxr-xr-x 1 root wheel 931568 Jul 16 2019 assetutil -r-sr-xr-x 1 root wheel 83680 Jan 24 01:14 at -rwxr-xr-x 1 root wheel 80880 Jan 24 01:14 atos -r-sr-xr-x 1 root wheel 83680 Jan 24 01:14 atq -r-sr-xr-x 1 root wheel 83680 Jan 24 01:14 atrm -rwxr-xr-x 1 root wheel 30624 May 3 2019 atsutil -rwxr-xr-x 1 root wheel 39712 May 3 2019 automator -r-xr-xr-x 1 root wheel 125 Apr 10 2019 auval -rwxr-xr-x 1 root wheel 344976 Jul 16 2019 auvaltool -rwxr-xr-x 1 root wheel 61152 Jul 16 2019 avbdiagnose -rwxr-xr-x 1 root wheel 59776 Jul 16 2019 avbutil -rwxr-xr-x 1 root wheel 95232 Jul 16 2019 avconvert -rwxr-xr-x 1 root wheel 29296 Jan 24 01:14 avmetareadwrite -rwxr-xr-x 1 root wheel 112576 May 3 2019 awk -rwxr-xr-x 1 root wheel 31088 May 3 2019 banner -rwxr-xr-x 1 root wheel 23248 May 3 2019 base64 -rwxr-xr-x 1 root wheel 18304 May 3 2019 basename -r-xr-xr-x 1 root wheel 6574 Feb 22 2019 bashbug -r-sr-xr-x 1 root wheel 83680 Jan 24 01:14 batch -rwxr-xr-x 1 root wheel 81232 May 3 2019 bc -rwxr-xr-x 15 root wheel 190 Feb 22 2019 bg -rwxr-xr-x 1 root wheel 18240 May 3 2019 biff -rwxr-xr-x 1 root wheel 45792 Jul 16 2019 binhex -rwxr-xr-x 35 root wheel 811 Feb 22 2019 binhex.pl -r-xr-xr-x 1 root wheel 3941 Feb 22 2019 binhex5.18.pl -rwxr-xr-x 1 root wheel 120160 Jan 24 01:14 bioutil -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 bison -rwxr-xr-x 1 root wheel 1958 Feb 22 2019 bitesize.d -rwxr-xr-x 1 root wheel 193792 May 3 2019 brctl -rwxr-xr-x 1 root wheel 71040 May 3 2019 bsdtar -rwxr-xr-x 1 root wheel 18688 May 3 2019 bspatch -rwxr-xr-x 1 root wheel 8708 Feb 22 2019 btmmdiagnose -rwxr-xr-x 1 root wheel 41312 May 3 2019 bunzip2 -rwxr-xr-x 1 root wheel 41312 May 3 2019 bzcat lrwxr-xr-x 1 root wheel 6 May 4 2019 bzcmp -> bzdiff -rwxr-xr-x 1 root wheel 2101 Feb 22 2019 bzdiff -rwxr-xr-x 1 root wheel 33952 May 3 2019 bzegrep -rwxr-xr-x 1 root wheel 33952 May 3 2019 bzfgrep -rwxr-xr-x 1 root wheel 33952 May 3 2019 bzgrep -rwxr-xr-x 1 root wheel 41312 May 3 2019 bzip2 -rwxr-xr-x 1 root wheel 22848 May 3 2019 bzip2recover lrwxr-xr-x 1 root wheel 6 May 4 2019 bzless -> bzmore -rwxr-xr-x 1 root wheel 1259 Feb 22 2019 bzmore lrwxr-xr-x 1 root wheel 7 May 4 2019 c++ -> clang++ -rwxr-xr-x 1 root wheel 439792 May 3 2019 c++filt -rwxr-xr-x 38 root wheel 811 Mar 28 2019 c2ph -rwxr-xr-x 1 root wheel 36642 Mar 28 2019 c2ph5.18 -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 c89 -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 c99 -rwxr-xr-x 1 root wheel 24432 Jul 16 2019 caffeinate -r-xr-xr-x 1 root wheel 32192 May 3 2019 cal -r-xr-xr-x 1 root wheel 33632 May 3 2019 calendar -r-xr-xr-x 1 root wheel 23728 Jan 24 01:14 cancel -rwxr-xr-x 1 root wheel 18688 May 3 2019 cap_mkdb lrwxr-xr-x 1 root wheel 3 May 4 2019 captoinfo -> tic lrwxr-xr-x 1 root wheel 5 May 4 2019 cc -> clang -rwxr-xr-x 15 root wheel 190 Feb 22 2019 cd -rwxr-xr-x 1 root wheel 91376 Jan 24 01:14 certtool -rwxr-xr-x 1 root wheel 26912 Jan 24 01:14 checknr -rwxr-xr-x 1 root wheel 18752 May 3 2019 chflags -rwxr-xr-x 1 root wheel 73776 Jan 24 01:14 chfn -rwxr-xr-x 1 root wheel 23312 May 3 2019 chgrp -rwxr-xr-x 1 root wheel 73776 Jan 24 01:14 chpass -rwxr-xr-x 1 root wheel 73776 Jan 24 01:14 chsh -rwxr-xr-x 1 root wheel 22688 May 3 2019 cksum -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 clang -rwxr-xr-x 1 root wheel 18304 Jul 16 2019 clang++ -rwxr-xr-x 1 root wheel 18016 May 3 2019 clear -rwxr-xr-x 1 root wheel 32672 May 3 2019 cmp -rwxr-xr-x 1 root wheel 18304 Jul 16 2019 cmpdylib -rwxr-xr-x 1 root wheel 100448 Jan 24 01:14 codesign -rwxr-xr-x 1 root wheel 18320 Jul 16 2019 codesign_allocate -rwxr-xr-x 1 root wheel 22944 May 3 2019 col -rwxr-xr-x 1 root wheel 18560 Jan 24 01:14 colcrt -rwxr-xr-x 1 root wheel 57536 May 3 2019 colldef -rwxr-xr-x 1 root wheel 18496 May 3 2019 colrm -rwxr-xr-x 1 root wheel 23440 May 3 2019 column -rwxr-xr-x 1 root wheel 18592 May 3 2019 comm -rwxr-xr-x 15 root wheel 190 Feb 22 2019 command -rwxr-xr-x 1 root wheel 27712 May 3 2019 compress -rwxr-xr-x 1 root wheel 22992 May 3 2019 compression_tool -rwxr-xr-x 38 root wheel 811 Mar 28 2019 config_data -rwxr-xr-x 1 root wheel 7265 Mar 28 2019 config_data5.18 -rwxr-xr-x 1 root wheel 25072 Jan 24 01:14 corebrightnessdiag -rwxr-xr-x 38 root wheel 811 Mar 28 2019 corelist -rwxr-xr-x 1 root wheel 12790 Mar 28 2019 corelist5.18 -rwxr-xr-x 38 root wheel 811 Mar 28 2019 cpan -rwxr-xr-x 38 root wheel 811 Mar 28 2019 cpan2dist -rwxr-xr-x 1 root wheel 21859 Mar 28 2019 cpan2dist5.18 -rwxr-xr-x 1 root wheel 5895 Mar 28 2019 cpan5.18 -rwxr-xr-x 38 root wheel 811 Mar 28 2019 cpanp -rwxr-xr-x 38 root wheel 811 Mar 28 2019 cpanp-run-perl -rwxr-xr-x 1 root wheel 580 Mar 28 2019 cpanp-run-perl5.18 -rwxr-xr-x 1 root wheel 3433 Mar 28 2019 cpanp5.18 -rwxr-xr-x 1 root wheel 42976 May 3 2019 cpio -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 cpp -rwxr-xr-x 1 root wheel 1402 Apr 7 2019 cpu_profiler.d -rwxr-xr-x 1 root wheel 1540 Feb 22 2019 cpuwalk.d -rwxr-xr-x 35 root wheel 811 Feb 22 2019 crc32 -r-xr-xr-x 1 root wheel 871 Feb 22 2019 crc325.18 -rwxr-xr-x 1 root wheel 342 Feb 22 2019 creatbyproc.d -rwxr-xr-x 1 root wheel 35328 Jan 24 01:14 crlrefresh -rwsr-xr-x 1 root wheel 39184 May 3 2019 crontab -rwxr-xr-x 1 root wheel 14990 Apr 3 2019 csdiagnose -rwxr-xr-x 1 root wheel 542320 Jul 16 2019 csgather -rwxr-xr-x 1 root wheel 24000 May 3 2019 csplit -rwxr-xr-x 1 root wheel 37664 Jan 24 01:14 csreq -rwxr-xr-x 1 root wheel 29760 May 3 2019 csrutil -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 ctags -rwxr-xr-x 1 root wheel 18304 Jul 16 2019 ctf_insert -r-xr-xr-x 1 _uucp wheel 133392 May 3 2019 cu -r-xr-xr-x 1 root wheel 3041 Jan 8 15:27 cups-config -r-xr-xr-x 1 root wheel 23040 Jan 24 01:14 cupstestdsc -r-xr-xr-x 1 root wheel 63360 Jan 24 01:14 cupstestppd -rwxr-xr-x 1 root wheel 185072 May 3 2019 curl -rwxr-xr-x 1 root wheel 4089 Feb 22 2019 curl-config -rwxr-xr-x 1 root wheel 23712 May 3 2019 cut lrwxr-xr-x 1 root wheel 59 May 4 2019 cvaffinity -> /System/Library/Filesystems/acfs.fs/Contents/bin/cvaffinity lrwxr-xr-x 1 root wheel 53 May 4 2019 cvcp -> /System/Library/Filesystems/acfs.fs/Contents/bin/cvcp lrwxr-xr-x 1 root wheel 56 May 4 2019 cvmkdir -> /System/Library/Filesystems/acfs.fs/Contents/bin/cvmkdir lrwxr-xr-x 1 root wheel 57 May 4 2019 cvmkfile -> /System/Library/Filesystems/acfs.fs/Contents/bin/cvmkfile -rwxr-xr-x 1 root wheel 7163 Feb 22 2019 dappprof -rwxr-xr-x 1 root wheel 7878 Feb 22 2019 dapptrace -rwxr-xr-x 1 root wheel 269904 Jan 24 01:14 darwinup -r-xr-xr-x 1 root wheel 1986480 May 3 2019 db_archive -r-xr-xr-x 1 root wheel 1990640 May 3 2019 db_checkpoint -r-xr-xr-x 1 root wheel 2015200 May 3 2019 db_codegen -r-xr-xr-x 1 root wheel 1990640 May 3 2019 db_deadlock -r-xr-xr-x 1 root wheel 1994816 May 3 2019 db_dump -r-xr-xr-x 1 root wheel 2003152 May 3 2019 db_hotbackup -r-xr-xr-x 1 root wheel 2015840 May 3 2019 db_load -r-xr-xr-x 1 root wheel 2066192 May 3 2019 db_printlog -r-xr-xr-x 1 root wheel 1990736 May 3 2019 db_recover -r-xr-xr-x 1 root wheel 1994704 May 3 2019 db_stat -r-xr-xr-x 1 root wheel 1986480 May 3 2019 db_upgrade -r-xr-xr-x 1 root wheel 1990592 May 3 2019 db_verify -rwxr-xr-x 35 root wheel 811 Feb 22 2019 dbicadmin -r-xr-xr-x 1 root wheel 7195 Feb 22 2019 dbicadmin5.18 -rwxr-xr-x 35 root wheel 811 Feb 22 2019 dbilogstrip -r-xr-xr-x 1 root wheel 1469 Feb 22 2019 dbilogstrip5.18 -rwxr-xr-x 35 root wheel 811 Feb 22 2019 dbiprof -r-xr-xr-x 1 root wheel 6295 Feb 22 2019 dbiprof5.18 -rwxr-xr-x 35 root wheel 811 Feb 22 2019 dbiproxy -r-xr-xr-x 1 root wheel 5479 Feb 22 2019 dbiproxy5.18 -rwxr-xr-x 1 root wheel 46224 May 3 2019 dc -rwxr-xr-x 35 root wheel 811 Feb 22 2019 debinhex.pl -r-xr-xr-x 1 root wheel 5882 Feb 22 2019 debinhex5.18.pl -rwxr-xr-x 1 root wheel 40000 Jan 24 01:14 defaults -rwxr-xr-x 1 root wheel 1880000 May 3 2019 delv -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 desdp -rwxr-xr-x 1 root wheel 2391 Apr 15 2019 diagnose-fu -rwxr-xr-x 1 root wheel 105616 May 3 2019 diff -rwxr-xr-x 1 root wheel 37136 May 3 2019 diff3 -rwxr-xr-x 1 root wheel 41072 May 3 2019 diffstat -rwxr-xr-x 1 root wheel 1881440 May 3 2019 dig -rwxr-xr-x 1 root wheel 18128 May 3 2019 dirname -rwxr-xr-x 1 root wheel 1290 Feb 22 2019 dispqlen.d -rwxr-xr-x 1 root wheel 34528 May 3 2019 ditto -rwxr-xr-x 1 root wheel 28864 May 3 2019 dmc -rwxr-xr-x 1 root wheel 60896 Jan 24 01:14 dns-sd -rwxr-xr-x 1 root wheel 272128 May 3 2019 drutil -rwxr-xr-x 1 root wheel 34144 May 3 2019 dscacheutil -rwxr-xr-x 1 root wheel 194304 May 3 2019 dscl -rwxr-xr-x 1 root wheel 18016 May 3 2019 dserr -rwxr-xr-x 1 root wheel 33280 May 3 2019 dsexport -rwxr-xr-x 1 root wheel 83872 May 3 2019 dsimport -rwxr-xr-x 1 root wheel 23648 May 3 2019 dsmemberutil -rwxr-xr-x 1 root wheel 18304 Jul 16 2019 dsymutil -rwxr-xr-x 1 root wheel 30607 Feb 22 2019 dtruss -rwxr-xr-x 1 root wheel 23600 May 3 2019 du -rwxr-xr-x 1 root wheel 18304 Jul 16 2019 dwarfdump -rwxr-xr-x 2 root wheel 925 Feb 22 2019 easy_install -rwxr-xr-x 1 root wheel 458 Feb 22 2019 easy_install-2.7 -rwxr-xr-x 1 root wheel 33952 May 3 2019 egrep -r-xr-xr-x 1 root wheel 117164432 May 3 2019 emacs -rwxr-xr-x 1 root wheel 3173856 May 3 2019 emacs-undumped -rwxr-xr-x 1 root wheel 32960 May 3 2019 emacsclient -rwxr-xr-x 38 root wheel 811 Mar 28 2019 enc2xs -rwxr-xr-x 1 root wheel 39189 Mar 28 2019 enc2xs5.18 -rwxr-xr-x 1 root wheel 28800 May 3 2019 encode_keychange -rwxr-xr-x 1 root wheel 23504 May 3 2019 env -rwxr-xr-x 1 root wheel 140976 May 3 2019 eqn -r-xr-xr-x 1 root wheel 4892 Feb 22 2019 erb -rwxr-xr-x 1 root wheel 4516 Feb 22 2019 errinfo -rwxr-xr-x 1 root wheel 107376 May 3 2019 etags lrwxr-xr-x 1 root wheel 3 May 4 2019 ex -> vim -rwxr-xr-x 1 root wheel 5115 Feb 22 2019 execsnoop -rwxr-xr-x 1 root wheel 18576 May 3 2019 expand -r-xr-xr-x 1 root wheel 51648 May 3 2019 expect lrwxr-xr-x 1 root wheel 78 May 4 2019 extcheck -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/extcheck -rwxr-xr-x 35 root wheel 811 Feb 22 2019 eyapp -r-xr-xr-x 1 root wheel 12841 Feb 22 2019 eyapp5.18 -rwxr-xr-x 1 root wheel 17808 May 3 2019 false -rwxr-xr-x 15 root wheel 190 Feb 22 2019 fc -rwxr-xr-x 1 root wheel 2668 Feb 22 2019 fddist -rwxr-xr-x 1 root wheel 280032 Jan 24 01:14 fdesetup -rwxr-xr-x 15 root wheel 190 Feb 22 2019 fg -rwxr-xr-x 1 root wheel 33952 May 3 2019 fgrep -rwxr-xr-x 1 root wheel 258912 Jul 16 2019 file -rwxr-xr-x 1 root wheel 272 Feb 22 2019 filebyproc.d -rwxr-xr-x 1 root wheel 150576 Jan 24 01:14 filtercalltree -rwxr-xr-x 1 root wheel 51808 May 3 2019 find -rwxr-xr-x 38 root wheel 811 Mar 28 2019 find2perl -rwxr-xr-x 1 root wheel 23634 Mar 28 2019 find2perl5.18 -rwxr-xr-x 35 root wheel 811 Feb 22 2019 findrule -r-xr-xr-x 1 root wheel 3418 Feb 22 2019 findrule5.18 -rwxr-xr-x 1 root wheel 33968 May 3 2019 finger -rwxr-xr-x 1 root wheel 15523 Feb 22 2019 fixproc -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 flex -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 flex++ -rwxr-xr-x 1 root wheel 23216 May 3 2019 fmt -rwxr-xr-x 1 root wheel 18800 May 3 2019 fold lrwxr-xr-x 1 root wheel 126 May 4 2019 fontrestore -> ../../System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Support/fontmover -rwxr-xr-x 1 root wheel 157776 Jul 16 2019 footprint -rwxr-xr-x 35 root wheel 811 Feb 22 2019 format-sql -r-xr-xr-x 1 root wheel 448 Feb 22 2019 format-sql5.18 -rwxr-xr-x 1 root wheel 18768 May 3 2019 from -rwxr-xr-x 1 root wheel 60368 Jan 24 01:14 fs_usage -rwxr-xr-x 1 root wheel 35440 May 3 2019 funzip -r-xr-xr-x 1 root wheel 2610 Feb 22 2019 fuser -rwxr-xr-x 1 root wheel 33936 May 3 2019 fwkdp -rwxr-xr-x 1 root wheel 42352 May 3 2019 fwkpfv -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 g++ -rwxr-xr-x 1 root wheel 18320 Jul 16 2019 gatherheaderdoc -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 gcc -rwxr-xr-x 1 root wheel 164752 Jan 24 01:14 gcore -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 gcov -rwxr-xr-x 1 root wheel 7198 Feb 22 2019 gdiffmk -r-xr-xr-x 1 root wheel 596 Feb 22 2019 gem -r-xr-xr-x 1 root wheel 78936 Feb 22 2019 gen_bridge_metadata -rwxr-xr-x 1 root wheel 27488 May 3 2019 gencat -rwxr-xr-x 1 root wheel 18304 Jul 16 2019 genstrings -rwxr-xr-x 1 root wheel 63824 Jan 24 01:14 getconf -rwxr-xr-x 1 root wheel 18000 May 3 2019 getopt -rwxr-xr-x 15 root wheel 190 Feb 22 2019 getopts -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 git -rwxr-xr-x 1 root wheel 18320 Jul 16 2019 git-cvsserver -rwxr-xr-x 1 root wheel 18320 Jul 16 2019 git-receive-pack -rwxr-xr-x 1 root wheel 18304 Jul 16 2019 git-shell -rwxr-xr-x 1 root wheel 18320 Jul 16 2019 git-upload-archive -rwxr-xr-x 1 root wheel 18320 Jul 16 2019 git-upload-pack -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 gm4 -rwxr-xr-x 1 root wheel 18304 Jul 16 2019 gnumake -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 gperf -rwxr-xr-x 1 root wheel 33952 May 3 2019 grep -rwxr-xr-x 1 root wheel 64048 May 3 2019 grn -rwxr-xr-x 1 root wheel 83296 May 3 2019 grodvi -rwxr-xr-x 1 root wheel 68272 May 3 2019 groff -rwxr-xr-x 1 root wheel 7074 Feb 22 2019 groffer -rwxr-xr-x 1 root wheel 2471 Feb 22 2019 grog -rwxr-xr-x 1 root wheel 86928 May 3 2019 grolbp -rwxr-xr-x 1 root wheel 82848 May 3 2019 grolj4 -rwxr-xr-x 1 root wheel 116800 May 3 2019 grops -rwxr-xr-x 1 root wheel 83024 May 3 2019 grotty -rwxr-xr-x 1 root wheel 23264 May 3 2019 groups -rwxr-xr-x 1 root wheel 53280 May 3 2019 gunzip -rwxr-xr-x 1 root wheel 53280 May 3 2019 gzcat -rwxr-xr-x 1 root wheel 4085 Feb 22 2019 gzexe -rwxr-xr-x 1 root wheel 47120 May 3 2019 gzip -rwxr-xr-x 38 root wheel 811 Mar 28 2019 h2ph -rwxr-xr-x 1 root wheel 28167 Mar 28 2019 h2ph5.18 -rwxr-xr-x 38 root wheel 811 Mar 28 2019 h2xs -rwxr-xr-x 1 root wheel 60725 Mar 28 2019 h2xs5.18 -rwxr-xr-x 15 root wheel 190 Feb 22 2019 hash -rwxr-xr-x 1 root wheel 17936 Jan 24 01:14 hdid -rwxr-xr-x 1 root wheel 349536 Jan 24 01:14 hdiutil -rwxr-xr-x 1 root wheel 18320 Jul 16 2019 hdxml2manxml -rwxr-xr-x 1 root wheel 18928 May 3 2019 head -rwxr-xr-x 1 root wheel 18320 Jul 16 2019 headerdoc2html -rwxr-xr-x 1 root wheel 97536 Jan 24 01:14 heap -rwxr-xr-x 1 root wheel 108304 Jan 24 01:14 heap32 -rwxr-xr-x 1 root wheel 32848 May 3 2019 hexdump -rwxr-xr-x 1 root wheel 38944 Jan 24 01:14 hidutil -rwxr-xr-x 1 root wheel 105520 May 3 2019 hiutil -rwxr-xr-x 1 root wheel 1868944 May 3 2019 host -rwxr-xr-x 1 root wheel 43136 Jan 24 01:14 hostinfo -rwxr-xr-x 1 root wheel 1939 Feb 22 2019 hotspot.d -rwxr-xr-x 1 root wheel 122640 May 3 2019 hpftodit -rwxr-xr-x 1 root wheel 96528 Jan 24 01:14 hpmdiagnose -rwxr-xr-x 35 root wheel 811 Feb 22 2019 htmltree -r-xr-xr-x 1 root wheel 1177 Feb 22 2019 htmltree5.18 -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 ibtool -rwxr-xr-x 1 root wheel 27968 May 3 2019 iconutil -rwxr-xr-x 1 root wheel 32192 May 3 2019 iconv -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 ictool -rwxr-xr-x 1 root wheel 23264 May 3 2019 id -rwxr-xr-x 4 root wheel 925 Feb 22 2019 idle lrwxr-xr-x 1 root wheel 73 May 4 2019 idle2.7 -> ../../System/Library/Frameworks/Python.framework/Versions/2.7/bin/idle2.7 lrwxr-xr-x 1 root wheel 74 May 4 2019 idlj -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/idlj -rwxr-xr-x 1 root wheel 8556 Apr 25 2019 imptrace -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 indent -rwxr-xr-x 1 root wheel 44400 May 3 2019 indxbib -rwxr-xr-x 1 root wheel 175136 May 3 2019 info -rwxr-xr-x 1 root wheel 54624 May 3 2019 infocmp -rwxr-xr-x 1 root wheel 55376 May 3 2019 infokey lrwxr-xr-x 1 root wheel 3 May 4 2019 infotocap -> tic -rwxr-xr-x 1 root wheel 28576 May 3 2019 install -rwxr-xr-x 1 root wheel 60032 May 3 2019 install-info -rwxr-xr-x 1 root wheel 18320 Jul 16 2019 install_name_tool -rwxr-xr-x 38 root wheel 811 Mar 28 2019 instmodsh -rwxr-xr-x 1 root wheel 4288 Mar 28 2019 instmodsh5.18 -rwxr-xr-x 1 root wheel 18320 Jul 16 2019 instruments -rwxr-xr-x 1 root wheel 1976 Feb 22 2019 iofile.d -rwxr-xr-x 1 root wheel 1573 Feb 22 2019 iofileb.d -rwxr-xr-x 1 root wheel 6604 Feb 22 2019 iopattern -rwxr-xr-x 1 root wheel 5946 Feb 22 2019 iopending -rwxr-xr-x 1 root wheel 12137 Feb 22 2019 iosnoop -rwxr-xr-x 1 root wheel 11884 Feb 22 2019 iotop -rwxr-xr-x 35 root wheel 811 Feb 22 2019 ip2cc -r-xr-xr-x 1 root wheel 2116 Feb 22 2019 ip2cc5.18 -rwxr-xr-x 35 root wheel 811 Feb 22 2019 ipcount -r-xr-xr-x 1 root wheel 3728 Feb 22 2019 ipcount5.18 -rwxr-xr-x 1 root wheel 18576 May 3 2019 ipcrm -rwxr-xr-x 1 root wheel 26880 May 3 2019 ipcs -r-xr-xr-x 1 root wheel 47216 Jan 24 01:14 ippfind -r-xr-xr-x 1 root wheel 92016 Jan 24 01:14 ipptool -rwxr-xr-x 1 root wheel 18304 Jul 16 2019 iprofiler -rwxr-xr-x 35 root wheel 811 Feb 22 2019 iptab -r-xr-xr-x 1 root wheel 986 Feb 22 2019 iptab5.18 -r-xr-xr-x 1 root wheel 240 Feb 22 2019 irb lrwxr-xr-x 1 root wheel 73 May 4 2019 jar -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jar lrwxr-xr-x 1 root wheel 79 May 4 2019 jarsigner -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jarsigner lrwxr-xr-x 1 root wheel 74 May 4 2019 java -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/java lrwxr-xr-x 1 root wheel 75 May 4 2019 javac -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/javac lrwxr-xr-x 1 root wheel 77 May 4 2019 javadoc -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/javadoc lrwxr-xr-x 1 root wheel 75 May 4 2019 javah -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/javah lrwxr-xr-x 1 root wheel 75 May 4 2019 javap -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/javap lrwxr-xr-x 1 root wheel 82 May 4 2019 javapackager -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/javapackager lrwxr-xr-x 1 root wheel 76 May 4 2019 javaws -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/javaws lrwxr-xr-x 1 root wheel 74 May 4 2019 jcmd -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jcmd lrwxr-xr-x 1 root wheel 78 May 4 2019 jconsole -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jconsole lrwxr-xr-x 1 root wheel 78 May 4 2019 jcontrol -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jcontrol lrwxr-xr-x 1 root wheel 73 May 4 2019 jdb -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jdb lrwxr-xr-x 1 root wheel 75 May 4 2019 jdeps -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jdeps lrwxr-xr-x 1 root wheel 74 May 4 2019 jhat -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jhat lrwxr-xr-x 1 root wheel 75 May 4 2019 jhsdb -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jhsdb lrwxr-xr-x 1 root wheel 76 May 4 2019 jimage -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jimage lrwxr-xr-x 1 root wheel 75 May 4 2019 jinfo -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jinfo lrwxr-xr-x 1 root wheel 73 May 4 2019 jjs -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jjs lrwxr-xr-x 1 root wheel 74 May 4 2019 jmap -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jmap lrwxr-xr-x 1 root wheel 73 May 4 2019 jmc -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jmc -rwxr-xr-x 15 root wheel 190 Feb 22 2019 jobs -rwxr-xr-x 1 root wheel 23504 May 3 2019 join -rwxr-xr-x 1 root wheel 23088 May 3 2019 jot lrwxr-xr-x 1 root wheel 73 May 4 2019 jps -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jps lrwxr-xr-x 1 root wheel 80 May 4 2019 jrunscript -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jrunscript lrwxr-xr-x 1 root wheel 79 May 4 2019 jsadebugd -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jsadebugd lrwxr-xr-x 1 root wheel 76 May 4 2019 jshell -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jshell -rwxr-xr-x 38 root wheel 811 Mar 28 2019 json_pp -rwxr-xr-x 1 root wheel 3953 Mar 28 2019 json_pp5.18 lrwxr-xr-x 1 root wheel 76 May 4 2019 jstack -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jstack lrwxr-xr-x 1 root wheel 75 May 4 2019 jstat -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jstat lrwxr-xr-x 1 root wheel 76 May 4 2019 jstatd -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jstatd lrwxr-xr-x 1 root wheel 79 May 4 2019 jvisualvm -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/jvisualvm -rwxr-xr-x 1 root wheel 51392 Jul 16 2019 kcc -rwxr-xr-x 1 root wheel 29024 Jul 16 2019 kdestroy -rwxr-xr-x 1 root wheel 200656 Jan 24 01:14 kextutil lrwxr-xr-x 1 root wheel 77 May 4 2019 keytool -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/keytool -rwxr-xr-x 1 root wheel 29968 Jul 16 2019 kgetcred -rwxr-xr-x 1 root wheel 1621 Feb 22 2019 kill.d -rwxr-xr-x 1 root wheel 23984 May 3 2019 killall -rwxr-xr-x 1 root wheel 44224 Jul 16 2019 kinit lrwxr-xr-x 1 root wheel 3 May 4 2019 klist -> kcc -rwxr-xr-x 1 root wheel 30176 Jul 16 2019 kpasswd -rwxr-xr-x 1 root wheel 3252 Feb 22 2019 krb5-config lrwxr-xr-x 1 root wheel 3 May 4 2019 kswitch -> kcc -rwxr-xr-x 1 root wheel 73616 Jul 16 2019 ktrace -rwxr-xr-x 1 root wheel 18624 May 3 2019 lam -rwxr-xr-x 1 root wheel 23392 May 3 2019 last -rwxr-xr-x 1 root wheel 18928 May 3 2019 lastcomm -rwxr-xr-x 1 root wheel 2297 Feb 22 2019 lastwords -rwxr-xr-x 1 root wheel 102768 Jan 24 01:14 latency -rwxr-xr-x 1 root wheel 853232 Jul 16 2019 layerutil -rwxr-xr-x 1 root wheel 18272 Jul 16 2019 ld lrwxr-xr-x 1 root wheel 10 May 4 2019 ldapadd -> ldapmodify -rwxr-xr-x 1 root wheel 301376 Jan 24 01:14 ldapcompare -rwxr-xr-x 1 root wheel 305408 Jan 24 01:14 ldapdelete -rwxr-xr-x 1 root wheel 305488 Jan 24 01:14 ldapexop -rwxr-xr-x 1 root wheel 314000 Jan 24 01:14 ldapmodify -rwxr-xr-x 1 root wheel 301312 Jan 24 01:14 ldapmodrdn -rwxr-xr-x 1 root wheel 301216 Jan 24 01:14 ldappasswd -rwxr-xr-x 1 root wheel 329808 Jan 24 01:14 ldapsearch -rwxr-xr-x 1 root wheel 251840 Jan 24 01:14 ldapurl -rwxr-xr-x 1 root wheel 301312 Jan 24 01:14 ldapwhoami -rwxr-xr-x 1 root wheel 163424 Jan 24 01:14 leaks -rwxr-xr-x 1 root wheel 194736 Jan 24 01:14 leaks32 -r-xr-xr-x 1 root wheel 18416 May 3 2019 leave -rwxr-xr-x 1 root wheel 133856 May 3 2019 less -rwxr-xr-x 1 root wheel 18320 May 3 2019 lessecho -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 lex -rwxr-xr-x 38 root wheel 811 Mar 28 2019 libnetcfg -rwxr-xr-x 1 root wheel 15754 Mar 28 2019 libnetcfg5.18 -rwxr-xr-x 1 root wheel 18304 Jul 16 2019 libtool -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 lipo -rwxr-xr-x 1 root wheel 50560 May 3 2019 lkbib -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 lldb lrwxr-xr-x 1 root wheel 7 May 4 2019 llvm-g++ -> clang++ lrwxr-xr-x 1 root wheel 5 May 4 2019 llvm-gcc -> clang -rwxr-xr-x 1 root wheel 1936 Feb 22 2019 loads.d -rwxr-xr-x 1 root wheel 60240 May 3 2019 locale -rwxr-xr-x 1 root wheel 30650 Feb 22 2019 localedef -rwxr-xr-x 1 root wheel 23424 May 3 2019 locate -rwxr-xr-x 1 root wheel 57760 May 3 2019 lockstat -rwxr-xr-x 1 root wheel 267632 Jan 24 01:14 log -r-xr-xr-x 1 root wheel 18848 May 3 2019 logger -r-sr-xr-x 1 root wheel 76288 Jan 24 01:14 login -rwxr-xr-x 1 root wheel 18176 May 3 2019 logname -rwxr-xr-x 1 root wheel 18816 May 3 2019 look -rwxr-xr-x 1 root wheel 50816 May 3 2019 lookbib -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 lorder -r-xr-xr-x 1 root wheel 28368 Jan 24 01:14 lp -r-xr-xr-x 1 root wheel 24224 Jan 24 01:14 lpoptions -r-xr-xr-x 1 root wheel 24208 Jan 24 01:14 lpq -r-xr-xr-x 1 root wheel 23856 Jan 24 01:14 lpr -r-xr-xr-x 1 root wheel 18592 Jan 24 01:14 lprm -r-xr-xr-x 1 root wheel 37184 Jan 24 01:14 lpstat -rwxr-xr-x 1 root wheel 230944 Jul 16 2019 lsappinfo -rwxr-xr-x 1 root wheel 29216 May 3 2019 lsbom -rwxr-xr-x 1 root wheel 68704 Jan 24 01:14 lskq -rwxr-xr-x 1 root wheel 52560 May 3 2019 lsm -rwxr-xr-x 1 root wheel 98912 Jan 24 01:14 lsmp -rwxr-xr-x 1 root wheel 18336 May 3 2019 lsvfs -rwxr-xr-x 35 root wheel 811 Feb 22 2019 lwp-download -r-xr-xr-x 1 root wheel 8639 Feb 22 2019 lwp-download5.18 -rwxr-xr-x 35 root wheel 811 Feb 22 2019 lwp-dump -r-xr-xr-x 1 root wheel 2802 Feb 22 2019 lwp-dump5.18 -rwxr-xr-x 35 root wheel 811 Feb 22 2019 lwp-mirror -r-xr-xr-x 1 root wheel 2482 Feb 22 2019 lwp-mirror5.18 -rwxr-xr-x 35 root wheel 811 Feb 22 2019 lwp-request -r-xr-xr-x 1 root wheel 15063 Feb 22 2019 lwp-request5.18 -rwxr-xr-x 1 root wheel 18272 Jul 16 2019 m4 -rwxr-xr-x 1 root wheel 42048 Jul 16 2019 macbinary -rwxr-xr-x 35 root wheel 811 Feb 22 2019 macerror -r-xr-xr-x 1 root wheel 728 Feb 22 2019 macerror5.18 -rwxr-xr-x 1 root wheel 66880 Jan 24 01:14 machine -rwxr-xr-x 1 root wheel 85776 May 3 2019 mail lrwxr-xr-x 1 root wheel 16 May 4 2019 mailq -> ../sbin/sendmail -rwxr-xr-x 1 root wheel 85776 May 3 2019 mailx -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 make -rwxr-xr-x 1 root wheel 239056 May 3 2019 makeinfo -rwxr-xr-x 1 root wheel 113040 Jan 24 01:14 malloc_history -rwxr-xr-x 1 root wheel 128768 Jan 24 01:14 malloc_history32 -r-xr-xr-x 1 root wheel 70192 May 3 2019 man lrwxr-xr-x 1 root wheel 3 May 4 2019 manpath -> man -rwxr-xr-x 1 root wheel 88096 Jan 24 01:14 mcxquery -rwxr-xr-x 1 root wheel 23392 Jan 24 01:14 mcxrefresh -rwxr-xr-x 1 root wheel 148192 Jan 24 01:14 mddiagnose -rwxr-xr-x 1 root wheel 29280 Jan 24 01:14 mdfind -rwxr-xr-x 1 root wheel 270544 Jan 24 01:14 mdimport -rwxr-xr-x 1 root wheel 24048 Jan 24 01:14 mdls -rwxr-xr-x 1 root wheel 113136 Jan 24 01:14 mdutil -rwxr-xr-x 1 root wheel 72736 Jan 24 01:14 memory_pressure -r-xr-xr-x 1 root wheel 18224 May 3 2019 mesg -rwxr-xr-x 1 root wheel 43760 Feb 22 2019 mib2c -rwxr-xr-x 1 root wheel 8780 Feb 22 2019 mib2c-update -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 mig -rwxr-xr-x 1 root wheel 19904 May 3 2019 mkbom -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 mkdep -rwxr-xr-x 1 root wheel 18416 May 3 2019 mkfifo -rwxr-xr-x 1 root wheel 40336 May 3 2019 mklocale -rwxr-xr-x 1 root wheel 18800 May 3 2019 mktemp -rwxr-xr-x 1 root wheel 2975 Feb 22 2019 mmroff -rwxr-xr-x 1 root wheel 28720 May 3 2019 mnthome -rwxr-xr-x 35 root wheel 811 Feb 22 2019 moo-outdated -r-xr-xr-x 1 root wheel 448 Feb 22 2019 moo-outdated5.18 -rwxr-xr-x 35 root wheel 811 Feb 22 2019 moose-outdated -r-xr-xr-x 1 root wheel 455 Feb 22 2019 moose-outdated5.18 -rwxr-xr-x 1 root wheel 133856 May 3 2019 more -r-xr-xr-x 1 root wheel 1271 Feb 22 2019 mp2bug -rwxr-xr-x 1 root wheel 29504 May 3 2019 msgs -rwxr-xr-x 1 root wheel 141312 May 3 2019 nano -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 nasm lrwxr-xr-x 1 root wheel 82 May 4 2019 native2ascii -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/native2ascii -rwxr-xr-x 1 root wheel 25936 Jan 24 01:14 nbdst -r-xr-xr-x 1 root wheel 46896 May 3 2019 nc -r-xr-xr-x 1 root wheel 32192 May 3 2019 ncal -r-xr-xr-x 1 root wheel 23920 May 3 2019 ncctl -r-xr-xr-x 1 root wheel 23920 May 3 2019 ncdestroy -r-xr-xr-x 1 root wheel 23920 May 3 2019 ncinit -r-xr-xr-x 1 root wheel 23920 May 3 2019 nclist -rwxr-xr-x 1 root wheel 4977 Feb 22 2019 ncurses5.4-config -rwxr-xr-x 1 root wheel 18304 Jul 16 2019 ndisasm -rwxr-xr-x 1 root wheel 271 Feb 22 2019 neqn -rwxr-xr-x 35 root wheel 811 Feb 22 2019 net-server -r-xr-xr-x 1 root wheel 3429 Feb 22 2019 net-server5.18 -rwxr-xr-x 1 root wheel 78699 Feb 22 2019 net-snmp-cert -rwxr-xr-x 1 root wheel 25498 Feb 22 2019 net-snmp-config -rwxr-xr-x 1 root wheel 3651 Feb 22 2019 net-snmp-create-v3-user -rwxr-xr-x 1 root wheel 71712 May 3 2019 nettop lrwxr-xr-x 1 root wheel 16 May 4 2019 newaliases -> ../sbin/sendmail -r-sr-xr-x 1 root wheel 52512 Jan 24 01:14 newgrp -rwxr-xr-x 1 root wheel 4376 Feb 22 2019 newproc.d -r-xr-xr-x 1 root wheel 45264 May 3 2019 nfsstat -rwxr-xr-x 1 root wheel 18416 May 3 2019 nice -rwxr-xr-x 1 root wheel 23552 May 3 2019 nl -rwxr-xr-x 1 root wheel 18272 Jul 16 2019 nm -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 nmedit -rwxr-xr-x 1 root wheel 18640 May 3 2019 nohup -rwxr-xr-x 1 root wheel 29312 May 3 2019 notifyutil -rwxr-xr-x 1 root wheel 2357 Feb 22 2019 nroff -rwxr-xr-x 1 root wheel 105936 Jan 24 01:14 nscurl -rwxr-xr-x 1 root wheel 1873120 May 3 2019 nslookup -rwxr-xr-x 1 root wheel 1855232 May 3 2019 nsupdate -rwxr-xr-x 1 root wheel 18304 Jul 16 2019 objdump -rwxr-xr-x 1 root wheel 38976 Jul 16 2019 ocspcheck -rwxr-xr-x 1 root wheel 32848 May 3 2019 od -rwxr-xr-x 1 root wheel 61952 May 3 2019 odutil -rwxr-xr-x 1 root wheel 105952 May 3 2019 open -rwxr-xr-x 1 root wheel 18304 Jul 16 2019 opendiff -rwxr-xr-x 1 root wheel 8038 Feb 22 2019 opensnoop -rwxr-xr-x 1 root wheel 488624 Jul 16 2019 openssl lrwxr-xr-x 1 root wheel 74 May 4 2019 orbd -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/orbd -rwxr-xr-x 1 root wheel 42128 May 3 2019 osacompile -rwxr-xr-x 1 root wheel 19968 May 3 2019 osadecompile -rwxr-xr-x 1 root wheel 18592 May 3 2019 osalang -rwxr-xr-x 1 root wheel 43232 May 3 2019 osascript -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 otool lrwxr-xr-x 1 root wheel 77 May 4 2019 pack200 -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/pack200 -rwxr-xr-x 35 root wheel 811 Feb 22 2019 package-stash-conflicts -r-xr-xr-x 1 root wheel 844 Feb 22 2019 package-stash-conflicts5.18 -rwxr-xr-x 1 root wheel 2006 Apr 25 2019 pagesize -rwxr-xr-x 1 root wheel 18304 Jul 16 2019 pagestuff -rwxr-xr-x 35 root wheel 811 Feb 22 2019 par.pl -r-xr-xr-x 1 root wheel 29555 Feb 22 2019 par5.18.pl -rwxr-xr-x 1 root wheel 66608 May 3 2019 parl -r-xr-xr-x 1 root wheel 5341072 May 3 2019 parl5.18 -rwxr-xr-x 1 root wheel 66608 May 3 2019 parldyn -r-xr-xr-x 1 root wheel 124848 May 3 2019 parldyn5.18 -rwxr-xr-x 1 root wheel 68656 Jan 24 01:14 passwd -rwxr-xr-x 1 root wheel 18592 May 3 2019 paste -rwxr-xr-x 1 root wheel 95136 May 3 2019 patch -rwxr-xr-x 1 root wheel 18512 May 3 2019 pathchk -rwxr-xr-x 1 root wheel 2378 Feb 22 2019 pathopens.d -rwxr-xr-x 1 root wheel 23584 May 3 2019 pbcopy -rwxr-xr-x 1 root wheel 23584 May 3 2019 pbpaste -rwxr-xr-x 1 root wheel 1622 Feb 22 2019 pcap-config -rwxr-xr-x 1 root wheel 43328 Jul 16 2019 pcsctest -rwxr-xr-x 1 root wheel 66608 Jul 16 2019 perl -rwxr-xr-x 1 root wheel 52864 Jul 16 2019 perl5.18 -rwxr-xr-x 38 root wheel 811 Mar 28 2019 perlbug -rwxr-xr-x 1 root wheel 41944 Apr 1 2019 perlbug5.18 -rwxr-xr-x 38 root wheel 811 Mar 28 2019 perldoc -rwxr-xr-x 1 root wheel 259 Mar 28 2019 perldoc5.18 -rwxr-xr-x 38 root wheel 811 Mar 28 2019 perlivp -rwxr-xr-x 1 root wheel 10807 Apr 1 2019 perlivp5.18 -rwxr-xr-x 38 root wheel 811 Mar 28 2019 perlthanks -rwxr-xr-x 1 root wheel 41944 Apr 1 2019 perlthanks5.18 -rwxr-xr-x 1 root wheel 22912 May 3 2019 pfbtops -rwxr-xr-x 1 root wheel 30512 May 3 2019 pgrep lrwxr-xr-x 1 root wheel 9 May 4 2019 phar -> phar.phar -rwxr-xr-x 1 root wheel 14811 Jan 6 22:21 phar.phar -rwxr-xr-x 1 root wheel 11244288 Jan 24 01:14 php -rwxr-xr-x 1 root wheel 6438 Jan 6 22:22 php-config -rwxr-xr-x 1 root wheel 4520 Jan 6 22:21 phpize -rwxr-xr-x 1 root wheel 213312 May 3 2019 pic lrwxr-xr-x 1 root wheel 4 May 4 2019 pico -> nano -rwxr-xr-x 38 root wheel 811 Mar 28 2019 piconv -rwxr-xr-x 1 root wheel 7372 Mar 28 2019 piconv5.18 -rwxr-xr-x 1 root wheel 1295 Feb 22 2019 pidpersec.d -rwxr-xr-x 1 root wheel 82784 Jan 24 01:14 pkgbuild -rwxr-xr-x 1 root wheel 30512 May 3 2019 pkill -rwxr-xr-x 1 root wheel 22912 Jan 24 01:14 pl -rwxr-xr-x 38 root wheel 811 Mar 28 2019 pl2pm -rwxr-xr-x 1 root wheel 4566 Mar 28 2019 pl2pm5.18 -rwxr-xr-x 1 root wheel 33536 May 3 2019 plockstat -rwxr-xr-x 1 root wheel 196032 Jan 24 01:14 pluginkit -rwxr-xr-x 1 root wheel 45664 Jan 24 01:14 plutil -rwxr-xr-x 1 root wheel 173536 Jul 16 2019 pmset -rwxr-xr-x 38 root wheel 811 Mar 28 2019 pod2html -rwxr-xr-x 1 root wheel 2073 Mar 28 2019 pod2html5.18 -rwxr-xr-x 38 root wheel 811 Mar 28 2019 pod2latex -rwxr-xr-x 1 root wheel 10374 Mar 28 2019 pod2latex5.18 -rwxr-xr-x 38 root wheel 811 Mar 28 2019 pod2man -rwxr-xr-x 1 root wheel 13700 Mar 28 2019 pod2man5.18 -rwxr-xr-x 35 root wheel 811 Feb 22 2019 pod2readme -r-xr-xr-x 1 root wheel 1603 Feb 22 2019 pod2readme5.18 -rwxr-xr-x 38 root wheel 811 Mar 28 2019 pod2text -rwxr-xr-x 1 root wheel 11123 Mar 28 2019 pod2text5.18 -rwxr-xr-x 38 root wheel 811 Mar 28 2019 pod2usage -rwxr-xr-x 1 root wheel 3790 Mar 28 2019 pod2usage5.18 -rwxr-xr-x 38 root wheel 811 Mar 28 2019 podchecker -rwxr-xr-x 1 root wheel 3819 Mar 28 2019 podchecker5.18 -rwxr-xr-x 38 root wheel 811 Mar 28 2019 podselect -rwxr-xr-x 1 root wheel 2647 Mar 28 2019 podselect5.18 lrwxr-xr-x 1 root wheel 80 May 4 2019 policytool -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/policytool -rwxr-xr-x 1 root wheel 147568 May 3 2019 post-grohtml -rwxr-xr-x 1 root wheel 951 Apr 7 2019 power_report.sh -rwxr-xr-x 1 root wheel 157536 Jan 24 01:14 powermetrics -rwxr-xr-x 35 root wheel 811 Feb 22 2019 pp -r-xr-xr-x 1 root wheel 152 Feb 22 2019 pp5.18 -r-xr-xr-x 1 root wheel 25344 Jan 24 01:14 ppdc -r-xr-xr-x 1 root wheel 23680 Jan 24 01:14 ppdhtml -r-xr-xr-x 1 root wheel 18816 Jan 24 01:14 ppdi -r-xr-xr-x 1 root wheel 24304 Jan 24 01:14 ppdmerge -r-xr-xr-x 1 root wheel 23824 Jan 24 01:14 ppdpo -rwxr-xr-x 1 root wheel 32224 May 3 2019 pr -rwxr-xr-x 1 root wheel 73952 May 3 2019 pre-grohtml -rwxr-xr-x 1 root wheel 1839 Feb 22 2019 priclass.d -rwxr-xr-x 1 root wheel 1836 Feb 22 2019 pridist.d -rwxr-xr-x 1 root wheel 18160 May 3 2019 printenv -rwxr-xr-x 1 root wheel 23232 May 3 2019 printf -rwxr-xr-x 1 root wheel 6348 Feb 22 2019 procsystime -rwxr-xr-x 1 root wheel 122672 Jan 24 01:14 productbuild -rwxr-xr-x 1 root wheel 34416 Jan 24 01:14 productsign -rwxr-xr-x 1 root wheel 158416 Jan 24 01:14 profiles -rwxr-xr-x 38 root wheel 811 Mar 28 2019 prove -rwxr-xr-x 1 root wheel 11120 Mar 28 2019 prove5.18 -rwxr-xr-x 38 root wheel 811 Mar 28 2019 psed -rwxr-xr-x 1 root wheel 53364 Mar 28 2019 psed5.18 -rwxr-xr-x 1 root wheel 23968 May 3 2019 pstopdf -rwxr-xr-x 38 root wheel 811 Mar 28 2019 pstruct -rwxr-xr-x 1 root wheel 36642 Mar 28 2019 pstruct5.18 -rwxr-xr-x 38 root wheel 811 Mar 28 2019 ptar -rwxr-xr-x 1 root wheel 3559 Mar 28 2019 ptar5.18 -rwxr-xr-x 38 root wheel 811 Mar 28 2019 ptardiff -rwxr-xr-x 1 root wheel 2507 Mar 28 2019 ptardiff5.18 -rwxr-xr-x 38 root wheel 811 Mar 28 2019 ptargrep -rwxr-xr-x 1 root wheel 4274 Mar 28 2019 ptargrep5.18 -rwxr-xr-x 1 root wheel 114416 May 3 2019 pubsub -rwxr-xr-x 35 root wheel 811 Feb 22 2019 pwhich -r-xr-xr-x 1 root wheel 3106 Feb 22 2019 pwhich5.18 -rwxr-xr-x 1 root wheel 47888 May 3 2019 pwpolicy -rwxr-xr-x 4 root wheel 925 Feb 22 2019 pydoc lrwxr-xr-x 1 root wheel 74 May 4 2019 pydoc2.7 -> ../../System/Library/Frameworks/Python.framework/Versions/2.7/bin/pydoc2.7 -rwxr-xr-x 1 root wheel 66880 Jan 24 01:14 python -rwxr-xr-x 4 root wheel 925 Feb 22 2019 python-config lrwxr-xr-x 1 root wheel 75 May 4 2019 python2.7 -> ../../System/Library/Frameworks/Python.framework/Versions/2.7/bin/python2.7 lrwxr-xr-x 1 root wheel 82 May 4 2019 python2.7-config -> ../../System/Library/Frameworks/Python.framework/Versions/2.7/bin/python2.7-config -rwxr-xr-x 1 root wheel 66880 Jan 24 01:14 pythonw lrwxr-xr-x 1 root wheel 76 May 4 2019 pythonw2.7 -> ../../System/Library/Frameworks/Python.framework/Versions/2.7/bin/pythonw2.7 -rwxr-xr-x 1 root wheel 45104 May 3 2019 qc2movie lrwxr-xr-x 1 root wheel 100 May 4 2019 qlmanage -> ../../System/Library/Frameworks/QuickLook.framework/Resources/quicklookd.app/Contents/MacOS/qlmanage -rwxr-xr-x 1 root wheel 50992 Jul 16 2019 qtdefaults -rwxr-xr-x 1 root wheel 38592 Jul 16 2019 qtmodernizer -r-sr-xr-x 1 root wheel 23568 May 3 2019 quota -r-xr-xr-x 1 root wheel 549 Feb 22 2019 rails -r-xr-xr-x 1 root wheel 517 Feb 22 2019 rake -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 ranlib -r-xr-xr-x 1 root wheel 988 Feb 22 2019 rdoc -rwxr-xr-x 15 root wheel 190 Feb 22 2019 read -rwxr-xr-x 1 root wheel 27520 May 3 2019 readlink -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 rebase -rwxr-xr-x 1 root wheel 18320 Jul 16 2019 redo_prebinding -rwxr-xr-x 1 root wheel 113904 May 3 2019 refer -rwxr-xr-x 1 root wheel 18304 May 3 2019 renice lrwxr-xr-x 1 root wheel 4 May 4 2019 reset -> tset -rwxr-xr-x 1 root wheel 18320 Jul 16 2019 resolveLinks -rwxr-xr-x 1 root wheel 18416 May 3 2019 rev -r-xr-xr-x 1 root wheel 238 Feb 22 2019 ri lrwxr-xr-x 1 root wheel 74 May 4 2019 rmic -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/rmic lrwxr-xr-x 1 root wheel 74 May 4 2019 rmid -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/rmid lrwxr-xr-x 1 root wheel 81 May 4 2019 rmiregistry -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/rmiregistry -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 rpcgen -rwxr-xr-x 1 root wheel 22720 May 3 2019 rs -rwxr-xr-x 1 root wheel 291632 May 3 2019 rsync -r-xr-xr-x 1 root wheel 52016 May 3 2019 ruby lrwxr-xr-x 1 root wheel 3 May 4 2019 rview -> vim lrwxr-xr-x 1 root wheel 3 May 4 2019 rvim -> vim -rwxr-xr-x 1 root wheel 1657 Feb 22 2019 rwbypid.d -rwxr-xr-x 1 root wheel 2473 Feb 22 2019 rwbytype.d -rwxr-xr-x 1 root wheel 6357 Feb 22 2019 rwsnoop -rwxr-xr-x 38 root wheel 811 Mar 28 2019 s2p -rwxr-xr-x 1 root wheel 53364 Mar 28 2019 s2p5.18 lrwxr-xr-x 1 root wheel 77 May 4 2019 safaridriver -> /System/Library/CoreServices/SafariSupport.bundle/Contents/MacOS/safaridriver -rwxr-xr-x 1 root wheel 74816 Jan 24 01:14 sample -rwxr-xr-x 1 root wheel 2544 Feb 22 2019 sampleproc -rwxr-xr-x 1 root wheel 19696 Jan 24 01:14 sandbox-exec -rwxr-xr-x 1 root wheel 54896 May 3 2019 say -rwxr-xr-x 1 root wheel 82416 Jan 24 01:14 sc_usage -rwxr-xr-x 35 root wheel 811 Feb 22 2019 scandeps.pl -r-xr-xr-x 1 root wheel 5815 Feb 22 2019 scandeps5.18.pl lrwxr-xr-x 1 root wheel 79 May 4 2019 schemagen -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/schemagen -rwxr-xr-x 1 root wheel 80896 May 3 2019 scp -rwxr-xr-x 1 root wheel 294448 May 3 2019 screen -rwxr-xr-x 1 root wheel 24112 May 3 2019 script -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 sdef -rwxr-xr-x 1 root wheel 37584 May 3 2019 sdiff -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 sdp lrwxr-xr-x 1 root wheel 32 May 4 2019 sdx -> ../../System/Library/Tcl/bin/sdx -rwxr-xr-x 1 root wheel 263584 Jan 24 01:14 security -rwxr-xr-x 1 root wheel 42176 May 3 2019 sed -rwxr-xr-x 1 root wheel 2041 Feb 22 2019 seeksize.d -rwxr-xr-x 1 root wheel 18304 Jul 16 2019 segedit -rwxr-xr-x 1 root wheel 23008 May 3 2019 seq lrwxr-xr-x 1 root wheel 79 May 4 2019 serialver -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/serialver lrwxr-xr-x 1 root wheel 80 May 4 2019 servertool -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/servertool -r-xr-xr-x 1 root wheel 25024 May 3 2019 setregion -rwxr-xr-x 1 root wheel 1606 Feb 22 2019 setuids.d -rwxr-xr-x 1 root wheel 74480 May 3 2019 sfltool -rwxr-xr-x 1 root wheel 119728 May 3 2019 sftp -rwxr-xr-x 1 root wheel 2516 Feb 22 2019 shar -rwxr-xr-x 38 root wheel 811 Mar 28 2019 shasum -rwxr-xr-x 1 root wheel 8629 Mar 28 2019 shasum5.18 -rwxr-xr-x 1 root wheel 23024 May 3 2019 shlock -r-xr-xr-x 1 root wheel 25008 May 3 2019 showmount -rwxr-xr-x 1 root wheel 1603 Feb 22 2019 sigdist.d -rwxr-xr-x 1 root wheel 99344 May 3 2019 sips -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 size lrwxr-xr-x 1 root wheel 3 May 4 2019 slogin -> ssh -r-xr-xr-x 1 root wheel 98560 Jan 24 01:14 smbutil -rwxr-xr-x 1 root wheel 928 Feb 22 2019 smtpd.py lrwxr-xr-x 1 root wheel 77 May 4 2019 smtpd2.7.py -> ../../System/Library/Frameworks/Python.framework/Versions/2.7/bin/smtpd2.7.py lrwxr-xr-x 1 root wheel 59 May 4 2019 snfsdefrag -> /System/Library/Filesystems/acfs.fs/Contents/bin/snfsdefrag -rwxr-xr-x 1 root wheel 30680 Feb 22 2019 snmp-bridge-mib -rwxr-xr-x 1 root wheel 23648 May 3 2019 snmpbulkget -rwxr-xr-x 1 root wheel 24064 May 3 2019 snmpbulkwalk -rwxr-xr-x 1 root wheel 26136 Feb 22 2019 snmpconf -rwxr-xr-x 1 root wheel 29520 May 3 2019 snmpdelta -rwxr-xr-x 1 root wheel 23712 May 3 2019 snmpdf -rwxr-xr-x 1 root wheel 19440 May 3 2019 snmpget -rwxr-xr-x 1 root wheel 19456 May 3 2019 snmpgetnext -rwxr-xr-x 1 root wheel 24144 May 3 2019 snmpinform -rwxr-xr-x 1 root wheel 55344 May 3 2019 snmpnetstat -rwxr-xr-x 1 root wheel 23568 May 3 2019 snmpset -rwxr-xr-x 1 root wheel 24192 May 3 2019 snmpstatus -rwxr-xr-x 1 root wheel 29104 May 3 2019 snmptable -rwxr-xr-x 1 root wheel 24672 May 3 2019 snmptest -rwxr-xr-x 1 root wheel 25184 May 3 2019 snmptranslate -rwxr-xr-x 1 root wheel 24144 May 3 2019 snmptrap -rwxr-xr-x 1 root wheel 46256 May 3 2019 snmpusm -rwxr-xr-x 1 root wheel 40128 May 3 2019 snmpvacm -rwxr-xr-x 1 root wheel 23936 May 3 2019 snmpwalk -rwxr-xr-x 1 root wheel 161504 May 3 2019 sntp -rwxr-xr-x 1 root wheel 38912 May 3 2019 soelim -rwxr-xr-x 1 root wheel 56048 May 3 2019 sort -rwxr-xr-x 35 root wheel 811 Feb 22 2019 spfd -r-xr-xr-x 1 root wheel 9486 Feb 22 2019 spfd5.18 -rwxr-xr-x 35 root wheel 811 Feb 22 2019 spfquery -r-xr-xr-x 1 root wheel 23081 Feb 22 2019 spfquery5.18 -rwxr-xr-x 38 root wheel 811 Mar 28 2019 splain -rwxr-xr-x 1 root wheel 18681 Mar 28 2019 splain5.18 -rwxr-xr-x 1 root wheel 23104 May 3 2019 split -rwxr-xr-x 1 root wheel 2158960 Jul 16 2019 sqlite3 -rwxr-xr-x 1 root wheel 2099264 May 3 2019 ssh -rwxr-xr-x 1 root wheel 1791296 May 3 2019 ssh-add -rwxr-xr-x 1 root wheel 1767984 May 3 2019 ssh-agent -rwxr-xr-x 1 root wheel 10658 Feb 22 2019 ssh-copy-id -rwxr-xr-x 1 root wheel 1845584 May 3 2019 ssh-keygen -rwxr-xr-x 1 root wheel 1847504 May 3 2019 ssh-keyscan -rwxr-xr-x 1 root wheel 18304 Jul 16 2019 stapler -rwxr-xr-x 1 root wheel 27520 May 3 2019 stat -rwxr-xr-x 1 root wheel 88896 Jan 24 01:14 stringdups -rwxr-xr-x 1 root wheel 100384 Jan 24 01:14 stringdups32 -rwxr-xr-x 1 root wheel 18304 Jul 16 2019 strings -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 strip -rwxr-xr-x 35 root wheel 811 Feb 22 2019 stty.pl -r-xr-xr-x 1 root wheel 277 Feb 22 2019 stty5.18.pl -rwsr-xr-x 1 root wheel 25488 May 3 2019 su -r-s--x--x 1 root wheel 438672 Jan 24 01:14 sudo -rwxr-xr-x 1 root wheel 22688 May 3 2019 sum -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 svn -rwxr-xr-x 1 root wheel 18304 Jul 16 2019 svnadmin -rwxr-xr-x 1 root wheel 18320 Jul 16 2019 svndumpfilter -rwxr-xr-x 1 root wheel 18304 Jul 16 2019 svnlook -rwxr-xr-x 1 root wheel 18304 Jul 16 2019 svnserve -rwxr-xr-x 1 root wheel 18304 Jul 16 2019 svnsync -rwxr-xr-x 1 root wheel 18304 Jul 16 2019 svnversion -rwxr-xr-x 1 root wheel 18848 May 3 2019 sw_vers -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 swift -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 swiftc -rwxr-xr-x 1 root wheel 155072 Jan 24 01:14 symbols -rwxr-xr-x 1 root wheel 108688 Jul 16 2019 symbolscache -rwxr-xr-x 1 root wheel 1260 Feb 22 2019 syscallbypid.d -rwxr-xr-x 1 root wheel 253 Feb 22 2019 syscallbyproc.d -rwxr-xr-x 1 root wheel 248 Feb 22 2019 syscallbysysc.d -rwxr-xr-x 1 root wheel 789920 Jan 24 01:14 sysdiagnose -rwxr-xr-x 1 root wheel 67728 May 3 2019 syslog -rwxr-xr-x 1 root wheel 452 Feb 22 2019 systriage -rwxr-xr-x 1 root wheel 47248 Jul 16 2019 tab2space -rwxr-xr-x 1 root wheel 18576 May 3 2019 tabs -rwxr-xr-x 1 root wheel 28560 May 3 2019 tail -rwxr-xr-x 1 root wheel 56992 Jul 16 2019 tailspin -r-xr-xr-x 1 root wheel 30928 May 3 2019 talk lrwxr-xr-x 1 root wheel 6 May 4 2019 tar -> bsdtar -rwxr-xr-x 1 root wheel 38496 Jan 24 01:14 taskinfo -rwxr-xr-x 1 root wheel 111136 May 3 2019 tbl -rwxr-xr-x 1 root wheel 55200 May 3 2019 tbtdiagnose -rwxr-xr-x 1 root wheel 19088 Jul 16 2019 tccutil lrwxr-xr-x 1 root wheel 8 May 4 2019 tclsh -> tclsh8.5 lrwxr-xr-x 1 root wheel 67 May 4 2019 tclsh8.5 -> ../../System/Library/Frameworks/Tcl.framework/Versions/8.5/tclsh8.5 -rwxr-xr-x 1 root wheel 18400 May 3 2019 tee -rwxr-xr-x 1 root wheel 28218 Feb 22 2019 texi2dvi -rwxr-xr-x 1 root wheel 660 Feb 22 2019 texi2pdf -rwxr-xr-x 1 root wheel 52368 May 3 2019 texindex -rwxr-xr-x 1 root wheel 48720 May 3 2019 textutil -rwxr-xr-x 1 root wheel 39152 May 3 2019 tfmtodit -r-xr-xr-x 1 root wheel 38976 May 3 2019 tftp -rwxr-xr-x 1 root wheel 26272 Jan 24 01:14 thermal -rwxr-xr-x 1 root wheel 55792 May 3 2019 tic -rwxr-xr-x 1 root wheel 75072 Jul 16 2019 tidy -rwxr-xr-x 1 root wheel 23440 May 3 2019 tiff2icns -rwxr-xr-x 1 root wheel 335936 May 3 2019 tiffutil -rwxr-xr-x 1 root wheel 18416 May 3 2019 time -rwxr-xr-x 1 root wheel 2886 Apr 7 2019 timer_analyser.d -rwxr-xr-x 1 root wheel 6537 Apr 25 2019 timerfires lrwxr-xr-x 1 root wheel 43 May 4 2019 tkcon -> ../../System/Library/Tcl/tkcon2.6/tkcon.tcl -rwxr-xr-x 1 root wheel 30924 Feb 22 2019 tkmib -rwxr-xr-x 35 root wheel 811 Feb 22 2019 tkpp -r-xr-xr-x 1 root wheel 82203 Feb 22 2019 tkpp5.18 -rwxr-xr-x 1 root wheel 180416 May 3 2019 tmdiagnose -rwxr-xr-x 1 root wheel 293808 May 3 2019 tmutil lrwxr-xr-x 1 root wheel 79 May 4 2019 tnameserv -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/tnameserv -rwxr-xr-x 1 root wheel 24672 May 3 2019 toe -r-sr-xr-x 1 root wheel 88400 May 3 2019 top -rwxr-xr-x 1 root wheel 107536 May 3 2019 tops -rwxr-xr-x 1 root wheel 4603 Feb 22 2019 topsyscall -rwxr-xr-x 1 root wheel 2950 Feb 22 2019 topsysproc -rwxr-xr-x 1 root wheel 23392 May 3 2019 touch -rwxr-xr-x 1 root wheel 24208 May 3 2019 tput -rwxr-xr-x 1 root wheel 27744 May 3 2019 tr -rwxr-xr-x 1 root wheel 132224 Jan 24 01:14 trace -rwxr-xr-x 1 root wheel 2207 Feb 22 2019 traptoemail -rwxr-xr-x 35 root wheel 811 Feb 22 2019 treereg -r-xr-xr-x 1 root wheel 10339 Feb 22 2019 treereg5.18 -rwxr-xr-x 1 root wheel 29968 Jan 24 01:14 trimforce -rwxr-xr-x 1 root wheel 457920 May 3 2019 troff -rwxr-xr-x 1 root wheel 17808 May 3 2019 true -rwxr-xr-x 1 root wheel 28816 May 3 2019 tset -r-xr-xr-x 1 root wheel 22976 May 3 2019 tsort -rwxr-xr-x 1 root wheel 18048 May 3 2019 tty -rwxr-xr-x 15 root wheel 190 Feb 22 2019 type -rwxr-xr-x 1 root wheel 23200 May 3 2019 ul -rwxr-xr-x 15 root wheel 190 Feb 22 2019 ulimit -rwxr-xr-x 15 root wheel 190 Feb 22 2019 umask -rwxr-xr-x 15 root wheel 190 Feb 22 2019 unalias -rwxr-xr-x 1 root wheel 18432 May 3 2019 uname -rwxr-xr-x 1 root wheel 27712 May 3 2019 uncompress -rwxr-xr-x 1 root wheel 18576 May 3 2019 unexpand -rwxr-xr-x 1 root wheel 18304 Jul 16 2019 unifdef -rwxr-xr-x 1 root wheel 18304 Jul 16 2019 unifdefall -rwxr-xr-x 1 root wheel 23280 May 3 2019 uniq -r-xr-xr-x 1 root wheel 27712 May 3 2019 units lrwxr-xr-x 1 root wheel 79 May 4 2019 unpack200 -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/unpack200 -rwxr-xr-x 1 root wheel 18400 May 3 2019 unvis -rwxr-xr-x 1 root wheel 185536 May 3 2019 unzip -rwxr-xr-x 1 root wheel 88064 May 3 2019 unzipsfx -rwxr-xr-x 1 root wheel 776032 May 3 2019 update_dyld_shared_cache -rwxr-xr-x 1 root wheel 24192 May 3 2019 uptime -rwxr-xr-x 1 root wheel 38720 Jan 24 01:14 usbkdp -rwxr-xr-x 1 root wheel 18384 May 3 2019 users -r-xr-xr-x 1 _uucp wheel 93664 May 3 2019 uucp -r-xr-xr-x 1 root wheel 24176 May 3 2019 uudecode -r-xr-xr-x 1 root wheel 18768 May 3 2019 uuencode -rwxr-xr-x 1 root wheel 43008 Jan 24 01:14 uuidgen -rwxr-xr-x 1 root wheel 70224 May 3 2019 uulog -r-xr-xr-x 1 _uucp wheel 48288 May 3 2019 uuname -rwxr-xr-x 1 root wheel 75424 May 3 2019 uupick -r-xr-xr-x 1 _uucp wheel 106224 May 3 2019 uustat -rwxr-xr-x 1 root wheel 1958 Feb 22 2019 uuto -r-xr-xr-x 1 _uucp wheel 97760 May 3 2019 uux lrwxr-xr-x 1 root wheel 3 May 4 2019 vi -> vim lrwxr-xr-x 1 root wheel 3 May 4 2019 view -> vim -rwxr-xr-x 1 root wheel 1863696 Jan 24 01:14 vim lrwxr-xr-x 1 root wheel 3 May 4 2019 vimdiff -> vim -rwxr-xr-x 1 root wheel 2099 Feb 22 2019 vimtutor -rwxr-xr-x 1 root wheel 18528 May 3 2019 vis -rwxr-xr-x 1 root wheel 51776 Jan 24 01:14 vm_stat -rwxr-xr-x 1 root wheel 80176 Jan 24 01:14 vmmap -rwxr-xr-x 1 root wheel 91104 Jan 24 01:14 vmmap32 -rwxr-xr-x 1 root wheel 24192 May 3 2019 w -rwxr-xr-x 15 root wheel 190 Feb 22 2019 wait -r-xr-xr-x 1 root wheel 24832 May 3 2019 wall -rwxr-xr-x 1 root wheel 23072 May 3 2019 wc -rwxr-xr-x 1 root wheel 96816 May 3 2019 wdutil -rwxr-xr-x 1 root wheel 18096 May 3 2019 what -r-xr-xr-x 1 root wheel 1806 Feb 22 2019 whatis -rwxr-xr-x 1 root wheel 18544 May 3 2019 whereis -rwxr-xr-x 1 root wheel 18576 May 3 2019 which -rwxr-xr-x 1 root wheel 23552 May 3 2019 who -rwxr-xr-x 1 root wheel 23264 May 3 2019 whoami -rwxr-xr-x 1 root wheel 23776 May 3 2019 whois lrwxr-xr-x 1 root wheel 7 May 4 2019 wish -> wish8.5 -r-xr-xr-x 1 root wheel 127 Feb 22 2019 wish8.5 -r-xr-sr-x 1 root tty 23936 May 3 2019 write lrwxr-xr-x 1 root wheel 75 May 4 2019 wsgen -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/wsgen lrwxr-xr-x 1 root wheel 78 May 4 2019 wsimport -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/wsimport -rwxr-xr-x 1 root wheel 38672 May 3 2019 xar -rwxr-xr-x 1 root wheel 24192 May 3 2019 xargs -rwxr-xr-x 2 root wheel 925 Feb 22 2019 xattr -rwxr-xr-x 1 root wheel 432 Feb 22 2019 xattr-2.7 -rwxr-xr-x 1 root wheel 23968 Jul 16 2019 xcode-select -rwxr-xr-x 1 root wheel 18304 Jul 16 2019 xcodebuild -rwxr-xr-x 1 root wheel 17952 Jul 16 2019 xcrun -rwxr-xr-x 1 root wheel 18304 Jul 16 2019 xcscontrol -rwxr-xr-x 1 root wheel 18320 Jul 16 2019 xcsdiagnose -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 xed -rwxr-xr-x 35 root wheel 811 Feb 22 2019 xgettext.pl -r-xr-xr-x 1 root wheel 6650 Feb 22 2019 xgettext5.18.pl -rwxr-xr-x 1 root wheel 28624 Jan 24 01:14 xip lrwxr-xr-x 1 root wheel 73 May 4 2019 xjc -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/xjc -rwxr-xr-x 1 root wheel 1874 Feb 22 2019 xml2-config -rwxr-xr-x 1 root wheel 18304 Jul 16 2019 xml2man -rwxr-xr-x 1 root wheel 61104 Jan 24 01:14 xmlcatalog -rwxr-xr-x 1 root wheel 141200 Jan 24 01:14 xmllint -rwxr-xr-x 35 root wheel 811 Feb 22 2019 xpath -r-xr-xr-x 1 root wheel 1445 Feb 22 2019 xpath5.18 -rwxr-xr-x 1 root wheel 2546 Feb 22 2019 xslt-config -rwxr-xr-x 1 root wheel 75072 Jan 24 01:14 xsltproc -rwxr-xr-x 38 root wheel 811 Mar 28 2019 xsubpp -rwxr-xr-x 1 root wheel 4591 Mar 28 2019 xsubpp5.18 -rwxr-xr-x 1 root wheel 27312 Jan 24 01:14 xxd -rwxr-xr-x 1 root wheel 70192 May 3 2019 yaa -rwxr-xr-x 1 root wheel 18288 Jul 16 2019 yacc -rwxr-xr-x 1 root wheel 17808 May 3 2019 yes -rwxr-xr-x 1 root wheel 53280 May 3 2019 zcat -rwxr-xr-x 2 root wheel 3264 Feb 22 2019 zcmp -rwxr-xr-x 2 root wheel 3264 Feb 22 2019 zdiff -rwxr-xr-x 1 root wheel 33952 May 3 2019 zegrep -rwxr-xr-x 1 root wheel 33952 May 3 2019 zfgrep -rwxr-xr-x 1 root wheel 1454 Feb 22 2019 zforce -rwxr-xr-x 1 root wheel 33952 May 3 2019 zgrep -rwxr-xr-x 1 root wheel 171840 May 3 2019 zip -rwxr-xr-x 1 root wheel 78224 May 3 2019 zipcloak -rwxr-xr-x 38 root wheel 811 Mar 28 2019 zipdetails -rwxr-xr-x 1 root wheel 48113 Mar 28 2019 zipdetails5.18 -rwxr-xr-x 1 root wheel 2953 Feb 22 2019 zipgrep -rwxr-xr-x 1 root wheel 185536 May 3 2019 zipinfo -rwxr-xr-x 1 root wheel 73408 May 3 2019 zipnote -rwxr-xr-x 1 root wheel 77664 May 3 2019 zipsplit -rwxr-xr-x 2 root wheel 2080 Feb 22 2019 zless -rwxr-xr-x 2 root wheel 2080 Feb 22 2019 zmore -rwxr-xr-x 1 root wheel 3376 Feb 22 2019 znew -rwxr-xr-x 1 root wheel 74672 Jan 24 01:14 zprint /usr/lib: total 95320 drwxr-xr-x 306 root wheel 9792 Feb 7 23:29 . drwxr-xr-x@ 9 root wheel 288 May 3 2019 .. -rwxr-xr-x 1 root wheel 51520 Jan 24 01:14 ACIPCBTLib.dylib -rwxr-xr-x 1 root wheel 161312 Jan 24 01:14 AppleConvergedTransport.dylib -rwxr-xr-x 1 root wheel 1007520 Jan 24 01:14 PN548.dylib -rwxr-xr-x 1 root wheel 243472 Jan 24 01:14 PN548_API.dylib -rwxr-xr-x 1 root wheel 92768 Jan 24 01:14 PN548_HAL.dylib -r--r--r-- 1 root wheel 198 Feb 22 2019 charset.alias lrwxr-xr-x 1 root wheel 12 May 4 2019 cron -> ../../var/at drwxr-xr-x 13 root wheel 416 May 3 2019 dtrace -rwxr-xr-x 1 root wheel 973872 Jan 24 01:14 dyld drwxr-xr-x 4 root wheel 128 Feb 22 2019 groff -rwxr-xr-x 1 root wheel 559232 Jul 16 2019 libATCommandStudioDynamic.dylib -rwxr-xr-x 1 root wheel 224272 Jul 16 2019 libAccessibility.dylib -rwxr-xr-x 1 root wheel 23280 May 3 2019 libAccountPolicyTranslation.dylib -rwxr-xr-x 1 root wheel 39504 Jan 24 01:14 libAppleSSEExt.dylib -rwxr-xr-x 1 root wheel 154000 Jul 16 2019 libAppletTranslationLibrary.dylib -rwxr-xr-x 1 root wheel 913440 Jan 24 01:14 libAudioIssueDetector.dylib -rwxr-xr-x 1 root wheel 158336 Jan 24 01:14 libAudioStatistics.dylib -rwxr-xr-x 1 root wheel 80976 May 3 2019 libBSDPClient.A.dylib lrwxr-xr-x 1 root wheel 21 May 4 2019 libBSDPClient.dylib -> libBSDPClient.A.dylib -rwxr-xr-x 1 root wheel 640240 May 3 2019 libCRFSuite.dylib lrwxr-xr-x 1 root wheel 17 May 4 2019 libCRFSuite0.12.dylib -> libCRFSuite.dylib -rwxr-xr-x 1 root wheel 29584 Jul 16 2019 libCTGreenTeaLogger.dylib -rwxr-xr-x 1 root wheel 201664 May 3 2019 libChineseTokenizer.dylib -rwxr-xr-x 1 root wheel 1468304 May 3 2019 libCoreStorage.dylib -rwxr-xr-x 1 root wheel 32464 May 3 2019 libDHCPServer.A.dylib lrwxr-xr-x 1 root wheel 21 May 4 2019 libDHCPServer.dylib -> libDHCPServer.A.dylib -rwxr-xr-x 1 root wheel 57376 May 3 2019 libDiagnosticMessagesClient.dylib -rwxr-xr-x 1 root wheel 568496 Jan 24 01:14 libFDR_osx.dylib -rwxr-xr-x 1 root wheel 5421872 Jul 16 2019 libFosl_dynamic.dylib -rwxr-xr-x 1 root wheel 121680 Jul 16 2019 libIASAuthReboot.dylib -rwxr-xr-x 1 root wheel 103632 Jul 16 2019 libIASUnifiedProgress.dylib -rwxr-xr-x 1 root wheel 102096 May 3 2019 libMatch.1.dylib lrwxr-xr-x 1 root wheel 16 May 4 2019 libMatch.dylib -> libMatch.1.dylib -rwxr-xr-x 1 root wheel 86480 May 3 2019 libMaxEnt.dylib -rwxr-xr-x 1 root wheel 191952 Jul 16 2019 libMemoryResourceException.dylib -rwxr-xr-x 1 root wheel 464496 Jul 16 2019 libMobileGestalt.dylib -rwxr-xr-x 1 root wheel 43088 May 3 2019 libOpenScriptingUtil.dylib -rwxr-xr-x 1 root wheel 810432 May 3 2019 libParallelCompression.dylib -rwxr-xr-x 1 root wheel 87856 Jul 16 2019 libQMIParserDynamic.dylib -rwxr-xr-x 1 root wheel 1901664 May 3 2019 libSMC.dylib -rwxr-xr-x 1 root wheel 106368 Jul 16 2019 libScreenReader.dylib -rwxr-xr-x 1 root wheel 60880 Jan 24 01:14 libSystem.B.dylib lrwxr-xr-x 1 root wheel 17 May 4 2019 libSystem.dylib -> libSystem.B.dylib -rwxr-xr-x 1 root wheel 1148544 Jul 16 2019 libTelephonyUtilDynamic.dylib -rwxr-xr-x 1 root wheel 58736 May 3 2019 libThaiTokenizer.dylib -rwxr-xr-x 1 root wheel 41632 May 3 2019 libUniversalAccess.dylib -rwxr-xr-x 1 root wheel 20960 May 3 2019 libXSEvent.dylib -rwxr-xr-x 1 root wheel 181168 May 3 2019 libXplugin.1.dylib lrwxr-xr-x 1 root wheel 18 May 4 2019 libXplugin.dylib -> libXplugin.1.dylib -rwxr-xr-x 1 root wheel 279968 May 3 2019 libapple_nghttp2.dylib -rwxr-xr-x 1 root wheel 343808 May 3 2019 libapr-1.0.dylib lrwxr-xr-x 1 root wheel 16 May 4 2019 libapr-1.dylib -> libapr-1.0.dylib -rwxr-xr-x 1 root wheel 298032 May 3 2019 libaprutil-1.0.dylib lrwxr-xr-x 1 root wheel 20 May 4 2019 libaprutil-1.dylib -> libaprutil-1.0.dylib -rwxr-xr-x 1 root wheel 434528 May 3 2019 libarchive.2.dylib lrwxr-xr-x 1 root wheel 18 May 4 2019 libarchive.dylib -> libarchive.2.dylib -rwxr-xr-x 1 root wheel 3066912 May 3 2019 libate.dylib -rwxr-xr-x 1 root wheel 67936 May 3 2019 libauditd.0.dylib lrwxr-xr-x 1 root wheel 17 May 4 2019 libauditd.dylib -> libauditd.0.dylib -rwxr-xr-x 1 root wheel 50528 May 3 2019 libauto.dylib lrwxr-xr-x 1 root wheel 116 May 4 2019 libblas.dylib -> ../../System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib -rwxr-xr-x 1 root wheel 1497616 Jan 24 01:14 libboringssl.dylib -rwxr-xr-x 1 root wheel 200320 May 3 2019 libbsm.0.dylib lrwxr-xr-x 1 root wheel 14 May 4 2019 libbsm.dylib -> libbsm.0.dylib lrwxr-xr-x 1 root wheel 16 May 4 2019 libbz2.1.0.5.dylib -> libbz2.1.0.dylib -rwxr-xr-x 1 root wheel 155552 May 3 2019 libbz2.1.0.dylib lrwxr-xr-x 1 root wheel 16 May 4 2019 libbz2.dylib -> libbz2.1.0.dylib -rwxr-xr-x 1 root wheel 1432816 May 3 2019 libc++.1.dylib lrwxr-xr-x 1 root wheel 14 May 4 2019 libc++.dylib -> libc++.1.dylib -rwxr-xr-x 1 root wheel 339520 May 3 2019 libc++abi.dylib lrwxr-xr-x 1 root wheel 15 May 4 2019 libc.dylib -> libSystem.dylib lrwxr-xr-x 1 root wheel 116 May 4 2019 libcblas.dylib -> ../../System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib lrwxr-xr-x 1 root wheel 18 May 4 2019 libcharset.1.0.0.dylib -> libcharset.1.dylib -r-xr-xr-x 1 root wheel 43552 May 3 2019 libcharset.1.dylib lrwxr-xr-x 1 root wheel 22 May 4 2019 libcharset.dylib -> libcharset.1.0.0.dylib lrwxr-xr-x 1 root wheel 118 May 4 2019 libclapack.dylib -> ../../System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib -rwxr-xr-x 1 root wheel 210080 May 3 2019 libcmph.dylib lrwxr-xr-x 1 root wheel 54 May 4 2019 libcom_err.dylib -> /System/Library/Frameworks/Kerberos.framework/Kerberos -rwxr-xr-x 1 root wheel 380336 Jul 16 2019 libcompression.dylib -rwxr-xr-x 1 root wheel 4187760 May 3 2019 libcoreroutine.dylib -rwxr-xr-x 1 root wheel 271216 May 3 2019 libcoretls.dylib -rwxr-xr-x 1 root wheel 60464 May 3 2019 libcoretls_cfhelpers.dylib -rwxr-xr-x 1 root wheel 2015072 May 3 2019 libcrypto.0.9.7.dylib -rwxr-xr-x 1 root wheel 2652560 May 3 2019 libcrypto.0.9.8.dylib -rwxr-xr-x 1 root wheel 2793664 Jul 16 2019 libcrypto.35.dylib -rwxr-xr-x 1 root wheel 2826656 Jul 16 2019 libcrypto.41.dylib -rwxr-xr-x 1 root wheel 2826688 Jul 16 2019 libcrypto.42.dylib lrwxr-xr-x 1 root wheel 18 May 4 2019 libcrypto.dylib -> libcrypto.35.dylib -rwxr-xr-x 1 root wheel 191328 May 3 2019 libcsfde.dylib -rwxr-xr-x 1 root wheel 68896 Jul 16 2019 libcupolicy.dylib -r-xr-xr-x 1 root wheel 917120 Jan 24 01:14 libcups.2.dylib lrwxr-xr-x 1 root wheel 15 May 4 2019 libcups.dylib -> libcups.2.dylib -r-xr-xr-x 1 root wheel 125632 Jan 24 01:14 libcupscgi.1.dylib lrwxr-xr-x 1 root wheel 18 May 4 2019 libcupscgi.dylib -> libcupscgi.1.dylib -r-xr-xr-x 1 root wheel 94576 Jan 24 01:14 libcupsimage.2.dylib lrwxr-xr-x 1 root wheel 20 May 4 2019 libcupsimage.dylib -> libcupsimage.2.dylib -r-xr-xr-x 1 root wheel 74976 Jan 24 01:14 libcupsmime.1.dylib lrwxr-xr-x 1 root wheel 19 May 4 2019 libcupsmime.dylib -> libcupsmime.1.dylib -r-xr-xr-x 1 root wheel 243888 Jan 24 01:14 libcupsppdc.1.dylib lrwxr-xr-x 1 root wheel 19 May 4 2019 libcupsppdc.dylib -> libcupsppdc.1.dylib lrwxr-xr-x 1 root wheel 15 May 4 2019 libcurl.3.dylib -> libcurl.4.dylib -rwxr-xr-x 1 root wheel 850096 May 3 2019 libcurl.4.dylib lrwxr-xr-x 1 root wheel 15 May 4 2019 libcurl.dylib -> libcurl.4.dylib lrwxr-xr-x 1 root wheel 20 May 4 2019 libcurses.dylib -> libncurses.5.4.dylib lrwxr-xr-x 1 root wheel 15 May 4 2019 libdbm.dylib -> libSystem.dylib lrwxr-xr-x 1 root wheel 54 May 4 2019 libdes425.dylib -> /System/Library/Frameworks/Kerberos.framework/Kerberos lrwxr-xr-x 1 root wheel 15 May 4 2019 libdl.dylib -> libSystem.dylib -rwxr-xr-x 1 root wheel 24656 Jan 24 01:14 libdns_services.dylib -rwxr-xr-x 1 root wheel 57408 May 3 2019 libdscsym.dylib -rwxr-xr-x 1 root wheel 1286176 May 3 2019 libdtrace.dylib -rwxr-xr-x 1 root wheel 77024 May 3 2019 libdz.dylib lrwxr-xr-x 1 root wheel 18 May 4 2019 libeasyperf.dylib -> libperfcheck.dylib -rwxr-xr-x 1 root wheel 92512 May 3 2019 libecpg.6.5.dylib lrwxr-xr-x 1 root wheel 17 May 4 2019 libecpg.6.dylib -> libecpg.6.5.dylib lrwxr-xr-x 1 root wheel 17 May 4 2019 libecpg.dylib -> libecpg.6.5.dylib -rwxr-xr-x 1 root wheel 30928 May 3 2019 libecpg_compat.3.5.dylib lrwxr-xr-x 1 root wheel 24 May 4 2019 libecpg_compat.3.dylib -> libecpg_compat.3.5.dylib lrwxr-xr-x 1 root wheel 24 May 4 2019 libecpg_compat.dylib -> libecpg_compat.3.5.dylib lrwxr-xr-x 1 root wheel 15 May 4 2019 libedit.2.dylib -> libedit.3.dylib lrwxr-xr-x 1 root wheel 15 May 4 2019 libedit.3.0.dylib -> libedit.3.dylib -rwxr-xr-x 1 root wheel 308224 May 3 2019 libedit.3.dylib lrwxr-xr-x 1 root wheel 15 May 4 2019 libedit.dylib -> libedit.3.dylib -rwxr-xr-x 1 root wheel 42688 May 3 2019 libenergytrace.dylib -rwxr-xr-x 1 root wheel 274240 Jan 24 01:14 libexpat.1.dylib lrwxr-xr-x 1 root wheel 16 May 4 2019 libexpat.dylib -> libexpat.1.dylib -rwxr-xr-x 1 root wheel 171872 Jan 24 01:14 libexslt.0.dylib lrwxr-xr-x 1 root wheel 16 May 4 2019 libexslt.dylib -> libexslt.0.dylib lrwxr-xr-x 1 root wheel 74 May 4 2019 libextension.dylib -> ../../System/Library/Frameworks/Foundation.framework/Versions/C/Foundation lrwxr-xr-x 1 root wheel 118 May 4 2019 libf77lapack.dylib -> ../../System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib -rwxr-xr-x 1 root wheel 47568 May 3 2019 libffi.dylib -rwxr-xr-x 1 root wheel 115456 May 3 2019 libform.5.4.dylib lrwxr-xr-x 1 root wheel 17 May 4 2019 libform.dylib -> libform.5.4.dylib lrwxr-xr-x 1 root wheel 15 May 4 2019 libgcc_s.1.dylib -> libSystem.dylib -rwxr-xr-x 1 root wheel 85936 May 3 2019 libgermantok.dylib -r-xr-xr-x 1 root wheel 91872 May 3 2019 libgmalloc.dylib lrwxr-xr-x 1 root wheel 54 May 4 2019 libgssapi_krb5.dylib -> /System/Library/Frameworks/Kerberos.framework/Kerberos -rwxr-xr-x 1 root wheel 96768 Jul 16 2019 libheimdal-asn1.dylib -rwxr-xr-x 1 root wheel 461312 May 3 2019 libhunspell-1.2.0.0.0.dylib lrwxr-xr-x 1 root wheel 27 May 4 2019 libhunspell-1.2.0.dylib -> libhunspell-1.2.0.0.0.dylib lrwxr-xr-x 1 root wheel 27 May 4 2019 libhunspell-1.2.dylib -> libhunspell-1.2.0.0.0.dylib lrwxr-xr-x 1 root wheel 16 May 4 2019 libiconv.2.4.0.dylib -> libiconv.2.dylib -r-xr-xr-x 1 root wheel 2095152 May 3 2019 libiconv.2.dylib lrwxr-xr-x 1 root wheel 20 May 4 2019 libiconv.dylib -> libiconv.2.4.0.dylib -rwxr-xr-x 1 root wheel 6805664 Jul 16 2019 libicucore.A.dylib lrwxr-xr-x 1 root wheel 18 May 4 2019 libicucore.dylib -> libicucore.A.dylib lrwxr-xr-x 1 root wheel 15 May 4 2019 libinfo.dylib -> libSystem.dylib -rwxr-xr-x 1 root wheel 553248 May 3 2019 libiodbc.2.1.18.dylib lrwxr-xr-x 1 root wheel 21 May 4 2019 libiodbc.2.dylib -> libiodbc.2.1.18.dylib lrwxr-xr-x 1 root wheel 21 May 4 2019 libiodbc.dylib -> libiodbc.2.1.18.dylib -rwxr-xr-x 1 root wheel 154496 May 3 2019 libiodbcinst.2.1.18.dylib lrwxr-xr-x 1 root wheel 25 May 4 2019 libiodbcinst.2.dylib -> libiodbcinst.2.1.18.dylib lrwxr-xr-x 1 root wheel 25 May 4 2019 libiodbcinst.dylib -> libiodbcinst.2.1.18.dylib -rwxr-xr-x 1 root wheel 38976 May 3 2019 libipconfig.dylib -r-xr-xr-x 1 root wheel 84736 Jan 24 01:14 libipsec.A.dylib lrwxr-xr-x 1 root wheel 16 May 4 2019 libipsec.dylib -> libipsec.A.dylib lrwxr-xr-x 1 root wheel 54 May 4 2019 libk5crypto.dylib -> /System/Library/Frameworks/Kerberos.framework/Kerberos lrwxr-xr-x 1 root wheel 54 May 4 2019 libkrb4.dylib -> /System/Library/Frameworks/Kerberos.framework/Kerberos lrwxr-xr-x 1 root wheel 54 May 4 2019 libkrb5.dylib -> /System/Library/Frameworks/Kerberos.framework/Kerberos lrwxr-xr-x 1 root wheel 54 May 4 2019 libkrb524.dylib -> /System/Library/Frameworks/Kerberos.framework/Kerberos lrwxr-xr-x 1 root wheel 54 May 4 2019 libkrb5support.dylib -> /System/Library/Frameworks/Kerberos.framework/Kerberos -rwxr-xr-x 1 root wheel 13632 Jul 16 2019 libktrace.dylib -rwxr-xr-x 1 root wheel 52496 May 3 2019 liblangid.dylib lrwxr-xr-x 1 root wheel 118 May 4 2019 liblapack.dylib -> ../../System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib lrwxr-xr-x 1 root wheel 57 May 4 2019 liblber.dylib -> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP lrwxr-xr-x 1 root wheel 57 May 4 2019 libldap.dylib -> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP lrwxr-xr-x 1 root wheel 57 May 4 2019 libldap_r.dylib -> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP -rwxr-xr-x 1 root wheel 264384 May 3 2019 liblzma.5.dylib lrwxr-xr-x 1 root wheel 15 May 4 2019 liblzma.dylib -> liblzma.5.dylib lrwxr-xr-x 1 root wheel 15 May 4 2019 libm.dylib -> libSystem.dylib -rwxr-xr-x 1 root wheel 288144 May 3 2019 libmarisa.dylib -rwxr-xr-x 1 root wheel 1596512 May 3 2019 libmecab.1.0.0.dylib lrwxr-xr-x 1 root wheel 20 May 4 2019 libmecab.dylib -> libmecab.1.0.0.dylib -rwxr-xr-x 1 root wheel 4820080 May 3 2019 libmecabra.dylib -rwxr-xr-x 1 root wheel 76320 May 3 2019 libmenu.5.4.dylib lrwxr-xr-x 1 root wheel 17 May 4 2019 libmenu.dylib -> libmenu.5.4.dylib lrwxr-xr-x 1 root wheel 15 May 4 2019 libmx.A.dylib -> libSystem.dylib lrwxr-xr-x 1 root wheel 15 May 4 2019 libmx.dylib -> libSystem.dylib -rwxr-xr-x 1 root wheel 518896 May 3 2019 libncurses.5.4.dylib lrwxr-xr-x 1 root wheel 20 May 4 2019 libncurses.5.dylib -> libncurses.5.4.dylib lrwxr-xr-x 1 root wheel 20 May 4 2019 libncurses.dylib -> libncurses.5.4.dylib -rwxr-xr-x 1 root wheel 1116224 May 3 2019 libnetsnmp.15.1.2.dylib lrwxr-xr-x 1 root wheel 23 May 4 2019 libnetsnmp.15.dylib -> libnetsnmp.15.1.2.dylib -rwxr-xr-x 1 root wheel 1105808 May 3 2019 libnetsnmp.25.dylib -rwxr-xr-x 1 root wheel 482288 May 3 2019 libnetsnmp.5.2.1.dylib lrwxr-xr-x 1 root wheel 22 May 4 2019 libnetsnmp.5.dylib -> libnetsnmp.5.2.1.dylib lrwxr-xr-x 1 root wheel 19 May 4 2019 libnetsnmp.dylib -> libnetsnmp.25.dylib -rwxr-xr-x 1 root wheel 673808 May 3 2019 libnetsnmpagent.25.dylib lrwxr-xr-x 1 root wheel 24 May 4 2019 libnetsnmpagent.dylib -> libnetsnmpagent.25.dylib -rwxr-xr-x 1 root wheel 34048 May 3 2019 libnetsnmphelpers.25.dylib lrwxr-xr-x 1 root wheel 26 May 4 2019 libnetsnmphelpers.dylib -> libnetsnmphelpers.25.dylib -rwxr-xr-x 1 root wheel 1211776 May 3 2019 libnetsnmpmibs.25.dylib lrwxr-xr-x 1 root wheel 23 May 4 2019 libnetsnmpmibs.dylib -> libnetsnmpmibs.25.dylib -rwxr-xr-x 1 root wheel 101840 May 3 2019 libnetsnmptrapd.25.dylib lrwxr-xr-x 1 root wheel 24 May 4 2019 libnetsnmptrapd.dylib -> libnetsnmptrapd.25.dylib -rwxr-xr-x 1 root wheel 7980448 May 3 2019 libnetwork.dylib -rwxr-xr-x 1 root wheel 92512 May 3 2019 libnetworkextension.dylib -rwxr-xr-x 1 root wheel 103408 Jan 24 01:14 libnfrestore.dylib -rwxr-xr-x 1 root wheel 1009328 Jan 24 01:14 libnfshared.dylib -rwxr-xr-x 1 root wheel 87744 May 3 2019 libobjc-trampolines.dylib -rwxr-xr-x 1 root wheel 28112240 May 3 2019 libobjc.A.dylib lrwxr-xr-x 1 root wheel 15 May 4 2019 libobjc.dylib -> libobjc.A.dylib -rwxr-xr-x 1 root wheel 53824 May 3 2019 libodfde.dylib -rwxr-xr-x 1 root wheel 151024 May 3 2019 libodmodule.dylib -rwxr-xr-x 1 root wheel 52096 May 3 2019 libpam.1.dylib -rwxr-xr-x 1 root wheel 85376 May 3 2019 libpam.2.dylib lrwxr-xr-x 1 root wheel 14 May 4 2019 libpam.dylib -> libpam.2.dylib -rwxr-xr-x 1 root wheel 51552 May 3 2019 libpanel.5.4.dylib lrwxr-xr-x 1 root wheel 18 May 4 2019 libpanel.dylib -> libpanel.5.4.dylib -rwxr-xr-x 1 root wheel 546608 Jan 24 01:14 libpcap.A.dylib lrwxr-xr-x 1 root wheel 15 May 4 2019 libpcap.dylib -> libpcap.A.dylib -rwxr-xr-x 1 root wheel 534992 May 3 2019 libpcre.0.dylib lrwxr-xr-x 1 root wheel 15 May 4 2019 libpcre.dylib -> libpcre.0.dylib -rwxr-xr-x 1 root wheel 43040 May 3 2019 libpcreposix.0.dylib lrwxr-xr-x 1 root wheel 20 May 4 2019 libpcreposix.dylib -> libpcreposix.0.dylib -rwxr-xr-x 1 root wheel 84688 May 3 2019 libperfcheck.dylib -rwxr-xr-x 1 root wheel 78768 May 3 2019 libpgtypes.3.4.dylib lrwxr-xr-x 1 root wheel 20 May 4 2019 libpgtypes.3.dylib -> libpgtypes.3.4.dylib lrwxr-xr-x 1 root wheel 20 May 4 2019 libpgtypes.dylib -> libpgtypes.3.4.dylib -rwxr-xr-x 1 root wheel 32976 Jan 24 01:14 libpmenergy.dylib -rwxr-xr-x 1 root wheel 31984 Jan 24 01:14 libpmsample.dylib lrwxr-xr-x 1 root wheel 15 May 4 2019 libpoll.dylib -> libSystem.dylib -rwxr-xr-x 1 root wheel 178992 May 3 2019 libpq.5.6.dylib lrwxr-xr-x 1 root wheel 15 May 4 2019 libpq.5.dylib -> libpq.5.6.dylib lrwxr-xr-x 1 root wheel 15 May 4 2019 libpq.dylib -> libpq.5.6.dylib -rwxr-xr-x 1 root wheel 147888 May 3 2019 libprequelite.dylib lrwxr-xr-x 1 root wheel 15 May 4 2019 libproc.dylib -> libSystem.dylib lrwxr-xr-x 1 root wheel 15 May 4 2019 libpthread.dylib -> libSystem.dylib lrwxr-xr-x 1 root wheel 18 May 4 2019 libpython.dylib -> libpython2.7.dylib lrwxr-xr-x 1 root wheel 68 May 4 2019 libpython2.7.dylib -> ../../System/Library/Frameworks/Python.framework/Versions/2.7/Python -rwxr-xr-x 1 root wheel 763136 May 3 2019 libquic.dylib -rwxr-xr-x 1 root wheel 25520 Jul 16 2019 libquit.dylib lrwxr-xr-x 1 root wheel 15 May 4 2019 libreadline.dylib -> libedit.3.dylib -rwxr-xr-x 1 root wheel 278144 Jan 24 01:14 libresolv.9.dylib lrwxr-xr-x 1 root wheel 17 May 4 2019 libresolv.dylib -> libresolv.9.dylib lrwxr-xr-x 1 root wheel 15 May 4 2019 librpcsvc.dylib -> libSystem.dylib -rwxr-xr-x 1 root wheel 388992 May 3 2019 libruby.2.3.0.dylib lrwxr-xr-x 1 root wheel 19 May 4 2019 libruby.2.3.dylib -> libruby.2.3.0.dylib lrwxr-xr-x 1 root wheel 19 May 4 2019 libruby.dylib -> libruby.2.3.0.dylib -rwxr-xr-x 1 root wheel 669856 Jul 16 2019 libsandbox.1.dylib lrwxr-xr-x 1 root wheel 18 May 4 2019 libsandbox.dylib -> libsandbox.1.dylib lrwxr-xr-x 1 root wheel 16 May 4 2019 libsasl2.2.0.1.dylib -> libsasl2.2.dylib lrwxr-xr-x 1 root wheel 16 May 4 2019 libsasl2.2.0.15.dylib -> libsasl2.2.dylib lrwxr-xr-x 1 root wheel 16 May 4 2019 libsasl2.2.0.21.dylib -> libsasl2.2.dylib lrwxr-xr-x 1 root wheel 16 May 4 2019 libsasl2.2.0.22.dylib -> libsasl2.2.dylib -rwxr-xr-x 1 root wheel 217040 May 3 2019 libsasl2.2.dylib lrwxr-xr-x 1 root wheel 16 May 4 2019 libsasl2.dylib -> libsasl2.2.dylib -rwxr-xr-x 1 root wheel 27040 Jul 16 2019 libspindump.dylib lrwxr-xr-x 1 root wheel 16 May 4 2019 libsqlite3.0.dylib -> libsqlite3.dylib -rwxr-xr-x 1 root wheel 6234688 Jul 16 2019 libsqlite3.dylib -rwxr-xr-x 1 root wheel 392912 May 3 2019 libssl.0.9.7.dylib -rwxr-xr-x 1 root wheel 642464 May 3 2019 libssl.0.9.8.dylib -rwxr-xr-x 1 root wheel 624624 Jul 16 2019 libssl.35.dylib -rwxr-xr-x 1 root wheel 599888 Jul 16 2019 libssl.43.dylib -rwxr-xr-x 1 root wheel 569984 Jul 16 2019 libssl.44.dylib lrwxr-xr-x 1 root wheel 15 May 4 2019 libssl.dylib -> libssl.35.dylib -rwxr-xr-x 1 root wheel 1417712 May 3 2019 libstdc++.6.0.9.dylib lrwxr-xr-x 1 root wheel 21 May 4 2019 libstdc++.6.dylib -> libstdc++.6.0.9.dylib lrwxr-xr-x 1 root wheel 17 May 4 2019 libstdc++.dylib -> libstdc++.6.dylib -rwxr-xr-x 1 root wheel 45168 Jul 16 2019 libsysdiagnose.dylib -rwxr-xr-x 1 root wheel 29856 Jan 24 01:14 libsysmon.dylib -rwxr-xr-x 1 root wheel 113936 Jan 24 01:14 libsystemstats.dylib -rwxr-xr-x 1 root wheel 141456 Jul 16 2019 libtailspin.dylib lrwxr-xr-x 1 root wheel 15 May 4 2019 libtcl.dylib -> libtcl8.5.dylib lrwxr-xr-x 1 root wheel 62 May 4 2019 libtcl8.5.dylib -> ../../System/Library/Frameworks/Tcl.framework/Versions/8.5/Tcl lrwxr-xr-x 1 root wheel 20 May 4 2019 libtermcap.dylib -> libncurses.5.4.dylib -rwxr-xr-x 1 root wheel 519520 Jul 16 2019 libtidy.A.dylib lrwxr-xr-x 1 root wheel 15 May 4 2019 libtidy.dylib -> libtidy.A.dylib lrwxr-xr-x 1 root wheel 14 May 4 2019 libtk.dylib -> libtk8.5.dylib lrwxr-xr-x 1 root wheel 60 May 4 2019 libtk8.5.dylib -> ../../System/Library/Frameworks/Tk.framework/Versions/8.5/Tk -rwxr-xr-x 1 root wheel 125104 Jul 16 2019 libtls.15.dylib -rwxr-xr-x 1 root wheel 130416 Jul 16 2019 libtls.16.dylib -rwxr-xr-x 1 root wheel 75472 Jul 16 2019 libtls.6.dylib lrwxr-xr-x 1 root wheel 14 May 4 2019 libtls.dylib -> libtls.6.dylib -rwxr-xr-x 1 root wheel 65376 May 3 2019 libtzupdate.dylib -rwxr-xr-x 1 root wheel 886896 May 3 2019 libusrtcp.dylib -rwxr-xr-x 1 root wheel 82064 May 3 2019 libutil.dylib lrwxr-xr-x 1 root wheel 13 May 4 2019 libutil1.0.dylib -> libutil.dylib -rwxr-xr-x 1 root wheel 188816 May 3 2019 libxar.1.dylib lrwxr-xr-x 1 root wheel 14 May 4 2019 libxar.dylib -> libxar.1.dylib -rwxr-xr-x 1 root wheel 34736 Jul 16 2019 libxcselect.dylib -rwxr-xr-x 1 root wheel 2262128 Jan 24 01:14 libxml2.2.dylib lrwxr-xr-x 1 root wheel 15 May 4 2019 libxml2.dylib -> libxml2.2.dylib -rwxr-xr-x 1 root wheel 441952 Jan 24 01:14 libxslt.1.dylib lrwxr-xr-x 1 root wheel 15 May 4 2019 libxslt.dylib -> libxslt.1.dylib lrwxr-xr-x 1 root wheel 12 May 4 2019 libz.1.1.3.dylib -> libz.1.dylib lrwxr-xr-x 1 root wheel 12 May 4 2019 libz.1.2.11.dylib -> libz.1.dylib lrwxr-xr-x 1 root wheel 12 May 4 2019 libz.1.2.5.dylib -> libz.1.dylib lrwxr-xr-x 1 root wheel 12 May 4 2019 libz.1.2.8.dylib -> libz.1.dylib -rwxr-xr-x 1 root wheel 186480 May 3 2019 libz.1.dylib lrwxr-xr-x 1 root wheel 12 May 4 2019 libz.dylib -> libz.1.dylib drwxr-xr-x 14 root wheel 448 Feb 7 23:29 log drwxr-xr-x 20 root wheel 640 Feb 7 23:29 pam drwxr-xr-x 4 root wheel 128 Feb 22 2019 php drwxr-xr-x 11 root wheel 352 May 3 2019 pkgconfig lrwxr-xr-x 1 root wheel 75 May 4 2019 python2.7 -> ../../System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7 drwxr-xr-x 9 root wheel 288 Jul 23 2019 rpcsvc lrwxr-xr-x 1 root wheel 76 May 4 2019 ruby -> ../../System/Library/Frameworks/Ruby.framework/Versions/Current/usr/lib/ruby drwxr-xr-x 22 root wheel 704 May 4 2019 sasl2 lrwxr-xr-x 1 root wheel 27 May 4 2019 sqlite3 -> /System/Library/Tcl/sqlite3 -rwxr-xr-x 1 root wheel 53824 Jul 16 2019 ssh-keychain.dylib drwxr-xr-x 49 root wheel 1568 Jul 23 2019 swift drwxr-xr-x 42 root wheel 1344 Feb 7 23:29 system drwxr-xr-x 3 root wheel 96 Apr 25 2019 xpc drwxr-xr-x 3 root wheel 96 Feb 22 2019 zsh /usr/lib/dtrace: total 16 drwxr-xr-x 13 root wheel 416 May 3 2019 . drwxr-xr-x 306 root wheel 9792 Feb 7 23:29 .. -rw-r--r-- 1 root wheel 13493 Apr 25 2019 darwin.d -rw-r--r-- 1 root wheel 1004 Feb 22 2019 dt_cpp.h -rw-r--r-- 1 root wheel 7011 Apr 25 2019 errno.d -rw-r--r-- 1 root wheel 9616 Apr 25 2019 io.d -rw-r--r-- 1 root wheel 9305 Apr 25 2019 ip.d -rw-r--r-- 1 root wheel 2526 Apr 25 2019 regs_x86_64.d -rw-r--r-- 1 root wheel 2577 Apr 25 2019 sched.d -rw-r--r-- 1 root wheel 2738 Apr 25 2019 signal.d -rw-r--r-- 1 root wheel 2001 Apr 25 2019 socket.d -rw-r--r-- 1 root wheel 8626 Apr 25 2019 tcp.d -rw-r--r-- 1 root wheel 1973 Apr 25 2019 unistd.d /usr/lib/groff: total 0 drwxr-xr-x 4 root wheel 128 Feb 22 2019 . drwxr-xr-x 306 root wheel 9792 Feb 7 23:29 .. drwxr-xr-x 3 root wheel 96 Feb 22 2019 groffer drwxr-xr-x 2 root wheel 64 Feb 22 2019 site-tmac /usr/lib/groff/groffer: total 80 drwxr-xr-x 3 root wheel 96 Feb 22 2019 . drwxr-xr-x 4 root wheel 128 Feb 22 2019 .. -rwxr-xr-x 1 root wheel 141865 Feb 22 2019 groffer2.sh /usr/lib/groff/site-tmac: total 0 drwxr-xr-x 2 root wheel 64 Feb 22 2019 . drwxr-xr-x 4 root wheel 128 Feb 22 2019 .. /usr/lib/log: total 448 drwxr-xr-x 14 root wheel 448 Feb 7 23:29 . drwxr-xr-x 306 root wheel 9792 Feb 7 23:29 .. -rwxr-xr-x 1 root wheel 32256 Jul 16 2019 liblog_AppStoreDaemon.dylib -rwxr-xr-x 1 root wheel 35872 May 3 2019 liblog_AppleLDAPTypes.dylib -rwxr-xr-x 1 root wheel 33840 Jan 24 01:14 liblog_SystemConfiguration.dylib -rwxr-xr-x 1 root wheel 114352 Jan 24 01:14 liblog_audio.dylib -rwxr-xr-x 1 root wheel 37952 Jul 16 2019 liblog_coreacc.dylib -rwxr-xr-x 1 root wheel 162608 Jan 24 01:13 liblog_geo.dylib -rwxr-xr-x 1 root wheel 83360 Jul 16 2019 liblog_location.dylib -rwxr-xr-x 1 root wheel 23712 May 3 2019 liblog_network.dylib -rwxr-xr-x 1 root wheel 27520 May 3 2019 liblog_odtypes.dylib -rwxr-xr-x 1 root wheel 18608 Jul 16 2019 liblog_signpost.description.dylib -rwxr-xr-x 1 root wheel 18112 Jul 16 2019 liblog_signpost.dylib -rwxr-xr-x 1 root wheel 18608 Jul 16 2019 liblog_signpost.telemetry.dylib /usr/lib/pam: total 664 drwxr-xr-x 20 root wheel 640 Feb 7 23:29 . drwxr-xr-x 306 root wheel 9792 Feb 7 23:29 .. -r--r--r-- 1 root wheel 19024 Jan 24 01:13 pam_aks.so.2 -rwxr-xr-x 1 root wheel 34288 May 3 2019 pam_deny.so.2 -r--r--r-- 1 root wheel 60768 Jan 24 01:14 pam_env.so.2 -r--r--r-- 1 root wheel 43184 Jan 24 01:13 pam_group.so.2 -r--r--r-- 1 root wheel 100784 Jan 24 01:13 pam_krb5.so.2 -r--r--r-- 1 root wheel 43776 Jan 24 01:13 pam_launchd.so.2 -r--r--r-- 1 root wheel 91936 Jan 24 01:14 pam_localauthentication.so.2 -r--r--r-- 1 root wheel 77600 Jan 24 01:13 pam_mount.so.2 -r--r--r-- 1 root wheel 43056 Jan 24 01:13 pam_nologin.so.2 -r--r--r-- 1 root wheel 68432 Jan 24 01:13 pam_ntlm.so.2 -r--r--r-- 1 root wheel 72768 Jan 24 01:14 pam_opendirectory.so.2 -rwxr-xr-x 1 root wheel 34288 May 3 2019 pam_permit.so.2 -r--r--r-- 1 root wheel 42496 Jan 24 01:13 pam_rootok.so.2 -r--r--r-- 1 root wheel 43088 Jan 24 01:13 pam_sacl.so.2 -r--r--r-- 1 root wheel 42720 Jan 24 01:14 pam_self.so.2 -r--r--r-- 1 root wheel 143408 Jan 24 01:14 pam_smartcard.so.2 -r--r--r-- 1 root wheel 100464 Jan 24 01:14 pam_tid.so.2 -r--r--r-- 1 root wheel 43200 Jan 24 01:13 pam_uwtmp.so.2 /usr/lib/php: total 0 drwxr-xr-x 4 root wheel 128 Feb 22 2019 . drwxr-xr-x 306 root wheel 9792 Feb 7 23:29 .. drwxr-xr-x 14 root wheel 448 Feb 7 23:29 build drwxr-xr-x 3 root wheel 96 Feb 22 2019 extensions /usr/lib/php/build: total 504 drwxr-xr-x 14 root wheel 448 Feb 7 23:29 . drwxr-xr-x 4 root wheel 128 Feb 22 2019 .. -rw-r--r-- 1 root wheel 7156 Feb 22 2019 Makefile.global -rw-r--r-- 1 root wheel 84357 Jan 6 22:21 acinclude.m4 -rw-r--r-- 1 root wheel 3330 Feb 22 2019 ax_check_compile_flag.m4 -rwxr-xr-x 1 root wheel 42938 Feb 22 2019 config.guess -rwxr-xr-x 1 root wheel 35987 Feb 22 2019 config.sub -rw-r--r-- 1 root wheel 230377 Feb 22 2019 libtool.m4 -rw-r--r-- 1 root wheel 199728 Feb 22 2019 ltmain.sh -rw-r--r-- 1 root wheel 2215 Jan 6 22:21 mkdep.awk -rw-r--r-- 1 root wheel 4684 Jan 6 22:21 phpize.m4 -rw-r--r-- 1 root wheel 82608 Jan 6 22:21 run-tests.php -rw-r--r-- 1 root wheel 409 Jan 6 22:21 scan_makefile_in.awk -rwxr-xr-x 1 root wheel 65761 Feb 22 2019 shtool /usr/lib/php/extensions: total 0 drwxr-xr-x 3 root wheel 96 Feb 22 2019 . drwxr-xr-x 4 root wheel 128 Feb 22 2019 .. drwxr-xr-x 4 root wheel 128 Feb 7 23:29 no-debug-non-zts-20160303 /usr/lib/php/extensions/no-debug-non-zts-20160303: total 560 drwxr-xr-x 4 root wheel 128 Feb 7 23:29 . drwxr-xr-x 3 root wheel 96 Feb 22 2019 .. -rwxr-xr-x 1 root wheel 363712 Jan 24 01:13 opcache.so -rwxr-xr-x 1 root wheel 245424 Jan 24 01:13 xdebug.so /usr/lib/pkgconfig: total 0 drwxr-xr-x 11 root wheel 352 May 3 2019 . drwxr-xr-x 306 root wheel 9792 Feb 7 23:29 .. -rw-r--r-- 1 root wheel 341 Feb 22 2019 apr-1.pc -rw-r--r-- 1 root wheel 433 Feb 22 2019 apr-util-1.pc -rw-r--r-- 1 root wheel 465 Feb 22 2019 libecpg.pc -rw-r--r-- 1 root wheel 493 Feb 22 2019 libecpg_compat.pc -rw-r--r-- 1 root wheel 3591 Feb 22 2019 libiodbc.pc -rw-r--r-- 1 root wheel 313 Feb 22 2019 libpcre.pc -rw-r--r-- 1 root wheel 301 Feb 22 2019 libpcreposix.pc -rw-r--r-- 1 root wheel 448 Feb 22 2019 libpgtypes.pc -rw-r--r-- 1 root wheel 453 Feb 22 2019 libpq.pc /usr/lib/rpcsvc: total 1168 drwxr-xr-x 9 root wheel 288 Jul 23 2019 . drwxr-xr-x 306 root wheel 9792 Feb 7 23:29 .. -rwxr-xr-x 1 root wheel 61408 Jul 16 2019 dssetup.bundle -rwxr-xr-x 1 root wheel 27696 Jul 16 2019 echosvc.bundle -rwxr-xr-x 1 root wheel 387088 Jul 16 2019 lsarpc.bundle -rwxr-xr-x 1 root wheel 134720 Jul 16 2019 mdssvc.bundle -rwxr-xr-x 1 root wheel 488592 Jul 16 2019 netlogon.bundle -rwxr-xr-x 1 root wheel 435280 Jul 16 2019 srvsvc.bundle -rwxr-xr-x 1 root wheel 96160 Jul 16 2019 wkssvc.bundle /usr/lib/sasl2: total 1064 drwxr-xr-x 22 root wheel 704 May 4 2019 . drwxr-xr-x 306 root wheel 9792 Feb 7 23:29 .. -rwxr-xr-x 1 root wheel 60688 May 3 2019 apop.so -rwxr-xr-x 1 root wheel 52048 May 3 2019 atoken.so -rwxr-xr-x 1 root wheel 241344 May 3 2019 dhx.so -rwxr-xr-x 1 root wheel 116512 May 3 2019 digestmd5WebDAV.so -rwxr-xr-x 1 root wheel 57008 May 3 2019 libanonymous.2.so -rwxr-xr-x 1 root wheel 61232 May 3 2019 libcrammd5.2.so -rwxr-xr-x 1 root wheel 120432 May 3 2019 libdigestmd5.2.so -rwxr-xr-x 1 root wheel 84176 May 3 2019 libgssapiv2.2.0.18.so lrwxr-xr-x 1 root wheel 21 May 4 2019 libgssapiv2.2.so -> libgssapiv2.2.0.18.so -rwxr-xr-x 1 root wheel 87040 May 3 2019 libntlm.so -rwxr-xr-x 1 root wheel 61008 May 3 2019 libplain.2.so -rwxr-xr-x 1 root wheel 61024 May 3 2019 login.so -rwxr-xr-x 1 root wheel 74512 May 3 2019 mschapv2.so -rwxr-xr-x 1 root wheel 56464 May 3 2019 oauthbearer.so drwxr-xr-x 5 root wheel 160 May 4 2019 openldap -rwxr-xr-x 1 root wheel 52128 May 3 2019 plain-clienttoken.so -rwxr-xr-x 1 root wheel 28336 May 3 2019 pwauxprop.so -rwxr-xr-x 1 root wheel 66864 May 3 2019 shadow_auxprop.so -rwxr-xr-x 1 root wheel 65840 May 3 2019 smb_ntlmv2.so -rwxr-xr-x 1 root wheel 111024 May 3 2019 srp.so /usr/lib/sasl2/openldap: total 0 drwxr-xr-x 5 root wheel 160 May 4 2019 . drwxr-xr-x 22 root wheel 704 May 4 2019 .. lrwxr-xr-x 1 root wheel 18 May 4 2019 libcrammd5.2.so -> ../libcrammd5.2.so lrwxr-xr-x 1 root wheel 19 May 4 2019 libgssapiv2.2.so -> ../libgssapiv2.2.so lrwxr-xr-x 1 root wheel 9 May 4 2019 srp.so -> ../srp.so /usr/lib/swift: total 12000 drwxr-xr-x 49 root wheel 1568 Jul 23 2019 . drwxr-xr-x 306 root wheel 9792 Feb 7 23:29 .. -rwxr-xr-x 1 root wheel 110320 Jul 16 2019 libswiftAVFoundation.dylib -rwxr-xr-x 1 root wheel 53840 Jul 16 2019 libswiftAccelerate.dylib -rwxr-xr-x 1 root wheel 211248 Jul 16 2019 libswiftAppKit.dylib -rwxr-xr-x 1 root wheel 196096 Jul 16 2019 libswiftCloudKit.dylib -rwxr-xr-x 1 root wheel 56176 Jul 16 2019 libswiftContacts.dylib -rwxr-xr-x 1 root wheel 6698944 Jul 16 2019 libswiftCore.dylib -rwxr-xr-x 1 root wheel 67392 Jul 16 2019 libswiftCoreAudio.dylib -rwxr-xr-x 1 root wheel 86064 Jul 16 2019 libswiftCoreData.dylib -rwxr-xr-x 1 root wheel 28560 Jul 16 2019 libswiftCoreFoundation.dylib -rwxr-xr-x 1 root wheel 183024 Jul 16 2019 libswiftCoreGraphics.dylib -rwxr-xr-x 1 root wheel 32208 Jul 16 2019 libswiftCoreImage.dylib -rwxr-xr-x 1 root wheel 41664 Jul 16 2019 libswiftCoreLocation.dylib -rwxr-xr-x 1 root wheel 62800 Jul 16 2019 libswiftCoreMedia.dylib -rwxr-xr-x 1 root wheel 2539376 Jul 16 2019 libswiftCreateML.dylib -rwxr-xr-x 1 root wheel 45600 Jul 16 2019 libswiftCryptoTokenKit.dylib -rwxr-xr-x 1 root wheel 87440 Jul 16 2019 libswiftDarwin.dylib -rwxr-xr-x 1 root wheel 257952 Jul 16 2019 libswiftDemangle.dylib -rwxr-xr-x 1 root wheel 320912 Jul 16 2019 libswiftDispatch.dylib -rwxr-xr-x 1 root wheel 3234912 Jul 16 2019 libswiftFoundation.dylib -rwxr-xr-x 1 root wheel 42720 Jul 16 2019 libswiftGLKit.dylib -rwxr-xr-x 1 root wheel 54608 Jul 16 2019 libswiftGameplayKit.dylib -rwxr-xr-x 1 root wheel 31984 Jul 16 2019 libswiftIOKit.dylib -rwxr-xr-x 1 root wheel 44464 Jul 16 2019 libswiftIntents.dylib -rwxr-xr-x 1 root wheel 49920 Jul 16 2019 libswiftMapKit.dylib -rwxr-xr-x 1 root wheel 69856 Jul 16 2019 libswiftMetal.dylib -rwxr-xr-x 1 root wheel 47984 Jul 16 2019 libswiftMetalKit.dylib -rwxr-xr-x 1 root wheel 71696 Jul 16 2019 libswiftModelIO.dylib -rwxr-xr-x 1 root wheel 83024 Jul 16 2019 libswiftNaturalLanguage.dylib -rwxr-xr-x 1 root wheel 436432 Jul 16 2019 libswiftNetwork.dylib -rwxr-xr-x 1 root wheel 49904 Jul 16 2019 libswiftObjectiveC.dylib -rwxr-xr-x 1 root wheel 28880 Jul 16 2019 libswiftOpenCL.dylib -rwxr-xr-x 1 root wheel 46928 Jul 16 2019 libswiftPhotos.dylib -rwxr-xr-x 1 root wheel 45024 Jul 16 2019 libswiftQuartzCore.dylib -rwxr-xr-x 1 root wheel 481584 Jul 16 2019 libswiftRemoteMirror.dylib -rwxr-xr-x 1 root wheel 447120 Jul 16 2019 libswiftRemoteMirror42.dylib -rwxr-xr-x 1 root wheel 401840 Jul 16 2019 libswiftRemoteMirrorLegacy.dylib -rwxr-xr-x 1 root wheel 21952 Jul 16 2019 libswiftSIMDOperators.dylib -rwxr-xr-x 1 root wheel 37520 Jul 16 2019 libswiftSafariServices.dylib -rwxr-xr-x 1 root wheel 75904 Jul 16 2019 libswiftSceneKit.dylib -rwxr-xr-x 1 root wheel 57344 Jul 16 2019 libswiftSpriteKit.dylib -rwxr-xr-x 1 root wheel 382624 Jul 16 2019 libswiftSwiftOnoneSupport.dylib -rwxr-xr-x 1 root wheel 153680 Jul 16 2019 libswiftUIKit.dylib -rwxr-xr-x 1 root wheel 42864 Jul 16 2019 libswiftVision.dylib -rwxr-xr-x 1 root wheel 123344 Jul 16 2019 libswiftXCTest.dylib -rwxr-xr-x 1 root wheel 32160 Jul 16 2019 libswiftXPC.dylib -rwxr-xr-x 1 root wheel 59472 Jul 16 2019 libswiftos.dylib -rwxr-xr-x 1 root wheel 299584 Jul 16 2019 libswiftsimd.dylib /usr/lib/system: total 10704 drwxr-xr-x 42 root wheel 1344 Feb 7 23:29 . drwxr-xr-x 306 root wheel 9792 Feb 7 23:29 .. drwxr-xr-x 4 root wheel 128 Jul 23 2019 introspection -rwxr-xr-x 1 root wheel 83936 May 3 2019 libcache.dylib -rwxr-xr-x 1 root wheel 193424 May 3 2019 libcommonCrypto.dylib -rwxr-xr-x 1 root wheel 161280 May 3 2019 libcompiler_rt.dylib -rwxr-xr-x 1 root wheel 136960 May 3 2019 libcopyfile.dylib -rwxr-xr-x 1 root wheel 1185792 Jul 16 2019 libcorecrypto.dylib -rwxr-xr-x 1 root wheel 1194640 Jul 16 2019 libcorecrypto_trace.dylib -rwxr-xr-x 1 root wheel 828656 Jul 16 2019 libdispatch.dylib -rwxr-xr-x 1 root wheel 605024 May 3 2019 libdyld.dylib -rwxr-xr-x 1 root wheel 44512 May 3 2019 libkeymgr.dylib -r-xr-xr-x 1 root wheel 148528 Jan 24 01:13 libkxld.dylib -rwxr-xr-x 1 root wheel 58704 Jan 24 01:14 liblaunch.dylib -r-xr-xr-x 1 root wheel 99264 Jul 16 2019 libmacho.dylib lrwxr-xr-x 1 root wheel 18 May 4 2019 libmathCommon.A.dylib -> ../libSystem.dylib lrwxr-xr-x 1 root wheel 18 May 4 2019 libmathCommon.dylib -> ../libSystem.dylib -rwxr-xr-x 1 root wheel 73520 Jan 24 01:13 libquarantine.dylib -rwxr-xr-x 1 root wheel 57808 May 3 2019 libremovefile.dylib -rwxr-xr-x 1 root wheel 297920 May 3 2019 libsystem_asl.dylib -rwxr-xr-x 1 root wheel 44176 May 3 2019 libsystem_blocks.dylib -rwxr-xr-x 1 root wheel 1437088 May 3 2019 libsystem_c.dylib -rwxr-xr-x 1 root wheel 84336 Jul 16 2019 libsystem_configuration.dylib -rwxr-xr-x 1 root wheel 77168 May 3 2019 libsystem_coreservices.dylib -rwxr-xr-x 1 root wheel 136208 May 3 2019 libsystem_darwin.dylib -rwxr-xr-x 1 root wheel 102016 Jan 24 01:13 libsystem_dnssd.dylib -rwxr-xr-x 1 root wheel 804064 May 3 2019 libsystem_info.dylib -rwxr-xr-x 1 root wheel 545504 Jan 24 01:13 libsystem_kernel.dylib -rwxr-xr-x 1 root wheel 755200 May 3 2019 libsystem_m.dylib -rwxr-xr-x 1 root wheel 408784 Jul 16 2019 libsystem_malloc.dylib -rwxr-xr-x 1 root wheel 182304 May 3 2019 libsystem_networkextension.dylib -rwxr-xr-x 1 root wheel 110528 May 3 2019 libsystem_notify.dylib -rwxr-xr-x 1 root wheel 141568 Jul 16 2019 libsystem_platform.dylib -rwxr-xr-x 1 root wheel 171856 May 3 2019 libsystem_pthread.dylib -rwxr-xr-x 1 root wheel 85104 Jul 16 2019 libsystem_sandbox.dylib -rwxr-xr-x 1 root wheel 67152 Jul 16 2019 libsystem_secinit.dylib -rwxr-xr-x 1 root wheel 117136 Jul 16 2019 libsystem_symptoms.dylib -rwxr-xr-x 1 root wheel 295696 Jan 24 01:14 libsystem_trace.dylib -rwxr-xr-x 1 root wheel 34080 May 3 2019 libunc.dylib -rwxr-xr-x 1 root wheel 112544 May 3 2019 libunwind.dylib -rwxr-xr-x 1 root wheel 656224 Jan 24 01:13 libxpc.dylib -rwxr-xr-x 1 root wheel 42576 Jan 24 01:13 wordexp-helper /usr/lib/system/introspection: total 960 drwxr-xr-x 4 root wheel 128 Jul 23 2019 . drwxr-xr-x 42 root wheel 1344 Feb 7 23:29 .. -rwxr-xr-x 1 root wheel 960848 Jul 16 2019 libdispatch.dylib -rwxr-xr-x 1 root wheel 196528 May 3 2019 libsystem_pthread.dylib /usr/lib/xpc: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 306 root wheel 9792 Feb 7 23:29 .. drwxr-xr-x 3 root wheel 96 Apr 25 2019 support.bundle /usr/lib/xpc/support.bundle: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 3 root wheel 96 Apr 25 2019 .. drwxr-xr-x 6 root wheel 192 Feb 7 23:29 Contents /usr/lib/xpc/support.bundle/Contents: total 0 drwxr-xr-x 6 root wheel 192 Feb 7 23:29 . drwxr-xr-x 3 root wheel 96 Apr 25 2019 .. -rw-r--r-- 1 root wheel 1352 Jan 9 01:35 Info.plist drwxr-xr-x 3 root wheel 96 Feb 7 23:29 MacOS drwxr-xr-x 3 root wheel 96 Feb 7 23:29 _CodeSignature -rw-r--r-- 1 root wheel 510 Jan 9 01:35 version.plist /usr/lib/xpc/support.bundle/Contents/MacOS: total 40 drwxr-xr-x 3 root wheel 96 Feb 7 23:29 . drwxr-xr-x 6 root wheel 192 Feb 7 23:29 .. -rwxr-xr-x 1 root wheel 72960 Jan 24 01:19 support /usr/lib/xpc/support.bundle/Contents/_CodeSignature: total 0 drwxr-xr-x 3 root wheel 96 Feb 7 23:29 . drwxr-xr-x 6 root wheel 192 Feb 7 23:29 .. -rw-r--r-- 1 root wheel 2428 Jan 24 01:19 CodeResources /usr/lib/zsh: total 0 drwxr-xr-x 3 root wheel 96 Feb 22 2019 . drwxr-xr-x 306 root wheel 9792 Feb 7 23:29 .. drwxr-xr-x 3 root wheel 96 Feb 22 2019 5.3 /usr/lib/zsh/5.3: total 0 drwxr-xr-x 3 root wheel 96 Feb 22 2019 . drwxr-xr-x 3 root wheel 96 Feb 22 2019 .. drwxr-xr-x 35 root wheel 1120 May 3 2019 zsh /usr/lib/zsh/5.3/zsh: total 1152 drwxr-xr-x 35 root wheel 1120 May 3 2019 . drwxr-xr-x 3 root wheel 96 Feb 22 2019 .. -rwxr-xr-x 1 root wheel 18960 May 3 2019 attr.so -rwxr-xr-x 1 root wheel 18208 May 3 2019 cap.so -rwxr-xr-x 1 root wheel 19248 May 3 2019 clone.so -rwxr-xr-x 1 root wheel 66624 May 3 2019 compctl.so -rwxr-xr-x 1 root wheel 129360 May 3 2019 complete.so -rwxr-xr-x 1 root wheel 63904 May 3 2019 complist.so -rwxr-xr-x 1 root wheel 65280 May 3 2019 computil.so -rwxr-xr-x 1 root wheel 36016 May 3 2019 curses.so -rwxr-xr-x 1 root wheel 19968 May 3 2019 datetime.so -rwxr-xr-x 1 root wheel 18768 May 3 2019 deltochar.so -rwxr-xr-x 1 root wheel 19200 May 3 2019 example.so -rwxr-xr-x 1 root wheel 29152 May 3 2019 files.so -rwxr-xr-x 1 root wheel 18480 May 3 2019 langinfo.so -rwxr-xr-x 1 root wheel 19392 May 3 2019 mapfile.so -rwxr-xr-x 1 root wheel 24816 May 3 2019 mathfunc.so drwxr-xr-x 4 root wheel 128 May 3 2019 net -rwxr-xr-x 1 root wheel 18480 May 3 2019 newuser.so drwxr-xr-x 3 root wheel 96 May 3 2019 param -rwxr-xr-x 1 root wheel 39408 May 3 2019 parameter.so -rwxr-xr-x 1 root wheel 19216 May 3 2019 regex.so -rwxr-xr-x 1 root wheel 23088 May 3 2019 rlimits.so -rwxr-xr-x 1 root wheel 23712 May 3 2019 sched.so -rwxr-xr-x 1 root wheel 23888 May 3 2019 stat.so -rwxr-xr-x 1 root wheel 29152 May 3 2019 system.so -rwxr-xr-x 1 root wheel 19376 May 3 2019 termcap.so -rwxr-xr-x 1 root wheel 19408 May 3 2019 terminfo.so -rwxr-xr-x 1 root wheel 44912 May 3 2019 zftp.so -rwxr-xr-x 1 root wheel 254432 May 3 2019 zle.so -rwxr-xr-x 1 root wheel 18880 May 3 2019 zleparameter.so -rwxr-xr-x 1 root wheel 22912 May 3 2019 zprof.so -rwxr-xr-x 1 root wheel 26240 May 3 2019 zpty.so -rwxr-xr-x 1 root wheel 23552 May 3 2019 zselect.so -rwxr-xr-x 1 root wheel 38992 May 3 2019 zutil.so /usr/lib/zsh/5.3/zsh/net: total 40 drwxr-xr-x 4 root wheel 128 May 3 2019 . drwxr-xr-x 35 root wheel 1120 May 3 2019 .. -rwxr-xr-x 1 root wheel 19296 May 3 2019 socket.so -rwxr-xr-x 1 root wheel 24448 May 3 2019 tcp.so /usr/lib/zsh/5.3/zsh/param: total 24 drwxr-xr-x 3 root wheel 96 May 3 2019 . drwxr-xr-x 35 root wheel 1120 May 3 2019 .. -rwxr-xr-x 1 root wheel 28224 May 3 2019 private.so /usr/libexec: total 45216 drwxr-xr-x 249 root wheel 7968 Feb 7 23:29 . drwxr-xr-x@ 9 root wheel 288 May 3 2019 .. -rwxr-xr-x 1 root wheel 24432 May 3 2019 AdvancedCommandsMigrator -rwxr-xr-x 1 root wheel 32288 Jan 24 01:14 AirPlayXPCHelper drwxr-xr-x 5 root wheel 160 Jul 23 2019 AppSandbox -rwxr-xr-x 1 root wheel 78608 Jan 24 01:14 AppleQEMUGuestAgent drwxr-xr-x 7 root wheel 224 Feb 7 23:29 ApplicationFirewall drwxr-xr-x 4 root wheel 128 Jul 23 2019 AssetCache drwxr-xr-x 42 root wheel 1344 Jul 23 2019 AssetCacheAgent -rwxr-xr-x 1 root wheel 124176 Jul 16 2019 CSCSupportd -rwxr-xr-x 1 root wheel 32576 Jul 16 2019 DataDetectorsLocalSources -rwxr-xr-x 1 root wheel 25008 Jul 16 2019 DataDetectorsSourceAccess drwxr-xr-x 3 root wheel 96 Jul 23 2019 DeveloperTools -rwxr-xr-x 1 root wheel 30576 Jul 16 2019 FDERecoveryAgent -rwxr-xr-x 1 root wheel 50560 Jul 16 2019 FirmwareUpdateLauncher -rwxr-xr-x 1 root wheel 30176 Jan 24 01:14 IOAccelMemoryInfoCollector -r-xr-xr-x 1 root wheel 184976 May 3 2019 InternetSharing -rwxr-xr-x 1 root wheel 50480 May 3 2019 KeychainMigrator drwxr-xr-x 3 root wheel 96 Feb 7 23:30 MiniTerm.app -rwxr-xr-x 1 root wheel 30528 Jul 16 2019 NVMeAgent -rwxr-xr-x 1 root wheel 21328 Jan 24 01:14 PerfPowerServices -rwxr-xr-x 1 root wheel 26832 Jan 24 01:14 PerfPowerServicesExtended -rwxr-xr-x 1 root wheel 41152 May 3 2019 PlistBuddy -rwxr-xr-x 1 root wheel 65184 Jul 16 2019 ReportMemoryException lrwxr-xr-x 1 root wheel 92 May 4 2019 SafariCloudHistoryPushAgent -> /System/Library/CoreServices/SafariSupport.bundle/Contents/MacOS/SafariCloudHistoryPushAgent lrwxr-xr-x 1 root wheel 90 May 4 2019 SafariHistoryServiceAgent -> /System/Library/CoreServices/SafariSupport.bundle/Contents/MacOS/SafariHistoryServiceAgent lrwxr-xr-x 1 root wheel 82 May 4 2019 SafariLaunchAgent -> /System/Library/CoreServices/SafariSupport.bundle/Contents/MacOS/SafariLaunchAgent lrwxr-xr-x 1 root wheel 88 May 4 2019 SafariNotificationAgent -> /System/Library/CoreServices/SafariSupport.bundle/Contents/MacOS/SafariNotificationAgent lrwxr-xr-x 1 root wheel 91 May 4 2019 SafariPlugInUpdateNotifier -> /System/Library/CoreServices/SafariSupport.bundle/Contents/MacOS/SafariPlugInUpdateNotifier -rwxr-xr-x 1 root wheel 360768 Jul 16 2019 SidecarRelay drwxr-xr-x 3 root wheel 96 Feb 22 2019 SmartCardServices -rwxr-xr-x 1 root wheel 960416 Jul 16 2019 TouchBarServer -rwxr-xr-x 1 root wheel 35920 Jul 16 2019 USBAgent -rwxr-xr-x 1 root wheel 35184 Jan 24 01:14 UserEventAgent -rwxr-xr-x 1 root wheel 279104 Jan 24 01:14 WiFiVelocityAgent -rwxr-xr-x 1 root wheel 24992 Jul 16 2019 adprivacyd -rwxr-xr-x 1 root wheel 413408 Jan 24 01:14 adservicesd -rwxr-xr-x 1 root wheel 1485600 Jan 24 01:14 airportd -rwxr-xr-x 1 root wheel 51168 Jan 24 01:14 amfid -rwxr-xr-x 1 root wheel 35520 Jul 16 2019 amsdstat drwxr-xr-x 114 root wheel 3648 Feb 7 23:29 apache2 -rwxr-xr-x 1 root wheel 117968 Jan 24 01:14 apfsd -rwxr-xr-x 1 root wheel 260544 Jul 16 2019 applessdstatistics -rwxr-xr-x 1 root wheel 337744 Jul 16 2019 assertiond -rwxr-xr-x 1 root wheel 82208 Jan 24 01:14 atomicupdatetool -rwxr-xr-x 1 root wheel 57536 Jan 24 01:14 atrun -rwxr-xr-x 1 root wheel 29136 Jul 16 2019 attach_automation_image -r-sr-xr-x 1 root wheel 23472 Jan 24 01:14 authopen -rwxr-xr-x 1 root wheel 19872 Jan 24 01:14 autofsd -rwxr-xr-x 1 root wheel 51856 Jul 16 2019 automation_trampoline -rwxr-xr-x 1 root wheel 129632 Jan 24 01:14 automountd -rwxr-xr-x 1 root wheel 55136 Jan 24 01:14 avconferenced -rwxr-xr-x 1 root wheel 498560 May 3 2019 awacsd -rwxr-xr-x 1 root wheel 47312 May 3 2019 biokitaggdd -rwxr-xr-x 1 root wheel 676224 Jan 24 01:14 biometrickitd -rwxr-xr-x 1 root wheel 53744 Jul 16 2019 bootinstalld -rwxr-xr-x 1 root wheel 182816 May 3 2019 bootpd -rwxr-xr-x 1 root wheel 31584 Jan 24 01:14 bspowerassertiontool -rwxr-xr-x 1 root wheel 58544 Jul 16 2019 captiveagent -rwxr-xr-x 1 root wheel 19360 Jul 16 2019 cc_fips_test -rwxr-xr-x 1 root wheel 2931 Feb 22 2019 checkLocalKDC -rwxr-xr-x 1 root wheel 57344 Jan 24 01:14 chkpasswd -rwxr-xr-x 1 root wheel 771600 Jan 24 01:14 cloudconfigurationd -rwxr-xr-x 1 root wheel 111856 Jan 24 01:14 colorsync.displayservices -rwxr-xr-x 1 root wheel 74864 Jan 24 01:14 colorsyncd -rwxr-xr-x 1 root wheel 24240 May 3 2019 comsat -rwxr-xr-x 1 root wheel 472512 Jan 24 01:14 configd -rwxr-xr-x 1 root wheel 3788 Feb 22 2019 configureLocalKDC -rwxr-xr-x 1 root wheel 27488 Jan 24 01:14 corebrightnessd -rwxr-xr-x 1 root wheel 19312 Jan 24 01:14 corecaptured -rwxr-xr-x 1 root wheel 174432 Jul 16 2019 coreduetd -rwxr-xr-x 1 root wheel 67408 Jul 16 2019 corestoraged -rwxr-xr-x 1 root wheel 34736 May 3 2019 corestoragehelperd -rwxr-xr-x 1 root wheel 34000 Jul 16 2019 create_automation_image_overlay drwxr-xr-x 10 root wheel 320 May 3 2019 cups -rwxr-xr-x 1 root wheel 25520 May 3 2019 dasd -rwxr-xr-x 1 root wheel 46688 May 3 2019 defragx -rwxr-xr-x 1 root wheel 60624 Jan 24 01:14 diagnosticd -rwxr-xr-x 1 root wheel 39376 Jan 24 01:14 dirhelper -rwxr-xr-x 1 root wheel 303808 May 3 2019 diskarbitrationd -rwxr-xr-x 1 root wheel 2138528 Jan 24 01:14 diskmanagementd -rwxr-xr-x 1 root wheel 29088 Jan 24 01:14 diskmanagementstartup -rwxr-xr-x 1 root wheel 288416 Jan 24 01:14 displaypolicyd -rwxr-xr-x 1 root wheel 829168 May 3 2019 dmd -rwxr-xr-x 1 root wheel 33552 Jan 24 01:14 dp2hdmiupdater -rwxr-xr-x 1 root wheel 86016 May 3 2019 dpaudiothru -rwxr-xr-x 1 root wheel 65664 May 3 2019 dpd -rwxr-xr-x 1 root wheel 18656 Jul 16 2019 dprivacyd -rwxr-xr-x 1 root wheel 449600 May 3 2019 dspluginhelperd drwxr-xr-x 8 root wheel 256 May 3 2019 dtrace -r-xr-xr-x 1 root wheel 24272 May 3 2019 dumpemacs -rwxr-xr-x 1 root wheel 35680 May 3 2019 efiupdater drwxr-xr-x 3 root wheel 96 Feb 22 2019 emacs -rwxr-xr-x 1 root wheel 5802 Feb 22 2019 emlog.pl -rwxr-xr-x 1 root wheel 57216 Jan 24 01:14 eoshostd drwxr-xr-x 3 root wheel 96 Feb 22 2019 fax drwxr-xr-x 7 root wheel 224 Feb 7 23:29 feedback -rwxr-xr-x 1 root wheel 28912 May 3 2019 femail -rwxr-xr-x 1 root wheel 74144 Jan 24 01:14 findmydevice-user-agent -rwxr-xr-x 1 root wheel 783648 Jan 24 01:14 findmydeviced drwxr-xr-x 4 root wheel 128 May 3 2019 firmwarecheckers -rwxr-xr-x 1 root wheel 47440 Jan 24 01:14 firmwaresyncd -rwxr-xr-x 1 root wheel 531296 May 3 2019 fmfd -r-xr-xr-x 1 root wheel 45168 May 3 2019 ftp-proxy -rwxr-xr-x 1 root wheel 78576 May 3 2019 gamecontrollerd -rwxr-xr-x 1 root wheel 18816 May 3 2019 getPPDVersion -rwxr-xr-x 1 root wheel 74496 Jan 24 01:14 getty -rwxr-xr-x 1 root wheel 356 Apr 14 2019 gkreport -rwxr-xr-x 1 root wheel 19744 Jan 24 01:14 hidd -rwxr-xr-x 1 root wheel 18096 May 3 2019 ifcstart -rwxr-xr-x 1 root wheel 32992 May 3 2019 installer-core -rwxr-xr-x 1 root wheel 32512 Jul 16 2019 ioupsd -rwxr-xr-x 1 root wheel 62656 May 3 2019 ippusbd lrwxr-xr-x 1 root wheel 79 May 4 2019 java_home -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/java_home -rwxr-xr-x 1 root wheel 50816 Jan 24 01:14 kcproxy -r-xr-xr-x 1 root wheel 24752 Jan 24 01:14 kdumpd -rwxr-xr-x 1 root wheel 447504 Jan 24 01:14 kextd -rwxr-xr-x 1 root wheel 221680 Jan 24 01:14 keybagd -rwxr-xr-x 1 root wheel 21200 Jan 24 01:14 keyboardservicesd -rwxr-xr-x 1 root wheel 61856 Jul 16 2019 knowledge-agent -rwxr-xr-x 1 root wheel 42160 May 3 2019 kuncd -rwxr-xr-x 1 root wheel 53824 May 3 2019 languageassetd -rwxr-xr-x 1 root wheel 17952 May 3 2019 locate.bigram -rwxr-xr-x 1 root wheel 18480 May 3 2019 locate.code -rwxr-xr-x 1 root wheel 2350 Feb 22 2019 locate.concatdb -rwxr-xr-x 1 root wheel 3150 Feb 22 2019 locate.mklocatedb -rwxr-xr-x 1 root wheel 3495 Feb 22 2019 locate.updatedb -rwxr-xr-x 1 root wheel 5342224 Jul 16 2019 locationd -rwxr-xr-x 1 root wheel 198080 Jan 24 01:14 logd -rwxr-xr-x 1 root wheel 24864 Jan 24 01:14 loginitemregisterd -rwxr-xr-x 1 root wheel 67472 Jan 24 01:14 logkextloadsd -rwxr-xr-x 1 root wheel 19296 Jul 16 2019 lsd -rwxr-xr-x 1 root wheel 28976 Jan 24 01:14 makewhatis -rwxr-xr-x 1 root wheel 2446 Feb 22 2019 makewhatis.local -rwxr-xr-x 1 root wheel 79856 Jan 24 01:14 mcxalr -rwxr-xr-x 1 root wheel 914480 Jan 24 01:14 mdmclient -rwxr-xr-x 1 root wheel 1135 Feb 22 2019 migrateLocalKDC -rwxr-xr-x 1 root wheel 274128 Jan 24 01:14 mobileactivationd -rwxr-xr-x 1 root wheel 487504 Jul 16 2019 mobileassetd -rwxr-xr-x 1 root wheel 19584 Jan 24 01:14 mount_url -rwxr-xr-x 1 root wheel 34432 Jan 24 01:14 msutil -rwxr-xr-x 1 root wheel 30128 Jan 24 01:14 multiversed -r-xr-xr-x 1 root wheel 47712 May 3 2019 natpmpd -rwxr-xr-x 1 root wheel 185024 May 3 2019 neagent -rwxr-xr-x 1 root wheel 266608 May 3 2019 nehelper -rwxr-xr-x 1 root wheel 688640 May 3 2019 nesessionmanager -rwxr-xr-x 1 root wheel 37232 May 3 2019 netbootdisk -rwxr-xr-x 1 root wheel 160064 Jul 16 2019 networkserviceproxy -rwxr-xr-x 1 root wheel 1378400 Jan 24 01:14 nfcd -rwxr-xr-x 1 root wheel 30048 Jan 24 01:14 nfrestore_service -rwxr-xr-x 1 root wheel 65520 May 3 2019 nlcd -rwxr-xr-x 1 root wheel 831552 Jan 24 01:14 nsurlsessiond -rwxr-xr-x 1 root wheel 233264 Jan 24 01:14 nsurlstoraged -r-xr-xr-x 1 root wheel 28752 May 3 2019 ntalkd -rwxr-xr-x 1 root wheel 24656 Jan 24 01:14 od_user_homes -rwxr-xr-x 1 root wheel 44944 May 3 2019 odproxyd -rwxr-xr-x 1 root wheel 725072 Jan 24 01:14 opendirectoryd -rwxr-xr-x 1 root wheel 18320 May 3 2019 osaapplet -rwxr-xr-x 1 root wheel 47584 Jan 24 01:14 otherbsd -rwxr-xr-x 1 root wheel 18992 May 3 2019 path_helper -rwxr-xr-x 1 root wheel 43648 Jan 24 01:14 pboard -rwxr-xr-x 1 root wheel 144192 Jan 24 01:14 pcsstatus -rwxr-xr-x 1 root wheel 19232 Jan 24 01:14 periodic-wrapper -rwxr-xr-x 1 root wheel 67264 May 3 2019 pfd -rwxr-xr-x 1 root wheel 225696 Jan 24 01:14 pkd -rwxr-xr-x 1 root wheel 24416 Jan 24 01:14 pkreporter drwxr-xr-x 44 root wheel 1408 Feb 7 23:29 postfix -rwxr-xr-x 1 root wheel 209152 Jan 24 01:14 productutil -rwxr-xr-x 1 root wheel 563568 Jul 16 2019 rapportd -rwxr-xr-x 1 root wheel 44960 Jan 24 01:14 remotectl -rwxr-xr-x 1 root wheel 19120 Jul 16 2019 rootless-init -rwxr-xr-x 1 root wheel 28000 May 3 2019 routined -r-xr-xr-x 1 root wheel 30240 May 3 2019 rpc.rquotad -rwxr-xr-x 1 root wheel 93536 Jul 16 2019 rpcsvchost -rwxr-xr-x 1 root wheel 252672 Jul 16 2019 rtcreportingd -rwxr-xr-x 1 root wheel 240912 Jan 24 01:14 sandboxd -rwxr-xr-x 1 root wheel 20000 May 3 2019 scsid -rwxr-xr-x 1 root wheel 25536 May 3 2019 sdfwupdater -rwxr-xr-x 1 root wheel 2643408 Jan 24 01:14 secd -rwxr-xr-x 1 root wheel 66304 Jul 16 2019 secinitd -rwxr-xr-x 1 root wheel 1635 Apr 14 2019 security-checksystem -rwxr-xr-x 1 root wheel 48448 Jan 24 01:14 security-sysdiagnose -rws--x--x 1 root wheel 19120 Jan 24 01:14 security_authtrampoline -rwxr-xr-x 1 root wheel 90656 Jan 24 01:14 securityd_service -rwxr-xr-x 1 root wheel 104016 Jan 24 01:14 securityuploadd -rwxr-xr-x 1 root wheel 284160 Jan 24 01:14 seld -rwxr-xr-x 1 root wheel 85392 May 3 2019 sftp-server -rwxr-xr-x 1 root wheel 3914160 Jan 24 01:14 sharingd -rwxr-xr-x 1 root wheel 199552 Jul 16 2019 signpost_reporter -rwxr-xr-x 1 root wheel 65904 May 3 2019 silhouette -rwxr-xr-x 1 root wheel 151824 May 3 2019 siriknowledged -rwxr-xr-x 1 root wheel 1839792 May 3 2019 slapconfig-keygen -rwxr-xr-x 1 root wheel 3026336 Jan 24 01:14 slapd -rwxr-xr-x 1 root wheel 55440 Jul 16 2019 smb-migrate-preferences -rwxr-xr-x 1 root wheel 78288 Jul 16 2019 smb-sync-preferences -rwxr-xr-x 1 root wheel 45600 May 3 2019 smcDiagnose -rwxr-xr-x 1 root wheel 40736 May 3 2019 smcupdater -rwxr-xr-x 1 root wheel 54192 Jan 24 01:14 smd -rwxr-xr-x 1 root wheel 37248 May 3 2019 snmpd -rwxr-xr-x 1 root wheel 44464 Jul 16 2019 spindump_agent -rwxr-xr-x 1 root wheel 25360 May 3 2019 ssdupdater -rwx--x--x 1 root wheel 1859600 May 3 2019 ssh-keysign -rwxr-xr-x 1 root wheel 1763024 May 3 2019 ssh-pkcs11-helper -rwxr-xr-x 1 root wheel 18592 May 3 2019 sshd-keygen-wrapper -rwxr-xr-x 1 root wheel 39792 Jul 16 2019 startupdiskhelper -rwxr-xr-x 1 root wheel 943648 Jul 16 2019 studentd -rwxr-xr-x 1 root wheel 116000 Jan 24 01:14 swcd -rwxr-xr-x 1 root wheel 25840 Jul 16 2019 symptomsd -rwxr-xr-x 1 root wheel 71696 Jan 24 01:14 sysdiagnose_helper -rwxr-xr-x 1 root wheel 58976 Jan 24 01:14 sysmond -rwxr-xr-x 1 root wheel 335424 Jan 24 01:14 syspolicyd -rwxr-xr-x 1 root wheel 17856 Jan 24 01:14 systemstats_boot -rwxr-xr-x 1 root wheel 57376 Jul 16 2019 tailspind -rwxr-xr-x 1 root wheel 71696 Jan 24 01:14 taskgated -rwxr-xr-x 1 root wheel 42688 Jan 24 01:14 taskgated-helper -rwxr-xr-x 1 root wheel 363312 May 3 2019 testmanagerd -r-xr-xr-x 1 root wheel 29808 May 3 2019 tftpd -rwxr-xr-x 1 root wheel 75680 Jan 24 01:14 thermald -rwxr-xr-x 1 root wheel 326960 May 3 2019 timed -rwxr-xr-x 1 root wheel 480064 Jan 24 01:14 trustd -rwxr-xr-x 1 root wheel 172752 Jul 16 2019 tzd -rwxr-xr-x 1 root wheel 101968 Jul 16 2019 tzinit -rwxr-xr-x 1 root wheel 49024 May 3 2019 tzlinkd -rwxr-xr-x 1 root wheel 27360 Jan 24 01:14 ucupdate -r-xr-xr-x 1 root wheel 565984 Jan 24 01:14 unbound -rwxr-xr-x 1 root wheel 20208 May 3 2019 undoServerAppDNSPrefs -rwxr-xr-x 1 root wheel 465 Feb 25 2019 upsshutdown -rwxr-xr-x 1 root wheel 62752 May 3 2019 usbcupdater -rwxr-xr-x 1 root wheel 53440 Jul 16 2019 usbd -rwxr-xr-x 1 root wheel 33600 Jan 24 01:14 vbiosupdater -rwxr-xr-x 1 root wheel 19440 Jul 16 2019 videosubscriptionsd -r-xr-xr-x 1 root wheel 18192 May 3 2019 vndevice -rwxr-xr-x 1 root wheel 204960 May 3 2019 warmd -rwxr-xr-x 1 root wheel 36592 May 3 2019 warmd_agent -rwxr-xr-x 1 root wheel 46384 Jan 24 01:14 watchdogd lrwxr-xr-x 1 root wheel 78 May 4 2019 webinspectord -> /System/Library/CoreServices/SafariSupport.bundle/Contents/MacOS/webinspectord drwxr-xr-x 5 root wheel 160 May 3 2019 wfs -rwxr-xr-x 1 root wheel 54624 Jan 24 01:14 wifiFirmwareLoader -rwxr-xr-x 1 root wheel 398640 Jul 16 2019 wifid -rwxr-xr-x 1 root wheel 953136 Jan 24 01:14 wifivelocityd -r-xr-xr-x 1 root wheel 319184 Jan 24 01:14 wps -rwxr-xr-x 1 root wheel 47568 May 3 2019 x11-select -rwxr-xr-x 1 root wheel 40320 Jan 24 01:14 xartstorageremoted -rwxr-xr-x 1 root wheel 42688 Jan 24 01:14 xpchelper -rwxr-xr-x 1 root wheel 43968 Jan 24 01:14 xpcproxy -rwxr-xr-x 1 root wheel 36976 Jan 24 01:14 xpcroleaccountd -rwxr-xr-x 1 root wheel 74624 May 3 2019 xscertd -rwxr-xr-x 1 root wheel 104224 May 3 2019 xscertd-helper -rwxr-xr-x 1 root wheel 23536 May 3 2019 xssendevent /usr/libexec/AppSandbox: total 80 drwxr-xr-x 5 root wheel 160 Jul 23 2019 . drwxr-xr-x 249 root wheel 7968 Feb 7 23:29 .. -rwxr-xr-x 1 root wheel 45520 Jul 16 2019 ContainerRepairAgent -rwxr-xr-x 1 root wheel 46176 Jul 16 2019 app_sandbox_cache_builder -rwxr-xr-x 1 root wheel 8799 Feb 22 2019 container_check.rb /usr/libexec/ApplicationFirewall: total 144 drwxr-xr-x 7 root wheel 224 Feb 7 23:29 . drwxr-xr-x 249 root wheel 7968 Feb 7 23:29 .. -rwxr-xr-x 1 root wheel 19328 Jan 24 01:13 Firewall -rwxr-xr-x 1 root wheel 18864 Jan 24 01:14 appfwloggerd -rw-r--r-- 1 root wheel 3951 Apr 25 2019 com.apple.alf.plist -rwxr-xr-x 1 root wheel 104496 Jan 24 01:13 socketfilterfw -rwxr-xr-x 1 root wheel 24816 Jan 24 01:13 socketfilterhelper /usr/libexec/AssetCache: total 2088 drwxr-xr-x 4 root wheel 128 Jul 23 2019 . drwxr-xr-x 249 root wheel 7968 Feb 7 23:29 .. -rwxr-xr-x 1 root wheel 1979824 Jul 16 2019 AssetCache drwxr-xr-x 10 root wheel 320 Mar 25 2019 AssetCache.momd /usr/libexec/AssetCache/AssetCache.momd: total 32 drwxr-xr-x 10 root wheel 320 Mar 25 2019 . drwxr-xr-x 4 root wheel 128 Jul 23 2019 .. -rw-r--r-- 1 root wheel 1854 Mar 25 2019 AssetCache-v2.mom -rw-r--r-- 1 root wheel 1937 Mar 25 2019 AssetCache-v3.mom -rw-r--r-- 1 root wheel 2093 Mar 25 2019 AssetCache-v4.mom -rw-r--r-- 1 root wheel 2876 Mar 25 2019 AssetCache-v5.mom -rw-r--r-- 1 root wheel 8060 Mar 25 2019 AssetCache-v6.mom -rw-r--r-- 1 root wheel 16024 Mar 25 2019 AssetCache-v6.omo -rw-r--r-- 1 root wheel 1678 Mar 25 2019 AssetCache.mom -rw-r--r-- 1 root wheel 651 Mar 25 2019 VersionInfo.plist /usr/libexec/AssetCacheAgent: total 32 drwxr-xr-x 42 root wheel 1344 Jul 23 2019 . drwxr-xr-x 249 root wheel 7968 Feb 7 23:29 .. -rwxr-xr-x 1 root wheel 43648 Jul 16 2019 AssetCacheAgent drwxr-xr-x 3 root wheel 96 Mar 25 2019 ar.lproj drwxr-xr-x 3 root wheel 96 Mar 25 2019 ca.lproj drwxr-xr-x 3 root wheel 96 Mar 25 2019 cs.lproj drwxr-xr-x 3 root wheel 96 Mar 25 2019 da.lproj drwxr-xr-x 3 root wheel 96 Mar 25 2019 de.lproj drwxr-xr-x 3 root wheel 96 Mar 25 2019 el.lproj drwxr-xr-x 3 root wheel 96 Mar 25 2019 en.lproj drwxr-xr-x 3 root wheel 96 Mar 25 2019 en_AU.lproj drwxr-xr-x 3 root wheel 96 Mar 25 2019 en_GB.lproj drwxr-xr-x 3 root wheel 96 Mar 25 2019 es.lproj drwxr-xr-x 3 root wheel 96 Mar 25 2019 es_419.lproj drwxr-xr-x 3 root wheel 96 Mar 25 2019 fi.lproj drwxr-xr-x 3 root wheel 96 Mar 25 2019 fr.lproj drwxr-xr-x 3 root wheel 96 Mar 25 2019 fr_CA.lproj drwxr-xr-x 3 root wheel 96 Mar 25 2019 he.lproj drwxr-xr-x 3 root wheel 96 Mar 25 2019 hi.lproj drwxr-xr-x 3 root wheel 96 Mar 25 2019 hr.lproj drwxr-xr-x 3 root wheel 96 Mar 25 2019 hu.lproj drwxr-xr-x 3 root wheel 96 Mar 25 2019 id.lproj drwxr-xr-x 3 root wheel 96 Mar 25 2019 it.lproj drwxr-xr-x 3 root wheel 96 Mar 25 2019 ja.lproj drwxr-xr-x 3 root wheel 96 Mar 25 2019 ko.lproj drwxr-xr-x 3 root wheel 96 Mar 25 2019 ms.lproj drwxr-xr-x 3 root wheel 96 Mar 25 2019 nl.lproj drwxr-xr-x 3 root wheel 96 Mar 25 2019 no.lproj drwxr-xr-x 3 root wheel 96 Mar 25 2019 pl.lproj drwxr-xr-x 3 root wheel 96 Mar 25 2019 pt.lproj drwxr-xr-x 3 root wheel 96 Mar 25 2019 pt_PT.lproj drwxr-xr-x 3 root wheel 96 Mar 25 2019 ro.lproj drwxr-xr-x 3 root wheel 96 Mar 25 2019 ru.lproj drwxr-xr-x 3 root wheel 96 Mar 25 2019 sk.lproj drwxr-xr-x 3 root wheel 96 Mar 25 2019 sv.lproj drwxr-xr-x 3 root wheel 96 Mar 25 2019 th.lproj drwxr-xr-x 3 root wheel 96 Mar 25 2019 tr.lproj drwxr-xr-x 3 root wheel 96 Mar 25 2019 uk.lproj drwxr-xr-x 3 root wheel 96 Mar 25 2019 vi.lproj drwxr-xr-x 3 root wheel 96 Mar 25 2019 zh_CN.lproj drwxr-xr-x 3 root wheel 96 Mar 25 2019 zh_HK.lproj drwxr-xr-x 3 root wheel 96 Mar 25 2019 zh_TW.lproj /usr/libexec/AssetCacheAgent/ar.lproj: total 0 drwxr-xr-x 3 root wheel 96 Mar 25 2019 . drwxr-xr-x 42 root wheel 1344 Jul 23 2019 .. -rw-r--r-- 1 root wheel 117 Mar 25 2019 Localizable.strings /usr/libexec/AssetCacheAgent/ca.lproj: total 0 drwxr-xr-x 3 root wheel 96 Mar 25 2019 . drwxr-xr-x 42 root wheel 1344 Jul 23 2019 .. -rw-r--r-- 1 root wheel 112 Mar 25 2019 Localizable.strings /usr/libexec/AssetCacheAgent/cs.lproj: total 0 drwxr-xr-x 3 root wheel 96 Mar 25 2019 . drwxr-xr-x 42 root wheel 1344 Jul 23 2019 .. -rw-r--r-- 1 root wheel 121 Mar 25 2019 Localizable.strings /usr/libexec/AssetCacheAgent/da.lproj: total 0 drwxr-xr-x 3 root wheel 96 Mar 25 2019 . drwxr-xr-x 42 root wheel 1344 Jul 23 2019 .. -rw-r--r-- 1 root wheel 111 Mar 25 2019 Localizable.strings /usr/libexec/AssetCacheAgent/de.lproj: total 0 drwxr-xr-x 3 root wheel 96 Mar 25 2019 . drwxr-xr-x 42 root wheel 1344 Jul 23 2019 .. -rw-r--r-- 1 root wheel 124 Mar 25 2019 Localizable.strings /usr/libexec/AssetCacheAgent/el.lproj: total 0 drwxr-xr-x 3 root wheel 96 Mar 25 2019 . drwxr-xr-x 42 root wheel 1344 Jul 23 2019 .. -rw-r--r-- 1 root wheel 133 Mar 25 2019 Localizable.strings /usr/libexec/AssetCacheAgent/en.lproj: total 0 drwxr-xr-x 3 root wheel 96 Mar 25 2019 . drwxr-xr-x 42 root wheel 1344 Jul 23 2019 .. -rw-r--r-- 1 root wheel 108 Mar 25 2019 Localizable.strings /usr/libexec/AssetCacheAgent/en_AU.lproj: total 0 drwxr-xr-x 3 root wheel 96 Mar 25 2019 . drwxr-xr-x 42 root wheel 1344 Jul 23 2019 .. -rw-r--r-- 1 root wheel 108 Mar 25 2019 Localizable.strings /usr/libexec/AssetCacheAgent/en_GB.lproj: total 0 drwxr-xr-x 3 root wheel 96 Mar 25 2019 . drwxr-xr-x 42 root wheel 1344 Jul 23 2019 .. -rw-r--r-- 1 root wheel 108 Mar 25 2019 Localizable.strings /usr/libexec/AssetCacheAgent/es.lproj: total 0 drwxr-xr-x 3 root wheel 96 Mar 25 2019 . drwxr-xr-x 42 root wheel 1344 Jul 23 2019 .. -rw-r--r-- 1 root wheel 112 Mar 25 2019 Localizable.strings /usr/libexec/AssetCacheAgent/es_419.lproj: total 0 drwxr-xr-x 3 root wheel 96 Mar 25 2019 . drwxr-xr-x 42 root wheel 1344 Jul 23 2019 .. -rw-r--r-- 1 root wheel 114 Mar 25 2019 Localizable.strings /usr/libexec/AssetCacheAgent/fi.lproj: total 0 drwxr-xr-x 3 root wheel 96 Mar 25 2019 . drwxr-xr-x 42 root wheel 1344 Jul 23 2019 .. -rw-r--r-- 1 root wheel 110 Mar 25 2019 Localizable.strings /usr/libexec/AssetCacheAgent/fr.lproj: total 0 drwxr-xr-x 3 root wheel 96 Mar 25 2019 . drwxr-xr-x 42 root wheel 1344 Jul 23 2019 .. -rw-r--r-- 1 root wheel 113 Mar 25 2019 Localizable.strings /usr/libexec/AssetCacheAgent/fr_CA.lproj: total 0 drwxr-xr-x 3 root wheel 96 Mar 25 2019 . drwxr-xr-x 42 root wheel 1344 Jul 23 2019 .. -rw-r--r-- 1 root wheel 113 Mar 25 2019 Localizable.strings /usr/libexec/AssetCacheAgent/he.lproj: total 0 drwxr-xr-x 3 root wheel 96 Mar 25 2019 . drwxr-xr-x 42 root wheel 1344 Jul 23 2019 .. -rw-r--r-- 1 root wheel 111 Mar 25 2019 Localizable.strings /usr/libexec/AssetCacheAgent/hi.lproj: total 0 drwxr-xr-x 3 root wheel 96 Mar 25 2019 . drwxr-xr-x 42 root wheel 1344 Jul 23 2019 .. -rw-r--r-- 1 root wheel 139 Mar 25 2019 Localizable.strings /usr/libexec/AssetCacheAgent/hr.lproj: total 0 drwxr-xr-x 3 root wheel 96 Mar 25 2019 . drwxr-xr-x 42 root wheel 1344 Jul 23 2019 .. -rw-r--r-- 1 root wheel 115 Mar 25 2019 Localizable.strings /usr/libexec/AssetCacheAgent/hu.lproj: total 0 drwxr-xr-x 3 root wheel 96 Mar 25 2019 . drwxr-xr-x 42 root wheel 1344 Jul 23 2019 .. -rw-r--r-- 1 root wheel 125 Mar 25 2019 Localizable.strings /usr/libexec/AssetCacheAgent/id.lproj: total 0 drwxr-xr-x 3 root wheel 96 Mar 25 2019 . drwxr-xr-x 42 root wheel 1344 Jul 23 2019 .. -rw-r--r-- 1 root wheel 108 Mar 25 2019 Localizable.strings /usr/libexec/AssetCacheAgent/it.lproj: total 0 drwxr-xr-x 3 root wheel 96 Mar 25 2019 . drwxr-xr-x 42 root wheel 1344 Jul 23 2019 .. -rw-r--r-- 1 root wheel 111 Mar 25 2019 Localizable.strings /usr/libexec/AssetCacheAgent/ja.lproj: total 0 drwxr-xr-x 3 root wheel 96 Mar 25 2019 . drwxr-xr-x 42 root wheel 1344 Jul 23 2019 .. -rw-r--r-- 1 root wheel 107 Mar 25 2019 Localizable.strings /usr/libexec/AssetCacheAgent/ko.lproj: total 0 drwxr-xr-x 3 root wheel 96 Mar 25 2019 . drwxr-xr-x 42 root wheel 1344 Jul 23 2019 .. -rw-r--r-- 1 root wheel 105 Mar 25 2019 Localizable.strings /usr/libexec/AssetCacheAgent/ms.lproj: total 0 drwxr-xr-x 3 root wheel 96 Mar 25 2019 . drwxr-xr-x 42 root wheel 1344 Jul 23 2019 .. -rw-r--r-- 1 root wheel 109 Mar 25 2019 Localizable.strings /usr/libexec/AssetCacheAgent/nl.lproj: total 0 drwxr-xr-x 3 root wheel 96 Mar 25 2019 . drwxr-xr-x 42 root wheel 1344 Jul 23 2019 .. -rw-r--r-- 1 root wheel 108 Mar 25 2019 Localizable.strings /usr/libexec/AssetCacheAgent/no.lproj: total 0 drwxr-xr-x 3 root wheel 96 Mar 25 2019 . drwxr-xr-x 42 root wheel 1344 Jul 23 2019 .. -rw-r--r-- 1 root wheel 112 Mar 25 2019 Localizable.strings /usr/libexec/AssetCacheAgent/pl.lproj: total 0 drwxr-xr-x 3 root wheel 96 Mar 25 2019 . drwxr-xr-x 42 root wheel 1344 Jul 23 2019 .. -rw-r--r-- 1 root wheel 122 Mar 25 2019 Localizable.strings /usr/libexec/AssetCacheAgent/pt.lproj: total 0 drwxr-xr-x 3 root wheel 96 Mar 25 2019 . drwxr-xr-x 42 root wheel 1344 Jul 23 2019 .. -rw-r--r-- 1 root wheel 112 Mar 25 2019 Localizable.strings /usr/libexec/AssetCacheAgent/pt_PT.lproj: total 0 drwxr-xr-x 3 root wheel 96 Mar 25 2019 . drwxr-xr-x 42 root wheel 1344 Jul 23 2019 .. -rw-r--r-- 1 root wheel 108 Mar 25 2019 Localizable.strings /usr/libexec/AssetCacheAgent/ro.lproj: total 0 drwxr-xr-x 3 root wheel 96 Mar 25 2019 . drwxr-xr-x 42 root wheel 1344 Jul 23 2019 .. -rw-r--r-- 1 root wheel 133 Mar 25 2019 Localizable.strings /usr/libexec/AssetCacheAgent/ru.lproj: total 0 drwxr-xr-x 3 root wheel 96 Mar 25 2019 . drwxr-xr-x 42 root wheel 1344 Jul 23 2019 .. -rw-r--r-- 1 root wheel 131 Mar 25 2019 Localizable.strings /usr/libexec/AssetCacheAgent/sk.lproj: total 0 drwxr-xr-x 3 root wheel 96 Mar 25 2019 . drwxr-xr-x 42 root wheel 1344 Jul 23 2019 .. -rw-r--r-- 1 root wheel 131 Mar 25 2019 Localizable.strings /usr/libexec/AssetCacheAgent/sv.lproj: total 0 drwxr-xr-x 3 root wheel 96 Mar 25 2019 . drwxr-xr-x 42 root wheel 1344 Jul 23 2019 .. -rw-r--r-- 1 root wheel 114 Mar 25 2019 Localizable.strings /usr/libexec/AssetCacheAgent/th.lproj: total 0 drwxr-xr-x 3 root wheel 96 Mar 25 2019 . drwxr-xr-x 42 root wheel 1344 Jul 23 2019 .. -rw-r--r-- 1 root wheel 115 Mar 25 2019 Localizable.strings /usr/libexec/AssetCacheAgent/tr.lproj: total 0 drwxr-xr-x 3 root wheel 96 Mar 25 2019 . drwxr-xr-x 42 root wheel 1344 Jul 23 2019 .. -rw-r--r-- 1 root wheel 112 Mar 25 2019 Localizable.strings /usr/libexec/AssetCacheAgent/uk.lproj: total 0 drwxr-xr-x 3 root wheel 96 Mar 25 2019 . drwxr-xr-x 42 root wheel 1344 Jul 23 2019 .. -rw-r--r-- 1 root wheel 127 Mar 25 2019 Localizable.strings /usr/libexec/AssetCacheAgent/vi.lproj: total 0 drwxr-xr-x 3 root wheel 96 Mar 25 2019 . drwxr-xr-x 42 root wheel 1344 Jul 23 2019 .. -rw-r--r-- 1 root wheel 119 Mar 25 2019 Localizable.strings /usr/libexec/AssetCacheAgent/zh_CN.lproj: total 0 drwxr-xr-x 3 root wheel 96 Mar 25 2019 . drwxr-xr-x 42 root wheel 1344 Jul 23 2019 .. -rw-r--r-- 1 root wheel 105 Mar 25 2019 Localizable.strings /usr/libexec/AssetCacheAgent/zh_HK.lproj: total 0 drwxr-xr-x 3 root wheel 96 Mar 25 2019 . drwxr-xr-x 42 root wheel 1344 Jul 23 2019 .. -rw-r--r-- 1 root wheel 105 Mar 25 2019 Localizable.strings /usr/libexec/AssetCacheAgent/zh_TW.lproj: total 0 drwxr-xr-x 3 root wheel 96 Mar 25 2019 . drwxr-xr-x 42 root wheel 1344 Jul 23 2019 .. -rw-r--r-- 1 root wheel 105 Mar 25 2019 Localizable.strings /usr/libexec/DeveloperTools: total 128 drwxr-xr-x 3 root wheel 96 Jul 23 2019 . drwxr-xr-x 249 root wheel 7968 Feb 7 23:29 .. -r-xr-xr-x 1 root wheel 149200 Jul 16 2019 codesign_allocate /usr/libexec/MiniTerm.app: total 0 drwxr-xr-x 3 root wheel 96 Feb 7 23:30 . drwxr-xr-x 249 root wheel 7968 Feb 7 23:29 .. drwxr-xr-x 8 root wheel 256 Feb 7 23:29 Contents /usr/libexec/MiniTerm.app/Contents: total 0 drwxr-xr-x 8 root wheel 256 Feb 7 23:29 . drwxr-xr-x 3 root wheel 96 Feb 7 23:30 .. -rw-r--r-- 1 root wheel 1552 Jan 23 07:04 Info.plist drwxr-xr-x 3 root wheel 96 Feb 7 23:29 MacOS -rw-r--r-- 1 root wheel 8 Apr 25 2019 PkgInfo drwxr-xr-x 42 root wheel 1344 May 3 2019 Resources drwxr-xr-x 3 root wheel 96 Feb 7 23:29 _CodeSignature -rw-r--r-- 1 root wheel 498 Jan 23 07:05 version.plist /usr/libexec/MiniTerm.app/Contents/MacOS: total 24 drwxr-xr-x 3 root wheel 96 Feb 7 23:29 . drwxr-xr-x 8 root wheel 256 Feb 7 23:29 .. -rwxr-xr-x 1 root wheel 28048 Jan 24 01:20 MiniTerm /usr/libexec/MiniTerm.app/Contents/Resources: total 0 drwxr-xr-x 42 root wheel 1344 May 3 2019 . drwxr-xr-x 8 root wheel 256 Feb 7 23:29 .. drwxr-xr-x 3 root wheel 96 Apr 25 2019 Base.lproj -rw-r--r-- 1 root wheel 52 Apr 25 2019 MiniTerm.iconheader drwxr-xr-x 3 root wheel 96 Apr 25 2019 ar.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 ca.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 cs.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 da.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 de.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 el.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 en_AU.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 en_GB.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 es.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 es_419.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 fi.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 fr.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 fr_CA.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 he.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 hi.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 hr.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 hu.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 id.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 it.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 ja.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 ko.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 ms.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 nl.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 no.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 pl.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 pt.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 pt_PT.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 ro.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 ru.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 sk.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 sv.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 th.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 tr.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 uk.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 vi.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 zh_CN.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 zh_HK.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 zh_TW.lproj /usr/libexec/MiniTerm.app/Contents/Resources/Base.lproj: total 32 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 42 root wheel 1344 May 3 2019 .. -rw-r--r-- 1 root wheel 21769 Apr 25 2019 MiniTerm.nib /usr/libexec/MiniTerm.app/Contents/Resources/ar.lproj: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 42 root wheel 1344 May 3 2019 .. -rw-r--r-- 1 root wheel 680 Apr 25 2019 MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/ca.lproj: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 42 root wheel 1344 May 3 2019 .. -rw-r--r-- 1 root wheel 640 Apr 25 2019 MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/cs.lproj: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 42 root wheel 1344 May 3 2019 .. -rw-r--r-- 1 root wheel 691 Apr 25 2019 MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/da.lproj: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 42 root wheel 1344 May 3 2019 .. -rw-r--r-- 1 root wheel 618 Apr 25 2019 MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/de.lproj: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 42 root wheel 1344 May 3 2019 .. -rw-r--r-- 1 root wheel 658 Apr 25 2019 MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/el.lproj: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 42 root wheel 1344 May 3 2019 .. -rw-r--r-- 1 root wheel 848 Apr 25 2019 MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/en_AU.lproj: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 42 root wheel 1344 May 3 2019 .. -rw-r--r-- 1 root wheel 562 Apr 25 2019 MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/en_GB.lproj: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 42 root wheel 1344 May 3 2019 .. -rw-r--r-- 1 root wheel 562 Apr 25 2019 MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/es.lproj: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 42 root wheel 1344 May 3 2019 .. -rw-r--r-- 1 root wheel 648 Apr 25 2019 MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/es_419.lproj: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 42 root wheel 1344 May 3 2019 .. -rw-r--r-- 1 root wheel 639 Apr 25 2019 MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/fi.lproj: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 42 root wheel 1344 May 3 2019 .. -rw-r--r-- 1 root wheel 603 Apr 25 2019 MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/fr.lproj: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 42 root wheel 1344 May 3 2019 .. -rw-r--r-- 1 root wheel 720 Apr 25 2019 MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/fr_CA.lproj: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 42 root wheel 1344 May 3 2019 .. -rw-r--r-- 1 root wheel 707 Apr 25 2019 MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/he.lproj: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 42 root wheel 1344 May 3 2019 .. -rw-r--r-- 1 root wheel 638 Apr 25 2019 MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/hi.lproj: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 42 root wheel 1344 May 3 2019 .. -rw-r--r-- 1 root wheel 726 Apr 25 2019 MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/hr.lproj: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 42 root wheel 1344 May 3 2019 .. -rw-r--r-- 1 root wheel 634 Apr 25 2019 MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/hu.lproj: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 42 root wheel 1344 May 3 2019 .. -rw-r--r-- 1 root wheel 794 Apr 25 2019 MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/id.lproj: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 42 root wheel 1344 May 3 2019 .. -rw-r--r-- 1 root wheel 579 Apr 25 2019 MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/it.lproj: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 42 root wheel 1344 May 3 2019 .. -rw-r--r-- 1 root wheel 591 Apr 25 2019 MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/ja.lproj: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 42 root wheel 1344 May 3 2019 .. -rw-r--r-- 1 root wheel 602 Apr 25 2019 MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/ko.lproj: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 42 root wheel 1344 May 3 2019 .. -rw-r--r-- 1 root wheel 572 Apr 25 2019 MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/ms.lproj: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 42 root wheel 1344 May 3 2019 .. -rw-r--r-- 1 root wheel 592 Apr 25 2019 MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/nl.lproj: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 42 root wheel 1344 May 3 2019 .. -rw-r--r-- 1 root wheel 598 Apr 25 2019 MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/no.lproj: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 42 root wheel 1344 May 3 2019 .. -rw-r--r-- 1 root wheel 570 Apr 25 2019 MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/pl.lproj: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 42 root wheel 1344 May 3 2019 .. -rw-r--r-- 1 root wheel 600 Apr 25 2019 MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/pt.lproj: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 42 root wheel 1344 May 3 2019 .. -rw-r--r-- 1 root wheel 642 Apr 25 2019 MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/pt_PT.lproj: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 42 root wheel 1344 May 3 2019 .. -rw-r--r-- 1 root wheel 660 Apr 25 2019 MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/ro.lproj: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 42 root wheel 1344 May 3 2019 .. -rw-r--r-- 1 root wheel 722 Apr 25 2019 MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/ru.lproj: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 42 root wheel 1344 May 3 2019 .. -rw-r--r-- 1 root wheel 758 Apr 25 2019 MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/sk.lproj: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 42 root wheel 1344 May 3 2019 .. -rw-r--r-- 1 root wheel 774 Apr 25 2019 MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/sv.lproj: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 42 root wheel 1344 May 3 2019 .. -rw-r--r-- 1 root wheel 673 Apr 25 2019 MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/th.lproj: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 42 root wheel 1344 May 3 2019 .. -rw-r--r-- 1 root wheel 732 Apr 25 2019 MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/tr.lproj: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 42 root wheel 1344 May 3 2019 .. -rw-r--r-- 1 root wheel 693 Apr 25 2019 MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/uk.lproj: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 42 root wheel 1344 May 3 2019 .. -rw-r--r-- 1 root wheel 756 Apr 25 2019 MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/vi.lproj: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 42 root wheel 1344 May 3 2019 .. -rw-r--r-- 1 root wheel 716 Apr 25 2019 MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/zh_CN.lproj: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 42 root wheel 1344 May 3 2019 .. -rw-r--r-- 1 root wheel 532 Apr 25 2019 MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/zh_HK.lproj: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 42 root wheel 1344 May 3 2019 .. -rw-r--r-- 1 root wheel 542 Apr 25 2019 MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/Resources/zh_TW.lproj: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 42 root wheel 1344 May 3 2019 .. -rw-r--r-- 1 root wheel 542 Apr 25 2019 MiniTerm.strings /usr/libexec/MiniTerm.app/Contents/_CodeSignature: total 16 drwxr-xr-x 3 root wheel 96 Feb 7 23:29 . drwxr-xr-x 8 root wheel 256 Feb 7 23:29 .. -rw-r--r-- 1 root wheel 16844 Jan 24 01:20 CodeResources /usr/libexec/SmartCardServices: total 0 drwxr-xr-x 3 root wheel 96 Feb 22 2019 . drwxr-xr-x 249 root wheel 7968 Feb 7 23:29 .. drwxr-xr-x 3 root wheel 96 Feb 22 2019 drivers /usr/libexec/SmartCardServices/drivers: total 0 drwxr-xr-x 3 root wheel 96 Feb 22 2019 . drwxr-xr-x 3 root wheel 96 Feb 22 2019 .. drwxr-xr-x 3 root wheel 96 Feb 22 2019 ifd-ccid.bundle /usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle: total 0 drwxr-xr-x 3 root wheel 96 Feb 22 2019 . drwxr-xr-x 3 root wheel 96 Feb 22 2019 .. drwxr-xr-x 5 root wheel 160 Feb 22 2019 Contents /usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle/Contents: total 24 drwxr-xr-x 5 root wheel 160 Feb 22 2019 . drwxr-xr-x 3 root wheel 96 Feb 22 2019 .. -rw-r--r-- 1 root wheel 41962 Feb 22 2019 Info.plist drwxr-xr-x 3 root wheel 96 Feb 22 2019 MacOS -rw-r--r-- 1 root wheel 529 Feb 22 2019 version.plist /usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle/Contents/MacOS: total 152 drwxr-xr-x 3 root wheel 96 Feb 22 2019 . drwxr-xr-x 5 root wheel 160 Feb 22 2019 .. -rwxr-xr-x 1 root wheel 142416 Feb 22 2019 libccid.dylib /usr/libexec/apache2: total 13664 drwxr-xr-x 114 root wheel 3648 Feb 7 23:29 . drwxr-xr-x 249 root wheel 7968 Feb 7 23:29 .. -rw-r--r-- 1 root wheel 15703 Feb 22 2019 httpd.exp -rwxr-xr-x 1 root wheel 13507664 Jan 24 01:13 libphp7.so -rwxr-xr-x 1 root wheel 23312 May 3 2019 mod_access_compat.so -rwxr-xr-x 1 root wheel 23072 May 3 2019 mod_actions.so -rwxr-xr-x 1 root wheel 32768 May 3 2019 mod_alias.so -rwxr-xr-x 1 root wheel 18384 May 3 2019 mod_allowmethods.so -rwxr-xr-x 1 root wheel 22784 May 3 2019 mod_asis.so -rwxr-xr-x 1 root wheel 28000 May 3 2019 mod_auth_basic.so -rwxr-xr-x 1 root wheel 57712 May 3 2019 mod_auth_digest.so -rwxr-xr-x 1 root wheel 46832 May 3 2019 mod_auth_form.so -rwxr-xr-x 1 root wheel 18464 May 3 2019 mod_authn_anon.so -rwxr-xr-x 1 root wheel 24064 May 3 2019 mod_authn_core.so -rwxr-xr-x 1 root wheel 23728 May 3 2019 mod_authn_dbd.so -rwxr-xr-x 1 root wheel 19040 May 3 2019 mod_authn_dbm.so -rwxr-xr-x 1 root wheel 23088 May 3 2019 mod_authn_file.so -rwxr-xr-x 1 root wheel 33632 May 3 2019 mod_authn_socache.so -rwxr-xr-x 1 root wheel 106224 May 3 2019 mod_authnz_ldap.so -r-xr-xr-x 1 root wheel 25120 May 3 2019 mod_authnz_od_apple.so -rwxr-xr-x 1 root wheel 38432 May 3 2019 mod_authz_core.so -rwxr-xr-x 1 root wheel 28480 May 3 2019 mod_authz_dbd.so -rwxr-xr-x 1 root wheel 23632 May 3 2019 mod_authz_dbm.so -rwxr-xr-x 1 root wheel 24112 May 3 2019 mod_authz_groupfile.so -rwxr-xr-x 1 root wheel 24064 May 3 2019 mod_authz_host.so -rwxr-xr-x 1 root wheel 22656 May 3 2019 mod_authz_owner.so -rwxr-xr-x 1 root wheel 22704 May 3 2019 mod_authz_user.so -rwxr-xr-x 1 root wheel 56960 May 3 2019 mod_autoindex.so -rwxr-xr-x 1 root wheel 23312 May 3 2019 mod_buffer.so -rwxr-xr-x 1 root wheel 128592 May 3 2019 mod_cache.so -rwxr-xr-x 1 root wheel 64032 May 3 2019 mod_cache_disk.so -rwxr-xr-x 1 root wheel 63984 May 3 2019 mod_cache_socache.so -rwxr-xr-x 1 root wheel 45568 May 3 2019 mod_cgi.so -rwxr-xr-x 1 root wheel 45488 May 3 2019 mod_charset_lite.so -rwxr-xr-x 1 root wheel 23616 May 3 2019 mod_data.so -rwxr-xr-x 1 root wheel 130256 May 3 2019 mod_dav.so -rwxr-xr-x 1 root wheel 70352 May 3 2019 mod_dav_fs.so -rwxr-xr-x 1 root wheel 33424 May 3 2019 mod_dav_lock.so -rwxr-xr-x 1 root wheel 34304 May 3 2019 mod_dbd.so -rwxr-xr-x 1 root wheel 63632 May 3 2019 mod_deflate.so -rwxr-xr-x 1 root wheel 24032 May 3 2019 mod_dialup.so -rwxr-xr-x 1 root wheel 23760 May 3 2019 mod_dir.so -rwxr-xr-x 1 root wheel 27152 May 3 2019 mod_dumpio.so -rwxr-xr-x 1 root wheel 23456 May 3 2019 mod_echo.so -rwxr-xr-x 1 root wheel 18928 May 3 2019 mod_env.so -rwxr-xr-x 1 root wheel 23968 May 3 2019 mod_expires.so -rwxr-xr-x 1 root wheel 43840 May 3 2019 mod_ext_filter.so -rwxr-xr-x 1 root wheel 24624 May 3 2019 mod_file_cache.so -rwxr-xr-x 1 root wheel 36688 May 3 2019 mod_filter.so -rwxr-xr-x 1 root wheel 35152 May 3 2019 mod_headers.so -rwxr-xr-x 1 root wheel 23632 May 3 2019 mod_heartbeat.so -rwxr-xr-x 1 root wheel 39584 May 3 2019 mod_heartmonitor.so -rwxr-xr-x 1 root wheel 52272 May 3 2019 mod_hfs_apple.so -rwxr-xr-x 1 root wheel 461600 May 3 2019 mod_http2.so -rwxr-xr-x 1 root wheel 32640 May 3 2019 mod_imagemap.so -rwxr-xr-x 1 root wheel 91120 May 3 2019 mod_include.so -rwxr-xr-x 1 root wheel 36992 May 3 2019 mod_info.so -rwxr-xr-x 1 root wheel 18144 May 3 2019 mod_lbmethod_bybusyness.so -rwxr-xr-x 1 root wheel 18144 May 3 2019 mod_lbmethod_byrequests.so -rwxr-xr-x 1 root wheel 18128 May 3 2019 mod_lbmethod_bytraffic.so -rwxr-xr-x 1 root wheel 29344 May 3 2019 mod_lbmethod_heartbeat.so -rwxr-xr-x 1 root wheel 128848 May 3 2019 mod_ldap.so -rwxr-xr-x 1 root wheel 46064 May 3 2019 mod_log_config.so -rwxr-xr-x 1 root wheel 28576 May 3 2019 mod_log_debug.so -rwxr-xr-x 1 root wheel 23872 May 3 2019 mod_log_forensic.so -rwxr-xr-x 1 root wheel 23904 May 3 2019 mod_logio.so -rwxr-xr-x 1 root wheel 32768 May 3 2019 mod_macro.so -rwxr-xr-x 1 root wheel 33376 May 3 2019 mod_mime.so -rwxr-xr-x 1 root wheel 42560 May 3 2019 mod_mime_magic.so -rwxr-xr-x 1 root wheel 53360 May 3 2019 mod_negotiation.so -rwxr-xr-x 1 root wheel 190432 May 3 2019 mod_perl.so -rwxr-xr-x 1 root wheel 193376 May 3 2019 mod_proxy.so -rwxr-xr-x 1 root wheel 100064 May 3 2019 mod_proxy_ajp.so -rwxr-xr-x 1 root wheel 83808 May 3 2019 mod_proxy_balancer.so -rwxr-xr-x 1 root wheel 41264 May 3 2019 mod_proxy_connect.so -rwxr-xr-x 1 root wheel 27520 May 3 2019 mod_proxy_express.so -rwxr-xr-x 1 root wheel 52224 May 3 2019 mod_proxy_fcgi.so -rwxr-xr-x 1 root wheel 23440 May 3 2019 mod_proxy_fdpass.so -rwxr-xr-x 1 root wheel 82656 May 3 2019 mod_proxy_ftp.so -rwxr-xr-x 1 root wheel 57856 May 3 2019 mod_proxy_hcheck.so -rwxr-xr-x 1 root wheel 64896 May 3 2019 mod_proxy_html.so -rwxr-xr-x 1 root wheel 75408 May 3 2019 mod_proxy_http.so -rwxr-xr-x 1 root wheel 34464 May 3 2019 mod_proxy_scgi.so -rwxr-xr-x 1 root wheel 30080 May 3 2019 mod_proxy_uwsgi.so -rwxr-xr-x 1 root wheel 36832 May 3 2019 mod_proxy_wstunnel.so -rwxr-xr-x 1 root wheel 27968 May 3 2019 mod_ratelimit.so -rwxr-xr-x 1 root wheel 23984 May 3 2019 mod_reflector.so -rwxr-xr-x 1 root wheel 42624 May 3 2019 mod_remoteip.so -rwxr-xr-x 1 root wheel 28752 May 3 2019 mod_reqtimeout.so -rwxr-xr-x 1 root wheel 23872 May 3 2019 mod_request.so -rwxr-xr-x 1 root wheel 100400 May 3 2019 mod_rewrite.so -r-xr-xr-x 1 root wheel 106368 May 3 2019 mod_secure_transport.so -rwxr-xr-x 1 root wheel 64032 May 3 2019 mod_sed.so -rwxr-xr-x 1 root wheel 34368 May 3 2019 mod_session.so -rwxr-xr-x 1 root wheel 23360 May 3 2019 mod_session_cookie.so -rwxr-xr-x 1 root wheel 28608 May 3 2019 mod_session_dbd.so -rwxr-xr-x 1 root wheel 28480 May 3 2019 mod_setenvif.so -rwxr-xr-x 1 root wheel 22976 May 3 2019 mod_slotmem_plain.so -rwxr-xr-x 1 root wheel 33008 May 3 2019 mod_slotmem_shm.so -rwxr-xr-x 1 root wheel 28288 May 3 2019 mod_socache_dbm.so -rwxr-xr-x 1 root wheel 28240 May 3 2019 mod_socache_memcache.so -rwxr-xr-x 1 root wheel 48704 May 3 2019 mod_socache_shmcb.so -rwxr-xr-x 1 root wheel 28096 May 3 2019 mod_speling.so -rwxr-xr-x 1 root wheel 356144 May 3 2019 mod_ssl.so -rwxr-xr-x 1 root wheel 37200 May 3 2019 mod_status.so -rwxr-xr-x 1 root wheel 41136 May 3 2019 mod_substitute.so -rwxr-xr-x 1 root wheel 18944 May 3 2019 mod_unique_id.so -rwxr-xr-x 1 root wheel 23856 May 3 2019 mod_unixd.so -rwxr-xr-x 1 root wheel 23392 May 3 2019 mod_userdir.so -rwxr-xr-x 1 root wheel 24096 May 3 2019 mod_usertrack.so -rwxr-xr-x 1 root wheel 22928 May 3 2019 mod_version.so -rwxr-xr-x 1 root wheel 23568 May 3 2019 mod_vhost_alias.so -rwxr-xr-x 1 root wheel 39104 May 3 2019 mod_watchdog.so -rwxr-xr-x 1 root wheel 50416 May 3 2019 mod_xml2enc.so /usr/libexec/cups: total 0 drwxr-xr-x 10 root wheel 320 May 3 2019 . drwxr-xr-x 249 root wheel 7968 Feb 7 23:29 .. drwxr-xr-x 7 root wheel 224 Feb 7 23:29 apple drwxr-xr-x 17 root wheel 544 Feb 7 23:29 backend drwxr-xr-x 7 root wheel 224 Feb 7 23:29 cgi-bin drwxr-xr-x 6 root wheel 192 Feb 7 23:29 daemon drwxr-xr-x 2 root wheel 64 Feb 22 2019 driver drwxr-xr-x 23 root wheel 736 Feb 7 23:29 filter drwxr-xr-x 4 root wheel 128 Feb 7 23:29 monitor drwxr-xr-x 4 root wheel 128 Feb 7 23:29 notifier /usr/libexec/cups/apple: total 200 drwxr-xr-x 7 root wheel 224 Feb 7 23:29 . drwxr-xr-x 10 root wheel 320 May 3 2019 .. lrwxr-xr-x 1 root wheel 3 May 4 2019 http -> ipp lrwxr-xr-x 1 root wheel 3 May 4 2019 https -> ipp -r-xr-xr-x 1 root wheel 83552 Jan 24 01:13 ipp lrwxr-xr-x 1 root wheel 3 May 4 2019 ipps -> ipp -rwxr-xr-x 1 root wheel 174544 Jul 16 2019 smb /usr/libexec/cups/backend: total 408 drwxr-xr-x 17 root wheel 544 Feb 7 23:29 . drwxr-xr-x 10 root wheel 320 May 3 2019 .. -rwxr-xr-x 1 root wheel 38688 Jan 24 01:13 bluetooth -rwx------ 1 root wheel 29216 Jan 24 01:13 dnssd lrwxr-xr-x 1 root wheel 77 May 4 2019 epsonfax -> /Library/Printers/EPSON/Fax/FaxIOSupport/epsonfax.app/Contents/MacOS/epsonfax lrwxr-xr-x 1 root wheel 3 May 4 2019 http -> ipp lrwxr-xr-x 1 root wheel 3 May 4 2019 https -> ipp -rwx------ 1 root wheel 83552 Jan 24 01:13 ipp lrwxr-xr-x 1 root wheel 3 May 4 2019 ipps -> ipp lrwxr-xr-x 1 root wheel 5 May 4 2019 ippusb -> dnssd -rwx------ 1 root wheel 47824 Jan 24 01:13 lpd lrwxr-xr-x 1 root wheel 5 May 4 2019 mdns -> dnssd -rwxr-xr-x 1 root wheel 34416 May 3 2019 riousbprint -rwx------ 1 root wheel 30464 May 3 2019 smb -r-xr-xr-x 1 root wheel 34288 Jan 24 01:13 snmp -r-xr-xr-x 1 root wheel 42608 Jan 24 01:13 socket -r-xr-xr-x 1 root wheel 100992 Jan 24 01:13 usb /usr/libexec/cups/cgi-bin: total 136 drwxr-xr-x 7 root wheel 224 Feb 7 23:29 . drwxr-xr-x 10 root wheel 320 May 3 2019 .. -r-xr-xr-x 1 root wheel 67072 Jan 24 01:13 admin.cgi -r-xr-xr-x 1 root wheel 24768 Jan 24 01:13 classes.cgi -r-xr-xr-x 1 root wheel 23856 Jan 24 01:13 help.cgi -r-xr-xr-x 1 root wheel 19568 Jan 24 01:13 jobs.cgi -r-xr-xr-x 1 root wheel 24992 Jan 24 01:13 printers.cgi /usr/libexec/cups/daemon: total 120 drwxr-xr-x 6 root wheel 192 Feb 7 23:29 . drwxr-xr-x 10 root wheel 320 May 3 2019 .. -r-xr-xr-x 1 root wheel 29504 Jan 24 01:13 cups-deviced -r-xr-xr-x 1 root wheel 53280 Jan 24 01:13 cups-driverd -r-xr-xr-x 1 root wheel 19008 Jan 24 01:13 cups-exec -r-xr-xr-x 1 root wheel 34048 Jan 24 01:13 cups-lpd /usr/libexec/cups/driver: total 0 drwxr-xr-x 2 root wheel 64 Feb 22 2019 . drwxr-xr-x 10 root wheel 320 May 3 2019 .. /usr/libexec/cups/filter: total 1496 drwxr-xr-x 23 root wheel 736 Feb 7 23:29 . drwxr-xr-x 10 root wheel 320 May 3 2019 .. -rwxr-xr-x 1 root wheel 45312 May 3 2019 cgbannertopdf -rwxr-xr-x 1 root wheel 37248 May 3 2019 cgimagetopdf -rwxr-xr-x 1 root wheel 47344 May 3 2019 cgpdftopdf -rwxr-xr-x 1 root wheel 49952 May 3 2019 cgpdftops -rwxr-xr-x 1 root wheel 371072 May 3 2019 cgpdftoraster -rwxr-xr-x 1 root wheel 50096 May 3 2019 cgtexttopdf -r-xr-xr-x 1 root wheel 23744 Jan 24 01:13 commandtops -r-xr-xr-x 1 root wheel 18800 Jan 24 01:13 gziptoany -rwxr-xr-x 1 root wheel 25184 May 3 2019 pstoappleps -rwxr-xr-x 1 root wheel 35936 May 3 2019 pstocupsraster -rwxr-xr-x 1 root wheel 30352 May 3 2019 pstopdffilter -r-xr-xr-x 1 root wheel 55280 Jan 24 01:13 pstops lrwxr-xr-x 1 root wheel 13 May 4 2019 rastertodymo -> rastertolabel -r-xr-xr-x 1 root wheel 28352 Jan 24 01:13 rastertoepson -r-xr-xr-x 1 root wheel 27984 Jan 24 01:13 rastertohp -r-xr-xr-x 1 root wheel 28576 Jan 24 01:13 rastertolabel -r-xr-xr-x 1 root wheel 27968 Jan 24 01:13 rastertopwg -rwxr-xr-x 1 root wheel 31888 May 3 2019 rastertotiff -rwxr-xr-x 1 root wheel 29360 May 3 2019 rastertourf -rwxr-xr-x@ 1 root wheel 128480 Feb 13 16:44 thnucups -rwxr-xr-x 1 root wheel 31792 May 3 2019 xhtmltopdf /usr/libexec/cups/monitor: total 32 drwxr-xr-x 4 root wheel 128 Feb 7 23:29 . drwxr-xr-x 10 root wheel 320 May 3 2019 .. -r-xr-xr-x 1 root wheel 18624 Jan 24 01:13 bcp -r-xr-xr-x 1 root wheel 18624 Jan 24 01:13 tbcp /usr/libexec/cups/notifier: total 48 drwxr-xr-x 4 root wheel 128 Feb 7 23:29 . drwxr-xr-x 10 root wheel 320 May 3 2019 .. -r-xr-xr-x 1 root wheel 24544 Jan 24 01:13 mailto -r-xr-xr-x 1 root wheel 29104 Jan 24 01:13 rss /usr/libexec/dtrace: total 0 drwxr-xr-x 8 root wheel 256 May 3 2019 . drwxr-xr-x 249 root wheel 7968 Feb 7 23:29 .. -rw-r--r-- 1 root wheel 8831 Feb 22 2019 file_events.cpp -rw-r--r-- 1 root wheel 2647 Feb 22 2019 file_events.hpp -rwxr-xr-x 1 root wheel 250 Apr 25 2019 log_unnest_badness.d -rw-r--r-- 1 root wheel 326 Feb 22 2019 smbd_entitlements.plist -rwxr-xr-x 1 root wheel 5396 Feb 22 2019 smbtrace.d -rwxr-xr-x 1 root wheel 279 Apr 25 2019 vm_map_delete_permanent.d /usr/libexec/emacs: total 0 drwxr-xr-x 3 root wheel 96 Feb 22 2019 . drwxr-xr-x 249 root wheel 7968 Feb 7 23:29 .. drwxr-xr-x 3 root wheel 96 Feb 22 2019 22.1 /usr/libexec/emacs/22.1: total 0 drwxr-xr-x 3 root wheel 96 Feb 22 2019 . drwxr-xr-x 3 root wheel 96 Feb 22 2019 .. drwxr-xr-x 12 root wheel 384 May 3 2019 mac-apple-darwin /usr/libexec/emacs/22.1/mac-apple-darwin: total 168 drwxr-xr-x 12 root wheel 384 May 3 2019 . drwxr-xr-x 3 root wheel 96 Feb 22 2019 .. -rwxr-xr-x 1 root wheel 22896 May 3 2019 cvtmail -rwxr-xr-x 1 root wheel 22176 May 3 2019 digest-doc -rwxr-xr-x 1 root wheel 17696 May 3 2019 fakemail -rwxr-xr-x 1 root wheel 22800 May 3 2019 hexl -rwxr-xr-x 1 root wheel 41984 May 3 2019 movemail -rwxr-xr-x 1 root wheel 22176 May 3 2019 profile -rwxr-xr-x 1 root wheel 20684 Feb 22 2019 rcs2log -rwxr-xr-x 1 root wheel 22752 May 3 2019 sorted-doc -rwxr-xr-x 1 root wheel 32944 May 3 2019 update-game-score -rwxr-xr-x 1 root wheel 2217 Feb 22 2019 vcdiff /usr/libexec/fax: total 16 drwxr-xr-x 3 root wheel 96 Feb 22 2019 . drwxr-xr-x 249 root wheel 7968 Feb 7 23:29 .. -rwxr-xr-x 1 root wheel 11646 Feb 22 2019 coverpage.py /usr/libexec/feedback: total 96 drwxr-xr-x 7 root wheel 224 Feb 7 23:29 . drwxr-xr-x 249 root wheel 7968 Feb 7 23:29 .. -rwxr-xr-x 1 root wheel 805 Mar 29 2019 appearance.py -rwxr-xr-x 1 root wheel 43760 Jan 24 01:13 fb_collect -rwxr-xr-x 1 root wheel 3381 Mar 29 2019 filevault.py -rwxr-xr-x 1 root wheel 29 Mar 29 2019 sleepwake.sh -rwxr-xr-x 1 root wheel 111653 Mar 29 2019 systriage.rb /usr/libexec/firmwarecheckers: total 0 drwxr-xr-x 4 root wheel 128 May 3 2019 . drwxr-xr-x 249 root wheel 7968 Feb 7 23:29 .. drwxr-xr-x 6 root wheel 192 Feb 7 23:29 eficheck drwxr-xr-x 3 root wheel 96 May 3 2019 ethcheck /usr/libexec/firmwarecheckers/eficheck: total 112 drwxr-xr-x 6 root wheel 192 Feb 7 23:29 . drwxr-xr-x 4 root wheel 128 May 3 2019 .. drwxr-xr-x 3 root wheel 96 Apr 25 2019 EFIAllowListShipping.bundle -rwx--x--x 1 root wheel 79472 Jan 24 01:13 eficheck -rwx--x--x 1 root wheel 48096 Jan 24 01:13 eficheck-standalone drwxr-xr-x 3 root wheel 96 Apr 25 2019 localization /usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 6 root wheel 192 Feb 7 23:29 .. drwxr-xr-x 2037 root wheel 65184 Feb 7 23:29 allowlists /usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists: total 928 drwxr-xr-x 2037 root wheel 65184 Feb 7 23:29 . drwxr-xr-x 3 root wheel 96 Apr 25 2019 .. -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0001.I00.0908281642.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0001.I00.0909021206.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0001.I00.0909021315.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0001.I00.0909091053.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0001.I00.0909111152.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0001.I00.0909111312.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0001.I00.0909141538.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0001.I00.0909141605.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0001.I00.0909171006.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0002.I00.0909231120.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0002.I00.0909281404.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0002.I00.0910021021.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0002.I00.0910021107.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0002.I00.0910051536.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0002.I00.0910051609.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0002.I00.0910071112.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0002.I00.0910071209.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0002.I00.0910091045.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0002.I00.0910091152.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0002.I00.0910122220.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0002.I00.0910141109.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0002.I00.0910141146.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0002.I00.0910151922.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0002.I00.0910191602.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0002.I00.0910191643.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0002.I00.0910211310.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0002.I00.0910242121.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0002.I00.0910281217.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0002.I00.0910281927.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0002.I00.0910301725.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0002.I00.1003151739.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0002.I00.1003171312.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0002.I00.1507291353.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0002.I00.1509231900.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0002.I00.1701210003.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0002.I00.1702201847.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0002.I00.1702241356.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0002.I00.1704250219.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0002.I00.1704281850.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0002.I00.1705021412.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0002.I00.1706220550.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0002.I00.1706261402.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0002.I00.1707231527.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM111.AAPLEFI1.88Z.0002.I00.1708080237.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0005.I00.0911231211.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0005.I00.0912071313.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0005.I00.0912071347.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0005.I00.0912141547.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0005.I00.0912141713.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0005.I00.0912161112.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0005.I00.0912181153.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0005.I00.0912181427.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0005.I00.1001081056.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0005.I00.1001111654.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0005.I00.1001151650.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0005.I00.1001251301.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0006.I00.1002081552.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0006.I00.1002081733.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0006.I00.1002101313.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0006.I00.1002121627.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0006.I00.1002171156.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0006.I00.1002191318.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0006.I00.1002261335.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0006.I00.1003031405.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0006.I00.1003051151.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0006.I00.1003081608.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0006.I00.1003121143.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0006.I00.1003171246.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0006.I00.1003241457.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0006.I00.1004051701.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0006.I00.1004091104.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0006.I00.1004121638.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0006.I00.1004161256.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0006.I00.1004191607.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0006.I00.1004230939.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0006.I00.1004261556.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0006.I00.1005031453.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0006.I00.1112090904.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0006.I00.1112091248.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0006.I00.1507291449.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0006.I00.1509231641.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0006.I00.1612201716.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0006.I00.1701210149.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0006.I00.1702180220.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0006.I00.1702241446.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0006.I00.1704242250.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0006.I00.1704281519.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0006.I00.1705021555.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0006.I00.1706220336.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0006.I00.1706261624.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0006.I00.1707271300.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 IM112.AAPLEFI2.88Z.0006.I00.1708080435.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI2.88Z.0001.I00.1005211133.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI2.88Z.0001.I00.1005241636.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI2.88Z.0003.I00.1006141518.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0004.I00.1006161137.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0004.I00.1006180910.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0004.I00.1006251013.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0004.I00.1006281408.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0005.I00.1007141220.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0005.I00.1007211301.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0005.I00.1007261201.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0005.I00.1007281057.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0005.I00.1008021259.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0005.I00.1008041221.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0005.I00.1008091039.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0005.I00.1008111115.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0005.I00.1008121651.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0005.I00.1008181312.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0005.I00.1008231323.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0005.I00.1008251413.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0005.I00.1008301408.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0005.I00.1009011157.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0005.I00.1009011250.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0006.I00.1009081115.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0006.I00.1009081226.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0007.I00.1009131111.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0007.I00.1009131124.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0007.I00.1009151116.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0007.I00.1009201126.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0007.I00.1009231111.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0007.I00.1009271031.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0008.I00.1009291042.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0008.I00.1010021017.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0008.I00.1010041146.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0008.I00.1010051020.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0008.I00.1010051724.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0008.I00.1010091027.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0008.I00.1010111112.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I00.1010131028.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I00.1010131106.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I00.1010170938.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I00.1010181212.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I00.1010200944.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I00.1010200957.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I00.1010230937.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I00.1010251247.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I00.1010270938.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I00.1010271023.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I00.1010290938.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I00.1010291415.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I00.1011020847.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I00.1011021506.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I00.1011050838.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I00.1011051249.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I00.1011100939.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I00.1011110945.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I00.1011120759.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I00.1011160939.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I00.1011161712.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I00.1011210940.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I00.1011220725.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I00.1011290940.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I00.1011291124.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I00.1012010939.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I00.1012011224.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I00.1012020939.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I00.1012021643.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I00.1012050944.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I00.1012061142.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I00.1012080943.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I00.1012081135.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I00.1012120946.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I00.1012131137.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I00.1012150939.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I00.1012151059.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I00.1012190941.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I00.1012201104.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I00.1101010940.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I00.1101050940.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I01.1101100940.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I01.1101101109.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I01.1101120941.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I01.1101121158.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I01.1101150944.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I01.1101171047.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I02.1101190957.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I02.1101191057.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1101230957.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1101241114.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1101260937.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1101261044.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1101310951.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1101311146.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1102021201.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1102031002.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1102041235.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1102071704.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1102091754.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1103021144.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1103091152.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1103161348.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1103242050.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1103301137.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1104061234.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1104111857.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1104150726.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1104201032.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1104221553.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1107141151.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1107281150.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1108031503.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1108101256.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1108112002.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1108121148.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1108122101.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1108171247.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1108221125.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1108290922.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1108291934.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1109011022.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1109021638.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1109030048.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1109061106.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1109061818.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1109081124.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1109091929.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1109100354.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1109141123.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1109141953.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1109211414.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1109231613.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1109281426.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1110171108.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1110201312.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1201241646.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1506090232.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1506101604.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1509141153.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1510261406.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1610201718.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1611011512.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1612202117.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1701201957.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1702171911.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1703231948.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1703301217.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1703301434.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1704131557.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1704242117.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1704281158.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1705021500.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1705101226.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1706220459.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1706261227.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1707271117.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 IM121.AAPLEFI4.88Z.0009.I03.1708080007.0.ealf -rw-r--r-- 1 root wheel 22537 Jan 23 07:12 IM131.88Z.F000.B00.1912181754.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0011.I00.1109120937.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0012.I00.1109141013.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0012.I00.1109141044.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0012.I00.1109190951.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0012.I00.1109191025.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0012.I00.1109211037.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0012.I00.1109260949.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0012.I00.1109271121.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0012.I00.1110031003.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0012.I00.1110031600.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0012.I00.1110050942.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0012.I00.1110100942.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0012.I00.1110101002.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0012.I00.1110121146.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0012.I00.1110121223.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0012.I00.1110170947.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0012.I00.1110201110.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0012.I00.1110211417.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0012.I00.1110211452.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0012.I00.1110260954.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0012.I00.1110270931.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0012.I00.1110271125.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0012.I00.1110271506.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0012.I00.1110271555.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0012.I00.1111020931.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0012.I00.1111021003.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0012.I00.1111070949.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0012.I00.1111071036.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0012.I00.1111091031.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0012.I00.1111091124.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1111141502.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1111171341.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1111280947.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1111281026.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1111301445.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1112051012.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1112051056.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1112051152.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1112070942.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1112071028.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1112121145.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1112121219.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1112140955.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1112141056.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1112201134.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1112201338.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1201041310.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1201041425.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1201090945.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1201091030.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1201120951.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1201122023.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1201122053.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1201160946.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1201161027.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1201181139.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1201181211.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1201231016.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1201231046.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1201251020.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1201251124.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1201300936.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1201301023.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1202011024.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1202011105.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1202021239.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1202061106.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1202061410.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1202061455.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1202081041.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1202081208.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1610041759.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0013.I00.1610041803.0.ealf -rw-r--r-- 1 root wheel 817 Jan 23 07:12 IM131.AAPLEFI4.88Z.0014.I00.0000000000.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1202131042.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1202131134.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1202151015.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1202151052.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1202201110.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1202201259.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1202221034.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1202270952.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1202271033.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1202291139.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1202291207.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1203050954.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1203051041.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1203071032.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1203071112.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1203120956.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1203121258.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1203140947.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1203141038.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1203190958.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1203191039.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1203210941.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1203211000.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1203261014.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1203281126.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1203281326.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1204021116.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1204021155.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1204041150.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1204041234.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1204091154.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1204091336.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1204110951.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1204111043.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1204160954.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1204161036.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1204180957.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1204181026.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1204231011.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1204231040.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1204250940.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1204251026.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1204251057.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1204300951.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1204301035.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1205020943.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1205071044.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1205071121.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1205091022.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1205091100.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1205140949.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1205141019.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1205161032.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1205211031.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1205211107.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1205230945.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1205231023.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1205300954.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1205301024.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1206041015.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1206041046.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1206061022.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1206061100.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1206111004.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1206111034.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1206131004.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1206131034.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1206181000.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1206181044.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1206201017.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1206201045.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1206251010.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1206251049.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1206271006.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1206271037.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1207021028.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1207021115.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1207091005.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1207091351.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1207111001.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1207111358.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1207161014.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1207161046.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1207181033.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1207181109.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1207231047.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1207231117.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1207251016.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1207251054.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1207301041.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1207301109.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1208011033.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1208011100.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1208061023.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1208061105.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1208081006.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1208090851.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1208090926.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1208131011.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1208131039.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1208151033.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1208151102.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1208201150.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1208201218.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1208221308.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1208221338.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1208311615.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1208311623.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1208311727.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1209041407.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1209042015.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1209042034.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1209042338.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1209171013.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1209171041.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1209241107.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1209241135.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1210011102.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1210011129.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1210121432.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1210121459.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1211151122.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1211151146.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1302251018.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1302260943.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1302261003.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1302261008.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1506081722.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1506081728.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1509111552.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1509111558.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1610201905.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1610201915.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1612161241.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1612161246.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1701200120.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1701200126.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1701231749.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1701231754.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1701241525.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1701241529.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1702021818.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1702021833.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1702171350.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1702171357.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1703090651.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1703090657.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1703232142.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1703232149.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1705011305.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1705011311.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1706190947.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1706190954.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1706220533.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1706220538.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1706261414.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1706261419.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1707270721.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 IM131.AAPLEFI4.88Z.0014.I00.1708080805.0.ealf -rw-r--r-- 1 root wheel 21757 Jan 23 07:12 IM141.88Z.F000.B00.1912181604.0.ealf -rw-r--r-- 1 root wheel 21997 Jan 23 07:12 IM142.88Z.F000.B00.1912181604.0.ealf -rw-r--r-- 1 root wheel 22177 Jan 23 07:12 IM143.88Z.F000.B00.1912181604.0.ealf -rw-r--r-- 1 root wheel 10597 Jan 23 07:12 IM144.88Z.F000.B00.1912181611.0.ealf -rw-r--r-- 1 root wheel 10777 Jan 23 07:12 IM151.88Z.F000.B00.1912181731.0.ealf -rw-r--r-- 1 root wheel 11197 Jan 23 07:12 IM161.88Z.F000.B00.1910301927.0.ealf -rw-r--r-- 1 root wheel 11317 Jan 23 07:12 IM162.88Z.F000.B00.1910301924.0.ealf -rw-r--r-- 1 root wheel 7537 Jan 23 07:12 IM171.88Z.F000.B00.1912161452.0.ealf -rw-r--r-- 1 root wheel 7777 Jan 23 07:12 IM181.88Z.F000.B00.1912161654.0.ealf -rw-r--r-- 1 root wheel 7597 Jan 23 07:12 IM183.88Z.F000.B00.1912161654.0.ealf -rw-r--r-- 1 root wheel 7777 Jan 23 07:12 IM191.88Z.F000.B00.1912181732.0.ealf -rw-r--r-- 1 root wheel 7357 Jan 23 07:12 MB101.88Z.F000.B00.1912161654.0.ealf -rw-r--r-- 1 root wheel 11437 Jan 23 07:12 MB81.88Z.F000.B00.1912161554.0.ealf -rw-r--r-- 1 root wheel 7657 Jan 23 07:12 MB91.88Z.F000.B00.1912161452.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBA41.AAPLEFI4.88Z.0009.I00.1012150856.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBA41.AAPLEFI4.88Z.0009.I00.1012190852.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBA41.AAPLEFI4.88Z.0009.I00.1101010850.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBA41.AAPLEFI4.88Z.0009.I00.1101050852.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBA41.AAPLEFI4.88Z.000A.I00.1101100849.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBA41.AAPLEFI4.88Z.000A.I00.1101120853.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000A.I00.1101140856.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000A.I00.1101150856.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000C.I00.1101190907.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000C.I00.1101200908.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000C.I00.1101210913.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000D.I00.1101220909.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000D.I00.1101230914.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000D.I00.1101240856.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000D.I00.1101250855.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000D.I00.1101261120.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000D.I00.1102021157.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000E.I00.1102091215.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000E.I00.1102091751.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000E.I00.1102111116.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000E.I00.1102111139.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000E.I00.1102111313.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000E.I00.1102111320.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000E.I00.1102111511.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000E.I00.1102111511.1.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000E.I00.1102161116.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000E.I00.1102211052.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000E.I00.1102231217.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000E.I00.1102241543.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000E.I00.1102241720.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000E.I00.1102251038.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000E.I00.1103021232.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000E.I00.1103070731.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000E.I00.1103091936.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000E.I00.1103161348.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000E.I00.1103211026.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000E.I00.1103211031.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000E.I00.1103231036.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000E.I00.1103281025.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000E.I00.1103281030.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000E.I00.1103301120.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000E.I00.1104041043.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000E.I00.1104061117.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000E.I00.1104061122.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000E.I00.1104111221.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000E.I00.1104131115.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000E.I00.1104181024.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000E.I00.1104181030.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000E.I00.1104201030.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000E.I00.1104221256.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000E.I00.1104251137.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000E.I00.1104271026.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I00.1105050916.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I00.1105091028.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I00.1105111250.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I00.1105111313.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I00.1105160959.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I00.1105161031.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I00.1105181141.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I00.1105181211.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I00.1105231054.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I00.1105231132.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I00.1105251109.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I00.1105251142.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I00.1105271358.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I00.1105271428.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I00.1106011425.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I00.1106011454.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I00.1106061000.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I00.1106061642.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I01.1106081015.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I01.1106081046.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1106101104.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1106132213.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1106140816.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1106151001.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1106151037.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1106162146.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1106162216.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1106200956.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1106201206.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1106201233.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1106221510.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1106221541.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1106231541.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1106232232.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1106232301.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1106271224.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1106271253.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1106291141.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1106291211.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1106300901.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1106300929.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1107271705.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1107271736.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1108031120.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1108031344.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1108101017.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1108101049.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1108171239.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1108171457.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1108171535.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1108291522.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1108291605.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1108311547.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1109011021.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1109011050.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1109071213.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1109211407.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1109231610.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1110141153.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1201241518.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1201241549.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1309301452.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1310091423.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1310091428.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1506081722.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1506081728.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1509111552.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1509111558.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1510261804.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1606291853.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1610201436.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1610201441.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1612161003.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1612161009.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1701200227.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1701200234.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1701231856.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1701231905.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1702171849.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1702171855.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1702201321.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1702201326.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1703082356.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1703090011.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1703211803.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1703211809.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1703241835.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1703241839.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1703291020.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1703291024.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1704131531.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1704131536.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1705011209.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1705011214.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1705022113.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1705022117.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1706182246.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1706182250.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1706220616.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1706220621.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1706261209.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1706261217.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1707271102.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA41.AAPLEFI4.88Z.000F.I02.1708072159.0.ealf -rw-r--r-- 1 root wheel 22417 Jan 23 07:12 MBA51.88Z.F000.B00.1912181605.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0012.I00.1110121203.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0013.I00.1111141506.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0013.I00.1111171404.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0013.I00.1111280948.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0013.I00.1111281040.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0013.I00.1111301430.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0013.I00.1111301509.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0013.I00.1112051016.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0013.I00.1112051133.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0013.I00.1112051211.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0013.I00.1112070949.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0013.I00.1112071043.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0013.I00.1112121146.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0013.I00.1112121305.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0013.I00.1112141001.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0013.I00.1112141058.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0013.I00.1112201138.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0013.I00.1112201339.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0013.I00.1201041310.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0013.I00.1201041425.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0013.I00.1201091015.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0013.I00.1201121003.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0013.I00.1201121137.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0013.I00.1201161023.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0013.I00.1201161308.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0013.I00.1201161358.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0013.I00.1201181155.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0013.I00.1201181234.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0013.I00.1201230947.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0013.I00.1201231032.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0013.I00.1201250939.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0013.I00.1201251246.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0013.I00.1201300936.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0013.I00.1201301023.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0013.I00.1202011011.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0013.I00.1202011049.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0013.I00.1202061112.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0013.I00.1202061346.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0013.I00.1202061417.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0013.I00.1202081103.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0013.I00.1202081208.0.ealf -rw-r--r-- 1 root wheel 817 Jan 23 07:12 MBA51.AAPLEFI4.88Z.0014.I00.0000000000.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1202131131.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1202131211.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1202151049.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1202151130.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1202201147.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1202201301.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1202221017.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1202221053.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1202271030.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1202271055.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1202291156.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1202291238.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1203051021.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1203051042.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1203071108.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1203071145.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1203120956.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1203121259.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1203140948.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1203141013.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1203190958.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1203191039.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1203210941.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1203211000.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1203261015.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1203261043.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1203281127.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1203281150.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1204021117.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1204021140.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1204041153.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1204041235.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1204091154.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1204091337.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1204110952.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1204111044.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1204160951.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1204161036.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1204180957.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1204181043.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1204231017.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1204231109.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1204250940.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1204251030.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1204251115.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1204300953.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1204301036.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1205020944.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1205021014.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1205071045.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1205071121.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1205091022.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1205091101.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1205111019.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1205111052.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1205140950.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1205141142.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1205141211.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1205180833.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1205180901.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1205221412.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1205221442.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1207091048.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1207271032.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1207271048.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1207271121.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1211271001.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1211271023.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1211271028.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1506081618.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1506081623.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1509111646.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1509111653.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1610241029.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1610241034.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1612161124.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1612161130.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1701200120.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1701200126.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1701231856.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1701231905.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1701241625.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1701241632.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1702030112.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1702030117.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1702171350.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1702171357.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1703090651.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1703090657.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1703241418.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1703241423.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1705011406.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1705011412.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1706190947.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1706190954.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1706220516.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1706220521.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1706261427.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1706261433.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1707270721.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBA51.AAPLEFI4.88Z.0014.I00.1708080803.0.ealf -rw-r--r-- 1 root wheel 22657 Jan 23 07:12 MBA61.88Z.F000.B00.1912181759.0.ealf -rw-r--r-- 1 root wheel 11317 Jan 23 07:12 MBA71.88Z.F000.B00.1912161554.0.ealf -rw-r--r-- 1 root wheel 23137 Jan 23 07:12 MBP101.88Z.F000.B00.1912181603.0.ealf -rw-r--r-- 1 root wheel 817 Jan 23 07:12 MBP101.AAPLEFI4.88Z.0014.I00.0000000000.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1202270953.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1202271033.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1202291150.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1202291238.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1203051001.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1203051042.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1203071033.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1203071113.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1203120955.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1203121022.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1203140948.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1203141013.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1203190959.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1203191039.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1203210941.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1203211019.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1203261016.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1203261100.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1203281126.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1203281150.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1204021117.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1204021140.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1204041151.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1204041235.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1204091154.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1204091219.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1204110951.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1204111044.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1204160955.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1204161036.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1204181109.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1204181135.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1204241531.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1204241558.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1204251023.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1204251058.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1204271732.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1204271809.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1204300951.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1204301036.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1205011144.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1205011212.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1205031113.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1205031115.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1205031148.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1205041142.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1205041513.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1205041550.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1205091751.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1205091823.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1205101811.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1205101839.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1207271031.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1207271103.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1208081105.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1208081132.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1212211406.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1212211431.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1212211436.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1408281415.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1408281420.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1408291526.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1408291532.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1411201035.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1411201127.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1411201133.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1501071024.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1501071030.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1506081208.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1506081214.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1506081359.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1506081405.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1509111552.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1509111558.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1610201436.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1610201441.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1612151848.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1612151859.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1701200227.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1701200234.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1701231856.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1701231905.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1701241625.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1701241632.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1702021808.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1702021830.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1702171350.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1702171357.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1703082230.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1703082236.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1703211803.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1703211810.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1705011305.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1705011311.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1705012100.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1705012106.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1706190853.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1706190857.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1706221015.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1706221021.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1706261413.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1706261418.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1707270653.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP101.AAPLEFI4.88Z.0014.I00.1708080809.0.ealf -rw-r--r-- 1 root wheel 22057 Jan 23 07:12 MBP102.88Z.F000.B00.1912181755.0.ealf -rw-r--r-- 1 root wheel 817 Jan 23 07:12 MBP102.AAPLEFI4.88Z.0014.I00.0000000000.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1202270953.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1202271034.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1202291153.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1202291238.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1203051006.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1203051042.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1203071033.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1203071113.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1203120956.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1203121224.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1203140948.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1203141013.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1203190958.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1203191021.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1203210943.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1203211019.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1203261015.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1203261043.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1203281127.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1203281326.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1204021116.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1204021155.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1204041150.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1204041235.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1204091153.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1204091337.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1204110950.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1204111029.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1204160951.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1204161036.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1204180957.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1204181043.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1204231011.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1204231041.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1204250940.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1204251024.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1204251115.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1204300950.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1204301018.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1205020944.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1205071045.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1205071106.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1205091022.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1205091101.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1205140950.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1205141037.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1205161033.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1205211031.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1205211107.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1205230946.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1205231024.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1205300954.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1205301025.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1206041016.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1206041047.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1206061023.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1206061101.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1206111004.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1206111035.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1206131004.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1206131232.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1206181001.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1206181022.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1206201017.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1206201046.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1206251011.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1206251049.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1206271005.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1206271037.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1207021029.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1207021055.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1207091007.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1207091352.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1207111001.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1207111359.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1207161014.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1207161047.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1207181029.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1207181056.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1207231047.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1207231118.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1207251017.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1207251055.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1207301044.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1207301122.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1208061024.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1208061129.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1208081006.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1208081549.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1208081616.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1208090843.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1208091051.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1208091120.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1208311607.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1208311636.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1210241012.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1210241108.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1211161109.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1211161128.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1211161133.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1408281415.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1408281420.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1408291452.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1408291502.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1411201142.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1411201220.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1411201232.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1501071209.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1501071215.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1506081208.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1506081215.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1509111646.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1509111653.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1509130950.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1509130955.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1610201905.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1610201915.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1612161124.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1612161130.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1701200120.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1701200127.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1701231749.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1701231754.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1701241525.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1701241530.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1702021808.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1702021830.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1702171350.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1702171357.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1703090651.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1703090657.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1703211803.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1703211810.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1705011305.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1705011311.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1706190947.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1706190954.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1706220440.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1706220445.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1706261821.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1706261827.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1707270836.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP102.AAPLEFI4.88Z.0014.I00.1708080805.0.ealf -rw-r--r-- 1 root wheel 22897 Jan 23 07:12 MBP111.88Z.F000.B00.1912181759.0.ealf -rw-r--r-- 1 root wheel 23497 Jan 23 07:12 MBP112.88Z.F000.B00.1912181609.0.ealf -rw-r--r-- 1 root wheel 11737 Jan 23 07:12 MBP114.88Z.F000.B00.1912161555.0.ealf -rw-r--r-- 1 root wheel 11677 Jan 23 07:12 MBP121.88Z.F000.B00.1912161438.0.ealf -rw-r--r-- 1 root wheel 7777 Jan 23 07:12 MBP131.88Z.F000.B00.1912161653.0.ealf -rw-r--r-- 1 root wheel 7597 Jan 23 07:12 MBP132.88Z.F000.B00.1912161510.0.ealf -rw-r--r-- 1 root wheel 7597 Jan 23 07:12 MBP133.88Z.F000.B00.1912161510.0.ealf -rw-r--r-- 1 root wheel 7057 Jan 23 07:12 MBP141.88Z.F000.B00.1912161654.0.ealf -rw-r--r-- 1 root wheel 7237 Jan 23 07:12 MBP142.88Z.F000.B00.1912161510.0.ealf -rw-r--r-- 1 root wheel 7117 Jan 23 07:12 MBP143.88Z.F000.B00.1912161510.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI1.88Z.0001.I00.0908281642.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI1.88Z.0001.I00.0909021206.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI1.88Z.0001.I00.0909091053.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI1.88Z.0001.I00.0909111151.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI1.88Z.0001.I00.0909111311.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI1.88Z.0001.I00.0909141531.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI1.88Z.0001.I00.0909141605.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI1.88Z.0001.I00.0909171006.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI1.88Z.0002.I00.0909231120.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI1.88Z.0002.I00.0909281404.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI1.88Z.0002.I00.0909281434.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI1.88Z.0002.I00.0910021021.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI1.88Z.0002.I00.0910021109.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI1.88Z.0002.I00.0910051536.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI1.88Z.0002.I00.0910051609.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI1.88Z.0002.I00.0910071112.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI1.88Z.0002.I00.0910071204.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI1.88Z.0002.I00.0910091045.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI1.88Z.0002.I00.0910091152.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI1.88Z.0002.I00.0910122219.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI1.88Z.0002.I00.0910141131.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI1.88Z.0002.I00.0910141146.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI1.88Z.0003.I00.0910191448.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI1.88Z.0003.I00.0910261502.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI1.88Z.0003.I00.0910261526.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI1.88Z.0003.I00.0911021519.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0004.I00.0911021455.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0004.I00.0911041106.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0004.I00.0911041225.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0004.I00.0911051851.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0004.I00.0911091623.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0004.I00.0911102030.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0004.I00.0911111320.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0004.I00.0911111458.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0004.I00.0911181055.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0004.I00.0911181122.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0004.I00.0911201450.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.0912041103.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.0912071334.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.0912071351.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.0912111222.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.0912111310.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.0912141534.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.0912141713.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.0912161112.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.0912181400.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.0912181429.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.0912221140.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.0912230907.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.0912231624.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1001041713.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1001061125.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1001061318.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1001111512.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1001111606.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1001130947.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1001131128.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1001151201.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1001151930.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1001181347.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1001201400.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1001221111.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1001251655.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1001300949.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1002031201.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1002081648.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1002101134.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1002121529.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1002171109.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1002171134.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1002191226.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1002191317.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1002221535.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1002221634.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1002261350.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1002261410.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1003011701.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1003012124.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1003040834.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1003101534.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1003121208.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1003151740.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1003191132.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1003241646.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1003311129.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1004071223.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1004141323.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1004141928.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1004161213.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1005120959.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1007091037.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1007261549.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1007270941.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1112091026.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1112091048.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1507212145.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1509232007.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1612201815.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1701210053.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1702172052.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1702241220.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1703211519.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1704250025.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1704281105.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1705021134.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1706170445.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1706220130.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1706261100.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1707241351.0.ealf -rw-r--r-- 1 root wheel 397 Apr 25 2019 MBP61.AAPLEFI2.88Z.0005.I00.1708072213.0.ealf -rw-r--r-- 1 root wheel 457 Apr 25 2019 MBP61.AAPLEFI2.88Z.0008.I00.1101140902.0.ealf -rw-r--r-- 1 root wheel 457 Apr 25 2019 MBP61.AAPLEFI2.88Z.0008.I00.1101150900.0.ealf -rw-r--r-- 1 root wheel 457 Apr 25 2019 MBP61.AAPLEFI2.88Z.0009.I00.1101180908.0.ealf -rw-r--r-- 1 root wheel 457 Apr 25 2019 MBP61.AAPLEFI2.88Z.0009.I00.1101190919.0.ealf -rw-r--r-- 1 root wheel 457 Apr 25 2019 MBP61.AAPLEFI2.88Z.0009.I00.1101200913.0.ealf -rw-r--r-- 1 root wheel 457 Apr 25 2019 MBP61.AAPLEFI2.88Z.0009.I00.1101210914.0.ealf -rw-r--r-- 1 root wheel 457 Apr 25 2019 MBP61.AAPLEFI2.88Z.0009.I00.1101220934.0.ealf -rw-r--r-- 1 root wheel 457 Apr 25 2019 MBP61.AAPLEFI2.88Z.0009.I00.1101230919.0.ealf -rw-r--r-- 1 root wheel 457 Apr 25 2019 MBP61.AAPLEFI2.88Z.0009.I00.1101240901.0.ealf -rw-r--r-- 1 root wheel 457 Apr 25 2019 MBP61.AAPLEFI2.88Z.0009.I00.1101250906.0.ealf -rw-r--r-- 1 root wheel 457 Apr 25 2019 MBP61.AAPLEFI2.88Z.0009.I00.1101260902.0.ealf -rw-r--r-- 1 root wheel 457 Apr 25 2019 MBP61.AAPLEFI2.88Z.0009.I00.1101270917.0.ealf -rw-r--r-- 1 root wheel 457 Apr 25 2019 MBP61.AAPLEFI2.88Z.0009.I00.1101280909.0.ealf -rw-r--r-- 1 root wheel 457 Apr 25 2019 MBP61.AAPLEFI2.88Z.0009.I00.1101290917.0.ealf -rw-r--r-- 1 root wheel 457 Apr 25 2019 MBP61.AAPLEFI2.88Z.0009.I00.1101310922.0.ealf -rw-r--r-- 1 root wheel 457 Apr 25 2019 MBP61.AAPLEFI2.88Z.0009.I00.1102030927.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0005.I00.1008041152.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0005.I00.1008091100.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0005.I00.1008091102.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0005.I00.1008121648.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0005.I00.1008181316.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0005.I00.1008231306.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0005.I00.1008301408.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0005.I00.1009011146.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0005.I00.1009011359.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0006.I00.1009081106.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0006.I00.1009081229.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0007.I00.1009131052.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0007.I00.1009131127.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0007.I00.1009151119.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0007.I00.1009201123.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0007.I00.1009231114.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0007.I00.1009271028.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0008.I00.1009291039.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0008.I00.1010020951.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0008.I00.1010041149.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0008.I00.1010050947.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0008.I00.1010051721.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0008.I00.1010090948.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0008.I00.1010111110.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1010130948.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1010131104.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1010170911.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1010181215.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1010200911.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1010200953.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1010220907.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1010270911.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1010290910.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1010291334.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1011020813.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1011021508.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1011050814.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1011051250.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1011100908.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1011101038.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1011110912.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1011121717.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1011160915.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1011210912.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1011220636.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1011290915.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1011291125.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1012010914.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1012011154.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1012020915.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1012050911.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1012080910.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1012081134.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1012120910.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1012131136.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1012150919.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1012151059.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1012170922.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1012171129.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1012190927.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1012201104.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1012250928.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1012271035.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1101010926.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1101031514.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1101050927.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1101051125.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I00.1101070923.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I01.1101100926.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I01.1101101111.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I01.1101120928.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I01.1101121200.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I01.1101141645.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I01.1101141819.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I01.1101150923.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I01.1101151124.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I01.1101190937.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I01.1101191059.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I01.1101191814.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I01.1101210924.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I01.1101211514.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I01.1101220928.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I01.1101220928.1.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I01.1101230924.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I01.1101231134.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I01.1101282108.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I01.1102022358.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1102021106.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1102030931.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1102041819.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1102071705.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1103021059.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1103091154.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1103161348.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1103242113.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1103301200.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1104061123.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1104111855.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1104150725.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1104201033.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1104221555.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1107141149.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1107281122.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1108031501.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1108101818.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1108151745.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1108180842.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1108251704.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1108291539.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1109011021.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1109071116.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1109091242.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1109141951.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1109150518.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1109211336.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1109212241.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1109231544.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1109240018.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1109281425.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1110061632.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1110141128.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1110311250.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1201241644.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1404091743.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1411211557.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1506082157.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1509141026.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1510261534.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1610201932.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1612201423.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1701201815.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1702180125.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1703291134.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1704131704.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1704242025.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1704281723.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1705021652.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1705101322.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1706170647.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1706220747.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1706261917.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1707271211.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MBP81.AAPLEFI4.88Z.0009.I02.1708080651.0.ealf -rw-r--r-- 1 root wheel 22417 Jan 23 07:12 MBP91.88Z.F000.B00.1912181730.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0011.I00.1108101438.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0011.I00.1108151010.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0011.I00.1108151051.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0011.I00.1108151158.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0011.I00.1108151229.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0011.I00.1108171239.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0011.I00.1108171455.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0011.I00.1108182037.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0011.I00.1108221029.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0011.I00.1108240732.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0011.I00.1108240851.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0011.I00.1108290950.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0011.I00.1108291009.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0011.I00.1108311344.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0011.I00.1109011003.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0011.I00.1109071042.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0011.I00.1109120938.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0012.I00.1109141014.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0012.I00.1109141045.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0012.I00.1109190952.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0012.I00.1109191026.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0012.I00.1109211037.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0012.I00.1109211108.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0012.I00.1109260950.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0012.I00.1109271122.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0012.I00.1109271154.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0012.I00.1110031002.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0012.I00.1110031550.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0012.I00.1110031624.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0012.I00.1110050943.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0012.I00.1110051014.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0012.I00.1110100943.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0012.I00.1110101024.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0012.I00.1110121145.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0012.I00.1110121224.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0012.I00.1110170947.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0012.I00.1110201059.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0012.I00.1110211410.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0012.I00.1110211654.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0012.I00.1110260953.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0012.I00.1110270932.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0012.I00.1110271505.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0012.I00.1110271556.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0012.I00.1111020932.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0012.I00.1111021220.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0012.I00.1111070952.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0012.I00.1111071049.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0012.I00.1111091018.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0012.I00.1111091102.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0013.I00.1111141507.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0013.I00.1111171322.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0013.I00.1111280948.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0013.I00.1111281040.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0013.I00.1111301450.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0013.I00.1111301545.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0013.I00.1112051020.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0013.I00.1112051117.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0013.I00.1112051211.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0013.I00.1112070946.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0013.I00.1112071043.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0013.I00.1112121146.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0013.I00.1112121305.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0013.I00.1112140956.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0013.I00.1112141058.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0013.I00.1112201140.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0013.I00.1112201339.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0013.I00.1201041310.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0013.I00.1201041425.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0013.I00.1201062157.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0013.I00.1201062224.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0013.I00.1201120937.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0013.I00.1201121147.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0013.I00.1201121220.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0013.I00.1201160947.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0013.I00.1201161303.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0013.I00.1201161358.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0013.I00.1201181137.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0013.I00.1201181211.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0013.I00.1201230951.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0013.I00.1201231032.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0013.I00.1201250939.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0013.I00.1201251022.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0013.I00.1201301018.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0013.I00.1201301058.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0013.I00.1202011010.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0013.I00.1202011331.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0013.I00.1202061139.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0013.I00.1202061333.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0013.I00.1202081118.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0013.I00.1202081208.0.ealf -rw-r--r-- 1 root wheel 817 Jan 23 07:12 MBP91.AAPLEFI4.88Z.0014.I00.0000000000.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1202131043.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1202131135.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1202151049.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1202151130.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1202201117.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1202201259.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1202221013.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1202221148.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1202241139.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1202251052.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1202251119.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1202291148.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1202291207.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1203051001.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1203051023.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1203071032.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1203071112.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1203081035.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1203081110.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1203091410.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1203091712.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1203120956.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1203121154.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1203131744.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1203141235.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1203141254.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1203151822.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1203151848.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1203191245.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1203191305.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1203191306.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1203191520.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1203211509.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1203211536.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1203261014.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1203261059.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1203281126.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1203281326.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1204181246.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1204181313.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1205041512.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1205041549.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1205101121.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1205101148.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1205101838.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1205101904.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1207271032.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1207271103.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1208081105.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1208081131.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1302061104.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1302061158.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1302061204.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1504291452.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1504291456.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1506081208.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1506081214.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1509111646.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1509111652.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1602221701.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1602221712.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1610201607.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1610201614.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1612161003.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1612161009.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1701200227.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1701200233.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1701231856.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1701231904.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1701241625.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1701241631.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1702021808.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1702021828.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1702171514.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1702171521.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1703082356.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1703090008.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1703221856.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1703221900.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1705011406.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1705011411.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1705012100.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1705012105.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1706182353.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1706182357.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1706221015.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1706221020.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1706261209.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1706261216.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1707270908.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MBP91.AAPLEFI4.88Z.0014.I00.1708080744.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MM51.AAPLEFI4.88Z.0009.I00.1010170858.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MM51.AAPLEFI4.88Z.0009.I00.1010200858.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MM51.AAPLEFI4.88Z.0009.I00.1010230857.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MM51.AAPLEFI4.88Z.0009.I00.1010270858.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MM51.AAPLEFI4.88Z.0009.I00.1010290858.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MM51.AAPLEFI4.88Z.0009.I00.1011020758.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MM51.AAPLEFI4.88Z.0009.I00.1011050801.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MM51.AAPLEFI4.88Z.0009.I00.1011100902.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MM51.AAPLEFI4.88Z.0009.I00.1011110859.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MM51.AAPLEFI4.88Z.0009.I00.1011160900.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MM51.AAPLEFI4.88Z.0009.I00.1011210900.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MM51.AAPLEFI4.88Z.0009.I00.1011290901.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MM51.AAPLEFI4.88Z.0009.I00.1012010901.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MM51.AAPLEFI4.88Z.0009.I00.1012020901.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MM51.AAPLEFI4.88Z.0009.I00.1012050859.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MM51.AAPLEFI4.88Z.0009.I00.1012080859.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MM51.AAPLEFI4.88Z.0009.I00.1012081210.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MM51.AAPLEFI4.88Z.0009.I00.1012120907.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MM51.AAPLEFI4.88Z.0009.I00.1012131137.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MM51.AAPLEFI4.88Z.0009.I00.1012150907.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MM51.AAPLEFI4.88Z.0009.I00.1012151059.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MM51.AAPLEFI4.88Z.0009.I00.1012190912.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MM51.AAPLEFI4.88Z.0009.I00.1012201104.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MM51.AAPLEFI4.88Z.0009.I00.1101010913.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MM51.AAPLEFI4.88Z.0009.I00.1101031515.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MM51.AAPLEFI4.88Z.0009.I00.1101050912.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MM51.AAPLEFI4.88Z.0009.I00.1101051127.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MM51.AAPLEFI4.88Z.000A.I00.1101100912.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MM51.AAPLEFI4.88Z.000A.I00.1101101135.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MM51.AAPLEFI4.88Z.000A.I00.1101120913.0.ealf -rw-r--r-- 1 root wheel 697 Apr 25 2019 MM51.AAPLEFI4.88Z.000A.I00.1101121201.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000A.I00.1101140913.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000A.I00.1101150912.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000A.I00.1101171151.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000C.I00.1101190924.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000C.I00.1101191059.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000C.I00.1101200933.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000C.I00.1101210919.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000D.I00.1101220928.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000D.I00.1101230921.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000D.I00.1101240912.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000D.I00.1101241139.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000D.I00.1101250919.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000D.I00.1101260911.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000D.I00.1101261042.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000D.I00.1101270934.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000D.I00.1101280922.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000D.I00.1101290932.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000D.I00.1101310938.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000D.I00.1101311143.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000D.I00.1101311851.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000D.I00.1102030926.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000E.I00.1102091751.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000E.I00.1102141048.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000E.I00.1102161116.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000E.I00.1102211052.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000E.I00.1102231153.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000E.I00.1102251052.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000E.I00.1102281126.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000E.I00.1103021054.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000E.I00.1103070731.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000E.I00.1103091937.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000E.I00.1103161348.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000E.I00.1103211026.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000E.I00.1103211031.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000E.I00.1103231036.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000E.I00.1103281025.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000E.I00.1103281030.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000E.I00.1103301120.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000E.I00.1104041043.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000E.I00.1104061117.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000E.I00.1104061122.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000E.I00.1104131115.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000E.I00.1104181024.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000E.I00.1104181030.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000E.I00.1104201030.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000E.I00.1104251122.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000E.I00.1104271026.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I00.1105021032.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I00.1105050916.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I00.1105091028.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I00.1105111247.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I00.1105111400.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I00.1105160959.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I00.1105161031.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I00.1105181142.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I00.1105181211.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I00.1105231054.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I00.1105231132.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I00.1105251109.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I00.1105251142.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I00.1105271358.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I00.1105271441.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I00.1106011420.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I00.1106011454.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I00.1106061000.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I00.1106061029.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I01.1106081014.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I01.1106081046.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1106101105.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1106132213.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1106140816.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1106151001.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1106151037.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1106162146.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1106162216.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1106200956.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1106201202.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1106201233.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1106221510.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1106221623.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1106231540.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1106232231.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1106232352.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1106271223.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1106271442.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1107271705.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1107271736.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1108031123.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1108031344.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1108101016.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1108101049.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1108171238.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1108171440.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1108171509.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1108291522.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1108311547.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1109011011.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1109011050.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1109071213.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1109071242.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1109091159.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1109091225.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1109141942.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1109142033.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1109211406.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1109231610.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1110141153.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1110201308.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1201241544.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1201241549.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1506081722.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1506081728.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1509111552.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1509111558.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1510261804.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1606291827.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1610201607.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1610201614.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1612161003.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1612161009.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1701200227.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1701200234.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1701231856.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1701231905.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1702171514.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1702171522.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1702201321.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1702201326.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1703090219.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1703090225.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1703232120.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1703232137.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1704131531.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1704131536.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1705011209.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1705011214.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1706191359.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1706191403.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1706220614.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1706220620.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1706261432.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1706261437.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1707270909.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM51.AAPLEFI4.88Z.000F.I02.1708080744.0.ealf -rw-r--r-- 1 root wheel 21337 Jan 23 07:12 MM61.88Z.F000.B00.1912181603.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0012.I00.1110171020.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0012.I00.1111020932.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0012.I00.1111070952.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0012.I00.1111091021.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0013.I00.1111141507.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0013.I00.1111171342.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0013.I00.1111280948.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0013.I00.1111281040.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0013.I00.1111301453.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0013.I00.1111301545.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0013.I00.1112051019.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0013.I00.1112051118.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0013.I00.1112051211.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0013.I00.1112070946.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0013.I00.1112071043.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0013.I00.1112121146.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0013.I00.1112121305.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0013.I00.1112141008.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0013.I00.1112141058.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0013.I00.1112201138.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0013.I00.1112201339.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0013.I00.1201041309.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0013.I00.1201041425.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0013.I00.1201090945.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0013.I00.1201091030.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0013.I00.1201120937.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0013.I00.1201121027.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0013.I00.1201161024.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0013.I00.1201161106.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0013.I00.1201181157.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0013.I00.1201181234.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0013.I00.1201230952.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0013.I00.1201231032.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0013.I00.1201251021.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0013.I00.1201251124.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0013.I00.1201301018.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0013.I00.1201301058.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0013.I00.1202011047.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0013.I00.1202011118.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0013.I00.1202061146.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0013.I00.1202061333.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0013.I00.1202061417.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0013.I00.1202081041.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0013.I00.1202081208.0.ealf -rw-r--r-- 1 root wheel 817 Jan 23 07:12 MM61.AAPLEFI4.88Z.0014.I00.0000000000.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1202131131.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1202131211.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1202151012.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1202151052.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1202201143.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1202201301.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1202221015.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1202221149.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1202270953.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1202271033.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1202291155.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1202291238.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1203051026.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1203051102.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1203071107.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1203071145.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1203120956.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1203121259.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1203140947.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1203141013.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1203190958.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1203191021.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1203210941.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1203211019.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1203261016.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1203261059.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1203281127.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1203281326.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1204021117.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1204021140.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1204041151.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1204041213.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1204091153.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1204091337.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1204110951.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1204111207.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1204160951.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1204161014.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1204180957.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1204181043.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1204231017.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1204231109.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1204250940.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1204251024.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1204251115.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1204300952.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1204301036.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1205020951.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1205071045.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1205071121.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1205091022.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1205091101.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1205140949.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1205141019.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1205161032.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1205211031.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1205211108.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1205230945.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1205231023.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1205300954.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1205301024.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1206041016.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1206041047.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1206061023.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1206061101.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1206111004.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1206111035.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1206131004.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1206131035.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1206181001.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1206181044.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1206201018.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1206201059.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1206251011.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1206251049.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1206271007.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1206271104.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1207021029.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1207021115.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1207091006.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1207091352.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1207111001.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1207111359.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1207161014.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1207161047.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1207171148.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1207171406.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1207171438.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1207181033.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1207181110.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1207231047.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1207231118.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1207251016.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1207251054.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1207301044.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1207301122.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1208061023.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1208061129.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1208081006.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1208081548.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1208081616.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1208090842.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1208091051.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1208091120.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1211161109.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1211161132.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1211161202.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1309191428.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1309191433.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1506081208.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1506081214.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1506081359.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1506081405.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1507101017.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1507101043.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1509111646.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1509111653.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1610201648.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1610201653.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1612161124.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1612161130.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1701200120.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1701200126.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1701231856.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1701231907.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1701241625.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1701241632.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1702021808.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1702021830.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1702171714.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1702171720.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1703082356.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1703090009.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1703212034.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1703212039.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1705011508.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1705011514.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1706190947.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1706190954.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1706220458.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1706220503.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1706261209.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1706261217.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1707271000.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MM61.AAPLEFI4.88Z.0014.I00.1708080649.0.ealf -rw-r--r-- 1 root wheel 10837 Jan 23 07:12 MM71.88Z.F000.B00.1912161438.0.ealf -rw-r--r-- 1 root wheel 10297 Jan 23 07:12 MP61.88Z.F000.B00.1912181758.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1309251543.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1309251543.1.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1310011106.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1310021032.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1310041108.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1310071034.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1310091025.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1310091030.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1310141105.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1310161051.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1310211035.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1310231030.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1310281050.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1310301042.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1311011054.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1311020955.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1311211810.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1311222013.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1312061508.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1402141110.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1402141115.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1408281630.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1408281640.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1408291649.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1408291655.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1410131006.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1410131032.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1411050951.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1411051458.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1411131657.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1411131702.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1411141736.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1411141741.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1411201041.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1411201134.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1501071118.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1501071126.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1502131710.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1502131715.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1504291754.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1504291759.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1505141121.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1505141126.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1506050539.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1506050547.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1509081425.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1509081436.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1602221551.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1602221559.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1605171347.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1605171350.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1608231225.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1608231228.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1608261904.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1608261907.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1610051051.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1610051056.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1610201517.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1610201523.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1612151849.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1612151900.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1701131523.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1701131542.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1702021713.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1702021720.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1702171850.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1702171856.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1703090219.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1703090226.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1703231639.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1703231703.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1703281328.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1703281336.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1705011710.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1705011717.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1706200304.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1706200309.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1706221129.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1706221151.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1706261347.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1706261354.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.0017.I00.1707271003.0.ealf -rw-r--r-- 1 root wheel 817 Jan 23 07:12 MP61.AAPLEFI5.88Z.9982.I99.0000000000.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1310011106.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1310021032.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1310041108.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1310071034.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1310091025.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1310091030.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1310141105.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1310161051.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1310211035.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1310231030.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1310281050.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1310301042.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1311011054.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1311020955.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1311211810.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1311222013.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1312061508.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1402141110.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1402141115.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1408281630.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1408281640.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1408291649.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1408291655.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1410131027.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1410131032.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1411051453.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1411051458.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1411131657.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1411131702.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1411141736.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1411141741.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1411201128.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1411201134.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1501071118.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1501071126.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1502131710.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1502131715.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1504291754.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1504291759.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1505141121.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1505141126.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1506050539.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1506050547.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1509081425.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1509081436.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1602221551.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1602221559.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1610051051.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1610051056.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1610201517.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1610201523.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1612151849.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1612151900.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1701131523.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1701131542.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1702021713.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1702021720.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1702171850.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1702171856.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1703090219.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1703090226.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1703231639.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1703231703.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1703281328.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1703281336.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1705011710.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1705011717.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1706200304.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1706200309.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1706221129.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1706221151.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1706261347.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1706261354.0.ealf -rw-r--r-- 1 root wheel 817 Apr 25 2019 MP61.AAPLEFI5.88Z.9982.I99.1708080652.0.ealf /usr/libexec/firmwarecheckers/eficheck/localization: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 6 root wheel 192 Feb 7 23:29 .. drwxr-xr-x 3 root wheel 96 Apr 25 2019 Contents /usr/libexec/firmwarecheckers/eficheck/localization/Contents: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 3 root wheel 96 Apr 25 2019 .. drwxr-xr-x 41 root wheel 1312 May 3 2019 Resources /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources: total 0 drwxr-xr-x 41 root wheel 1312 May 3 2019 . drwxr-xr-x 3 root wheel 96 Apr 25 2019 .. drwxr-xr-x 3 root wheel 96 Apr 25 2019 Dutch.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 English.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 French.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 German.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 Italian.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 Japanese.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 Spanish.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 ar.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 ca.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 cs.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 da.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 el.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 en_AU.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 en_GB.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 es_419.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 fi.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 fr_CA.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 he.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 hi.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 hr.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 hu.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 id.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 ko.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 ms.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 no.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 pl.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 pt.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 pt_PT.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 ro.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 ru.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 sk.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 sv.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 th.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 tr.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 uk.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 vi.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 zh_CN.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 zh_HK.lproj drwxr-xr-x 3 root wheel 96 Apr 25 2019 zh_TW.lproj /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/Dutch.lproj: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 41 root wheel 1312 May 3 2019 .. -rw-r--r-- 1 root wheel 391 Apr 25 2019 Localizable.strings /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/English.lproj: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 41 root wheel 1312 May 3 2019 .. -rw-r--r-- 1 root wheel 412 Apr 25 2019 Localizable.strings /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/French.lproj: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 41 root wheel 1312 May 3 2019 .. -rw-r--r-- 1 root wheel 513 Apr 25 2019 Localizable.strings /usr/libexec/firmwarecheckers/eficheck/localization/Contents/Resources/German.lproj: total 0 drwxr-xr-x 3 root wheel 96 Apr 25 2019 . drwxr-xr-x 41 root wheel 1312 May 3 2019 .. -rw-r--r-- 1 root wheel 456 Apr 25 2019 Localizable.stringsjc-1.17.3/tests/fixtures/osx-10.14.6/ls-alh-streaming.json000066400000000000000000000100421415226333200226700ustar00rootroot00000000000000[{"filename":".","flags":"drwxr-xr-x","links":34,"owner":"root","group":"wheel","size":1,"date":"Dec 12 00:13"},{"filename":"..","flags":"drwxr-xr-x","links":34,"owner":"root","group":"wheel","size":1,"date":"Dec 12 00:13"},{"filename":".DS_Store","flags":"-rw-rw-r--","links":1,"owner":"root","group":"admin","size":8,"date":"Jul 25 18:21"},{"filename":".DocumentRevisions-V100","flags":"d--x--x--x","links":9,"owner":"root","group":"wheel","size":288,"date":"Dec 12 00:14"},{"filename":".OSInstallerMessages","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":992,"date":"Dec 12 00:13"},{"filename":".PKInstallSandboxManager","flags":"drwxr-xr-x","links":2,"owner":"root","group":"wheel","size":64,"date":"May 4 2019"},{"filename":".PKInstallSandboxManager-SystemSoftware","flags":"drwx------","links":2,"owner":"root","group":"admin","size":64,"date":"Dec 12 00:13"},{"filename":".Spotlight-V100","flags":"drwx------","links":5,"owner":"root","group":"wheel","size":160,"date":"May 4 2019"},{"filename":".file","flags":"----------","links":1,"owner":"root","group":"admin","size":0,"date":"Feb 25 2019"},{"filename":".fseventsd","flags":"drwx------","links":68,"owner":"kbrazil","group":"staff","size":2,"date":"Dec 12 09:47"},{"filename":".vol","flags":"drwxr-xr-x","links":2,"owner":"root","group":"wheel","size":64,"date":"Feb 25 2019"},{"filename":"Applications","flags":"drwxrwxr-x+","links":73,"owner":"root","group":"admin","size":2,"date":"Dec 12 00:36"},{"filename":"Library","flags":"drwxr-xr-x+","links":69,"owner":"root","group":"wheel","size":2,"date":"Dec 12 00:35"},{"filename":"Network","flags":"drwxr-xr-x","links":2,"owner":"root","group":"wheel","size":64,"date":"Feb 25 2019"},{"filename":"System","flags":"drwxr-xr-x@","links":5,"owner":"root","group":"wheel","size":160,"date":"May 3 2019"},{"filename":"Users","flags":"drwxr-xr-x","links":8,"owner":"root","group":"admin","size":256,"date":"Oct 14 07:21"},{"filename":"Volumes","flags":"drwxr-xr-x+","links":6,"owner":"root","group":"wheel","size":192,"date":"Dec 12 08:56"},{"filename":"bin","flags":"drwxr-xr-x@","links":37,"owner":"root","group":"wheel","size":1,"date":"Dec 12 00:12"},{"filename":"cores","flags":"drwxrwxr-t","links":2,"owner":"root","group":"admin","size":64,"date":"Feb 25 2019"},{"filename":"dev","flags":"dr-xr-xr-x","links":3,"owner":"root","group":"wheel","size":7,"date":"Dec 12 00:14"},{"filename":"etc","link_to":"private/etc","flags":"lrwxr-xr-x@","links":1,"owner":"root","group":"wheel","size":11,"date":"May 4 2019"},{"filename":"home","flags":"dr-xr-xr-x","links":2,"owner":"root","group":"wheel","size":1,"date":"Dec 12 07:41"},{"filename":"installer.failurerequests","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":313,"date":"Feb 24 2019"},{"filename":"net","flags":"dr-xr-xr-x","links":2,"owner":"root","group":"wheel","size":1,"date":"Dec 12 07:41"},{"filename":"obj_1_uhYWBO","flags":"-rw-------","links":1,"owner":"root","group":"wheel","size":12,"date":"Jul 30 21:02"},{"filename":"obj_2_Q0HjZP","flags":"-rw-------","links":1,"owner":"root","group":"wheel","size":8,"date":"Jul 30 21:02"},{"filename":"obj_3_OUvCmT","flags":"-rw-------","links":1,"owner":"root","group":"wheel","size":16,"date":"Jul 30 21:02"},{"filename":"obj_4_q0hkvG","flags":"-rw-------","links":1,"owner":"root","group":"wheel","size":16,"date":"Jul 30 21:02"},{"filename":"obj_5_qmI8ZT","flags":"-rw-------","links":1,"owner":"root","group":"wheel","size":9,"date":"Jul 30 21:02"},{"filename":"private","flags":"drwxr-xr-x","links":6,"owner":"root","group":"wheel","size":192,"date":"May 3 2019"},{"filename":"sbin","flags":"drwxr-xr-x@","links":64,"owner":"root","group":"wheel","size":2,"date":"Dec 12 00:12"},{"filename":"tmp","link_to":"private/tmp","flags":"lrwxr-xr-x@","links":1,"owner":"root","group":"wheel","size":11,"date":"May 4 2019"},{"filename":"usr","flags":"drwxr-xr-x@","links":9,"owner":"root","group":"wheel","size":288,"date":"May 3 2019"},{"filename":"var","link_to":"private/var","flags":"lrwxr-xr-x@","links":1,"owner":"root","group":"wheel","size":11,"date":"May 4 2019"}] jc-1.17.3/tests/fixtures/osx-10.14.6/ls-alh.json000066400000000000000000000100421415226333200207010ustar00rootroot00000000000000[{"filename":".","flags":"drwxr-xr-x","links":34,"owner":"root","group":"wheel","size":1,"date":"Dec 12 00:13"},{"filename":"..","flags":"drwxr-xr-x","links":34,"owner":"root","group":"wheel","size":1,"date":"Dec 12 00:13"},{"filename":".DS_Store","flags":"-rw-rw-r--","links":1,"owner":"root","group":"admin","size":8,"date":"Jul 25 18:21"},{"filename":".DocumentRevisions-V100","flags":"d--x--x--x","links":9,"owner":"root","group":"wheel","size":288,"date":"Dec 12 00:14"},{"filename":".OSInstallerMessages","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":992,"date":"Dec 12 00:13"},{"filename":".PKInstallSandboxManager","flags":"drwxr-xr-x","links":2,"owner":"root","group":"wheel","size":64,"date":"May 4 2019"},{"filename":".PKInstallSandboxManager-SystemSoftware","flags":"drwx------","links":2,"owner":"root","group":"admin","size":64,"date":"Dec 12 00:13"},{"filename":".Spotlight-V100","flags":"drwx------","links":5,"owner":"root","group":"wheel","size":160,"date":"May 4 2019"},{"filename":".file","flags":"----------","links":1,"owner":"root","group":"admin","size":0,"date":"Feb 25 2019"},{"filename":".fseventsd","flags":"drwx------","links":68,"owner":"kbrazil","group":"staff","size":2,"date":"Dec 12 09:47"},{"filename":".vol","flags":"drwxr-xr-x","links":2,"owner":"root","group":"wheel","size":64,"date":"Feb 25 2019"},{"filename":"Applications","flags":"drwxrwxr-x+","links":73,"owner":"root","group":"admin","size":2,"date":"Dec 12 00:36"},{"filename":"Library","flags":"drwxr-xr-x+","links":69,"owner":"root","group":"wheel","size":2,"date":"Dec 12 00:35"},{"filename":"Network","flags":"drwxr-xr-x","links":2,"owner":"root","group":"wheel","size":64,"date":"Feb 25 2019"},{"filename":"System","flags":"drwxr-xr-x@","links":5,"owner":"root","group":"wheel","size":160,"date":"May 3 2019"},{"filename":"Users","flags":"drwxr-xr-x","links":8,"owner":"root","group":"admin","size":256,"date":"Oct 14 07:21"},{"filename":"Volumes","flags":"drwxr-xr-x+","links":6,"owner":"root","group":"wheel","size":192,"date":"Dec 12 08:56"},{"filename":"bin","flags":"drwxr-xr-x@","links":37,"owner":"root","group":"wheel","size":1,"date":"Dec 12 00:12"},{"filename":"cores","flags":"drwxrwxr-t","links":2,"owner":"root","group":"admin","size":64,"date":"Feb 25 2019"},{"filename":"dev","flags":"dr-xr-xr-x","links":3,"owner":"root","group":"wheel","size":7,"date":"Dec 12 00:14"},{"filename":"etc","link_to":"private/etc","flags":"lrwxr-xr-x@","links":1,"owner":"root","group":"wheel","size":11,"date":"May 4 2019"},{"filename":"home","flags":"dr-xr-xr-x","links":2,"owner":"root","group":"wheel","size":1,"date":"Dec 12 07:41"},{"filename":"installer.failurerequests","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":313,"date":"Feb 24 2019"},{"filename":"net","flags":"dr-xr-xr-x","links":2,"owner":"root","group":"wheel","size":1,"date":"Dec 12 07:41"},{"filename":"obj_1_uhYWBO","flags":"-rw-------","links":1,"owner":"root","group":"wheel","size":12,"date":"Jul 30 21:02"},{"filename":"obj_2_Q0HjZP","flags":"-rw-------","links":1,"owner":"root","group":"wheel","size":8,"date":"Jul 30 21:02"},{"filename":"obj_3_OUvCmT","flags":"-rw-------","links":1,"owner":"root","group":"wheel","size":16,"date":"Jul 30 21:02"},{"filename":"obj_4_q0hkvG","flags":"-rw-------","links":1,"owner":"root","group":"wheel","size":16,"date":"Jul 30 21:02"},{"filename":"obj_5_qmI8ZT","flags":"-rw-------","links":1,"owner":"root","group":"wheel","size":9,"date":"Jul 30 21:02"},{"filename":"private","flags":"drwxr-xr-x","links":6,"owner":"root","group":"wheel","size":192,"date":"May 3 2019"},{"filename":"sbin","flags":"drwxr-xr-x@","links":64,"owner":"root","group":"wheel","size":2,"date":"Dec 12 00:12"},{"filename":"tmp","link_to":"private/tmp","flags":"lrwxr-xr-x@","links":1,"owner":"root","group":"wheel","size":11,"date":"May 4 2019"},{"filename":"usr","flags":"drwxr-xr-x@","links":9,"owner":"root","group":"wheel","size":288,"date":"May 3 2019"},{"filename":"var","link_to":"private/var","flags":"lrwxr-xr-x@","links":1,"owner":"root","group":"wheel","size":11,"date":"May 4 2019"}] jc-1.17.3/tests/fixtures/osx-10.14.6/ls-alh.out000077500000000000000000000040771415226333200205550ustar00rootroot00000000000000total 196 drwxr-xr-x 34 root wheel 1.1K Dec 12 00:13 . drwxr-xr-x 34 root wheel 1.1K Dec 12 00:13 .. -rw-rw-r-- 1 root admin 8.0K Jul 25 18:21 .DS_Store d--x--x--x 9 root wheel 288B Dec 12 00:14 .DocumentRevisions-V100 -rw-r--r-- 1 root wheel 992B Dec 12 00:13 .OSInstallerMessages drwxr-xr-x 2 root wheel 64B May 4 2019 .PKInstallSandboxManager drwx------ 2 root admin 64B Dec 12 00:13 .PKInstallSandboxManager-SystemSoftware drwx------ 5 root wheel 160B May 4 2019 .Spotlight-V100 ---------- 1 root admin 0B Feb 25 2019 .file drwx------ 68 kbrazil staff 2.1K Dec 12 09:47 .fseventsd drwxr-xr-x 2 root wheel 64B Feb 25 2019 .vol drwxrwxr-x+ 73 root admin 2.3K Dec 12 00:36 Applications drwxr-xr-x+ 69 root wheel 2.2K Dec 12 00:35 Library drwxr-xr-x 2 root wheel 64B Feb 25 2019 Network drwxr-xr-x@ 5 root wheel 160B May 3 2019 System drwxr-xr-x 8 root admin 256B Oct 14 07:21 Users drwxr-xr-x+ 6 root wheel 192B Dec 12 08:56 Volumes drwxr-xr-x@ 37 root wheel 1.2K Dec 12 00:12 bin drwxrwxr-t 2 root admin 64B Feb 25 2019 cores dr-xr-xr-x 3 root wheel 7.5K Dec 12 00:14 dev lrwxr-xr-x@ 1 root wheel 11B May 4 2019 etc -> private/etc dr-xr-xr-x 2 root wheel 1B Dec 12 07:41 home -rw-r--r-- 1 root wheel 313B Feb 24 2019 installer.failurerequests dr-xr-xr-x 2 root wheel 1B Dec 12 07:41 net -rw------- 1 root wheel 12K Jul 30 21:02 obj_1_uhYWBO -rw------- 1 root wheel 8.9K Jul 30 21:02 obj_2_Q0HjZP -rw------- 1 root wheel 16K Jul 30 21:02 obj_3_OUvCmT -rw------- 1 root wheel 16K Jul 30 21:02 obj_4_q0hkvG -rw------- 1 root wheel 9.2K Jul 30 21:02 obj_5_qmI8ZT drwxr-xr-x 6 root wheel 192B May 3 2019 private drwxr-xr-x@ 64 root wheel 2.0K Dec 12 00:12 sbin lrwxr-xr-x@ 1 root wheel 11B May 4 2019 tmp -> private/tmp drwxr-xr-x@ 9 root wheel 288B May 3 2019 usr lrwxr-xr-x@ 1 root wheel 11B May 4 2019 var -> private/var jc-1.17.3/tests/fixtures/osx-10.14.6/ls-glob.json000066400000000000000000002626301415226333200210740ustar00rootroot00000000000000[{"filename": "2to3-", "parent": "/usr/bin"}, {"filename": "2to3-2.7", "parent": "/usr/bin"}, {"filename": "AssetCacheLocatorUtil", "parent": "/usr/bin"}, {"filename": "AssetCacheManagerUtil", "parent": "/usr/bin"}, {"filename": "AssetCacheTetheratorUtil", "parent": "/usr/bin"}, {"filename": "BuildStrings", "parent": "/usr/bin"}, {"filename": "CpMac", "parent": "/usr/bin"}, {"filename": "DeRez", "parent": "/usr/bin"}, {"filename": "GetFileInfo", "parent": "/usr/bin"}, {"filename": "IOAccelMemory", "parent": "/usr/bin"}, {"filename": "MergePef", "parent": "/usr/bin"}, {"filename": "MvMac", "parent": "/usr/bin"}, {"filename": "ResMerger", "parent": "/usr/bin"}, {"filename": "Rez", "parent": "/usr/bin"}, {"filename": "RezDet", "parent": "/usr/bin"}, {"filename": "RezWack", "parent": "/usr/bin"}, {"filename": "SafeEjectGPU", "parent": "/usr/bin"}, {"filename": "SetFile", "parent": "/usr/bin"}, {"filename": "SplitForks", "parent": "/usr/bin"}, {"filename": "UnRezWack", "parent": "/usr/bin"}, {"filename": "a2p", "parent": "/usr/bin"}, {"filename": "a2p5.18", "parent": "/usr/bin"}, {"filename": "actool", "parent": "/usr/bin"}, {"filename": "addftinfo", "parent": "/usr/bin"}, {"filename": "afclip", "parent": "/usr/bin"}, {"filename": "afconvert", "parent": "/usr/bin"}, {"filename": "afhash", "parent": "/usr/bin"}, {"filename": "afida", "parent": "/usr/bin"}, {"filename": "afinfo", "parent": "/usr/bin"}, {"filename": "afmtodit", "parent": "/usr/bin"}, {"filename": "afplay", "parent": "/usr/bin"}, {"filename": "afscexpand", "parent": "/usr/bin"}, {"filename": "agentxtrap", "parent": "/usr/bin"}, {"filename": "agvtool", "parent": "/usr/bin"}, {"filename": "alias", "parent": "/usr/bin"}, {"filename": "applesingle", "parent": "/usr/bin"}, {"filename": "appletviewer", "parent": "/usr/bin"}, {"filename": "apply", "parent": "/usr/bin"}, {"filename": "apropos", "parent": "/usr/bin"}, {"filename": "apt", "parent": "/usr/bin"}, {"filename": "ar", "parent": "/usr/bin"}, {"filename": "arch", "parent": "/usr/bin"}, {"filename": "as", "parent": "/usr/bin"}, {"filename": "asa", "parent": "/usr/bin"}, {"filename": "asctl", "parent": "/usr/bin"}, {"filename": "assetutil", "parent": "/usr/bin"}, {"filename": "at", "parent": "/usr/bin"}, {"filename": "atos", "parent": "/usr/bin"}, {"filename": "atq", "parent": "/usr/bin"}, {"filename": "atrm", "parent": "/usr/bin"}, {"filename": "atsutil", "parent": "/usr/bin"}, {"filename": "automator", "parent": "/usr/bin"}, {"filename": "auval", "parent": "/usr/bin"}, {"filename": "auvaltool", "parent": "/usr/bin"}, {"filename": "avbdiagnose", "parent": "/usr/bin"}, {"filename": "avbutil", "parent": "/usr/bin"}, {"filename": "avconvert", "parent": "/usr/bin"}, {"filename": "avmetareadwrite", "parent": "/usr/bin"}, {"filename": "awk", "parent": "/usr/bin"}, {"filename": "banner", "parent": "/usr/bin"}, {"filename": "base64", "parent": "/usr/bin"}, {"filename": "basename", "parent": "/usr/bin"}, {"filename": "bashbug", "parent": "/usr/bin"}, {"filename": "batch", "parent": "/usr/bin"}, {"filename": "bc", "parent": "/usr/bin"}, {"filename": "bg", "parent": "/usr/bin"}, {"filename": "biff", "parent": "/usr/bin"}, {"filename": "binhex", "parent": "/usr/bin"}, {"filename": "binhex.pl", "parent": "/usr/bin"}, {"filename": "binhex5.18.pl", "parent": "/usr/bin"}, {"filename": "bioutil", "parent": "/usr/bin"}, {"filename": "bison", "parent": "/usr/bin"}, {"filename": "bitesize.d", "parent": "/usr/bin"}, {"filename": "brctl", "parent": "/usr/bin"}, {"filename": "bsdtar", "parent": "/usr/bin"}, {"filename": "bspatch", "parent": "/usr/bin"}, {"filename": "btmmdiagnose", "parent": "/usr/bin"}, {"filename": "bunzip2", "parent": "/usr/bin"}, {"filename": "bzcat", "parent": "/usr/bin"}, {"filename": "bzcmp", "parent": "/usr/bin"}, {"filename": "bzdiff", "parent": "/usr/bin"}, {"filename": "bzegrep", "parent": "/usr/bin"}, {"filename": "bzfgrep", "parent": "/usr/bin"}, {"filename": "bzgrep", "parent": "/usr/bin"}, {"filename": "bzip2", "parent": "/usr/bin"}, {"filename": "bzip2recover", "parent": "/usr/bin"}, {"filename": "bzless", "parent": "/usr/bin"}, {"filename": "bzmore", "parent": "/usr/bin"}, {"filename": "c++", "parent": "/usr/bin"}, {"filename": "c++filt", "parent": "/usr/bin"}, {"filename": "c2ph", "parent": "/usr/bin"}, {"filename": "c2ph5.18", "parent": "/usr/bin"}, {"filename": "c89", "parent": "/usr/bin"}, {"filename": "c99", "parent": "/usr/bin"}, {"filename": "caffeinate", "parent": "/usr/bin"}, {"filename": "cal", "parent": "/usr/bin"}, {"filename": "calendar", "parent": "/usr/bin"}, {"filename": "cancel", "parent": "/usr/bin"}, {"filename": "cap_mkdb", "parent": "/usr/bin"}, {"filename": "captoinfo", "parent": "/usr/bin"}, {"filename": "cc", "parent": "/usr/bin"}, {"filename": "cd", "parent": "/usr/bin"}, {"filename": "certtool", "parent": "/usr/bin"}, {"filename": "checknr", "parent": "/usr/bin"}, {"filename": "chflags", "parent": "/usr/bin"}, {"filename": "chfn", "parent": "/usr/bin"}, {"filename": "chgrp", "parent": "/usr/bin"}, {"filename": "chpass", "parent": "/usr/bin"}, {"filename": "chsh", "parent": "/usr/bin"}, {"filename": "cksum", "parent": "/usr/bin"}, {"filename": "clang", "parent": "/usr/bin"}, {"filename": "clang++", "parent": "/usr/bin"}, {"filename": "clear", "parent": "/usr/bin"}, {"filename": "cmp", "parent": "/usr/bin"}, {"filename": "cmpdylib", "parent": "/usr/bin"}, {"filename": "codesign", "parent": "/usr/bin"}, {"filename": "codesign_allocate", "parent": "/usr/bin"}, {"filename": "col", "parent": "/usr/bin"}, {"filename": "colcrt", "parent": "/usr/bin"}, {"filename": "colldef", "parent": "/usr/bin"}, {"filename": "colrm", "parent": "/usr/bin"}, {"filename": "column", "parent": "/usr/bin"}, {"filename": "comm", "parent": "/usr/bin"}, {"filename": "command", "parent": "/usr/bin"}, {"filename": "compress", "parent": "/usr/bin"}, {"filename": "compression_tool", "parent": "/usr/bin"}, {"filename": "config_data", "parent": "/usr/bin"}, {"filename": "config_data5.18", "parent": "/usr/bin"}, {"filename": "corebrightnessdiag", "parent": "/usr/bin"}, {"filename": "corelist", "parent": "/usr/bin"}, {"filename": "corelist5.18", "parent": "/usr/bin"}, {"filename": "cpan", "parent": "/usr/bin"}, {"filename": "cpan2dist", "parent": "/usr/bin"}, {"filename": "cpan2dist5.18", "parent": "/usr/bin"}, {"filename": "cpan5.18", "parent": "/usr/bin"}, {"filename": "cpanp", "parent": "/usr/bin"}, {"filename": "cpanp-run-perl", "parent": "/usr/bin"}, {"filename": "cpanp-run-perl5.18", "parent": "/usr/bin"}, {"filename": "cpanp5.18", "parent": "/usr/bin"}, {"filename": "cpio", "parent": "/usr/bin"}, {"filename": "cpp", "parent": "/usr/bin"}, {"filename": "cpu_profiler.d", "parent": "/usr/bin"}, {"filename": "cpuwalk.d", "parent": "/usr/bin"}, {"filename": "crc32", "parent": "/usr/bin"}, {"filename": "crc325.18", "parent": "/usr/bin"}, {"filename": "creatbyproc.d", "parent": "/usr/bin"}, {"filename": "crlrefresh", "parent": "/usr/bin"}, {"filename": "crontab", "parent": "/usr/bin"}, {"filename": "csdiagnose", "parent": "/usr/bin"}, {"filename": "csgather", "parent": "/usr/bin"}, {"filename": "csplit", "parent": "/usr/bin"}, {"filename": "csreq", "parent": "/usr/bin"}, {"filename": "csrutil", "parent": "/usr/bin"}, {"filename": "ctags", "parent": "/usr/bin"}, {"filename": "ctf_insert", "parent": "/usr/bin"}, {"filename": "cu", "parent": "/usr/bin"}, {"filename": "cups-config", "parent": "/usr/bin"}, {"filename": "cupstestdsc", "parent": "/usr/bin"}, {"filename": "cupstestppd", "parent": "/usr/bin"}, {"filename": "curl", "parent": "/usr/bin"}, {"filename": "curl-config", "parent": "/usr/bin"}, {"filename": "cut", "parent": "/usr/bin"}, {"filename": "cvaffinity", "parent": "/usr/bin"}, {"filename": "cvcp", "parent": "/usr/bin"}, {"filename": "cvmkdir", "parent": "/usr/bin"}, {"filename": "cvmkfile", "parent": "/usr/bin"}, {"filename": "dappprof", "parent": "/usr/bin"}, {"filename": "dapptrace", "parent": "/usr/bin"}, {"filename": "darwinup", "parent": "/usr/bin"}, {"filename": "db_archive", "parent": "/usr/bin"}, {"filename": "db_checkpoint", "parent": "/usr/bin"}, {"filename": "db_codegen", "parent": "/usr/bin"}, {"filename": "db_deadlock", "parent": "/usr/bin"}, {"filename": "db_dump", "parent": "/usr/bin"}, {"filename": "db_hotbackup", "parent": "/usr/bin"}, {"filename": "db_load", "parent": "/usr/bin"}, {"filename": "db_printlog", "parent": "/usr/bin"}, {"filename": "db_recover", "parent": "/usr/bin"}, {"filename": "db_stat", "parent": "/usr/bin"}, {"filename": "db_upgrade", "parent": "/usr/bin"}, {"filename": "db_verify", "parent": "/usr/bin"}, {"filename": "dbicadmin", "parent": "/usr/bin"}, {"filename": "dbicadmin5.18", "parent": "/usr/bin"}, {"filename": "dbilogstrip", "parent": "/usr/bin"}, {"filename": "dbilogstrip5.18", "parent": "/usr/bin"}, {"filename": "dbiprof", "parent": "/usr/bin"}, {"filename": "dbiprof5.18", "parent": "/usr/bin"}, {"filename": "dbiproxy", "parent": "/usr/bin"}, {"filename": "dbiproxy5.18", "parent": "/usr/bin"}, {"filename": "dc", "parent": "/usr/bin"}, {"filename": "debinhex.pl", "parent": "/usr/bin"}, {"filename": "debinhex5.18.pl", "parent": "/usr/bin"}, {"filename": "defaults", "parent": "/usr/bin"}, {"filename": "delv", "parent": "/usr/bin"}, {"filename": "desdp", "parent": "/usr/bin"}, {"filename": "diagnose-fu", "parent": "/usr/bin"}, {"filename": "diff", "parent": "/usr/bin"}, {"filename": "diff3", "parent": "/usr/bin"}, {"filename": "diffstat", "parent": "/usr/bin"}, {"filename": "dig", "parent": "/usr/bin"}, {"filename": "dirname", "parent": "/usr/bin"}, {"filename": "dispqlen.d", "parent": "/usr/bin"}, {"filename": "ditto", "parent": "/usr/bin"}, {"filename": "dmc", "parent": "/usr/bin"}, {"filename": "dns-sd", "parent": "/usr/bin"}, {"filename": "drutil", "parent": "/usr/bin"}, {"filename": "dscacheutil", "parent": "/usr/bin"}, {"filename": "dscl", "parent": "/usr/bin"}, {"filename": "dserr", "parent": "/usr/bin"}, {"filename": "dsexport", "parent": "/usr/bin"}, {"filename": "dsimport", "parent": "/usr/bin"}, {"filename": "dsmemberutil", "parent": "/usr/bin"}, {"filename": "dsymutil", "parent": "/usr/bin"}, {"filename": "dtruss", "parent": "/usr/bin"}, {"filename": "du", "parent": "/usr/bin"}, {"filename": "dwarfdump", "parent": "/usr/bin"}, {"filename": "easy_install", "parent": "/usr/bin"}, {"filename": "easy_install-2.7", "parent": "/usr/bin"}, {"filename": "egrep", "parent": "/usr/bin"}, {"filename": "emacs", "parent": "/usr/bin"}, {"filename": "emacs-undumped", "parent": "/usr/bin"}, {"filename": "emacsclient", "parent": "/usr/bin"}, {"filename": "enc2xs", "parent": "/usr/bin"}, {"filename": "enc2xs5.18", "parent": "/usr/bin"}, {"filename": "encode_keychange", "parent": "/usr/bin"}, {"filename": "env", "parent": "/usr/bin"}, {"filename": "eqn", "parent": "/usr/bin"}, {"filename": "erb", "parent": "/usr/bin"}, {"filename": "errinfo", "parent": "/usr/bin"}, {"filename": "etags", "parent": "/usr/bin"}, {"filename": "ex", "parent": "/usr/bin"}, {"filename": "execsnoop", "parent": "/usr/bin"}, {"filename": "expand", "parent": "/usr/bin"}, {"filename": "expect", "parent": "/usr/bin"}, {"filename": "extcheck", "parent": "/usr/bin"}, {"filename": "eyapp", "parent": "/usr/bin"}, {"filename": "eyapp5.18", "parent": "/usr/bin"}, {"filename": "false", "parent": "/usr/bin"}, {"filename": "fc", "parent": "/usr/bin"}, {"filename": "fddist", "parent": "/usr/bin"}, {"filename": "fdesetup", "parent": "/usr/bin"}, {"filename": "fg", "parent": "/usr/bin"}, {"filename": "fgrep", "parent": "/usr/bin"}, {"filename": "file", "parent": "/usr/bin"}, {"filename": "filebyproc.d", "parent": "/usr/bin"}, {"filename": "filtercalltree", "parent": "/usr/bin"}, {"filename": "find", "parent": "/usr/bin"}, {"filename": "find2perl", "parent": "/usr/bin"}, {"filename": "find2perl5.18", "parent": "/usr/bin"}, {"filename": "findrule", "parent": "/usr/bin"}, {"filename": "findrule5.18", "parent": "/usr/bin"}, {"filename": "finger", "parent": "/usr/bin"}, {"filename": "fixproc", "parent": "/usr/bin"}, {"filename": "flex", "parent": "/usr/bin"}, {"filename": "flex++", "parent": "/usr/bin"}, {"filename": "fmt", "parent": "/usr/bin"}, {"filename": "fold", "parent": "/usr/bin"}, {"filename": "fontrestore", "parent": "/usr/bin"}, {"filename": "footprint", "parent": "/usr/bin"}, {"filename": "format-sql", "parent": "/usr/bin"}, {"filename": "format-sql5.18", "parent": "/usr/bin"}, {"filename": "from", "parent": "/usr/bin"}, {"filename": "fs_usage", "parent": "/usr/bin"}, {"filename": "funzip", "parent": "/usr/bin"}, {"filename": "fuser", "parent": "/usr/bin"}, {"filename": "fwkdp", "parent": "/usr/bin"}, {"filename": "fwkpfv", "parent": "/usr/bin"}, {"filename": "g++", "parent": "/usr/bin"}, {"filename": "gatherheaderdoc", "parent": "/usr/bin"}, {"filename": "gcc", "parent": "/usr/bin"}, {"filename": "gcore", "parent": "/usr/bin"}, {"filename": "gcov", "parent": "/usr/bin"}, {"filename": "gdiffmk", "parent": "/usr/bin"}, {"filename": "gem", "parent": "/usr/bin"}, {"filename": "gen_bridge_metadata", "parent": "/usr/bin"}, {"filename": "gencat", "parent": "/usr/bin"}, {"filename": "genstrings", "parent": "/usr/bin"}, {"filename": "getconf", "parent": "/usr/bin"}, {"filename": "getopt", "parent": "/usr/bin"}, {"filename": "getopts", "parent": "/usr/bin"}, {"filename": "git", "parent": "/usr/bin"}, {"filename": "git-cvsserver", "parent": "/usr/bin"}, {"filename": "git-receive-pack", "parent": "/usr/bin"}, {"filename": "git-shell", "parent": "/usr/bin"}, {"filename": "git-upload-archive", "parent": "/usr/bin"}, {"filename": "git-upload-pack", "parent": "/usr/bin"}, {"filename": "gm4", "parent": "/usr/bin"}, {"filename": "gnumake", "parent": "/usr/bin"}, {"filename": "gperf", "parent": "/usr/bin"}, {"filename": "grep", "parent": "/usr/bin"}, {"filename": "grn", "parent": "/usr/bin"}, {"filename": "grodvi", "parent": "/usr/bin"}, {"filename": "groff", "parent": "/usr/bin"}, {"filename": "groffer", "parent": "/usr/bin"}, {"filename": "grog", "parent": "/usr/bin"}, {"filename": "grolbp", "parent": "/usr/bin"}, {"filename": "grolj4", "parent": "/usr/bin"}, {"filename": "grops", "parent": "/usr/bin"}, {"filename": "grotty", "parent": "/usr/bin"}, {"filename": "groups", "parent": "/usr/bin"}, {"filename": "gunzip", "parent": "/usr/bin"}, {"filename": "gzcat", "parent": "/usr/bin"}, {"filename": "gzexe", "parent": "/usr/bin"}, {"filename": "gzip", "parent": "/usr/bin"}, {"filename": "h2ph", "parent": "/usr/bin"}, {"filename": "h2ph5.18", "parent": "/usr/bin"}, {"filename": "h2xs", "parent": "/usr/bin"}, {"filename": "h2xs5.18", "parent": "/usr/bin"}, {"filename": "hash", "parent": "/usr/bin"}, {"filename": "hdid", "parent": "/usr/bin"}, {"filename": "hdiutil", "parent": "/usr/bin"}, {"filename": "hdxml2manxml", "parent": "/usr/bin"}, {"filename": "head", "parent": "/usr/bin"}, {"filename": "headerdoc2html", "parent": "/usr/bin"}, {"filename": "heap", "parent": "/usr/bin"}, {"filename": "heap32", "parent": "/usr/bin"}, {"filename": "hexdump", "parent": "/usr/bin"}, {"filename": "hidutil", "parent": "/usr/bin"}, {"filename": "hiutil", "parent": "/usr/bin"}, {"filename": "host", "parent": "/usr/bin"}, {"filename": "hostinfo", "parent": "/usr/bin"}, {"filename": "hotspot.d", "parent": "/usr/bin"}, {"filename": "hpftodit", "parent": "/usr/bin"}, {"filename": "hpmdiagnose", "parent": "/usr/bin"}, {"filename": "htmltree", "parent": "/usr/bin"}, {"filename": "htmltree5.18", "parent": "/usr/bin"}, {"filename": "ibtool", "parent": "/usr/bin"}, {"filename": "iconutil", "parent": "/usr/bin"}, {"filename": "iconv", "parent": "/usr/bin"}, {"filename": "ictool", "parent": "/usr/bin"}, {"filename": "id", "parent": "/usr/bin"}, {"filename": "idle", "parent": "/usr/bin"}, {"filename": "idle2.7", "parent": "/usr/bin"}, {"filename": "idlj", "parent": "/usr/bin"}, {"filename": "imptrace", "parent": "/usr/bin"}, {"filename": "indent", "parent": "/usr/bin"}, {"filename": "indxbib", "parent": "/usr/bin"}, {"filename": "info", "parent": "/usr/bin"}, {"filename": "infocmp", "parent": "/usr/bin"}, {"filename": "infokey", "parent": "/usr/bin"}, {"filename": "infotocap", "parent": "/usr/bin"}, {"filename": "install", "parent": "/usr/bin"}, {"filename": "install-info", "parent": "/usr/bin"}, {"filename": "install_name_tool", "parent": "/usr/bin"}, {"filename": "instmodsh", "parent": "/usr/bin"}, {"filename": "instmodsh5.18", "parent": "/usr/bin"}, {"filename": "instruments", "parent": "/usr/bin"}, {"filename": "iofile.d", "parent": "/usr/bin"}, {"filename": "iofileb.d", "parent": "/usr/bin"}, {"filename": "iopattern", "parent": "/usr/bin"}, {"filename": "iopending", "parent": "/usr/bin"}, {"filename": "iosnoop", "parent": "/usr/bin"}, {"filename": "iotop", "parent": "/usr/bin"}, {"filename": "ip2cc", "parent": "/usr/bin"}, {"filename": "ip2cc5.18", "parent": "/usr/bin"}, {"filename": "ipcount", "parent": "/usr/bin"}, {"filename": "ipcount5.18", "parent": "/usr/bin"}, {"filename": "ipcrm", "parent": "/usr/bin"}, {"filename": "ipcs", "parent": "/usr/bin"}, {"filename": "ippfind", "parent": "/usr/bin"}, {"filename": "ipptool", "parent": "/usr/bin"}, {"filename": "iprofiler", "parent": "/usr/bin"}, {"filename": "iptab", "parent": "/usr/bin"}, {"filename": "iptab5.18", "parent": "/usr/bin"}, {"filename": "irb", "parent": "/usr/bin"}, {"filename": "jar", "parent": "/usr/bin"}, {"filename": "jarsigner", "parent": "/usr/bin"}, {"filename": "java", "parent": "/usr/bin"}, {"filename": "javac", "parent": "/usr/bin"}, {"filename": "javadoc", "parent": "/usr/bin"}, {"filename": "javah", "parent": "/usr/bin"}, {"filename": "javap", "parent": "/usr/bin"}, {"filename": "javapackager", "parent": "/usr/bin"}, {"filename": "javaws", "parent": "/usr/bin"}, {"filename": "jcmd", "parent": "/usr/bin"}, {"filename": "jconsole", "parent": "/usr/bin"}, {"filename": "jcontrol", "parent": "/usr/bin"}, {"filename": "jdb", "parent": "/usr/bin"}, {"filename": "jdeps", "parent": "/usr/bin"}, {"filename": "jhat", "parent": "/usr/bin"}, {"filename": "jhsdb", "parent": "/usr/bin"}, {"filename": "jimage", "parent": "/usr/bin"}, {"filename": "jinfo", "parent": "/usr/bin"}, {"filename": "jjs", "parent": "/usr/bin"}, {"filename": "jmap", "parent": "/usr/bin"}, {"filename": "jmc", "parent": "/usr/bin"}, {"filename": "jobs", "parent": "/usr/bin"}, {"filename": "join", "parent": "/usr/bin"}, {"filename": "jot", "parent": "/usr/bin"}, {"filename": "jps", "parent": "/usr/bin"}, {"filename": "jrunscript", "parent": "/usr/bin"}, {"filename": "jsadebugd", "parent": "/usr/bin"}, {"filename": "jshell", "parent": "/usr/bin"}, {"filename": "json_pp", "parent": "/usr/bin"}, {"filename": "json_pp5.18", "parent": "/usr/bin"}, {"filename": "jstack", "parent": "/usr/bin"}, {"filename": "jstat", "parent": "/usr/bin"}, {"filename": "jstatd", "parent": "/usr/bin"}, {"filename": "jvisualvm", "parent": "/usr/bin"}, {"filename": "kcc", "parent": "/usr/bin"}, {"filename": "kdestroy", "parent": "/usr/bin"}, {"filename": "kextutil", "parent": "/usr/bin"}, {"filename": "keytool", "parent": "/usr/bin"}, {"filename": "kgetcred", "parent": "/usr/bin"}, {"filename": "kill.d", "parent": "/usr/bin"}, {"filename": "killall", "parent": "/usr/bin"}, {"filename": "kinit", "parent": "/usr/bin"}, {"filename": "klist", "parent": "/usr/bin"}, {"filename": "kpasswd", "parent": "/usr/bin"}, {"filename": "krb5-config", "parent": "/usr/bin"}, {"filename": "kswitch", "parent": "/usr/bin"}, {"filename": "ktrace", "parent": "/usr/bin"}, {"filename": "lam", "parent": "/usr/bin"}, {"filename": "last", "parent": "/usr/bin"}, {"filename": "lastcomm", "parent": "/usr/bin"}, {"filename": "lastwords", "parent": "/usr/bin"}, {"filename": "latency", "parent": "/usr/bin"}, {"filename": "layerutil", "parent": "/usr/bin"}, {"filename": "ld", "parent": "/usr/bin"}, {"filename": "ldapadd", "parent": "/usr/bin"}, {"filename": "ldapcompare", "parent": "/usr/bin"}, {"filename": "ldapdelete", "parent": "/usr/bin"}, {"filename": "ldapexop", "parent": "/usr/bin"}, {"filename": "ldapmodify", "parent": "/usr/bin"}, {"filename": "ldapmodrdn", "parent": "/usr/bin"}, {"filename": "ldappasswd", "parent": "/usr/bin"}, {"filename": "ldapsearch", "parent": "/usr/bin"}, {"filename": "ldapurl", "parent": "/usr/bin"}, {"filename": "ldapwhoami", "parent": "/usr/bin"}, {"filename": "leaks", "parent": "/usr/bin"}, {"filename": "leaks32", "parent": "/usr/bin"}, {"filename": "leave", "parent": "/usr/bin"}, {"filename": "less", "parent": "/usr/bin"}, {"filename": "lessecho", "parent": "/usr/bin"}, {"filename": "lex", "parent": "/usr/bin"}, {"filename": "libnetcfg", "parent": "/usr/bin"}, {"filename": "libnetcfg5.18", "parent": "/usr/bin"}, {"filename": "libtool", "parent": "/usr/bin"}, {"filename": "lipo", "parent": "/usr/bin"}, {"filename": "lkbib", "parent": "/usr/bin"}, {"filename": "lldb", "parent": "/usr/bin"}, {"filename": "llvm-g++", "parent": "/usr/bin"}, {"filename": "llvm-gcc", "parent": "/usr/bin"}, {"filename": "loads.d", "parent": "/usr/bin"}, {"filename": "locale", "parent": "/usr/bin"}, {"filename": "localedef", "parent": "/usr/bin"}, {"filename": "locate", "parent": "/usr/bin"}, {"filename": "lockstat", "parent": "/usr/bin"}, {"filename": "log", "parent": "/usr/bin"}, {"filename": "logger", "parent": "/usr/bin"}, {"filename": "login", "parent": "/usr/bin"}, {"filename": "logname", "parent": "/usr/bin"}, {"filename": "look", "parent": "/usr/bin"}, {"filename": "lookbib", "parent": "/usr/bin"}, {"filename": "lorder", "parent": "/usr/bin"}, {"filename": "lp", "parent": "/usr/bin"}, {"filename": "lpoptions", "parent": "/usr/bin"}, {"filename": "lpq", "parent": "/usr/bin"}, {"filename": "lpr", "parent": "/usr/bin"}, {"filename": "lprm", "parent": "/usr/bin"}, {"filename": "lpstat", "parent": "/usr/bin"}, {"filename": "lsappinfo", "parent": "/usr/bin"}, {"filename": "lsbom", "parent": "/usr/bin"}, {"filename": "lskq", "parent": "/usr/bin"}, {"filename": "lsm", "parent": "/usr/bin"}, {"filename": "lsmp", "parent": "/usr/bin"}, {"filename": "lsvfs", "parent": "/usr/bin"}, {"filename": "lwp-download", "parent": "/usr/bin"}, {"filename": "lwp-download5.18", "parent": "/usr/bin"}, {"filename": "lwp-dump", "parent": "/usr/bin"}, {"filename": "lwp-dump5.18", "parent": "/usr/bin"}, {"filename": "lwp-mirror", "parent": "/usr/bin"}, {"filename": "lwp-mirror5.18", "parent": "/usr/bin"}, {"filename": "lwp-request", "parent": "/usr/bin"}, {"filename": "lwp-request5.18", "parent": "/usr/bin"}, {"filename": "m4", "parent": "/usr/bin"}, {"filename": "macbinary", "parent": "/usr/bin"}, {"filename": "macerror", "parent": "/usr/bin"}, {"filename": "macerror5.18", "parent": "/usr/bin"}, {"filename": "machine", "parent": "/usr/bin"}, {"filename": "mail", "parent": "/usr/bin"}, {"filename": "mailq", "parent": "/usr/bin"}, {"filename": "mailx", "parent": "/usr/bin"}, {"filename": "make", "parent": "/usr/bin"}, {"filename": "makeinfo", "parent": "/usr/bin"}, {"filename": "malloc_history", "parent": "/usr/bin"}, {"filename": "malloc_history32", "parent": "/usr/bin"}, {"filename": "man", "parent": "/usr/bin"}, {"filename": "manpath", "parent": "/usr/bin"}, {"filename": "mcxquery", "parent": "/usr/bin"}, {"filename": "mcxrefresh", "parent": "/usr/bin"}, {"filename": "mddiagnose", "parent": "/usr/bin"}, {"filename": "mdfind", "parent": "/usr/bin"}, {"filename": "mdimport", "parent": "/usr/bin"}, {"filename": "mdls", "parent": "/usr/bin"}, {"filename": "mdutil", "parent": "/usr/bin"}, {"filename": "memory_pressure", "parent": "/usr/bin"}, {"filename": "mesg", "parent": "/usr/bin"}, {"filename": "mib2c", "parent": "/usr/bin"}, {"filename": "mib2c-update", "parent": "/usr/bin"}, {"filename": "mig", "parent": "/usr/bin"}, {"filename": "mkbom", "parent": "/usr/bin"}, {"filename": "mkdep", "parent": "/usr/bin"}, {"filename": "mkfifo", "parent": "/usr/bin"}, {"filename": "mklocale", "parent": "/usr/bin"}, {"filename": "mktemp", "parent": "/usr/bin"}, {"filename": "mmroff", "parent": "/usr/bin"}, {"filename": "mnthome", "parent": "/usr/bin"}, {"filename": "moo-outdated", "parent": "/usr/bin"}, {"filename": "moo-outdated5.18", "parent": "/usr/bin"}, {"filename": "moose-outdated", "parent": "/usr/bin"}, {"filename": "moose-outdated5.18", "parent": "/usr/bin"}, {"filename": "more", "parent": "/usr/bin"}, {"filename": "mp2bug", "parent": "/usr/bin"}, {"filename": "msgs", "parent": "/usr/bin"}, {"filename": "nano", "parent": "/usr/bin"}, {"filename": "nasm", "parent": "/usr/bin"}, {"filename": "native2ascii", "parent": "/usr/bin"}, {"filename": "nbdst", "parent": "/usr/bin"}, {"filename": "nc", "parent": "/usr/bin"}, {"filename": "ncal", "parent": "/usr/bin"}, {"filename": "ncctl", "parent": "/usr/bin"}, {"filename": "ncdestroy", "parent": "/usr/bin"}, {"filename": "ncinit", "parent": "/usr/bin"}, {"filename": "nclist", "parent": "/usr/bin"}, {"filename": "ncurses5.4-config", "parent": "/usr/bin"}, {"filename": "ndisasm", "parent": "/usr/bin"}, {"filename": "neqn", "parent": "/usr/bin"}, {"filename": "net-server", "parent": "/usr/bin"}, {"filename": "net-server5.18", "parent": "/usr/bin"}, {"filename": "net-snmp-cert", "parent": "/usr/bin"}, {"filename": "net-snmp-config", "parent": "/usr/bin"}, {"filename": "net-snmp-create-v3-user", "parent": "/usr/bin"}, {"filename": "nettop", "parent": "/usr/bin"}, {"filename": "newaliases", "parent": "/usr/bin"}, {"filename": "newgrp", "parent": "/usr/bin"}, {"filename": "newproc.d", "parent": "/usr/bin"}, {"filename": "nfsstat", "parent": "/usr/bin"}, {"filename": "nice", "parent": "/usr/bin"}, {"filename": "nl", "parent": "/usr/bin"}, {"filename": "nm", "parent": "/usr/bin"}, {"filename": "nmedit", "parent": "/usr/bin"}, {"filename": "nohup", "parent": "/usr/bin"}, {"filename": "notifyutil", "parent": "/usr/bin"}, {"filename": "nroff", "parent": "/usr/bin"}, {"filename": "nscurl", "parent": "/usr/bin"}, {"filename": "nslookup", "parent": "/usr/bin"}, {"filename": "nsupdate", "parent": "/usr/bin"}, {"filename": "objdump", "parent": "/usr/bin"}, {"filename": "ocspcheck", "parent": "/usr/bin"}, {"filename": "od", "parent": "/usr/bin"}, {"filename": "odutil", "parent": "/usr/bin"}, {"filename": "open", "parent": "/usr/bin"}, {"filename": "opendiff", "parent": "/usr/bin"}, {"filename": "opensnoop", "parent": "/usr/bin"}, {"filename": "openssl", "parent": "/usr/bin"}, {"filename": "orbd", "parent": "/usr/bin"}, {"filename": "osacompile", "parent": "/usr/bin"}, {"filename": "osadecompile", "parent": "/usr/bin"}, {"filename": "osalang", "parent": "/usr/bin"}, {"filename": "osascript", "parent": "/usr/bin"}, {"filename": "otool", "parent": "/usr/bin"}, {"filename": "pack200", "parent": "/usr/bin"}, {"filename": "package-stash-conflicts", "parent": "/usr/bin"}, {"filename": "package-stash-conflicts5.18", "parent": "/usr/bin"}, {"filename": "pagesize", "parent": "/usr/bin"}, {"filename": "pagestuff", "parent": "/usr/bin"}, {"filename": "par.pl", "parent": "/usr/bin"}, {"filename": "par5.18.pl", "parent": "/usr/bin"}, {"filename": "parl", "parent": "/usr/bin"}, {"filename": "parl5.18", "parent": "/usr/bin"}, {"filename": "parldyn", "parent": "/usr/bin"}, {"filename": "parldyn5.18", "parent": "/usr/bin"}, {"filename": "passwd", "parent": "/usr/bin"}, {"filename": "paste", "parent": "/usr/bin"}, {"filename": "patch", "parent": "/usr/bin"}, {"filename": "pathchk", "parent": "/usr/bin"}, {"filename": "pathopens.d", "parent": "/usr/bin"}, {"filename": "pbcopy", "parent": "/usr/bin"}, {"filename": "pbpaste", "parent": "/usr/bin"}, {"filename": "pcap-config", "parent": "/usr/bin"}, {"filename": "pcsctest", "parent": "/usr/bin"}, {"filename": "perl", "parent": "/usr/bin"}, {"filename": "perl5.18", "parent": "/usr/bin"}, {"filename": "perlbug", "parent": "/usr/bin"}, {"filename": "perlbug5.18", "parent": "/usr/bin"}, {"filename": "perldoc", "parent": "/usr/bin"}, {"filename": "perldoc5.18", "parent": "/usr/bin"}, {"filename": "perlivp", "parent": "/usr/bin"}, {"filename": "perlivp5.18", "parent": "/usr/bin"}, {"filename": "perlthanks", "parent": "/usr/bin"}, {"filename": "perlthanks5.18", "parent": "/usr/bin"}, {"filename": "pfbtops", "parent": "/usr/bin"}, {"filename": "pgrep", "parent": "/usr/bin"}, {"filename": "phar", "parent": "/usr/bin"}, {"filename": "phar.phar", "parent": "/usr/bin"}, {"filename": "php", "parent": "/usr/bin"}, {"filename": "php-config", "parent": "/usr/bin"}, {"filename": "phpize", "parent": "/usr/bin"}, {"filename": "pic", "parent": "/usr/bin"}, {"filename": "pico", "parent": "/usr/bin"}, {"filename": "piconv", "parent": "/usr/bin"}, {"filename": "piconv5.18", "parent": "/usr/bin"}, {"filename": "pidpersec.d", "parent": "/usr/bin"}, {"filename": "pkgbuild", "parent": "/usr/bin"}, {"filename": "pkill", "parent": "/usr/bin"}, {"filename": "pl", "parent": "/usr/bin"}, {"filename": "pl2pm", "parent": "/usr/bin"}, {"filename": "pl2pm5.18", "parent": "/usr/bin"}, {"filename": "plockstat", "parent": "/usr/bin"}, {"filename": "pluginkit", "parent": "/usr/bin"}, {"filename": "plutil", "parent": "/usr/bin"}, {"filename": "pmset", "parent": "/usr/bin"}, {"filename": "pod2html", "parent": "/usr/bin"}, {"filename": "pod2html5.18", "parent": "/usr/bin"}, {"filename": "pod2latex", "parent": "/usr/bin"}, {"filename": "pod2latex5.18", "parent": "/usr/bin"}, {"filename": "pod2man", "parent": "/usr/bin"}, {"filename": "pod2man5.18", "parent": "/usr/bin"}, {"filename": "pod2readme", "parent": "/usr/bin"}, {"filename": "pod2readme5.18", "parent": "/usr/bin"}, {"filename": "pod2text", "parent": "/usr/bin"}, {"filename": "pod2text5.18", "parent": "/usr/bin"}, {"filename": "pod2usage", "parent": "/usr/bin"}, {"filename": "pod2usage5.18", "parent": "/usr/bin"}, {"filename": "podchecker", "parent": "/usr/bin"}, {"filename": "podchecker5.18", "parent": "/usr/bin"}, {"filename": "podselect", "parent": "/usr/bin"}, {"filename": "podselect5.18", "parent": "/usr/bin"}, {"filename": "policytool", "parent": "/usr/bin"}, {"filename": "post-grohtml", "parent": "/usr/bin"}, {"filename": "power_report.sh", "parent": "/usr/bin"}, {"filename": "powermetrics", "parent": "/usr/bin"}, {"filename": "pp", "parent": "/usr/bin"}, {"filename": "pp5.18", "parent": "/usr/bin"}, {"filename": "ppdc", "parent": "/usr/bin"}, {"filename": "ppdhtml", "parent": "/usr/bin"}, {"filename": "ppdi", "parent": "/usr/bin"}, {"filename": "ppdmerge", "parent": "/usr/bin"}, {"filename": "ppdpo", "parent": "/usr/bin"}, {"filename": "pr", "parent": "/usr/bin"}, {"filename": "pre-grohtml", "parent": "/usr/bin"}, {"filename": "priclass.d", "parent": "/usr/bin"}, {"filename": "pridist.d", "parent": "/usr/bin"}, {"filename": "printenv", "parent": "/usr/bin"}, {"filename": "printf", "parent": "/usr/bin"}, {"filename": "procsystime", "parent": "/usr/bin"}, {"filename": "productbuild", "parent": "/usr/bin"}, {"filename": "productsign", "parent": "/usr/bin"}, {"filename": "profiles", "parent": "/usr/bin"}, {"filename": "prove", "parent": "/usr/bin"}, {"filename": "prove5.18", "parent": "/usr/bin"}, {"filename": "psed", "parent": "/usr/bin"}, {"filename": "psed5.18", "parent": "/usr/bin"}, {"filename": "pstopdf", "parent": "/usr/bin"}, {"filename": "pstruct", "parent": "/usr/bin"}, {"filename": "pstruct5.18", "parent": "/usr/bin"}, {"filename": "ptar", "parent": "/usr/bin"}, {"filename": "ptar5.18", "parent": "/usr/bin"}, {"filename": "ptardiff", "parent": "/usr/bin"}, {"filename": "ptardiff5.18", "parent": "/usr/bin"}, {"filename": "ptargrep", "parent": "/usr/bin"}, {"filename": "ptargrep5.18", "parent": "/usr/bin"}, {"filename": "pubsub", "parent": "/usr/bin"}, {"filename": "pwhich", "parent": "/usr/bin"}, {"filename": "pwhich5.18", "parent": "/usr/bin"}, {"filename": "pwpolicy", "parent": "/usr/bin"}, {"filename": "pydoc", "parent": "/usr/bin"}, {"filename": "pydoc2.7", "parent": "/usr/bin"}, {"filename": "python", "parent": "/usr/bin"}, {"filename": "python-config", "parent": "/usr/bin"}, {"filename": "python2.7", "parent": "/usr/bin"}, {"filename": "python2.7-config", "parent": "/usr/bin"}, {"filename": "pythonw", "parent": "/usr/bin"}, {"filename": "pythonw2.7", "parent": "/usr/bin"}, {"filename": "qc2movie", "parent": "/usr/bin"}, {"filename": "qlmanage", "parent": "/usr/bin"}, {"filename": "qtdefaults", "parent": "/usr/bin"}, {"filename": "qtmodernizer", "parent": "/usr/bin"}, {"filename": "quota", "parent": "/usr/bin"}, {"filename": "rails", "parent": "/usr/bin"}, {"filename": "rake", "parent": "/usr/bin"}, {"filename": "ranlib", "parent": "/usr/bin"}, {"filename": "rdoc", "parent": "/usr/bin"}, {"filename": "read", "parent": "/usr/bin"}, {"filename": "readlink", "parent": "/usr/bin"}, {"filename": "rebase", "parent": "/usr/bin"}, {"filename": "redo_prebinding", "parent": "/usr/bin"}, {"filename": "refer", "parent": "/usr/bin"}, {"filename": "renice", "parent": "/usr/bin"}, {"filename": "reset", "parent": "/usr/bin"}, {"filename": "resolveLinks", "parent": "/usr/bin"}, {"filename": "rev", "parent": "/usr/bin"}, {"filename": "ri", "parent": "/usr/bin"}, {"filename": "rmic", "parent": "/usr/bin"}, {"filename": "rmid", "parent": "/usr/bin"}, {"filename": "rmiregistry", "parent": "/usr/bin"}, {"filename": "rpcgen", "parent": "/usr/bin"}, {"filename": "rs", "parent": "/usr/bin"}, {"filename": "rsync", "parent": "/usr/bin"}, {"filename": "ruby", "parent": "/usr/bin"}, {"filename": "rview", "parent": "/usr/bin"}, {"filename": "rvim", "parent": "/usr/bin"}, {"filename": "rwbypid.d", "parent": "/usr/bin"}, {"filename": "rwbytype.d", "parent": "/usr/bin"}, {"filename": "rwsnoop", "parent": "/usr/bin"}, {"filename": "s2p", "parent": "/usr/bin"}, {"filename": "s2p5.18", "parent": "/usr/bin"}, {"filename": "safaridriver", "parent": "/usr/bin"}, {"filename": "sample", "parent": "/usr/bin"}, {"filename": "sampleproc", "parent": "/usr/bin"}, {"filename": "sandbox-exec", "parent": "/usr/bin"}, {"filename": "say", "parent": "/usr/bin"}, {"filename": "sc_usage", "parent": "/usr/bin"}, {"filename": "scandeps.pl", "parent": "/usr/bin"}, {"filename": "scandeps5.18.pl", "parent": "/usr/bin"}, {"filename": "schemagen", "parent": "/usr/bin"}, {"filename": "scp", "parent": "/usr/bin"}, {"filename": "screen", "parent": "/usr/bin"}, {"filename": "script", "parent": "/usr/bin"}, {"filename": "sdef", "parent": "/usr/bin"}, {"filename": "sdiff", "parent": "/usr/bin"}, {"filename": "sdp", "parent": "/usr/bin"}, {"filename": "sdx", "parent": "/usr/bin"}, {"filename": "security", "parent": "/usr/bin"}, {"filename": "sed", "parent": "/usr/bin"}, {"filename": "seeksize.d", "parent": "/usr/bin"}, {"filename": "segedit", "parent": "/usr/bin"}, {"filename": "seq", "parent": "/usr/bin"}, {"filename": "serialver", "parent": "/usr/bin"}, {"filename": "servertool", "parent": "/usr/bin"}, {"filename": "setregion", "parent": "/usr/bin"}, {"filename": "setuids.d", "parent": "/usr/bin"}, {"filename": "sfltool", "parent": "/usr/bin"}, {"filename": "sftp", "parent": "/usr/bin"}, {"filename": "shar", "parent": "/usr/bin"}, {"filename": "shasum", "parent": "/usr/bin"}, {"filename": "shasum5.18", "parent": "/usr/bin"}, {"filename": "shlock", "parent": "/usr/bin"}, {"filename": "showmount", "parent": "/usr/bin"}, {"filename": "sigdist.d", "parent": "/usr/bin"}, {"filename": "sips", "parent": "/usr/bin"}, {"filename": "size", "parent": "/usr/bin"}, {"filename": "slogin", "parent": "/usr/bin"}, {"filename": "smbutil", "parent": "/usr/bin"}, {"filename": "smtpd.py", "parent": "/usr/bin"}, {"filename": "smtpd2.7.py", "parent": "/usr/bin"}, {"filename": "snfsdefrag", "parent": "/usr/bin"}, {"filename": "snmp-bridge-mib", "parent": "/usr/bin"}, {"filename": "snmpbulkget", "parent": "/usr/bin"}, {"filename": "snmpbulkwalk", "parent": "/usr/bin"}, {"filename": "snmpconf", "parent": "/usr/bin"}, {"filename": "snmpdelta", "parent": "/usr/bin"}, {"filename": "snmpdf", "parent": "/usr/bin"}, {"filename": "snmpget", "parent": "/usr/bin"}, {"filename": "snmpgetnext", "parent": "/usr/bin"}, {"filename": "snmpinform", "parent": "/usr/bin"}, {"filename": "snmpnetstat", "parent": "/usr/bin"}, {"filename": "snmpset", "parent": "/usr/bin"}, {"filename": "snmpstatus", "parent": "/usr/bin"}, {"filename": "snmptable", "parent": "/usr/bin"}, {"filename": "snmptest", "parent": "/usr/bin"}, {"filename": "snmptranslate", "parent": "/usr/bin"}, {"filename": "snmptrap", "parent": "/usr/bin"}, {"filename": "snmpusm", "parent": "/usr/bin"}, {"filename": "snmpvacm", "parent": "/usr/bin"}, {"filename": "snmpwalk", "parent": "/usr/bin"}, {"filename": "sntp", "parent": "/usr/bin"}, {"filename": "soelim", "parent": "/usr/bin"}, {"filename": "sort", "parent": "/usr/bin"}, {"filename": "spfd", "parent": "/usr/bin"}, {"filename": "spfd5.18", "parent": "/usr/bin"}, {"filename": "spfquery", "parent": "/usr/bin"}, {"filename": "spfquery5.18", "parent": "/usr/bin"}, {"filename": "splain", "parent": "/usr/bin"}, {"filename": "splain5.18", "parent": "/usr/bin"}, {"filename": "split", "parent": "/usr/bin"}, {"filename": "sqlite3", "parent": "/usr/bin"}, {"filename": "ssh", "parent": "/usr/bin"}, {"filename": "ssh-add", "parent": "/usr/bin"}, {"filename": "ssh-agent", "parent": "/usr/bin"}, {"filename": "ssh-copy-id", "parent": "/usr/bin"}, {"filename": "ssh-keygen", "parent": "/usr/bin"}, {"filename": "ssh-keyscan", "parent": "/usr/bin"}, {"filename": "stapler", "parent": "/usr/bin"}, {"filename": "stat", "parent": "/usr/bin"}, {"filename": "stringdups", "parent": "/usr/bin"}, {"filename": "stringdups32", "parent": "/usr/bin"}, {"filename": "strings", "parent": "/usr/bin"}, {"filename": "strip", "parent": "/usr/bin"}, {"filename": "stty.pl", "parent": "/usr/bin"}, {"filename": "stty5.18.pl", "parent": "/usr/bin"}, {"filename": "su", "parent": "/usr/bin"}, {"filename": "sudo", "parent": "/usr/bin"}, {"filename": "sum", "parent": "/usr/bin"}, {"filename": "svn", "parent": "/usr/bin"}, {"filename": "svnadmin", "parent": "/usr/bin"}, {"filename": "svndumpfilter", "parent": "/usr/bin"}, {"filename": "svnlook", "parent": "/usr/bin"}, {"filename": "svnserve", "parent": "/usr/bin"}, {"filename": "svnsync", "parent": "/usr/bin"}, {"filename": "svnversion", "parent": "/usr/bin"}, {"filename": "sw_vers", "parent": "/usr/bin"}, {"filename": "swift", "parent": "/usr/bin"}, {"filename": "swiftc", "parent": "/usr/bin"}, {"filename": "symbols", "parent": "/usr/bin"}, {"filename": "symbolscache", "parent": "/usr/bin"}, {"filename": "syscallbypid.d", "parent": "/usr/bin"}, {"filename": "syscallbyproc.d", "parent": "/usr/bin"}, {"filename": "syscallbysysc.d", "parent": "/usr/bin"}, {"filename": "sysdiagnose", "parent": "/usr/bin"}, {"filename": "syslog", "parent": "/usr/bin"}, {"filename": "systriage", "parent": "/usr/bin"}, {"filename": "tab2space", "parent": "/usr/bin"}, {"filename": "tabs", "parent": "/usr/bin"}, {"filename": "tail", "parent": "/usr/bin"}, {"filename": "tailspin", "parent": "/usr/bin"}, {"filename": "talk", "parent": "/usr/bin"}, {"filename": "tar", "parent": "/usr/bin"}, {"filename": "taskinfo", "parent": "/usr/bin"}, {"filename": "tbl", "parent": "/usr/bin"}, {"filename": "tbtdiagnose", "parent": "/usr/bin"}, {"filename": "tccutil", "parent": "/usr/bin"}, {"filename": "tclsh", "parent": "/usr/bin"}, {"filename": "tclsh8.5", "parent": "/usr/bin"}, {"filename": "tee", "parent": "/usr/bin"}, {"filename": "texi2dvi", "parent": "/usr/bin"}, {"filename": "texi2pdf", "parent": "/usr/bin"}, {"filename": "texindex", "parent": "/usr/bin"}, {"filename": "textutil", "parent": "/usr/bin"}, {"filename": "tfmtodit", "parent": "/usr/bin"}, {"filename": "tftp", "parent": "/usr/bin"}, {"filename": "thermal", "parent": "/usr/bin"}, {"filename": "tic", "parent": "/usr/bin"}, {"filename": "tidy", "parent": "/usr/bin"}, {"filename": "tiff2icns", "parent": "/usr/bin"}, {"filename": "tiffutil", "parent": "/usr/bin"}, {"filename": "time", "parent": "/usr/bin"}, {"filename": "timer_analyser.d", "parent": "/usr/bin"}, {"filename": "timerfires", "parent": "/usr/bin"}, {"filename": "tkcon", "parent": "/usr/bin"}, {"filename": "tkmib", "parent": "/usr/bin"}, {"filename": "tkpp", "parent": "/usr/bin"}, {"filename": "tkpp5.18", "parent": "/usr/bin"}, {"filename": "tmdiagnose", "parent": "/usr/bin"}, {"filename": "tmutil", "parent": "/usr/bin"}, {"filename": "tnameserv", "parent": "/usr/bin"}, {"filename": "toe", "parent": "/usr/bin"}, {"filename": "top", "parent": "/usr/bin"}, {"filename": "tops", "parent": "/usr/bin"}, {"filename": "topsyscall", "parent": "/usr/bin"}, {"filename": "topsysproc", "parent": "/usr/bin"}, {"filename": "touch", "parent": "/usr/bin"}, {"filename": "tput", "parent": "/usr/bin"}, {"filename": "tr", "parent": "/usr/bin"}, {"filename": "trace", "parent": "/usr/bin"}, {"filename": "traptoemail", "parent": "/usr/bin"}, {"filename": "treereg", "parent": "/usr/bin"}, {"filename": "treereg5.18", "parent": "/usr/bin"}, {"filename": "trimforce", "parent": "/usr/bin"}, {"filename": "troff", "parent": "/usr/bin"}, {"filename": "true", "parent": "/usr/bin"}, {"filename": "tset", "parent": "/usr/bin"}, {"filename": "tsort", "parent": "/usr/bin"}, {"filename": "tty", "parent": "/usr/bin"}, {"filename": "type", "parent": "/usr/bin"}, {"filename": "ul", "parent": "/usr/bin"}, {"filename": "ulimit", "parent": "/usr/bin"}, {"filename": "umask", "parent": "/usr/bin"}, {"filename": "unalias", "parent": "/usr/bin"}, {"filename": "uname", "parent": "/usr/bin"}, {"filename": "uncompress", "parent": "/usr/bin"}, {"filename": "unexpand", "parent": "/usr/bin"}, {"filename": "unifdef", "parent": "/usr/bin"}, {"filename": "unifdefall", "parent": "/usr/bin"}, {"filename": "uniq", "parent": "/usr/bin"}, {"filename": "units", "parent": "/usr/bin"}, {"filename": "unpack200", "parent": "/usr/bin"}, {"filename": "unvis", "parent": "/usr/bin"}, {"filename": "unzip", "parent": "/usr/bin"}, {"filename": "unzipsfx", "parent": "/usr/bin"}, {"filename": "update_dyld_shared_cache", "parent": "/usr/bin"}, {"filename": "uptime", "parent": "/usr/bin"}, {"filename": "usbkdp", "parent": "/usr/bin"}, {"filename": "users", "parent": "/usr/bin"}, {"filename": "uucp", "parent": "/usr/bin"}, {"filename": "uudecode", "parent": "/usr/bin"}, {"filename": "uuencode", "parent": "/usr/bin"}, {"filename": "uuidgen", "parent": "/usr/bin"}, {"filename": "uulog", "parent": "/usr/bin"}, {"filename": "uuname", "parent": "/usr/bin"}, {"filename": "uupick", "parent": "/usr/bin"}, {"filename": "uustat", "parent": "/usr/bin"}, {"filename": "uuto", "parent": "/usr/bin"}, {"filename": "uux", "parent": "/usr/bin"}, {"filename": "vi", "parent": "/usr/bin"}, {"filename": "view", "parent": "/usr/bin"}, {"filename": "vim", "parent": "/usr/bin"}, {"filename": "vimdiff", "parent": "/usr/bin"}, {"filename": "vimtutor", "parent": "/usr/bin"}, {"filename": "vis", "parent": "/usr/bin"}, {"filename": "vm_stat", "parent": "/usr/bin"}, {"filename": "vmmap", "parent": "/usr/bin"}, {"filename": "vmmap32", "parent": "/usr/bin"}, {"filename": "w", "parent": "/usr/bin"}, {"filename": "wait", "parent": "/usr/bin"}, {"filename": "wall", "parent": "/usr/bin"}, {"filename": "wc", "parent": "/usr/bin"}, {"filename": "wdutil", "parent": "/usr/bin"}, {"filename": "what", "parent": "/usr/bin"}, {"filename": "whatis", "parent": "/usr/bin"}, {"filename": "whereis", "parent": "/usr/bin"}, {"filename": "which", "parent": "/usr/bin"}, {"filename": "who", "parent": "/usr/bin"}, {"filename": "whoami", "parent": "/usr/bin"}, {"filename": "whois", "parent": "/usr/bin"}, {"filename": "wish", "parent": "/usr/bin"}, {"filename": "wish8.5", "parent": "/usr/bin"}, {"filename": "write", "parent": "/usr/bin"}, {"filename": "wsgen", "parent": "/usr/bin"}, {"filename": "wsimport", "parent": "/usr/bin"}, {"filename": "xar", "parent": "/usr/bin"}, {"filename": "xargs", "parent": "/usr/bin"}, {"filename": "xattr", "parent": "/usr/bin"}, {"filename": "xattr-2.7", "parent": "/usr/bin"}, {"filename": "xcode-select", "parent": "/usr/bin"}, {"filename": "xcodebuild", "parent": "/usr/bin"}, {"filename": "xcrun", "parent": "/usr/bin"}, {"filename": "xcscontrol", "parent": "/usr/bin"}, {"filename": "xcsdiagnose", "parent": "/usr/bin"}, {"filename": "xed", "parent": "/usr/bin"}, {"filename": "xgettext.pl", "parent": "/usr/bin"}, {"filename": "xgettext5.18.pl", "parent": "/usr/bin"}, {"filename": "xip", "parent": "/usr/bin"}, {"filename": "xjc", "parent": "/usr/bin"}, {"filename": "xml2-config", "parent": "/usr/bin"}, {"filename": "xml2man", "parent": "/usr/bin"}, {"filename": "xmlcatalog", "parent": "/usr/bin"}, {"filename": "xmllint", "parent": "/usr/bin"}, {"filename": "xpath", "parent": "/usr/bin"}, {"filename": "xpath5.18", "parent": "/usr/bin"}, {"filename": "xslt-config", "parent": "/usr/bin"}, {"filename": "xsltproc", "parent": "/usr/bin"}, {"filename": "xsubpp", "parent": "/usr/bin"}, {"filename": "xsubpp5.18", "parent": "/usr/bin"}, {"filename": "xxd", "parent": "/usr/bin"}, {"filename": "yaa", "parent": "/usr/bin"}, {"filename": "yacc", "parent": "/usr/bin"}, {"filename": "yes", "parent": "/usr/bin"}, {"filename": "zcat", "parent": "/usr/bin"}, {"filename": "zcmp", "parent": "/usr/bin"}, {"filename": "zdiff", "parent": "/usr/bin"}, {"filename": "zegrep", "parent": "/usr/bin"}, {"filename": "zfgrep", "parent": "/usr/bin"}, {"filename": "zforce", "parent": "/usr/bin"}, {"filename": "zgrep", "parent": "/usr/bin"}, {"filename": "zip", "parent": "/usr/bin"}, {"filename": "zipcloak", "parent": "/usr/bin"}, {"filename": "zipdetails", "parent": "/usr/bin"}, {"filename": "zipdetails5.18", "parent": "/usr/bin"}, {"filename": "zipgrep", "parent": "/usr/bin"}, {"filename": "zipinfo", "parent": "/usr/bin"}, {"filename": "zipnote", "parent": "/usr/bin"}, {"filename": "zipsplit", "parent": "/usr/bin"}, {"filename": "zless", "parent": "/usr/bin"}, {"filename": "zmore", "parent": "/usr/bin"}, {"filename": "znew", "parent": "/usr/bin"}, {"filename": "zprint", "parent": "/usr/bin"}, {"filename": "ACIPCBTLib.dylib", "parent": "/usr/lib"}, {"filename": "AppleConvergedTransport.dylib", "parent": "/usr/lib"}, {"filename": "PN548.dylib", "parent": "/usr/lib"}, {"filename": "PN548_API.dylib", "parent": "/usr/lib"}, {"filename": "PN548_HAL.dylib", "parent": "/usr/lib"}, {"filename": "charset.alias", "parent": "/usr/lib"}, {"filename": "cron", "parent": "/usr/lib"}, {"filename": "dtrace", "parent": "/usr/lib"}, {"filename": "dyld", "parent": "/usr/lib"}, {"filename": "groff", "parent": "/usr/lib"}, {"filename": "libATCommandStudioDynamic.dylib", "parent": "/usr/lib"}, {"filename": "libAccessibility.dylib", "parent": "/usr/lib"}, {"filename": "libAccountPolicyTranslation.dylib", "parent": "/usr/lib"}, {"filename": "libAppleSSEExt.dylib", "parent": "/usr/lib"}, {"filename": "libAppletTranslationLibrary.dylib", "parent": "/usr/lib"}, {"filename": "libAudioIssueDetector.dylib", "parent": "/usr/lib"}, {"filename": "libAudioStatistics.dylib", "parent": "/usr/lib"}, {"filename": "libBSDPClient.A.dylib", "parent": "/usr/lib"}, {"filename": "libBSDPClient.dylib", "parent": "/usr/lib"}, {"filename": "libCRFSuite.dylib", "parent": "/usr/lib"}, {"filename": "libCRFSuite0.12.dylib", "parent": "/usr/lib"}, {"filename": "libCTGreenTeaLogger.dylib", "parent": "/usr/lib"}, {"filename": "libChineseTokenizer.dylib", "parent": "/usr/lib"}, {"filename": "libCoreStorage.dylib", "parent": "/usr/lib"}, {"filename": "libDHCPServer.A.dylib", "parent": "/usr/lib"}, {"filename": "libDHCPServer.dylib", "parent": "/usr/lib"}, {"filename": "libDiagnosticMessagesClient.dylib", "parent": "/usr/lib"}, {"filename": "libFDR_osx.dylib", "parent": "/usr/lib"}, {"filename": "libFosl_dynamic.dylib", "parent": "/usr/lib"}, {"filename": "libIASAuthReboot.dylib", "parent": "/usr/lib"}, {"filename": "libIASUnifiedProgress.dylib", "parent": "/usr/lib"}, {"filename": "libMatch.1.dylib", "parent": "/usr/lib"}, {"filename": "libMatch.dylib", "parent": "/usr/lib"}, {"filename": "libMaxEnt.dylib", "parent": "/usr/lib"}, {"filename": "libMemoryResourceException.dylib", "parent": "/usr/lib"}, {"filename": "libMobileGestalt.dylib", "parent": "/usr/lib"}, {"filename": "libOpenScriptingUtil.dylib", "parent": "/usr/lib"}, {"filename": "libParallelCompression.dylib", "parent": "/usr/lib"}, {"filename": "libQMIParserDynamic.dylib", "parent": "/usr/lib"}, {"filename": "libSMC.dylib", "parent": "/usr/lib"}, {"filename": "libScreenReader.dylib", "parent": "/usr/lib"}, {"filename": "libSystem.B.dylib", "parent": "/usr/lib"}, {"filename": "libSystem.dylib", "parent": "/usr/lib"}, {"filename": "libTelephonyUtilDynamic.dylib", "parent": "/usr/lib"}, {"filename": "libThaiTokenizer.dylib", "parent": "/usr/lib"}, {"filename": "libUniversalAccess.dylib", "parent": "/usr/lib"}, {"filename": "libXSEvent.dylib", "parent": "/usr/lib"}, {"filename": "libXplugin.1.dylib", "parent": "/usr/lib"}, {"filename": "libXplugin.dylib", "parent": "/usr/lib"}, {"filename": "libapple_nghttp2.dylib", "parent": "/usr/lib"}, {"filename": "libapr-1.0.dylib", "parent": "/usr/lib"}, {"filename": "libapr-1.dylib", "parent": "/usr/lib"}, {"filename": "libaprutil-1.0.dylib", "parent": "/usr/lib"}, {"filename": "libaprutil-1.dylib", "parent": "/usr/lib"}, {"filename": "libarchive.2.dylib", "parent": "/usr/lib"}, {"filename": "libarchive.dylib", "parent": "/usr/lib"}, {"filename": "libate.dylib", "parent": "/usr/lib"}, {"filename": "libauditd.0.dylib", "parent": "/usr/lib"}, {"filename": "libauditd.dylib", "parent": "/usr/lib"}, {"filename": "libauto.dylib", "parent": "/usr/lib"}, {"filename": "libblas.dylib", "parent": "/usr/lib"}, {"filename": "libboringssl.dylib", "parent": "/usr/lib"}, {"filename": "libbsm.0.dylib", "parent": "/usr/lib"}, {"filename": "libbsm.dylib", "parent": "/usr/lib"}, {"filename": "libbz2.1.0.5.dylib", "parent": "/usr/lib"}, {"filename": "libbz2.1.0.dylib", "parent": "/usr/lib"}, {"filename": "libbz2.dylib", "parent": "/usr/lib"}, {"filename": "libc++.1.dylib", "parent": "/usr/lib"}, {"filename": "libc++.dylib", "parent": "/usr/lib"}, {"filename": "libc++abi.dylib", "parent": "/usr/lib"}, {"filename": "libc.dylib", "parent": "/usr/lib"}, {"filename": "libcblas.dylib", "parent": "/usr/lib"}, {"filename": "libcharset.1.0.0.dylib", "parent": "/usr/lib"}, {"filename": "libcharset.1.dylib", "parent": "/usr/lib"}, {"filename": "libcharset.dylib", "parent": "/usr/lib"}, {"filename": "libclapack.dylib", "parent": "/usr/lib"}, {"filename": "libcmph.dylib", "parent": "/usr/lib"}, {"filename": "libcom_err.dylib", "parent": "/usr/lib"}, {"filename": "libcompression.dylib", "parent": "/usr/lib"}, {"filename": "libcoreroutine.dylib", "parent": "/usr/lib"}, {"filename": "libcoretls.dylib", "parent": "/usr/lib"}, {"filename": "libcoretls_cfhelpers.dylib", "parent": "/usr/lib"}, {"filename": "libcrypto.0.9.7.dylib", "parent": "/usr/lib"}, {"filename": "libcrypto.0.9.8.dylib", "parent": "/usr/lib"}, {"filename": "libcrypto.35.dylib", "parent": "/usr/lib"}, {"filename": "libcrypto.41.dylib", "parent": "/usr/lib"}, {"filename": "libcrypto.42.dylib", "parent": "/usr/lib"}, {"filename": "libcrypto.dylib", "parent": "/usr/lib"}, {"filename": "libcsfde.dylib", "parent": "/usr/lib"}, {"filename": "libcupolicy.dylib", "parent": "/usr/lib"}, {"filename": "libcups.2.dylib", "parent": "/usr/lib"}, {"filename": "libcups.dylib", "parent": "/usr/lib"}, {"filename": "libcupscgi.1.dylib", "parent": "/usr/lib"}, {"filename": "libcupscgi.dylib", "parent": "/usr/lib"}, {"filename": "libcupsimage.2.dylib", "parent": "/usr/lib"}, {"filename": "libcupsimage.dylib", "parent": "/usr/lib"}, {"filename": "libcupsmime.1.dylib", "parent": "/usr/lib"}, {"filename": "libcupsmime.dylib", "parent": "/usr/lib"}, {"filename": "libcupsppdc.1.dylib", "parent": "/usr/lib"}, {"filename": "libcupsppdc.dylib", "parent": "/usr/lib"}, {"filename": "libcurl.3.dylib", "parent": "/usr/lib"}, {"filename": "libcurl.4.dylib", "parent": "/usr/lib"}, {"filename": "libcurl.dylib", "parent": "/usr/lib"}, {"filename": "libcurses.dylib", "parent": "/usr/lib"}, {"filename": "libdbm.dylib", "parent": "/usr/lib"}, {"filename": "libdes425.dylib", "parent": "/usr/lib"}, {"filename": "libdl.dylib", "parent": "/usr/lib"}, {"filename": "libdns_services.dylib", "parent": "/usr/lib"}, {"filename": "libdscsym.dylib", "parent": "/usr/lib"}, {"filename": "libdtrace.dylib", "parent": "/usr/lib"}, {"filename": "libdz.dylib", "parent": "/usr/lib"}, {"filename": "libeasyperf.dylib", "parent": "/usr/lib"}, {"filename": "libecpg.6.5.dylib", "parent": "/usr/lib"}, {"filename": "libecpg.6.dylib", "parent": "/usr/lib"}, {"filename": "libecpg.dylib", "parent": "/usr/lib"}, {"filename": "libecpg_compat.3.5.dylib", "parent": "/usr/lib"}, {"filename": "libecpg_compat.3.dylib", "parent": "/usr/lib"}, {"filename": "libecpg_compat.dylib", "parent": "/usr/lib"}, {"filename": "libedit.2.dylib", "parent": "/usr/lib"}, {"filename": "libedit.3.0.dylib", "parent": "/usr/lib"}, {"filename": "libedit.3.dylib", "parent": "/usr/lib"}, {"filename": "libedit.dylib", "parent": "/usr/lib"}, {"filename": "libenergytrace.dylib", "parent": "/usr/lib"}, {"filename": "libexpat.1.dylib", "parent": "/usr/lib"}, {"filename": "libexpat.dylib", "parent": "/usr/lib"}, {"filename": "libexslt.0.dylib", "parent": "/usr/lib"}, {"filename": "libexslt.dylib", "parent": "/usr/lib"}, {"filename": "libextension.dylib", "parent": "/usr/lib"}, {"filename": "libf77lapack.dylib", "parent": "/usr/lib"}, {"filename": "libffi.dylib", "parent": "/usr/lib"}, {"filename": "libform.5.4.dylib", "parent": "/usr/lib"}, {"filename": "libform.dylib", "parent": "/usr/lib"}, {"filename": "libgcc_s.1.dylib", "parent": "/usr/lib"}, {"filename": "libgermantok.dylib", "parent": "/usr/lib"}, {"filename": "libgmalloc.dylib", "parent": "/usr/lib"}, {"filename": "libgssapi_krb5.dylib", "parent": "/usr/lib"}, {"filename": "libheimdal-asn1.dylib", "parent": "/usr/lib"}, {"filename": "libhunspell-1.2.0.0.0.dylib", "parent": "/usr/lib"}, {"filename": "libhunspell-1.2.0.dylib", "parent": "/usr/lib"}, {"filename": "libhunspell-1.2.dylib", "parent": "/usr/lib"}, {"filename": "libiconv.2.4.0.dylib", "parent": "/usr/lib"}, {"filename": "libiconv.2.dylib", "parent": "/usr/lib"}, {"filename": "libiconv.dylib", "parent": "/usr/lib"}, {"filename": "libicucore.A.dylib", "parent": "/usr/lib"}, {"filename": "libicucore.dylib", "parent": "/usr/lib"}, {"filename": "libinfo.dylib", "parent": "/usr/lib"}, {"filename": "libiodbc.2.1.18.dylib", "parent": "/usr/lib"}, {"filename": "libiodbc.2.dylib", "parent": "/usr/lib"}, {"filename": "libiodbc.dylib", "parent": "/usr/lib"}, {"filename": "libiodbcinst.2.1.18.dylib", "parent": "/usr/lib"}, {"filename": "libiodbcinst.2.dylib", "parent": "/usr/lib"}, {"filename": "libiodbcinst.dylib", "parent": "/usr/lib"}, {"filename": "libipconfig.dylib", "parent": "/usr/lib"}, {"filename": "libipsec.A.dylib", "parent": "/usr/lib"}, {"filename": "libipsec.dylib", "parent": "/usr/lib"}, {"filename": "libk5crypto.dylib", "parent": "/usr/lib"}, {"filename": "libkrb4.dylib", "parent": "/usr/lib"}, {"filename": "libkrb5.dylib", "parent": "/usr/lib"}, {"filename": "libkrb524.dylib", "parent": "/usr/lib"}, {"filename": "libkrb5support.dylib", "parent": "/usr/lib"}, {"filename": "libktrace.dylib", "parent": "/usr/lib"}, {"filename": "liblangid.dylib", "parent": "/usr/lib"}, {"filename": "liblapack.dylib", "parent": "/usr/lib"}, {"filename": "liblber.dylib", "parent": "/usr/lib"}, {"filename": "libldap.dylib", "parent": "/usr/lib"}, {"filename": "libldap_r.dylib", "parent": "/usr/lib"}, {"filename": "liblzma.5.dylib", "parent": "/usr/lib"}, {"filename": "liblzma.dylib", "parent": "/usr/lib"}, {"filename": "libm.dylib", "parent": "/usr/lib"}, {"filename": "libmarisa.dylib", "parent": "/usr/lib"}, {"filename": "libmecab.1.0.0.dylib", "parent": "/usr/lib"}, {"filename": "libmecab.dylib", "parent": "/usr/lib"}, {"filename": "libmecabra.dylib", "parent": "/usr/lib"}, {"filename": "libmenu.5.4.dylib", "parent": "/usr/lib"}, {"filename": "libmenu.dylib", "parent": "/usr/lib"}, {"filename": "libmx.A.dylib", "parent": "/usr/lib"}, {"filename": "libmx.dylib", "parent": "/usr/lib"}, {"filename": "libncurses.5.4.dylib", "parent": "/usr/lib"}, {"filename": "libncurses.5.dylib", "parent": "/usr/lib"}, {"filename": "libncurses.dylib", "parent": "/usr/lib"}, {"filename": "libnetsnmp.15.1.2.dylib", "parent": "/usr/lib"}, {"filename": "libnetsnmp.15.dylib", "parent": "/usr/lib"}, {"filename": "libnetsnmp.25.dylib", "parent": "/usr/lib"}, {"filename": "libnetsnmp.5.2.1.dylib", "parent": "/usr/lib"}, {"filename": "libnetsnmp.5.dylib", "parent": "/usr/lib"}, {"filename": "libnetsnmp.dylib", "parent": "/usr/lib"}, {"filename": "libnetsnmpagent.25.dylib", "parent": "/usr/lib"}, {"filename": "libnetsnmpagent.dylib", "parent": "/usr/lib"}, {"filename": "libnetsnmphelpers.25.dylib", "parent": "/usr/lib"}, {"filename": "libnetsnmphelpers.dylib", "parent": "/usr/lib"}, {"filename": "libnetsnmpmibs.25.dylib", "parent": "/usr/lib"}, {"filename": "libnetsnmpmibs.dylib", "parent": "/usr/lib"}, {"filename": "libnetsnmptrapd.25.dylib", "parent": "/usr/lib"}, {"filename": "libnetsnmptrapd.dylib", "parent": "/usr/lib"}, {"filename": "libnetwork.dylib", "parent": "/usr/lib"}, {"filename": "libnetworkextension.dylib", "parent": "/usr/lib"}, {"filename": "libnfrestore.dylib", "parent": "/usr/lib"}, {"filename": "libnfshared.dylib", "parent": "/usr/lib"}, {"filename": "libobjc-trampolines.dylib", "parent": "/usr/lib"}, {"filename": "libobjc.A.dylib", "parent": "/usr/lib"}, {"filename": "libobjc.dylib", "parent": "/usr/lib"}, {"filename": "libodfde.dylib", "parent": "/usr/lib"}, {"filename": "libodmodule.dylib", "parent": "/usr/lib"}, {"filename": "libpam.1.dylib", "parent": "/usr/lib"}, {"filename": "libpam.2.dylib", "parent": "/usr/lib"}, {"filename": "libpam.dylib", "parent": "/usr/lib"}, {"filename": "libpanel.5.4.dylib", "parent": "/usr/lib"}, {"filename": "libpanel.dylib", "parent": "/usr/lib"}, {"filename": "libpcap.A.dylib", "parent": "/usr/lib"}, {"filename": "libpcap.dylib", "parent": "/usr/lib"}, {"filename": "libpcre.0.dylib", "parent": "/usr/lib"}, {"filename": "libpcre.dylib", "parent": "/usr/lib"}, {"filename": "libpcreposix.0.dylib", "parent": "/usr/lib"}, {"filename": "libpcreposix.dylib", "parent": "/usr/lib"}, {"filename": "libperfcheck.dylib", "parent": "/usr/lib"}, {"filename": "libpgtypes.3.4.dylib", "parent": "/usr/lib"}, {"filename": "libpgtypes.3.dylib", "parent": "/usr/lib"}, {"filename": "libpgtypes.dylib", "parent": "/usr/lib"}, {"filename": "libpmenergy.dylib", "parent": "/usr/lib"}, {"filename": "libpmsample.dylib", "parent": "/usr/lib"}, {"filename": "libpoll.dylib", "parent": "/usr/lib"}, {"filename": "libpq.5.6.dylib", "parent": "/usr/lib"}, {"filename": "libpq.5.dylib", "parent": "/usr/lib"}, {"filename": "libpq.dylib", "parent": "/usr/lib"}, {"filename": "libprequelite.dylib", "parent": "/usr/lib"}, {"filename": "libproc.dylib", "parent": "/usr/lib"}, {"filename": "libpthread.dylib", "parent": "/usr/lib"}, {"filename": "libpython.dylib", "parent": "/usr/lib"}, {"filename": "libpython2.7.dylib", "parent": "/usr/lib"}, {"filename": "libquic.dylib", "parent": "/usr/lib"}, {"filename": "libquit.dylib", "parent": "/usr/lib"}, {"filename": "libreadline.dylib", "parent": "/usr/lib"}, {"filename": "libresolv.9.dylib", "parent": "/usr/lib"}, {"filename": "libresolv.dylib", "parent": "/usr/lib"}, {"filename": "librpcsvc.dylib", "parent": "/usr/lib"}, {"filename": "libruby.2.3.0.dylib", "parent": "/usr/lib"}, {"filename": "libruby.2.3.dylib", "parent": "/usr/lib"}, {"filename": "libruby.dylib", "parent": "/usr/lib"}, {"filename": "libsandbox.1.dylib", "parent": "/usr/lib"}, {"filename": "libsandbox.dylib", "parent": "/usr/lib"}, {"filename": "libsasl2.2.0.1.dylib", "parent": "/usr/lib"}, {"filename": "libsasl2.2.0.15.dylib", "parent": "/usr/lib"}, {"filename": "libsasl2.2.0.21.dylib", "parent": "/usr/lib"}, {"filename": "libsasl2.2.0.22.dylib", "parent": "/usr/lib"}, {"filename": "libsasl2.2.dylib", "parent": "/usr/lib"}, {"filename": "libsasl2.dylib", "parent": "/usr/lib"}, {"filename": "libspindump.dylib", "parent": "/usr/lib"}, {"filename": "libsqlite3.0.dylib", "parent": "/usr/lib"}, {"filename": "libsqlite3.dylib", "parent": "/usr/lib"}, {"filename": "libssl.0.9.7.dylib", "parent": "/usr/lib"}, {"filename": "libssl.0.9.8.dylib", "parent": "/usr/lib"}, {"filename": "libssl.35.dylib", "parent": "/usr/lib"}, {"filename": "libssl.43.dylib", "parent": "/usr/lib"}, {"filename": "libssl.44.dylib", "parent": "/usr/lib"}, {"filename": "libssl.dylib", "parent": "/usr/lib"}, {"filename": "libstdc++.6.0.9.dylib", "parent": "/usr/lib"}, {"filename": "libstdc++.6.dylib", "parent": "/usr/lib"}, {"filename": "libstdc++.dylib", "parent": "/usr/lib"}, {"filename": "libsysdiagnose.dylib", "parent": "/usr/lib"}, {"filename": "libsysmon.dylib", "parent": "/usr/lib"}, {"filename": "libsystemstats.dylib", "parent": "/usr/lib"}, {"filename": "libtailspin.dylib", "parent": "/usr/lib"}, {"filename": "libtcl.dylib", "parent": "/usr/lib"}, {"filename": "libtcl8.5.dylib", "parent": "/usr/lib"}, {"filename": "libtermcap.dylib", "parent": "/usr/lib"}, {"filename": "libtidy.A.dylib", "parent": "/usr/lib"}, {"filename": "libtidy.dylib", "parent": "/usr/lib"}, {"filename": "libtk.dylib", "parent": "/usr/lib"}, {"filename": "libtk8.5.dylib", "parent": "/usr/lib"}, {"filename": "libtls.15.dylib", "parent": "/usr/lib"}, {"filename": "libtls.16.dylib", "parent": "/usr/lib"}, {"filename": "libtls.6.dylib", "parent": "/usr/lib"}, {"filename": "libtls.dylib", "parent": "/usr/lib"}, {"filename": "libtzupdate.dylib", "parent": "/usr/lib"}, {"filename": "libusrtcp.dylib", "parent": "/usr/lib"}, {"filename": "libutil.dylib", "parent": "/usr/lib"}, {"filename": "libutil1.0.dylib", "parent": "/usr/lib"}, {"filename": "libxar.1.dylib", "parent": "/usr/lib"}, {"filename": "libxar.dylib", "parent": "/usr/lib"}, {"filename": "libxcselect.dylib", "parent": "/usr/lib"}, {"filename": "libxml2.2.dylib", "parent": "/usr/lib"}, {"filename": "libxml2.dylib", "parent": "/usr/lib"}, {"filename": "libxslt.1.dylib", "parent": "/usr/lib"}, {"filename": "libxslt.dylib", "parent": "/usr/lib"}, {"filename": "libz.1.1.3.dylib", "parent": "/usr/lib"}, {"filename": "libz.1.2.11.dylib", "parent": "/usr/lib"}, {"filename": "libz.1.2.5.dylib", "parent": "/usr/lib"}, {"filename": "libz.1.2.8.dylib", "parent": "/usr/lib"}, {"filename": "libz.1.dylib", "parent": "/usr/lib"}, {"filename": "libz.dylib", "parent": "/usr/lib"}, {"filename": "log", "parent": "/usr/lib"}, {"filename": "pam", "parent": "/usr/lib"}, {"filename": "php", "parent": "/usr/lib"}, {"filename": "pkgconfig", "parent": "/usr/lib"}, {"filename": "python2.7", "parent": "/usr/lib"}, {"filename": "rpcsvc", "parent": "/usr/lib"}, {"filename": "ruby", "parent": "/usr/lib"}, {"filename": "sasl2", "parent": "/usr/lib"}, {"filename": "sqlite3", "parent": "/usr/lib"}, {"filename": "ssh-keychain.dylib", "parent": "/usr/lib"}, {"filename": "swift", "parent": "/usr/lib"}, {"filename": "system", "parent": "/usr/lib"}, {"filename": "xpc", "parent": "/usr/lib"}, {"filename": "zsh", "parent": "/usr/lib"}, {"filename": "AdvancedCommandsMigrator", "parent": "/usr/libexec"}, {"filename": "AirPlayXPCHelper", "parent": "/usr/libexec"}, {"filename": "AppSandbox", "parent": "/usr/libexec"}, {"filename": "AppleQEMUGuestAgent", "parent": "/usr/libexec"}, {"filename": "ApplicationFirewall", "parent": "/usr/libexec"}, {"filename": "AssetCache", "parent": "/usr/libexec"}, {"filename": "AssetCacheAgent", "parent": "/usr/libexec"}, {"filename": "CSCSupportd", "parent": "/usr/libexec"}, {"filename": "DataDetectorsLocalSources", "parent": "/usr/libexec"}, {"filename": "DataDetectorsSourceAccess", "parent": "/usr/libexec"}, {"filename": "DeveloperTools", "parent": "/usr/libexec"}, {"filename": "FDERecoveryAgent", "parent": "/usr/libexec"}, {"filename": "FirmwareUpdateLauncher", "parent": "/usr/libexec"}, {"filename": "IOAccelMemoryInfoCollector", "parent": "/usr/libexec"}, {"filename": "InternetSharing", "parent": "/usr/libexec"}, {"filename": "KeychainMigrator", "parent": "/usr/libexec"}, {"filename": "MiniTerm.app", "parent": "/usr/libexec"}, {"filename": "NVMeAgent", "parent": "/usr/libexec"}, {"filename": "PerfPowerServices", "parent": "/usr/libexec"}, {"filename": "PerfPowerServicesExtended", "parent": "/usr/libexec"}, {"filename": "PlistBuddy", "parent": "/usr/libexec"}, {"filename": "ReportMemoryException", "parent": "/usr/libexec"}, {"filename": "SafariCloudHistoryPushAgent", "parent": "/usr/libexec"}, {"filename": "SafariHistoryServiceAgent", "parent": "/usr/libexec"}, {"filename": "SafariLaunchAgent", "parent": "/usr/libexec"}, {"filename": "SafariNotificationAgent", "parent": "/usr/libexec"}, {"filename": "SafariPlugInUpdateNotifier", "parent": "/usr/libexec"}, {"filename": "SidecarRelay", "parent": "/usr/libexec"}, {"filename": "SmartCardServices", "parent": "/usr/libexec"}, {"filename": "TouchBarServer", "parent": "/usr/libexec"}, {"filename": "USBAgent", "parent": "/usr/libexec"}, {"filename": "UserEventAgent", "parent": "/usr/libexec"}, {"filename": "WiFiVelocityAgent", "parent": "/usr/libexec"}, {"filename": "adprivacyd", "parent": "/usr/libexec"}, {"filename": "adservicesd", "parent": "/usr/libexec"}, {"filename": "airportd", "parent": "/usr/libexec"}, {"filename": "amfid", "parent": "/usr/libexec"}, {"filename": "amsdstat", "parent": "/usr/libexec"}, {"filename": "apache2", "parent": "/usr/libexec"}, {"filename": "apfsd", "parent": "/usr/libexec"}, {"filename": "applessdstatistics", "parent": "/usr/libexec"}, {"filename": "assertiond", "parent": "/usr/libexec"}, {"filename": "atomicupdatetool", "parent": "/usr/libexec"}, {"filename": "atrun", "parent": "/usr/libexec"}, {"filename": "attach_automation_image", "parent": "/usr/libexec"}, {"filename": "authopen", "parent": "/usr/libexec"}, {"filename": "autofsd", "parent": "/usr/libexec"}, {"filename": "automation_trampoline", "parent": "/usr/libexec"}, {"filename": "automountd", "parent": "/usr/libexec"}, {"filename": "avconferenced", "parent": "/usr/libexec"}, {"filename": "awacsd", "parent": "/usr/libexec"}, {"filename": "biokitaggdd", "parent": "/usr/libexec"}, {"filename": "biometrickitd", "parent": "/usr/libexec"}, {"filename": "bootinstalld", "parent": "/usr/libexec"}, {"filename": "bootpd", "parent": "/usr/libexec"}, {"filename": "bspowerassertiontool", "parent": "/usr/libexec"}, {"filename": "captiveagent", "parent": "/usr/libexec"}, {"filename": "cc_fips_test", "parent": "/usr/libexec"}, {"filename": "checkLocalKDC", "parent": "/usr/libexec"}, {"filename": "chkpasswd", "parent": "/usr/libexec"}, {"filename": "cloudconfigurationd", "parent": "/usr/libexec"}, {"filename": "colorsync.displayservices", "parent": "/usr/libexec"}, {"filename": "colorsyncd", "parent": "/usr/libexec"}, {"filename": "comsat", "parent": "/usr/libexec"}, {"filename": "configd", "parent": "/usr/libexec"}, {"filename": "configureLocalKDC", "parent": "/usr/libexec"}, {"filename": "corebrightnessd", "parent": "/usr/libexec"}, {"filename": "corecaptured", "parent": "/usr/libexec"}, {"filename": "coreduetd", "parent": "/usr/libexec"}, {"filename": "corestoraged", "parent": "/usr/libexec"}, {"filename": "corestoragehelperd", "parent": "/usr/libexec"}, {"filename": "create_automation_image_overlay", "parent": "/usr/libexec"}, {"filename": "cups", "parent": "/usr/libexec"}, {"filename": "dasd", "parent": "/usr/libexec"}, {"filename": "defragx", "parent": "/usr/libexec"}, {"filename": "diagnosticd", "parent": "/usr/libexec"}, {"filename": "dirhelper", "parent": "/usr/libexec"}, {"filename": "diskarbitrationd", "parent": "/usr/libexec"}, {"filename": "diskmanagementd", "parent": "/usr/libexec"}, {"filename": "diskmanagementstartup", "parent": "/usr/libexec"}, {"filename": "displaypolicyd", "parent": "/usr/libexec"}, {"filename": "dmd", "parent": "/usr/libexec"}, {"filename": "dp2hdmiupdater", "parent": "/usr/libexec"}, {"filename": "dpaudiothru", "parent": "/usr/libexec"}, {"filename": "dpd", "parent": "/usr/libexec"}, {"filename": "dprivacyd", "parent": "/usr/libexec"}, {"filename": "dspluginhelperd", "parent": "/usr/libexec"}, {"filename": "dtrace", "parent": "/usr/libexec"}, {"filename": "dumpemacs", "parent": "/usr/libexec"}, {"filename": "efiupdater", "parent": "/usr/libexec"}, {"filename": "emacs", "parent": "/usr/libexec"}, {"filename": "emlog.pl", "parent": "/usr/libexec"}, {"filename": "eoshostd", "parent": "/usr/libexec"}, {"filename": "fax", "parent": "/usr/libexec"}, {"filename": "feedback", "parent": "/usr/libexec"}, {"filename": "femail", "parent": "/usr/libexec"}, {"filename": "findmydevice-user-agent", "parent": "/usr/libexec"}, {"filename": "findmydeviced", "parent": "/usr/libexec"}, {"filename": "firmwarecheckers", "parent": "/usr/libexec"}, {"filename": "firmwaresyncd", "parent": "/usr/libexec"}, {"filename": "fmfd", "parent": "/usr/libexec"}, {"filename": "ftp-proxy", "parent": "/usr/libexec"}, {"filename": "gamecontrollerd", "parent": "/usr/libexec"}, {"filename": "getPPDVersion", "parent": "/usr/libexec"}, {"filename": "getty", "parent": "/usr/libexec"}, {"filename": "gkreport", "parent": "/usr/libexec"}, {"filename": "hidd", "parent": "/usr/libexec"}, {"filename": "ifcstart", "parent": "/usr/libexec"}, {"filename": "installer-core", "parent": "/usr/libexec"}, {"filename": "ioupsd", "parent": "/usr/libexec"}, {"filename": "ippusbd", "parent": "/usr/libexec"}, {"filename": "java_home", "parent": "/usr/libexec"}, {"filename": "kcproxy", "parent": "/usr/libexec"}, {"filename": "kdumpd", "parent": "/usr/libexec"}, {"filename": "kextd", "parent": "/usr/libexec"}, {"filename": "keybagd", "parent": "/usr/libexec"}, {"filename": "keyboardservicesd", "parent": "/usr/libexec"}, {"filename": "knowledge-agent", "parent": "/usr/libexec"}, {"filename": "kuncd", "parent": "/usr/libexec"}, {"filename": "languageassetd", "parent": "/usr/libexec"}, {"filename": "locate.bigram", "parent": "/usr/libexec"}, {"filename": "locate.code", "parent": "/usr/libexec"}, {"filename": "locate.concatdb", "parent": "/usr/libexec"}, {"filename": "locate.mklocatedb", "parent": "/usr/libexec"}, {"filename": "locate.updatedb", "parent": "/usr/libexec"}, {"filename": "locationd", "parent": "/usr/libexec"}, {"filename": "logd", "parent": "/usr/libexec"}, {"filename": "loginitemregisterd", "parent": "/usr/libexec"}, {"filename": "logkextloadsd", "parent": "/usr/libexec"}, {"filename": "lsd", "parent": "/usr/libexec"}, {"filename": "makewhatis", "parent": "/usr/libexec"}, {"filename": "makewhatis.local", "parent": "/usr/libexec"}, {"filename": "mcxalr", "parent": "/usr/libexec"}, {"filename": "mdmclient", "parent": "/usr/libexec"}, {"filename": "migrateLocalKDC", "parent": "/usr/libexec"}, {"filename": "mobileactivationd", "parent": "/usr/libexec"}, {"filename": "mobileassetd", "parent": "/usr/libexec"}, {"filename": "mount_url", "parent": "/usr/libexec"}, {"filename": "msutil", "parent": "/usr/libexec"}, {"filename": "multiversed", "parent": "/usr/libexec"}, {"filename": "natpmpd", "parent": "/usr/libexec"}, {"filename": "neagent", "parent": "/usr/libexec"}, {"filename": "nehelper", "parent": "/usr/libexec"}, {"filename": "nesessionmanager", "parent": "/usr/libexec"}, {"filename": "netbootdisk", "parent": "/usr/libexec"}, {"filename": "networkserviceproxy", "parent": "/usr/libexec"}, {"filename": "nfcd", "parent": "/usr/libexec"}, {"filename": "nfrestore_service", "parent": "/usr/libexec"}, {"filename": "nlcd", "parent": "/usr/libexec"}, {"filename": "nsurlsessiond", "parent": "/usr/libexec"}, {"filename": "nsurlstoraged", "parent": "/usr/libexec"}, {"filename": "ntalkd", "parent": "/usr/libexec"}, {"filename": "od_user_homes", "parent": "/usr/libexec"}, {"filename": "odproxyd", "parent": "/usr/libexec"}, {"filename": "opendirectoryd", "parent": "/usr/libexec"}, {"filename": "osaapplet", "parent": "/usr/libexec"}, {"filename": "otherbsd", "parent": "/usr/libexec"}, {"filename": "path_helper", "parent": "/usr/libexec"}, {"filename": "pboard", "parent": "/usr/libexec"}, {"filename": "pcsstatus", "parent": "/usr/libexec"}, {"filename": "periodic-wrapper", "parent": "/usr/libexec"}, {"filename": "pfd", "parent": "/usr/libexec"}, {"filename": "pkd", "parent": "/usr/libexec"}, {"filename": "pkreporter", "parent": "/usr/libexec"}, {"filename": "postfix", "parent": "/usr/libexec"}, {"filename": "productutil", "parent": "/usr/libexec"}, {"filename": "rapportd", "parent": "/usr/libexec"}, {"filename": "remotectl", "parent": "/usr/libexec"}, {"filename": "rootless-init", "parent": "/usr/libexec"}, {"filename": "routined", "parent": "/usr/libexec"}, {"filename": "rpc.rquotad", "parent": "/usr/libexec"}, {"filename": "rpcsvchost", "parent": "/usr/libexec"}, {"filename": "rtcreportingd", "parent": "/usr/libexec"}, {"filename": "sandboxd", "parent": "/usr/libexec"}, {"filename": "scsid", "parent": "/usr/libexec"}, {"filename": "sdfwupdater", "parent": "/usr/libexec"}, {"filename": "secd", "parent": "/usr/libexec"}, {"filename": "secinitd", "parent": "/usr/libexec"}, {"filename": "security-checksystem", "parent": "/usr/libexec"}, {"filename": "security-sysdiagnose", "parent": "/usr/libexec"}, {"filename": "security_authtrampoline", "parent": "/usr/libexec"}, {"filename": "securityd_service", "parent": "/usr/libexec"}, {"filename": "securityuploadd", "parent": "/usr/libexec"}, {"filename": "seld", "parent": "/usr/libexec"}, {"filename": "sftp-server", "parent": "/usr/libexec"}, {"filename": "sharingd", "parent": "/usr/libexec"}, {"filename": "signpost_reporter", "parent": "/usr/libexec"}, {"filename": "silhouette", "parent": "/usr/libexec"}, {"filename": "siriknowledged", "parent": "/usr/libexec"}, {"filename": "slapconfig-keygen", "parent": "/usr/libexec"}, {"filename": "slapd", "parent": "/usr/libexec"}, {"filename": "smb-migrate-preferences", "parent": "/usr/libexec"}, {"filename": "smb-sync-preferences", "parent": "/usr/libexec"}, {"filename": "smcDiagnose", "parent": "/usr/libexec"}, {"filename": "smcupdater", "parent": "/usr/libexec"}, {"filename": "smd", "parent": "/usr/libexec"}, {"filename": "snmpd", "parent": "/usr/libexec"}, {"filename": "spindump_agent", "parent": "/usr/libexec"}, {"filename": "ssdupdater", "parent": "/usr/libexec"}, {"filename": "ssh-keysign", "parent": "/usr/libexec"}, {"filename": "ssh-pkcs11-helper", "parent": "/usr/libexec"}, {"filename": "sshd-keygen-wrapper", "parent": "/usr/libexec"}, {"filename": "startupdiskhelper", "parent": "/usr/libexec"}, {"filename": "studentd", "parent": "/usr/libexec"}, {"filename": "swcd", "parent": "/usr/libexec"}, {"filename": "symptomsd", "parent": "/usr/libexec"}, {"filename": "sysdiagnose_helper", "parent": "/usr/libexec"}, {"filename": "sysmond", "parent": "/usr/libexec"}, {"filename": "syspolicyd", "parent": "/usr/libexec"}, {"filename": "systemstats_boot", "parent": "/usr/libexec"}, {"filename": "tailspind", "parent": "/usr/libexec"}, {"filename": "taskgated", "parent": "/usr/libexec"}, {"filename": "taskgated-helper", "parent": "/usr/libexec"}, {"filename": "testmanagerd", "parent": "/usr/libexec"}, {"filename": "tftpd", "parent": "/usr/libexec"}, {"filename": "thermald", "parent": "/usr/libexec"}, {"filename": "timed", "parent": "/usr/libexec"}, {"filename": "trustd", "parent": "/usr/libexec"}, {"filename": "tzd", "parent": "/usr/libexec"}, {"filename": "tzinit", "parent": "/usr/libexec"}, {"filename": "tzlinkd", "parent": "/usr/libexec"}, {"filename": "ucupdate", "parent": "/usr/libexec"}, {"filename": "unbound", "parent": "/usr/libexec"}, {"filename": "undoServerAppDNSPrefs", "parent": "/usr/libexec"}, {"filename": "upsshutdown", "parent": "/usr/libexec"}, {"filename": "usbcupdater", "parent": "/usr/libexec"}, {"filename": "usbd", "parent": "/usr/libexec"}, {"filename": "vbiosupdater", "parent": "/usr/libexec"}, {"filename": "videosubscriptionsd", "parent": "/usr/libexec"}, {"filename": "vndevice", "parent": "/usr/libexec"}, {"filename": "warmd", "parent": "/usr/libexec"}, {"filename": "warmd_agent", "parent": "/usr/libexec"}, {"filename": "watchdogd", "parent": "/usr/libexec"}, {"filename": "webinspectord", "parent": "/usr/libexec"}, {"filename": "wfs", "parent": "/usr/libexec"}, {"filename": "wifiFirmwareLoader", "parent": "/usr/libexec"}, {"filename": "wifid", "parent": "/usr/libexec"}, {"filename": "wifivelocityd", "parent": "/usr/libexec"}, {"filename": "wps", "parent": "/usr/libexec"}, {"filename": "x11-select", "parent": "/usr/libexec"}, {"filename": "xartstorageremoted", "parent": "/usr/libexec"}, {"filename": "xpchelper", "parent": "/usr/libexec"}, {"filename": "xpcproxy", "parent": "/usr/libexec"}, {"filename": "xpcroleaccountd", "parent": "/usr/libexec"}, {"filename": "xscertd", "parent": "/usr/libexec"}, {"filename": "xscertd-helper", "parent": "/usr/libexec"}, {"filename": "xssendevent", "parent": "/usr/libexec"}, {"filename": "Caskroom", "parent": "/usr/local"}, {"filename": "Cellar", "parent": "/usr/local"}, {"filename": "Frameworks", "parent": "/usr/local"}, {"filename": "Homebrew", "parent": "/usr/local"}, {"filename": "LANDesk", "parent": "/usr/local"}, {"filename": "bin", "parent": "/usr/local"}, {"filename": "etc", "parent": "/usr/local"}, {"filename": "ibmcloud", "parent": "/usr/local"}, {"filename": "include", "parent": "/usr/local"}, {"filename": "jamf", "parent": "/usr/local"}, {"filename": "lib", "parent": "/usr/local"}, {"filename": "opt", "parent": "/usr/local"}, {"filename": "sbin", "parent": "/usr/local"}, {"filename": "share", "parent": "/usr/local"}, {"filename": "var", "parent": "/usr/local"}, {"filename": "AppleFileServer", "parent": "/usr/sbin"}, {"filename": "BootCacheControl", "parent": "/usr/sbin"}, {"filename": "DevToolsSecurity", "parent": "/usr/sbin"}, {"filename": "DirectoryService", "parent": "/usr/sbin"}, {"filename": "KernelEventAgent", "parent": "/usr/sbin"}, {"filename": "NetBootClientStatus", "parent": "/usr/sbin"}, {"filename": "PasswordService", "parent": "/usr/sbin"}, {"filename": "WirelessRadioManagerd", "parent": "/usr/sbin"}, {"filename": "ab", "parent": "/usr/sbin"}, {"filename": "ac", "parent": "/usr/sbin"}, {"filename": "accept", "parent": "/usr/sbin"}, {"filename": "accton", "parent": "/usr/sbin"}, {"filename": "amt", "parent": "/usr/sbin"}, {"filename": "apachectl", "parent": "/usr/sbin"}, {"filename": "appsleepd", "parent": "/usr/sbin"}, {"filename": "arp", "parent": "/usr/sbin"}, {"filename": "aslmanager", "parent": "/usr/sbin"}, {"filename": "asr", "parent": "/usr/sbin"}, {"filename": "audit", "parent": "/usr/sbin"}, {"filename": "auditd", "parent": "/usr/sbin"}, {"filename": "auditreduce", "parent": "/usr/sbin"}, {"filename": "authserver", "parent": "/usr/sbin"}, {"filename": "automount", "parent": "/usr/sbin"}, {"filename": "avbdeviced", "parent": "/usr/sbin"}, {"filename": "bless", "parent": "/usr/sbin"}, {"filename": "bluetoothaudiod", "parent": "/usr/sbin"}, {"filename": "bluetoothd", "parent": "/usr/sbin"}, {"filename": "bnepd", "parent": "/usr/sbin"}, {"filename": "cfprefsd", "parent": "/usr/sbin"}, {"filename": "chat", "parent": "/usr/sbin"}, {"filename": "checkgid", "parent": "/usr/sbin"}, {"filename": "chown", "parent": "/usr/sbin"}, {"filename": "chroot", "parent": "/usr/sbin"}, {"filename": "ckksctl", "parent": "/usr/sbin"}, {"filename": "coreaudiod", "parent": "/usr/sbin"}, {"filename": "createhomedir", "parent": "/usr/sbin"}, {"filename": "cron", "parent": "/usr/sbin"}, {"filename": "cupsaccept", "parent": "/usr/sbin"}, {"filename": "cupsaddsmb", "parent": "/usr/sbin"}, {"filename": "cupsctl", "parent": "/usr/sbin"}, {"filename": "cupsd", "parent": "/usr/sbin"}, {"filename": "cupsdisable", "parent": "/usr/sbin"}, {"filename": "cupsenable", "parent": "/usr/sbin"}, {"filename": "cupsfilter", "parent": "/usr/sbin"}, {"filename": "cupsreject", "parent": "/usr/sbin"}, {"filename": "cvadmin", "parent": "/usr/sbin"}, {"filename": "cvdb", "parent": "/usr/sbin"}, {"filename": "cvdbset", "parent": "/usr/sbin"}, {"filename": "cvfsck", "parent": "/usr/sbin"}, {"filename": "cvfsdb", "parent": "/usr/sbin"}, {"filename": "cvfsid", "parent": "/usr/sbin"}, {"filename": "cvgather", "parent": "/usr/sbin"}, {"filename": "cvlabel", "parent": "/usr/sbin"}, {"filename": "cvmkfs", "parent": "/usr/sbin"}, {"filename": "cvupdatefs", "parent": "/usr/sbin"}, {"filename": "cvversions", "parent": "/usr/sbin"}, {"filename": "dbmmanage", "parent": "/usr/sbin"}, {"filename": "ddns-confgen", "parent": "/usr/sbin"}, {"filename": "defragcli", "parent": "/usr/sbin"}, {"filename": "dev_mkdb", "parent": "/usr/sbin"}, {"filename": "disktool", "parent": "/usr/sbin"}, {"filename": "diskutil", "parent": "/usr/sbin"}, {"filename": "distnoted", "parent": "/usr/sbin"}, {"filename": "dnctl", "parent": "/usr/sbin"}, {"filename": "dnsextd", "parent": "/usr/sbin"}, {"filename": "dot_clean", "parent": "/usr/sbin"}, {"filename": "dsconfigad", "parent": "/usr/sbin"}, {"filename": "dsconfigldap", "parent": "/usr/sbin"}, {"filename": "dseditgroup", "parent": "/usr/sbin"}, {"filename": "dsenableroot", "parent": "/usr/sbin"}, {"filename": "dtrace", "parent": "/usr/sbin"}, {"filename": "edquota", "parent": "/usr/sbin"}, {"filename": "envvars", "parent": "/usr/sbin"}, {"filename": "envvars-std", "parent": "/usr/sbin"}, {"filename": "fcgistarter", "parent": "/usr/sbin"}, {"filename": "fdisk", "parent": "/usr/sbin"}, {"filename": "filecoordinationd", "parent": "/usr/sbin"}, {"filename": "firmwarepasswd", "parent": "/usr/sbin"}, {"filename": "gpt", "parent": "/usr/sbin"}, {"filename": "graphicssession", "parent": "/usr/sbin"}, {"filename": "gssd", "parent": "/usr/sbin"}, {"filename": "hdik", "parent": "/usr/sbin"}, {"filename": "htcacheclean", "parent": "/usr/sbin"}, {"filename": "htdbm", "parent": "/usr/sbin"}, {"filename": "htdigest", "parent": "/usr/sbin"}, {"filename": "htpasswd", "parent": "/usr/sbin"}, {"filename": "httpd", "parent": "/usr/sbin"}, {"filename": "httpd-wrapper", "parent": "/usr/sbin"}, {"filename": "httxt2dbm", "parent": "/usr/sbin"}, {"filename": "installer", "parent": "/usr/sbin"}, {"filename": "ioalloccount", "parent": "/usr/sbin"}, {"filename": "ioclasscount", "parent": "/usr/sbin"}, {"filename": "ioreg", "parent": "/usr/sbin"}, {"filename": "iostat", "parent": "/usr/sbin"}, {"filename": "ipconfig", "parent": "/usr/sbin"}, {"filename": "kadmin", "parent": "/usr/sbin"}, {"filename": "kadmin.local", "parent": "/usr/sbin"}, {"filename": "kdcsetup", "parent": "/usr/sbin"}, {"filename": "kextcache", "parent": "/usr/sbin"}, {"filename": "kextfind", "parent": "/usr/sbin"}, {"filename": "kextlibs", "parent": "/usr/sbin"}, {"filename": "kextstat", "parent": "/usr/sbin"}, {"filename": "krbservicesetup", "parent": "/usr/sbin"}, {"filename": "ktutil", "parent": "/usr/sbin"}, {"filename": "languagesetup", "parent": "/usr/sbin"}, {"filename": "localemanager", "parent": "/usr/sbin"}, {"filename": "logresolve", "parent": "/usr/sbin"}, {"filename": "lpadmin", "parent": "/usr/sbin"}, {"filename": "lpc", "parent": "/usr/sbin"}, {"filename": "lpinfo", "parent": "/usr/sbin"}, {"filename": "lpmove", "parent": "/usr/sbin"}, {"filename": "lsof", "parent": "/usr/sbin"}, {"filename": "mDNSResponder", "parent": "/usr/sbin"}, {"filename": "mDNSResponderHelper", "parent": "/usr/sbin"}, {"filename": "mkextunpack", "parent": "/usr/sbin"}, {"filename": "mkfile", "parent": "/usr/sbin"}, {"filename": "mkpassdb", "parent": "/usr/sbin"}, {"filename": "mtree", "parent": "/usr/sbin"}, {"filename": "ndp", "parent": "/usr/sbin"}, {"filename": "netbiosd", "parent": "/usr/sbin"}, {"filename": "netstat", "parent": "/usr/sbin"}, {"filename": "networksetup", "parent": "/usr/sbin"}, {"filename": "newsyslog", "parent": "/usr/sbin"}, {"filename": "nfs4mapid", "parent": "/usr/sbin"}, {"filename": "nlcontrol", "parent": "/usr/sbin"}, {"filename": "notifyd", "parent": "/usr/sbin"}, {"filename": "nvram", "parent": "/usr/sbin"}, {"filename": "ocspd", "parent": "/usr/sbin"}, {"filename": "pdisk", "parent": "/usr/sbin"}, {"filename": "periodic", "parent": "/usr/sbin"}, {"filename": "php-fpm", "parent": "/usr/sbin"}, {"filename": "pictd", "parent": "/usr/sbin"}, {"filename": "pkgutil", "parent": "/usr/sbin"}, {"filename": "postalias", "parent": "/usr/sbin"}, {"filename": "postcat", "parent": "/usr/sbin"}, {"filename": "postconf", "parent": "/usr/sbin"}, {"filename": "postdrop", "parent": "/usr/sbin"}, {"filename": "postfix", "parent": "/usr/sbin"}, {"filename": "postkick", "parent": "/usr/sbin"}, {"filename": "postlock", "parent": "/usr/sbin"}, {"filename": "postlog", "parent": "/usr/sbin"}, {"filename": "postmap", "parent": "/usr/sbin"}, {"filename": "postmulti", "parent": "/usr/sbin"}, {"filename": "postqueue", "parent": "/usr/sbin"}, {"filename": "postsuper", "parent": "/usr/sbin"}, {"filename": "pppd", "parent": "/usr/sbin"}, {"filename": "praudit", "parent": "/usr/sbin"}, {"filename": "purge", "parent": "/usr/sbin"}, {"filename": "pwd_mkdb", "parent": "/usr/sbin"}, {"filename": "quotaoff", "parent": "/usr/sbin"}, {"filename": "quotaon", "parent": "/usr/sbin"}, {"filename": "racoon", "parent": "/usr/sbin"}, {"filename": "raidutil", "parent": "/usr/sbin"}, {"filename": "rarpd", "parent": "/usr/sbin"}, {"filename": "reject", "parent": "/usr/sbin"}, {"filename": "repairHomePermissions", "parent": "/usr/sbin"}, {"filename": "repquota", "parent": "/usr/sbin"}, {"filename": "rotatelogs", "parent": "/usr/sbin"}, {"filename": "rpc.lockd", "parent": "/usr/sbin"}, {"filename": "rpc.statd", "parent": "/usr/sbin"}, {"filename": "rpcbind", "parent": "/usr/sbin"}, {"filename": "rpcinfo", "parent": "/usr/sbin"}, {"filename": "rtadvd", "parent": "/usr/sbin"}, {"filename": "rtsold", "parent": "/usr/sbin"}, {"filename": "sa", "parent": "/usr/sbin"}, {"filename": "sc_auth", "parent": "/usr/sbin"}, {"filename": "screencapture", "parent": "/usr/sbin"}, {"filename": "scselect", "parent": "/usr/sbin"}, {"filename": "scutil", "parent": "/usr/sbin"}, {"filename": "securityd", "parent": "/usr/sbin"}, {"filename": "sendmail", "parent": "/usr/sbin"}, {"filename": "serverinfo", "parent": "/usr/sbin"}, {"filename": "setkey", "parent": "/usr/sbin"}, {"filename": "setquota", "parent": "/usr/sbin"}, {"filename": "sharing", "parent": "/usr/sbin"}, {"filename": "skywalkctl", "parent": "/usr/sbin"}, {"filename": "slapacl", "parent": "/usr/sbin"}, {"filename": "slapadd", "parent": "/usr/sbin"}, {"filename": "slapauth", "parent": "/usr/sbin"}, {"filename": "slapcat", "parent": "/usr/sbin"}, {"filename": "slapconfig", "parent": "/usr/sbin"}, {"filename": "slapdn", "parent": "/usr/sbin"}, {"filename": "slapindex", "parent": "/usr/sbin"}, {"filename": "slappasswd", "parent": "/usr/sbin"}, {"filename": "slapschema", "parent": "/usr/sbin"}, {"filename": "slaptest", "parent": "/usr/sbin"}, {"filename": "smbd", "parent": "/usr/sbin"}, {"filename": "smbdiagnose", "parent": "/usr/sbin"}, {"filename": "sncfginstall", "parent": "/usr/sbin"}, {"filename": "sncfgquery", "parent": "/usr/sbin"}, {"filename": "sncfgremove", "parent": "/usr/sbin"}, {"filename": "sncfgtemplate", "parent": "/usr/sbin"}, {"filename": "sncfgvalidate", "parent": "/usr/sbin"}, {"filename": "sndiskmove", "parent": "/usr/sbin"}, {"filename": "snmpd", "parent": "/usr/sbin"}, {"filename": "snmptrapd", "parent": "/usr/sbin"}, {"filename": "softwareupdate", "parent": "/usr/sbin"}, {"filename": "spctl", "parent": "/usr/sbin"}, {"filename": "spindump", "parent": "/usr/sbin"}, {"filename": "spray", "parent": "/usr/sbin"}, {"filename": "sshd", "parent": "/usr/sbin"}, {"filename": "sso_util", "parent": "/usr/sbin"}, {"filename": "sysadminctl", "parent": "/usr/sbin"}, {"filename": "sysctl", "parent": "/usr/sbin"}, {"filename": "syslogd", "parent": "/usr/sbin"}, {"filename": "system_profiler", "parent": "/usr/sbin"}, {"filename": "systemkeychain", "parent": "/usr/sbin"}, {"filename": "systemsetup", "parent": "/usr/sbin"}, {"filename": "systemsoundserverd", "parent": "/usr/sbin"}, {"filename": "systemstats", "parent": "/usr/sbin"}, {"filename": "taskpolicy", "parent": "/usr/sbin"}, {"filename": "tcpdump", "parent": "/usr/sbin"}, {"filename": "traceroute", "parent": "/usr/sbin"}, {"filename": "traceroute6", "parent": "/usr/sbin"}, {"filename": "tsig-keygen", "parent": "/usr/sbin"}, {"filename": "uasysdiagnose", "parent": "/usr/sbin"}, {"filename": "universalaccessd", "parent": "/usr/sbin"}, {"filename": "unsetpassword", "parent": "/usr/sbin"}, {"filename": "usernoted", "parent": "/usr/sbin"}, {"filename": "uuchk", "parent": "/usr/sbin"}, {"filename": "uucico", "parent": "/usr/sbin"}, {"filename": "uuconv", "parent": "/usr/sbin"}, {"filename": "uusched", "parent": "/usr/sbin"}, {"filename": "uuxqt", "parent": "/usr/sbin"}, {"filename": "vifs", "parent": "/usr/sbin"}, {"filename": "vipw", "parent": "/usr/sbin"}, {"filename": "visudo", "parent": "/usr/sbin"}, {"filename": "vpnd", "parent": "/usr/sbin"}, {"filename": "vsdbutil", "parent": "/usr/sbin"}, {"filename": "weakpass_edit", "parent": "/usr/sbin"}, {"filename": "wfsctl", "parent": "/usr/sbin"}, {"filename": "wirelessproxd", "parent": "/usr/sbin"}, {"filename": "xartutil", "parent": "/usr/sbin"}, {"filename": "xsanctl", "parent": "/usr/sbin"}, {"filename": "xscertadmin", "parent": "/usr/sbin"}, {"filename": "zdump", "parent": "/usr/sbin"}, {"filename": "zic", "parent": "/usr/sbin"}, {"filename": "CSI", "parent": "/usr/share"}, {"filename": "CoreDuetDaemonConfig.bundle", "parent": "/usr/share"}, {"filename": "calendar", "parent": "/usr/share"}, {"filename": "com.apple.languageassetd", "parent": "/usr/share"}, {"filename": "cracklib", "parent": "/usr/share"}, {"filename": "cups", "parent": "/usr/share"}, {"filename": "dict", "parent": "/usr/share"}, {"filename": "doc", "parent": "/usr/share"}, {"filename": "emacs", "parent": "/usr/share"}, {"filename": "examples", "parent": "/usr/share"}, {"filename": "file", "parent": "/usr/share"}, {"filename": "firmware", "parent": "/usr/share"}, {"filename": "germantok", "parent": "/usr/share"}, {"filename": "groff", "parent": "/usr/share"}, {"filename": "hiutil", "parent": "/usr/share"}, {"filename": "httpd", "parent": "/usr/share"}, {"filename": "icu", "parent": "/usr/share"}, {"filename": "info", "parent": "/usr/share"}, {"filename": "java", "parent": "/usr/share"}, {"filename": "kdrl.bundle", "parent": "/usr/share"}, {"filename": "kpep", "parent": "/usr/share"}, {"filename": "langid", "parent": "/usr/share"}, {"filename": "locale", "parent": "/usr/share"}, {"filename": "man", "parent": "/usr/share"}, {"filename": "mecabra", "parent": "/usr/share"}, {"filename": "misc", "parent": "/usr/share"}, {"filename": "php", "parent": "/usr/share"}, {"filename": "pmenergy", "parent": "/usr/share"}, {"filename": "ri", "parent": "/usr/share"}, {"filename": "sandbox", "parent": "/usr/share"}, {"filename": "screen", "parent": "/usr/share"}, {"filename": "skel", "parent": "/usr/share"}, {"filename": "snmp", "parent": "/usr/share"}, {"filename": "tabset", "parent": "/usr/share"}, {"filename": "terminfo", "parent": "/usr/share"}, {"filename": "texinfo", "parent": "/usr/share"}, {"filename": "thermald.bundle", "parent": "/usr/share"}, {"filename": "tokenizer", "parent": "/usr/share"}, {"filename": "ucupdate", "parent": "/usr/share"}, {"filename": "uucp", "parent": "/usr/share"}, {"filename": "vim", "parent": "/usr/share"}, {"filename": "zoneinfo", "parent": "/usr/share"}, {"filename": "zoneinfo.default", "parent": "/usr/share"}, {"filename": "zsh", "parent": "/usr/share"}, {"filename": "bootcaches.plist", "parent": "/usr/standalone"}, {"filename": "firmware", "parent": "/usr/standalone"}, {"filename": "i386", "parent": "/usr/standalone"}] jc-1.17.3/tests/fixtures/osx-10.14.6/ls-glob.out000066400000000000000000000456511415226333200207340ustar00rootroot00000000000000/usr/bin: 2to3- 2to3-2.7 AssetCacheLocatorUtil AssetCacheManagerUtil AssetCacheTetheratorUtil BuildStrings CpMac DeRez GetFileInfo IOAccelMemory MergePef MvMac ResMerger Rez RezDet RezWack SafeEjectGPU SetFile SplitForks UnRezWack a2p a2p5.18 actool addftinfo afclip afconvert afhash afida afinfo afmtodit afplay afscexpand agentxtrap agvtool alias applesingle appletviewer apply apropos apt ar arch as asa asctl assetutil at atos atq atrm atsutil automator auval auvaltool avbdiagnose avbutil avconvert avmetareadwrite awk banner base64 basename bashbug batch bc bg biff binhex binhex.pl binhex5.18.pl bioutil bison bitesize.d brctl bsdtar bspatch btmmdiagnose bunzip2 bzcat bzcmp bzdiff bzegrep bzfgrep bzgrep bzip2 bzip2recover bzless bzmore c++ c++filt c2ph c2ph5.18 c89 c99 caffeinate cal calendar cancel cap_mkdb captoinfo cc cd certtool checknr chflags chfn chgrp chpass chsh cksum clang clang++ clear cmp cmpdylib codesign codesign_allocate col colcrt colldef colrm column comm command compress compression_tool config_data config_data5.18 corebrightnessdiag corelist corelist5.18 cpan cpan2dist cpan2dist5.18 cpan5.18 cpanp cpanp-run-perl cpanp-run-perl5.18 cpanp5.18 cpio cpp cpu_profiler.d cpuwalk.d crc32 crc325.18 creatbyproc.d crlrefresh crontab csdiagnose csgather csplit csreq csrutil ctags ctf_insert cu cups-config cupstestdsc cupstestppd curl curl-config cut cvaffinity cvcp cvmkdir cvmkfile dappprof dapptrace darwinup db_archive db_checkpoint db_codegen db_deadlock db_dump db_hotbackup db_load db_printlog db_recover db_stat db_upgrade db_verify dbicadmin dbicadmin5.18 dbilogstrip dbilogstrip5.18 dbiprof dbiprof5.18 dbiproxy dbiproxy5.18 dc debinhex.pl debinhex5.18.pl defaults delv desdp diagnose-fu diff diff3 diffstat dig dirname dispqlen.d ditto dmc dns-sd drutil dscacheutil dscl dserr dsexport dsimport dsmemberutil dsymutil dtruss du dwarfdump easy_install easy_install-2.7 egrep emacs emacs-undumped emacsclient enc2xs enc2xs5.18 encode_keychange env eqn erb errinfo etags ex execsnoop expand expect extcheck eyapp eyapp5.18 false fc fddist fdesetup fg fgrep file filebyproc.d filtercalltree find find2perl find2perl5.18 findrule findrule5.18 finger fixproc flex flex++ fmt fold fontrestore footprint format-sql format-sql5.18 from fs_usage funzip fuser fwkdp fwkpfv g++ gatherheaderdoc gcc gcore gcov gdiffmk gem gen_bridge_metadata gencat genstrings getconf getopt getopts git git-cvsserver git-receive-pack git-shell git-upload-archive git-upload-pack gm4 gnumake gperf grep grn grodvi groff groffer grog grolbp grolj4 grops grotty groups gunzip gzcat gzexe gzip h2ph h2ph5.18 h2xs h2xs5.18 hash hdid hdiutil hdxml2manxml head headerdoc2html heap heap32 hexdump hidutil hiutil host hostinfo hotspot.d hpftodit hpmdiagnose htmltree htmltree5.18 ibtool iconutil iconv ictool id idle idle2.7 idlj imptrace indent indxbib info infocmp infokey infotocap install install-info install_name_tool instmodsh instmodsh5.18 instruments iofile.d iofileb.d iopattern iopending iosnoop iotop ip2cc ip2cc5.18 ipcount ipcount5.18 ipcrm ipcs ippfind ipptool iprofiler iptab iptab5.18 irb jar jarsigner java javac javadoc javah javap javapackager javaws jcmd jconsole jcontrol jdb jdeps jhat jhsdb jimage jinfo jjs jmap jmc jobs join jot jps jrunscript jsadebugd jshell json_pp json_pp5.18 jstack jstat jstatd jvisualvm kcc kdestroy kextutil keytool kgetcred kill.d killall kinit klist kpasswd krb5-config kswitch ktrace lam last lastcomm lastwords latency layerutil ld ldapadd ldapcompare ldapdelete ldapexop ldapmodify ldapmodrdn ldappasswd ldapsearch ldapurl ldapwhoami leaks leaks32 leave less lessecho lex libnetcfg libnetcfg5.18 libtool lipo lkbib lldb llvm-g++ llvm-gcc loads.d locale localedef locate lockstat log logger login logname look lookbib lorder lp lpoptions lpq lpr lprm lpstat lsappinfo lsbom lskq lsm lsmp lsvfs lwp-download lwp-download5.18 lwp-dump lwp-dump5.18 lwp-mirror lwp-mirror5.18 lwp-request lwp-request5.18 m4 macbinary macerror macerror5.18 machine mail mailq mailx make makeinfo malloc_history malloc_history32 man manpath mcxquery mcxrefresh mddiagnose mdfind mdimport mdls mdutil memory_pressure mesg mib2c mib2c-update mig mkbom mkdep mkfifo mklocale mktemp mmroff mnthome moo-outdated moo-outdated5.18 moose-outdated moose-outdated5.18 more mp2bug msgs nano nasm native2ascii nbdst nc ncal ncctl ncdestroy ncinit nclist ncurses5.4-config ndisasm neqn net-server net-server5.18 net-snmp-cert net-snmp-config net-snmp-create-v3-user nettop newaliases newgrp newproc.d nfsstat nice nl nm nmedit nohup notifyutil nroff nscurl nslookup nsupdate objdump ocspcheck od odutil open opendiff opensnoop openssl orbd osacompile osadecompile osalang osascript otool pack200 package-stash-conflicts package-stash-conflicts5.18 pagesize pagestuff par.pl par5.18.pl parl parl5.18 parldyn parldyn5.18 passwd paste patch pathchk pathopens.d pbcopy pbpaste pcap-config pcsctest perl perl5.18 perlbug perlbug5.18 perldoc perldoc5.18 perlivp perlivp5.18 perlthanks perlthanks5.18 pfbtops pgrep phar phar.phar php php-config phpize pic pico piconv piconv5.18 pidpersec.d pkgbuild pkill pl pl2pm pl2pm5.18 plockstat pluginkit plutil pmset pod2html pod2html5.18 pod2latex pod2latex5.18 pod2man pod2man5.18 pod2readme pod2readme5.18 pod2text pod2text5.18 pod2usage pod2usage5.18 podchecker podchecker5.18 podselect podselect5.18 policytool post-grohtml power_report.sh powermetrics pp pp5.18 ppdc ppdhtml ppdi ppdmerge ppdpo pr pre-grohtml priclass.d pridist.d printenv printf procsystime productbuild productsign profiles prove prove5.18 psed psed5.18 pstopdf pstruct pstruct5.18 ptar ptar5.18 ptardiff ptardiff5.18 ptargrep ptargrep5.18 pubsub pwhich pwhich5.18 pwpolicy pydoc pydoc2.7 python python-config python2.7 python2.7-config pythonw pythonw2.7 qc2movie qlmanage qtdefaults qtmodernizer quota rails rake ranlib rdoc read readlink rebase redo_prebinding refer renice reset resolveLinks rev ri rmic rmid rmiregistry rpcgen rs rsync ruby rview rvim rwbypid.d rwbytype.d rwsnoop s2p s2p5.18 safaridriver sample sampleproc sandbox-exec say sc_usage scandeps.pl scandeps5.18.pl schemagen scp screen script sdef sdiff sdp sdx security sed seeksize.d segedit seq serialver servertool setregion setuids.d sfltool sftp shar shasum shasum5.18 shlock showmount sigdist.d sips size slogin smbutil smtpd.py smtpd2.7.py snfsdefrag snmp-bridge-mib snmpbulkget snmpbulkwalk snmpconf snmpdelta snmpdf snmpget snmpgetnext snmpinform snmpnetstat snmpset snmpstatus snmptable snmptest snmptranslate snmptrap snmpusm snmpvacm snmpwalk sntp soelim sort spfd spfd5.18 spfquery spfquery5.18 splain splain5.18 split sqlite3 ssh ssh-add ssh-agent ssh-copy-id ssh-keygen ssh-keyscan stapler stat stringdups stringdups32 strings strip stty.pl stty5.18.pl su sudo sum svn svnadmin svndumpfilter svnlook svnserve svnsync svnversion sw_vers swift swiftc symbols symbolscache syscallbypid.d syscallbyproc.d syscallbysysc.d sysdiagnose syslog systriage tab2space tabs tail tailspin talk tar taskinfo tbl tbtdiagnose tccutil tclsh tclsh8.5 tee texi2dvi texi2pdf texindex textutil tfmtodit tftp thermal tic tidy tiff2icns tiffutil time timer_analyser.d timerfires tkcon tkmib tkpp tkpp5.18 tmdiagnose tmutil tnameserv toe top tops topsyscall topsysproc touch tput tr trace traptoemail treereg treereg5.18 trimforce troff true tset tsort tty type ul ulimit umask unalias uname uncompress unexpand unifdef unifdefall uniq units unpack200 unvis unzip unzipsfx update_dyld_shared_cache uptime usbkdp users uucp uudecode uuencode uuidgen uulog uuname uupick uustat uuto uux vi view vim vimdiff vimtutor vis vm_stat vmmap vmmap32 w wait wall wc wdutil what whatis whereis which who whoami whois wish wish8.5 write wsgen wsimport xar xargs xattr xattr-2.7 xcode-select xcodebuild xcrun xcscontrol xcsdiagnose xed xgettext.pl xgettext5.18.pl xip xjc xml2-config xml2man xmlcatalog xmllint xpath xpath5.18 xslt-config xsltproc xsubpp xsubpp5.18 xxd yaa yacc yes zcat zcmp zdiff zegrep zfgrep zforce zgrep zip zipcloak zipdetails zipdetails5.18 zipgrep zipinfo zipnote zipsplit zless zmore znew zprint /usr/lib: ACIPCBTLib.dylib AppleConvergedTransport.dylib PN548.dylib PN548_API.dylib PN548_HAL.dylib charset.alias cron dtrace dyld groff libATCommandStudioDynamic.dylib libAccessibility.dylib libAccountPolicyTranslation.dylib libAppleSSEExt.dylib libAppletTranslationLibrary.dylib libAudioIssueDetector.dylib libAudioStatistics.dylib libBSDPClient.A.dylib libBSDPClient.dylib libCRFSuite.dylib libCRFSuite0.12.dylib libCTGreenTeaLogger.dylib libChineseTokenizer.dylib libCoreStorage.dylib libDHCPServer.A.dylib libDHCPServer.dylib libDiagnosticMessagesClient.dylib libFDR_osx.dylib libFosl_dynamic.dylib libIASAuthReboot.dylib libIASUnifiedProgress.dylib libMatch.1.dylib libMatch.dylib libMaxEnt.dylib libMemoryResourceException.dylib libMobileGestalt.dylib libOpenScriptingUtil.dylib libParallelCompression.dylib libQMIParserDynamic.dylib libSMC.dylib libScreenReader.dylib libSystem.B.dylib libSystem.dylib libTelephonyUtilDynamic.dylib libThaiTokenizer.dylib libUniversalAccess.dylib libXSEvent.dylib libXplugin.1.dylib libXplugin.dylib libapple_nghttp2.dylib libapr-1.0.dylib libapr-1.dylib libaprutil-1.0.dylib libaprutil-1.dylib libarchive.2.dylib libarchive.dylib libate.dylib libauditd.0.dylib libauditd.dylib libauto.dylib libblas.dylib libboringssl.dylib libbsm.0.dylib libbsm.dylib libbz2.1.0.5.dylib libbz2.1.0.dylib libbz2.dylib libc++.1.dylib libc++.dylib libc++abi.dylib libc.dylib libcblas.dylib libcharset.1.0.0.dylib libcharset.1.dylib libcharset.dylib libclapack.dylib libcmph.dylib libcom_err.dylib libcompression.dylib libcoreroutine.dylib libcoretls.dylib libcoretls_cfhelpers.dylib libcrypto.0.9.7.dylib libcrypto.0.9.8.dylib libcrypto.35.dylib libcrypto.41.dylib libcrypto.42.dylib libcrypto.dylib libcsfde.dylib libcupolicy.dylib libcups.2.dylib libcups.dylib libcupscgi.1.dylib libcupscgi.dylib libcupsimage.2.dylib libcupsimage.dylib libcupsmime.1.dylib libcupsmime.dylib libcupsppdc.1.dylib libcupsppdc.dylib libcurl.3.dylib libcurl.4.dylib libcurl.dylib libcurses.dylib libdbm.dylib libdes425.dylib libdl.dylib libdns_services.dylib libdscsym.dylib libdtrace.dylib libdz.dylib libeasyperf.dylib libecpg.6.5.dylib libecpg.6.dylib libecpg.dylib libecpg_compat.3.5.dylib libecpg_compat.3.dylib libecpg_compat.dylib libedit.2.dylib libedit.3.0.dylib libedit.3.dylib libedit.dylib libenergytrace.dylib libexpat.1.dylib libexpat.dylib libexslt.0.dylib libexslt.dylib libextension.dylib libf77lapack.dylib libffi.dylib libform.5.4.dylib libform.dylib libgcc_s.1.dylib libgermantok.dylib libgmalloc.dylib libgssapi_krb5.dylib libheimdal-asn1.dylib libhunspell-1.2.0.0.0.dylib libhunspell-1.2.0.dylib libhunspell-1.2.dylib libiconv.2.4.0.dylib libiconv.2.dylib libiconv.dylib libicucore.A.dylib libicucore.dylib libinfo.dylib libiodbc.2.1.18.dylib libiodbc.2.dylib libiodbc.dylib libiodbcinst.2.1.18.dylib libiodbcinst.2.dylib libiodbcinst.dylib libipconfig.dylib libipsec.A.dylib libipsec.dylib libk5crypto.dylib libkrb4.dylib libkrb5.dylib libkrb524.dylib libkrb5support.dylib libktrace.dylib liblangid.dylib liblapack.dylib liblber.dylib libldap.dylib libldap_r.dylib liblzma.5.dylib liblzma.dylib libm.dylib libmarisa.dylib libmecab.1.0.0.dylib libmecab.dylib libmecabra.dylib libmenu.5.4.dylib libmenu.dylib libmx.A.dylib libmx.dylib libncurses.5.4.dylib libncurses.5.dylib libncurses.dylib libnetsnmp.15.1.2.dylib libnetsnmp.15.dylib libnetsnmp.25.dylib libnetsnmp.5.2.1.dylib libnetsnmp.5.dylib libnetsnmp.dylib libnetsnmpagent.25.dylib libnetsnmpagent.dylib libnetsnmphelpers.25.dylib libnetsnmphelpers.dylib libnetsnmpmibs.25.dylib libnetsnmpmibs.dylib libnetsnmptrapd.25.dylib libnetsnmptrapd.dylib libnetwork.dylib libnetworkextension.dylib libnfrestore.dylib libnfshared.dylib libobjc-trampolines.dylib libobjc.A.dylib libobjc.dylib libodfde.dylib libodmodule.dylib libpam.1.dylib libpam.2.dylib libpam.dylib libpanel.5.4.dylib libpanel.dylib libpcap.A.dylib libpcap.dylib libpcre.0.dylib libpcre.dylib libpcreposix.0.dylib libpcreposix.dylib libperfcheck.dylib libpgtypes.3.4.dylib libpgtypes.3.dylib libpgtypes.dylib libpmenergy.dylib libpmsample.dylib libpoll.dylib libpq.5.6.dylib libpq.5.dylib libpq.dylib libprequelite.dylib libproc.dylib libpthread.dylib libpython.dylib libpython2.7.dylib libquic.dylib libquit.dylib libreadline.dylib libresolv.9.dylib libresolv.dylib librpcsvc.dylib libruby.2.3.0.dylib libruby.2.3.dylib libruby.dylib libsandbox.1.dylib libsandbox.dylib libsasl2.2.0.1.dylib libsasl2.2.0.15.dylib libsasl2.2.0.21.dylib libsasl2.2.0.22.dylib libsasl2.2.dylib libsasl2.dylib libspindump.dylib libsqlite3.0.dylib libsqlite3.dylib libssl.0.9.7.dylib libssl.0.9.8.dylib libssl.35.dylib libssl.43.dylib libssl.44.dylib libssl.dylib libstdc++.6.0.9.dylib libstdc++.6.dylib libstdc++.dylib libsysdiagnose.dylib libsysmon.dylib libsystemstats.dylib libtailspin.dylib libtcl.dylib libtcl8.5.dylib libtermcap.dylib libtidy.A.dylib libtidy.dylib libtk.dylib libtk8.5.dylib libtls.15.dylib libtls.16.dylib libtls.6.dylib libtls.dylib libtzupdate.dylib libusrtcp.dylib libutil.dylib libutil1.0.dylib libxar.1.dylib libxar.dylib libxcselect.dylib libxml2.2.dylib libxml2.dylib libxslt.1.dylib libxslt.dylib libz.1.1.3.dylib libz.1.2.11.dylib libz.1.2.5.dylib libz.1.2.8.dylib libz.1.dylib libz.dylib log pam php pkgconfig python2.7 rpcsvc ruby sasl2 sqlite3 ssh-keychain.dylib swift system xpc zsh /usr/libexec: AdvancedCommandsMigrator AirPlayXPCHelper AppSandbox AppleQEMUGuestAgent ApplicationFirewall AssetCache AssetCacheAgent CSCSupportd DataDetectorsLocalSources DataDetectorsSourceAccess DeveloperTools FDERecoveryAgent FirmwareUpdateLauncher IOAccelMemoryInfoCollector InternetSharing KeychainMigrator MiniTerm.app NVMeAgent PerfPowerServices PerfPowerServicesExtended PlistBuddy ReportMemoryException SafariCloudHistoryPushAgent SafariHistoryServiceAgent SafariLaunchAgent SafariNotificationAgent SafariPlugInUpdateNotifier SidecarRelay SmartCardServices TouchBarServer USBAgent UserEventAgent WiFiVelocityAgent adprivacyd adservicesd airportd amfid amsdstat apache2 apfsd applessdstatistics assertiond atomicupdatetool atrun attach_automation_image authopen autofsd automation_trampoline automountd avconferenced awacsd biokitaggdd biometrickitd bootinstalld bootpd bspowerassertiontool captiveagent cc_fips_test checkLocalKDC chkpasswd cloudconfigurationd colorsync.displayservices colorsyncd comsat configd configureLocalKDC corebrightnessd corecaptured coreduetd corestoraged corestoragehelperd create_automation_image_overlay cups dasd defragx diagnosticd dirhelper diskarbitrationd diskmanagementd diskmanagementstartup displaypolicyd dmd dp2hdmiupdater dpaudiothru dpd dprivacyd dspluginhelperd dtrace dumpemacs efiupdater emacs emlog.pl eoshostd fax feedback femail findmydevice-user-agent findmydeviced firmwarecheckers firmwaresyncd fmfd ftp-proxy gamecontrollerd getPPDVersion getty gkreport hidd ifcstart installer-core ioupsd ippusbd java_home kcproxy kdumpd kextd keybagd keyboardservicesd knowledge-agent kuncd languageassetd locate.bigram locate.code locate.concatdb locate.mklocatedb locate.updatedb locationd logd loginitemregisterd logkextloadsd lsd makewhatis makewhatis.local mcxalr mdmclient migrateLocalKDC mobileactivationd mobileassetd mount_url msutil multiversed natpmpd neagent nehelper nesessionmanager netbootdisk networkserviceproxy nfcd nfrestore_service nlcd nsurlsessiond nsurlstoraged ntalkd od_user_homes odproxyd opendirectoryd osaapplet otherbsd path_helper pboard pcsstatus periodic-wrapper pfd pkd pkreporter postfix productutil rapportd remotectl rootless-init routined rpc.rquotad rpcsvchost rtcreportingd sandboxd scsid sdfwupdater secd secinitd security-checksystem security-sysdiagnose security_authtrampoline securityd_service securityuploadd seld sftp-server sharingd signpost_reporter silhouette siriknowledged slapconfig-keygen slapd smb-migrate-preferences smb-sync-preferences smcDiagnose smcupdater smd snmpd spindump_agent ssdupdater ssh-keysign ssh-pkcs11-helper sshd-keygen-wrapper startupdiskhelper studentd swcd symptomsd sysdiagnose_helper sysmond syspolicyd systemstats_boot tailspind taskgated taskgated-helper testmanagerd tftpd thermald timed trustd tzd tzinit tzlinkd ucupdate unbound undoServerAppDNSPrefs upsshutdown usbcupdater usbd vbiosupdater videosubscriptionsd vndevice warmd warmd_agent watchdogd webinspectord wfs wifiFirmwareLoader wifid wifivelocityd wps x11-select xartstorageremoted xpchelper xpcproxy xpcroleaccountd xscertd xscertd-helper xssendevent /usr/local: Caskroom Cellar Frameworks Homebrew LANDesk bin etc ibmcloud include jamf lib opt sbin share var /usr/sbin: AppleFileServer BootCacheControl DevToolsSecurity DirectoryService KernelEventAgent NetBootClientStatus PasswordService WirelessRadioManagerd ab ac accept accton amt apachectl appsleepd arp aslmanager asr audit auditd auditreduce authserver automount avbdeviced bless bluetoothaudiod bluetoothd bnepd cfprefsd chat checkgid chown chroot ckksctl coreaudiod createhomedir cron cupsaccept cupsaddsmb cupsctl cupsd cupsdisable cupsenable cupsfilter cupsreject cvadmin cvdb cvdbset cvfsck cvfsdb cvfsid cvgather cvlabel cvmkfs cvupdatefs cvversions dbmmanage ddns-confgen defragcli dev_mkdb disktool diskutil distnoted dnctl dnsextd dot_clean dsconfigad dsconfigldap dseditgroup dsenableroot dtrace edquota envvars envvars-std fcgistarter fdisk filecoordinationd firmwarepasswd gpt graphicssession gssd hdik htcacheclean htdbm htdigest htpasswd httpd httpd-wrapper httxt2dbm installer ioalloccount ioclasscount ioreg iostat ipconfig kadmin kadmin.local kdcsetup kextcache kextfind kextlibs kextstat krbservicesetup ktutil languagesetup localemanager logresolve lpadmin lpc lpinfo lpmove lsof mDNSResponder mDNSResponderHelper mkextunpack mkfile mkpassdb mtree ndp netbiosd netstat networksetup newsyslog nfs4mapid nlcontrol notifyd nvram ocspd pdisk periodic php-fpm pictd pkgutil postalias postcat postconf postdrop postfix postkick postlock postlog postmap postmulti postqueue postsuper pppd praudit purge pwd_mkdb quotaoff quotaon racoon raidutil rarpd reject repairHomePermissions repquota rotatelogs rpc.lockd rpc.statd rpcbind rpcinfo rtadvd rtsold sa sc_auth screencapture scselect scutil securityd sendmail serverinfo setkey setquota sharing skywalkctl slapacl slapadd slapauth slapcat slapconfig slapdn slapindex slappasswd slapschema slaptest smbd smbdiagnose sncfginstall sncfgquery sncfgremove sncfgtemplate sncfgvalidate sndiskmove snmpd snmptrapd softwareupdate spctl spindump spray sshd sso_util sysadminctl sysctl syslogd system_profiler systemkeychain systemsetup systemsoundserverd systemstats taskpolicy tcpdump traceroute traceroute6 tsig-keygen uasysdiagnose universalaccessd unsetpassword usernoted uuchk uucico uuconv uusched uuxqt vifs vipw visudo vpnd vsdbutil weakpass_edit wfsctl wirelessproxd xartutil xsanctl xscertadmin zdump zic /usr/share: CSI CoreDuetDaemonConfig.bundle calendar com.apple.languageassetd cracklib cups dict doc emacs examples file firmware germantok groff hiutil httpd icu info java kdrl.bundle kpep langid locale man mecabra misc php pmenergy ri sandbox screen skel snmp tabset terminfo texinfo thermald.bundle tokenizer ucupdate uucp vim zoneinfo zoneinfo.default zsh /usr/standalone: bootcaches.plist firmware i386 jc-1.17.3/tests/fixtures/osx-10.14.6/ls-l-newlines.json000066400000000000000000000022121415226333200222120ustar00rootroot00000000000000[{"filename": "\n\n\n\nthis file starts with four newlines", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 0, "date": "Feb 27 10:19"}, {"filename": "\n\nthis file has\na combination\n\n\nof everything\n\n\n\n", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 0, "date": "Feb 27 10:19"}, {"filename": "\nthis file starts with one newline", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 0, "date": "Feb 27 10:19"}, {"filename": "a regular filename", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 0, "date": "Feb 27 10:19"}, {"filename": "this file\nhas\nsix\n\nnewlines\n\nwithin", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 0, "date": "Feb 27 10:19"}, {"filename": "this file has\n\n\n\nfour contiguous newlines inside", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 0, "date": "Feb 27 10:19"}, {"filename": "this file has\na newline inside", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 0, "date": "Feb 27 10:19"}] jc-1.17.3/tests/fixtures/osx-10.14.6/ls-l-newlines.out000066400000000000000000000011071415226333200220520ustar00rootroot00000000000000total 0 -rw-r--r-- 1 kbrazil staff 0 Feb 27 10:19 this file starts with four newlines -rw-r--r-- 1 kbrazil staff 0 Feb 27 10:19 this file has a combination of everything -rw-r--r-- 1 kbrazil staff 0 Feb 27 10:19 this file starts with one newline -rw-r--r-- 1 kbrazil staff 0 Feb 27 10:19 a regular filename -rw-r--r-- 1 kbrazil staff 0 Feb 27 10:19 this file has six newlines within -rw-r--r-- 1 kbrazil staff 0 Feb 27 10:19 this file has four contiguous newlines inside -rw-r--r-- 1 kbrazil staff 0 Feb 27 10:19 this file has a newline inside jc-1.17.3/tests/fixtures/osx-10.14.6/ls-lR-empty-folder-streaming.json000066400000000000000000011731401415226333200251200ustar00rootroot00000000000000[{"filename":"ModSecurity-envoy","flags":"drwxr-xr-x","links":18,"owner":"kbrazil","group":"staff","size":576,"date":"Jan 3 14:46"},{"filename":"clover","flags":"drwxr-xr-x","links":3,"owner":"kbrazil","group":"staff","size":96,"date":"Jan 28 09:00"},{"filename":"envoyonsteroid","flags":"drwxr-xr-x","links":10,"owner":"kbrazil","group":"staff","size":320,"date":"Dec 23 10:49"},{"filename":"jc","flags":"drwxr-xr-x","links":24,"owner":"kbrazil","group":"staff","size":768,"date":"Mar 5 08:28"},{"filename":"jtbl","flags":"drwxr-xr-x","links":18,"owner":"kbrazil","group":"staff","size":576,"date":"Mar 6 10:54"},{"filename":"microsim","flags":"drwxr-xr-x","links":11,"owner":"kbrazil","group":"staff","size":352,"date":"Dec 10 08:08"},{"filename":"microtest","flags":"drwxr-xr-x","links":13,"owner":"kbrazil","group":"staff","size":416,"date":"Aug 29 2019"},{"filename":"trafficgen - work in progress","flags":"drwxrwxrwx","links":8,"owner":"kbrazil","group":"staff","size":256,"date":"Aug 9 2019"},{"filename":"utils","flags":"drwxr-xr-x","links":8,"owner":"kbrazil","group":"staff","size":256,"date":"Aug 13 2019"},{"filename":"BUILD","parent":"./ModSecurity-envoy","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":904,"date":"Jan 3 14:46"},{"filename":"LICENSE","parent":"./ModSecurity-envoy","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1068,"date":"Jan 3 14:46"},{"filename":"README.md","parent":"./ModSecurity-envoy","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":7098,"date":"Jan 3 14:46"},{"filename":"WORKSPACE","parent":"./ModSecurity-envoy","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":955,"date":"Jan 3 14:46"},{"filename":"ci","parent":"./ModSecurity-envoy","flags":"drwxr-xr-x","links":11,"owner":"kbrazil","group":"staff","size":352,"date":"Jan 3 14:46"},{"filename":"conf","parent":"./ModSecurity-envoy","flags":"drwxr-xr-x","links":8,"owner":"kbrazil","group":"staff","size":256,"date":"Jan 3 14:46"},{"filename":"envoy","parent":"./ModSecurity-envoy","flags":"drwxr-xr-x","links":2,"owner":"kbrazil","group":"staff","size":64,"date":"Jan 3 14:46"},{"filename":"http-filter-modsecurity","parent":"./ModSecurity-envoy","flags":"drwxr-xr-x","links":14,"owner":"kbrazil","group":"staff","size":448,"date":"Jan 3 14:46"},{"filename":"modsecurity","parent":"./ModSecurity-envoy","flags":"drwxr-xr-x","links":4,"owner":"kbrazil","group":"staff","size":128,"date":"Jan 3 14:46"},{"filename":"Dockerfile-envoy-image","parent":"./ModSecurity-envoy/ci","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1088,"date":"Jan 3 14:46"},{"filename":"README.md","parent":"./ModSecurity-envoy/ci","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1274,"date":"Jan 3 14:46"},{"filename":"WORKSPACE.filter.example","parent":"./ModSecurity-envoy/ci","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":703,"date":"Jan 3 14:46"},{"filename":"build_container","parent":"./ModSecurity-envoy/ci","flags":"drwxr-xr-x","links":6,"owner":"kbrazil","group":"staff","size":192,"date":"Jan 3 14:46"},{"filename":"do_ci.sh","parent":"./ModSecurity-envoy/ci","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":653,"date":"Jan 3 14:46"},{"filename":"do_envoy_ci.sh","parent":"./ModSecurity-envoy/ci","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":358,"date":"Jan 3 14:46"},{"filename":"docker-entrypoint.sh","parent":"./ModSecurity-envoy/ci","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":325,"date":"Jan 3 14:46"},{"filename":"docker_build.sh","parent":"./ModSecurity-envoy/ci","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":275,"date":"Jan 3 14:46"},{"filename":"run_envoy_docker.sh","parent":"./ModSecurity-envoy/ci","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":1556,"date":"Jan 3 14:46"},{"filename":"Dockerfile-centos","parent":"./ModSecurity-envoy/ci/build_container","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":285,"date":"Jan 3 14:46"},{"filename":"Dockerfile-ubuntu","parent":"./ModSecurity-envoy/ci/build_container","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":214,"date":"Jan 3 14:46"},{"filename":"build_container_modsecurity_ubuntu.sh","parent":"./ModSecurity-envoy/ci/build_container","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":318,"date":"Jan 3 14:46"},{"filename":"docker_build.sh","parent":"./ModSecurity-envoy/ci/build_container","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":629,"date":"Jan 3 14:46"},{"filename":"envoy-modsecurity-example-lds.yaml","parent":"./ModSecurity-envoy/conf","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":495,"date":"Jan 3 14:46"},{"filename":"envoy-modsecurity-example.yaml","parent":"./ModSecurity-envoy/conf","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1350,"date":"Jan 3 14:46"},{"filename":"lds.yaml","parent":"./ModSecurity-envoy/conf","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1683,"date":"Jan 3 14:46"},{"filename":"modsecurity.conf","parent":"./ModSecurity-envoy/conf","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":564,"date":"Jan 3 14:46"},{"filename":"modsecurity.v3.0.3.conf","parent":"./ModSecurity-envoy/conf","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":10211,"date":"Jan 3 14:46"},{"filename":"unicode.mapping","parent":"./ModSecurity-envoy/conf","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":53146,"date":"Jan 3 14:46"},{"filename":"BUILD","parent":"./ModSecurity-envoy/http-filter-modsecurity","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1518,"date":"Jan 3 14:46"},{"filename":"README.md","parent":"./ModSecurity-envoy/http-filter-modsecurity","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2577,"date":"Jan 3 14:46"},{"filename":"http_filter.cc","parent":"./ModSecurity-envoy/http-filter-modsecurity","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":17224,"date":"Jan 3 14:46"},{"filename":"http_filter.h","parent":"./ModSecurity-envoy/http-filter-modsecurity","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4673,"date":"Jan 3 14:46"},{"filename":"http_filter.proto","parent":"./ModSecurity-envoy/http-filter-modsecurity","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2420,"date":"Jan 3 14:46"},{"filename":"http_filter_config.cc","parent":"./ModSecurity-envoy/http-filter-modsecurity","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2673,"date":"Jan 3 14:46"},{"filename":"http_filter_integration_test.cc","parent":"./ModSecurity-envoy/http-filter-modsecurity","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1717,"date":"Jan 3 14:46"},{"filename":"utility.cc","parent":"./ModSecurity-envoy/http-filter-modsecurity","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2865,"date":"Jan 3 14:46"},{"filename":"utility.h","parent":"./ModSecurity-envoy/http-filter-modsecurity","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":401,"date":"Jan 3 14:46"},{"filename":"webhook_fetcher.cc","parent":"./ModSecurity-envoy/http-filter-modsecurity","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2968,"date":"Jan 3 14:46"},{"filename":"webhook_fetcher.h","parent":"./ModSecurity-envoy/http-filter-modsecurity","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2306,"date":"Jan 3 14:46"},{"filename":"well_known_names.h","parent":"./ModSecurity-envoy/http-filter-modsecurity","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1139,"date":"Jan 3 14:46"},{"filename":"include","link_to":"../../ModSecurity/headers","parent":"./ModSecurity-envoy/modsecurity","flags":"lrwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":25,"date":"Jan 3 14:46"},{"filename":"libmodsecurity.a","link_to":"../../ModSecurity/src/.libs/libmodsecurity.a","parent":"./ModSecurity-envoy/modsecurity","flags":"lrwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":44,"date":"Jan 3 14:46"},{"filename":"clover","parent":"./clover","flags":"drwxr-xr-x","links":20,"owner":"kbrazil","group":"staff","size":640,"date":"Jan 28 09:01"},{"filename":"INFO.yaml","parent":"./clover/clover","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1165,"date":"Jan 28 09:01"},{"filename":"Pipfile","parent":"./clover/clover","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":200,"date":"Jan 28 09:01"},{"filename":"Pipfile.lock","parent":"./clover/clover","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":11456,"date":"Jan 28 09:01"},{"filename":"ci","parent":"./clover/clover","flags":"drwxr-xr-x","links":6,"owner":"kbrazil","group":"staff","size":192,"date":"Jan 28 09:01"},{"filename":"clover","parent":"./clover/clover","flags":"drwxr-xr-x","links":17,"owner":"kbrazil","group":"staff","size":544,"date":"Jan 28 09:01"},{"filename":"docker","parent":"./clover/clover","flags":"drwxr-xr-x","links":5,"owner":"kbrazil","group":"staff","size":160,"date":"Jan 28 09:01"},{"filename":"docs","parent":"./clover/clover","flags":"drwxr-xr-x","links":8,"owner":"kbrazil","group":"staff","size":256,"date":"Jan 28 09:01"},{"filename":"download","parent":"./clover/clover","flags":"drwxr-xr-x","links":3,"owner":"kbrazil","group":"staff","size":96,"date":"Jan 28 09:01"},{"filename":"edge","parent":"./clover/clover","flags":"drwxr-xr-x","links":3,"owner":"kbrazil","group":"staff","size":96,"date":"Jan 28 09:01"},{"filename":"requirements.txt","parent":"./clover/clover","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":301,"date":"Jan 28 09:01"},{"filename":"samples","parent":"./clover/clover","flags":"drwxr-xr-x","links":4,"owner":"kbrazil","group":"staff","size":128,"date":"Jan 28 09:01"},{"filename":"setup.cfg","parent":"./clover/clover","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":221,"date":"Jan 28 09:01"},{"filename":"setup.py","parent":"./clover/clover","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1030,"date":"Jan 28 09:01"},{"filename":"tox.ini","parent":"./clover/clover","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":481,"date":"Jan 28 09:01"},{"filename":"xci-k8s-setup.sh","parent":"./clover/clover","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":1131,"date":"Jan 28 09:01"},{"filename":"deploy.sh","parent":"./clover/clover/ci","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":3148,"date":"Jan 28 09:01"},{"filename":"sdc_setup.sh","parent":"./clover/clover/ci","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":671,"date":"Jan 28 09:01"},{"filename":"upload.sh","parent":"./clover/clover/ci","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":390,"date":"Jan 28 09:01"},{"filename":"verify.sh","parent":"./clover/clover/ci","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":335,"date":"Jan 28 09:01"},{"filename":"__init__.py","parent":"./clover/clover/clover","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":0,"date":"Jan 28 09:01"},{"filename":"cloverctl","parent":"./clover/clover/clover","flags":"drwxr-xr-x","links":4,"owner":"kbrazil","group":"staff","size":128,"date":"Jan 28 09:01"},{"filename":"clovisor","parent":"./clover/clover/clover","flags":"drwxr-xr-x","links":10,"owner":"kbrazil","group":"staff","size":320,"date":"Jan 28 09:01"},{"filename":"collector","parent":"./clover/clover/clover","flags":"drwxr-xr-x","links":9,"owner":"kbrazil","group":"staff","size":288,"date":"Jan 28 09:01"},{"filename":"controller","parent":"./clover/clover/clover","flags":"drwxr-xr-x","links":8,"owner":"kbrazil","group":"staff","size":256,"date":"Jan 28 09:01"},{"filename":"functest","parent":"./clover/clover/clover","flags":"drwxr-xr-x","links":4,"owner":"kbrazil","group":"staff","size":128,"date":"Jan 28 09:01"},{"filename":"logging","parent":"./clover/clover/clover","flags":"drwxr-xr-x","links":7,"owner":"kbrazil","group":"staff","size":224,"date":"Jan 28 09:01"},{"filename":"monitoring","parent":"./clover/clover/clover","flags":"drwxr-xr-x","links":5,"owner":"kbrazil","group":"staff","size":160,"date":"Jan 28 09:01"},{"filename":"orchestration","parent":"./clover/clover/clover","flags":"drwxr-xr-x","links":6,"owner":"kbrazil","group":"staff","size":192,"date":"Jan 28 09:01"},{"filename":"servicemesh","parent":"./clover/clover/clover","flags":"drwxr-xr-x","links":5,"owner":"kbrazil","group":"staff","size":160,"date":"Jan 28 09:01"},{"filename":"spark","parent":"./clover/clover/clover","flags":"drwxr-xr-x","links":6,"owner":"kbrazil","group":"staff","size":192,"date":"Jan 28 09:01"},{"filename":"spinnaker","parent":"./clover/clover/clover","flags":"drwxr-xr-x","links":7,"owner":"kbrazil","group":"staff","size":224,"date":"Jan 28 09:01"},{"filename":"test","parent":"./clover/clover/clover","flags":"drwxr-xr-x","links":8,"owner":"kbrazil","group":"staff","size":256,"date":"Jan 28 09:01"},{"filename":"tools","parent":"./clover/clover/clover","flags":"drwxr-xr-x","links":7,"owner":"kbrazil","group":"staff","size":224,"date":"Jan 28 09:01"},{"filename":"tracing","parent":"./clover/clover/clover","flags":"drwxr-xr-x","links":6,"owner":"kbrazil","group":"staff","size":192,"date":"Jan 28 09:01"},{"filename":"build.sh","parent":"./clover/clover/clover/cloverctl","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":932,"date":"Jan 28 09:01"},{"filename":"src","parent":"./clover/clover/clover/cloverctl","flags":"drwxr-xr-x","links":5,"owner":"kbrazil","group":"staff","size":160,"date":"Jan 28 09:01"},{"filename":"cloverctl","parent":"./clover/clover/clover/cloverctl/src","flags":"drwxr-xr-x","links":5,"owner":"kbrazil","group":"staff","size":160,"date":"Jan 28 09:01"},{"filename":"cloverinject","parent":"./clover/clover/clover/cloverctl/src","flags":"drwxr-xr-x","links":3,"owner":"kbrazil","group":"staff","size":96,"date":"Jan 28 09:01"},{"filename":"cloverkube","parent":"./clover/clover/clover/cloverctl/src","flags":"drwxr-xr-x","links":3,"owner":"kbrazil","group":"staff","size":96,"date":"Jan 28 09:01"},{"filename":"cmd","parent":"./clover/clover/clover/cloverctl/src/cloverctl","flags":"drwxr-xr-x","links":34,"owner":"kbrazil","group":"staff","size":1088,"date":"Jan 28 09:01"},{"filename":"main.go","parent":"./clover/clover/clover/cloverctl/src/cloverctl","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":358,"date":"Jan 28 09:01"},{"filename":"yaml","parent":"./clover/clover/clover/cloverctl/src/cloverctl","flags":"drwxr-xr-x","links":17,"owner":"kbrazil","group":"staff","size":544,"date":"Jan 28 09:01"},{"filename":"clear.go","parent":"./clover/clover/clover/cloverctl/src/cloverctl/cmd","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":608,"date":"Jan 28 09:01"},{"filename":"clear_visibility.go","parent":"./clover/clover/clover/cloverctl/src/cloverctl/cmd","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":925,"date":"Jan 28 09:01"},{"filename":"create.go","parent":"./clover/clover/clover/cloverctl/src/cloverctl/cmd","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":629,"date":"Jan 28 09:01"},{"filename":"create_docker_registry.go","parent":"./clover/clover/clover/cloverctl/src/cloverctl/cmd","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1572,"date":"Jan 28 09:01"},{"filename":"create_idsrules.go","parent":"./clover/clover/clover/cloverctl/src/cloverctl/cmd","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1522,"date":"Jan 28 09:01"},{"filename":"create_kubernetes.go","parent":"./clover/clover/clover/cloverctl/src/cloverctl/cmd","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2379,"date":"Jan 28 09:01"},{"filename":"create_system.go","parent":"./clover/clover/clover/cloverctl/src/cloverctl/cmd","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":7878,"date":"Jan 28 09:01"},{"filename":"create_testplan.go","parent":"./clover/clover/clover/cloverctl/src/cloverctl/cmd","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1505,"date":"Jan 28 09:01"},{"filename":"delete.go","parent":"./clover/clover/clover/cloverctl/src/cloverctl/cmd","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":626,"date":"Jan 28 09:01"},{"filename":"delete_docker_registry.go","parent":"./clover/clover/clover/cloverctl/src/cloverctl/cmd","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1480,"date":"Jan 28 09:01"},{"filename":"delete_kubernetes.go","parent":"./clover/clover/clover/cloverctl/src/cloverctl/cmd","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1457,"date":"Jan 28 09:01"},{"filename":"delete_system.go","parent":"./clover/clover/clover/cloverctl/src/cloverctl/cmd","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":5991,"date":"Jan 28 09:01"},{"filename":"get.go","parent":"./clover/clover/clover/cloverctl/src/cloverctl/cmd","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":627,"date":"Jan 28 09:01"},{"filename":"get_docker_registry.go","parent":"./clover/clover/clover/cloverctl/src/cloverctl/cmd","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1497,"date":"Jan 28 09:01"},{"filename":"get_kubernetes.go","parent":"./clover/clover/clover/cloverctl/src/cloverctl/cmd","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1484,"date":"Jan 28 09:01"},{"filename":"get_services.go","parent":"./clover/clover/clover/cloverctl/src/cloverctl/cmd","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":622,"date":"Jan 28 09:01"},{"filename":"get_testresult.go","parent":"./clover/clover/clover/cloverctl/src/cloverctl/cmd","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2057,"date":"Jan 28 09:01"},{"filename":"get_visibility.go","parent":"./clover/clover/clover/cloverctl/src/cloverctl/cmd","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1694,"date":"Jan 28 09:01"},{"filename":"init.go","parent":"./clover/clover/clover/cloverctl/src/cloverctl/cmd","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":608,"date":"Jan 28 09:01"},{"filename":"init_visibility.go","parent":"./clover/clover/clover/cloverctl/src/cloverctl/cmd","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":943,"date":"Jan 28 09:01"},{"filename":"provider.go","parent":"./clover/clover/clover/cloverctl/src/cloverctl/cmd","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1136,"date":"Jan 28 09:01"},{"filename":"root.go","parent":"./clover/clover/clover/cloverctl/src/cloverctl/cmd","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3638,"date":"Jan 28 09:01"},{"filename":"set.go","parent":"./clover/clover/clover/cloverctl/src/cloverctl/cmd","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":637,"date":"Jan 28 09:01"},{"filename":"set_nginx.go","parent":"./clover/clover/clover/cloverctl/src/cloverctl/cmd","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2007,"date":"Jan 28 09:01"},{"filename":"set_visibility.go","parent":"./clover/clover/clover/cloverctl/src/cloverctl/cmd","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1556,"date":"Jan 28 09:01"},{"filename":"start.go","parent":"./clover/clover/clover/cloverctl/src/cloverctl/cmd","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":607,"date":"Jan 28 09:01"},{"filename":"start_ids.go","parent":"./clover/clover/clover/cloverctl/src/cloverctl/cmd","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":938,"date":"Jan 28 09:01"},{"filename":"start_testplan.go","parent":"./clover/clover/clover/cloverctl/src/cloverctl/cmd","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1876,"date":"Jan 28 09:01"},{"filename":"start_visibility.go","parent":"./clover/clover/clover/cloverctl/src/cloverctl/cmd","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1713,"date":"Jan 28 09:01"},{"filename":"stop.go","parent":"./clover/clover/clover/cloverctl/src/cloverctl/cmd","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":634,"date":"Jan 28 09:01"},{"filename":"stop_ids.go","parent":"./clover/clover/clover/cloverctl/src/cloverctl/cmd","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":933,"date":"Jan 28 09:01"},{"filename":"stop_visibility.go","parent":"./clover/clover/clover/cloverctl/src/cloverctl/cmd","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":931,"date":"Jan 28 09:01"},{"filename":"clovisor","parent":"./clover/clover/clover/cloverctl/src/cloverctl/yaml","flags":"drwxr-xr-x","links":5,"owner":"kbrazil","group":"staff","size":160,"date":"Jan 28 09:01"},{"filename":"collector","parent":"./clover/clover/clover/cloverctl/src/cloverctl/yaml","flags":"drwxr-xr-x","links":4,"owner":"kbrazil","group":"staff","size":128,"date":"Jan 28 09:01"},{"filename":"controller","parent":"./clover/clover/clover/cloverctl/src/cloverctl/yaml","flags":"drwxr-xr-x","links":6,"owner":"kbrazil","group":"staff","size":192,"date":"Jan 28 09:01"},{"filename":"datastore","parent":"./clover/clover/clover/cloverctl/src/cloverctl/yaml","flags":"drwxr-xr-x","links":6,"owner":"kbrazil","group":"staff","size":192,"date":"Jan 28 09:01"},{"filename":"idsrule_icmp.yaml","parent":"./clover/clover/clover/cloverctl/src/cloverctl/yaml","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":129,"date":"Jan 28 09:01"},{"filename":"idsrule_scan.yaml","parent":"./clover/clover/clover/cloverctl/src/cloverctl/yaml","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":169,"date":"Jan 28 09:01"},{"filename":"idsrule_tcp.yaml","parent":"./clover/clover/clover/cloverctl/src/cloverctl/yaml","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":124,"date":"Jan 28 09:01"},{"filename":"jmeter","parent":"./clover/clover/clover/cloverctl/src/cloverctl/yaml","flags":"drwxr-xr-x","links":6,"owner":"kbrazil","group":"staff","size":192,"date":"Jan 28 09:01"},{"filename":"jmeter_testplan.yaml","parent":"./clover/clover/clover/cloverctl/src/cloverctl/yaml","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":312,"date":"Jan 28 09:01"},{"filename":"lbv1.yaml","parent":"./clover/clover/clover/cloverctl/src/cloverctl/yaml","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":218,"date":"Jan 28 09:01"},{"filename":"lbv2.yaml","parent":"./clover/clover/clover/cloverctl/src/cloverctl/yaml","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":185,"date":"Jan 28 09:01"},{"filename":"server.yaml","parent":"./clover/clover/clover/cloverctl/src/cloverctl/yaml","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":486,"date":"Jan 28 09:01"},{"filename":"set_visibility.yaml","parent":"./clover/clover/clover/cloverctl/src/cloverctl/yaml","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":424,"date":"Jan 28 09:01"},{"filename":"spark","parent":"./clover/clover/clover/cloverctl/src/cloverctl/yaml","flags":"drwxr-xr-x","links":6,"owner":"kbrazil","group":"staff","size":192,"date":"Jan 28 09:01"},{"filename":"start_visibility.yaml","parent":"./clover/clover/clover/cloverctl/src/cloverctl/yaml","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":110,"date":"Jan 28 09:01"},{"filename":"clusterrolebinding.yaml","parent":"./clover/clover/clover/cloverctl/src/cloverctl/yaml/clovisor","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":377,"date":"Jan 28 09:01"},{"filename":"daemonset.yaml","parent":"./clover/clover/clover/cloverctl/src/cloverctl/yaml/clovisor","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":560,"date":"Jan 28 09:01"},{"filename":"serviceaccount.yaml","parent":"./clover/clover/clover/cloverctl/src/cloverctl/yaml/clovisor","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":89,"date":"Jan 28 09:01"},{"filename":"deployment.yaml","parent":"./clover/clover/clover/cloverctl/src/cloverctl/yaml/collector","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":518,"date":"Jan 28 09:01"},{"filename":"service.yaml","parent":"./clover/clover/clover/cloverctl/src/cloverctl/yaml/collector","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":350,"date":"Jan 28 09:01"},{"filename":"deployment.yaml","parent":"./clover/clover/clover/cloverctl/src/cloverctl/yaml/controller","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":525,"date":"Jan 28 09:01"},{"filename":"service_internal.yaml","parent":"./clover/clover/clover/cloverctl/src/cloverctl/yaml/controller","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":359,"date":"Jan 28 09:01"},{"filename":"service_lb.yaml","parent":"./clover/clover/clover/cloverctl/src/cloverctl/yaml/controller","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":232,"date":"Jan 28 09:01"},{"filename":"service_nodeport.yaml","parent":"./clover/clover/clover/cloverctl/src/cloverctl/yaml/controller","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":262,"date":"Jan 28 09:01"},{"filename":"cassandra_service.yaml","parent":"./clover/clover/clover/cloverctl/src/cloverctl/yaml/datastore","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":196,"date":"Jan 28 09:01"},{"filename":"cassandra_statefulset.yaml","parent":"./clover/clover/clover/cloverctl/src/cloverctl/yaml/datastore","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1265,"date":"Jan 28 09:01"},{"filename":"redis_pod.yaml","parent":"./clover/clover/clover/cloverctl/src/cloverctl/yaml/datastore","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":635,"date":"Jan 28 09:01"},{"filename":"redis_service.yaml","parent":"./clover/clover/clover/cloverctl/src/cloverctl/yaml/datastore","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":115,"date":"Jan 28 09:01"},{"filename":"master_deployment.yaml","parent":"./clover/clover/clover/cloverctl/src/cloverctl/yaml/jmeter","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":474,"date":"Jan 28 09:01"},{"filename":"master_service.yaml","parent":"./clover/clover/clover/cloverctl/src/cloverctl/yaml/jmeter","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":287,"date":"Jan 28 09:01"},{"filename":"slave_deployment.yaml","parent":"./clover/clover/clover/cloverctl/src/cloverctl/yaml/jmeter","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":449,"date":"Jan 28 09:01"},{"filename":"slave_service.yaml","parent":"./clover/clover/clover/cloverctl/src/cloverctl/yaml/jmeter","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":253,"date":"Jan 28 09:01"},{"filename":"clusterrolebinding.yaml","parent":"./clover/clover/clover/cloverctl/src/cloverctl/yaml/spark","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":285,"date":"Jan 28 09:01"},{"filename":"clusterrolebinding_spark.yaml","parent":"./clover/clover/clover/cloverctl/src/cloverctl/yaml/spark","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":286,"date":"Jan 28 09:01"},{"filename":"deployment.yaml","parent":"./clover/clover/clover/cloverctl/src/cloverctl/yaml/spark","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":328,"date":"Jan 28 09:01"},{"filename":"serviceaccount.yaml","parent":"./clover/clover/clover/cloverctl/src/cloverctl/yaml/spark","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":98,"date":"Jan 28 09:01"},{"filename":"inject.go","parent":"./clover/clover/clover/cloverctl/src/cloverinject","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4435,"date":"Jan 28 09:01"},{"filename":"main.go","parent":"./clover/clover/clover/cloverctl/src/cloverkube","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":15386,"date":"Jan 28 09:01"},{"filename":"Dockerfile","parent":"./clover/clover/clover/clovisor","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":487,"date":"Jan 28 09:01"},{"filename":"bin","parent":"./clover/clover/clover/clovisor","flags":"drwxr-xr-x","links":3,"owner":"kbrazil","group":"staff","size":96,"date":"Jan 28 09:01"},{"filename":"build-docker","parent":"./clover/clover/clover/clovisor","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":616,"date":"Jan 28 09:01"},{"filename":"build.sh","parent":"./clover/clover/clover/clovisor","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":1499,"date":"Jan 28 09:01"},{"filename":"clovisor.yaml","parent":"./clover/clover/clover/clovisor","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1122,"date":"Jan 28 09:01"},{"filename":"clovisor_main.go","parent":"./clover/clover/clover/clovisor","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2187,"date":"Jan 28 09:01"},{"filename":"libclovisor","parent":"./clover/clover/clover/clovisor","flags":"drwxr-xr-x","links":10,"owner":"kbrazil","group":"staff","size":320,"date":"Jan 28 09:01"},{"filename":"proto","parent":"./clover/clover/clover/clovisor","flags":"drwxr-xr-x","links":3,"owner":"kbrazil","group":"staff","size":96,"date":"Jan 28 09:01"},{"filename":"clovisor","parent":"./clover/clover/clover/clovisor/bin","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":46419408,"date":"Jan 28 09:01"},{"filename":"clovisor_bcc.go","parent":"./clover/clover/clover/clovisor/libclovisor","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":30287,"date":"Jan 28 09:01"},{"filename":"clovisor_cfg.go","parent":"./clover/clover/clover/clovisor/libclovisor","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":6120,"date":"Jan 28 09:01"},{"filename":"clovisor_k8s.go","parent":"./clover/clover/clover/clovisor/libclovisor","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":10727,"date":"Jan 28 09:01"},{"filename":"ebpf","parent":"./clover/clover/clover/clovisor/libclovisor","flags":"drwxr-xr-x","links":4,"owner":"kbrazil","group":"staff","size":128,"date":"Jan 28 09:01"},{"filename":"jaeger-all-in-one-template.yml","parent":"./clover/clover/clover/clovisor/libclovisor","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3655,"date":"Jan 28 09:01"},{"filename":"libproto","parent":"./clover/clover/clover/clovisor/libclovisor","flags":"drwxr-xr-x","links":5,"owner":"kbrazil","group":"staff","size":160,"date":"Jan 28 09:01"},{"filename":"mongo.yaml","parent":"./clover/clover/clover/clovisor/libclovisor","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":717,"date":"Jan 28 09:01"},{"filename":"redis.yaml","parent":"./clover/clover/clover/clovisor/libclovisor","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":885,"date":"Jan 28 09:01"},{"filename":"node_interface.c","parent":"./clover/clover/clover/clovisor/libclovisor/ebpf","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":4352,"date":"Jan 28 09:01"},{"filename":"session_tracking.c","parent":"./clover/clover/clover/clovisor/libclovisor/ebpf","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":8565,"date":"Jan 28 09:01"},{"filename":"build-plugin","parent":"./clover/clover/clover/clovisor/libclovisor/libproto","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":361,"date":"Jan 28 09:01"},{"filename":"clovisor_http.go","parent":"./clover/clover/clover/clovisor/libclovisor/libproto","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2896,"date":"Jan 28 09:01"},{"filename":"http_alt.go","parent":"./clover/clover/clover/clovisor/libclovisor/libproto","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3253,"date":"Jan 28 09:01"},{"filename":"http.so","parent":"./clover/clover/clover/clovisor/proto","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":11742704,"date":"Jan 28 09:01"},{"filename":"__init__.py","parent":"./clover/clover/clover/collector","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":0,"date":"Jan 28 09:01"},{"filename":"build.sh","parent":"./clover/clover/clover/collector","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":519,"date":"Jan 28 09:01"},{"filename":"db","parent":"./clover/clover/clover/collector","flags":"drwxr-xr-x","links":5,"owner":"kbrazil","group":"staff","size":160,"date":"Jan 28 09:01"},{"filename":"docker","parent":"./clover/clover/clover/collector","flags":"drwxr-xr-x","links":3,"owner":"kbrazil","group":"staff","size":96,"date":"Jan 28 09:01"},{"filename":"grpc","parent":"./clover/clover/clover/collector","flags":"drwxr-xr-x","links":9,"owner":"kbrazil","group":"staff","size":288,"date":"Jan 28 09:01"},{"filename":"process","parent":"./clover/clover/clover/collector","flags":"drwxr-xr-x","links":5,"owner":"kbrazil","group":"staff","size":160,"date":"Jan 28 09:01"},{"filename":"yaml","parent":"./clover/clover/clover/collector","flags":"drwxr-xr-x","links":4,"owner":"kbrazil","group":"staff","size":128,"date":"Jan 28 09:01"},{"filename":"__init__.py","parent":"./clover/clover/clover/collector/db","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":0,"date":"Jan 28 09:01"},{"filename":"cassops.py","parent":"./clover/clover/clover/collector/db","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":5618,"date":"Jan 28 09:01"},{"filename":"redisops.py","parent":"./clover/clover/clover/collector/db","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1892,"date":"Jan 28 09:01"},{"filename":"Dockerfile","parent":"./clover/clover/clover/collector/docker","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":589,"date":"Jan 28 09:01"},{"filename":"__init__.py","parent":"./clover/clover/clover/collector/grpc","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":0,"date":"Jan 28 09:01"},{"filename":"build_proto.sh","parent":"./clover/clover/clover/collector/grpc","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":380,"date":"Jan 28 09:01"},{"filename":"collector.proto","parent":"./clover/clover/clover/collector/grpc","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1070,"date":"Jan 28 09:01"},{"filename":"collector_client.py","parent":"./clover/clover/clover/collector/grpc","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3236,"date":"Jan 28 09:01"},{"filename":"collector_pb2.py","parent":"./clover/clover/clover/collector/grpc","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":10872,"date":"Jan 28 09:01"},{"filename":"collector_pb2_grpc.py","parent":"./clover/clover/clover/collector/grpc","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3794,"date":"Jan 28 09:01"},{"filename":"collector_server.py","parent":"./clover/clover/clover/collector/grpc","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3424,"date":"Jan 28 09:01"},{"filename":"__init__.py","parent":"./clover/clover/clover/collector/process","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":0,"date":"Jan 28 09:01"},{"filename":"collect.py","parent":"./clover/clover/clover/collector/process","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":7035,"date":"Jan 28 09:01"},{"filename":"grpc_process.sh","parent":"./clover/clover/clover/collector/process","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":334,"date":"Jan 28 09:01"},{"filename":"manifest.template","parent":"./clover/clover/clover/collector/yaml","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1022,"date":"Jan 28 09:01"},{"filename":"render_yaml.py","parent":"./clover/clover/clover/collector/yaml","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2587,"date":"Jan 28 09:01"},{"filename":"__init__.py","parent":"./clover/clover/clover/controller","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":0,"date":"Jan 28 09:01"},{"filename":"build.sh","parent":"./clover/clover/clover/controller","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":518,"date":"Jan 28 09:01"},{"filename":"control","parent":"./clover/clover/clover/controller","flags":"drwxr-xr-x","links":9,"owner":"kbrazil","group":"staff","size":288,"date":"Jan 28 09:01"},{"filename":"docker","parent":"./clover/clover/clover/controller","flags":"drwxr-xr-x","links":3,"owner":"kbrazil","group":"staff","size":96,"date":"Jan 28 09:01"},{"filename":"process","parent":"./clover/clover/clover/controller","flags":"drwxr-xr-x","links":7,"owner":"kbrazil","group":"staff","size":224,"date":"Jan 28 09:01"},{"filename":"yaml","parent":"./clover/clover/clover/controller","flags":"drwxr-xr-x","links":4,"owner":"kbrazil","group":"staff","size":128,"date":"Jan 28 09:01"},{"filename":"__init__.py","parent":"./clover/clover/clover/controller/control","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":0,"date":"Jan 28 09:01"},{"filename":"api","parent":"./clover/clover/clover/controller/control","flags":"drwxr-xr-x","links":10,"owner":"kbrazil","group":"staff","size":320,"date":"Jan 28 09:01"},{"filename":"control.py","parent":"./clover/clover/clover/controller/control","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1298,"date":"Jan 28 09:01"},{"filename":"static","parent":"./clover/clover/clover/controller/control","flags":"drwxr-xr-x","links":4,"owner":"kbrazil","group":"staff","size":128,"date":"Jan 28 09:01"},{"filename":"templates","parent":"./clover/clover/clover/controller/control","flags":"drwxr-xr-x","links":11,"owner":"kbrazil","group":"staff","size":352,"date":"Jan 28 09:01"},{"filename":"views","parent":"./clover/clover/clover/controller/control","flags":"drwxr-xr-x","links":4,"owner":"kbrazil","group":"staff","size":128,"date":"Jan 28 09:01"},{"filename":"wsgi.py","parent":"./clover/clover/clover/controller/control","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":82,"date":"Jan 28 09:01"},{"filename":"__init__.py","parent":"./clover/clover/clover/controller/control/api","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":178,"date":"Jan 28 09:01"},{"filename":"collector.py","parent":"./clover/clover/clover/controller/control/api","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":5047,"date":"Jan 28 09:01"},{"filename":"file_upload.py","parent":"./clover/clover/clover/controller/control/api","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1969,"date":"Jan 28 09:01"},{"filename":"halyard.py","parent":"./clover/clover/clover/controller/control/api","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":6070,"date":"Jan 28 09:01"},{"filename":"jmeter.py","parent":"./clover/clover/clover/controller/control/api","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3643,"date":"Jan 28 09:01"},{"filename":"nginx.py","parent":"./clover/clover/clover/controller/control/api","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2983,"date":"Jan 28 09:01"},{"filename":"snort.py","parent":"./clover/clover/clover/controller/control/api","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3339,"date":"Jan 28 09:01"},{"filename":"visibility.py","parent":"./clover/clover/clover/controller/control/api","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":5504,"date":"Jan 28 09:01"},{"filename":"css","parent":"./clover/clover/clover/controller/control/static","flags":"drwxr-xr-x","links":5,"owner":"kbrazil","group":"staff","size":160,"date":"Jan 28 09:01"},{"filename":"js","parent":"./clover/clover/clover/controller/control/static","flags":"drwxr-xr-x","links":6,"owner":"kbrazil","group":"staff","size":192,"date":"Jan 28 09:01"},{"filename":"app.css","parent":"./clover/clover/clover/controller/control/static/css","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":486,"date":"Jan 28 09:01"},{"filename":"foundation.css","parent":"./clover/clover/clover/controller/control/static/css","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":155708,"date":"Jan 28 09:01"},{"filename":"jquery-ui.css","parent":"./clover/clover/clover/controller/control/static/css","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":36041,"date":"Jan 28 09:01"},{"filename":"foundation","parent":"./clover/clover/clover/controller/control/static/js","flags":"drwxr-xr-x","links":4,"owner":"kbrazil","group":"staff","size":128,"date":"Jan 28 09:01"},{"filename":"graphing","parent":"./clover/clover/clover/controller/control/static/js","flags":"drwxr-xr-x","links":4,"owner":"kbrazil","group":"staff","size":128,"date":"Jan 28 09:01"},{"filename":"jquery-ui.min.js","parent":"./clover/clover/clover/controller/control/static/js","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":253668,"date":"Jan 28 09:01"},{"filename":"visibility.js","parent":"./clover/clover/clover/controller/control/static/js","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":8550,"date":"Jan 28 09:01"},{"filename":"foundation.min.js","parent":"./clover/clover/clover/controller/control/static/js/foundation","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":148827,"date":"Jan 28 09:01"},{"filename":"jquery.js","parent":"./clover/clover/clover/controller/control/static/js/foundation","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":268039,"date":"Jan 28 09:01"},{"filename":"candela.min.js","parent":"./clover/clover/clover/controller/control/static/js/graphing","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4783367,"date":"Jan 28 09:01"},{"filename":"plotly-latest.min.js","parent":"./clover/clover/clover/controller/control/static/js/graphing","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2814564,"date":"Jan 28 09:01"},{"filename":"base.html","parent":"./clover/clover/clover/controller/control/templates","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1026,"date":"Jan 28 09:01"},{"filename":"header.html","parent":"./clover/clover/clover/controller/control/templates","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":884,"date":"Jan 28 09:01"},{"filename":"http_details.html","parent":"./clover/clover/clover/controller/control/templates","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1002,"date":"Jan 28 09:01"},{"filename":"metric_requests.html","parent":"./clover/clover/clover/controller/control/templates","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":297,"date":"Jan 28 09:01"},{"filename":"request_counts.html","parent":"./clover/clover/clover/controller/control/templates","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":640,"date":"Jan 28 09:01"},{"filename":"rt_system_counts.html","parent":"./clover/clover/clover/controller/control/templates","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":730,"date":"Jan 28 09:01"},{"filename":"tracing_names.html","parent":"./clover/clover/clover/controller/control/templates","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1165,"date":"Jan 28 09:01"},{"filename":"visibility.html","parent":"./clover/clover/clover/controller/control/templates","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1663,"date":"Jan 28 09:01"},{"filename":"visibility_controls.html","parent":"./clover/clover/clover/controller/control/templates","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1480,"date":"Jan 28 09:01"},{"filename":"__init__.py","parent":"./clover/clover/clover/controller/control/views","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":178,"date":"Jan 28 09:01"},{"filename":"visibility.py","parent":"./clover/clover/clover/controller/control/views","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3347,"date":"Jan 28 09:01"},{"filename":"Dockerfile","parent":"./clover/clover/clover/controller/docker","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1506,"date":"Jan 28 09:01"},{"filename":"__init__.py","parent":"./clover/clover/clover/controller/process","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":178,"date":"Jan 28 09:01"},{"filename":"gunicorn_process.sh","parent":"./clover/clover/clover/controller/process","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":441,"date":"Jan 28 09:01"},{"filename":"nginx.conf","parent":"./clover/clover/clover/controller/process","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":280,"date":"Jan 28 09:01"},{"filename":"nginx_process.sh","parent":"./clover/clover/clover/controller/process","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":318,"date":"Jan 28 09:01"},{"filename":"start_process.sh","parent":"./clover/clover/clover/controller/process","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":369,"date":"Jan 28 09:01"},{"filename":"manifest.template","parent":"./clover/clover/clover/controller/yaml","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":809,"date":"Jan 28 09:01"},{"filename":"render_yaml.py","parent":"./clover/clover/clover/controller/yaml","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2605,"date":"Jan 28 09:01"},{"filename":"__init__.py","parent":"./clover/clover/clover/functest","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":0,"date":"Jan 28 09:01"},{"filename":"clover_k8s.py","parent":"./clover/clover/clover/functest","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":798,"date":"Jan 28 09:01"},{"filename":"__init__.py","parent":"./clover/clover/clover/logging","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":0,"date":"Jan 28 09:01"},{"filename":"conftest.py","parent":"./clover/clover/clover/logging","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":423,"date":"Jan 28 09:01"},{"filename":"es_test.py","parent":"./clover/clover/clover/logging","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":959,"date":"Jan 28 09:01"},{"filename":"install","parent":"./clover/clover/clover/logging","flags":"drwxr-xr-x","links":7,"owner":"kbrazil","group":"staff","size":224,"date":"Jan 28 09:01"},{"filename":"validate.py","parent":"./clover/clover/clover/logging","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1897,"date":"Jan 28 09:01"},{"filename":"elasticsearch-statefulset-service.yaml","parent":"./clover/clover/clover/logging/install","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3230,"date":"Jan 28 09:01"},{"filename":"fluentd-daemonset-elasticsearch-rbac.yaml","parent":"./clover/clover/clover/logging/install","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2181,"date":"Jan 28 09:01"},{"filename":"fluentd-istio.yaml","parent":"./clover/clover/clover/logging/install","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1030,"date":"Jan 28 09:01"},{"filename":"logging-stack.yaml","parent":"./clover/clover/clover/logging/install","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4298,"date":"Jan 28 09:01"},{"filename":"proxy-access-control-sidecar.yml","parent":"./clover/clover/clover/logging/install","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":829,"date":"Jan 28 09:01"},{"filename":"__init__.py","parent":"./clover/clover/clover/monitoring","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":0,"date":"Jan 28 09:01"},{"filename":"monitoring.py","parent":"./clover/clover/clover/monitoring","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4716,"date":"Jan 28 09:01"},{"filename":"validate.py","parent":"./clover/clover/clover/monitoring","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2109,"date":"Jan 28 09:01"},{"filename":"Pipfile","parent":"./clover/clover/clover/orchestration","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":169,"date":"Jan 28 09:01"},{"filename":"Pipfile.lock","parent":"./clover/clover/clover/orchestration","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":8392,"date":"Jan 28 09:01"},{"filename":"__init__.py","parent":"./clover/clover/clover/orchestration","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":0,"date":"Jan 28 09:01"},{"filename":"kube_client.py","parent":"./clover/clover/clover/orchestration","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":5915,"date":"Jan 28 09:01"},{"filename":"__init__.py","parent":"./clover/clover/clover/servicemesh","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":0,"date":"Jan 28 09:01"},{"filename":"route_rules.py","parent":"./clover/clover/clover/servicemesh","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4878,"date":"Jan 28 09:01"},{"filename":"validate.py","parent":"./clover/clover/clover/servicemesh","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1254,"date":"Jan 28 09:01"},{"filename":"build.sbt","parent":"./clover/clover/clover/spark","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":578,"date":"Jan 28 09:01"},{"filename":"docker","parent":"./clover/clover/clover/spark","flags":"drwxr-xr-x","links":4,"owner":"kbrazil","group":"staff","size":128,"date":"Jan 28 09:01"},{"filename":"src","parent":"./clover/clover/clover/spark","flags":"drwxr-xr-x","links":3,"owner":"kbrazil","group":"staff","size":96,"date":"Jan 28 09:01"},{"filename":"yaml","parent":"./clover/clover/clover/spark","flags":"drwxr-xr-x","links":3,"owner":"kbrazil","group":"staff","size":96,"date":"Jan 28 09:01"},{"filename":"clover-spark","parent":"./clover/clover/clover/spark/docker","flags":"drwxr-xr-x","links":4,"owner":"kbrazil","group":"staff","size":128,"date":"Jan 28 09:01"},{"filename":"spark-submit","parent":"./clover/clover/clover/spark/docker","flags":"drwxr-xr-x","links":6,"owner":"kbrazil","group":"staff","size":192,"date":"Jan 28 09:01"},{"filename":"Dockerfile","parent":"./clover/clover/clover/spark/docker/clover-spark","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2306,"date":"Jan 28 09:01"},{"filename":"build.sh","parent":"./clover/clover/clover/spark/docker/clover-spark","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":604,"date":"Jan 28 09:01"},{"filename":"Dockerfile","parent":"./clover/clover/clover/spark/docker/spark-submit","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":861,"date":"Jan 28 09:01"},{"filename":"build.sh","parent":"./clover/clover/clover/spark/docker/spark-submit","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":523,"date":"Jan 28 09:01"},{"filename":"runner.sh","parent":"./clover/clover/clover/spark/docker/spark-submit","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":1138,"date":"Jan 28 09:01"},{"filename":"runner_fast.sh","parent":"./clover/clover/clover/spark/docker/spark-submit","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":1034,"date":"Jan 28 09:01"},{"filename":"main","parent":"./clover/clover/clover/spark/src","flags":"drwxr-xr-x","links":3,"owner":"kbrazil","group":"staff","size":96,"date":"Jan 28 09:01"},{"filename":"scala","parent":"./clover/clover/clover/spark/src/main","flags":"drwxr-xr-x","links":4,"owner":"kbrazil","group":"staff","size":128,"date":"Jan 28 09:01"},{"filename":"CloverFast.scala","parent":"./clover/clover/clover/spark/src/main/scala","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1758,"date":"Jan 28 09:01"},{"filename":"CloverSlow.scala","parent":"./clover/clover/clover/spark/src/main/scala","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":8445,"date":"Jan 28 09:01"},{"filename":"clover-spark.yaml","parent":"./clover/clover/clover/spark/yaml","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1002,"date":"Jan 28 09:01"},{"filename":"__init__.py","parent":"./clover/clover/clover/spinnaker","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":0,"date":"Jan 28 09:01"},{"filename":"halyard.py","parent":"./clover/clover/clover/spinnaker","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":4121,"date":"Jan 28 09:01"},{"filename":"halyard_sample.py","parent":"./clover/clover/clover/spinnaker","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1515,"date":"Jan 28 09:01"},{"filename":"install","parent":"./clover/clover/clover/spinnaker","flags":"drwxr-xr-x","links":4,"owner":"kbrazil","group":"staff","size":128,"date":"Jan 28 09:01"},{"filename":"lib","parent":"./clover/clover/clover/spinnaker","flags":"drwxr-xr-x","links":4,"owner":"kbrazil","group":"staff","size":128,"date":"Jan 28 09:01"},{"filename":"minio-pv.yml","parent":"./clover/clover/clover/spinnaker/install","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":233,"date":"Jan 28 09:01"},{"filename":"quick-install-spinnaker.yml","parent":"./clover/clover/clover/spinnaker/install","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":8953,"date":"Jan 28 09:01"},{"filename":"__init__.py","parent":"./clover/clover/clover/spinnaker/lib","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":0,"date":"Jan 28 09:01"},{"filename":"halyard_base.py","parent":"./clover/clover/clover/spinnaker/lib","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":4611,"date":"Jan 28 09:01"},{"filename":"app","parent":"./clover/clover/clover/test","flags":"drwxr-xr-x","links":3,"owner":"kbrazil","group":"staff","size":96,"date":"Jan 28 09:01"},{"filename":"fraser_a_b_test.py","parent":"./clover/clover/clover/test","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":10659,"date":"Jan 28 09:01"},{"filename":"istio","parent":"./clover/clover/clover/test","flags":"drwxr-xr-x","links":3,"owner":"kbrazil","group":"staff","size":96,"date":"Jan 28 09:01"},{"filename":"script","parent":"./clover/clover/clover/test","flags":"drwxr-xr-x","links":3,"owner":"kbrazil","group":"staff","size":96,"date":"Jan 28 09:01"},{"filename":"validate_success.py","parent":"./clover/clover/clover/test","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":5613,"date":"Jan 28 09:01"},{"filename":"yaml","parent":"./clover/clover/clover/test","flags":"drwxr-xr-x","links":3,"owner":"kbrazil","group":"staff","size":96,"date":"Jan 28 09:01"},{"filename":"sdc","parent":"./clover/clover/clover/test/app","flags":"drwxr-xr-x","links":5,"owner":"kbrazil","group":"staff","size":160,"date":"Jan 28 09:01"},{"filename":"clover-server4.yaml","parent":"./clover/clover/clover/test/app/sdc","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":597,"date":"Jan 28 09:01"},{"filename":"clover-server5.yaml","parent":"./clover/clover/clover/test/app/sdc","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":597,"date":"Jan 28 09:01"},{"filename":"lb-v2.yaml","parent":"./clover/clover/clover/test/app/sdc","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":393,"date":"Jan 28 09:01"},{"filename":"sdc","parent":"./clover/clover/clover/test/istio","flags":"drwxr-xr-x","links":7,"owner":"kbrazil","group":"staff","size":224,"date":"Jan 28 09:01"},{"filename":"clover-server4-delay.yaml","parent":"./clover/clover/clover/test/istio/sdc","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":243,"date":"Jan 28 09:01"},{"filename":"clover-server5-delay.yaml","parent":"./clover/clover/clover/test/istio/sdc","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":243,"date":"Jan 28 09:01"},{"filename":"route-rule-lb-50-v2.yaml","parent":"./clover/clover/clover/test/istio/sdc","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":236,"date":"Jan 28 09:01"},{"filename":"route-rule-lb-v1.yaml","parent":"./clover/clover/clover/test/istio/sdc","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":176,"date":"Jan 28 09:01"},{"filename":"route-rule-lb-v2.yaml","parent":"./clover/clover/clover/test/istio/sdc","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":176,"date":"Jan 28 09:01"},{"filename":"lb-test.sh","parent":"./clover/clover/clover/test/script","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":111,"date":"Jan 28 09:01"},{"filename":"fraser_a_b_test.yaml","parent":"./clover/clover/clover/test/yaml","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":600,"date":"Jan 28 09:01"},{"filename":"__init__.py","parent":"./clover/clover/clover/tools","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":0,"date":"Jan 28 09:01"},{"filename":"clover_validate_rr.py","parent":"./clover/clover/clover/tools","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1572,"date":"Jan 28 09:01"},{"filename":"jmeter","parent":"./clover/clover/clover/tools","flags":"drwxr-xr-x","links":8,"owner":"kbrazil","group":"staff","size":256,"date":"Jan 28 09:01"},{"filename":"validate_rr.py","parent":"./clover/clover/clover/tools","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3725,"date":"Jan 28 09:01"},{"filename":"yaml","parent":"./clover/clover/clover/tools","flags":"drwxr-xr-x","links":4,"owner":"kbrazil","group":"staff","size":128,"date":"Jan 28 09:01"},{"filename":"build_master.sh","parent":"./clover/clover/clover/tools/jmeter","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":530,"date":"Jan 28 09:01"},{"filename":"build_slave.sh","parent":"./clover/clover/clover/tools/jmeter","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":528,"date":"Jan 28 09:01"},{"filename":"jmeter-master","parent":"./clover/clover/clover/tools/jmeter","flags":"drwxr-xr-x","links":6,"owner":"kbrazil","group":"staff","size":192,"date":"Jan 28 09:01"},{"filename":"jmeter-slave","parent":"./clover/clover/clover/tools/jmeter","flags":"drwxr-xr-x","links":3,"owner":"kbrazil","group":"staff","size":96,"date":"Jan 28 09:01"},{"filename":"rmi_keystore.jks","parent":"./clover/clover/clover/tools/jmeter","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2190,"date":"Jan 28 09:01"},{"filename":"yaml","parent":"./clover/clover/clover/tools/jmeter","flags":"drwxr-xr-x","links":5,"owner":"kbrazil","group":"staff","size":160,"date":"Jan 28 09:01"},{"filename":"Dockerfile","parent":"./clover/clover/clover/tools/jmeter/jmeter-master","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":932,"date":"Jan 28 09:01"},{"filename":"grpc","parent":"./clover/clover/clover/tools/jmeter/jmeter-master","flags":"drwxr-xr-x","links":7,"owner":"kbrazil","group":"staff","size":224,"date":"Jan 28 09:01"},{"filename":"process","parent":"./clover/clover/clover/tools/jmeter/jmeter-master","flags":"drwxr-xr-x","links":3,"owner":"kbrazil","group":"staff","size":96,"date":"Jan 28 09:01"},{"filename":"tests","parent":"./clover/clover/clover/tools/jmeter/jmeter-master","flags":"drwxr-xr-x","links":3,"owner":"kbrazil","group":"staff","size":96,"date":"Jan 28 09:01"},{"filename":"build_proto.sh","parent":"./clover/clover/clover/tools/jmeter/jmeter-master/grpc","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":377,"date":"Jan 28 09:01"},{"filename":"jmeter.proto","parent":"./clover/clover/clover/tools/jmeter/jmeter-master/grpc","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1001,"date":"Jan 28 09:01"},{"filename":"jmeter_pb2.py","parent":"./clover/clover/clover/tools/jmeter/jmeter-master/grpc","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":10989,"date":"Jan 28 09:01"},{"filename":"jmeter_pb2_grpc.py","parent":"./clover/clover/clover/tools/jmeter/jmeter-master/grpc","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2823,"date":"Jan 28 09:01"},{"filename":"jmeter_server.py","parent":"./clover/clover/clover/tools/jmeter/jmeter-master/grpc","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3854,"date":"Jan 28 09:01"},{"filename":"grpc_process.sh","parent":"./clover/clover/clover/tools/jmeter/jmeter-master/process","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":331,"date":"Jan 28 09:01"},{"filename":"jmx.template","parent":"./clover/clover/clover/tools/jmeter/jmeter-master/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":7234,"date":"Jan 28 09:01"},{"filename":"Dockerfile","parent":"./clover/clover/clover/tools/jmeter/jmeter-slave","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":736,"date":"Jan 28 09:01"},{"filename":"manifest.template","parent":"./clover/clover/clover/tools/jmeter/yaml","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":977,"date":"Jan 28 09:01"},{"filename":"render_master.py","parent":"./clover/clover/clover/tools/jmeter/yaml","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2313,"date":"Jan 28 09:01"},{"filename":"render_slave.py","parent":"./clover/clover/clover/tools/jmeter/yaml","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2322,"date":"Jan 28 09:01"},{"filename":"cassandra.yaml","parent":"./clover/clover/clover/tools/yaml","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2506,"date":"Jan 28 09:01"},{"filename":"redis.yaml","parent":"./clover/clover/clover/tools/yaml","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":754,"date":"Jan 28 09:01"},{"filename":"__init__.py","parent":"./clover/clover/clover/tracing","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":0,"date":"Jan 28 09:01"},{"filename":"tracing.py","parent":"./clover/clover/clover/tracing","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":7191,"date":"Jan 28 09:01"},{"filename":"tracing_sample.py","parent":"./clover/clover/clover/tracing","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1307,"date":"Jan 28 09:01"},{"filename":"validate.py","parent":"./clover/clover/clover/tracing","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2648,"date":"Jan 28 09:01"},{"filename":"Dockerfile","parent":"./clover/clover/docker","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1005,"date":"Jan 28 09:01"},{"filename":"build.sh","parent":"./clover/clover/docker","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":579,"date":"Jan 28 09:01"},{"filename":"setup.sh","parent":"./clover/clover/docker","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":1244,"date":"Jan 28 09:01"},{"filename":"conf.py","parent":"./clover/clover/docs","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":29,"date":"Jan 28 09:01"},{"filename":"conf.yaml","parent":"./clover/clover/docs","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":39,"date":"Jan 28 09:01"},{"filename":"development","parent":"./clover/clover/docs","flags":"drwxr-xr-x","links":5,"owner":"kbrazil","group":"staff","size":160,"date":"Jan 28 09:01"},{"filename":"index.rst","parent":"./clover/clover/docs","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":376,"date":"Jan 28 09:01"},{"filename":"release","parent":"./clover/clover/docs","flags":"drwxr-xr-x","links":5,"owner":"kbrazil","group":"staff","size":160,"date":"Jan 28 09:01"},{"filename":"requirements.txt","parent":"./clover/clover/docs","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":31,"date":"Jan 28 09:01"},{"filename":"design","parent":"./clover/clover/docs/development","flags":"drwxr-xr-x","links":8,"owner":"kbrazil","group":"staff","size":256,"date":"Jan 28 09:01"},{"filename":"overview","parent":"./clover/clover/docs/development","flags":"drwxr-xr-x","links":3,"owner":"kbrazil","group":"staff","size":96,"date":"Jan 28 09:01"},{"filename":"requirements","parent":"./clover/clover/docs/development","flags":"drwxr-xr-x","links":3,"owner":"kbrazil","group":"staff","size":96,"date":"Jan 28 09:01"},{"filename":"clovisor.rst","parent":"./clover/clover/docs/development/design","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":8250,"date":"Jan 28 09:01"},{"filename":"index.rst","parent":"./clover/clover/docs/development/design","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":352,"date":"Jan 28 09:01"},{"filename":"logging.rst","parent":"./clover/clover/docs/development/design","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":5731,"date":"Jan 28 09:01"},{"filename":"monitoring.rst","parent":"./clover/clover/docs/development/design","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":841,"date":"Jan 28 09:01"},{"filename":"tracing.rst","parent":"./clover/clover/docs/development/design","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2139,"date":"Jan 28 09:01"},{"filename":"configguide","parent":"./clover/clover/docs/release","flags":"drwxr-xr-x","links":13,"owner":"kbrazil","group":"staff","size":416,"date":"Jan 28 09:01"},{"filename":"release-notes","parent":"./clover/clover/docs/release","flags":"drwxr-xr-x","links":5,"owner":"kbrazil","group":"staff","size":160,"date":"Jan 28 09:01"},{"filename":"userguide","parent":"./clover/clover/docs/release","flags":"drwxr-xr-x","links":5,"owner":"kbrazil","group":"staff","size":160,"date":"Jan 28 09:01"},{"filename":"a_b_config_guide.rst","parent":"./clover/clover/docs/release/configguide","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3752,"date":"Jan 28 09:01"},{"filename":"clovisor_config_guide.rst","parent":"./clover/clover/docs/release/configguide","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":6385,"date":"Jan 28 09:01"},{"filename":"controller_services_config_guide.rst","parent":"./clover/clover/docs/release/configguide","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":6870,"date":"Jan 28 09:01"},{"filename":"imgs","parent":"./clover/clover/docs/release/configguide","flags":"drwxr-xr-x","links":18,"owner":"kbrazil","group":"staff","size":576,"date":"Jan 28 09:01"},{"filename":"index.rst","parent":"./clover/clover/docs/release/configguide","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":521,"date":"Jan 28 09:01"},{"filename":"jmeter_config_guide.rst","parent":"./clover/clover/docs/release/configguide","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":12268,"date":"Jan 28 09:01"},{"filename":"modsecurity_config_guide.rst","parent":"./clover/clover/docs/release/configguide","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":11479,"date":"Jan 28 09:01"},{"filename":"sdc_config_guide.rst","parent":"./clover/clover/docs/release/configguide","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":29174,"date":"Jan 28 09:01"},{"filename":"spinnaker_config_guide.rst","parent":"./clover/clover/docs/release/configguide","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":11613,"date":"Jan 28 09:01"},{"filename":"visibility_config_guide.rst","parent":"./clover/clover/docs/release/configguide","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":18350,"date":"Jan 28 09:01"},{"filename":"istio_gateway.png","parent":"./clover/clover/docs/release/configguide/imgs","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3985370,"date":"Jan 28 09:01"},{"filename":"jmeter_overview.png","parent":"./clover/clover/docs/release/configguide/imgs","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":78367,"date":"Jan 28 09:01"},{"filename":"sdc_sample.png","parent":"./clover/clover/docs/release/configguide/imgs","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":106854,"date":"Jan 28 09:01"},{"filename":"sdc_sample.xcf","parent":"./clover/clover/docs/release/configguide/imgs","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":226183,"date":"Jan 28 09:01"},{"filename":"sdc_tracing.png","parent":"./clover/clover/docs/release/configguide/imgs","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":84913,"date":"Jan 28 09:01"},{"filename":"spinnaker-bake.png","parent":"./clover/clover/docs/release/configguide/imgs","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":61742,"date":"Jan 28 09:01"},{"filename":"spinnaker-deploy.png","parent":"./clover/clover/docs/release/configguide/imgs","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":62381,"date":"Jan 28 09:01"},{"filename":"spinnaker-expected-artifacts.png","parent":"./clover/clover/docs/release/configguide/imgs","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":37564,"date":"Jan 28 09:01"},{"filename":"spinnaker-produces-artifact.png","parent":"./clover/clover/docs/release/configguide/imgs","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":17589,"date":"Jan 28 09:01"},{"filename":"spinnaker.png","parent":"./clover/clover/docs/release/configguide/imgs","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":20104,"date":"Jan 28 09:01"},{"filename":"visibility_discovered_active.png","parent":"./clover/clover/docs/release/configguide/imgs","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":33626,"date":"Jan 28 09:01"},{"filename":"visibility_distinct_counts.png","parent":"./clover/clover/docs/release/configguide/imgs","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":38887,"date":"Jan 28 09:01"},{"filename":"visibility_distinct_http.png","parent":"./clover/clover/docs/release/configguide/imgs","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":27362,"date":"Jan 28 09:01"},{"filename":"visibility_monitoring_metrics.png","parent":"./clover/clover/docs/release/configguide/imgs","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":96758,"date":"Jan 28 09:01"},{"filename":"visibility_overview.png","parent":"./clover/clover/docs/release/configguide/imgs","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":64705,"date":"Jan 28 09:01"},{"filename":"visibility_system_counts_response_times.png","parent":"./clover/clover/docs/release/configguide/imgs","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":40552,"date":"Jan 28 09:01"},{"filename":"index.rst","parent":"./clover/clover/docs/release/release-notes","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":340,"date":"Jan 28 09:01"},{"filename":"release-notes.rst","parent":"./clover/clover/docs/release/release-notes","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3279,"date":"Jan 28 09:01"},{"filename":"index.rst","parent":"./clover/clover/docs/release/userguide","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":292,"date":"Jan 28 09:01"},{"filename":"userguide.rst","parent":"./clover/clover/docs/release/userguide","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1497,"date":"Jan 28 09:01"},{"filename":"cloverctl.tar.gz","parent":"./clover/clover/download","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":10051204,"date":"Jan 28 09:01"},{"filename":"sample","parent":"./clover/clover/edge","flags":"drwxr-xr-x","links":10,"owner":"kbrazil","group":"staff","size":320,"date":"Jan 28 09:01"},{"filename":"Network.png","parent":"./clover/clover/edge/sample","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":41699,"date":"Jan 28 09:01"},{"filename":"README.md","parent":"./clover/clover/edge/sample","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3816,"date":"Jan 28 09:01"},{"filename":"ansible.cfg","parent":"./clover/clover/edge/sample","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":19301,"date":"Jan 28 09:01"},{"filename":"clusterForm.yml","parent":"./clover/clover/edge/sample","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":194,"date":"Jan 28 09:01"},{"filename":"clusterTear.yml","parent":"./clover/clover/edge/sample","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":64,"date":"Jan 28 09:01"},{"filename":"hosts","parent":"./clover/clover/edge/sample","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":183,"date":"Jan 28 09:01"},{"filename":"live_stream_app","parent":"./clover/clover/edge/sample","flags":"drwxr-xr-x","links":5,"owner":"kbrazil","group":"staff","size":160,"date":"Jan 28 09:01"},{"filename":"roles","parent":"./clover/clover/edge/sample","flags":"drwxr-xr-x","links":6,"owner":"kbrazil","group":"staff","size":192,"date":"Jan 28 09:01"},{"filename":"README.md","parent":"./clover/clover/edge/sample/live_stream_app","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3631,"date":"Jan 28 09:01"},{"filename":"deployment_uv4l.yml","parent":"./clover/clover/edge/sample/live_stream_app","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":951,"date":"Jan 28 09:01"},{"filename":"docker","parent":"./clover/clover/edge/sample/live_stream_app","flags":"drwxr-xr-x","links":5,"owner":"kbrazil","group":"staff","size":160,"date":"Jan 28 09:01"},{"filename":"Dockerfile","parent":"./clover/clover/edge/sample/live_stream_app/docker","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":599,"date":"Jan 28 09:01"},{"filename":"build.sh","parent":"./clover/clover/edge/sample/live_stream_app/docker","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":500,"date":"Jan 28 09:01"},{"filename":"src","parent":"./clover/clover/edge/sample/live_stream_app/docker","flags":"drwxr-xr-x","links":3,"owner":"kbrazil","group":"staff","size":96,"date":"Jan 28 09:01"},{"filename":"uv4l_start.sh","parent":"./clover/clover/edge/sample/live_stream_app/docker/src","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":356,"date":"Jan 28 09:01"},{"filename":"clusterForm_common","parent":"./clover/clover/edge/sample/roles","flags":"drwxr-xr-x","links":3,"owner":"kbrazil","group":"staff","size":96,"date":"Jan 28 09:01"},{"filename":"clusterForm_master","parent":"./clover/clover/edge/sample/roles","flags":"drwxr-xr-x","links":3,"owner":"kbrazil","group":"staff","size":96,"date":"Jan 28 09:01"},{"filename":"clusterForm_slave(s)","parent":"./clover/clover/edge/sample/roles","flags":"drwxr-xr-x","links":3,"owner":"kbrazil","group":"staff","size":96,"date":"Jan 28 09:01"},{"filename":"clusterTear_common","parent":"./clover/clover/edge/sample/roles","flags":"drwxr-xr-x","links":3,"owner":"kbrazil","group":"staff","size":96,"date":"Jan 28 09:01"},{"filename":"tasks","parent":"./clover/clover/edge/sample/roles/clusterForm_common","flags":"drwxr-xr-x","links":3,"owner":"kbrazil","group":"staff","size":96,"date":"Jan 28 09:01"},{"filename":"main.yml","parent":"./clover/clover/edge/sample/roles/clusterForm_common/tasks","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3853,"date":"Jan 28 09:01"},{"filename":"tasks","parent":"./clover/clover/edge/sample/roles/clusterForm_master","flags":"drwxr-xr-x","links":3,"owner":"kbrazil","group":"staff","size":96,"date":"Jan 28 09:01"},{"filename":"main.yml","parent":"./clover/clover/edge/sample/roles/clusterForm_master/tasks","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1975,"date":"Jan 28 09:01"},{"filename":"tasks","parent":"./clover/clover/edge/sample/roles/clusterForm_slave(s)","flags":"drwxr-xr-x","links":3,"owner":"kbrazil","group":"staff","size":96,"date":"Jan 28 09:01"},{"filename":"main.yml","parent":"./clover/clover/edge/sample/roles/clusterForm_slave(s)/tasks","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":392,"date":"Jan 28 09:01"},{"filename":"tasks","parent":"./clover/clover/edge/sample/roles/clusterTear_common","flags":"drwxr-xr-x","links":3,"owner":"kbrazil","group":"staff","size":96,"date":"Jan 28 09:01"},{"filename":"main.yml","parent":"./clover/clover/edge/sample/roles/clusterTear_common/tasks","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":548,"date":"Jan 28 09:01"},{"filename":"scenarios","parent":"./clover/clover/samples","flags":"drwxr-xr-x","links":9,"owner":"kbrazil","group":"staff","size":288,"date":"Jan 28 09:01"},{"filename":"services","parent":"./clover/clover/samples","flags":"drwxr-xr-x","links":5,"owner":"kbrazil","group":"staff","size":160,"date":"Jan 28 09:01"},{"filename":"clean.sh","parent":"./clover/clover/samples/scenarios","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":942,"date":"Jan 28 09:01"},{"filename":"clearwater_ims","parent":"./clover/clover/samples/scenarios","flags":"drwxr-xr-x","links":5,"owner":"kbrazil","group":"staff","size":160,"date":"Jan 28 09:01"},{"filename":"deploy.sh","parent":"./clover/clover/samples/scenarios","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":749,"date":"Jan 28 09:01"},{"filename":"ingressgateway_ext_authz_filter.yaml","parent":"./clover/clover/samples/scenarios","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":641,"date":"Jan 28 09:01"},{"filename":"modsecurity_all_in_one.yaml","parent":"./clover/clover/samples/scenarios","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":1380,"date":"Jan 28 09:01"},{"filename":"service_delivery_controller.yaml","parent":"./clover/clover/samples/scenarios","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":7056,"date":"Jan 28 09:01"},{"filename":"service_delivery_controller_opnfv.yaml","parent":"./clover/clover/samples/scenarios","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":6975,"date":"Jan 28 09:01"},{"filename":"clt-docker","parent":"./clover/clover/samples/scenarios/clearwater_ims","flags":"drwxr-xr-x","links":3,"owner":"kbrazil","group":"staff","size":96,"date":"Jan 28 09:01"},{"filename":"scripts","parent":"./clover/clover/samples/scenarios/clearwater_ims","flags":"drwxr-xr-x","links":4,"owner":"kbrazil","group":"staff","size":128,"date":"Jan 28 09:01"},{"filename":"yaml","parent":"./clover/clover/samples/scenarios/clearwater_ims","flags":"drwxr-xr-x","links":12,"owner":"kbrazil","group":"staff","size":384,"date":"Jan 28 09:01"},{"filename":"Dockerfile","parent":"./clover/clover/samples/scenarios/clearwater_ims/clt-docker","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":870,"date":"Jan 28 09:01"},{"filename":"prov-numbers.sh","parent":"./clover/clover/samples/scenarios/clearwater_ims/scripts","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":305,"date":"Jan 28 09:01"},{"filename":"run-live-test.sh","parent":"./clover/clover/samples/scenarios/clearwater_ims/scripts","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":1170,"date":"Jan 28 09:01"},{"filename":"ellis-depl.yaml","parent":"./clover/clover/samples/scenarios/clearwater_ims/yaml","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":923,"date":"Jan 28 09:01"},{"filename":"ellis-svc.yaml","parent":"./clover/clover/samples/scenarios/clearwater_ims/yaml","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":257,"date":"Jan 28 09:01"},{"filename":"homer-depl.yaml","parent":"./clover/clover/samples/scenarios/clearwater_ims/yaml","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":858,"date":"Jan 28 09:01"},{"filename":"homer-svc.yaml","parent":"./clover/clover/samples/scenarios/clearwater_ims/yaml","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":189,"date":"Jan 28 09:01"},{"filename":"homestead-depl.yaml","parent":"./clover/clover/samples/scenarios/clearwater_ims/yaml","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1436,"date":"Jan 28 09:01"},{"filename":"homestead-prov-depl.yaml","parent":"./clover/clover/samples/scenarios/clearwater_ims/yaml","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1120,"date":"Jan 28 09:01"},{"filename":"homestead-prov-svc.yaml","parent":"./clover/clover/samples/scenarios/clearwater_ims/yaml","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":225,"date":"Jan 28 09:01"},{"filename":"homestead-svc.yaml","parent":"./clover/clover/samples/scenarios/clearwater_ims/yaml","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":205,"date":"Jan 28 09:01"},{"filename":"ralf-depl.yaml","parent":"./clover/clover/samples/scenarios/clearwater_ims/yaml","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1260,"date":"Jan 28 09:01"},{"filename":"ralf-svc.yaml","parent":"./clover/clover/samples/scenarios/clearwater_ims/yaml","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":187,"date":"Jan 28 09:01"},{"filename":"modsecurity","parent":"./clover/clover/samples/services","flags":"drwxr-xr-x","links":4,"owner":"kbrazil","group":"staff","size":128,"date":"Jan 28 09:01"},{"filename":"nginx","parent":"./clover/clover/samples/services","flags":"drwxr-xr-x","links":4,"owner":"kbrazil","group":"staff","size":128,"date":"Jan 28 09:01"},{"filename":"snort_ids","parent":"./clover/clover/samples/services","flags":"drwxr-xr-x","links":4,"owner":"kbrazil","group":"staff","size":128,"date":"Jan 28 09:01"},{"filename":"docker","parent":"./clover/clover/samples/services/modsecurity","flags":"drwxr-xr-x","links":8,"owner":"kbrazil","group":"staff","size":256,"date":"Jan 28 09:01"},{"filename":"yaml","parent":"./clover/clover/samples/services/modsecurity","flags":"drwxr-xr-x","links":6,"owner":"kbrazil","group":"staff","size":192,"date":"Jan 28 09:01"},{"filename":"Dockerfile","parent":"./clover/clover/samples/services/modsecurity/docker","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1302,"date":"Jan 28 09:01"},{"filename":"apache2.conf","parent":"./clover/clover/samples/services/modsecurity/docker","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":7223,"date":"Jan 28 09:01"},{"filename":"build.sh","parent":"./clover/clover/samples/services/modsecurity/docker","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":507,"date":"Jan 28 09:01"},{"filename":"docker-entrypoint.sh","parent":"./clover/clover/samples/services/modsecurity/docker","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1079,"date":"Jan 28 09:01"},{"filename":"proxy.conf","parent":"./clover/clover/samples/services/modsecurity/docker","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":71,"date":"Jan 28 09:01"},{"filename":"manifest.template","parent":"./clover/clover/samples/services/modsecurity/yaml","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":818,"date":"Jan 28 09:01"},{"filename":"modsecurity-deployment.yaml","parent":"./clover/clover/samples/services/modsecurity/yaml","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":506,"date":"Jan 28 09:01"},{"filename":"modsecurity-service.yaml","parent":"./clover/clover/samples/services/modsecurity/yaml","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":255,"date":"Jan 28 09:01"},{"filename":"render_yaml.py","parent":"./clover/clover/samples/services/modsecurity/yaml","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2200,"date":"Jan 28 09:01"},{"filename":"docker","parent":"./clover/clover/samples/services/nginx","flags":"drwxr-xr-x","links":8,"owner":"kbrazil","group":"staff","size":256,"date":"Jan 28 09:01"},{"filename":"yaml","parent":"./clover/clover/samples/services/nginx","flags":"drwxr-xr-x","links":4,"owner":"kbrazil","group":"staff","size":128,"date":"Jan 28 09:01"},{"filename":"build_lb.sh","parent":"./clover/clover/samples/services/nginx/docker","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":529,"date":"Jan 28 09:01"},{"filename":"build_proxy.sh","parent":"./clover/clover/samples/services/nginx/docker","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":536,"date":"Jan 28 09:01"},{"filename":"build_server.sh","parent":"./clover/clover/samples/services/nginx/docker","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":537,"date":"Jan 28 09:01"},{"filename":"grpc","parent":"./clover/clover/samples/services/nginx/docker","flags":"drwxr-xr-x","links":9,"owner":"kbrazil","group":"staff","size":288,"date":"Jan 28 09:01"},{"filename":"process","parent":"./clover/clover/samples/services/nginx/docker","flags":"drwxr-xr-x","links":4,"owner":"kbrazil","group":"staff","size":128,"date":"Jan 28 09:01"},{"filename":"subservices","parent":"./clover/clover/samples/services/nginx/docker","flags":"drwxr-xr-x","links":5,"owner":"kbrazil","group":"staff","size":160,"date":"Jan 28 09:01"},{"filename":"build_proto.sh","parent":"./clover/clover/samples/services/nginx/docker/grpc","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":376,"date":"Jan 28 09:01"},{"filename":"nginx.proto","parent":"./clover/clover/samples/services/nginx/docker/grpc","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1260,"date":"Jan 28 09:01"},{"filename":"nginx_client.py","parent":"./clover/clover/samples/services/nginx/docker/grpc","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3321,"date":"Jan 28 09:01"},{"filename":"nginx_grpc_server.py","parent":"./clover/clover/samples/services/nginx/docker/grpc","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":8288,"date":"Jan 28 09:01"},{"filename":"nginx_pb2.py","parent":"./clover/clover/samples/services/nginx/docker/grpc","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":14547,"date":"Jan 28 09:01"},{"filename":"nginx_pb2_grpc.py","parent":"./clover/clover/samples/services/nginx/docker/grpc","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3577,"date":"Jan 28 09:01"},{"filename":"templates","parent":"./clover/clover/samples/services/nginx/docker/grpc","flags":"drwxr-xr-x","links":6,"owner":"kbrazil","group":"staff","size":192,"date":"Jan 28 09:01"},{"filename":"lb.template","parent":"./clover/clover/samples/services/nginx/docker/grpc/templates","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1840,"date":"Jan 28 09:01"},{"filename":"proxy.template","parent":"./clover/clover/samples/services/nginx/docker/grpc/templates","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1895,"date":"Jan 28 09:01"},{"filename":"server.template","parent":"./clover/clover/samples/services/nginx/docker/grpc/templates","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3771,"date":"Jan 28 09:01"},{"filename":"upload_form.template","parent":"./clover/clover/samples/services/nginx/docker/grpc/templates","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":613,"date":"Jan 28 09:01"},{"filename":"grpc_process.sh","parent":"./clover/clover/samples/services/nginx/docker/process","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":333,"date":"Jan 28 09:01"},{"filename":"start_process.sh","parent":"./clover/clover/samples/services/nginx/docker/process","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":352,"date":"Jan 28 09:01"},{"filename":"lb","parent":"./clover/clover/samples/services/nginx/docker/subservices","flags":"drwxr-xr-x","links":3,"owner":"kbrazil","group":"staff","size":96,"date":"Jan 28 09:01"},{"filename":"proxy","parent":"./clover/clover/samples/services/nginx/docker/subservices","flags":"drwxr-xr-x","links":3,"owner":"kbrazil","group":"staff","size":96,"date":"Jan 28 09:01"},{"filename":"server","parent":"./clover/clover/samples/services/nginx/docker/subservices","flags":"drwxr-xr-x","links":3,"owner":"kbrazil","group":"staff","size":96,"date":"Jan 28 09:01"},{"filename":"Dockerfile","parent":"./clover/clover/samples/services/nginx/docker/subservices/lb","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":776,"date":"Jan 28 09:01"},{"filename":"Dockerfile","parent":"./clover/clover/samples/services/nginx/docker/subservices/proxy","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":782,"date":"Jan 28 09:01"},{"filename":"Dockerfile","parent":"./clover/clover/samples/services/nginx/docker/subservices/server","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3517,"date":"Jan 28 09:01"},{"filename":"manifest.template","parent":"./clover/clover/samples/services/nginx/yaml","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":686,"date":"Jan 28 09:01"},{"filename":"render_yaml.py","parent":"./clover/clover/samples/services/nginx/yaml","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2433,"date":"Jan 28 09:01"},{"filename":"docker","parent":"./clover/clover/samples/services/snort_ids","flags":"drwxr-xr-x","links":6,"owner":"kbrazil","group":"staff","size":192,"date":"Jan 28 09:01"},{"filename":"yaml","parent":"./clover/clover/samples/services/snort_ids","flags":"drwxr-xr-x","links":4,"owner":"kbrazil","group":"staff","size":128,"date":"Jan 28 09:01"},{"filename":"Dockerfile","parent":"./clover/clover/samples/services/snort_ids/docker","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2639,"date":"Jan 28 09:01"},{"filename":"build.sh","parent":"./clover/clover/samples/services/snort_ids/docker","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":501,"date":"Jan 28 09:01"},{"filename":"grpc","parent":"./clover/clover/samples/services/snort_ids/docker","flags":"drwxr-xr-x","links":11,"owner":"kbrazil","group":"staff","size":352,"date":"Jan 28 09:01"},{"filename":"process","parent":"./clover/clover/samples/services/snort_ids/docker","flags":"drwxr-xr-x","links":5,"owner":"kbrazil","group":"staff","size":160,"date":"Jan 28 09:01"},{"filename":"build_proto.sh","parent":"./clover/clover/samples/services/snort_ids/docker/grpc","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":361,"date":"Jan 28 09:01"},{"filename":"nginx_pb2.py","parent":"./clover/clover/samples/services/snort_ids/docker/grpc","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":12865,"date":"Jan 28 09:01"},{"filename":"nginx_pb2_grpc.py","parent":"./clover/clover/samples/services/snort_ids/docker/grpc","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3577,"date":"Jan 28 09:01"},{"filename":"snort.proto","parent":"./clover/clover/samples/services/snort_ids/docker/grpc","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":806,"date":"Jan 28 09:01"},{"filename":"snort_alerts.py","parent":"./clover/clover/samples/services/snort_ids/docker/grpc","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1768,"date":"Jan 28 09:01"},{"filename":"snort_client.py","parent":"./clover/clover/samples/services/snort_ids/docker/grpc","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3616,"date":"Jan 28 09:01"},{"filename":"snort_pb2.py","parent":"./clover/clover/samples/services/snort_ids/docker/grpc","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":8487,"date":"Jan 28 09:01"},{"filename":"snort_pb2_grpc.py","parent":"./clover/clover/samples/services/snort_ids/docker/grpc","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2848,"date":"Jan 28 09:01"},{"filename":"snort_server.py","parent":"./clover/clover/samples/services/snort_ids/docker/grpc","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3451,"date":"Jan 28 09:01"},{"filename":"alert_process.sh","parent":"./clover/clover/samples/services/snort_ids/docker/process","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":421,"date":"Jan 28 09:01"},{"filename":"grpc_process.sh","parent":"./clover/clover/samples/services/snort_ids/docker/process","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":325,"date":"Jan 28 09:01"},{"filename":"start_process.sh","parent":"./clover/clover/samples/services/snort_ids/docker/process","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":449,"date":"Jan 28 09:01"},{"filename":"manifest.template","parent":"./clover/clover/samples/services/snort_ids/yaml","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":869,"date":"Jan 28 09:01"},{"filename":"render_yaml.py","parent":"./clover/clover/samples/services/snort_ids/yaml","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2341,"date":"Jan 28 09:01"},{"filename":"Dockerfile","parent":"./envoyonsteroid","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":2670,"date":"Dec 23 10:49"},{"filename":"LICENSE","parent":"./envoyonsteroid","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1064,"date":"Dec 23 10:49"},{"filename":"README.md","parent":"./envoyonsteroid","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":58,"date":"Dec 23 10:49"},{"filename":"docker-compose.yml","parent":"./envoyonsteroid","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":882,"date":"Dec 23 10:49"},{"filename":"lds.yaml","parent":"./envoyonsteroid","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1683,"date":"Dec 23 10:49"},{"filename":"root","parent":"./envoyonsteroid","flags":"drwxr-xr-x","links":3,"owner":"kbrazil","group":"staff","size":96,"date":"Dec 23 10:49"},{"filename":"LICENSE.md","parent":"./jc","flags":"-rwxrwxrwx","links":1,"owner":"kbrazil","group":"staff","size":1068,"date":"Oct 15 14:59"},{"filename":"MANIFEST.in","parent":"./jc","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":21,"date":"Feb 8 12:39"},{"filename":"README.md","parent":"./jc","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":45946,"date":"Mar 4 08:30"},{"filename":"_config.yml","parent":"./jc","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":26,"date":"Dec 6 10:16"},{"filename":"build","parent":"./jc","flags":"drwxr-xr-x","links":4,"owner":"kbrazil","group":"staff","size":128,"date":"Oct 17 13:25"},{"filename":"build-package.sh","parent":"./jc","flags":"-rwxrwxrwx","links":1,"owner":"kbrazil","group":"staff","size":127,"date":"Oct 15 14:55"},{"filename":"changelog.txt","parent":"./jc","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3729,"date":"Mar 6 12:05"},{"filename":"dist","parent":"./jc","flags":"drwxr-xr-x","links":5,"owner":"kbrazil","group":"staff","size":160,"date":"Mar 3 13:52"},{"filename":"docgen.sh","parent":"./jc","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":2840,"date":"Mar 3 11:47"},{"filename":"docs","parent":"./jc","flags":"drwxr-xr-x","links":6,"owner":"kbrazil","group":"staff","size":192,"date":"Nov 17 12:00"},{"filename":"install.sh","parent":"./jc","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":46,"date":"Nov 17 12:00"},{"filename":"jc","parent":"./jc","flags":"drwxr-xr-x","links":9,"owner":"kbrazil","group":"staff","size":288,"date":"Mar 4 16:55"},{"filename":"jc.egg-info","parent":"./jc","flags":"drwxr-xr-x","links":8,"owner":"kbrazil","group":"staff","size":256,"date":"Mar 3 13:52"},{"filename":"pypi-upload.sh","parent":"./jc","flags":"-rwxr-xr-x@","links":1,"owner":"kbrazil","group":"staff","size":31,"date":"Oct 17 14:59"},{"filename":"requirements.txt","parent":"./jc","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":61,"date":"Mar 4 17:05"},{"filename":"runtests.sh","parent":"./jc","flags":"-rwxr-xr-x@","links":1,"owner":"kbrazil","group":"staff","size":36,"date":"Oct 31 08:07"},{"filename":"setup.py","parent":"./jc","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":1007,"date":"Mar 3 11:47"},{"filename":"tests","parent":"./jc","flags":"drwxr-xr-x","links":51,"owner":"kbrazil","group":"staff","size":1632,"date":"Mar 4 17:53"},{"filename":"bdist.macosx-10.14-x86_64","parent":"./jc/build","flags":"drwxr-xr-x","links":2,"owner":"kbrazil","group":"staff","size":64,"date":"Mar 3 13:52"},{"filename":"lib","parent":"./jc/build","flags":"drwxr-xr-x","links":4,"owner":"kbrazil","group":"staff","size":128,"date":"Dec 17 12:15"},{"filename":"jc","parent":"./jc/build/lib","flags":"drwxr-xr-x","links":7,"owner":"kbrazil","group":"staff","size":224,"date":"Mar 3 13:52"},{"filename":"tests","parent":"./jc/build/lib","flags":"drwxr-xr-x","links":49,"owner":"kbrazil","group":"staff","size":1568,"date":"Mar 3 13:52"},{"filename":"__init__.py","parent":"./jc/build/lib/jc","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2538,"date":"Nov 17 12:00"},{"filename":"cli.py","parent":"./jc/build/lib/jc","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":8721,"date":"Mar 3 11:47"},{"filename":"jc.py","parent":"./jc/build/lib/jc","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":981,"date":"Oct 16 17:28"},{"filename":"parsers","parent":"./jc/build/lib/jc","flags":"drwxr-xr-x","links":50,"owner":"kbrazil","group":"staff","size":1600,"date":"Mar 3 13:52"},{"filename":"utils.py","parent":"./jc/build/lib/jc","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1471,"date":"Dec 17 12:12"},{"filename":"__init__.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":0,"date":"Nov 7 06:51"},{"filename":"arp.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":5048,"date":"Feb 13 18:27"},{"filename":"blkid.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":6906,"date":"Mar 3 11:47"},{"filename":"crontab.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":6756,"date":"Feb 13 18:27"},{"filename":"crontab_u.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":7055,"date":"Feb 8 12:42"},{"filename":"csv.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3193,"date":"Mar 3 11:47"},{"filename":"df.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":5176,"date":"Feb 13 18:27"},{"filename":"dig.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":15625,"date":"Feb 13 18:27"},{"filename":"du.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3751,"date":"Feb 13 18:27"},{"filename":"env.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2782,"date":"Feb 13 18:27"},{"filename":"foo.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1880,"date":"Feb 13 18:27"},{"filename":"free.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3037,"date":"Feb 13 18:27"},{"filename":"fstab.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4098,"date":"Feb 13 18:27"},{"filename":"group.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3976,"date":"Mar 3 11:47"},{"filename":"gshadow.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3230,"date":"Mar 3 11:47"},{"filename":"history.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3090,"date":"Feb 13 22:09"},{"filename":"hosts.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3258,"date":"Feb 5 17:00"},{"filename":"id.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":5595,"date":"Feb 13 18:27"},{"filename":"ifconfig.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":7611,"date":"Feb 13 18:27"},{"filename":"ini.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2418,"date":"Feb 5 17:00"},{"filename":"iptables.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":7465,"date":"Feb 13 18:27"},{"filename":"jobs.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4885,"date":"Feb 13 18:27"},{"filename":"last.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4425,"date":"Mar 3 11:47"},{"filename":"ls.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":8630,"date":"Mar 3 11:47"},{"filename":"lsblk.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":9105,"date":"Feb 13 18:27"},{"filename":"lsmod.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3844,"date":"Feb 13 18:27"},{"filename":"lsof.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":5434,"date":"Feb 13 18:27"},{"filename":"mount.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3729,"date":"Feb 13 18:27"},{"filename":"netstat.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":16129,"date":"Feb 13 18:27"},{"filename":"passwd.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4055,"date":"Mar 3 11:47"},{"filename":"pip_list.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2658,"date":"Feb 13 18:27"},{"filename":"pip_show.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3444,"date":"Feb 13 18:27"},{"filename":"ps.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":6793,"date":"Feb 13 18:27"},{"filename":"route.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4085,"date":"Feb 13 18:27"},{"filename":"shadow.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4306,"date":"Mar 3 11:47"},{"filename":"ss.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":11491,"date":"Feb 13 18:27"},{"filename":"stat.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":8255,"date":"Feb 13 18:27"},{"filename":"systemctl.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2940,"date":"Feb 13 18:27"},{"filename":"systemctl_lj.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3483,"date":"Feb 13 18:27"},{"filename":"systemctl_ls.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2675,"date":"Feb 13 18:27"},{"filename":"systemctl_luf.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2585,"date":"Feb 13 18:27"},{"filename":"uname.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3225,"date":"Feb 13 18:27"},{"filename":"universal.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4041,"date":"Dec 17 12:12"},{"filename":"uptime.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3243,"date":"Feb 13 18:27"},{"filename":"w.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4345,"date":"Feb 13 18:27"},{"filename":"who.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":7850,"date":"Mar 3 11:47"},{"filename":"xml.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2747,"date":"Feb 5 17:00"},{"filename":"yaml.py","parent":"./jc/build/lib/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3045,"date":"Feb 5 17:00"},{"filename":"__init__.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":0,"date":"Oct 31 08:07"},{"filename":"fixtures","parent":"./jc/build/lib/tests","flags":"drwxr-xr-x","links":9,"owner":"kbrazil","group":"staff","size":288,"date":"Mar 3 13:52"},{"filename":"test_arp.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4458,"date":"Dec 17 12:12"},{"filename":"test_blkid.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":6230,"date":"Mar 3 11:47"},{"filename":"test_crontab.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":801,"date":"Feb 5 17:00"},{"filename":"test_crontab_u.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1426,"date":"Feb 5 17:00"},{"filename":"test_csv.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":5059,"date":"Mar 3 11:47"},{"filename":"test_df.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4381,"date":"Dec 17 12:12"},{"filename":"test_dig.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3440,"date":"Nov 17 12:00"},{"filename":"test_du.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2271,"date":"Dec 17 12:12"},{"filename":"test_env.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1278,"date":"Nov 17 12:00"},{"filename":"test_free.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2373,"date":"Nov 17 12:00"},{"filename":"test_fstab.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1334,"date":"Nov 17 12:00"},{"filename":"test_group.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1874,"date":"Mar 3 11:47"},{"filename":"test_gshadow.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1372,"date":"Mar 3 11:47"},{"filename":"test_history.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1354,"date":"Nov 17 12:00"},{"filename":"test_hosts.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1334,"date":"Nov 17 12:00"},{"filename":"test_id.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1257,"date":"Feb 5 17:00"},{"filename":"test_ifconfig.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3629,"date":"Dec 17 12:12"},{"filename":"test_ini.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1332,"date":"Feb 5 17:00"},{"filename":"test_iptables.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":7909,"date":"Nov 17 12:00"},{"filename":"test_jobs.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1297,"date":"Nov 17 12:00"},{"filename":"test_last.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3985,"date":"Mar 3 11:47"},{"filename":"test_ls.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":18866,"date":"Feb 27 11:25"},{"filename":"test_lsblk.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2940,"date":"Nov 17 12:00"},{"filename":"test_lsmod.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1316,"date":"Nov 17 12:00"},{"filename":"test_lsof.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2419,"date":"Nov 17 12:00"},{"filename":"test_mount.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2392,"date":"Dec 17 12:12"},{"filename":"test_netstat.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":6114,"date":"Nov 17 12:00"},{"filename":"test_passwd.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1904,"date":"Mar 3 11:47"},{"filename":"test_pip_list.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3123,"date":"Dec 17 12:12"},{"filename":"test_pip_show.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2493,"date":"Dec 17 12:12"},{"filename":"test_ps.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4517,"date":"Dec 17 12:12"},{"filename":"test_route.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2426,"date":"Nov 17 12:00"},{"filename":"test_shadow.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1353,"date":"Mar 3 11:47"},{"filename":"test_ss.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1373,"date":"Nov 17 12:00"},{"filename":"test_stat.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1311,"date":"Nov 17 12:00"},{"filename":"test_systemctl.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1398,"date":"Nov 17 12:00"},{"filename":"test_systemctl_lj.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1487,"date":"Nov 17 12:00"},{"filename":"test_systemctl_ls.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1475,"date":"Nov 17 12:00"},{"filename":"test_systemctl_luf.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1492,"date":"Nov 17 12:00"},{"filename":"test_uname.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2442,"date":"Dec 17 12:12"},{"filename":"test_uptime.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2419,"date":"Dec 17 12:12"},{"filename":"test_w.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2226,"date":"Dec 17 12:12"},{"filename":"test_who.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3383,"date":"Mar 3 11:47"},{"filename":"test_xml.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1357,"date":"Feb 5 17:00"},{"filename":"test_yaml.py","parent":"./jc/build/lib/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1401,"date":"Feb 5 17:00"},{"filename":"centos-7.7","parent":"./jc/build/lib/tests/fixtures","flags":"drwxr-xr-x","links":153,"owner":"kbrazil","group":"staff","size":4896,"date":"Mar 3 13:52"},{"filename":"create_fixtures.sh","parent":"./jc/build/lib/tests/fixtures","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3397,"date":"Mar 3 11:47"},{"filename":"generic","parent":"./jc/build/lib/tests/fixtures","flags":"drwxr-xr-x","links":34,"owner":"kbrazil","group":"staff","size":1088,"date":"Mar 3 13:52"},{"filename":"osx-10.11.6","parent":"./jc/build/lib/tests/fixtures","flags":"drwxr-xr-x","links":41,"owner":"kbrazil","group":"staff","size":1312,"date":"Feb 8 12:42"},{"filename":"osx-10.14.6","parent":"./jc/build/lib/tests/fixtures","flags":"drwxr-xr-x","links":71,"owner":"kbrazil","group":"staff","size":2272,"date":"Mar 3 13:52"},{"filename":"ubuntu-18.04","parent":"./jc/build/lib/tests/fixtures","flags":"drwxr-xr-x","links":153,"owner":"kbrazil","group":"staff","size":4896,"date":"Mar 3 13:52"},{"filename":"arp-a.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":350,"date":"Nov 17 12:00"},{"filename":"arp-a.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":173,"date":"Oct 31 08:07"},{"filename":"arp-v.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":236,"date":"Nov 17 12:00"},{"filename":"arp-v.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":274,"date":"Oct 31 08:07"},{"filename":"arp.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":236,"date":"Nov 17 12:00"},{"filename":"arp.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":243,"date":"Oct 31 08:07"},{"filename":"blkid-ip-multi.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":764,"date":"Mar 3 11:47"},{"filename":"blkid-ip-multi.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":618,"date":"Mar 3 11:47"},{"filename":"blkid-ip-udev-multi.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":987,"date":"Mar 3 11:47"},{"filename":"blkid-ip-udev-multi.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":838,"date":"Mar 3 11:47"},{"filename":"blkid-ip-udev.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":488,"date":"Mar 3 11:47"},{"filename":"blkid-ip-udev.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":413,"date":"Mar 3 11:47"},{"filename":"blkid-sda2.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":99,"date":"Mar 3 11:47"},{"filename":"blkid-sda2.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":77,"date":"Mar 3 11:47"},{"filename":"blkid.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":392,"date":"Mar 3 11:47"},{"filename":"blkid.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":307,"date":"Mar 3 11:47"},{"filename":"crontab-u.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":399,"date":"Feb 5 17:00"},{"filename":"crontab-u.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":163,"date":"Feb 5 17:00"},{"filename":"crontab.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1940,"date":"Feb 5 17:00"},{"filename":"crontab.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1564,"date":"Dec 17 12:12"},{"filename":"df-h.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":836,"date":"Nov 17 12:00"},{"filename":"df-h.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":444,"date":"Oct 31 08:07"},{"filename":"df.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":904,"date":"Dec 17 12:12"},{"filename":"df.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":524,"date":"Oct 31 08:07"},{"filename":"dig-aaaa.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":462,"date":"Nov 17 12:00"},{"filename":"dig-aaaa.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":556,"date":"Oct 31 08:07"},{"filename":"dig-x.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":464,"date":"Nov 17 12:00"},{"filename":"dig-x.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":547,"date":"Oct 31 08:07"},{"filename":"dig.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1005,"date":"Nov 17 12:00"},{"filename":"dig.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1052,"date":"Oct 31 08:07"},{"filename":"du.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":365319,"date":"Dec 17 12:12"},{"filename":"du.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":250940,"date":"Dec 17 12:12"},{"filename":"env.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2932,"date":"Nov 17 12:00"},{"filename":"env.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2331,"date":"Oct 31 08:07"},{"filename":"free-h.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":177,"date":"Nov 17 12:00"},{"filename":"free-h.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":204,"date":"Oct 31 08:07"},{"filename":"free.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":194,"date":"Nov 17 12:00"},{"filename":"free.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":204,"date":"Oct 31 08:07"},{"filename":"fstab.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":423,"date":"Nov 17 12:00"},{"filename":"fstab.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":488,"date":"Nov 17 12:00"},{"filename":"group.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2701,"date":"Mar 3 11:47"},{"filename":"group.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":509,"date":"Mar 3 11:47"},{"filename":"gshadow.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3106,"date":"Mar 3 11:47"},{"filename":"gshadow.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":407,"date":"Mar 3 11:47"},{"filename":"history.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":47552,"date":"Feb 5 17:00"},{"filename":"history.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":25967,"date":"Oct 31 08:07"},{"filename":"hosts.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":223,"date":"Nov 17 12:00"},{"filename":"hosts.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":193,"date":"Nov 17 12:00"},{"filename":"id.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":267,"date":"Feb 5 17:00"},{"filename":"id.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":129,"date":"Feb 5 17:00"},{"filename":"ifconfig.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1598,"date":"Dec 17 12:12"},{"filename":"ifconfig.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1259,"date":"Oct 31 08:07"},{"filename":"iptables-filter-line-numbers.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":7469,"date":"Nov 17 12:00"},{"filename":"iptables-filter-line-numbers.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":6643,"date":"Nov 17 12:00"},{"filename":"iptables-filter-nv.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":10625,"date":"Nov 17 12:00"},{"filename":"iptables-filter-nv.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":9064,"date":"Oct 31 08:07"},{"filename":"iptables-filter.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":7749,"date":"Nov 17 12:00"},{"filename":"iptables-filter.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":6762,"date":"Oct 31 08:07"},{"filename":"iptables-mangle.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1938,"date":"Nov 17 12:00"},{"filename":"iptables-mangle.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2399,"date":"Oct 31 08:07"},{"filename":"iptables-nat.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3211,"date":"Nov 17 12:00"},{"filename":"iptables-nat.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3484,"date":"Oct 31 08:07"},{"filename":"iptables-raw.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1386,"date":"Nov 17 12:00"},{"filename":"iptables-raw.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1616,"date":"Oct 31 08:07"},{"filename":"jobs.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":306,"date":"Nov 17 12:00"},{"filename":"jobs.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":164,"date":"Oct 31 08:07"},{"filename":"last-w.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":9189,"date":"Mar 3 11:47"},{"filename":"last-w.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":5452,"date":"Mar 3 11:47"},{"filename":"last.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":8934,"date":"Mar 3 11:47"},{"filename":"last.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":5197,"date":"Mar 3 11:47"},{"filename":"lastb.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":511,"date":"Mar 3 11:47"},{"filename":"lastb.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":346,"date":"Mar 3 11:47"},{"filename":"ls-R-newlines.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1281,"date":"Feb 27 11:25"},{"filename":"ls-R-newlines.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":542,"date":"Feb 27 11:25"},{"filename":"ls-R.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":315329,"date":"Feb 19 07:07"},{"filename":"ls-R.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":72565,"date":"Feb 19 07:07"},{"filename":"ls-al.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2776,"date":"Nov 17 12:00"},{"filename":"ls-al.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1070,"date":"Oct 31 08:07"},{"filename":"ls-alR.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":773278,"date":"Feb 19 07:07"},{"filename":"ls-alR.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":281708,"date":"Feb 19 07:07"},{"filename":"ls-alh.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2776,"date":"Nov 17 12:00"},{"filename":"ls-alh.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1071,"date":"Oct 31 08:07"},{"filename":"ls-glob.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":97675,"date":"Feb 19 07:07"},{"filename":"ls-glob.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":22048,"date":"Feb 19 07:07"},{"filename":"ls-l-newlines.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1183,"date":"Feb 27 11:25"},{"filename":"ls-l-newlines.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":583,"date":"Feb 27 11:25"},{"filename":"ls-lR-newlines.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2576,"date":"Feb 27 11:25"},{"filename":"ls-lR-newlines.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1209,"date":"Feb 27 11:25"},{"filename":"ls-newlines.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":498,"date":"Feb 27 11:25"},{"filename":"ls-newlines.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":260,"date":"Feb 27 11:25"},{"filename":"ls.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":409,"date":"Nov 17 12:00"},{"filename":"ls.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":85,"date":"Oct 31 08:07"},{"filename":"lsblk-allcols.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4102,"date":"Nov 17 12:00"},{"filename":"lsblk-allcols.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2502,"date":"Nov 17 12:00"},{"filename":"lsblk.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":698,"date":"Nov 17 12:00"},{"filename":"lsblk.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":332,"date":"Oct 31 08:07"},{"filename":"lsmod.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":6655,"date":"Nov 17 12:00"},{"filename":"lsmod.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4161,"date":"Oct 31 08:07"},{"filename":"lsof-sudo.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":618317,"date":"Nov 17 12:00"},{"filename":"lsof-sudo.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":363073,"date":"Oct 31 08:07"},{"filename":"lsof.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":126050,"date":"Nov 17 12:00"},{"filename":"lsof.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":70567,"date":"Oct 31 08:07"},{"filename":"mount.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4848,"date":"Nov 17 12:00"},{"filename":"mount.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2711,"date":"Oct 31 08:07"},{"filename":"netstat-l.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":7020,"date":"Nov 17 12:00"},{"filename":"netstat-l.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3499,"date":"Oct 31 08:07"},{"filename":"netstat-p.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":17621,"date":"Nov 17 12:00"},{"filename":"netstat-p.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":10407,"date":"Oct 31 08:07"},{"filename":"netstat-sudo-aeep.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":29188,"date":"Nov 17 12:00"},{"filename":"netstat-sudo-aeep.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":14986,"date":"Nov 17 12:00"},{"filename":"netstat-sudo-lnp.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":8734,"date":"Nov 17 12:00"},{"filename":"netstat-sudo-lnp.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4402,"date":"Oct 31 08:07"},{"filename":"netstat.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":15637,"date":"Nov 17 12:00"},{"filename":"netstat.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":8068,"date":"Oct 31 08:07"},{"filename":"passwd.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2747,"date":"Mar 3 11:47"},{"filename":"passwd.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":961,"date":"Mar 3 11:47"},{"filename":"pip-list.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":905,"date":"Dec 17 12:12"},{"filename":"pip-list.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":616,"date":"Dec 17 12:12"},{"filename":"pip-show.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1129,"date":"Dec 17 12:12"},{"filename":"pip-show.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":974,"date":"Dec 17 12:12"},{"filename":"ps-axu.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":20936,"date":"Nov 17 12:00"},{"filename":"ps-axu.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":9932,"date":"Oct 31 08:07"},{"filename":"ps-ef.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":14630,"date":"Nov 17 12:00"},{"filename":"ps-ef.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":8168,"date":"Oct 31 08:07"},{"filename":"route-vn.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":442,"date":"Nov 17 12:00"},{"filename":"route-vn.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":338,"date":"Oct 31 08:07"},{"filename":"route.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":437,"date":"Nov 17 12:00"},{"filename":"route.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":338,"date":"Oct 31 08:07"},{"filename":"shadow.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3206,"date":"Mar 3 11:47"},{"filename":"shadow.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":740,"date":"Mar 3 11:47"},{"filename":"ss-sudo-a.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":29301,"date":"Nov 17 12:00"},{"filename":"ss-sudo-a.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":17945,"date":"Nov 17 12:00"},{"filename":"stat.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":322074,"date":"Nov 17 12:00"},{"filename":"stat.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":295777,"date":"Nov 17 12:00"},{"filename":"systemctl-ls.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1439,"date":"Nov 17 12:00"},{"filename":"systemctl-ls.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1159,"date":"Nov 17 12:00"},{"filename":"systemctl-luf.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":14574,"date":"Nov 17 12:00"},{"filename":"systemctl-luf.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":13499,"date":"Nov 17 12:00"},{"filename":"systemctl.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":31968,"date":"Nov 17 12:00"},{"filename":"systemctl.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":38560,"date":"Nov 17 12:00"},{"filename":"uname-a.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":276,"date":"Nov 17 12:00"},{"filename":"uname-a.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":122,"date":"Oct 31 08:07"},{"filename":"uptime.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":103,"date":"Nov 17 12:00"},{"filename":"uptime.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":62,"date":"Oct 31 08:07"},{"filename":"w.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":287,"date":"Nov 17 12:00"},{"filename":"w.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":266,"date":"Oct 31 08:07"},{"filename":"who-a.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":549,"date":"Mar 3 11:47"},{"filename":"who-a.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":364,"date":"Mar 3 11:47"},{"filename":"who.json","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":155,"date":"Mar 3 11:47"},{"filename":"who.out","parent":"./jc/build/lib/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":93,"date":"Mar 3 11:47"},{"filename":"csv-biostats.csv","parent":"./jc/build/lib/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":849,"date":"Mar 3 11:47"},{"filename":"csv-biostats.json","parent":"./jc/build/lib/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1566,"date":"Mar 3 11:47"},{"filename":"csv-cities.csv","parent":"./jc/build/lib/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":8402,"date":"Mar 3 11:47"},{"filename":"csv-cities.json","parent":"./jc/build/lib/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":18398,"date":"Mar 3 11:47"},{"filename":"csv-deniro.csv","parent":"./jc/build/lib/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2391,"date":"Mar 3 11:47"},{"filename":"csv-deniro.json","parent":"./jc/build/lib/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":5146,"date":"Mar 3 11:47"},{"filename":"csv-example.csv","parent":"./jc/build/lib/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1117,"date":"Mar 3 11:47"},{"filename":"csv-example.json","parent":"./jc/build/lib/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1588,"date":"Mar 3 11:47"},{"filename":"csv-flyrna.json","parent":"./jc/build/lib/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":558246,"date":"Mar 3 11:47"},{"filename":"csv-flyrna.tsv","parent":"./jc/build/lib/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":205281,"date":"Mar 3 11:47"},{"filename":"csv-flyrna2.json","parent":"./jc/build/lib/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":556670,"date":"Mar 3 11:47"},{"filename":"csv-flyrna2.tsv","parent":"./jc/build/lib/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":203705,"date":"Mar 3 11:47"},{"filename":"csv-homes-pipe.csv","parent":"./jc/build/lib/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":158,"date":"Mar 3 11:47"},{"filename":"csv-homes-pipe.json","parent":"./jc/build/lib/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":274,"date":"Mar 3 11:47"},{"filename":"csv-homes.csv","parent":"./jc/build/lib/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2125,"date":"Mar 3 11:47"},{"filename":"csv-homes.json","parent":"./jc/build/lib/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":6798,"date":"Mar 3 11:47"},{"filename":"csv-insurance.csv","parent":"./jc/build/lib/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":53816,"date":"Mar 3 11:47"},{"filename":"csv-insurance.json","parent":"./jc/build/lib/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":229722,"date":"Mar 3 11:47"},{"filename":"ini-iptelserver.ini","parent":"./jc/build/lib/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4705,"date":"Feb 5 17:00"},{"filename":"ini-iptelserver.json","parent":"./jc/build/lib/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1486,"date":"Feb 5 17:00"},{"filename":"ini-test.ini","parent":"./jc/build/lib/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":171,"date":"Feb 5 17:00"},{"filename":"ini-test.json","parent":"./jc/build/lib/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":270,"date":"Feb 5 17:00"},{"filename":"oscar_age_male.csv","parent":"./jc/build/lib/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4413,"date":"Mar 3 11:47"},{"filename":"xml-cd_catalog.json","parent":"./jc/build/lib/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3294,"date":"Feb 5 17:00"},{"filename":"xml-cd_catalog.xml","parent":"./jc/build/lib/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":5077,"date":"Feb 5 17:00"},{"filename":"xml-foodmenu.json","parent":"./jc/build/lib/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":811,"date":"Feb 5 17:00"},{"filename":"xml-foodmenu.xml","parent":"./jc/build/lib/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1102,"date":"Feb 5 17:00"},{"filename":"yaml-istio-sc.json","parent":"./jc/build/lib/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":333,"date":"Feb 5 17:00"},{"filename":"yaml-istio-sc.yaml","parent":"./jc/build/lib/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":305,"date":"Feb 5 17:00"},{"filename":"yaml-istio-sidecar.json","parent":"./jc/build/lib/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3178,"date":"Feb 5 17:00"},{"filename":"yaml-istio-sidecar.yaml","parent":"./jc/build/lib/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3681,"date":"Feb 5 17:00"},{"filename":"arp-a.json","parent":"./jc/build/lib/tests/fixtures/osx-10.11.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1669,"date":"Dec 17 12:12"},{"filename":"arp-a.out","parent":"./jc/build/lib/tests/fixtures/osx-10.11.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":1036,"date":"Dec 17 12:12"},{"filename":"df-h.json","parent":"./jc/build/lib/tests/fixtures/osx-10.11.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1151,"date":"Dec 17 12:12"},{"filename":"df-h.out","parent":"./jc/build/lib/tests/fixtures/osx-10.11.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":908,"date":"Dec 17 12:12"},{"filename":"df.json","parent":"./jc/build/lib/tests/fixtures/osx-10.11.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1196,"date":"Dec 17 12:12"},{"filename":"df.out","parent":"./jc/build/lib/tests/fixtures/osx-10.11.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":992,"date":"Dec 17 12:12"},{"filename":"dig-aaaa.json","parent":"./jc/build/lib/tests/fixtures/osx-10.11.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":439,"date":"Dec 17 12:12"},{"filename":"dig-aaaa.out","parent":"./jc/build/lib/tests/fixtures/osx-10.11.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":537,"date":"Dec 17 12:12"},{"filename":"dig-x.json","parent":"./jc/build/lib/tests/fixtures/osx-10.11.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":442,"date":"Dec 17 12:12"},{"filename":"dig-x.out","parent":"./jc/build/lib/tests/fixtures/osx-10.11.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":529,"date":"Dec 17 12:12"},{"filename":"dig.json","parent":"./jc/build/lib/tests/fixtures/osx-10.11.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1272,"date":"Dec 17 12:12"},{"filename":"dig.out","parent":"./jc/build/lib/tests/fixtures/osx-10.11.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":1188,"date":"Dec 17 12:12"},{"filename":"du.json","parent":"./jc/build/lib/tests/fixtures/osx-10.11.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":221050,"date":"Dec 17 12:12"},{"filename":"du.out","parent":"./jc/build/lib/tests/fixtures/osx-10.11.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":166687,"date":"Dec 17 12:12"},{"filename":"ifconfig.json","parent":"./jc/build/lib/tests/fixtures/osx-10.11.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3791,"date":"Dec 17 12:12"},{"filename":"ifconfig.out","parent":"./jc/build/lib/tests/fixtures/osx-10.11.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":1571,"date":"Dec 17 12:12"},{"filename":"ifconfig2.json","parent":"./jc/build/lib/tests/fixtures/osx-10.11.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3791,"date":"Dec 17 12:12"},{"filename":"ifconfig2.out","parent":"./jc/build/lib/tests/fixtures/osx-10.11.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":1571,"date":"Dec 17 12:12"},{"filename":"ls-al.json","parent":"./jc/build/lib/tests/fixtures/osx-10.11.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4259,"date":"Dec 17 12:12"},{"filename":"ls-al.out","parent":"./jc/build/lib/tests/fixtures/osx-10.11.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":1851,"date":"Dec 17 12:12"},{"filename":"ls-alh.json","parent":"./jc/build/lib/tests/fixtures/osx-10.11.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4296,"date":"Dec 17 12:12"},{"filename":"ls-alh.out","parent":"./jc/build/lib/tests/fixtures/osx-10.11.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":1882,"date":"Dec 17 12:12"},{"filename":"ls.json","parent":"./jc/build/lib/tests/fixtures/osx-10.11.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":533,"date":"Dec 17 12:12"},{"filename":"ls.out","parent":"./jc/build/lib/tests/fixtures/osx-10.11.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":175,"date":"Dec 17 12:12"},{"filename":"pip-list.json","parent":"./jc/build/lib/tests/fixtures/osx-10.11.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":224,"date":"Dec 17 12:12"},{"filename":"pip-list.out","parent":"./jc/build/lib/tests/fixtures/osx-10.11.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":168,"date":"Dec 17 12:12"},{"filename":"pip-show.json","parent":"./jc/build/lib/tests/fixtures/osx-10.11.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1028,"date":"Dec 17 12:12"},{"filename":"pip-show.out","parent":"./jc/build/lib/tests/fixtures/osx-10.11.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":867,"date":"Dec 17 12:12"},{"filename":"ps-axu.json","parent":"./jc/build/lib/tests/fixtures/osx-10.11.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":53632,"date":"Dec 17 12:12"},{"filename":"ps-axu.out","parent":"./jc/build/lib/tests/fixtures/osx-10.11.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":32255,"date":"Dec 17 12:12"},{"filename":"ps-ef.json","parent":"./jc/build/lib/tests/fixtures/osx-10.11.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":38291,"date":"Dec 17 12:12"},{"filename":"ps-ef.out","parent":"./jc/build/lib/tests/fixtures/osx-10.11.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":25921,"date":"Dec 17 12:12"},{"filename":"uname-a.json","parent":"./jc/build/lib/tests/fixtures/osx-10.11.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":233,"date":"Dec 17 12:12"},{"filename":"uname-a.out","parent":"./jc/build/lib/tests/fixtures/osx-10.11.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":142,"date":"Dec 17 12:12"},{"filename":"uptime.json","parent":"./jc/build/lib/tests/fixtures/osx-10.11.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":102,"date":"Dec 17 12:12"},{"filename":"uptime.out","parent":"./jc/build/lib/tests/fixtures/osx-10.11.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":57,"date":"Dec 17 12:12"},{"filename":"w.json","parent":"./jc/build/lib/tests/fixtures/osx-10.11.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":627,"date":"Dec 17 12:12"},{"filename":"w.out","parent":"./jc/build/lib/tests/fixtures/osx-10.11.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":458,"date":"Dec 17 12:12"},{"filename":"arp-a.json","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1541,"date":"Dec 17 12:12"},{"filename":"arp-a.out","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":968,"date":"Dec 17 12:12"},{"filename":"df-h.json","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1686,"date":"Dec 17 12:12"},{"filename":"df-h.out","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1276,"date":"Dec 17 12:12"},{"filename":"df.json","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1764,"date":"Dec 17 12:12"},{"filename":"df.out","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1384,"date":"Dec 17 12:12"},{"filename":"dig-aaaa.json","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":438,"date":"Dec 17 12:12"},{"filename":"dig-aaaa.out","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":536,"date":"Dec 17 12:12"},{"filename":"dig-x.json","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":442,"date":"Dec 17 12:12"},{"filename":"dig-x.out","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":529,"date":"Dec 17 12:12"},{"filename":"dig.json","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1266,"date":"Dec 17 12:12"},{"filename":"dig.out","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1182,"date":"Dec 17 12:12"},{"filename":"du.json","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":296296,"date":"Dec 17 12:12"},{"filename":"du.out","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":222287,"date":"Dec 17 12:12"},{"filename":"group.json","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":9646,"date":"Mar 3 11:47"},{"filename":"group.out","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2823,"date":"Mar 3 11:47"},{"filename":"id.json","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":759,"date":"Feb 5 17:00"},{"filename":"id.out","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":386,"date":"Feb 5 17:00"},{"filename":"ifconfig.json","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":10823,"date":"Dec 17 12:12"},{"filename":"ifconfig.out","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":3779,"date":"Dec 17 12:12"},{"filename":"ifconfig2.json","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":11375,"date":"Dec 17 12:12"},{"filename":"ifconfig2.out","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3979,"date":"Dec 17 12:12"},{"filename":"last.json","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":45274,"date":"Mar 3 11:47"},{"filename":"last.out","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":25827,"date":"Mar 3 11:47"},{"filename":"ls-R-newlines.json","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":852,"date":"Feb 27 11:25"},{"filename":"ls-R-newlines.out","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":278,"date":"Feb 27 11:25"},{"filename":"ls-R.json","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":469418,"date":"Feb 19 07:07"},{"filename":"ls-R.out","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":133787,"date":"Feb 19 07:07"},{"filename":"ls-al.json","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4653,"date":"Dec 17 12:12"},{"filename":"ls-al.out","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":2111,"date":"Dec 17 12:12"},{"filename":"ls-alR.json","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":959674,"date":"Feb 19 07:07"},{"filename":"ls-alR.out","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":364578,"date":"Feb 19 07:07"},{"filename":"ls-alh.json","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4684,"date":"Dec 17 12:12"},{"filename":"ls-alh.out","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":2111,"date":"Dec 17 12:12"},{"filename":"ls-glob.json","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":91499,"date":"Feb 19 07:07"},{"filename":"ls-glob.out","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":19369,"date":"Feb 19 07:07"},{"filename":"ls-l-newlines.json","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1162,"date":"Feb 27 11:25"},{"filename":"ls-l-newlines.out","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":583,"date":"Feb 27 11:25"},{"filename":"ls-lR-newlines.json","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1450,"date":"Feb 27 11:25"},{"filename":"ls-lR-newlines.out","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":656,"date":"Feb 27 11:25"},{"filename":"ls-newlines.json","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":498,"date":"Feb 27 11:25"},{"filename":"ls-newlines.out","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":260,"date":"Feb 27 11:25"},{"filename":"ls.json","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":585,"date":"Dec 17 12:12"},{"filename":"ls.out","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":193,"date":"Dec 17 12:12"},{"filename":"mount.json","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":672,"date":"Dec 17 12:12"},{"filename":"mount.out","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":349,"date":"Dec 17 12:12"},{"filename":"mount2.json","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":841,"date":"Dec 17 12:12"},{"filename":"mount2.out","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":464,"date":"Dec 17 12:12"},{"filename":"passwd.json","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":14855,"date":"Mar 3 11:47"},{"filename":"passwd.out","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":6804,"date":"Mar 3 11:47"},{"filename":"pip-list.json","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":224,"date":"Dec 17 12:12"},{"filename":"pip-list.out","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":168,"date":"Dec 17 12:12"},{"filename":"pip-show.json","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1067,"date":"Dec 17 12:12"},{"filename":"pip-show.out","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":910,"date":"Dec 17 12:12"},{"filename":"ps-axu.json","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":99173,"date":"Dec 17 12:12"},{"filename":"ps-axu.out","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":60107,"date":"Dec 17 12:12"},{"filename":"ps-ef.json","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":71162,"date":"Dec 17 12:12"},{"filename":"ps-ef.out","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":48758,"date":"Dec 17 12:12"},{"filename":"uname-a.json","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":221,"date":"Dec 17 12:12"},{"filename":"uname-a.out","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":131,"date":"Dec 17 12:12"},{"filename":"uptime.json","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":110,"date":"Dec 17 12:12"},{"filename":"uptime.out","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":65,"date":"Dec 17 12:12"},{"filename":"w.json","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":836,"date":"Dec 17 12:12"},{"filename":"w.out","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":570,"date":"Dec 17 12:12"},{"filename":"who-a.json","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":659,"date":"Mar 3 11:47"},{"filename":"who-a.out","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":419,"date":"Mar 3 11:47"},{"filename":"who.json","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":251,"date":"Mar 3 11:47"},{"filename":"who.out","parent":"./jc/build/lib/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":128,"date":"Mar 3 11:47"},{"filename":"arp-a.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":351,"date":"Nov 17 12:00"},{"filename":"arp-a.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":174,"date":"Oct 31 08:07"},{"filename":"arp-v.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":237,"date":"Nov 17 12:00"},{"filename":"arp-v.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":274,"date":"Oct 31 08:07"},{"filename":"arp.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":237,"date":"Nov 17 12:00"},{"filename":"arp.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":243,"date":"Oct 31 08:07"},{"filename":"blkid-ip-multi.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":818,"date":"Mar 3 11:47"},{"filename":"blkid-ip-multi.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":717,"date":"Mar 3 11:47"},{"filename":"blkid-ip-udev-multi.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":962,"date":"Mar 3 11:47"},{"filename":"blkid-ip-udev-multi.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":832,"date":"Mar 3 11:47"},{"filename":"blkid-ip-udev.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":547,"date":"Mar 3 11:47"},{"filename":"blkid-ip-udev.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":478,"date":"Mar 3 11:47"},{"filename":"blkid-sda2.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":142,"date":"Mar 3 11:47"},{"filename":"blkid-sda2.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":115,"date":"Mar 3 11:47"},{"filename":"blkid.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":986,"date":"Mar 3 11:47"},{"filename":"blkid.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":675,"date":"Mar 3 11:47"},{"filename":"crontab-u.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":939,"date":"Feb 5 17:00"},{"filename":"crontab-u.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":752,"date":"Feb 5 17:00"},{"filename":"df-h.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2261,"date":"Nov 17 12:00"},{"filename":"df-h.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1004,"date":"Oct 31 08:07"},{"filename":"df.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2372,"date":"Dec 17 12:12"},{"filename":"df.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1194,"date":"Oct 31 08:07"},{"filename":"dig-aaaa.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":458,"date":"Nov 17 12:00"},{"filename":"dig-aaaa.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":532,"date":"Oct 31 08:07"},{"filename":"dig-x.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":460,"date":"Nov 17 12:00"},{"filename":"dig-x.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":523,"date":"Oct 31 08:07"},{"filename":"dig.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1306,"date":"Nov 17 12:00"},{"filename":"dig.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1156,"date":"Oct 31 08:07"},{"filename":"du.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1560353,"date":"Dec 17 12:12"},{"filename":"du.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1136984,"date":"Dec 17 12:12"},{"filename":"env.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2651,"date":"Nov 17 12:00"},{"filename":"env.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2125,"date":"Oct 31 08:07"},{"filename":"free-h.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":177,"date":"Nov 17 12:00"},{"filename":"free-h.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":204,"date":"Oct 31 08:07"},{"filename":"free.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":195,"date":"Nov 17 12:00"},{"filename":"free.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":204,"date":"Oct 31 08:07"},{"filename":"fstab.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":268,"date":"Nov 17 12:00"},{"filename":"fstab.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":120,"date":"Nov 17 12:00"},{"filename":"group.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3705,"date":"Mar 3 11:47"},{"filename":"group.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":721,"date":"Mar 3 11:47"},{"filename":"gshadow.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4279,"date":"Mar 3 11:47"},{"filename":"gshadow.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":606,"date":"Mar 3 11:47"},{"filename":"history.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":22782,"date":"Feb 5 17:00"},{"filename":"history.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":12844,"date":"Oct 31 08:07"},{"filename":"hosts.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":365,"date":"Nov 17 12:00"},{"filename":"hosts.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":272,"date":"Nov 17 12:00"},{"filename":"ifconfig.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1090,"date":"Dec 17 12:12"},{"filename":"ifconfig.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":894,"date":"Oct 31 08:07"},{"filename":"iptables-filter-line-numbers.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":847,"date":"Nov 17 12:00"},{"filename":"iptables-filter-line-numbers.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1025,"date":"Nov 17 12:00"},{"filename":"iptables-filter-nv.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2363,"date":"Nov 17 12:00"},{"filename":"iptables-filter-nv.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2763,"date":"Oct 31 08:07"},{"filename":"iptables-filter.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1730,"date":"Nov 17 12:00"},{"filename":"iptables-filter.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2035,"date":"Oct 31 08:07"},{"filename":"iptables-mangle.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":141,"date":"Nov 17 12:00"},{"filename":"iptables-mangle.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":468,"date":"Oct 31 08:07"},{"filename":"iptables-nat.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":106,"date":"Nov 17 12:00"},{"filename":"iptables-nat.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":375,"date":"Oct 31 08:07"},{"filename":"iptables-raw.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":39,"date":"Nov 17 12:00"},{"filename":"iptables-raw.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":187,"date":"Oct 31 08:07"},{"filename":"jobs.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":306,"date":"Nov 17 12:00"},{"filename":"jobs.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":164,"date":"Oct 31 08:07"},{"filename":"last-w.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1852,"date":"Mar 3 11:47"},{"filename":"last-w.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1073,"date":"Mar 3 11:47"},{"filename":"last.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1845,"date":"Mar 3 11:47"},{"filename":"last.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1066,"date":"Mar 3 11:47"},{"filename":"lastb.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":125,"date":"Mar 3 11:47"},{"filename":"lastb.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":111,"date":"Mar 3 11:47"},{"filename":"ls-R-newlines.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1114,"date":"Feb 27 11:25"},{"filename":"ls-R-newlines.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":471,"date":"Feb 27 11:25"},{"filename":"ls-R.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":298654,"date":"Feb 19 07:07"},{"filename":"ls-R.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":62421,"date":"Feb 19 07:07"},{"filename":"ls-al.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3950,"date":"Nov 17 12:00"},{"filename":"ls-al.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1744,"date":"Oct 31 08:07"},{"filename":"ls-alR.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":772252,"date":"Feb 19 07:07"},{"filename":"ls-alR.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":262651,"date":"Feb 19 07:07"},{"filename":"ls-alh.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3942,"date":"Nov 17 12:00"},{"filename":"ls-alh.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1567,"date":"Oct 31 08:07"},{"filename":"ls-glob.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":66907,"date":"Feb 19 07:07"},{"filename":"ls-glob.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":13721,"date":"Feb 19 07:07"},{"filename":"ls-l-newlines.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1176,"date":"Feb 27 11:25"},{"filename":"ls-l-newlines.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":576,"date":"Feb 27 11:25"},{"filename":"ls-lR-newlines.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2089,"date":"Feb 27 11:25"},{"filename":"ls-lR-newlines.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":984,"date":"Feb 27 11:25"},{"filename":"ls-newlines.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":498,"date":"Feb 27 11:25"},{"filename":"ls-newlines.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":260,"date":"Feb 27 11:25"},{"filename":"ls.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":622,"date":"Nov 17 12:00"},{"filename":"ls.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":162,"date":"Oct 31 08:07"},{"filename":"lsblk-allcols.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":11397,"date":"Nov 17 12:00"},{"filename":"lsblk-allcols.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":7364,"date":"Nov 17 12:00"},{"filename":"lsblk.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2114,"date":"Nov 17 12:00"},{"filename":"lsblk.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":812,"date":"Oct 31 08:07"},{"filename":"lsmod.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":6744,"date":"Nov 17 12:00"},{"filename":"lsmod.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4251,"date":"Oct 31 08:07"},{"filename":"lsof-sudo.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":526695,"date":"Nov 17 12:00"},{"filename":"lsof-sudo.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":342863,"date":"Oct 31 08:07"},{"filename":"lsof.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":194044,"date":"Nov 17 12:00"},{"filename":"lsof.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":132043,"date":"Oct 31 08:07"},{"filename":"mount.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":6547,"date":"Nov 17 12:00"},{"filename":"mount.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3708,"date":"Oct 31 08:07"},{"filename":"netstat-l.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":5079,"date":"Nov 17 12:00"},{"filename":"netstat-l.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2606,"date":"Oct 31 08:07"},{"filename":"netstat-p.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":14711,"date":"Nov 17 12:00"},{"filename":"netstat-p.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":8706,"date":"Oct 31 08:07"},{"filename":"netstat-sudo-aeep.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":22957,"date":"Nov 17 12:00"},{"filename":"netstat-sudo-aeep.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":12016,"date":"Nov 17 12:00"},{"filename":"netstat-sudo-lnp.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":6259,"date":"Nov 17 12:00"},{"filename":"netstat-sudo-lnp.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3236,"date":"Oct 31 08:07"},{"filename":"netstat.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":12550,"date":"Nov 17 12:00"},{"filename":"netstat.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":6711,"date":"Oct 31 08:07"},{"filename":"passwd.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4116,"date":"Mar 3 11:47"},{"filename":"passwd.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1565,"date":"Mar 3 11:47"},{"filename":"pip-list-legacy.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2638,"date":"Dec 17 12:12"},{"filename":"pip-list-legacy.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1041,"date":"Dec 17 12:12"},{"filename":"pip-list.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2638,"date":"Dec 17 12:12"},{"filename":"pip-list.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2360,"date":"Dec 17 12:12"},{"filename":"pip-show.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":874,"date":"Dec 17 12:12"},{"filename":"pip-show.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":730,"date":"Dec 17 12:12"},{"filename":"ps-axu.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":31390,"date":"Nov 17 12:00"},{"filename":"ps-axu.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":14127,"date":"Oct 31 08:07"},{"filename":"ps-ef.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":21583,"date":"Nov 17 12:00"},{"filename":"ps-ef.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":11355,"date":"Oct 31 08:07"},{"filename":"route-vn.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":447,"date":"Nov 17 12:00"},{"filename":"route-vn.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":336,"date":"Oct 31 08:07"},{"filename":"route.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":439,"date":"Nov 17 12:00"},{"filename":"route.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":336,"date":"Oct 31 08:07"},{"filename":"shadow.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4330,"date":"Mar 3 11:47"},{"filename":"shadow.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":939,"date":"Mar 3 11:47"},{"filename":"ss-sudo-a.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":23277,"date":"Nov 17 12:00"},{"filename":"ss-sudo-a.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":25599,"date":"Nov 17 12:00"},{"filename":"stat.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":73147,"date":"Nov 17 12:00"},{"filename":"stat.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":60023,"date":"Nov 17 12:00"},{"filename":"systemctl-lj.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":270,"date":"Nov 17 12:00"},{"filename":"systemctl-lj.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":244,"date":"Nov 17 12:00"},{"filename":"systemctl-ls.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2431,"date":"Nov 17 12:00"},{"filename":"systemctl-ls.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2072,"date":"Nov 17 12:00"},{"filename":"systemctl-luf.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":18756,"date":"Nov 17 12:00"},{"filename":"systemctl-luf.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":17734,"date":"Nov 17 12:00"},{"filename":"systemctl.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":47895,"date":"Nov 17 12:00"},{"filename":"systemctl.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":76059,"date":"Nov 17 12:00"},{"filename":"uname-a.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":268,"date":"Nov 17 12:00"},{"filename":"uname-a.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":114,"date":"Oct 31 08:07"},{"filename":"uptime.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":109,"date":"Nov 17 12:00"},{"filename":"uptime.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":70,"date":"Oct 31 08:07"},{"filename":"w.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":292,"date":"Nov 17 12:00"},{"filename":"w.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":274,"date":"Oct 31 08:07"},{"filename":"who-a.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":452,"date":"Mar 3 11:47"},{"filename":"who-a.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":355,"date":"Mar 3 11:47"},{"filename":"who.json","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":155,"date":"Mar 3 11:47"},{"filename":"who.out","parent":"./jc/build/lib/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":140,"date":"Mar 3 11:47"},{"filename":"jc-1.8.0-py3-none-any.whl","parent":"./jc/dist","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1835119,"date":"Mar 3 13:52"},{"filename":"jc-1.8.0.tar.gz","parent":"./jc/dist","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1606987,"date":"Mar 3 13:52"},{"filename":"parsers","parent":"./jc/docs","flags":"drwxr-xr-x","links":48,"owner":"kbrazil","group":"staff","size":1536,"date":"Mar 3 11:47"},{"filename":"readme.md","parent":"./jc/docs","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2523,"date":"Mar 3 10:54"},{"filename":"utils.md","parent":"./jc/docs","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":918,"date":"Mar 3 10:54"},{"filename":"arp.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2613,"date":"Mar 3 10:54"},{"filename":"blkid.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4263,"date":"Mar 3 11:47"},{"filename":"crontab.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4075,"date":"Mar 3 10:54"},{"filename":"crontab_u.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4286,"date":"Mar 3 10:54"},{"filename":"csv.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2175,"date":"Mar 3 11:47"},{"filename":"df.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2544,"date":"Mar 3 10:54"},{"filename":"dig.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":9210,"date":"Mar 3 10:54"},{"filename":"du.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2591,"date":"Mar 3 10:54"},{"filename":"env.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1709,"date":"Mar 3 10:54"},{"filename":"free.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1799,"date":"Mar 3 10:54"},{"filename":"fstab.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2389,"date":"Mar 3 10:54"},{"filename":"group.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2485,"date":"Mar 3 11:47"},{"filename":"gshadow.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1902,"date":"Mar 3 11:47"},{"filename":"history.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1500,"date":"Mar 3 10:54"},{"filename":"hosts.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1779,"date":"Mar 3 10:54"},{"filename":"id.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2331,"date":"Mar 3 10:54"},{"filename":"ifconfig.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":5199,"date":"Mar 3 10:54"},{"filename":"ini.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1623,"date":"Mar 3 10:54"},{"filename":"iptables.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4501,"date":"Mar 3 10:54"},{"filename":"jobs.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2326,"date":"Mar 3 10:54"},{"filename":"last.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2261,"date":"Mar 3 11:47"},{"filename":"ls.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4290,"date":"Mar 3 11:47"},{"filename":"lsblk.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":7177,"date":"Mar 3 10:54"},{"filename":"lsmod.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2723,"date":"Mar 3 10:54"},{"filename":"lsof.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2818,"date":"Mar 3 10:54"},{"filename":"mount.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1807,"date":"Mar 3 10:54"},{"filename":"netstat.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":9469,"date":"Mar 3 10:54"},{"filename":"passwd.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2506,"date":"Mar 3 11:47"},{"filename":"pip_list.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1309,"date":"Mar 3 10:54"},{"filename":"pip_show.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2194,"date":"Mar 3 10:54"},{"filename":"ps.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4860,"date":"Mar 3 10:54"},{"filename":"route.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3030,"date":"Mar 3 10:54"},{"filename":"shadow.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2637,"date":"Mar 3 11:47"},{"filename":"ss.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":7404,"date":"Mar 3 10:54"},{"filename":"stat.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4013,"date":"Mar 3 10:54"},{"filename":"systemctl.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1751,"date":"Mar 3 10:54"},{"filename":"systemctl_lj.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1951,"date":"Mar 3 10:54"},{"filename":"systemctl_ls.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1473,"date":"Mar 3 10:54"},{"filename":"systemctl_luf.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1316,"date":"Mar 3 10:54"},{"filename":"uname.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1530,"date":"Mar 3 10:54"},{"filename":"uptime.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1404,"date":"Mar 3 10:54"},{"filename":"w.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2588,"date":"Mar 3 10:54"},{"filename":"who.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3078,"date":"Mar 3 11:47"},{"filename":"xml.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2047,"date":"Mar 3 10:54"},{"filename":"yaml.md","parent":"./jc/docs/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2257,"date":"Mar 3 10:54"},{"filename":"__init__.py","parent":"./jc/jc","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2538,"date":"Nov 17 12:00"},{"filename":"__pycache__","parent":"./jc/jc","flags":"drwxr-xr-x","links":6,"owner":"kbrazil","group":"staff","size":192,"date":"Mar 4 17:20"},{"filename":"cli.py","parent":"./jc/jc","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":8192,"date":"Mar 4 16:55"},{"filename":"parsers","parent":"./jc/jc","flags":"drwxr-xr-x","links":52,"owner":"kbrazil","group":"staff","size":1664,"date":"Mar 4 17:05"},{"filename":"parsers.old","parent":"./jc/jc","flags":"drwxr-xr-x","links":6,"owner":"kbrazil","group":"staff","size":192,"date":"Nov 7 13:56"},{"filename":"utils.py","parent":"./jc/jc","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1471,"date":"Dec 17 12:12"},{"filename":"__init__.cpython-37.pyc","parent":"./jc/jc/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2672,"date":"Nov 20 09:35"},{"filename":"cli.cpython-37.pyc","parent":"./jc/jc/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":6279,"date":"Mar 4 17:20"},{"filename":"jc.cpython-37.pyc","parent":"./jc/jc/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2115,"date":"Nov 6 21:27"},{"filename":"utils.cpython-37.pyc","parent":"./jc/jc/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1740,"date":"Dec 17 15:04"},{"filename":"__init__.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":0,"date":"Nov 7 06:51"},{"filename":"__pycache__","parent":"./jc/jc/parsers","flags":"drwxr-xr-x","links":50,"owner":"kbrazil","group":"staff","size":1600,"date":"Mar 6 12:09"},{"filename":"arp.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":5016,"date":"Mar 4 17:05"},{"filename":"blkid.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":6868,"date":"Mar 4 17:05"},{"filename":"crontab.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":6756,"date":"Feb 13 18:27"},{"filename":"crontab_u.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":7055,"date":"Feb 8 12:42"},{"filename":"csv.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3193,"date":"Mar 3 11:47"},{"filename":"df.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":5176,"date":"Feb 13 18:27"},{"filename":"dig.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":15625,"date":"Feb 13 18:27"},{"filename":"du.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3751,"date":"Feb 13 18:27"},{"filename":"env.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2782,"date":"Feb 13 18:27"},{"filename":"foo.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1802,"date":"Mar 4 16:55"},{"filename":"free.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3037,"date":"Feb 13 18:27"},{"filename":"fstab.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4098,"date":"Feb 13 18:27"},{"filename":"group.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3976,"date":"Mar 3 11:47"},{"filename":"gshadow.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3230,"date":"Mar 3 11:47"},{"filename":"history.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2807,"date":"Mar 6 12:06"},{"filename":"hosts.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3258,"date":"Feb 5 17:00"},{"filename":"id.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":5595,"date":"Feb 13 18:27"},{"filename":"ifconfig.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":7611,"date":"Feb 13 18:27"},{"filename":"ini.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2418,"date":"Feb 5 17:00"},{"filename":"iptables.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":7465,"date":"Feb 13 18:27"},{"filename":"jobs.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4885,"date":"Feb 13 18:27"},{"filename":"last.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4425,"date":"Mar 3 11:47"},{"filename":"ls.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":8630,"date":"Mar 3 11:47"},{"filename":"lsblk.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":9105,"date":"Feb 13 18:27"},{"filename":"lsmod.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3844,"date":"Feb 13 18:27"},{"filename":"lsof.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":5434,"date":"Feb 13 18:27"},{"filename":"mount.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3729,"date":"Feb 13 18:27"},{"filename":"netstat.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":16129,"date":"Feb 13 18:27"},{"filename":"passwd.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4055,"date":"Mar 3 11:47"},{"filename":"pip_list.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2658,"date":"Feb 13 18:27"},{"filename":"pip_show.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3444,"date":"Feb 13 18:27"},{"filename":"ps.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":6793,"date":"Feb 13 18:27"},{"filename":"route.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4085,"date":"Feb 13 18:27"},{"filename":"shadow.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4306,"date":"Mar 3 11:47"},{"filename":"ss.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":11491,"date":"Feb 13 18:27"},{"filename":"stat.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":8255,"date":"Feb 13 18:27"},{"filename":"systemctl.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2940,"date":"Feb 13 18:27"},{"filename":"systemctl_lj.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3483,"date":"Feb 13 18:27"},{"filename":"systemctl_ls.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2675,"date":"Feb 13 18:27"},{"filename":"systemctl_luf.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2585,"date":"Feb 13 18:27"},{"filename":"uname.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3225,"date":"Feb 13 18:27"},{"filename":"universal.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4041,"date":"Dec 17 12:12"},{"filename":"uptime.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3243,"date":"Feb 13 18:27"},{"filename":"w.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4345,"date":"Feb 13 18:27"},{"filename":"who.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":7850,"date":"Mar 3 11:47"},{"filename":"xml.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2747,"date":"Feb 5 17:00"},{"filename":"yaml.py","parent":"./jc/jc/parsers","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3045,"date":"Feb 5 17:00"},{"filename":"__init__.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":131,"date":"Nov 7 07:07"},{"filename":"arp.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4280,"date":"Mar 4 17:05"},{"filename":"blkid.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":6132,"date":"Mar 4 17:05"},{"filename":"crontab.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":6113,"date":"Feb 13 22:07"},{"filename":"crontab_u.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":6348,"date":"Feb 8 12:42"},{"filename":"csv.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3292,"date":"Mar 4 12:08"},{"filename":"df.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4234,"date":"Feb 13 22:07"},{"filename":"dig.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":13352,"date":"Feb 13 22:07"},{"filename":"du.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3750,"date":"Feb 13 22:07"},{"filename":"env.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2834,"date":"Feb 13 22:07"},{"filename":"free.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3088,"date":"Feb 13 22:07"},{"filename":"fstab.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3779,"date":"Feb 13 22:07"},{"filename":"group.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3785,"date":"Mar 4 12:08"},{"filename":"gshadow.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3108,"date":"Mar 4 12:08"},{"filename":"history.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2740,"date":"Mar 6 12:09"},{"filename":"hosts.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3031,"date":"Feb 5 22:20"},{"filename":"id.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4338,"date":"Feb 13 22:07"},{"filename":"ifconfig.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":7471,"date":"Feb 13 22:07"},{"filename":"ini.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2733,"date":"Feb 5 22:20"},{"filename":"iptables.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":6664,"date":"Feb 13 22:07"},{"filename":"jobs.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4054,"date":"Feb 13 22:07"},{"filename":"last.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4038,"date":"Mar 4 12:08"},{"filename":"ls.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":6559,"date":"Mar 4 12:08"},{"filename":"lsblk.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":8868,"date":"Feb 13 22:07"},{"filename":"lsmod.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3899,"date":"Feb 13 22:07"},{"filename":"lsof.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4065,"date":"Feb 13 22:07"},{"filename":"mount.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3514,"date":"Feb 13 22:07"},{"filename":"netstat.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":13400,"date":"Feb 13 22:07"},{"filename":"passwd.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3849,"date":"Mar 4 12:08"},{"filename":"pip_list.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2603,"date":"Feb 13 22:07"},{"filename":"pip_show.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3425,"date":"Feb 13 22:07"},{"filename":"ps.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":6396,"date":"Feb 13 22:07"},{"filename":"route.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4207,"date":"Feb 13 22:07"},{"filename":"shadow.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4055,"date":"Mar 4 12:08"},{"filename":"ss.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":9863,"date":"Feb 13 22:07"},{"filename":"stat.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":6408,"date":"Feb 13 22:07"},{"filename":"systemctl.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2973,"date":"Feb 13 22:07"},{"filename":"systemctl_lj.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3381,"date":"Feb 13 22:07"},{"filename":"systemctl_lm.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2638,"date":"Nov 15 19:07"},{"filename":"systemctl_ls.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2715,"date":"Feb 13 22:07"},{"filename":"systemctl_luf.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2600,"date":"Feb 13 22:07"},{"filename":"uname.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2856,"date":"Feb 13 22:07"},{"filename":"universal.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3545,"date":"Dec 17 15:04"},{"filename":"uptime.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2946,"date":"Feb 13 22:07"},{"filename":"w.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4162,"date":"Feb 13 22:07"},{"filename":"who.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":5485,"date":"Mar 4 12:08"},{"filename":"xml.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2957,"date":"Feb 5 22:20"},{"filename":"yaml.cpython-37.pyc","parent":"./jc/jc/parsers/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3269,"date":"Feb 5 22:20"},{"filename":"ifconfig-old.py","parent":"./jc/jc/parsers.old","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":2247,"date":"Oct 4 15:20"},{"filename":"netstat-fancy.py","parent":"./jc/jc/parsers.old","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":9359,"date":"Oct 18 19:02"},{"filename":"netstat-orig.py","parent":"./jc/jc/parsers.old","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":2714,"date":"Oct 16 23:03"},{"filename":"netstat-v1.1.1.py","parent":"./jc/jc/parsers.old","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4410,"date":"Nov 5 20:30"},{"filename":"PKG-INFO","parent":"./jc/jc.egg-info","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":64247,"date":"Mar 3 13:52"},{"filename":"SOURCES.txt","parent":"./jc/jc.egg-info","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":19812,"date":"Mar 3 13:52"},{"filename":"dependency_links.txt","parent":"./jc/jc.egg-info","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1,"date":"Mar 3 13:52"},{"filename":"entry_points.txt","parent":"./jc/jc.egg-info","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":36,"date":"Mar 3 13:52"},{"filename":"requires.txt","parent":"./jc/jc.egg-info","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":61,"date":"Mar 3 13:52"},{"filename":"top_level.txt","parent":"./jc/jc.egg-info","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":9,"date":"Mar 3 13:52"},{"filename":"__init__.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":0,"date":"Oct 31 08:07"},{"filename":"__pycache__","parent":"./jc/tests","flags":"drwxr-xr-x","links":48,"owner":"kbrazil","group":"staff","size":1536,"date":"Mar 4 19:46"},{"filename":"fixtures","parent":"./jc/tests","flags":"drwxr-xr-x","links":9,"owner":"kbrazil","group":"staff","size":288,"date":"Mar 3 11:47"},{"filename":"test_arp.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4746,"date":"Mar 4 19:37"},{"filename":"test_blkid.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":6590,"date":"Mar 4 19:37"},{"filename":"test_crontab.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":837,"date":"Mar 4 19:37"},{"filename":"test_crontab_u.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1498,"date":"Mar 4 19:37"},{"filename":"test_csv.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":5383,"date":"Mar 4 19:37"},{"filename":"test_df.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4669,"date":"Mar 4 19:37"},{"filename":"test_dig.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3656,"date":"Mar 4 19:38"},{"filename":"test_du.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2415,"date":"Mar 4 19:38"},{"filename":"test_env.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1350,"date":"Mar 4 19:38"},{"filename":"test_free.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2517,"date":"Mar 4 19:38"},{"filename":"test_fstab.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1406,"date":"Mar 4 19:38"},{"filename":"test_group.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1982,"date":"Mar 4 19:38"},{"filename":"test_gshadow.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1444,"date":"Mar 4 19:39"},{"filename":"test_history.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1426,"date":"Mar 4 19:39"},{"filename":"test_hosts.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1406,"date":"Mar 4 19:39"},{"filename":"test_id.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1329,"date":"Mar 4 19:39"},{"filename":"test_ifconfig.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3845,"date":"Mar 4 19:39"},{"filename":"test_ini.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1404,"date":"Mar 4 19:39"},{"filename":"test_iptables.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":8341,"date":"Mar 4 19:39"},{"filename":"test_jobs.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1369,"date":"Mar 4 19:40"},{"filename":"test_last.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4237,"date":"Mar 4 19:40"},{"filename":"test_ls.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":20054,"date":"Mar 4 19:40"},{"filename":"test_lsblk.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3084,"date":"Mar 4 19:29"},{"filename":"test_lsmod.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1388,"date":"Mar 4 19:41"},{"filename":"test_lsof.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2563,"date":"Mar 4 19:41"},{"filename":"test_mount.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2536,"date":"Mar 4 19:41"},{"filename":"test_netstat.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":6474,"date":"Mar 4 19:41"},{"filename":"test_passwd.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2012,"date":"Mar 4 19:41"},{"filename":"test_pip_list.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3303,"date":"Mar 4 19:41"},{"filename":"test_pip_show.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2637,"date":"Mar 4 19:33"},{"filename":"test_ps.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4805,"date":"Mar 4 19:42"},{"filename":"test_route.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2570,"date":"Mar 4 19:42"},{"filename":"test_shadow.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1425,"date":"Mar 4 19:42"},{"filename":"test_ss.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1445,"date":"Mar 4 19:42"},{"filename":"test_stat.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1383,"date":"Mar 4 19:30"},{"filename":"test_systemctl.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1470,"date":"Mar 4 19:33"},{"filename":"test_systemctl_lj.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":907,"date":"Mar 4 19:44"},{"filename":"test_systemctl_ls.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1547,"date":"Mar 4 19:45"},{"filename":"test_systemctl_luf.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1564,"date":"Mar 4 19:45"},{"filename":"test_uname.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2586,"date":"Mar 4 19:45"},{"filename":"test_uptime.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2563,"date":"Mar 4 19:45"},{"filename":"test_w.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2370,"date":"Mar 4 19:45"},{"filename":"test_who.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3599,"date":"Mar 4 19:46"},{"filename":"test_xml.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1429,"date":"Mar 4 19:46"},{"filename":"test_yaml.py","parent":"./jc/tests","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1473,"date":"Mar 4 19:46"},{"filename":"__init__.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":126,"date":"Nov 8 14:01"},{"filename":"test_arp.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4580,"date":"Mar 4 19:43"},{"filename":"test_blkid.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":6192,"date":"Mar 4 19:43"},{"filename":"test_crontab.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1185,"date":"Mar 4 19:43"},{"filename":"test_crontab_u.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1762,"date":"Mar 4 19:43"},{"filename":"test_csv.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":5045,"date":"Mar 4 19:43"},{"filename":"test_df.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4520,"date":"Mar 4 19:43"},{"filename":"test_dig.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3632,"date":"Mar 4 19:43"},{"filename":"test_du.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2553,"date":"Mar 4 19:43"},{"filename":"test_env.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1626,"date":"Mar 4 19:43"},{"filename":"test_free.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2640,"date":"Mar 4 19:43"},{"filename":"test_fstab.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1678,"date":"Mar 4 19:43"},{"filename":"test_group.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2178,"date":"Mar 4 19:43"},{"filename":"test_gshadow.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1712,"date":"Mar 4 19:43"},{"filename":"test_history.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1694,"date":"Mar 4 19:43"},{"filename":"test_hosts.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1678,"date":"Mar 4 19:43"},{"filename":"test_id.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1607,"date":"Mar 4 19:43"},{"filename":"test_ifconfig.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3783,"date":"Mar 4 19:43"},{"filename":"test_ini.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1654,"date":"Mar 4 19:43"},{"filename":"test_iptables.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":7690,"date":"Mar 4 19:43"},{"filename":"test_jobs.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1643,"date":"Mar 4 19:43"},{"filename":"test_last.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4137,"date":"Mar 4 19:43"},{"filename":"test_ls.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":17989,"date":"Mar 4 19:43"},{"filename":"test_lsblk.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3195,"date":"Mar 4 19:43"},{"filename":"test_lsmod.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1660,"date":"Mar 4 19:43"},{"filename":"test_lsof.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2680,"date":"Mar 4 19:43"},{"filename":"test_mount.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2655,"date":"Mar 4 19:43"},{"filename":"test_netstat.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":6060,"date":"Mar 4 19:43"},{"filename":"test_passwd.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2204,"date":"Mar 4 19:43"},{"filename":"test_pip_list.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3316,"date":"Mar 4 19:43"},{"filename":"test_pip_show.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2739,"date":"Mar 4 19:43"},{"filename":"test_ps.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4636,"date":"Mar 4 19:43"},{"filename":"test_route.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2685,"date":"Mar 4 19:43"},{"filename":"test_shadow.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1695,"date":"Mar 4 19:43"},{"filename":"test_ss.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1709,"date":"Mar 4 19:43"},{"filename":"test_stat.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1657,"date":"Mar 4 19:43"},{"filename":"test_systemctl.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1734,"date":"Mar 4 19:43"},{"filename":"test_systemctl_lj.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1254,"date":"Mar 4 19:44"},{"filename":"test_systemctl_ls.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1805,"date":"Mar 4 19:46"},{"filename":"test_systemctl_luf.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1820,"date":"Mar 4 19:46"},{"filename":"test_uname.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2690,"date":"Mar 4 19:46"},{"filename":"test_uptime.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2677,"date":"Mar 4 19:46"},{"filename":"test_w.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2518,"date":"Mar 4 19:46"},{"filename":"test_who.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3582,"date":"Mar 4 19:46"},{"filename":"test_xml.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1676,"date":"Mar 4 19:46"},{"filename":"test_yaml.cpython-37.pyc","parent":"./jc/tests/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1715,"date":"Mar 4 19:46"},{"filename":"centos-7.7","parent":"./jc/tests/fixtures","flags":"drwxr-xr-x","links":153,"owner":"kbrazil","group":"staff","size":4896,"date":"Mar 3 11:47"},{"filename":"create_fixtures.sh","parent":"./jc/tests/fixtures","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3397,"date":"Mar 3 11:47"},{"filename":"generic","parent":"./jc/tests/fixtures","flags":"drwxr-xr-x","links":34,"owner":"kbrazil","group":"staff","size":1088,"date":"Mar 3 11:47"},{"filename":"osx-10.11.6","parent":"./jc/tests/fixtures","flags":"drwxr-xr-x","links":41,"owner":"kbrazil","group":"staff","size":1312,"date":"Dec 17 12:12"},{"filename":"osx-10.14.6","parent":"./jc/tests/fixtures","flags":"drwxr-xr-x","links":71,"owner":"kbrazil","group":"staff","size":2272,"date":"Mar 3 11:47"},{"filename":"ubuntu-18.04","parent":"./jc/tests/fixtures","flags":"drwxr-xr-x","links":153,"owner":"kbrazil","group":"staff","size":4896,"date":"Mar 3 11:47"},{"filename":"arp-a.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":350,"date":"Nov 17 12:00"},{"filename":"arp-a.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":173,"date":"Oct 31 08:07"},{"filename":"arp-v.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":236,"date":"Nov 17 12:00"},{"filename":"arp-v.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":274,"date":"Oct 31 08:07"},{"filename":"arp.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":236,"date":"Nov 17 12:00"},{"filename":"arp.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":243,"date":"Oct 31 08:07"},{"filename":"blkid-ip-multi.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":764,"date":"Mar 3 11:47"},{"filename":"blkid-ip-multi.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":618,"date":"Mar 3 11:47"},{"filename":"blkid-ip-udev-multi.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":987,"date":"Mar 3 11:47"},{"filename":"blkid-ip-udev-multi.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":838,"date":"Mar 3 11:47"},{"filename":"blkid-ip-udev.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":488,"date":"Mar 3 11:47"},{"filename":"blkid-ip-udev.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":413,"date":"Mar 3 11:47"},{"filename":"blkid-sda2.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":99,"date":"Mar 3 11:47"},{"filename":"blkid-sda2.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":77,"date":"Mar 3 11:47"},{"filename":"blkid.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":392,"date":"Mar 3 11:47"},{"filename":"blkid.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":307,"date":"Mar 3 11:47"},{"filename":"crontab-u.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":399,"date":"Feb 5 17:00"},{"filename":"crontab-u.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":163,"date":"Feb 5 17:00"},{"filename":"crontab.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1940,"date":"Feb 5 17:00"},{"filename":"crontab.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1564,"date":"Dec 17 12:12"},{"filename":"df-h.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":836,"date":"Nov 17 12:00"},{"filename":"df-h.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":444,"date":"Oct 31 08:07"},{"filename":"df.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":904,"date":"Dec 17 12:12"},{"filename":"df.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":524,"date":"Oct 31 08:07"},{"filename":"dig-aaaa.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":462,"date":"Nov 17 12:00"},{"filename":"dig-aaaa.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":556,"date":"Oct 31 08:07"},{"filename":"dig-x.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":464,"date":"Nov 17 12:00"},{"filename":"dig-x.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":547,"date":"Oct 31 08:07"},{"filename":"dig.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1005,"date":"Nov 17 12:00"},{"filename":"dig.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1052,"date":"Oct 31 08:07"},{"filename":"du.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":365319,"date":"Dec 17 12:12"},{"filename":"du.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":250940,"date":"Dec 17 12:12"},{"filename":"env.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2932,"date":"Nov 17 12:00"},{"filename":"env.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2331,"date":"Oct 31 08:07"},{"filename":"free-h.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":177,"date":"Nov 17 12:00"},{"filename":"free-h.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":204,"date":"Oct 31 08:07"},{"filename":"free.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":194,"date":"Nov 17 12:00"},{"filename":"free.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":204,"date":"Oct 31 08:07"},{"filename":"fstab.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":423,"date":"Nov 17 12:00"},{"filename":"fstab.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":488,"date":"Nov 17 12:00"},{"filename":"group.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2701,"date":"Mar 3 11:47"},{"filename":"group.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":509,"date":"Mar 3 11:47"},{"filename":"gshadow.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3106,"date":"Mar 3 11:47"},{"filename":"gshadow.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":407,"date":"Mar 3 11:47"},{"filename":"history.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":47552,"date":"Feb 5 17:00"},{"filename":"history.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":25967,"date":"Oct 31 08:07"},{"filename":"hosts.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":223,"date":"Nov 17 12:00"},{"filename":"hosts.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":193,"date":"Nov 17 12:00"},{"filename":"id.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":267,"date":"Feb 5 17:00"},{"filename":"id.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":129,"date":"Feb 5 17:00"},{"filename":"ifconfig.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1598,"date":"Dec 17 12:12"},{"filename":"ifconfig.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1259,"date":"Oct 31 08:07"},{"filename":"iptables-filter-line-numbers.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":7469,"date":"Nov 17 12:00"},{"filename":"iptables-filter-line-numbers.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":6643,"date":"Nov 17 12:00"},{"filename":"iptables-filter-nv.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":10625,"date":"Nov 17 12:00"},{"filename":"iptables-filter-nv.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":9064,"date":"Oct 31 08:07"},{"filename":"iptables-filter.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":7749,"date":"Nov 17 12:00"},{"filename":"iptables-filter.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":6762,"date":"Oct 31 08:07"},{"filename":"iptables-mangle.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1938,"date":"Nov 17 12:00"},{"filename":"iptables-mangle.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2399,"date":"Oct 31 08:07"},{"filename":"iptables-nat.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3211,"date":"Nov 17 12:00"},{"filename":"iptables-nat.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3484,"date":"Oct 31 08:07"},{"filename":"iptables-raw.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1386,"date":"Nov 17 12:00"},{"filename":"iptables-raw.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1616,"date":"Oct 31 08:07"},{"filename":"jobs.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":306,"date":"Nov 17 12:00"},{"filename":"jobs.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":164,"date":"Oct 31 08:07"},{"filename":"last-w.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":9189,"date":"Mar 3 11:47"},{"filename":"last-w.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":5452,"date":"Mar 3 11:47"},{"filename":"last.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":8934,"date":"Mar 3 11:47"},{"filename":"last.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":5197,"date":"Mar 3 11:47"},{"filename":"lastb.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":511,"date":"Mar 3 11:47"},{"filename":"lastb.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":346,"date":"Mar 3 11:47"},{"filename":"ls-R-newlines.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1281,"date":"Feb 27 11:25"},{"filename":"ls-R-newlines.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":542,"date":"Feb 27 11:25"},{"filename":"ls-R.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":315329,"date":"Feb 19 07:07"},{"filename":"ls-R.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":72565,"date":"Feb 19 07:07"},{"filename":"ls-al.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2776,"date":"Nov 17 12:00"},{"filename":"ls-al.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1070,"date":"Oct 31 08:07"},{"filename":"ls-alR.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":773278,"date":"Feb 19 07:07"},{"filename":"ls-alR.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":281708,"date":"Feb 19 07:07"},{"filename":"ls-alh.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2776,"date":"Nov 17 12:00"},{"filename":"ls-alh.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1071,"date":"Oct 31 08:07"},{"filename":"ls-glob.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":97675,"date":"Feb 19 07:07"},{"filename":"ls-glob.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":22048,"date":"Feb 19 07:07"},{"filename":"ls-l-newlines.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1183,"date":"Feb 27 11:25"},{"filename":"ls-l-newlines.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":583,"date":"Feb 27 11:25"},{"filename":"ls-lR-newlines.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2576,"date":"Feb 27 11:25"},{"filename":"ls-lR-newlines.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1209,"date":"Feb 27 11:25"},{"filename":"ls-newlines.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":498,"date":"Feb 27 11:25"},{"filename":"ls-newlines.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":260,"date":"Feb 27 11:25"},{"filename":"ls.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":409,"date":"Nov 17 12:00"},{"filename":"ls.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":85,"date":"Oct 31 08:07"},{"filename":"lsblk-allcols.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4102,"date":"Nov 17 12:00"},{"filename":"lsblk-allcols.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2502,"date":"Nov 17 12:00"},{"filename":"lsblk.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":698,"date":"Nov 17 12:00"},{"filename":"lsblk.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":332,"date":"Oct 31 08:07"},{"filename":"lsmod.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":6655,"date":"Nov 17 12:00"},{"filename":"lsmod.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4161,"date":"Oct 31 08:07"},{"filename":"lsof-sudo.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":618317,"date":"Nov 17 12:00"},{"filename":"lsof-sudo.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":363073,"date":"Oct 31 08:07"},{"filename":"lsof.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":126050,"date":"Nov 17 12:00"},{"filename":"lsof.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":70567,"date":"Oct 31 08:07"},{"filename":"mount.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4848,"date":"Nov 17 12:00"},{"filename":"mount.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2711,"date":"Oct 31 08:07"},{"filename":"netstat-l.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":7020,"date":"Nov 17 12:00"},{"filename":"netstat-l.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3499,"date":"Oct 31 08:07"},{"filename":"netstat-p.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":17621,"date":"Nov 17 12:00"},{"filename":"netstat-p.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":10407,"date":"Oct 31 08:07"},{"filename":"netstat-sudo-aeep.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":29188,"date":"Nov 17 12:00"},{"filename":"netstat-sudo-aeep.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":14986,"date":"Nov 17 12:00"},{"filename":"netstat-sudo-lnp.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":8734,"date":"Nov 17 12:00"},{"filename":"netstat-sudo-lnp.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4402,"date":"Oct 31 08:07"},{"filename":"netstat.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":15637,"date":"Nov 17 12:00"},{"filename":"netstat.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":8068,"date":"Oct 31 08:07"},{"filename":"passwd.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2747,"date":"Mar 3 11:47"},{"filename":"passwd.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":961,"date":"Mar 3 11:47"},{"filename":"pip-list.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":905,"date":"Dec 17 12:12"},{"filename":"pip-list.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":616,"date":"Dec 17 12:12"},{"filename":"pip-show.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1129,"date":"Dec 17 12:12"},{"filename":"pip-show.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":974,"date":"Dec 17 12:12"},{"filename":"ps-axu.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":20936,"date":"Nov 17 12:00"},{"filename":"ps-axu.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":9932,"date":"Oct 31 08:07"},{"filename":"ps-ef.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":14630,"date":"Nov 17 12:00"},{"filename":"ps-ef.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":8168,"date":"Oct 31 08:07"},{"filename":"route-vn.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":442,"date":"Nov 17 12:00"},{"filename":"route-vn.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":338,"date":"Oct 31 08:07"},{"filename":"route.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":437,"date":"Nov 17 12:00"},{"filename":"route.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":338,"date":"Oct 31 08:07"},{"filename":"shadow.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3206,"date":"Mar 3 11:47"},{"filename":"shadow.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":740,"date":"Mar 3 11:47"},{"filename":"ss-sudo-a.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":29301,"date":"Nov 17 12:00"},{"filename":"ss-sudo-a.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":17945,"date":"Nov 17 12:00"},{"filename":"stat.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":322074,"date":"Nov 17 12:00"},{"filename":"stat.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":295777,"date":"Nov 17 12:00"},{"filename":"systemctl-ls.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1439,"date":"Nov 17 12:00"},{"filename":"systemctl-ls.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1159,"date":"Nov 17 12:00"},{"filename":"systemctl-luf.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":14574,"date":"Nov 17 12:00"},{"filename":"systemctl-luf.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":13499,"date":"Nov 17 12:00"},{"filename":"systemctl.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":31968,"date":"Nov 17 12:00"},{"filename":"systemctl.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":38560,"date":"Nov 17 12:00"},{"filename":"uname-a.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":276,"date":"Nov 17 12:00"},{"filename":"uname-a.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":122,"date":"Oct 31 08:07"},{"filename":"uptime.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":103,"date":"Nov 17 12:00"},{"filename":"uptime.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":62,"date":"Oct 31 08:07"},{"filename":"w.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":287,"date":"Nov 17 12:00"},{"filename":"w.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":266,"date":"Oct 31 08:07"},{"filename":"who-a.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":549,"date":"Mar 3 11:47"},{"filename":"who-a.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":364,"date":"Mar 3 11:47"},{"filename":"who.json","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":155,"date":"Mar 3 11:47"},{"filename":"who.out","parent":"./jc/tests/fixtures/centos-7.7","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":93,"date":"Mar 3 11:47"},{"filename":"csv-biostats.csv","parent":"./jc/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":849,"date":"Mar 3 11:47"},{"filename":"csv-biostats.json","parent":"./jc/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1566,"date":"Mar 3 11:47"},{"filename":"csv-cities.csv","parent":"./jc/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":8402,"date":"Mar 3 11:47"},{"filename":"csv-cities.json","parent":"./jc/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":18398,"date":"Mar 3 11:47"},{"filename":"csv-deniro.csv","parent":"./jc/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2391,"date":"Mar 3 11:47"},{"filename":"csv-deniro.json","parent":"./jc/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":5146,"date":"Mar 3 11:47"},{"filename":"csv-example.csv","parent":"./jc/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1117,"date":"Mar 3 11:47"},{"filename":"csv-example.json","parent":"./jc/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1588,"date":"Mar 3 11:47"},{"filename":"csv-flyrna.json","parent":"./jc/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":558246,"date":"Mar 3 11:47"},{"filename":"csv-flyrna.tsv","parent":"./jc/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":205281,"date":"Mar 3 11:47"},{"filename":"csv-flyrna2.json","parent":"./jc/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":556670,"date":"Mar 3 11:47"},{"filename":"csv-flyrna2.tsv","parent":"./jc/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":203705,"date":"Mar 3 11:47"},{"filename":"csv-homes-pipe.csv","parent":"./jc/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":158,"date":"Mar 3 11:47"},{"filename":"csv-homes-pipe.json","parent":"./jc/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":274,"date":"Mar 3 11:47"},{"filename":"csv-homes.csv","parent":"./jc/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2125,"date":"Mar 3 11:47"},{"filename":"csv-homes.json","parent":"./jc/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":6798,"date":"Mar 3 11:47"},{"filename":"csv-insurance.csv","parent":"./jc/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":53816,"date":"Mar 3 11:47"},{"filename":"csv-insurance.json","parent":"./jc/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":229722,"date":"Mar 3 11:47"},{"filename":"ini-iptelserver.ini","parent":"./jc/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4705,"date":"Feb 5 17:00"},{"filename":"ini-iptelserver.json","parent":"./jc/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1486,"date":"Feb 5 17:00"},{"filename":"ini-test.ini","parent":"./jc/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":171,"date":"Feb 5 17:00"},{"filename":"ini-test.json","parent":"./jc/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":270,"date":"Feb 5 17:00"},{"filename":"oscar_age_male.csv","parent":"./jc/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4413,"date":"Mar 3 11:47"},{"filename":"xml-cd_catalog.json","parent":"./jc/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3294,"date":"Feb 5 17:00"},{"filename":"xml-cd_catalog.xml","parent":"./jc/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":5077,"date":"Feb 5 17:00"},{"filename":"xml-foodmenu.json","parent":"./jc/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":811,"date":"Feb 5 17:00"},{"filename":"xml-foodmenu.xml","parent":"./jc/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1102,"date":"Feb 5 17:00"},{"filename":"yaml-istio-sc.json","parent":"./jc/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":333,"date":"Feb 5 17:00"},{"filename":"yaml-istio-sc.yaml","parent":"./jc/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":305,"date":"Feb 5 17:00"},{"filename":"yaml-istio-sidecar.json","parent":"./jc/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3178,"date":"Feb 5 17:00"},{"filename":"yaml-istio-sidecar.yaml","parent":"./jc/tests/fixtures/generic","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3681,"date":"Feb 5 17:00"},{"filename":"arp-a.json","parent":"./jc/tests/fixtures/osx-10.11.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1669,"date":"Dec 17 12:12"},{"filename":"arp-a.out","parent":"./jc/tests/fixtures/osx-10.11.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":1036,"date":"Dec 17 12:12"},{"filename":"df-h.json","parent":"./jc/tests/fixtures/osx-10.11.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1151,"date":"Dec 17 12:12"},{"filename":"df-h.out","parent":"./jc/tests/fixtures/osx-10.11.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":908,"date":"Dec 17 12:12"},{"filename":"df.json","parent":"./jc/tests/fixtures/osx-10.11.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1196,"date":"Dec 17 12:12"},{"filename":"df.out","parent":"./jc/tests/fixtures/osx-10.11.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":992,"date":"Dec 17 12:12"},{"filename":"dig-aaaa.json","parent":"./jc/tests/fixtures/osx-10.11.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":439,"date":"Dec 17 12:12"},{"filename":"dig-aaaa.out","parent":"./jc/tests/fixtures/osx-10.11.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":537,"date":"Dec 17 12:12"},{"filename":"dig-x.json","parent":"./jc/tests/fixtures/osx-10.11.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":442,"date":"Dec 17 12:12"},{"filename":"dig-x.out","parent":"./jc/tests/fixtures/osx-10.11.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":529,"date":"Dec 17 12:12"},{"filename":"dig.json","parent":"./jc/tests/fixtures/osx-10.11.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1272,"date":"Dec 17 12:12"},{"filename":"dig.out","parent":"./jc/tests/fixtures/osx-10.11.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":1188,"date":"Dec 17 12:12"},{"filename":"du.json","parent":"./jc/tests/fixtures/osx-10.11.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":221050,"date":"Dec 17 12:12"},{"filename":"du.out","parent":"./jc/tests/fixtures/osx-10.11.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":166687,"date":"Dec 17 12:12"},{"filename":"ifconfig.json","parent":"./jc/tests/fixtures/osx-10.11.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3791,"date":"Dec 17 12:12"},{"filename":"ifconfig.out","parent":"./jc/tests/fixtures/osx-10.11.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":1571,"date":"Dec 17 12:12"},{"filename":"ifconfig2.json","parent":"./jc/tests/fixtures/osx-10.11.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3791,"date":"Dec 17 12:12"},{"filename":"ifconfig2.out","parent":"./jc/tests/fixtures/osx-10.11.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":1571,"date":"Dec 17 12:12"},{"filename":"ls-al.json","parent":"./jc/tests/fixtures/osx-10.11.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4259,"date":"Dec 17 12:12"},{"filename":"ls-al.out","parent":"./jc/tests/fixtures/osx-10.11.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":1851,"date":"Dec 17 12:12"},{"filename":"ls-alh.json","parent":"./jc/tests/fixtures/osx-10.11.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4296,"date":"Dec 17 12:12"},{"filename":"ls-alh.out","parent":"./jc/tests/fixtures/osx-10.11.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":1882,"date":"Dec 17 12:12"},{"filename":"ls.json","parent":"./jc/tests/fixtures/osx-10.11.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":533,"date":"Dec 17 12:12"},{"filename":"ls.out","parent":"./jc/tests/fixtures/osx-10.11.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":175,"date":"Dec 17 12:12"},{"filename":"pip-list.json","parent":"./jc/tests/fixtures/osx-10.11.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":224,"date":"Dec 17 12:12"},{"filename":"pip-list.out","parent":"./jc/tests/fixtures/osx-10.11.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":168,"date":"Dec 17 12:12"},{"filename":"pip-show.json","parent":"./jc/tests/fixtures/osx-10.11.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1028,"date":"Dec 17 12:12"},{"filename":"pip-show.out","parent":"./jc/tests/fixtures/osx-10.11.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":867,"date":"Dec 17 12:12"},{"filename":"ps-axu.json","parent":"./jc/tests/fixtures/osx-10.11.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":53632,"date":"Dec 17 12:12"},{"filename":"ps-axu.out","parent":"./jc/tests/fixtures/osx-10.11.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":32255,"date":"Dec 17 12:12"},{"filename":"ps-ef.json","parent":"./jc/tests/fixtures/osx-10.11.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":38291,"date":"Dec 17 12:12"},{"filename":"ps-ef.out","parent":"./jc/tests/fixtures/osx-10.11.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":25921,"date":"Dec 17 12:12"},{"filename":"uname-a.json","parent":"./jc/tests/fixtures/osx-10.11.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":233,"date":"Dec 17 12:12"},{"filename":"uname-a.out","parent":"./jc/tests/fixtures/osx-10.11.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":142,"date":"Dec 17 12:12"},{"filename":"uptime.json","parent":"./jc/tests/fixtures/osx-10.11.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":102,"date":"Dec 17 12:12"},{"filename":"uptime.out","parent":"./jc/tests/fixtures/osx-10.11.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":57,"date":"Dec 17 12:12"},{"filename":"w.json","parent":"./jc/tests/fixtures/osx-10.11.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":627,"date":"Dec 17 12:12"},{"filename":"w.out","parent":"./jc/tests/fixtures/osx-10.11.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":458,"date":"Dec 17 12:12"},{"filename":"arp-a.json","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1541,"date":"Dec 17 12:12"},{"filename":"arp-a.out","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":968,"date":"Dec 17 12:12"},{"filename":"df-h.json","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1686,"date":"Dec 17 12:12"},{"filename":"df-h.out","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1276,"date":"Dec 17 12:12"},{"filename":"df.json","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1764,"date":"Dec 17 12:12"},{"filename":"df.out","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1384,"date":"Dec 17 12:12"},{"filename":"dig-aaaa.json","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":438,"date":"Dec 17 12:12"},{"filename":"dig-aaaa.out","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":536,"date":"Dec 17 12:12"},{"filename":"dig-x.json","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":442,"date":"Dec 17 12:12"},{"filename":"dig-x.out","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":529,"date":"Dec 17 12:12"},{"filename":"dig.json","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1266,"date":"Dec 17 12:12"},{"filename":"dig.out","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1182,"date":"Dec 17 12:12"},{"filename":"du.json","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":296296,"date":"Dec 17 12:12"},{"filename":"du.out","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":222287,"date":"Dec 17 12:12"},{"filename":"group.json","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":9646,"date":"Mar 3 11:47"},{"filename":"group.out","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2823,"date":"Mar 3 11:47"},{"filename":"id.json","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":759,"date":"Feb 5 17:00"},{"filename":"id.out","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":386,"date":"Feb 5 17:00"},{"filename":"ifconfig.json","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":10823,"date":"Dec 17 12:12"},{"filename":"ifconfig.out","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":3779,"date":"Dec 17 12:12"},{"filename":"ifconfig2.json","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":11375,"date":"Dec 17 12:12"},{"filename":"ifconfig2.out","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3979,"date":"Dec 17 12:12"},{"filename":"last.json","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":45274,"date":"Mar 3 11:47"},{"filename":"last.out","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":25827,"date":"Mar 3 11:47"},{"filename":"ls-R-newlines.json","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":852,"date":"Feb 27 11:25"},{"filename":"ls-R-newlines.out","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":278,"date":"Feb 27 11:25"},{"filename":"ls-R.json","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":469418,"date":"Feb 19 07:07"},{"filename":"ls-R.out","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":133787,"date":"Feb 19 07:07"},{"filename":"ls-al.json","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4653,"date":"Dec 17 12:12"},{"filename":"ls-al.out","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":2111,"date":"Dec 17 12:12"},{"filename":"ls-alR.json","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":959674,"date":"Feb 19 07:07"},{"filename":"ls-alR.out","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":364578,"date":"Feb 19 07:07"},{"filename":"ls-alh.json","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4684,"date":"Dec 17 12:12"},{"filename":"ls-alh.out","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":2111,"date":"Dec 17 12:12"},{"filename":"ls-glob.json","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":91499,"date":"Feb 19 07:07"},{"filename":"ls-glob.out","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":19369,"date":"Feb 19 07:07"},{"filename":"ls-l-newlines.json","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1162,"date":"Feb 27 11:25"},{"filename":"ls-l-newlines.out","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":583,"date":"Feb 27 11:25"},{"filename":"ls-lR-newlines.json","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1450,"date":"Feb 27 11:25"},{"filename":"ls-lR-newlines.out","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":656,"date":"Feb 27 11:25"},{"filename":"ls-newlines.json","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":498,"date":"Feb 27 11:25"},{"filename":"ls-newlines.out","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":260,"date":"Feb 27 11:25"},{"filename":"ls.json","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":585,"date":"Dec 17 12:12"},{"filename":"ls.out","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":193,"date":"Dec 17 12:12"},{"filename":"mount.json","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":672,"date":"Dec 17 12:12"},{"filename":"mount.out","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":349,"date":"Dec 17 12:12"},{"filename":"mount2.json","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":841,"date":"Dec 17 12:12"},{"filename":"mount2.out","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":464,"date":"Dec 17 12:12"},{"filename":"passwd.json","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":14855,"date":"Mar 3 11:47"},{"filename":"passwd.out","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":6804,"date":"Mar 3 11:47"},{"filename":"pip-list.json","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":224,"date":"Dec 17 12:12"},{"filename":"pip-list.out","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":168,"date":"Dec 17 12:12"},{"filename":"pip-show.json","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1067,"date":"Dec 17 12:12"},{"filename":"pip-show.out","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":910,"date":"Dec 17 12:12"},{"filename":"ps-axu.json","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":99173,"date":"Dec 17 12:12"},{"filename":"ps-axu.out","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":60107,"date":"Dec 17 12:12"},{"filename":"ps-ef.json","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":71162,"date":"Dec 17 12:12"},{"filename":"ps-ef.out","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":48758,"date":"Dec 17 12:12"},{"filename":"uname-a.json","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":221,"date":"Dec 17 12:12"},{"filename":"uname-a.out","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":131,"date":"Dec 17 12:12"},{"filename":"uptime.json","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":110,"date":"Dec 17 12:12"},{"filename":"uptime.out","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":65,"date":"Dec 17 12:12"},{"filename":"w.json","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":836,"date":"Dec 17 12:12"},{"filename":"w.out","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":570,"date":"Dec 17 12:12"},{"filename":"who-a.json","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":659,"date":"Mar 3 11:47"},{"filename":"who-a.out","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":419,"date":"Mar 3 11:47"},{"filename":"who.json","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":251,"date":"Mar 3 11:47"},{"filename":"who.out","parent":"./jc/tests/fixtures/osx-10.14.6","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":128,"date":"Mar 3 11:47"},{"filename":"arp-a.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":351,"date":"Nov 17 12:00"},{"filename":"arp-a.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":174,"date":"Oct 31 08:07"},{"filename":"arp-v.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":237,"date":"Nov 17 12:00"},{"filename":"arp-v.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":274,"date":"Oct 31 08:07"},{"filename":"arp.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":237,"date":"Nov 17 12:00"},{"filename":"arp.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":243,"date":"Oct 31 08:07"},{"filename":"blkid-ip-multi.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":818,"date":"Mar 3 11:47"},{"filename":"blkid-ip-multi.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":717,"date":"Mar 3 11:47"},{"filename":"blkid-ip-udev-multi.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":962,"date":"Mar 3 11:47"},{"filename":"blkid-ip-udev-multi.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":832,"date":"Mar 3 11:47"},{"filename":"blkid-ip-udev.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":547,"date":"Mar 3 11:47"},{"filename":"blkid-ip-udev.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":478,"date":"Mar 3 11:47"},{"filename":"blkid-sda2.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":142,"date":"Mar 3 11:47"},{"filename":"blkid-sda2.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":115,"date":"Mar 3 11:47"},{"filename":"blkid.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":986,"date":"Mar 3 11:47"},{"filename":"blkid.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":675,"date":"Mar 3 11:47"},{"filename":"crontab-u.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":939,"date":"Feb 5 17:00"},{"filename":"crontab-u.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":752,"date":"Feb 5 17:00"},{"filename":"df-h.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2261,"date":"Nov 17 12:00"},{"filename":"df-h.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1004,"date":"Oct 31 08:07"},{"filename":"df.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2372,"date":"Dec 17 12:12"},{"filename":"df.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1194,"date":"Oct 31 08:07"},{"filename":"dig-aaaa.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":458,"date":"Nov 17 12:00"},{"filename":"dig-aaaa.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":532,"date":"Oct 31 08:07"},{"filename":"dig-x.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":460,"date":"Nov 17 12:00"},{"filename":"dig-x.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":523,"date":"Oct 31 08:07"},{"filename":"dig.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1306,"date":"Nov 17 12:00"},{"filename":"dig.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1156,"date":"Oct 31 08:07"},{"filename":"du.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1560353,"date":"Dec 17 12:12"},{"filename":"du.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1136984,"date":"Dec 17 12:12"},{"filename":"env.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2651,"date":"Nov 17 12:00"},{"filename":"env.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2125,"date":"Oct 31 08:07"},{"filename":"free-h.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":177,"date":"Nov 17 12:00"},{"filename":"free-h.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":204,"date":"Oct 31 08:07"},{"filename":"free.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":195,"date":"Nov 17 12:00"},{"filename":"free.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":204,"date":"Oct 31 08:07"},{"filename":"fstab.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":268,"date":"Nov 17 12:00"},{"filename":"fstab.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":120,"date":"Nov 17 12:00"},{"filename":"group.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3705,"date":"Mar 3 11:47"},{"filename":"group.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":721,"date":"Mar 3 11:47"},{"filename":"gshadow.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4279,"date":"Mar 3 11:47"},{"filename":"gshadow.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":606,"date":"Mar 3 11:47"},{"filename":"history.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":22782,"date":"Feb 5 17:00"},{"filename":"history.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":12844,"date":"Oct 31 08:07"},{"filename":"hosts.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":365,"date":"Nov 17 12:00"},{"filename":"hosts.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":272,"date":"Nov 17 12:00"},{"filename":"ifconfig.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1090,"date":"Dec 17 12:12"},{"filename":"ifconfig.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":894,"date":"Oct 31 08:07"},{"filename":"iptables-filter-line-numbers.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":847,"date":"Nov 17 12:00"},{"filename":"iptables-filter-line-numbers.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1025,"date":"Nov 17 12:00"},{"filename":"iptables-filter-nv.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2363,"date":"Nov 17 12:00"},{"filename":"iptables-filter-nv.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2763,"date":"Oct 31 08:07"},{"filename":"iptables-filter.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1730,"date":"Nov 17 12:00"},{"filename":"iptables-filter.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2035,"date":"Oct 31 08:07"},{"filename":"iptables-mangle.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":141,"date":"Nov 17 12:00"},{"filename":"iptables-mangle.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":468,"date":"Oct 31 08:07"},{"filename":"iptables-nat.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":106,"date":"Nov 17 12:00"},{"filename":"iptables-nat.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":375,"date":"Oct 31 08:07"},{"filename":"iptables-raw.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":39,"date":"Nov 17 12:00"},{"filename":"iptables-raw.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":187,"date":"Oct 31 08:07"},{"filename":"jobs.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":306,"date":"Nov 17 12:00"},{"filename":"jobs.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":164,"date":"Oct 31 08:07"},{"filename":"last-w.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1852,"date":"Mar 3 11:47"},{"filename":"last-w.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1073,"date":"Mar 3 11:47"},{"filename":"last.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1845,"date":"Mar 3 11:47"},{"filename":"last.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1066,"date":"Mar 3 11:47"},{"filename":"lastb.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":125,"date":"Mar 3 11:47"},{"filename":"lastb.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":111,"date":"Mar 3 11:47"},{"filename":"ls-R-newlines.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1114,"date":"Feb 27 11:25"},{"filename":"ls-R-newlines.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":471,"date":"Feb 27 11:25"},{"filename":"ls-R.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":298654,"date":"Feb 19 07:07"},{"filename":"ls-R.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":62421,"date":"Feb 19 07:07"},{"filename":"ls-al.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3950,"date":"Nov 17 12:00"},{"filename":"ls-al.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1744,"date":"Oct 31 08:07"},{"filename":"ls-alR.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":772252,"date":"Feb 19 07:07"},{"filename":"ls-alR.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":262651,"date":"Feb 19 07:07"},{"filename":"ls-alh.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3942,"date":"Nov 17 12:00"},{"filename":"ls-alh.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1567,"date":"Oct 31 08:07"},{"filename":"ls-glob.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":66907,"date":"Feb 19 07:07"},{"filename":"ls-glob.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":13721,"date":"Feb 19 07:07"},{"filename":"ls-l-newlines.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1176,"date":"Feb 27 11:25"},{"filename":"ls-l-newlines.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":576,"date":"Feb 27 11:25"},{"filename":"ls-lR-newlines.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2089,"date":"Feb 27 11:25"},{"filename":"ls-lR-newlines.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":984,"date":"Feb 27 11:25"},{"filename":"ls-newlines.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":498,"date":"Feb 27 11:25"},{"filename":"ls-newlines.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":260,"date":"Feb 27 11:25"},{"filename":"ls.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":622,"date":"Nov 17 12:00"},{"filename":"ls.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":162,"date":"Oct 31 08:07"},{"filename":"lsblk-allcols.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":11397,"date":"Nov 17 12:00"},{"filename":"lsblk-allcols.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":7364,"date":"Nov 17 12:00"},{"filename":"lsblk.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2114,"date":"Nov 17 12:00"},{"filename":"lsblk.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":812,"date":"Oct 31 08:07"},{"filename":"lsmod.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":6744,"date":"Nov 17 12:00"},{"filename":"lsmod.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4251,"date":"Oct 31 08:07"},{"filename":"lsof-sudo.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":526695,"date":"Nov 17 12:00"},{"filename":"lsof-sudo.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":342863,"date":"Oct 31 08:07"},{"filename":"lsof.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":194044,"date":"Nov 17 12:00"},{"filename":"lsof.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":132043,"date":"Oct 31 08:07"},{"filename":"mount.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":6547,"date":"Nov 17 12:00"},{"filename":"mount.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3708,"date":"Oct 31 08:07"},{"filename":"netstat-l.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":5079,"date":"Nov 17 12:00"},{"filename":"netstat-l.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2606,"date":"Oct 31 08:07"},{"filename":"netstat-p.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":14711,"date":"Nov 17 12:00"},{"filename":"netstat-p.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":8706,"date":"Oct 31 08:07"},{"filename":"netstat-sudo-aeep.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":22957,"date":"Nov 17 12:00"},{"filename":"netstat-sudo-aeep.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":12016,"date":"Nov 17 12:00"},{"filename":"netstat-sudo-lnp.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":6259,"date":"Nov 17 12:00"},{"filename":"netstat-sudo-lnp.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":3236,"date":"Oct 31 08:07"},{"filename":"netstat.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":12550,"date":"Nov 17 12:00"},{"filename":"netstat.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":6711,"date":"Oct 31 08:07"},{"filename":"passwd.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4116,"date":"Mar 3 11:47"},{"filename":"passwd.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1565,"date":"Mar 3 11:47"},{"filename":"pip-list-legacy.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2638,"date":"Dec 17 12:12"},{"filename":"pip-list-legacy.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1041,"date":"Dec 17 12:12"},{"filename":"pip-list.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2638,"date":"Dec 17 12:12"},{"filename":"pip-list.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2360,"date":"Dec 17 12:12"},{"filename":"pip-show.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":874,"date":"Dec 17 12:12"},{"filename":"pip-show.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":730,"date":"Dec 17 12:12"},{"filename":"ps-axu.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":31390,"date":"Nov 17 12:00"},{"filename":"ps-axu.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":14127,"date":"Oct 31 08:07"},{"filename":"ps-ef.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":21583,"date":"Nov 17 12:00"},{"filename":"ps-ef.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":11355,"date":"Oct 31 08:07"},{"filename":"route-vn.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":447,"date":"Nov 17 12:00"},{"filename":"route-vn.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":336,"date":"Oct 31 08:07"},{"filename":"route.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":439,"date":"Nov 17 12:00"},{"filename":"route.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":336,"date":"Oct 31 08:07"},{"filename":"shadow.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4330,"date":"Mar 3 11:47"},{"filename":"shadow.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":939,"date":"Mar 3 11:47"},{"filename":"ss-sudo-a.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":23277,"date":"Nov 17 12:00"},{"filename":"ss-sudo-a.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":25599,"date":"Nov 17 12:00"},{"filename":"stat.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":73147,"date":"Nov 17 12:00"},{"filename":"stat.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":60023,"date":"Nov 17 12:00"},{"filename":"systemctl-lj.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":270,"date":"Nov 17 12:00"},{"filename":"systemctl-lj.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":244,"date":"Nov 17 12:00"},{"filename":"systemctl-ls.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2431,"date":"Nov 17 12:00"},{"filename":"systemctl-ls.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":2072,"date":"Nov 17 12:00"},{"filename":"systemctl-luf.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":18756,"date":"Nov 17 12:00"},{"filename":"systemctl-luf.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":17734,"date":"Nov 17 12:00"},{"filename":"systemctl.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":47895,"date":"Nov 17 12:00"},{"filename":"systemctl.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":76059,"date":"Nov 17 12:00"},{"filename":"uname-a.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":268,"date":"Nov 17 12:00"},{"filename":"uname-a.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":114,"date":"Oct 31 08:07"},{"filename":"uptime.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":109,"date":"Nov 17 12:00"},{"filename":"uptime.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":70,"date":"Oct 31 08:07"},{"filename":"w.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":292,"date":"Nov 17 12:00"},{"filename":"w.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":274,"date":"Oct 31 08:07"},{"filename":"who-a.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":452,"date":"Mar 3 11:47"},{"filename":"who-a.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":355,"date":"Mar 3 11:47"},{"filename":"who.json","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":155,"date":"Mar 3 11:47"},{"filename":"who.out","parent":"./jc/tests/fixtures/ubuntu-18.04","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":140,"date":"Mar 3 11:47"},{"filename":"LICENSE","parent":"./jtbl","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1069,"date":"Mar 5 09:18"},{"filename":"README.md","parent":"./jtbl","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":7644,"date":"Mar 6 08:41"},{"filename":"_config.yml","parent":"./jtbl","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":26,"date":"Mar 5 16:16"},{"filename":"build","parent":"./jtbl","flags":"drwxr-xr-x","links":4,"owner":"kbrazil","group":"staff","size":128,"date":"Mar 5 11:45"},{"filename":"build-package.sh","parent":"./jtbl","flags":"-rwxrwxrwx","links":1,"owner":"kbrazil","group":"staff","size":127,"date":"Oct 15 14:55"},{"filename":"changelog.txt","parent":"./jtbl","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":71,"date":"Mar 6 10:53"},{"filename":"dist","parent":"./jtbl","flags":"drwxr-xr-x","links":5,"owner":"kbrazil","group":"staff","size":160,"date":"Mar 6 10:54"},{"filename":"install.sh","parent":"./jtbl","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":46,"date":"Nov 17 12:00"},{"filename":"jtbl","parent":"./jtbl","flags":"drwxr-xr-x","links":5,"owner":"kbrazil","group":"staff","size":160,"date":"Mar 5 12:52"},{"filename":"jtbl.egg-info","parent":"./jtbl","flags":"drwxr-xr-x","links":8,"owner":"kbrazil","group":"staff","size":256,"date":"Mar 6 10:54"},{"filename":"pypi-upload.sh","parent":"./jtbl","flags":"-rwxr-xr-x@","links":1,"owner":"kbrazil","group":"staff","size":31,"date":"Oct 17 14:59"},{"filename":"setup.py","parent":"./jtbl","flags":"-rwxr-xr-x","links":1,"owner":"kbrazil","group":"staff","size":910,"date":"Mar 6 10:47"},{"filename":"tests","parent":"./jtbl","flags":"drwxr-xr-x","links":4,"owner":"kbrazil","group":"staff","size":128,"date":"Mar 5 13:13"},{"filename":"bdist.macosx-10.14-x86_64","parent":"./jtbl/build","flags":"drwxr-xr-x","links":2,"owner":"kbrazil","group":"staff","size":64,"date":"Mar 6 10:54"},{"filename":"lib","parent":"./jtbl/build","flags":"drwxr-xr-x","links":3,"owner":"kbrazil","group":"staff","size":96,"date":"Mar 5 11:45"},{"filename":"jtbl","parent":"./jtbl/build/lib","flags":"drwxr-xr-x","links":4,"owner":"kbrazil","group":"staff","size":128,"date":"Mar 6 10:54"},{"filename":"__init__.py","parent":"./jtbl/build/lib/jtbl","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":0,"date":"Mar 5 11:15"},{"filename":"cli.py","parent":"./jtbl/build/lib/jtbl","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1424,"date":"Mar 6 10:37"},{"filename":"jtbl-0.1.2-py3-none-any.whl","parent":"./jtbl/dist","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":5544,"date":"Mar 6 10:54"},{"filename":"jtbl-0.1.2.tar.gz","parent":"./jtbl/dist","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":4868,"date":"Mar 6 10:54"},{"filename":"__init__.py","parent":"./jtbl/jtbl","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":0,"date":"Mar 5 11:15"},{"filename":"__pycache__","parent":"./jtbl/jtbl","flags":"drwxr-xr-x","links":4,"owner":"kbrazil","group":"staff","size":128,"date":"Mar 6 15:02"},{"filename":"cli.py","parent":"./jtbl/jtbl","flags":"-rwxr-xr-x@","links":1,"owner":"kbrazil","group":"staff","size":1438,"date":"Mar 6 15:02"},{"filename":"__init__.cpython-37.pyc","parent":"./jtbl/jtbl/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":127,"date":"Mar 5 12:52"},{"filename":"cli.cpython-37.pyc","parent":"./jtbl/jtbl/__pycache__","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":988,"date":"Mar 6 15:02"},{"filename":"PKG-INFO","parent":"./jtbl/jtbl.egg-info","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":9569,"date":"Mar 6 10:54"},{"filename":"SOURCES.txt","parent":"./jtbl/jtbl.egg-info","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":217,"date":"Mar 6 10:54"},{"filename":"dependency_links.txt","parent":"./jtbl/jtbl.egg-info","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1,"date":"Mar 6 10:54"},{"filename":"entry_points.txt","parent":"./jtbl/jtbl.egg-info","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":40,"date":"Mar 6 10:54"},{"filename":"requires.txt","parent":"./jtbl/jtbl.egg-info","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":16,"date":"Mar 6 10:54"},{"filename":"top_level.txt","parent":"./jtbl/jtbl.egg-info","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":5,"date":"Mar 6 10:54"},{"filename":"fixtures","parent":"./jtbl/tests","flags":"drwxr-xr-x","links":6,"owner":"kbrazil","group":"staff","size":192,"date":"Mar 6 10:41"},{"filename":"deepnest.json","parent":"./jtbl/tests/fixtures","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":271,"date":"Mar 6 10:41"},{"filename":"ifconfig-jq.jsonl","parent":"./jtbl/tests/fixtures","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1575,"date":"Mar 5 15:42"},{"filename":"jsonlines.jsonl","parent":"./jtbl/tests/fixtures","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":300,"date":"Mar 5 12:28"},{"filename":"LICENSE","parent":"./microsim","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":1069,"date":"Aug 9 2019"},{"filename":"README.md","parent":"./microsim","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":11913,"date":"Oct 1 13:22"},{"filename":"_config.yml","parent":"./microsim","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":26,"date":"Dec 10 08:08"},{"filename":"k8s_deployments","parent":"./microsim","flags":"drwxr-xr-x","links":9,"owner":"kbrazil","group":"staff","size":288,"date":"Dec 10 08:02"},{"filename":"microsimclient","parent":"./microsim","flags":"drwxr-xr-x","links":7,"owner":"kbrazil","group":"staff","size":224,"date":"Oct 1 13:22"},{"filename":"microsimserver","parent":"./microsim","flags":"drwxr-xr-x","links":7,"owner":"kbrazil","group":"staff","size":224,"date":"Oct 1 13:22"},{"filename":"README.md","parent":"./microsim/k8s_deployments","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":7743,"date":"Aug 28 2019"},{"filename":"blog","parent":"./microsim/k8s_deployments","flags":"drwxr-xr-x","links":14,"owner":"kbrazil","group":"staff","size":448,"date":"Jan 28 13:52"},{"filename":"crashing_service.yaml","parent":"./microsim/k8s_deployments","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":4111,"date":"Aug 29 2019"},{"filename":"images","parent":"./microsim/k8s_deployments","flags":"drwxr-xr-x","links":6,"owner":"kbrazil","group":"staff","size":192,"date":"Aug 27 2019"},{"filename":"monitoring.yaml","parent":"./microsim/k8s_deployments","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":4051,"date":"Aug 29 2019"},{"filename":"simple.yaml","parent":"./microsim/k8s_deployments","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":1947,"date":"Aug 29 2019"},{"filename":"istio-ingress.yaml","parent":"./microsim/k8s_deployments/blog","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":585,"date":"Jan 24 14:29"},{"filename":"istio-mtls-permissive.yaml","parent":"./microsim/k8s_deployments/blog","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":358,"date":"Jan 24 14:28"},{"filename":"istio-mtls-strict.yaml","parent":"./microsim/k8s_deployments/blog","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":539,"date":"Jan 24 14:28"},{"filename":"istio-rbac-policy-final.yaml","parent":"./microsim/k8s_deployments/blog","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":995,"date":"Jan 29 06:46"},{"filename":"istio-rbac-policy-test.yaml","parent":"./microsim/k8s_deployments/blog","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":456,"date":"Jan 24 14:29"},{"filename":"istio-sc.yaml","parent":"./microsim/k8s_deployments/blog","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":285,"date":"Jan 28 14:36"},{"filename":"istio-sidecar.yaml","parent":"./microsim/k8s_deployments/blog","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":3640,"date":"Jan 29 06:47"},{"filename":"servicelayer-network-policy.yaml","parent":"./microsim/k8s_deployments/blog","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":1659,"date":"Dec 18 20:43"},{"filename":"servicelayer.yaml","parent":"./microsim/k8s_deployments/blog","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":4195,"date":"Dec 18 16:02"},{"filename":"sidecar-network-policy.yaml","parent":"./microsim/k8s_deployments/blog","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":639,"date":"Jan 9 16:07"},{"filename":"sidecar.yaml","parent":"./microsim/k8s_deployments/blog","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":2716,"date":"Jan 9 14:55"},{"filename":"simple.yaml","parent":"./microsim/k8s_deployments/blog","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":2072,"date":"Dec 10 06:23"},{"filename":"graphite-crashing.png","parent":"./microsim/k8s_deployments/images","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":76552,"date":"Aug 27 2019"},{"filename":"graphite.png","parent":"./microsim/k8s_deployments/images","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":476438,"date":"Aug 22 2019"},{"filename":"monitoring.png","parent":"./microsim/k8s_deployments/images","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":90461,"date":"Aug 22 2019"},{"filename":"simple.png","parent":"./microsim/k8s_deployments/images","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":97333,"date":"Aug 18 2019"},{"filename":"Dockerfile","parent":"./microsim/microsimclient","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":939,"date":"Aug 27 2019"},{"filename":"changelog.txt","parent":"./microsim/microsimclient","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":827,"date":"Oct 1 13:22"},{"filename":"dockerhub.sh","parent":"./microsim/microsimclient","flags":"-rwxr-xr-x@","links":1,"owner":"kbrazil","group":"staff","size":263,"date":"Oct 1 12:09"},{"filename":"microsimclient.py","parent":"./microsim/microsimclient","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":18140,"date":"Oct 1 13:22"},{"filename":"microsimclientmac.py","parent":"./microsim/microsimclient","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":18215,"date":"Sep 30 16:42"},{"filename":"Dockerfile","parent":"./microsim/microsimserver","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":528,"date":"Aug 27 2019"},{"filename":"changelog.txt","parent":"./microsim/microsimserver","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":380,"date":"Oct 1 13:22"},{"filename":"dockerhub.sh","parent":"./microsim/microsimserver","flags":"-rwxr-xr-x@","links":1,"owner":"kbrazil","group":"staff","size":263,"date":"Oct 1 12:09"},{"filename":"microsimserver.py","parent":"./microsim/microsimserver","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":10538,"date":"Oct 1 13:22"},{"filename":"microsimservermac.py","parent":"./microsim/microsimserver","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":10688,"date":"Sep 30 16:47"},{"filename":"Dockerfile","parent":"./microtest","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":229,"date":"Aug 29 2019"},{"filename":"LICENSE","parent":"./microtest","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":1069,"date":"Aug 9 2019"},{"filename":"README.md","parent":"./microtest","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":1076,"date":"Aug 29 2019"},{"filename":"changelog.txt","parent":"./microtest","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":146,"date":"Aug 29 2019"},{"filename":"dockerhub.sh","parent":"./microtest","flags":"-rwxr-xr-x@","links":1,"owner":"kbrazil","group":"staff","size":233,"date":"Aug 29 2019"},{"filename":"microtest-k8s.yaml","parent":"./microtest","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":591,"date":"Aug 29 2019"},{"filename":"microtest.py","parent":"./microtest","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":1274,"date":"Aug 29 2019"},{"filename":"microtestclient.sh","parent":"./microtest","flags":"-rwxr-xr-x@","links":1,"owner":"kbrazil","group":"staff","size":428,"date":"Aug 29 2019"},{"filename":"microtestmac.py","parent":"./microtest","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":1343,"date":"Aug 29 2019"},{"filename":"html","parent":"./trafficgen - work in progress","flags":"drwxrwxrwx","links":5,"owner":"kbrazil","group":"staff","size":160,"date":"Aug 5 2019"},{"filename":"trafficgen.sh","parent":"./trafficgen - work in progress","flags":"-rwxrwxrwx@","links":1,"owner":"kbrazil","group":"staff","size":3351,"date":"Aug 5 2019"},{"filename":"trafficgen.test.sh","parent":"./trafficgen - work in progress","flags":"-rwxrwxrwx@","links":1,"owner":"kbrazil","group":"staff","size":3996,"date":"Aug 5 2019"},{"filename":"trafficgen2.sh","parent":"./trafficgen - work in progress","flags":"-rwxrwxrwx@","links":1,"owner":"kbrazil","group":"staff","size":5844,"date":"Aug 5 2019"},{"filename":"trafficgen3.sh","parent":"./trafficgen - work in progress","flags":"-rwxrwxrwx@","links":1,"owner":"kbrazil","group":"staff","size":4430,"date":"Aug 13 2019"},{"filename":"passwd","parent":"./trafficgen - work in progress/html","flags":"-rwxrwxrwx@","links":1,"owner":"kbrazil","group":"staff","size":466,"date":"Dec 28 2016"},{"filename":"troll-face.jpg","parent":"./trafficgen - work in progress/html","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":62063,"date":"Aug 5 2019"},{"filename":"LICENSE","parent":"./utils","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":1069,"date":"Aug 9 2019"},{"filename":"README.md","parent":"./utils","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":1464,"date":"Aug 14 2019"},{"filename":"resizeterm.sh","parent":"./utils","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":354,"date":"Aug 14 2019"},{"filename":"vmserial.sh","parent":"./utils","flags":"-rw-r--r--@","links":1,"owner":"kbrazil","group":"staff","size":786,"date":"Aug 15 2019"},{"filename":"wwwhostip.py","parent":"./utils","flags":"-rw-r--r--","links":1,"owner":"kbrazil","group":"staff","size":726,"date":"Aug 9 2019"}] jc-1.17.3/tests/fixtures/osx-10.14.6/ls-lR-empty-folder.json000066400000000000000000012663331415226333200231400ustar00rootroot00000000000000[{"filename": "ModSecurity-envoy", "flags": "drwxr-xr-x", "links": 18, "owner": "kbrazil", "group": "staff", "size": 576, "date": "Jan 3 14:46"}, {"filename": "clover", "flags": "drwxr-xr-x", "links": 3, "owner": "kbrazil", "group": "staff", "size": 96, "date": "Jan 28 09:00"}, {"filename": "envoyonsteroid", "flags": "drwxr-xr-x", "links": 10, "owner": "kbrazil", "group": "staff", "size": 320, "date": "Dec 23 10:49"}, {"filename": "jc", "flags": "drwxr-xr-x", "links": 24, "owner": "kbrazil", "group": "staff", "size": 768, "date": "Mar 5 08:28"}, {"filename": "jtbl", "flags": "drwxr-xr-x", "links": 18, "owner": "kbrazil", "group": "staff", "size": 576, "date": "Mar 6 10:54"}, {"filename": "microsim", "flags": "drwxr-xr-x", "links": 11, "owner": "kbrazil", "group": "staff", "size": 352, "date": "Dec 10 08:08"}, {"filename": "microtest", "flags": "drwxr-xr-x", "links": 13, "owner": "kbrazil", "group": "staff", "size": 416, "date": "Aug 29 2019"}, {"filename": "trafficgen - work in progress", "flags": "drwxrwxrwx", "links": 8, "owner": "kbrazil", "group": "staff", "size": 256, "date": "Aug 9 2019"}, {"filename": "utils", "flags": "drwxr-xr-x", "links": 8, "owner": "kbrazil", "group": "staff", "size": 256, "date": "Aug 13 2019"}, {"filename": "BUILD", "parent": "./ModSecurity-envoy", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 904, "date": "Jan 3 14:46"}, {"filename": "LICENSE", "parent": "./ModSecurity-envoy", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1068, "date": "Jan 3 14:46"}, {"filename": "README.md", "parent": "./ModSecurity-envoy", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 7098, "date": "Jan 3 14:46"}, {"filename": "WORKSPACE", "parent": "./ModSecurity-envoy", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 955, "date": "Jan 3 14:46"}, {"filename": "ci", "parent": "./ModSecurity-envoy", "flags": "drwxr-xr-x", "links": 11, "owner": "kbrazil", "group": "staff", "size": 352, "date": "Jan 3 14:46"}, {"filename": "conf", "parent": "./ModSecurity-envoy", "flags": "drwxr-xr-x", "links": 8, "owner": "kbrazil", "group": "staff", "size": 256, "date": "Jan 3 14:46"}, {"filename": "envoy", "parent": "./ModSecurity-envoy", "flags": "drwxr-xr-x", "links": 2, "owner": "kbrazil", "group": "staff", "size": 64, "date": "Jan 3 14:46"}, {"filename": "http-filter-modsecurity", "parent": "./ModSecurity-envoy", "flags": "drwxr-xr-x", "links": 14, "owner": "kbrazil", "group": "staff", "size": 448, "date": "Jan 3 14:46"}, {"filename": "modsecurity", "parent": "./ModSecurity-envoy", "flags": "drwxr-xr-x", "links": 4, "owner": "kbrazil", "group": "staff", "size": 128, "date": "Jan 3 14:46"}, {"filename": "Dockerfile-envoy-image", "parent": "./ModSecurity-envoy/ci", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1088, "date": "Jan 3 14:46"}, {"filename": "README.md", "parent": "./ModSecurity-envoy/ci", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1274, "date": "Jan 3 14:46"}, {"filename": "WORKSPACE.filter.example", "parent": "./ModSecurity-envoy/ci", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 703, "date": "Jan 3 14:46"}, {"filename": "build_container", "parent": "./ModSecurity-envoy/ci", "flags": "drwxr-xr-x", "links": 6, "owner": "kbrazil", "group": "staff", "size": 192, "date": "Jan 3 14:46"}, {"filename": "do_ci.sh", "parent": "./ModSecurity-envoy/ci", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 653, "date": "Jan 3 14:46"}, {"filename": "do_envoy_ci.sh", "parent": "./ModSecurity-envoy/ci", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 358, "date": "Jan 3 14:46"}, {"filename": "docker-entrypoint.sh", "parent": "./ModSecurity-envoy/ci", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 325, "date": "Jan 3 14:46"}, {"filename": "docker_build.sh", "parent": "./ModSecurity-envoy/ci", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 275, "date": "Jan 3 14:46"}, {"filename": "run_envoy_docker.sh", "parent": "./ModSecurity-envoy/ci", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1556, "date": "Jan 3 14:46"}, {"filename": "Dockerfile-centos", "parent": "./ModSecurity-envoy/ci/build_container", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 285, "date": "Jan 3 14:46"}, {"filename": "Dockerfile-ubuntu", "parent": "./ModSecurity-envoy/ci/build_container", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 214, "date": "Jan 3 14:46"}, {"filename": "build_container_modsecurity_ubuntu.sh", "parent": "./ModSecurity-envoy/ci/build_container", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 318, "date": "Jan 3 14:46"}, {"filename": "docker_build.sh", "parent": "./ModSecurity-envoy/ci/build_container", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 629, "date": "Jan 3 14:46"}, {"filename": "envoy-modsecurity-example-lds.yaml", "parent": "./ModSecurity-envoy/conf", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 495, "date": "Jan 3 14:46"}, {"filename": "envoy-modsecurity-example.yaml", "parent": "./ModSecurity-envoy/conf", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1350, "date": "Jan 3 14:46"}, {"filename": "lds.yaml", "parent": "./ModSecurity-envoy/conf", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1683, "date": "Jan 3 14:46"}, {"filename": "modsecurity.conf", "parent": "./ModSecurity-envoy/conf", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 564, "date": "Jan 3 14:46"}, {"filename": "modsecurity.v3.0.3.conf", "parent": "./ModSecurity-envoy/conf", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 10211, "date": "Jan 3 14:46"}, {"filename": "unicode.mappin", "parent": "./ModSecurity-envoy/conf", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 53146, "date": "Jan 3 14:46"}, {"filename": "BUILD", "parent": "./ModSecurity-envoy/http-filter-modsecurity", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1518, "date": "Jan 3 14:46"}, {"filename": "README.md", "parent": "./ModSecurity-envoy/http-filter-modsecurity", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2577, "date": "Jan 3 14:46"}, {"filename": "http_filter.cc", "parent": "./ModSecurity-envoy/http-filter-modsecurity", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 17224, "date": "Jan 3 14:46"}, {"filename": "http_filter.h", "parent": "./ModSecurity-envoy/http-filter-modsecurity", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4673, "date": "Jan 3 14:46"}, {"filename": "http_filter.proto", "parent": "./ModSecurity-envoy/http-filter-modsecurity", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2420, "date": "Jan 3 14:46"}, {"filename": "http_filter_config.cc", "parent": "./ModSecurity-envoy/http-filter-modsecurity", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2673, "date": "Jan 3 14:46"}, {"filename": "http_filter_integration_test.cc", "parent": "./ModSecurity-envoy/http-filter-modsecurity", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1717, "date": "Jan 3 14:46"}, {"filename": "utility.cc", "parent": "./ModSecurity-envoy/http-filter-modsecurity", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2865, "date": "Jan 3 14:46"}, {"filename": "utility.h", "parent": "./ModSecurity-envoy/http-filter-modsecurity", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 401, "date": "Jan 3 14:46"}, {"filename": "webhook_fetcher.cc", "parent": "./ModSecurity-envoy/http-filter-modsecurity", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2968, "date": "Jan 3 14:46"}, {"filename": "webhook_fetcher.h", "parent": "./ModSecurity-envoy/http-filter-modsecurity", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2306, "date": "Jan 3 14:46"}, {"filename": "well_known_names.h", "parent": "./ModSecurity-envoy/http-filter-modsecurity", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1139, "date": "Jan 3 14:46"}, {"filename": "include", "link_to": "../../ModSecurity/headers", "parent": "./ModSecurity-envoy/modsecurity", "flags": "lrwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 25, "date": "Jan 3 14:46"}, {"filename": "libmodsecurity.a", "link_to": "../../ModSecurity/src/.libs/libmodsecurity.a", "parent": "./ModSecurity-envoy/modsecurity", "flags": "lrwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 44, "date": "Jan 3 14:46"}, {"filename": "clover", "parent": "./clover", "flags": "drwxr-xr-x", "links": 20, "owner": "kbrazil", "group": "staff", "size": 640, "date": "Jan 28 09:01"}, {"filename": "INFO.yaml", "parent": "./clover/clover", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1165, "date": "Jan 28 09:01"}, {"filename": "Pipfile", "parent": "./clover/clover", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 200, "date": "Jan 28 09:01"}, {"filename": "Pipfile.lock", "parent": "./clover/clover", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 11456, "date": "Jan 28 09:01"}, {"filename": "ci", "parent": "./clover/clover", "flags": "drwxr-xr-x", "links": 6, "owner": "kbrazil", "group": "staff", "size": 192, "date": "Jan 28 09:01"}, {"filename": "clover", "parent": "./clover/clover", "flags": "drwxr-xr-x", "links": 17, "owner": "kbrazil", "group": "staff", "size": 544, "date": "Jan 28 09:01"}, {"filename": "docker", "parent": "./clover/clover", "flags": "drwxr-xr-x", "links": 5, "owner": "kbrazil", "group": "staff", "size": 160, "date": "Jan 28 09:01"}, {"filename": "docs", "parent": "./clover/clover", "flags": "drwxr-xr-x", "links": 8, "owner": "kbrazil", "group": "staff", "size": 256, "date": "Jan 28 09:01"}, {"filename": "download", "parent": "./clover/clover", "flags": "drwxr-xr-x", "links": 3, "owner": "kbrazil", "group": "staff", "size": 96, "date": "Jan 28 09:01"}, {"filename": "edge", "parent": "./clover/clover", "flags": "drwxr-xr-x", "links": 3, "owner": "kbrazil", "group": "staff", "size": 96, "date": "Jan 28 09:01"}, {"filename": "requirements.txt", "parent": "./clover/clover", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 301, "date": "Jan 28 09:01"}, {"filename": "samples", "parent": "./clover/clover", "flags": "drwxr-xr-x", "links": 4, "owner": "kbrazil", "group": "staff", "size": 128, "date": "Jan 28 09:01"}, {"filename": "setup.cfg", "parent": "./clover/clover", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 221, "date": "Jan 28 09:01"}, {"filename": "setup.py", "parent": "./clover/clover", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1030, "date": "Jan 28 09:01"}, {"filename": "tox.ini", "parent": "./clover/clover", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 481, "date": "Jan 28 09:01"}, {"filename": "xci-k8s-setup.sh", "parent": "./clover/clover", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1131, "date": "Jan 28 09:01"}, {"filename": "deploy.sh", "parent": "./clover/clover/ci", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3148, "date": "Jan 28 09:01"}, {"filename": "sdc_setup.sh", "parent": "./clover/clover/ci", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 671, "date": "Jan 28 09:01"}, {"filename": "upload.sh", "parent": "./clover/clover/ci", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 390, "date": "Jan 28 09:01"}, {"filename": "verify.sh", "parent": "./clover/clover/ci", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 335, "date": "Jan 28 09:01"}, {"filename": "__init__.py", "parent": "./clover/clover/clover", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 0, "date": "Jan 28 09:01"}, {"filename": "cloverctl", "parent": "./clover/clover/clover", "flags": "drwxr-xr-x", "links": 4, "owner": "kbrazil", "group": "staff", "size": 128, "date": "Jan 28 09:01"}, {"filename": "clovisor", "parent": "./clover/clover/clover", "flags": "drwxr-xr-x", "links": 10, "owner": "kbrazil", "group": "staff", "size": 320, "date": "Jan 28 09:01"}, {"filename": "collector", "parent": "./clover/clover/clover", "flags": "drwxr-xr-x", "links": 9, "owner": "kbrazil", "group": "staff", "size": 288, "date": "Jan 28 09:01"}, {"filename": "controller", "parent": "./clover/clover/clover", "flags": "drwxr-xr-x", "links": 8, "owner": "kbrazil", "group": "staff", "size": 256, "date": "Jan 28 09:01"}, {"filename": "functest", "parent": "./clover/clover/clover", "flags": "drwxr-xr-x", "links": 4, "owner": "kbrazil", "group": "staff", "size": 128, "date": "Jan 28 09:01"}, {"filename": "logging", "parent": "./clover/clover/clover", "flags": "drwxr-xr-x", "links": 7, "owner": "kbrazil", "group": "staff", "size": 224, "date": "Jan 28 09:01"}, {"filename": "monitoring", "parent": "./clover/clover/clover", "flags": "drwxr-xr-x", "links": 5, "owner": "kbrazil", "group": "staff", "size": 160, "date": "Jan 28 09:01"}, {"filename": "orchestration", "parent": "./clover/clover/clover", "flags": "drwxr-xr-x", "links": 6, "owner": "kbrazil", "group": "staff", "size": 192, "date": "Jan 28 09:01"}, {"filename": "servicemesh", "parent": "./clover/clover/clover", "flags": "drwxr-xr-x", "links": 5, "owner": "kbrazil", "group": "staff", "size": 160, "date": "Jan 28 09:01"}, {"filename": "spark", "parent": "./clover/clover/clover", "flags": "drwxr-xr-x", "links": 6, "owner": "kbrazil", "group": "staff", "size": 192, "date": "Jan 28 09:01"}, {"filename": "spinnaker", "parent": "./clover/clover/clover", "flags": "drwxr-xr-x", "links": 7, "owner": "kbrazil", "group": "staff", "size": 224, "date": "Jan 28 09:01"}, {"filename": "test", "parent": "./clover/clover/clover", "flags": "drwxr-xr-x", "links": 8, "owner": "kbrazil", "group": "staff", "size": 256, "date": "Jan 28 09:01"}, {"filename": "tools", "parent": "./clover/clover/clover", "flags": "drwxr-xr-x", "links": 7, "owner": "kbrazil", "group": "staff", "size": 224, "date": "Jan 28 09:01"}, {"filename": "tracing", "parent": "./clover/clover/clover", "flags": "drwxr-xr-x", "links": 6, "owner": "kbrazil", "group": "staff", "size": 192, "date": "Jan 28 09:01"}, {"filename": "build.sh", "parent": "./clover/clover/clover/cloverctl", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 932, "date": "Jan 28 09:01"}, {"filename": "src", "parent": "./clover/clover/clover/cloverctl", "flags": "drwxr-xr-x", "links": 5, "owner": "kbrazil", "group": "staff", "size": 160, "date": "Jan 28 09:01"}, {"filename": "cloverctl", "parent": "./clover/clover/clover/cloverctl/src", "flags": "drwxr-xr-x", "links": 5, "owner": "kbrazil", "group": "staff", "size": 160, "date": "Jan 28 09:01"}, {"filename": "cloverinject", "parent": "./clover/clover/clover/cloverctl/src", "flags": "drwxr-xr-x", "links": 3, "owner": "kbrazil", "group": "staff", "size": 96, "date": "Jan 28 09:01"}, {"filename": "cloverkube", "parent": "./clover/clover/clover/cloverctl/src", "flags": "drwxr-xr-x", "links": 3, "owner": "kbrazil", "group": "staff", "size": 96, "date": "Jan 28 09:01"}, {"filename": "cmd", "parent": "./clover/clover/clover/cloverctl/src/cloverctl", "flags": "drwxr-xr-x", "links": 34, "owner": "kbrazil", "group": "staff", "size": 1088, "date": "Jan 28 09:01"}, {"filename": "main.go", "parent": "./clover/clover/clover/cloverctl/src/cloverctl", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 358, "date": "Jan 28 09:01"}, {"filename": "yaml", "parent": "./clover/clover/clover/cloverctl/src/cloverctl", "flags": "drwxr-xr-x", "links": 17, "owner": "kbrazil", "group": "staff", "size": 544, "date": "Jan 28 09:01"}, {"filename": "clear.go", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/cmd", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 608, "date": "Jan 28 09:01"}, {"filename": "clear_visibility.go", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/cmd", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 925, "date": "Jan 28 09:01"}, {"filename": "create.go", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/cmd", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 629, "date": "Jan 28 09:01"}, {"filename": "create_docker_registry.go", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/cmd", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1572, "date": "Jan 28 09:01"}, {"filename": "create_idsrules.go", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/cmd", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1522, "date": "Jan 28 09:01"}, {"filename": "create_kubernetes.go", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/cmd", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2379, "date": "Jan 28 09:01"}, {"filename": "create_system.go", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/cmd", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 7878, "date": "Jan 28 09:01"}, {"filename": "create_testplan.go", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/cmd", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1505, "date": "Jan 28 09:01"}, {"filename": "delete.go", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/cmd", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 626, "date": "Jan 28 09:01"}, {"filename": "delete_docker_registry.go", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/cmd", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1480, "date": "Jan 28 09:01"}, {"filename": "delete_kubernetes.go", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/cmd", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1457, "date": "Jan 28 09:01"}, {"filename": "delete_system.go", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/cmd", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 5991, "date": "Jan 28 09:01"}, {"filename": "get.go", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/cmd", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 627, "date": "Jan 28 09:01"}, {"filename": "get_docker_registry.go", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/cmd", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1497, "date": "Jan 28 09:01"}, {"filename": "get_kubernetes.go", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/cmd", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1484, "date": "Jan 28 09:01"}, {"filename": "get_services.go", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/cmd", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 622, "date": "Jan 28 09:01"}, {"filename": "get_testresult.go", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/cmd", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2057, "date": "Jan 28 09:01"}, {"filename": "get_visibility.go", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/cmd", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1694, "date": "Jan 28 09:01"}, {"filename": "init.go", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/cmd", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 608, "date": "Jan 28 09:01"}, {"filename": "init_visibility.go", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/cmd", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 943, "date": "Jan 28 09:01"}, {"filename": "provider.go", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/cmd", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1136, "date": "Jan 28 09:01"}, {"filename": "root.go", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/cmd", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3638, "date": "Jan 28 09:01"}, {"filename": "set.go", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/cmd", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 637, "date": "Jan 28 09:01"}, {"filename": "set_nginx.go", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/cmd", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2007, "date": "Jan 28 09:01"}, {"filename": "set_visibility.go", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/cmd", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1556, "date": "Jan 28 09:01"}, {"filename": "start.go", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/cmd", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 607, "date": "Jan 28 09:01"}, {"filename": "start_ids.go", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/cmd", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 938, "date": "Jan 28 09:01"}, {"filename": "start_testplan.go", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/cmd", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1876, "date": "Jan 28 09:01"}, {"filename": "start_visibility.go", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/cmd", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1713, "date": "Jan 28 09:01"}, {"filename": "stop.go", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/cmd", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 634, "date": "Jan 28 09:01"}, {"filename": "stop_ids.go", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/cmd", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 933, "date": "Jan 28 09:01"}, {"filename": "stop_visibility.go", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/cmd", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 931, "date": "Jan 28 09:01"}, {"filename": "clovisor", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/yaml", "flags": "drwxr-xr-x", "links": 5, "owner": "kbrazil", "group": "staff", "size": 160, "date": "Jan 28 09:01"}, {"filename": "collector", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/yaml", "flags": "drwxr-xr-x", "links": 4, "owner": "kbrazil", "group": "staff", "size": 128, "date": "Jan 28 09:01"}, {"filename": "controller", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/yaml", "flags": "drwxr-xr-x", "links": 6, "owner": "kbrazil", "group": "staff", "size": 192, "date": "Jan 28 09:01"}, {"filename": "datastore", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/yaml", "flags": "drwxr-xr-x", "links": 6, "owner": "kbrazil", "group": "staff", "size": 192, "date": "Jan 28 09:01"}, {"filename": "idsrule_icmp.yaml", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/yaml", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 129, "date": "Jan 28 09:01"}, {"filename": "idsrule_scan.yaml", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/yaml", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 169, "date": "Jan 28 09:01"}, {"filename": "idsrule_tcp.yaml", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/yaml", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 124, "date": "Jan 28 09:01"}, {"filename": "jmeter", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/yaml", "flags": "drwxr-xr-x", "links": 6, "owner": "kbrazil", "group": "staff", "size": 192, "date": "Jan 28 09:01"}, {"filename": "jmeter_testplan.yaml", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/yaml", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 312, "date": "Jan 28 09:01"}, {"filename": "lbv1.yaml", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/yaml", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 218, "date": "Jan 28 09:01"}, {"filename": "lbv2.yaml", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/yaml", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 185, "date": "Jan 28 09:01"}, {"filename": "server.yaml", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/yaml", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 486, "date": "Jan 28 09:01"}, {"filename": "set_visibility.yaml", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/yaml", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 424, "date": "Jan 28 09:01"}, {"filename": "spark", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/yaml", "flags": "drwxr-xr-x", "links": 6, "owner": "kbrazil", "group": "staff", "size": 192, "date": "Jan 28 09:01"}, {"filename": "start_visibility.yaml", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/yaml", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 110, "date": "Jan 28 09:01"}, {"filename": "clusterrolebinding.yaml", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/yaml/clovisor", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 377, "date": "Jan 28 09:01"}, {"filename": "daemonset.yaml", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/yaml/clovisor", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 560, "date": "Jan 28 09:01"}, {"filename": "serviceaccount.yaml", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/yaml/clovisor", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 89, "date": "Jan 28 09:01"}, {"filename": "deployment.yaml", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/yaml/collector", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 518, "date": "Jan 28 09:01"}, {"filename": "service.yaml", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/yaml/collector", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 350, "date": "Jan 28 09:01"}, {"filename": "deployment.yaml", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/yaml/controller", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 525, "date": "Jan 28 09:01"}, {"filename": "service_internal.yaml", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/yaml/controller", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 359, "date": "Jan 28 09:01"}, {"filename": "service_lb.yaml", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/yaml/controller", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 232, "date": "Jan 28 09:01"}, {"filename": "service_nodeport.yaml", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/yaml/controller", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 262, "date": "Jan 28 09:01"}, {"filename": "cassandra_service.yaml", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/yaml/datastore", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 196, "date": "Jan 28 09:01"}, {"filename": "cassandra_statefulset.yaml", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/yaml/datastore", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1265, "date": "Jan 28 09:01"}, {"filename": "redis_pod.yaml", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/yaml/datastore", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 635, "date": "Jan 28 09:01"}, {"filename": "redis_service.yaml", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/yaml/datastore", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 115, "date": "Jan 28 09:01"}, {"filename": "master_deployment.yaml", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/yaml/jmeter", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 474, "date": "Jan 28 09:01"}, {"filename": "master_service.yaml", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/yaml/jmeter", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 287, "date": "Jan 28 09:01"}, {"filename": "slave_deployment.yaml", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/yaml/jmeter", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 449, "date": "Jan 28 09:01"}, {"filename": "slave_service.yaml", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/yaml/jmeter", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 253, "date": "Jan 28 09:01"}, {"filename": "clusterrolebinding.yaml", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/yaml/spark", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 285, "date": "Jan 28 09:01"}, {"filename": "clusterrolebinding_spark.yaml", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/yaml/spark", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 286, "date": "Jan 28 09:01"}, {"filename": "deployment.yaml", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/yaml/spark", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 328, "date": "Jan 28 09:01"}, {"filename": "serviceaccount.yaml", "parent": "./clover/clover/clover/cloverctl/src/cloverctl/yaml/spark", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 98, "date": "Jan 28 09:01"}, {"filename": "inject.go", "parent": "./clover/clover/clover/cloverctl/src/cloverinject", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4435, "date": "Jan 28 09:01"}, {"filename": "main.go", "parent": "./clover/clover/clover/cloverctl/src/cloverkube", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 15386, "date": "Jan 28 09:01"}, {"filename": "Dockerfile", "parent": "./clover/clover/clover/clovisor", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 487, "date": "Jan 28 09:01"}, {"filename": "bin", "parent": "./clover/clover/clover/clovisor", "flags": "drwxr-xr-x", "links": 3, "owner": "kbrazil", "group": "staff", "size": 96, "date": "Jan 28 09:01"}, {"filename": "build-docker", "parent": "./clover/clover/clover/clovisor", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 616, "date": "Jan 28 09:01"}, {"filename": "build.sh", "parent": "./clover/clover/clover/clovisor", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1499, "date": "Jan 28 09:01"}, {"filename": "clovisor.yaml", "parent": "./clover/clover/clover/clovisor", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1122, "date": "Jan 28 09:01"}, {"filename": "clovisor_main.go", "parent": "./clover/clover/clover/clovisor", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2187, "date": "Jan 28 09:01"}, {"filename": "libclovisor", "parent": "./clover/clover/clover/clovisor", "flags": "drwxr-xr-x", "links": 10, "owner": "kbrazil", "group": "staff", "size": 320, "date": "Jan 28 09:01"}, {"filename": "proto", "parent": "./clover/clover/clover/clovisor", "flags": "drwxr-xr-x", "links": 3, "owner": "kbrazil", "group": "staff", "size": 96, "date": "Jan 28 09:01"}, {"filename": "clovisor", "parent": "./clover/clover/clover/clovisor/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 46419408, "date": "Jan 28 09:01"}, {"filename": "clovisor_bcc.go", "parent": "./clover/clover/clover/clovisor/libclovisor", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 30287, "date": "Jan 28 09:01"}, {"filename": "clovisor_cfg.go", "parent": "./clover/clover/clover/clovisor/libclovisor", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6120, "date": "Jan 28 09:01"}, {"filename": "clovisor_k8s.go", "parent": "./clover/clover/clover/clovisor/libclovisor", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 10727, "date": "Jan 28 09:01"}, {"filename": "ebpf", "parent": "./clover/clover/clover/clovisor/libclovisor", "flags": "drwxr-xr-x", "links": 4, "owner": "kbrazil", "group": "staff", "size": 128, "date": "Jan 28 09:01"}, {"filename": "jaeger-all-in-one-template.yml", "parent": "./clover/clover/clover/clovisor/libclovisor", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3655, "date": "Jan 28 09:01"}, {"filename": "libproto", "parent": "./clover/clover/clover/clovisor/libclovisor", "flags": "drwxr-xr-x", "links": 5, "owner": "kbrazil", "group": "staff", "size": 160, "date": "Jan 28 09:01"}, {"filename": "mongo.yaml", "parent": "./clover/clover/clover/clovisor/libclovisor", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 717, "date": "Jan 28 09:01"}, {"filename": "redis.yaml", "parent": "./clover/clover/clover/clovisor/libclovisor", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 885, "date": "Jan 28 09:01"}, {"filename": "node_interface.c", "parent": "./clover/clover/clover/clovisor/libclovisor/ebpf", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4352, "date": "Jan 28 09:01"}, {"filename": "session_tracking.c", "parent": "./clover/clover/clover/clovisor/libclovisor/ebpf", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 8565, "date": "Jan 28 09:01"}, {"filename": "build-plugin", "parent": "./clover/clover/clover/clovisor/libclovisor/libproto", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 361, "date": "Jan 28 09:01"}, {"filename": "clovisor_http.go", "parent": "./clover/clover/clover/clovisor/libclovisor/libproto", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2896, "date": "Jan 28 09:01"}, {"filename": "http_alt.go", "parent": "./clover/clover/clover/clovisor/libclovisor/libproto", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3253, "date": "Jan 28 09:01"}, {"filename": "http.so", "parent": "./clover/clover/clover/clovisor/proto", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 11742704, "date": "Jan 28 09:01"}, {"filename": "__init__.py", "parent": "./clover/clover/clover/collector", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 0, "date": "Jan 28 09:01"}, {"filename": "build.sh", "parent": "./clover/clover/clover/collector", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 519, "date": "Jan 28 09:01"}, {"filename": "db", "parent": "./clover/clover/clover/collector", "flags": "drwxr-xr-x", "links": 5, "owner": "kbrazil", "group": "staff", "size": 160, "date": "Jan 28 09:01"}, {"filename": "docker", "parent": "./clover/clover/clover/collector", "flags": "drwxr-xr-x", "links": 3, "owner": "kbrazil", "group": "staff", "size": 96, "date": "Jan 28 09:01"}, {"filename": "grpc", "parent": "./clover/clover/clover/collector", "flags": "drwxr-xr-x", "links": 9, "owner": "kbrazil", "group": "staff", "size": 288, "date": "Jan 28 09:01"}, {"filename": "process", "parent": "./clover/clover/clover/collector", "flags": "drwxr-xr-x", "links": 5, "owner": "kbrazil", "group": "staff", "size": 160, "date": "Jan 28 09:01"}, {"filename": "yaml", "parent": "./clover/clover/clover/collector", "flags": "drwxr-xr-x", "links": 4, "owner": "kbrazil", "group": "staff", "size": 128, "date": "Jan 28 09:01"}, {"filename": "__init__.py", "parent": "./clover/clover/clover/collector/db", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 0, "date": "Jan 28 09:01"}, {"filename": "cassops.py", "parent": "./clover/clover/clover/collector/db", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 5618, "date": "Jan 28 09:01"}, {"filename": "redisops.py", "parent": "./clover/clover/clover/collector/db", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1892, "date": "Jan 28 09:01"}, {"filename": "Dockerfile", "parent": "./clover/clover/clover/collector/docker", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 589, "date": "Jan 28 09:01"}, {"filename": "__init__.py", "parent": "./clover/clover/clover/collector/grpc", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 0, "date": "Jan 28 09:01"}, {"filename": "build_proto.sh", "parent": "./clover/clover/clover/collector/grpc", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 380, "date": "Jan 28 09:01"}, {"filename": "collector.proto", "parent": "./clover/clover/clover/collector/grpc", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1070, "date": "Jan 28 09:01"}, {"filename": "collector_client.py", "parent": "./clover/clover/clover/collector/grpc", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3236, "date": "Jan 28 09:01"}, {"filename": "collector_pb2.py", "parent": "./clover/clover/clover/collector/grpc", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 10872, "date": "Jan 28 09:01"}, {"filename": "collector_pb2_grpc.py", "parent": "./clover/clover/clover/collector/grpc", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3794, "date": "Jan 28 09:01"}, {"filename": "collector_server.py", "parent": "./clover/clover/clover/collector/grpc", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3424, "date": "Jan 28 09:01"}, {"filename": "__init__.py", "parent": "./clover/clover/clover/collector/process", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 0, "date": "Jan 28 09:01"}, {"filename": "collect.py", "parent": "./clover/clover/clover/collector/process", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 7035, "date": "Jan 28 09:01"}, {"filename": "grpc_process.sh", "parent": "./clover/clover/clover/collector/process", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 334, "date": "Jan 28 09:01"}, {"filename": "manifest.template", "parent": "./clover/clover/clover/collector/yaml", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1022, "date": "Jan 28 09:01"}, {"filename": "render_yaml.py", "parent": "./clover/clover/clover/collector/yaml", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2587, "date": "Jan 28 09:01"}, {"filename": "__init__.py", "parent": "./clover/clover/clover/controller", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 0, "date": "Jan 28 09:01"}, {"filename": "build.sh", "parent": "./clover/clover/clover/controller", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 518, "date": "Jan 28 09:01"}, {"filename": "control", "parent": "./clover/clover/clover/controller", "flags": "drwxr-xr-x", "links": 9, "owner": "kbrazil", "group": "staff", "size": 288, "date": "Jan 28 09:01"}, {"filename": "docker", "parent": "./clover/clover/clover/controller", "flags": "drwxr-xr-x", "links": 3, "owner": "kbrazil", "group": "staff", "size": 96, "date": "Jan 28 09:01"}, {"filename": "process", "parent": "./clover/clover/clover/controller", "flags": "drwxr-xr-x", "links": 7, "owner": "kbrazil", "group": "staff", "size": 224, "date": "Jan 28 09:01"}, {"filename": "yaml", "parent": "./clover/clover/clover/controller", "flags": "drwxr-xr-x", "links": 4, "owner": "kbrazil", "group": "staff", "size": 128, "date": "Jan 28 09:01"}, {"filename": "__init__.py", "parent": "./clover/clover/clover/controller/control", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 0, "date": "Jan 28 09:01"}, {"filename": "api", "parent": "./clover/clover/clover/controller/control", "flags": "drwxr-xr-x", "links": 10, "owner": "kbrazil", "group": "staff", "size": 320, "date": "Jan 28 09:01"}, {"filename": "control.py", "parent": "./clover/clover/clover/controller/control", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1298, "date": "Jan 28 09:01"}, {"filename": "static", "parent": "./clover/clover/clover/controller/control", "flags": "drwxr-xr-x", "links": 4, "owner": "kbrazil", "group": "staff", "size": 128, "date": "Jan 28 09:01"}, {"filename": "templates", "parent": "./clover/clover/clover/controller/control", "flags": "drwxr-xr-x", "links": 11, "owner": "kbrazil", "group": "staff", "size": 352, "date": "Jan 28 09:01"}, {"filename": "views", "parent": "./clover/clover/clover/controller/control", "flags": "drwxr-xr-x", "links": 4, "owner": "kbrazil", "group": "staff", "size": 128, "date": "Jan 28 09:01"}, {"filename": "wsgi.py", "parent": "./clover/clover/clover/controller/control", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 82, "date": "Jan 28 09:01"}, {"filename": "__init__.py", "parent": "./clover/clover/clover/controller/control/api", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 178, "date": "Jan 28 09:01"}, {"filename": "collector.py", "parent": "./clover/clover/clover/controller/control/api", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 5047, "date": "Jan 28 09:01"}, {"filename": "file_upload.py", "parent": "./clover/clover/clover/controller/control/api", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1969, "date": "Jan 28 09:01"}, {"filename": "halyard.py", "parent": "./clover/clover/clover/controller/control/api", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6070, "date": "Jan 28 09:01"}, {"filename": "jmeter.py", "parent": "./clover/clover/clover/controller/control/api", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3643, "date": "Jan 28 09:01"}, {"filename": "nginx.py", "parent": "./clover/clover/clover/controller/control/api", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2983, "date": "Jan 28 09:01"}, {"filename": "snort.py", "parent": "./clover/clover/clover/controller/control/api", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3339, "date": "Jan 28 09:01"}, {"filename": "visibility.py", "parent": "./clover/clover/clover/controller/control/api", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 5504, "date": "Jan 28 09:01"}, {"filename": "css", "parent": "./clover/clover/clover/controller/control/static", "flags": "drwxr-xr-x", "links": 5, "owner": "kbrazil", "group": "staff", "size": 160, "date": "Jan 28 09:01"}, {"filename": "js", "parent": "./clover/clover/clover/controller/control/static", "flags": "drwxr-xr-x", "links": 6, "owner": "kbrazil", "group": "staff", "size": 192, "date": "Jan 28 09:01"}, {"filename": "app.css", "parent": "./clover/clover/clover/controller/control/static/css", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 486, "date": "Jan 28 09:01"}, {"filename": "foundation.css", "parent": "./clover/clover/clover/controller/control/static/css", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 155708, "date": "Jan 28 09:01"}, {"filename": "jquery-ui.css", "parent": "./clover/clover/clover/controller/control/static/css", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 36041, "date": "Jan 28 09:01"}, {"filename": "foundation", "parent": "./clover/clover/clover/controller/control/static/js", "flags": "drwxr-xr-x", "links": 4, "owner": "kbrazil", "group": "staff", "size": 128, "date": "Jan 28 09:01"}, {"filename": "graphing", "parent": "./clover/clover/clover/controller/control/static/js", "flags": "drwxr-xr-x", "links": 4, "owner": "kbrazil", "group": "staff", "size": 128, "date": "Jan 28 09:01"}, {"filename": "jquery-ui.min.js", "parent": "./clover/clover/clover/controller/control/static/js", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 253668, "date": "Jan 28 09:01"}, {"filename": "visibility.js", "parent": "./clover/clover/clover/controller/control/static/js", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 8550, "date": "Jan 28 09:01"}, {"filename": "foundation.min.js", "parent": "./clover/clover/clover/controller/control/static/js/foundation", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 148827, "date": "Jan 28 09:01"}, {"filename": "jquery.js", "parent": "./clover/clover/clover/controller/control/static/js/foundation", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 268039, "date": "Jan 28 09:01"}, {"filename": "candela.min.js", "parent": "./clover/clover/clover/controller/control/static/js/graphing", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4783367, "date": "Jan 28 09:01"}, {"filename": "plotly-latest.min.js", "parent": "./clover/clover/clover/controller/control/static/js/graphing", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2814564, "date": "Jan 28 09:01"}, {"filename": "base.html", "parent": "./clover/clover/clover/controller/control/templates", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1026, "date": "Jan 28 09:01"}, {"filename": "header.html", "parent": "./clover/clover/clover/controller/control/templates", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 884, "date": "Jan 28 09:01"}, {"filename": "http_details.html", "parent": "./clover/clover/clover/controller/control/templates", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1002, "date": "Jan 28 09:01"}, {"filename": "metric_requests.html", "parent": "./clover/clover/clover/controller/control/templates", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 297, "date": "Jan 28 09:01"}, {"filename": "request_counts.html", "parent": "./clover/clover/clover/controller/control/templates", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 640, "date": "Jan 28 09:01"}, {"filename": "rt_system_counts.html", "parent": "./clover/clover/clover/controller/control/templates", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 730, "date": "Jan 28 09:01"}, {"filename": "tracing_names.html", "parent": "./clover/clover/clover/controller/control/templates", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1165, "date": "Jan 28 09:01"}, {"filename": "visibility.html", "parent": "./clover/clover/clover/controller/control/templates", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1663, "date": "Jan 28 09:01"}, {"filename": "visibility_controls.html", "parent": "./clover/clover/clover/controller/control/templates", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1480, "date": "Jan 28 09:01"}, {"filename": "__init__.py", "parent": "./clover/clover/clover/controller/control/views", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 178, "date": "Jan 28 09:01"}, {"filename": "visibility.py", "parent": "./clover/clover/clover/controller/control/views", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3347, "date": "Jan 28 09:01"}, {"filename": "Dockerfile", "parent": "./clover/clover/clover/controller/docker", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1506, "date": "Jan 28 09:01"}, {"filename": "__init__.py", "parent": "./clover/clover/clover/controller/process", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 178, "date": "Jan 28 09:01"}, {"filename": "gunicorn_process.sh", "parent": "./clover/clover/clover/controller/process", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 441, "date": "Jan 28 09:01"}, {"filename": "nginx.conf", "parent": "./clover/clover/clover/controller/process", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 280, "date": "Jan 28 09:01"}, {"filename": "nginx_process.sh", "parent": "./clover/clover/clover/controller/process", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 318, "date": "Jan 28 09:01"}, {"filename": "start_process.sh", "parent": "./clover/clover/clover/controller/process", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 369, "date": "Jan 28 09:01"}, {"filename": "manifest.template", "parent": "./clover/clover/clover/controller/yaml", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 809, "date": "Jan 28 09:01"}, {"filename": "render_yaml.py", "parent": "./clover/clover/clover/controller/yaml", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2605, "date": "Jan 28 09:01"}, {"filename": "__init__.py", "parent": "./clover/clover/clover/functest", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 0, "date": "Jan 28 09:01"}, {"filename": "clover_k8s.py", "parent": "./clover/clover/clover/functest", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 798, "date": "Jan 28 09:01"}, {"filename": "__init__.py", "parent": "./clover/clover/clover/logging", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 0, "date": "Jan 28 09:01"}, {"filename": "conftest.py", "parent": "./clover/clover/clover/logging", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 423, "date": "Jan 28 09:01"}, {"filename": "es_test.py", "parent": "./clover/clover/clover/logging", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 959, "date": "Jan 28 09:01"}, {"filename": "install", "parent": "./clover/clover/clover/logging", "flags": "drwxr-xr-x", "links": 7, "owner": "kbrazil", "group": "staff", "size": 224, "date": "Jan 28 09:01"}, {"filename": "validate.py", "parent": "./clover/clover/clover/logging", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1897, "date": "Jan 28 09:01"}, {"filename": "elasticsearch-statefulset-service.yaml", "parent": "./clover/clover/clover/logging/install", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3230, "date": "Jan 28 09:01"}, {"filename": "fluentd-daemonset-elasticsearch-rbac.yaml", "parent": "./clover/clover/clover/logging/install", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2181, "date": "Jan 28 09:01"}, {"filename": "fluentd-istio.yaml", "parent": "./clover/clover/clover/logging/install", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1030, "date": "Jan 28 09:01"}, {"filename": "logging-stack.yaml", "parent": "./clover/clover/clover/logging/install", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4298, "date": "Jan 28 09:01"}, {"filename": "proxy-access-control-sidecar.yml", "parent": "./clover/clover/clover/logging/install", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 829, "date": "Jan 28 09:01"}, {"filename": "__init__.py", "parent": "./clover/clover/clover/monitoring", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 0, "date": "Jan 28 09:01"}, {"filename": "monitoring.py", "parent": "./clover/clover/clover/monitoring", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4716, "date": "Jan 28 09:01"}, {"filename": "validate.py", "parent": "./clover/clover/clover/monitoring", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2109, "date": "Jan 28 09:01"}, {"filename": "Pipfile", "parent": "./clover/clover/clover/orchestration", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 169, "date": "Jan 28 09:01"}, {"filename": "Pipfile.lock", "parent": "./clover/clover/clover/orchestration", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 8392, "date": "Jan 28 09:01"}, {"filename": "__init__.py", "parent": "./clover/clover/clover/orchestration", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 0, "date": "Jan 28 09:01"}, {"filename": "kube_client.py", "parent": "./clover/clover/clover/orchestration", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 5915, "date": "Jan 28 09:01"}, {"filename": "__init__.py", "parent": "./clover/clover/clover/servicemesh", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 0, "date": "Jan 28 09:01"}, {"filename": "route_rules.py", "parent": "./clover/clover/clover/servicemesh", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4878, "date": "Jan 28 09:01"}, {"filename": "validate.py", "parent": "./clover/clover/clover/servicemesh", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1254, "date": "Jan 28 09:01"}, {"filename": "build.sbt", "parent": "./clover/clover/clover/spark", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 578, "date": "Jan 28 09:01"}, {"filename": "docker", "parent": "./clover/clover/clover/spark", "flags": "drwxr-xr-x", "links": 4, "owner": "kbrazil", "group": "staff", "size": 128, "date": "Jan 28 09:01"}, {"filename": "src", "parent": "./clover/clover/clover/spark", "flags": "drwxr-xr-x", "links": 3, "owner": "kbrazil", "group": "staff", "size": 96, "date": "Jan 28 09:01"}, {"filename": "yaml", "parent": "./clover/clover/clover/spark", "flags": "drwxr-xr-x", "links": 3, "owner": "kbrazil", "group": "staff", "size": 96, "date": "Jan 28 09:01"}, {"filename": "clover-spark", "parent": "./clover/clover/clover/spark/docker", "flags": "drwxr-xr-x", "links": 4, "owner": "kbrazil", "group": "staff", "size": 128, "date": "Jan 28 09:01"}, {"filename": "spark-submit", "parent": "./clover/clover/clover/spark/docker", "flags": "drwxr-xr-x", "links": 6, "owner": "kbrazil", "group": "staff", "size": 192, "date": "Jan 28 09:01"}, {"filename": "Dockerfile", "parent": "./clover/clover/clover/spark/docker/clover-spark", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2306, "date": "Jan 28 09:01"}, {"filename": "build.sh", "parent": "./clover/clover/clover/spark/docker/clover-spark", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 604, "date": "Jan 28 09:01"}, {"filename": "Dockerfile", "parent": "./clover/clover/clover/spark/docker/spark-submit", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 861, "date": "Jan 28 09:01"}, {"filename": "build.sh", "parent": "./clover/clover/clover/spark/docker/spark-submit", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 523, "date": "Jan 28 09:01"}, {"filename": "runner.sh", "parent": "./clover/clover/clover/spark/docker/spark-submit", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1138, "date": "Jan 28 09:01"}, {"filename": "runner_fast.sh", "parent": "./clover/clover/clover/spark/docker/spark-submit", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1034, "date": "Jan 28 09:01"}, {"filename": "main", "parent": "./clover/clover/clover/spark/src", "flags": "drwxr-xr-x", "links": 3, "owner": "kbrazil", "group": "staff", "size": 96, "date": "Jan 28 09:01"}, {"filename": "scala", "parent": "./clover/clover/clover/spark/src/main", "flags": "drwxr-xr-x", "links": 4, "owner": "kbrazil", "group": "staff", "size": 128, "date": "Jan 28 09:01"}, {"filename": "CloverFast.scala", "parent": "./clover/clover/clover/spark/src/main/scala", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1758, "date": "Jan 28 09:01"}, {"filename": "CloverSlow.scala", "parent": "./clover/clover/clover/spark/src/main/scala", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 8445, "date": "Jan 28 09:01"}, {"filename": "clover-spark.yaml", "parent": "./clover/clover/clover/spark/yaml", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1002, "date": "Jan 28 09:01"}, {"filename": "__init__.py", "parent": "./clover/clover/clover/spinnaker", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 0, "date": "Jan 28 09:01"}, {"filename": "halyard.py", "parent": "./clover/clover/clover/spinnaker", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4121, "date": "Jan 28 09:01"}, {"filename": "halyard_sample.py", "parent": "./clover/clover/clover/spinnaker", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1515, "date": "Jan 28 09:01"}, {"filename": "install", "parent": "./clover/clover/clover/spinnaker", "flags": "drwxr-xr-x", "links": 4, "owner": "kbrazil", "group": "staff", "size": 128, "date": "Jan 28 09:01"}, {"filename": "lib", "parent": "./clover/clover/clover/spinnaker", "flags": "drwxr-xr-x", "links": 4, "owner": "kbrazil", "group": "staff", "size": 128, "date": "Jan 28 09:01"}, {"filename": "minio-pv.yml", "parent": "./clover/clover/clover/spinnaker/install", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 233, "date": "Jan 28 09:01"}, {"filename": "quick-install-spinnaker.yml", "parent": "./clover/clover/clover/spinnaker/install", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 8953, "date": "Jan 28 09:01"}, {"filename": "__init__.py", "parent": "./clover/clover/clover/spinnaker/lib", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 0, "date": "Jan 28 09:01"}, {"filename": "halyard_base.py", "parent": "./clover/clover/clover/spinnaker/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4611, "date": "Jan 28 09:01"}, {"filename": "app", "parent": "./clover/clover/clover/test", "flags": "drwxr-xr-x", "links": 3, "owner": "kbrazil", "group": "staff", "size": 96, "date": "Jan 28 09:01"}, {"filename": "fraser_a_b_test.py", "parent": "./clover/clover/clover/test", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 10659, "date": "Jan 28 09:01"}, {"filename": "istio", "parent": "./clover/clover/clover/test", "flags": "drwxr-xr-x", "links": 3, "owner": "kbrazil", "group": "staff", "size": 96, "date": "Jan 28 09:01"}, {"filename": "script", "parent": "./clover/clover/clover/test", "flags": "drwxr-xr-x", "links": 3, "owner": "kbrazil", "group": "staff", "size": 96, "date": "Jan 28 09:01"}, {"filename": "validate_success.py", "parent": "./clover/clover/clover/test", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 5613, "date": "Jan 28 09:01"}, {"filename": "yaml", "parent": "./clover/clover/clover/test", "flags": "drwxr-xr-x", "links": 3, "owner": "kbrazil", "group": "staff", "size": 96, "date": "Jan 28 09:01"}, {"filename": "sdc", "parent": "./clover/clover/clover/test/app", "flags": "drwxr-xr-x", "links": 5, "owner": "kbrazil", "group": "staff", "size": 160, "date": "Jan 28 09:01"}, {"filename": "clover-server4.yaml", "parent": "./clover/clover/clover/test/app/sdc", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 597, "date": "Jan 28 09:01"}, {"filename": "clover-server5.yaml", "parent": "./clover/clover/clover/test/app/sdc", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 597, "date": "Jan 28 09:01"}, {"filename": "lb-v2.yaml", "parent": "./clover/clover/clover/test/app/sdc", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 393, "date": "Jan 28 09:01"}, {"filename": "sdc", "parent": "./clover/clover/clover/test/istio", "flags": "drwxr-xr-x", "links": 7, "owner": "kbrazil", "group": "staff", "size": 224, "date": "Jan 28 09:01"}, {"filename": "clover-server4-delay.yaml", "parent": "./clover/clover/clover/test/istio/sdc", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 243, "date": "Jan 28 09:01"}, {"filename": "clover-server5-delay.yaml", "parent": "./clover/clover/clover/test/istio/sdc", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 243, "date": "Jan 28 09:01"}, {"filename": "route-rule-lb-50-v2.yaml", "parent": "./clover/clover/clover/test/istio/sdc", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 236, "date": "Jan 28 09:01"}, {"filename": "route-rule-lb-v1.yaml", "parent": "./clover/clover/clover/test/istio/sdc", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 176, "date": "Jan 28 09:01"}, {"filename": "route-rule-lb-v2.yaml", "parent": "./clover/clover/clover/test/istio/sdc", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 176, "date": "Jan 28 09:01"}, {"filename": "lb-test.sh", "parent": "./clover/clover/clover/test/script", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 111, "date": "Jan 28 09:01"}, {"filename": "fraser_a_b_test.yaml", "parent": "./clover/clover/clover/test/yaml", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 600, "date": "Jan 28 09:01"}, {"filename": "__init__.py", "parent": "./clover/clover/clover/tools", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 0, "date": "Jan 28 09:01"}, {"filename": "clover_validate_rr.py", "parent": "./clover/clover/clover/tools", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1572, "date": "Jan 28 09:01"}, {"filename": "jmeter", "parent": "./clover/clover/clover/tools", "flags": "drwxr-xr-x", "links": 8, "owner": "kbrazil", "group": "staff", "size": 256, "date": "Jan 28 09:01"}, {"filename": "validate_rr.py", "parent": "./clover/clover/clover/tools", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3725, "date": "Jan 28 09:01"}, {"filename": "yaml", "parent": "./clover/clover/clover/tools", "flags": "drwxr-xr-x", "links": 4, "owner": "kbrazil", "group": "staff", "size": 128, "date": "Jan 28 09:01"}, {"filename": "build_master.sh", "parent": "./clover/clover/clover/tools/jmeter", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 530, "date": "Jan 28 09:01"}, {"filename": "build_slave.sh", "parent": "./clover/clover/clover/tools/jmeter", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 528, "date": "Jan 28 09:01"}, {"filename": "jmeter-master", "parent": "./clover/clover/clover/tools/jmeter", "flags": "drwxr-xr-x", "links": 6, "owner": "kbrazil", "group": "staff", "size": 192, "date": "Jan 28 09:01"}, {"filename": "jmeter-slave", "parent": "./clover/clover/clover/tools/jmeter", "flags": "drwxr-xr-x", "links": 3, "owner": "kbrazil", "group": "staff", "size": 96, "date": "Jan 28 09:01"}, {"filename": "rmi_keystore.jks", "parent": "./clover/clover/clover/tools/jmeter", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2190, "date": "Jan 28 09:01"}, {"filename": "yaml", "parent": "./clover/clover/clover/tools/jmeter", "flags": "drwxr-xr-x", "links": 5, "owner": "kbrazil", "group": "staff", "size": 160, "date": "Jan 28 09:01"}, {"filename": "Dockerfile", "parent": "./clover/clover/clover/tools/jmeter/jmeter-master", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 932, "date": "Jan 28 09:01"}, {"filename": "grpc", "parent": "./clover/clover/clover/tools/jmeter/jmeter-master", "flags": "drwxr-xr-x", "links": 7, "owner": "kbrazil", "group": "staff", "size": 224, "date": "Jan 28 09:01"}, {"filename": "process", "parent": "./clover/clover/clover/tools/jmeter/jmeter-master", "flags": "drwxr-xr-x", "links": 3, "owner": "kbrazil", "group": "staff", "size": 96, "date": "Jan 28 09:01"}, {"filename": "tests", "parent": "./clover/clover/clover/tools/jmeter/jmeter-master", "flags": "drwxr-xr-x", "links": 3, "owner": "kbrazil", "group": "staff", "size": 96, "date": "Jan 28 09:01"}, {"filename": "build_proto.sh", "parent": "./clover/clover/clover/tools/jmeter/jmeter-master/grpc", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 377, "date": "Jan 28 09:01"}, {"filename": "jmeter.proto", "parent": "./clover/clover/clover/tools/jmeter/jmeter-master/grpc", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1001, "date": "Jan 28 09:01"}, {"filename": "jmeter_pb2.py", "parent": "./clover/clover/clover/tools/jmeter/jmeter-master/grpc", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 10989, "date": "Jan 28 09:01"}, {"filename": "jmeter_pb2_grpc.py", "parent": "./clover/clover/clover/tools/jmeter/jmeter-master/grpc", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2823, "date": "Jan 28 09:01"}, {"filename": "jmeter_server.py", "parent": "./clover/clover/clover/tools/jmeter/jmeter-master/grpc", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3854, "date": "Jan 28 09:01"}, {"filename": "grpc_process.sh", "parent": "./clover/clover/clover/tools/jmeter/jmeter-master/process", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 331, "date": "Jan 28 09:01"}, {"filename": "jmx.template", "parent": "./clover/clover/clover/tools/jmeter/jmeter-master/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 7234, "date": "Jan 28 09:01"}, {"filename": "Dockerfile", "parent": "./clover/clover/clover/tools/jmeter/jmeter-slave", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 736, "date": "Jan 28 09:01"}, {"filename": "manifest.template", "parent": "./clover/clover/clover/tools/jmeter/yaml", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 977, "date": "Jan 28 09:01"}, {"filename": "render_master.py", "parent": "./clover/clover/clover/tools/jmeter/yaml", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2313, "date": "Jan 28 09:01"}, {"filename": "render_slave.py", "parent": "./clover/clover/clover/tools/jmeter/yaml", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2322, "date": "Jan 28 09:01"}, {"filename": "cassandra.yaml", "parent": "./clover/clover/clover/tools/yaml", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2506, "date": "Jan 28 09:01"}, {"filename": "redis.yaml", "parent": "./clover/clover/clover/tools/yaml", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 754, "date": "Jan 28 09:01"}, {"filename": "__init__.py", "parent": "./clover/clover/clover/tracing", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 0, "date": "Jan 28 09:01"}, {"filename": "tracing.py", "parent": "./clover/clover/clover/tracing", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 7191, "date": "Jan 28 09:01"}, {"filename": "tracing_sample.py", "parent": "./clover/clover/clover/tracing", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1307, "date": "Jan 28 09:01"}, {"filename": "validate.py", "parent": "./clover/clover/clover/tracing", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2648, "date": "Jan 28 09:01"}, {"filename": "Dockerfile", "parent": "./clover/clover/docker", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1005, "date": "Jan 28 09:01"}, {"filename": "build.sh", "parent": "./clover/clover/docker", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 579, "date": "Jan 28 09:01"}, {"filename": "setup.sh", "parent": "./clover/clover/docker", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1244, "date": "Jan 28 09:01"}, {"filename": "conf.py", "parent": "./clover/clover/docs", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 29, "date": "Jan 28 09:01"}, {"filename": "conf.yaml", "parent": "./clover/clover/docs", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 39, "date": "Jan 28 09:01"}, {"filename": "development", "parent": "./clover/clover/docs", "flags": "drwxr-xr-x", "links": 5, "owner": "kbrazil", "group": "staff", "size": 160, "date": "Jan 28 09:01"}, {"filename": "index.rst", "parent": "./clover/clover/docs", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 376, "date": "Jan 28 09:01"}, {"filename": "release", "parent": "./clover/clover/docs", "flags": "drwxr-xr-x", "links": 5, "owner": "kbrazil", "group": "staff", "size": 160, "date": "Jan 28 09:01"}, {"filename": "requirements.txt", "parent": "./clover/clover/docs", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 31, "date": "Jan 28 09:01"}, {"filename": "design", "parent": "./clover/clover/docs/development", "flags": "drwxr-xr-x", "links": 8, "owner": "kbrazil", "group": "staff", "size": 256, "date": "Jan 28 09:01"}, {"filename": "overview", "parent": "./clover/clover/docs/development", "flags": "drwxr-xr-x", "links": 3, "owner": "kbrazil", "group": "staff", "size": 96, "date": "Jan 28 09:01"}, {"filename": "requirements", "parent": "./clover/clover/docs/development", "flags": "drwxr-xr-x", "links": 3, "owner": "kbrazil", "group": "staff", "size": 96, "date": "Jan 28 09:01"}, {"filename": "clovisor.rst", "parent": "./clover/clover/docs/development/design", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 8250, "date": "Jan 28 09:01"}, {"filename": "index.rst", "parent": "./clover/clover/docs/development/design", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 352, "date": "Jan 28 09:01"}, {"filename": "logging.rst", "parent": "./clover/clover/docs/development/design", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 5731, "date": "Jan 28 09:01"}, {"filename": "monitoring.rst", "parent": "./clover/clover/docs/development/design", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 841, "date": "Jan 28 09:01"}, {"filename": "tracing.r", "parent": "./clover/clover/docs/development/design", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2139, "date": "Jan 28 09:01"}, {"filename": "configguide", "parent": "./clover/clover/docs/release", "flags": "drwxr-xr-x", "links": 13, "owner": "kbrazil", "group": "staff", "size": 416, "date": "Jan 28 09:01"}, {"filename": "release-notes", "parent": "./clover/clover/docs/release", "flags": "drwxr-xr-x", "links": 5, "owner": "kbrazil", "group": "staff", "size": 160, "date": "Jan 28 09:01"}, {"filename": "userguide", "parent": "./clover/clover/docs/release", "flags": "drwxr-xr-x", "links": 5, "owner": "kbrazil", "group": "staff", "size": 160, "date": "Jan 28 09:01"}, {"filename": "a_b_config_guide.rst", "parent": "./clover/clover/docs/release/configguide", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3752, "date": "Jan 28 09:01"}, {"filename": "clovisor_config_guide.rst", "parent": "./clover/clover/docs/release/configguide", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6385, "date": "Jan 28 09:01"}, {"filename": "controller_services_config_guide.rst", "parent": "./clover/clover/docs/release/configguide", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6870, "date": "Jan 28 09:01"}, {"filename": "imgs", "parent": "./clover/clover/docs/release/configguide", "flags": "drwxr-xr-x", "links": 18, "owner": "kbrazil", "group": "staff", "size": 576, "date": "Jan 28 09:01"}, {"filename": "index.rst", "parent": "./clover/clover/docs/release/configguide", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 521, "date": "Jan 28 09:01"}, {"filename": "jmeter_config_guide.rst", "parent": "./clover/clover/docs/release/configguide", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 12268, "date": "Jan 28 09:01"}, {"filename": "modsecurity_config_guide.rst", "parent": "./clover/clover/docs/release/configguide", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 11479, "date": "Jan 28 09:01"}, {"filename": "sdc_config_guide.rst", "parent": "./clover/clover/docs/release/configguide", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 29174, "date": "Jan 28 09:01"}, {"filename": "spinnaker_config_guide.rst", "parent": "./clover/clover/docs/release/configguide", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 11613, "date": "Jan 28 09:01"}, {"filename": "visibility_config_guide.rst", "parent": "./clover/clover/docs/release/configguide", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 18350, "date": "Jan 28 09:01"}, {"filename": "istio_gateway.png", "parent": "./clover/clover/docs/release/configguide/imgs", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3985370, "date": "Jan 28 09:01"}, {"filename": "jmeter_overview.png", "parent": "./clover/clover/docs/release/configguide/imgs", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 78367, "date": "Jan 28 09:01"}, {"filename": "sdc_sample.png", "parent": "./clover/clover/docs/release/configguide/imgs", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 106854, "date": "Jan 28 09:01"}, {"filename": "sdc_sample.xcf", "parent": "./clover/clover/docs/release/configguide/imgs", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 226183, "date": "Jan 28 09:01"}, {"filename": "sdc_tracing.png", "parent": "./clover/clover/docs/release/configguide/imgs", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 84913, "date": "Jan 28 09:01"}, {"filename": "spinnaker-bake.png", "parent": "./clover/clover/docs/release/configguide/imgs", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 61742, "date": "Jan 28 09:01"}, {"filename": "spinnaker-deploy.png", "parent": "./clover/clover/docs/release/configguide/imgs", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 62381, "date": "Jan 28 09:01"}, {"filename": "spinnaker-expected-artifacts.png", "parent": "./clover/clover/docs/release/configguide/imgs", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 37564, "date": "Jan 28 09:01"}, {"filename": "spinnaker-produces-artifact.png", "parent": "./clover/clover/docs/release/configguide/imgs", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 17589, "date": "Jan 28 09:01"}, {"filename": "spinnaker.png", "parent": "./clover/clover/docs/release/configguide/imgs", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 20104, "date": "Jan 28 09:01"}, {"filename": "visibility_discovered_active.png", "parent": "./clover/clover/docs/release/configguide/imgs", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 33626, "date": "Jan 28 09:01"}, {"filename": "visibility_distinct_counts.png", "parent": "./clover/clover/docs/release/configguide/imgs", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 38887, "date": "Jan 28 09:01"}, {"filename": "visibility_distinct_http.png", "parent": "./clover/clover/docs/release/configguide/imgs", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 27362, "date": "Jan 28 09:01"}, {"filename": "visibility_monitoring_metrics.png", "parent": "./clover/clover/docs/release/configguide/imgs", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 96758, "date": "Jan 28 09:01"}, {"filename": "visibility_overview.png", "parent": "./clover/clover/docs/release/configguide/imgs", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 64705, "date": "Jan 28 09:01"}, {"filename": "visibility_system_counts_response_times.png", "parent": "./clover/clover/docs/release/configguide/imgs", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 40552, "date": "Jan 28 09:01"}, {"filename": "index.rst", "parent": "./clover/clover/docs/release/release-notes", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 340, "date": "Jan 28 09:01"}, {"filename": "release-notes.rst", "parent": "./clover/clover/docs/release/release-notes", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3279, "date": "Jan 28 09:01"}, {"filename": "index.rst", "parent": "./clover/clover/docs/release/userguide", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 292, "date": "Jan 28 09:01"}, {"filename": "userguide.rst", "parent": "./clover/clover/docs/release/userguide", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1497, "date": "Jan 28 09:01"}, {"filename": "cloverctl.tar.gz", "parent": "./clover/clover/download", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 10051204, "date": "Jan 28 09:01"}, {"filename": "sample", "parent": "./clover/clover/edge", "flags": "drwxr-xr-x", "links": 10, "owner": "kbrazil", "group": "staff", "size": 320, "date": "Jan 28 09:01"}, {"filename": "Network.png", "parent": "./clover/clover/edge/sample", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 41699, "date": "Jan 28 09:01"}, {"filename": "README.md", "parent": "./clover/clover/edge/sample", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3816, "date": "Jan 28 09:01"}, {"filename": "ansible.cfg", "parent": "./clover/clover/edge/sample", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 19301, "date": "Jan 28 09:01"}, {"filename": "clusterForm.yml", "parent": "./clover/clover/edge/sample", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 194, "date": "Jan 28 09:01"}, {"filename": "clusterTear.yml", "parent": "./clover/clover/edge/sample", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 64, "date": "Jan 28 09:01"}, {"filename": "hosts", "parent": "./clover/clover/edge/sample", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 183, "date": "Jan 28 09:01"}, {"filename": "live_stream_app", "parent": "./clover/clover/edge/sample", "flags": "drwxr-xr-x", "links": 5, "owner": "kbrazil", "group": "staff", "size": 160, "date": "Jan 28 09:01"}, {"filename": "roles", "parent": "./clover/clover/edge/sample", "flags": "drwxr-xr-x", "links": 6, "owner": "kbrazil", "group": "staff", "size": 192, "date": "Jan 28 09:01"}, {"filename": "README.md", "parent": "./clover/clover/edge/sample/live_stream_app", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3631, "date": "Jan 28 09:01"}, {"filename": "deployment_uv4l.yml", "parent": "./clover/clover/edge/sample/live_stream_app", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 951, "date": "Jan 28 09:01"}, {"filename": "docker", "parent": "./clover/clover/edge/sample/live_stream_app", "flags": "drwxr-xr-x", "links": 5, "owner": "kbrazil", "group": "staff", "size": 160, "date": "Jan 28 09:01"}, {"filename": "Dockerfile", "parent": "./clover/clover/edge/sample/live_stream_app/docker", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 599, "date": "Jan 28 09:01"}, {"filename": "build.sh", "parent": "./clover/clover/edge/sample/live_stream_app/docker", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 500, "date": "Jan 28 09:01"}, {"filename": "src", "parent": "./clover/clover/edge/sample/live_stream_app/docker", "flags": "drwxr-xr-x", "links": 3, "owner": "kbrazil", "group": "staff", "size": 96, "date": "Jan 28 09:01"}, {"filename": "uv4l_start.sh", "parent": "./clover/clover/edge/sample/live_stream_app/docker/src", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 356, "date": "Jan 28 09:01"}, {"filename": "clusterForm_common", "parent": "./clover/clover/edge/sample/roles", "flags": "drwxr-xr-x", "links": 3, "owner": "kbrazil", "group": "staff", "size": 96, "date": "Jan 28 09:01"}, {"filename": "clusterForm_master", "parent": "./clover/clover/edge/sample/roles", "flags": "drwxr-xr-x", "links": 3, "owner": "kbrazil", "group": "staff", "size": 96, "date": "Jan 28 09:01"}, {"filename": "clusterForm_slave(s)", "parent": "./clover/clover/edge/sample/roles", "flags": "drwxr-xr-x", "links": 3, "owner": "kbrazil", "group": "staff", "size": 96, "date": "Jan 28 09:01"}, {"filename": "clusterTear_common", "parent": "./clover/clover/edge/sample/roles", "flags": "drwxr-xr-x", "links": 3, "owner": "kbrazil", "group": "staff", "size": 96, "date": "Jan 28 09:01"}, {"filename": "tasks", "parent": "./clover/clover/edge/sample/roles/clusterForm_common", "flags": "drwxr-xr-x", "links": 3, "owner": "kbrazil", "group": "staff", "size": 96, "date": "Jan 28 09:01"}, {"filename": "main.yml", "parent": "./clover/clover/edge/sample/roles/clusterForm_common/tasks", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3853, "date": "Jan 28 09:01"}, {"filename": "tasks", "parent": "./clover/clover/edge/sample/roles/clusterForm_master", "flags": "drwxr-xr-x", "links": 3, "owner": "kbrazil", "group": "staff", "size": 96, "date": "Jan 28 09:01"}, {"filename": "main.yml", "parent": "./clover/clover/edge/sample/roles/clusterForm_master/tasks", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1975, "date": "Jan 28 09:01"}, {"filename": "tasks", "parent": "./clover/clover/edge/sample/roles/clusterForm_slave(s)", "flags": "drwxr-xr-x", "links": 3, "owner": "kbrazil", "group": "staff", "size": 96, "date": "Jan 28 09:01"}, {"filename": "main.yml", "parent": "./clover/clover/edge/sample/roles/clusterForm_slave(s)/tasks", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 392, "date": "Jan 28 09:01"}, {"filename": "tasks", "parent": "./clover/clover/edge/sample/roles/clusterTear_common", "flags": "drwxr-xr-x", "links": 3, "owner": "kbrazil", "group": "staff", "size": 96, "date": "Jan 28 09:01"}, {"filename": "main.yml", "parent": "./clover/clover/edge/sample/roles/clusterTear_common/tasks", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 548, "date": "Jan 28 09:01"}, {"filename": "scenarios", "parent": "./clover/clover/samples", "flags": "drwxr-xr-x", "links": 9, "owner": "kbrazil", "group": "staff", "size": 288, "date": "Jan 28 09:01"}, {"filename": "services", "parent": "./clover/clover/samples", "flags": "drwxr-xr-x", "links": 5, "owner": "kbrazil", "group": "staff", "size": 160, "date": "Jan 28 09:01"}, {"filename": "clean.sh", "parent": "./clover/clover/samples/scenarios", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 942, "date": "Jan 28 09:01"}, {"filename": "clearwater_ims", "parent": "./clover/clover/samples/scenarios", "flags": "drwxr-xr-x", "links": 5, "owner": "kbrazil", "group": "staff", "size": 160, "date": "Jan 28 09:01"}, {"filename": "deploy.sh", "parent": "./clover/clover/samples/scenarios", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 749, "date": "Jan 28 09:01"}, {"filename": "ingressgateway_ext_authz_filter.yaml", "parent": "./clover/clover/samples/scenarios", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 641, "date": "Jan 28 09:01"}, {"filename": "modsecurity_all_in_one.yaml", "parent": "./clover/clover/samples/scenarios", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1380, "date": "Jan 28 09:01"}, {"filename": "service_delivery_controller.yaml", "parent": "./clover/clover/samples/scenarios", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 7056, "date": "Jan 28 09:01"}, {"filename": "service_delivery_controller_opnfv.yaml", "parent": "./clover/clover/samples/scenarios", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6975, "date": "Jan 28 09:01"}, {"filename": "clt-docker", "parent": "./clover/clover/samples/scenarios/clearwater_ims", "flags": "drwxr-xr-x", "links": 3, "owner": "kbrazil", "group": "staff", "size": 96, "date": "Jan 28 09:01"}, {"filename": "scripts", "parent": "./clover/clover/samples/scenarios/clearwater_ims", "flags": "drwxr-xr-x", "links": 4, "owner": "kbrazil", "group": "staff", "size": 128, "date": "Jan 28 09:01"}, {"filename": "yaml", "parent": "./clover/clover/samples/scenarios/clearwater_ims", "flags": "drwxr-xr-x", "links": 12, "owner": "kbrazil", "group": "staff", "size": 384, "date": "Jan 28 09:01"}, {"filename": "Dockerfile", "parent": "./clover/clover/samples/scenarios/clearwater_ims/clt-docker", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 870, "date": "Jan 28 09:01"}, {"filename": "prov-numbers.sh", "parent": "./clover/clover/samples/scenarios/clearwater_ims/scripts", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 305, "date": "Jan 28 09:01"}, {"filename": "run-live-test.sh", "parent": "./clover/clover/samples/scenarios/clearwater_ims/scripts", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1170, "date": "Jan 28 09:01"}, {"filename": "ellis-depl.yaml", "parent": "./clover/clover/samples/scenarios/clearwater_ims/yaml", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 923, "date": "Jan 28 09:01"}, {"filename": "ellis-svc.yaml", "parent": "./clover/clover/samples/scenarios/clearwater_ims/yaml", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 257, "date": "Jan 28 09:01"}, {"filename": "homer-depl.yaml", "parent": "./clover/clover/samples/scenarios/clearwater_ims/yaml", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 858, "date": "Jan 28 09:01"}, {"filename": "homer-svc.yaml", "parent": "./clover/clover/samples/scenarios/clearwater_ims/yaml", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 189, "date": "Jan 28 09:01"}, {"filename": "homestead-depl.yaml", "parent": "./clover/clover/samples/scenarios/clearwater_ims/yaml", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1436, "date": "Jan 28 09:01"}, {"filename": "homestead-prov-depl.yaml", "parent": "./clover/clover/samples/scenarios/clearwater_ims/yaml", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1120, "date": "Jan 28 09:01"}, {"filename": "homestead-prov-svc.yaml", "parent": "./clover/clover/samples/scenarios/clearwater_ims/yaml", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 225, "date": "Jan 28 09:01"}, {"filename": "homestead-svc.yaml", "parent": "./clover/clover/samples/scenarios/clearwater_ims/yaml", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 205, "date": "Jan 28 09:01"}, {"filename": "ralf-depl.yaml", "parent": "./clover/clover/samples/scenarios/clearwater_ims/yaml", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1260, "date": "Jan 28 09:01"}, {"filename": "ralf-svc.yaml", "parent": "./clover/clover/samples/scenarios/clearwater_ims/yaml", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 187, "date": "Jan 28 09:01"}, {"filename": "modsecurity", "parent": "./clover/clover/samples/services", "flags": "drwxr-xr-x", "links": 4, "owner": "kbrazil", "group": "staff", "size": 128, "date": "Jan 28 09:01"}, {"filename": "nginx", "parent": "./clover/clover/samples/services", "flags": "drwxr-xr-x", "links": 4, "owner": "kbrazil", "group": "staff", "size": 128, "date": "Jan 28 09:01"}, {"filename": "snort_ids", "parent": "./clover/clover/samples/services", "flags": "drwxr-xr-x", "links": 4, "owner": "kbrazil", "group": "staff", "size": 128, "date": "Jan 28 09:01"}, {"filename": "docker", "parent": "./clover/clover/samples/services/modsecurity", "flags": "drwxr-xr-x", "links": 8, "owner": "kbrazil", "group": "staff", "size": 256, "date": "Jan 28 09:01"}, {"filename": "yaml", "parent": "./clover/clover/samples/services/modsecurity", "flags": "drwxr-xr-x", "links": 6, "owner": "kbrazil", "group": "staff", "size": 192, "date": "Jan 28 09:01"}, {"filename": "Dockerfile", "parent": "./clover/clover/samples/services/modsecurity/docker", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1302, "date": "Jan 28 09:01"}, {"filename": "apache2.conf", "parent": "./clover/clover/samples/services/modsecurity/docker", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 7223, "date": "Jan 28 09:01"}, {"filename": "build.sh", "parent": "./clover/clover/samples/services/modsecurity/docker", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 507, "date": "Jan 28 09:01"}, {"filename": "docker-entrypoint.sh", "parent": "./clover/clover/samples/services/modsecurity/docker", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1079, "date": "Jan 28 09:01"}, {"filename": "proxy.conf", "parent": "./clover/clover/samples/services/modsecurity/docker", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 71, "date": "Jan 28 09:01"}, {"filename": "manifest.template", "parent": "./clover/clover/samples/services/modsecurity/yaml", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 818, "date": "Jan 28 09:01"}, {"filename": "modsecurity-deployment.yaml", "parent": "./clover/clover/samples/services/modsecurity/yaml", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 506, "date": "Jan 28 09:01"}, {"filename": "modsecurity-service.yaml", "parent": "./clover/clover/samples/services/modsecurity/yaml", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 255, "date": "Jan 28 09:01"}, {"filename": "render_yaml.py", "parent": "./clover/clover/samples/services/modsecurity/yaml", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2200, "date": "Jan 28 09:01"}, {"filename": "docker", "parent": "./clover/clover/samples/services/nginx", "flags": "drwxr-xr-x", "links": 8, "owner": "kbrazil", "group": "staff", "size": 256, "date": "Jan 28 09:01"}, {"filename": "yaml", "parent": "./clover/clover/samples/services/nginx", "flags": "drwxr-xr-x", "links": 4, "owner": "kbrazil", "group": "staff", "size": 128, "date": "Jan 28 09:01"}, {"filename": "build_lb.sh", "parent": "./clover/clover/samples/services/nginx/docker", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 529, "date": "Jan 28 09:01"}, {"filename": "build_proxy.sh", "parent": "./clover/clover/samples/services/nginx/docker", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 536, "date": "Jan 28 09:01"}, {"filename": "build_server.sh", "parent": "./clover/clover/samples/services/nginx/docker", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 537, "date": "Jan 28 09:01"}, {"filename": "grpc", "parent": "./clover/clover/samples/services/nginx/docker", "flags": "drwxr-xr-x", "links": 9, "owner": "kbrazil", "group": "staff", "size": 288, "date": "Jan 28 09:01"}, {"filename": "process", "parent": "./clover/clover/samples/services/nginx/docker", "flags": "drwxr-xr-x", "links": 4, "owner": "kbrazil", "group": "staff", "size": 128, "date": "Jan 28 09:01"}, {"filename": "subservices", "parent": "./clover/clover/samples/services/nginx/docker", "flags": "drwxr-xr-x", "links": 5, "owner": "kbrazil", "group": "staff", "size": 160, "date": "Jan 28 09:01"}, {"filename": "build_proto.sh", "parent": "./clover/clover/samples/services/nginx/docker/grpc", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 376, "date": "Jan 28 09:01"}, {"filename": "nginx.proto", "parent": "./clover/clover/samples/services/nginx/docker/grpc", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1260, "date": "Jan 28 09:01"}, {"filename": "nginx_client.py", "parent": "./clover/clover/samples/services/nginx/docker/grpc", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3321, "date": "Jan 28 09:01"}, {"filename": "nginx_grpc_server.py", "parent": "./clover/clover/samples/services/nginx/docker/grpc", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 8288, "date": "Jan 28 09:01"}, {"filename": "nginx_pb2.py", "parent": "./clover/clover/samples/services/nginx/docker/grpc", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 14547, "date": "Jan 28 09:01"}, {"filename": "nginx_pb2_grpc.py", "parent": "./clover/clover/samples/services/nginx/docker/grpc", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3577, "date": "Jan 28 09:01"}, {"filename": "templates", "parent": "./clover/clover/samples/services/nginx/docker/grpc", "flags": "drwxr-xr-x", "links": 6, "owner": "kbrazil", "group": "staff", "size": 192, "date": "Jan 28 09:01"}, {"filename": "lb.template", "parent": "./clover/clover/samples/services/nginx/docker/grpc/templates", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1840, "date": "Jan 28 09:01"}, {"filename": "proxy.template", "parent": "./clover/clover/samples/services/nginx/docker/grpc/templates", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1895, "date": "Jan 28 09:01"}, {"filename": "server.template", "parent": "./clover/clover/samples/services/nginx/docker/grpc/templates", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3771, "date": "Jan 28 09:01"}, {"filename": "upload_form.template", "parent": "./clover/clover/samples/services/nginx/docker/grpc/templates", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 613, "date": "Jan 28 09:01"}, {"filename": "grpc_process.sh", "parent": "./clover/clover/samples/services/nginx/docker/process", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 333, "date": "Jan 28 09:01"}, {"filename": "start_process.sh", "parent": "./clover/clover/samples/services/nginx/docker/process", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 352, "date": "Jan 28 09:01"}, {"filename": "lb", "parent": "./clover/clover/samples/services/nginx/docker/subservices", "flags": "drwxr-xr-x", "links": 3, "owner": "kbrazil", "group": "staff", "size": 96, "date": "Jan 28 09:01"}, {"filename": "proxy", "parent": "./clover/clover/samples/services/nginx/docker/subservices", "flags": "drwxr-xr-x", "links": 3, "owner": "kbrazil", "group": "staff", "size": 96, "date": "Jan 28 09:01"}, {"filename": "server", "parent": "./clover/clover/samples/services/nginx/docker/subservices", "flags": "drwxr-xr-x", "links": 3, "owner": "kbrazil", "group": "staff", "size": 96, "date": "Jan 28 09:01"}, {"filename": "Dockerfile", "parent": "./clover/clover/samples/services/nginx/docker/subservices/lb", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 776, "date": "Jan 28 09:01"}, {"filename": "Dockerfile", "parent": "./clover/clover/samples/services/nginx/docker/subservices/proxy", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 782, "date": "Jan 28 09:01"}, {"filename": "Dockerfile", "parent": "./clover/clover/samples/services/nginx/docker/subservices/server", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3517, "date": "Jan 28 09:01"}, {"filename": "manifest.template", "parent": "./clover/clover/samples/services/nginx/yaml", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 686, "date": "Jan 28 09:01"}, {"filename": "render_yaml.py", "parent": "./clover/clover/samples/services/nginx/yaml", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2433, "date": "Jan 28 09:01"}, {"filename": "docker", "parent": "./clover/clover/samples/services/snort_ids", "flags": "drwxr-xr-x", "links": 6, "owner": "kbrazil", "group": "staff", "size": 192, "date": "Jan 28 09:01"}, {"filename": "yaml", "parent": "./clover/clover/samples/services/snort_ids", "flags": "drwxr-xr-x", "links": 4, "owner": "kbrazil", "group": "staff", "size": 128, "date": "Jan 28 09:01"}, {"filename": "Dockerfile", "parent": "./clover/clover/samples/services/snort_ids/docker", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2639, "date": "Jan 28 09:01"}, {"filename": "build.sh", "parent": "./clover/clover/samples/services/snort_ids/docker", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 501, "date": "Jan 28 09:01"}, {"filename": "grpc", "parent": "./clover/clover/samples/services/snort_ids/docker", "flags": "drwxr-xr-x", "links": 11, "owner": "kbrazil", "group": "staff", "size": 352, "date": "Jan 28 09:01"}, {"filename": "process", "parent": "./clover/clover/samples/services/snort_ids/docker", "flags": "drwxr-xr-x", "links": 5, "owner": "kbrazil", "group": "staff", "size": 160, "date": "Jan 28 09:01"}, {"filename": "build_proto.sh", "parent": "./clover/clover/samples/services/snort_ids/docker/grpc", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 361, "date": "Jan 28 09:01"}, {"filename": "nginx_pb2.py", "parent": "./clover/clover/samples/services/snort_ids/docker/grpc", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 12865, "date": "Jan 28 09:01"}, {"filename": "nginx_pb2_grpc.py", "parent": "./clover/clover/samples/services/snort_ids/docker/grpc", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3577, "date": "Jan 28 09:01"}, {"filename": "snort.proto", "parent": "./clover/clover/samples/services/snort_ids/docker/grpc", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 806, "date": "Jan 28 09:01"}, {"filename": "snort_alerts.py", "parent": "./clover/clover/samples/services/snort_ids/docker/grpc", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1768, "date": "Jan 28 09:01"}, {"filename": "snort_client.py", "parent": "./clover/clover/samples/services/snort_ids/docker/grpc", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3616, "date": "Jan 28 09:01"}, {"filename": "snort_pb2.py", "parent": "./clover/clover/samples/services/snort_ids/docker/grpc", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 8487, "date": "Jan 28 09:01"}, {"filename": "snort_pb2_grpc.py", "parent": "./clover/clover/samples/services/snort_ids/docker/grpc", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2848, "date": "Jan 28 09:01"}, {"filename": "snort_server.py", "parent": "./clover/clover/samples/services/snort_ids/docker/grpc", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3451, "date": "Jan 28 09:01"}, {"filename": "alert_process.sh", "parent": "./clover/clover/samples/services/snort_ids/docker/process", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 421, "date": "Jan 28 09:01"}, {"filename": "grpc_process.sh", "parent": "./clover/clover/samples/services/snort_ids/docker/process", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 325, "date": "Jan 28 09:01"}, {"filename": "start_process.sh", "parent": "./clover/clover/samples/services/snort_ids/docker/process", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 449, "date": "Jan 28 09:01"}, {"filename": "manifest.template", "parent": "./clover/clover/samples/services/snort_ids/yaml", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 869, "date": "Jan 28 09:01"}, {"filename": "render_yaml.py", "parent": "./clover/clover/samples/services/snort_ids/yaml", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2341, "date": "Jan 28 09:01"}, {"filename": "Dockerfile", "parent": "./envoyonsteroid", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2670, "date": "Dec 23 10:49"}, {"filename": "LICENSE", "parent": "./envoyonsteroid", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1064, "date": "Dec 23 10:49"}, {"filename": "README.md", "parent": "./envoyonsteroid", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 58, "date": "Dec 23 10:49"}, {"filename": "docker-compose.yml", "parent": "./envoyonsteroid", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 882, "date": "Dec 23 10:49"}, {"filename": "lds.yaml", "parent": "./envoyonsteroid", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1683, "date": "Dec 23 10:49"}, {"filename": "roo", "parent": "./envoyonsteroid", "flags": "drwxr-xr-x", "links": 3, "owner": "kbrazil", "group": "staff", "size": 96, "date": "Dec 23 10:49"}, {"filename": "LICENSE.md", "parent": "./jc", "flags": "-rwxrwxrwx", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1068, "date": "Oct 15 14:59"}, {"filename": "MANIFEST.in", "parent": "./jc", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 21, "date": "Feb 8 12:39"}, {"filename": "README.md", "parent": "./jc", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 45946, "date": "Mar 4 08:30"}, {"filename": "_config.yml", "parent": "./jc", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 26, "date": "Dec 6 10:16"}, {"filename": "build", "parent": "./jc", "flags": "drwxr-xr-x", "links": 4, "owner": "kbrazil", "group": "staff", "size": 128, "date": "Oct 17 13:25"}, {"filename": "build-package.sh", "parent": "./jc", "flags": "-rwxrwxrwx", "links": 1, "owner": "kbrazil", "group": "staff", "size": 127, "date": "Oct 15 14:55"}, {"filename": "changelog.txt", "parent": "./jc", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3729, "date": "Mar 6 12:05"}, {"filename": "dist", "parent": "./jc", "flags": "drwxr-xr-x", "links": 5, "owner": "kbrazil", "group": "staff", "size": 160, "date": "Mar 3 13:52"}, {"filename": "docgen.sh", "parent": "./jc", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2840, "date": "Mar 3 11:47"}, {"filename": "docs", "parent": "./jc", "flags": "drwxr-xr-x", "links": 6, "owner": "kbrazil", "group": "staff", "size": 192, "date": "Nov 17 12:00"}, {"filename": "install.sh", "parent": "./jc", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 46, "date": "Nov 17 12:00"}, {"filename": "jc", "parent": "./jc", "flags": "drwxr-xr-x", "links": 9, "owner": "kbrazil", "group": "staff", "size": 288, "date": "Mar 4 16:55"}, {"filename": "jc.egg-info", "parent": "./jc", "flags": "drwxr-xr-x", "links": 8, "owner": "kbrazil", "group": "staff", "size": 256, "date": "Mar 3 13:52"}, {"filename": "pypi-upload.sh", "parent": "./jc", "flags": "-rwxr-xr-x@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 31, "date": "Oct 17 14:59"}, {"filename": "requirements.txt", "parent": "./jc", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 61, "date": "Mar 4 17:05"}, {"filename": "runtests.sh", "parent": "./jc", "flags": "-rwxr-xr-x@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 36, "date": "Oct 31 08:07"}, {"filename": "setup.py", "parent": "./jc", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1007, "date": "Mar 3 11:47"}, {"filename": "tests", "parent": "./jc", "flags": "drwxr-xr-x", "links": 51, "owner": "kbrazil", "group": "staff", "size": 1632, "date": "Mar 4 17:53"}, {"filename": "bdist.macosx-10.14-x86_64", "parent": "./jc/build", "flags": "drwxr-xr-x", "links": 2, "owner": "kbrazil", "group": "staff", "size": 64, "date": "Mar 3 13:52"}, {"filename": "li", "parent": "./jc/build", "flags": "drwxr-xr-x", "links": 4, "owner": "kbrazil", "group": "staff", "size": 128, "date": "Dec 17 12:15"}, {"filename": "jc", "parent": "./jc/build/lib", "flags": "drwxr-xr-x", "links": 7, "owner": "kbrazil", "group": "staff", "size": 224, "date": "Mar 3 13:52"}, {"filename": "tests", "parent": "./jc/build/lib", "flags": "drwxr-xr-x", "links": 49, "owner": "kbrazil", "group": "staff", "size": 1568, "date": "Mar 3 13:52"}, {"filename": "__init__.py", "parent": "./jc/build/lib/jc", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2538, "date": "Nov 17 12:00"}, {"filename": "cli.py", "parent": "./jc/build/lib/jc", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 8721, "date": "Mar 3 11:47"}, {"filename": "jc.py", "parent": "./jc/build/lib/jc", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 981, "date": "Oct 16 17:28"}, {"filename": "parsers", "parent": "./jc/build/lib/jc", "flags": "drwxr-xr-x", "links": 50, "owner": "kbrazil", "group": "staff", "size": 1600, "date": "Mar 3 13:52"}, {"filename": "utils.py", "parent": "./jc/build/lib/jc", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1471, "date": "Dec 17 12:12"}, {"filename": "__init__.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 0, "date": "Nov 7 06:51"}, {"filename": "arp.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 5048, "date": "Feb 13 18:27"}, {"filename": "blkid.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6906, "date": "Mar 3 11:47"}, {"filename": "crontab.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6756, "date": "Feb 13 18:27"}, {"filename": "crontab_u.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 7055, "date": "Feb 8 12:42"}, {"filename": "csv.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3193, "date": "Mar 3 11:47"}, {"filename": "df.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 5176, "date": "Feb 13 18:27"}, {"filename": "dig.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 15625, "date": "Feb 13 18:27"}, {"filename": "du.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3751, "date": "Feb 13 18:27"}, {"filename": "env.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2782, "date": "Feb 13 18:27"}, {"filename": "foo.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1880, "date": "Feb 13 18:27"}, {"filename": "free.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3037, "date": "Feb 13 18:27"}, {"filename": "fstab.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4098, "date": "Feb 13 18:27"}, {"filename": "group.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3976, "date": "Mar 3 11:47"}, {"filename": "gshadow.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3230, "date": "Mar 3 11:47"}, {"filename": "history.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3090, "date": "Feb 13 22:09"}, {"filename": "hosts.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3258, "date": "Feb 5 17:00"}, {"filename": "id.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 5595, "date": "Feb 13 18:27"}, {"filename": "ifconfig.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 7611, "date": "Feb 13 18:27"}, {"filename": "ini.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2418, "date": "Feb 5 17:00"}, {"filename": "iptables.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 7465, "date": "Feb 13 18:27"}, {"filename": "jobs.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4885, "date": "Feb 13 18:27"}, {"filename": "last.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4425, "date": "Mar 3 11:47"}, {"filename": "ls.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 8630, "date": "Mar 3 11:47"}, {"filename": "lsblk.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 9105, "date": "Feb 13 18:27"}, {"filename": "lsmod.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3844, "date": "Feb 13 18:27"}, {"filename": "lsof.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 5434, "date": "Feb 13 18:27"}, {"filename": "mount.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3729, "date": "Feb 13 18:27"}, {"filename": "netstat.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 16129, "date": "Feb 13 18:27"}, {"filename": "passwd.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4055, "date": "Mar 3 11:47"}, {"filename": "pip_list.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2658, "date": "Feb 13 18:27"}, {"filename": "pip_show.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3444, "date": "Feb 13 18:27"}, {"filename": "ps.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6793, "date": "Feb 13 18:27"}, {"filename": "route.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4085, "date": "Feb 13 18:27"}, {"filename": "shadow.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4306, "date": "Mar 3 11:47"}, {"filename": "ss.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 11491, "date": "Feb 13 18:27"}, {"filename": "stat.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 8255, "date": "Feb 13 18:27"}, {"filename": "systemctl.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2940, "date": "Feb 13 18:27"}, {"filename": "systemctl_lj.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3483, "date": "Feb 13 18:27"}, {"filename": "systemctl_ls.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2675, "date": "Feb 13 18:27"}, {"filename": "systemctl_luf.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2585, "date": "Feb 13 18:27"}, {"filename": "uname.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3225, "date": "Feb 13 18:27"}, {"filename": "universal.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4041, "date": "Dec 17 12:12"}, {"filename": "uptime.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3243, "date": "Feb 13 18:27"}, {"filename": "w.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4345, "date": "Feb 13 18:27"}, {"filename": "who.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 7850, "date": "Mar 3 11:47"}, {"filename": "xml.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2747, "date": "Feb 5 17:00"}, {"filename": "yaml.py", "parent": "./jc/build/lib/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3045, "date": "Feb 5 17:00"}, {"filename": "__init__.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 0, "date": "Oct 31 08:07"}, {"filename": "fixtures", "parent": "./jc/build/lib/tests", "flags": "drwxr-xr-x", "links": 9, "owner": "kbrazil", "group": "staff", "size": 288, "date": "Mar 3 13:52"}, {"filename": "test_arp.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4458, "date": "Dec 17 12:12"}, {"filename": "test_blkid.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6230, "date": "Mar 3 11:47"}, {"filename": "test_crontab.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 801, "date": "Feb 5 17:00"}, {"filename": "test_crontab_u.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1426, "date": "Feb 5 17:00"}, {"filename": "test_csv.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 5059, "date": "Mar 3 11:47"}, {"filename": "test_df.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4381, "date": "Dec 17 12:12"}, {"filename": "test_dig.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3440, "date": "Nov 17 12:00"}, {"filename": "test_du.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2271, "date": "Dec 17 12:12"}, {"filename": "test_env.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1278, "date": "Nov 17 12:00"}, {"filename": "test_free.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2373, "date": "Nov 17 12:00"}, {"filename": "test_fstab.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1334, "date": "Nov 17 12:00"}, {"filename": "test_group.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1874, "date": "Mar 3 11:47"}, {"filename": "test_gshadow.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1372, "date": "Mar 3 11:47"}, {"filename": "test_history.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1354, "date": "Nov 17 12:00"}, {"filename": "test_hosts.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1334, "date": "Nov 17 12:00"}, {"filename": "test_id.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1257, "date": "Feb 5 17:00"}, {"filename": "test_ifconfig.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3629, "date": "Dec 17 12:12"}, {"filename": "test_ini.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1332, "date": "Feb 5 17:00"}, {"filename": "test_iptables.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 7909, "date": "Nov 17 12:00"}, {"filename": "test_jobs.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1297, "date": "Nov 17 12:00"}, {"filename": "test_last.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3985, "date": "Mar 3 11:47"}, {"filename": "test_ls.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 18866, "date": "Feb 27 11:25"}, {"filename": "test_lsblk.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2940, "date": "Nov 17 12:00"}, {"filename": "test_lsmod.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1316, "date": "Nov 17 12:00"}, {"filename": "test_lsof.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2419, "date": "Nov 17 12:00"}, {"filename": "test_mount.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2392, "date": "Dec 17 12:12"}, {"filename": "test_netstat.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6114, "date": "Nov 17 12:00"}, {"filename": "test_passwd.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1904, "date": "Mar 3 11:47"}, {"filename": "test_pip_list.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3123, "date": "Dec 17 12:12"}, {"filename": "test_pip_show.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2493, "date": "Dec 17 12:12"}, {"filename": "test_ps.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4517, "date": "Dec 17 12:12"}, {"filename": "test_route.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2426, "date": "Nov 17 12:00"}, {"filename": "test_shadow.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1353, "date": "Mar 3 11:47"}, {"filename": "test_ss.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1373, "date": "Nov 17 12:00"}, {"filename": "test_stat.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1311, "date": "Nov 17 12:00"}, {"filename": "test_systemctl.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1398, "date": "Nov 17 12:00"}, {"filename": "test_systemctl_lj.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1487, "date": "Nov 17 12:00"}, {"filename": "test_systemctl_ls.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1475, "date": "Nov 17 12:00"}, {"filename": "test_systemctl_luf.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1492, "date": "Nov 17 12:00"}, {"filename": "test_uname.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2442, "date": "Dec 17 12:12"}, {"filename": "test_uptime.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2419, "date": "Dec 17 12:12"}, {"filename": "test_w.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2226, "date": "Dec 17 12:12"}, {"filename": "test_who.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3383, "date": "Mar 3 11:47"}, {"filename": "test_xml.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1357, "date": "Feb 5 17:00"}, {"filename": "test_yaml.py", "parent": "./jc/build/lib/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1401, "date": "Feb 5 17:00"}, {"filename": "centos-7.7", "parent": "./jc/build/lib/tests/fixtures", "flags": "drwxr-xr-x", "links": 153, "owner": "kbrazil", "group": "staff", "size": 4896, "date": "Mar 3 13:52"}, {"filename": "create_fixtures.sh", "parent": "./jc/build/lib/tests/fixtures", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3397, "date": "Mar 3 11:47"}, {"filename": "generic", "parent": "./jc/build/lib/tests/fixtures", "flags": "drwxr-xr-x", "links": 34, "owner": "kbrazil", "group": "staff", "size": 1088, "date": "Mar 3 13:52"}, {"filename": "osx-10.11.6", "parent": "./jc/build/lib/tests/fixtures", "flags": "drwxr-xr-x", "links": 41, "owner": "kbrazil", "group": "staff", "size": 1312, "date": "Feb 8 12:42"}, {"filename": "osx-10.14.6", "parent": "./jc/build/lib/tests/fixtures", "flags": "drwxr-xr-x", "links": 71, "owner": "kbrazil", "group": "staff", "size": 2272, "date": "Mar 3 13:52"}, {"filename": "ubuntu-18.04", "parent": "./jc/build/lib/tests/fixtures", "flags": "drwxr-xr-x", "links": 153, "owner": "kbrazil", "group": "staff", "size": 4896, "date": "Mar 3 13:52"}, {"filename": "arp-a.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 350, "date": "Nov 17 12:00"}, {"filename": "arp-a.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 173, "date": "Oct 31 08:07"}, {"filename": "arp-v.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 236, "date": "Nov 17 12:00"}, {"filename": "arp-v.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 274, "date": "Oct 31 08:07"}, {"filename": "arp.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 236, "date": "Nov 17 12:00"}, {"filename": "arp.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 243, "date": "Oct 31 08:07"}, {"filename": "blkid-ip-multi.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 764, "date": "Mar 3 11:47"}, {"filename": "blkid-ip-multi.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 618, "date": "Mar 3 11:47"}, {"filename": "blkid-ip-udev-multi.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 987, "date": "Mar 3 11:47"}, {"filename": "blkid-ip-udev-multi.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 838, "date": "Mar 3 11:47"}, {"filename": "blkid-ip-udev.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 488, "date": "Mar 3 11:47"}, {"filename": "blkid-ip-udev.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 413, "date": "Mar 3 11:47"}, {"filename": "blkid-sda2.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 99, "date": "Mar 3 11:47"}, {"filename": "blkid-sda2.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 77, "date": "Mar 3 11:47"}, {"filename": "blkid.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 392, "date": "Mar 3 11:47"}, {"filename": "blkid.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 307, "date": "Mar 3 11:47"}, {"filename": "crontab-u.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 399, "date": "Feb 5 17:00"}, {"filename": "crontab-u.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 163, "date": "Feb 5 17:00"}, {"filename": "crontab.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1940, "date": "Feb 5 17:00"}, {"filename": "crontab.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1564, "date": "Dec 17 12:12"}, {"filename": "df-h.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 836, "date": "Nov 17 12:00"}, {"filename": "df-h.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 444, "date": "Oct 31 08:07"}, {"filename": "df.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 904, "date": "Dec 17 12:12"}, {"filename": "df.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 524, "date": "Oct 31 08:07"}, {"filename": "dig-aaaa.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 462, "date": "Nov 17 12:00"}, {"filename": "dig-aaaa.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 556, "date": "Oct 31 08:07"}, {"filename": "dig-x.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 464, "date": "Nov 17 12:00"}, {"filename": "dig-x.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 547, "date": "Oct 31 08:07"}, {"filename": "dig.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1005, "date": "Nov 17 12:00"}, {"filename": "dig.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1052, "date": "Oct 31 08:07"}, {"filename": "du.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 365319, "date": "Dec 17 12:12"}, {"filename": "du.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 250940, "date": "Dec 17 12:12"}, {"filename": "env.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2932, "date": "Nov 17 12:00"}, {"filename": "env.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2331, "date": "Oct 31 08:07"}, {"filename": "free-h.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 177, "date": "Nov 17 12:00"}, {"filename": "free-h.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 204, "date": "Oct 31 08:07"}, {"filename": "free.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 194, "date": "Nov 17 12:00"}, {"filename": "free.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 204, "date": "Oct 31 08:07"}, {"filename": "fstab.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 423, "date": "Nov 17 12:00"}, {"filename": "fstab.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 488, "date": "Nov 17 12:00"}, {"filename": "group.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2701, "date": "Mar 3 11:47"}, {"filename": "group.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 509, "date": "Mar 3 11:47"}, {"filename": "gshadow.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3106, "date": "Mar 3 11:47"}, {"filename": "gshadow.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 407, "date": "Mar 3 11:47"}, {"filename": "history.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 47552, "date": "Feb 5 17:00"}, {"filename": "history.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 25967, "date": "Oct 31 08:07"}, {"filename": "hosts.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 223, "date": "Nov 17 12:00"}, {"filename": "hosts.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 193, "date": "Nov 17 12:00"}, {"filename": "id.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 267, "date": "Feb 5 17:00"}, {"filename": "id.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 129, "date": "Feb 5 17:00"}, {"filename": "ifconfig.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1598, "date": "Dec 17 12:12"}, {"filename": "ifconfig.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1259, "date": "Oct 31 08:07"}, {"filename": "iptables-filter-line-numbers.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 7469, "date": "Nov 17 12:00"}, {"filename": "iptables-filter-line-numbers.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6643, "date": "Nov 17 12:00"}, {"filename": "iptables-filter-nv.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 10625, "date": "Nov 17 12:00"}, {"filename": "iptables-filter-nv.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 9064, "date": "Oct 31 08:07"}, {"filename": "iptables-filter.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 7749, "date": "Nov 17 12:00"}, {"filename": "iptables-filter.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6762, "date": "Oct 31 08:07"}, {"filename": "iptables-mangle.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1938, "date": "Nov 17 12:00"}, {"filename": "iptables-mangle.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2399, "date": "Oct 31 08:07"}, {"filename": "iptables-nat.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3211, "date": "Nov 17 12:00"}, {"filename": "iptables-nat.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3484, "date": "Oct 31 08:07"}, {"filename": "iptables-raw.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1386, "date": "Nov 17 12:00"}, {"filename": "iptables-raw.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1616, "date": "Oct 31 08:07"}, {"filename": "jobs.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 306, "date": "Nov 17 12:00"}, {"filename": "jobs.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 164, "date": "Oct 31 08:07"}, {"filename": "last-w.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 9189, "date": "Mar 3 11:47"}, {"filename": "last-w.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 5452, "date": "Mar 3 11:47"}, {"filename": "last.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 8934, "date": "Mar 3 11:47"}, {"filename": "last.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 5197, "date": "Mar 3 11:47"}, {"filename": "lastb.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 511, "date": "Mar 3 11:47"}, {"filename": "lastb.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 346, "date": "Mar 3 11:47"}, {"filename": "ls-R-newlines.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1281, "date": "Feb 27 11:25"}, {"filename": "ls-R-newlines.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 542, "date": "Feb 27 11:25"}, {"filename": "ls-R.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 315329, "date": "Feb 19 07:07"}, {"filename": "ls-R.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 72565, "date": "Feb 19 07:07"}, {"filename": "ls-al.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2776, "date": "Nov 17 12:00"}, {"filename": "ls-al.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1070, "date": "Oct 31 08:07"}, {"filename": "ls-alR.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 773278, "date": "Feb 19 07:07"}, {"filename": "ls-alR.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 281708, "date": "Feb 19 07:07"}, {"filename": "ls-alh.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2776, "date": "Nov 17 12:00"}, {"filename": "ls-alh.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1071, "date": "Oct 31 08:07"}, {"filename": "ls-glob.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 97675, "date": "Feb 19 07:07"}, {"filename": "ls-glob.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 22048, "date": "Feb 19 07:07"}, {"filename": "ls-l-newlines.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1183, "date": "Feb 27 11:25"}, {"filename": "ls-l-newlines.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 583, "date": "Feb 27 11:25"}, {"filename": "ls-lR-newlines.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2576, "date": "Feb 27 11:25"}, {"filename": "ls-lR-newlines.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1209, "date": "Feb 27 11:25"}, {"filename": "ls-newlines.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 498, "date": "Feb 27 11:25"}, {"filename": "ls-newlines.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 260, "date": "Feb 27 11:25"}, {"filename": "ls.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 409, "date": "Nov 17 12:00"}, {"filename": "ls.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 85, "date": "Oct 31 08:07"}, {"filename": "lsblk-allcols.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4102, "date": "Nov 17 12:00"}, {"filename": "lsblk-allcols.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2502, "date": "Nov 17 12:00"}, {"filename": "lsblk.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 698, "date": "Nov 17 12:00"}, {"filename": "lsblk.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 332, "date": "Oct 31 08:07"}, {"filename": "lsmod.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6655, "date": "Nov 17 12:00"}, {"filename": "lsmod.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4161, "date": "Oct 31 08:07"}, {"filename": "lsof-sudo.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 618317, "date": "Nov 17 12:00"}, {"filename": "lsof-sudo.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 363073, "date": "Oct 31 08:07"}, {"filename": "lsof.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 126050, "date": "Nov 17 12:00"}, {"filename": "lsof.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 70567, "date": "Oct 31 08:07"}, {"filename": "mount.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4848, "date": "Nov 17 12:00"}, {"filename": "mount.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2711, "date": "Oct 31 08:07"}, {"filename": "netstat-l.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 7020, "date": "Nov 17 12:00"}, {"filename": "netstat-l.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3499, "date": "Oct 31 08:07"}, {"filename": "netstat-p.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 17621, "date": "Nov 17 12:00"}, {"filename": "netstat-p.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 10407, "date": "Oct 31 08:07"}, {"filename": "netstat-sudo-aeep.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 29188, "date": "Nov 17 12:00"}, {"filename": "netstat-sudo-aeep.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 14986, "date": "Nov 17 12:00"}, {"filename": "netstat-sudo-lnp.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 8734, "date": "Nov 17 12:00"}, {"filename": "netstat-sudo-lnp.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4402, "date": "Oct 31 08:07"}, {"filename": "netstat.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 15637, "date": "Nov 17 12:00"}, {"filename": "netstat.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 8068, "date": "Oct 31 08:07"}, {"filename": "passwd.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2747, "date": "Mar 3 11:47"}, {"filename": "passwd.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 961, "date": "Mar 3 11:47"}, {"filename": "pip-list.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 905, "date": "Dec 17 12:12"}, {"filename": "pip-list.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 616, "date": "Dec 17 12:12"}, {"filename": "pip-show.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1129, "date": "Dec 17 12:12"}, {"filename": "pip-show.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 974, "date": "Dec 17 12:12"}, {"filename": "ps-axu.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 20936, "date": "Nov 17 12:00"}, {"filename": "ps-axu.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 9932, "date": "Oct 31 08:07"}, {"filename": "ps-ef.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 14630, "date": "Nov 17 12:00"}, {"filename": "ps-ef.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 8168, "date": "Oct 31 08:07"}, {"filename": "route-vn.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 442, "date": "Nov 17 12:00"}, {"filename": "route-vn.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 338, "date": "Oct 31 08:07"}, {"filename": "route.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 437, "date": "Nov 17 12:00"}, {"filename": "route.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 338, "date": "Oct 31 08:07"}, {"filename": "shadow.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3206, "date": "Mar 3 11:47"}, {"filename": "shadow.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 740, "date": "Mar 3 11:47"}, {"filename": "ss-sudo-a.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 29301, "date": "Nov 17 12:00"}, {"filename": "ss-sudo-a.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 17945, "date": "Nov 17 12:00"}, {"filename": "stat.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 322074, "date": "Nov 17 12:00"}, {"filename": "stat.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 295777, "date": "Nov 17 12:00"}, {"filename": "systemctl-ls.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1439, "date": "Nov 17 12:00"}, {"filename": "systemctl-ls.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1159, "date": "Nov 17 12:00"}, {"filename": "systemctl-luf.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 14574, "date": "Nov 17 12:00"}, {"filename": "systemctl-luf.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 13499, "date": "Nov 17 12:00"}, {"filename": "systemctl.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 31968, "date": "Nov 17 12:00"}, {"filename": "systemctl.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 38560, "date": "Nov 17 12:00"}, {"filename": "uname-a.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 276, "date": "Nov 17 12:00"}, {"filename": "uname-a.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 122, "date": "Oct 31 08:07"}, {"filename": "uptime.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 103, "date": "Nov 17 12:00"}, {"filename": "uptime.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 62, "date": "Oct 31 08:07"}, {"filename": "w.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 287, "date": "Nov 17 12:00"}, {"filename": "w.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 266, "date": "Oct 31 08:07"}, {"filename": "who-a.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 549, "date": "Mar 3 11:47"}, {"filename": "who-a.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 364, "date": "Mar 3 11:47"}, {"filename": "who.json", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 155, "date": "Mar 3 11:47"}, {"filename": "who.out", "parent": "./jc/build/lib/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 93, "date": "Mar 3 11:47"}, {"filename": "csv-biostats.csv", "parent": "./jc/build/lib/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 849, "date": "Mar 3 11:47"}, {"filename": "csv-biostats.json", "parent": "./jc/build/lib/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1566, "date": "Mar 3 11:47"}, {"filename": "csv-cities.csv", "parent": "./jc/build/lib/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 8402, "date": "Mar 3 11:47"}, {"filename": "csv-cities.json", "parent": "./jc/build/lib/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 18398, "date": "Mar 3 11:47"}, {"filename": "csv-deniro.csv", "parent": "./jc/build/lib/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2391, "date": "Mar 3 11:47"}, {"filename": "csv-deniro.json", "parent": "./jc/build/lib/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 5146, "date": "Mar 3 11:47"}, {"filename": "csv-example.csv", "parent": "./jc/build/lib/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1117, "date": "Mar 3 11:47"}, {"filename": "csv-example.json", "parent": "./jc/build/lib/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1588, "date": "Mar 3 11:47"}, {"filename": "csv-flyrna.json", "parent": "./jc/build/lib/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 558246, "date": "Mar 3 11:47"}, {"filename": "csv-flyrna.tsv", "parent": "./jc/build/lib/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 205281, "date": "Mar 3 11:47"}, {"filename": "csv-flyrna2.json", "parent": "./jc/build/lib/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 556670, "date": "Mar 3 11:47"}, {"filename": "csv-flyrna2.tsv", "parent": "./jc/build/lib/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 203705, "date": "Mar 3 11:47"}, {"filename": "csv-homes-pipe.csv", "parent": "./jc/build/lib/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 158, "date": "Mar 3 11:47"}, {"filename": "csv-homes-pipe.json", "parent": "./jc/build/lib/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 274, "date": "Mar 3 11:47"}, {"filename": "csv-homes.csv", "parent": "./jc/build/lib/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2125, "date": "Mar 3 11:47"}, {"filename": "csv-homes.json", "parent": "./jc/build/lib/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6798, "date": "Mar 3 11:47"}, {"filename": "csv-insurance.csv", "parent": "./jc/build/lib/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 53816, "date": "Mar 3 11:47"}, {"filename": "csv-insurance.json", "parent": "./jc/build/lib/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 229722, "date": "Mar 3 11:47"}, {"filename": "ini-iptelserver.ini", "parent": "./jc/build/lib/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4705, "date": "Feb 5 17:00"}, {"filename": "ini-iptelserver.json", "parent": "./jc/build/lib/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1486, "date": "Feb 5 17:00"}, {"filename": "ini-test.ini", "parent": "./jc/build/lib/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 171, "date": "Feb 5 17:00"}, {"filename": "ini-test.json", "parent": "./jc/build/lib/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 270, "date": "Feb 5 17:00"}, {"filename": "oscar_age_male.csv", "parent": "./jc/build/lib/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4413, "date": "Mar 3 11:47"}, {"filename": "xml-cd_catalog.json", "parent": "./jc/build/lib/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3294, "date": "Feb 5 17:00"}, {"filename": "xml-cd_catalog.xml", "parent": "./jc/build/lib/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 5077, "date": "Feb 5 17:00"}, {"filename": "xml-foodmenu.json", "parent": "./jc/build/lib/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 811, "date": "Feb 5 17:00"}, {"filename": "xml-foodmenu.xml", "parent": "./jc/build/lib/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1102, "date": "Feb 5 17:00"}, {"filename": "yaml-istio-sc.json", "parent": "./jc/build/lib/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 333, "date": "Feb 5 17:00"}, {"filename": "yaml-istio-sc.yaml", "parent": "./jc/build/lib/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 305, "date": "Feb 5 17:00"}, {"filename": "yaml-istio-sidecar.json", "parent": "./jc/build/lib/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3178, "date": "Feb 5 17:00"}, {"filename": "yaml-istio-sidecar.yaml", "parent": "./jc/build/lib/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3681, "date": "Feb 5 17:00"}, {"filename": "arp-a.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.11.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1669, "date": "Dec 17 12:12"}, {"filename": "arp-a.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.11.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1036, "date": "Dec 17 12:12"}, {"filename": "df-h.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.11.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1151, "date": "Dec 17 12:12"}, {"filename": "df-h.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.11.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 908, "date": "Dec 17 12:12"}, {"filename": "df.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.11.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1196, "date": "Dec 17 12:12"}, {"filename": "df.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.11.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 992, "date": "Dec 17 12:12"}, {"filename": "dig-aaaa.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.11.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 439, "date": "Dec 17 12:12"}, {"filename": "dig-aaaa.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.11.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 537, "date": "Dec 17 12:12"}, {"filename": "dig-x.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.11.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 442, "date": "Dec 17 12:12"}, {"filename": "dig-x.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.11.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 529, "date": "Dec 17 12:12"}, {"filename": "dig.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.11.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1272, "date": "Dec 17 12:12"}, {"filename": "dig.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.11.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1188, "date": "Dec 17 12:12"}, {"filename": "du.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.11.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 221050, "date": "Dec 17 12:12"}, {"filename": "du.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.11.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 166687, "date": "Dec 17 12:12"}, {"filename": "ifconfig.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.11.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3791, "date": "Dec 17 12:12"}, {"filename": "ifconfig.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.11.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1571, "date": "Dec 17 12:12"}, {"filename": "ifconfig2.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.11.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3791, "date": "Dec 17 12:12"}, {"filename": "ifconfig2.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.11.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1571, "date": "Dec 17 12:12"}, {"filename": "ls-al.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.11.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4259, "date": "Dec 17 12:12"}, {"filename": "ls-al.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.11.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1851, "date": "Dec 17 12:12"}, {"filename": "ls-alh.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.11.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4296, "date": "Dec 17 12:12"}, {"filename": "ls-alh.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.11.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1882, "date": "Dec 17 12:12"}, {"filename": "ls.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.11.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 533, "date": "Dec 17 12:12"}, {"filename": "ls.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.11.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 175, "date": "Dec 17 12:12"}, {"filename": "pip-list.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.11.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 224, "date": "Dec 17 12:12"}, {"filename": "pip-list.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.11.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 168, "date": "Dec 17 12:12"}, {"filename": "pip-show.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.11.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1028, "date": "Dec 17 12:12"}, {"filename": "pip-show.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.11.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 867, "date": "Dec 17 12:12"}, {"filename": "ps-axu.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.11.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 53632, "date": "Dec 17 12:12"}, {"filename": "ps-axu.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.11.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 32255, "date": "Dec 17 12:12"}, {"filename": "ps-ef.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.11.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 38291, "date": "Dec 17 12:12"}, {"filename": "ps-ef.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.11.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 25921, "date": "Dec 17 12:12"}, {"filename": "uname-a.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.11.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 233, "date": "Dec 17 12:12"}, {"filename": "uname-a.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.11.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 142, "date": "Dec 17 12:12"}, {"filename": "uptime.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.11.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 102, "date": "Dec 17 12:12"}, {"filename": "uptime.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.11.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 57, "date": "Dec 17 12:12"}, {"filename": "w.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.11.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 627, "date": "Dec 17 12:12"}, {"filename": "w.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.11.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 458, "date": "Dec 17 12:12"}, {"filename": "arp-a.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1541, "date": "Dec 17 12:12"}, {"filename": "arp-a.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 968, "date": "Dec 17 12:12"}, {"filename": "df-h.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1686, "date": "Dec 17 12:12"}, {"filename": "df-h.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1276, "date": "Dec 17 12:12"}, {"filename": "df.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1764, "date": "Dec 17 12:12"}, {"filename": "df.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1384, "date": "Dec 17 12:12"}, {"filename": "dig-aaaa.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 438, "date": "Dec 17 12:12"}, {"filename": "dig-aaaa.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 536, "date": "Dec 17 12:12"}, {"filename": "dig-x.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 442, "date": "Dec 17 12:12"}, {"filename": "dig-x.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 529, "date": "Dec 17 12:12"}, {"filename": "dig.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1266, "date": "Dec 17 12:12"}, {"filename": "dig.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1182, "date": "Dec 17 12:12"}, {"filename": "du.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 296296, "date": "Dec 17 12:12"}, {"filename": "du.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 222287, "date": "Dec 17 12:12"}, {"filename": "group.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 9646, "date": "Mar 3 11:47"}, {"filename": "group.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2823, "date": "Mar 3 11:47"}, {"filename": "id.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 759, "date": "Feb 5 17:00"}, {"filename": "id.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 386, "date": "Feb 5 17:00"}, {"filename": "ifconfig.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 10823, "date": "Dec 17 12:12"}, {"filename": "ifconfig.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3779, "date": "Dec 17 12:12"}, {"filename": "ifconfig2.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 11375, "date": "Dec 17 12:12"}, {"filename": "ifconfig2.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3979, "date": "Dec 17 12:12"}, {"filename": "last.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 45274, "date": "Mar 3 11:47"}, {"filename": "last.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 25827, "date": "Mar 3 11:47"}, {"filename": "ls-R-newlines.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 852, "date": "Feb 27 11:25"}, {"filename": "ls-R-newlines.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 278, "date": "Feb 27 11:25"}, {"filename": "ls-R.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 469418, "date": "Feb 19 07:07"}, {"filename": "ls-R.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 133787, "date": "Feb 19 07:07"}, {"filename": "ls-al.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4653, "date": "Dec 17 12:12"}, {"filename": "ls-al.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2111, "date": "Dec 17 12:12"}, {"filename": "ls-alR.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 959674, "date": "Feb 19 07:07"}, {"filename": "ls-alR.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 364578, "date": "Feb 19 07:07"}, {"filename": "ls-alh.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4684, "date": "Dec 17 12:12"}, {"filename": "ls-alh.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2111, "date": "Dec 17 12:12"}, {"filename": "ls-glob.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 91499, "date": "Feb 19 07:07"}, {"filename": "ls-glob.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 19369, "date": "Feb 19 07:07"}, {"filename": "ls-l-newlines.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1162, "date": "Feb 27 11:25"}, {"filename": "ls-l-newlines.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 583, "date": "Feb 27 11:25"}, {"filename": "ls-lR-newlines.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1450, "date": "Feb 27 11:25"}, {"filename": "ls-lR-newlines.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 656, "date": "Feb 27 11:25"}, {"filename": "ls-newlines.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 498, "date": "Feb 27 11:25"}, {"filename": "ls-newlines.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 260, "date": "Feb 27 11:25"}, {"filename": "ls.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 585, "date": "Dec 17 12:12"}, {"filename": "ls.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 193, "date": "Dec 17 12:12"}, {"filename": "mount.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 672, "date": "Dec 17 12:12"}, {"filename": "mount.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 349, "date": "Dec 17 12:12"}, {"filename": "mount2.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 841, "date": "Dec 17 12:12"}, {"filename": "mount2.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 464, "date": "Dec 17 12:12"}, {"filename": "passwd.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 14855, "date": "Mar 3 11:47"}, {"filename": "passwd.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6804, "date": "Mar 3 11:47"}, {"filename": "pip-list.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 224, "date": "Dec 17 12:12"}, {"filename": "pip-list.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 168, "date": "Dec 17 12:12"}, {"filename": "pip-show.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1067, "date": "Dec 17 12:12"}, {"filename": "pip-show.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 910, "date": "Dec 17 12:12"}, {"filename": "ps-axu.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 99173, "date": "Dec 17 12:12"}, {"filename": "ps-axu.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 60107, "date": "Dec 17 12:12"}, {"filename": "ps-ef.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 71162, "date": "Dec 17 12:12"}, {"filename": "ps-ef.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 48758, "date": "Dec 17 12:12"}, {"filename": "uname-a.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 221, "date": "Dec 17 12:12"}, {"filename": "uname-a.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 131, "date": "Dec 17 12:12"}, {"filename": "uptime.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 110, "date": "Dec 17 12:12"}, {"filename": "uptime.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 65, "date": "Dec 17 12:12"}, {"filename": "w.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 836, "date": "Dec 17 12:12"}, {"filename": "w.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 570, "date": "Dec 17 12:12"}, {"filename": "who-a.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 659, "date": "Mar 3 11:47"}, {"filename": "who-a.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 419, "date": "Mar 3 11:47"}, {"filename": "who.json", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 251, "date": "Mar 3 11:47"}, {"filename": "who.out", "parent": "./jc/build/lib/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 128, "date": "Mar 3 11:47"}, {"filename": "arp-a.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 351, "date": "Nov 17 12:00"}, {"filename": "arp-a.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 174, "date": "Oct 31 08:07"}, {"filename": "arp-v.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 237, "date": "Nov 17 12:00"}, {"filename": "arp-v.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 274, "date": "Oct 31 08:07"}, {"filename": "arp.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 237, "date": "Nov 17 12:00"}, {"filename": "arp.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 243, "date": "Oct 31 08:07"}, {"filename": "blkid-ip-multi.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 818, "date": "Mar 3 11:47"}, {"filename": "blkid-ip-multi.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 717, "date": "Mar 3 11:47"}, {"filename": "blkid-ip-udev-multi.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 962, "date": "Mar 3 11:47"}, {"filename": "blkid-ip-udev-multi.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 832, "date": "Mar 3 11:47"}, {"filename": "blkid-ip-udev.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 547, "date": "Mar 3 11:47"}, {"filename": "blkid-ip-udev.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 478, "date": "Mar 3 11:47"}, {"filename": "blkid-sda2.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 142, "date": "Mar 3 11:47"}, {"filename": "blkid-sda2.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 115, "date": "Mar 3 11:47"}, {"filename": "blkid.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 986, "date": "Mar 3 11:47"}, {"filename": "blkid.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 675, "date": "Mar 3 11:47"}, {"filename": "crontab-u.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 939, "date": "Feb 5 17:00"}, {"filename": "crontab-u.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 752, "date": "Feb 5 17:00"}, {"filename": "df-h.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2261, "date": "Nov 17 12:00"}, {"filename": "df-h.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1004, "date": "Oct 31 08:07"}, {"filename": "df.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2372, "date": "Dec 17 12:12"}, {"filename": "df.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1194, "date": "Oct 31 08:07"}, {"filename": "dig-aaaa.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 458, "date": "Nov 17 12:00"}, {"filename": "dig-aaaa.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 532, "date": "Oct 31 08:07"}, {"filename": "dig-x.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 460, "date": "Nov 17 12:00"}, {"filename": "dig-x.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 523, "date": "Oct 31 08:07"}, {"filename": "dig.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1306, "date": "Nov 17 12:00"}, {"filename": "dig.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1156, "date": "Oct 31 08:07"}, {"filename": "du.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1560353, "date": "Dec 17 12:12"}, {"filename": "du.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1136984, "date": "Dec 17 12:12"}, {"filename": "env.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2651, "date": "Nov 17 12:00"}, {"filename": "env.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2125, "date": "Oct 31 08:07"}, {"filename": "free-h.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 177, "date": "Nov 17 12:00"}, {"filename": "free-h.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 204, "date": "Oct 31 08:07"}, {"filename": "free.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 195, "date": "Nov 17 12:00"}, {"filename": "free.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 204, "date": "Oct 31 08:07"}, {"filename": "fstab.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 268, "date": "Nov 17 12:00"}, {"filename": "fstab.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 120, "date": "Nov 17 12:00"}, {"filename": "group.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3705, "date": "Mar 3 11:47"}, {"filename": "group.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 721, "date": "Mar 3 11:47"}, {"filename": "gshadow.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4279, "date": "Mar 3 11:47"}, {"filename": "gshadow.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 606, "date": "Mar 3 11:47"}, {"filename": "history.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 22782, "date": "Feb 5 17:00"}, {"filename": "history.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 12844, "date": "Oct 31 08:07"}, {"filename": "hosts.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 365, "date": "Nov 17 12:00"}, {"filename": "hosts.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 272, "date": "Nov 17 12:00"}, {"filename": "ifconfig.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1090, "date": "Dec 17 12:12"}, {"filename": "ifconfig.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 894, "date": "Oct 31 08:07"}, {"filename": "iptables-filter-line-numbers.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 847, "date": "Nov 17 12:00"}, {"filename": "iptables-filter-line-numbers.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1025, "date": "Nov 17 12:00"}, {"filename": "iptables-filter-nv.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2363, "date": "Nov 17 12:00"}, {"filename": "iptables-filter-nv.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2763, "date": "Oct 31 08:07"}, {"filename": "iptables-filter.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1730, "date": "Nov 17 12:00"}, {"filename": "iptables-filter.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2035, "date": "Oct 31 08:07"}, {"filename": "iptables-mangle.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 141, "date": "Nov 17 12:00"}, {"filename": "iptables-mangle.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 468, "date": "Oct 31 08:07"}, {"filename": "iptables-nat.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 106, "date": "Nov 17 12:00"}, {"filename": "iptables-nat.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 375, "date": "Oct 31 08:07"}, {"filename": "iptables-raw.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 39, "date": "Nov 17 12:00"}, {"filename": "iptables-raw.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 187, "date": "Oct 31 08:07"}, {"filename": "jobs.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 306, "date": "Nov 17 12:00"}, {"filename": "jobs.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 164, "date": "Oct 31 08:07"}, {"filename": "last-w.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1852, "date": "Mar 3 11:47"}, {"filename": "last-w.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1073, "date": "Mar 3 11:47"}, {"filename": "last.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1845, "date": "Mar 3 11:47"}, {"filename": "last.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1066, "date": "Mar 3 11:47"}, {"filename": "lastb.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 125, "date": "Mar 3 11:47"}, {"filename": "lastb.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 111, "date": "Mar 3 11:47"}, {"filename": "ls-R-newlines.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1114, "date": "Feb 27 11:25"}, {"filename": "ls-R-newlines.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 471, "date": "Feb 27 11:25"}, {"filename": "ls-R.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 298654, "date": "Feb 19 07:07"}, {"filename": "ls-R.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 62421, "date": "Feb 19 07:07"}, {"filename": "ls-al.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3950, "date": "Nov 17 12:00"}, {"filename": "ls-al.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1744, "date": "Oct 31 08:07"}, {"filename": "ls-alR.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 772252, "date": "Feb 19 07:07"}, {"filename": "ls-alR.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 262651, "date": "Feb 19 07:07"}, {"filename": "ls-alh.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3942, "date": "Nov 17 12:00"}, {"filename": "ls-alh.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1567, "date": "Oct 31 08:07"}, {"filename": "ls-glob.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 66907, "date": "Feb 19 07:07"}, {"filename": "ls-glob.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 13721, "date": "Feb 19 07:07"}, {"filename": "ls-l-newlines.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1176, "date": "Feb 27 11:25"}, {"filename": "ls-l-newlines.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 576, "date": "Feb 27 11:25"}, {"filename": "ls-lR-newlines.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2089, "date": "Feb 27 11:25"}, {"filename": "ls-lR-newlines.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 984, "date": "Feb 27 11:25"}, {"filename": "ls-newlines.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 498, "date": "Feb 27 11:25"}, {"filename": "ls-newlines.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 260, "date": "Feb 27 11:25"}, {"filename": "ls.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 622, "date": "Nov 17 12:00"}, {"filename": "ls.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 162, "date": "Oct 31 08:07"}, {"filename": "lsblk-allcols.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 11397, "date": "Nov 17 12:00"}, {"filename": "lsblk-allcols.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 7364, "date": "Nov 17 12:00"}, {"filename": "lsblk.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2114, "date": "Nov 17 12:00"}, {"filename": "lsblk.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 812, "date": "Oct 31 08:07"}, {"filename": "lsmod.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6744, "date": "Nov 17 12:00"}, {"filename": "lsmod.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4251, "date": "Oct 31 08:07"}, {"filename": "lsof-sudo.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 526695, "date": "Nov 17 12:00"}, {"filename": "lsof-sudo.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 342863, "date": "Oct 31 08:07"}, {"filename": "lsof.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 194044, "date": "Nov 17 12:00"}, {"filename": "lsof.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 132043, "date": "Oct 31 08:07"}, {"filename": "mount.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6547, "date": "Nov 17 12:00"}, {"filename": "mount.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3708, "date": "Oct 31 08:07"}, {"filename": "netstat-l.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 5079, "date": "Nov 17 12:00"}, {"filename": "netstat-l.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2606, "date": "Oct 31 08:07"}, {"filename": "netstat-p.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 14711, "date": "Nov 17 12:00"}, {"filename": "netstat-p.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 8706, "date": "Oct 31 08:07"}, {"filename": "netstat-sudo-aeep.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 22957, "date": "Nov 17 12:00"}, {"filename": "netstat-sudo-aeep.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 12016, "date": "Nov 17 12:00"}, {"filename": "netstat-sudo-lnp.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6259, "date": "Nov 17 12:00"}, {"filename": "netstat-sudo-lnp.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3236, "date": "Oct 31 08:07"}, {"filename": "netstat.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 12550, "date": "Nov 17 12:00"}, {"filename": "netstat.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6711, "date": "Oct 31 08:07"}, {"filename": "passwd.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4116, "date": "Mar 3 11:47"}, {"filename": "passwd.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1565, "date": "Mar 3 11:47"}, {"filename": "pip-list-legacy.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2638, "date": "Dec 17 12:12"}, {"filename": "pip-list-legacy.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1041, "date": "Dec 17 12:12"}, {"filename": "pip-list.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2638, "date": "Dec 17 12:12"}, {"filename": "pip-list.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2360, "date": "Dec 17 12:12"}, {"filename": "pip-show.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 874, "date": "Dec 17 12:12"}, {"filename": "pip-show.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 730, "date": "Dec 17 12:12"}, {"filename": "ps-axu.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 31390, "date": "Nov 17 12:00"}, {"filename": "ps-axu.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 14127, "date": "Oct 31 08:07"}, {"filename": "ps-ef.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 21583, "date": "Nov 17 12:00"}, {"filename": "ps-ef.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 11355, "date": "Oct 31 08:07"}, {"filename": "route-vn.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 447, "date": "Nov 17 12:00"}, {"filename": "route-vn.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 336, "date": "Oct 31 08:07"}, {"filename": "route.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 439, "date": "Nov 17 12:00"}, {"filename": "route.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 336, "date": "Oct 31 08:07"}, {"filename": "shadow.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4330, "date": "Mar 3 11:47"}, {"filename": "shadow.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 939, "date": "Mar 3 11:47"}, {"filename": "ss-sudo-a.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 23277, "date": "Nov 17 12:00"}, {"filename": "ss-sudo-a.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 25599, "date": "Nov 17 12:00"}, {"filename": "stat.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 73147, "date": "Nov 17 12:00"}, {"filename": "stat.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 60023, "date": "Nov 17 12:00"}, {"filename": "systemctl-lj.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 270, "date": "Nov 17 12:00"}, {"filename": "systemctl-lj.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 244, "date": "Nov 17 12:00"}, {"filename": "systemctl-ls.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2431, "date": "Nov 17 12:00"}, {"filename": "systemctl-ls.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2072, "date": "Nov 17 12:00"}, {"filename": "systemctl-luf.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 18756, "date": "Nov 17 12:00"}, {"filename": "systemctl-luf.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 17734, "date": "Nov 17 12:00"}, {"filename": "systemctl.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 47895, "date": "Nov 17 12:00"}, {"filename": "systemctl.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 76059, "date": "Nov 17 12:00"}, {"filename": "uname-a.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 268, "date": "Nov 17 12:00"}, {"filename": "uname-a.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 114, "date": "Oct 31 08:07"}, {"filename": "uptime.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 109, "date": "Nov 17 12:00"}, {"filename": "uptime.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 70, "date": "Oct 31 08:07"}, {"filename": "w.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 292, "date": "Nov 17 12:00"}, {"filename": "w.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 274, "date": "Oct 31 08:07"}, {"filename": "who-a.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 452, "date": "Mar 3 11:47"}, {"filename": "who-a.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 355, "date": "Mar 3 11:47"}, {"filename": "who.json", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 155, "date": "Mar 3 11:47"}, {"filename": "who.out", "parent": "./jc/build/lib/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 140, "date": "Mar 3 11:47"}, {"filename": "jc-1.8.0-py3-none-any.whl", "parent": "./jc/dist", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1835119, "date": "Mar 3 13:52"}, {"filename": "jc-1.8.0.tar.gz", "parent": "./jc/dist", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1606987, "date": "Mar 3 13:52"}, {"filename": "parsers", "parent": "./jc/docs", "flags": "drwxr-xr-x", "links": 48, "owner": "kbrazil", "group": "staff", "size": 1536, "date": "Mar 3 11:47"}, {"filename": "readme.md", "parent": "./jc/docs", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2523, "date": "Mar 3 10:54"}, {"filename": "utils.md", "parent": "./jc/docs", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 918, "date": "Mar 3 10:54"}, {"filename": "arp.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2613, "date": "Mar 3 10:54"}, {"filename": "blkid.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4263, "date": "Mar 3 11:47"}, {"filename": "crontab.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4075, "date": "Mar 3 10:54"}, {"filename": "crontab_u.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4286, "date": "Mar 3 10:54"}, {"filename": "csv.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2175, "date": "Mar 3 11:47"}, {"filename": "df.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2544, "date": "Mar 3 10:54"}, {"filename": "dig.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 9210, "date": "Mar 3 10:54"}, {"filename": "du.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2591, "date": "Mar 3 10:54"}, {"filename": "env.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1709, "date": "Mar 3 10:54"}, {"filename": "free.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1799, "date": "Mar 3 10:54"}, {"filename": "fstab.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2389, "date": "Mar 3 10:54"}, {"filename": "group.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2485, "date": "Mar 3 11:47"}, {"filename": "gshadow.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1902, "date": "Mar 3 11:47"}, {"filename": "history.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1500, "date": "Mar 3 10:54"}, {"filename": "hosts.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1779, "date": "Mar 3 10:54"}, {"filename": "id.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2331, "date": "Mar 3 10:54"}, {"filename": "ifconfig.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 5199, "date": "Mar 3 10:54"}, {"filename": "ini.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1623, "date": "Mar 3 10:54"}, {"filename": "iptables.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4501, "date": "Mar 3 10:54"}, {"filename": "jobs.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2326, "date": "Mar 3 10:54"}, {"filename": "last.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2261, "date": "Mar 3 11:47"}, {"filename": "ls.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4290, "date": "Mar 3 11:47"}, {"filename": "lsblk.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 7177, "date": "Mar 3 10:54"}, {"filename": "lsmod.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2723, "date": "Mar 3 10:54"}, {"filename": "lsof.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2818, "date": "Mar 3 10:54"}, {"filename": "mount.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1807, "date": "Mar 3 10:54"}, {"filename": "netstat.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 9469, "date": "Mar 3 10:54"}, {"filename": "passwd.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2506, "date": "Mar 3 11:47"}, {"filename": "pip_list.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1309, "date": "Mar 3 10:54"}, {"filename": "pip_show.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2194, "date": "Mar 3 10:54"}, {"filename": "ps.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4860, "date": "Mar 3 10:54"}, {"filename": "route.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3030, "date": "Mar 3 10:54"}, {"filename": "shadow.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2637, "date": "Mar 3 11:47"}, {"filename": "ss.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 7404, "date": "Mar 3 10:54"}, {"filename": "stat.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4013, "date": "Mar 3 10:54"}, {"filename": "systemctl.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1751, "date": "Mar 3 10:54"}, {"filename": "systemctl_lj.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1951, "date": "Mar 3 10:54"}, {"filename": "systemctl_ls.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1473, "date": "Mar 3 10:54"}, {"filename": "systemctl_luf.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1316, "date": "Mar 3 10:54"}, {"filename": "uname.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1530, "date": "Mar 3 10:54"}, {"filename": "uptime.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1404, "date": "Mar 3 10:54"}, {"filename": "w.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2588, "date": "Mar 3 10:54"}, {"filename": "who.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3078, "date": "Mar 3 11:47"}, {"filename": "xml.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2047, "date": "Mar 3 10:54"}, {"filename": "yaml.md", "parent": "./jc/docs/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2257, "date": "Mar 3 10:54"}, {"filename": "__init__.py", "parent": "./jc/jc", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2538, "date": "Nov 17 12:00"}, {"filename": "__pycache__", "parent": "./jc/jc", "flags": "drwxr-xr-x", "links": 6, "owner": "kbrazil", "group": "staff", "size": 192, "date": "Mar 4 17:20"}, {"filename": "cli.py", "parent": "./jc/jc", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 8192, "date": "Mar 4 16:55"}, {"filename": "parsers", "parent": "./jc/jc", "flags": "drwxr-xr-x", "links": 52, "owner": "kbrazil", "group": "staff", "size": 1664, "date": "Mar 4 17:05"}, {"filename": "parsers.old", "parent": "./jc/jc", "flags": "drwxr-xr-x", "links": 6, "owner": "kbrazil", "group": "staff", "size": 192, "date": "Nov 7 13:56"}, {"filename": "utils.py", "parent": "./jc/jc", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1471, "date": "Dec 17 12:12"}, {"filename": "__init__.cpython-37.pyc", "parent": "./jc/jc/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2672, "date": "Nov 20 09:35"}, {"filename": "cli.cpython-37.pyc", "parent": "./jc/jc/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6279, "date": "Mar 4 17:20"}, {"filename": "jc.cpython-37.pyc", "parent": "./jc/jc/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2115, "date": "Nov 6 21:27"}, {"filename": "utils.cpython-37.pyc", "parent": "./jc/jc/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1740, "date": "Dec 17 15:04"}, {"filename": "__init__.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 0, "date": "Nov 7 06:51"}, {"filename": "__pycache__", "parent": "./jc/jc/parsers", "flags": "drwxr-xr-x", "links": 50, "owner": "kbrazil", "group": "staff", "size": 1600, "date": "Mar 6 12:09"}, {"filename": "arp.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 5016, "date": "Mar 4 17:05"}, {"filename": "blkid.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6868, "date": "Mar 4 17:05"}, {"filename": "crontab.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6756, "date": "Feb 13 18:27"}, {"filename": "crontab_u.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 7055, "date": "Feb 8 12:42"}, {"filename": "csv.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3193, "date": "Mar 3 11:47"}, {"filename": "df.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 5176, "date": "Feb 13 18:27"}, {"filename": "dig.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 15625, "date": "Feb 13 18:27"}, {"filename": "du.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3751, "date": "Feb 13 18:27"}, {"filename": "env.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2782, "date": "Feb 13 18:27"}, {"filename": "foo.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1802, "date": "Mar 4 16:55"}, {"filename": "free.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3037, "date": "Feb 13 18:27"}, {"filename": "fstab.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4098, "date": "Feb 13 18:27"}, {"filename": "group.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3976, "date": "Mar 3 11:47"}, {"filename": "gshadow.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3230, "date": "Mar 3 11:47"}, {"filename": "history.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2807, "date": "Mar 6 12:06"}, {"filename": "hosts.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3258, "date": "Feb 5 17:00"}, {"filename": "id.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 5595, "date": "Feb 13 18:27"}, {"filename": "ifconfig.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 7611, "date": "Feb 13 18:27"}, {"filename": "ini.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2418, "date": "Feb 5 17:00"}, {"filename": "iptables.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 7465, "date": "Feb 13 18:27"}, {"filename": "jobs.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4885, "date": "Feb 13 18:27"}, {"filename": "last.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4425, "date": "Mar 3 11:47"}, {"filename": "ls.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 8630, "date": "Mar 3 11:47"}, {"filename": "lsblk.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 9105, "date": "Feb 13 18:27"}, {"filename": "lsmod.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3844, "date": "Feb 13 18:27"}, {"filename": "lsof.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 5434, "date": "Feb 13 18:27"}, {"filename": "mount.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3729, "date": "Feb 13 18:27"}, {"filename": "netstat.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 16129, "date": "Feb 13 18:27"}, {"filename": "passwd.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4055, "date": "Mar 3 11:47"}, {"filename": "pip_list.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2658, "date": "Feb 13 18:27"}, {"filename": "pip_show.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3444, "date": "Feb 13 18:27"}, {"filename": "ps.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6793, "date": "Feb 13 18:27"}, {"filename": "route.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4085, "date": "Feb 13 18:27"}, {"filename": "shadow.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4306, "date": "Mar 3 11:47"}, {"filename": "ss.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 11491, "date": "Feb 13 18:27"}, {"filename": "stat.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 8255, "date": "Feb 13 18:27"}, {"filename": "systemctl.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2940, "date": "Feb 13 18:27"}, {"filename": "systemctl_lj.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3483, "date": "Feb 13 18:27"}, {"filename": "systemctl_ls.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2675, "date": "Feb 13 18:27"}, {"filename": "systemctl_luf.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2585, "date": "Feb 13 18:27"}, {"filename": "uname.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3225, "date": "Feb 13 18:27"}, {"filename": "universal.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4041, "date": "Dec 17 12:12"}, {"filename": "uptime.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3243, "date": "Feb 13 18:27"}, {"filename": "w.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4345, "date": "Feb 13 18:27"}, {"filename": "who.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 7850, "date": "Mar 3 11:47"}, {"filename": "xml.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2747, "date": "Feb 5 17:00"}, {"filename": "yaml.py", "parent": "./jc/jc/parsers", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3045, "date": "Feb 5 17:00"}, {"filename": "__init__.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 131, "date": "Nov 7 07:07"}, {"filename": "arp.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4280, "date": "Mar 4 17:05"}, {"filename": "blkid.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6132, "date": "Mar 4 17:05"}, {"filename": "crontab.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6113, "date": "Feb 13 22:07"}, {"filename": "crontab_u.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6348, "date": "Feb 8 12:42"}, {"filename": "csv.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3292, "date": "Mar 4 12:08"}, {"filename": "df.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4234, "date": "Feb 13 22:07"}, {"filename": "dig.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 13352, "date": "Feb 13 22:07"}, {"filename": "du.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3750, "date": "Feb 13 22:07"}, {"filename": "env.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2834, "date": "Feb 13 22:07"}, {"filename": "free.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3088, "date": "Feb 13 22:07"}, {"filename": "fstab.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3779, "date": "Feb 13 22:07"}, {"filename": "group.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3785, "date": "Mar 4 12:08"}, {"filename": "gshadow.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3108, "date": "Mar 4 12:08"}, {"filename": "history.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2740, "date": "Mar 6 12:09"}, {"filename": "hosts.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3031, "date": "Feb 5 22:20"}, {"filename": "id.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4338, "date": "Feb 13 22:07"}, {"filename": "ifconfig.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 7471, "date": "Feb 13 22:07"}, {"filename": "ini.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2733, "date": "Feb 5 22:20"}, {"filename": "iptables.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6664, "date": "Feb 13 22:07"}, {"filename": "jobs.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4054, "date": "Feb 13 22:07"}, {"filename": "last.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4038, "date": "Mar 4 12:08"}, {"filename": "ls.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6559, "date": "Mar 4 12:08"}, {"filename": "lsblk.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 8868, "date": "Feb 13 22:07"}, {"filename": "lsmod.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3899, "date": "Feb 13 22:07"}, {"filename": "lsof.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4065, "date": "Feb 13 22:07"}, {"filename": "mount.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3514, "date": "Feb 13 22:07"}, {"filename": "netstat.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 13400, "date": "Feb 13 22:07"}, {"filename": "passwd.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3849, "date": "Mar 4 12:08"}, {"filename": "pip_list.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2603, "date": "Feb 13 22:07"}, {"filename": "pip_show.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3425, "date": "Feb 13 22:07"}, {"filename": "ps.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6396, "date": "Feb 13 22:07"}, {"filename": "route.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4207, "date": "Feb 13 22:07"}, {"filename": "shadow.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4055, "date": "Mar 4 12:08"}, {"filename": "ss.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 9863, "date": "Feb 13 22:07"}, {"filename": "stat.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6408, "date": "Feb 13 22:07"}, {"filename": "systemctl.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2973, "date": "Feb 13 22:07"}, {"filename": "systemctl_lj.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3381, "date": "Feb 13 22:07"}, {"filename": "systemctl_lm.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2638, "date": "Nov 15 19:07"}, {"filename": "systemctl_ls.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2715, "date": "Feb 13 22:07"}, {"filename": "systemctl_luf.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2600, "date": "Feb 13 22:07"}, {"filename": "uname.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2856, "date": "Feb 13 22:07"}, {"filename": "universal.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3545, "date": "Dec 17 15:04"}, {"filename": "uptime.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2946, "date": "Feb 13 22:07"}, {"filename": "w.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4162, "date": "Feb 13 22:07"}, {"filename": "who.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 5485, "date": "Mar 4 12:08"}, {"filename": "xml.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2957, "date": "Feb 5 22:20"}, {"filename": "yaml.cpython-37.pyc", "parent": "./jc/jc/parsers/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3269, "date": "Feb 5 22:20"}, {"filename": "ifconfig-old.py", "parent": "./jc/jc/parsers.old", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2247, "date": "Oct 4 15:20"}, {"filename": "netstat-fancy.py", "parent": "./jc/jc/parsers.old", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 9359, "date": "Oct 18 19:02"}, {"filename": "netstat-orig.py", "parent": "./jc/jc/parsers.old", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2714, "date": "Oct 16 23:03"}, {"filename": "netstat-v1.1.1.py", "parent": "./jc/jc/parsers.old", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4410, "date": "Nov 5 20:30"}, {"filename": "PKG-INFO", "parent": "./jc/jc.egg-info", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 64247, "date": "Mar 3 13:52"}, {"filename": "SOURCES.txt", "parent": "./jc/jc.egg-info", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 19812, "date": "Mar 3 13:52"}, {"filename": "dependency_links.txt", "parent": "./jc/jc.egg-info", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1, "date": "Mar 3 13:52"}, {"filename": "entry_points.txt", "parent": "./jc/jc.egg-info", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 36, "date": "Mar 3 13:52"}, {"filename": "requires.txt", "parent": "./jc/jc.egg-info", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 61, "date": "Mar 3 13:52"}, {"filename": "top_level.txt", "parent": "./jc/jc.egg-info", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 9, "date": "Mar 3 13:52"}, {"filename": "__init__.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 0, "date": "Oct 31 08:07"}, {"filename": "__pycache__", "parent": "./jc/tests", "flags": "drwxr-xr-x", "links": 48, "owner": "kbrazil", "group": "staff", "size": 1536, "date": "Mar 4 19:46"}, {"filename": "fixtures", "parent": "./jc/tests", "flags": "drwxr-xr-x", "links": 9, "owner": "kbrazil", "group": "staff", "size": 288, "date": "Mar 3 11:47"}, {"filename": "test_arp.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4746, "date": "Mar 4 19:37"}, {"filename": "test_blkid.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6590, "date": "Mar 4 19:37"}, {"filename": "test_crontab.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 837, "date": "Mar 4 19:37"}, {"filename": "test_crontab_u.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1498, "date": "Mar 4 19:37"}, {"filename": "test_csv.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 5383, "date": "Mar 4 19:37"}, {"filename": "test_df.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4669, "date": "Mar 4 19:37"}, {"filename": "test_dig.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3656, "date": "Mar 4 19:38"}, {"filename": "test_du.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2415, "date": "Mar 4 19:38"}, {"filename": "test_env.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1350, "date": "Mar 4 19:38"}, {"filename": "test_free.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2517, "date": "Mar 4 19:38"}, {"filename": "test_fstab.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1406, "date": "Mar 4 19:38"}, {"filename": "test_group.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1982, "date": "Mar 4 19:38"}, {"filename": "test_gshadow.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1444, "date": "Mar 4 19:39"}, {"filename": "test_history.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1426, "date": "Mar 4 19:39"}, {"filename": "test_hosts.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1406, "date": "Mar 4 19:39"}, {"filename": "test_id.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1329, "date": "Mar 4 19:39"}, {"filename": "test_ifconfig.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3845, "date": "Mar 4 19:39"}, {"filename": "test_ini.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1404, "date": "Mar 4 19:39"}, {"filename": "test_iptables.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 8341, "date": "Mar 4 19:39"}, {"filename": "test_jobs.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1369, "date": "Mar 4 19:40"}, {"filename": "test_last.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4237, "date": "Mar 4 19:40"}, {"filename": "test_ls.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 20054, "date": "Mar 4 19:40"}, {"filename": "test_lsblk.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3084, "date": "Mar 4 19:29"}, {"filename": "test_lsmod.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1388, "date": "Mar 4 19:41"}, {"filename": "test_lsof.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2563, "date": "Mar 4 19:41"}, {"filename": "test_mount.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2536, "date": "Mar 4 19:41"}, {"filename": "test_netstat.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6474, "date": "Mar 4 19:41"}, {"filename": "test_passwd.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2012, "date": "Mar 4 19:41"}, {"filename": "test_pip_list.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3303, "date": "Mar 4 19:41"}, {"filename": "test_pip_show.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2637, "date": "Mar 4 19:33"}, {"filename": "test_ps.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4805, "date": "Mar 4 19:42"}, {"filename": "test_route.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2570, "date": "Mar 4 19:42"}, {"filename": "test_shadow.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1425, "date": "Mar 4 19:42"}, {"filename": "test_ss.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1445, "date": "Mar 4 19:42"}, {"filename": "test_stat.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1383, "date": "Mar 4 19:30"}, {"filename": "test_systemctl.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1470, "date": "Mar 4 19:33"}, {"filename": "test_systemctl_lj.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 907, "date": "Mar 4 19:44"}, {"filename": "test_systemctl_ls.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1547, "date": "Mar 4 19:45"}, {"filename": "test_systemctl_luf.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1564, "date": "Mar 4 19:45"}, {"filename": "test_uname.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2586, "date": "Mar 4 19:45"}, {"filename": "test_uptime.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2563, "date": "Mar 4 19:45"}, {"filename": "test_w.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2370, "date": "Mar 4 19:45"}, {"filename": "test_who.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3599, "date": "Mar 4 19:46"}, {"filename": "test_xml.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1429, "date": "Mar 4 19:46"}, {"filename": "test_yaml.py", "parent": "./jc/tests", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1473, "date": "Mar 4 19:46"}, {"filename": "__init__.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 126, "date": "Nov 8 14:01"}, {"filename": "test_arp.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4580, "date": "Mar 4 19:43"}, {"filename": "test_blkid.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6192, "date": "Mar 4 19:43"}, {"filename": "test_crontab.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1185, "date": "Mar 4 19:43"}, {"filename": "test_crontab_u.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1762, "date": "Mar 4 19:43"}, {"filename": "test_csv.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 5045, "date": "Mar 4 19:43"}, {"filename": "test_df.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4520, "date": "Mar 4 19:43"}, {"filename": "test_dig.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3632, "date": "Mar 4 19:43"}, {"filename": "test_du.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2553, "date": "Mar 4 19:43"}, {"filename": "test_env.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1626, "date": "Mar 4 19:43"}, {"filename": "test_free.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2640, "date": "Mar 4 19:43"}, {"filename": "test_fstab.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1678, "date": "Mar 4 19:43"}, {"filename": "test_group.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2178, "date": "Mar 4 19:43"}, {"filename": "test_gshadow.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1712, "date": "Mar 4 19:43"}, {"filename": "test_history.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1694, "date": "Mar 4 19:43"}, {"filename": "test_hosts.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1678, "date": "Mar 4 19:43"}, {"filename": "test_id.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1607, "date": "Mar 4 19:43"}, {"filename": "test_ifconfig.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3783, "date": "Mar 4 19:43"}, {"filename": "test_ini.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1654, "date": "Mar 4 19:43"}, {"filename": "test_iptables.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 7690, "date": "Mar 4 19:43"}, {"filename": "test_jobs.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1643, "date": "Mar 4 19:43"}, {"filename": "test_last.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4137, "date": "Mar 4 19:43"}, {"filename": "test_ls.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 17989, "date": "Mar 4 19:43"}, {"filename": "test_lsblk.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3195, "date": "Mar 4 19:43"}, {"filename": "test_lsmod.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1660, "date": "Mar 4 19:43"}, {"filename": "test_lsof.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2680, "date": "Mar 4 19:43"}, {"filename": "test_mount.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2655, "date": "Mar 4 19:43"}, {"filename": "test_netstat.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6060, "date": "Mar 4 19:43"}, {"filename": "test_passwd.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2204, "date": "Mar 4 19:43"}, {"filename": "test_pip_list.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3316, "date": "Mar 4 19:43"}, {"filename": "test_pip_show.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2739, "date": "Mar 4 19:43"}, {"filename": "test_ps.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4636, "date": "Mar 4 19:43"}, {"filename": "test_route.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2685, "date": "Mar 4 19:43"}, {"filename": "test_shadow.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1695, "date": "Mar 4 19:43"}, {"filename": "test_ss.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1709, "date": "Mar 4 19:43"}, {"filename": "test_stat.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1657, "date": "Mar 4 19:43"}, {"filename": "test_systemctl.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1734, "date": "Mar 4 19:43"}, {"filename": "test_systemctl_lj.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1254, "date": "Mar 4 19:44"}, {"filename": "test_systemctl_ls.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1805, "date": "Mar 4 19:46"}, {"filename": "test_systemctl_luf.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1820, "date": "Mar 4 19:46"}, {"filename": "test_uname.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2690, "date": "Mar 4 19:46"}, {"filename": "test_uptime.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2677, "date": "Mar 4 19:46"}, {"filename": "test_w.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2518, "date": "Mar 4 19:46"}, {"filename": "test_who.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3582, "date": "Mar 4 19:46"}, {"filename": "test_xml.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1676, "date": "Mar 4 19:46"}, {"filename": "test_yaml.cpython-37.pyc", "parent": "./jc/tests/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1715, "date": "Mar 4 19:46"}, {"filename": "centos-7.7", "parent": "./jc/tests/fixtures", "flags": "drwxr-xr-x", "links": 153, "owner": "kbrazil", "group": "staff", "size": 4896, "date": "Mar 3 11:47"}, {"filename": "create_fixtures.sh", "parent": "./jc/tests/fixtures", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3397, "date": "Mar 3 11:47"}, {"filename": "generic", "parent": "./jc/tests/fixtures", "flags": "drwxr-xr-x", "links": 34, "owner": "kbrazil", "group": "staff", "size": 1088, "date": "Mar 3 11:47"}, {"filename": "osx-10.11.6", "parent": "./jc/tests/fixtures", "flags": "drwxr-xr-x", "links": 41, "owner": "kbrazil", "group": "staff", "size": 1312, "date": "Dec 17 12:12"}, {"filename": "osx-10.14.6", "parent": "./jc/tests/fixtures", "flags": "drwxr-xr-x", "links": 71, "owner": "kbrazil", "group": "staff", "size": 2272, "date": "Mar 3 11:47"}, {"filename": "ubuntu-18.04", "parent": "./jc/tests/fixtures", "flags": "drwxr-xr-x", "links": 153, "owner": "kbrazil", "group": "staff", "size": 4896, "date": "Mar 3 11:47"}, {"filename": "arp-a.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 350, "date": "Nov 17 12:00"}, {"filename": "arp-a.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 173, "date": "Oct 31 08:07"}, {"filename": "arp-v.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 236, "date": "Nov 17 12:00"}, {"filename": "arp-v.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 274, "date": "Oct 31 08:07"}, {"filename": "arp.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 236, "date": "Nov 17 12:00"}, {"filename": "arp.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 243, "date": "Oct 31 08:07"}, {"filename": "blkid-ip-multi.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 764, "date": "Mar 3 11:47"}, {"filename": "blkid-ip-multi.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 618, "date": "Mar 3 11:47"}, {"filename": "blkid-ip-udev-multi.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 987, "date": "Mar 3 11:47"}, {"filename": "blkid-ip-udev-multi.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 838, "date": "Mar 3 11:47"}, {"filename": "blkid-ip-udev.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 488, "date": "Mar 3 11:47"}, {"filename": "blkid-ip-udev.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 413, "date": "Mar 3 11:47"}, {"filename": "blkid-sda2.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 99, "date": "Mar 3 11:47"}, {"filename": "blkid-sda2.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 77, "date": "Mar 3 11:47"}, {"filename": "blkid.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 392, "date": "Mar 3 11:47"}, {"filename": "blkid.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 307, "date": "Mar 3 11:47"}, {"filename": "crontab-u.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 399, "date": "Feb 5 17:00"}, {"filename": "crontab-u.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 163, "date": "Feb 5 17:00"}, {"filename": "crontab.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1940, "date": "Feb 5 17:00"}, {"filename": "crontab.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1564, "date": "Dec 17 12:12"}, {"filename": "df-h.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 836, "date": "Nov 17 12:00"}, {"filename": "df-h.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 444, "date": "Oct 31 08:07"}, {"filename": "df.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 904, "date": "Dec 17 12:12"}, {"filename": "df.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 524, "date": "Oct 31 08:07"}, {"filename": "dig-aaaa.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 462, "date": "Nov 17 12:00"}, {"filename": "dig-aaaa.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 556, "date": "Oct 31 08:07"}, {"filename": "dig-x.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 464, "date": "Nov 17 12:00"}, {"filename": "dig-x.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 547, "date": "Oct 31 08:07"}, {"filename": "dig.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1005, "date": "Nov 17 12:00"}, {"filename": "dig.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1052, "date": "Oct 31 08:07"}, {"filename": "du.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 365319, "date": "Dec 17 12:12"}, {"filename": "du.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 250940, "date": "Dec 17 12:12"}, {"filename": "env.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2932, "date": "Nov 17 12:00"}, {"filename": "env.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2331, "date": "Oct 31 08:07"}, {"filename": "free-h.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 177, "date": "Nov 17 12:00"}, {"filename": "free-h.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 204, "date": "Oct 31 08:07"}, {"filename": "free.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 194, "date": "Nov 17 12:00"}, {"filename": "free.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 204, "date": "Oct 31 08:07"}, {"filename": "fstab.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 423, "date": "Nov 17 12:00"}, {"filename": "fstab.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 488, "date": "Nov 17 12:00"}, {"filename": "group.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2701, "date": "Mar 3 11:47"}, {"filename": "group.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 509, "date": "Mar 3 11:47"}, {"filename": "gshadow.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3106, "date": "Mar 3 11:47"}, {"filename": "gshadow.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 407, "date": "Mar 3 11:47"}, {"filename": "history.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 47552, "date": "Feb 5 17:00"}, {"filename": "history.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 25967, "date": "Oct 31 08:07"}, {"filename": "hosts.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 223, "date": "Nov 17 12:00"}, {"filename": "hosts.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 193, "date": "Nov 17 12:00"}, {"filename": "id.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 267, "date": "Feb 5 17:00"}, {"filename": "id.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 129, "date": "Feb 5 17:00"}, {"filename": "ifconfig.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1598, "date": "Dec 17 12:12"}, {"filename": "ifconfig.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1259, "date": "Oct 31 08:07"}, {"filename": "iptables-filter-line-numbers.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 7469, "date": "Nov 17 12:00"}, {"filename": "iptables-filter-line-numbers.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6643, "date": "Nov 17 12:00"}, {"filename": "iptables-filter-nv.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 10625, "date": "Nov 17 12:00"}, {"filename": "iptables-filter-nv.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 9064, "date": "Oct 31 08:07"}, {"filename": "iptables-filter.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 7749, "date": "Nov 17 12:00"}, {"filename": "iptables-filter.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6762, "date": "Oct 31 08:07"}, {"filename": "iptables-mangle.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1938, "date": "Nov 17 12:00"}, {"filename": "iptables-mangle.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2399, "date": "Oct 31 08:07"}, {"filename": "iptables-nat.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3211, "date": "Nov 17 12:00"}, {"filename": "iptables-nat.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3484, "date": "Oct 31 08:07"}, {"filename": "iptables-raw.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1386, "date": "Nov 17 12:00"}, {"filename": "iptables-raw.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1616, "date": "Oct 31 08:07"}, {"filename": "jobs.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 306, "date": "Nov 17 12:00"}, {"filename": "jobs.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 164, "date": "Oct 31 08:07"}, {"filename": "last-w.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 9189, "date": "Mar 3 11:47"}, {"filename": "last-w.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 5452, "date": "Mar 3 11:47"}, {"filename": "last.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 8934, "date": "Mar 3 11:47"}, {"filename": "last.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 5197, "date": "Mar 3 11:47"}, {"filename": "lastb.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 511, "date": "Mar 3 11:47"}, {"filename": "lastb.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 346, "date": "Mar 3 11:47"}, {"filename": "ls-R-newlines.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1281, "date": "Feb 27 11:25"}, {"filename": "ls-R-newlines.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 542, "date": "Feb 27 11:25"}, {"filename": "ls-R.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 315329, "date": "Feb 19 07:07"}, {"filename": "ls-R.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 72565, "date": "Feb 19 07:07"}, {"filename": "ls-al.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2776, "date": "Nov 17 12:00"}, {"filename": "ls-al.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1070, "date": "Oct 31 08:07"}, {"filename": "ls-alR.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 773278, "date": "Feb 19 07:07"}, {"filename": "ls-alR.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 281708, "date": "Feb 19 07:07"}, {"filename": "ls-alh.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2776, "date": "Nov 17 12:00"}, {"filename": "ls-alh.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1071, "date": "Oct 31 08:07"}, {"filename": "ls-glob.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 97675, "date": "Feb 19 07:07"}, {"filename": "ls-glob.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 22048, "date": "Feb 19 07:07"}, {"filename": "ls-l-newlines.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1183, "date": "Feb 27 11:25"}, {"filename": "ls-l-newlines.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 583, "date": "Feb 27 11:25"}, {"filename": "ls-lR-newlines.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2576, "date": "Feb 27 11:25"}, {"filename": "ls-lR-newlines.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1209, "date": "Feb 27 11:25"}, {"filename": "ls-newlines.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 498, "date": "Feb 27 11:25"}, {"filename": "ls-newlines.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 260, "date": "Feb 27 11:25"}, {"filename": "ls.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 409, "date": "Nov 17 12:00"}, {"filename": "ls.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 85, "date": "Oct 31 08:07"}, {"filename": "lsblk-allcols.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4102, "date": "Nov 17 12:00"}, {"filename": "lsblk-allcols.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2502, "date": "Nov 17 12:00"}, {"filename": "lsblk.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 698, "date": "Nov 17 12:00"}, {"filename": "lsblk.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 332, "date": "Oct 31 08:07"}, {"filename": "lsmod.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6655, "date": "Nov 17 12:00"}, {"filename": "lsmod.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4161, "date": "Oct 31 08:07"}, {"filename": "lsof-sudo.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 618317, "date": "Nov 17 12:00"}, {"filename": "lsof-sudo.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 363073, "date": "Oct 31 08:07"}, {"filename": "lsof.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 126050, "date": "Nov 17 12:00"}, {"filename": "lsof.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 70567, "date": "Oct 31 08:07"}, {"filename": "mount.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4848, "date": "Nov 17 12:00"}, {"filename": "mount.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2711, "date": "Oct 31 08:07"}, {"filename": "netstat-l.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 7020, "date": "Nov 17 12:00"}, {"filename": "netstat-l.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3499, "date": "Oct 31 08:07"}, {"filename": "netstat-p.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 17621, "date": "Nov 17 12:00"}, {"filename": "netstat-p.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 10407, "date": "Oct 31 08:07"}, {"filename": "netstat-sudo-aeep.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 29188, "date": "Nov 17 12:00"}, {"filename": "netstat-sudo-aeep.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 14986, "date": "Nov 17 12:00"}, {"filename": "netstat-sudo-lnp.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 8734, "date": "Nov 17 12:00"}, {"filename": "netstat-sudo-lnp.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4402, "date": "Oct 31 08:07"}, {"filename": "netstat.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 15637, "date": "Nov 17 12:00"}, {"filename": "netstat.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 8068, "date": "Oct 31 08:07"}, {"filename": "passwd.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2747, "date": "Mar 3 11:47"}, {"filename": "passwd.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 961, "date": "Mar 3 11:47"}, {"filename": "pip-list.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 905, "date": "Dec 17 12:12"}, {"filename": "pip-list.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 616, "date": "Dec 17 12:12"}, {"filename": "pip-show.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1129, "date": "Dec 17 12:12"}, {"filename": "pip-show.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 974, "date": "Dec 17 12:12"}, {"filename": "ps-axu.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 20936, "date": "Nov 17 12:00"}, {"filename": "ps-axu.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 9932, "date": "Oct 31 08:07"}, {"filename": "ps-ef.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 14630, "date": "Nov 17 12:00"}, {"filename": "ps-ef.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 8168, "date": "Oct 31 08:07"}, {"filename": "route-vn.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 442, "date": "Nov 17 12:00"}, {"filename": "route-vn.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 338, "date": "Oct 31 08:07"}, {"filename": "route.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 437, "date": "Nov 17 12:00"}, {"filename": "route.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 338, "date": "Oct 31 08:07"}, {"filename": "shadow.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3206, "date": "Mar 3 11:47"}, {"filename": "shadow.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 740, "date": "Mar 3 11:47"}, {"filename": "ss-sudo-a.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 29301, "date": "Nov 17 12:00"}, {"filename": "ss-sudo-a.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 17945, "date": "Nov 17 12:00"}, {"filename": "stat.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 322074, "date": "Nov 17 12:00"}, {"filename": "stat.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 295777, "date": "Nov 17 12:00"}, {"filename": "systemctl-ls.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1439, "date": "Nov 17 12:00"}, {"filename": "systemctl-ls.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1159, "date": "Nov 17 12:00"}, {"filename": "systemctl-luf.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 14574, "date": "Nov 17 12:00"}, {"filename": "systemctl-luf.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 13499, "date": "Nov 17 12:00"}, {"filename": "systemctl.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 31968, "date": "Nov 17 12:00"}, {"filename": "systemctl.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 38560, "date": "Nov 17 12:00"}, {"filename": "uname-a.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 276, "date": "Nov 17 12:00"}, {"filename": "uname-a.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 122, "date": "Oct 31 08:07"}, {"filename": "uptime.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 103, "date": "Nov 17 12:00"}, {"filename": "uptime.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 62, "date": "Oct 31 08:07"}, {"filename": "w.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 287, "date": "Nov 17 12:00"}, {"filename": "w.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 266, "date": "Oct 31 08:07"}, {"filename": "who-a.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 549, "date": "Mar 3 11:47"}, {"filename": "who-a.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 364, "date": "Mar 3 11:47"}, {"filename": "who.json", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 155, "date": "Mar 3 11:47"}, {"filename": "who.out", "parent": "./jc/tests/fixtures/centos-7.7", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 93, "date": "Mar 3 11:47"}, {"filename": "csv-biostats.csv", "parent": "./jc/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 849, "date": "Mar 3 11:47"}, {"filename": "csv-biostats.json", "parent": "./jc/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1566, "date": "Mar 3 11:47"}, {"filename": "csv-cities.csv", "parent": "./jc/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 8402, "date": "Mar 3 11:47"}, {"filename": "csv-cities.json", "parent": "./jc/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 18398, "date": "Mar 3 11:47"}, {"filename": "csv-deniro.csv", "parent": "./jc/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2391, "date": "Mar 3 11:47"}, {"filename": "csv-deniro.json", "parent": "./jc/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 5146, "date": "Mar 3 11:47"}, {"filename": "csv-example.csv", "parent": "./jc/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1117, "date": "Mar 3 11:47"}, {"filename": "csv-example.json", "parent": "./jc/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1588, "date": "Mar 3 11:47"}, {"filename": "csv-flyrna.json", "parent": "./jc/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 558246, "date": "Mar 3 11:47"}, {"filename": "csv-flyrna.tsv", "parent": "./jc/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 205281, "date": "Mar 3 11:47"}, {"filename": "csv-flyrna2.json", "parent": "./jc/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 556670, "date": "Mar 3 11:47"}, {"filename": "csv-flyrna2.tsv", "parent": "./jc/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 203705, "date": "Mar 3 11:47"}, {"filename": "csv-homes-pipe.csv", "parent": "./jc/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 158, "date": "Mar 3 11:47"}, {"filename": "csv-homes-pipe.json", "parent": "./jc/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 274, "date": "Mar 3 11:47"}, {"filename": "csv-homes.csv", "parent": "./jc/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2125, "date": "Mar 3 11:47"}, {"filename": "csv-homes.json", "parent": "./jc/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6798, "date": "Mar 3 11:47"}, {"filename": "csv-insurance.csv", "parent": "./jc/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 53816, "date": "Mar 3 11:47"}, {"filename": "csv-insurance.json", "parent": "./jc/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 229722, "date": "Mar 3 11:47"}, {"filename": "ini-iptelserver.ini", "parent": "./jc/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4705, "date": "Feb 5 17:00"}, {"filename": "ini-iptelserver.json", "parent": "./jc/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1486, "date": "Feb 5 17:00"}, {"filename": "ini-test.ini", "parent": "./jc/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 171, "date": "Feb 5 17:00"}, {"filename": "ini-test.json", "parent": "./jc/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 270, "date": "Feb 5 17:00"}, {"filename": "oscar_age_male.csv", "parent": "./jc/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4413, "date": "Mar 3 11:47"}, {"filename": "xml-cd_catalog.json", "parent": "./jc/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3294, "date": "Feb 5 17:00"}, {"filename": "xml-cd_catalog.xml", "parent": "./jc/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 5077, "date": "Feb 5 17:00"}, {"filename": "xml-foodmenu.json", "parent": "./jc/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 811, "date": "Feb 5 17:00"}, {"filename": "xml-foodmenu.xml", "parent": "./jc/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1102, "date": "Feb 5 17:00"}, {"filename": "yaml-istio-sc.json", "parent": "./jc/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 333, "date": "Feb 5 17:00"}, {"filename": "yaml-istio-sc.yaml", "parent": "./jc/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 305, "date": "Feb 5 17:00"}, {"filename": "yaml-istio-sidecar.json", "parent": "./jc/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3178, "date": "Feb 5 17:00"}, {"filename": "yaml-istio-sidecar.yaml", "parent": "./jc/tests/fixtures/generic", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3681, "date": "Feb 5 17:00"}, {"filename": "arp-a.json", "parent": "./jc/tests/fixtures/osx-10.11.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1669, "date": "Dec 17 12:12"}, {"filename": "arp-a.out", "parent": "./jc/tests/fixtures/osx-10.11.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1036, "date": "Dec 17 12:12"}, {"filename": "df-h.json", "parent": "./jc/tests/fixtures/osx-10.11.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1151, "date": "Dec 17 12:12"}, {"filename": "df-h.out", "parent": "./jc/tests/fixtures/osx-10.11.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 908, "date": "Dec 17 12:12"}, {"filename": "df.json", "parent": "./jc/tests/fixtures/osx-10.11.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1196, "date": "Dec 17 12:12"}, {"filename": "df.out", "parent": "./jc/tests/fixtures/osx-10.11.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 992, "date": "Dec 17 12:12"}, {"filename": "dig-aaaa.json", "parent": "./jc/tests/fixtures/osx-10.11.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 439, "date": "Dec 17 12:12"}, {"filename": "dig-aaaa.out", "parent": "./jc/tests/fixtures/osx-10.11.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 537, "date": "Dec 17 12:12"}, {"filename": "dig-x.json", "parent": "./jc/tests/fixtures/osx-10.11.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 442, "date": "Dec 17 12:12"}, {"filename": "dig-x.out", "parent": "./jc/tests/fixtures/osx-10.11.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 529, "date": "Dec 17 12:12"}, {"filename": "dig.json", "parent": "./jc/tests/fixtures/osx-10.11.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1272, "date": "Dec 17 12:12"}, {"filename": "dig.out", "parent": "./jc/tests/fixtures/osx-10.11.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1188, "date": "Dec 17 12:12"}, {"filename": "du.json", "parent": "./jc/tests/fixtures/osx-10.11.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 221050, "date": "Dec 17 12:12"}, {"filename": "du.out", "parent": "./jc/tests/fixtures/osx-10.11.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 166687, "date": "Dec 17 12:12"}, {"filename": "ifconfig.json", "parent": "./jc/tests/fixtures/osx-10.11.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3791, "date": "Dec 17 12:12"}, {"filename": "ifconfig.out", "parent": "./jc/tests/fixtures/osx-10.11.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1571, "date": "Dec 17 12:12"}, {"filename": "ifconfig2.json", "parent": "./jc/tests/fixtures/osx-10.11.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3791, "date": "Dec 17 12:12"}, {"filename": "ifconfig2.out", "parent": "./jc/tests/fixtures/osx-10.11.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1571, "date": "Dec 17 12:12"}, {"filename": "ls-al.json", "parent": "./jc/tests/fixtures/osx-10.11.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4259, "date": "Dec 17 12:12"}, {"filename": "ls-al.out", "parent": "./jc/tests/fixtures/osx-10.11.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1851, "date": "Dec 17 12:12"}, {"filename": "ls-alh.json", "parent": "./jc/tests/fixtures/osx-10.11.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4296, "date": "Dec 17 12:12"}, {"filename": "ls-alh.out", "parent": "./jc/tests/fixtures/osx-10.11.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1882, "date": "Dec 17 12:12"}, {"filename": "ls.json", "parent": "./jc/tests/fixtures/osx-10.11.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 533, "date": "Dec 17 12:12"}, {"filename": "ls.out", "parent": "./jc/tests/fixtures/osx-10.11.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 175, "date": "Dec 17 12:12"}, {"filename": "pip-list.json", "parent": "./jc/tests/fixtures/osx-10.11.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 224, "date": "Dec 17 12:12"}, {"filename": "pip-list.out", "parent": "./jc/tests/fixtures/osx-10.11.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 168, "date": "Dec 17 12:12"}, {"filename": "pip-show.json", "parent": "./jc/tests/fixtures/osx-10.11.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1028, "date": "Dec 17 12:12"}, {"filename": "pip-show.out", "parent": "./jc/tests/fixtures/osx-10.11.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 867, "date": "Dec 17 12:12"}, {"filename": "ps-axu.json", "parent": "./jc/tests/fixtures/osx-10.11.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 53632, "date": "Dec 17 12:12"}, {"filename": "ps-axu.out", "parent": "./jc/tests/fixtures/osx-10.11.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 32255, "date": "Dec 17 12:12"}, {"filename": "ps-ef.json", "parent": "./jc/tests/fixtures/osx-10.11.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 38291, "date": "Dec 17 12:12"}, {"filename": "ps-ef.out", "parent": "./jc/tests/fixtures/osx-10.11.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 25921, "date": "Dec 17 12:12"}, {"filename": "uname-a.json", "parent": "./jc/tests/fixtures/osx-10.11.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 233, "date": "Dec 17 12:12"}, {"filename": "uname-a.out", "parent": "./jc/tests/fixtures/osx-10.11.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 142, "date": "Dec 17 12:12"}, {"filename": "uptime.json", "parent": "./jc/tests/fixtures/osx-10.11.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 102, "date": "Dec 17 12:12"}, {"filename": "uptime.out", "parent": "./jc/tests/fixtures/osx-10.11.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 57, "date": "Dec 17 12:12"}, {"filename": "w.json", "parent": "./jc/tests/fixtures/osx-10.11.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 627, "date": "Dec 17 12:12"}, {"filename": "w.out", "parent": "./jc/tests/fixtures/osx-10.11.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 458, "date": "Dec 17 12:12"}, {"filename": "arp-a.json", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1541, "date": "Dec 17 12:12"}, {"filename": "arp-a.out", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 968, "date": "Dec 17 12:12"}, {"filename": "df-h.json", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1686, "date": "Dec 17 12:12"}, {"filename": "df-h.out", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1276, "date": "Dec 17 12:12"}, {"filename": "df.json", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1764, "date": "Dec 17 12:12"}, {"filename": "df.out", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1384, "date": "Dec 17 12:12"}, {"filename": "dig-aaaa.json", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 438, "date": "Dec 17 12:12"}, {"filename": "dig-aaaa.out", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 536, "date": "Dec 17 12:12"}, {"filename": "dig-x.json", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 442, "date": "Dec 17 12:12"}, {"filename": "dig-x.out", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 529, "date": "Dec 17 12:12"}, {"filename": "dig.json", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1266, "date": "Dec 17 12:12"}, {"filename": "dig.out", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1182, "date": "Dec 17 12:12"}, {"filename": "du.json", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 296296, "date": "Dec 17 12:12"}, {"filename": "du.out", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 222287, "date": "Dec 17 12:12"}, {"filename": "group.json", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 9646, "date": "Mar 3 11:47"}, {"filename": "group.out", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2823, "date": "Mar 3 11:47"}, {"filename": "id.json", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 759, "date": "Feb 5 17:00"}, {"filename": "id.out", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 386, "date": "Feb 5 17:00"}, {"filename": "ifconfig.json", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 10823, "date": "Dec 17 12:12"}, {"filename": "ifconfig.out", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3779, "date": "Dec 17 12:12"}, {"filename": "ifconfig2.json", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 11375, "date": "Dec 17 12:12"}, {"filename": "ifconfig2.out", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3979, "date": "Dec 17 12:12"}, {"filename": "last.json", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 45274, "date": "Mar 3 11:47"}, {"filename": "last.out", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 25827, "date": "Mar 3 11:47"}, {"filename": "ls-R-newlines.json", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 852, "date": "Feb 27 11:25"}, {"filename": "ls-R-newlines.out", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 278, "date": "Feb 27 11:25"}, {"filename": "ls-R.json", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 469418, "date": "Feb 19 07:07"}, {"filename": "ls-R.out", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 133787, "date": "Feb 19 07:07"}, {"filename": "ls-al.json", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4653, "date": "Dec 17 12:12"}, {"filename": "ls-al.out", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2111, "date": "Dec 17 12:12"}, {"filename": "ls-alR.json", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 959674, "date": "Feb 19 07:07"}, {"filename": "ls-alR.out", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 364578, "date": "Feb 19 07:07"}, {"filename": "ls-alh.json", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4684, "date": "Dec 17 12:12"}, {"filename": "ls-alh.out", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2111, "date": "Dec 17 12:12"}, {"filename": "ls-glob.json", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 91499, "date": "Feb 19 07:07"}, {"filename": "ls-glob.out", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 19369, "date": "Feb 19 07:07"}, {"filename": "ls-l-newlines.json", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1162, "date": "Feb 27 11:25"}, {"filename": "ls-l-newlines.out", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 583, "date": "Feb 27 11:25"}, {"filename": "ls-lR-newlines.json", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1450, "date": "Feb 27 11:25"}, {"filename": "ls-lR-newlines.out", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 656, "date": "Feb 27 11:25"}, {"filename": "ls-newlines.json", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 498, "date": "Feb 27 11:25"}, {"filename": "ls-newlines.out", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 260, "date": "Feb 27 11:25"}, {"filename": "ls.json", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 585, "date": "Dec 17 12:12"}, {"filename": "ls.out", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 193, "date": "Dec 17 12:12"}, {"filename": "mount.json", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 672, "date": "Dec 17 12:12"}, {"filename": "mount.out", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 349, "date": "Dec 17 12:12"}, {"filename": "mount2.json", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 841, "date": "Dec 17 12:12"}, {"filename": "mount2.out", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 464, "date": "Dec 17 12:12"}, {"filename": "passwd.json", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 14855, "date": "Mar 3 11:47"}, {"filename": "passwd.out", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6804, "date": "Mar 3 11:47"}, {"filename": "pip-list.json", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 224, "date": "Dec 17 12:12"}, {"filename": "pip-list.out", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 168, "date": "Dec 17 12:12"}, {"filename": "pip-show.json", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1067, "date": "Dec 17 12:12"}, {"filename": "pip-show.out", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 910, "date": "Dec 17 12:12"}, {"filename": "ps-axu.json", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 99173, "date": "Dec 17 12:12"}, {"filename": "ps-axu.out", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 60107, "date": "Dec 17 12:12"}, {"filename": "ps-ef.json", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 71162, "date": "Dec 17 12:12"}, {"filename": "ps-ef.out", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 48758, "date": "Dec 17 12:12"}, {"filename": "uname-a.json", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 221, "date": "Dec 17 12:12"}, {"filename": "uname-a.out", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 131, "date": "Dec 17 12:12"}, {"filename": "uptime.json", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 110, "date": "Dec 17 12:12"}, {"filename": "uptime.out", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 65, "date": "Dec 17 12:12"}, {"filename": "w.json", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 836, "date": "Dec 17 12:12"}, {"filename": "w.out", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 570, "date": "Dec 17 12:12"}, {"filename": "who-a.json", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 659, "date": "Mar 3 11:47"}, {"filename": "who-a.out", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 419, "date": "Mar 3 11:47"}, {"filename": "who.json", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 251, "date": "Mar 3 11:47"}, {"filename": "who.out", "parent": "./jc/tests/fixtures/osx-10.14.6", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 128, "date": "Mar 3 11:47"}, {"filename": "arp-a.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 351, "date": "Nov 17 12:00"}, {"filename": "arp-a.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 174, "date": "Oct 31 08:07"}, {"filename": "arp-v.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 237, "date": "Nov 17 12:00"}, {"filename": "arp-v.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 274, "date": "Oct 31 08:07"}, {"filename": "arp.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 237, "date": "Nov 17 12:00"}, {"filename": "arp.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 243, "date": "Oct 31 08:07"}, {"filename": "blkid-ip-multi.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 818, "date": "Mar 3 11:47"}, {"filename": "blkid-ip-multi.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 717, "date": "Mar 3 11:47"}, {"filename": "blkid-ip-udev-multi.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 962, "date": "Mar 3 11:47"}, {"filename": "blkid-ip-udev-multi.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 832, "date": "Mar 3 11:47"}, {"filename": "blkid-ip-udev.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 547, "date": "Mar 3 11:47"}, {"filename": "blkid-ip-udev.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 478, "date": "Mar 3 11:47"}, {"filename": "blkid-sda2.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 142, "date": "Mar 3 11:47"}, {"filename": "blkid-sda2.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 115, "date": "Mar 3 11:47"}, {"filename": "blkid.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 986, "date": "Mar 3 11:47"}, {"filename": "blkid.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 675, "date": "Mar 3 11:47"}, {"filename": "crontab-u.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 939, "date": "Feb 5 17:00"}, {"filename": "crontab-u.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 752, "date": "Feb 5 17:00"}, {"filename": "df-h.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2261, "date": "Nov 17 12:00"}, {"filename": "df-h.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1004, "date": "Oct 31 08:07"}, {"filename": "df.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2372, "date": "Dec 17 12:12"}, {"filename": "df.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1194, "date": "Oct 31 08:07"}, {"filename": "dig-aaaa.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 458, "date": "Nov 17 12:00"}, {"filename": "dig-aaaa.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 532, "date": "Oct 31 08:07"}, {"filename": "dig-x.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 460, "date": "Nov 17 12:00"}, {"filename": "dig-x.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 523, "date": "Oct 31 08:07"}, {"filename": "dig.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1306, "date": "Nov 17 12:00"}, {"filename": "dig.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1156, "date": "Oct 31 08:07"}, {"filename": "du.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1560353, "date": "Dec 17 12:12"}, {"filename": "du.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1136984, "date": "Dec 17 12:12"}, {"filename": "env.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2651, "date": "Nov 17 12:00"}, {"filename": "env.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2125, "date": "Oct 31 08:07"}, {"filename": "free-h.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 177, "date": "Nov 17 12:00"}, {"filename": "free-h.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 204, "date": "Oct 31 08:07"}, {"filename": "free.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 195, "date": "Nov 17 12:00"}, {"filename": "free.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 204, "date": "Oct 31 08:07"}, {"filename": "fstab.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 268, "date": "Nov 17 12:00"}, {"filename": "fstab.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 120, "date": "Nov 17 12:00"}, {"filename": "group.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3705, "date": "Mar 3 11:47"}, {"filename": "group.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 721, "date": "Mar 3 11:47"}, {"filename": "gshadow.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4279, "date": "Mar 3 11:47"}, {"filename": "gshadow.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 606, "date": "Mar 3 11:47"}, {"filename": "history.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 22782, "date": "Feb 5 17:00"}, {"filename": "history.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 12844, "date": "Oct 31 08:07"}, {"filename": "hosts.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 365, "date": "Nov 17 12:00"}, {"filename": "hosts.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 272, "date": "Nov 17 12:00"}, {"filename": "ifconfig.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1090, "date": "Dec 17 12:12"}, {"filename": "ifconfig.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 894, "date": "Oct 31 08:07"}, {"filename": "iptables-filter-line-numbers.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 847, "date": "Nov 17 12:00"}, {"filename": "iptables-filter-line-numbers.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1025, "date": "Nov 17 12:00"}, {"filename": "iptables-filter-nv.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2363, "date": "Nov 17 12:00"}, {"filename": "iptables-filter-nv.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2763, "date": "Oct 31 08:07"}, {"filename": "iptables-filter.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1730, "date": "Nov 17 12:00"}, {"filename": "iptables-filter.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2035, "date": "Oct 31 08:07"}, {"filename": "iptables-mangle.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 141, "date": "Nov 17 12:00"}, {"filename": "iptables-mangle.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 468, "date": "Oct 31 08:07"}, {"filename": "iptables-nat.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 106, "date": "Nov 17 12:00"}, {"filename": "iptables-nat.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 375, "date": "Oct 31 08:07"}, {"filename": "iptables-raw.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 39, "date": "Nov 17 12:00"}, {"filename": "iptables-raw.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 187, "date": "Oct 31 08:07"}, {"filename": "jobs.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 306, "date": "Nov 17 12:00"}, {"filename": "jobs.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 164, "date": "Oct 31 08:07"}, {"filename": "last-w.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1852, "date": "Mar 3 11:47"}, {"filename": "last-w.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1073, "date": "Mar 3 11:47"}, {"filename": "last.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1845, "date": "Mar 3 11:47"}, {"filename": "last.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1066, "date": "Mar 3 11:47"}, {"filename": "lastb.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 125, "date": "Mar 3 11:47"}, {"filename": "lastb.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 111, "date": "Mar 3 11:47"}, {"filename": "ls-R-newlines.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1114, "date": "Feb 27 11:25"}, {"filename": "ls-R-newlines.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 471, "date": "Feb 27 11:25"}, {"filename": "ls-R.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 298654, "date": "Feb 19 07:07"}, {"filename": "ls-R.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 62421, "date": "Feb 19 07:07"}, {"filename": "ls-al.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3950, "date": "Nov 17 12:00"}, {"filename": "ls-al.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1744, "date": "Oct 31 08:07"}, {"filename": "ls-alR.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 772252, "date": "Feb 19 07:07"}, {"filename": "ls-alR.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 262651, "date": "Feb 19 07:07"}, {"filename": "ls-alh.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3942, "date": "Nov 17 12:00"}, {"filename": "ls-alh.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1567, "date": "Oct 31 08:07"}, {"filename": "ls-glob.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 66907, "date": "Feb 19 07:07"}, {"filename": "ls-glob.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 13721, "date": "Feb 19 07:07"}, {"filename": "ls-l-newlines.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1176, "date": "Feb 27 11:25"}, {"filename": "ls-l-newlines.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 576, "date": "Feb 27 11:25"}, {"filename": "ls-lR-newlines.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2089, "date": "Feb 27 11:25"}, {"filename": "ls-lR-newlines.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 984, "date": "Feb 27 11:25"}, {"filename": "ls-newlines.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 498, "date": "Feb 27 11:25"}, {"filename": "ls-newlines.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 260, "date": "Feb 27 11:25"}, {"filename": "ls.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 622, "date": "Nov 17 12:00"}, {"filename": "ls.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 162, "date": "Oct 31 08:07"}, {"filename": "lsblk-allcols.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 11397, "date": "Nov 17 12:00"}, {"filename": "lsblk-allcols.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 7364, "date": "Nov 17 12:00"}, {"filename": "lsblk.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2114, "date": "Nov 17 12:00"}, {"filename": "lsblk.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 812, "date": "Oct 31 08:07"}, {"filename": "lsmod.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6744, "date": "Nov 17 12:00"}, {"filename": "lsmod.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4251, "date": "Oct 31 08:07"}, {"filename": "lsof-sudo.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 526695, "date": "Nov 17 12:00"}, {"filename": "lsof-sudo.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 342863, "date": "Oct 31 08:07"}, {"filename": "lsof.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 194044, "date": "Nov 17 12:00"}, {"filename": "lsof.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 132043, "date": "Oct 31 08:07"}, {"filename": "mount.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6547, "date": "Nov 17 12:00"}, {"filename": "mount.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3708, "date": "Oct 31 08:07"}, {"filename": "netstat-l.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 5079, "date": "Nov 17 12:00"}, {"filename": "netstat-l.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2606, "date": "Oct 31 08:07"}, {"filename": "netstat-p.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 14711, "date": "Nov 17 12:00"}, {"filename": "netstat-p.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 8706, "date": "Oct 31 08:07"}, {"filename": "netstat-sudo-aeep.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 22957, "date": "Nov 17 12:00"}, {"filename": "netstat-sudo-aeep.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 12016, "date": "Nov 17 12:00"}, {"filename": "netstat-sudo-lnp.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6259, "date": "Nov 17 12:00"}, {"filename": "netstat-sudo-lnp.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3236, "date": "Oct 31 08:07"}, {"filename": "netstat.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 12550, "date": "Nov 17 12:00"}, {"filename": "netstat.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 6711, "date": "Oct 31 08:07"}, {"filename": "passwd.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4116, "date": "Mar 3 11:47"}, {"filename": "passwd.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1565, "date": "Mar 3 11:47"}, {"filename": "pip-list-legacy.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2638, "date": "Dec 17 12:12"}, {"filename": "pip-list-legacy.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1041, "date": "Dec 17 12:12"}, {"filename": "pip-list.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2638, "date": "Dec 17 12:12"}, {"filename": "pip-list.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2360, "date": "Dec 17 12:12"}, {"filename": "pip-show.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 874, "date": "Dec 17 12:12"}, {"filename": "pip-show.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 730, "date": "Dec 17 12:12"}, {"filename": "ps-axu.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 31390, "date": "Nov 17 12:00"}, {"filename": "ps-axu.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 14127, "date": "Oct 31 08:07"}, {"filename": "ps-ef.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 21583, "date": "Nov 17 12:00"}, {"filename": "ps-ef.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 11355, "date": "Oct 31 08:07"}, {"filename": "route-vn.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 447, "date": "Nov 17 12:00"}, {"filename": "route-vn.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 336, "date": "Oct 31 08:07"}, {"filename": "route.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 439, "date": "Nov 17 12:00"}, {"filename": "route.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 336, "date": "Oct 31 08:07"}, {"filename": "shadow.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4330, "date": "Mar 3 11:47"}, {"filename": "shadow.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 939, "date": "Mar 3 11:47"}, {"filename": "ss-sudo-a.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 23277, "date": "Nov 17 12:00"}, {"filename": "ss-sudo-a.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 25599, "date": "Nov 17 12:00"}, {"filename": "stat.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 73147, "date": "Nov 17 12:00"}, {"filename": "stat.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 60023, "date": "Nov 17 12:00"}, {"filename": "systemctl-lj.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 270, "date": "Nov 17 12:00"}, {"filename": "systemctl-lj.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 244, "date": "Nov 17 12:00"}, {"filename": "systemctl-ls.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2431, "date": "Nov 17 12:00"}, {"filename": "systemctl-ls.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2072, "date": "Nov 17 12:00"}, {"filename": "systemctl-luf.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 18756, "date": "Nov 17 12:00"}, {"filename": "systemctl-luf.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 17734, "date": "Nov 17 12:00"}, {"filename": "systemctl.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 47895, "date": "Nov 17 12:00"}, {"filename": "systemctl.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 76059, "date": "Nov 17 12:00"}, {"filename": "uname-a.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 268, "date": "Nov 17 12:00"}, {"filename": "uname-a.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 114, "date": "Oct 31 08:07"}, {"filename": "uptime.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 109, "date": "Nov 17 12:00"}, {"filename": "uptime.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 70, "date": "Oct 31 08:07"}, {"filename": "w.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 292, "date": "Nov 17 12:00"}, {"filename": "w.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 274, "date": "Oct 31 08:07"}, {"filename": "who-a.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 452, "date": "Mar 3 11:47"}, {"filename": "who-a.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 355, "date": "Mar 3 11:47"}, {"filename": "who.json", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 155, "date": "Mar 3 11:47"}, {"filename": "who.out", "parent": "./jc/tests/fixtures/ubuntu-18.04", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 140, "date": "Mar 3 11:47"}, {"filename": "LICENSE", "parent": "./jtbl", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1069, "date": "Mar 5 09:18"}, {"filename": "README.md", "parent": "./jtbl", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 7644, "date": "Mar 6 08:41"}, {"filename": "_config.yml", "parent": "./jtbl", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 26, "date": "Mar 5 16:16"}, {"filename": "build", "parent": "./jtbl", "flags": "drwxr-xr-x", "links": 4, "owner": "kbrazil", "group": "staff", "size": 128, "date": "Mar 5 11:45"}, {"filename": "build-package.sh", "parent": "./jtbl", "flags": "-rwxrwxrwx", "links": 1, "owner": "kbrazil", "group": "staff", "size": 127, "date": "Oct 15 14:55"}, {"filename": "changelog.txt", "parent": "./jtbl", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 71, "date": "Mar 6 10:53"}, {"filename": "dist", "parent": "./jtbl", "flags": "drwxr-xr-x", "links": 5, "owner": "kbrazil", "group": "staff", "size": 160, "date": "Mar 6 10:54"}, {"filename": "install.sh", "parent": "./jtbl", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 46, "date": "Nov 17 12:00"}, {"filename": "jtbl", "parent": "./jtbl", "flags": "drwxr-xr-x", "links": 5, "owner": "kbrazil", "group": "staff", "size": 160, "date": "Mar 5 12:52"}, {"filename": "jtbl.egg-info", "parent": "./jtbl", "flags": "drwxr-xr-x", "links": 8, "owner": "kbrazil", "group": "staff", "size": 256, "date": "Mar 6 10:54"}, {"filename": "pypi-upload.sh", "parent": "./jtbl", "flags": "-rwxr-xr-x@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 31, "date": "Oct 17 14:59"}, {"filename": "setup.py", "parent": "./jtbl", "flags": "-rwxr-xr-x", "links": 1, "owner": "kbrazil", "group": "staff", "size": 910, "date": "Mar 6 10:47"}, {"filename": "tests", "parent": "./jtbl", "flags": "drwxr-xr-x", "links": 4, "owner": "kbrazil", "group": "staff", "size": 128, "date": "Mar 5 13:13"}, {"filename": "bdist.macosx-10.14-x86_64", "parent": "./jtbl/build", "flags": "drwxr-xr-x", "links": 2, "owner": "kbrazil", "group": "staff", "size": 64, "date": "Mar 6 10:54"}, {"filename": "li", "parent": "./jtbl/build", "flags": "drwxr-xr-x", "links": 3, "owner": "kbrazil", "group": "staff", "size": 96, "date": "Mar 5 11:45"}, {"filename": "jtbl", "parent": "./jtbl/build/lib", "flags": "drwxr-xr-x", "links": 4, "owner": "kbrazil", "group": "staff", "size": 128, "date": "Mar 6 10:54"}, {"filename": "__init__.py", "parent": "./jtbl/build/lib/jtbl", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 0, "date": "Mar 5 11:15"}, {"filename": "cli.py", "parent": "./jtbl/build/lib/jtbl", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1424, "date": "Mar 6 10:37"}, {"filename": "jtbl-0.1.2-py3-none-any.whl", "parent": "./jtbl/dist", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 5544, "date": "Mar 6 10:54"}, {"filename": "jtbl-0.1.2.tar.gz", "parent": "./jtbl/dist", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4868, "date": "Mar 6 10:54"}, {"filename": "__init__.py", "parent": "./jtbl/jtbl", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 0, "date": "Mar 5 11:15"}, {"filename": "__pycache__", "parent": "./jtbl/jtbl", "flags": "drwxr-xr-x", "links": 4, "owner": "kbrazil", "group": "staff", "size": 128, "date": "Mar 6 15:02"}, {"filename": "cli.py", "parent": "./jtbl/jtbl", "flags": "-rwxr-xr-x@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1438, "date": "Mar 6 15:02"}, {"filename": "__init__.cpython-37.pyc", "parent": "./jtbl/jtbl/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 127, "date": "Mar 5 12:52"}, {"filename": "cli.cpython-37.pyc", "parent": "./jtbl/jtbl/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 988, "date": "Mar 6 15:02"}, {"filename": "PKG-INFO", "parent": "./jtbl/jtbl.egg-info", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 9569, "date": "Mar 6 10:54"}, {"filename": "SOURCES.txt", "parent": "./jtbl/jtbl.egg-info", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 217, "date": "Mar 6 10:54"}, {"filename": "dependency_links.txt", "parent": "./jtbl/jtbl.egg-info", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1, "date": "Mar 6 10:54"}, {"filename": "entry_points.txt", "parent": "./jtbl/jtbl.egg-info", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 40, "date": "Mar 6 10:54"}, {"filename": "requires.txt", "parent": "./jtbl/jtbl.egg-info", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 16, "date": "Mar 6 10:54"}, {"filename": "top_level.txt", "parent": "./jtbl/jtbl.egg-info", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 5, "date": "Mar 6 10:54"}, {"filename": "fixtures", "parent": "./jtbl/tests", "flags": "drwxr-xr-x", "links": 6, "owner": "kbrazil", "group": "staff", "size": 192, "date": "Mar 6 10:41"}, {"filename": "deepnest.json", "parent": "./jtbl/tests/fixtures", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 271, "date": "Mar 6 10:41"}, {"filename": "ifconfig-jq.jsonl", "parent": "./jtbl/tests/fixtures", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1575, "date": "Mar 5 15:42"}, {"filename": "jsonlines.jsonl", "parent": "./jtbl/tests/fixtures", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 300, "date": "Mar 5 12:28"}, {"filename": "LICENSE", "parent": "./microsim", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1069, "date": "Aug 9 2019"}, {"filename": "README.md", "parent": "./microsim", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 11913, "date": "Oct 1 13:22"}, {"filename": "_config.yml", "parent": "./microsim", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 26, "date": "Dec 10 08:08"}, {"filename": "k8s_deployments", "parent": "./microsim", "flags": "drwxr-xr-x", "links": 9, "owner": "kbrazil", "group": "staff", "size": 288, "date": "Dec 10 08:02"}, {"filename": "microsimclient", "parent": "./microsim", "flags": "drwxr-xr-x", "links": 7, "owner": "kbrazil", "group": "staff", "size": 224, "date": "Oct 1 13:22"}, {"filename": "microsimserver", "parent": "./microsim", "flags": "drwxr-xr-x", "links": 7, "owner": "kbrazil", "group": "staff", "size": 224, "date": "Oct 1 13:22"}, {"filename": "README.md", "parent": "./microsim/k8s_deployments", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 7743, "date": "Aug 28 2019"}, {"filename": "blog", "parent": "./microsim/k8s_deployments", "flags": "drwxr-xr-x", "links": 14, "owner": "kbrazil", "group": "staff", "size": 448, "date": "Jan 28 13:52"}, {"filename": "crashing_service.yaml", "parent": "./microsim/k8s_deployments", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4111, "date": "Aug 29 2019"}, {"filename": "images", "parent": "./microsim/k8s_deployments", "flags": "drwxr-xr-x", "links": 6, "owner": "kbrazil", "group": "staff", "size": 192, "date": "Aug 27 2019"}, {"filename": "monitoring.yaml", "parent": "./microsim/k8s_deployments", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4051, "date": "Aug 29 2019"}, {"filename": "simple.yaml", "parent": "./microsim/k8s_deployments", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1947, "date": "Aug 29 2019"}, {"filename": "istio-ingress.yaml", "parent": "./microsim/k8s_deployments/blog", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 585, "date": "Jan 24 14:29"}, {"filename": "istio-mtls-permissive.yaml", "parent": "./microsim/k8s_deployments/blog", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 358, "date": "Jan 24 14:28"}, {"filename": "istio-mtls-strict.yaml", "parent": "./microsim/k8s_deployments/blog", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 539, "date": "Jan 24 14:28"}, {"filename": "istio-rbac-policy-final.yaml", "parent": "./microsim/k8s_deployments/blog", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 995, "date": "Jan 29 06:46"}, {"filename": "istio-rbac-policy-test.yaml", "parent": "./microsim/k8s_deployments/blog", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 456, "date": "Jan 24 14:29"}, {"filename": "istio-sc.yaml", "parent": "./microsim/k8s_deployments/blog", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 285, "date": "Jan 28 14:36"}, {"filename": "istio-sidecar.yaml", "parent": "./microsim/k8s_deployments/blog", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3640, "date": "Jan 29 06:47"}, {"filename": "servicelayer-network-policy.yaml", "parent": "./microsim/k8s_deployments/blog", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1659, "date": "Dec 18 20:43"}, {"filename": "servicelayer.yaml", "parent": "./microsim/k8s_deployments/blog", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4195, "date": "Dec 18 16:02"}, {"filename": "sidecar-network-policy.yaml", "parent": "./microsim/k8s_deployments/blog", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 639, "date": "Jan 9 16:07"}, {"filename": "sidecar.yaml", "parent": "./microsim/k8s_deployments/blog", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2716, "date": "Jan 9 14:55"}, {"filename": "simple.yaml", "parent": "./microsim/k8s_deployments/blog", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 2072, "date": "Dec 10 06:23"}, {"filename": "graphite-crashing.png", "parent": "./microsim/k8s_deployments/images", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 76552, "date": "Aug 27 2019"}, {"filename": "graphite.png", "parent": "./microsim/k8s_deployments/images", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 476438, "date": "Aug 22 2019"}, {"filename": "monitoring.png", "parent": "./microsim/k8s_deployments/images", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 90461, "date": "Aug 22 2019"}, {"filename": "simple.png", "parent": "./microsim/k8s_deployments/images", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 97333, "date": "Aug 18 2019"}, {"filename": "Dockerfile", "parent": "./microsim/microsimclient", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 939, "date": "Aug 27 2019"}, {"filename": "changelog.txt", "parent": "./microsim/microsimclient", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 827, "date": "Oct 1 13:22"}, {"filename": "dockerhub.sh", "parent": "./microsim/microsimclient", "flags": "-rwxr-xr-x@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 263, "date": "Oct 1 12:09"}, {"filename": "microsimclient.py", "parent": "./microsim/microsimclient", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 18140, "date": "Oct 1 13:22"}, {"filename": "microsimclientmac.py", "parent": "./microsim/microsimclient", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 18215, "date": "Sep 30 16:42"}, {"filename": "Dockerfile", "parent": "./microsim/microsimserver", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 528, "date": "Aug 27 2019"}, {"filename": "changelog.txt", "parent": "./microsim/microsimserver", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 380, "date": "Oct 1 13:22"}, {"filename": "dockerhub.sh", "parent": "./microsim/microsimserver", "flags": "-rwxr-xr-x@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 263, "date": "Oct 1 12:09"}, {"filename": "microsimserver.py", "parent": "./microsim/microsimserver", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 10538, "date": "Oct 1 13:22"}, {"filename": "microsimservermac.py", "parent": "./microsim/microsimserver", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 10688, "date": "Sep 30 16:47"}, {"filename": "Dockerfile", "parent": "./microtest", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 229, "date": "Aug 29 2019"}, {"filename": "LICENSE", "parent": "./microtest", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1069, "date": "Aug 9 2019"}, {"filename": "README.md", "parent": "./microtest", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1076, "date": "Aug 29 2019"}, {"filename": "changelog.txt", "parent": "./microtest", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 146, "date": "Aug 29 2019"}, {"filename": "dockerhub.sh", "parent": "./microtest", "flags": "-rwxr-xr-x@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 233, "date": "Aug 29 2019"}, {"filename": "microtest-k8s.yaml", "parent": "./microtest", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 591, "date": "Aug 29 2019"}, {"filename": "microtest.py", "parent": "./microtest", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1274, "date": "Aug 29 2019"}, {"filename": "microtestclient.sh", "parent": "./microtest", "flags": "-rwxr-xr-x@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 428, "date": "Aug 29 2019"}, {"filename": "microtestmac.py", "parent": "./microtest", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1343, "date": "Aug 29 2019"}, {"filename": "html", "parent": "./trafficgen - work in progress", "flags": "drwxrwxrwx", "links": 5, "owner": "kbrazil", "group": "staff", "size": 160, "date": "Aug 5 2019"}, {"filename": "trafficgen.sh", "parent": "./trafficgen - work in progress", "flags": "-rwxrwxrwx@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3351, "date": "Aug 5 2019"}, {"filename": "trafficgen.test.sh", "parent": "./trafficgen - work in progress", "flags": "-rwxrwxrwx@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 3996, "date": "Aug 5 2019"}, {"filename": "trafficgen2.sh", "parent": "./trafficgen - work in progress", "flags": "-rwxrwxrwx@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 5844, "date": "Aug 5 2019"}, {"filename": "trafficgen3.sh", "parent": "./trafficgen - work in progress", "flags": "-rwxrwxrwx@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 4430, "date": "Aug 13 2019"}, {"filename": "passwd", "parent": "./trafficgen - work in progress/html", "flags": "-rwxrwxrwx@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 466, "date": "Dec 28 2016"}, {"filename": "troll-face.jpg", "parent": "./trafficgen - work in progress/html", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 62063, "date": "Aug 5 2019"}, {"filename": "LICENSE", "parent": "./utils", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1069, "date": "Aug 9 2019"}, {"filename": "README.md", "parent": "./utils", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 1464, "date": "Aug 14 2019"}, {"filename": "resizeterm.sh", "parent": "./utils", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 354, "date": "Aug 14 2019"}, {"filename": "vmserial.sh", "parent": "./utils", "flags": "-rw-r--r--@", "links": 1, "owner": "kbrazil", "group": "staff", "size": 786, "date": "Aug 15 2019"}, {"filename": "wwwhostip.py", "parent": "./utils", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 726, "date": "Aug 9 2019"}] jc-1.17.3/tests/fixtures/osx-10.14.6/ls-lR-empty-folder.out000066400000000000000000003733441415226333200227760ustar00rootroot00000000000000total 0 drwxr-xr-x 18 kbrazil staff 576 Jan 3 14:46 ModSecurity-envoy drwxr-xr-x 3 kbrazil staff 96 Jan 28 09:00 clover drwxr-xr-x 10 kbrazil staff 320 Dec 23 10:49 envoyonsteroid drwxr-xr-x 24 kbrazil staff 768 Mar 5 08:28 jc drwxr-xr-x 18 kbrazil staff 576 Mar 6 10:54 jtbl drwxr-xr-x 11 kbrazil staff 352 Dec 10 08:08 microsim drwxr-xr-x 13 kbrazil staff 416 Aug 29 2019 microtest drwxrwxrwx 8 kbrazil staff 256 Aug 9 2019 trafficgen - work in progress drwxr-xr-x 8 kbrazil staff 256 Aug 13 2019 utils ./ModSecurity-envoy: total 40 -rw-r--r-- 1 kbrazil staff 904 Jan 3 14:46 BUILD -rw-r--r-- 1 kbrazil staff 1068 Jan 3 14:46 LICENSE -rw-r--r-- 1 kbrazil staff 7098 Jan 3 14:46 README.md -rw-r--r-- 1 kbrazil staff 955 Jan 3 14:46 WORKSPACE drwxr-xr-x 11 kbrazil staff 352 Jan 3 14:46 ci drwxr-xr-x 8 kbrazil staff 256 Jan 3 14:46 conf drwxr-xr-x 2 kbrazil staff 64 Jan 3 14:46 envoy drwxr-xr-x 14 kbrazil staff 448 Jan 3 14:46 http-filter-modsecurity drwxr-xr-x 4 kbrazil staff 128 Jan 3 14:46 modsecurity ./ModSecurity-envoy/ci: total 64 -rw-r--r-- 1 kbrazil staff 1088 Jan 3 14:46 Dockerfile-envoy-image -rw-r--r-- 1 kbrazil staff 1274 Jan 3 14:46 README.md -rw-r--r-- 1 kbrazil staff 703 Jan 3 14:46 WORKSPACE.filter.example drwxr-xr-x 6 kbrazil staff 192 Jan 3 14:46 build_container -rwxr-xr-x 1 kbrazil staff 653 Jan 3 14:46 do_ci.sh -rwxr-xr-x 1 kbrazil staff 358 Jan 3 14:46 do_envoy_ci.sh -rwxr-xr-x 1 kbrazil staff 325 Jan 3 14:46 docker-entrypoint.sh -rwxr-xr-x 1 kbrazil staff 275 Jan 3 14:46 docker_build.sh -rwxr-xr-x 1 kbrazil staff 1556 Jan 3 14:46 run_envoy_docker.sh ./ModSecurity-envoy/ci/build_container: total 32 -rw-r--r-- 1 kbrazil staff 285 Jan 3 14:46 Dockerfile-centos -rw-r--r-- 1 kbrazil staff 214 Jan 3 14:46 Dockerfile-ubuntu -rwxr-xr-x 1 kbrazil staff 318 Jan 3 14:46 build_container_modsecurity_ubuntu.sh -rwxr-xr-x 1 kbrazil staff 629 Jan 3 14:46 docker_build.sh ./ModSecurity-envoy/conf: total 160 -rw-r--r-- 1 kbrazil staff 495 Jan 3 14:46 envoy-modsecurity-example-lds.yaml -rw-r--r-- 1 kbrazil staff 1350 Jan 3 14:46 envoy-modsecurity-example.yaml -rw-r--r-- 1 kbrazil staff 1683 Jan 3 14:46 lds.yaml -rw-r--r-- 1 kbrazil staff 564 Jan 3 14:46 modsecurity.conf -rw-r--r-- 1 kbrazil staff 10211 Jan 3 14:46 modsecurity.v3.0.3.conf -rw-r--r-- 1 kbrazil staff 53146 Jan 3 14:46 unicode.mapping ./ModSecurity-envoy/envoy: ./ModSecurity-envoy/http-filter-modsecurity: total 136 -rw-r--r-- 1 kbrazil staff 1518 Jan 3 14:46 BUILD -rw-r--r-- 1 kbrazil staff 2577 Jan 3 14:46 README.md -rw-r--r-- 1 kbrazil staff 17224 Jan 3 14:46 http_filter.cc -rw-r--r-- 1 kbrazil staff 4673 Jan 3 14:46 http_filter.h -rw-r--r-- 1 kbrazil staff 2420 Jan 3 14:46 http_filter.proto -rw-r--r-- 1 kbrazil staff 2673 Jan 3 14:46 http_filter_config.cc -rw-r--r-- 1 kbrazil staff 1717 Jan 3 14:46 http_filter_integration_test.cc -rw-r--r-- 1 kbrazil staff 2865 Jan 3 14:46 utility.cc -rw-r--r-- 1 kbrazil staff 401 Jan 3 14:46 utility.h -rw-r--r-- 1 kbrazil staff 2968 Jan 3 14:46 webhook_fetcher.cc -rw-r--r-- 1 kbrazil staff 2306 Jan 3 14:46 webhook_fetcher.h -rw-r--r-- 1 kbrazil staff 1139 Jan 3 14:46 well_known_names.h ./ModSecurity-envoy/modsecurity: total 0 lrwxr-xr-x 1 kbrazil staff 25 Jan 3 14:46 include -> ../../ModSecurity/headers lrwxr-xr-x 1 kbrazil staff 44 Jan 3 14:46 libmodsecurity.a -> ../../ModSecurity/src/.libs/libmodsecurity.a ./clover: total 0 drwxr-xr-x 20 kbrazil staff 640 Jan 28 09:01 clover ./clover/clover: total 80 -rw-r--r-- 1 kbrazil staff 1165 Jan 28 09:01 INFO.yaml -rw-r--r-- 1 kbrazil staff 200 Jan 28 09:01 Pipfile -rw-r--r-- 1 kbrazil staff 11456 Jan 28 09:01 Pipfile.lock drwxr-xr-x 6 kbrazil staff 192 Jan 28 09:01 ci drwxr-xr-x 17 kbrazil staff 544 Jan 28 09:01 clover drwxr-xr-x 5 kbrazil staff 160 Jan 28 09:01 docker drwxr-xr-x 8 kbrazil staff 256 Jan 28 09:01 docs drwxr-xr-x 3 kbrazil staff 96 Jan 28 09:01 download drwxr-xr-x 3 kbrazil staff 96 Jan 28 09:01 edge -rw-r--r-- 1 kbrazil staff 301 Jan 28 09:01 requirements.txt drwxr-xr-x 4 kbrazil staff 128 Jan 28 09:01 samples -rw-r--r-- 1 kbrazil staff 221 Jan 28 09:01 setup.cfg -rw-r--r-- 1 kbrazil staff 1030 Jan 28 09:01 setup.py -rw-r--r-- 1 kbrazil staff 481 Jan 28 09:01 tox.ini -rwxr-xr-x 1 kbrazil staff 1131 Jan 28 09:01 xci-k8s-setup.sh ./clover/clover/ci: total 32 -rwxr-xr-x 1 kbrazil staff 3148 Jan 28 09:01 deploy.sh -rwxr-xr-x 1 kbrazil staff 671 Jan 28 09:01 sdc_setup.sh -rwxr-xr-x 1 kbrazil staff 390 Jan 28 09:01 upload.sh -rwxr-xr-x 1 kbrazil staff 335 Jan 28 09:01 verify.sh ./clover/clover/clover: total 0 -rw-r--r-- 1 kbrazil staff 0 Jan 28 09:01 __init__.py drwxr-xr-x 4 kbrazil staff 128 Jan 28 09:01 cloverctl drwxr-xr-x 10 kbrazil staff 320 Jan 28 09:01 clovisor drwxr-xr-x 9 kbrazil staff 288 Jan 28 09:01 collector drwxr-xr-x 8 kbrazil staff 256 Jan 28 09:01 controller drwxr-xr-x 4 kbrazil staff 128 Jan 28 09:01 functest drwxr-xr-x 7 kbrazil staff 224 Jan 28 09:01 logging drwxr-xr-x 5 kbrazil staff 160 Jan 28 09:01 monitoring drwxr-xr-x 6 kbrazil staff 192 Jan 28 09:01 orchestration drwxr-xr-x 5 kbrazil staff 160 Jan 28 09:01 servicemesh drwxr-xr-x 6 kbrazil staff 192 Jan 28 09:01 spark drwxr-xr-x 7 kbrazil staff 224 Jan 28 09:01 spinnaker drwxr-xr-x 8 kbrazil staff 256 Jan 28 09:01 test drwxr-xr-x 7 kbrazil staff 224 Jan 28 09:01 tools drwxr-xr-x 6 kbrazil staff 192 Jan 28 09:01 tracing ./clover/clover/clover/cloverctl: total 8 -rwxr-xr-x 1 kbrazil staff 932 Jan 28 09:01 build.sh drwxr-xr-x 5 kbrazil staff 160 Jan 28 09:01 src ./clover/clover/clover/cloverctl/src: total 0 drwxr-xr-x 5 kbrazil staff 160 Jan 28 09:01 cloverctl drwxr-xr-x 3 kbrazil staff 96 Jan 28 09:01 cloverinject drwxr-xr-x 3 kbrazil staff 96 Jan 28 09:01 cloverkube ./clover/clover/clover/cloverctl/src/cloverctl: total 8 drwxr-xr-x 34 kbrazil staff 1088 Jan 28 09:01 cmd -rw-r--r-- 1 kbrazil staff 358 Jan 28 09:01 main.go drwxr-xr-x 17 kbrazil staff 544 Jan 28 09:01 yaml ./clover/clover/clover/cloverctl/src/cloverctl/cmd: total 272 -rw-r--r-- 1 kbrazil staff 608 Jan 28 09:01 clear.go -rw-r--r-- 1 kbrazil staff 925 Jan 28 09:01 clear_visibility.go -rw-r--r-- 1 kbrazil staff 629 Jan 28 09:01 create.go -rw-r--r-- 1 kbrazil staff 1572 Jan 28 09:01 create_docker_registry.go -rw-r--r-- 1 kbrazil staff 1522 Jan 28 09:01 create_idsrules.go -rw-r--r-- 1 kbrazil staff 2379 Jan 28 09:01 create_kubernetes.go -rw-r--r-- 1 kbrazil staff 7878 Jan 28 09:01 create_system.go -rw-r--r-- 1 kbrazil staff 1505 Jan 28 09:01 create_testplan.go -rw-r--r-- 1 kbrazil staff 626 Jan 28 09:01 delete.go -rw-r--r-- 1 kbrazil staff 1480 Jan 28 09:01 delete_docker_registry.go -rw-r--r-- 1 kbrazil staff 1457 Jan 28 09:01 delete_kubernetes.go -rw-r--r-- 1 kbrazil staff 5991 Jan 28 09:01 delete_system.go -rw-r--r-- 1 kbrazil staff 627 Jan 28 09:01 get.go -rw-r--r-- 1 kbrazil staff 1497 Jan 28 09:01 get_docker_registry.go -rw-r--r-- 1 kbrazil staff 1484 Jan 28 09:01 get_kubernetes.go -rw-r--r-- 1 kbrazil staff 622 Jan 28 09:01 get_services.go -rw-r--r-- 1 kbrazil staff 2057 Jan 28 09:01 get_testresult.go -rw-r--r-- 1 kbrazil staff 1694 Jan 28 09:01 get_visibility.go -rw-r--r-- 1 kbrazil staff 608 Jan 28 09:01 init.go -rw-r--r-- 1 kbrazil staff 943 Jan 28 09:01 init_visibility.go -rw-r--r-- 1 kbrazil staff 1136 Jan 28 09:01 provider.go -rw-r--r-- 1 kbrazil staff 3638 Jan 28 09:01 root.go -rw-r--r-- 1 kbrazil staff 637 Jan 28 09:01 set.go -rw-r--r-- 1 kbrazil staff 2007 Jan 28 09:01 set_nginx.go -rw-r--r-- 1 kbrazil staff 1556 Jan 28 09:01 set_visibility.go -rw-r--r-- 1 kbrazil staff 607 Jan 28 09:01 start.go -rw-r--r-- 1 kbrazil staff 938 Jan 28 09:01 start_ids.go -rw-r--r-- 1 kbrazil staff 1876 Jan 28 09:01 start_testplan.go -rw-r--r-- 1 kbrazil staff 1713 Jan 28 09:01 start_visibility.go -rw-r--r-- 1 kbrazil staff 634 Jan 28 09:01 stop.go -rw-r--r-- 1 kbrazil staff 933 Jan 28 09:01 stop_ids.go -rw-r--r-- 1 kbrazil staff 931 Jan 28 09:01 stop_visibility.go ./clover/clover/clover/cloverctl/src/cloverctl/yaml: total 72 drwxr-xr-x 5 kbrazil staff 160 Jan 28 09:01 clovisor drwxr-xr-x 4 kbrazil staff 128 Jan 28 09:01 collector drwxr-xr-x 6 kbrazil staff 192 Jan 28 09:01 controller drwxr-xr-x 6 kbrazil staff 192 Jan 28 09:01 datastore -rw-r--r-- 1 kbrazil staff 129 Jan 28 09:01 idsrule_icmp.yaml -rw-r--r-- 1 kbrazil staff 169 Jan 28 09:01 idsrule_scan.yaml -rw-r--r-- 1 kbrazil staff 124 Jan 28 09:01 idsrule_tcp.yaml drwxr-xr-x 6 kbrazil staff 192 Jan 28 09:01 jmeter -rw-r--r-- 1 kbrazil staff 312 Jan 28 09:01 jmeter_testplan.yaml -rw-r--r-- 1 kbrazil staff 218 Jan 28 09:01 lbv1.yaml -rw-r--r-- 1 kbrazil staff 185 Jan 28 09:01 lbv2.yaml -rw-r--r-- 1 kbrazil staff 486 Jan 28 09:01 server.yaml -rw-r--r-- 1 kbrazil staff 424 Jan 28 09:01 set_visibility.yaml drwxr-xr-x 6 kbrazil staff 192 Jan 28 09:01 spark -rw-r--r-- 1 kbrazil staff 110 Jan 28 09:01 start_visibility.yaml ./clover/clover/clover/cloverctl/src/cloverctl/yaml/clovisor: total 24 -rw-r--r-- 1 kbrazil staff 377 Jan 28 09:01 clusterrolebinding.yaml -rw-r--r-- 1 kbrazil staff 560 Jan 28 09:01 daemonset.yaml -rw-r--r-- 1 kbrazil staff 89 Jan 28 09:01 serviceaccount.yaml ./clover/clover/clover/cloverctl/src/cloverctl/yaml/collector: total 16 -rw-r--r-- 1 kbrazil staff 518 Jan 28 09:01 deployment.yaml -rw-r--r-- 1 kbrazil staff 350 Jan 28 09:01 service.yaml ./clover/clover/clover/cloverctl/src/cloverctl/yaml/controller: total 32 -rw-r--r-- 1 kbrazil staff 525 Jan 28 09:01 deployment.yaml -rw-r--r-- 1 kbrazil staff 359 Jan 28 09:01 service_internal.yaml -rw-r--r-- 1 kbrazil staff 232 Jan 28 09:01 service_lb.yaml -rw-r--r-- 1 kbrazil staff 262 Jan 28 09:01 service_nodeport.yaml ./clover/clover/clover/cloverctl/src/cloverctl/yaml/datastore: total 32 -rw-r--r-- 1 kbrazil staff 196 Jan 28 09:01 cassandra_service.yaml -rw-r--r-- 1 kbrazil staff 1265 Jan 28 09:01 cassandra_statefulset.yaml -rw-r--r-- 1 kbrazil staff 635 Jan 28 09:01 redis_pod.yaml -rw-r--r-- 1 kbrazil staff 115 Jan 28 09:01 redis_service.yaml ./clover/clover/clover/cloverctl/src/cloverctl/yaml/jmeter: total 32 -rw-r--r-- 1 kbrazil staff 474 Jan 28 09:01 master_deployment.yaml -rw-r--r-- 1 kbrazil staff 287 Jan 28 09:01 master_service.yaml -rw-r--r-- 1 kbrazil staff 449 Jan 28 09:01 slave_deployment.yaml -rw-r--r-- 1 kbrazil staff 253 Jan 28 09:01 slave_service.yaml ./clover/clover/clover/cloverctl/src/cloverctl/yaml/spark: total 32 -rw-r--r-- 1 kbrazil staff 285 Jan 28 09:01 clusterrolebinding.yaml -rw-r--r-- 1 kbrazil staff 286 Jan 28 09:01 clusterrolebinding_spark.yaml -rw-r--r-- 1 kbrazil staff 328 Jan 28 09:01 deployment.yaml -rw-r--r-- 1 kbrazil staff 98 Jan 28 09:01 serviceaccount.yaml ./clover/clover/clover/cloverctl/src/cloverinject: total 16 -rw-r--r-- 1 kbrazil staff 4435 Jan 28 09:01 inject.go ./clover/clover/clover/cloverctl/src/cloverkube: total 32 -rw-r--r-- 1 kbrazil staff 15386 Jan 28 09:01 main.go ./clover/clover/clover/clovisor: total 40 -rw-r--r-- 1 kbrazil staff 487 Jan 28 09:01 Dockerfile drwxr-xr-x 3 kbrazil staff 96 Jan 28 09:01 bin -rwxr-xr-x 1 kbrazil staff 616 Jan 28 09:01 build-docker -rwxr-xr-x 1 kbrazil staff 1499 Jan 28 09:01 build.sh -rw-r--r-- 1 kbrazil staff 1122 Jan 28 09:01 clovisor.yaml -rw-r--r-- 1 kbrazil staff 2187 Jan 28 09:01 clovisor_main.go drwxr-xr-x 10 kbrazil staff 320 Jan 28 09:01 libclovisor drwxr-xr-x 3 kbrazil staff 96 Jan 28 09:01 proto ./clover/clover/clover/clovisor/bin: total 90664 -rwxr-xr-x 1 kbrazil staff 46419408 Jan 28 09:01 clovisor ./clover/clover/clover/clovisor/libclovisor: total 128 -rw-r--r-- 1 kbrazil staff 30287 Jan 28 09:01 clovisor_bcc.go -rw-r--r-- 1 kbrazil staff 6120 Jan 28 09:01 clovisor_cfg.go -rw-r--r-- 1 kbrazil staff 10727 Jan 28 09:01 clovisor_k8s.go drwxr-xr-x 4 kbrazil staff 128 Jan 28 09:01 ebpf -rw-r--r-- 1 kbrazil staff 3655 Jan 28 09:01 jaeger-all-in-one-template.yml drwxr-xr-x 5 kbrazil staff 160 Jan 28 09:01 libproto -rw-r--r-- 1 kbrazil staff 717 Jan 28 09:01 mongo.yaml -rw-r--r-- 1 kbrazil staff 885 Jan 28 09:01 redis.yaml ./clover/clover/clover/clovisor/libclovisor/ebpf: total 40 -rwxr-xr-x 1 kbrazil staff 4352 Jan 28 09:01 node_interface.c -rwxr-xr-x 1 kbrazil staff 8565 Jan 28 09:01 session_tracking.c ./clover/clover/clover/clovisor/libclovisor/libproto: total 24 -rwxr-xr-x 1 kbrazil staff 361 Jan 28 09:01 build-plugin -rw-r--r-- 1 kbrazil staff 2896 Jan 28 09:01 clovisor_http.go -rw-r--r-- 1 kbrazil staff 3253 Jan 28 09:01 http_alt.go ./clover/clover/clover/clovisor/proto: total 22936 -rw-r--r-- 1 kbrazil staff 11742704 Jan 28 09:01 http.so ./clover/clover/clover/collector: total 8 -rw-r--r-- 1 kbrazil staff 0 Jan 28 09:01 __init__.py -rwxr-xr-x 1 kbrazil staff 519 Jan 28 09:01 build.sh drwxr-xr-x 5 kbrazil staff 160 Jan 28 09:01 db drwxr-xr-x 3 kbrazil staff 96 Jan 28 09:01 docker drwxr-xr-x 9 kbrazil staff 288 Jan 28 09:01 grpc drwxr-xr-x 5 kbrazil staff 160 Jan 28 09:01 process drwxr-xr-x 4 kbrazil staff 128 Jan 28 09:01 yaml ./clover/clover/clover/collector/db: total 24 -rw-r--r-- 1 kbrazil staff 0 Jan 28 09:01 __init__.py -rw-r--r-- 1 kbrazil staff 5618 Jan 28 09:01 cassops.py -rw-r--r-- 1 kbrazil staff 1892 Jan 28 09:01 redisops.py ./clover/clover/clover/collector/docker: total 8 -rw-r--r-- 1 kbrazil staff 589 Jan 28 09:01 Dockerfile ./clover/clover/clover/collector/grpc: total 64 -rw-r--r-- 1 kbrazil staff 0 Jan 28 09:01 __init__.py -rwxr-xr-x 1 kbrazil staff 380 Jan 28 09:01 build_proto.sh -rw-r--r-- 1 kbrazil staff 1070 Jan 28 09:01 collector.proto -rw-r--r-- 1 kbrazil staff 3236 Jan 28 09:01 collector_client.py -rw-r--r-- 1 kbrazil staff 10872 Jan 28 09:01 collector_pb2.py -rw-r--r-- 1 kbrazil staff 3794 Jan 28 09:01 collector_pb2_grpc.py -rw-r--r-- 1 kbrazil staff 3424 Jan 28 09:01 collector_server.py ./clover/clover/clover/collector/process: total 24 -rw-r--r-- 1 kbrazil staff 0 Jan 28 09:01 __init__.py -rw-r--r-- 1 kbrazil staff 7035 Jan 28 09:01 collect.py -rwxr-xr-x 1 kbrazil staff 334 Jan 28 09:01 grpc_process.sh ./clover/clover/clover/collector/yaml: total 16 -rw-r--r-- 1 kbrazil staff 1022 Jan 28 09:01 manifest.template -rw-r--r-- 1 kbrazil staff 2587 Jan 28 09:01 render_yaml.py ./clover/clover/clover/controller: total 8 -rw-r--r-- 1 kbrazil staff 0 Jan 28 09:01 __init__.py -rwxr-xr-x 1 kbrazil staff 518 Jan 28 09:01 build.sh drwxr-xr-x 9 kbrazil staff 288 Jan 28 09:01 control drwxr-xr-x 3 kbrazil staff 96 Jan 28 09:01 docker drwxr-xr-x 7 kbrazil staff 224 Jan 28 09:01 process drwxr-xr-x 4 kbrazil staff 128 Jan 28 09:01 yaml ./clover/clover/clover/controller/control: total 16 -rw-r--r-- 1 kbrazil staff 0 Jan 28 09:01 __init__.py drwxr-xr-x 10 kbrazil staff 320 Jan 28 09:01 api -rw-r--r-- 1 kbrazil staff 1298 Jan 28 09:01 control.py drwxr-xr-x 4 kbrazil staff 128 Jan 28 09:01 static drwxr-xr-x 11 kbrazil staff 352 Jan 28 09:01 templates drwxr-xr-x 4 kbrazil staff 128 Jan 28 09:01 views -rw-r--r-- 1 kbrazil staff 82 Jan 28 09:01 wsgi.py ./clover/clover/clover/controller/control/api: total 88 -rw-r--r-- 1 kbrazil staff 178 Jan 28 09:01 __init__.py -rw-r--r-- 1 kbrazil staff 5047 Jan 28 09:01 collector.py -rw-r--r-- 1 kbrazil staff 1969 Jan 28 09:01 file_upload.py -rw-r--r-- 1 kbrazil staff 6070 Jan 28 09:01 halyard.py -rw-r--r-- 1 kbrazil staff 3643 Jan 28 09:01 jmeter.py -rw-r--r-- 1 kbrazil staff 2983 Jan 28 09:01 nginx.py -rw-r--r-- 1 kbrazil staff 3339 Jan 28 09:01 snort.py -rw-r--r-- 1 kbrazil staff 5504 Jan 28 09:01 visibility.py ./clover/clover/clover/controller/control/static: total 0 drwxr-xr-x 5 kbrazil staff 160 Jan 28 09:01 css drwxr-xr-x 6 kbrazil staff 192 Jan 28 09:01 js ./clover/clover/clover/controller/control/static/css: total 392 -rw-r--r-- 1 kbrazil staff 486 Jan 28 09:01 app.css -rw-r--r-- 1 kbrazil staff 155708 Jan 28 09:01 foundation.css -rw-r--r-- 1 kbrazil staff 36041 Jan 28 09:01 jquery-ui.css ./clover/clover/clover/controller/control/static/js: total 520 drwxr-xr-x 4 kbrazil staff 128 Jan 28 09:01 foundation drwxr-xr-x 4 kbrazil staff 128 Jan 28 09:01 graphing -rw-r--r-- 1 kbrazil staff 253668 Jan 28 09:01 jquery-ui.min.js -rw-r--r-- 1 kbrazil staff 8550 Jan 28 09:01 visibility.js ./clover/clover/clover/controller/control/static/js/foundation: total 824 -rw-r--r-- 1 kbrazil staff 148827 Jan 28 09:01 foundation.min.js -rw-r--r-- 1 kbrazil staff 268039 Jan 28 09:01 jquery.js ./clover/clover/clover/controller/control/static/js/graphing: total 14848 -rw-r--r-- 1 kbrazil staff 4783367 Jan 28 09:01 candela.min.js -rw-r--r-- 1 kbrazil staff 2814564 Jan 28 09:01 plotly-latest.min.js ./clover/clover/clover/controller/control/templates: total 72 -rw-r--r-- 1 kbrazil staff 1026 Jan 28 09:01 base.html -rw-r--r-- 1 kbrazil staff 884 Jan 28 09:01 header.html -rw-r--r-- 1 kbrazil staff 1002 Jan 28 09:01 http_details.html -rw-r--r-- 1 kbrazil staff 297 Jan 28 09:01 metric_requests.html -rw-r--r-- 1 kbrazil staff 640 Jan 28 09:01 request_counts.html -rw-r--r-- 1 kbrazil staff 730 Jan 28 09:01 rt_system_counts.html -rw-r--r-- 1 kbrazil staff 1165 Jan 28 09:01 tracing_names.html -rw-r--r-- 1 kbrazil staff 1663 Jan 28 09:01 visibility.html -rw-r--r-- 1 kbrazil staff 1480 Jan 28 09:01 visibility_controls.html ./clover/clover/clover/controller/control/views: total 16 -rw-r--r-- 1 kbrazil staff 178 Jan 28 09:01 __init__.py -rw-r--r-- 1 kbrazil staff 3347 Jan 28 09:01 visibility.py ./clover/clover/clover/controller/docker: total 8 -rw-r--r-- 1 kbrazil staff 1506 Jan 28 09:01 Dockerfile ./clover/clover/clover/controller/process: total 40 -rw-r--r-- 1 kbrazil staff 178 Jan 28 09:01 __init__.py -rwxr-xr-x 1 kbrazil staff 441 Jan 28 09:01 gunicorn_process.sh -rw-r--r-- 1 kbrazil staff 280 Jan 28 09:01 nginx.conf -rwxr-xr-x 1 kbrazil staff 318 Jan 28 09:01 nginx_process.sh -rwxr-xr-x 1 kbrazil staff 369 Jan 28 09:01 start_process.sh ./clover/clover/clover/controller/yaml: total 16 -rw-r--r-- 1 kbrazil staff 809 Jan 28 09:01 manifest.template -rw-r--r-- 1 kbrazil staff 2605 Jan 28 09:01 render_yaml.py ./clover/clover/clover/functest: total 8 -rw-r--r-- 1 kbrazil staff 0 Jan 28 09:01 __init__.py -rw-r--r-- 1 kbrazil staff 798 Jan 28 09:01 clover_k8s.py ./clover/clover/clover/logging: total 24 -rw-r--r-- 1 kbrazil staff 0 Jan 28 09:01 __init__.py -rw-r--r-- 1 kbrazil staff 423 Jan 28 09:01 conftest.py -rw-r--r-- 1 kbrazil staff 959 Jan 28 09:01 es_test.py drwxr-xr-x 7 kbrazil staff 224 Jan 28 09:01 install -rw-r--r-- 1 kbrazil staff 1897 Jan 28 09:01 validate.py ./clover/clover/clover/logging/install: total 48 -rw-r--r-- 1 kbrazil staff 3230 Jan 28 09:01 elasticsearch-statefulset-service.yaml -rw-r--r-- 1 kbrazil staff 2181 Jan 28 09:01 fluentd-daemonset-elasticsearch-rbac.yaml -rw-r--r-- 1 kbrazil staff 1030 Jan 28 09:01 fluentd-istio.yaml -rw-r--r-- 1 kbrazil staff 4298 Jan 28 09:01 logging-stack.yaml -rw-r--r-- 1 kbrazil staff 829 Jan 28 09:01 proxy-access-control-sidecar.yml ./clover/clover/clover/monitoring: total 24 -rw-r--r-- 1 kbrazil staff 0 Jan 28 09:01 __init__.py -rw-r--r-- 1 kbrazil staff 4716 Jan 28 09:01 monitoring.py -rw-r--r-- 1 kbrazil staff 2109 Jan 28 09:01 validate.py ./clover/clover/clover/orchestration: total 48 -rw-r--r-- 1 kbrazil staff 169 Jan 28 09:01 Pipfile -rw-r--r-- 1 kbrazil staff 8392 Jan 28 09:01 Pipfile.lock -rw-r--r-- 1 kbrazil staff 0 Jan 28 09:01 __init__.py -rw-r--r-- 1 kbrazil staff 5915 Jan 28 09:01 kube_client.py ./clover/clover/clover/servicemesh: total 24 -rw-r--r-- 1 kbrazil staff 0 Jan 28 09:01 __init__.py -rw-r--r-- 1 kbrazil staff 4878 Jan 28 09:01 route_rules.py -rw-r--r-- 1 kbrazil staff 1254 Jan 28 09:01 validate.py ./clover/clover/clover/spark: total 8 -rw-r--r-- 1 kbrazil staff 578 Jan 28 09:01 build.sbt drwxr-xr-x 4 kbrazil staff 128 Jan 28 09:01 docker drwxr-xr-x 3 kbrazil staff 96 Jan 28 09:01 src drwxr-xr-x 3 kbrazil staff 96 Jan 28 09:01 yaml ./clover/clover/clover/spark/docker: total 0 drwxr-xr-x 4 kbrazil staff 128 Jan 28 09:01 clover-spark drwxr-xr-x 6 kbrazil staff 192 Jan 28 09:01 spark-submit ./clover/clover/clover/spark/docker/clover-spark: total 16 -rw-r--r-- 1 kbrazil staff 2306 Jan 28 09:01 Dockerfile -rwxr-xr-x 1 kbrazil staff 604 Jan 28 09:01 build.sh ./clover/clover/clover/spark/docker/spark-submit: total 32 -rw-r--r-- 1 kbrazil staff 861 Jan 28 09:01 Dockerfile -rwxr-xr-x 1 kbrazil staff 523 Jan 28 09:01 build.sh -rwxr-xr-x 1 kbrazil staff 1138 Jan 28 09:01 runner.sh -rwxr-xr-x 1 kbrazil staff 1034 Jan 28 09:01 runner_fast.sh ./clover/clover/clover/spark/src: total 0 drwxr-xr-x 3 kbrazil staff 96 Jan 28 09:01 main ./clover/clover/clover/spark/src/main: total 0 drwxr-xr-x 4 kbrazil staff 128 Jan 28 09:01 scala ./clover/clover/clover/spark/src/main/scala: total 32 -rw-r--r-- 1 kbrazil staff 1758 Jan 28 09:01 CloverFast.scala -rw-r--r-- 1 kbrazil staff 8445 Jan 28 09:01 CloverSlow.scala ./clover/clover/clover/spark/yaml: total 8 -rw-r--r-- 1 kbrazil staff 1002 Jan 28 09:01 clover-spark.yaml ./clover/clover/clover/spinnaker: total 24 -rw-r--r-- 1 kbrazil staff 0 Jan 28 09:01 __init__.py -rwxr-xr-x 1 kbrazil staff 4121 Jan 28 09:01 halyard.py -rw-r--r-- 1 kbrazil staff 1515 Jan 28 09:01 halyard_sample.py drwxr-xr-x 4 kbrazil staff 128 Jan 28 09:01 install drwxr-xr-x 4 kbrazil staff 128 Jan 28 09:01 lib ./clover/clover/clover/spinnaker/install: total 32 -rw-r--r-- 1 kbrazil staff 233 Jan 28 09:01 minio-pv.yml -rw-r--r-- 1 kbrazil staff 8953 Jan 28 09:01 quick-install-spinnaker.yml ./clover/clover/clover/spinnaker/lib: total 16 -rw-r--r-- 1 kbrazil staff 0 Jan 28 09:01 __init__.py -rwxr-xr-x 1 kbrazil staff 4611 Jan 28 09:01 halyard_base.py ./clover/clover/clover/test: total 40 drwxr-xr-x 3 kbrazil staff 96 Jan 28 09:01 app -rw-r--r-- 1 kbrazil staff 10659 Jan 28 09:01 fraser_a_b_test.py drwxr-xr-x 3 kbrazil staff 96 Jan 28 09:01 istio drwxr-xr-x 3 kbrazil staff 96 Jan 28 09:01 script -rw-r--r-- 1 kbrazil staff 5613 Jan 28 09:01 validate_success.py drwxr-xr-x 3 kbrazil staff 96 Jan 28 09:01 yaml ./clover/clover/clover/test/app: total 0 drwxr-xr-x 5 kbrazil staff 160 Jan 28 09:01 sdc ./clover/clover/clover/test/app/sdc: total 24 -rw-r--r-- 1 kbrazil staff 597 Jan 28 09:01 clover-server4.yaml -rw-r--r-- 1 kbrazil staff 597 Jan 28 09:01 clover-server5.yaml -rw-r--r-- 1 kbrazil staff 393 Jan 28 09:01 lb-v2.yaml ./clover/clover/clover/test/istio: total 0 drwxr-xr-x 7 kbrazil staff 224 Jan 28 09:01 sdc ./clover/clover/clover/test/istio/sdc: total 40 -rw-r--r-- 1 kbrazil staff 243 Jan 28 09:01 clover-server4-delay.yaml -rw-r--r-- 1 kbrazil staff 243 Jan 28 09:01 clover-server5-delay.yaml -rw-r--r-- 1 kbrazil staff 236 Jan 28 09:01 route-rule-lb-50-v2.yaml -rw-r--r-- 1 kbrazil staff 176 Jan 28 09:01 route-rule-lb-v1.yaml -rw-r--r-- 1 kbrazil staff 176 Jan 28 09:01 route-rule-lb-v2.yaml ./clover/clover/clover/test/script: total 8 -rwxr-xr-x 1 kbrazil staff 111 Jan 28 09:01 lb-test.sh ./clover/clover/clover/test/yaml: total 8 -rw-r--r-- 1 kbrazil staff 600 Jan 28 09:01 fraser_a_b_test.yaml ./clover/clover/clover/tools: total 16 -rw-r--r-- 1 kbrazil staff 0 Jan 28 09:01 __init__.py -rw-r--r-- 1 kbrazil staff 1572 Jan 28 09:01 clover_validate_rr.py drwxr-xr-x 8 kbrazil staff 256 Jan 28 09:01 jmeter -rw-r--r-- 1 kbrazil staff 3725 Jan 28 09:01 validate_rr.py drwxr-xr-x 4 kbrazil staff 128 Jan 28 09:01 yaml ./clover/clover/clover/tools/jmeter: total 24 -rwxr-xr-x 1 kbrazil staff 530 Jan 28 09:01 build_master.sh -rwxr-xr-x 1 kbrazil staff 528 Jan 28 09:01 build_slave.sh drwxr-xr-x 6 kbrazil staff 192 Jan 28 09:01 jmeter-master drwxr-xr-x 3 kbrazil staff 96 Jan 28 09:01 jmeter-slave -rw-r--r-- 1 kbrazil staff 2190 Jan 28 09:01 rmi_keystore.jks drwxr-xr-x 5 kbrazil staff 160 Jan 28 09:01 yaml ./clover/clover/clover/tools/jmeter/jmeter-master: total 8 -rw-r--r-- 1 kbrazil staff 932 Jan 28 09:01 Dockerfile drwxr-xr-x 7 kbrazil staff 224 Jan 28 09:01 grpc drwxr-xr-x 3 kbrazil staff 96 Jan 28 09:01 process drwxr-xr-x 3 kbrazil staff 96 Jan 28 09:01 tests ./clover/clover/clover/tools/jmeter/jmeter-master/grpc: total 56 -rwxr-xr-x 1 kbrazil staff 377 Jan 28 09:01 build_proto.sh -rw-r--r-- 1 kbrazil staff 1001 Jan 28 09:01 jmeter.proto -rw-r--r-- 1 kbrazil staff 10989 Jan 28 09:01 jmeter_pb2.py -rw-r--r-- 1 kbrazil staff 2823 Jan 28 09:01 jmeter_pb2_grpc.py -rw-r--r-- 1 kbrazil staff 3854 Jan 28 09:01 jmeter_server.py ./clover/clover/clover/tools/jmeter/jmeter-master/process: total 8 -rwxr-xr-x 1 kbrazil staff 331 Jan 28 09:01 grpc_process.sh ./clover/clover/clover/tools/jmeter/jmeter-master/tests: total 16 -rw-r--r-- 1 kbrazil staff 7234 Jan 28 09:01 jmx.template ./clover/clover/clover/tools/jmeter/jmeter-slave: total 8 -rw-r--r-- 1 kbrazil staff 736 Jan 28 09:01 Dockerfile ./clover/clover/clover/tools/jmeter/yaml: total 24 -rw-r--r-- 1 kbrazil staff 977 Jan 28 09:01 manifest.template -rw-r--r-- 1 kbrazil staff 2313 Jan 28 09:01 render_master.py -rw-r--r-- 1 kbrazil staff 2322 Jan 28 09:01 render_slave.py ./clover/clover/clover/tools/yaml: total 16 -rw-r--r-- 1 kbrazil staff 2506 Jan 28 09:01 cassandra.yaml -rw-r--r-- 1 kbrazil staff 754 Jan 28 09:01 redis.yaml ./clover/clover/clover/tracing: total 32 -rw-r--r-- 1 kbrazil staff 0 Jan 28 09:01 __init__.py -rw-r--r-- 1 kbrazil staff 7191 Jan 28 09:01 tracing.py -rw-r--r-- 1 kbrazil staff 1307 Jan 28 09:01 tracing_sample.py -rw-r--r-- 1 kbrazil staff 2648 Jan 28 09:01 validate.py ./clover/clover/docker: total 24 -rw-r--r-- 1 kbrazil staff 1005 Jan 28 09:01 Dockerfile -rwxr-xr-x 1 kbrazil staff 579 Jan 28 09:01 build.sh -rwxr-xr-x 1 kbrazil staff 1244 Jan 28 09:01 setup.sh ./clover/clover/docs: total 32 -rw-r--r-- 1 kbrazil staff 29 Jan 28 09:01 conf.py -rw-r--r-- 1 kbrazil staff 39 Jan 28 09:01 conf.yaml drwxr-xr-x 5 kbrazil staff 160 Jan 28 09:01 development -rw-r--r-- 1 kbrazil staff 376 Jan 28 09:01 index.rst drwxr-xr-x 5 kbrazil staff 160 Jan 28 09:01 release -rw-r--r-- 1 kbrazil staff 31 Jan 28 09:01 requirements.txt ./clover/clover/docs/development: total 0 drwxr-xr-x 8 kbrazil staff 256 Jan 28 09:01 design drwxr-xr-x 3 kbrazil staff 96 Jan 28 09:01 overview drwxr-xr-x 3 kbrazil staff 96 Jan 28 09:01 requirements ./clover/clover/docs/development/design: total 64 -rw-r--r-- 1 kbrazil staff 8250 Jan 28 09:01 clovisor.rst -rw-r--r-- 1 kbrazil staff 352 Jan 28 09:01 index.rst -rw-r--r-- 1 kbrazil staff 5731 Jan 28 09:01 logging.rst -rw-r--r-- 1 kbrazil staff 841 Jan 28 09:01 monitoring.rst -rw-r--r-- 1 kbrazil staff 2139 Jan 28 09:01 tracing.rst ./clover/clover/docs/development/overview: ./clover/clover/docs/development/requirements: ./clover/clover/docs/release: total 0 drwxr-xr-x 13 kbrazil staff 416 Jan 28 09:01 configguide drwxr-xr-x 5 kbrazil staff 160 Jan 28 09:01 release-notes drwxr-xr-x 5 kbrazil staff 160 Jan 28 09:01 userguide ./clover/clover/docs/release/configguide: total 224 -rw-r--r-- 1 kbrazil staff 3752 Jan 28 09:01 a_b_config_guide.rst -rw-r--r-- 1 kbrazil staff 6385 Jan 28 09:01 clovisor_config_guide.rst -rw-r--r-- 1 kbrazil staff 6870 Jan 28 09:01 controller_services_config_guide.rst drwxr-xr-x 18 kbrazil staff 576 Jan 28 09:01 imgs -rw-r--r-- 1 kbrazil staff 521 Jan 28 09:01 index.rst -rw-r--r-- 1 kbrazil staff 12268 Jan 28 09:01 jmeter_config_guide.rst -rw-r--r-- 1 kbrazil staff 11479 Jan 28 09:01 modsecurity_config_guide.rst -rw-r--r-- 1 kbrazil staff 29174 Jan 28 09:01 sdc_config_guide.rst -rw-r--r-- 1 kbrazil staff 11613 Jan 28 09:01 spinnaker_config_guide.rst -rw-r--r-- 1 kbrazil staff 18350 Jan 28 09:01 visibility_config_guide.rst ./clover/clover/docs/release/configguide/imgs: total 9800 -rw-r--r-- 1 kbrazil staff 3985370 Jan 28 09:01 istio_gateway.png -rw-r--r-- 1 kbrazil staff 78367 Jan 28 09:01 jmeter_overview.png -rw-r--r-- 1 kbrazil staff 106854 Jan 28 09:01 sdc_sample.png -rw-r--r-- 1 kbrazil staff 226183 Jan 28 09:01 sdc_sample.xcf -rw-r--r-- 1 kbrazil staff 84913 Jan 28 09:01 sdc_tracing.png -rw-r--r-- 1 kbrazil staff 61742 Jan 28 09:01 spinnaker-bake.png -rw-r--r-- 1 kbrazil staff 62381 Jan 28 09:01 spinnaker-deploy.png -rw-r--r-- 1 kbrazil staff 37564 Jan 28 09:01 spinnaker-expected-artifacts.png -rw-r--r-- 1 kbrazil staff 17589 Jan 28 09:01 spinnaker-produces-artifact.png -rw-r--r-- 1 kbrazil staff 20104 Jan 28 09:01 spinnaker.png -rw-r--r-- 1 kbrazil staff 33626 Jan 28 09:01 visibility_discovered_active.png -rw-r--r-- 1 kbrazil staff 38887 Jan 28 09:01 visibility_distinct_counts.png -rw-r--r-- 1 kbrazil staff 27362 Jan 28 09:01 visibility_distinct_http.png -rw-r--r-- 1 kbrazil staff 96758 Jan 28 09:01 visibility_monitoring_metrics.png -rw-r--r-- 1 kbrazil staff 64705 Jan 28 09:01 visibility_overview.png -rw-r--r-- 1 kbrazil staff 40552 Jan 28 09:01 visibility_system_counts_response_times.png ./clover/clover/docs/release/release-notes: total 16 -rw-r--r-- 1 kbrazil staff 340 Jan 28 09:01 index.rst -rw-r--r-- 1 kbrazil staff 3279 Jan 28 09:01 release-notes.rst ./clover/clover/docs/release/userguide: total 16 -rw-r--r-- 1 kbrazil staff 292 Jan 28 09:01 index.rst -rw-r--r-- 1 kbrazil staff 1497 Jan 28 09:01 userguide.rst ./clover/clover/download: total 19632 -rw-r--r-- 1 kbrazil staff 10051204 Jan 28 09:01 cloverctl.tar.gz ./clover/clover/edge: total 0 drwxr-xr-x 10 kbrazil staff 320 Jan 28 09:01 sample ./clover/clover/edge/sample: total 160 -rw-r--r-- 1 kbrazil staff 41699 Jan 28 09:01 Network.png -rw-r--r-- 1 kbrazil staff 3816 Jan 28 09:01 README.md -rw-r--r-- 1 kbrazil staff 19301 Jan 28 09:01 ansible.cfg -rw-r--r-- 1 kbrazil staff 194 Jan 28 09:01 clusterForm.yml -rw-r--r-- 1 kbrazil staff 64 Jan 28 09:01 clusterTear.yml -rw-r--r-- 1 kbrazil staff 183 Jan 28 09:01 hosts drwxr-xr-x 5 kbrazil staff 160 Jan 28 09:01 live_stream_app drwxr-xr-x 6 kbrazil staff 192 Jan 28 09:01 roles ./clover/clover/edge/sample/live_stream_app: total 16 -rw-r--r-- 1 kbrazil staff 3631 Jan 28 09:01 README.md -rw-r--r-- 1 kbrazil staff 951 Jan 28 09:01 deployment_uv4l.yml drwxr-xr-x 5 kbrazil staff 160 Jan 28 09:01 docker ./clover/clover/edge/sample/live_stream_app/docker: total 16 -rw-r--r-- 1 kbrazil staff 599 Jan 28 09:01 Dockerfile -rw-r--r-- 1 kbrazil staff 500 Jan 28 09:01 build.sh drwxr-xr-x 3 kbrazil staff 96 Jan 28 09:01 src ./clover/clover/edge/sample/live_stream_app/docker/src: total 8 -rw-r--r-- 1 kbrazil staff 356 Jan 28 09:01 uv4l_start.sh ./clover/clover/edge/sample/roles: total 0 drwxr-xr-x 3 kbrazil staff 96 Jan 28 09:01 clusterForm_common drwxr-xr-x 3 kbrazil staff 96 Jan 28 09:01 clusterForm_master drwxr-xr-x 3 kbrazil staff 96 Jan 28 09:01 clusterForm_slave(s) drwxr-xr-x 3 kbrazil staff 96 Jan 28 09:01 clusterTear_common ./clover/clover/edge/sample/roles/clusterForm_common: total 0 drwxr-xr-x 3 kbrazil staff 96 Jan 28 09:01 tasks ./clover/clover/edge/sample/roles/clusterForm_common/tasks: total 8 -rw-r--r-- 1 kbrazil staff 3853 Jan 28 09:01 main.yml ./clover/clover/edge/sample/roles/clusterForm_master: total 0 drwxr-xr-x 3 kbrazil staff 96 Jan 28 09:01 tasks ./clover/clover/edge/sample/roles/clusterForm_master/tasks: total 8 -rw-r--r-- 1 kbrazil staff 1975 Jan 28 09:01 main.yml ./clover/clover/edge/sample/roles/clusterForm_slave(s): total 0 drwxr-xr-x 3 kbrazil staff 96 Jan 28 09:01 tasks ./clover/clover/edge/sample/roles/clusterForm_slave(s)/tasks: total 8 -rw-r--r-- 1 kbrazil staff 392 Jan 28 09:01 main.yml ./clover/clover/edge/sample/roles/clusterTear_common: total 0 drwxr-xr-x 3 kbrazil staff 96 Jan 28 09:01 tasks ./clover/clover/edge/sample/roles/clusterTear_common/tasks: total 8 -rw-r--r-- 1 kbrazil staff 548 Jan 28 09:01 main.yml ./clover/clover/samples: total 0 drwxr-xr-x 9 kbrazil staff 288 Jan 28 09:01 scenarios drwxr-xr-x 5 kbrazil staff 160 Jan 28 09:01 services ./clover/clover/samples/scenarios: total 64 -rwxr-xr-x 1 kbrazil staff 942 Jan 28 09:01 clean.sh drwxr-xr-x 5 kbrazil staff 160 Jan 28 09:01 clearwater_ims -rwxr-xr-x 1 kbrazil staff 749 Jan 28 09:01 deploy.sh -rw-r--r--@ 1 kbrazil staff 641 Jan 28 09:01 ingressgateway_ext_authz_filter.yaml -rw-r--r--@ 1 kbrazil staff 1380 Jan 28 09:01 modsecurity_all_in_one.yaml -rw-r--r-- 1 kbrazil staff 7056 Jan 28 09:01 service_delivery_controller.yaml -rw-r--r--@ 1 kbrazil staff 6975 Jan 28 09:01 service_delivery_controller_opnfv.yaml ./clover/clover/samples/scenarios/clearwater_ims: total 0 drwxr-xr-x 3 kbrazil staff 96 Jan 28 09:01 clt-docker drwxr-xr-x 4 kbrazil staff 128 Jan 28 09:01 scripts drwxr-xr-x 12 kbrazil staff 384 Jan 28 09:01 yaml ./clover/clover/samples/scenarios/clearwater_ims/clt-docker: total 8 -rw-r--r-- 1 kbrazil staff 870 Jan 28 09:01 Dockerfile ./clover/clover/samples/scenarios/clearwater_ims/scripts: total 16 -rwxr-xr-x 1 kbrazil staff 305 Jan 28 09:01 prov-numbers.sh -rwxr-xr-x 1 kbrazil staff 1170 Jan 28 09:01 run-live-test.sh ./clover/clover/samples/scenarios/clearwater_ims/yaml: total 80 -rw-r--r-- 1 kbrazil staff 923 Jan 28 09:01 ellis-depl.yaml -rw-r--r-- 1 kbrazil staff 257 Jan 28 09:01 ellis-svc.yaml -rw-r--r-- 1 kbrazil staff 858 Jan 28 09:01 homer-depl.yaml -rw-r--r-- 1 kbrazil staff 189 Jan 28 09:01 homer-svc.yaml -rw-r--r-- 1 kbrazil staff 1436 Jan 28 09:01 homestead-depl.yaml -rw-r--r-- 1 kbrazil staff 1120 Jan 28 09:01 homestead-prov-depl.yaml -rw-r--r-- 1 kbrazil staff 225 Jan 28 09:01 homestead-prov-svc.yaml -rw-r--r-- 1 kbrazil staff 205 Jan 28 09:01 homestead-svc.yaml -rw-r--r-- 1 kbrazil staff 1260 Jan 28 09:01 ralf-depl.yaml -rw-r--r-- 1 kbrazil staff 187 Jan 28 09:01 ralf-svc.yaml ./clover/clover/samples/services: total 0 drwxr-xr-x 4 kbrazil staff 128 Jan 28 09:01 modsecurity drwxr-xr-x 4 kbrazil staff 128 Jan 28 09:01 nginx drwxr-xr-x 4 kbrazil staff 128 Jan 28 09:01 snort_ids ./clover/clover/samples/services/modsecurity: total 0 drwxr-xr-x 8 kbrazil staff 256 Jan 28 09:01 docker drwxr-xr-x 6 kbrazil staff 192 Jan 28 09:01 yaml ./clover/clover/samples/services/modsecurity/docker: total 48 -rw-r--r-- 1 kbrazil staff 1302 Jan 28 09:01 Dockerfile -rw-r--r-- 1 kbrazil staff 7223 Jan 28 09:01 apache2.conf -rw-r--r-- 1 kbrazil staff 507 Jan 28 09:01 build.sh -rw-r--r-- 1 kbrazil staff 1079 Jan 28 09:01 docker-entrypoint.sh -rw-r--r-- 1 kbrazil staff 71 Jan 28 09:01 proxy.conf ./clover/clover/samples/services/modsecurity/yaml: total 32 -rw-r--r-- 1 kbrazil staff 818 Jan 28 09:01 manifest.template -rw-r--r-- 1 kbrazil staff 506 Jan 28 09:01 modsecurity-deployment.yaml -rw-r--r-- 1 kbrazil staff 255 Jan 28 09:01 modsecurity-service.yaml -rw-r--r-- 1 kbrazil staff 2200 Jan 28 09:01 render_yaml.py ./clover/clover/samples/services/nginx: total 0 drwxr-xr-x 8 kbrazil staff 256 Jan 28 09:01 docker drwxr-xr-x 4 kbrazil staff 128 Jan 28 09:01 yaml ./clover/clover/samples/services/nginx/docker: total 24 -rwxr-xr-x 1 kbrazil staff 529 Jan 28 09:01 build_lb.sh -rwxr-xr-x 1 kbrazil staff 536 Jan 28 09:01 build_proxy.sh -rwxr-xr-x 1 kbrazil staff 537 Jan 28 09:01 build_server.sh drwxr-xr-x 9 kbrazil staff 288 Jan 28 09:01 grpc drwxr-xr-x 4 kbrazil staff 128 Jan 28 09:01 process drwxr-xr-x 5 kbrazil staff 160 Jan 28 09:01 subservices ./clover/clover/samples/services/nginx/docker/grpc: total 88 -rwxr-xr-x 1 kbrazil staff 376 Jan 28 09:01 build_proto.sh -rw-r--r-- 1 kbrazil staff 1260 Jan 28 09:01 nginx.proto -rw-r--r-- 1 kbrazil staff 3321 Jan 28 09:01 nginx_client.py -rw-r--r-- 1 kbrazil staff 8288 Jan 28 09:01 nginx_grpc_server.py -rw-r--r-- 1 kbrazil staff 14547 Jan 28 09:01 nginx_pb2.py -rw-r--r-- 1 kbrazil staff 3577 Jan 28 09:01 nginx_pb2_grpc.py drwxr-xr-x 6 kbrazil staff 192 Jan 28 09:01 templates ./clover/clover/samples/services/nginx/docker/grpc/templates: total 32 -rw-r--r-- 1 kbrazil staff 1840 Jan 28 09:01 lb.template -rw-r--r-- 1 kbrazil staff 1895 Jan 28 09:01 proxy.template -rw-r--r-- 1 kbrazil staff 3771 Jan 28 09:01 server.template -rw-r--r-- 1 kbrazil staff 613 Jan 28 09:01 upload_form.template ./clover/clover/samples/services/nginx/docker/process: total 16 -rwxr-xr-x 1 kbrazil staff 333 Jan 28 09:01 grpc_process.sh -rwxr-xr-x 1 kbrazil staff 352 Jan 28 09:01 start_process.sh ./clover/clover/samples/services/nginx/docker/subservices: total 0 drwxr-xr-x 3 kbrazil staff 96 Jan 28 09:01 lb drwxr-xr-x 3 kbrazil staff 96 Jan 28 09:01 proxy drwxr-xr-x 3 kbrazil staff 96 Jan 28 09:01 server ./clover/clover/samples/services/nginx/docker/subservices/lb: total 8 -rw-r--r-- 1 kbrazil staff 776 Jan 28 09:01 Dockerfile ./clover/clover/samples/services/nginx/docker/subservices/proxy: total 8 -rw-r--r-- 1 kbrazil staff 782 Jan 28 09:01 Dockerfile ./clover/clover/samples/services/nginx/docker/subservices/server: total 8 -rw-r--r-- 1 kbrazil staff 3517 Jan 28 09:01 Dockerfile ./clover/clover/samples/services/nginx/yaml: total 16 -rw-r--r-- 1 kbrazil staff 686 Jan 28 09:01 manifest.template -rw-r--r-- 1 kbrazil staff 2433 Jan 28 09:01 render_yaml.py ./clover/clover/samples/services/snort_ids: total 0 drwxr-xr-x 6 kbrazil staff 192 Jan 28 09:01 docker drwxr-xr-x 4 kbrazil staff 128 Jan 28 09:01 yaml ./clover/clover/samples/services/snort_ids/docker: total 16 -rw-r--r-- 1 kbrazil staff 2639 Jan 28 09:01 Dockerfile -rwxr-xr-x 1 kbrazil staff 501 Jan 28 09:01 build.sh drwxr-xr-x 11 kbrazil staff 352 Jan 28 09:01 grpc drwxr-xr-x 5 kbrazil staff 160 Jan 28 09:01 process ./clover/clover/samples/services/snort_ids/docker/grpc: total 112 -rwxr-xr-x 1 kbrazil staff 361 Jan 28 09:01 build_proto.sh -rw-r--r-- 1 kbrazil staff 12865 Jan 28 09:01 nginx_pb2.py -rw-r--r-- 1 kbrazil staff 3577 Jan 28 09:01 nginx_pb2_grpc.py -rw-r--r-- 1 kbrazil staff 806 Jan 28 09:01 snort.proto -rw-r--r-- 1 kbrazil staff 1768 Jan 28 09:01 snort_alerts.py -rw-r--r-- 1 kbrazil staff 3616 Jan 28 09:01 snort_client.py -rw-r--r-- 1 kbrazil staff 8487 Jan 28 09:01 snort_pb2.py -rw-r--r-- 1 kbrazil staff 2848 Jan 28 09:01 snort_pb2_grpc.py -rw-r--r-- 1 kbrazil staff 3451 Jan 28 09:01 snort_server.py ./clover/clover/samples/services/snort_ids/docker/process: total 24 -rwxr-xr-x 1 kbrazil staff 421 Jan 28 09:01 alert_process.sh -rwxr-xr-x 1 kbrazil staff 325 Jan 28 09:01 grpc_process.sh -rwxr-xr-x 1 kbrazil staff 449 Jan 28 09:01 start_process.sh ./clover/clover/samples/services/snort_ids/yaml: total 16 -rw-r--r-- 1 kbrazil staff 869 Jan 28 09:01 manifest.template -rw-r--r-- 1 kbrazil staff 2341 Jan 28 09:01 render_yaml.py ./envoyonsteroid: total 40 -rw-r--r--@ 1 kbrazil staff 2670 Dec 23 10:49 Dockerfile -rw-r--r-- 1 kbrazil staff 1064 Dec 23 10:49 LICENSE -rw-r--r-- 1 kbrazil staff 58 Dec 23 10:49 README.md -rw-r--r--@ 1 kbrazil staff 882 Dec 23 10:49 docker-compose.yml -rw-r--r-- 1 kbrazil staff 1683 Dec 23 10:49 lds.yaml drwxr-xr-x 3 kbrazil staff 96 Dec 23 10:49 root ./envoyonsteroid/root: ./jc: total 184 -rwxrwxrwx 1 kbrazil staff 1068 Oct 15 14:59 LICENSE.md -rw-r--r--@ 1 kbrazil staff 21 Feb 8 12:39 MANIFEST.in -rwxr-xr-x 1 kbrazil staff 45946 Mar 4 08:30 README.md -rw-r--r-- 1 kbrazil staff 26 Dec 6 10:16 _config.yml drwxr-xr-x 4 kbrazil staff 128 Oct 17 13:25 build -rwxrwxrwx 1 kbrazil staff 127 Oct 15 14:55 build-package.sh -rw-r--r-- 1 kbrazil staff 3729 Mar 6 12:05 changelog.txt drwxr-xr-x 5 kbrazil staff 160 Mar 3 13:52 dist -rwxr-xr-x 1 kbrazil staff 2840 Mar 3 11:47 docgen.sh drwxr-xr-x 6 kbrazil staff 192 Nov 17 12:00 docs -rwxr-xr-x 1 kbrazil staff 46 Nov 17 12:00 install.sh drwxr-xr-x 9 kbrazil staff 288 Mar 4 16:55 jc drwxr-xr-x 8 kbrazil staff 256 Mar 3 13:52 jc.egg-info -rwxr-xr-x@ 1 kbrazil staff 31 Oct 17 14:59 pypi-upload.sh -rw-r--r-- 1 kbrazil staff 61 Mar 4 17:05 requirements.txt -rwxr-xr-x@ 1 kbrazil staff 36 Oct 31 08:07 runtests.sh -rwxr-xr-x 1 kbrazil staff 1007 Mar 3 11:47 setup.py drwxr-xr-x 51 kbrazil staff 1632 Mar 4 17:53 tests ./jc/build: total 0 drwxr-xr-x 2 kbrazil staff 64 Mar 3 13:52 bdist.macosx-10.14-x86_64 drwxr-xr-x 4 kbrazil staff 128 Dec 17 12:15 lib ./jc/build/bdist.macosx-10.14-x86_64: ./jc/build/lib: total 0 drwxr-xr-x 7 kbrazil staff 224 Mar 3 13:52 jc drwxr-xr-x 49 kbrazil staff 1568 Mar 3 13:52 tests ./jc/build/lib/jc: total 48 -rw-r--r-- 1 kbrazil staff 2538 Nov 17 12:00 __init__.py -rw-r--r-- 1 kbrazil staff 8721 Mar 3 11:47 cli.py -rw-r--r-- 1 kbrazil staff 981 Oct 16 17:28 jc.py drwxr-xr-x 50 kbrazil staff 1600 Mar 3 13:52 parsers -rw-r--r-- 1 kbrazil staff 1471 Dec 17 12:12 utils.py ./jc/build/lib/jc/parsers: total 616 -rw-r--r-- 1 kbrazil staff 0 Nov 7 06:51 __init__.py -rw-r--r-- 1 kbrazil staff 5048 Feb 13 18:27 arp.py -rw-r--r-- 1 kbrazil staff 6906 Mar 3 11:47 blkid.py -rw-r--r-- 1 kbrazil staff 6756 Feb 13 18:27 crontab.py -rw-r--r-- 1 kbrazil staff 7055 Feb 8 12:42 crontab_u.py -rw-r--r-- 1 kbrazil staff 3193 Mar 3 11:47 csv.py -rw-r--r-- 1 kbrazil staff 5176 Feb 13 18:27 df.py -rw-r--r-- 1 kbrazil staff 15625 Feb 13 18:27 dig.py -rw-r--r-- 1 kbrazil staff 3751 Feb 13 18:27 du.py -rw-r--r-- 1 kbrazil staff 2782 Feb 13 18:27 env.py -rw-r--r-- 1 kbrazil staff 1880 Feb 13 18:27 foo.py -rw-r--r-- 1 kbrazil staff 3037 Feb 13 18:27 free.py -rw-r--r-- 1 kbrazil staff 4098 Feb 13 18:27 fstab.py -rw-r--r-- 1 kbrazil staff 3976 Mar 3 11:47 group.py -rw-r--r-- 1 kbrazil staff 3230 Mar 3 11:47 gshadow.py -rw-r--r-- 1 kbrazil staff 3090 Feb 13 22:09 history.py -rw-r--r-- 1 kbrazil staff 3258 Feb 5 17:00 hosts.py -rw-r--r-- 1 kbrazil staff 5595 Feb 13 18:27 id.py -rw-r--r-- 1 kbrazil staff 7611 Feb 13 18:27 ifconfig.py -rw-r--r-- 1 kbrazil staff 2418 Feb 5 17:00 ini.py -rw-r--r-- 1 kbrazil staff 7465 Feb 13 18:27 iptables.py -rw-r--r-- 1 kbrazil staff 4885 Feb 13 18:27 jobs.py -rw-r--r-- 1 kbrazil staff 4425 Mar 3 11:47 last.py -rw-r--r-- 1 kbrazil staff 8630 Mar 3 11:47 ls.py -rw-r--r-- 1 kbrazil staff 9105 Feb 13 18:27 lsblk.py -rw-r--r-- 1 kbrazil staff 3844 Feb 13 18:27 lsmod.py -rw-r--r-- 1 kbrazil staff 5434 Feb 13 18:27 lsof.py -rw-r--r-- 1 kbrazil staff 3729 Feb 13 18:27 mount.py -rw-r--r-- 1 kbrazil staff 16129 Feb 13 18:27 netstat.py -rw-r--r-- 1 kbrazil staff 4055 Mar 3 11:47 passwd.py -rw-r--r-- 1 kbrazil staff 2658 Feb 13 18:27 pip_list.py -rw-r--r-- 1 kbrazil staff 3444 Feb 13 18:27 pip_show.py -rw-r--r-- 1 kbrazil staff 6793 Feb 13 18:27 ps.py -rw-r--r-- 1 kbrazil staff 4085 Feb 13 18:27 route.py -rw-r--r-- 1 kbrazil staff 4306 Mar 3 11:47 shadow.py -rw-r--r-- 1 kbrazil staff 11491 Feb 13 18:27 ss.py -rw-r--r-- 1 kbrazil staff 8255 Feb 13 18:27 stat.py -rw-r--r-- 1 kbrazil staff 2940 Feb 13 18:27 systemctl.py -rw-r--r-- 1 kbrazil staff 3483 Feb 13 18:27 systemctl_lj.py -rw-r--r-- 1 kbrazil staff 2675 Feb 13 18:27 systemctl_ls.py -rw-r--r-- 1 kbrazil staff 2585 Feb 13 18:27 systemctl_luf.py -rw-r--r-- 1 kbrazil staff 3225 Feb 13 18:27 uname.py -rw-r--r-- 1 kbrazil staff 4041 Dec 17 12:12 universal.py -rw-r--r-- 1 kbrazil staff 3243 Feb 13 18:27 uptime.py -rw-r--r-- 1 kbrazil staff 4345 Feb 13 18:27 w.py -rw-r--r-- 1 kbrazil staff 7850 Mar 3 11:47 who.py -rw-r--r-- 1 kbrazil staff 2747 Feb 5 17:00 xml.py -rw-r--r-- 1 kbrazil staff 3045 Feb 5 17:00 yaml.py ./jc/build/lib/tests: total 448 -rw-r--r-- 1 kbrazil staff 0 Oct 31 08:07 __init__.py drwxr-xr-x 9 kbrazil staff 288 Mar 3 13:52 fixtures -rw-r--r-- 1 kbrazil staff 4458 Dec 17 12:12 test_arp.py -rw-r--r-- 1 kbrazil staff 6230 Mar 3 11:47 test_blkid.py -rw-r--r-- 1 kbrazil staff 801 Feb 5 17:00 test_crontab.py -rw-r--r-- 1 kbrazil staff 1426 Feb 5 17:00 test_crontab_u.py -rw-r--r-- 1 kbrazil staff 5059 Mar 3 11:47 test_csv.py -rw-r--r-- 1 kbrazil staff 4381 Dec 17 12:12 test_df.py -rw-r--r-- 1 kbrazil staff 3440 Nov 17 12:00 test_dig.py -rw-r--r-- 1 kbrazil staff 2271 Dec 17 12:12 test_du.py -rw-r--r-- 1 kbrazil staff 1278 Nov 17 12:00 test_env.py -rw-r--r-- 1 kbrazil staff 2373 Nov 17 12:00 test_free.py -rw-r--r-- 1 kbrazil staff 1334 Nov 17 12:00 test_fstab.py -rw-r--r-- 1 kbrazil staff 1874 Mar 3 11:47 test_group.py -rw-r--r-- 1 kbrazil staff 1372 Mar 3 11:47 test_gshadow.py -rw-r--r-- 1 kbrazil staff 1354 Nov 17 12:00 test_history.py -rw-r--r-- 1 kbrazil staff 1334 Nov 17 12:00 test_hosts.py -rw-r--r-- 1 kbrazil staff 1257 Feb 5 17:00 test_id.py -rw-r--r-- 1 kbrazil staff 3629 Dec 17 12:12 test_ifconfig.py -rw-r--r-- 1 kbrazil staff 1332 Feb 5 17:00 test_ini.py -rw-r--r-- 1 kbrazil staff 7909 Nov 17 12:00 test_iptables.py -rw-r--r-- 1 kbrazil staff 1297 Nov 17 12:00 test_jobs.py -rw-r--r-- 1 kbrazil staff 3985 Mar 3 11:47 test_last.py -rw-r--r-- 1 kbrazil staff 18866 Feb 27 11:25 test_ls.py -rw-r--r-- 1 kbrazil staff 2940 Nov 17 12:00 test_lsblk.py -rw-r--r-- 1 kbrazil staff 1316 Nov 17 12:00 test_lsmod.py -rw-r--r-- 1 kbrazil staff 2419 Nov 17 12:00 test_lsof.py -rw-r--r-- 1 kbrazil staff 2392 Dec 17 12:12 test_mount.py -rw-r--r-- 1 kbrazil staff 6114 Nov 17 12:00 test_netstat.py -rw-r--r-- 1 kbrazil staff 1904 Mar 3 11:47 test_passwd.py -rw-r--r-- 1 kbrazil staff 3123 Dec 17 12:12 test_pip_list.py -rw-r--r-- 1 kbrazil staff 2493 Dec 17 12:12 test_pip_show.py -rw-r--r-- 1 kbrazil staff 4517 Dec 17 12:12 test_ps.py -rw-r--r-- 1 kbrazil staff 2426 Nov 17 12:00 test_route.py -rw-r--r-- 1 kbrazil staff 1353 Mar 3 11:47 test_shadow.py -rw-r--r-- 1 kbrazil staff 1373 Nov 17 12:00 test_ss.py -rw-r--r-- 1 kbrazil staff 1311 Nov 17 12:00 test_stat.py -rw-r--r-- 1 kbrazil staff 1398 Nov 17 12:00 test_systemctl.py -rw-r--r-- 1 kbrazil staff 1487 Nov 17 12:00 test_systemctl_lj.py -rw-r--r-- 1 kbrazil staff 1475 Nov 17 12:00 test_systemctl_ls.py -rw-r--r-- 1 kbrazil staff 1492 Nov 17 12:00 test_systemctl_luf.py -rw-r--r-- 1 kbrazil staff 2442 Dec 17 12:12 test_uname.py -rw-r--r-- 1 kbrazil staff 2419 Dec 17 12:12 test_uptime.py -rw-r--r-- 1 kbrazil staff 2226 Dec 17 12:12 test_w.py -rw-r--r-- 1 kbrazil staff 3383 Mar 3 11:47 test_who.py -rw-r--r-- 1 kbrazil staff 1357 Feb 5 17:00 test_xml.py -rw-r--r-- 1 kbrazil staff 1401 Feb 5 17:00 test_yaml.py ./jc/build/lib/tests/fixtures: total 8 drwxr-xr-x 153 kbrazil staff 4896 Mar 3 13:52 centos-7.7 -rw-r--r-- 1 kbrazil staff 3397 Mar 3 11:47 create_fixtures.sh drwxr-xr-x 34 kbrazil staff 1088 Mar 3 13:52 generic drwxr-xr-x 41 kbrazil staff 1312 Feb 8 12:42 osx-10.11.6 drwxr-xr-x 71 kbrazil staff 2272 Mar 3 13:52 osx-10.14.6 drwxr-xr-x 153 kbrazil staff 4896 Mar 3 13:52 ubuntu-18.04 ./jc/build/lib/tests/fixtures/centos-7.7: total 9720 -rw-r--r-- 1 kbrazil staff 350 Nov 17 12:00 arp-a.json -rw-r--r-- 1 kbrazil staff 173 Oct 31 08:07 arp-a.out -rw-r--r-- 1 kbrazil staff 236 Nov 17 12:00 arp-v.json -rw-r--r-- 1 kbrazil staff 274 Oct 31 08:07 arp-v.out -rw-r--r-- 1 kbrazil staff 236 Nov 17 12:00 arp.json -rw-r--r-- 1 kbrazil staff 243 Oct 31 08:07 arp.out -rw-r--r-- 1 kbrazil staff 764 Mar 3 11:47 blkid-ip-multi.json -rw-r--r-- 1 kbrazil staff 618 Mar 3 11:47 blkid-ip-multi.out -rw-r--r-- 1 kbrazil staff 987 Mar 3 11:47 blkid-ip-udev-multi.json -rw-r--r-- 1 kbrazil staff 838 Mar 3 11:47 blkid-ip-udev-multi.out -rw-r--r-- 1 kbrazil staff 488 Mar 3 11:47 blkid-ip-udev.json -rw-r--r-- 1 kbrazil staff 413 Mar 3 11:47 blkid-ip-udev.out -rw-r--r-- 1 kbrazil staff 99 Mar 3 11:47 blkid-sda2.json -rw-r--r-- 1 kbrazil staff 77 Mar 3 11:47 blkid-sda2.out -rw-r--r-- 1 kbrazil staff 392 Mar 3 11:47 blkid.json -rw-r--r-- 1 kbrazil staff 307 Mar 3 11:47 blkid.out -rw-r--r-- 1 kbrazil staff 399 Feb 5 17:00 crontab-u.json -rw-r--r-- 1 kbrazil staff 163 Feb 5 17:00 crontab-u.out -rw-r--r-- 1 kbrazil staff 1940 Feb 5 17:00 crontab.json -rw-r--r-- 1 kbrazil staff 1564 Dec 17 12:12 crontab.out -rw-r--r-- 1 kbrazil staff 836 Nov 17 12:00 df-h.json -rw-r--r-- 1 kbrazil staff 444 Oct 31 08:07 df-h.out -rw-r--r-- 1 kbrazil staff 904 Dec 17 12:12 df.json -rw-r--r-- 1 kbrazil staff 524 Oct 31 08:07 df.out -rw-r--r-- 1 kbrazil staff 462 Nov 17 12:00 dig-aaaa.json -rw-r--r-- 1 kbrazil staff 556 Oct 31 08:07 dig-aaaa.out -rw-r--r-- 1 kbrazil staff 464 Nov 17 12:00 dig-x.json -rw-r--r-- 1 kbrazil staff 547 Oct 31 08:07 dig-x.out -rw-r--r-- 1 kbrazil staff 1005 Nov 17 12:00 dig.json -rw-r--r-- 1 kbrazil staff 1052 Oct 31 08:07 dig.out -rw-r--r-- 1 kbrazil staff 365319 Dec 17 12:12 du.json -rw-r--r-- 1 kbrazil staff 250940 Dec 17 12:12 du.out -rw-r--r-- 1 kbrazil staff 2932 Nov 17 12:00 env.json -rw-r--r-- 1 kbrazil staff 2331 Oct 31 08:07 env.out -rw-r--r-- 1 kbrazil staff 177 Nov 17 12:00 free-h.json -rw-r--r-- 1 kbrazil staff 204 Oct 31 08:07 free-h.out -rw-r--r-- 1 kbrazil staff 194 Nov 17 12:00 free.json -rw-r--r-- 1 kbrazil staff 204 Oct 31 08:07 free.out -rw-r--r-- 1 kbrazil staff 423 Nov 17 12:00 fstab.json -rw-r--r-- 1 kbrazil staff 488 Nov 17 12:00 fstab.out -rw-r--r-- 1 kbrazil staff 2701 Mar 3 11:47 group.json -rw-r--r-- 1 kbrazil staff 509 Mar 3 11:47 group.out -rw-r--r-- 1 kbrazil staff 3106 Mar 3 11:47 gshadow.json -rw-r--r-- 1 kbrazil staff 407 Mar 3 11:47 gshadow.out -rw-r--r-- 1 kbrazil staff 47552 Feb 5 17:00 history.json -rw-r--r-- 1 kbrazil staff 25967 Oct 31 08:07 history.out -rw-r--r-- 1 kbrazil staff 223 Nov 17 12:00 hosts.json -rw-r--r-- 1 kbrazil staff 193 Nov 17 12:00 hosts.out -rw-r--r-- 1 kbrazil staff 267 Feb 5 17:00 id.json -rw-r--r-- 1 kbrazil staff 129 Feb 5 17:00 id.out -rw-r--r-- 1 kbrazil staff 1598 Dec 17 12:12 ifconfig.json -rw-r--r-- 1 kbrazil staff 1259 Oct 31 08:07 ifconfig.out -rw-r--r-- 1 kbrazil staff 7469 Nov 17 12:00 iptables-filter-line-numbers.json -rw-r--r-- 1 kbrazil staff 6643 Nov 17 12:00 iptables-filter-line-numbers.out -rw-r--r-- 1 kbrazil staff 10625 Nov 17 12:00 iptables-filter-nv.json -rw-r--r-- 1 kbrazil staff 9064 Oct 31 08:07 iptables-filter-nv.out -rw-r--r-- 1 kbrazil staff 7749 Nov 17 12:00 iptables-filter.json -rw-r--r-- 1 kbrazil staff 6762 Oct 31 08:07 iptables-filter.out -rw-r--r-- 1 kbrazil staff 1938 Nov 17 12:00 iptables-mangle.json -rw-r--r-- 1 kbrazil staff 2399 Oct 31 08:07 iptables-mangle.out -rw-r--r-- 1 kbrazil staff 3211 Nov 17 12:00 iptables-nat.json -rw-r--r-- 1 kbrazil staff 3484 Oct 31 08:07 iptables-nat.out -rw-r--r-- 1 kbrazil staff 1386 Nov 17 12:00 iptables-raw.json -rw-r--r-- 1 kbrazil staff 1616 Oct 31 08:07 iptables-raw.out -rw-r--r-- 1 kbrazil staff 306 Nov 17 12:00 jobs.json -rw-r--r-- 1 kbrazil staff 164 Oct 31 08:07 jobs.out -rw-r--r-- 1 kbrazil staff 9189 Mar 3 11:47 last-w.json -rw-r--r-- 1 kbrazil staff 5452 Mar 3 11:47 last-w.out -rw-r--r-- 1 kbrazil staff 8934 Mar 3 11:47 last.json -rw-r--r-- 1 kbrazil staff 5197 Mar 3 11:47 last.out -rw-r--r-- 1 kbrazil staff 511 Mar 3 11:47 lastb.json -rw-r--r-- 1 kbrazil staff 346 Mar 3 11:47 lastb.out -rw-r--r-- 1 kbrazil staff 1281 Feb 27 11:25 ls-R-newlines.json -rw-r--r-- 1 kbrazil staff 542 Feb 27 11:25 ls-R-newlines.out -rw-r--r-- 1 kbrazil staff 315329 Feb 19 07:07 ls-R.json -rw-r--r-- 1 kbrazil staff 72565 Feb 19 07:07 ls-R.out -rw-r--r-- 1 kbrazil staff 2776 Nov 17 12:00 ls-al.json -rw-r--r-- 1 kbrazil staff 1070 Oct 31 08:07 ls-al.out -rw-r--r-- 1 kbrazil staff 773278 Feb 19 07:07 ls-alR.json -rw-r--r-- 1 kbrazil staff 281708 Feb 19 07:07 ls-alR.out -rw-r--r-- 1 kbrazil staff 2776 Nov 17 12:00 ls-alh.json -rw-r--r-- 1 kbrazil staff 1071 Oct 31 08:07 ls-alh.out -rw-r--r-- 1 kbrazil staff 97675 Feb 19 07:07 ls-glob.json -rw-r--r-- 1 kbrazil staff 22048 Feb 19 07:07 ls-glob.out -rw-r--r-- 1 kbrazil staff 1183 Feb 27 11:25 ls-l-newlines.json -rw-r--r-- 1 kbrazil staff 583 Feb 27 11:25 ls-l-newlines.out -rw-r--r-- 1 kbrazil staff 2576 Feb 27 11:25 ls-lR-newlines.json -rw-r--r-- 1 kbrazil staff 1209 Feb 27 11:25 ls-lR-newlines.out -rw-r--r-- 1 kbrazil staff 498 Feb 27 11:25 ls-newlines.json -rw-r--r-- 1 kbrazil staff 260 Feb 27 11:25 ls-newlines.out -rw-r--r-- 1 kbrazil staff 409 Nov 17 12:00 ls.json -rw-r--r-- 1 kbrazil staff 85 Oct 31 08:07 ls.out -rw-r--r-- 1 kbrazil staff 4102 Nov 17 12:00 lsblk-allcols.json -rw-r--r-- 1 kbrazil staff 2502 Nov 17 12:00 lsblk-allcols.out -rw-r--r-- 1 kbrazil staff 698 Nov 17 12:00 lsblk.json -rw-r--r-- 1 kbrazil staff 332 Oct 31 08:07 lsblk.out -rw-r--r-- 1 kbrazil staff 6655 Nov 17 12:00 lsmod.json -rw-r--r-- 1 kbrazil staff 4161 Oct 31 08:07 lsmod.out -rw-r--r-- 1 kbrazil staff 618317 Nov 17 12:00 lsof-sudo.json -rw-r--r-- 1 kbrazil staff 363073 Oct 31 08:07 lsof-sudo.out -rw-r--r-- 1 kbrazil staff 126050 Nov 17 12:00 lsof.json -rw-r--r-- 1 kbrazil staff 70567 Oct 31 08:07 lsof.out -rw-r--r-- 1 kbrazil staff 4848 Nov 17 12:00 mount.json -rw-r--r-- 1 kbrazil staff 2711 Oct 31 08:07 mount.out -rw-r--r-- 1 kbrazil staff 7020 Nov 17 12:00 netstat-l.json -rw-r--r-- 1 kbrazil staff 3499 Oct 31 08:07 netstat-l.out -rw-r--r-- 1 kbrazil staff 17621 Nov 17 12:00 netstat-p.json -rw-r--r-- 1 kbrazil staff 10407 Oct 31 08:07 netstat-p.out -rw-r--r-- 1 kbrazil staff 29188 Nov 17 12:00 netstat-sudo-aeep.json -rw-r--r-- 1 kbrazil staff 14986 Nov 17 12:00 netstat-sudo-aeep.out -rw-r--r-- 1 kbrazil staff 8734 Nov 17 12:00 netstat-sudo-lnp.json -rw-r--r-- 1 kbrazil staff 4402 Oct 31 08:07 netstat-sudo-lnp.out -rw-r--r-- 1 kbrazil staff 15637 Nov 17 12:00 netstat.json -rw-r--r-- 1 kbrazil staff 8068 Oct 31 08:07 netstat.out -rw-r--r-- 1 kbrazil staff 2747 Mar 3 11:47 passwd.json -rw-r--r-- 1 kbrazil staff 961 Mar 3 11:47 passwd.out -rw-r--r-- 1 kbrazil staff 905 Dec 17 12:12 pip-list.json -rw-r--r-- 1 kbrazil staff 616 Dec 17 12:12 pip-list.out -rw-r--r-- 1 kbrazil staff 1129 Dec 17 12:12 pip-show.json -rw-r--r-- 1 kbrazil staff 974 Dec 17 12:12 pip-show.out -rw-r--r-- 1 kbrazil staff 20936 Nov 17 12:00 ps-axu.json -rw-r--r-- 1 kbrazil staff 9932 Oct 31 08:07 ps-axu.out -rw-r--r-- 1 kbrazil staff 14630 Nov 17 12:00 ps-ef.json -rw-r--r-- 1 kbrazil staff 8168 Oct 31 08:07 ps-ef.out -rw-r--r-- 1 kbrazil staff 442 Nov 17 12:00 route-vn.json -rw-r--r-- 1 kbrazil staff 338 Oct 31 08:07 route-vn.out -rw-r--r-- 1 kbrazil staff 437 Nov 17 12:00 route.json -rw-r--r-- 1 kbrazil staff 338 Oct 31 08:07 route.out -rw-r--r-- 1 kbrazil staff 3206 Mar 3 11:47 shadow.json -rw-r--r-- 1 kbrazil staff 740 Mar 3 11:47 shadow.out -rw-r--r-- 1 kbrazil staff 29301 Nov 17 12:00 ss-sudo-a.json -rw-r--r-- 1 kbrazil staff 17945 Nov 17 12:00 ss-sudo-a.out -rw-r--r-- 1 kbrazil staff 322074 Nov 17 12:00 stat.json -rw-r--r-- 1 kbrazil staff 295777 Nov 17 12:00 stat.out -rw-r--r-- 1 kbrazil staff 1439 Nov 17 12:00 systemctl-ls.json -rw-r--r-- 1 kbrazil staff 1159 Nov 17 12:00 systemctl-ls.out -rw-r--r-- 1 kbrazil staff 14574 Nov 17 12:00 systemctl-luf.json -rw-r--r-- 1 kbrazil staff 13499 Nov 17 12:00 systemctl-luf.out -rw-r--r-- 1 kbrazil staff 31968 Nov 17 12:00 systemctl.json -rw-r--r-- 1 kbrazil staff 38560 Nov 17 12:00 systemctl.out -rw-r--r-- 1 kbrazil staff 276 Nov 17 12:00 uname-a.json -rw-r--r-- 1 kbrazil staff 122 Oct 31 08:07 uname-a.out -rw-r--r-- 1 kbrazil staff 103 Nov 17 12:00 uptime.json -rw-r--r-- 1 kbrazil staff 62 Oct 31 08:07 uptime.out -rw-r--r-- 1 kbrazil staff 287 Nov 17 12:00 w.json -rw-r--r-- 1 kbrazil staff 266 Oct 31 08:07 w.out -rw-r--r-- 1 kbrazil staff 549 Mar 3 11:47 who-a.json -rw-r--r-- 1 kbrazil staff 364 Mar 3 11:47 who-a.out -rw-r--r-- 1 kbrazil staff 155 Mar 3 11:47 who.json -rw-r--r-- 1 kbrazil staff 93 Mar 3 11:47 who.out ./jc/build/lib/tests/fixtures/generic: total 3848 -rw-r--r-- 1 kbrazil staff 849 Mar 3 11:47 csv-biostats.csv -rw-r--r-- 1 kbrazil staff 1566 Mar 3 11:47 csv-biostats.json -rw-r--r-- 1 kbrazil staff 8402 Mar 3 11:47 csv-cities.csv -rw-r--r-- 1 kbrazil staff 18398 Mar 3 11:47 csv-cities.json -rw-r--r-- 1 kbrazil staff 2391 Mar 3 11:47 csv-deniro.csv -rw-r--r-- 1 kbrazil staff 5146 Mar 3 11:47 csv-deniro.json -rw-r--r-- 1 kbrazil staff 1117 Mar 3 11:47 csv-example.csv -rw-r--r-- 1 kbrazil staff 1588 Mar 3 11:47 csv-example.json -rw-r--r-- 1 kbrazil staff 558246 Mar 3 11:47 csv-flyrna.json -rw-r--r-- 1 kbrazil staff 205281 Mar 3 11:47 csv-flyrna.tsv -rw-r--r-- 1 kbrazil staff 556670 Mar 3 11:47 csv-flyrna2.json -rw-r--r-- 1 kbrazil staff 203705 Mar 3 11:47 csv-flyrna2.tsv -rw-r--r-- 1 kbrazil staff 158 Mar 3 11:47 csv-homes-pipe.csv -rw-r--r-- 1 kbrazil staff 274 Mar 3 11:47 csv-homes-pipe.json -rw-r--r-- 1 kbrazil staff 2125 Mar 3 11:47 csv-homes.csv -rw-r--r-- 1 kbrazil staff 6798 Mar 3 11:47 csv-homes.json -rw-r--r-- 1 kbrazil staff 53816 Mar 3 11:47 csv-insurance.csv -rw-r--r-- 1 kbrazil staff 229722 Mar 3 11:47 csv-insurance.json -rw-r--r-- 1 kbrazil staff 4705 Feb 5 17:00 ini-iptelserver.ini -rw-r--r-- 1 kbrazil staff 1486 Feb 5 17:00 ini-iptelserver.json -rw-r--r-- 1 kbrazil staff 171 Feb 5 17:00 ini-test.ini -rw-r--r-- 1 kbrazil staff 270 Feb 5 17:00 ini-test.json -rw-r--r-- 1 kbrazil staff 4413 Mar 3 11:47 oscar_age_male.csv -rw-r--r-- 1 kbrazil staff 3294 Feb 5 17:00 xml-cd_catalog.json -rw-r--r-- 1 kbrazil staff 5077 Feb 5 17:00 xml-cd_catalog.xml -rw-r--r-- 1 kbrazil staff 811 Feb 5 17:00 xml-foodmenu.json -rw-r--r-- 1 kbrazil staff 1102 Feb 5 17:00 xml-foodmenu.xml -rw-r--r-- 1 kbrazil staff 333 Feb 5 17:00 yaml-istio-sc.json -rw-r--r-- 1 kbrazil staff 305 Feb 5 17:00 yaml-istio-sc.yaml -rw-r--r-- 1 kbrazil staff 3178 Feb 5 17:00 yaml-istio-sidecar.json -rw-r--r-- 1 kbrazil staff 3681 Feb 5 17:00 yaml-istio-sidecar.yaml ./jc/build/lib/tests/fixtures/osx-10.11.6: total 1344 -rw-r--r-- 1 kbrazil staff 1669 Dec 17 12:12 arp-a.json -rwxr-xr-x 1 kbrazil staff 1036 Dec 17 12:12 arp-a.out -rw-r--r-- 1 kbrazil staff 1151 Dec 17 12:12 df-h.json -rwxr-xr-x 1 kbrazil staff 908 Dec 17 12:12 df-h.out -rw-r--r-- 1 kbrazil staff 1196 Dec 17 12:12 df.json -rwxr-xr-x 1 kbrazil staff 992 Dec 17 12:12 df.out -rw-r--r-- 1 kbrazil staff 439 Dec 17 12:12 dig-aaaa.json -rwxr-xr-x 1 kbrazil staff 537 Dec 17 12:12 dig-aaaa.out -rw-r--r-- 1 kbrazil staff 442 Dec 17 12:12 dig-x.json -rwxr-xr-x 1 kbrazil staff 529 Dec 17 12:12 dig-x.out -rw-r--r-- 1 kbrazil staff 1272 Dec 17 12:12 dig.json -rwxr-xr-x 1 kbrazil staff 1188 Dec 17 12:12 dig.out -rw-r--r-- 1 kbrazil staff 221050 Dec 17 12:12 du.json -rwxr-xr-x 1 kbrazil staff 166687 Dec 17 12:12 du.out -rw-r--r-- 1 kbrazil staff 3791 Dec 17 12:12 ifconfig.json -rwxr-xr-x 1 kbrazil staff 1571 Dec 17 12:12 ifconfig.out -rw-r--r-- 1 kbrazil staff 3791 Dec 17 12:12 ifconfig2.json -rwxr-xr-x 1 kbrazil staff 1571 Dec 17 12:12 ifconfig2.out -rw-r--r-- 1 kbrazil staff 4259 Dec 17 12:12 ls-al.json -rwxr-xr-x 1 kbrazil staff 1851 Dec 17 12:12 ls-al.out -rw-r--r-- 1 kbrazil staff 4296 Dec 17 12:12 ls-alh.json -rwxr-xr-x 1 kbrazil staff 1882 Dec 17 12:12 ls-alh.out -rw-r--r-- 1 kbrazil staff 533 Dec 17 12:12 ls.json -rwxr-xr-x 1 kbrazil staff 175 Dec 17 12:12 ls.out -rw-r--r-- 1 kbrazil staff 224 Dec 17 12:12 pip-list.json -rwxr-xr-x 1 kbrazil staff 168 Dec 17 12:12 pip-list.out -rw-r--r-- 1 kbrazil staff 1028 Dec 17 12:12 pip-show.json -rwxr-xr-x 1 kbrazil staff 867 Dec 17 12:12 pip-show.out -rw-r--r-- 1 kbrazil staff 53632 Dec 17 12:12 ps-axu.json -rwxr-xr-x 1 kbrazil staff 32255 Dec 17 12:12 ps-axu.out -rw-r--r-- 1 kbrazil staff 38291 Dec 17 12:12 ps-ef.json -rwxr-xr-x 1 kbrazil staff 25921 Dec 17 12:12 ps-ef.out -rw-r--r-- 1 kbrazil staff 233 Dec 17 12:12 uname-a.json -rwxr-xr-x 1 kbrazil staff 142 Dec 17 12:12 uname-a.out -rw-r--r-- 1 kbrazil staff 102 Dec 17 12:12 uptime.json -rwxr-xr-x 1 kbrazil staff 57 Dec 17 12:12 uptime.out -rw-r--r-- 1 kbrazil staff 627 Dec 17 12:12 w.json -rwxr-xr-x 1 kbrazil staff 458 Dec 17 12:12 w.out ./jc/build/lib/tests/fixtures/osx-10.14.6: total 6272 -rw-r--r-- 1 kbrazil staff 1541 Dec 17 12:12 arp-a.json -rw-r--r-- 1 kbrazil staff 968 Dec 17 12:12 arp-a.out -rw-r--r-- 1 kbrazil staff 1686 Dec 17 12:12 df-h.json -rw-r--r-- 1 kbrazil staff 1276 Dec 17 12:12 df-h.out -rw-r--r-- 1 kbrazil staff 1764 Dec 17 12:12 df.json -rw-r--r-- 1 kbrazil staff 1384 Dec 17 12:12 df.out -rw-r--r-- 1 kbrazil staff 438 Dec 17 12:12 dig-aaaa.json -rw-r--r-- 1 kbrazil staff 536 Dec 17 12:12 dig-aaaa.out -rw-r--r-- 1 kbrazil staff 442 Dec 17 12:12 dig-x.json -rw-r--r-- 1 kbrazil staff 529 Dec 17 12:12 dig-x.out -rw-r--r-- 1 kbrazil staff 1266 Dec 17 12:12 dig.json -rw-r--r-- 1 kbrazil staff 1182 Dec 17 12:12 dig.out -rw-r--r-- 1 kbrazil staff 296296 Dec 17 12:12 du.json -rw-r--r-- 1 kbrazil staff 222287 Dec 17 12:12 du.out -rw-r--r-- 1 kbrazil staff 9646 Mar 3 11:47 group.json -rw-r--r-- 1 kbrazil staff 2823 Mar 3 11:47 group.out -rw-r--r-- 1 kbrazil staff 759 Feb 5 17:00 id.json -rw-r--r-- 1 kbrazil staff 386 Feb 5 17:00 id.out -rw-r--r-- 1 kbrazil staff 10823 Dec 17 12:12 ifconfig.json -rwxr-xr-x 1 kbrazil staff 3779 Dec 17 12:12 ifconfig.out -rw-r--r-- 1 kbrazil staff 11375 Dec 17 12:12 ifconfig2.json -rw-r--r-- 1 kbrazil staff 3979 Dec 17 12:12 ifconfig2.out -rw-r--r-- 1 kbrazil staff 45274 Mar 3 11:47 last.json -rw-r--r-- 1 kbrazil staff 25827 Mar 3 11:47 last.out -rw-r--r-- 1 kbrazil staff 852 Feb 27 11:25 ls-R-newlines.json -rw-r--r-- 1 kbrazil staff 278 Feb 27 11:25 ls-R-newlines.out -rw-r--r-- 1 kbrazil staff 469418 Feb 19 07:07 ls-R.json -rw-r--r-- 1 kbrazil staff 133787 Feb 19 07:07 ls-R.out -rw-r--r-- 1 kbrazil staff 4653 Dec 17 12:12 ls-al.json -rwxr-xr-x 1 kbrazil staff 2111 Dec 17 12:12 ls-al.out -rw-r--r-- 1 kbrazil staff 959674 Feb 19 07:07 ls-alR.json -rw-r--r-- 1 kbrazil staff 364578 Feb 19 07:07 ls-alR.out -rw-r--r-- 1 kbrazil staff 4684 Dec 17 12:12 ls-alh.json -rwxr-xr-x 1 kbrazil staff 2111 Dec 17 12:12 ls-alh.out -rw-r--r-- 1 kbrazil staff 91499 Feb 19 07:07 ls-glob.json -rw-r--r-- 1 kbrazil staff 19369 Feb 19 07:07 ls-glob.out -rw-r--r-- 1 kbrazil staff 1162 Feb 27 11:25 ls-l-newlines.json -rw-r--r-- 1 kbrazil staff 583 Feb 27 11:25 ls-l-newlines.out -rw-r--r-- 1 kbrazil staff 1450 Feb 27 11:25 ls-lR-newlines.json -rw-r--r-- 1 kbrazil staff 656 Feb 27 11:25 ls-lR-newlines.out -rw-r--r-- 1 kbrazil staff 498 Feb 27 11:25 ls-newlines.json -rw-r--r-- 1 kbrazil staff 260 Feb 27 11:25 ls-newlines.out -rw-r--r-- 1 kbrazil staff 585 Dec 17 12:12 ls.json -rwxr-xr-x 1 kbrazil staff 193 Dec 17 12:12 ls.out -rw-r--r-- 1 kbrazil staff 672 Dec 17 12:12 mount.json -rw-r--r-- 1 kbrazil staff 349 Dec 17 12:12 mount.out -rw-r--r-- 1 kbrazil staff 841 Dec 17 12:12 mount2.json -rwxr-xr-x 1 kbrazil staff 464 Dec 17 12:12 mount2.out -rw-r--r-- 1 kbrazil staff 14855 Mar 3 11:47 passwd.json -rw-r--r-- 1 kbrazil staff 6804 Mar 3 11:47 passwd.out -rw-r--r-- 1 kbrazil staff 224 Dec 17 12:12 pip-list.json -rwxr-xr-x 1 kbrazil staff 168 Dec 17 12:12 pip-list.out -rw-r--r-- 1 kbrazil staff 1067 Dec 17 12:12 pip-show.json -rwxr-xr-x 1 kbrazil staff 910 Dec 17 12:12 pip-show.out -rw-r--r-- 1 kbrazil staff 99173 Dec 17 12:12 ps-axu.json -rw-r--r-- 1 kbrazil staff 60107 Dec 17 12:12 ps-axu.out -rw-r--r-- 1 kbrazil staff 71162 Dec 17 12:12 ps-ef.json -rw-r--r-- 1 kbrazil staff 48758 Dec 17 12:12 ps-ef.out -rw-r--r-- 1 kbrazil staff 221 Dec 17 12:12 uname-a.json -rwxr-xr-x 1 kbrazil staff 131 Dec 17 12:12 uname-a.out -rw-r--r-- 1 kbrazil staff 110 Dec 17 12:12 uptime.json -rwxr-xr-x 1 kbrazil staff 65 Dec 17 12:12 uptime.out -rw-r--r-- 1 kbrazil staff 836 Dec 17 12:12 w.json -rwxr-xr-x 1 kbrazil staff 570 Dec 17 12:12 w.out -rw-r--r-- 1 kbrazil staff 659 Mar 3 11:47 who-a.json -rw-r--r-- 1 kbrazil staff 419 Mar 3 11:47 who-a.out -rw-r--r-- 1 kbrazil staff 251 Mar 3 11:47 who.json -rw-r--r-- 1 kbrazil staff 128 Mar 3 11:47 who.out ./jc/build/lib/tests/fixtures/ubuntu-18.04: total 12688 -rw-r--r-- 1 kbrazil staff 351 Nov 17 12:00 arp-a.json -rw-r--r-- 1 kbrazil staff 174 Oct 31 08:07 arp-a.out -rw-r--r-- 1 kbrazil staff 237 Nov 17 12:00 arp-v.json -rw-r--r-- 1 kbrazil staff 274 Oct 31 08:07 arp-v.out -rw-r--r-- 1 kbrazil staff 237 Nov 17 12:00 arp.json -rw-r--r-- 1 kbrazil staff 243 Oct 31 08:07 arp.out -rw-r--r-- 1 kbrazil staff 818 Mar 3 11:47 blkid-ip-multi.json -rw-r--r-- 1 kbrazil staff 717 Mar 3 11:47 blkid-ip-multi.out -rw-r--r-- 1 kbrazil staff 962 Mar 3 11:47 blkid-ip-udev-multi.json -rw-r--r-- 1 kbrazil staff 832 Mar 3 11:47 blkid-ip-udev-multi.out -rw-r--r-- 1 kbrazil staff 547 Mar 3 11:47 blkid-ip-udev.json -rw-r--r-- 1 kbrazil staff 478 Mar 3 11:47 blkid-ip-udev.out -rw-r--r-- 1 kbrazil staff 142 Mar 3 11:47 blkid-sda2.json -rw-r--r-- 1 kbrazil staff 115 Mar 3 11:47 blkid-sda2.out -rw-r--r-- 1 kbrazil staff 986 Mar 3 11:47 blkid.json -rw-r--r-- 1 kbrazil staff 675 Mar 3 11:47 blkid.out -rw-r--r-- 1 kbrazil staff 939 Feb 5 17:00 crontab-u.json -rw-r--r-- 1 kbrazil staff 752 Feb 5 17:00 crontab-u.out -rw-r--r-- 1 kbrazil staff 2261 Nov 17 12:00 df-h.json -rw-r--r-- 1 kbrazil staff 1004 Oct 31 08:07 df-h.out -rw-r--r-- 1 kbrazil staff 2372 Dec 17 12:12 df.json -rw-r--r-- 1 kbrazil staff 1194 Oct 31 08:07 df.out -rw-r--r-- 1 kbrazil staff 458 Nov 17 12:00 dig-aaaa.json -rw-r--r-- 1 kbrazil staff 532 Oct 31 08:07 dig-aaaa.out -rw-r--r-- 1 kbrazil staff 460 Nov 17 12:00 dig-x.json -rw-r--r-- 1 kbrazil staff 523 Oct 31 08:07 dig-x.out -rw-r--r-- 1 kbrazil staff 1306 Nov 17 12:00 dig.json -rw-r--r-- 1 kbrazil staff 1156 Oct 31 08:07 dig.out -rw-r--r-- 1 kbrazil staff 1560353 Dec 17 12:12 du.json -rw-r--r-- 1 kbrazil staff 1136984 Dec 17 12:12 du.out -rw-r--r-- 1 kbrazil staff 2651 Nov 17 12:00 env.json -rw-r--r-- 1 kbrazil staff 2125 Oct 31 08:07 env.out -rw-r--r-- 1 kbrazil staff 177 Nov 17 12:00 free-h.json -rw-r--r-- 1 kbrazil staff 204 Oct 31 08:07 free-h.out -rw-r--r-- 1 kbrazil staff 195 Nov 17 12:00 free.json -rw-r--r-- 1 kbrazil staff 204 Oct 31 08:07 free.out -rw-r--r-- 1 kbrazil staff 268 Nov 17 12:00 fstab.json -rw-r--r-- 1 kbrazil staff 120 Nov 17 12:00 fstab.out -rw-r--r-- 1 kbrazil staff 3705 Mar 3 11:47 group.json -rw-r--r-- 1 kbrazil staff 721 Mar 3 11:47 group.out -rw-r--r-- 1 kbrazil staff 4279 Mar 3 11:47 gshadow.json -rw-r--r-- 1 kbrazil staff 606 Mar 3 11:47 gshadow.out -rw-r--r-- 1 kbrazil staff 22782 Feb 5 17:00 history.json -rw-r--r-- 1 kbrazil staff 12844 Oct 31 08:07 history.out -rw-r--r-- 1 kbrazil staff 365 Nov 17 12:00 hosts.json -rw-r--r-- 1 kbrazil staff 272 Nov 17 12:00 hosts.out -rw-r--r-- 1 kbrazil staff 1090 Dec 17 12:12 ifconfig.json -rw-r--r-- 1 kbrazil staff 894 Oct 31 08:07 ifconfig.out -rw-r--r-- 1 kbrazil staff 847 Nov 17 12:00 iptables-filter-line-numbers.json -rw-r--r-- 1 kbrazil staff 1025 Nov 17 12:00 iptables-filter-line-numbers.out -rw-r--r-- 1 kbrazil staff 2363 Nov 17 12:00 iptables-filter-nv.json -rw-r--r-- 1 kbrazil staff 2763 Oct 31 08:07 iptables-filter-nv.out -rw-r--r-- 1 kbrazil staff 1730 Nov 17 12:00 iptables-filter.json -rw-r--r-- 1 kbrazil staff 2035 Oct 31 08:07 iptables-filter.out -rw-r--r-- 1 kbrazil staff 141 Nov 17 12:00 iptables-mangle.json -rw-r--r-- 1 kbrazil staff 468 Oct 31 08:07 iptables-mangle.out -rw-r--r-- 1 kbrazil staff 106 Nov 17 12:00 iptables-nat.json -rw-r--r-- 1 kbrazil staff 375 Oct 31 08:07 iptables-nat.out -rw-r--r-- 1 kbrazil staff 39 Nov 17 12:00 iptables-raw.json -rw-r--r-- 1 kbrazil staff 187 Oct 31 08:07 iptables-raw.out -rw-r--r-- 1 kbrazil staff 306 Nov 17 12:00 jobs.json -rw-r--r-- 1 kbrazil staff 164 Oct 31 08:07 jobs.out -rw-r--r-- 1 kbrazil staff 1852 Mar 3 11:47 last-w.json -rw-r--r-- 1 kbrazil staff 1073 Mar 3 11:47 last-w.out -rw-r--r-- 1 kbrazil staff 1845 Mar 3 11:47 last.json -rw-r--r-- 1 kbrazil staff 1066 Mar 3 11:47 last.out -rw-r--r-- 1 kbrazil staff 125 Mar 3 11:47 lastb.json -rw-r--r-- 1 kbrazil staff 111 Mar 3 11:47 lastb.out -rw-r--r-- 1 kbrazil staff 1114 Feb 27 11:25 ls-R-newlines.json -rw-r--r-- 1 kbrazil staff 471 Feb 27 11:25 ls-R-newlines.out -rw-r--r-- 1 kbrazil staff 298654 Feb 19 07:07 ls-R.json -rw-r--r-- 1 kbrazil staff 62421 Feb 19 07:07 ls-R.out -rw-r--r-- 1 kbrazil staff 3950 Nov 17 12:00 ls-al.json -rw-r--r-- 1 kbrazil staff 1744 Oct 31 08:07 ls-al.out -rw-r--r-- 1 kbrazil staff 772252 Feb 19 07:07 ls-alR.json -rw-r--r-- 1 kbrazil staff 262651 Feb 19 07:07 ls-alR.out -rw-r--r-- 1 kbrazil staff 3942 Nov 17 12:00 ls-alh.json -rw-r--r-- 1 kbrazil staff 1567 Oct 31 08:07 ls-alh.out -rw-r--r-- 1 kbrazil staff 66907 Feb 19 07:07 ls-glob.json -rw-r--r-- 1 kbrazil staff 13721 Feb 19 07:07 ls-glob.out -rw-r--r-- 1 kbrazil staff 1176 Feb 27 11:25 ls-l-newlines.json -rw-r--r-- 1 kbrazil staff 576 Feb 27 11:25 ls-l-newlines.out -rw-r--r-- 1 kbrazil staff 2089 Feb 27 11:25 ls-lR-newlines.json -rw-r--r-- 1 kbrazil staff 984 Feb 27 11:25 ls-lR-newlines.out -rw-r--r-- 1 kbrazil staff 498 Feb 27 11:25 ls-newlines.json -rw-r--r-- 1 kbrazil staff 260 Feb 27 11:25 ls-newlines.out -rw-r--r-- 1 kbrazil staff 622 Nov 17 12:00 ls.json -rw-r--r-- 1 kbrazil staff 162 Oct 31 08:07 ls.out -rw-r--r-- 1 kbrazil staff 11397 Nov 17 12:00 lsblk-allcols.json -rw-r--r-- 1 kbrazil staff 7364 Nov 17 12:00 lsblk-allcols.out -rw-r--r-- 1 kbrazil staff 2114 Nov 17 12:00 lsblk.json -rw-r--r-- 1 kbrazil staff 812 Oct 31 08:07 lsblk.out -rw-r--r-- 1 kbrazil staff 6744 Nov 17 12:00 lsmod.json -rw-r--r-- 1 kbrazil staff 4251 Oct 31 08:07 lsmod.out -rw-r--r-- 1 kbrazil staff 526695 Nov 17 12:00 lsof-sudo.json -rw-r--r-- 1 kbrazil staff 342863 Oct 31 08:07 lsof-sudo.out -rw-r--r-- 1 kbrazil staff 194044 Nov 17 12:00 lsof.json -rw-r--r-- 1 kbrazil staff 132043 Oct 31 08:07 lsof.out -rw-r--r-- 1 kbrazil staff 6547 Nov 17 12:00 mount.json -rw-r--r-- 1 kbrazil staff 3708 Oct 31 08:07 mount.out -rw-r--r-- 1 kbrazil staff 5079 Nov 17 12:00 netstat-l.json -rw-r--r-- 1 kbrazil staff 2606 Oct 31 08:07 netstat-l.out -rw-r--r-- 1 kbrazil staff 14711 Nov 17 12:00 netstat-p.json -rw-r--r-- 1 kbrazil staff 8706 Oct 31 08:07 netstat-p.out -rw-r--r-- 1 kbrazil staff 22957 Nov 17 12:00 netstat-sudo-aeep.json -rw-r--r-- 1 kbrazil staff 12016 Nov 17 12:00 netstat-sudo-aeep.out -rw-r--r-- 1 kbrazil staff 6259 Nov 17 12:00 netstat-sudo-lnp.json -rw-r--r-- 1 kbrazil staff 3236 Oct 31 08:07 netstat-sudo-lnp.out -rw-r--r-- 1 kbrazil staff 12550 Nov 17 12:00 netstat.json -rw-r--r-- 1 kbrazil staff 6711 Oct 31 08:07 netstat.out -rw-r--r-- 1 kbrazil staff 4116 Mar 3 11:47 passwd.json -rw-r--r-- 1 kbrazil staff 1565 Mar 3 11:47 passwd.out -rw-r--r-- 1 kbrazil staff 2638 Dec 17 12:12 pip-list-legacy.json -rw-r--r-- 1 kbrazil staff 1041 Dec 17 12:12 pip-list-legacy.out -rw-r--r-- 1 kbrazil staff 2638 Dec 17 12:12 pip-list.json -rw-r--r-- 1 kbrazil staff 2360 Dec 17 12:12 pip-list.out -rw-r--r-- 1 kbrazil staff 874 Dec 17 12:12 pip-show.json -rw-r--r-- 1 kbrazil staff 730 Dec 17 12:12 pip-show.out -rw-r--r-- 1 kbrazil staff 31390 Nov 17 12:00 ps-axu.json -rw-r--r-- 1 kbrazil staff 14127 Oct 31 08:07 ps-axu.out -rw-r--r-- 1 kbrazil staff 21583 Nov 17 12:00 ps-ef.json -rw-r--r-- 1 kbrazil staff 11355 Oct 31 08:07 ps-ef.out -rw-r--r-- 1 kbrazil staff 447 Nov 17 12:00 route-vn.json -rw-r--r-- 1 kbrazil staff 336 Oct 31 08:07 route-vn.out -rw-r--r-- 1 kbrazil staff 439 Nov 17 12:00 route.json -rw-r--r-- 1 kbrazil staff 336 Oct 31 08:07 route.out -rw-r--r-- 1 kbrazil staff 4330 Mar 3 11:47 shadow.json -rw-r--r-- 1 kbrazil staff 939 Mar 3 11:47 shadow.out -rw-r--r-- 1 kbrazil staff 23277 Nov 17 12:00 ss-sudo-a.json -rw-r--r-- 1 kbrazil staff 25599 Nov 17 12:00 ss-sudo-a.out -rw-r--r-- 1 kbrazil staff 73147 Nov 17 12:00 stat.json -rw-r--r-- 1 kbrazil staff 60023 Nov 17 12:00 stat.out -rw-r--r-- 1 kbrazil staff 270 Nov 17 12:00 systemctl-lj.json -rw-r--r-- 1 kbrazil staff 244 Nov 17 12:00 systemctl-lj.out -rw-r--r-- 1 kbrazil staff 2431 Nov 17 12:00 systemctl-ls.json -rw-r--r-- 1 kbrazil staff 2072 Nov 17 12:00 systemctl-ls.out -rw-r--r-- 1 kbrazil staff 18756 Nov 17 12:00 systemctl-luf.json -rw-r--r-- 1 kbrazil staff 17734 Nov 17 12:00 systemctl-luf.out -rw-r--r-- 1 kbrazil staff 47895 Nov 17 12:00 systemctl.json -rw-r--r-- 1 kbrazil staff 76059 Nov 17 12:00 systemctl.out -rw-r--r-- 1 kbrazil staff 268 Nov 17 12:00 uname-a.json -rw-r--r-- 1 kbrazil staff 114 Oct 31 08:07 uname-a.out -rw-r--r-- 1 kbrazil staff 109 Nov 17 12:00 uptime.json -rw-r--r-- 1 kbrazil staff 70 Oct 31 08:07 uptime.out -rw-r--r-- 1 kbrazil staff 292 Nov 17 12:00 w.json -rw-r--r-- 1 kbrazil staff 274 Oct 31 08:07 w.out -rw-r--r-- 1 kbrazil staff 452 Mar 3 11:47 who-a.json -rw-r--r-- 1 kbrazil staff 355 Mar 3 11:47 who-a.out -rw-r--r-- 1 kbrazil staff 155 Mar 3 11:47 who.json -rw-r--r-- 1 kbrazil staff 140 Mar 3 11:47 who.out ./jc/dist: total 6736 -rw-r--r-- 1 kbrazil staff 1835119 Mar 3 13:52 jc-1.8.0-py3-none-any.whl -rw-r--r-- 1 kbrazil staff 1606987 Mar 3 13:52 jc-1.8.0.tar.gz ./jc/docs: total 16 drwxr-xr-x 48 kbrazil staff 1536 Mar 3 11:47 parsers -rw-r--r-- 1 kbrazil staff 2523 Mar 3 10:54 readme.md -rw-r--r-- 1 kbrazil staff 918 Mar 3 10:54 utils.md ./jc/docs/parsers: total 456 -rw-r--r-- 1 kbrazil staff 2613 Mar 3 10:54 arp.md -rw-r--r-- 1 kbrazil staff 4263 Mar 3 11:47 blkid.md -rw-r--r-- 1 kbrazil staff 4075 Mar 3 10:54 crontab.md -rw-r--r-- 1 kbrazil staff 4286 Mar 3 10:54 crontab_u.md -rw-r--r-- 1 kbrazil staff 2175 Mar 3 11:47 csv.md -rw-r--r-- 1 kbrazil staff 2544 Mar 3 10:54 df.md -rw-r--r-- 1 kbrazil staff 9210 Mar 3 10:54 dig.md -rw-r--r-- 1 kbrazil staff 2591 Mar 3 10:54 du.md -rw-r--r-- 1 kbrazil staff 1709 Mar 3 10:54 env.md -rw-r--r-- 1 kbrazil staff 1799 Mar 3 10:54 free.md -rw-r--r-- 1 kbrazil staff 2389 Mar 3 10:54 fstab.md -rw-r--r-- 1 kbrazil staff 2485 Mar 3 11:47 group.md -rw-r--r-- 1 kbrazil staff 1902 Mar 3 11:47 gshadow.md -rw-r--r-- 1 kbrazil staff 1500 Mar 3 10:54 history.md -rw-r--r-- 1 kbrazil staff 1779 Mar 3 10:54 hosts.md -rw-r--r-- 1 kbrazil staff 2331 Mar 3 10:54 id.md -rw-r--r-- 1 kbrazil staff 5199 Mar 3 10:54 ifconfig.md -rw-r--r-- 1 kbrazil staff 1623 Mar 3 10:54 ini.md -rw-r--r-- 1 kbrazil staff 4501 Mar 3 10:54 iptables.md -rw-r--r-- 1 kbrazil staff 2326 Mar 3 10:54 jobs.md -rw-r--r-- 1 kbrazil staff 2261 Mar 3 11:47 last.md -rw-r--r-- 1 kbrazil staff 4290 Mar 3 11:47 ls.md -rw-r--r-- 1 kbrazil staff 7177 Mar 3 10:54 lsblk.md -rw-r--r-- 1 kbrazil staff 2723 Mar 3 10:54 lsmod.md -rw-r--r-- 1 kbrazil staff 2818 Mar 3 10:54 lsof.md -rw-r--r-- 1 kbrazil staff 1807 Mar 3 10:54 mount.md -rw-r--r-- 1 kbrazil staff 9469 Mar 3 10:54 netstat.md -rw-r--r-- 1 kbrazil staff 2506 Mar 3 11:47 passwd.md -rw-r--r-- 1 kbrazil staff 1309 Mar 3 10:54 pip_list.md -rw-r--r-- 1 kbrazil staff 2194 Mar 3 10:54 pip_show.md -rw-r--r-- 1 kbrazil staff 4860 Mar 3 10:54 ps.md -rw-r--r-- 1 kbrazil staff 3030 Mar 3 10:54 route.md -rw-r--r-- 1 kbrazil staff 2637 Mar 3 11:47 shadow.md -rw-r--r-- 1 kbrazil staff 7404 Mar 3 10:54 ss.md -rw-r--r-- 1 kbrazil staff 4013 Mar 3 10:54 stat.md -rw-r--r-- 1 kbrazil staff 1751 Mar 3 10:54 systemctl.md -rw-r--r-- 1 kbrazil staff 1951 Mar 3 10:54 systemctl_lj.md -rw-r--r-- 1 kbrazil staff 1473 Mar 3 10:54 systemctl_ls.md -rw-r--r-- 1 kbrazil staff 1316 Mar 3 10:54 systemctl_luf.md -rw-r--r-- 1 kbrazil staff 1530 Mar 3 10:54 uname.md -rw-r--r-- 1 kbrazil staff 1404 Mar 3 10:54 uptime.md -rw-r--r-- 1 kbrazil staff 2588 Mar 3 10:54 w.md -rw-r--r-- 1 kbrazil staff 3078 Mar 3 11:47 who.md -rw-r--r-- 1 kbrazil staff 2047 Mar 3 10:54 xml.md -rw-r--r-- 1 kbrazil staff 2257 Mar 3 10:54 yaml.md ./jc/jc: total 32 -rw-r--r-- 1 kbrazil staff 2538 Nov 17 12:00 __init__.py drwxr-xr-x 6 kbrazil staff 192 Mar 4 17:20 __pycache__ -rw-r--r-- 1 kbrazil staff 8192 Mar 4 16:55 cli.py drwxr-xr-x 52 kbrazil staff 1664 Mar 4 17:05 parsers drwxr-xr-x 6 kbrazil staff 192 Nov 7 13:56 parsers.old -rw-r--r-- 1 kbrazil staff 1471 Dec 17 12:12 utils.py ./jc/jc/__pycache__: total 40 -rw-r--r-- 1 kbrazil staff 2672 Nov 20 09:35 __init__.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 6279 Mar 4 17:20 cli.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 2115 Nov 6 21:27 jc.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 1740 Dec 17 15:04 utils.cpython-37.pyc ./jc/jc/parsers: total 616 -rw-r--r--@ 1 kbrazil staff 0 Nov 7 06:51 __init__.py drwxr-xr-x 50 kbrazil staff 1600 Mar 6 12:09 __pycache__ -rw-r--r-- 1 kbrazil staff 5016 Mar 4 17:05 arp.py -rw-r--r-- 1 kbrazil staff 6868 Mar 4 17:05 blkid.py -rw-r--r-- 1 kbrazil staff 6756 Feb 13 18:27 crontab.py -rw-r--r-- 1 kbrazil staff 7055 Feb 8 12:42 crontab_u.py -rw-r--r-- 1 kbrazil staff 3193 Mar 3 11:47 csv.py -rw-r--r-- 1 kbrazil staff 5176 Feb 13 18:27 df.py -rw-r--r-- 1 kbrazil staff 15625 Feb 13 18:27 dig.py -rw-r--r-- 1 kbrazil staff 3751 Feb 13 18:27 du.py -rw-r--r-- 1 kbrazil staff 2782 Feb 13 18:27 env.py -rw-r--r-- 1 kbrazil staff 1802 Mar 4 16:55 foo.py -rw-r--r-- 1 kbrazil staff 3037 Feb 13 18:27 free.py -rw-r--r-- 1 kbrazil staff 4098 Feb 13 18:27 fstab.py -rw-r--r-- 1 kbrazil staff 3976 Mar 3 11:47 group.py -rw-r--r-- 1 kbrazil staff 3230 Mar 3 11:47 gshadow.py -rw-r--r-- 1 kbrazil staff 2807 Mar 6 12:06 history.py -rw-r--r-- 1 kbrazil staff 3258 Feb 5 17:00 hosts.py -rw-r--r-- 1 kbrazil staff 5595 Feb 13 18:27 id.py -rw-r--r-- 1 kbrazil staff 7611 Feb 13 18:27 ifconfig.py -rw-r--r-- 1 kbrazil staff 2418 Feb 5 17:00 ini.py -rw-r--r-- 1 kbrazil staff 7465 Feb 13 18:27 iptables.py -rw-r--r-- 1 kbrazil staff 4885 Feb 13 18:27 jobs.py -rw-r--r-- 1 kbrazil staff 4425 Mar 3 11:47 last.py -rw-r--r-- 1 kbrazil staff 8630 Mar 3 11:47 ls.py -rw-r--r-- 1 kbrazil staff 9105 Feb 13 18:27 lsblk.py -rw-r--r-- 1 kbrazil staff 3844 Feb 13 18:27 lsmod.py -rw-r--r-- 1 kbrazil staff 5434 Feb 13 18:27 lsof.py -rw-r--r-- 1 kbrazil staff 3729 Feb 13 18:27 mount.py -rw-r--r-- 1 kbrazil staff 16129 Feb 13 18:27 netstat.py -rw-r--r-- 1 kbrazil staff 4055 Mar 3 11:47 passwd.py -rw-r--r-- 1 kbrazil staff 2658 Feb 13 18:27 pip_list.py -rw-r--r-- 1 kbrazil staff 3444 Feb 13 18:27 pip_show.py -rw-r--r-- 1 kbrazil staff 6793 Feb 13 18:27 ps.py -rw-r--r-- 1 kbrazil staff 4085 Feb 13 18:27 route.py -rw-r--r-- 1 kbrazil staff 4306 Mar 3 11:47 shadow.py -rw-r--r-- 1 kbrazil staff 11491 Feb 13 18:27 ss.py -rw-r--r-- 1 kbrazil staff 8255 Feb 13 18:27 stat.py -rw-r--r-- 1 kbrazil staff 2940 Feb 13 18:27 systemctl.py -rw-r--r-- 1 kbrazil staff 3483 Feb 13 18:27 systemctl_lj.py -rw-r--r-- 1 kbrazil staff 2675 Feb 13 18:27 systemctl_ls.py -rw-r--r-- 1 kbrazil staff 2585 Feb 13 18:27 systemctl_luf.py -rw-r--r-- 1 kbrazil staff 3225 Feb 13 18:27 uname.py -rw-r--r-- 1 kbrazil staff 4041 Dec 17 12:12 universal.py -rw-r--r-- 1 kbrazil staff 3243 Feb 13 18:27 uptime.py -rw-r--r-- 1 kbrazil staff 4345 Feb 13 18:27 w.py -rw-r--r-- 1 kbrazil staff 7850 Mar 3 11:47 who.py -rw-r--r-- 1 kbrazil staff 2747 Feb 5 17:00 xml.py -rw-r--r-- 1 kbrazil staff 3045 Feb 5 17:00 yaml.py ./jc/jc/parsers/__pycache__: total 576 -rw-r--r-- 1 kbrazil staff 131 Nov 7 07:07 __init__.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 4280 Mar 4 17:05 arp.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 6132 Mar 4 17:05 blkid.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 6113 Feb 13 22:07 crontab.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 6348 Feb 8 12:42 crontab_u.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 3292 Mar 4 12:08 csv.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 4234 Feb 13 22:07 df.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 13352 Feb 13 22:07 dig.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 3750 Feb 13 22:07 du.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 2834 Feb 13 22:07 env.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 3088 Feb 13 22:07 free.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 3779 Feb 13 22:07 fstab.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 3785 Mar 4 12:08 group.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 3108 Mar 4 12:08 gshadow.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 2740 Mar 6 12:09 history.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 3031 Feb 5 22:20 hosts.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 4338 Feb 13 22:07 id.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 7471 Feb 13 22:07 ifconfig.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 2733 Feb 5 22:20 ini.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 6664 Feb 13 22:07 iptables.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 4054 Feb 13 22:07 jobs.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 4038 Mar 4 12:08 last.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 6559 Mar 4 12:08 ls.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 8868 Feb 13 22:07 lsblk.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 3899 Feb 13 22:07 lsmod.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 4065 Feb 13 22:07 lsof.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 3514 Feb 13 22:07 mount.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 13400 Feb 13 22:07 netstat.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 3849 Mar 4 12:08 passwd.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 2603 Feb 13 22:07 pip_list.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 3425 Feb 13 22:07 pip_show.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 6396 Feb 13 22:07 ps.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 4207 Feb 13 22:07 route.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 4055 Mar 4 12:08 shadow.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 9863 Feb 13 22:07 ss.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 6408 Feb 13 22:07 stat.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 2973 Feb 13 22:07 systemctl.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 3381 Feb 13 22:07 systemctl_lj.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 2638 Nov 15 19:07 systemctl_lm.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 2715 Feb 13 22:07 systemctl_ls.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 2600 Feb 13 22:07 systemctl_luf.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 2856 Feb 13 22:07 uname.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 3545 Dec 17 15:04 universal.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 2946 Feb 13 22:07 uptime.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 4162 Feb 13 22:07 w.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 5485 Mar 4 12:08 who.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 2957 Feb 5 22:20 xml.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 3269 Feb 5 22:20 yaml.cpython-37.pyc ./jc/jc/parsers.old: total 56 -rw-r--r--@ 1 kbrazil staff 2247 Oct 4 15:20 ifconfig-old.py -rw-r--r-- 1 kbrazil staff 9359 Oct 18 19:02 netstat-fancy.py -rw-r--r--@ 1 kbrazil staff 2714 Oct 16 23:03 netstat-orig.py -rw-r--r-- 1 kbrazil staff 4410 Nov 5 20:30 netstat-v1.1.1.py ./jc/jc.egg-info: total 200 -rw-r--r-- 1 kbrazil staff 64247 Mar 3 13:52 PKG-INFO -rw-r--r-- 1 kbrazil staff 19812 Mar 3 13:52 SOURCES.txt -rw-r--r-- 1 kbrazil staff 1 Mar 3 13:52 dependency_links.txt -rw-r--r-- 1 kbrazil staff 36 Mar 3 13:52 entry_points.txt -rw-r--r-- 1 kbrazil staff 61 Mar 3 13:52 requires.txt -rw-r--r-- 1 kbrazil staff 9 Mar 3 13:52 top_level.txt ./jc/tests: total 464 -rw-r--r-- 1 kbrazil staff 0 Oct 31 08:07 __init__.py drwxr-xr-x 48 kbrazil staff 1536 Mar 4 19:46 __pycache__ drwxr-xr-x 9 kbrazil staff 288 Mar 3 11:47 fixtures -rw-r--r-- 1 kbrazil staff 4746 Mar 4 19:37 test_arp.py -rw-r--r-- 1 kbrazil staff 6590 Mar 4 19:37 test_blkid.py -rw-r--r-- 1 kbrazil staff 837 Mar 4 19:37 test_crontab.py -rw-r--r-- 1 kbrazil staff 1498 Mar 4 19:37 test_crontab_u.py -rw-r--r-- 1 kbrazil staff 5383 Mar 4 19:37 test_csv.py -rw-r--r-- 1 kbrazil staff 4669 Mar 4 19:37 test_df.py -rw-r--r-- 1 kbrazil staff 3656 Mar 4 19:38 test_dig.py -rw-r--r-- 1 kbrazil staff 2415 Mar 4 19:38 test_du.py -rw-r--r-- 1 kbrazil staff 1350 Mar 4 19:38 test_env.py -rw-r--r-- 1 kbrazil staff 2517 Mar 4 19:38 test_free.py -rw-r--r-- 1 kbrazil staff 1406 Mar 4 19:38 test_fstab.py -rw-r--r-- 1 kbrazil staff 1982 Mar 4 19:38 test_group.py -rw-r--r-- 1 kbrazil staff 1444 Mar 4 19:39 test_gshadow.py -rw-r--r-- 1 kbrazil staff 1426 Mar 4 19:39 test_history.py -rw-r--r-- 1 kbrazil staff 1406 Mar 4 19:39 test_hosts.py -rw-r--r-- 1 kbrazil staff 1329 Mar 4 19:39 test_id.py -rw-r--r-- 1 kbrazil staff 3845 Mar 4 19:39 test_ifconfig.py -rw-r--r-- 1 kbrazil staff 1404 Mar 4 19:39 test_ini.py -rw-r--r-- 1 kbrazil staff 8341 Mar 4 19:39 test_iptables.py -rw-r--r-- 1 kbrazil staff 1369 Mar 4 19:40 test_jobs.py -rw-r--r-- 1 kbrazil staff 4237 Mar 4 19:40 test_last.py -rw-r--r-- 1 kbrazil staff 20054 Mar 4 19:40 test_ls.py -rw-r--r-- 1 kbrazil staff 3084 Mar 4 19:29 test_lsblk.py -rw-r--r-- 1 kbrazil staff 1388 Mar 4 19:41 test_lsmod.py -rw-r--r-- 1 kbrazil staff 2563 Mar 4 19:41 test_lsof.py -rw-r--r-- 1 kbrazil staff 2536 Mar 4 19:41 test_mount.py -rw-r--r-- 1 kbrazil staff 6474 Mar 4 19:41 test_netstat.py -rw-r--r-- 1 kbrazil staff 2012 Mar 4 19:41 test_passwd.py -rw-r--r-- 1 kbrazil staff 3303 Mar 4 19:41 test_pip_list.py -rw-r--r-- 1 kbrazil staff 2637 Mar 4 19:33 test_pip_show.py -rw-r--r-- 1 kbrazil staff 4805 Mar 4 19:42 test_ps.py -rw-r--r-- 1 kbrazil staff 2570 Mar 4 19:42 test_route.py -rw-r--r-- 1 kbrazil staff 1425 Mar 4 19:42 test_shadow.py -rw-r--r-- 1 kbrazil staff 1445 Mar 4 19:42 test_ss.py -rw-r--r-- 1 kbrazil staff 1383 Mar 4 19:30 test_stat.py -rw-r--r-- 1 kbrazil staff 1470 Mar 4 19:33 test_systemctl.py -rw-r--r-- 1 kbrazil staff 907 Mar 4 19:44 test_systemctl_lj.py -rw-r--r-- 1 kbrazil staff 1547 Mar 4 19:45 test_systemctl_ls.py -rw-r--r-- 1 kbrazil staff 1564 Mar 4 19:45 test_systemctl_luf.py -rw-r--r-- 1 kbrazil staff 2586 Mar 4 19:45 test_uname.py -rw-r--r-- 1 kbrazil staff 2563 Mar 4 19:45 test_uptime.py -rw-r--r-- 1 kbrazil staff 2370 Mar 4 19:45 test_w.py -rw-r--r-- 1 kbrazil staff 3599 Mar 4 19:46 test_who.py -rw-r--r-- 1 kbrazil staff 1429 Mar 4 19:46 test_xml.py -rw-r--r-- 1 kbrazil staff 1473 Mar 4 19:46 test_yaml.py ./jc/tests/__pycache__: total 464 -rw-r--r-- 1 kbrazil staff 126 Nov 8 14:01 __init__.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 4580 Mar 4 19:43 test_arp.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 6192 Mar 4 19:43 test_blkid.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 1185 Mar 4 19:43 test_crontab.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 1762 Mar 4 19:43 test_crontab_u.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 5045 Mar 4 19:43 test_csv.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 4520 Mar 4 19:43 test_df.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 3632 Mar 4 19:43 test_dig.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 2553 Mar 4 19:43 test_du.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 1626 Mar 4 19:43 test_env.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 2640 Mar 4 19:43 test_free.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 1678 Mar 4 19:43 test_fstab.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 2178 Mar 4 19:43 test_group.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 1712 Mar 4 19:43 test_gshadow.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 1694 Mar 4 19:43 test_history.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 1678 Mar 4 19:43 test_hosts.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 1607 Mar 4 19:43 test_id.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 3783 Mar 4 19:43 test_ifconfig.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 1654 Mar 4 19:43 test_ini.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 7690 Mar 4 19:43 test_iptables.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 1643 Mar 4 19:43 test_jobs.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 4137 Mar 4 19:43 test_last.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 17989 Mar 4 19:43 test_ls.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 3195 Mar 4 19:43 test_lsblk.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 1660 Mar 4 19:43 test_lsmod.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 2680 Mar 4 19:43 test_lsof.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 2655 Mar 4 19:43 test_mount.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 6060 Mar 4 19:43 test_netstat.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 2204 Mar 4 19:43 test_passwd.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 3316 Mar 4 19:43 test_pip_list.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 2739 Mar 4 19:43 test_pip_show.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 4636 Mar 4 19:43 test_ps.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 2685 Mar 4 19:43 test_route.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 1695 Mar 4 19:43 test_shadow.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 1709 Mar 4 19:43 test_ss.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 1657 Mar 4 19:43 test_stat.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 1734 Mar 4 19:43 test_systemctl.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 1254 Mar 4 19:44 test_systemctl_lj.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 1805 Mar 4 19:46 test_systemctl_ls.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 1820 Mar 4 19:46 test_systemctl_luf.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 2690 Mar 4 19:46 test_uname.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 2677 Mar 4 19:46 test_uptime.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 2518 Mar 4 19:46 test_w.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 3582 Mar 4 19:46 test_who.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 1676 Mar 4 19:46 test_xml.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 1715 Mar 4 19:46 test_yaml.cpython-37.pyc ./jc/tests/fixtures: total 8 drwxr-xr-x 153 kbrazil staff 4896 Mar 3 11:47 centos-7.7 -rw-r--r-- 1 kbrazil staff 3397 Mar 3 11:47 create_fixtures.sh drwxr-xr-x 34 kbrazil staff 1088 Mar 3 11:47 generic drwxr-xr-x 41 kbrazil staff 1312 Dec 17 12:12 osx-10.11.6 drwxr-xr-x 71 kbrazil staff 2272 Mar 3 11:47 osx-10.14.6 drwxr-xr-x 153 kbrazil staff 4896 Mar 3 11:47 ubuntu-18.04 ./jc/tests/fixtures/centos-7.7: total 9720 -rw-r--r-- 1 kbrazil staff 350 Nov 17 12:00 arp-a.json -rw-r--r-- 1 kbrazil staff 173 Oct 31 08:07 arp-a.out -rw-r--r-- 1 kbrazil staff 236 Nov 17 12:00 arp-v.json -rw-r--r-- 1 kbrazil staff 274 Oct 31 08:07 arp-v.out -rw-r--r-- 1 kbrazil staff 236 Nov 17 12:00 arp.json -rw-r--r-- 1 kbrazil staff 243 Oct 31 08:07 arp.out -rw-r--r-- 1 kbrazil staff 764 Mar 3 11:47 blkid-ip-multi.json -rw-r--r-- 1 kbrazil staff 618 Mar 3 11:47 blkid-ip-multi.out -rw-r--r-- 1 kbrazil staff 987 Mar 3 11:47 blkid-ip-udev-multi.json -rw-r--r-- 1 kbrazil staff 838 Mar 3 11:47 blkid-ip-udev-multi.out -rw-r--r-- 1 kbrazil staff 488 Mar 3 11:47 blkid-ip-udev.json -rw-r--r-- 1 kbrazil staff 413 Mar 3 11:47 blkid-ip-udev.out -rw-r--r-- 1 kbrazil staff 99 Mar 3 11:47 blkid-sda2.json -rw-r--r-- 1 kbrazil staff 77 Mar 3 11:47 blkid-sda2.out -rw-r--r-- 1 kbrazil staff 392 Mar 3 11:47 blkid.json -rw-r--r-- 1 kbrazil staff 307 Mar 3 11:47 blkid.out -rw-r--r-- 1 kbrazil staff 399 Feb 5 17:00 crontab-u.json -rw-r--r-- 1 kbrazil staff 163 Feb 5 17:00 crontab-u.out -rw-r--r-- 1 kbrazil staff 1940 Feb 5 17:00 crontab.json -rw-r--r-- 1 kbrazil staff 1564 Dec 17 12:12 crontab.out -rw-r--r-- 1 kbrazil staff 836 Nov 17 12:00 df-h.json -rw-r--r-- 1 kbrazil staff 444 Oct 31 08:07 df-h.out -rw-r--r-- 1 kbrazil staff 904 Dec 17 12:12 df.json -rw-r--r-- 1 kbrazil staff 524 Oct 31 08:07 df.out -rw-r--r-- 1 kbrazil staff 462 Nov 17 12:00 dig-aaaa.json -rw-r--r-- 1 kbrazil staff 556 Oct 31 08:07 dig-aaaa.out -rw-r--r-- 1 kbrazil staff 464 Nov 17 12:00 dig-x.json -rw-r--r-- 1 kbrazil staff 547 Oct 31 08:07 dig-x.out -rw-r--r-- 1 kbrazil staff 1005 Nov 17 12:00 dig.json -rw-r--r-- 1 kbrazil staff 1052 Oct 31 08:07 dig.out -rw-r--r-- 1 kbrazil staff 365319 Dec 17 12:12 du.json -rw-r--r-- 1 kbrazil staff 250940 Dec 17 12:12 du.out -rw-r--r-- 1 kbrazil staff 2932 Nov 17 12:00 env.json -rw-r--r-- 1 kbrazil staff 2331 Oct 31 08:07 env.out -rw-r--r-- 1 kbrazil staff 177 Nov 17 12:00 free-h.json -rw-r--r-- 1 kbrazil staff 204 Oct 31 08:07 free-h.out -rw-r--r-- 1 kbrazil staff 194 Nov 17 12:00 free.json -rw-r--r-- 1 kbrazil staff 204 Oct 31 08:07 free.out -rw-r--r-- 1 kbrazil staff 423 Nov 17 12:00 fstab.json -rw-r--r-- 1 kbrazil staff 488 Nov 17 12:00 fstab.out -rw-r--r-- 1 kbrazil staff 2701 Mar 3 11:47 group.json -rw-r--r-- 1 kbrazil staff 509 Mar 3 11:47 group.out -rw-r--r-- 1 kbrazil staff 3106 Mar 3 11:47 gshadow.json -rw-r--r-- 1 kbrazil staff 407 Mar 3 11:47 gshadow.out -rw-r--r-- 1 kbrazil staff 47552 Feb 5 17:00 history.json -rw-r--r-- 1 kbrazil staff 25967 Oct 31 08:07 history.out -rw-r--r-- 1 kbrazil staff 223 Nov 17 12:00 hosts.json -rw-r--r-- 1 kbrazil staff 193 Nov 17 12:00 hosts.out -rw-r--r-- 1 kbrazil staff 267 Feb 5 17:00 id.json -rw-r--r-- 1 kbrazil staff 129 Feb 5 17:00 id.out -rw-r--r-- 1 kbrazil staff 1598 Dec 17 12:12 ifconfig.json -rw-r--r-- 1 kbrazil staff 1259 Oct 31 08:07 ifconfig.out -rw-r--r-- 1 kbrazil staff 7469 Nov 17 12:00 iptables-filter-line-numbers.json -rw-r--r-- 1 kbrazil staff 6643 Nov 17 12:00 iptables-filter-line-numbers.out -rw-r--r-- 1 kbrazil staff 10625 Nov 17 12:00 iptables-filter-nv.json -rw-r--r-- 1 kbrazil staff 9064 Oct 31 08:07 iptables-filter-nv.out -rw-r--r-- 1 kbrazil staff 7749 Nov 17 12:00 iptables-filter.json -rw-r--r-- 1 kbrazil staff 6762 Oct 31 08:07 iptables-filter.out -rw-r--r-- 1 kbrazil staff 1938 Nov 17 12:00 iptables-mangle.json -rw-r--r-- 1 kbrazil staff 2399 Oct 31 08:07 iptables-mangle.out -rw-r--r-- 1 kbrazil staff 3211 Nov 17 12:00 iptables-nat.json -rw-r--r-- 1 kbrazil staff 3484 Oct 31 08:07 iptables-nat.out -rw-r--r-- 1 kbrazil staff 1386 Nov 17 12:00 iptables-raw.json -rw-r--r-- 1 kbrazil staff 1616 Oct 31 08:07 iptables-raw.out -rw-r--r-- 1 kbrazil staff 306 Nov 17 12:00 jobs.json -rw-r--r-- 1 kbrazil staff 164 Oct 31 08:07 jobs.out -rw-r--r-- 1 kbrazil staff 9189 Mar 3 11:47 last-w.json -rw-r--r-- 1 kbrazil staff 5452 Mar 3 11:47 last-w.out -rw-r--r-- 1 kbrazil staff 8934 Mar 3 11:47 last.json -rw-r--r-- 1 kbrazil staff 5197 Mar 3 11:47 last.out -rw-r--r-- 1 kbrazil staff 511 Mar 3 11:47 lastb.json -rw-r--r-- 1 kbrazil staff 346 Mar 3 11:47 lastb.out -rw-r--r-- 1 kbrazil staff 1281 Feb 27 11:25 ls-R-newlines.json -rw-r--r-- 1 kbrazil staff 542 Feb 27 11:25 ls-R-newlines.out -rw-r--r-- 1 kbrazil staff 315329 Feb 19 07:07 ls-R.json -rw-r--r-- 1 kbrazil staff 72565 Feb 19 07:07 ls-R.out -rw-r--r-- 1 kbrazil staff 2776 Nov 17 12:00 ls-al.json -rw-r--r-- 1 kbrazil staff 1070 Oct 31 08:07 ls-al.out -rw-r--r-- 1 kbrazil staff 773278 Feb 19 07:07 ls-alR.json -rw-r--r-- 1 kbrazil staff 281708 Feb 19 07:07 ls-alR.out -rw-r--r-- 1 kbrazil staff 2776 Nov 17 12:00 ls-alh.json -rw-r--r-- 1 kbrazil staff 1071 Oct 31 08:07 ls-alh.out -rw-r--r-- 1 kbrazil staff 97675 Feb 19 07:07 ls-glob.json -rw-r--r-- 1 kbrazil staff 22048 Feb 19 07:07 ls-glob.out -rw-r--r-- 1 kbrazil staff 1183 Feb 27 11:25 ls-l-newlines.json -rw-r--r-- 1 kbrazil staff 583 Feb 27 11:25 ls-l-newlines.out -rw-r--r-- 1 kbrazil staff 2576 Feb 27 11:25 ls-lR-newlines.json -rw-r--r-- 1 kbrazil staff 1209 Feb 27 11:25 ls-lR-newlines.out -rw-r--r-- 1 kbrazil staff 498 Feb 27 11:25 ls-newlines.json -rw-r--r-- 1 kbrazil staff 260 Feb 27 11:25 ls-newlines.out -rw-r--r-- 1 kbrazil staff 409 Nov 17 12:00 ls.json -rw-r--r-- 1 kbrazil staff 85 Oct 31 08:07 ls.out -rw-r--r-- 1 kbrazil staff 4102 Nov 17 12:00 lsblk-allcols.json -rw-r--r-- 1 kbrazil staff 2502 Nov 17 12:00 lsblk-allcols.out -rw-r--r-- 1 kbrazil staff 698 Nov 17 12:00 lsblk.json -rw-r--r-- 1 kbrazil staff 332 Oct 31 08:07 lsblk.out -rw-r--r-- 1 kbrazil staff 6655 Nov 17 12:00 lsmod.json -rw-r--r-- 1 kbrazil staff 4161 Oct 31 08:07 lsmod.out -rw-r--r-- 1 kbrazil staff 618317 Nov 17 12:00 lsof-sudo.json -rw-r--r-- 1 kbrazil staff 363073 Oct 31 08:07 lsof-sudo.out -rw-r--r-- 1 kbrazil staff 126050 Nov 17 12:00 lsof.json -rw-r--r-- 1 kbrazil staff 70567 Oct 31 08:07 lsof.out -rw-r--r-- 1 kbrazil staff 4848 Nov 17 12:00 mount.json -rw-r--r-- 1 kbrazil staff 2711 Oct 31 08:07 mount.out -rw-r--r-- 1 kbrazil staff 7020 Nov 17 12:00 netstat-l.json -rw-r--r-- 1 kbrazil staff 3499 Oct 31 08:07 netstat-l.out -rw-r--r-- 1 kbrazil staff 17621 Nov 17 12:00 netstat-p.json -rw-r--r-- 1 kbrazil staff 10407 Oct 31 08:07 netstat-p.out -rw-r--r-- 1 kbrazil staff 29188 Nov 17 12:00 netstat-sudo-aeep.json -rw-r--r-- 1 kbrazil staff 14986 Nov 17 12:00 netstat-sudo-aeep.out -rw-r--r-- 1 kbrazil staff 8734 Nov 17 12:00 netstat-sudo-lnp.json -rw-r--r-- 1 kbrazil staff 4402 Oct 31 08:07 netstat-sudo-lnp.out -rw-r--r-- 1 kbrazil staff 15637 Nov 17 12:00 netstat.json -rw-r--r-- 1 kbrazil staff 8068 Oct 31 08:07 netstat.out -rw-r--r-- 1 kbrazil staff 2747 Mar 3 11:47 passwd.json -rw-r--r-- 1 kbrazil staff 961 Mar 3 11:47 passwd.out -rw-r--r-- 1 kbrazil staff 905 Dec 17 12:12 pip-list.json -rw-r--r-- 1 kbrazil staff 616 Dec 17 12:12 pip-list.out -rw-r--r-- 1 kbrazil staff 1129 Dec 17 12:12 pip-show.json -rw-r--r-- 1 kbrazil staff 974 Dec 17 12:12 pip-show.out -rw-r--r-- 1 kbrazil staff 20936 Nov 17 12:00 ps-axu.json -rw-r--r-- 1 kbrazil staff 9932 Oct 31 08:07 ps-axu.out -rw-r--r-- 1 kbrazil staff 14630 Nov 17 12:00 ps-ef.json -rw-r--r-- 1 kbrazil staff 8168 Oct 31 08:07 ps-ef.out -rw-r--r-- 1 kbrazil staff 442 Nov 17 12:00 route-vn.json -rw-r--r-- 1 kbrazil staff 338 Oct 31 08:07 route-vn.out -rw-r--r-- 1 kbrazil staff 437 Nov 17 12:00 route.json -rw-r--r-- 1 kbrazil staff 338 Oct 31 08:07 route.out -rw-r--r-- 1 kbrazil staff 3206 Mar 3 11:47 shadow.json -rw-r--r-- 1 kbrazil staff 740 Mar 3 11:47 shadow.out -rw-r--r-- 1 kbrazil staff 29301 Nov 17 12:00 ss-sudo-a.json -rw-r--r-- 1 kbrazil staff 17945 Nov 17 12:00 ss-sudo-a.out -rw-r--r-- 1 kbrazil staff 322074 Nov 17 12:00 stat.json -rw-r--r-- 1 kbrazil staff 295777 Nov 17 12:00 stat.out -rw-r--r-- 1 kbrazil staff 1439 Nov 17 12:00 systemctl-ls.json -rw-r--r-- 1 kbrazil staff 1159 Nov 17 12:00 systemctl-ls.out -rw-r--r-- 1 kbrazil staff 14574 Nov 17 12:00 systemctl-luf.json -rw-r--r-- 1 kbrazil staff 13499 Nov 17 12:00 systemctl-luf.out -rw-r--r-- 1 kbrazil staff 31968 Nov 17 12:00 systemctl.json -rw-r--r-- 1 kbrazil staff 38560 Nov 17 12:00 systemctl.out -rw-r--r-- 1 kbrazil staff 276 Nov 17 12:00 uname-a.json -rw-r--r-- 1 kbrazil staff 122 Oct 31 08:07 uname-a.out -rw-r--r-- 1 kbrazil staff 103 Nov 17 12:00 uptime.json -rw-r--r-- 1 kbrazil staff 62 Oct 31 08:07 uptime.out -rw-r--r-- 1 kbrazil staff 287 Nov 17 12:00 w.json -rw-r--r-- 1 kbrazil staff 266 Oct 31 08:07 w.out -rw-r--r-- 1 kbrazil staff 549 Mar 3 11:47 who-a.json -rw-r--r-- 1 kbrazil staff 364 Mar 3 11:47 who-a.out -rw-r--r-- 1 kbrazil staff 155 Mar 3 11:47 who.json -rw-r--r-- 1 kbrazil staff 93 Mar 3 11:47 who.out ./jc/tests/fixtures/generic: total 3848 -rw-r--r-- 1 kbrazil staff 849 Mar 3 11:47 csv-biostats.csv -rw-r--r-- 1 kbrazil staff 1566 Mar 3 11:47 csv-biostats.json -rw-r--r-- 1 kbrazil staff 8402 Mar 3 11:47 csv-cities.csv -rw-r--r-- 1 kbrazil staff 18398 Mar 3 11:47 csv-cities.json -rw-r--r-- 1 kbrazil staff 2391 Mar 3 11:47 csv-deniro.csv -rw-r--r-- 1 kbrazil staff 5146 Mar 3 11:47 csv-deniro.json -rw-r--r-- 1 kbrazil staff 1117 Mar 3 11:47 csv-example.csv -rw-r--r-- 1 kbrazil staff 1588 Mar 3 11:47 csv-example.json -rw-r--r-- 1 kbrazil staff 558246 Mar 3 11:47 csv-flyrna.json -rw-r--r-- 1 kbrazil staff 205281 Mar 3 11:47 csv-flyrna.tsv -rw-r--r-- 1 kbrazil staff 556670 Mar 3 11:47 csv-flyrna2.json -rw-r--r-- 1 kbrazil staff 203705 Mar 3 11:47 csv-flyrna2.tsv -rw-r--r-- 1 kbrazil staff 158 Mar 3 11:47 csv-homes-pipe.csv -rw-r--r-- 1 kbrazil staff 274 Mar 3 11:47 csv-homes-pipe.json -rw-r--r-- 1 kbrazil staff 2125 Mar 3 11:47 csv-homes.csv -rw-r--r-- 1 kbrazil staff 6798 Mar 3 11:47 csv-homes.json -rw-r--r-- 1 kbrazil staff 53816 Mar 3 11:47 csv-insurance.csv -rw-r--r-- 1 kbrazil staff 229722 Mar 3 11:47 csv-insurance.json -rw-r--r-- 1 kbrazil staff 4705 Feb 5 17:00 ini-iptelserver.ini -rw-r--r-- 1 kbrazil staff 1486 Feb 5 17:00 ini-iptelserver.json -rw-r--r-- 1 kbrazil staff 171 Feb 5 17:00 ini-test.ini -rw-r--r-- 1 kbrazil staff 270 Feb 5 17:00 ini-test.json -rw-r--r-- 1 kbrazil staff 4413 Mar 3 11:47 oscar_age_male.csv -rw-r--r-- 1 kbrazil staff 3294 Feb 5 17:00 xml-cd_catalog.json -rw-r--r-- 1 kbrazil staff 5077 Feb 5 17:00 xml-cd_catalog.xml -rw-r--r-- 1 kbrazil staff 811 Feb 5 17:00 xml-foodmenu.json -rw-r--r-- 1 kbrazil staff 1102 Feb 5 17:00 xml-foodmenu.xml -rw-r--r-- 1 kbrazil staff 333 Feb 5 17:00 yaml-istio-sc.json -rw-r--r-- 1 kbrazil staff 305 Feb 5 17:00 yaml-istio-sc.yaml -rw-r--r-- 1 kbrazil staff 3178 Feb 5 17:00 yaml-istio-sidecar.json -rw-r--r-- 1 kbrazil staff 3681 Feb 5 17:00 yaml-istio-sidecar.yaml ./jc/tests/fixtures/osx-10.11.6: total 1344 -rw-r--r-- 1 kbrazil staff 1669 Dec 17 12:12 arp-a.json -rwxr-xr-x 1 kbrazil staff 1036 Dec 17 12:12 arp-a.out -rw-r--r-- 1 kbrazil staff 1151 Dec 17 12:12 df-h.json -rwxr-xr-x 1 kbrazil staff 908 Dec 17 12:12 df-h.out -rw-r--r-- 1 kbrazil staff 1196 Dec 17 12:12 df.json -rwxr-xr-x 1 kbrazil staff 992 Dec 17 12:12 df.out -rw-r--r-- 1 kbrazil staff 439 Dec 17 12:12 dig-aaaa.json -rwxr-xr-x 1 kbrazil staff 537 Dec 17 12:12 dig-aaaa.out -rw-r--r-- 1 kbrazil staff 442 Dec 17 12:12 dig-x.json -rwxr-xr-x 1 kbrazil staff 529 Dec 17 12:12 dig-x.out -rw-r--r-- 1 kbrazil staff 1272 Dec 17 12:12 dig.json -rwxr-xr-x 1 kbrazil staff 1188 Dec 17 12:12 dig.out -rw-r--r-- 1 kbrazil staff 221050 Dec 17 12:12 du.json -rwxr-xr-x 1 kbrazil staff 166687 Dec 17 12:12 du.out -rw-r--r-- 1 kbrazil staff 3791 Dec 17 12:12 ifconfig.json -rwxr-xr-x 1 kbrazil staff 1571 Dec 17 12:12 ifconfig.out -rw-r--r-- 1 kbrazil staff 3791 Dec 17 12:12 ifconfig2.json -rwxr-xr-x 1 kbrazil staff 1571 Dec 17 12:12 ifconfig2.out -rw-r--r-- 1 kbrazil staff 4259 Dec 17 12:12 ls-al.json -rwxr-xr-x 1 kbrazil staff 1851 Dec 17 12:12 ls-al.out -rw-r--r-- 1 kbrazil staff 4296 Dec 17 12:12 ls-alh.json -rwxr-xr-x 1 kbrazil staff 1882 Dec 17 12:12 ls-alh.out -rw-r--r-- 1 kbrazil staff 533 Dec 17 12:12 ls.json -rwxr-xr-x 1 kbrazil staff 175 Dec 17 12:12 ls.out -rw-r--r-- 1 kbrazil staff 224 Dec 17 12:12 pip-list.json -rwxr-xr-x 1 kbrazil staff 168 Dec 17 12:12 pip-list.out -rw-r--r-- 1 kbrazil staff 1028 Dec 17 12:12 pip-show.json -rwxr-xr-x 1 kbrazil staff 867 Dec 17 12:12 pip-show.out -rw-r--r-- 1 kbrazil staff 53632 Dec 17 12:12 ps-axu.json -rwxr-xr-x 1 kbrazil staff 32255 Dec 17 12:12 ps-axu.out -rw-r--r-- 1 kbrazil staff 38291 Dec 17 12:12 ps-ef.json -rwxr-xr-x 1 kbrazil staff 25921 Dec 17 12:12 ps-ef.out -rw-r--r-- 1 kbrazil staff 233 Dec 17 12:12 uname-a.json -rwxr-xr-x 1 kbrazil staff 142 Dec 17 12:12 uname-a.out -rw-r--r-- 1 kbrazil staff 102 Dec 17 12:12 uptime.json -rwxr-xr-x 1 kbrazil staff 57 Dec 17 12:12 uptime.out -rw-r--r-- 1 kbrazil staff 627 Dec 17 12:12 w.json -rwxr-xr-x 1 kbrazil staff 458 Dec 17 12:12 w.out ./jc/tests/fixtures/osx-10.14.6: total 6272 -rw-r--r-- 1 kbrazil staff 1541 Dec 17 12:12 arp-a.json -rw-r--r-- 1 kbrazil staff 968 Dec 17 12:12 arp-a.out -rw-r--r-- 1 kbrazil staff 1686 Dec 17 12:12 df-h.json -rw-r--r-- 1 kbrazil staff 1276 Dec 17 12:12 df-h.out -rw-r--r-- 1 kbrazil staff 1764 Dec 17 12:12 df.json -rw-r--r-- 1 kbrazil staff 1384 Dec 17 12:12 df.out -rw-r--r-- 1 kbrazil staff 438 Dec 17 12:12 dig-aaaa.json -rw-r--r-- 1 kbrazil staff 536 Dec 17 12:12 dig-aaaa.out -rw-r--r-- 1 kbrazil staff 442 Dec 17 12:12 dig-x.json -rw-r--r-- 1 kbrazil staff 529 Dec 17 12:12 dig-x.out -rw-r--r-- 1 kbrazil staff 1266 Dec 17 12:12 dig.json -rw-r--r-- 1 kbrazil staff 1182 Dec 17 12:12 dig.out -rw-r--r-- 1 kbrazil staff 296296 Dec 17 12:12 du.json -rw-r--r-- 1 kbrazil staff 222287 Dec 17 12:12 du.out -rw-r--r-- 1 kbrazil staff 9646 Mar 3 11:47 group.json -rw-r--r-- 1 kbrazil staff 2823 Mar 3 11:47 group.out -rw-r--r-- 1 kbrazil staff 759 Feb 5 17:00 id.json -rw-r--r-- 1 kbrazil staff 386 Feb 5 17:00 id.out -rw-r--r-- 1 kbrazil staff 10823 Dec 17 12:12 ifconfig.json -rwxr-xr-x 1 kbrazil staff 3779 Dec 17 12:12 ifconfig.out -rw-r--r-- 1 kbrazil staff 11375 Dec 17 12:12 ifconfig2.json -rw-r--r-- 1 kbrazil staff 3979 Dec 17 12:12 ifconfig2.out -rw-r--r-- 1 kbrazil staff 45274 Mar 3 11:47 last.json -rw-r--r-- 1 kbrazil staff 25827 Mar 3 11:47 last.out -rw-r--r-- 1 kbrazil staff 852 Feb 27 11:25 ls-R-newlines.json -rw-r--r-- 1 kbrazil staff 278 Feb 27 11:25 ls-R-newlines.out -rw-r--r-- 1 kbrazil staff 469418 Feb 19 07:07 ls-R.json -rw-r--r-- 1 kbrazil staff 133787 Feb 19 07:07 ls-R.out -rw-r--r-- 1 kbrazil staff 4653 Dec 17 12:12 ls-al.json -rwxr-xr-x 1 kbrazil staff 2111 Dec 17 12:12 ls-al.out -rw-r--r-- 1 kbrazil staff 959674 Feb 19 07:07 ls-alR.json -rw-r--r-- 1 kbrazil staff 364578 Feb 19 07:07 ls-alR.out -rw-r--r-- 1 kbrazil staff 4684 Dec 17 12:12 ls-alh.json -rwxr-xr-x 1 kbrazil staff 2111 Dec 17 12:12 ls-alh.out -rw-r--r-- 1 kbrazil staff 91499 Feb 19 07:07 ls-glob.json -rw-r--r-- 1 kbrazil staff 19369 Feb 19 07:07 ls-glob.out -rw-r--r-- 1 kbrazil staff 1162 Feb 27 11:25 ls-l-newlines.json -rw-r--r-- 1 kbrazil staff 583 Feb 27 11:25 ls-l-newlines.out -rw-r--r-- 1 kbrazil staff 1450 Feb 27 11:25 ls-lR-newlines.json -rw-r--r-- 1 kbrazil staff 656 Feb 27 11:25 ls-lR-newlines.out -rw-r--r-- 1 kbrazil staff 498 Feb 27 11:25 ls-newlines.json -rw-r--r-- 1 kbrazil staff 260 Feb 27 11:25 ls-newlines.out -rw-r--r-- 1 kbrazil staff 585 Dec 17 12:12 ls.json -rwxr-xr-x 1 kbrazil staff 193 Dec 17 12:12 ls.out -rw-r--r-- 1 kbrazil staff 672 Dec 17 12:12 mount.json -rw-r--r-- 1 kbrazil staff 349 Dec 17 12:12 mount.out -rw-r--r-- 1 kbrazil staff 841 Dec 17 12:12 mount2.json -rwxr-xr-x 1 kbrazil staff 464 Dec 17 12:12 mount2.out -rw-r--r-- 1 kbrazil staff 14855 Mar 3 11:47 passwd.json -rw-r--r-- 1 kbrazil staff 6804 Mar 3 11:47 passwd.out -rw-r--r-- 1 kbrazil staff 224 Dec 17 12:12 pip-list.json -rwxr-xr-x 1 kbrazil staff 168 Dec 17 12:12 pip-list.out -rw-r--r-- 1 kbrazil staff 1067 Dec 17 12:12 pip-show.json -rwxr-xr-x 1 kbrazil staff 910 Dec 17 12:12 pip-show.out -rw-r--r-- 1 kbrazil staff 99173 Dec 17 12:12 ps-axu.json -rw-r--r-- 1 kbrazil staff 60107 Dec 17 12:12 ps-axu.out -rw-r--r-- 1 kbrazil staff 71162 Dec 17 12:12 ps-ef.json -rw-r--r-- 1 kbrazil staff 48758 Dec 17 12:12 ps-ef.out -rw-r--r-- 1 kbrazil staff 221 Dec 17 12:12 uname-a.json -rwxr-xr-x 1 kbrazil staff 131 Dec 17 12:12 uname-a.out -rw-r--r-- 1 kbrazil staff 110 Dec 17 12:12 uptime.json -rwxr-xr-x 1 kbrazil staff 65 Dec 17 12:12 uptime.out -rw-r--r-- 1 kbrazil staff 836 Dec 17 12:12 w.json -rwxr-xr-x 1 kbrazil staff 570 Dec 17 12:12 w.out -rw-r--r-- 1 kbrazil staff 659 Mar 3 11:47 who-a.json -rw-r--r-- 1 kbrazil staff 419 Mar 3 11:47 who-a.out -rw-r--r-- 1 kbrazil staff 251 Mar 3 11:47 who.json -rw-r--r-- 1 kbrazil staff 128 Mar 3 11:47 who.out ./jc/tests/fixtures/ubuntu-18.04: total 12688 -rw-r--r-- 1 kbrazil staff 351 Nov 17 12:00 arp-a.json -rw-r--r-- 1 kbrazil staff 174 Oct 31 08:07 arp-a.out -rw-r--r-- 1 kbrazil staff 237 Nov 17 12:00 arp-v.json -rw-r--r-- 1 kbrazil staff 274 Oct 31 08:07 arp-v.out -rw-r--r-- 1 kbrazil staff 237 Nov 17 12:00 arp.json -rw-r--r-- 1 kbrazil staff 243 Oct 31 08:07 arp.out -rw-r--r-- 1 kbrazil staff 818 Mar 3 11:47 blkid-ip-multi.json -rw-r--r-- 1 kbrazil staff 717 Mar 3 11:47 blkid-ip-multi.out -rw-r--r-- 1 kbrazil staff 962 Mar 3 11:47 blkid-ip-udev-multi.json -rw-r--r-- 1 kbrazil staff 832 Mar 3 11:47 blkid-ip-udev-multi.out -rw-r--r-- 1 kbrazil staff 547 Mar 3 11:47 blkid-ip-udev.json -rw-r--r-- 1 kbrazil staff 478 Mar 3 11:47 blkid-ip-udev.out -rw-r--r-- 1 kbrazil staff 142 Mar 3 11:47 blkid-sda2.json -rw-r--r-- 1 kbrazil staff 115 Mar 3 11:47 blkid-sda2.out -rw-r--r-- 1 kbrazil staff 986 Mar 3 11:47 blkid.json -rw-r--r-- 1 kbrazil staff 675 Mar 3 11:47 blkid.out -rw-r--r-- 1 kbrazil staff 939 Feb 5 17:00 crontab-u.json -rw-r--r-- 1 kbrazil staff 752 Feb 5 17:00 crontab-u.out -rw-r--r-- 1 kbrazil staff 2261 Nov 17 12:00 df-h.json -rw-r--r-- 1 kbrazil staff 1004 Oct 31 08:07 df-h.out -rw-r--r-- 1 kbrazil staff 2372 Dec 17 12:12 df.json -rw-r--r-- 1 kbrazil staff 1194 Oct 31 08:07 df.out -rw-r--r-- 1 kbrazil staff 458 Nov 17 12:00 dig-aaaa.json -rw-r--r-- 1 kbrazil staff 532 Oct 31 08:07 dig-aaaa.out -rw-r--r-- 1 kbrazil staff 460 Nov 17 12:00 dig-x.json -rw-r--r-- 1 kbrazil staff 523 Oct 31 08:07 dig-x.out -rw-r--r-- 1 kbrazil staff 1306 Nov 17 12:00 dig.json -rw-r--r-- 1 kbrazil staff 1156 Oct 31 08:07 dig.out -rw-r--r-- 1 kbrazil staff 1560353 Dec 17 12:12 du.json -rw-r--r-- 1 kbrazil staff 1136984 Dec 17 12:12 du.out -rw-r--r-- 1 kbrazil staff 2651 Nov 17 12:00 env.json -rw-r--r-- 1 kbrazil staff 2125 Oct 31 08:07 env.out -rw-r--r-- 1 kbrazil staff 177 Nov 17 12:00 free-h.json -rw-r--r-- 1 kbrazil staff 204 Oct 31 08:07 free-h.out -rw-r--r-- 1 kbrazil staff 195 Nov 17 12:00 free.json -rw-r--r-- 1 kbrazil staff 204 Oct 31 08:07 free.out -rw-r--r-- 1 kbrazil staff 268 Nov 17 12:00 fstab.json -rw-r--r-- 1 kbrazil staff 120 Nov 17 12:00 fstab.out -rw-r--r-- 1 kbrazil staff 3705 Mar 3 11:47 group.json -rw-r--r-- 1 kbrazil staff 721 Mar 3 11:47 group.out -rw-r--r-- 1 kbrazil staff 4279 Mar 3 11:47 gshadow.json -rw-r--r-- 1 kbrazil staff 606 Mar 3 11:47 gshadow.out -rw-r--r-- 1 kbrazil staff 22782 Feb 5 17:00 history.json -rw-r--r-- 1 kbrazil staff 12844 Oct 31 08:07 history.out -rw-r--r-- 1 kbrazil staff 365 Nov 17 12:00 hosts.json -rw-r--r-- 1 kbrazil staff 272 Nov 17 12:00 hosts.out -rw-r--r-- 1 kbrazil staff 1090 Dec 17 12:12 ifconfig.json -rw-r--r-- 1 kbrazil staff 894 Oct 31 08:07 ifconfig.out -rw-r--r-- 1 kbrazil staff 847 Nov 17 12:00 iptables-filter-line-numbers.json -rw-r--r-- 1 kbrazil staff 1025 Nov 17 12:00 iptables-filter-line-numbers.out -rw-r--r-- 1 kbrazil staff 2363 Nov 17 12:00 iptables-filter-nv.json -rw-r--r-- 1 kbrazil staff 2763 Oct 31 08:07 iptables-filter-nv.out -rw-r--r-- 1 kbrazil staff 1730 Nov 17 12:00 iptables-filter.json -rw-r--r-- 1 kbrazil staff 2035 Oct 31 08:07 iptables-filter.out -rw-r--r-- 1 kbrazil staff 141 Nov 17 12:00 iptables-mangle.json -rw-r--r-- 1 kbrazil staff 468 Oct 31 08:07 iptables-mangle.out -rw-r--r-- 1 kbrazil staff 106 Nov 17 12:00 iptables-nat.json -rw-r--r-- 1 kbrazil staff 375 Oct 31 08:07 iptables-nat.out -rw-r--r-- 1 kbrazil staff 39 Nov 17 12:00 iptables-raw.json -rw-r--r-- 1 kbrazil staff 187 Oct 31 08:07 iptables-raw.out -rw-r--r-- 1 kbrazil staff 306 Nov 17 12:00 jobs.json -rw-r--r-- 1 kbrazil staff 164 Oct 31 08:07 jobs.out -rw-r--r-- 1 kbrazil staff 1852 Mar 3 11:47 last-w.json -rw-r--r-- 1 kbrazil staff 1073 Mar 3 11:47 last-w.out -rw-r--r-- 1 kbrazil staff 1845 Mar 3 11:47 last.json -rw-r--r-- 1 kbrazil staff 1066 Mar 3 11:47 last.out -rw-r--r-- 1 kbrazil staff 125 Mar 3 11:47 lastb.json -rw-r--r-- 1 kbrazil staff 111 Mar 3 11:47 lastb.out -rw-r--r-- 1 kbrazil staff 1114 Feb 27 11:25 ls-R-newlines.json -rw-r--r-- 1 kbrazil staff 471 Feb 27 11:25 ls-R-newlines.out -rw-r--r-- 1 kbrazil staff 298654 Feb 19 07:07 ls-R.json -rw-r--r-- 1 kbrazil staff 62421 Feb 19 07:07 ls-R.out -rw-r--r-- 1 kbrazil staff 3950 Nov 17 12:00 ls-al.json -rw-r--r-- 1 kbrazil staff 1744 Oct 31 08:07 ls-al.out -rw-r--r-- 1 kbrazil staff 772252 Feb 19 07:07 ls-alR.json -rw-r--r-- 1 kbrazil staff 262651 Feb 19 07:07 ls-alR.out -rw-r--r-- 1 kbrazil staff 3942 Nov 17 12:00 ls-alh.json -rw-r--r-- 1 kbrazil staff 1567 Oct 31 08:07 ls-alh.out -rw-r--r-- 1 kbrazil staff 66907 Feb 19 07:07 ls-glob.json -rw-r--r-- 1 kbrazil staff 13721 Feb 19 07:07 ls-glob.out -rw-r--r-- 1 kbrazil staff 1176 Feb 27 11:25 ls-l-newlines.json -rw-r--r-- 1 kbrazil staff 576 Feb 27 11:25 ls-l-newlines.out -rw-r--r-- 1 kbrazil staff 2089 Feb 27 11:25 ls-lR-newlines.json -rw-r--r-- 1 kbrazil staff 984 Feb 27 11:25 ls-lR-newlines.out -rw-r--r-- 1 kbrazil staff 498 Feb 27 11:25 ls-newlines.json -rw-r--r-- 1 kbrazil staff 260 Feb 27 11:25 ls-newlines.out -rw-r--r-- 1 kbrazil staff 622 Nov 17 12:00 ls.json -rw-r--r-- 1 kbrazil staff 162 Oct 31 08:07 ls.out -rw-r--r-- 1 kbrazil staff 11397 Nov 17 12:00 lsblk-allcols.json -rw-r--r-- 1 kbrazil staff 7364 Nov 17 12:00 lsblk-allcols.out -rw-r--r-- 1 kbrazil staff 2114 Nov 17 12:00 lsblk.json -rw-r--r-- 1 kbrazil staff 812 Oct 31 08:07 lsblk.out -rw-r--r-- 1 kbrazil staff 6744 Nov 17 12:00 lsmod.json -rw-r--r-- 1 kbrazil staff 4251 Oct 31 08:07 lsmod.out -rw-r--r-- 1 kbrazil staff 526695 Nov 17 12:00 lsof-sudo.json -rw-r--r-- 1 kbrazil staff 342863 Oct 31 08:07 lsof-sudo.out -rw-r--r-- 1 kbrazil staff 194044 Nov 17 12:00 lsof.json -rw-r--r-- 1 kbrazil staff 132043 Oct 31 08:07 lsof.out -rw-r--r-- 1 kbrazil staff 6547 Nov 17 12:00 mount.json -rw-r--r-- 1 kbrazil staff 3708 Oct 31 08:07 mount.out -rw-r--r-- 1 kbrazil staff 5079 Nov 17 12:00 netstat-l.json -rw-r--r-- 1 kbrazil staff 2606 Oct 31 08:07 netstat-l.out -rw-r--r-- 1 kbrazil staff 14711 Nov 17 12:00 netstat-p.json -rw-r--r-- 1 kbrazil staff 8706 Oct 31 08:07 netstat-p.out -rw-r--r-- 1 kbrazil staff 22957 Nov 17 12:00 netstat-sudo-aeep.json -rw-r--r-- 1 kbrazil staff 12016 Nov 17 12:00 netstat-sudo-aeep.out -rw-r--r-- 1 kbrazil staff 6259 Nov 17 12:00 netstat-sudo-lnp.json -rw-r--r-- 1 kbrazil staff 3236 Oct 31 08:07 netstat-sudo-lnp.out -rw-r--r-- 1 kbrazil staff 12550 Nov 17 12:00 netstat.json -rw-r--r-- 1 kbrazil staff 6711 Oct 31 08:07 netstat.out -rw-r--r-- 1 kbrazil staff 4116 Mar 3 11:47 passwd.json -rw-r--r-- 1 kbrazil staff 1565 Mar 3 11:47 passwd.out -rw-r--r-- 1 kbrazil staff 2638 Dec 17 12:12 pip-list-legacy.json -rw-r--r-- 1 kbrazil staff 1041 Dec 17 12:12 pip-list-legacy.out -rw-r--r-- 1 kbrazil staff 2638 Dec 17 12:12 pip-list.json -rw-r--r-- 1 kbrazil staff 2360 Dec 17 12:12 pip-list.out -rw-r--r-- 1 kbrazil staff 874 Dec 17 12:12 pip-show.json -rw-r--r-- 1 kbrazil staff 730 Dec 17 12:12 pip-show.out -rw-r--r-- 1 kbrazil staff 31390 Nov 17 12:00 ps-axu.json -rw-r--r-- 1 kbrazil staff 14127 Oct 31 08:07 ps-axu.out -rw-r--r-- 1 kbrazil staff 21583 Nov 17 12:00 ps-ef.json -rw-r--r-- 1 kbrazil staff 11355 Oct 31 08:07 ps-ef.out -rw-r--r-- 1 kbrazil staff 447 Nov 17 12:00 route-vn.json -rw-r--r-- 1 kbrazil staff 336 Oct 31 08:07 route-vn.out -rw-r--r-- 1 kbrazil staff 439 Nov 17 12:00 route.json -rw-r--r-- 1 kbrazil staff 336 Oct 31 08:07 route.out -rw-r--r-- 1 kbrazil staff 4330 Mar 3 11:47 shadow.json -rw-r--r-- 1 kbrazil staff 939 Mar 3 11:47 shadow.out -rw-r--r-- 1 kbrazil staff 23277 Nov 17 12:00 ss-sudo-a.json -rw-r--r-- 1 kbrazil staff 25599 Nov 17 12:00 ss-sudo-a.out -rw-r--r-- 1 kbrazil staff 73147 Nov 17 12:00 stat.json -rw-r--r-- 1 kbrazil staff 60023 Nov 17 12:00 stat.out -rw-r--r-- 1 kbrazil staff 270 Nov 17 12:00 systemctl-lj.json -rw-r--r-- 1 kbrazil staff 244 Nov 17 12:00 systemctl-lj.out -rw-r--r-- 1 kbrazil staff 2431 Nov 17 12:00 systemctl-ls.json -rw-r--r-- 1 kbrazil staff 2072 Nov 17 12:00 systemctl-ls.out -rw-r--r-- 1 kbrazil staff 18756 Nov 17 12:00 systemctl-luf.json -rw-r--r-- 1 kbrazil staff 17734 Nov 17 12:00 systemctl-luf.out -rw-r--r-- 1 kbrazil staff 47895 Nov 17 12:00 systemctl.json -rw-r--r-- 1 kbrazil staff 76059 Nov 17 12:00 systemctl.out -rw-r--r-- 1 kbrazil staff 268 Nov 17 12:00 uname-a.json -rw-r--r-- 1 kbrazil staff 114 Oct 31 08:07 uname-a.out -rw-r--r-- 1 kbrazil staff 109 Nov 17 12:00 uptime.json -rw-r--r-- 1 kbrazil staff 70 Oct 31 08:07 uptime.out -rw-r--r-- 1 kbrazil staff 292 Nov 17 12:00 w.json -rw-r--r-- 1 kbrazil staff 274 Oct 31 08:07 w.out -rw-r--r-- 1 kbrazil staff 452 Mar 3 11:47 who-a.json -rw-r--r-- 1 kbrazil staff 355 Mar 3 11:47 who-a.out -rw-r--r-- 1 kbrazil staff 155 Mar 3 11:47 who.json -rw-r--r-- 1 kbrazil staff 140 Mar 3 11:47 who.out ./jtbl: total 72 -rw-r--r-- 1 kbrazil staff 1069 Mar 5 09:18 LICENSE -rw-r--r-- 1 kbrazil staff 7644 Mar 6 08:41 README.md -rw-r--r-- 1 kbrazil staff 26 Mar 5 16:16 _config.yml drwxr-xr-x 4 kbrazil staff 128 Mar 5 11:45 build -rwxrwxrwx 1 kbrazil staff 127 Oct 15 14:55 build-package.sh -rw-r--r--@ 1 kbrazil staff 71 Mar 6 10:53 changelog.txt drwxr-xr-x 5 kbrazil staff 160 Mar 6 10:54 dist -rwxr-xr-x 1 kbrazil staff 46 Nov 17 12:00 install.sh drwxr-xr-x 5 kbrazil staff 160 Mar 5 12:52 jtbl drwxr-xr-x 8 kbrazil staff 256 Mar 6 10:54 jtbl.egg-info -rwxr-xr-x@ 1 kbrazil staff 31 Oct 17 14:59 pypi-upload.sh -rwxr-xr-x 1 kbrazil staff 910 Mar 6 10:47 setup.py drwxr-xr-x 4 kbrazil staff 128 Mar 5 13:13 tests ./jtbl/build: total 0 drwxr-xr-x 2 kbrazil staff 64 Mar 6 10:54 bdist.macosx-10.14-x86_64 drwxr-xr-x 3 kbrazil staff 96 Mar 5 11:45 lib ./jtbl/build/bdist.macosx-10.14-x86_64: ./jtbl/build/lib: total 0 drwxr-xr-x 4 kbrazil staff 128 Mar 6 10:54 jtbl ./jtbl/build/lib/jtbl: total 8 -rw-r--r-- 1 kbrazil staff 0 Mar 5 11:15 __init__.py -rw-r--r-- 1 kbrazil staff 1424 Mar 6 10:37 cli.py ./jtbl/dist: total 32 -rw-r--r-- 1 kbrazil staff 5544 Mar 6 10:54 jtbl-0.1.2-py3-none-any.whl -rw-r--r-- 1 kbrazil staff 4868 Mar 6 10:54 jtbl-0.1.2.tar.gz ./jtbl/jtbl: total 8 -rw-r--r-- 1 kbrazil staff 0 Mar 5 11:15 __init__.py drwxr-xr-x 4 kbrazil staff 128 Mar 6 15:02 __pycache__ -rwxr-xr-x@ 1 kbrazil staff 1438 Mar 6 15:02 cli.py ./jtbl/jtbl/__pycache__: total 16 -rw-r--r-- 1 kbrazil staff 127 Mar 5 12:52 __init__.cpython-37.pyc -rw-r--r-- 1 kbrazil staff 988 Mar 6 15:02 cli.cpython-37.pyc ./jtbl/jtbl.egg-info: total 64 -rw-r--r-- 1 kbrazil staff 9569 Mar 6 10:54 PKG-INFO -rw-r--r-- 1 kbrazil staff 217 Mar 6 10:54 SOURCES.txt -rw-r--r-- 1 kbrazil staff 1 Mar 6 10:54 dependency_links.txt -rw-r--r-- 1 kbrazil staff 40 Mar 6 10:54 entry_points.txt -rw-r--r-- 1 kbrazil staff 16 Mar 6 10:54 requires.txt -rw-r--r-- 1 kbrazil staff 5 Mar 6 10:54 top_level.txt ./jtbl/tests: total 0 drwxr-xr-x 6 kbrazil staff 192 Mar 6 10:41 fixtures ./jtbl/tests/fixtures: total 24 -rw-r--r--@ 1 kbrazil staff 271 Mar 6 10:41 deepnest.json -rw-r--r-- 1 kbrazil staff 1575 Mar 5 15:42 ifconfig-jq.jsonl -rw-r--r--@ 1 kbrazil staff 300 Mar 5 12:28 jsonlines.jsonl ./microsim: total 40 -rw-r--r--@ 1 kbrazil staff 1069 Aug 9 2019 LICENSE -rw-r--r-- 1 kbrazil staff 11913 Oct 1 13:22 README.md -rw-r--r-- 1 kbrazil staff 26 Dec 10 08:08 _config.yml drwxr-xr-x 9 kbrazil staff 288 Dec 10 08:02 k8s_deployments drwxr-xr-x 7 kbrazil staff 224 Oct 1 13:22 microsimclient drwxr-xr-x 7 kbrazil staff 224 Oct 1 13:22 microsimserver ./microsim/k8s_deployments: total 48 -rw-r--r--@ 1 kbrazil staff 7743 Aug 28 2019 README.md drwxr-xr-x 14 kbrazil staff 448 Jan 28 13:52 blog -rw-r--r--@ 1 kbrazil staff 4111 Aug 29 2019 crashing_service.yaml drwxr-xr-x 6 kbrazil staff 192 Aug 27 2019 images -rw-r--r--@ 1 kbrazil staff 4051 Aug 29 2019 monitoring.yaml -rw-r--r--@ 1 kbrazil staff 1947 Aug 29 2019 simple.yaml ./microsim/k8s_deployments/blog: total 104 -rw-r--r--@ 1 kbrazil staff 585 Jan 24 14:29 istio-ingress.yaml -rw-r--r--@ 1 kbrazil staff 358 Jan 24 14:28 istio-mtls-permissive.yaml -rw-r--r--@ 1 kbrazil staff 539 Jan 24 14:28 istio-mtls-strict.yaml -rw-r--r--@ 1 kbrazil staff 995 Jan 29 06:46 istio-rbac-policy-final.yaml -rw-r--r--@ 1 kbrazil staff 456 Jan 24 14:29 istio-rbac-policy-test.yaml -rw-r--r--@ 1 kbrazil staff 285 Jan 28 14:36 istio-sc.yaml -rw-r--r--@ 1 kbrazil staff 3640 Jan 29 06:47 istio-sidecar.yaml -rw-r--r--@ 1 kbrazil staff 1659 Dec 18 20:43 servicelayer-network-policy.yaml -rw-r--r--@ 1 kbrazil staff 4195 Dec 18 16:02 servicelayer.yaml -rw-r--r--@ 1 kbrazil staff 639 Jan 9 16:07 sidecar-network-policy.yaml -rw-r--r--@ 1 kbrazil staff 2716 Jan 9 14:55 sidecar.yaml -rw-r--r--@ 1 kbrazil staff 2072 Dec 10 06:23 simple.yaml ./microsim/k8s_deployments/images: total 1464 -rw-r--r-- 1 kbrazil staff 76552 Aug 27 2019 graphite-crashing.png -rw-r--r--@ 1 kbrazil staff 476438 Aug 22 2019 graphite.png -rw-r--r--@ 1 kbrazil staff 90461 Aug 22 2019 monitoring.png -rw-r--r--@ 1 kbrazil staff 97333 Aug 18 2019 simple.png ./microsim/microsimclient: total 104 -rw-r--r--@ 1 kbrazil staff 939 Aug 27 2019 Dockerfile -rw-r--r-- 1 kbrazil staff 827 Oct 1 13:22 changelog.txt -rwxr-xr-x@ 1 kbrazil staff 263 Oct 1 12:09 dockerhub.sh -rw-r--r-- 1 kbrazil staff 18140 Oct 1 13:22 microsimclient.py -rw-r--r--@ 1 kbrazil staff 18215 Sep 30 16:42 microsimclientmac.py ./microsim/microsimserver: total 72 -rw-r--r-- 1 kbrazil staff 528 Aug 27 2019 Dockerfile -rw-r--r-- 1 kbrazil staff 380 Oct 1 13:22 changelog.txt -rwxr-xr-x@ 1 kbrazil staff 263 Oct 1 12:09 dockerhub.sh -rw-r--r-- 1 kbrazil staff 10538 Oct 1 13:22 microsimserver.py -rw-r--r--@ 1 kbrazil staff 10688 Sep 30 16:47 microsimservermac.py ./microtest: total 72 -rw-r--r--@ 1 kbrazil staff 229 Aug 29 2019 Dockerfile -rw-r--r--@ 1 kbrazil staff 1069 Aug 9 2019 LICENSE -rw-r--r--@ 1 kbrazil staff 1076 Aug 29 2019 README.md -rw-r--r--@ 1 kbrazil staff 146 Aug 29 2019 changelog.txt -rwxr-xr-x@ 1 kbrazil staff 233 Aug 29 2019 dockerhub.sh -rw-r--r--@ 1 kbrazil staff 591 Aug 29 2019 microtest-k8s.yaml -rw-r--r--@ 1 kbrazil staff 1274 Aug 29 2019 microtest.py -rwxr-xr-x@ 1 kbrazil staff 428 Aug 29 2019 microtestclient.sh -rw-r--r--@ 1 kbrazil staff 1343 Aug 29 2019 microtestmac.py ./trafficgen - work in progress: total 48 drwxrwxrwx 5 kbrazil staff 160 Aug 5 2019 html -rwxrwxrwx@ 1 kbrazil staff 3351 Aug 5 2019 trafficgen.sh -rwxrwxrwx@ 1 kbrazil staff 3996 Aug 5 2019 trafficgen.test.sh -rwxrwxrwx@ 1 kbrazil staff 5844 Aug 5 2019 trafficgen2.sh -rwxrwxrwx@ 1 kbrazil staff 4430 Aug 13 2019 trafficgen3.sh ./trafficgen - work in progress/html: total 136 -rwxrwxrwx@ 1 kbrazil staff 466 Dec 28 2016 passwd -rw-r--r--@ 1 kbrazil staff 62063 Aug 5 2019 troll-face.jpg ./utils: total 40 -rw-r--r--@ 1 kbrazil staff 1069 Aug 9 2019 LICENSE -rw-r--r-- 1 kbrazil staff 1464 Aug 14 2019 README.md -rw-r--r--@ 1 kbrazil staff 354 Aug 14 2019 resizeterm.sh -rw-r--r--@ 1 kbrazil staff 786 Aug 15 2019 vmserial.sh -rw-r--r-- 1 kbrazil staff 726 Aug 9 2019 wwwhostip.py jc-1.17.3/tests/fixtures/osx-10.14.6/ls-lR-newlines.json000066400000000000000000000026521415226333200223440ustar00rootroot00000000000000[{"filename": "lstest", "flags": "drwxr-xr-x", "links": 9, "owner": "kbrazil", "group": "staff", "size": 288, "date": "Feb 27 10:19"}, {"filename": "\n\n\n\nthis file starts with four newlines", "parent": "./lstest", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 0, "date": "Feb 27 10:19"}, {"filename": "\n\nthis file has\na combination\n\n\nof everything\n\n\n\n", "parent": "./lstest", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 0, "date": "Feb 27 10:19"}, {"filename": "\nthis file starts with one newline", "parent": "./lstest", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 0, "date": "Feb 27 10:19"}, {"filename": "a regular filename", "parent": "./lstest", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 0, "date": "Feb 27 10:19"}, {"filename": "this file\nhas\nsix\n\nnewlines\n\nwithin", "parent": "./lstest", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 0, "date": "Feb 27 10:19"}, {"filename": "this file has\n\n\n\nfour contiguous newlines inside", "parent": "./lstest", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 0, "date": "Feb 27 10:19"}, {"filename": "this file has\na newline inside", "parent": "./lstest", "flags": "-rw-r--r--", "links": 1, "owner": "kbrazil", "group": "staff", "size": 0, "date": "Feb 27 10:19"}] jc-1.17.3/tests/fixtures/osx-10.14.6/ls-lR-newlines.out000066400000000000000000000012201415226333200221700ustar00rootroot00000000000000total 0 drwxr-xr-x 9 kbrazil staff 288 Feb 27 10:19 lstest ./lstest: total 0 -rw-r--r-- 1 kbrazil staff 0 Feb 27 10:19 this file starts with four newlines -rw-r--r-- 1 kbrazil staff 0 Feb 27 10:19 this file has a combination of everything -rw-r--r-- 1 kbrazil staff 0 Feb 27 10:19 this file starts with one newline -rw-r--r-- 1 kbrazil staff 0 Feb 27 10:19 a regular filename -rw-r--r-- 1 kbrazil staff 0 Feb 27 10:19 this file has six newlines within -rw-r--r-- 1 kbrazil staff 0 Feb 27 10:19 this file has four contiguous newlines inside -rw-r--r-- 1 kbrazil staff 0 Feb 27 10:19 this file has a newline inside jc-1.17.3/tests/fixtures/osx-10.14.6/ls-newlines.json000066400000000000000000000007621415226333200217710ustar00rootroot00000000000000[{"filename": "this file starts with four newlines"}, {"filename": "this file has"}, {"filename": "a combination"}, {"filename": "of everything"}, {"filename": "this file starts with one newline"}, {"filename": "a regular filename"}, {"filename": "this file"}, {"filename": "has"}, {"filename": "six"}, {"filename": "newlines"}, {"filename": "within"}, {"filename": "this file has"}, {"filename": "four contiguous newlines inside"}, {"filename": "this file has"}, {"filename": "a newline inside"}] jc-1.17.3/tests/fixtures/osx-10.14.6/ls-newlines.out000066400000000000000000000004041415226333200216200ustar00rootroot00000000000000 this file starts with four newlines this file has a combination of everything this file starts with one newline a regular filename this file has six newlines within this file has four contiguous newlines inside this file has a newline inside jc-1.17.3/tests/fixtures/osx-10.14.6/ls.json000066400000000000000000000011111415226333200201340ustar00rootroot00000000000000[{"filename": "Applications"}, {"filename": "Library"}, {"filename": "Network"}, {"filename": "System"}, {"filename": "Users"}, {"filename": "Volumes"}, {"filename": "bin"}, {"filename": "cores"}, {"filename": "dev"}, {"filename": "etc"}, {"filename": "home"}, {"filename": "installer.failurerequests"}, {"filename": "net"}, {"filename": "obj_1_uhYWBO"}, {"filename": "obj_2_Q0HjZP"}, {"filename": "obj_3_OUvCmT"}, {"filename": "obj_4_q0hkvG"}, {"filename": "obj_5_qmI8ZT"}, {"filename": "private"}, {"filename": "sbin"}, {"filename": "tmp"}, {"filename": "usr"}, {"filename": "var"}] jc-1.17.3/tests/fixtures/osx-10.14.6/ls.out000077500000000000000000000003011415226333200177750ustar00rootroot00000000000000Applications Library Network System Users Volumes bin cores dev etc home installer.failurerequests net obj_1_uhYWBO obj_2_Q0HjZP obj_3_OUvCmT obj_4_q0hkvG obj_5_qmI8ZT private sbin tmp usr var jc-1.17.3/tests/fixtures/osx-10.14.6/md5.json000066400000000000000000000171241415226333200202160ustar00rootroot00000000000000[{"filename": "arp-a.out", "hash": "cd645f685a1e57ebf3bc4fd44a7f87b8"}, {"filename": "arp-v.out", "hash": "f4a00c29e88f61b90df90fb845560008"}, {"filename": "arp.out", "hash": "d6581a3e0cab3addca50055467478f62"}, {"filename": "blkid-ip-multi.out", "hash": "3350258648ce551b8c2bd34474626ddf"}, {"filename": "blkid-ip-udev-multi.out", "hash": "ea53b01490770a7c7ae3dd949c4cc331"}, {"filename": "blkid-ip-udev.out", "hash": "886b05fcfde5d3260597f33ff06133c5"}, {"filename": "blkid-sda2.out", "hash": "ce61777185a52166672aab2b47456f76"}, {"filename": "blkid.out", "hash": "f96852cc8becd6ab7ef896157b75f83f"}, {"filename": "crontab-u.out", "hash": "1971d74d4503c38c8cba9a20950c7142"}, {"filename": "crontab.out", "hash": "79d08ddb75d959e66a77a880711a589c"}, {"filename": "df-h.out", "hash": "fe0aca4e47216d2a6023afb83dbcacc1"}, {"filename": "df.out", "hash": "b03b56e8c8aa7ffcc2c7263aa452b9b8"}, {"filename": "dig-aaaa.out", "hash": "65cb08b0527f1aaa5fd9af528e01fa93"}, {"filename": "dig-axfr.out", "hash": "e14018715ac457a9c8221acc635423c0"}, {"filename": "dig-x.out", "hash": "f899dca2cdd00cf6857f076d2c146544"}, {"filename": "dig.out", "hash": "87c94ba4aedf74b58f7ad1dd1be39fd6"}, {"filename": "dmidecode.out", "hash": "716fd11c2ac00db109281f7110b8fb9d"}, {"filename": "du.out", "hash": "5e6effd8e33d5603112e11b70154b594"}, {"filename": "env.out", "hash": "f6649e65066f4f58ae322d590f60b21c"}, {"filename": "file.out", "hash": "b31670a7e4374d3733efe061efd990b6"}, {"filename": "free-h.out", "hash": "791202071bba2f4ec186465c1eb72cb2"}, {"filename": "free.out", "hash": "f60e300aeeec5e14f787fc64286ef881"}, {"filename": "fstab.out", "hash": "172d0b92d95b0add305e1633cd89d5e7"}, {"filename": "group.out", "hash": "7f9d72d4fbe5bb0d3dd03350362b7668"}, {"filename": "gshadow.out", "hash": "7f3fbc5f73010bbb3e0c119cf99f4767"}, {"filename": "history.out", "hash": "0dfd64d0491e5d4c5d31e6276da2ff2e"}, {"filename": "hosts.out", "hash": "09fc278fadbac8d2bbf48176eaaf036e"}, {"filename": "id.out", "hash": "4295be239a14ad77ef3253103de976d2"}, {"filename": "ifconfig.out", "hash": "2826744b3cd0e3c48771ce54e90dc39e"}, {"filename": "iptables-filter-line-numbers.out", "hash": "b8649a444af2bddee903f168a41ce46f"}, {"filename": "iptables-filter-nv.out", "hash": "336e547bce260445882bf7e23b518a57"}, {"filename": "iptables-filter.out", "hash": "e6f269961b7dc89fdf9b9890b6276188"}, {"filename": "iptables-mangle.out", "hash": "8c90c0e4b4d788eac17f3f46059eb925"}, {"filename": "iptables-nat.out", "hash": "63c9ad6dfae4aab5627f0aa315b280ad"}, {"filename": "iptables-raw.out", "hash": "84d1e56220d1cd71816b34e4f55708fc"}, {"filename": "jobs.out", "hash": "6d39d7fe623da58d78d68263f7f36c7d"}, {"filename": "last-w.out", "hash": "e52003b655197e16eb22b56631581315"}, {"filename": "last.out", "hash": "b6a8e0c710ffdff032363a60fbc6fe50"}, {"filename": "lastb.out", "hash": "d54fd268bbb2c0c8d01131fc4c375d6d"}, {"filename": "ls-R-newlines.out", "hash": "10155b2f641ba164492e43a2a0d1e9f6"}, {"filename": "ls-R.out", "hash": "d7122233dbad630ca41d43b887a25c25"}, {"filename": "ls-al.out", "hash": "1e2205fe2a9efbbb098121f5f1701a16"}, {"filename": "ls-alR.out", "hash": "29468973ce06788a31c1e7f896e7dc60"}, {"filename": "ls-alh.out", "hash": "a623550a81b18e4ff0491acd668d64ea"}, {"filename": "ls-glob.out", "hash": "1ca05ceb4ac0ea884824d97c2ac2f4ac"}, {"filename": "ls-l-newlines.out", "hash": "afc4e7099c12af1fd7149e79b5d6e13d"}, {"filename": "ls-lR-newlines.out", "hash": "18053c80357f38b46ac44810c3240936"}, {"filename": "ls-newlines.out", "hash": "725dc56e746fb8d50ef038ca90c99fbf"}, {"filename": "ls.out", "hash": "baf35fa8f15d14cdfb9bb80d0d55bb99"}, {"filename": "lsblk-allcols.out", "hash": "92d1f8f7590656a8e2fe0e42ee734c41"}, {"filename": "lsblk.out", "hash": "911234ff25f9db205dbe0504c601e37e"}, {"filename": "lsmod.out", "hash": "ebfe5f57aee09dcdb1f0b299fee596aa"}, {"filename": "lsof-sudo.out", "hash": "a275bb6d9f2528bb4b66a525b8a6d774"}, {"filename": "lsof.out", "hash": "6a72858a679e26efa5c66f54fe279295"}, {"filename": "md5sum.out", "hash": "7ea6da1b6f6baab8d9d952eb33378956"}, {"filename": "mount.out", "hash": "34159c041f57a7f2a86424cd2c49fed3"}, {"filename": "netstat-i.out", "hash": "bd982936895b6df38a7fdbe86df8bf5c"}, {"filename": "netstat-l.out", "hash": "8fbb9c077bdf66c17c112c8a11b1e733"}, {"filename": "netstat-p.out", "hash": "9f2db696db8338cee0c56efc253e1f6a"}, {"filename": "netstat-r.out", "hash": "ffcd2cc4ab8699f06f4705e7103b879f"}, {"filename": "netstat-rne.out", "hash": "3e119bbbd3f6dbb432d27dc29fec8f98"}, {"filename": "netstat-rnee.out", "hash": "27f2be6ede761a53ae573de06fd3d0d0"}, {"filename": "netstat-sudo-aeep.out", "hash": "a8f7a37a3261bcaef6c6a3620e49464b"}, {"filename": "netstat-sudo-lnp.out", "hash": "4e46e684a905957b8e6d04b1a1c244da"}, {"filename": "netstat.out", "hash": "928d2f5d9f27fd6645930c4178cce819"}, {"filename": "ntpq-p.out", "hash": "f5f84643e4240025307caab50f8990a9"}, {"filename": "ntpq-pn.out", "hash": "2b2fa305e490f388bd85684c0b26e2bf"}, {"filename": "passwd.out", "hash": "2c0199adf1b3e018c1945860f8372619"}, {"filename": "ping-hostname-O-D-p-s.out", "hash": "5b660694bf79aea1d52a392ff1092448"}, {"filename": "ping-hostname-O-p.out", "hash": "ab4ff8264db941a0662b5b731ab46af0"}, {"filename": "ping-hostname-O.out", "hash": "1d9af746b203413e0ffc211f3185a8e4"}, {"filename": "ping-ip-O-D.out", "hash": "9ab7407b788aa94b95fe49dbc131b2cb"}, {"filename": "ping-ip-O.out", "hash": "969a0243a76a3bf407e3a24082af8068"}, {"filename": "ping-ip-dup.out", "hash": "35204577e61b34a55df836f7b4920c7e"}, {"filename": "ping6-hostname-O-D-p-s.out", "hash": "be18cfed73d79091dcc665e5887903db"}, {"filename": "ping6-hostname-O-p.out", "hash": "bf28730f5973b3d37f9f42d80b6858b1"}, {"filename": "ping6-ip-O-D-p.out", "hash": "2665133538e2d4a0828204522227a5e6"}, {"filename": "ping6-ip-O-p.out", "hash": "bc03b9e491ecb25155e44082a8254f19"}, {"filename": "ping6-ip-dup.out", "hash": "ff5e5d69174a3240e87432827dd5e25d"}, {"filename": "pip-list.out", "hash": "99809973a445fb2801a3bb14b4bc03bc"}, {"filename": "pip-show.out", "hash": "691ef00b38abbdbd2e8cc1ea856b9d83"}, {"filename": "ps-axu.out", "hash": "e913baab1861defe5c69cc4bb6475779"}, {"filename": "ps-ef.out", "hash": "ed826e38db572628ca5a2d70435a6302"}, {"filename": "route-6-n.out", "hash": "7bc3917b8b7e8aabd1ea853dc03eb431"}, {"filename": "route-6.out", "hash": "f9691632cd72b4e956bba68d6d93a0fc"}, {"filename": "route-vn.out", "hash": "3e119bbbd3f6dbb432d27dc29fec8f98"}, {"filename": "route.out", "hash": "439adfcce99306d3419ec0fd7760f383"}, {"filename": "shadow.out", "hash": "9da686e5fb53fcb4c3934f7fc2859b5a"}, {"filename": "shasum.out", "hash": "dcecd94ddf63d7fd70c2636fd723289b"}, {"filename": "ss-sudo-a.out", "hash": "ee2ed1455bebac67298a72b83bdfb85e"}, {"filename": "stat.out", "hash": "ea9e5cc3f2ec9971b5c43203e17801ac"}, {"filename": "sysctl-a.out", "hash": "9db459aaf7689f8c66911b57b05a5b9f"}, {"filename": "systemctl-ls.out", "hash": "db3a53f9828d305ff294764ad6d3f860"}, {"filename": "systemctl-luf.out", "hash": "adf988243f7ff5a2f71a5868031e5ec3"}, {"filename": "systemctl.out", "hash": "446fb73dbc66db1246d044386c4e57d6"}, {"filename": "timedatectl.out", "hash": "47bd61915dab99979127fb3dc1b1e493"}, {"filename": "tracepath.out", "hash": "269d7cf5b938004f251dc7824e601198"}, {"filename": "tracepath6.out", "hash": "6569334c8e6b6b22018f22c6628f0797"}, {"filename": "traceroute.out", "hash": "2bf8b3c7bc6e175ebb21fd0102f6b2b9"}, {"filename": "uname-a.out", "hash": "38ed43650f1fa000d196b391aea1c96d"}, {"filename": "uptime.out", "hash": "b27aa536d962989c2639b9f022bd365f"}, {"filename": "w.out", "hash": "1a93af5b819721a085166825024a615e"}, {"filename": "who-a.out", "hash": "dceb435d3c30ad3fad4102cea4ed461a"}, {"filename": "who.out", "hash": "19e19c6f49753ff44e85f4a82539592d"}] jc-1.17.3/tests/fixtures/osx-10.14.6/md5.out000066400000000000000000000130631415226333200200520ustar00rootroot00000000000000MD5 (arp-a.out) = cd645f685a1e57ebf3bc4fd44a7f87b8 MD5 (arp-v.out) = f4a00c29e88f61b90df90fb845560008 MD5 (arp.out) = d6581a3e0cab3addca50055467478f62 MD5 (blkid-ip-multi.out) = 3350258648ce551b8c2bd34474626ddf MD5 (blkid-ip-udev-multi.out) = ea53b01490770a7c7ae3dd949c4cc331 MD5 (blkid-ip-udev.out) = 886b05fcfde5d3260597f33ff06133c5 MD5 (blkid-sda2.out) = ce61777185a52166672aab2b47456f76 MD5 (blkid.out) = f96852cc8becd6ab7ef896157b75f83f MD5 (crontab-u.out) = 1971d74d4503c38c8cba9a20950c7142 MD5 (crontab.out) = 79d08ddb75d959e66a77a880711a589c MD5 (df-h.out) = fe0aca4e47216d2a6023afb83dbcacc1 MD5 (df.out) = b03b56e8c8aa7ffcc2c7263aa452b9b8 MD5 (dig-aaaa.out) = 65cb08b0527f1aaa5fd9af528e01fa93 MD5 (dig-axfr.out) = e14018715ac457a9c8221acc635423c0 MD5 (dig-x.out) = f899dca2cdd00cf6857f076d2c146544 MD5 (dig.out) = 87c94ba4aedf74b58f7ad1dd1be39fd6 MD5 (dmidecode.out) = 716fd11c2ac00db109281f7110b8fb9d MD5 (du.out) = 5e6effd8e33d5603112e11b70154b594 MD5 (env.out) = f6649e65066f4f58ae322d590f60b21c MD5 (file.out) = b31670a7e4374d3733efe061efd990b6 MD5 (free-h.out) = 791202071bba2f4ec186465c1eb72cb2 MD5 (free.out) = f60e300aeeec5e14f787fc64286ef881 MD5 (fstab.out) = 172d0b92d95b0add305e1633cd89d5e7 MD5 (group.out) = 7f9d72d4fbe5bb0d3dd03350362b7668 MD5 (gshadow.out) = 7f3fbc5f73010bbb3e0c119cf99f4767 MD5 (history.out) = 0dfd64d0491e5d4c5d31e6276da2ff2e MD5 (hosts.out) = 09fc278fadbac8d2bbf48176eaaf036e MD5 (id.out) = 4295be239a14ad77ef3253103de976d2 MD5 (ifconfig.out) = 2826744b3cd0e3c48771ce54e90dc39e MD5 (iptables-filter-line-numbers.out) = b8649a444af2bddee903f168a41ce46f MD5 (iptables-filter-nv.out) = 336e547bce260445882bf7e23b518a57 MD5 (iptables-filter.out) = e6f269961b7dc89fdf9b9890b6276188 MD5 (iptables-mangle.out) = 8c90c0e4b4d788eac17f3f46059eb925 MD5 (iptables-nat.out) = 63c9ad6dfae4aab5627f0aa315b280ad MD5 (iptables-raw.out) = 84d1e56220d1cd71816b34e4f55708fc MD5 (jobs.out) = 6d39d7fe623da58d78d68263f7f36c7d MD5 (last-w.out) = e52003b655197e16eb22b56631581315 MD5 (last.out) = b6a8e0c710ffdff032363a60fbc6fe50 MD5 (lastb.out) = d54fd268bbb2c0c8d01131fc4c375d6d MD5 (ls-R-newlines.out) = 10155b2f641ba164492e43a2a0d1e9f6 MD5 (ls-R.out) = d7122233dbad630ca41d43b887a25c25 MD5 (ls-al.out) = 1e2205fe2a9efbbb098121f5f1701a16 MD5 (ls-alR.out) = 29468973ce06788a31c1e7f896e7dc60 MD5 (ls-alh.out) = a623550a81b18e4ff0491acd668d64ea MD5 (ls-glob.out) = 1ca05ceb4ac0ea884824d97c2ac2f4ac MD5 (ls-l-newlines.out) = afc4e7099c12af1fd7149e79b5d6e13d MD5 (ls-lR-newlines.out) = 18053c80357f38b46ac44810c3240936 MD5 (ls-newlines.out) = 725dc56e746fb8d50ef038ca90c99fbf MD5 (ls.out) = baf35fa8f15d14cdfb9bb80d0d55bb99 MD5 (lsblk-allcols.out) = 92d1f8f7590656a8e2fe0e42ee734c41 MD5 (lsblk.out) = 911234ff25f9db205dbe0504c601e37e MD5 (lsmod.out) = ebfe5f57aee09dcdb1f0b299fee596aa MD5 (lsof-sudo.out) = a275bb6d9f2528bb4b66a525b8a6d774 MD5 (lsof.out) = 6a72858a679e26efa5c66f54fe279295 MD5 (md5sum.out) = 7ea6da1b6f6baab8d9d952eb33378956 MD5 (mount.out) = 34159c041f57a7f2a86424cd2c49fed3 MD5 (netstat-i.out) = bd982936895b6df38a7fdbe86df8bf5c MD5 (netstat-l.out) = 8fbb9c077bdf66c17c112c8a11b1e733 MD5 (netstat-p.out) = 9f2db696db8338cee0c56efc253e1f6a MD5 (netstat-r.out) = ffcd2cc4ab8699f06f4705e7103b879f MD5 (netstat-rne.out) = 3e119bbbd3f6dbb432d27dc29fec8f98 MD5 (netstat-rnee.out) = 27f2be6ede761a53ae573de06fd3d0d0 MD5 (netstat-sudo-aeep.out) = a8f7a37a3261bcaef6c6a3620e49464b MD5 (netstat-sudo-lnp.out) = 4e46e684a905957b8e6d04b1a1c244da MD5 (netstat.out) = 928d2f5d9f27fd6645930c4178cce819 MD5 (ntpq-p.out) = f5f84643e4240025307caab50f8990a9 MD5 (ntpq-pn.out) = 2b2fa305e490f388bd85684c0b26e2bf MD5 (passwd.out) = 2c0199adf1b3e018c1945860f8372619 MD5 (ping-hostname-O-D-p-s.out) = 5b660694bf79aea1d52a392ff1092448 MD5 (ping-hostname-O-p.out) = ab4ff8264db941a0662b5b731ab46af0 MD5 (ping-hostname-O.out) = 1d9af746b203413e0ffc211f3185a8e4 MD5 (ping-ip-O-D.out) = 9ab7407b788aa94b95fe49dbc131b2cb MD5 (ping-ip-O.out) = 969a0243a76a3bf407e3a24082af8068 MD5 (ping-ip-dup.out) = 35204577e61b34a55df836f7b4920c7e MD5 (ping6-hostname-O-D-p-s.out) = be18cfed73d79091dcc665e5887903db MD5 (ping6-hostname-O-p.out) = bf28730f5973b3d37f9f42d80b6858b1 MD5 (ping6-ip-O-D-p.out) = 2665133538e2d4a0828204522227a5e6 MD5 (ping6-ip-O-p.out) = bc03b9e491ecb25155e44082a8254f19 MD5 (ping6-ip-dup.out) = ff5e5d69174a3240e87432827dd5e25d MD5 (pip-list.out) = 99809973a445fb2801a3bb14b4bc03bc MD5 (pip-show.out) = 691ef00b38abbdbd2e8cc1ea856b9d83 MD5 (ps-axu.out) = e913baab1861defe5c69cc4bb6475779 MD5 (ps-ef.out) = ed826e38db572628ca5a2d70435a6302 MD5 (route-6-n.out) = 7bc3917b8b7e8aabd1ea853dc03eb431 MD5 (route-6.out) = f9691632cd72b4e956bba68d6d93a0fc MD5 (route-vn.out) = 3e119bbbd3f6dbb432d27dc29fec8f98 MD5 (route.out) = 439adfcce99306d3419ec0fd7760f383 MD5 (shadow.out) = 9da686e5fb53fcb4c3934f7fc2859b5a MD5 (shasum.out) = dcecd94ddf63d7fd70c2636fd723289b MD5 (ss-sudo-a.out) = ee2ed1455bebac67298a72b83bdfb85e MD5 (stat.out) = ea9e5cc3f2ec9971b5c43203e17801ac MD5 (sysctl-a.out) = 9db459aaf7689f8c66911b57b05a5b9f MD5 (systemctl-ls.out) = db3a53f9828d305ff294764ad6d3f860 MD5 (systemctl-luf.out) = adf988243f7ff5a2f71a5868031e5ec3 MD5 (systemctl.out) = 446fb73dbc66db1246d044386c4e57d6 MD5 (timedatectl.out) = 47bd61915dab99979127fb3dc1b1e493 MD5 (tracepath.out) = 269d7cf5b938004f251dc7824e601198 MD5 (tracepath6.out) = 6569334c8e6b6b22018f22c6628f0797 MD5 (traceroute.out) = 2bf8b3c7bc6e175ebb21fd0102f6b2b9 MD5 (uname-a.out) = 38ed43650f1fa000d196b391aea1c96d MD5 (uptime.out) = b27aa536d962989c2639b9f022bd365f MD5 (w.out) = 1a93af5b819721a085166825024a615e MD5 (who-a.out) = dceb435d3c30ad3fad4102cea4ed461a MD5 (who.out) = 19e19c6f49753ff44e85f4a82539592d jc-1.17.3/tests/fixtures/osx-10.14.6/mount.json000066400000000000000000000012401415226333200206630ustar00rootroot00000000000000[{"filesystem": "/dev/disk1s1", "mount_point": "/", "options": ["apfs", "local", "journaled"]}, {"filesystem": "devfs", "mount_point": "/dev", "options": ["devfs", "local", "nobrowse"]}, {"filesystem": "/dev/disk1s4", "mount_point": "/private/var/vm", "options": ["apfs", "local", "noexec", "journaled", "noatime", "nobrowse"]}, {"filesystem": "map -hosts", "mount_point": "/net", "options": ["autofs", "nosuid", "automounted", "nobrowse"]}, {"filesystem": "map auto_home", "mount_point": "/home", "options": ["autofs", "automounted", "nobrowse"]}, {"filesystem": "/dev/disk1s3", "mount_point": "/Volumes/Recovery", "options": ["apfs", "local", "journaled", "nobrowse"]}] jc-1.17.3/tests/fixtures/osx-10.14.6/mount.out000066400000000000000000000005351415226333200205270ustar00rootroot00000000000000/dev/disk1s1 on / (apfs, local, journaled) devfs on /dev (devfs, local, nobrowse) /dev/disk1s4 on /private/var/vm (apfs, local, noexec, journaled, noatime, nobrowse) map -hosts on /net (autofs, nosuid, automounted, nobrowse) map auto_home on /home (autofs, automounted, nobrowse) /dev/disk1s3 on /Volumes/Recovery (apfs, local, journaled, nobrowse) jc-1.17.3/tests/fixtures/osx-10.14.6/mount2.json000066400000000000000000000015111415226333200207460ustar00rootroot00000000000000[{"filesystem": "/dev/disk1s1", "mount_point": "/", "options": ["apfs", "local", "journaled"]}, {"filesystem": "devfs", "mount_point": "/dev", "options": ["devfs", "local", "nobrowse"]}, {"filesystem": "/dev/disk1s4", "mount_point": "/private/var/vm", "options": ["apfs", "local", "noexec", "journaled", "noatime", "nobrowse"]}, {"filesystem": "map -hosts", "mount_point": "/net", "options": ["autofs", "nosuid", "automounted", "nobrowse"]}, {"filesystem": "map auto_home", "mount_point": "/home", "options": ["autofs", "automounted", "nobrowse"]}, {"filesystem": "//brazil@MyCloudEX2Ultra._afpovertcp._tcp.local/brazil", "mount_point": "/Volumes/brazil", "options": ["afpfs", "nodev", "nosuid", "mounted by kelly"]}, {"filesystem": "/dev/disk1s3", "mount_point": "/Volumes/Recovery", "options": ["apfs", "local", "journaled", "nobrowse"]}] jc-1.17.3/tests/fixtures/osx-10.14.6/mount2.out000077500000000000000000000007201415226333200206100ustar00rootroot00000000000000/dev/disk1s1 on / (apfs, local, journaled) devfs on /dev (devfs, local, nobrowse) /dev/disk1s4 on /private/var/vm (apfs, local, noexec, journaled, noatime, nobrowse) map -hosts on /net (autofs, nosuid, automounted, nobrowse) map auto_home on /home (autofs, automounted, nobrowse) //brazil@MyCloudEX2Ultra._afpovertcp._tcp.local/brazil on /Volumes/brazil (afpfs, nodev, nosuid, mounted by kelly) /dev/disk1s3 on /Volumes/Recovery (apfs, local, journaled, nobrowse) jc-1.17.3/tests/fixtures/osx-10.14.6/netstat-Abn.json000066400000000000000000004470021415226333200217130ustar00rootroot00000000000000[{"socket": "7fb03cb94d505aed", "flowhash": "cedd0cbf", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "140.82.113.26", "state": "ESTABLISHED", "rxbytes": 4958, "txbytes": 3996, "kind": "network", "local_port": "5486", "foreign_port": "443", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5486, "foreign_port_num": 443}, {"socket": "7fb03cb94d692475", "flowhash": "1c9f9fcd", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "208.91.113.36", "state": "ESTABLISHED", "rxbytes": 39554, "txbytes": 9531, "kind": "network", "local_port": "5480", "foreign_port": "443", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5480, "foreign_port_num": 443}, {"socket": "7fb03cb94b25de55", "flowhash": "dbe59bf8", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "140.82.112.26", "state": "ESTABLISHED", "rxbytes": 6022, "txbytes": 6313, "kind": "network", "local_port": "5478", "foreign_port": "443", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5478, "foreign_port_num": 443}, {"socket": "7fb03cb95fad8165", "flowhash": "6a3d6e4", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.201", "state": "ESTABLISHED", "rxbytes": 1910, "txbytes": 2803, "kind": "network", "local_port": "5450", "foreign_port": "4923", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5450, "foreign_port_num": 4923}, {"socket": "7fb03cb946c1cbcd", "flowhash": "3c023c0", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "2600:1700:bab0:d", "foreign_address": "2607:f8b0:4003:c", "state": "ESTABLISHED", "rxbytes": 167633, "txbytes": 41617, "kind": "network", "local_port": "5", "foreign_port": "9", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 9}, {"socket": "7fb03cb95fad77dd", "flowhash": "3f163cd2", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.64", "state": "ESTABLISHED", "rxbytes": 2592, "txbytes": 3096, "kind": "network", "local_port": "5450", "foreign_port": "53380", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5450, "foreign_port_num": 53380}, {"socket": "7fb03cb94221360d", "flowhash": "cc0e0c2a", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "2600:1700:bab0:d", "foreign_address": "2603:1030:b00::e", "state": "ESTABLISHED", "rxbytes": 15646, "txbytes": 15752, "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb937c20e4d", "flowhash": "8e998322", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "2600:1700:bab0:d", "foreign_address": "2620:1ec:21::14", "state": "ESTABLISHED", "rxbytes": 46800, "txbytes": 45200, "kind": "network", "local_port": "5", "foreign_port": "44", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 44}, {"socket": "7fb03cb93c75d475", "flowhash": "d53fb648", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.236.87.93", "state": "ESTABLISHED", "rxbytes": 102916, "txbytes": 305797, "kind": "network", "local_port": "5452", "foreign_port": "8081", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5452, "foreign_port_num": 8081}, {"socket": "7fb03cb937c2140d", "flowhash": "e013f438", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "2600:1700:bab0:d", "foreign_address": "2607:f8b0:4000:8", "state": "ESTABLISHED", "rxbytes": 91675, "txbytes": 183353, "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb94b718aed", "flowhash": "bcd5aa6f", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.88", "state": "ESTABLISHED", "rxbytes": 1439, "txbytes": 2749, "kind": "network", "local_port": "5452", "foreign_port": "49153", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5452, "foreign_port_num": 49153}, {"socket": "7fb03cb94b716e55", "flowhash": "30944ff3", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.89", "state": "ESTABLISHED", "rxbytes": 1412, "txbytes": 2852, "kind": "network", "local_port": "5451", "foreign_port": "49152", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5451, "foreign_port_num": 49152}, {"socket": "7fb03cb93c75b7dd", "flowhash": "d54ab36f", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.72", "state": "ESTABLISHED", "rxbytes": 1098, "txbytes": 3946, "kind": "network", "local_port": "5450", "foreign_port": "55617", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5450, "foreign_port_num": 55617}, {"socket": "7fb03cb93b2d6e55", "flowhash": "d11ddd76", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "52.114.148.56", "state": "ESTABLISHED", "rxbytes": 54904, "txbytes": 37123, "kind": "network", "local_port": "5451", "foreign_port": "443", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5451, "foreign_port_num": 443}, {"socket": "7fb03cb94a8f8d0d", "flowhash": "88c31bcb", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 929, "txbytes": 1397, "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb94a8f988d", "flowhash": "a10400b8", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 56095, "txbytes": 13875, "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb948e8f88d", "flowhash": "cd67a7b", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "2600:1700:bab0:d", "foreign_address": "2607:f8b0:4003:c", "state": "ESTABLISHED", "rxbytes": 5331, "txbytes": 7172, "kind": "network", "local_port": "5", "foreign_port": "5", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 5}, {"socket": "7fb03cb94bcb6475", "flowhash": "4ca24b6e", "proto": "tcp4", "recv_q": 31, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.236.87.93", "state": "CLOSE_WAIT", "rxbytes": 1424, "txbytes": 2595, "kind": "network", "local_port": "5442", "foreign_port": "8081", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5442, "foreign_port_num": 8081}, {"socket": "7fb03cb94b4f518d", "flowhash": "25c58fec", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 1326, "txbytes": 1023, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94bcb47dd", "flowhash": "b164479", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "127.0.0.1", "state": "ESTABLISHED", "rxbytes": 3182238, "txbytes": 0, "kind": "network", "local_port": "53755", "foreign_port": "53763", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 53755, "foreign_port_num": 53763}, {"socket": "7fb03cb94b433e55", "flowhash": "f28b9248", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "127.0.0.1", "state": "ESTABLISHED", "rxbytes": 51430, "txbytes": 0, "kind": "network", "local_port": "53763", "foreign_port": "53755", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 53763, "foreign_port_num": 53755}, {"socket": "7fb03cb94b719475", "flowhash": "316c063a", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "104.155.21.255", "state": "ESTABLISHED", "rxbytes": 73216, "txbytes": 1004723, "kind": "network", "local_port": "5359", "foreign_port": "555", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5359, "foreign_port_num": 555}, {"socket": "7fb03cb946c1ba8d", "flowhash": "d32bc928", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 693, "txbytes": 807, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94c066aed", "flowhash": "fb73c2ca", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "17.57.144.20", "state": "ESTABLISHED", "rxbytes": 27110, "txbytes": 79402, "kind": "network", "local_port": "5263", "foreign_port": "5223", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5263, "foreign_port_num": 5223}, {"socket": "7fb03cb94d2ebaed", "flowhash": "22dc0e42", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.80", "state": "ESTABLISHED", "rxbytes": 8433051, "txbytes": 3259730, "kind": "network", "local_port": "5179", "foreign_port": "548", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5179, "foreign_port_num": 548}, {"socket": "7fb03cb94a8f818d", "flowhash": "5e12e220", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 3768, "txbytes": 1815, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94a8f704d", "flowhash": "16ca6e94", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 684, "txbytes": 3761, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb942212a8d", "flowhash": "da4b1f7d", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 1470, "txbytes": 1167, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb948e8dbcd", "flowhash": "4aeb1af1", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 693, "txbytes": 807, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94a8f92cd", "flowhash": "6859cfec", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 765, "txbytes": 663, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb946c1e2cd", "flowhash": "248b598b", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 693, "txbytes": 807, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb942213bcd", "flowhash": "56762cbf", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 693, "txbytes": 807, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb948e8d60d", "flowhash": "d29e9efa", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 3668, "txbytes": 1997, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb946c1d18d", "flowhash": "60f3fa15", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 1053, "txbytes": 1167, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94b4347dd", "flowhash": "a1f7c428", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.235.123.194", "state": "CLOSE_WAIT", "rxbytes": 52, "txbytes": 1084, "kind": "network", "local_port": "5164", "foreign_port": "555", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5164, "foreign_port_num": 555}, {"socket": "7fb03cb948047aed", "flowhash": "ceac8539", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.235.123.194", "state": "CLOSE_WAIT", "rxbytes": 52, "txbytes": 1136, "kind": "network", "local_port": "5164", "foreign_port": "555", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5164, "foreign_port_num": 555}, {"socket": "7fb03cb963503e55", "flowhash": "d98dfd14", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.235.123.194", "state": "CLOSE_WAIT", "rxbytes": 52, "txbytes": 1200, "kind": "network", "local_port": "5164", "foreign_port": "555", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5164, "foreign_port_num": 555}, {"socket": "7fb03cb937c202cd", "flowhash": "2e36177f", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 893, "txbytes": 26581, "kind": "network", "local_port": "6", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 6, "foreign_port_num": 4}, {"socket": "7fb03cb946c1c60d", "flowhash": "aaabe009", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 985405, "txbytes": 1688994, "kind": "network", "local_port": "5", "foreign_port": "5", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 5}, {"socket": "7fb03cb948536475", "flowhash": "dc1e01a0", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "96.45.36.31", "state": "ESTABLISHED", "rxbytes": 3654, "txbytes": 3229, "kind": "network", "local_port": "5879", "foreign_port": "443", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5879, "foreign_port_num": 443}, {"socket": "7fb03cb94b38e7dd", "flowhash": "e3b8b675", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "127.0.0.1", "state": "CLOSE_WAIT", "rxbytes": 29513, "txbytes": 0, "kind": "network", "local_port": "9592", "foreign_port": "58704", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 9592, "foreign_port_num": 58704}, {"socket": "7fb03cb94d691165", "flowhash": "7eee3b1", "proto": "tcp4", "recv_q": 31, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.236.87.93", "state": "CLOSE_WAIT", "rxbytes": 1218, "txbytes": 6437, "kind": "network", "local_port": "5346", "foreign_port": "8081", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5346, "foreign_port_num": 8081}, {"socket": "7fb03cb948e8f2cd", "flowhash": "e7486da9", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 893, "txbytes": 111664, "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb94221304d", "flowhash": "3e982c00", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 965, "txbytes": 99241, "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb937c2088d", "flowhash": "30000ae7", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 893, "txbytes": 125491, "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb94b4f4bcd", "flowhash": "57e076f4", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 889, "txbytes": 128896, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94221474d", "flowhash": "6465b356", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 14206, "txbytes": 134302, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94a8f6a8d", "flowhash": "bed25b95", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 1909, "txbytes": 120628, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb937c1fd0d", "flowhash": "33613be8", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "rxbytes": 684, "txbytes": 259247, "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb93c70600d", "flowhash": "777662f1", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 48, "txbytes": 76, "kind": "network", "local_port": "58043", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 58043}, {"socket": "7fb03cb93c709f4d", "flowhash": "b64a4fe1", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 98, "txbytes": 138, "kind": "network", "local_port": "63678", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 63678}, {"socket": "7fb03cb93c708c0d", "flowhash": "48ba21c8", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 48, "txbytes": 76, "kind": "network", "local_port": "60774", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 60774}, {"socket": "7fb03cb93c70760d", "flowhash": "7f0afb2c", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 98, "txbytes": 138, "kind": "network", "local_port": "51411", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 51411}, {"socket": "7fb03cb93c707b8d", "flowhash": "7c49f0f1", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 48, "txbytes": 76, "kind": "network", "local_port": "57119", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 57119}, {"socket": "7fb03cb93c70734d", "flowhash": "c750f7f0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 98, "txbytes": 138, "kind": "network", "local_port": "61217", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 61217}, {"socket": "7fb03cb93c70810d", "flowhash": "2308a9b6", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 43700, "txbytes": 46473, "kind": "network", "local_port": "56091", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 56091}, {"socket": "7fb03cb93c707e4d", "flowhash": "4b2ff4b3", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 45885, "txbytes": 44260, "kind": "network", "local_port": "58807", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 58807}, {"socket": "7fb03cb9371e2d4d", "flowhash": "8d16cd6b", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 6138, "kind": "network", "local_port": "54338", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 54338}, {"socket": "7fb03cb93721310d", "flowhash": "f4140344", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 512, "kind": "network", "local_port": "3722", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 3722}, {"socket": "7fb03cb93d5b800d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 2554929, "txbytes": 0, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5353}, {"socket": "7fb03cb93c7ba60d", "flowhash": "7fd9393b", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 38123, "txbytes": 35312, "kind": "network", "local_port": "61224", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 61224}, {"socket": "7fb03cb93c7b8a8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb939b0470d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c706dcd", "flowhash": "f725c38f", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 1253564, "kind": "network", "local_port": "63995", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 63995}, {"socket": "7fb03cb93c708ecd", "flowhash": "5ed0c674", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 1253656, "kind": "network", "local_port": "5063", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5063}, {"socket": "7fb03cb93c70868d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 496, "txbytes": 0, "kind": "network", "local_port": "33354", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 33354}, {"socket": "7fb03cb93c70658d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 1253656, "txbytes": 0, "kind": "network", "local_port": "33355", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 33355}, {"socket": "7fb03cb934b578cd", "flowhash": "530d4d40", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 29478, "txbytes": 27730, "kind": "network", "local_port": "61982", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 61982}, {"socket": "7fb03cb934b59c8d", "flowhash": "91b8382", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 21216, "txbytes": 15688, "kind": "network", "local_port": "61982", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 61982}, {"socket": "7fb03cb934b56dcd", "flowhash": "ca5be4ea", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 28968, "txbytes": 27260, "kind": "network", "local_port": "52378", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 52378}, {"socket": "7fb03cb934b5760d", "flowhash": "3462e1b2", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 21726, "txbytes": 16058, "kind": "network", "local_port": "52378", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 52378}, {"socket": "7fb03cb934b5944d", "flowhash": "58e06369", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 28684, "txbytes": 27063, "kind": "network", "local_port": "53910", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 53910}, {"socket": "7fb03cb934b5a20d", "flowhash": "e03584", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 21513, "txbytes": 15841, "kind": "network", "local_port": "53910", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 53910}, {"socket": "7fb03cb934b55d4d", "flowhash": "e91dd2ad", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 32262, "txbytes": 30952, "kind": "network", "local_port": "57674", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 57674}, {"socket": "7fb03cb934b5970d", "flowhash": "da8119f1", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 24510, "txbytes": 18834, "kind": "network", "local_port": "57674", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 57674}, {"socket": "7fb03cb934b599cd", "flowhash": "3504cd68", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 30666, "txbytes": 29150, "kind": "network", "local_port": "62448", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 62448}, {"socket": "7fb03cb934b557cd", "flowhash": "941a5612", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 25992, "txbytes": 19952, "kind": "network", "local_port": "62448", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 62448}, {"socket": "7fb03cb934b58c0d", "flowhash": "c487a471", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 29380, "txbytes": 28035, "kind": "network", "local_port": "55681", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 55681}, {"socket": "7fb03cb934b5600d", "flowhash": "c4b0913", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 26781, "txbytes": 20570, "kind": "network", "local_port": "55681", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 55681}, {"socket": "7fb03cb93716444d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b6df00d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c8bbd4d", "flowhash": "47d61919", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 3818017, "txbytes": 26658, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5353}, {"socket": "7fb03cb93c8bc00d", "flowhash": "8148de2d", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 3811093, "txbytes": 26658, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5353}, {"socket": "7fb03cb93c8bc2cd", "flowhash": "41ad85a1", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 22458, "txbytes": 29658, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 5353}, {"socket": "7fb03cb93c8bfc8d", "flowhash": "3d59980f", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 29658, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 5353}, {"socket": "7fb03cb93c8bd34d", "flowhash": "73cc988e", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 55268610, "txbytes": 29658, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 5353}, {"socket": "7fb03cb93c8bf44d", "flowhash": "dee9266c", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 162940592, "txbytes": 26658, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5353}, {"socket": "7fb03cb93c8bdb8d", "flowhash": "0", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 5353}, {"socket": "7fb03cb937211dcd", "flowhash": "b4871709", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 1251903, "txbytes": 2351183, "kind": "network", "local_port": "51226", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 51226}, {"socket": "7fb03cb9372154cd", "flowhash": "21b31d88", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "*", "state": null, "rxbytes": 733104, "txbytes": 1160292, "kind": "network", "local_port": "61491", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 61491}, {"socket": "7fb03cb93b74a3cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "6096", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 6096}, {"socket": "7fb03cb93c7bb10d", "flowhash": "f1ac8ec5", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 30600076, "txbytes": 18446784, "kind": "network", "local_port": "58997", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 58997}, {"socket": "7fb03cb93b70ea8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b7129cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b71270d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b711c0d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b72d70d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b72bb8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b747a8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93bc90a8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93bc9520d", "flowhash": "97a44721", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 65984, "kind": "network", "local_port": "52551", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 52551}, {"socket": "7fb03cb93bc90d4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93bc9100d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93bc94f4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93bc9208d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c7bcc8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c8beecd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c8be10d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c8be3cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c8be68d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93d5b7a8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c70894d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93721444d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937160a8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937160d4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93716208d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c70a20d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c70944d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c70684d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb939b049cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb9371654cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93716100d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93716520d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937164f4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb9371628cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937162b8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937162e4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb9371e32cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb934b56b0d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93721394d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937cbcd4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937cbf10d", "flowhash": "0", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6"}, {"socket": "7fb03cb93721184d", "flowhash": "b180dc9e", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 57357377, "txbytes": 15237561, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 5353}, {"socket": "7fb03cb9372149cd", "flowhash": "6fa9aaf7", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 174466390, "txbytes": 26656837, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5353}, {"socket": "7fb03cb934b583cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 0, "txbytes": 0, "kind": "network", "local_port": "9595", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 9595}, {"socket": "7fb03cb934b5810d", "flowhash": "5b0b6f0f", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 692460, "txbytes": 126560, "kind": "network", "local_port": "138", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 138}, {"socket": "7fb03cb934b57e4d", "flowhash": "dd966d84", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "rxbytes": 3666438, "txbytes": 3028491, "kind": "network", "local_port": "137", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 137}, {"socket": "7fb03cb939ad73cd", "flowhash": "0", "proto": "icm4", "recv_q": 8136, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": "1325516", "rxbytes": 0, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "icmp", "network_protocol": "ipv4"}, {"address": "7fb03cb95130f135", "type": "stream", "recv_q": 1, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130efa5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130efa5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130f135", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130eaf5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130e70d", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb95130e70d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130eaf5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130da8d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130f38d", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb95130f38d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130da8d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e89d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130cd45", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130cd45", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130e89d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d9c5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130de75", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb95130de75", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130d9c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e0cd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb95130cc7d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb94d74825d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d748965", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d748965", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d74825d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746a25", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d7471f5", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7471f5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d746a25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747e75", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d74695d", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d74695d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d747e75", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747515", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d747ce5", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d747ce5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d747515", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748e15", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d748bbd", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d748bbd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d748e15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38835", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d389c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d389c5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d38835", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b2c5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d396a5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d396a5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3b2c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b5e5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3a645", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3a645", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3b5e5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39835", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3ac85", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3ac85", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d39835", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3a89d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3b38d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3b38d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3a89d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63aed5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63cfa5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63cfa5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63aed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63ae0d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63b5dd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63b5dd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63ae0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63cedd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63b44d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63b44d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63cedd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63d38d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63aa25", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63aa25", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63d38d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130c95d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130d1f5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb95130d1f5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130c95d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38a25", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3a195", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3a195", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d38a25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3aa2d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f5e5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130e4b5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb95130e4b5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130f5e5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d74906d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d746e0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746e0d", "type": "stream", "recv_q": 8, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d74906d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39325", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d385dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d385dd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d39325", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3876d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d3a455", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3a455", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d3876d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37a25", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d386a5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d386a5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d37a25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39195", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d38f3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38f3d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d39195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37895", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d37ed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37ed5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d37895", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d390cd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d3a38d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3a38d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d390cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b455", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3895d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3895d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3b455", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d392bd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d38e0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38e0d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d392bd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b135", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d38ed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38ed5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3b135", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3976d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3912d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3912d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3976d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d391f5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d39385", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39385", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d391f5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38c7d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb94b87f5d5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/folders/vr/4gybj0rs1_51r0sy8d5qv3jm0000gn/T/.com.microsoft.teams.okHfqO/SS", "kind": "socket"}, {"address": "7fb03cb945d39c1d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d39e75", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d39e75", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d39c1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63ac7d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63caf5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63caf5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63ac7d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d515", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130ce0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ce0d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130d515", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130caed", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130ca25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ca25", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130caed", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d385", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130f06d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f06d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130d385", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130dc1d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130e7d5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e7d5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130dc1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ced5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130f51d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f51d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130ced5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130df3d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130c7cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130c7cd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130df3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e195", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130e325", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e325", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130e195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f1fd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130ea2d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ea2d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130f1fd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d2bd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130c895", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130c895", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130d2bd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130cbb5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb937de855d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Library/Application Support/LANDesk/tmp/socket/sys", "kind": "socket"}, {"address": "7fb03cb95130d065", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130d5dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d5dd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130d065", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ec85", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130ee15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ee15", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130ec85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d76d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130d12d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d12d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130d76d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ed4d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130eedd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130eedd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130ed4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e965", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130e3ed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb95130e3ed", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130e965", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3925d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d39c85", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d39c85", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d3925d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d381f5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b005e5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afd895", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb935afd895", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935b005e5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746ed5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d748195", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d748195", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d746ed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63ba8d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63d5e5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63d5e5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63ba8d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63cc85", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63a895", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63a895", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63cc85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63c965", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63d51d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63d51d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63c965", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747f3d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d7480cd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d7480cd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d747f3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63abb5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63c7d5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c7d5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63abb5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130dce5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130e005", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/filesystem-event.sock", "kind": "socket"}, {"address": "7fb03cb95130e005", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130dce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b001fd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afdaed", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb935afdaed", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935b001fd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b0038d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9350ead1d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb935b002c5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935aff0cd", "refs": "0", "nextref": "0", "addr": "vpnkit.data.sock", "kind": "socket"}, {"address": "7fb03cb935aff0cd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935b002c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b00135", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afdbb5", "refs": "0", "nextref": "0", "addr": "backend-for-guest.sock", "kind": "socket"}, {"address": "7fb03cb935afdbb5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935b00135", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935affaf5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935affd4d", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/lifecycle-server.sock", "kind": "socket"}, {"address": "7fb03cb935affd4d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935affaf5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935affa2d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935affe15", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935affe15", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935affa2d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b0006d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afffa5", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935afffa5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935b0006d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935affedd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afdc7d", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935afdc7d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935affedd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afdd45", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935affc85", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935affc85", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afdd45", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afde0d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935affbbd", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935affbbd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afde0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afded5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935aff965", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935aff965", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afded5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff89d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935aff7d5", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935aff7d5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935aff89d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afdf9d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935aff70d", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935aff70d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afdf9d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff645", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935aff57d", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935aff57d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935aff645", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afe065", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935aff4b5", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935aff4b5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afe065", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff3ed", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb935cd2d9d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/filesystem-event.sock", "kind": "socket"}, {"address": "7fb03cb935aff325", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb93609fca5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/lifecycle-server.sock", "kind": "socket"}, {"address": "7fb03cb935aff25d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb94cddc36d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/diagnosticd.sock", "kind": "socket"}, {"address": "7fb03cb935afe12d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afe1f5", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.00001003", "kind": "socket"}, {"address": "7fb03cb935afe1f5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afe12d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff195", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afe515", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/memlogdq.sock", "kind": "socket"}, {"address": "7fb03cb935afe515", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935aff195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afe44d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9350eac25", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/memlogdq.sock", "kind": "socket"}, {"address": "7fb03cb935afe8fd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afedad", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.000007cf", "kind": "socket"}, {"address": "7fb03cb935afedad", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afe8fd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff005", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb938b763e5", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/00000003.000005f5", "kind": "socket"}, {"address": "7fb03cb935afef3d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb938b761f5", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/00000003.00000948", "kind": "socket"}, {"address": "7fb03cb935afe5dd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb938b760fd", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935afe6a5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afe76d", "refs": "0", "nextref": "0", "addr": "vpnkit.eth.sock", "kind": "socket"}, {"address": "7fb03cb935afe76d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afe6a5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afee75", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9360a12ed", "conn": "0", "refs": "0", "nextref": "0", "addr": "backend.sock", "kind": "socket"}, {"address": "7fb03cb935afece5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb935cd29bd", "conn": "0", "refs": "0", "nextref": "0", "addr": "filesystem-export.sock", "kind": "socket"}, {"address": "7fb03cb935afec1d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb935cd43e5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.00001003", "kind": "socket"}, {"address": "7fb03cb935afe9c5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb935cd40fd", "conn": "0", "refs": "0", "nextref": "0", "addr": "filesystem-volume.sock", "kind": "socket"}, {"address": "7fb03cb935afeb55", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9350eaa35", "conn": "0", "refs": "0", "nextref": "0", "addr": "docker-api.sock", "kind": "socket"}, {"address": "7fb03cb935afea8d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9350eab2d", "conn": "0", "refs": "0", "nextref": "0", "addr": "backend-for-guest.sock", "kind": "socket"}, {"address": "7fb03cb93501b065", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9350ea36d", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.data.sock", "kind": "socket"}, {"address": "7fb03cb937d37bb5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9350ea465", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.port.sock", "kind": "socket"}, {"address": "7fb03cb937d3a5e5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb950a0dca5", "conn": "0", "refs": "0", "nextref": "0", "addr": "docker.sock", "kind": "socket"}, {"address": "7fb03cb937d3a51d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb950ab1005", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.pcap.sock", "kind": "socket"}, {"address": "7fb03cb94d7495e5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb950ab0f0d", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.diag.sock", "kind": "socket"}, {"address": "7fb03cb94d746895", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb950aafd9d", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.eth.sock", "kind": "socket"}, {"address": "7fb03cb94d7467cd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb950ab0085", "conn": "0", "refs": "0", "nextref": "0", "addr": "osxfs.sock", "kind": "socket"}, {"address": "7fb03cb94d746bb5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb950ab0a35", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb94d7496ad", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb950a1dab5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/gui-api.sock", "kind": "socket"}, {"address": "7fb03cb94d7492c5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d746aed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d746aed", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d7492c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748d4d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d7472bd", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7472bd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d748d4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748c85", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d747385", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d747385", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d748c85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748af5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d747835", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d747835", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d748af5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748a2d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d74776d", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d74776d", "type": "stream", "recv_q": 145, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d748a2d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d74889d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d7478fd", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7478fd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d74889d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d74870d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d7487d5", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7487d5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d74870d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748645", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d7479c5", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7479c5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d748645", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747a8d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d74857d", "refs": "0", "nextref": "0", "addr": "/tmp/olisne-WY4G9IZafUNsloCollectorServicePipe", "kind": "socket"}, {"address": "7fb03cb94d74857d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d747a8d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7484b5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d747b55", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d747b55", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d7484b5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747c1d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d748325", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d748325", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d747c1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7483ed", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb94db01655", "conn": "0", "refs": "0", "nextref": "0", "addr": "/tmp/fctvpnctl.sock_501", "kind": "socket"}, {"address": "7fb03cb94a63bc1d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63c645", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c645", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63bc1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63bce5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63c57d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c57d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63bce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63bdad", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63c4b5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c4b5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63bdad", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63be75", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63c3ed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c3ed", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63be75", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63bf3d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63c325", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c325", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63bf3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63c195", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63c005", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c005", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63c195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63c0cd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63c25d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c25d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63c0cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3ad4d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501b835", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3ae15", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d377cd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501b835", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3ad4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d377cd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3ae15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3a6ad", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d3a06d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d3a06d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d3a6ad", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d387cd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb94d0e4a35", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Application Support/Fortinet/FortiClient/credentialstore.sock", "kind": "socket"}, {"address": "7fb03cb937d3812d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d3a2c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d3a2c5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d3812d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d395dd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d39515", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d39515", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d395dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39ce5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d39dad", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d39dad", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d39ce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39e15", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d39645", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d39645", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d39e15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39af5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9418d26cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/folders/vr/4gybj0rs1_51r0sy8d5qv3jm0000gn/T/.com.google.Chrome.ucLRTi/SingletonSocket", "kind": "socket"}, {"address": "7fb03cb93ceaeaed", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb151d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb151d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceaeaed", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceae95d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb138d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb138d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceae95d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb12c5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceaed45", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaed45", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb12c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaee0d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceaeed5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaeed5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceaee0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb106d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceaef9d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaef9d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb106d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf2bd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb0fa5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb0fa5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceaf2bd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf515", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb0e15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0e15", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceaf515", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf5dd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb0d4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0d4d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceaf5dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0c85", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceaf6a5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf6a5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb0c85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf76d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb0bbd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0bbd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceaf76d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0af5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceafa8d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceafa8d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb0af5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb057d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb070d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb070d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb057d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceafce5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceaf9c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaf9c5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceafce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb025d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb93ea4fca5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/tmp/fctvpnctl.sock", "kind": "socket"}, {"address": "7fb03cb93ceb0325", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb93ea5074d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/tmp/filesystemui.socket", "kind": "socket"}, {"address": "7fb03cb93ceafb55", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb93ea1cd1d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/tmp/com.apple.launchd.WbUfpjQ9cD/Render", "kind": "socket"}, {"address": "7fb03cb93ceb00cd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb93ea42275", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/tmp/com.apple.launchd.WdCvj7HQdi/Listeners", "kind": "socket"}, {"address": "7fb03cb937d394b5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb938289085", "conn": "0", "refs": "0", "nextref": "0", "addr": "/tmp/olisne-WY4G9IZafUNsloCollectorServicePipe", "kind": "socket"}, {"address": "7fb03cb93501a895", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501d51d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501d51d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501a895", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501aa25", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501aaed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501aaed", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501aa25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d38d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501d2c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501d2c5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501d38d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501abb5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501d1fd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501d1fd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501abb5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501aed5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501ae0d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501ae0d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501aed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b44d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501cedd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501cedd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501b44d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d06d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501b385", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b385", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501d06d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501cfa5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb93763e7cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/displaypolicyd/state", "kind": "socket"}, {"address": "7fb03cb93501b76d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb936ea7d9d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/pppconfd", "kind": "socket"}, {"address": "7fb03cb93501c965", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9355ec3e5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/epctrl.sock", "kind": "socket"}, {"address": "7fb03cb93501c89d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9355ec1f5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/fctvpnctrl.sock", "kind": "socket"}, {"address": "7fb03cb93501c7d5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9355ec0fd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb93501c70d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9355ec005", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/com.docker.vmnetd.sock", "kind": "socket"}, {"address": "7fb03cb93501c645", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb93557e845", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/srvsvc", "kind": "socket"}, {"address": "7fb03cb93501b9c5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb93557e36d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/srvsvc", "kind": "socket"}, {"address": "7fb03cb93501c57d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb93557e55d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/usbmuxd", "kind": "socket"}, {"address": "7fb03cb93501c4b5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb93557e655", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/wkssvc", "kind": "socket"}, {"address": "7fb03cb93501ba8d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb93557e74d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/wkssvc", "kind": "socket"}, {"address": "7fb03cb93501c3ed", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9355617cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/mdssvc", "kind": "socket"}, {"address": "7fb03cb93501c325", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9355636cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/lsarpc", "kind": "socket"}, {"address": "7fb03cb93501c25d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9355618c5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/lsarpc", "kind": "socket"}, {"address": "7fb03cb93501bb55", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9355635d5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501bc1d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9355634dd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/systemkeychaincheck.socket", "kind": "socket"}, {"address": "7fb03cb93501bce5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb935561ab5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/var/run/.sim_diagnosticd_socket", "kind": "socket"}, {"address": "7fb03cb93501bdad", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb935561bad", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/portmap.socket", "kind": "socket"}, {"address": "7fb03cb93501be75", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb935511d1d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/vpncontrol.sock", "kind": "socket"}, {"address": "7fb03cb93501bf3d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9354fd085", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/NETLOGON", "kind": "socket"}, {"address": "7fb03cb93501c005", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9354e58c5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/var/run/cupsd", "kind": "socket"}, {"address": "7fb03cb95130ddad", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d3afa5", "kind": "socket"}, {"address": "7fb03cb94a63b065", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63b9c5", "refs": "7fb03cb94a63b9c5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63b9c5", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63b065", "refs": "7fb03cb94a63b065", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3afa5", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63ad45", "kind": "socket"}, {"address": "7fb03cb94a63ad45", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63af9d", "kind": "socket"}, {"address": "7fb03cb94a63af9d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceae7cd", "kind": "socket"}, {"address": "7fb03cb93ceae7cd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d3b51d", "kind": "socket"}, {"address": "7fb03cb945d3b51d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d3a3ed", "kind": "socket"}, {"address": "7fb03cb945d3a3ed", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d3989d", "kind": "socket"}, {"address": "7fb03cb937d3989d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63b76d", "kind": "socket"}, {"address": "7fb03cb94a63b76d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130d44d", "kind": "socket"}, {"address": "7fb03cb95130d44d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130cf9d", "kind": "socket"}, {"address": "7fb03cb95130cf9d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501d6ad", "kind": "socket"}, {"address": "7fb03cb94d7491fd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d7476a5", "refs": "7fb03cb94d7476a5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7476a5", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d7491fd", "refs": "7fb03cb94d7491fd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d6ad", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63d6ad", "kind": "socket"}, {"address": "7fb03cb94d748005", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d749455", "refs": "7fb03cb94d749455", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d749455", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d748005", "refs": "7fb03cb94d748005", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7475dd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d747065", "refs": "7fb03cb94d747065", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747065", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d7475dd", "refs": "7fb03cb94d7475dd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501a95d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501d455", "refs": "7fb03cb93501d455", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d455", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501a95d", "refs": "7fb03cb93501a95d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130db55", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130ebbd", "refs": "7fb03cb95130ebbd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ebbd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130db55", "refs": "7fb03cb95130db55", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63d6ad", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d74938d", "kind": "socket"}, {"address": "7fb03cb94d74938d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d38a8d", "kind": "socket"}, {"address": "7fb03cb937d38a8d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130d835", "kind": "socket"}, {"address": "7fb03cb95130d835", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d746c7d", "kind": "socket"}, {"address": "7fb03cb945d3aedd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3b6ad", "refs": "7fb03cb945d3b6ad", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b6ad", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3aedd", "refs": "7fb03cb945d3aedd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746c7d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d74712d", "kind": "socket"}, {"address": "7fb03cb94d74712d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d39edd", "kind": "socket"}, {"address": "7fb03cb937d39edd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d38dad", "kind": "socket"}, {"address": "7fb03cb937d38dad", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63b12d", "kind": "socket"}, {"address": "7fb03cb94a63b12d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130e57d", "kind": "socket"}, {"address": "7fb03cb95130e57d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d74951d", "kind": "socket"}, {"address": "7fb03cb94d74951d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d749135", "kind": "socket"}, {"address": "7fb03cb94d749135", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb15e5", "kind": "socket"}, {"address": "7fb03cb93ceb15e5", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceae895", "kind": "socket"}, {"address": "7fb03cb93ceae895", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb16ad", "kind": "socket"}, {"address": "7fb03cb93ceb16ad", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d3a1fd", "kind": "socket"}, {"address": "7fb03cb937d3a1fd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d39065", "kind": "socket"}, {"address": "7fb03cb945d39065", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d38f9d", "kind": "socket"}, {"address": "7fb03cb945d38f9d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d39a8d", "kind": "socket"}, {"address": "7fb03cb945d399c5", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3a005", "refs": "7fb03cb945d3a005", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3a005", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d399c5", "refs": "7fb03cb945d399c5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39b55", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d39f3d", "refs": "7fb03cb945d39f3d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39f3d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d39b55", "refs": "7fb03cb945d39b55", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39a8d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d397d5", "kind": "socket"}, {"address": "7fb03cb937d37d45", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d37e0d", "refs": "7fb03cb937d37e0d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37e0d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d37d45", "refs": "7fb03cb937d37d45", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d397d5", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb11fd", "kind": "socket"}, {"address": "7fb03cb93ceb11fd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf065", "kind": "socket"}, {"address": "7fb03cb93ceaf065", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb0edd", "kind": "socket"}, {"address": "7fb03cb93ceb0edd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf385", "kind": "socket"}, {"address": "7fb03cb93ceaf12d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceaf1f5", "refs": "7fb03cb93ceaf1f5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf1f5", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceaf12d", "refs": "7fb03cb93ceaf12d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf385", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb0965", "kind": "socket"}, {"address": "7fb03cb93ceb0965", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb0a2d", "kind": "socket"}, {"address": "7fb03cb93ceb0a2d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf835", "kind": "socket"}, {"address": "7fb03cb93ceaf835", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf8fd", "kind": "socket"}, {"address": "7fb03cb93ceaf8fd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceafdad", "kind": "socket"}, {"address": "7fb03cb93ceafdad", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb07d5", "kind": "socket"}, {"address": "7fb03cb93ceb07d5", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb089d", "kind": "socket"}, {"address": "7fb03cb93ceb0645", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceafe75", "refs": "7fb03cb93ceafe75", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceafe75", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb0645", "refs": "7fb03cb93ceb0645", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb089d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceafc1d", "kind": "socket"}, {"address": "7fb03cb93ceb0195", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb0005", "refs": "7fb03cb93ceb0005", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0005", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb0195", "refs": "7fb03cb93ceb0195", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceafc1d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb03ed", "kind": "socket"}, {"address": "7fb03cb93ceb03ed", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d39fa5", "kind": "socket"}, {"address": "7fb03cb937d39a2d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d39bbd", "refs": "7fb03cb937d39bbd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39bbd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d39a2d", "refs": "7fb03cb937d39a2d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39fa5", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d39965", "kind": "socket"}, {"address": "7fb03cb937d38065", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d37c7d", "refs": "7fb03cb937d37c7d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37c7d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d38065", "refs": "7fb03cb937d38065", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39965", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d37f9d", "kind": "socket"}, {"address": "7fb03cb937d37f9d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d393ed", "kind": "socket"}, {"address": "7fb03cb937d393ed", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d3970d", "kind": "socket"}, {"address": "7fb03cb937d3970d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501d135", "kind": "socket"}, {"address": "7fb03cb937d382bd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d3957d", "refs": "7fb03cb937d3957d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3957d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d382bd", "refs": "7fb03cb937d382bd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38c1d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d38ce5", "refs": "7fb03cb937d38ce5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38ce5", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d38c1d", "refs": "7fb03cb937d38c1d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d135", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501cd4d", "kind": "socket"}, {"address": "7fb03cb93501cd4d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501cc85", "kind": "socket"}, {"address": "7fb03cb93501b1f5", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501b2bd", "refs": "7fb03cb93501b2bd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b2bd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501b1f5", "refs": "7fb03cb93501b1f5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501ce15", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501b515", "refs": "7fb03cb93501b515", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b515", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501ce15", "refs": "7fb03cb93501ce15", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b6a5", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501caf5", "refs": "7fb03cb93501caf5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501caf5", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501b6a5", "refs": "7fb03cb93501b6a5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501cc85", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501cbbd", "kind": "socket"}, {"address": "7fb03cb93501cbbd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501c0cd", "kind": "socket"}, {"address": "7fb03cb93501b8fd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501ca2d", "refs": "7fb03cb93501ca2d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501ca2d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501b8fd", "refs": "7fb03cb93501b8fd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501c0cd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501c195", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb934ff43e5", "conn": "0", "refs": "7fb03cb95130ddad", "nextref": "0", "addr": "/private//var/run/syslog", "kind": "socket"}, {"kctlref": "10001", "id": "1", "unit": -1, "unix_flags": "9", "pcbcount": 0, "rcvbuf": 131072, "sndbuf": 131072, "name": "com.apple.flow-divert", "kind": "Registered kernel control module"}, {"kctlref": "20002", "id": "2", "unit": -1, "unix_flags": "1", "pcbcount": 1, "rcvbuf": 16384, "sndbuf": 2048, "name": "com.apple.nke.sockwall", "kind": "Registered kernel control module"}, {"kctlref": "30003", "id": "3", "unit": -1, "unix_flags": "9", "pcbcount": 0, "rcvbuf": 524288, "sndbuf": 524288, "name": "com.apple.content-filter", "kind": "Registered kernel control module"}, {"kctlref": "40004", "id": "4", "unit": -1, "unix_flags": "1", "pcbcount": 0, "rcvbuf": 65536, "sndbuf": 65536, "name": "com.apple.net.necp_control", "kind": "Registered kernel control module"}, {"kctlref": "50005", "id": "5", "unit": -1, "unix_flags": "1", "pcbcount": 12, "rcvbuf": 65536, "sndbuf": 65536, "name": "com.apple.net.netagent", "kind": "Registered kernel control module"}, {"kctlref": "60006", "id": "6", "unit": -1, "unix_flags": "9", "pcbcount": 4, "rcvbuf": 524288, "sndbuf": 524288, "name": "com.apple.net.utun_control", "kind": "Registered kernel control module"}, {"kctlref": "70007", "id": "7", "unit": -1, "unix_flags": "1", "pcbcount": 0, "rcvbuf": 65536, "sndbuf": 65536, "name": "com.apple.net.ipsec_control", "kind": "Registered kernel control module"}, {"kctlref": "80008", "id": "8", "unit": -1, "unix_flags": "0", "pcbcount": 74, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.netsrc", "kind": "Registered kernel control module"}, {"kctlref": "90009", "id": "9", "unit": -1, "unix_flags": "18", "pcbcount": 4, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.network.statistics", "kind": "Registered kernel control module"}, {"kctlref": "a000a", "id": "a", "unit": -1, "unix_flags": "5", "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.network.tcp_ccdebug", "kind": "Registered kernel control module"}, {"kctlref": "b000b", "id": "b", "unit": -1, "unix_flags": "1", "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.network.advisory", "kind": "Registered kernel control module"}, {"kctlref": "c000c", "id": "c", "unit": -1, "unix_flags": "4", "pcbcount": 0, "rcvbuf": 65536, "sndbuf": 2048, "name": "com.apple.uart.BLTH", "kind": "Registered kernel control module"}, {"kctlref": "d000d", "id": "d", "unit": -1, "unix_flags": "4", "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.uart.sk.BLTH", "kind": "Registered kernel control module"}, {"kctlref": "e000e", "id": "e", "unit": -1, "unix_flags": "0", "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 8192, "name": "com.apple.fileutil.kext.stateful.ctl", "kind": "Registered kernel control module"}, {"kctlref": "f000f", "id": "f", "unit": -1, "unix_flags": "0", "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.fileutil.kext.stateless.ctl", "kind": "Registered kernel control module"}, {"kctlref": "170017", "id": "17", "unit": -1, "unix_flags": "5", "pcbcount": 1, "rcvbuf": 32768, "sndbuf": 2048, "name": "com.fortinet.fct.kext.fwnke", "kind": "Registered kernel control module"}, {"kctlref": "ea0010", "id": "18", "unit": -1, "unix_flags": "5", "pcbcount": 1, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.fortinet.kext.avkern2", "kind": "Registered kernel control module"}, {"pcb": "7fb03cb936ead2bd", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 0, "rxbytes": 0, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead2f5", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 4, "subcla": 0, "rxbytes": 0, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacd0d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 0, "rxbytes": 1414844, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacd45", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27716540, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead24d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27716540, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead215", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27716540, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead1dd", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 11, "rxbytes": 0, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacd7d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27716540, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacdb5", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27716540, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacded", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27716744, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eace25", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27716744, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eace5d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27716744, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead1a5", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27718800, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eace95", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27719296, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacecd", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27719296, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacf05", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27719296, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead16d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 6, "rxbytes": 823488, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacf3d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 1, "rxbytes": 836, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacf75", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "rxbytes": 27719456, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacfad", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 2, "rxbytes": 444256, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead135", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 10, "rxbytes": 0, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacfe5", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1000, "class": 5, "subcla": 11, "rxbytes": 144855, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead01d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 7, "rxbytes": 151680, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead055", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 1, "rxbytes": 836, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead08d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 2, "rxbytes": 444256, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead0fd", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 3, "subcla": 3, "rxbytes": 0, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead0c5", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 0, "rxbytes": 1422896, "txbytes": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb937d0314d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 791268, "txbytes": 657340, "unit": 1, "id": "2", "name": "com.apple.nke.sockwall", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d4f4d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 1, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d5ded", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 2, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d4d6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 3, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d656d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 4, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d4c4d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 5, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d662d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 6, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9608a1a6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 7, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94c7488ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 8, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e7299ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 9, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e72b5cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 10, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e72b6ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 11, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f60182d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 12, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f6020cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 30618, "txbytes": 0, "unit": 1, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ff8f9cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 2, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ff8fded", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 3, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ff8f48d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 4, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d644d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 224, "txbytes": 144, "unit": 1, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93c237d8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 224, "txbytes": 144, "unit": 2, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93c23682d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 9352, "txbytes": 6012, "unit": 3, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9503efa6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 4144, "txbytes": 2664, "unit": 4, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93cc9038d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 376544, "txbytes": 242064, "unit": 5, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93d3a7d6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 3192, "txbytes": 2052, "unit": 6, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9608a314d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 630280, "txbytes": 405180, "unit": 7, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93eefef0d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 2520, "txbytes": 1620, "unit": 8, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f3d2e8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 2520, "txbytes": 1620, "unit": 9, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f60260d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 32368, "txbytes": 20808, "unit": 10, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f601d6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 120568, "txbytes": 77508, "unit": 11, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93fb8e30d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 6272, "txbytes": 4032, "unit": 12, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93fb8d8ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 896, "txbytes": 576, "unit": 13, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f3d384d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 1344, "txbytes": 864, "unit": 14, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb940438bad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 81816, "txbytes": 52596, "unit": 15, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb949ba84ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 6328, "txbytes": 4068, "unit": 16, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94043968d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 2520, "txbytes": 1620, "unit": 17, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb940c3594d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 74760, "txbytes": 48060, "unit": 18, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb941b872cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 2520, "txbytes": 1620, "unit": 19, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb943aa506d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 309064, "txbytes": 198684, "unit": 20, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb941451a8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 31864, "txbytes": 20484, "unit": 21, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94510508d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 2632, "txbytes": 1692, "unit": 22, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9459058ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 133392, "txbytes": 85752, "unit": 23, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb945c5bf0d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 2016, "txbytes": 1296, "unit": 24, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94766e96d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 14280, "txbytes": 9180, "unit": 25, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb946464c6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 1568, "txbytes": 1008, "unit": 26, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb946463fad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 203224, "txbytes": 130644, "unit": 27, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94646394d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 338184, "txbytes": 217404, "unit": 28, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95002e5ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 616, "txbytes": 396, "unit": 29, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94fe5d12d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 14280, "txbytes": 9180, "unit": 30, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95fb8feed", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 112, "txbytes": 72, "unit": 31, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9471823cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 438592, "txbytes": 281952, "unit": 32, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb96085390d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 166040, "txbytes": 106740, "unit": 33, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94686a3cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 336, "txbytes": 216, "unit": 34, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94804f18d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 57792, "txbytes": 37152, "unit": 35, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94804f42d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 336, "txbytes": 216, "unit": 36, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94804fead", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 1568, "txbytes": 1008, "unit": 37, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94fefcd2d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 8512, "txbytes": 5472, "unit": 38, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94f9330ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 9520, "txbytes": 6120, "unit": 39, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9496ffb8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 4816, "txbytes": 3096, "unit": 40, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95e70872d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 203448, "txbytes": 130788, "unit": 41, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94c8769ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 280616, "txbytes": 180396, "unit": 42, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9508e426d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 112, "txbytes": 72, "unit": 43, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95f702d8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 112, "txbytes": 72, "unit": 44, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94d86f2cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 103040, "txbytes": 66240, "unit": 45, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94e49c2ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 56, "txbytes": 36, "unit": 46, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95eff106d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 327936, "txbytes": 210816, "unit": 47, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93aa79fcd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 8064, "txbytes": 5184, "unit": 48, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94f65e74d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 3136, "txbytes": 2016, "unit": 49, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94f8944ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 6888, "txbytes": 4428, "unit": 50, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94f931d6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 336, "txbytes": 216, "unit": 51, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94f9d11ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 6720, "txbytes": 4320, "unit": 52, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95fbb0aed", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 28448, "txbytes": 18288, "unit": 53, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95f88ec4d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 63000, "txbytes": 40500, "unit": 54, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9496ffa0d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 2576, "txbytes": 1656, "unit": 55, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94c736fcd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 336, "txbytes": 216, "unit": 56, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95477236d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 336, "txbytes": 216, "unit": 57, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95e1a588d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 7336, "txbytes": 4716, "unit": 58, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95e1a726d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 12544, "txbytes": 8064, "unit": 59, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ed4f24d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 112, "txbytes": 72, "unit": 60, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95f46cc6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 11872, "txbytes": 7632, "unit": 61, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94fb5ad2d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 168, "txbytes": 108, "unit": 62, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95cb8b9ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 1456, "txbytes": 936, "unit": 63, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb954772d8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 336, "txbytes": 216, "unit": 64, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb950171fad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 672, "txbytes": 432, "unit": 65, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d590d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 336, "txbytes": 216, "unit": 66, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94686a1ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 168, "txbytes": 108, "unit": 67, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ffdd1ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 129808, "txbytes": 83448, "unit": 68, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ff8f96d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 168, "txbytes": 108, "unit": 69, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95e6c8e8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 18648, "txbytes": 11988, "unit": 70, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94b5af2ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 224, "txbytes": 144, "unit": 71, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb96074aa6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 112, "txbytes": 72, "unit": 72, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95bff57cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 56, "txbytes": 36, "unit": 74, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95fc8056d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 112, "txbytes": 72, "unit": 77, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb937d02e4d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 216428, "txbytes": 44, "unit": 1, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e09b08d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 144713152, "txbytes": 30152, "unit": 2, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e099a0d", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 3, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e099bed", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 6100, "txbytes": 2148, "unit": 4, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9603d82cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 0, "txbytes": 0, "unit": 1, "id": "23", "name": "com.fortinet.fct.kext.fwnke", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9603d67cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "rxbytes": 20960, "txbytes": 240, "unit": 1, "id": "24", "name": "com.fortinet.kext.avkern2", "kind": "Active kernel control socket"}] jc-1.17.3/tests/fixtures/osx-10.14.6/netstat-Abn.out000066400000000000000000002260431415226333200215510ustar00rootroot00000000000000Active Internet connections Socket Flowhash Proto Recv-Q Send-Q Local Address Foreign Address (state) rxbytes txbytes 7fb03cb94d505aed cedd0cbf tcp4 0 0 192.168.1.221.5486 140.82.113.26.443 ESTABLISHED 4958 3996 7fb03cb94d692475 1c9f9fcd tcp4 0 0 192.168.1.221.5480 208.91.113.36.443 ESTABLISHED 39554 9531 7fb03cb94b25de55 dbe59bf8 tcp4 0 0 192.168.1.221.5478 140.82.112.26.443 ESTABLISHED 6022 6313 7fb03cb95fad8165 6a3d6e4 tcp4 0 0 192.168.1.221.5450 192.168.1.201.4923 ESTABLISHED 1910 2803 7fb03cb946c1cbcd 3c023c0 tcp6 0 0 2600:1700:bab0:d.5 2607:f8b0:4003:c.9 ESTABLISHED 167633 41617 7fb03cb95fad77dd 3f163cd2 tcp4 0 0 192.168.1.221.5450 192.168.1.64.53380 ESTABLISHED 2592 3096 7fb03cb94221360d cc0e0c2a tcp6 0 0 2600:1700:bab0:d.5 2603:1030:b00::e.4 ESTABLISHED 15646 15752 7fb03cb937c20e4d 8e998322 tcp6 0 0 2600:1700:bab0:d.5 2620:1ec:21::14.44 ESTABLISHED 46800 45200 7fb03cb93c75d475 d53fb648 tcp4 0 0 192.168.1.221.5452 35.236.87.93.8081 ESTABLISHED 102916 305797 7fb03cb937c2140d e013f438 tcp6 0 0 2600:1700:bab0:d.5 2607:f8b0:4000:8.4 ESTABLISHED 91675 183353 7fb03cb94b718aed bcd5aa6f tcp4 0 0 192.168.1.221.5452 192.168.1.88.49153 ESTABLISHED 1439 2749 7fb03cb94b716e55 30944ff3 tcp4 0 0 192.168.1.221.5451 192.168.1.89.49152 ESTABLISHED 1412 2852 7fb03cb93c75b7dd d54ab36f tcp4 0 0 192.168.1.221.5450 192.168.1.72.55617 ESTABLISHED 1098 3946 7fb03cb93b2d6e55 d11ddd76 tcp4 0 0 192.168.1.221.5451 52.114.148.56.443 ESTABLISHED 54904 37123 7fb03cb94a8f8d0d 88c31bcb tcp6 0 0 fe80::aede:48ff:.5 fe80::aede:48ff:.4 ESTABLISHED 929 1397 7fb03cb94a8f988d a10400b8 tcp6 0 0 fe80::aede:48ff:.5 fe80::aede:48ff:.4 ESTABLISHED 56095 13875 7fb03cb948e8f88d cd67a7b tcp6 0 0 2600:1700:bab0:d.5 2607:f8b0:4003:c.5 ESTABLISHED 5331 7172 7fb03cb94bcb6475 4ca24b6e tcp4 31 0 192.168.1.221.5442 35.236.87.93.8081 CLOSE_WAIT 1424 2595 7fb03cb94b4f518d 25c58fec tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 1326 1023 7fb03cb94bcb47dd b164479 tcp4 0 0 127.0.0.1.53755 127.0.0.1.53763 ESTABLISHED 3182238 0 7fb03cb94b433e55 f28b9248 tcp4 0 0 127.0.0.1.53763 127.0.0.1.53755 ESTABLISHED 51430 0 7fb03cb94b719475 316c063a tcp4 0 0 192.168.1.221.5359 104.155.21.255.555 ESTABLISHED 73216 1004723 7fb03cb946c1ba8d d32bc928 tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 693 807 7fb03cb94c066aed fb73c2ca tcp4 0 0 192.168.1.221.5263 17.57.144.20.5223 ESTABLISHED 27110 79402 7fb03cb94d2ebaed 22dc0e42 tcp4 0 0 192.168.1.221.5179 192.168.1.80.548 ESTABLISHED 8433051 3259730 7fb03cb94a8f818d 5e12e220 tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 3768 1815 7fb03cb94a8f704d 16ca6e94 tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 684 3761 7fb03cb942212a8d da4b1f7d tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 1470 1167 7fb03cb948e8dbcd 4aeb1af1 tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 693 807 7fb03cb94a8f92cd 6859cfec tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 765 663 7fb03cb946c1e2cd 248b598b tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 693 807 7fb03cb942213bcd 56762cbf tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 693 807 7fb03cb948e8d60d d29e9efa tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 3668 1997 7fb03cb946c1d18d 60f3fa15 tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 1053 1167 7fb03cb94b4347dd a1f7c428 tcp4 0 0 192.168.1.221.5164 35.235.123.194.555 CLOSE_WAIT 52 1084 7fb03cb948047aed ceac8539 tcp4 0 0 192.168.1.221.5164 35.235.123.194.555 CLOSE_WAIT 52 1136 7fb03cb963503e55 d98dfd14 tcp4 0 0 192.168.1.221.5164 35.235.123.194.555 CLOSE_WAIT 52 1200 7fb03cb937c202cd 2e36177f tcp6 0 0 fe80::aede:48ff:.6 fe80::aede:48ff:.4 ESTABLISHED 893 26581 7fb03cb946c1c60d aaabe009 tcp6 0 0 fe80::aede:48ff:.5 fe80::aede:48ff:.5 ESTABLISHED 985405 1688994 7fb03cb948536475 dc1e01a0 tcp4 0 0 192.168.1.221.5879 96.45.36.31.443 ESTABLISHED 3654 3229 7fb03cb94b38e7dd e3b8b675 tcp4 0 0 127.0.0.1.9592 127.0.0.1.58704 CLOSE_WAIT 29513 0 7fb03cb94d691165 7eee3b1 tcp4 31 0 192.168.1.221.5346 35.236.87.93.8081 CLOSE_WAIT 1218 6437 7fb03cb948e8f2cd e7486da9 tcp6 0 0 fe80::aede:48ff:.5 fe80::aede:48ff:.4 ESTABLISHED 893 111664 7fb03cb94221304d 3e982c00 tcp6 0 0 fe80::aede:48ff:.5 fe80::aede:48ff:.4 ESTABLISHED 965 99241 7fb03cb937c2088d 30000ae7 tcp6 0 0 fe80::aede:48ff:.5 fe80::aede:48ff:.4 ESTABLISHED 893 125491 7fb03cb94b4f4bcd 57e076f4 tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 889 128896 7fb03cb94221474d 6465b356 tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 14206 134302 7fb03cb94a8f6a8d bed25b95 tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 1909 120628 7fb03cb937c1fd0d 33613be8 tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 684 259247 7fb03cb93c70600d 777662f1 udp4 0 0 *.58043 *.* 48 76 7fb03cb93c709f4d b64a4fe1 udp4 0 0 *.63678 *.* 98 138 7fb03cb93c708c0d 48ba21c8 udp4 0 0 *.60774 *.* 48 76 7fb03cb93c70760d 7f0afb2c udp4 0 0 *.51411 *.* 98 138 7fb03cb93c707b8d 7c49f0f1 udp4 0 0 *.57119 *.* 48 76 7fb03cb93c70734d c750f7f0 udp4 0 0 *.61217 *.* 98 138 7fb03cb93c70810d 2308a9b6 udp4 0 0 *.56091 *.* 43700 46473 7fb03cb93c707e4d 4b2ff4b3 udp4 0 0 *.58807 *.* 45885 44260 7fb03cb9371e2d4d 8d16cd6b udp4 0 0 *.54338 *.* 0 6138 7fb03cb93721310d f4140344 udp4 0 0 *.3722 *.* 0 512 7fb03cb93d5b800d 0 udp4 0 0 *.5353 *.* 2554929 0 7fb03cb93c7ba60d 7fd9393b udp46 0 0 *.61224 *.* 38123 35312 7fb03cb93c7b8a8d 0 udp4 0 0 *.* *.* 0 0 7fb03cb939b0470d 0 udp4 0 0 *.* *.* 0 0 7fb03cb93c706dcd f725c38f udp4 0 0 127.0.0.1.63995 *.* 0 1253564 7fb03cb93c708ecd 5ed0c674 udp4 0 0 192.168.1.221.5063 *.* 0 1253656 7fb03cb93c70868d 0 udp4 0 0 *.33354 *.* 496 0 7fb03cb93c70658d 0 udp4 0 0 *.33355 *.* 1253656 0 7fb03cb934b578cd 530d4d40 udp6 0 0 *.61982 *.* 29478 27730 7fb03cb934b59c8d 91b8382 udp4 0 0 *.61982 *.* 21216 15688 7fb03cb934b56dcd ca5be4ea udp6 0 0 *.52378 *.* 28968 27260 7fb03cb934b5760d 3462e1b2 udp4 0 0 *.52378 *.* 21726 16058 7fb03cb934b5944d 58e06369 udp6 0 0 *.53910 *.* 28684 27063 7fb03cb934b5a20d e03584 udp4 0 0 *.53910 *.* 21513 15841 7fb03cb934b55d4d e91dd2ad udp6 0 0 *.57674 *.* 32262 30952 7fb03cb934b5970d da8119f1 udp4 0 0 *.57674 *.* 24510 18834 7fb03cb934b599cd 3504cd68 udp6 0 0 *.62448 *.* 30666 29150 7fb03cb934b557cd 941a5612 udp4 0 0 *.62448 *.* 25992 19952 7fb03cb934b58c0d c487a471 udp6 0 0 *.55681 *.* 29380 28035 7fb03cb934b5600d c4b0913 udp4 0 0 *.55681 *.* 26781 20570 7fb03cb93716444d 0 udp4 0 0 *.* *.* 0 0 7fb03cb93b6df00d 0 udp4 0 0 *.* *.* 0 0 7fb03cb93c8bbd4d 47d61919 udp4 0 0 *.5353 *.* 3818017 26658 7fb03cb93c8bc00d 8148de2d udp4 0 0 *.5353 *.* 3811093 26658 7fb03cb93c8bc2cd 41ad85a1 udp46 0 0 *.5353 *.* 22458 29658 7fb03cb93c8bfc8d 3d59980f udp46 0 0 *.5353 *.* 0 29658 7fb03cb93c8bd34d 73cc988e udp46 0 0 *.5353 *.* 55268610 29658 7fb03cb93c8bf44d dee9266c udp4 0 0 *.5353 *.* 162940592 26658 7fb03cb93c8bdb8d 0 udp46 0 0 *.5353 *.* 0 0 7fb03cb937211dcd b4871709 udp4 0 0 *.51226 *.* 1251903 2351183 7fb03cb9372154cd 21b31d88 udp4 0 0 127.0.0.1.61491 *.* 733104 1160292 7fb03cb93b74a3cd 0 udp4 0 0 *.6096 *.* 0 0 7fb03cb93c7bb10d f1ac8ec5 udp4 0 0 *.58997 *.* 30600076 18446784 7fb03cb93b70ea8d 0 udp4 0 0 *.* *.* 0 0 7fb03cb93b7129cd 0 udp4 0 0 *.* *.* 0 0 7fb03cb93b71270d 0 udp4 0 0 *.* *.* 0 0 7fb03cb93b711c0d 0 udp4 0 0 *.* *.* 0 0 7fb03cb93b72d70d 0 udp4 0 0 *.* *.* 0 0 7fb03cb93b72bb8d 0 udp4 0 0 *.* *.* 0 0 7fb03cb93b747a8d 0 udp4 0 0 *.* *.* 0 0 7fb03cb93bc90a8d 0 udp4 0 0 *.* *.* 0 0 7fb03cb93bc9520d 97a44721 udp4 0 0 *.52551 *.* 0 65984 7fb03cb93bc90d4d 0 udp4 0 0 *.* *.* 0 0 7fb03cb93bc9100d 0 udp4 0 0 *.* *.* 0 0 7fb03cb93bc94f4d 0 udp4 0 0 *.* *.* 0 0 7fb03cb93bc9208d 0 udp4 0 0 *.* *.* 0 0 7fb03cb93c7bcc8d 0 udp4 0 0 *.* *.* 0 0 7fb03cb93c8beecd 0 udp4 0 0 *.* *.* 0 0 7fb03cb93c8be10d 0 udp4 0 0 *.* *.* 0 0 7fb03cb93c8be3cd 0 udp4 0 0 *.* *.* 0 0 7fb03cb93c8be68d 0 udp4 0 0 *.* *.* 0 0 7fb03cb93d5b7a8d 0 udp4 0 0 *.* *.* 0 0 7fb03cb93c70894d 0 udp4 0 0 *.* *.* 0 0 7fb03cb93721444d 0 udp4 0 0 *.* *.* 0 0 7fb03cb937160a8d 0 udp4 0 0 *.* *.* 0 0 7fb03cb937160d4d 0 udp4 0 0 *.* *.* 0 0 7fb03cb93716208d 0 udp4 0 0 *.* *.* 0 0 7fb03cb93c70a20d 0 udp4 0 0 *.* *.* 0 0 7fb03cb93c70944d 0 udp4 0 0 *.* *.* 0 0 7fb03cb93c70684d 0 udp4 0 0 *.* *.* 0 0 7fb03cb939b049cd 0 udp4 0 0 *.* *.* 0 0 7fb03cb9371654cd 0 udp4 0 0 *.* *.* 0 0 7fb03cb93716100d 0 udp4 0 0 *.* *.* 0 0 7fb03cb93716520d 0 udp4 0 0 *.* *.* 0 0 7fb03cb937164f4d 0 udp4 0 0 *.* *.* 0 0 7fb03cb9371628cd 0 udp4 0 0 *.* *.* 0 0 7fb03cb937162b8d 0 udp4 0 0 *.* *.* 0 0 7fb03cb937162e4d 0 udp4 0 0 *.* *.* 0 0 7fb03cb9371e32cd 0 udp4 0 0 *.* *.* 0 0 7fb03cb934b56b0d 0 udp4 0 0 *.* *.* 0 0 7fb03cb93721394d 0 udp4 0 0 *.* *.* 0 0 7fb03cb937cbcd4d 0 udp4 0 0 *.* *.* 0 0 7fb03cb937cbf10d 0 udp46 0 0 *.* *.* 0 0 7fb03cb93721184d b180dc9e udp6 0 0 *.5353 *.* 57357377 15237561 7fb03cb9372149cd 6fa9aaf7 udp4 0 0 *.5353 *.* 174466390 26656837 7fb03cb934b583cd 0 udp4 0 0 *.9595 *.* 0 0 7fb03cb934b5810d 5b0b6f0f udp4 0 0 *.138 *.* 692460 126560 7fb03cb934b57e4d dd966d84 udp4 0 0 *.137 *.* 3666438 3028491 7fb03cb939ad73cd 0 icm4 8136 0 *.* *.* 1325516 0 Active LOCAL (UNIX) domain sockets Address Type Recv-Q Send-Q Inode Conn Refs Nextref Addr 7fb03cb95130f135 stream 1 0 0 7fb03cb95130efa5 0 0 7fb03cb95130efa5 stream 0 0 0 7fb03cb95130f135 0 0 7fb03cb95130eaf5 stream 0 0 0 7fb03cb95130e70d 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock 7fb03cb95130e70d stream 0 0 0 7fb03cb95130eaf5 0 0 7fb03cb95130da8d stream 0 0 0 7fb03cb95130f38d 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock 7fb03cb95130f38d stream 0 0 0 7fb03cb95130da8d 0 0 7fb03cb95130e89d stream 0 0 0 7fb03cb95130cd45 0 0 7fb03cb95130cd45 stream 0 0 0 7fb03cb95130e89d 0 0 7fb03cb95130d9c5 stream 0 0 0 7fb03cb95130de75 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock 7fb03cb95130de75 stream 0 0 0 7fb03cb95130d9c5 0 0 7fb03cb95130e0cd stream 0 0 0 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock 7fb03cb95130cc7d stream 0 0 0 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock 7fb03cb94d74825d stream 0 0 0 7fb03cb94d748965 0 0 /var/run/mDNSResponder 7fb03cb94d748965 stream 0 0 0 7fb03cb94d74825d 0 0 7fb03cb94d746a25 stream 0 0 0 7fb03cb94d7471f5 0 0 /var/run/fctservctl.sock 7fb03cb94d7471f5 stream 0 0 0 7fb03cb94d746a25 0 0 7fb03cb94d747e75 stream 0 0 0 7fb03cb94d74695d 0 0 /var/run/fctservctl.sock 7fb03cb94d74695d stream 0 0 0 7fb03cb94d747e75 0 0 7fb03cb94d747515 stream 0 0 0 7fb03cb94d747ce5 0 0 /var/run/fctservctl.sock 7fb03cb94d747ce5 stream 0 0 0 7fb03cb94d747515 0 0 7fb03cb94d748e15 stream 0 0 0 7fb03cb94d748bbd 0 0 /var/run/fctservctl.sock 7fb03cb94d748bbd stream 0 0 0 7fb03cb94d748e15 0 0 7fb03cb937d38835 stream 0 0 0 7fb03cb937d389c5 0 0 /var/run/mDNSResponder 7fb03cb937d389c5 stream 0 0 0 7fb03cb937d38835 0 0 7fb03cb945d3b2c5 stream 0 0 0 7fb03cb945d396a5 0 0 /var/run/mDNSResponder 7fb03cb945d396a5 stream 0 0 0 7fb03cb945d3b2c5 0 0 7fb03cb945d3b5e5 stream 0 0 0 7fb03cb945d3a645 0 0 /var/run/mDNSResponder 7fb03cb945d3a645 stream 0 0 0 7fb03cb945d3b5e5 0 0 7fb03cb945d39835 stream 0 0 0 7fb03cb945d3ac85 0 0 /var/run/mDNSResponder 7fb03cb945d3ac85 stream 0 0 0 7fb03cb945d39835 0 0 7fb03cb945d3a89d stream 0 0 0 7fb03cb945d3b38d 0 0 /var/run/mDNSResponder 7fb03cb945d3b38d stream 0 0 0 7fb03cb945d3a89d 0 0 7fb03cb94a63aed5 stream 0 0 0 7fb03cb94a63cfa5 0 0 /var/run/mDNSResponder 7fb03cb94a63cfa5 stream 0 0 0 7fb03cb94a63aed5 0 0 7fb03cb94a63ae0d stream 0 0 0 7fb03cb94a63b5dd 0 0 /var/run/mDNSResponder 7fb03cb94a63b5dd stream 0 0 0 7fb03cb94a63ae0d 0 0 7fb03cb94a63cedd stream 0 0 0 7fb03cb94a63b44d 0 0 /var/run/mDNSResponder 7fb03cb94a63b44d stream 0 0 0 7fb03cb94a63cedd 0 0 7fb03cb94a63d38d stream 0 0 0 7fb03cb94a63aa25 0 0 /var/run/mDNSResponder 7fb03cb94a63aa25 stream 0 0 0 7fb03cb94a63d38d 0 0 7fb03cb95130c95d stream 0 0 0 7fb03cb95130d1f5 0 0 /var/run/mDNSResponder 7fb03cb95130d1f5 stream 0 0 0 7fb03cb95130c95d 0 0 7fb03cb945d38a25 stream 0 0 0 7fb03cb945d3a195 0 0 /var/run/mDNSResponder 7fb03cb945d3a195 stream 0 0 0 7fb03cb945d38a25 0 0 7fb03cb945d3aa2d stream 0 0 0 0 0 0 7fb03cb95130f5e5 stream 0 0 0 7fb03cb95130e4b5 0 0 /var/run/mDNSResponder 7fb03cb95130e4b5 stream 0 0 0 7fb03cb95130f5e5 0 0 7fb03cb94d74906d stream 0 0 0 7fb03cb94d746e0d 0 0 7fb03cb94d746e0d stream 8 0 0 7fb03cb94d74906d 0 0 7fb03cb937d39325 stream 0 0 0 7fb03cb937d385dd 0 0 7fb03cb937d385dd stream 0 0 0 7fb03cb937d39325 0 0 7fb03cb937d3876d stream 0 0 0 7fb03cb937d3a455 0 0 7fb03cb937d3a455 stream 0 0 0 7fb03cb937d3876d 0 0 7fb03cb937d37a25 stream 0 0 0 7fb03cb937d386a5 0 0 /var/run/mDNSResponder 7fb03cb937d386a5 stream 0 0 0 7fb03cb937d37a25 0 0 7fb03cb937d39195 stream 0 0 0 7fb03cb937d38f3d 0 0 7fb03cb937d38f3d stream 0 0 0 7fb03cb937d39195 0 0 7fb03cb937d37895 stream 0 0 0 7fb03cb937d37ed5 0 0 7fb03cb937d37ed5 stream 0 0 0 7fb03cb937d37895 0 0 7fb03cb937d390cd stream 0 0 0 7fb03cb937d3a38d 0 0 7fb03cb937d3a38d stream 0 0 0 7fb03cb937d390cd 0 0 7fb03cb945d3b455 stream 0 0 0 7fb03cb945d3895d 0 0 7fb03cb945d3895d stream 0 0 0 7fb03cb945d3b455 0 0 7fb03cb945d392bd stream 0 0 0 7fb03cb945d38e0d 0 0 7fb03cb945d38e0d stream 0 0 0 7fb03cb945d392bd 0 0 7fb03cb945d3b135 stream 0 0 0 7fb03cb945d38ed5 0 0 7fb03cb945d38ed5 stream 0 0 0 7fb03cb945d3b135 0 0 7fb03cb945d3976d stream 0 0 0 7fb03cb945d3912d 0 0 /var/run/mDNSResponder 7fb03cb945d3912d stream 0 0 0 7fb03cb945d3976d 0 0 7fb03cb945d391f5 stream 0 0 0 7fb03cb945d39385 0 0 7fb03cb945d39385 stream 0 0 0 7fb03cb945d391f5 0 0 7fb03cb945d38c7d stream 0 0 7fb03cb94b87f5d5 0 0 0 /var/folders/vr/4gybj0rs1_51r0sy8d5qv3jm0000gn/T/.com.microsoft.teams.okHfqO/SS 7fb03cb945d39c1d stream 0 0 0 7fb03cb945d39e75 0 0 /var/run/mDNSResponder 7fb03cb945d39e75 stream 0 0 0 7fb03cb945d39c1d 0 0 7fb03cb94a63ac7d stream 0 0 0 7fb03cb94a63caf5 0 0 /var/run/mDNSResponder 7fb03cb94a63caf5 stream 0 0 0 7fb03cb94a63ac7d 0 0 7fb03cb95130d515 stream 0 0 0 7fb03cb95130ce0d 0 0 7fb03cb95130ce0d stream 0 0 0 7fb03cb95130d515 0 0 7fb03cb95130caed stream 0 0 0 7fb03cb95130ca25 0 0 7fb03cb95130ca25 stream 0 0 0 7fb03cb95130caed 0 0 7fb03cb95130d385 stream 0 0 0 7fb03cb95130f06d 0 0 7fb03cb95130f06d stream 0 0 0 7fb03cb95130d385 0 0 7fb03cb95130dc1d stream 0 0 0 7fb03cb95130e7d5 0 0 7fb03cb95130e7d5 stream 0 0 0 7fb03cb95130dc1d 0 0 7fb03cb95130ced5 stream 0 0 0 7fb03cb95130f51d 0 0 7fb03cb95130f51d stream 0 0 0 7fb03cb95130ced5 0 0 7fb03cb95130df3d stream 0 0 0 7fb03cb95130c7cd 0 0 7fb03cb95130c7cd stream 0 0 0 7fb03cb95130df3d 0 0 7fb03cb95130e195 stream 0 0 0 7fb03cb95130e325 0 0 7fb03cb95130e325 stream 0 0 0 7fb03cb95130e195 0 0 7fb03cb95130f1fd stream 0 0 0 7fb03cb95130ea2d 0 0 7fb03cb95130ea2d stream 0 0 0 7fb03cb95130f1fd 0 0 7fb03cb95130d2bd stream 0 0 0 7fb03cb95130c895 0 0 7fb03cb95130c895 stream 0 0 0 7fb03cb95130d2bd 0 0 7fb03cb95130cbb5 stream 0 0 7fb03cb937de855d 0 0 0 /Library/Application Support/LANDesk/tmp/socket/sys 7fb03cb95130d065 stream 0 0 0 7fb03cb95130d5dd 0 0 7fb03cb95130d5dd stream 0 0 0 7fb03cb95130d065 0 0 7fb03cb95130ec85 stream 0 0 0 7fb03cb95130ee15 0 0 7fb03cb95130ee15 stream 0 0 0 7fb03cb95130ec85 0 0 7fb03cb95130d76d stream 0 0 0 7fb03cb95130d12d 0 0 7fb03cb95130d12d stream 0 0 0 7fb03cb95130d76d 0 0 7fb03cb95130ed4d stream 0 0 0 7fb03cb95130eedd 0 0 7fb03cb95130eedd stream 0 0 0 7fb03cb95130ed4d 0 0 7fb03cb95130e965 stream 0 0 0 7fb03cb95130e3ed 0 0 /var/run/mDNSResponder 7fb03cb95130e3ed stream 0 0 0 7fb03cb95130e965 0 0 7fb03cb937d3925d stream 0 0 0 7fb03cb937d39c85 0 0 /var/run/mDNSResponder 7fb03cb937d39c85 stream 0 0 0 7fb03cb937d3925d 0 0 7fb03cb937d381f5 stream 0 0 0 0 0 0 7fb03cb935b005e5 stream 0 0 0 7fb03cb935afd895 0 0 /var/run/mDNSResponder 7fb03cb935afd895 stream 0 0 0 7fb03cb935b005e5 0 0 7fb03cb94d746ed5 stream 0 0 0 7fb03cb94d748195 0 0 /var/run/mDNSResponder 7fb03cb94d748195 stream 0 0 0 7fb03cb94d746ed5 0 0 7fb03cb94a63ba8d stream 0 0 0 7fb03cb94a63d5e5 0 0 /var/run/mDNSResponder 7fb03cb94a63d5e5 stream 0 0 0 7fb03cb94a63ba8d 0 0 7fb03cb94a63cc85 stream 0 0 0 7fb03cb94a63a895 0 0 /var/run/mDNSResponder 7fb03cb94a63a895 stream 0 0 0 7fb03cb94a63cc85 0 0 7fb03cb94a63c965 stream 0 0 0 7fb03cb94a63d51d 0 0 /var/run/mDNSResponder 7fb03cb94a63d51d stream 0 0 0 7fb03cb94a63c965 0 0 7fb03cb94d747f3d stream 0 0 0 7fb03cb94d7480cd 0 0 /var/run/mDNSResponder 7fb03cb94d7480cd stream 0 0 0 7fb03cb94d747f3d 0 0 7fb03cb94a63abb5 stream 0 0 0 7fb03cb94a63c7d5 0 0 /var/run/mDNSResponder 7fb03cb94a63c7d5 stream 0 0 0 7fb03cb94a63abb5 0 0 7fb03cb95130dce5 stream 0 0 0 7fb03cb95130e005 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/filesystem-event.sock 7fb03cb95130e005 stream 0 0 0 7fb03cb95130dce5 0 0 7fb03cb935b001fd stream 0 0 0 7fb03cb935afdaed 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock 7fb03cb935afdaed stream 0 0 0 7fb03cb935b001fd 0 0 7fb03cb935b0038d stream 0 0 7fb03cb9350ead1d 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock 7fb03cb935b002c5 stream 0 0 0 7fb03cb935aff0cd 0 0 vpnkit.data.sock 7fb03cb935aff0cd stream 0 0 0 7fb03cb935b002c5 0 0 7fb03cb935b00135 stream 0 0 0 7fb03cb935afdbb5 0 0 backend-for-guest.sock 7fb03cb935afdbb5 stream 0 0 0 7fb03cb935b00135 0 0 7fb03cb935affaf5 stream 0 0 0 7fb03cb935affd4d 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/lifecycle-server.sock 7fb03cb935affd4d stream 0 0 0 7fb03cb935affaf5 0 0 7fb03cb935affa2d stream 0 0 0 7fb03cb935affe15 0 0 vms/0/00000002.000005f4 7fb03cb935affe15 stream 0 0 0 7fb03cb935affa2d 0 0 7fb03cb935b0006d stream 0 0 0 7fb03cb935afffa5 0 0 vms/0/connect 7fb03cb935afffa5 stream 0 0 0 7fb03cb935b0006d 0 0 7fb03cb935affedd stream 0 0 0 7fb03cb935afdc7d 0 0 vms/0/00000002.000005f4 7fb03cb935afdc7d stream 0 0 0 7fb03cb935affedd 0 0 7fb03cb935afdd45 stream 0 0 0 7fb03cb935affc85 0 0 vms/0/connect 7fb03cb935affc85 stream 0 0 0 7fb03cb935afdd45 0 0 7fb03cb935afde0d stream 0 0 0 7fb03cb935affbbd 0 0 vms/0/00000002.000005f4 7fb03cb935affbbd stream 0 0 0 7fb03cb935afde0d 0 0 7fb03cb935afded5 stream 0 0 0 7fb03cb935aff965 0 0 vms/0/connect 7fb03cb935aff965 stream 0 0 0 7fb03cb935afded5 0 0 7fb03cb935aff89d stream 0 0 0 7fb03cb935aff7d5 0 0 vms/0/00000002.000005f4 7fb03cb935aff7d5 stream 0 0 0 7fb03cb935aff89d 0 0 7fb03cb935afdf9d stream 0 0 0 7fb03cb935aff70d 0 0 vms/0/connect 7fb03cb935aff70d stream 0 0 0 7fb03cb935afdf9d 0 0 7fb03cb935aff645 stream 0 0 0 7fb03cb935aff57d 0 0 vms/0/connect 7fb03cb935aff57d stream 0 0 0 7fb03cb935aff645 0 0 7fb03cb935afe065 stream 0 0 0 7fb03cb935aff4b5 0 0 vms/0/00000002.000005f4 7fb03cb935aff4b5 stream 0 0 0 7fb03cb935afe065 0 0 7fb03cb935aff3ed stream 0 0 7fb03cb935cd2d9d 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/filesystem-event.sock 7fb03cb935aff325 stream 0 0 7fb03cb93609fca5 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/lifecycle-server.sock 7fb03cb935aff25d stream 0 0 7fb03cb94cddc36d 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/diagnosticd.sock 7fb03cb935afe12d stream 0 0 0 7fb03cb935afe1f5 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.00001003 7fb03cb935afe1f5 stream 0 0 0 7fb03cb935afe12d 0 0 7fb03cb935aff195 stream 0 0 0 7fb03cb935afe515 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/memlogdq.sock 7fb03cb935afe515 stream 0 0 0 7fb03cb935aff195 0 0 7fb03cb935afe44d stream 0 0 7fb03cb9350eac25 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/memlogdq.sock 7fb03cb935afe8fd stream 0 0 0 7fb03cb935afedad 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.000007cf 7fb03cb935afedad stream 0 0 0 7fb03cb935afe8fd 0 0 7fb03cb935aff005 stream 0 0 7fb03cb938b763e5 0 0 0 vms/0/00000003.000005f5 7fb03cb935afef3d stream 0 0 7fb03cb938b761f5 0 0 0 vms/0/00000003.00000948 7fb03cb935afe5dd stream 0 0 7fb03cb938b760fd 0 0 0 vms/0/connect 7fb03cb935afe6a5 stream 0 0 0 7fb03cb935afe76d 0 0 vpnkit.eth.sock 7fb03cb935afe76d stream 0 0 0 7fb03cb935afe6a5 0 0 7fb03cb935afee75 stream 0 0 7fb03cb9360a12ed 0 0 0 backend.sock 7fb03cb935afece5 stream 0 0 7fb03cb935cd29bd 0 0 0 filesystem-export.sock 7fb03cb935afec1d stream 0 0 7fb03cb935cd43e5 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.00001003 7fb03cb935afe9c5 stream 0 0 7fb03cb935cd40fd 0 0 0 filesystem-volume.sock 7fb03cb935afeb55 stream 0 0 7fb03cb9350eaa35 0 0 0 docker-api.sock 7fb03cb935afea8d stream 0 0 7fb03cb9350eab2d 0 0 0 backend-for-guest.sock 7fb03cb93501b065 stream 0 0 7fb03cb9350ea36d 0 0 0 vpnkit.data.sock 7fb03cb937d37bb5 stream 0 0 7fb03cb9350ea465 0 0 0 vpnkit.port.sock 7fb03cb937d3a5e5 stream 0 0 7fb03cb950a0dca5 0 0 0 docker.sock 7fb03cb937d3a51d stream 0 0 7fb03cb950ab1005 0 0 0 vpnkit.pcap.sock 7fb03cb94d7495e5 stream 0 0 7fb03cb950ab0f0d 0 0 0 vpnkit.diag.sock 7fb03cb94d746895 stream 0 0 7fb03cb950aafd9d 0 0 0 vpnkit.eth.sock 7fb03cb94d7467cd stream 0 0 7fb03cb950ab0085 0 0 0 osxfs.sock 7fb03cb94d746bb5 stream 0 0 7fb03cb950ab0a35 0 0 0 vms/0/00000002.000005f4 7fb03cb94d7496ad stream 0 0 7fb03cb950a1dab5 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/gui-api.sock 7fb03cb94d7492c5 stream 0 0 0 7fb03cb94d746aed 0 0 /var/run/mDNSResponder 7fb03cb94d746aed stream 0 0 0 7fb03cb94d7492c5 0 0 7fb03cb94d748d4d stream 0 0 0 7fb03cb94d7472bd 0 0 /var/run/fctservctl.sock 7fb03cb94d7472bd stream 0 0 0 7fb03cb94d748d4d 0 0 7fb03cb94d748c85 stream 0 0 0 7fb03cb94d747385 0 0 /var/run/fctservctl.sock 7fb03cb94d747385 stream 0 0 0 7fb03cb94d748c85 0 0 7fb03cb94d748af5 stream 0 0 0 7fb03cb94d747835 0 0 /var/run/mDNSResponder 7fb03cb94d747835 stream 0 0 0 7fb03cb94d748af5 0 0 7fb03cb94d748a2d stream 0 0 0 7fb03cb94d74776d 0 0 /var/run/fctservctl.sock 7fb03cb94d74776d stream 145 0 0 7fb03cb94d748a2d 0 0 7fb03cb94d74889d stream 0 0 0 7fb03cb94d7478fd 0 0 /var/run/fctservctl.sock 7fb03cb94d7478fd stream 0 0 0 7fb03cb94d74889d 0 0 7fb03cb94d74870d stream 0 0 0 7fb03cb94d7487d5 0 0 /var/run/fctservctl.sock 7fb03cb94d7487d5 stream 0 0 0 7fb03cb94d74870d 0 0 7fb03cb94d748645 stream 0 0 0 7fb03cb94d7479c5 0 0 /var/run/fctservctl.sock 7fb03cb94d7479c5 stream 0 0 0 7fb03cb94d748645 0 0 7fb03cb94d747a8d stream 0 0 0 7fb03cb94d74857d 0 0 /tmp/olisne-WY4G9IZafUNsloCollectorServicePipe 7fb03cb94d74857d stream 0 0 0 7fb03cb94d747a8d 0 0 7fb03cb94d7484b5 stream 0 0 0 7fb03cb94d747b55 0 0 /var/run/fctservctl.sock 7fb03cb94d747b55 stream 0 0 0 7fb03cb94d7484b5 0 0 7fb03cb94d747c1d stream 0 0 0 7fb03cb94d748325 0 0 /var/run/fctservctl.sock 7fb03cb94d748325 stream 0 0 0 7fb03cb94d747c1d 0 0 7fb03cb94d7483ed stream 0 0 7fb03cb94db01655 0 0 0 /tmp/fctvpnctl.sock_501 7fb03cb94a63bc1d stream 0 0 0 7fb03cb94a63c645 0 0 /var/run/mDNSResponder 7fb03cb94a63c645 stream 0 0 0 7fb03cb94a63bc1d 0 0 7fb03cb94a63bce5 stream 0 0 0 7fb03cb94a63c57d 0 0 /var/run/mDNSResponder 7fb03cb94a63c57d stream 0 0 0 7fb03cb94a63bce5 0 0 7fb03cb94a63bdad stream 0 0 0 7fb03cb94a63c4b5 0 0 /var/run/mDNSResponder 7fb03cb94a63c4b5 stream 0 0 0 7fb03cb94a63bdad 0 0 7fb03cb94a63be75 stream 0 0 0 7fb03cb94a63c3ed 0 0 /var/run/mDNSResponder 7fb03cb94a63c3ed stream 0 0 0 7fb03cb94a63be75 0 0 7fb03cb94a63bf3d stream 0 0 0 7fb03cb94a63c325 0 0 /var/run/mDNSResponder 7fb03cb94a63c325 stream 0 0 0 7fb03cb94a63bf3d 0 0 7fb03cb94a63c195 stream 0 0 0 7fb03cb94a63c005 0 0 /var/run/mDNSResponder 7fb03cb94a63c005 stream 0 0 0 7fb03cb94a63c195 0 0 7fb03cb94a63c0cd stream 0 0 0 7fb03cb94a63c25d 0 0 /var/run/mDNSResponder 7fb03cb94a63c25d stream 0 0 0 7fb03cb94a63c0cd 0 0 7fb03cb945d3ad4d stream 0 0 0 7fb03cb93501b835 0 0 /var/run/mDNSResponder 7fb03cb945d3ae15 stream 0 0 0 7fb03cb937d377cd 0 0 /var/run/mDNSResponder 7fb03cb93501b835 stream 0 0 0 7fb03cb945d3ad4d 0 0 7fb03cb937d377cd stream 0 0 0 7fb03cb945d3ae15 0 0 7fb03cb937d3a6ad stream 0 0 0 7fb03cb937d3a06d 0 0 /var/run/mDNSResponder 7fb03cb937d3a06d stream 0 0 0 7fb03cb937d3a6ad 0 0 7fb03cb945d387cd stream 0 0 7fb03cb94d0e4a35 0 0 0 /Users/kbrazil/Library/Application Support/Fortinet/FortiClient/credentialstore.sock 7fb03cb937d3812d stream 0 0 0 7fb03cb937d3a2c5 0 0 /var/run/mDNSResponder 7fb03cb937d3a2c5 stream 0 0 0 7fb03cb937d3812d 0 0 7fb03cb945d395dd stream 0 0 0 7fb03cb945d39515 0 0 /var/run/mDNSResponder 7fb03cb945d39515 stream 0 0 0 7fb03cb945d395dd 0 0 7fb03cb945d39ce5 stream 0 0 0 7fb03cb945d39dad 0 0 /var/run/mDNSResponder 7fb03cb945d39dad stream 0 0 0 7fb03cb945d39ce5 0 0 7fb03cb937d39e15 stream 0 0 0 7fb03cb937d39645 0 0 /var/run/mDNSResponder 7fb03cb937d39645 stream 0 0 0 7fb03cb937d39e15 0 0 7fb03cb937d39af5 stream 0 0 7fb03cb9418d26cd 0 0 0 /var/folders/vr/4gybj0rs1_51r0sy8d5qv3jm0000gn/T/.com.google.Chrome.ucLRTi/SingletonSocket 7fb03cb93ceaeaed stream 0 0 0 7fb03cb93ceb151d 0 0 /var/run/mDNSResponder 7fb03cb93ceb151d stream 0 0 0 7fb03cb93ceaeaed 0 0 7fb03cb93ceae95d stream 0 0 0 7fb03cb93ceb138d 0 0 /var/run/mDNSResponder 7fb03cb93ceb138d stream 0 0 0 7fb03cb93ceae95d 0 0 7fb03cb93ceb12c5 stream 0 0 0 7fb03cb93ceaed45 0 0 /var/run/mDNSResponder 7fb03cb93ceaed45 stream 0 0 0 7fb03cb93ceb12c5 0 0 7fb03cb93ceaee0d stream 0 0 0 7fb03cb93ceaeed5 0 0 /var/run/mDNSResponder 7fb03cb93ceaeed5 stream 0 0 0 7fb03cb93ceaee0d 0 0 7fb03cb93ceb106d stream 0 0 0 7fb03cb93ceaef9d 0 0 /var/run/mDNSResponder 7fb03cb93ceaef9d stream 0 0 0 7fb03cb93ceb106d 0 0 7fb03cb93ceaf2bd stream 0 0 0 7fb03cb93ceb0fa5 0 0 /var/run/mDNSResponder 7fb03cb93ceb0fa5 stream 0 0 0 7fb03cb93ceaf2bd 0 0 7fb03cb93ceaf515 stream 0 0 0 7fb03cb93ceb0e15 0 0 7fb03cb93ceb0e15 stream 0 0 0 7fb03cb93ceaf515 0 0 7fb03cb93ceaf5dd stream 0 0 0 7fb03cb93ceb0d4d 0 0 7fb03cb93ceb0d4d stream 0 0 0 7fb03cb93ceaf5dd 0 0 7fb03cb93ceb0c85 stream 0 0 0 7fb03cb93ceaf6a5 0 0 7fb03cb93ceaf6a5 stream 0 0 0 7fb03cb93ceb0c85 0 0 7fb03cb93ceaf76d stream 0 0 0 7fb03cb93ceb0bbd 0 0 7fb03cb93ceb0bbd stream 0 0 0 7fb03cb93ceaf76d 0 0 7fb03cb93ceb0af5 stream 0 0 0 7fb03cb93ceafa8d 0 0 /var/run/mDNSResponder 7fb03cb93ceafa8d stream 0 0 0 7fb03cb93ceb0af5 0 0 7fb03cb93ceb057d stream 0 0 0 7fb03cb93ceb070d 0 0 /var/run/mDNSResponder 7fb03cb93ceb070d stream 0 0 0 7fb03cb93ceb057d 0 0 7fb03cb93ceafce5 stream 0 0 0 7fb03cb93ceaf9c5 0 0 /var/run/mDNSResponder 7fb03cb93ceaf9c5 stream 0 0 0 7fb03cb93ceafce5 0 0 7fb03cb93ceb025d stream 0 0 7fb03cb93ea4fca5 0 0 0 /tmp/fctvpnctl.sock 7fb03cb93ceb0325 stream 0 0 7fb03cb93ea5074d 0 0 0 /var/tmp/filesystemui.socket 7fb03cb93ceafb55 stream 0 0 7fb03cb93ea1cd1d 0 0 0 /private/tmp/com.apple.launchd.WbUfpjQ9cD/Render 7fb03cb93ceb00cd stream 0 0 7fb03cb93ea42275 0 0 0 /private/tmp/com.apple.launchd.WdCvj7HQdi/Listeners 7fb03cb937d394b5 stream 0 0 7fb03cb938289085 0 0 0 /tmp/olisne-WY4G9IZafUNsloCollectorServicePipe 7fb03cb93501a895 stream 0 0 0 7fb03cb93501d51d 0 0 /var/run/mDNSResponder 7fb03cb93501d51d stream 0 0 0 7fb03cb93501a895 0 0 7fb03cb93501aa25 stream 0 0 0 7fb03cb93501aaed 0 0 /var/run/mDNSResponder 7fb03cb93501aaed stream 0 0 0 7fb03cb93501aa25 0 0 7fb03cb93501d38d stream 0 0 0 7fb03cb93501d2c5 0 0 /var/run/mDNSResponder 7fb03cb93501d2c5 stream 0 0 0 7fb03cb93501d38d 0 0 7fb03cb93501abb5 stream 0 0 0 7fb03cb93501d1fd 0 0 /var/run/mDNSResponder 7fb03cb93501d1fd stream 0 0 0 7fb03cb93501abb5 0 0 7fb03cb93501aed5 stream 0 0 0 7fb03cb93501ae0d 0 0 /var/run/mDNSResponder 7fb03cb93501ae0d stream 0 0 0 7fb03cb93501aed5 0 0 7fb03cb93501b44d stream 0 0 0 7fb03cb93501cedd 0 0 /var/run/mDNSResponder 7fb03cb93501cedd stream 0 0 0 7fb03cb93501b44d 0 0 7fb03cb93501d06d stream 0 0 0 7fb03cb93501b385 0 0 7fb03cb93501b385 stream 0 0 0 7fb03cb93501d06d 0 0 7fb03cb93501cfa5 stream 0 0 7fb03cb93763e7cd 0 0 0 /var/run/displaypolicyd/state 7fb03cb93501b76d stream 0 0 7fb03cb936ea7d9d 0 0 0 /var/run/pppconfd 7fb03cb93501c965 stream 0 0 7fb03cb9355ec3e5 0 0 0 /var/run/epctrl.sock 7fb03cb93501c89d stream 0 0 7fb03cb9355ec1f5 0 0 0 /var/run/fctvpnctrl.sock 7fb03cb93501c7d5 stream 0 0 7fb03cb9355ec0fd 0 0 0 /var/run/fctservctl.sock 7fb03cb93501c70d stream 0 0 7fb03cb9355ec005 0 0 0 /var/run/com.docker.vmnetd.sock 7fb03cb93501c645 stream 0 0 7fb03cb93557e845 0 0 0 /var/rpc/ncalrpc/srvsvc 7fb03cb93501b9c5 stream 0 0 7fb03cb93557e36d 0 0 0 /var/rpc/ncacn_np/srvsvc 7fb03cb93501c57d stream 0 0 7fb03cb93557e55d 0 0 0 /var/run/usbmuxd 7fb03cb93501c4b5 stream 0 0 7fb03cb93557e655 0 0 0 /var/rpc/ncalrpc/wkssvc 7fb03cb93501ba8d stream 0 0 7fb03cb93557e74d 0 0 0 /var/rpc/ncacn_np/wkssvc 7fb03cb93501c3ed stream 0 0 7fb03cb9355617cd 0 0 0 /var/rpc/ncacn_np/mdssvc 7fb03cb93501c325 stream 0 0 7fb03cb9355636cd 0 0 0 /var/rpc/ncalrpc/lsarpc 7fb03cb93501c25d stream 0 0 7fb03cb9355618c5 0 0 0 /var/rpc/ncacn_np/lsarpc 7fb03cb93501bb55 stream 0 0 7fb03cb9355635d5 0 0 0 /var/run/mDNSResponder 7fb03cb93501bc1d stream 0 0 7fb03cb9355634dd 0 0 0 /var/run/systemkeychaincheck.socket 7fb03cb93501bce5 stream 0 0 7fb03cb935561ab5 0 0 0 /private/var/run/.sim_diagnosticd_socket 7fb03cb93501bdad stream 0 0 7fb03cb935561bad 0 0 0 /var/run/portmap.socket 7fb03cb93501be75 stream 0 0 7fb03cb935511d1d 0 0 0 /var/run/vpncontrol.sock 7fb03cb93501bf3d stream 0 0 7fb03cb9354fd085 0 0 0 /var/rpc/ncalrpc/NETLOGON 7fb03cb93501c005 stream 0 0 7fb03cb9354e58c5 0 0 0 /private/var/run/cupsd 7fb03cb95130ddad dgram 0 0 0 7fb03cb93501c195 0 7fb03cb945d3afa5 7fb03cb94a63b065 dgram 0 0 0 7fb03cb94a63b9c5 7fb03cb94a63b9c5 0 7fb03cb94a63b9c5 dgram 0 0 0 7fb03cb94a63b065 7fb03cb94a63b065 0 7fb03cb945d3afa5 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94a63ad45 7fb03cb94a63ad45 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94a63af9d 7fb03cb94a63af9d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceae7cd 7fb03cb93ceae7cd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb945d3b51d 7fb03cb945d3b51d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb945d3a3ed 7fb03cb945d3a3ed dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d3989d 7fb03cb937d3989d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94a63b76d 7fb03cb94a63b76d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb95130d44d 7fb03cb95130d44d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb95130cf9d 7fb03cb95130cf9d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93501d6ad 7fb03cb94d7491fd dgram 0 0 0 7fb03cb94d7476a5 7fb03cb94d7476a5 0 7fb03cb94d7476a5 dgram 0 0 0 7fb03cb94d7491fd 7fb03cb94d7491fd 0 7fb03cb93501d6ad dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94a63d6ad 7fb03cb94d748005 dgram 0 0 0 7fb03cb94d749455 7fb03cb94d749455 0 7fb03cb94d749455 dgram 0 0 0 7fb03cb94d748005 7fb03cb94d748005 0 7fb03cb94d7475dd dgram 0 0 0 7fb03cb94d747065 7fb03cb94d747065 0 7fb03cb94d747065 dgram 0 0 0 7fb03cb94d7475dd 7fb03cb94d7475dd 0 7fb03cb93501a95d dgram 0 0 0 7fb03cb93501d455 7fb03cb93501d455 0 7fb03cb93501d455 dgram 0 0 0 7fb03cb93501a95d 7fb03cb93501a95d 0 7fb03cb95130db55 dgram 0 0 0 7fb03cb95130ebbd 7fb03cb95130ebbd 0 7fb03cb95130ebbd dgram 0 0 0 7fb03cb95130db55 7fb03cb95130db55 0 7fb03cb94a63d6ad dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94d74938d 7fb03cb94d74938d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d38a8d 7fb03cb937d38a8d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb95130d835 7fb03cb95130d835 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94d746c7d 7fb03cb945d3aedd dgram 0 0 0 7fb03cb945d3b6ad 7fb03cb945d3b6ad 0 7fb03cb945d3b6ad dgram 0 0 0 7fb03cb945d3aedd 7fb03cb945d3aedd 0 7fb03cb94d746c7d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94d74712d 7fb03cb94d74712d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d39edd 7fb03cb937d39edd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d38dad 7fb03cb937d38dad dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94a63b12d 7fb03cb94a63b12d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb95130e57d 7fb03cb95130e57d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94d74951d 7fb03cb94d74951d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94d749135 7fb03cb94d749135 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb15e5 7fb03cb93ceb15e5 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceae895 7fb03cb93ceae895 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb16ad 7fb03cb93ceb16ad dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d3a1fd 7fb03cb937d3a1fd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb945d39065 7fb03cb945d39065 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb945d38f9d 7fb03cb945d38f9d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb945d39a8d 7fb03cb945d399c5 dgram 0 0 0 7fb03cb945d3a005 7fb03cb945d3a005 0 7fb03cb945d3a005 dgram 0 0 0 7fb03cb945d399c5 7fb03cb945d399c5 0 7fb03cb945d39b55 dgram 0 0 0 7fb03cb945d39f3d 7fb03cb945d39f3d 0 7fb03cb945d39f3d dgram 0 0 0 7fb03cb945d39b55 7fb03cb945d39b55 0 7fb03cb945d39a8d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d397d5 7fb03cb937d37d45 dgram 0 0 0 7fb03cb937d37e0d 7fb03cb937d37e0d 0 7fb03cb937d37e0d dgram 0 0 0 7fb03cb937d37d45 7fb03cb937d37d45 0 7fb03cb937d397d5 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb11fd 7fb03cb93ceb11fd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceaf065 7fb03cb93ceaf065 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb0edd 7fb03cb93ceb0edd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceaf385 7fb03cb93ceaf12d dgram 0 0 0 7fb03cb93ceaf1f5 7fb03cb93ceaf1f5 0 7fb03cb93ceaf1f5 dgram 0 0 0 7fb03cb93ceaf12d 7fb03cb93ceaf12d 0 7fb03cb93ceaf385 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb0965 7fb03cb93ceb0965 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb0a2d 7fb03cb93ceb0a2d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceaf835 7fb03cb93ceaf835 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceaf8fd 7fb03cb93ceaf8fd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceafdad 7fb03cb93ceafdad dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb07d5 7fb03cb93ceb07d5 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb089d 7fb03cb93ceb0645 dgram 0 0 0 7fb03cb93ceafe75 7fb03cb93ceafe75 0 7fb03cb93ceafe75 dgram 0 0 0 7fb03cb93ceb0645 7fb03cb93ceb0645 0 7fb03cb93ceb089d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceafc1d 7fb03cb93ceb0195 dgram 0 0 0 7fb03cb93ceb0005 7fb03cb93ceb0005 0 7fb03cb93ceb0005 dgram 0 0 0 7fb03cb93ceb0195 7fb03cb93ceb0195 0 7fb03cb93ceafc1d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb03ed 7fb03cb93ceb03ed dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d39fa5 7fb03cb937d39a2d dgram 0 0 0 7fb03cb937d39bbd 7fb03cb937d39bbd 0 7fb03cb937d39bbd dgram 0 0 0 7fb03cb937d39a2d 7fb03cb937d39a2d 0 7fb03cb937d39fa5 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d39965 7fb03cb937d38065 dgram 0 0 0 7fb03cb937d37c7d 7fb03cb937d37c7d 0 7fb03cb937d37c7d dgram 0 0 0 7fb03cb937d38065 7fb03cb937d38065 0 7fb03cb937d39965 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d37f9d 7fb03cb937d37f9d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d393ed 7fb03cb937d393ed dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d3970d 7fb03cb937d3970d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93501d135 7fb03cb937d382bd dgram 0 0 0 7fb03cb937d3957d 7fb03cb937d3957d 0 7fb03cb937d3957d dgram 0 0 0 7fb03cb937d382bd 7fb03cb937d382bd 0 7fb03cb937d38c1d dgram 0 0 0 7fb03cb937d38ce5 7fb03cb937d38ce5 0 7fb03cb937d38ce5 dgram 0 0 0 7fb03cb937d38c1d 7fb03cb937d38c1d 0 7fb03cb93501d135 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93501cd4d 7fb03cb93501cd4d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93501cc85 7fb03cb93501b1f5 dgram 0 0 0 7fb03cb93501b2bd 7fb03cb93501b2bd 0 7fb03cb93501b2bd dgram 0 0 0 7fb03cb93501b1f5 7fb03cb93501b1f5 0 7fb03cb93501ce15 dgram 0 0 0 7fb03cb93501b515 7fb03cb93501b515 0 7fb03cb93501b515 dgram 0 0 0 7fb03cb93501ce15 7fb03cb93501ce15 0 7fb03cb93501b6a5 dgram 0 0 0 7fb03cb93501caf5 7fb03cb93501caf5 0 7fb03cb93501caf5 dgram 0 0 0 7fb03cb93501b6a5 7fb03cb93501b6a5 0 7fb03cb93501cc85 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93501cbbd 7fb03cb93501cbbd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93501c0cd 7fb03cb93501b8fd dgram 0 0 0 7fb03cb93501ca2d 7fb03cb93501ca2d 0 7fb03cb93501ca2d dgram 0 0 0 7fb03cb93501b8fd 7fb03cb93501b8fd 0 7fb03cb93501c0cd dgram 0 0 0 7fb03cb93501c195 0 0 7fb03cb93501c195 dgram 0 0 7fb03cb934ff43e5 0 7fb03cb95130ddad 0 /private//var/run/syslog Registered kernel control modules kctlref id unit flags pcbcount rcvbuf sndbuf name 10001 1 -1 9 0 131072 131072 com.apple.flow-divert 20002 2 -1 1 1 16384 2048 com.apple.nke.sockwall 30003 3 -1 9 0 524288 524288 com.apple.content-filter 40004 4 -1 1 0 65536 65536 com.apple.net.necp_control 50005 5 -1 1 12 65536 65536 com.apple.net.netagent 60006 6 -1 9 4 524288 524288 com.apple.net.utun_control 70007 7 -1 1 0 65536 65536 com.apple.net.ipsec_control 80008 8 -1 0 74 8192 2048 com.apple.netsrc 90009 9 -1 18 4 8192 2048 com.apple.network.statistics a000a a -1 5 0 8192 2048 com.apple.network.tcp_ccdebug b000b b -1 1 0 8192 2048 com.apple.network.advisory c000c c -1 4 0 65536 2048 com.apple.uart.BLTH d000d d -1 4 0 8192 2048 com.apple.uart.sk.BLTH e000e e -1 0 0 8192 8192 com.apple.fileutil.kext.stateful.ctl f000f f -1 0 0 8192 2048 com.apple.fileutil.kext.stateless.ctl 170017 17 -1 5 1 32768 2048 com.fortinet.fct.kext.fwnke ea0010 18 -1 5 1 8192 2048 com.fortinet.kext.avkern2 Active kernel event sockets pcb Proto Recv-Q Send-Q vendor class subcla rxbytes txbytes 7fb03cb936ead2bd kevt 0 0 1 1 0 0 0 7fb03cb936ead2f5 kevt 0 0 1 4 0 0 0 7fb03cb936eacd0d kevt 0 0 1 1 0 1414844 0 7fb03cb936eacd45 kevt 0 0 1 6 1 27716540 0 7fb03cb936ead24d kevt 0 0 1 6 1 27716540 0 7fb03cb936ead215 kevt 0 0 1 6 1 27716540 0 7fb03cb936ead1dd kevt 0 0 1 1 11 0 0 7fb03cb936eacd7d kevt 0 0 1 6 1 27716540 0 7fb03cb936eacdb5 kevt 0 0 1 6 1 27716540 0 7fb03cb936eacded kevt 0 0 1 6 1 27716744 0 7fb03cb936eace25 kevt 0 0 1 6 1 27716744 0 7fb03cb936eace5d kevt 0 0 1 6 1 27716744 0 7fb03cb936ead1a5 kevt 0 0 1 6 1 27718800 0 7fb03cb936eace95 kevt 0 0 1 6 1 27719296 0 7fb03cb936eacecd kevt 0 0 1 6 1 27719296 0 7fb03cb936eacf05 kevt 0 0 1 6 1 27719296 0 7fb03cb936ead16d kevt 0 0 1 1 6 823488 0 7fb03cb936eacf3d kevt 0 0 1 1 1 836 0 7fb03cb936eacf75 kevt 0 0 1 6 1 27719456 0 7fb03cb936eacfad kevt 0 0 1 1 2 444256 0 7fb03cb936ead135 kevt 0 0 1 1 10 0 0 7fb03cb936eacfe5 kevt 0 0 1000 5 11 144855 0 7fb03cb936ead01d kevt 0 0 1 1 7 151680 0 7fb03cb936ead055 kevt 0 0 1 1 1 836 0 7fb03cb936ead08d kevt 0 0 1 1 2 444256 0 7fb03cb936ead0fd kevt 0 0 1 3 3 0 0 7fb03cb936ead0c5 kevt 0 0 1 1 0 1422896 0 Active kernel control sockets pcb Proto Recv-Q Send-Q rxbytes txbytes unit id name 7fb03cb937d0314d kctl 0 0 791268 657340 1 2 com.apple.nke.sockwall 7fb03cb9375d4f4d kctl 0 0 0 0 1 5 com.apple.net.netagent 7fb03cb9375d5ded kctl 0 0 0 0 2 5 com.apple.net.netagent 7fb03cb9375d4d6d kctl 0 0 0 0 3 5 com.apple.net.netagent 7fb03cb9375d656d kctl 0 0 0 0 4 5 com.apple.net.netagent 7fb03cb9375d4c4d kctl 0 0 0 0 5 5 com.apple.net.netagent 7fb03cb9375d662d kctl 0 0 0 0 6 5 com.apple.net.netagent 7fb03cb9608a1a6d kctl 0 0 0 0 7 5 com.apple.net.netagent 7fb03cb94c7488ed kctl 0 0 0 0 8 5 com.apple.net.netagent 7fb03cb93e7299ad kctl 0 0 0 0 9 5 com.apple.net.netagent 7fb03cb93e72b5cd kctl 0 0 0 0 10 5 com.apple.net.netagent 7fb03cb93e72b6ed kctl 0 0 0 0 11 5 com.apple.net.netagent 7fb03cb93f60182d kctl 0 0 0 0 12 5 com.apple.net.netagent 7fb03cb93f6020cd kctl 0 0 30618 0 1 6 com.apple.net.utun_control 7fb03cb94ff8f9cd kctl 0 0 0 0 2 6 com.apple.net.utun_control 7fb03cb94ff8fded kctl 0 0 0 0 3 6 com.apple.net.utun_control 7fb03cb94ff8f48d kctl 0 0 0 0 4 6 com.apple.net.utun_control 7fb03cb9375d644d kctl 0 0 224 144 1 8 com.apple.netsrc 7fb03cb93c237d8d kctl 0 0 224 144 2 8 com.apple.netsrc 7fb03cb93c23682d kctl 0 0 9352 6012 3 8 com.apple.netsrc 7fb03cb9503efa6d kctl 0 0 4144 2664 4 8 com.apple.netsrc 7fb03cb93cc9038d kctl 0 0 376544 242064 5 8 com.apple.netsrc 7fb03cb93d3a7d6d kctl 0 0 3192 2052 6 8 com.apple.netsrc 7fb03cb9608a314d kctl 0 0 630280 405180 7 8 com.apple.netsrc 7fb03cb93eefef0d kctl 0 0 2520 1620 8 8 com.apple.netsrc 7fb03cb93f3d2e8d kctl 0 0 2520 1620 9 8 com.apple.netsrc 7fb03cb93f60260d kctl 0 0 32368 20808 10 8 com.apple.netsrc 7fb03cb93f601d6d kctl 0 0 120568 77508 11 8 com.apple.netsrc 7fb03cb93fb8e30d kctl 0 0 6272 4032 12 8 com.apple.netsrc 7fb03cb93fb8d8ed kctl 0 0 896 576 13 8 com.apple.netsrc 7fb03cb93f3d384d kctl 0 0 1344 864 14 8 com.apple.netsrc 7fb03cb940438bad kctl 0 0 81816 52596 15 8 com.apple.netsrc 7fb03cb949ba84ed kctl 0 0 6328 4068 16 8 com.apple.netsrc 7fb03cb94043968d kctl 0 0 2520 1620 17 8 com.apple.netsrc 7fb03cb940c3594d kctl 0 0 74760 48060 18 8 com.apple.netsrc 7fb03cb941b872cd kctl 0 0 2520 1620 19 8 com.apple.netsrc 7fb03cb943aa506d kctl 0 0 309064 198684 20 8 com.apple.netsrc 7fb03cb941451a8d kctl 0 0 31864 20484 21 8 com.apple.netsrc 7fb03cb94510508d kctl 0 0 2632 1692 22 8 com.apple.netsrc 7fb03cb9459058ed kctl 0 0 133392 85752 23 8 com.apple.netsrc 7fb03cb945c5bf0d kctl 0 0 2016 1296 24 8 com.apple.netsrc 7fb03cb94766e96d kctl 0 0 14280 9180 25 8 com.apple.netsrc 7fb03cb946464c6d kctl 0 0 1568 1008 26 8 com.apple.netsrc 7fb03cb946463fad kctl 0 0 203224 130644 27 8 com.apple.netsrc 7fb03cb94646394d kctl 0 0 338184 217404 28 8 com.apple.netsrc 7fb03cb95002e5ad kctl 0 0 616 396 29 8 com.apple.netsrc 7fb03cb94fe5d12d kctl 0 0 14280 9180 30 8 com.apple.netsrc 7fb03cb95fb8feed kctl 0 0 112 72 31 8 com.apple.netsrc 7fb03cb9471823cd kctl 0 0 438592 281952 32 8 com.apple.netsrc 7fb03cb96085390d kctl 0 0 166040 106740 33 8 com.apple.netsrc 7fb03cb94686a3cd kctl 0 0 336 216 34 8 com.apple.netsrc 7fb03cb94804f18d kctl 0 0 57792 37152 35 8 com.apple.netsrc 7fb03cb94804f42d kctl 0 0 336 216 36 8 com.apple.netsrc 7fb03cb94804fead kctl 0 0 1568 1008 37 8 com.apple.netsrc 7fb03cb94fefcd2d kctl 0 0 8512 5472 38 8 com.apple.netsrc 7fb03cb94f9330ed kctl 0 0 9520 6120 39 8 com.apple.netsrc 7fb03cb9496ffb8d kctl 0 0 4816 3096 40 8 com.apple.netsrc 7fb03cb95e70872d kctl 0 0 203448 130788 41 8 com.apple.netsrc 7fb03cb94c8769ad kctl 0 0 280616 180396 42 8 com.apple.netsrc 7fb03cb9508e426d kctl 0 0 112 72 43 8 com.apple.netsrc 7fb03cb95f702d8d kctl 0 0 112 72 44 8 com.apple.netsrc 7fb03cb94d86f2cd kctl 0 0 103040 66240 45 8 com.apple.netsrc 7fb03cb94e49c2ad kctl 0 0 56 36 46 8 com.apple.netsrc 7fb03cb95eff106d kctl 0 0 327936 210816 47 8 com.apple.netsrc 7fb03cb93aa79fcd kctl 0 0 8064 5184 48 8 com.apple.netsrc 7fb03cb94f65e74d kctl 0 0 3136 2016 49 8 com.apple.netsrc 7fb03cb94f8944ad kctl 0 0 6888 4428 50 8 com.apple.netsrc 7fb03cb94f931d6d kctl 0 0 336 216 51 8 com.apple.netsrc 7fb03cb94f9d11ad kctl 0 0 6720 4320 52 8 com.apple.netsrc 7fb03cb95fbb0aed kctl 0 0 28448 18288 53 8 com.apple.netsrc 7fb03cb95f88ec4d kctl 0 0 63000 40500 54 8 com.apple.netsrc 7fb03cb9496ffa0d kctl 0 0 2576 1656 55 8 com.apple.netsrc 7fb03cb94c736fcd kctl 0 0 336 216 56 8 com.apple.netsrc 7fb03cb95477236d kctl 0 0 336 216 57 8 com.apple.netsrc 7fb03cb95e1a588d kctl 0 0 7336 4716 58 8 com.apple.netsrc 7fb03cb95e1a726d kctl 0 0 12544 8064 59 8 com.apple.netsrc 7fb03cb94ed4f24d kctl 0 0 112 72 60 8 com.apple.netsrc 7fb03cb95f46cc6d kctl 0 0 11872 7632 61 8 com.apple.netsrc 7fb03cb94fb5ad2d kctl 0 0 168 108 62 8 com.apple.netsrc 7fb03cb95cb8b9ad kctl 0 0 1456 936 63 8 com.apple.netsrc 7fb03cb954772d8d kctl 0 0 336 216 64 8 com.apple.netsrc 7fb03cb950171fad kctl 0 0 672 432 65 8 com.apple.netsrc 7fb03cb9375d590d kctl 0 0 336 216 66 8 com.apple.netsrc 7fb03cb94686a1ed kctl 0 0 168 108 67 8 com.apple.netsrc 7fb03cb94ffdd1ad kctl 0 0 129808 83448 68 8 com.apple.netsrc 7fb03cb94ff8f96d kctl 0 0 168 108 69 8 com.apple.netsrc 7fb03cb95e6c8e8d kctl 0 0 18648 11988 70 8 com.apple.netsrc 7fb03cb94b5af2ad kctl 0 0 224 144 71 8 com.apple.netsrc 7fb03cb96074aa6d kctl 0 0 112 72 72 8 com.apple.netsrc 7fb03cb95bff57cd kctl 0 0 56 36 74 8 com.apple.netsrc 7fb03cb95fc8056d kctl 0 0 112 72 77 8 com.apple.netsrc 7fb03cb937d02e4d kctl 0 0 216428 44 1 9 com.apple.network.statistics 7fb03cb93e09b08d kctl 0 0 144713152 30152 2 9 com.apple.network.statistics 7fb03cb93e099a0d kctl 0 0 0 0 3 9 com.apple.network.statistics 7fb03cb93e099bed kctl 0 0 6100 2148 4 9 com.apple.network.statistics 7fb03cb9603d82cd kctl 0 0 0 0 1 23 com.fortinet.fct.kext.fwnke 7fb03cb9603d67cd kctl 0 0 20960 240 1 24 com.fortinet.kext.avkern2 jc-1.17.3/tests/fixtures/osx-10.14.6/netstat-An.json000066400000000000000000004261461415226333200215570ustar00rootroot00000000000000[{"socket": "7fb03cb94d505aed", "flowhash": "cedd0cbf", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "140.82.113.26", "state": "ESTABLISHED", "kind": "network", "local_port": "5486", "foreign_port": "443", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5486, "foreign_port_num": 443}, {"socket": "7fb03cb94d692475", "flowhash": "1c9f9fcd", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "208.91.113.36", "state": "ESTABLISHED", "kind": "network", "local_port": "5480", "foreign_port": "443", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5480, "foreign_port_num": 443}, {"socket": "7fb03cb94b25de55", "flowhash": "dbe59bf8", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "140.82.112.26", "state": "ESTABLISHED", "kind": "network", "local_port": "5478", "foreign_port": "443", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5478, "foreign_port_num": 443}, {"socket": "7fb03cb95fad8165", "flowhash": "6a3d6e4", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.201", "state": "ESTABLISHED", "kind": "network", "local_port": "5450", "foreign_port": "4923", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5450, "foreign_port_num": 4923}, {"socket": "7fb03cb946c1cbcd", "flowhash": "3c023c0", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "2600:1700:bab0:d", "foreign_address": "2607:f8b0:4003:c", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "9", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 9}, {"socket": "7fb03cb95fad77dd", "flowhash": "3f163cd2", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.64", "state": "ESTABLISHED", "kind": "network", "local_port": "5450", "foreign_port": "53380", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5450, "foreign_port_num": 53380}, {"socket": "7fb03cb94221360d", "flowhash": "cc0e0c2a", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "2600:1700:bab0:d", "foreign_address": "2603:1030:b00::e", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb937c20e4d", "flowhash": "8e998322", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "2600:1700:bab0:d", "foreign_address": "2620:1ec:21::14", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "44", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 44}, {"socket": "7fb03cb93c75d475", "flowhash": "d53fb648", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.236.87.93", "state": "ESTABLISHED", "kind": "network", "local_port": "5452", "foreign_port": "8081", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5452, "foreign_port_num": 8081}, {"socket": "7fb03cb937c2140d", "flowhash": "e013f438", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "2600:1700:bab0:d", "foreign_address": "2607:f8b0:4000:8", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb94b718aed", "flowhash": "bcd5aa6f", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.88", "state": "ESTABLISHED", "kind": "network", "local_port": "5452", "foreign_port": "49153", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5452, "foreign_port_num": 49153}, {"socket": "7fb03cb94b716e55", "flowhash": "30944ff3", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.89", "state": "ESTABLISHED", "kind": "network", "local_port": "5451", "foreign_port": "49152", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5451, "foreign_port_num": 49152}, {"socket": "7fb03cb93c75b7dd", "flowhash": "d54ab36f", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.72", "state": "ESTABLISHED", "kind": "network", "local_port": "5450", "foreign_port": "55617", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5450, "foreign_port_num": 55617}, {"socket": "7fb03cb93b2d6e55", "flowhash": "d11ddd76", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "52.114.148.56", "state": "ESTABLISHED", "kind": "network", "local_port": "5451", "foreign_port": "443", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5451, "foreign_port_num": 443}, {"socket": "7fb03cb94a8f8d0d", "flowhash": "88c31bcb", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb94a8f988d", "flowhash": "a10400b8", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb948e8f88d", "flowhash": "cd67a7b", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "2600:1700:bab0:d", "foreign_address": "2607:f8b0:4003:c", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "5", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 5}, {"socket": "7fb03cb94bcb6475", "flowhash": "4ca24b6e", "proto": "tcp4", "recv_q": 31, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.236.87.93", "state": "CLOSE_WAIT", "kind": "network", "local_port": "5442", "foreign_port": "8081", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5442, "foreign_port_num": 8081}, {"socket": "7fb03cb94b4f518d", "flowhash": "25c58fec", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94bcb47dd", "flowhash": "b164479", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "127.0.0.1", "state": "ESTABLISHED", "kind": "network", "local_port": "53755", "foreign_port": "53763", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 53755, "foreign_port_num": 53763}, {"socket": "7fb03cb94b433e55", "flowhash": "f28b9248", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "127.0.0.1", "state": "ESTABLISHED", "kind": "network", "local_port": "53763", "foreign_port": "53755", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 53763, "foreign_port_num": 53755}, {"socket": "7fb03cb94b719475", "flowhash": "316c063a", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "104.155.21.255", "state": "ESTABLISHED", "kind": "network", "local_port": "5359", "foreign_port": "555", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5359, "foreign_port_num": 555}, {"socket": "7fb03cb946c1ba8d", "flowhash": "d32bc928", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94c066aed", "flowhash": "fb73c2ca", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "17.57.144.20", "state": "ESTABLISHED", "kind": "network", "local_port": "5263", "foreign_port": "5223", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5263, "foreign_port_num": 5223}, {"socket": "7fb03cb94d2ebaed", "flowhash": "22dc0e42", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "192.168.1.80", "state": "ESTABLISHED", "kind": "network", "local_port": "5179", "foreign_port": "548", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5179, "foreign_port_num": 548}, {"socket": "7fb03cb94a8f818d", "flowhash": "5e12e220", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94a8f704d", "flowhash": "16ca6e94", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb942212a8d", "flowhash": "da4b1f7d", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb948e8dbcd", "flowhash": "4aeb1af1", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94a8f92cd", "flowhash": "6859cfec", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb946c1e2cd", "flowhash": "248b598b", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb942213bcd", "flowhash": "56762cbf", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb948e8d60d", "flowhash": "d29e9efa", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb946c1d18d", "flowhash": "60f3fa15", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94b4347dd", "flowhash": "a1f7c428", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.235.123.194", "state": "CLOSE_WAIT", "kind": "network", "local_port": "5164", "foreign_port": "555", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5164, "foreign_port_num": 555}, {"socket": "7fb03cb948047aed", "flowhash": "ceac8539", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.235.123.194", "state": "CLOSE_WAIT", "kind": "network", "local_port": "5164", "foreign_port": "555", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5164, "foreign_port_num": 555}, {"socket": "7fb03cb963503e55", "flowhash": "d98dfd14", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.235.123.194", "state": "CLOSE_WAIT", "kind": "network", "local_port": "5164", "foreign_port": "555", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5164, "foreign_port_num": 555}, {"socket": "7fb03cb937c202cd", "flowhash": "2e36177f", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "6", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 6, "foreign_port_num": 4}, {"socket": "7fb03cb946c1c60d", "flowhash": "aaabe009", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "5", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 5}, {"socket": "7fb03cb948536475", "flowhash": "dc1e01a0", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "96.45.36.31", "state": "ESTABLISHED", "kind": "network", "local_port": "5879", "foreign_port": "443", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5879, "foreign_port_num": 443}, {"socket": "7fb03cb94b38e7dd", "flowhash": "e3b8b675", "proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "127.0.0.1", "state": "CLOSE_WAIT", "kind": "network", "local_port": "9592", "foreign_port": "58704", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 9592, "foreign_port_num": 58704}, {"socket": "7fb03cb94d691165", "flowhash": "7eee3b1", "proto": "tcp4", "recv_q": 31, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "35.236.87.93", "state": "CLOSE_WAIT", "kind": "network", "local_port": "5346", "foreign_port": "8081", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 5346, "foreign_port_num": 8081}, {"socket": "7fb03cb948e8f2cd", "flowhash": "e7486da9", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb94221304d", "flowhash": "3e982c00", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb937c2088d", "flowhash": "30000ae7", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "5", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 5, "foreign_port_num": 4}, {"socket": "7fb03cb94b4f4bcd", "flowhash": "57e076f4", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94221474d", "flowhash": "6465b356", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb94a8f6a8d", "flowhash": "bed25b95", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb937c1fd0d", "flowhash": "33613be8", "proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "4", "foreign_port": "4", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 4, "foreign_port_num": 4}, {"socket": "7fb03cb93c70600d", "flowhash": "777662f1", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "58043", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 58043}, {"socket": "7fb03cb93c709f4d", "flowhash": "b64a4fe1", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "63678", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 63678}, {"socket": "7fb03cb93c708c0d", "flowhash": "48ba21c8", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "60774", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 60774}, {"socket": "7fb03cb93c70760d", "flowhash": "7f0afb2c", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "51411", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 51411}, {"socket": "7fb03cb93c707b8d", "flowhash": "7c49f0f1", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "57119", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 57119}, {"socket": "7fb03cb93c70734d", "flowhash": "c750f7f0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "61217", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 61217}, {"socket": "7fb03cb93c70810d", "flowhash": "2308a9b6", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "56091", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 56091}, {"socket": "7fb03cb93c707e4d", "flowhash": "4b2ff4b3", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "58807", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 58807}, {"socket": "7fb03cb9371e2d4d", "flowhash": "8d16cd6b", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "54338", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 54338}, {"socket": "7fb03cb93721310d", "flowhash": "f4140344", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "3722", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 3722}, {"socket": "7fb03cb93d5b800d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5353}, {"socket": "7fb03cb93c7ba60d", "flowhash": "7fd9393b", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "61224", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 61224}, {"socket": "7fb03cb93c7b8a8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb939b0470d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c706dcd", "flowhash": "f725c38f", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "*", "state": null, "kind": "network", "local_port": "63995", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 63995}, {"socket": "7fb03cb93c708ecd", "flowhash": "5ed0c674", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "192.168.1.221", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5063", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5063}, {"socket": "7fb03cb93c70868d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "33354", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 33354}, {"socket": "7fb03cb93c70658d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "33355", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 33355}, {"socket": "7fb03cb934b578cd", "flowhash": "530d4d40", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "61982", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 61982}, {"socket": "7fb03cb934b59c8d", "flowhash": "91b8382", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "61982", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 61982}, {"socket": "7fb03cb934b56dcd", "flowhash": "ca5be4ea", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "52378", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 52378}, {"socket": "7fb03cb934b5760d", "flowhash": "3462e1b2", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "52378", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 52378}, {"socket": "7fb03cb934b5944d", "flowhash": "58e06369", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "53910", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 53910}, {"socket": "7fb03cb934b5a20d", "flowhash": "e03584", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "53910", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 53910}, {"socket": "7fb03cb934b55d4d", "flowhash": "e91dd2ad", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "57674", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 57674}, {"socket": "7fb03cb934b5970d", "flowhash": "da8119f1", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "57674", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 57674}, {"socket": "7fb03cb934b599cd", "flowhash": "3504cd68", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "62448", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 62448}, {"socket": "7fb03cb934b557cd", "flowhash": "941a5612", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "62448", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 62448}, {"socket": "7fb03cb934b58c0d", "flowhash": "c487a471", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "55681", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 55681}, {"socket": "7fb03cb934b5600d", "flowhash": "c4b0913", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "55681", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 55681}, {"socket": "7fb03cb93716444d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b6df00d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c8bbd4d", "flowhash": "47d61919", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5353}, {"socket": "7fb03cb93c8bc00d", "flowhash": "8148de2d", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5353}, {"socket": "7fb03cb93c8bc2cd", "flowhash": "41ad85a1", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 5353}, {"socket": "7fb03cb93c8bfc8d", "flowhash": "3d59980f", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 5353}, {"socket": "7fb03cb93c8bd34d", "flowhash": "73cc988e", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 5353}, {"socket": "7fb03cb93c8bf44d", "flowhash": "dee9266c", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5353}, {"socket": "7fb03cb93c8bdb8d", "flowhash": "0", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 5353}, {"socket": "7fb03cb937211dcd", "flowhash": "b4871709", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "51226", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 51226}, {"socket": "7fb03cb9372154cd", "flowhash": "21b31d88", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "*", "state": null, "kind": "network", "local_port": "61491", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 61491}, {"socket": "7fb03cb93b74a3cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "6096", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 6096}, {"socket": "7fb03cb93c7bb10d", "flowhash": "f1ac8ec5", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "58997", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 58997}, {"socket": "7fb03cb93b70ea8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b7129cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b71270d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b711c0d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b72d70d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b72bb8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93b747a8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93bc90a8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93bc9520d", "flowhash": "97a44721", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "52551", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 52551}, {"socket": "7fb03cb93bc90d4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93bc9100d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93bc94f4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93bc9208d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c7bcc8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c8beecd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c8be10d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c8be3cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c8be68d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93d5b7a8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c70894d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93721444d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937160a8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937160d4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93716208d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c70a20d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c70944d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93c70684d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb939b049cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb9371654cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93716100d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93716520d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937164f4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb9371628cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937162b8d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937162e4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb9371e32cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb934b56b0d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb93721394d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937cbcd4d", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"socket": "7fb03cb937cbf10d", "flowhash": "0", "proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6"}, {"socket": "7fb03cb93721184d", "flowhash": "b180dc9e", "proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 5353}, {"socket": "7fb03cb9372149cd", "flowhash": "6fa9aaf7", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "5353", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 5353}, {"socket": "7fb03cb934b583cd", "flowhash": "0", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "9595", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 9595}, {"socket": "7fb03cb934b5810d", "flowhash": "5b0b6f0f", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "138", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 138}, {"socket": "7fb03cb934b57e4d", "flowhash": "dd966d84", "proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "137", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 137}, {"socket": "7fb03cb939ad73cd", "flowhash": "0", "proto": "icm4", "recv_q": 8136, "send_q": 0, "local_address": "*", "foreign_address": "*", "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "icmp", "network_protocol": "ipv4"}, {"address": "7fb03cb95130f2c5", "type": "stream", "recv_q": 1, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130d6a5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d6a5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130f2c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130eaf5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130e70d", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb95130e70d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130eaf5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130da8d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130f38d", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb95130f38d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130da8d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e89d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130cd45", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130cd45", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130e89d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d9c5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130de75", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb95130de75", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130d9c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e0cd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb95130cc7d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb94d74825d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d748965", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d748965", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d74825d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746a25", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d7471f5", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7471f5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d746a25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747e75", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d74695d", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d74695d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d747e75", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747515", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d747ce5", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d747ce5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d747515", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748e15", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d748bbd", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d748bbd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d748e15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38835", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d389c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d389c5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d38835", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b2c5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d396a5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d396a5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3b2c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b5e5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3a645", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3a645", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3b5e5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39835", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3ac85", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3ac85", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d39835", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3a89d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3b38d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3b38d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3a89d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63aed5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63cfa5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63cfa5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63aed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63ae0d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63b5dd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63b5dd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63ae0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63cedd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63b44d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63b44d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63cedd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63d38d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63aa25", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63aa25", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63d38d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130c95d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130d1f5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb95130d1f5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130c95d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38a25", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3a195", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3a195", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d38a25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3aa2d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f5e5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130e4b5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb95130e4b5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130f5e5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d74906d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d746e0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746e0d", "type": "stream", "recv_q": 8, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d74906d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39325", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d385dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d385dd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d39325", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3876d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d3a455", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3a455", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d3876d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37a25", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d386a5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d386a5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d37a25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39195", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d38f3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38f3d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d39195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37895", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d37ed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37ed5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d37895", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d390cd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d3a38d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3a38d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d390cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b455", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3895d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3895d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3b455", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d392bd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d38e0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38e0d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d392bd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b135", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d38ed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38ed5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3b135", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3976d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3912d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3912d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3976d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d391f5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d39385", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39385", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d391f5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38c7d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb94b87f5d5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/folders/vr/4gybj0rs1_51r0sy8d5qv3jm0000gn/T/.com.microsoft.teams.okHfqO/SS", "kind": "socket"}, {"address": "7fb03cb945d39c1d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d39e75", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d39e75", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d39c1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63ac7d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63caf5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63caf5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63ac7d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d515", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130ce0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ce0d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130d515", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130caed", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130ca25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ca25", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130caed", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d385", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130f06d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f06d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130d385", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130dc1d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130e7d5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e7d5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130dc1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ced5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130f51d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f51d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130ced5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130df3d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130c7cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130c7cd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130df3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e195", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130e325", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e325", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130e195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f1fd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130ea2d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ea2d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130f1fd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d2bd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130c895", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130c895", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130d2bd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130cbb5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb937de855d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Library/Application Support/LANDesk/tmp/socket/sys", "kind": "socket"}, {"address": "7fb03cb95130d065", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130d5dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d5dd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130d065", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ec85", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130ee15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ee15", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130ec85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d76d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130d12d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d12d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130d76d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ed4d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130eedd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130eedd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130ed4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e965", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130e3ed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb95130e3ed", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130e965", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3925d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d39c85", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d39c85", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d3925d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d381f5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b005e5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afd895", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb935afd895", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935b005e5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746ed5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d748195", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d748195", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d746ed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63ba8d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63d5e5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63d5e5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63ba8d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63cc85", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63a895", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63a895", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63cc85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63c965", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63d51d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63d51d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63c965", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747f3d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d7480cd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d7480cd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d747f3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63abb5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63c7d5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c7d5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63abb5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130dce5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130e005", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/filesystem-event.sock", "kind": "socket"}, {"address": "7fb03cb95130e005", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130dce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b001fd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afdaed", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb935afdaed", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935b001fd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b0038d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9350ead1d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb935b002c5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935aff0cd", "refs": "0", "nextref": "0", "addr": "vpnkit.data.sock", "kind": "socket"}, {"address": "7fb03cb935aff0cd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935b002c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b00135", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afdbb5", "refs": "0", "nextref": "0", "addr": "backend-for-guest.sock", "kind": "socket"}, {"address": "7fb03cb935afdbb5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935b00135", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935affaf5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935affd4d", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/lifecycle-server.sock", "kind": "socket"}, {"address": "7fb03cb935affd4d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935affaf5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935affa2d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935affe15", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935affe15", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935affa2d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b0006d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afffa5", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935afffa5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935b0006d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935affedd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afdc7d", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935afdc7d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935affedd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afdd45", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935affc85", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935affc85", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afdd45", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afde0d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935affbbd", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935affbbd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afde0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afded5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935aff965", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935aff965", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afded5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff89d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935aff7d5", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935aff7d5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935aff89d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afdf9d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935aff70d", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935aff70d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afdf9d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff645", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935aff57d", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935aff57d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935aff645", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afe065", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935aff4b5", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935aff4b5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afe065", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff3ed", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb935cd2d9d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/filesystem-event.sock", "kind": "socket"}, {"address": "7fb03cb935aff325", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb93609fca5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/lifecycle-server.sock", "kind": "socket"}, {"address": "7fb03cb935aff25d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb94cddc36d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/diagnosticd.sock", "kind": "socket"}, {"address": "7fb03cb935afe12d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afe1f5", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.00001003", "kind": "socket"}, {"address": "7fb03cb935afe1f5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afe12d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff195", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afe515", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/memlogdq.sock", "kind": "socket"}, {"address": "7fb03cb935afe515", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935aff195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afe44d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9350eac25", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/memlogdq.sock", "kind": "socket"}, {"address": "7fb03cb935afe8fd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afedad", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.000007cf", "kind": "socket"}, {"address": "7fb03cb935afedad", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afe8fd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff005", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb938b763e5", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/00000003.000005f5", "kind": "socket"}, {"address": "7fb03cb935afef3d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb938b761f5", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/00000003.00000948", "kind": "socket"}, {"address": "7fb03cb935afe5dd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb938b760fd", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935afe6a5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afe76d", "refs": "0", "nextref": "0", "addr": "vpnkit.eth.sock", "kind": "socket"}, {"address": "7fb03cb935afe76d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afe6a5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afee75", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9360a12ed", "conn": "0", "refs": "0", "nextref": "0", "addr": "backend.sock", "kind": "socket"}, {"address": "7fb03cb935afece5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb935cd29bd", "conn": "0", "refs": "0", "nextref": "0", "addr": "filesystem-export.sock", "kind": "socket"}, {"address": "7fb03cb935afec1d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb935cd43e5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.00001003", "kind": "socket"}, {"address": "7fb03cb935afe9c5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb935cd40fd", "conn": "0", "refs": "0", "nextref": "0", "addr": "filesystem-volume.sock", "kind": "socket"}, {"address": "7fb03cb935afeb55", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9350eaa35", "conn": "0", "refs": "0", "nextref": "0", "addr": "docker-api.sock", "kind": "socket"}, {"address": "7fb03cb935afea8d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9350eab2d", "conn": "0", "refs": "0", "nextref": "0", "addr": "backend-for-guest.sock", "kind": "socket"}, {"address": "7fb03cb93501b065", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9350ea36d", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.data.sock", "kind": "socket"}, {"address": "7fb03cb937d37bb5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9350ea465", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.port.sock", "kind": "socket"}, {"address": "7fb03cb937d3a5e5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb950a0dca5", "conn": "0", "refs": "0", "nextref": "0", "addr": "docker.sock", "kind": "socket"}, {"address": "7fb03cb937d3a51d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb950ab1005", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.pcap.sock", "kind": "socket"}, {"address": "7fb03cb94d7495e5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb950ab0f0d", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.diag.sock", "kind": "socket"}, {"address": "7fb03cb94d746895", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb950aafd9d", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.eth.sock", "kind": "socket"}, {"address": "7fb03cb94d7467cd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb950ab0085", "conn": "0", "refs": "0", "nextref": "0", "addr": "osxfs.sock", "kind": "socket"}, {"address": "7fb03cb94d746bb5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb950ab0a35", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb94d7496ad", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb950a1dab5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/gui-api.sock", "kind": "socket"}, {"address": "7fb03cb94d7492c5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d746aed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d746aed", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d7492c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748d4d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d7472bd", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7472bd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d748d4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748c85", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d747385", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d747385", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d748c85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748af5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d747835", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d747835", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d748af5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748a2d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d74776d", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d74776d", "type": "stream", "recv_q": 145, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d748a2d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d74889d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d7478fd", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7478fd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d74889d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d74870d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d7487d5", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7487d5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d74870d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748645", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d7479c5", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7479c5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d748645", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747a8d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d74857d", "refs": "0", "nextref": "0", "addr": "/tmp/olisne-WY4G9IZafUNsloCollectorServicePipe", "kind": "socket"}, {"address": "7fb03cb94d74857d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d747a8d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7484b5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d747b55", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d747b55", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d7484b5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747c1d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d748325", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d748325", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d747c1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7483ed", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb94db01655", "conn": "0", "refs": "0", "nextref": "0", "addr": "/tmp/fctvpnctl.sock_501", "kind": "socket"}, {"address": "7fb03cb94a63bc1d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63c645", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c645", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63bc1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63bce5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63c57d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c57d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63bce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63bdad", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63c4b5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c4b5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63bdad", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63be75", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63c3ed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c3ed", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63be75", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63bf3d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63c325", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c325", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63bf3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63c195", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63c005", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c005", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63c195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63c0cd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63c25d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c25d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63c0cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3ad4d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501b835", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3ae15", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d377cd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501b835", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3ad4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d377cd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3ae15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3a6ad", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d3a06d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d3a06d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d3a6ad", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d387cd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb94d0e4a35", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Application Support/Fortinet/FortiClient/credentialstore.sock", "kind": "socket"}, {"address": "7fb03cb937d3812d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d3a2c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d3a2c5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d3812d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d395dd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d39515", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d39515", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d395dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39ce5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d39dad", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d39dad", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d39ce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39e15", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d39645", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d39645", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d39e15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39af5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9418d26cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/folders/vr/4gybj0rs1_51r0sy8d5qv3jm0000gn/T/.com.google.Chrome.ucLRTi/SingletonSocket", "kind": "socket"}, {"address": "7fb03cb93ceaeaed", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb151d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb151d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceaeaed", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceae95d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb138d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb138d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceae95d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb12c5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceaed45", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaed45", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb12c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaee0d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceaeed5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaeed5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceaee0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb106d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceaef9d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaef9d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb106d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf2bd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb0fa5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb0fa5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceaf2bd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf515", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb0e15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0e15", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceaf515", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf5dd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb0d4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0d4d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceaf5dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0c85", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceaf6a5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf6a5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb0c85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf76d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb0bbd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0bbd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceaf76d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0af5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceafa8d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceafa8d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb0af5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb057d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb070d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb070d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb057d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceafce5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceaf9c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaf9c5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceafce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb025d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb93ea4fca5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/tmp/fctvpnctl.sock", "kind": "socket"}, {"address": "7fb03cb93ceb0325", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb93ea5074d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/tmp/filesystemui.socket", "kind": "socket"}, {"address": "7fb03cb93ceafb55", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb93ea1cd1d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/tmp/com.apple.launchd.WbUfpjQ9cD/Render", "kind": "socket"}, {"address": "7fb03cb93ceb00cd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb93ea42275", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/tmp/com.apple.launchd.WdCvj7HQdi/Listeners", "kind": "socket"}, {"address": "7fb03cb937d394b5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb938289085", "conn": "0", "refs": "0", "nextref": "0", "addr": "/tmp/olisne-WY4G9IZafUNsloCollectorServicePipe", "kind": "socket"}, {"address": "7fb03cb93501a895", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501d51d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501d51d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501a895", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501aa25", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501aaed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501aaed", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501aa25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d38d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501d2c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501d2c5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501d38d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501abb5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501d1fd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501d1fd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501abb5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501aed5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501ae0d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501ae0d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501aed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b44d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501cedd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501cedd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501b44d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d06d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501b385", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b385", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501d06d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501cfa5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb93763e7cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/displaypolicyd/state", "kind": "socket"}, {"address": "7fb03cb93501b76d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb936ea7d9d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/pppconfd", "kind": "socket"}, {"address": "7fb03cb93501c965", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9355ec3e5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/epctrl.sock", "kind": "socket"}, {"address": "7fb03cb93501c89d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9355ec1f5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/fctvpnctrl.sock", "kind": "socket"}, {"address": "7fb03cb93501c7d5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9355ec0fd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb93501c70d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9355ec005", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/com.docker.vmnetd.sock", "kind": "socket"}, {"address": "7fb03cb93501c645", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb93557e845", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/srvsvc", "kind": "socket"}, {"address": "7fb03cb93501b9c5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb93557e36d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/srvsvc", "kind": "socket"}, {"address": "7fb03cb93501c57d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb93557e55d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/usbmuxd", "kind": "socket"}, {"address": "7fb03cb93501c4b5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb93557e655", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/wkssvc", "kind": "socket"}, {"address": "7fb03cb93501ba8d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb93557e74d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/wkssvc", "kind": "socket"}, {"address": "7fb03cb93501c3ed", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9355617cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/mdssvc", "kind": "socket"}, {"address": "7fb03cb93501c325", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9355636cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/lsarpc", "kind": "socket"}, {"address": "7fb03cb93501c25d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9355618c5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/lsarpc", "kind": "socket"}, {"address": "7fb03cb93501bb55", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9355635d5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501bc1d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9355634dd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/systemkeychaincheck.socket", "kind": "socket"}, {"address": "7fb03cb93501bce5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb935561ab5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/var/run/.sim_diagnosticd_socket", "kind": "socket"}, {"address": "7fb03cb93501bdad", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb935561bad", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/portmap.socket", "kind": "socket"}, {"address": "7fb03cb93501be75", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb935511d1d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/vpncontrol.sock", "kind": "socket"}, {"address": "7fb03cb93501bf3d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9354fd085", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/NETLOGON", "kind": "socket"}, {"address": "7fb03cb93501c005", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9354e58c5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/var/run/cupsd", "kind": "socket"}, {"address": "7fb03cb95130ddad", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d3afa5", "kind": "socket"}, {"address": "7fb03cb94a63b065", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63b9c5", "refs": "7fb03cb94a63b9c5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63b9c5", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63b065", "refs": "7fb03cb94a63b065", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3afa5", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63ad45", "kind": "socket"}, {"address": "7fb03cb94a63ad45", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63af9d", "kind": "socket"}, {"address": "7fb03cb94a63af9d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceae7cd", "kind": "socket"}, {"address": "7fb03cb93ceae7cd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d3b51d", "kind": "socket"}, {"address": "7fb03cb945d3b51d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d3a3ed", "kind": "socket"}, {"address": "7fb03cb945d3a3ed", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d3989d", "kind": "socket"}, {"address": "7fb03cb937d3989d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63b76d", "kind": "socket"}, {"address": "7fb03cb94a63b76d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130d44d", "kind": "socket"}, {"address": "7fb03cb95130d44d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130cf9d", "kind": "socket"}, {"address": "7fb03cb95130cf9d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501d6ad", "kind": "socket"}, {"address": "7fb03cb94d7491fd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d7476a5", "refs": "7fb03cb94d7476a5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7476a5", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d7491fd", "refs": "7fb03cb94d7491fd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d6ad", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63d6ad", "kind": "socket"}, {"address": "7fb03cb94d748005", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d749455", "refs": "7fb03cb94d749455", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d749455", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d748005", "refs": "7fb03cb94d748005", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7475dd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d747065", "refs": "7fb03cb94d747065", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747065", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d7475dd", "refs": "7fb03cb94d7475dd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501a95d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501d455", "refs": "7fb03cb93501d455", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d455", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501a95d", "refs": "7fb03cb93501a95d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130db55", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130ebbd", "refs": "7fb03cb95130ebbd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ebbd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130db55", "refs": "7fb03cb95130db55", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63d6ad", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d74938d", "kind": "socket"}, {"address": "7fb03cb94d74938d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d38a8d", "kind": "socket"}, {"address": "7fb03cb937d38a8d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130d835", "kind": "socket"}, {"address": "7fb03cb95130d835", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d746c7d", "kind": "socket"}, {"address": "7fb03cb945d3aedd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3b6ad", "refs": "7fb03cb945d3b6ad", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b6ad", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3aedd", "refs": "7fb03cb945d3aedd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746c7d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d74712d", "kind": "socket"}, {"address": "7fb03cb94d74712d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d39edd", "kind": "socket"}, {"address": "7fb03cb937d39edd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d38dad", "kind": "socket"}, {"address": "7fb03cb937d38dad", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63b12d", "kind": "socket"}, {"address": "7fb03cb94a63b12d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130e57d", "kind": "socket"}, {"address": "7fb03cb95130e57d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d74951d", "kind": "socket"}, {"address": "7fb03cb94d74951d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d749135", "kind": "socket"}, {"address": "7fb03cb94d749135", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb15e5", "kind": "socket"}, {"address": "7fb03cb93ceb15e5", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceae895", "kind": "socket"}, {"address": "7fb03cb93ceae895", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb16ad", "kind": "socket"}, {"address": "7fb03cb93ceb16ad", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d3a1fd", "kind": "socket"}, {"address": "7fb03cb937d3a1fd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d39065", "kind": "socket"}, {"address": "7fb03cb945d39065", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d38f9d", "kind": "socket"}, {"address": "7fb03cb945d38f9d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d39a8d", "kind": "socket"}, {"address": "7fb03cb945d399c5", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3a005", "refs": "7fb03cb945d3a005", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3a005", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d399c5", "refs": "7fb03cb945d399c5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39b55", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d39f3d", "refs": "7fb03cb945d39f3d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39f3d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d39b55", "refs": "7fb03cb945d39b55", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39a8d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d397d5", "kind": "socket"}, {"address": "7fb03cb937d37d45", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d37e0d", "refs": "7fb03cb937d37e0d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37e0d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d37d45", "refs": "7fb03cb937d37d45", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d397d5", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb11fd", "kind": "socket"}, {"address": "7fb03cb93ceb11fd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf065", "kind": "socket"}, {"address": "7fb03cb93ceaf065", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb0edd", "kind": "socket"}, {"address": "7fb03cb93ceb0edd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf385", "kind": "socket"}, {"address": "7fb03cb93ceaf12d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceaf1f5", "refs": "7fb03cb93ceaf1f5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf1f5", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceaf12d", "refs": "7fb03cb93ceaf12d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf385", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb0965", "kind": "socket"}, {"address": "7fb03cb93ceb0965", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb0a2d", "kind": "socket"}, {"address": "7fb03cb93ceb0a2d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf835", "kind": "socket"}, {"address": "7fb03cb93ceaf835", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf8fd", "kind": "socket"}, {"address": "7fb03cb93ceaf8fd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceafdad", "kind": "socket"}, {"address": "7fb03cb93ceafdad", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb07d5", "kind": "socket"}, {"address": "7fb03cb93ceb07d5", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb089d", "kind": "socket"}, {"address": "7fb03cb93ceb0645", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceafe75", "refs": "7fb03cb93ceafe75", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceafe75", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb0645", "refs": "7fb03cb93ceb0645", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb089d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceafc1d", "kind": "socket"}, {"address": "7fb03cb93ceb0195", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb0005", "refs": "7fb03cb93ceb0005", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0005", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb0195", "refs": "7fb03cb93ceb0195", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceafc1d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb03ed", "kind": "socket"}, {"address": "7fb03cb93ceb03ed", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d39fa5", "kind": "socket"}, {"address": "7fb03cb937d39a2d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d39bbd", "refs": "7fb03cb937d39bbd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39bbd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d39a2d", "refs": "7fb03cb937d39a2d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39fa5", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d39965", "kind": "socket"}, {"address": "7fb03cb937d38065", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d37c7d", "refs": "7fb03cb937d37c7d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37c7d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d38065", "refs": "7fb03cb937d38065", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39965", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d37f9d", "kind": "socket"}, {"address": "7fb03cb937d37f9d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d393ed", "kind": "socket"}, {"address": "7fb03cb937d393ed", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d3970d", "kind": "socket"}, {"address": "7fb03cb937d3970d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501d135", "kind": "socket"}, {"address": "7fb03cb937d382bd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d3957d", "refs": "7fb03cb937d3957d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3957d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d382bd", "refs": "7fb03cb937d382bd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38c1d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d38ce5", "refs": "7fb03cb937d38ce5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38ce5", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d38c1d", "refs": "7fb03cb937d38c1d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d135", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501cd4d", "kind": "socket"}, {"address": "7fb03cb93501cd4d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501cc85", "kind": "socket"}, {"address": "7fb03cb93501b1f5", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501b2bd", "refs": "7fb03cb93501b2bd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b2bd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501b1f5", "refs": "7fb03cb93501b1f5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501ce15", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501b515", "refs": "7fb03cb93501b515", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b515", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501ce15", "refs": "7fb03cb93501ce15", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b6a5", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501caf5", "refs": "7fb03cb93501caf5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501caf5", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501b6a5", "refs": "7fb03cb93501b6a5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501cc85", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501cbbd", "kind": "socket"}, {"address": "7fb03cb93501cbbd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501c0cd", "kind": "socket"}, {"address": "7fb03cb93501b8fd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501ca2d", "refs": "7fb03cb93501ca2d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501ca2d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501b8fd", "refs": "7fb03cb93501b8fd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501c0cd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501c195", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb934ff43e5", "conn": "0", "refs": "7fb03cb95130ddad", "nextref": "0", "addr": "/private//var/run/syslog", "kind": "socket"}, {"kctlref": "10001", "id": "1", "unit": -1, "unix_flags": "9", "pcbcount": 0, "rcvbuf": 131072, "sndbuf": 131072, "name": "com.apple.flow-divert", "kind": "Registered kernel control module"}, {"kctlref": "20002", "id": "2", "unit": -1, "unix_flags": "1", "pcbcount": 1, "rcvbuf": 16384, "sndbuf": 2048, "name": "com.apple.nke.sockwall", "kind": "Registered kernel control module"}, {"kctlref": "30003", "id": "3", "unit": -1, "unix_flags": "9", "pcbcount": 0, "rcvbuf": 524288, "sndbuf": 524288, "name": "com.apple.content-filter", "kind": "Registered kernel control module"}, {"kctlref": "40004", "id": "4", "unit": -1, "unix_flags": "1", "pcbcount": 0, "rcvbuf": 65536, "sndbuf": 65536, "name": "com.apple.net.necp_control", "kind": "Registered kernel control module"}, {"kctlref": "50005", "id": "5", "unit": -1, "unix_flags": "1", "pcbcount": 12, "rcvbuf": 65536, "sndbuf": 65536, "name": "com.apple.net.netagent", "kind": "Registered kernel control module"}, {"kctlref": "60006", "id": "6", "unit": -1, "unix_flags": "9", "pcbcount": 4, "rcvbuf": 524288, "sndbuf": 524288, "name": "com.apple.net.utun_control", "kind": "Registered kernel control module"}, {"kctlref": "70007", "id": "7", "unit": -1, "unix_flags": "1", "pcbcount": 0, "rcvbuf": 65536, "sndbuf": 65536, "name": "com.apple.net.ipsec_control", "kind": "Registered kernel control module"}, {"kctlref": "80008", "id": "8", "unit": -1, "unix_flags": "0", "pcbcount": 74, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.netsrc", "kind": "Registered kernel control module"}, {"kctlref": "90009", "id": "9", "unit": -1, "unix_flags": "18", "pcbcount": 4, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.network.statistics", "kind": "Registered kernel control module"}, {"kctlref": "a000a", "id": "a", "unit": -1, "unix_flags": "5", "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.network.tcp_ccdebug", "kind": "Registered kernel control module"}, {"kctlref": "b000b", "id": "b", "unit": -1, "unix_flags": "1", "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.network.advisory", "kind": "Registered kernel control module"}, {"kctlref": "c000c", "id": "c", "unit": -1, "unix_flags": "4", "pcbcount": 0, "rcvbuf": 65536, "sndbuf": 2048, "name": "com.apple.uart.BLTH", "kind": "Registered kernel control module"}, {"kctlref": "d000d", "id": "d", "unit": -1, "unix_flags": "4", "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.uart.sk.BLTH", "kind": "Registered kernel control module"}, {"kctlref": "e000e", "id": "e", "unit": -1, "unix_flags": "0", "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 8192, "name": "com.apple.fileutil.kext.stateful.ctl", "kind": "Registered kernel control module"}, {"kctlref": "f000f", "id": "f", "unit": -1, "unix_flags": "0", "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.fileutil.kext.stateless.ctl", "kind": "Registered kernel control module"}, {"kctlref": "170017", "id": "17", "unit": -1, "unix_flags": "5", "pcbcount": 1, "rcvbuf": 32768, "sndbuf": 2048, "name": "com.fortinet.fct.kext.fwnke", "kind": "Registered kernel control module"}, {"kctlref": "ea0010", "id": "18", "unit": -1, "unix_flags": "5", "pcbcount": 1, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.fortinet.kext.avkern2", "kind": "Registered kernel control module"}, {"pcb": "7fb03cb936ead2bd", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead2f5", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 4, "subcla": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacd0d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacd45", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead24d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead215", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead1dd", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 11, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacd7d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacdb5", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacded", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eace25", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eace5d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead1a5", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eace95", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacecd", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacf05", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead16d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 6, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacf3d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacf75", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacfad", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 2, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead135", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 10, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936eacfe5", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1000, "class": 5, "subcla": 11, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead01d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 7, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead055", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 1, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead08d", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 2, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead0fd", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 3, "subcla": 3, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb936ead0c5", "proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 0, "kind": "Active kernel event socket"}, {"pcb": "7fb03cb937d0314d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "2", "name": "com.apple.nke.sockwall", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d4f4d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d5ded", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 2, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d4d6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 3, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d656d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 4, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d4c4d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 5, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d662d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 6, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9608a1a6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 7, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94c7488ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 8, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e7299ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 9, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e72b5cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 10, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e72b6ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 11, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f60182d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 12, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f6020cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ff8f9cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 2, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ff8fded", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 3, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ff8f48d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 4, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d644d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93c237d8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 2, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93c23682d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 3, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9503efa6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 4, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93cc9038d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 5, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93d3a7d6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 6, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9608a314d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 7, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93eefef0d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 8, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f3d2e8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 9, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f60260d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 10, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f601d6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 11, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93fb8e30d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 12, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93fb8d8ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 13, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93f3d384d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 14, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb940438bad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 15, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb949ba84ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 16, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94043968d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 17, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb940c3594d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 18, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb941b872cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 19, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb943aa506d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 20, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb941451a8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 21, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94510508d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 22, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9459058ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 23, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb945c5bf0d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 24, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94766e96d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 25, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb946464c6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 26, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb946463fad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 27, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94646394d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 28, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95002e5ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 29, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94fe5d12d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 30, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95fb8feed", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 31, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9471823cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 32, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb96085390d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 33, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94686a3cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 34, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94804f18d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 35, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94804f42d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 36, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94804fead", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 37, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94fefcd2d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 38, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94f9330ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 39, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9496ffb8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 40, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95e70872d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 41, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94c8769ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 42, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9508e426d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 43, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95f702d8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 44, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94d86f2cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 45, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94e49c2ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 46, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95eff106d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 47, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93aa79fcd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 48, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94f65e74d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 49, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94f8944ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 50, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94f931d6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 51, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94f9d11ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 52, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95fbb0aed", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 53, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95f88ec4d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 54, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9496ffa0d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 55, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94c736fcd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 56, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95477236d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 57, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95e1a588d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 58, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95e1a726d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 59, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ed4f24d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 60, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95f46cc6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 61, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94fb5ad2d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 62, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95cb8b9ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 63, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb954772d8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 64, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb950171fad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 65, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9375d590d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 66, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94686a1ed", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 67, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ffdd1ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 68, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94ff8f96d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 69, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95e6c8e8d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 70, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb94b5af2ad", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 71, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb96074aa6d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 72, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95bff57cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 74, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb95fc8056d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 77, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb937d02e4d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e09b08d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 2, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e099a0d", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 3, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb93e099bed", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 4, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9603d82cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "23", "name": "com.fortinet.fct.kext.fwnke", "kind": "Active kernel control socket"}, {"pcb": "7fb03cb9603d67cd", "proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "24", "name": "com.fortinet.kext.avkern2", "kind": "Active kernel control socket"}] jc-1.17.3/tests/fixtures/osx-10.14.6/netstat-An.out000066400000000000000000002125351415226333200214100ustar00rootroot00000000000000Active Internet connections Socket Flowhash Proto Recv-Q Send-Q Local Address Foreign Address (state) 7fb03cb94d505aed cedd0cbf tcp4 0 0 192.168.1.221.5486 140.82.113.26.443 ESTABLISHED 7fb03cb94d692475 1c9f9fcd tcp4 0 0 192.168.1.221.5480 208.91.113.36.443 ESTABLISHED 7fb03cb94b25de55 dbe59bf8 tcp4 0 0 192.168.1.221.5478 140.82.112.26.443 ESTABLISHED 7fb03cb95fad8165 6a3d6e4 tcp4 0 0 192.168.1.221.5450 192.168.1.201.4923 ESTABLISHED 7fb03cb946c1cbcd 3c023c0 tcp6 0 0 2600:1700:bab0:d.5 2607:f8b0:4003:c.9 ESTABLISHED 7fb03cb95fad77dd 3f163cd2 tcp4 0 0 192.168.1.221.5450 192.168.1.64.53380 ESTABLISHED 7fb03cb94221360d cc0e0c2a tcp6 0 0 2600:1700:bab0:d.5 2603:1030:b00::e.4 ESTABLISHED 7fb03cb937c20e4d 8e998322 tcp6 0 0 2600:1700:bab0:d.5 2620:1ec:21::14.44 ESTABLISHED 7fb03cb93c75d475 d53fb648 tcp4 0 0 192.168.1.221.5452 35.236.87.93.8081 ESTABLISHED 7fb03cb937c2140d e013f438 tcp6 0 0 2600:1700:bab0:d.5 2607:f8b0:4000:8.4 ESTABLISHED 7fb03cb94b718aed bcd5aa6f tcp4 0 0 192.168.1.221.5452 192.168.1.88.49153 ESTABLISHED 7fb03cb94b716e55 30944ff3 tcp4 0 0 192.168.1.221.5451 192.168.1.89.49152 ESTABLISHED 7fb03cb93c75b7dd d54ab36f tcp4 0 0 192.168.1.221.5450 192.168.1.72.55617 ESTABLISHED 7fb03cb93b2d6e55 d11ddd76 tcp4 0 0 192.168.1.221.5451 52.114.148.56.443 ESTABLISHED 7fb03cb94a8f8d0d 88c31bcb tcp6 0 0 fe80::aede:48ff:.5 fe80::aede:48ff:.4 ESTABLISHED 7fb03cb94a8f988d a10400b8 tcp6 0 0 fe80::aede:48ff:.5 fe80::aede:48ff:.4 ESTABLISHED 7fb03cb948e8f88d cd67a7b tcp6 0 0 2600:1700:bab0:d.5 2607:f8b0:4003:c.5 ESTABLISHED 7fb03cb94bcb6475 4ca24b6e tcp4 31 0 192.168.1.221.5442 35.236.87.93.8081 CLOSE_WAIT 7fb03cb94b4f518d 25c58fec tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 7fb03cb94bcb47dd b164479 tcp4 0 0 127.0.0.1.53755 127.0.0.1.53763 ESTABLISHED 7fb03cb94b433e55 f28b9248 tcp4 0 0 127.0.0.1.53763 127.0.0.1.53755 ESTABLISHED 7fb03cb94b719475 316c063a tcp4 0 0 192.168.1.221.5359 104.155.21.255.555 ESTABLISHED 7fb03cb946c1ba8d d32bc928 tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 7fb03cb94c066aed fb73c2ca tcp4 0 0 192.168.1.221.5263 17.57.144.20.5223 ESTABLISHED 7fb03cb94d2ebaed 22dc0e42 tcp4 0 0 192.168.1.221.5179 192.168.1.80.548 ESTABLISHED 7fb03cb94a8f818d 5e12e220 tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 7fb03cb94a8f704d 16ca6e94 tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 7fb03cb942212a8d da4b1f7d tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 7fb03cb948e8dbcd 4aeb1af1 tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 7fb03cb94a8f92cd 6859cfec tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 7fb03cb946c1e2cd 248b598b tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 7fb03cb942213bcd 56762cbf tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 7fb03cb948e8d60d d29e9efa tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 7fb03cb946c1d18d 60f3fa15 tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 7fb03cb94b4347dd a1f7c428 tcp4 0 0 192.168.1.221.5164 35.235.123.194.555 CLOSE_WAIT 7fb03cb948047aed ceac8539 tcp4 0 0 192.168.1.221.5164 35.235.123.194.555 CLOSE_WAIT 7fb03cb963503e55 d98dfd14 tcp4 0 0 192.168.1.221.5164 35.235.123.194.555 CLOSE_WAIT 7fb03cb937c202cd 2e36177f tcp6 0 0 fe80::aede:48ff:.6 fe80::aede:48ff:.4 ESTABLISHED 7fb03cb946c1c60d aaabe009 tcp6 0 0 fe80::aede:48ff:.5 fe80::aede:48ff:.5 ESTABLISHED 7fb03cb948536475 dc1e01a0 tcp4 0 0 192.168.1.221.5879 96.45.36.31.443 ESTABLISHED 7fb03cb94b38e7dd e3b8b675 tcp4 0 0 127.0.0.1.9592 127.0.0.1.58704 CLOSE_WAIT 7fb03cb94d691165 7eee3b1 tcp4 31 0 192.168.1.221.5346 35.236.87.93.8081 CLOSE_WAIT 7fb03cb948e8f2cd e7486da9 tcp6 0 0 fe80::aede:48ff:.5 fe80::aede:48ff:.4 ESTABLISHED 7fb03cb94221304d 3e982c00 tcp6 0 0 fe80::aede:48ff:.5 fe80::aede:48ff:.4 ESTABLISHED 7fb03cb937c2088d 30000ae7 tcp6 0 0 fe80::aede:48ff:.5 fe80::aede:48ff:.4 ESTABLISHED 7fb03cb94b4f4bcd 57e076f4 tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 7fb03cb94221474d 6465b356 tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 7fb03cb94a8f6a8d bed25b95 tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 7fb03cb937c1fd0d 33613be8 tcp6 0 0 fe80::aede:48ff:.4 fe80::aede:48ff:.4 ESTABLISHED 7fb03cb93c70600d 777662f1 udp4 0 0 *.58043 *.* 7fb03cb93c709f4d b64a4fe1 udp4 0 0 *.63678 *.* 7fb03cb93c708c0d 48ba21c8 udp4 0 0 *.60774 *.* 7fb03cb93c70760d 7f0afb2c udp4 0 0 *.51411 *.* 7fb03cb93c707b8d 7c49f0f1 udp4 0 0 *.57119 *.* 7fb03cb93c70734d c750f7f0 udp4 0 0 *.61217 *.* 7fb03cb93c70810d 2308a9b6 udp4 0 0 *.56091 *.* 7fb03cb93c707e4d 4b2ff4b3 udp4 0 0 *.58807 *.* 7fb03cb9371e2d4d 8d16cd6b udp4 0 0 *.54338 *.* 7fb03cb93721310d f4140344 udp4 0 0 *.3722 *.* 7fb03cb93d5b800d 0 udp4 0 0 *.5353 *.* 7fb03cb93c7ba60d 7fd9393b udp46 0 0 *.61224 *.* 7fb03cb93c7b8a8d 0 udp4 0 0 *.* *.* 7fb03cb939b0470d 0 udp4 0 0 *.* *.* 7fb03cb93c706dcd f725c38f udp4 0 0 127.0.0.1.63995 *.* 7fb03cb93c708ecd 5ed0c674 udp4 0 0 192.168.1.221.5063 *.* 7fb03cb93c70868d 0 udp4 0 0 *.33354 *.* 7fb03cb93c70658d 0 udp4 0 0 *.33355 *.* 7fb03cb934b578cd 530d4d40 udp6 0 0 *.61982 *.* 7fb03cb934b59c8d 91b8382 udp4 0 0 *.61982 *.* 7fb03cb934b56dcd ca5be4ea udp6 0 0 *.52378 *.* 7fb03cb934b5760d 3462e1b2 udp4 0 0 *.52378 *.* 7fb03cb934b5944d 58e06369 udp6 0 0 *.53910 *.* 7fb03cb934b5a20d e03584 udp4 0 0 *.53910 *.* 7fb03cb934b55d4d e91dd2ad udp6 0 0 *.57674 *.* 7fb03cb934b5970d da8119f1 udp4 0 0 *.57674 *.* 7fb03cb934b599cd 3504cd68 udp6 0 0 *.62448 *.* 7fb03cb934b557cd 941a5612 udp4 0 0 *.62448 *.* 7fb03cb934b58c0d c487a471 udp6 0 0 *.55681 *.* 7fb03cb934b5600d c4b0913 udp4 0 0 *.55681 *.* 7fb03cb93716444d 0 udp4 0 0 *.* *.* 7fb03cb93b6df00d 0 udp4 0 0 *.* *.* 7fb03cb93c8bbd4d 47d61919 udp4 0 0 *.5353 *.* 7fb03cb93c8bc00d 8148de2d udp4 0 0 *.5353 *.* 7fb03cb93c8bc2cd 41ad85a1 udp46 0 0 *.5353 *.* 7fb03cb93c8bfc8d 3d59980f udp46 0 0 *.5353 *.* 7fb03cb93c8bd34d 73cc988e udp46 0 0 *.5353 *.* 7fb03cb93c8bf44d dee9266c udp4 0 0 *.5353 *.* 7fb03cb93c8bdb8d 0 udp46 0 0 *.5353 *.* 7fb03cb937211dcd b4871709 udp4 0 0 *.51226 *.* 7fb03cb9372154cd 21b31d88 udp4 0 0 127.0.0.1.61491 *.* 7fb03cb93b74a3cd 0 udp4 0 0 *.6096 *.* 7fb03cb93c7bb10d f1ac8ec5 udp4 0 0 *.58997 *.* 7fb03cb93b70ea8d 0 udp4 0 0 *.* *.* 7fb03cb93b7129cd 0 udp4 0 0 *.* *.* 7fb03cb93b71270d 0 udp4 0 0 *.* *.* 7fb03cb93b711c0d 0 udp4 0 0 *.* *.* 7fb03cb93b72d70d 0 udp4 0 0 *.* *.* 7fb03cb93b72bb8d 0 udp4 0 0 *.* *.* 7fb03cb93b747a8d 0 udp4 0 0 *.* *.* 7fb03cb93bc90a8d 0 udp4 0 0 *.* *.* 7fb03cb93bc9520d 97a44721 udp4 0 0 *.52551 *.* 7fb03cb93bc90d4d 0 udp4 0 0 *.* *.* 7fb03cb93bc9100d 0 udp4 0 0 *.* *.* 7fb03cb93bc94f4d 0 udp4 0 0 *.* *.* 7fb03cb93bc9208d 0 udp4 0 0 *.* *.* 7fb03cb93c7bcc8d 0 udp4 0 0 *.* *.* 7fb03cb93c8beecd 0 udp4 0 0 *.* *.* 7fb03cb93c8be10d 0 udp4 0 0 *.* *.* 7fb03cb93c8be3cd 0 udp4 0 0 *.* *.* 7fb03cb93c8be68d 0 udp4 0 0 *.* *.* 7fb03cb93d5b7a8d 0 udp4 0 0 *.* *.* 7fb03cb93c70894d 0 udp4 0 0 *.* *.* 7fb03cb93721444d 0 udp4 0 0 *.* *.* 7fb03cb937160a8d 0 udp4 0 0 *.* *.* 7fb03cb937160d4d 0 udp4 0 0 *.* *.* 7fb03cb93716208d 0 udp4 0 0 *.* *.* 7fb03cb93c70a20d 0 udp4 0 0 *.* *.* 7fb03cb93c70944d 0 udp4 0 0 *.* *.* 7fb03cb93c70684d 0 udp4 0 0 *.* *.* 7fb03cb939b049cd 0 udp4 0 0 *.* *.* 7fb03cb9371654cd 0 udp4 0 0 *.* *.* 7fb03cb93716100d 0 udp4 0 0 *.* *.* 7fb03cb93716520d 0 udp4 0 0 *.* *.* 7fb03cb937164f4d 0 udp4 0 0 *.* *.* 7fb03cb9371628cd 0 udp4 0 0 *.* *.* 7fb03cb937162b8d 0 udp4 0 0 *.* *.* 7fb03cb937162e4d 0 udp4 0 0 *.* *.* 7fb03cb9371e32cd 0 udp4 0 0 *.* *.* 7fb03cb934b56b0d 0 udp4 0 0 *.* *.* 7fb03cb93721394d 0 udp4 0 0 *.* *.* 7fb03cb937cbcd4d 0 udp4 0 0 *.* *.* 7fb03cb937cbf10d 0 udp46 0 0 *.* *.* 7fb03cb93721184d b180dc9e udp6 0 0 *.5353 *.* 7fb03cb9372149cd 6fa9aaf7 udp4 0 0 *.5353 *.* 7fb03cb934b583cd 0 udp4 0 0 *.9595 *.* 7fb03cb934b5810d 5b0b6f0f udp4 0 0 *.138 *.* 7fb03cb934b57e4d dd966d84 udp4 0 0 *.137 *.* 7fb03cb939ad73cd 0 icm4 8136 0 *.* *.* Active LOCAL (UNIX) domain sockets Address Type Recv-Q Send-Q Inode Conn Refs Nextref Addr 7fb03cb95130f2c5 stream 1 0 0 7fb03cb95130d6a5 0 0 7fb03cb95130d6a5 stream 0 0 0 7fb03cb95130f2c5 0 0 7fb03cb95130eaf5 stream 0 0 0 7fb03cb95130e70d 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock 7fb03cb95130e70d stream 0 0 0 7fb03cb95130eaf5 0 0 7fb03cb95130da8d stream 0 0 0 7fb03cb95130f38d 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock 7fb03cb95130f38d stream 0 0 0 7fb03cb95130da8d 0 0 7fb03cb95130e89d stream 0 0 0 7fb03cb95130cd45 0 0 7fb03cb95130cd45 stream 0 0 0 7fb03cb95130e89d 0 0 7fb03cb95130d9c5 stream 0 0 0 7fb03cb95130de75 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock 7fb03cb95130de75 stream 0 0 0 7fb03cb95130d9c5 0 0 7fb03cb95130e0cd stream 0 0 0 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock 7fb03cb95130cc7d stream 0 0 0 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock 7fb03cb94d74825d stream 0 0 0 7fb03cb94d748965 0 0 /var/run/mDNSResponder 7fb03cb94d748965 stream 0 0 0 7fb03cb94d74825d 0 0 7fb03cb94d746a25 stream 0 0 0 7fb03cb94d7471f5 0 0 /var/run/fctservctl.sock 7fb03cb94d7471f5 stream 0 0 0 7fb03cb94d746a25 0 0 7fb03cb94d747e75 stream 0 0 0 7fb03cb94d74695d 0 0 /var/run/fctservctl.sock 7fb03cb94d74695d stream 0 0 0 7fb03cb94d747e75 0 0 7fb03cb94d747515 stream 0 0 0 7fb03cb94d747ce5 0 0 /var/run/fctservctl.sock 7fb03cb94d747ce5 stream 0 0 0 7fb03cb94d747515 0 0 7fb03cb94d748e15 stream 0 0 0 7fb03cb94d748bbd 0 0 /var/run/fctservctl.sock 7fb03cb94d748bbd stream 0 0 0 7fb03cb94d748e15 0 0 7fb03cb937d38835 stream 0 0 0 7fb03cb937d389c5 0 0 /var/run/mDNSResponder 7fb03cb937d389c5 stream 0 0 0 7fb03cb937d38835 0 0 7fb03cb945d3b2c5 stream 0 0 0 7fb03cb945d396a5 0 0 /var/run/mDNSResponder 7fb03cb945d396a5 stream 0 0 0 7fb03cb945d3b2c5 0 0 7fb03cb945d3b5e5 stream 0 0 0 7fb03cb945d3a645 0 0 /var/run/mDNSResponder 7fb03cb945d3a645 stream 0 0 0 7fb03cb945d3b5e5 0 0 7fb03cb945d39835 stream 0 0 0 7fb03cb945d3ac85 0 0 /var/run/mDNSResponder 7fb03cb945d3ac85 stream 0 0 0 7fb03cb945d39835 0 0 7fb03cb945d3a89d stream 0 0 0 7fb03cb945d3b38d 0 0 /var/run/mDNSResponder 7fb03cb945d3b38d stream 0 0 0 7fb03cb945d3a89d 0 0 7fb03cb94a63aed5 stream 0 0 0 7fb03cb94a63cfa5 0 0 /var/run/mDNSResponder 7fb03cb94a63cfa5 stream 0 0 0 7fb03cb94a63aed5 0 0 7fb03cb94a63ae0d stream 0 0 0 7fb03cb94a63b5dd 0 0 /var/run/mDNSResponder 7fb03cb94a63b5dd stream 0 0 0 7fb03cb94a63ae0d 0 0 7fb03cb94a63cedd stream 0 0 0 7fb03cb94a63b44d 0 0 /var/run/mDNSResponder 7fb03cb94a63b44d stream 0 0 0 7fb03cb94a63cedd 0 0 7fb03cb94a63d38d stream 0 0 0 7fb03cb94a63aa25 0 0 /var/run/mDNSResponder 7fb03cb94a63aa25 stream 0 0 0 7fb03cb94a63d38d 0 0 7fb03cb95130c95d stream 0 0 0 7fb03cb95130d1f5 0 0 /var/run/mDNSResponder 7fb03cb95130d1f5 stream 0 0 0 7fb03cb95130c95d 0 0 7fb03cb945d38a25 stream 0 0 0 7fb03cb945d3a195 0 0 /var/run/mDNSResponder 7fb03cb945d3a195 stream 0 0 0 7fb03cb945d38a25 0 0 7fb03cb945d3aa2d stream 0 0 0 0 0 0 7fb03cb95130f5e5 stream 0 0 0 7fb03cb95130e4b5 0 0 /var/run/mDNSResponder 7fb03cb95130e4b5 stream 0 0 0 7fb03cb95130f5e5 0 0 7fb03cb94d74906d stream 0 0 0 7fb03cb94d746e0d 0 0 7fb03cb94d746e0d stream 8 0 0 7fb03cb94d74906d 0 0 7fb03cb937d39325 stream 0 0 0 7fb03cb937d385dd 0 0 7fb03cb937d385dd stream 0 0 0 7fb03cb937d39325 0 0 7fb03cb937d3876d stream 0 0 0 7fb03cb937d3a455 0 0 7fb03cb937d3a455 stream 0 0 0 7fb03cb937d3876d 0 0 7fb03cb937d37a25 stream 0 0 0 7fb03cb937d386a5 0 0 /var/run/mDNSResponder 7fb03cb937d386a5 stream 0 0 0 7fb03cb937d37a25 0 0 7fb03cb937d39195 stream 0 0 0 7fb03cb937d38f3d 0 0 7fb03cb937d38f3d stream 0 0 0 7fb03cb937d39195 0 0 7fb03cb937d37895 stream 0 0 0 7fb03cb937d37ed5 0 0 7fb03cb937d37ed5 stream 0 0 0 7fb03cb937d37895 0 0 7fb03cb937d390cd stream 0 0 0 7fb03cb937d3a38d 0 0 7fb03cb937d3a38d stream 0 0 0 7fb03cb937d390cd 0 0 7fb03cb945d3b455 stream 0 0 0 7fb03cb945d3895d 0 0 7fb03cb945d3895d stream 0 0 0 7fb03cb945d3b455 0 0 7fb03cb945d392bd stream 0 0 0 7fb03cb945d38e0d 0 0 7fb03cb945d38e0d stream 0 0 0 7fb03cb945d392bd 0 0 7fb03cb945d3b135 stream 0 0 0 7fb03cb945d38ed5 0 0 7fb03cb945d38ed5 stream 0 0 0 7fb03cb945d3b135 0 0 7fb03cb945d3976d stream 0 0 0 7fb03cb945d3912d 0 0 /var/run/mDNSResponder 7fb03cb945d3912d stream 0 0 0 7fb03cb945d3976d 0 0 7fb03cb945d391f5 stream 0 0 0 7fb03cb945d39385 0 0 7fb03cb945d39385 stream 0 0 0 7fb03cb945d391f5 0 0 7fb03cb945d38c7d stream 0 0 7fb03cb94b87f5d5 0 0 0 /var/folders/vr/4gybj0rs1_51r0sy8d5qv3jm0000gn/T/.com.microsoft.teams.okHfqO/SS 7fb03cb945d39c1d stream 0 0 0 7fb03cb945d39e75 0 0 /var/run/mDNSResponder 7fb03cb945d39e75 stream 0 0 0 7fb03cb945d39c1d 0 0 7fb03cb94a63ac7d stream 0 0 0 7fb03cb94a63caf5 0 0 /var/run/mDNSResponder 7fb03cb94a63caf5 stream 0 0 0 7fb03cb94a63ac7d 0 0 7fb03cb95130d515 stream 0 0 0 7fb03cb95130ce0d 0 0 7fb03cb95130ce0d stream 0 0 0 7fb03cb95130d515 0 0 7fb03cb95130caed stream 0 0 0 7fb03cb95130ca25 0 0 7fb03cb95130ca25 stream 0 0 0 7fb03cb95130caed 0 0 7fb03cb95130d385 stream 0 0 0 7fb03cb95130f06d 0 0 7fb03cb95130f06d stream 0 0 0 7fb03cb95130d385 0 0 7fb03cb95130dc1d stream 0 0 0 7fb03cb95130e7d5 0 0 7fb03cb95130e7d5 stream 0 0 0 7fb03cb95130dc1d 0 0 7fb03cb95130ced5 stream 0 0 0 7fb03cb95130f51d 0 0 7fb03cb95130f51d stream 0 0 0 7fb03cb95130ced5 0 0 7fb03cb95130df3d stream 0 0 0 7fb03cb95130c7cd 0 0 7fb03cb95130c7cd stream 0 0 0 7fb03cb95130df3d 0 0 7fb03cb95130e195 stream 0 0 0 7fb03cb95130e325 0 0 7fb03cb95130e325 stream 0 0 0 7fb03cb95130e195 0 0 7fb03cb95130f1fd stream 0 0 0 7fb03cb95130ea2d 0 0 7fb03cb95130ea2d stream 0 0 0 7fb03cb95130f1fd 0 0 7fb03cb95130d2bd stream 0 0 0 7fb03cb95130c895 0 0 7fb03cb95130c895 stream 0 0 0 7fb03cb95130d2bd 0 0 7fb03cb95130cbb5 stream 0 0 7fb03cb937de855d 0 0 0 /Library/Application Support/LANDesk/tmp/socket/sys 7fb03cb95130d065 stream 0 0 0 7fb03cb95130d5dd 0 0 7fb03cb95130d5dd stream 0 0 0 7fb03cb95130d065 0 0 7fb03cb95130ec85 stream 0 0 0 7fb03cb95130ee15 0 0 7fb03cb95130ee15 stream 0 0 0 7fb03cb95130ec85 0 0 7fb03cb95130d76d stream 0 0 0 7fb03cb95130d12d 0 0 7fb03cb95130d12d stream 0 0 0 7fb03cb95130d76d 0 0 7fb03cb95130ed4d stream 0 0 0 7fb03cb95130eedd 0 0 7fb03cb95130eedd stream 0 0 0 7fb03cb95130ed4d 0 0 7fb03cb95130e965 stream 0 0 0 7fb03cb95130e3ed 0 0 /var/run/mDNSResponder 7fb03cb95130e3ed stream 0 0 0 7fb03cb95130e965 0 0 7fb03cb937d3925d stream 0 0 0 7fb03cb937d39c85 0 0 /var/run/mDNSResponder 7fb03cb937d39c85 stream 0 0 0 7fb03cb937d3925d 0 0 7fb03cb937d381f5 stream 0 0 0 0 0 0 7fb03cb935b005e5 stream 0 0 0 7fb03cb935afd895 0 0 /var/run/mDNSResponder 7fb03cb935afd895 stream 0 0 0 7fb03cb935b005e5 0 0 7fb03cb94d746ed5 stream 0 0 0 7fb03cb94d748195 0 0 /var/run/mDNSResponder 7fb03cb94d748195 stream 0 0 0 7fb03cb94d746ed5 0 0 7fb03cb94a63ba8d stream 0 0 0 7fb03cb94a63d5e5 0 0 /var/run/mDNSResponder 7fb03cb94a63d5e5 stream 0 0 0 7fb03cb94a63ba8d 0 0 7fb03cb94a63cc85 stream 0 0 0 7fb03cb94a63a895 0 0 /var/run/mDNSResponder 7fb03cb94a63a895 stream 0 0 0 7fb03cb94a63cc85 0 0 7fb03cb94a63c965 stream 0 0 0 7fb03cb94a63d51d 0 0 /var/run/mDNSResponder 7fb03cb94a63d51d stream 0 0 0 7fb03cb94a63c965 0 0 7fb03cb94d747f3d stream 0 0 0 7fb03cb94d7480cd 0 0 /var/run/mDNSResponder 7fb03cb94d7480cd stream 0 0 0 7fb03cb94d747f3d 0 0 7fb03cb94a63abb5 stream 0 0 0 7fb03cb94a63c7d5 0 0 /var/run/mDNSResponder 7fb03cb94a63c7d5 stream 0 0 0 7fb03cb94a63abb5 0 0 7fb03cb95130dce5 stream 0 0 0 7fb03cb95130e005 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/filesystem-event.sock 7fb03cb95130e005 stream 0 0 0 7fb03cb95130dce5 0 0 7fb03cb935b001fd stream 0 0 0 7fb03cb935afdaed 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock 7fb03cb935afdaed stream 0 0 0 7fb03cb935b001fd 0 0 7fb03cb935b0038d stream 0 0 7fb03cb9350ead1d 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock 7fb03cb935b002c5 stream 0 0 0 7fb03cb935aff0cd 0 0 vpnkit.data.sock 7fb03cb935aff0cd stream 0 0 0 7fb03cb935b002c5 0 0 7fb03cb935b00135 stream 0 0 0 7fb03cb935afdbb5 0 0 backend-for-guest.sock 7fb03cb935afdbb5 stream 0 0 0 7fb03cb935b00135 0 0 7fb03cb935affaf5 stream 0 0 0 7fb03cb935affd4d 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/lifecycle-server.sock 7fb03cb935affd4d stream 0 0 0 7fb03cb935affaf5 0 0 7fb03cb935affa2d stream 0 0 0 7fb03cb935affe15 0 0 vms/0/00000002.000005f4 7fb03cb935affe15 stream 0 0 0 7fb03cb935affa2d 0 0 7fb03cb935b0006d stream 0 0 0 7fb03cb935afffa5 0 0 vms/0/connect 7fb03cb935afffa5 stream 0 0 0 7fb03cb935b0006d 0 0 7fb03cb935affedd stream 0 0 0 7fb03cb935afdc7d 0 0 vms/0/00000002.000005f4 7fb03cb935afdc7d stream 0 0 0 7fb03cb935affedd 0 0 7fb03cb935afdd45 stream 0 0 0 7fb03cb935affc85 0 0 vms/0/connect 7fb03cb935affc85 stream 0 0 0 7fb03cb935afdd45 0 0 7fb03cb935afde0d stream 0 0 0 7fb03cb935affbbd 0 0 vms/0/00000002.000005f4 7fb03cb935affbbd stream 0 0 0 7fb03cb935afde0d 0 0 7fb03cb935afded5 stream 0 0 0 7fb03cb935aff965 0 0 vms/0/connect 7fb03cb935aff965 stream 0 0 0 7fb03cb935afded5 0 0 7fb03cb935aff89d stream 0 0 0 7fb03cb935aff7d5 0 0 vms/0/00000002.000005f4 7fb03cb935aff7d5 stream 0 0 0 7fb03cb935aff89d 0 0 7fb03cb935afdf9d stream 0 0 0 7fb03cb935aff70d 0 0 vms/0/connect 7fb03cb935aff70d stream 0 0 0 7fb03cb935afdf9d 0 0 7fb03cb935aff645 stream 0 0 0 7fb03cb935aff57d 0 0 vms/0/connect 7fb03cb935aff57d stream 0 0 0 7fb03cb935aff645 0 0 7fb03cb935afe065 stream 0 0 0 7fb03cb935aff4b5 0 0 vms/0/00000002.000005f4 7fb03cb935aff4b5 stream 0 0 0 7fb03cb935afe065 0 0 7fb03cb935aff3ed stream 0 0 7fb03cb935cd2d9d 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/filesystem-event.sock 7fb03cb935aff325 stream 0 0 7fb03cb93609fca5 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/lifecycle-server.sock 7fb03cb935aff25d stream 0 0 7fb03cb94cddc36d 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/diagnosticd.sock 7fb03cb935afe12d stream 0 0 0 7fb03cb935afe1f5 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.00001003 7fb03cb935afe1f5 stream 0 0 0 7fb03cb935afe12d 0 0 7fb03cb935aff195 stream 0 0 0 7fb03cb935afe515 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/memlogdq.sock 7fb03cb935afe515 stream 0 0 0 7fb03cb935aff195 0 0 7fb03cb935afe44d stream 0 0 7fb03cb9350eac25 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/memlogdq.sock 7fb03cb935afe8fd stream 0 0 0 7fb03cb935afedad 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.000007cf 7fb03cb935afedad stream 0 0 0 7fb03cb935afe8fd 0 0 7fb03cb935aff005 stream 0 0 7fb03cb938b763e5 0 0 0 vms/0/00000003.000005f5 7fb03cb935afef3d stream 0 0 7fb03cb938b761f5 0 0 0 vms/0/00000003.00000948 7fb03cb935afe5dd stream 0 0 7fb03cb938b760fd 0 0 0 vms/0/connect 7fb03cb935afe6a5 stream 0 0 0 7fb03cb935afe76d 0 0 vpnkit.eth.sock 7fb03cb935afe76d stream 0 0 0 7fb03cb935afe6a5 0 0 7fb03cb935afee75 stream 0 0 7fb03cb9360a12ed 0 0 0 backend.sock 7fb03cb935afece5 stream 0 0 7fb03cb935cd29bd 0 0 0 filesystem-export.sock 7fb03cb935afec1d stream 0 0 7fb03cb935cd43e5 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.00001003 7fb03cb935afe9c5 stream 0 0 7fb03cb935cd40fd 0 0 0 filesystem-volume.sock 7fb03cb935afeb55 stream 0 0 7fb03cb9350eaa35 0 0 0 docker-api.sock 7fb03cb935afea8d stream 0 0 7fb03cb9350eab2d 0 0 0 backend-for-guest.sock 7fb03cb93501b065 stream 0 0 7fb03cb9350ea36d 0 0 0 vpnkit.data.sock 7fb03cb937d37bb5 stream 0 0 7fb03cb9350ea465 0 0 0 vpnkit.port.sock 7fb03cb937d3a5e5 stream 0 0 7fb03cb950a0dca5 0 0 0 docker.sock 7fb03cb937d3a51d stream 0 0 7fb03cb950ab1005 0 0 0 vpnkit.pcap.sock 7fb03cb94d7495e5 stream 0 0 7fb03cb950ab0f0d 0 0 0 vpnkit.diag.sock 7fb03cb94d746895 stream 0 0 7fb03cb950aafd9d 0 0 0 vpnkit.eth.sock 7fb03cb94d7467cd stream 0 0 7fb03cb950ab0085 0 0 0 osxfs.sock 7fb03cb94d746bb5 stream 0 0 7fb03cb950ab0a35 0 0 0 vms/0/00000002.000005f4 7fb03cb94d7496ad stream 0 0 7fb03cb950a1dab5 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/gui-api.sock 7fb03cb94d7492c5 stream 0 0 0 7fb03cb94d746aed 0 0 /var/run/mDNSResponder 7fb03cb94d746aed stream 0 0 0 7fb03cb94d7492c5 0 0 7fb03cb94d748d4d stream 0 0 0 7fb03cb94d7472bd 0 0 /var/run/fctservctl.sock 7fb03cb94d7472bd stream 0 0 0 7fb03cb94d748d4d 0 0 7fb03cb94d748c85 stream 0 0 0 7fb03cb94d747385 0 0 /var/run/fctservctl.sock 7fb03cb94d747385 stream 0 0 0 7fb03cb94d748c85 0 0 7fb03cb94d748af5 stream 0 0 0 7fb03cb94d747835 0 0 /var/run/mDNSResponder 7fb03cb94d747835 stream 0 0 0 7fb03cb94d748af5 0 0 7fb03cb94d748a2d stream 0 0 0 7fb03cb94d74776d 0 0 /var/run/fctservctl.sock 7fb03cb94d74776d stream 145 0 0 7fb03cb94d748a2d 0 0 7fb03cb94d74889d stream 0 0 0 7fb03cb94d7478fd 0 0 /var/run/fctservctl.sock 7fb03cb94d7478fd stream 0 0 0 7fb03cb94d74889d 0 0 7fb03cb94d74870d stream 0 0 0 7fb03cb94d7487d5 0 0 /var/run/fctservctl.sock 7fb03cb94d7487d5 stream 0 0 0 7fb03cb94d74870d 0 0 7fb03cb94d748645 stream 0 0 0 7fb03cb94d7479c5 0 0 /var/run/fctservctl.sock 7fb03cb94d7479c5 stream 0 0 0 7fb03cb94d748645 0 0 7fb03cb94d747a8d stream 0 0 0 7fb03cb94d74857d 0 0 /tmp/olisne-WY4G9IZafUNsloCollectorServicePipe 7fb03cb94d74857d stream 0 0 0 7fb03cb94d747a8d 0 0 7fb03cb94d7484b5 stream 0 0 0 7fb03cb94d747b55 0 0 /var/run/fctservctl.sock 7fb03cb94d747b55 stream 0 0 0 7fb03cb94d7484b5 0 0 7fb03cb94d747c1d stream 0 0 0 7fb03cb94d748325 0 0 /var/run/fctservctl.sock 7fb03cb94d748325 stream 0 0 0 7fb03cb94d747c1d 0 0 7fb03cb94d7483ed stream 0 0 7fb03cb94db01655 0 0 0 /tmp/fctvpnctl.sock_501 7fb03cb94a63bc1d stream 0 0 0 7fb03cb94a63c645 0 0 /var/run/mDNSResponder 7fb03cb94a63c645 stream 0 0 0 7fb03cb94a63bc1d 0 0 7fb03cb94a63bce5 stream 0 0 0 7fb03cb94a63c57d 0 0 /var/run/mDNSResponder 7fb03cb94a63c57d stream 0 0 0 7fb03cb94a63bce5 0 0 7fb03cb94a63bdad stream 0 0 0 7fb03cb94a63c4b5 0 0 /var/run/mDNSResponder 7fb03cb94a63c4b5 stream 0 0 0 7fb03cb94a63bdad 0 0 7fb03cb94a63be75 stream 0 0 0 7fb03cb94a63c3ed 0 0 /var/run/mDNSResponder 7fb03cb94a63c3ed stream 0 0 0 7fb03cb94a63be75 0 0 7fb03cb94a63bf3d stream 0 0 0 7fb03cb94a63c325 0 0 /var/run/mDNSResponder 7fb03cb94a63c325 stream 0 0 0 7fb03cb94a63bf3d 0 0 7fb03cb94a63c195 stream 0 0 0 7fb03cb94a63c005 0 0 /var/run/mDNSResponder 7fb03cb94a63c005 stream 0 0 0 7fb03cb94a63c195 0 0 7fb03cb94a63c0cd stream 0 0 0 7fb03cb94a63c25d 0 0 /var/run/mDNSResponder 7fb03cb94a63c25d stream 0 0 0 7fb03cb94a63c0cd 0 0 7fb03cb945d3ad4d stream 0 0 0 7fb03cb93501b835 0 0 /var/run/mDNSResponder 7fb03cb945d3ae15 stream 0 0 0 7fb03cb937d377cd 0 0 /var/run/mDNSResponder 7fb03cb93501b835 stream 0 0 0 7fb03cb945d3ad4d 0 0 7fb03cb937d377cd stream 0 0 0 7fb03cb945d3ae15 0 0 7fb03cb937d3a6ad stream 0 0 0 7fb03cb937d3a06d 0 0 /var/run/mDNSResponder 7fb03cb937d3a06d stream 0 0 0 7fb03cb937d3a6ad 0 0 7fb03cb945d387cd stream 0 0 7fb03cb94d0e4a35 0 0 0 /Users/kbrazil/Library/Application Support/Fortinet/FortiClient/credentialstore.sock 7fb03cb937d3812d stream 0 0 0 7fb03cb937d3a2c5 0 0 /var/run/mDNSResponder 7fb03cb937d3a2c5 stream 0 0 0 7fb03cb937d3812d 0 0 7fb03cb945d395dd stream 0 0 0 7fb03cb945d39515 0 0 /var/run/mDNSResponder 7fb03cb945d39515 stream 0 0 0 7fb03cb945d395dd 0 0 7fb03cb945d39ce5 stream 0 0 0 7fb03cb945d39dad 0 0 /var/run/mDNSResponder 7fb03cb945d39dad stream 0 0 0 7fb03cb945d39ce5 0 0 7fb03cb937d39e15 stream 0 0 0 7fb03cb937d39645 0 0 /var/run/mDNSResponder 7fb03cb937d39645 stream 0 0 0 7fb03cb937d39e15 0 0 7fb03cb937d39af5 stream 0 0 7fb03cb9418d26cd 0 0 0 /var/folders/vr/4gybj0rs1_51r0sy8d5qv3jm0000gn/T/.com.google.Chrome.ucLRTi/SingletonSocket 7fb03cb93ceaeaed stream 0 0 0 7fb03cb93ceb151d 0 0 /var/run/mDNSResponder 7fb03cb93ceb151d stream 0 0 0 7fb03cb93ceaeaed 0 0 7fb03cb93ceae95d stream 0 0 0 7fb03cb93ceb138d 0 0 /var/run/mDNSResponder 7fb03cb93ceb138d stream 0 0 0 7fb03cb93ceae95d 0 0 7fb03cb93ceb12c5 stream 0 0 0 7fb03cb93ceaed45 0 0 /var/run/mDNSResponder 7fb03cb93ceaed45 stream 0 0 0 7fb03cb93ceb12c5 0 0 7fb03cb93ceaee0d stream 0 0 0 7fb03cb93ceaeed5 0 0 /var/run/mDNSResponder 7fb03cb93ceaeed5 stream 0 0 0 7fb03cb93ceaee0d 0 0 7fb03cb93ceb106d stream 0 0 0 7fb03cb93ceaef9d 0 0 /var/run/mDNSResponder 7fb03cb93ceaef9d stream 0 0 0 7fb03cb93ceb106d 0 0 7fb03cb93ceaf2bd stream 0 0 0 7fb03cb93ceb0fa5 0 0 /var/run/mDNSResponder 7fb03cb93ceb0fa5 stream 0 0 0 7fb03cb93ceaf2bd 0 0 7fb03cb93ceaf515 stream 0 0 0 7fb03cb93ceb0e15 0 0 7fb03cb93ceb0e15 stream 0 0 0 7fb03cb93ceaf515 0 0 7fb03cb93ceaf5dd stream 0 0 0 7fb03cb93ceb0d4d 0 0 7fb03cb93ceb0d4d stream 0 0 0 7fb03cb93ceaf5dd 0 0 7fb03cb93ceb0c85 stream 0 0 0 7fb03cb93ceaf6a5 0 0 7fb03cb93ceaf6a5 stream 0 0 0 7fb03cb93ceb0c85 0 0 7fb03cb93ceaf76d stream 0 0 0 7fb03cb93ceb0bbd 0 0 7fb03cb93ceb0bbd stream 0 0 0 7fb03cb93ceaf76d 0 0 7fb03cb93ceb0af5 stream 0 0 0 7fb03cb93ceafa8d 0 0 /var/run/mDNSResponder 7fb03cb93ceafa8d stream 0 0 0 7fb03cb93ceb0af5 0 0 7fb03cb93ceb057d stream 0 0 0 7fb03cb93ceb070d 0 0 /var/run/mDNSResponder 7fb03cb93ceb070d stream 0 0 0 7fb03cb93ceb057d 0 0 7fb03cb93ceafce5 stream 0 0 0 7fb03cb93ceaf9c5 0 0 /var/run/mDNSResponder 7fb03cb93ceaf9c5 stream 0 0 0 7fb03cb93ceafce5 0 0 7fb03cb93ceb025d stream 0 0 7fb03cb93ea4fca5 0 0 0 /tmp/fctvpnctl.sock 7fb03cb93ceb0325 stream 0 0 7fb03cb93ea5074d 0 0 0 /var/tmp/filesystemui.socket 7fb03cb93ceafb55 stream 0 0 7fb03cb93ea1cd1d 0 0 0 /private/tmp/com.apple.launchd.WbUfpjQ9cD/Render 7fb03cb93ceb00cd stream 0 0 7fb03cb93ea42275 0 0 0 /private/tmp/com.apple.launchd.WdCvj7HQdi/Listeners 7fb03cb937d394b5 stream 0 0 7fb03cb938289085 0 0 0 /tmp/olisne-WY4G9IZafUNsloCollectorServicePipe 7fb03cb93501a895 stream 0 0 0 7fb03cb93501d51d 0 0 /var/run/mDNSResponder 7fb03cb93501d51d stream 0 0 0 7fb03cb93501a895 0 0 7fb03cb93501aa25 stream 0 0 0 7fb03cb93501aaed 0 0 /var/run/mDNSResponder 7fb03cb93501aaed stream 0 0 0 7fb03cb93501aa25 0 0 7fb03cb93501d38d stream 0 0 0 7fb03cb93501d2c5 0 0 /var/run/mDNSResponder 7fb03cb93501d2c5 stream 0 0 0 7fb03cb93501d38d 0 0 7fb03cb93501abb5 stream 0 0 0 7fb03cb93501d1fd 0 0 /var/run/mDNSResponder 7fb03cb93501d1fd stream 0 0 0 7fb03cb93501abb5 0 0 7fb03cb93501aed5 stream 0 0 0 7fb03cb93501ae0d 0 0 /var/run/mDNSResponder 7fb03cb93501ae0d stream 0 0 0 7fb03cb93501aed5 0 0 7fb03cb93501b44d stream 0 0 0 7fb03cb93501cedd 0 0 /var/run/mDNSResponder 7fb03cb93501cedd stream 0 0 0 7fb03cb93501b44d 0 0 7fb03cb93501d06d stream 0 0 0 7fb03cb93501b385 0 0 7fb03cb93501b385 stream 0 0 0 7fb03cb93501d06d 0 0 7fb03cb93501cfa5 stream 0 0 7fb03cb93763e7cd 0 0 0 /var/run/displaypolicyd/state 7fb03cb93501b76d stream 0 0 7fb03cb936ea7d9d 0 0 0 /var/run/pppconfd 7fb03cb93501c965 stream 0 0 7fb03cb9355ec3e5 0 0 0 /var/run/epctrl.sock 7fb03cb93501c89d stream 0 0 7fb03cb9355ec1f5 0 0 0 /var/run/fctvpnctrl.sock 7fb03cb93501c7d5 stream 0 0 7fb03cb9355ec0fd 0 0 0 /var/run/fctservctl.sock 7fb03cb93501c70d stream 0 0 7fb03cb9355ec005 0 0 0 /var/run/com.docker.vmnetd.sock 7fb03cb93501c645 stream 0 0 7fb03cb93557e845 0 0 0 /var/rpc/ncalrpc/srvsvc 7fb03cb93501b9c5 stream 0 0 7fb03cb93557e36d 0 0 0 /var/rpc/ncacn_np/srvsvc 7fb03cb93501c57d stream 0 0 7fb03cb93557e55d 0 0 0 /var/run/usbmuxd 7fb03cb93501c4b5 stream 0 0 7fb03cb93557e655 0 0 0 /var/rpc/ncalrpc/wkssvc 7fb03cb93501ba8d stream 0 0 7fb03cb93557e74d 0 0 0 /var/rpc/ncacn_np/wkssvc 7fb03cb93501c3ed stream 0 0 7fb03cb9355617cd 0 0 0 /var/rpc/ncacn_np/mdssvc 7fb03cb93501c325 stream 0 0 7fb03cb9355636cd 0 0 0 /var/rpc/ncalrpc/lsarpc 7fb03cb93501c25d stream 0 0 7fb03cb9355618c5 0 0 0 /var/rpc/ncacn_np/lsarpc 7fb03cb93501bb55 stream 0 0 7fb03cb9355635d5 0 0 0 /var/run/mDNSResponder 7fb03cb93501bc1d stream 0 0 7fb03cb9355634dd 0 0 0 /var/run/systemkeychaincheck.socket 7fb03cb93501bce5 stream 0 0 7fb03cb935561ab5 0 0 0 /private/var/run/.sim_diagnosticd_socket 7fb03cb93501bdad stream 0 0 7fb03cb935561bad 0 0 0 /var/run/portmap.socket 7fb03cb93501be75 stream 0 0 7fb03cb935511d1d 0 0 0 /var/run/vpncontrol.sock 7fb03cb93501bf3d stream 0 0 7fb03cb9354fd085 0 0 0 /var/rpc/ncalrpc/NETLOGON 7fb03cb93501c005 stream 0 0 7fb03cb9354e58c5 0 0 0 /private/var/run/cupsd 7fb03cb95130ddad dgram 0 0 0 7fb03cb93501c195 0 7fb03cb945d3afa5 7fb03cb94a63b065 dgram 0 0 0 7fb03cb94a63b9c5 7fb03cb94a63b9c5 0 7fb03cb94a63b9c5 dgram 0 0 0 7fb03cb94a63b065 7fb03cb94a63b065 0 7fb03cb945d3afa5 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94a63ad45 7fb03cb94a63ad45 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94a63af9d 7fb03cb94a63af9d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceae7cd 7fb03cb93ceae7cd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb945d3b51d 7fb03cb945d3b51d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb945d3a3ed 7fb03cb945d3a3ed dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d3989d 7fb03cb937d3989d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94a63b76d 7fb03cb94a63b76d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb95130d44d 7fb03cb95130d44d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb95130cf9d 7fb03cb95130cf9d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93501d6ad 7fb03cb94d7491fd dgram 0 0 0 7fb03cb94d7476a5 7fb03cb94d7476a5 0 7fb03cb94d7476a5 dgram 0 0 0 7fb03cb94d7491fd 7fb03cb94d7491fd 0 7fb03cb93501d6ad dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94a63d6ad 7fb03cb94d748005 dgram 0 0 0 7fb03cb94d749455 7fb03cb94d749455 0 7fb03cb94d749455 dgram 0 0 0 7fb03cb94d748005 7fb03cb94d748005 0 7fb03cb94d7475dd dgram 0 0 0 7fb03cb94d747065 7fb03cb94d747065 0 7fb03cb94d747065 dgram 0 0 0 7fb03cb94d7475dd 7fb03cb94d7475dd 0 7fb03cb93501a95d dgram 0 0 0 7fb03cb93501d455 7fb03cb93501d455 0 7fb03cb93501d455 dgram 0 0 0 7fb03cb93501a95d 7fb03cb93501a95d 0 7fb03cb95130db55 dgram 0 0 0 7fb03cb95130ebbd 7fb03cb95130ebbd 0 7fb03cb95130ebbd dgram 0 0 0 7fb03cb95130db55 7fb03cb95130db55 0 7fb03cb94a63d6ad dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94d74938d 7fb03cb94d74938d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d38a8d 7fb03cb937d38a8d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb95130d835 7fb03cb95130d835 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94d746c7d 7fb03cb945d3aedd dgram 0 0 0 7fb03cb945d3b6ad 7fb03cb945d3b6ad 0 7fb03cb945d3b6ad dgram 0 0 0 7fb03cb945d3aedd 7fb03cb945d3aedd 0 7fb03cb94d746c7d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94d74712d 7fb03cb94d74712d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d39edd 7fb03cb937d39edd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d38dad 7fb03cb937d38dad dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94a63b12d 7fb03cb94a63b12d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb95130e57d 7fb03cb95130e57d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94d74951d 7fb03cb94d74951d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94d749135 7fb03cb94d749135 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb15e5 7fb03cb93ceb15e5 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceae895 7fb03cb93ceae895 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb16ad 7fb03cb93ceb16ad dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d3a1fd 7fb03cb937d3a1fd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb945d39065 7fb03cb945d39065 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb945d38f9d 7fb03cb945d38f9d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb945d39a8d 7fb03cb945d399c5 dgram 0 0 0 7fb03cb945d3a005 7fb03cb945d3a005 0 7fb03cb945d3a005 dgram 0 0 0 7fb03cb945d399c5 7fb03cb945d399c5 0 7fb03cb945d39b55 dgram 0 0 0 7fb03cb945d39f3d 7fb03cb945d39f3d 0 7fb03cb945d39f3d dgram 0 0 0 7fb03cb945d39b55 7fb03cb945d39b55 0 7fb03cb945d39a8d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d397d5 7fb03cb937d37d45 dgram 0 0 0 7fb03cb937d37e0d 7fb03cb937d37e0d 0 7fb03cb937d37e0d dgram 0 0 0 7fb03cb937d37d45 7fb03cb937d37d45 0 7fb03cb937d397d5 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb11fd 7fb03cb93ceb11fd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceaf065 7fb03cb93ceaf065 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb0edd 7fb03cb93ceb0edd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceaf385 7fb03cb93ceaf12d dgram 0 0 0 7fb03cb93ceaf1f5 7fb03cb93ceaf1f5 0 7fb03cb93ceaf1f5 dgram 0 0 0 7fb03cb93ceaf12d 7fb03cb93ceaf12d 0 7fb03cb93ceaf385 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb0965 7fb03cb93ceb0965 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb0a2d 7fb03cb93ceb0a2d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceaf835 7fb03cb93ceaf835 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceaf8fd 7fb03cb93ceaf8fd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceafdad 7fb03cb93ceafdad dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb07d5 7fb03cb93ceb07d5 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb089d 7fb03cb93ceb0645 dgram 0 0 0 7fb03cb93ceafe75 7fb03cb93ceafe75 0 7fb03cb93ceafe75 dgram 0 0 0 7fb03cb93ceb0645 7fb03cb93ceb0645 0 7fb03cb93ceb089d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceafc1d 7fb03cb93ceb0195 dgram 0 0 0 7fb03cb93ceb0005 7fb03cb93ceb0005 0 7fb03cb93ceb0005 dgram 0 0 0 7fb03cb93ceb0195 7fb03cb93ceb0195 0 7fb03cb93ceafc1d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb03ed 7fb03cb93ceb03ed dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d39fa5 7fb03cb937d39a2d dgram 0 0 0 7fb03cb937d39bbd 7fb03cb937d39bbd 0 7fb03cb937d39bbd dgram 0 0 0 7fb03cb937d39a2d 7fb03cb937d39a2d 0 7fb03cb937d39fa5 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d39965 7fb03cb937d38065 dgram 0 0 0 7fb03cb937d37c7d 7fb03cb937d37c7d 0 7fb03cb937d37c7d dgram 0 0 0 7fb03cb937d38065 7fb03cb937d38065 0 7fb03cb937d39965 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d37f9d 7fb03cb937d37f9d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d393ed 7fb03cb937d393ed dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d3970d 7fb03cb937d3970d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93501d135 7fb03cb937d382bd dgram 0 0 0 7fb03cb937d3957d 7fb03cb937d3957d 0 7fb03cb937d3957d dgram 0 0 0 7fb03cb937d382bd 7fb03cb937d382bd 0 7fb03cb937d38c1d dgram 0 0 0 7fb03cb937d38ce5 7fb03cb937d38ce5 0 7fb03cb937d38ce5 dgram 0 0 0 7fb03cb937d38c1d 7fb03cb937d38c1d 0 7fb03cb93501d135 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93501cd4d 7fb03cb93501cd4d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93501cc85 7fb03cb93501b1f5 dgram 0 0 0 7fb03cb93501b2bd 7fb03cb93501b2bd 0 7fb03cb93501b2bd dgram 0 0 0 7fb03cb93501b1f5 7fb03cb93501b1f5 0 7fb03cb93501ce15 dgram 0 0 0 7fb03cb93501b515 7fb03cb93501b515 0 7fb03cb93501b515 dgram 0 0 0 7fb03cb93501ce15 7fb03cb93501ce15 0 7fb03cb93501b6a5 dgram 0 0 0 7fb03cb93501caf5 7fb03cb93501caf5 0 7fb03cb93501caf5 dgram 0 0 0 7fb03cb93501b6a5 7fb03cb93501b6a5 0 7fb03cb93501cc85 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93501cbbd 7fb03cb93501cbbd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93501c0cd 7fb03cb93501b8fd dgram 0 0 0 7fb03cb93501ca2d 7fb03cb93501ca2d 0 7fb03cb93501ca2d dgram 0 0 0 7fb03cb93501b8fd 7fb03cb93501b8fd 0 7fb03cb93501c0cd dgram 0 0 0 7fb03cb93501c195 0 0 7fb03cb93501c195 dgram 0 0 7fb03cb934ff43e5 0 7fb03cb95130ddad 0 /private//var/run/syslog Registered kernel control modules kctlref id unit flags pcbcount rcvbuf sndbuf name 10001 1 -1 9 0 131072 131072 com.apple.flow-divert 20002 2 -1 1 1 16384 2048 com.apple.nke.sockwall 30003 3 -1 9 0 524288 524288 com.apple.content-filter 40004 4 -1 1 0 65536 65536 com.apple.net.necp_control 50005 5 -1 1 12 65536 65536 com.apple.net.netagent 60006 6 -1 9 4 524288 524288 com.apple.net.utun_control 70007 7 -1 1 0 65536 65536 com.apple.net.ipsec_control 80008 8 -1 0 74 8192 2048 com.apple.netsrc 90009 9 -1 18 4 8192 2048 com.apple.network.statistics a000a a -1 5 0 8192 2048 com.apple.network.tcp_ccdebug b000b b -1 1 0 8192 2048 com.apple.network.advisory c000c c -1 4 0 65536 2048 com.apple.uart.BLTH d000d d -1 4 0 8192 2048 com.apple.uart.sk.BLTH e000e e -1 0 0 8192 8192 com.apple.fileutil.kext.stateful.ctl f000f f -1 0 0 8192 2048 com.apple.fileutil.kext.stateless.ctl 170017 17 -1 5 1 32768 2048 com.fortinet.fct.kext.fwnke ea0010 18 -1 5 1 8192 2048 com.fortinet.kext.avkern2 Active kernel event sockets pcb Proto Recv-Q Send-Q vendor class subcla 7fb03cb936ead2bd kevt 0 0 1 1 0 7fb03cb936ead2f5 kevt 0 0 1 4 0 7fb03cb936eacd0d kevt 0 0 1 1 0 7fb03cb936eacd45 kevt 0 0 1 6 1 7fb03cb936ead24d kevt 0 0 1 6 1 7fb03cb936ead215 kevt 0 0 1 6 1 7fb03cb936ead1dd kevt 0 0 1 1 11 7fb03cb936eacd7d kevt 0 0 1 6 1 7fb03cb936eacdb5 kevt 0 0 1 6 1 7fb03cb936eacded kevt 0 0 1 6 1 7fb03cb936eace25 kevt 0 0 1 6 1 7fb03cb936eace5d kevt 0 0 1 6 1 7fb03cb936ead1a5 kevt 0 0 1 6 1 7fb03cb936eace95 kevt 0 0 1 6 1 7fb03cb936eacecd kevt 0 0 1 6 1 7fb03cb936eacf05 kevt 0 0 1 6 1 7fb03cb936ead16d kevt 0 0 1 1 6 7fb03cb936eacf3d kevt 0 0 1 1 1 7fb03cb936eacf75 kevt 0 0 1 6 1 7fb03cb936eacfad kevt 0 0 1 1 2 7fb03cb936ead135 kevt 0 0 1 1 10 7fb03cb936eacfe5 kevt 0 0 1000 5 11 7fb03cb936ead01d kevt 0 0 1 1 7 7fb03cb936ead055 kevt 0 0 1 1 1 7fb03cb936ead08d kevt 0 0 1 1 2 7fb03cb936ead0fd kevt 0 0 1 3 3 7fb03cb936ead0c5 kevt 0 0 1 1 0 Active kernel control sockets pcb Proto Recv-Q Send-Q unit id name 7fb03cb937d0314d kctl 0 0 1 2 com.apple.nke.sockwall 7fb03cb9375d4f4d kctl 0 0 1 5 com.apple.net.netagent 7fb03cb9375d5ded kctl 0 0 2 5 com.apple.net.netagent 7fb03cb9375d4d6d kctl 0 0 3 5 com.apple.net.netagent 7fb03cb9375d656d kctl 0 0 4 5 com.apple.net.netagent 7fb03cb9375d4c4d kctl 0 0 5 5 com.apple.net.netagent 7fb03cb9375d662d kctl 0 0 6 5 com.apple.net.netagent 7fb03cb9608a1a6d kctl 0 0 7 5 com.apple.net.netagent 7fb03cb94c7488ed kctl 0 0 8 5 com.apple.net.netagent 7fb03cb93e7299ad kctl 0 0 9 5 com.apple.net.netagent 7fb03cb93e72b5cd kctl 0 0 10 5 com.apple.net.netagent 7fb03cb93e72b6ed kctl 0 0 11 5 com.apple.net.netagent 7fb03cb93f60182d kctl 0 0 12 5 com.apple.net.netagent 7fb03cb93f6020cd kctl 0 0 1 6 com.apple.net.utun_control 7fb03cb94ff8f9cd kctl 0 0 2 6 com.apple.net.utun_control 7fb03cb94ff8fded kctl 0 0 3 6 com.apple.net.utun_control 7fb03cb94ff8f48d kctl 0 0 4 6 com.apple.net.utun_control 7fb03cb9375d644d kctl 0 0 1 8 com.apple.netsrc 7fb03cb93c237d8d kctl 0 0 2 8 com.apple.netsrc 7fb03cb93c23682d kctl 0 0 3 8 com.apple.netsrc 7fb03cb9503efa6d kctl 0 0 4 8 com.apple.netsrc 7fb03cb93cc9038d kctl 0 0 5 8 com.apple.netsrc 7fb03cb93d3a7d6d kctl 0 0 6 8 com.apple.netsrc 7fb03cb9608a314d kctl 0 0 7 8 com.apple.netsrc 7fb03cb93eefef0d kctl 0 0 8 8 com.apple.netsrc 7fb03cb93f3d2e8d kctl 0 0 9 8 com.apple.netsrc 7fb03cb93f60260d kctl 0 0 10 8 com.apple.netsrc 7fb03cb93f601d6d kctl 0 0 11 8 com.apple.netsrc 7fb03cb93fb8e30d kctl 0 0 12 8 com.apple.netsrc 7fb03cb93fb8d8ed kctl 0 0 13 8 com.apple.netsrc 7fb03cb93f3d384d kctl 0 0 14 8 com.apple.netsrc 7fb03cb940438bad kctl 0 0 15 8 com.apple.netsrc 7fb03cb949ba84ed kctl 0 0 16 8 com.apple.netsrc 7fb03cb94043968d kctl 0 0 17 8 com.apple.netsrc 7fb03cb940c3594d kctl 0 0 18 8 com.apple.netsrc 7fb03cb941b872cd kctl 0 0 19 8 com.apple.netsrc 7fb03cb943aa506d kctl 0 0 20 8 com.apple.netsrc 7fb03cb941451a8d kctl 0 0 21 8 com.apple.netsrc 7fb03cb94510508d kctl 0 0 22 8 com.apple.netsrc 7fb03cb9459058ed kctl 0 0 23 8 com.apple.netsrc 7fb03cb945c5bf0d kctl 0 0 24 8 com.apple.netsrc 7fb03cb94766e96d kctl 0 0 25 8 com.apple.netsrc 7fb03cb946464c6d kctl 0 0 26 8 com.apple.netsrc 7fb03cb946463fad kctl 0 0 27 8 com.apple.netsrc 7fb03cb94646394d kctl 0 0 28 8 com.apple.netsrc 7fb03cb95002e5ad kctl 0 0 29 8 com.apple.netsrc 7fb03cb94fe5d12d kctl 0 0 30 8 com.apple.netsrc 7fb03cb95fb8feed kctl 0 0 31 8 com.apple.netsrc 7fb03cb9471823cd kctl 0 0 32 8 com.apple.netsrc 7fb03cb96085390d kctl 0 0 33 8 com.apple.netsrc 7fb03cb94686a3cd kctl 0 0 34 8 com.apple.netsrc 7fb03cb94804f18d kctl 0 0 35 8 com.apple.netsrc 7fb03cb94804f42d kctl 0 0 36 8 com.apple.netsrc 7fb03cb94804fead kctl 0 0 37 8 com.apple.netsrc 7fb03cb94fefcd2d kctl 0 0 38 8 com.apple.netsrc 7fb03cb94f9330ed kctl 0 0 39 8 com.apple.netsrc 7fb03cb9496ffb8d kctl 0 0 40 8 com.apple.netsrc 7fb03cb95e70872d kctl 0 0 41 8 com.apple.netsrc 7fb03cb94c8769ad kctl 0 0 42 8 com.apple.netsrc 7fb03cb9508e426d kctl 0 0 43 8 com.apple.netsrc 7fb03cb95f702d8d kctl 0 0 44 8 com.apple.netsrc 7fb03cb94d86f2cd kctl 0 0 45 8 com.apple.netsrc 7fb03cb94e49c2ad kctl 0 0 46 8 com.apple.netsrc 7fb03cb95eff106d kctl 0 0 47 8 com.apple.netsrc 7fb03cb93aa79fcd kctl 0 0 48 8 com.apple.netsrc 7fb03cb94f65e74d kctl 0 0 49 8 com.apple.netsrc 7fb03cb94f8944ad kctl 0 0 50 8 com.apple.netsrc 7fb03cb94f931d6d kctl 0 0 51 8 com.apple.netsrc 7fb03cb94f9d11ad kctl 0 0 52 8 com.apple.netsrc 7fb03cb95fbb0aed kctl 0 0 53 8 com.apple.netsrc 7fb03cb95f88ec4d kctl 0 0 54 8 com.apple.netsrc 7fb03cb9496ffa0d kctl 0 0 55 8 com.apple.netsrc 7fb03cb94c736fcd kctl 0 0 56 8 com.apple.netsrc 7fb03cb95477236d kctl 0 0 57 8 com.apple.netsrc 7fb03cb95e1a588d kctl 0 0 58 8 com.apple.netsrc 7fb03cb95e1a726d kctl 0 0 59 8 com.apple.netsrc 7fb03cb94ed4f24d kctl 0 0 60 8 com.apple.netsrc 7fb03cb95f46cc6d kctl 0 0 61 8 com.apple.netsrc 7fb03cb94fb5ad2d kctl 0 0 62 8 com.apple.netsrc 7fb03cb95cb8b9ad kctl 0 0 63 8 com.apple.netsrc 7fb03cb954772d8d kctl 0 0 64 8 com.apple.netsrc 7fb03cb950171fad kctl 0 0 65 8 com.apple.netsrc 7fb03cb9375d590d kctl 0 0 66 8 com.apple.netsrc 7fb03cb94686a1ed kctl 0 0 67 8 com.apple.netsrc 7fb03cb94ffdd1ad kctl 0 0 68 8 com.apple.netsrc 7fb03cb94ff8f96d kctl 0 0 69 8 com.apple.netsrc 7fb03cb95e6c8e8d kctl 0 0 70 8 com.apple.netsrc 7fb03cb94b5af2ad kctl 0 0 71 8 com.apple.netsrc 7fb03cb96074aa6d kctl 0 0 72 8 com.apple.netsrc 7fb03cb95bff57cd kctl 0 0 74 8 com.apple.netsrc 7fb03cb95fc8056d kctl 0 0 77 8 com.apple.netsrc 7fb03cb937d02e4d kctl 0 0 1 9 com.apple.network.statistics 7fb03cb93e09b08d kctl 0 0 2 9 com.apple.network.statistics 7fb03cb93e099a0d kctl 0 0 3 9 com.apple.network.statistics 7fb03cb93e099bed kctl 0 0 4 9 com.apple.network.statistics 7fb03cb9603d82cd kctl 0 0 1 23 com.fortinet.fct.kext.fwnke 7fb03cb9603d67cd kctl 0 0 1 24 com.fortinet.kext.avkern2 jc-1.17.3/tests/fixtures/osx-10.14.6/netstat-i.json000066400000000000000000000161161415226333200214410ustar00rootroot00000000000000[{"iface": "lo0", "mtu": 16384, "network": "", "address": null, "ipkts": 1580150, "ierrs": 0, "opkts": 1580150, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "lo0", "mtu": 16384, "network": "127", "address": "localhost", "ipkts": 1580150, "ierrs": null, "opkts": 1580150, "oerrs": null, "coll": null, "kind": "interface"}, {"iface": "lo0", "mtu": 16384, "network": "localhost", "address": "::1", "ipkts": 1580150, "ierrs": null, "opkts": 1580150, "oerrs": null, "coll": null, "kind": "interface"}, {"iface": "lo0", "mtu": 16384, "network": "fe80::1%lo0", "address": "fe80:1::1", "ipkts": 1580150, "ierrs": null, "opkts": 1580150, "oerrs": null, "coll": null, "kind": "interface"}, {"iface": "gif0*", "mtu": 1280, "network": "", "address": null, "ipkts": 0, "ierrs": 0, "opkts": 0, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "stf0*", "mtu": 1280, "network": "", "address": null, "ipkts": 0, "ierrs": 0, "opkts": 0, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "VHC12", "mtu": 0, "network": "", "address": null, "ipkts": 0, "ierrs": 0, "opkts": 0, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "XHC1*", "mtu": 0, "network": "", "address": null, "ipkts": 0, "ierrs": 0, "opkts": 0, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "XHC0*", "mtu": 0, "network": "", "address": null, "ipkts": 0, "ierrs": 0, "opkts": 0, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "XHC20", "mtu": 0, "network": "", "address": null, "ipkts": 0, "ierrs": 0, "opkts": 0, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "en5", "mtu": 1500, "network": "", "address": "ac:de:48:00:11:22", "ipkts": 140215, "ierrs": 0, "opkts": 137522, "oerrs": 721, "coll": 0, "kind": "interface"}, {"iface": "en5", "mtu": 1500, "network": "fe80::aede:", "address": "fe80:8::aede:48ff", "ipkts": 140215, "ierrs": null, "opkts": 137522, "oerrs": null, "coll": null, "kind": "interface"}, {"iface": "ap1*", "mtu": 1500, "network": "", "address": "a6:83:e7:2d:62:8f", "ipkts": 0, "ierrs": 0, "opkts": 0, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "en0", "mtu": 1500, "network": "", "address": "a4:83:e7:2d:62:8f", "ipkts": 23300545, "ierrs": 0, "opkts": 26448755, "oerrs": 464, "coll": 0, "kind": "interface"}, {"iface": "en0", "mtu": 1500, "network": "kbrazil-mac", "address": "fe80:a::cf9:ca6f:", "ipkts": 23300545, "ierrs": null, "opkts": 26448755, "oerrs": null, "coll": null, "kind": "interface"}, {"iface": "en0", "mtu": 1500, "network": "192.168.1", "address": "kbrazil-mac.att", "ipkts": 23300545, "ierrs": null, "opkts": 26448755, "oerrs": null, "coll": null, "kind": "interface"}, {"iface": "en0", "mtu": 1500, "network": "kbrazil-mac", "address": "2600:1700:bab0:d4", "ipkts": 23300545, "ierrs": null, "opkts": 26448755, "oerrs": null, "coll": null, "kind": "interface"}, {"iface": "en0", "mtu": 1500, "network": "kbrazil-mac", "address": "2600:1700:bab0:d4", "ipkts": 23300545, "ierrs": null, "opkts": 26448755, "oerrs": null, "coll": null, "kind": "interface"}, {"iface": "en0", "mtu": 1500, "network": "kbrazil-mac", "address": "2600:1700:bab0:d4", "ipkts": 23300545, "ierrs": null, "opkts": 26448755, "oerrs": null, "coll": null, "kind": "interface"}, {"iface": "en0", "mtu": 1500, "network": "kbrazil-mac", "address": "2600:1700:bab0:d4", "ipkts": 23300545, "ierrs": null, "opkts": 26448755, "oerrs": null, "coll": null, "kind": "interface"}, {"iface": "en0", "mtu": 1500, "network": "kbrazil-mac", "address": "2600:1700:bab0:d4", "ipkts": 23300545, "ierrs": null, "opkts": 26448755, "oerrs": null, "coll": null, "kind": "interface"}, {"iface": "en0", "mtu": 1500, "network": "kbrazil-mac", "address": "2600:1700:bab0:d4", "ipkts": 23300545, "ierrs": null, "opkts": 26448755, "oerrs": null, "coll": null, "kind": "interface"}, {"iface": "p2p0", "mtu": 2304, "network": "", "address": "06:83:e7:2d:62:8f", "ipkts": 0, "ierrs": 0, "opkts": 0, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "awdl0", "mtu": 1484, "network": "", "address": "b6:1f:b7:57:a5:4f", "ipkts": 0, "ierrs": 0, "opkts": 5097, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "awdl0", "mtu": 1484, "network": "fe80::b41f:", "address": "fe80:c::b41f:b7ff", "ipkts": 0, "ierrs": null, "opkts": 5097, "oerrs": null, "coll": null, "kind": "interface"}, {"iface": "en1", "mtu": 1500, "network": "", "address": "ea:00:fd:08:57:01", "ipkts": 0, "ierrs": 0, "opkts": 0, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "en2", "mtu": 1500, "network": "", "address": "ea:00:fd:08:57:00", "ipkts": 0, "ierrs": 0, "opkts": 0, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "en3", "mtu": 1500, "network": "", "address": "ea:00:fd:08:57:05", "ipkts": 0, "ierrs": 0, "opkts": 0, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "en4", "mtu": 1500, "network": "", "address": "ea:00:fd:08:57:04", "ipkts": 0, "ierrs": 0, "opkts": 0, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "bridg", "mtu": 1500, "network": "", "address": "ea:00:fd:08:57:01", "ipkts": 0, "ierrs": 0, "opkts": 0, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "utun0", "mtu": 2000, "network": "", "address": null, "ipkts": 0, "ierrs": 0, "opkts": 159, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "utun0", "mtu": 2000, "network": "kbrazil-mac", "address": "fe80:12::30fe:52f", "ipkts": 0, "ierrs": null, "opkts": 159, "oerrs": null, "coll": null, "kind": "interface"}, {"iface": "utun1", "mtu": 1380, "network": "", "address": null, "ipkts": 0, "ierrs": 0, "opkts": 2, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "utun1", "mtu": 1380, "network": "kbrazil-mac", "address": "fe80:15::aaf6:178", "ipkts": 0, "ierrs": null, "opkts": 2, "oerrs": null, "coll": null, "kind": "interface"}, {"iface": "utun2", "mtu": 1380, "network": "", "address": null, "ipkts": 0, "ierrs": 0, "opkts": 2, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "utun2", "mtu": 1380, "network": "kbrazil-mac", "address": "fe80:16::ce02:efd", "ipkts": 0, "ierrs": null, "opkts": 2, "oerrs": null, "coll": null, "kind": "interface"}, {"iface": "utun3", "mtu": 1380, "network": "", "address": null, "ipkts": 0, "ierrs": 0, "opkts": 2, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "utun3", "mtu": 1380, "network": "kbrazil-mac", "address": "fe80:17::1188:a03", "ipkts": 0, "ierrs": null, "opkts": 2, "oerrs": null, "coll": null, "kind": "interface"}, {"iface": "vmnet", "mtu": 1500, "network": "", "address": "00:50:56:c0:00:01", "ipkts": 0, "ierrs": 0, "opkts": 0, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "vmnet", "mtu": 1500, "network": "192.168.101", "address": "192.168.101.1", "ipkts": 0, "ierrs": null, "opkts": 0, "oerrs": null, "coll": null, "kind": "interface"}, {"iface": "vmnet", "mtu": 1500, "network": "", "address": "00:50:56:c0:00:08", "ipkts": 1853, "ierrs": 0, "opkts": 0, "oerrs": 0, "coll": 0, "kind": "interface"}, {"iface": "vmnet", "mtu": 1500, "network": "192.168.71", "address": "192.168.71.1", "ipkts": 1853, "ierrs": null, "opkts": 0, "oerrs": null, "coll": null, "kind": "interface"}] jc-1.17.3/tests/fixtures/osx-10.14.6/netstat-i.out000066400000000000000000000064321415226333200212770ustar00rootroot00000000000000Name Mtu Network Address Ipkts Ierrs Opkts Oerrs Coll lo0 16384 1580150 0 1580150 0 0 lo0 16384 127 localhost 1580150 - 1580150 - - lo0 16384 localhost ::1 1580150 - 1580150 - - lo0 16384 fe80::1%lo0 fe80:1::1 1580150 - 1580150 - - gif0* 1280 0 0 0 0 0 stf0* 1280 0 0 0 0 0 VHC12 0 0 0 0 0 0 XHC1* 0 0 0 0 0 0 XHC0* 0 0 0 0 0 0 XHC20 0 0 0 0 0 0 en5 1500 ac:de:48:00:11:22 140215 0 137522 721 0 en5 1500 fe80::aede: fe80:8::aede:48ff 140215 - 137522 - - ap1* 1500 a6:83:e7:2d:62:8f 0 0 0 0 0 en0 1500 a4:83:e7:2d:62:8f 23300545 0 26448755 464 0 en0 1500 kbrazil-mac fe80:a::cf9:ca6f: 23300545 - 26448755 - - en0 1500 192.168.1 kbrazil-mac.att 23300545 - 26448755 - - en0 1500 kbrazil-mac 2600:1700:bab0:d4 23300545 - 26448755 - - en0 1500 kbrazil-mac 2600:1700:bab0:d4 23300545 - 26448755 - - en0 1500 kbrazil-mac 2600:1700:bab0:d4 23300545 - 26448755 - - en0 1500 kbrazil-mac 2600:1700:bab0:d4 23300545 - 26448755 - - en0 1500 kbrazil-mac 2600:1700:bab0:d4 23300545 - 26448755 - - en0 1500 kbrazil-mac 2600:1700:bab0:d4 23300545 - 26448755 - - p2p0 2304 06:83:e7:2d:62:8f 0 0 0 0 0 awdl0 1484 b6:1f:b7:57:a5:4f 0 0 5097 0 0 awdl0 1484 fe80::b41f: fe80:c::b41f:b7ff 0 - 5097 - - en1 1500 ea:00:fd:08:57:01 0 0 0 0 0 en2 1500 ea:00:fd:08:57:00 0 0 0 0 0 en3 1500 ea:00:fd:08:57:05 0 0 0 0 0 en4 1500 ea:00:fd:08:57:04 0 0 0 0 0 bridg 1500 ea:00:fd:08:57:01 0 0 0 0 0 utun0 2000 0 0 159 0 0 utun0 2000 kbrazil-mac fe80:12::30fe:52f 0 - 159 - - utun1 1380 0 0 2 0 0 utun1 1380 kbrazil-mac fe80:15::aaf6:178 0 - 2 - - utun2 1380 0 0 2 0 0 utun2 1380 kbrazil-mac fe80:16::ce02:efd 0 - 2 - - utun3 1380 0 0 2 0 0 utun3 1380 kbrazil-mac fe80:17::1188:a03 0 - 2 - - vmnet 1500 00:50:56:c0:00:01 0 0 0 0 0 vmnet 1500 192.168.101 192.168.101.1 0 - 0 - - vmnet 1500 00:50:56:c0:00:08 1853 0 0 0 0 vmnet 1500 192.168.71 192.168.71.1 1853 - 0 - - jc-1.17.3/tests/fixtures/osx-10.14.6/netstat-r.json000066400000000000000000000410411415226333200214450ustar00rootroot00000000000000[{"destination": "default", "gateway": "dsldevice.attlocal", "route_flags": "UGSc", "route_refs": 85, "use": 24, "iface": "en0", "kind": "route", "route_flags_pretty": ["UP", "GATEWAY", "STATIC", "PRCLONING"]}, {"destination": "127", "gateway": "localhost", "route_flags": "UCS", "route_refs": 0, "use": 0, "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "CLONING", "STATIC"]}, {"destination": "localhost", "gateway": "localhost", "route_flags": "UH", "route_refs": 20, "use": 1266183, "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "HOST"]}, {"destination": "169.254", "gateway": "link#10", "route_flags": "UCS", "route_refs": 1, "use": 0, "iface": "en0", "expire": "!", "kind": "route", "route_flags_pretty": ["UP", "CLONING", "STATIC"]}, {"destination": "192.168.1", "gateway": "link#10", "route_flags": "UCS", "route_refs": 11, "use": 0, "iface": "en0", "expire": "!", "kind": "route", "route_flags_pretty": ["UP", "CLONING", "STATIC"]}, {"destination": "kellys-iphone.attl", "gateway": "e0:33:8e:68:38:d6", "route_flags": "UHLWIi", "route_refs": 2, "use": 466, "iface": "en0", "expire": "866", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE", "IFREF"]}, {"destination": "kellys-mbp.attloca", "gateway": "f0:18:98:3:d8:39", "route_flags": "UHLWIi", "route_refs": 2, "use": 8877, "iface": "en0", "expire": "187", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE", "IFREF"]}, {"destination": "ipad.attlocal.net", "gateway": "4c:56:9d:5f:b7:4c", "route_flags": "UHLWI", "route_refs": 0, "use": 600, "iface": "en0", "expire": "786", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE"]}, {"destination": "mycloudex2ultra.at", "gateway": "0:90:a9:ed:e4:35", "route_flags": "UHLWIi", "route_refs": 1, "use": 265596, "iface": "en0", "expire": "1044", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE", "IFREF"]}, {"destination": "family-room-5.attl", "gateway": "c8:d0:83:cd:e3:2d", "route_flags": "UHLWIi", "route_refs": 1, "use": 4308, "iface": "en0", "expire": "391", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE", "IFREF"]}, {"destination": "bedroom.attlocal.n", "gateway": "d0:3:4b:3b:28:d5", "route_flags": "UHLWIi", "route_refs": 1, "use": 4586, "iface": "en0", "expire": "36", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE", "IFREF"]}, {"destination": "upstairs.attlocal.", "gateway": "50:32:37:d7:f5:9b", "route_flags": "UHLWIi", "route_refs": 1, "use": 6117, "iface": "en0", "expire": "1161", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE", "IFREF"]}, {"destination": "rbr50.attlocal.net", "gateway": "3c:37:86:15:ad:f7", "route_flags": "UHLWI", "route_refs": 0, "use": 16, "iface": "en0", "expire": "678", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE"]}, {"destination": "192.168.1.221/32", "gateway": "link#10", "route_flags": "UCS", "route_refs": 1, "use": 0, "iface": "en0", "expire": "!", "kind": "route", "route_flags_pretty": ["UP", "CLONING", "STATIC"]}, {"destination": "kbrazil-mac.attloc", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHLWI", "route_refs": 0, "use": 36, "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE"]}, {"destination": "irobot-f5788f2e24e", "gateway": "50:14:79:12:42:3e", "route_flags": "UHLWI", "route_refs": 0, "use": 0, "iface": "en0", "expire": "1173", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE"]}, {"destination": "victoriasiphone.at", "gateway": "14:60:cb:10:ec:17", "route_flags": "UHLWI", "route_refs": 0, "use": 54, "iface": "en0", "expire": "64", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE"]}, {"destination": "rbs50.attlocal.net", "gateway": "3c:37:86:15:dd:b3", "route_flags": "UHLWI", "route_refs": 0, "use": 3300, "iface": "en0", "expire": "952", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE"]}, {"destination": "192.168.1.254/32", "gateway": "link#10", "route_flags": "UCS", "route_refs": 1, "use": 0, "iface": "en0", "expire": "!", "kind": "route", "route_flags_pretty": ["UP", "CLONING", "STATIC"]}, {"destination": "dsldevice.attlocal", "gateway": "fc:ae:34:a1:3a:80", "route_flags": "UHLWIir", "route_refs": 30, "use": 69452, "iface": "en0", "expire": "1180", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE", "IFREF", "ROUTER"]}, {"destination": "192.168.71", "gateway": "link#20", "route_flags": "UC", "route_refs": 2, "use": 0, "iface": "vmnet8", "expire": "!", "kind": "route", "route_flags_pretty": ["UP", "CLONING"]}, {"destination": "192.168.71.160", "gateway": "link#20", "route_flags": "UHLWIi", "route_refs": 1, "use": 1708, "iface": "vmnet8", "expire": "!", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE", "IFREF"]}, {"destination": "192.168.101", "gateway": "link#19", "route_flags": "UC", "route_refs": 1, "use": 0, "iface": "vmnet1", "expire": "!", "kind": "route", "route_flags_pretty": ["UP", "CLONING"]}, {"destination": "224.0.0/4", "gateway": "link#10", "route_flags": "UmCS", "route_refs": 2, "use": 0, "iface": "en0", "expire": "!", "kind": "route", "route_flags_pretty": ["UP", "MULTICAST", "CLONING", "STATIC"]}, {"destination": "224.0.0.251", "gateway": "1:0:5e:0:0:fb", "route_flags": "UHmLWI", "route_refs": 0, "use": 312, "iface": "en0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "MULTICAST", "LLINFO", "WASCLONED", "IFSCOPE"]}, {"destination": "239.255.255.250", "gateway": "1:0:5e:7f:ff:fa", "route_flags": "UHmLWI", "route_refs": 0, "use": 9914, "iface": "en0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "MULTICAST", "LLINFO", "WASCLONED", "IFSCOPE"]}, {"destination": "255.255.255.255/32", "gateway": "link#10", "route_flags": "UCS", "route_refs": 0, "use": 0, "iface": "en0", "expire": "!", "kind": "route", "route_flags_pretty": ["UP", "CLONING", "STATIC"]}, {"destination": "default", "gateway": "fe80::feae:34ff:fe", "route_flags": "UGc", "iface": "en0", "kind": "route", "route_flags_pretty": ["UP", "GATEWAY", "PRCLONING"]}, {"destination": "default", "gateway": "fe80::%utun0", "route_flags": "UGcI", "iface": "utun0", "kind": "route", "route_flags_pretty": ["UP", "GATEWAY", "PRCLONING", "IFSCOPE"]}, {"destination": "default", "gateway": "fe80::%utun1", "route_flags": "UGcI", "iface": "utun1", "kind": "route", "route_flags_pretty": ["UP", "GATEWAY", "PRCLONING", "IFSCOPE"]}, {"destination": "default", "gateway": "fe80::%utun2", "route_flags": "UGcI", "iface": "utun2", "kind": "route", "route_flags_pretty": ["UP", "GATEWAY", "PRCLONING", "IFSCOPE"]}, {"destination": "default", "gateway": "fe80::%utun3", "route_flags": "UGcI", "iface": "utun3", "kind": "route", "route_flags_pretty": ["UP", "GATEWAY", "PRCLONING", "IFSCOPE"]}, {"destination": "localhost", "gateway": "localhost", "route_flags": "UHL", "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO"]}, {"destination": "2600:1700:bab0:d40", "gateway": "link#10", "route_flags": "UC", "iface": "en0", "kind": "route", "route_flags_pretty": ["UP", "CLONING"]}, {"destination": "dsldevice6.attloca", "gateway": "fc:ae:34:a1:3a:80", "route_flags": "UHLWIi", "iface": "en0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE", "IFREF"]}, {"destination": "2600:1700:bab0:d40", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO"]}, {"destination": "2600:1700:bab0:d40", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO"]}, {"destination": "2600:1700:bab0:d40", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO"]}, {"destination": "kbrazil-mac.attloc", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO"]}, {"destination": "kbrazil-mac.attloc", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO"]}, {"destination": "kbrazil-mac.attloc", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO"]}, {"destination": "fe80::%lo0", "gateway": "fe80::1%lo0", "route_flags": "UcI", "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "PRCLONING", "IFSCOPE"]}, {"destination": "fe80::1%lo0", "gateway": "link#1", "route_flags": "UHLI", "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "IFSCOPE"]}, {"destination": "fe80::%en5", "gateway": "link#8", "route_flags": "UCI", "iface": "en5", "kind": "route", "route_flags_pretty": ["UP", "CLONING", "IFSCOPE"]}, {"destination": "fe80::aede:48ff:fe", "gateway": "ac:de:48:0:11:22", "route_flags": "UHLI", "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "IFSCOPE"]}, {"destination": "fe80::aede:48ff:fe", "gateway": "ac:de:48:33:44:55", "route_flags": "UHLWIi", "iface": "en5", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE", "IFREF"]}, {"destination": "fe80::%en0", "gateway": "link#10", "route_flags": "UCI", "iface": "en0", "kind": "route", "route_flags_pretty": ["UP", "CLONING", "IFSCOPE"]}, {"destination": "fe80::df:eea7:d8e0", "gateway": "14:60:cb:10:ec:17", "route_flags": "UHLWI", "iface": "en0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE"]}, {"destination": "fe80::472:ae33:7f7", "gateway": "b4:18:d1:9d:bc:2d", "route_flags": "UHLWI", "iface": "en0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE"]}, {"destination": "ipad.local", "gateway": "4c:56:9d:5f:b7:4c", "route_flags": "UHLWI", "iface": "en0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE"]}, {"destination": "fe80::ced:5f18:1d1", "gateway": "14:60:cb:10:ec:17", "route_flags": "UHLWI", "iface": "en0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE"]}, {"destination": "kbrazil-mac.local", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHLI", "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "IFSCOPE"]}, {"destination": "fe80::10f2:d51c:68", "gateway": "e0:33:8e:68:38:d6", "route_flags": "UHLWI", "iface": "en0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE"]}, {"destination": "upstairs.local", "gateway": "50:32:37:d7:f5:9b", "route_flags": "UHLWIi", "iface": "en0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE", "IFREF"]}, {"destination": "fe80::1899:d8f6:dc", "gateway": "50:32:37:d7:f5:9b", "route_flags": "UHLWI", "iface": "en0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE"]}, {"destination": "kellys-macbook-pro", "gateway": "f0:18:98:3:d8:39", "route_flags": "UHLWI", "iface": "en0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE"]}, {"destination": "bedroom.local", "gateway": "d0:3:4b:3b:28:d5", "route_flags": "UHLWI", "iface": "en0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE"]}, {"destination": "kellys-airport-exp", "gateway": "48:d7:5:f1:86:e8", "route_flags": "UHLWI", "iface": "en0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE"]}, {"destination": "hp9cb654545bb9.loc", "gateway": "9c:b6:54:5a:5a:7c", "route_flags": "UHLWI", "iface": "en0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE"]}, {"destination": "fe80::feae:34ff:fe", "gateway": "fc:ae:34:a1:3a:80", "route_flags": "UHLWIir", "iface": "en0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE", "IFREF", "ROUTER"]}, {"destination": "fe80::%awdl0", "gateway": "link#12", "route_flags": "UCI", "iface": "awdl0", "kind": "route", "route_flags_pretty": ["UP", "CLONING", "IFSCOPE"]}, {"destination": "fe80::b41f:b7ff:fe", "gateway": "b6:1f:b7:57:a5:4f", "route_flags": "UHLI", "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "IFSCOPE"]}, {"destination": "fe80::%utun0", "gateway": "kbrazil-mac.local", "route_flags": "UcI", "iface": "utun0", "kind": "route", "route_flags_pretty": ["UP", "PRCLONING", "IFSCOPE"]}, {"destination": "kbrazil-mac.local", "gateway": "link#18", "route_flags": "UHLI", "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "IFSCOPE"]}, {"destination": "fe80::%utun1", "gateway": "kbrazil-mac.local", "route_flags": "UcI", "iface": "utun1", "kind": "route", "route_flags_pretty": ["UP", "PRCLONING", "IFSCOPE"]}, {"destination": "kbrazil-mac.local", "gateway": "link#21", "route_flags": "UHLI", "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "IFSCOPE"]}, {"destination": "fe80::%utun2", "gateway": "kbrazil-mac.local", "route_flags": "UcI", "iface": "utun2", "kind": "route", "route_flags_pretty": ["UP", "PRCLONING", "IFSCOPE"]}, {"destination": "kbrazil-mac.local", "gateway": "link#22", "route_flags": "UHLI", "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "IFSCOPE"]}, {"destination": "fe80::%utun3", "gateway": "kbrazil-mac.local", "route_flags": "UcI", "iface": "utun3", "kind": "route", "route_flags_pretty": ["UP", "PRCLONING", "IFSCOPE"]}, {"destination": "kbrazil-mac.local", "gateway": "link#23", "route_flags": "UHLI", "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "IFSCOPE"]}, {"destination": "ff01::%lo0", "gateway": "localhost", "route_flags": "UmCI", "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "MULTICAST", "CLONING", "IFSCOPE"]}, {"destination": "ff01::%en5", "gateway": "link#8", "route_flags": "UmCI", "iface": "en5", "kind": "route", "route_flags_pretty": ["UP", "MULTICAST", "CLONING", "IFSCOPE"]}, {"destination": "ff01::%en0", "gateway": "link#10", "route_flags": "UmCI", "iface": "en0", "kind": "route", "route_flags_pretty": ["UP", "MULTICAST", "CLONING", "IFSCOPE"]}, {"destination": "ff01::%awdl0", "gateway": "link#12", "route_flags": "UmCI", "iface": "awdl0", "kind": "route", "route_flags_pretty": ["UP", "MULTICAST", "CLONING", "IFSCOPE"]}, {"destination": "ff01::%utun0", "gateway": "kbrazil-mac.local", "route_flags": "UmCI", "iface": "utun0", "kind": "route", "route_flags_pretty": ["UP", "MULTICAST", "CLONING", "IFSCOPE"]}, {"destination": "ff01::%utun1", "gateway": "kbrazil-mac.local", "route_flags": "UmCI", "iface": "utun1", "kind": "route", "route_flags_pretty": ["UP", "MULTICAST", "CLONING", "IFSCOPE"]}, {"destination": "ff01::%utun2", "gateway": "kbrazil-mac.local", "route_flags": "UmCI", "iface": "utun2", "kind": "route", "route_flags_pretty": ["UP", "MULTICAST", "CLONING", "IFSCOPE"]}, {"destination": "ff01::%utun3", "gateway": "kbrazil-mac.local", "route_flags": "UmCI", "iface": "utun3", "kind": "route", "route_flags_pretty": ["UP", "MULTICAST", "CLONING", "IFSCOPE"]}, {"destination": "ff02::%lo0", "gateway": "localhost", "route_flags": "UmCI", "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "MULTICAST", "CLONING", "IFSCOPE"]}, {"destination": "ff02::%en5", "gateway": "link#8", "route_flags": "UmCI", "iface": "en5", "kind": "route", "route_flags_pretty": ["UP", "MULTICAST", "CLONING", "IFSCOPE"]}, {"destination": "ff02::%en0", "gateway": "link#10", "route_flags": "UmCI", "iface": "en0", "kind": "route", "route_flags_pretty": ["UP", "MULTICAST", "CLONING", "IFSCOPE"]}, {"destination": "ff02::%awdl0", "gateway": "link#12", "route_flags": "UmCI", "iface": "awdl0", "kind": "route", "route_flags_pretty": ["UP", "MULTICAST", "CLONING", "IFSCOPE"]}, {"destination": "ff02::%utun0", "gateway": "kbrazil-mac.local", "route_flags": "UmCI", "iface": "utun0", "kind": "route", "route_flags_pretty": ["UP", "MULTICAST", "CLONING", "IFSCOPE"]}, {"destination": "ff02::%utun1", "gateway": "kbrazil-mac.local", "route_flags": "UmCI", "iface": "utun1", "kind": "route", "route_flags_pretty": ["UP", "MULTICAST", "CLONING", "IFSCOPE"]}, {"destination": "ff02::%utun2", "gateway": "kbrazil-mac.local", "route_flags": "UmCI", "iface": "utun2", "kind": "route", "route_flags_pretty": ["UP", "MULTICAST", "CLONING", "IFSCOPE"]}, {"destination": "ff02::%utun3", "gateway": "kbrazil-mac.local", "route_flags": "UmCI", "iface": "utun3", "kind": "route", "route_flags_pretty": ["UP", "MULTICAST", "CLONING", "IFSCOPE"]}] jc-1.17.3/tests/fixtures/osx-10.14.6/netstat-r.out000066400000000000000000000140421415226333200213040ustar00rootroot00000000000000Routing tables Internet: Destination Gateway Flags Refs Use Netif Expire default dsldevice.attlocal UGSc 85 24 en0 127 localhost UCS 0 0 lo0 localhost localhost UH 20 1266183 lo0 169.254 link#10 UCS 1 0 en0 ! 192.168.1 link#10 UCS 11 0 en0 ! kellys-iphone.attl e0:33:8e:68:38:d6 UHLWIi 2 466 en0 866 kellys-mbp.attloca f0:18:98:3:d8:39 UHLWIi 2 8877 en0 187 ipad.attlocal.net 4c:56:9d:5f:b7:4c UHLWI 0 600 en0 786 mycloudex2ultra.at 0:90:a9:ed:e4:35 UHLWIi 1 265596 en0 1044 family-room-5.attl c8:d0:83:cd:e3:2d UHLWIi 1 4308 en0 391 bedroom.attlocal.n d0:3:4b:3b:28:d5 UHLWIi 1 4586 en0 36 upstairs.attlocal. 50:32:37:d7:f5:9b UHLWIi 1 6117 en0 1161 rbr50.attlocal.net 3c:37:86:15:ad:f7 UHLWI 0 16 en0 678 192.168.1.221/32 link#10 UCS 1 0 en0 ! kbrazil-mac.attloc a4:83:e7:2d:62:8f UHLWI 0 36 lo0 irobot-f5788f2e24e 50:14:79:12:42:3e UHLWI 0 0 en0 1173 victoriasiphone.at 14:60:cb:10:ec:17 UHLWI 0 54 en0 64 rbs50.attlocal.net 3c:37:86:15:dd:b3 UHLWI 0 3300 en0 952 192.168.1.254/32 link#10 UCS 1 0 en0 ! dsldevice.attlocal fc:ae:34:a1:3a:80 UHLWIir 30 69452 en0 1180 192.168.71 link#20 UC 2 0 vmnet8 ! 192.168.71.160 link#20 UHLWIi 1 1708 vmnet8 ! 192.168.101 link#19 UC 1 0 vmnet1 ! 224.0.0/4 link#10 UmCS 2 0 en0 ! 224.0.0.251 1:0:5e:0:0:fb UHmLWI 0 312 en0 239.255.255.250 1:0:5e:7f:ff:fa UHmLWI 0 9914 en0 255.255.255.255/32 link#10 UCS 0 0 en0 ! Internet6: Destination Gateway Flags Netif Expire default fe80::feae:34ff:fe UGc en0 default fe80::%utun0 UGcI utun0 default fe80::%utun1 UGcI utun1 default fe80::%utun2 UGcI utun2 default fe80::%utun3 UGcI utun3 localhost localhost UHL lo0 2600:1700:bab0:d40 link#10 UC en0 dsldevice6.attloca fc:ae:34:a1:3a:80 UHLWIi en0 2600:1700:bab0:d40 a4:83:e7:2d:62:8f UHL lo0 2600:1700:bab0:d40 a4:83:e7:2d:62:8f UHL lo0 2600:1700:bab0:d40 a4:83:e7:2d:62:8f UHL lo0 kbrazil-mac.attloc a4:83:e7:2d:62:8f UHL lo0 kbrazil-mac.attloc a4:83:e7:2d:62:8f UHL lo0 kbrazil-mac.attloc a4:83:e7:2d:62:8f UHL lo0 fe80::%lo0 fe80::1%lo0 UcI lo0 fe80::1%lo0 link#1 UHLI lo0 fe80::%en5 link#8 UCI en5 fe80::aede:48ff:fe ac:de:48:0:11:22 UHLI lo0 fe80::aede:48ff:fe ac:de:48:33:44:55 UHLWIi en5 fe80::%en0 link#10 UCI en0 fe80::df:eea7:d8e0 14:60:cb:10:ec:17 UHLWI en0 fe80::472:ae33:7f7 b4:18:d1:9d:bc:2d UHLWI en0 ipad.local 4c:56:9d:5f:b7:4c UHLWI en0 fe80::ced:5f18:1d1 14:60:cb:10:ec:17 UHLWI en0 kbrazil-mac.local a4:83:e7:2d:62:8f UHLI lo0 fe80::10f2:d51c:68 e0:33:8e:68:38:d6 UHLWI en0 upstairs.local 50:32:37:d7:f5:9b UHLWIi en0 fe80::1899:d8f6:dc 50:32:37:d7:f5:9b UHLWI en0 kellys-macbook-pro f0:18:98:3:d8:39 UHLWI en0 bedroom.local d0:3:4b:3b:28:d5 UHLWI en0 kellys-airport-exp 48:d7:5:f1:86:e8 UHLWI en0 hp9cb654545bb9.loc 9c:b6:54:5a:5a:7c UHLWI en0 fe80::feae:34ff:fe fc:ae:34:a1:3a:80 UHLWIir en0 fe80::%awdl0 link#12 UCI awdl0 fe80::b41f:b7ff:fe b6:1f:b7:57:a5:4f UHLI lo0 fe80::%utun0 kbrazil-mac.local UcI utun0 kbrazil-mac.local link#18 UHLI lo0 fe80::%utun1 kbrazil-mac.local UcI utun1 kbrazil-mac.local link#21 UHLI lo0 fe80::%utun2 kbrazil-mac.local UcI utun2 kbrazil-mac.local link#22 UHLI lo0 fe80::%utun3 kbrazil-mac.local UcI utun3 kbrazil-mac.local link#23 UHLI lo0 ff01::%lo0 localhost UmCI lo0 ff01::%en5 link#8 UmCI en5 ff01::%en0 link#10 UmCI en0 ff01::%awdl0 link#12 UmCI awdl0 ff01::%utun0 kbrazil-mac.local UmCI utun0 ff01::%utun1 kbrazil-mac.local UmCI utun1 ff01::%utun2 kbrazil-mac.local UmCI utun2 ff01::%utun3 kbrazil-mac.local UmCI utun3 ff02::%lo0 localhost UmCI lo0 ff02::%en5 link#8 UmCI en5 ff02::%en0 link#10 UmCI en0 ff02::%awdl0 link#12 UmCI awdl0 ff02::%utun0 kbrazil-mac.local UmCI utun0 ff02::%utun1 kbrazil-mac.local UmCI utun1 ff02::%utun2 kbrazil-mac.local UmCI utun2 ff02::%utun3 kbrazil-mac.local UmCI utun3 jc-1.17.3/tests/fixtures/osx-10.14.6/netstat-rnl.json000066400000000000000000000510271415226333200220040ustar00rootroot00000000000000[{"destination": "default", "gateway": "192.168.1.254", "route_flags": "UGSc", "route_refs": 83, "use": 24, "mtu": 1500, "iface": "en0", "kind": "route", "route_flags_pretty": ["UP", "GATEWAY", "STATIC", "PRCLONING"]}, {"destination": "127", "gateway": "127.0.0.1", "route_flags": "UCS", "route_refs": 0, "use": 0, "mtu": 16384, "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "CLONING", "STATIC"]}, {"destination": "127.0.0.1", "gateway": "127.0.0.1", "route_flags": "UH", "route_refs": 18, "use": 1266231, "mtu": 16384, "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "HOST"]}, {"destination": "169.254", "gateway": "link#10", "route_flags": "UCS", "route_refs": 1, "use": 0, "mtu": 1500, "iface": "en0", "expire": "!", "kind": "route", "route_flags_pretty": ["UP", "CLONING", "STATIC"]}, {"destination": "192.168.1", "gateway": "link#10", "route_flags": "UCS", "route_refs": 12, "use": 0, "mtu": 1500, "iface": "en0", "expire": "!", "kind": "route", "route_flags_pretty": ["UP", "CLONING", "STATIC"]}, {"destination": "192.168.1.64", "gateway": "e0:33:8e:68:38:d6", "route_flags": "UHLWIi", "route_refs": 2, "use": 470, "mtu": 1500, "iface": "en0", "expire": "753", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE", "IFREF"]}, {"destination": "192.168.1.72", "gateway": "f0:18:98:3:d8:39", "route_flags": "UHLWIi", "route_refs": 1, "use": 8878, "mtu": 1500, "iface": "en0", "expire": "1105", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE", "IFREF"]}, {"destination": "192.168.1.75", "gateway": "4c:56:9d:5f:b7:4c", "route_flags": "UHLWIi", "route_refs": 1, "use": 600, "mtu": 1500, "iface": "en0", "expire": "673", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE", "IFREF"]}, {"destination": "192.168.1.80", "gateway": "0:90:a9:ed:e4:35", "route_flags": "UHLWIi", "route_refs": 1, "use": 265604, "mtu": 1500, "iface": "en0", "expire": "931", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE", "IFREF"]}, {"destination": "192.168.1.88", "gateway": "c8:d0:83:cd:e3:2d", "route_flags": "UHLWIi", "route_refs": 1, "use": 4310, "mtu": 1500, "iface": "en0", "expire": "278", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE", "IFREF"]}, {"destination": "192.168.1.89", "gateway": "d0:3:4b:3b:28:d5", "route_flags": "UHLWIi", "route_refs": 1, "use": 4588, "mtu": 1500, "iface": "en0", "expire": "1132", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE", "IFREF"]}, {"destination": "192.168.1.186", "gateway": "50:32:37:d7:f5:9b", "route_flags": "UHLWIi", "route_refs": 1, "use": 6123, "mtu": 1500, "iface": "en0", "expire": "1181", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE", "IFREF"]}, {"destination": "192.168.1.216", "gateway": "3c:37:86:15:ad:f7", "route_flags": "UHLWI", "route_refs": 0, "use": 16, "mtu": 1500, "iface": "en0", "expire": "565", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE"]}, {"destination": "192.168.1.221/32", "gateway": "link#10", "route_flags": "UCS", "route_refs": 1, "use": 0, "mtu": 1500, "iface": "en0", "expire": "!", "kind": "route", "route_flags_pretty": ["UP", "CLONING", "STATIC"]}, {"destination": "192.168.1.221", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHLWI", "route_refs": 0, "use": 36, "mtu": 16384, "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE"]}, {"destination": "192.168.1.242", "gateway": "50:14:79:12:42:3e", "route_flags": "UHLWI", "route_refs": 0, "use": 0, "mtu": 1500, "iface": "en0", "expire": "1182", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE"]}, {"destination": "192.168.1.251", "gateway": "14:60:cb:10:ec:17", "route_flags": "UHLWI", "route_refs": 0, "use": 54, "mtu": 1500, "iface": "en0", "expire": "1157", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE"]}, {"destination": "192.168.1.253", "gateway": "3c:37:86:15:dd:b3", "route_flags": "UHLWI", "route_refs": 0, "use": 3300, "mtu": 1500, "iface": "en0", "expire": "839", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE"]}, {"destination": "192.168.1.254/32", "gateway": "link#10", "route_flags": "UCS", "route_refs": 1, "use": 0, "mtu": 1500, "iface": "en0", "expire": "!", "kind": "route", "route_flags_pretty": ["UP", "CLONING", "STATIC"]}, {"destination": "192.168.1.254", "gateway": "fc:ae:34:a1:3a:80", "route_flags": "UHLWIir", "route_refs": 29, "use": 69464, "mtu": 1500, "iface": "en0", "expire": "1200", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE", "IFREF", "ROUTER"]}, {"destination": "192.168.1.255", "gateway": "ff:ff:ff:ff:ff:ff", "route_flags": "UHLWbI", "route_refs": 0, "use": 4, "mtu": 1500, "iface": "en0", "expire": "!", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "BROADCAST", "IFSCOPE"]}, {"destination": "192.168.71", "gateway": "link#20", "route_flags": "UC", "route_refs": 3, "use": 0, "mtu": 1500, "iface": "vmnet8", "expire": "!", "kind": "route", "route_flags_pretty": ["UP", "CLONING"]}, {"destination": "192.168.71.160", "gateway": "link#20", "route_flags": "UHLWIi", "route_refs": 1, "use": 1708, "mtu": 1500, "iface": "vmnet8", "expire": "!", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE", "IFREF"]}, {"destination": "192.168.71.255", "gateway": "ff:ff:ff:ff:ff:ff", "route_flags": "UHLWbI", "route_refs": 0, "use": 4, "mtu": 1500, "iface": "vmnet8", "expire": "!", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "BROADCAST", "IFSCOPE"]}, {"destination": "192.168.101", "gateway": "link#19", "route_flags": "UC", "route_refs": 2, "use": 0, "mtu": 1500, "iface": "vmnet1", "expire": "!", "kind": "route", "route_flags_pretty": ["UP", "CLONING"]}, {"destination": "192.168.101.255", "gateway": "ff:ff:ff:ff:ff:ff", "route_flags": "UHLWbI", "route_refs": 0, "use": 4, "mtu": 1500, "iface": "vmnet1", "expire": "!", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "BROADCAST", "IFSCOPE"]}, {"destination": "224.0.0/4", "gateway": "link#10", "route_flags": "UmCS", "route_refs": 2, "use": 0, "mtu": 1500, "iface": "en0", "expire": "!", "kind": "route", "route_flags_pretty": ["UP", "MULTICAST", "CLONING", "STATIC"]}, {"destination": "224.0.0.251", "gateway": "1:0:5e:0:0:fb", "route_flags": "UHmLWI", "route_refs": 0, "use": 312, "mtu": 1500, "iface": "en0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "MULTICAST", "LLINFO", "WASCLONED", "IFSCOPE"]}, {"destination": "239.255.255.250", "gateway": "1:0:5e:7f:ff:fa", "route_flags": "UHmLWI", "route_refs": 0, "use": 9918, "mtu": 1500, "iface": "en0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "MULTICAST", "LLINFO", "WASCLONED", "IFSCOPE"]}, {"destination": "255.255.255.255/32", "gateway": "link#10", "route_flags": "UCS", "route_refs": 0, "use": 0, "mtu": 1500, "iface": "en0", "expire": "!", "kind": "route", "route_flags_pretty": ["UP", "CLONING", "STATIC"]}, {"destination": "default", "gateway": "fe80::feae:34ff:fea1:3a80%en0", "route_flags": "UGc", "route_refs": 7, "use": 0, "mtu": 1500, "iface": "en0", "kind": "route", "route_flags_pretty": ["UP", "GATEWAY", "PRCLONING"]}, {"destination": "default", "gateway": "fe80::%utun0", "route_flags": "UGcI", "route_refs": 0, "use": 0, "mtu": 2000, "iface": "utun0", "kind": "route", "route_flags_pretty": ["UP", "GATEWAY", "PRCLONING", "IFSCOPE"]}, {"destination": "default", "gateway": "fe80::%utun1", "route_flags": "UGcI", "route_refs": 0, "use": 0, "mtu": 1380, "iface": "utun1", "kind": "route", "route_flags_pretty": ["UP", "GATEWAY", "PRCLONING", "IFSCOPE"]}, {"destination": "default", "gateway": "fe80::%utun2", "route_flags": "UGcI", "route_refs": 0, "use": 0, "mtu": 1380, "iface": "utun2", "kind": "route", "route_flags_pretty": ["UP", "GATEWAY", "PRCLONING", "IFSCOPE"]}, {"destination": "default", "gateway": "fe80::%utun3", "route_flags": "UGcI", "route_refs": 0, "use": 0, "mtu": 1380, "iface": "utun3", "kind": "route", "route_flags_pretty": ["UP", "GATEWAY", "PRCLONING", "IFSCOPE"]}, {"destination": "::1", "gateway": "::1", "route_flags": "UHL", "route_refs": 1, "use": 4513, "mtu": 16384, "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO"]}, {"destination": "2600:1700:bab0:d40::/64", "gateway": "link#10", "route_flags": "UC", "route_refs": 2, "use": 0, "mtu": 1500, "iface": "en0", "kind": "route", "route_flags_pretty": ["UP", "CLONING"]}, {"destination": "2600:1700:bab0:d40::1", "gateway": "fc:ae:34:a1:3a:80", "route_flags": "UHLWIi", "route_refs": 12, "use": 68412, "mtu": 1500, "iface": "en0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE", "IFREF"]}, {"destination": "2600:1700:bab0:d40::39", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "route_refs": 0, "use": 0, "mtu": 16384, "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO"]}, {"destination": "2600:1700:bab0:d40:1874:4566:6499:f3d1", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "route_refs": 0, "use": 0, "mtu": 16384, "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO"]}, {"destination": "2600:1700:bab0:d40:5894:f4c5:a982:26be", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "route_refs": 0, "use": 0, "mtu": 16384, "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO"]}, {"destination": "2600:1700:bab0:d40:c9de:af8a:762c:422c", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "route_refs": 0, "use": 0, "mtu": 16384, "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO"]}, {"destination": "2600:1700:bab0:d40:edd2:2cbf:f03a:d14f", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "route_refs": 0, "use": 0, "mtu": 16384, "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO"]}, {"destination": "2600:1700:bab0:d40:f078:690e:f0ba:dfb", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHL", "route_refs": 0, "use": 0, "mtu": 16384, "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO"]}, {"destination": "fe80::%lo0/64", "gateway": "fe80::1%lo0", "route_flags": "UcI", "route_refs": 1, "use": 0, "mtu": 16384, "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "PRCLONING", "IFSCOPE"]}, {"destination": "fe80::1%lo0", "gateway": "link#1", "route_flags": "UHLI", "route_refs": 0, "use": 0, "mtu": 16384, "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "IFSCOPE"]}, {"destination": "fe80::%en5/64", "gateway": "link#8", "route_flags": "UCI", "route_refs": 2, "use": 0, "mtu": 1500, "iface": "en5", "kind": "route", "route_flags_pretty": ["UP", "CLONING", "IFSCOPE"]}, {"destination": "fe80::aede:48ff:fe00:1122%en5", "gateway": "ac:de:48:0:11:22", "route_flags": "UHLI", "route_refs": 0, "use": 0, "mtu": 16384, "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "IFSCOPE"]}, {"destination": "fe80::aede:48ff:fe33:4455%en5", "gateway": "ac:de:48:33:44:55", "route_flags": "UHLWIi", "route_refs": 77, "use": 826, "mtu": 1500, "iface": "en5", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE", "IFREF"]}, {"destination": "fe80::%en0/64", "gateway": "link#10", "route_flags": "UCI", "route_refs": 13, "use": 0, "mtu": 1500, "iface": "en0", "kind": "route", "route_flags_pretty": ["UP", "CLONING", "IFSCOPE"]}, {"destination": "fe80::df:eea7:d8e0:237a%en0", "gateway": "14:60:cb:10:ec:17", "route_flags": "UHLWI", "route_refs": 0, "use": 293, "mtu": 1500, "iface": "en0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE"]}, {"destination": "fe80::472:ae33:7f74:8baf%en0", "gateway": "b4:18:d1:9d:bc:2d", "route_flags": "UHLWI", "route_refs": 0, "use": 2, "mtu": 1500, "iface": "en0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE"]}, {"destination": "fe80::c73:1ab9:79c2:c193%en0", "gateway": "4c:56:9d:5f:b7:4c", "route_flags": "UHLWI", "route_refs": 0, "use": 1597, "mtu": 1500, "iface": "en0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE"]}, {"destination": "fe80::ced:5f18:1d1e:2d6b%en0", "gateway": "14:60:cb:10:ec:17", "route_flags": "UHLWI", "route_refs": 0, "use": 14, "mtu": 1500, "iface": "en0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE"]}, {"destination": "fe80::cf9:ca6f:7d7a:50a2%en0", "gateway": "a4:83:e7:2d:62:8f", "route_flags": "UHLI", "route_refs": 0, "use": 0, "mtu": 16384, "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "IFSCOPE"]}, {"destination": "fe80::10f2:d51c:68e3:bfbb%en0", "gateway": "e0:33:8e:68:38:d6", "route_flags": "UHLWI", "route_refs": 0, "use": 656, "mtu": 1500, "iface": "en0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE"]}, {"destination": "fe80::1406:1bd5:a957:6df2%en0", "gateway": "50:32:37:d7:f5:9b", "route_flags": "UHLWI", "route_refs": 0, "use": 2100, "mtu": 1500, "iface": "en0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE"]}, {"destination": "fe80::1899:d8f6:dca5:207%en0", "gateway": "50:32:37:d7:f5:9b", "route_flags": "UHLWI", "route_refs": 0, "use": 4619, "mtu": 1500, "iface": "en0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE"]}, {"destination": "fe80::1c4d:12ea:5e57:24ad%en0", "gateway": "f0:18:98:3:d8:39", "route_flags": "UHLWIi", "route_refs": 1, "use": 8, "mtu": 1500, "iface": "en0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE", "IFREF"]}, {"destination": "fe80::1cff:a835:c99b:22c1%en0", "gateway": "d0:3:4b:3b:28:d5", "route_flags": "UHLWI", "route_refs": 0, "use": 477, "mtu": 1500, "iface": "en0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE"]}, {"destination": "fe80::4ad7:5ff:fef1:86e8%en0", "gateway": "48:d7:5:f1:86:e8", "route_flags": "UHLWI", "route_refs": 0, "use": 862, "mtu": 1500, "iface": "en0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE"]}, {"destination": "fe80::9eb6:54ff:fe5a:5a7c%en0", "gateway": "9c:b6:54:5a:5a:7c", "route_flags": "UHLWI", "route_refs": 0, "use": 322, "mtu": 1500, "iface": "en0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE"]}, {"destination": "fe80::feae:34ff:fea1:3a80%en0", "gateway": "fc:ae:34:a1:3a:80", "route_flags": "UHLWIir", "route_refs": 7, "use": 27100, "mtu": 1500, "iface": "en0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "WASCLONED", "IFSCOPE", "IFREF", "ROUTER"]}, {"destination": "fe80::%awdl0/64", "gateway": "link#12", "route_flags": "UCI", "route_refs": 1, "use": 0, "mtu": 1484, "iface": "awdl0", "kind": "route", "route_flags_pretty": ["UP", "CLONING", "IFSCOPE"]}, {"destination": "fe80::b41f:b7ff:fe57:a54f%awdl0", "gateway": "b6:1f:b7:57:a5:4f", "route_flags": "UHLI", "route_refs": 1, "use": 0, "mtu": 16384, "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "IFSCOPE"]}, {"destination": "fe80::%utun0/64", "gateway": "fe80::30fe:52f1:103c:c66c%utun0", "route_flags": "UcI", "route_refs": 2, "use": 0, "mtu": 2000, "iface": "utun0", "kind": "route", "route_flags_pretty": ["UP", "PRCLONING", "IFSCOPE"]}, {"destination": "fe80::30fe:52f1:103c:c66c%utun0", "gateway": "link#18", "route_flags": "UHLI", "route_refs": 1, "use": 0, "mtu": 16384, "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "IFSCOPE"]}, {"destination": "fe80::%utun1/64", "gateway": "fe80::aaf6:1785:571a:57a9%utun1", "route_flags": "UcI", "route_refs": 2, "use": 0, "mtu": 1380, "iface": "utun1", "kind": "route", "route_flags_pretty": ["UP", "PRCLONING", "IFSCOPE"]}, {"destination": "fe80::aaf6:1785:571a:57a9%utun1", "gateway": "link#21", "route_flags": "UHLI", "route_refs": 0, "use": 0, "mtu": 16384, "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "IFSCOPE"]}, {"destination": "fe80::%utun2/64", "gateway": "fe80::ce02:efdc:708:5411%utun2", "route_flags": "UcI", "route_refs": 2, "use": 0, "mtu": 1380, "iface": "utun2", "kind": "route", "route_flags_pretty": ["UP", "PRCLONING", "IFSCOPE"]}, {"destination": "fe80::ce02:efdc:708:5411%utun2", "gateway": "link#22", "route_flags": "UHLI", "route_refs": 0, "use": 0, "mtu": 16384, "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "IFSCOPE"]}, {"destination": "fe80::%utun3/64", "gateway": "fe80::1188:a032:c478:4b13%utun3", "route_flags": "UcI", "route_refs": 2, "use": 0, "mtu": 1380, "iface": "utun3", "kind": "route", "route_flags_pretty": ["UP", "PRCLONING", "IFSCOPE"]}, {"destination": "fe80::1188:a032:c478:4b13%utun3", "gateway": "link#23", "route_flags": "UHLI", "route_refs": 0, "use": 0, "mtu": 16384, "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "HOST", "LLINFO", "IFSCOPE"]}, {"destination": "ff01::%lo0/32", "gateway": "::1", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 16384, "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "MULTICAST", "CLONING", "IFSCOPE"]}, {"destination": "ff01::%en5/32", "gateway": "link#8", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1500, "iface": "en5", "kind": "route", "route_flags_pretty": ["UP", "MULTICAST", "CLONING", "IFSCOPE"]}, {"destination": "ff01::%en0/32", "gateway": "link#10", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1500, "iface": "en0", "kind": "route", "route_flags_pretty": ["UP", "MULTICAST", "CLONING", "IFSCOPE"]}, {"destination": "ff01::%awdl0/32", "gateway": "link#12", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1484, "iface": "awdl0", "kind": "route", "route_flags_pretty": ["UP", "MULTICAST", "CLONING", "IFSCOPE"]}, {"destination": "ff01::%utun0/32", "gateway": "fe80::30fe:52f1:103c:c66c%utun0", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 2000, "iface": "utun0", "kind": "route", "route_flags_pretty": ["UP", "MULTICAST", "CLONING", "IFSCOPE"]}, {"destination": "ff01::%utun1/32", "gateway": "fe80::aaf6:1785:571a:57a9%utun1", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1380, "iface": "utun1", "kind": "route", "route_flags_pretty": ["UP", "MULTICAST", "CLONING", "IFSCOPE"]}, {"destination": "ff01::%utun2/32", "gateway": "fe80::ce02:efdc:708:5411%utun2", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1380, "iface": "utun2", "kind": "route", "route_flags_pretty": ["UP", "MULTICAST", "CLONING", "IFSCOPE"]}, {"destination": "ff01::%utun3/32", "gateway": "fe80::1188:a032:c478:4b13%utun3", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1380, "iface": "utun3", "kind": "route", "route_flags_pretty": ["UP", "MULTICAST", "CLONING", "IFSCOPE"]}, {"destination": "ff02::%lo0/32", "gateway": "::1", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 16384, "iface": "lo0", "kind": "route", "route_flags_pretty": ["UP", "MULTICAST", "CLONING", "IFSCOPE"]}, {"destination": "ff02::%en5/32", "gateway": "link#8", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1500, "iface": "en5", "kind": "route", "route_flags_pretty": ["UP", "MULTICAST", "CLONING", "IFSCOPE"]}, {"destination": "ff02::%en0/32", "gateway": "link#10", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1500, "iface": "en0", "kind": "route", "route_flags_pretty": ["UP", "MULTICAST", "CLONING", "IFSCOPE"]}, {"destination": "ff02::%awdl0/32", "gateway": "link#12", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1484, "iface": "awdl0", "kind": "route", "route_flags_pretty": ["UP", "MULTICAST", "CLONING", "IFSCOPE"]}, {"destination": "ff02::%utun0/32", "gateway": "fe80::30fe:52f1:103c:c66c%utun0", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 2000, "iface": "utun0", "kind": "route", "route_flags_pretty": ["UP", "MULTICAST", "CLONING", "IFSCOPE"]}, {"destination": "ff02::%utun1/32", "gateway": "fe80::aaf6:1785:571a:57a9%utun1", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1380, "iface": "utun1", "kind": "route", "route_flags_pretty": ["UP", "MULTICAST", "CLONING", "IFSCOPE"]}, {"destination": "ff02::%utun2/32", "gateway": "fe80::ce02:efdc:708:5411%utun2", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1380, "iface": "utun2", "kind": "route", "route_flags_pretty": ["UP", "MULTICAST", "CLONING", "IFSCOPE"]}, {"destination": "ff02::%utun3/32", "gateway": "fe80::1188:a032:c478:4b13%utun3", "route_flags": "UmCI", "route_refs": 0, "use": 0, "mtu": 1380, "iface": "utun3", "kind": "route", "route_flags_pretty": ["UP", "MULTICAST", "CLONING", "IFSCOPE"]}] jc-1.17.3/tests/fixtures/osx-10.14.6/netstat-rnl.out000066400000000000000000000235071415226333200216440ustar00rootroot00000000000000Routing tables Internet: Destination Gateway Flags Refs Use Mtu Netif Expire default 192.168.1.254 UGSc 83 24 1500 en0 127 127.0.0.1 UCS 0 0 16384 lo0 127.0.0.1 127.0.0.1 UH 18 1266231 16384 lo0 169.254 link#10 UCS 1 0 1500 en0 ! 192.168.1 link#10 UCS 12 0 1500 en0 ! 192.168.1.64 e0:33:8e:68:38:d6 UHLWIi 2 470 1500 en0 753 192.168.1.72 f0:18:98:3:d8:39 UHLWIi 1 8878 1500 en0 1105 192.168.1.75 4c:56:9d:5f:b7:4c UHLWIi 1 600 1500 en0 673 192.168.1.80 0:90:a9:ed:e4:35 UHLWIi 1 265604 1500 en0 931 192.168.1.88 c8:d0:83:cd:e3:2d UHLWIi 1 4310 1500 en0 278 192.168.1.89 d0:3:4b:3b:28:d5 UHLWIi 1 4588 1500 en0 1132 192.168.1.186 50:32:37:d7:f5:9b UHLWIi 1 6123 1500 en0 1181 192.168.1.216 3c:37:86:15:ad:f7 UHLWI 0 16 1500 en0 565 192.168.1.221/32 link#10 UCS 1 0 1500 en0 ! 192.168.1.221 a4:83:e7:2d:62:8f UHLWI 0 36 16384 lo0 192.168.1.242 50:14:79:12:42:3e UHLWI 0 0 1500 en0 1182 192.168.1.251 14:60:cb:10:ec:17 UHLWI 0 54 1500 en0 1157 192.168.1.253 3c:37:86:15:dd:b3 UHLWI 0 3300 1500 en0 839 192.168.1.254/32 link#10 UCS 1 0 1500 en0 ! 192.168.1.254 fc:ae:34:a1:3a:80 UHLWIir 29 69464 1500 en0 1200 192.168.1.255 ff:ff:ff:ff:ff:ff UHLWbI 0 4 1500 en0 ! 192.168.71 link#20 UC 3 0 1500 vmnet8 ! 192.168.71.160 link#20 UHLWIi 1 1708 1500 vmnet8 ! 192.168.71.255 ff:ff:ff:ff:ff:ff UHLWbI 0 4 1500 vmnet8 ! 192.168.101 link#19 UC 2 0 1500 vmnet1 ! 192.168.101.255 ff:ff:ff:ff:ff:ff UHLWbI 0 4 1500 vmnet1 ! 224.0.0/4 link#10 UmCS 2 0 1500 en0 ! 224.0.0.251 1:0:5e:0:0:fb UHmLWI 0 312 1500 en0 239.255.255.250 1:0:5e:7f:ff:fa UHmLWI 0 9918 1500 en0 255.255.255.255/32 link#10 UCS 0 0 1500 en0 ! Internet6: Destination Gateway Flags Refs Use Mtu Netif Expire default fe80::feae:34ff:fea1:3a80%en0 UGc 7 0 1500 en0 default fe80::%utun0 UGcI 0 0 2000 utun0 default fe80::%utun1 UGcI 0 0 1380 utun1 default fe80::%utun2 UGcI 0 0 1380 utun2 default fe80::%utun3 UGcI 0 0 1380 utun3 ::1 ::1 UHL 1 4513 16384 lo0 2600:1700:bab0:d40::/64 link#10 UC 2 0 1500 en0 2600:1700:bab0:d40::1 fc:ae:34:a1:3a:80 UHLWIi 12 68412 1500 en0 2600:1700:bab0:d40::39 a4:83:e7:2d:62:8f UHL 0 0 16384 lo0 2600:1700:bab0:d40:1874:4566:6499:f3d1 a4:83:e7:2d:62:8f UHL 0 0 16384 lo0 2600:1700:bab0:d40:5894:f4c5:a982:26be a4:83:e7:2d:62:8f UHL 0 0 16384 lo0 2600:1700:bab0:d40:c9de:af8a:762c:422c a4:83:e7:2d:62:8f UHL 0 0 16384 lo0 2600:1700:bab0:d40:edd2:2cbf:f03a:d14f a4:83:e7:2d:62:8f UHL 0 0 16384 lo0 2600:1700:bab0:d40:f078:690e:f0ba:dfb a4:83:e7:2d:62:8f UHL 0 0 16384 lo0 fe80::%lo0/64 fe80::1%lo0 UcI 1 0 16384 lo0 fe80::1%lo0 link#1 UHLI 0 0 16384 lo0 fe80::%en5/64 link#8 UCI 2 0 1500 en5 fe80::aede:48ff:fe00:1122%en5 ac:de:48:0:11:22 UHLI 0 0 16384 lo0 fe80::aede:48ff:fe33:4455%en5 ac:de:48:33:44:55 UHLWIi 77 826 1500 en5 fe80::%en0/64 link#10 UCI 13 0 1500 en0 fe80::df:eea7:d8e0:237a%en0 14:60:cb:10:ec:17 UHLWI 0 293 1500 en0 fe80::472:ae33:7f74:8baf%en0 b4:18:d1:9d:bc:2d UHLWI 0 2 1500 en0 fe80::c73:1ab9:79c2:c193%en0 4c:56:9d:5f:b7:4c UHLWI 0 1597 1500 en0 fe80::ced:5f18:1d1e:2d6b%en0 14:60:cb:10:ec:17 UHLWI 0 14 1500 en0 fe80::cf9:ca6f:7d7a:50a2%en0 a4:83:e7:2d:62:8f UHLI 0 0 16384 lo0 fe80::10f2:d51c:68e3:bfbb%en0 e0:33:8e:68:38:d6 UHLWI 0 656 1500 en0 fe80::1406:1bd5:a957:6df2%en0 50:32:37:d7:f5:9b UHLWI 0 2100 1500 en0 fe80::1899:d8f6:dca5:207%en0 50:32:37:d7:f5:9b UHLWI 0 4619 1500 en0 fe80::1c4d:12ea:5e57:24ad%en0 f0:18:98:3:d8:39 UHLWIi 1 8 1500 en0 fe80::1cff:a835:c99b:22c1%en0 d0:3:4b:3b:28:d5 UHLWI 0 477 1500 en0 fe80::4ad7:5ff:fef1:86e8%en0 48:d7:5:f1:86:e8 UHLWI 0 862 1500 en0 fe80::9eb6:54ff:fe5a:5a7c%en0 9c:b6:54:5a:5a:7c UHLWI 0 322 1500 en0 fe80::feae:34ff:fea1:3a80%en0 fc:ae:34:a1:3a:80 UHLWIir 7 27100 1500 en0 fe80::%awdl0/64 link#12 UCI 1 0 1484 awdl0 fe80::b41f:b7ff:fe57:a54f%awdl0 b6:1f:b7:57:a5:4f UHLI 1 0 16384 lo0 fe80::%utun0/64 fe80::30fe:52f1:103c:c66c%utun0 UcI 2 0 2000 utun0 fe80::30fe:52f1:103c:c66c%utun0 link#18 UHLI 1 0 16384 lo0 fe80::%utun1/64 fe80::aaf6:1785:571a:57a9%utun1 UcI 2 0 1380 utun1 fe80::aaf6:1785:571a:57a9%utun1 link#21 UHLI 0 0 16384 lo0 fe80::%utun2/64 fe80::ce02:efdc:708:5411%utun2 UcI 2 0 1380 utun2 fe80::ce02:efdc:708:5411%utun2 link#22 UHLI 0 0 16384 lo0 fe80::%utun3/64 fe80::1188:a032:c478:4b13%utun3 UcI 2 0 1380 utun3 fe80::1188:a032:c478:4b13%utun3 link#23 UHLI 0 0 16384 lo0 ff01::%lo0/32 ::1 UmCI 0 0 16384 lo0 ff01::%en5/32 link#8 UmCI 0 0 1500 en5 ff01::%en0/32 link#10 UmCI 0 0 1500 en0 ff01::%awdl0/32 link#12 UmCI 0 0 1484 awdl0 ff01::%utun0/32 fe80::30fe:52f1:103c:c66c%utun0 UmCI 0 0 2000 utun0 ff01::%utun1/32 fe80::aaf6:1785:571a:57a9%utun1 UmCI 0 0 1380 utun1 ff01::%utun2/32 fe80::ce02:efdc:708:5411%utun2 UmCI 0 0 1380 utun2 ff01::%utun3/32 fe80::1188:a032:c478:4b13%utun3 UmCI 0 0 1380 utun3 ff02::%lo0/32 ::1 UmCI 0 0 16384 lo0 ff02::%en5/32 link#8 UmCI 0 0 1500 en5 ff02::%en0/32 link#10 UmCI 0 0 1500 en0 ff02::%awdl0/32 link#12 UmCI 0 0 1484 awdl0 ff02::%utun0/32 fe80::30fe:52f1:103c:c66c%utun0 UmCI 0 0 2000 utun0 ff02::%utun1/32 fe80::aaf6:1785:571a:57a9%utun1 UmCI 0 0 1380 utun1 ff02::%utun2/32 fe80::ce02:efdc:708:5411%utun2 UmCI 0 0 1380 utun2 ff02::%utun3/32 fe80::1188:a032:c478:4b13%utun3 UmCI 0 0 1380 utun3 jc-1.17.3/tests/fixtures/osx-10.14.6/netstat.json000066400000000000000000004236131415226333200212170ustar00rootroot00000000000000[{"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "40.77.18.167", "state": "ESTABLISHED", "kind": "network", "local_port": "62979", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 62979}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "2620:1ec:42::132", "state": "ESTABLISHED", "kind": "network", "local_port": "62978", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 62978}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "lb-140-82-114-25", "state": "ESTABLISHED", "kind": "network", "local_port": "62961", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 62961}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "52.114.128.7", "state": "ESTABLISHED", "kind": "network", "local_port": "62951", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 62951}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "on-in-x6d.1e100.", "state": "ESTABLISHED", "kind": "network", "local_port": "62900", "foreign_port": "imaps", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 62900}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "208.91.113.36", "state": "ESTABLISHED", "kind": "network", "local_port": "62894", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 62894}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "lb-140-82-112-25", "state": "ESTABLISHED", "kind": "network", "local_port": "62849", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 62849}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "localhost", "state": "ESTABLISHED", "kind": "network", "local_port": "62823", "foreign_port": "62835", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 62823, "foreign_port_num": 62835}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "localhost", "state": "ESTABLISHED", "kind": "network", "local_port": "62835", "foreign_port": "62823", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 62835, "foreign_port_num": 62823}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "m33sjmcs118.webe", "state": "ESTABLISHED", "kind": "network", "local_port": "62733", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 62733}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "m33sjmcs180.webe", "state": "ESTABLISHED", "kind": "network", "local_port": "62703", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 62703}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "ed1sjcb1402.webe", "state": "ESTABLISHED", "kind": "network", "local_port": "62697", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 62697}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "sj1-tsa.webex.co", "state": "ESTABLISHED", "kind": "network", "local_port": "62670", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 62670}, {"proto": "tcp4", "recv_q": 31, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "93.87.236.35.bc.", "state": "CLOSE_WAIT", "kind": "network", "local_port": "62664", "foreign_port": "sunpr", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 62664}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "dfw28s05-in-x0e.", "state": "ESTABLISHED", "kind": "network", "local_port": "62494", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 62494}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "ob-in-x6d.1e100.", "state": "ESTABLISHED", "kind": "network", "local_port": "62485", "foreign_port": "imaps", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 62485}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "194.123.235.35.b", "state": "ESTABLISHED", "kind": "network", "local_port": "62443", "foreign_port": "dsf", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 62443}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "61677", "foreign_port": "49617", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 61677, "foreign_port_num": 49617}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "52.114.148.57", "state": "ESTABLISHED", "kind": "network", "local_port": "61582", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 61582}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "ox-in-xbc.1e100.", "state": "ESTABLISHED", "kind": "network", "local_port": "61581", "foreign_port": "5228", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 61581, "foreign_port_num": 5228}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "kellys-iphone.at", "state": "ESTABLISHED", "kind": "network", "local_port": "61343", "foreign_port": "53700", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 61343, "foreign_port_num": 53700}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "2603:1030:b00::e", "state": "ESTABLISHED", "kind": "network", "local_port": "61394", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 61394}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "93.87.236.35.bc.", "state": "ESTABLISHED", "kind": "network", "local_port": "61368", "foreign_port": "sunpr", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 61368}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "family-room-5.at", "state": "ESTABLISHED", "kind": "network", "local_port": "61357", "foreign_port": "49153", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 61357, "foreign_port_num": 49153}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "bedroom.attlocal", "state": "ESTABLISHED", "kind": "network", "local_port": "61356", "foreign_port": "49152", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 61356, "foreign_port_num": 49152}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "kellys-mbp.attlo", "state": "ESTABLISHED", "kind": "network", "local_port": "61343", "foreign_port": "56012", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 61343, "foreign_port_num": 56012}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "61347", "foreign_port": "49621", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 61347, "foreign_port_num": 49621}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "61346", "foreign_port": "49607", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 61346, "foreign_port_num": 49607}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49154", "foreign_port": "49804", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49154, "foreign_port_num": 49804}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49154", "foreign_port": "49803", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49154, "foreign_port_num": 49803}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "52.114.88.20", "state": "ESTABLISHED", "kind": "network", "local_port": "60773", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 60773}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49154", "foreign_port": "49802", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49154, "foreign_port_num": 49802}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49154", "foreign_port": "49801", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49154, "foreign_port_num": 49801}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49154", "foreign_port": "49800", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49154, "foreign_port_num": 49800}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49154", "foreign_port": "49799", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49154, "foreign_port_num": 49799}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49154", "foreign_port": "49798", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49154, "foreign_port_num": 49798}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "17.57.144.20", "state": "ESTABLISHED", "kind": "network", "local_port": "52630", "foreign_port": "5223", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 52630, "foreign_port_num": 5223}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "mycloudex2ultra.", "state": "ESTABLISHED", "kind": "network", "local_port": "51797", "foreign_port": "afpov", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 51797}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "194.123.235.35.b", "state": "CLOSE_WAIT", "kind": "network", "local_port": "51642", "foreign_port": "dsf", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 51642}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "194.123.235.35.b", "state": "CLOSE_WAIT", "kind": "network", "local_port": "51641", "foreign_port": "dsf", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 51641}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "194.123.235.35.b", "state": "CLOSE_WAIT", "kind": "network", "local_port": "51640", "foreign_port": "dsf", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 51640}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "63836", "foreign_port": "49602", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 63836, "foreign_port_num": 49602}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "59388", "foreign_port": "59602", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 59388, "foreign_port_num": 59602}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "96.45.36.31", "state": "ESTABLISHED", "kind": "network", "local_port": "58795", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 58795}, {"proto": "tcp4", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "localhost", "state": "CLOSE_WAIT", "kind": "network", "local_port": "ldgateway", "foreign_port": "58704", "transport_protocol": "tcp", "network_protocol": "ipv4", "foreign_port_num": 58704}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "59281", "foreign_port": "49602", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 59281, "foreign_port_num": 49602}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "57652", "foreign_port": "49602", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 57652, "foreign_port_num": 49602}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "51989", "foreign_port": "49602", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 51989, "foreign_port_num": 49602}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49892", "foreign_port": "49620", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49892, "foreign_port_num": 49620}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49798", "foreign_port": "49608", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49798, "foreign_port_num": 49608}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49390", "foreign_port": "49613", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49390, "foreign_port_num": 49613}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "fe80::aede:48ff:", "foreign_address": "fe80::aede:48ff:", "state": "ESTABLISHED", "kind": "network", "local_port": "49157", "foreign_port": "49615", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 49157, "foreign_port_num": 49615}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "2600:9000:2202:9", "state": "TIME_WAIT", "kind": "network", "local_port": "62983", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 62983}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "*", "state": null, "kind": "network", "local_port": "63388", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 63388}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "61398", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 61398}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "53413", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 53413}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "59909", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 59909}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "53609", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 53609}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "54417", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 54417}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "62632", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 62632}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "*", "state": null, "kind": "network", "local_port": "54797", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 54797}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "*", "state": null, "kind": "network", "local_port": "56570", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 56570}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "*", "state": null, "kind": "network", "local_port": "56159", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 56159}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "*", "state": null, "kind": "network", "local_port": "58453", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 58453}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "*", "state": null, "kind": "network", "local_port": "58452", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 58452}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "*", "state": null, "kind": "network", "local_port": "55724", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 55724}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "*", "state": null, "kind": "network", "local_port": "55723", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 55723}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "*", "state": null, "kind": "network", "local_port": "58104", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 58104}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "*", "state": null, "kind": "network", "local_port": "58103", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 58103}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "*", "state": null, "kind": "network", "local_port": "62803", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 62803}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "*", "state": null, "kind": "network", "local_port": "62802", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 62802}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "*", "state": null, "kind": "network", "local_port": "51531", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 51531}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "*", "state": null, "kind": "network", "local_port": "51530", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 51530}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "*", "state": null, "kind": "network", "local_port": "53504", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 53504}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "*", "state": null, "kind": "network", "local_port": "53503", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 53503}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "*", "state": null, "kind": "network", "local_port": "56260", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 56260}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "60036", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 60036}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "54290", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 54290}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "mdns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "xserveraid", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "61224", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 61224}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "*", "state": null, "kind": "network", "local_port": "63995", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 63995}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-mac.attl", "foreign_address": "*", "state": null, "kind": "network", "local_port": "50636", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 50636}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "33354", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 33354}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "33355", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 33355}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "61982", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 61982}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "61982", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 61982}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "52378", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 52378}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "52378", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 52378}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "53910", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 53910}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "53910", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 53910}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "57674", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 57674}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "57674", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 57674}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "62448", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 62448}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "62448", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 62448}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "55681", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6", "local_port_num": 55681}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "55681", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 55681}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "mdns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "mdns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "mdns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6"}, {"proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "mdns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6"}, {"proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "mdns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "mdns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "mdns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "51226", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 51226}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "*", "state": null, "kind": "network", "local_port": "61491", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 61491}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "6096", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 6096}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "58997", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 58997}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "52551", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 52551}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp46", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6"}, {"proto": "udp6", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "mdns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv6"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "mdns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "pds", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "netbios-dgm", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp4", "recv_q": 0, "send_q": 0, "local_address": "*", "foreign_address": "*", "state": null, "kind": "network", "local_port": "netbios-ns", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "icm4", "recv_q": 8136, "send_q": 0, "local_address": "*", "foreign_address": "*", "kind": "network", "local_port": "*", "foreign_port": "*", "transport_protocol": "icmp", "network_protocol": "ipv4"}, {"address": "7fb03cb94a63a7cd", "type": "stream", "recv_q": 1, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63cedd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63cedd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63a7cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63b065", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63b2bd", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb94a63b2bd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63b065", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130cc7d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130f38d", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb95130f38d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130cc7d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38385", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d3a135", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3a135", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d38385", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3795d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d38835", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d38835", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d3795d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38515", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d39d4d", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb937d39d4d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d38515", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3812d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d38e75", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb937d38e75", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d3812d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaebb5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceaff3d", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb93ceaff3d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceaebb5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb1135", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb935afe2bd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935b006ad", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb935b006ad", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afe2bd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501a7cd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb94d74857d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d747e75", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d747e75", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d74857d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63aaed", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63b1f5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63b1f5", "type": "stream", "recv_q": 4, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63aaed", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63cd4d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63a95d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63a95d", "type": "stream", "recv_q": 4, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63cd4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63ae0d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63b385", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63b385", "type": "stream", "recv_q": 8, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63ae0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7471f5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d748965", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748965", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d7471f5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747ce5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d746f9d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746f9d", "type": "stream", "recv_q": 8, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d747ce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748edd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d747a8d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747a8d", "type": "stream", "recv_q": 8, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d748edd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38b55", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d39005", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39005", "type": "stream", "recv_q": 8, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d38b55", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f2c5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130cd45", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb95130cd45", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130f2c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130de75", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130eaf5", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb95130eaf5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130de75", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e0cd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130f135", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb95130f135", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130e0cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e70d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130da8d", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb95130da8d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130e70d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130efa5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130e645", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb95130e645", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130efa5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746d45", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d74695d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d74695d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d746d45", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748fa5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d74825d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d74825d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d748fa5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3ac85", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3a25d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3a25d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3ac85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3a0cd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d38aed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d38aed", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3a0cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3944d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3a965", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3a965", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3944d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63c70d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63b5dd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63b5dd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63c70d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63d06d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63b44d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63b44d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63d06d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f6ad", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130e89d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb95130e89d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130f6ad", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63d38d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63cbbd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63cbbd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63d38d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63b9c5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63ca2d", "refs": "0", "nextref": "0", "addr": "/tmp/olisne-WY4G9IZafUNsloCollectorServicePipe", "kind": "socket"}, {"address": "7fb03cb94a63ca2d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63b9c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63ad45", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb938289085", "conn": "0", "refs": "0", "nextref": "0", "addr": "/tmp/olisne-WY4G9IZafUNsloCollectorServicePipe", "kind": "socket"}, {"address": "7fb03cb95130c95d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130d1f5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb95130d1f5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130c95d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38a25", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3a195", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3a195", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d38a25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3aa2d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f5e5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130e4b5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb95130e4b5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130f5e5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d74906d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d746e0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746e0d", "type": "stream", "recv_q": 8, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d74906d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39325", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d385dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d385dd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d39325", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3876d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d3a455", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3a455", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d3876d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37a25", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d386a5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d386a5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d37a25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39195", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d38f3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38f3d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d39195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37895", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d37ed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37ed5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d37895", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d390cd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d3a38d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3a38d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d390cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b455", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3895d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3895d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3b455", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d392bd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d38e0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38e0d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d392bd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b135", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d38ed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38ed5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3b135", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3976d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3912d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3912d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3976d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d391f5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d39385", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39385", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d391f5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d38c7d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb94b87f5d5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/folders/vr/4gybj0rs1_51r0sy8d5qv3jm0000gn/T/.com.microsoft.teams.okHfqO/SS", "kind": "socket"}, {"address": "7fb03cb945d39c1d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d39e75", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d39e75", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d39c1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63ac7d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63caf5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63caf5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63ac7d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d515", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130ce0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ce0d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130d515", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130caed", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130ca25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ca25", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130caed", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d385", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130f06d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f06d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130d385", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130dc1d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130e7d5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e7d5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130dc1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ced5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130f51d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f51d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130ced5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130df3d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130c7cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130c7cd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130df3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e195", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130e325", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e325", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130e195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130f1fd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130ea2d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ea2d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130f1fd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d2bd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130c895", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130c895", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130d2bd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130cbb5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb937de855d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Library/Application Support/LANDesk/tmp/socket/sys", "kind": "socket"}, {"address": "7fb03cb95130d065", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130d5dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d5dd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130d065", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ec85", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130ee15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ee15", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130ec85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d76d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130d12d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d12d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130d76d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ed4d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130eedd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130eedd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130ed4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e965", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130e3ed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb95130e3ed", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130e965", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3925d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d39c85", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d39c85", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d3925d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d381f5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "0", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b005e5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afd895", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb935afd895", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935b005e5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746ed5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d748195", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d748195", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d746ed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63ba8d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63d5e5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63d5e5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63ba8d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63cc85", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63a895", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63a895", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63cc85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63c965", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63d51d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63d51d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63c965", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747f3d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d7480cd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d7480cd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d747f3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63abb5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63c7d5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c7d5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63abb5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130dce5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130e005", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/filesystem-event.sock", "kind": "socket"}, {"address": "7fb03cb95130e005", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130dce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b001fd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afdaed", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb935afdaed", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935b001fd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b0038d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9350ead1d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock", "kind": "socket"}, {"address": "7fb03cb935b002c5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935aff0cd", "refs": "0", "nextref": "0", "addr": "vpnkit.data.sock", "kind": "socket"}, {"address": "7fb03cb935aff0cd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935b002c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b00135", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afdbb5", "refs": "0", "nextref": "0", "addr": "backend-for-guest.sock", "kind": "socket"}, {"address": "7fb03cb935afdbb5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935b00135", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935affaf5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935affd4d", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/lifecycle-server.sock", "kind": "socket"}, {"address": "7fb03cb935affd4d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935affaf5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935affa2d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935affe15", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935affe15", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935affa2d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935b0006d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afffa5", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935afffa5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935b0006d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935affedd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afdc7d", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935afdc7d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935affedd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afdd45", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935affc85", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935affc85", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afdd45", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afde0d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935affbbd", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935affbbd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afde0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afded5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935aff965", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935aff965", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afded5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff89d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935aff7d5", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935aff7d5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935aff89d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afdf9d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935aff70d", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935aff70d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afdf9d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff645", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935aff57d", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935aff57d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935aff645", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afe065", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935aff4b5", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb935aff4b5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afe065", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff3ed", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb935cd2d9d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/filesystem-event.sock", "kind": "socket"}, {"address": "7fb03cb935aff325", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb93609fca5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/lifecycle-server.sock", "kind": "socket"}, {"address": "7fb03cb935aff25d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb94cddc36d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/diagnosticd.sock", "kind": "socket"}, {"address": "7fb03cb935afe12d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afe1f5", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.00001003", "kind": "socket"}, {"address": "7fb03cb935afe1f5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afe12d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff195", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afe515", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/memlogdq.sock", "kind": "socket"}, {"address": "7fb03cb935afe515", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935aff195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afe44d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9350eac25", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/memlogdq.sock", "kind": "socket"}, {"address": "7fb03cb935afe8fd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afedad", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.000007cf", "kind": "socket"}, {"address": "7fb03cb935afedad", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afe8fd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935aff005", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb938b763e5", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/00000003.000005f5", "kind": "socket"}, {"address": "7fb03cb935afef3d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb938b761f5", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/00000003.00000948", "kind": "socket"}, {"address": "7fb03cb935afe5dd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb938b760fd", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/connect", "kind": "socket"}, {"address": "7fb03cb935afe6a5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afe76d", "refs": "0", "nextref": "0", "addr": "vpnkit.eth.sock", "kind": "socket"}, {"address": "7fb03cb935afe76d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb935afe6a5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb935afee75", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9360a12ed", "conn": "0", "refs": "0", "nextref": "0", "addr": "backend.sock", "kind": "socket"}, {"address": "7fb03cb935afece5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb935cd29bd", "conn": "0", "refs": "0", "nextref": "0", "addr": "filesystem-export.sock", "kind": "socket"}, {"address": "7fb03cb935afec1d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb935cd43e5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.00001003", "kind": "socket"}, {"address": "7fb03cb935afe9c5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb935cd40fd", "conn": "0", "refs": "0", "nextref": "0", "addr": "filesystem-volume.sock", "kind": "socket"}, {"address": "7fb03cb935afeb55", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9350eaa35", "conn": "0", "refs": "0", "nextref": "0", "addr": "docker-api.sock", "kind": "socket"}, {"address": "7fb03cb935afea8d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9350eab2d", "conn": "0", "refs": "0", "nextref": "0", "addr": "backend-for-guest.sock", "kind": "socket"}, {"address": "7fb03cb93501b065", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9350ea36d", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.data.sock", "kind": "socket"}, {"address": "7fb03cb937d37bb5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9350ea465", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.port.sock", "kind": "socket"}, {"address": "7fb03cb937d3a5e5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb950a0dca5", "conn": "0", "refs": "0", "nextref": "0", "addr": "docker.sock", "kind": "socket"}, {"address": "7fb03cb937d3a51d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb950ab1005", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.pcap.sock", "kind": "socket"}, {"address": "7fb03cb94d7495e5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb950ab0f0d", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.diag.sock", "kind": "socket"}, {"address": "7fb03cb94d746895", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb950aafd9d", "conn": "0", "refs": "0", "nextref": "0", "addr": "vpnkit.eth.sock", "kind": "socket"}, {"address": "7fb03cb94d7467cd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb950ab0085", "conn": "0", "refs": "0", "nextref": "0", "addr": "osxfs.sock", "kind": "socket"}, {"address": "7fb03cb94d746bb5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb950ab0a35", "conn": "0", "refs": "0", "nextref": "0", "addr": "vms/0/00000002.000005f4", "kind": "socket"}, {"address": "7fb03cb94d7496ad", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb950a1dab5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Containers/com.docker.docker/Data/gui-api.sock", "kind": "socket"}, {"address": "7fb03cb94d7492c5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d746aed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d746aed", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d7492c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748d4d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d7472bd", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7472bd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d748d4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748c85", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d747385", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d747385", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d748c85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748af5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d747835", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94d747835", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d748af5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748a2d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d74776d", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d74776d", "type": "stream", "recv_q": 580, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d748a2d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d74889d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d7478fd", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7478fd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d74889d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d74870d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d7487d5", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7487d5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d74870d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d748645", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d7479c5", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d7479c5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d748645", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7484b5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d747b55", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d747b55", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d7484b5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747c1d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d748325", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb94d748325", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d747c1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7483ed", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb94db01655", "conn": "0", "refs": "0", "nextref": "0", "addr": "/tmp/fctvpnctl.sock_501", "kind": "socket"}, {"address": "7fb03cb94a63bc1d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63c645", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c645", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63bc1d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63bce5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63c57d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c57d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63bce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63bdad", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63c4b5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c4b5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63bdad", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63be75", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63c3ed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c3ed", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63be75", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63bf3d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63c325", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c325", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63bf3d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63c195", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63c005", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c005", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63c195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63c0cd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63c25d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb94a63c25d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63c0cd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3ad4d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501b835", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d3ae15", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d377cd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501b835", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3ad4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d377cd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3ae15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3a6ad", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d3a06d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d3a06d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d3a6ad", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d387cd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb94d0e4a35", "conn": "0", "refs": "0", "nextref": "0", "addr": "/Users/kbrazil/Library/Application Support/Fortinet/FortiClient/credentialstore.sock", "kind": "socket"}, {"address": "7fb03cb945d395dd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d39515", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d39515", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d395dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39ce5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d39dad", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb945d39dad", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d39ce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39e15", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d39645", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb937d39645", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d39e15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39af5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9418d26cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/folders/vr/4gybj0rs1_51r0sy8d5qv3jm0000gn/T/.com.google.Chrome.ucLRTi/SingletonSocket", "kind": "socket"}, {"address": "7fb03cb93ceaeaed", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb151d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb151d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceaeaed", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceae95d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb138d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb138d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceae95d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb12c5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceaed45", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaed45", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb12c5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaee0d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceaeed5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaeed5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceaee0d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb106d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceaef9d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaef9d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb106d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf2bd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb0fa5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb0fa5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceaf2bd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf515", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb0e15", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0e15", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceaf515", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf5dd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb0d4d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0d4d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceaf5dd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0c85", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceaf6a5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf6a5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb0c85", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf76d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb0bbd", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0bbd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceaf76d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0af5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceafa8d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceafa8d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb0af5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb057d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb070d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceb070d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb057d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceafce5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceaf9c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93ceaf9c5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceafce5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb025d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb93ea4fca5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/tmp/fctvpnctl.sock", "kind": "socket"}, {"address": "7fb03cb93ceb0325", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb93ea5074d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/tmp/filesystemui.socket", "kind": "socket"}, {"address": "7fb03cb93ceafb55", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb93ea1cd1d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/tmp/com.apple.launchd.WbUfpjQ9cD/Render", "kind": "socket"}, {"address": "7fb03cb93ceb00cd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb93ea42275", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/tmp/com.apple.launchd.WdCvj7HQdi/Listeners", "kind": "socket"}, {"address": "7fb03cb93501a895", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501d51d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501d51d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501a895", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501aa25", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501aaed", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501aaed", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501aa25", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d38d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501d2c5", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501d2c5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501d38d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501abb5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501d1fd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501d1fd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501abb5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501aed5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501ae0d", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501ae0d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501aed5", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b44d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501cedd", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501cedd", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501b44d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d06d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501b385", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b385", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501d06d", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501cfa5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb93763e7cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/displaypolicyd/state", "kind": "socket"}, {"address": "7fb03cb93501b76d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb936ea7d9d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/pppconfd", "kind": "socket"}, {"address": "7fb03cb93501c965", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9355ec3e5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/epctrl.sock", "kind": "socket"}, {"address": "7fb03cb93501c89d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9355ec1f5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/fctvpnctrl.sock", "kind": "socket"}, {"address": "7fb03cb93501c7d5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9355ec0fd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/fctservctl.sock", "kind": "socket"}, {"address": "7fb03cb93501c70d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9355ec005", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/com.docker.vmnetd.sock", "kind": "socket"}, {"address": "7fb03cb93501c645", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb93557e845", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/srvsvc", "kind": "socket"}, {"address": "7fb03cb93501b9c5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb93557e36d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/srvsvc", "kind": "socket"}, {"address": "7fb03cb93501c57d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb93557e55d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/usbmuxd", "kind": "socket"}, {"address": "7fb03cb93501c4b5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb93557e655", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/wkssvc", "kind": "socket"}, {"address": "7fb03cb93501ba8d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb93557e74d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/wkssvc", "kind": "socket"}, {"address": "7fb03cb93501c3ed", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9355617cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/mdssvc", "kind": "socket"}, {"address": "7fb03cb93501c325", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9355636cd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/lsarpc", "kind": "socket"}, {"address": "7fb03cb93501c25d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9355618c5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncacn_np/lsarpc", "kind": "socket"}, {"address": "7fb03cb93501bb55", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9355635d5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/mDNSResponder", "kind": "socket"}, {"address": "7fb03cb93501bc1d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9355634dd", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/systemkeychaincheck.socket", "kind": "socket"}, {"address": "7fb03cb93501bce5", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb935561ab5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/var/run/.sim_diagnosticd_socket", "kind": "socket"}, {"address": "7fb03cb93501bdad", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb935561bad", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/portmap.socket", "kind": "socket"}, {"address": "7fb03cb93501be75", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb935511d1d", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/run/vpncontrol.sock", "kind": "socket"}, {"address": "7fb03cb93501bf3d", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9354fd085", "conn": "0", "refs": "0", "nextref": "0", "addr": "/var/rpc/ncalrpc/NETLOGON", "kind": "socket"}, {"address": "7fb03cb93501c005", "type": "stream", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb9354e58c5", "conn": "0", "refs": "0", "nextref": "0", "addr": "/private/var/run/cupsd", "kind": "socket"}, {"address": "7fb03cb94a63c89d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63ce15", "kind": "socket"}, {"address": "7fb03cb94a63ce15", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130e25d", "kind": "socket"}, {"address": "7fb03cb94a63b6a5", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63b515", "refs": "7fb03cb94a63b515", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63b515", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94a63b6a5", "refs": "7fb03cb94a63b6a5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130e25d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d3afa5", "kind": "socket"}, {"address": "7fb03cb95130f455", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130d9c5", "refs": "7fb03cb95130d9c5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130d9c5", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130f455", "refs": "7fb03cb95130f455", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3afa5", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63af9d", "kind": "socket"}, {"address": "7fb03cb94a63af9d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceae7cd", "kind": "socket"}, {"address": "7fb03cb93ceae7cd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d3b51d", "kind": "socket"}, {"address": "7fb03cb945d3b51d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d3a3ed", "kind": "socket"}, {"address": "7fb03cb945d3a3ed", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d3989d", "kind": "socket"}, {"address": "7fb03cb937d3989d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63b76d", "kind": "socket"}, {"address": "7fb03cb94a63b76d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130d44d", "kind": "socket"}, {"address": "7fb03cb95130d44d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130cf9d", "kind": "socket"}, {"address": "7fb03cb95130cf9d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501d6ad", "kind": "socket"}, {"address": "7fb03cb94d7491fd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d7476a5", "refs": "7fb03cb94d7476a5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7476a5", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d7491fd", "refs": "7fb03cb94d7491fd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d6ad", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63d6ad", "kind": "socket"}, {"address": "7fb03cb94d748005", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d749455", "refs": "7fb03cb94d749455", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d749455", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d748005", "refs": "7fb03cb94d748005", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d7475dd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d747065", "refs": "7fb03cb94d747065", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d747065", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb94d7475dd", "refs": "7fb03cb94d7475dd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501a95d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501d455", "refs": "7fb03cb93501d455", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d455", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501a95d", "refs": "7fb03cb93501a95d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130db55", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130ebbd", "refs": "7fb03cb95130ebbd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb95130ebbd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb95130db55", "refs": "7fb03cb95130db55", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94a63d6ad", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d74938d", "kind": "socket"}, {"address": "7fb03cb94d74938d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d38a8d", "kind": "socket"}, {"address": "7fb03cb937d38a8d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130d835", "kind": "socket"}, {"address": "7fb03cb95130d835", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d746c7d", "kind": "socket"}, {"address": "7fb03cb945d3aedd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3b6ad", "refs": "7fb03cb945d3b6ad", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3b6ad", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3aedd", "refs": "7fb03cb945d3aedd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb94d746c7d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d74712d", "kind": "socket"}, {"address": "7fb03cb94d74712d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d39edd", "kind": "socket"}, {"address": "7fb03cb937d39edd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d38dad", "kind": "socket"}, {"address": "7fb03cb937d38dad", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94a63b12d", "kind": "socket"}, {"address": "7fb03cb94a63b12d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb95130e57d", "kind": "socket"}, {"address": "7fb03cb95130e57d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d74951d", "kind": "socket"}, {"address": "7fb03cb94d74951d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb94d749135", "kind": "socket"}, {"address": "7fb03cb94d749135", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb15e5", "kind": "socket"}, {"address": "7fb03cb93ceb15e5", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceae895", "kind": "socket"}, {"address": "7fb03cb93ceae895", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb16ad", "kind": "socket"}, {"address": "7fb03cb93ceb16ad", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d3a1fd", "kind": "socket"}, {"address": "7fb03cb937d3a1fd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d39065", "kind": "socket"}, {"address": "7fb03cb945d39065", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d38f9d", "kind": "socket"}, {"address": "7fb03cb945d38f9d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb945d39a8d", "kind": "socket"}, {"address": "7fb03cb945d399c5", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d3a005", "refs": "7fb03cb945d3a005", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d3a005", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d399c5", "refs": "7fb03cb945d399c5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39b55", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d39f3d", "refs": "7fb03cb945d39f3d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39f3d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb945d39b55", "refs": "7fb03cb945d39b55", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb945d39a8d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d397d5", "kind": "socket"}, {"address": "7fb03cb937d37d45", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d37e0d", "refs": "7fb03cb937d37e0d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37e0d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d37d45", "refs": "7fb03cb937d37d45", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d397d5", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb11fd", "kind": "socket"}, {"address": "7fb03cb93ceb11fd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf065", "kind": "socket"}, {"address": "7fb03cb93ceaf065", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb0edd", "kind": "socket"}, {"address": "7fb03cb93ceb0edd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf385", "kind": "socket"}, {"address": "7fb03cb93ceaf12d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceaf1f5", "refs": "7fb03cb93ceaf1f5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf1f5", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceaf12d", "refs": "7fb03cb93ceaf12d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceaf385", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb0965", "kind": "socket"}, {"address": "7fb03cb93ceb0965", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb0a2d", "kind": "socket"}, {"address": "7fb03cb93ceb0a2d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf835", "kind": "socket"}, {"address": "7fb03cb93ceaf835", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceaf8fd", "kind": "socket"}, {"address": "7fb03cb93ceaf8fd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceafdad", "kind": "socket"}, {"address": "7fb03cb93ceafdad", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb07d5", "kind": "socket"}, {"address": "7fb03cb93ceb07d5", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb089d", "kind": "socket"}, {"address": "7fb03cb93ceb0645", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceafe75", "refs": "7fb03cb93ceafe75", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceafe75", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb0645", "refs": "7fb03cb93ceb0645", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb089d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceafc1d", "kind": "socket"}, {"address": "7fb03cb93ceb0195", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb0005", "refs": "7fb03cb93ceb0005", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceb0005", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93ceb0195", "refs": "7fb03cb93ceb0195", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93ceafc1d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93ceb03ed", "kind": "socket"}, {"address": "7fb03cb93ceb03ed", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d39fa5", "kind": "socket"}, {"address": "7fb03cb937d39a2d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d39bbd", "refs": "7fb03cb937d39bbd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39bbd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d39a2d", "refs": "7fb03cb937d39a2d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39fa5", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d39965", "kind": "socket"}, {"address": "7fb03cb937d38065", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d37c7d", "refs": "7fb03cb937d37c7d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d37c7d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d38065", "refs": "7fb03cb937d38065", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d39965", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d37f9d", "kind": "socket"}, {"address": "7fb03cb937d37f9d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d393ed", "kind": "socket"}, {"address": "7fb03cb937d393ed", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb937d3970d", "kind": "socket"}, {"address": "7fb03cb937d3970d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501d135", "kind": "socket"}, {"address": "7fb03cb937d382bd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d3957d", "refs": "7fb03cb937d3957d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d3957d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d382bd", "refs": "7fb03cb937d382bd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38c1d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d38ce5", "refs": "7fb03cb937d38ce5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb937d38ce5", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb937d38c1d", "refs": "7fb03cb937d38c1d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501d135", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501cd4d", "kind": "socket"}, {"address": "7fb03cb93501cd4d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501cc85", "kind": "socket"}, {"address": "7fb03cb93501b1f5", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501b2bd", "refs": "7fb03cb93501b2bd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b2bd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501b1f5", "refs": "7fb03cb93501b1f5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501ce15", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501b515", "refs": "7fb03cb93501b515", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b515", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501ce15", "refs": "7fb03cb93501ce15", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501b6a5", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501caf5", "refs": "7fb03cb93501caf5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501caf5", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501b6a5", "refs": "7fb03cb93501b6a5", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501cc85", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501cbbd", "kind": "socket"}, {"address": "7fb03cb93501cbbd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "7fb03cb93501c0cd", "kind": "socket"}, {"address": "7fb03cb93501b8fd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501ca2d", "refs": "7fb03cb93501ca2d", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501ca2d", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501b8fd", "refs": "7fb03cb93501b8fd", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501c0cd", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "0", "conn": "7fb03cb93501c195", "refs": "0", "nextref": "0", "kind": "socket"}, {"address": "7fb03cb93501c195", "type": "dgram", "recv_q": 0, "send_q": 0, "unix_inode": "7fb03cb934ff43e5", "conn": "0", "refs": "7fb03cb94a63c89d", "nextref": "0", "addr": "/private//var/run/syslog", "kind": "socket"}, {"id": "1", "unix_flags": "9", "pcbcount": 0, "rcvbuf": 131072, "sndbuf": 131072, "name": "com.apple.flow-divert", "kind": "Registered kernel control module"}, {"id": "2", "unix_flags": "1", "pcbcount": 1, "rcvbuf": 16384, "sndbuf": 2048, "name": "com.apple.nke.sockwall", "kind": "Registered kernel control module"}, {"id": "3", "unix_flags": "9", "pcbcount": 0, "rcvbuf": 524288, "sndbuf": 524288, "name": "com.apple.content-filter", "kind": "Registered kernel control module"}, {"id": "4", "unix_flags": "1", "pcbcount": 0, "rcvbuf": 65536, "sndbuf": 65536, "name": "com.apple.net.necp_control", "kind": "Registered kernel control module"}, {"id": "5", "unix_flags": "1", "pcbcount": 12, "rcvbuf": 65536, "sndbuf": 65536, "name": "com.apple.net.netagent", "kind": "Registered kernel control module"}, {"id": "6", "unix_flags": "9", "pcbcount": 4, "rcvbuf": 524288, "sndbuf": 524288, "name": "com.apple.net.utun_control", "kind": "Registered kernel control module"}, {"id": "7", "unix_flags": "1", "pcbcount": 0, "rcvbuf": 65536, "sndbuf": 65536, "name": "com.apple.net.ipsec_control", "kind": "Registered kernel control module"}, {"id": "8", "unix_flags": "0", "pcbcount": 75, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.netsrc", "kind": "Registered kernel control module"}, {"id": "9", "unix_flags": "18", "pcbcount": 4, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.network.statistics", "kind": "Registered kernel control module"}, {"id": "a", "unix_flags": "5", "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.network.tcp_ccdebug", "kind": "Registered kernel control module"}, {"id": "b", "unix_flags": "1", "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.network.advisory", "kind": "Registered kernel control module"}, {"id": "c", "unix_flags": "4", "pcbcount": 0, "rcvbuf": 65536, "sndbuf": 2048, "name": "com.apple.uart.BLTH", "kind": "Registered kernel control module"}, {"id": "d", "unix_flags": "4", "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.uart.sk.BLTH", "kind": "Registered kernel control module"}, {"id": "e", "unix_flags": "0", "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 8192, "name": "com.apple.fileutil.kext.stateful.ctl", "kind": "Registered kernel control module"}, {"id": "f", "unix_flags": "0", "pcbcount": 0, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.apple.fileutil.kext.stateless.ctl", "kind": "Registered kernel control module"}, {"id": "17", "unix_flags": "5", "pcbcount": 1, "rcvbuf": 32768, "sndbuf": 2048, "name": "com.fortinet.fct.kext.fwnke", "kind": "Registered kernel control module"}, {"id": "18", "unix_flags": "5", "pcbcount": 1, "rcvbuf": 8192, "sndbuf": 2048, "name": "com.fortinet.kext.avkern2", "kind": "Registered kernel control module"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 0, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 4, "subcla": 0, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 0, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 11, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 6, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 6, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 2, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 10, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1000, "class": 5, "subcla": 11, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 7, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 1, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 2, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 3, "subcla": 3, "kind": "Active kernel event socket"}, {"proto": "kevt", "recv_q": 0, "send_q": 0, "vendor": 1, "class": 1, "subcla": 0, "kind": "Active kernel event socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "2", "name": "com.apple.nke.sockwall", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 2, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 3, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 4, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 5, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 6, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 7, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 8, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 9, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 10, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 11, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 12, "id": "5", "name": "com.apple.net.netagent", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 2, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 3, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 4, "id": "6", "name": "com.apple.net.utun_control", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 2, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 3, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 4, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 5, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 6, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 7, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 8, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 9, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 10, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 11, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 12, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 13, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 14, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 15, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 16, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 17, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 18, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 19, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 20, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 21, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 22, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 23, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 24, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 25, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 26, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 27, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 28, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 29, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 30, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 31, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 32, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 33, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 34, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 35, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 36, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 37, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 38, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 39, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 40, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 41, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 42, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 43, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 44, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 45, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 46, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 47, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 48, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 49, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 50, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 51, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 52, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 53, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 54, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 55, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 56, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 57, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 58, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 59, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 60, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 61, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 62, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 63, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 64, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 65, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 66, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 67, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 68, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 69, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 70, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 71, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 72, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 73, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 74, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 77, "id": "8", "name": "com.apple.netsrc", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 2, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 3, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 4, "id": "9", "name": "com.apple.network.statistics", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 1, "id": "23", "name": "com.fortinet.fct.kext.fwnke", "kind": "Active kernel control socket"}, {"proto": "kctl", "recv_q": 0, "send_q": 0, "unit": 2, "id": "24", "name": "com.fortinet.kext.avkern2", "kind": "Active kernel control socket"}] jc-1.17.3/tests/fixtures/osx-10.14.6/netstat.out000066400000000000000000002113631415226333200210520ustar00rootroot00000000000000Active Internet connections Proto Recv-Q Send-Q Local Address Foreign Address (state) tcp4 0 0 kbrazil-mac.attl.62979 40.77.18.167.https ESTABLISHED tcp6 0 0 kbrazil-mac.attl.62978 2620:1ec:42::132.https ESTABLISHED tcp4 0 0 kbrazil-mac.attl.62961 lb-140-82-114-25.https ESTABLISHED tcp4 0 0 kbrazil-mac.attl.62951 52.114.128.7.https ESTABLISHED tcp6 0 0 kbrazil-mac.attl.62900 on-in-x6d.1e100..imaps ESTABLISHED tcp4 0 0 kbrazil-mac.attl.62894 208.91.113.36.https ESTABLISHED tcp4 0 0 kbrazil-mac.attl.62849 lb-140-82-112-25.https ESTABLISHED tcp4 0 0 localhost.62823 localhost.62835 ESTABLISHED tcp4 0 0 localhost.62835 localhost.62823 ESTABLISHED tcp4 0 0 kbrazil-mac.attl.62733 m33sjmcs118.webe.https ESTABLISHED tcp4 0 0 kbrazil-mac.attl.62703 m33sjmcs180.webe.https ESTABLISHED tcp4 0 0 kbrazil-mac.attl.62697 ed1sjcb1402.webe.https ESTABLISHED tcp4 0 0 kbrazil-mac.attl.62670 sj1-tsa.webex.co.https ESTABLISHED tcp4 31 0 kbrazil-mac.attl.62664 93.87.236.35.bc..sunpr CLOSE_WAIT tcp6 0 0 kbrazil-mac.attl.62494 dfw28s05-in-x0e..https ESTABLISHED tcp6 0 0 kbrazil-mac.attl.62485 ob-in-x6d.1e100..imaps ESTABLISHED tcp4 0 0 kbrazil-mac.attl.62443 194.123.235.35.b.dsf ESTABLISHED tcp6 0 0 fe80::aede:48ff:.61677 fe80::aede:48ff:.49617 ESTABLISHED tcp4 0 0 kbrazil-mac.attl.61582 52.114.148.57.https ESTABLISHED tcp6 0 0 kbrazil-mac.attl.61581 ox-in-xbc.1e100..5228 ESTABLISHED tcp4 0 0 kbrazil-mac.attl.61343 kellys-iphone.at.53700 ESTABLISHED tcp6 0 0 kbrazil-mac.attl.61394 2603:1030:b00::e.https ESTABLISHED tcp4 0 0 kbrazil-mac.attl.61368 93.87.236.35.bc..sunpr ESTABLISHED tcp4 0 0 kbrazil-mac.attl.61357 family-room-5.at.49153 ESTABLISHED tcp4 0 0 kbrazil-mac.attl.61356 bedroom.attlocal.49152 ESTABLISHED tcp4 0 0 kbrazil-mac.attl.61343 kellys-mbp.attlo.56012 ESTABLISHED tcp6 0 0 fe80::aede:48ff:.61347 fe80::aede:48ff:.49621 ESTABLISHED tcp6 0 0 fe80::aede:48ff:.61346 fe80::aede:48ff:.49607 ESTABLISHED tcp6 0 0 fe80::aede:48ff:.49154 fe80::aede:48ff:.49804 ESTABLISHED tcp6 0 0 fe80::aede:48ff:.49154 fe80::aede:48ff:.49803 ESTABLISHED tcp4 0 0 kbrazil-mac.attl.60773 52.114.88.20.https ESTABLISHED tcp6 0 0 fe80::aede:48ff:.49154 fe80::aede:48ff:.49802 ESTABLISHED tcp6 0 0 fe80::aede:48ff:.49154 fe80::aede:48ff:.49801 ESTABLISHED tcp6 0 0 fe80::aede:48ff:.49154 fe80::aede:48ff:.49800 ESTABLISHED tcp6 0 0 fe80::aede:48ff:.49154 fe80::aede:48ff:.49799 ESTABLISHED tcp6 0 0 fe80::aede:48ff:.49154 fe80::aede:48ff:.49798 ESTABLISHED tcp4 0 0 kbrazil-mac.attl.52630 17.57.144.20.5223 ESTABLISHED tcp4 0 0 kbrazil-mac.attl.51797 mycloudex2ultra..afpov ESTABLISHED tcp4 0 0 kbrazil-mac.attl.51642 194.123.235.35.b.dsf CLOSE_WAIT tcp4 0 0 kbrazil-mac.attl.51641 194.123.235.35.b.dsf CLOSE_WAIT tcp4 0 0 kbrazil-mac.attl.51640 194.123.235.35.b.dsf CLOSE_WAIT tcp6 0 0 fe80::aede:48ff:.63836 fe80::aede:48ff:.49602 ESTABLISHED tcp6 0 0 fe80::aede:48ff:.59388 fe80::aede:48ff:.59602 ESTABLISHED tcp4 0 0 kbrazil-mac.attl.58795 96.45.36.31.https ESTABLISHED tcp4 0 0 localhost.ldgateway localhost.58704 CLOSE_WAIT tcp6 0 0 fe80::aede:48ff:.59281 fe80::aede:48ff:.49602 ESTABLISHED tcp6 0 0 fe80::aede:48ff:.57652 fe80::aede:48ff:.49602 ESTABLISHED tcp6 0 0 fe80::aede:48ff:.51989 fe80::aede:48ff:.49602 ESTABLISHED tcp6 0 0 fe80::aede:48ff:.49892 fe80::aede:48ff:.49620 ESTABLISHED tcp6 0 0 fe80::aede:48ff:.49798 fe80::aede:48ff:.49608 ESTABLISHED tcp6 0 0 fe80::aede:48ff:.49390 fe80::aede:48ff:.49613 ESTABLISHED tcp6 0 0 fe80::aede:48ff:.49157 fe80::aede:48ff:.49615 ESTABLISHED tcp6 0 0 kbrazil-mac.attl.62983 2600:9000:2202:9.https TIME_WAIT udp4 0 0 kbrazil-mac.attl.63388 *.* udp4 0 0 *.61398 *.* udp4 0 0 *.53413 *.* udp4 0 0 *.59909 *.* udp4 0 0 *.53609 *.* udp4 0 0 *.54417 *.* udp4 0 0 *.62632 *.* udp4 0 0 kbrazil-mac.attl.54797 *.* udp6 0 0 kbrazil-mac.attl.56570 *.* udp4 0 0 kbrazil-mac.attl.56159 *.* udp6 0 0 kbrazil-mac.attl.58453 *.* udp4 0 0 kbrazil-mac.attl.58452 *.* udp6 0 0 kbrazil-mac.attl.55724 *.* udp4 0 0 kbrazil-mac.attl.55723 *.* udp6 0 0 kbrazil-mac.attl.58104 *.* udp4 0 0 kbrazil-mac.attl.58103 *.* udp6 0 0 kbrazil-mac.attl.62803 *.* udp4 0 0 kbrazil-mac.attl.62802 *.* udp6 0 0 kbrazil-mac.attl.51531 *.* udp4 0 0 kbrazil-mac.attl.51530 *.* udp6 0 0 kbrazil-mac.attl.53504 *.* udp4 0 0 kbrazil-mac.attl.53503 *.* udp6 0 0 kbrazil-mac.attl.56260 *.* udp4 0 0 *.60036 *.* udp4 0 0 *.54290 *.* udp4 0 0 *.mdns *.* udp4 0 0 *.xserveraid *.* udp46 0 0 *.61224 *.* udp4 0 0 *.* *.* udp4 0 0 *.* *.* udp4 0 0 localhost.63995 *.* udp4 0 0 kbrazil-mac.attl.50636 *.* udp4 0 0 *.33354 *.* udp4 0 0 *.33355 *.* udp6 0 0 *.61982 *.* udp4 0 0 *.61982 *.* udp6 0 0 *.52378 *.* udp4 0 0 *.52378 *.* udp6 0 0 *.53910 *.* udp4 0 0 *.53910 *.* udp6 0 0 *.57674 *.* udp4 0 0 *.57674 *.* udp6 0 0 *.62448 *.* udp4 0 0 *.62448 *.* udp6 0 0 *.55681 *.* udp4 0 0 *.55681 *.* udp4 0 0 *.* *.* udp4 0 0 *.* *.* udp4 0 0 *.mdns *.* udp4 0 0 *.mdns *.* udp46 0 0 *.mdns *.* udp46 0 0 *.mdns *.* udp46 0 0 *.mdns *.* udp4 0 0 *.mdns *.* udp46 0 0 *.mdns *.* udp4 0 0 *.51226 *.* udp4 0 0 localhost.61491 *.* udp4 0 0 *.6096 *.* udp4 0 0 *.58997 *.* udp4 0 0 *.* *.* udp4 0 0 *.* *.* udp4 0 0 *.* *.* udp4 0 0 *.* *.* udp4 0 0 *.* *.* udp4 0 0 *.* *.* udp4 0 0 *.* *.* udp4 0 0 *.* *.* udp4 0 0 *.52551 *.* udp4 0 0 *.* *.* udp4 0 0 *.* *.* udp4 0 0 *.* *.* udp4 0 0 *.* *.* udp4 0 0 *.* *.* udp4 0 0 *.* *.* udp4 0 0 *.* *.* udp4 0 0 *.* *.* udp4 0 0 *.* *.* udp4 0 0 *.* *.* udp4 0 0 *.* *.* udp4 0 0 *.* *.* udp4 0 0 *.* *.* udp4 0 0 *.* *.* udp4 0 0 *.* *.* udp4 0 0 *.* *.* udp4 0 0 *.* *.* udp4 0 0 *.* *.* udp4 0 0 *.* *.* udp4 0 0 *.* *.* udp4 0 0 *.* *.* udp4 0 0 *.* *.* udp4 0 0 *.* *.* udp4 0 0 *.* *.* udp4 0 0 *.* *.* udp4 0 0 *.* *.* udp4 0 0 *.* *.* udp4 0 0 *.* *.* udp4 0 0 *.* *.* udp4 0 0 *.* *.* udp46 0 0 *.* *.* udp6 0 0 *.mdns *.* udp4 0 0 *.mdns *.* udp4 0 0 *.pds *.* udp4 0 0 *.netbios-dgm *.* udp4 0 0 *.netbios-ns *.* icm4 8136 0 *.* *.* Active Multipath Internet connections Proto/ID Flags Local Address Foreign Address (state) Active LOCAL (UNIX) domain sockets Address Type Recv-Q Send-Q Inode Conn Refs Nextref Addr 7fb03cb94a63a7cd stream 1 0 0 7fb03cb94a63cedd 0 0 7fb03cb94a63cedd stream 0 0 0 7fb03cb94a63a7cd 0 0 7fb03cb94a63b065 stream 0 0 0 7fb03cb94a63b2bd 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock 7fb03cb94a63b2bd stream 0 0 0 7fb03cb94a63b065 0 0 7fb03cb95130cc7d stream 0 0 0 7fb03cb95130f38d 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock 7fb03cb95130f38d stream 0 0 0 7fb03cb95130cc7d 0 0 7fb03cb937d38385 stream 0 0 0 7fb03cb937d3a135 0 0 7fb03cb937d3a135 stream 0 0 0 7fb03cb937d38385 0 0 7fb03cb937d3795d stream 0 0 0 7fb03cb937d38835 0 0 /var/run/mDNSResponder 7fb03cb937d38835 stream 0 0 0 7fb03cb937d3795d 0 0 7fb03cb937d38515 stream 0 0 0 7fb03cb937d39d4d 0 0 /var/run/fctservctl.sock 7fb03cb937d39d4d stream 0 0 0 7fb03cb937d38515 0 0 7fb03cb937d3812d stream 0 0 0 7fb03cb937d38e75 0 0 /var/run/fctservctl.sock 7fb03cb937d38e75 stream 0 0 0 7fb03cb937d3812d 0 0 7fb03cb93ceaebb5 stream 0 0 0 7fb03cb93ceaff3d 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock 7fb03cb93ceaff3d stream 0 0 0 7fb03cb93ceaebb5 0 0 7fb03cb93ceb1135 stream 0 0 0 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock 7fb03cb935afe2bd stream 0 0 0 7fb03cb935b006ad 0 0 /var/run/mDNSResponder 7fb03cb935b006ad stream 0 0 0 7fb03cb935afe2bd 0 0 7fb03cb93501a7cd stream 0 0 0 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock 7fb03cb94d74857d stream 0 0 0 7fb03cb94d747e75 0 0 /var/run/mDNSResponder 7fb03cb94d747e75 stream 0 0 0 7fb03cb94d74857d 0 0 7fb03cb94a63aaed stream 0 0 0 7fb03cb94a63b1f5 0 0 7fb03cb94a63b1f5 stream 4 0 0 7fb03cb94a63aaed 0 0 7fb03cb94a63cd4d stream 0 0 0 7fb03cb94a63a95d 0 0 7fb03cb94a63a95d stream 4 0 0 7fb03cb94a63cd4d 0 0 7fb03cb94a63ae0d stream 0 0 0 7fb03cb94a63b385 0 0 7fb03cb94a63b385 stream 8 0 0 7fb03cb94a63ae0d 0 0 7fb03cb94d7471f5 stream 0 0 0 7fb03cb94d748965 0 0 7fb03cb94d748965 stream 0 0 0 7fb03cb94d7471f5 0 0 7fb03cb94d747ce5 stream 0 0 0 7fb03cb94d746f9d 0 0 7fb03cb94d746f9d stream 8 0 0 7fb03cb94d747ce5 0 0 7fb03cb94d748edd stream 0 0 0 7fb03cb94d747a8d 0 0 7fb03cb94d747a8d stream 8 0 0 7fb03cb94d748edd 0 0 7fb03cb937d38b55 stream 0 0 0 7fb03cb937d39005 0 0 7fb03cb937d39005 stream 8 0 0 7fb03cb937d38b55 0 0 7fb03cb95130f2c5 stream 0 0 0 7fb03cb95130cd45 0 0 /var/run/mDNSResponder 7fb03cb95130cd45 stream 0 0 0 7fb03cb95130f2c5 0 0 7fb03cb95130de75 stream 0 0 0 7fb03cb95130eaf5 0 0 /var/run/fctservctl.sock 7fb03cb95130eaf5 stream 0 0 0 7fb03cb95130de75 0 0 7fb03cb95130e0cd stream 0 0 0 7fb03cb95130f135 0 0 /var/run/fctservctl.sock 7fb03cb95130f135 stream 0 0 0 7fb03cb95130e0cd 0 0 7fb03cb95130e70d stream 0 0 0 7fb03cb95130da8d 0 0 /var/run/fctservctl.sock 7fb03cb95130da8d stream 0 0 0 7fb03cb95130e70d 0 0 7fb03cb95130efa5 stream 0 0 0 7fb03cb95130e645 0 0 /var/run/fctservctl.sock 7fb03cb95130e645 stream 0 0 0 7fb03cb95130efa5 0 0 7fb03cb94d746d45 stream 0 0 0 7fb03cb94d74695d 0 0 /var/run/mDNSResponder 7fb03cb94d74695d stream 0 0 0 7fb03cb94d746d45 0 0 7fb03cb94d748fa5 stream 0 0 0 7fb03cb94d74825d 0 0 /var/run/mDNSResponder 7fb03cb94d74825d stream 0 0 0 7fb03cb94d748fa5 0 0 7fb03cb945d3ac85 stream 0 0 0 7fb03cb945d3a25d 0 0 /var/run/mDNSResponder 7fb03cb945d3a25d stream 0 0 0 7fb03cb945d3ac85 0 0 7fb03cb945d3a0cd stream 0 0 0 7fb03cb945d38aed 0 0 /var/run/mDNSResponder 7fb03cb945d38aed stream 0 0 0 7fb03cb945d3a0cd 0 0 7fb03cb945d3944d stream 0 0 0 7fb03cb945d3a965 0 0 /var/run/mDNSResponder 7fb03cb945d3a965 stream 0 0 0 7fb03cb945d3944d 0 0 7fb03cb94a63c70d stream 0 0 0 7fb03cb94a63b5dd 0 0 /var/run/mDNSResponder 7fb03cb94a63b5dd stream 0 0 0 7fb03cb94a63c70d 0 0 7fb03cb94a63d06d stream 0 0 0 7fb03cb94a63b44d 0 0 /var/run/mDNSResponder 7fb03cb94a63b44d stream 0 0 0 7fb03cb94a63d06d 0 0 7fb03cb95130f6ad stream 0 0 0 7fb03cb95130e89d 0 0 /var/run/mDNSResponder 7fb03cb95130e89d stream 0 0 0 7fb03cb95130f6ad 0 0 7fb03cb94a63d38d stream 0 0 0 7fb03cb94a63cbbd 0 0 /var/run/mDNSResponder 7fb03cb94a63cbbd stream 0 0 0 7fb03cb94a63d38d 0 0 7fb03cb94a63b9c5 stream 0 0 0 7fb03cb94a63ca2d 0 0 /tmp/olisne-WY4G9IZafUNsloCollectorServicePipe 7fb03cb94a63ca2d stream 0 0 0 7fb03cb94a63b9c5 0 0 7fb03cb94a63ad45 stream 0 0 7fb03cb938289085 0 0 0 /tmp/olisne-WY4G9IZafUNsloCollectorServicePipe 7fb03cb95130c95d stream 0 0 0 7fb03cb95130d1f5 0 0 /var/run/mDNSResponder 7fb03cb95130d1f5 stream 0 0 0 7fb03cb95130c95d 0 0 7fb03cb945d38a25 stream 0 0 0 7fb03cb945d3a195 0 0 /var/run/mDNSResponder 7fb03cb945d3a195 stream 0 0 0 7fb03cb945d38a25 0 0 7fb03cb945d3aa2d stream 0 0 0 0 0 0 7fb03cb95130f5e5 stream 0 0 0 7fb03cb95130e4b5 0 0 /var/run/mDNSResponder 7fb03cb95130e4b5 stream 0 0 0 7fb03cb95130f5e5 0 0 7fb03cb94d74906d stream 0 0 0 7fb03cb94d746e0d 0 0 7fb03cb94d746e0d stream 8 0 0 7fb03cb94d74906d 0 0 7fb03cb937d39325 stream 0 0 0 7fb03cb937d385dd 0 0 7fb03cb937d385dd stream 0 0 0 7fb03cb937d39325 0 0 7fb03cb937d3876d stream 0 0 0 7fb03cb937d3a455 0 0 7fb03cb937d3a455 stream 0 0 0 7fb03cb937d3876d 0 0 7fb03cb937d37a25 stream 0 0 0 7fb03cb937d386a5 0 0 /var/run/mDNSResponder 7fb03cb937d386a5 stream 0 0 0 7fb03cb937d37a25 0 0 7fb03cb937d39195 stream 0 0 0 7fb03cb937d38f3d 0 0 7fb03cb937d38f3d stream 0 0 0 7fb03cb937d39195 0 0 7fb03cb937d37895 stream 0 0 0 7fb03cb937d37ed5 0 0 7fb03cb937d37ed5 stream 0 0 0 7fb03cb937d37895 0 0 7fb03cb937d390cd stream 0 0 0 7fb03cb937d3a38d 0 0 7fb03cb937d3a38d stream 0 0 0 7fb03cb937d390cd 0 0 7fb03cb945d3b455 stream 0 0 0 7fb03cb945d3895d 0 0 7fb03cb945d3895d stream 0 0 0 7fb03cb945d3b455 0 0 7fb03cb945d392bd stream 0 0 0 7fb03cb945d38e0d 0 0 7fb03cb945d38e0d stream 0 0 0 7fb03cb945d392bd 0 0 7fb03cb945d3b135 stream 0 0 0 7fb03cb945d38ed5 0 0 7fb03cb945d38ed5 stream 0 0 0 7fb03cb945d3b135 0 0 7fb03cb945d3976d stream 0 0 0 7fb03cb945d3912d 0 0 /var/run/mDNSResponder 7fb03cb945d3912d stream 0 0 0 7fb03cb945d3976d 0 0 7fb03cb945d391f5 stream 0 0 0 7fb03cb945d39385 0 0 7fb03cb945d39385 stream 0 0 0 7fb03cb945d391f5 0 0 7fb03cb945d38c7d stream 0 0 7fb03cb94b87f5d5 0 0 0 /var/folders/vr/4gybj0rs1_51r0sy8d5qv3jm0000gn/T/.com.microsoft.teams.okHfqO/SS 7fb03cb945d39c1d stream 0 0 0 7fb03cb945d39e75 0 0 /var/run/mDNSResponder 7fb03cb945d39e75 stream 0 0 0 7fb03cb945d39c1d 0 0 7fb03cb94a63ac7d stream 0 0 0 7fb03cb94a63caf5 0 0 /var/run/mDNSResponder 7fb03cb94a63caf5 stream 0 0 0 7fb03cb94a63ac7d 0 0 7fb03cb95130d515 stream 0 0 0 7fb03cb95130ce0d 0 0 7fb03cb95130ce0d stream 0 0 0 7fb03cb95130d515 0 0 7fb03cb95130caed stream 0 0 0 7fb03cb95130ca25 0 0 7fb03cb95130ca25 stream 0 0 0 7fb03cb95130caed 0 0 7fb03cb95130d385 stream 0 0 0 7fb03cb95130f06d 0 0 7fb03cb95130f06d stream 0 0 0 7fb03cb95130d385 0 0 7fb03cb95130dc1d stream 0 0 0 7fb03cb95130e7d5 0 0 7fb03cb95130e7d5 stream 0 0 0 7fb03cb95130dc1d 0 0 7fb03cb95130ced5 stream 0 0 0 7fb03cb95130f51d 0 0 7fb03cb95130f51d stream 0 0 0 7fb03cb95130ced5 0 0 7fb03cb95130df3d stream 0 0 0 7fb03cb95130c7cd 0 0 7fb03cb95130c7cd stream 0 0 0 7fb03cb95130df3d 0 0 7fb03cb95130e195 stream 0 0 0 7fb03cb95130e325 0 0 7fb03cb95130e325 stream 0 0 0 7fb03cb95130e195 0 0 7fb03cb95130f1fd stream 0 0 0 7fb03cb95130ea2d 0 0 7fb03cb95130ea2d stream 0 0 0 7fb03cb95130f1fd 0 0 7fb03cb95130d2bd stream 0 0 0 7fb03cb95130c895 0 0 7fb03cb95130c895 stream 0 0 0 7fb03cb95130d2bd 0 0 7fb03cb95130cbb5 stream 0 0 7fb03cb937de855d 0 0 0 /Library/Application Support/LANDesk/tmp/socket/sys 7fb03cb95130d065 stream 0 0 0 7fb03cb95130d5dd 0 0 7fb03cb95130d5dd stream 0 0 0 7fb03cb95130d065 0 0 7fb03cb95130ec85 stream 0 0 0 7fb03cb95130ee15 0 0 7fb03cb95130ee15 stream 0 0 0 7fb03cb95130ec85 0 0 7fb03cb95130d76d stream 0 0 0 7fb03cb95130d12d 0 0 7fb03cb95130d12d stream 0 0 0 7fb03cb95130d76d 0 0 7fb03cb95130ed4d stream 0 0 0 7fb03cb95130eedd 0 0 7fb03cb95130eedd stream 0 0 0 7fb03cb95130ed4d 0 0 7fb03cb95130e965 stream 0 0 0 7fb03cb95130e3ed 0 0 /var/run/mDNSResponder 7fb03cb95130e3ed stream 0 0 0 7fb03cb95130e965 0 0 7fb03cb937d3925d stream 0 0 0 7fb03cb937d39c85 0 0 /var/run/mDNSResponder 7fb03cb937d39c85 stream 0 0 0 7fb03cb937d3925d 0 0 7fb03cb937d381f5 stream 0 0 0 0 0 0 7fb03cb935b005e5 stream 0 0 0 7fb03cb935afd895 0 0 /var/run/mDNSResponder 7fb03cb935afd895 stream 0 0 0 7fb03cb935b005e5 0 0 7fb03cb94d746ed5 stream 0 0 0 7fb03cb94d748195 0 0 /var/run/mDNSResponder 7fb03cb94d748195 stream 0 0 0 7fb03cb94d746ed5 0 0 7fb03cb94a63ba8d stream 0 0 0 7fb03cb94a63d5e5 0 0 /var/run/mDNSResponder 7fb03cb94a63d5e5 stream 0 0 0 7fb03cb94a63ba8d 0 0 7fb03cb94a63cc85 stream 0 0 0 7fb03cb94a63a895 0 0 /var/run/mDNSResponder 7fb03cb94a63a895 stream 0 0 0 7fb03cb94a63cc85 0 0 7fb03cb94a63c965 stream 0 0 0 7fb03cb94a63d51d 0 0 /var/run/mDNSResponder 7fb03cb94a63d51d stream 0 0 0 7fb03cb94a63c965 0 0 7fb03cb94d747f3d stream 0 0 0 7fb03cb94d7480cd 0 0 /var/run/mDNSResponder 7fb03cb94d7480cd stream 0 0 0 7fb03cb94d747f3d 0 0 7fb03cb94a63abb5 stream 0 0 0 7fb03cb94a63c7d5 0 0 /var/run/mDNSResponder 7fb03cb94a63c7d5 stream 0 0 0 7fb03cb94a63abb5 0 0 7fb03cb95130dce5 stream 0 0 0 7fb03cb95130e005 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/filesystem-event.sock 7fb03cb95130e005 stream 0 0 0 7fb03cb95130dce5 0 0 7fb03cb935b001fd stream 0 0 0 7fb03cb935afdaed 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock 7fb03cb935afdaed stream 0 0 0 7fb03cb935b001fd 0 0 7fb03cb935b0038d stream 0 0 7fb03cb9350ead1d 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/docker.raw.sock 7fb03cb935b002c5 stream 0 0 0 7fb03cb935aff0cd 0 0 vpnkit.data.sock 7fb03cb935aff0cd stream 0 0 0 7fb03cb935b002c5 0 0 7fb03cb935b00135 stream 0 0 0 7fb03cb935afdbb5 0 0 backend-for-guest.sock 7fb03cb935afdbb5 stream 0 0 0 7fb03cb935b00135 0 0 7fb03cb935affaf5 stream 0 0 0 7fb03cb935affd4d 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/lifecycle-server.sock 7fb03cb935affd4d stream 0 0 0 7fb03cb935affaf5 0 0 7fb03cb935affa2d stream 0 0 0 7fb03cb935affe15 0 0 vms/0/00000002.000005f4 7fb03cb935affe15 stream 0 0 0 7fb03cb935affa2d 0 0 7fb03cb935b0006d stream 0 0 0 7fb03cb935afffa5 0 0 vms/0/connect 7fb03cb935afffa5 stream 0 0 0 7fb03cb935b0006d 0 0 7fb03cb935affedd stream 0 0 0 7fb03cb935afdc7d 0 0 vms/0/00000002.000005f4 7fb03cb935afdc7d stream 0 0 0 7fb03cb935affedd 0 0 7fb03cb935afdd45 stream 0 0 0 7fb03cb935affc85 0 0 vms/0/connect 7fb03cb935affc85 stream 0 0 0 7fb03cb935afdd45 0 0 7fb03cb935afde0d stream 0 0 0 7fb03cb935affbbd 0 0 vms/0/00000002.000005f4 7fb03cb935affbbd stream 0 0 0 7fb03cb935afde0d 0 0 7fb03cb935afded5 stream 0 0 0 7fb03cb935aff965 0 0 vms/0/connect 7fb03cb935aff965 stream 0 0 0 7fb03cb935afded5 0 0 7fb03cb935aff89d stream 0 0 0 7fb03cb935aff7d5 0 0 vms/0/00000002.000005f4 7fb03cb935aff7d5 stream 0 0 0 7fb03cb935aff89d 0 0 7fb03cb935afdf9d stream 0 0 0 7fb03cb935aff70d 0 0 vms/0/connect 7fb03cb935aff70d stream 0 0 0 7fb03cb935afdf9d 0 0 7fb03cb935aff645 stream 0 0 0 7fb03cb935aff57d 0 0 vms/0/connect 7fb03cb935aff57d stream 0 0 0 7fb03cb935aff645 0 0 7fb03cb935afe065 stream 0 0 0 7fb03cb935aff4b5 0 0 vms/0/00000002.000005f4 7fb03cb935aff4b5 stream 0 0 0 7fb03cb935afe065 0 0 7fb03cb935aff3ed stream 0 0 7fb03cb935cd2d9d 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/filesystem-event.sock 7fb03cb935aff325 stream 0 0 7fb03cb93609fca5 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/lifecycle-server.sock 7fb03cb935aff25d stream 0 0 7fb03cb94cddc36d 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/diagnosticd.sock 7fb03cb935afe12d stream 0 0 0 7fb03cb935afe1f5 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.00001003 7fb03cb935afe1f5 stream 0 0 0 7fb03cb935afe12d 0 0 7fb03cb935aff195 stream 0 0 0 7fb03cb935afe515 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/memlogdq.sock 7fb03cb935afe515 stream 0 0 0 7fb03cb935aff195 0 0 7fb03cb935afe44d stream 0 0 7fb03cb9350eac25 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/memlogdq.sock 7fb03cb935afe8fd stream 0 0 0 7fb03cb935afedad 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.000007cf 7fb03cb935afedad stream 0 0 0 7fb03cb935afe8fd 0 0 7fb03cb935aff005 stream 0 0 7fb03cb938b763e5 0 0 0 vms/0/00000003.000005f5 7fb03cb935afef3d stream 0 0 7fb03cb938b761f5 0 0 0 vms/0/00000003.00000948 7fb03cb935afe5dd stream 0 0 7fb03cb938b760fd 0 0 0 vms/0/connect 7fb03cb935afe6a5 stream 0 0 0 7fb03cb935afe76d 0 0 vpnkit.eth.sock 7fb03cb935afe76d stream 0 0 0 7fb03cb935afe6a5 0 0 7fb03cb935afee75 stream 0 0 7fb03cb9360a12ed 0 0 0 backend.sock 7fb03cb935afece5 stream 0 0 7fb03cb935cd29bd 0 0 0 filesystem-export.sock 7fb03cb935afec1d stream 0 0 7fb03cb935cd43e5 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/00000002.00001003 7fb03cb935afe9c5 stream 0 0 7fb03cb935cd40fd 0 0 0 filesystem-volume.sock 7fb03cb935afeb55 stream 0 0 7fb03cb9350eaa35 0 0 0 docker-api.sock 7fb03cb935afea8d stream 0 0 7fb03cb9350eab2d 0 0 0 backend-for-guest.sock 7fb03cb93501b065 stream 0 0 7fb03cb9350ea36d 0 0 0 vpnkit.data.sock 7fb03cb937d37bb5 stream 0 0 7fb03cb9350ea465 0 0 0 vpnkit.port.sock 7fb03cb937d3a5e5 stream 0 0 7fb03cb950a0dca5 0 0 0 docker.sock 7fb03cb937d3a51d stream 0 0 7fb03cb950ab1005 0 0 0 vpnkit.pcap.sock 7fb03cb94d7495e5 stream 0 0 7fb03cb950ab0f0d 0 0 0 vpnkit.diag.sock 7fb03cb94d746895 stream 0 0 7fb03cb950aafd9d 0 0 0 vpnkit.eth.sock 7fb03cb94d7467cd stream 0 0 7fb03cb950ab0085 0 0 0 osxfs.sock 7fb03cb94d746bb5 stream 0 0 7fb03cb950ab0a35 0 0 0 vms/0/00000002.000005f4 7fb03cb94d7496ad stream 0 0 7fb03cb950a1dab5 0 0 0 /Users/kbrazil/Library/Containers/com.docker.docker/Data/gui-api.sock 7fb03cb94d7492c5 stream 0 0 0 7fb03cb94d746aed 0 0 /var/run/mDNSResponder 7fb03cb94d746aed stream 0 0 0 7fb03cb94d7492c5 0 0 7fb03cb94d748d4d stream 0 0 0 7fb03cb94d7472bd 0 0 /var/run/fctservctl.sock 7fb03cb94d7472bd stream 0 0 0 7fb03cb94d748d4d 0 0 7fb03cb94d748c85 stream 0 0 0 7fb03cb94d747385 0 0 /var/run/fctservctl.sock 7fb03cb94d747385 stream 0 0 0 7fb03cb94d748c85 0 0 7fb03cb94d748af5 stream 0 0 0 7fb03cb94d747835 0 0 /var/run/mDNSResponder 7fb03cb94d747835 stream 0 0 0 7fb03cb94d748af5 0 0 7fb03cb94d748a2d stream 0 0 0 7fb03cb94d74776d 0 0 /var/run/fctservctl.sock 7fb03cb94d74776d stream 580 0 0 7fb03cb94d748a2d 0 0 7fb03cb94d74889d stream 0 0 0 7fb03cb94d7478fd 0 0 /var/run/fctservctl.sock 7fb03cb94d7478fd stream 0 0 0 7fb03cb94d74889d 0 0 7fb03cb94d74870d stream 0 0 0 7fb03cb94d7487d5 0 0 /var/run/fctservctl.sock 7fb03cb94d7487d5 stream 0 0 0 7fb03cb94d74870d 0 0 7fb03cb94d748645 stream 0 0 0 7fb03cb94d7479c5 0 0 /var/run/fctservctl.sock 7fb03cb94d7479c5 stream 0 0 0 7fb03cb94d748645 0 0 7fb03cb94d7484b5 stream 0 0 0 7fb03cb94d747b55 0 0 /var/run/fctservctl.sock 7fb03cb94d747b55 stream 0 0 0 7fb03cb94d7484b5 0 0 7fb03cb94d747c1d stream 0 0 0 7fb03cb94d748325 0 0 /var/run/fctservctl.sock 7fb03cb94d748325 stream 0 0 0 7fb03cb94d747c1d 0 0 7fb03cb94d7483ed stream 0 0 7fb03cb94db01655 0 0 0 /tmp/fctvpnctl.sock_501 7fb03cb94a63bc1d stream 0 0 0 7fb03cb94a63c645 0 0 /var/run/mDNSResponder 7fb03cb94a63c645 stream 0 0 0 7fb03cb94a63bc1d 0 0 7fb03cb94a63bce5 stream 0 0 0 7fb03cb94a63c57d 0 0 /var/run/mDNSResponder 7fb03cb94a63c57d stream 0 0 0 7fb03cb94a63bce5 0 0 7fb03cb94a63bdad stream 0 0 0 7fb03cb94a63c4b5 0 0 /var/run/mDNSResponder 7fb03cb94a63c4b5 stream 0 0 0 7fb03cb94a63bdad 0 0 7fb03cb94a63be75 stream 0 0 0 7fb03cb94a63c3ed 0 0 /var/run/mDNSResponder 7fb03cb94a63c3ed stream 0 0 0 7fb03cb94a63be75 0 0 7fb03cb94a63bf3d stream 0 0 0 7fb03cb94a63c325 0 0 /var/run/mDNSResponder 7fb03cb94a63c325 stream 0 0 0 7fb03cb94a63bf3d 0 0 7fb03cb94a63c195 stream 0 0 0 7fb03cb94a63c005 0 0 /var/run/mDNSResponder 7fb03cb94a63c005 stream 0 0 0 7fb03cb94a63c195 0 0 7fb03cb94a63c0cd stream 0 0 0 7fb03cb94a63c25d 0 0 /var/run/mDNSResponder 7fb03cb94a63c25d stream 0 0 0 7fb03cb94a63c0cd 0 0 7fb03cb945d3ad4d stream 0 0 0 7fb03cb93501b835 0 0 /var/run/mDNSResponder 7fb03cb945d3ae15 stream 0 0 0 7fb03cb937d377cd 0 0 /var/run/mDNSResponder 7fb03cb93501b835 stream 0 0 0 7fb03cb945d3ad4d 0 0 7fb03cb937d377cd stream 0 0 0 7fb03cb945d3ae15 0 0 7fb03cb937d3a6ad stream 0 0 0 7fb03cb937d3a06d 0 0 /var/run/mDNSResponder 7fb03cb937d3a06d stream 0 0 0 7fb03cb937d3a6ad 0 0 7fb03cb945d387cd stream 0 0 7fb03cb94d0e4a35 0 0 0 /Users/kbrazil/Library/Application Support/Fortinet/FortiClient/credentialstore.sock 7fb03cb945d395dd stream 0 0 0 7fb03cb945d39515 0 0 /var/run/mDNSResponder 7fb03cb945d39515 stream 0 0 0 7fb03cb945d395dd 0 0 7fb03cb945d39ce5 stream 0 0 0 7fb03cb945d39dad 0 0 /var/run/mDNSResponder 7fb03cb945d39dad stream 0 0 0 7fb03cb945d39ce5 0 0 7fb03cb937d39e15 stream 0 0 0 7fb03cb937d39645 0 0 /var/run/mDNSResponder 7fb03cb937d39645 stream 0 0 0 7fb03cb937d39e15 0 0 7fb03cb937d39af5 stream 0 0 7fb03cb9418d26cd 0 0 0 /var/folders/vr/4gybj0rs1_51r0sy8d5qv3jm0000gn/T/.com.google.Chrome.ucLRTi/SingletonSocket 7fb03cb93ceaeaed stream 0 0 0 7fb03cb93ceb151d 0 0 /var/run/mDNSResponder 7fb03cb93ceb151d stream 0 0 0 7fb03cb93ceaeaed 0 0 7fb03cb93ceae95d stream 0 0 0 7fb03cb93ceb138d 0 0 /var/run/mDNSResponder 7fb03cb93ceb138d stream 0 0 0 7fb03cb93ceae95d 0 0 7fb03cb93ceb12c5 stream 0 0 0 7fb03cb93ceaed45 0 0 /var/run/mDNSResponder 7fb03cb93ceaed45 stream 0 0 0 7fb03cb93ceb12c5 0 0 7fb03cb93ceaee0d stream 0 0 0 7fb03cb93ceaeed5 0 0 /var/run/mDNSResponder 7fb03cb93ceaeed5 stream 0 0 0 7fb03cb93ceaee0d 0 0 7fb03cb93ceb106d stream 0 0 0 7fb03cb93ceaef9d 0 0 /var/run/mDNSResponder 7fb03cb93ceaef9d stream 0 0 0 7fb03cb93ceb106d 0 0 7fb03cb93ceaf2bd stream 0 0 0 7fb03cb93ceb0fa5 0 0 /var/run/mDNSResponder 7fb03cb93ceb0fa5 stream 0 0 0 7fb03cb93ceaf2bd 0 0 7fb03cb93ceaf515 stream 0 0 0 7fb03cb93ceb0e15 0 0 7fb03cb93ceb0e15 stream 0 0 0 7fb03cb93ceaf515 0 0 7fb03cb93ceaf5dd stream 0 0 0 7fb03cb93ceb0d4d 0 0 7fb03cb93ceb0d4d stream 0 0 0 7fb03cb93ceaf5dd 0 0 7fb03cb93ceb0c85 stream 0 0 0 7fb03cb93ceaf6a5 0 0 7fb03cb93ceaf6a5 stream 0 0 0 7fb03cb93ceb0c85 0 0 7fb03cb93ceaf76d stream 0 0 0 7fb03cb93ceb0bbd 0 0 7fb03cb93ceb0bbd stream 0 0 0 7fb03cb93ceaf76d 0 0 7fb03cb93ceb0af5 stream 0 0 0 7fb03cb93ceafa8d 0 0 /var/run/mDNSResponder 7fb03cb93ceafa8d stream 0 0 0 7fb03cb93ceb0af5 0 0 7fb03cb93ceb057d stream 0 0 0 7fb03cb93ceb070d 0 0 /var/run/mDNSResponder 7fb03cb93ceb070d stream 0 0 0 7fb03cb93ceb057d 0 0 7fb03cb93ceafce5 stream 0 0 0 7fb03cb93ceaf9c5 0 0 /var/run/mDNSResponder 7fb03cb93ceaf9c5 stream 0 0 0 7fb03cb93ceafce5 0 0 7fb03cb93ceb025d stream 0 0 7fb03cb93ea4fca5 0 0 0 /tmp/fctvpnctl.sock 7fb03cb93ceb0325 stream 0 0 7fb03cb93ea5074d 0 0 0 /var/tmp/filesystemui.socket 7fb03cb93ceafb55 stream 0 0 7fb03cb93ea1cd1d 0 0 0 /private/tmp/com.apple.launchd.WbUfpjQ9cD/Render 7fb03cb93ceb00cd stream 0 0 7fb03cb93ea42275 0 0 0 /private/tmp/com.apple.launchd.WdCvj7HQdi/Listeners 7fb03cb93501a895 stream 0 0 0 7fb03cb93501d51d 0 0 /var/run/mDNSResponder 7fb03cb93501d51d stream 0 0 0 7fb03cb93501a895 0 0 7fb03cb93501aa25 stream 0 0 0 7fb03cb93501aaed 0 0 /var/run/mDNSResponder 7fb03cb93501aaed stream 0 0 0 7fb03cb93501aa25 0 0 7fb03cb93501d38d stream 0 0 0 7fb03cb93501d2c5 0 0 /var/run/mDNSResponder 7fb03cb93501d2c5 stream 0 0 0 7fb03cb93501d38d 0 0 7fb03cb93501abb5 stream 0 0 0 7fb03cb93501d1fd 0 0 /var/run/mDNSResponder 7fb03cb93501d1fd stream 0 0 0 7fb03cb93501abb5 0 0 7fb03cb93501aed5 stream 0 0 0 7fb03cb93501ae0d 0 0 /var/run/mDNSResponder 7fb03cb93501ae0d stream 0 0 0 7fb03cb93501aed5 0 0 7fb03cb93501b44d stream 0 0 0 7fb03cb93501cedd 0 0 /var/run/mDNSResponder 7fb03cb93501cedd stream 0 0 0 7fb03cb93501b44d 0 0 7fb03cb93501d06d stream 0 0 0 7fb03cb93501b385 0 0 7fb03cb93501b385 stream 0 0 0 7fb03cb93501d06d 0 0 7fb03cb93501cfa5 stream 0 0 7fb03cb93763e7cd 0 0 0 /var/run/displaypolicyd/state 7fb03cb93501b76d stream 0 0 7fb03cb936ea7d9d 0 0 0 /var/run/pppconfd 7fb03cb93501c965 stream 0 0 7fb03cb9355ec3e5 0 0 0 /var/run/epctrl.sock 7fb03cb93501c89d stream 0 0 7fb03cb9355ec1f5 0 0 0 /var/run/fctvpnctrl.sock 7fb03cb93501c7d5 stream 0 0 7fb03cb9355ec0fd 0 0 0 /var/run/fctservctl.sock 7fb03cb93501c70d stream 0 0 7fb03cb9355ec005 0 0 0 /var/run/com.docker.vmnetd.sock 7fb03cb93501c645 stream 0 0 7fb03cb93557e845 0 0 0 /var/rpc/ncalrpc/srvsvc 7fb03cb93501b9c5 stream 0 0 7fb03cb93557e36d 0 0 0 /var/rpc/ncacn_np/srvsvc 7fb03cb93501c57d stream 0 0 7fb03cb93557e55d 0 0 0 /var/run/usbmuxd 7fb03cb93501c4b5 stream 0 0 7fb03cb93557e655 0 0 0 /var/rpc/ncalrpc/wkssvc 7fb03cb93501ba8d stream 0 0 7fb03cb93557e74d 0 0 0 /var/rpc/ncacn_np/wkssvc 7fb03cb93501c3ed stream 0 0 7fb03cb9355617cd 0 0 0 /var/rpc/ncacn_np/mdssvc 7fb03cb93501c325 stream 0 0 7fb03cb9355636cd 0 0 0 /var/rpc/ncalrpc/lsarpc 7fb03cb93501c25d stream 0 0 7fb03cb9355618c5 0 0 0 /var/rpc/ncacn_np/lsarpc 7fb03cb93501bb55 stream 0 0 7fb03cb9355635d5 0 0 0 /var/run/mDNSResponder 7fb03cb93501bc1d stream 0 0 7fb03cb9355634dd 0 0 0 /var/run/systemkeychaincheck.socket 7fb03cb93501bce5 stream 0 0 7fb03cb935561ab5 0 0 0 /private/var/run/.sim_diagnosticd_socket 7fb03cb93501bdad stream 0 0 7fb03cb935561bad 0 0 0 /var/run/portmap.socket 7fb03cb93501be75 stream 0 0 7fb03cb935511d1d 0 0 0 /var/run/vpncontrol.sock 7fb03cb93501bf3d stream 0 0 7fb03cb9354fd085 0 0 0 /var/rpc/ncalrpc/NETLOGON 7fb03cb93501c005 stream 0 0 7fb03cb9354e58c5 0 0 0 /private/var/run/cupsd 7fb03cb94a63c89d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94a63ce15 7fb03cb94a63ce15 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb95130e25d 7fb03cb94a63b6a5 dgram 0 0 0 7fb03cb94a63b515 7fb03cb94a63b515 0 7fb03cb94a63b515 dgram 0 0 0 7fb03cb94a63b6a5 7fb03cb94a63b6a5 0 7fb03cb95130e25d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb945d3afa5 7fb03cb95130f455 dgram 0 0 0 7fb03cb95130d9c5 7fb03cb95130d9c5 0 7fb03cb95130d9c5 dgram 0 0 0 7fb03cb95130f455 7fb03cb95130f455 0 7fb03cb945d3afa5 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94a63af9d 7fb03cb94a63af9d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceae7cd 7fb03cb93ceae7cd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb945d3b51d 7fb03cb945d3b51d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb945d3a3ed 7fb03cb945d3a3ed dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d3989d 7fb03cb937d3989d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94a63b76d 7fb03cb94a63b76d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb95130d44d 7fb03cb95130d44d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb95130cf9d 7fb03cb95130cf9d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93501d6ad 7fb03cb94d7491fd dgram 0 0 0 7fb03cb94d7476a5 7fb03cb94d7476a5 0 7fb03cb94d7476a5 dgram 0 0 0 7fb03cb94d7491fd 7fb03cb94d7491fd 0 7fb03cb93501d6ad dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94a63d6ad 7fb03cb94d748005 dgram 0 0 0 7fb03cb94d749455 7fb03cb94d749455 0 7fb03cb94d749455 dgram 0 0 0 7fb03cb94d748005 7fb03cb94d748005 0 7fb03cb94d7475dd dgram 0 0 0 7fb03cb94d747065 7fb03cb94d747065 0 7fb03cb94d747065 dgram 0 0 0 7fb03cb94d7475dd 7fb03cb94d7475dd 0 7fb03cb93501a95d dgram 0 0 0 7fb03cb93501d455 7fb03cb93501d455 0 7fb03cb93501d455 dgram 0 0 0 7fb03cb93501a95d 7fb03cb93501a95d 0 7fb03cb95130db55 dgram 0 0 0 7fb03cb95130ebbd 7fb03cb95130ebbd 0 7fb03cb95130ebbd dgram 0 0 0 7fb03cb95130db55 7fb03cb95130db55 0 7fb03cb94a63d6ad dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94d74938d 7fb03cb94d74938d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d38a8d 7fb03cb937d38a8d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb95130d835 7fb03cb95130d835 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94d746c7d 7fb03cb945d3aedd dgram 0 0 0 7fb03cb945d3b6ad 7fb03cb945d3b6ad 0 7fb03cb945d3b6ad dgram 0 0 0 7fb03cb945d3aedd 7fb03cb945d3aedd 0 7fb03cb94d746c7d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94d74712d 7fb03cb94d74712d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d39edd 7fb03cb937d39edd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d38dad 7fb03cb937d38dad dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94a63b12d 7fb03cb94a63b12d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb95130e57d 7fb03cb95130e57d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94d74951d 7fb03cb94d74951d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb94d749135 7fb03cb94d749135 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb15e5 7fb03cb93ceb15e5 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceae895 7fb03cb93ceae895 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb16ad 7fb03cb93ceb16ad dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d3a1fd 7fb03cb937d3a1fd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb945d39065 7fb03cb945d39065 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb945d38f9d 7fb03cb945d38f9d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb945d39a8d 7fb03cb945d399c5 dgram 0 0 0 7fb03cb945d3a005 7fb03cb945d3a005 0 7fb03cb945d3a005 dgram 0 0 0 7fb03cb945d399c5 7fb03cb945d399c5 0 7fb03cb945d39b55 dgram 0 0 0 7fb03cb945d39f3d 7fb03cb945d39f3d 0 7fb03cb945d39f3d dgram 0 0 0 7fb03cb945d39b55 7fb03cb945d39b55 0 7fb03cb945d39a8d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d397d5 7fb03cb937d37d45 dgram 0 0 0 7fb03cb937d37e0d 7fb03cb937d37e0d 0 7fb03cb937d37e0d dgram 0 0 0 7fb03cb937d37d45 7fb03cb937d37d45 0 7fb03cb937d397d5 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb11fd 7fb03cb93ceb11fd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceaf065 7fb03cb93ceaf065 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb0edd 7fb03cb93ceb0edd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceaf385 7fb03cb93ceaf12d dgram 0 0 0 7fb03cb93ceaf1f5 7fb03cb93ceaf1f5 0 7fb03cb93ceaf1f5 dgram 0 0 0 7fb03cb93ceaf12d 7fb03cb93ceaf12d 0 7fb03cb93ceaf385 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb0965 7fb03cb93ceb0965 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb0a2d 7fb03cb93ceb0a2d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceaf835 7fb03cb93ceaf835 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceaf8fd 7fb03cb93ceaf8fd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceafdad 7fb03cb93ceafdad dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb07d5 7fb03cb93ceb07d5 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb089d 7fb03cb93ceb0645 dgram 0 0 0 7fb03cb93ceafe75 7fb03cb93ceafe75 0 7fb03cb93ceafe75 dgram 0 0 0 7fb03cb93ceb0645 7fb03cb93ceb0645 0 7fb03cb93ceb089d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceafc1d 7fb03cb93ceb0195 dgram 0 0 0 7fb03cb93ceb0005 7fb03cb93ceb0005 0 7fb03cb93ceb0005 dgram 0 0 0 7fb03cb93ceb0195 7fb03cb93ceb0195 0 7fb03cb93ceafc1d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93ceb03ed 7fb03cb93ceb03ed dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d39fa5 7fb03cb937d39a2d dgram 0 0 0 7fb03cb937d39bbd 7fb03cb937d39bbd 0 7fb03cb937d39bbd dgram 0 0 0 7fb03cb937d39a2d 7fb03cb937d39a2d 0 7fb03cb937d39fa5 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d39965 7fb03cb937d38065 dgram 0 0 0 7fb03cb937d37c7d 7fb03cb937d37c7d 0 7fb03cb937d37c7d dgram 0 0 0 7fb03cb937d38065 7fb03cb937d38065 0 7fb03cb937d39965 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d37f9d 7fb03cb937d37f9d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d393ed 7fb03cb937d393ed dgram 0 0 0 7fb03cb93501c195 0 7fb03cb937d3970d 7fb03cb937d3970d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93501d135 7fb03cb937d382bd dgram 0 0 0 7fb03cb937d3957d 7fb03cb937d3957d 0 7fb03cb937d3957d dgram 0 0 0 7fb03cb937d382bd 7fb03cb937d382bd 0 7fb03cb937d38c1d dgram 0 0 0 7fb03cb937d38ce5 7fb03cb937d38ce5 0 7fb03cb937d38ce5 dgram 0 0 0 7fb03cb937d38c1d 7fb03cb937d38c1d 0 7fb03cb93501d135 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93501cd4d 7fb03cb93501cd4d dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93501cc85 7fb03cb93501b1f5 dgram 0 0 0 7fb03cb93501b2bd 7fb03cb93501b2bd 0 7fb03cb93501b2bd dgram 0 0 0 7fb03cb93501b1f5 7fb03cb93501b1f5 0 7fb03cb93501ce15 dgram 0 0 0 7fb03cb93501b515 7fb03cb93501b515 0 7fb03cb93501b515 dgram 0 0 0 7fb03cb93501ce15 7fb03cb93501ce15 0 7fb03cb93501b6a5 dgram 0 0 0 7fb03cb93501caf5 7fb03cb93501caf5 0 7fb03cb93501caf5 dgram 0 0 0 7fb03cb93501b6a5 7fb03cb93501b6a5 0 7fb03cb93501cc85 dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93501cbbd 7fb03cb93501cbbd dgram 0 0 0 7fb03cb93501c195 0 7fb03cb93501c0cd 7fb03cb93501b8fd dgram 0 0 0 7fb03cb93501ca2d 7fb03cb93501ca2d 0 7fb03cb93501ca2d dgram 0 0 0 7fb03cb93501b8fd 7fb03cb93501b8fd 0 7fb03cb93501c0cd dgram 0 0 0 7fb03cb93501c195 0 0 7fb03cb93501c195 dgram 0 0 7fb03cb934ff43e5 0 7fb03cb94a63c89d 0 /private//var/run/syslog Registered kernel control modules id flags pcbcount rcvbuf sndbuf name 1 9 0 131072 131072 com.apple.flow-divert 2 1 1 16384 2048 com.apple.nke.sockwall 3 9 0 524288 524288 com.apple.content-filter 4 1 0 65536 65536 com.apple.net.necp_control 5 1 12 65536 65536 com.apple.net.netagent 6 9 4 524288 524288 com.apple.net.utun_control 7 1 0 65536 65536 com.apple.net.ipsec_control 8 0 75 8192 2048 com.apple.netsrc 9 18 4 8192 2048 com.apple.network.statistics a 5 0 8192 2048 com.apple.network.tcp_ccdebug b 1 0 8192 2048 com.apple.network.advisory c 4 0 65536 2048 com.apple.uart.BLTH d 4 0 8192 2048 com.apple.uart.sk.BLTH e 0 0 8192 8192 com.apple.fileutil.kext.stateful.ctl f 0 0 8192 2048 com.apple.fileutil.kext.stateless.ctl 17 5 1 32768 2048 com.fortinet.fct.kext.fwnke 18 5 1 8192 2048 com.fortinet.kext.avkern2 Active kernel event sockets Proto Recv-Q Send-Q vendor class subcla kevt 0 0 1 1 0 kevt 0 0 1 4 0 kevt 0 0 1 1 0 kevt 0 0 1 6 1 kevt 0 0 1 6 1 kevt 0 0 1 6 1 kevt 0 0 1 1 11 kevt 0 0 1 6 1 kevt 0 0 1 6 1 kevt 0 0 1 6 1 kevt 0 0 1 6 1 kevt 0 0 1 6 1 kevt 0 0 1 6 1 kevt 0 0 1 6 1 kevt 0 0 1 6 1 kevt 0 0 1 6 1 kevt 0 0 1 1 6 kevt 0 0 1 1 1 kevt 0 0 1 6 1 kevt 0 0 1 1 2 kevt 0 0 1 1 10 kevt 0 0 1000 5 11 kevt 0 0 1 1 7 kevt 0 0 1 1 1 kevt 0 0 1 1 2 kevt 0 0 1 3 3 kevt 0 0 1 1 0 Active kernel control sockets Proto Recv-Q Send-Q unit id name kctl 0 0 1 2 com.apple.nke.sockwall kctl 0 0 1 5 com.apple.net.netagent kctl 0 0 2 5 com.apple.net.netagent kctl 0 0 3 5 com.apple.net.netagent kctl 0 0 4 5 com.apple.net.netagent kctl 0 0 5 5 com.apple.net.netagent kctl 0 0 6 5 com.apple.net.netagent kctl 0 0 7 5 com.apple.net.netagent kctl 0 0 8 5 com.apple.net.netagent kctl 0 0 9 5 com.apple.net.netagent kctl 0 0 10 5 com.apple.net.netagent kctl 0 0 11 5 com.apple.net.netagent kctl 0 0 12 5 com.apple.net.netagent kctl 0 0 1 6 com.apple.net.utun_control kctl 0 0 2 6 com.apple.net.utun_control kctl 0 0 3 6 com.apple.net.utun_control kctl 0 0 4 6 com.apple.net.utun_control kctl 0 0 1 8 com.apple.netsrc kctl 0 0 2 8 com.apple.netsrc kctl 0 0 3 8 com.apple.netsrc kctl 0 0 4 8 com.apple.netsrc kctl 0 0 5 8 com.apple.netsrc kctl 0 0 6 8 com.apple.netsrc kctl 0 0 7 8 com.apple.netsrc kctl 0 0 8 8 com.apple.netsrc kctl 0 0 9 8 com.apple.netsrc kctl 0 0 10 8 com.apple.netsrc kctl 0 0 11 8 com.apple.netsrc kctl 0 0 12 8 com.apple.netsrc kctl 0 0 13 8 com.apple.netsrc kctl 0 0 14 8 com.apple.netsrc kctl 0 0 15 8 com.apple.netsrc kctl 0 0 16 8 com.apple.netsrc kctl 0 0 17 8 com.apple.netsrc kctl 0 0 18 8 com.apple.netsrc kctl 0 0 19 8 com.apple.netsrc kctl 0 0 20 8 com.apple.netsrc kctl 0 0 21 8 com.apple.netsrc kctl 0 0 22 8 com.apple.netsrc kctl 0 0 23 8 com.apple.netsrc kctl 0 0 24 8 com.apple.netsrc kctl 0 0 25 8 com.apple.netsrc kctl 0 0 26 8 com.apple.netsrc kctl 0 0 27 8 com.apple.netsrc kctl 0 0 28 8 com.apple.netsrc kctl 0 0 29 8 com.apple.netsrc kctl 0 0 30 8 com.apple.netsrc kctl 0 0 31 8 com.apple.netsrc kctl 0 0 32 8 com.apple.netsrc kctl 0 0 33 8 com.apple.netsrc kctl 0 0 34 8 com.apple.netsrc kctl 0 0 35 8 com.apple.netsrc kctl 0 0 36 8 com.apple.netsrc kctl 0 0 37 8 com.apple.netsrc kctl 0 0 38 8 com.apple.netsrc kctl 0 0 39 8 com.apple.netsrc kctl 0 0 40 8 com.apple.netsrc kctl 0 0 41 8 com.apple.netsrc kctl 0 0 42 8 com.apple.netsrc kctl 0 0 43 8 com.apple.netsrc kctl 0 0 44 8 com.apple.netsrc kctl 0 0 45 8 com.apple.netsrc kctl 0 0 46 8 com.apple.netsrc kctl 0 0 47 8 com.apple.netsrc kctl 0 0 48 8 com.apple.netsrc kctl 0 0 49 8 com.apple.netsrc kctl 0 0 50 8 com.apple.netsrc kctl 0 0 51 8 com.apple.netsrc kctl 0 0 52 8 com.apple.netsrc kctl 0 0 53 8 com.apple.netsrc kctl 0 0 54 8 com.apple.netsrc kctl 0 0 55 8 com.apple.netsrc kctl 0 0 56 8 com.apple.netsrc kctl 0 0 57 8 com.apple.netsrc kctl 0 0 58 8 com.apple.netsrc kctl 0 0 59 8 com.apple.netsrc kctl 0 0 60 8 com.apple.netsrc kctl 0 0 61 8 com.apple.netsrc kctl 0 0 62 8 com.apple.netsrc kctl 0 0 63 8 com.apple.netsrc kctl 0 0 64 8 com.apple.netsrc kctl 0 0 65 8 com.apple.netsrc kctl 0 0 66 8 com.apple.netsrc kctl 0 0 67 8 com.apple.netsrc kctl 0 0 68 8 com.apple.netsrc kctl 0 0 69 8 com.apple.netsrc kctl 0 0 70 8 com.apple.netsrc kctl 0 0 71 8 com.apple.netsrc kctl 0 0 72 8 com.apple.netsrc kctl 0 0 73 8 com.apple.netsrc kctl 0 0 74 8 com.apple.netsrc kctl 0 0 77 8 com.apple.netsrc kctl 0 0 1 9 com.apple.network.statistics kctl 0 0 2 9 com.apple.network.statistics kctl 0 0 3 9 com.apple.network.statistics kctl 0 0 4 9 com.apple.network.statistics kctl 0 0 1 23 com.fortinet.fct.kext.fwnke kctl 0 0 2 24 com.fortinet.kext.avkern2 jc-1.17.3/tests/fixtures/osx-10.14.6/passwd.json000066400000000000000000000350071415226333200210320ustar00rootroot00000000000000[{"username": "nobody", "password": "*", "uid": -2, "gid": -2, "comment": "Unprivileged User", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "root", "password": "*", "uid": 0, "gid": 0, "comment": "System Administrator", "home": "/var/root", "shell": "/bin/sh"}, {"username": "daemon", "password": "*", "uid": 1, "gid": 1, "comment": "System Services", "home": "/var/root", "shell": "/usr/bin/false"}, {"username": "_uucp", "password": "*", "uid": 4, "gid": 4, "comment": "Unix to Unix Copy Protocol", "home": "/var/spool/uucp", "shell": "/usr/sbin/uucico"}, {"username": "_taskgated", "password": "*", "uid": 13, "gid": 13, "comment": "Task Gate Daemon", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_networkd", "password": "*", "uid": 24, "gid": 24, "comment": "Network Services", "home": "/var/networkd", "shell": "/usr/bin/false"}, {"username": "_installassistant", "password": "*", "uid": 25, "gid": 25, "comment": "Install Assistant", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_lp", "password": "*", "uid": 26, "gid": 26, "comment": "Printing Services", "home": "/var/spool/cups", "shell": "/usr/bin/false"}, {"username": "_postfix", "password": "*", "uid": 27, "gid": 27, "comment": "Postfix Mail Server", "home": "/var/spool/postfix", "shell": "/usr/bin/false"}, {"username": "_scsd", "password": "*", "uid": 31, "gid": 31, "comment": "Service Configuration Service", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_ces", "password": "*", "uid": 32, "gid": 32, "comment": "Certificate Enrollment Service", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_appstore", "password": "*", "uid": 33, "gid": 33, "comment": "Mac App Store Service", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_mcxalr", "password": "*", "uid": 54, "gid": 54, "comment": "MCX AppLaunch", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_appleevents", "password": "*", "uid": 55, "gid": 55, "comment": "AppleEvents Daemon", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_geod", "password": "*", "uid": 56, "gid": 56, "comment": "Geo Services Daemon", "home": "/var/db/geod", "shell": "/usr/bin/false"}, {"username": "_devdocs", "password": "*", "uid": 59, "gid": 59, "comment": "Developer Documentation", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_sandbox", "password": "*", "uid": 60, "gid": 60, "comment": "Seatbelt", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_mdnsresponder", "password": "*", "uid": 65, "gid": 65, "comment": "mDNSResponder", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_ard", "password": "*", "uid": 67, "gid": 67, "comment": "Apple Remote Desktop", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_www", "password": "*", "uid": 70, "gid": 70, "comment": "World Wide Web Server", "home": "/Library/WebServer", "shell": "/usr/bin/false"}, {"username": "_eppc", "password": "*", "uid": 71, "gid": 71, "comment": "Apple Events User", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_cvs", "password": "*", "uid": 72, "gid": 72, "comment": "CVS Server", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_svn", "password": "*", "uid": 73, "gid": 73, "comment": "SVN Server", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_mysql", "password": "*", "uid": 74, "gid": 74, "comment": "MySQL Server", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_sshd", "password": "*", "uid": 75, "gid": 75, "comment": "sshd Privilege separation", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_qtss", "password": "*", "uid": 76, "gid": 76, "comment": "QuickTime Streaming Server", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_cyrus", "password": "*", "uid": 77, "gid": 6, "comment": "Cyrus Administrator", "home": "/var/imap", "shell": "/usr/bin/false"}, {"username": "_mailman", "password": "*", "uid": 78, "gid": 78, "comment": "Mailman List Server", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_appserver", "password": "*", "uid": 79, "gid": 79, "comment": "Application Server", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_clamav", "password": "*", "uid": 82, "gid": 82, "comment": "ClamAV Daemon", "home": "/var/virusmails", "shell": "/usr/bin/false"}, {"username": "_amavisd", "password": "*", "uid": 83, "gid": 83, "comment": "AMaViS Daemon", "home": "/var/virusmails", "shell": "/usr/bin/false"}, {"username": "_jabber", "password": "*", "uid": 84, "gid": 84, "comment": "Jabber XMPP Server", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_appowner", "password": "*", "uid": 87, "gid": 87, "comment": "Application Owner", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_windowserver", "password": "*", "uid": 88, "gid": 88, "comment": "WindowServer", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_spotlight", "password": "*", "uid": 89, "gid": 89, "comment": "Spotlight", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_tokend", "password": "*", "uid": 91, "gid": 91, "comment": "Token Daemon", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_securityagent", "password": "*", "uid": 92, "gid": 92, "comment": "SecurityAgent", "home": "/var/db/securityagent", "shell": "/usr/bin/false"}, {"username": "_calendar", "password": "*", "uid": 93, "gid": 93, "comment": "Calendar", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_teamsserver", "password": "*", "uid": 94, "gid": 94, "comment": "TeamsServer", "home": "/var/teamsserver", "shell": "/usr/bin/false"}, {"username": "_update_sharing", "password": "*", "uid": 95, "gid": -2, "comment": "Update Sharing", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_installer", "password": "*", "uid": 96, "gid": -2, "comment": "Installer", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_atsserver", "password": "*", "uid": 97, "gid": 97, "comment": "ATS Server", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_ftp", "password": "*", "uid": 98, "gid": -2, "comment": "FTP Daemon", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_unknown", "password": "*", "uid": 99, "gid": 99, "comment": "Unknown User", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_softwareupdate", "password": "*", "uid": 200, "gid": 200, "comment": "Software Update Service", "home": "/var/db/softwareupdate", "shell": "/usr/bin/false"}, {"username": "_coreaudiod", "password": "*", "uid": 202, "gid": 202, "comment": "Core Audio Daemon", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_screensaver", "password": "*", "uid": 203, "gid": 203, "comment": "Screensaver", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_locationd", "password": "*", "uid": 205, "gid": 205, "comment": "Location Daemon", "home": "/var/db/locationd", "shell": "/usr/bin/false"}, {"username": "_trustevaluationagent", "password": "*", "uid": 208, "gid": 208, "comment": "Trust Evaluation Agent", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_timezone", "password": "*", "uid": 210, "gid": 210, "comment": "AutoTimeZoneDaemon", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_lda", "password": "*", "uid": 211, "gid": 211, "comment": "Local Delivery Agent", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_cvmsroot", "password": "*", "uid": 212, "gid": 212, "comment": "CVMS Root", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_usbmuxd", "password": "*", "uid": 213, "gid": 213, "comment": "iPhone OS Device Helper", "home": "/var/db/lockdown", "shell": "/usr/bin/false"}, {"username": "_dovecot", "password": "*", "uid": 214, "gid": 6, "comment": "Dovecot Administrator", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_dpaudio", "password": "*", "uid": 215, "gid": 215, "comment": "DP Audio", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_postgres", "password": "*", "uid": 216, "gid": 216, "comment": "PostgreSQL Server", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_krbtgt", "password": "*", "uid": 217, "gid": -2, "comment": "Kerberos Ticket Granting Ticket", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_kadmin_admin", "password": "*", "uid": 218, "gid": -2, "comment": "Kerberos Admin Service", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_kadmin_changepw", "password": "*", "uid": 219, "gid": -2, "comment": "Kerberos Change Password Service", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_devicemgr", "password": "*", "uid": 220, "gid": 220, "comment": "Device Management Server", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_webauthserver", "password": "*", "uid": 221, "gid": 221, "comment": "Web Auth Server", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_netbios", "password": "*", "uid": 222, "gid": 222, "comment": "NetBIOS", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_warmd", "password": "*", "uid": 224, "gid": 224, "comment": "Warm Daemon", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_dovenull", "password": "*", "uid": 227, "gid": 227, "comment": "Dovecot Authentication", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_netstatistics", "password": "*", "uid": 228, "gid": 228, "comment": "Network Statistics Daemon", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_avbdeviced", "password": "*", "uid": 229, "gid": -2, "comment": "Ethernet AVB Device Daemon", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_krb_krbtgt", "password": "*", "uid": 230, "gid": -2, "comment": "Open Directory Kerberos Ticket Granting Ticket", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_krb_kadmin", "password": "*", "uid": 231, "gid": -2, "comment": "Open Directory Kerberos Admin Service", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_krb_changepw", "password": "*", "uid": 232, "gid": -2, "comment": "Open Directory Kerberos Change Password Service", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_krb_kerberos", "password": "*", "uid": 233, "gid": -2, "comment": "Open Directory Kerberos", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_krb_anonymous", "password": "*", "uid": 234, "gid": -2, "comment": "Open Directory Kerberos Anonymous", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_assetcache", "password": "*", "uid": 235, "gid": 235, "comment": "Asset Cache Service", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_coremediaiod", "password": "*", "uid": 236, "gid": 236, "comment": "Core Media IO Daemon", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_launchservicesd", "password": "*", "uid": 239, "gid": 239, "comment": "_launchservicesd", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_iconservices", "password": "*", "uid": 240, "gid": 240, "comment": "IconServices", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_distnote", "password": "*", "uid": 241, "gid": 241, "comment": "DistNote", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_nsurlsessiond", "password": "*", "uid": 242, "gid": 242, "comment": "NSURLSession Daemon", "home": "/var/db/nsurlsessiond", "shell": "/usr/bin/false"}, {"username": "_nsurlstoraged", "password": "*", "uid": 243, "gid": 243, "comment": "NSURLStorage Daemon", "home": "/var/db/nsurlstoraged", "shell": "/usr/bin/false"}, {"username": "_displaypolicyd", "password": "*", "uid": 244, "gid": 244, "comment": "Display Policy Daemon", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_astris", "password": "*", "uid": 245, "gid": 245, "comment": "Astris Services", "home": "/var/db/astris", "shell": "/usr/bin/false"}, {"username": "_krbfast", "password": "*", "uid": 246, "gid": -2, "comment": "Kerberos FAST Account", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_gamecontrollerd", "password": "*", "uid": 247, "gid": 247, "comment": "Game Controller Daemon", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_mbsetupuser", "password": "*", "uid": 248, "gid": 248, "comment": "Setup User", "home": "/var/setup", "shell": "/bin/bash"}, {"username": "_ondemand", "password": "*", "uid": 249, "gid": 249, "comment": "On Demand Resource Daemon", "home": "/var/db/ondemand", "shell": "/usr/bin/false"}, {"username": "_xserverdocs", "password": "*", "uid": 251, "gid": 251, "comment": "macOS Server Documents Service", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_wwwproxy", "password": "*", "uid": 252, "gid": 252, "comment": "WWW Proxy", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_mobileasset", "password": "*", "uid": 253, "gid": 253, "comment": "MobileAsset User", "home": "/var/ma", "shell": "/usr/bin/false"}, {"username": "_findmydevice", "password": "*", "uid": 254, "gid": 254, "comment": "Find My Device Daemon", "home": "/var/db/findmydevice", "shell": "/usr/bin/false"}, {"username": "_datadetectors", "password": "*", "uid": 257, "gid": 257, "comment": "DataDetectors", "home": "/var/db/datadetectors", "shell": "/usr/bin/false"}, {"username": "_captiveagent", "password": "*", "uid": 258, "gid": 258, "comment": "captiveagent", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_ctkd", "password": "*", "uid": 259, "gid": 259, "comment": "ctkd Account", "home": "/var/empty", "shell": "/usr/bin/false"}, {"username": "_applepay", "password": "*", "uid": 260, "gid": 260, "comment": "applepay Account", "home": "/var/db/applepay", "shell": "/usr/bin/false"}, {"username": "_hidd", "password": "*", "uid": 261, "gid": 261, "comment": "HID Service User", "home": "/var/db/hidd", "shell": "/usr/bin/false"}, {"username": "_cmiodalassistants", "password": "*", "uid": 262, "gid": 262, "comment": "CoreMedia IO Assistants User", "home": "/var/db/cmiodalassistants", "shell": "/usr/bin/false"}, {"username": "_analyticsd", "password": "*", "uid": 263, "gid": 263, "comment": "Analytics Daemon", "home": "/var/db/analyticsd", "shell": "/usr/bin/false"}, {"username": "_fpsd", "password": "*", "uid": 265, "gid": 265, "comment": "FPS Daemon", "home": "/var/db/fpsd", "shell": "/usr/bin/false"}, {"username": "_timed", "password": "*", "uid": 266, "gid": 266, "comment": "Time Sync Daemon", "home": "/var/db/timed", "shell": "/usr/bin/false"}, {"username": "_reportmemoryexception", "password": "*", "uid": 269, "gid": 269, "comment": "ReportMemoryException", "home": "/var/db/reportmemoryexception", "shell": "/usr/bin/false"}] jc-1.17.3/tests/fixtures/osx-10.14.6/passwd.out000066400000000000000000000152241415226333200206670ustar00rootroot00000000000000## # User Database # # Note that this file is consulted directly only when the system is running # in single-user mode. At other times this information is provided by # Open Directory. # # See the opendirectoryd(8) man page for additional information about # Open Directory. ## nobody:*:-2:-2:Unprivileged User:/var/empty:/usr/bin/false root:*:0:0:System Administrator:/var/root:/bin/sh daemon:*:1:1:System Services:/var/root:/usr/bin/false _uucp:*:4:4:Unix to Unix Copy Protocol:/var/spool/uucp:/usr/sbin/uucico _taskgated:*:13:13:Task Gate Daemon:/var/empty:/usr/bin/false _networkd:*:24:24:Network Services:/var/networkd:/usr/bin/false _installassistant:*:25:25:Install Assistant:/var/empty:/usr/bin/false _lp:*:26:26:Printing Services:/var/spool/cups:/usr/bin/false _postfix:*:27:27:Postfix Mail Server:/var/spool/postfix:/usr/bin/false _scsd:*:31:31:Service Configuration Service:/var/empty:/usr/bin/false _ces:*:32:32:Certificate Enrollment Service:/var/empty:/usr/bin/false _appstore:*:33:33:Mac App Store Service:/var/empty:/usr/bin/false _mcxalr:*:54:54:MCX AppLaunch:/var/empty:/usr/bin/false _appleevents:*:55:55:AppleEvents Daemon:/var/empty:/usr/bin/false _geod:*:56:56:Geo Services Daemon:/var/db/geod:/usr/bin/false _devdocs:*:59:59:Developer Documentation:/var/empty:/usr/bin/false _sandbox:*:60:60:Seatbelt:/var/empty:/usr/bin/false _mdnsresponder:*:65:65:mDNSResponder:/var/empty:/usr/bin/false _ard:*:67:67:Apple Remote Desktop:/var/empty:/usr/bin/false _www:*:70:70:World Wide Web Server:/Library/WebServer:/usr/bin/false _eppc:*:71:71:Apple Events User:/var/empty:/usr/bin/false _cvs:*:72:72:CVS Server:/var/empty:/usr/bin/false _svn:*:73:73:SVN Server:/var/empty:/usr/bin/false _mysql:*:74:74:MySQL Server:/var/empty:/usr/bin/false _sshd:*:75:75:sshd Privilege separation:/var/empty:/usr/bin/false _qtss:*:76:76:QuickTime Streaming Server:/var/empty:/usr/bin/false _cyrus:*:77:6:Cyrus Administrator:/var/imap:/usr/bin/false _mailman:*:78:78:Mailman List Server:/var/empty:/usr/bin/false _appserver:*:79:79:Application Server:/var/empty:/usr/bin/false _clamav:*:82:82:ClamAV Daemon:/var/virusmails:/usr/bin/false _amavisd:*:83:83:AMaViS Daemon:/var/virusmails:/usr/bin/false _jabber:*:84:84:Jabber XMPP Server:/var/empty:/usr/bin/false _appowner:*:87:87:Application Owner:/var/empty:/usr/bin/false _windowserver:*:88:88:WindowServer:/var/empty:/usr/bin/false _spotlight:*:89:89:Spotlight:/var/empty:/usr/bin/false _tokend:*:91:91:Token Daemon:/var/empty:/usr/bin/false _securityagent:*:92:92:SecurityAgent:/var/db/securityagent:/usr/bin/false _calendar:*:93:93:Calendar:/var/empty:/usr/bin/false _teamsserver:*:94:94:TeamsServer:/var/teamsserver:/usr/bin/false _update_sharing:*:95:-2:Update Sharing:/var/empty:/usr/bin/false _installer:*:96:-2:Installer:/var/empty:/usr/bin/false _atsserver:*:97:97:ATS Server:/var/empty:/usr/bin/false _ftp:*:98:-2:FTP Daemon:/var/empty:/usr/bin/false _unknown:*:99:99:Unknown User:/var/empty:/usr/bin/false _softwareupdate:*:200:200:Software Update Service:/var/db/softwareupdate:/usr/bin/false _coreaudiod:*:202:202:Core Audio Daemon:/var/empty:/usr/bin/false _screensaver:*:203:203:Screensaver:/var/empty:/usr/bin/false _locationd:*:205:205:Location Daemon:/var/db/locationd:/usr/bin/false _trustevaluationagent:*:208:208:Trust Evaluation Agent:/var/empty:/usr/bin/false _timezone:*:210:210:AutoTimeZoneDaemon:/var/empty:/usr/bin/false _lda:*:211:211:Local Delivery Agent:/var/empty:/usr/bin/false _cvmsroot:*:212:212:CVMS Root:/var/empty:/usr/bin/false _usbmuxd:*:213:213:iPhone OS Device Helper:/var/db/lockdown:/usr/bin/false _dovecot:*:214:6:Dovecot Administrator:/var/empty:/usr/bin/false _dpaudio:*:215:215:DP Audio:/var/empty:/usr/bin/false _postgres:*:216:216:PostgreSQL Server:/var/empty:/usr/bin/false _krbtgt:*:217:-2:Kerberos Ticket Granting Ticket:/var/empty:/usr/bin/false _kadmin_admin:*:218:-2:Kerberos Admin Service:/var/empty:/usr/bin/false _kadmin_changepw:*:219:-2:Kerberos Change Password Service:/var/empty:/usr/bin/false _devicemgr:*:220:220:Device Management Server:/var/empty:/usr/bin/false _webauthserver:*:221:221:Web Auth Server:/var/empty:/usr/bin/false _netbios:*:222:222:NetBIOS:/var/empty:/usr/bin/false _warmd:*:224:224:Warm Daemon:/var/empty:/usr/bin/false _dovenull:*:227:227:Dovecot Authentication:/var/empty:/usr/bin/false _netstatistics:*:228:228:Network Statistics Daemon:/var/empty:/usr/bin/false _avbdeviced:*:229:-2:Ethernet AVB Device Daemon:/var/empty:/usr/bin/false _krb_krbtgt:*:230:-2:Open Directory Kerberos Ticket Granting Ticket:/var/empty:/usr/bin/false _krb_kadmin:*:231:-2:Open Directory Kerberos Admin Service:/var/empty:/usr/bin/false _krb_changepw:*:232:-2:Open Directory Kerberos Change Password Service:/var/empty:/usr/bin/false _krb_kerberos:*:233:-2:Open Directory Kerberos:/var/empty:/usr/bin/false _krb_anonymous:*:234:-2:Open Directory Kerberos Anonymous:/var/empty:/usr/bin/false _assetcache:*:235:235:Asset Cache Service:/var/empty:/usr/bin/false _coremediaiod:*:236:236:Core Media IO Daemon:/var/empty:/usr/bin/false _launchservicesd:*:239:239:_launchservicesd:/var/empty:/usr/bin/false _iconservices:*:240:240:IconServices:/var/empty:/usr/bin/false _distnote:*:241:241:DistNote:/var/empty:/usr/bin/false _nsurlsessiond:*:242:242:NSURLSession Daemon:/var/db/nsurlsessiond:/usr/bin/false _nsurlstoraged:*:243:243:NSURLStorage Daemon:/var/db/nsurlstoraged:/usr/bin/false _displaypolicyd:*:244:244:Display Policy Daemon:/var/empty:/usr/bin/false _astris:*:245:245:Astris Services:/var/db/astris:/usr/bin/false _krbfast:*:246:-2:Kerberos FAST Account:/var/empty:/usr/bin/false _gamecontrollerd:*:247:247:Game Controller Daemon:/var/empty:/usr/bin/false _mbsetupuser:*:248:248:Setup User:/var/setup:/bin/bash _ondemand:*:249:249:On Demand Resource Daemon:/var/db/ondemand:/usr/bin/false _xserverdocs:*:251:251:macOS Server Documents Service:/var/empty:/usr/bin/false _wwwproxy:*:252:252:WWW Proxy:/var/empty:/usr/bin/false _mobileasset:*:253:253:MobileAsset User:/var/ma:/usr/bin/false _findmydevice:*:254:254:Find My Device Daemon:/var/db/findmydevice:/usr/bin/false _datadetectors:*:257:257:DataDetectors:/var/db/datadetectors:/usr/bin/false _captiveagent:*:258:258:captiveagent:/var/empty:/usr/bin/false _ctkd:*:259:259:ctkd Account:/var/empty:/usr/bin/false _applepay:*:260:260:applepay Account:/var/db/applepay:/usr/bin/false _hidd:*:261:261:HID Service User:/var/db/hidd:/usr/bin/false _cmiodalassistants:*:262:262:CoreMedia IO Assistants User:/var/db/cmiodalassistants:/usr/bin/false _analyticsd:*:263:263:Analytics Daemon:/var/db/analyticsd:/usr/bin/false _fpsd:*:265:265:FPS Daemon:/var/db/fpsd:/usr/bin/false _timed:*:266:266:Time Sync Daemon:/var/db/timed:/usr/bin/false _reportmemoryexception:*:269:269:ReportMemoryException:/var/db/reportmemoryexception:/usr/bin/false jc-1.17.3/tests/fixtures/osx-10.14.6/ping-hostname-p-streaming.json000066400000000000000000000014351415226333200245240ustar00rootroot00000000000000[{"type":"reply","destination_ip":"151.101.1.67","sent_bytes":56,"pattern":"0xff","response_bytes":64,"response_ip":"151.101.1.67","icmp_seq":0,"ttl":59,"time_ms":89.422},{"type":"reply","destination_ip":"151.101.1.67","sent_bytes":56,"pattern":"0xff","response_bytes":64,"response_ip":"151.101.1.67","icmp_seq":1,"ttl":59,"time_ms":116.712},{"type":"reply","destination_ip":"151.101.1.67","sent_bytes":56,"pattern":"0xff","response_bytes":64,"response_ip":"151.101.1.67","icmp_seq":2,"ttl":59,"time_ms":147.964},{"type":"summary","destination_ip":"151.101.1.67","sent_bytes":56,"pattern":"0xff","packets_transmitted":3,"packets_received":3,"packet_loss_percent":0.0,"duplicates":0,"round_trip_ms_min":89.422,"round_trip_ms_avg":118.033,"round_trip_ms_max":147.964,"round_trip_ms_stddev":23.918}] jc-1.17.3/tests/fixtures/osx-10.14.6/ping-hostname-p.json000066400000000000000000000013121415226333200225270ustar00rootroot00000000000000{"destination_ip": "151.101.1.67", "data_bytes": 56, "pattern": "0xff", "destination": "cnn.com", "packets_transmitted": 3, "packets_received": 3, "packet_loss_percent": 0.0, "duplicates": 0, "round_trip_ms_min": 89.422, "round_trip_ms_avg": 118.033, "round_trip_ms_max": 147.964, "round_trip_ms_stddev": 23.918, "responses": [{"type": "reply", "bytes": 64, "response_ip": "151.101.1.67", "icmp_seq": 0, "ttl": 59, "time_ms": 89.422, "duplicate": false}, {"type": "reply", "bytes": 64, "response_ip": "151.101.1.67", "icmp_seq": 1, "ttl": 59, "time_ms": 116.712, "duplicate": false}, {"type": "reply", "bytes": 64, "response_ip": "151.101.1.67", "icmp_seq": 2, "ttl": 59, "time_ms": 147.964, "duplicate": false}]} jc-1.17.3/tests/fixtures/osx-10.14.6/ping-hostname-p.out000066400000000000000000000006201415226333200223660ustar00rootroot00000000000000PATTERN: 0xff PING cnn.com (151.101.1.67): 56 data bytes 64 bytes from 151.101.1.67: icmp_seq=0 ttl=59 time=89.422 ms 64 bytes from 151.101.1.67: icmp_seq=1 ttl=59 time=116.712 ms 64 bytes from 151.101.1.67: icmp_seq=2 ttl=59 time=147.964 ms --- cnn.com ping statistics --- 3 packets transmitted, 3 packets received, 0.0% packet loss round-trip min/avg/max/stddev = 89.422/118.033/147.964/23.918 ms jc-1.17.3/tests/fixtures/osx-10.14.6/ping-hostname-s-streaming.json000066400000000000000000000014351415226333200245270ustar00rootroot00000000000000[{"type":"reply","destination_ip":"151.101.1.67","sent_bytes":1400,"pattern":null,"response_bytes":1408,"response_ip":"151.101.1.67","icmp_seq":0,"ttl":59,"time_ms":39.048},{"type":"reply","destination_ip":"151.101.1.67","sent_bytes":1400,"pattern":null,"response_bytes":1408,"response_ip":"151.101.1.67","icmp_seq":1,"ttl":59,"time_ms":29.954},{"type":"reply","destination_ip":"151.101.1.67","sent_bytes":1400,"pattern":null,"response_bytes":1408,"response_ip":"151.101.1.67","icmp_seq":2,"ttl":59,"time_ms":50.674},{"type":"summary","destination_ip":"151.101.1.67","sent_bytes":1400,"pattern":null,"packets_transmitted":3,"packets_received":3,"packet_loss_percent":0.0,"duplicates":0,"round_trip_ms_min":29.954,"round_trip_ms_avg":39.892,"round_trip_ms_max":50.674,"round_trip_ms_stddev":8.48}] jc-1.17.3/tests/fixtures/osx-10.14.6/ping-hostname-s.json000066400000000000000000000013121415226333200225320ustar00rootroot00000000000000{"destination_ip": "151.101.1.67", "data_bytes": 1400, "pattern": null, "destination": "cnn.com", "packets_transmitted": 3, "packets_received": 3, "packet_loss_percent": 0.0, "duplicates": 0, "round_trip_ms_min": 29.954, "round_trip_ms_avg": 39.892, "round_trip_ms_max": 50.674, "round_trip_ms_stddev": 8.48, "responses": [{"type": "reply", "bytes": 1408, "response_ip": "151.101.1.67", "icmp_seq": 0, "ttl": 59, "time_ms": 39.048, "duplicate": false}, {"type": "reply", "bytes": 1408, "response_ip": "151.101.1.67", "icmp_seq": 1, "ttl": 59, "time_ms": 29.954, "duplicate": false}, {"type": "reply", "bytes": 1408, "response_ip": "151.101.1.67", "icmp_seq": 2, "ttl": 59, "time_ms": 50.674, "duplicate": false}]} jc-1.17.3/tests/fixtures/osx-10.14.6/ping-hostname-s.out000066400000000000000000000006051415226333200223740ustar00rootroot00000000000000PING cnn.com (151.101.1.67): 1400 data bytes 1408 bytes from 151.101.1.67: icmp_seq=0 ttl=59 time=39.048 ms 1408 bytes from 151.101.1.67: icmp_seq=1 ttl=59 time=29.954 ms 1408 bytes from 151.101.1.67: icmp_seq=2 ttl=59 time=50.674 ms --- cnn.com ping statistics --- 3 packets transmitted, 3 packets received, 0.0% packet loss round-trip min/avg/max/stddev = 29.954/39.892/50.674/8.480 ms jc-1.17.3/tests/fixtures/osx-10.14.6/ping-hostname-streaming.json000066400000000000000000000014171415226333200242670ustar00rootroot00000000000000[{"type":"reply","destination_ip":"151.101.1.67","sent_bytes":56,"pattern":null,"response_bytes":64,"response_ip":"151.101.1.67","icmp_seq":0,"ttl":59,"time_ms":28.042},{"type":"reply","destination_ip":"151.101.1.67","sent_bytes":56,"pattern":null,"response_bytes":64,"response_ip":"151.101.1.67","icmp_seq":1,"ttl":59,"time_ms":34.786},{"type":"reply","destination_ip":"151.101.1.67","sent_bytes":56,"pattern":null,"response_bytes":64,"response_ip":"151.101.1.67","icmp_seq":2,"ttl":59,"time_ms":41.182},{"type":"summary","destination_ip":"151.101.1.67","sent_bytes":56,"pattern":null,"packets_transmitted":3,"packets_received":3,"packet_loss_percent":0.0,"duplicates":0,"round_trip_ms_min":28.042,"round_trip_ms_avg":34.67,"round_trip_ms_max":41.182,"round_trip_ms_stddev":5.365}] jc-1.17.3/tests/fixtures/osx-10.14.6/ping-hostname.json000066400000000000000000000013021415226333200222710ustar00rootroot00000000000000{"destination_ip": "151.101.1.67", "data_bytes": 56, "pattern": null, "destination": "cnn.com", "packets_transmitted": 3, "packets_received": 3, "packet_loss_percent": 0.0, "duplicates": 0, "round_trip_ms_min": 28.042, "round_trip_ms_avg": 34.67, "round_trip_ms_max": 41.182, "round_trip_ms_stddev": 5.365, "responses": [{"type": "reply", "bytes": 64, "response_ip": "151.101.1.67", "icmp_seq": 0, "ttl": 59, "time_ms": 28.042, "duplicate": false}, {"type": "reply", "bytes": 64, "response_ip": "151.101.1.67", "icmp_seq": 1, "ttl": 59, "time_ms": 34.786, "duplicate": false}, {"type": "reply", "bytes": 64, "response_ip": "151.101.1.67", "icmp_seq": 2, "ttl": 59, "time_ms": 41.182, "duplicate": false}]} jc-1.17.3/tests/fixtures/osx-10.14.6/ping-hostname.out000066400000000000000000000005751415226333200221420ustar00rootroot00000000000000PING cnn.com (151.101.1.67): 56 data bytes 64 bytes from 151.101.1.67: icmp_seq=0 ttl=59 time=28.042 ms 64 bytes from 151.101.1.67: icmp_seq=1 ttl=59 time=34.786 ms 64 bytes from 151.101.1.67: icmp_seq=2 ttl=59 time=41.182 ms --- cnn.com ping statistics --- 3 packets transmitted, 3 packets received, 0.0% packet loss round-trip min/avg/max/stddev = 28.042/34.670/41.182/5.365 ms jc-1.17.3/tests/fixtures/osx-10.14.6/ping-ip-dup-streaming.json000066400000000000000000000054161415226333200236520ustar00rootroot00000000000000[{"type":"reply","destination_ip":"192.168.1.255","sent_bytes":56,"pattern":null,"response_bytes":64,"response_ip":"192.168.1.221","icmp_seq":0,"ttl":64,"time_ms":0.235},{"type":"reply","destination_ip":"192.168.1.255","sent_bytes":56,"pattern":null,"response_bytes":64,"response_ip":"192.168.1.88","icmp_seq":0,"ttl":64,"time_ms":4.224},{"type":"reply","destination_ip":"192.168.1.255","sent_bytes":56,"pattern":null,"response_bytes":64,"response_ip":"192.168.1.89","icmp_seq":0,"ttl":64,"time_ms":8.37},{"type":"reply","destination_ip":"192.168.1.255","sent_bytes":56,"pattern":null,"response_bytes":64,"response_ip":"192.168.1.72","icmp_seq":0,"ttl":64,"time_ms":62.635},{"type":"reply","destination_ip":"192.168.1.255","sent_bytes":56,"pattern":null,"response_bytes":64,"response_ip":"192.168.1.246","icmp_seq":0,"ttl":255,"time_ms":62.805},{"type":"reply","destination_ip":"192.168.1.255","sent_bytes":56,"pattern":null,"response_bytes":64,"response_ip":"192.168.1.78","icmp_seq":0,"ttl":128,"time_ms":63.803},{"type":"reply","destination_ip":"192.168.1.255","sent_bytes":56,"pattern":null,"response_bytes":64,"response_ip":"192.168.1.251","icmp_seq":0,"ttl":64,"time_ms":63.857},{"type":"reply","destination_ip":"192.168.1.255","sent_bytes":56,"pattern":null,"response_bytes":64,"response_ip":"192.168.1.217","icmp_seq":0,"ttl":255,"time_ms":672.974},{"type":"reply","destination_ip":"192.168.1.255","sent_bytes":56,"pattern":null,"response_bytes":64,"response_ip":"192.168.1.186","icmp_seq":0,"ttl":64,"time_ms":673.123},{"type":"reply","destination_ip":"192.168.1.255","sent_bytes":56,"pattern":null,"response_bytes":64,"response_ip":"192.168.1.75","icmp_seq":0,"ttl":64,"time_ms":673.358},{"type":"reply","destination_ip":"192.168.1.255","sent_bytes":56,"pattern":null,"response_bytes":64,"response_ip":"192.168.1.221","icmp_seq":1,"ttl":64,"time_ms":0.291},{"type":"reply","destination_ip":"192.168.1.255","sent_bytes":56,"pattern":null,"response_bytes":64,"response_ip":"192.168.1.78","icmp_seq":1,"ttl":128,"time_ms":7.898},{"type":"reply","destination_ip":"192.168.1.255","sent_bytes":56,"pattern":null,"response_bytes":64,"response_ip":"192.168.1.88","icmp_seq":1,"ttl":64,"time_ms":7.927},{"type":"reply","destination_ip":"192.168.1.255","sent_bytes":56,"pattern":null,"response_bytes":64,"response_ip":"192.168.1.89","icmp_seq":1,"ttl":64,"time_ms":10.077},{"type":"reply","destination_ip":"192.168.1.255","sent_bytes":56,"pattern":null,"response_bytes":64,"response_ip":"192.168.1.250","icmp_seq":0,"ttl":64,"time_ms":1084.262},{"type":"summary","destination_ip":"192.168.1.255","sent_bytes":56,"pattern":null,"packets_transmitted":2,"packets_received":2,"packet_loss_percent":0.0,"duplicates":13,"round_trip_ms_min":0.235,"round_trip_ms_avg":226.389,"round_trip_ms_max":1084.262,"round_trip_ms_stddev":344.729}] jc-1.17.3/tests/fixtures/osx-10.14.6/ping-ip-dup.json000066400000000000000000000043131415226333200216560ustar00rootroot00000000000000{"destination_ip": "192.168.1.255", "data_bytes": 56, "pattern": null, "destination": "192.168.1.255", "packets_transmitted": 2, "packets_received": 2, "packet_loss_percent": 0.0, "duplicates": 13, "round_trip_ms_min": 0.235, "round_trip_ms_avg": 226.389, "round_trip_ms_max": 1084.262, "round_trip_ms_stddev": 344.729, "responses": [{"type": "reply", "bytes": 64, "response_ip": "192.168.1.221", "icmp_seq": 0, "ttl": 64, "time_ms": 0.235, "duplicate": false}, {"type": "reply", "bytes": 64, "response_ip": "192.168.1.88", "icmp_seq": 0, "ttl": 64, "time_ms": 4.224, "duplicate": true}, {"type": "reply", "bytes": 64, "response_ip": "192.168.1.89", "icmp_seq": 0, "ttl": 64, "time_ms": 8.37, "duplicate": true}, {"type": "reply", "bytes": 64, "response_ip": "192.168.1.72", "icmp_seq": 0, "ttl": 64, "time_ms": 62.635, "duplicate": true}, {"type": "reply", "bytes": 64, "response_ip": "192.168.1.246", "icmp_seq": 0, "ttl": 255, "time_ms": 62.805, "duplicate": true}, {"type": "reply", "bytes": 64, "response_ip": "192.168.1.78", "icmp_seq": 0, "ttl": 128, "time_ms": 63.803, "duplicate": true}, {"type": "reply", "bytes": 64, "response_ip": "192.168.1.251", "icmp_seq": 0, "ttl": 64, "time_ms": 63.857, "duplicate": true}, {"type": "reply", "bytes": 64, "response_ip": "192.168.1.217", "icmp_seq": 0, "ttl": 255, "time_ms": 672.974, "duplicate": true}, {"type": "reply", "bytes": 64, "response_ip": "192.168.1.186", "icmp_seq": 0, "ttl": 64, "time_ms": 673.123, "duplicate": true}, {"type": "reply", "bytes": 64, "response_ip": "192.168.1.75", "icmp_seq": 0, "ttl": 64, "time_ms": 673.358, "duplicate": true}, {"type": "reply", "bytes": 64, "response_ip": "192.168.1.221", "icmp_seq": 1, "ttl": 64, "time_ms": 0.291, "duplicate": false}, {"type": "reply", "bytes": 64, "response_ip": "192.168.1.78", "icmp_seq": 1, "ttl": 128, "time_ms": 7.898, "duplicate": true}, {"type": "reply", "bytes": 64, "response_ip": "192.168.1.88", "icmp_seq": 1, "ttl": 64, "time_ms": 7.927, "duplicate": true}, {"type": "reply", "bytes": 64, "response_ip": "192.168.1.89", "icmp_seq": 1, "ttl": 64, "time_ms": 10.077, "duplicate": true}, {"type": "reply", "bytes": 64, "response_ip": "192.168.1.250", "icmp_seq": 0, "ttl": 64, "time_ms": 1084.262, "duplicate": true}]} jc-1.17.3/tests/fixtures/osx-10.14.6/ping-ip-dup.out000066400000000000000000000022041415226333200215110ustar00rootroot00000000000000PING 192.168.1.255 (192.168.1.255): 56 data bytes 64 bytes from 192.168.1.221: icmp_seq=0 ttl=64 time=0.235 ms 64 bytes from 192.168.1.88: icmp_seq=0 ttl=64 time=4.224 ms 64 bytes from 192.168.1.89: icmp_seq=0 ttl=64 time=8.370 ms 64 bytes from 192.168.1.72: icmp_seq=0 ttl=64 time=62.635 ms 64 bytes from 192.168.1.246: icmp_seq=0 ttl=255 time=62.805 ms 64 bytes from 192.168.1.78: icmp_seq=0 ttl=128 time=63.803 ms 64 bytes from 192.168.1.251: icmp_seq=0 ttl=64 time=63.857 ms 64 bytes from 192.168.1.217: icmp_seq=0 ttl=255 time=672.974 ms 64 bytes from 192.168.1.186: icmp_seq=0 ttl=64 time=673.123 ms 64 bytes from 192.168.1.75: icmp_seq=0 ttl=64 time=673.358 ms 64 bytes from 192.168.1.221: icmp_seq=1 ttl=64 time=0.291 ms 64 bytes from 192.168.1.78: icmp_seq=1 ttl=128 time=7.898 ms 64 bytes from 192.168.1.88: icmp_seq=1 ttl=64 time=7.927 ms 64 bytes from 192.168.1.89: icmp_seq=1 ttl=64 time=10.077 ms 64 bytes from 192.168.1.250: icmp_seq=0 ttl=64 time=1084.262 ms --- 192.168.1.255 ping statistics --- 2 packets transmitted, 2 packets received, +13 duplicates, 0.0% packet loss round-trip min/avg/max/stddev = 0.235/226.389/1084.262/344.729 ms jc-1.17.3/tests/fixtures/osx-10.14.6/ping-ip-p-streaming.json000066400000000000000000000013731415226333200233170ustar00rootroot00000000000000[{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":"0xff","response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":0,"ttl":64,"time_ms":0.05},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":"0xff","response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":1,"ttl":64,"time_ms":0.104},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":"0xff","response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":2,"ttl":64,"time_ms":0.079},{"type":"summary","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":"0xff","packets_transmitted":3,"packets_received":3,"packet_loss_percent":0.0,"duplicates":0,"round_trip_ms_min":0.05,"round_trip_ms_avg":0.078,"round_trip_ms_max":0.104,"round_trip_ms_stddev":0.022}] jc-1.17.3/tests/fixtures/osx-10.14.6/ping-ip-p.json000066400000000000000000000012631415226333200213260ustar00rootroot00000000000000{"destination_ip": "127.0.0.1", "data_bytes": 56, "pattern": "0xff", "destination": "127.0.0.1", "packets_transmitted": 3, "packets_received": 3, "packet_loss_percent": 0.0, "duplicates": 0, "round_trip_ms_min": 0.05, "round_trip_ms_avg": 0.078, "round_trip_ms_max": 0.104, "round_trip_ms_stddev": 0.022, "responses": [{"type": "reply", "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 0, "ttl": 64, "time_ms": 0.05, "duplicate": false}, {"type": "reply", "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 1, "ttl": 64, "time_ms": 0.104, "duplicate": false}, {"type": "reply", "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 2, "ttl": 64, "time_ms": 0.079, "duplicate": false}]} jc-1.17.3/tests/fixtures/osx-10.14.6/ping-ip-p.out000066400000000000000000000005751415226333200211710ustar00rootroot00000000000000PATTERN: 0xff PING 127.0.0.1 (127.0.0.1): 56 data bytes 64 bytes from 127.0.0.1: icmp_seq=0 ttl=64 time=0.050 ms 64 bytes from 127.0.0.1: icmp_seq=1 ttl=64 time=0.104 ms 64 bytes from 127.0.0.1: icmp_seq=2 ttl=64 time=0.079 ms --- 127.0.0.1 ping statistics --- 3 packets transmitted, 3 packets received, 0.0% packet loss round-trip min/avg/max/stddev = 0.050/0.078/0.104/0.022 ms jc-1.17.3/tests/fixtures/osx-10.14.6/ping-ip-s-streaming.json000066400000000000000000000014031415226333200233140ustar00rootroot00000000000000[{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":1400,"pattern":null,"response_bytes":1408,"response_ip":"127.0.0.1","icmp_seq":0,"ttl":64,"time_ms":0.053},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":1400,"pattern":null,"response_bytes":1408,"response_ip":"127.0.0.1","icmp_seq":1,"ttl":64,"time_ms":0.108},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":1400,"pattern":null,"response_bytes":1408,"response_ip":"127.0.0.1","icmp_seq":2,"ttl":64,"time_ms":0.089},{"type":"summary","destination_ip":"127.0.0.1","sent_bytes":1400,"pattern":null,"packets_transmitted":3,"packets_received":3,"packet_loss_percent":0.0,"duplicates":0,"round_trip_ms_min":0.053,"round_trip_ms_avg":0.083,"round_trip_ms_max":0.108,"round_trip_ms_stddev":0.023}] jc-1.17.3/tests/fixtures/osx-10.14.6/ping-ip-s.json000066400000000000000000000012731415226333200213320ustar00rootroot00000000000000{"destination_ip": "127.0.0.1", "data_bytes": 1400, "pattern": null, "destination": "127.0.0.1", "packets_transmitted": 3, "packets_received": 3, "packet_loss_percent": 0.0, "duplicates": 0, "round_trip_ms_min": 0.053, "round_trip_ms_avg": 0.083, "round_trip_ms_max": 0.108, "round_trip_ms_stddev": 0.023, "responses": [{"type": "reply", "bytes": 1408, "response_ip": "127.0.0.1", "icmp_seq": 0, "ttl": 64, "time_ms": 0.053, "duplicate": false}, {"type": "reply", "bytes": 1408, "response_ip": "127.0.0.1", "icmp_seq": 1, "ttl": 64, "time_ms": 0.108, "duplicate": false}, {"type": "reply", "bytes": 1408, "response_ip": "127.0.0.1", "icmp_seq": 2, "ttl": 64, "time_ms": 0.089, "duplicate": false}]} jc-1.17.3/tests/fixtures/osx-10.14.6/ping-ip-s.out000066400000000000000000000005671415226333200211750ustar00rootroot00000000000000PING 127.0.0.1 (127.0.0.1): 1400 data bytes 1408 bytes from 127.0.0.1: icmp_seq=0 ttl=64 time=0.053 ms 1408 bytes from 127.0.0.1: icmp_seq=1 ttl=64 time=0.108 ms 1408 bytes from 127.0.0.1: icmp_seq=2 ttl=64 time=0.089 ms --- 127.0.0.1 ping statistics --- 3 packets transmitted, 3 packets received, 0.0% packet loss round-trip min/avg/max/stddev = 0.053/0.083/0.108/0.023 ms jc-1.17.3/tests/fixtures/osx-10.14.6/ping-ip-streaming.json000066400000000000000000000013631415226333200230610ustar00rootroot00000000000000[{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":0,"ttl":64,"time_ms":0.052},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":1,"ttl":64,"time_ms":0.095},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":2,"ttl":64,"time_ms":0.05},{"type":"summary","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"packets_transmitted":3,"packets_received":3,"packet_loss_percent":0.0,"duplicates":0,"round_trip_ms_min":0.05,"round_trip_ms_avg":0.066,"round_trip_ms_max":0.095,"round_trip_ms_stddev":0.021}] jc-1.17.3/tests/fixtures/osx-10.14.6/ping-ip-unknown-errors.json000066400000000000000000000031571415226333200241040ustar00rootroot00000000000000{"destination_ip":"192.168.1.220","data_bytes":56,"pattern":null,"destination":"192.168.1.220","packets_transmitted":8,"packets_received":0,"packet_loss_percent":100.0,"duplicates":0,"responses":[{"type":"timeout","icmp_seq":0,"duplicate":false},{"type":"timeout","icmp_seq":1,"duplicate":false},{"type":"unparsable_line","unparsed_line":"92 bytes from fgt1.attlocal.net (192.168.1.220) Destination Network Unreachable"},{"type":"destination_host_unreachable","bytes":92,"response_ip":"192.168.1.220","vr":4,"hl":5,"tos":0,"len":21504,"id":11887,"flg":0,"off":0,"ttl":63,"pro":1,"cks":51248,"src":"192.168.1.221","dst":"192.168.1.220"},{"type":"unparsable_line","unparsed_line":"92 bytes from fgt1.attlocal.net (192.168.1.220) Weird error message"},{"type":"timeout","icmp_seq":2,"duplicate":false},{"type":"timeout","icmp_seq":3,"duplicate":false},{"type":"timeout","icmp_seq":4,"duplicate":false},{"type":"destination_host_unreachable","bytes":92,"response_ip":"192.168.1.220","vr":4,"hl":5,"tos":0,"len":21504,"id":40674,"flg":0,"off":0,"ttl":63,"pro":1,"cks":22461,"src":"192.168.1.221","dst":"192.168.1.220"},{"type":"destination_host_unreachable","bytes":92,"response_ip":"192.168.1.220","vr":4,"hl":5,"tos":0,"len":21504,"id":31035,"flg":0,"off":0,"ttl":63,"pro":1,"cks":32100,"src":"192.168.1.221","dst":"192.168.1.220"},{"type":"destination_host_unreachable","bytes":92,"response_ip":"192.168.1.220","vr":4,"hl":5,"tos":0,"len":21504,"id":53536,"flg":0,"off":0,"ttl":63,"pro":1,"cks":9599,"src":"192.168.1.221","dst":"192.168.1.220"},{"type":"timeout","icmp_seq":5,"duplicate":false},{"type":"timeout","icmp_seq":6,"duplicate":false}]} jc-1.17.3/tests/fixtures/osx-10.14.6/ping-ip-unknown-errors.out000066400000000000000000000031341415226333200237350ustar00rootroot00000000000000PING 192.168.1.220 (192.168.1.220): 56 data bytes Request timeout for icmp_seq 0 Request timeout for icmp_seq 1 92 bytes from fgt1.attlocal.net (192.168.1.220): Destination Network Unreachable Vr HL TOS Len ID Flg off TTL Pro cks Src Dst 4 5 00 5400 567b 0 0000 3f 01 a024 192.168.1.221 192.168.1.220 92 bytes from fgt1.attlocal.net (192.168.1.220): Destination Host Unreachable Vr HL TOS Len ID Flg off TTL Pro cks Src Dst 4 5 00 5400 2e6f 0 0000 3f 01 c830 192.168.1.221 192.168.1.220 92 bytes from fgt1.attlocal.net (192.168.1.220): Weird error message Vr HL TOS Len ID Flg off TTL Pro cks Src Dst 4 5 00 5400 a1ed 0 0000 3f 01 54b2 192.168.1.221 192.168.1.220 Request timeout for icmp_seq 2 Request timeout for icmp_seq 3 Request timeout for icmp_seq 4 92 bytes from fgt1.attlocal.net (192.168.1.220): Destination Host Unreachable Vr HL TOS Len ID Flg off TTL Pro cks Src Dst 4 5 00 5400 9ee2 0 0000 3f 01 57bd 192.168.1.221 192.168.1.220 92 bytes from fgt1.attlocal.net (192.168.1.220): Destination Host Unreachable Vr HL TOS Len ID Flg off TTL Pro cks Src Dst 4 5 00 5400 793b 0 0000 3f 01 7d64 192.168.1.221 192.168.1.220 92 bytes from fgt1.attlocal.net (192.168.1.220): Destination Host Unreachable Vr HL TOS Len ID Flg off TTL Pro cks Src Dst 4 5 00 5400 d120 0 0000 3f 01 257f 192.168.1.221 192.168.1.220 Request timeout for icmp_seq 5 Request timeout for icmp_seq 6 --- 192.168.1.220 ping statistics --- 8 packets transmitted, 0 packets received, 100.0% packet loss jc-1.17.3/tests/fixtures/osx-10.14.6/ping-ip-unreachable-streaming.json000066400000000000000000000025321415226333200253270ustar00rootroot00000000000000[{"type":"timeout","destination_ip":"192.168.1.220","sent_bytes":56,"pattern":null,"icmp_seq":0},{"type":"timeout","destination_ip":"192.168.1.220","sent_bytes":56,"pattern":null,"icmp_seq":1},{"type":"destination_host_unreachable","bytes":"92","destination_ip":"192.168.1.220","response_ip":"192.168.1.220"},{"type":"destination_host_unreachable","bytes":"92","destination_ip":"192.168.1.220","response_ip":"192.168.1.220"},{"type":"destination_host_unreachable","bytes":"92","destination_ip":"192.168.1.220","response_ip":"192.168.1.220"},{"type":"timeout","destination_ip":"192.168.1.220","sent_bytes":56,"pattern":null,"icmp_seq":2},{"type":"timeout","destination_ip":"192.168.1.220","sent_bytes":56,"pattern":null,"icmp_seq":3},{"type":"timeout","destination_ip":"192.168.1.220","sent_bytes":56,"pattern":null,"icmp_seq":4},{"type":"destination_host_unreachable","bytes":"92","destination_ip":"192.168.1.220","response_ip":"192.168.1.220"},{"type":"destination_host_unreachable","bytes":"92","destination_ip":"192.168.1.220","response_ip":"192.168.1.220"},{"type":"destination_host_unreachable","bytes":"92","destination_ip":"192.168.1.220","response_ip":"192.168.1.220"},{"type":"timeout","destination_ip":"192.168.1.220","sent_bytes":56,"pattern":null,"icmp_seq":5},{"type":"timeout","destination_ip":"192.168.1.220","sent_bytes":56,"pattern":null,"icmp_seq":6}] jc-1.17.3/tests/fixtures/osx-10.14.6/ping-ip-unreachable.json000066400000000000000000000034551415226333200233450ustar00rootroot00000000000000{"destination_ip":"192.168.1.220","data_bytes":56,"pattern":null,"destination":"192.168.1.220","packets_transmitted":8,"packets_received":0,"packet_loss_percent":100.0,"duplicates":0,"responses":[{"type":"timeout","icmp_seq":0,"duplicate":false},{"type":"timeout","icmp_seq":1,"duplicate":false},{"type":"destination_host_unreachable","bytes":92,"response_ip":"192.168.1.220","vr":4,"hl":5,"tos":0,"len":21504,"id":22139,"flg":0,"off":0,"ttl":63,"pro":1,"cks":40996,"src":"192.168.1.221","dst":"192.168.1.220"},{"type":"destination_host_unreachable","bytes":92,"response_ip":"192.168.1.220","vr":4,"hl":5,"tos":0,"len":21504,"id":11887,"flg":0,"off":0,"ttl":63,"pro":1,"cks":51248,"src":"192.168.1.221","dst":"192.168.1.220"},{"type":"destination_host_unreachable","bytes":92,"response_ip":"192.168.1.220","vr":4,"hl":5,"tos":0,"len":21504,"id":41453,"flg":0,"off":0,"ttl":63,"pro":1,"cks":21682,"src":"192.168.1.221","dst":"192.168.1.220"},{"type":"timeout","icmp_seq":2,"duplicate":false},{"type":"timeout","icmp_seq":3,"duplicate":false},{"type":"timeout","icmp_seq":4,"duplicate":false},{"type":"destination_host_unreachable","bytes":92,"response_ip":"192.168.1.220","vr":4,"hl":5,"tos":0,"len":21504,"id":40674,"flg":0,"off":0,"ttl":63,"pro":1,"cks":22461,"src":"192.168.1.221","dst":"192.168.1.220"},{"type":"destination_host_unreachable","bytes":92,"response_ip":"192.168.1.220","vr":4,"hl":5,"tos":0,"len":21504,"id":31035,"flg":0,"off":0,"ttl":63,"pro":1,"cks":32100,"src":"192.168.1.221","dst":"192.168.1.220"},{"type":"destination_host_unreachable","bytes":92,"response_ip":"192.168.1.220","vr":4,"hl":5,"tos":0,"len":21504,"id":53536,"flg":0,"off":0,"ttl":63,"pro":1,"cks":9599,"src":"192.168.1.221","dst":"192.168.1.220"},{"type":"timeout","icmp_seq":5,"duplicate":false},{"type":"timeout","icmp_seq":6,"duplicate":false}]} jc-1.17.3/tests/fixtures/osx-10.14.6/ping-ip-unreachable.out000066400000000000000000000031421415226333200231740ustar00rootroot00000000000000PING 192.168.1.220 (192.168.1.220): 56 data bytes Request timeout for icmp_seq 0 Request timeout for icmp_seq 1 92 bytes from fgt1.attlocal.net (192.168.1.220): Destination Host Unreachable Vr HL TOS Len ID Flg off TTL Pro cks Src Dst 4 5 00 5400 567b 0 0000 3f 01 a024 192.168.1.221 192.168.1.220 92 bytes from fgt1.attlocal.net (192.168.1.220): Destination Host Unreachable Vr HL TOS Len ID Flg off TTL Pro cks Src Dst 4 5 00 5400 2e6f 0 0000 3f 01 c830 192.168.1.221 192.168.1.220 92 bytes from fgt1.attlocal.net (192.168.1.220): Destination Host Unreachable Vr HL TOS Len ID Flg off TTL Pro cks Src Dst 4 5 00 5400 a1ed 0 0000 3f 01 54b2 192.168.1.221 192.168.1.220 Request timeout for icmp_seq 2 Request timeout for icmp_seq 3 Request timeout for icmp_seq 4 92 bytes from fgt1.attlocal.net (192.168.1.220): Destination Host Unreachable Vr HL TOS Len ID Flg off TTL Pro cks Src Dst 4 5 00 5400 9ee2 0 0000 3f 01 57bd 192.168.1.221 192.168.1.220 92 bytes from fgt1.attlocal.net (192.168.1.220): Destination Host Unreachable Vr HL TOS Len ID Flg off TTL Pro cks Src Dst 4 5 00 5400 793b 0 0000 3f 01 7d64 192.168.1.221 192.168.1.220 92 bytes from fgt1.attlocal.net (192.168.1.220): Destination Host Unreachable Vr HL TOS Len ID Flg off TTL Pro cks Src Dst 4 5 00 5400 d120 0 0000 3f 01 257f 192.168.1.221 192.168.1.220 Request timeout for icmp_seq 5 Request timeout for icmp_seq 6 --- 192.168.1.220 ping statistics --- 8 packets transmitted, 0 packets received, 100.0% packet loss jc-1.17.3/tests/fixtures/osx-10.14.6/ping-ip.json000066400000000000000000000012611415226333200210670ustar00rootroot00000000000000{"destination_ip": "127.0.0.1", "data_bytes": 56, "pattern": null, "destination": "127.0.0.1", "packets_transmitted": 3, "packets_received": 3, "packet_loss_percent": 0.0, "duplicates": 0, "round_trip_ms_min": 0.05, "round_trip_ms_avg": 0.066, "round_trip_ms_max": 0.095, "round_trip_ms_stddev": 0.021, "responses": [{"type": "reply", "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 0, "ttl": 64, "time_ms": 0.052, "duplicate": false}, {"type": "reply", "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 1, "ttl": 64, "time_ms": 0.095, "duplicate": false}, {"type": "reply", "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 2, "ttl": 64, "time_ms": 0.05, "duplicate": false}]} jc-1.17.3/tests/fixtures/osx-10.14.6/ping-ip.out000066400000000000000000000005571415226333200207340ustar00rootroot00000000000000PING 127.0.0.1 (127.0.0.1): 56 data bytes 64 bytes from 127.0.0.1: icmp_seq=0 ttl=64 time=0.052 ms 64 bytes from 127.0.0.1: icmp_seq=1 ttl=64 time=0.095 ms 64 bytes from 127.0.0.1: icmp_seq=2 ttl=64 time=0.050 ms --- 127.0.0.1 ping statistics --- 3 packets transmitted, 3 packets received, 0.0% packet loss round-trip min/avg/max/stddev = 0.050/0.066/0.095/0.021 ms jc-1.17.3/tests/fixtures/osx-10.14.6/ping6-hostname-p-streaming.json000066400000000000000000000014531415226333200246120ustar00rootroot00000000000000[{"type":"reply","destination_ip":"2a04:4e42:200::323","sent_bytes":56,"pattern":"0xff","bytes":"16","response_ip":"2a04:4e42:200::323","icmp_seq":0,"ttl":59,"time_ms":32.992},{"type":"reply","destination_ip":"2a04:4e42:200::323","sent_bytes":56,"pattern":"0xff","bytes":"16","response_ip":"2a04:4e42:200::323","icmp_seq":1,"ttl":59,"time_ms":34.757},{"type":"reply","destination_ip":"2a04:4e42:200::323","sent_bytes":56,"pattern":"0xff","bytes":"16","response_ip":"2a04:4e42:200::323","icmp_seq":2,"ttl":59,"time_ms":36.07},{"type":"summary","destination_ip":"2a04:4e42:200::323","sent_bytes":56,"pattern":"0xff","packets_transmitted":3,"packets_received":3,"packet_loss_percent":0.0,"duplicates":0,"round_trip_ms_min":32.992,"round_trip_ms_avg":34.606,"round_trip_ms_max":36.07,"round_trip_ms_stddev":1.261}] jc-1.17.3/tests/fixtures/osx-10.14.6/ping6-hostname-p.json000066400000000000000000000014221415226333200226170ustar00rootroot00000000000000{"source_ip": "2600:1700:bab0:d40:2595:8c97:ad16:749a", "destination_ip": "2a04:4e42:200::323", "data_bytes": 56, "pattern": "0xff", "destination": "cnn.com", "packets_transmitted": 3, "packets_received": 3, "packet_loss_percent": 0.0, "duplicates": 0, "round_trip_ms_min": 32.992, "round_trip_ms_avg": 34.606, "round_trip_ms_max": 36.07, "round_trip_ms_stddev": 1.261, "responses": [{"type": "reply", "bytes": 16, "response_ip": "2a04:4e42:200::323", "icmp_seq": 0, "ttl": 59, "time_ms": 32.992, "duplicate": false}, {"type": "reply", "bytes": 16, "response_ip": "2a04:4e42:200::323", "icmp_seq": 1, "ttl": 59, "time_ms": 34.757, "duplicate": false}, {"type": "reply", "bytes": 16, "response_ip": "2a04:4e42:200::323", "icmp_seq": 2, "ttl": 59, "time_ms": 36.07, "duplicate": false}]} jc-1.17.3/tests/fixtures/osx-10.14.6/ping6-hostname-p.out000066400000000000000000000007141415226333200224600ustar00rootroot00000000000000PATTERN: 0xff PING6(56=40+8+8 bytes) 2600:1700:bab0:d40:2595:8c97:ad16:749a --> 2a04:4e42:200::323 16 bytes from 2a04:4e42:200::323, icmp_seq=0 hlim=59 time=32.992 ms 16 bytes from 2a04:4e42:200::323, icmp_seq=1 hlim=59 time=34.757 ms 16 bytes from 2a04:4e42:200::323, icmp_seq=2 hlim=59 time=36.070 ms --- cnn.com ping6 statistics --- 3 packets transmitted, 3 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 32.992/34.606/36.070/1.261 ms jc-1.17.3/tests/fixtures/osx-10.14.6/ping6-hostname-s-streaming.json000066400000000000000000000014521415226333200246140ustar00rootroot00000000000000[{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":128,"pattern":null,"bytes":"88","response_ip":"2a04:4e42:600::323","icmp_seq":0,"ttl":59,"time_ms":26.292},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":128,"pattern":null,"bytes":"88","response_ip":"2a04:4e42:600::323","icmp_seq":1,"ttl":59,"time_ms":64.712},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":128,"pattern":null,"bytes":"88","response_ip":"2a04:4e42:600::323","icmp_seq":2,"ttl":59,"time_ms":25.933},{"type":"summary","destination_ip":"2a04:4e42:600::323","sent_bytes":128,"pattern":null,"packets_transmitted":3,"packets_received":3,"packet_loss_percent":0.0,"duplicates":0,"round_trip_ms_min":25.933,"round_trip_ms_avg":38.979,"round_trip_ms_max":64.712,"round_trip_ms_stddev":18.197}] jc-1.17.3/tests/fixtures/osx-10.14.6/ping6-hostname-s.json000066400000000000000000000014241415226333200226240ustar00rootroot00000000000000{"source_ip": "2600:1700:bab0:d40:2595:8c97:ad16:749a", "destination_ip": "2a04:4e42:600::323", "data_bytes": 128, "pattern": null, "destination": "cnn.com", "packets_transmitted": 3, "packets_received": 3, "packet_loss_percent": 0.0, "duplicates": 0, "round_trip_ms_min": 25.933, "round_trip_ms_avg": 38.979, "round_trip_ms_max": 64.712, "round_trip_ms_stddev": 18.197, "responses": [{"type": "reply", "bytes": 88, "response_ip": "2a04:4e42:600::323", "icmp_seq": 0, "ttl": 59, "time_ms": 26.292, "duplicate": false}, {"type": "reply", "bytes": 88, "response_ip": "2a04:4e42:600::323", "icmp_seq": 1, "ttl": 59, "time_ms": 64.712, "duplicate": false}, {"type": "reply", "bytes": 88, "response_ip": "2a04:4e42:600::323", "icmp_seq": 2, "ttl": 59, "time_ms": 25.933, "duplicate": false}]} jc-1.17.3/tests/fixtures/osx-10.14.6/ping6-hostname-s.out000066400000000000000000000007011415226333200224570ustar00rootroot00000000000000PING6(128=40+8+80 bytes) 2600:1700:bab0:d40:2595:8c97:ad16:749a --> 2a04:4e42:600::323 88 bytes from 2a04:4e42:600::323, icmp_seq=0 hlim=59 time=26.292 ms 88 bytes from 2a04:4e42:600::323, icmp_seq=1 hlim=59 time=64.712 ms 88 bytes from 2a04:4e42:600::323, icmp_seq=2 hlim=59 time=25.933 ms --- cnn.com ping6 statistics --- 3 packets transmitted, 3 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 25.933/38.979/64.712/18.197 ms jc-1.17.3/tests/fixtures/osx-10.14.6/ping6-hostname-streaming.json000066400000000000000000000014431415226333200243540ustar00rootroot00000000000000[{"type":"reply","destination_ip":"2a04:4e42:200::323","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"2a04:4e42:200::323","icmp_seq":0,"ttl":59,"time_ms":27.684},{"type":"reply","destination_ip":"2a04:4e42:200::323","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"2a04:4e42:200::323","icmp_seq":1,"ttl":59,"time_ms":31.824},{"type":"reply","destination_ip":"2a04:4e42:200::323","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"2a04:4e42:200::323","icmp_seq":2,"ttl":59,"time_ms":30.0},{"type":"summary","destination_ip":"2a04:4e42:200::323","sent_bytes":56,"pattern":null,"packets_transmitted":3,"packets_received":3,"packet_loss_percent":0.0,"duplicates":0,"round_trip_ms_min":27.684,"round_trip_ms_avg":29.836,"round_trip_ms_max":31.824,"round_trip_ms_stddev":1.694}] jc-1.17.3/tests/fixtures/osx-10.14.6/ping6-hostname.json000066400000000000000000000014201415226333200223600ustar00rootroot00000000000000{"source_ip": "2600:1700:bab0:d40:2595:8c97:ad16:749a", "destination_ip": "2a04:4e42:200::323", "data_bytes": 56, "pattern": null, "destination": "cnn.com", "packets_transmitted": 3, "packets_received": 3, "packet_loss_percent": 0.0, "duplicates": 0, "round_trip_ms_min": 27.684, "round_trip_ms_avg": 29.836, "round_trip_ms_max": 31.824, "round_trip_ms_stddev": 1.694, "responses": [{"type": "reply", "bytes": 16, "response_ip": "2a04:4e42:200::323", "icmp_seq": 0, "ttl": 59, "time_ms": 27.684, "duplicate": false}, {"type": "reply", "bytes": 16, "response_ip": "2a04:4e42:200::323", "icmp_seq": 1, "ttl": 59, "time_ms": 31.824, "duplicate": false}, {"type": "reply", "bytes": 16, "response_ip": "2a04:4e42:200::323", "icmp_seq": 2, "ttl": 59, "time_ms": 30.0, "duplicate": false}]} jc-1.17.3/tests/fixtures/osx-10.14.6/ping6-hostname.out000066400000000000000000000006761415226333200222320ustar00rootroot00000000000000PING6(56=40+8+8 bytes) 2600:1700:bab0:d40:2595:8c97:ad16:749a --> 2a04:4e42:200::323 16 bytes from 2a04:4e42:200::323, icmp_seq=0 hlim=59 time=27.684 ms 16 bytes from 2a04:4e42:200::323, icmp_seq=1 hlim=59 time=31.824 ms 16 bytes from 2a04:4e42:200::323, icmp_seq=2 hlim=59 time=30.000 ms --- cnn.com ping6 statistics --- 3 packets transmitted, 3 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 27.684/29.836/31.824/1.694 ms jc-1.17.3/tests/fixtures/osx-10.14.6/ping6-ip-dup-streaming.json000066400000000000000000000262451415226333200237430ustar00rootroot00000000000000[{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::c48:5896:526d:81ba%en0","icmp_seq":0,"ttl":64,"time_ms":0.302},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::c1cb:715d:bc3e:b8a0%en0","icmp_seq":0,"ttl":64,"time_ms":0.56},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::3e37:86ff:fe15:adf7%en0","icmp_seq":0,"ttl":64,"time_ms":2.677},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::4ab:6f0f:bdb6:9dd3%en0","icmp_seq":0,"ttl":64,"time_ms":2.765},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::feae:34ff:fea1:3a80%en0","icmp_seq":0,"ttl":64,"time_ms":2.976},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::feae:34ff:fea1:3a82%en0","icmp_seq":0,"ttl":64,"time_ms":3.045},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::3e37:86ff:fe15:ddb3%en0","icmp_seq":0,"ttl":64,"time_ms":6.182},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::10ff:f3b1:fe91:e200%en0","icmp_seq":0,"ttl":64,"time_ms":10.536},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::da30:62ff:fe2e:86cf%en0","icmp_seq":0,"ttl":64,"time_ms":102.839},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::18a5:fc21:6794:b605%en0","icmp_seq":0,"ttl":64,"time_ms":104.367},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::ced:c70f:bb6d:804a%en0","icmp_seq":0,"ttl":64,"time_ms":195.421},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::9eb6:54ff:fe5a:5a7c%en0","icmp_seq":0,"ttl":64,"time_ms":244.586},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::4ad7:5ff:fef1:86e8%en0","icmp_seq":0,"ttl":64,"time_ms":699.725},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::bd:798d:17ea:17a5%en0","icmp_seq":0,"ttl":64,"time_ms":704.087},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"2600:1700:bab0:d40:5214:79ff:fe12:423e","icmp_seq":0,"ttl":64,"time_ms":704.996},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::c48:5896:526d:81ba%en0","icmp_seq":1,"ttl":64,"time_ms":0.458},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::c1cb:715d:bc3e:b8a0%en0","icmp_seq":1,"ttl":64,"time_ms":0.776},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::3e37:86ff:fe15:adf7%en0","icmp_seq":1,"ttl":64,"time_ms":4.926},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::4ab:6f0f:bdb6:9dd3%en0","icmp_seq":1,"ttl":64,"time_ms":5.134},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::feae:34ff:fea1:3a80%en0","icmp_seq":1,"ttl":64,"time_ms":5.242},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::feae:34ff:fea1:3a82%en0","icmp_seq":1,"ttl":64,"time_ms":5.444},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::3e37:86ff:fe15:ddb3%en0","icmp_seq":1,"ttl":64,"time_ms":5.657},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::10ff:f3b1:fe91:e200%en0","icmp_seq":1,"ttl":64,"time_ms":21.339},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::9eb6:54ff:fe5a:5a7c%en0","icmp_seq":1,"ttl":64,"time_ms":53.804},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::da30:62ff:fe2e:86cf%en0","icmp_seq":1,"ttl":64,"time_ms":748.798},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::18a5:fc21:6794:b605%en0","icmp_seq":1,"ttl":64,"time_ms":749.069},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::1012:688e:7e41:6338%en0","icmp_seq":1,"ttl":64,"time_ms":749.182},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::c48:5896:526d:81ba%en0","icmp_seq":2,"ttl":64,"time_ms":0.385},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::c1cb:715d:bc3e:b8a0%en0","icmp_seq":2,"ttl":64,"time_ms":0.713},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::3e37:86ff:fe15:adf7%en0","icmp_seq":2,"ttl":64,"time_ms":6.868},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::4ab:6f0f:bdb6:9dd3%en0","icmp_seq":2,"ttl":64,"time_ms":6.991},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::feae:34ff:fea1:3a80%en0","icmp_seq":2,"ttl":64,"time_ms":7.06},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::feae:34ff:fea1:3a82%en0","icmp_seq":2,"ttl":64,"time_ms":7.174},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::3e37:86ff:fe15:ddb3%en0","icmp_seq":2,"ttl":64,"time_ms":9.045},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::10ff:f3b1:fe91:e200%en0","icmp_seq":2,"ttl":64,"time_ms":11.193},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::4ad7:5ff:fef1:86e8%en0","icmp_seq":2,"ttl":64,"time_ms":141.374},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"2600:1700:bab0:d40:5214:79ff:fe12:423e","icmp_seq":2,"ttl":64,"time_ms":141.53},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::bd:798d:17ea:17a5%en0","icmp_seq":2,"ttl":64,"time_ms":141.565},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::c5d:5f82:6ce5:b9b9%en0","icmp_seq":2,"ttl":64,"time_ms":142.862},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::8d:8cfc:35ac:578f%en0","icmp_seq":2,"ttl":64,"time_ms":145.985},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::da30:62ff:fe2e:86cf%en0","icmp_seq":2,"ttl":64,"time_ms":566.996},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::18a5:fc21:6794:b605%en0","icmp_seq":2,"ttl":64,"time_ms":567.127},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::1012:688e:7e41:6338%en0","icmp_seq":2,"ttl":64,"time_ms":567.184},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::9eb6:54ff:fe5a:5a7c%en0","icmp_seq":2,"ttl":64,"time_ms":657.246},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::ced:c70f:bb6d:804a%en0","icmp_seq":2,"ttl":64,"time_ms":657.567},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::c48:5896:526d:81ba%en0","icmp_seq":3,"ttl":64,"time_ms":0.485},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::c1cb:715d:bc3e:b8a0%en0","icmp_seq":3,"ttl":64,"time_ms":0.948},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::3e37:86ff:fe15:adf7%en0","icmp_seq":3,"ttl":64,"time_ms":6.796},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::4ab:6f0f:bdb6:9dd3%en0","icmp_seq":3,"ttl":64,"time_ms":6.918},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::feae:34ff:fea1:3a80%en0","icmp_seq":3,"ttl":64,"time_ms":6.994},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::feae:34ff:fea1:3a82%en0","icmp_seq":3,"ttl":64,"time_ms":7.059},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::3e37:86ff:fe15:ddb3%en0","icmp_seq":3,"ttl":64,"time_ms":7.122},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::10ff:f3b1:fe91:e200%en0","icmp_seq":3,"ttl":64,"time_ms":9.741},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::8d:8cfc:35ac:578f%en0","icmp_seq":3,"ttl":64,"time_ms":152.829},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"2600:1700:bab0:d40:5214:79ff:fe12:423e","icmp_seq":3,"ttl":64,"time_ms":158.816},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::bd:798d:17ea:17a5%en0","icmp_seq":3,"ttl":64,"time_ms":158.879},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::c5d:5f82:6ce5:b9b9%en0","icmp_seq":3,"ttl":64,"time_ms":158.956},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::4ad7:5ff:fef1:86e8%en0","icmp_seq":3,"ttl":64,"time_ms":159.015},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::18a5:fc21:6794:b605%en0","icmp_seq":3,"ttl":64,"time_ms":377.87},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::1012:688e:7e41:6338%en0","icmp_seq":3,"ttl":64,"time_ms":377.963},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::da30:62ff:fe2e:86cf%en0","icmp_seq":3,"ttl":64,"time_ms":381.785},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::9eb6:54ff:fe5a:5a7c%en0","icmp_seq":3,"ttl":64,"time_ms":470.009},{"type":"reply","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"fe80::c48:5896:526d:81ba%en0","icmp_seq":4,"ttl":64,"time_ms":0.425},{"type":"summary","destination_ip":"ff02::1%en0","sent_bytes":56,"pattern":null,"packets_transmitted":5,"packets_received":5,"packet_loss_percent":0.0,"duplicates":58,"round_trip_ms_min":0.302,"round_trip_ms_avg":180.26,"round_trip_ms_max":749.182,"round_trip_ms_stddev":250.393}] jc-1.17.3/tests/fixtures/osx-10.14.6/ping6-ip-dup.json000066400000000000000000000223471415226333200217530ustar00rootroot00000000000000{"source_ip": "fe80::c48:5896:526d:81ba%en0", "destination_ip": "ff02::1%en0", "data_bytes": 56, "pattern": null, "destination": "ff02::1%en0", "packets_transmitted": 5, "packets_received": 5, "packet_loss_percent": 0.0, "duplicates": 58, "round_trip_ms_min": 0.302, "round_trip_ms_avg": 180.26, "round_trip_ms_max": 749.182, "round_trip_ms_stddev": 250.393, "responses": [{"type": "reply", "bytes": 16, "response_ip": "fe80::c48:5896:526d:81ba%en0", "icmp_seq": 0, "ttl": 64, "time_ms": 0.302, "duplicate": false}, {"type": "reply", "bytes": 16, "response_ip": "fe80::c1cb:715d:bc3e:b8a0%en0", "icmp_seq": 0, "ttl": 64, "time_ms": 0.56, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::3e37:86ff:fe15:adf7%en0", "icmp_seq": 0, "ttl": 64, "time_ms": 2.677, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::4ab:6f0f:bdb6:9dd3%en0", "icmp_seq": 0, "ttl": 64, "time_ms": 2.765, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::feae:34ff:fea1:3a80%en0", "icmp_seq": 0, "ttl": 64, "time_ms": 2.976, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::feae:34ff:fea1:3a82%en0", "icmp_seq": 0, "ttl": 64, "time_ms": 3.045, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::3e37:86ff:fe15:ddb3%en0", "icmp_seq": 0, "ttl": 64, "time_ms": 6.182, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::10ff:f3b1:fe91:e200%en0", "icmp_seq": 0, "ttl": 64, "time_ms": 10.536, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::da30:62ff:fe2e:86cf%en0", "icmp_seq": 0, "ttl": 64, "time_ms": 102.839, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::18a5:fc21:6794:b605%en0", "icmp_seq": 0, "ttl": 64, "time_ms": 104.367, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::ced:c70f:bb6d:804a%en0", "icmp_seq": 0, "ttl": 64, "time_ms": 195.421, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::9eb6:54ff:fe5a:5a7c%en0", "icmp_seq": 0, "ttl": 64, "time_ms": 244.586, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::4ad7:5ff:fef1:86e8%en0", "icmp_seq": 0, "ttl": 64, "time_ms": 699.725, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::bd:798d:17ea:17a5%en0", "icmp_seq": 0, "ttl": 64, "time_ms": 704.087, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "2600:1700:bab0:d40:5214:79ff:fe12:423e", "icmp_seq": 0, "ttl": 64, "time_ms": 704.996, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::c48:5896:526d:81ba%en0", "icmp_seq": 1, "ttl": 64, "time_ms": 0.458, "duplicate": false}, {"type": "reply", "bytes": 16, "response_ip": "fe80::c1cb:715d:bc3e:b8a0%en0", "icmp_seq": 1, "ttl": 64, "time_ms": 0.776, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::3e37:86ff:fe15:adf7%en0", "icmp_seq": 1, "ttl": 64, "time_ms": 4.926, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::4ab:6f0f:bdb6:9dd3%en0", "icmp_seq": 1, "ttl": 64, "time_ms": 5.134, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::feae:34ff:fea1:3a80%en0", "icmp_seq": 1, "ttl": 64, "time_ms": 5.242, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::feae:34ff:fea1:3a82%en0", "icmp_seq": 1, "ttl": 64, "time_ms": 5.444, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::3e37:86ff:fe15:ddb3%en0", "icmp_seq": 1, "ttl": 64, "time_ms": 5.657, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::10ff:f3b1:fe91:e200%en0", "icmp_seq": 1, "ttl": 64, "time_ms": 21.339, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::9eb6:54ff:fe5a:5a7c%en0", "icmp_seq": 1, "ttl": 64, "time_ms": 53.804, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::da30:62ff:fe2e:86cf%en0", "icmp_seq": 1, "ttl": 64, "time_ms": 748.798, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::18a5:fc21:6794:b605%en0", "icmp_seq": 1, "ttl": 64, "time_ms": 749.069, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::1012:688e:7e41:6338%en0", "icmp_seq": 1, "ttl": 64, "time_ms": 749.182, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::c48:5896:526d:81ba%en0", "icmp_seq": 2, "ttl": 64, "time_ms": 0.385, "duplicate": false}, {"type": "reply", "bytes": 16, "response_ip": "fe80::c1cb:715d:bc3e:b8a0%en0", "icmp_seq": 2, "ttl": 64, "time_ms": 0.713, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::3e37:86ff:fe15:adf7%en0", "icmp_seq": 2, "ttl": 64, "time_ms": 6.868, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::4ab:6f0f:bdb6:9dd3%en0", "icmp_seq": 2, "ttl": 64, "time_ms": 6.991, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::feae:34ff:fea1:3a80%en0", "icmp_seq": 2, "ttl": 64, "time_ms": 7.06, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::feae:34ff:fea1:3a82%en0", "icmp_seq": 2, "ttl": 64, "time_ms": 7.174, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::3e37:86ff:fe15:ddb3%en0", "icmp_seq": 2, "ttl": 64, "time_ms": 9.045, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::10ff:f3b1:fe91:e200%en0", "icmp_seq": 2, "ttl": 64, "time_ms": 11.193, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::4ad7:5ff:fef1:86e8%en0", "icmp_seq": 2, "ttl": 64, "time_ms": 141.374, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "2600:1700:bab0:d40:5214:79ff:fe12:423e", "icmp_seq": 2, "ttl": 64, "time_ms": 141.53, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::bd:798d:17ea:17a5%en0", "icmp_seq": 2, "ttl": 64, "time_ms": 141.565, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::c5d:5f82:6ce5:b9b9%en0", "icmp_seq": 2, "ttl": 64, "time_ms": 142.862, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::8d:8cfc:35ac:578f%en0", "icmp_seq": 2, "ttl": 64, "time_ms": 145.985, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::da30:62ff:fe2e:86cf%en0", "icmp_seq": 2, "ttl": 64, "time_ms": 566.996, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::18a5:fc21:6794:b605%en0", "icmp_seq": 2, "ttl": 64, "time_ms": 567.127, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::1012:688e:7e41:6338%en0", "icmp_seq": 2, "ttl": 64, "time_ms": 567.184, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::9eb6:54ff:fe5a:5a7c%en0", "icmp_seq": 2, "ttl": 64, "time_ms": 657.246, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::ced:c70f:bb6d:804a%en0", "icmp_seq": 2, "ttl": 64, "time_ms": 657.567, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::c48:5896:526d:81ba%en0", "icmp_seq": 3, "ttl": 64, "time_ms": 0.485, "duplicate": false}, {"type": "reply", "bytes": 16, "response_ip": "fe80::c1cb:715d:bc3e:b8a0%en0", "icmp_seq": 3, "ttl": 64, "time_ms": 0.948, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::3e37:86ff:fe15:adf7%en0", "icmp_seq": 3, "ttl": 64, "time_ms": 6.796, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::4ab:6f0f:bdb6:9dd3%en0", "icmp_seq": 3, "ttl": 64, "time_ms": 6.918, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::feae:34ff:fea1:3a80%en0", "icmp_seq": 3, "ttl": 64, "time_ms": 6.994, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::feae:34ff:fea1:3a82%en0", "icmp_seq": 3, "ttl": 64, "time_ms": 7.059, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::3e37:86ff:fe15:ddb3%en0", "icmp_seq": 3, "ttl": 64, "time_ms": 7.122, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::10ff:f3b1:fe91:e200%en0", "icmp_seq": 3, "ttl": 64, "time_ms": 9.741, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::8d:8cfc:35ac:578f%en0", "icmp_seq": 3, "ttl": 64, "time_ms": 152.829, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "2600:1700:bab0:d40:5214:79ff:fe12:423e", "icmp_seq": 3, "ttl": 64, "time_ms": 158.816, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::bd:798d:17ea:17a5%en0", "icmp_seq": 3, "ttl": 64, "time_ms": 158.879, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::c5d:5f82:6ce5:b9b9%en0", "icmp_seq": 3, "ttl": 64, "time_ms": 158.956, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::4ad7:5ff:fef1:86e8%en0", "icmp_seq": 3, "ttl": 64, "time_ms": 159.015, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::18a5:fc21:6794:b605%en0", "icmp_seq": 3, "ttl": 64, "time_ms": 377.87, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::1012:688e:7e41:6338%en0", "icmp_seq": 3, "ttl": 64, "time_ms": 377.963, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::da30:62ff:fe2e:86cf%en0", "icmp_seq": 3, "ttl": 64, "time_ms": 381.785, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::9eb6:54ff:fe5a:5a7c%en0", "icmp_seq": 3, "ttl": 64, "time_ms": 470.009, "duplicate": true}, {"type": "reply", "bytes": 16, "response_ip": "fe80::c48:5896:526d:81ba%en0", "icmp_seq": 4, "ttl": 64, "time_ms": 0.425, "duplicate": false}]} jc-1.17.3/tests/fixtures/osx-10.14.6/ping6-ip-dup.out000066400000000000000000000121511415226333200216010ustar00rootroot00000000000000PING6(56=40+8+8 bytes) fe80::c48:5896:526d:81ba%en0 --> ff02::1%en0 16 bytes from fe80::c48:5896:526d:81ba%en0, icmp_seq=0 hlim=64 time=0.302 ms 16 bytes from fe80::c1cb:715d:bc3e:b8a0%en0, icmp_seq=0 hlim=64 time=0.560 ms 16 bytes from fe80::3e37:86ff:fe15:adf7%en0, icmp_seq=0 hlim=64 time=2.677 ms 16 bytes from fe80::4ab:6f0f:bdb6:9dd3%en0, icmp_seq=0 hlim=64 time=2.765 ms 16 bytes from fe80::feae:34ff:fea1:3a80%en0, icmp_seq=0 hlim=64 time=2.976 ms 16 bytes from fe80::feae:34ff:fea1:3a82%en0, icmp_seq=0 hlim=64 time=3.045 ms 16 bytes from fe80::3e37:86ff:fe15:ddb3%en0, icmp_seq=0 hlim=64 time=6.182 ms 16 bytes from fe80::10ff:f3b1:fe91:e200%en0, icmp_seq=0 hlim=64 time=10.536 ms 16 bytes from fe80::da30:62ff:fe2e:86cf%en0, icmp_seq=0 hlim=64 time=102.839 ms 16 bytes from fe80::18a5:fc21:6794:b605%en0, icmp_seq=0 hlim=64 time=104.367 ms 16 bytes from fe80::ced:c70f:bb6d:804a%en0, icmp_seq=0 hlim=64 time=195.421 ms 16 bytes from fe80::9eb6:54ff:fe5a:5a7c%en0, icmp_seq=0 hlim=64 time=244.586 ms 16 bytes from fe80::4ad7:5ff:fef1:86e8%en0, icmp_seq=0 hlim=64 time=699.725 ms 16 bytes from fe80::bd:798d:17ea:17a5%en0, icmp_seq=0 hlim=64 time=704.087 ms 16 bytes from 2600:1700:bab0:d40:5214:79ff:fe12:423e, icmp_seq=0 hlim=64 time=704.996 ms 16 bytes from fe80::c48:5896:526d:81ba%en0, icmp_seq=1 hlim=64 time=0.458 ms 16 bytes from fe80::c1cb:715d:bc3e:b8a0%en0, icmp_seq=1 hlim=64 time=0.776 ms 16 bytes from fe80::3e37:86ff:fe15:adf7%en0, icmp_seq=1 hlim=64 time=4.926 ms 16 bytes from fe80::4ab:6f0f:bdb6:9dd3%en0, icmp_seq=1 hlim=64 time=5.134 ms 16 bytes from fe80::feae:34ff:fea1:3a80%en0, icmp_seq=1 hlim=64 time=5.242 ms 16 bytes from fe80::feae:34ff:fea1:3a82%en0, icmp_seq=1 hlim=64 time=5.444 ms 16 bytes from fe80::3e37:86ff:fe15:ddb3%en0, icmp_seq=1 hlim=64 time=5.657 ms 16 bytes from fe80::10ff:f3b1:fe91:e200%en0, icmp_seq=1 hlim=64 time=21.339 ms 16 bytes from fe80::9eb6:54ff:fe5a:5a7c%en0, icmp_seq=1 hlim=64 time=53.804 ms 16 bytes from fe80::da30:62ff:fe2e:86cf%en0, icmp_seq=1 hlim=64 time=748.798 ms 16 bytes from fe80::18a5:fc21:6794:b605%en0, icmp_seq=1 hlim=64 time=749.069 ms 16 bytes from fe80::1012:688e:7e41:6338%en0, icmp_seq=1 hlim=64 time=749.182 ms 16 bytes from fe80::c48:5896:526d:81ba%en0, icmp_seq=2 hlim=64 time=0.385 ms 16 bytes from fe80::c1cb:715d:bc3e:b8a0%en0, icmp_seq=2 hlim=64 time=0.713 ms 16 bytes from fe80::3e37:86ff:fe15:adf7%en0, icmp_seq=2 hlim=64 time=6.868 ms 16 bytes from fe80::4ab:6f0f:bdb6:9dd3%en0, icmp_seq=2 hlim=64 time=6.991 ms 16 bytes from fe80::feae:34ff:fea1:3a80%en0, icmp_seq=2 hlim=64 time=7.060 ms 16 bytes from fe80::feae:34ff:fea1:3a82%en0, icmp_seq=2 hlim=64 time=7.174 ms 16 bytes from fe80::3e37:86ff:fe15:ddb3%en0, icmp_seq=2 hlim=64 time=9.045 ms 16 bytes from fe80::10ff:f3b1:fe91:e200%en0, icmp_seq=2 hlim=64 time=11.193 ms 16 bytes from fe80::4ad7:5ff:fef1:86e8%en0, icmp_seq=2 hlim=64 time=141.374 ms 16 bytes from 2600:1700:bab0:d40:5214:79ff:fe12:423e, icmp_seq=2 hlim=64 time=141.530 ms 16 bytes from fe80::bd:798d:17ea:17a5%en0, icmp_seq=2 hlim=64 time=141.565 ms 16 bytes from fe80::c5d:5f82:6ce5:b9b9%en0, icmp_seq=2 hlim=64 time=142.862 ms 16 bytes from fe80::8d:8cfc:35ac:578f%en0, icmp_seq=2 hlim=64 time=145.985 ms 16 bytes from fe80::da30:62ff:fe2e:86cf%en0, icmp_seq=2 hlim=64 time=566.996 ms 16 bytes from fe80::18a5:fc21:6794:b605%en0, icmp_seq=2 hlim=64 time=567.127 ms 16 bytes from fe80::1012:688e:7e41:6338%en0, icmp_seq=2 hlim=64 time=567.184 ms 16 bytes from fe80::9eb6:54ff:fe5a:5a7c%en0, icmp_seq=2 hlim=64 time=657.246 ms 16 bytes from fe80::ced:c70f:bb6d:804a%en0, icmp_seq=2 hlim=64 time=657.567 ms 16 bytes from fe80::c48:5896:526d:81ba%en0, icmp_seq=3 hlim=64 time=0.485 ms 16 bytes from fe80::c1cb:715d:bc3e:b8a0%en0, icmp_seq=3 hlim=64 time=0.948 ms 16 bytes from fe80::3e37:86ff:fe15:adf7%en0, icmp_seq=3 hlim=64 time=6.796 ms 16 bytes from fe80::4ab:6f0f:bdb6:9dd3%en0, icmp_seq=3 hlim=64 time=6.918 ms 16 bytes from fe80::feae:34ff:fea1:3a80%en0, icmp_seq=3 hlim=64 time=6.994 ms 16 bytes from fe80::feae:34ff:fea1:3a82%en0, icmp_seq=3 hlim=64 time=7.059 ms 16 bytes from fe80::3e37:86ff:fe15:ddb3%en0, icmp_seq=3 hlim=64 time=7.122 ms 16 bytes from fe80::10ff:f3b1:fe91:e200%en0, icmp_seq=3 hlim=64 time=9.741 ms 16 bytes from fe80::8d:8cfc:35ac:578f%en0, icmp_seq=3 hlim=64 time=152.829 ms 16 bytes from 2600:1700:bab0:d40:5214:79ff:fe12:423e, icmp_seq=3 hlim=64 time=158.816 ms 16 bytes from fe80::bd:798d:17ea:17a5%en0, icmp_seq=3 hlim=64 time=158.879 ms 16 bytes from fe80::c5d:5f82:6ce5:b9b9%en0, icmp_seq=3 hlim=64 time=158.956 ms 16 bytes from fe80::4ad7:5ff:fef1:86e8%en0, icmp_seq=3 hlim=64 time=159.015 ms 16 bytes from fe80::18a5:fc21:6794:b605%en0, icmp_seq=3 hlim=64 time=377.870 ms 16 bytes from fe80::1012:688e:7e41:6338%en0, icmp_seq=3 hlim=64 time=377.963 ms 16 bytes from fe80::da30:62ff:fe2e:86cf%en0, icmp_seq=3 hlim=64 time=381.785 ms 16 bytes from fe80::9eb6:54ff:fe5a:5a7c%en0, icmp_seq=3 hlim=64 time=470.009 ms 16 bytes from fe80::c48:5896:526d:81ba%en0, icmp_seq=4 hlim=64 time=0.425 ms --- ff02::1%en0 ping6 statistics --- 5 packets transmitted, 5 packets received, +58 duplicates, 0.0% packet loss round-trip min/avg/max/std-dev = 0.302/180.260/749.182/250.393 ms jc-1.17.3/tests/fixtures/osx-10.14.6/ping6-ip-p-streaming.json000066400000000000000000000012761415226333200234070ustar00rootroot00000000000000[{"type":"reply","destination_ip":"::1","sent_bytes":56,"pattern":"0xff","bytes":"16","response_ip":"::1","icmp_seq":0,"ttl":64,"time_ms":0.077},{"type":"reply","destination_ip":"::1","sent_bytes":56,"pattern":"0xff","bytes":"16","response_ip":"::1","icmp_seq":1,"ttl":64,"time_ms":0.156},{"type":"reply","destination_ip":"::1","sent_bytes":56,"pattern":"0xff","bytes":"16","response_ip":"::1","icmp_seq":2,"ttl":64,"time_ms":0.139},{"type":"summary","destination_ip":"::1","sent_bytes":56,"pattern":"0xff","packets_transmitted":3,"packets_received":3,"packet_loss_percent":0.0,"duplicates":0,"round_trip_ms_min":0.077,"round_trip_ms_avg":0.124,"round_trip_ms_max":0.156,"round_trip_ms_stddev":0.034}] jc-1.17.3/tests/fixtures/osx-10.14.6/ping6-ip-p.json000066400000000000000000000012531415226333200214130ustar00rootroot00000000000000{"source_ip": "::1", "destination_ip": "::1", "data_bytes": 56, "pattern": "0xff", "destination": "::1", "packets_transmitted": 3, "packets_received": 3, "packet_loss_percent": 0.0, "duplicates": 0, "round_trip_ms_min": 0.077, "round_trip_ms_avg": 0.124, "round_trip_ms_max": 0.156, "round_trip_ms_stddev": 0.034, "responses": [{"type": "reply", "bytes": 16, "response_ip": "::1", "icmp_seq": 0, "ttl": 64, "time_ms": 0.077, "duplicate": false}, {"type": "reply", "bytes": 16, "response_ip": "::1", "icmp_seq": 1, "ttl": 64, "time_ms": 0.156, "duplicate": false}, {"type": "reply", "bytes": 16, "response_ip": "::1", "icmp_seq": 2, "ttl": 64, "time_ms": 0.139, "duplicate": false}]} jc-1.17.3/tests/fixtures/osx-10.14.6/ping6-ip-p.out000066400000000000000000000005431415226333200212520ustar00rootroot00000000000000PATTERN: 0xff PING6(56=40+8+8 bytes) ::1 --> ::1 16 bytes from ::1, icmp_seq=0 hlim=64 time=0.077 ms 16 bytes from ::1, icmp_seq=1 hlim=64 time=0.156 ms 16 bytes from ::1, icmp_seq=2 hlim=64 time=0.139 ms --- ::1 ping6 statistics --- 3 packets transmitted, 3 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.077/0.124/0.156/0.034 ms jc-1.17.3/tests/fixtures/osx-10.14.6/ping6-ip-s-streaming.json000066400000000000000000000013031415226333200234010ustar00rootroot00000000000000[{"type":"reply","destination_ip":"::1","sent_bytes":1448,"pattern":null,"bytes":"1408","response_ip":"::1","icmp_seq":0,"ttl":64,"time_ms":0.093},{"type":"reply","destination_ip":"::1","sent_bytes":1448,"pattern":null,"bytes":"1408","response_ip":"::1","icmp_seq":1,"ttl":64,"time_ms":0.161},{"type":"reply","destination_ip":"::1","sent_bytes":1448,"pattern":null,"bytes":"1408","response_ip":"::1","icmp_seq":2,"ttl":64,"time_ms":0.152},{"type":"summary","destination_ip":"::1","sent_bytes":1448,"pattern":null,"packets_transmitted":3,"packets_received":3,"packet_loss_percent":0.0,"duplicates":0,"round_trip_ms_min":0.093,"round_trip_ms_avg":0.135,"round_trip_ms_max":0.161,"round_trip_ms_stddev":0.03}] jc-1.17.3/tests/fixtures/osx-10.14.6/ping6-ip-s.json000066400000000000000000000012601415226333200214140ustar00rootroot00000000000000{"source_ip": "::1", "destination_ip": "::1", "data_bytes": 1448, "pattern": null, "destination": "::1", "packets_transmitted": 3, "packets_received": 3, "packet_loss_percent": 0.0, "duplicates": 0, "round_trip_ms_min": 0.093, "round_trip_ms_avg": 0.135, "round_trip_ms_max": 0.161, "round_trip_ms_stddev": 0.03, "responses": [{"type": "reply", "bytes": 1408, "response_ip": "::1", "icmp_seq": 0, "ttl": 64, "time_ms": 0.093, "duplicate": false}, {"type": "reply", "bytes": 1408, "response_ip": "::1", "icmp_seq": 1, "ttl": 64, "time_ms": 0.161, "duplicate": false}, {"type": "reply", "bytes": 1408, "response_ip": "::1", "icmp_seq": 2, "ttl": 64, "time_ms": 0.152, "duplicate": false}]} jc-1.17.3/tests/fixtures/osx-10.14.6/ping6-ip-s.out000066400000000000000000000005401415226333200212520ustar00rootroot00000000000000PING6(1448=40+8+1400 bytes) ::1 --> ::1 1408 bytes from ::1, icmp_seq=0 hlim=64 time=0.093 ms 1408 bytes from ::1, icmp_seq=1 hlim=64 time=0.161 ms 1408 bytes from ::1, icmp_seq=2 hlim=64 time=0.152 ms --- ::1 ping6 statistics --- 3 packets transmitted, 3 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.093/0.135/0.161/0.030 ms jc-1.17.3/tests/fixtures/osx-10.14.6/ping6-ip-streaming.json000066400000000000000000000012661415226333200231510ustar00rootroot00000000000000[{"type":"reply","destination_ip":"::1","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"::1","icmp_seq":0,"ttl":64,"time_ms":0.071},{"type":"reply","destination_ip":"::1","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"::1","icmp_seq":1,"ttl":64,"time_ms":0.153},{"type":"reply","destination_ip":"::1","sent_bytes":56,"pattern":null,"bytes":"16","response_ip":"::1","icmp_seq":2,"ttl":64,"time_ms":0.122},{"type":"summary","destination_ip":"::1","sent_bytes":56,"pattern":null,"packets_transmitted":3,"packets_received":3,"packet_loss_percent":0.0,"duplicates":0,"round_trip_ms_min":0.071,"round_trip_ms_avg":0.115,"round_trip_ms_max":0.153,"round_trip_ms_stddev":0.034}] jc-1.17.3/tests/fixtures/osx-10.14.6/ping6-ip-unparsable.json000066400000000000000000000011131415226333200233030ustar00rootroot00000000000000{"source_ip":"::1","destination_ip":"::1","data_bytes":56,"pattern":null,"destination":"::1","packets_transmitted":3,"packets_received":3,"packet_loss_percent":0.0,"duplicates":0,"round_trip_ms_min":0.071,"round_trip_ms_avg":0.115,"round_trip_ms_max":0.153,"round_trip_ms_stddev":0.034,"responses":[{"type":"reply","bytes":16,"response_ip":"::1","icmp_seq":0,"ttl":64,"time_ms":0.071,"duplicate":false},{"type":"unparsable_line","unparsed_line":"16 bytes from ::1 strange error"},{"type":"reply","bytes":16,"response_ip":"::1","icmp_seq":2,"ttl":64,"time_ms":0.122,"duplicate":false}]} jc-1.17.3/tests/fixtures/osx-10.14.6/ping6-ip-unparsable.out000066400000000000000000000005261415226333200231500ustar00rootroot00000000000000PING6(56=40+8+8 bytes) ::1 --> ::1 16 bytes from ::1, icmp_seq=0 hlim=64 time=0.071 ms 16 bytes from ::1, strange error weird error message 16 bytes from ::1, icmp_seq=2 hlim=64 time=0.122 ms --- ::1 ping6 statistics --- 3 packets transmitted, 3 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.071/0.115/0.153/0.034 ms jc-1.17.3/tests/fixtures/osx-10.14.6/ping6-ip.json000066400000000000000000000012511415226333200211540ustar00rootroot00000000000000{"source_ip": "::1", "destination_ip": "::1", "data_bytes": 56, "pattern": null, "destination": "::1", "packets_transmitted": 3, "packets_received": 3, "packet_loss_percent": 0.0, "duplicates": 0, "round_trip_ms_min": 0.071, "round_trip_ms_avg": 0.115, "round_trip_ms_max": 0.153, "round_trip_ms_stddev": 0.034, "responses": [{"type": "reply", "bytes": 16, "response_ip": "::1", "icmp_seq": 0, "ttl": 64, "time_ms": 0.071, "duplicate": false}, {"type": "reply", "bytes": 16, "response_ip": "::1", "icmp_seq": 1, "ttl": 64, "time_ms": 0.153, "duplicate": false}, {"type": "reply", "bytes": 16, "response_ip": "::1", "icmp_seq": 2, "ttl": 64, "time_ms": 0.122, "duplicate": false}]} jc-1.17.3/tests/fixtures/osx-10.14.6/ping6-ip.out000066400000000000000000000005251415226333200210150ustar00rootroot00000000000000PING6(56=40+8+8 bytes) ::1 --> ::1 16 bytes from ::1, icmp_seq=0 hlim=64 time=0.071 ms 16 bytes from ::1, icmp_seq=1 hlim=64 time=0.153 ms 16 bytes from ::1, icmp_seq=2 hlim=64 time=0.122 ms --- ::1 ping6 statistics --- 3 packets transmitted, 3 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.071/0.115/0.153/0.034 ms jc-1.17.3/tests/fixtures/osx-10.14.6/pip-list.json000066400000000000000000000003401415226333200212620ustar00rootroot00000000000000[{"package": "ifconfig-parser", "version": "0.0.4"}, {"package": "jc", "version": "1.5.1"}, {"package": "pip", "version": "19.3.1"}, {"package": "setuptools", "version": "41.6.0"}, {"package": "wheel", "version": "0.33.6"}] jc-1.17.3/tests/fixtures/osx-10.14.6/pip-list.out000077500000000000000000000002501415226333200211230ustar00rootroot00000000000000Package Version --------------- ------- ifconfig-parser 0.0.4 jc 1.5.1 pip 19.3.1 setuptools 41.6.0 wheel 0.33.6 jc-1.17.3/tests/fixtures/osx-10.14.6/pip-show.json000066400000000000000000000020531415226333200212720ustar00rootroot00000000000000[{"name": "pip", "version": "19.3.1", "summary": "The PyPA recommended tool for installing Python packages.", "home_page": "https://pip.pypa.io/", "author": "The pip developers", "author_email": "pypa-dev@groups.google.com", "license": "MIT", "location": "/usr/local/lib/python3.7/site-packages", "requires": null, "required_by": null}, {"name": "jc", "version": "1.5.1", "summary": "This tool serializes the output of popular command line tools to structured JSON output.", "home_page": "https://github.com/kellyjonbrazil/jc", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "license": "MIT", "location": "/usr/local/lib/python3.7/site-packages", "requires": "ifconfig-parser", "required_by": null}, {"name": "ifconfig-parser", "version": "0.0.4", "summary": "ifconfig-parser", "home_page": "https://github.com/KnightWhoSayNi/ifconfig-parser", "author": "KnightWhoSayNi", "author_email": "threeheadedknight@protonmail.com", "license": "MIT license", "location": "/usr/local/lib/python3.7/site-packages", "requires": null, "required_by": "jc"}] jc-1.17.3/tests/fixtures/osx-10.14.6/pip-show.out000077500000000000000000000016161415226333200211370ustar00rootroot00000000000000Name: pip Version: 19.3.1 Summary: The PyPA recommended tool for installing Python packages. Home-page: https://pip.pypa.io/ Author: The pip developers Author-email: pypa-dev@groups.google.com License: MIT Location: /usr/local/lib/python3.7/site-packages Requires: Required-by: --- Name: jc Version: 1.5.1 Summary: This tool serializes the output of popular command line tools to structured JSON output. Home-page: https://github.com/kellyjonbrazil/jc Author: Kelly Brazil Author-email: kellyjonbrazil@gmail.com License: MIT Location: /usr/local/lib/python3.7/site-packages Requires: ifconfig-parser Required-by: --- Name: ifconfig-parser Version: 0.0.4 Summary: ifconfig-parser Home-page: https://github.com/KnightWhoSayNi/ifconfig-parser Author: KnightWhoSayNi Author-email: threeheadedknight@protonmail.com License: MIT license Location: /usr/local/lib/python3.7/site-packages Requires: Required-by: jc jc-1.17.3/tests/fixtures/osx-10.14.6/ps-axu.json000066400000000000000000003015451415226333200207510ustar00rootroot00000000000000[{"user": "kbrazil", "pid": 1046, "vsz": 6595412, "rss": 498788, "tt": null, "stat": "S", "started": "12:10PM", "time": "7:53.61", "command": "com.docker.hyperkit -A -u -F vms/0/hyperkit.pid -c 4 -m 2048M -s 0:0,hostbridge -s 31,lpc -s 1:0,virtio-vpnkit,path=vpnkit.eth.sock,uuid=0bed4206-a5b8-40bf-b1fa-02cb5d5a7f54 -U 573cd650-b0d4-41ed-a405-9cffcdcd24cb -s 2:0,ahci-hd,/Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/Docker.raw -s 3,virtio-sock,guest_cid=3,path=vms/0,guest_forwards=2376;1525 -s 4,ahci-cd,/Applications/Docker.app/Contents/Resources/linuxkit/docker-desktop.iso -s 5,ahci-cd,vms/0/config.iso -s 6,ahci-cd,/Applications/Docker.app/Contents/Resources/linuxkit/docker.iso -s 7,virtio-rnd -l com1,autopty=vms/0/tty,asl -f bootrom,/Applications/Docker.app/Contents/Resources/uefi/UEFI.fd,,", "cpu_percent": 3.7, "mem_percent": 3.0}, {"user": "kbrazil", "pid": 556, "vsz": 5046052, "rss": 109592, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:37.91", "command": "/Applications/Utilities/Terminal.app/Contents/MacOS/Terminal -psn_0_102425", "cpu_percent": 3.5, "mem_percent": 0.7}, {"user": "_hidd", "pid": 112, "vsz": 4382500, "rss": 9940, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "2:47.17", "command": "/usr/libexec/hidd", "cpu_percent": 1.7, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 633, "vsz": 4421912, "rss": 61740, "tt": null, "stat": "S", "started": "12:10PM", "time": "1:48.29", "command": "/Applications/Sublime Text.app/Contents/MacOS/plugin_host 560 --auto-shell-env", "cpu_percent": 1.1, "mem_percent": 0.4}, {"user": "root", "pid": 86, "vsz": 4486620, "rss": 72908, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "1:24.14", "command": "/Library/enSilo/enSiloCollector", "cpu_percent": 0.9, "mem_percent": 0.4}, {"user": "root", "pid": 58, "vsz": 4383244, "rss": 14084, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "1:23.52", "command": "/Library/Application Support/JAMF/Jamf.app/Contents/MacOS/JamfDaemon.app/Contents/MacOS/JamfDaemon", "cpu_percent": 0.7, "mem_percent": 0.1}, {"user": "_windowserver", "pid": 192, "vsz": 7877628, "rss": 101144, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "10:51.11", "command": "/System/Library/PrivateFrameworks/SkyLight.framework/Resources/WindowServer -daemon", "cpu_percent": 0.6, "mem_percent": 0.6}, {"user": "root", "pid": 15535, "vsz": 4368408, "rss": 23672, "tt": null, "stat": "Ss", "started": "12:48PM", "time": "2:17.82", "command": "/Library/Tanium/TaniumClient/Tools/Trace/TaniumRecorder", "cpu_percent": 0.5, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 8297, "vsz": 6938128, "rss": 754604, "tt": null, "stat": "S", "started": "12:23PM", "time": "2:37.81", "command": "/Applications/Microsoft Outlook.app/Contents/MacOS/Microsoft Outlook", "cpu_percent": 0.4, "mem_percent": 4.5}, {"user": "kbrazil", "pid": 609, "vsz": 4325216, "rss": 1556, "tt": "s000", "stat": "S", "started": "12:10PM", "time": "0:00.14", "command": "-bash", "cpu_percent": 0.3, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 560, "vsz": 5376996, "rss": 180740, "tt": null, "stat": "S", "started": "12:10PM", "time": "2:56.43", "command": "/Applications/Sublime Text.app/Contents/MacOS/Sublime Text -psn_0_110619", "cpu_percent": 0.2, "mem_percent": 1.1}, {"user": "root", "pid": 57, "vsz": 4377044, "rss": 13180, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:10.25", "command": "/System/Library/CoreServices/powerd.bundle/powerd", "cpu_percent": 0.1, "mem_percent": 0.1}, {"user": "root", "pid": 216, "vsz": 4362088, "rss": 10252, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:14.18", "command": "/Library/Tanium/TaniumClient/TaniumClient -m", "cpu_percent": 0.1, "mem_percent": 0.1}, {"user": "root", "pid": 79, "vsz": 4404900, "rss": 18656, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:28.23", "command": "/usr/libexec/opendirectoryd", "cpu_percent": 0.1, "mem_percent": 0.1}, {"user": "root", "pid": 57231, "vsz": 4315924, "rss": 11092, "tt": null, "stat": "Ss", "started": "3:13PM", "time": "0:00.04", "command": "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeinstalld", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 57229, "vsz": 4378256, "rss": 13020, "tt": null, "stat": "S", "started": "3:13PM", "time": "0:00.13", "command": "/System/Library/CoreServices/mapspushd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 54954, "vsz": 4390412, "rss": 14248, "tt": null, "stat": "S", "started": "3:01PM", "time": "0:00.08", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.single", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_spotlight", "pid": 54454, "vsz": 4425076, "rss": 37128, "tt": null, "stat": "S", "started": "2:58PM", "time": "0:02.19", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "_spotlight", "pid": 54453, "vsz": 4442200, "rss": 54860, "tt": null, "stat": "S", "started": "2:58PM", "time": "0:03.34", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "kbrazil", "pid": 54435, "vsz": 4371660, "rss": 14552, "tt": null, "stat": "S", "started": "2:58PM", "time": "0:00.58", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 51461, "vsz": 4307192, "rss": 5396, "tt": null, "stat": "S", "started": "2:50PM", "time": "0:00.01", "command": "/System/Library/Frameworks/MediaAccessibility.framework/Versions/A/XPCServices/com.apple.accessibility.mediaaccessibilityd.xpc/Contents/MacOS/com.apple.accessibility.mediaaccessibilityd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 51460, "vsz": 4316148, "rss": 9196, "tt": null, "stat": "Ss", "started": "2:50PM", "time": "0:00.01", "command": "/System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_spotlight", "pid": 48283, "vsz": 4358676, "rss": 12708, "tt": null, "stat": "S", "started": "2:42PM", "time": "0:00.32", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_spotlight", "pid": 48282, "vsz": 4370660, "rss": 13524, "tt": null, "stat": "S", "started": "2:42PM", "time": "0:00.47", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 37224, "vsz": 4371764, "rss": 23364, "tt": null, "stat": "S", "started": "2:00PM", "time": "0:01.93", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 37211, "vsz": 4316408, "rss": 28756, "tt": null, "stat": "S", "started": "2:00PM", "time": "0:12.71", "command": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/Resources/Python.app/Contents/MacOS/Python -B /Users/kbrazil/Library/Application Support/Sublime Text 3/Packages/Anaconda/anaconda_server/jsonserver.py -p git 51762 -e /Users/kbrazil/git 633", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 37114, "vsz": 4363676, "rss": 24892, "tt": null, "stat": "S", "started": "2:00PM", "time": "0:02.90", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 37112, "vsz": 4363532, "rss": 24976, "tt": null, "stat": "S", "started": "2:00PM", "time": "0:03.67", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 37111, "vsz": 4371764, "rss": 23808, "tt": null, "stat": "S", "started": "2:00PM", "time": "0:02.17", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 36910, "vsz": 4408440, "rss": 15596, "tt": null, "stat": "S", "started": "1:59PM", "time": "0:00.42", "command": "/System/Library/CoreServices/CoreServicesUIAgent.app/Contents/MacOS/CoreServicesUIAgent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 33592, "vsz": 4923136, "rss": 16688, "tt": null, "stat": "S", "started": "1:48PM", "time": "0:00.39", "command": "/System/Library/CoreServices/OSDUIHelper.app/Contents/MacOS/OSDUIHelper", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 33536, "vsz": 4871376, "rss": 12472, "tt": null, "stat": "Ss", "started": "1:48PM", "time": "0:00.11", "command": "/System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 28662, "vsz": 4350188, "rss": 4528, "tt": null, "stat": "S", "started": "1:30PM", "time": "0:00.02", "command": "/System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/XPCServices/com.apple.tonelibraryd.xpc/Contents/MacOS/com.apple.tonelibraryd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 28349, "vsz": 4376368, "rss": 42396, "tt": null, "stat": "S", "started": "1:28PM", "time": "0:03.20", "command": "/Library/Tanium/TaniumClient/TaniumClient -a", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "kbrazil", "pid": 24327, "vsz": 106190056, "rss": 23576, "tt": null, "stat": "Ss", "started": "1:25PM", "time": "0:00.54", "command": "/System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 24324, "vsz": 4379072, "rss": 39528, "tt": null, "stat": "S", "started": "1:25PM", "time": "0:41.29", "command": "/Library/Tanium/TaniumClient/TaniumClient -c", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 24307, "vsz": 4468340, "rss": 32696, "tt": null, "stat": "Ss", "started": "1:25PM", "time": "0:00.07", "command": "/System/Library/Frameworks/SafariServices.framework/Versions/A/XPCServices/com.apple.SafariServices.xpc/Contents/MacOS/com.apple.SafariServices", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 24306, "vsz": 4389156, "rss": 20372, "tt": null, "stat": "Ss", "started": "1:25PM", "time": "0:00.47", "command": "/System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.Networking.xpc/Contents/MacOS/com.apple.WebKit.Networking", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 24149, "vsz": 4914400, "rss": 16384, "tt": null, "stat": "S", "started": "1:24PM", "time": "0:00.44", "command": "/System/Library/Frameworks/LocalAuthentication.framework/Support/coreautha.bundle/Contents/MacOS/coreautha", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 24002, "vsz": 4343176, "rss": 7892, "tt": null, "stat": "S", "started": "1:12PM", "time": "0:00.02", "command": "/usr/libexec/USBAgent", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 23999, "vsz": 4368704, "rss": 4992, "tt": null, "stat": "S", "started": "1:12PM", "time": "0:00.03", "command": "/System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent --launchd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 23995, "vsz": 4378708, "rss": 6748, "tt": null, "stat": "S", "started": "1:12PM", "time": "0:00.14", "command": "/usr/libexec/secinitd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 23994, "vsz": 4386588, "rss": 9564, "tt": null, "stat": "S", "started": "1:12PM", "time": "0:00.45", "command": "/System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/XPCServices/com.apple.geod.xpc/Contents/MacOS/com.apple.geod", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_softwareupdate", "pid": 17515, "vsz": 4352904, "rss": 9716, "tt": null, "stat": "Ss", "started": "12:50PM", "time": "0:00.04", "command": "/System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdate_download_service", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_softwareupdate", "pid": 17500, "vsz": 4342764, "rss": 1176, "tt": null, "stat": "S", "started": "12:50PM", "time": "0:00.06", "command": "/usr/sbin/distnoted agent", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "_softwareupdate", "pid": 17499, "vsz": 4309216, "rss": 1200, "tt": null, "stat": "S", "started": "12:50PM", "time": "0:00.09", "command": "/usr/sbin/cfprefsd agent", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "_atsserver", "pid": 17495, "vsz": 4378548, "rss": 7852, "tt": null, "stat": "Ss", "started": "12:50PM", "time": "0:00.14", "command": "/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Support/fontd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 14604, "vsz": 4378208, "rss": 8868, "tt": null, "stat": "S", "started": "12:46PM", "time": "0:00.14", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdwrite", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 9214, "vsz": 4925960, "rss": 17848, "tt": null, "stat": "S", "started": "12:29PM", "time": "0:00.93", "command": "/System/Library/CoreServices/NowPlayingTouchUI.app/Contents/MacOS/NowPlayingTouchUI", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 8325, "vsz": 4324132, "rss": 8156, "tt": null, "stat": "S", "started": "12:24PM", "time": "0:00.03", "command": "/System/Library/PrivateFrameworks/CoreCDP.framework/Versions/A/Resources/cdpd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 8322, "vsz": 4385988, "rss": 15792, "tt": null, "stat": "S", "started": "12:24PM", "time": "0:00.57", "command": "/System/Library/PrivateFrameworks/CloudServices.framework/Versions/A/XPCServices/com.apple.sbd.xpc/Contents/MacOS/com.apple.sbd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 8321, "vsz": 4349992, "rss": 26068, "tt": null, "stat": "S", "started": "12:24PM", "time": "0:00.08", "command": "/System/Library/CoreServices/EscrowSecurityAlert.app/Contents/MacOS/EscrowSecurityAlert", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 8314, "vsz": 4383492, "rss": 19548, "tt": null, "stat": "Ss", "started": "12:23PM", "time": "0:00.61", "command": "/System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.Networking.xpc/Contents/MacOS/com.apple.WebKit.Networking", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 8311, "vsz": 4384516, "rss": 19548, "tt": null, "stat": "Ss", "started": "12:23PM", "time": "0:00.60", "command": "/System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.Networking.xpc/Contents/MacOS/com.apple.WebKit.Networking", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 8310, "vsz": 89351692, "rss": 15404, "tt": null, "stat": "Ss", "started": "12:23PM", "time": "0:00.57", "command": "/System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_spotlight", "pid": 3836, "vsz": 4378508, "rss": 10824, "tt": null, "stat": "S", "started": "12:17PM", "time": "0:05.81", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker-sizing -c MDSSizingWorker -m com.apple.mdworker.sizing", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 3835, "vsz": 4378524, "rss": 10908, "tt": null, "stat": "S", "started": "12:17PM", "time": "0:00.70", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker-sizing -c MDSSizingWorker -m com.apple.mdworker.sizing", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 3724, "vsz": 4376420, "rss": 5196, "tt": null, "stat": "S", "started": "12:17PM", "time": "0:00.07", "command": "/System/Library/PrivateFrameworks/ContextKit.framework/Versions/A/XPCServices/ContextService.xpc/Contents/MacOS/ContextService", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 3468, "vsz": 4496632, "rss": 30660, "tt": null, "stat": "S", "started": "12:17PM", "time": "0:02.79", "command": "/System/Library/CoreServices/SafariSupport.bundle/Contents/MacOS/SafariBookmarksSyncAgent", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 3464, "vsz": 4368200, "rss": 25980, "tt": null, "stat": "S", "started": "12:17PM", "time": "0:00.10", "command": "/System/Library/PrivateFrameworks/PhotoAnalysis.framework/Versions/A/Support/photoanalysisd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 3457, "vsz": 4380232, "rss": 16996, "tt": null, "stat": "S", "started": "12:16PM", "time": "0:00.81", "command": "/System/Library/PrivateFrameworks/AppStoreDaemon.framework/Support/appstoreagent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 3021, "vsz": 4411016, "rss": 5496, "tt": null, "stat": "S", "started": "12:15PM", "time": "0:00.22", "command": "/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Support/atsd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 1431, "vsz": 4354884, "rss": 6456, "tt": null, "stat": "Ss", "started": "12:12PM", "time": "0:00.27", "command": "/usr/libexec/mobileactivationd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 1353, "vsz": 4333556, "rss": 8332, "tt": null, "stat": "Ss", "started": "12:11PM", "time": "0:00.01", "command": "/System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 1351, "vsz": 4388208, "rss": 10216, "tt": null, "stat": "S", "started": "12:11PM", "time": "0:00.34", "command": "/System/Library/Frameworks/ApplicationServices.framework/Frameworks/SpeechSynthesis.framework/Resources/com.apple.speech.speechsynthesisd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 1331, "vsz": 4378708, "rss": 6044, "tt": null, "stat": "Ss", "started": "12:11PM", "time": "0:00.04", "command": "/System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCService", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 1302, "vsz": 106614828, "rss": 82516, "tt": null, "stat": "Ss", "started": "12:11PM", "time": "0:02.60", "command": "/System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent", "cpu_percent": 0.0, "mem_percent": 0.5}, {"user": "_spotlight", "pid": 1205, "vsz": 4350956, "rss": 1456, "tt": null, "stat": "S", "started": "12:11PM", "time": "0:00.10", "command": "/usr/sbin/distnoted agent", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 1123, "vsz": 4381656, "rss": 7128, "tt": null, "stat": "S", "started": "12:11PM", "time": "0:00.32", "command": "/System/Library/PrivateFrameworks/AssetCacheServices.framework/Versions/A/XPCServices/AssetCacheLocatorService.xpc/Contents/MacOS/AssetCacheLocatorService -a", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "_spotlight", "pid": 1121, "vsz": 4380928, "rss": 8772, "tt": null, "stat": "S", "started": "12:11PM", "time": "0:00.89", "command": "/usr/libexec/trustd --agent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 1103, "vsz": 4342256, "rss": 9368, "tt": null, "stat": "S", "started": "12:11PM", "time": "0:00.03", "command": "/System/Library/Frameworks/ApplicationServices.framework/Frameworks/PrintCore.framework/Versions/A/printtool agent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 1055, "vsz": 4380576, "rss": 12184, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.09", "command": "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/XPCServices/com.apple.CommerceKit.TransactionService.xpc/Contents/MacOS/com.apple.CommerceKit.TransactionService", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 1054, "vsz": 4404180, "rss": 20960, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.57", "command": "/System/Library/PrivateFrameworks/CommerceKit.framework/Resources/LaterAgent.app/Contents/MacOS/LaterAgent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 1051, "vsz": 4377564, "rss": 15308, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.08", "command": "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storelegacy", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 1049, "vsz": 4342452, "rss": 9868, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.03", "command": "/System/Library/CoreServices/Software Update.app/Contents/Resources/suhelperd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_softwareupdate", "pid": 1048, "vsz": 4525656, "rss": 39208, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:06.83", "command": "/System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdated", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 1047, "vsz": 4351004, "rss": 11404, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.06", "command": "/System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdate_notify_agent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 1045, "vsz": 4880144, "rss": 10584, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.10", "command": "/System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 1042, "vsz": 4425016, "rss": 11232, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.64", "command": "com.docker.backend -addr fd:3", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 1041, "vsz": 4522468, "rss": 20676, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:01.02", "command": "com.docker.driver.amd64-linux -addr fd:3 -debug", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 1040, "vsz": 4399292, "rss": 21372, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:02.05", "command": "com.docker.vpnkit --ethernet fd:3 --diagnostics fd:4 --pcap fd:5 --vsock-path vms/0/connect --gateway-forwards /Users/kbrazil/Library/Group Containers/group.com.docker/gateway_forwards.json --host-names host.docker.internal,docker.for.mac.host.internal,docker.for.mac.localhost --listen-backlog 32 --mtu 1500 --allowed-bind-addresses 0.0.0.0 --http /Users/kbrazil/Library/Group Containers/group.com.docker/http_proxy.json --dhcp /Users/kbrazil/Library/Group Containers/group.com.docker/dhcp.json --port-max-idle-time 300 --max-connections 2000 --gateway-ip 192.168.65.1 --host-ip 192.168.65.2 --lowest-ip 192.168.65.3 --highest-ip 192.168.65.254 --log-destination asl --udpv4-forwards 123:127.0.0.1:58011 --gc-compact-interval 1800", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 1039, "vsz": 4369156, "rss": 14612, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:12.36", "command": "com.docker.osxfs serve --address fd:3 --connect vms/0/connect --control fd:4 --log-destination asl", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 1037, "vsz": 4482108, "rss": 12420, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.91", "command": "/Applications/Docker.app/Contents/MacOS/com.docker.supervisor -watchdog fd:0", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 1036, "vsz": 4350828, "rss": 5028, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.03", "command": "/usr/libexec/loginitemregisterd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "_locationd", "pid": 1023, "vsz": 4381528, "rss": 7384, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.19", "command": "/usr/libexec/trustd --agent", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "_locationd", "pid": 1022, "vsz": 4350176, "rss": 1204, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.11", "command": "/usr/sbin/cfprefsd agent", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "_locationd", "pid": 1017, "vsz": 4378884, "rss": 6784, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.12", "command": "/usr/libexec/secinitd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "_locationd", "pid": 1015, "vsz": 4381456, "rss": 8384, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.25", "command": "/System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/XPCServices/com.apple.geod.xpc/Contents/MacOS/com.apple.geod", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 984, "vsz": 4377748, "rss": 15280, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.07", "command": "/usr/libexec/dmd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 973, "vsz": 4351028, "rss": 14048, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.06", "command": "/usr/libexec/findmydevice-user-agent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 910, "vsz": 4352944, "rss": 23268, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.30", "command": "/System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/A/PrintUITool", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 907, "vsz": 6029632, "rss": 40220, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:04.41", "command": "/Applications/Docker.app/Contents/MacOS/Docker", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 893, "vsz": 4349940, "rss": 9260, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.02", "command": "/System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 892, "vsz": 4383248, "rss": 6772, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.22", "command": "/System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/Support/akd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 879, "vsz": 4351556, "rss": 10716, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.03", "command": "/System/Library/Frameworks/CryptoTokenKit.framework/ctkd -tw", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 877, "vsz": 4351120, "rss": 10972, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.04", "command": "/System/Library/Frameworks/CryptoTokenKit.framework/ctkahp.bundle/Contents/MacOS/ctkahp", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 876, "vsz": 4916624, "rss": 18828, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:25.04", "command": "/Applications/StatusClock.app/Contents/MacOS/StatusClock", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 875, "vsz": 4351000, "rss": 10612, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.03", "command": "/System/Library/Frameworks/CryptoTokenKit.framework/ctkahp.bundle/Contents/MacOS/ctkahp -d", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 873, "vsz": 4386880, "rss": 19176, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.65", "command": "/usr/libexec/adprivacyd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 872, "vsz": 4404124, "rss": 18876, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.64", "command": "/System/Library/PrivateFrameworks/Noticeboard.framework/Versions/A/Resources/nbagent.app/Contents/MacOS/nbagent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 869, "vsz": 4378304, "rss": 19000, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.23", "command": "/System/Library/CoreServices/cloudpaird", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 868, "vsz": 4908268, "rss": 16476, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.61", "command": "/System/Library/CoreServices/AirPlayUIAgent.app/Contents/MacOS/AirPlayUIAgent --launchd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 867, "vsz": 4412948, "rss": 19148, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:01.24", "command": "/Library/enSilo/enSiloCollectorTray.app/Contents/MacOS/enSiloCollectorTray", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 866, "vsz": 4462712, "rss": 31164, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:14.80", "command": "/Applications/Egnyte WebEdit.app/Contents/MacOS/Egnyte WebEdit", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 862, "vsz": 4378812, "rss": 18720, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.20", "command": "/System/Library/Image Capture/Support/icdd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 861, "vsz": 4428128, "rss": 21504, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.77", "command": "/Applications/Ivanti Agent.app/Contents/MacOS/Ivanti Agent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 860, "vsz": 4377808, "rss": 16116, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.09", "command": "/usr/libexec/dmd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 858, "vsz": 4377852, "rss": 12768, "tt": null, "stat": "SN", "started": "12:10PM", "time": "0:00.83", "command": "/usr/local/jamf/bin/jamfAgent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 857, "vsz": 4352244, "rss": 10196, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.56", "command": "/Library/Application Support/LANDesk/bin/ldlockscreen", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 854, "vsz": 4376432, "rss": 12844, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.04", "command": "/System/Library/CoreServices/SocialPushAgent.app/Contents/MacOS/SocialPushAgent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 849, "vsz": 4377680, "rss": 25008, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:01.34", "command": "/System/Library/PrivateFrameworks/CoreSpeech.framework/corespeechd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 848, "vsz": 4380176, "rss": 9436, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.16", "command": "/System/Library/CoreServices/ScopedBookmarkAgent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 847, "vsz": 4382212, "rss": 8684, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.06", "command": "/usr/libexec/dprivacyd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_applepay", "pid": 846, "vsz": 4369436, "rss": 8552, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.09", "command": "/usr/libexec/nfcd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 845, "vsz": 4382244, "rss": 18272, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.08", "command": "/System/Library/PrivateFrameworks/PhotoLibraryPrivate.framework/Versions/A/Support/photolibraryd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 844, "vsz": 4380560, "rss": 19700, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.20", "command": "/System/Library/PrivateFrameworks/CoreRecents.framework/Versions/A/Support/recentsd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 843, "vsz": 4377816, "rss": 11104, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.20", "command": "/System/Library/PrivateFrameworks/IMFoundation.framework/XPCServices/IMRemoteURLConnectionAgent.xpc/Contents/MacOS/IMRemoteURLConnectionAgent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 841, "vsz": 4427448, "rss": 30984, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.52", "command": "/System/Library/Frameworks/MediaLibrary.framework/Versions/A/XPCServices/com.apple.MediaLibraryService.xpc/Contents/MacOS/com.apple.MediaLibraryService", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 835, "vsz": 4404688, "rss": 17872, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.70", "command": "/System/Library/CoreServices/CoreLocationAgent.app/Contents/MacOS/CoreLocationAgent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 830, "vsz": 4378556, "rss": 26096, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.15", "command": "/System/Library/PrivateFrameworks/CloudPhotoServices.framework/Versions/A/Frameworks/CloudPhotosConfigurationXPC.framework/Versions/A/XPCServices/com.apple.CloudPhotosConfiguration.xpc/Contents/MacOS/com.apple.CloudPhotosConfiguration", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 829, "vsz": 4376612, "rss": 7424, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.03", "command": "/System/Library/PrivateFrameworks/QuickLookThumbnailing.framework/Support/com.apple.quicklook.ThumbnailsAgent", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 828, "vsz": 4376860, "rss": 10424, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.03", "command": "/System/Library/PrivateFrameworks/PackageKit.framework/Resources/system_installd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 827, "vsz": 4370136, "rss": 7236, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.05", "command": "/usr/bin/sysdiagnose", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 825, "vsz": 4413016, "rss": 41828, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:38.19", "command": "/System/Library/PrivateFrameworks/PackageKit.framework/Resources/installd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 824, "vsz": 4431344, "rss": 35212, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.91", "command": "/System/Library/CoreServices/cloudphotosd.app/Contents/MacOS/cloudphotosd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "_assetcache", "pid": 823, "vsz": 4380196, "rss": 13200, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.06", "command": "/usr/libexec/AssetCache/AssetCache", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 822, "vsz": 4377668, "rss": 17268, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.35", "command": "/System/Library/CoreServices/diagnostics_agent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 820, "vsz": 4658908, "rss": 28960, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.59", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/corespotlightd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 819, "vsz": 4350040, "rss": 6612, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.04", "command": "/usr/libexec/assertiond", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 818, "vsz": 4378708, "rss": 9060, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.11", "command": "/System/Library/Frameworks/AudioToolbox.framework/AudioComponentRegistrar", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_windowserver", "pid": 816, "vsz": 4852944, "rss": 17092, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.08", "command": "/System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 813, "vsz": 4379112, "rss": 9176, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.18", "command": "/System/Library/PrivateFrameworks/CacheDelete.framework/deleted", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 812, "vsz": 4362324, "rss": 7308, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.05", "command": "/System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCService", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 811, "vsz": 4481656, "rss": 35208, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.28", "command": "/System/Library/PrivateFrameworks/CoreSuggestions.framework/Versions/A/Support/reversetemplated", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 808, "vsz": 4376960, "rss": 11296, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.36", "command": "/System/Library/PrivateFrameworks/CloudDocsDaemon.framework/XPCServices/ContainerMetadataExtractor.xpc/Contents/MacOS/ContainerMetadataExtractor", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 806, "vsz": 4442876, "rss": 9384, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:10.25", "command": "/System/Library/CoreServices/iconservicesagent runAsRoot", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 801, "vsz": 4558148, "rss": 79460, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:05.63", "command": "/System/Library/PrivateFrameworks/CoreSuggestions.framework/Versions/A/Support/suggestd", "cpu_percent": 0.0, "mem_percent": 0.5}, {"user": "kbrazil", "pid": 800, "vsz": 4350336, "rss": 5624, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.06", "command": "/System/Library/Frameworks/ColorSync.framework/Support/colorsync.useragent", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 799, "vsz": 4409480, "rss": 28112, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:02.33", "command": "/System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.Networking.xpc/Contents/MacOS/com.apple.WebKit.Networking", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 798, "vsz": 106607040, "rss": 74640, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:03.12", "command": "/System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent", "cpu_percent": 0.0, "mem_percent": 0.4}, {"user": "kbrazil", "pid": 797, "vsz": 4379824, "rss": 17292, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.09", "command": "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storedownloadd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 795, "vsz": 4350332, "rss": 6060, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.79", "command": "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/XPCServices/com.apple.hiservices-xpcservice.xpc/Contents/MacOS/com.apple.hiservices-xpcservice", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 794, "vsz": 4391072, "rss": 21172, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.67", "command": "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeassetd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 788, "vsz": 4407348, "rss": 23464, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.73", "command": "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeuid.app/Contents/MacOS/storeuid", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 787, "vsz": 4377084, "rss": 10952, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.38", "command": "/System/Library/PrivateFrameworks/AmbientDisplay.framework/Versions/A/XPCServices/com.apple.AmbientDisplayAgent.xpc/Contents/MacOS/com.apple.AmbientDisplayAgent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 785, "vsz": 4870928, "rss": 16980, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.09", "command": "/System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 684, "vsz": 4378128, "rss": 10272, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.03", "command": "/System/Library/CoreServices/Menu Extras/SafeEjectGPUExtra.menu/Contents/XPCServices/SafeEjectGPUService.xpc/Contents/MacOS/SafeEjectGPUService", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 680, "vsz": 4830488, "rss": 8988, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.01", "command": "SafeEjectGPUAgent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 676, "vsz": 4377324, "rss": 9024, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.08", "command": "/usr/libexec/videosubscriptionsd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 667, "vsz": 4378708, "rss": 8388, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.05", "command": "/System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCService", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 665, "vsz": 4381012, "rss": 14124, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.06", "command": "/usr/libexec/keyboardservicesd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 664, "vsz": 4349696, "rss": 4828, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.02", "command": "/System/Library/PrivateFrameworks/IMFoundation.framework/XPCServices/IMRemoteURLConnectionAgent.xpc/Contents/MacOS/IMRemoteURLConnectionAgent", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 661, "vsz": 4342728, "rss": 5728, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.03", "command": "/usr/libexec/spindump_agent", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 659, "vsz": 4808808, "rss": 123400, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:14.00", "command": "/System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell", "cpu_percent": 0.0, "mem_percent": 0.7}, {"user": "root", "pid": 658, "vsz": 4397068, "rss": 25752, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:02.01", "command": "/usr/sbin/spindump", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "_gamecontrollerd", "pid": 642, "vsz": 4350400, "rss": 9932, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.66", "command": "/usr/libexec/gamecontrollerd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 640, "vsz": 4381520, "rss": 8548, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.39", "command": "/System/Library/CoreServices/pbs", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 632, "vsz": 4377376, "rss": 12260, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.82", "command": "/System/Library/PrivateFrameworks/FileProvider.framework/Support/fileproviderd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 631, "vsz": 4382512, "rss": 16596, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.36", "command": "/usr/libexec/knowledge-agent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 627, "vsz": 4380048, "rss": 22356, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.46", "command": "/usr/libexec/findmydeviced", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 617, "vsz": 4383672, "rss": 17012, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.21", "command": "/System/Library/PrivateFrameworks/ContactsDonation.framework/Versions/A/Support/contactsdonationagent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 608, "vsz": 4383852, "rss": 27232, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.52", "command": "/System/Library/PrivateFrameworks/WeatherKit.framework/Versions/A/XPCServices/com.apple.WeatherKitService.xpc/Contents/MacOS/com.apple.WeatherKitService", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 607, "vsz": 4384120, "rss": 15492, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.26", "command": "/System/Library/PrivateFrameworks/CallHistory.framework/Support/CallHistoryPluginHelper", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 606, "vsz": 4349720, "rss": 5564, "tt": "s000", "stat": "Ss", "started": "12:10PM", "time": "0:00.03", "command": "login -pfl kbrazil /bin/bash -c exec -la bash /bin/bash", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 605, "vsz": 4333464, "rss": 9132, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.03", "command": "/System/Library/PrivateFrameworks/CharacterPicker.framework/Versions/A/XPCServices/com.apple.CharacterPicker.FileService.xpc/Contents/MacOS/com.apple.CharacterPicker.FileService", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 604, "vsz": 4383496, "rss": 19992, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.67", "command": "/System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.Networking.xpc/Contents/MacOS/com.apple.WebKit.Networking", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 603, "vsz": 89347532, "rss": 17772, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.67", "command": "/System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 601, "vsz": 4910916, "rss": 32480, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.74", "command": "/System/Library/CoreServices/Dock.app/Contents/XPCServices/com.apple.dock.extra.xpc/Contents/MacOS/com.apple.dock.extra", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 600, "vsz": 4880144, "rss": 18124, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.15", "command": "/System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 599, "vsz": 5091508, "rss": 26004, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:03.30", "command": "/System/Library/Input Methods/EmojiFunctionRowIM.app/Contents/PlugIns/EmojiFunctionRowIM_Extension.appex/Contents/MacOS/EmojiFunctionRowIM_Extension", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 597, "vsz": 4901400, "rss": 15444, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.99", "command": "/System/Library/Input Methods/PressAndHold.app/Contents/PlugIns/PAH_Extension.appex/Contents/MacOS/PAH_Extension", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 596, "vsz": 4385744, "rss": 14876, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.55", "command": "/System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/XPCServices/com.apple.geod.xpc/Contents/MacOS/com.apple.geod", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 595, "vsz": 4390188, "rss": 22924, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.97", "command": "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/commerce", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 594, "vsz": 4376888, "rss": 13284, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.55", "command": "/System/Library/PrivateFrameworks/CoreWLANKit.framework/Versions/A/XPCServices/WiFiProxy.xpc/Contents/MacOS/WiFiProxy", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 593, "vsz": 4380168, "rss": 13432, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.51", "command": "/System/Library/Frameworks/InputMethodKit.framework/Resources/imklaunchagent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 592, "vsz": 4350728, "rss": 6612, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.09", "command": "/usr/sbin/filecoordinationd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 585, "vsz": 4387424, "rss": 23416, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.45", "command": "/System/Library/PrivateFrameworks/CoreParsec.framework/parsecd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 583, "vsz": 4349972, "rss": 9296, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.02", "command": "/System/Library/PrivateFrameworks/CoreFollowUp.framework/Versions/A/Support/followupd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 582, "vsz": 4976452, "rss": 57784, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:03.14", "command": "/System/Library/CoreServices/Spotlight.app/Contents/MacOS/Spotlight", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "kbrazil", "pid": 581, "vsz": 4376388, "rss": 6608, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.04", "command": "/System/Library/PrivateFrameworks/CommunicationsFilter.framework/CMFSyncAgent", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 580, "vsz": 4388628, "rss": 10196, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.76", "command": "/usr/sbin/systemsoundserverd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 576, "vsz": 5097960, "rss": 125460, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:22.64", "command": "/System/Library/CoreServices/Finder.app/Contents/MacOS/Finder", "cpu_percent": 0.0, "mem_percent": 0.7}, {"user": "kbrazil", "pid": 575, "vsz": 4947692, "rss": 48880, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:03.67", "command": "/System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "kbrazil", "pid": 574, "vsz": 4351560, "rss": 17760, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.08", "command": "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeaccountd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 573, "vsz": 5011644, "rss": 48280, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:17.55", "command": "/System/Library/CoreServices/Dock.app/Contents/MacOS/Dock", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "kbrazil", "pid": 572, "vsz": 4381696, "rss": 18568, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:03.47", "command": "/usr/libexec/pkd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_fpsd", "pid": 569, "vsz": 4354012, "rss": 8388, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.14", "command": "/System/Library/PrivateFrameworks/CoreADI.framework/adid", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 567, "vsz": 5001940, "rss": 69900, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:04.34", "command": "/Applications/Contacts.app/Contents/MacOS/Contacts -psn_0_122910", "cpu_percent": 0.0, "mem_percent": 0.4}, {"user": "kbrazil", "pid": 566, "vsz": 5564348, "rss": 185784, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:17.14", "command": "/Applications/Messages.app/Contents/MacOS/Messages -psn_0_118813", "cpu_percent": 0.0, "mem_percent": 1.1}, {"user": "kbrazil", "pid": 565, "vsz": 4379596, "rss": 21048, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.64", "command": "/System/Library/PrivateFrameworks/CloudDocsDaemon.framework/Versions/A/Support/bird", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 564, "vsz": 4385348, "rss": 25344, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.33", "command": "/System/Library/PrivateFrameworks/AssistantServices.framework/Versions/A/Support/assistantd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 563, "vsz": 4379864, "rss": 6348, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.32", "command": "/usr/libexec/swcd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 561, "vsz": 5166204, "rss": 100748, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:07.59", "command": "/Applications/Notes.app/Contents/MacOS/Notes -psn_0_114716", "cpu_percent": 0.0, "mem_percent": 0.6}, {"user": "kbrazil", "pid": 559, "vsz": 4378448, "rss": 18652, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.06", "command": "/System/Library/PrivateFrameworks/FamilyCircle.framework/Versions/A/Resources/familycircled", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 558, "vsz": 5027332, "rss": 83612, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:01.50", "command": "/Applications/Reminders.app/Contents/MacOS/Reminders -psn_0_106522", "cpu_percent": 0.0, "mem_percent": 0.5}, {"user": "kbrazil", "pid": 557, "vsz": 4377880, "rss": 12512, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.15", "command": "/System/Library/PrivateFrameworks/IMFoundation.framework/XPCServices/IMRemoteURLConnectionAgent.xpc/Contents/MacOS/IMRemoteURLConnectionAgent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 555, "vsz": 4388844, "rss": 26608, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.39", "command": "/usr/libexec/fmfd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 554, "vsz": 4349736, "rss": 5680, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.03", "command": "/System/Library/PrivateFrameworks/MediaRemote.framework/Support/mediaremoteagent", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 553, "vsz": 4988888, "rss": 75964, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:05.94", "command": "/Applications/Calendar.app/Contents/MacOS/Calendar -psn_0_98328", "cpu_percent": 0.0, "mem_percent": 0.5}, {"user": "kbrazil", "pid": 552, "vsz": 4387004, "rss": 39564, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:01.59", "command": "/System/Library/PrivateFrameworks/CalendarNotification.framework/Versions/A/XPCServices/CalNCService.xpc/Contents/MacOS/CalNCService", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 551, "vsz": 4387468, "rss": 14204, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.92", "command": "/usr/libexec/nsurlstoraged", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 549, "vsz": 4378576, "rss": 10748, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.57", "command": "/System/Library/PrivateFrameworks/UserActivity.framework/Agents/useractivityd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 548, "vsz": 6316120, "rss": 115788, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:37.83", "command": "/Applications/Sourcetree.app/Contents/MacOS/Sourcetree -psn_0_86037", "cpu_percent": 0.0, "mem_percent": 0.7}, {"user": "kbrazil", "pid": 547, "vsz": 4393608, "rss": 43064, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:03.48", "command": "/usr/libexec/sharingd", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "kbrazil", "pid": 546, "vsz": 4439908, "rss": 123700, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:15.02", "command": "/System/Library/PrivateFrameworks/MessagesKit.framework/Resources/soagent.app/Contents/MacOS/soagent", "cpu_percent": 0.0, "mem_percent": 0.7}, {"user": "kbrazil", "pid": 545, "vsz": 4377880, "rss": 13000, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.18", "command": "/System/Library/PrivateFrameworks/IMFoundation.framework/XPCServices/IMRemoteURLConnectionAgent.xpc/Contents/MacOS/IMRemoteURLConnectionAgent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 543, "vsz": 5163276, "rss": 81292, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:03.70", "command": "/System/Library/CoreServices/NotificationCenter.app/Contents/MacOS/NotificationCenter", "cpu_percent": 0.0, "mem_percent": 0.5}, {"user": "root", "pid": 542, "vsz": 4349756, "rss": 5832, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.02", "command": "/System/Library/CoreServices/CrashReporterSupportHelper server-init", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 541, "vsz": 4379596, "rss": 12232, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:03.76", "command": "/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Support/fontd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 540, "vsz": 4408432, "rss": 14504, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.87", "command": "/System/Library/CoreServices/WiFiAgent.app/Contents/MacOS/WiFiAgent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 537, "vsz": 4445456, "rss": 62588, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:05.62", "command": "/System/Library/PrivateFrameworks/CalendarAgent.framework/Executables/CalendarAgent", "cpu_percent": 0.0, "mem_percent": 0.4}, {"user": "kbrazil", "pid": 536, "vsz": 4342124, "rss": 5516, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.02", "command": "/System/Library/CoreServices/APFSUserAgent", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 535, "vsz": 4378332, "rss": 11004, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.11", "command": "/usr/libexec/networkserviceproxy", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 534, "vsz": 4938220, "rss": 38492, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:02.87", "command": "/System/Library/CoreServices/ControlStrip.app/Contents/MacOS/ControlStrip", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 533, "vsz": 4381904, "rss": 24136, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:01.30", "command": "/usr/sbin/usernoted", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 532, "vsz": 4386616, "rss": 35908, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:02.03", "command": "/usr/libexec/routined LAUNCHED_BY_LAUNCHD", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 531, "vsz": 4379788, "rss": 10132, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.45", "command": "/System/Library/CoreServices/sharedfilelistd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 530, "vsz": 5866640, "rss": 207544, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:40.74", "command": "/Applications/Mail.app/Contents/MacOS/Mail -psn_0_69649", "cpu_percent": 0.0, "mem_percent": 1.2}, {"user": "kbrazil", "pid": 529, "vsz": 4384616, "rss": 11584, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.46", "command": "/System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/Support/akd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 528, "vsz": 4378268, "rss": 19776, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.75", "command": "/usr/libexec/rapportd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 527, "vsz": 4377812, "rss": 7316, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.04", "command": "/usr/sbin/wirelessproxd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 526, "vsz": 4380252, "rss": 13144, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.99", "command": "/usr/libexec/secinitd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 525, "vsz": 4423320, "rss": 19040, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:29.59", "command": "/System/Library/CoreServices/iconservicesagent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 524, "vsz": 4349888, "rss": 19360, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.96", "command": "/System/Library/Frameworks/AddressBook.framework/Executables/ContactsAccountsService", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 523, "vsz": 4434932, "rss": 30768, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.51", "command": "/System/Library/PrivateFrameworks/IMDPersistence.framework/XPCServices/IMDPersistenceAgent.xpc/Contents/MacOS/IMDPersistenceAgent", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 522, "vsz": 4385832, "rss": 29108, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.70", "command": "/System/Library/PrivateFrameworks/IMCore.framework/imagent.app/Contents/MacOS/imagent", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 521, "vsz": 4377276, "rss": 11664, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:02.50", "command": "/System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/XPCServices/ViewBridgeAuxiliary.xpc/Contents/MacOS/ViewBridgeAuxiliary", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 520, "vsz": 4455356, "rss": 44588, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:01.06", "command": "/System/Library/CoreServices/talagent", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "kbrazil", "pid": 519, "vsz": 4392312, "rss": 28916, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:01.77", "command": "/System/Library/PrivateFrameworks/IDS.framework/identityservicesd.app/Contents/MacOS/identityservicesd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 518, "vsz": 4351228, "rss": 8672, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.06", "command": "/System/Library/Frameworks/Security.framework/Versions/A/Resources/CloudKeychainProxy.bundle/Contents/MacOS/CloudKeychainProxy", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 517, "vsz": 4531964, "rss": 56468, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:09.12", "command": "/System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "kbrazil", "pid": 515, "vsz": 4426108, "rss": 52332, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:13.00", "command": "/System/Library/PrivateFrameworks/TelephonyUtilities.framework/callservicesd", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "root", "pid": 514, "vsz": 4377460, "rss": 12404, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.11", "command": "/usr/sbin/WirelessRadioManagerd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 513, "vsz": 4391696, "rss": 19664, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:01.11", "command": "/usr/libexec/nsurlsessiond", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 512, "vsz": 4386144, "rss": 12588, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:01.19", "command": "/System/Library/PrivateFrameworks/TCC.framework/Resources/tccd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 511, "vsz": 4350816, "rss": 6764, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.26", "command": "/usr/libexec/pboard", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 509, "vsz": 4398324, "rss": 36328, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:01.90", "command": "/System/Library/PrivateFrameworks/CloudKitDaemon.framework/Support/cloudd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 508, "vsz": 4378420, "rss": 8852, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.19", "command": "/System/Library/CoreServices/backgroundtaskmanagementagent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 507, "vsz": 4396992, "rss": 24736, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:05.95", "command": "/usr/libexec/secd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 506, "vsz": 4406800, "rss": 25052, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:13.16", "command": "/usr/libexec/trustd --agent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 505, "vsz": 4387720, "rss": 14936, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:01.60", "command": "/usr/libexec/lsd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 503, "vsz": 4391752, "rss": 32332, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:01.43", "command": "/System/Library/Frameworks/CoreTelephony.framework/Support/CommCenter -L", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 502, "vsz": 4382492, "rss": 12936, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:01.69", "command": "/usr/sbin/universalaccessd launchd -s", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 501, "vsz": 4350956, "rss": 6232, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:01.89", "command": "/usr/sbin/distnoted agent", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 499, "vsz": 4379684, "rss": 36572, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:04.20", "command": "/usr/libexec/UserEventAgent (Aqua)", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "root", "pid": 498, "vsz": 4335004, "rss": 5888, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.02", "command": "/usr/libexec/securityd_service", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 497, "vsz": 4376528, "rss": 5120, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.03", "command": "/usr/libexec/biokitaggdd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 496, "vsz": 4350696, "rss": 4052, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:10.88", "command": "/usr/sbin/cfprefsd agent", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 495, "vsz": 4377868, "rss": 13672, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.23", "command": "/usr/libexec/biometrickitd --launchd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 494, "vsz": 4360160, "rss": 9976, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.02", "command": "/System/Library/Frameworks/LocalAuthentication.framework/Support/coreauthd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 493, "vsz": 4379804, "rss": 10952, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:02.24", "command": "/System/Library/PrivateFrameworks/FamilyControls.framework/Resources/parentalcontrolsd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 492, "vsz": 4377524, "rss": 12428, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.13", "command": "/System/Library/Frameworks/LocalAuthentication.framework/Support/coreauthd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 486, "vsz": 4353276, "rss": 8300, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.70", "command": "/System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/XPCServices/com.apple.PerformanceAnalysis.animationperfd.xpc/Contents/MacOS/com.apple.PerformanceAnalysis.animationperfd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 484, "vsz": 4342320, "rss": 4816, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.01", "command": "/System/Library/Frameworks/GSS.framework/Helpers/GSSCred", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 479, "vsz": 4350412, "rss": 6380, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.04", "command": "/System/Library/PrivateFrameworks/SystemAdministration.framework/XPCServices/writeconfig.xpc/Contents/MacOS/writeconfig", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 478, "vsz": 4342088, "rss": 828, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.02", "command": "/System/Library/Frameworks/CoreMediaIO.framework/Versions/A/XPCServices/com.apple.cmio.registerassistantservice.xpc/Contents/MacOS/com.apple.cmio.registerassistantservice", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 477, "vsz": 4342020, "rss": 5736, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.02", "command": "/System/Library/PrivateFrameworks/AccountPolicy.framework/XPCServices/com.apple.AccountPolicyHelper.xpc/Contents/MacOS/com.apple.AccountPolicyHelper", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 473, "vsz": 4377900, "rss": 6388, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.13", "command": "/System/Library/CoreServices/sharedfilelistd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 469, "vsz": 4378208, "rss": 6092, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.17", "command": "/usr/sbin/systemstats --logger-helper /private/var/db/systemstats", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 467, "vsz": 4350608, "rss": 10216, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.02", "command": "/usr/libexec/bootinstalld", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 466, "vsz": 4350176, "rss": 4852, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.90", "command": "/usr/libexec/sysmond", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 462, "vsz": 4350548, "rss": 6272, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.02", "command": "/usr/libexec/colorsyncd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 458, "vsz": 4350956, "rss": 2792, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.07", "command": "/usr/sbin/distnoted agent", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 455, "vsz": 4349780, "rss": 6260, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.04", "command": "/usr/libexec/colorsync.displayservices", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 454, "vsz": 4359372, "rss": 6244, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.03", "command": "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/CVMServer", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 453, "vsz": 4422052, "rss": 19352, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:19.77", "command": "/usr/libexec/TouchBarServer", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_netbios", "pid": 452, "vsz": 4351864, "rss": 9140, "tt": null, "stat": "SNs", "started": "12:10PM", "time": "0:00.19", "command": "/usr/sbin/netbiosd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 439, "vsz": 4378708, "rss": 9752, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.10", "command": "/usr/libexec/secinitd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_captiveagent", "pid": 437, "vsz": 4352040, "rss": 7752, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.09", "command": "/usr/libexec/captiveagent", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 436, "vsz": 4377212, "rss": 10612, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:01.94", "command": "/System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/XPCServices/ViewBridgeAuxiliary.xpc/Contents/MacOS/ViewBridgeAuxiliary", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 434, "vsz": 5359300, "rss": 227192, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "12:47.11", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mds_stores", "cpu_percent": 0.0, "mem_percent": 1.4}, {"user": "root", "pid": 433, "vsz": 4382264, "rss": 14100, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:02.32", "command": "/System/Library/PrivateFrameworks/TCC.framework/Resources/tccd system", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 432, "vsz": 4325156, "rss": 9368, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.06", "command": "/usr/libexec/thermald", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_coreaudiod", "pid": 431, "vsz": 4308980, "rss": 9108, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.02", "command": "/System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 430, "vsz": 4327088, "rss": 8160, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.04", "command": "/System/Library/Frameworks/AudioToolbox.framework/AudioComponentRegistrar -daemon", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 238, "vsz": 4326248, "rss": 5736, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.43", "command": "/usr/libexec/watchdogd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 231, "vsz": 4333528, "rss": 4284, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.02", "command": "/usr/libexec/smd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "_analyticsd", "pid": 226, "vsz": 4377676, "rss": 7640, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.22", "command": "/System/Library/PrivateFrameworks/CoreAnalytics.framework/Support/analyticsd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 219, "vsz": 4353608, "rss": 8452, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.21", "command": "/System/Library/Frameworks/Security.framework/Versions/A/XPCServices/com.apple.CodeSigningHelper.xpc/Contents/MacOS/com.apple.CodeSigningHelper", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_nsurlstoraged", "pid": 218, "vsz": 4333992, "rss": 7276, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.05", "command": "/usr/libexec/nsurlstoraged --privileged", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 208, "vsz": 4344232, "rss": 6608, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.23", "command": "/System/Library/PrivateFrameworks/CoreSymbolication.framework/coresymbolicationd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 206, "vsz": 4378040, "rss": 32244, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.85", "command": "/System/Library/CoreServices/backupd.bundle/Contents/Resources/backupd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "root", "pid": 205, "vsz": 4376512, "rss": 10420, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.14", "command": "/System/Library/CoreServices/SubmitDiagInfo server-init", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 204, "vsz": 4381436, "rss": 11328, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:11.52", "command": "/usr/libexec/ApplicationFirewall/socketfilterfw", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_softwareupdate", "pid": 203, "vsz": 4350340, "rss": 6212, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.06", "command": "/System/Library/PrivateFrameworks/BridgeOSSoftwareUpdate.framework/Support/bosUpdateProxy", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "_cmiodalassistants", "pid": 202, "vsz": 4407184, "rss": 9580, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.13", "command": "/System/Library/Frameworks/CoreMediaIO.framework/Resources/VDC.plugin/Contents/Resources/VDCAssistant", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 201, "vsz": 4377604, "rss": 8744, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.08", "command": "/usr/libexec/usbd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 200, "vsz": 4390308, "rss": 18380, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:24.98", "command": "/usr/libexec/airportd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 199, "vsz": 4341540, "rss": 5932, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.03", "command": "/usr/libexec/apfsd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 198, "vsz": 4341584, "rss": 9656, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.02", "command": "/System/Library/CryptoTokenKit/com.apple.ifdreader.slotd/Contents/MacOS/com.apple.ifdreader", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 197, "vsz": 4324096, "rss": 4988, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.01", "command": "/usr/libexec/multiversed", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 195, "vsz": 4377600, "rss": 6824, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.57", "command": "/usr/sbin/mDNSResponderHelper", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "_mdnsresponder", "pid": 194, "vsz": 4379160, "rss": 9800, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:05.65", "command": "/usr/sbin/mDNSResponder", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_networkd", "pid": 193, "vsz": 4445724, "rss": 12528, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:06.46", "command": "/usr/libexec/symptomsd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 190, "vsz": 4485936, "rss": 60600, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:19.02", "command": "/usr/libexec/lsd runAsRoot", "cpu_percent": 0.0, "mem_percent": 0.4}, {"user": "root", "pid": 189, "vsz": 4378276, "rss": 9560, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.60", "command": "/System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Support/awdd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 188, "vsz": 4378384, "rss": 9384, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:04.39", "command": "/usr/libexec/nehelper", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_coreaudiod", "pid": 187, "vsz": 4377092, "rss": 7368, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.11", "command": "/System/Library/Frameworks/CoreAudio.framework/Versions/A/XPCServices/com.apple.audio.DriverHelper.xpc/Contents/MacOS/com.apple.audio.DriverHelper", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 186, "vsz": 4382916, "rss": 17364, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:03.63", "command": "/System/Library/PrivateFrameworks/CoreDuetContext.framework/Resources/contextstored", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_coreaudiod", "pid": 185, "vsz": 4395472, "rss": 28312, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "1:25.16", "command": "/usr/sbin/coreaudiod", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "_ctkd", "pid": 182, "vsz": 4343256, "rss": 9920, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.02", "command": "/System/Library/Frameworks/CryptoTokenKit.framework/ctkd -s", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_nsurlsessiond", "pid": 168, "vsz": 4386244, "rss": 18692, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.86", "command": "/usr/libexec/nsurlsessiond --privileged", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 166, "vsz": 4383064, "rss": 16204, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:01.40", "command": "/usr/libexec/mobileassetd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 159, "vsz": 4393864, "rss": 20384, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:38.79", "command": "/usr/libexec/trustd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 157, "vsz": 4350244, "rss": 8900, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.03", "command": "/System/Library/Frameworks/PCSC.framework/Versions/A/XPCServices/com.apple.ctkpcscd.xpc/Contents/MacOS/com.apple.ctkpcscd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 133, "vsz": 4394316, "rss": 11452, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:08.08", "command": "/System/Library/CoreServices/coreservicesd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 127, "vsz": 4350224, "rss": 3880, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:09.33", "command": "/usr/sbin/cfprefsd daemon", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 125, "vsz": 4390992, "rss": 25616, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:12.30", "command": "/usr/libexec/syspolicyd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "root", "pid": 124, "vsz": 4350296, "rss": 5160, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.04", "command": "aslmanager", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 123, "vsz": 4380688, "rss": 11612, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:01.38", "command": "/System/Library/Frameworks/Security.framework/Versions/A/XPCServices/authd.xpc/Contents/MacOS/authd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_distnote", "pid": 121, "vsz": 4350956, "rss": 3552, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:01.09", "command": "/usr/sbin/distnoted daemon", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 119, "vsz": 4384264, "rss": 13624, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:04.21", "command": "/usr/libexec/amfid", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 118, "vsz": 4333888, "rss": 6380, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.54", "command": "/usr/libexec/taskgated", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 116, "vsz": 4300784, "rss": 2292, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:10.22", "command": "/usr/sbin/notifyd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 115, "vsz": 4378012, "rss": 13284, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.60", "command": "/usr/libexec/AirPlayXPCHelper", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 114, "vsz": 4379576, "rss": 14924, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.72", "command": "/usr/libexec/corebrightnessd --launchd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 113, "vsz": 4394556, "rss": 45396, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:04.54", "command": "/usr/libexec/sandboxd", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "root", "pid": 110, "vsz": 4381320, "rss": 10772, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:01.30", "command": "/usr/sbin/bluetoothd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 108, "vsz": 4354196, "rss": 6548, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.21", "command": "/Library/Application Support/LANDesk/bin/lddispatch -p ipc:///Library/Application Support/LANDesk/tmp/socket/sys -s", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 107, "vsz": 4317140, "rss": 4824, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.01", "command": "/usr/sbin/KernelEventAgent", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 106, "vsz": 4378980, "rss": 5368, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.11", "command": "/System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Support/revisiond", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 105, "vsz": 4349848, "rss": 6400, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.07", "command": "/System/Library/CoreServices/logind", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 104, "vsz": 4980336, "rss": 40300, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:03.02", "command": "/System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow console", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "root", "pid": 103, "vsz": 4350036, "rss": 5588, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.05", "command": "/Library/Tanium/TaniumClient/TaniumClient -d", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 101, "vsz": 4377748, "rss": 11904, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:03.30", "command": "/usr/libexec/PerfPowerServices", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 99, "vsz": 4402096, "rss": 20148, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:03.32", "command": "/Library/Application Support/LANDesk/bin/IVMetrics.app/Contents/MacOS/IVMetrics --monitor", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 97, "vsz": 4382008, "rss": 13756, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:02.68", "command": "/usr/libexec/dasd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_displaypolicyd", "pid": 96, "vsz": 4352920, "rss": 10628, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.08", "command": "/usr/libexec/displaypolicyd -k 1", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 95, "vsz": 4342100, "rss": 5456, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.02", "command": "autofsd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 94, "vsz": 4383340, "rss": 15224, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:01.61", "command": "/Library/Application Support/LANDesk/bin/ldscheduler", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 92, "vsz": 4369340, "rss": 8376, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.05", "command": "/Library/Application Support/LANDesk/bin/ldwatch", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "_locationd", "pid": 91, "vsz": 4388832, "rss": 16756, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:10.47", "command": "/usr/libexec/locationd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_usbmuxd", "pid": 89, "vsz": 4377220, "rss": 6116, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.30", "command": "/System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/Resources/usbmuxd -launchd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 88, "vsz": 4382596, "rss": 15592, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:07.13", "command": "/usr/sbin/securityd -i", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 87, "vsz": 4362160, "rss": 10212, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:04.24", "command": "/Library/Application Support/LANDesk/bin/ldtmc", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_timed", "pid": 85, "vsz": 4376816, "rss": 7152, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.33", "command": "/usr/libexec/timed", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 84, "vsz": 4380380, "rss": 12440, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:05.12", "command": "/System/Library/CoreServices/launchservicesd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 83, "vsz": 4350540, "rss": 4068, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.02", "command": "/System/Library/PrivateFrameworks/Noticeboard.framework/Versions/A/Resources/nbstated", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 82, "vsz": 4391948, "rss": 7132, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.04", "command": "/Library/PrivilegedHelperTools/com.docker.vmnetd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 81, "vsz": 4382876, "rss": 22668, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:01.51", "command": "/System/Library/PrivateFrameworks/ApplePushService.framework/apsd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 80, "vsz": 4357072, "rss": 8548, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.88", "command": "/Library/Application Support/LANDesk/bin/ldremote", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 76, "vsz": 4384748, "rss": 20528, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:02.04", "command": "/usr/libexec/coreduetd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 75, "vsz": 4377452, "rss": 30052, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:06.74", "command": "/System/Library/CoreServices/backupd.bundle/Contents/Resources/backupd-helper -launchd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "root", "pid": 71, "vsz": 4376396, "rss": 7496, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:01.66", "command": "/usr/libexec/diskarbitrationd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "_iconservices", "pid": 70, "vsz": 4351356, "rss": 4792, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.03", "command": "/System/Library/CoreServices/iconservicesd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 69, "vsz": 4384136, "rss": 9832, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.94", "command": "/Library/Application Support/LANDesk/bin/IVRemoteControl.app/Contents/MacOS/ivremote", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 68, "vsz": 4578216, "rss": 80268, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "1:38.14", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Support/mds", "cpu_percent": 0.0, "mem_percent": 0.5}, {"user": "root", "pid": 62, "vsz": 4341688, "rss": 4920, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.02", "command": "/usr/libexec/keybagd -t 15", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 61, "vsz": 4456772, "rss": 28244, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:10.04", "command": "/usr/libexec/logd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "root", "pid": 56, "vsz": 4384592, "rss": 20860, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:03.31", "command": "/Library/Application Support/BeyondTrust/pbmac/pbmacd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 55, "vsz": 4383344, "rss": 12924, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:02.57", "command": "/usr/libexec/configd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 53, "vsz": 4381976, "rss": 14184, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:05.66", "command": "/usr/sbin/systemstats --daemon", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_appleevents", "pid": 52, "vsz": 4379980, "rss": 8812, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.27", "command": "/System/Library/CoreServices/appleeventsd --server", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 49, "vsz": 4379068, "rss": 24416, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.43", "command": "/System/Library/PrivateFrameworks/MediaRemote.framework/Support/mediaremoted", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 48, "vsz": 4388436, "rss": 25180, "tt": null, "stat": "SNs", "started": "12:10PM", "time": "0:01.89", "command": "/usr/local/jamf/bin/jamf launchDaemon -monitorUsage", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "root", "pid": 46, "vsz": 5130616, "rss": 13252, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:53.59", "command": "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/Support/fseventsd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 45, "vsz": 4391256, "rss": 26976, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:06.00", "command": "/usr/libexec/kextd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "root", "pid": 44, "vsz": 4324820, "rss": 5224, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.42", "command": "/System/Library/PrivateFrameworks/Uninstall.framework/Resources/uninstalld", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 41, "vsz": 4379304, "rss": 19440, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:02.23", "command": "/usr/libexec/UserEventAgent (System)", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 40, "vsz": 4350620, "rss": 1168, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.91", "command": "/usr/sbin/syslogd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 1, "vsz": 4373320, "rss": 21308, "tt": null, "stat": "Ss", "started": "12:09PM", "time": "1:08.19", "command": "/sbin/launchd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 69357, "vsz": 4268540, "rss": 1092, "tt": "s000", "stat": "R+", "started": "3:49PM", "time": "0:00.00", "command": "ps axu", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 1043, "vsz": 0, "rss": 0, "tt": null, "stat": "Z", "started": "12:10PM", "time": "0:00.00", "command": "(uname)", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 69327, "vsz": 4333636, "rss": 6556, "tt": null, "stat": "Ss", "started": "3:49PM", "time": "0:00.02", "command": "/System/Library/PrivateFrameworks/Heimdal.framework/Helpers/kcm --launchd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 68539, "vsz": 4374360, "rss": 4264, "tt": null, "stat": "Ss", "started": "3:44PM", "time": "0:00.35", "command": "/Library/Tanium/TaniumClient/Tools/Detect3/TaniumDetectEngine", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 68384, "vsz": 4378164, "rss": 16744, "tt": null, "stat": "S", "started": "3:44PM", "time": "0:00.09", "command": "/System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/XPCServices/com.apple.iCloudHelper.xpc/Contents/MacOS/com.apple.iCloudHelper", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 65695, "vsz": 4367412, "rss": 7260, "tt": null, "stat": "Ss", "started": "3:40PM", "time": "0:00.11", "command": "/usr/sbin/ocspd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "_spotlight", "pid": 64688, "vsz": 4474860, "rss": 71244, "tt": null, "stat": "S", "started": "3:35PM", "time": "0:01.25", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared", "cpu_percent": 0.0, "mem_percent": 0.4}, {"user": "_spotlight", "pid": 64654, "vsz": 4358600, "rss": 17180, "tt": null, "stat": "S", "started": "3:35PM", "time": "0:00.10", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_spotlight", "pid": 64600, "vsz": 4466284, "rss": 61156, "tt": null, "stat": "S", "started": "3:35PM", "time": "0:01.16", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared", "cpu_percent": 0.0, "mem_percent": 0.4}, {"user": "_spotlight", "pid": 64599, "vsz": 4358600, "rss": 17760, "tt": null, "stat": "S", "started": "3:35PM", "time": "0:00.06", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_spotlight", "pid": 64595, "vsz": 4434452, "rss": 29604, "tt": null, "stat": "S", "started": "3:35PM", "time": "0:00.17", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 64594, "vsz": 4396884, "rss": 20956, "tt": null, "stat": "S", "started": "3:35PM", "time": "0:00.70", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_spotlight", "pid": 64590, "vsz": 4422896, "rss": 18484, "tt": null, "stat": "S", "started": "3:35PM", "time": "0:00.11", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_spotlight", "pid": 64530, "vsz": 4385716, "rss": 53908, "tt": null, "stat": "S", "started": "3:35PM", "time": "0:00.23", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "_spotlight", "pid": 64529, "vsz": 4365596, "rss": 29632, "tt": null, "stat": "S", "started": "3:35PM", "time": "0:00.16", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "_spotlight", "pid": 64474, "vsz": 4355696, "rss": 37196, "tt": null, "stat": "S", "started": "3:34PM", "time": "0:00.14", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared", "cpu_percent": 0.0, "mem_percent": 0.2}] jc-1.17.3/tests/fixtures/osx-10.14.6/ps-axu.out000066400000000000000000001653131415226333200206100ustar00rootroot00000000000000USER PID %CPU %MEM VSZ RSS TT STAT STARTED TIME COMMAND kbrazil 1046 3.7 3.0 6595412 498788 ?? S 12:10PM 7:53.61 com.docker.hyperkit -A -u -F vms/0/hyperkit.pid -c 4 -m 2048M -s 0:0,hostbridge -s 31,lpc -s 1:0,virtio-vpnkit,path=vpnkit.eth.sock,uuid=0bed4206-a5b8-40bf-b1fa-02cb5d5a7f54 -U 573cd650-b0d4-41ed-a405-9cffcdcd24cb -s 2:0,ahci-hd,/Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/Docker.raw -s 3,virtio-sock,guest_cid=3,path=vms/0,guest_forwards=2376;1525 -s 4,ahci-cd,/Applications/Docker.app/Contents/Resources/linuxkit/docker-desktop.iso -s 5,ahci-cd,vms/0/config.iso -s 6,ahci-cd,/Applications/Docker.app/Contents/Resources/linuxkit/docker.iso -s 7,virtio-rnd -l com1,autopty=vms/0/tty,asl -f bootrom,/Applications/Docker.app/Contents/Resources/uefi/UEFI.fd,, kbrazil 556 3.5 0.7 5046052 109592 ?? S 12:10PM 0:37.91 /Applications/Utilities/Terminal.app/Contents/MacOS/Terminal -psn_0_102425 _hidd 112 1.7 0.1 4382500 9940 ?? Ss 12:10PM 2:47.17 /usr/libexec/hidd kbrazil 633 1.1 0.4 4421912 61740 ?? S 12:10PM 1:48.29 /Applications/Sublime Text.app/Contents/MacOS/plugin_host 560 --auto-shell-env root 86 0.9 0.4 4486620 72908 ?? Ss 12:10PM 1:24.14 /Library/enSilo/enSiloCollector root 58 0.7 0.1 4383244 14084 ?? Ss 12:10PM 1:23.52 /Library/Application Support/JAMF/Jamf.app/Contents/MacOS/JamfDaemon.app/Contents/MacOS/JamfDaemon _windowserver 192 0.6 0.6 7877628 101144 ?? Ss 12:10PM 10:51.11 /System/Library/PrivateFrameworks/SkyLight.framework/Resources/WindowServer -daemon root 15535 0.5 0.1 4368408 23672 ?? Ss 12:48PM 2:17.82 /Library/Tanium/TaniumClient/Tools/Trace/TaniumRecorder kbrazil 8297 0.4 4.5 6938128 754604 ?? S 12:23PM 2:37.81 /Applications/Microsoft Outlook.app/Contents/MacOS/Microsoft Outlook kbrazil 609 0.3 0.0 4325216 1556 s000 S 12:10PM 0:00.14 -bash kbrazil 560 0.2 1.1 5376996 180740 ?? S 12:10PM 2:56.43 /Applications/Sublime Text.app/Contents/MacOS/Sublime Text -psn_0_110619 root 57 0.1 0.1 4377044 13180 ?? Ss 12:10PM 0:10.25 /System/Library/CoreServices/powerd.bundle/powerd root 216 0.1 0.1 4362088 10252 ?? S 12:10PM 0:14.18 /Library/Tanium/TaniumClient/TaniumClient -m root 79 0.1 0.1 4404900 18656 ?? Ss 12:10PM 0:28.23 /usr/libexec/opendirectoryd root 57231 0.0 0.1 4315924 11092 ?? Ss 3:13PM 0:00.04 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeinstalld kbrazil 57229 0.0 0.1 4378256 13020 ?? S 3:13PM 0:00.13 /System/Library/CoreServices/mapspushd kbrazil 54954 0.0 0.1 4390412 14248 ?? S 3:01PM 0:00.08 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.single _spotlight 54454 0.0 0.2 4425076 37128 ?? S 2:58PM 0:02.19 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared _spotlight 54453 0.0 0.3 4442200 54860 ?? S 2:58PM 0:03.34 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared kbrazil 54435 0.0 0.1 4371660 14552 ?? S 2:58PM 0:00.58 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared kbrazil 51461 0.0 0.0 4307192 5396 ?? S 2:50PM 0:00.01 /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/XPCServices/com.apple.accessibility.mediaaccessibilityd.xpc/Contents/MacOS/com.apple.accessibility.mediaaccessibilityd kbrazil 51460 0.0 0.1 4316148 9196 ?? Ss 2:50PM 0:00.01 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper _spotlight 48283 0.0 0.1 4358676 12708 ?? S 2:42PM 0:00.32 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared _spotlight 48282 0.0 0.1 4370660 13524 ?? S 2:42PM 0:00.47 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared kbrazil 37224 0.0 0.1 4371764 23364 ?? S 2:00PM 0:01.93 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared kbrazil 37211 0.0 0.2 4316408 28756 ?? S 2:00PM 0:12.71 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/Resources/Python.app/Contents/MacOS/Python -B /Users/kbrazil/Library/Application Support/Sublime Text 3/Packages/Anaconda/anaconda_server/jsonserver.py -p git 51762 -e /Users/kbrazil/git 633 kbrazil 37114 0.0 0.1 4363676 24892 ?? S 2:00PM 0:02.90 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared kbrazil 37112 0.0 0.1 4363532 24976 ?? S 2:00PM 0:03.67 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared kbrazil 37111 0.0 0.1 4371764 23808 ?? S 2:00PM 0:02.17 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared kbrazil 36910 0.0 0.1 4408440 15596 ?? S 1:59PM 0:00.42 /System/Library/CoreServices/CoreServicesUIAgent.app/Contents/MacOS/CoreServicesUIAgent kbrazil 33592 0.0 0.1 4923136 16688 ?? S 1:48PM 0:00.39 /System/Library/CoreServices/OSDUIHelper.app/Contents/MacOS/OSDUIHelper kbrazil 33536 0.0 0.1 4871376 12472 ?? Ss 1:48PM 0:00.11 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService kbrazil 28662 0.0 0.0 4350188 4528 ?? S 1:30PM 0:00.02 /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/XPCServices/com.apple.tonelibraryd.xpc/Contents/MacOS/com.apple.tonelibraryd root 28349 0.0 0.3 4376368 42396 ?? S 1:28PM 0:03.20 /Library/Tanium/TaniumClient/TaniumClient -a kbrazil 24327 0.0 0.1 106190056 23576 ?? Ss 1:25PM 0:00.54 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent root 24324 0.0 0.2 4379072 39528 ?? S 1:25PM 0:41.29 /Library/Tanium/TaniumClient/TaniumClient -c kbrazil 24307 0.0 0.2 4468340 32696 ?? Ss 1:25PM 0:00.07 /System/Library/Frameworks/SafariServices.framework/Versions/A/XPCServices/com.apple.SafariServices.xpc/Contents/MacOS/com.apple.SafariServices kbrazil 24306 0.0 0.1 4389156 20372 ?? Ss 1:25PM 0:00.47 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.Networking.xpc/Contents/MacOS/com.apple.WebKit.Networking kbrazil 24149 0.0 0.1 4914400 16384 ?? S 1:24PM 0:00.44 /System/Library/Frameworks/LocalAuthentication.framework/Support/coreautha.bundle/Contents/MacOS/coreautha kbrazil 24002 0.0 0.0 4343176 7892 ?? S 1:12PM 0:00.02 /usr/libexec/USBAgent kbrazil 23999 0.0 0.0 4368704 4992 ?? S 1:12PM 0:00.03 /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent --launchd root 23995 0.0 0.0 4378708 6748 ?? S 1:12PM 0:00.14 /usr/libexec/secinitd root 23994 0.0 0.1 4386588 9564 ?? S 1:12PM 0:00.45 /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/XPCServices/com.apple.geod.xpc/Contents/MacOS/com.apple.geod _softwareupdate 17515 0.0 0.1 4352904 9716 ?? Ss 12:50PM 0:00.04 /System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdate_download_service _softwareupdate 17500 0.0 0.0 4342764 1176 ?? S 12:50PM 0:00.06 /usr/sbin/distnoted agent _softwareupdate 17499 0.0 0.0 4309216 1200 ?? S 12:50PM 0:00.09 /usr/sbin/cfprefsd agent _atsserver 17495 0.0 0.0 4378548 7852 ?? Ss 12:50PM 0:00.14 /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Support/fontd kbrazil 14604 0.0 0.1 4378208 8868 ?? S 12:46PM 0:00.14 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdwrite kbrazil 9214 0.0 0.1 4925960 17848 ?? S 12:29PM 0:00.93 /System/Library/CoreServices/NowPlayingTouchUI.app/Contents/MacOS/NowPlayingTouchUI kbrazil 8325 0.0 0.0 4324132 8156 ?? S 12:24PM 0:00.03 /System/Library/PrivateFrameworks/CoreCDP.framework/Versions/A/Resources/cdpd kbrazil 8322 0.0 0.1 4385988 15792 ?? S 12:24PM 0:00.57 /System/Library/PrivateFrameworks/CloudServices.framework/Versions/A/XPCServices/com.apple.sbd.xpc/Contents/MacOS/com.apple.sbd kbrazil 8321 0.0 0.2 4349992 26068 ?? S 12:24PM 0:00.08 /System/Library/CoreServices/EscrowSecurityAlert.app/Contents/MacOS/EscrowSecurityAlert kbrazil 8314 0.0 0.1 4383492 19548 ?? Ss 12:23PM 0:00.61 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.Networking.xpc/Contents/MacOS/com.apple.WebKit.Networking kbrazil 8311 0.0 0.1 4384516 19548 ?? Ss 12:23PM 0:00.60 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.Networking.xpc/Contents/MacOS/com.apple.WebKit.Networking kbrazil 8310 0.0 0.1 89351692 15404 ?? Ss 12:23PM 0:00.57 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent _spotlight 3836 0.0 0.1 4378508 10824 ?? S 12:17PM 0:05.81 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker-sizing -c MDSSizingWorker -m com.apple.mdworker.sizing kbrazil 3835 0.0 0.1 4378524 10908 ?? S 12:17PM 0:00.70 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker-sizing -c MDSSizingWorker -m com.apple.mdworker.sizing kbrazil 3724 0.0 0.0 4376420 5196 ?? S 12:17PM 0:00.07 /System/Library/PrivateFrameworks/ContextKit.framework/Versions/A/XPCServices/ContextService.xpc/Contents/MacOS/ContextService kbrazil 3468 0.0 0.2 4496632 30660 ?? S 12:17PM 0:02.79 /System/Library/CoreServices/SafariSupport.bundle/Contents/MacOS/SafariBookmarksSyncAgent kbrazil 3464 0.0 0.2 4368200 25980 ?? S 12:17PM 0:00.10 /System/Library/PrivateFrameworks/PhotoAnalysis.framework/Versions/A/Support/photoanalysisd kbrazil 3457 0.0 0.1 4380232 16996 ?? S 12:16PM 0:00.81 /System/Library/PrivateFrameworks/AppStoreDaemon.framework/Support/appstoreagent kbrazil 3021 0.0 0.0 4411016 5496 ?? S 12:15PM 0:00.22 /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Support/atsd root 1431 0.0 0.0 4354884 6456 ?? Ss 12:12PM 0:00.27 /usr/libexec/mobileactivationd kbrazil 1353 0.0 0.0 4333556 8332 ?? Ss 12:11PM 0:00.01 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper kbrazil 1351 0.0 0.1 4388208 10216 ?? S 12:11PM 0:00.34 /System/Library/Frameworks/ApplicationServices.framework/Frameworks/SpeechSynthesis.framework/Resources/com.apple.speech.speechsynthesisd kbrazil 1331 0.0 0.0 4378708 6044 ?? Ss 12:11PM 0:00.04 /System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCService kbrazil 1302 0.0 0.5 106614828 82516 ?? Ss 12:11PM 0:02.60 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent _spotlight 1205 0.0 0.0 4350956 1456 ?? S 12:11PM 0:00.10 /usr/sbin/distnoted agent kbrazil 1123 0.0 0.0 4381656 7128 ?? S 12:11PM 0:00.32 /System/Library/PrivateFrameworks/AssetCacheServices.framework/Versions/A/XPCServices/AssetCacheLocatorService.xpc/Contents/MacOS/AssetCacheLocatorService -a _spotlight 1121 0.0 0.1 4380928 8772 ?? S 12:11PM 0:00.89 /usr/libexec/trustd --agent kbrazil 1103 0.0 0.1 4342256 9368 ?? S 12:11PM 0:00.03 /System/Library/Frameworks/ApplicationServices.framework/Frameworks/PrintCore.framework/Versions/A/printtool agent kbrazil 1055 0.0 0.1 4380576 12184 ?? Ss 12:10PM 0:00.09 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/XPCServices/com.apple.CommerceKit.TransactionService.xpc/Contents/MacOS/com.apple.CommerceKit.TransactionService kbrazil 1054 0.0 0.1 4404180 20960 ?? S 12:10PM 0:00.57 /System/Library/PrivateFrameworks/CommerceKit.framework/Resources/LaterAgent.app/Contents/MacOS/LaterAgent kbrazil 1051 0.0 0.1 4377564 15308 ?? S 12:10PM 0:00.08 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storelegacy root 1049 0.0 0.1 4342452 9868 ?? Ss 12:10PM 0:00.03 /System/Library/CoreServices/Software Update.app/Contents/Resources/suhelperd _softwareupdate 1048 0.0 0.2 4525656 39208 ?? Ss 12:10PM 0:06.83 /System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdated kbrazil 1047 0.0 0.1 4351004 11404 ?? S 12:10PM 0:00.06 /System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdate_notify_agent kbrazil 1045 0.0 0.1 4880144 10584 ?? Ss 12:10PM 0:00.10 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService kbrazil 1042 0.0 0.1 4425016 11232 ?? S 12:10PM 0:00.64 com.docker.backend -addr fd:3 kbrazil 1041 0.0 0.1 4522468 20676 ?? S 12:10PM 0:01.02 com.docker.driver.amd64-linux -addr fd:3 -debug kbrazil 1040 0.0 0.1 4399292 21372 ?? S 12:10PM 0:02.05 com.docker.vpnkit --ethernet fd:3 --diagnostics fd:4 --pcap fd:5 --vsock-path vms/0/connect --gateway-forwards /Users/kbrazil/Library/Group Containers/group.com.docker/gateway_forwards.json --host-names host.docker.internal,docker.for.mac.host.internal,docker.for.mac.localhost --listen-backlog 32 --mtu 1500 --allowed-bind-addresses 0.0.0.0 --http /Users/kbrazil/Library/Group Containers/group.com.docker/http_proxy.json --dhcp /Users/kbrazil/Library/Group Containers/group.com.docker/dhcp.json --port-max-idle-time 300 --max-connections 2000 --gateway-ip 192.168.65.1 --host-ip 192.168.65.2 --lowest-ip 192.168.65.3 --highest-ip 192.168.65.254 --log-destination asl --udpv4-forwards 123:127.0.0.1:58011 --gc-compact-interval 1800 kbrazil 1039 0.0 0.1 4369156 14612 ?? S 12:10PM 0:12.36 com.docker.osxfs serve --address fd:3 --connect vms/0/connect --control fd:4 --log-destination asl kbrazil 1037 0.0 0.1 4482108 12420 ?? S 12:10PM 0:00.91 /Applications/Docker.app/Contents/MacOS/com.docker.supervisor -watchdog fd:0 kbrazil 1036 0.0 0.0 4350828 5028 ?? S 12:10PM 0:00.03 /usr/libexec/loginitemregisterd _locationd 1023 0.0 0.0 4381528 7384 ?? S 12:10PM 0:00.19 /usr/libexec/trustd --agent _locationd 1022 0.0 0.0 4350176 1204 ?? S 12:10PM 0:00.11 /usr/sbin/cfprefsd agent _locationd 1017 0.0 0.0 4378884 6784 ?? S 12:10PM 0:00.12 /usr/libexec/secinitd _locationd 1015 0.0 0.0 4381456 8384 ?? S 12:10PM 0:00.25 /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/XPCServices/com.apple.geod.xpc/Contents/MacOS/com.apple.geod root 984 0.0 0.1 4377748 15280 ?? Ss 12:10PM 0:00.07 /usr/libexec/dmd kbrazil 973 0.0 0.1 4351028 14048 ?? S 12:10PM 0:00.06 /usr/libexec/findmydevice-user-agent kbrazil 910 0.0 0.1 4352944 23268 ?? S 12:10PM 0:00.30 /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/A/PrintUITool kbrazil 907 0.0 0.2 6029632 40220 ?? S 12:10PM 0:04.41 /Applications/Docker.app/Contents/MacOS/Docker kbrazil 893 0.0 0.1 4349940 9260 ?? Ss 12:10PM 0:00.02 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper root 892 0.0 0.0 4383248 6772 ?? Ss 12:10PM 0:00.22 /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/Support/akd kbrazil 879 0.0 0.1 4351556 10716 ?? S 12:10PM 0:00.03 /System/Library/Frameworks/CryptoTokenKit.framework/ctkd -tw kbrazil 877 0.0 0.1 4351120 10972 ?? S 12:10PM 0:00.04 /System/Library/Frameworks/CryptoTokenKit.framework/ctkahp.bundle/Contents/MacOS/ctkahp kbrazil 876 0.0 0.1 4916624 18828 ?? S 12:10PM 0:25.04 /Applications/StatusClock.app/Contents/MacOS/StatusClock root 875 0.0 0.1 4351000 10612 ?? Ss 12:10PM 0:00.03 /System/Library/Frameworks/CryptoTokenKit.framework/ctkahp.bundle/Contents/MacOS/ctkahp -d kbrazil 873 0.0 0.1 4386880 19176 ?? S 12:10PM 0:00.65 /usr/libexec/adprivacyd kbrazil 872 0.0 0.1 4404124 18876 ?? S 12:10PM 0:00.64 /System/Library/PrivateFrameworks/Noticeboard.framework/Versions/A/Resources/nbagent.app/Contents/MacOS/nbagent kbrazil 869 0.0 0.1 4378304 19000 ?? S 12:10PM 0:00.23 /System/Library/CoreServices/cloudpaird kbrazil 868 0.0 0.1 4908268 16476 ?? S 12:10PM 0:00.61 /System/Library/CoreServices/AirPlayUIAgent.app/Contents/MacOS/AirPlayUIAgent --launchd kbrazil 867 0.0 0.1 4412948 19148 ?? S 12:10PM 0:01.24 /Library/enSilo/enSiloCollectorTray.app/Contents/MacOS/enSiloCollectorTray kbrazil 866 0.0 0.2 4462712 31164 ?? S 12:10PM 0:14.80 /Applications/Egnyte WebEdit.app/Contents/MacOS/Egnyte WebEdit kbrazil 862 0.0 0.1 4378812 18720 ?? S 12:10PM 0:00.20 /System/Library/Image Capture/Support/icdd kbrazil 861 0.0 0.1 4428128 21504 ?? S 12:10PM 0:00.77 /Applications/Ivanti Agent.app/Contents/MacOS/Ivanti Agent kbrazil 860 0.0 0.1 4377808 16116 ?? S 12:10PM 0:00.09 /usr/libexec/dmd kbrazil 858 0.0 0.1 4377852 12768 ?? SN 12:10PM 0:00.83 /usr/local/jamf/bin/jamfAgent root 857 0.0 0.1 4352244 10196 ?? S 12:10PM 0:00.56 /Library/Application Support/LANDesk/bin/ldlockscreen kbrazil 854 0.0 0.1 4376432 12844 ?? S 12:10PM 0:00.04 /System/Library/CoreServices/SocialPushAgent.app/Contents/MacOS/SocialPushAgent kbrazil 849 0.0 0.1 4377680 25008 ?? S 12:10PM 0:01.34 /System/Library/PrivateFrameworks/CoreSpeech.framework/corespeechd kbrazil 848 0.0 0.1 4380176 9436 ?? S 12:10PM 0:00.16 /System/Library/CoreServices/ScopedBookmarkAgent root 847 0.0 0.1 4382212 8684 ?? Ss 12:10PM 0:00.06 /usr/libexec/dprivacyd _applepay 846 0.0 0.1 4369436 8552 ?? Ss 12:10PM 0:00.09 /usr/libexec/nfcd kbrazil 845 0.0 0.1 4382244 18272 ?? S 12:10PM 0:00.08 /System/Library/PrivateFrameworks/PhotoLibraryPrivate.framework/Versions/A/Support/photolibraryd kbrazil 844 0.0 0.1 4380560 19700 ?? S 12:10PM 0:00.20 /System/Library/PrivateFrameworks/CoreRecents.framework/Versions/A/Support/recentsd kbrazil 843 0.0 0.1 4377816 11104 ?? Ss 12:10PM 0:00.20 /System/Library/PrivateFrameworks/IMFoundation.framework/XPCServices/IMRemoteURLConnectionAgent.xpc/Contents/MacOS/IMRemoteURLConnectionAgent kbrazil 841 0.0 0.2 4427448 30984 ?? Ss 12:10PM 0:00.52 /System/Library/Frameworks/MediaLibrary.framework/Versions/A/XPCServices/com.apple.MediaLibraryService.xpc/Contents/MacOS/com.apple.MediaLibraryService kbrazil 835 0.0 0.1 4404688 17872 ?? S 12:10PM 0:00.70 /System/Library/CoreServices/CoreLocationAgent.app/Contents/MacOS/CoreLocationAgent kbrazil 830 0.0 0.2 4378556 26096 ?? S 12:10PM 0:00.15 /System/Library/PrivateFrameworks/CloudPhotoServices.framework/Versions/A/Frameworks/CloudPhotosConfigurationXPC.framework/Versions/A/XPCServices/com.apple.CloudPhotosConfiguration.xpc/Contents/MacOS/com.apple.CloudPhotosConfiguration kbrazil 829 0.0 0.0 4376612 7424 ?? S 12:10PM 0:00.03 /System/Library/PrivateFrameworks/QuickLookThumbnailing.framework/Support/com.apple.quicklook.ThumbnailsAgent root 828 0.0 0.1 4376860 10424 ?? Ss 12:10PM 0:00.03 /System/Library/PrivateFrameworks/PackageKit.framework/Resources/system_installd root 827 0.0 0.0 4370136 7236 ?? Ss 12:10PM 0:00.05 /usr/bin/sysdiagnose root 825 0.0 0.2 4413016 41828 ?? Ss 12:10PM 0:38.19 /System/Library/PrivateFrameworks/PackageKit.framework/Resources/installd kbrazil 824 0.0 0.2 4431344 35212 ?? S 12:10PM 0:00.91 /System/Library/CoreServices/cloudphotosd.app/Contents/MacOS/cloudphotosd _assetcache 823 0.0 0.1 4380196 13200 ?? Ss 12:10PM 0:00.06 /usr/libexec/AssetCache/AssetCache kbrazil 822 0.0 0.1 4377668 17268 ?? S 12:10PM 0:00.35 /System/Library/CoreServices/diagnostics_agent kbrazil 820 0.0 0.2 4658908 28960 ?? S 12:10PM 0:00.59 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/corespotlightd kbrazil 819 0.0 0.0 4350040 6612 ?? S 12:10PM 0:00.04 /usr/libexec/assertiond kbrazil 818 0.0 0.1 4378708 9060 ?? S 12:10PM 0:00.11 /System/Library/Frameworks/AudioToolbox.framework/AudioComponentRegistrar _windowserver 816 0.0 0.1 4852944 17092 ?? Ss 12:10PM 0:00.08 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService kbrazil 813 0.0 0.1 4379112 9176 ?? S 12:10PM 0:00.18 /System/Library/PrivateFrameworks/CacheDelete.framework/deleted kbrazil 812 0.0 0.0 4362324 7308 ?? Ss 12:10PM 0:00.05 /System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCService kbrazil 811 0.0 0.2 4481656 35208 ?? S 12:10PM 0:00.28 /System/Library/PrivateFrameworks/CoreSuggestions.framework/Versions/A/Support/reversetemplated kbrazil 808 0.0 0.1 4376960 11296 ?? Ss 12:10PM 0:00.36 /System/Library/PrivateFrameworks/CloudDocsDaemon.framework/XPCServices/ContainerMetadataExtractor.xpc/Contents/MacOS/ContainerMetadataExtractor root 806 0.0 0.1 4442876 9384 ?? Ss 12:10PM 0:10.25 /System/Library/CoreServices/iconservicesagent runAsRoot kbrazil 801 0.0 0.5 4558148 79460 ?? S 12:10PM 0:05.63 /System/Library/PrivateFrameworks/CoreSuggestions.framework/Versions/A/Support/suggestd kbrazil 800 0.0 0.0 4350336 5624 ?? S 12:10PM 0:00.06 /System/Library/Frameworks/ColorSync.framework/Support/colorsync.useragent kbrazil 799 0.0 0.2 4409480 28112 ?? Ss 12:10PM 0:02.33 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.Networking.xpc/Contents/MacOS/com.apple.WebKit.Networking kbrazil 798 0.0 0.4 106607040 74640 ?? Ss 12:10PM 0:03.12 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent kbrazil 797 0.0 0.1 4379824 17292 ?? S 12:10PM 0:00.09 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storedownloadd kbrazil 795 0.0 0.0 4350332 6060 ?? S 12:10PM 0:00.79 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/XPCServices/com.apple.hiservices-xpcservice.xpc/Contents/MacOS/com.apple.hiservices-xpcservice kbrazil 794 0.0 0.1 4391072 21172 ?? S 12:10PM 0:00.67 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeassetd kbrazil 788 0.0 0.1 4407348 23464 ?? S 12:10PM 0:00.73 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeuid.app/Contents/MacOS/storeuid root 787 0.0 0.1 4377084 10952 ?? Ss 12:10PM 0:00.38 /System/Library/PrivateFrameworks/AmbientDisplay.framework/Versions/A/XPCServices/com.apple.AmbientDisplayAgent.xpc/Contents/MacOS/com.apple.AmbientDisplayAgent kbrazil 785 0.0 0.1 4870928 16980 ?? Ss 12:10PM 0:00.09 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService kbrazil 684 0.0 0.1 4378128 10272 ?? S 12:10PM 0:00.03 /System/Library/CoreServices/Menu Extras/SafeEjectGPUExtra.menu/Contents/XPCServices/SafeEjectGPUService.xpc/Contents/MacOS/SafeEjectGPUService kbrazil 680 0.0 0.1 4830488 8988 ?? S 12:10PM 0:00.01 SafeEjectGPUAgent kbrazil 676 0.0 0.1 4377324 9024 ?? S 12:10PM 0:00.08 /usr/libexec/videosubscriptionsd kbrazil 667 0.0 0.0 4378708 8388 ?? Ss 12:10PM 0:00.05 /System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCService kbrazil 665 0.0 0.1 4381012 14124 ?? S 12:10PM 0:00.06 /usr/libexec/keyboardservicesd kbrazil 664 0.0 0.0 4349696 4828 ?? Ss 12:10PM 0:00.02 /System/Library/PrivateFrameworks/IMFoundation.framework/XPCServices/IMRemoteURLConnectionAgent.xpc/Contents/MacOS/IMRemoteURLConnectionAgent kbrazil 661 0.0 0.0 4342728 5728 ?? S 12:10PM 0:00.03 /usr/libexec/spindump_agent kbrazil 659 0.0 0.7 4808808 123400 ?? S 12:10PM 0:14.00 /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell root 658 0.0 0.2 4397068 25752 ?? Ss 12:10PM 0:02.01 /usr/sbin/spindump _gamecontrollerd 642 0.0 0.1 4350400 9932 ?? Ss 12:10PM 0:00.66 /usr/libexec/gamecontrollerd kbrazil 640 0.0 0.1 4381520 8548 ?? S 12:10PM 0:00.39 /System/Library/CoreServices/pbs kbrazil 632 0.0 0.1 4377376 12260 ?? S 12:10PM 0:00.82 /System/Library/PrivateFrameworks/FileProvider.framework/Support/fileproviderd kbrazil 631 0.0 0.1 4382512 16596 ?? S 12:10PM 0:00.36 /usr/libexec/knowledge-agent root 627 0.0 0.1 4380048 22356 ?? Ss 12:10PM 0:00.46 /usr/libexec/findmydeviced kbrazil 617 0.0 0.1 4383672 17012 ?? S 12:10PM 0:00.21 /System/Library/PrivateFrameworks/ContactsDonation.framework/Versions/A/Support/contactsdonationagent kbrazil 608 0.0 0.2 4383852 27232 ?? Ss 12:10PM 0:00.52 /System/Library/PrivateFrameworks/WeatherKit.framework/Versions/A/XPCServices/com.apple.WeatherKitService.xpc/Contents/MacOS/com.apple.WeatherKitService kbrazil 607 0.0 0.1 4384120 15492 ?? S 12:10PM 0:00.26 /System/Library/PrivateFrameworks/CallHistory.framework/Support/CallHistoryPluginHelper root 606 0.0 0.0 4349720 5564 s000 Ss 12:10PM 0:00.03 login -pfl kbrazil /bin/bash -c exec -la bash /bin/bash kbrazil 605 0.0 0.1 4333464 9132 ?? S 12:10PM 0:00.03 /System/Library/PrivateFrameworks/CharacterPicker.framework/Versions/A/XPCServices/com.apple.CharacterPicker.FileService.xpc/Contents/MacOS/com.apple.CharacterPicker.FileService kbrazil 604 0.0 0.1 4383496 19992 ?? Ss 12:10PM 0:00.67 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.Networking.xpc/Contents/MacOS/com.apple.WebKit.Networking kbrazil 603 0.0 0.1 89347532 17772 ?? Ss 12:10PM 0:00.67 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent kbrazil 601 0.0 0.2 4910916 32480 ?? Ss 12:10PM 0:00.74 /System/Library/CoreServices/Dock.app/Contents/XPCServices/com.apple.dock.extra.xpc/Contents/MacOS/com.apple.dock.extra kbrazil 600 0.0 0.1 4880144 18124 ?? Ss 12:10PM 0:00.15 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService kbrazil 599 0.0 0.2 5091508 26004 ?? Ss 12:10PM 0:03.30 /System/Library/Input Methods/EmojiFunctionRowIM.app/Contents/PlugIns/EmojiFunctionRowIM_Extension.appex/Contents/MacOS/EmojiFunctionRowIM_Extension kbrazil 597 0.0 0.1 4901400 15444 ?? Ss 12:10PM 0:00.99 /System/Library/Input Methods/PressAndHold.app/Contents/PlugIns/PAH_Extension.appex/Contents/MacOS/PAH_Extension kbrazil 596 0.0 0.1 4385744 14876 ?? S 12:10PM 0:00.55 /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/XPCServices/com.apple.geod.xpc/Contents/MacOS/com.apple.geod kbrazil 595 0.0 0.1 4390188 22924 ?? S 12:10PM 0:00.97 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/commerce kbrazil 594 0.0 0.1 4376888 13284 ?? Ss 12:10PM 0:00.55 /System/Library/PrivateFrameworks/CoreWLANKit.framework/Versions/A/XPCServices/WiFiProxy.xpc/Contents/MacOS/WiFiProxy kbrazil 593 0.0 0.1 4380168 13432 ?? S 12:10PM 0:00.51 /System/Library/Frameworks/InputMethodKit.framework/Resources/imklaunchagent root 592 0.0 0.0 4350728 6612 ?? Ss 12:10PM 0:00.09 /usr/sbin/filecoordinationd kbrazil 585 0.0 0.1 4387424 23416 ?? S 12:10PM 0:00.45 /System/Library/PrivateFrameworks/CoreParsec.framework/parsecd kbrazil 583 0.0 0.1 4349972 9296 ?? S 12:10PM 0:00.02 /System/Library/PrivateFrameworks/CoreFollowUp.framework/Versions/A/Support/followupd kbrazil 582 0.0 0.3 4976452 57784 ?? S 12:10PM 0:03.14 /System/Library/CoreServices/Spotlight.app/Contents/MacOS/Spotlight kbrazil 581 0.0 0.0 4376388 6608 ?? S 12:10PM 0:00.04 /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CMFSyncAgent root 580 0.0 0.1 4388628 10196 ?? Ss 12:10PM 0:00.76 /usr/sbin/systemsoundserverd kbrazil 576 0.0 0.7 5097960 125460 ?? S 12:10PM 0:22.64 /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder kbrazil 575 0.0 0.3 4947692 48880 ?? S 12:10PM 0:03.67 /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer kbrazil 574 0.0 0.1 4351560 17760 ?? S 12:10PM 0:00.08 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeaccountd kbrazil 573 0.0 0.3 5011644 48280 ?? S 12:10PM 0:17.55 /System/Library/CoreServices/Dock.app/Contents/MacOS/Dock kbrazil 572 0.0 0.1 4381696 18568 ?? S 12:10PM 0:03.47 /usr/libexec/pkd _fpsd 569 0.0 0.0 4354012 8388 ?? Ss 12:10PM 0:00.14 /System/Library/PrivateFrameworks/CoreADI.framework/adid kbrazil 567 0.0 0.4 5001940 69900 ?? S 12:10PM 0:04.34 /Applications/Contacts.app/Contents/MacOS/Contacts -psn_0_122910 kbrazil 566 0.0 1.1 5564348 185784 ?? S 12:10PM 0:17.14 /Applications/Messages.app/Contents/MacOS/Messages -psn_0_118813 kbrazil 565 0.0 0.1 4379596 21048 ?? S 12:10PM 0:00.64 /System/Library/PrivateFrameworks/CloudDocsDaemon.framework/Versions/A/Support/bird kbrazil 564 0.0 0.2 4385348 25344 ?? S 12:10PM 0:00.33 /System/Library/PrivateFrameworks/AssistantServices.framework/Versions/A/Support/assistantd kbrazil 563 0.0 0.0 4379864 6348 ?? S 12:10PM 0:00.32 /usr/libexec/swcd kbrazil 561 0.0 0.6 5166204 100748 ?? S 12:10PM 0:07.59 /Applications/Notes.app/Contents/MacOS/Notes -psn_0_114716 kbrazil 559 0.0 0.1 4378448 18652 ?? S 12:10PM 0:00.06 /System/Library/PrivateFrameworks/FamilyCircle.framework/Versions/A/Resources/familycircled kbrazil 558 0.0 0.5 5027332 83612 ?? S 12:10PM 0:01.50 /Applications/Reminders.app/Contents/MacOS/Reminders -psn_0_106522 kbrazil 557 0.0 0.1 4377880 12512 ?? Ss 12:10PM 0:00.15 /System/Library/PrivateFrameworks/IMFoundation.framework/XPCServices/IMRemoteURLConnectionAgent.xpc/Contents/MacOS/IMRemoteURLConnectionAgent kbrazil 555 0.0 0.2 4388844 26608 ?? S 12:10PM 0:00.39 /usr/libexec/fmfd kbrazil 554 0.0 0.0 4349736 5680 ?? S 12:10PM 0:00.03 /System/Library/PrivateFrameworks/MediaRemote.framework/Support/mediaremoteagent kbrazil 553 0.0 0.5 4988888 75964 ?? S 12:10PM 0:05.94 /Applications/Calendar.app/Contents/MacOS/Calendar -psn_0_98328 kbrazil 552 0.0 0.2 4387004 39564 ?? Ss 12:10PM 0:01.59 /System/Library/PrivateFrameworks/CalendarNotification.framework/Versions/A/XPCServices/CalNCService.xpc/Contents/MacOS/CalNCService kbrazil 551 0.0 0.1 4387468 14204 ?? S 12:10PM 0:00.92 /usr/libexec/nsurlstoraged kbrazil 549 0.0 0.1 4378576 10748 ?? S 12:10PM 0:00.57 /System/Library/PrivateFrameworks/UserActivity.framework/Agents/useractivityd kbrazil 548 0.0 0.7 6316120 115788 ?? S 12:10PM 0:37.83 /Applications/Sourcetree.app/Contents/MacOS/Sourcetree -psn_0_86037 kbrazil 547 0.0 0.3 4393608 43064 ?? S 12:10PM 0:03.48 /usr/libexec/sharingd kbrazil 546 0.0 0.7 4439908 123700 ?? S 12:10PM 0:15.02 /System/Library/PrivateFrameworks/MessagesKit.framework/Resources/soagent.app/Contents/MacOS/soagent kbrazil 545 0.0 0.1 4377880 13000 ?? Ss 12:10PM 0:00.18 /System/Library/PrivateFrameworks/IMFoundation.framework/XPCServices/IMRemoteURLConnectionAgent.xpc/Contents/MacOS/IMRemoteURLConnectionAgent kbrazil 543 0.0 0.5 5163276 81292 ?? S 12:10PM 0:03.70 /System/Library/CoreServices/NotificationCenter.app/Contents/MacOS/NotificationCenter root 542 0.0 0.0 4349756 5832 ?? Ss 12:10PM 0:00.02 /System/Library/CoreServices/CrashReporterSupportHelper server-init kbrazil 541 0.0 0.1 4379596 12232 ?? S 12:10PM 0:03.76 /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Support/fontd kbrazil 540 0.0 0.1 4408432 14504 ?? S 12:10PM 0:00.87 /System/Library/CoreServices/WiFiAgent.app/Contents/MacOS/WiFiAgent kbrazil 537 0.0 0.4 4445456 62588 ?? S 12:10PM 0:05.62 /System/Library/PrivateFrameworks/CalendarAgent.framework/Executables/CalendarAgent kbrazil 536 0.0 0.0 4342124 5516 ?? S 12:10PM 0:00.02 /System/Library/CoreServices/APFSUserAgent kbrazil 535 0.0 0.1 4378332 11004 ?? S 12:10PM 0:00.11 /usr/libexec/networkserviceproxy kbrazil 534 0.0 0.2 4938220 38492 ?? S 12:10PM 0:02.87 /System/Library/CoreServices/ControlStrip.app/Contents/MacOS/ControlStrip kbrazil 533 0.0 0.1 4381904 24136 ?? S 12:10PM 0:01.30 /usr/sbin/usernoted kbrazil 532 0.0 0.2 4386616 35908 ?? S 12:10PM 0:02.03 /usr/libexec/routined LAUNCHED_BY_LAUNCHD kbrazil 531 0.0 0.1 4379788 10132 ?? S 12:10PM 0:00.45 /System/Library/CoreServices/sharedfilelistd kbrazil 530 0.0 1.2 5866640 207544 ?? S 12:10PM 0:40.74 /Applications/Mail.app/Contents/MacOS/Mail -psn_0_69649 kbrazil 529 0.0 0.1 4384616 11584 ?? S 12:10PM 0:00.46 /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/Support/akd kbrazil 528 0.0 0.1 4378268 19776 ?? S 12:10PM 0:00.75 /usr/libexec/rapportd root 527 0.0 0.0 4377812 7316 ?? Ss 12:10PM 0:00.04 /usr/sbin/wirelessproxd kbrazil 526 0.0 0.1 4380252 13144 ?? S 12:10PM 0:00.99 /usr/libexec/secinitd kbrazil 525 0.0 0.1 4423320 19040 ?? S 12:10PM 0:29.59 /System/Library/CoreServices/iconservicesagent kbrazil 524 0.0 0.1 4349888 19360 ?? S 12:10PM 0:00.96 /System/Library/Frameworks/AddressBook.framework/Executables/ContactsAccountsService kbrazil 523 0.0 0.2 4434932 30768 ?? S 12:10PM 0:00.51 /System/Library/PrivateFrameworks/IMDPersistence.framework/XPCServices/IMDPersistenceAgent.xpc/Contents/MacOS/IMDPersistenceAgent kbrazil 522 0.0 0.2 4385832 29108 ?? S 12:10PM 0:00.70 /System/Library/PrivateFrameworks/IMCore.framework/imagent.app/Contents/MacOS/imagent kbrazil 521 0.0 0.1 4377276 11664 ?? S 12:10PM 0:02.50 /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/XPCServices/ViewBridgeAuxiliary.xpc/Contents/MacOS/ViewBridgeAuxiliary kbrazil 520 0.0 0.3 4455356 44588 ?? S 12:10PM 0:01.06 /System/Library/CoreServices/talagent kbrazil 519 0.0 0.2 4392312 28916 ?? S 12:10PM 0:01.77 /System/Library/PrivateFrameworks/IDS.framework/identityservicesd.app/Contents/MacOS/identityservicesd kbrazil 518 0.0 0.1 4351228 8672 ?? S 12:10PM 0:00.06 /System/Library/Frameworks/Security.framework/Versions/A/Resources/CloudKeychainProxy.bundle/Contents/MacOS/CloudKeychainProxy kbrazil 517 0.0 0.3 4531964 56468 ?? S 12:10PM 0:09.12 /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd kbrazil 515 0.0 0.3 4426108 52332 ?? S 12:10PM 0:13.00 /System/Library/PrivateFrameworks/TelephonyUtilities.framework/callservicesd root 514 0.0 0.1 4377460 12404 ?? Ss 12:10PM 0:00.11 /usr/sbin/WirelessRadioManagerd kbrazil 513 0.0 0.1 4391696 19664 ?? S 12:10PM 0:01.11 /usr/libexec/nsurlsessiond kbrazil 512 0.0 0.1 4386144 12588 ?? S 12:10PM 0:01.19 /System/Library/PrivateFrameworks/TCC.framework/Resources/tccd kbrazil 511 0.0 0.0 4350816 6764 ?? S 12:10PM 0:00.26 /usr/libexec/pboard kbrazil 509 0.0 0.2 4398324 36328 ?? S 12:10PM 0:01.90 /System/Library/PrivateFrameworks/CloudKitDaemon.framework/Support/cloudd kbrazil 508 0.0 0.1 4378420 8852 ?? S 12:10PM 0:00.19 /System/Library/CoreServices/backgroundtaskmanagementagent kbrazil 507 0.0 0.1 4396992 24736 ?? S 12:10PM 0:05.95 /usr/libexec/secd kbrazil 506 0.0 0.1 4406800 25052 ?? S 12:10PM 0:13.16 /usr/libexec/trustd --agent kbrazil 505 0.0 0.1 4387720 14936 ?? S 12:10PM 0:01.60 /usr/libexec/lsd kbrazil 503 0.0 0.2 4391752 32332 ?? S 12:10PM 0:01.43 /System/Library/Frameworks/CoreTelephony.framework/Support/CommCenter -L kbrazil 502 0.0 0.1 4382492 12936 ?? S 12:10PM 0:01.69 /usr/sbin/universalaccessd launchd -s kbrazil 501 0.0 0.0 4350956 6232 ?? S 12:10PM 0:01.89 /usr/sbin/distnoted agent kbrazil 499 0.0 0.2 4379684 36572 ?? S 12:10PM 0:04.20 /usr/libexec/UserEventAgent (Aqua) root 498 0.0 0.0 4335004 5888 ?? Ss 12:10PM 0:00.02 /usr/libexec/securityd_service root 497 0.0 0.0 4376528 5120 ?? Ss 12:10PM 0:00.03 /usr/libexec/biokitaggdd kbrazil 496 0.0 0.0 4350696 4052 ?? S 12:10PM 0:10.88 /usr/sbin/cfprefsd agent root 495 0.0 0.1 4377868 13672 ?? Ss 12:10PM 0:00.23 /usr/libexec/biometrickitd --launchd kbrazil 494 0.0 0.1 4360160 9976 ?? S 12:10PM 0:00.02 /System/Library/Frameworks/LocalAuthentication.framework/Support/coreauthd root 493 0.0 0.1 4379804 10952 ?? Ss 12:10PM 0:02.24 /System/Library/PrivateFrameworks/FamilyControls.framework/Resources/parentalcontrolsd root 492 0.0 0.1 4377524 12428 ?? Ss 12:10PM 0:00.13 /System/Library/Frameworks/LocalAuthentication.framework/Support/coreauthd root 486 0.0 0.0 4353276 8300 ?? Ss 12:10PM 0:00.70 /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/XPCServices/com.apple.PerformanceAnalysis.animationperfd.xpc/Contents/MacOS/com.apple.PerformanceAnalysis.animationperfd root 484 0.0 0.0 4342320 4816 ?? Ss 12:10PM 0:00.01 /System/Library/Frameworks/GSS.framework/Helpers/GSSCred root 479 0.0 0.0 4350412 6380 ?? Ss 12:10PM 0:00.04 /System/Library/PrivateFrameworks/SystemAdministration.framework/XPCServices/writeconfig.xpc/Contents/MacOS/writeconfig root 478 0.0 0.0 4342088 828 ?? Ss 12:10PM 0:00.02 /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/XPCServices/com.apple.cmio.registerassistantservice.xpc/Contents/MacOS/com.apple.cmio.registerassistantservice root 477 0.0 0.0 4342020 5736 ?? Ss 12:10PM 0:00.02 /System/Library/PrivateFrameworks/AccountPolicy.framework/XPCServices/com.apple.AccountPolicyHelper.xpc/Contents/MacOS/com.apple.AccountPolicyHelper root 473 0.0 0.0 4377900 6388 ?? Ss 12:10PM 0:00.13 /System/Library/CoreServices/sharedfilelistd root 469 0.0 0.0 4378208 6092 ?? S 12:10PM 0:00.17 /usr/sbin/systemstats --logger-helper /private/var/db/systemstats root 467 0.0 0.1 4350608 10216 ?? Ss 12:10PM 0:00.02 /usr/libexec/bootinstalld root 466 0.0 0.0 4350176 4852 ?? Ss 12:10PM 0:00.90 /usr/libexec/sysmond root 462 0.0 0.0 4350548 6272 ?? Ss 12:10PM 0:00.02 /usr/libexec/colorsyncd root 458 0.0 0.0 4350956 2792 ?? S 12:10PM 0:00.07 /usr/sbin/distnoted agent root 455 0.0 0.0 4349780 6260 ?? Ss 12:10PM 0:00.04 /usr/libexec/colorsync.displayservices root 454 0.0 0.0 4359372 6244 ?? Ss 12:10PM 0:00.03 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/CVMServer root 453 0.0 0.1 4422052 19352 ?? Ss 12:10PM 0:19.77 /usr/libexec/TouchBarServer _netbios 452 0.0 0.1 4351864 9140 ?? SNs 12:10PM 0:00.19 /usr/sbin/netbiosd root 439 0.0 0.1 4378708 9752 ?? Ss 12:10PM 0:00.10 /usr/libexec/secinitd _captiveagent 437 0.0 0.0 4352040 7752 ?? Ss 12:10PM 0:00.09 /usr/libexec/captiveagent root 436 0.0 0.1 4377212 10612 ?? S 12:10PM 0:01.94 /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/XPCServices/ViewBridgeAuxiliary.xpc/Contents/MacOS/ViewBridgeAuxiliary root 434 0.0 1.4 5359300 227192 ?? Ss 12:10PM 12:47.11 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mds_stores root 433 0.0 0.1 4382264 14100 ?? Ss 12:10PM 0:02.32 /System/Library/PrivateFrameworks/TCC.framework/Resources/tccd system root 432 0.0 0.1 4325156 9368 ?? Ss 12:10PM 0:00.06 /usr/libexec/thermald _coreaudiod 431 0.0 0.1 4308980 9108 ?? Ss 12:10PM 0:00.02 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper root 430 0.0 0.0 4327088 8160 ?? Ss 12:10PM 0:00.04 /System/Library/Frameworks/AudioToolbox.framework/AudioComponentRegistrar -daemon root 238 0.0 0.0 4326248 5736 ?? Ss 12:10PM 0:00.43 /usr/libexec/watchdogd root 231 0.0 0.0 4333528 4284 ?? Ss 12:10PM 0:00.02 /usr/libexec/smd _analyticsd 226 0.0 0.0 4377676 7640 ?? Ss 12:10PM 0:00.22 /System/Library/PrivateFrameworks/CoreAnalytics.framework/Support/analyticsd root 219 0.0 0.1 4353608 8452 ?? Ss 12:10PM 0:00.21 /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/com.apple.CodeSigningHelper.xpc/Contents/MacOS/com.apple.CodeSigningHelper _nsurlstoraged 218 0.0 0.0 4333992 7276 ?? Ss 12:10PM 0:00.05 /usr/libexec/nsurlstoraged --privileged root 208 0.0 0.0 4344232 6608 ?? Ss 12:10PM 0:00.23 /System/Library/PrivateFrameworks/CoreSymbolication.framework/coresymbolicationd root 206 0.0 0.2 4378040 32244 ?? Ss 12:10PM 0:00.85 /System/Library/CoreServices/backupd.bundle/Contents/Resources/backupd root 205 0.0 0.1 4376512 10420 ?? Ss 12:10PM 0:00.14 /System/Library/CoreServices/SubmitDiagInfo server-init root 204 0.0 0.1 4381436 11328 ?? Ss 12:10PM 0:11.52 /usr/libexec/ApplicationFirewall/socketfilterfw _softwareupdate 203 0.0 0.0 4350340 6212 ?? Ss 12:10PM 0:00.06 /System/Library/PrivateFrameworks/BridgeOSSoftwareUpdate.framework/Support/bosUpdateProxy _cmiodalassistants 202 0.0 0.1 4407184 9580 ?? Ss 12:10PM 0:00.13 /System/Library/Frameworks/CoreMediaIO.framework/Resources/VDC.plugin/Contents/Resources/VDCAssistant root 201 0.0 0.1 4377604 8744 ?? Ss 12:10PM 0:00.08 /usr/libexec/usbd root 200 0.0 0.1 4390308 18380 ?? Ss 12:10PM 0:24.98 /usr/libexec/airportd root 199 0.0 0.0 4341540 5932 ?? Ss 12:10PM 0:00.03 /usr/libexec/apfsd root 198 0.0 0.1 4341584 9656 ?? Ss 12:10PM 0:00.02 /System/Library/CryptoTokenKit/com.apple.ifdreader.slotd/Contents/MacOS/com.apple.ifdreader root 197 0.0 0.0 4324096 4988 ?? Ss 12:10PM 0:00.01 /usr/libexec/multiversed root 195 0.0 0.0 4377600 6824 ?? Ss 12:10PM 0:00.57 /usr/sbin/mDNSResponderHelper _mdnsresponder 194 0.0 0.1 4379160 9800 ?? Ss 12:10PM 0:05.65 /usr/sbin/mDNSResponder _networkd 193 0.0 0.1 4445724 12528 ?? Ss 12:10PM 0:06.46 /usr/libexec/symptomsd root 190 0.0 0.4 4485936 60600 ?? Ss 12:10PM 0:19.02 /usr/libexec/lsd runAsRoot root 189 0.0 0.1 4378276 9560 ?? Ss 12:10PM 0:00.60 /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Support/awdd root 188 0.0 0.1 4378384 9384 ?? Ss 12:10PM 0:04.39 /usr/libexec/nehelper _coreaudiod 187 0.0 0.0 4377092 7368 ?? Ss 12:10PM 0:00.11 /System/Library/Frameworks/CoreAudio.framework/Versions/A/XPCServices/com.apple.audio.DriverHelper.xpc/Contents/MacOS/com.apple.audio.DriverHelper root 186 0.0 0.1 4382916 17364 ?? Ss 12:10PM 0:03.63 /System/Library/PrivateFrameworks/CoreDuetContext.framework/Resources/contextstored _coreaudiod 185 0.0 0.2 4395472 28312 ?? Ss 12:10PM 1:25.16 /usr/sbin/coreaudiod _ctkd 182 0.0 0.1 4343256 9920 ?? Ss 12:10PM 0:00.02 /System/Library/Frameworks/CryptoTokenKit.framework/ctkd -s _nsurlsessiond 168 0.0 0.1 4386244 18692 ?? Ss 12:10PM 0:00.86 /usr/libexec/nsurlsessiond --privileged root 166 0.0 0.1 4383064 16204 ?? Ss 12:10PM 0:01.40 /usr/libexec/mobileassetd root 159 0.0 0.1 4393864 20384 ?? Ss 12:10PM 0:38.79 /usr/libexec/trustd root 157 0.0 0.1 4350244 8900 ?? Ss 12:10PM 0:00.03 /System/Library/Frameworks/PCSC.framework/Versions/A/XPCServices/com.apple.ctkpcscd.xpc/Contents/MacOS/com.apple.ctkpcscd root 133 0.0 0.1 4394316 11452 ?? Ss 12:10PM 0:08.08 /System/Library/CoreServices/coreservicesd root 127 0.0 0.0 4350224 3880 ?? Ss 12:10PM 0:09.33 /usr/sbin/cfprefsd daemon root 125 0.0 0.2 4390992 25616 ?? Ss 12:10PM 0:12.30 /usr/libexec/syspolicyd root 124 0.0 0.0 4350296 5160 ?? Ss 12:10PM 0:00.04 aslmanager root 123 0.0 0.1 4380688 11612 ?? Ss 12:10PM 0:01.38 /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/authd.xpc/Contents/MacOS/authd _distnote 121 0.0 0.0 4350956 3552 ?? Ss 12:10PM 0:01.09 /usr/sbin/distnoted daemon root 119 0.0 0.1 4384264 13624 ?? Ss 12:10PM 0:04.21 /usr/libexec/amfid root 118 0.0 0.0 4333888 6380 ?? Ss 12:10PM 0:00.54 /usr/libexec/taskgated root 116 0.0 0.0 4300784 2292 ?? Ss 12:10PM 0:10.22 /usr/sbin/notifyd root 115 0.0 0.1 4378012 13284 ?? Ss 12:10PM 0:00.60 /usr/libexec/AirPlayXPCHelper root 114 0.0 0.1 4379576 14924 ?? Ss 12:10PM 0:00.72 /usr/libexec/corebrightnessd --launchd root 113 0.0 0.3 4394556 45396 ?? Ss 12:10PM 0:04.54 /usr/libexec/sandboxd root 110 0.0 0.1 4381320 10772 ?? Ss 12:10PM 0:01.30 /usr/sbin/bluetoothd root 108 0.0 0.0 4354196 6548 ?? Ss 12:10PM 0:00.21 /Library/Application Support/LANDesk/bin/lddispatch -p ipc:///Library/Application Support/LANDesk/tmp/socket/sys -s root 107 0.0 0.0 4317140 4824 ?? Ss 12:10PM 0:00.01 /usr/sbin/KernelEventAgent root 106 0.0 0.0 4378980 5368 ?? Ss 12:10PM 0:00.11 /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Support/revisiond root 105 0.0 0.0 4349848 6400 ?? Ss 12:10PM 0:00.07 /System/Library/CoreServices/logind kbrazil 104 0.0 0.2 4980336 40300 ?? Ss 12:10PM 0:03.02 /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow console root 103 0.0 0.0 4350036 5588 ?? Ss 12:10PM 0:00.05 /Library/Tanium/TaniumClient/TaniumClient -d root 101 0.0 0.1 4377748 11904 ?? Ss 12:10PM 0:03.30 /usr/libexec/PerfPowerServices root 99 0.0 0.1 4402096 20148 ?? Ss 12:10PM 0:03.32 /Library/Application Support/LANDesk/bin/IVMetrics.app/Contents/MacOS/IVMetrics --monitor root 97 0.0 0.1 4382008 13756 ?? Ss 12:10PM 0:02.68 /usr/libexec/dasd _displaypolicyd 96 0.0 0.1 4352920 10628 ?? Ss 12:10PM 0:00.08 /usr/libexec/displaypolicyd -k 1 root 95 0.0 0.0 4342100 5456 ?? Ss 12:10PM 0:00.02 autofsd root 94 0.0 0.1 4383340 15224 ?? Ss 12:10PM 0:01.61 /Library/Application Support/LANDesk/bin/ldscheduler root 92 0.0 0.0 4369340 8376 ?? Ss 12:10PM 0:00.05 /Library/Application Support/LANDesk/bin/ldwatch _locationd 91 0.0 0.1 4388832 16756 ?? Ss 12:10PM 0:10.47 /usr/libexec/locationd _usbmuxd 89 0.0 0.0 4377220 6116 ?? Ss 12:10PM 0:00.30 /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/Resources/usbmuxd -launchd root 88 0.0 0.1 4382596 15592 ?? Ss 12:10PM 0:07.13 /usr/sbin/securityd -i root 87 0.0 0.1 4362160 10212 ?? Ss 12:10PM 0:04.24 /Library/Application Support/LANDesk/bin/ldtmc _timed 85 0.0 0.0 4376816 7152 ?? Ss 12:10PM 0:00.33 /usr/libexec/timed root 84 0.0 0.1 4380380 12440 ?? Ss 12:10PM 0:05.12 /System/Library/CoreServices/launchservicesd root 83 0.0 0.0 4350540 4068 ?? Ss 12:10PM 0:00.02 /System/Library/PrivateFrameworks/Noticeboard.framework/Versions/A/Resources/nbstated root 82 0.0 0.0 4391948 7132 ?? Ss 12:10PM 0:00.04 /Library/PrivilegedHelperTools/com.docker.vmnetd root 81 0.0 0.1 4382876 22668 ?? Ss 12:10PM 0:01.51 /System/Library/PrivateFrameworks/ApplePushService.framework/apsd root 80 0.0 0.1 4357072 8548 ?? Ss 12:10PM 0:00.88 /Library/Application Support/LANDesk/bin/ldremote root 76 0.0 0.1 4384748 20528 ?? Ss 12:10PM 0:02.04 /usr/libexec/coreduetd root 75 0.0 0.2 4377452 30052 ?? Ss 12:10PM 0:06.74 /System/Library/CoreServices/backupd.bundle/Contents/Resources/backupd-helper -launchd root 71 0.0 0.0 4376396 7496 ?? Ss 12:10PM 0:01.66 /usr/libexec/diskarbitrationd _iconservices 70 0.0 0.0 4351356 4792 ?? Ss 12:10PM 0:00.03 /System/Library/CoreServices/iconservicesd root 69 0.0 0.1 4384136 9832 ?? Ss 12:10PM 0:00.94 /Library/Application Support/LANDesk/bin/IVRemoteControl.app/Contents/MacOS/ivremote root 68 0.0 0.5 4578216 80268 ?? Ss 12:10PM 1:38.14 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Support/mds root 62 0.0 0.0 4341688 4920 ?? Ss 12:10PM 0:00.02 /usr/libexec/keybagd -t 15 root 61 0.0 0.2 4456772 28244 ?? Ss 12:10PM 0:10.04 /usr/libexec/logd root 56 0.0 0.1 4384592 20860 ?? Ss 12:10PM 0:03.31 /Library/Application Support/BeyondTrust/pbmac/pbmacd root 55 0.0 0.1 4383344 12924 ?? Ss 12:10PM 0:02.57 /usr/libexec/configd root 53 0.0 0.1 4381976 14184 ?? Ss 12:10PM 0:05.66 /usr/sbin/systemstats --daemon _appleevents 52 0.0 0.1 4379980 8812 ?? Ss 12:10PM 0:00.27 /System/Library/CoreServices/appleeventsd --server root 49 0.0 0.1 4379068 24416 ?? Ss 12:10PM 0:00.43 /System/Library/PrivateFrameworks/MediaRemote.framework/Support/mediaremoted root 48 0.0 0.2 4388436 25180 ?? SNs 12:10PM 0:01.89 /usr/local/jamf/bin/jamf launchDaemon -monitorUsage root 46 0.0 0.1 5130616 13252 ?? Ss 12:10PM 0:53.59 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/Support/fseventsd root 45 0.0 0.2 4391256 26976 ?? Ss 12:10PM 0:06.00 /usr/libexec/kextd root 44 0.0 0.0 4324820 5224 ?? Ss 12:10PM 0:00.42 /System/Library/PrivateFrameworks/Uninstall.framework/Resources/uninstalld root 41 0.0 0.1 4379304 19440 ?? Ss 12:10PM 0:02.23 /usr/libexec/UserEventAgent (System) root 40 0.0 0.0 4350620 1168 ?? Ss 12:10PM 0:00.91 /usr/sbin/syslogd root 1 0.0 0.1 4373320 21308 ?? Ss 12:09PM 1:08.19 /sbin/launchd root 69357 0.0 0.0 4268540 1092 s000 R+ 3:49PM 0:00.00 ps axu kbrazil 1043 0.0 0.0 0 0 ?? Z 12:10PM 0:00.00 (uname) root 69327 0.0 0.0 4333636 6556 ?? Ss 3:49PM 0:00.02 /System/Library/PrivateFrameworks/Heimdal.framework/Helpers/kcm --launchd root 68539 0.0 0.0 4374360 4264 ?? Ss 3:44PM 0:00.35 /Library/Tanium/TaniumClient/Tools/Detect3/TaniumDetectEngine kbrazil 68384 0.0 0.1 4378164 16744 ?? S 3:44PM 0:00.09 /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/XPCServices/com.apple.iCloudHelper.xpc/Contents/MacOS/com.apple.iCloudHelper root 65695 0.0 0.0 4367412 7260 ?? Ss 3:40PM 0:00.11 /usr/sbin/ocspd _spotlight 64688 0.0 0.4 4474860 71244 ?? S 3:35PM 0:01.25 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared _spotlight 64654 0.0 0.1 4358600 17180 ?? S 3:35PM 0:00.10 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared _spotlight 64600 0.0 0.4 4466284 61156 ?? S 3:35PM 0:01.16 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared _spotlight 64599 0.0 0.1 4358600 17760 ?? S 3:35PM 0:00.06 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared _spotlight 64595 0.0 0.2 4434452 29604 ?? S 3:35PM 0:00.17 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared kbrazil 64594 0.0 0.1 4396884 20956 ?? S 3:35PM 0:00.70 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared _spotlight 64590 0.0 0.1 4422896 18484 ?? S 3:35PM 0:00.11 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared _spotlight 64530 0.0 0.3 4385716 53908 ?? S 3:35PM 0:00.23 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared _spotlight 64529 0.0 0.2 4365596 29632 ?? S 3:35PM 0:00.16 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared _spotlight 64474 0.0 0.2 4355696 37196 ?? S 3:34PM 0:00.14 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared jc-1.17.3/tests/fixtures/osx-10.14.6/ps-ef.json000066400000000000000000002127721415226333200205510ustar00rootroot00000000000000[{"uid": "0", "pid": 1, "ppid": 0, "c": 0, "stime": "12:09PM", "tty": null, "time": "1:08.04", "cmd": "/sbin/launchd"}, {"uid": "0", "pid": 40, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.91", "cmd": "/usr/sbin/syslogd"}, {"uid": "0", "pid": 41, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:02.23", "cmd": "/usr/libexec/UserEventAgent (System)"}, {"uid": "0", "pid": 44, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.42", "cmd": "/System/Library/PrivateFrameworks/Uninstall.framework/Resources/uninstalld"}, {"uid": "0", "pid": 45, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:06.00", "cmd": "/usr/libexec/kextd"}, {"uid": "0", "pid": 46, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:53.57", "cmd": "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/Support/fseventsd"}, {"uid": "0", "pid": 48, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:01.89", "cmd": "/usr/local/jamf/bin/jamf launchDaemon -monitorUsage"}, {"uid": "0", "pid": 49, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.43", "cmd": "/System/Library/PrivateFrameworks/MediaRemote.framework/Support/mediaremoted"}, {"uid": "55", "pid": 52, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.27", "cmd": "/System/Library/CoreServices/appleeventsd --server"}, {"uid": "0", "pid": 53, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:05.66", "cmd": "/usr/sbin/systemstats --daemon"}, {"uid": "0", "pid": 55, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:02.57", "cmd": "/usr/libexec/configd"}, {"uid": "0", "pid": 56, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:03.30", "cmd": "/Library/Application Support/BeyondTrust/pbmac/pbmacd"}, {"uid": "0", "pid": 57, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:10.22", "cmd": "/System/Library/CoreServices/powerd.bundle/powerd"}, {"uid": "0", "pid": 58, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "1:23.40", "cmd": "/Library/Application Support/JAMF/Jamf.app/Contents/MacOS/JamfDaemon.app/Contents/MacOS/JamfDaemon"}, {"uid": "0", "pid": 61, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:10.03", "cmd": "/usr/libexec/logd"}, {"uid": "0", "pid": 62, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.02", "cmd": "/usr/libexec/keybagd -t 15"}, {"uid": "0", "pid": 68, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "1:38.08", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Support/mds"}, {"uid": "0", "pid": 69, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.93", "cmd": "/Library/Application Support/LANDesk/bin/IVRemoteControl.app/Contents/MacOS/ivremote"}, {"uid": "240", "pid": 70, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.03", "cmd": "/System/Library/CoreServices/iconservicesd"}, {"uid": "0", "pid": 71, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:01.65", "cmd": "/usr/libexec/diskarbitrationd"}, {"uid": "0", "pid": 75, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:06.74", "cmd": "/System/Library/CoreServices/backupd.bundle/Contents/Resources/backupd-helper -launchd"}, {"uid": "0", "pid": 76, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:02.04", "cmd": "/usr/libexec/coreduetd"}, {"uid": "0", "pid": 79, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:28.21", "cmd": "/usr/libexec/opendirectoryd"}, {"uid": "0", "pid": 80, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.87", "cmd": "/Library/Application Support/LANDesk/bin/ldremote"}, {"uid": "0", "pid": 81, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:01.51", "cmd": "/System/Library/PrivateFrameworks/ApplePushService.framework/apsd"}, {"uid": "0", "pid": 82, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.04", "cmd": "/Library/PrivilegedHelperTools/com.docker.vmnetd"}, {"uid": "0", "pid": 83, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.02", "cmd": "/System/Library/PrivateFrameworks/Noticeboard.framework/Versions/A/Resources/nbstated"}, {"uid": "0", "pid": 84, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:05.12", "cmd": "/System/Library/CoreServices/launchservicesd"}, {"uid": "266", "pid": 85, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.33", "cmd": "/usr/libexec/timed"}, {"uid": "0", "pid": 86, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "1:23.98", "cmd": "/Library/enSilo/enSiloCollector"}, {"uid": "0", "pid": 87, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:04.23", "cmd": "/Library/Application Support/LANDesk/bin/ldtmc"}, {"uid": "0", "pid": 88, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:07.13", "cmd": "/usr/sbin/securityd -i"}, {"uid": "213", "pid": 89, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.30", "cmd": "/System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/Resources/usbmuxd -launchd"}, {"uid": "205", "pid": 91, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:10.47", "cmd": "/usr/libexec/locationd"}, {"uid": "0", "pid": 92, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.05", "cmd": "/Library/Application Support/LANDesk/bin/ldwatch"}, {"uid": "0", "pid": 94, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:01.61", "cmd": "/Library/Application Support/LANDesk/bin/ldscheduler"}, {"uid": "0", "pid": 95, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.02", "cmd": "autofsd"}, {"uid": "244", "pid": 96, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.08", "cmd": "/usr/libexec/displaypolicyd -k 1"}, {"uid": "0", "pid": 97, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:02.68", "cmd": "/usr/libexec/dasd"}, {"uid": "0", "pid": 99, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:03.32", "cmd": "/Library/Application Support/LANDesk/bin/IVMetrics.app/Contents/MacOS/IVMetrics --monitor"}, {"uid": "0", "pid": 101, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:03.30", "cmd": "/usr/libexec/PerfPowerServices"}, {"uid": "0", "pid": 103, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.05", "cmd": "/Library/Tanium/TaniumClient/TaniumClient -d"}, {"uid": "501", "pid": 104, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:03.02", "cmd": "/System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow console"}, {"uid": "0", "pid": 105, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.07", "cmd": "/System/Library/CoreServices/logind"}, {"uid": "0", "pid": 106, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.11", "cmd": "/System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Support/revisiond"}, {"uid": "0", "pid": 107, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.01", "cmd": "/usr/sbin/KernelEventAgent"}, {"uid": "0", "pid": 108, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.21", "cmd": "/Library/Application Support/LANDesk/bin/lddispatch -p ipc:///Library/Application Support/LANDesk/tmp/socket/sys -s"}, {"uid": "0", "pid": 110, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:01.29", "cmd": "/usr/sbin/bluetoothd"}, {"uid": "261", "pid": 112, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "2:46.55", "cmd": "/usr/libexec/hidd"}, {"uid": "0", "pid": 113, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:04.54", "cmd": "/usr/libexec/sandboxd"}, {"uid": "0", "pid": 114, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.72", "cmd": "/usr/libexec/corebrightnessd --launchd"}, {"uid": "0", "pid": 115, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.60", "cmd": "/usr/libexec/AirPlayXPCHelper"}, {"uid": "0", "pid": 116, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:10.20", "cmd": "/usr/sbin/notifyd"}, {"uid": "0", "pid": 118, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.54", "cmd": "/usr/libexec/taskgated"}, {"uid": "0", "pid": 119, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:04.21", "cmd": "/usr/libexec/amfid"}, {"uid": "241", "pid": 121, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:01.09", "cmd": "/usr/sbin/distnoted daemon"}, {"uid": "0", "pid": 123, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:01.38", "cmd": "/System/Library/Frameworks/Security.framework/Versions/A/XPCServices/authd.xpc/Contents/MacOS/authd"}, {"uid": "0", "pid": 124, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.04", "cmd": "aslmanager"}, {"uid": "0", "pid": 125, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:12.29", "cmd": "/usr/libexec/syspolicyd"}, {"uid": "0", "pid": 127, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:09.33", "cmd": "/usr/sbin/cfprefsd daemon"}, {"uid": "0", "pid": 133, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:08.08", "cmd": "/System/Library/CoreServices/coreservicesd"}, {"uid": "0", "pid": 157, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.03", "cmd": "/System/Library/Frameworks/PCSC.framework/Versions/A/XPCServices/com.apple.ctkpcscd.xpc/Contents/MacOS/com.apple.ctkpcscd"}, {"uid": "0", "pid": 159, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:38.79", "cmd": "/usr/libexec/trustd"}, {"uid": "0", "pid": 166, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:01.40", "cmd": "/usr/libexec/mobileassetd"}, {"uid": "242", "pid": 168, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.86", "cmd": "/usr/libexec/nsurlsessiond --privileged"}, {"uid": "259", "pid": 182, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.02", "cmd": "/System/Library/Frameworks/CryptoTokenKit.framework/ctkd -s"}, {"uid": "202", "pid": 185, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "1:25.16", "cmd": "/usr/sbin/coreaudiod"}, {"uid": "0", "pid": 186, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:03.63", "cmd": "/System/Library/PrivateFrameworks/CoreDuetContext.framework/Resources/contextstored"}, {"uid": "202", "pid": 187, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.11", "cmd": "/System/Library/Frameworks/CoreAudio.framework/Versions/A/XPCServices/com.apple.audio.DriverHelper.xpc/Contents/MacOS/com.apple.audio.DriverHelper"}, {"uid": "0", "pid": 188, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:04.39", "cmd": "/usr/libexec/nehelper"}, {"uid": "0", "pid": 189, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.60", "cmd": "/System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Support/awdd"}, {"uid": "0", "pid": 190, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:19.02", "cmd": "/usr/libexec/lsd runAsRoot"}, {"uid": "88", "pid": 192, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "10:50.56", "cmd": "/System/Library/PrivateFrameworks/SkyLight.framework/Resources/WindowServer -daemon"}, {"uid": "24", "pid": 193, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:06.46", "cmd": "/usr/libexec/symptomsd"}, {"uid": "65", "pid": 194, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:05.65", "cmd": "/usr/sbin/mDNSResponder"}, {"uid": "0", "pid": 195, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.57", "cmd": "/usr/sbin/mDNSResponderHelper"}, {"uid": "0", "pid": 197, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.01", "cmd": "/usr/libexec/multiversed"}, {"uid": "0", "pid": 198, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.02", "cmd": "/System/Library/CryptoTokenKit/com.apple.ifdreader.slotd/Contents/MacOS/com.apple.ifdreader"}, {"uid": "0", "pid": 199, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.03", "cmd": "/usr/libexec/apfsd"}, {"uid": "0", "pid": 200, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:24.98", "cmd": "/usr/libexec/airportd"}, {"uid": "0", "pid": 201, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.08", "cmd": "/usr/libexec/usbd"}, {"uid": "262", "pid": 202, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.13", "cmd": "/System/Library/Frameworks/CoreMediaIO.framework/Resources/VDC.plugin/Contents/Resources/VDCAssistant"}, {"uid": "200", "pid": 203, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.06", "cmd": "/System/Library/PrivateFrameworks/BridgeOSSoftwareUpdate.framework/Support/bosUpdateProxy"}, {"uid": "0", "pid": 204, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:11.52", "cmd": "/usr/libexec/ApplicationFirewall/socketfilterfw"}, {"uid": "0", "pid": 205, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.14", "cmd": "/System/Library/CoreServices/SubmitDiagInfo server-init"}, {"uid": "0", "pid": 206, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.85", "cmd": "/System/Library/CoreServices/backupd.bundle/Contents/Resources/backupd"}, {"uid": "0", "pid": 208, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.23", "cmd": "/System/Library/PrivateFrameworks/CoreSymbolication.framework/coresymbolicationd"}, {"uid": "0", "pid": 216, "ppid": 103, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:14.16", "cmd": "/Library/Tanium/TaniumClient/TaniumClient -m"}, {"uid": "243", "pid": 218, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.05", "cmd": "/usr/libexec/nsurlstoraged --privileged"}, {"uid": "0", "pid": 219, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.21", "cmd": "/System/Library/Frameworks/Security.framework/Versions/A/XPCServices/com.apple.CodeSigningHelper.xpc/Contents/MacOS/com.apple.CodeSigningHelper"}, {"uid": "263", "pid": 226, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.22", "cmd": "/System/Library/PrivateFrameworks/CoreAnalytics.framework/Support/analyticsd"}, {"uid": "0", "pid": 231, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.02", "cmd": "/usr/libexec/smd"}, {"uid": "0", "pid": 238, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.43", "cmd": "/usr/libexec/watchdogd"}, {"uid": "0", "pid": 430, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.04", "cmd": "/System/Library/Frameworks/AudioToolbox.framework/AudioComponentRegistrar -daemon"}, {"uid": "202", "pid": 431, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.02", "cmd": "/System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper"}, {"uid": "0", "pid": 432, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.06", "cmd": "/usr/libexec/thermald"}, {"uid": "0", "pid": 433, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:02.32", "cmd": "/System/Library/PrivateFrameworks/TCC.framework/Resources/tccd system"}, {"uid": "0", "pid": 434, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "12:44.72", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mds_stores"}, {"uid": "0", "pid": 436, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:01.92", "cmd": "/System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/XPCServices/ViewBridgeAuxiliary.xpc/Contents/MacOS/ViewBridgeAuxiliary"}, {"uid": "258", "pid": 437, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.09", "cmd": "/usr/libexec/captiveagent"}, {"uid": "0", "pid": 439, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.10", "cmd": "/usr/libexec/secinitd"}, {"uid": "222", "pid": 452, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.19", "cmd": "/usr/sbin/netbiosd"}, {"uid": "0", "pid": 453, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:19.50", "cmd": "/usr/libexec/TouchBarServer"}, {"uid": "0", "pid": 454, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.03", "cmd": "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/CVMServer"}, {"uid": "0", "pid": 455, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.04", "cmd": "/usr/libexec/colorsync.displayservices"}, {"uid": "0", "pid": 458, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.07", "cmd": "/usr/sbin/distnoted agent"}, {"uid": "0", "pid": 462, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.02", "cmd": "/usr/libexec/colorsyncd"}, {"uid": "0", "pid": 466, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.90", "cmd": "/usr/libexec/sysmond"}, {"uid": "0", "pid": 467, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.02", "cmd": "/usr/libexec/bootinstalld"}, {"uid": "0", "pid": 469, "ppid": 53, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.17", "cmd": "/usr/sbin/systemstats --logger-helper /private/var/db/systemstats"}, {"uid": "0", "pid": 473, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.13", "cmd": "/System/Library/CoreServices/sharedfilelistd"}, {"uid": "0", "pid": 477, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.02", "cmd": "/System/Library/PrivateFrameworks/AccountPolicy.framework/XPCServices/com.apple.AccountPolicyHelper.xpc/Contents/MacOS/com.apple.AccountPolicyHelper"}, {"uid": "0", "pid": 478, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.02", "cmd": "/System/Library/Frameworks/CoreMediaIO.framework/Versions/A/XPCServices/com.apple.cmio.registerassistantservice.xpc/Contents/MacOS/com.apple.cmio.registerassistantservice"}, {"uid": "0", "pid": 479, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.04", "cmd": "/System/Library/PrivateFrameworks/SystemAdministration.framework/XPCServices/writeconfig.xpc/Contents/MacOS/writeconfig"}, {"uid": "0", "pid": 484, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.01", "cmd": "/System/Library/Frameworks/GSS.framework/Helpers/GSSCred"}, {"uid": "0", "pid": 486, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.70", "cmd": "/System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/XPCServices/com.apple.PerformanceAnalysis.animationperfd.xpc/Contents/MacOS/com.apple.PerformanceAnalysis.animationperfd"}, {"uid": "0", "pid": 492, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.13", "cmd": "/System/Library/Frameworks/LocalAuthentication.framework/Support/coreauthd"}, {"uid": "0", "pid": 493, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:02.24", "cmd": "/System/Library/PrivateFrameworks/FamilyControls.framework/Resources/parentalcontrolsd"}, {"uid": "501", "pid": 494, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.02", "cmd": "/System/Library/Frameworks/LocalAuthentication.framework/Support/coreauthd"}, {"uid": "0", "pid": 495, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.23", "cmd": "/usr/libexec/biometrickitd --launchd"}, {"uid": "501", "pid": 496, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:10.88", "cmd": "/usr/sbin/cfprefsd agent"}, {"uid": "0", "pid": 497, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.03", "cmd": "/usr/libexec/biokitaggdd"}, {"uid": "0", "pid": 498, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.02", "cmd": "/usr/libexec/securityd_service"}, {"uid": "501", "pid": 499, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:04.20", "cmd": "/usr/libexec/UserEventAgent (Aqua)"}, {"uid": "501", "pid": 501, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:01.89", "cmd": "/usr/sbin/distnoted agent"}, {"uid": "501", "pid": 502, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:01.69", "cmd": "/usr/sbin/universalaccessd launchd -s"}, {"uid": "501", "pid": 503, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:01.43", "cmd": "/System/Library/Frameworks/CoreTelephony.framework/Support/CommCenter -L"}, {"uid": "501", "pid": 505, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:01.60", "cmd": "/usr/libexec/lsd"}, {"uid": "501", "pid": 506, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:13.16", "cmd": "/usr/libexec/trustd --agent"}, {"uid": "501", "pid": 507, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:05.95", "cmd": "/usr/libexec/secd"}, {"uid": "501", "pid": 508, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.19", "cmd": "/System/Library/CoreServices/backgroundtaskmanagementagent"}, {"uid": "501", "pid": 509, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:01.90", "cmd": "/System/Library/PrivateFrameworks/CloudKitDaemon.framework/Support/cloudd"}, {"uid": "501", "pid": 511, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.26", "cmd": "/usr/libexec/pboard"}, {"uid": "501", "pid": 512, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:01.19", "cmd": "/System/Library/PrivateFrameworks/TCC.framework/Resources/tccd"}, {"uid": "501", "pid": 513, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:01.11", "cmd": "/usr/libexec/nsurlsessiond"}, {"uid": "0", "pid": 514, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.11", "cmd": "/usr/sbin/WirelessRadioManagerd"}, {"uid": "501", "pid": 515, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:13.00", "cmd": "/System/Library/PrivateFrameworks/TelephonyUtilities.framework/callservicesd"}, {"uid": "501", "pid": 517, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:09.12", "cmd": "/System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd"}, {"uid": "501", "pid": 518, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.06", "cmd": "/System/Library/Frameworks/Security.framework/Versions/A/Resources/CloudKeychainProxy.bundle/Contents/MacOS/CloudKeychainProxy"}, {"uid": "501", "pid": 519, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:01.77", "cmd": "/System/Library/PrivateFrameworks/IDS.framework/identityservicesd.app/Contents/MacOS/identityservicesd"}, {"uid": "501", "pid": 520, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:01.06", "cmd": "/System/Library/CoreServices/talagent"}, {"uid": "501", "pid": 521, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:02.48", "cmd": "/System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/XPCServices/ViewBridgeAuxiliary.xpc/Contents/MacOS/ViewBridgeAuxiliary"}, {"uid": "501", "pid": 522, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.70", "cmd": "/System/Library/PrivateFrameworks/IMCore.framework/imagent.app/Contents/MacOS/imagent"}, {"uid": "501", "pid": 523, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.51", "cmd": "/System/Library/PrivateFrameworks/IMDPersistence.framework/XPCServices/IMDPersistenceAgent.xpc/Contents/MacOS/IMDPersistenceAgent"}, {"uid": "501", "pid": 524, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.96", "cmd": "/System/Library/Frameworks/AddressBook.framework/Executables/ContactsAccountsService"}, {"uid": "501", "pid": 525, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:29.59", "cmd": "/System/Library/CoreServices/iconservicesagent"}, {"uid": "501", "pid": 526, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.99", "cmd": "/usr/libexec/secinitd"}, {"uid": "0", "pid": 527, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.04", "cmd": "/usr/sbin/wirelessproxd"}, {"uid": "501", "pid": 528, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.75", "cmd": "/usr/libexec/rapportd"}, {"uid": "501", "pid": 529, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.46", "cmd": "/System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/Support/akd"}, {"uid": "501", "pid": 530, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:40.74", "cmd": "/Applications/Mail.app/Contents/MacOS/Mail -psn_0_69649"}, {"uid": "501", "pid": 531, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.45", "cmd": "/System/Library/CoreServices/sharedfilelistd"}, {"uid": "501", "pid": 532, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:02.03", "cmd": "/usr/libexec/routined LAUNCHED_BY_LAUNCHD"}, {"uid": "501", "pid": 533, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:01.30", "cmd": "/usr/sbin/usernoted"}, {"uid": "501", "pid": 534, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:02.87", "cmd": "/System/Library/CoreServices/ControlStrip.app/Contents/MacOS/ControlStrip"}, {"uid": "501", "pid": 535, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.11", "cmd": "/usr/libexec/networkserviceproxy"}, {"uid": "501", "pid": 536, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.02", "cmd": "/System/Library/CoreServices/APFSUserAgent"}, {"uid": "501", "pid": 537, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:05.62", "cmd": "/System/Library/PrivateFrameworks/CalendarAgent.framework/Executables/CalendarAgent"}, {"uid": "501", "pid": 540, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.87", "cmd": "/System/Library/CoreServices/WiFiAgent.app/Contents/MacOS/WiFiAgent"}, {"uid": "501", "pid": 541, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:03.76", "cmd": "/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Support/fontd"}, {"uid": "0", "pid": 542, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.02", "cmd": "/System/Library/CoreServices/CrashReporterSupportHelper server-init"}, {"uid": "501", "pid": 543, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:03.69", "cmd": "/System/Library/CoreServices/NotificationCenter.app/Contents/MacOS/NotificationCenter"}, {"uid": "501", "pid": 545, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.18", "cmd": "/System/Library/PrivateFrameworks/IMFoundation.framework/XPCServices/IMRemoteURLConnectionAgent.xpc/Contents/MacOS/IMRemoteURLConnectionAgent"}, {"uid": "501", "pid": 546, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:15.02", "cmd": "/System/Library/PrivateFrameworks/MessagesKit.framework/Resources/soagent.app/Contents/MacOS/soagent"}, {"uid": "501", "pid": 547, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:03.48", "cmd": "/usr/libexec/sharingd"}, {"uid": "501", "pid": 548, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:37.83", "cmd": "/Applications/Sourcetree.app/Contents/MacOS/Sourcetree -psn_0_86037"}, {"uid": "501", "pid": 549, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.57", "cmd": "/System/Library/PrivateFrameworks/UserActivity.framework/Agents/useractivityd"}, {"uid": "501", "pid": 551, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.92", "cmd": "/usr/libexec/nsurlstoraged"}, {"uid": "501", "pid": 552, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:01.59", "cmd": "/System/Library/PrivateFrameworks/CalendarNotification.framework/Versions/A/XPCServices/CalNCService.xpc/Contents/MacOS/CalNCService"}, {"uid": "501", "pid": 553, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:05.94", "cmd": "/Applications/Calendar.app/Contents/MacOS/Calendar -psn_0_98328"}, {"uid": "501", "pid": 554, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.03", "cmd": "/System/Library/PrivateFrameworks/MediaRemote.framework/Support/mediaremoteagent"}, {"uid": "501", "pid": 555, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.39", "cmd": "/usr/libexec/fmfd"}, {"uid": "501", "pid": 556, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:37.43", "cmd": "/Applications/Utilities/Terminal.app/Contents/MacOS/Terminal -psn_0_102425"}, {"uid": "501", "pid": 557, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.15", "cmd": "/System/Library/PrivateFrameworks/IMFoundation.framework/XPCServices/IMRemoteURLConnectionAgent.xpc/Contents/MacOS/IMRemoteURLConnectionAgent"}, {"uid": "501", "pid": 558, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:01.50", "cmd": "/Applications/Reminders.app/Contents/MacOS/Reminders -psn_0_106522"}, {"uid": "501", "pid": 559, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.06", "cmd": "/System/Library/PrivateFrameworks/FamilyCircle.framework/Versions/A/Resources/familycircled"}, {"uid": "501", "pid": 560, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "2:56.08", "cmd": "/Applications/Sublime Text.app/Contents/MacOS/Sublime Text -psn_0_110619"}, {"uid": "501", "pid": 561, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:07.59", "cmd": "/Applications/Notes.app/Contents/MacOS/Notes -psn_0_114716"}, {"uid": "501", "pid": 563, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.32", "cmd": "/usr/libexec/swcd"}, {"uid": "501", "pid": 564, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.33", "cmd": "/System/Library/PrivateFrameworks/AssistantServices.framework/Versions/A/Support/assistantd"}, {"uid": "501", "pid": 565, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.64", "cmd": "/System/Library/PrivateFrameworks/CloudDocsDaemon.framework/Versions/A/Support/bird"}, {"uid": "501", "pid": 566, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:17.14", "cmd": "/Applications/Messages.app/Contents/MacOS/Messages -psn_0_118813"}, {"uid": "501", "pid": 567, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:04.34", "cmd": "/Applications/Contacts.app/Contents/MacOS/Contacts -psn_0_122910"}, {"uid": "265", "pid": 569, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.14", "cmd": "/System/Library/PrivateFrameworks/CoreADI.framework/adid"}, {"uid": "501", "pid": 572, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:03.47", "cmd": "/usr/libexec/pkd"}, {"uid": "501", "pid": 573, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:17.55", "cmd": "/System/Library/CoreServices/Dock.app/Contents/MacOS/Dock"}, {"uid": "501", "pid": 574, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.08", "cmd": "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeaccountd"}, {"uid": "501", "pid": 575, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:03.66", "cmd": "/System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer"}, {"uid": "501", "pid": 576, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:22.63", "cmd": "/System/Library/CoreServices/Finder.app/Contents/MacOS/Finder"}, {"uid": "0", "pid": 580, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.76", "cmd": "/usr/sbin/systemsoundserverd"}, {"uid": "501", "pid": 581, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.04", "cmd": "/System/Library/PrivateFrameworks/CommunicationsFilter.framework/CMFSyncAgent"}, {"uid": "501", "pid": 582, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:03.14", "cmd": "/System/Library/CoreServices/Spotlight.app/Contents/MacOS/Spotlight"}, {"uid": "501", "pid": 583, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.02", "cmd": "/System/Library/PrivateFrameworks/CoreFollowUp.framework/Versions/A/Support/followupd"}, {"uid": "501", "pid": 585, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.45", "cmd": "/System/Library/PrivateFrameworks/CoreParsec.framework/parsecd"}, {"uid": "0", "pid": 592, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.09", "cmd": "/usr/sbin/filecoordinationd"}, {"uid": "501", "pid": 593, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.51", "cmd": "/System/Library/Frameworks/InputMethodKit.framework/Resources/imklaunchagent"}, {"uid": "501", "pid": 594, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.55", "cmd": "/System/Library/PrivateFrameworks/CoreWLANKit.framework/Versions/A/XPCServices/WiFiProxy.xpc/Contents/MacOS/WiFiProxy"}, {"uid": "501", "pid": 595, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.97", "cmd": "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/commerce"}, {"uid": "501", "pid": 596, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.55", "cmd": "/System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/XPCServices/com.apple.geod.xpc/Contents/MacOS/com.apple.geod"}, {"uid": "501", "pid": 597, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.99", "cmd": "/System/Library/Input Methods/PressAndHold.app/Contents/PlugIns/PAH_Extension.appex/Contents/MacOS/PAH_Extension"}, {"uid": "501", "pid": 599, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:03.30", "cmd": "/System/Library/Input Methods/EmojiFunctionRowIM.app/Contents/PlugIns/EmojiFunctionRowIM_Extension.appex/Contents/MacOS/EmojiFunctionRowIM_Extension"}, {"uid": "501", "pid": 600, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.15", "cmd": "/System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService"}, {"uid": "501", "pid": 601, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.74", "cmd": "/System/Library/CoreServices/Dock.app/Contents/XPCServices/com.apple.dock.extra.xpc/Contents/MacOS/com.apple.dock.extra"}, {"uid": "501", "pid": 603, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.67", "cmd": "/System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent"}, {"uid": "501", "pid": 604, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.67", "cmd": "/System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.Networking.xpc/Contents/MacOS/com.apple.WebKit.Networking"}, {"uid": "501", "pid": 605, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.03", "cmd": "/System/Library/PrivateFrameworks/CharacterPicker.framework/Versions/A/XPCServices/com.apple.CharacterPicker.FileService.xpc/Contents/MacOS/com.apple.CharacterPicker.FileService"}, {"uid": "501", "pid": 607, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.26", "cmd": "/System/Library/PrivateFrameworks/CallHistory.framework/Support/CallHistoryPluginHelper"}, {"uid": "501", "pid": 608, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.52", "cmd": "/System/Library/PrivateFrameworks/WeatherKit.framework/Versions/A/XPCServices/com.apple.WeatherKitService.xpc/Contents/MacOS/com.apple.WeatherKitService"}, {"uid": "501", "pid": 617, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.21", "cmd": "/System/Library/PrivateFrameworks/ContactsDonation.framework/Versions/A/Support/contactsdonationagent"}, {"uid": "0", "pid": 627, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.46", "cmd": "/usr/libexec/findmydeviced"}, {"uid": "501", "pid": 631, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.36", "cmd": "/usr/libexec/knowledge-agent"}, {"uid": "501", "pid": 632, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.82", "cmd": "/System/Library/PrivateFrameworks/FileProvider.framework/Support/fileproviderd"}, {"uid": "501", "pid": 633, "ppid": 560, "c": 0, "stime": "12:10PM", "tty": null, "time": "1:48.07", "cmd": "/Applications/Sublime Text.app/Contents/MacOS/plugin_host 560 --auto-shell-env"}, {"uid": "501", "pid": 640, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.39", "cmd": "/System/Library/CoreServices/pbs"}, {"uid": "247", "pid": 642, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.66", "cmd": "/usr/libexec/gamecontrollerd"}, {"uid": "0", "pid": 658, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:02.01", "cmd": "/usr/sbin/spindump"}, {"uid": "501", "pid": 659, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:14.00", "cmd": "/System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell"}, {"uid": "501", "pid": 661, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.03", "cmd": "/usr/libexec/spindump_agent"}, {"uid": "501", "pid": 664, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.02", "cmd": "/System/Library/PrivateFrameworks/IMFoundation.framework/XPCServices/IMRemoteURLConnectionAgent.xpc/Contents/MacOS/IMRemoteURLConnectionAgent"}, {"uid": "501", "pid": 665, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.06", "cmd": "/usr/libexec/keyboardservicesd"}, {"uid": "501", "pid": 667, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.05", "cmd": "/System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCService"}, {"uid": "501", "pid": 676, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.08", "cmd": "/usr/libexec/videosubscriptionsd"}, {"uid": "501", "pid": 680, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.01", "cmd": "SafeEjectGPUAgent"}, {"uid": "501", "pid": 684, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.03", "cmd": "/System/Library/CoreServices/Menu Extras/SafeEjectGPUExtra.menu/Contents/XPCServices/SafeEjectGPUService.xpc/Contents/MacOS/SafeEjectGPUService"}, {"uid": "501", "pid": 785, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.09", "cmd": "/System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService"}, {"uid": "0", "pid": 787, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.38", "cmd": "/System/Library/PrivateFrameworks/AmbientDisplay.framework/Versions/A/XPCServices/com.apple.AmbientDisplayAgent.xpc/Contents/MacOS/com.apple.AmbientDisplayAgent"}, {"uid": "501", "pid": 788, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.73", "cmd": "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeuid.app/Contents/MacOS/storeuid"}, {"uid": "501", "pid": 794, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.67", "cmd": "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeassetd"}, {"uid": "501", "pid": 795, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.79", "cmd": "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/XPCServices/com.apple.hiservices-xpcservice.xpc/Contents/MacOS/com.apple.hiservices-xpcservice"}, {"uid": "501", "pid": 797, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.09", "cmd": "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storedownloadd"}, {"uid": "501", "pid": 798, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:03.12", "cmd": "/System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent"}, {"uid": "501", "pid": 799, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:02.33", "cmd": "/System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.Networking.xpc/Contents/MacOS/com.apple.WebKit.Networking"}, {"uid": "501", "pid": 800, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.06", "cmd": "/System/Library/Frameworks/ColorSync.framework/Support/colorsync.useragent"}, {"uid": "501", "pid": 801, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:05.63", "cmd": "/System/Library/PrivateFrameworks/CoreSuggestions.framework/Versions/A/Support/suggestd"}, {"uid": "0", "pid": 806, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:10.25", "cmd": "/System/Library/CoreServices/iconservicesagent runAsRoot"}, {"uid": "501", "pid": 808, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.36", "cmd": "/System/Library/PrivateFrameworks/CloudDocsDaemon.framework/XPCServices/ContainerMetadataExtractor.xpc/Contents/MacOS/ContainerMetadataExtractor"}, {"uid": "501", "pid": 811, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.28", "cmd": "/System/Library/PrivateFrameworks/CoreSuggestions.framework/Versions/A/Support/reversetemplated"}, {"uid": "501", "pid": 812, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.05", "cmd": "/System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCService"}, {"uid": "501", "pid": 813, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.18", "cmd": "/System/Library/PrivateFrameworks/CacheDelete.framework/deleted"}, {"uid": "88", "pid": 816, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.08", "cmd": "/System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService"}, {"uid": "501", "pid": 818, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.11", "cmd": "/System/Library/Frameworks/AudioToolbox.framework/AudioComponentRegistrar"}, {"uid": "501", "pid": 819, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.04", "cmd": "/usr/libexec/assertiond"}, {"uid": "501", "pid": 820, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.59", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/corespotlightd"}, {"uid": "501", "pid": 822, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.35", "cmd": "/System/Library/CoreServices/diagnostics_agent"}, {"uid": "235", "pid": 823, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.06", "cmd": "/usr/libexec/AssetCache/AssetCache"}, {"uid": "501", "pid": 824, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.91", "cmd": "/System/Library/CoreServices/cloudphotosd.app/Contents/MacOS/cloudphotosd"}, {"uid": "0", "pid": 825, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:38.19", "cmd": "/System/Library/PrivateFrameworks/PackageKit.framework/Resources/installd"}, {"uid": "0", "pid": 827, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.05", "cmd": "/usr/bin/sysdiagnose"}, {"uid": "0", "pid": 828, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.03", "cmd": "/System/Library/PrivateFrameworks/PackageKit.framework/Resources/system_installd"}, {"uid": "501", "pid": 829, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.03", "cmd": "/System/Library/PrivateFrameworks/QuickLookThumbnailing.framework/Support/com.apple.quicklook.ThumbnailsAgent"}, {"uid": "501", "pid": 830, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.15", "cmd": "/System/Library/PrivateFrameworks/CloudPhotoServices.framework/Versions/A/Frameworks/CloudPhotosConfigurationXPC.framework/Versions/A/XPCServices/com.apple.CloudPhotosConfiguration.xpc/Contents/MacOS/com.apple.CloudPhotosConfiguration"}, {"uid": "501", "pid": 835, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.70", "cmd": "/System/Library/CoreServices/CoreLocationAgent.app/Contents/MacOS/CoreLocationAgent"}, {"uid": "501", "pid": 841, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.52", "cmd": "/System/Library/Frameworks/MediaLibrary.framework/Versions/A/XPCServices/com.apple.MediaLibraryService.xpc/Contents/MacOS/com.apple.MediaLibraryService"}, {"uid": "501", "pid": 843, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.20", "cmd": "/System/Library/PrivateFrameworks/IMFoundation.framework/XPCServices/IMRemoteURLConnectionAgent.xpc/Contents/MacOS/IMRemoteURLConnectionAgent"}, {"uid": "501", "pid": 844, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.20", "cmd": "/System/Library/PrivateFrameworks/CoreRecents.framework/Versions/A/Support/recentsd"}, {"uid": "501", "pid": 845, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.08", "cmd": "/System/Library/PrivateFrameworks/PhotoLibraryPrivate.framework/Versions/A/Support/photolibraryd"}, {"uid": "260", "pid": 846, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.09", "cmd": "/usr/libexec/nfcd"}, {"uid": "0", "pid": 847, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.06", "cmd": "/usr/libexec/dprivacyd"}, {"uid": "501", "pid": 848, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.16", "cmd": "/System/Library/CoreServices/ScopedBookmarkAgent"}, {"uid": "501", "pid": 849, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:01.34", "cmd": "/System/Library/PrivateFrameworks/CoreSpeech.framework/corespeechd"}, {"uid": "501", "pid": 854, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.04", "cmd": "/System/Library/CoreServices/SocialPushAgent.app/Contents/MacOS/SocialPushAgent"}, {"uid": "0", "pid": 857, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.56", "cmd": "/Library/Application Support/LANDesk/bin/ldlockscreen"}, {"uid": "501", "pid": 858, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.83", "cmd": "/usr/local/jamf/bin/jamfAgent"}, {"uid": "501", "pid": 860, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.09", "cmd": "/usr/libexec/dmd"}, {"uid": "501", "pid": 861, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.77", "cmd": "/Applications/Ivanti Agent.app/Contents/MacOS/Ivanti Agent"}, {"uid": "501", "pid": 862, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.20", "cmd": "/System/Library/Image Capture/Support/icdd"}, {"uid": "501", "pid": 866, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:14.77", "cmd": "/Applications/Egnyte WebEdit.app/Contents/MacOS/Egnyte WebEdit"}, {"uid": "501", "pid": 867, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:01.23", "cmd": "/Library/enSilo/enSiloCollectorTray.app/Contents/MacOS/enSiloCollectorTray"}, {"uid": "501", "pid": 868, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.61", "cmd": "/System/Library/CoreServices/AirPlayUIAgent.app/Contents/MacOS/AirPlayUIAgent --launchd"}, {"uid": "501", "pid": 869, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.23", "cmd": "/System/Library/CoreServices/cloudpaird"}, {"uid": "501", "pid": 872, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.64", "cmd": "/System/Library/PrivateFrameworks/Noticeboard.framework/Versions/A/Resources/nbagent.app/Contents/MacOS/nbagent"}, {"uid": "501", "pid": 873, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.65", "cmd": "/usr/libexec/adprivacyd"}, {"uid": "0", "pid": 875, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.03", "cmd": "/System/Library/Frameworks/CryptoTokenKit.framework/ctkahp.bundle/Contents/MacOS/ctkahp -d"}, {"uid": "501", "pid": 876, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:24.98", "cmd": "/Applications/StatusClock.app/Contents/MacOS/StatusClock"}, {"uid": "501", "pid": 877, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.04", "cmd": "/System/Library/Frameworks/CryptoTokenKit.framework/ctkahp.bundle/Contents/MacOS/ctkahp"}, {"uid": "501", "pid": 879, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.03", "cmd": "/System/Library/Frameworks/CryptoTokenKit.framework/ctkd -tw"}, {"uid": "0", "pid": 892, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.22", "cmd": "/System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/Support/akd"}, {"uid": "501", "pid": 893, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.02", "cmd": "/System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper"}, {"uid": "501", "pid": 907, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:04.41", "cmd": "/Applications/Docker.app/Contents/MacOS/Docker"}, {"uid": "501", "pid": 910, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.30", "cmd": "/System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/A/PrintUITool"}, {"uid": "501", "pid": 973, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.06", "cmd": "/usr/libexec/findmydevice-user-agent"}, {"uid": "0", "pid": 984, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.07", "cmd": "/usr/libexec/dmd"}, {"uid": "205", "pid": 1015, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.25", "cmd": "/System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/XPCServices/com.apple.geod.xpc/Contents/MacOS/com.apple.geod"}, {"uid": "205", "pid": 1017, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.12", "cmd": "/usr/libexec/secinitd"}, {"uid": "205", "pid": 1022, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.11", "cmd": "/usr/sbin/cfprefsd agent"}, {"uid": "205", "pid": 1023, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.19", "cmd": "/usr/libexec/trustd --agent"}, {"uid": "501", "pid": 1036, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.03", "cmd": "/usr/libexec/loginitemregisterd"}, {"uid": "501", "pid": 1037, "ppid": 907, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.90", "cmd": "/Applications/Docker.app/Contents/MacOS/com.docker.supervisor -watchdog fd:0"}, {"uid": "501", "pid": 1039, "ppid": 1037, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:12.36", "cmd": "com.docker.osxfs serve --address fd:3 --connect vms/0/connect --control fd:4 --log-destination asl"}, {"uid": "501", "pid": 1040, "ppid": 1037, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:02.05", "cmd": "com.docker.vpnkit --ethernet fd:3 --diagnostics fd:4 --pcap fd:5 --vsock-path vms/0/connect --gateway-forwards /Users/kbrazil/Library/Group Containers/group.com.docker/gateway_forwards.json --host-names host.docker.internal,docker.for.mac.host.internal,docker.for.mac.localhost --listen-backlog 32 --mtu 1500 --allowed-bind-addresses 0.0.0.0 --http /Users/kbrazil/Library/Group Containers/group.com.docker/http_proxy.json --dhcp /Users/kbrazil/Library/Group Containers/group.com.docker/dhcp.json --port-max-idle-time 300 --max-connections 2000 --gateway-ip 192.168.65.1 --host-ip 192.168.65.2 --lowest-ip 192.168.65.3 --highest-ip 192.168.65.254 --log-destination asl --udpv4-forwards 123:127.0.0.1:58011 --gc-compact-interval 1800"}, {"uid": "501", "pid": 1041, "ppid": 1037, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:01.02", "cmd": "com.docker.driver.amd64-linux -addr fd:3 -debug"}, {"uid": "501", "pid": 1042, "ppid": 1037, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.64", "cmd": "com.docker.backend -addr fd:3"}, {"uid": "501", "pid": 1043, "ppid": 1040, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.00", "cmd": "(uname)"}, {"uid": "501", "pid": 1045, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.10", "cmd": "/System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService"}, {"uid": "501", "pid": 1046, "ppid": 1041, "c": 0, "stime": "12:10PM", "tty": null, "time": "7:52.69", "cmd": "com.docker.hyperkit -A -u -F vms/0/hyperkit.pid -c 4 -m 2048M -s 0:0,hostbridge -s 31,lpc -s 1:0,virtio-vpnkit,path=vpnkit.eth.sock,uuid=0bed4206-a5b8-40bf-b1fa-02cb5d5a7f54 -U 573cd650-b0d4-41ed-a405-9cffcdcd24cb -s 2:0,ahci-hd,/Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/Docker.raw -s 3,virtio-sock,guest_cid=3,path=vms/0,guest_forwards=2376;1525 -s 4,ahci-cd,/Applications/Docker.app/Contents/Resources/linuxkit/docker-desktop.iso -s 5,ahci-cd,vms/0/config.iso -s 6,ahci-cd,/Applications/Docker.app/Contents/Resources/linuxkit/docker.iso -s 7,virtio-rnd -l com1,autopty=vms/0/tty,asl -f bootrom,/Applications/Docker.app/Contents/Resources/uefi/UEFI.fd,,"}, {"uid": "501", "pid": 1047, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.06", "cmd": "/System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdate_notify_agent"}, {"uid": "200", "pid": 1048, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:06.83", "cmd": "/System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdated"}, {"uid": "0", "pid": 1049, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.03", "cmd": "/System/Library/CoreServices/Software Update.app/Contents/Resources/suhelperd"}, {"uid": "501", "pid": 1051, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.08", "cmd": "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storelegacy"}, {"uid": "501", "pid": 1054, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.57", "cmd": "/System/Library/PrivateFrameworks/CommerceKit.framework/Resources/LaterAgent.app/Contents/MacOS/LaterAgent"}, {"uid": "501", "pid": 1055, "ppid": 1, "c": 0, "stime": "12:10PM", "tty": null, "time": "0:00.09", "cmd": "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/XPCServices/com.apple.CommerceKit.TransactionService.xpc/Contents/MacOS/com.apple.CommerceKit.TransactionService"}, {"uid": "501", "pid": 1103, "ppid": 1, "c": 0, "stime": "12:11PM", "tty": null, "time": "0:00.03", "cmd": "/System/Library/Frameworks/ApplicationServices.framework/Frameworks/PrintCore.framework/Versions/A/printtool agent"}, {"uid": "89", "pid": 1121, "ppid": 1, "c": 0, "stime": "12:11PM", "tty": null, "time": "0:00.89", "cmd": "/usr/libexec/trustd --agent"}, {"uid": "501", "pid": 1123, "ppid": 1, "c": 0, "stime": "12:11PM", "tty": null, "time": "0:00.32", "cmd": "/System/Library/PrivateFrameworks/AssetCacheServices.framework/Versions/A/XPCServices/AssetCacheLocatorService.xpc/Contents/MacOS/AssetCacheLocatorService -a"}, {"uid": "89", "pid": 1205, "ppid": 1, "c": 0, "stime": "12:11PM", "tty": null, "time": "0:00.10", "cmd": "/usr/sbin/distnoted agent"}, {"uid": "501", "pid": 1302, "ppid": 1, "c": 0, "stime": "12:11PM", "tty": null, "time": "0:02.60", "cmd": "/System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent"}, {"uid": "501", "pid": 1331, "ppid": 1, "c": 0, "stime": "12:11PM", "tty": null, "time": "0:00.04", "cmd": "/System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCService"}, {"uid": "501", "pid": 1351, "ppid": 1, "c": 0, "stime": "12:11PM", "tty": null, "time": "0:00.34", "cmd": "/System/Library/Frameworks/ApplicationServices.framework/Frameworks/SpeechSynthesis.framework/Resources/com.apple.speech.speechsynthesisd"}, {"uid": "501", "pid": 1353, "ppid": 1, "c": 0, "stime": "12:11PM", "tty": null, "time": "0:00.01", "cmd": "/System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper"}, {"uid": "0", "pid": 1431, "ppid": 1, "c": 0, "stime": "12:12PM", "tty": null, "time": "0:00.27", "cmd": "/usr/libexec/mobileactivationd"}, {"uid": "501", "pid": 3021, "ppid": 1, "c": 0, "stime": "12:15PM", "tty": null, "time": "0:00.22", "cmd": "/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Support/atsd"}, {"uid": "501", "pid": 3457, "ppid": 1, "c": 0, "stime": "12:16PM", "tty": null, "time": "0:00.81", "cmd": "/System/Library/PrivateFrameworks/AppStoreDaemon.framework/Support/appstoreagent"}, {"uid": "501", "pid": 3464, "ppid": 1, "c": 0, "stime": "12:17PM", "tty": null, "time": "0:00.10", "cmd": "/System/Library/PrivateFrameworks/PhotoAnalysis.framework/Versions/A/Support/photoanalysisd"}, {"uid": "501", "pid": 3468, "ppid": 1, "c": 0, "stime": "12:17PM", "tty": null, "time": "0:02.78", "cmd": "/System/Library/CoreServices/SafariSupport.bundle/Contents/MacOS/SafariBookmarksSyncAgent"}, {"uid": "501", "pid": 3724, "ppid": 1, "c": 0, "stime": "12:17PM", "tty": null, "time": "0:00.07", "cmd": "/System/Library/PrivateFrameworks/ContextKit.framework/Versions/A/XPCServices/ContextService.xpc/Contents/MacOS/ContextService"}, {"uid": "501", "pid": 3835, "ppid": 1, "c": 0, "stime": "12:17PM", "tty": null, "time": "0:00.70", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker-sizing -c MDSSizingWorker -m com.apple.mdworker.sizing"}, {"uid": "89", "pid": 3836, "ppid": 1, "c": 0, "stime": "12:17PM", "tty": null, "time": "0:05.81", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker-sizing -c MDSSizingWorker -m com.apple.mdworker.sizing"}, {"uid": "501", "pid": 8297, "ppid": 1, "c": 0, "stime": "12:23PM", "tty": null, "time": "2:37.70", "cmd": "/Applications/Microsoft Outlook.app/Contents/MacOS/Microsoft Outlook"}, {"uid": "501", "pid": 8310, "ppid": 1, "c": 0, "stime": "12:23PM", "tty": null, "time": "0:00.56", "cmd": "/System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent"}, {"uid": "501", "pid": 8311, "ppid": 1, "c": 0, "stime": "12:23PM", "tty": null, "time": "0:00.60", "cmd": "/System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.Networking.xpc/Contents/MacOS/com.apple.WebKit.Networking"}, {"uid": "501", "pid": 8314, "ppid": 1, "c": 0, "stime": "12:23PM", "tty": null, "time": "0:00.60", "cmd": "/System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.Networking.xpc/Contents/MacOS/com.apple.WebKit.Networking"}, {"uid": "501", "pid": 8321, "ppid": 1, "c": 0, "stime": "12:24PM", "tty": null, "time": "0:00.08", "cmd": "/System/Library/CoreServices/EscrowSecurityAlert.app/Contents/MacOS/EscrowSecurityAlert"}, {"uid": "501", "pid": 8322, "ppid": 1, "c": 0, "stime": "12:24PM", "tty": null, "time": "0:00.57", "cmd": "/System/Library/PrivateFrameworks/CloudServices.framework/Versions/A/XPCServices/com.apple.sbd.xpc/Contents/MacOS/com.apple.sbd"}, {"uid": "501", "pid": 8325, "ppid": 1, "c": 0, "stime": "12:24PM", "tty": null, "time": "0:00.03", "cmd": "/System/Library/PrivateFrameworks/CoreCDP.framework/Versions/A/Resources/cdpd"}, {"uid": "501", "pid": 9214, "ppid": 1, "c": 0, "stime": "12:29PM", "tty": null, "time": "0:00.93", "cmd": "/System/Library/CoreServices/NowPlayingTouchUI.app/Contents/MacOS/NowPlayingTouchUI"}, {"uid": "501", "pid": 14604, "ppid": 1, "c": 0, "stime": "12:46PM", "tty": null, "time": "0:00.14", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdwrite"}, {"uid": "0", "pid": 15535, "ppid": 1, "c": 0, "stime": "12:48PM", "tty": null, "time": "2:17.71", "cmd": "/Library/Tanium/TaniumClient/Tools/Trace/TaniumRecorder"}, {"uid": "97", "pid": 17495, "ppid": 1, "c": 0, "stime": "12:50PM", "tty": null, "time": "0:00.14", "cmd": "/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Support/fontd"}, {"uid": "200", "pid": 17499, "ppid": 1, "c": 0, "stime": "12:50PM", "tty": null, "time": "0:00.09", "cmd": "/usr/sbin/cfprefsd agent"}, {"uid": "200", "pid": 17500, "ppid": 1, "c": 0, "stime": "12:50PM", "tty": null, "time": "0:00.06", "cmd": "/usr/sbin/distnoted agent"}, {"uid": "200", "pid": 17515, "ppid": 1, "c": 0, "stime": "12:50PM", "tty": null, "time": "0:00.04", "cmd": "/System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdate_download_service"}, {"uid": "0", "pid": 23994, "ppid": 1, "c": 0, "stime": "1:12PM", "tty": null, "time": "0:00.45", "cmd": "/System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/XPCServices/com.apple.geod.xpc/Contents/MacOS/com.apple.geod"}, {"uid": "0", "pid": 23995, "ppid": 1, "c": 0, "stime": "1:12PM", "tty": null, "time": "0:00.14", "cmd": "/usr/libexec/secinitd"}, {"uid": "501", "pid": 23999, "ppid": 1, "c": 0, "stime": "1:12PM", "tty": null, "time": "0:00.03", "cmd": "/System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent --launchd"}, {"uid": "501", "pid": 24002, "ppid": 1, "c": 0, "stime": "1:12PM", "tty": null, "time": "0:00.02", "cmd": "/usr/libexec/USBAgent"}, {"uid": "501", "pid": 24149, "ppid": 1, "c": 0, "stime": "1:24PM", "tty": null, "time": "0:00.43", "cmd": "/System/Library/Frameworks/LocalAuthentication.framework/Support/coreautha.bundle/Contents/MacOS/coreautha"}, {"uid": "501", "pid": 24306, "ppid": 1, "c": 0, "stime": "1:25PM", "tty": null, "time": "0:00.47", "cmd": "/System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.Networking.xpc/Contents/MacOS/com.apple.WebKit.Networking"}, {"uid": "501", "pid": 24307, "ppid": 1, "c": 0, "stime": "1:25PM", "tty": null, "time": "0:00.07", "cmd": "/System/Library/Frameworks/SafariServices.framework/Versions/A/XPCServices/com.apple.SafariServices.xpc/Contents/MacOS/com.apple.SafariServices"}, {"uid": "0", "pid": 24324, "ppid": 103, "c": 0, "stime": "1:25PM", "tty": null, "time": "0:41.22", "cmd": "/Library/Tanium/TaniumClient/TaniumClient -c"}, {"uid": "501", "pid": 24327, "ppid": 1, "c": 0, "stime": "1:25PM", "tty": null, "time": "0:00.54", "cmd": "/System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent"}, {"uid": "0", "pid": 28349, "ppid": 24324, "c": 0, "stime": "1:28PM", "tty": null, "time": "0:03.20", "cmd": "/Library/Tanium/TaniumClient/TaniumClient -a"}, {"uid": "501", "pid": 28662, "ppid": 1, "c": 0, "stime": "1:30PM", "tty": null, "time": "0:00.02", "cmd": "/System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/XPCServices/com.apple.tonelibraryd.xpc/Contents/MacOS/com.apple.tonelibraryd"}, {"uid": "501", "pid": 33536, "ppid": 1, "c": 0, "stime": "1:48PM", "tty": null, "time": "0:00.11", "cmd": "/System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService"}, {"uid": "501", "pid": 33592, "ppid": 1, "c": 0, "stime": "1:48PM", "tty": null, "time": "0:00.39", "cmd": "/System/Library/CoreServices/OSDUIHelper.app/Contents/MacOS/OSDUIHelper"}, {"uid": "501", "pid": 36910, "ppid": 1, "c": 0, "stime": "1:59PM", "tty": null, "time": "0:00.42", "cmd": "/System/Library/CoreServices/CoreServicesUIAgent.app/Contents/MacOS/CoreServicesUIAgent"}, {"uid": "501", "pid": 37111, "ppid": 1, "c": 0, "stime": "2:00PM", "tty": null, "time": "0:02.17", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared"}, {"uid": "501", "pid": 37112, "ppid": 1, "c": 0, "stime": "2:00PM", "tty": null, "time": "0:03.63", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared"}, {"uid": "501", "pid": 37114, "ppid": 1, "c": 0, "stime": "2:00PM", "tty": null, "time": "0:02.85", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared"}, {"uid": "501", "pid": 37211, "ppid": 633, "c": 0, "stime": "2:00PM", "tty": null, "time": "0:12.71", "cmd": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/Resources/Python.app/Contents/MacOS/Python -B /Users/kbrazil/Library/Application Support/Sublime Text 3/Packages/Anaconda/anaconda_server/jsonserver.py -p git 51762 -e /Users/kbrazil/git 633"}, {"uid": "501", "pid": 37224, "ppid": 1, "c": 0, "stime": "2:00PM", "tty": null, "time": "0:01.93", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared"}, {"uid": "89", "pid": 48282, "ppid": 1, "c": 0, "stime": "2:42PM", "tty": null, "time": "0:00.47", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared"}, {"uid": "89", "pid": 48283, "ppid": 1, "c": 0, "stime": "2:42PM", "tty": null, "time": "0:00.32", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared"}, {"uid": "501", "pid": 51460, "ppid": 1, "c": 0, "stime": "2:50PM", "tty": null, "time": "0:00.01", "cmd": "/System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper"}, {"uid": "501", "pid": 51461, "ppid": 1, "c": 0, "stime": "2:50PM", "tty": null, "time": "0:00.01", "cmd": "/System/Library/Frameworks/MediaAccessibility.framework/Versions/A/XPCServices/com.apple.accessibility.mediaaccessibilityd.xpc/Contents/MacOS/com.apple.accessibility.mediaaccessibilityd"}, {"uid": "501", "pid": 54435, "ppid": 1, "c": 0, "stime": "2:58PM", "tty": null, "time": "0:00.58", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared"}, {"uid": "89", "pid": 54453, "ppid": 1, "c": 0, "stime": "2:58PM", "tty": null, "time": "0:03.34", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared"}, {"uid": "89", "pid": 54454, "ppid": 1, "c": 0, "stime": "2:58PM", "tty": null, "time": "0:02.19", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared"}, {"uid": "501", "pid": 54954, "ppid": 1, "c": 0, "stime": "3:01PM", "tty": null, "time": "0:00.08", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.single"}, {"uid": "501", "pid": 57229, "ppid": 1, "c": 0, "stime": "3:13PM", "tty": null, "time": "0:00.13", "cmd": "/System/Library/CoreServices/mapspushd"}, {"uid": "0", "pid": 57231, "ppid": 1, "c": 0, "stime": "3:13PM", "tty": null, "time": "0:00.04", "cmd": "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeinstalld"}, {"uid": "89", "pid": 64474, "ppid": 1, "c": 0, "stime": "3:34PM", "tty": null, "time": "0:00.14", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared"}, {"uid": "89", "pid": 64529, "ppid": 1, "c": 0, "stime": "3:35PM", "tty": null, "time": "0:00.16", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared"}, {"uid": "89", "pid": 64530, "ppid": 1, "c": 0, "stime": "3:35PM", "tty": null, "time": "0:00.23", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared"}, {"uid": "89", "pid": 64590, "ppid": 1, "c": 0, "stime": "3:35PM", "tty": null, "time": "0:00.10", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared"}, {"uid": "501", "pid": 64594, "ppid": 1, "c": 0, "stime": "3:35PM", "tty": null, "time": "0:00.69", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared"}, {"uid": "89", "pid": 64595, "ppid": 1, "c": 0, "stime": "3:35PM", "tty": null, "time": "0:00.17", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared"}, {"uid": "89", "pid": 64599, "ppid": 1, "c": 0, "stime": "3:35PM", "tty": null, "time": "0:00.06", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared"}, {"uid": "89", "pid": 64600, "ppid": 1, "c": 0, "stime": "3:35PM", "tty": null, "time": "0:01.14", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared"}, {"uid": "89", "pid": 64654, "ppid": 1, "c": 0, "stime": "3:35PM", "tty": null, "time": "0:00.10", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared"}, {"uid": "89", "pid": 64688, "ppid": 1, "c": 0, "stime": "3:35PM", "tty": null, "time": "0:01.23", "cmd": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared"}, {"uid": "0", "pid": 65695, "ppid": 1, "c": 0, "stime": "3:40PM", "tty": null, "time": "0:00.11", "cmd": "/usr/sbin/ocspd"}, {"uid": "501", "pid": 68384, "ppid": 1, "c": 0, "stime": "3:44PM", "tty": null, "time": "0:00.09", "cmd": "/System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/XPCServices/com.apple.iCloudHelper.xpc/Contents/MacOS/com.apple.iCloudHelper"}, {"uid": "0", "pid": 68539, "ppid": 1, "c": 0, "stime": "3:44PM", "tty": null, "time": "0:00.32", "cmd": "/Library/Tanium/TaniumClient/Tools/Detect3/TaniumDetectEngine"}, {"uid": "0", "pid": 69298, "ppid": 1, "c": 0, "stime": "3:48PM", "tty": null, "time": "0:00.02", "cmd": "/System/Library/PrivateFrameworks/Heimdal.framework/Helpers/kcm --launchd"}, {"uid": "0", "pid": 606, "ppid": 556, "c": 0, "stime": "12:10PM", "tty": "ttys000", "time": "0:00.03", "cmd": "login -pfl kbrazil /bin/bash -c exec -la bash /bin/bash"}, {"uid": "501", "pid": 609, "ppid": 606, "c": 0, "stime": "12:10PM", "tty": "ttys000", "time": "0:00.14", "cmd": "-bash"}, {"uid": "0", "pid": 69300, "ppid": 609, "c": 0, "stime": "3:49PM", "tty": "ttys000", "time": "0:00.00", "cmd": "ps -ef"}] jc-1.17.3/tests/fixtures/osx-10.14.6/ps-ef.out000066400000000000000000001371661415226333200204120ustar00rootroot00000000000000 UID PID PPID C STIME TTY TIME CMD 0 1 0 0 12:09PM ?? 1:08.04 /sbin/launchd 0 40 1 0 12:10PM ?? 0:00.91 /usr/sbin/syslogd 0 41 1 0 12:10PM ?? 0:02.23 /usr/libexec/UserEventAgent (System) 0 44 1 0 12:10PM ?? 0:00.42 /System/Library/PrivateFrameworks/Uninstall.framework/Resources/uninstalld 0 45 1 0 12:10PM ?? 0:06.00 /usr/libexec/kextd 0 46 1 0 12:10PM ?? 0:53.57 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/Support/fseventsd 0 48 1 0 12:10PM ?? 0:01.89 /usr/local/jamf/bin/jamf launchDaemon -monitorUsage 0 49 1 0 12:10PM ?? 0:00.43 /System/Library/PrivateFrameworks/MediaRemote.framework/Support/mediaremoted 55 52 1 0 12:10PM ?? 0:00.27 /System/Library/CoreServices/appleeventsd --server 0 53 1 0 12:10PM ?? 0:05.66 /usr/sbin/systemstats --daemon 0 55 1 0 12:10PM ?? 0:02.57 /usr/libexec/configd 0 56 1 0 12:10PM ?? 0:03.30 /Library/Application Support/BeyondTrust/pbmac/pbmacd 0 57 1 0 12:10PM ?? 0:10.22 /System/Library/CoreServices/powerd.bundle/powerd 0 58 1 0 12:10PM ?? 1:23.40 /Library/Application Support/JAMF/Jamf.app/Contents/MacOS/JamfDaemon.app/Contents/MacOS/JamfDaemon 0 61 1 0 12:10PM ?? 0:10.03 /usr/libexec/logd 0 62 1 0 12:10PM ?? 0:00.02 /usr/libexec/keybagd -t 15 0 68 1 0 12:10PM ?? 1:38.08 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Support/mds 0 69 1 0 12:10PM ?? 0:00.93 /Library/Application Support/LANDesk/bin/IVRemoteControl.app/Contents/MacOS/ivremote 240 70 1 0 12:10PM ?? 0:00.03 /System/Library/CoreServices/iconservicesd 0 71 1 0 12:10PM ?? 0:01.65 /usr/libexec/diskarbitrationd 0 75 1 0 12:10PM ?? 0:06.74 /System/Library/CoreServices/backupd.bundle/Contents/Resources/backupd-helper -launchd 0 76 1 0 12:10PM ?? 0:02.04 /usr/libexec/coreduetd 0 79 1 0 12:10PM ?? 0:28.21 /usr/libexec/opendirectoryd 0 80 1 0 12:10PM ?? 0:00.87 /Library/Application Support/LANDesk/bin/ldremote 0 81 1 0 12:10PM ?? 0:01.51 /System/Library/PrivateFrameworks/ApplePushService.framework/apsd 0 82 1 0 12:10PM ?? 0:00.04 /Library/PrivilegedHelperTools/com.docker.vmnetd 0 83 1 0 12:10PM ?? 0:00.02 /System/Library/PrivateFrameworks/Noticeboard.framework/Versions/A/Resources/nbstated 0 84 1 0 12:10PM ?? 0:05.12 /System/Library/CoreServices/launchservicesd 266 85 1 0 12:10PM ?? 0:00.33 /usr/libexec/timed 0 86 1 0 12:10PM ?? 1:23.98 /Library/enSilo/enSiloCollector 0 87 1 0 12:10PM ?? 0:04.23 /Library/Application Support/LANDesk/bin/ldtmc 0 88 1 0 12:10PM ?? 0:07.13 /usr/sbin/securityd -i 213 89 1 0 12:10PM ?? 0:00.30 /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/Resources/usbmuxd -launchd 205 91 1 0 12:10PM ?? 0:10.47 /usr/libexec/locationd 0 92 1 0 12:10PM ?? 0:00.05 /Library/Application Support/LANDesk/bin/ldwatch 0 94 1 0 12:10PM ?? 0:01.61 /Library/Application Support/LANDesk/bin/ldscheduler 0 95 1 0 12:10PM ?? 0:00.02 autofsd 244 96 1 0 12:10PM ?? 0:00.08 /usr/libexec/displaypolicyd -k 1 0 97 1 0 12:10PM ?? 0:02.68 /usr/libexec/dasd 0 99 1 0 12:10PM ?? 0:03.32 /Library/Application Support/LANDesk/bin/IVMetrics.app/Contents/MacOS/IVMetrics --monitor 0 101 1 0 12:10PM ?? 0:03.30 /usr/libexec/PerfPowerServices 0 103 1 0 12:10PM ?? 0:00.05 /Library/Tanium/TaniumClient/TaniumClient -d 501 104 1 0 12:10PM ?? 0:03.02 /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow console 0 105 1 0 12:10PM ?? 0:00.07 /System/Library/CoreServices/logind 0 106 1 0 12:10PM ?? 0:00.11 /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Support/revisiond 0 107 1 0 12:10PM ?? 0:00.01 /usr/sbin/KernelEventAgent 0 108 1 0 12:10PM ?? 0:00.21 /Library/Application Support/LANDesk/bin/lddispatch -p ipc:///Library/Application Support/LANDesk/tmp/socket/sys -s 0 110 1 0 12:10PM ?? 0:01.29 /usr/sbin/bluetoothd 261 112 1 0 12:10PM ?? 2:46.55 /usr/libexec/hidd 0 113 1 0 12:10PM ?? 0:04.54 /usr/libexec/sandboxd 0 114 1 0 12:10PM ?? 0:00.72 /usr/libexec/corebrightnessd --launchd 0 115 1 0 12:10PM ?? 0:00.60 /usr/libexec/AirPlayXPCHelper 0 116 1 0 12:10PM ?? 0:10.20 /usr/sbin/notifyd 0 118 1 0 12:10PM ?? 0:00.54 /usr/libexec/taskgated 0 119 1 0 12:10PM ?? 0:04.21 /usr/libexec/amfid 241 121 1 0 12:10PM ?? 0:01.09 /usr/sbin/distnoted daemon 0 123 1 0 12:10PM ?? 0:01.38 /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/authd.xpc/Contents/MacOS/authd 0 124 1 0 12:10PM ?? 0:00.04 aslmanager 0 125 1 0 12:10PM ?? 0:12.29 /usr/libexec/syspolicyd 0 127 1 0 12:10PM ?? 0:09.33 /usr/sbin/cfprefsd daemon 0 133 1 0 12:10PM ?? 0:08.08 /System/Library/CoreServices/coreservicesd 0 157 1 0 12:10PM ?? 0:00.03 /System/Library/Frameworks/PCSC.framework/Versions/A/XPCServices/com.apple.ctkpcscd.xpc/Contents/MacOS/com.apple.ctkpcscd 0 159 1 0 12:10PM ?? 0:38.79 /usr/libexec/trustd 0 166 1 0 12:10PM ?? 0:01.40 /usr/libexec/mobileassetd 242 168 1 0 12:10PM ?? 0:00.86 /usr/libexec/nsurlsessiond --privileged 259 182 1 0 12:10PM ?? 0:00.02 /System/Library/Frameworks/CryptoTokenKit.framework/ctkd -s 202 185 1 0 12:10PM ?? 1:25.16 /usr/sbin/coreaudiod 0 186 1 0 12:10PM ?? 0:03.63 /System/Library/PrivateFrameworks/CoreDuetContext.framework/Resources/contextstored 202 187 1 0 12:10PM ?? 0:00.11 /System/Library/Frameworks/CoreAudio.framework/Versions/A/XPCServices/com.apple.audio.DriverHelper.xpc/Contents/MacOS/com.apple.audio.DriverHelper 0 188 1 0 12:10PM ?? 0:04.39 /usr/libexec/nehelper 0 189 1 0 12:10PM ?? 0:00.60 /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Support/awdd 0 190 1 0 12:10PM ?? 0:19.02 /usr/libexec/lsd runAsRoot 88 192 1 0 12:10PM ?? 10:50.56 /System/Library/PrivateFrameworks/SkyLight.framework/Resources/WindowServer -daemon 24 193 1 0 12:10PM ?? 0:06.46 /usr/libexec/symptomsd 65 194 1 0 12:10PM ?? 0:05.65 /usr/sbin/mDNSResponder 0 195 1 0 12:10PM ?? 0:00.57 /usr/sbin/mDNSResponderHelper 0 197 1 0 12:10PM ?? 0:00.01 /usr/libexec/multiversed 0 198 1 0 12:10PM ?? 0:00.02 /System/Library/CryptoTokenKit/com.apple.ifdreader.slotd/Contents/MacOS/com.apple.ifdreader 0 199 1 0 12:10PM ?? 0:00.03 /usr/libexec/apfsd 0 200 1 0 12:10PM ?? 0:24.98 /usr/libexec/airportd 0 201 1 0 12:10PM ?? 0:00.08 /usr/libexec/usbd 262 202 1 0 12:10PM ?? 0:00.13 /System/Library/Frameworks/CoreMediaIO.framework/Resources/VDC.plugin/Contents/Resources/VDCAssistant 200 203 1 0 12:10PM ?? 0:00.06 /System/Library/PrivateFrameworks/BridgeOSSoftwareUpdate.framework/Support/bosUpdateProxy 0 204 1 0 12:10PM ?? 0:11.52 /usr/libexec/ApplicationFirewall/socketfilterfw 0 205 1 0 12:10PM ?? 0:00.14 /System/Library/CoreServices/SubmitDiagInfo server-init 0 206 1 0 12:10PM ?? 0:00.85 /System/Library/CoreServices/backupd.bundle/Contents/Resources/backupd 0 208 1 0 12:10PM ?? 0:00.23 /System/Library/PrivateFrameworks/CoreSymbolication.framework/coresymbolicationd 0 216 103 0 12:10PM ?? 0:14.16 /Library/Tanium/TaniumClient/TaniumClient -m 243 218 1 0 12:10PM ?? 0:00.05 /usr/libexec/nsurlstoraged --privileged 0 219 1 0 12:10PM ?? 0:00.21 /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/com.apple.CodeSigningHelper.xpc/Contents/MacOS/com.apple.CodeSigningHelper 263 226 1 0 12:10PM ?? 0:00.22 /System/Library/PrivateFrameworks/CoreAnalytics.framework/Support/analyticsd 0 231 1 0 12:10PM ?? 0:00.02 /usr/libexec/smd 0 238 1 0 12:10PM ?? 0:00.43 /usr/libexec/watchdogd 0 430 1 0 12:10PM ?? 0:00.04 /System/Library/Frameworks/AudioToolbox.framework/AudioComponentRegistrar -daemon 202 431 1 0 12:10PM ?? 0:00.02 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper 0 432 1 0 12:10PM ?? 0:00.06 /usr/libexec/thermald 0 433 1 0 12:10PM ?? 0:02.32 /System/Library/PrivateFrameworks/TCC.framework/Resources/tccd system 0 434 1 0 12:10PM ?? 12:44.72 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mds_stores 0 436 1 0 12:10PM ?? 0:01.92 /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/XPCServices/ViewBridgeAuxiliary.xpc/Contents/MacOS/ViewBridgeAuxiliary 258 437 1 0 12:10PM ?? 0:00.09 /usr/libexec/captiveagent 0 439 1 0 12:10PM ?? 0:00.10 /usr/libexec/secinitd 222 452 1 0 12:10PM ?? 0:00.19 /usr/sbin/netbiosd 0 453 1 0 12:10PM ?? 0:19.50 /usr/libexec/TouchBarServer 0 454 1 0 12:10PM ?? 0:00.03 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/CVMServer 0 455 1 0 12:10PM ?? 0:00.04 /usr/libexec/colorsync.displayservices 0 458 1 0 12:10PM ?? 0:00.07 /usr/sbin/distnoted agent 0 462 1 0 12:10PM ?? 0:00.02 /usr/libexec/colorsyncd 0 466 1 0 12:10PM ?? 0:00.90 /usr/libexec/sysmond 0 467 1 0 12:10PM ?? 0:00.02 /usr/libexec/bootinstalld 0 469 53 0 12:10PM ?? 0:00.17 /usr/sbin/systemstats --logger-helper /private/var/db/systemstats 0 473 1 0 12:10PM ?? 0:00.13 /System/Library/CoreServices/sharedfilelistd 0 477 1 0 12:10PM ?? 0:00.02 /System/Library/PrivateFrameworks/AccountPolicy.framework/XPCServices/com.apple.AccountPolicyHelper.xpc/Contents/MacOS/com.apple.AccountPolicyHelper 0 478 1 0 12:10PM ?? 0:00.02 /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/XPCServices/com.apple.cmio.registerassistantservice.xpc/Contents/MacOS/com.apple.cmio.registerassistantservice 0 479 1 0 12:10PM ?? 0:00.04 /System/Library/PrivateFrameworks/SystemAdministration.framework/XPCServices/writeconfig.xpc/Contents/MacOS/writeconfig 0 484 1 0 12:10PM ?? 0:00.01 /System/Library/Frameworks/GSS.framework/Helpers/GSSCred 0 486 1 0 12:10PM ?? 0:00.70 /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/XPCServices/com.apple.PerformanceAnalysis.animationperfd.xpc/Contents/MacOS/com.apple.PerformanceAnalysis.animationperfd 0 492 1 0 12:10PM ?? 0:00.13 /System/Library/Frameworks/LocalAuthentication.framework/Support/coreauthd 0 493 1 0 12:10PM ?? 0:02.24 /System/Library/PrivateFrameworks/FamilyControls.framework/Resources/parentalcontrolsd 501 494 1 0 12:10PM ?? 0:00.02 /System/Library/Frameworks/LocalAuthentication.framework/Support/coreauthd 0 495 1 0 12:10PM ?? 0:00.23 /usr/libexec/biometrickitd --launchd 501 496 1 0 12:10PM ?? 0:10.88 /usr/sbin/cfprefsd agent 0 497 1 0 12:10PM ?? 0:00.03 /usr/libexec/biokitaggdd 0 498 1 0 12:10PM ?? 0:00.02 /usr/libexec/securityd_service 501 499 1 0 12:10PM ?? 0:04.20 /usr/libexec/UserEventAgent (Aqua) 501 501 1 0 12:10PM ?? 0:01.89 /usr/sbin/distnoted agent 501 502 1 0 12:10PM ?? 0:01.69 /usr/sbin/universalaccessd launchd -s 501 503 1 0 12:10PM ?? 0:01.43 /System/Library/Frameworks/CoreTelephony.framework/Support/CommCenter -L 501 505 1 0 12:10PM ?? 0:01.60 /usr/libexec/lsd 501 506 1 0 12:10PM ?? 0:13.16 /usr/libexec/trustd --agent 501 507 1 0 12:10PM ?? 0:05.95 /usr/libexec/secd 501 508 1 0 12:10PM ?? 0:00.19 /System/Library/CoreServices/backgroundtaskmanagementagent 501 509 1 0 12:10PM ?? 0:01.90 /System/Library/PrivateFrameworks/CloudKitDaemon.framework/Support/cloudd 501 511 1 0 12:10PM ?? 0:00.26 /usr/libexec/pboard 501 512 1 0 12:10PM ?? 0:01.19 /System/Library/PrivateFrameworks/TCC.framework/Resources/tccd 501 513 1 0 12:10PM ?? 0:01.11 /usr/libexec/nsurlsessiond 0 514 1 0 12:10PM ?? 0:00.11 /usr/sbin/WirelessRadioManagerd 501 515 1 0 12:10PM ?? 0:13.00 /System/Library/PrivateFrameworks/TelephonyUtilities.framework/callservicesd 501 517 1 0 12:10PM ?? 0:09.12 /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd 501 518 1 0 12:10PM ?? 0:00.06 /System/Library/Frameworks/Security.framework/Versions/A/Resources/CloudKeychainProxy.bundle/Contents/MacOS/CloudKeychainProxy 501 519 1 0 12:10PM ?? 0:01.77 /System/Library/PrivateFrameworks/IDS.framework/identityservicesd.app/Contents/MacOS/identityservicesd 501 520 1 0 12:10PM ?? 0:01.06 /System/Library/CoreServices/talagent 501 521 1 0 12:10PM ?? 0:02.48 /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/XPCServices/ViewBridgeAuxiliary.xpc/Contents/MacOS/ViewBridgeAuxiliary 501 522 1 0 12:10PM ?? 0:00.70 /System/Library/PrivateFrameworks/IMCore.framework/imagent.app/Contents/MacOS/imagent 501 523 1 0 12:10PM ?? 0:00.51 /System/Library/PrivateFrameworks/IMDPersistence.framework/XPCServices/IMDPersistenceAgent.xpc/Contents/MacOS/IMDPersistenceAgent 501 524 1 0 12:10PM ?? 0:00.96 /System/Library/Frameworks/AddressBook.framework/Executables/ContactsAccountsService 501 525 1 0 12:10PM ?? 0:29.59 /System/Library/CoreServices/iconservicesagent 501 526 1 0 12:10PM ?? 0:00.99 /usr/libexec/secinitd 0 527 1 0 12:10PM ?? 0:00.04 /usr/sbin/wirelessproxd 501 528 1 0 12:10PM ?? 0:00.75 /usr/libexec/rapportd 501 529 1 0 12:10PM ?? 0:00.46 /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/Support/akd 501 530 1 0 12:10PM ?? 0:40.74 /Applications/Mail.app/Contents/MacOS/Mail -psn_0_69649 501 531 1 0 12:10PM ?? 0:00.45 /System/Library/CoreServices/sharedfilelistd 501 532 1 0 12:10PM ?? 0:02.03 /usr/libexec/routined LAUNCHED_BY_LAUNCHD 501 533 1 0 12:10PM ?? 0:01.30 /usr/sbin/usernoted 501 534 1 0 12:10PM ?? 0:02.87 /System/Library/CoreServices/ControlStrip.app/Contents/MacOS/ControlStrip 501 535 1 0 12:10PM ?? 0:00.11 /usr/libexec/networkserviceproxy 501 536 1 0 12:10PM ?? 0:00.02 /System/Library/CoreServices/APFSUserAgent 501 537 1 0 12:10PM ?? 0:05.62 /System/Library/PrivateFrameworks/CalendarAgent.framework/Executables/CalendarAgent 501 540 1 0 12:10PM ?? 0:00.87 /System/Library/CoreServices/WiFiAgent.app/Contents/MacOS/WiFiAgent 501 541 1 0 12:10PM ?? 0:03.76 /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Support/fontd 0 542 1 0 12:10PM ?? 0:00.02 /System/Library/CoreServices/CrashReporterSupportHelper server-init 501 543 1 0 12:10PM ?? 0:03.69 /System/Library/CoreServices/NotificationCenter.app/Contents/MacOS/NotificationCenter 501 545 1 0 12:10PM ?? 0:00.18 /System/Library/PrivateFrameworks/IMFoundation.framework/XPCServices/IMRemoteURLConnectionAgent.xpc/Contents/MacOS/IMRemoteURLConnectionAgent 501 546 1 0 12:10PM ?? 0:15.02 /System/Library/PrivateFrameworks/MessagesKit.framework/Resources/soagent.app/Contents/MacOS/soagent 501 547 1 0 12:10PM ?? 0:03.48 /usr/libexec/sharingd 501 548 1 0 12:10PM ?? 0:37.83 /Applications/Sourcetree.app/Contents/MacOS/Sourcetree -psn_0_86037 501 549 1 0 12:10PM ?? 0:00.57 /System/Library/PrivateFrameworks/UserActivity.framework/Agents/useractivityd 501 551 1 0 12:10PM ?? 0:00.92 /usr/libexec/nsurlstoraged 501 552 1 0 12:10PM ?? 0:01.59 /System/Library/PrivateFrameworks/CalendarNotification.framework/Versions/A/XPCServices/CalNCService.xpc/Contents/MacOS/CalNCService 501 553 1 0 12:10PM ?? 0:05.94 /Applications/Calendar.app/Contents/MacOS/Calendar -psn_0_98328 501 554 1 0 12:10PM ?? 0:00.03 /System/Library/PrivateFrameworks/MediaRemote.framework/Support/mediaremoteagent 501 555 1 0 12:10PM ?? 0:00.39 /usr/libexec/fmfd 501 556 1 0 12:10PM ?? 0:37.43 /Applications/Utilities/Terminal.app/Contents/MacOS/Terminal -psn_0_102425 501 557 1 0 12:10PM ?? 0:00.15 /System/Library/PrivateFrameworks/IMFoundation.framework/XPCServices/IMRemoteURLConnectionAgent.xpc/Contents/MacOS/IMRemoteURLConnectionAgent 501 558 1 0 12:10PM ?? 0:01.50 /Applications/Reminders.app/Contents/MacOS/Reminders -psn_0_106522 501 559 1 0 12:10PM ?? 0:00.06 /System/Library/PrivateFrameworks/FamilyCircle.framework/Versions/A/Resources/familycircled 501 560 1 0 12:10PM ?? 2:56.08 /Applications/Sublime Text.app/Contents/MacOS/Sublime Text -psn_0_110619 501 561 1 0 12:10PM ?? 0:07.59 /Applications/Notes.app/Contents/MacOS/Notes -psn_0_114716 501 563 1 0 12:10PM ?? 0:00.32 /usr/libexec/swcd 501 564 1 0 12:10PM ?? 0:00.33 /System/Library/PrivateFrameworks/AssistantServices.framework/Versions/A/Support/assistantd 501 565 1 0 12:10PM ?? 0:00.64 /System/Library/PrivateFrameworks/CloudDocsDaemon.framework/Versions/A/Support/bird 501 566 1 0 12:10PM ?? 0:17.14 /Applications/Messages.app/Contents/MacOS/Messages -psn_0_118813 501 567 1 0 12:10PM ?? 0:04.34 /Applications/Contacts.app/Contents/MacOS/Contacts -psn_0_122910 265 569 1 0 12:10PM ?? 0:00.14 /System/Library/PrivateFrameworks/CoreADI.framework/adid 501 572 1 0 12:10PM ?? 0:03.47 /usr/libexec/pkd 501 573 1 0 12:10PM ?? 0:17.55 /System/Library/CoreServices/Dock.app/Contents/MacOS/Dock 501 574 1 0 12:10PM ?? 0:00.08 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeaccountd 501 575 1 0 12:10PM ?? 0:03.66 /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer 501 576 1 0 12:10PM ?? 0:22.63 /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder 0 580 1 0 12:10PM ?? 0:00.76 /usr/sbin/systemsoundserverd 501 581 1 0 12:10PM ?? 0:00.04 /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CMFSyncAgent 501 582 1 0 12:10PM ?? 0:03.14 /System/Library/CoreServices/Spotlight.app/Contents/MacOS/Spotlight 501 583 1 0 12:10PM ?? 0:00.02 /System/Library/PrivateFrameworks/CoreFollowUp.framework/Versions/A/Support/followupd 501 585 1 0 12:10PM ?? 0:00.45 /System/Library/PrivateFrameworks/CoreParsec.framework/parsecd 0 592 1 0 12:10PM ?? 0:00.09 /usr/sbin/filecoordinationd 501 593 1 0 12:10PM ?? 0:00.51 /System/Library/Frameworks/InputMethodKit.framework/Resources/imklaunchagent 501 594 1 0 12:10PM ?? 0:00.55 /System/Library/PrivateFrameworks/CoreWLANKit.framework/Versions/A/XPCServices/WiFiProxy.xpc/Contents/MacOS/WiFiProxy 501 595 1 0 12:10PM ?? 0:00.97 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/commerce 501 596 1 0 12:10PM ?? 0:00.55 /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/XPCServices/com.apple.geod.xpc/Contents/MacOS/com.apple.geod 501 597 1 0 12:10PM ?? 0:00.99 /System/Library/Input Methods/PressAndHold.app/Contents/PlugIns/PAH_Extension.appex/Contents/MacOS/PAH_Extension 501 599 1 0 12:10PM ?? 0:03.30 /System/Library/Input Methods/EmojiFunctionRowIM.app/Contents/PlugIns/EmojiFunctionRowIM_Extension.appex/Contents/MacOS/EmojiFunctionRowIM_Extension 501 600 1 0 12:10PM ?? 0:00.15 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService 501 601 1 0 12:10PM ?? 0:00.74 /System/Library/CoreServices/Dock.app/Contents/XPCServices/com.apple.dock.extra.xpc/Contents/MacOS/com.apple.dock.extra 501 603 1 0 12:10PM ?? 0:00.67 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent 501 604 1 0 12:10PM ?? 0:00.67 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.Networking.xpc/Contents/MacOS/com.apple.WebKit.Networking 501 605 1 0 12:10PM ?? 0:00.03 /System/Library/PrivateFrameworks/CharacterPicker.framework/Versions/A/XPCServices/com.apple.CharacterPicker.FileService.xpc/Contents/MacOS/com.apple.CharacterPicker.FileService 501 607 1 0 12:10PM ?? 0:00.26 /System/Library/PrivateFrameworks/CallHistory.framework/Support/CallHistoryPluginHelper 501 608 1 0 12:10PM ?? 0:00.52 /System/Library/PrivateFrameworks/WeatherKit.framework/Versions/A/XPCServices/com.apple.WeatherKitService.xpc/Contents/MacOS/com.apple.WeatherKitService 501 617 1 0 12:10PM ?? 0:00.21 /System/Library/PrivateFrameworks/ContactsDonation.framework/Versions/A/Support/contactsdonationagent 0 627 1 0 12:10PM ?? 0:00.46 /usr/libexec/findmydeviced 501 631 1 0 12:10PM ?? 0:00.36 /usr/libexec/knowledge-agent 501 632 1 0 12:10PM ?? 0:00.82 /System/Library/PrivateFrameworks/FileProvider.framework/Support/fileproviderd 501 633 560 0 12:10PM ?? 1:48.07 /Applications/Sublime Text.app/Contents/MacOS/plugin_host 560 --auto-shell-env 501 640 1 0 12:10PM ?? 0:00.39 /System/Library/CoreServices/pbs 247 642 1 0 12:10PM ?? 0:00.66 /usr/libexec/gamecontrollerd 0 658 1 0 12:10PM ?? 0:02.01 /usr/sbin/spindump 501 659 1 0 12:10PM ?? 0:14.00 /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell 501 661 1 0 12:10PM ?? 0:00.03 /usr/libexec/spindump_agent 501 664 1 0 12:10PM ?? 0:00.02 /System/Library/PrivateFrameworks/IMFoundation.framework/XPCServices/IMRemoteURLConnectionAgent.xpc/Contents/MacOS/IMRemoteURLConnectionAgent 501 665 1 0 12:10PM ?? 0:00.06 /usr/libexec/keyboardservicesd 501 667 1 0 12:10PM ?? 0:00.05 /System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCService 501 676 1 0 12:10PM ?? 0:00.08 /usr/libexec/videosubscriptionsd 501 680 1 0 12:10PM ?? 0:00.01 SafeEjectGPUAgent 501 684 1 0 12:10PM ?? 0:00.03 /System/Library/CoreServices/Menu Extras/SafeEjectGPUExtra.menu/Contents/XPCServices/SafeEjectGPUService.xpc/Contents/MacOS/SafeEjectGPUService 501 785 1 0 12:10PM ?? 0:00.09 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService 0 787 1 0 12:10PM ?? 0:00.38 /System/Library/PrivateFrameworks/AmbientDisplay.framework/Versions/A/XPCServices/com.apple.AmbientDisplayAgent.xpc/Contents/MacOS/com.apple.AmbientDisplayAgent 501 788 1 0 12:10PM ?? 0:00.73 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeuid.app/Contents/MacOS/storeuid 501 794 1 0 12:10PM ?? 0:00.67 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeassetd 501 795 1 0 12:10PM ?? 0:00.79 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/XPCServices/com.apple.hiservices-xpcservice.xpc/Contents/MacOS/com.apple.hiservices-xpcservice 501 797 1 0 12:10PM ?? 0:00.09 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storedownloadd 501 798 1 0 12:10PM ?? 0:03.12 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent 501 799 1 0 12:10PM ?? 0:02.33 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.Networking.xpc/Contents/MacOS/com.apple.WebKit.Networking 501 800 1 0 12:10PM ?? 0:00.06 /System/Library/Frameworks/ColorSync.framework/Support/colorsync.useragent 501 801 1 0 12:10PM ?? 0:05.63 /System/Library/PrivateFrameworks/CoreSuggestions.framework/Versions/A/Support/suggestd 0 806 1 0 12:10PM ?? 0:10.25 /System/Library/CoreServices/iconservicesagent runAsRoot 501 808 1 0 12:10PM ?? 0:00.36 /System/Library/PrivateFrameworks/CloudDocsDaemon.framework/XPCServices/ContainerMetadataExtractor.xpc/Contents/MacOS/ContainerMetadataExtractor 501 811 1 0 12:10PM ?? 0:00.28 /System/Library/PrivateFrameworks/CoreSuggestions.framework/Versions/A/Support/reversetemplated 501 812 1 0 12:10PM ?? 0:00.05 /System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCService 501 813 1 0 12:10PM ?? 0:00.18 /System/Library/PrivateFrameworks/CacheDelete.framework/deleted 88 816 1 0 12:10PM ?? 0:00.08 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService 501 818 1 0 12:10PM ?? 0:00.11 /System/Library/Frameworks/AudioToolbox.framework/AudioComponentRegistrar 501 819 1 0 12:10PM ?? 0:00.04 /usr/libexec/assertiond 501 820 1 0 12:10PM ?? 0:00.59 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/corespotlightd 501 822 1 0 12:10PM ?? 0:00.35 /System/Library/CoreServices/diagnostics_agent 235 823 1 0 12:10PM ?? 0:00.06 /usr/libexec/AssetCache/AssetCache 501 824 1 0 12:10PM ?? 0:00.91 /System/Library/CoreServices/cloudphotosd.app/Contents/MacOS/cloudphotosd 0 825 1 0 12:10PM ?? 0:38.19 /System/Library/PrivateFrameworks/PackageKit.framework/Resources/installd 0 827 1 0 12:10PM ?? 0:00.05 /usr/bin/sysdiagnose 0 828 1 0 12:10PM ?? 0:00.03 /System/Library/PrivateFrameworks/PackageKit.framework/Resources/system_installd 501 829 1 0 12:10PM ?? 0:00.03 /System/Library/PrivateFrameworks/QuickLookThumbnailing.framework/Support/com.apple.quicklook.ThumbnailsAgent 501 830 1 0 12:10PM ?? 0:00.15 /System/Library/PrivateFrameworks/CloudPhotoServices.framework/Versions/A/Frameworks/CloudPhotosConfigurationXPC.framework/Versions/A/XPCServices/com.apple.CloudPhotosConfiguration.xpc/Contents/MacOS/com.apple.CloudPhotosConfiguration 501 835 1 0 12:10PM ?? 0:00.70 /System/Library/CoreServices/CoreLocationAgent.app/Contents/MacOS/CoreLocationAgent 501 841 1 0 12:10PM ?? 0:00.52 /System/Library/Frameworks/MediaLibrary.framework/Versions/A/XPCServices/com.apple.MediaLibraryService.xpc/Contents/MacOS/com.apple.MediaLibraryService 501 843 1 0 12:10PM ?? 0:00.20 /System/Library/PrivateFrameworks/IMFoundation.framework/XPCServices/IMRemoteURLConnectionAgent.xpc/Contents/MacOS/IMRemoteURLConnectionAgent 501 844 1 0 12:10PM ?? 0:00.20 /System/Library/PrivateFrameworks/CoreRecents.framework/Versions/A/Support/recentsd 501 845 1 0 12:10PM ?? 0:00.08 /System/Library/PrivateFrameworks/PhotoLibraryPrivate.framework/Versions/A/Support/photolibraryd 260 846 1 0 12:10PM ?? 0:00.09 /usr/libexec/nfcd 0 847 1 0 12:10PM ?? 0:00.06 /usr/libexec/dprivacyd 501 848 1 0 12:10PM ?? 0:00.16 /System/Library/CoreServices/ScopedBookmarkAgent 501 849 1 0 12:10PM ?? 0:01.34 /System/Library/PrivateFrameworks/CoreSpeech.framework/corespeechd 501 854 1 0 12:10PM ?? 0:00.04 /System/Library/CoreServices/SocialPushAgent.app/Contents/MacOS/SocialPushAgent 0 857 1 0 12:10PM ?? 0:00.56 /Library/Application Support/LANDesk/bin/ldlockscreen 501 858 1 0 12:10PM ?? 0:00.83 /usr/local/jamf/bin/jamfAgent 501 860 1 0 12:10PM ?? 0:00.09 /usr/libexec/dmd 501 861 1 0 12:10PM ?? 0:00.77 /Applications/Ivanti Agent.app/Contents/MacOS/Ivanti Agent 501 862 1 0 12:10PM ?? 0:00.20 /System/Library/Image Capture/Support/icdd 501 866 1 0 12:10PM ?? 0:14.77 /Applications/Egnyte WebEdit.app/Contents/MacOS/Egnyte WebEdit 501 867 1 0 12:10PM ?? 0:01.23 /Library/enSilo/enSiloCollectorTray.app/Contents/MacOS/enSiloCollectorTray 501 868 1 0 12:10PM ?? 0:00.61 /System/Library/CoreServices/AirPlayUIAgent.app/Contents/MacOS/AirPlayUIAgent --launchd 501 869 1 0 12:10PM ?? 0:00.23 /System/Library/CoreServices/cloudpaird 501 872 1 0 12:10PM ?? 0:00.64 /System/Library/PrivateFrameworks/Noticeboard.framework/Versions/A/Resources/nbagent.app/Contents/MacOS/nbagent 501 873 1 0 12:10PM ?? 0:00.65 /usr/libexec/adprivacyd 0 875 1 0 12:10PM ?? 0:00.03 /System/Library/Frameworks/CryptoTokenKit.framework/ctkahp.bundle/Contents/MacOS/ctkahp -d 501 876 1 0 12:10PM ?? 0:24.98 /Applications/StatusClock.app/Contents/MacOS/StatusClock 501 877 1 0 12:10PM ?? 0:00.04 /System/Library/Frameworks/CryptoTokenKit.framework/ctkahp.bundle/Contents/MacOS/ctkahp 501 879 1 0 12:10PM ?? 0:00.03 /System/Library/Frameworks/CryptoTokenKit.framework/ctkd -tw 0 892 1 0 12:10PM ?? 0:00.22 /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/Support/akd 501 893 1 0 12:10PM ?? 0:00.02 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper 501 907 1 0 12:10PM ?? 0:04.41 /Applications/Docker.app/Contents/MacOS/Docker 501 910 1 0 12:10PM ?? 0:00.30 /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/A/PrintUITool 501 973 1 0 12:10PM ?? 0:00.06 /usr/libexec/findmydevice-user-agent 0 984 1 0 12:10PM ?? 0:00.07 /usr/libexec/dmd 205 1015 1 0 12:10PM ?? 0:00.25 /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/XPCServices/com.apple.geod.xpc/Contents/MacOS/com.apple.geod 205 1017 1 0 12:10PM ?? 0:00.12 /usr/libexec/secinitd 205 1022 1 0 12:10PM ?? 0:00.11 /usr/sbin/cfprefsd agent 205 1023 1 0 12:10PM ?? 0:00.19 /usr/libexec/trustd --agent 501 1036 1 0 12:10PM ?? 0:00.03 /usr/libexec/loginitemregisterd 501 1037 907 0 12:10PM ?? 0:00.90 /Applications/Docker.app/Contents/MacOS/com.docker.supervisor -watchdog fd:0 501 1039 1037 0 12:10PM ?? 0:12.36 com.docker.osxfs serve --address fd:3 --connect vms/0/connect --control fd:4 --log-destination asl 501 1040 1037 0 12:10PM ?? 0:02.05 com.docker.vpnkit --ethernet fd:3 --diagnostics fd:4 --pcap fd:5 --vsock-path vms/0/connect --gateway-forwards /Users/kbrazil/Library/Group Containers/group.com.docker/gateway_forwards.json --host-names host.docker.internal,docker.for.mac.host.internal,docker.for.mac.localhost --listen-backlog 32 --mtu 1500 --allowed-bind-addresses 0.0.0.0 --http /Users/kbrazil/Library/Group Containers/group.com.docker/http_proxy.json --dhcp /Users/kbrazil/Library/Group Containers/group.com.docker/dhcp.json --port-max-idle-time 300 --max-connections 2000 --gateway-ip 192.168.65.1 --host-ip 192.168.65.2 --lowest-ip 192.168.65.3 --highest-ip 192.168.65.254 --log-destination asl --udpv4-forwards 123:127.0.0.1:58011 --gc-compact-interval 1800 501 1041 1037 0 12:10PM ?? 0:01.02 com.docker.driver.amd64-linux -addr fd:3 -debug 501 1042 1037 0 12:10PM ?? 0:00.64 com.docker.backend -addr fd:3 501 1043 1040 0 12:10PM ?? 0:00.00 (uname) 501 1045 1 0 12:10PM ?? 0:00.10 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService 501 1046 1041 0 12:10PM ?? 7:52.69 com.docker.hyperkit -A -u -F vms/0/hyperkit.pid -c 4 -m 2048M -s 0:0,hostbridge -s 31,lpc -s 1:0,virtio-vpnkit,path=vpnkit.eth.sock,uuid=0bed4206-a5b8-40bf-b1fa-02cb5d5a7f54 -U 573cd650-b0d4-41ed-a405-9cffcdcd24cb -s 2:0,ahci-hd,/Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/Docker.raw -s 3,virtio-sock,guest_cid=3,path=vms/0,guest_forwards=2376;1525 -s 4,ahci-cd,/Applications/Docker.app/Contents/Resources/linuxkit/docker-desktop.iso -s 5,ahci-cd,vms/0/config.iso -s 6,ahci-cd,/Applications/Docker.app/Contents/Resources/linuxkit/docker.iso -s 7,virtio-rnd -l com1,autopty=vms/0/tty,asl -f bootrom,/Applications/Docker.app/Contents/Resources/uefi/UEFI.fd,, 501 1047 1 0 12:10PM ?? 0:00.06 /System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdate_notify_agent 200 1048 1 0 12:10PM ?? 0:06.83 /System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdated 0 1049 1 0 12:10PM ?? 0:00.03 /System/Library/CoreServices/Software Update.app/Contents/Resources/suhelperd 501 1051 1 0 12:10PM ?? 0:00.08 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storelegacy 501 1054 1 0 12:10PM ?? 0:00.57 /System/Library/PrivateFrameworks/CommerceKit.framework/Resources/LaterAgent.app/Contents/MacOS/LaterAgent 501 1055 1 0 12:10PM ?? 0:00.09 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/XPCServices/com.apple.CommerceKit.TransactionService.xpc/Contents/MacOS/com.apple.CommerceKit.TransactionService 501 1103 1 0 12:11PM ?? 0:00.03 /System/Library/Frameworks/ApplicationServices.framework/Frameworks/PrintCore.framework/Versions/A/printtool agent 89 1121 1 0 12:11PM ?? 0:00.89 /usr/libexec/trustd --agent 501 1123 1 0 12:11PM ?? 0:00.32 /System/Library/PrivateFrameworks/AssetCacheServices.framework/Versions/A/XPCServices/AssetCacheLocatorService.xpc/Contents/MacOS/AssetCacheLocatorService -a 89 1205 1 0 12:11PM ?? 0:00.10 /usr/sbin/distnoted agent 501 1302 1 0 12:11PM ?? 0:02.60 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent 501 1331 1 0 12:11PM ?? 0:00.04 /System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCService 501 1351 1 0 12:11PM ?? 0:00.34 /System/Library/Frameworks/ApplicationServices.framework/Frameworks/SpeechSynthesis.framework/Resources/com.apple.speech.speechsynthesisd 501 1353 1 0 12:11PM ?? 0:00.01 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper 0 1431 1 0 12:12PM ?? 0:00.27 /usr/libexec/mobileactivationd 501 3021 1 0 12:15PM ?? 0:00.22 /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Support/atsd 501 3457 1 0 12:16PM ?? 0:00.81 /System/Library/PrivateFrameworks/AppStoreDaemon.framework/Support/appstoreagent 501 3464 1 0 12:17PM ?? 0:00.10 /System/Library/PrivateFrameworks/PhotoAnalysis.framework/Versions/A/Support/photoanalysisd 501 3468 1 0 12:17PM ?? 0:02.78 /System/Library/CoreServices/SafariSupport.bundle/Contents/MacOS/SafariBookmarksSyncAgent 501 3724 1 0 12:17PM ?? 0:00.07 /System/Library/PrivateFrameworks/ContextKit.framework/Versions/A/XPCServices/ContextService.xpc/Contents/MacOS/ContextService 501 3835 1 0 12:17PM ?? 0:00.70 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker-sizing -c MDSSizingWorker -m com.apple.mdworker.sizing 89 3836 1 0 12:17PM ?? 0:05.81 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker-sizing -c MDSSizingWorker -m com.apple.mdworker.sizing 501 8297 1 0 12:23PM ?? 2:37.70 /Applications/Microsoft Outlook.app/Contents/MacOS/Microsoft Outlook 501 8310 1 0 12:23PM ?? 0:00.56 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent 501 8311 1 0 12:23PM ?? 0:00.60 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.Networking.xpc/Contents/MacOS/com.apple.WebKit.Networking 501 8314 1 0 12:23PM ?? 0:00.60 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.Networking.xpc/Contents/MacOS/com.apple.WebKit.Networking 501 8321 1 0 12:24PM ?? 0:00.08 /System/Library/CoreServices/EscrowSecurityAlert.app/Contents/MacOS/EscrowSecurityAlert 501 8322 1 0 12:24PM ?? 0:00.57 /System/Library/PrivateFrameworks/CloudServices.framework/Versions/A/XPCServices/com.apple.sbd.xpc/Contents/MacOS/com.apple.sbd 501 8325 1 0 12:24PM ?? 0:00.03 /System/Library/PrivateFrameworks/CoreCDP.framework/Versions/A/Resources/cdpd 501 9214 1 0 12:29PM ?? 0:00.93 /System/Library/CoreServices/NowPlayingTouchUI.app/Contents/MacOS/NowPlayingTouchUI 501 14604 1 0 12:46PM ?? 0:00.14 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdwrite 0 15535 1 0 12:48PM ?? 2:17.71 /Library/Tanium/TaniumClient/Tools/Trace/TaniumRecorder 97 17495 1 0 12:50PM ?? 0:00.14 /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Support/fontd 200 17499 1 0 12:50PM ?? 0:00.09 /usr/sbin/cfprefsd agent 200 17500 1 0 12:50PM ?? 0:00.06 /usr/sbin/distnoted agent 200 17515 1 0 12:50PM ?? 0:00.04 /System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdate_download_service 0 23994 1 0 1:12PM ?? 0:00.45 /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/XPCServices/com.apple.geod.xpc/Contents/MacOS/com.apple.geod 0 23995 1 0 1:12PM ?? 0:00.14 /usr/libexec/secinitd 501 23999 1 0 1:12PM ?? 0:00.03 /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent --launchd 501 24002 1 0 1:12PM ?? 0:00.02 /usr/libexec/USBAgent 501 24149 1 0 1:24PM ?? 0:00.43 /System/Library/Frameworks/LocalAuthentication.framework/Support/coreautha.bundle/Contents/MacOS/coreautha 501 24306 1 0 1:25PM ?? 0:00.47 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.Networking.xpc/Contents/MacOS/com.apple.WebKit.Networking 501 24307 1 0 1:25PM ?? 0:00.07 /System/Library/Frameworks/SafariServices.framework/Versions/A/XPCServices/com.apple.SafariServices.xpc/Contents/MacOS/com.apple.SafariServices 0 24324 103 0 1:25PM ?? 0:41.22 /Library/Tanium/TaniumClient/TaniumClient -c 501 24327 1 0 1:25PM ?? 0:00.54 /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent 0 28349 24324 0 1:28PM ?? 0:03.20 /Library/Tanium/TaniumClient/TaniumClient -a 501 28662 1 0 1:30PM ?? 0:00.02 /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/XPCServices/com.apple.tonelibraryd.xpc/Contents/MacOS/com.apple.tonelibraryd 501 33536 1 0 1:48PM ?? 0:00.11 /System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService 501 33592 1 0 1:48PM ?? 0:00.39 /System/Library/CoreServices/OSDUIHelper.app/Contents/MacOS/OSDUIHelper 501 36910 1 0 1:59PM ?? 0:00.42 /System/Library/CoreServices/CoreServicesUIAgent.app/Contents/MacOS/CoreServicesUIAgent 501 37111 1 0 2:00PM ?? 0:02.17 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared 501 37112 1 0 2:00PM ?? 0:03.63 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared 501 37114 1 0 2:00PM ?? 0:02.85 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared 501 37211 633 0 2:00PM ?? 0:12.71 /usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/Resources/Python.app/Contents/MacOS/Python -B /Users/kbrazil/Library/Application Support/Sublime Text 3/Packages/Anaconda/anaconda_server/jsonserver.py -p git 51762 -e /Users/kbrazil/git 633 501 37224 1 0 2:00PM ?? 0:01.93 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared 89 48282 1 0 2:42PM ?? 0:00.47 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared 89 48283 1 0 2:42PM ?? 0:00.32 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared 501 51460 1 0 2:50PM ?? 0:00.01 /System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper 501 51461 1 0 2:50PM ?? 0:00.01 /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/XPCServices/com.apple.accessibility.mediaaccessibilityd.xpc/Contents/MacOS/com.apple.accessibility.mediaaccessibilityd 501 54435 1 0 2:58PM ?? 0:00.58 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared 89 54453 1 0 2:58PM ?? 0:03.34 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared 89 54454 1 0 2:58PM ?? 0:02.19 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared 501 54954 1 0 3:01PM ?? 0:00.08 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.single 501 57229 1 0 3:13PM ?? 0:00.13 /System/Library/CoreServices/mapspushd 0 57231 1 0 3:13PM ?? 0:00.04 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeinstalld 89 64474 1 0 3:34PM ?? 0:00.14 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared 89 64529 1 0 3:35PM ?? 0:00.16 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared 89 64530 1 0 3:35PM ?? 0:00.23 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared 89 64590 1 0 3:35PM ?? 0:00.10 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared 501 64594 1 0 3:35PM ?? 0:00.69 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared 89 64595 1 0 3:35PM ?? 0:00.17 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared 89 64599 1 0 3:35PM ?? 0:00.06 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared 89 64600 1 0 3:35PM ?? 0:01.14 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared 89 64654 1 0 3:35PM ?? 0:00.10 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared 89 64688 1 0 3:35PM ?? 0:01.23 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared 0 65695 1 0 3:40PM ?? 0:00.11 /usr/sbin/ocspd 501 68384 1 0 3:44PM ?? 0:00.09 /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/XPCServices/com.apple.iCloudHelper.xpc/Contents/MacOS/com.apple.iCloudHelper 0 68539 1 0 3:44PM ?? 0:00.32 /Library/Tanium/TaniumClient/Tools/Detect3/TaniumDetectEngine 0 69298 1 0 3:48PM ?? 0:00.02 /System/Library/PrivateFrameworks/Heimdal.framework/Helpers/kcm --launchd 0 606 556 0 12:10PM ttys000 0:00.03 login -pfl kbrazil /bin/bash -c exec -la bash /bin/bash 501 609 606 0 12:10PM ttys000 0:00.14 -bash 0 69300 609 0 3:49PM ttys000 0:00.00 ps -ef jc-1.17.3/tests/fixtures/osx-10.14.6/shasum.json000066400000000000000000000270511415226333200210310ustar00rootroot00000000000000[{"filename": "airport-I.json", "hash": "b6701d0bd547292d2a51541cefdb78589c4ebc65"}, {"filename": "airport-I.out", "hash": "3749387a837ee7e47a14c172b7b4eb922d569201"}, {"filename": "airport-s.json", "hash": "0baafe93a582feff71e80ccc6d392cbb35fbea11"}, {"filename": "airport-s.out", "hash": "4ae92f7948a96e95316ac2da00c162daad18802b"}, {"filename": "arp-a.json", "hash": "a214bc7b92039d33b0a9ee1ee343df6b6d81c11f"}, {"filename": "arp-a.out", "hash": "713e3d0a664c8ae8bd9a87c91269c22fca558849"}, {"filename": "arp-a2.json", "hash": "c8ede52d8e96ab137d56e5d9ccbdf0739300039d"}, {"filename": "arp-a2.out", "hash": "a8cdbf7229c45386c09a842100011421ab74adda"}, {"filename": "df-h.json", "hash": "3eea0498b884eb626b3f36484ceb46035626607a"}, {"filename": "df-h.out", "hash": "bec48433f817a8ab28699d4b4410935fc054e7d7"}, {"filename": "df.json", "hash": "0cc078c31215b815519928597108fc08d6974abf"}, {"filename": "df.out", "hash": "41ea13d77c82c840bf014c2d68e494bf5f090e86"}, {"filename": "dig-aaaa.json", "hash": "3e70a7cba6aaa1a873e845a54336adf67fe66b1e"}, {"filename": "dig-aaaa.out", "hash": "22417524735d1281e202a7a803c4721d7a212e4d"}, {"filename": "dig-axfr.json", "hash": "0c476125b50536e31521597da15ecf1007c01056"}, {"filename": "dig-axfr.out", "hash": "66220fa199b9c59cf980bb5b3eefcbf7454cf4f7"}, {"filename": "dig-x.json", "hash": "47c5bc3266cdc42e9f64007dca72d59a30e910d0"}, {"filename": "dig-x.out", "hash": "9f49a5c47cd70a52fd59a801cc5a5ac7c0ab6b74"}, {"filename": "dig.json", "hash": "41f3c14ec6bcaa040b3c139447c6c08ef2dc322f"}, {"filename": "dig.out", "hash": "2c2efae28e1a5bba3da1f5fe10d7a48451dcad61"}, {"filename": "du.json", "hash": "ca632dce5c358eb19189972a6ce3eb7bac410f1a"}, {"filename": "du.out", "hash": "4709f16a60b101dd624880abcb6917cb3b052da6"}, {"filename": "file.json", "hash": "6641aa32d84f1036e72592fefa16819788761dd6"}, {"filename": "file.out", "hash": "64aa7e0a87d8f337a1affa434b7bdcf973be5a04"}, {"filename": "file2.json", "hash": "c011e362d46b8bb3fff6670c3506ca103045f4cd"}, {"filename": "file2.out", "hash": "dfc3c3c4af63be1909e44443b3b90e10b687d6c8"}, {"filename": "group.json", "hash": "260404f3d2096264f5ca8570ca3295aa5e282878"}, {"filename": "group.out", "hash": "39ebabcaf4296712c3e32edb6133bca98a2455e8"}, {"filename": "id.json", "hash": "7f1718884b12c28035847719a19ea415e7215bb8"}, {"filename": "id.out", "hash": "28a7474eed1b514fafb0d8b33ade8a1b7b261546"}, {"filename": "ifconfig.json", "hash": "2ed6453465f3fdb41520599129741c8955e0e956"}, {"filename": "ifconfig.out", "hash": "bb0bc5bb5d8891015373a6ff3d743ee9593de432"}, {"filename": "ifconfig2.json", "hash": "2ea05804d196a0bf9894d8106766b04d5bf89a11"}, {"filename": "ifconfig2.out", "hash": "f46ecf7bb5be88af18d53415c31392d1968d2fc2"}, {"filename": "last.json", "hash": "3c2ec4597c76f026b4e635385a3f7e579b861bd2"}, {"filename": "last.out", "hash": "f92c6ff31c0b520d41768a044c794670ce8d13cb"}, {"filename": "ls-R-newlines.json", "hash": "54a0b33790ef7369fb901db4c45bfe5ef7e77edc"}, {"filename": "ls-R-newlines.out", "hash": "098c351f68519fd7ac37ac1721e64ad8ed4a3600"}, {"filename": "ls-R.json", "hash": "22c3aabad0c0cbe32a2ed8bd4d1cef92a904f0ea"}, {"filename": "ls-R.out", "hash": "69861b855e1e7e6394da3645e853a3430e99e5b2"}, {"filename": "ls-al.json", "hash": "8c1fc69e7a8e96d06566afa3a7759fcd17d77207"}, {"filename": "ls-al.out", "hash": "4e6eb0ef6e29a436d15b3e380a6e34c57583e94f"}, {"filename": "ls-alR.json", "hash": "67d5b302d734e71859160cb44b13b5cdfae03e34"}, {"filename": "ls-alR.out", "hash": "5ee5666ccd067a72e0cff4d1b337c46858205ce2"}, {"filename": "ls-alh.json", "hash": "31b53afda162e8ccf356916f2cc36dc73eb6b45b"}, {"filename": "ls-alh.out", "hash": "81e09c8a18b7e0a051147e697b83fdb5f88ab137"}, {"filename": "ls-glob.json", "hash": "f9c06fe2c8a2a44987112d16d29cea359d67c4e4"}, {"filename": "ls-glob.out", "hash": "6d38df7da56e2b898db200cbc68ffa2f9324b567"}, {"filename": "ls-l-newlines.json", "hash": "839158b81641f70e09fae84c5f11d4fa3d371922"}, {"filename": "ls-l-newlines.out", "hash": "21999fb50ffff3d098ff5cb44de92002b8637611"}, {"filename": "ls-lR-empty-folder.json", "hash": "58e4a9d0deddd57483880b4f509f769fa1df6514"}, {"filename": "ls-lR-empty-folder.out", "hash": "827125e173a978aaea11b6170dfbefb3dab30375"}, {"filename": "ls-lR-newlines.json", "hash": "28b5390d64492453187a5c3e3548854bafa5a3dc"}, {"filename": "ls-lR-newlines.out", "hash": "5b17d8c3c27c90cce7fb2c42e79ac94d5f79fba4"}, {"filename": "ls-newlines.json", "hash": "5f1a2ab24626d2819bab4c5f1f974b4dcd32d18d"}, {"filename": "ls-newlines.out", "hash": "f103cb8013553c1c997d151449a519090c844c4d"}, {"filename": "ls.json", "hash": "8dbfd075967f928fcf773cdf740abc3442e1e7de"}, {"filename": "ls.out", "hash": "e378d603819b3ba7a4615151f3cbdd8c985c5278"}, {"filename": "md5.out", "hash": "e6169a0ab655b81d17ca46460f4bf4628e3f15c7"}, {"filename": "mount.json", "hash": "3427962301eb775c296a75532ece6f24197723df"}, {"filename": "mount.out", "hash": "6301b0589f75e4190e37ec071068a9a43a6ba6b9"}, {"filename": "mount2.json", "hash": "e32f5571cb2995d01e336076a84ded88f2dce782"}, {"filename": "mount2.out", "hash": "9c90e82e74c553bf649b1a43047cd9c062006fa3"}, {"filename": "netstat-Abn.json", "hash": "4c210803690e8eabbdfd00c1346014d7b99ab5e2"}, {"filename": "netstat-Abn.out", "hash": "45b809ce7d4c68685ee9293c07640b1e5fb3420a"}, {"filename": "netstat-An.json", "hash": "1be1890e206000e8865c81a7cf1c5ac17cc5e9e1"}, {"filename": "netstat-An.out", "hash": "1a7c5cee6339d8e22973a31542ae62f330fa4057"}, {"filename": "netstat-i.json", "hash": "a9cce6324e62373b66066ab6a292b121ae3fb121"}, {"filename": "netstat-i.out", "hash": "1d699a308356aee6179caa84a07940f32c262a33"}, {"filename": "netstat-r.json", "hash": "4a851ca343d7d17ece41cb66e9c1f5d046281514"}, {"filename": "netstat-r.out", "hash": "04b4ff8c424c836beb179f24402e09df6b91d8da"}, {"filename": "netstat-rnl.json", "hash": "b10b6ce7d98e61c4f819fc06aaa3ba4c11e6196e"}, {"filename": "netstat-rnl.out", "hash": "b354f8cdfea44bb84fc8b9f16e40621387b1e20b"}, {"filename": "netstat.json", "hash": "eeb92d12bea70acc01bbe015668f774dda779fac"}, {"filename": "netstat.out", "hash": "00cc660ce9de89889435978f4e82aac8d30352ba"}, {"filename": "passwd.json", "hash": "ad454cef94895c6f32538dcc57e5c35609543f0b"}, {"filename": "passwd.out", "hash": "98b96a259d79f457c619dfb4b5949f03f9ee0e91"}, {"filename": "ping-hostname-p.json", "hash": "affe7ac91927e00c05da4c4f0b985da7feb94ee7"}, {"filename": "ping-hostname-p.out", "hash": "22f6da2c47dfafcdf2921bbd0dd664a59c118017"}, {"filename": "ping-hostname-s.json", "hash": "37573a86ea3bc3a66fe5a401e0259e9ba86bd7e2"}, {"filename": "ping-hostname-s.out", "hash": "3515f57ef15df3b015b1e589eb76298c6923eee3"}, {"filename": "ping-hostname.json", "hash": "70cae13fff2b53913bc279bad20ae6502b93142c"}, {"filename": "ping-hostname.out", "hash": "805da101ba12f150e5164352cc61634fe08a6f04"}, {"filename": "ping-ip-dup.json", "hash": "463ab3f969bac22b644c3e60c9b33db570c50ec1"}, {"filename": "ping-ip-dup.out", "hash": "f051d883e339ce8bfbee8d14ddc68007aec2ce16"}, {"filename": "ping-ip-p.json", "hash": "6c433892a236a8b56c38c92ab65d958a81b25015"}, {"filename": "ping-ip-p.out", "hash": "fbec6b8034ef32a48dcd392c8d8d7a8150720cee"}, {"filename": "ping-ip-s.json", "hash": "a8e7418abf65967c554f6006a6d18d1103936b56"}, {"filename": "ping-ip-s.out", "hash": "d688174811c7e7df05135bfb7d53a2ce91878632"}, {"filename": "ping-ip.json", "hash": "a8bad79ae89852a0d6f42f78c0d3b651e825f62f"}, {"filename": "ping-ip.out", "hash": "30e35e7a4b16c9e0332e4cf5ae7d4a6e90e2ad63"}, {"filename": "ping6-hostname-p.json", "hash": "aa762025cefbe4f9a481ba622ade333ad3d3f946"}, {"filename": "ping6-hostname-p.out", "hash": "534382c4698f18187ded6259576f08da0a6f338f"}, {"filename": "ping6-hostname-s.json", "hash": "6600a05b117ddcfc80ee3554176857a78b18325a"}, {"filename": "ping6-hostname-s.out", "hash": "f86a97e16952be0e70b7c7fde247d2793230ecdc"}, {"filename": "ping6-hostname.json", "hash": "9b2c9765859a05d8ae779764284db45d9dea742c"}, {"filename": "ping6-hostname.out", "hash": "1782a580d6d92d38a64e02fca30b936c1bacc05d"}, {"filename": "ping6-ip-dup.json", "hash": "838ef123a0000e59271d4703c7ac6c4a7d3eab7e"}, {"filename": "ping6-ip-dup.out", "hash": "0d3af3ab2a5c5f886842abc0bfe06288307604b3"}, {"filename": "ping6-ip-p.json", "hash": "9911d8c4d08f3ba111c6b24dbbbecab701e4a371"}, {"filename": "ping6-ip-p.out", "hash": "b176952e7b3fbc0f94c9b6aa261e7a239938621f"}, {"filename": "ping6-ip-s.json", "hash": "0fa62d9840efc9867c7c74458474c4daa6725e0e"}, {"filename": "ping6-ip-s.out", "hash": "bed5d50ae2be215b612187f109046916a7071bdf"}, {"filename": "ping6-ip.json", "hash": "d229293a2a0fd0e7c04d65202a58de207a85db93"}, {"filename": "ping6-ip.out", "hash": "b96290f3f61068eef9c79e52155560a9f6eebb24"}, {"filename": "pip-list.json", "hash": "3a095f602ade8ab11443ce8321288dc8a52f4eb6"}, {"filename": "pip-list.out", "hash": "684f9f178d8a4a9183bdfa91139b65fff7a8bd02"}, {"filename": "pip-show.json", "hash": "2775dfd4a51a3b7a6eb41effa9299e72377ac573"}, {"filename": "pip-show.out", "hash": "c9159fd0cd5af49fd81a6181b38161072a0a8536"}, {"filename": "ps-axu.json", "hash": "b68b29c17b6877bb014a8b99d528ed15476c9ff1"}, {"filename": "ps-axu.out", "hash": "c09f2435054539d3f891e803babfcebbc2e3d2c5"}, {"filename": "ps-ef.json", "hash": "2a7bae5f336e662ef58fb1213d0f20c593f8e5ce"}, {"filename": "ps-ef.out", "hash": "a13032d2a724f4918a3c4941c4babaf55f2c7a40"}, {"filename": "stat.json", "hash": "a95208df396194dac9b1196f3bbe989e174fc3fb"}, {"filename": "stat.out", "hash": "301016ffc0cbb6a0ebb4a31987aae2208068af45"}, {"filename": "sysctl-a.json", "hash": "d791375d84f3c209bf71f637e76d46d1fe4459c7"}, {"filename": "sysctl-a.out", "hash": "61827f5423ee2a3891f38b23baf671676869d930"}, {"filename": "traceroute-asn.json", "hash": "0096b180a1674f935df6e7314db0f3aac3d15758"}, {"filename": "traceroute-asn.out", "hash": "14983d7528df1dc1004b254991e49cba30cf9861"}, {"filename": "traceroute-mult-addresses.json", "hash": "5cfde477f5e966db9887c4ac6700e94ec3f5e214"}, {"filename": "traceroute-mult-addresses.out", "hash": "b05bfa6c8371c68eb5d761de6b7a7933c3dba78b"}, {"filename": "traceroute-no-header.json", "hash": "92b288e194981920428fbb910717a3ff17605fd0"}, {"filename": "traceroute-no-header.out", "hash": "fbb81722ae676195c0f44f0f8c41bd860fb33b52"}, {"filename": "traceroute-q.json", "hash": "17b5bdc7456d2cda893eba40e5568d6e4835c2ce"}, {"filename": "traceroute-q.out", "hash": "cb777f386ff2f81c6516b560a4ddea149235f573"}, {"filename": "traceroute.json", "hash": "f62ee48530285cb1cecd5ef0dc4e8cc16b278676"}, {"filename": "traceroute.out", "hash": "d080112c55e7fbd6578720fe290db6dea2d8df46"}, {"filename": "traceroute6-mult-addresses.json", "hash": "94e80f496b128bf459cf59ac07d5645be70e5b8f"}, {"filename": "traceroute6-mult-addresses.out", "hash": "67677c5474a466a6c1ae86557077326eed70db71"}, {"filename": "traceroute6.json", "hash": "94e80f496b128bf459cf59ac07d5645be70e5b8f"}, {"filename": "traceroute6.out", "hash": "526c631415d055333b4f29adca186bfe7f498dca"}, {"filename": "uname-a.json", "hash": "9ac73b33611d1cee071cdb224178c4ea4c164804"}, {"filename": "uname-a.out", "hash": "ac286f0f6e2bb695f693674babdae22203765a79"}, {"filename": "uname.out", "hash": "0fc09dc308ca8159ed485d2c5aad6139eab3d44b"}, {"filename": "uptime.json", "hash": "43f78bcbeb78e30f0df5ae0e988605627a453c72"}, {"filename": "uptime.out", "hash": "bfbfc9814f48e430aef9579bb6bfd4873b257a17"}, {"filename": "w.json", "hash": "2ecd2bd1a1c243852181d00fdd26bdd471221f16"}, {"filename": "w.out", "hash": "1d5f7d4db7d413717f661e95c239312b94045ebc"}, {"filename": "who-a.json", "hash": "31d74136f77fff6ba685e43d17097b045642bbec"}, {"filename": "who-a.out", "hash": "2e6094a345b9f3205decacba3d7f1fcf8471dd82"}, {"filename": "who.json", "hash": "0b6eddc1d363f49c46c963b97dc0387e9e7a23b7"}, {"filename": "who.out", "hash": "996aa62bdea95a8c4561f4208db3fd7719eb695f"}] jc-1.17.3/tests/fixtures/osx-10.14.6/shasum.out000066400000000000000000000174561415226333200206770ustar00rootroot00000000000000b6701d0bd547292d2a51541cefdb78589c4ebc65 airport-I.json 3749387a837ee7e47a14c172b7b4eb922d569201 airport-I.out 0baafe93a582feff71e80ccc6d392cbb35fbea11 airport-s.json 4ae92f7948a96e95316ac2da00c162daad18802b airport-s.out a214bc7b92039d33b0a9ee1ee343df6b6d81c11f arp-a.json 713e3d0a664c8ae8bd9a87c91269c22fca558849 arp-a.out c8ede52d8e96ab137d56e5d9ccbdf0739300039d arp-a2.json a8cdbf7229c45386c09a842100011421ab74adda arp-a2.out 3eea0498b884eb626b3f36484ceb46035626607a df-h.json bec48433f817a8ab28699d4b4410935fc054e7d7 df-h.out 0cc078c31215b815519928597108fc08d6974abf df.json 41ea13d77c82c840bf014c2d68e494bf5f090e86 df.out 3e70a7cba6aaa1a873e845a54336adf67fe66b1e dig-aaaa.json 22417524735d1281e202a7a803c4721d7a212e4d dig-aaaa.out 0c476125b50536e31521597da15ecf1007c01056 dig-axfr.json 66220fa199b9c59cf980bb5b3eefcbf7454cf4f7 dig-axfr.out 47c5bc3266cdc42e9f64007dca72d59a30e910d0 dig-x.json 9f49a5c47cd70a52fd59a801cc5a5ac7c0ab6b74 dig-x.out 41f3c14ec6bcaa040b3c139447c6c08ef2dc322f dig.json 2c2efae28e1a5bba3da1f5fe10d7a48451dcad61 dig.out ca632dce5c358eb19189972a6ce3eb7bac410f1a du.json 4709f16a60b101dd624880abcb6917cb3b052da6 du.out 6641aa32d84f1036e72592fefa16819788761dd6 file.json 64aa7e0a87d8f337a1affa434b7bdcf973be5a04 file.out c011e362d46b8bb3fff6670c3506ca103045f4cd file2.json dfc3c3c4af63be1909e44443b3b90e10b687d6c8 file2.out 260404f3d2096264f5ca8570ca3295aa5e282878 group.json 39ebabcaf4296712c3e32edb6133bca98a2455e8 group.out 7f1718884b12c28035847719a19ea415e7215bb8 id.json 28a7474eed1b514fafb0d8b33ade8a1b7b261546 id.out 2ed6453465f3fdb41520599129741c8955e0e956 ifconfig.json bb0bc5bb5d8891015373a6ff3d743ee9593de432 ifconfig.out 2ea05804d196a0bf9894d8106766b04d5bf89a11 ifconfig2.json f46ecf7bb5be88af18d53415c31392d1968d2fc2 ifconfig2.out 3c2ec4597c76f026b4e635385a3f7e579b861bd2 last.json f92c6ff31c0b520d41768a044c794670ce8d13cb last.out 54a0b33790ef7369fb901db4c45bfe5ef7e77edc ls-R-newlines.json 098c351f68519fd7ac37ac1721e64ad8ed4a3600 ls-R-newlines.out 22c3aabad0c0cbe32a2ed8bd4d1cef92a904f0ea ls-R.json 69861b855e1e7e6394da3645e853a3430e99e5b2 ls-R.out 8c1fc69e7a8e96d06566afa3a7759fcd17d77207 ls-al.json 4e6eb0ef6e29a436d15b3e380a6e34c57583e94f ls-al.out 67d5b302d734e71859160cb44b13b5cdfae03e34 ls-alR.json 5ee5666ccd067a72e0cff4d1b337c46858205ce2 ls-alR.out 31b53afda162e8ccf356916f2cc36dc73eb6b45b ls-alh.json 81e09c8a18b7e0a051147e697b83fdb5f88ab137 ls-alh.out f9c06fe2c8a2a44987112d16d29cea359d67c4e4 ls-glob.json 6d38df7da56e2b898db200cbc68ffa2f9324b567 ls-glob.out 839158b81641f70e09fae84c5f11d4fa3d371922 ls-l-newlines.json 21999fb50ffff3d098ff5cb44de92002b8637611 ls-l-newlines.out 58e4a9d0deddd57483880b4f509f769fa1df6514 ls-lR-empty-folder.json 827125e173a978aaea11b6170dfbefb3dab30375 ls-lR-empty-folder.out 28b5390d64492453187a5c3e3548854bafa5a3dc ls-lR-newlines.json 5b17d8c3c27c90cce7fb2c42e79ac94d5f79fba4 ls-lR-newlines.out 5f1a2ab24626d2819bab4c5f1f974b4dcd32d18d ls-newlines.json f103cb8013553c1c997d151449a519090c844c4d ls-newlines.out 8dbfd075967f928fcf773cdf740abc3442e1e7de ls.json e378d603819b3ba7a4615151f3cbdd8c985c5278 ls.out e6169a0ab655b81d17ca46460f4bf4628e3f15c7 md5.out 3427962301eb775c296a75532ece6f24197723df mount.json 6301b0589f75e4190e37ec071068a9a43a6ba6b9 mount.out e32f5571cb2995d01e336076a84ded88f2dce782 mount2.json 9c90e82e74c553bf649b1a43047cd9c062006fa3 mount2.out 4c210803690e8eabbdfd00c1346014d7b99ab5e2 netstat-Abn.json 45b809ce7d4c68685ee9293c07640b1e5fb3420a netstat-Abn.out 1be1890e206000e8865c81a7cf1c5ac17cc5e9e1 netstat-An.json 1a7c5cee6339d8e22973a31542ae62f330fa4057 netstat-An.out a9cce6324e62373b66066ab6a292b121ae3fb121 netstat-i.json 1d699a308356aee6179caa84a07940f32c262a33 netstat-i.out 4a851ca343d7d17ece41cb66e9c1f5d046281514 netstat-r.json 04b4ff8c424c836beb179f24402e09df6b91d8da netstat-r.out b10b6ce7d98e61c4f819fc06aaa3ba4c11e6196e netstat-rnl.json b354f8cdfea44bb84fc8b9f16e40621387b1e20b netstat-rnl.out eeb92d12bea70acc01bbe015668f774dda779fac netstat.json 00cc660ce9de89889435978f4e82aac8d30352ba netstat.out ad454cef94895c6f32538dcc57e5c35609543f0b passwd.json 98b96a259d79f457c619dfb4b5949f03f9ee0e91 passwd.out affe7ac91927e00c05da4c4f0b985da7feb94ee7 ping-hostname-p.json 22f6da2c47dfafcdf2921bbd0dd664a59c118017 ping-hostname-p.out 37573a86ea3bc3a66fe5a401e0259e9ba86bd7e2 ping-hostname-s.json 3515f57ef15df3b015b1e589eb76298c6923eee3 ping-hostname-s.out 70cae13fff2b53913bc279bad20ae6502b93142c ping-hostname.json 805da101ba12f150e5164352cc61634fe08a6f04 ping-hostname.out 463ab3f969bac22b644c3e60c9b33db570c50ec1 ping-ip-dup.json f051d883e339ce8bfbee8d14ddc68007aec2ce16 ping-ip-dup.out 6c433892a236a8b56c38c92ab65d958a81b25015 ping-ip-p.json fbec6b8034ef32a48dcd392c8d8d7a8150720cee ping-ip-p.out a8e7418abf65967c554f6006a6d18d1103936b56 ping-ip-s.json d688174811c7e7df05135bfb7d53a2ce91878632 ping-ip-s.out a8bad79ae89852a0d6f42f78c0d3b651e825f62f ping-ip.json 30e35e7a4b16c9e0332e4cf5ae7d4a6e90e2ad63 ping-ip.out aa762025cefbe4f9a481ba622ade333ad3d3f946 ping6-hostname-p.json 534382c4698f18187ded6259576f08da0a6f338f ping6-hostname-p.out 6600a05b117ddcfc80ee3554176857a78b18325a ping6-hostname-s.json f86a97e16952be0e70b7c7fde247d2793230ecdc ping6-hostname-s.out 9b2c9765859a05d8ae779764284db45d9dea742c ping6-hostname.json 1782a580d6d92d38a64e02fca30b936c1bacc05d ping6-hostname.out 838ef123a0000e59271d4703c7ac6c4a7d3eab7e ping6-ip-dup.json 0d3af3ab2a5c5f886842abc0bfe06288307604b3 ping6-ip-dup.out 9911d8c4d08f3ba111c6b24dbbbecab701e4a371 ping6-ip-p.json b176952e7b3fbc0f94c9b6aa261e7a239938621f ping6-ip-p.out 0fa62d9840efc9867c7c74458474c4daa6725e0e ping6-ip-s.json bed5d50ae2be215b612187f109046916a7071bdf ping6-ip-s.out d229293a2a0fd0e7c04d65202a58de207a85db93 ping6-ip.json b96290f3f61068eef9c79e52155560a9f6eebb24 ping6-ip.out 3a095f602ade8ab11443ce8321288dc8a52f4eb6 pip-list.json 684f9f178d8a4a9183bdfa91139b65fff7a8bd02 pip-list.out 2775dfd4a51a3b7a6eb41effa9299e72377ac573 pip-show.json c9159fd0cd5af49fd81a6181b38161072a0a8536 pip-show.out b68b29c17b6877bb014a8b99d528ed15476c9ff1 ps-axu.json c09f2435054539d3f891e803babfcebbc2e3d2c5 ps-axu.out 2a7bae5f336e662ef58fb1213d0f20c593f8e5ce ps-ef.json a13032d2a724f4918a3c4941c4babaf55f2c7a40 ps-ef.out a95208df396194dac9b1196f3bbe989e174fc3fb stat.json 301016ffc0cbb6a0ebb4a31987aae2208068af45 stat.out d791375d84f3c209bf71f637e76d46d1fe4459c7 sysctl-a.json 61827f5423ee2a3891f38b23baf671676869d930 sysctl-a.out 0096b180a1674f935df6e7314db0f3aac3d15758 traceroute-asn.json 14983d7528df1dc1004b254991e49cba30cf9861 traceroute-asn.out 5cfde477f5e966db9887c4ac6700e94ec3f5e214 traceroute-mult-addresses.json b05bfa6c8371c68eb5d761de6b7a7933c3dba78b traceroute-mult-addresses.out 92b288e194981920428fbb910717a3ff17605fd0 traceroute-no-header.json fbb81722ae676195c0f44f0f8c41bd860fb33b52 traceroute-no-header.out 17b5bdc7456d2cda893eba40e5568d6e4835c2ce traceroute-q.json cb777f386ff2f81c6516b560a4ddea149235f573 traceroute-q.out f62ee48530285cb1cecd5ef0dc4e8cc16b278676 traceroute.json d080112c55e7fbd6578720fe290db6dea2d8df46 traceroute.out 94e80f496b128bf459cf59ac07d5645be70e5b8f traceroute6-mult-addresses.json 67677c5474a466a6c1ae86557077326eed70db71 traceroute6-mult-addresses.out 94e80f496b128bf459cf59ac07d5645be70e5b8f traceroute6.json 526c631415d055333b4f29adca186bfe7f498dca traceroute6.out 9ac73b33611d1cee071cdb224178c4ea4c164804 uname-a.json ac286f0f6e2bb695f693674babdae22203765a79 uname-a.out 0fc09dc308ca8159ed485d2c5aad6139eab3d44b uname.out 43f78bcbeb78e30f0df5ae0e988605627a453c72 uptime.json bfbfc9814f48e430aef9579bb6bfd4873b257a17 uptime.out 2ecd2bd1a1c243852181d00fdd26bdd471221f16 w.json 1d5f7d4db7d413717f661e95c239312b94045ebc w.out 31d74136f77fff6ba685e43d17097b045642bbec who-a.json 2e6094a345b9f3205decacba3d7f1fcf8471dd82 who-a.out 0b6eddc1d363f49c46c963b97dc0387e9e7a23b7 who.json 996aa62bdea95a8c4561f4208db3fd7719eb695f who.out jc-1.17.3/tests/fixtures/osx-10.14.6/stat-filename-with-spaces.json000066400000000000000000000011211415226333200244750ustar00rootroot00000000000000[{"file":"file name with spaces.txt","unix_device":16777220,"inode":161929661,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":0,"access_time":"Aug 13 15:03:52 2021","modify_time":"Aug 13 14:37:03 2021","change_time":"Aug 13 14:37:03 2021","birth_time":"Aug 13 14:37:03 2021","block_size":4096,"blocks":0,"unix_flags":"0","access_time_epoch":1628892232,"access_time_epoch_utc":null,"modify_time_epoch":1628890623,"modify_time_epoch_utc":null,"change_time_epoch":1628890623,"change_time_epoch_utc":null,"birth_time_epoch":1628890623,"birth_time_epoch_utc":null}] jc-1.17.3/tests/fixtures/osx-10.14.6/stat-filename-with-spaces.out000066400000000000000000000002621415226333200243400ustar00rootroot0000000000000016777220 161929661 -rw-r--r-- 1 kbrazil staff 0 0 "Aug 13 15:03:52 2021" "Aug 13 14:37:03 2021" "Aug 13 14:37:03 2021" "Aug 13 14:37:03 2021" 4096 0 0 file name with spaces.txt jc-1.17.3/tests/fixtures/osx-10.14.6/stat.json000066400000000000000000001523651415226333200205130ustar00rootroot00000000000000[{"file":"airport-I.json","unix_device":16777221,"inode":73839387,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":307,"access_time":"May 22 16:15:02 2020","modify_time":"Mar 11 13:47:39 2020","change_time":"Mar 11 13:47:39 2020","birth_time":"Mar 11 13:47:39 2020","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1583959659,"modify_time_epoch_utc":null,"change_time_epoch":1583959659,"change_time_epoch_utc":null,"birth_time_epoch":1583959659,"birth_time_epoch_utc":null},{"file":"airport-I.out","unix_device":16777221,"inode":73839388,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":348,"access_time":"May 22 16:15:02 2020","modify_time":"Mar 11 13:47:39 2020","change_time":"Mar 11 13:47:39 2020","birth_time":"Mar 11 13:47:39 2020","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1583959659,"modify_time_epoch_utc":null,"change_time_epoch":1583959659,"change_time_epoch_utc":null,"birth_time_epoch":1583959659,"birth_time_epoch_utc":null},{"file":"airport-s.json","unix_device":16777221,"inode":73839389,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":2152,"access_time":"May 22 16:15:02 2020","modify_time":"Mar 11 13:47:39 2020","change_time":"Mar 11 13:47:39 2020","birth_time":"Mar 11 13:47:39 2020","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1583959659,"modify_time_epoch_utc":null,"change_time_epoch":1583959659,"change_time_epoch_utc":null,"birth_time_epoch":1583959659,"birth_time_epoch_utc":null},{"file":"airport-s.out","unix_device":16777221,"inode":73839390,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":1423,"access_time":"May 22 16:15:02 2020","modify_time":"Mar 11 13:47:39 2020","change_time":"Mar 11 13:47:39 2020","birth_time":"Mar 11 13:47:39 2020","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1583959659,"modify_time_epoch_utc":null,"change_time_epoch":1583959659,"change_time_epoch_utc":null,"birth_time_epoch":1583959659,"birth_time_epoch_utc":null},{"file":"arp-a.json","unix_device":16777221,"inode":67165840,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":1541,"access_time":"May 22 16:15:02 2020","modify_time":"Dec 17 12:12:32 2019","change_time":"Dec 17 12:12:32 2019","birth_time":"Dec 17 12:12:32 2019","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1576613552,"modify_time_epoch_utc":null,"change_time_epoch":1576613552,"change_time_epoch_utc":null,"birth_time_epoch":1576613552,"birth_time_epoch_utc":null},{"file":"arp-a.out","unix_device":16777221,"inode":67165841,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":968,"access_time":"May 22 16:15:02 2020","modify_time":"Dec 17 12:12:32 2019","change_time":"Dec 17 12:12:32 2019","birth_time":"Dec 17 12:12:32 2019","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1576613552,"modify_time_epoch_utc":null,"change_time_epoch":1576613552,"change_time_epoch_utc":null,"birth_time_epoch":1576613552,"birth_time_epoch_utc":null},{"file":"arp-a2.json","unix_device":16777221,"inode":73923691,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":2582,"access_time":"May 22 16:15:02 2020","modify_time":"Mar 12 17:09:29 2020","change_time":"Mar 12 17:09:29 2020","birth_time":"Mar 12 17:09:29 2020","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1584058169,"modify_time_epoch_utc":null,"change_time_epoch":1584058169,"change_time_epoch_utc":null,"birth_time_epoch":1584058169,"birth_time_epoch_utc":null},{"file":"arp-a2.out","unix_device":16777221,"inode":73923692,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":1597,"access_time":"May 22 16:15:02 2020","modify_time":"Mar 12 17:09:29 2020","change_time":"Mar 12 17:09:29 2020","birth_time":"Mar 12 17:09:29 2020","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1584058169,"modify_time_epoch_utc":null,"change_time_epoch":1584058169,"change_time_epoch_utc":null,"birth_time_epoch":1584058169,"birth_time_epoch_utc":null},{"file":"df-h.json","unix_device":16777221,"inode":67165842,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":1686,"access_time":"May 22 16:15:02 2020","modify_time":"Dec 17 12:12:32 2019","change_time":"Dec 17 12:12:32 2019","birth_time":"Dec 17 12:12:32 2019","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1576613552,"modify_time_epoch_utc":null,"change_time_epoch":1576613552,"change_time_epoch_utc":null,"birth_time_epoch":1576613552,"birth_time_epoch_utc":null},{"file":"df-h.out","unix_device":16777221,"inode":67165843,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":1276,"access_time":"May 22 16:15:02 2020","modify_time":"Dec 17 12:12:32 2019","change_time":"Dec 17 12:12:32 2019","birth_time":"Dec 17 12:12:32 2019","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1576613552,"modify_time_epoch_utc":null,"change_time_epoch":1576613552,"change_time_epoch_utc":null,"birth_time_epoch":1576613552,"birth_time_epoch_utc":null},{"file":"df.json","unix_device":16777221,"inode":67165844,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":1764,"access_time":"May 22 16:15:02 2020","modify_time":"Dec 17 12:12:32 2019","change_time":"Dec 17 12:12:32 2019","birth_time":"Dec 17 12:12:32 2019","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1576613552,"modify_time_epoch_utc":null,"change_time_epoch":1576613552,"change_time_epoch_utc":null,"birth_time_epoch":1576613552,"birth_time_epoch_utc":null},{"file":"df.out","unix_device":16777221,"inode":67165845,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":1384,"access_time":"May 22 16:15:02 2020","modify_time":"Dec 17 12:12:32 2019","change_time":"Dec 17 12:12:32 2019","birth_time":"Dec 17 12:12:32 2019","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1576613552,"modify_time_epoch_utc":null,"change_time_epoch":1576613552,"change_time_epoch_utc":null,"birth_time_epoch":1576613552,"birth_time_epoch_utc":null},{"file":"dig-aaaa.json","unix_device":16777221,"inode":67165846,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":438,"access_time":"May 22 16:15:02 2020","modify_time":"Dec 17 12:12:32 2019","change_time":"Dec 17 12:12:32 2019","birth_time":"Dec 17 12:12:32 2019","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1576613552,"modify_time_epoch_utc":null,"change_time_epoch":1576613552,"change_time_epoch_utc":null,"birth_time_epoch":1576613552,"birth_time_epoch_utc":null},{"file":"dig-aaaa.out","unix_device":16777221,"inode":67165847,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":536,"access_time":"May 22 16:15:02 2020","modify_time":"Dec 17 12:12:32 2019","change_time":"Dec 17 12:12:32 2019","birth_time":"Dec 17 12:12:32 2019","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1576613552,"modify_time_epoch_utc":null,"change_time_epoch":1576613552,"change_time_epoch_utc":null,"birth_time_epoch":1576613552,"birth_time_epoch_utc":null},{"file":"dig-axfr.json","unix_device":16777221,"inode":74782481,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":5984,"access_time":"May 22 16:15:02 2020","modify_time":"Mar 26 17:16:11 2020","change_time":"Mar 26 17:16:11 2020","birth_time":"Mar 26 17:16:11 2020","block_size":4096,"blocks":16,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1585268171,"modify_time_epoch_utc":null,"change_time_epoch":1585268171,"change_time_epoch_utc":null,"birth_time_epoch":1585268171,"birth_time_epoch_utc":null},{"file":"dig-axfr.out","unix_device":16777221,"inode":74782482,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":3511,"access_time":"May 22 16:15:02 2020","modify_time":"Mar 26 17:16:11 2020","change_time":"Mar 26 17:16:11 2020","birth_time":"Mar 26 17:16:11 2020","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1585268171,"modify_time_epoch_utc":null,"change_time_epoch":1585268171,"change_time_epoch_utc":null,"birth_time_epoch":1585268171,"birth_time_epoch_utc":null},{"file":"dig-x.json","unix_device":16777221,"inode":67165848,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":442,"access_time":"May 22 16:15:02 2020","modify_time":"Dec 17 12:12:32 2019","change_time":"Dec 17 12:12:32 2019","birth_time":"Dec 17 12:12:32 2019","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1576613552,"modify_time_epoch_utc":null,"change_time_epoch":1576613552,"change_time_epoch_utc":null,"birth_time_epoch":1576613552,"birth_time_epoch_utc":null},{"file":"dig-x.out","unix_device":16777221,"inode":67165849,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":529,"access_time":"May 22 16:15:02 2020","modify_time":"Dec 17 12:12:32 2019","change_time":"Dec 17 12:12:32 2019","birth_time":"Dec 17 12:12:32 2019","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1576613552,"modify_time_epoch_utc":null,"change_time_epoch":1576613552,"change_time_epoch_utc":null,"birth_time_epoch":1576613552,"birth_time_epoch_utc":null},{"file":"dig.json","unix_device":16777221,"inode":67165850,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":1266,"access_time":"May 22 16:15:02 2020","modify_time":"Dec 17 12:12:32 2019","change_time":"Dec 17 12:12:32 2019","birth_time":"Dec 17 12:12:32 2019","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1576613552,"modify_time_epoch_utc":null,"change_time_epoch":1576613552,"change_time_epoch_utc":null,"birth_time_epoch":1576613552,"birth_time_epoch_utc":null},{"file":"dig.out","unix_device":16777221,"inode":67165851,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":1182,"access_time":"May 22 16:15:02 2020","modify_time":"Dec 17 12:12:32 2019","change_time":"Dec 17 12:12:32 2019","birth_time":"Dec 17 12:12:32 2019","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1576613552,"modify_time_epoch_utc":null,"change_time_epoch":1576613552,"change_time_epoch_utc":null,"birth_time_epoch":1576613552,"birth_time_epoch_utc":null},{"file":"du.json","unix_device":16777221,"inode":67165852,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":295780,"access_time":"May 22 16:15:02 2020","modify_time":"Apr 20 16:30:21 2020","change_time":"Apr 20 16:30:21 2020","birth_time":"Dec 17 12:12:32 2019","block_size":4096,"blocks":584,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1587425421,"modify_time_epoch_utc":null,"change_time_epoch":1587425421,"change_time_epoch_utc":null,"birth_time_epoch":1576613552,"birth_time_epoch_utc":null},{"file":"du.out","unix_device":16777221,"inode":67165853,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":221925,"access_time":"May 22 16:15:02 2020","modify_time":"Apr 20 16:29:31 2020","change_time":"Apr 20 16:29:31 2020","birth_time":"Dec 17 12:12:32 2019","block_size":4096,"blocks":512,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1587425371,"modify_time_epoch_utc":null,"change_time_epoch":1587425371,"change_time_epoch_utc":null,"birth_time_epoch":1576613552,"birth_time_epoch_utc":null},{"file":"file.json","unix_device":16777221,"inode":73839391,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":3589,"access_time":"May 22 16:15:02 2020","modify_time":"Mar 11 13:47:39 2020","change_time":"Mar 11 13:47:39 2020","birth_time":"Mar 11 13:47:39 2020","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1583959659,"modify_time_epoch_utc":null,"change_time_epoch":1583959659,"change_time_epoch_utc":null,"birth_time_epoch":1583959659,"birth_time_epoch_utc":null},{"file":"file.out","unix_device":16777221,"inode":73839392,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":2890,"access_time":"May 22 16:15:02 2020","modify_time":"Mar 11 13:47:39 2020","change_time":"Mar 11 13:47:39 2020","birth_time":"Mar 11 13:47:39 2020","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1583959659,"modify_time_epoch_utc":null,"change_time_epoch":1583959659,"change_time_epoch_utc":null,"birth_time_epoch":1583959659,"birth_time_epoch_utc":null},{"file":"file2.json","unix_device":16777221,"inode":73878467,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":4715,"access_time":"May 22 16:15:02 2020","modify_time":"Mar 12 08:24:33 2020","change_time":"Mar 12 08:24:33 2020","birth_time":"Mar 12 08:24:33 2020","block_size":4096,"blocks":16,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1584026673,"modify_time_epoch_utc":null,"change_time_epoch":1584026673,"change_time_epoch_utc":null,"birth_time_epoch":1584026673,"birth_time_epoch_utc":null},{"file":"file2.out","unix_device":16777221,"inode":73878468,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":4780,"access_time":"May 22 16:15:02 2020","modify_time":"Mar 12 08:24:33 2020","change_time":"Mar 12 08:24:33 2020","birth_time":"Mar 12 08:24:33 2020","block_size":4096,"blocks":16,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1584026673,"modify_time_epoch_utc":null,"change_time_epoch":1584026673,"change_time_epoch_utc":null,"birth_time_epoch":1584026673,"birth_time_epoch_utc":null},{"file":"group.json","unix_device":16777221,"inode":72981498,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":9646,"access_time":"May 22 16:15:02 2020","modify_time":"Mar 3 11:47:13 2020","change_time":"Mar 3 11:47:13 2020","birth_time":"Mar 3 11:47:13 2020","block_size":4096,"blocks":24,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1583264833,"modify_time_epoch_utc":null,"change_time_epoch":1583264833,"change_time_epoch_utc":null,"birth_time_epoch":1583264833,"birth_time_epoch_utc":null},{"file":"group.out","unix_device":16777221,"inode":72981499,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":2823,"access_time":"May 22 16:15:02 2020","modify_time":"Mar 3 11:47:13 2020","change_time":"Mar 3 11:47:13 2020","birth_time":"Mar 3 11:47:13 2020","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1583264833,"modify_time_epoch_utc":null,"change_time_epoch":1583264833,"change_time_epoch_utc":null,"birth_time_epoch":1583264833,"birth_time_epoch_utc":null},{"file":"id.json","unix_device":16777221,"inode":71197409,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":759,"access_time":"May 22 16:15:02 2020","modify_time":"Feb 5 17:00:38 2020","change_time":"Feb 5 17:00:38 2020","birth_time":"Feb 5 17:00:38 2020","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1580950838,"modify_time_epoch_utc":null,"change_time_epoch":1580950838,"change_time_epoch_utc":null,"birth_time_epoch":1580950838,"birth_time_epoch_utc":null},{"file":"id.out","unix_device":16777221,"inode":71197410,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":386,"access_time":"May 22 16:15:02 2020","modify_time":"Feb 5 17:00:38 2020","change_time":"Feb 5 17:00:38 2020","birth_time":"Feb 5 17:00:38 2020","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1580950838,"modify_time_epoch_utc":null,"change_time_epoch":1580950838,"change_time_epoch_utc":null,"birth_time_epoch":1580950838,"birth_time_epoch_utc":null},{"file":"ifconfig.json","unix_device":16777221,"inode":67165854,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":10823,"access_time":"May 22 16:15:02 2020","modify_time":"Dec 17 12:12:32 2019","change_time":"Dec 17 12:12:32 2019","birth_time":"Dec 17 12:12:32 2019","block_size":4096,"blocks":24,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1576613552,"modify_time_epoch_utc":null,"change_time_epoch":1576613552,"change_time_epoch_utc":null,"birth_time_epoch":1576613552,"birth_time_epoch_utc":null},{"file":"ifconfig.out","unix_device":16777221,"inode":67165855,"flags":"-rwxr-xr-x","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":3779,"access_time":"May 22 16:15:02 2020","modify_time":"Dec 17 12:12:32 2019","change_time":"Dec 17 12:12:32 2019","birth_time":"Dec 17 12:12:32 2019","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1576613552,"modify_time_epoch_utc":null,"change_time_epoch":1576613552,"change_time_epoch_utc":null,"birth_time_epoch":1576613552,"birth_time_epoch_utc":null},{"file":"ifconfig2.json","unix_device":16777221,"inode":67165856,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":11375,"access_time":"May 22 16:15:02 2020","modify_time":"Dec 17 12:12:32 2019","change_time":"Dec 17 12:12:32 2019","birth_time":"Dec 17 12:12:32 2019","block_size":4096,"blocks":24,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1576613552,"modify_time_epoch_utc":null,"change_time_epoch":1576613552,"change_time_epoch_utc":null,"birth_time_epoch":1576613552,"birth_time_epoch_utc":null},{"file":"ifconfig2.out","unix_device":16777221,"inode":67165857,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":3979,"access_time":"May 22 16:15:02 2020","modify_time":"Dec 17 12:12:32 2019","change_time":"Dec 17 12:12:32 2019","birth_time":"Dec 17 12:12:32 2019","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1576613552,"modify_time_epoch_utc":null,"change_time_epoch":1576613552,"change_time_epoch_utc":null,"birth_time_epoch":1576613552,"birth_time_epoch_utc":null},{"file":"last.json","unix_device":16777221,"inode":72981500,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":45274,"access_time":"May 22 16:15:02 2020","modify_time":"Mar 3 11:47:13 2020","change_time":"Mar 3 11:47:13 2020","birth_time":"Mar 3 11:47:13 2020","block_size":4096,"blocks":96,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1583264833,"modify_time_epoch_utc":null,"change_time_epoch":1583264833,"change_time_epoch_utc":null,"birth_time_epoch":1583264833,"birth_time_epoch_utc":null},{"file":"last.out","unix_device":16777221,"inode":72981501,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":25827,"access_time":"May 22 16:15:02 2020","modify_time":"Mar 3 11:47:13 2020","change_time":"Mar 3 11:47:13 2020","birth_time":"Mar 3 11:47:13 2020","block_size":4096,"blocks":56,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1583264833,"modify_time_epoch_utc":null,"change_time_epoch":1583264833,"change_time_epoch_utc":null,"birth_time_epoch":1583264833,"birth_time_epoch_utc":null},{"file":"ls-R-newlines.json","unix_device":16777221,"inode":72714988,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":852,"access_time":"May 22 16:15:02 2020","modify_time":"Feb 27 11:25:11 2020","change_time":"Feb 27 11:25:11 2020","birth_time":"Feb 27 11:25:11 2020","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1582831511,"modify_time_epoch_utc":null,"change_time_epoch":1582831511,"change_time_epoch_utc":null,"birth_time_epoch":1582831511,"birth_time_epoch_utc":null},{"file":"ls-R-newlines.out","unix_device":16777221,"inode":72714989,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":278,"access_time":"May 22 16:15:02 2020","modify_time":"Feb 27 11:25:11 2020","change_time":"Feb 27 11:25:11 2020","birth_time":"Feb 27 11:25:11 2020","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1582831511,"modify_time_epoch_utc":null,"change_time_epoch":1582831511,"change_time_epoch_utc":null,"birth_time_epoch":1582831511,"birth_time_epoch_utc":null},{"file":"ls-R.json","unix_device":16777221,"inode":72389524,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":469418,"access_time":"May 22 16:15:02 2020","modify_time":"Feb 19 07:07:23 2020","change_time":"Feb 19 07:07:23 2020","birth_time":"Feb 19 07:07:23 2020","block_size":4096,"blocks":920,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1582124843,"modify_time_epoch_utc":null,"change_time_epoch":1582124843,"change_time_epoch_utc":null,"birth_time_epoch":1582124843,"birth_time_epoch_utc":null},{"file":"ls-R.out","unix_device":16777221,"inode":72389525,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":133787,"access_time":"May 22 16:15:02 2020","modify_time":"Feb 19 07:07:23 2020","change_time":"Feb 19 07:07:23 2020","birth_time":"Feb 19 07:07:23 2020","block_size":4096,"blocks":264,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1582124843,"modify_time_epoch_utc":null,"change_time_epoch":1582124843,"change_time_epoch_utc":null,"birth_time_epoch":1582124843,"birth_time_epoch_utc":null},{"file":"ls-al.json","unix_device":16777221,"inode":67165858,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":4653,"access_time":"May 22 16:15:02 2020","modify_time":"Dec 17 12:12:32 2019","change_time":"Dec 17 12:12:32 2019","birth_time":"Dec 17 12:12:32 2019","block_size":4096,"blocks":16,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1576613552,"modify_time_epoch_utc":null,"change_time_epoch":1576613552,"change_time_epoch_utc":null,"birth_time_epoch":1576613552,"birth_time_epoch_utc":null},{"file":"ls-al.out","unix_device":16777221,"inode":67165859,"flags":"-rwxr-xr-x","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":2111,"access_time":"May 22 16:15:02 2020","modify_time":"Dec 17 12:12:32 2019","change_time":"Dec 17 12:12:32 2019","birth_time":"Dec 17 12:12:32 2019","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1576613552,"modify_time_epoch_utc":null,"change_time_epoch":1576613552,"change_time_epoch_utc":null,"birth_time_epoch":1576613552,"birth_time_epoch_utc":null},{"file":"ls-alR.json","unix_device":16777221,"inode":72389526,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":959674,"access_time":"May 22 16:15:02 2020","modify_time":"Feb 19 07:07:23 2020","change_time":"Feb 19 07:07:23 2020","birth_time":"Feb 19 07:07:23 2020","block_size":4096,"blocks":1880,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1582124843,"modify_time_epoch_utc":null,"change_time_epoch":1582124843,"change_time_epoch_utc":null,"birth_time_epoch":1582124843,"birth_time_epoch_utc":null},{"file":"ls-alR.out","unix_device":16777221,"inode":72389527,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":364578,"access_time":"May 22 16:15:02 2020","modify_time":"Feb 19 07:07:23 2020","change_time":"Feb 19 07:07:23 2020","birth_time":"Feb 19 07:07:23 2020","block_size":4096,"blocks":720,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1582124843,"modify_time_epoch_utc":null,"change_time_epoch":1582124843,"change_time_epoch_utc":null,"birth_time_epoch":1582124843,"birth_time_epoch_utc":null},{"file":"ls-alh.json","unix_device":16777221,"inode":67165860,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":4684,"access_time":"May 22 16:15:02 2020","modify_time":"Dec 17 12:12:32 2019","change_time":"Dec 17 12:12:32 2019","birth_time":"Dec 17 12:12:32 2019","block_size":4096,"blocks":16,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1576613552,"modify_time_epoch_utc":null,"change_time_epoch":1576613552,"change_time_epoch_utc":null,"birth_time_epoch":1576613552,"birth_time_epoch_utc":null},{"file":"ls-alh.out","unix_device":16777221,"inode":67165861,"flags":"-rwxr-xr-x","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":2111,"access_time":"May 22 16:15:02 2020","modify_time":"Dec 17 12:12:32 2019","change_time":"Dec 17 12:12:32 2019","birth_time":"Dec 17 12:12:32 2019","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1576613552,"modify_time_epoch_utc":null,"change_time_epoch":1576613552,"change_time_epoch_utc":null,"birth_time_epoch":1576613552,"birth_time_epoch_utc":null},{"file":"ls-glob.json","unix_device":16777221,"inode":81196212,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":91544,"access_time":"May 22 16:15:02 2020","modify_time":"May 9 11:47:44 2020","change_time":"May 9 11:47:44 2020","birth_time":"May 9 11:47:44 2020","block_size":4096,"blocks":184,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1589050064,"modify_time_epoch_utc":null,"change_time_epoch":1589050064,"change_time_epoch_utc":null,"birth_time_epoch":1589050064,"birth_time_epoch_utc":null},{"file":"ls-glob.out","unix_device":16777221,"inode":72389529,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":19369,"access_time":"May 22 16:15:02 2020","modify_time":"Feb 19 07:07:23 2020","change_time":"Feb 19 07:07:23 2020","birth_time":"Feb 19 07:07:23 2020","block_size":4096,"blocks":40,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1582124843,"modify_time_epoch_utc":null,"change_time_epoch":1582124843,"change_time_epoch_utc":null,"birth_time_epoch":1582124843,"birth_time_epoch_utc":null},{"file":"ls-l-newlines.json","unix_device":16777221,"inode":72714990,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":1162,"access_time":"May 22 16:15:02 2020","modify_time":"Feb 27 11:25:11 2020","change_time":"Feb 27 11:25:11 2020","birth_time":"Feb 27 11:25:11 2020","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1582831511,"modify_time_epoch_utc":null,"change_time_epoch":1582831511,"change_time_epoch_utc":null,"birth_time_epoch":1582831511,"birth_time_epoch_utc":null},{"file":"ls-l-newlines.out","unix_device":16777221,"inode":72714991,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":583,"access_time":"May 22 16:15:02 2020","modify_time":"Feb 27 11:25:11 2020","change_time":"Feb 27 11:25:11 2020","birth_time":"Feb 27 11:25:11 2020","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1582831511,"modify_time_epoch_utc":null,"change_time_epoch":1582831511,"change_time_epoch_utc":null,"birth_time_epoch":1582831511,"birth_time_epoch_utc":null},{"file":"ls-lR-empty-folder.json","unix_device":16777221,"inode":73352647,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":355547,"access_time":"May 22 16:15:02 2020","modify_time":"Mar 8 14:54:48 2020","change_time":"Mar 8 14:54:48 2020","birth_time":"Mar 8 14:54:48 2020","block_size":4096,"blocks":696,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1583704488,"modify_time_epoch_utc":null,"change_time_epoch":1583704488,"change_time_epoch_utc":null,"birth_time_epoch":1583704488,"birth_time_epoch_utc":null},{"file":"ls-lR-empty-folder.out","unix_device":16777221,"inode":73352648,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":128740,"access_time":"May 22 16:15:02 2020","modify_time":"Mar 8 14:54:48 2020","change_time":"Mar 8 14:54:48 2020","birth_time":"Mar 8 14:54:48 2020","block_size":4096,"blocks":256,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1583704488,"modify_time_epoch_utc":null,"change_time_epoch":1583704488,"change_time_epoch_utc":null,"birth_time_epoch":1583704488,"birth_time_epoch_utc":null},{"file":"ls-lR-newlines.json","unix_device":16777221,"inode":72714992,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":1450,"access_time":"May 22 16:15:02 2020","modify_time":"Feb 27 11:25:11 2020","change_time":"Feb 27 11:25:11 2020","birth_time":"Feb 27 11:25:11 2020","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1582831511,"modify_time_epoch_utc":null,"change_time_epoch":1582831511,"change_time_epoch_utc":null,"birth_time_epoch":1582831511,"birth_time_epoch_utc":null},{"file":"ls-lR-newlines.out","unix_device":16777221,"inode":72714993,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":656,"access_time":"May 22 16:15:02 2020","modify_time":"Feb 27 11:25:11 2020","change_time":"Feb 27 11:25:11 2020","birth_time":"Feb 27 11:25:11 2020","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1582831511,"modify_time_epoch_utc":null,"change_time_epoch":1582831511,"change_time_epoch_utc":null,"birth_time_epoch":1582831511,"birth_time_epoch_utc":null},{"file":"ls-newlines.json","unix_device":16777221,"inode":72714994,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":498,"access_time":"May 22 16:15:02 2020","modify_time":"Feb 27 11:25:11 2020","change_time":"Feb 27 11:25:11 2020","birth_time":"Feb 27 11:25:11 2020","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1582831511,"modify_time_epoch_utc":null,"change_time_epoch":1582831511,"change_time_epoch_utc":null,"birth_time_epoch":1582831511,"birth_time_epoch_utc":null},{"file":"ls-newlines.out","unix_device":16777221,"inode":72714995,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":260,"access_time":"May 22 16:15:02 2020","modify_time":"Feb 27 11:25:11 2020","change_time":"Feb 27 11:25:11 2020","birth_time":"Feb 27 11:25:11 2020","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1582831511,"modify_time_epoch_utc":null,"change_time_epoch":1582831511,"change_time_epoch_utc":null,"birth_time_epoch":1582831511,"birth_time_epoch_utc":null},{"file":"ls.json","unix_device":16777221,"inode":67165862,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":585,"access_time":"May 22 16:15:02 2020","modify_time":"Dec 17 12:12:32 2019","change_time":"Dec 17 12:12:32 2019","birth_time":"Dec 17 12:12:32 2019","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1576613552,"modify_time_epoch_utc":null,"change_time_epoch":1576613552,"change_time_epoch_utc":null,"birth_time_epoch":1576613552,"birth_time_epoch_utc":null},{"file":"ls.out","unix_device":16777221,"inode":67165863,"flags":"-rwxr-xr-x","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":193,"access_time":"May 22 16:15:02 2020","modify_time":"Dec 17 12:12:32 2019","change_time":"Dec 17 12:12:32 2019","birth_time":"Dec 17 12:12:32 2019","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1576613552,"modify_time_epoch_utc":null,"change_time_epoch":1576613552,"change_time_epoch_utc":null,"birth_time_epoch":1576613552,"birth_time_epoch_utc":null},{"file":"mount.json","unix_device":16777221,"inode":67165864,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":672,"access_time":"May 22 16:15:02 2020","modify_time":"Dec 17 12:12:32 2019","change_time":"Dec 17 12:12:32 2019","birth_time":"Dec 17 12:12:32 2019","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1576613552,"modify_time_epoch_utc":null,"change_time_epoch":1576613552,"change_time_epoch_utc":null,"birth_time_epoch":1576613552,"birth_time_epoch_utc":null},{"file":"mount.out","unix_device":16777221,"inode":67165865,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":349,"access_time":"May 22 16:15:02 2020","modify_time":"Dec 17 12:12:32 2019","change_time":"Dec 17 12:12:32 2019","birth_time":"Dec 17 12:12:32 2019","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1576613552,"modify_time_epoch_utc":null,"change_time_epoch":1576613552,"change_time_epoch_utc":null,"birth_time_epoch":1576613552,"birth_time_epoch_utc":null},{"file":"mount2.json","unix_device":16777221,"inode":67165866,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":841,"access_time":"May 22 16:15:02 2020","modify_time":"Dec 17 12:12:32 2019","change_time":"Dec 17 12:12:32 2019","birth_time":"Dec 17 12:12:32 2019","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1576613552,"modify_time_epoch_utc":null,"change_time_epoch":1576613552,"change_time_epoch_utc":null,"birth_time_epoch":1576613552,"birth_time_epoch_utc":null},{"file":"mount2.out","unix_device":16777221,"inode":67165867,"flags":"-rwxr-xr-x","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":464,"access_time":"May 22 16:15:02 2020","modify_time":"Dec 17 12:12:32 2019","change_time":"Dec 17 12:12:32 2019","birth_time":"Dec 17 12:12:32 2019","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1576613552,"modify_time_epoch_utc":null,"change_time_epoch":1576613552,"change_time_epoch_utc":null,"birth_time_epoch":1576613552,"birth_time_epoch_utc":null},{"file":"netstat-Abn.json","unix_device":16777221,"inode":81980380,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":150591,"access_time":"May 22 16:15:02 2020","modify_time":"May 21 09:43:36 2020","change_time":"May 21 09:43:36 2020","birth_time":"May 20 17:15:44 2020","block_size":4096,"blocks":296,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1590079416,"modify_time_epoch_utc":null,"change_time_epoch":1590079416,"change_time_epoch_utc":null,"birth_time_epoch":1590020144,"birth_time_epoch_utc":null},{"file":"netstat-Abn.out","unix_device":16777221,"inode":81980353,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":76835,"access_time":"May 22 16:15:02 2020","modify_time":"May 20 17:14:20 2020","change_time":"May 20 17:14:20 2020","birth_time":"May 20 17:14:20 2020","block_size":4096,"blocks":152,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1590020060,"modify_time_epoch_utc":null,"change_time_epoch":1590020060,"change_time_epoch_utc":null,"birth_time_epoch":1590020060,"birth_time_epoch_utc":null},{"file":"netstat-An.json","unix_device":16777221,"inode":81980369,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":141993,"access_time":"May 22 16:15:02 2020","modify_time":"May 21 09:43:47 2020","change_time":"May 21 09:43:47 2020","birth_time":"May 20 17:15:33 2020","block_size":4096,"blocks":280,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1590079427,"modify_time_epoch_utc":null,"change_time_epoch":1590079427,"change_time_epoch_utc":null,"birth_time_epoch":1590020133,"birth_time_epoch_utc":null},{"file":"netstat-An.out","unix_device":16777221,"inode":81980351,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":71005,"access_time":"May 22 16:15:02 2020","modify_time":"May 20 17:14:13 2020","change_time":"May 20 17:14:13 2020","birth_time":"May 20 17:14:13 2020","block_size":4096,"blocks":144,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1590020053,"modify_time_epoch_utc":null,"change_time_epoch":1590020053,"change_time_epoch_utc":null,"birth_time_epoch":1590020053,"birth_time_epoch_utc":null},{"file":"netstat-i.json","unix_device":16777221,"inode":82077065,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":7246,"access_time":"May 22 16:15:02 2020","modify_time":"May 22 14:14:08 2020","change_time":"May 22 14:14:08 2020","birth_time":"May 22 14:14:08 2020","block_size":4096,"blocks":16,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1590182048,"modify_time_epoch_utc":null,"change_time_epoch":1590182048,"change_time_epoch_utc":null,"birth_time_epoch":1590182048,"birth_time_epoch_utc":null},{"file":"netstat-i.out","unix_device":16777221,"inode":82075287,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":3354,"access_time":"May 22 16:15:02 2020","modify_time":"May 22 13:14:34 2020","change_time":"May 22 13:14:34 2020","birth_time":"May 22 13:14:34 2020","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1590178474,"modify_time_epoch_utc":null,"change_time_epoch":1590178474,"change_time_epoch_utc":null,"birth_time_epoch":1590178474,"birth_time_epoch_utc":null},{"file":"netstat-r.json","unix_device":16777221,"inode":82066550,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":11432,"access_time":"May 22 16:15:02 2020","modify_time":"May 22 11:58:28 2020","change_time":"May 22 11:58:28 2020","birth_time":"May 22 11:04:27 2020","block_size":4096,"blocks":24,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1590173908,"modify_time_epoch_utc":null,"change_time_epoch":1590173908,"change_time_epoch_utc":null,"birth_time_epoch":1590170667,"birth_time_epoch_utc":null},{"file":"netstat-r.out","unix_device":16777221,"inode":82066473,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":6178,"access_time":"May 22 16:15:02 2020","modify_time":"May 22 11:01:56 2020","change_time":"May 22 11:01:56 2020","birth_time":"May 22 11:00:19 2020","block_size":4096,"blocks":16,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1590170516,"modify_time_epoch_utc":null,"change_time_epoch":1590170516,"change_time_epoch_utc":null,"birth_time_epoch":1590170419,"birth_time_epoch_utc":null},{"file":"netstat-rnl.json","unix_device":16777221,"inode":82066556,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":15254,"access_time":"May 22 16:15:02 2020","modify_time":"May 22 11:58:45 2020","change_time":"May 22 11:58:45 2020","birth_time":"May 22 11:04:43 2020","block_size":4096,"blocks":32,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1590173925,"modify_time_epoch_utc":null,"change_time_epoch":1590173925,"change_time_epoch_utc":null,"birth_time_epoch":1590170683,"birth_time_epoch_utc":null},{"file":"netstat-rnl.out","unix_device":16777221,"inode":82066494,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":10055,"access_time":"May 22 16:15:02 2020","modify_time":"May 22 11:02:12 2020","change_time":"May 22 11:02:12 2020","birth_time":"May 22 11:02:12 2020","block_size":4096,"blocks":24,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1590170532,"modify_time_epoch_utc":null,"change_time_epoch":1590170532,"change_time_epoch_utc":null,"birth_time_epoch":1590170532,"birth_time_epoch_utc":null},{"file":"netstat.json","unix_device":16777221,"inode":81980364,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":140726,"access_time":"May 22 16:15:02 2020","modify_time":"May 21 09:43:21 2020","change_time":"May 21 09:43:21 2020","birth_time":"May 20 17:15:14 2020","block_size":4096,"blocks":280,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1590079401,"modify_time_epoch_utc":null,"change_time_epoch":1590079401,"change_time_epoch_utc":null,"birth_time_epoch":1590020114,"birth_time_epoch_utc":null},{"file":"netstat.out","unix_device":16777221,"inode":81980151,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":70387,"access_time":"May 22 16:15:02 2020","modify_time":"May 21 09:43:16 2020","change_time":"May 21 09:43:16 2020","birth_time":"May 20 17:05:39 2020","block_size":4096,"blocks":256,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1590079396,"modify_time_epoch_utc":null,"change_time_epoch":1590079396,"change_time_epoch_utc":null,"birth_time_epoch":1590019539,"birth_time_epoch_utc":null},{"file":"passwd.json","unix_device":16777221,"inode":72981502,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":14855,"access_time":"May 22 16:15:02 2020","modify_time":"Mar 3 11:47:13 2020","change_time":"Mar 3 11:47:13 2020","birth_time":"Mar 3 11:47:13 2020","block_size":4096,"blocks":32,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1583264833,"modify_time_epoch_utc":null,"change_time_epoch":1583264833,"change_time_epoch_utc":null,"birth_time_epoch":1583264833,"birth_time_epoch_utc":null},{"file":"passwd.out","unix_device":16777221,"inode":72981503,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":6804,"access_time":"May 22 16:15:02 2020","modify_time":"Mar 3 11:47:13 2020","change_time":"Mar 3 11:47:13 2020","birth_time":"Mar 3 11:47:13 2020","block_size":4096,"blocks":16,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1583264833,"modify_time_epoch_utc":null,"change_time_epoch":1583264833,"change_time_epoch_utc":null,"birth_time_epoch":1583264833,"birth_time_epoch_utc":null},{"file":"pip-list.json","unix_device":16777221,"inode":67165868,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":224,"access_time":"May 22 16:15:02 2020","modify_time":"Dec 17 12:12:32 2019","change_time":"Dec 17 12:12:32 2019","birth_time":"Dec 17 12:12:32 2019","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1576613552,"modify_time_epoch_utc":null,"change_time_epoch":1576613552,"change_time_epoch_utc":null,"birth_time_epoch":1576613552,"birth_time_epoch_utc":null},{"file":"pip-list.out","unix_device":16777221,"inode":67165869,"flags":"-rwxr-xr-x","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":168,"access_time":"May 22 16:15:02 2020","modify_time":"Dec 17 12:12:32 2019","change_time":"Dec 17 12:12:32 2019","birth_time":"Dec 17 12:12:32 2019","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1576613552,"modify_time_epoch_utc":null,"change_time_epoch":1576613552,"change_time_epoch_utc":null,"birth_time_epoch":1576613552,"birth_time_epoch_utc":null},{"file":"pip-show.json","unix_device":16777221,"inode":67165870,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":1067,"access_time":"May 22 16:15:02 2020","modify_time":"Dec 17 12:12:32 2019","change_time":"Dec 17 12:12:32 2019","birth_time":"Dec 17 12:12:32 2019","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1576613552,"modify_time_epoch_utc":null,"change_time_epoch":1576613552,"change_time_epoch_utc":null,"birth_time_epoch":1576613552,"birth_time_epoch_utc":null},{"file":"pip-show.out","unix_device":16777221,"inode":67165871,"flags":"-rwxr-xr-x","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":910,"access_time":"May 22 16:15:02 2020","modify_time":"Dec 17 12:12:32 2019","change_time":"Dec 17 12:12:32 2019","birth_time":"Dec 17 12:12:32 2019","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1576613552,"modify_time_epoch_utc":null,"change_time_epoch":1576613552,"change_time_epoch_utc":null,"birth_time_epoch":1576613552,"birth_time_epoch_utc":null},{"file":"ps-axu.json","unix_device":16777221,"inode":67165872,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":99173,"access_time":"May 22 16:15:02 2020","modify_time":"Dec 17 12:12:32 2019","change_time":"Dec 17 12:12:32 2019","birth_time":"Dec 17 12:12:32 2019","block_size":4096,"blocks":200,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1576613552,"modify_time_epoch_utc":null,"change_time_epoch":1576613552,"change_time_epoch_utc":null,"birth_time_epoch":1576613552,"birth_time_epoch_utc":null},{"file":"ps-axu.out","unix_device":16777221,"inode":67165873,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":60107,"access_time":"May 22 16:15:02 2020","modify_time":"Dec 17 12:12:32 2019","change_time":"Dec 17 12:12:32 2019","birth_time":"Dec 17 12:12:32 2019","block_size":4096,"blocks":120,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1576613552,"modify_time_epoch_utc":null,"change_time_epoch":1576613552,"change_time_epoch_utc":null,"birth_time_epoch":1576613552,"birth_time_epoch_utc":null},{"file":"ps-ef.json","unix_device":16777221,"inode":67165874,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":71162,"access_time":"May 22 16:15:02 2020","modify_time":"Dec 17 12:12:32 2019","change_time":"Dec 17 12:12:32 2019","birth_time":"Dec 17 12:12:32 2019","block_size":4096,"blocks":144,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1576613552,"modify_time_epoch_utc":null,"change_time_epoch":1576613552,"change_time_epoch_utc":null,"birth_time_epoch":1576613552,"birth_time_epoch_utc":null},{"file":"ps-ef.out","unix_device":16777221,"inode":67165875,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":48758,"access_time":"May 22 16:15:02 2020","modify_time":"Dec 17 12:12:32 2019","change_time":"Dec 17 12:12:32 2019","birth_time":"Dec 17 12:12:32 2019","block_size":4096,"blocks":96,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1576613552,"modify_time_epoch_utc":null,"change_time_epoch":1576613552,"change_time_epoch_utc":null,"birth_time_epoch":1576613552,"birth_time_epoch_utc":null},{"file":"uname-a.json","unix_device":16777221,"inode":67165876,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":221,"access_time":"May 22 16:15:02 2020","modify_time":"Dec 17 12:12:32 2019","change_time":"Dec 17 12:12:32 2019","birth_time":"Dec 17 12:12:32 2019","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1576613552,"modify_time_epoch_utc":null,"change_time_epoch":1576613552,"change_time_epoch_utc":null,"birth_time_epoch":1576613552,"birth_time_epoch_utc":null},{"file":"uname-a.out","unix_device":16777221,"inode":67165877,"flags":"-rwxr-xr-x","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":131,"access_time":"May 22 16:15:02 2020","modify_time":"Dec 17 12:12:32 2019","change_time":"Dec 17 12:12:32 2019","birth_time":"Dec 17 12:12:32 2019","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1576613552,"modify_time_epoch_utc":null,"change_time_epoch":1576613552,"change_time_epoch_utc":null,"birth_time_epoch":1576613552,"birth_time_epoch_utc":null},{"file":"uptime.json","unix_device":16777221,"inode":67165878,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":110,"access_time":"May 22 16:15:02 2020","modify_time":"Dec 17 12:12:32 2019","change_time":"Dec 17 12:12:32 2019","birth_time":"Dec 17 12:12:32 2019","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1576613552,"modify_time_epoch_utc":null,"change_time_epoch":1576613552,"change_time_epoch_utc":null,"birth_time_epoch":1576613552,"birth_time_epoch_utc":null},{"file":"uptime.out","unix_device":16777221,"inode":67165879,"flags":"-rwxr-xr-x","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":65,"access_time":"May 22 16:15:02 2020","modify_time":"Dec 17 12:12:32 2019","change_time":"Dec 17 12:12:32 2019","birth_time":"Dec 17 12:12:32 2019","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1576613552,"modify_time_epoch_utc":null,"change_time_epoch":1576613552,"change_time_epoch_utc":null,"birth_time_epoch":1576613552,"birth_time_epoch_utc":null},{"file":"w.json","unix_device":16777221,"inode":67165880,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":836,"access_time":"May 22 16:15:02 2020","modify_time":"Dec 17 12:12:32 2019","change_time":"Dec 17 12:12:32 2019","birth_time":"Dec 17 12:12:32 2019","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1576613552,"modify_time_epoch_utc":null,"change_time_epoch":1576613552,"change_time_epoch_utc":null,"birth_time_epoch":1576613552,"birth_time_epoch_utc":null},{"file":"w.out","unix_device":16777221,"inode":67165881,"flags":"-rwxr-xr-x","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":570,"access_time":"May 22 16:15:02 2020","modify_time":"Dec 17 12:12:32 2019","change_time":"Dec 17 12:12:32 2019","birth_time":"Dec 17 12:12:32 2019","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1576613552,"modify_time_epoch_utc":null,"change_time_epoch":1576613552,"change_time_epoch_utc":null,"birth_time_epoch":1576613552,"birth_time_epoch_utc":null},{"file":"who-a.json","unix_device":16777221,"inode":72981504,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":659,"access_time":"May 22 16:15:02 2020","modify_time":"Mar 3 11:47:13 2020","change_time":"Mar 3 11:47:13 2020","birth_time":"Mar 3 11:47:13 2020","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1583264833,"modify_time_epoch_utc":null,"change_time_epoch":1583264833,"change_time_epoch_utc":null,"birth_time_epoch":1583264833,"birth_time_epoch_utc":null},{"file":"who-a.out","unix_device":16777221,"inode":72981505,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":419,"access_time":"May 22 16:15:02 2020","modify_time":"Mar 3 11:47:13 2020","change_time":"Mar 3 11:47:13 2020","birth_time":"Mar 3 11:47:13 2020","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1583264833,"modify_time_epoch_utc":null,"change_time_epoch":1583264833,"change_time_epoch_utc":null,"birth_time_epoch":1583264833,"birth_time_epoch_utc":null},{"file":"who.json","unix_device":16777221,"inode":72981506,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":251,"access_time":"May 22 16:15:02 2020","modify_time":"Mar 3 11:47:13 2020","change_time":"Mar 3 11:47:13 2020","birth_time":"Mar 3 11:47:13 2020","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1583264833,"modify_time_epoch_utc":null,"change_time_epoch":1583264833,"change_time_epoch_utc":null,"birth_time_epoch":1583264833,"birth_time_epoch_utc":null},{"file":"who.out","unix_device":16777221,"inode":72981507,"flags":"-rw-r--r--","links":1,"user":"kbrazil","group":"staff","rdev":0,"size":128,"access_time":"May 22 16:15:02 2020","modify_time":"Mar 3 11:47:13 2020","change_time":"Mar 3 11:47:13 2020","birth_time":"Mar 3 11:47:13 2020","block_size":4096,"blocks":8,"unix_flags":"0","access_time_epoch":1590189302,"access_time_epoch_utc":null,"modify_time_epoch":1583264833,"modify_time_epoch_utc":null,"change_time_epoch":1583264833,"change_time_epoch_utc":null,"birth_time_epoch":1583264833,"birth_time_epoch_utc":null}] jc-1.17.3/tests/fixtures/osx-10.14.6/stat.out000066400000000000000000000363571415226333200203530ustar00rootroot0000000000000016777221 73839387 -rw-r--r-- 1 kbrazil staff 0 307 "May 22 16:15:02 2020" "Mar 11 13:47:39 2020" "Mar 11 13:47:39 2020" "Mar 11 13:47:39 2020" 4096 8 0 airport-I.json 16777221 73839388 -rw-r--r-- 1 kbrazil staff 0 348 "May 22 16:15:02 2020" "Mar 11 13:47:39 2020" "Mar 11 13:47:39 2020" "Mar 11 13:47:39 2020" 4096 8 0 airport-I.out 16777221 73839389 -rw-r--r-- 1 kbrazil staff 0 2152 "May 22 16:15:02 2020" "Mar 11 13:47:39 2020" "Mar 11 13:47:39 2020" "Mar 11 13:47:39 2020" 4096 8 0 airport-s.json 16777221 73839390 -rw-r--r-- 1 kbrazil staff 0 1423 "May 22 16:15:02 2020" "Mar 11 13:47:39 2020" "Mar 11 13:47:39 2020" "Mar 11 13:47:39 2020" 4096 8 0 airport-s.out 16777221 67165840 -rw-r--r-- 1 kbrazil staff 0 1541 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 arp-a.json 16777221 67165841 -rw-r--r-- 1 kbrazil staff 0 968 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 arp-a.out 16777221 73923691 -rw-r--r-- 1 kbrazil staff 0 2582 "May 22 16:15:02 2020" "Mar 12 17:09:29 2020" "Mar 12 17:09:29 2020" "Mar 12 17:09:29 2020" 4096 8 0 arp-a2.json 16777221 73923692 -rw-r--r-- 1 kbrazil staff 0 1597 "May 22 16:15:02 2020" "Mar 12 17:09:29 2020" "Mar 12 17:09:29 2020" "Mar 12 17:09:29 2020" 4096 8 0 arp-a2.out 16777221 67165842 -rw-r--r-- 1 kbrazil staff 0 1686 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 df-h.json 16777221 67165843 -rw-r--r-- 1 kbrazil staff 0 1276 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 df-h.out 16777221 67165844 -rw-r--r-- 1 kbrazil staff 0 1764 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 df.json 16777221 67165845 -rw-r--r-- 1 kbrazil staff 0 1384 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 df.out 16777221 67165846 -rw-r--r-- 1 kbrazil staff 0 438 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 dig-aaaa.json 16777221 67165847 -rw-r--r-- 1 kbrazil staff 0 536 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 dig-aaaa.out 16777221 74782481 -rw-r--r-- 1 kbrazil staff 0 5984 "May 22 16:15:02 2020" "Mar 26 17:16:11 2020" "Mar 26 17:16:11 2020" "Mar 26 17:16:11 2020" 4096 16 0 dig-axfr.json 16777221 74782482 -rw-r--r-- 1 kbrazil staff 0 3511 "May 22 16:15:02 2020" "Mar 26 17:16:11 2020" "Mar 26 17:16:11 2020" "Mar 26 17:16:11 2020" 4096 8 0 dig-axfr.out 16777221 67165848 -rw-r--r-- 1 kbrazil staff 0 442 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 dig-x.json 16777221 67165849 -rw-r--r-- 1 kbrazil staff 0 529 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 dig-x.out 16777221 67165850 -rw-r--r-- 1 kbrazil staff 0 1266 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 dig.json 16777221 67165851 -rw-r--r-- 1 kbrazil staff 0 1182 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 dig.out 16777221 67165852 -rw-r--r-- 1 kbrazil staff 0 295780 "May 22 16:15:02 2020" "Apr 20 16:30:21 2020" "Apr 20 16:30:21 2020" "Dec 17 12:12:32 2019" 4096 584 0 du.json 16777221 67165853 -rw-r--r-- 1 kbrazil staff 0 221925 "May 22 16:15:02 2020" "Apr 20 16:29:31 2020" "Apr 20 16:29:31 2020" "Dec 17 12:12:32 2019" 4096 512 0 du.out 16777221 73839391 -rw-r--r-- 1 kbrazil staff 0 3589 "May 22 16:15:02 2020" "Mar 11 13:47:39 2020" "Mar 11 13:47:39 2020" "Mar 11 13:47:39 2020" 4096 8 0 file.json 16777221 73839392 -rw-r--r-- 1 kbrazil staff 0 2890 "May 22 16:15:02 2020" "Mar 11 13:47:39 2020" "Mar 11 13:47:39 2020" "Mar 11 13:47:39 2020" 4096 8 0 file.out 16777221 73878467 -rw-r--r-- 1 kbrazil staff 0 4715 "May 22 16:15:02 2020" "Mar 12 08:24:33 2020" "Mar 12 08:24:33 2020" "Mar 12 08:24:33 2020" 4096 16 0 file2.json 16777221 73878468 -rw-r--r-- 1 kbrazil staff 0 4780 "May 22 16:15:02 2020" "Mar 12 08:24:33 2020" "Mar 12 08:24:33 2020" "Mar 12 08:24:33 2020" 4096 16 0 file2.out 16777221 72981498 -rw-r--r-- 1 kbrazil staff 0 9646 "May 22 16:15:02 2020" "Mar 3 11:47:13 2020" "Mar 3 11:47:13 2020" "Mar 3 11:47:13 2020" 4096 24 0 group.json 16777221 72981499 -rw-r--r-- 1 kbrazil staff 0 2823 "May 22 16:15:02 2020" "Mar 3 11:47:13 2020" "Mar 3 11:47:13 2020" "Mar 3 11:47:13 2020" 4096 8 0 group.out 16777221 71197409 -rw-r--r-- 1 kbrazil staff 0 759 "May 22 16:15:02 2020" "Feb 5 17:00:38 2020" "Feb 5 17:00:38 2020" "Feb 5 17:00:38 2020" 4096 8 0 id.json 16777221 71197410 -rw-r--r-- 1 kbrazil staff 0 386 "May 22 16:15:02 2020" "Feb 5 17:00:38 2020" "Feb 5 17:00:38 2020" "Feb 5 17:00:38 2020" 4096 8 0 id.out 16777221 67165854 -rw-r--r-- 1 kbrazil staff 0 10823 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 24 0 ifconfig.json 16777221 67165855 -rwxr-xr-x 1 kbrazil staff 0 3779 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 ifconfig.out 16777221 67165856 -rw-r--r-- 1 kbrazil staff 0 11375 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 24 0 ifconfig2.json 16777221 67165857 -rw-r--r-- 1 kbrazil staff 0 3979 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 ifconfig2.out 16777221 72981500 -rw-r--r-- 1 kbrazil staff 0 45274 "May 22 16:15:02 2020" "Mar 3 11:47:13 2020" "Mar 3 11:47:13 2020" "Mar 3 11:47:13 2020" 4096 96 0 last.json 16777221 72981501 -rw-r--r-- 1 kbrazil staff 0 25827 "May 22 16:15:02 2020" "Mar 3 11:47:13 2020" "Mar 3 11:47:13 2020" "Mar 3 11:47:13 2020" 4096 56 0 last.out 16777221 72714988 -rw-r--r-- 1 kbrazil staff 0 852 "May 22 16:15:02 2020" "Feb 27 11:25:11 2020" "Feb 27 11:25:11 2020" "Feb 27 11:25:11 2020" 4096 8 0 ls-R-newlines.json 16777221 72714989 -rw-r--r-- 1 kbrazil staff 0 278 "May 22 16:15:02 2020" "Feb 27 11:25:11 2020" "Feb 27 11:25:11 2020" "Feb 27 11:25:11 2020" 4096 8 0 ls-R-newlines.out 16777221 72389524 -rw-r--r-- 1 kbrazil staff 0 469418 "May 22 16:15:02 2020" "Feb 19 07:07:23 2020" "Feb 19 07:07:23 2020" "Feb 19 07:07:23 2020" 4096 920 0 ls-R.json 16777221 72389525 -rw-r--r-- 1 kbrazil staff 0 133787 "May 22 16:15:02 2020" "Feb 19 07:07:23 2020" "Feb 19 07:07:23 2020" "Feb 19 07:07:23 2020" 4096 264 0 ls-R.out 16777221 67165858 -rw-r--r-- 1 kbrazil staff 0 4653 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 16 0 ls-al.json 16777221 67165859 -rwxr-xr-x 1 kbrazil staff 0 2111 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 ls-al.out 16777221 72389526 -rw-r--r-- 1 kbrazil staff 0 959674 "May 22 16:15:02 2020" "Feb 19 07:07:23 2020" "Feb 19 07:07:23 2020" "Feb 19 07:07:23 2020" 4096 1880 0 ls-alR.json 16777221 72389527 -rw-r--r-- 1 kbrazil staff 0 364578 "May 22 16:15:02 2020" "Feb 19 07:07:23 2020" "Feb 19 07:07:23 2020" "Feb 19 07:07:23 2020" 4096 720 0 ls-alR.out 16777221 67165860 -rw-r--r-- 1 kbrazil staff 0 4684 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 16 0 ls-alh.json 16777221 67165861 -rwxr-xr-x 1 kbrazil staff 0 2111 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 ls-alh.out 16777221 81196212 -rw-r--r-- 1 kbrazil staff 0 91544 "May 22 16:15:02 2020" "May 9 11:47:44 2020" "May 9 11:47:44 2020" "May 9 11:47:44 2020" 4096 184 0 ls-glob.json 16777221 72389529 -rw-r--r-- 1 kbrazil staff 0 19369 "May 22 16:15:02 2020" "Feb 19 07:07:23 2020" "Feb 19 07:07:23 2020" "Feb 19 07:07:23 2020" 4096 40 0 ls-glob.out 16777221 72714990 -rw-r--r-- 1 kbrazil staff 0 1162 "May 22 16:15:02 2020" "Feb 27 11:25:11 2020" "Feb 27 11:25:11 2020" "Feb 27 11:25:11 2020" 4096 8 0 ls-l-newlines.json 16777221 72714991 -rw-r--r-- 1 kbrazil staff 0 583 "May 22 16:15:02 2020" "Feb 27 11:25:11 2020" "Feb 27 11:25:11 2020" "Feb 27 11:25:11 2020" 4096 8 0 ls-l-newlines.out 16777221 73352647 -rw-r--r-- 1 kbrazil staff 0 355547 "May 22 16:15:02 2020" "Mar 8 14:54:48 2020" "Mar 8 14:54:48 2020" "Mar 8 14:54:48 2020" 4096 696 0 ls-lR-empty-folder.json 16777221 73352648 -rw-r--r-- 1 kbrazil staff 0 128740 "May 22 16:15:02 2020" "Mar 8 14:54:48 2020" "Mar 8 14:54:48 2020" "Mar 8 14:54:48 2020" 4096 256 0 ls-lR-empty-folder.out 16777221 72714992 -rw-r--r-- 1 kbrazil staff 0 1450 "May 22 16:15:02 2020" "Feb 27 11:25:11 2020" "Feb 27 11:25:11 2020" "Feb 27 11:25:11 2020" 4096 8 0 ls-lR-newlines.json 16777221 72714993 -rw-r--r-- 1 kbrazil staff 0 656 "May 22 16:15:02 2020" "Feb 27 11:25:11 2020" "Feb 27 11:25:11 2020" "Feb 27 11:25:11 2020" 4096 8 0 ls-lR-newlines.out 16777221 72714994 -rw-r--r-- 1 kbrazil staff 0 498 "May 22 16:15:02 2020" "Feb 27 11:25:11 2020" "Feb 27 11:25:11 2020" "Feb 27 11:25:11 2020" 4096 8 0 ls-newlines.json 16777221 72714995 -rw-r--r-- 1 kbrazil staff 0 260 "May 22 16:15:02 2020" "Feb 27 11:25:11 2020" "Feb 27 11:25:11 2020" "Feb 27 11:25:11 2020" 4096 8 0 ls-newlines.out 16777221 67165862 -rw-r--r-- 1 kbrazil staff 0 585 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 ls.json 16777221 67165863 -rwxr-xr-x 1 kbrazil staff 0 193 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 ls.out 16777221 67165864 -rw-r--r-- 1 kbrazil staff 0 672 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 mount.json 16777221 67165865 -rw-r--r-- 1 kbrazil staff 0 349 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 mount.out 16777221 67165866 -rw-r--r-- 1 kbrazil staff 0 841 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 mount2.json 16777221 67165867 -rwxr-xr-x 1 kbrazil staff 0 464 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 mount2.out 16777221 81980380 -rw-r--r-- 1 kbrazil staff 0 150591 "May 22 16:15:02 2020" "May 21 09:43:36 2020" "May 21 09:43:36 2020" "May 20 17:15:44 2020" 4096 296 0 netstat-Abn.json 16777221 81980353 -rw-r--r-- 1 kbrazil staff 0 76835 "May 22 16:15:02 2020" "May 20 17:14:20 2020" "May 20 17:14:20 2020" "May 20 17:14:20 2020" 4096 152 0 netstat-Abn.out 16777221 81980369 -rw-r--r-- 1 kbrazil staff 0 141993 "May 22 16:15:02 2020" "May 21 09:43:47 2020" "May 21 09:43:47 2020" "May 20 17:15:33 2020" 4096 280 0 netstat-An.json 16777221 81980351 -rw-r--r-- 1 kbrazil staff 0 71005 "May 22 16:15:02 2020" "May 20 17:14:13 2020" "May 20 17:14:13 2020" "May 20 17:14:13 2020" 4096 144 0 netstat-An.out 16777221 82077065 -rw-r--r-- 1 kbrazil staff 0 7246 "May 22 16:15:02 2020" "May 22 14:14:08 2020" "May 22 14:14:08 2020" "May 22 14:14:08 2020" 4096 16 0 netstat-i.json 16777221 82075287 -rw-r--r-- 1 kbrazil staff 0 3354 "May 22 16:15:02 2020" "May 22 13:14:34 2020" "May 22 13:14:34 2020" "May 22 13:14:34 2020" 4096 8 0 netstat-i.out 16777221 82066550 -rw-r--r-- 1 kbrazil staff 0 11432 "May 22 16:15:02 2020" "May 22 11:58:28 2020" "May 22 11:58:28 2020" "May 22 11:04:27 2020" 4096 24 0 netstat-r.json 16777221 82066473 -rw-r--r-- 1 kbrazil staff 0 6178 "May 22 16:15:02 2020" "May 22 11:01:56 2020" "May 22 11:01:56 2020" "May 22 11:00:19 2020" 4096 16 0 netstat-r.out 16777221 82066556 -rw-r--r-- 1 kbrazil staff 0 15254 "May 22 16:15:02 2020" "May 22 11:58:45 2020" "May 22 11:58:45 2020" "May 22 11:04:43 2020" 4096 32 0 netstat-rnl.json 16777221 82066494 -rw-r--r-- 1 kbrazil staff 0 10055 "May 22 16:15:02 2020" "May 22 11:02:12 2020" "May 22 11:02:12 2020" "May 22 11:02:12 2020" 4096 24 0 netstat-rnl.out 16777221 81980364 -rw-r--r-- 1 kbrazil staff 0 140726 "May 22 16:15:02 2020" "May 21 09:43:21 2020" "May 21 09:43:21 2020" "May 20 17:15:14 2020" 4096 280 0 netstat.json 16777221 81980151 -rw-r--r-- 1 kbrazil staff 0 70387 "May 22 16:15:02 2020" "May 21 09:43:16 2020" "May 21 09:43:16 2020" "May 20 17:05:39 2020" 4096 256 0 netstat.out 16777221 72981502 -rw-r--r-- 1 kbrazil staff 0 14855 "May 22 16:15:02 2020" "Mar 3 11:47:13 2020" "Mar 3 11:47:13 2020" "Mar 3 11:47:13 2020" 4096 32 0 passwd.json 16777221 72981503 -rw-r--r-- 1 kbrazil staff 0 6804 "May 22 16:15:02 2020" "Mar 3 11:47:13 2020" "Mar 3 11:47:13 2020" "Mar 3 11:47:13 2020" 4096 16 0 passwd.out 16777221 67165868 -rw-r--r-- 1 kbrazil staff 0 224 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 pip-list.json 16777221 67165869 -rwxr-xr-x 1 kbrazil staff 0 168 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 pip-list.out 16777221 67165870 -rw-r--r-- 1 kbrazil staff 0 1067 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 pip-show.json 16777221 67165871 -rwxr-xr-x 1 kbrazil staff 0 910 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 pip-show.out 16777221 67165872 -rw-r--r-- 1 kbrazil staff 0 99173 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 200 0 ps-axu.json 16777221 67165873 -rw-r--r-- 1 kbrazil staff 0 60107 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 120 0 ps-axu.out 16777221 67165874 -rw-r--r-- 1 kbrazil staff 0 71162 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 144 0 ps-ef.json 16777221 67165875 -rw-r--r-- 1 kbrazil staff 0 48758 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 96 0 ps-ef.out 16777221 67165876 -rw-r--r-- 1 kbrazil staff 0 221 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 uname-a.json 16777221 67165877 -rwxr-xr-x 1 kbrazil staff 0 131 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 uname-a.out 16777221 67165878 -rw-r--r-- 1 kbrazil staff 0 110 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 uptime.json 16777221 67165879 -rwxr-xr-x 1 kbrazil staff 0 65 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 uptime.out 16777221 67165880 -rw-r--r-- 1 kbrazil staff 0 836 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 w.json 16777221 67165881 -rwxr-xr-x 1 kbrazil staff 0 570 "May 22 16:15:02 2020" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" "Dec 17 12:12:32 2019" 4096 8 0 w.out 16777221 72981504 -rw-r--r-- 1 kbrazil staff 0 659 "May 22 16:15:02 2020" "Mar 3 11:47:13 2020" "Mar 3 11:47:13 2020" "Mar 3 11:47:13 2020" 4096 8 0 who-a.json 16777221 72981505 -rw-r--r-- 1 kbrazil staff 0 419 "May 22 16:15:02 2020" "Mar 3 11:47:13 2020" "Mar 3 11:47:13 2020" "Mar 3 11:47:13 2020" 4096 8 0 who-a.out 16777221 72981506 -rw-r--r-- 1 kbrazil staff 0 251 "May 22 16:15:02 2020" "Mar 3 11:47:13 2020" "Mar 3 11:47:13 2020" "Mar 3 11:47:13 2020" 4096 8 0 who.json 16777221 72981507 -rw-r--r-- 1 kbrazil staff 0 128 "May 22 16:15:02 2020" "Mar 3 11:47:13 2020" "Mar 3 11:47:13 2020" "Mar 3 11:47:13 2020" 4096 8 0 who.out jc-1.17.3/tests/fixtures/osx-10.14.6/sum.json000066400000000000000000000220221415226333200203260ustar00rootroot00000000000000[{"filename": "airport-I.json", "checksum": 38391, "blocks": 1}, {"filename": "airport-I.out", "checksum": 10927, "blocks": 1}, {"filename": "airport-s.json", "checksum": 19081, "blocks": 3}, {"filename": "airport-s.out", "checksum": 63504, "blocks": 2}, {"filename": "arp-a.json", "checksum": 60887, "blocks": 3}, {"filename": "arp-a.out", "checksum": 18964, "blocks": 1}, {"filename": "arp-a2.json", "checksum": 63795, "blocks": 3}, {"filename": "arp-a2.out", "checksum": 46674, "blocks": 2}, {"filename": "cksum.out", "checksum": 49539, "blocks": 5}, {"filename": "df-h.json", "checksum": 64766, "blocks": 2}, {"filename": "df-h.out", "checksum": 415, "blocks": 2}, {"filename": "df.json", "checksum": 37365, "blocks": 2}, {"filename": "df.out", "checksum": 12639, "blocks": 2}, {"filename": "dig-aaaa.json", "checksum": 8111, "blocks": 1}, {"filename": "dig-aaaa.out", "checksum": 50417, "blocks": 1}, {"filename": "dig-axfr.json", "checksum": 43183, "blocks": 6}, {"filename": "dig-axfr.out", "checksum": 28178, "blocks": 4}, {"filename": "dig-x.json", "checksum": 2727, "blocks": 1}, {"filename": "dig-x.out", "checksum": 11169, "blocks": 1}, {"filename": "dig.json", "checksum": 40945, "blocks": 2}, {"filename": "dig.out", "checksum": 61726, "blocks": 2}, {"filename": "du.json", "checksum": 38720, "blocks": 289}, {"filename": "du.out", "checksum": 16890, "blocks": 217}, {"filename": "file.json", "checksum": 37280, "blocks": 4}, {"filename": "file.out", "checksum": 9660, "blocks": 3}, {"filename": "file2.json", "checksum": 29539, "blocks": 5}, {"filename": "file2.out", "checksum": 33868, "blocks": 5}, {"filename": "group.json", "checksum": 50477, "blocks": 10}, {"filename": "group.out", "checksum": 55547, "blocks": 3}, {"filename": "id.json", "checksum": 21649, "blocks": 1}, {"filename": "id.out", "checksum": 26181, "blocks": 1}, {"filename": "ifconfig.json", "checksum": 17770, "blocks": 11}, {"filename": "ifconfig.out", "checksum": 10956, "blocks": 4}, {"filename": "ifconfig2.json", "checksum": 35645, "blocks": 12}, {"filename": "ifconfig2.out", "checksum": 38293, "blocks": 4}, {"filename": "last.json", "checksum": 36756, "blocks": 45}, {"filename": "last.out", "checksum": 23587, "blocks": 26}, {"filename": "ls-R-newlines.json", "checksum": 30013, "blocks": 1}, {"filename": "ls-R-newlines.out", "checksum": 42103, "blocks": 1}, {"filename": "ls-R.json", "checksum": 37108, "blocks": 459}, {"filename": "ls-R.out", "checksum": 63758, "blocks": 131}, {"filename": "ls-al.json", "checksum": 56923, "blocks": 5}, {"filename": "ls-al.out", "checksum": 15531, "blocks": 3}, {"filename": "ls-alR.json", "checksum": 1382, "blocks": 938}, {"filename": "ls-alR.out", "checksum": 4461, "blocks": 357}, {"filename": "ls-alh.json", "checksum": 57950, "blocks": 5}, {"filename": "ls-alh.out", "checksum": 6947, "blocks": 3}, {"filename": "ls-glob.json", "checksum": 31393, "blocks": 90}, {"filename": "ls-glob.out", "checksum": 1019, "blocks": 19}, {"filename": "ls-l-newlines.json", "checksum": 57505, "blocks": 2}, {"filename": "ls-l-newlines.out", "checksum": 41948, "blocks": 1}, {"filename": "ls-lR-empty-folder.json", "checksum": 11529, "blocks": 348}, {"filename": "ls-lR-empty-folder.out", "checksum": 58132, "blocks": 126}, {"filename": "ls-lR-newlines.json", "checksum": 6935, "blocks": 2}, {"filename": "ls-lR-newlines.out", "checksum": 41356, "blocks": 1}, {"filename": "ls-newlines.json", "checksum": 9894, "blocks": 1}, {"filename": "ls-newlines.out", "checksum": 57269, "blocks": 1}, {"filename": "ls.json", "checksum": 17338, "blocks": 1}, {"filename": "ls.out", "checksum": 52477, "blocks": 1}, {"filename": "md5.json", "checksum": 36019, "blocks": 8}, {"filename": "md5.out", "checksum": 42534, "blocks": 6}, {"filename": "mount.json", "checksum": 37000, "blocks": 1}, {"filename": "mount.out", "checksum": 16534, "blocks": 1}, {"filename": "mount2.json", "checksum": 45746, "blocks": 1}, {"filename": "mount2.out", "checksum": 55291, "blocks": 1}, {"filename": "netstat-Abn.json", "checksum": 34181, "blocks": 148}, {"filename": "netstat-Abn.out", "checksum": 5732, "blocks": 76}, {"filename": "netstat-An.json", "checksum": 27697, "blocks": 140}, {"filename": "netstat-An.out", "checksum": 26933, "blocks": 70}, {"filename": "netstat-i.json", "checksum": 13656, "blocks": 8}, {"filename": "netstat-i.out", "checksum": 7961, "blocks": 4}, {"filename": "netstat-r.json", "checksum": 11407, "blocks": 17}, {"filename": "netstat-r.out", "checksum": 18759, "blocks": 7}, {"filename": "netstat-rnl.json", "checksum": 63267, "blocks": 21}, {"filename": "netstat-rnl.out", "checksum": 62814, "blocks": 10}, {"filename": "netstat.json", "checksum": 41515, "blocks": 138}, {"filename": "netstat.out", "checksum": 32647, "blocks": 69}, {"filename": "passwd.json", "checksum": 39641, "blocks": 15}, {"filename": "passwd.out", "checksum": 19130, "blocks": 7}, {"filename": "ping-hostname-p.json", "checksum": 113, "blocks": 1}, {"filename": "ping-hostname-p.out", "checksum": 6247, "blocks": 1}, {"filename": "ping-hostname-s.json", "checksum": 12827, "blocks": 1}, {"filename": "ping-hostname-s.out", "checksum": 23515, "blocks": 1}, {"filename": "ping-hostname.json", "checksum": 21637, "blocks": 1}, {"filename": "ping-hostname.out", "checksum": 18604, "blocks": 1}, {"filename": "ping-ip-dup.json", "checksum": 26389, "blocks": 3}, {"filename": "ping-ip-dup.out", "checksum": 19769, "blocks": 2}, {"filename": "ping-ip-p.json", "checksum": 24589, "blocks": 1}, {"filename": "ping-ip-p.out", "checksum": 46644, "blocks": 1}, {"filename": "ping-ip-s.json", "checksum": 33523, "blocks": 1}, {"filename": "ping-ip-s.out", "checksum": 25608, "blocks": 1}, {"filename": "ping-ip.json", "checksum": 8854, "blocks": 1}, {"filename": "ping-ip.out", "checksum": 62691, "blocks": 1}, {"filename": "ping6-hostname-p.json", "checksum": 49568, "blocks": 1}, {"filename": "ping6-hostname-p.out", "checksum": 53253, "blocks": 1}, {"filename": "ping6-hostname-s.json", "checksum": 25633, "blocks": 1}, {"filename": "ping6-hostname-s.out", "checksum": 33091, "blocks": 1}, {"filename": "ping6-hostname.json", "checksum": 7678, "blocks": 1}, {"filename": "ping6-hostname.out", "checksum": 57086, "blocks": 1}, {"filename": "ping6-ip-dup.json", "checksum": 22863, "blocks": 10}, {"filename": "ping6-ip-dup.out", "checksum": 43494, "blocks": 6}, {"filename": "ping6-ip-p.json", "checksum": 39183, "blocks": 1}, {"filename": "ping6-ip-p.out", "checksum": 34802, "blocks": 1}, {"filename": "ping6-ip-s.json", "checksum": 40367, "blocks": 1}, {"filename": "ping6-ip-s.out", "checksum": 51554, "blocks": 1}, {"filename": "ping6-ip.json", "checksum": 57462, "blocks": 1}, {"filename": "ping6-ip.out", "checksum": 36941, "blocks": 1}, {"filename": "pip-list.json", "checksum": 29175, "blocks": 1}, {"filename": "pip-list.out", "checksum": 20474, "blocks": 1}, {"filename": "pip-show.json", "checksum": 37722, "blocks": 2}, {"filename": "pip-show.out", "checksum": 18260, "blocks": 1}, {"filename": "ps-axu.json", "checksum": 24887, "blocks": 97}, {"filename": "ps-axu.out", "checksum": 43405, "blocks": 59}, {"filename": "ps-ef.json", "checksum": 62822, "blocks": 70}, {"filename": "ps-ef.out", "checksum": 46842, "blocks": 48}, {"filename": "shasum.json", "checksum": 29690, "blocks": 12}, {"filename": "shasum.out", "checksum": 31405, "blocks": 8}, {"filename": "stat.json", "checksum": 30773, "blocks": 35}, {"filename": "stat.out", "checksum": 27996, "blocks": 16}, {"filename": "sysctl-a.json", "checksum": 54364, "blocks": 46}, {"filename": "sysctl-a.out", "checksum": 56073, "blocks": 42}, {"filename": "traceroute-asn.json", "checksum": 60232, "blocks": 2}, {"filename": "traceroute-asn.out", "checksum": 60268, "blocks": 1}, {"filename": "traceroute-mult-addresses.json", "checksum": 7554, "blocks": 1}, {"filename": "traceroute-mult-addresses.out", "checksum": 19479, "blocks": 1}, {"filename": "traceroute-no-header.json", "checksum": 14875, "blocks": 1}, {"filename": "traceroute-no-header.out", "checksum": 62949, "blocks": 1}, {"filename": "traceroute-q.json", "checksum": 12931, "blocks": 2}, {"filename": "traceroute-q.out", "checksum": 52433, "blocks": 1}, {"filename": "traceroute.json", "checksum": 45516, "blocks": 3}, {"filename": "traceroute.out", "checksum": 2209, "blocks": 1}, {"filename": "traceroute6-mult-addresses.json", "checksum": 12134, "blocks": 1}, {"filename": "traceroute6-mult-addresses.out", "checksum": 52070, "blocks": 1}, {"filename": "traceroute6.json", "checksum": 12134, "blocks": 1}, {"filename": "traceroute6.out", "checksum": 0, "blocks": 1}, {"filename": "uname-a.json", "checksum": 33535, "blocks": 1}, {"filename": "uname-a.out", "checksum": 39634, "blocks": 1}, {"filename": "uname.out", "checksum": 22645, "blocks": 1}, {"filename": "uptime.json", "checksum": 59092, "blocks": 1}, {"filename": "uptime.out", "checksum": 45958, "blocks": 1}, {"filename": "w.json", "checksum": 8647, "blocks": 1}, {"filename": "w.out", "checksum": 16304, "blocks": 1}, {"filename": "who-a.json", "checksum": 61006, "blocks": 1}, {"filename": "who-a.out", "checksum": 8784, "blocks": 1}, {"filename": "who.json", "checksum": 6467, "blocks": 1}, {"filename": "who.out", "checksum": 27498, "blocks": 1}] jc-1.17.3/tests/fixtures/osx-10.14.6/sum.out000066400000000000000000000062571415226333200202000ustar00rootroot0000000000000038391 1 airport-I.json 10927 1 airport-I.out 19081 3 airport-s.json 63504 2 airport-s.out 60887 3 arp-a.json 18964 1 arp-a.out 63795 3 arp-a2.json 46674 2 arp-a2.out 49539 5 cksum.out 64766 2 df-h.json 415 2 df-h.out 37365 2 df.json 12639 2 df.out 8111 1 dig-aaaa.json 50417 1 dig-aaaa.out 43183 6 dig-axfr.json 28178 4 dig-axfr.out 2727 1 dig-x.json 11169 1 dig-x.out 40945 2 dig.json 61726 2 dig.out 38720 289 du.json 16890 217 du.out 37280 4 file.json 9660 3 file.out 29539 5 file2.json 33868 5 file2.out 50477 10 group.json 55547 3 group.out 21649 1 id.json 26181 1 id.out 17770 11 ifconfig.json 10956 4 ifconfig.out 35645 12 ifconfig2.json 38293 4 ifconfig2.out 36756 45 last.json 23587 26 last.out 30013 1 ls-R-newlines.json 42103 1 ls-R-newlines.out 37108 459 ls-R.json 63758 131 ls-R.out 56923 5 ls-al.json 15531 3 ls-al.out 1382 938 ls-alR.json 4461 357 ls-alR.out 57950 5 ls-alh.json 6947 3 ls-alh.out 31393 90 ls-glob.json 1019 19 ls-glob.out 57505 2 ls-l-newlines.json 41948 1 ls-l-newlines.out 11529 348 ls-lR-empty-folder.json 58132 126 ls-lR-empty-folder.out 6935 2 ls-lR-newlines.json 41356 1 ls-lR-newlines.out 9894 1 ls-newlines.json 57269 1 ls-newlines.out 17338 1 ls.json 52477 1 ls.out 36019 8 md5.json 42534 6 md5.out 37000 1 mount.json 16534 1 mount.out 45746 1 mount2.json 55291 1 mount2.out 34181 148 netstat-Abn.json 5732 76 netstat-Abn.out 27697 140 netstat-An.json 26933 70 netstat-An.out 13656 8 netstat-i.json 7961 4 netstat-i.out 11407 17 netstat-r.json 18759 7 netstat-r.out 63267 21 netstat-rnl.json 62814 10 netstat-rnl.out 41515 138 netstat.json 32647 69 netstat.out 39641 15 passwd.json 19130 7 passwd.out 113 1 ping-hostname-p.json 6247 1 ping-hostname-p.out 12827 1 ping-hostname-s.json 23515 1 ping-hostname-s.out 21637 1 ping-hostname.json 18604 1 ping-hostname.out 26389 3 ping-ip-dup.json 19769 2 ping-ip-dup.out 24589 1 ping-ip-p.json 46644 1 ping-ip-p.out 33523 1 ping-ip-s.json 25608 1 ping-ip-s.out 8854 1 ping-ip.json 62691 1 ping-ip.out 49568 1 ping6-hostname-p.json 53253 1 ping6-hostname-p.out 25633 1 ping6-hostname-s.json 33091 1 ping6-hostname-s.out 7678 1 ping6-hostname.json 57086 1 ping6-hostname.out 22863 10 ping6-ip-dup.json 43494 6 ping6-ip-dup.out 39183 1 ping6-ip-p.json 34802 1 ping6-ip-p.out 40367 1 ping6-ip-s.json 51554 1 ping6-ip-s.out 57462 1 ping6-ip.json 36941 1 ping6-ip.out 29175 1 pip-list.json 20474 1 pip-list.out 37722 2 pip-show.json 18260 1 pip-show.out 24887 97 ps-axu.json 43405 59 ps-axu.out 62822 70 ps-ef.json 46842 48 ps-ef.out 29690 12 shasum.json 31405 8 shasum.out 30773 35 stat.json 27996 16 stat.out 54364 46 sysctl-a.json 56073 42 sysctl-a.out 60232 2 traceroute-asn.json 60268 1 traceroute-asn.out 7554 1 traceroute-mult-addresses.json 19479 1 traceroute-mult-addresses.out 14875 1 traceroute-no-header.json 62949 1 traceroute-no-header.out 12931 2 traceroute-q.json 52433 1 traceroute-q.out 45516 3 traceroute.json 2209 1 traceroute.out 12134 1 traceroute6-mult-addresses.json 52070 1 traceroute6-mult-addresses.out 12134 1 traceroute6.json 0 1 traceroute6.out 33535 1 uname-a.json 39634 1 uname-a.out 22645 1 uname.out 59092 1 uptime.json 45958 1 uptime.out 8647 1 w.json 16304 1 w.out 61006 1 who-a.json 8784 1 who-a.out 6467 1 who.json 27498 1 who.out jc-1.17.3/tests/fixtures/osx-10.14.6/sysctl-a.json000066400000000000000000001326111415226333200212670ustar00rootroot00000000000000{"user.cs_path": "/usr/bin:/bin:/usr/sbin:/sbin", "user.bc_base_max": 99, "user.bc_dim_max": 2048, "user.bc_scale_max": 99, "user.bc_string_max": 1000, "user.coll_weights_max": 2, "user.expr_nest_max": 32, "user.line_max": 2048, "user.re_dup_max": 255, "user.posix2_version": 200112, "user.posix2_c_bind": 0, "user.posix2_c_dev": 0, "user.posix2_char_term": 0, "user.posix2_fort_dev": 0, "user.posix2_fort_run": 0, "user.posix2_localedef": 0, "user.posix2_sw_dev": 0, "user.posix2_upe": 0, "user.stream_max": 20, "user.tzname_max": 255, "kern.ostype": "Darwin", "kern.osrelease": "18.7.0", "kern.osrevision": 199506, "kern.version": "Darwin Kernel Version 18.7.0: Mon Apr 27 20:09:39 PDT 2020; root:xnu-4903.278.35~1/RELEASE_X86_64", "kern.maxvnodes": 263168, "kern.maxproc": 2128, "kern.maxfiles": 49152, "kern.argmax": 262144, "kern.securelevel": 0, "kern.hostname": "kbrazil-mac", "kern.hostid": 0, "kern.clockrate": "{ hz = 100, tick = 10000, tickadj = 0, profhz = 100, stathz = 100 }", "kern.posix1version": 200112, "kern.ngroups": 16, "kern.job_control": 1, "kern.saved_ids": 1, "kern.boottime": "{ sec = 1592836479, usec = 918881 } Mon Jun 22 07:34:39 2020", "kern.nisdomainname": "", "kern.maxfilesperproc": 24576, "kern.maxprocperuid": 1418, "kern.ipc.maxsockbuf": 8388608, "kern.ipc.sockbuf_waste_factor": 8, "kern.ipc.somaxconn": 128, "kern.ipc.nmbclusters": 65536, "kern.ipc.soqlimitcompat": 1, "kern.ipc.mleak_sample_factor": 500, "kern.ipc.mb_normalized": 0, "kern.ipc.mb_watchdog": 0, "kern.ipc.mb_drain_force": 0, "kern.ipc.mb_drain_maxint": 0, "kern.ipc.socket_debug": 0, "kern.ipc.sodefunct_calls": 0, "kern.ipc.sosendminchain": 16384, "kern.ipc.sorecvmincopy": 16384, "kern.ipc.sosendjcl": 1, "kern.ipc.sosendjcl_ignore_capab": 0, "kern.ipc.sosendbigcl_ignore_capab": 0, "kern.ipc.sodefunctlog": 0, "kern.ipc.sothrottlelog": 0, "kern.ipc.sorestrictrecv": 1, "kern.ipc.sorestrictsend": 1, "kern.ipc.soreserveheadroom": 1, "kern.ipc.maxextbkidleperproc": 1, "kern.ipc.extbkidletime": 600, "kern.ipc.extbkidlercvhiwat": 131072, "kern.ipc.sotcdb": 0, "kern.ipc.throttle_best_effort": 0, "kern.ipc.njcl": 21840, "kern.ipc.njclbytes": 16384, "kern.ipc.soqlencomp": 0, "kern.ipc.sbmb_cnt": 118, "kern.ipc.sbmb_cnt_peak": 13481, "kern.ipc.sbmb_cnt_floor": 10, "kern.ipc.sbmb_limreached": 0, "kern.ipc.io_policy.log": 0, "kern.ipc.io_policy.uuid": 1, "kern.ipc.maxsendmsgx": 100, "kern.ipc.maxrecvmsgx": 100, "kern.usrstack": -439726080, "kern.netboot": 0, "kern.sysv.shmmax": 4194304, "kern.sysv.shmmin": 1, "kern.sysv.shmmni": 32, "kern.sysv.shmseg": 8, "kern.sysv.shmall": 1024, "kern.sysv.semmni": 87381, "kern.sysv.semmns": 87381, "kern.sysv.semmnu": 87381, "kern.sysv.semmsl": 87381, "kern.sysv.semume": 10, "kern.aiomax": 90, "kern.aioprocmax": 16, "kern.aiothreads": 4, "kern.corefile": "/cores/core.%P", "kern.coredump": 1, "kern.sugid_coredump": 0, "kern.delayterm": 0, "kern.shreg_private": 0, "kern.posix.sem.max": 10000, "kern.usrstack64": 140732753661952, "kern.tfp.policy": 2, "kern.procname": "sysctl", "kern.speculative_reads_disabled": 0, "kern.osversion": "18G5033", "kern.safeboot": 0, "kern.rage_vnode": 0, "kern.tty.ptmx_max": 511, "kern.threadname": "", "kern.dtrace.err_verbose": 0, "kern.dtrace.buffer_memory_maxsize": 5726623061, "kern.dtrace.buffer_memory_inuse": 0, "kern.dtrace.difo_maxsize": 262144, "kern.dtrace.dof_maxsize": 524288, "kern.dtrace.global_maxsize": 16384, "kern.dtrace.provide_private_probes": 0, "kern.dtrace.dof_mode": 1, "kern.dtrace.ignore_fbt_blacklist": 0, "kern.nbuf": 16384, "kern.maxnbuf": 16384, "kern.monotonic.supported": 1, "kern.monotonic.pmis": "5963 0", "kern.monotonic.retrograde_updates": "5971 0", "kern.monotonic.task_thread_counting": 1, "kern.flush_cache_on_write": 0, "kern.wq_stalled_window_usecs": 200, "kern.wq_reduce_pool_window_usecs": 5000000, "kern.wq_max_timer_interval_usecs": 50000, "kern.wq_max_threads": 512, "kern.wq_max_constrained_threads": 64, "kern.kdbg.experimental_continuous": 0, "kern.kdbg.debug": 0, "kern.kdbg.oldest_time": 0, "kern.ds_supgroups_supported": 1, "kern.sugid_scripts": 0, "kern.zleak.active": 0, "kern.zleak.max_zonemap_size": 6442450944, "kern.zleak.global_threshold": 3221225472, "kern.zleak.zone_threshold": 402653184, "kern.uuid": "2C6A35B5-EEFD-317A-9A3D-901B9CC558CF", "kern.osproductversion": "10.14.6", "kern.bootargs": "", "kern.kernelcacheuuid": "4E40D492-B149-0774-E90A-50619C8E2520", "kern.num_files": 6486, "kern.num_vnodes": 263168, "kern.num_tasks": 4096, "kern.num_threads": 20480, "kern.num_taskthreads": 4096, "kern.num_recycledvnodes": 3273026, "kern.namecache_disabled": 0, "kern.sched_enable_smt": 1, "kern.sched_allow_NO_SMT_threads": 1, "kern.preheat_max_bytes": 1048576, "kern.preheat_min_bytes": 32768, "kern.speculative_prefetch_max": 201326592, "kern.speculative_prefetch_max_iosize": 524288, "kern.vm_page_free_target": 4000, "kern.vm_page_free_min": 3500, "kern.vm_page_free_reserved": 776, "kern.vm_page_speculative_percentage": 5, "kern.vm_page_speculative_q_age_ms": 500, "kern.vm_max_delayed_work_limit": 32, "kern.vm_max_batch": 256, "kern.bootsessionuuid": "B1A56C72-9A70-42C8-BBD3-0A72CF733A7C", "kern.timer.coalescing_enabled": 1, "kern.timer.deadline_tracking_bin_1": 2000000, "kern.timer.deadline_tracking_bin_2": 5000000, "kern.timer.longterm.threshold": 1000, "kern.timer.longterm.scan_limit": 100000, "kern.timer.longterm.scan_interval": 100000, "kern.timer.longterm.qlen": 260, "kern.timer.longterm.scan_pauses": 1162395, "kern.singleuser": 0, "kern.minimalboot": 0, "kern.affinity_sets_enabled": 1, "kern.affinity_sets_mapping": 1, "kern.slide": 1, "kern.ipc_voucher_trace_contents": 0, "kern.stack_size": 16384, "kern.stack_depth_max": 13488, "kern.kern_feature_overrides": 0, "kern.ipc_portbt": 0, "kern.sched": "dualq", "kern.timer_coalesce_bg_scale": -5, "kern.timer_resort_threshold_ns": 50000000, "kern.timer_coalesce_bg_ns_max": 100000000, "kern.timer_coalesce_kt_scale": 3, "kern.timer_coalesce_kt_ns_max": 1000000, "kern.timer_coalesce_fp_scale": 3, "kern.timer_coalesce_fp_ns_max": 1000000, "kern.timer_coalesce_ts_scale": 3, "kern.timer_coalesce_ts_ns_max": 1000000, "kern.timer_coalesce_tier0_scale": 3, "kern.timer_coalesce_tier0_ns_max": 1000000, "kern.timer_coalesce_tier1_scale": 2, "kern.timer_coalesce_tier1_ns_max": 5000000, "kern.timer_coalesce_tier2_scale": 1, "kern.timer_coalesce_tier2_ns_max": 20000000, "kern.timer_coalesce_tier3_scale": -2, "kern.timer_coalesce_tier3_ns_max": 75000000, "kern.timer_coalesce_tier4_scale": -15, "kern.timer_coalesce_tier4_ns_max": 10000000000, "kern.timer_coalesce_tier5_scale": -15, "kern.timer_coalesce_tier5_ns_max": 10000000000, "kern.hv_support": 1, "kern.thread_groups_supported": 0, "kern.memorystatus_sysprocs_idle_delay_time": 0, "kern.memorystatus_apps_idle_delay_time": 0, "kern.jetsam_aging_policy": 1, "kern.memorystatus_purge_on_warning": 2, "kern.memorystatus_purge_on_urgent": 5, "kern.memorystatus_purge_on_critical": 8, "kern.bridge.bootsessionuuid": "732B39EE-D3CE-499C-90FB-7F39DEB2A723", "kern.msgbuf": 16384, "kern.eventhandler.debug": 0, "kern.secure_kernel": 0, "kern.skywalk.ring_stat_enable": 0, "kern.skywalk.flowswitch.multistack.ipfm_frag_ttl": 60, "kern.skywalk.flowswitch.multistack.ipfm_timeout_tcall_ival": 1, "kern.skywalk.flowswitch.multistack.flow_route_expire": 600, "kern.interrupt_timer_coalescing_enabled": 1, "kern.timer_coalesce_idle_entry_hard_deadline_max": 5000000, "kern.pmtimeout": 0, "kern.wake_abs_time": 559128567311387, "kern.sleep_abs_time": 559128252751759, "kern.useractive_abs_time": 559128613624772, "kern.userinactive_abs_time": 559005632553297, "kern.sleeptime": "{ sec = 1594334962, usec = 960410 } Thu Jul 9 15:49:22 2020", "kern.waketime": "{ sec = 1594336081, usec = 345781 } Thu Jul 9 16:08:01 2020", "kern.willshutdown": 0, "kern.iokittest": 0, "kern.progressmeterenable": 0, "kern.progressmeter": 730, "kern.wakereason": "EC.KeyboardTouchpad", "kern.consoleoptions": 0, "kern.hibernatefile": "/var/vm/sleepimage", "kern.bootsignature": "13bf6a6a9d014193bb512d34ea9c4a65f819d832\n", "kern.hibernatemode": 0, "kern.hibernategraphicsready": 0, "kern.hibernatewakenotification": 0, "kern.hibernatelockscreenready": 0, "kern.hibernatehidready": 0, "kern.monotonicclock": 0, "kern.monotonicclock_usecs": "33241211260620 561529621171379", "kern.monotonicclock_rate_usecs": 30, "kern.monotoniclock_offset_usecs": 1561097271168731, "kern.pthread_mutex_default_policy": 0, "kern.hv.vmx_mitigations": 7, "kern.hv.vmx_supported_mitigations": 15, "vm.loadavg": "{ 2.57 2.41 2.24 }", "vm.swapusage": "total = 3072.00M used = 2513.50M free = 558.50M (encrypted)", "vm.cs_force_kill": 0, "vm.cs_force_hard": 0, "vm.cs_debug": 0, "vm.cs_debug_fail_on_unsigned_code": 0, "vm.cs_debug_unsigned_exec_failures": 0, "vm.cs_debug_unsigned_mmap_failures": 0, "vm.cs_all_vnodes": 0, "vm.cs_system_enforcement": 1, "vm.cs_process_enforcement": 0, "vm.cs_enforcement_panic": 0, "vm.cs_library_validation": 0, "vm.global_no_user_wire_amount": 67108864, "vm.global_user_wire_limit": 17112760320, "vm.user_wire_limit": 17112760320, "vm.vm_copy_src_not_internal": 102, "vm.vm_copy_src_not_symmetric": 0, "vm.vm_copy_src_large": 3, "vm.vm_page_external_count": 883833, "vm.vm_page_filecache_min": 971790, "vm.vm_page_xpmapped_min": 245735, "vm.compressor_input_bytes": 147996790784, "vm.compressor_compressed_bytes": 43646591254, "vm.compressor_bytes_used": 2149592392, "vm.compressor_mode": 4, "vm.compressor_is_active": 1, "vm.compressor_swapout_target_age": 0, "vm.compressor_available": 1, "vm.vm_ripe_target_age_in_secs": 172800, "vm.compressor_eval_period_in_msecs": 250, "vm.compressor_sample_min_in_msecs": 500, "vm.compressor_sample_max_in_msecs": 10000, "vm.compressor_thrashing_threshold_per_10msecs": 50, "vm.compressor_thrashing_min_per_10msecs": 20, "vm.swapfileprefix": "/private/var/vm/swapfile", "vm.compressor_timing_enabled": 0, "vm.lz4_compressions": 0, "vm.lz4_compression_failures": 0, "vm.lz4_compressed_bytes": 0, "vm.lz4_wk_compression_delta": 0, "vm.lz4_wk_compression_negative_delta": 0, "vm.lz4_decompressions": 0, "vm.lz4_decompressed_bytes": 0, "vm.uc_decompressions": 0, "vm.wk_compressions": 0, "vm.wk_catime": 0, "vm.wkh_catime": 0, "vm.wkh_compressions": 0, "vm.wks_catime": 0, "vm.wks_compressions": 0, "vm.wk_compressions_exclusive": 0, "vm.wk_sv_compressions": 0, "vm.wk_mzv_compressions": 0, "vm.wk_compression_failures": 0, "vm.wk_compressed_bytes_exclusive": 0, "vm.wk_compressed_bytes_total": 0, "vm.wks_compressed_bytes": 0, "vm.wks_compression_failures": 0, "vm.wks_sv_compressions": 0, "vm.wk_decompressions": 0, "vm.wk_datime": 0, "vm.wkh_datime": 0, "vm.wkh_decompressions": 0, "vm.wks_datime": 0, "vm.wks_decompressions": 0, "vm.wk_decompressed_bytes": 0, "vm.wk_sv_decompressions": 0, "vm.lz4_threshold": 2048, "vm.wkdm_reeval_threshold": 1536, "vm.lz4_max_failure_skips": 0, "vm.lz4_max_failure_run_length": -1, "vm.lz4_max_preselects": 0, "vm.lz4_run_preselection_threshold": -1, "vm.lz4_run_continue_bytes": 0, "vm.lz4_profitable_bytes": 0, "vm.vm_page_background_mode": 1, "vm.vm_page_background_exclude_external": 0, "vm.vm_page_background_target": 50000, "vm.vm_page_background_count": 73341, "vm.vm_page_background_internal_count": 71608, "vm.vm_page_background_external_count": 1733, "vm.vm_page_background_promoted_count": 46044711, "vm.vm_pageout_considered_bq_internal": 8133722, "vm.vm_pageout_considered_bq_external": 1783259, "vm.vm_pageout_rejected_bq_internal": 0, "vm.vm_pageout_rejected_bq_external": 0, "vm.darkwake_mode": 0, "vm.cs_blob_count": 1302, "vm.cs_blob_size": 52015776, "vm.cs_blob_count_peak": 1331, "vm.cs_blob_size_peak": 55580240, "vm.cs_blob_size_max": 11206656, "vm.vm_do_collapse_compressor": 532, "vm.vm_do_collapse_compressor_pages": 2640, "vm.vm_do_collapse_terminate": 532, "vm.vm_do_collapse_terminate_failure": 0, "vm.vm_should_cow_but_wired": 0, "vm.vm_create_upl_extra_cow": 43, "vm.vm_create_upl_extra_cow_pages": 47, "vm.vm_create_upl_lookup_failure_write": 0, "vm.vm_create_upl_lookup_failure_copy": 0, "vm.vm_debug_events": 0, "vm.shared_region_unnest_logging": 1, "vm.shared_region_trace_level": 1, "vm.shared_region_version": 3, "vm.shared_region_persistence": 0, "vm.pagesize": 4096, "vm.vm_page_free_target": 4000, "vm.memory_pressure": 0, "vm.page_free_wanted": 0, "vm.page_purgeable_count": 219713, "vm.page_purgeable_wired_count": 0, "vm.madvise_free_debug": 0, "vm.page_reusable_count": 109978, "vm.reusable_success": 12131846, "vm.reusable_failure": 882643, "vm.reusable_pages_shared": 88944, "vm.all_reusable_calls": 0, "vm.partial_reusable_calls": 12125886, "vm.reuse_success": 2718472, "vm.reuse_failure": 0, "vm.all_reuse_calls": 0, "vm.partial_reuse_calls": 3277126, "vm.can_reuse_success": 71043133, "vm.can_reuse_failure": 2211897, "vm.reusable_reclaimed": 0, "vm.reusable_nonwritable": 869674, "vm.reusable_shared": 784481, "vm.free_shared": 256, "vm.page_free_count": 4222, "vm.page_speculative_count": 2860, "vm.page_cleaned_count": 11, "vm.page_pageable_internal_count": 1936734, "vm.page_pageable_external_count": 675173, "vm.pageout_inactive_clean": 40544288, "vm.pageout_inactive_used": 14062983, "vm.pageout_inactive_dirty_internal": 34643845, "vm.pageout_inactive_dirty_external": 361733, "vm.pageout_speculative_clean": 31466415, "vm.pageout_freed_external": 2677446, "vm.pageout_freed_speculative": 31466415, "vm.pageout_freed_cleaned": 985814, "vm.prefault_nb_pages": 0, "vm.prefault_nb_bailout": 0, "vm.vm_clump_promote_threshold": 4, "vm.vm_min_kernel_address": 18446743521806254080, "vm.vm_max_kernel_address": 18446744073709547519, "vm.pages": 4026991, "vm.page_busy_absent_skipped": 0, "vm.corpse_footprint_count": 17, "vm.corpse_footprint_size_avg": 171909, "vm.corpse_footprint_size_max": 267752, "vm.corpse_footprint_full": 0, "vm.corpse_footprint_no_buf": 0, "vm.shared_region_pager_copied": 0, "vm.shared_region_pager_slid": 107137, "vm.shared_region_pager_slid_error": 0, "vm.shared_region_pager_reclaimed": 69058, "vfs.generic.maxtypenum": 29, "vfs.generic.nfs.client.initialdowndelay": 12, "vfs.generic.nfs.client.nextdowndelay": 30, "vfs.generic.nfs.client.iosize": 1048576, "vfs.generic.nfs.client.access_cache_timeout": 60, "vfs.generic.nfs.client.allow_async": 0, "vfs.generic.nfs.client.statfs_rate_limit": 10, "vfs.generic.nfs.client.nfsiod_thread_max": 16, "vfs.generic.nfs.client.nfsiod_thread_count": 0, "vfs.generic.nfs.client.lockd_mounts": 0, "vfs.generic.nfs.client.max_async_writes": 128, "vfs.generic.nfs.client.access_delete": 1, "vfs.generic.nfs.client.access_dotzfs": 1, "vfs.generic.nfs.client.access_for_getattr": 0, "vfs.generic.nfs.client.idmap_ctrl": 1, "vfs.generic.nfs.client.callback_port": 0, "vfs.generic.nfs.client.is_mobile": 1, "vfs.generic.nfs.client.squishy_flags": 11, "vfs.generic.nfs.client.debug_ctl": 0, "vfs.generic.nfs.client.readlink_nocache": 0, "vfs.generic.nfs.client.root_steals_gss_context": 0, "vfs.generic.nfs.client.default_nfs4domain": "", "vfs.generic.nfs.server.wg_delay": 1000, "vfs.generic.nfs.server.wg_delay_v3": 0, "vfs.generic.nfs.server.require_resv_port": 0, "vfs.generic.nfs.server.async": 0, "vfs.generic.nfs.server.export_hash_size": 64, "vfs.generic.nfs.server.reqcache_size": 64, "vfs.generic.nfs.server.request_queue_length": 128, "vfs.generic.nfs.server.user_stats": 1, "vfs.generic.nfs.server.gss_context_ttl": 28800, "vfs.generic.nfs.server.fsevents": 1, "vfs.generic.nfs.server.nfsd_thread_max": 0, "vfs.generic.nfs.server.nfsd_thread_count": 0, "vfs.generic.nfs.server.nfsd_sock_idle_timeout": 3600, "vfs.generic.nfs.server.nfsd_tcp_connections": 0, "vfs.generic.nfs.server.use_upcall_svc": 1, "vfs.generic.nfs.server.upcall_queue_limit": 0, "vfs.generic.nfs.server.upcall_queue_max_seen": 0, "vfs.generic.nfs.server.upcall_queue_count": 0, "vfs.generic.sync_timeout": 5, "vfs.generic.root_unmounted_cleanly": 1, "vfs.generic.hfs.kdebug.allocation": 0, "vfs.generic.hfs.jnl.trim_flush": 240, "vfs.generic.hfs.jnl.kdebug.trim": 0, "vfs.generic.hfs.allocated": 0, "vfs.generic.always_do_fullfsync": 0, "vfs.generic.apfs.fusion_rc_promotion_size_limit_mb": 4096, "vfs.generic.apfs.fusion_rc_flags": 0, "vfs.generic.apfs.fusion_w2rc_filled_ratio_threshold": 50, "vfs.generic.apfs.fusion_lc_rc_promotion_threshold_mult": 8, "vfs.generic.apfs.fusion_rc_promotion_threshold_mult": 4, "vfs.generic.apfs.fusion_wbc_buffersize": 16777216, "vfs.generic.apfs.fusion_verbosity_flags": 0, "vfs.generic.apfs.fusion_paranoia_level": 0, "vfs.generic.apfs.fusion_swapfile_backoff": 4, "vfs.generic.apfs.fusion_elevator_throttle": 100, "vfs.generic.apfs.fusion_promoter_throttle": 100, "vfs.generic.apfs.fusion_promoter_queue_limit": 1000, "vfs.generic.apfs.fusion_wbc_elevator_wmk": 0, "vfs.generic.apfs.fusion_wbc_backoff_wmk_reenable": 25, "vfs.generic.apfs.fusion_wbc_backoff_wmk_med": 95, "vfs.generic.apfs.fusion_wbc_backoff_wmk_low": 60, "vfs.generic.apfs.allocated": 180873649, "vfs.nummntops": 43, "net.local.stream.sendspace": 8192, "net.local.stream.recvspace": 8192, "net.local.stream.tracemdns": 0, "net.local.dgram.maxdgram": 2048, "net.local.dgram.recvspace": 4096, "net.local.inflight": 0, "net.inet.ip.portrange.lowfirst": 1023, "net.inet.ip.portrange.lowlast": 600, "net.inet.ip.portrange.first": 49152, "net.inet.ip.portrange.last": 65535, "net.inet.ip.portrange.hifirst": 49152, "net.inet.ip.portrange.hilast": 65535, "net.inet.ip.forwarding": 0, "net.inet.ip.redirect": 1, "net.inet.ip.ttl": 64, "net.inet.ip.rtexpire": 10, "net.inet.ip.rtminexpire": 10, "net.inet.ip.rtmaxcache": 128, "net.inet.ip.sourceroute": 0, "net.inet.ip.accept_sourceroute": 0, "net.inet.ip.gifttl": 30, "net.inet.ip.subnets_are_local": 0, "net.inet.ip.mcast.maxgrpsrc": 512, "net.inet.ip.mcast.maxsocksrc": 128, "net.inet.ip.mcast.loop": 1, "net.inet.ip.dummynet.hash_size": 64, "net.inet.ip.dummynet.curr_time": 0, "net.inet.ip.dummynet.ready_heap": 0, "net.inet.ip.dummynet.extract_heap": 0, "net.inet.ip.dummynet.searches": 0, "net.inet.ip.dummynet.search_steps": 0, "net.inet.ip.dummynet.expire": 1, "net.inet.ip.dummynet.max_chain_len": 16, "net.inet.ip.dummynet.red_lookup_depth": 256, "net.inet.ip.dummynet.red_avg_pkt_size": 512, "net.inet.ip.dummynet.red_max_pkt_size": 1500, "net.inet.ip.dummynet.debug": 0, "net.inet.ip.random_id_statistics": 0, "net.inet.ip.random_id_collisions": 0, "net.inet.ip.random_id_total": 0, "net.inet.ip.sendsourcequench": 0, "net.inet.ip.maxfragpackets": 2048, "net.inet.ip.fragpackets": 0, "net.inet.ip.maxfragsperpacket": 128, "net.inet.ip.adj_clear_hwcksum": 0, "net.inet.ip.adj_partial_sum": 1, "net.inet.ip.check_interface": 0, "net.inet.ip.rx_chaining": 1, "net.inet.ip.rx_chainsz": 6, "net.inet.ip.linklocal.in.allowbadttl": 1, "net.inet.ip.random_id": 1, "net.inet.ip.maxchainsent": 49, "net.inet.ip.select_srcif_debug": 0, "net.inet.ip.output_perf": 0, "net.inet.ip.output_perf_bins": 0, "net.inet.ip.rfc6864": 1, "net.inet.icmp.maskrepl": 0, "net.inet.icmp.icmplim": 250, "net.inet.icmp.timestamp": 0, "net.inet.icmp.drop_redirect": 1, "net.inet.icmp.log_redirect": 0, "net.inet.icmp.bmcastecho": 1, "net.inet.igmp.recvifkludge": 1, "net.inet.igmp.sendra": 1, "net.inet.igmp.sendlocal": 1, "net.inet.igmp.v1enable": 1, "net.inet.igmp.v2enable": 1, "net.inet.igmp.legacysupp": 0, "net.inet.igmp.default_version": 3, "net.inet.igmp.gsrdelay": 10, "net.inet.igmp.debug": 0, "net.inet.tcp.rfc1644": 0, "net.inet.tcp.mssdflt": 512, "net.inet.tcp.keepidle": 7200000, "net.inet.tcp.keepintvl": 75000, "net.inet.tcp.sendspace": 131072, "net.inet.tcp.recvspace": 131072, "net.inet.tcp.keepinit": 75000, "net.inet.tcp.v6mssdflt": 1024, "net.inet.tcp.backoff_maximum": 65536, "net.inet.tcp.ecn_timeout": 60, "net.inet.tcp.disable_tcp_heuristics": 0, "net.inet.tcp.clear_tfocache": 0, "net.inet.tcp.log_in_vain": 0, "net.inet.tcp.blackhole": 0, "net.inet.tcp.delayed_ack": 3, "net.inet.tcp.tcp_lq_overflow": 1, "net.inet.tcp.recvbg": 0, "net.inet.tcp.drop_synfin": 1, "net.inet.tcp.reass.overflows": 23, "net.inet.tcp.slowlink_wsize": 8192, "net.inet.tcp.maxseg_unacked": 8, "net.inet.tcp.rfc3465": 1, "net.inet.tcp.rfc3465_lim2": 1, "net.inet.tcp.recv_allowed_iaj": 5, "net.inet.tcp.doautorcvbuf": 1, "net.inet.tcp.autorcvbufmax": 2097152, "net.inet.tcp.lro": 0, "net.inet.tcp.lrodbg": 0, "net.inet.tcp.lro_startcnt": 4, "net.inet.tcp.disable_access_to_stats": 1, "net.inet.tcp.challengeack_limit": 10, "net.inet.tcp.do_rfc5961": 1, "net.inet.tcp.rcvsspktcnt": 512, "net.inet.tcp.rexmt_thresh": 3, "net.inet.tcp.path_mtu_discovery": 1, "net.inet.tcp.slowstart_flightsize": 1, "net.inet.tcp.local_slowstart_flightsize": 8, "net.inet.tcp.tso": 1, "net.inet.tcp.ecn_setup_percentage": 100, "net.inet.tcp.ecn_initiate_out": 2, "net.inet.tcp.ecn_negotiate_in": 2, "net.inet.tcp.packetchain": 50, "net.inet.tcp.socket_unlocked_on_output": 1, "net.inet.tcp.rfc3390": 1, "net.inet.tcp.min_iaj_win": 16, "net.inet.tcp.acc_iaj_react_limit": 200, "net.inet.tcp.doautosndbuf": 1, "net.inet.tcp.autosndbufinc": 8192, "net.inet.tcp.autosndbufmax": 2097152, "net.inet.tcp.ack_prioritize": 1, "net.inet.tcp.rtt_recvbg": 1, "net.inet.tcp.recv_throttle_minwin": 16384, "net.inet.tcp.enable_tlp": 1, "net.inet.tcp.sack": 1, "net.inet.tcp.sack_maxholes": 128, "net.inet.tcp.sack_globalmaxholes": 65536, "net.inet.tcp.sack_globalholes": 0, "net.inet.tcp.fastopen_backlog": 10, "net.inet.tcp.fastopen": 3, "net.inet.tcp.now_init": 97369479, "net.inet.tcp.microuptime_init": 881927, "net.inet.tcp.minmss": 216, "net.inet.tcp.do_tcpdrain": 0, "net.inet.tcp.pcbcount": 301, "net.inet.tcp.tw_pcbcount": 0, "net.inet.tcp.icmp_may_rst": 1, "net.inet.tcp.rtt_min": 100, "net.inet.tcp.rexmt_slop": 200, "net.inet.tcp.randomize_ports": 0, "net.inet.tcp.win_scale_factor": 3, "net.inet.tcp.tcbhashsize": 4096, "net.inet.tcp.keepcnt": 8, "net.inet.tcp.msl": 15000, "net.inet.tcp.max_persist_timeout": 0, "net.inet.tcp.always_keepalive": 0, "net.inet.tcp.timer_fastmode_idlemax": 10, "net.inet.tcp.broken_peer_syn_rexmit_thres": 10, "net.inet.tcp.tcp_timer_advanced": 62567, "net.inet.tcp.tcp_resched_timerlist": 395621, "net.inet.tcp.pmtud_blackhole_detection": 1, "net.inet.tcp.pmtud_blackhole_mss": 1200, "net.inet.tcp.cc_debug": 0, "net.inet.tcp.newreno_sockets": 0, "net.inet.tcp.background_sockets": 0, "net.inet.tcp.cubic_sockets": 290, "net.inet.tcp.use_newreno": 0, "net.inet.tcp.cubic_tcp_friendliness": 0, "net.inet.tcp.cubic_fast_convergence": 0, "net.inet.tcp.cubic_use_minrtt": 0, "net.inet.tcp.lro_sz": 8, "net.inet.tcp.lro_time": 10, "net.inet.tcp.bg_target_qdelay": 100, "net.inet.tcp.bg_allowed_increase": 8, "net.inet.tcp.bg_tether_shift": 1, "net.inet.tcp.bg_ss_fltsz": 2, "net.inet.udp.checksum": 1, "net.inet.udp.maxdgram": 9216, "net.inet.udp.recvspace": 786896, "net.inet.udp.log_in_vain": 0, "net.inet.udp.blackhole": 0, "net.inet.udp.pcbcount": 100, "net.inet.udp.randomize_ports": 1, "net.inet.ipsec.def_policy": 1, "net.inet.ipsec.esp_trans_deflev": 1, "net.inet.ipsec.esp_net_deflev": 1, "net.inet.ipsec.ah_trans_deflev": 1, "net.inet.ipsec.ah_net_deflev": 1, "net.inet.ipsec.ah_cleartos": 1, "net.inet.ipsec.ah_offsetmask": 0, "net.inet.ipsec.dfbit": 0, "net.inet.ipsec.ecn": 0, "net.inet.ipsec.debug": 0, "net.inet.ipsec.esp_randpad": -1, "net.inet.ipsec.bypass": 1, "net.inet.ipsec.esp_port": 0, "net.inet.log_restricted": 0, "net.inet.raw.maxdgram": 8192, "net.inet.raw.recvspace": 8192, "net.inet.raw.pcbcount": 1, "net.inet.mptcp.enable": 1, "net.inet.mptcp.mptcp_cap_retr": 2, "net.inet.mptcp.dss_csum": 0, "net.inet.mptcp.fail": 1, "net.inet.mptcp.keepalive": 840, "net.inet.mptcp.rtthist_thresh": 600, "net.inet.mptcp.userto": 1, "net.inet.mptcp.rto_thresh": 1500, "net.inet.mptcp.probeto": 1000, "net.inet.mptcp.probecnt": 5, "net.inet.mptcp.dbg_area": 31, "net.inet.mptcp.dbg_level": 1, "net.inet.mptcp.pcbcount": 0, "net.inet.mptcp.alternate_port": 0, "net.inet.mptcp.allow_aggregate": 0, "net.inet.mptcp.rto": 3, "net.inet.mptcp.nrto": 3, "net.inet.mptcp.tw": 60, "net.link.generic.system.ifcount": 26, "net.link.generic.system.if_verbose": 0, "net.link.generic.system.dlil_verbose": 0, "net.link.generic.system.sndq_maxlen": 128, "net.link.generic.system.rcvq_maxlen": 256, "net.link.generic.system.rxpoll_decay": 2, "net.link.generic.system.rxpoll_freeze_time": 1000000000, "net.link.generic.system.rxpoll_sample_time": 10000000, "net.link.generic.system.rxpoll_interval_time": 1000000, "net.link.generic.system.rxpoll_interval_pkts": 0, "net.link.generic.system.rxpoll_wakeups_lowat": 10, "net.link.generic.system.rxpoll_wakeups_hiwat": 100, "net.link.generic.system.rxpoll_max": 0, "net.link.generic.system.rxpoll": 1, "net.link.generic.system.dlil_input_threads": 12, "net.link.generic.system.dlil_input_sanity_check": 0, "net.link.generic.system.flow_advisory": 1, "net.link.generic.system.delaybased_queue": 1, "net.link.generic.system.hwcksum_in_invalidated": 0, "net.link.generic.system.hwcksum_dbg": 0, "net.link.generic.system.start_delayed": 0, "net.link.generic.system.start_delay_disabled": 0, "net.link.generic.system.hwcksum_dbg_mode": 0, "net.link.generic.system.hwcksum_dbg_partial_forced": 0, "net.link.generic.system.hwcksum_dbg_partial_forced_bytes": 0, "net.link.generic.system.hwcksum_dbg_partial_rxoff_forced": 0, "net.link.generic.system.hwcksum_dbg_partial_rxoff_adj": 0, "net.link.generic.system.hwcksum_dbg_verified": 0, "net.link.generic.system.hwcksum_dbg_bad_cksum": 0, "net.link.generic.system.hwcksum_dbg_bad_rxoff": 0, "net.link.generic.system.hwcksum_dbg_adjusted": 0, "net.link.generic.system.hwcksum_dbg_finalized_hdr": 0, "net.link.generic.system.hwcksum_dbg_finalized_data": 0, "net.link.generic.system.hwcksum_tx": 1, "net.link.generic.system.hwcksum_rx": 1, "net.link.generic.system.tx_chain_len_count": 0, "net.link.generic.system.threshold_notify": 1, "net.link.generic.system.threshold_interval": 2, "net.link.generic.system.enable_netagent": 0, "net.link.generic.system.port_used.entry_count": 0, "net.link.generic.system.port_used.entry_gen": 0, "net.link.generic.system.port_used.verbose": 0, "net.link.generic.system.port_used.wakeuuid_not_set_count": 0, "net.link.generic.system.port_used.wakeuuid_not_set_last_time": "{ sec = 0, usec = 0 } Wed Dec 31 16:00:00 1969", "net.link.generic.system.port_used.wakeuuid_not_set_last_if": "", "net.link.ether.inet.prune_intvl": 300, "net.link.ether.inet.probe_intvl": 7, "net.link.ether.inet.max_age": 1200, "net.link.ether.inet.host_down_time": 20, "net.link.ether.inet.arp_llreach_base": 120, "net.link.ether.inet.arp_unicast_lim": 3, "net.link.ether.inet.maxtries": 5, "net.link.ether.inet.maxhold": 16, "net.link.ether.inet.useloopback": 1, "net.link.ether.inet.proxyall": 0, "net.link.ether.inet.sendllconflict": 0, "net.link.ether.inet.log_arp_warnings": 0, "net.link.ether.inet.keep_announcements": 1, "net.link.ether.inet.send_conflicting_probes": 1, "net.link.ether.inet.verbose": 0, "net.link.bridge.inherit_mac": 0, "net.link.bridge.rtable_prune_period": 300, "net.link.bridge.rtable_hash_size_max": 2048, "net.link.bridge.txstart": 0, "net.link.bridge.debug": 0, "net.link.loopback.max_dequeue": 256, "net.link.loopback.sched_model": 0, "net.link.loopback.dequeue_sc": 0, "net.link.fake.txstart": 1, "net.link.fake.hwcsum": 0, "net.link.fake.nxattach": 0, "net.link.fake.bsd_mode": 1, "net.link.fake.debug": 0, "net.link.fake.wmm_mode": 0, "net.link.iptap.total_tap_count": 0, "net.link.iptap.log": 0, "net.link.pktap.total_tap_count": 0, "net.link.pktap.count_unknown_if_type": 0, "net.link.pktap.log": 0, "net.key.debug": 0, "net.key.spi_trycnt": 1000, "net.key.spi_minval": 256, "net.key.spi_maxval": 268435455, "net.key.int_random": 60, "net.key.larval_lifetime": 30, "net.key.blockacq_count": 10, "net.key.blockacq_lifetime": 20, "net.key.esp_keymin": 256, "net.key.esp_auth": 0, "net.key.ah_keymin": 128, "net.key.prefered_oldsa": 0, "net.key.natt_keepalive_interval": 20, "net.inet6.ip6.forwarding": 0, "net.inet6.ip6.redirect": 1, "net.inet6.ip6.hlim": 64, "net.inet6.ip6.maxfragpackets": 2048, "net.inet6.ip6.accept_rtadv": 1, "net.inet6.ip6.keepfaith": 0, "net.inet6.ip6.log_interval": 5, "net.inet6.ip6.hdrnestlimit": 15, "net.inet6.ip6.dad_count": 1, "net.inet6.ip6.auto_flowlabel": 1, "net.inet6.ip6.defmcasthlim": 1, "net.inet6.ip6.gifhlim": 0, "net.inet6.ip6.kame_version": "2009/apple-darwin", "net.inet6.ip6.use_deprecated": 1, "net.inet6.ip6.rr_prune": 5, "net.inet6.ip6.v6only": 0, "net.inet6.ip6.rtexpire": 10, "net.inet6.ip6.rtminexpire": 10, "net.inet6.ip6.rtmaxcache": 128, "net.inet6.ip6.use_tempaddr": 1, "net.inet6.ip6.temppltime": 86400, "net.inet6.ip6.tempvltime": 604800, "net.inet6.ip6.auto_linklocal": 1, "net.inet6.ip6.prefer_tempaddr": 1, "net.inet6.ip6.use_defaultzone": 0, "net.inet6.ip6.maxfrags": 4096, "net.inet6.ip6.mcast_pmtu": 0, "net.inet6.ip6.neighborgcthresh": 1024, "net.inet6.ip6.maxifprefixes": 16, "net.inet6.ip6.maxifdefrouters": 16, "net.inet6.ip6.maxdynroutes": 1024, "net.inet6.ip6.fragpackets": 0, "net.inet6.ip6.adj_clear_hwcksum": 0, "net.inet6.ip6.adj_partial_sum": 1, "net.inet6.ip6.input_perf": 0, "net.inet6.ip6.input_perf_bins": 0, "net.inet6.ip6.output_perf": 0, "net.inet6.ip6.output_perf_bins": 0, "net.inet6.ip6.select_srcif_debug": 0, "net.inet6.ip6.select_srcaddr_debug": 0, "net.inet6.ip6.select_src_expensive_secondary_if": 0, "net.inet6.ip6.select_src_strong_end": 1, "net.inet6.ip6.mcast.maxgrpsrc": 512, "net.inet6.ip6.mcast.maxsocksrc": 128, "net.inet6.ip6.mcast.loop": 1, "net.inet6.ip6.only_allow_rfc4193_prefixes": 0, "net.inet6.ip6.clat_debug": 0, "net.inet6.ip6.maxchainsent": 50, "net.inet6.ip6.dad_enhanced": 1, "net.inet6.ipsec6.def_policy": 1, "net.inet6.ipsec6.esp_trans_deflev": 1, "net.inet6.ipsec6.esp_net_deflev": 1, "net.inet6.ipsec6.ah_trans_deflev": 1, "net.inet6.ipsec6.ah_net_deflev": 1, "net.inet6.ipsec6.ecn": 0, "net.inet6.ipsec6.debug": 0, "net.inet6.ipsec6.esp_randpad": -1, "net.inet6.icmp6.rediraccept": 1, "net.inet6.icmp6.redirtimeout": 600, "net.inet6.icmp6.nd6_prune": 1, "net.inet6.icmp6.nd6_delay": 5, "net.inet6.icmp6.nd6_umaxtries": 3, "net.inet6.icmp6.nd6_mmaxtries": 3, "net.inet6.icmp6.nd6_useloopback": 1, "net.inet6.icmp6.nodeinfo": 3, "net.inet6.icmp6.errppslimit": 500, "net.inet6.icmp6.nd6_debug": 0, "net.inet6.icmp6.nd6_accept_6to4": 1, "net.inet6.icmp6.nd6_optimistic_dad": 63, "net.inet6.icmp6.nd6_onlink_ns_rfc4861": 0, "net.inet6.icmp6.nd6_prune_lazy": 5, "net.inet6.icmp6.rappslimit": 10, "net.inet6.icmp6.nd6_llreach_base": 30, "net.inet6.icmp6.nd6_maxsolstgt": 8, "net.inet6.icmp6.nd6_maxproxiedsol": 4, "net.inet6.icmp6.prproxy_cnt": 0, "net.inet6.mld.gsrdelay": 10, "net.inet6.mld.v1enable": 1, "net.inet6.mld.v2enable": 1, "net.inet6.mld.use_allow": 1, "net.inet6.mld.debug": 0, "net.inet6.send.opmode": 1, "net.inet6.send.opstate": 1, "net.systm.kctl.autorcvbufmax": 262144, "net.systm.kctl.autorcvbufhigh": 0, "net.systm.kctl.debug": 0, "net.ndrv_multi_max_count": 1024, "net.statistics_privcheck": 0, "net.stats.debug": 0, "net.stats.sendspace": 2048, "net.stats.recvspace": 8192, "net.utun.ring_size": 64, "net.utun.tx_fsw_ring_size": 64, "net.utun.rx_fsw_ring_size": 128, "net.ipsec.verify_interface_creation": 0, "net.ipsec.ring_size": 64, "net.ipsec.tx_fsw_ring_size": 64, "net.ipsec.rx_fsw_ring_size": 128, "net.necp.drop_all_level": 0, "net.necp.debug": 0, "net.necp.pass_loopback": 1, "net.necp.pass_keepalives": 1, "net.necp.socket_policy_count": 20, "net.necp.socket_non_app_policy_count": 20, "net.necp.ip_policy_count": 8, "net.necp.session_count": 5, "net.necp.client_fd_count": 113, "net.necp.client_count": 226, "net.necp.arena_count": 0, "net.necp.nexus_flow_count": 0, "net.necp.socket_flow_count": 28, "net.necp.if_flow_count": 0, "net.necp.observer_fd_count": 0, "net.necp.observer_message_limit": 256, "net.necp.sysctl_arena_count": 0, "net.netagent.debug": 5, "net.netagent.registered_count": 12, "net.netagent.active_count": 11, "net.cfil.log": 3, "net.cfil.debug": 1, "net.cfil.sock_attached_count": 0, "net.cfil.active_count": 0, "net.cfil.close_wait_timeout": 1000, "net.cfil.sbtrim": 1, "net.classq.verbose": 0, "net.classq.sfb.holdtime": 0, "net.classq.sfb.pboxtime": 0, "net.classq.sfb.hinterval": 0, "net.classq.sfb.increment": 82, "net.classq.sfb.decrement": 16, "net.classq.sfb.allocation": 0, "net.classq.sfb.ratelimit": 0, "net.classq.target_qdelay": 0, "net.classq.update_interval": 0, "net.pktsched.verbose": 0, "net.qos.reset_dscp_to_wifi_ac_map": 0, "net.qos.verbose": 0, "net.qos.policy.restricted": 0, "net.qos.policy.restrict_avapps": 0, "net.qos.policy.wifi_enabled": 0, "net.qos.policy.none_wifi_enabled": 0, "net.qos.policy.capable_enabled": 0, "net.alf.loglevel": 55, "net.alf.perm": 1, "net.alf.defaultaction": 1, "net.alf.mqcount": 0, "net.smb.fs.version": 303200, "net.smb.fs.loglevel": 0, "net.smb.fs.kern_deadtimer": 60, "net.smb.fs.kern_hard_deadtimer": 600, "net.smb.fs.kern_soft_deadtimer": 30, "net.smb.fs.tcpsndbuf": 8388608, "net.smb.fs.tcprcvbuf": 8388608, "net.smb.fs.maxwrite": 8388608, "net.smb.fs.maxread": 8388608, "net.smb.fs.maxsegreadsize": 8388608, "net.smb.fs.maxsegwritesize": 8388608, "debug.lowpri_throttle_max_iosize": 131072, "debug.lowpri_throttle_tier1_window_msecs": 25, "debug.lowpri_throttle_tier2_window_msecs": 100, "debug.lowpri_throttle_tier3_window_msecs": 500, "debug.lowpri_throttle_tier1_io_period_msecs": 40, "debug.lowpri_throttle_tier2_io_period_msecs": 85, "debug.lowpri_throttle_tier3_io_period_msecs": 200, "debug.lowpri_throttle_tier1_io_period_ssd_msecs": 5, "debug.lowpri_throttle_tier2_io_period_ssd_msecs": 15, "debug.lowpri_throttle_tier3_io_period_ssd_msecs": 25, "debug.lowpri_throttle_enabled": 1, "debug.bpf_bufsize": 4096, "debug.bpf_maxbufsize": 524288, "debug.bpf_maxdevices": 256, "debug.bpf_wantpktap": 0, "debug.bpf_debug": 0, "debug.sched": 2, "debug.toggle_address_reuse": 0, "debug.kextlog": 4083, "debug.swd_kext_name": "", "debug.swd_delay_type": "", "debug.swd_delay_duration": 0, "debug.iotrace": 0, "debug.noidle": 0, "debug.darkwake": 3, "debug.swd_panic": 0, "debug.swd_timeout": 0, "debug.swd_wake_timeout": 0, "debug.swd_sleep_timeout": 0, "debug.acpi_flags": 0, "debug.acpi_layer": 0, "debug.acpi_level": 0, "debug.iokit": 0, "debug.batman": 3, "debug.wdtlog": "560830m1/0560850m1/0560870m1/0560890m1/0560910m1/0560930m1/0560950m1/0560990m1/0561010m1/0561030m1/0561050m1/0561070m1/0561090m1/0561130m1/0561150m1/0561170m1/0561190m1/0561210m1/0561230m1/0561250m1/0561270m1/0561290m1/0561310m1/0561330m1/0561350m1/0561370m1/0561390m1/0561410m1/0561430m1/0561450m1/0561470m1/0561490m1/0", "debug.iosk_debug": 0, "debug.iosk_poll_enable": 1, "debug.iosk_pool_alloc_retry_interval": 2000, "debug.iosk_doorbell_limit": 0, "debug.ioppf": 0, "debug.intelfb.graphicsTracePointEnable": 0, "debug.intelfb.IGInterruptControl": 0, "debug.intelfb.fLastRequestedPState": 0, "debug.intelfb.forceSlicesGTx": 0, "debug.intelfb.forceSlicesEUx": 0, "debug.intelfb.sliceInfo": 4, "debug.intelfb.euInfo": 8, "debug.intelfb.testCase": 0, "debug.intelfb.temp0": 0, "debug.intelfb.temp1": 0, "debug.intelfb.temp2": 0, "debug.intelfb.temp3": 0, "debug.intelfb.temp4": 0, "debug.intelfb.FakeType2Dongle": 0, "debug.intelfb.forceDither": 0, "debug.intelfb.enableDECounting": 0, "debug.intelfb.enableGTHWFreqRead": 0, "debug.intel.kdctlVersion": 2004312080, "debug.intel.graphicsTracePointEnable": 0, "debug.intel.IGInterruptControl": 0, "debug.intel.perfEventEnable": 0, "debug.intel.dtraceEnable": 0, "debug.intel.oaEnable": 1, "debug.intel.gpuUsageEnables": 15, "debug.intel.gpuUsageEnablesCheck": 0, "debug.intel.flipCount": 4595589, "debug.intel.swapCount": 0, "debug.intel.ringTakeSample": 0, "debug.intel.ringOnSample": 0, "debug.intel.GlobalUsageTotal_Busy_nSec": 0, "debug.intel.GlobalUsageTotal_nSec": 0, "debug.intel.ringMainUsage": 0, "debug.intel.ringMediaUsage": 0, "debug.intel.ringBlitUsage": 0, "debug.intel.ringVEBoxUsage": 0, "debug.intel.ringMain_nSec": 0, "debug.intel.ringMedia_nSec": 0, "debug.intel.ringBlit_nSec": 0, "debug.intel.ringVEBox_nSec": 0, "debug.intel.mSecCalcGPUBusy": 1000, "debug.intel.schedPriCreditsHigh": -1, "debug.intel.schedPriCreditsNormalHigh": -1, "debug.intel.schedPriCreditsNormal": -1, "debug.intel.schedPriCreditsLow": -1, "debug.intel.schedPriPreemption": 1, "debug.intel.schedPriElevatePID": -1, "debug.intel.schedEnableThrottleOverride": 0, "debug.intel.schedThrottleLowPriByVal": -1, "debug.intel.schedThrottleNormalPriByVal": -1, "debug.intel.schedThrottleNormalHighPriByVal": -1, "debug.intel.schedThrottleHighPriByVal": -1, "debug.intel.graphicsFirmwareTracePointEnable": 0, "debug.intel.telemetryUsageReportmSec": 1000, "debug.intel.telemetryVersion": 1, "debug.intel.telemetryConfig": 4102, "debug.intel.telemetryMode": 0, "debug.intel.telemetrySampleLocations": 0, "debug.intel.telemetryStartFrame": 0, "debug.intel.telemetryStopFrame": 0, "debug.intel.telemetryNumFrame": 0, "debug.intel.telemetryTestCase": 0, "debug.intel.telemetrySpot1": 0, "debug.intel.telemetryStatPasses": 0, "debug.intel.telemetryAltConfig": 0, "debug.intel.temp0": 0, "debug.intel.temp1": 0, "debug.intel.temp2": 0, "debug.intel.temp3": 0, "debug.intel.temp4": 0, "hw.ncpu": 8, "hw.byteorder": 1234, "hw.memsize": 17179869184, "hw.activecpu": 8, "hw.physicalcpu": 4, "hw.physicalcpu_max": 4, "hw.logicalcpu": 8, "hw.logicalcpu_max": 8, "hw.cputype": 7, "hw.cpusubtype": 8, "hw.cpu64bit_capable": 1, "hw.cpufamily": 260141638, "hw.cacheconfig": "8 2 2 8 0 0 0 0 0 0", "hw.cachesize": "17179869184 32768 262144 6291456 0 0 0 0 0 0", "hw.pagesize": 4096, "hw.pagesize32": 4096, "hw.busfrequency": 400000000, "hw.busfrequency_min": 400000000, "hw.busfrequency_max": 400000000, "hw.cpufrequency": 2400000000, "hw.cpufrequency_min": 2400000000, "hw.cpufrequency_max": 2400000000, "hw.cachelinesize": 64, "hw.l1icachesize": 32768, "hw.l1dcachesize": 32768, "hw.l2cachesize": 262144, "hw.l3cachesize": 6291456, "hw.tbfrequency": 1000000000, "hw.packages": 1, "hw.optional.floatingpoint": 1, "hw.optional.mmx": 1, "hw.optional.sse": 1, "hw.optional.sse2": 1, "hw.optional.sse3": 1, "hw.optional.supplementalsse3": 1, "hw.optional.sse4_1": 1, "hw.optional.sse4_2": 1, "hw.optional.x86_64": 1, "hw.optional.aes": 1, "hw.optional.avx1_0": 1, "hw.optional.rdrand": 1, "hw.optional.f16c": 1, "hw.optional.enfstrg": 1, "hw.optional.fma": 1, "hw.optional.avx2_0": 1, "hw.optional.bmi1": 1, "hw.optional.bmi2": 1, "hw.optional.rtm": 0, "hw.optional.hle": 0, "hw.optional.adx": 1, "hw.optional.mpx": 0, "hw.optional.sgx": 0, "hw.optional.avx512f": 0, "hw.optional.avx512cd": 0, "hw.optional.avx512dq": 0, "hw.optional.avx512bw": 0, "hw.optional.avx512vl": 0, "hw.optional.avx512ifma": 0, "hw.optional.avx512vbmi": 0, "hw.targettype": "Mac", "hw.cputhreadtype": 1, "machdep.user_idle_level": 0, "machdep.cpu.max_basic": 22, "machdep.cpu.max_ext": 2147483656, "machdep.cpu.vendor": "GenuineIntel", "machdep.cpu.brand_string": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "machdep.cpu.family": 6, "machdep.cpu.model": 142, "machdep.cpu.extmodel": 8, "machdep.cpu.extfamily": 0, "machdep.cpu.stepping": 10, "machdep.cpu.feature_bits": 9221959987971750911, "machdep.cpu.leaf7_feature_bits": "43804591 0", "machdep.cpu.leaf7_feature_bits_edx": 2617254912, "machdep.cpu.extfeature_bits": 1241984796928, "machdep.cpu.signature": 526058, "machdep.cpu.brand": 0, "machdep.cpu.features": "FPU VME DE PSE TSC MSR PAE MCE CX8 APIC SEP MTRR PGE MCA CMOV PAT PSE36 CLFSH DS ACPI MMX FXSR SSE SSE2 SS HTT TM PBE SSE3 PCLMULQDQ DTES64 MON DSCPL VMX EST TM2 SSSE3 FMA CX16 TPR PDCM SSE4.1 SSE4.2 x2APIC MOVBE POPCNT AES PCID XSAVE OSXSAVE SEGLIM64 TSCTMR AVX1.0 RDRAND F16C", "machdep.cpu.leaf7_features": "RDWRFSGS TSC_THREAD_OFFSET SGX BMI1 AVX2 SMEP BMI2 ERMS INVPCID FPU_CSDS MPX RDSEED ADX SMAP CLFSOPT IPT MDCLEAR TSXFA IBRS STIBP L1DF SSBD", "machdep.cpu.extfeatures": "SYSCALL XD 1GBPAGE EM64T LAHF LZCNT PREFETCHW RDTSCP TSCI", "machdep.cpu.logical_per_package": 16, "machdep.cpu.cores_per_package": 8, "machdep.cpu.microcode_version": 202, "machdep.cpu.processor_flag": 6, "machdep.cpu.mwait.linesize_min": 64, "machdep.cpu.mwait.linesize_max": 64, "machdep.cpu.mwait.extensions": 3, "machdep.cpu.mwait.sub_Cstates": 286531872, "machdep.cpu.thermal.sensor": 1, "machdep.cpu.thermal.dynamic_acceleration": 1, "machdep.cpu.thermal.invariant_APIC_timer": 1, "machdep.cpu.thermal.thresholds": 2, "machdep.cpu.thermal.ACNT_MCNT": 1, "machdep.cpu.thermal.core_power_limits": 1, "machdep.cpu.thermal.fine_grain_clock_mod": 1, "machdep.cpu.thermal.package_thermal_intr": 1, "machdep.cpu.thermal.hardware_feedback": 0, "machdep.cpu.thermal.energy_policy": 1, "machdep.cpu.xsave.extended_state": "31 832 1088 0", "machdep.cpu.xsave.extended_state1": "15 832 256 0", "machdep.cpu.arch_perf.version": 4, "machdep.cpu.arch_perf.number": 4, "machdep.cpu.arch_perf.width": 48, "machdep.cpu.arch_perf.events_number": 7, "machdep.cpu.arch_perf.events": 0, "machdep.cpu.arch_perf.fixed_number": 3, "machdep.cpu.arch_perf.fixed_width": 48, "machdep.cpu.cache.linesize": 64, "machdep.cpu.cache.L2_associativity": 4, "machdep.cpu.cache.size": 256, "machdep.cpu.tlb.inst.large": 8, "machdep.cpu.tlb.data.small": 64, "machdep.cpu.tlb.data.small_level1": 64, "machdep.cpu.address_bits.physical": 39, "machdep.cpu.address_bits.virtual": 48, "machdep.cpu.core_count": 4, "machdep.cpu.thread_count": 8, "machdep.cpu.tsc_ccc.numerator": 200, "machdep.cpu.tsc_ccc.denominator": 2, "machdep.vectors.timer": 221, "machdep.vectors.IPI": 222, "machdep.pmap.hashwalks": 543508026, "machdep.pmap.hashcnts": 591460691, "machdep.pmap.hashmax": 24, "machdep.pmap.kernel_text_ps": 2097152, "machdep.pmap.kern_pv_reserve": 16000, "machdep.memmap.Conventional": 17016455168, "machdep.memmap.RuntimeServices": 1511424, "machdep.memmap.ACPIReclaim": 393216, "machdep.memmap.ACPINVS": 798720, "machdep.memmap.PalCode": 0, "machdep.memmap.Reserved": 127156224, "machdep.memmap.Unusable": 0, "machdep.memmap.Other": 0, "machdep.tsc.frequency": 2400000000, "machdep.tsc.deep_idle_rebase": 1, "machdep.tsc.at_boot": 39805168, "machdep.tsc.rebase_abs_time": 19057695233, "machdep.tsc.nanotime.tsc_base": 2862041899645104, "machdep.tsc.nanotime.ns_base": 559128543297208, "machdep.tsc.nanotime.scale": 1789569706, "machdep.tsc.nanotime.shift": 0, "machdep.tsc.nanotime.generation": 928, "machdep.misc.fast_uexc_support": 1, "machdep.misc.panic_restart_timeout": 1266874889, "machdep.misc.interrupt_latency_max": "0x1 0xde 0xa312b3", "machdep.misc.timer_queue_trace": "", "machdep.misc.nmis": 0, "machdep.xcpm.mode": 1, "machdep.xcpm.pcps_mode": 0, "machdep.xcpm.hard_plimit_max_100mhz_ratio": 41, "machdep.xcpm.hard_plimit_min_100mhz_ratio": 4, "machdep.xcpm.soft_plimit_max_100mhz_ratio": 41, "machdep.xcpm.soft_plimit_min_100mhz_ratio": 4, "machdep.xcpm.tuib_plimit_max_100mhz_ratio": 41, "machdep.xcpm.tuib_plimit_min_100mhz_ratio": 4, "machdep.xcpm.tuib_enabled": 0, "machdep.xcpm.power_source": 0, "machdep.xcpm.bootplim": 0, "machdep.xcpm.bootpst": 41, "machdep.xcpm.tuib_ns": 0, "machdep.xcpm.vectors_loaded_count": 1, "machdep.xcpm.ratio_change_ratelimit_ns": 3000000, "machdep.xcpm.ratio_changes_total": 92560423, "machdep.xcpm.maxbusdelay": 4294967295, "machdep.xcpm.maxintdelay": 0, "machdep.xcpm.mid_applications": 0, "machdep.xcpm.mid_relaxations": 0, "machdep.xcpm.mid_mode": 1, "machdep.xcpm.mid_cst_control_limit": 0, "machdep.xcpm.mid_mode_active": 0, "machdep.xcpm.mbd_mode": 1, "machdep.xcpm.mbd_applications": 52, "machdep.xcpm.mbd_relaxations": 977, "machdep.xcpm.forced_idle_ratio": 100, "machdep.xcpm.forced_idle_period": 30000000, "machdep.xcpm.deep_idle_log": 0, "machdep.xcpm.qos_txfr": 1, "machdep.xcpm.deep_idle_count": 925, "machdep.xcpm.deep_idle_last_stats": "0:18:38 CC7:99% C2:0% C3:0% C6:0% C7:0% C8:0% C9:0% C10:99%", "machdep.xcpm.deep_idle_total_stats": "260:22:39 CC7:99% C2:0% C3:0% C6:0% C7:0% C8:0% C9:0% C10:99%", "machdep.xcpm.cpu_thermal_level": 0, "machdep.xcpm.gpu_thermal_level": 0, "machdep.xcpm.io_thermal_level": 0, "machdep.xcpm.io_control_engages": 0, "machdep.xcpm.io_control_disengages": 0, "machdep.xcpm.io_filtered_reads": 0, "machdep.xcpm.io_cst_control_enabled": 1, "machdep.xcpm.ring_boost_enabled": 0, "machdep.xcpm.io_epp_boost_enabled": 1, "machdep.xcpm.epp_override": 0, "machdep.xcpm.perf_hints": 0, "machdep.eager_timer_evaluations": 428110, "machdep.eager_timer_evaluation_max": 5269244, "machdep.x86_fp_simd_isr_uses": 0, "machdep.uncore_sample_state": 0, "machdep.uncore_sample_mask": 1, "machdep.uncore_sample_ctl": 0, "machdep.uncore_pcie_mmio_base": -536870912, "audit.session.superuser_set_sflags_mask": 24576, "audit.session.superuser_clear_sflags_mask": 24576, "audit.session.member_set_sflags_mask": 0, "audit.session.member_clear_sflags_mask": 16384, "ktrace.state": 0, "ktrace.owning_pid": 0, "ktrace.background_pid": 13317, "ktrace.configured_by": "tailspind", "kperf.limits.timer_min_period_ns": 20000, "kperf.limits.timer_min_bg_period_ns": 1000000, "kperf.limits.timer_min_pet_period_ns": 2000000, "kperf.limits.timer_min_bg_pet_period_ns": 5000000, "kperf.debug_level": 0, "security.mac.platform_exec_logging": 0, "security.mac.max_slots": 7, "security.mac.labelvnodes": 0, "security.mac.device_enforce": 1, "security.mac.pipe_enforce": 1, "security.mac.posixsem_enforce": 1, "security.mac.posixshm_enforce": 1, "security.mac.proc_enforce": 1, "security.mac.socket_enforce": 1, "security.mac.system_enforce": 1, "security.mac.sysvmsg_enforce": 1, "security.mac.sysvsem_enforce": 1, "security.mac.sysvshm_enforce": 1, "security.mac.vm_enforce": 1, "security.mac.vnode_enforce": 1, "security.mac.amfi.force_policy": 0, "security.mac.amfi.verbose_logging": 0, "security.mac.amfi.hsp_enable": 1, "security.mac.sandbox.audio_active": 0, "security.mac.sandbox.sentinel": ".sb-d3da7526", "security.mac.qtn.sandbox_enforce": 1, "security.mac.qtn.user_approved_exec": 1, "security.mac.asp.cache_entry_count": 2914, "security.mac.asp.cache_allocation_count": 5564, "security.mac.asp.cache_release_count": 2650, "security.mac.asp.exec_hook_time": 4482240, "security.mac.asp.exec_hook_count": 1207221, "security.mac.asp.library_hook_time": 4806866, "security.mac.asp.library_hook_count": 3796287, "com_vmware_fusion_vmnet.apiVersion": 393216, "com_vmware_fusion_vmnet.buildNumber": 14328561, "com_vmware_fusion_vmmon.apiVersion": 23658496, "com_vmware_fusion_vmmon.buildNumber": 14328561, "com_vmware_fusion_vmmon.driverInUse": 1, "com_vmware_fusion_vmioplug.apiVersion": 1179906, "com_vmware_fusion_vmioplug.buildNumber": 14328561} jc-1.17.3/tests/fixtures/osx-10.14.6/sysctl-a.out000066400000000000000000001230111415226333200211170ustar00rootroot00000000000000user.cs_path: /usr/bin:/bin:/usr/sbin:/sbin user.bc_base_max: 99 user.bc_dim_max: 2048 user.bc_scale_max: 99 user.bc_string_max: 1000 user.coll_weights_max: 2 user.expr_nest_max: 32 user.line_max: 2048 user.re_dup_max: 255 user.posix2_version: 200112 user.posix2_c_bind: 0 user.posix2_c_dev: 0 user.posix2_char_term: 0 user.posix2_fort_dev: 0 user.posix2_fort_run: 0 user.posix2_localedef: 0 user.posix2_sw_dev: 0 user.posix2_upe: 0 user.stream_max: 20 user.tzname_max: 255 kern.ostype: Darwin kern.osrelease: 18.7.0 kern.osrevision: 199506 kern.version: Darwin Kernel Version 18.7.0: Mon Apr 27 20:09:39 PDT 2020; root:xnu-4903.278.35~1/RELEASE_X86_64 kern.maxvnodes: 263168 kern.maxproc: 2128 kern.maxfiles: 49152 kern.argmax: 262144 kern.securelevel: 0 kern.hostname: kbrazil-mac kern.hostid: 0 kern.clockrate: { hz = 100, tick = 10000, tickadj = 0, profhz = 100, stathz = 100 } kern.posix1version: 200112 kern.ngroups: 16 kern.job_control: 1 kern.saved_ids: 1 kern.boottime: { sec = 1592836479, usec = 918881 } Mon Jun 22 07:34:39 2020 kern.nisdomainname: kern.maxfilesperproc: 24576 kern.maxprocperuid: 1418 kern.ipc.maxsockbuf: 8388608 kern.ipc.sockbuf_waste_factor: 8 kern.ipc.somaxconn: 128 kern.ipc.nmbclusters: 65536 kern.ipc.soqlimitcompat: 1 kern.ipc.mleak_sample_factor: 500 kern.ipc.mb_normalized: 0 kern.ipc.mb_watchdog: 0 kern.ipc.mb_drain_force: 0 kern.ipc.mb_drain_maxint: 0 kern.ipc.socket_debug: 0 kern.ipc.sodefunct_calls: 0 kern.ipc.sosendminchain: 16384 kern.ipc.sorecvmincopy: 16384 kern.ipc.sosendjcl: 1 kern.ipc.sosendjcl_ignore_capab: 0 kern.ipc.sosendbigcl_ignore_capab: 0 kern.ipc.sodefunctlog: 0 kern.ipc.sothrottlelog: 0 kern.ipc.sorestrictrecv: 1 kern.ipc.sorestrictsend: 1 kern.ipc.soreserveheadroom: 1 kern.ipc.maxextbkidleperproc: 1 kern.ipc.extbkidletime: 600 kern.ipc.extbkidlercvhiwat: 131072 kern.ipc.sotcdb: 0 kern.ipc.throttle_best_effort: 0 kern.ipc.njcl: 21840 kern.ipc.njclbytes: 16384 kern.ipc.soqlencomp: 0 kern.ipc.sbmb_cnt: 118 kern.ipc.sbmb_cnt_peak: 13481 kern.ipc.sbmb_cnt_floor: 10 kern.ipc.sbmb_limreached: 0 kern.ipc.io_policy.log: 0 kern.ipc.io_policy.uuid: 1 kern.ipc.maxsendmsgx: 100 kern.ipc.maxrecvmsgx: 100 kern.usrstack: -439726080 kern.netboot: 0 kern.sysv.shmmax: 4194304 kern.sysv.shmmin: 1 kern.sysv.shmmni: 32 kern.sysv.shmseg: 8 kern.sysv.shmall: 1024 kern.sysv.semmni: 87381 kern.sysv.semmns: 87381 kern.sysv.semmnu: 87381 kern.sysv.semmsl: 87381 kern.sysv.semume: 10 kern.aiomax: 90 kern.aioprocmax: 16 kern.aiothreads: 4 kern.corefile: /cores/core.%P kern.coredump: 1 kern.sugid_coredump: 0 kern.delayterm: 0 kern.shreg_private: 0 kern.posix.sem.max: 10000 kern.usrstack64: 140732753661952 kern.tfp.policy: 2 kern.procname: sysctl kern.speculative_reads_disabled: 0 kern.osversion: 18G5033 kern.safeboot: 0 kern.rage_vnode: 0 kern.tty.ptmx_max: 511 kern.threadname: kern.dtrace.err_verbose: 0 kern.dtrace.buffer_memory_maxsize: 5726623061 kern.dtrace.buffer_memory_inuse: 0 kern.dtrace.difo_maxsize: 262144 kern.dtrace.dof_maxsize: 524288 kern.dtrace.global_maxsize: 16384 kern.dtrace.provide_private_probes: 0 kern.dtrace.dof_mode: 1 kern.dtrace.ignore_fbt_blacklist: 0 kern.nbuf: 16384 kern.maxnbuf: 16384 kern.monotonic.supported: 1 kern.monotonic.pmis: 5963 0 kern.monotonic.retrograde_updates: 5971 0 kern.monotonic.task_thread_counting: 1 kern.flush_cache_on_write: 0 kern.wq_stalled_window_usecs: 200 kern.wq_reduce_pool_window_usecs: 5000000 kern.wq_max_timer_interval_usecs: 50000 kern.wq_max_threads: 512 kern.wq_max_constrained_threads: 64 kern.kdbg.experimental_continuous: 0 kern.kdbg.debug: 0 kern.kdbg.oldest_time: 0 kern.ds_supgroups_supported: 1 kern.sugid_scripts: 0 kern.zleak.active: 0 kern.zleak.max_zonemap_size: 6442450944 kern.zleak.global_threshold: 3221225472 kern.zleak.zone_threshold: 402653184 kern.uuid: 2C6A35B5-EEFD-317A-9A3D-901B9CC558CF kern.osproductversion: 10.14.6 kern.bootargs: kern.kernelcacheuuid: 4E40D492-B149-0774-E90A-50619C8E2520 kern.num_files: 6486 kern.num_vnodes: 263168 kern.num_tasks: 4096 kern.num_threads: 20480 kern.num_taskthreads: 4096 kern.num_recycledvnodes: 3273026 kern.namecache_disabled: 0 kern.sched_enable_smt: 1 kern.sched_allow_NO_SMT_threads: 1 kern.preheat_max_bytes: 1048576 kern.preheat_min_bytes: 32768 kern.speculative_prefetch_max: 201326592 kern.speculative_prefetch_max_iosize: 524288 kern.vm_page_free_target: 4000 kern.vm_page_free_min: 3500 kern.vm_page_free_reserved: 776 kern.vm_page_speculative_percentage: 5 kern.vm_page_speculative_q_age_ms: 500 kern.vm_max_delayed_work_limit: 32 kern.vm_max_batch: 256 kern.bootsessionuuid: B1A56C72-9A70-42C8-BBD3-0A72CF733A7C kern.timer.coalescing_enabled: 1 kern.timer.deadline_tracking_bin_1: 2000000 kern.timer.deadline_tracking_bin_2: 5000000 kern.timer.longterm.threshold: 1000 kern.timer.longterm.scan_limit: 100000 kern.timer.longterm.scan_interval: 100000 kern.timer.longterm.qlen: 260 kern.timer.longterm.scan_pauses: 1162395 kern.singleuser: 0 kern.minimalboot: 0 kern.affinity_sets_enabled: 1 kern.affinity_sets_mapping: 1 kern.slide: 1 kern.ipc_voucher_trace_contents: 0 kern.stack_size: 16384 kern.stack_depth_max: 13488 kern.kern_feature_overrides: 0 kern.ipc_portbt: 0 kern.sched: dualq kern.timer_coalesce_bg_scale: -5 kern.timer_resort_threshold_ns: 50000000 kern.timer_coalesce_bg_ns_max: 100000000 kern.timer_coalesce_kt_scale: 3 kern.timer_coalesce_kt_ns_max: 1000000 kern.timer_coalesce_fp_scale: 3 kern.timer_coalesce_fp_ns_max: 1000000 kern.timer_coalesce_ts_scale: 3 kern.timer_coalesce_ts_ns_max: 1000000 kern.timer_coalesce_tier0_scale: 3 kern.timer_coalesce_tier0_ns_max: 1000000 kern.timer_coalesce_tier1_scale: 2 kern.timer_coalesce_tier1_ns_max: 5000000 kern.timer_coalesce_tier2_scale: 1 kern.timer_coalesce_tier2_ns_max: 20000000 kern.timer_coalesce_tier3_scale: -2 kern.timer_coalesce_tier3_ns_max: 75000000 kern.timer_coalesce_tier4_scale: -15 kern.timer_coalesce_tier4_ns_max: 10000000000 kern.timer_coalesce_tier5_scale: -15 kern.timer_coalesce_tier5_ns_max: 10000000000 kern.hv_support: 1 kern.thread_groups_supported: 0 kern.memorystatus_sysprocs_idle_delay_time: 0 kern.memorystatus_apps_idle_delay_time: 0 kern.jetsam_aging_policy: 1 kern.memorystatus_purge_on_warning: 2 kern.memorystatus_purge_on_urgent: 5 kern.memorystatus_purge_on_critical: 8 kern.bridge.bootsessionuuid: 732B39EE-D3CE-499C-90FB-7F39DEB2A723 kern.msgbuf: 16384 kern.eventhandler.debug: 0 kern.secure_kernel: 0 kern.skywalk.ring_stat_enable: 0 kern.skywalk.flowswitch.multistack.ipfm_frag_ttl: 60 kern.skywalk.flowswitch.multistack.ipfm_timeout_tcall_ival: 1 kern.skywalk.flowswitch.multistack.flow_route_expire: 600 kern.interrupt_timer_coalescing_enabled: 1 kern.timer_coalesce_idle_entry_hard_deadline_max: 5000000 kern.pmtimeout: 0 kern.wake_abs_time: 559128567311387 kern.sleep_abs_time: 559128252751759 kern.useractive_abs_time: 559128613624772 kern.userinactive_abs_time: 559005632553297 kern.sleeptime: { sec = 1594334962, usec = 960410 } Thu Jul 9 15:49:22 2020 kern.waketime: { sec = 1594336081, usec = 345781 } Thu Jul 9 16:08:01 2020 kern.willshutdown: 0 kern.iokittest: 0 kern.progressmeterenable: 0 kern.progressmeter: 730 kern.wakereason: EC.KeyboardTouchpad kern.consoleoptions: 0 kern.hibernatefile: /var/vm/sleepimage kern.bootsignature: 13bf6a6a9d014193bb512d34ea9c4a65f819d832 kern.hibernatemode: 0 kern.hibernategraphicsready: 0 kern.hibernatewakenotification: 0 kern.hibernatelockscreenready: 0 kern.hibernatehidready: 0 kern.monotonicclock: 0 kern.monotonicclock_usecs: 33241211260620 561529621171379 kern.monotonicclock_rate_usecs: 30 kern.monotoniclock_offset_usecs: 1561097271168731 kern.pthread_mutex_default_policy: 0 kern.hv.vmx_mitigations: 7 kern.hv.vmx_supported_mitigations: 15 vm.loadavg: { 2.57 2.41 2.24 } vm.swapusage: total = 3072.00M used = 2513.50M free = 558.50M (encrypted) vm.cs_force_kill: 0 vm.cs_force_hard: 0 vm.cs_debug: 0 vm.cs_debug_fail_on_unsigned_code: 0 vm.cs_debug_unsigned_exec_failures: 0 vm.cs_debug_unsigned_mmap_failures: 0 vm.cs_all_vnodes: 0 vm.cs_system_enforcement: 1 vm.cs_process_enforcement: 0 vm.cs_enforcement_panic: 0 vm.cs_library_validation: 0 vm.global_no_user_wire_amount: 67108864 vm.global_user_wire_limit: 17112760320 vm.user_wire_limit: 17112760320 vm.vm_copy_src_not_internal: 102 vm.vm_copy_src_not_symmetric: 0 vm.vm_copy_src_large: 3 vm.vm_page_external_count: 883833 vm.vm_page_filecache_min: 971790 vm.vm_page_xpmapped_min: 245735 vm.compressor_input_bytes: 147996790784 vm.compressor_compressed_bytes: 43646591254 vm.compressor_bytes_used: 2149592392 vm.compressor_mode: 4 vm.compressor_is_active: 1 vm.compressor_swapout_target_age: 0 vm.compressor_available: 1 vm.vm_ripe_target_age_in_secs: 172800 vm.compressor_eval_period_in_msecs: 250 vm.compressor_sample_min_in_msecs: 500 vm.compressor_sample_max_in_msecs: 10000 vm.compressor_thrashing_threshold_per_10msecs: 50 vm.compressor_thrashing_min_per_10msecs: 20 vm.swapfileprefix: /private/var/vm/swapfile vm.compressor_timing_enabled: 0 vm.lz4_compressions: 0 vm.lz4_compression_failures: 0 vm.lz4_compressed_bytes: 0 vm.lz4_wk_compression_delta: 0 vm.lz4_wk_compression_negative_delta: 0 vm.lz4_decompressions: 0 vm.lz4_decompressed_bytes: 0 vm.uc_decompressions: 0 vm.wk_compressions: 0 vm.wk_catime: 0 vm.wkh_catime: 0 vm.wkh_compressions: 0 vm.wks_catime: 0 vm.wks_compressions: 0 vm.wk_compressions_exclusive: 0 vm.wk_sv_compressions: 0 vm.wk_mzv_compressions: 0 vm.wk_compression_failures: 0 vm.wk_compressed_bytes_exclusive: 0 vm.wk_compressed_bytes_total: 0 vm.wks_compressed_bytes: 0 vm.wks_compression_failures: 0 vm.wks_sv_compressions: 0 vm.wk_decompressions: 0 vm.wk_datime: 0 vm.wkh_datime: 0 vm.wkh_decompressions: 0 vm.wks_datime: 0 vm.wks_decompressions: 0 vm.wk_decompressed_bytes: 0 vm.wk_sv_decompressions: 0 vm.lz4_threshold: 2048 vm.wkdm_reeval_threshold: 1536 vm.lz4_max_failure_skips: 0 vm.lz4_max_failure_run_length: -1 vm.lz4_max_preselects: 0 vm.lz4_run_preselection_threshold: -1 vm.lz4_run_continue_bytes: 0 vm.lz4_profitable_bytes: 0 vm.vm_page_background_mode: 1 vm.vm_page_background_exclude_external: 0 vm.vm_page_background_target: 50000 vm.vm_page_background_count: 73341 vm.vm_page_background_internal_count: 71608 vm.vm_page_background_external_count: 1733 vm.vm_page_background_promoted_count: 46044711 vm.vm_pageout_considered_bq_internal: 8133722 vm.vm_pageout_considered_bq_external: 1783259 vm.vm_pageout_rejected_bq_internal: 0 vm.vm_pageout_rejected_bq_external: 0 vm.darkwake_mode: 0 vm.cs_blob_count: 1302 vm.cs_blob_size: 52015776 vm.cs_blob_count_peak: 1331 vm.cs_blob_size_peak: 55580240 vm.cs_blob_size_max: 11206656 vm.vm_do_collapse_compressor: 532 vm.vm_do_collapse_compressor_pages: 2640 vm.vm_do_collapse_terminate: 532 vm.vm_do_collapse_terminate_failure: 0 vm.vm_should_cow_but_wired: 0 vm.vm_create_upl_extra_cow: 43 vm.vm_create_upl_extra_cow_pages: 47 vm.vm_create_upl_lookup_failure_write: 0 vm.vm_create_upl_lookup_failure_copy: 0 vm.vm_debug_events: 0 vm.shared_region_unnest_logging: 1 vm.shared_region_trace_level: 1 vm.shared_region_version: 3 vm.shared_region_persistence: 0 vm.pagesize: 4096 vm.vm_page_free_target: 4000 vm.memory_pressure: 0 vm.page_free_wanted: 0 vm.page_purgeable_count: 219713 vm.page_purgeable_wired_count: 0 vm.madvise_free_debug: 0 vm.page_reusable_count: 109978 vm.reusable_success: 12131846 vm.reusable_failure: 882643 vm.reusable_pages_shared: 88944 vm.all_reusable_calls: 0 vm.partial_reusable_calls: 12125886 vm.reuse_success: 2718472 vm.reuse_failure: 0 vm.all_reuse_calls: 0 vm.partial_reuse_calls: 3277126 vm.can_reuse_success: 71043133 vm.can_reuse_failure: 2211897 vm.reusable_reclaimed: 0 vm.reusable_nonwritable: 869674 vm.reusable_shared: 784481 vm.free_shared: 256 vm.page_free_count: 4222 vm.page_speculative_count: 2860 vm.page_cleaned_count: 11 vm.page_pageable_internal_count: 1936734 vm.page_pageable_external_count: 675173 vm.pageout_inactive_clean: 40544288 vm.pageout_inactive_used: 14062983 vm.pageout_inactive_dirty_internal: 34643845 vm.pageout_inactive_dirty_external: 361733 vm.pageout_speculative_clean: 31466415 vm.pageout_freed_external: 2677446 vm.pageout_freed_speculative: 31466415 vm.pageout_freed_cleaned: 985814 vm.prefault_nb_pages: 0 vm.prefault_nb_bailout: 0 vm.vm_clump_promote_threshold: 4 vm.vm_min_kernel_address: 18446743521806254080 vm.vm_max_kernel_address: 18446744073709547519 vm.pages: 4026991 vm.page_busy_absent_skipped: 0 vm.corpse_footprint_count: 17 vm.corpse_footprint_size_avg: 171909 vm.corpse_footprint_size_max: 267752 vm.corpse_footprint_full: 0 vm.corpse_footprint_no_buf: 0 vm.shared_region_pager_copied: 0 vm.shared_region_pager_slid: 107137 vm.shared_region_pager_slid_error: 0 vm.shared_region_pager_reclaimed: 69058 vfs.generic.maxtypenum: 29 vfs.generic.nfs.client.initialdowndelay: 12 vfs.generic.nfs.client.nextdowndelay: 30 vfs.generic.nfs.client.iosize: 1048576 vfs.generic.nfs.client.access_cache_timeout: 60 vfs.generic.nfs.client.allow_async: 0 vfs.generic.nfs.client.statfs_rate_limit: 10 vfs.generic.nfs.client.nfsiod_thread_max: 16 vfs.generic.nfs.client.nfsiod_thread_count: 0 vfs.generic.nfs.client.lockd_mounts: 0 vfs.generic.nfs.client.max_async_writes: 128 vfs.generic.nfs.client.access_delete: 1 vfs.generic.nfs.client.access_dotzfs: 1 vfs.generic.nfs.client.access_for_getattr: 0 vfs.generic.nfs.client.idmap_ctrl: 1 vfs.generic.nfs.client.callback_port: 0 vfs.generic.nfs.client.is_mobile: 1 vfs.generic.nfs.client.squishy_flags: 11 vfs.generic.nfs.client.debug_ctl: 0 vfs.generic.nfs.client.readlink_nocache: 0 vfs.generic.nfs.client.root_steals_gss_context: 0 vfs.generic.nfs.client.default_nfs4domain: vfs.generic.nfs.server.wg_delay: 1000 vfs.generic.nfs.server.wg_delay_v3: 0 vfs.generic.nfs.server.require_resv_port: 0 vfs.generic.nfs.server.async: 0 vfs.generic.nfs.server.export_hash_size: 64 vfs.generic.nfs.server.reqcache_size: 64 vfs.generic.nfs.server.request_queue_length: 128 vfs.generic.nfs.server.user_stats: 1 vfs.generic.nfs.server.gss_context_ttl: 28800 vfs.generic.nfs.server.fsevents: 1 vfs.generic.nfs.server.nfsd_thread_max: 0 vfs.generic.nfs.server.nfsd_thread_count: 0 vfs.generic.nfs.server.nfsd_sock_idle_timeout: 3600 vfs.generic.nfs.server.nfsd_tcp_connections: 0 vfs.generic.nfs.server.use_upcall_svc: 1 vfs.generic.nfs.server.upcall_queue_limit: 0 vfs.generic.nfs.server.upcall_queue_max_seen: 0 vfs.generic.nfs.server.upcall_queue_count: 0 vfs.generic.sync_timeout: 5 vfs.generic.root_unmounted_cleanly: 1 vfs.generic.hfs.kdebug.allocation: 0 vfs.generic.hfs.jnl.trim_flush: 240 vfs.generic.hfs.jnl.kdebug.trim: 0 vfs.generic.hfs.allocated: 0 vfs.generic.always_do_fullfsync: 0 vfs.generic.apfs.fusion_rc_promotion_size_limit_mb: 4096 vfs.generic.apfs.fusion_rc_flags: 0 vfs.generic.apfs.fusion_w2rc_filled_ratio_threshold: 50 vfs.generic.apfs.fusion_lc_rc_promotion_threshold_mult: 8 vfs.generic.apfs.fusion_rc_promotion_threshold_mult: 4 vfs.generic.apfs.fusion_wbc_buffersize: 16777216 vfs.generic.apfs.fusion_verbosity_flags: 0 vfs.generic.apfs.fusion_paranoia_level: 0 vfs.generic.apfs.fusion_swapfile_backoff: 4 vfs.generic.apfs.fusion_elevator_throttle: 100 vfs.generic.apfs.fusion_promoter_throttle: 100 vfs.generic.apfs.fusion_promoter_queue_limit: 1000 vfs.generic.apfs.fusion_wbc_elevator_wmk: 0 vfs.generic.apfs.fusion_wbc_backoff_wmk_reenable: 25 vfs.generic.apfs.fusion_wbc_backoff_wmk_med: 95 vfs.generic.apfs.fusion_wbc_backoff_wmk_low: 60 vfs.generic.apfs.allocated: 180873649 vfs.nummntops: 43 net.local.stream.sendspace: 8192 net.local.stream.recvspace: 8192 net.local.stream.tracemdns: 0 net.local.dgram.maxdgram: 2048 net.local.dgram.recvspace: 4096 net.local.inflight: 0 net.inet.ip.portrange.lowfirst: 1023 net.inet.ip.portrange.lowlast: 600 net.inet.ip.portrange.first: 49152 net.inet.ip.portrange.last: 65535 net.inet.ip.portrange.hifirst: 49152 net.inet.ip.portrange.hilast: 65535 net.inet.ip.forwarding: 0 net.inet.ip.redirect: 1 net.inet.ip.ttl: 64 net.inet.ip.rtexpire: 10 net.inet.ip.rtminexpire: 10 net.inet.ip.rtmaxcache: 128 net.inet.ip.sourceroute: 0 net.inet.ip.accept_sourceroute: 0 net.inet.ip.gifttl: 30 net.inet.ip.subnets_are_local: 0 net.inet.ip.mcast.maxgrpsrc: 512 net.inet.ip.mcast.maxsocksrc: 128 net.inet.ip.mcast.loop: 1 net.inet.ip.dummynet.hash_size: 64 net.inet.ip.dummynet.curr_time: 0 net.inet.ip.dummynet.ready_heap: 0 net.inet.ip.dummynet.extract_heap: 0 net.inet.ip.dummynet.searches: 0 net.inet.ip.dummynet.search_steps: 0 net.inet.ip.dummynet.expire: 1 net.inet.ip.dummynet.max_chain_len: 16 net.inet.ip.dummynet.red_lookup_depth: 256 net.inet.ip.dummynet.red_avg_pkt_size: 512 net.inet.ip.dummynet.red_max_pkt_size: 1500 net.inet.ip.dummynet.debug: 0 net.inet.ip.random_id_statistics: 0 net.inet.ip.random_id_collisions: 0 net.inet.ip.random_id_total: 0 net.inet.ip.sendsourcequench: 0 net.inet.ip.maxfragpackets: 2048 net.inet.ip.fragpackets: 0 net.inet.ip.maxfragsperpacket: 128 net.inet.ip.adj_clear_hwcksum: 0 net.inet.ip.adj_partial_sum: 1 net.inet.ip.check_interface: 0 net.inet.ip.rx_chaining: 1 net.inet.ip.rx_chainsz: 6 net.inet.ip.linklocal.in.allowbadttl: 1 net.inet.ip.random_id: 1 net.inet.ip.maxchainsent: 49 net.inet.ip.select_srcif_debug: 0 net.inet.ip.output_perf: 0 net.inet.ip.output_perf_bins: 0 net.inet.ip.rfc6864: 1 net.inet.icmp.maskrepl: 0 net.inet.icmp.icmplim: 250 net.inet.icmp.timestamp: 0 net.inet.icmp.drop_redirect: 1 net.inet.icmp.log_redirect: 0 net.inet.icmp.bmcastecho: 1 net.inet.igmp.recvifkludge: 1 net.inet.igmp.sendra: 1 net.inet.igmp.sendlocal: 1 net.inet.igmp.v1enable: 1 net.inet.igmp.v2enable: 1 net.inet.igmp.legacysupp: 0 net.inet.igmp.default_version: 3 net.inet.igmp.gsrdelay: 10 net.inet.igmp.debug: 0 net.inet.tcp.rfc1644: 0 net.inet.tcp.mssdflt: 512 net.inet.tcp.keepidle: 7200000 net.inet.tcp.keepintvl: 75000 net.inet.tcp.sendspace: 131072 net.inet.tcp.recvspace: 131072 net.inet.tcp.keepinit: 75000 net.inet.tcp.v6mssdflt: 1024 net.inet.tcp.backoff_maximum: 65536 net.inet.tcp.ecn_timeout: 60 net.inet.tcp.disable_tcp_heuristics: 0 net.inet.tcp.clear_tfocache: 0 net.inet.tcp.log_in_vain: 0 net.inet.tcp.blackhole: 0 net.inet.tcp.delayed_ack: 3 net.inet.tcp.tcp_lq_overflow: 1 net.inet.tcp.recvbg: 0 net.inet.tcp.drop_synfin: 1 net.inet.tcp.reass.overflows: 23 net.inet.tcp.slowlink_wsize: 8192 net.inet.tcp.maxseg_unacked: 8 net.inet.tcp.rfc3465: 1 net.inet.tcp.rfc3465_lim2: 1 net.inet.tcp.recv_allowed_iaj: 5 net.inet.tcp.doautorcvbuf: 1 net.inet.tcp.autorcvbufmax: 2097152 net.inet.tcp.lro: 0 net.inet.tcp.lrodbg: 0 net.inet.tcp.lro_startcnt: 4 net.inet.tcp.disable_access_to_stats: 1 net.inet.tcp.challengeack_limit: 10 net.inet.tcp.do_rfc5961: 1 net.inet.tcp.rcvsspktcnt: 512 net.inet.tcp.rexmt_thresh: 3 net.inet.tcp.path_mtu_discovery: 1 net.inet.tcp.slowstart_flightsize: 1 net.inet.tcp.local_slowstart_flightsize: 8 net.inet.tcp.tso: 1 net.inet.tcp.ecn_setup_percentage: 100 net.inet.tcp.ecn_initiate_out: 2 net.inet.tcp.ecn_negotiate_in: 2 net.inet.tcp.packetchain: 50 net.inet.tcp.socket_unlocked_on_output: 1 net.inet.tcp.rfc3390: 1 net.inet.tcp.min_iaj_win: 16 net.inet.tcp.acc_iaj_react_limit: 200 net.inet.tcp.doautosndbuf: 1 net.inet.tcp.autosndbufinc: 8192 net.inet.tcp.autosndbufmax: 2097152 net.inet.tcp.ack_prioritize: 1 net.inet.tcp.rtt_recvbg: 1 net.inet.tcp.recv_throttle_minwin: 16384 net.inet.tcp.enable_tlp: 1 net.inet.tcp.sack: 1 net.inet.tcp.sack_maxholes: 128 net.inet.tcp.sack_globalmaxholes: 65536 net.inet.tcp.sack_globalholes: 0 net.inet.tcp.fastopen_backlog: 10 net.inet.tcp.fastopen: 3 net.inet.tcp.now_init: 97369479 net.inet.tcp.microuptime_init: 881927 net.inet.tcp.minmss: 216 net.inet.tcp.do_tcpdrain: 0 net.inet.tcp.pcbcount: 301 net.inet.tcp.tw_pcbcount: 0 net.inet.tcp.icmp_may_rst: 1 net.inet.tcp.rtt_min: 100 net.inet.tcp.rexmt_slop: 200 net.inet.tcp.randomize_ports: 0 net.inet.tcp.win_scale_factor: 3 net.inet.tcp.tcbhashsize: 4096 net.inet.tcp.keepcnt: 8 net.inet.tcp.msl: 15000 net.inet.tcp.max_persist_timeout: 0 net.inet.tcp.always_keepalive: 0 net.inet.tcp.timer_fastmode_idlemax: 10 net.inet.tcp.broken_peer_syn_rexmit_thres: 10 net.inet.tcp.tcp_timer_advanced: 62567 net.inet.tcp.tcp_resched_timerlist: 395621 net.inet.tcp.pmtud_blackhole_detection: 1 net.inet.tcp.pmtud_blackhole_mss: 1200 net.inet.tcp.cc_debug: 0 net.inet.tcp.newreno_sockets: 0 net.inet.tcp.background_sockets: 0 net.inet.tcp.cubic_sockets: 290 net.inet.tcp.use_newreno: 0 net.inet.tcp.cubic_tcp_friendliness: 0 net.inet.tcp.cubic_fast_convergence: 0 net.inet.tcp.cubic_use_minrtt: 0 net.inet.tcp.lro_sz: 8 net.inet.tcp.lro_time: 10 net.inet.tcp.bg_target_qdelay: 100 net.inet.tcp.bg_allowed_increase: 8 net.inet.tcp.bg_tether_shift: 1 net.inet.tcp.bg_ss_fltsz: 2 net.inet.udp.checksum: 1 net.inet.udp.maxdgram: 9216 net.inet.udp.recvspace: 786896 net.inet.udp.log_in_vain: 0 net.inet.udp.blackhole: 0 net.inet.udp.pcbcount: 100 net.inet.udp.randomize_ports: 1 net.inet.ipsec.def_policy: 1 net.inet.ipsec.esp_trans_deflev: 1 net.inet.ipsec.esp_net_deflev: 1 net.inet.ipsec.ah_trans_deflev: 1 net.inet.ipsec.ah_net_deflev: 1 net.inet.ipsec.ah_cleartos: 1 net.inet.ipsec.ah_offsetmask: 0 net.inet.ipsec.dfbit: 0 net.inet.ipsec.ecn: 0 net.inet.ipsec.debug: 0 net.inet.ipsec.esp_randpad: -1 net.inet.ipsec.bypass: 1 net.inet.ipsec.esp_port: 0 net.inet.log_restricted: 0 net.inet.raw.maxdgram: 8192 net.inet.raw.recvspace: 8192 net.inet.raw.pcbcount: 1 net.inet.mptcp.enable: 1 net.inet.mptcp.mptcp_cap_retr: 2 net.inet.mptcp.dss_csum: 0 net.inet.mptcp.fail: 1 net.inet.mptcp.keepalive: 840 net.inet.mptcp.rtthist_thresh: 600 net.inet.mptcp.userto: 1 net.inet.mptcp.rto_thresh: 1500 net.inet.mptcp.probeto: 1000 net.inet.mptcp.probecnt: 5 net.inet.mptcp.dbg_area: 31 net.inet.mptcp.dbg_level: 1 net.inet.mptcp.pcbcount: 0 net.inet.mptcp.alternate_port: 0 net.inet.mptcp.allow_aggregate: 0 net.inet.mptcp.rto: 3 net.inet.mptcp.nrto: 3 net.inet.mptcp.tw: 60 net.link.generic.system.ifcount: 26 net.link.generic.system.if_verbose: 0 net.link.generic.system.dlil_verbose: 0 net.link.generic.system.sndq_maxlen: 128 net.link.generic.system.rcvq_maxlen: 256 net.link.generic.system.rxpoll_decay: 2 net.link.generic.system.rxpoll_freeze_time: 1000000000 net.link.generic.system.rxpoll_sample_time: 10000000 net.link.generic.system.rxpoll_interval_time: 1000000 net.link.generic.system.rxpoll_interval_pkts: 0 net.link.generic.system.rxpoll_wakeups_lowat: 10 net.link.generic.system.rxpoll_wakeups_hiwat: 100 net.link.generic.system.rxpoll_max: 0 net.link.generic.system.rxpoll: 1 net.link.generic.system.dlil_input_threads: 12 net.link.generic.system.dlil_input_sanity_check: 0 net.link.generic.system.flow_advisory: 1 net.link.generic.system.delaybased_queue: 1 net.link.generic.system.hwcksum_in_invalidated: 0 net.link.generic.system.hwcksum_dbg: 0 net.link.generic.system.start_delayed: 0 net.link.generic.system.start_delay_disabled: 0 net.link.generic.system.hwcksum_dbg_mode: 0 net.link.generic.system.hwcksum_dbg_partial_forced: 0 net.link.generic.system.hwcksum_dbg_partial_forced_bytes: 0 net.link.generic.system.hwcksum_dbg_partial_rxoff_forced: 0 net.link.generic.system.hwcksum_dbg_partial_rxoff_adj: 0 net.link.generic.system.hwcksum_dbg_verified: 0 net.link.generic.system.hwcksum_dbg_bad_cksum: 0 net.link.generic.system.hwcksum_dbg_bad_rxoff: 0 net.link.generic.system.hwcksum_dbg_adjusted: 0 net.link.generic.system.hwcksum_dbg_finalized_hdr: 0 net.link.generic.system.hwcksum_dbg_finalized_data: 0 net.link.generic.system.hwcksum_tx: 1 net.link.generic.system.hwcksum_rx: 1 net.link.generic.system.tx_chain_len_count: 0 net.link.generic.system.threshold_notify: 1 net.link.generic.system.threshold_interval: 2 net.link.generic.system.enable_netagent: 0 net.link.generic.system.port_used.entry_count: 0 net.link.generic.system.port_used.entry_gen: 0 net.link.generic.system.port_used.verbose: 0 net.link.generic.system.port_used.wakeuuid_not_set_count: 0 net.link.generic.system.port_used.wakeuuid_not_set_last_time: { sec = 0, usec = 0 } Wed Dec 31 16:00:00 1969 net.link.generic.system.port_used.wakeuuid_not_set_last_if: net.link.ether.inet.prune_intvl: 300 net.link.ether.inet.probe_intvl: 7 net.link.ether.inet.max_age: 1200 net.link.ether.inet.host_down_time: 20 net.link.ether.inet.arp_llreach_base: 120 net.link.ether.inet.arp_unicast_lim: 3 net.link.ether.inet.maxtries: 5 net.link.ether.inet.maxhold: 16 net.link.ether.inet.useloopback: 1 net.link.ether.inet.proxyall: 0 net.link.ether.inet.sendllconflict: 0 net.link.ether.inet.log_arp_warnings: 0 net.link.ether.inet.keep_announcements: 1 net.link.ether.inet.send_conflicting_probes: 1 net.link.ether.inet.verbose: 0 net.link.bridge.inherit_mac: 0 net.link.bridge.rtable_prune_period: 300 net.link.bridge.rtable_hash_size_max: 2048 net.link.bridge.txstart: 0 net.link.bridge.debug: 0 net.link.loopback.max_dequeue: 256 net.link.loopback.sched_model: 0 net.link.loopback.dequeue_sc: 0 net.link.fake.txstart: 1 net.link.fake.hwcsum: 0 net.link.fake.nxattach: 0 net.link.fake.bsd_mode: 1 net.link.fake.debug: 0 net.link.fake.wmm_mode: 0 net.link.iptap.total_tap_count: 0 net.link.iptap.log: 0 net.link.pktap.total_tap_count: 0 net.link.pktap.count_unknown_if_type: 0 net.link.pktap.log: 0 net.key.debug: 0 net.key.spi_trycnt: 1000 net.key.spi_minval: 256 net.key.spi_maxval: 268435455 net.key.int_random: 60 net.key.larval_lifetime: 30 net.key.blockacq_count: 10 net.key.blockacq_lifetime: 20 net.key.esp_keymin: 256 net.key.esp_auth: 0 net.key.ah_keymin: 128 net.key.prefered_oldsa: 0 net.key.natt_keepalive_interval: 20 net.inet6.ip6.forwarding: 0 net.inet6.ip6.redirect: 1 net.inet6.ip6.hlim: 64 net.inet6.ip6.maxfragpackets: 2048 net.inet6.ip6.accept_rtadv: 1 net.inet6.ip6.keepfaith: 0 net.inet6.ip6.log_interval: 5 net.inet6.ip6.hdrnestlimit: 15 net.inet6.ip6.dad_count: 1 net.inet6.ip6.auto_flowlabel: 1 net.inet6.ip6.defmcasthlim: 1 net.inet6.ip6.gifhlim: 0 net.inet6.ip6.kame_version: 2009/apple-darwin net.inet6.ip6.use_deprecated: 1 net.inet6.ip6.rr_prune: 5 net.inet6.ip6.v6only: 0 net.inet6.ip6.rtexpire: 10 net.inet6.ip6.rtminexpire: 10 net.inet6.ip6.rtmaxcache: 128 net.inet6.ip6.use_tempaddr: 1 net.inet6.ip6.temppltime: 86400 net.inet6.ip6.tempvltime: 604800 net.inet6.ip6.auto_linklocal: 1 net.inet6.ip6.prefer_tempaddr: 1 net.inet6.ip6.use_defaultzone: 0 net.inet6.ip6.maxfrags: 4096 net.inet6.ip6.mcast_pmtu: 0 net.inet6.ip6.neighborgcthresh: 1024 net.inet6.ip6.maxifprefixes: 16 net.inet6.ip6.maxifdefrouters: 16 net.inet6.ip6.maxdynroutes: 1024 net.inet6.ip6.fragpackets: 0 net.inet6.ip6.adj_clear_hwcksum: 0 net.inet6.ip6.adj_partial_sum: 1 net.inet6.ip6.input_perf: 0 net.inet6.ip6.input_perf_bins: 0 net.inet6.ip6.output_perf: 0 net.inet6.ip6.output_perf_bins: 0 net.inet6.ip6.select_srcif_debug: 0 net.inet6.ip6.select_srcaddr_debug: 0 net.inet6.ip6.select_src_expensive_secondary_if: 0 net.inet6.ip6.select_src_strong_end: 1 net.inet6.ip6.mcast.maxgrpsrc: 512 net.inet6.ip6.mcast.maxsocksrc: 128 net.inet6.ip6.mcast.loop: 1 net.inet6.ip6.only_allow_rfc4193_prefixes: 0 net.inet6.ip6.clat_debug: 0 net.inet6.ip6.maxchainsent: 50 net.inet6.ip6.dad_enhanced: 1 net.inet6.ipsec6.def_policy: 1 net.inet6.ipsec6.esp_trans_deflev: 1 net.inet6.ipsec6.esp_net_deflev: 1 net.inet6.ipsec6.ah_trans_deflev: 1 net.inet6.ipsec6.ah_net_deflev: 1 net.inet6.ipsec6.ecn: 0 net.inet6.ipsec6.debug: 0 net.inet6.ipsec6.esp_randpad: -1 net.inet6.icmp6.rediraccept: 1 net.inet6.icmp6.redirtimeout: 600 net.inet6.icmp6.nd6_prune: 1 net.inet6.icmp6.nd6_delay: 5 net.inet6.icmp6.nd6_umaxtries: 3 net.inet6.icmp6.nd6_mmaxtries: 3 net.inet6.icmp6.nd6_useloopback: 1 net.inet6.icmp6.nodeinfo: 3 net.inet6.icmp6.errppslimit: 500 net.inet6.icmp6.nd6_debug: 0 net.inet6.icmp6.nd6_accept_6to4: 1 net.inet6.icmp6.nd6_optimistic_dad: 63 net.inet6.icmp6.nd6_onlink_ns_rfc4861: 0 net.inet6.icmp6.nd6_prune_lazy: 5 net.inet6.icmp6.rappslimit: 10 net.inet6.icmp6.nd6_llreach_base: 30 net.inet6.icmp6.nd6_maxsolstgt: 8 net.inet6.icmp6.nd6_maxproxiedsol: 4 net.inet6.icmp6.prproxy_cnt: 0 net.inet6.mld.gsrdelay: 10 net.inet6.mld.v1enable: 1 net.inet6.mld.v2enable: 1 net.inet6.mld.use_allow: 1 net.inet6.mld.debug: 0 net.inet6.send.opmode: 1 net.inet6.send.opstate: 1 net.systm.kctl.autorcvbufmax: 262144 net.systm.kctl.autorcvbufhigh: 0 net.systm.kctl.debug: 0 net.ndrv_multi_max_count: 1024 net.statistics_privcheck: 0 net.stats.debug: 0 net.stats.sendspace: 2048 net.stats.recvspace: 8192 net.utun.ring_size: 64 net.utun.tx_fsw_ring_size: 64 net.utun.rx_fsw_ring_size: 128 net.ipsec.verify_interface_creation: 0 net.ipsec.ring_size: 64 net.ipsec.tx_fsw_ring_size: 64 net.ipsec.rx_fsw_ring_size: 128 net.necp.drop_all_level: 0 net.necp.debug: 0 net.necp.pass_loopback: 1 net.necp.pass_keepalives: 1 net.necp.socket_policy_count: 20 net.necp.socket_non_app_policy_count: 20 net.necp.ip_policy_count: 8 net.necp.session_count: 5 net.necp.client_fd_count: 113 net.necp.client_count: 226 net.necp.arena_count: 0 net.necp.nexus_flow_count: 0 net.necp.socket_flow_count: 28 net.necp.if_flow_count: 0 net.necp.observer_fd_count: 0 net.necp.observer_message_limit: 256 net.necp.sysctl_arena_count: 0 net.netagent.debug: 5 net.netagent.registered_count: 12 net.netagent.active_count: 11 net.cfil.log: 3 net.cfil.debug: 1 net.cfil.sock_attached_count: 0 net.cfil.active_count: 0 net.cfil.close_wait_timeout: 1000 net.cfil.sbtrim: 1 net.classq.verbose: 0 net.classq.sfb.holdtime: 0 net.classq.sfb.pboxtime: 0 net.classq.sfb.hinterval: 0 net.classq.sfb.increment: 82 net.classq.sfb.decrement: 16 net.classq.sfb.allocation: 0 net.classq.sfb.ratelimit: 0 net.classq.target_qdelay: 0 net.classq.update_interval: 0 net.pktsched.verbose: 0 net.qos.reset_dscp_to_wifi_ac_map: 0 net.qos.verbose: 0 net.qos.policy.restricted: 0 net.qos.policy.restrict_avapps: 0 net.qos.policy.wifi_enabled: 0 net.qos.policy.none_wifi_enabled: 0 net.qos.policy.capable_enabled: 0 net.alf.loglevel: 55 net.alf.perm: 1 net.alf.defaultaction: 1 net.alf.mqcount: 0 net.smb.fs.version: 303200 net.smb.fs.loglevel: 0 net.smb.fs.kern_deadtimer: 60 net.smb.fs.kern_hard_deadtimer: 600 net.smb.fs.kern_soft_deadtimer: 30 net.smb.fs.tcpsndbuf: 8388608 net.smb.fs.tcprcvbuf: 8388608 net.smb.fs.maxwrite: 8388608 net.smb.fs.maxread: 8388608 net.smb.fs.maxsegreadsize: 8388608 net.smb.fs.maxsegwritesize: 8388608 debug.lowpri_throttle_max_iosize: 131072 debug.lowpri_throttle_tier1_window_msecs: 25 debug.lowpri_throttle_tier2_window_msecs: 100 debug.lowpri_throttle_tier3_window_msecs: 500 debug.lowpri_throttle_tier1_io_period_msecs: 40 debug.lowpri_throttle_tier2_io_period_msecs: 85 debug.lowpri_throttle_tier3_io_period_msecs: 200 debug.lowpri_throttle_tier1_io_period_ssd_msecs: 5 debug.lowpri_throttle_tier2_io_period_ssd_msecs: 15 debug.lowpri_throttle_tier3_io_period_ssd_msecs: 25 debug.lowpri_throttle_enabled: 1 debug.bpf_bufsize: 4096 debug.bpf_maxbufsize: 524288 debug.bpf_maxdevices: 256 debug.bpf_wantpktap: 0 debug.bpf_debug: 0 debug.sched: 2 debug.toggle_address_reuse: 0 debug.kextlog: 4083 debug.swd_kext_name: debug.swd_delay_type: debug.swd_delay_duration: 0 debug.iotrace: 0 debug.noidle: 0 debug.darkwake: 3 debug.swd_panic: 0 debug.swd_timeout: 0 debug.swd_wake_timeout: 0 debug.swd_sleep_timeout: 0 debug.acpi_flags: 0 debug.acpi_layer: 0 debug.acpi_level: 0 debug.iokit: 0 debug.batman: 3 debug.wdtlog: 560830m1/0560850m1/0560870m1/0560890m1/0560910m1/0560930m1/0560950m1/0560990m1/0561010m1/0561030m1/0561050m1/0561070m1/0561090m1/0561130m1/0561150m1/0561170m1/0561190m1/0561210m1/0561230m1/0561250m1/0561270m1/0561290m1/0561310m1/0561330m1/0561350m1/0561370m1/0561390m1/0561410m1/0561430m1/0561450m1/0561470m1/0561490m1/0 debug.iosk_debug: 0 debug.iosk_poll_enable: 1 debug.iosk_pool_alloc_retry_interval: 2000 debug.iosk_doorbell_limit: 0 debug.ioppf: 0 debug.intelfb.graphicsTracePointEnable: 0 debug.intelfb.IGInterruptControl: 0 debug.intelfb.fLastRequestedPState: 0 debug.intelfb.forceSlicesGTx: 0 debug.intelfb.forceSlicesEUx: 0 debug.intelfb.sliceInfo: 4 debug.intelfb.euInfo: 8 debug.intelfb.testCase: 0 debug.intelfb.temp0: 0 debug.intelfb.temp1: 0 debug.intelfb.temp2: 0 debug.intelfb.temp3: 0 debug.intelfb.temp4: 0 debug.intelfb.FakeType2Dongle: 0 debug.intelfb.forceDither: 0 debug.intelfb.enableDECounting: 0 debug.intelfb.enableGTHWFreqRead: 0 debug.intel.kdctlVersion: 2004312080 debug.intel.graphicsTracePointEnable: 0 debug.intel.IGInterruptControl: 0 debug.intel.perfEventEnable: 0 debug.intel.dtraceEnable: 0 debug.intel.oaEnable: 1 debug.intel.gpuUsageEnables: 15 debug.intel.gpuUsageEnablesCheck: 0 debug.intel.flipCount: 4595589 debug.intel.swapCount: 0 debug.intel.ringTakeSample: 0 debug.intel.ringOnSample: 0 debug.intel.GlobalUsageTotal_Busy_nSec: 0 debug.intel.GlobalUsageTotal_nSec: 0 debug.intel.ringMainUsage: 0 debug.intel.ringMediaUsage: 0 debug.intel.ringBlitUsage: 0 debug.intel.ringVEBoxUsage: 0 debug.intel.ringMain_nSec: 0 debug.intel.ringMedia_nSec: 0 debug.intel.ringBlit_nSec: 0 debug.intel.ringVEBox_nSec: 0 debug.intel.mSecCalcGPUBusy: 1000 debug.intel.schedPriCreditsHigh: -1 debug.intel.schedPriCreditsNormalHigh: -1 debug.intel.schedPriCreditsNormal: -1 debug.intel.schedPriCreditsLow: -1 debug.intel.schedPriPreemption: 1 debug.intel.schedPriElevatePID: -1 debug.intel.schedEnableThrottleOverride: 0 debug.intel.schedThrottleLowPriByVal: -1 debug.intel.schedThrottleNormalPriByVal: -1 debug.intel.schedThrottleNormalHighPriByVal: -1 debug.intel.schedThrottleHighPriByVal: -1 debug.intel.graphicsFirmwareTracePointEnable: 0 debug.intel.telemetryUsageReportmSec: 1000 debug.intel.telemetryVersion: 1 debug.intel.telemetryConfig: 4102 debug.intel.telemetryMode: 0 debug.intel.telemetrySampleLocations: 0 debug.intel.telemetryStartFrame: 0 debug.intel.telemetryStopFrame: 0 debug.intel.telemetryNumFrame: 0 debug.intel.telemetryTestCase: 0 debug.intel.telemetrySpot1: 0 debug.intel.telemetryStatPasses: 0 debug.intel.telemetryAltConfig: 0 debug.intel.temp0: 0 debug.intel.temp1: 0 debug.intel.temp2: 0 debug.intel.temp3: 0 debug.intel.temp4: 0 hw.ncpu: 8 hw.byteorder: 1234 hw.memsize: 17179869184 hw.activecpu: 8 hw.physicalcpu: 4 hw.physicalcpu_max: 4 hw.logicalcpu: 8 hw.logicalcpu_max: 8 hw.cputype: 7 hw.cpusubtype: 8 hw.cpu64bit_capable: 1 hw.cpufamily: 260141638 hw.cacheconfig: 8 2 2 8 0 0 0 0 0 0 hw.cachesize: 17179869184 32768 262144 6291456 0 0 0 0 0 0 hw.pagesize: 4096 hw.pagesize32: 4096 hw.busfrequency: 400000000 hw.busfrequency_min: 400000000 hw.busfrequency_max: 400000000 hw.cpufrequency: 2400000000 hw.cpufrequency_min: 2400000000 hw.cpufrequency_max: 2400000000 hw.cachelinesize: 64 hw.l1icachesize: 32768 hw.l1dcachesize: 32768 hw.l2cachesize: 262144 hw.l3cachesize: 6291456 hw.tbfrequency: 1000000000 hw.packages: 1 hw.optional.floatingpoint: 1 hw.optional.mmx: 1 hw.optional.sse: 1 hw.optional.sse2: 1 hw.optional.sse3: 1 hw.optional.supplementalsse3: 1 hw.optional.sse4_1: 1 hw.optional.sse4_2: 1 hw.optional.x86_64: 1 hw.optional.aes: 1 hw.optional.avx1_0: 1 hw.optional.rdrand: 1 hw.optional.f16c: 1 hw.optional.enfstrg: 1 hw.optional.fma: 1 hw.optional.avx2_0: 1 hw.optional.bmi1: 1 hw.optional.bmi2: 1 hw.optional.rtm: 0 hw.optional.hle: 0 hw.optional.adx: 1 hw.optional.mpx: 0 hw.optional.sgx: 0 hw.optional.avx512f: 0 hw.optional.avx512cd: 0 hw.optional.avx512dq: 0 hw.optional.avx512bw: 0 hw.optional.avx512vl: 0 hw.optional.avx512ifma: 0 hw.optional.avx512vbmi: 0 hw.targettype: Mac hw.cputhreadtype: 1 machdep.user_idle_level: 0 machdep.cpu.max_basic: 22 machdep.cpu.max_ext: 2147483656 machdep.cpu.vendor: GenuineIntel machdep.cpu.brand_string: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz machdep.cpu.family: 6 machdep.cpu.model: 142 machdep.cpu.extmodel: 8 machdep.cpu.extfamily: 0 machdep.cpu.stepping: 10 machdep.cpu.feature_bits: 9221959987971750911 machdep.cpu.leaf7_feature_bits: 43804591 0 machdep.cpu.leaf7_feature_bits_edx: 2617254912 machdep.cpu.extfeature_bits: 1241984796928 machdep.cpu.signature: 526058 machdep.cpu.brand: 0 machdep.cpu.features: FPU VME DE PSE TSC MSR PAE MCE CX8 APIC SEP MTRR PGE MCA CMOV PAT PSE36 CLFSH DS ACPI MMX FXSR SSE SSE2 SS HTT TM PBE SSE3 PCLMULQDQ DTES64 MON DSCPL VMX EST TM2 SSSE3 FMA CX16 TPR PDCM SSE4.1 SSE4.2 x2APIC MOVBE POPCNT AES PCID XSAVE OSXSAVE SEGLIM64 TSCTMR AVX1.0 RDRAND F16C machdep.cpu.leaf7_features: RDWRFSGS TSC_THREAD_OFFSET SGX BMI1 AVX2 SMEP BMI2 ERMS INVPCID FPU_CSDS MPX RDSEED ADX SMAP CLFSOPT IPT MDCLEAR TSXFA IBRS STIBP L1DF SSBD machdep.cpu.extfeatures: SYSCALL XD 1GBPAGE EM64T LAHF LZCNT PREFETCHW RDTSCP TSCI machdep.cpu.logical_per_package: 16 machdep.cpu.cores_per_package: 8 machdep.cpu.microcode_version: 202 machdep.cpu.processor_flag: 6 machdep.cpu.mwait.linesize_min: 64 machdep.cpu.mwait.linesize_max: 64 machdep.cpu.mwait.extensions: 3 machdep.cpu.mwait.sub_Cstates: 286531872 machdep.cpu.thermal.sensor: 1 machdep.cpu.thermal.dynamic_acceleration: 1 machdep.cpu.thermal.invariant_APIC_timer: 1 machdep.cpu.thermal.thresholds: 2 machdep.cpu.thermal.ACNT_MCNT: 1 machdep.cpu.thermal.core_power_limits: 1 machdep.cpu.thermal.fine_grain_clock_mod: 1 machdep.cpu.thermal.package_thermal_intr: 1 machdep.cpu.thermal.hardware_feedback: 0 machdep.cpu.thermal.energy_policy: 1 machdep.cpu.xsave.extended_state: 31 832 1088 0 machdep.cpu.xsave.extended_state1: 15 832 256 0 machdep.cpu.arch_perf.version: 4 machdep.cpu.arch_perf.number: 4 machdep.cpu.arch_perf.width: 48 machdep.cpu.arch_perf.events_number: 7 machdep.cpu.arch_perf.events: 0 machdep.cpu.arch_perf.fixed_number: 3 machdep.cpu.arch_perf.fixed_width: 48 machdep.cpu.cache.linesize: 64 machdep.cpu.cache.L2_associativity: 4 machdep.cpu.cache.size: 256 machdep.cpu.tlb.inst.large: 8 machdep.cpu.tlb.data.small: 64 machdep.cpu.tlb.data.small_level1: 64 machdep.cpu.address_bits.physical: 39 machdep.cpu.address_bits.virtual: 48 machdep.cpu.core_count: 4 machdep.cpu.thread_count: 8 machdep.cpu.tsc_ccc.numerator: 200 machdep.cpu.tsc_ccc.denominator: 2 machdep.vectors.timer: 221 machdep.vectors.IPI: 222 machdep.pmap.hashwalks: 543508026 machdep.pmap.hashcnts: 591460691 machdep.pmap.hashmax: 24 machdep.pmap.kernel_text_ps: 2097152 machdep.pmap.kern_pv_reserve: 16000 machdep.memmap.Conventional: 17016455168 machdep.memmap.RuntimeServices: 1511424 machdep.memmap.ACPIReclaim: 393216 machdep.memmap.ACPINVS: 798720 machdep.memmap.PalCode: 0 machdep.memmap.Reserved: 127156224 machdep.memmap.Unusable: 0 machdep.memmap.Other: 0 machdep.tsc.frequency: 2400000000 machdep.tsc.deep_idle_rebase: 1 machdep.tsc.at_boot: 39805168 machdep.tsc.rebase_abs_time: 19057695233 machdep.tsc.nanotime.tsc_base: 2862041899645104 machdep.tsc.nanotime.ns_base: 559128543297208 machdep.tsc.nanotime.scale: 1789569706 machdep.tsc.nanotime.shift: 0 machdep.tsc.nanotime.generation: 928 machdep.misc.fast_uexc_support: 1 machdep.misc.panic_restart_timeout: 1266874889 machdep.misc.interrupt_latency_max: 0x1 0xde 0xa312b3 machdep.misc.timer_queue_trace: machdep.misc.nmis: 0 machdep.xcpm.mode: 1 machdep.xcpm.pcps_mode: 0 machdep.xcpm.hard_plimit_max_100mhz_ratio: 41 machdep.xcpm.hard_plimit_min_100mhz_ratio: 4 machdep.xcpm.soft_plimit_max_100mhz_ratio: 41 machdep.xcpm.soft_plimit_min_100mhz_ratio: 4 machdep.xcpm.tuib_plimit_max_100mhz_ratio: 41 machdep.xcpm.tuib_plimit_min_100mhz_ratio: 4 machdep.xcpm.tuib_enabled: 0 machdep.xcpm.power_source: 0 machdep.xcpm.bootplim: 0 machdep.xcpm.bootpst: 41 machdep.xcpm.tuib_ns: 0 machdep.xcpm.vectors_loaded_count: 1 machdep.xcpm.ratio_change_ratelimit_ns: 3000000 machdep.xcpm.ratio_changes_total: 92560423 machdep.xcpm.maxbusdelay: 4294967295 machdep.xcpm.maxintdelay: 0 machdep.xcpm.mid_applications: 0 machdep.xcpm.mid_relaxations: 0 machdep.xcpm.mid_mode: 1 machdep.xcpm.mid_cst_control_limit: 0 machdep.xcpm.mid_mode_active: 0 machdep.xcpm.mbd_mode: 1 machdep.xcpm.mbd_applications: 52 machdep.xcpm.mbd_relaxations: 977 machdep.xcpm.forced_idle_ratio: 100 machdep.xcpm.forced_idle_period: 30000000 machdep.xcpm.deep_idle_log: 0 machdep.xcpm.qos_txfr: 1 machdep.xcpm.deep_idle_count: 925 machdep.xcpm.deep_idle_last_stats: 0:18:38 CC7:99% C2:0% C3:0% C6:0% C7:0% C8:0% C9:0% C10:99% machdep.xcpm.deep_idle_total_stats: 260:22:39 CC7:99% C2:0% C3:0% C6:0% C7:0% C8:0% C9:0% C10:99% machdep.xcpm.cpu_thermal_level: 0 machdep.xcpm.gpu_thermal_level: 0 machdep.xcpm.io_thermal_level: 0 machdep.xcpm.io_control_engages: 0 machdep.xcpm.io_control_disengages: 0 machdep.xcpm.io_filtered_reads: 0 machdep.xcpm.io_cst_control_enabled: 1 machdep.xcpm.ring_boost_enabled: 0 machdep.xcpm.io_epp_boost_enabled: 1 machdep.xcpm.epp_override: 0 machdep.xcpm.perf_hints: 0 machdep.eager_timer_evaluations: 428110 machdep.eager_timer_evaluation_max: 5269244 machdep.x86_fp_simd_isr_uses: 0 machdep.uncore_sample_state: 0 machdep.uncore_sample_mask: 1 machdep.uncore_sample_ctl: 0 machdep.uncore_pcie_mmio_base: -536870912 audit.session.superuser_set_sflags_mask: 24576 audit.session.superuser_clear_sflags_mask: 24576 audit.session.member_set_sflags_mask: 0 audit.session.member_clear_sflags_mask: 16384 ktrace.state: 0 ktrace.owning_pid: 0 ktrace.background_pid: 13317 ktrace.configured_by: tailspind kperf.limits.timer_min_period_ns: 20000 kperf.limits.timer_min_bg_period_ns: 1000000 kperf.limits.timer_min_pet_period_ns: 2000000 kperf.limits.timer_min_bg_pet_period_ns: 5000000 kperf.debug_level: 0 security.mac.platform_exec_logging: 0 security.mac.max_slots: 7 security.mac.labelvnodes: 0 security.mac.device_enforce: 1 security.mac.pipe_enforce: 1 security.mac.posixsem_enforce: 1 security.mac.posixshm_enforce: 1 security.mac.proc_enforce: 1 security.mac.socket_enforce: 1 security.mac.system_enforce: 1 security.mac.sysvmsg_enforce: 1 security.mac.sysvsem_enforce: 1 security.mac.sysvshm_enforce: 1 security.mac.vm_enforce: 1 security.mac.vnode_enforce: 1 security.mac.amfi.force_policy: 0 security.mac.amfi.verbose_logging: 0 security.mac.amfi.hsp_enable: 1 security.mac.sandbox.audio_active: 0 security.mac.sandbox.sentinel: .sb-d3da7526 security.mac.qtn.sandbox_enforce: 1 security.mac.qtn.user_approved_exec: 1 security.mac.asp.cache_entry_count: 2914 security.mac.asp.cache_allocation_count: 5564 security.mac.asp.cache_release_count: 2650 security.mac.asp.exec_hook_time: 4482240 security.mac.asp.exec_hook_count: 1207221 security.mac.asp.library_hook_time: 4806866 security.mac.asp.library_hook_count: 3796287 com_vmware_fusion_vmnet.apiVersion: 393216 com_vmware_fusion_vmnet.buildNumber: 14328561 com_vmware_fusion_vmmon.apiVersion: 23658496 com_vmware_fusion_vmmon.buildNumber: 14328561 com_vmware_fusion_vmmon.driverInUse: 1 com_vmware_fusion_vmioplug.apiVersion: 1179906 com_vmware_fusion_vmioplug.buildNumber: 14328561 jc-1.17.3/tests/fixtures/osx-10.14.6/time-l.json000066400000000000000000000006271415226333200207200ustar00rootroot00000000000000{"real_time":0.0,"user_time":0.0,"system_time":0.0,"maximum_resident_set_size":688128,"average_shared_memory_size":0,"average_unshared_data_size":0,"average_unshared_stack_size":0,"page_reclaims":178,"page_faults":0,"swaps":0,"block_input_operations":0,"block_output_operations":0,"messages_sent":0,"messages_received":0,"signals_received":0,"voluntary_context_switches":0,"involuntary_context_switches":3} jc-1.17.3/tests/fixtures/osx-10.14.6/time-l.out000066400000000000000000000010011415226333200205410ustar00rootroot00000000000000 0.00 real 0.00 user 0.00 sys 688128 maximum resident set size 0 average shared memory size 0 average unshared data size 0 average unshared stack size 178 page reclaims 0 page faults 0 swaps 0 block input operations 0 block output operations 0 messages sent 0 messages received 0 signals received 0 voluntary context switches 3 involuntary context switches jc-1.17.3/tests/fixtures/osx-10.14.6/time-lp.json000066400000000000000000000006271415226333200211000ustar00rootroot00000000000000{"real_time":0.0,"user_time":0.0,"system_time":0.0,"maximum_resident_set_size":688128,"average_shared_memory_size":0,"average_unshared_data_size":0,"average_unshared_stack_size":0,"page_reclaims":178,"page_faults":0,"swaps":0,"block_input_operations":0,"block_output_operations":0,"messages_sent":0,"messages_received":0,"signals_received":0,"voluntary_context_switches":0,"involuntary_context_switches":3} jc-1.17.3/tests/fixtures/osx-10.14.6/time-lp.out000066400000000000000000000010021415226333200207220ustar00rootroot00000000000000real 0.00 user 0.00 sys 0.00 688128 maximum resident set size 0 average shared memory size 0 average unshared data size 0 average unshared stack size 178 page reclaims 0 page faults 0 swaps 0 block input operations 0 block output operations 0 messages sent 0 messages received 0 signals received 0 voluntary context switches 3 involuntary context switches jc-1.17.3/tests/fixtures/osx-10.14.6/time-p.json000066400000000000000000000000641415226333200207170ustar00rootroot00000000000000{"real_time":0.0,"user_time":0.0,"system_time":0.0} jc-1.17.3/tests/fixtures/osx-10.14.6/time-p.out000066400000000000000000000000661415226333200205570ustar00rootroot00000000000000real 0.00 user 0.00 sys 0.00 jc-1.17.3/tests/fixtures/osx-10.14.6/time.json000066400000000000000000000000641415226333200204620ustar00rootroot00000000000000{"real_time":0.0,"user_time":0.0,"system_time":0.0} jc-1.17.3/tests/fixtures/osx-10.14.6/time.out000066400000000000000000000000651415226333200203210ustar00rootroot00000000000000 0.00 real 0.00 user 0.00 sys jc-1.17.3/tests/fixtures/osx-10.14.6/traceroute-asn.json000066400000000000000000000021431415226333200224600ustar00rootroot00000000000000{"destination_ip": "8.8.8.8", "destination_name": "8.8.8.8", "hops": [{"hop": 1, "probes": [{"annotation": null, "asn": 198949, "ip": "192.168.1.254", "name": "dsldevice", "rtt": 6.07}, {"annotation": null, "asn": 198949, "ip": "192.168.1.254", "name": "dsldevice", "rtt": 5.721}, {"annotation": null, "asn": 198949, "ip": "192.168.1.254", "name": "dsldevice", "rtt": 5.269}]}, {"hop": 2, "probes": [{"annotation": null, "asn": 0, "ip": "76.220.24.1", "name": "76-220-24-1.lightspeed.sntcca.sbcglobal.net", "rtt": 160.025}, {"annotation": null, "asn": 0, "ip": "76.220.24.1", "name": "76-220-24-1.lightspeed.sntcca.sbcglobal.net", "rtt": 178.69}, {"annotation": null, "asn": 0, "ip": "76.220.24.1", "name": "76-220-24-1.lightspeed.sntcca.sbcglobal.net", "rtt": 33.759}]}, {"hop": 3, "probes": []}, {"hop": 4, "probes": [{"annotation": null, "asn": 7018, "ip": "12.122.149.186", "name": "12.122.149.186", "rtt": 37.783}, {"annotation": null, "asn": 7018, "ip": "12.122.149.186", "name": "12.122.149.186", "rtt": 23.782}, {"annotation": null, "asn": 7018, "ip": "12.122.149.186", "name": "12.122.149.186", "rtt": 24.958}]}]} jc-1.17.3/tests/fixtures/osx-10.14.6/traceroute-asn.out000066400000000000000000000005031415226333200223140ustar00rootroot00000000000000traceroute to 8.8.8.8 (8.8.8.8), 4 hops max, 52 byte packets 1 [AS198949] dsldevice (192.168.1.254) 6.070 ms 5.721 ms 5.269 ms 2 [AS0] 76-220-24-1.lightspeed.sntcca.sbcglobal.net (76.220.24.1) 160.025 ms 178.690 ms 33.759 ms 3 * * * 4 [AS7018] 12.122.149.186 (12.122.149.186) 37.783 ms 23.782 ms 24.958 ms jc-1.17.3/tests/fixtures/osx-10.14.6/traceroute-mult-addresses.json000066400000000000000000000014471415226333200246410ustar00rootroot00000000000000{"destination_ip": "151.101.129.67", "destination_name": "cnn.com", "hops": [{"hop": 1, "probes": [{"annotation": null, "asn": null, "ip": "192.168.1.254", "name": "dsldevice", "rtt": 4.478}, {"annotation": null, "asn": null, "ip": "192.168.1.254", "name": "dsldevice", "rtt": 3.907}, {"annotation": null, "asn": null, "ip": "192.168.1.254", "name": "dsldevice", "rtt": 4.849}]}, {"hop": 2, "probes": [{"annotation": null, "asn": null, "ip": "76.220.24.1", "name": "76-220-24-1.lightspeed.sntcca.sbcglobal.net", "rtt": 23.53}, {"annotation": null, "asn": null, "ip": "76.220.24.1", "name": "76-220-24-1.lightspeed.sntcca.sbcglobal.net", "rtt": 26.518}, {"annotation": null, "asn": null, "ip": "76.220.24.1", "name": "76-220-24-1.lightspeed.sntcca.sbcglobal.net", "rtt": 23.48}]}, {"hop": 3, "probes": []}]} jc-1.17.3/tests/fixtures/osx-10.14.6/traceroute-mult-addresses.out000066400000000000000000000004611415226333200244720ustar00rootroot00000000000000traceroute: Warning: cnn.com has multiple addresses; using 151.101.129.67 traceroute to cnn.com (151.101.129.67), 64 hops max, 52 byte packets 1 dsldevice (192.168.1.254) 4.478 ms 3.907 ms 4.849 ms 2 76-220-24-1.lightspeed.sntcca.sbcglobal.net (76.220.24.1) 23.530 ms 26.518 ms 23.480 ms 3 * *jc-1.17.3/tests/fixtures/osx-10.14.6/traceroute-no-header.json000066400000000000000000000014311415226333200235400ustar00rootroot00000000000000{"destination_ip": null, "destination_name": null, "hops": [{"hop": 1, "probes": [{"annotation": null, "asn": null, "ip": "192.168.1.254", "name": "dsldevice", "rtt": 11.415}, {"annotation": null, "asn": null, "ip": "192.168.1.254", "name": "dsldevice", "rtt": 3.934}, {"annotation": null, "asn": null, "ip": "192.168.1.254", "name": "dsldevice", "rtt": 3.286}]}, {"hop": 2, "probes": [{"annotation": null, "asn": null, "ip": "76.220.24.1", "name": "76-220-24-1.lightspeed.sntcca.sbcglobal.net", "rtt": 24.174}, {"annotation": null, "asn": null, "ip": "76.220.24.1", "name": "76-220-24-1.lightspeed.sntcca.sbcglobal.net", "rtt": 20.817}, {"annotation": null, "asn": null, "ip": "76.220.24.1", "name": "76-220-24-1.lightspeed.sntcca.sbcglobal.net", "rtt": 27.771}]}, {"hop": 3, "probes": []}]} jc-1.17.3/tests/fixtures/osx-10.14.6/traceroute-no-header.out000066400000000000000000000002461415226333200234010ustar00rootroot00000000000000 1 dsldevice (192.168.1.254) 11.415 ms 3.934 ms 3.286 ms 2 76-220-24-1.lightspeed.sntcca.sbcglobal.net (76.220.24.1) 24.174 ms 20.817 ms 27.771 ms 3 * * * jc-1.17.3/tests/fixtures/osx-10.14.6/traceroute-q.json000066400000000000000000000023301415226333200221350ustar00rootroot00000000000000{"destination_ip": "8.8.8.8", "destination_name": "8.8.8.8", "hops": [{"hop": 1, "probes": [{"annotation": null, "asn": null, "ip": "192.168.1.254", "name": "dsldevice", "rtt": 3.317}, {"annotation": null, "asn": null, "ip": "192.168.1.254", "name": "dsldevice", "rtt": 6.373}, {"annotation": null, "asn": null, "ip": "192.168.1.254", "name": "dsldevice", "rtt": 6.967}, {"annotation": null, "asn": null, "ip": "192.168.1.254", "name": "dsldevice", "rtt": 5.299}, {"annotation": null, "asn": null, "ip": "192.168.1.254", "name": "dsldevice", "rtt": 4.605}]}, {"hop": 2, "probes": [{"annotation": null, "asn": null, "ip": "76.220.24.1", "name": "76-220-24-1.lightspeed.sntcca.sbcglobal.net", "rtt": 28.829}, {"annotation": null, "asn": null, "ip": "76.220.24.1", "name": "76-220-24-1.lightspeed.sntcca.sbcglobal.net", "rtt": 20.073}, {"annotation": null, "asn": null, "ip": "76.220.24.1", "name": "76-220-24-1.lightspeed.sntcca.sbcglobal.net", "rtt": 26.238}, {"annotation": null, "asn": null, "ip": "76.220.24.1", "name": "76-220-24-1.lightspeed.sntcca.sbcglobal.net", "rtt": 22.052}, {"annotation": null, "asn": null, "ip": "76.220.24.1", "name": "76-220-24-1.lightspeed.sntcca.sbcglobal.net", "rtt": 22.519}]}, {"hop": 3, "probes": []}]} jc-1.17.3/tests/fixtures/osx-10.14.6/traceroute-q.out000066400000000000000000000004201415226333200217710ustar00rootroot00000000000000traceroute to 8.8.8.8 (8.8.8.8), 3 hops max, 52 byte packets 1 dsldevice (192.168.1.254) 3.317 ms 6.373 ms 6.967 ms 5.299 ms 4.605 ms 2 76-220-24-1.lightspeed.sntcca.sbcglobal.net (76.220.24.1) 28.829 ms 20.073 ms 26.238 ms 22.052 ms 22.519 ms 3 * * * * * jc-1.17.3/tests/fixtures/osx-10.14.6/traceroute.json000066400000000000000000000045631415226333200217110ustar00rootroot00000000000000{"destination_ip": "8.8.8.8", "destination_name": "8.8.8.8", "hops": [{"hop": 1, "probes": [{"annotation": null, "asn": null, "ip": "192.168.1.254", "name": "dsldevice", "rtt": 12.07}, {"annotation": null, "asn": null, "ip": "192.168.1.254", "name": "dsldevice", "rtt": 4.328}, {"annotation": null, "asn": null, "ip": "192.168.1.254", "name": "dsldevice", "rtt": 4.167}]}, {"hop": 2, "probes": [{"annotation": null, "asn": null, "ip": "76.220.24.1", "name": "76-220-24-1.lightspeed.sntcca.sbcglobal.net", "rtt": 20.595}, {"annotation": null, "asn": null, "ip": "76.220.24.1", "name": "76-220-24-1.lightspeed.sntcca.sbcglobal.net", "rtt": 26.13}, {"annotation": null, "asn": null, "ip": "76.220.24.1", "name": "76-220-24-1.lightspeed.sntcca.sbcglobal.net", "rtt": 28.555}]}, {"hop": 3, "probes": []}, {"hop": 4, "probes": [{"annotation": null, "asn": null, "ip": "12.122.149.186", "name": "12.122.149.186", "rtt": 149.663}, {"annotation": null, "asn": null, "ip": "12.122.149.186", "name": "12.122.149.186", "rtt": 27.761}, {"annotation": null, "asn": null, "ip": "12.122.149.186", "name": "12.122.149.186", "rtt": 160.709}]}, {"hop": 5, "probes": [{"annotation": null, "asn": null, "ip": "12.122.3.70", "name": "sffca22crs.ip.att.net", "rtt": 27.131}, {"annotation": null, "asn": null, "ip": "12.122.3.70", "name": "sffca22crs.ip.att.net", "rtt": 160.459}, {"annotation": null, "asn": null, "ip": "12.122.3.70", "name": "sffca22crs.ip.att.net", "rtt": 32.274}]}, {"hop": 6, "probes": [{"annotation": null, "asn": null, "ip": "12.122.163.61", "name": "12.122.163.61", "rtt": 143.143}, {"annotation": null, "asn": null, "ip": "12.122.163.61", "name": "12.122.163.61", "rtt": 27.034}, {"annotation": null, "asn": null, "ip": "12.122.163.61", "name": "12.122.163.61", "rtt": 152.676}]}, {"hop": 7, "probes": [{"annotation": null, "asn": null, "ip": "12.255.10.234", "name": "12.255.10.234", "rtt": 24.912}, {"annotation": null, "asn": null, "ip": "12.255.10.234", "name": "12.255.10.234", "rtt": 23.802}, {"annotation": null, "asn": null, "ip": "12.255.10.234", "name": "12.255.10.234", "rtt": 157.338}]}, {"hop": 8, "probes": []}, {"hop": 9, "probes": [{"annotation": null, "asn": null, "ip": "8.8.8.8", "name": "dns.google", "rtt": 30.84}, {"annotation": null, "asn": null, "ip": "8.8.8.8", "name": "dns.google", "rtt": 22.503}, {"annotation": null, "asn": null, "ip": "8.8.8.8", "name": "dns.google", "rtt": 23.538}]}]} jc-1.17.3/tests/fixtures/osx-10.14.6/traceroute.out000066400000000000000000000011031415226333200215320ustar00rootroot00000000000000traceroute to 8.8.8.8 (8.8.8.8), 64 hops max, 52 byte packets 1 dsldevice (192.168.1.254) 12.070 ms 4.328 ms 4.167 ms 2 76-220-24-1.lightspeed.sntcca.sbcglobal.net (76.220.24.1) 20.595 ms 26.130 ms 28.555 ms 3 * * * 4 12.122.149.186 (12.122.149.186) 149.663 ms 27.761 ms 160.709 ms 5 sffca22crs.ip.att.net (12.122.3.70) 27.131 ms 160.459 ms 32.274 ms 6 12.122.163.61 (12.122.163.61) 143.143 ms 27.034 ms 152.676 ms 7 12.255.10.234 (12.255.10.234) 24.912 ms 23.802 ms 157.338 ms 8 * * * 9 dns.google (8.8.8.8) 30.840 ms 22.503 ms 23.538 ms jc-1.17.3/tests/fixtures/osx-10.14.6/traceroute6-mult-addresses.json000066400000000000000000000015331415226333200247230ustar00rootroot00000000000000{"destination_ip": "2a04:4e42:200::323", "destination_name": "turner-tls.map.fastly.net", "hops": [{"hop": 1, "probes": []}, {"hop": 2, "probes": [{"annotation": null, "asn": null, "ip": "2001:506:6000:11b:71:156:212:143", "name": null, "rtt": 27.635}, {"annotation": null, "asn": null, "ip": "2001:506:6000:11b:71:156:212:143", "name": null, "rtt": 20.383}, {"annotation": null, "asn": null, "ip": "2001:506:6000:11b:71:156:212:143", "name": null, "rtt": 23.438}]}, {"hop": 3, "probes": []}, {"hop": 4, "probes": [{"annotation": null, "asn": null, "ip": "2001:1890:ff:ff08:12:242:117:16", "name": null, "rtt": 20.118}, {"annotation": null, "asn": null, "ip": "2001:1890:ff:ff08:12:242:117:16", "name": null, "rtt": 20.327}, {"annotation": null, "asn": null, "ip": "2001:1890:ff:ff08:12:242:117:16", "name": null, "rtt": 21.213}]}, {"hop": 5, "probes": []}]} jc-1.17.3/tests/fixtures/osx-10.14.6/traceroute6-mult-addresses.out000066400000000000000000000006211415226333200245560ustar00rootroot00000000000000traceroute6: Warning: turner-tls.map.fastly.net has multiple addresses; using 2a04:4e42:200::323 traceroute6 to turner-tls.map.fastly.net (2a04:4e42:200::323) from 2600:1700:bab0:d40:985:f00a:98bd:f142, 5 hops max, 12 byte packets 1 * * * 2 2001:506:6000:11b:71:156:212:143 27.635 ms 20.383 ms 23.438 ms 3 * * * 4 2001:1890:ff:ff08:12:242:117:16 20.118 ms 20.327 ms 21.213 ms 5 * * * jc-1.17.3/tests/fixtures/osx-10.14.6/traceroute6.json000066400000000000000000000015331415226333200217710ustar00rootroot00000000000000{"destination_ip": "2a04:4e42:200::323", "destination_name": "turner-tls.map.fastly.net", "hops": [{"hop": 1, "probes": []}, {"hop": 2, "probes": [{"annotation": null, "asn": null, "ip": "2001:506:6000:11b:71:156:212:143", "name": null, "rtt": 27.635}, {"annotation": null, "asn": null, "ip": "2001:506:6000:11b:71:156:212:143", "name": null, "rtt": 20.383}, {"annotation": null, "asn": null, "ip": "2001:506:6000:11b:71:156:212:143", "name": null, "rtt": 23.438}]}, {"hop": 3, "probes": []}, {"hop": 4, "probes": [{"annotation": null, "asn": null, "ip": "2001:1890:ff:ff08:12:242:117:16", "name": null, "rtt": 20.118}, {"annotation": null, "asn": null, "ip": "2001:1890:ff:ff08:12:242:117:16", "name": null, "rtt": 20.327}, {"annotation": null, "asn": null, "ip": "2001:1890:ff:ff08:12:242:117:16", "name": null, "rtt": 21.213}]}, {"hop": 5, "probes": []}]} jc-1.17.3/tests/fixtures/osx-10.14.6/traceroute6.out000066400000000000000000000004601415226333200216250ustar00rootroot00000000000000traceroute6 to turner-tls.map.fastly.net (2a04:4e42:200::323) from 2600:1700:bab0:d40:985:f00a:98bd:f142, 5 hops max, 12 byte packets 1 * * * 2 2001:506:6000:11b:71:156:212:143 27.635 ms 20.383 ms 23.438 ms 3 * * * 4 2001:1890:ff:ff08:12:242:117:16 20.118 ms 20.327 ms 21.213 ms 5 * * * jc-1.17.3/tests/fixtures/osx-10.14.6/uname-a.json000066400000000000000000000003351415226333200210500ustar00rootroot00000000000000{"machine": "x86_64", "kernel_name": "Darwin", "node_name": "kbrazil-mac", "kernel_release": "18.7.0", "kernel_version": "Darwin Kernel Version 18.7.0: Sun Dec 1 18:59:03 PST 2019; root:xnu-4903.278.19~1/RELEASE_X86_64"} jc-1.17.3/tests/fixtures/osx-10.14.6/uname-a.out000077500000000000000000000002031415226333200207030ustar00rootroot00000000000000Darwin kbrazil-mac 18.7.0 Darwin Kernel Version 18.7.0: Sun Dec 1 18:59:03 PST 2019; root:xnu-4903.278.19~1/RELEASE_X86_64 x86_64 jc-1.17.3/tests/fixtures/osx-10.14.6/uname.out000066400000000000000000000000071415226333200204640ustar00rootroot00000000000000Darwin jc-1.17.3/tests/fixtures/osx-10.14.6/uptime.json000066400000000000000000000004051415226333200210260ustar00rootroot00000000000000{"time": "10:15", "uptime": "20 days, 19:45", "users": 8, "load_1m": 1.63, "load_5m": 0.65, "load_15m": 0.44, "time_hour": 10, "time_minute": 15, "time_second": null, "uptime_days": 20, "uptime_hours": 19, "uptime_minutes": 45, "uptime_total_seconds": 1799100} jc-1.17.3/tests/fixtures/osx-10.14.6/uptime.out000077500000000000000000000001011415226333200206600ustar00rootroot0000000000000010:15 up 20 days, 19:45, 8 users, load averages: 1.63 0.65 0.44 jc-1.17.3/tests/fixtures/osx-10.14.6/w.json000066400000000000000000000015041415226333200177720ustar00rootroot00000000000000[{"user": "kelly", "tty": "console", "from": null, "login_at": "22Nov19", "idle": "20days", "what": null}, {"user": "kelly", "tty": "s000", "from": null, "login_at": "Wed16", "idle": null, "what": "ssh localhost"}, {"user": "kelly", "tty": "s001", "from": "127.0.0.1", "login_at": "10:14", "idle": null, "what": "-bash"}, {"user": "kelly", "tty": "s002", "from": null, "login_at": "10:14", "idle": null, "what": "ssh 127.0.0.1"}, {"user": "kelly", "tty": "s003", "from": "127.0.0.1", "login_at": "10:14", "idle": null, "what": "-bash"}, {"user": "kelly", "tty": "s004", "from": null, "login_at": "10:14", "idle": null, "what": "ssh ::1"}, {"user": "kelly", "tty": "s005", "from": "::1", "login_at": "10:15", "idle": null, "what": "-bash"}, {"user": "kelly", "tty": "s006", "from": null, "login_at": "10:15", "idle": null, "what": "w"}] jc-1.17.3/tests/fixtures/osx-10.14.6/w.out000077500000000000000000000010721415226333200176330ustar00rootroot0000000000000010:15 up 20 days, 19:44, 8 users, load averages: 0.86 0.45 0.37 USER TTY FROM LOGIN@ IDLE WHAT kelly console - 22Nov19 20days - kelly s000 - Wed16 - ssh localhost kelly s001 127.0.0.1 10:14 - -bash kelly s002 - 10:14 - ssh 127.0.0.1 kelly s003 127.0.0.1 10:14 - -bash kelly s004 - 10:14 - ssh ::1 kelly s005 ::1 10:15 - -bash kelly s006 - 10:15 - w jc-1.17.3/tests/fixtures/osx-10.14.6/wc-stdin.json000066400000000000000000000000771415226333200212600ustar00rootroot00000000000000[{"filename": null, "lines": 1, "words": 2, "characters": 12}] jc-1.17.3/tests/fixtures/osx-10.14.6/wc-stdin.out000066400000000000000000000000311415226333200211040ustar00rootroot00000000000000 1 2 12 jc-1.17.3/tests/fixtures/osx-10.14.6/wc.json000066400000000000000000000264551415226333200201510ustar00rootroot00000000000000[{"filename": "airport-I.json", "lines": 1, "words": 30, "characters": 307}, {"filename": "airport-I.out", "lines": 15, "words": 33, "characters": 348}, {"filename": "airport-s.json", "lines": 1, "words": 202, "characters": 2152}, {"filename": "airport-s.out", "lines": 15, "words": 112, "characters": 1423}, {"filename": "arp-a.json", "lines": 98, "words": 170, "characters": 2140}, {"filename": "arp-a.out", "lines": 12, "words": 99, "characters": 968}, {"filename": "arp-a2.json", "lines": 1, "words": 240, "characters": 2979}, {"filename": "arp-a2.out", "lines": 20, "words": 162, "characters": 1597}, {"filename": "cksum.json", "lines": 1, "words": 870, "characters": 10244}, {"filename": "cksum.out", "lines": 145, "words": 435, "characters": 4298}, {"filename": "df-h.json", "lines": 1, "words": 147, "characters": 1686}, {"filename": "df-h.out", "lines": 9, "words": 85, "characters": 1276}, {"filename": "df.json", "lines": 1, "words": 147, "characters": 1764}, {"filename": "df.out", "lines": 9, "words": 85, "characters": 1384}, {"filename": "dig-aaaa.json", "lines": 1, "words": 49, "characters": 438}, {"filename": "dig-aaaa.out", "lines": 20, "words": 80, "characters": 536}, {"filename": "dig-axfr.json", "lines": 1, "words": 585, "characters": 5984}, {"filename": "dig-axfr.out", "lines": 59, "words": 382, "characters": 3511}, {"filename": "dig-x.json", "lines": 1, "words": 49, "characters": 442}, {"filename": "dig-x.out", "lines": 20, "words": 80, "characters": 529}, {"filename": "dig.json", "lines": 1, "words": 138, "characters": 1266}, {"filename": "dig.out", "lines": 41, "words": 169, "characters": 1182}, {"filename": "du.json", "lines": 1, "words": 13448, "characters": 295780}, {"filename": "du.out", "lines": 3357, "words": 6734, "characters": 221925}, {"filename": "file.json", "lines": 1, "words": 370, "characters": 3589}, {"filename": "file.out", "lines": 53, "words": 264, "characters": 2890}, {"filename": "file2.json", "lines": 1, "words": 458, "characters": 4715}, {"filename": "file2.out", "lines": 88, "words": 282, "characters": 4780}, {"filename": "group.json", "lines": 1, "words": 1015, "characters": 9646}, {"filename": "group.out", "lines": 135, "words": 174, "characters": 2823}, {"filename": "id.json", "lines": 1, "words": 79, "characters": 759}, {"filename": "id.out", "lines": 1, "words": 3, "characters": 386}, {"filename": "ifconfig.json", "lines": 1, "words": 1107, "characters": 10823}, {"filename": "ifconfig.out", "lines": 91, "words": 331, "characters": 3779}, {"filename": "ifconfig2.json", "lines": 1, "words": 1162, "characters": 11375}, {"filename": "ifconfig2.out", "lines": 95, "words": 349, "characters": 3979}, {"filename": "last.json", "lines": 1, "words": 5483, "characters": 45274}, {"filename": "last.out", "lines": 383, "words": 3261, "characters": 25827}, {"filename": "ls-R-newlines.json", "lines": 1, "words": 88, "characters": 852}, {"filename": "ls-R-newlines.out", "lines": 36, "words": 43, "characters": 278}, {"filename": "ls-R.json", "lines": 1, "words": 18354, "characters": 469418}, {"filename": "ls-R.out", "lines": 5017, "words": 4805, "characters": 133787}, {"filename": "ls-al.json", "lines": 1, "words": 550, "characters": 4653}, {"filename": "ls-al.out", "lines": 35, "words": 314, "characters": 2111}, {"filename": "ls-alR.json", "lines": 1, "words": 82256, "characters": 959674}, {"filename": "ls-alR.out", "lines": 4996, "words": 41842, "characters": 364578}, {"filename": "ls-alh.json", "lines": 1, "words": 550, "characters": 4684}, {"filename": "ls-alh.out", "lines": 35, "words": 314, "characters": 2111}, {"filename": "ls-glob.json", "lines": 1, "words": 7272, "characters": 91544}, {"filename": "ls-glob.out", "lines": 1831, "words": 1825, "characters": 19369}, {"filename": "ls-l-newlines.json", "lines": 1, "words": 138, "characters": 1162}, {"filename": "ls-l-newlines.out", "lines": 34, "words": 99, "characters": 583}, {"filename": "ls-lR-empty-folder.json", "lines": 1, "words": 34164, "characters": 355547}, {"filename": "ls-lR-empty-folder.out", "lines": 2453, "words": 17640, "characters": 128740}, {"filename": "ls-lR-newlines.json", "lines": 1, "words": 168, "characters": 1450}, {"filename": "ls-lR-newlines.out", "lines": 38, "words": 111, "characters": 656}, {"filename": "ls-newlines.json", "lines": 1, "words": 56, "characters": 498}, {"filename": "ls-newlines.out", "lines": 33, "words": 41, "characters": 260}, {"filename": "ls.json", "lines": 1, "words": 46, "characters": 585}, {"filename": "ls.out", "lines": 23, "words": 23, "characters": 193}, {"filename": "md5.json", "lines": 1, "words": 416, "characters": 7764}, {"filename": "md5.out", "lines": 104, "words": 416, "characters": 5683}, {"filename": "mount.json", "lines": 1, "words": 55, "characters": 672}, {"filename": "mount.out", "lines": 6, "words": 43, "characters": 349}, {"filename": "mount2.json", "lines": 1, "words": 66, "characters": 841}, {"filename": "mount2.out", "lines": 7, "words": 52, "characters": 464}, {"filename": "netstat-Abn.json", "lines": 1, "words": 15133, "characters": 151042}, {"filename": "netstat-Abn.out", "lines": 689, "words": 5961, "characters": 76835}, {"filename": "netstat-An.json", "lines": 1, "words": 14085, "characters": 142438}, {"filename": "netstat-An.out", "lines": 689, "words": 5431, "characters": 71005}, {"filename": "netstat-i.json", "lines": 1, "words": 840, "characters": 7246}, {"filename": "netstat-i.out", "lines": 43, "words": 376, "characters": 3354}, {"filename": "netstat-r.json", "lines": 1, "words": 1456, "characters": 16929}, {"filename": "netstat-r.out", "lines": 93, "words": 435, "characters": 6178}, {"filename": "netstat-rnl.json", "lines": 1, "words": 1940, "characters": 21015}, {"filename": "netstat-rnl.out", "lines": 96, "words": 667, "characters": 10055}, {"filename": "netstat.json", "lines": 1, "words": 14100, "characters": 141195}, {"filename": "netstat.out", "lines": 737, "words": 5316, "characters": 70387}, {"filename": "passwd.json", "lines": 1, "words": 1517, "characters": 14855}, {"filename": "passwd.out", "lines": 108, "words": 292, "characters": 6804}, {"filename": "ping-hostname-p.json", "lines": 1, "words": 67, "characters": 714}, {"filename": "ping-hostname-p.out", "lines": 9, "words": 51, "characters": 400}, {"filename": "ping-hostname-s.json", "lines": 1, "words": 67, "characters": 714}, {"filename": "ping-hostname-s.out", "lines": 8, "words": 49, "characters": 389}, {"filename": "ping-hostname.json", "lines": 1, "words": 67, "characters": 706}, {"filename": "ping-hostname.out", "lines": 8, "words": 49, "characters": 381}, {"filename": "ping-ip-dup.json", "lines": 1, "words": 235, "characters": 2251}, {"filename": "ping-ip-dup.out", "lines": 20, "words": 147, "characters": 1156}, {"filename": "ping-ip-p.json", "lines": 1, "words": 67, "characters": 691}, {"filename": "ping-ip-p.out", "lines": 9, "words": 51, "characters": 381}, {"filename": "ping-ip-s.json", "lines": 1, "words": 67, "characters": 699}, {"filename": "ping-ip-s.out", "lines": 8, "words": 49, "characters": 375}, {"filename": "ping-ip.json", "lines": 1, "words": 67, "characters": 689}, {"filename": "ping-ip.out", "lines": 8, "words": 49, "characters": 367}, {"filename": "ping6-hostname-p.json", "lines": 1, "words": 69, "characters": 786}, {"filename": "ping6-hostname-p.out", "lines": 9, "words": 50, "characters": 460}, {"filename": "ping6-hostname-s.json", "lines": 1, "words": 69, "characters": 788}, {"filename": "ping6-hostname-s.out", "lines": 8, "words": 48, "characters": 449}, {"filename": "ping6-hostname.json", "lines": 1, "words": 69, "characters": 784}, {"filename": "ping6-hostname.out", "lines": 8, "words": 48, "characters": 446}, {"filename": "ping6-ip-dup.json", "lines": 1, "words": 909, "characters": 9447}, {"filename": "ping6-ip-dup.out", "lines": 68, "words": 530, "characters": 5225}, {"filename": "ping6-ip-p.json", "lines": 1, "words": 69, "characters": 683}, {"filename": "ping6-ip-p.out", "lines": 9, "words": 50, "characters": 355}, {"filename": "ping6-ip-s.json", "lines": 1, "words": 69, "characters": 688}, {"filename": "ping6-ip-s.out", "lines": 8, "words": 48, "characters": 352}, {"filename": "ping6-ip.json", "lines": 1, "words": 69, "characters": 681}, {"filename": "ping6-ip.out", "lines": 8, "words": 48, "characters": 341}, {"filename": "pip-list.json", "lines": 1, "words": 20, "characters": 224}, {"filename": "pip-list.out", "lines": 7, "words": 14, "characters": 168}, {"filename": "pip-show.json", "lines": 1, "words": 84, "characters": 1067}, {"filename": "pip-show.out", "lines": 32, "words": 82, "characters": 910}, {"filename": "ps-axu.json", "lines": 1, "words": 8641, "characters": 99173}, {"filename": "ps-axu.out", "lines": 378, "words": 4505, "characters": 60107}, {"filename": "ps-ef.json", "lines": 1, "words": 6379, "characters": 71162}, {"filename": "ps-ef.out", "lines": 378, "words": 3371, "characters": 48758}, {"filename": "shasum.json", "lines": 1, "words": 568, "characters": 11817}, {"filename": "shasum.out", "lines": 142, "words": 284, "characters": 7982}, {"filename": "stat.json", "lines": 1, "words": 4136, "characters": 35152}, {"filename": "stat.out", "lines": 94, "words": 2632, "characters": 15599}, {"filename": "sum.json", "lines": 1, "words": 876, "characters": 9234}, {"filename": "sum.out", "lines": 146, "words": 438, "characters": 3247}, {"filename": "sysctl-a.json", "lines": 1, "words": 2793, "characters": 46473}, {"filename": "sysctl-a.out", "lines": 1287, "words": 2785, "characters": 42505}, {"filename": "traceroute-asn.json", "lines": 1, "words": 108, "characters": 1123}, {"filename": "traceroute-asn.out", "lines": 5, "words": 44, "characters": 323}, {"filename": "traceroute-mult-addresses.json", "lines": 1, "words": 75, "characters": 807}, {"filename": "traceroute-mult-addresses.out", "lines": 4, "words": 39, "characters": 305}, {"filename": "traceroute-no-header.json", "lines": 1, "words": 75, "characters": 793}, {"filename": "traceroute-no-header.out", "lines": 3, "words": 22, "characters": 166}, {"filename": "traceroute-q.json", "lines": 1, "words": 115, "characters": 1240}, {"filename": "traceroute-q.out", "lines": 4, "words": 42, "characters": 272}, {"filename": "traceroute.json", "lines": 1, "words": 244, "characters": 2419}, {"filename": "traceroute.out", "lines": 11, "words": 81, "characters": 579}, {"filename": "traceroute6-mult-addresses.json", "lines": 1, "words": 83, "characters": 859}, {"filename": "traceroute6-mult-addresses.out", "lines": 8, "words": 48, "characters": 401}, {"filename": "traceroute6.json", "lines": 1, "words": 83, "characters": 859}, {"filename": "traceroute6.out", "lines": 7, "words": 40, "characters": 304}, {"filename": "uname-a.json", "lines": 1, "words": 20, "characters": 221}, {"filename": "uname-a.out", "lines": 1, "words": 15, "characters": 131}, {"filename": "uname.out", "lines": 1, "words": 1, "characters": 7}, {"filename": "uptime.json", "lines": 1, "words": 14, "characters": 110}, {"filename": "uptime.out", "lines": 1, "words": 12, "characters": 65}, {"filename": "w.json", "lines": 1, "words": 99, "characters": 836}, {"filename": "w.out", "lines": 10, "words": 69, "characters": 570}, {"filename": "who-a.json", "lines": 1, "words": 86, "characters": 659}, {"filename": "who-a.out", "lines": 9, "words": 62, "characters": 419}, {"filename": "who.json", "lines": 1, "words": 32, "characters": 251}, {"filename": "who.out", "lines": 4, "words": 20, "characters": 128}, {"filename": "total", "lines": 24562, "words": 360529, "characters": 4491471}] jc-1.17.3/tests/fixtures/osx-10.14.6/wc.out000066400000000000000000000133241415226333200177760ustar00rootroot00000000000000 1 30 307 airport-I.json 15 33 348 airport-I.out 1 202 2152 airport-s.json 15 112 1423 airport-s.out 98 170 2140 arp-a.json 12 99 968 arp-a.out 1 240 2979 arp-a2.json 20 162 1597 arp-a2.out 1 870 10244 cksum.json 145 435 4298 cksum.out 1 147 1686 df-h.json 9 85 1276 df-h.out 1 147 1764 df.json 9 85 1384 df.out 1 49 438 dig-aaaa.json 20 80 536 dig-aaaa.out 1 585 5984 dig-axfr.json 59 382 3511 dig-axfr.out 1 49 442 dig-x.json 20 80 529 dig-x.out 1 138 1266 dig.json 41 169 1182 dig.out 1 13448 295780 du.json 3357 6734 221925 du.out 1 370 3589 file.json 53 264 2890 file.out 1 458 4715 file2.json 88 282 4780 file2.out 1 1015 9646 group.json 135 174 2823 group.out 1 79 759 id.json 1 3 386 id.out 1 1107 10823 ifconfig.json 91 331 3779 ifconfig.out 1 1162 11375 ifconfig2.json 95 349 3979 ifconfig2.out 1 5483 45274 last.json 383 3261 25827 last.out 1 88 852 ls-R-newlines.json 36 43 278 ls-R-newlines.out 1 18354 469418 ls-R.json 5017 4805 133787 ls-R.out 1 550 4653 ls-al.json 35 314 2111 ls-al.out 1 82256 959674 ls-alR.json 4996 41842 364578 ls-alR.out 1 550 4684 ls-alh.json 35 314 2111 ls-alh.out 1 7272 91544 ls-glob.json 1831 1825 19369 ls-glob.out 1 138 1162 ls-l-newlines.json 34 99 583 ls-l-newlines.out 1 34164 355547 ls-lR-empty-folder.json 2453 17640 128740 ls-lR-empty-folder.out 1 168 1450 ls-lR-newlines.json 38 111 656 ls-lR-newlines.out 1 56 498 ls-newlines.json 33 41 260 ls-newlines.out 1 46 585 ls.json 23 23 193 ls.out 1 416 7764 md5.json 104 416 5683 md5.out 1 55 672 mount.json 6 43 349 mount.out 1 66 841 mount2.json 7 52 464 mount2.out 1 15133 151042 netstat-Abn.json 689 5961 76835 netstat-Abn.out 1 14085 142438 netstat-An.json 689 5431 71005 netstat-An.out 1 840 7246 netstat-i.json 43 376 3354 netstat-i.out 1 1456 16929 netstat-r.json 93 435 6178 netstat-r.out 1 1940 21015 netstat-rnl.json 96 667 10055 netstat-rnl.out 1 14100 141195 netstat.json 737 5316 70387 netstat.out 1 1517 14855 passwd.json 108 292 6804 passwd.out 1 67 714 ping-hostname-p.json 9 51 400 ping-hostname-p.out 1 67 714 ping-hostname-s.json 8 49 389 ping-hostname-s.out 1 67 706 ping-hostname.json 8 49 381 ping-hostname.out 1 235 2251 ping-ip-dup.json 20 147 1156 ping-ip-dup.out 1 67 691 ping-ip-p.json 9 51 381 ping-ip-p.out 1 67 699 ping-ip-s.json 8 49 375 ping-ip-s.out 1 67 689 ping-ip.json 8 49 367 ping-ip.out 1 69 786 ping6-hostname-p.json 9 50 460 ping6-hostname-p.out 1 69 788 ping6-hostname-s.json 8 48 449 ping6-hostname-s.out 1 69 784 ping6-hostname.json 8 48 446 ping6-hostname.out 1 909 9447 ping6-ip-dup.json 68 530 5225 ping6-ip-dup.out 1 69 683 ping6-ip-p.json 9 50 355 ping6-ip-p.out 1 69 688 ping6-ip-s.json 8 48 352 ping6-ip-s.out 1 69 681 ping6-ip.json 8 48 341 ping6-ip.out 1 20 224 pip-list.json 7 14 168 pip-list.out 1 84 1067 pip-show.json 32 82 910 pip-show.out 1 8641 99173 ps-axu.json 378 4505 60107 ps-axu.out 1 6379 71162 ps-ef.json 378 3371 48758 ps-ef.out 1 568 11817 shasum.json 142 284 7982 shasum.out 1 4136 35152 stat.json 94 2632 15599 stat.out 1 876 9234 sum.json 146 438 3247 sum.out 1 2793 46473 sysctl-a.json 1287 2785 42505 sysctl-a.out 1 108 1123 traceroute-asn.json 5 44 323 traceroute-asn.out 1 75 807 traceroute-mult-addresses.json 4 39 305 traceroute-mult-addresses.out 1 75 793 traceroute-no-header.json 3 22 166 traceroute-no-header.out 1 115 1240 traceroute-q.json 4 42 272 traceroute-q.out 1 244 2419 traceroute.json 11 81 579 traceroute.out 1 83 859 traceroute6-mult-addresses.json 8 48 401 traceroute6-mult-addresses.out 1 83 859 traceroute6.json 7 40 304 traceroute6.out 1 20 221 uname-a.json 1 15 131 uname-a.out 1 1 7 uname.out 1 14 110 uptime.json 1 12 65 uptime.out 1 99 836 w.json 10 69 570 w.out 1 86 659 who-a.json 9 62 419 who-a.out 1 32 251 who.json 4 20 128 who.out 24562 360529 4491471 total jc-1.17.3/tests/fixtures/osx-10.14.6/who-a.json000066400000000000000000000012511415226333200205360ustar00rootroot00000000000000[{"event":"reboot","time":"Feb 7 23:31","pid":1,"epoch":null},{"user":"kbrazil","tty":"console","time":"Feb 7 23:32","idle":"old","pid":105,"epoch":null},{"user":"kbrazil","tty":"ttys000","time":"Feb 13 16:44","idle":"00:02","pid":51217,"comment":"term=0 exit=0","epoch":null},{"user":"kbrazil","tty":"ttys001","time":"Feb 11 21:25","idle":"00:02","pid":81390,"epoch":null},{"user":"kbrazil","tty":"ttys002","time":"Mar 1 15:18","idle":".","pid":9574,"epoch":null},{"user":"kbrazil","tty":"ttys003","time":"Feb 28 08:59","idle":"01:06","pid":41402,"epoch":null},{"user":"kbrazil","tty":"ttys004","time":"Mar 1 17:11","idle":".","pid":15679,"comment":"term=0 exit=0","epoch":null}] jc-1.17.3/tests/fixtures/osx-10.14.6/who-a.out000066400000000000000000000006431415226333200204000ustar00rootroot00000000000000USER LINE WHEN IDLE PID COMMENT reboot ~ Feb 7 23:31 . 1 kbrazil console Feb 7 23:32 old 105 kbrazil ttys000 Feb 13 16:44 00:02 51217 term=0 exit=0 kbrazil ttys001 Feb 11 21:25 00:02 81390 kbrazil ttys002 Mar 1 15:18 . 9574 kbrazil ttys003 Feb 28 08:59 01:06 41402 kbrazil ttys004 Mar 1 17:11 . 15679 term=0 exit=0 . run-level 3 jc-1.17.3/tests/fixtures/osx-10.14.6/who.json000066400000000000000000000004301415226333200203160ustar00rootroot00000000000000[{"user":"kbrazil","tty":"console","time":"Feb 7 23:32","epoch":null},{"user":"kbrazil","tty":"ttys001","time":"Feb 11 21:25","epoch":null},{"user":"kbrazil","tty":"ttys002","time":"Mar 1 15:18","epoch":null},{"user":"kbrazil","tty":"ttys003","time":"Feb 28 08:59","epoch":null}] jc-1.17.3/tests/fixtures/osx-10.14.6/who.out000066400000000000000000000002001415226333200201470ustar00rootroot00000000000000kbrazil console Feb 7 23:32 kbrazil ttys001 Feb 11 21:25 kbrazil ttys002 Mar 1 15:18 kbrazil ttys003 Feb 28 08:59 jc-1.17.3/tests/fixtures/pi/000077500000000000000000000000001415226333200156235ustar00rootroot00000000000000jc-1.17.3/tests/fixtures/pi/ping-ip-O-D-streaming.json000066400000000000000000000010021415226333200224160ustar00rootroot00000000000000[{"type":"timeout","destination_ip":"192.168.120.164","sent_bytes":56,"pattern":null,"timestamp":1596585008.591169,"icmp_seq":1},{"type":"timeout","destination_ip":"192.168.120.164","sent_bytes":56,"pattern":null,"timestamp":1596585009.631169,"icmp_seq":2},{"type":"timeout","destination_ip":"192.168.120.164","sent_bytes":56,"pattern":null,"timestamp":1596585010.671173,"icmp_seq":3},{"type":"timeout","destination_ip":"192.168.120.164","sent_bytes":56,"pattern":null,"timestamp":1596585011.711167,"icmp_seq":4}] jc-1.17.3/tests/fixtures/pi/ping-ip-O-D.json000066400000000000000000000007751415226333200204470ustar00rootroot00000000000000{"destination_ip": "192.168.120.164", "data_bytes": 56, "pattern": null, "destination": "192.168.120.164", "packets_transmitted": 5, "packets_received": 0, "packet_loss_percent": 100.0, "duplicates": 0, "time_ms": 4154.0, "responses": [{"type": "timeout", "timestamp": 1596585008.591169, "icmp_seq": 1}, {"type": "timeout", "timestamp": 1596585009.631169, "icmp_seq": 2}, {"type": "timeout", "timestamp": 1596585010.671173, "icmp_seq": 3}, {"type": "timeout", "timestamp": 1596585011.711167, "icmp_seq": 4}]} jc-1.17.3/tests/fixtures/pi/ping-ip-O-D.out000066400000000000000000000005551415226333200203010ustar00rootroot00000000000000PING 192.168.120.164 (192.168.120.164) 56(84) bytes of data. [1596585008.591169] no answer yet for icmp_seq=1 [1596585009.631169] no answer yet for icmp_seq=2 [1596585010.671173] no answer yet for icmp_seq=3 [1596585011.711167] no answer yet for icmp_seq=4 --- 192.168.120.164 ping statistics --- 5 packets transmitted, 0 received, 100% packet loss, time 4154ms jc-1.17.3/tests/fixtures/pi/ping-ip-O-streaming.json000066400000000000000000000007161415226333200222500ustar00rootroot00000000000000[{"type":"timeout","destination_ip":"192.168.120.164","sent_bytes":56,"pattern":null,"timestamp":null,"icmp_seq":1},{"type":"timeout","destination_ip":"192.168.120.164","sent_bytes":56,"pattern":null,"timestamp":null,"icmp_seq":2},{"type":"timeout","destination_ip":"192.168.120.164","sent_bytes":56,"pattern":null,"timestamp":null,"icmp_seq":3},{"type":"timeout","destination_ip":"192.168.120.164","sent_bytes":56,"pattern":null,"timestamp":null,"icmp_seq":4}] jc-1.17.3/tests/fixtures/pi/ping-ip-O.json000066400000000000000000000007111415226333200202540ustar00rootroot00000000000000{"destination_ip": "192.168.120.164", "data_bytes": 56, "pattern": null, "destination": "192.168.120.164", "packets_transmitted": 5, "packets_received": 0, "packet_loss_percent": 100.0, "duplicates": 0, "time_ms": 4149.0, "responses": [{"type": "timeout", "timestamp": null, "icmp_seq": 1}, {"type": "timeout", "timestamp": null, "icmp_seq": 2}, {"type": "timeout", "timestamp": null, "icmp_seq": 3}, {"type": "timeout", "timestamp": null, "icmp_seq": 4}]} jc-1.17.3/tests/fixtures/pi/ping-ip-O.out000066400000000000000000000004351415226333200201150ustar00rootroot00000000000000PING 192.168.120.164 (192.168.120.164) 56(84) bytes of data. no answer yet for icmp_seq=1 no answer yet for icmp_seq=2 no answer yet for icmp_seq=3 no answer yet for icmp_seq=4 --- 192.168.120.164 ping statistics --- 5 packets transmitted, 0 received, 100% packet loss, time 4149ms jc-1.17.3/tests/fixtures/ubuntu-18.04/000077500000000000000000000000001415226333200172055ustar00rootroot00000000000000jc-1.17.3/tests/fixtures/ubuntu-18.04/acpi-V.json000066400000000000000000000001601415226333200212140ustar00rootroot00000000000000[{"type": "Adapter", "id": 0, "on-line": true}, {"type": "Cooling", "id": 0, "messages": ["Processor 0 of 7"]}] jc-1.17.3/tests/fixtures/ubuntu-18.04/acpi-V.out000066400000000000000000000000571415226333200210570ustar00rootroot00000000000000Adapter 0: on-line Cooling 0: Processor 0 of 7 jc-1.17.3/tests/fixtures/ubuntu-18.04/arp-a.json000066400000000000000000000005371415226333200211050ustar00rootroot00000000000000[{"name": null, "address": "192.168.71.1", "hwtype": "ether", "hwaddress": "00:50:56:c0:00:08", "iface": "ens33"}, {"name": null, "address": "192.168.71.254", "hwtype": "ether", "hwaddress": "00:50:56:fe:7a:b4", "iface": "ens33"}, {"name": "_gateway", "address": "192.168.71.2", "hwtype": "ether", "hwaddress": "00:50:56:f7:4a:fc", "iface": "ens33"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/arp-a.out000066400000000000000000000002561415226333200207410ustar00rootroot00000000000000? (192.168.71.1) at 00:50:56:c0:00:08 [ether] on ens33 ? (192.168.71.254) at 00:50:56:fe:7a:b4 [ether] on ens33 _gateway (192.168.71.2) at 00:50:56:f7:4a:fc [ether] on ens33 jc-1.17.3/tests/fixtures/ubuntu-18.04/arp-v.json000066400000000000000000000003551415226333200211300ustar00rootroot00000000000000[{"address": "192.168.71.254", "hwtype": "ether", "hwaddress": "00:50:56:fe:7a:b4", "flags_mask": "C", "iface": "ens33"}, {"address": "_gateway", "hwtype": "ether", "hwaddress": "00:50:56:f7:4a:fc", "flags_mask": "C", "iface": "ens33"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/arp-v.out000066400000000000000000000004221415226333200207610ustar00rootroot00000000000000Address HWtype HWaddress Flags Mask Iface 192.168.71.254 ether 00:50:56:fe:7a:b4 C ens33 _gateway ether 00:50:56:f7:4a:fc C ens33 Entries: 2 Skipped: 0 Found: 2 jc-1.17.3/tests/fixtures/ubuntu-18.04/arp.json000066400000000000000000000003551415226333200206650ustar00rootroot00000000000000[{"address": "192.168.71.254", "hwtype": "ether", "hwaddress": "00:50:56:fe:7a:b4", "flags_mask": "C", "iface": "ens33"}, {"address": "_gateway", "hwtype": "ether", "hwaddress": "00:50:56:f7:4a:fc", "flags_mask": "C", "iface": "ens33"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/arp.out000066400000000000000000000003631415226333200205220ustar00rootroot00000000000000Address HWtype HWaddress Flags Mask Iface 192.168.71.254 ether 00:50:56:fe:7a:b4 C ens33 _gateway ether 00:50:56:f7:4a:fc C ens33 jc-1.17.3/tests/fixtures/ubuntu-18.04/blkid-ip-multi.json000066400000000000000000000014621415226333200227260ustar00rootroot00000000000000[{"device": "/dev/sda2", "uuid": "011527a0-c72a-4c00-a50e-ee90da26b6e2", "version": "1.0", "type": "ext4", "usage": "filesystem", "minimum_io_size": 512, "physical_sector_size": 512, "logical_sector_size": 512, "part_entry_scheme": "gpt", "part_entry_uuid": "744589e8-5711-4750-9984-c34d66f93879", "part_entry_type": "0fc63daf-8483-4772-8e79-3d69d8477de4", "part_entry_number": 2, "part_entry_offset": 4096, "part_entry_size": 41936896, "part_entry_disk": "8:0"}, {"device": "/dev/sda1", "minimum_io_size": 512, "physical_sector_size": 512, "logical_sector_size": 512, "part_entry_scheme": "gpt", "part_entry_uuid": "e0614271-c211-4324-a5bc-8e6bcb66da43", "part_entry_type": "21686148-6449-6e6f-744e-656564454649", "part_entry_number": 1, "part_entry_offset": 2048, "part_entry_size": 2048, "part_entry_disk": "8:0"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/blkid-ip-multi.out000066400000000000000000000013151415226333200225610ustar00rootroot00000000000000/dev/sda2: UUID="011527a0-c72a-4c00-a50e-ee90da26b6e2" VERSION="1.0" TYPE="ext4" USAGE="filesystem" MINIMUM_IO_SIZE="512" PHYSICAL_SECTOR_SIZE="512" LOGICAL_SECTOR_SIZE="512" PART_ENTRY_SCHEME="gpt" PART_ENTRY_UUID="744589e8-5711-4750-9984-c34d66f93879" PART_ENTRY_TYPE="0fc63daf-8483-4772-8e79-3d69d8477de4" PART_ENTRY_NUMBER="2" PART_ENTRY_OFFSET="4096" PART_ENTRY_SIZE="41936896" PART_ENTRY_DISK="8:0" /dev/sda1: MINIMUM_IO_SIZE="512" PHYSICAL_SECTOR_SIZE="512" LOGICAL_SECTOR_SIZE="512" PART_ENTRY_SCHEME="gpt" PART_ENTRY_UUID="e0614271-c211-4324-a5bc-8e6bcb66da43" PART_ENTRY_TYPE="21686148-6449-6e6f-744e-656564454649" PART_ENTRY_NUMBER="1" PART_ENTRY_OFFSET="2048" PART_ENTRY_SIZE="2048" PART_ENTRY_DISK="8:0" jc-1.17.3/tests/fixtures/ubuntu-18.04/blkid-ip-udev-multi.json000066400000000000000000000017021415226333200236640ustar00rootroot00000000000000[{"id_fs_uuid": "011527a0-c72a-4c00-a50e-ee90da26b6e2", "id_fs_uuid_enc": "011527a0-c72a-4c00-a50e-ee90da26b6e2", "id_fs_version": "1.0", "id_fs_type": "ext4", "id_fs_usage": "filesystem", "id_iolimit_minimum_io_size": 512, "id_iolimit_physical_sector_size": 512, "id_iolimit_logical_sector_size": 512, "id_part_entry_scheme": "gpt", "id_part_entry_uuid": "744589e8-5711-4750-9984-c34d66f93879", "id_part_entry_type": "0fc63daf-8483-4772-8e79-3d69d8477de4", "id_part_entry_number": 2, "id_part_entry_offset": 4096, "id_part_entry_size": 41936896, "id_part_entry_disk": "8:0"}, {"id_iolimit_minimum_io_size": 512, "id_iolimit_physical_sector_size": 512, "id_iolimit_logical_sector_size": 512, "id_part_entry_scheme": "gpt", "id_part_entry_uuid": "e0614271-c211-4324-a5bc-8e6bcb66da43", "id_part_entry_type": "21686148-6449-6e6f-744e-656564454649", "id_part_entry_number": 1, "id_part_entry_offset": 2048, "id_part_entry_size": 2048, "id_part_entry_disk": "8:0"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/blkid-ip-udev-multi.out000066400000000000000000000015001415226333200235160ustar00rootroot00000000000000ID_FS_UUID=011527a0-c72a-4c00-a50e-ee90da26b6e2 ID_FS_UUID_ENC=011527a0-c72a-4c00-a50e-ee90da26b6e2 ID_FS_VERSION=1.0 ID_FS_TYPE=ext4 ID_FS_USAGE=filesystem ID_IOLIMIT_MINIMUM_IO_SIZE=512 ID_IOLIMIT_PHYSICAL_SECTOR_SIZE=512 ID_IOLIMIT_LOGICAL_SECTOR_SIZE=512 ID_PART_ENTRY_SCHEME=gpt ID_PART_ENTRY_UUID=744589e8-5711-4750-9984-c34d66f93879 ID_PART_ENTRY_TYPE=0fc63daf-8483-4772-8e79-3d69d8477de4 ID_PART_ENTRY_NUMBER=2 ID_PART_ENTRY_OFFSET=4096 ID_PART_ENTRY_SIZE=41936896 ID_PART_ENTRY_DISK=8:0 ID_IOLIMIT_MINIMUM_IO_SIZE=512 ID_IOLIMIT_PHYSICAL_SECTOR_SIZE=512 ID_IOLIMIT_LOGICAL_SECTOR_SIZE=512 ID_PART_ENTRY_SCHEME=gpt ID_PART_ENTRY_UUID=e0614271-c211-4324-a5bc-8e6bcb66da43 ID_PART_ENTRY_TYPE=21686148-6449-6e6f-744e-656564454649 ID_PART_ENTRY_NUMBER=1 ID_PART_ENTRY_OFFSET=2048 ID_PART_ENTRY_SIZE=2048 ID_PART_ENTRY_DISK=8:0 jc-1.17.3/tests/fixtures/ubuntu-18.04/blkid-ip-udev.json000066400000000000000000000010431415226333200225320ustar00rootroot00000000000000[{"id_fs_system_id": "Mac OS X", "id_fs_application_id": "MKISOFS ISO9660/HFS/UDF FILESYSTEM BUILDER & CDRECORD CD/DVD/BluRay CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING", "id_fs_uuid": "2019-08-12-10-17-03-63", "id_fs_uuid_enc": "2019-08-12-10-17-03-63", "id_fs_boot_system_id": "EL TORITO SPECIFICATION", "id_fs_label": "CDROM", "id_fs_label_enc": "CDROM", "id_fs_type": "iso9660", "id_fs_usage": "filesystem", "id_iolimit_minimum_io_size": 2048, "id_iolimit_physical_sector_size": 2048, "id_iolimit_logical_sector_size": 2048}] jc-1.17.3/tests/fixtures/ubuntu-18.04/blkid-ip-udev.out000066400000000000000000000007361415226333200224000ustar00rootroot00000000000000ID_FS_SYSTEM_ID=Mac OS X ID_FS_APPLICATION_ID=MKISOFS ISO9660/HFS/UDF FILESYSTEM BUILDER & CDRECORD CD/DVD/BluRay CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING ID_FS_UUID=2019-08-12-10-17-03-63 ID_FS_UUID_ENC=2019-08-12-10-17-03-63 ID_FS_BOOT_SYSTEM_ID=EL TORITO SPECIFICATION ID_FS_LABEL=CDROM ID_FS_LABEL_ENC=CDROM ID_FS_TYPE=iso9660 ID_FS_USAGE=filesystem ID_IOLIMIT_MINIMUM_IO_SIZE=2048 ID_IOLIMIT_PHYSICAL_SECTOR_SIZE=2048 ID_IOLIMIT_LOGICAL_SECTOR_SIZE=2048 jc-1.17.3/tests/fixtures/ubuntu-18.04/blkid-sda2.json000066400000000000000000000002161415226333200220130ustar00rootroot00000000000000[{"device": "/dev/sda2", "uuid": "011527a0-c72a-4c00-a50e-ee90da26b6e2", "type": "ext4", "partuuid": "744589e8-5711-4750-9984-c34d66f93879"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/blkid-sda2.out000066400000000000000000000001631415226333200216520ustar00rootroot00000000000000/dev/sda2: UUID="011527a0-c72a-4c00-a50e-ee90da26b6e2" TYPE="ext4" PARTUUID="744589e8-5711-4750-9984-c34d66f93879" jc-1.17.3/tests/fixtures/ubuntu-18.04/blkid.json000066400000000000000000000017321415226333200211700ustar00rootroot00000000000000[{"device": "/dev/fd0", "sec_type": "msdos", "uuid": "4F0C-5223", "type": "vfat"}, {"device": "/dev/sda2", "uuid": "011527a0-c72a-4c00-a50e-ee90da26b6e2", "type": "ext4", "partuuid": "744589e8-5711-4750-9984-c34d66f93879"}, {"device": "/dev/sr0", "uuid": "2019-08-12-10-17-03-63", "label": "CDROM", "type": "iso9660"}, {"device": "/dev/sr1", "uuid": "2019-08-05-20-00-00-00", "label": "Ubuntu-Server 18.04.3 LTS amd64", "type": "iso9660", "ptuuid": "2f10bd40", "pttype": "dos"}, {"device": "/dev/loop0", "type": "squashfs"}, {"device": "/dev/loop1", "type": "squashfs"}, {"device": "/dev/loop2", "type": "squashfs"}, {"device": "/dev/loop3", "type": "squashfs"}, {"device": "/dev/loop4", "type": "squashfs"}, {"device": "/dev/loop5", "type": "squashfs"}, {"device": "/dev/loop6", "type": "squashfs"}, {"device": "/dev/loop7", "type": "squashfs"}, {"device": "/dev/loop8", "type": "squashfs"}, {"device": "/dev/loop9", "type": "squashfs"}, {"device": "/dev/loop10", "type": "squashfs"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/blkid.out000066400000000000000000000012431415226333200210230ustar00rootroot00000000000000/dev/fd0: SEC_TYPE="msdos" UUID="4F0C-5223" TYPE="vfat" /dev/sda2: UUID="011527a0-c72a-4c00-a50e-ee90da26b6e2" TYPE="ext4" PARTUUID="744589e8-5711-4750-9984-c34d66f93879" /dev/sr0: UUID="2019-08-12-10-17-03-63" LABEL="CDROM" TYPE="iso9660" /dev/sr1: UUID="2019-08-05-20-00-00-00" LABEL="Ubuntu-Server 18.04.3 LTS amd64" TYPE="iso9660" PTUUID="2f10bd40" PTTYPE="dos" /dev/loop0: TYPE="squashfs" /dev/loop1: TYPE="squashfs" /dev/loop2: TYPE="squashfs" /dev/loop3: TYPE="squashfs" /dev/loop4: TYPE="squashfs" /dev/loop5: TYPE="squashfs" /dev/loop6: TYPE="squashfs" /dev/loop7: TYPE="squashfs" /dev/loop8: TYPE="squashfs" /dev/loop9: TYPE="squashfs" /dev/loop10: TYPE="squashfs" jc-1.17.3/tests/fixtures/ubuntu-18.04/crontab-u.json000066400000000000000000000016531415226333200217770ustar00rootroot00000000000000{"variables": [{"name": "PATH", "value": "/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin"}, {"name": "SHELL", "value": "/bin/sh"}], "schedule": [{"minute": ["17"], "hour": ["*"], "day_of_month": ["*"], "month": ["*"], "day_of_week": ["*"], "user": "root", "command": "cd / && run-parts --report /etc/cron.hourly"}, {"minute": ["25"], "hour": ["6"], "day_of_month": ["*"], "month": ["*"], "day_of_week": ["*"], "user": "root", "command": "test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )"}, {"minute": ["47"], "hour": ["6"], "day_of_month": ["*"], "month": ["*"], "day_of_week": ["7"], "user": "root", "command": "test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )"}, {"minute": ["52"], "hour": ["6"], "day_of_month": ["1"], "month": ["*"], "day_of_week": ["*"], "user": "root", "command": "test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )"}]} jc-1.17.3/tests/fixtures/ubuntu-18.04/crontab-u.out000066400000000000000000000013601415226333200216300ustar00rootroot00000000000000# /etc/crontab: system-wide crontab # Unlike any other crontab you don't have to run the `crontab' # command to install the new version when you edit this file # and files in /etc/cron.d. These files also have username fields, # that none of the other crontabs do. SHELL=/bin/sh PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin # m h dom mon dow user command 17 * * * * root cd / && run-parts --report /etc/cron.hourly 25 6 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily ) 47 6 * * 7 root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly ) 52 6 1 * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly ) # jc-1.17.3/tests/fixtures/ubuntu-18.04/df-h.json000066400000000000000000000037241415226333200207240ustar00rootroot00000000000000[{"filesystem":"udev","size":"955M","used":0,"mounted_on":"/dev","available":955,"use_percent":0},{"filesystem":"tmpfs","size":"198M","used":1,"mounted_on":"/run","available":196,"use_percent":1},{"filesystem":"/dev/sda2","size":"20G","used":5,"mounted_on":"/","available":14,"use_percent":30},{"filesystem":"tmpfs","size":"986M","used":0,"mounted_on":"/dev/shm","available":986,"use_percent":0},{"filesystem":"tmpfs","size":"5.0M","used":0,"mounted_on":"/run/lock","available":5,"use_percent":0},{"filesystem":"tmpfs","size":"986M","used":0,"mounted_on":"/sys/fs/cgroup","available":986,"use_percent":0},{"filesystem":"/dev/loop0","size":"55M","used":55,"mounted_on":"/snap/core18/1223","available":0,"use_percent":100},{"filesystem":"/dev/loop1","size":"11M","used":11,"mounted_on":"/snap/slcli/383","available":0,"use_percent":100},{"filesystem":"/dev/loop2","size":"89M","used":89,"mounted_on":"/snap/core/7396","available":0,"use_percent":100},{"filesystem":"/dev/loop3","size":"67M","used":67,"mounted_on":"/snap/google-cloud-sdk/103","available":0,"use_percent":100},{"filesystem":"/dev/loop5","size":"55M","used":55,"mounted_on":"/snap/core18/1074","available":0,"use_percent":100},{"filesystem":"/dev/loop7","size":"8.7M","used":8,"mounted_on":"/snap/doctl/187","available":0,"use_percent":100},{"filesystem":"/dev/loop8","size":"3.2M","used":3,"mounted_on":"/snap/stress-ng/847","available":0,"use_percent":100},{"filesystem":"/dev/loop10","size":"90M","used":90,"mounted_on":"/snap/core/7917","available":0,"use_percent":100},{"filesystem":"/dev/loop11","size":"3.3M","used":3,"mounted_on":"/snap/stress-ng/924","available":0,"use_percent":100},{"filesystem":"tmpfs","size":"197M","used":0,"mounted_on":"/run/user/1000","available":197,"use_percent":0},{"filesystem":"/dev/loop9","size":"8.7M","used":8,"mounted_on":"/snap/doctl/215","available":0,"use_percent":100},{"filesystem":"/dev/loop4","size":"67M","used":67,"mounted_on":"/snap/google-cloud-sdk/104","available":0,"use_percent":100}] jc-1.17.3/tests/fixtures/ubuntu-18.04/df-h.out000066400000000000000000000017541415226333200205630ustar00rootroot00000000000000Filesystem Size Used Avail Use% Mounted on udev 955M 0 955M 0% /dev tmpfs 198M 1.2M 196M 1% /run /dev/sda2 20G 5.5G 14G 30% / tmpfs 986M 0 986M 0% /dev/shm tmpfs 5.0M 0 5.0M 0% /run/lock tmpfs 986M 0 986M 0% /sys/fs/cgroup /dev/loop0 55M 55M 0 100% /snap/core18/1223 /dev/loop1 11M 11M 0 100% /snap/slcli/383 /dev/loop2 89M 89M 0 100% /snap/core/7396 /dev/loop3 67M 67M 0 100% /snap/google-cloud-sdk/103 /dev/loop5 55M 55M 0 100% /snap/core18/1074 /dev/loop7 8.7M 8.7M 0 100% /snap/doctl/187 /dev/loop8 3.2M 3.2M 0 100% /snap/stress-ng/847 /dev/loop10 90M 90M 0 100% /snap/core/7917 /dev/loop11 3.3M 3.3M 0 100% /snap/stress-ng/924 tmpfs 197M 0 197M 0% /run/user/1000 /dev/loop9 8.7M 8.7M 0 100% /snap/doctl/215 /dev/loop4 67M 67M 0 100% /snap/google-cloud-sdk/104 jc-1.17.3/tests/fixtures/ubuntu-18.04/df.json000066400000000000000000000045041415226333200204740ustar00rootroot00000000000000[{"filesystem": "udev", "1k_blocks": 977500, "used": 0, "available": 977500, "use_percent": 0, "mounted_on": "/dev"}, {"filesystem": "tmpfs", "1k_blocks": 201732, "used": 1204, "available": 200528, "use_percent": 1, "mounted_on": "/run"}, {"filesystem": "/dev/sda2", "1k_blocks": 20508240, "used": 5748028, "available": 13695408, "use_percent": 30, "mounted_on": "/"}, {"filesystem": "tmpfs", "1k_blocks": 1008648, "used": 0, "available": 1008648, "use_percent": 0, "mounted_on": "/dev/shm"}, {"filesystem": "tmpfs", "1k_blocks": 5120, "used": 0, "available": 5120, "use_percent": 0, "mounted_on": "/run/lock"}, {"filesystem": "tmpfs", "1k_blocks": 1008648, "used": 0, "available": 1008648, "use_percent": 0, "mounted_on": "/sys/fs/cgroup"}, {"filesystem": "/dev/loop0", "1k_blocks": 55936, "used": 55936, "available": 0, "use_percent": 100, "mounted_on": "/snap/core18/1223"}, {"filesystem": "/dev/loop1", "1k_blocks": 11264, "used": 11264, "available": 0, "use_percent": 100, "mounted_on": "/snap/slcli/383"}, {"filesystem": "/dev/loop2", "1k_blocks": 90880, "used": 90880, "available": 0, "use_percent": 100, "mounted_on": "/snap/core/7396"}, {"filesystem": "/dev/loop3", "1k_blocks": 68096, "used": 68096, "available": 0, "use_percent": 100, "mounted_on": "/snap/google-cloud-sdk/103"}, {"filesystem": "/dev/loop5", "1k_blocks": 55808, "used": 55808, "available": 0, "use_percent": 100, "mounted_on": "/snap/core18/1074"}, {"filesystem": "/dev/loop7", "1k_blocks": 8832, "used": 8832, "available": 0, "use_percent": 100, "mounted_on": "/snap/doctl/187"}, {"filesystem": "/dev/loop8", "1k_blocks": 3200, "used": 3200, "available": 0, "use_percent": 100, "mounted_on": "/snap/stress-ng/847"}, {"filesystem": "/dev/loop10", "1k_blocks": 91264, "used": 91264, "available": 0, "use_percent": 100, "mounted_on": "/snap/core/7917"}, {"filesystem": "/dev/loop11", "1k_blocks": 3328, "used": 3328, "available": 0, "use_percent": 100, "mounted_on": "/snap/stress-ng/924"}, {"filesystem": "tmpfs", "1k_blocks": 201728, "used": 0, "available": 201728, "use_percent": 0, "mounted_on": "/run/user/1000"}, {"filesystem": "/dev/loop9", "1k_blocks": 8832, "used": 8832, "available": 0, "use_percent": 100, "mounted_on": "/snap/doctl/215"}, {"filesystem": "/dev/loop4", "1k_blocks": 68224, "used": 68224, "available": 0, "use_percent": 100, "mounted_on": "/snap/google-cloud-sdk/104"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/df.out000066400000000000000000000022521415226333200203300ustar00rootroot00000000000000Filesystem 1K-blocks Used Available Use% Mounted on udev 977500 0 977500 0% /dev tmpfs 201732 1204 200528 1% /run /dev/sda2 20508240 5748028 13695408 30% / tmpfs 1008648 0 1008648 0% /dev/shm tmpfs 5120 0 5120 0% /run/lock tmpfs 1008648 0 1008648 0% /sys/fs/cgroup /dev/loop0 55936 55936 0 100% /snap/core18/1223 /dev/loop1 11264 11264 0 100% /snap/slcli/383 /dev/loop2 90880 90880 0 100% /snap/core/7396 /dev/loop3 68096 68096 0 100% /snap/google-cloud-sdk/103 /dev/loop5 55808 55808 0 100% /snap/core18/1074 /dev/loop7 8832 8832 0 100% /snap/doctl/187 /dev/loop8 3200 3200 0 100% /snap/stress-ng/847 /dev/loop10 91264 91264 0 100% /snap/core/7917 /dev/loop11 3328 3328 0 100% /snap/stress-ng/924 tmpfs 201728 0 201728 0% /run/user/1000 /dev/loop9 8832 8832 0 100% /snap/doctl/215 /dev/loop4 68224 68224 0 100% /snap/google-cloud-sdk/104 jc-1.17.3/tests/fixtures/ubuntu-18.04/dig-aaaa.json000066400000000000000000000010251415226333200215220ustar00rootroot00000000000000[{"id":45806,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":65494}},"question":{"name":"www.google.com.","class":"IN","type":"AAAA"},"answer":[{"name":"www.google.com.","class":"IN","type":"AAAA","ttl":5,"data":"2607:f8b0:4000:812::2004"}],"query_time":39,"server":"127.0.0.53#53(127.0.0.53)","when":"Thu Oct 31 14:21:04 UTC 2019","rcvd":71,"when_epoch":1572556864,"when_epoch_utc":1572531664}] jc-1.17.3/tests/fixtures/ubuntu-18.04/dig-aaaa.out000066400000000000000000000010241415226333200213570ustar00rootroot00000000000000 ; <<>> DiG 9.11.3-1ubuntu1.8-Ubuntu <<>> www.google.com AAAA ;; global options: +cmd ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 45806 ;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1 ;; OPT PSEUDOSECTION: ; EDNS: version: 0, flags:; udp: 65494 ;; QUESTION SECTION: ;www.google.com. IN AAAA ;; ANSWER SECTION: www.google.com. 5 IN AAAA 2607:f8b0:4000:812::2004 ;; Query time: 39 msec ;; SERVER: 127.0.0.53#53(127.0.0.53) ;; WHEN: Thu Oct 31 14:21:04 UTC 2019 ;; MSG SIZE rcvd: 71 jc-1.17.3/tests/fixtures/ubuntu-18.04/dig-axfr.json000066400000000000000000000131611415226333200216030ustar00rootroot00000000000000[{"axfr":[{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"SOA","data":"nsztm1.digi.ninja. robin.digi.ninja. 2019100801 172800 900 1209600 3600"},{"name":"zonetransfer.me.","ttl":300,"class":"IN","type":"HINFO","data":"\"Casio fx-700G\" \"Windows XP\""},{"name":"zonetransfer.me.","ttl":301,"class":"IN","type":"TXT","data":"\"google-site-verification=tyP28J7JAUHA9fw2sHXMgcCC0I6XBmmoVi04VlMewxA\""},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"0 ASPMX.L.GOOGLE.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"10 ALT1.ASPMX.L.GOOGLE.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"10 ALT2.ASPMX.L.GOOGLE.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"20 ASPMX2.GOOGLEMAIL.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"20 ASPMX3.GOOGLEMAIL.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"20 ASPMX4.GOOGLEMAIL.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"20 ASPMX5.GOOGLEMAIL.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"5.196.105.14"},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"NS","data":"nsztm1.digi.ninja."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"NS","data":"nsztm2.digi.ninja."},{"name":"_acme-challenge.zonetransfer.me.","ttl":301,"class":"IN","type":"TXT","data":"\"6Oa05hbUJ9xSsvYy7pApQvwCUSSGgxvrbdizjePEsZI\""},{"name":"_sip._tcp.zonetransfer.me.","ttl":14000,"class":"IN","type":"SRV","data":"0 0 5060 www.zonetransfer.me."},{"name":"14.105.196.5.IN-ADDR.ARPA.zonetransfer.me.","ttl":7200,"class":"IN","type":"PTR","data":"www.zonetransfer.me."},{"name":"asfdbauthdns.zonetransfer.me.","ttl":7900,"class":"IN","type":"AFSDB","data":"1 asfdbbox.zonetransfer.me."},{"name":"asfdbbox.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"127.0.0.1"},{"name":"asfdbvolume.zonetransfer.me.","ttl":7800,"class":"IN","type":"AFSDB","data":"1 asfdbbox.zonetransfer.me."},{"name":"canberra-office.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"202.14.81.230"},{"name":"cmdexec.zonetransfer.me.","ttl":300,"class":"IN","type":"TXT","data":"\"; ls\""},{"name":"contact.zonetransfer.me.","ttl":2592000,"class":"IN","type":"TXT","data":"\"Remember to call or email Pippa on +44 123 4567890 or pippa@zonetransfer.me when making DNS changes\""},{"name":"dc-office.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"143.228.181.132"},{"name":"deadbeef.zonetransfer.me.","ttl":7201,"class":"IN","type":"AAAA","data":"dead:beaf::"},{"name":"dr.zonetransfer.me.","ttl":300,"class":"IN","type":"LOC","data":"53 20 56.558 N 1 38 33.526 W 0.00m 1m 10000m 10m"},{"name":"DZC.zonetransfer.me.","ttl":7200,"class":"IN","type":"TXT","data":"\"AbCdEfG\""},{"name":"email.zonetransfer.me.","ttl":2222,"class":"IN","type":"NAPTR","data":"1 1 \"P\" \"E2U+email\" \"\" email.zonetransfer.me.zonetransfer.me."},{"name":"email.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"74.125.206.26"},{"name":"Hello.zonetransfer.me.","ttl":7200,"class":"IN","type":"TXT","data":"\"Hi to Josh and all his class\""},{"name":"home.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"127.0.0.1"},{"name":"Info.zonetransfer.me.","ttl":7200,"class":"IN","type":"TXT","data":"\"ZoneTransfer.me service provided by Robin Wood - robin@digi.ninja. See http://digi.ninja/projects/zonetransferme.php for more information.\""},{"name":"internal.zonetransfer.me.","ttl":300,"class":"IN","type":"NS","data":"intns1.zonetransfer.me."},{"name":"internal.zonetransfer.me.","ttl":300,"class":"IN","type":"NS","data":"intns2.zonetransfer.me."},{"name":"intns1.zonetransfer.me.","ttl":300,"class":"IN","type":"A","data":"81.4.108.41"},{"name":"intns2.zonetransfer.me.","ttl":300,"class":"IN","type":"A","data":"167.88.42.94"},{"name":"office.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"4.23.39.254"},{"name":"ipv6actnow.org.zonetransfer.me.","ttl":7200,"class":"IN","type":"AAAA","data":"2001:67c:2e8:11::c100:1332"},{"name":"owa.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"207.46.197.32"},{"name":"robinwood.zonetransfer.me.","ttl":302,"class":"IN","type":"TXT","data":"\"Robin Wood\""},{"name":"rp.zonetransfer.me.","ttl":321,"class":"IN","type":"RP","data":"robin.zonetransfer.me. robinwood.zonetransfer.me."},{"name":"sip.zonetransfer.me.","ttl":3333,"class":"IN","type":"NAPTR","data":"2 3 \"P\" \"E2U+sip\" \"!^.*$!sip:customer-service@zonetransfer.me!\" ."},{"name":"sqli.zonetransfer.me.","ttl":300,"class":"IN","type":"TXT","data":"\"' or 1=1 --\""},{"name":"sshock.zonetransfer.me.","ttl":7200,"class":"IN","type":"TXT","data":"\"() { :]}; echo ShellShocked\""},{"name":"staging.zonetransfer.me.","ttl":7200,"class":"IN","type":"CNAME","data":"www.sydneyoperahouse.com."},{"name":"alltcpportsopen.firewall.test.zonetransfer.me.","ttl":301,"class":"IN","type":"A","data":"127.0.0.1"},{"name":"testing.zonetransfer.me.","ttl":301,"class":"IN","type":"CNAME","data":"www.zonetransfer.me."},{"name":"vpn.zonetransfer.me.","ttl":4000,"class":"IN","type":"A","data":"174.36.59.154"},{"name":"www.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"5.196.105.14"},{"name":"xss.zonetransfer.me.","ttl":300,"class":"IN","type":"TXT","data":"\"'>\""},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"SOA","data":"nsztm1.digi.ninja. robin.digi.ninja. 2019100801 172800 900 1209600 3600"}],"query_time":105,"server":"81.4.108.41#53(81.4.108.41)","when":"Wed Mar 25 14:34:55 EDT 2020","size":"50 records (messages 1, bytes 1994)","when_epoch":1585172095,"when_epoch_utc":null}] jc-1.17.3/tests/fixtures/ubuntu-18.04/dig-axfr.out000066400000000000000000000067111415226333200214440ustar00rootroot00000000000000; <<>> DiG 9.11.14-3-Debian <<>> @81.4.108.41 axfr zonetransfer.me +nocookie ; (1 server found) ;; global options: +cmd zonetransfer.me. 7200 IN SOA nsztm1.digi.ninja. robin.digi.ninja. 2019100801 172800 900 1209600 3600 zonetransfer.me. 300 IN HINFO "Casio fx-700G" "Windows XP" zonetransfer.me. 301 IN TXT "google-site-verification=tyP28J7JAUHA9fw2sHXMgcCC0I6XBmmoVi04VlMewxA" zonetransfer.me. 7200 IN MX 0 ASPMX.L.GOOGLE.COM. zonetransfer.me. 7200 IN MX 10 ALT1.ASPMX.L.GOOGLE.COM. zonetransfer.me. 7200 IN MX 10 ALT2.ASPMX.L.GOOGLE.COM. zonetransfer.me. 7200 IN MX 20 ASPMX2.GOOGLEMAIL.COM. zonetransfer.me. 7200 IN MX 20 ASPMX3.GOOGLEMAIL.COM. zonetransfer.me. 7200 IN MX 20 ASPMX4.GOOGLEMAIL.COM. zonetransfer.me. 7200 IN MX 20 ASPMX5.GOOGLEMAIL.COM. zonetransfer.me. 7200 IN A 5.196.105.14 zonetransfer.me. 7200 IN NS nsztm1.digi.ninja. zonetransfer.me. 7200 IN NS nsztm2.digi.ninja. _acme-challenge.zonetransfer.me. 301 IN TXT "6Oa05hbUJ9xSsvYy7pApQvwCUSSGgxvrbdizjePEsZI" _sip._tcp.zonetransfer.me. 14000 IN SRV 0 0 5060 www.zonetransfer.me. 14.105.196.5.IN-ADDR.ARPA.zonetransfer.me. 7200 IN PTR www.zonetransfer.me. asfdbauthdns.zonetransfer.me. 7900 IN AFSDB 1 asfdbbox.zonetransfer.me. asfdbbox.zonetransfer.me. 7200 IN A 127.0.0.1 asfdbvolume.zonetransfer.me. 7800 IN AFSDB 1 asfdbbox.zonetransfer.me. canberra-office.zonetransfer.me. 7200 IN A 202.14.81.230 cmdexec.zonetransfer.me. 300 IN TXT "; ls" contact.zonetransfer.me. 2592000 IN TXT "Remember to call or email Pippa on +44 123 4567890 or pippa@zonetransfer.me when making DNS changes" dc-office.zonetransfer.me. 7200 IN A 143.228.181.132 deadbeef.zonetransfer.me. 7201 IN AAAA dead:beaf:: dr.zonetransfer.me. 300 IN LOC 53 20 56.558 N 1 38 33.526 W 0.00m 1m 10000m 10m DZC.zonetransfer.me. 7200 IN TXT "AbCdEfG" email.zonetransfer.me. 2222 IN NAPTR 1 1 "P" "E2U+email" "" email.zonetransfer.me.zonetransfer.me. email.zonetransfer.me. 7200 IN A 74.125.206.26 Hello.zonetransfer.me. 7200 IN TXT "Hi to Josh and all his class" home.zonetransfer.me. 7200 IN A 127.0.0.1 Info.zonetransfer.me. 7200 IN TXT "ZoneTransfer.me service provided by Robin Wood - robin@digi.ninja. See http://digi.ninja/projects/zonetransferme.php for more information." internal.zonetransfer.me. 300 IN NS intns1.zonetransfer.me. internal.zonetransfer.me. 300 IN NS intns2.zonetransfer.me. intns1.zonetransfer.me. 300 IN A 81.4.108.41 intns2.zonetransfer.me. 300 IN A 167.88.42.94 office.zonetransfer.me. 7200 IN A 4.23.39.254 ipv6actnow.org.zonetransfer.me. 7200 IN AAAA 2001:67c:2e8:11::c100:1332 owa.zonetransfer.me. 7200 IN A 207.46.197.32 robinwood.zonetransfer.me. 302 IN TXT "Robin Wood" rp.zonetransfer.me. 321 IN RP robin.zonetransfer.me. robinwood.zonetransfer.me. sip.zonetransfer.me. 3333 IN NAPTR 2 3 "P" "E2U+sip" "!^.*$!sip:customer-service@zonetransfer.me!" . sqli.zonetransfer.me. 300 IN TXT "' or 1=1 --" sshock.zonetransfer.me. 7200 IN TXT "() { :]}; echo ShellShocked" staging.zonetransfer.me. 7200 IN CNAME www.sydneyoperahouse.com. alltcpportsopen.firewall.test.zonetransfer.me. 301 IN A 127.0.0.1 testing.zonetransfer.me. 301 IN CNAME www.zonetransfer.me. vpn.zonetransfer.me. 4000 IN A 174.36.59.154 www.zonetransfer.me. 7200 IN A 5.196.105.14 xss.zonetransfer.me. 300 IN TXT "'>" zonetransfer.me. 7200 IN SOA nsztm1.digi.ninja. robin.digi.ninja. 2019100801 172800 900 1209600 3600 ;; Query time: 105 msec ;; SERVER: 81.4.108.41#53(81.4.108.41) ;; WHEN: Wed Mar 25 14:34:55 EDT 2020 ;; XFR size: 50 records (messages 1, bytes 1994) jc-1.17.3/tests/fixtures/ubuntu-18.04/dig-x.json000066400000000000000000000010271415226333200211100ustar00rootroot00000000000000[{"id":28514,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":65494}},"question":{"name":"1.1.1.1.in-addr.arpa.","class":"IN","type":"PTR"},"answer":[{"name":"1.1.1.1.in-addr.arpa.","class":"IN","type":"PTR","ttl":5,"data":"one.one.one.one."}],"query_time":37,"server":"127.0.0.53#53(127.0.0.53)","when":"Thu Oct 31 14:21:05 UTC 2019","rcvd":78,"when_epoch":1572556865,"when_epoch_utc":1572531665}] jc-1.17.3/tests/fixtures/ubuntu-18.04/dig-x.out000066400000000000000000000010131415226333200207410ustar00rootroot00000000000000 ; <<>> DiG 9.11.3-1ubuntu1.8-Ubuntu <<>> -x 1.1.1.1 ;; global options: +cmd ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 28514 ;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1 ;; OPT PSEUDOSECTION: ; EDNS: version: 0, flags:; udp: 65494 ;; QUESTION SECTION: ;1.1.1.1.in-addr.arpa. IN PTR ;; ANSWER SECTION: 1.1.1.1.in-addr.arpa. 5 IN PTR one.one.one.one. ;; Query time: 37 msec ;; SERVER: 127.0.0.53#53(127.0.0.53) ;; WHEN: Thu Oct 31 14:21:05 UTC 2019 ;; MSG SIZE rcvd: 78 jc-1.17.3/tests/fixtures/ubuntu-18.04/dig.json000066400000000000000000000026071415226333200206500ustar00rootroot00000000000000[{"id":52284,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":5,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":65494}},"question":{"name":"www.cnn.com.","class":"IN","type":"A"},"answer":[{"name":"www.cnn.com.","class":"IN","type":"CNAME","ttl":5,"data":"turner-tls.map.fastly.net."},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":4,"data":"151.101.65.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":4,"data":"151.101.1.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":4,"data":"151.101.193.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":4,"data":"151.101.129.67"}],"query_time":31,"server":"127.0.0.53#53(127.0.0.53)","when":"Thu Oct 31 14:21:04 UTC 2019","rcvd":143,"when_epoch":1572556864,"when_epoch_utc":1572531664},{"id":47686,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":65494}},"question":{"name":"www.google.com.","class":"IN","type":"A"},"answer":[{"name":"www.google.com.","class":"IN","type":"A","ttl":5,"data":"172.217.1.228"}],"query_time":32,"server":"127.0.0.53#53(127.0.0.53)","when":"Thu Oct 31 14:21:04 UTC 2019","rcvd":59,"when_epoch":1572556864,"when_epoch_utc":1572531664}] jc-1.17.3/tests/fixtures/ubuntu-18.04/dig.out000066400000000000000000000022041415226333200204770ustar00rootroot00000000000000 ; <<>> DiG 9.11.3-1ubuntu1.8-Ubuntu <<>> www.cnn.com www.google.com ;; global options: +cmd ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 52284 ;; flags: qr rd ra; QUERY: 1, ANSWER: 5, AUTHORITY: 0, ADDITIONAL: 1 ;; OPT PSEUDOSECTION: ; EDNS: version: 0, flags:; udp: 65494 ;; QUESTION SECTION: ;www.cnn.com. IN A ;; ANSWER SECTION: www.cnn.com. 5 IN CNAME turner-tls.map.fastly.net. turner-tls.map.fastly.net. 4 IN A 151.101.65.67 turner-tls.map.fastly.net. 4 IN A 151.101.1.67 turner-tls.map.fastly.net. 4 IN A 151.101.193.67 turner-tls.map.fastly.net. 4 IN A 151.101.129.67 ;; Query time: 31 msec ;; SERVER: 127.0.0.53#53(127.0.0.53) ;; WHEN: Thu Oct 31 14:21:04 UTC 2019 ;; MSG SIZE rcvd: 143 ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 47686 ;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1 ;; OPT PSEUDOSECTION: ; EDNS: version: 0, flags:; udp: 65494 ;; QUESTION SECTION: ;www.google.com. IN A ;; ANSWER SECTION: www.google.com. 5 IN A 172.217.1.228 ;; Query time: 32 msec ;; SERVER: 127.0.0.53#53(127.0.0.53) ;; WHEN: Thu Oct 31 14:21:04 UTC 2019 ;; MSG SIZE rcvd: 59 jc-1.17.3/tests/fixtures/ubuntu-18.04/dmidecode.json000066400000000000000000012236751415226333200220350ustar00rootroot00000000000000[{"handle": "0x0000", "type": 0, "bytes": 24, "description": "BIOS Information", "values": {"vendor": "Phoenix Technologies LTD", "version": "6.00", "release_date": "04/13/2018", "address": "0xEA490", "runtime_size": "88944 bytes", "rom_size": "64 kB", "characteristics": ["ISA is supported", "PCI is supported", "PC Card (PCMCIA) is supported", "PNP is supported", "APM is supported", "BIOS is upgradeable", "BIOS shadowing is allowed", "ESCD support is available", "Boot from CD is supported", "Selectable boot is supported", "EDD is supported", "Print screen service is supported (int 5h)", "8042 keyboard services are supported (int 9h)", "Serial services are supported (int 14h)", "Printer services are supported (int 17h)", "CGA/mono video services are supported (int 10h)", "ACPI is supported", "Smart battery is supported", "BIOS boot specification is supported", "Function key-initiated network boot is supported", "Targeted content distribution is supported"], "bios_revision": "4.6", "firmware_revision": "0.0"}}, {"handle": "0x0001", "type": 1, "bytes": 27, "description": "System Information", "values": {"manufacturer": "VMware, Inc.", "product_name": "VMware Virtual Platform", "version": "None", "serial_number": "VMware-56 4d 0d 1a cc cf 45 fa-43 81 ac 1f 3b 99 45 17", "uuid": "1A0D4D56-CFCC-FA45-4381-AC1F3B994517", "wake-up_type": "Power Switch", "sku_number": "Not Specified", "family": "Not Specified"}}, {"handle": "0x0002", "type": 2, "bytes": 15, "description": "Base Board Information", "values": {"manufacturer": "Intel Corporation", "product_name": "440BX Desktop Reference Platform", "version": "None", "serial_number": "None", "asset_tag": "Not Specified", "features": "None", "location_in_chassis": "Not Specified", "chassis_handle": "0x0000", "type": "Unknown", "contained_object_handles": "0"}}, {"handle": "0x0003", "type": 3, "bytes": 21, "description": "Chassis Information", "values": {"manufacturer": "No Enclosure", "type": "Other", "lock": "Not Present", "version": "N/A", "serial_number": "None", "asset_tag": "No Asset Tag", "boot-up_state": "Safe", "power_supply_state": "Safe", "thermal_state": "Safe", "security_status": "None", "oem_information": "0x00001234", "height": "Unspecified", "number_of_power_cords": "Unspecified", "contained_elements": "0"}}, {"handle": "0x0004", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #000", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 08 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Enabled", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0094", "l2_cache_handle": "0x0114", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0005", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #001", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0095", "l2_cache_handle": "0x0115", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0006", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #002", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0096", "l2_cache_handle": "0x0116", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0007", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #003", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0097", "l2_cache_handle": "0x0117", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0008", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #004", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0098", "l2_cache_handle": "0x0118", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0009", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #005", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0099", "l2_cache_handle": "0x0119", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #006", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009A", "l2_cache_handle": "0x011A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #007", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009B", "l2_cache_handle": "0x011B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #008", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009C", "l2_cache_handle": "0x011C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #009", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009D", "l2_cache_handle": "0x011D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #010", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009E", "l2_cache_handle": "0x011E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x000F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #011", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x009F", "l2_cache_handle": "0x011F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0010", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #012", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A0", "l2_cache_handle": "0x0120", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0011", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #013", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A1", "l2_cache_handle": "0x0121", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0012", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #014", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A2", "l2_cache_handle": "0x0122", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0013", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #015", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A3", "l2_cache_handle": "0x0123", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0014", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #016", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A4", "l2_cache_handle": "0x0124", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0015", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #017", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A5", "l2_cache_handle": "0x0125", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0016", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #018", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A6", "l2_cache_handle": "0x0126", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0017", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #019", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A7", "l2_cache_handle": "0x0127", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0018", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #020", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A8", "l2_cache_handle": "0x0128", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0019", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #021", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00A9", "l2_cache_handle": "0x0129", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #022", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AA", "l2_cache_handle": "0x012A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #023", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AB", "l2_cache_handle": "0x012B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #024", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AC", "l2_cache_handle": "0x012C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #025", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AD", "l2_cache_handle": "0x012D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #026", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AE", "l2_cache_handle": "0x012E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x001F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #027", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00AF", "l2_cache_handle": "0x012F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0020", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #028", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B0", "l2_cache_handle": "0x0130", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0021", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #029", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B1", "l2_cache_handle": "0x0131", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0022", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #030", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B2", "l2_cache_handle": "0x0132", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0023", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #031", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B3", "l2_cache_handle": "0x0133", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0024", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #032", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B4", "l2_cache_handle": "0x0134", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0025", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #033", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B5", "l2_cache_handle": "0x0135", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0026", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #034", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B6", "l2_cache_handle": "0x0136", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0027", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #035", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B7", "l2_cache_handle": "0x0137", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0028", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #036", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B8", "l2_cache_handle": "0x0138", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0029", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #037", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00B9", "l2_cache_handle": "0x0139", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #038", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BA", "l2_cache_handle": "0x013A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #039", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BB", "l2_cache_handle": "0x013B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #040", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BC", "l2_cache_handle": "0x013C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #041", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BD", "l2_cache_handle": "0x013D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #042", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BE", "l2_cache_handle": "0x013E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x002F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #043", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00BF", "l2_cache_handle": "0x013F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0030", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #044", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C0", "l2_cache_handle": "0x0140", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0031", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #045", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C1", "l2_cache_handle": "0x0141", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0032", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #046", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C2", "l2_cache_handle": "0x0142", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0033", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #047", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C3", "l2_cache_handle": "0x0143", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0034", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #048", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C4", "l2_cache_handle": "0x0144", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0035", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #049", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C5", "l2_cache_handle": "0x0145", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0036", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #050", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C6", "l2_cache_handle": "0x0146", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0037", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #051", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C7", "l2_cache_handle": "0x0147", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0038", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #052", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C8", "l2_cache_handle": "0x0148", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0039", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #053", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00C9", "l2_cache_handle": "0x0149", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #054", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CA", "l2_cache_handle": "0x014A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #055", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CB", "l2_cache_handle": "0x014B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #056", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CC", "l2_cache_handle": "0x014C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #057", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CD", "l2_cache_handle": "0x014D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #058", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CE", "l2_cache_handle": "0x014E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x003F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #059", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00CF", "l2_cache_handle": "0x014F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0040", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #060", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D0", "l2_cache_handle": "0x0150", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0041", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #061", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D1", "l2_cache_handle": "0x0151", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0042", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #062", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D2", "l2_cache_handle": "0x0152", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0043", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #063", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D3", "l2_cache_handle": "0x0153", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0044", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #064", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D4", "l2_cache_handle": "0x0154", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0045", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #065", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D5", "l2_cache_handle": "0x0155", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0046", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #066", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D6", "l2_cache_handle": "0x0156", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0047", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #067", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D7", "l2_cache_handle": "0x0157", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0048", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #068", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D8", "l2_cache_handle": "0x0158", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0049", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #069", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00D9", "l2_cache_handle": "0x0159", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #070", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DA", "l2_cache_handle": "0x015A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #071", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DB", "l2_cache_handle": "0x015B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #072", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DC", "l2_cache_handle": "0x015C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #073", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DD", "l2_cache_handle": "0x015D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #074", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DE", "l2_cache_handle": "0x015E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x004F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #075", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00DF", "l2_cache_handle": "0x015F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0050", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #076", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E0", "l2_cache_handle": "0x0160", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0051", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #077", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E1", "l2_cache_handle": "0x0161", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0052", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #078", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E2", "l2_cache_handle": "0x0162", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0053", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #079", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E3", "l2_cache_handle": "0x0163", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0054", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #080", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E4", "l2_cache_handle": "0x0164", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0055", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #081", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E5", "l2_cache_handle": "0x0165", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0056", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #082", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E6", "l2_cache_handle": "0x0166", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0057", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #083", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E7", "l2_cache_handle": "0x0167", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0058", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #084", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E8", "l2_cache_handle": "0x0168", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0059", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #085", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00E9", "l2_cache_handle": "0x0169", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #086", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EA", "l2_cache_handle": "0x016A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #087", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EB", "l2_cache_handle": "0x016B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #088", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EC", "l2_cache_handle": "0x016C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #089", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00ED", "l2_cache_handle": "0x016D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #090", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EE", "l2_cache_handle": "0x016E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x005F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #091", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00EF", "l2_cache_handle": "0x016F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0060", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #092", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F0", "l2_cache_handle": "0x0170", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0061", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #093", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F1", "l2_cache_handle": "0x0171", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0062", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #094", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F2", "l2_cache_handle": "0x0172", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0063", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #095", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F3", "l2_cache_handle": "0x0173", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0064", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #096", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F4", "l2_cache_handle": "0x0174", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0065", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #097", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F5", "l2_cache_handle": "0x0175", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0066", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #098", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F6", "l2_cache_handle": "0x0176", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0067", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #099", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F7", "l2_cache_handle": "0x0177", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0068", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #100", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F8", "l2_cache_handle": "0x0178", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0069", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #101", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00F9", "l2_cache_handle": "0x0179", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #102", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FA", "l2_cache_handle": "0x017A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #103", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FB", "l2_cache_handle": "0x017B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #104", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FC", "l2_cache_handle": "0x017C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #105", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FD", "l2_cache_handle": "0x017D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #106", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FE", "l2_cache_handle": "0x017E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x006F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #107", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x00FF", "l2_cache_handle": "0x017F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0070", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #108", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0100", "l2_cache_handle": "0x0180", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0071", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #109", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0101", "l2_cache_handle": "0x0181", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0072", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #110", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0102", "l2_cache_handle": "0x0182", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0073", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #111", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0103", "l2_cache_handle": "0x0183", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0074", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #112", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0104", "l2_cache_handle": "0x0184", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0075", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #113", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0105", "l2_cache_handle": "0x0185", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0076", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #114", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0106", "l2_cache_handle": "0x0186", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0077", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #115", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0107", "l2_cache_handle": "0x0187", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0078", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #116", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0108", "l2_cache_handle": "0x0188", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0079", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #117", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0109", "l2_cache_handle": "0x0189", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007A", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #118", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010A", "l2_cache_handle": "0x018A", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007B", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #119", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010B", "l2_cache_handle": "0x018B", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007C", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #120", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010C", "l2_cache_handle": "0x018C", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007D", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #121", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010D", "l2_cache_handle": "0x018D", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007E", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #122", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010E", "l2_cache_handle": "0x018E", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x007F", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #123", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x010F", "l2_cache_handle": "0x018F", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0080", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #124", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0110", "l2_cache_handle": "0x0190", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0081", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #125", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0111", "l2_cache_handle": "0x0191", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0082", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #126", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0112", "l2_cache_handle": "0x0192", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0083", "type": 4, "bytes": 42, "description": "Processor Information", "values": {"socket_designation": "CPU #127", "type": "Central Processor", "family": "Unknown", "manufacturer": "GenuineIntel", "id": "EA 06 00 00 FF FB 8B 0F", "version": "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", "voltage": "3.3 V", "external_clock": "Unknown", "max_speed": "30000 MHz", "current_speed": "2400 MHz", "status": "Populated, Disabled By BIOS", "upgrade": "ZIF Socket", "l1_cache_handle": "0x0113", "l2_cache_handle": "0x0193", "l3_cache_handle": "Not Provided", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "core_count": "1", "core_enabled": "1", "characteristics": ["64-bit capable", "Execute Protection"]}}, {"handle": "0x0084", "type": 5, "bytes": 46, "description": "Memory Controller Information", "values": {"error_detecting_method": "None", "error_correcting_capabilities": ["None"], "supported_interleave": "One-way Interleave", "current_interleave": "One-way Interleave", "maximum_memory_module_size": "32768 MB", "maximum_total_memory_size": "491520 MB", "supported_speeds": ["70 ns", "60 ns"], "supported_memory_types": ["FPM", "EDO", "DIMM", "SDRAM"], "memory_module_voltage": "3.3 V", "associated_memory_slots": "15", "associated_memory_slots_data": ["0x0006", "0x0007", "0x0008", "0x0009", "0x000A", "0x000B", "0x000C", "0x000D", "0x000E", "0x000F", "0x0010", "0x0011", "0x0012", "0x0013", "0x0014"], "enabled_error_correcting_capabilities": ["None"]}}, {"handle": "0x0085", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #0", "bank_connections": "None", "current_speed": "Unknown", "type": "EDO DIMM", "installed_size": "2048 MB (Single-bank Connection)", "enabled_size": "2048 MB (Single-bank Connection)", "error_status": "OK"}}, {"handle": "0x0086", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #1", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0087", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #2", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0088", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #3", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0089", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #4", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008A", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #5", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008B", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #6", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008C", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #7", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008D", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #8", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008E", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #9", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x008F", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #10", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0090", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #11", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0091", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #12", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0092", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #13", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0093", "type": 6, "bytes": 12, "description": "Memory Module Information", "values": {"socket_designation": "RAM socket #14", "bank_connections": "None", "current_speed": "Unknown", "type": "DIMM", "installed_size": "Not Installed", "enabled_size": "Not Installed", "error_status": "OK"}}, {"handle": "0x0094", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0095", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0096", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0097", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0098", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0099", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x009F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00A9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00AF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00B9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00BF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00C9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00CF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00D9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00DF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00E9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00ED", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00EF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F0", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F1", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F2", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F3", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F4", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F5", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F6", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F7", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F8", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00F9", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FA", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FB", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FC", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FD", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FE", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x00FF", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0100", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0101", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0102", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0103", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0104", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0105", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0106", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0107", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0108", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0109", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x010F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0110", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0111", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0112", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0113", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L1", "configuration": "Enabled, Socketed, Level 1", "operational_mode": "Write Back", "location": "Internal", "installed_size": "16 kB", "maximum_size": "16 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Asynchronous", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0114", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0115", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0116", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0117", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0118", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0119", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x011F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0120", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0121", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0122", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0123", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0124", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0125", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0126", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0127", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0128", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0129", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x012F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0130", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0131", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0132", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0133", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0134", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0135", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0136", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0137", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0138", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0139", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x013F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0140", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0141", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0142", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0143", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0144", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0145", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0146", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0147", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0148", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0149", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x014F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0150", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0151", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0152", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0153", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0154", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0155", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0156", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0157", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0158", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0159", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x015F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0160", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0161", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0162", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0163", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0164", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0165", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0166", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0167", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0168", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0169", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x016F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0170", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0171", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0172", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0173", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0174", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0175", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0176", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0177", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0178", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0179", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x017F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0180", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0181", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0182", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0183", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0184", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0185", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0186", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0187", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0188", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0189", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018A", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018B", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018C", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018D", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018E", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x018F", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0190", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0191", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0192", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0193", "type": 7, "bytes": 19, "description": "Cache Information", "values": {"socket_designation": "L2", "configuration": "Enabled, Socketed, Level 2", "operational_mode": "Write Back", "location": "External", "installed_size": "0 kB", "maximum_size": "24576 kB", "supported_sram_types": ["Burst", "Pipeline Burst", "Asynchronous"], "installed_sram_type": "Burst", "speed": "Unknown", "error_correction_type": "Unknown", "system_type": "Unknown", "associativity": "Unknown"}}, {"handle": "0x0194", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J19", "internal_connector_type": "9 Pin Dual Inline (pin 10 cut)", "external_reference_designator": "COM 1", "external_connector_type": "DB-9 male", "port_type": "Serial Port 16550A Compatible"}}, {"handle": "0x0195", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J23", "internal_connector_type": "25 Pin Dual Inline (pin 26 cut)", "external_reference_designator": "Parallel", "external_connector_type": "DB-25 female", "port_type": "Parallel Port ECP/EPP"}}, {"handle": "0x0196", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J11", "internal_connector_type": "None", "external_reference_designator": "Keyboard", "external_connector_type": "Circular DIN-8 male", "port_type": "Keyboard Port"}}, {"handle": "0x0197", "type": 8, "bytes": 9, "description": "Port Connector Information", "values": {"internal_reference_designator": "J12", "internal_connector_type": "None", "external_reference_designator": "PS/2 Mouse", "external_connector_type": "Circular DIN-8 male", "port_type": "Keyboard Port"}}, {"handle": "0x0198", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "ISA Slot J8", "type": "16-bit ISA", "current_usage": "Unknown", "length": "Short", "characteristics": ["5.0 V is provided"], "bus_address": "00ff:ff:1f.7"}}, {"handle": "0x0199", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "ISA Slot J9", "type": "16-bit ISA", "current_usage": "Unknown", "length": "Short", "characteristics": ["5.0 V is provided"], "bus_address": "00ff:ff:1f.7"}}, {"handle": "0x019A", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "ISA Slot J10", "type": "16-bit ISA", "current_usage": "Unknown", "length": "Short", "characteristics": ["5.0 V is provided"], "bus_address": "00ff:ff:1f.7"}}, {"handle": "0x019B", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J11", "type": "32-bit PCI", "current_usage": "In Use", "length": "Long", "id": "1", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:0f.0"}}, {"handle": "0x019C", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J12", "type": "32-bit PCI", "current_usage": "In Use", "length": "Long", "id": "2", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:10.0"}}, {"handle": "0x019D", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J13", "type": "32-bit PCI", "current_usage": "In Use", "length": "Long", "id": "3", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:11.0"}}, {"handle": "0x019E", "type": 9, "bytes": 17, "description": "System Slot Information", "values": {"designation": "PCI Slot J14", "type": "32-bit PCI", "current_usage": "Available", "length": "Long", "id": "4", "characteristics": ["5.0 V is provided", "3.3 V is provided"], "bus_address": "0000:00:12.0"}}, {"handle": "0x019F", "type": 10, "bytes": 8, "description": "On Board Device 1 Information", "values": {"type": "Video", "status": "Disabled", "description": "VMware SVGA II"}}, {"handle": "0x019F", "type": 10, "bytes": 8, "description": "On Board Device 2 Information", "values": {"type": "Sound", "status": "Disabled", "description": "ES1371"}}, {"handle": "0x01A0", "type": 11, "bytes": 5, "description": "OEM Strings", "values": {"string_1": "[MS_VM_CERT/SHA1/27d66596a61c48dd3dc7216fd715126e33f59ae7]", "string_2": "Welcome to the Virtual Machine"}}, {"handle": "0x01A1", "type": 15, "bytes": 29, "description": "System Event Log", "values": {"area_length": "16 bytes", "header_start_offset": "0x0000", "header_length": "16 bytes", "data_start_offset": "0x0010", "access_method": "General-purpose non-volatile data functions", "access_address": "0x0000", "status": "Invalid, Full", "change_token": "0x00000036", "header_format": "Type 1", "supported_log_type_descriptors": "3", "descriptor_1": "POST error", "data_format_1": "POST results bitmap", "descriptor_2": "Single-bit ECC memory error", "data_format_2": "Multiple-event", "descriptor_3": "Multi-bit ECC memory error", "data_format_3": "Multiple-event"}}, {"handle": "0x01A2", "type": 16, "bytes": 23, "description": "Physical Memory Array", "values": {"location": "System Board Or Motherboard", "use": "System Memory", "error_correction_type": "None", "maximum_capacity": "3 GB", "error_information_handle": "Not Provided", "number_of_devices": "64"}}, {"handle": "0x01A3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "2048 MB", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #0", "bank_locator": "RAM slot #0", "type": "DRAM", "type_detail": "EDO", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01A4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #1", "bank_locator": "RAM slot #1", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01A5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #2", "bank_locator": "RAM slot #2", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01A6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #3", "bank_locator": "RAM slot #3", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01A7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #4", "bank_locator": "RAM slot #4", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01A8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #5", "bank_locator": "RAM slot #5", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01A9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #6", "bank_locator": "RAM slot #6", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01AA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #7", "bank_locator": "RAM slot #7", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01AB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #8", "bank_locator": "RAM slot #8", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01AC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #9", "bank_locator": "RAM slot #9", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01AD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #10", "bank_locator": "RAM slot #10", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01AE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #11", "bank_locator": "RAM slot #11", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01AF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #12", "bank_locator": "RAM slot #12", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01B0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #13", "bank_locator": "RAM slot #13", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01B1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #14", "bank_locator": "RAM slot #14", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01B2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #15", "bank_locator": "RAM slot #15", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01B3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #16", "bank_locator": "RAM slot #16", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01B4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #17", "bank_locator": "RAM slot #17", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01B5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #18", "bank_locator": "RAM slot #18", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01B6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #19", "bank_locator": "RAM slot #19", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01B7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #20", "bank_locator": "RAM slot #20", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01B8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #21", "bank_locator": "RAM slot #21", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01B9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #22", "bank_locator": "RAM slot #22", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01BA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #23", "bank_locator": "RAM slot #23", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01BB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #24", "bank_locator": "RAM slot #24", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01BC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #25", "bank_locator": "RAM slot #25", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01BD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #26", "bank_locator": "RAM slot #26", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01BE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #27", "bank_locator": "RAM slot #27", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01BF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #28", "bank_locator": "RAM slot #28", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01C0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #29", "bank_locator": "RAM slot #29", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01C1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #30", "bank_locator": "RAM slot #30", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01C2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #31", "bank_locator": "RAM slot #31", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01C3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #32", "bank_locator": "RAM slot #32", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01C4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #33", "bank_locator": "RAM slot #33", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01C5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #34", "bank_locator": "RAM slot #34", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01C6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #35", "bank_locator": "RAM slot #35", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01C7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #36", "bank_locator": "RAM slot #36", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01C8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #37", "bank_locator": "RAM slot #37", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01C9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #38", "bank_locator": "RAM slot #38", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01CA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #39", "bank_locator": "RAM slot #39", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01CB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #40", "bank_locator": "RAM slot #40", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01CC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #41", "bank_locator": "RAM slot #41", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01CD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #42", "bank_locator": "RAM slot #42", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01CE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #43", "bank_locator": "RAM slot #43", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01CF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #44", "bank_locator": "RAM slot #44", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01D0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #45", "bank_locator": "RAM slot #45", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01D1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #46", "bank_locator": "RAM slot #46", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01D2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #47", "bank_locator": "RAM slot #47", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01D3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #48", "bank_locator": "RAM slot #48", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01D4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #49", "bank_locator": "RAM slot #49", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01D5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #50", "bank_locator": "RAM slot #50", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01D6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #51", "bank_locator": "RAM slot #51", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01D7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #52", "bank_locator": "RAM slot #52", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01D8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #53", "bank_locator": "RAM slot #53", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01D9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #54", "bank_locator": "RAM slot #54", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01DA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #55", "bank_locator": "RAM slot #55", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01DB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #56", "bank_locator": "RAM slot #56", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01DC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #57", "bank_locator": "RAM slot #57", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01DD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #58", "bank_locator": "RAM slot #58", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01DE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #59", "bank_locator": "RAM slot #59", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01DF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #60", "bank_locator": "RAM slot #60", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01E0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #61", "bank_locator": "RAM slot #61", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01E1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #62", "bank_locator": "RAM slot #62", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01E2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "Unknown", "data_width": "Unknown", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "RAM slot #63", "bank_locator": "RAM slot #63", "type": "DRAM", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01E3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #0", "bank_locator": "NVD #0", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01E4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #1", "bank_locator": "NVD #1", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01E5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #2", "bank_locator": "NVD #2", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01E6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #3", "bank_locator": "NVD #3", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01E7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #4", "bank_locator": "NVD #4", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01E8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #5", "bank_locator": "NVD #5", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01E9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #6", "bank_locator": "NVD #6", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01EA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #7", "bank_locator": "NVD #7", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01EB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #8", "bank_locator": "NVD #8", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01EC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #9", "bank_locator": "NVD #9", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01ED", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #10", "bank_locator": "NVD #10", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01EE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #11", "bank_locator": "NVD #11", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01EF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #12", "bank_locator": "NVD #12", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01F0", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #13", "bank_locator": "NVD #13", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01F1", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #14", "bank_locator": "NVD #14", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01F2", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #15", "bank_locator": "NVD #15", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01F3", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #16", "bank_locator": "NVD #16", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01F4", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #17", "bank_locator": "NVD #17", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01F5", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #18", "bank_locator": "NVD #18", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01F6", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #19", "bank_locator": "NVD #19", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01F7", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #20", "bank_locator": "NVD #20", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01F8", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #21", "bank_locator": "NVD #21", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01F9", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #22", "bank_locator": "NVD #22", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01FA", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #23", "bank_locator": "NVD #23", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01FB", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #24", "bank_locator": "NVD #24", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01FC", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #25", "bank_locator": "NVD #25", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01FD", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #26", "bank_locator": "NVD #26", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01FE", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #27", "bank_locator": "NVD #27", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x01FF", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #28", "bank_locator": "NVD #28", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0200", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #29", "bank_locator": "NVD #29", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0201", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #30", "bank_locator": "NVD #30", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0202", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #31", "bank_locator": "NVD #31", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0203", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #32", "bank_locator": "NVD #32", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0204", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #33", "bank_locator": "NVD #33", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0205", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #34", "bank_locator": "NVD #34", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0206", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #35", "bank_locator": "NVD #35", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0207", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #36", "bank_locator": "NVD #36", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0208", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #37", "bank_locator": "NVD #37", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0209", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #38", "bank_locator": "NVD #38", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x020A", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #39", "bank_locator": "NVD #39", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x020B", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #40", "bank_locator": "NVD #40", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x020C", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #41", "bank_locator": "NVD #41", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x020D", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #42", "bank_locator": "NVD #42", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x020E", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #43", "bank_locator": "NVD #43", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x020F", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #44", "bank_locator": "NVD #44", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0210", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #45", "bank_locator": "NVD #45", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0211", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #46", "bank_locator": "NVD #46", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0212", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #47", "bank_locator": "NVD #47", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0213", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #48", "bank_locator": "NVD #48", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0214", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #49", "bank_locator": "NVD #49", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0215", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #50", "bank_locator": "NVD #50", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0216", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #51", "bank_locator": "NVD #51", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0217", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #52", "bank_locator": "NVD #52", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0218", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #53", "bank_locator": "NVD #53", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0219", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #54", "bank_locator": "NVD #54", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x021A", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #55", "bank_locator": "NVD #55", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x021B", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #56", "bank_locator": "NVD #56", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x021C", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #57", "bank_locator": "NVD #57", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x021D", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #58", "bank_locator": "NVD #58", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x021E", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #59", "bank_locator": "NVD #59", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x021F", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #60", "bank_locator": "NVD #60", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0220", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #61", "bank_locator": "NVD #61", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0221", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #62", "bank_locator": "NVD #62", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0222", "type": 17, "bytes": 34, "description": "Memory Device", "values": {"array_handle": "0x0025", "error_information_handle": "No Error", "total_width": "32 bits", "data_width": "32 bits", "size": "No Module Installed", "form_factor": "DIMM", "set": "None", "locator": "NVD #63", "bank_locator": "NVD #63", "type": "Other", "type_detail": "Unknown", "speed": "Unknown", "manufacturer": "Not Specified", "serial_number": "Not Specified", "asset_tag": "Not Specified", "part_number": "Not Specified", "rank": "Unknown", "configured_clock_speed": "Unknown"}}, {"handle": "0x0223", "type": 18, "bytes": 23, "description": "32-bit Memory Error Information", "values": {"type": "OK", "granularity": "Unknown", "operation": "Unknown", "vendor_syndrome": "Unknown", "memory_array_address": "Unknown", "device_address": "Unknown", "resolution": "Unknown"}}, {"handle": "0x0224", "type": 19, "bytes": 31, "description": "Memory Array Mapped Address", "values": {"starting_address": "0x00000000000", "ending_address": "0x0007FFFFFFF", "range_size": "2 GB", "physical_array_handle": "0x0025", "partition_width": "64"}}, {"handle": "0x0225", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0026", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0226", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0027", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0227", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0028", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0228", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0029", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0229", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x002F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x022F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0030", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0230", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0031", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0231", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0032", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0232", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0033", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0233", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0034", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0234", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0035", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0235", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0036", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0236", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0037", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0237", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0038", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0238", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0039", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0239", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x003F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x023F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0040", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0240", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0041", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0241", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0042", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0242", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0043", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0243", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0044", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0244", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0045", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0245", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0046", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0246", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0047", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0247", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0048", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0248", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0049", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0249", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x004F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x024F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0050", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0250", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0051", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0251", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0052", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0252", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0053", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0253", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0054", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0254", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0055", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0255", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0056", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0256", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0057", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0257", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0058", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0258", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0059", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0259", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005A", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025A", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005B", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025B", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005C", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025C", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005D", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025D", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005E", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025E", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x005F", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x025F", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0060", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0260", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0061", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0261", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0062", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0262", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0063", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0263", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0064", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0264", "type": 20, "bytes": 35, "description": "Memory Device Mapped Address", "values": {"starting_address": "0x00080000000", "ending_address": "0x0103FEFFFFF", "range_size": "64511 MB", "physical_device_handle": "0x0065", "memory_array_mapped_address_handle": "0x00A7", "partition_row_position": "Unknown", "interleave_position": "Unknown", "interleaved_data_depth": "Unknown"}}, {"handle": "0x0265", "type": 23, "bytes": 13, "description": "System Reset", "values": {"status": "Enabled", "watchdog_timer": "Present", "boot_option": "Do Not Reboot", "boot_option_on_limit": "Do Not Reboot", "reset_count": "Unknown", "reset_limit": "Unknown", "timer_interval": "Unknown", "timeout": "Unknown"}}, {"handle": "0x0266", "type": 24, "bytes": 5, "description": "Hardware Security", "values": {"power-on_password_status": "Disabled", "keyboard_password_status": "Unknown", "administrator_password_status": "Enabled", "front_panel_reset_status": "Unknown"}}, {"handle": "0x0267", "type": 30, "bytes": 6, "description": "Out-of-band Remote Access", "values": {"manufacturer_name": "Intel", "inbound_connection": "Enabled", "outbound_connection": "Disabled"}}, {"handle": "0x0268", "type": 32, "bytes": 20, "description": "System Boot Information", "values": {"status": "No errors detected"}}, {"handle": "0x0269", "type": 33, "bytes": 31, "description": "64-bit Memory Error Information", "values": {"type": "OK", "granularity": "Unknown", "operation": "Unknown", "vendor_syndrome": "Unknown", "memory_array_address": "Unknown", "device_address": "Unknown", "resolution": "Unknown"}}, {"handle": "0x026A", "type": 126, "bytes": 4, "description": "Inactive", "values": null}, {"handle": "0x026B", "type": 127, "bytes": 4, "description": "End Of Table", "values": null}] jc-1.17.3/tests/fixtures/ubuntu-18.04/dmidecode.out000066400000000000000000010360471415226333200216660ustar00rootroot00000000000000# dmidecode 3.1 Getting SMBIOS data from sysfs. SMBIOS 2.7 present. 620 structures occupying 29060 bytes. Table at 0x000E0010. Handle 0x0000, DMI type 0, 24 bytes BIOS Information Vendor: Phoenix Technologies LTD Version: 6.00 Release Date: 04/13/2018 Address: 0xEA490 Runtime Size: 88944 bytes ROM Size: 64 kB Characteristics: ISA is supported PCI is supported PC Card (PCMCIA) is supported PNP is supported APM is supported BIOS is upgradeable BIOS shadowing is allowed ESCD support is available Boot from CD is supported Selectable boot is supported EDD is supported Print screen service is supported (int 5h) 8042 keyboard services are supported (int 9h) Serial services are supported (int 14h) Printer services are supported (int 17h) CGA/mono video services are supported (int 10h) ACPI is supported Smart battery is supported BIOS boot specification is supported Function key-initiated network boot is supported Targeted content distribution is supported BIOS Revision: 4.6 Firmware Revision: 0.0 Handle 0x0001, DMI type 1, 27 bytes System Information Manufacturer: VMware, Inc. Product Name: VMware Virtual Platform Version: None Serial Number: VMware-56 4d 0d 1a cc cf 45 fa-43 81 ac 1f 3b 99 45 17 UUID: 1A0D4D56-CFCC-FA45-4381-AC1F3B994517 Wake-up Type: Power Switch SKU Number: Not Specified Family: Not Specified Handle 0x0002, DMI type 2, 15 bytes Base Board Information Manufacturer: Intel Corporation Product Name: 440BX Desktop Reference Platform Version: None Serial Number: None Asset Tag: Not Specified Features: None Location In Chassis: Not Specified Chassis Handle: 0x0000 Type: Unknown Contained Object Handles: 0 Handle 0x0003, DMI type 3, 21 bytes Chassis Information Manufacturer: No Enclosure Type: Other Lock: Not Present Version: N/A Serial Number: None Asset Tag: No Asset Tag Boot-up State: Safe Power Supply State: Safe Thermal State: Safe Security Status: None OEM Information: 0x00001234 Height: Unspecified Number Of Power Cords: Unspecified Contained Elements: 0 Handle 0x0004, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #000 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 08 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Enabled Upgrade: ZIF Socket L1 Cache Handle: 0x0094 L2 Cache Handle: 0x0114 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0005, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #001 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0095 L2 Cache Handle: 0x0115 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0006, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #002 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0096 L2 Cache Handle: 0x0116 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0007, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #003 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0097 L2 Cache Handle: 0x0117 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0008, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #004 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0098 L2 Cache Handle: 0x0118 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0009, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #005 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0099 L2 Cache Handle: 0x0119 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x000A, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #006 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x009A L2 Cache Handle: 0x011A L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x000B, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #007 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x009B L2 Cache Handle: 0x011B L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x000C, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #008 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x009C L2 Cache Handle: 0x011C L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x000D, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #009 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x009D L2 Cache Handle: 0x011D L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x000E, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #010 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x009E L2 Cache Handle: 0x011E L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x000F, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #011 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x009F L2 Cache Handle: 0x011F L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0010, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #012 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00A0 L2 Cache Handle: 0x0120 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0011, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #013 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00A1 L2 Cache Handle: 0x0121 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0012, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #014 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00A2 L2 Cache Handle: 0x0122 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0013, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #015 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00A3 L2 Cache Handle: 0x0123 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0014, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #016 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00A4 L2 Cache Handle: 0x0124 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0015, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #017 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00A5 L2 Cache Handle: 0x0125 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0016, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #018 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00A6 L2 Cache Handle: 0x0126 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0017, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #019 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00A7 L2 Cache Handle: 0x0127 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0018, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #020 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00A8 L2 Cache Handle: 0x0128 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0019, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #021 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00A9 L2 Cache Handle: 0x0129 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x001A, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #022 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00AA L2 Cache Handle: 0x012A L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x001B, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #023 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00AB L2 Cache Handle: 0x012B L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x001C, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #024 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00AC L2 Cache Handle: 0x012C L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x001D, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #025 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00AD L2 Cache Handle: 0x012D L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x001E, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #026 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00AE L2 Cache Handle: 0x012E L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x001F, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #027 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00AF L2 Cache Handle: 0x012F L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0020, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #028 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00B0 L2 Cache Handle: 0x0130 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0021, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #029 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00B1 L2 Cache Handle: 0x0131 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0022, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #030 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00B2 L2 Cache Handle: 0x0132 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0023, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #031 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00B3 L2 Cache Handle: 0x0133 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0024, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #032 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00B4 L2 Cache Handle: 0x0134 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0025, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #033 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00B5 L2 Cache Handle: 0x0135 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0026, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #034 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00B6 L2 Cache Handle: 0x0136 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0027, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #035 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00B7 L2 Cache Handle: 0x0137 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0028, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #036 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00B8 L2 Cache Handle: 0x0138 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0029, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #037 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00B9 L2 Cache Handle: 0x0139 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x002A, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #038 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00BA L2 Cache Handle: 0x013A L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x002B, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #039 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00BB L2 Cache Handle: 0x013B L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x002C, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #040 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00BC L2 Cache Handle: 0x013C L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x002D, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #041 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00BD L2 Cache Handle: 0x013D L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x002E, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #042 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00BE L2 Cache Handle: 0x013E L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x002F, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #043 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00BF L2 Cache Handle: 0x013F L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0030, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #044 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00C0 L2 Cache Handle: 0x0140 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0031, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #045 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00C1 L2 Cache Handle: 0x0141 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0032, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #046 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00C2 L2 Cache Handle: 0x0142 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0033, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #047 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00C3 L2 Cache Handle: 0x0143 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0034, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #048 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00C4 L2 Cache Handle: 0x0144 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0035, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #049 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00C5 L2 Cache Handle: 0x0145 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0036, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #050 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00C6 L2 Cache Handle: 0x0146 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0037, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #051 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00C7 L2 Cache Handle: 0x0147 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0038, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #052 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00C8 L2 Cache Handle: 0x0148 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0039, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #053 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00C9 L2 Cache Handle: 0x0149 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x003A, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #054 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00CA L2 Cache Handle: 0x014A L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x003B, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #055 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00CB L2 Cache Handle: 0x014B L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x003C, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #056 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00CC L2 Cache Handle: 0x014C L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x003D, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #057 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00CD L2 Cache Handle: 0x014D L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x003E, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #058 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00CE L2 Cache Handle: 0x014E L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x003F, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #059 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00CF L2 Cache Handle: 0x014F L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0040, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #060 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00D0 L2 Cache Handle: 0x0150 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0041, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #061 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00D1 L2 Cache Handle: 0x0151 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0042, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #062 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00D2 L2 Cache Handle: 0x0152 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0043, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #063 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00D3 L2 Cache Handle: 0x0153 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0044, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #064 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00D4 L2 Cache Handle: 0x0154 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0045, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #065 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00D5 L2 Cache Handle: 0x0155 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0046, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #066 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00D6 L2 Cache Handle: 0x0156 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0047, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #067 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00D7 L2 Cache Handle: 0x0157 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0048, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #068 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00D8 L2 Cache Handle: 0x0158 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0049, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #069 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00D9 L2 Cache Handle: 0x0159 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x004A, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #070 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00DA L2 Cache Handle: 0x015A L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x004B, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #071 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00DB L2 Cache Handle: 0x015B L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x004C, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #072 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00DC L2 Cache Handle: 0x015C L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x004D, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #073 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00DD L2 Cache Handle: 0x015D L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x004E, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #074 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00DE L2 Cache Handle: 0x015E L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x004F, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #075 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00DF L2 Cache Handle: 0x015F L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0050, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #076 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00E0 L2 Cache Handle: 0x0160 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0051, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #077 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00E1 L2 Cache Handle: 0x0161 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0052, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #078 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00E2 L2 Cache Handle: 0x0162 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0053, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #079 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00E3 L2 Cache Handle: 0x0163 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0054, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #080 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00E4 L2 Cache Handle: 0x0164 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0055, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #081 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00E5 L2 Cache Handle: 0x0165 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0056, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #082 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00E6 L2 Cache Handle: 0x0166 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0057, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #083 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00E7 L2 Cache Handle: 0x0167 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0058, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #084 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00E8 L2 Cache Handle: 0x0168 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0059, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #085 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00E9 L2 Cache Handle: 0x0169 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x005A, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #086 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00EA L2 Cache Handle: 0x016A L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x005B, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #087 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00EB L2 Cache Handle: 0x016B L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x005C, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #088 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00EC L2 Cache Handle: 0x016C L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x005D, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #089 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00ED L2 Cache Handle: 0x016D L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x005E, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #090 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00EE L2 Cache Handle: 0x016E L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x005F, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #091 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00EF L2 Cache Handle: 0x016F L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0060, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #092 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00F0 L2 Cache Handle: 0x0170 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0061, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #093 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00F1 L2 Cache Handle: 0x0171 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0062, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #094 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00F2 L2 Cache Handle: 0x0172 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0063, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #095 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00F3 L2 Cache Handle: 0x0173 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0064, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #096 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00F4 L2 Cache Handle: 0x0174 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0065, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #097 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00F5 L2 Cache Handle: 0x0175 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0066, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #098 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00F6 L2 Cache Handle: 0x0176 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0067, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #099 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00F7 L2 Cache Handle: 0x0177 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0068, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #100 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00F8 L2 Cache Handle: 0x0178 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0069, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #101 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00F9 L2 Cache Handle: 0x0179 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x006A, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #102 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00FA L2 Cache Handle: 0x017A L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x006B, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #103 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00FB L2 Cache Handle: 0x017B L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x006C, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #104 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00FC L2 Cache Handle: 0x017C L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x006D, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #105 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00FD L2 Cache Handle: 0x017D L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x006E, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #106 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00FE L2 Cache Handle: 0x017E L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x006F, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #107 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x00FF L2 Cache Handle: 0x017F L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0070, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #108 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0100 L2 Cache Handle: 0x0180 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0071, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #109 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0101 L2 Cache Handle: 0x0181 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0072, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #110 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0102 L2 Cache Handle: 0x0182 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0073, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #111 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0103 L2 Cache Handle: 0x0183 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0074, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #112 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0104 L2 Cache Handle: 0x0184 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0075, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #113 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0105 L2 Cache Handle: 0x0185 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0076, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #114 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0106 L2 Cache Handle: 0x0186 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0077, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #115 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0107 L2 Cache Handle: 0x0187 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0078, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #116 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0108 L2 Cache Handle: 0x0188 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0079, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #117 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0109 L2 Cache Handle: 0x0189 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x007A, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #118 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x010A L2 Cache Handle: 0x018A L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x007B, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #119 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x010B L2 Cache Handle: 0x018B L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x007C, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #120 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x010C L2 Cache Handle: 0x018C L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x007D, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #121 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x010D L2 Cache Handle: 0x018D L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x007E, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #122 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x010E L2 Cache Handle: 0x018E L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x007F, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #123 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x010F L2 Cache Handle: 0x018F L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0080, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #124 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0110 L2 Cache Handle: 0x0190 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0081, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #125 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0111 L2 Cache Handle: 0x0191 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0082, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #126 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0112 L2 Cache Handle: 0x0192 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0083, DMI type 4, 42 bytes Processor Information Socket Designation: CPU #127 Type: Central Processor Family: Unknown Manufacturer: GenuineIntel ID: EA 06 00 00 FF FB 8B 0F Version: Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz Voltage: 3.3 V External Clock: Unknown Max Speed: 30000 MHz Current Speed: 2400 MHz Status: Populated, Disabled By BIOS Upgrade: ZIF Socket L1 Cache Handle: 0x0113 L2 Cache Handle: 0x0193 L3 Cache Handle: Not Provided Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Core Count: 1 Core Enabled: 1 Characteristics: 64-bit capable Execute Protection Handle 0x0084, DMI type 5, 46 bytes Memory Controller Information Error Detecting Method: None Error Correcting Capabilities: None Supported Interleave: One-way Interleave Current Interleave: One-way Interleave Maximum Memory Module Size: 32768 MB Maximum Total Memory Size: 491520 MB Supported Speeds: 70 ns 60 ns Supported Memory Types: FPM EDO DIMM SDRAM Memory Module Voltage: 3.3 V Associated Memory Slots: 15 0x0006 0x0007 0x0008 0x0009 0x000A 0x000B 0x000C 0x000D 0x000E 0x000F 0x0010 0x0011 0x0012 0x0013 0x0014 Enabled Error Correcting Capabilities: None Handle 0x0085, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #0 Bank Connections: None Current Speed: Unknown Type: EDO DIMM Installed Size: 2048 MB (Single-bank Connection) Enabled Size: 2048 MB (Single-bank Connection) Error Status: OK Handle 0x0086, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #1 Bank Connections: None Current Speed: Unknown Type: DIMM Installed Size: Not Installed Enabled Size: Not Installed Error Status: OK Handle 0x0087, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #2 Bank Connections: None Current Speed: Unknown Type: DIMM Installed Size: Not Installed Enabled Size: Not Installed Error Status: OK Handle 0x0088, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #3 Bank Connections: None Current Speed: Unknown Type: DIMM Installed Size: Not Installed Enabled Size: Not Installed Error Status: OK Handle 0x0089, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #4 Bank Connections: None Current Speed: Unknown Type: DIMM Installed Size: Not Installed Enabled Size: Not Installed Error Status: OK Handle 0x008A, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #5 Bank Connections: None Current Speed: Unknown Type: DIMM Installed Size: Not Installed Enabled Size: Not Installed Error Status: OK Handle 0x008B, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #6 Bank Connections: None Current Speed: Unknown Type: DIMM Installed Size: Not Installed Enabled Size: Not Installed Error Status: OK Handle 0x008C, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #7 Bank Connections: None Current Speed: Unknown Type: DIMM Installed Size: Not Installed Enabled Size: Not Installed Error Status: OK Handle 0x008D, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #8 Bank Connections: None Current Speed: Unknown Type: DIMM Installed Size: Not Installed Enabled Size: Not Installed Error Status: OK Handle 0x008E, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #9 Bank Connections: None Current Speed: Unknown Type: DIMM Installed Size: Not Installed Enabled Size: Not Installed Error Status: OK Handle 0x008F, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #10 Bank Connections: None Current Speed: Unknown Type: DIMM Installed Size: Not Installed Enabled Size: Not Installed Error Status: OK Handle 0x0090, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #11 Bank Connections: None Current Speed: Unknown Type: DIMM Installed Size: Not Installed Enabled Size: Not Installed Error Status: OK Handle 0x0091, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #12 Bank Connections: None Current Speed: Unknown Type: DIMM Installed Size: Not Installed Enabled Size: Not Installed Error Status: OK Handle 0x0092, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #13 Bank Connections: None Current Speed: Unknown Type: DIMM Installed Size: Not Installed Enabled Size: Not Installed Error Status: OK Handle 0x0093, DMI type 6, 12 bytes Memory Module Information Socket Designation: RAM socket #14 Bank Connections: None Current Speed: Unknown Type: DIMM Installed Size: Not Installed Enabled Size: Not Installed Error Status: OK Handle 0x0094, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0095, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0096, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0097, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0098, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0099, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x009A, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x009B, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x009C, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x009D, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x009E, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x009F, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00A0, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00A1, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00A2, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00A3, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00A4, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00A5, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00A6, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00A7, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00A8, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00A9, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00AA, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00AB, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00AC, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00AD, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00AE, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00AF, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00B0, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00B1, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00B2, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00B3, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00B4, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00B5, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00B6, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00B7, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00B8, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00B9, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00BA, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00BB, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00BC, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00BD, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00BE, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00BF, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00C0, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00C1, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00C2, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00C3, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00C4, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00C5, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00C6, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00C7, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00C8, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00C9, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00CA, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00CB, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00CC, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00CD, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00CE, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00CF, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00D0, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00D1, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00D2, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00D3, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00D4, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00D5, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00D6, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00D7, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00D8, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00D9, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00DA, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00DB, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00DC, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00DD, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00DE, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00DF, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00E0, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00E1, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00E2, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00E3, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00E4, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00E5, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00E6, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00E7, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00E8, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00E9, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00EA, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00EB, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00EC, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00ED, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00EE, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00EF, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00F0, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00F1, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00F2, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00F3, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00F4, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00F5, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00F6, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00F7, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00F8, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00F9, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00FA, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00FB, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00FC, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00FD, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00FE, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x00FF, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0100, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0101, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0102, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0103, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0104, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0105, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0106, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0107, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0108, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0109, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x010A, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x010B, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x010C, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x010D, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x010E, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x010F, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0110, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0111, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0112, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0113, DMI type 7, 19 bytes Cache Information Socket Designation: L1 Configuration: Enabled, Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 16 kB Maximum Size: 16 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Asynchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0114, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0115, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0116, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0117, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0118, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0119, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x011A, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x011B, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x011C, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x011D, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x011E, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x011F, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0120, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0121, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0122, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0123, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0124, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0125, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0126, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0127, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0128, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0129, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x012A, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x012B, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x012C, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x012D, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x012E, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x012F, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0130, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0131, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0132, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0133, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0134, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0135, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0136, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0137, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0138, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0139, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x013A, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x013B, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x013C, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x013D, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x013E, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x013F, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0140, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0141, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0142, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0143, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0144, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0145, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0146, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0147, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0148, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0149, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x014A, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x014B, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x014C, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x014D, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x014E, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x014F, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0150, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0151, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0152, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0153, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0154, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0155, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0156, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0157, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0158, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0159, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x015A, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x015B, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x015C, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x015D, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x015E, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x015F, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0160, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0161, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0162, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0163, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0164, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0165, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0166, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0167, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0168, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0169, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x016A, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x016B, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x016C, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x016D, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x016E, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x016F, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0170, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0171, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0172, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0173, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0174, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0175, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0176, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0177, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0178, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0179, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x017A, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x017B, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x017C, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x017D, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x017E, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x017F, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0180, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0181, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0182, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0183, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0184, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0185, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0186, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0187, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0188, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0189, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x018A, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x018B, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x018C, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x018D, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x018E, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x018F, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0190, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0191, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0192, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0193, DMI type 7, 19 bytes Cache Information Socket Designation: L2 Configuration: Enabled, Socketed, Level 2 Operational Mode: Write Back Location: External Installed Size: 0 kB Maximum Size: 24576 kB Supported SRAM Types: Burst Pipeline Burst Asynchronous Installed SRAM Type: Burst Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x0194, DMI type 8, 9 bytes Port Connector Information Internal Reference Designator: J19 Internal Connector Type: 9 Pin Dual Inline (pin 10 cut) External Reference Designator: COM 1 External Connector Type: DB-9 male Port Type: Serial Port 16550A Compatible Handle 0x0195, DMI type 8, 9 bytes Port Connector Information Internal Reference Designator: J23 Internal Connector Type: 25 Pin Dual Inline (pin 26 cut) External Reference Designator: Parallel External Connector Type: DB-25 female Port Type: Parallel Port ECP/EPP Handle 0x0196, DMI type 8, 9 bytes Port Connector Information Internal Reference Designator: J11 Internal Connector Type: None External Reference Designator: Keyboard External Connector Type: Circular DIN-8 male Port Type: Keyboard Port Handle 0x0197, DMI type 8, 9 bytes Port Connector Information Internal Reference Designator: J12 Internal Connector Type: None External Reference Designator: PS/2 Mouse External Connector Type: Circular DIN-8 male Port Type: Keyboard Port Handle 0x0198, DMI type 9, 17 bytes System Slot Information Designation: ISA Slot J8 Type: 16-bit ISA Current Usage: Unknown Length: Short Characteristics: 5.0 V is provided Bus Address: 00ff:ff:1f.7 Handle 0x0199, DMI type 9, 17 bytes System Slot Information Designation: ISA Slot J9 Type: 16-bit ISA Current Usage: Unknown Length: Short Characteristics: 5.0 V is provided Bus Address: 00ff:ff:1f.7 Handle 0x019A, DMI type 9, 17 bytes System Slot Information Designation: ISA Slot J10 Type: 16-bit ISA Current Usage: Unknown Length: Short Characteristics: 5.0 V is provided Bus Address: 00ff:ff:1f.7 Handle 0x019B, DMI type 9, 17 bytes System Slot Information Designation: PCI Slot J11 Type: 32-bit PCI Current Usage: In Use Length: Long ID: 1 Characteristics: 5.0 V is provided 3.3 V is provided Bus Address: 0000:00:0f.0 Handle 0x019C, DMI type 9, 17 bytes System Slot Information Designation: PCI Slot J12 Type: 32-bit PCI Current Usage: In Use Length: Long ID: 2 Characteristics: 5.0 V is provided 3.3 V is provided Bus Address: 0000:00:10.0 Handle 0x019D, DMI type 9, 17 bytes System Slot Information Designation: PCI Slot J13 Type: 32-bit PCI Current Usage: In Use Length: Long ID: 3 Characteristics: 5.0 V is provided 3.3 V is provided Bus Address: 0000:00:11.0 Handle 0x019E, DMI type 9, 17 bytes System Slot Information Designation: PCI Slot J14 Type: 32-bit PCI Current Usage: Available Length: Long ID: 4 Characteristics: 5.0 V is provided 3.3 V is provided Bus Address: 0000:00:12.0 Handle 0x019F, DMI type 10, 8 bytes On Board Device 1 Information Type: Video Status: Disabled Description: VMware SVGA II On Board Device 2 Information Type: Sound Status: Disabled Description: ES1371 Handle 0x01A0, DMI type 11, 5 bytes OEM Strings String 1: [MS_VM_CERT/SHA1/27d66596a61c48dd3dc7216fd715126e33f59ae7] String 2: Welcome to the Virtual Machine Handle 0x01A1, DMI type 15, 29 bytes System Event Log Area Length: 16 bytes Header Start Offset: 0x0000 Header Length: 16 bytes Data Start Offset: 0x0010 Access Method: General-purpose non-volatile data functions Access Address: 0x0000 Status: Invalid, Full Change Token: 0x00000036 Header Format: Type 1 Supported Log Type Descriptors: 3 Descriptor 1: POST error Data Format 1: POST results bitmap Descriptor 2: Single-bit ECC memory error Data Format 2: Multiple-event Descriptor 3: Multi-bit ECC memory error Data Format 3: Multiple-event Handle 0x01A2, DMI type 16, 23 bytes Physical Memory Array Location: System Board Or Motherboard Use: System Memory Error Correction Type: None Maximum Capacity: 3 GB Error Information Handle: Not Provided Number Of Devices: 64 Handle 0x01A3, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: 2048 MB Form Factor: DIMM Set: None Locator: RAM slot #0 Bank Locator: RAM slot #0 Type: DRAM Type Detail: EDO Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01A4, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #1 Bank Locator: RAM slot #1 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01A5, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #2 Bank Locator: RAM slot #2 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01A6, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #3 Bank Locator: RAM slot #3 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01A7, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #4 Bank Locator: RAM slot #4 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01A8, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #5 Bank Locator: RAM slot #5 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01A9, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #6 Bank Locator: RAM slot #6 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01AA, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #7 Bank Locator: RAM slot #7 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01AB, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #8 Bank Locator: RAM slot #8 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01AC, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #9 Bank Locator: RAM slot #9 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01AD, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #10 Bank Locator: RAM slot #10 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01AE, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #11 Bank Locator: RAM slot #11 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01AF, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #12 Bank Locator: RAM slot #12 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01B0, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #13 Bank Locator: RAM slot #13 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01B1, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #14 Bank Locator: RAM slot #14 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01B2, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #15 Bank Locator: RAM slot #15 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01B3, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #16 Bank Locator: RAM slot #16 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01B4, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #17 Bank Locator: RAM slot #17 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01B5, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #18 Bank Locator: RAM slot #18 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01B6, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #19 Bank Locator: RAM slot #19 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01B7, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #20 Bank Locator: RAM slot #20 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01B8, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #21 Bank Locator: RAM slot #21 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01B9, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #22 Bank Locator: RAM slot #22 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01BA, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #23 Bank Locator: RAM slot #23 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01BB, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #24 Bank Locator: RAM slot #24 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01BC, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #25 Bank Locator: RAM slot #25 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01BD, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #26 Bank Locator: RAM slot #26 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01BE, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #27 Bank Locator: RAM slot #27 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01BF, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #28 Bank Locator: RAM slot #28 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01C0, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #29 Bank Locator: RAM slot #29 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01C1, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #30 Bank Locator: RAM slot #30 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01C2, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #31 Bank Locator: RAM slot #31 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01C3, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #32 Bank Locator: RAM slot #32 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01C4, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #33 Bank Locator: RAM slot #33 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01C5, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #34 Bank Locator: RAM slot #34 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01C6, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #35 Bank Locator: RAM slot #35 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01C7, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #36 Bank Locator: RAM slot #36 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01C8, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #37 Bank Locator: RAM slot #37 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01C9, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #38 Bank Locator: RAM slot #38 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01CA, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #39 Bank Locator: RAM slot #39 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01CB, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #40 Bank Locator: RAM slot #40 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01CC, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #41 Bank Locator: RAM slot #41 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01CD, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #42 Bank Locator: RAM slot #42 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01CE, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #43 Bank Locator: RAM slot #43 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01CF, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #44 Bank Locator: RAM slot #44 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01D0, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #45 Bank Locator: RAM slot #45 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01D1, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #46 Bank Locator: RAM slot #46 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01D2, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #47 Bank Locator: RAM slot #47 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01D3, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #48 Bank Locator: RAM slot #48 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01D4, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #49 Bank Locator: RAM slot #49 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01D5, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #50 Bank Locator: RAM slot #50 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01D6, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #51 Bank Locator: RAM slot #51 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01D7, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #52 Bank Locator: RAM slot #52 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01D8, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #53 Bank Locator: RAM slot #53 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01D9, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #54 Bank Locator: RAM slot #54 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01DA, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #55 Bank Locator: RAM slot #55 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01DB, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #56 Bank Locator: RAM slot #56 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01DC, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #57 Bank Locator: RAM slot #57 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01DD, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #58 Bank Locator: RAM slot #58 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01DE, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #59 Bank Locator: RAM slot #59 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01DF, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #60 Bank Locator: RAM slot #60 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01E0, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #61 Bank Locator: RAM slot #61 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01E1, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #62 Bank Locator: RAM slot #62 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01E2, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: DIMM Set: None Locator: RAM slot #63 Bank Locator: RAM slot #63 Type: DRAM Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01E3, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #0 Bank Locator: NVD #0 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01E4, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #1 Bank Locator: NVD #1 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01E5, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #2 Bank Locator: NVD #2 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01E6, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #3 Bank Locator: NVD #3 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01E7, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #4 Bank Locator: NVD #4 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01E8, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #5 Bank Locator: NVD #5 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01E9, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #6 Bank Locator: NVD #6 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01EA, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #7 Bank Locator: NVD #7 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01EB, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #8 Bank Locator: NVD #8 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01EC, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #9 Bank Locator: NVD #9 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01ED, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #10 Bank Locator: NVD #10 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01EE, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #11 Bank Locator: NVD #11 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01EF, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #12 Bank Locator: NVD #12 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01F0, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #13 Bank Locator: NVD #13 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01F1, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #14 Bank Locator: NVD #14 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01F2, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #15 Bank Locator: NVD #15 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01F3, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #16 Bank Locator: NVD #16 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01F4, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #17 Bank Locator: NVD #17 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01F5, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #18 Bank Locator: NVD #18 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01F6, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #19 Bank Locator: NVD #19 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01F7, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #20 Bank Locator: NVD #20 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01F8, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #21 Bank Locator: NVD #21 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01F9, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #22 Bank Locator: NVD #22 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01FA, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #23 Bank Locator: NVD #23 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01FB, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #24 Bank Locator: NVD #24 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01FC, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #25 Bank Locator: NVD #25 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01FD, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #26 Bank Locator: NVD #26 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01FE, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #27 Bank Locator: NVD #27 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x01FF, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #28 Bank Locator: NVD #28 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x0200, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #29 Bank Locator: NVD #29 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x0201, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #30 Bank Locator: NVD #30 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x0202, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #31 Bank Locator: NVD #31 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x0203, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #32 Bank Locator: NVD #32 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x0204, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #33 Bank Locator: NVD #33 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x0205, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #34 Bank Locator: NVD #34 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x0206, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #35 Bank Locator: NVD #35 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x0207, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #36 Bank Locator: NVD #36 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x0208, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #37 Bank Locator: NVD #37 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x0209, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #38 Bank Locator: NVD #38 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x020A, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #39 Bank Locator: NVD #39 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x020B, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #40 Bank Locator: NVD #40 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x020C, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #41 Bank Locator: NVD #41 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x020D, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #42 Bank Locator: NVD #42 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x020E, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #43 Bank Locator: NVD #43 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x020F, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #44 Bank Locator: NVD #44 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x0210, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #45 Bank Locator: NVD #45 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x0211, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #46 Bank Locator: NVD #46 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x0212, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #47 Bank Locator: NVD #47 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x0213, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #48 Bank Locator: NVD #48 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x0214, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #49 Bank Locator: NVD #49 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x0215, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #50 Bank Locator: NVD #50 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x0216, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #51 Bank Locator: NVD #51 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x0217, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #52 Bank Locator: NVD #52 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x0218, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #53 Bank Locator: NVD #53 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x0219, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #54 Bank Locator: NVD #54 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x021A, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #55 Bank Locator: NVD #55 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x021B, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #56 Bank Locator: NVD #56 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x021C, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #57 Bank Locator: NVD #57 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x021D, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #58 Bank Locator: NVD #58 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x021E, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #59 Bank Locator: NVD #59 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x021F, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #60 Bank Locator: NVD #60 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x0220, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #61 Bank Locator: NVD #61 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x0221, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #62 Bank Locator: NVD #62 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x0222, DMI type 17, 34 bytes Memory Device Array Handle: 0x0025 Error Information Handle: No Error Total Width: 32 bits Data Width: 32 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: NVD #63 Bank Locator: NVD #63 Type: Other Type Detail: Unknown Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Clock Speed: Unknown Handle 0x0223, DMI type 18, 23 bytes 32-bit Memory Error Information Type: OK Granularity: Unknown Operation: Unknown Vendor Syndrome: Unknown Memory Array Address: Unknown Device Address: Unknown Resolution: Unknown Handle 0x0224, DMI type 19, 31 bytes Memory Array Mapped Address Starting Address: 0x00000000000 Ending Address: 0x0007FFFFFFF Range Size: 2 GB Physical Array Handle: 0x0025 Partition Width: 64 Handle 0x0225, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0026 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0226, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0027 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0227, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0028 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0228, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0029 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0229, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x002A Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x022A, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x002B Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x022B, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x002C Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x022C, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x002D Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x022D, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x002E Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x022E, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x002F Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x022F, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0030 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0230, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0031 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0231, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0032 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0232, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0033 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0233, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0034 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0234, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0035 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0235, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0036 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0236, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0037 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0237, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0038 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0238, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0039 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0239, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x003A Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x023A, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x003B Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x023B, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x003C Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x023C, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x003D Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x023D, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x003E Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x023E, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x003F Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x023F, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0040 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0240, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0041 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0241, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0042 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0242, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0043 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0243, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0044 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0244, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0045 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0245, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0046 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0246, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0047 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0247, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0048 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0248, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0049 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0249, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x004A Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x024A, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x004B Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x024B, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x004C Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x024C, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x004D Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x024D, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x004E Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x024E, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x004F Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x024F, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0050 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0250, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0051 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0251, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0052 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0252, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0053 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0253, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0054 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0254, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0055 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0255, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0056 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0256, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0057 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0257, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0058 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0258, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0059 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0259, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x005A Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x025A, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x005B Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x025B, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x005C Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x025C, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x005D Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x025D, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x005E Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x025E, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x005F Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x025F, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0060 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0260, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0061 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0261, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0062 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0262, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0063 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0263, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0064 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0264, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00080000000 Ending Address: 0x0103FEFFFFF Range Size: 64511 MB Physical Device Handle: 0x0065 Memory Array Mapped Address Handle: 0x00A7 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0265, DMI type 23, 13 bytes System Reset Status: Enabled Watchdog Timer: Present Boot Option: Do Not Reboot Boot Option On Limit: Do Not Reboot Reset Count: Unknown Reset Limit: Unknown Timer Interval: Unknown Timeout: Unknown Handle 0x0266, DMI type 24, 5 bytes Hardware Security Power-On Password Status: Disabled Keyboard Password Status: Unknown Administrator Password Status: Enabled Front Panel Reset Status: Unknown Handle 0x0267, DMI type 30, 6 bytes Out-of-band Remote Access Manufacturer Name: Intel Inbound Connection: Enabled Outbound Connection: Disabled Handle 0x0268, DMI type 32, 20 bytes System Boot Information Status: No errors detected Handle 0x0269, DMI type 33, 31 bytes 64-bit Memory Error Information Type: OK Granularity: Unknown Operation: Unknown Vendor Syndrome: Unknown Memory Array Address: Unknown Device Address: Unknown Resolution: Unknown Handle 0x026A, DMI type 126, 4 bytes Inactive Handle 0x026B, DMI type 127, 4 bytes End Of Table jc-1.17.3/tests/fixtures/ubuntu-18.04/dpkg-l-codes.json000066400000000000000000000056571415226333200223660ustar00rootroot00000000000000[{"codes":"ii","name":"accountsservice","version":"0.6.45-1ubuntu1.3","architecture":"amd64","description":"query and manipulate user account information","desired":"install","status":"installed"},{"codes":"rc","name":"acl","version":"2.2.52-3build1","architecture":"amd64","description":"Access control list utilities","desired":"remove","status":"config-files"},{"codes":"uWR","name":"acpi","version":"1.7-1.1","architecture":"amd64","description":"displays information on ACPI devices","desired":"unknown","status":"trigger await","error":"reinstall required"},{"codes":"rh","name":"acpid","version":"1:2.0.28-1ubuntu1","architecture":"amd64","description":"Advanced Configuration and Power Interface event daemon","desired":"remove","status":"half installed"},{"codes":"pn","name":"adduser","version":"3.116ubuntu1","architecture":"all","description":"add and remove users and groups","desired":"purge","status":"not installed"},{"codes":"ii","name":"amd64-microcode","version":"3.20191021.1+really3","architecture":"amd64","description":"Processor microcode firmware for AMD CPUs","desired":"install","status":"installed"},{"codes":"ii","name":"apparmor","version":"2.12-4ubuntu5.1","architecture":"amd64","description":"user-space parser utility for AppArmor","desired":"install","status":"installed"},{"codes":"ii","name":"apport","version":"2.20.9-0ubuntu7.23","architecture":"all","description":"automatically generate crash reports for debugging","desired":"install","status":"installed"},{"codes":"ii","name":"apport-symptoms","version":"0.20","architecture":"all","description":"symptom scripts for apport","desired":"install","status":"installed"},{"codes":"rc","name":"linux-image-4.15.0-136-generic","version":"4.15.0-136.140","architecture":"amd64","description":"Signed kernel image generic","desired":"remove","status":"config-files"},{"codes":"ii","name":"linux-image-4.15.0-137-generic","version":"4.15.0-137.141","architecture":"amd64","description":"Signed kernel image generic","desired":"install","status":"installed"},{"codes":"ii","name":"linux-image-4.15.0-139-generic","version":"4.15.0-139.143","architecture":"amd64","description":"Signed kernel image generic","desired":"install","status":"installed"},{"codes":"ii","name":"linux-image-4.15.0-140-generic","version":"4.15.0-140.144","architecture":"amd64","description":"Signed kernel image generic","desired":"install","status":"installed"},{"codes":"rc","name":"linux-image-4.15.0-55-generic","version":"4.15.0-55.60","architecture":"amd64","description":"Signed kernel image generic","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-image-4.15.0-58-generic","version":"4.15.0-58.64","architecture":"amd64","description":"Signed kernel image generic","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-image-4.15.0-65-generic","version":"4.15.0-65.74","architecture":"amd64","description":"Signed kernel image generic","desired":"remove","status":"config-files"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/dpkg-l-codes.out000066400000000000000000000042541415226333200222140ustar00rootroot00000000000000Desired=Unknown/Install/Remove/Purge/Hold | Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend |/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad) ||/ Name Version Architecture Description +++-===============================-====================-====================-=================================================================== ii accountsservice 0.6.45-1ubuntu1.3 amd64 query and manipulate user account information rc acl 2.2.52-3build1 amd64 Access control list utilities uWR acpi 1.7-1.1 amd64 displays information on ACPI devices rh acpid 1:2.0.28-1ubuntu1 amd64 Advanced Configuration and Power Interface event daemon pn adduser 3.116ubuntu1 all add and remove users and groups ii amd64-microcode 3.20191021.1+really3 amd64 Processor microcode firmware for AMD CPUs ii apparmor 2.12-4ubuntu5.1 amd64 user-space parser utility for AppArmor ii apport 2.20.9-0ubuntu7.23 all automatically generate crash reports for debugging ii apport-symptoms 0.20 all symptom scripts for apport rc linux-image-4.15.0-136-generic 4.15.0-136.140 amd64 Signed kernel image generic ii linux-image-4.15.0-137-generic 4.15.0-137.141 amd64 Signed kernel image generic ii linux-image-4.15.0-139-generic 4.15.0-139.143 amd64 Signed kernel image generic ii linux-image-4.15.0-140-generic 4.15.0-140.144 amd64 Signed kernel image generic rc linux-image-4.15.0-55-generic 4.15.0-55.60 amd64 Signed kernel image generic rc linux-image-4.15.0-58-generic 4.15.0-58.64 amd64 Signed kernel image generic rc linux-image-4.15.0-65-generic 4.15.0-65.74 amd64 Signed kernel image generic jc-1.17.3/tests/fixtures/ubuntu-18.04/dpkg-l-columns500.json000066400000000000000000003736031415226333200231750ustar00rootroot00000000000000[{"codes":"ii","name":"accountsservice","version":"0.6.45-1ubuntu1.3","architecture":"amd64","description":"query and manipulate user account information","desired":"install","status":"installed"},{"codes":"ii","name":"acl","version":"2.2.52-3build1","architecture":"amd64","description":"Access control list utilities","desired":"install","status":"installed"},{"codes":"ii","name":"acpi","version":"1.7-1.1","architecture":"amd64","description":"displays information on ACPI devices","desired":"install","status":"installed"},{"codes":"ii","name":"acpid","version":"1:2.0.28-1ubuntu1","architecture":"amd64","description":"Advanced Configuration and Power Interface event daemon","desired":"install","status":"installed"},{"codes":"ii","name":"adduser","version":"3.116ubuntu1","architecture":"all","description":"add and remove users and groups","desired":"install","status":"installed"},{"codes":"ii","name":"amd64-microcode","version":"3.20191021.1+really3.20181128.1~ubuntu0.18.04.1","architecture":"amd64","description":"Processor microcode firmware for AMD CPUs","desired":"install","status":"installed"},{"codes":"ii","name":"apparmor","version":"2.12-4ubuntu5.1","architecture":"amd64","description":"user-space parser utility for AppArmor","desired":"install","status":"installed"},{"codes":"ii","name":"apport","version":"2.20.9-0ubuntu7.23","architecture":"all","description":"automatically generate crash reports for debugging","desired":"install","status":"installed"},{"codes":"ii","name":"apport-symptoms","version":"0.20","architecture":"all","description":"symptom scripts for apport","desired":"install","status":"installed"},{"codes":"ii","name":"apt","version":"1.6.12ubuntu0.2","architecture":"amd64","description":"commandline package manager","desired":"install","status":"installed"},{"codes":"ii","name":"apt-utils","version":"1.6.12ubuntu0.2","architecture":"amd64","description":"package management related utility programs","desired":"install","status":"installed"},{"codes":"ii","name":"at","version":"3.1.20-3.1ubuntu2","architecture":"amd64","description":"Delayed job execution and batch processing","desired":"install","status":"installed"},{"codes":"ii","name":"base-files","version":"10.1ubuntu2.9","architecture":"amd64","description":"Debian base system miscellaneous files","desired":"install","status":"installed"},{"codes":"ii","name":"base-passwd","version":"3.5.44","architecture":"amd64","description":"Debian base system master password and group files","desired":"install","status":"installed"},{"codes":"ii","name":"bash","version":"4.4.18-2ubuntu1.2","architecture":"amd64","description":"GNU Bourne Again SHell","desired":"install","status":"installed"},{"codes":"ii","name":"bash-completion","version":"1:2.8-1ubuntu1","architecture":"all","description":"programmable completion for the bash shell","desired":"install","status":"installed"},{"codes":"ii","name":"bc","version":"1.07.1-2","architecture":"amd64","description":"GNU bc arbitrary precision calculator language","desired":"install","status":"installed"},{"codes":"ii","name":"bcache-tools","version":"1.0.8-2build1","architecture":"amd64","description":"bcache userspace tools","desired":"install","status":"installed"},{"codes":"ii","name":"bind9-host","version":"1:9.11.3+dfsg-1ubuntu1.14","architecture":"amd64","description":"DNS lookup utility (deprecated)","desired":"install","status":"installed"},{"codes":"ii","name":"binutils","version":"2.30-21ubuntu1~18.04.5","architecture":"amd64","description":"GNU assembler, linker and binary utilities","desired":"install","status":"installed"},{"codes":"ii","name":"binutils-common:amd64","version":"2.30-21ubuntu1~18.04.5","architecture":"amd64","description":"Common files for the GNU assembler, linker and binary utilities","desired":"install","status":"installed"},{"codes":"ii","name":"binutils-x86-64-linux-gnu","version":"2.30-21ubuntu1~18.04.5","architecture":"amd64","description":"GNU binary utilities, for x86-64-linux-gnu target","desired":"install","status":"installed"},{"codes":"ii","name":"bluez","version":"5.48-0ubuntu3.4","architecture":"amd64","description":"Bluetooth tools and daemons","desired":"install","status":"installed"},{"codes":"ii","name":"bridge-utils","version":"1.5-15ubuntu1","architecture":"amd64","description":"Utilities for configuring the Linux Ethernet bridge","desired":"install","status":"installed"},{"codes":"ii","name":"bsdmainutils","version":"11.1.2ubuntu1","architecture":"amd64","description":"collection of more utilities from FreeBSD","desired":"install","status":"installed"},{"codes":"ii","name":"bsdutils","version":"1:2.31.1-0.4ubuntu3.7","architecture":"amd64","description":"basic utilities from 4.4BSD-Lite","desired":"install","status":"installed"},{"codes":"ii","name":"btrfs-progs","version":"4.15.1-1build1","architecture":"amd64","description":"Checksumming Copy on Write Filesystem utilities","desired":"install","status":"installed"},{"codes":"ii","name":"btrfs-tools","version":"4.15.1-1build1","architecture":"amd64","description":"transitional dummy package","desired":"install","status":"installed"},{"codes":"ii","name":"build-essential","version":"12.4ubuntu1","architecture":"amd64","description":"Informational list of build-essential packages","desired":"install","status":"installed"},{"codes":"ii","name":"busybox-initramfs","version":"1:1.27.2-2ubuntu3.3","architecture":"amd64","description":"Standalone shell setup for initramfs","desired":"install","status":"installed"},{"codes":"ii","name":"busybox-static","version":"1:1.27.2-2ubuntu3.3","architecture":"amd64","description":"Standalone rescue shell with tons of builtin utilities","desired":"install","status":"installed"},{"codes":"ii","name":"byobu","version":"5.125-0ubuntu1","architecture":"all","description":"text window manager, shell multiplexer, integrated DevOps environment","desired":"install","status":"installed"},{"codes":"ii","name":"bzip2","version":"1.0.6-8.1ubuntu0.2","architecture":"amd64","description":"high-quality block-sorting file compressor - utilities","desired":"install","status":"installed"},{"codes":"ii","name":"ca-certificates","version":"20210119~18.04.1","architecture":"all","description":"Common CA certificates","desired":"install","status":"installed"},{"codes":"ii","name":"cgroupfs-mount","version":"1.4","architecture":"all","description":"Light-weight package to set up cgroupfs mounts","desired":"install","status":"installed"},{"codes":"ii","name":"cloud-guest-utils","version":"0.30-0ubuntu5","architecture":"all","description":"cloud guest utilities","desired":"install","status":"installed"},{"codes":"ii","name":"cloud-init","version":"20.2-45-g5f7825e2-0ubuntu1~18.04.1","architecture":"all","description":"Init scripts for cloud instances","desired":"install","status":"installed"},{"codes":"ii","name":"cloud-initramfs-copymods","version":"0.40ubuntu1.1","architecture":"all","description":"copy initramfs modules into root filesystem for later use","desired":"install","status":"installed"},{"codes":"ii","name":"cloud-initramfs-dyn-netconf","version":"0.40ubuntu1.1","architecture":"all","description":"write a network interface file in /run for BOOTIF","desired":"install","status":"installed"},{"codes":"ii","name":"command-not-found","version":"18.04.5","architecture":"all","description":"Suggest installation of packages in interactive bash sessions","desired":"install","status":"installed"},{"codes":"ii","name":"command-not-found-data","version":"18.04.5","architecture":"amd64","description":"Set of data files for command-not-found.","desired":"install","status":"installed"},{"codes":"ii","name":"console-setup","version":"1.178ubuntu2.9","architecture":"all","description":"console font and keymap setup program","desired":"install","status":"installed"},{"codes":"ii","name":"console-setup-linux","version":"1.178ubuntu2.9","architecture":"all","description":"Linux specific part of console-setup","desired":"install","status":"installed"},{"codes":"ii","name":"containerd","version":"1.3.3-0ubuntu1~18.04.2","architecture":"amd64","description":"daemon to control runC","desired":"install","status":"installed"},{"codes":"ii","name":"coreutils","version":"8.28-1ubuntu1","architecture":"amd64","description":"GNU core utilities","desired":"install","status":"installed"},{"codes":"ii","name":"cpio","version":"2.12+dfsg-6ubuntu0.18.04.1","architecture":"amd64","description":"GNU cpio -- a program to manage archives of files","desired":"install","status":"installed"},{"codes":"ii","name":"cpp","version":"4:7.4.0-1ubuntu2.3","architecture":"amd64","description":"GNU C preprocessor (cpp)","desired":"install","status":"installed"},{"codes":"ii","name":"cpp-7","version":"7.5.0-3ubuntu1~18.04","architecture":"amd64","description":"GNU C preprocessor","desired":"install","status":"installed"},{"codes":"ii","name":"crda","version":"3.18-1build1","architecture":"amd64","description":"wireless Central Regulatory Domain Agent","desired":"install","status":"installed"},{"codes":"ii","name":"cron","version":"3.0pl1-128.1ubuntu1","architecture":"amd64","description":"process scheduling daemon","desired":"install","status":"installed"},{"codes":"ii","name":"cryptsetup","version":"2:2.0.2-1ubuntu1.1","architecture":"amd64","description":"disk encryption support - startup scripts","desired":"install","status":"installed"},{"codes":"ii","name":"cryptsetup-bin","version":"2:2.0.2-1ubuntu1.1","architecture":"amd64","description":"disk encryption support - command line tools","desired":"install","status":"installed"},{"codes":"ii","name":"curl","version":"7.58.0-2ubuntu3.13","architecture":"amd64","description":"command line tool for transferring data with URL syntax","desired":"install","status":"installed"},{"codes":"ii","name":"dash","version":"0.5.8-2.10","architecture":"amd64","description":"POSIX-compliant shell","desired":"install","status":"installed"},{"codes":"ii","name":"dbus","version":"1.12.2-1ubuntu1.2","architecture":"amd64","description":"simple interprocess messaging system (daemon and utilities)","desired":"install","status":"installed"},{"codes":"ii","name":"debconf","version":"1.5.66ubuntu1","architecture":"all","description":"Debian configuration management system","desired":"install","status":"installed"},{"codes":"ii","name":"debconf-i18n","version":"1.5.66ubuntu1","architecture":"all","description":"full internationalization support for debconf","desired":"install","status":"installed"},{"codes":"ii","name":"debianutils","version":"4.8.4","architecture":"amd64","description":"Miscellaneous utilities specific to Debian","desired":"install","status":"installed"},{"codes":"ii","name":"dh-python","version":"3.20180325ubuntu2","architecture":"all","description":"Debian helper tools for packaging Python libraries and applications","desired":"install","status":"installed"},{"codes":"ii","name":"diffutils","version":"1:3.6-1","architecture":"amd64","description":"File comparison utilities","desired":"install","status":"installed"},{"codes":"ii","name":"dirmngr","version":"2.2.4-1ubuntu1.3","architecture":"amd64","description":"GNU privacy guard - network certificate management service","desired":"install","status":"installed"},{"codes":"ii","name":"distro-info-data","version":"0.37ubuntu0.9","architecture":"all","description":"information about the distributions' releases (data files)","desired":"install","status":"installed"},{"codes":"ii","name":"dmeventd","version":"2:1.02.145-4.1ubuntu3.18.04.3","architecture":"amd64","description":"Linux Kernel Device Mapper event daemon","desired":"install","status":"installed"},{"codes":"ii","name":"dmidecode","version":"3.1-1ubuntu0.1","architecture":"amd64","description":"SMBIOS/DMI table decoder","desired":"install","status":"installed"},{"codes":"ii","name":"dmsetup","version":"2:1.02.145-4.1ubuntu3.18.04.3","architecture":"amd64","description":"Linux Kernel Device Mapper userspace library","desired":"install","status":"installed"},{"codes":"ii","name":"dns-root-data","version":"2018013001","architecture":"all","description":"DNS root data including root zone and DNSSEC key","desired":"install","status":"installed"},{"codes":"ii","name":"dnsmasq-base","version":"2.79-1ubuntu0.3","architecture":"amd64","description":"Small caching DNS proxy and DHCP/TFTP server","desired":"install","status":"installed"},{"codes":"ii","name":"dnsutils","version":"1:9.11.3+dfsg-1ubuntu1.14","architecture":"amd64","description":"Clients provided with BIND","desired":"install","status":"installed"},{"codes":"ii","name":"docker","version":"1.5-1build1","architecture":"amd64","description":"System tray for KDE3/GNOME2 docklet applications","desired":"install","status":"installed"},{"codes":"ii","name":"docker.io","version":"19.03.6-0ubuntu1~18.04.2","architecture":"amd64","description":"Linux container runtime","desired":"install","status":"installed"},{"codes":"ii","name":"dosfstools","version":"4.1-1","architecture":"amd64","description":"utilities for making and checking MS-DOS FAT filesystems","desired":"install","status":"installed"},{"codes":"ii","name":"dpkg","version":"1.19.0.5ubuntu2.3","architecture":"amd64","description":"Debian package management system","desired":"install","status":"installed"},{"codes":"ii","name":"dpkg-dev","version":"1.19.0.5ubuntu2.3","architecture":"all","description":"Debian package development tools","desired":"install","status":"installed"},{"codes":"ii","name":"e2fsprogs","version":"1.44.1-1ubuntu1.3","architecture":"amd64","description":"ext2/ext3/ext4 file system utilities","desired":"install","status":"installed"},{"codes":"ii","name":"eatmydata","version":"105-6","architecture":"all","description":"Library and utilities designed to disable fsync and friends","desired":"install","status":"installed"},{"codes":"ii","name":"ebtables","version":"2.0.10.4-3.5ubuntu2.18.04.3","architecture":"amd64","description":"Ethernet bridge frame table administration","desired":"install","status":"installed"},{"codes":"ii","name":"ed","version":"1.10-2.1","architecture":"amd64","description":"classic UNIX line editor","desired":"install","status":"installed"},{"codes":"ii","name":"eject","version":"2.1.5+deb1+cvs20081104-13.2","architecture":"amd64","description":"ejects CDs and operates CD-Changers under Linux","desired":"install","status":"installed"},{"codes":"ii","name":"ethtool","version":"1:4.15-0ubuntu1","architecture":"amd64","description":"display or change Ethernet device settings","desired":"install","status":"installed"},{"codes":"ii","name":"fakeroot","version":"1.22-2ubuntu1","architecture":"amd64","description":"tool for simulating superuser privileges","desired":"install","status":"installed"},{"codes":"ii","name":"fdisk","version":"2.31.1-0.4ubuntu3.7","architecture":"amd64","description":"collection of partitioning utilities","desired":"install","status":"installed"},{"codes":"ii","name":"file","version":"1:5.32-2ubuntu0.4","architecture":"amd64","description":"Recognize the type of data in a file using \"magic\" numbers","desired":"install","status":"installed"},{"codes":"ii","name":"findutils","version":"4.6.0+git+20170828-2","architecture":"amd64","description":"utilities for finding files--find, xargs","desired":"install","status":"installed"},{"codes":"ii","name":"fonts-ubuntu-console","version":"0.83-2","architecture":"all","description":"console version of the Ubuntu Mono font","desired":"install","status":"installed"},{"codes":"ii","name":"friendly-recovery","version":"0.2.38ubuntu1.1","architecture":"all","description":"Make recovery boot mode more user-friendly","desired":"install","status":"installed"},{"codes":"ii","name":"ftp","version":"0.17-34","architecture":"amd64","description":"classical file transfer client","desired":"install","status":"installed"},{"codes":"ii","name":"fuse","version":"2.9.7-1ubuntu1","architecture":"amd64","description":"Filesystem in Userspace","desired":"install","status":"installed"},{"codes":"ii","name":"g++","version":"4:7.4.0-1ubuntu2.3","architecture":"amd64","description":"GNU C++ compiler","desired":"install","status":"installed"},{"codes":"ii","name":"g++-7","version":"7.5.0-3ubuntu1~18.04","architecture":"amd64","description":"GNU C++ compiler","desired":"install","status":"installed"},{"codes":"ii","name":"gawk","version":"1:4.1.4+dfsg-1build1","architecture":"amd64","description":"GNU awk, a pattern scanning and processing language","desired":"install","status":"installed"},{"codes":"ii","name":"gcc","version":"4:7.4.0-1ubuntu2.3","architecture":"amd64","description":"GNU C compiler","desired":"install","status":"installed"},{"codes":"ii","name":"gcc-7","version":"7.5.0-3ubuntu1~18.04","architecture":"amd64","description":"GNU C compiler","desired":"install","status":"installed"},{"codes":"ii","name":"gcc-7-base:amd64","version":"7.5.0-3ubuntu1~18.04","architecture":"amd64","description":"GCC, the GNU Compiler Collection (base package)","desired":"install","status":"installed"},{"codes":"ii","name":"gcc-8-base:amd64","version":"8.4.0-1ubuntu1~18.04","architecture":"amd64","description":"GCC, the GNU Compiler Collection (base package)","desired":"install","status":"installed"},{"codes":"ii","name":"gdisk","version":"1.0.3-1","architecture":"amd64","description":"GPT fdisk text-mode partitioning tool","desired":"install","status":"installed"},{"codes":"ii","name":"geoip-database","version":"20180315-1","architecture":"all","description":"IP lookup command line tools that use the GeoIP library (country database)","desired":"install","status":"installed"},{"codes":"ii","name":"gettext-base","version":"0.19.8.1-6ubuntu0.3","architecture":"amd64","description":"GNU Internationalization utilities for the base system","desired":"install","status":"installed"},{"codes":"ii","name":"gir1.2-glib-2.0:amd64","version":"1.56.1-1","architecture":"amd64","description":"Introspection data for GLib, GObject, Gio and GModule","desired":"install","status":"installed"},{"codes":"ii","name":"git","version":"1:2.17.1-1ubuntu0.8","architecture":"amd64","description":"fast, scalable, distributed revision control system","desired":"install","status":"installed"},{"codes":"ii","name":"git-man","version":"1:2.17.1-1ubuntu0.8","architecture":"all","description":"fast, scalable, distributed revision control system (manual pages)","desired":"install","status":"installed"},{"codes":"ii","name":"gnupg","version":"2.2.4-1ubuntu1.3","architecture":"amd64","description":"GNU privacy guard - a free PGP replacement","desired":"install","status":"installed"},{"codes":"ii","name":"gnupg-l10n","version":"2.2.4-1ubuntu1.3","architecture":"all","description":"GNU privacy guard - localization files","desired":"install","status":"installed"},{"codes":"ii","name":"gnupg-utils","version":"2.2.4-1ubuntu1.3","architecture":"amd64","description":"GNU privacy guard - utility programs","desired":"install","status":"installed"},{"codes":"ii","name":"gpg","version":"2.2.4-1ubuntu1.3","architecture":"amd64","description":"GNU Privacy Guard -- minimalist public key operations","desired":"install","status":"installed"},{"codes":"ii","name":"gpg-agent","version":"2.2.4-1ubuntu1.3","architecture":"amd64","description":"GNU privacy guard - cryptographic agent","desired":"install","status":"installed"},{"codes":"ii","name":"gpg-wks-client","version":"2.2.4-1ubuntu1.3","architecture":"amd64","description":"GNU privacy guard - Web Key Service client","desired":"install","status":"installed"},{"codes":"ii","name":"gpg-wks-server","version":"2.2.4-1ubuntu1.3","architecture":"amd64","description":"GNU privacy guard - Web Key Service server","desired":"install","status":"installed"},{"codes":"ii","name":"gpgconf","version":"2.2.4-1ubuntu1.3","architecture":"amd64","description":"GNU privacy guard - core configuration utilities","desired":"install","status":"installed"},{"codes":"ii","name":"gpgsm","version":"2.2.4-1ubuntu1.3","architecture":"amd64","description":"GNU privacy guard - S/MIME version","desired":"install","status":"installed"},{"codes":"ii","name":"gpgv","version":"2.2.4-1ubuntu1.3","architecture":"amd64","description":"GNU privacy guard - signature verification tool","desired":"install","status":"installed"},{"codes":"ii","name":"grep","version":"3.1-2build1","architecture":"amd64","description":"GNU grep, egrep and fgrep","desired":"install","status":"installed"},{"codes":"ii","name":"groff-base","version":"1.22.3-10","architecture":"amd64","description":"GNU troff text-formatting system (base system components)","desired":"install","status":"installed"},{"codes":"ii","name":"grub-common","version":"2.02-2ubuntu8.17","architecture":"amd64","description":"GRand Unified Bootloader (common files)","desired":"install","status":"installed"},{"codes":"ii","name":"grub-gfxpayload-lists","version":"0.7","architecture":"amd64","description":"GRUB gfxpayload blacklist","desired":"install","status":"installed"},{"codes":"ii","name":"grub-legacy-ec2","version":"1:1","architecture":"all","description":"Handles update-grub for ec2 instances","desired":"install","status":"installed"},{"codes":"ii","name":"grub-pc","version":"2.02-2ubuntu8.17","architecture":"amd64","description":"GRand Unified Bootloader, version 2 (PC/BIOS version)","desired":"install","status":"installed"},{"codes":"ii","name":"grub-pc-bin","version":"2.02-2ubuntu8.17","architecture":"amd64","description":"GRand Unified Bootloader, version 2 (PC/BIOS binaries)","desired":"install","status":"installed"},{"codes":"ii","name":"grub2-common","version":"2.02-2ubuntu8.17","architecture":"amd64","description":"GRand Unified Bootloader (common files for version 2)","desired":"install","status":"installed"},{"codes":"ii","name":"gzip","version":"1.6-5ubuntu1","architecture":"amd64","description":"GNU compression utilities","desired":"install","status":"installed"},{"codes":"ii","name":"hdparm","version":"9.54+ds-1","architecture":"amd64","description":"tune hard disk parameters for high performance","desired":"install","status":"installed"},{"codes":"ii","name":"hostname","version":"3.20","architecture":"amd64","description":"utility to set/show the host name or domain name","desired":"install","status":"installed"},{"codes":"ii","name":"htop","version":"2.1.0-3","architecture":"amd64","description":"interactive processes viewer","desired":"install","status":"installed"},{"codes":"ii","name":"iftop","version":"1.0~pre4-4","architecture":"amd64","description":"displays bandwidth usage information on an network interface","desired":"install","status":"installed"},{"codes":"ii","name":"info","version":"6.5.0.dfsg.1-2","architecture":"amd64","description":"Standalone GNU Info documentation browser","desired":"install","status":"installed"},{"codes":"ii","name":"init","version":"1.51","architecture":"amd64","description":"metapackage ensuring an init system is installed","desired":"install","status":"installed"},{"codes":"ii","name":"init-system-helpers","version":"1.51","architecture":"all","description":"helper tools for all init systems","desired":"install","status":"installed"},{"codes":"ii","name":"initramfs-tools","version":"0.130ubuntu3.9","architecture":"all","description":"generic modular initramfs generator (automation)","desired":"install","status":"installed"},{"codes":"ii","name":"initramfs-tools-bin","version":"0.130ubuntu3.9","architecture":"amd64","description":"binaries used by initramfs-tools","desired":"install","status":"installed"},{"codes":"ii","name":"initramfs-tools-core","version":"0.130ubuntu3.9","architecture":"all","description":"generic modular initramfs generator (core tools)","desired":"install","status":"installed"},{"codes":"ii","name":"install-info","version":"6.5.0.dfsg.1-2","architecture":"amd64","description":"Manage installed documentation in info format","desired":"install","status":"installed"},{"codes":"ii","name":"intel-microcode","version":"3.20201110.0ubuntu0.18.04.2","architecture":"amd64","description":"Processor microcode firmware for Intel CPUs","desired":"install","status":"installed"},{"codes":"ii","name":"iproute2","version":"4.15.0-2ubuntu1.2","architecture":"amd64","description":"networking and traffic control tools","desired":"install","status":"installed"},{"codes":"ii","name":"iptables","version":"1.6.1-2ubuntu2","architecture":"amd64","description":"administration tools for packet filtering and NAT","desired":"install","status":"installed"},{"codes":"ii","name":"iputils-ping","version":"3:20161105-1ubuntu3","architecture":"amd64","description":"Tools to test the reachability of network hosts","desired":"install","status":"installed"},{"codes":"ii","name":"iputils-tracepath","version":"3:20161105-1ubuntu3","architecture":"amd64","description":"Tools to trace the network path to a remote host","desired":"install","status":"installed"},{"codes":"ii","name":"irqbalance","version":"1.3.0-0.1ubuntu0.18.04.1","architecture":"amd64","description":"Daemon to balance interrupts for SMP systems","desired":"install","status":"installed"},{"codes":"ii","name":"isc-dhcp-client","version":"4.3.5-3ubuntu7.1","architecture":"amd64","description":"DHCP client for automatically obtaining an IP address","desired":"install","status":"installed"},{"codes":"ii","name":"isc-dhcp-common","version":"4.3.5-3ubuntu7.1","architecture":"amd64","description":"common manpages relevant to all of the isc-dhcp packages","desired":"install","status":"installed"},{"codes":"ii","name":"iso-codes","version":"3.79-1","architecture":"all","description":"ISO language, territory, currency, script codes and their translations","desired":"install","status":"installed"},{"codes":"ii","name":"iucode-tool","version":"2.3.1-1","architecture":"amd64","description":"Intel processor microcode tool","desired":"install","status":"installed"},{"codes":"ii","name":"iw","version":"4.14-0.1","architecture":"amd64","description":"tool for configuring Linux wireless devices","desired":"install","status":"installed"},{"codes":"ii","name":"jq","version":"1.5+dfsg-2","architecture":"amd64","description":"lightweight and flexible command-line JSON processor","desired":"install","status":"installed"},{"codes":"ii","name":"kbd","version":"2.0.4-2ubuntu1","architecture":"amd64","description":"Linux console font and keytable utilities","desired":"install","status":"installed"},{"codes":"ii","name":"keyboard-configuration","version":"1.178ubuntu2.9","architecture":"all","description":"system-wide keyboard preferences","desired":"install","status":"installed"},{"codes":"ii","name":"klibc-utils","version":"2.0.4-9ubuntu2","architecture":"amd64","description":"small utilities built with klibc for early boot","desired":"install","status":"installed"},{"codes":"ii","name":"kmod","version":"24-1ubuntu3.5","architecture":"amd64","description":"tools for managing Linux kernel modules","desired":"install","status":"installed"},{"codes":"ii","name":"krb5-locales","version":"1.16-2ubuntu0.2","architecture":"all","description":"internationalization support for MIT Kerberos","desired":"install","status":"installed"},{"codes":"ii","name":"landscape-common","version":"18.01-0ubuntu3.5","architecture":"amd64","description":"Landscape administration system client - Common files","desired":"install","status":"installed"},{"codes":"ii","name":"language-pack-fr","version":"1:18.04+20200702","architecture":"all","description":"translation updates for language French","desired":"install","status":"installed"},{"codes":"ii","name":"language-pack-fr-base","version":"1:18.04+20180712","architecture":"all","description":"translations for language French","desired":"install","status":"installed"},{"codes":"ii","name":"language-selector-common","version":"0.188.3","architecture":"all","description":"Language selector for Ubuntu","desired":"install","status":"installed"},{"codes":"ii","name":"less","version":"487-0.1","architecture":"amd64","description":"pager program similar to more","desired":"install","status":"installed"},{"codes":"ii","name":"libaccountsservice0:amd64","version":"0.6.45-1ubuntu1.3","architecture":"amd64","description":"query and manipulate user account information - shared libraries","desired":"install","status":"installed"},{"codes":"ii","name":"libacl1:amd64","version":"2.2.52-3build1","architecture":"amd64","description":"Access control list shared library","desired":"install","status":"installed"},{"codes":"ii","name":"libalgorithm-diff-perl","version":"1.19.03-1","architecture":"all","description":"module to find differences between files","desired":"install","status":"installed"},{"codes":"ii","name":"libalgorithm-diff-xs-perl","version":"0.04-5","architecture":"amd64","description":"module to find differences between files (XS accelerated)","desired":"install","status":"installed"},{"codes":"ii","name":"libalgorithm-merge-perl","version":"0.08-3","architecture":"all","description":"Perl module for three-way merge of textual data","desired":"install","status":"installed"},{"codes":"ii","name":"libapparmor1:amd64","version":"2.12-4ubuntu5.1","architecture":"amd64","description":"changehat AppArmor library","desired":"install","status":"installed"},{"codes":"ii","name":"libapt-inst2.0:amd64","version":"1.6.12ubuntu0.2","architecture":"amd64","description":"deb package format runtime library","desired":"install","status":"installed"},{"codes":"ii","name":"libapt-pkg5.0:amd64","version":"1.6.12ubuntu0.2","architecture":"amd64","description":"package management runtime library","desired":"install","status":"installed"},{"codes":"ii","name":"libargon2-0:amd64","version":"0~20161029-1.1","architecture":"amd64","description":"memory-hard hashing function - runtime library","desired":"install","status":"installed"},{"codes":"ii","name":"libasan4:amd64","version":"7.5.0-3ubuntu1~18.04","architecture":"amd64","description":"AddressSanitizer -- a fast memory error detector","desired":"install","status":"installed"},{"codes":"ii","name":"libasn1-8-heimdal:amd64","version":"7.5.0+dfsg-1","architecture":"amd64","description":"Heimdal Kerberos - ASN.1 library","desired":"install","status":"installed"},{"codes":"ii","name":"libassuan0:amd64","version":"2.5.1-2","architecture":"amd64","description":"IPC library for the GnuPG components","desired":"install","status":"installed"},{"codes":"ii","name":"libatm1:amd64","version":"1:2.5.1-2build1","architecture":"amd64","description":"shared library for ATM (Asynchronous Transfer Mode)","desired":"install","status":"installed"},{"codes":"ii","name":"libatomic1:amd64","version":"8.4.0-1ubuntu1~18.04","architecture":"amd64","description":"support library providing __atomic built-in functions","desired":"install","status":"installed"},{"codes":"ii","name":"libattr1:amd64","version":"1:2.4.47-2build1","architecture":"amd64","description":"Extended attribute shared library","desired":"install","status":"installed"},{"codes":"ii","name":"libaudit-common","version":"1:2.8.2-1ubuntu1","architecture":"all","description":"Dynamic library for security auditing - common files","desired":"install","status":"installed"},{"codes":"ii","name":"libaudit1:amd64","version":"1:2.8.2-1ubuntu1","architecture":"amd64","description":"Dynamic library for security auditing","desired":"install","status":"installed"},{"codes":"ii","name":"libbind9-160:amd64","version":"1:9.11.3+dfsg-1ubuntu1.14","architecture":"amd64","description":"BIND9 Shared Library used by BIND","desired":"install","status":"installed"},{"codes":"ii","name":"libbinutils:amd64","version":"2.30-21ubuntu1~18.04.5","architecture":"amd64","description":"GNU binary utilities (private shared library)","desired":"install","status":"installed"},{"codes":"ii","name":"libblas3:amd64","version":"3.7.1-4ubuntu1","architecture":"amd64","description":"Basic Linear Algebra Reference implementations, shared library","desired":"install","status":"installed"},{"codes":"ii","name":"libblkid1:amd64","version":"2.31.1-0.4ubuntu3.7","architecture":"amd64","description":"block device ID library","desired":"install","status":"installed"},{"codes":"ii","name":"libbsd0:amd64","version":"0.8.7-1ubuntu0.1","architecture":"amd64","description":"utility functions from BSD systems - shared library","desired":"install","status":"installed"},{"codes":"ii","name":"libbz2-1.0:amd64","version":"1.0.6-8.1ubuntu0.2","architecture":"amd64","description":"high-quality block-sorting file compressor library - runtime","desired":"install","status":"installed"},{"codes":"ii","name":"libc-bin","version":"2.27-3ubuntu1.2","architecture":"amd64","description":"GNU C Library: Binaries","desired":"install","status":"installed"},{"codes":"ii","name":"libc-dev-bin","version":"2.27-3ubuntu1.2","architecture":"amd64","description":"GNU C Library: Development binaries","desired":"install","status":"installed"},{"codes":"ii","name":"libc6:amd64","version":"2.27-3ubuntu1.2","architecture":"amd64","description":"GNU C Library: Shared libraries","desired":"install","status":"installed"},{"codes":"ii","name":"libc6-dev:amd64","version":"2.27-3ubuntu1.2","architecture":"amd64","description":"GNU C Library: Development Libraries and Header Files","desired":"install","status":"installed"},{"codes":"ii","name":"libcap-ng0:amd64","version":"0.7.7-3.1","architecture":"amd64","description":"An alternate POSIX capabilities library","desired":"install","status":"installed"},{"codes":"ii","name":"libcap2:amd64","version":"1:2.25-1.2","architecture":"amd64","description":"POSIX 1003.1e capabilities (library)","desired":"install","status":"installed"},{"codes":"ii","name":"libcap2-bin","version":"1:2.25-1.2","architecture":"amd64","description":"POSIX 1003.1e capabilities (utilities)","desired":"install","status":"installed"},{"codes":"ii","name":"libcc1-0:amd64","version":"8.4.0-1ubuntu1~18.04","architecture":"amd64","description":"GCC cc1 plugin for GDB","desired":"install","status":"installed"},{"codes":"ii","name":"libcilkrts5:amd64","version":"7.5.0-3ubuntu1~18.04","architecture":"amd64","description":"Intel Cilk Plus language extensions (runtime)","desired":"install","status":"installed"},{"codes":"ii","name":"libcom-err2:amd64","version":"1.44.1-1ubuntu1.3","architecture":"amd64","description":"common error description library","desired":"install","status":"installed"},{"codes":"ii","name":"libcryptsetup12:amd64","version":"2:2.0.2-1ubuntu1.1","architecture":"amd64","description":"disk encryption support - shared library","desired":"install","status":"installed"},{"codes":"ii","name":"libcurl3-gnutls:amd64","version":"7.58.0-2ubuntu3.13","architecture":"amd64","description":"easy-to-use client-side URL transfer library (GnuTLS flavour)","desired":"install","status":"installed"},{"codes":"ii","name":"libcurl4:amd64","version":"7.58.0-2ubuntu3.13","architecture":"amd64","description":"easy-to-use client-side URL transfer library (OpenSSL flavour)","desired":"install","status":"installed"},{"codes":"ii","name":"libdb5.3:amd64","version":"5.3.28-13.1ubuntu1.1","architecture":"amd64","description":"Berkeley v5.3 Database Libraries [runtime]","desired":"install","status":"installed"},{"codes":"ii","name":"libdbus-1-3:amd64","version":"1.12.2-1ubuntu1.2","architecture":"amd64","description":"simple interprocess messaging system (library)","desired":"install","status":"installed"},{"codes":"ii","name":"libdbus-glib-1-2:amd64","version":"0.110-2","architecture":"amd64","description":"deprecated library for D-Bus IPC","desired":"install","status":"installed"},{"codes":"ii","name":"libdebconfclient0:amd64","version":"0.213ubuntu1","architecture":"amd64","description":"Debian Configuration Management System (C-implementation library)","desired":"install","status":"installed"},{"codes":"ii","name":"libdevmapper-event1.02.1:amd64","version":"2:1.02.145-4.1ubuntu3.18.04.3","architecture":"amd64","description":"Linux Kernel Device Mapper event support library","desired":"install","status":"installed"},{"codes":"ii","name":"libdevmapper1.02.1:amd64","version":"2:1.02.145-4.1ubuntu3.18.04.3","architecture":"amd64","description":"Linux Kernel Device Mapper userspace library","desired":"install","status":"installed"},{"codes":"ii","name":"libdns-export1100","version":"1:9.11.3+dfsg-1ubuntu1.14","architecture":"amd64","description":"Exported DNS Shared Library","desired":"install","status":"installed"},{"codes":"ii","name":"libdns1100:amd64","version":"1:9.11.3+dfsg-1ubuntu1.14","architecture":"amd64","description":"DNS Shared Library used by BIND","desired":"install","status":"installed"},{"codes":"ii","name":"libdpkg-perl","version":"1.19.0.5ubuntu2.3","architecture":"all","description":"Dpkg perl modules","desired":"install","status":"installed"},{"codes":"ii","name":"libdrm-common","version":"2.4.101-2~18.04.1","architecture":"all","description":"Userspace interface to kernel DRM services -- common files","desired":"install","status":"installed"},{"codes":"ii","name":"libdrm2:amd64","version":"2.4.101-2~18.04.1","architecture":"amd64","description":"Userspace interface to kernel DRM services -- runtime","desired":"install","status":"installed"},{"codes":"ii","name":"libdumbnet1:amd64","version":"1.12-7build1","architecture":"amd64","description":"dumb, portable networking library -- shared library","desired":"install","status":"installed"},{"codes":"ii","name":"libeatmydata1:amd64","version":"105-6","architecture":"amd64","description":"Library and utilities to disable fsync and friends - shared library","desired":"install","status":"installed"},{"codes":"ii","name":"libedit2:amd64","version":"3.1-20170329-1","architecture":"amd64","description":"BSD editline and history libraries","desired":"install","status":"installed"},{"codes":"ii","name":"libelf1:amd64","version":"0.170-0.4ubuntu0.1","architecture":"amd64","description":"library to read and write ELF files","desired":"install","status":"installed"},{"codes":"ii","name":"liberror-perl","version":"0.17025-1","architecture":"all","description":"Perl module for error/exception handling in an OO-ish way","desired":"install","status":"installed"},{"codes":"ii","name":"libestr0:amd64","version":"0.1.10-2.1","architecture":"amd64","description":"Helper functions for handling strings (lib)","desired":"install","status":"installed"},{"codes":"ii","name":"libevent-2.1-6:amd64","version":"2.1.8-stable-4build1","architecture":"amd64","description":"Asynchronous event notification library","desired":"install","status":"installed"},{"codes":"ii","name":"libexpat1:amd64","version":"2.2.5-3ubuntu0.2","architecture":"amd64","description":"XML parsing C library - runtime library","desired":"install","status":"installed"},{"codes":"ii","name":"libexpat1-dev:amd64","version":"2.2.5-3ubuntu0.2","architecture":"amd64","description":"XML parsing C library - development kit","desired":"install","status":"installed"},{"codes":"ii","name":"libext2fs2:amd64","version":"1.44.1-1ubuntu1.3","architecture":"amd64","description":"ext2/ext3/ext4 file system libraries","desired":"install","status":"installed"},{"codes":"ii","name":"libfakeroot:amd64","version":"1.22-2ubuntu1","architecture":"amd64","description":"tool for simulating superuser privileges - shared libraries","desired":"install","status":"installed"},{"codes":"ii","name":"libfastjson4:amd64","version":"0.99.8-2","architecture":"amd64","description":"fast json library for C","desired":"install","status":"installed"},{"codes":"ii","name":"libfdisk1:amd64","version":"2.31.1-0.4ubuntu3.7","architecture":"amd64","description":"fdisk partitioning library","desired":"install","status":"installed"},{"codes":"ii","name":"libffi6:amd64","version":"3.2.1-8","architecture":"amd64","description":"Foreign Function Interface library runtime","desired":"install","status":"installed"},{"codes":"ii","name":"libfile-fcntllock-perl","version":"0.22-3build2","architecture":"amd64","description":"Perl module for file locking with fcntl(2)","desired":"install","status":"installed"},{"codes":"ii","name":"libfreetype6:amd64","version":"2.8.1-2ubuntu2.1","architecture":"amd64","description":"FreeType 2 font engine, shared library files","desired":"install","status":"installed"},{"codes":"ii","name":"libfribidi0:amd64","version":"0.19.7-2","architecture":"amd64","description":"Free Implementation of the Unicode BiDi algorithm","desired":"install","status":"installed"},{"codes":"ii","name":"libfuse2:amd64","version":"2.9.7-1ubuntu1","architecture":"amd64","description":"Filesystem in Userspace (library)","desired":"install","status":"installed"},{"codes":"ii","name":"libgcc-7-dev:amd64","version":"7.5.0-3ubuntu1~18.04","architecture":"amd64","description":"GCC support library (development files)","desired":"install","status":"installed"},{"codes":"ii","name":"libgcc1:amd64","version":"1:8.4.0-1ubuntu1~18.04","architecture":"amd64","description":"GCC support library","desired":"install","status":"installed"},{"codes":"ii","name":"libgcrypt20:amd64","version":"1.8.1-4ubuntu1.2","architecture":"amd64","description":"LGPL Crypto library - runtime library","desired":"install","status":"installed"},{"codes":"ii","name":"libgdbm-compat4:amd64","version":"1.14.1-6","architecture":"amd64","description":"GNU dbm database routines (legacy support runtime version)","desired":"install","status":"installed"},{"codes":"ii","name":"libgdbm5:amd64","version":"1.14.1-6","architecture":"amd64","description":"GNU dbm database routines (runtime version)","desired":"install","status":"installed"},{"codes":"ii","name":"libgeoip1:amd64","version":"1.6.12-1","architecture":"amd64","description":"non-DNS IP-to-country resolver library","desired":"install","status":"installed"},{"codes":"ii","name":"libgirepository-1.0-1:amd64","version":"1.56.1-1","architecture":"amd64","description":"Library for handling GObject introspection data (runtime library)","desired":"install","status":"installed"},{"codes":"ii","name":"libglib2.0-0:amd64","version":"2.56.4-0ubuntu0.18.04.8","architecture":"amd64","description":"GLib library of C routines","desired":"install","status":"installed"},{"codes":"ii","name":"libglib2.0-data","version":"2.56.4-0ubuntu0.18.04.8","architecture":"all","description":"Common files for GLib library","desired":"install","status":"installed"},{"codes":"ii","name":"libgmp10:amd64","version":"2:6.1.2+dfsg-2","architecture":"amd64","description":"Multiprecision arithmetic library","desired":"install","status":"installed"},{"codes":"ii","name":"libgnutls30:amd64","version":"3.5.18-1ubuntu1.4","architecture":"amd64","description":"GNU TLS library - main runtime library","desired":"install","status":"installed"},{"codes":"ii","name":"libgomp1:amd64","version":"8.4.0-1ubuntu1~18.04","architecture":"amd64","description":"GCC OpenMP (GOMP) support library","desired":"install","status":"installed"},{"codes":"ii","name":"libgpg-error0:amd64","version":"1.27-6","architecture":"amd64","description":"library for common error values and messages in GnuPG components","desired":"install","status":"installed"},{"codes":"ii","name":"libgpm2:amd64","version":"1.20.7-5","architecture":"amd64","description":"General Purpose Mouse - shared library","desired":"install","status":"installed"},{"codes":"ii","name":"libgssapi-krb5-2:amd64","version":"1.16-2ubuntu0.2","architecture":"amd64","description":"MIT Kerberos runtime libraries - krb5 GSS-API Mechanism","desired":"install","status":"installed"},{"codes":"ii","name":"libgssapi3-heimdal:amd64","version":"7.5.0+dfsg-1","architecture":"amd64","description":"Heimdal Kerberos - GSSAPI support library","desired":"install","status":"installed"},{"codes":"ii","name":"libgudev-1.0-0:amd64","version":"1:232-2","architecture":"amd64","description":"GObject-based wrapper library for libudev","desired":"install","status":"installed"},{"codes":"ii","name":"libhcrypto4-heimdal:amd64","version":"7.5.0+dfsg-1","architecture":"amd64","description":"Heimdal Kerberos - crypto library","desired":"install","status":"installed"},{"codes":"ii","name":"libheimbase1-heimdal:amd64","version":"7.5.0+dfsg-1","architecture":"amd64","description":"Heimdal Kerberos - Base library","desired":"install","status":"installed"},{"codes":"ii","name":"libheimntlm0-heimdal:amd64","version":"7.5.0+dfsg-1","architecture":"amd64","description":"Heimdal Kerberos - NTLM support library","desired":"install","status":"installed"},{"codes":"ii","name":"libhogweed4:amd64","version":"3.4-1","architecture":"amd64","description":"low level cryptographic library (public-key cryptos)","desired":"install","status":"installed"},{"codes":"ii","name":"libhx509-5-heimdal:amd64","version":"7.5.0+dfsg-1","architecture":"amd64","description":"Heimdal Kerberos - X509 support library","desired":"install","status":"installed"},{"codes":"ii","name":"libicu60:amd64","version":"60.2-3ubuntu3.1","architecture":"amd64","description":"International Components for Unicode","desired":"install","status":"installed"},{"codes":"ii","name":"libidn11:amd64","version":"1.33-2.1ubuntu1.2","architecture":"amd64","description":"GNU Libidn library, implementation of IETF IDN specifications","desired":"install","status":"installed"},{"codes":"ii","name":"libidn2-0:amd64","version":"2.0.4-1.1ubuntu0.2","architecture":"amd64","description":"Internationalized domain names (IDNA2008/TR46) library","desired":"install","status":"installed"},{"codes":"ii","name":"libimobiledevice6:amd64","version":"1.2.1~git20171128.5a854327+dfsg-0.1","architecture":"amd64","description":"Library for communicating with the iPhone and iPod Touch","desired":"install","status":"installed"},{"codes":"ii","name":"libip4tc0:amd64","version":"1.6.1-2ubuntu2","architecture":"amd64","description":"netfilter libip4tc library","desired":"install","status":"installed"},{"codes":"ii","name":"libip6tc0:amd64","version":"1.6.1-2ubuntu2","architecture":"amd64","description":"netfilter libip6tc library","desired":"install","status":"installed"},{"codes":"ii","name":"libiptc0:amd64","version":"1.6.1-2ubuntu2","architecture":"amd64","description":"netfilter libiptc library","desired":"install","status":"installed"},{"codes":"ii","name":"libirs160:amd64","version":"1:9.11.3+dfsg-1ubuntu1.14","architecture":"amd64","description":"DNS Shared Library used by BIND","desired":"install","status":"installed"},{"codes":"ii","name":"libisc-export169:amd64","version":"1:9.11.3+dfsg-1ubuntu1.14","architecture":"amd64","description":"Exported ISC Shared Library","desired":"install","status":"installed"},{"codes":"ii","name":"libisc169:amd64","version":"1:9.11.3+dfsg-1ubuntu1.14","architecture":"amd64","description":"ISC Shared Library used by BIND","desired":"install","status":"installed"},{"codes":"ii","name":"libisccc160:amd64","version":"1:9.11.3+dfsg-1ubuntu1.14","architecture":"amd64","description":"Command Channel Library used by BIND","desired":"install","status":"installed"},{"codes":"ii","name":"libisccfg160:amd64","version":"1:9.11.3+dfsg-1ubuntu1.14","architecture":"amd64","description":"Config File Handling Library used by BIND","desired":"install","status":"installed"},{"codes":"ii","name":"libisl19:amd64","version":"0.19-1","architecture":"amd64","description":"manipulating sets and relations of integer points bounded by linear constraints","desired":"install","status":"installed"},{"codes":"ii","name":"libisns0:amd64","version":"0.97-2build1","architecture":"amd64","description":"Internet Storage Name Service - shared libraries","desired":"install","status":"installed"},{"codes":"ii","name":"libitm1:amd64","version":"8.4.0-1ubuntu1~18.04","architecture":"amd64","description":"GNU Transactional Memory Library","desired":"install","status":"installed"},{"codes":"ii","name":"libjq1:amd64","version":"1.5+dfsg-2","architecture":"amd64","description":"lightweight and flexible command-line JSON processor - shared library","desired":"install","status":"installed"},{"codes":"ii","name":"libjson-c3:amd64","version":"0.12.1-1.3ubuntu0.3","architecture":"amd64","description":"JSON manipulation library - shared library","desired":"install","status":"installed"},{"codes":"ii","name":"libk5crypto3:amd64","version":"1.16-2ubuntu0.2","architecture":"amd64","description":"MIT Kerberos runtime libraries - Crypto Library","desired":"install","status":"installed"},{"codes":"ii","name":"libkeyutils1:amd64","version":"1.5.9-9.2ubuntu2","architecture":"amd64","description":"Linux Key Management Utilities (library)","desired":"install","status":"installed"},{"codes":"ii","name":"libklibc","version":"2.0.4-9ubuntu2","architecture":"amd64","description":"minimal libc subset for use with initramfs","desired":"install","status":"installed"},{"codes":"ii","name":"libkmod2:amd64","version":"24-1ubuntu3.5","architecture":"amd64","description":"libkmod shared library","desired":"install","status":"installed"},{"codes":"ii","name":"libkrb5-26-heimdal:amd64","version":"7.5.0+dfsg-1","architecture":"amd64","description":"Heimdal Kerberos - libraries","desired":"install","status":"installed"},{"codes":"ii","name":"libkrb5-3:amd64","version":"1.16-2ubuntu0.2","architecture":"amd64","description":"MIT Kerberos runtime libraries","desired":"install","status":"installed"},{"codes":"ii","name":"libkrb5support0:amd64","version":"1.16-2ubuntu0.2","architecture":"amd64","description":"MIT Kerberos runtime libraries - Support library","desired":"install","status":"installed"},{"codes":"ii","name":"libksba8:amd64","version":"1.3.5-2","architecture":"amd64","description":"X.509 and CMS support library","desired":"install","status":"installed"},{"codes":"ii","name":"libldap-2.4-2:amd64","version":"2.4.45+dfsg-1ubuntu1.10","architecture":"amd64","description":"OpenLDAP libraries","desired":"install","status":"installed"},{"codes":"ii","name":"libldap-common","version":"2.4.45+dfsg-1ubuntu1.10","architecture":"all","description":"OpenLDAP common files for libraries","desired":"install","status":"installed"},{"codes":"ii","name":"liblinear3:amd64","version":"2.1.0+dfsg-2","architecture":"amd64","description":"Library for Large Linear Classification","desired":"install","status":"installed"},{"codes":"ii","name":"liblocale-gettext-perl","version":"1.07-3build2","architecture":"amd64","description":"module using libc functions for internationalization in Perl","desired":"install","status":"installed"},{"codes":"ii","name":"liblsan0:amd64","version":"8.4.0-1ubuntu1~18.04","architecture":"amd64","description":"LeakSanitizer -- a memory leak detector (runtime)","desired":"install","status":"installed"},{"codes":"ii","name":"liblua5.3-0:amd64","version":"5.3.3-1ubuntu0.18.04.1","architecture":"amd64","description":"Shared library for the Lua interpreter version 5.3","desired":"install","status":"installed"},{"codes":"ii","name":"liblvm2app2.2:amd64","version":"2.02.176-4.1ubuntu3.18.04.3","architecture":"amd64","description":"LVM2 application library","desired":"install","status":"installed"},{"codes":"ii","name":"liblvm2cmd2.02:amd64","version":"2.02.176-4.1ubuntu3.18.04.3","architecture":"amd64","description":"LVM2 command library","desired":"install","status":"installed"},{"codes":"ii","name":"liblwres160:amd64","version":"1:9.11.3+dfsg-1ubuntu1.14","architecture":"amd64","description":"Lightweight Resolver Library used by BIND","desired":"install","status":"installed"},{"codes":"ii","name":"liblxc-common","version":"3.0.3-0ubuntu1~18.04.1","architecture":"amd64","description":"Linux Containers userspace tools (common tools)","desired":"install","status":"installed"},{"codes":"ii","name":"liblxc1","version":"3.0.3-0ubuntu1~18.04.1","architecture":"amd64","description":"Linux Containers userspace tools (library)","desired":"install","status":"installed"},{"codes":"ii","name":"liblz4-1:amd64","version":"0.0~r131-2ubuntu3","architecture":"amd64","description":"Fast LZ compression algorithm library - runtime","desired":"install","status":"installed"},{"codes":"ii","name":"liblzma5:amd64","version":"5.2.2-1.3","architecture":"amd64","description":"XZ-format compression library","desired":"install","status":"installed"},{"codes":"ii","name":"liblzo2-2:amd64","version":"2.08-1.2","architecture":"amd64","description":"data compression library","desired":"install","status":"installed"},{"codes":"ii","name":"libmagic-mgc","version":"1:5.32-2ubuntu0.4","architecture":"amd64","description":"File type determination library using \"magic\" numbers (compiled magic file)","desired":"install","status":"installed"},{"codes":"ii","name":"libmagic1:amd64","version":"1:5.32-2ubuntu0.4","architecture":"amd64","description":"Recognize the type of data in a file using \"magic\" numbers - library","desired":"install","status":"installed"},{"codes":"ii","name":"libmnl0:amd64","version":"1.0.4-2","architecture":"amd64","description":"minimalistic Netlink communication library","desired":"install","status":"installed"},{"codes":"ii","name":"libmount1:amd64","version":"2.31.1-0.4ubuntu3.7","architecture":"amd64","description":"device mounting library","desired":"install","status":"installed"},{"codes":"ii","name":"libmpc3:amd64","version":"1.1.0-1","architecture":"amd64","description":"multiple precision complex floating-point library","desired":"install","status":"installed"},{"codes":"ii","name":"libmpdec2:amd64","version":"2.4.2-1ubuntu1","architecture":"amd64","description":"library for decimal floating point arithmetic (runtime library)","desired":"install","status":"installed"},{"codes":"ii","name":"libmpfr6:amd64","version":"4.0.1-1","architecture":"amd64","description":"multiple precision floating-point computation","desired":"install","status":"installed"},{"codes":"ii","name":"libmpx2:amd64","version":"8.4.0-1ubuntu1~18.04","architecture":"amd64","description":"Intel memory protection extensions (runtime)","desired":"install","status":"installed"},{"codes":"ii","name":"libmspack0:amd64","version":"0.6-3ubuntu0.3","architecture":"amd64","description":"library for Microsoft compression formats (shared library)","desired":"install","status":"installed"},{"codes":"ii","name":"libncurses5:amd64","version":"6.1-1ubuntu1.18.04","architecture":"amd64","description":"shared libraries for terminal handling","desired":"install","status":"installed"},{"codes":"ii","name":"libncursesw5:amd64","version":"6.1-1ubuntu1.18.04","architecture":"amd64","description":"shared libraries for terminal handling (wide character support)","desired":"install","status":"installed"},{"codes":"ii","name":"libnetfilter-conntrack3:amd64","version":"1.0.6-2","architecture":"amd64","description":"Netfilter netlink-conntrack library","desired":"install","status":"installed"},{"codes":"ii","name":"libnettle6:amd64","version":"3.4-1","architecture":"amd64","description":"low level cryptographic library (symmetric and one-way cryptos)","desired":"install","status":"installed"},{"codes":"ii","name":"libnewt0.52:amd64","version":"0.52.20-1ubuntu1","architecture":"amd64","description":"Not Erik's Windowing Toolkit - text mode windowing with slang","desired":"install","status":"installed"},{"codes":"ii","name":"libnfnetlink0:amd64","version":"1.0.1-3","architecture":"amd64","description":"Netfilter netlink library","desired":"install","status":"installed"},{"codes":"ii","name":"libnghttp2-14:amd64","version":"1.30.0-1ubuntu1","architecture":"amd64","description":"library implementing HTTP/2 protocol (shared library)","desired":"install","status":"installed"},{"codes":"ii","name":"libnih1:amd64","version":"1.0.3-6ubuntu2","architecture":"amd64","description":"NIH Utility Library","desired":"install","status":"installed"},{"codes":"ii","name":"libnl-3-200:amd64","version":"3.2.29-0ubuntu3","architecture":"amd64","description":"library for dealing with netlink sockets","desired":"install","status":"installed"},{"codes":"ii","name":"libnl-genl-3-200:amd64","version":"3.2.29-0ubuntu3","architecture":"amd64","description":"library for dealing with netlink sockets - generic netlink","desired":"install","status":"installed"},{"codes":"ii","name":"libnpth0:amd64","version":"1.5-3","architecture":"amd64","description":"replacement for GNU Pth using system threads","desired":"install","status":"installed"},{"codes":"ii","name":"libnss-systemd:amd64","version":"237-3ubuntu10.42","architecture":"amd64","description":"nss module providing dynamic user and group name resolution","desired":"install","status":"installed"},{"codes":"ii","name":"libntfs-3g88","version":"1:2017.3.23-2ubuntu0.18.04.2","architecture":"amd64","description":"read/write NTFS driver for FUSE (runtime library)","desired":"install","status":"installed"},{"codes":"ii","name":"libnuma1:amd64","version":"2.0.11-2.1ubuntu0.1","architecture":"amd64","description":"Libraries for controlling NUMA policy","desired":"install","status":"installed"},{"codes":"ii","name":"libonig4:amd64","version":"6.7.0-1","architecture":"amd64","description":"regular expressions library","desired":"install","status":"installed"},{"codes":"ii","name":"libopts25:amd64","version":"1:5.18.12-4","architecture":"amd64","description":"automated option processing library based on autogen","desired":"install","status":"installed"},{"codes":"ii","name":"libp11-kit0:amd64","version":"0.23.9-2ubuntu0.1","architecture":"amd64","description":"library for loading and coordinating access to PKCS#11 modules - runtime","desired":"install","status":"installed"},{"codes":"ii","name":"libpam-cap:amd64","version":"1:2.25-1.2","architecture":"amd64","description":"POSIX 1003.1e capabilities (PAM module)","desired":"install","status":"installed"},{"codes":"ii","name":"libpam-modules:amd64","version":"1.1.8-3.6ubuntu2.18.04.1","architecture":"amd64","description":"Pluggable Authentication Modules for PAM","desired":"install","status":"installed"},{"codes":"ii","name":"libpam-modules-bin","version":"1.1.8-3.6ubuntu2.18.04.1","architecture":"amd64","description":"Pluggable Authentication Modules for PAM - helper binaries","desired":"install","status":"installed"},{"codes":"ii","name":"libpam-runtime","version":"1.1.8-3.6ubuntu2.18.04.1","architecture":"all","description":"Runtime support for the PAM library","desired":"install","status":"installed"},{"codes":"ii","name":"libpam-systemd:amd64","version":"237-3ubuntu10.42","architecture":"amd64","description":"system and service manager - PAM module","desired":"install","status":"installed"},{"codes":"ii","name":"libpam0g:amd64","version":"1.1.8-3.6ubuntu2.18.04.1","architecture":"amd64","description":"Pluggable Authentication Modules library","desired":"install","status":"installed"},{"codes":"ii","name":"libparted2:amd64","version":"3.2-20ubuntu0.2","architecture":"amd64","description":"disk partition manipulator - shared library","desired":"install","status":"installed"},{"codes":"ii","name":"libpcap0.8:amd64","version":"1.8.1-6ubuntu1.18.04.1","architecture":"amd64","description":"system interface for user-level packet capture","desired":"install","status":"installed"},{"codes":"ii","name":"libpci3:amd64","version":"1:3.5.2-1ubuntu1.1","architecture":"amd64","description":"Linux PCI Utilities (shared library)","desired":"install","status":"installed"},{"codes":"ii","name":"libpcre3:amd64","version":"2:8.39-9","architecture":"amd64","description":"Old Perl 5 Compatible Regular Expression Library - runtime files","desired":"install","status":"installed"},{"codes":"ii","name":"libperl5.26:amd64","version":"5.26.1-6ubuntu0.5","architecture":"amd64","description":"shared Perl library","desired":"install","status":"installed"},{"codes":"ii","name":"libpipeline1:amd64","version":"1.5.0-1","architecture":"amd64","description":"pipeline manipulation library","desired":"install","status":"installed"},{"codes":"ii","name":"libplist3:amd64","version":"2.0.0-2ubuntu1","architecture":"amd64","description":"Library for handling Apple binary and XML property lists","desired":"install","status":"installed"},{"codes":"ii","name":"libplymouth4:amd64","version":"0.9.3-1ubuntu7.18.04.2","architecture":"amd64","description":"graphical boot animation and logger - shared libraries","desired":"install","status":"installed"},{"codes":"ii","name":"libpng16-16:amd64","version":"1.6.34-1ubuntu0.18.04.2","architecture":"amd64","description":"PNG library - runtime (version 1.6)","desired":"install","status":"installed"},{"codes":"ii","name":"libpolkit-agent-1-0:amd64","version":"0.105-20ubuntu0.18.04.5","architecture":"amd64","description":"PolicyKit Authentication Agent API","desired":"install","status":"installed"},{"codes":"ii","name":"libpolkit-backend-1-0:amd64","version":"0.105-20ubuntu0.18.04.5","architecture":"amd64","description":"PolicyKit backend API","desired":"install","status":"installed"},{"codes":"ii","name":"libpolkit-gobject-1-0:amd64","version":"0.105-20ubuntu0.18.04.5","architecture":"amd64","description":"PolicyKit Authorization API","desired":"install","status":"installed"},{"codes":"ii","name":"libpopt0:amd64","version":"1.16-11","architecture":"amd64","description":"lib for parsing cmdline parameters","desired":"install","status":"installed"},{"codes":"ii","name":"libprocps6:amd64","version":"2:3.3.12-3ubuntu1.2","architecture":"amd64","description":"library for accessing process information from /proc","desired":"install","status":"installed"},{"codes":"ii","name":"libpsl5:amd64","version":"0.19.1-5build1","architecture":"amd64","description":"Library for Public Suffix List (shared libraries)","desired":"install","status":"installed"},{"codes":"ii","name":"libpython3-dev:amd64","version":"3.6.7-1~18.04","architecture":"amd64","description":"header files and a static library for Python (default)","desired":"install","status":"installed"},{"codes":"ii","name":"libpython3-stdlib:amd64","version":"3.6.7-1~18.04","architecture":"amd64","description":"interactive high-level object-oriented language (default python3 version)","desired":"install","status":"installed"},{"codes":"ii","name":"libpython3.6:amd64","version":"3.6.9-1~18.04ubuntu1.4","architecture":"amd64","description":"Shared Python runtime library (version 3.6)","desired":"install","status":"installed"},{"codes":"ii","name":"libpython3.6-dev:amd64","version":"3.6.9-1~18.04ubuntu1.4","architecture":"amd64","description":"Header files and a static library for Python (v3.6)","desired":"install","status":"installed"},{"codes":"ii","name":"libpython3.6-minimal:amd64","version":"3.6.9-1~18.04ubuntu1.4","architecture":"amd64","description":"Minimal subset of the Python language (version 3.6)","desired":"install","status":"installed"},{"codes":"ii","name":"libpython3.6-stdlib:amd64","version":"3.6.9-1~18.04ubuntu1.4","architecture":"amd64","description":"Interactive high-level object-oriented language (standard library, version 3.6)","desired":"install","status":"installed"},{"codes":"ii","name":"libquadmath0:amd64","version":"8.4.0-1ubuntu1~18.04","architecture":"amd64","description":"GCC Quad-Precision Math Library","desired":"install","status":"installed"},{"codes":"ii","name":"libreadline5:amd64","version":"5.2+dfsg-3build1","architecture":"amd64","description":"GNU readline and history libraries, run-time libraries","desired":"install","status":"installed"},{"codes":"ii","name":"libreadline7:amd64","version":"7.0-3","architecture":"amd64","description":"GNU readline and history libraries, run-time libraries","desired":"install","status":"installed"},{"codes":"ii","name":"libroken18-heimdal:amd64","version":"7.5.0+dfsg-1","architecture":"amd64","description":"Heimdal Kerberos - roken support library","desired":"install","status":"installed"},{"codes":"ii","name":"librtmp1:amd64","version":"2.4+20151223.gitfa8646d.1-1","architecture":"amd64","description":"toolkit for RTMP streams (shared library)","desired":"install","status":"installed"},{"codes":"ii","name":"libsasl2-2:amd64","version":"2.1.27~101-g0780600+dfsg-3ubuntu2.3","architecture":"amd64","description":"Cyrus SASL - authentication abstraction library","desired":"install","status":"installed"},{"codes":"ii","name":"libsasl2-modules:amd64","version":"2.1.27~101-g0780600+dfsg-3ubuntu2.3","architecture":"amd64","description":"Cyrus SASL - pluggable authentication modules","desired":"install","status":"installed"},{"codes":"ii","name":"libsasl2-modules-db:amd64","version":"2.1.27~101-g0780600+dfsg-3ubuntu2.3","architecture":"amd64","description":"Cyrus SASL - pluggable authentication modules (DB)","desired":"install","status":"installed"},{"codes":"ii","name":"libseccomp2:amd64","version":"2.4.3-1ubuntu3.18.04.3","architecture":"amd64","description":"high level interface to Linux seccomp filter","desired":"install","status":"installed"},{"codes":"ii","name":"libselinux1:amd64","version":"2.7-2build2","architecture":"amd64","description":"SELinux runtime shared libraries","desired":"install","status":"installed"},{"codes":"ii","name":"libsemanage-common","version":"2.7-2build2","architecture":"all","description":"Common files for SELinux policy management libraries","desired":"install","status":"installed"},{"codes":"ii","name":"libsemanage1:amd64","version":"2.7-2build2","architecture":"amd64","description":"SELinux policy management library","desired":"install","status":"installed"},{"codes":"ii","name":"libsensors4:amd64","version":"1:3.4.0-4","architecture":"amd64","description":"library to read temperature/voltage/fan sensors","desired":"install","status":"installed"},{"codes":"ii","name":"libsepol1:amd64","version":"2.7-1","architecture":"amd64","description":"SELinux library for manipulating binary security policies","desired":"install","status":"installed"},{"codes":"ii","name":"libsigsegv2:amd64","version":"2.12-1","architecture":"amd64","description":"Library for handling page faults in a portable way","desired":"install","status":"installed"},{"codes":"ii","name":"libslang2:amd64","version":"2.3.1a-3ubuntu1","architecture":"amd64","description":"S-Lang programming library - runtime version","desired":"install","status":"installed"},{"codes":"ii","name":"libsmartcols1:amd64","version":"2.31.1-0.4ubuntu3.7","architecture":"amd64","description":"smart column output alignment library","desired":"install","status":"installed"},{"codes":"ii","name":"libsqlite3-0:amd64","version":"3.22.0-1ubuntu0.4","architecture":"amd64","description":"SQLite 3 shared library","desired":"install","status":"installed"},{"codes":"ii","name":"libss2:amd64","version":"1.44.1-1ubuntu1.3","architecture":"amd64","description":"command-line interface parsing library","desired":"install","status":"installed"},{"codes":"ii","name":"libssl-dev:amd64","version":"1.1.1-1ubuntu2.1~18.04.9","architecture":"amd64","description":"Secure Sockets Layer toolkit - development files","desired":"install","status":"installed"},{"codes":"ii","name":"libssl1.0.0:amd64","version":"1.0.2n-1ubuntu5.6","architecture":"amd64","description":"Secure Sockets Layer toolkit - shared libraries","desired":"install","status":"installed"},{"codes":"ii","name":"libssl1.1:amd64","version":"1.1.1-1ubuntu2.1~18.04.9","architecture":"amd64","description":"Secure Sockets Layer toolkit - shared libraries","desired":"install","status":"installed"},{"codes":"ii","name":"libstdc++-7-dev:amd64","version":"7.5.0-3ubuntu1~18.04","architecture":"amd64","description":"GNU Standard C++ Library v3 (development files)","desired":"install","status":"installed"},{"codes":"ii","name":"libstdc++6:amd64","version":"8.4.0-1ubuntu1~18.04","architecture":"amd64","description":"GNU Standard C++ Library v3","desired":"install","status":"installed"},{"codes":"ii","name":"libsystemd0:amd64","version":"237-3ubuntu10.42","architecture":"amd64","description":"systemd utility library","desired":"install","status":"installed"},{"codes":"ii","name":"libtasn1-6:amd64","version":"4.13-2","architecture":"amd64","description":"Manage ASN.1 structures (runtime)","desired":"install","status":"installed"},{"codes":"ii","name":"libtext-charwidth-perl","version":"0.04-7.1","architecture":"amd64","description":"get display widths of characters on the terminal","desired":"install","status":"installed"},{"codes":"ii","name":"libtext-iconv-perl","version":"1.7-5build6","architecture":"amd64","description":"converts between character sets in Perl","desired":"install","status":"installed"},{"codes":"ii","name":"libtext-wrapi18n-perl","version":"0.06-7.1","architecture":"all","description":"internationalized substitute of Text::Wrap","desired":"install","status":"installed"},{"codes":"ii","name":"libtinfo5:amd64","version":"6.1-1ubuntu1.18.04","architecture":"amd64","description":"shared low-level terminfo library for terminal handling","desired":"install","status":"installed"},{"codes":"ii","name":"libtsan0:amd64","version":"8.4.0-1ubuntu1~18.04","architecture":"amd64","description":"ThreadSanitizer -- a Valgrind-based detector of data races (runtime)","desired":"install","status":"installed"},{"codes":"ii","name":"libubsan0:amd64","version":"7.5.0-3ubuntu1~18.04","architecture":"amd64","description":"UBSan -- undefined behaviour sanitizer (runtime)","desired":"install","status":"installed"},{"codes":"ii","name":"libudev1:amd64","version":"237-3ubuntu10.42","architecture":"amd64","description":"libudev shared library","desired":"install","status":"installed"},{"codes":"ii","name":"libunistring2:amd64","version":"0.9.9-0ubuntu2","architecture":"amd64","description":"Unicode string library for C","desired":"install","status":"installed"},{"codes":"ii","name":"libunwind8:amd64","version":"1.2.1-8","architecture":"amd64","description":"library to determine the call-chain of a program - runtime","desired":"install","status":"installed"},{"codes":"ii","name":"libupower-glib3:amd64","version":"0.99.7-2ubuntu0.18.04.1","architecture":"amd64","description":"abstraction for power management - shared library","desired":"install","status":"installed"},{"codes":"ii","name":"libusb-1.0-0:amd64","version":"2:1.0.21-2","architecture":"amd64","description":"userspace USB programming library","desired":"install","status":"installed"},{"codes":"ii","name":"libusbmuxd4:amd64","version":"1.1.0~git20171206.c724e70f-0.1","architecture":"amd64","description":"USB multiplexor daemon for iPhone and iPod Touch devices - library","desired":"install","status":"installed"},{"codes":"ii","name":"libutempter0:amd64","version":"1.1.6-3","architecture":"amd64","description":"privileged helper for utmp/wtmp updates (runtime)","desired":"install","status":"installed"},{"codes":"ii","name":"libuuid1:amd64","version":"2.31.1-0.4ubuntu3.7","architecture":"amd64","description":"Universally Unique ID library","desired":"install","status":"installed"},{"codes":"ii","name":"libuv1:amd64","version":"1.18.0-3","architecture":"amd64","description":"asynchronous event notification library - runtime library","desired":"install","status":"installed"},{"codes":"ii","name":"libwind0-heimdal:amd64","version":"7.5.0+dfsg-1","architecture":"amd64","description":"Heimdal Kerberos - stringprep implementation","desired":"install","status":"installed"},{"codes":"ii","name":"libwrap0:amd64","version":"7.6.q-27","architecture":"amd64","description":"Wietse Venema's TCP wrappers library","desired":"install","status":"installed"},{"codes":"ii","name":"libx11-6:amd64","version":"2:1.6.4-3ubuntu0.3","architecture":"amd64","description":"X11 client-side library","desired":"install","status":"installed"},{"codes":"ii","name":"libx11-data","version":"2:1.6.4-3ubuntu0.3","architecture":"all","description":"X11 client-side library","desired":"install","status":"installed"},{"codes":"ii","name":"libxau6:amd64","version":"1:1.0.8-1ubuntu1","architecture":"amd64","description":"X11 authorisation library","desired":"install","status":"installed"},{"codes":"ii","name":"libxcb1:amd64","version":"1.13-2~ubuntu18.04","architecture":"amd64","description":"X C Binding","desired":"install","status":"installed"},{"codes":"ii","name":"libxdmcp6:amd64","version":"1:1.1.2-3","architecture":"amd64","description":"X11 Display Manager Control Protocol library","desired":"install","status":"installed"},{"codes":"ii","name":"libxext6:amd64","version":"2:1.3.3-1","architecture":"amd64","description":"X11 miscellaneous extension library","desired":"install","status":"installed"},{"codes":"ii","name":"libxml2:amd64","version":"2.9.4+dfsg1-6.1ubuntu1.3","architecture":"amd64","description":"GNOME XML library","desired":"install","status":"installed"},{"codes":"ii","name":"libxmlsec1:amd64","version":"1.2.25-1build1","architecture":"amd64","description":"XML security library","desired":"install","status":"installed"},{"codes":"ii","name":"libxmlsec1-openssl:amd64","version":"1.2.25-1build1","architecture":"amd64","description":"Openssl engine for the XML security library","desired":"install","status":"installed"},{"codes":"ii","name":"libxmuu1:amd64","version":"2:1.1.2-2","architecture":"amd64","description":"X11 miscellaneous micro-utility library","desired":"install","status":"installed"},{"codes":"ii","name":"libxslt1.1:amd64","version":"1.1.29-5ubuntu0.2","architecture":"amd64","description":"XSLT 1.0 processing library - runtime library","desired":"install","status":"installed"},{"codes":"ii","name":"libxtables12:amd64","version":"1.6.1-2ubuntu2","architecture":"amd64","description":"netfilter xtables library","desired":"install","status":"installed"},{"codes":"ii","name":"libyaml-0-2:amd64","version":"0.1.7-2ubuntu3","architecture":"amd64","description":"Fast YAML 1.1 parser and emitter library","desired":"install","status":"installed"},{"codes":"ii","name":"libzstd1:amd64","version":"1.3.3+dfsg-2ubuntu1.2","architecture":"amd64","description":"fast lossless compression algorithm","desired":"install","status":"installed"},{"codes":"ii","name":"linux-base","version":"4.5ubuntu1.2","architecture":"all","description":"Linux image base package","desired":"install","status":"installed"},{"codes":"ii","name":"linux-firmware","version":"1.173.19","architecture":"all","description":"Firmware for Linux kernel drivers","desired":"install","status":"installed"},{"codes":"ii","name":"linux-generic","version":"4.15.0.140.127","architecture":"amd64","description":"Complete Generic Linux kernel and headers","desired":"install","status":"installed"},{"codes":"ii","name":"linux-headers-4.15.0-137","version":"4.15.0-137.141","architecture":"all","description":"Header files related to Linux kernel version 4.15.0","desired":"install","status":"installed"},{"codes":"ii","name":"linux-headers-4.15.0-137-generic","version":"4.15.0-137.141","architecture":"amd64","description":"Linux kernel headers for version 4.15.0 on 64 bit x86 SMP","desired":"install","status":"installed"},{"codes":"ii","name":"linux-headers-4.15.0-139","version":"4.15.0-139.143","architecture":"all","description":"Header files related to Linux kernel version 4.15.0","desired":"install","status":"installed"},{"codes":"ii","name":"linux-headers-4.15.0-139-generic","version":"4.15.0-139.143","architecture":"amd64","description":"Linux kernel headers for version 4.15.0 on 64 bit x86 SMP","desired":"install","status":"installed"},{"codes":"ii","name":"linux-headers-4.15.0-140","version":"4.15.0-140.144","architecture":"all","description":"Header files related to Linux kernel version 4.15.0","desired":"install","status":"installed"},{"codes":"ii","name":"linux-headers-4.15.0-140-generic","version":"4.15.0-140.144","architecture":"amd64","description":"Linux kernel headers for version 4.15.0 on 64 bit x86 SMP","desired":"install","status":"installed"},{"codes":"ii","name":"linux-headers-generic","version":"4.15.0.140.127","architecture":"amd64","description":"Generic Linux kernel headers","desired":"install","status":"installed"},{"codes":"rc","name":"linux-image-4.15.0-101-generic","version":"4.15.0-101.102","architecture":"amd64","description":"Signed kernel image generic","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-image-4.15.0-109-generic","version":"4.15.0-109.110","architecture":"amd64","description":"Signed kernel image generic","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-image-4.15.0-111-generic","version":"4.15.0-111.112","architecture":"amd64","description":"Signed kernel image generic","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-image-4.15.0-112-generic","version":"4.15.0-112.113","architecture":"amd64","description":"Signed kernel image generic","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-image-4.15.0-126-generic","version":"4.15.0-126.129","architecture":"amd64","description":"Signed kernel image generic","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-image-4.15.0-128-generic","version":"4.15.0-128.131","architecture":"amd64","description":"Signed kernel image generic","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-image-4.15.0-135-generic","version":"4.15.0-135.139","architecture":"amd64","description":"Signed kernel image generic","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-image-4.15.0-136-generic","version":"4.15.0-136.140","architecture":"amd64","description":"Signed kernel image generic","desired":"remove","status":"config-files"},{"codes":"ii","name":"linux-image-4.15.0-137-generic","version":"4.15.0-137.141","architecture":"amd64","description":"Signed kernel image generic","desired":"install","status":"installed"},{"codes":"ii","name":"linux-image-4.15.0-139-generic","version":"4.15.0-139.143","architecture":"amd64","description":"Signed kernel image generic","desired":"install","status":"installed"},{"codes":"ii","name":"linux-image-4.15.0-140-generic","version":"4.15.0-140.144","architecture":"amd64","description":"Signed kernel image generic","desired":"install","status":"installed"},{"codes":"rc","name":"linux-image-4.15.0-55-generic","version":"4.15.0-55.60","architecture":"amd64","description":"Signed kernel image generic","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-image-4.15.0-58-generic","version":"4.15.0-58.64","architecture":"amd64","description":"Signed kernel image generic","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-image-4.15.0-65-generic","version":"4.15.0-65.74","architecture":"amd64","description":"Signed kernel image generic","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-image-4.15.0-66-generic","version":"4.15.0-66.75","architecture":"amd64","description":"Signed kernel image generic","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-image-4.15.0-69-generic","version":"4.15.0-69.78","architecture":"amd64","description":"Signed kernel image generic","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-image-4.15.0-70-generic","version":"4.15.0-70.79","architecture":"amd64","description":"Signed kernel image generic","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-image-4.15.0-72-generic","version":"4.15.0-72.81","architecture":"amd64","description":"Signed kernel image generic","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-image-4.15.0-76-generic","version":"4.15.0-76.86","architecture":"amd64","description":"Signed kernel image generic","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-image-4.15.0-88-generic","version":"4.15.0-88.88","architecture":"amd64","description":"Signed kernel image generic","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-image-4.15.0-96-generic","version":"4.15.0-96.97","architecture":"amd64","description":"Signed kernel image generic","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-image-4.15.0-99-generic","version":"4.15.0-99.100","architecture":"amd64","description":"Signed kernel image generic","desired":"remove","status":"config-files"},{"codes":"ii","name":"linux-image-generic","version":"4.15.0.140.127","architecture":"amd64","description":"Generic Linux kernel image","desired":"install","status":"installed"},{"codes":"ii","name":"linux-libc-dev:amd64","version":"4.15.0-140.144","architecture":"amd64","description":"Linux Kernel Headers for development","desired":"install","status":"installed"},{"codes":"rc","name":"linux-modules-4.15.0-101-generic","version":"4.15.0-101.102","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-4.15.0-109-generic","version":"4.15.0-109.110","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-4.15.0-111-generic","version":"4.15.0-111.112","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-4.15.0-112-generic","version":"4.15.0-112.113","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-4.15.0-126-generic","version":"4.15.0-126.129","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-4.15.0-128-generic","version":"4.15.0-128.131","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-4.15.0-135-generic","version":"4.15.0-135.139","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-4.15.0-136-generic","version":"4.15.0-136.140","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"ii","name":"linux-modules-4.15.0-137-generic","version":"4.15.0-137.141","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"install","status":"installed"},{"codes":"ii","name":"linux-modules-4.15.0-139-generic","version":"4.15.0-139.143","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"install","status":"installed"},{"codes":"ii","name":"linux-modules-4.15.0-140-generic","version":"4.15.0-140.144","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"install","status":"installed"},{"codes":"rc","name":"linux-modules-4.15.0-55-generic","version":"4.15.0-55.60","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-4.15.0-58-generic","version":"4.15.0-58.64","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-4.15.0-65-generic","version":"4.15.0-65.74","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-4.15.0-66-generic","version":"4.15.0-66.75","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-4.15.0-69-generic","version":"4.15.0-69.78","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-4.15.0-70-generic","version":"4.15.0-70.79","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-4.15.0-72-generic","version":"4.15.0-72.81","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-4.15.0-76-generic","version":"4.15.0-76.86","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-4.15.0-88-generic","version":"4.15.0-88.88","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-4.15.0-96-generic","version":"4.15.0-96.97","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-4.15.0-99-generic","version":"4.15.0-99.100","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-extra-4.15.0-101-generic","version":"4.15.0-101.102","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-extra-4.15.0-109-generic","version":"4.15.0-109.110","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-extra-4.15.0-111-generic","version":"4.15.0-111.112","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-extra-4.15.0-112-generic","version":"4.15.0-112.113","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-extra-4.15.0-126-generic","version":"4.15.0-126.129","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-extra-4.15.0-128-generic","version":"4.15.0-128.131","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-extra-4.15.0-135-generic","version":"4.15.0-135.139","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-extra-4.15.0-136-generic","version":"4.15.0-136.140","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"ii","name":"linux-modules-extra-4.15.0-137-generic","version":"4.15.0-137.141","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"install","status":"installed"},{"codes":"ii","name":"linux-modules-extra-4.15.0-139-generic","version":"4.15.0-139.143","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"install","status":"installed"},{"codes":"ii","name":"linux-modules-extra-4.15.0-140-generic","version":"4.15.0-140.144","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"install","status":"installed"},{"codes":"rc","name":"linux-modules-extra-4.15.0-55-generic","version":"4.15.0-55.60","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-extra-4.15.0-58-generic","version":"4.15.0-58.64","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-extra-4.15.0-65-generic","version":"4.15.0-65.74","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-extra-4.15.0-66-generic","version":"4.15.0-66.75","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-extra-4.15.0-69-generic","version":"4.15.0-69.78","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-extra-4.15.0-70-generic","version":"4.15.0-70.79","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-extra-4.15.0-72-generic","version":"4.15.0-72.81","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-extra-4.15.0-76-generic","version":"4.15.0-76.86","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-extra-4.15.0-88-generic","version":"4.15.0-88.88","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-extra-4.15.0-96-generic","version":"4.15.0-96.97","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-extra-4.15.0-99-generic","version":"4.15.0-99.100","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"ii","name":"locales","version":"2.27-3ubuntu1.2","architecture":"all","description":"GNU C Library: National Language (locale) data [support]","desired":"install","status":"installed"},{"codes":"ii","name":"login","version":"1:4.5-1ubuntu2","architecture":"amd64","description":"system login tools","desired":"install","status":"installed"},{"codes":"ii","name":"logrotate","version":"3.11.0-0.1ubuntu1","architecture":"amd64","description":"Log rotation utility","desired":"install","status":"installed"},{"codes":"ii","name":"lsb-base","version":"9.20170808ubuntu1","architecture":"all","description":"Linux Standard Base init script functionality","desired":"install","status":"installed"},{"codes":"ii","name":"lsb-release","version":"9.20170808ubuntu1","architecture":"all","description":"Linux Standard Base version reporting utility","desired":"install","status":"installed"},{"codes":"ii","name":"lshw","version":"02.18-0.1ubuntu6.18.04.1","architecture":"amd64","description":"information about hardware configuration","desired":"install","status":"installed"},{"codes":"ii","name":"lsof","version":"4.89+dfsg-0.1","architecture":"amd64","description":"Utility to list open files","desired":"install","status":"installed"},{"codes":"ii","name":"ltrace","version":"0.7.3-6ubuntu1","architecture":"amd64","description":"Tracks runtime library calls in dynamically linked programs","desired":"install","status":"installed"},{"codes":"ii","name":"lvm2","version":"2.02.176-4.1ubuntu3.18.04.3","architecture":"amd64","description":"Linux Logical Volume Manager","desired":"install","status":"installed"},{"codes":"ii","name":"lxcfs","version":"3.0.3-0ubuntu1~18.04.2","architecture":"amd64","description":"FUSE based filesystem for LXC","desired":"install","status":"installed"},{"codes":"ii","name":"lxd","version":"3.0.3-0ubuntu1~18.04.1","architecture":"amd64","description":"Container hypervisor based on LXC - daemon","desired":"install","status":"installed"},{"codes":"ii","name":"lxd-client","version":"3.0.3-0ubuntu1~18.04.1","architecture":"amd64","description":"Container hypervisor based on LXC - client","desired":"install","status":"installed"},{"codes":"ii","name":"make","version":"4.1-9.1ubuntu1","architecture":"amd64","description":"utility for directing compilation","desired":"install","status":"installed"},{"codes":"ii","name":"man-db","version":"2.8.3-2ubuntu0.1","architecture":"amd64","description":"on-line manual pager","desired":"install","status":"installed"},{"codes":"ii","name":"manpages","version":"4.15-1","architecture":"all","description":"Manual pages about using a GNU/Linux system","desired":"install","status":"installed"},{"codes":"ii","name":"manpages-dev","version":"4.15-1","architecture":"all","description":"Manual pages about using GNU/Linux for development","desired":"install","status":"installed"},{"codes":"ii","name":"mawk","version":"1.3.3-17ubuntu3","architecture":"amd64","description":"a pattern scanning and text processing language","desired":"install","status":"installed"},{"codes":"ii","name":"mdadm","version":"4.1~rc1-3~ubuntu18.04.4","architecture":"amd64","description":"tool to administer Linux MD arrays (software RAID)","desired":"install","status":"installed"},{"codes":"ii","name":"mime-support","version":"3.60ubuntu1","architecture":"all","description":"MIME files 'mime.types' & 'mailcap', and support programs","desired":"install","status":"installed"},{"codes":"ii","name":"mlocate","version":"0.26-2ubuntu3.1","architecture":"amd64","description":"quickly find files on the filesystem based on their name","desired":"install","status":"installed"},{"codes":"ii","name":"mount","version":"2.31.1-0.4ubuntu3.7","architecture":"amd64","description":"tools for mounting and manipulating filesystems","desired":"install","status":"installed"},{"codes":"ii","name":"mtr-tiny","version":"0.92-1","architecture":"amd64","description":"Full screen ncurses traceroute tool","desired":"install","status":"installed"},{"codes":"ii","name":"multiarch-support","version":"2.27-3ubuntu1.2","architecture":"amd64","description":"Transitional package to ensure multiarch compatibility","desired":"install","status":"installed"},{"codes":"ii","name":"musl:amd64","version":"1.1.19-1","architecture":"amd64","description":"standard C library","desired":"install","status":"installed"},{"codes":"ii","name":"musl-dev:amd64","version":"1.1.19-1","architecture":"amd64","description":"standard C library development files","desired":"install","status":"installed"},{"codes":"ii","name":"musl-tools","version":"1.1.19-1","architecture":"amd64","description":"standard C library tools","desired":"install","status":"installed"},{"codes":"ii","name":"nano","version":"2.9.3-2","architecture":"amd64","description":"small, friendly text editor inspired by Pico","desired":"install","status":"installed"},{"codes":"ii","name":"ncurses-base","version":"6.1-1ubuntu1.18.04","architecture":"all","description":"basic terminal type definitions","desired":"install","status":"installed"},{"codes":"ii","name":"ncurses-bin","version":"6.1-1ubuntu1.18.04","architecture":"amd64","description":"terminal-related programs and man pages","desired":"install","status":"installed"},{"codes":"ii","name":"ncurses-term","version":"6.1-1ubuntu1.18.04","architecture":"all","description":"additional terminal type definitions","desired":"install","status":"installed"},{"codes":"ii","name":"net-tools","version":"1.60+git20161116.90da8a0-1ubuntu1","architecture":"amd64","description":"NET-3 networking toolkit","desired":"install","status":"installed"},{"codes":"ii","name":"netbase","version":"5.4","architecture":"all","description":"Basic TCP/IP networking system","desired":"install","status":"installed"},{"codes":"ii","name":"netcat-openbsd","version":"1.187-1ubuntu0.1","architecture":"amd64","description":"TCP/IP swiss army knife","desired":"install","status":"installed"},{"codes":"ii","name":"netplan.io","version":"0.97-0ubuntu1~18.04.1","architecture":"amd64","description":"YAML network configuration abstraction for various backends","desired":"install","status":"installed"},{"codes":"ii","name":"networkd-dispatcher","version":"1.7-0ubuntu3.3","architecture":"all","description":"Dispatcher service for systemd-networkd connection status changes","desired":"install","status":"installed"},{"codes":"ii","name":"nmap","version":"7.60-1ubuntu5","architecture":"amd64","description":"The Network Mapper","desired":"install","status":"installed"},{"codes":"ii","name":"nplan","version":"0.99-0ubuntu3~18.04.3","architecture":"all","description":"YAML network configuration abstraction - transitional package","desired":"install","status":"installed"},{"codes":"ii","name":"ntfs-3g","version":"1:2017.3.23-2ubuntu0.18.04.2","architecture":"amd64","description":"read/write NTFS driver for FUSE","desired":"install","status":"installed"},{"codes":"ii","name":"ntp","version":"1:4.2.8p10+dfsg-5ubuntu7.3","architecture":"amd64","description":"Network Time Protocol daemon and utility programs","desired":"install","status":"installed"},{"codes":"ii","name":"open-iscsi","version":"2.0.874-5ubuntu2.10","architecture":"amd64","description":"iSCSI initiator tools","desired":"install","status":"installed"},{"codes":"ii","name":"open-vm-tools","version":"2:11.0.5-4ubuntu0.18.04.1","architecture":"amd64","description":"Open VMware Tools for virtual machines hosted on VMware (CLI)","desired":"install","status":"installed"},{"codes":"ii","name":"openssh-client","version":"1:7.6p1-4ubuntu0.3","architecture":"amd64","description":"secure shell (SSH) client, for secure access to remote machines","desired":"install","status":"installed"},{"codes":"ii","name":"openssh-server","version":"1:7.6p1-4ubuntu0.3","architecture":"amd64","description":"secure shell (SSH) server, for secure access from remote machines","desired":"install","status":"installed"},{"codes":"ii","name":"openssh-sftp-server","version":"1:7.6p1-4ubuntu0.3","architecture":"amd64","description":"secure shell (SSH) sftp server module, for SFTP access from remote machines","desired":"install","status":"installed"},{"codes":"ii","name":"openssl","version":"1.1.1-1ubuntu2.1~18.04.9","architecture":"amd64","description":"Secure Sockets Layer toolkit - cryptographic utility","desired":"install","status":"installed"},{"codes":"ii","name":"os-prober","version":"1.74ubuntu1","architecture":"amd64","description":"utility to detect other OSes on a set of drives","desired":"install","status":"installed"},{"codes":"ii","name":"overlayroot","version":"0.40ubuntu1.1","architecture":"all","description":"use an overlayfs on top of a read-only root filesystem","desired":"install","status":"installed"},{"codes":"ii","name":"parted","version":"3.2-20ubuntu0.2","architecture":"amd64","description":"disk partition manipulator","desired":"install","status":"installed"},{"codes":"ii","name":"passwd","version":"1:4.5-1ubuntu2","architecture":"amd64","description":"change and administer password and group data","desired":"install","status":"installed"},{"codes":"ii","name":"pastebinit","version":"1.5-2","architecture":"all","description":"command-line pastebin client","desired":"install","status":"installed"},{"codes":"ii","name":"patch","version":"2.7.6-2ubuntu1.1","architecture":"amd64","description":"Apply a diff file to an original","desired":"install","status":"installed"},{"codes":"ii","name":"pciutils","version":"1:3.5.2-1ubuntu1.1","architecture":"amd64","description":"Linux PCI Utilities","desired":"install","status":"installed"},{"codes":"ii","name":"perl","version":"5.26.1-6ubuntu0.5","architecture":"amd64","description":"Larry Wall's Practical Extraction and Report Language","desired":"install","status":"installed"},{"codes":"ii","name":"perl-base","version":"5.26.1-6ubuntu0.5","architecture":"amd64","description":"minimal Perl system","desired":"install","status":"installed"},{"codes":"ii","name":"perl-modules-5.26","version":"5.26.1-6ubuntu0.5","architecture":"all","description":"Core Perl modules","desired":"install","status":"installed"},{"codes":"ii","name":"pigz","version":"2.4-1","architecture":"amd64","description":"Parallel Implementation of GZip","desired":"install","status":"installed"},{"codes":"ii","name":"pinentry-curses","version":"1.1.0-1","architecture":"amd64","description":"curses-based PIN or pass-phrase entry dialog for GnuPG","desired":"install","status":"installed"},{"codes":"ii","name":"pkg-config","version":"0.29.1-0ubuntu2","architecture":"amd64","description":"manage compile and link flags for libraries","desired":"install","status":"installed"},{"codes":"ii","name":"plymouth","version":"0.9.3-1ubuntu7.18.04.2","architecture":"amd64","description":"boot animation, logger and I/O multiplexer","desired":"install","status":"installed"},{"codes":"ii","name":"plymouth-theme-ubuntu-text","version":"0.9.3-1ubuntu7.18.04.2","architecture":"amd64","description":"boot animation, logger and I/O multiplexer - ubuntu text theme","desired":"install","status":"installed"},{"codes":"ii","name":"policykit-1","version":"0.105-20ubuntu0.18.04.5","architecture":"amd64","description":"framework for managing administrative policies and privileges","desired":"install","status":"installed"},{"codes":"ii","name":"pollinate","version":"4.33-0ubuntu1~18.04.1","architecture":"all","description":"seed the pseudo random number generator","desired":"install","status":"installed"},{"codes":"ii","name":"popularity-contest","version":"1.66ubuntu1","architecture":"all","description":"Vote for your favourite packages automatically","desired":"install","status":"installed"},{"codes":"ii","name":"powermgmt-base","version":"1.33","architecture":"all","description":"common utils for power management","desired":"install","status":"installed"},{"codes":"ii","name":"procps","version":"2:3.3.12-3ubuntu1.2","architecture":"amd64","description":"/proc file system utilities","desired":"install","status":"installed"},{"codes":"ii","name":"psmisc","version":"23.1-1ubuntu0.1","architecture":"amd64","description":"utilities that use the proc file system","desired":"install","status":"installed"},{"codes":"ii","name":"publicsuffix","version":"20180223.1310-1","architecture":"all","description":"accurate, machine-readable list of domain name suffixes","desired":"install","status":"installed"},{"codes":"ii","name":"python-apt-common","version":"1.6.5ubuntu0.5","architecture":"all","description":"Python interface to libapt-pkg (locales)","desired":"install","status":"installed"},{"codes":"ii","name":"python-pip-whl","version":"9.0.1-2.3~ubuntu1.18.04.4","architecture":"all","description":"Python package installer","desired":"install","status":"installed"},{"codes":"ii","name":"python3","version":"3.6.7-1~18.04","architecture":"amd64","description":"interactive high-level object-oriented language (default python3 version)","desired":"install","status":"installed"},{"codes":"ii","name":"python3-apport","version":"2.20.9-0ubuntu7.23","architecture":"all","description":"Python 3 library for Apport crash report handling","desired":"install","status":"installed"},{"codes":"ii","name":"python3-apt","version":"1.6.5ubuntu0.5","architecture":"amd64","description":"Python 3 interface to libapt-pkg","desired":"install","status":"installed"},{"codes":"ii","name":"python3-asn1crypto","version":"0.24.0-1","architecture":"all","description":"Fast ASN.1 parser and serializer (Python 3)","desired":"install","status":"installed"},{"codes":"ii","name":"python3-attr","version":"17.4.0-2","architecture":"all","description":"Attributes without boilerplate (Python 3)","desired":"install","status":"installed"},{"codes":"ii","name":"python3-automat","version":"0.6.0-1","architecture":"all","description":"Self-service finite-state machines for the programmer on the go","desired":"install","status":"installed"},{"codes":"ii","name":"python3-blinker","version":"1.4+dfsg1-0.1","architecture":"all","description":"fast, simple object-to-object and broadcast signaling library","desired":"install","status":"installed"},{"codes":"ii","name":"python3-certifi","version":"2018.1.18-2","architecture":"all","description":"root certificates for validating SSL certs and verifying TLS hosts (python3)","desired":"install","status":"installed"},{"codes":"ii","name":"python3-cffi-backend","version":"1.11.5-1","architecture":"amd64","description":"Foreign Function Interface for Python 3 calling C code - runtime","desired":"install","status":"installed"},{"codes":"ii","name":"python3-chardet","version":"3.0.4-1","architecture":"all","description":"universal character encoding detector for Python3","desired":"install","status":"installed"},{"codes":"ii","name":"python3-click","version":"6.7-3","architecture":"all","description":"Simple wrapper around optparse for powerful command line utilities - Python 3.x","desired":"install","status":"installed"},{"codes":"ii","name":"python3-colorama","version":"0.3.7-1","architecture":"all","description":"Cross-platform colored terminal text in Python - Python 3.x","desired":"install","status":"installed"},{"codes":"ii","name":"python3-commandnotfound","version":"18.04.5","architecture":"all","description":"Python 3 bindings for command-not-found.","desired":"install","status":"installed"},{"codes":"ii","name":"python3-configobj","version":"5.0.6-2","architecture":"all","description":"simple but powerful config file reader and writer for Python 3","desired":"install","status":"installed"},{"codes":"ii","name":"python3-constantly","version":"15.1.0-1","architecture":"all","description":"Symbolic constants in Python","desired":"install","status":"installed"},{"codes":"ii","name":"python3-crypto","version":"2.6.1-8ubuntu2","architecture":"amd64","description":"cryptographic algorithms and protocols for Python 3","desired":"install","status":"installed"},{"codes":"ii","name":"python3-cryptography","version":"2.1.4-1ubuntu1.4","architecture":"amd64","description":"Python library exposing cryptographic recipes and primitives (Python 3)","desired":"install","status":"installed"},{"codes":"ii","name":"python3-dbus","version":"1.2.6-1","architecture":"amd64","description":"simple interprocess messaging system (Python 3 interface)","desired":"install","status":"installed"},{"codes":"ii","name":"python3-debconf","version":"1.5.66ubuntu1","architecture":"all","description":"interact with debconf from Python 3","desired":"install","status":"installed"},{"codes":"ii","name":"python3-debian","version":"0.1.32","architecture":"all","description":"Python 3 modules to work with Debian-related data formats","desired":"install","status":"installed"},{"codes":"ii","name":"python3-dev","version":"3.6.7-1~18.04","architecture":"amd64","description":"header files and a static library for Python (default)","desired":"install","status":"installed"},{"codes":"ii","name":"python3-distro-info","version":"0.18ubuntu0.18.04.1","architecture":"all","description":"information about distributions' releases (Python 3 module)","desired":"install","status":"installed"},{"codes":"ii","name":"python3-distupgrade","version":"1:18.04.38","architecture":"all","description":"manage release upgrades","desired":"install","status":"installed"},{"codes":"ii","name":"python3-distutils","version":"3.6.9-1~18.04","architecture":"all","description":"distutils package for Python 3.x","desired":"install","status":"installed"},{"codes":"ii","name":"python3-gdbm:amd64","version":"3.6.9-1~18.04","architecture":"amd64","description":"GNU dbm database support for Python 3.x","desired":"install","status":"installed"},{"codes":"ii","name":"python3-gi","version":"3.26.1-2ubuntu1","architecture":"amd64","description":"Python 3 bindings for gobject-introspection libraries","desired":"install","status":"installed"},{"codes":"ii","name":"python3-httplib2","version":"0.9.2+dfsg-1ubuntu0.2","architecture":"all","description":"comprehensive HTTP client library written for Python3","desired":"install","status":"installed"},{"codes":"ii","name":"python3-hyperlink","version":"17.3.1-2","architecture":"all","description":"Immutable, Pythonic, correct URLs.","desired":"install","status":"installed"},{"codes":"ii","name":"python3-idna","version":"2.6-1","architecture":"all","description":"Python IDNA2008 (RFC 5891) handling (Python 3)","desired":"install","status":"installed"},{"codes":"ii","name":"python3-incremental","version":"16.10.1-3","architecture":"all","description":"Library for versioning Python projects.","desired":"install","status":"installed"},{"codes":"ii","name":"python3-jinja2","version":"2.10-1ubuntu0.18.04.1","architecture":"all","description":"small but fast and easy to use stand-alone template engine","desired":"install","status":"installed"},{"codes":"ii","name":"python3-json-pointer","version":"1.10-1","architecture":"all","description":"resolve JSON pointers - Python 3.x","desired":"install","status":"installed"},{"codes":"ii","name":"python3-jsonpatch","version":"1.19+really1.16-1fakesync1","architecture":"all","description":"library to apply JSON patches - Python 3.x","desired":"install","status":"installed"},{"codes":"ii","name":"python3-jsonschema","version":"2.6.0-2","architecture":"all","description":"An(other) implementation of JSON Schema (Draft 3 and 4) - Python 3.x","desired":"install","status":"installed"},{"codes":"ii","name":"python3-jwt","version":"1.5.3+ds1-1","architecture":"all","description":"Python 3 implementation of JSON Web Token","desired":"install","status":"installed"},{"codes":"ii","name":"python3-keyring","version":"10.6.0-1","architecture":"all","description":"store and access your passwords safely - Python 3 version of the package","desired":"install","status":"installed"},{"codes":"ii","name":"python3-keyrings.alt","version":"3.0-1","architecture":"all","description":"alternate backend implementations for python3-keyring","desired":"install","status":"installed"},{"codes":"ii","name":"python3-lib2to3","version":"3.6.9-1~18.04","architecture":"all","description":"Interactive high-level object-oriented language (2to3, version 3.6)","desired":"install","status":"installed"},{"codes":"ii","name":"python3-markupsafe","version":"1.0-1build1","architecture":"amd64","description":"HTML/XHTML/XML string library for Python 3","desired":"install","status":"installed"},{"codes":"ii","name":"python3-minimal","version":"3.6.7-1~18.04","architecture":"amd64","description":"minimal subset of the Python language (default python3 version)","desired":"install","status":"installed"},{"codes":"ii","name":"python3-netifaces","version":"0.10.4-0.1build4","architecture":"amd64","description":"portable network interface information - Python 3.x","desired":"install","status":"installed"},{"codes":"ii","name":"python3-newt:amd64","version":"0.52.20-1ubuntu1","architecture":"amd64","description":"NEWT module for Python3","desired":"install","status":"installed"},{"codes":"ii","name":"python3-oauthlib","version":"2.0.6-1","architecture":"all","description":"generic, spec-compliant implementation of OAuth for Python3","desired":"install","status":"installed"},{"codes":"ii","name":"python3-openssl","version":"17.5.0-1ubuntu1","architecture":"all","description":"Python 3 wrapper around the OpenSSL library","desired":"install","status":"installed"},{"codes":"ii","name":"python3-pam","version":"0.4.2-13.2ubuntu4","architecture":"amd64","description":"Python interface to the PAM library","desired":"install","status":"installed"},{"codes":"ii","name":"python3-pip","version":"9.0.1-2.3~ubuntu1.18.04.4","architecture":"all","description":"Python package installer","desired":"install","status":"installed"},{"codes":"ii","name":"python3-pkg-resources","version":"39.0.1-2","architecture":"all","description":"Package Discovery and Resource Access using pkg_resources","desired":"install","status":"installed"},{"codes":"ii","name":"python3-problem-report","version":"2.20.9-0ubuntu7.23","architecture":"all","description":"Python 3 library to handle problem reports","desired":"install","status":"installed"},{"codes":"ii","name":"python3-pyasn1","version":"0.4.2-3","architecture":"all","description":"ASN.1 library for Python (Python 3 module)","desired":"install","status":"installed"},{"codes":"ii","name":"python3-pyasn1-modules","version":"0.2.1-0.2","architecture":"all","description":"Collection of protocols modules written in ASN.1 language (Python 3)","desired":"install","status":"installed"},{"codes":"ii","name":"python3-requests","version":"2.18.4-2ubuntu0.1","architecture":"all","description":"elegant and simple HTTP library for Python3, built for human beings","desired":"install","status":"installed"},{"codes":"ii","name":"python3-requests-unixsocket","version":"0.1.5-3","architecture":"all","description":"Use requests to talk HTTP via a UNIX domain socket - Python 3.x","desired":"install","status":"installed"},{"codes":"ii","name":"python3-secretstorage","version":"2.3.1-2","architecture":"all","description":"Python module for storing secrets - Python 3.x version","desired":"install","status":"installed"},{"codes":"ii","name":"python3-serial","version":"3.4-2","architecture":"all","description":"pyserial - module encapsulating access for the serial port","desired":"install","status":"installed"},{"codes":"ii","name":"python3-service-identity","version":"16.0.0-2","architecture":"all","description":"Service identity verification for pyOpenSSL (Python 3 module)","desired":"install","status":"installed"},{"codes":"ii","name":"python3-setuptools","version":"39.0.1-2","architecture":"all","description":"Python3 Distutils Enhancements","desired":"install","status":"installed"},{"codes":"ii","name":"python3-six","version":"1.11.0-2","architecture":"all","description":"Python 2 and 3 compatibility library (Python 3 interface)","desired":"install","status":"installed"},{"codes":"ii","name":"python3-software-properties","version":"0.96.24.32.14","architecture":"all","description":"manage the repositories that you install software from","desired":"install","status":"installed"},{"codes":"ii","name":"python3-systemd","version":"234-1build1","architecture":"amd64","description":"Python 3 bindings for systemd","desired":"install","status":"installed"},{"codes":"ii","name":"python3-twisted","version":"17.9.0-2ubuntu0.1","architecture":"all","description":"Event-based framework for internet applications","desired":"install","status":"installed"},{"codes":"ii","name":"python3-twisted-bin:amd64","version":"17.9.0-2ubuntu0.1","architecture":"amd64","description":"Event-based framework for internet applications","desired":"install","status":"installed"},{"codes":"ii","name":"python3-update-manager","version":"1:18.04.11.13","architecture":"all","description":"python 3.x module for update-manager","desired":"install","status":"installed"},{"codes":"ii","name":"python3-urllib3","version":"1.22-1ubuntu0.18.04.2","architecture":"all","description":"HTTP library with thread-safe connection pooling for Python3","desired":"install","status":"installed"},{"codes":"ii","name":"python3-wheel","version":"0.30.0-0.2","architecture":"all","description":"built-package format for Python","desired":"install","status":"installed"},{"codes":"ii","name":"python3-xdg","version":"0.25-4ubuntu1.1","architecture":"all","description":"Python 3 library to access freedesktop.org standards","desired":"install","status":"installed"},{"codes":"ii","name":"python3-yaml","version":"3.12-1build2","architecture":"amd64","description":"YAML parser and emitter for Python3","desired":"install","status":"installed"},{"codes":"ii","name":"python3-zope.interface","version":"4.3.2-1build2","architecture":"amd64","description":"Interfaces for Python3","desired":"install","status":"installed"},{"codes":"ii","name":"python3.6","version":"3.6.9-1~18.04ubuntu1.4","architecture":"amd64","description":"Interactive high-level object-oriented language (version 3.6)","desired":"install","status":"installed"},{"codes":"ii","name":"python3.6-dev","version":"3.6.9-1~18.04ubuntu1.4","architecture":"amd64","description":"Header files and a static library for Python (v3.6)","desired":"install","status":"installed"},{"codes":"ii","name":"python3.6-minimal","version":"3.6.9-1~18.04ubuntu1.4","architecture":"amd64","description":"Minimal subset of the Python language (version 3.6)","desired":"install","status":"installed"},{"codes":"ii","name":"readline-common","version":"7.0-3","architecture":"all","description":"GNU readline and history libraries, common files","desired":"install","status":"installed"},{"codes":"ii","name":"rsync","version":"3.1.2-2.1ubuntu1.1","architecture":"amd64","description":"fast, versatile, remote (and local) file-copying tool","desired":"install","status":"installed"},{"codes":"ii","name":"rsyslog","version":"8.32.0-1ubuntu4","architecture":"amd64","description":"reliable system and kernel logging daemon","desired":"install","status":"installed"},{"codes":"ii","name":"run-one","version":"1.17-0ubuntu1","architecture":"all","description":"run just one instance of a command and its args at a time","desired":"install","status":"installed"},{"codes":"ii","name":"runc","version":"1.0.0~rc10-0ubuntu1~18.04.2","architecture":"amd64","description":"Open Container Project - runtime","desired":"install","status":"installed"},{"codes":"ii","name":"screen","version":"4.6.2-1ubuntu1.1","architecture":"amd64","description":"terminal multiplexer with VT100/ANSI terminal emulation","desired":"install","status":"installed"},{"codes":"ii","name":"sed","version":"4.4-2","architecture":"amd64","description":"GNU stream editor for filtering/transforming text","desired":"install","status":"installed"},{"codes":"ii","name":"sensible-utils","version":"0.0.12","architecture":"all","description":"Utilities for sensible alternative selection","desired":"install","status":"installed"},{"codes":"ii","name":"shared-mime-info","version":"1.9-2","architecture":"amd64","description":"FreeDesktop.org shared MIME database and spec","desired":"install","status":"installed"},{"codes":"ii","name":"slurm","version":"0.4.3-2build2","architecture":"amd64","description":"Realtime network interface monitor","desired":"install","status":"installed"},{"codes":"ii","name":"snapd","version":"2.48.3+18.04","architecture":"amd64","description":"Daemon and tooling that enable snap packages","desired":"install","status":"installed"},{"codes":"ii","name":"sntp","version":"1:4.2.8p10+dfsg-5ubuntu7.3","architecture":"amd64","description":"Network Time Protocol - sntp client","desired":"install","status":"installed"},{"codes":"ii","name":"software-properties-common","version":"0.96.24.32.14","architecture":"all","description":"manage the repositories that you install software from (common)","desired":"install","status":"installed"},{"codes":"ii","name":"sosreport","version":"3.9.1-1ubuntu0.18.04.2","architecture":"amd64","description":"Set of tools to gather troubleshooting data from a system","desired":"install","status":"installed"},{"codes":"ii","name":"squashfs-tools","version":"1:4.3-6ubuntu0.18.04.1","architecture":"amd64","description":"Tool to create and append to squashfs filesystems","desired":"install","status":"installed"},{"codes":"ii","name":"ssh-import-id","version":"5.7-0ubuntu1.1","architecture":"all","description":"securely retrieve an SSH public key and install it locally","desired":"install","status":"installed"},{"codes":"ii","name":"strace","version":"4.21-1ubuntu1","architecture":"amd64","description":"System call tracer","desired":"install","status":"installed"},{"codes":"ii","name":"sudo","version":"1.8.21p2-3ubuntu1.4","architecture":"amd64","description":"Provide limited super user privileges to specific users","desired":"install","status":"installed"},{"codes":"ii","name":"sysstat","version":"11.6.1-1ubuntu0.1","architecture":"amd64","description":"system performance tools for Linux","desired":"install","status":"installed"},{"codes":"ii","name":"systemd","version":"237-3ubuntu10.42","architecture":"amd64","description":"system and service manager","desired":"install","status":"installed"},{"codes":"ii","name":"systemd-sysv","version":"237-3ubuntu10.42","architecture":"amd64","description":"system and service manager - SysV links","desired":"install","status":"installed"},{"codes":"ii","name":"sysvinit-utils","version":"2.88dsf-59.10ubuntu1","architecture":"amd64","description":"System-V-like utilities","desired":"install","status":"installed"},{"codes":"ii","name":"tar","version":"1.29b-2ubuntu0.2","architecture":"amd64","description":"GNU version of the tar archiving utility","desired":"install","status":"installed"},{"codes":"ii","name":"tcpdump","version":"4.9.3-0ubuntu0.18.04.1","architecture":"amd64","description":"command-line network traffic analyzer","desired":"install","status":"installed"},{"codes":"ii","name":"telnet","version":"0.17-41","architecture":"amd64","description":"basic telnet client","desired":"install","status":"installed"},{"codes":"ii","name":"thermald","version":"1.7.0-5ubuntu5","architecture":"amd64","description":"Thermal monitoring and controlling daemon","desired":"install","status":"installed"},{"codes":"ii","name":"time","version":"1.7-25.1build1","architecture":"amd64","description":"GNU time program for measuring CPU resource usage","desired":"install","status":"installed"},{"codes":"ii","name":"tmux","version":"2.6-3ubuntu0.2","architecture":"amd64","description":"terminal multiplexer","desired":"install","status":"installed"},{"codes":"ii","name":"traceroute","version":"1:2.1.0-2","architecture":"amd64","description":"Traces the route taken by packets over an IPv4/IPv6 network","desired":"install","status":"installed"},{"codes":"ii","name":"tzdata","version":"2021a-0ubuntu0.18.04","architecture":"all","description":"time zone and daylight-saving time data","desired":"install","status":"installed"},{"codes":"ii","name":"ubuntu-advantage-tools","version":"17","architecture":"all","description":"management tools for Ubuntu Advantage","desired":"install","status":"installed"},{"codes":"ii","name":"ubuntu-fan","version":"0.12.10","architecture":"all","description":"Ubuntu FAN network support enablement","desired":"install","status":"installed"},{"codes":"ii","name":"ubuntu-keyring","version":"2018.09.18.1~18.04.0","architecture":"all","description":"GnuPG keys of the Ubuntu archive","desired":"install","status":"installed"},{"codes":"ii","name":"ubuntu-minimal","version":"1.417.4","architecture":"amd64","description":"Minimal core of Ubuntu","desired":"install","status":"installed"},{"codes":"ii","name":"ubuntu-release-upgrader-core","version":"1:18.04.38","architecture":"all","description":"manage release upgrades","desired":"install","status":"installed"},{"codes":"ii","name":"ubuntu-server","version":"1.417.4","architecture":"amd64","description":"The Ubuntu Server system","desired":"install","status":"installed"},{"codes":"ii","name":"ubuntu-standard","version":"1.417.4","architecture":"amd64","description":"The Ubuntu standard system","desired":"install","status":"installed"},{"codes":"ii","name":"ucf","version":"3.0038","architecture":"all","description":"Update Configuration File(s): preserve user changes to config files","desired":"install","status":"installed"},{"codes":"ii","name":"udev","version":"237-3ubuntu10.42","architecture":"amd64","description":"/dev/ and hotplug management daemon","desired":"install","status":"installed"},{"codes":"ii","name":"ufw","version":"0.36-0ubuntu0.18.04.1","architecture":"all","description":"program for managing a Netfilter firewall","desired":"install","status":"installed"},{"codes":"ii","name":"uidmap","version":"1:4.5-1ubuntu2","architecture":"amd64","description":"programs to help use subuids","desired":"install","status":"installed"},{"codes":"ii","name":"unattended-upgrades","version":"1.1ubuntu1.18.04.14","architecture":"all","description":"automatic installation of security upgrades","desired":"install","status":"installed"},{"codes":"ii","name":"update-manager-core","version":"1:18.04.11.13","architecture":"all","description":"manage release upgrades","desired":"install","status":"installed"},{"codes":"ii","name":"update-notifier-common","version":"3.192.1.7","architecture":"all","description":"Files shared between update-notifier and other packages","desired":"install","status":"installed"},{"codes":"ii","name":"upower","version":"0.99.7-2ubuntu0.18.04.1","architecture":"amd64","description":"abstraction for power management","desired":"install","status":"installed"},{"codes":"ii","name":"ureadahead","version":"0.100.0-21","architecture":"amd64","description":"Read required files in advance","desired":"install","status":"installed"},{"codes":"ii","name":"usbmuxd","version":"1.1.0-2ubuntu0.1","architecture":"amd64","description":"USB multiplexor daemon for iPhone and iPod Touch devices","desired":"install","status":"installed"},{"codes":"ii","name":"usbutils","version":"1:007-4build1","architecture":"amd64","description":"Linux USB utilities","desired":"install","status":"installed"},{"codes":"ii","name":"util-linux","version":"2.31.1-0.4ubuntu3.7","architecture":"amd64","description":"miscellaneous system utilities","desired":"install","status":"installed"},{"codes":"ii","name":"uuid-runtime","version":"2.31.1-0.4ubuntu3.7","architecture":"amd64","description":"runtime components for the Universally Unique ID library","desired":"install","status":"installed"},{"codes":"ii","name":"vim","version":"2:8.0.1453-1ubuntu1.4","architecture":"amd64","description":"Vi IMproved - enhanced vi editor","desired":"install","status":"installed"},{"codes":"ii","name":"vim-common","version":"2:8.0.1453-1ubuntu1.4","architecture":"all","description":"Vi IMproved - Common files","desired":"install","status":"installed"},{"codes":"ii","name":"vim-runtime","version":"2:8.0.1453-1ubuntu1.4","architecture":"all","description":"Vi IMproved - Runtime files","desired":"install","status":"installed"},{"codes":"ii","name":"vim-tiny","version":"2:8.0.1453-1ubuntu1.4","architecture":"amd64","description":"Vi IMproved - enhanced vi editor - compact version","desired":"install","status":"installed"},{"codes":"ii","name":"wget","version":"1.19.4-1ubuntu2.2","architecture":"amd64","description":"retrieves files from the web","desired":"install","status":"installed"},{"codes":"ii","name":"whiptail","version":"0.52.20-1ubuntu1","architecture":"amd64","description":"Displays user-friendly dialog boxes from shell scripts","desired":"install","status":"installed"},{"codes":"ii","name":"wireless-regdb","version":"2020.11.20-0ubuntu1~18.04.1","architecture":"all","description":"wireless regulatory database","desired":"install","status":"installed"},{"codes":"ii","name":"xauth","version":"1:1.0.10-1","architecture":"amd64","description":"X authentication utility","desired":"install","status":"installed"},{"codes":"ii","name":"xdelta3","version":"3.0.11-dfsg-1ubuntu1","architecture":"amd64","description":"Diff utility which works with binary files","desired":"install","status":"installed"},{"codes":"ii","name":"xdg-user-dirs","version":"0.17-1ubuntu1","architecture":"amd64","description":"tool to manage well known user directories","desired":"install","status":"installed"},{"codes":"ii","name":"xfsprogs","version":"4.9.0+nmu1ubuntu2","architecture":"amd64","description":"Utilities for managing the XFS filesystem","desired":"install","status":"installed"},{"codes":"ii","name":"xkb-data","version":"2.23.1-1ubuntu1.18.04.1","architecture":"all","description":"X Keyboard Extension (XKB) configuration data","desired":"install","status":"installed"},{"codes":"ii","name":"xxd","version":"2:8.0.1453-1ubuntu1.4","architecture":"amd64","description":"tool to make (or reverse) a hex dump","desired":"install","status":"installed"},{"codes":"ii","name":"xz-utils","version":"5.2.2-1.3","architecture":"amd64","description":"XZ-format compression utilities","desired":"install","status":"installed"},{"codes":"ii","name":"zerofree","version":"1.0.4-1","architecture":"amd64","description":"zero free blocks from ext2, ext3 and ext4 file-systems","desired":"install","status":"installed"},{"codes":"ii","name":"zlib1g:amd64","version":"1:1.2.11.dfsg-0ubuntu2","architecture":"amd64","description":"compression library - runtime","desired":"install","status":"installed"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/dpkg-l-columns500.out000066400000000000000000006103261415226333200230270ustar00rootroot00000000000000Desired=Unknown/Install/Remove/Purge/Hold | Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend |/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad) ||/ Name Version Architecture Description +++-=======================================================================================================================-================================================================-================================================================-=================================================================================================================================================================================================================================================== ii accountsservice 0.6.45-1ubuntu1.3 amd64 query and manipulate user account information ii acl 2.2.52-3build1 amd64 Access control list utilities ii acpi 1.7-1.1 amd64 displays information on ACPI devices ii acpid 1:2.0.28-1ubuntu1 amd64 Advanced Configuration and Power Interface event daemon ii adduser 3.116ubuntu1 all add and remove users and groups ii amd64-microcode 3.20191021.1+really3.20181128.1~ubuntu0.18.04.1 amd64 Processor microcode firmware for AMD CPUs ii apparmor 2.12-4ubuntu5.1 amd64 user-space parser utility for AppArmor ii apport 2.20.9-0ubuntu7.23 all automatically generate crash reports for debugging ii apport-symptoms 0.20 all symptom scripts for apport ii apt 1.6.12ubuntu0.2 amd64 commandline package manager ii apt-utils 1.6.12ubuntu0.2 amd64 package management related utility programs ii at 3.1.20-3.1ubuntu2 amd64 Delayed job execution and batch processing ii base-files 10.1ubuntu2.9 amd64 Debian base system miscellaneous files ii base-passwd 3.5.44 amd64 Debian base system master password and group files ii bash 4.4.18-2ubuntu1.2 amd64 GNU Bourne Again SHell ii bash-completion 1:2.8-1ubuntu1 all programmable completion for the bash shell ii bc 1.07.1-2 amd64 GNU bc arbitrary precision calculator language ii bcache-tools 1.0.8-2build1 amd64 bcache userspace tools ii bind9-host 1:9.11.3+dfsg-1ubuntu1.14 amd64 DNS lookup utility (deprecated) ii binutils 2.30-21ubuntu1~18.04.5 amd64 GNU assembler, linker and binary utilities ii binutils-common:amd64 2.30-21ubuntu1~18.04.5 amd64 Common files for the GNU assembler, linker and binary utilities ii binutils-x86-64-linux-gnu 2.30-21ubuntu1~18.04.5 amd64 GNU binary utilities, for x86-64-linux-gnu target ii bluez 5.48-0ubuntu3.4 amd64 Bluetooth tools and daemons ii bridge-utils 1.5-15ubuntu1 amd64 Utilities for configuring the Linux Ethernet bridge ii bsdmainutils 11.1.2ubuntu1 amd64 collection of more utilities from FreeBSD ii bsdutils 1:2.31.1-0.4ubuntu3.7 amd64 basic utilities from 4.4BSD-Lite ii btrfs-progs 4.15.1-1build1 amd64 Checksumming Copy on Write Filesystem utilities ii btrfs-tools 4.15.1-1build1 amd64 transitional dummy package ii build-essential 12.4ubuntu1 amd64 Informational list of build-essential packages ii busybox-initramfs 1:1.27.2-2ubuntu3.3 amd64 Standalone shell setup for initramfs ii busybox-static 1:1.27.2-2ubuntu3.3 amd64 Standalone rescue shell with tons of builtin utilities ii byobu 5.125-0ubuntu1 all text window manager, shell multiplexer, integrated DevOps environment ii bzip2 1.0.6-8.1ubuntu0.2 amd64 high-quality block-sorting file compressor - utilities ii ca-certificates 20210119~18.04.1 all Common CA certificates ii cgroupfs-mount 1.4 all Light-weight package to set up cgroupfs mounts ii cloud-guest-utils 0.30-0ubuntu5 all cloud guest utilities ii cloud-init 20.2-45-g5f7825e2-0ubuntu1~18.04.1 all Init scripts for cloud instances ii cloud-initramfs-copymods 0.40ubuntu1.1 all copy initramfs modules into root filesystem for later use ii cloud-initramfs-dyn-netconf 0.40ubuntu1.1 all write a network interface file in /run for BOOTIF ii command-not-found 18.04.5 all Suggest installation of packages in interactive bash sessions ii command-not-found-data 18.04.5 amd64 Set of data files for command-not-found. ii console-setup 1.178ubuntu2.9 all console font and keymap setup program ii console-setup-linux 1.178ubuntu2.9 all Linux specific part of console-setup ii containerd 1.3.3-0ubuntu1~18.04.2 amd64 daemon to control runC ii coreutils 8.28-1ubuntu1 amd64 GNU core utilities ii cpio 2.12+dfsg-6ubuntu0.18.04.1 amd64 GNU cpio -- a program to manage archives of files ii cpp 4:7.4.0-1ubuntu2.3 amd64 GNU C preprocessor (cpp) ii cpp-7 7.5.0-3ubuntu1~18.04 amd64 GNU C preprocessor ii crda 3.18-1build1 amd64 wireless Central Regulatory Domain Agent ii cron 3.0pl1-128.1ubuntu1 amd64 process scheduling daemon ii cryptsetup 2:2.0.2-1ubuntu1.1 amd64 disk encryption support - startup scripts ii cryptsetup-bin 2:2.0.2-1ubuntu1.1 amd64 disk encryption support - command line tools ii curl 7.58.0-2ubuntu3.13 amd64 command line tool for transferring data with URL syntax ii dash 0.5.8-2.10 amd64 POSIX-compliant shell ii dbus 1.12.2-1ubuntu1.2 amd64 simple interprocess messaging system (daemon and utilities) ii debconf 1.5.66ubuntu1 all Debian configuration management system ii debconf-i18n 1.5.66ubuntu1 all full internationalization support for debconf ii debianutils 4.8.4 amd64 Miscellaneous utilities specific to Debian ii dh-python 3.20180325ubuntu2 all Debian helper tools for packaging Python libraries and applications ii diffutils 1:3.6-1 amd64 File comparison utilities ii dirmngr 2.2.4-1ubuntu1.3 amd64 GNU privacy guard - network certificate management service ii distro-info-data 0.37ubuntu0.9 all information about the distributions' releases (data files) ii dmeventd 2:1.02.145-4.1ubuntu3.18.04.3 amd64 Linux Kernel Device Mapper event daemon ii dmidecode 3.1-1ubuntu0.1 amd64 SMBIOS/DMI table decoder ii dmsetup 2:1.02.145-4.1ubuntu3.18.04.3 amd64 Linux Kernel Device Mapper userspace library ii dns-root-data 2018013001 all DNS root data including root zone and DNSSEC key ii dnsmasq-base 2.79-1ubuntu0.3 amd64 Small caching DNS proxy and DHCP/TFTP server ii dnsutils 1:9.11.3+dfsg-1ubuntu1.14 amd64 Clients provided with BIND ii docker 1.5-1build1 amd64 System tray for KDE3/GNOME2 docklet applications ii docker.io 19.03.6-0ubuntu1~18.04.2 amd64 Linux container runtime ii dosfstools 4.1-1 amd64 utilities for making and checking MS-DOS FAT filesystems ii dpkg 1.19.0.5ubuntu2.3 amd64 Debian package management system ii dpkg-dev 1.19.0.5ubuntu2.3 all Debian package development tools ii e2fsprogs 1.44.1-1ubuntu1.3 amd64 ext2/ext3/ext4 file system utilities ii eatmydata 105-6 all Library and utilities designed to disable fsync and friends ii ebtables 2.0.10.4-3.5ubuntu2.18.04.3 amd64 Ethernet bridge frame table administration ii ed 1.10-2.1 amd64 classic UNIX line editor ii eject 2.1.5+deb1+cvs20081104-13.2 amd64 ejects CDs and operates CD-Changers under Linux ii ethtool 1:4.15-0ubuntu1 amd64 display or change Ethernet device settings ii fakeroot 1.22-2ubuntu1 amd64 tool for simulating superuser privileges ii fdisk 2.31.1-0.4ubuntu3.7 amd64 collection of partitioning utilities ii file 1:5.32-2ubuntu0.4 amd64 Recognize the type of data in a file using "magic" numbers ii findutils 4.6.0+git+20170828-2 amd64 utilities for finding files--find, xargs ii fonts-ubuntu-console 0.83-2 all console version of the Ubuntu Mono font ii friendly-recovery 0.2.38ubuntu1.1 all Make recovery boot mode more user-friendly ii ftp 0.17-34 amd64 classical file transfer client ii fuse 2.9.7-1ubuntu1 amd64 Filesystem in Userspace ii g++ 4:7.4.0-1ubuntu2.3 amd64 GNU C++ compiler ii g++-7 7.5.0-3ubuntu1~18.04 amd64 GNU C++ compiler ii gawk 1:4.1.4+dfsg-1build1 amd64 GNU awk, a pattern scanning and processing language ii gcc 4:7.4.0-1ubuntu2.3 amd64 GNU C compiler ii gcc-7 7.5.0-3ubuntu1~18.04 amd64 GNU C compiler ii gcc-7-base:amd64 7.5.0-3ubuntu1~18.04 amd64 GCC, the GNU Compiler Collection (base package) ii gcc-8-base:amd64 8.4.0-1ubuntu1~18.04 amd64 GCC, the GNU Compiler Collection (base package) ii gdisk 1.0.3-1 amd64 GPT fdisk text-mode partitioning tool ii geoip-database 20180315-1 all IP lookup command line tools that use the GeoIP library (country database) ii gettext-base 0.19.8.1-6ubuntu0.3 amd64 GNU Internationalization utilities for the base system ii gir1.2-glib-2.0:amd64 1.56.1-1 amd64 Introspection data for GLib, GObject, Gio and GModule ii git 1:2.17.1-1ubuntu0.8 amd64 fast, scalable, distributed revision control system ii git-man 1:2.17.1-1ubuntu0.8 all fast, scalable, distributed revision control system (manual pages) ii gnupg 2.2.4-1ubuntu1.3 amd64 GNU privacy guard - a free PGP replacement ii gnupg-l10n 2.2.4-1ubuntu1.3 all GNU privacy guard - localization files ii gnupg-utils 2.2.4-1ubuntu1.3 amd64 GNU privacy guard - utility programs ii gpg 2.2.4-1ubuntu1.3 amd64 GNU Privacy Guard -- minimalist public key operations ii gpg-agent 2.2.4-1ubuntu1.3 amd64 GNU privacy guard - cryptographic agent ii gpg-wks-client 2.2.4-1ubuntu1.3 amd64 GNU privacy guard - Web Key Service client ii gpg-wks-server 2.2.4-1ubuntu1.3 amd64 GNU privacy guard - Web Key Service server ii gpgconf 2.2.4-1ubuntu1.3 amd64 GNU privacy guard - core configuration utilities ii gpgsm 2.2.4-1ubuntu1.3 amd64 GNU privacy guard - S/MIME version ii gpgv 2.2.4-1ubuntu1.3 amd64 GNU privacy guard - signature verification tool ii grep 3.1-2build1 amd64 GNU grep, egrep and fgrep ii groff-base 1.22.3-10 amd64 GNU troff text-formatting system (base system components) ii grub-common 2.02-2ubuntu8.17 amd64 GRand Unified Bootloader (common files) ii grub-gfxpayload-lists 0.7 amd64 GRUB gfxpayload blacklist ii grub-legacy-ec2 1:1 all Handles update-grub for ec2 instances ii grub-pc 2.02-2ubuntu8.17 amd64 GRand Unified Bootloader, version 2 (PC/BIOS version) ii grub-pc-bin 2.02-2ubuntu8.17 amd64 GRand Unified Bootloader, version 2 (PC/BIOS binaries) ii grub2-common 2.02-2ubuntu8.17 amd64 GRand Unified Bootloader (common files for version 2) ii gzip 1.6-5ubuntu1 amd64 GNU compression utilities ii hdparm 9.54+ds-1 amd64 tune hard disk parameters for high performance ii hostname 3.20 amd64 utility to set/show the host name or domain name ii htop 2.1.0-3 amd64 interactive processes viewer ii iftop 1.0~pre4-4 amd64 displays bandwidth usage information on an network interface ii info 6.5.0.dfsg.1-2 amd64 Standalone GNU Info documentation browser ii init 1.51 amd64 metapackage ensuring an init system is installed ii init-system-helpers 1.51 all helper tools for all init systems ii initramfs-tools 0.130ubuntu3.9 all generic modular initramfs generator (automation) ii initramfs-tools-bin 0.130ubuntu3.9 amd64 binaries used by initramfs-tools ii initramfs-tools-core 0.130ubuntu3.9 all generic modular initramfs generator (core tools) ii install-info 6.5.0.dfsg.1-2 amd64 Manage installed documentation in info format ii intel-microcode 3.20201110.0ubuntu0.18.04.2 amd64 Processor microcode firmware for Intel CPUs ii iproute2 4.15.0-2ubuntu1.2 amd64 networking and traffic control tools ii iptables 1.6.1-2ubuntu2 amd64 administration tools for packet filtering and NAT ii iputils-ping 3:20161105-1ubuntu3 amd64 Tools to test the reachability of network hosts ii iputils-tracepath 3:20161105-1ubuntu3 amd64 Tools to trace the network path to a remote host ii irqbalance 1.3.0-0.1ubuntu0.18.04.1 amd64 Daemon to balance interrupts for SMP systems ii isc-dhcp-client 4.3.5-3ubuntu7.1 amd64 DHCP client for automatically obtaining an IP address ii isc-dhcp-common 4.3.5-3ubuntu7.1 amd64 common manpages relevant to all of the isc-dhcp packages ii iso-codes 3.79-1 all ISO language, territory, currency, script codes and their translations ii iucode-tool 2.3.1-1 amd64 Intel processor microcode tool ii iw 4.14-0.1 amd64 tool for configuring Linux wireless devices ii jq 1.5+dfsg-2 amd64 lightweight and flexible command-line JSON processor ii kbd 2.0.4-2ubuntu1 amd64 Linux console font and keytable utilities ii keyboard-configuration 1.178ubuntu2.9 all system-wide keyboard preferences ii klibc-utils 2.0.4-9ubuntu2 amd64 small utilities built with klibc for early boot ii kmod 24-1ubuntu3.5 amd64 tools for managing Linux kernel modules ii krb5-locales 1.16-2ubuntu0.2 all internationalization support for MIT Kerberos ii landscape-common 18.01-0ubuntu3.5 amd64 Landscape administration system client - Common files ii language-pack-fr 1:18.04+20200702 all translation updates for language French ii language-pack-fr-base 1:18.04+20180712 all translations for language French ii language-selector-common 0.188.3 all Language selector for Ubuntu ii less 487-0.1 amd64 pager program similar to more ii libaccountsservice0:amd64 0.6.45-1ubuntu1.3 amd64 query and manipulate user account information - shared libraries ii libacl1:amd64 2.2.52-3build1 amd64 Access control list shared library ii libalgorithm-diff-perl 1.19.03-1 all module to find differences between files ii libalgorithm-diff-xs-perl 0.04-5 amd64 module to find differences between files (XS accelerated) ii libalgorithm-merge-perl 0.08-3 all Perl module for three-way merge of textual data ii libapparmor1:amd64 2.12-4ubuntu5.1 amd64 changehat AppArmor library ii libapt-inst2.0:amd64 1.6.12ubuntu0.2 amd64 deb package format runtime library ii libapt-pkg5.0:amd64 1.6.12ubuntu0.2 amd64 package management runtime library ii libargon2-0:amd64 0~20161029-1.1 amd64 memory-hard hashing function - runtime library ii libasan4:amd64 7.5.0-3ubuntu1~18.04 amd64 AddressSanitizer -- a fast memory error detector ii libasn1-8-heimdal:amd64 7.5.0+dfsg-1 amd64 Heimdal Kerberos - ASN.1 library ii libassuan0:amd64 2.5.1-2 amd64 IPC library for the GnuPG components ii libatm1:amd64 1:2.5.1-2build1 amd64 shared library for ATM (Asynchronous Transfer Mode) ii libatomic1:amd64 8.4.0-1ubuntu1~18.04 amd64 support library providing __atomic built-in functions ii libattr1:amd64 1:2.4.47-2build1 amd64 Extended attribute shared library ii libaudit-common 1:2.8.2-1ubuntu1 all Dynamic library for security auditing - common files ii libaudit1:amd64 1:2.8.2-1ubuntu1 amd64 Dynamic library for security auditing ii libbind9-160:amd64 1:9.11.3+dfsg-1ubuntu1.14 amd64 BIND9 Shared Library used by BIND ii libbinutils:amd64 2.30-21ubuntu1~18.04.5 amd64 GNU binary utilities (private shared library) ii libblas3:amd64 3.7.1-4ubuntu1 amd64 Basic Linear Algebra Reference implementations, shared library ii libblkid1:amd64 2.31.1-0.4ubuntu3.7 amd64 block device ID library ii libbsd0:amd64 0.8.7-1ubuntu0.1 amd64 utility functions from BSD systems - shared library ii libbz2-1.0:amd64 1.0.6-8.1ubuntu0.2 amd64 high-quality block-sorting file compressor library - runtime ii libc-bin 2.27-3ubuntu1.2 amd64 GNU C Library: Binaries ii libc-dev-bin 2.27-3ubuntu1.2 amd64 GNU C Library: Development binaries ii libc6:amd64 2.27-3ubuntu1.2 amd64 GNU C Library: Shared libraries ii libc6-dev:amd64 2.27-3ubuntu1.2 amd64 GNU C Library: Development Libraries and Header Files ii libcap-ng0:amd64 0.7.7-3.1 amd64 An alternate POSIX capabilities library ii libcap2:amd64 1:2.25-1.2 amd64 POSIX 1003.1e capabilities (library) ii libcap2-bin 1:2.25-1.2 amd64 POSIX 1003.1e capabilities (utilities) ii libcc1-0:amd64 8.4.0-1ubuntu1~18.04 amd64 GCC cc1 plugin for GDB ii libcilkrts5:amd64 7.5.0-3ubuntu1~18.04 amd64 Intel Cilk Plus language extensions (runtime) ii libcom-err2:amd64 1.44.1-1ubuntu1.3 amd64 common error description library ii libcryptsetup12:amd64 2:2.0.2-1ubuntu1.1 amd64 disk encryption support - shared library ii libcurl3-gnutls:amd64 7.58.0-2ubuntu3.13 amd64 easy-to-use client-side URL transfer library (GnuTLS flavour) ii libcurl4:amd64 7.58.0-2ubuntu3.13 amd64 easy-to-use client-side URL transfer library (OpenSSL flavour) ii libdb5.3:amd64 5.3.28-13.1ubuntu1.1 amd64 Berkeley v5.3 Database Libraries [runtime] ii libdbus-1-3:amd64 1.12.2-1ubuntu1.2 amd64 simple interprocess messaging system (library) ii libdbus-glib-1-2:amd64 0.110-2 amd64 deprecated library for D-Bus IPC ii libdebconfclient0:amd64 0.213ubuntu1 amd64 Debian Configuration Management System (C-implementation library) ii libdevmapper-event1.02.1:amd64 2:1.02.145-4.1ubuntu3.18.04.3 amd64 Linux Kernel Device Mapper event support library ii libdevmapper1.02.1:amd64 2:1.02.145-4.1ubuntu3.18.04.3 amd64 Linux Kernel Device Mapper userspace library ii libdns-export1100 1:9.11.3+dfsg-1ubuntu1.14 amd64 Exported DNS Shared Library ii libdns1100:amd64 1:9.11.3+dfsg-1ubuntu1.14 amd64 DNS Shared Library used by BIND ii libdpkg-perl 1.19.0.5ubuntu2.3 all Dpkg perl modules ii libdrm-common 2.4.101-2~18.04.1 all Userspace interface to kernel DRM services -- common files ii libdrm2:amd64 2.4.101-2~18.04.1 amd64 Userspace interface to kernel DRM services -- runtime ii libdumbnet1:amd64 1.12-7build1 amd64 dumb, portable networking library -- shared library ii libeatmydata1:amd64 105-6 amd64 Library and utilities to disable fsync and friends - shared library ii libedit2:amd64 3.1-20170329-1 amd64 BSD editline and history libraries ii libelf1:amd64 0.170-0.4ubuntu0.1 amd64 library to read and write ELF files ii liberror-perl 0.17025-1 all Perl module for error/exception handling in an OO-ish way ii libestr0:amd64 0.1.10-2.1 amd64 Helper functions for handling strings (lib) ii libevent-2.1-6:amd64 2.1.8-stable-4build1 amd64 Asynchronous event notification library ii libexpat1:amd64 2.2.5-3ubuntu0.2 amd64 XML parsing C library - runtime library ii libexpat1-dev:amd64 2.2.5-3ubuntu0.2 amd64 XML parsing C library - development kit ii libext2fs2:amd64 1.44.1-1ubuntu1.3 amd64 ext2/ext3/ext4 file system libraries ii libfakeroot:amd64 1.22-2ubuntu1 amd64 tool for simulating superuser privileges - shared libraries ii libfastjson4:amd64 0.99.8-2 amd64 fast json library for C ii libfdisk1:amd64 2.31.1-0.4ubuntu3.7 amd64 fdisk partitioning library ii libffi6:amd64 3.2.1-8 amd64 Foreign Function Interface library runtime ii libfile-fcntllock-perl 0.22-3build2 amd64 Perl module for file locking with fcntl(2) ii libfreetype6:amd64 2.8.1-2ubuntu2.1 amd64 FreeType 2 font engine, shared library files ii libfribidi0:amd64 0.19.7-2 amd64 Free Implementation of the Unicode BiDi algorithm ii libfuse2:amd64 2.9.7-1ubuntu1 amd64 Filesystem in Userspace (library) ii libgcc-7-dev:amd64 7.5.0-3ubuntu1~18.04 amd64 GCC support library (development files) ii libgcc1:amd64 1:8.4.0-1ubuntu1~18.04 amd64 GCC support library ii libgcrypt20:amd64 1.8.1-4ubuntu1.2 amd64 LGPL Crypto library - runtime library ii libgdbm-compat4:amd64 1.14.1-6 amd64 GNU dbm database routines (legacy support runtime version) ii libgdbm5:amd64 1.14.1-6 amd64 GNU dbm database routines (runtime version) ii libgeoip1:amd64 1.6.12-1 amd64 non-DNS IP-to-country resolver library ii libgirepository-1.0-1:amd64 1.56.1-1 amd64 Library for handling GObject introspection data (runtime library) ii libglib2.0-0:amd64 2.56.4-0ubuntu0.18.04.8 amd64 GLib library of C routines ii libglib2.0-data 2.56.4-0ubuntu0.18.04.8 all Common files for GLib library ii libgmp10:amd64 2:6.1.2+dfsg-2 amd64 Multiprecision arithmetic library ii libgnutls30:amd64 3.5.18-1ubuntu1.4 amd64 GNU TLS library - main runtime library ii libgomp1:amd64 8.4.0-1ubuntu1~18.04 amd64 GCC OpenMP (GOMP) support library ii libgpg-error0:amd64 1.27-6 amd64 library for common error values and messages in GnuPG components ii libgpm2:amd64 1.20.7-5 amd64 General Purpose Mouse - shared library ii libgssapi-krb5-2:amd64 1.16-2ubuntu0.2 amd64 MIT Kerberos runtime libraries - krb5 GSS-API Mechanism ii libgssapi3-heimdal:amd64 7.5.0+dfsg-1 amd64 Heimdal Kerberos - GSSAPI support library ii libgudev-1.0-0:amd64 1:232-2 amd64 GObject-based wrapper library for libudev ii libhcrypto4-heimdal:amd64 7.5.0+dfsg-1 amd64 Heimdal Kerberos - crypto library ii libheimbase1-heimdal:amd64 7.5.0+dfsg-1 amd64 Heimdal Kerberos - Base library ii libheimntlm0-heimdal:amd64 7.5.0+dfsg-1 amd64 Heimdal Kerberos - NTLM support library ii libhogweed4:amd64 3.4-1 amd64 low level cryptographic library (public-key cryptos) ii libhx509-5-heimdal:amd64 7.5.0+dfsg-1 amd64 Heimdal Kerberos - X509 support library ii libicu60:amd64 60.2-3ubuntu3.1 amd64 International Components for Unicode ii libidn11:amd64 1.33-2.1ubuntu1.2 amd64 GNU Libidn library, implementation of IETF IDN specifications ii libidn2-0:amd64 2.0.4-1.1ubuntu0.2 amd64 Internationalized domain names (IDNA2008/TR46) library ii libimobiledevice6:amd64 1.2.1~git20171128.5a854327+dfsg-0.1 amd64 Library for communicating with the iPhone and iPod Touch ii libip4tc0:amd64 1.6.1-2ubuntu2 amd64 netfilter libip4tc library ii libip6tc0:amd64 1.6.1-2ubuntu2 amd64 netfilter libip6tc library ii libiptc0:amd64 1.6.1-2ubuntu2 amd64 netfilter libiptc library ii libirs160:amd64 1:9.11.3+dfsg-1ubuntu1.14 amd64 DNS Shared Library used by BIND ii libisc-export169:amd64 1:9.11.3+dfsg-1ubuntu1.14 amd64 Exported ISC Shared Library ii libisc169:amd64 1:9.11.3+dfsg-1ubuntu1.14 amd64 ISC Shared Library used by BIND ii libisccc160:amd64 1:9.11.3+dfsg-1ubuntu1.14 amd64 Command Channel Library used by BIND ii libisccfg160:amd64 1:9.11.3+dfsg-1ubuntu1.14 amd64 Config File Handling Library used by BIND ii libisl19:amd64 0.19-1 amd64 manipulating sets and relations of integer points bounded by linear constraints ii libisns0:amd64 0.97-2build1 amd64 Internet Storage Name Service - shared libraries ii libitm1:amd64 8.4.0-1ubuntu1~18.04 amd64 GNU Transactional Memory Library ii libjq1:amd64 1.5+dfsg-2 amd64 lightweight and flexible command-line JSON processor - shared library ii libjson-c3:amd64 0.12.1-1.3ubuntu0.3 amd64 JSON manipulation library - shared library ii libk5crypto3:amd64 1.16-2ubuntu0.2 amd64 MIT Kerberos runtime libraries - Crypto Library ii libkeyutils1:amd64 1.5.9-9.2ubuntu2 amd64 Linux Key Management Utilities (library) ii libklibc 2.0.4-9ubuntu2 amd64 minimal libc subset for use with initramfs ii libkmod2:amd64 24-1ubuntu3.5 amd64 libkmod shared library ii libkrb5-26-heimdal:amd64 7.5.0+dfsg-1 amd64 Heimdal Kerberos - libraries ii libkrb5-3:amd64 1.16-2ubuntu0.2 amd64 MIT Kerberos runtime libraries ii libkrb5support0:amd64 1.16-2ubuntu0.2 amd64 MIT Kerberos runtime libraries - Support library ii libksba8:amd64 1.3.5-2 amd64 X.509 and CMS support library ii libldap-2.4-2:amd64 2.4.45+dfsg-1ubuntu1.10 amd64 OpenLDAP libraries ii libldap-common 2.4.45+dfsg-1ubuntu1.10 all OpenLDAP common files for libraries ii liblinear3:amd64 2.1.0+dfsg-2 amd64 Library for Large Linear Classification ii liblocale-gettext-perl 1.07-3build2 amd64 module using libc functions for internationalization in Perl ii liblsan0:amd64 8.4.0-1ubuntu1~18.04 amd64 LeakSanitizer -- a memory leak detector (runtime) ii liblua5.3-0:amd64 5.3.3-1ubuntu0.18.04.1 amd64 Shared library for the Lua interpreter version 5.3 ii liblvm2app2.2:amd64 2.02.176-4.1ubuntu3.18.04.3 amd64 LVM2 application library ii liblvm2cmd2.02:amd64 2.02.176-4.1ubuntu3.18.04.3 amd64 LVM2 command library ii liblwres160:amd64 1:9.11.3+dfsg-1ubuntu1.14 amd64 Lightweight Resolver Library used by BIND ii liblxc-common 3.0.3-0ubuntu1~18.04.1 amd64 Linux Containers userspace tools (common tools) ii liblxc1 3.0.3-0ubuntu1~18.04.1 amd64 Linux Containers userspace tools (library) ii liblz4-1:amd64 0.0~r131-2ubuntu3 amd64 Fast LZ compression algorithm library - runtime ii liblzma5:amd64 5.2.2-1.3 amd64 XZ-format compression library ii liblzo2-2:amd64 2.08-1.2 amd64 data compression library ii libmagic-mgc 1:5.32-2ubuntu0.4 amd64 File type determination library using "magic" numbers (compiled magic file) ii libmagic1:amd64 1:5.32-2ubuntu0.4 amd64 Recognize the type of data in a file using "magic" numbers - library ii libmnl0:amd64 1.0.4-2 amd64 minimalistic Netlink communication library ii libmount1:amd64 2.31.1-0.4ubuntu3.7 amd64 device mounting library ii libmpc3:amd64 1.1.0-1 amd64 multiple precision complex floating-point library ii libmpdec2:amd64 2.4.2-1ubuntu1 amd64 library for decimal floating point arithmetic (runtime library) ii libmpfr6:amd64 4.0.1-1 amd64 multiple precision floating-point computation ii libmpx2:amd64 8.4.0-1ubuntu1~18.04 amd64 Intel memory protection extensions (runtime) ii libmspack0:amd64 0.6-3ubuntu0.3 amd64 library for Microsoft compression formats (shared library) ii libncurses5:amd64 6.1-1ubuntu1.18.04 amd64 shared libraries for terminal handling ii libncursesw5:amd64 6.1-1ubuntu1.18.04 amd64 shared libraries for terminal handling (wide character support) ii libnetfilter-conntrack3:amd64 1.0.6-2 amd64 Netfilter netlink-conntrack library ii libnettle6:amd64 3.4-1 amd64 low level cryptographic library (symmetric and one-way cryptos) ii libnewt0.52:amd64 0.52.20-1ubuntu1 amd64 Not Erik's Windowing Toolkit - text mode windowing with slang ii libnfnetlink0:amd64 1.0.1-3 amd64 Netfilter netlink library ii libnghttp2-14:amd64 1.30.0-1ubuntu1 amd64 library implementing HTTP/2 protocol (shared library) ii libnih1:amd64 1.0.3-6ubuntu2 amd64 NIH Utility Library ii libnl-3-200:amd64 3.2.29-0ubuntu3 amd64 library for dealing with netlink sockets ii libnl-genl-3-200:amd64 3.2.29-0ubuntu3 amd64 library for dealing with netlink sockets - generic netlink ii libnpth0:amd64 1.5-3 amd64 replacement for GNU Pth using system threads ii libnss-systemd:amd64 237-3ubuntu10.42 amd64 nss module providing dynamic user and group name resolution ii libntfs-3g88 1:2017.3.23-2ubuntu0.18.04.2 amd64 read/write NTFS driver for FUSE (runtime library) ii libnuma1:amd64 2.0.11-2.1ubuntu0.1 amd64 Libraries for controlling NUMA policy ii libonig4:amd64 6.7.0-1 amd64 regular expressions library ii libopts25:amd64 1:5.18.12-4 amd64 automated option processing library based on autogen ii libp11-kit0:amd64 0.23.9-2ubuntu0.1 amd64 library for loading and coordinating access to PKCS#11 modules - runtime ii libpam-cap:amd64 1:2.25-1.2 amd64 POSIX 1003.1e capabilities (PAM module) ii libpam-modules:amd64 1.1.8-3.6ubuntu2.18.04.1 amd64 Pluggable Authentication Modules for PAM ii libpam-modules-bin 1.1.8-3.6ubuntu2.18.04.1 amd64 Pluggable Authentication Modules for PAM - helper binaries ii libpam-runtime 1.1.8-3.6ubuntu2.18.04.1 all Runtime support for the PAM library ii libpam-systemd:amd64 237-3ubuntu10.42 amd64 system and service manager - PAM module ii libpam0g:amd64 1.1.8-3.6ubuntu2.18.04.1 amd64 Pluggable Authentication Modules library ii libparted2:amd64 3.2-20ubuntu0.2 amd64 disk partition manipulator - shared library ii libpcap0.8:amd64 1.8.1-6ubuntu1.18.04.1 amd64 system interface for user-level packet capture ii libpci3:amd64 1:3.5.2-1ubuntu1.1 amd64 Linux PCI Utilities (shared library) ii libpcre3:amd64 2:8.39-9 amd64 Old Perl 5 Compatible Regular Expression Library - runtime files ii libperl5.26:amd64 5.26.1-6ubuntu0.5 amd64 shared Perl library ii libpipeline1:amd64 1.5.0-1 amd64 pipeline manipulation library ii libplist3:amd64 2.0.0-2ubuntu1 amd64 Library for handling Apple binary and XML property lists ii libplymouth4:amd64 0.9.3-1ubuntu7.18.04.2 amd64 graphical boot animation and logger - shared libraries ii libpng16-16:amd64 1.6.34-1ubuntu0.18.04.2 amd64 PNG library - runtime (version 1.6) ii libpolkit-agent-1-0:amd64 0.105-20ubuntu0.18.04.5 amd64 PolicyKit Authentication Agent API ii libpolkit-backend-1-0:amd64 0.105-20ubuntu0.18.04.5 amd64 PolicyKit backend API ii libpolkit-gobject-1-0:amd64 0.105-20ubuntu0.18.04.5 amd64 PolicyKit Authorization API ii libpopt0:amd64 1.16-11 amd64 lib for parsing cmdline parameters ii libprocps6:amd64 2:3.3.12-3ubuntu1.2 amd64 library for accessing process information from /proc ii libpsl5:amd64 0.19.1-5build1 amd64 Library for Public Suffix List (shared libraries) ii libpython3-dev:amd64 3.6.7-1~18.04 amd64 header files and a static library for Python (default) ii libpython3-stdlib:amd64 3.6.7-1~18.04 amd64 interactive high-level object-oriented language (default python3 version) ii libpython3.6:amd64 3.6.9-1~18.04ubuntu1.4 amd64 Shared Python runtime library (version 3.6) ii libpython3.6-dev:amd64 3.6.9-1~18.04ubuntu1.4 amd64 Header files and a static library for Python (v3.6) ii libpython3.6-minimal:amd64 3.6.9-1~18.04ubuntu1.4 amd64 Minimal subset of the Python language (version 3.6) ii libpython3.6-stdlib:amd64 3.6.9-1~18.04ubuntu1.4 amd64 Interactive high-level object-oriented language (standard library, version 3.6) ii libquadmath0:amd64 8.4.0-1ubuntu1~18.04 amd64 GCC Quad-Precision Math Library ii libreadline5:amd64 5.2+dfsg-3build1 amd64 GNU readline and history libraries, run-time libraries ii libreadline7:amd64 7.0-3 amd64 GNU readline and history libraries, run-time libraries ii libroken18-heimdal:amd64 7.5.0+dfsg-1 amd64 Heimdal Kerberos - roken support library ii librtmp1:amd64 2.4+20151223.gitfa8646d.1-1 amd64 toolkit for RTMP streams (shared library) ii libsasl2-2:amd64 2.1.27~101-g0780600+dfsg-3ubuntu2.3 amd64 Cyrus SASL - authentication abstraction library ii libsasl2-modules:amd64 2.1.27~101-g0780600+dfsg-3ubuntu2.3 amd64 Cyrus SASL - pluggable authentication modules ii libsasl2-modules-db:amd64 2.1.27~101-g0780600+dfsg-3ubuntu2.3 amd64 Cyrus SASL - pluggable authentication modules (DB) ii libseccomp2:amd64 2.4.3-1ubuntu3.18.04.3 amd64 high level interface to Linux seccomp filter ii libselinux1:amd64 2.7-2build2 amd64 SELinux runtime shared libraries ii libsemanage-common 2.7-2build2 all Common files for SELinux policy management libraries ii libsemanage1:amd64 2.7-2build2 amd64 SELinux policy management library ii libsensors4:amd64 1:3.4.0-4 amd64 library to read temperature/voltage/fan sensors ii libsepol1:amd64 2.7-1 amd64 SELinux library for manipulating binary security policies ii libsigsegv2:amd64 2.12-1 amd64 Library for handling page faults in a portable way ii libslang2:amd64 2.3.1a-3ubuntu1 amd64 S-Lang programming library - runtime version ii libsmartcols1:amd64 2.31.1-0.4ubuntu3.7 amd64 smart column output alignment library ii libsqlite3-0:amd64 3.22.0-1ubuntu0.4 amd64 SQLite 3 shared library ii libss2:amd64 1.44.1-1ubuntu1.3 amd64 command-line interface parsing library ii libssl-dev:amd64 1.1.1-1ubuntu2.1~18.04.9 amd64 Secure Sockets Layer toolkit - development files ii libssl1.0.0:amd64 1.0.2n-1ubuntu5.6 amd64 Secure Sockets Layer toolkit - shared libraries ii libssl1.1:amd64 1.1.1-1ubuntu2.1~18.04.9 amd64 Secure Sockets Layer toolkit - shared libraries ii libstdc++-7-dev:amd64 7.5.0-3ubuntu1~18.04 amd64 GNU Standard C++ Library v3 (development files) ii libstdc++6:amd64 8.4.0-1ubuntu1~18.04 amd64 GNU Standard C++ Library v3 ii libsystemd0:amd64 237-3ubuntu10.42 amd64 systemd utility library ii libtasn1-6:amd64 4.13-2 amd64 Manage ASN.1 structures (runtime) ii libtext-charwidth-perl 0.04-7.1 amd64 get display widths of characters on the terminal ii libtext-iconv-perl 1.7-5build6 amd64 converts between character sets in Perl ii libtext-wrapi18n-perl 0.06-7.1 all internationalized substitute of Text::Wrap ii libtinfo5:amd64 6.1-1ubuntu1.18.04 amd64 shared low-level terminfo library for terminal handling ii libtsan0:amd64 8.4.0-1ubuntu1~18.04 amd64 ThreadSanitizer -- a Valgrind-based detector of data races (runtime) ii libubsan0:amd64 7.5.0-3ubuntu1~18.04 amd64 UBSan -- undefined behaviour sanitizer (runtime) ii libudev1:amd64 237-3ubuntu10.42 amd64 libudev shared library ii libunistring2:amd64 0.9.9-0ubuntu2 amd64 Unicode string library for C ii libunwind8:amd64 1.2.1-8 amd64 library to determine the call-chain of a program - runtime ii libupower-glib3:amd64 0.99.7-2ubuntu0.18.04.1 amd64 abstraction for power management - shared library ii libusb-1.0-0:amd64 2:1.0.21-2 amd64 userspace USB programming library ii libusbmuxd4:amd64 1.1.0~git20171206.c724e70f-0.1 amd64 USB multiplexor daemon for iPhone and iPod Touch devices - library ii libutempter0:amd64 1.1.6-3 amd64 privileged helper for utmp/wtmp updates (runtime) ii libuuid1:amd64 2.31.1-0.4ubuntu3.7 amd64 Universally Unique ID library ii libuv1:amd64 1.18.0-3 amd64 asynchronous event notification library - runtime library ii libwind0-heimdal:amd64 7.5.0+dfsg-1 amd64 Heimdal Kerberos - stringprep implementation ii libwrap0:amd64 7.6.q-27 amd64 Wietse Venema's TCP wrappers library ii libx11-6:amd64 2:1.6.4-3ubuntu0.3 amd64 X11 client-side library ii libx11-data 2:1.6.4-3ubuntu0.3 all X11 client-side library ii libxau6:amd64 1:1.0.8-1ubuntu1 amd64 X11 authorisation library ii libxcb1:amd64 1.13-2~ubuntu18.04 amd64 X C Binding ii libxdmcp6:amd64 1:1.1.2-3 amd64 X11 Display Manager Control Protocol library ii libxext6:amd64 2:1.3.3-1 amd64 X11 miscellaneous extension library ii libxml2:amd64 2.9.4+dfsg1-6.1ubuntu1.3 amd64 GNOME XML library ii libxmlsec1:amd64 1.2.25-1build1 amd64 XML security library ii libxmlsec1-openssl:amd64 1.2.25-1build1 amd64 Openssl engine for the XML security library ii libxmuu1:amd64 2:1.1.2-2 amd64 X11 miscellaneous micro-utility library ii libxslt1.1:amd64 1.1.29-5ubuntu0.2 amd64 XSLT 1.0 processing library - runtime library ii libxtables12:amd64 1.6.1-2ubuntu2 amd64 netfilter xtables library ii libyaml-0-2:amd64 0.1.7-2ubuntu3 amd64 Fast YAML 1.1 parser and emitter library ii libzstd1:amd64 1.3.3+dfsg-2ubuntu1.2 amd64 fast lossless compression algorithm ii linux-base 4.5ubuntu1.2 all Linux image base package ii linux-firmware 1.173.19 all Firmware for Linux kernel drivers ii linux-generic 4.15.0.140.127 amd64 Complete Generic Linux kernel and headers ii linux-headers-4.15.0-137 4.15.0-137.141 all Header files related to Linux kernel version 4.15.0 ii linux-headers-4.15.0-137-generic 4.15.0-137.141 amd64 Linux kernel headers for version 4.15.0 on 64 bit x86 SMP ii linux-headers-4.15.0-139 4.15.0-139.143 all Header files related to Linux kernel version 4.15.0 ii linux-headers-4.15.0-139-generic 4.15.0-139.143 amd64 Linux kernel headers for version 4.15.0 on 64 bit x86 SMP ii linux-headers-4.15.0-140 4.15.0-140.144 all Header files related to Linux kernel version 4.15.0 ii linux-headers-4.15.0-140-generic 4.15.0-140.144 amd64 Linux kernel headers for version 4.15.0 on 64 bit x86 SMP ii linux-headers-generic 4.15.0.140.127 amd64 Generic Linux kernel headers rc linux-image-4.15.0-101-generic 4.15.0-101.102 amd64 Signed kernel image generic rc linux-image-4.15.0-109-generic 4.15.0-109.110 amd64 Signed kernel image generic rc linux-image-4.15.0-111-generic 4.15.0-111.112 amd64 Signed kernel image generic rc linux-image-4.15.0-112-generic 4.15.0-112.113 amd64 Signed kernel image generic rc linux-image-4.15.0-126-generic 4.15.0-126.129 amd64 Signed kernel image generic rc linux-image-4.15.0-128-generic 4.15.0-128.131 amd64 Signed kernel image generic rc linux-image-4.15.0-135-generic 4.15.0-135.139 amd64 Signed kernel image generic rc linux-image-4.15.0-136-generic 4.15.0-136.140 amd64 Signed kernel image generic ii linux-image-4.15.0-137-generic 4.15.0-137.141 amd64 Signed kernel image generic ii linux-image-4.15.0-139-generic 4.15.0-139.143 amd64 Signed kernel image generic ii linux-image-4.15.0-140-generic 4.15.0-140.144 amd64 Signed kernel image generic rc linux-image-4.15.0-55-generic 4.15.0-55.60 amd64 Signed kernel image generic rc linux-image-4.15.0-58-generic 4.15.0-58.64 amd64 Signed kernel image generic rc linux-image-4.15.0-65-generic 4.15.0-65.74 amd64 Signed kernel image generic rc linux-image-4.15.0-66-generic 4.15.0-66.75 amd64 Signed kernel image generic rc linux-image-4.15.0-69-generic 4.15.0-69.78 amd64 Signed kernel image generic rc linux-image-4.15.0-70-generic 4.15.0-70.79 amd64 Signed kernel image generic rc linux-image-4.15.0-72-generic 4.15.0-72.81 amd64 Signed kernel image generic rc linux-image-4.15.0-76-generic 4.15.0-76.86 amd64 Signed kernel image generic rc linux-image-4.15.0-88-generic 4.15.0-88.88 amd64 Signed kernel image generic rc linux-image-4.15.0-96-generic 4.15.0-96.97 amd64 Signed kernel image generic rc linux-image-4.15.0-99-generic 4.15.0-99.100 amd64 Signed kernel image generic ii linux-image-generic 4.15.0.140.127 amd64 Generic Linux kernel image ii linux-libc-dev:amd64 4.15.0-140.144 amd64 Linux Kernel Headers for development rc linux-modules-4.15.0-101-generic 4.15.0-101.102 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-4.15.0-109-generic 4.15.0-109.110 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-4.15.0-111-generic 4.15.0-111.112 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-4.15.0-112-generic 4.15.0-112.113 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-4.15.0-126-generic 4.15.0-126.129 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-4.15.0-128-generic 4.15.0-128.131 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-4.15.0-135-generic 4.15.0-135.139 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-4.15.0-136-generic 4.15.0-136.140 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP ii linux-modules-4.15.0-137-generic 4.15.0-137.141 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP ii linux-modules-4.15.0-139-generic 4.15.0-139.143 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP ii linux-modules-4.15.0-140-generic 4.15.0-140.144 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-4.15.0-55-generic 4.15.0-55.60 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-4.15.0-58-generic 4.15.0-58.64 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-4.15.0-65-generic 4.15.0-65.74 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-4.15.0-66-generic 4.15.0-66.75 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-4.15.0-69-generic 4.15.0-69.78 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-4.15.0-70-generic 4.15.0-70.79 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-4.15.0-72-generic 4.15.0-72.81 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-4.15.0-76-generic 4.15.0-76.86 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-4.15.0-88-generic 4.15.0-88.88 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-4.15.0-96-generic 4.15.0-96.97 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-4.15.0-99-generic 4.15.0-99.100 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-extra-4.15.0-101-generic 4.15.0-101.102 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-extra-4.15.0-109-generic 4.15.0-109.110 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-extra-4.15.0-111-generic 4.15.0-111.112 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-extra-4.15.0-112-generic 4.15.0-112.113 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-extra-4.15.0-126-generic 4.15.0-126.129 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-extra-4.15.0-128-generic 4.15.0-128.131 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-extra-4.15.0-135-generic 4.15.0-135.139 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-extra-4.15.0-136-generic 4.15.0-136.140 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP ii linux-modules-extra-4.15.0-137-generic 4.15.0-137.141 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP ii linux-modules-extra-4.15.0-139-generic 4.15.0-139.143 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP ii linux-modules-extra-4.15.0-140-generic 4.15.0-140.144 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-extra-4.15.0-55-generic 4.15.0-55.60 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-extra-4.15.0-58-generic 4.15.0-58.64 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-extra-4.15.0-65-generic 4.15.0-65.74 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-extra-4.15.0-66-generic 4.15.0-66.75 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-extra-4.15.0-69-generic 4.15.0-69.78 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-extra-4.15.0-70-generic 4.15.0-70.79 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-extra-4.15.0-72-generic 4.15.0-72.81 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-extra-4.15.0-76-generic 4.15.0-76.86 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-extra-4.15.0-88-generic 4.15.0-88.88 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-extra-4.15.0-96-generic 4.15.0-96.97 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-extra-4.15.0-99-generic 4.15.0-99.100 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP ii locales 2.27-3ubuntu1.2 all GNU C Library: National Language (locale) data [support] ii login 1:4.5-1ubuntu2 amd64 system login tools ii logrotate 3.11.0-0.1ubuntu1 amd64 Log rotation utility ii lsb-base 9.20170808ubuntu1 all Linux Standard Base init script functionality ii lsb-release 9.20170808ubuntu1 all Linux Standard Base version reporting utility ii lshw 02.18-0.1ubuntu6.18.04.1 amd64 information about hardware configuration ii lsof 4.89+dfsg-0.1 amd64 Utility to list open files ii ltrace 0.7.3-6ubuntu1 amd64 Tracks runtime library calls in dynamically linked programs ii lvm2 2.02.176-4.1ubuntu3.18.04.3 amd64 Linux Logical Volume Manager ii lxcfs 3.0.3-0ubuntu1~18.04.2 amd64 FUSE based filesystem for LXC ii lxd 3.0.3-0ubuntu1~18.04.1 amd64 Container hypervisor based on LXC - daemon ii lxd-client 3.0.3-0ubuntu1~18.04.1 amd64 Container hypervisor based on LXC - client ii make 4.1-9.1ubuntu1 amd64 utility for directing compilation ii man-db 2.8.3-2ubuntu0.1 amd64 on-line manual pager ii manpages 4.15-1 all Manual pages about using a GNU/Linux system ii manpages-dev 4.15-1 all Manual pages about using GNU/Linux for development ii mawk 1.3.3-17ubuntu3 amd64 a pattern scanning and text processing language ii mdadm 4.1~rc1-3~ubuntu18.04.4 amd64 tool to administer Linux MD arrays (software RAID) ii mime-support 3.60ubuntu1 all MIME files 'mime.types' & 'mailcap', and support programs ii mlocate 0.26-2ubuntu3.1 amd64 quickly find files on the filesystem based on their name ii mount 2.31.1-0.4ubuntu3.7 amd64 tools for mounting and manipulating filesystems ii mtr-tiny 0.92-1 amd64 Full screen ncurses traceroute tool ii multiarch-support 2.27-3ubuntu1.2 amd64 Transitional package to ensure multiarch compatibility ii musl:amd64 1.1.19-1 amd64 standard C library ii musl-dev:amd64 1.1.19-1 amd64 standard C library development files ii musl-tools 1.1.19-1 amd64 standard C library tools ii nano 2.9.3-2 amd64 small, friendly text editor inspired by Pico ii ncurses-base 6.1-1ubuntu1.18.04 all basic terminal type definitions ii ncurses-bin 6.1-1ubuntu1.18.04 amd64 terminal-related programs and man pages ii ncurses-term 6.1-1ubuntu1.18.04 all additional terminal type definitions ii net-tools 1.60+git20161116.90da8a0-1ubuntu1 amd64 NET-3 networking toolkit ii netbase 5.4 all Basic TCP/IP networking system ii netcat-openbsd 1.187-1ubuntu0.1 amd64 TCP/IP swiss army knife ii netplan.io 0.97-0ubuntu1~18.04.1 amd64 YAML network configuration abstraction for various backends ii networkd-dispatcher 1.7-0ubuntu3.3 all Dispatcher service for systemd-networkd connection status changes ii nmap 7.60-1ubuntu5 amd64 The Network Mapper ii nplan 0.99-0ubuntu3~18.04.3 all YAML network configuration abstraction - transitional package ii ntfs-3g 1:2017.3.23-2ubuntu0.18.04.2 amd64 read/write NTFS driver for FUSE ii ntp 1:4.2.8p10+dfsg-5ubuntu7.3 amd64 Network Time Protocol daemon and utility programs ii open-iscsi 2.0.874-5ubuntu2.10 amd64 iSCSI initiator tools ii open-vm-tools 2:11.0.5-4ubuntu0.18.04.1 amd64 Open VMware Tools for virtual machines hosted on VMware (CLI) ii openssh-client 1:7.6p1-4ubuntu0.3 amd64 secure shell (SSH) client, for secure access to remote machines ii openssh-server 1:7.6p1-4ubuntu0.3 amd64 secure shell (SSH) server, for secure access from remote machines ii openssh-sftp-server 1:7.6p1-4ubuntu0.3 amd64 secure shell (SSH) sftp server module, for SFTP access from remote machines ii openssl 1.1.1-1ubuntu2.1~18.04.9 amd64 Secure Sockets Layer toolkit - cryptographic utility ii os-prober 1.74ubuntu1 amd64 utility to detect other OSes on a set of drives ii overlayroot 0.40ubuntu1.1 all use an overlayfs on top of a read-only root filesystem ii parted 3.2-20ubuntu0.2 amd64 disk partition manipulator ii passwd 1:4.5-1ubuntu2 amd64 change and administer password and group data ii pastebinit 1.5-2 all command-line pastebin client ii patch 2.7.6-2ubuntu1.1 amd64 Apply a diff file to an original ii pciutils 1:3.5.2-1ubuntu1.1 amd64 Linux PCI Utilities ii perl 5.26.1-6ubuntu0.5 amd64 Larry Wall's Practical Extraction and Report Language ii perl-base 5.26.1-6ubuntu0.5 amd64 minimal Perl system ii perl-modules-5.26 5.26.1-6ubuntu0.5 all Core Perl modules ii pigz 2.4-1 amd64 Parallel Implementation of GZip ii pinentry-curses 1.1.0-1 amd64 curses-based PIN or pass-phrase entry dialog for GnuPG ii pkg-config 0.29.1-0ubuntu2 amd64 manage compile and link flags for libraries ii plymouth 0.9.3-1ubuntu7.18.04.2 amd64 boot animation, logger and I/O multiplexer ii plymouth-theme-ubuntu-text 0.9.3-1ubuntu7.18.04.2 amd64 boot animation, logger and I/O multiplexer - ubuntu text theme ii policykit-1 0.105-20ubuntu0.18.04.5 amd64 framework for managing administrative policies and privileges ii pollinate 4.33-0ubuntu1~18.04.1 all seed the pseudo random number generator ii popularity-contest 1.66ubuntu1 all Vote for your favourite packages automatically ii powermgmt-base 1.33 all common utils for power management ii procps 2:3.3.12-3ubuntu1.2 amd64 /proc file system utilities ii psmisc 23.1-1ubuntu0.1 amd64 utilities that use the proc file system ii publicsuffix 20180223.1310-1 all accurate, machine-readable list of domain name suffixes ii python-apt-common 1.6.5ubuntu0.5 all Python interface to libapt-pkg (locales) ii python-pip-whl 9.0.1-2.3~ubuntu1.18.04.4 all Python package installer ii python3 3.6.7-1~18.04 amd64 interactive high-level object-oriented language (default python3 version) ii python3-apport 2.20.9-0ubuntu7.23 all Python 3 library for Apport crash report handling ii python3-apt 1.6.5ubuntu0.5 amd64 Python 3 interface to libapt-pkg ii python3-asn1crypto 0.24.0-1 all Fast ASN.1 parser and serializer (Python 3) ii python3-attr 17.4.0-2 all Attributes without boilerplate (Python 3) ii python3-automat 0.6.0-1 all Self-service finite-state machines for the programmer on the go ii python3-blinker 1.4+dfsg1-0.1 all fast, simple object-to-object and broadcast signaling library ii python3-certifi 2018.1.18-2 all root certificates for validating SSL certs and verifying TLS hosts (python3) ii python3-cffi-backend 1.11.5-1 amd64 Foreign Function Interface for Python 3 calling C code - runtime ii python3-chardet 3.0.4-1 all universal character encoding detector for Python3 ii python3-click 6.7-3 all Simple wrapper around optparse for powerful command line utilities - Python 3.x ii python3-colorama 0.3.7-1 all Cross-platform colored terminal text in Python - Python 3.x ii python3-commandnotfound 18.04.5 all Python 3 bindings for command-not-found. ii python3-configobj 5.0.6-2 all simple but powerful config file reader and writer for Python 3 ii python3-constantly 15.1.0-1 all Symbolic constants in Python ii python3-crypto 2.6.1-8ubuntu2 amd64 cryptographic algorithms and protocols for Python 3 ii python3-cryptography 2.1.4-1ubuntu1.4 amd64 Python library exposing cryptographic recipes and primitives (Python 3) ii python3-dbus 1.2.6-1 amd64 simple interprocess messaging system (Python 3 interface) ii python3-debconf 1.5.66ubuntu1 all interact with debconf from Python 3 ii python3-debian 0.1.32 all Python 3 modules to work with Debian-related data formats ii python3-dev 3.6.7-1~18.04 amd64 header files and a static library for Python (default) ii python3-distro-info 0.18ubuntu0.18.04.1 all information about distributions' releases (Python 3 module) ii python3-distupgrade 1:18.04.38 all manage release upgrades ii python3-distutils 3.6.9-1~18.04 all distutils package for Python 3.x ii python3-gdbm:amd64 3.6.9-1~18.04 amd64 GNU dbm database support for Python 3.x ii python3-gi 3.26.1-2ubuntu1 amd64 Python 3 bindings for gobject-introspection libraries ii python3-httplib2 0.9.2+dfsg-1ubuntu0.2 all comprehensive HTTP client library written for Python3 ii python3-hyperlink 17.3.1-2 all Immutable, Pythonic, correct URLs. ii python3-idna 2.6-1 all Python IDNA2008 (RFC 5891) handling (Python 3) ii python3-incremental 16.10.1-3 all Library for versioning Python projects. ii python3-jinja2 2.10-1ubuntu0.18.04.1 all small but fast and easy to use stand-alone template engine ii python3-json-pointer 1.10-1 all resolve JSON pointers - Python 3.x ii python3-jsonpatch 1.19+really1.16-1fakesync1 all library to apply JSON patches - Python 3.x ii python3-jsonschema 2.6.0-2 all An(other) implementation of JSON Schema (Draft 3 and 4) - Python 3.x ii python3-jwt 1.5.3+ds1-1 all Python 3 implementation of JSON Web Token ii python3-keyring 10.6.0-1 all store and access your passwords safely - Python 3 version of the package ii python3-keyrings.alt 3.0-1 all alternate backend implementations for python3-keyring ii python3-lib2to3 3.6.9-1~18.04 all Interactive high-level object-oriented language (2to3, version 3.6) ii python3-markupsafe 1.0-1build1 amd64 HTML/XHTML/XML string library for Python 3 ii python3-minimal 3.6.7-1~18.04 amd64 minimal subset of the Python language (default python3 version) ii python3-netifaces 0.10.4-0.1build4 amd64 portable network interface information - Python 3.x ii python3-newt:amd64 0.52.20-1ubuntu1 amd64 NEWT module for Python3 ii python3-oauthlib 2.0.6-1 all generic, spec-compliant implementation of OAuth for Python3 ii python3-openssl 17.5.0-1ubuntu1 all Python 3 wrapper around the OpenSSL library ii python3-pam 0.4.2-13.2ubuntu4 amd64 Python interface to the PAM library ii python3-pip 9.0.1-2.3~ubuntu1.18.04.4 all Python package installer ii python3-pkg-resources 39.0.1-2 all Package Discovery and Resource Access using pkg_resources ii python3-problem-report 2.20.9-0ubuntu7.23 all Python 3 library to handle problem reports ii python3-pyasn1 0.4.2-3 all ASN.1 library for Python (Python 3 module) ii python3-pyasn1-modules 0.2.1-0.2 all Collection of protocols modules written in ASN.1 language (Python 3) ii python3-requests 2.18.4-2ubuntu0.1 all elegant and simple HTTP library for Python3, built for human beings ii python3-requests-unixsocket 0.1.5-3 all Use requests to talk HTTP via a UNIX domain socket - Python 3.x ii python3-secretstorage 2.3.1-2 all Python module for storing secrets - Python 3.x version ii python3-serial 3.4-2 all pyserial - module encapsulating access for the serial port ii python3-service-identity 16.0.0-2 all Service identity verification for pyOpenSSL (Python 3 module) ii python3-setuptools 39.0.1-2 all Python3 Distutils Enhancements ii python3-six 1.11.0-2 all Python 2 and 3 compatibility library (Python 3 interface) ii python3-software-properties 0.96.24.32.14 all manage the repositories that you install software from ii python3-systemd 234-1build1 amd64 Python 3 bindings for systemd ii python3-twisted 17.9.0-2ubuntu0.1 all Event-based framework for internet applications ii python3-twisted-bin:amd64 17.9.0-2ubuntu0.1 amd64 Event-based framework for internet applications ii python3-update-manager 1:18.04.11.13 all python 3.x module for update-manager ii python3-urllib3 1.22-1ubuntu0.18.04.2 all HTTP library with thread-safe connection pooling for Python3 ii python3-wheel 0.30.0-0.2 all built-package format for Python ii python3-xdg 0.25-4ubuntu1.1 all Python 3 library to access freedesktop.org standards ii python3-yaml 3.12-1build2 amd64 YAML parser and emitter for Python3 ii python3-zope.interface 4.3.2-1build2 amd64 Interfaces for Python3 ii python3.6 3.6.9-1~18.04ubuntu1.4 amd64 Interactive high-level object-oriented language (version 3.6) ii python3.6-dev 3.6.9-1~18.04ubuntu1.4 amd64 Header files and a static library for Python (v3.6) ii python3.6-minimal 3.6.9-1~18.04ubuntu1.4 amd64 Minimal subset of the Python language (version 3.6) ii readline-common 7.0-3 all GNU readline and history libraries, common files ii rsync 3.1.2-2.1ubuntu1.1 amd64 fast, versatile, remote (and local) file-copying tool ii rsyslog 8.32.0-1ubuntu4 amd64 reliable system and kernel logging daemon ii run-one 1.17-0ubuntu1 all run just one instance of a command and its args at a time ii runc 1.0.0~rc10-0ubuntu1~18.04.2 amd64 Open Container Project - runtime ii screen 4.6.2-1ubuntu1.1 amd64 terminal multiplexer with VT100/ANSI terminal emulation ii sed 4.4-2 amd64 GNU stream editor for filtering/transforming text ii sensible-utils 0.0.12 all Utilities for sensible alternative selection ii shared-mime-info 1.9-2 amd64 FreeDesktop.org shared MIME database and spec ii slurm 0.4.3-2build2 amd64 Realtime network interface monitor ii snapd 2.48.3+18.04 amd64 Daemon and tooling that enable snap packages ii sntp 1:4.2.8p10+dfsg-5ubuntu7.3 amd64 Network Time Protocol - sntp client ii software-properties-common 0.96.24.32.14 all manage the repositories that you install software from (common) ii sosreport 3.9.1-1ubuntu0.18.04.2 amd64 Set of tools to gather troubleshooting data from a system ii squashfs-tools 1:4.3-6ubuntu0.18.04.1 amd64 Tool to create and append to squashfs filesystems ii ssh-import-id 5.7-0ubuntu1.1 all securely retrieve an SSH public key and install it locally ii strace 4.21-1ubuntu1 amd64 System call tracer ii sudo 1.8.21p2-3ubuntu1.4 amd64 Provide limited super user privileges to specific users ii sysstat 11.6.1-1ubuntu0.1 amd64 system performance tools for Linux ii systemd 237-3ubuntu10.42 amd64 system and service manager ii systemd-sysv 237-3ubuntu10.42 amd64 system and service manager - SysV links ii sysvinit-utils 2.88dsf-59.10ubuntu1 amd64 System-V-like utilities ii tar 1.29b-2ubuntu0.2 amd64 GNU version of the tar archiving utility ii tcpdump 4.9.3-0ubuntu0.18.04.1 amd64 command-line network traffic analyzer ii telnet 0.17-41 amd64 basic telnet client ii thermald 1.7.0-5ubuntu5 amd64 Thermal monitoring and controlling daemon ii time 1.7-25.1build1 amd64 GNU time program for measuring CPU resource usage ii tmux 2.6-3ubuntu0.2 amd64 terminal multiplexer ii traceroute 1:2.1.0-2 amd64 Traces the route taken by packets over an IPv4/IPv6 network ii tzdata 2021a-0ubuntu0.18.04 all time zone and daylight-saving time data ii ubuntu-advantage-tools 17 all management tools for Ubuntu Advantage ii ubuntu-fan 0.12.10 all Ubuntu FAN network support enablement ii ubuntu-keyring 2018.09.18.1~18.04.0 all GnuPG keys of the Ubuntu archive ii ubuntu-minimal 1.417.4 amd64 Minimal core of Ubuntu ii ubuntu-release-upgrader-core 1:18.04.38 all manage release upgrades ii ubuntu-server 1.417.4 amd64 The Ubuntu Server system ii ubuntu-standard 1.417.4 amd64 The Ubuntu standard system ii ucf 3.0038 all Update Configuration File(s): preserve user changes to config files ii udev 237-3ubuntu10.42 amd64 /dev/ and hotplug management daemon ii ufw 0.36-0ubuntu0.18.04.1 all program for managing a Netfilter firewall ii uidmap 1:4.5-1ubuntu2 amd64 programs to help use subuids ii unattended-upgrades 1.1ubuntu1.18.04.14 all automatic installation of security upgrades ii update-manager-core 1:18.04.11.13 all manage release upgrades ii update-notifier-common 3.192.1.7 all Files shared between update-notifier and other packages ii upower 0.99.7-2ubuntu0.18.04.1 amd64 abstraction for power management ii ureadahead 0.100.0-21 amd64 Read required files in advance ii usbmuxd 1.1.0-2ubuntu0.1 amd64 USB multiplexor daemon for iPhone and iPod Touch devices ii usbutils 1:007-4build1 amd64 Linux USB utilities ii util-linux 2.31.1-0.4ubuntu3.7 amd64 miscellaneous system utilities ii uuid-runtime 2.31.1-0.4ubuntu3.7 amd64 runtime components for the Universally Unique ID library ii vim 2:8.0.1453-1ubuntu1.4 amd64 Vi IMproved - enhanced vi editor ii vim-common 2:8.0.1453-1ubuntu1.4 all Vi IMproved - Common files ii vim-runtime 2:8.0.1453-1ubuntu1.4 all Vi IMproved - Runtime files ii vim-tiny 2:8.0.1453-1ubuntu1.4 amd64 Vi IMproved - enhanced vi editor - compact version ii wget 1.19.4-1ubuntu2.2 amd64 retrieves files from the web ii whiptail 0.52.20-1ubuntu1 amd64 Displays user-friendly dialog boxes from shell scripts ii wireless-regdb 2020.11.20-0ubuntu1~18.04.1 all wireless regulatory database ii xauth 1:1.0.10-1 amd64 X authentication utility ii xdelta3 3.0.11-dfsg-1ubuntu1 amd64 Diff utility which works with binary files ii xdg-user-dirs 0.17-1ubuntu1 amd64 tool to manage well known user directories ii xfsprogs 4.9.0+nmu1ubuntu2 amd64 Utilities for managing the XFS filesystem ii xkb-data 2.23.1-1ubuntu1.18.04.1 all X Keyboard Extension (XKB) configuration data ii xxd 2:8.0.1453-1ubuntu1.4 amd64 tool to make (or reverse) a hex dump ii xz-utils 5.2.2-1.3 amd64 XZ-format compression utilities ii zerofree 1.0.4-1 amd64 zero free blocks from ext2, ext3 and ext4 file-systems ii zlib1g:amd64 1:1.2.11.dfsg-0ubuntu2 amd64 compression library - runtime jc-1.17.3/tests/fixtures/ubuntu-18.04/dpkg-l.json000066400000000000000000003722231415226333200212670ustar00rootroot00000000000000[{"codes":"ii","name":"accountsservice","version":"0.6.45-1ubuntu1.3","architecture":"amd64","description":"query and manipulate user account information","desired":"install","status":"installed"},{"codes":"ii","name":"acl","version":"2.2.52-3build1","architecture":"amd64","description":"Access control list utilities","desired":"install","status":"installed"},{"codes":"ii","name":"acpi","version":"1.7-1.1","architecture":"amd64","description":"displays information on ACPI devices","desired":"install","status":"installed"},{"codes":"ii","name":"acpid","version":"1:2.0.28-1ubuntu1","architecture":"amd64","description":"Advanced Configuration and Power Interface event daemon","desired":"install","status":"installed"},{"codes":"ii","name":"adduser","version":"3.116ubuntu1","architecture":"all","description":"add and remove users and groups","desired":"install","status":"installed"},{"codes":"ii","name":"amd64-microcode","version":"3.20191021.1+really3","architecture":"amd64","description":"Processor microcode firmware for AMD CPUs","desired":"install","status":"installed"},{"codes":"ii","name":"apparmor","version":"2.12-4ubuntu5.1","architecture":"amd64","description":"user-space parser utility for AppArmor","desired":"install","status":"installed"},{"codes":"ii","name":"apport","version":"2.20.9-0ubuntu7.23","architecture":"all","description":"automatically generate crash reports for debugging","desired":"install","status":"installed"},{"codes":"ii","name":"apport-symptoms","version":"0.20","architecture":"all","description":"symptom scripts for apport","desired":"install","status":"installed"},{"codes":"ii","name":"apt","version":"1.6.12ubuntu0.2","architecture":"amd64","description":"commandline package manager","desired":"install","status":"installed"},{"codes":"ii","name":"apt-utils","version":"1.6.12ubuntu0.2","architecture":"amd64","description":"package management related utility programs","desired":"install","status":"installed"},{"codes":"ii","name":"at","version":"3.1.20-3.1ubuntu2","architecture":"amd64","description":"Delayed job execution and batch processing","desired":"install","status":"installed"},{"codes":"ii","name":"base-files","version":"10.1ubuntu2.9","architecture":"amd64","description":"Debian base system miscellaneous files","desired":"install","status":"installed"},{"codes":"ii","name":"base-passwd","version":"3.5.44","architecture":"amd64","description":"Debian base system master password and group files","desired":"install","status":"installed"},{"codes":"ii","name":"bash","version":"4.4.18-2ubuntu1.2","architecture":"amd64","description":"GNU Bourne Again SHell","desired":"install","status":"installed"},{"codes":"ii","name":"bash-completion","version":"1:2.8-1ubuntu1","architecture":"all","description":"programmable completion for the bash shell","desired":"install","status":"installed"},{"codes":"ii","name":"bc","version":"1.07.1-2","architecture":"amd64","description":"GNU bc arbitrary precision calculator language","desired":"install","status":"installed"},{"codes":"ii","name":"bcache-tools","version":"1.0.8-2build1","architecture":"amd64","description":"bcache userspace tools","desired":"install","status":"installed"},{"codes":"ii","name":"bind9-host","version":"1:9.11.3+dfsg-1ubunt","architecture":"amd64","description":"DNS lookup utility (deprecated)","desired":"install","status":"installed"},{"codes":"ii","name":"binutils","version":"2.30-21ubuntu1~18.04","architecture":"amd64","description":"GNU assembler, linker and binary utilities","desired":"install","status":"installed"},{"codes":"ii","name":"binutils-common:amd64","version":"2.30-21ubuntu1~18.04","architecture":"amd64","description":"Common files for the GNU assembler, linker and binary utilities","desired":"install","status":"installed"},{"codes":"ii","name":"binutils-x86-64-linux-gnu","version":"2.30-21ubuntu1~18.04","architecture":"amd64","description":"GNU binary utilities, for x86-64-linux-gnu target","desired":"install","status":"installed"},{"codes":"ii","name":"bluez","version":"5.48-0ubuntu3.4","architecture":"amd64","description":"Bluetooth tools and daemons","desired":"install","status":"installed"},{"codes":"ii","name":"bridge-utils","version":"1.5-15ubuntu1","architecture":"amd64","description":"Utilities for configuring the Linux Ethernet bridge","desired":"install","status":"installed"},{"codes":"ii","name":"bsdmainutils","version":"11.1.2ubuntu1","architecture":"amd64","description":"collection of more utilities from FreeBSD","desired":"install","status":"installed"},{"codes":"ii","name":"bsdutils","version":"1:2.31.1-0.4ubuntu3.","architecture":"amd64","description":"basic utilities from 4.4BSD-Lite","desired":"install","status":"installed"},{"codes":"ii","name":"btrfs-progs","version":"4.15.1-1build1","architecture":"amd64","description":"Checksumming Copy on Write Filesystem utilities","desired":"install","status":"installed"},{"codes":"ii","name":"btrfs-tools","version":"4.15.1-1build1","architecture":"amd64","description":"transitional dummy package","desired":"install","status":"installed"},{"codes":"ii","name":"build-essential","version":"12.4ubuntu1","architecture":"amd64","description":"Informational list of build-essential packages","desired":"install","status":"installed"},{"codes":"ii","name":"busybox-initramfs","version":"1:1.27.2-2ubuntu3.3","architecture":"amd64","description":"Standalone shell setup for initramfs","desired":"install","status":"installed"},{"codes":"ii","name":"busybox-static","version":"1:1.27.2-2ubuntu3.3","architecture":"amd64","description":"Standalone rescue shell with tons of builtin utilities","desired":"install","status":"installed"},{"codes":"ii","name":"byobu","version":"5.125-0ubuntu1","architecture":"all","description":"text window manager, shell multiplexer, integrated DevOps environme","desired":"install","status":"installed"},{"codes":"ii","name":"bzip2","version":"1.0.6-8.1ubuntu0.2","architecture":"amd64","description":"high-quality block-sorting file compressor - utilities","desired":"install","status":"installed"},{"codes":"ii","name":"ca-certificates","version":"20210119~18.04.1","architecture":"all","description":"Common CA certificates","desired":"install","status":"installed"},{"codes":"ii","name":"cgroupfs-mount","version":"1.4","architecture":"all","description":"Light-weight package to set up cgroupfs mounts","desired":"install","status":"installed"},{"codes":"ii","name":"cloud-guest-utils","version":"0.30-0ubuntu5","architecture":"all","description":"cloud guest utilities","desired":"install","status":"installed"},{"codes":"ii","name":"cloud-init","version":"20.2-45-g5f7825e2-0u","architecture":"all","description":"Init scripts for cloud instances","desired":"install","status":"installed"},{"codes":"ii","name":"cloud-initramfs-copymods","version":"0.40ubuntu1.1","architecture":"all","description":"copy initramfs modules into root filesystem for later use","desired":"install","status":"installed"},{"codes":"ii","name":"cloud-initramfs-dyn-netconf","version":"0.40ubuntu1.1","architecture":"all","description":"write a network interface file in /run for BOOTIF","desired":"install","status":"installed"},{"codes":"ii","name":"command-not-found","version":"18.04.5","architecture":"all","description":"Suggest installation of packages in interactive bash sessions","desired":"install","status":"installed"},{"codes":"ii","name":"command-not-found-data","version":"18.04.5","architecture":"amd64","description":"Set of data files for command-not-found.","desired":"install","status":"installed"},{"codes":"ii","name":"console-setup","version":"1.178ubuntu2.9","architecture":"all","description":"console font and keymap setup program","desired":"install","status":"installed"},{"codes":"ii","name":"console-setup-linux","version":"1.178ubuntu2.9","architecture":"all","description":"Linux specific part of console-setup","desired":"install","status":"installed"},{"codes":"ii","name":"containerd","version":"1.3.3-0ubuntu1~18.04","architecture":"amd64","description":"daemon to control runC","desired":"install","status":"installed"},{"codes":"ii","name":"coreutils","version":"8.28-1ubuntu1","architecture":"amd64","description":"GNU core utilities","desired":"install","status":"installed"},{"codes":"ii","name":"cpio","version":"2.12+dfsg-6ubuntu0.1","architecture":"amd64","description":"GNU cpio -- a program to manage archives of files","desired":"install","status":"installed"},{"codes":"ii","name":"cpp","version":"4:7.4.0-1ubuntu2.3","architecture":"amd64","description":"GNU C preprocessor (cpp)","desired":"install","status":"installed"},{"codes":"ii","name":"cpp-7","version":"7.5.0-3ubuntu1~18.04","architecture":"amd64","description":"GNU C preprocessor","desired":"install","status":"installed"},{"codes":"ii","name":"crda","version":"3.18-1build1","architecture":"amd64","description":"wireless Central Regulatory Domain Agent","desired":"install","status":"installed"},{"codes":"ii","name":"cron","version":"3.0pl1-128.1ubuntu1","architecture":"amd64","description":"process scheduling daemon","desired":"install","status":"installed"},{"codes":"ii","name":"cryptsetup","version":"2:2.0.2-1ubuntu1.1","architecture":"amd64","description":"disk encryption support - startup scripts","desired":"install","status":"installed"},{"codes":"ii","name":"cryptsetup-bin","version":"2:2.0.2-1ubuntu1.1","architecture":"amd64","description":"disk encryption support - command line tools","desired":"install","status":"installed"},{"codes":"ii","name":"curl","version":"7.58.0-2ubuntu3.13","architecture":"amd64","description":"command line tool for transferring data with URL syntax","desired":"install","status":"installed"},{"codes":"ii","name":"dash","version":"0.5.8-2.10","architecture":"amd64","description":"POSIX-compliant shell","desired":"install","status":"installed"},{"codes":"ii","name":"dbus","version":"1.12.2-1ubuntu1.2","architecture":"amd64","description":"simple interprocess messaging system (daemon and utilities)","desired":"install","status":"installed"},{"codes":"ii","name":"debconf","version":"1.5.66ubuntu1","architecture":"all","description":"Debian configuration management system","desired":"install","status":"installed"},{"codes":"ii","name":"debconf-i18n","version":"1.5.66ubuntu1","architecture":"all","description":"full internationalization support for debconf","desired":"install","status":"installed"},{"codes":"ii","name":"debianutils","version":"4.8.4","architecture":"amd64","description":"Miscellaneous utilities specific to Debian","desired":"install","status":"installed"},{"codes":"ii","name":"dh-python","version":"3.20180325ubuntu2","architecture":"all","description":"Debian helper tools for packaging Python libraries and applications","desired":"install","status":"installed"},{"codes":"ii","name":"diffutils","version":"1:3.6-1","architecture":"amd64","description":"File comparison utilities","desired":"install","status":"installed"},{"codes":"ii","name":"dirmngr","version":"2.2.4-1ubuntu1.3","architecture":"amd64","description":"GNU privacy guard - network certificate management service","desired":"install","status":"installed"},{"codes":"ii","name":"distro-info-data","version":"0.37ubuntu0.9","architecture":"all","description":"information about the distributions' releases (data files)","desired":"install","status":"installed"},{"codes":"ii","name":"dmeventd","version":"2:1.02.145-4.1ubuntu","architecture":"amd64","description":"Linux Kernel Device Mapper event daemon","desired":"install","status":"installed"},{"codes":"ii","name":"dmidecode","version":"3.1-1ubuntu0.1","architecture":"amd64","description":"SMBIOS/DMI table decoder","desired":"install","status":"installed"},{"codes":"ii","name":"dmsetup","version":"2:1.02.145-4.1ubuntu","architecture":"amd64","description":"Linux Kernel Device Mapper userspace library","desired":"install","status":"installed"},{"codes":"ii","name":"dns-root-data","version":"2018013001","architecture":"all","description":"DNS root data including root zone and DNSSEC key","desired":"install","status":"installed"},{"codes":"ii","name":"dnsmasq-base","version":"2.79-1ubuntu0.3","architecture":"amd64","description":"Small caching DNS proxy and DHCP/TFTP server","desired":"install","status":"installed"},{"codes":"ii","name":"dnsutils","version":"1:9.11.3+dfsg-1ubunt","architecture":"amd64","description":"Clients provided with BIND","desired":"install","status":"installed"},{"codes":"ii","name":"docker","version":"1.5-1build1","architecture":"amd64","description":"System tray for KDE3/GNOME2 docklet applications","desired":"install","status":"installed"},{"codes":"ii","name":"docker.io","version":"19.03.6-0ubuntu1~18.","architecture":"amd64","description":"Linux container runtime","desired":"install","status":"installed"},{"codes":"ii","name":"dosfstools","version":"4.1-1","architecture":"amd64","description":"utilities for making and checking MS-DOS FAT filesystems","desired":"install","status":"installed"},{"codes":"ii","name":"dpkg","version":"1.19.0.5ubuntu2.3","architecture":"amd64","description":"Debian package management system","desired":"install","status":"installed"},{"codes":"ii","name":"dpkg-dev","version":"1.19.0.5ubuntu2.3","architecture":"all","description":"Debian package development tools","desired":"install","status":"installed"},{"codes":"ii","name":"e2fsprogs","version":"1.44.1-1ubuntu1.3","architecture":"amd64","description":"ext2/ext3/ext4 file system utilities","desired":"install","status":"installed"},{"codes":"ii","name":"eatmydata","version":"105-6","architecture":"all","description":"Library and utilities designed to disable fsync and friends","desired":"install","status":"installed"},{"codes":"ii","name":"ebtables","version":"2.0.10.4-3.5ubuntu2.","architecture":"amd64","description":"Ethernet bridge frame table administration","desired":"install","status":"installed"},{"codes":"ii","name":"ed","version":"1.10-2.1","architecture":"amd64","description":"classic UNIX line editor","desired":"install","status":"installed"},{"codes":"ii","name":"eject","version":"2.1.5+deb1+cvs200811","architecture":"amd64","description":"ejects CDs and operates CD-Changers under Linux","desired":"install","status":"installed"},{"codes":"ii","name":"ethtool","version":"1:4.15-0ubuntu1","architecture":"amd64","description":"display or change Ethernet device settings","desired":"install","status":"installed"},{"codes":"ii","name":"fakeroot","version":"1.22-2ubuntu1","architecture":"amd64","description":"tool for simulating superuser privileges","desired":"install","status":"installed"},{"codes":"ii","name":"fdisk","version":"2.31.1-0.4ubuntu3.7","architecture":"amd64","description":"collection of partitioning utilities","desired":"install","status":"installed"},{"codes":"ii","name":"file","version":"1:5.32-2ubuntu0.4","architecture":"amd64","description":"Recognize the type of data in a file using \"magic\" numbers","desired":"install","status":"installed"},{"codes":"ii","name":"findutils","version":"4.6.0+git+20170828-2","architecture":"amd64","description":"utilities for finding files--find, xargs","desired":"install","status":"installed"},{"codes":"ii","name":"fonts-ubuntu-console","version":"0.83-2","architecture":"all","description":"console version of the Ubuntu Mono font","desired":"install","status":"installed"},{"codes":"ii","name":"friendly-recovery","version":"0.2.38ubuntu1.1","architecture":"all","description":"Make recovery boot mode more user-friendly","desired":"install","status":"installed"},{"codes":"ii","name":"ftp","version":"0.17-34","architecture":"amd64","description":"classical file transfer client","desired":"install","status":"installed"},{"codes":"ii","name":"fuse","version":"2.9.7-1ubuntu1","architecture":"amd64","description":"Filesystem in Userspace","desired":"install","status":"installed"},{"codes":"ii","name":"g++","version":"4:7.4.0-1ubuntu2.3","architecture":"amd64","description":"GNU C++ compiler","desired":"install","status":"installed"},{"codes":"ii","name":"g++-7","version":"7.5.0-3ubuntu1~18.04","architecture":"amd64","description":"GNU C++ compiler","desired":"install","status":"installed"},{"codes":"ii","name":"gawk","version":"1:4.1.4+dfsg-1build1","architecture":"amd64","description":"GNU awk, a pattern scanning and processing language","desired":"install","status":"installed"},{"codes":"ii","name":"gcc","version":"4:7.4.0-1ubuntu2.3","architecture":"amd64","description":"GNU C compiler","desired":"install","status":"installed"},{"codes":"ii","name":"gcc-7","version":"7.5.0-3ubuntu1~18.04","architecture":"amd64","description":"GNU C compiler","desired":"install","status":"installed"},{"codes":"ii","name":"gcc-7-base:amd64","version":"7.5.0-3ubuntu1~18.04","architecture":"amd64","description":"GCC, the GNU Compiler Collection (base package)","desired":"install","status":"installed"},{"codes":"ii","name":"gcc-8-base:amd64","version":"8.4.0-1ubuntu1~18.04","architecture":"amd64","description":"GCC, the GNU Compiler Collection (base package)","desired":"install","status":"installed"},{"codes":"ii","name":"gdisk","version":"1.0.3-1","architecture":"amd64","description":"GPT fdisk text-mode partitioning tool","desired":"install","status":"installed"},{"codes":"ii","name":"geoip-database","version":"20180315-1","architecture":"all","description":"IP lookup command line tools that use the GeoIP library (country da","desired":"install","status":"installed"},{"codes":"ii","name":"gettext-base","version":"0.19.8.1-6ubuntu0.3","architecture":"amd64","description":"GNU Internationalization utilities for the base system","desired":"install","status":"installed"},{"codes":"ii","name":"gir1.2-glib-2.0:amd64","version":"1.56.1-1","architecture":"amd64","description":"Introspection data for GLib, GObject, Gio and GModule","desired":"install","status":"installed"},{"codes":"ii","name":"git","version":"1:2.17.1-1ubuntu0.8","architecture":"amd64","description":"fast, scalable, distributed revision control system","desired":"install","status":"installed"},{"codes":"ii","name":"git-man","version":"1:2.17.1-1ubuntu0.8","architecture":"all","description":"fast, scalable, distributed revision control system (manual pages)","desired":"install","status":"installed"},{"codes":"ii","name":"gnupg","version":"2.2.4-1ubuntu1.3","architecture":"amd64","description":"GNU privacy guard - a free PGP replacement","desired":"install","status":"installed"},{"codes":"ii","name":"gnupg-l10n","version":"2.2.4-1ubuntu1.3","architecture":"all","description":"GNU privacy guard - localization files","desired":"install","status":"installed"},{"codes":"ii","name":"gnupg-utils","version":"2.2.4-1ubuntu1.3","architecture":"amd64","description":"GNU privacy guard - utility programs","desired":"install","status":"installed"},{"codes":"ii","name":"gpg","version":"2.2.4-1ubuntu1.3","architecture":"amd64","description":"GNU Privacy Guard -- minimalist public key operations","desired":"install","status":"installed"},{"codes":"ii","name":"gpg-agent","version":"2.2.4-1ubuntu1.3","architecture":"amd64","description":"GNU privacy guard - cryptographic agent","desired":"install","status":"installed"},{"codes":"ii","name":"gpg-wks-client","version":"2.2.4-1ubuntu1.3","architecture":"amd64","description":"GNU privacy guard - Web Key Service client","desired":"install","status":"installed"},{"codes":"ii","name":"gpg-wks-server","version":"2.2.4-1ubuntu1.3","architecture":"amd64","description":"GNU privacy guard - Web Key Service server","desired":"install","status":"installed"},{"codes":"ii","name":"gpgconf","version":"2.2.4-1ubuntu1.3","architecture":"amd64","description":"GNU privacy guard - core configuration utilities","desired":"install","status":"installed"},{"codes":"ii","name":"gpgsm","version":"2.2.4-1ubuntu1.3","architecture":"amd64","description":"GNU privacy guard - S/MIME version","desired":"install","status":"installed"},{"codes":"ii","name":"gpgv","version":"2.2.4-1ubuntu1.3","architecture":"amd64","description":"GNU privacy guard - signature verification tool","desired":"install","status":"installed"},{"codes":"ii","name":"grep","version":"3.1-2build1","architecture":"amd64","description":"GNU grep, egrep and fgrep","desired":"install","status":"installed"},{"codes":"ii","name":"groff-base","version":"1.22.3-10","architecture":"amd64","description":"GNU troff text-formatting system (base system components)","desired":"install","status":"installed"},{"codes":"ii","name":"grub-common","version":"2.02-2ubuntu8.17","architecture":"amd64","description":"GRand Unified Bootloader (common files)","desired":"install","status":"installed"},{"codes":"ii","name":"grub-gfxpayload-lists","version":"0.7","architecture":"amd64","description":"GRUB gfxpayload blacklist","desired":"install","status":"installed"},{"codes":"ii","name":"grub-legacy-ec2","version":"1:1","architecture":"all","description":"Handles update-grub for ec2 instances","desired":"install","status":"installed"},{"codes":"ii","name":"grub-pc","version":"2.02-2ubuntu8.17","architecture":"amd64","description":"GRand Unified Bootloader, version 2 (PC/BIOS version)","desired":"install","status":"installed"},{"codes":"ii","name":"grub-pc-bin","version":"2.02-2ubuntu8.17","architecture":"amd64","description":"GRand Unified Bootloader, version 2 (PC/BIOS binaries)","desired":"install","status":"installed"},{"codes":"ii","name":"grub2-common","version":"2.02-2ubuntu8.17","architecture":"amd64","description":"GRand Unified Bootloader (common files for version 2)","desired":"install","status":"installed"},{"codes":"ii","name":"gzip","version":"1.6-5ubuntu1","architecture":"amd64","description":"GNU compression utilities","desired":"install","status":"installed"},{"codes":"ii","name":"hdparm","version":"9.54+ds-1","architecture":"amd64","description":"tune hard disk parameters for high performance","desired":"install","status":"installed"},{"codes":"ii","name":"hostname","version":"3.20","architecture":"amd64","description":"utility to set/show the host name or domain name","desired":"install","status":"installed"},{"codes":"ii","name":"htop","version":"2.1.0-3","architecture":"amd64","description":"interactive processes viewer","desired":"install","status":"installed"},{"codes":"ii","name":"iftop","version":"1.0~pre4-4","architecture":"amd64","description":"displays bandwidth usage information on an network interface","desired":"install","status":"installed"},{"codes":"ii","name":"info","version":"6.5.0.dfsg.1-2","architecture":"amd64","description":"Standalone GNU Info documentation browser","desired":"install","status":"installed"},{"codes":"ii","name":"init","version":"1.51","architecture":"amd64","description":"metapackage ensuring an init system is installed","desired":"install","status":"installed"},{"codes":"ii","name":"init-system-helpers","version":"1.51","architecture":"all","description":"helper tools for all init systems","desired":"install","status":"installed"},{"codes":"ii","name":"initramfs-tools","version":"0.130ubuntu3.9","architecture":"all","description":"generic modular initramfs generator (automation)","desired":"install","status":"installed"},{"codes":"ii","name":"initramfs-tools-bin","version":"0.130ubuntu3.9","architecture":"amd64","description":"binaries used by initramfs-tools","desired":"install","status":"installed"},{"codes":"ii","name":"initramfs-tools-core","version":"0.130ubuntu3.9","architecture":"all","description":"generic modular initramfs generator (core tools)","desired":"install","status":"installed"},{"codes":"ii","name":"install-info","version":"6.5.0.dfsg.1-2","architecture":"amd64","description":"Manage installed documentation in info format","desired":"install","status":"installed"},{"codes":"ii","name":"intel-microcode","version":"3.20201110.0ubuntu0.","architecture":"amd64","description":"Processor microcode firmware for Intel CPUs","desired":"install","status":"installed"},{"codes":"ii","name":"iproute2","version":"4.15.0-2ubuntu1.2","architecture":"amd64","description":"networking and traffic control tools","desired":"install","status":"installed"},{"codes":"ii","name":"iptables","version":"1.6.1-2ubuntu2","architecture":"amd64","description":"administration tools for packet filtering and NAT","desired":"install","status":"installed"},{"codes":"ii","name":"iputils-ping","version":"3:20161105-1ubuntu3","architecture":"amd64","description":"Tools to test the reachability of network hosts","desired":"install","status":"installed"},{"codes":"ii","name":"iputils-tracepath","version":"3:20161105-1ubuntu3","architecture":"amd64","description":"Tools to trace the network path to a remote host","desired":"install","status":"installed"},{"codes":"ii","name":"irqbalance","version":"1.3.0-0.1ubuntu0.18.","architecture":"amd64","description":"Daemon to balance interrupts for SMP systems","desired":"install","status":"installed"},{"codes":"ii","name":"isc-dhcp-client","version":"4.3.5-3ubuntu7.1","architecture":"amd64","description":"DHCP client for automatically obtaining an IP address","desired":"install","status":"installed"},{"codes":"ii","name":"isc-dhcp-common","version":"4.3.5-3ubuntu7.1","architecture":"amd64","description":"common manpages relevant to all of the isc-dhcp packages","desired":"install","status":"installed"},{"codes":"ii","name":"iso-codes","version":"3.79-1","architecture":"all","description":"ISO language, territory, currency, script codes and their translati","desired":"install","status":"installed"},{"codes":"ii","name":"iucode-tool","version":"2.3.1-1","architecture":"amd64","description":"Intel processor microcode tool","desired":"install","status":"installed"},{"codes":"ii","name":"iw","version":"4.14-0.1","architecture":"amd64","description":"tool for configuring Linux wireless devices","desired":"install","status":"installed"},{"codes":"ii","name":"jq","version":"1.5+dfsg-2","architecture":"amd64","description":"lightweight and flexible command-line JSON processor","desired":"install","status":"installed"},{"codes":"ii","name":"kbd","version":"2.0.4-2ubuntu1","architecture":"amd64","description":"Linux console font and keytable utilities","desired":"install","status":"installed"},{"codes":"ii","name":"keyboard-configuration","version":"1.178ubuntu2.9","architecture":"all","description":"system-wide keyboard preferences","desired":"install","status":"installed"},{"codes":"ii","name":"klibc-utils","version":"2.0.4-9ubuntu2","architecture":"amd64","description":"small utilities built with klibc for early boot","desired":"install","status":"installed"},{"codes":"ii","name":"kmod","version":"24-1ubuntu3.5","architecture":"amd64","description":"tools for managing Linux kernel modules","desired":"install","status":"installed"},{"codes":"ii","name":"krb5-locales","version":"1.16-2ubuntu0.2","architecture":"all","description":"internationalization support for MIT Kerberos","desired":"install","status":"installed"},{"codes":"ii","name":"landscape-common","version":"18.01-0ubuntu3.5","architecture":"amd64","description":"Landscape administration system client - Common files","desired":"install","status":"installed"},{"codes":"ii","name":"language-pack-fr","version":"1:18.04+20200702","architecture":"all","description":"translation updates for language French","desired":"install","status":"installed"},{"codes":"ii","name":"language-pack-fr-base","version":"1:18.04+20180712","architecture":"all","description":"translations for language French","desired":"install","status":"installed"},{"codes":"ii","name":"language-selector-common","version":"0.188.3","architecture":"all","description":"Language selector for Ubuntu","desired":"install","status":"installed"},{"codes":"ii","name":"less","version":"487-0.1","architecture":"amd64","description":"pager program similar to more","desired":"install","status":"installed"},{"codes":"ii","name":"libaccountsservice0:amd64","version":"0.6.45-1ubuntu1.3","architecture":"amd64","description":"query and manipulate user account information - shared libraries","desired":"install","status":"installed"},{"codes":"ii","name":"libacl1:amd64","version":"2.2.52-3build1","architecture":"amd64","description":"Access control list shared library","desired":"install","status":"installed"},{"codes":"ii","name":"libalgorithm-diff-perl","version":"1.19.03-1","architecture":"all","description":"module to find differences between files","desired":"install","status":"installed"},{"codes":"ii","name":"libalgorithm-diff-xs-perl","version":"0.04-5","architecture":"amd64","description":"module to find differences between files (XS accelerated)","desired":"install","status":"installed"},{"codes":"ii","name":"libalgorithm-merge-perl","version":"0.08-3","architecture":"all","description":"Perl module for three-way merge of textual data","desired":"install","status":"installed"},{"codes":"ii","name":"libapparmor1:amd64","version":"2.12-4ubuntu5.1","architecture":"amd64","description":"changehat AppArmor library","desired":"install","status":"installed"},{"codes":"ii","name":"libapt-inst2.0:amd64","version":"1.6.12ubuntu0.2","architecture":"amd64","description":"deb package format runtime library","desired":"install","status":"installed"},{"codes":"ii","name":"libapt-pkg5.0:amd64","version":"1.6.12ubuntu0.2","architecture":"amd64","description":"package management runtime library","desired":"install","status":"installed"},{"codes":"ii","name":"libargon2-0:amd64","version":"0~20161029-1.1","architecture":"amd64","description":"memory-hard hashing function - runtime library","desired":"install","status":"installed"},{"codes":"ii","name":"libasan4:amd64","version":"7.5.0-3ubuntu1~18.04","architecture":"amd64","description":"AddressSanitizer -- a fast memory error detector","desired":"install","status":"installed"},{"codes":"ii","name":"libasn1-8-heimdal:amd64","version":"7.5.0+dfsg-1","architecture":"amd64","description":"Heimdal Kerberos - ASN.1 library","desired":"install","status":"installed"},{"codes":"ii","name":"libassuan0:amd64","version":"2.5.1-2","architecture":"amd64","description":"IPC library for the GnuPG components","desired":"install","status":"installed"},{"codes":"ii","name":"libatm1:amd64","version":"1:2.5.1-2build1","architecture":"amd64","description":"shared library for ATM (Asynchronous Transfer Mode)","desired":"install","status":"installed"},{"codes":"ii","name":"libatomic1:amd64","version":"8.4.0-1ubuntu1~18.04","architecture":"amd64","description":"support library providing __atomic built-in functions","desired":"install","status":"installed"},{"codes":"ii","name":"libattr1:amd64","version":"1:2.4.47-2build1","architecture":"amd64","description":"Extended attribute shared library","desired":"install","status":"installed"},{"codes":"ii","name":"libaudit-common","version":"1:2.8.2-1ubuntu1","architecture":"all","description":"Dynamic library for security auditing - common files","desired":"install","status":"installed"},{"codes":"ii","name":"libaudit1:amd64","version":"1:2.8.2-1ubuntu1","architecture":"amd64","description":"Dynamic library for security auditing","desired":"install","status":"installed"},{"codes":"ii","name":"libbind9-160:amd64","version":"1:9.11.3+dfsg-1ubunt","architecture":"amd64","description":"BIND9 Shared Library used by BIND","desired":"install","status":"installed"},{"codes":"ii","name":"libbinutils:amd64","version":"2.30-21ubuntu1~18.04","architecture":"amd64","description":"GNU binary utilities (private shared library)","desired":"install","status":"installed"},{"codes":"ii","name":"libblas3:amd64","version":"3.7.1-4ubuntu1","architecture":"amd64","description":"Basic Linear Algebra Reference implementations, shared library","desired":"install","status":"installed"},{"codes":"ii","name":"libblkid1:amd64","version":"2.31.1-0.4ubuntu3.7","architecture":"amd64","description":"block device ID library","desired":"install","status":"installed"},{"codes":"ii","name":"libbsd0:amd64","version":"0.8.7-1ubuntu0.1","architecture":"amd64","description":"utility functions from BSD systems - shared library","desired":"install","status":"installed"},{"codes":"ii","name":"libbz2-1.0:amd64","version":"1.0.6-8.1ubuntu0.2","architecture":"amd64","description":"high-quality block-sorting file compressor library - runtime","desired":"install","status":"installed"},{"codes":"ii","name":"libc-bin","version":"2.27-3ubuntu1.2","architecture":"amd64","description":"GNU C Library: Binaries","desired":"install","status":"installed"},{"codes":"ii","name":"libc-dev-bin","version":"2.27-3ubuntu1.2","architecture":"amd64","description":"GNU C Library: Development binaries","desired":"install","status":"installed"},{"codes":"ii","name":"libc6:amd64","version":"2.27-3ubuntu1.2","architecture":"amd64","description":"GNU C Library: Shared libraries","desired":"install","status":"installed"},{"codes":"ii","name":"libc6-dev:amd64","version":"2.27-3ubuntu1.2","architecture":"amd64","description":"GNU C Library: Development Libraries and Header Files","desired":"install","status":"installed"},{"codes":"ii","name":"libcap-ng0:amd64","version":"0.7.7-3.1","architecture":"amd64","description":"An alternate POSIX capabilities library","desired":"install","status":"installed"},{"codes":"ii","name":"libcap2:amd64","version":"1:2.25-1.2","architecture":"amd64","description":"POSIX 1003.1e capabilities (library)","desired":"install","status":"installed"},{"codes":"ii","name":"libcap2-bin","version":"1:2.25-1.2","architecture":"amd64","description":"POSIX 1003.1e capabilities (utilities)","desired":"install","status":"installed"},{"codes":"ii","name":"libcc1-0:amd64","version":"8.4.0-1ubuntu1~18.04","architecture":"amd64","description":"GCC cc1 plugin for GDB","desired":"install","status":"installed"},{"codes":"ii","name":"libcilkrts5:amd64","version":"7.5.0-3ubuntu1~18.04","architecture":"amd64","description":"Intel Cilk Plus language extensions (runtime)","desired":"install","status":"installed"},{"codes":"ii","name":"libcom-err2:amd64","version":"1.44.1-1ubuntu1.3","architecture":"amd64","description":"common error description library","desired":"install","status":"installed"},{"codes":"ii","name":"libcryptsetup12:amd64","version":"2:2.0.2-1ubuntu1.1","architecture":"amd64","description":"disk encryption support - shared library","desired":"install","status":"installed"},{"codes":"ii","name":"libcurl3-gnutls:amd64","version":"7.58.0-2ubuntu3.13","architecture":"amd64","description":"easy-to-use client-side URL transfer library (GnuTLS flavour)","desired":"install","status":"installed"},{"codes":"ii","name":"libcurl4:amd64","version":"7.58.0-2ubuntu3.13","architecture":"amd64","description":"easy-to-use client-side URL transfer library (OpenSSL flavour)","desired":"install","status":"installed"},{"codes":"ii","name":"libdb5.3:amd64","version":"5.3.28-13.1ubuntu1.1","architecture":"amd64","description":"Berkeley v5.3 Database Libraries [runtime]","desired":"install","status":"installed"},{"codes":"ii","name":"libdbus-1-3:amd64","version":"1.12.2-1ubuntu1.2","architecture":"amd64","description":"simple interprocess messaging system (library)","desired":"install","status":"installed"},{"codes":"ii","name":"libdbus-glib-1-2:amd64","version":"0.110-2","architecture":"amd64","description":"deprecated library for D-Bus IPC","desired":"install","status":"installed"},{"codes":"ii","name":"libdebconfclient0:amd64","version":"0.213ubuntu1","architecture":"amd64","description":"Debian Configuration Management System (C-implementation library)","desired":"install","status":"installed"},{"codes":"ii","name":"libdevmapper-event1.02.1:amd64","version":"2:1.02.145-4.1ubuntu","architecture":"amd64","description":"Linux Kernel Device Mapper event support library","desired":"install","status":"installed"},{"codes":"ii","name":"libdevmapper1.02.1:amd64","version":"2:1.02.145-4.1ubuntu","architecture":"amd64","description":"Linux Kernel Device Mapper userspace library","desired":"install","status":"installed"},{"codes":"ii","name":"libdns-export1100","version":"1:9.11.3+dfsg-1ubunt","architecture":"amd64","description":"Exported DNS Shared Library","desired":"install","status":"installed"},{"codes":"ii","name":"libdns1100:amd64","version":"1:9.11.3+dfsg-1ubunt","architecture":"amd64","description":"DNS Shared Library used by BIND","desired":"install","status":"installed"},{"codes":"ii","name":"libdpkg-perl","version":"1.19.0.5ubuntu2.3","architecture":"all","description":"Dpkg perl modules","desired":"install","status":"installed"},{"codes":"ii","name":"libdrm-common","version":"2.4.101-2~18.04.1","architecture":"all","description":"Userspace interface to kernel DRM services -- common files","desired":"install","status":"installed"},{"codes":"ii","name":"libdrm2:amd64","version":"2.4.101-2~18.04.1","architecture":"amd64","description":"Userspace interface to kernel DRM services -- runtime","desired":"install","status":"installed"},{"codes":"ii","name":"libdumbnet1:amd64","version":"1.12-7build1","architecture":"amd64","description":"dumb, portable networking library -- shared library","desired":"install","status":"installed"},{"codes":"ii","name":"libeatmydata1:amd64","version":"105-6","architecture":"amd64","description":"Library and utilities to disable fsync and friends - shared library","desired":"install","status":"installed"},{"codes":"ii","name":"libedit2:amd64","version":"3.1-20170329-1","architecture":"amd64","description":"BSD editline and history libraries","desired":"install","status":"installed"},{"codes":"ii","name":"libelf1:amd64","version":"0.170-0.4ubuntu0.1","architecture":"amd64","description":"library to read and write ELF files","desired":"install","status":"installed"},{"codes":"ii","name":"liberror-perl","version":"0.17025-1","architecture":"all","description":"Perl module for error/exception handling in an OO-ish way","desired":"install","status":"installed"},{"codes":"ii","name":"libestr0:amd64","version":"0.1.10-2.1","architecture":"amd64","description":"Helper functions for handling strings (lib)","desired":"install","status":"installed"},{"codes":"ii","name":"libevent-2.1-6:amd64","version":"2.1.8-stable-4build1","architecture":"amd64","description":"Asynchronous event notification library","desired":"install","status":"installed"},{"codes":"ii","name":"libexpat1:amd64","version":"2.2.5-3ubuntu0.2","architecture":"amd64","description":"XML parsing C library - runtime library","desired":"install","status":"installed"},{"codes":"ii","name":"libexpat1-dev:amd64","version":"2.2.5-3ubuntu0.2","architecture":"amd64","description":"XML parsing C library - development kit","desired":"install","status":"installed"},{"codes":"ii","name":"libext2fs2:amd64","version":"1.44.1-1ubuntu1.3","architecture":"amd64","description":"ext2/ext3/ext4 file system libraries","desired":"install","status":"installed"},{"codes":"ii","name":"libfakeroot:amd64","version":"1.22-2ubuntu1","architecture":"amd64","description":"tool for simulating superuser privileges - shared libraries","desired":"install","status":"installed"},{"codes":"ii","name":"libfastjson4:amd64","version":"0.99.8-2","architecture":"amd64","description":"fast json library for C","desired":"install","status":"installed"},{"codes":"ii","name":"libfdisk1:amd64","version":"2.31.1-0.4ubuntu3.7","architecture":"amd64","description":"fdisk partitioning library","desired":"install","status":"installed"},{"codes":"ii","name":"libffi6:amd64","version":"3.2.1-8","architecture":"amd64","description":"Foreign Function Interface library runtime","desired":"install","status":"installed"},{"codes":"ii","name":"libfile-fcntllock-perl","version":"0.22-3build2","architecture":"amd64","description":"Perl module for file locking with fcntl(2)","desired":"install","status":"installed"},{"codes":"ii","name":"libfreetype6:amd64","version":"2.8.1-2ubuntu2.1","architecture":"amd64","description":"FreeType 2 font engine, shared library files","desired":"install","status":"installed"},{"codes":"ii","name":"libfribidi0:amd64","version":"0.19.7-2","architecture":"amd64","description":"Free Implementation of the Unicode BiDi algorithm","desired":"install","status":"installed"},{"codes":"ii","name":"libfuse2:amd64","version":"2.9.7-1ubuntu1","architecture":"amd64","description":"Filesystem in Userspace (library)","desired":"install","status":"installed"},{"codes":"ii","name":"libgcc-7-dev:amd64","version":"7.5.0-3ubuntu1~18.04","architecture":"amd64","description":"GCC support library (development files)","desired":"install","status":"installed"},{"codes":"ii","name":"libgcc1:amd64","version":"1:8.4.0-1ubuntu1~18.","architecture":"amd64","description":"GCC support library","desired":"install","status":"installed"},{"codes":"ii","name":"libgcrypt20:amd64","version":"1.8.1-4ubuntu1.2","architecture":"amd64","description":"LGPL Crypto library - runtime library","desired":"install","status":"installed"},{"codes":"ii","name":"libgdbm-compat4:amd64","version":"1.14.1-6","architecture":"amd64","description":"GNU dbm database routines (legacy support runtime version)","desired":"install","status":"installed"},{"codes":"ii","name":"libgdbm5:amd64","version":"1.14.1-6","architecture":"amd64","description":"GNU dbm database routines (runtime version)","desired":"install","status":"installed"},{"codes":"ii","name":"libgeoip1:amd64","version":"1.6.12-1","architecture":"amd64","description":"non-DNS IP-to-country resolver library","desired":"install","status":"installed"},{"codes":"ii","name":"libgirepository-1.0-1:amd64","version":"1.56.1-1","architecture":"amd64","description":"Library for handling GObject introspection data (runtime library)","desired":"install","status":"installed"},{"codes":"ii","name":"libglib2.0-0:amd64","version":"2.56.4-0ubuntu0.18.0","architecture":"amd64","description":"GLib library of C routines","desired":"install","status":"installed"},{"codes":"ii","name":"libglib2.0-data","version":"2.56.4-0ubuntu0.18.0","architecture":"all","description":"Common files for GLib library","desired":"install","status":"installed"},{"codes":"ii","name":"libgmp10:amd64","version":"2:6.1.2+dfsg-2","architecture":"amd64","description":"Multiprecision arithmetic library","desired":"install","status":"installed"},{"codes":"ii","name":"libgnutls30:amd64","version":"3.5.18-1ubuntu1.4","architecture":"amd64","description":"GNU TLS library - main runtime library","desired":"install","status":"installed"},{"codes":"ii","name":"libgomp1:amd64","version":"8.4.0-1ubuntu1~18.04","architecture":"amd64","description":"GCC OpenMP (GOMP) support library","desired":"install","status":"installed"},{"codes":"ii","name":"libgpg-error0:amd64","version":"1.27-6","architecture":"amd64","description":"library for common error values and messages in GnuPG components","desired":"install","status":"installed"},{"codes":"ii","name":"libgpm2:amd64","version":"1.20.7-5","architecture":"amd64","description":"General Purpose Mouse - shared library","desired":"install","status":"installed"},{"codes":"ii","name":"libgssapi-krb5-2:amd64","version":"1.16-2ubuntu0.2","architecture":"amd64","description":"MIT Kerberos runtime libraries - krb5 GSS-API Mechanism","desired":"install","status":"installed"},{"codes":"ii","name":"libgssapi3-heimdal:amd64","version":"7.5.0+dfsg-1","architecture":"amd64","description":"Heimdal Kerberos - GSSAPI support library","desired":"install","status":"installed"},{"codes":"ii","name":"libgudev-1.0-0:amd64","version":"1:232-2","architecture":"amd64","description":"GObject-based wrapper library for libudev","desired":"install","status":"installed"},{"codes":"ii","name":"libhcrypto4-heimdal:amd64","version":"7.5.0+dfsg-1","architecture":"amd64","description":"Heimdal Kerberos - crypto library","desired":"install","status":"installed"},{"codes":"ii","name":"libheimbase1-heimdal:amd64","version":"7.5.0+dfsg-1","architecture":"amd64","description":"Heimdal Kerberos - Base library","desired":"install","status":"installed"},{"codes":"ii","name":"libheimntlm0-heimdal:amd64","version":"7.5.0+dfsg-1","architecture":"amd64","description":"Heimdal Kerberos - NTLM support library","desired":"install","status":"installed"},{"codes":"ii","name":"libhogweed4:amd64","version":"3.4-1","architecture":"amd64","description":"low level cryptographic library (public-key cryptos)","desired":"install","status":"installed"},{"codes":"ii","name":"libhx509-5-heimdal:amd64","version":"7.5.0+dfsg-1","architecture":"amd64","description":"Heimdal Kerberos - X509 support library","desired":"install","status":"installed"},{"codes":"ii","name":"libicu60:amd64","version":"60.2-3ubuntu3.1","architecture":"amd64","description":"International Components for Unicode","desired":"install","status":"installed"},{"codes":"ii","name":"libidn11:amd64","version":"1.33-2.1ubuntu1.2","architecture":"amd64","description":"GNU Libidn library, implementation of IETF IDN specifications","desired":"install","status":"installed"},{"codes":"ii","name":"libidn2-0:amd64","version":"2.0.4-1.1ubuntu0.2","architecture":"amd64","description":"Internationalized domain names (IDNA2008/TR46) library","desired":"install","status":"installed"},{"codes":"ii","name":"libimobiledevice6:amd64","version":"1.2.1~git20171128.5a","architecture":"amd64","description":"Library for communicating with the iPhone and iPod Touch","desired":"install","status":"installed"},{"codes":"ii","name":"libip4tc0:amd64","version":"1.6.1-2ubuntu2","architecture":"amd64","description":"netfilter libip4tc library","desired":"install","status":"installed"},{"codes":"ii","name":"libip6tc0:amd64","version":"1.6.1-2ubuntu2","architecture":"amd64","description":"netfilter libip6tc library","desired":"install","status":"installed"},{"codes":"ii","name":"libiptc0:amd64","version":"1.6.1-2ubuntu2","architecture":"amd64","description":"netfilter libiptc library","desired":"install","status":"installed"},{"codes":"ii","name":"libirs160:amd64","version":"1:9.11.3+dfsg-1ubunt","architecture":"amd64","description":"DNS Shared Library used by BIND","desired":"install","status":"installed"},{"codes":"ii","name":"libisc-export169:amd64","version":"1:9.11.3+dfsg-1ubunt","architecture":"amd64","description":"Exported ISC Shared Library","desired":"install","status":"installed"},{"codes":"ii","name":"libisc169:amd64","version":"1:9.11.3+dfsg-1ubunt","architecture":"amd64","description":"ISC Shared Library used by BIND","desired":"install","status":"installed"},{"codes":"ii","name":"libisccc160:amd64","version":"1:9.11.3+dfsg-1ubunt","architecture":"amd64","description":"Command Channel Library used by BIND","desired":"install","status":"installed"},{"codes":"ii","name":"libisccfg160:amd64","version":"1:9.11.3+dfsg-1ubunt","architecture":"amd64","description":"Config File Handling Library used by BIND","desired":"install","status":"installed"},{"codes":"ii","name":"libisl19:amd64","version":"0.19-1","architecture":"amd64","description":"manipulating sets and relations of integer points bounded by linear","desired":"install","status":"installed"},{"codes":"ii","name":"libisns0:amd64","version":"0.97-2build1","architecture":"amd64","description":"Internet Storage Name Service - shared libraries","desired":"install","status":"installed"},{"codes":"ii","name":"libitm1:amd64","version":"8.4.0-1ubuntu1~18.04","architecture":"amd64","description":"GNU Transactional Memory Library","desired":"install","status":"installed"},{"codes":"ii","name":"libjq1:amd64","version":"1.5+dfsg-2","architecture":"amd64","description":"lightweight and flexible command-line JSON processor - shared libra","desired":"install","status":"installed"},{"codes":"ii","name":"libjson-c3:amd64","version":"0.12.1-1.3ubuntu0.3","architecture":"amd64","description":"JSON manipulation library - shared library","desired":"install","status":"installed"},{"codes":"ii","name":"libk5crypto3:amd64","version":"1.16-2ubuntu0.2","architecture":"amd64","description":"MIT Kerberos runtime libraries - Crypto Library","desired":"install","status":"installed"},{"codes":"ii","name":"libkeyutils1:amd64","version":"1.5.9-9.2ubuntu2","architecture":"amd64","description":"Linux Key Management Utilities (library)","desired":"install","status":"installed"},{"codes":"ii","name":"libklibc","version":"2.0.4-9ubuntu2","architecture":"amd64","description":"minimal libc subset for use with initramfs","desired":"install","status":"installed"},{"codes":"ii","name":"libkmod2:amd64","version":"24-1ubuntu3.5","architecture":"amd64","description":"libkmod shared library","desired":"install","status":"installed"},{"codes":"ii","name":"libkrb5-26-heimdal:amd64","version":"7.5.0+dfsg-1","architecture":"amd64","description":"Heimdal Kerberos - libraries","desired":"install","status":"installed"},{"codes":"ii","name":"libkrb5-3:amd64","version":"1.16-2ubuntu0.2","architecture":"amd64","description":"MIT Kerberos runtime libraries","desired":"install","status":"installed"},{"codes":"ii","name":"libkrb5support0:amd64","version":"1.16-2ubuntu0.2","architecture":"amd64","description":"MIT Kerberos runtime libraries - Support library","desired":"install","status":"installed"},{"codes":"ii","name":"libksba8:amd64","version":"1.3.5-2","architecture":"amd64","description":"X.509 and CMS support library","desired":"install","status":"installed"},{"codes":"ii","name":"libldap-2.4-2:amd64","version":"2.4.45+dfsg-1ubuntu1","architecture":"amd64","description":"OpenLDAP libraries","desired":"install","status":"installed"},{"codes":"ii","name":"libldap-common","version":"2.4.45+dfsg-1ubuntu1","architecture":"all","description":"OpenLDAP common files for libraries","desired":"install","status":"installed"},{"codes":"ii","name":"liblinear3:amd64","version":"2.1.0+dfsg-2","architecture":"amd64","description":"Library for Large Linear Classification","desired":"install","status":"installed"},{"codes":"ii","name":"liblocale-gettext-perl","version":"1.07-3build2","architecture":"amd64","description":"module using libc functions for internationalization in Perl","desired":"install","status":"installed"},{"codes":"ii","name":"liblsan0:amd64","version":"8.4.0-1ubuntu1~18.04","architecture":"amd64","description":"LeakSanitizer -- a memory leak detector (runtime)","desired":"install","status":"installed"},{"codes":"ii","name":"liblua5.3-0:amd64","version":"5.3.3-1ubuntu0.18.04","architecture":"amd64","description":"Shared library for the Lua interpreter version 5.3","desired":"install","status":"installed"},{"codes":"ii","name":"liblvm2app2.2:amd64","version":"2.02.176-4.1ubuntu3.","architecture":"amd64","description":"LVM2 application library","desired":"install","status":"installed"},{"codes":"ii","name":"liblvm2cmd2.02:amd64","version":"2.02.176-4.1ubuntu3.","architecture":"amd64","description":"LVM2 command library","desired":"install","status":"installed"},{"codes":"ii","name":"liblwres160:amd64","version":"1:9.11.3+dfsg-1ubunt","architecture":"amd64","description":"Lightweight Resolver Library used by BIND","desired":"install","status":"installed"},{"codes":"ii","name":"liblxc-common","version":"3.0.3-0ubuntu1~18.04","architecture":"amd64","description":"Linux Containers userspace tools (common tools)","desired":"install","status":"installed"},{"codes":"ii","name":"liblxc1","version":"3.0.3-0ubuntu1~18.04","architecture":"amd64","description":"Linux Containers userspace tools (library)","desired":"install","status":"installed"},{"codes":"ii","name":"liblz4-1:amd64","version":"0.0~r131-2ubuntu3","architecture":"amd64","description":"Fast LZ compression algorithm library - runtime","desired":"install","status":"installed"},{"codes":"ii","name":"liblzma5:amd64","version":"5.2.2-1.3","architecture":"amd64","description":"XZ-format compression library","desired":"install","status":"installed"},{"codes":"ii","name":"liblzo2-2:amd64","version":"2.08-1.2","architecture":"amd64","description":"data compression library","desired":"install","status":"installed"},{"codes":"ii","name":"libmagic-mgc","version":"1:5.32-2ubuntu0.4","architecture":"amd64","description":"File type determination library using \"magic\" numbers (compiled mag","desired":"install","status":"installed"},{"codes":"ii","name":"libmagic1:amd64","version":"1:5.32-2ubuntu0.4","architecture":"amd64","description":"Recognize the type of data in a file using \"magic\" numbers - librar","desired":"install","status":"installed"},{"codes":"ii","name":"libmnl0:amd64","version":"1.0.4-2","architecture":"amd64","description":"minimalistic Netlink communication library","desired":"install","status":"installed"},{"codes":"ii","name":"libmount1:amd64","version":"2.31.1-0.4ubuntu3.7","architecture":"amd64","description":"device mounting library","desired":"install","status":"installed"},{"codes":"ii","name":"libmpc3:amd64","version":"1.1.0-1","architecture":"amd64","description":"multiple precision complex floating-point library","desired":"install","status":"installed"},{"codes":"ii","name":"libmpdec2:amd64","version":"2.4.2-1ubuntu1","architecture":"amd64","description":"library for decimal floating point arithmetic (runtime library)","desired":"install","status":"installed"},{"codes":"ii","name":"libmpfr6:amd64","version":"4.0.1-1","architecture":"amd64","description":"multiple precision floating-point computation","desired":"install","status":"installed"},{"codes":"ii","name":"libmpx2:amd64","version":"8.4.0-1ubuntu1~18.04","architecture":"amd64","description":"Intel memory protection extensions (runtime)","desired":"install","status":"installed"},{"codes":"ii","name":"libmspack0:amd64","version":"0.6-3ubuntu0.3","architecture":"amd64","description":"library for Microsoft compression formats (shared library)","desired":"install","status":"installed"},{"codes":"ii","name":"libncurses5:amd64","version":"6.1-1ubuntu1.18.04","architecture":"amd64","description":"shared libraries for terminal handling","desired":"install","status":"installed"},{"codes":"ii","name":"libncursesw5:amd64","version":"6.1-1ubuntu1.18.04","architecture":"amd64","description":"shared libraries for terminal handling (wide character support)","desired":"install","status":"installed"},{"codes":"ii","name":"libnetfilter-conntrack3:amd64","version":"1.0.6-2","architecture":"amd64","description":"Netfilter netlink-conntrack library","desired":"install","status":"installed"},{"codes":"ii","name":"libnettle6:amd64","version":"3.4-1","architecture":"amd64","description":"low level cryptographic library (symmetric and one-way cryptos)","desired":"install","status":"installed"},{"codes":"ii","name":"libnewt0.52:amd64","version":"0.52.20-1ubuntu1","architecture":"amd64","description":"Not Erik's Windowing Toolkit - text mode windowing with slang","desired":"install","status":"installed"},{"codes":"ii","name":"libnfnetlink0:amd64","version":"1.0.1-3","architecture":"amd64","description":"Netfilter netlink library","desired":"install","status":"installed"},{"codes":"ii","name":"libnghttp2-14:amd64","version":"1.30.0-1ubuntu1","architecture":"amd64","description":"library implementing HTTP/2 protocol (shared library)","desired":"install","status":"installed"},{"codes":"ii","name":"libnih1:amd64","version":"1.0.3-6ubuntu2","architecture":"amd64","description":"NIH Utility Library","desired":"install","status":"installed"},{"codes":"ii","name":"libnl-3-200:amd64","version":"3.2.29-0ubuntu3","architecture":"amd64","description":"library for dealing with netlink sockets","desired":"install","status":"installed"},{"codes":"ii","name":"libnl-genl-3-200:amd64","version":"3.2.29-0ubuntu3","architecture":"amd64","description":"library for dealing with netlink sockets - generic netlink","desired":"install","status":"installed"},{"codes":"ii","name":"libnpth0:amd64","version":"1.5-3","architecture":"amd64","description":"replacement for GNU Pth using system threads","desired":"install","status":"installed"},{"codes":"ii","name":"libnss-systemd:amd64","version":"237-3ubuntu10.42","architecture":"amd64","description":"nss module providing dynamic user and group name resolution","desired":"install","status":"installed"},{"codes":"ii","name":"libntfs-3g88","version":"1:2017.3.23-2ubuntu0","architecture":"amd64","description":"read/write NTFS driver for FUSE (runtime library)","desired":"install","status":"installed"},{"codes":"ii","name":"libnuma1:amd64","version":"2.0.11-2.1ubuntu0.1","architecture":"amd64","description":"Libraries for controlling NUMA policy","desired":"install","status":"installed"},{"codes":"ii","name":"libonig4:amd64","version":"6.7.0-1","architecture":"amd64","description":"regular expressions library","desired":"install","status":"installed"},{"codes":"ii","name":"libopts25:amd64","version":"1:5.18.12-4","architecture":"amd64","description":"automated option processing library based on autogen","desired":"install","status":"installed"},{"codes":"ii","name":"libp11-kit0:amd64","version":"0.23.9-2ubuntu0.1","architecture":"amd64","description":"library for loading and coordinating access to PKCS#11 modules - ru","desired":"install","status":"installed"},{"codes":"ii","name":"libpam-cap:amd64","version":"1:2.25-1.2","architecture":"amd64","description":"POSIX 1003.1e capabilities (PAM module)","desired":"install","status":"installed"},{"codes":"ii","name":"libpam-modules:amd64","version":"1.1.8-3.6ubuntu2.18.","architecture":"amd64","description":"Pluggable Authentication Modules for PAM","desired":"install","status":"installed"},{"codes":"ii","name":"libpam-modules-bin","version":"1.1.8-3.6ubuntu2.18.","architecture":"amd64","description":"Pluggable Authentication Modules for PAM - helper binaries","desired":"install","status":"installed"},{"codes":"ii","name":"libpam-runtime","version":"1.1.8-3.6ubuntu2.18.","architecture":"all","description":"Runtime support for the PAM library","desired":"install","status":"installed"},{"codes":"ii","name":"libpam-systemd:amd64","version":"237-3ubuntu10.42","architecture":"amd64","description":"system and service manager - PAM module","desired":"install","status":"installed"},{"codes":"ii","name":"libpam0g:amd64","version":"1.1.8-3.6ubuntu2.18.","architecture":"amd64","description":"Pluggable Authentication Modules library","desired":"install","status":"installed"},{"codes":"ii","name":"libparted2:amd64","version":"3.2-20ubuntu0.2","architecture":"amd64","description":"disk partition manipulator - shared library","desired":"install","status":"installed"},{"codes":"ii","name":"libpcap0.8:amd64","version":"1.8.1-6ubuntu1.18.04","architecture":"amd64","description":"system interface for user-level packet capture","desired":"install","status":"installed"},{"codes":"ii","name":"libpci3:amd64","version":"1:3.5.2-1ubuntu1.1","architecture":"amd64","description":"Linux PCI Utilities (shared library)","desired":"install","status":"installed"},{"codes":"ii","name":"libpcre3:amd64","version":"2:8.39-9","architecture":"amd64","description":"Old Perl 5 Compatible Regular Expression Library - runtime files","desired":"install","status":"installed"},{"codes":"ii","name":"libperl5.26:amd64","version":"5.26.1-6ubuntu0.5","architecture":"amd64","description":"shared Perl library","desired":"install","status":"installed"},{"codes":"ii","name":"libpipeline1:amd64","version":"1.5.0-1","architecture":"amd64","description":"pipeline manipulation library","desired":"install","status":"installed"},{"codes":"ii","name":"libplist3:amd64","version":"2.0.0-2ubuntu1","architecture":"amd64","description":"Library for handling Apple binary and XML property lists","desired":"install","status":"installed"},{"codes":"ii","name":"libplymouth4:amd64","version":"0.9.3-1ubuntu7.18.04","architecture":"amd64","description":"graphical boot animation and logger - shared libraries","desired":"install","status":"installed"},{"codes":"ii","name":"libpng16-16:amd64","version":"1.6.34-1ubuntu0.18.0","architecture":"amd64","description":"PNG library - runtime (version 1.6)","desired":"install","status":"installed"},{"codes":"ii","name":"libpolkit-agent-1-0:amd64","version":"0.105-20ubuntu0.18.0","architecture":"amd64","description":"PolicyKit Authentication Agent API","desired":"install","status":"installed"},{"codes":"ii","name":"libpolkit-backend-1-0:amd64","version":"0.105-20ubuntu0.18.0","architecture":"amd64","description":"PolicyKit backend API","desired":"install","status":"installed"},{"codes":"ii","name":"libpolkit-gobject-1-0:amd64","version":"0.105-20ubuntu0.18.0","architecture":"amd64","description":"PolicyKit Authorization API","desired":"install","status":"installed"},{"codes":"ii","name":"libpopt0:amd64","version":"1.16-11","architecture":"amd64","description":"lib for parsing cmdline parameters","desired":"install","status":"installed"},{"codes":"ii","name":"libprocps6:amd64","version":"2:3.3.12-3ubuntu1.2","architecture":"amd64","description":"library for accessing process information from /proc","desired":"install","status":"installed"},{"codes":"ii","name":"libpsl5:amd64","version":"0.19.1-5build1","architecture":"amd64","description":"Library for Public Suffix List (shared libraries)","desired":"install","status":"installed"},{"codes":"ii","name":"libpython3-dev:amd64","version":"3.6.7-1~18.04","architecture":"amd64","description":"header files and a static library for Python (default)","desired":"install","status":"installed"},{"codes":"ii","name":"libpython3-stdlib:amd64","version":"3.6.7-1~18.04","architecture":"amd64","description":"interactive high-level object-oriented language (default python3 ve","desired":"install","status":"installed"},{"codes":"ii","name":"libpython3.6:amd64","version":"3.6.9-1~18.04ubuntu1","architecture":"amd64","description":"Shared Python runtime library (version 3.6)","desired":"install","status":"installed"},{"codes":"ii","name":"libpython3.6-dev:amd64","version":"3.6.9-1~18.04ubuntu1","architecture":"amd64","description":"Header files and a static library for Python (v3.6)","desired":"install","status":"installed"},{"codes":"ii","name":"libpython3.6-minimal:amd64","version":"3.6.9-1~18.04ubuntu1","architecture":"amd64","description":"Minimal subset of the Python language (version 3.6)","desired":"install","status":"installed"},{"codes":"ii","name":"libpython3.6-stdlib:amd64","version":"3.6.9-1~18.04ubuntu1","architecture":"amd64","description":"Interactive high-level object-oriented language (standard library,","desired":"install","status":"installed"},{"codes":"ii","name":"libquadmath0:amd64","version":"8.4.0-1ubuntu1~18.04","architecture":"amd64","description":"GCC Quad-Precision Math Library","desired":"install","status":"installed"},{"codes":"ii","name":"libreadline5:amd64","version":"5.2+dfsg-3build1","architecture":"amd64","description":"GNU readline and history libraries, run-time libraries","desired":"install","status":"installed"},{"codes":"ii","name":"libreadline7:amd64","version":"7.0-3","architecture":"amd64","description":"GNU readline and history libraries, run-time libraries","desired":"install","status":"installed"},{"codes":"ii","name":"libroken18-heimdal:amd64","version":"7.5.0+dfsg-1","architecture":"amd64","description":"Heimdal Kerberos - roken support library","desired":"install","status":"installed"},{"codes":"ii","name":"librtmp1:amd64","version":"2.4+20151223.gitfa86","architecture":"amd64","description":"toolkit for RTMP streams (shared library)","desired":"install","status":"installed"},{"codes":"ii","name":"libsasl2-2:amd64","version":"2.1.27~101-g0780600+","architecture":"amd64","description":"Cyrus SASL - authentication abstraction library","desired":"install","status":"installed"},{"codes":"ii","name":"libsasl2-modules:amd64","version":"2.1.27~101-g0780600+","architecture":"amd64","description":"Cyrus SASL - pluggable authentication modules","desired":"install","status":"installed"},{"codes":"ii","name":"libsasl2-modules-db:amd64","version":"2.1.27~101-g0780600+","architecture":"amd64","description":"Cyrus SASL - pluggable authentication modules (DB)","desired":"install","status":"installed"},{"codes":"ii","name":"libseccomp2:amd64","version":"2.4.3-1ubuntu3.18.04","architecture":"amd64","description":"high level interface to Linux seccomp filter","desired":"install","status":"installed"},{"codes":"ii","name":"libselinux1:amd64","version":"2.7-2build2","architecture":"amd64","description":"SELinux runtime shared libraries","desired":"install","status":"installed"},{"codes":"ii","name":"libsemanage-common","version":"2.7-2build2","architecture":"all","description":"Common files for SELinux policy management libraries","desired":"install","status":"installed"},{"codes":"ii","name":"libsemanage1:amd64","version":"2.7-2build2","architecture":"amd64","description":"SELinux policy management library","desired":"install","status":"installed"},{"codes":"ii","name":"libsensors4:amd64","version":"1:3.4.0-4","architecture":"amd64","description":"library to read temperature/voltage/fan sensors","desired":"install","status":"installed"},{"codes":"ii","name":"libsepol1:amd64","version":"2.7-1","architecture":"amd64","description":"SELinux library for manipulating binary security policies","desired":"install","status":"installed"},{"codes":"ii","name":"libsigsegv2:amd64","version":"2.12-1","architecture":"amd64","description":"Library for handling page faults in a portable way","desired":"install","status":"installed"},{"codes":"ii","name":"libslang2:amd64","version":"2.3.1a-3ubuntu1","architecture":"amd64","description":"S-Lang programming library - runtime version","desired":"install","status":"installed"},{"codes":"ii","name":"libsmartcols1:amd64","version":"2.31.1-0.4ubuntu3.7","architecture":"amd64","description":"smart column output alignment library","desired":"install","status":"installed"},{"codes":"ii","name":"libsqlite3-0:amd64","version":"3.22.0-1ubuntu0.4","architecture":"amd64","description":"SQLite 3 shared library","desired":"install","status":"installed"},{"codes":"ii","name":"libss2:amd64","version":"1.44.1-1ubuntu1.3","architecture":"amd64","description":"command-line interface parsing library","desired":"install","status":"installed"},{"codes":"ii","name":"libssl-dev:amd64","version":"1.1.1-1ubuntu2.1~18.","architecture":"amd64","description":"Secure Sockets Layer toolkit - development files","desired":"install","status":"installed"},{"codes":"ii","name":"libssl1.0.0:amd64","version":"1.0.2n-1ubuntu5.6","architecture":"amd64","description":"Secure Sockets Layer toolkit - shared libraries","desired":"install","status":"installed"},{"codes":"ii","name":"libssl1.1:amd64","version":"1.1.1-1ubuntu2.1~18.","architecture":"amd64","description":"Secure Sockets Layer toolkit - shared libraries","desired":"install","status":"installed"},{"codes":"ii","name":"libstdc++-7-dev:amd64","version":"7.5.0-3ubuntu1~18.04","architecture":"amd64","description":"GNU Standard C++ Library v3 (development files)","desired":"install","status":"installed"},{"codes":"ii","name":"libstdc++6:amd64","version":"8.4.0-1ubuntu1~18.04","architecture":"amd64","description":"GNU Standard C++ Library v3","desired":"install","status":"installed"},{"codes":"ii","name":"libsystemd0:amd64","version":"237-3ubuntu10.42","architecture":"amd64","description":"systemd utility library","desired":"install","status":"installed"},{"codes":"ii","name":"libtasn1-6:amd64","version":"4.13-2","architecture":"amd64","description":"Manage ASN.1 structures (runtime)","desired":"install","status":"installed"},{"codes":"ii","name":"libtext-charwidth-perl","version":"0.04-7.1","architecture":"amd64","description":"get display widths of characters on the terminal","desired":"install","status":"installed"},{"codes":"ii","name":"libtext-iconv-perl","version":"1.7-5build6","architecture":"amd64","description":"converts between character sets in Perl","desired":"install","status":"installed"},{"codes":"ii","name":"libtext-wrapi18n-perl","version":"0.06-7.1","architecture":"all","description":"internationalized substitute of Text::Wrap","desired":"install","status":"installed"},{"codes":"ii","name":"libtinfo5:amd64","version":"6.1-1ubuntu1.18.04","architecture":"amd64","description":"shared low-level terminfo library for terminal handling","desired":"install","status":"installed"},{"codes":"ii","name":"libtsan0:amd64","version":"8.4.0-1ubuntu1~18.04","architecture":"amd64","description":"ThreadSanitizer -- a Valgrind-based detector of data races (runtime","desired":"install","status":"installed"},{"codes":"ii","name":"libubsan0:amd64","version":"7.5.0-3ubuntu1~18.04","architecture":"amd64","description":"UBSan -- undefined behaviour sanitizer (runtime)","desired":"install","status":"installed"},{"codes":"ii","name":"libudev1:amd64","version":"237-3ubuntu10.42","architecture":"amd64","description":"libudev shared library","desired":"install","status":"installed"},{"codes":"ii","name":"libunistring2:amd64","version":"0.9.9-0ubuntu2","architecture":"amd64","description":"Unicode string library for C","desired":"install","status":"installed"},{"codes":"ii","name":"libunwind8:amd64","version":"1.2.1-8","architecture":"amd64","description":"library to determine the call-chain of a program - runtime","desired":"install","status":"installed"},{"codes":"ii","name":"libupower-glib3:amd64","version":"0.99.7-2ubuntu0.18.0","architecture":"amd64","description":"abstraction for power management - shared library","desired":"install","status":"installed"},{"codes":"ii","name":"libusb-1.0-0:amd64","version":"2:1.0.21-2","architecture":"amd64","description":"userspace USB programming library","desired":"install","status":"installed"},{"codes":"ii","name":"libusbmuxd4:amd64","version":"1.1.0~git20171206.c7","architecture":"amd64","description":"USB multiplexor daemon for iPhone and iPod Touch devices - library","desired":"install","status":"installed"},{"codes":"ii","name":"libutempter0:amd64","version":"1.1.6-3","architecture":"amd64","description":"privileged helper for utmp/wtmp updates (runtime)","desired":"install","status":"installed"},{"codes":"ii","name":"libuuid1:amd64","version":"2.31.1-0.4ubuntu3.7","architecture":"amd64","description":"Universally Unique ID library","desired":"install","status":"installed"},{"codes":"ii","name":"libuv1:amd64","version":"1.18.0-3","architecture":"amd64","description":"asynchronous event notification library - runtime library","desired":"install","status":"installed"},{"codes":"ii","name":"libwind0-heimdal:amd64","version":"7.5.0+dfsg-1","architecture":"amd64","description":"Heimdal Kerberos - stringprep implementation","desired":"install","status":"installed"},{"codes":"ii","name":"libwrap0:amd64","version":"7.6.q-27","architecture":"amd64","description":"Wietse Venema's TCP wrappers library","desired":"install","status":"installed"},{"codes":"ii","name":"libx11-6:amd64","version":"2:1.6.4-3ubuntu0.3","architecture":"amd64","description":"X11 client-side library","desired":"install","status":"installed"},{"codes":"ii","name":"libx11-data","version":"2:1.6.4-3ubuntu0.3","architecture":"all","description":"X11 client-side library","desired":"install","status":"installed"},{"codes":"ii","name":"libxau6:amd64","version":"1:1.0.8-1ubuntu1","architecture":"amd64","description":"X11 authorisation library","desired":"install","status":"installed"},{"codes":"ii","name":"libxcb1:amd64","version":"1.13-2~ubuntu18.04","architecture":"amd64","description":"X C Binding","desired":"install","status":"installed"},{"codes":"ii","name":"libxdmcp6:amd64","version":"1:1.1.2-3","architecture":"amd64","description":"X11 Display Manager Control Protocol library","desired":"install","status":"installed"},{"codes":"ii","name":"libxext6:amd64","version":"2:1.3.3-1","architecture":"amd64","description":"X11 miscellaneous extension library","desired":"install","status":"installed"},{"codes":"ii","name":"libxml2:amd64","version":"2.9.4+dfsg1-6.1ubunt","architecture":"amd64","description":"GNOME XML library","desired":"install","status":"installed"},{"codes":"ii","name":"libxmlsec1:amd64","version":"1.2.25-1build1","architecture":"amd64","description":"XML security library","desired":"install","status":"installed"},{"codes":"ii","name":"libxmlsec1-openssl:amd64","version":"1.2.25-1build1","architecture":"amd64","description":"Openssl engine for the XML security library","desired":"install","status":"installed"},{"codes":"ii","name":"libxmuu1:amd64","version":"2:1.1.2-2","architecture":"amd64","description":"X11 miscellaneous micro-utility library","desired":"install","status":"installed"},{"codes":"ii","name":"libxslt1.1:amd64","version":"1.1.29-5ubuntu0.2","architecture":"amd64","description":"XSLT 1.0 processing library - runtime library","desired":"install","status":"installed"},{"codes":"ii","name":"libxtables12:amd64","version":"1.6.1-2ubuntu2","architecture":"amd64","description":"netfilter xtables library","desired":"install","status":"installed"},{"codes":"ii","name":"libyaml-0-2:amd64","version":"0.1.7-2ubuntu3","architecture":"amd64","description":"Fast YAML 1.1 parser and emitter library","desired":"install","status":"installed"},{"codes":"ii","name":"libzstd1:amd64","version":"1.3.3+dfsg-2ubuntu1.","architecture":"amd64","description":"fast lossless compression algorithm","desired":"install","status":"installed"},{"codes":"ii","name":"linux-base","version":"4.5ubuntu1.2","architecture":"all","description":"Linux image base package","desired":"install","status":"installed"},{"codes":"ii","name":"linux-firmware","version":"1.173.19","architecture":"all","description":"Firmware for Linux kernel drivers","desired":"install","status":"installed"},{"codes":"ii","name":"linux-generic","version":"4.15.0.140.127","architecture":"amd64","description":"Complete Generic Linux kernel and headers","desired":"install","status":"installed"},{"codes":"ii","name":"linux-headers-4.15.0-137","version":"4.15.0-137.141","architecture":"all","description":"Header files related to Linux kernel version 4.15.0","desired":"install","status":"installed"},{"codes":"ii","name":"linux-headers-4.15.0-137-generi","version":"4.15.0-137.141","architecture":"amd64","description":"Linux kernel headers for version 4.15.0 on 64 bit x86 SMP","desired":"install","status":"installed"},{"codes":"ii","name":"linux-headers-4.15.0-139","version":"4.15.0-139.143","architecture":"all","description":"Header files related to Linux kernel version 4.15.0","desired":"install","status":"installed"},{"codes":"ii","name":"linux-headers-4.15.0-139-generi","version":"4.15.0-139.143","architecture":"amd64","description":"Linux kernel headers for version 4.15.0 on 64 bit x86 SMP","desired":"install","status":"installed"},{"codes":"ii","name":"linux-headers-4.15.0-140","version":"4.15.0-140.144","architecture":"all","description":"Header files related to Linux kernel version 4.15.0","desired":"install","status":"installed"},{"codes":"ii","name":"linux-headers-4.15.0-140-generi","version":"4.15.0-140.144","architecture":"amd64","description":"Linux kernel headers for version 4.15.0 on 64 bit x86 SMP","desired":"install","status":"installed"},{"codes":"ii","name":"linux-headers-generic","version":"4.15.0.140.127","architecture":"amd64","description":"Generic Linux kernel headers","desired":"install","status":"installed"},{"codes":"rc","name":"linux-image-4.15.0-101-generic","version":"4.15.0-101.102","architecture":"amd64","description":"Signed kernel image generic","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-image-4.15.0-109-generic","version":"4.15.0-109.110","architecture":"amd64","description":"Signed kernel image generic","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-image-4.15.0-111-generic","version":"4.15.0-111.112","architecture":"amd64","description":"Signed kernel image generic","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-image-4.15.0-112-generic","version":"4.15.0-112.113","architecture":"amd64","description":"Signed kernel image generic","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-image-4.15.0-126-generic","version":"4.15.0-126.129","architecture":"amd64","description":"Signed kernel image generic","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-image-4.15.0-128-generic","version":"4.15.0-128.131","architecture":"amd64","description":"Signed kernel image generic","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-image-4.15.0-135-generic","version":"4.15.0-135.139","architecture":"amd64","description":"Signed kernel image generic","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-image-4.15.0-136-generic","version":"4.15.0-136.140","architecture":"amd64","description":"Signed kernel image generic","desired":"remove","status":"config-files"},{"codes":"ii","name":"linux-image-4.15.0-137-generic","version":"4.15.0-137.141","architecture":"amd64","description":"Signed kernel image generic","desired":"install","status":"installed"},{"codes":"ii","name":"linux-image-4.15.0-139-generic","version":"4.15.0-139.143","architecture":"amd64","description":"Signed kernel image generic","desired":"install","status":"installed"},{"codes":"ii","name":"linux-image-4.15.0-140-generic","version":"4.15.0-140.144","architecture":"amd64","description":"Signed kernel image generic","desired":"install","status":"installed"},{"codes":"rc","name":"linux-image-4.15.0-55-generic","version":"4.15.0-55.60","architecture":"amd64","description":"Signed kernel image generic","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-image-4.15.0-58-generic","version":"4.15.0-58.64","architecture":"amd64","description":"Signed kernel image generic","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-image-4.15.0-65-generic","version":"4.15.0-65.74","architecture":"amd64","description":"Signed kernel image generic","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-image-4.15.0-66-generic","version":"4.15.0-66.75","architecture":"amd64","description":"Signed kernel image generic","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-image-4.15.0-69-generic","version":"4.15.0-69.78","architecture":"amd64","description":"Signed kernel image generic","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-image-4.15.0-70-generic","version":"4.15.0-70.79","architecture":"amd64","description":"Signed kernel image generic","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-image-4.15.0-72-generic","version":"4.15.0-72.81","architecture":"amd64","description":"Signed kernel image generic","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-image-4.15.0-76-generic","version":"4.15.0-76.86","architecture":"amd64","description":"Signed kernel image generic","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-image-4.15.0-88-generic","version":"4.15.0-88.88","architecture":"amd64","description":"Signed kernel image generic","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-image-4.15.0-96-generic","version":"4.15.0-96.97","architecture":"amd64","description":"Signed kernel image generic","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-image-4.15.0-99-generic","version":"4.15.0-99.100","architecture":"amd64","description":"Signed kernel image generic","desired":"remove","status":"config-files"},{"codes":"ii","name":"linux-image-generic","version":"4.15.0.140.127","architecture":"amd64","description":"Generic Linux kernel image","desired":"install","status":"installed"},{"codes":"ii","name":"linux-libc-dev:amd64","version":"4.15.0-140.144","architecture":"amd64","description":"Linux Kernel Headers for development","desired":"install","status":"installed"},{"codes":"rc","name":"linux-modules-4.15.0-101-generi","version":"4.15.0-101.102","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-4.15.0-109-generi","version":"4.15.0-109.110","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-4.15.0-111-generi","version":"4.15.0-111.112","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-4.15.0-112-generi","version":"4.15.0-112.113","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-4.15.0-126-generi","version":"4.15.0-126.129","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-4.15.0-128-generi","version":"4.15.0-128.131","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-4.15.0-135-generi","version":"4.15.0-135.139","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-4.15.0-136-generi","version":"4.15.0-136.140","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"ii","name":"linux-modules-4.15.0-137-generi","version":"4.15.0-137.141","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"install","status":"installed"},{"codes":"ii","name":"linux-modules-4.15.0-139-generi","version":"4.15.0-139.143","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"install","status":"installed"},{"codes":"ii","name":"linux-modules-4.15.0-140-generi","version":"4.15.0-140.144","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"install","status":"installed"},{"codes":"rc","name":"linux-modules-4.15.0-55-generic","version":"4.15.0-55.60","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-4.15.0-58-generic","version":"4.15.0-58.64","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-4.15.0-65-generic","version":"4.15.0-65.74","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-4.15.0-66-generic","version":"4.15.0-66.75","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-4.15.0-69-generic","version":"4.15.0-69.78","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-4.15.0-70-generic","version":"4.15.0-70.79","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-4.15.0-72-generic","version":"4.15.0-72.81","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-4.15.0-76-generic","version":"4.15.0-76.86","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-4.15.0-88-generic","version":"4.15.0-88.88","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-4.15.0-96-generic","version":"4.15.0-96.97","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-4.15.0-99-generic","version":"4.15.0-99.100","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-extra-4.15.0-101-","version":"4.15.0-101.102","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-extra-4.15.0-109-","version":"4.15.0-109.110","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-extra-4.15.0-111-","version":"4.15.0-111.112","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-extra-4.15.0-112-","version":"4.15.0-112.113","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-extra-4.15.0-126-","version":"4.15.0-126.129","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-extra-4.15.0-128-","version":"4.15.0-128.131","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-extra-4.15.0-135-","version":"4.15.0-135.139","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-extra-4.15.0-136-","version":"4.15.0-136.140","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"ii","name":"linux-modules-extra-4.15.0-137-","version":"4.15.0-137.141","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"install","status":"installed"},{"codes":"ii","name":"linux-modules-extra-4.15.0-139-","version":"4.15.0-139.143","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"install","status":"installed"},{"codes":"ii","name":"linux-modules-extra-4.15.0-140-","version":"4.15.0-140.144","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"install","status":"installed"},{"codes":"rc","name":"linux-modules-extra-4.15.0-55-g","version":"4.15.0-55.60","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-extra-4.15.0-58-g","version":"4.15.0-58.64","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-extra-4.15.0-65-g","version":"4.15.0-65.74","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-extra-4.15.0-66-g","version":"4.15.0-66.75","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-extra-4.15.0-69-g","version":"4.15.0-69.78","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-extra-4.15.0-70-g","version":"4.15.0-70.79","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-extra-4.15.0-72-g","version":"4.15.0-72.81","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-extra-4.15.0-76-g","version":"4.15.0-76.86","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-extra-4.15.0-88-g","version":"4.15.0-88.88","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-extra-4.15.0-96-g","version":"4.15.0-96.97","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"rc","name":"linux-modules-extra-4.15.0-99-g","version":"4.15.0-99.100","architecture":"amd64","description":"Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP","desired":"remove","status":"config-files"},{"codes":"ii","name":"locales","version":"2.27-3ubuntu1.2","architecture":"all","description":"GNU C Library: National Language (locale) data [support]","desired":"install","status":"installed"},{"codes":"ii","name":"login","version":"1:4.5-1ubuntu2","architecture":"amd64","description":"system login tools","desired":"install","status":"installed"},{"codes":"ii","name":"logrotate","version":"3.11.0-0.1ubuntu1","architecture":"amd64","description":"Log rotation utility","desired":"install","status":"installed"},{"codes":"ii","name":"lsb-base","version":"9.20170808ubuntu1","architecture":"all","description":"Linux Standard Base init script functionality","desired":"install","status":"installed"},{"codes":"ii","name":"lsb-release","version":"9.20170808ubuntu1","architecture":"all","description":"Linux Standard Base version reporting utility","desired":"install","status":"installed"},{"codes":"ii","name":"lshw","version":"02.18-0.1ubuntu6.18.","architecture":"amd64","description":"information about hardware configuration","desired":"install","status":"installed"},{"codes":"ii","name":"lsof","version":"4.89+dfsg-0.1","architecture":"amd64","description":"Utility to list open files","desired":"install","status":"installed"},{"codes":"ii","name":"ltrace","version":"0.7.3-6ubuntu1","architecture":"amd64","description":"Tracks runtime library calls in dynamically linked programs","desired":"install","status":"installed"},{"codes":"ii","name":"lvm2","version":"2.02.176-4.1ubuntu3.","architecture":"amd64","description":"Linux Logical Volume Manager","desired":"install","status":"installed"},{"codes":"ii","name":"lxcfs","version":"3.0.3-0ubuntu1~18.04","architecture":"amd64","description":"FUSE based filesystem for LXC","desired":"install","status":"installed"},{"codes":"ii","name":"lxd","version":"3.0.3-0ubuntu1~18.04","architecture":"amd64","description":"Container hypervisor based on LXC - daemon","desired":"install","status":"installed"},{"codes":"ii","name":"lxd-client","version":"3.0.3-0ubuntu1~18.04","architecture":"amd64","description":"Container hypervisor based on LXC - client","desired":"install","status":"installed"},{"codes":"ii","name":"make","version":"4.1-9.1ubuntu1","architecture":"amd64","description":"utility for directing compilation","desired":"install","status":"installed"},{"codes":"ii","name":"man-db","version":"2.8.3-2ubuntu0.1","architecture":"amd64","description":"on-line manual pager","desired":"install","status":"installed"},{"codes":"ii","name":"manpages","version":"4.15-1","architecture":"all","description":"Manual pages about using a GNU/Linux system","desired":"install","status":"installed"},{"codes":"ii","name":"manpages-dev","version":"4.15-1","architecture":"all","description":"Manual pages about using GNU/Linux for development","desired":"install","status":"installed"},{"codes":"ii","name":"mawk","version":"1.3.3-17ubuntu3","architecture":"amd64","description":"a pattern scanning and text processing language","desired":"install","status":"installed"},{"codes":"ii","name":"mdadm","version":"4.1~rc1-3~ubuntu18.0","architecture":"amd64","description":"tool to administer Linux MD arrays (software RAID)","desired":"install","status":"installed"},{"codes":"ii","name":"mime-support","version":"3.60ubuntu1","architecture":"all","description":"MIME files 'mime.types' & 'mailcap', and support programs","desired":"install","status":"installed"},{"codes":"ii","name":"mlocate","version":"0.26-2ubuntu3.1","architecture":"amd64","description":"quickly find files on the filesystem based on their name","desired":"install","status":"installed"},{"codes":"ii","name":"mount","version":"2.31.1-0.4ubuntu3.7","architecture":"amd64","description":"tools for mounting and manipulating filesystems","desired":"install","status":"installed"},{"codes":"ii","name":"mtr-tiny","version":"0.92-1","architecture":"amd64","description":"Full screen ncurses traceroute tool","desired":"install","status":"installed"},{"codes":"ii","name":"multiarch-support","version":"2.27-3ubuntu1.2","architecture":"amd64","description":"Transitional package to ensure multiarch compatibility","desired":"install","status":"installed"},{"codes":"ii","name":"musl:amd64","version":"1.1.19-1","architecture":"amd64","description":"standard C library","desired":"install","status":"installed"},{"codes":"ii","name":"musl-dev:amd64","version":"1.1.19-1","architecture":"amd64","description":"standard C library development files","desired":"install","status":"installed"},{"codes":"ii","name":"musl-tools","version":"1.1.19-1","architecture":"amd64","description":"standard C library tools","desired":"install","status":"installed"},{"codes":"ii","name":"nano","version":"2.9.3-2","architecture":"amd64","description":"small, friendly text editor inspired by Pico","desired":"install","status":"installed"},{"codes":"ii","name":"ncurses-base","version":"6.1-1ubuntu1.18.04","architecture":"all","description":"basic terminal type definitions","desired":"install","status":"installed"},{"codes":"ii","name":"ncurses-bin","version":"6.1-1ubuntu1.18.04","architecture":"amd64","description":"terminal-related programs and man pages","desired":"install","status":"installed"},{"codes":"ii","name":"ncurses-term","version":"6.1-1ubuntu1.18.04","architecture":"all","description":"additional terminal type definitions","desired":"install","status":"installed"},{"codes":"ii","name":"net-tools","version":"1.60+git20161116.90d","architecture":"amd64","description":"NET-3 networking toolkit","desired":"install","status":"installed"},{"codes":"ii","name":"netbase","version":"5.4","architecture":"all","description":"Basic TCP/IP networking system","desired":"install","status":"installed"},{"codes":"ii","name":"netcat-openbsd","version":"1.187-1ubuntu0.1","architecture":"amd64","description":"TCP/IP swiss army knife","desired":"install","status":"installed"},{"codes":"ii","name":"netplan.io","version":"0.97-0ubuntu1~18.04.","architecture":"amd64","description":"YAML network configuration abstraction for various backends","desired":"install","status":"installed"},{"codes":"ii","name":"networkd-dispatcher","version":"1.7-0ubuntu3.3","architecture":"all","description":"Dispatcher service for systemd-networkd connection status changes","desired":"install","status":"installed"},{"codes":"ii","name":"nmap","version":"7.60-1ubuntu5","architecture":"amd64","description":"The Network Mapper","desired":"install","status":"installed"},{"codes":"ii","name":"nplan","version":"0.99-0ubuntu3~18.04.","architecture":"all","description":"YAML network configuration abstraction - transitional package","desired":"install","status":"installed"},{"codes":"ii","name":"ntfs-3g","version":"1:2017.3.23-2ubuntu0","architecture":"amd64","description":"read/write NTFS driver for FUSE","desired":"install","status":"installed"},{"codes":"ii","name":"ntp","version":"1:4.2.8p10+dfsg-5ubu","architecture":"amd64","description":"Network Time Protocol daemon and utility programs","desired":"install","status":"installed"},{"codes":"ii","name":"open-iscsi","version":"2.0.874-5ubuntu2.10","architecture":"amd64","description":"iSCSI initiator tools","desired":"install","status":"installed"},{"codes":"ii","name":"open-vm-tools","version":"2:11.0.5-4ubuntu0.18","architecture":"amd64","description":"Open VMware Tools for virtual machines hosted on VMware (CLI)","desired":"install","status":"installed"},{"codes":"ii","name":"openssh-client","version":"1:7.6p1-4ubuntu0.3","architecture":"amd64","description":"secure shell (SSH) client, for secure access to remote machines","desired":"install","status":"installed"},{"codes":"ii","name":"openssh-server","version":"1:7.6p1-4ubuntu0.3","architecture":"amd64","description":"secure shell (SSH) server, for secure access from remote machines","desired":"install","status":"installed"},{"codes":"ii","name":"openssh-sftp-server","version":"1:7.6p1-4ubuntu0.3","architecture":"amd64","description":"secure shell (SSH) sftp server module, for SFTP access from remote","desired":"install","status":"installed"},{"codes":"ii","name":"openssl","version":"1.1.1-1ubuntu2.1~18.","architecture":"amd64","description":"Secure Sockets Layer toolkit - cryptographic utility","desired":"install","status":"installed"},{"codes":"ii","name":"os-prober","version":"1.74ubuntu1","architecture":"amd64","description":"utility to detect other OSes on a set of drives","desired":"install","status":"installed"},{"codes":"ii","name":"overlayroot","version":"0.40ubuntu1.1","architecture":"all","description":"use an overlayfs on top of a read-only root filesystem","desired":"install","status":"installed"},{"codes":"ii","name":"parted","version":"3.2-20ubuntu0.2","architecture":"amd64","description":"disk partition manipulator","desired":"install","status":"installed"},{"codes":"ii","name":"passwd","version":"1:4.5-1ubuntu2","architecture":"amd64","description":"change and administer password and group data","desired":"install","status":"installed"},{"codes":"ii","name":"pastebinit","version":"1.5-2","architecture":"all","description":"command-line pastebin client","desired":"install","status":"installed"},{"codes":"ii","name":"patch","version":"2.7.6-2ubuntu1.1","architecture":"amd64","description":"Apply a diff file to an original","desired":"install","status":"installed"},{"codes":"ii","name":"pciutils","version":"1:3.5.2-1ubuntu1.1","architecture":"amd64","description":"Linux PCI Utilities","desired":"install","status":"installed"},{"codes":"ii","name":"perl","version":"5.26.1-6ubuntu0.5","architecture":"amd64","description":"Larry Wall's Practical Extraction and Report Language","desired":"install","status":"installed"},{"codes":"ii","name":"perl-base","version":"5.26.1-6ubuntu0.5","architecture":"amd64","description":"minimal Perl system","desired":"install","status":"installed"},{"codes":"ii","name":"perl-modules-5.26","version":"5.26.1-6ubuntu0.5","architecture":"all","description":"Core Perl modules","desired":"install","status":"installed"},{"codes":"ii","name":"pigz","version":"2.4-1","architecture":"amd64","description":"Parallel Implementation of GZip","desired":"install","status":"installed"},{"codes":"ii","name":"pinentry-curses","version":"1.1.0-1","architecture":"amd64","description":"curses-based PIN or pass-phrase entry dialog for GnuPG","desired":"install","status":"installed"},{"codes":"ii","name":"pkg-config","version":"0.29.1-0ubuntu2","architecture":"amd64","description":"manage compile and link flags for libraries","desired":"install","status":"installed"},{"codes":"ii","name":"plymouth","version":"0.9.3-1ubuntu7.18.04","architecture":"amd64","description":"boot animation, logger and I/O multiplexer","desired":"install","status":"installed"},{"codes":"ii","name":"plymouth-theme-ubuntu-text","version":"0.9.3-1ubuntu7.18.04","architecture":"amd64","description":"boot animation, logger and I/O multiplexer - ubuntu text theme","desired":"install","status":"installed"},{"codes":"ii","name":"policykit-1","version":"0.105-20ubuntu0.18.0","architecture":"amd64","description":"framework for managing administrative policies and privileges","desired":"install","status":"installed"},{"codes":"ii","name":"pollinate","version":"4.33-0ubuntu1~18.04.","architecture":"all","description":"seed the pseudo random number generator","desired":"install","status":"installed"},{"codes":"ii","name":"popularity-contest","version":"1.66ubuntu1","architecture":"all","description":"Vote for your favourite packages automatically","desired":"install","status":"installed"},{"codes":"ii","name":"powermgmt-base","version":"1.33","architecture":"all","description":"common utils for power management","desired":"install","status":"installed"},{"codes":"ii","name":"procps","version":"2:3.3.12-3ubuntu1.2","architecture":"amd64","description":"/proc file system utilities","desired":"install","status":"installed"},{"codes":"ii","name":"psmisc","version":"23.1-1ubuntu0.1","architecture":"amd64","description":"utilities that use the proc file system","desired":"install","status":"installed"},{"codes":"ii","name":"publicsuffix","version":"20180223.1310-1","architecture":"all","description":"accurate, machine-readable list of domain name suffixes","desired":"install","status":"installed"},{"codes":"ii","name":"python-apt-common","version":"1.6.5ubuntu0.5","architecture":"all","description":"Python interface to libapt-pkg (locales)","desired":"install","status":"installed"},{"codes":"ii","name":"python-pip-whl","version":"9.0.1-2.3~ubuntu1.18","architecture":"all","description":"Python package installer","desired":"install","status":"installed"},{"codes":"ii","name":"python3","version":"3.6.7-1~18.04","architecture":"amd64","description":"interactive high-level object-oriented language (default python3 ve","desired":"install","status":"installed"},{"codes":"ii","name":"python3-apport","version":"2.20.9-0ubuntu7.23","architecture":"all","description":"Python 3 library for Apport crash report handling","desired":"install","status":"installed"},{"codes":"ii","name":"python3-apt","version":"1.6.5ubuntu0.5","architecture":"amd64","description":"Python 3 interface to libapt-pkg","desired":"install","status":"installed"},{"codes":"ii","name":"python3-asn1crypto","version":"0.24.0-1","architecture":"all","description":"Fast ASN.1 parser and serializer (Python 3)","desired":"install","status":"installed"},{"codes":"ii","name":"python3-attr","version":"17.4.0-2","architecture":"all","description":"Attributes without boilerplate (Python 3)","desired":"install","status":"installed"},{"codes":"ii","name":"python3-automat","version":"0.6.0-1","architecture":"all","description":"Self-service finite-state machines for the programmer on the go","desired":"install","status":"installed"},{"codes":"ii","name":"python3-blinker","version":"1.4+dfsg1-0.1","architecture":"all","description":"fast, simple object-to-object and broadcast signaling library","desired":"install","status":"installed"},{"codes":"ii","name":"python3-certifi","version":"2018.1.18-2","architecture":"all","description":"root certificates for validating SSL certs and verifying TLS hosts","desired":"install","status":"installed"},{"codes":"ii","name":"python3-cffi-backend","version":"1.11.5-1","architecture":"amd64","description":"Foreign Function Interface for Python 3 calling C code - runtime","desired":"install","status":"installed"},{"codes":"ii","name":"python3-chardet","version":"3.0.4-1","architecture":"all","description":"universal character encoding detector for Python3","desired":"install","status":"installed"},{"codes":"ii","name":"python3-click","version":"6.7-3","architecture":"all","description":"Simple wrapper around optparse for powerful command line utilities","desired":"install","status":"installed"},{"codes":"ii","name":"python3-colorama","version":"0.3.7-1","architecture":"all","description":"Cross-platform colored terminal text in Python - Python 3.x","desired":"install","status":"installed"},{"codes":"ii","name":"python3-commandnotfound","version":"18.04.5","architecture":"all","description":"Python 3 bindings for command-not-found.","desired":"install","status":"installed"},{"codes":"ii","name":"python3-configobj","version":"5.0.6-2","architecture":"all","description":"simple but powerful config file reader and writer for Python 3","desired":"install","status":"installed"},{"codes":"ii","name":"python3-constantly","version":"15.1.0-1","architecture":"all","description":"Symbolic constants in Python","desired":"install","status":"installed"},{"codes":"ii","name":"python3-crypto","version":"2.6.1-8ubuntu2","architecture":"amd64","description":"cryptographic algorithms and protocols for Python 3","desired":"install","status":"installed"},{"codes":"ii","name":"python3-cryptography","version":"2.1.4-1ubuntu1.4","architecture":"amd64","description":"Python library exposing cryptographic recipes and primitives (Pytho","desired":"install","status":"installed"},{"codes":"ii","name":"python3-dbus","version":"1.2.6-1","architecture":"amd64","description":"simple interprocess messaging system (Python 3 interface)","desired":"install","status":"installed"},{"codes":"ii","name":"python3-debconf","version":"1.5.66ubuntu1","architecture":"all","description":"interact with debconf from Python 3","desired":"install","status":"installed"},{"codes":"ii","name":"python3-debian","version":"0.1.32","architecture":"all","description":"Python 3 modules to work with Debian-related data formats","desired":"install","status":"installed"},{"codes":"ii","name":"python3-dev","version":"3.6.7-1~18.04","architecture":"amd64","description":"header files and a static library for Python (default)","desired":"install","status":"installed"},{"codes":"ii","name":"python3-distro-info","version":"0.18ubuntu0.18.04.1","architecture":"all","description":"information about distributions' releases (Python 3 module)","desired":"install","status":"installed"},{"codes":"ii","name":"python3-distupgrade","version":"1:18.04.38","architecture":"all","description":"manage release upgrades","desired":"install","status":"installed"},{"codes":"ii","name":"python3-distutils","version":"3.6.9-1~18.04","architecture":"all","description":"distutils package for Python 3.x","desired":"install","status":"installed"},{"codes":"ii","name":"python3-gdbm:amd64","version":"3.6.9-1~18.04","architecture":"amd64","description":"GNU dbm database support for Python 3.x","desired":"install","status":"installed"},{"codes":"ii","name":"python3-gi","version":"3.26.1-2ubuntu1","architecture":"amd64","description":"Python 3 bindings for gobject-introspection libraries","desired":"install","status":"installed"},{"codes":"ii","name":"python3-httplib2","version":"0.9.2+dfsg-1ubuntu0.","architecture":"all","description":"comprehensive HTTP client library written for Python3","desired":"install","status":"installed"},{"codes":"ii","name":"python3-hyperlink","version":"17.3.1-2","architecture":"all","description":"Immutable, Pythonic, correct URLs.","desired":"install","status":"installed"},{"codes":"ii","name":"python3-idna","version":"2.6-1","architecture":"all","description":"Python IDNA2008 (RFC 5891) handling (Python 3)","desired":"install","status":"installed"},{"codes":"ii","name":"python3-incremental","version":"16.10.1-3","architecture":"all","description":"Library for versioning Python projects.","desired":"install","status":"installed"},{"codes":"ii","name":"python3-jinja2","version":"2.10-1ubuntu0.18.04.","architecture":"all","description":"small but fast and easy to use stand-alone template engine","desired":"install","status":"installed"},{"codes":"ii","name":"python3-json-pointer","version":"1.10-1","architecture":"all","description":"resolve JSON pointers - Python 3.x","desired":"install","status":"installed"},{"codes":"ii","name":"python3-jsonpatch","version":"1.19+really1.16-1fak","architecture":"all","description":"library to apply JSON patches - Python 3.x","desired":"install","status":"installed"},{"codes":"ii","name":"python3-jsonschema","version":"2.6.0-2","architecture":"all","description":"An(other) implementation of JSON Schema (Draft 3 and 4) - Python 3.","desired":"install","status":"installed"},{"codes":"ii","name":"python3-jwt","version":"1.5.3+ds1-1","architecture":"all","description":"Python 3 implementation of JSON Web Token","desired":"install","status":"installed"},{"codes":"ii","name":"python3-keyring","version":"10.6.0-1","architecture":"all","description":"store and access your passwords safely - Python 3 version of the pa","desired":"install","status":"installed"},{"codes":"ii","name":"python3-keyrings.alt","version":"3.0-1","architecture":"all","description":"alternate backend implementations for python3-keyring","desired":"install","status":"installed"},{"codes":"ii","name":"python3-lib2to3","version":"3.6.9-1~18.04","architecture":"all","description":"Interactive high-level object-oriented language (2to3, version 3.6)","desired":"install","status":"installed"},{"codes":"ii","name":"python3-markupsafe","version":"1.0-1build1","architecture":"amd64","description":"HTML/XHTML/XML string library for Python 3","desired":"install","status":"installed"},{"codes":"ii","name":"python3-minimal","version":"3.6.7-1~18.04","architecture":"amd64","description":"minimal subset of the Python language (default python3 version)","desired":"install","status":"installed"},{"codes":"ii","name":"python3-netifaces","version":"0.10.4-0.1build4","architecture":"amd64","description":"portable network interface information - Python 3.x","desired":"install","status":"installed"},{"codes":"ii","name":"python3-newt:amd64","version":"0.52.20-1ubuntu1","architecture":"amd64","description":"NEWT module for Python3","desired":"install","status":"installed"},{"codes":"ii","name":"python3-oauthlib","version":"2.0.6-1","architecture":"all","description":"generic, spec-compliant implementation of OAuth for Python3","desired":"install","status":"installed"},{"codes":"ii","name":"python3-openssl","version":"17.5.0-1ubuntu1","architecture":"all","description":"Python 3 wrapper around the OpenSSL library","desired":"install","status":"installed"},{"codes":"ii","name":"python3-pam","version":"0.4.2-13.2ubuntu4","architecture":"amd64","description":"Python interface to the PAM library","desired":"install","status":"installed"},{"codes":"ii","name":"python3-pip","version":"9.0.1-2.3~ubuntu1.18","architecture":"all","description":"Python package installer","desired":"install","status":"installed"},{"codes":"ii","name":"python3-pkg-resources","version":"39.0.1-2","architecture":"all","description":"Package Discovery and Resource Access using pkg_resources","desired":"install","status":"installed"},{"codes":"ii","name":"python3-problem-report","version":"2.20.9-0ubuntu7.23","architecture":"all","description":"Python 3 library to handle problem reports","desired":"install","status":"installed"},{"codes":"ii","name":"python3-pyasn1","version":"0.4.2-3","architecture":"all","description":"ASN.1 library for Python (Python 3 module)","desired":"install","status":"installed"},{"codes":"ii","name":"python3-pyasn1-modules","version":"0.2.1-0.2","architecture":"all","description":"Collection of protocols modules written in ASN.1 language (Python 3","desired":"install","status":"installed"},{"codes":"ii","name":"python3-requests","version":"2.18.4-2ubuntu0.1","architecture":"all","description":"elegant and simple HTTP library for Python3, built for human beings","desired":"install","status":"installed"},{"codes":"ii","name":"python3-requests-unixsocket","version":"0.1.5-3","architecture":"all","description":"Use requests to talk HTTP via a UNIX domain socket - Python 3.x","desired":"install","status":"installed"},{"codes":"ii","name":"python3-secretstorage","version":"2.3.1-2","architecture":"all","description":"Python module for storing secrets - Python 3.x version","desired":"install","status":"installed"},{"codes":"ii","name":"python3-serial","version":"3.4-2","architecture":"all","description":"pyserial - module encapsulating access for the serial port","desired":"install","status":"installed"},{"codes":"ii","name":"python3-service-identity","version":"16.0.0-2","architecture":"all","description":"Service identity verification for pyOpenSSL (Python 3 module)","desired":"install","status":"installed"},{"codes":"ii","name":"python3-setuptools","version":"39.0.1-2","architecture":"all","description":"Python3 Distutils Enhancements","desired":"install","status":"installed"},{"codes":"ii","name":"python3-six","version":"1.11.0-2","architecture":"all","description":"Python 2 and 3 compatibility library (Python 3 interface)","desired":"install","status":"installed"},{"codes":"ii","name":"python3-software-properties","version":"0.96.24.32.14","architecture":"all","description":"manage the repositories that you install software from","desired":"install","status":"installed"},{"codes":"ii","name":"python3-systemd","version":"234-1build1","architecture":"amd64","description":"Python 3 bindings for systemd","desired":"install","status":"installed"},{"codes":"ii","name":"python3-twisted","version":"17.9.0-2ubuntu0.1","architecture":"all","description":"Event-based framework for internet applications","desired":"install","status":"installed"},{"codes":"ii","name":"python3-twisted-bin:amd64","version":"17.9.0-2ubuntu0.1","architecture":"amd64","description":"Event-based framework for internet applications","desired":"install","status":"installed"},{"codes":"ii","name":"python3-update-manager","version":"1:18.04.11.13","architecture":"all","description":"python 3.x module for update-manager","desired":"install","status":"installed"},{"codes":"ii","name":"python3-urllib3","version":"1.22-1ubuntu0.18.04.","architecture":"all","description":"HTTP library with thread-safe connection pooling for Python3","desired":"install","status":"installed"},{"codes":"ii","name":"python3-wheel","version":"0.30.0-0.2","architecture":"all","description":"built-package format for Python","desired":"install","status":"installed"},{"codes":"ii","name":"python3-xdg","version":"0.25-4ubuntu1.1","architecture":"all","description":"Python 3 library to access freedesktop.org standards","desired":"install","status":"installed"},{"codes":"ii","name":"python3-yaml","version":"3.12-1build2","architecture":"amd64","description":"YAML parser and emitter for Python3","desired":"install","status":"installed"},{"codes":"ii","name":"python3-zope.interface","version":"4.3.2-1build2","architecture":"amd64","description":"Interfaces for Python3","desired":"install","status":"installed"},{"codes":"ii","name":"python3.6","version":"3.6.9-1~18.04ubuntu1","architecture":"amd64","description":"Interactive high-level object-oriented language (version 3.6)","desired":"install","status":"installed"},{"codes":"ii","name":"python3.6-dev","version":"3.6.9-1~18.04ubuntu1","architecture":"amd64","description":"Header files and a static library for Python (v3.6)","desired":"install","status":"installed"},{"codes":"ii","name":"python3.6-minimal","version":"3.6.9-1~18.04ubuntu1","architecture":"amd64","description":"Minimal subset of the Python language (version 3.6)","desired":"install","status":"installed"},{"codes":"ii","name":"readline-common","version":"7.0-3","architecture":"all","description":"GNU readline and history libraries, common files","desired":"install","status":"installed"},{"codes":"ii","name":"rsync","version":"3.1.2-2.1ubuntu1.1","architecture":"amd64","description":"fast, versatile, remote (and local) file-copying tool","desired":"install","status":"installed"},{"codes":"ii","name":"rsyslog","version":"8.32.0-1ubuntu4","architecture":"amd64","description":"reliable system and kernel logging daemon","desired":"install","status":"installed"},{"codes":"ii","name":"run-one","version":"1.17-0ubuntu1","architecture":"all","description":"run just one instance of a command and its args at a time","desired":"install","status":"installed"},{"codes":"ii","name":"runc","version":"1.0.0~rc10-0ubuntu1~","architecture":"amd64","description":"Open Container Project - runtime","desired":"install","status":"installed"},{"codes":"ii","name":"screen","version":"4.6.2-1ubuntu1.1","architecture":"amd64","description":"terminal multiplexer with VT100/ANSI terminal emulation","desired":"install","status":"installed"},{"codes":"ii","name":"sed","version":"4.4-2","architecture":"amd64","description":"GNU stream editor for filtering/transforming text","desired":"install","status":"installed"},{"codes":"ii","name":"sensible-utils","version":"0.0.12","architecture":"all","description":"Utilities for sensible alternative selection","desired":"install","status":"installed"},{"codes":"ii","name":"shared-mime-info","version":"1.9-2","architecture":"amd64","description":"FreeDesktop.org shared MIME database and spec","desired":"install","status":"installed"},{"codes":"ii","name":"slurm","version":"0.4.3-2build2","architecture":"amd64","description":"Realtime network interface monitor","desired":"install","status":"installed"},{"codes":"ii","name":"snapd","version":"2.48.3+18.04","architecture":"amd64","description":"Daemon and tooling that enable snap packages","desired":"install","status":"installed"},{"codes":"ii","name":"sntp","version":"1:4.2.8p10+dfsg-5ubu","architecture":"amd64","description":"Network Time Protocol - sntp client","desired":"install","status":"installed"},{"codes":"ii","name":"software-properties-common","version":"0.96.24.32.14","architecture":"all","description":"manage the repositories that you install software from (common)","desired":"install","status":"installed"},{"codes":"ii","name":"sosreport","version":"3.9.1-1ubuntu0.18.04","architecture":"amd64","description":"Set of tools to gather troubleshooting data from a system","desired":"install","status":"installed"},{"codes":"ii","name":"squashfs-tools","version":"1:4.3-6ubuntu0.18.04","architecture":"amd64","description":"Tool to create and append to squashfs filesystems","desired":"install","status":"installed"},{"codes":"ii","name":"ssh-import-id","version":"5.7-0ubuntu1.1","architecture":"all","description":"securely retrieve an SSH public key and install it locally","desired":"install","status":"installed"},{"codes":"ii","name":"strace","version":"4.21-1ubuntu1","architecture":"amd64","description":"System call tracer","desired":"install","status":"installed"},{"codes":"ii","name":"sudo","version":"1.8.21p2-3ubuntu1.4","architecture":"amd64","description":"Provide limited super user privileges to specific users","desired":"install","status":"installed"},{"codes":"ii","name":"sysstat","version":"11.6.1-1ubuntu0.1","architecture":"amd64","description":"system performance tools for Linux","desired":"install","status":"installed"},{"codes":"ii","name":"systemd","version":"237-3ubuntu10.42","architecture":"amd64","description":"system and service manager","desired":"install","status":"installed"},{"codes":"ii","name":"systemd-sysv","version":"237-3ubuntu10.42","architecture":"amd64","description":"system and service manager - SysV links","desired":"install","status":"installed"},{"codes":"ii","name":"sysvinit-utils","version":"2.88dsf-59.10ubuntu1","architecture":"amd64","description":"System-V-like utilities","desired":"install","status":"installed"},{"codes":"ii","name":"tar","version":"1.29b-2ubuntu0.2","architecture":"amd64","description":"GNU version of the tar archiving utility","desired":"install","status":"installed"},{"codes":"ii","name":"tcpdump","version":"4.9.3-0ubuntu0.18.04","architecture":"amd64","description":"command-line network traffic analyzer","desired":"install","status":"installed"},{"codes":"ii","name":"telnet","version":"0.17-41","architecture":"amd64","description":"basic telnet client","desired":"install","status":"installed"},{"codes":"ii","name":"thermald","version":"1.7.0-5ubuntu5","architecture":"amd64","description":"Thermal monitoring and controlling daemon","desired":"install","status":"installed"},{"codes":"ii","name":"time","version":"1.7-25.1build1","architecture":"amd64","description":"GNU time program for measuring CPU resource usage","desired":"install","status":"installed"},{"codes":"ii","name":"tmux","version":"2.6-3ubuntu0.2","architecture":"amd64","description":"terminal multiplexer","desired":"install","status":"installed"},{"codes":"ii","name":"traceroute","version":"1:2.1.0-2","architecture":"amd64","description":"Traces the route taken by packets over an IPv4/IPv6 network","desired":"install","status":"installed"},{"codes":"ii","name":"tzdata","version":"2021a-0ubuntu0.18.04","architecture":"all","description":"time zone and daylight-saving time data","desired":"install","status":"installed"},{"codes":"ii","name":"ubuntu-advantage-tools","version":"17","architecture":"all","description":"management tools for Ubuntu Advantage","desired":"install","status":"installed"},{"codes":"ii","name":"ubuntu-fan","version":"0.12.10","architecture":"all","description":"Ubuntu FAN network support enablement","desired":"install","status":"installed"},{"codes":"ii","name":"ubuntu-keyring","version":"2018.09.18.1~18.04.0","architecture":"all","description":"GnuPG keys of the Ubuntu archive","desired":"install","status":"installed"},{"codes":"ii","name":"ubuntu-minimal","version":"1.417.4","architecture":"amd64","description":"Minimal core of Ubuntu","desired":"install","status":"installed"},{"codes":"ii","name":"ubuntu-release-upgrader-core","version":"1:18.04.38","architecture":"all","description":"manage release upgrades","desired":"install","status":"installed"},{"codes":"ii","name":"ubuntu-server","version":"1.417.4","architecture":"amd64","description":"The Ubuntu Server system","desired":"install","status":"installed"},{"codes":"ii","name":"ubuntu-standard","version":"1.417.4","architecture":"amd64","description":"The Ubuntu standard system","desired":"install","status":"installed"},{"codes":"ii","name":"ucf","version":"3.0038","architecture":"all","description":"Update Configuration File(s): preserve user changes to config files","desired":"install","status":"installed"},{"codes":"ii","name":"udev","version":"237-3ubuntu10.42","architecture":"amd64","description":"/dev/ and hotplug management daemon","desired":"install","status":"installed"},{"codes":"ii","name":"ufw","version":"0.36-0ubuntu0.18.04.","architecture":"all","description":"program for managing a Netfilter firewall","desired":"install","status":"installed"},{"codes":"ii","name":"uidmap","version":"1:4.5-1ubuntu2","architecture":"amd64","description":"programs to help use subuids","desired":"install","status":"installed"},{"codes":"ii","name":"unattended-upgrades","version":"1.1ubuntu1.18.04.14","architecture":"all","description":"automatic installation of security upgrades","desired":"install","status":"installed"},{"codes":"ii","name":"update-manager-core","version":"1:18.04.11.13","architecture":"all","description":"manage release upgrades","desired":"install","status":"installed"},{"codes":"ii","name":"update-notifier-common","version":"3.192.1.7","architecture":"all","description":"Files shared between update-notifier and other packages","desired":"install","status":"installed"},{"codes":"ii","name":"upower","version":"0.99.7-2ubuntu0.18.0","architecture":"amd64","description":"abstraction for power management","desired":"install","status":"installed"},{"codes":"ii","name":"ureadahead","version":"0.100.0-21","architecture":"amd64","description":"Read required files in advance","desired":"install","status":"installed"},{"codes":"ii","name":"usbmuxd","version":"1.1.0-2ubuntu0.1","architecture":"amd64","description":"USB multiplexor daemon for iPhone and iPod Touch devices","desired":"install","status":"installed"},{"codes":"ii","name":"usbutils","version":"1:007-4build1","architecture":"amd64","description":"Linux USB utilities","desired":"install","status":"installed"},{"codes":"ii","name":"util-linux","version":"2.31.1-0.4ubuntu3.7","architecture":"amd64","description":"miscellaneous system utilities","desired":"install","status":"installed"},{"codes":"ii","name":"uuid-runtime","version":"2.31.1-0.4ubuntu3.7","architecture":"amd64","description":"runtime components for the Universally Unique ID library","desired":"install","status":"installed"},{"codes":"ii","name":"vim","version":"2:8.0.1453-1ubuntu1.","architecture":"amd64","description":"Vi IMproved - enhanced vi editor","desired":"install","status":"installed"},{"codes":"ii","name":"vim-common","version":"2:8.0.1453-1ubuntu1.","architecture":"all","description":"Vi IMproved - Common files","desired":"install","status":"installed"},{"codes":"ii","name":"vim-runtime","version":"2:8.0.1453-1ubuntu1.","architecture":"all","description":"Vi IMproved - Runtime files","desired":"install","status":"installed"},{"codes":"ii","name":"vim-tiny","version":"2:8.0.1453-1ubuntu1.","architecture":"amd64","description":"Vi IMproved - enhanced vi editor - compact version","desired":"install","status":"installed"},{"codes":"ii","name":"wget","version":"1.19.4-1ubuntu2.2","architecture":"amd64","description":"retrieves files from the web","desired":"install","status":"installed"},{"codes":"ii","name":"whiptail","version":"0.52.20-1ubuntu1","architecture":"amd64","description":"Displays user-friendly dialog boxes from shell scripts","desired":"install","status":"installed"},{"codes":"ii","name":"wireless-regdb","version":"2020.11.20-0ubuntu1~","architecture":"all","description":"wireless regulatory database","desired":"install","status":"installed"},{"codes":"ii","name":"xauth","version":"1:1.0.10-1","architecture":"amd64","description":"X authentication utility","desired":"install","status":"installed"},{"codes":"ii","name":"xdelta3","version":"3.0.11-dfsg-1ubuntu1","architecture":"amd64","description":"Diff utility which works with binary files","desired":"install","status":"installed"},{"codes":"ii","name":"xdg-user-dirs","version":"0.17-1ubuntu1","architecture":"amd64","description":"tool to manage well known user directories","desired":"install","status":"installed"},{"codes":"ii","name":"xfsprogs","version":"4.9.0+nmu1ubuntu2","architecture":"amd64","description":"Utilities for managing the XFS filesystem","desired":"install","status":"installed"},{"codes":"ii","name":"xkb-data","version":"2.23.1-1ubuntu1.18.0","architecture":"all","description":"X Keyboard Extension (XKB) configuration data","desired":"install","status":"installed"},{"codes":"ii","name":"xxd","version":"2:8.0.1453-1ubuntu1.","architecture":"amd64","description":"tool to make (or reverse) a hex dump","desired":"install","status":"installed"},{"codes":"ii","name":"xz-utils","version":"5.2.2-1.3","architecture":"amd64","description":"XZ-format compression utilities","desired":"install","status":"installed"},{"codes":"ii","name":"zerofree","version":"1.0.4-1","architecture":"amd64","description":"zero free blocks from ext2, ext3 and ext4 file-systems","desired":"install","status":"installed"},{"codes":"ii","name":"zlib1g:amd64","version":"1:1.2.11.dfsg-0ubunt","architecture":"amd64","description":"compression library - runtime","desired":"install","status":"installed"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/dpkg-l.out000066400000000000000000002404151415226333200211220ustar00rootroot00000000000000Desired=Unknown/Install/Remove/Purge/Hold | Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend |/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad) ||/ Name Version Architecture Description +++-===============================-====================-====================-=================================================================== ii accountsservice 0.6.45-1ubuntu1.3 amd64 query and manipulate user account information ii acl 2.2.52-3build1 amd64 Access control list utilities ii acpi 1.7-1.1 amd64 displays information on ACPI devices ii acpid 1:2.0.28-1ubuntu1 amd64 Advanced Configuration and Power Interface event daemon ii adduser 3.116ubuntu1 all add and remove users and groups ii amd64-microcode 3.20191021.1+really3 amd64 Processor microcode firmware for AMD CPUs ii apparmor 2.12-4ubuntu5.1 amd64 user-space parser utility for AppArmor ii apport 2.20.9-0ubuntu7.23 all automatically generate crash reports for debugging ii apport-symptoms 0.20 all symptom scripts for apport ii apt 1.6.12ubuntu0.2 amd64 commandline package manager ii apt-utils 1.6.12ubuntu0.2 amd64 package management related utility programs ii at 3.1.20-3.1ubuntu2 amd64 Delayed job execution and batch processing ii base-files 10.1ubuntu2.9 amd64 Debian base system miscellaneous files ii base-passwd 3.5.44 amd64 Debian base system master password and group files ii bash 4.4.18-2ubuntu1.2 amd64 GNU Bourne Again SHell ii bash-completion 1:2.8-1ubuntu1 all programmable completion for the bash shell ii bc 1.07.1-2 amd64 GNU bc arbitrary precision calculator language ii bcache-tools 1.0.8-2build1 amd64 bcache userspace tools ii bind9-host 1:9.11.3+dfsg-1ubunt amd64 DNS lookup utility (deprecated) ii binutils 2.30-21ubuntu1~18.04 amd64 GNU assembler, linker and binary utilities ii binutils-common:amd64 2.30-21ubuntu1~18.04 amd64 Common files for the GNU assembler, linker and binary utilities ii binutils-x86-64-linux-gnu 2.30-21ubuntu1~18.04 amd64 GNU binary utilities, for x86-64-linux-gnu target ii bluez 5.48-0ubuntu3.4 amd64 Bluetooth tools and daemons ii bridge-utils 1.5-15ubuntu1 amd64 Utilities for configuring the Linux Ethernet bridge ii bsdmainutils 11.1.2ubuntu1 amd64 collection of more utilities from FreeBSD ii bsdutils 1:2.31.1-0.4ubuntu3. amd64 basic utilities from 4.4BSD-Lite ii btrfs-progs 4.15.1-1build1 amd64 Checksumming Copy on Write Filesystem utilities ii btrfs-tools 4.15.1-1build1 amd64 transitional dummy package ii build-essential 12.4ubuntu1 amd64 Informational list of build-essential packages ii busybox-initramfs 1:1.27.2-2ubuntu3.3 amd64 Standalone shell setup for initramfs ii busybox-static 1:1.27.2-2ubuntu3.3 amd64 Standalone rescue shell with tons of builtin utilities ii byobu 5.125-0ubuntu1 all text window manager, shell multiplexer, integrated DevOps environme ii bzip2 1.0.6-8.1ubuntu0.2 amd64 high-quality block-sorting file compressor - utilities ii ca-certificates 20210119~18.04.1 all Common CA certificates ii cgroupfs-mount 1.4 all Light-weight package to set up cgroupfs mounts ii cloud-guest-utils 0.30-0ubuntu5 all cloud guest utilities ii cloud-init 20.2-45-g5f7825e2-0u all Init scripts for cloud instances ii cloud-initramfs-copymods 0.40ubuntu1.1 all copy initramfs modules into root filesystem for later use ii cloud-initramfs-dyn-netconf 0.40ubuntu1.1 all write a network interface file in /run for BOOTIF ii command-not-found 18.04.5 all Suggest installation of packages in interactive bash sessions ii command-not-found-data 18.04.5 amd64 Set of data files for command-not-found. ii console-setup 1.178ubuntu2.9 all console font and keymap setup program ii console-setup-linux 1.178ubuntu2.9 all Linux specific part of console-setup ii containerd 1.3.3-0ubuntu1~18.04 amd64 daemon to control runC ii coreutils 8.28-1ubuntu1 amd64 GNU core utilities ii cpio 2.12+dfsg-6ubuntu0.1 amd64 GNU cpio -- a program to manage archives of files ii cpp 4:7.4.0-1ubuntu2.3 amd64 GNU C preprocessor (cpp) ii cpp-7 7.5.0-3ubuntu1~18.04 amd64 GNU C preprocessor ii crda 3.18-1build1 amd64 wireless Central Regulatory Domain Agent ii cron 3.0pl1-128.1ubuntu1 amd64 process scheduling daemon ii cryptsetup 2:2.0.2-1ubuntu1.1 amd64 disk encryption support - startup scripts ii cryptsetup-bin 2:2.0.2-1ubuntu1.1 amd64 disk encryption support - command line tools ii curl 7.58.0-2ubuntu3.13 amd64 command line tool for transferring data with URL syntax ii dash 0.5.8-2.10 amd64 POSIX-compliant shell ii dbus 1.12.2-1ubuntu1.2 amd64 simple interprocess messaging system (daemon and utilities) ii debconf 1.5.66ubuntu1 all Debian configuration management system ii debconf-i18n 1.5.66ubuntu1 all full internationalization support for debconf ii debianutils 4.8.4 amd64 Miscellaneous utilities specific to Debian ii dh-python 3.20180325ubuntu2 all Debian helper tools for packaging Python libraries and applications ii diffutils 1:3.6-1 amd64 File comparison utilities ii dirmngr 2.2.4-1ubuntu1.3 amd64 GNU privacy guard - network certificate management service ii distro-info-data 0.37ubuntu0.9 all information about the distributions' releases (data files) ii dmeventd 2:1.02.145-4.1ubuntu amd64 Linux Kernel Device Mapper event daemon ii dmidecode 3.1-1ubuntu0.1 amd64 SMBIOS/DMI table decoder ii dmsetup 2:1.02.145-4.1ubuntu amd64 Linux Kernel Device Mapper userspace library ii dns-root-data 2018013001 all DNS root data including root zone and DNSSEC key ii dnsmasq-base 2.79-1ubuntu0.3 amd64 Small caching DNS proxy and DHCP/TFTP server ii dnsutils 1:9.11.3+dfsg-1ubunt amd64 Clients provided with BIND ii docker 1.5-1build1 amd64 System tray for KDE3/GNOME2 docklet applications ii docker.io 19.03.6-0ubuntu1~18. amd64 Linux container runtime ii dosfstools 4.1-1 amd64 utilities for making and checking MS-DOS FAT filesystems ii dpkg 1.19.0.5ubuntu2.3 amd64 Debian package management system ii dpkg-dev 1.19.0.5ubuntu2.3 all Debian package development tools ii e2fsprogs 1.44.1-1ubuntu1.3 amd64 ext2/ext3/ext4 file system utilities ii eatmydata 105-6 all Library and utilities designed to disable fsync and friends ii ebtables 2.0.10.4-3.5ubuntu2. amd64 Ethernet bridge frame table administration ii ed 1.10-2.1 amd64 classic UNIX line editor ii eject 2.1.5+deb1+cvs200811 amd64 ejects CDs and operates CD-Changers under Linux ii ethtool 1:4.15-0ubuntu1 amd64 display or change Ethernet device settings ii fakeroot 1.22-2ubuntu1 amd64 tool for simulating superuser privileges ii fdisk 2.31.1-0.4ubuntu3.7 amd64 collection of partitioning utilities ii file 1:5.32-2ubuntu0.4 amd64 Recognize the type of data in a file using "magic" numbers ii findutils 4.6.0+git+20170828-2 amd64 utilities for finding files--find, xargs ii fonts-ubuntu-console 0.83-2 all console version of the Ubuntu Mono font ii friendly-recovery 0.2.38ubuntu1.1 all Make recovery boot mode more user-friendly ii ftp 0.17-34 amd64 classical file transfer client ii fuse 2.9.7-1ubuntu1 amd64 Filesystem in Userspace ii g++ 4:7.4.0-1ubuntu2.3 amd64 GNU C++ compiler ii g++-7 7.5.0-3ubuntu1~18.04 amd64 GNU C++ compiler ii gawk 1:4.1.4+dfsg-1build1 amd64 GNU awk, a pattern scanning and processing language ii gcc 4:7.4.0-1ubuntu2.3 amd64 GNU C compiler ii gcc-7 7.5.0-3ubuntu1~18.04 amd64 GNU C compiler ii gcc-7-base:amd64 7.5.0-3ubuntu1~18.04 amd64 GCC, the GNU Compiler Collection (base package) ii gcc-8-base:amd64 8.4.0-1ubuntu1~18.04 amd64 GCC, the GNU Compiler Collection (base package) ii gdisk 1.0.3-1 amd64 GPT fdisk text-mode partitioning tool ii geoip-database 20180315-1 all IP lookup command line tools that use the GeoIP library (country da ii gettext-base 0.19.8.1-6ubuntu0.3 amd64 GNU Internationalization utilities for the base system ii gir1.2-glib-2.0:amd64 1.56.1-1 amd64 Introspection data for GLib, GObject, Gio and GModule ii git 1:2.17.1-1ubuntu0.8 amd64 fast, scalable, distributed revision control system ii git-man 1:2.17.1-1ubuntu0.8 all fast, scalable, distributed revision control system (manual pages) ii gnupg 2.2.4-1ubuntu1.3 amd64 GNU privacy guard - a free PGP replacement ii gnupg-l10n 2.2.4-1ubuntu1.3 all GNU privacy guard - localization files ii gnupg-utils 2.2.4-1ubuntu1.3 amd64 GNU privacy guard - utility programs ii gpg 2.2.4-1ubuntu1.3 amd64 GNU Privacy Guard -- minimalist public key operations ii gpg-agent 2.2.4-1ubuntu1.3 amd64 GNU privacy guard - cryptographic agent ii gpg-wks-client 2.2.4-1ubuntu1.3 amd64 GNU privacy guard - Web Key Service client ii gpg-wks-server 2.2.4-1ubuntu1.3 amd64 GNU privacy guard - Web Key Service server ii gpgconf 2.2.4-1ubuntu1.3 amd64 GNU privacy guard - core configuration utilities ii gpgsm 2.2.4-1ubuntu1.3 amd64 GNU privacy guard - S/MIME version ii gpgv 2.2.4-1ubuntu1.3 amd64 GNU privacy guard - signature verification tool ii grep 3.1-2build1 amd64 GNU grep, egrep and fgrep ii groff-base 1.22.3-10 amd64 GNU troff text-formatting system (base system components) ii grub-common 2.02-2ubuntu8.17 amd64 GRand Unified Bootloader (common files) ii grub-gfxpayload-lists 0.7 amd64 GRUB gfxpayload blacklist ii grub-legacy-ec2 1:1 all Handles update-grub for ec2 instances ii grub-pc 2.02-2ubuntu8.17 amd64 GRand Unified Bootloader, version 2 (PC/BIOS version) ii grub-pc-bin 2.02-2ubuntu8.17 amd64 GRand Unified Bootloader, version 2 (PC/BIOS binaries) ii grub2-common 2.02-2ubuntu8.17 amd64 GRand Unified Bootloader (common files for version 2) ii gzip 1.6-5ubuntu1 amd64 GNU compression utilities ii hdparm 9.54+ds-1 amd64 tune hard disk parameters for high performance ii hostname 3.20 amd64 utility to set/show the host name or domain name ii htop 2.1.0-3 amd64 interactive processes viewer ii iftop 1.0~pre4-4 amd64 displays bandwidth usage information on an network interface ii info 6.5.0.dfsg.1-2 amd64 Standalone GNU Info documentation browser ii init 1.51 amd64 metapackage ensuring an init system is installed ii init-system-helpers 1.51 all helper tools for all init systems ii initramfs-tools 0.130ubuntu3.9 all generic modular initramfs generator (automation) ii initramfs-tools-bin 0.130ubuntu3.9 amd64 binaries used by initramfs-tools ii initramfs-tools-core 0.130ubuntu3.9 all generic modular initramfs generator (core tools) ii install-info 6.5.0.dfsg.1-2 amd64 Manage installed documentation in info format ii intel-microcode 3.20201110.0ubuntu0. amd64 Processor microcode firmware for Intel CPUs ii iproute2 4.15.0-2ubuntu1.2 amd64 networking and traffic control tools ii iptables 1.6.1-2ubuntu2 amd64 administration tools for packet filtering and NAT ii iputils-ping 3:20161105-1ubuntu3 amd64 Tools to test the reachability of network hosts ii iputils-tracepath 3:20161105-1ubuntu3 amd64 Tools to trace the network path to a remote host ii irqbalance 1.3.0-0.1ubuntu0.18. amd64 Daemon to balance interrupts for SMP systems ii isc-dhcp-client 4.3.5-3ubuntu7.1 amd64 DHCP client for automatically obtaining an IP address ii isc-dhcp-common 4.3.5-3ubuntu7.1 amd64 common manpages relevant to all of the isc-dhcp packages ii iso-codes 3.79-1 all ISO language, territory, currency, script codes and their translati ii iucode-tool 2.3.1-1 amd64 Intel processor microcode tool ii iw 4.14-0.1 amd64 tool for configuring Linux wireless devices ii jq 1.5+dfsg-2 amd64 lightweight and flexible command-line JSON processor ii kbd 2.0.4-2ubuntu1 amd64 Linux console font and keytable utilities ii keyboard-configuration 1.178ubuntu2.9 all system-wide keyboard preferences ii klibc-utils 2.0.4-9ubuntu2 amd64 small utilities built with klibc for early boot ii kmod 24-1ubuntu3.5 amd64 tools for managing Linux kernel modules ii krb5-locales 1.16-2ubuntu0.2 all internationalization support for MIT Kerberos ii landscape-common 18.01-0ubuntu3.5 amd64 Landscape administration system client - Common files ii language-pack-fr 1:18.04+20200702 all translation updates for language French ii language-pack-fr-base 1:18.04+20180712 all translations for language French ii language-selector-common 0.188.3 all Language selector for Ubuntu ii less 487-0.1 amd64 pager program similar to more ii libaccountsservice0:amd64 0.6.45-1ubuntu1.3 amd64 query and manipulate user account information - shared libraries ii libacl1:amd64 2.2.52-3build1 amd64 Access control list shared library ii libalgorithm-diff-perl 1.19.03-1 all module to find differences between files ii libalgorithm-diff-xs-perl 0.04-5 amd64 module to find differences between files (XS accelerated) ii libalgorithm-merge-perl 0.08-3 all Perl module for three-way merge of textual data ii libapparmor1:amd64 2.12-4ubuntu5.1 amd64 changehat AppArmor library ii libapt-inst2.0:amd64 1.6.12ubuntu0.2 amd64 deb package format runtime library ii libapt-pkg5.0:amd64 1.6.12ubuntu0.2 amd64 package management runtime library ii libargon2-0:amd64 0~20161029-1.1 amd64 memory-hard hashing function - runtime library ii libasan4:amd64 7.5.0-3ubuntu1~18.04 amd64 AddressSanitizer -- a fast memory error detector ii libasn1-8-heimdal:amd64 7.5.0+dfsg-1 amd64 Heimdal Kerberos - ASN.1 library ii libassuan0:amd64 2.5.1-2 amd64 IPC library for the GnuPG components ii libatm1:amd64 1:2.5.1-2build1 amd64 shared library for ATM (Asynchronous Transfer Mode) ii libatomic1:amd64 8.4.0-1ubuntu1~18.04 amd64 support library providing __atomic built-in functions ii libattr1:amd64 1:2.4.47-2build1 amd64 Extended attribute shared library ii libaudit-common 1:2.8.2-1ubuntu1 all Dynamic library for security auditing - common files ii libaudit1:amd64 1:2.8.2-1ubuntu1 amd64 Dynamic library for security auditing ii libbind9-160:amd64 1:9.11.3+dfsg-1ubunt amd64 BIND9 Shared Library used by BIND ii libbinutils:amd64 2.30-21ubuntu1~18.04 amd64 GNU binary utilities (private shared library) ii libblas3:amd64 3.7.1-4ubuntu1 amd64 Basic Linear Algebra Reference implementations, shared library ii libblkid1:amd64 2.31.1-0.4ubuntu3.7 amd64 block device ID library ii libbsd0:amd64 0.8.7-1ubuntu0.1 amd64 utility functions from BSD systems - shared library ii libbz2-1.0:amd64 1.0.6-8.1ubuntu0.2 amd64 high-quality block-sorting file compressor library - runtime ii libc-bin 2.27-3ubuntu1.2 amd64 GNU C Library: Binaries ii libc-dev-bin 2.27-3ubuntu1.2 amd64 GNU C Library: Development binaries ii libc6:amd64 2.27-3ubuntu1.2 amd64 GNU C Library: Shared libraries ii libc6-dev:amd64 2.27-3ubuntu1.2 amd64 GNU C Library: Development Libraries and Header Files ii libcap-ng0:amd64 0.7.7-3.1 amd64 An alternate POSIX capabilities library ii libcap2:amd64 1:2.25-1.2 amd64 POSIX 1003.1e capabilities (library) ii libcap2-bin 1:2.25-1.2 amd64 POSIX 1003.1e capabilities (utilities) ii libcc1-0:amd64 8.4.0-1ubuntu1~18.04 amd64 GCC cc1 plugin for GDB ii libcilkrts5:amd64 7.5.0-3ubuntu1~18.04 amd64 Intel Cilk Plus language extensions (runtime) ii libcom-err2:amd64 1.44.1-1ubuntu1.3 amd64 common error description library ii libcryptsetup12:amd64 2:2.0.2-1ubuntu1.1 amd64 disk encryption support - shared library ii libcurl3-gnutls:amd64 7.58.0-2ubuntu3.13 amd64 easy-to-use client-side URL transfer library (GnuTLS flavour) ii libcurl4:amd64 7.58.0-2ubuntu3.13 amd64 easy-to-use client-side URL transfer library (OpenSSL flavour) ii libdb5.3:amd64 5.3.28-13.1ubuntu1.1 amd64 Berkeley v5.3 Database Libraries [runtime] ii libdbus-1-3:amd64 1.12.2-1ubuntu1.2 amd64 simple interprocess messaging system (library) ii libdbus-glib-1-2:amd64 0.110-2 amd64 deprecated library for D-Bus IPC ii libdebconfclient0:amd64 0.213ubuntu1 amd64 Debian Configuration Management System (C-implementation library) ii libdevmapper-event1.02.1:amd64 2:1.02.145-4.1ubuntu amd64 Linux Kernel Device Mapper event support library ii libdevmapper1.02.1:amd64 2:1.02.145-4.1ubuntu amd64 Linux Kernel Device Mapper userspace library ii libdns-export1100 1:9.11.3+dfsg-1ubunt amd64 Exported DNS Shared Library ii libdns1100:amd64 1:9.11.3+dfsg-1ubunt amd64 DNS Shared Library used by BIND ii libdpkg-perl 1.19.0.5ubuntu2.3 all Dpkg perl modules ii libdrm-common 2.4.101-2~18.04.1 all Userspace interface to kernel DRM services -- common files ii libdrm2:amd64 2.4.101-2~18.04.1 amd64 Userspace interface to kernel DRM services -- runtime ii libdumbnet1:amd64 1.12-7build1 amd64 dumb, portable networking library -- shared library ii libeatmydata1:amd64 105-6 amd64 Library and utilities to disable fsync and friends - shared library ii libedit2:amd64 3.1-20170329-1 amd64 BSD editline and history libraries ii libelf1:amd64 0.170-0.4ubuntu0.1 amd64 library to read and write ELF files ii liberror-perl 0.17025-1 all Perl module for error/exception handling in an OO-ish way ii libestr0:amd64 0.1.10-2.1 amd64 Helper functions for handling strings (lib) ii libevent-2.1-6:amd64 2.1.8-stable-4build1 amd64 Asynchronous event notification library ii libexpat1:amd64 2.2.5-3ubuntu0.2 amd64 XML parsing C library - runtime library ii libexpat1-dev:amd64 2.2.5-3ubuntu0.2 amd64 XML parsing C library - development kit ii libext2fs2:amd64 1.44.1-1ubuntu1.3 amd64 ext2/ext3/ext4 file system libraries ii libfakeroot:amd64 1.22-2ubuntu1 amd64 tool for simulating superuser privileges - shared libraries ii libfastjson4:amd64 0.99.8-2 amd64 fast json library for C ii libfdisk1:amd64 2.31.1-0.4ubuntu3.7 amd64 fdisk partitioning library ii libffi6:amd64 3.2.1-8 amd64 Foreign Function Interface library runtime ii libfile-fcntllock-perl 0.22-3build2 amd64 Perl module for file locking with fcntl(2) ii libfreetype6:amd64 2.8.1-2ubuntu2.1 amd64 FreeType 2 font engine, shared library files ii libfribidi0:amd64 0.19.7-2 amd64 Free Implementation of the Unicode BiDi algorithm ii libfuse2:amd64 2.9.7-1ubuntu1 amd64 Filesystem in Userspace (library) ii libgcc-7-dev:amd64 7.5.0-3ubuntu1~18.04 amd64 GCC support library (development files) ii libgcc1:amd64 1:8.4.0-1ubuntu1~18. amd64 GCC support library ii libgcrypt20:amd64 1.8.1-4ubuntu1.2 amd64 LGPL Crypto library - runtime library ii libgdbm-compat4:amd64 1.14.1-6 amd64 GNU dbm database routines (legacy support runtime version) ii libgdbm5:amd64 1.14.1-6 amd64 GNU dbm database routines (runtime version) ii libgeoip1:amd64 1.6.12-1 amd64 non-DNS IP-to-country resolver library ii libgirepository-1.0-1:amd64 1.56.1-1 amd64 Library for handling GObject introspection data (runtime library) ii libglib2.0-0:amd64 2.56.4-0ubuntu0.18.0 amd64 GLib library of C routines ii libglib2.0-data 2.56.4-0ubuntu0.18.0 all Common files for GLib library ii libgmp10:amd64 2:6.1.2+dfsg-2 amd64 Multiprecision arithmetic library ii libgnutls30:amd64 3.5.18-1ubuntu1.4 amd64 GNU TLS library - main runtime library ii libgomp1:amd64 8.4.0-1ubuntu1~18.04 amd64 GCC OpenMP (GOMP) support library ii libgpg-error0:amd64 1.27-6 amd64 library for common error values and messages in GnuPG components ii libgpm2:amd64 1.20.7-5 amd64 General Purpose Mouse - shared library ii libgssapi-krb5-2:amd64 1.16-2ubuntu0.2 amd64 MIT Kerberos runtime libraries - krb5 GSS-API Mechanism ii libgssapi3-heimdal:amd64 7.5.0+dfsg-1 amd64 Heimdal Kerberos - GSSAPI support library ii libgudev-1.0-0:amd64 1:232-2 amd64 GObject-based wrapper library for libudev ii libhcrypto4-heimdal:amd64 7.5.0+dfsg-1 amd64 Heimdal Kerberos - crypto library ii libheimbase1-heimdal:amd64 7.5.0+dfsg-1 amd64 Heimdal Kerberos - Base library ii libheimntlm0-heimdal:amd64 7.5.0+dfsg-1 amd64 Heimdal Kerberos - NTLM support library ii libhogweed4:amd64 3.4-1 amd64 low level cryptographic library (public-key cryptos) ii libhx509-5-heimdal:amd64 7.5.0+dfsg-1 amd64 Heimdal Kerberos - X509 support library ii libicu60:amd64 60.2-3ubuntu3.1 amd64 International Components for Unicode ii libidn11:amd64 1.33-2.1ubuntu1.2 amd64 GNU Libidn library, implementation of IETF IDN specifications ii libidn2-0:amd64 2.0.4-1.1ubuntu0.2 amd64 Internationalized domain names (IDNA2008/TR46) library ii libimobiledevice6:amd64 1.2.1~git20171128.5a amd64 Library for communicating with the iPhone and iPod Touch ii libip4tc0:amd64 1.6.1-2ubuntu2 amd64 netfilter libip4tc library ii libip6tc0:amd64 1.6.1-2ubuntu2 amd64 netfilter libip6tc library ii libiptc0:amd64 1.6.1-2ubuntu2 amd64 netfilter libiptc library ii libirs160:amd64 1:9.11.3+dfsg-1ubunt amd64 DNS Shared Library used by BIND ii libisc-export169:amd64 1:9.11.3+dfsg-1ubunt amd64 Exported ISC Shared Library ii libisc169:amd64 1:9.11.3+dfsg-1ubunt amd64 ISC Shared Library used by BIND ii libisccc160:amd64 1:9.11.3+dfsg-1ubunt amd64 Command Channel Library used by BIND ii libisccfg160:amd64 1:9.11.3+dfsg-1ubunt amd64 Config File Handling Library used by BIND ii libisl19:amd64 0.19-1 amd64 manipulating sets and relations of integer points bounded by linear ii libisns0:amd64 0.97-2build1 amd64 Internet Storage Name Service - shared libraries ii libitm1:amd64 8.4.0-1ubuntu1~18.04 amd64 GNU Transactional Memory Library ii libjq1:amd64 1.5+dfsg-2 amd64 lightweight and flexible command-line JSON processor - shared libra ii libjson-c3:amd64 0.12.1-1.3ubuntu0.3 amd64 JSON manipulation library - shared library ii libk5crypto3:amd64 1.16-2ubuntu0.2 amd64 MIT Kerberos runtime libraries - Crypto Library ii libkeyutils1:amd64 1.5.9-9.2ubuntu2 amd64 Linux Key Management Utilities (library) ii libklibc 2.0.4-9ubuntu2 amd64 minimal libc subset for use with initramfs ii libkmod2:amd64 24-1ubuntu3.5 amd64 libkmod shared library ii libkrb5-26-heimdal:amd64 7.5.0+dfsg-1 amd64 Heimdal Kerberos - libraries ii libkrb5-3:amd64 1.16-2ubuntu0.2 amd64 MIT Kerberos runtime libraries ii libkrb5support0:amd64 1.16-2ubuntu0.2 amd64 MIT Kerberos runtime libraries - Support library ii libksba8:amd64 1.3.5-2 amd64 X.509 and CMS support library ii libldap-2.4-2:amd64 2.4.45+dfsg-1ubuntu1 amd64 OpenLDAP libraries ii libldap-common 2.4.45+dfsg-1ubuntu1 all OpenLDAP common files for libraries ii liblinear3:amd64 2.1.0+dfsg-2 amd64 Library for Large Linear Classification ii liblocale-gettext-perl 1.07-3build2 amd64 module using libc functions for internationalization in Perl ii liblsan0:amd64 8.4.0-1ubuntu1~18.04 amd64 LeakSanitizer -- a memory leak detector (runtime) ii liblua5.3-0:amd64 5.3.3-1ubuntu0.18.04 amd64 Shared library for the Lua interpreter version 5.3 ii liblvm2app2.2:amd64 2.02.176-4.1ubuntu3. amd64 LVM2 application library ii liblvm2cmd2.02:amd64 2.02.176-4.1ubuntu3. amd64 LVM2 command library ii liblwres160:amd64 1:9.11.3+dfsg-1ubunt amd64 Lightweight Resolver Library used by BIND ii liblxc-common 3.0.3-0ubuntu1~18.04 amd64 Linux Containers userspace tools (common tools) ii liblxc1 3.0.3-0ubuntu1~18.04 amd64 Linux Containers userspace tools (library) ii liblz4-1:amd64 0.0~r131-2ubuntu3 amd64 Fast LZ compression algorithm library - runtime ii liblzma5:amd64 5.2.2-1.3 amd64 XZ-format compression library ii liblzo2-2:amd64 2.08-1.2 amd64 data compression library ii libmagic-mgc 1:5.32-2ubuntu0.4 amd64 File type determination library using "magic" numbers (compiled mag ii libmagic1:amd64 1:5.32-2ubuntu0.4 amd64 Recognize the type of data in a file using "magic" numbers - librar ii libmnl0:amd64 1.0.4-2 amd64 minimalistic Netlink communication library ii libmount1:amd64 2.31.1-0.4ubuntu3.7 amd64 device mounting library ii libmpc3:amd64 1.1.0-1 amd64 multiple precision complex floating-point library ii libmpdec2:amd64 2.4.2-1ubuntu1 amd64 library for decimal floating point arithmetic (runtime library) ii libmpfr6:amd64 4.0.1-1 amd64 multiple precision floating-point computation ii libmpx2:amd64 8.4.0-1ubuntu1~18.04 amd64 Intel memory protection extensions (runtime) ii libmspack0:amd64 0.6-3ubuntu0.3 amd64 library for Microsoft compression formats (shared library) ii libncurses5:amd64 6.1-1ubuntu1.18.04 amd64 shared libraries for terminal handling ii libncursesw5:amd64 6.1-1ubuntu1.18.04 amd64 shared libraries for terminal handling (wide character support) ii libnetfilter-conntrack3:amd64 1.0.6-2 amd64 Netfilter netlink-conntrack library ii libnettle6:amd64 3.4-1 amd64 low level cryptographic library (symmetric and one-way cryptos) ii libnewt0.52:amd64 0.52.20-1ubuntu1 amd64 Not Erik's Windowing Toolkit - text mode windowing with slang ii libnfnetlink0:amd64 1.0.1-3 amd64 Netfilter netlink library ii libnghttp2-14:amd64 1.30.0-1ubuntu1 amd64 library implementing HTTP/2 protocol (shared library) ii libnih1:amd64 1.0.3-6ubuntu2 amd64 NIH Utility Library ii libnl-3-200:amd64 3.2.29-0ubuntu3 amd64 library for dealing with netlink sockets ii libnl-genl-3-200:amd64 3.2.29-0ubuntu3 amd64 library for dealing with netlink sockets - generic netlink ii libnpth0:amd64 1.5-3 amd64 replacement for GNU Pth using system threads ii libnss-systemd:amd64 237-3ubuntu10.42 amd64 nss module providing dynamic user and group name resolution ii libntfs-3g88 1:2017.3.23-2ubuntu0 amd64 read/write NTFS driver for FUSE (runtime library) ii libnuma1:amd64 2.0.11-2.1ubuntu0.1 amd64 Libraries for controlling NUMA policy ii libonig4:amd64 6.7.0-1 amd64 regular expressions library ii libopts25:amd64 1:5.18.12-4 amd64 automated option processing library based on autogen ii libp11-kit0:amd64 0.23.9-2ubuntu0.1 amd64 library for loading and coordinating access to PKCS#11 modules - ru ii libpam-cap:amd64 1:2.25-1.2 amd64 POSIX 1003.1e capabilities (PAM module) ii libpam-modules:amd64 1.1.8-3.6ubuntu2.18. amd64 Pluggable Authentication Modules for PAM ii libpam-modules-bin 1.1.8-3.6ubuntu2.18. amd64 Pluggable Authentication Modules for PAM - helper binaries ii libpam-runtime 1.1.8-3.6ubuntu2.18. all Runtime support for the PAM library ii libpam-systemd:amd64 237-3ubuntu10.42 amd64 system and service manager - PAM module ii libpam0g:amd64 1.1.8-3.6ubuntu2.18. amd64 Pluggable Authentication Modules library ii libparted2:amd64 3.2-20ubuntu0.2 amd64 disk partition manipulator - shared library ii libpcap0.8:amd64 1.8.1-6ubuntu1.18.04 amd64 system interface for user-level packet capture ii libpci3:amd64 1:3.5.2-1ubuntu1.1 amd64 Linux PCI Utilities (shared library) ii libpcre3:amd64 2:8.39-9 amd64 Old Perl 5 Compatible Regular Expression Library - runtime files ii libperl5.26:amd64 5.26.1-6ubuntu0.5 amd64 shared Perl library ii libpipeline1:amd64 1.5.0-1 amd64 pipeline manipulation library ii libplist3:amd64 2.0.0-2ubuntu1 amd64 Library for handling Apple binary and XML property lists ii libplymouth4:amd64 0.9.3-1ubuntu7.18.04 amd64 graphical boot animation and logger - shared libraries ii libpng16-16:amd64 1.6.34-1ubuntu0.18.0 amd64 PNG library - runtime (version 1.6) ii libpolkit-agent-1-0:amd64 0.105-20ubuntu0.18.0 amd64 PolicyKit Authentication Agent API ii libpolkit-backend-1-0:amd64 0.105-20ubuntu0.18.0 amd64 PolicyKit backend API ii libpolkit-gobject-1-0:amd64 0.105-20ubuntu0.18.0 amd64 PolicyKit Authorization API ii libpopt0:amd64 1.16-11 amd64 lib for parsing cmdline parameters ii libprocps6:amd64 2:3.3.12-3ubuntu1.2 amd64 library for accessing process information from /proc ii libpsl5:amd64 0.19.1-5build1 amd64 Library for Public Suffix List (shared libraries) ii libpython3-dev:amd64 3.6.7-1~18.04 amd64 header files and a static library for Python (default) ii libpython3-stdlib:amd64 3.6.7-1~18.04 amd64 interactive high-level object-oriented language (default python3 ve ii libpython3.6:amd64 3.6.9-1~18.04ubuntu1 amd64 Shared Python runtime library (version 3.6) ii libpython3.6-dev:amd64 3.6.9-1~18.04ubuntu1 amd64 Header files and a static library for Python (v3.6) ii libpython3.6-minimal:amd64 3.6.9-1~18.04ubuntu1 amd64 Minimal subset of the Python language (version 3.6) ii libpython3.6-stdlib:amd64 3.6.9-1~18.04ubuntu1 amd64 Interactive high-level object-oriented language (standard library, ii libquadmath0:amd64 8.4.0-1ubuntu1~18.04 amd64 GCC Quad-Precision Math Library ii libreadline5:amd64 5.2+dfsg-3build1 amd64 GNU readline and history libraries, run-time libraries ii libreadline7:amd64 7.0-3 amd64 GNU readline and history libraries, run-time libraries ii libroken18-heimdal:amd64 7.5.0+dfsg-1 amd64 Heimdal Kerberos - roken support library ii librtmp1:amd64 2.4+20151223.gitfa86 amd64 toolkit for RTMP streams (shared library) ii libsasl2-2:amd64 2.1.27~101-g0780600+ amd64 Cyrus SASL - authentication abstraction library ii libsasl2-modules:amd64 2.1.27~101-g0780600+ amd64 Cyrus SASL - pluggable authentication modules ii libsasl2-modules-db:amd64 2.1.27~101-g0780600+ amd64 Cyrus SASL - pluggable authentication modules (DB) ii libseccomp2:amd64 2.4.3-1ubuntu3.18.04 amd64 high level interface to Linux seccomp filter ii libselinux1:amd64 2.7-2build2 amd64 SELinux runtime shared libraries ii libsemanage-common 2.7-2build2 all Common files for SELinux policy management libraries ii libsemanage1:amd64 2.7-2build2 amd64 SELinux policy management library ii libsensors4:amd64 1:3.4.0-4 amd64 library to read temperature/voltage/fan sensors ii libsepol1:amd64 2.7-1 amd64 SELinux library for manipulating binary security policies ii libsigsegv2:amd64 2.12-1 amd64 Library for handling page faults in a portable way ii libslang2:amd64 2.3.1a-3ubuntu1 amd64 S-Lang programming library - runtime version ii libsmartcols1:amd64 2.31.1-0.4ubuntu3.7 amd64 smart column output alignment library ii libsqlite3-0:amd64 3.22.0-1ubuntu0.4 amd64 SQLite 3 shared library ii libss2:amd64 1.44.1-1ubuntu1.3 amd64 command-line interface parsing library ii libssl-dev:amd64 1.1.1-1ubuntu2.1~18. amd64 Secure Sockets Layer toolkit - development files ii libssl1.0.0:amd64 1.0.2n-1ubuntu5.6 amd64 Secure Sockets Layer toolkit - shared libraries ii libssl1.1:amd64 1.1.1-1ubuntu2.1~18. amd64 Secure Sockets Layer toolkit - shared libraries ii libstdc++-7-dev:amd64 7.5.0-3ubuntu1~18.04 amd64 GNU Standard C++ Library v3 (development files) ii libstdc++6:amd64 8.4.0-1ubuntu1~18.04 amd64 GNU Standard C++ Library v3 ii libsystemd0:amd64 237-3ubuntu10.42 amd64 systemd utility library ii libtasn1-6:amd64 4.13-2 amd64 Manage ASN.1 structures (runtime) ii libtext-charwidth-perl 0.04-7.1 amd64 get display widths of characters on the terminal ii libtext-iconv-perl 1.7-5build6 amd64 converts between character sets in Perl ii libtext-wrapi18n-perl 0.06-7.1 all internationalized substitute of Text::Wrap ii libtinfo5:amd64 6.1-1ubuntu1.18.04 amd64 shared low-level terminfo library for terminal handling ii libtsan0:amd64 8.4.0-1ubuntu1~18.04 amd64 ThreadSanitizer -- a Valgrind-based detector of data races (runtime ii libubsan0:amd64 7.5.0-3ubuntu1~18.04 amd64 UBSan -- undefined behaviour sanitizer (runtime) ii libudev1:amd64 237-3ubuntu10.42 amd64 libudev shared library ii libunistring2:amd64 0.9.9-0ubuntu2 amd64 Unicode string library for C ii libunwind8:amd64 1.2.1-8 amd64 library to determine the call-chain of a program - runtime ii libupower-glib3:amd64 0.99.7-2ubuntu0.18.0 amd64 abstraction for power management - shared library ii libusb-1.0-0:amd64 2:1.0.21-2 amd64 userspace USB programming library ii libusbmuxd4:amd64 1.1.0~git20171206.c7 amd64 USB multiplexor daemon for iPhone and iPod Touch devices - library ii libutempter0:amd64 1.1.6-3 amd64 privileged helper for utmp/wtmp updates (runtime) ii libuuid1:amd64 2.31.1-0.4ubuntu3.7 amd64 Universally Unique ID library ii libuv1:amd64 1.18.0-3 amd64 asynchronous event notification library - runtime library ii libwind0-heimdal:amd64 7.5.0+dfsg-1 amd64 Heimdal Kerberos - stringprep implementation ii libwrap0:amd64 7.6.q-27 amd64 Wietse Venema's TCP wrappers library ii libx11-6:amd64 2:1.6.4-3ubuntu0.3 amd64 X11 client-side library ii libx11-data 2:1.6.4-3ubuntu0.3 all X11 client-side library ii libxau6:amd64 1:1.0.8-1ubuntu1 amd64 X11 authorisation library ii libxcb1:amd64 1.13-2~ubuntu18.04 amd64 X C Binding ii libxdmcp6:amd64 1:1.1.2-3 amd64 X11 Display Manager Control Protocol library ii libxext6:amd64 2:1.3.3-1 amd64 X11 miscellaneous extension library ii libxml2:amd64 2.9.4+dfsg1-6.1ubunt amd64 GNOME XML library ii libxmlsec1:amd64 1.2.25-1build1 amd64 XML security library ii libxmlsec1-openssl:amd64 1.2.25-1build1 amd64 Openssl engine for the XML security library ii libxmuu1:amd64 2:1.1.2-2 amd64 X11 miscellaneous micro-utility library ii libxslt1.1:amd64 1.1.29-5ubuntu0.2 amd64 XSLT 1.0 processing library - runtime library ii libxtables12:amd64 1.6.1-2ubuntu2 amd64 netfilter xtables library ii libyaml-0-2:amd64 0.1.7-2ubuntu3 amd64 Fast YAML 1.1 parser and emitter library ii libzstd1:amd64 1.3.3+dfsg-2ubuntu1. amd64 fast lossless compression algorithm ii linux-base 4.5ubuntu1.2 all Linux image base package ii linux-firmware 1.173.19 all Firmware for Linux kernel drivers ii linux-generic 4.15.0.140.127 amd64 Complete Generic Linux kernel and headers ii linux-headers-4.15.0-137 4.15.0-137.141 all Header files related to Linux kernel version 4.15.0 ii linux-headers-4.15.0-137-generi 4.15.0-137.141 amd64 Linux kernel headers for version 4.15.0 on 64 bit x86 SMP ii linux-headers-4.15.0-139 4.15.0-139.143 all Header files related to Linux kernel version 4.15.0 ii linux-headers-4.15.0-139-generi 4.15.0-139.143 amd64 Linux kernel headers for version 4.15.0 on 64 bit x86 SMP ii linux-headers-4.15.0-140 4.15.0-140.144 all Header files related to Linux kernel version 4.15.0 ii linux-headers-4.15.0-140-generi 4.15.0-140.144 amd64 Linux kernel headers for version 4.15.0 on 64 bit x86 SMP ii linux-headers-generic 4.15.0.140.127 amd64 Generic Linux kernel headers rc linux-image-4.15.0-101-generic 4.15.0-101.102 amd64 Signed kernel image generic rc linux-image-4.15.0-109-generic 4.15.0-109.110 amd64 Signed kernel image generic rc linux-image-4.15.0-111-generic 4.15.0-111.112 amd64 Signed kernel image generic rc linux-image-4.15.0-112-generic 4.15.0-112.113 amd64 Signed kernel image generic rc linux-image-4.15.0-126-generic 4.15.0-126.129 amd64 Signed kernel image generic rc linux-image-4.15.0-128-generic 4.15.0-128.131 amd64 Signed kernel image generic rc linux-image-4.15.0-135-generic 4.15.0-135.139 amd64 Signed kernel image generic rc linux-image-4.15.0-136-generic 4.15.0-136.140 amd64 Signed kernel image generic ii linux-image-4.15.0-137-generic 4.15.0-137.141 amd64 Signed kernel image generic ii linux-image-4.15.0-139-generic 4.15.0-139.143 amd64 Signed kernel image generic ii linux-image-4.15.0-140-generic 4.15.0-140.144 amd64 Signed kernel image generic rc linux-image-4.15.0-55-generic 4.15.0-55.60 amd64 Signed kernel image generic rc linux-image-4.15.0-58-generic 4.15.0-58.64 amd64 Signed kernel image generic rc linux-image-4.15.0-65-generic 4.15.0-65.74 amd64 Signed kernel image generic rc linux-image-4.15.0-66-generic 4.15.0-66.75 amd64 Signed kernel image generic rc linux-image-4.15.0-69-generic 4.15.0-69.78 amd64 Signed kernel image generic rc linux-image-4.15.0-70-generic 4.15.0-70.79 amd64 Signed kernel image generic rc linux-image-4.15.0-72-generic 4.15.0-72.81 amd64 Signed kernel image generic rc linux-image-4.15.0-76-generic 4.15.0-76.86 amd64 Signed kernel image generic rc linux-image-4.15.0-88-generic 4.15.0-88.88 amd64 Signed kernel image generic rc linux-image-4.15.0-96-generic 4.15.0-96.97 amd64 Signed kernel image generic rc linux-image-4.15.0-99-generic 4.15.0-99.100 amd64 Signed kernel image generic ii linux-image-generic 4.15.0.140.127 amd64 Generic Linux kernel image ii linux-libc-dev:amd64 4.15.0-140.144 amd64 Linux Kernel Headers for development rc linux-modules-4.15.0-101-generi 4.15.0-101.102 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-4.15.0-109-generi 4.15.0-109.110 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-4.15.0-111-generi 4.15.0-111.112 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-4.15.0-112-generi 4.15.0-112.113 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-4.15.0-126-generi 4.15.0-126.129 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-4.15.0-128-generi 4.15.0-128.131 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-4.15.0-135-generi 4.15.0-135.139 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-4.15.0-136-generi 4.15.0-136.140 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP ii linux-modules-4.15.0-137-generi 4.15.0-137.141 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP ii linux-modules-4.15.0-139-generi 4.15.0-139.143 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP ii linux-modules-4.15.0-140-generi 4.15.0-140.144 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-4.15.0-55-generic 4.15.0-55.60 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-4.15.0-58-generic 4.15.0-58.64 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-4.15.0-65-generic 4.15.0-65.74 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-4.15.0-66-generic 4.15.0-66.75 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-4.15.0-69-generic 4.15.0-69.78 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-4.15.0-70-generic 4.15.0-70.79 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-4.15.0-72-generic 4.15.0-72.81 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-4.15.0-76-generic 4.15.0-76.86 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-4.15.0-88-generic 4.15.0-88.88 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-4.15.0-96-generic 4.15.0-96.97 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-4.15.0-99-generic 4.15.0-99.100 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-extra-4.15.0-101- 4.15.0-101.102 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-extra-4.15.0-109- 4.15.0-109.110 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-extra-4.15.0-111- 4.15.0-111.112 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-extra-4.15.0-112- 4.15.0-112.113 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-extra-4.15.0-126- 4.15.0-126.129 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-extra-4.15.0-128- 4.15.0-128.131 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-extra-4.15.0-135- 4.15.0-135.139 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-extra-4.15.0-136- 4.15.0-136.140 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP ii linux-modules-extra-4.15.0-137- 4.15.0-137.141 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP ii linux-modules-extra-4.15.0-139- 4.15.0-139.143 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP ii linux-modules-extra-4.15.0-140- 4.15.0-140.144 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-extra-4.15.0-55-g 4.15.0-55.60 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-extra-4.15.0-58-g 4.15.0-58.64 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-extra-4.15.0-65-g 4.15.0-65.74 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-extra-4.15.0-66-g 4.15.0-66.75 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-extra-4.15.0-69-g 4.15.0-69.78 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-extra-4.15.0-70-g 4.15.0-70.79 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-extra-4.15.0-72-g 4.15.0-72.81 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-extra-4.15.0-76-g 4.15.0-76.86 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-extra-4.15.0-88-g 4.15.0-88.88 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-extra-4.15.0-96-g 4.15.0-96.97 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP rc linux-modules-extra-4.15.0-99-g 4.15.0-99.100 amd64 Linux kernel extra modules for version 4.15.0 on 64 bit x86 SMP ii locales 2.27-3ubuntu1.2 all GNU C Library: National Language (locale) data [support] ii login 1:4.5-1ubuntu2 amd64 system login tools ii logrotate 3.11.0-0.1ubuntu1 amd64 Log rotation utility ii lsb-base 9.20170808ubuntu1 all Linux Standard Base init script functionality ii lsb-release 9.20170808ubuntu1 all Linux Standard Base version reporting utility ii lshw 02.18-0.1ubuntu6.18. amd64 information about hardware configuration ii lsof 4.89+dfsg-0.1 amd64 Utility to list open files ii ltrace 0.7.3-6ubuntu1 amd64 Tracks runtime library calls in dynamically linked programs ii lvm2 2.02.176-4.1ubuntu3. amd64 Linux Logical Volume Manager ii lxcfs 3.0.3-0ubuntu1~18.04 amd64 FUSE based filesystem for LXC ii lxd 3.0.3-0ubuntu1~18.04 amd64 Container hypervisor based on LXC - daemon ii lxd-client 3.0.3-0ubuntu1~18.04 amd64 Container hypervisor based on LXC - client ii make 4.1-9.1ubuntu1 amd64 utility for directing compilation ii man-db 2.8.3-2ubuntu0.1 amd64 on-line manual pager ii manpages 4.15-1 all Manual pages about using a GNU/Linux system ii manpages-dev 4.15-1 all Manual pages about using GNU/Linux for development ii mawk 1.3.3-17ubuntu3 amd64 a pattern scanning and text processing language ii mdadm 4.1~rc1-3~ubuntu18.0 amd64 tool to administer Linux MD arrays (software RAID) ii mime-support 3.60ubuntu1 all MIME files 'mime.types' & 'mailcap', and support programs ii mlocate 0.26-2ubuntu3.1 amd64 quickly find files on the filesystem based on their name ii mount 2.31.1-0.4ubuntu3.7 amd64 tools for mounting and manipulating filesystems ii mtr-tiny 0.92-1 amd64 Full screen ncurses traceroute tool ii multiarch-support 2.27-3ubuntu1.2 amd64 Transitional package to ensure multiarch compatibility ii musl:amd64 1.1.19-1 amd64 standard C library ii musl-dev:amd64 1.1.19-1 amd64 standard C library development files ii musl-tools 1.1.19-1 amd64 standard C library tools ii nano 2.9.3-2 amd64 small, friendly text editor inspired by Pico ii ncurses-base 6.1-1ubuntu1.18.04 all basic terminal type definitions ii ncurses-bin 6.1-1ubuntu1.18.04 amd64 terminal-related programs and man pages ii ncurses-term 6.1-1ubuntu1.18.04 all additional terminal type definitions ii net-tools 1.60+git20161116.90d amd64 NET-3 networking toolkit ii netbase 5.4 all Basic TCP/IP networking system ii netcat-openbsd 1.187-1ubuntu0.1 amd64 TCP/IP swiss army knife ii netplan.io 0.97-0ubuntu1~18.04. amd64 YAML network configuration abstraction for various backends ii networkd-dispatcher 1.7-0ubuntu3.3 all Dispatcher service for systemd-networkd connection status changes ii nmap 7.60-1ubuntu5 amd64 The Network Mapper ii nplan 0.99-0ubuntu3~18.04. all YAML network configuration abstraction - transitional package ii ntfs-3g 1:2017.3.23-2ubuntu0 amd64 read/write NTFS driver for FUSE ii ntp 1:4.2.8p10+dfsg-5ubu amd64 Network Time Protocol daemon and utility programs ii open-iscsi 2.0.874-5ubuntu2.10 amd64 iSCSI initiator tools ii open-vm-tools 2:11.0.5-4ubuntu0.18 amd64 Open VMware Tools for virtual machines hosted on VMware (CLI) ii openssh-client 1:7.6p1-4ubuntu0.3 amd64 secure shell (SSH) client, for secure access to remote machines ii openssh-server 1:7.6p1-4ubuntu0.3 amd64 secure shell (SSH) server, for secure access from remote machines ii openssh-sftp-server 1:7.6p1-4ubuntu0.3 amd64 secure shell (SSH) sftp server module, for SFTP access from remote ii openssl 1.1.1-1ubuntu2.1~18. amd64 Secure Sockets Layer toolkit - cryptographic utility ii os-prober 1.74ubuntu1 amd64 utility to detect other OSes on a set of drives ii overlayroot 0.40ubuntu1.1 all use an overlayfs on top of a read-only root filesystem ii parted 3.2-20ubuntu0.2 amd64 disk partition manipulator ii passwd 1:4.5-1ubuntu2 amd64 change and administer password and group data ii pastebinit 1.5-2 all command-line pastebin client ii patch 2.7.6-2ubuntu1.1 amd64 Apply a diff file to an original ii pciutils 1:3.5.2-1ubuntu1.1 amd64 Linux PCI Utilities ii perl 5.26.1-6ubuntu0.5 amd64 Larry Wall's Practical Extraction and Report Language ii perl-base 5.26.1-6ubuntu0.5 amd64 minimal Perl system ii perl-modules-5.26 5.26.1-6ubuntu0.5 all Core Perl modules ii pigz 2.4-1 amd64 Parallel Implementation of GZip ii pinentry-curses 1.1.0-1 amd64 curses-based PIN or pass-phrase entry dialog for GnuPG ii pkg-config 0.29.1-0ubuntu2 amd64 manage compile and link flags for libraries ii plymouth 0.9.3-1ubuntu7.18.04 amd64 boot animation, logger and I/O multiplexer ii plymouth-theme-ubuntu-text 0.9.3-1ubuntu7.18.04 amd64 boot animation, logger and I/O multiplexer - ubuntu text theme ii policykit-1 0.105-20ubuntu0.18.0 amd64 framework for managing administrative policies and privileges ii pollinate 4.33-0ubuntu1~18.04. all seed the pseudo random number generator ii popularity-contest 1.66ubuntu1 all Vote for your favourite packages automatically ii powermgmt-base 1.33 all common utils for power management ii procps 2:3.3.12-3ubuntu1.2 amd64 /proc file system utilities ii psmisc 23.1-1ubuntu0.1 amd64 utilities that use the proc file system ii publicsuffix 20180223.1310-1 all accurate, machine-readable list of domain name suffixes ii python-apt-common 1.6.5ubuntu0.5 all Python interface to libapt-pkg (locales) ii python-pip-whl 9.0.1-2.3~ubuntu1.18 all Python package installer ii python3 3.6.7-1~18.04 amd64 interactive high-level object-oriented language (default python3 ve ii python3-apport 2.20.9-0ubuntu7.23 all Python 3 library for Apport crash report handling ii python3-apt 1.6.5ubuntu0.5 amd64 Python 3 interface to libapt-pkg ii python3-asn1crypto 0.24.0-1 all Fast ASN.1 parser and serializer (Python 3) ii python3-attr 17.4.0-2 all Attributes without boilerplate (Python 3) ii python3-automat 0.6.0-1 all Self-service finite-state machines for the programmer on the go ii python3-blinker 1.4+dfsg1-0.1 all fast, simple object-to-object and broadcast signaling library ii python3-certifi 2018.1.18-2 all root certificates for validating SSL certs and verifying TLS hosts ii python3-cffi-backend 1.11.5-1 amd64 Foreign Function Interface for Python 3 calling C code - runtime ii python3-chardet 3.0.4-1 all universal character encoding detector for Python3 ii python3-click 6.7-3 all Simple wrapper around optparse for powerful command line utilities ii python3-colorama 0.3.7-1 all Cross-platform colored terminal text in Python - Python 3.x ii python3-commandnotfound 18.04.5 all Python 3 bindings for command-not-found. ii python3-configobj 5.0.6-2 all simple but powerful config file reader and writer for Python 3 ii python3-constantly 15.1.0-1 all Symbolic constants in Python ii python3-crypto 2.6.1-8ubuntu2 amd64 cryptographic algorithms and protocols for Python 3 ii python3-cryptography 2.1.4-1ubuntu1.4 amd64 Python library exposing cryptographic recipes and primitives (Pytho ii python3-dbus 1.2.6-1 amd64 simple interprocess messaging system (Python 3 interface) ii python3-debconf 1.5.66ubuntu1 all interact with debconf from Python 3 ii python3-debian 0.1.32 all Python 3 modules to work with Debian-related data formats ii python3-dev 3.6.7-1~18.04 amd64 header files and a static library for Python (default) ii python3-distro-info 0.18ubuntu0.18.04.1 all information about distributions' releases (Python 3 module) ii python3-distupgrade 1:18.04.38 all manage release upgrades ii python3-distutils 3.6.9-1~18.04 all distutils package for Python 3.x ii python3-gdbm:amd64 3.6.9-1~18.04 amd64 GNU dbm database support for Python 3.x ii python3-gi 3.26.1-2ubuntu1 amd64 Python 3 bindings for gobject-introspection libraries ii python3-httplib2 0.9.2+dfsg-1ubuntu0. all comprehensive HTTP client library written for Python3 ii python3-hyperlink 17.3.1-2 all Immutable, Pythonic, correct URLs. ii python3-idna 2.6-1 all Python IDNA2008 (RFC 5891) handling (Python 3) ii python3-incremental 16.10.1-3 all Library for versioning Python projects. ii python3-jinja2 2.10-1ubuntu0.18.04. all small but fast and easy to use stand-alone template engine ii python3-json-pointer 1.10-1 all resolve JSON pointers - Python 3.x ii python3-jsonpatch 1.19+really1.16-1fak all library to apply JSON patches - Python 3.x ii python3-jsonschema 2.6.0-2 all An(other) implementation of JSON Schema (Draft 3 and 4) - Python 3. ii python3-jwt 1.5.3+ds1-1 all Python 3 implementation of JSON Web Token ii python3-keyring 10.6.0-1 all store and access your passwords safely - Python 3 version of the pa ii python3-keyrings.alt 3.0-1 all alternate backend implementations for python3-keyring ii python3-lib2to3 3.6.9-1~18.04 all Interactive high-level object-oriented language (2to3, version 3.6) ii python3-markupsafe 1.0-1build1 amd64 HTML/XHTML/XML string library for Python 3 ii python3-minimal 3.6.7-1~18.04 amd64 minimal subset of the Python language (default python3 version) ii python3-netifaces 0.10.4-0.1build4 amd64 portable network interface information - Python 3.x ii python3-newt:amd64 0.52.20-1ubuntu1 amd64 NEWT module for Python3 ii python3-oauthlib 2.0.6-1 all generic, spec-compliant implementation of OAuth for Python3 ii python3-openssl 17.5.0-1ubuntu1 all Python 3 wrapper around the OpenSSL library ii python3-pam 0.4.2-13.2ubuntu4 amd64 Python interface to the PAM library ii python3-pip 9.0.1-2.3~ubuntu1.18 all Python package installer ii python3-pkg-resources 39.0.1-2 all Package Discovery and Resource Access using pkg_resources ii python3-problem-report 2.20.9-0ubuntu7.23 all Python 3 library to handle problem reports ii python3-pyasn1 0.4.2-3 all ASN.1 library for Python (Python 3 module) ii python3-pyasn1-modules 0.2.1-0.2 all Collection of protocols modules written in ASN.1 language (Python 3 ii python3-requests 2.18.4-2ubuntu0.1 all elegant and simple HTTP library for Python3, built for human beings ii python3-requests-unixsocket 0.1.5-3 all Use requests to talk HTTP via a UNIX domain socket - Python 3.x ii python3-secretstorage 2.3.1-2 all Python module for storing secrets - Python 3.x version ii python3-serial 3.4-2 all pyserial - module encapsulating access for the serial port ii python3-service-identity 16.0.0-2 all Service identity verification for pyOpenSSL (Python 3 module) ii python3-setuptools 39.0.1-2 all Python3 Distutils Enhancements ii python3-six 1.11.0-2 all Python 2 and 3 compatibility library (Python 3 interface) ii python3-software-properties 0.96.24.32.14 all manage the repositories that you install software from ii python3-systemd 234-1build1 amd64 Python 3 bindings for systemd ii python3-twisted 17.9.0-2ubuntu0.1 all Event-based framework for internet applications ii python3-twisted-bin:amd64 17.9.0-2ubuntu0.1 amd64 Event-based framework for internet applications ii python3-update-manager 1:18.04.11.13 all python 3.x module for update-manager ii python3-urllib3 1.22-1ubuntu0.18.04. all HTTP library with thread-safe connection pooling for Python3 ii python3-wheel 0.30.0-0.2 all built-package format for Python ii python3-xdg 0.25-4ubuntu1.1 all Python 3 library to access freedesktop.org standards ii python3-yaml 3.12-1build2 amd64 YAML parser and emitter for Python3 ii python3-zope.interface 4.3.2-1build2 amd64 Interfaces for Python3 ii python3.6 3.6.9-1~18.04ubuntu1 amd64 Interactive high-level object-oriented language (version 3.6) ii python3.6-dev 3.6.9-1~18.04ubuntu1 amd64 Header files and a static library for Python (v3.6) ii python3.6-minimal 3.6.9-1~18.04ubuntu1 amd64 Minimal subset of the Python language (version 3.6) ii readline-common 7.0-3 all GNU readline and history libraries, common files ii rsync 3.1.2-2.1ubuntu1.1 amd64 fast, versatile, remote (and local) file-copying tool ii rsyslog 8.32.0-1ubuntu4 amd64 reliable system and kernel logging daemon ii run-one 1.17-0ubuntu1 all run just one instance of a command and its args at a time ii runc 1.0.0~rc10-0ubuntu1~ amd64 Open Container Project - runtime ii screen 4.6.2-1ubuntu1.1 amd64 terminal multiplexer with VT100/ANSI terminal emulation ii sed 4.4-2 amd64 GNU stream editor for filtering/transforming text ii sensible-utils 0.0.12 all Utilities for sensible alternative selection ii shared-mime-info 1.9-2 amd64 FreeDesktop.org shared MIME database and spec ii slurm 0.4.3-2build2 amd64 Realtime network interface monitor ii snapd 2.48.3+18.04 amd64 Daemon and tooling that enable snap packages ii sntp 1:4.2.8p10+dfsg-5ubu amd64 Network Time Protocol - sntp client ii software-properties-common 0.96.24.32.14 all manage the repositories that you install software from (common) ii sosreport 3.9.1-1ubuntu0.18.04 amd64 Set of tools to gather troubleshooting data from a system ii squashfs-tools 1:4.3-6ubuntu0.18.04 amd64 Tool to create and append to squashfs filesystems ii ssh-import-id 5.7-0ubuntu1.1 all securely retrieve an SSH public key and install it locally ii strace 4.21-1ubuntu1 amd64 System call tracer ii sudo 1.8.21p2-3ubuntu1.4 amd64 Provide limited super user privileges to specific users ii sysstat 11.6.1-1ubuntu0.1 amd64 system performance tools for Linux ii systemd 237-3ubuntu10.42 amd64 system and service manager ii systemd-sysv 237-3ubuntu10.42 amd64 system and service manager - SysV links ii sysvinit-utils 2.88dsf-59.10ubuntu1 amd64 System-V-like utilities ii tar 1.29b-2ubuntu0.2 amd64 GNU version of the tar archiving utility ii tcpdump 4.9.3-0ubuntu0.18.04 amd64 command-line network traffic analyzer ii telnet 0.17-41 amd64 basic telnet client ii thermald 1.7.0-5ubuntu5 amd64 Thermal monitoring and controlling daemon ii time 1.7-25.1build1 amd64 GNU time program for measuring CPU resource usage ii tmux 2.6-3ubuntu0.2 amd64 terminal multiplexer ii traceroute 1:2.1.0-2 amd64 Traces the route taken by packets over an IPv4/IPv6 network ii tzdata 2021a-0ubuntu0.18.04 all time zone and daylight-saving time data ii ubuntu-advantage-tools 17 all management tools for Ubuntu Advantage ii ubuntu-fan 0.12.10 all Ubuntu FAN network support enablement ii ubuntu-keyring 2018.09.18.1~18.04.0 all GnuPG keys of the Ubuntu archive ii ubuntu-minimal 1.417.4 amd64 Minimal core of Ubuntu ii ubuntu-release-upgrader-core 1:18.04.38 all manage release upgrades ii ubuntu-server 1.417.4 amd64 The Ubuntu Server system ii ubuntu-standard 1.417.4 amd64 The Ubuntu standard system ii ucf 3.0038 all Update Configuration File(s): preserve user changes to config files ii udev 237-3ubuntu10.42 amd64 /dev/ and hotplug management daemon ii ufw 0.36-0ubuntu0.18.04. all program for managing a Netfilter firewall ii uidmap 1:4.5-1ubuntu2 amd64 programs to help use subuids ii unattended-upgrades 1.1ubuntu1.18.04.14 all automatic installation of security upgrades ii update-manager-core 1:18.04.11.13 all manage release upgrades ii update-notifier-common 3.192.1.7 all Files shared between update-notifier and other packages ii upower 0.99.7-2ubuntu0.18.0 amd64 abstraction for power management ii ureadahead 0.100.0-21 amd64 Read required files in advance ii usbmuxd 1.1.0-2ubuntu0.1 amd64 USB multiplexor daemon for iPhone and iPod Touch devices ii usbutils 1:007-4build1 amd64 Linux USB utilities ii util-linux 2.31.1-0.4ubuntu3.7 amd64 miscellaneous system utilities ii uuid-runtime 2.31.1-0.4ubuntu3.7 amd64 runtime components for the Universally Unique ID library ii vim 2:8.0.1453-1ubuntu1. amd64 Vi IMproved - enhanced vi editor ii vim-common 2:8.0.1453-1ubuntu1. all Vi IMproved - Common files ii vim-runtime 2:8.0.1453-1ubuntu1. all Vi IMproved - Runtime files ii vim-tiny 2:8.0.1453-1ubuntu1. amd64 Vi IMproved - enhanced vi editor - compact version ii wget 1.19.4-1ubuntu2.2 amd64 retrieves files from the web ii whiptail 0.52.20-1ubuntu1 amd64 Displays user-friendly dialog boxes from shell scripts ii wireless-regdb 2020.11.20-0ubuntu1~ all wireless regulatory database ii xauth 1:1.0.10-1 amd64 X authentication utility ii xdelta3 3.0.11-dfsg-1ubuntu1 amd64 Diff utility which works with binary files ii xdg-user-dirs 0.17-1ubuntu1 amd64 tool to manage well known user directories ii xfsprogs 4.9.0+nmu1ubuntu2 amd64 Utilities for managing the XFS filesystem ii xkb-data 2.23.1-1ubuntu1.18.0 all X Keyboard Extension (XKB) configuration data ii xxd 2:8.0.1453-1ubuntu1. amd64 tool to make (or reverse) a hex dump ii xz-utils 5.2.2-1.3 amd64 XZ-format compression utilities ii zerofree 1.0.4-1 amd64 zero free blocks from ext2, ext3 and ext4 file-systems ii zlib1g:amd64 1:1.2.11.dfsg-0ubunt amd64 compression library - runtime jc-1.17.3/tests/fixtures/ubuntu-18.04/du.json000066400000000000000000057474411415226333200205360ustar00rootroot00000000000000[{"size": 21532, "name": "/usr/sbin"}, {"size": 4, "name": "/usr/games"}, {"size": 339208, "name": "/usr/bin"}, {"size": 32, "name": "/usr/share/pkgconfig"}, {"size": 8, "name": "/usr/share/perl5/Debian/DebConf/Client"}, {"size": 12, "name": "/usr/share/perl5/Debian/DebConf"}, {"size": 16, "name": "/usr/share/perl5/Debian/Debhelper/Sequence"}, {"size": 12, "name": "/usr/share/perl5/Debian/Debhelper/Buildsystem"}, {"size": 32, "name": "/usr/share/perl5/Debian/Debhelper"}, {"size": 56, "name": "/usr/share/perl5/Debian"}, {"size": 8, "name": "/usr/share/perl5/Error"}, {"size": 12, "name": "/usr/share/perl5/Text"}, {"size": 8, "name": "/usr/share/perl5/Debconf/Format"}, {"size": 8, "name": "/usr/share/perl5/Debconf/Client"}, {"size": 8, "name": "/usr/share/perl5/Debconf/Template"}, {"size": 16, "name": "/usr/share/perl5/Debconf/FrontEnd/Kde"}, {"size": 80, "name": "/usr/share/perl5/Debconf/FrontEnd"}, {"size": 40, "name": "/usr/share/perl5/Debconf/Element/Noninteractive"}, {"size": 40, "name": "/usr/share/perl5/Debconf/Element/Teletype"}, {"size": 40, "name": "/usr/share/perl5/Debconf/Element/Gnome"}, {"size": 40, "name": "/usr/share/perl5/Debconf/Element/Editor"}, {"size": 40, "name": "/usr/share/perl5/Debconf/Element/Dialog"}, {"size": 40, "name": "/usr/share/perl5/Debconf/Element/Web"}, {"size": 40, "name": "/usr/share/perl5/Debconf/Element/Kde"}, {"size": 304, "name": "/usr/share/perl5/Debconf/Element"}, {"size": 60, "name": "/usr/share/perl5/Debconf/DbDriver"}, {"size": 572, "name": "/usr/share/perl5/Debconf"}, {"size": 92, "name": "/usr/share/perl5/Algorithm"}, {"size": 8, "name": "/usr/share/perl5/Git/LoadCPAN/Mail"}, {"size": 16, "name": "/usr/share/perl5/Git/LoadCPAN"}, {"size": 40, "name": "/usr/share/perl5/Git"}, {"size": 8, "name": "/usr/share/perl5/Dpkg/Control/Tests"}, {"size": 84, "name": "/usr/share/perl5/Dpkg/Control"}, {"size": 20, "name": "/usr/share/perl5/Dpkg/Build"}, {"size": 12, "name": "/usr/share/perl5/Dpkg/Interface"}, {"size": 68, "name": "/usr/share/perl5/Dpkg/Shlibs"}, {"size": 16, "name": "/usr/share/perl5/Dpkg/Changelog/Entry"}, {"size": 44, "name": "/usr/share/perl5/Dpkg/Changelog"}, {"size": 36, "name": "/usr/share/perl5/Dpkg/Vendor"}, {"size": 12, "name": "/usr/share/perl5/Dpkg/Dist"}, {"size": 36, "name": "/usr/share/perl5/Dpkg/Source/Package/V3"}, {"size": 92, "name": "/usr/share/perl5/Dpkg/Source/Package"}, {"size": 164, "name": "/usr/share/perl5/Dpkg/Source"}, {"size": 28, "name": "/usr/share/perl5/Dpkg/Compression"}, {"size": 732, "name": "/usr/share/perl5/Dpkg"}, {"size": 1604, "name": "/usr/share/perl5"}, {"size": 60, "name": "/usr/share/locale/mn/LC_MESSAGES"}, {"size": 64, "name": "/usr/share/locale/mn"}, {"size": 8, "name": "/usr/share/locale/de_DE/LC_MESSAGES"}, {"size": 12, "name": "/usr/share/locale/de_DE"}, {"size": 8, "name": "/usr/share/locale/sco/LC_MESSAGES"}, {"size": 12, "name": "/usr/share/locale/sco"}, {"size": 84, "name": "/usr/share/locale/oc/LC_MESSAGES"}, {"size": 88, "name": "/usr/share/locale/oc"}, {"size": 52, "name": "/usr/share/locale/bn_IN/LC_MESSAGES"}, {"size": 56, "name": "/usr/share/locale/bn_IN"}, {"size": 944, "name": "/usr/share/locale/it/LC_MESSAGES"}, {"size": 948, "name": "/usr/share/locale/it"}, {"size": 220, "name": "/usr/share/locale/bn/LC_MESSAGES"}, {"size": 224, "name": "/usr/share/locale/bn"}, {"size": 24, "name": "/usr/share/locale/bo/LC_MESSAGES"}, {"size": 28, "name": "/usr/share/locale/bo"}, {"size": 28, "name": "/usr/share/locale/dv/LC_MESSAGES"}, {"size": 32, "name": "/usr/share/locale/dv"}, {"size": 108, "name": "/usr/share/locale/ml/LC_MESSAGES"}, {"size": 112, "name": "/usr/share/locale/ml"}, {"size": 416, "name": "/usr/share/locale/id/LC_MESSAGES"}, {"size": 420, "name": "/usr/share/locale/id"}, {"size": 8, "name": "/usr/share/locale/ay/LC_MESSAGES"}, {"size": 12, "name": "/usr/share/locale/ay"}, {"size": 8, "name": "/usr/share/locale/kl/LC_MESSAGES"}, {"size": 12, "name": "/usr/share/locale/kl"}, {"size": 8, "name": "/usr/share/locale/trv/LC_MESSAGES"}, {"size": 12, "name": "/usr/share/locale/trv"}, {"size": 292, "name": "/usr/share/locale/ro/LC_MESSAGES"}, {"size": 296, "name": "/usr/share/locale/ro"}, {"size": 16, "name": "/usr/share/locale/gn/LC_MESSAGES"}, {"size": 20, "name": "/usr/share/locale/gn"}, {"size": 32, "name": "/usr/share/locale/en_GB/LC_MESSAGES"}, {"size": 36, "name": "/usr/share/locale/en_GB"}, {"size": 164, "name": "/usr/share/locale/et/LC_MESSAGES"}, {"size": 168, "name": "/usr/share/locale/et"}, {"size": 20, "name": "/usr/share/locale/frp/LC_MESSAGES"}, {"size": 24, "name": "/usr/share/locale/frp"}, {"size": 16, "name": "/usr/share/locale/io/LC_MESSAGES"}, {"size": 20, "name": "/usr/share/locale/io"}, {"size": 20, "name": "/usr/share/locale/sw/LC_MESSAGES"}, {"size": 24, "name": "/usr/share/locale/sw"}, {"size": 8, "name": "/usr/share/locale/om/LC_MESSAGES"}, {"size": 12, "name": "/usr/share/locale/om"}, {"size": 8, "name": "/usr/share/locale/st/LC_MESSAGES"}, {"size": 12, "name": "/usr/share/locale/st"}, {"size": 12, "name": "/usr/share/locale/fil/LC_MESSAGES"}, {"size": 16, "name": "/usr/share/locale/fil"}, {"size": 996, "name": "/usr/share/locale/uk/LC_MESSAGES"}, {"size": 1000, "name": "/usr/share/locale/uk"}, {"size": 300, "name": "/usr/share/locale/eu/LC_MESSAGES"}, {"size": 304, "name": "/usr/share/locale/eu"}, {"size": 32, "name": "/usr/share/locale/tig/LC_MESSAGES"}, {"size": 36, "name": "/usr/share/locale/tig"}, {"size": 8, "name": "/usr/share/locale/bi/LC_MESSAGES"}, {"size": 12, "name": "/usr/share/locale/bi"}, {"size": 536, "name": "/usr/share/locale/da/LC_MESSAGES"}, {"size": 540, "name": "/usr/share/locale/da"}, {"size": 384, "name": "/usr/share/locale/ca/LC_MESSAGES"}, {"size": 388, "name": "/usr/share/locale/ca"}, {"size": 664, "name": "/usr/share/locale/pl/LC_MESSAGES"}, {"size": 668, "name": "/usr/share/locale/pl"}, {"size": 552, "name": "/usr/share/locale/ta/LC_MESSAGES"}, {"size": 556, "name": "/usr/share/locale/ta"}, {"size": 76, "name": "/usr/share/locale/wa/LC_MESSAGES"}, {"size": 80, "name": "/usr/share/locale/wa"}, {"size": 12, "name": "/usr/share/locale/mai/LC_MESSAGES"}, {"size": 16, "name": "/usr/share/locale/mai"}, {"size": 20, "name": "/usr/share/locale/mhr/LC_MESSAGES"}, {"size": 24, "name": "/usr/share/locale/mhr"}, {"size": 12, "name": "/usr/share/locale/na/LC_MESSAGES"}, {"size": 16, "name": "/usr/share/locale/na"}, {"size": 44, "name": "/usr/share/locale/my/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/my"}, {"size": 40, "name": "/usr/share/locale/mi/LC_MESSAGES"}, {"size": 44, "name": "/usr/share/locale/mi"}, {"size": 8, "name": "/usr/share/locale/pap/LC_MESSAGES"}, {"size": 12, "name": "/usr/share/locale/pap"}, {"size": 8, "name": "/usr/share/locale/mg/LC_MESSAGES"}, {"size": 12, "name": "/usr/share/locale/mg"}, {"size": 32, "name": "/usr/share/locale/gd/LC_MESSAGES"}, {"size": 36, "name": "/usr/share/locale/gd"}, {"size": 32, "name": "/usr/share/locale/byn/LC_MESSAGES"}, {"size": 36, "name": "/usr/share/locale/byn"}, {"size": 16, "name": "/usr/share/locale/ach/LC_MESSAGES"}, {"size": 20, "name": "/usr/share/locale/ach"}, {"size": 68, "name": "/usr/share/locale/tg/LC_MESSAGES"}, {"size": 72, "name": "/usr/share/locale/tg"}, {"size": 76, "name": "/usr/share/locale/af/LC_MESSAGES"}, {"size": 80, "name": "/usr/share/locale/af"}, {"size": 36, "name": "/usr/share/locale/ps/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/ps"}, {"size": 68, "name": "/usr/share/locale/kk/LC_MESSAGES"}, {"size": 72, "name": "/usr/share/locale/kk"}, {"size": 52, "name": "/usr/share/locale/tt/LC_MESSAGES"}, {"size": 56, "name": "/usr/share/locale/tt"}, {"size": 16, "name": "/usr/share/locale/en@boldquot/LC_MESSAGES"}, {"size": 20, "name": "/usr/share/locale/en@boldquot"}, {"size": 12, "name": "/usr/share/locale/co/LC_MESSAGES"}, {"size": 16, "name": "/usr/share/locale/co"}, {"size": 396, "name": "/usr/share/locale/be/LC_MESSAGES"}, {"size": 400, "name": "/usr/share/locale/be"}, {"size": 32, "name": "/usr/share/locale/ca@valencia/LC_MESSAGES"}, {"size": 36, "name": "/usr/share/locale/ca@valencia"}, {"size": 496, "name": "/usr/share/locale/zh_CN/LC_MESSAGES"}, {"size": 500, "name": "/usr/share/locale/zh_CN"}, {"size": 96, "name": "/usr/share/locale/zh_HK/LC_MESSAGES"}, {"size": 100, "name": "/usr/share/locale/zh_HK"}, {"size": 60, "name": "/usr/share/locale/sq/LC_MESSAGES"}, {"size": 64, "name": "/usr/share/locale/sq"}, {"size": 540, "name": "/usr/share/locale/pa/LC_MESSAGES"}, {"size": 544, "name": "/usr/share/locale/pa"}, {"size": 8, "name": "/usr/share/locale/iu/LC_MESSAGES"}, {"size": 12, "name": "/usr/share/locale/iu"}, {"size": 44, "name": "/usr/share/locale/tt@iqtelif/LC_MESSAGES"}, {"size": 48, "name": "/usr/share/locale/tt@iqtelif"}, {"size": 32, "name": "/usr/share/locale/ti/LC_MESSAGES"}, {"size": 36, "name": "/usr/share/locale/ti"}, {"size": 84, "name": "/usr/share/locale/as/LC_MESSAGES"}, {"size": 88, "name": "/usr/share/locale/as"}, {"size": 28, "name": "/usr/share/locale/ve/LC_MESSAGES"}, {"size": 32, "name": "/usr/share/locale/ve"}, {"size": 332, "name": "/usr/share/locale/pt/LC_MESSAGES"}, {"size": 336, "name": "/usr/share/locale/pt"}, {"size": 8, "name": "/usr/share/locale/qu/LC_MESSAGES"}, {"size": 12, "name": "/usr/share/locale/qu"}, {"size": 120, "name": "/usr/share/locale/lv/LC_MESSAGES"}, {"size": 124, "name": "/usr/share/locale/lv"}, {"size": 60, "name": "/usr/share/locale/si/LC_MESSAGES"}, {"size": 64, "name": "/usr/share/locale/si"}, {"size": 108, "name": "/usr/share/locale/cy/LC_MESSAGES"}, {"size": 112, "name": "/usr/share/locale/cy"}, {"size": 72, "name": "/usr/share/locale/rw/LC_MESSAGES"}, {"size": 76, "name": "/usr/share/locale/rw"}, {"size": 32, "name": "/usr/share/locale/en_CA/LC_MESSAGES"}, {"size": 36, "name": "/usr/share/locale/en_CA"}, {"size": 332, "name": "/usr/share/locale/el/LC_MESSAGES"}, {"size": 336, "name": "/usr/share/locale/el"}, {"size": 8, "name": "/usr/share/locale/bem/LC_MESSAGES"}, {"size": 12, "name": "/usr/share/locale/bem"}, {"size": 60, "name": "/usr/share/locale/am/LC_MESSAGES"}, {"size": 64, "name": "/usr/share/locale/am"}, {"size": 104, "name": "/usr/share/locale/br/LC_MESSAGES"}, {"size": 108, "name": "/usr/share/locale/br"}, {"size": 32, "name": "/usr/share/locale/tk/LC_MESSAGES"}, {"size": 36, "name": "/usr/share/locale/tk"}, {"size": 124, "name": "/usr/share/locale/ar/LC_MESSAGES"}, {"size": 128, "name": "/usr/share/locale/ar"}, {"size": 76, "name": "/usr/share/locale/ka/LC_MESSAGES"}, {"size": 80, "name": "/usr/share/locale/ka"}, {"size": 24, "name": "/usr/share/locale/fr_CA/LC_MESSAGES"}, {"size": 28, "name": "/usr/share/locale/fr_CA"}, {"size": 12, "name": "/usr/share/locale/kab/LC_MESSAGES"}, {"size": 16, "name": "/usr/share/locale/kab"}, {"size": 76, "name": "/usr/share/locale/ug/LC_MESSAGES"}, {"size": 80, "name": "/usr/share/locale/ug"}, {"size": 24, "name": "/usr/share/locale/gv/LC_MESSAGES"}, {"size": 28, "name": "/usr/share/locale/gv"}, {"size": 8, "name": "/usr/share/locale/pam/LC_MESSAGES"}, {"size": 12, "name": "/usr/share/locale/pam"}, {"size": 24, "name": "/usr/share/locale/sd/LC_MESSAGES"}, {"size": 28, "name": "/usr/share/locale/sd"}, {"size": 320, "name": "/usr/share/locale/zh_TW/LC_MESSAGES"}, {"size": 324, "name": "/usr/share/locale/zh_TW"}, {"size": 32, "name": "/usr/share/locale/wo/LC_MESSAGES"}, {"size": 36, "name": "/usr/share/locale/wo"}, {"size": 12, "name": "/usr/share/locale/nv/LC_MESSAGES"}, {"size": 16, "name": "/usr/share/locale/nv"}, {"size": 16, "name": "/usr/share/locale/en@quot/LC_MESSAGES"}, {"size": 20, "name": "/usr/share/locale/en@quot"}, {"size": 136, "name": "/usr/share/locale/gu/LC_MESSAGES"}, {"size": 140, "name": "/usr/share/locale/gu"}, {"size": 8, "name": "/usr/share/locale/aa/LC_MESSAGES"}, {"size": 12, "name": "/usr/share/locale/aa"}, {"size": 528, "name": "/usr/share/locale/ja/LC_MESSAGES"}, {"size": 532, "name": "/usr/share/locale/ja"}, {"size": 112, "name": "/usr/share/locale/te/LC_MESSAGES"}, {"size": 116, "name": "/usr/share/locale/te"}, {"size": 12, "name": "/usr/share/locale/bar/LC_MESSAGES"}, {"size": 16, "name": "/usr/share/locale/bar"}, {"size": 476, "name": "/usr/share/locale/ru/LC_MESSAGES"}, {"size": 480, "name": "/usr/share/locale/ru"}, {"size": 28, "name": "/usr/share/locale/fur/LC_MESSAGES"}, {"size": 32, "name": "/usr/share/locale/fur"}, {"size": 36, "name": "/usr/share/locale/ce/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/ce"}, {"size": 8, "name": "/usr/share/locale/mo/LC_MESSAGES"}, {"size": 12, "name": "/usr/share/locale/mo"}, {"size": 12, "name": "/usr/share/locale/kv/LC_MESSAGES"}, {"size": 16, "name": "/usr/share/locale/kv"}, {"size": 476, "name": "/usr/share/locale/kn/LC_MESSAGES"}, {"size": 480, "name": "/usr/share/locale/kn"}, {"size": 12, "name": "/usr/share/locale/ki/LC_MESSAGES"}, {"size": 16, "name": "/usr/share/locale/ki"}, {"size": 12, "name": "/usr/share/locale/vec/LC_MESSAGES"}, {"size": 16, "name": "/usr/share/locale/vec"}, {"size": 40, "name": "/usr/share/locale/fo/LC_MESSAGES"}, {"size": 44, "name": "/usr/share/locale/fo"}, {"size": 16, "name": "/usr/share/locale/shn/LC_MESSAGES"}, {"size": 20, "name": "/usr/share/locale/shn"}, {"size": 388, "name": "/usr/share/locale/es/LC_MESSAGES"}, {"size": 392, "name": "/usr/share/locale/es"}, {"size": 28, "name": "/usr/share/locale/nso/LC_MESSAGES"}, {"size": 32, "name": "/usr/share/locale/nso"}, {"size": 8, "name": "/usr/share/locale/ba/LC_MESSAGES"}, {"size": 12, "name": "/usr/share/locale/ba"}, {"size": 8, "name": "/usr/share/locale/ary/LC_MESSAGES"}, {"size": 12, "name": "/usr/share/locale/ary"}, {"size": 524, "name": "/usr/share/locale/ast/LC_MESSAGES"}, {"size": 528, "name": "/usr/share/locale/ast"}, {"size": 344, "name": "/usr/share/locale/sr/LC_MESSAGES"}, {"size": 348, "name": "/usr/share/locale/sr"}, {"size": 296, "name": "/usr/share/locale/or/LC_MESSAGES"}, {"size": 300, "name": "/usr/share/locale/or"}, {"size": 16, "name": "/usr/share/locale/jam/LC_MESSAGES"}, {"size": 20, "name": "/usr/share/locale/jam"}, {"size": 32, "name": "/usr/share/locale/gez/LC_MESSAGES"}, {"size": 36, "name": "/usr/share/locale/gez"}, {"size": 12, "name": "/usr/share/locale/nah/LC_MESSAGES"}, {"size": 16, "name": "/usr/share/locale/nah"}, {"size": 136, "name": "/usr/share/locale/tl/LC_MESSAGES"}, {"size": 140, "name": "/usr/share/locale/tl"}, {"size": 32, "name": "/usr/share/locale/en_AU/LC_MESSAGES"}, {"size": 36, "name": "/usr/share/locale/en_AU"}, {"size": 16, "name": "/usr/share/locale/ln/LC_MESSAGES"}, {"size": 20, "name": "/usr/share/locale/ln"}, {"size": 8, "name": "/usr/share/locale/pt_PT/LC_MESSAGES"}, {"size": 12, "name": "/usr/share/locale/pt_PT"}, {"size": 244, "name": "/usr/share/locale/bg/LC_MESSAGES"}, {"size": 248, "name": "/usr/share/locale/bg"}, {"size": 8, "name": "/usr/share/locale/ee/LC_MESSAGES"}, {"size": 12, "name": "/usr/share/locale/ee"}, {"size": 16, "name": "/usr/share/locale/pi/LC_MESSAGES"}, {"size": 20, "name": "/usr/share/locale/pi"}, {"size": 392, "name": "/usr/share/locale/cs/LC_MESSAGES"}, {"size": 396, "name": "/usr/share/locale/cs"}, {"size": 48, "name": "/usr/share/locale/az/LC_MESSAGES"}, {"size": 52, "name": "/usr/share/locale/az"}, {"size": 24, "name": "/usr/share/locale/sc/LC_MESSAGES"}, {"size": 28, "name": "/usr/share/locale/sc"}, {"size": 292, "name": "/usr/share/locale/lt/LC_MESSAGES"}, {"size": 296, "name": "/usr/share/locale/lt"}, {"size": 100, "name": "/usr/share/locale/ga/LC_MESSAGES"}, {"size": 104, "name": "/usr/share/locale/ga"}, {"size": 24, "name": "/usr/share/locale/zu/LC_MESSAGES"}, {"size": 28, "name": "/usr/share/locale/zu"}, {"size": 168, "name": "/usr/share/locale/is/LC_MESSAGES"}, {"size": 172, "name": "/usr/share/locale/is"}, {"size": 232, "name": "/usr/share/locale/dz/LC_MESSAGES"}, {"size": 236, "name": "/usr/share/locale/dz"}, {"size": 668, "name": "/usr/share/locale/tr/LC_MESSAGES"}, {"size": 672, "name": "/usr/share/locale/tr"}, {"size": 52, "name": "/usr/share/locale/hy/LC_MESSAGES"}, {"size": 56, "name": "/usr/share/locale/hy"}, {"size": 84, "name": "/usr/share/locale/ku/LC_MESSAGES"}, {"size": 88, "name": "/usr/share/locale/ku"}, {"size": 8, "name": "/usr/share/locale/szl/LC_MESSAGES"}, {"size": 12, "name": "/usr/share/locale/szl"}, {"size": 20, "name": "/usr/share/locale/nds/LC_MESSAGES"}, {"size": 24, "name": "/usr/share/locale/nds"}, {"size": 100, "name": "/usr/share/locale/hi/LC_MESSAGES"}, {"size": 104, "name": "/usr/share/locale/hi"}, {"size": 12, "name": "/usr/share/locale/haw/LC_MESSAGES"}, {"size": 16, "name": "/usr/share/locale/haw"}, {"size": 16, "name": "/usr/share/locale/so/LC_MESSAGES"}, {"size": 20, "name": "/usr/share/locale/so"}, {"size": 180, "name": "/usr/share/locale/nn/LC_MESSAGES"}, {"size": 184, "name": "/usr/share/locale/nn"}, {"size": 36, "name": "/usr/share/locale/uz/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/uz"}, {"size": 56, "name": "/usr/share/locale/ia/LC_MESSAGES"}, {"size": 60, "name": "/usr/share/locale/ia"}, {"size": 996, "name": "/usr/share/locale/fr/LC_MESSAGES"}, {"size": 1000, "name": "/usr/share/locale/fr"}, {"size": 108, "name": "/usr/share/locale/fa/LC_MESSAGES"}, {"size": 112, "name": "/usr/share/locale/fa"}, {"size": 28, "name": "/usr/share/locale/ckb/LC_MESSAGES"}, {"size": 32, "name": "/usr/share/locale/ckb"}, {"size": 396, "name": "/usr/share/locale/hu/LC_MESSAGES"}, {"size": 400, "name": "/usr/share/locale/hu"}, {"size": 276, "name": "/usr/share/locale/eo/LC_MESSAGES"}, {"size": 280, "name": "/usr/share/locale/eo"}, {"size": 12, "name": "/usr/share/locale/ha/LC_MESSAGES"}, {"size": 16, "name": "/usr/share/locale/ha"}, {"size": 932, "name": "/usr/share/locale/sv/LC_MESSAGES"}, {"size": 936, "name": "/usr/share/locale/sv"}, {"size": 36, "name": "/usr/share/locale/csb/LC_MESSAGES"}, {"size": 40, "name": "/usr/share/locale/csb"}, {"size": 16, "name": "/usr/share/locale/os/LC_MESSAGES"}, {"size": 20, "name": "/usr/share/locale/os"}, {"size": 16, "name": "/usr/share/locale/sa/LC_MESSAGES"}, {"size": 20, "name": "/usr/share/locale/sa"}, {"size": 100, "name": "/usr/share/locale/bs/LC_MESSAGES"}, {"size": 104, "name": "/usr/share/locale/bs"}, {"size": 8, "name": "/usr/share/locale/ab/LC_MESSAGES"}, {"size": 12, "name": "/usr/share/locale/ab"}, {"size": 256, "name": "/usr/share/locale/km/LC_MESSAGES"}, {"size": 260, "name": "/usr/share/locale/km"}, {"size": 620, "name": "/usr/share/locale/th/LC_MESSAGES"}, {"size": 624, "name": "/usr/share/locale/th"}, {"size": 8, "name": "/usr/share/locale/ta_LK/LC_MESSAGES"}, {"size": 12, "name": "/usr/share/locale/ta_LK"}, {"size": 8, "name": "/usr/share/locale/ak/LC_MESSAGES"}, {"size": 12, "name": "/usr/share/locale/ak"}, {"size": 48, "name": "/usr/share/locale/mt/LC_MESSAGES"}, {"size": 52, "name": "/usr/share/locale/mt"}, {"size": 340, "name": "/usr/share/locale/sk/LC_MESSAGES"}, {"size": 344, "name": "/usr/share/locale/sk"}, {"size": 16, "name": "/usr/share/locale/chr/LC_MESSAGES"}, {"size": 20, "name": "/usr/share/locale/chr"}, {"size": 8, "name": "/usr/share/locale/be@latin/LC_MESSAGES"}, {"size": 12, "name": "/usr/share/locale/be@latin"}, {"size": 28, "name": "/usr/share/locale/ur/LC_MESSAGES"}, {"size": 32, "name": "/usr/share/locale/ur"}, {"size": 656, "name": "/usr/share/locale/nl/LC_MESSAGES"}, {"size": 660, "name": "/usr/share/locale/nl"}, {"size": 32, "name": "/usr/share/locale/kw/LC_MESSAGES"}, {"size": 36, "name": "/usr/share/locale/kw"}, {"size": 304, "name": "/usr/share/locale/ko/LC_MESSAGES"}, {"size": 308, "name": "/usr/share/locale/ko"}, {"size": 540, "name": "/usr/share/locale/gl/LC_MESSAGES"}, {"size": 544, "name": "/usr/share/locale/gl"}, {"size": 340, "name": "/usr/share/locale/crh/LC_MESSAGES"}, {"size": 344, "name": "/usr/share/locale/crh"}, {"size": 16, "name": "/usr/share/locale/wal/LC_MESSAGES"}, {"size": 20, "name": "/usr/share/locale/wal"}, {"size": 8, "name": "/usr/share/locale/ff/LC_MESSAGES"}, {"size": 12, "name": "/usr/share/locale/ff"}, {"size": 16, "name": "/usr/share/locale/se/LC_MESSAGES"}, {"size": 20, "name": "/usr/share/locale/se"}, {"size": 16, "name": "/usr/share/locale/jv/LC_MESSAGES"}, {"size": 20, "name": "/usr/share/locale/jv"}, {"size": 24, "name": "/usr/share/locale/ht/LC_MESSAGES"}, {"size": 28, "name": "/usr/share/locale/ht"}, {"size": 212, "name": "/usr/share/locale/pt_BR/LC_MESSAGES"}, {"size": 216, "name": "/usr/share/locale/pt_BR"}, {"size": 16, "name": "/usr/share/locale/ace/LC_MESSAGES"}, {"size": 20, "name": "/usr/share/locale/ace"}, {"size": 12, "name": "/usr/share/locale/lb/LC_MESSAGES"}, {"size": 16, "name": "/usr/share/locale/lb"}, {"size": 560, "name": "/usr/share/locale/vi/LC_MESSAGES"}, {"size": 564, "name": "/usr/share/locale/vi"}, {"size": 980, "name": "/usr/share/locale/de/LC_MESSAGES"}, {"size": 984, "name": "/usr/share/locale/de"}, {"size": 28, "name": "/usr/share/locale/xh/LC_MESSAGES"}, {"size": 32, "name": "/usr/share/locale/xh"}, {"size": 24, "name": "/usr/share/locale/an/LC_MESSAGES"}, {"size": 28, "name": "/usr/share/locale/an"}, {"size": 20, "name": "/usr/share/locale/kok/LC_MESSAGES"}, {"size": 24, "name": "/usr/share/locale/kok"}, {"size": 680, "name": "/usr/share/locale/mr/LC_MESSAGES"}, {"size": 684, "name": "/usr/share/locale/mr"}, {"size": 32, "name": "/usr/share/locale/fy/LC_MESSAGES"}, {"size": 36, "name": "/usr/share/locale/fy"}, {"size": 52, "name": "/usr/share/locale/ky/LC_MESSAGES"}, {"size": 56, "name": "/usr/share/locale/ky"}, {"size": 60, "name": "/usr/share/locale/mk/LC_MESSAGES"}, {"size": 64, "name": "/usr/share/locale/mk"}, {"size": 12, "name": "/usr/share/locale/fa_AF/LC_MESSAGES"}, {"size": 16, "name": "/usr/share/locale/fa_AF"}, {"size": 252, "name": "/usr/share/locale/nb/LC_MESSAGES"}, {"size": 256, "name": "/usr/share/locale/nb"}, {"size": 28, "name": "/usr/share/locale/cv/LC_MESSAGES"}, {"size": 32, "name": "/usr/share/locale/cv"}, {"size": 8, "name": "/usr/share/locale/ch/LC_MESSAGES"}, {"size": 12, "name": "/usr/share/locale/ch"}, {"size": 88, "name": "/usr/share/locale/he/LC_MESSAGES"}, {"size": 92, "name": "/usr/share/locale/he"}, {"size": 16, "name": "/usr/share/locale/son/LC_MESSAGES"}, {"size": 20, "name": "/usr/share/locale/son"}, {"size": 20, "name": "/usr/share/locale/lo/LC_MESSAGES"}, {"size": 24, "name": "/usr/share/locale/lo"}, {"size": 8, "name": "/usr/share/locale/sr@Latn/LC_MESSAGES"}, {"size": 12, "name": "/usr/share/locale/sr@Latn"}, {"size": 128, "name": "/usr/share/locale/hr/LC_MESSAGES"}, {"size": 132, "name": "/usr/share/locale/hr"}, {"size": 16, "name": "/usr/share/locale/yo/LC_MESSAGES"}, {"size": 20, "name": "/usr/share/locale/yo"}, {"size": 296, "name": "/usr/share/locale/sl/LC_MESSAGES"}, {"size": 300, "name": "/usr/share/locale/sl"}, {"size": 248, "name": "/usr/share/locale/sr@latin/LC_MESSAGES"}, {"size": 252, "name": "/usr/share/locale/sr@latin"}, {"size": 116, "name": "/usr/share/locale/en/LC_MESSAGES"}, {"size": 120, "name": "/usr/share/locale/en"}, {"size": 212, "name": "/usr/share/locale/ne/LC_MESSAGES"}, {"size": 216, "name": "/usr/share/locale/ne"}, {"size": 60, "name": "/usr/share/locale/ms/LC_MESSAGES"}, {"size": 64, "name": "/usr/share/locale/ms"}, {"size": 200, "name": "/usr/share/locale/fi/LC_MESSAGES"}, {"size": 204, "name": "/usr/share/locale/fi"}, {"size": 28412, "name": "/usr/share/locale"}, {"size": 8, "name": "/usr/share/aclocal"}, {"size": 20, "name": "/usr/share/netplan/netplan/__pycache__"}, {"size": 20, "name": "/usr/share/netplan/netplan/cli/__pycache__"}, {"size": 48, "name": "/usr/share/netplan/netplan/cli/commands/__pycache__"}, {"size": 108, "name": "/usr/share/netplan/netplan/cli/commands"}, {"size": 148, "name": "/usr/share/netplan/netplan/cli"}, {"size": 196, "name": "/usr/share/netplan/netplan"}, {"size": 204, "name": "/usr/share/netplan"}, {"size": 1448, "name": "/usr/share/xml/iso-codes"}, {"size": 1452, "name": "/usr/share/xml"}, {"size": 36, "name": "/usr/share/menu"}, {"size": 60, "name": "/usr/share/dpkg"}, {"size": 52, "name": "/usr/share/dbus-1/system-services"}, {"size": 52, "name": "/usr/share/dbus-1/interfaces"}, {"size": 16, "name": "/usr/share/dbus-1/services"}, {"size": 56, "name": "/usr/share/dbus-1/system.d"}, {"size": 192, "name": "/usr/share/dbus-1"}, {"size": 72, "name": "/usr/share/gitweb/static"}, {"size": 324, "name": "/usr/share/gitweb"}, {"size": 100, "name": "/usr/share/awk"}, {"size": 8, "name": "/usr/share/binfmts"}, {"size": 4, "name": "/usr/share/file/magic"}, {"size": 8, "name": "/usr/share/file"}, {"size": 24, "name": "/usr/share/groff/1.22.3/font/devlatin1"}, {"size": 56, "name": "/usr/share/groff/1.22.3/font/devps/generate"}, {"size": 660, "name": "/usr/share/groff/1.22.3/font/devps"}, {"size": 120, "name": "/usr/share/groff/1.22.3/font/devutf8"}, {"size": 24, "name": "/usr/share/groff/1.22.3/font/devascii"}, {"size": 832, "name": "/usr/share/groff/1.22.3/font"}, {"size": 72, "name": "/usr/share/groff/1.22.3/tmac/mdoc"}, {"size": 772, "name": "/usr/share/groff/1.22.3/tmac"}, {"size": 1612, "name": "/usr/share/groff/1.22.3"}, {"size": 1616, "name": "/usr/share/groff"}, {"size": 544, "name": "/usr/share/ca-certificates/mozilla"}, {"size": 548, "name": "/usr/share/ca-certificates"}, {"size": 32, "name": "/usr/share/dh-python/dhpython/build/__pycache__"}, {"size": 68, "name": "/usr/share/dh-python/dhpython/build"}, {"size": 100, "name": "/usr/share/dh-python/dhpython/__pycache__"}, {"size": 292, "name": "/usr/share/dh-python/dhpython"}, {"size": 156, "name": "/usr/share/dh-python/dist"}, {"size": 540, "name": "/usr/share/dh-python"}, {"size": 1156, "name": "/usr/share/sosreport/sos/plugins/__pycache__"}, {"size": 2384, "name": "/usr/share/sosreport/sos/plugins"}, {"size": 92, "name": "/usr/share/sosreport/sos/__pycache__"}, {"size": 60, "name": "/usr/share/sosreport/sos/policies/__pycache__"}, {"size": 128, "name": "/usr/share/sosreport/sos/policies"}, {"size": 2716, "name": "/usr/share/sosreport/sos"}, {"size": 2728, "name": "/usr/share/sosreport"}, {"size": 16, "name": "/usr/share/X11/locale/iso8859-6"}, {"size": 132, "name": "/usr/share/X11/locale/el_GR.UTF-8"}, {"size": 16, "name": "/usr/share/X11/locale/ja_JP.UTF-8"}, {"size": 16, "name": "/usr/share/X11/locale/tatar-cyr"}, {"size": 36, "name": "/usr/share/X11/locale/iso8859-13"}, {"size": 24, "name": "/usr/share/X11/locale/zh_TW.big5"}, {"size": 16, "name": "/usr/share/X11/locale/th_TH"}, {"size": 576, "name": "/usr/share/X11/locale/en_US.UTF-8"}, {"size": 16, "name": "/usr/share/X11/locale/km_KH.UTF-8"}, {"size": 16, "name": "/usr/share/X11/locale/isiri-3342"}, {"size": 36, "name": "/usr/share/X11/locale/iso8859-1"}, {"size": 16, "name": "/usr/share/X11/locale/ja.JIS"}, {"size": 16, "name": "/usr/share/X11/locale/zh_HK.big5"}, {"size": 16, "name": "/usr/share/X11/locale/zh_CN"}, {"size": 36, "name": "/usr/share/X11/locale/iso8859-9e"}, {"size": 16, "name": "/usr/share/X11/locale/armscii-8"}, {"size": 24, "name": "/usr/share/X11/locale/iso8859-7"}, {"size": 36, "name": "/usr/share/X11/locale/iso8859-3"}, {"size": 16, "name": "/usr/share/X11/locale/iso8859-10"}, {"size": 16, "name": "/usr/share/X11/locale/iso8859-8"}, {"size": 16, "name": "/usr/share/X11/locale/zh_TW"}, {"size": 16, "name": "/usr/share/X11/locale/zh_CN.UTF-8"}, {"size": 16, "name": "/usr/share/X11/locale/ja"}, {"size": 16, "name": "/usr/share/X11/locale/zh_CN.gbk"}, {"size": 36, "name": "/usr/share/X11/locale/iso8859-9"}, {"size": 36, "name": "/usr/share/X11/locale/iso8859-14"}, {"size": 16, "name": "/usr/share/X11/locale/ru_RU.UTF-8"}, {"size": 16, "name": "/usr/share/X11/locale/koi8-u"}, {"size": 16, "name": "/usr/share/X11/locale/georgian-ps"}, {"size": 16, "name": "/usr/share/X11/locale/zh_TW.UTF-8"}, {"size": 16, "name": "/usr/share/X11/locale/ko_KR.UTF-8"}, {"size": 16, "name": "/usr/share/X11/locale/pt_PT.UTF-8"}, {"size": 16, "name": "/usr/share/X11/locale/nokhchi-1"}, {"size": 20, "name": "/usr/share/X11/locale/sr_CS.UTF-8"}, {"size": 12, "name": "/usr/share/X11/locale/cs_CZ.UTF-8"}, {"size": 36, "name": "/usr/share/X11/locale/iso8859-2"}, {"size": 16, "name": "/usr/share/X11/locale/tscii-0"}, {"size": 16, "name": "/usr/share/X11/locale/microsoft-cp1255"}, {"size": 16, "name": "/usr/share/X11/locale/koi8-r"}, {"size": 20, "name": "/usr/share/X11/locale/ja.SJIS"}, {"size": 16, "name": "/usr/share/X11/locale/microsoft-cp1251"}, {"size": 16, "name": "/usr/share/X11/locale/iscii-dev"}, {"size": 28, "name": "/usr/share/X11/locale/iso8859-4"}, {"size": 16, "name": "/usr/share/X11/locale/C"}, {"size": 44, "name": "/usr/share/X11/locale/fi_FI.UTF-8"}, {"size": 24, "name": "/usr/share/X11/locale/am_ET.UTF-8"}, {"size": 16, "name": "/usr/share/X11/locale/iso8859-11"}, {"size": 16, "name": "/usr/share/X11/locale/pt_BR.UTF-8"}, {"size": 16, "name": "/usr/share/X11/locale/ibm-cp1133"}, {"size": 16, "name": "/usr/share/X11/locale/ko"}, {"size": 16, "name": "/usr/share/X11/locale/th_TH.UTF-8"}, {"size": 16, "name": "/usr/share/X11/locale/iso8859-5"}, {"size": 16, "name": "/usr/share/X11/locale/zh_HK.big5hkscs"}, {"size": 16, "name": "/usr/share/X11/locale/microsoft-cp1256"}, {"size": 20, "name": "/usr/share/X11/locale/vi_VN.viscii"}, {"size": 20, "name": "/usr/share/X11/locale/koi8-c"}, {"size": 16, "name": "/usr/share/X11/locale/georgian-academy"}, {"size": 16, "name": "/usr/share/X11/locale/zh_HK.UTF-8"}, {"size": 20, "name": "/usr/share/X11/locale/vi_VN.tcvn"}, {"size": 16, "name": "/usr/share/X11/locale/mulelao-1"}, {"size": 16, "name": "/usr/share/X11/locale/zh_CN.gb18030"}, {"size": 32, "name": "/usr/share/X11/locale/iso8859-15"}, {"size": 2068, "name": "/usr/share/X11/locale"}, {"size": 8, "name": "/usr/share/X11/xkb/symbols/jolla_vndr"}, {"size": 8, "name": "/usr/share/X11/xkb/symbols/sgi_vndr"}, {"size": 8, "name": "/usr/share/X11/xkb/symbols/hp_vndr"}, {"size": 120, "name": "/usr/share/X11/xkb/symbols/nokia_vndr"}, {"size": 36, "name": "/usr/share/X11/xkb/symbols/digital_vndr"}, {"size": 20, "name": "/usr/share/X11/xkb/symbols/fujitsu_vndr"}, {"size": 84, "name": "/usr/share/X11/xkb/symbols/macintosh_vndr"}, {"size": 8, "name": "/usr/share/X11/xkb/symbols/sony_vndr"}, {"size": 12, "name": "/usr/share/X11/xkb/symbols/nec_vndr"}, {"size": 16, "name": "/usr/share/X11/xkb/symbols/xfree68_vndr"}, {"size": 236, "name": "/usr/share/X11/xkb/symbols/sun_vndr"}, {"size": 24, "name": "/usr/share/X11/xkb/symbols/sharp_vndr"}, {"size": 2304, "name": "/usr/share/X11/xkb/symbols"}, {"size": 80, "name": "/usr/share/X11/xkb/compat"}, {"size": 48, "name": "/usr/share/X11/xkb/geometry/sgi_vndr"}, {"size": 48, "name": "/usr/share/X11/xkb/geometry/digital_vndr"}, {"size": 416, "name": "/usr/share/X11/xkb/geometry"}, {"size": 16, "name": "/usr/share/X11/xkb/keycodes/sgi_vndr"}, {"size": 20, "name": "/usr/share/X11/xkb/keycodes/digital_vndr"}, {"size": 132, "name": "/usr/share/X11/xkb/keycodes"}, {"size": 684, "name": "/usr/share/X11/xkb/rules"}, {"size": 72, "name": "/usr/share/X11/xkb/types"}, {"size": 3692, "name": "/usr/share/X11/xkb"}, {"size": 5808, "name": "/usr/share/X11"}, {"size": 4, "name": "/usr/share/icons/hicolor/48x48/mimetypes"}, {"size": 12, "name": "/usr/share/icons/hicolor/48x48/apps"}, {"size": 20, "name": "/usr/share/icons/hicolor/48x48"}, {"size": 4, "name": "/usr/share/icons/hicolor/64x64/mimetypes"}, {"size": 12, "name": "/usr/share/icons/hicolor/64x64/apps"}, {"size": 20, "name": "/usr/share/icons/hicolor/64x64"}, {"size": 4, "name": "/usr/share/icons/hicolor/32x32/mimetypes"}, {"size": 8, "name": "/usr/share/icons/hicolor/32x32/apps"}, {"size": 16, "name": "/usr/share/icons/hicolor/32x32"}, {"size": 4, "name": "/usr/share/icons/hicolor/scalable/mimetypes"}, {"size": 60, "name": "/usr/share/icons/hicolor/scalable/apps"}, {"size": 68, "name": "/usr/share/icons/hicolor/scalable"}, {"size": 128, "name": "/usr/share/icons/hicolor"}, {"size": 100, "name": "/usr/share/icons/HighContrast/scalable/apps"}, {"size": 104, "name": "/usr/share/icons/HighContrast/scalable"}, {"size": 108, "name": "/usr/share/icons/HighContrast"}, {"size": 8, "name": "/usr/share/icons/locolor/16x16/apps"}, {"size": 12, "name": "/usr/share/icons/locolor/16x16"}, {"size": 8, "name": "/usr/share/icons/locolor/32x32/apps"}, {"size": 12, "name": "/usr/share/icons/locolor/32x32"}, {"size": 28, "name": "/usr/share/icons/locolor"}, {"size": 268, "name": "/usr/share/icons"}, {"size": 8, "name": "/usr/share/dnsmasq-base"}, {"size": 4, "name": "/usr/share/dict"}, {"size": 52, "name": "/usr/share/byobu/keybindings"}, {"size": 8, "name": "/usr/share/byobu/windows"}, {"size": 12, "name": "/usr/share/byobu/status"}, {"size": 8, "name": "/usr/share/byobu/tests"}, {"size": 12, "name": "/usr/share/byobu/desktop"}, {"size": 20, "name": "/usr/share/byobu/pixmaps"}, {"size": 40, "name": "/usr/share/byobu/profiles"}, {"size": 156, "name": "/usr/share/byobu"}, {"size": 56, "name": "/usr/share/lxc/templates"}, {"size": 52, "name": "/usr/share/lxc/hooks"}, {"size": 12, "name": "/usr/share/lxc/config/common.conf.d"}, {"size": 36, "name": "/usr/share/lxc/config"}, {"size": 12, "name": "/usr/share/lxc/selinux"}, {"size": 164, "name": "/usr/share/lxc"}, {"size": 6824, "name": "/usr/share/GeoIP"}, {"size": 12, "name": "/usr/share/base-passwd"}, {"size": 12, "name": "/usr/share/openssh"}, {"size": 12, "name": "/usr/share/libdrm"}, {"size": 12, "name": "/usr/share/locales"}, {"size": 8, "name": "/usr/share/java"}, {"size": 8, "name": "/usr/share/python/runtime.d"}, {"size": 12, "name": "/usr/share/python"}, {"size": 8, "name": "/usr/share/rsyslog"}, {"size": 12, "name": "/usr/share/language-support"}, {"size": 4, "name": "/usr/share/update-notifier/plugins/cache-changed"}, {"size": 8, "name": "/usr/share/update-notifier/plugins"}, {"size": 8, "name": "/usr/share/update-notifier/upgrader-patches"}, {"size": 88, "name": "/usr/share/update-notifier"}, {"size": 76, "name": "/usr/share/language-selector/data"}, {"size": 80, "name": "/usr/share/language-selector"}, {"size": 1800, "name": "/usr/share/python-wheels"}, {"size": 20, "name": "/usr/share/slurm"}, {"size": 264, "name": "/usr/share/common-licenses"}, {"size": 8, "name": "/usr/share/libc-bin"}, {"size": 12, "name": "/usr/share/build-essential"}, {"size": 12, "name": "/usr/share/lxcfs"}, {"size": 16, "name": "/usr/share/mdadm"}, {"size": 12, "name": "/usr/share/cryptsetup/initramfs/bin"}, {"size": 16, "name": "/usr/share/cryptsetup/initramfs"}, {"size": 20, "name": "/usr/share/cryptsetup"}, {"size": 2948, "name": "/usr/share/command-not-found"}, {"size": 4, "name": "/usr/share/libsensors4"}, {"size": 44, "name": "/usr/share/pam"}, {"size": 20, "name": "/usr/share/tabset"}, {"size": 16, "name": "/usr/share/doc/accountsservice"}, {"size": 16, "name": "/usr/share/doc/libapt-pkg5.0"}, {"size": 16, "name": "/usr/share/doc/python3-crypto"}, {"size": 32, "name": "/usr/share/doc/dpkg-dev"}, {"size": 52, "name": "/usr/share/doc/libmpfr6"}, {"size": 28, "name": "/usr/share/doc/bsdutils"}, {"size": 24, "name": "/usr/share/doc/net-tools"}, {"size": 80, "name": "/usr/share/doc/libkrb5-3"}, {"size": 16, "name": "/usr/share/doc/python3-blinker"}, {"size": 12, "name": "/usr/share/doc/liblz4-1"}, {"size": 16, "name": "/usr/share/doc/networkd-dispatcher"}, {"size": 40, "name": "/usr/share/doc/vim-runtime"}, {"size": 16, "name": "/usr/share/doc/libdpkg-perl"}, {"size": 12, "name": "/usr/share/doc/libdevmapper1.02.1"}, {"size": 24, "name": "/usr/share/doc/apt/examples"}, {"size": 32, "name": "/usr/share/doc/apt"}, {"size": 28, "name": "/usr/share/doc/mlocate"}, {"size": 32, "name": "/usr/share/doc/tmux"}, {"size": 12, "name": "/usr/share/doc/libonig4"}, {"size": 12, "name": "/usr/share/doc/libpci3"}, {"size": 8, "name": "/usr/share/doc/libapt-inst2.0"}, {"size": 48, "name": "/usr/share/doc/linux-headers-4.15.0-72"}, {"size": 24, "name": "/usr/share/doc/libxmlsec1"}, {"size": 16, "name": "/usr/share/doc/distro-info-data"}, {"size": 20, "name": "/usr/share/doc/less"}, {"size": 12, "name": "/usr/share/doc/libfastjson4"}, {"size": 12, "name": "/usr/share/doc/libirs160"}, {"size": 12, "name": "/usr/share/doc/libxdmcp6"}, {"size": 12, "name": "/usr/share/doc/libkeyutils1"}, {"size": 12, "name": "/usr/share/doc/dnsutils"}, {"size": 12, "name": "/usr/share/doc/libmpdec2"}, {"size": 36, "name": "/usr/share/doc/dpkg"}, {"size": 12, "name": "/usr/share/doc/libnl-genl-3-200"}, {"size": 28, "name": "/usr/share/doc/python3-certifi"}, {"size": 44, "name": "/usr/share/doc/libnettle6"}, {"size": 12, "name": "/usr/share/doc/python3-jsonschema"}, {"size": 124, "name": "/usr/share/doc/linux-modules-extra-4.15.0-70-generic"}, {"size": 172, "name": "/usr/share/doc/libslang2"}, {"size": 24, "name": "/usr/share/doc/liblinear3"}, {"size": 12, "name": "/usr/share/doc/libsemanage1"}, {"size": 16, "name": "/usr/share/doc/acl"}, {"size": 68, "name": "/usr/share/doc/libk5crypto3"}, {"size": 12, "name": "/usr/share/doc/libestr0"}, {"size": 8, "name": "/usr/share/doc/python3-pip"}, {"size": 8, "name": "/usr/share/doc/dmeventd"}, {"size": 12, "name": "/usr/share/doc/libglib2.0-data"}, {"size": 16, "name": "/usr/share/doc/libtext-charwidth-perl"}, {"size": 16, "name": "/usr/share/doc/dmidecode"}, {"size": 16, "name": "/usr/share/doc/readline-common"}, {"size": 12, "name": "/usr/share/doc/python3-markupsafe"}, {"size": 48, "name": "/usr/share/doc/linux-modules-4.15.0-72-generic"}, {"size": 12, "name": "/usr/share/doc/libisns0"}, {"size": 12, "name": "/usr/share/doc/libfile-fcntllock-perl"}, {"size": 328, "name": "/usr/share/doc/linux-firmware/licenses"}, {"size": 384, "name": "/usr/share/doc/linux-firmware"}, {"size": 92, "name": "/usr/share/doc/groff-base"}, {"size": 12, "name": "/usr/share/doc/libsepol1"}, {"size": 56, "name": "/usr/share/doc/lvm2"}, {"size": 32, "name": "/usr/share/doc/ethtool"}, {"size": 12, "name": "/usr/share/doc/libnpth0"}, {"size": 16, "name": "/usr/share/doc/libcap2"}, {"size": 16, "name": "/usr/share/doc/libusb-1.0-0"}, {"size": 20, "name": "/usr/share/doc/libcryptsetup12"}, {"size": 32, "name": "/usr/share/doc/intel-microcode"}, {"size": 32, "name": "/usr/share/doc/libc6-dev"}, {"size": 12, "name": "/usr/share/doc/python3-pam/examples"}, {"size": 24, "name": "/usr/share/doc/python3-pam"}, {"size": 28, "name": "/usr/share/doc/ed"}, {"size": 12, "name": "/usr/share/doc/python3-automat"}, {"size": 20, "name": "/usr/share/doc/file"}, {"size": 12, "name": "/usr/share/doc/python3-systemd"}, {"size": 12, "name": "/usr/share/doc/cloud-initramfs-copymods"}, {"size": 12, "name": "/usr/share/doc/libnetfilter-conntrack3"}, {"size": 36, "name": "/usr/share/doc/python3-dbus"}, {"size": 8, "name": "/usr/share/doc/eatmydata"}, {"size": 16, "name": "/usr/share/doc/libassuan0"}, {"size": 8, "name": "/usr/share/doc/procps/examples"}, {"size": 32, "name": "/usr/share/doc/procps"}, {"size": 24, "name": "/usr/share/doc/libfdisk1"}, {"size": 20, "name": "/usr/share/doc/openssl/HOWTO"}, {"size": 72, "name": "/usr/share/doc/openssl"}, {"size": 128, "name": "/usr/share/doc/libc6"}, {"size": 8, "name": "/usr/share/doc/ca-certificates/examples/ca-certificates-local/debian/source"}, {"size": 40, "name": "/usr/share/doc/ca-certificates/examples/ca-certificates-local/debian"}, {"size": 12, "name": "/usr/share/doc/ca-certificates/examples/ca-certificates-local/local"}, {"size": 64, "name": "/usr/share/doc/ca-certificates/examples/ca-certificates-local"}, {"size": 68, "name": "/usr/share/doc/ca-certificates/examples"}, {"size": 100, "name": "/usr/share/doc/ca-certificates"}, {"size": 16, "name": "/usr/share/doc/powermgmt-base"}, {"size": 20, "name": "/usr/share/doc/dh-python"}, {"size": 20, "name": "/usr/share/doc/sosreport"}, {"size": 20, "name": "/usr/share/doc/diffutils"}, {"size": 20, "name": "/usr/share/doc/libgpg-error0"}, {"size": 16, "name": "/usr/share/doc/libunistring2"}, {"size": 32, "name": "/usr/share/doc/patch"}, {"size": 12, "name": "/usr/share/doc/dns-root-data"}, {"size": 12, "name": "/usr/share/doc/libaccountsservice0"}, {"size": 12, "name": "/usr/share/doc/libelf1"}, {"size": 12, "name": "/usr/share/doc/python3-apt"}, {"size": 12, "name": "/usr/share/doc/python3-keyrings.alt"}, {"size": 12, "name": "/usr/share/doc/sed/examples"}, {"size": 108, "name": "/usr/share/doc/sed"}, {"size": 12, "name": "/usr/share/doc/zerofree"}, {"size": 32, "name": "/usr/share/doc/iucode-tool"}, {"size": 12, "name": "/usr/share/doc/libisccfg160"}, {"size": 24, "name": "/usr/share/doc/python3-distutils"}, {"size": 12, "name": "/usr/share/doc/libheimntlm0-heimdal"}, {"size": 20, "name": "/usr/share/doc/pigz"}, {"size": 16, "name": "/usr/share/doc/gpg"}, {"size": 32, "name": "/usr/share/doc/dnsmasq-base/examples"}, {"size": 88, "name": "/usr/share/doc/dnsmasq-base"}, {"size": 12, "name": "/usr/share/doc/xauth"}, {"size": 20, "name": "/usr/share/doc/libnl-3-200"}, {"size": 8, "name": "/usr/share/doc/passwd/examples"}, {"size": 84, "name": "/usr/share/doc/passwd"}, {"size": 8, "name": "/usr/share/doc/python3-commandnotfound"}, {"size": 16, "name": "/usr/share/doc/libisc169"}, {"size": 12, "name": "/usr/share/doc/libbz2-1.0"}, {"size": 20, "name": "/usr/share/doc/python3-setuptools"}, {"size": 12, "name": "/usr/share/doc/libalgorithm-merge-perl"}, {"size": 28, "name": "/usr/share/doc/git-man"}, {"size": 28, "name": "/usr/share/doc/libksba8"}, {"size": 12, "name": "/usr/share/doc/libntfs-3g88"}, {"size": 8, "name": "/usr/share/doc/liblvm2cmd2.02"}, {"size": 20, "name": "/usr/share/doc/ntfs-3g"}, {"size": 24, "name": "/usr/share/doc/byobu"}, {"size": 36, "name": "/usr/share/doc/libfuse2"}, {"size": 24, "name": "/usr/share/doc/gpgv"}, {"size": 24, "name": "/usr/share/doc/gnupg-utils"}, {"size": 8, "name": "/usr/share/doc/libdevmapper-event1.02.1"}, {"size": 44, "name": "/usr/share/doc/base-passwd"}, {"size": 12, "name": "/usr/share/doc/python3-pyasn1"}, {"size": 16, "name": "/usr/share/doc/ncurses-base"}, {"size": 24, "name": "/usr/share/doc/dash"}, {"size": 28, "name": "/usr/share/doc/lxd-client"}, {"size": 44, "name": "/usr/share/doc/locales"}, {"size": 20, "name": "/usr/share/doc/libssl1.1"}, {"size": 12, "name": "/usr/share/doc/gpg-agent/examples"}, {"size": 36, "name": "/usr/share/doc/gpg-agent"}, {"size": 12, "name": "/usr/share/doc/python3-incremental"}, {"size": 12, "name": "/usr/share/doc/libkrb5-26-heimdal"}, {"size": 28, "name": "/usr/share/doc/libnih1"}, {"size": 12, "name": "/usr/share/doc/run-one"}, {"size": 24, "name": "/usr/share/doc/libblkid1"}, {"size": 12, "name": "/usr/share/doc/update-notifier-common"}, {"size": 20, "name": "/usr/share/doc/libmagic-mgc"}, {"size": 12, "name": "/usr/share/doc/libnss-systemd"}, {"size": 12, "name": "/usr/share/doc/ureadahead"}, {"size": 12, "name": "/usr/share/doc/libmagic1"}, {"size": 12, "name": "/usr/share/doc/python3-wheel"}, {"size": 12, "name": "/usr/share/doc/mime-support"}, {"size": 12, "name": "/usr/share/doc/rsyslog/examples/rsyslog.d"}, {"size": 8, "name": "/usr/share/doc/rsyslog/examples/tmpfiles.d"}, {"size": 24, "name": "/usr/share/doc/rsyslog/examples"}, {"size": 52, "name": "/usr/share/doc/rsyslog"}, {"size": 20, "name": "/usr/share/doc/liblxc1"}, {"size": 20, "name": "/usr/share/doc/libssl1.0.0"}, {"size": 12, "name": "/usr/share/doc/libexpat1-dev/examples"}, {"size": 120, "name": "/usr/share/doc/libexpat1-dev/expat.html"}, {"size": 144, "name": "/usr/share/doc/libexpat1-dev"}, {"size": 28, "name": "/usr/share/doc/acpid/examples"}, {"size": 48, "name": "/usr/share/doc/acpid"}, {"size": 12, "name": "/usr/share/doc/language-selector-common"}, {"size": 16, "name": "/usr/share/doc/linux-base"}, {"size": 72, "name": "/usr/share/doc/containerd"}, {"size": 8, "name": "/usr/share/doc/netcat-openbsd/examples/contrib"}, {"size": 60, "name": "/usr/share/doc/netcat-openbsd/examples"}, {"size": 76, "name": "/usr/share/doc/netcat-openbsd"}, {"size": 16, "name": "/usr/share/doc/libgmp10"}, {"size": 12, "name": "/usr/share/doc/btrfs-progs"}, {"size": 12, "name": "/usr/share/doc/python3-click"}, {"size": 36, "name": "/usr/share/doc/libwrap0"}, {"size": 12, "name": "/usr/share/doc/ubuntu-server"}, {"size": 28, "name": "/usr/share/doc/libdrm2"}, {"size": 8, "name": "/usr/share/doc/dmsetup"}, {"size": 16, "name": "/usr/share/doc/libapparmor1"}, {"size": 32, "name": "/usr/share/doc/slurm"}, {"size": 52, "name": "/usr/share/doc/install-info"}, {"size": 12, "name": "/usr/share/doc/python-apt-common"}, {"size": 12, "name": "/usr/share/doc/binutils-common"}, {"size": 12, "name": "/usr/share/doc/linux-headers-generic"}, {"size": 12, "name": "/usr/share/doc/libmnl0"}, {"size": 156, "name": "/usr/share/doc/libgnutls30"}, {"size": 40, "name": "/usr/share/doc/vim-tiny"}, {"size": 76, "name": "/usr/share/doc/libdbus-1-3"}, {"size": 12, "name": "/usr/share/doc/python3-distupgrade"}, {"size": 20, "name": "/usr/share/doc/logrotate"}, {"size": 32, "name": "/usr/share/doc/libc-bin"}, {"size": 152, "name": "/usr/share/doc/gdisk"}, {"size": 12, "name": "/usr/share/doc/python3-oauthlib"}, {"size": 12, "name": "/usr/share/doc/linux-image-4.15.0-70-generic"}, {"size": 8, "name": "/usr/share/doc/libpolkit-agent-1-0"}, {"size": 20, "name": "/usr/share/doc/htop"}, {"size": 12, "name": "/usr/share/doc/libpipeline1"}, {"size": 8, "name": "/usr/share/doc/strace/examples"}, {"size": 36, "name": "/usr/share/doc/strace"}, {"size": 16, "name": "/usr/share/doc/cgroupfs-mount"}, {"size": 12, "name": "/usr/share/doc/python3-openssl"}, {"size": 12, "name": "/usr/share/doc/libmspack0"}, {"size": 16, "name": "/usr/share/doc/build-essential"}, {"size": 28, "name": "/usr/share/doc/libsmartcols1"}, {"size": 12, "name": "/usr/share/doc/libnfnetlink0"}, {"size": 16, "name": "/usr/share/doc/iw"}, {"size": 12, "name": "/usr/share/doc/python3-attr"}, {"size": 24, "name": "/usr/share/doc/libdumbnet1"}, {"size": 16, "name": "/usr/share/doc/ubuntu-release-upgrader-core"}, {"size": 12, "name": "/usr/share/doc/python3-jinja2"}, {"size": 12, "name": "/usr/share/doc/libbind9-160"}, {"size": 12, "name": "/usr/share/doc/init"}, {"size": 12, "name": "/usr/share/doc/ubuntu-keyring"}, {"size": 12, "name": "/usr/share/doc/command-not-found-data"}, {"size": 12, "name": "/usr/share/doc/ncurses-bin"}, {"size": 16, "name": "/usr/share/doc/gpgsm"}, {"size": 48, "name": "/usr/share/doc/libpcre3"}, {"size": 12, "name": "/usr/share/doc/lxcfs"}, {"size": 24, "name": "/usr/share/doc/libcurl3-gnutls"}, {"size": 28, "name": "/usr/share/doc/libfribidi0"}, {"size": 8, "name": "/usr/share/doc/liblvm2app2.2"}, {"size": 8, "name": "/usr/share/doc/pciutils/examples"}, {"size": 24, "name": "/usr/share/doc/pciutils"}, {"size": 12, "name": "/usr/share/doc/mdadm/examples"}, {"size": 168, "name": "/usr/share/doc/mdadm"}, {"size": 8, "name": "/usr/share/doc/cryptsetup/examples"}, {"size": 240, "name": "/usr/share/doc/cryptsetup"}, {"size": 44, "name": "/usr/share/doc/python3-httplib2"}, {"size": 12, "name": "/usr/share/doc/command-not-found"}, {"size": 68, "name": "/usr/share/doc/uidmap"}, {"size": 12, "name": "/usr/share/doc/pollinate"}, {"size": 28, "name": "/usr/share/doc/python3-gdbm"}, {"size": 40, "name": "/usr/share/doc/fonts-ubuntu-console"}, {"size": 12, "name": "/usr/share/doc/lshw"}, {"size": 20, "name": "/usr/share/doc/libsensors4"}, {"size": 24, "name": "/usr/share/doc/fdisk"}, {"size": 12, "name": "/usr/share/doc/ubuntu-standard"}, {"size": 20, "name": "/usr/share/doc/runc"}, {"size": 12, "name": "/usr/share/doc/libattr1"}, {"size": 8, "name": "/usr/share/doc/gpgconf/examples"}, {"size": 32, "name": "/usr/share/doc/gpgconf"}, {"size": 4, "name": "/usr/share/doc/linux-image-unsigned-4.15.0-72-generic"}, {"size": 60, "name": "/usr/share/doc/open-iscsi"}, {"size": 84, "name": "/usr/share/doc/dirmngr"}, {"size": 12, "name": "/usr/share/doc/libacl1"}, {"size": 24, "name": "/usr/share/doc/libdrm-common"}, {"size": 8, "name": "/usr/share/doc/xz-utils/extra/scanlzma"}, {"size": 8, "name": "/usr/share/doc/xz-utils/extra/7z2lzma"}, {"size": 20, "name": "/usr/share/doc/xz-utils/extra"}, {"size": 64, "name": "/usr/share/doc/xz-utils"}, {"size": 16, "name": "/usr/share/doc/libpopt0"}, {"size": 28, "name": "/usr/share/doc/at"}, {"size": 12, "name": "/usr/share/doc/libdns-export1100"}, {"size": 16, "name": "/usr/share/doc/libroken18-heimdal"}, {"size": 12, "name": "/usr/share/doc/info"}, {"size": 36, "name": "/usr/share/doc/iputils-tracepath"}, {"size": 16, "name": "/usr/share/doc/libuv1"}, {"size": 8, "name": "/usr/share/doc/libreadline7/examples"}, {"size": 32, "name": "/usr/share/doc/libreadline7"}, {"size": 156, "name": "/usr/share/doc/iptables/html"}, {"size": 192, "name": "/usr/share/doc/iptables"}, {"size": 744, "name": "/usr/share/doc/python3.6"}, {"size": 8, "name": "/usr/share/doc/nano/examples"}, {"size": 180, "name": "/usr/share/doc/nano"}, {"size": 12, "name": "/usr/share/doc/thermald"}, {"size": 156, "name": "/usr/share/doc/libglib2.0-0"}, {"size": 32, "name": "/usr/share/doc/libip6tc0"}, {"size": 16, "name": "/usr/share/doc/python3-twisted-bin"}, {"size": 12, "name": "/usr/share/doc/librtmp1"}, {"size": 16, "name": "/usr/share/doc/ncurses-term"}, {"size": 20, "name": "/usr/share/doc/libdb5.3"}, {"size": 16, "name": "/usr/share/doc/bcache-tools"}, {"size": 44, "name": "/usr/share/doc/liblzma5"}, {"size": 16, "name": "/usr/share/doc/pastebinit"}, {"size": 12, "name": "/usr/share/doc/libaudit1"}, {"size": 16, "name": "/usr/share/doc/libzstd1"}, {"size": 36, "name": "/usr/share/doc/dosfstools"}, {"size": 16, "name": "/usr/share/doc/libedit2"}, {"size": 32, "name": "/usr/share/doc/libc-dev-bin"}, {"size": 24, "name": "/usr/share/doc/libxml2"}, {"size": 20, "name": "/usr/share/doc/os-prober"}, {"size": 8, "name": "/usr/share/doc/linux-generic"}, {"size": 88, "name": "/usr/share/doc/bash"}, {"size": 12, "name": "/usr/share/doc/busybox-initramfs"}, {"size": 12, "name": "/usr/share/doc/python3-netifaces"}, {"size": 36, "name": "/usr/share/doc/iputils-ping"}, {"size": 12, "name": "/usr/share/doc/libnewt0.52"}, {"size": 56, "name": "/usr/share/doc/time"}, {"size": 8, "name": "/usr/share/doc/libfreetype6/pcf"}, {"size": 72, "name": "/usr/share/doc/libfreetype6"}, {"size": 16, "name": "/usr/share/doc/python3-jsonpatch"}, {"size": 16, "name": "/usr/share/doc/docker"}, {"size": 12, "name": "/usr/share/doc/zlib1g"}, {"size": 12, "name": "/usr/share/doc/xdelta3"}, {"size": 12, "name": "/usr/share/doc/libutempter0"}, {"size": 20, "name": "/usr/share/doc/hdparm/wiper"}, {"size": 8, "name": "/usr/share/doc/hdparm/contrib"}, {"size": 52, "name": "/usr/share/doc/hdparm"}, {"size": 12, "name": "/usr/share/doc/ucf/examples"}, {"size": 24, "name": "/usr/share/doc/ucf"}, {"size": 20, "name": "/usr/share/doc/libxext6"}, {"size": 20, "name": "/usr/share/doc/libdbus-glib-1-2"}, {"size": 20, "name": "/usr/share/doc/libgeoip1"}, {"size": 28, "name": "/usr/share/doc/liblzo2-2"}, {"size": 24, "name": "/usr/share/doc/base-files"}, {"size": 16, "name": "/usr/share/doc/libtext-wrapi18n-perl"}, {"size": 16, "name": "/usr/share/doc/iproute2"}, {"size": 12, "name": "/usr/share/doc/libhcrypto4-heimdal"}, {"size": 12, "name": "/usr/share/doc/ubuntu-minimal"}, {"size": 16, "name": "/usr/share/doc/python3-idna"}, {"size": 124, "name": "/usr/share/doc/linux-modules-4.15.0-70-generic"}, {"size": 12, "name": "/usr/share/doc/libpam-cap"}, {"size": 16, "name": "/usr/share/doc/systemd-sysv"}, {"size": 12, "name": "/usr/share/doc/libevent-2.1-6"}, {"size": 8, "name": "/usr/share/doc/popularity-contest/examples/cgi-bin"}, {"size": 60, "name": "/usr/share/doc/popularity-contest/examples/bin"}, {"size": 72, "name": "/usr/share/doc/popularity-contest/examples"}, {"size": 92, "name": "/usr/share/doc/popularity-contest"}, {"size": 12, "name": "/usr/share/doc/python3-update-manager"}, {"size": 12, "name": "/usr/share/doc/libeatmydata1"}, {"size": 12, "name": "/usr/share/doc/libatm1"}, {"size": 8, "name": "/usr/share/doc/mount/examples"}, {"size": 36, "name": "/usr/share/doc/mount"}, {"size": 16, "name": "/usr/share/doc/gpg-wks-client"}, {"size": 20, "name": "/usr/share/doc/udev"}, {"size": 8, "name": "/usr/share/doc/python3-newt"}, {"size": 28, "name": "/usr/share/doc/bash-completion"}, {"size": 12, "name": "/usr/share/doc/linux-image-4.15.0-72-generic"}, {"size": 12, "name": "/usr/share/doc/bridge-utils/examples"}, {"size": 64, "name": "/usr/share/doc/bridge-utils"}, {"size": 468, "name": "/usr/share/doc/manpages"}, {"size": 124, "name": "/usr/share/doc/perl-modules-5.26"}, {"size": 20, "name": "/usr/share/doc/iftop"}, {"size": 12, "name": "/usr/share/doc/libxcb1"}, {"size": 12, "name": "/usr/share/doc/overlayroot"}, {"size": 16, "name": "/usr/share/doc/libgirepository-1.0-1"}, {"size": 16, "name": "/usr/share/doc/ebtables"}, {"size": 20, "name": "/usr/share/doc/libkmod2"}, {"size": 12, "name": "/usr/share/doc/libpsl5"}, {"size": 12, "name": "/usr/share/doc/libisccc160"}, {"size": 28, "name": "/usr/share/doc/libpython3-dev"}, {"size": 60, "name": "/usr/share/doc/tar"}, {"size": 20, "name": "/usr/share/doc/bc/examples"}, {"size": 108, "name": "/usr/share/doc/bc"}, {"size": 12, "name": "/usr/share/doc/linux-image-generic"}, {"size": 12, "name": "/usr/share/doc/python3-configobj"}, {"size": 8, "name": "/usr/share/doc/bzip2"}, {"size": 12, "name": "/usr/share/doc/python3-constantly"}, {"size": 124, "name": "/usr/share/doc/linux-headers-4.15.0-70-generic"}, {"size": 16, "name": "/usr/share/doc/python3-jwt"}, {"size": 8, "name": "/usr/share/doc/kbd/examples"}, {"size": 8, "name": "/usr/share/doc/kbd/scancodes"}, {"size": 68, "name": "/usr/share/doc/kbd/charsets"}, {"size": 44, "name": "/usr/share/doc/kbd/font-formats"}, {"size": 164, "name": "/usr/share/doc/kbd"}, {"size": 36, "name": "/usr/share/doc/amd64-microcode"}, {"size": 12, "name": "/usr/share/doc/libpolkit-gobject-1-0"}, {"size": 16, "name": "/usr/share/doc/libheimbase1-heimdal"}, {"size": 12, "name": "/usr/share/doc/cloud-initramfs-dyn-netconf"}, {"size": 16, "name": "/usr/share/doc/libudev1"}, {"size": 60, "name": "/usr/share/doc/python3.6-minimal"}, {"size": 20, "name": "/usr/share/doc/libjson-c3"}, {"size": 76, "name": "/usr/share/doc/libkrb5support0"}, {"size": 16, "name": "/usr/share/doc/gpg-wks-server"}, {"size": 24, "name": "/usr/share/doc/python3-software-properties"}, {"size": 12, "name": "/usr/share/doc/gir1.2-glib-2.0"}, {"size": 8, "name": "/usr/share/doc/fakeroot"}, {"size": 16, "name": "/usr/share/doc/liblwres160"}, {"size": 12, "name": "/usr/share/doc/bind9-host"}, {"size": 20, "name": "/usr/share/doc/psmisc"}, {"size": 52, "name": "/usr/share/doc/libxslt1.1"}, {"size": 12, "name": "/usr/share/doc/whiptail"}, {"size": 12, "name": "/usr/share/doc/libgssapi3-heimdal"}, {"size": 12, "name": "/usr/share/doc/python-pip-whl"}, {"size": 144, "name": "/usr/share/doc/gcc-7-base/gcc"}, {"size": 24, "name": "/usr/share/doc/gcc-7-base/itm"}, {"size": 72, "name": "/usr/share/doc/gcc-7-base/gomp"}, {"size": 16, "name": "/usr/share/doc/gcc-7-base/sanitizer"}, {"size": 8, "name": "/usr/share/doc/gcc-7-base/mpx"}, {"size": 436, "name": "/usr/share/doc/gcc-7-base/C++"}, {"size": 12, "name": "/usr/share/doc/gcc-7-base/quadmath"}, {"size": 8, "name": "/usr/share/doc/gcc-7-base/cilkrts"}, {"size": 1048, "name": "/usr/share/doc/gcc-7-base"}, {"size": 192, "name": "/usr/share/doc/systemd"}, {"size": 36, "name": "/usr/share/doc/jq"}, {"size": 12, "name": "/usr/share/doc/libxau6"}, {"size": 12, "name": "/usr/share/doc/ssh-import-id"}, {"size": 48, "name": "/usr/share/doc/linux-libc-dev"}, {"size": 8, "name": "/usr/share/doc/software-properties-common"}, {"size": 24, "name": "/usr/share/doc/python3-lib2to3"}, {"size": 12, "name": "/usr/share/doc/grub-gfxpayload-lists"}, {"size": 84, "name": "/usr/share/doc/gcc-8-base"}, {"size": 8, "name": "/usr/share/doc/ufw/examples"}, {"size": 32, "name": "/usr/share/doc/ufw"}, {"size": 28, "name": "/usr/share/doc/libidn11"}, {"size": 28, "name": "/usr/share/doc/xkb-data"}, {"size": 184, "name": "/usr/share/doc/linux-headers-4.15.0-66"}, {"size": 20, "name": "/usr/share/doc/debianutils"}, {"size": 12, "name": "/usr/share/doc/cloud-guest-utils"}, {"size": 64, "name": "/usr/share/doc/gnupg"}, {"size": 136, "name": "/usr/share/doc/coreutils"}, {"size": 20, "name": "/usr/share/doc/tcpdump/examples"}, {"size": 44, "name": "/usr/share/doc/tcpdump"}, {"size": 20, "name": "/usr/share/doc/iso-codes"}, {"size": 32, "name": "/usr/share/doc/keyboard-configuration"}, {"size": 12, "name": "/usr/share/doc/libplymouth4"}, {"size": 12, "name": "/usr/share/doc/python3-chardet"}, {"size": 20, "name": "/usr/share/doc/init-system-helpers"}, {"size": 100, "name": "/usr/share/doc/python3/python-policy.html"}, {"size": 144, "name": "/usr/share/doc/python3"}, {"size": 12, "name": "/usr/share/doc/libgpm2"}, {"size": 24, "name": "/usr/share/doc/libfakeroot"}, {"size": 12, "name": "/usr/share/doc/python3-cryptography"}, {"size": 12, "name": "/usr/share/doc/python3-colorama"}, {"size": 24, "name": "/usr/share/doc/python3-xdg"}, {"size": 28, "name": "/usr/share/doc/libpython3-stdlib"}, {"size": 32, "name": "/usr/share/doc/multiarch-support"}, {"size": 60, "name": "/usr/share/doc/docker.io"}, {"size": 20, "name": "/usr/share/doc/apparmor"}, {"size": 16, "name": "/usr/share/doc/lxd"}, {"size": 32, "name": "/usr/share/doc/libjq1"}, {"size": 16, "name": "/usr/share/doc/libsqlite3-0"}, {"size": 40, "name": "/usr/share/doc/util-linux/examples"}, {"size": 244, "name": "/usr/share/doc/util-linux/releases"}, {"size": 432, "name": "/usr/share/doc/util-linux"}, {"size": 64, "name": "/usr/share/doc/libx11-6"}, {"size": 2024, "name": "/usr/share/doc/git/RelNotes"}, {"size": 12, "name": "/usr/share/doc/git/contrib/git-jump"}, {"size": 260, "name": "/usr/share/doc/git/contrib/examples"}, {"size": 20, "name": "/usr/share/doc/git/contrib/stats"}, {"size": 12, "name": "/usr/share/doc/git/contrib/update-unicode"}, {"size": 36, "name": "/usr/share/doc/git/contrib/coccinelle"}, {"size": 20, "name": "/usr/share/doc/git/contrib/contacts"}, {"size": 36, "name": "/usr/share/doc/git/contrib/persistent-https"}, {"size": 20, "name": "/usr/share/doc/git/contrib/svn-fe"}, {"size": 16, "name": "/usr/share/doc/git/contrib/git-shell-commands"}, {"size": 8, "name": "/usr/share/doc/git/contrib/long-running-filter"}, {"size": 40, "name": "/usr/share/doc/git/contrib/fast-import"}, {"size": 8, "name": "/usr/share/doc/git/contrib/workdir"}, {"size": 28, "name": "/usr/share/doc/git/contrib/buildsystems/Generators"}, {"size": 60, "name": "/usr/share/doc/git/contrib/buildsystems"}, {"size": 16, "name": "/usr/share/doc/git/contrib/remote-helpers"}, {"size": 16, "name": "/usr/share/doc/git/contrib/hg-to-git"}, {"size": 16, "name": "/usr/share/doc/git/contrib/diff-highlight/t"}, {"size": 56, "name": "/usr/share/doc/git/contrib/diff-highlight"}, {"size": 12, "name": "/usr/share/doc/git/contrib/thunderbird-patch-inline"}, {"size": 44, "name": "/usr/share/doc/git/contrib/subtree/t"}, {"size": 120, "name": "/usr/share/doc/git/contrib/subtree"}, {"size": 16, "name": "/usr/share/doc/git/contrib/credential/wincred"}, {"size": 12, "name": "/usr/share/doc/git/contrib/credential/osxkeychain"}, {"size": 20, "name": "/usr/share/doc/git/contrib/credential/gnome-keyring"}, {"size": 20, "name": "/usr/share/doc/git/contrib/credential/libsecret"}, {"size": 28, "name": "/usr/share/doc/git/contrib/credential/netrc"}, {"size": 100, "name": "/usr/share/doc/git/contrib/credential"}, {"size": 896, "name": "/usr/share/doc/git/contrib"}, {"size": 2968, "name": "/usr/share/doc/git"}, {"size": 16, "name": "/usr/share/doc/libsasl2-modules"}, {"size": 36, "name": "/usr/share/doc/libbsd0"}, {"size": 12, "name": "/usr/share/doc/python3-urllib3"}, {"size": 8, "name": "/usr/share/doc/libp11-kit0/examples"}, {"size": 32, "name": "/usr/share/doc/libp11-kit0"}, {"size": 40, "name": "/usr/share/doc/libnghttp2-14"}, {"size": 12, "name": "/usr/share/doc/libdns1100"}, {"size": 12, "name": "/usr/share/doc/netplan.io"}, {"size": 12, "name": "/usr/share/doc/python3-distro-info"}, {"size": 12, "name": "/usr/share/doc/python3-service-identity"}, {"size": 120, "name": "/usr/share/doc/libperl5.26"}, {"size": 32, "name": "/usr/share/doc/libpam0g"}, {"size": 16, "name": "/usr/share/doc/sensible-utils"}, {"size": 12, "name": "/usr/share/doc/python3-requests-unixsocket"}, {"size": 20, "name": "/usr/share/doc/python3-keyring"}, {"size": 24, "name": "/usr/share/doc/libcurl4"}, {"size": 12, "name": "/usr/share/doc/geoip-database"}, {"size": 12, "name": "/usr/share/doc/publicsuffix/examples"}, {"size": 48, "name": "/usr/share/doc/publicsuffix"}, {"size": 8, "name": "/usr/share/doc/plymouth-theme-ubuntu-text"}, {"size": 12, "name": "/usr/share/doc/python3-pyasn1-modules"}, {"size": 8, "name": "/usr/share/doc/libpam-modules-bin"}, {"size": 20, "name": "/usr/share/doc/nmap/style"}, {"size": 80, "name": "/usr/share/doc/nmap"}, {"size": 28, "name": "/usr/share/doc/libidn2-0"}, {"size": 4, "name": "/usr/share/doc/libext2fs"}, {"size": 16, "name": "/usr/share/doc/tzdata"}, {"size": 8, "name": "/usr/share/doc/python3-apport"}, {"size": 8, "name": "/usr/share/doc/sysvinit-utils"}, {"size": 48, "name": "/usr/share/doc/linux-modules-extra-4.15.0-72-generic"}, {"size": 124, "name": "/usr/share/doc/linux-headers-4.15.0-70"}, {"size": 24, "name": "/usr/share/doc/python3-debian/examples/debtags"}, {"size": 20, "name": "/usr/share/doc/python3-debian/examples/debfile"}, {"size": 12, "name": "/usr/share/doc/python3-debian/examples/changelog"}, {"size": 8, "name": "/usr/share/doc/python3-debian/examples/copyright"}, {"size": 20, "name": "/usr/share/doc/python3-debian/examples/deb822"}, {"size": 88, "name": "/usr/share/doc/python3-debian/examples"}, {"size": 128, "name": "/usr/share/doc/python3-debian"}, {"size": 12, "name": "/usr/share/doc/libaudit-common"}, {"size": 28, "name": "/usr/share/doc/isc-dhcp-client"}, {"size": 32, "name": "/usr/share/doc/libxtables12"}, {"size": 16, "name": "/usr/share/doc/python3-twisted"}, {"size": 32, "name": "/usr/share/doc/ltrace"}, {"size": 12, "name": "/usr/share/doc/libseccomp2"}, {"size": 12, "name": "/usr/share/doc/libselinux1"}, {"size": 24, "name": "/usr/share/doc/libtinfo5"}, {"size": 12, "name": "/usr/share/doc/libmpc3"}, {"size": 24, "name": "/usr/share/doc/libtasn1-6"}, {"size": 16, "name": "/usr/share/doc/libisl19"}, {"size": 116, "name": "/usr/share/doc/gettext-base"}, {"size": 20, "name": "/usr/share/doc/libsigsegv2"}, {"size": 56, "name": "/usr/share/doc/cron/examples"}, {"size": 96, "name": "/usr/share/doc/cron"}, {"size": 12, "name": "/usr/share/doc/grub-legacy-ec2"}, {"size": 68, "name": "/usr/share/doc/libgssapi-krb5-2"}, {"size": 44, "name": "/usr/share/doc/liblxc-common/examples"}, {"size": 52, "name": "/usr/share/doc/liblxc-common"}, {"size": 40, "name": "/usr/share/doc/vim"}, {"size": 68, "name": "/usr/share/doc/login"}, {"size": 12, "name": "/usr/share/doc/python3-asn1crypto"}, {"size": 12, "name": "/usr/share/doc/xdg-user-dirs"}, {"size": 16, "name": "/usr/share/doc/libicu60"}, {"size": 12, "name": "/usr/share/doc/libalgorithm-diff-xs-perl"}, {"size": 12, "name": "/usr/share/doc/libhx509-5-heimdal"}, {"size": 8, "name": "/usr/share/doc/libss2"}, {"size": 40, "name": "/usr/share/doc/wget"}, {"size": 12, "name": "/usr/share/doc/libyaml-0-2"}, {"size": 12, "name": "/usr/share/doc/rsync/examples"}, {"size": 52, "name": "/usr/share/doc/rsync/scripts"}, {"size": 100, "name": "/usr/share/doc/rsync"}, {"size": 16, "name": "/usr/share/doc/debconf"}, {"size": 16, "name": "/usr/share/doc/python3-yaml"}, {"size": 28, "name": "/usr/share/doc/bsdmainutils"}, {"size": 24, "name": "/usr/share/doc/libmount1"}, {"size": 16, "name": "/usr/share/doc/libsystemd0"}, {"size": 32, "name": "/usr/share/doc/telnet"}, {"size": 12, "name": "/usr/share/doc/libcap-ng0"}, {"size": 32, "name": "/usr/share/doc/libiptc0"}, {"size": 24, "name": "/usr/share/doc/man-db/examples"}, {"size": 292, "name": "/usr/share/doc/man-db"}, {"size": 12, "name": "/usr/share/doc/ubuntu-advantage-tools"}, {"size": 12, "name": "/usr/share/doc/cryptsetup-bin"}, {"size": 20, "name": "/usr/share/doc/lsb-base"}, {"size": 16, "name": "/usr/share/doc/lsb-release"}, {"size": 32, "name": "/usr/share/doc/libldap-2.4-2"}, {"size": 24, "name": "/usr/share/doc/crda"}, {"size": 4, "name": "/usr/share/doc/linux-image-unsigned-4.15.0-70-generic"}, {"size": 64, "name": "/usr/share/doc/libpython3.6-minimal"}, {"size": 16, "name": "/usr/share/doc/libsasl2-2"}, {"size": 12, "name": "/usr/share/doc/libtext-iconv-perl"}, {"size": 12, "name": "/usr/share/doc/squashfs-tools"}, {"size": 16, "name": "/usr/share/doc/curl"}, {"size": 20, "name": "/usr/share/doc/xfsprogs"}, {"size": 12, "name": "/usr/share/doc/mtr-tiny"}, {"size": 32, "name": "/usr/share/doc/libparted2"}, {"size": 24, "name": "/usr/share/doc/liberror-perl/examples/next-in-loop"}, {"size": 36, "name": "/usr/share/doc/liberror-perl/examples"}, {"size": 48, "name": "/usr/share/doc/liberror-perl"}, {"size": 12, "name": "/usr/share/doc/screen/examples"}, {"size": 36, "name": "/usr/share/doc/screen/terminfo"}, {"size": 120, "name": "/usr/share/doc/screen"}, {"size": 8, "name": "/usr/share/doc/libpolkit-backend-1-0"}, {"size": 24, "name": "/usr/share/doc/python3-pkg-resources"}, {"size": 12, "name": "/usr/share/doc/netbase"}, {"size": 12, "name": "/usr/share/doc/landscape-common"}, {"size": 12, "name": "/usr/share/doc/wireless-regdb"}, {"size": 28, "name": "/usr/share/doc/libuuid1"}, {"size": 12, "name": "/usr/share/doc/python3-serial"}, {"size": 8, "name": "/usr/share/doc/libpam-runtime"}, {"size": 72, "name": "/usr/share/doc/apport"}, {"size": 16, "name": "/usr/share/doc/python3-zope.interface"}, {"size": 56, "name": "/usr/share/doc/libx11-data"}, {"size": 28, "name": "/usr/share/doc/libpcap0.8"}, {"size": 8, "name": "/usr/share/doc/libreadline5/examples"}, {"size": 32, "name": "/usr/share/doc/libreadline5"}, {"size": 12, "name": "/usr/share/doc/initramfs-tools"}, {"size": 16, "name": "/usr/share/doc/libblas3"}, {"size": 8, "name": "/usr/share/doc/libpam-modules/examples"}, {"size": 16, "name": "/usr/share/doc/libpam-modules"}, {"size": 32, "name": "/usr/share/doc/libip4tc0"}, {"size": 24, "name": "/usr/share/doc/isc-dhcp-common"}, {"size": 20, "name": "/usr/share/doc/policykit-1"}, {"size": 60, "name": "/usr/share/doc/libgcrypt20"}, {"size": 12, "name": "/usr/share/doc/python3-six"}, {"size": 20, "name": "/usr/share/doc/libnuma1"}, {"size": 20, "name": "/usr/share/doc/liblocale-gettext-perl"}, {"size": 48, "name": "/usr/share/doc/mawk/examples"}, {"size": 68, "name": "/usr/share/doc/mawk"}, {"size": 8, "name": "/usr/share/doc/btrfs-tools"}, {"size": 112, "name": "/usr/share/doc/libpng16-16"}, {"size": 28, "name": "/usr/share/doc/libklibc"}, {"size": 68, "name": "/usr/share/doc/make"}, {"size": 8, "name": "/usr/share/doc/openssh-client/examples"}, {"size": 108, "name": "/usr/share/doc/openssh-client"}, {"size": 44, "name": "/usr/share/doc/vim-common"}, {"size": 16, "name": "/usr/share/doc/e2fsprogs"}, {"size": 40, "name": "/usr/share/doc/xxd"}, {"size": 56, "name": "/usr/share/doc/findutils"}, {"size": 8, "name": "/usr/share/doc/grub-common/examples"}, {"size": 72, "name": "/usr/share/doc/grub-common"}, {"size": 28, "name": "/usr/share/doc/libalgorithm-diff-perl/examples"}, {"size": 44, "name": "/usr/share/doc/libalgorithm-diff-perl"}, {"size": 16, "name": "/usr/share/doc/friendly-recovery"}, {"size": 12, "name": "/usr/share/doc/sysstat/xml"}, {"size": 28, "name": "/usr/share/doc/sysstat/examples"}, {"size": 84, "name": "/usr/share/doc/sysstat"}, {"size": 12, "name": "/usr/share/doc/libunwind8"}, {"size": 28, "name": "/usr/share/doc/plymouth"}, {"size": 12, "name": "/usr/share/doc/libdebconfclient0"}, {"size": 20, "name": "/usr/share/doc/ftp"}, {"size": 32, "name": "/usr/share/doc/busybox-static/examples/udhcp"}, {"size": 48, "name": "/usr/share/doc/busybox-static/examples"}, {"size": 68, "name": "/usr/share/doc/busybox-static"}, {"size": 16, "name": "/usr/share/doc/libexpat1"}, {"size": 12, "name": "/usr/share/doc/irqbalance"}, {"size": 16, "name": "/usr/share/doc/libprocps6"}, {"size": 8, "name": "/usr/share/doc/libgdbm-compat4"}, {"size": 12, "name": "/usr/share/doc/apt-utils/examples"}, {"size": 20, "name": "/usr/share/doc/apt-utils"}, {"size": 16, "name": "/usr/share/doc/usbutils"}, {"size": 24, "name": "/usr/share/doc/gzip"}, {"size": 64, "name": "/usr/share/doc/lsof/examples"}, {"size": 208, "name": "/usr/share/doc/lsof"}, {"size": 76, "name": "/usr/share/doc/krb5-locales"}, {"size": 16, "name": "/usr/share/doc/libsasl2-modules-db"}, {"size": 28, "name": "/usr/share/doc/parted"}, {"size": 8, "name": "/usr/share/doc/fuse"}, {"size": 12, "name": "/usr/share/doc/libcom-err2"}, {"size": 28, "name": "/usr/share/doc/dbus"}, {"size": 48, "name": "/usr/share/doc/linux-headers-4.15.0-72-generic"}, {"size": 12, "name": "/usr/share/doc/libffi6"}, {"size": 48, "name": "/usr/share/doc/grep"}, {"size": 12, "name": "/usr/share/doc/liblua5.3-0"}, {"size": 16, "name": "/usr/share/doc/libcap2-bin"}, {"size": 12, "name": "/usr/share/doc/libpam-systemd"}, {"size": 12, "name": "/usr/share/doc/libxmuu1"}, {"size": 20, "name": "/usr/share/doc/initramfs-tools-core/examples"}, {"size": 44, "name": "/usr/share/doc/initramfs-tools-core"}, {"size": 12, "name": "/usr/share/doc/libsemanage-common"}, {"size": 12, "name": "/usr/share/doc/libasn1-8-heimdal"}, {"size": 12, "name": "/usr/share/doc/libgdbm5"}, {"size": 16, "name": "/usr/share/doc/libargon2-0"}, {"size": 16, "name": "/usr/share/doc/initramfs-tools-bin"}, {"size": 24, "name": "/usr/share/doc/gnupg-l10n"}, {"size": 12, "name": "/usr/share/doc/python3-hyperlink"}, {"size": 12, "name": "/usr/share/doc/python3-requests"}, {"size": 28, "name": "/usr/share/doc/eject"}, {"size": 24, "name": "/usr/share/doc/sudo/examples"}, {"size": 108, "name": "/usr/share/doc/sudo"}, {"size": 12, "name": "/usr/share/doc/python3-secretstorage"}, {"size": 92, "name": "/usr/share/doc/gawk/examples/network"}, {"size": 84, "name": "/usr/share/doc/gawk/examples/prog"}, {"size": 28, "name": "/usr/share/doc/gawk/examples/misc"}, {"size": 28, "name": "/usr/share/doc/gawk/examples/data"}, {"size": 108, "name": "/usr/share/doc/gawk/examples/lib"}, {"size": 344, "name": "/usr/share/doc/gawk/examples"}, {"size": 376, "name": "/usr/share/doc/gawk"}, {"size": 28, "name": "/usr/share/doc/libldap-common"}, {"size": 12, "name": "/usr/share/doc/python3-cffi-backend"}, {"size": 20, "name": "/usr/share/doc/cpp"}, {"size": 12, "name": "/usr/share/doc/python3-problem-report"}, {"size": 28, "name": "/usr/share/doc/pinentry-curses"}, {"size": 16, "name": "/usr/share/doc/cloud-init/examples/seed"}, {"size": 220, "name": "/usr/share/doc/cloud-init/examples"}, {"size": 252, "name": "/usr/share/doc/cloud-init"}, {"size": 12, "name": "/usr/share/doc/python3-gi"}, {"size": 12, "name": "/usr/share/doc/libext2fs2"}, {"size": 8, "name": "/usr/share/doc/libxmlsec1-openssl"}, {"size": 8, "name": "/usr/share/doc/adduser/examples/adduser.local.conf.examples/skel.other"}, {"size": 16, "name": "/usr/share/doc/adduser/examples/adduser.local.conf.examples/skel"}, {"size": 40, "name": "/usr/share/doc/adduser/examples/adduser.local.conf.examples"}, {"size": 104, "name": "/usr/share/doc/adduser/examples"}, {"size": 120, "name": "/usr/share/doc/adduser"}, {"size": 16, "name": "/usr/share/doc/ubuntu-fan"}, {"size": 16, "name": "/usr/share/doc/libisc-export169"}, {"size": 20, "name": "/usr/share/doc/update-manager-core"}, {"size": 20, "name": "/usr/share/doc/unattended-upgrades"}, {"size": 28, "name": "/usr/share/doc/python3-minimal"}, {"size": 16, "name": "/usr/share/doc/python3-json-pointer"}, {"size": 68, "name": "/usr/share/doc/shared-mime-info/shared-mime-info-spec.html"}, {"size": 252, "name": "/usr/share/doc/shared-mime-info"}, {"size": 24, "name": "/usr/share/doc/snapd"}, {"size": 24, "name": "/usr/share/doc/uuid-runtime"}, {"size": 212, "name": "/usr/share/doc/perl"}, {"size": 12, "name": "/usr/share/doc/libwind0-heimdal"}, {"size": 16, "name": "/usr/share/doc/open-vm-tools"}, {"size": 12, "name": "/usr/share/doc/hostname"}, {"size": 8, "name": "/usr/share/doc/nplan"}, {"size": 20, "name": "/usr/share/doc/cpio"}, {"size": 16, "name": "/usr/share/doc/binutils/gas"}, {"size": 16, "name": "/usr/share/doc/binutils/gprof"}, {"size": 12, "name": "/usr/share/doc/binutils/bfd"}, {"size": 20, "name": "/usr/share/doc/binutils/ld"}, {"size": 112, "name": "/usr/share/doc/binutils"}, {"size": 12, "name": "/usr/share/doc/apport-symptoms"}, {"size": 24200, "name": "/usr/share/doc"}, {"size": 1116, "name": "/usr/share/info"}, {"size": 8, "name": "/usr/share/readline"}, {"size": 12, "name": "/usr/share/iptables"}, {"size": 184, "name": "/usr/share/nano"}, {"size": 12, "name": "/usr/share/os-prober"}, {"size": 40, "name": "/usr/share/base-files"}, {"size": 104, "name": "/usr/share/gcc-8/python/libstdcxx/v6"}, {"size": 112, "name": "/usr/share/gcc-8/python/libstdcxx"}, {"size": 116, "name": "/usr/share/gcc-8/python"}, {"size": 120, "name": "/usr/share/gcc-8"}, {"size": 16, "name": "/usr/share/popularity-contest"}, {"size": 12, "name": "/usr/share/bash-completion/helpers"}, {"size": 2668, "name": "/usr/share/bash-completion/completions"}, {"size": 2756, "name": "/usr/share/bash-completion"}, {"size": 172, "name": "/usr/share/python-apt/templates"}, {"size": 176, "name": "/usr/share/python-apt"}, {"size": 4, "name": "/usr/share/glib-2.0/schemas"}, {"size": 8, "name": "/usr/share/glib-2.0"}, {"size": 20, "name": "/usr/share/pyshared"}, {"size": 20, "name": "/usr/share/pam-configs"}, {"size": 76, "name": "/usr/share/mime/x-content"}, {"size": 220, "name": "/usr/share/mime/audio"}, {"size": 2212, "name": "/usr/share/mime/packages"}, {"size": 20, "name": "/usr/share/mime/font"}, {"size": 32, "name": "/usr/share/mime/message"}, {"size": 120, "name": "/usr/share/mime/video"}, {"size": 20, "name": "/usr/share/mime/model"}, {"size": 8, "name": "/usr/share/mime/x-epoc"}, {"size": 376, "name": "/usr/share/mime/image"}, {"size": 1768, "name": "/usr/share/mime/application"}, {"size": 32, "name": "/usr/share/mime/inode"}, {"size": 480, "name": "/usr/share/mime/text"}, {"size": 44, "name": "/usr/share/mime/multipart"}, {"size": 5708, "name": "/usr/share/mime"}, {"size": 8, "name": "/usr/share/landscape"}, {"size": 3380, "name": "/usr/share/i18n/charmaps"}, {"size": 10208, "name": "/usr/share/i18n/locales"}, {"size": 13600, "name": "/usr/share/i18n"}, {"size": 64, "name": "/usr/share/pixmaps"}, {"size": 20, "name": "/usr/share/systemd"}, {"size": 20, "name": "/usr/share/grub-gfxpayload-lists/blacklist"}, {"size": 24, "name": "/usr/share/grub-gfxpayload-lists"}, {"size": 32, "name": "/usr/share/ufw/iptables"}, {"size": 504, "name": "/usr/share/ufw/messages"}, {"size": 584, "name": "/usr/share/ufw"}, {"size": 8, "name": "/usr/share/debianutils"}, {"size": 296, "name": "/usr/share/gnupg"}, {"size": 36, "name": "/usr/share/language-tools"}, {"size": 1472, "name": "/usr/share/iso-codes/json"}, {"size": 1476, "name": "/usr/share/iso-codes"}, {"size": 24, "name": "/usr/share/python3/runtime.d"}, {"size": 44, "name": "/usr/share/python3/debpython/__pycache__"}, {"size": 92, "name": "/usr/share/python3/debpython"}, {"size": 16, "name": "/usr/share/python3/__pycache__"}, {"size": 8, "name": "/usr/share/python3/bcep"}, {"size": 20, "name": "/usr/share/python3/dist"}, {"size": 184, "name": "/usr/share/python3"}, {"size": 20, "name": "/usr/share/docker.io/contrib"}, {"size": 24, "name": "/usr/share/docker.io"}, {"size": 36, "name": "/usr/share/zoneinfo/Atlantic"}, {"size": 4, "name": "/usr/share/zoneinfo/SystemV"}, {"size": 4, "name": "/usr/share/zoneinfo/Canada"}, {"size": 132, "name": "/usr/share/zoneinfo/Pacific"}, {"size": 76, "name": "/usr/share/zoneinfo/Africa"}, {"size": 168, "name": "/usr/share/zoneinfo/Europe"}, {"size": 4, "name": "/usr/share/zoneinfo/Brazil"}, {"size": 8, "name": "/usr/share/zoneinfo/Chile"}, {"size": 8, "name": "/usr/share/zoneinfo/Arctic"}, {"size": 44, "name": "/usr/share/zoneinfo/Antarctica"}, {"size": 52, "name": "/usr/share/zoneinfo/Australia"}, {"size": 36, "name": "/usr/share/zoneinfo/Indian"}, {"size": 16, "name": "/usr/share/zoneinfo/America/North_Dakota"}, {"size": 32, "name": "/usr/share/zoneinfo/America/Argentina"}, {"size": 8, "name": "/usr/share/zoneinfo/America/Kentucky"}, {"size": 28, "name": "/usr/share/zoneinfo/America/Indiana"}, {"size": 540, "name": "/usr/share/zoneinfo/America"}, {"size": 4, "name": "/usr/share/zoneinfo/US"}, {"size": 288, "name": "/usr/share/zoneinfo/Asia"}, {"size": 108, "name": "/usr/share/zoneinfo/Etc"}, {"size": 36, "name": "/usr/share/zoneinfo/right/Atlantic"}, {"size": 4, "name": "/usr/share/zoneinfo/right/SystemV"}, {"size": 4, "name": "/usr/share/zoneinfo/right/Canada"}, {"size": 132, "name": "/usr/share/zoneinfo/right/Pacific"}, {"size": 76, "name": "/usr/share/zoneinfo/right/Africa"}, {"size": 168, "name": "/usr/share/zoneinfo/right/Europe"}, {"size": 4, "name": "/usr/share/zoneinfo/right/Brazil"}, {"size": 8, "name": "/usr/share/zoneinfo/right/Chile"}, {"size": 8, "name": "/usr/share/zoneinfo/right/Arctic"}, {"size": 44, "name": "/usr/share/zoneinfo/right/Antarctica"}, {"size": 52, "name": "/usr/share/zoneinfo/right/Australia"}, {"size": 36, "name": "/usr/share/zoneinfo/right/Indian"}, {"size": 16, "name": "/usr/share/zoneinfo/right/America/North_Dakota"}, {"size": 32, "name": "/usr/share/zoneinfo/right/America/Argentina"}, {"size": 8, "name": "/usr/share/zoneinfo/right/America/Kentucky"}, {"size": 28, "name": "/usr/share/zoneinfo/right/America/Indiana"}, {"size": 556, "name": "/usr/share/zoneinfo/right/America"}, {"size": 4, "name": "/usr/share/zoneinfo/right/US"}, {"size": 288, "name": "/usr/share/zoneinfo/right/Asia"}, {"size": 108, "name": "/usr/share/zoneinfo/right/Etc"}, {"size": 4, "name": "/usr/share/zoneinfo/right/Mexico"}, {"size": 1688, "name": "/usr/share/zoneinfo/right"}, {"size": 4, "name": "/usr/share/zoneinfo/Mexico"}, {"size": 4, "name": "/usr/share/zoneinfo/posix/Atlantic"}, {"size": 4, "name": "/usr/share/zoneinfo/posix/SystemV"}, {"size": 4, "name": "/usr/share/zoneinfo/posix/Canada"}, {"size": 4, "name": "/usr/share/zoneinfo/posix/Pacific"}, {"size": 4, "name": "/usr/share/zoneinfo/posix/Africa"}, {"size": 12, "name": "/usr/share/zoneinfo/posix/Europe"}, {"size": 4, "name": "/usr/share/zoneinfo/posix/Brazil"}, {"size": 4, "name": "/usr/share/zoneinfo/posix/Chile"}, {"size": 4, "name": "/usr/share/zoneinfo/posix/Arctic"}, {"size": 4, "name": "/usr/share/zoneinfo/posix/Antarctica"}, {"size": 4, "name": "/usr/share/zoneinfo/posix/Australia"}, {"size": 4, "name": "/usr/share/zoneinfo/posix/Indian"}, {"size": 4, "name": "/usr/share/zoneinfo/posix/America/North_Dakota"}, {"size": 4, "name": "/usr/share/zoneinfo/posix/America/Argentina"}, {"size": 4, "name": "/usr/share/zoneinfo/posix/America/Kentucky"}, {"size": 4, "name": "/usr/share/zoneinfo/posix/America/Indiana"}, {"size": 36, "name": "/usr/share/zoneinfo/posix/America"}, {"size": 4, "name": "/usr/share/zoneinfo/posix/US"}, {"size": 12, "name": "/usr/share/zoneinfo/posix/Asia"}, {"size": 4, "name": "/usr/share/zoneinfo/posix/Etc"}, {"size": 4, "name": "/usr/share/zoneinfo/posix/Mexico"}, {"size": 120, "name": "/usr/share/zoneinfo/posix"}, {"size": 3540, "name": "/usr/share/zoneinfo"}, {"size": 76, "name": "/usr/share/doc-base"}, {"size": 12, "name": "/usr/share/grub/default"}, {"size": 2508, "name": "/usr/share/grub"}, {"size": 8, "name": "/usr/share/sensible-utils/bin"}, {"size": 12, "name": "/usr/share/sensible-utils"}, {"size": 244, "name": "/usr/share/publicsuffix"}, {"size": 1108, "name": "/usr/share/misc"}, {"size": 60, "name": "/usr/share/nmap/nselib/data/psexec"}, {"size": 24, "name": "/usr/share/nmap/nselib/data/jdwp-class"}, {"size": 3364, "name": "/usr/share/nmap/nselib/data"}, {"size": 6616, "name": "/usr/share/nmap/nselib"}, {"size": 4744, "name": "/usr/share/nmap/scripts"}, {"size": 20040, "name": "/usr/share/nmap"}, {"size": 8, "name": "/usr/share/polkit-1/rules.d"}, {"size": 120, "name": "/usr/share/polkit-1/actions"}, {"size": 132, "name": "/usr/share/polkit-1"}, {"size": 252, "name": "/usr/share/zsh/vendor-completions"}, {"size": 256, "name": "/usr/share/zsh"}, {"size": 40, "name": "/usr/share/keyrings"}, {"size": 20, "name": "/usr/share/debhelper/autoscripts"}, {"size": 24, "name": "/usr/share/debhelper"}, {"size": 812, "name": "/usr/share/vim/vim80/indent"}, {"size": 20, "name": "/usr/share/vim/vim80/pack/dist/opt/termdebug/plugin"}, {"size": 24, "name": "/usr/share/vim/vim80/pack/dist/opt/termdebug"}, {"size": 8, "name": "/usr/share/vim/vim80/pack/dist/opt/swapmouse/plugin"}, {"size": 12, "name": "/usr/share/vim/vim80/pack/dist/opt/swapmouse"}, {"size": 28, "name": "/usr/share/vim/vim80/pack/dist/opt/matchit/doc"}, {"size": 36, "name": "/usr/share/vim/vim80/pack/dist/opt/matchit/plugin"}, {"size": 68, "name": "/usr/share/vim/vim80/pack/dist/opt/matchit"}, {"size": 16, "name": "/usr/share/vim/vim80/pack/dist/opt/justify/plugin"}, {"size": 20, "name": "/usr/share/vim/vim80/pack/dist/opt/justify"}, {"size": 8, "name": "/usr/share/vim/vim80/pack/dist/opt/dvorak/plugin"}, {"size": 12, "name": "/usr/share/vim/vim80/pack/dist/opt/dvorak/dvorak"}, {"size": 24, "name": "/usr/share/vim/vim80/pack/dist/opt/dvorak"}, {"size": 8, "name": "/usr/share/vim/vim80/pack/dist/opt/editexisting/plugin"}, {"size": 12, "name": "/usr/share/vim/vim80/pack/dist/opt/editexisting"}, {"size": 8, "name": "/usr/share/vim/vim80/pack/dist/opt/shellmenu/plugin"}, {"size": 12, "name": "/usr/share/vim/vim80/pack/dist/opt/shellmenu"}, {"size": 176, "name": "/usr/share/vim/vim80/pack/dist/opt"}, {"size": 180, "name": "/usr/share/vim/vim80/pack/dist"}, {"size": 184, "name": "/usr/share/vim/vim80/pack"}, {"size": 7088, "name": "/usr/share/vim/vim80/doc"}, {"size": 136, "name": "/usr/share/vim/vim80/print"}, {"size": 80, "name": "/usr/share/vim/vim80/colors"}, {"size": 20, "name": "/usr/share/vim/vim80/macros/urm"}, {"size": 16, "name": "/usr/share/vim/vim80/macros/life"}, {"size": 48, "name": "/usr/share/vim/vim80/macros/maze"}, {"size": 16, "name": "/usr/share/vim/vim80/macros/hanoi"}, {"size": 144, "name": "/usr/share/vim/vim80/macros"}, {"size": 84, "name": "/usr/share/vim/vim80/plugin"}, {"size": 2356, "name": "/usr/share/vim/vim80/tutor"}, {"size": 3604, "name": "/usr/share/vim/vim80/spell"}, {"size": 180, "name": "/usr/share/vim/vim80/lang/it/LC_MESSAGES"}, {"size": 184, "name": "/usr/share/vim/vim80/lang/it"}, {"size": 176, "name": "/usr/share/vim/vim80/lang/ja.euc-jp/LC_MESSAGES"}, {"size": 180, "name": "/usr/share/vim/vim80/lang/ja.euc-jp"}, {"size": 144, "name": "/usr/share/vim/vim80/lang/no/LC_MESSAGES"}, {"size": 148, "name": "/usr/share/vim/vim80/lang/no"}, {"size": 24, "name": "/usr/share/vim/vim80/lang/en_GB/LC_MESSAGES"}, {"size": 28, "name": "/usr/share/vim/vim80/lang/en_GB"}, {"size": 216, "name": "/usr/share/vim/vim80/lang/uk/LC_MESSAGES"}, {"size": 220, "name": "/usr/share/vim/vim80/lang/uk"}, {"size": 180, "name": "/usr/share/vim/vim80/lang/ca/LC_MESSAGES"}, {"size": 184, "name": "/usr/share/vim/vim80/lang/ca"}, {"size": 168, "name": "/usr/share/vim/vim80/lang/pl/LC_MESSAGES"}, {"size": 172, "name": "/usr/share/vim/vim80/lang/pl"}, {"size": 176, "name": "/usr/share/vim/vim80/lang/ru.cp1251/LC_MESSAGES"}, {"size": 180, "name": "/usr/share/vim/vim80/lang/ru.cp1251"}, {"size": 128, "name": "/usr/share/vim/vim80/lang/zh_CN.cp936/LC_MESSAGES"}, {"size": 132, "name": "/usr/share/vim/vim80/lang/zh_CN.cp936"}, {"size": 124, "name": "/usr/share/vim/vim80/lang/af/LC_MESSAGES"}, {"size": 128, "name": "/usr/share/vim/vim80/lang/af"}, {"size": 128, "name": "/usr/share/vim/vim80/lang/zh_CN/LC_MESSAGES"}, {"size": 132, "name": "/usr/share/vim/vim80/lang/zh_CN"}, {"size": 112, "name": "/usr/share/vim/vim80/lang/cs.cp1250/LC_MESSAGES"}, {"size": 116, "name": "/usr/share/vim/vim80/lang/cs.cp1250"}, {"size": 16, "name": "/usr/share/vim/vim80/lang/lv/LC_MESSAGES"}, {"size": 20, "name": "/usr/share/vim/vim80/lang/lv"}, {"size": 172, "name": "/usr/share/vim/vim80/lang/pl.UTF-8/LC_MESSAGES"}, {"size": 176, "name": "/usr/share/vim/vim80/lang/pl.UTF-8"}, {"size": 172, "name": "/usr/share/vim/vim80/lang/uk.cp1251/LC_MESSAGES"}, {"size": 176, "name": "/usr/share/vim/vim80/lang/uk.cp1251"}, {"size": 112, "name": "/usr/share/vim/vim80/lang/zh_TW/LC_MESSAGES"}, {"size": 116, "name": "/usr/share/vim/vim80/lang/zh_TW"}, {"size": 136, "name": "/usr/share/vim/vim80/lang/zh_CN.UTF-8/LC_MESSAGES"}, {"size": 140, "name": "/usr/share/vim/vim80/lang/zh_CN.UTF-8"}, {"size": 200, "name": "/usr/share/vim/vim80/lang/ja/LC_MESSAGES"}, {"size": 204, "name": "/usr/share/vim/vim80/lang/ja"}, {"size": 220, "name": "/usr/share/vim/vim80/lang/ru/LC_MESSAGES"}, {"size": 224, "name": "/usr/share/vim/vim80/lang/ru"}, {"size": 164, "name": "/usr/share/vim/vim80/lang/es/LC_MESSAGES"}, {"size": 168, "name": "/usr/share/vim/vim80/lang/es"}, {"size": 144, "name": "/usr/share/vim/vim80/lang/sk.cp1250/LC_MESSAGES"}, {"size": 148, "name": "/usr/share/vim/vim80/lang/sk.cp1250"}, {"size": 120, "name": "/usr/share/vim/vim80/lang/zh_TW.UTF-8/LC_MESSAGES"}, {"size": 124, "name": "/usr/share/vim/vim80/lang/zh_TW.UTF-8"}, {"size": 112, "name": "/usr/share/vim/vim80/lang/cs/LC_MESSAGES"}, {"size": 116, "name": "/usr/share/vim/vim80/lang/cs"}, {"size": 180, "name": "/usr/share/vim/vim80/lang/ga/LC_MESSAGES"}, {"size": 184, "name": "/usr/share/vim/vim80/lang/ga"}, {"size": 184, "name": "/usr/share/vim/vim80/lang/fr/LC_MESSAGES"}, {"size": 188, "name": "/usr/share/vim/vim80/lang/fr"}, {"size": 176, "name": "/usr/share/vim/vim80/lang/eo/LC_MESSAGES"}, {"size": 180, "name": "/usr/share/vim/vim80/lang/eo"}, {"size": 148, "name": "/usr/share/vim/vim80/lang/sv/LC_MESSAGES"}, {"size": 152, "name": "/usr/share/vim/vim80/lang/sv"}, {"size": 144, "name": "/usr/share/vim/vim80/lang/sk/LC_MESSAGES"}, {"size": 148, "name": "/usr/share/vim/vim80/lang/sk"}, {"size": 176, "name": "/usr/share/vim/vim80/lang/ja.sjis/LC_MESSAGES"}, {"size": 180, "name": "/usr/share/vim/vim80/lang/ja.sjis"}, {"size": 108, "name": "/usr/share/vim/vim80/lang/nl/LC_MESSAGES"}, {"size": 112, "name": "/usr/share/vim/vim80/lang/nl"}, {"size": 176, "name": "/usr/share/vim/vim80/lang/ko.UTF-8/LC_MESSAGES"}, {"size": 180, "name": "/usr/share/vim/vim80/lang/ko.UTF-8"}, {"size": 160, "name": "/usr/share/vim/vim80/lang/ko/LC_MESSAGES"}, {"size": 164, "name": "/usr/share/vim/vim80/lang/ko"}, {"size": 180, "name": "/usr/share/vim/vim80/lang/pt_BR/LC_MESSAGES"}, {"size": 184, "name": "/usr/share/vim/vim80/lang/pt_BR"}, {"size": 168, "name": "/usr/share/vim/vim80/lang/pl.cp1250/LC_MESSAGES"}, {"size": 172, "name": "/usr/share/vim/vim80/lang/pl.cp1250"}, {"size": 140, "name": "/usr/share/vim/vim80/lang/vi/LC_MESSAGES"}, {"size": 144, "name": "/usr/share/vim/vim80/lang/vi"}, {"size": 180, "name": "/usr/share/vim/vim80/lang/de/LC_MESSAGES"}, {"size": 184, "name": "/usr/share/vim/vim80/lang/de"}, {"size": 144, "name": "/usr/share/vim/vim80/lang/nb/LC_MESSAGES"}, {"size": 148, "name": "/usr/share/vim/vim80/lang/nb"}, {"size": 176, "name": "/usr/share/vim/vim80/lang/fi/LC_MESSAGES"}, {"size": 180, "name": "/usr/share/vim/vim80/lang/fi"}, {"size": 6936, "name": "/usr/share/vim/vim80/lang"}, {"size": 264, "name": "/usr/share/vim/vim80/compiler"}, {"size": 980, "name": "/usr/share/vim/vim80/ftplugin"}, {"size": 352, "name": "/usr/share/vim/vim80/keymap"}, {"size": 556, "name": "/usr/share/vim/vim80/autoload/xml"}, {"size": 24, "name": "/usr/share/vim/vim80/autoload/dist"}, {"size": 1984, "name": "/usr/share/vim/vim80/autoload"}, {"size": 6452, "name": "/usr/share/vim/vim80/syntax"}, {"size": 31744, "name": "/usr/share/vim/vim80"}, {"size": 4, "name": "/usr/share/vim/addons/plugin"}, {"size": 8, "name": "/usr/share/vim/addons"}, {"size": 8, "name": "/usr/share/vim/registry"}, {"size": 31764, "name": "/usr/share/vim"}, {"size": 92, "name": "/usr/share/man/it/man5"}, {"size": 240, "name": "/usr/share/man/it/man1"}, {"size": 192, "name": "/usr/share/man/it/man8"}, {"size": 528, "name": "/usr/share/man/it"}, {"size": 8, "name": "/usr/share/man/id/man5"}, {"size": 52, "name": "/usr/share/man/id/man1"}, {"size": 20, "name": "/usr/share/man/id/man8"}, {"size": 84, "name": "/usr/share/man/id"}, {"size": 2908, "name": "/usr/share/man/man3"}, {"size": 52, "name": "/usr/share/man/ro/man1"}, {"size": 56, "name": "/usr/share/man/ro"}, {"size": 20, "name": "/usr/share/man/da/man5"}, {"size": 60, "name": "/usr/share/man/da/man1"}, {"size": 48, "name": "/usr/share/man/da/man8"}, {"size": 132, "name": "/usr/share/man/da"}, {"size": 44, "name": "/usr/share/man/pl/man5"}, {"size": 200, "name": "/usr/share/man/pl/man1"}, {"size": 128, "name": "/usr/share/man/pl/man8"}, {"size": 376, "name": "/usr/share/man/pl"}, {"size": 32, "name": "/usr/share/man/zh_CN/man5"}, {"size": 88, "name": "/usr/share/man/zh_CN/man1"}, {"size": 104, "name": "/usr/share/man/zh_CN/man8"}, {"size": 228, "name": "/usr/share/man/zh_CN"}, {"size": 40, "name": "/usr/share/man/pt/man5"}, {"size": 128, "name": "/usr/share/man/pt/man1"}, {"size": 40, "name": "/usr/share/man/pt/man8"}, {"size": 212, "name": "/usr/share/man/pt"}, {"size": 8, "name": "/usr/share/man/zh_TW/man5"}, {"size": 20, "name": "/usr/share/man/zh_TW/man1"}, {"size": 32, "name": "/usr/share/man/zh_TW/man8"}, {"size": 64, "name": "/usr/share/man/zh_TW"}, {"size": 80, "name": "/usr/share/man/ja/man5"}, {"size": 236, "name": "/usr/share/man/ja/man1"}, {"size": 172, "name": "/usr/share/man/ja/man8"}, {"size": 492, "name": "/usr/share/man/ja"}, {"size": 40, "name": "/usr/share/man/ru/man5"}, {"size": 220, "name": "/usr/share/man/ru/man1"}, {"size": 132, "name": "/usr/share/man/ru/man8"}, {"size": 396, "name": "/usr/share/man/ru"}, {"size": 1176, "name": "/usr/share/man/man7"}, {"size": 1396, "name": "/usr/share/man/man5"}, {"size": 40, "name": "/usr/share/man/es/man5"}, {"size": 204, "name": "/usr/share/man/es/man1"}, {"size": 112, "name": "/usr/share/man/es/man8"}, {"size": 360, "name": "/usr/share/man/es"}, {"size": 8, "name": "/usr/share/man/sr/man5"}, {"size": 44, "name": "/usr/share/man/sr/man1"}, {"size": 16, "name": "/usr/share/man/sr/man8"}, {"size": 72, "name": "/usr/share/man/sr"}, {"size": 20, "name": "/usr/share/man/cs/man5"}, {"size": 20, "name": "/usr/share/man/cs/man1"}, {"size": 36, "name": "/usr/share/man/cs/man8"}, {"size": 80, "name": "/usr/share/man/cs"}, {"size": 16, "name": "/usr/share/man/tr/man5"}, {"size": 64, "name": "/usr/share/man/tr/man1"}, {"size": 40, "name": "/usr/share/man/tr/man8"}, {"size": 124, "name": "/usr/share/man/tr"}, {"size": 104, "name": "/usr/share/man/fr/man5"}, {"size": 336, "name": "/usr/share/man/fr/man1"}, {"size": 284, "name": "/usr/share/man/fr/man8"}, {"size": 728, "name": "/usr/share/man/fr"}, {"size": 8, "name": "/usr/share/man/hu/man5"}, {"size": 92, "name": "/usr/share/man/hu/man1"}, {"size": 8, "name": "/usr/share/man/hu/man8"}, {"size": 112, "name": "/usr/share/man/hu"}, {"size": 44, "name": "/usr/share/man/sv/man5"}, {"size": 176, "name": "/usr/share/man/sv/man1"}, {"size": 84, "name": "/usr/share/man/sv/man8"}, {"size": 308, "name": "/usr/share/man/sv"}, {"size": 56, "name": "/usr/share/man/sk/man1"}, {"size": 60, "name": "/usr/share/man/sk"}, {"size": 48, "name": "/usr/share/man/zh/man1"}, {"size": 52, "name": "/usr/share/man/zh"}, {"size": 8, "name": "/usr/share/man/nl/man7"}, {"size": 156, "name": "/usr/share/man/nl/man5"}, {"size": 256, "name": "/usr/share/man/nl/man1"}, {"size": 72, "name": "/usr/share/man/nl/man8"}, {"size": 496, "name": "/usr/share/man/nl"}, {"size": 1452, "name": "/usr/share/man/man2"}, {"size": 8, "name": "/usr/share/man/ko/man5"}, {"size": 24, "name": "/usr/share/man/ko/man1"}, {"size": 12, "name": "/usr/share/man/ko/man8"}, {"size": 48, "name": "/usr/share/man/ko"}, {"size": 16, "name": "/usr/share/man/pt_BR/man5"}, {"size": 104, "name": "/usr/share/man/pt_BR/man1"}, {"size": 52, "name": "/usr/share/man/pt_BR/man8"}, {"size": 176, "name": "/usr/share/man/pt_BR"}, {"size": 8, "name": "/usr/share/man/de/man7"}, {"size": 196, "name": "/usr/share/man/de/man5"}, {"size": 404, "name": "/usr/share/man/de/man1"}, {"size": 240, "name": "/usr/share/man/de/man8"}, {"size": 852, "name": "/usr/share/man/de"}, {"size": 8, "name": "/usr/share/man/man6"}, {"size": 7116, "name": "/usr/share/man/man1"}, {"size": 3256, "name": "/usr/share/man/man8"}, {"size": 56, "name": "/usr/share/man/hr/man1"}, {"size": 60, "name": "/usr/share/man/hr"}, {"size": 172, "name": "/usr/share/man/man4"}, {"size": 12, "name": "/usr/share/man/sl/man1"}, {"size": 24, "name": "/usr/share/man/sl/man8"}, {"size": 40, "name": "/usr/share/man/sl"}, {"size": 8, "name": "/usr/share/man/man9"}, {"size": 16, "name": "/usr/share/man/fi/man1"}, {"size": 20, "name": "/usr/share/man/fi"}, {"size": 23652, "name": "/usr/share/man"}, {"size": 12, "name": "/usr/share/distro-info"}, {"size": 28, "name": "/usr/share/debconf"}, {"size": 12, "name": "/usr/share/man-db"}, {"size": 48, "name": "/usr/share/ubuntu-advantage-tools/modules"}, {"size": 52, "name": "/usr/share/ubuntu-advantage-tools"}, {"size": 12, "name": "/usr/share/gettext/its"}, {"size": 16, "name": "/usr/share/gettext"}, {"size": 20, "name": "/usr/share/applications"}, {"size": 320, "name": "/usr/share/screen/utf8encodings"}, {"size": 324, "name": "/usr/share/screen"}, {"size": 28, "name": "/usr/share/gdb/auto-load/lib/x86_64-linux-gnu"}, {"size": 32, "name": "/usr/share/gdb/auto-load/lib"}, {"size": 12, "name": "/usr/share/gdb/auto-load/usr/lib/x86_64-linux-gnu"}, {"size": 16, "name": "/usr/share/gdb/auto-load/usr/lib"}, {"size": 20, "name": "/usr/share/gdb/auto-load/usr"}, {"size": 56, "name": "/usr/share/gdb/auto-load"}, {"size": 60, "name": "/usr/share/gdb"}, {"size": 16, "name": "/usr/share/dns"}, {"size": 8, "name": "/usr/share/hal/fdi/policy/10osvendor"}, {"size": 12, "name": "/usr/share/hal/fdi/policy"}, {"size": 16, "name": "/usr/share/hal/fdi"}, {"size": 20, "name": "/usr/share/hal"}, {"size": 60, "name": "/usr/share/apport/symptoms"}, {"size": 12, "name": "/usr/share/apport/testsuite"}, {"size": 80, "name": "/usr/share/apport/general-hooks"}, {"size": 108, "name": "/usr/share/apport/package-hooks"}, {"size": 356, "name": "/usr/share/apport"}, {"size": 172, "name": "/usr/share/initramfs-tools/hooks"}, {"size": 4, "name": "/usr/share/initramfs-tools/modules.d"}, {"size": 16, "name": "/usr/share/initramfs-tools/scripts/local-block"}, {"size": 28, "name": "/usr/share/initramfs-tools/scripts/init-top"}, {"size": 20, "name": "/usr/share/initramfs-tools/scripts/local-bottom"}, {"size": 16, "name": "/usr/share/initramfs-tools/scripts/init-premount"}, {"size": 20, "name": "/usr/share/initramfs-tools/scripts/local-premount"}, {"size": 16, "name": "/usr/share/initramfs-tools/scripts/panic"}, {"size": 56, "name": "/usr/share/initramfs-tools/scripts/init-bottom"}, {"size": 36, "name": "/usr/share/initramfs-tools/scripts/local-top"}, {"size": 244, "name": "/usr/share/initramfs-tools/scripts"}, {"size": 16, "name": "/usr/share/initramfs-tools/conf-hooks.d"}, {"size": 4, "name": "/usr/share/initramfs-tools/conf.d"}, {"size": 480, "name": "/usr/share/initramfs-tools"}, {"size": 12, "name": "/usr/share/cmake/bash-completion"}, {"size": 16, "name": "/usr/share/cmake"}, {"size": 60, "name": "/usr/share/pastebin.d"}, {"size": 1460, "name": "/usr/share/consolefonts"}, {"size": 112, "name": "/usr/share/consoletrans"}, {"size": 8, "name": "/usr/share/plymouth/themes/tribar"}, {"size": 8, "name": "/usr/share/plymouth/themes/details"}, {"size": 8, "name": "/usr/share/plymouth/themes/text"}, {"size": 12, "name": "/usr/share/plymouth/themes/ubuntu-text"}, {"size": 40, "name": "/usr/share/plymouth/themes"}, {"size": 52, "name": "/usr/share/plymouth"}, {"size": 52, "name": "/usr/share/git-core/templates/hooks"}, {"size": 8, "name": "/usr/share/git-core/templates/info"}, {"size": 4, "name": "/usr/share/git-core/templates/branches"}, {"size": 72, "name": "/usr/share/git-core/templates"}, {"size": 52, "name": "/usr/share/git-core/contrib/hooks"}, {"size": 56, "name": "/usr/share/git-core/contrib"}, {"size": 132, "name": "/usr/share/git-core"}, {"size": 52, "name": "/usr/share/console-setup"}, {"size": 540, "name": "/usr/share/lintian/overrides"}, {"size": 544, "name": "/usr/share/lintian"}, {"size": 96, "name": "/usr/share/terminfo/e"}, {"size": 64, "name": "/usr/share/terminfo/f"}, {"size": 168, "name": "/usr/share/terminfo/g"}, {"size": 12, "name": "/usr/share/terminfo/E"}, {"size": 380, "name": "/usr/share/terminfo/v"}, {"size": 4, "name": "/usr/share/terminfo/1"}, {"size": 108, "name": "/usr/share/terminfo/q"}, {"size": 584, "name": "/usr/share/terminfo/x"}, {"size": 12, "name": "/usr/share/terminfo/j"}, {"size": 900, "name": "/usr/share/terminfo/a"}, {"size": 4, "name": "/usr/share/terminfo/X"}, {"size": 248, "name": "/usr/share/terminfo/m"}, {"size": 536, "name": "/usr/share/terminfo/d"}, {"size": 4, "name": "/usr/share/terminfo/4"}, {"size": 4, "name": "/usr/share/terminfo/P"}, {"size": 448, "name": "/usr/share/terminfo/w"}, {"size": 4, "name": "/usr/share/terminfo/Q"}, {"size": 4, "name": "/usr/share/terminfo/L"}, {"size": 8, "name": "/usr/share/terminfo/N"}, {"size": 4, "name": "/usr/share/terminfo/7"}, {"size": 16, "name": "/usr/share/terminfo/M"}, {"size": 4, "name": "/usr/share/terminfo/A"}, {"size": 4, "name": "/usr/share/terminfo/3"}, {"size": 4, "name": "/usr/share/terminfo/5"}, {"size": 112, "name": "/usr/share/terminfo/o"}, {"size": 152, "name": "/usr/share/terminfo/b"}, {"size": 356, "name": "/usr/share/terminfo/h"}, {"size": 240, "name": "/usr/share/terminfo/i"}, {"size": 8, "name": "/usr/share/terminfo/9"}, {"size": 108, "name": "/usr/share/terminfo/k"}, {"size": 360, "name": "/usr/share/terminfo/s"}, {"size": 596, "name": "/usr/share/terminfo/t"}, {"size": 4, "name": "/usr/share/terminfo/2"}, {"size": 292, "name": "/usr/share/terminfo/c"}, {"size": 56, "name": "/usr/share/terminfo/z"}, {"size": 108, "name": "/usr/share/terminfo/l"}, {"size": 4, "name": "/usr/share/terminfo/8"}, {"size": 20, "name": "/usr/share/terminfo/u"}, {"size": 380, "name": "/usr/share/terminfo/p"}, {"size": 508, "name": "/usr/share/terminfo/n"}, {"size": 100, "name": "/usr/share/terminfo/r"}, {"size": 4, "name": "/usr/share/terminfo/6"}, {"size": 7032, "name": "/usr/share/terminfo"}, {"size": 4, "name": "/usr/share/package-data-downloads"}, {"size": 40, "name": "/usr/share/calendar/de_DE"}, {"size": 8, "name": "/usr/share/calendar/de_AT"}, {"size": 32, "name": "/usr/share/calendar/ru_RU"}, {"size": 20, "name": "/usr/share/calendar/hu_HU"}, {"size": 12, "name": "/usr/share/calendar/hr_HR"}, {"size": 20, "name": "/usr/share/calendar/uk_UA"}, {"size": 52, "name": "/usr/share/calendar/fr_FR"}, {"size": 24, "name": "/usr/share/calendar/pt_BR"}, {"size": 460, "name": "/usr/share/calendar"}, {"size": 8, "name": "/usr/share/bug/apt"}, {"size": 12, "name": "/usr/share/bug/file"}, {"size": 8, "name": "/usr/share/bug/procps"}, {"size": 12, "name": "/usr/share/bug/grub-pc-bin"}, {"size": 8, "name": "/usr/share/bug/locales"}, {"size": 12, "name": "/usr/share/bug/libmagic1"}, {"size": 8, "name": "/usr/share/bug/mime-support"}, {"size": 12, "name": "/usr/share/bug/vim-tiny"}, {"size": 8, "name": "/usr/share/bug/logrotate"}, {"size": 12, "name": "/usr/share/bug/mdadm"}, {"size": 12, "name": "/usr/share/bug/grub2-common"}, {"size": 12, "name": "/usr/share/bug/udev"}, {"size": 8, "name": "/usr/share/bug/bash-completion"}, {"size": 12, "name": "/usr/share/bug/grub-pc"}, {"size": 12, "name": "/usr/share/bug/systemd"}, {"size": 8, "name": "/usr/share/bug/keyboard-configuration"}, {"size": 8, "name": "/usr/share/bug/init-system-helpers"}, {"size": 12, "name": "/usr/share/bug/cron"}, {"size": 12, "name": "/usr/share/bug/vim"}, {"size": 8, "name": "/usr/share/bug/man-db"}, {"size": 8, "name": "/usr/share/bug/initramfs-tools"}, {"size": 12, "name": "/usr/share/bug/grub-common"}, {"size": 8, "name": "/usr/share/bug/console-setup"}, {"size": 8, "name": "/usr/share/bug/dbus"}, {"size": 8, "name": "/usr/share/bug/console-setup-linux"}, {"size": 8, "name": "/usr/share/bug/binutils"}, {"size": 268, "name": "/usr/share/bug"}, {"size": 8, "name": "/usr/share/adduser"}, {"size": 32, "name": "/usr/share/unattended-upgrades"}, {"size": 416, "name": "/usr/share/perl/5.26.1/Pod/Simple"}, {"size": 64, "name": "/usr/share/perl/5.26.1/Pod/Perldoc"}, {"size": 28, "name": "/usr/share/perl/5.26.1/Pod/Text"}, {"size": 1084, "name": "/usr/share/perl/5.26.1/Pod"}, {"size": 32, "name": "/usr/share/perl/5.26.1/Thread"}, {"size": 8, "name": "/usr/share/perl/5.26.1/CPAN/API"}, {"size": 8, "name": "/usr/share/perl/5.26.1/CPAN/FTP"}, {"size": 16, "name": "/usr/share/perl/5.26.1/CPAN/Plugin"}, {"size": 20, "name": "/usr/share/perl/5.26.1/CPAN/Exception"}, {"size": 12, "name": "/usr/share/perl/5.26.1/CPAN/Kwalify"}, {"size": 84, "name": "/usr/share/perl/5.26.1/CPAN/Meta/History"}, {"size": 316, "name": "/usr/share/perl/5.26.1/CPAN/Meta"}, {"size": 16, "name": "/usr/share/perl/5.26.1/CPAN/HTTP"}, {"size": 8, "name": "/usr/share/perl/5.26.1/CPAN/LWP"}, {"size": 1004, "name": "/usr/share/perl/5.26.1/CPAN"}, {"size": 8, "name": "/usr/share/perl/5.26.1/PerlIO/via"}, {"size": 12, "name": "/usr/share/perl/5.26.1/PerlIO"}, {"size": 40, "name": "/usr/share/perl/5.26.1/Memoize"}, {"size": 16, "name": "/usr/share/perl/5.26.1/Parse/CPAN"}, {"size": 20, "name": "/usr/share/perl/5.26.1/Parse"}, {"size": 24, "name": "/usr/share/perl/5.26.1/Net/FTP"}, {"size": 348, "name": "/usr/share/perl/5.26.1/Net"}, {"size": 20, "name": "/usr/share/perl/5.26.1/Test/Builder/IO"}, {"size": 8, "name": "/usr/share/perl/5.26.1/Test/Builder/Tester"}, {"size": 64, "name": "/usr/share/perl/5.26.1/Test/Builder"}, {"size": 20, "name": "/usr/share/perl/5.26.1/Test/Tester"}, {"size": 8, "name": "/usr/share/perl/5.26.1/Test/use"}, {"size": 276, "name": "/usr/share/perl/5.26.1/Test"}, {"size": 216, "name": "/usr/share/perl/5.26.1/File"}, {"size": 8, "name": "/usr/share/perl/5.26.1/unicore/lib/Blk"}, {"size": 12, "name": "/usr/share/perl/5.26.1/unicore/lib/CWU"}, {"size": 12, "name": "/usr/share/perl/5.26.1/unicore/lib/CI"}, {"size": 8, "name": "/usr/share/perl/5.26.1/unicore/lib/Dia"}, {"size": 44, "name": "/usr/share/perl/5.26.1/unicore/lib/Ccc"}, {"size": 72, "name": "/usr/share/perl/5.26.1/unicore/lib/Jg"}, {"size": 8, "name": "/usr/share/perl/5.26.1/unicore/lib/CE"}, {"size": 44, "name": "/usr/share/perl/5.26.1/unicore/lib/GCB"}, {"size": 184, "name": "/usr/share/perl/5.26.1/unicore/lib/Scx"}, {"size": 180, "name": "/usr/share/perl/5.26.1/unicore/lib/Sc"}, {"size": 60, "name": "/usr/share/perl/5.26.1/unicore/lib/Bc"}, {"size": 8, "name": "/usr/share/perl/5.26.1/unicore/lib/Dep"}, {"size": 8, "name": "/usr/share/perl/5.26.1/unicore/lib/Cased"}, {"size": 60, "name": "/usr/share/perl/5.26.1/unicore/lib/Dt"}, {"size": 12, "name": "/usr/share/perl/5.26.1/unicore/lib/CWCF"}, {"size": 8, "name": "/usr/share/perl/5.26.1/unicore/lib/Math"}, {"size": 8, "name": "/usr/share/perl/5.26.1/unicore/lib/Hex"}, {"size": 72, "name": "/usr/share/perl/5.26.1/unicore/lib/Age"}, {"size": 60, "name": "/usr/share/perl/5.26.1/unicore/lib/WB"}, {"size": 8, "name": "/usr/share/perl/5.26.1/unicore/lib/Hyphen"}, {"size": 8, "name": "/usr/share/perl/5.26.1/unicore/lib/UIdeo"}, {"size": 8, "name": "/usr/share/perl/5.26.1/unicore/lib/QMark"}, {"size": 12, "name": "/usr/share/perl/5.26.1/unicore/lib/NFKCQC"}, {"size": 8, "name": "/usr/share/perl/5.26.1/unicore/lib/BidiM"}, {"size": 156, "name": "/usr/share/perl/5.26.1/unicore/lib/Gc"}, {"size": 88, "name": "/usr/share/perl/5.26.1/unicore/lib/InSC"}, {"size": 16, "name": "/usr/share/perl/5.26.1/unicore/lib/CWKCF"}, {"size": 20, "name": "/usr/share/perl/5.26.1/unicore/lib/NFKDQC"}, {"size": 8, "name": "/usr/share/perl/5.26.1/unicore/lib/Dash"}, {"size": 8, "name": "/usr/share/perl/5.26.1/unicore/lib/PatSyn"}, {"size": 8, "name": "/usr/share/perl/5.26.1/unicore/lib/BidiC"}, {"size": 200, "name": "/usr/share/perl/5.26.1/unicore/lib/Nv"}, {"size": 12, "name": "/usr/share/perl/5.26.1/unicore/lib/XIDS"}, {"size": 52, "name": "/usr/share/perl/5.26.1/unicore/lib/InPC"}, {"size": 12, "name": "/usr/share/perl/5.26.1/unicore/lib/XIDC"}, {"size": 12, "name": "/usr/share/perl/5.26.1/unicore/lib/Lower"}, {"size": 8, "name": "/usr/share/perl/5.26.1/unicore/lib/Ext"}, {"size": 8, "name": "/usr/share/perl/5.26.1/unicore/lib/PCM"}, {"size": 8, "name": "/usr/share/perl/5.26.1/unicore/lib/Hst"}, {"size": 16, "name": "/usr/share/perl/5.26.1/unicore/lib/GrBase"}, {"size": 12, "name": "/usr/share/perl/5.26.1/unicore/lib/IDC"}, {"size": 24, "name": "/usr/share/perl/5.26.1/unicore/lib/Ea"}, {"size": 132, "name": "/usr/share/perl/5.26.1/unicore/lib/In"}, {"size": 132, "name": "/usr/share/perl/5.26.1/unicore/lib/Perl"}, {"size": 8, "name": "/usr/share/perl/5.26.1/unicore/lib/STerm"}, {"size": 8, "name": "/usr/share/perl/5.26.1/unicore/lib/CompEx"}, {"size": 12, "name": "/usr/share/perl/5.26.1/unicore/lib/CWL"}, {"size": 8, "name": "/usr/share/perl/5.26.1/unicore/lib/Term"}, {"size": 24, "name": "/usr/share/perl/5.26.1/unicore/lib/Jt"}, {"size": 12, "name": "/usr/share/perl/5.26.1/unicore/lib/Alpha"}, {"size": 8, "name": "/usr/share/perl/5.26.1/unicore/lib/CWCM"}, {"size": 12, "name": "/usr/share/perl/5.26.1/unicore/lib/NFCQC"}, {"size": 72, "name": "/usr/share/perl/5.26.1/unicore/lib/SB"}, {"size": 12, "name": "/usr/share/perl/5.26.1/unicore/lib/Upper"}, {"size": 16, "name": "/usr/share/perl/5.26.1/unicore/lib/Nt"}, {"size": 96, "name": "/usr/share/perl/5.26.1/unicore/lib/Lb"}, {"size": 16, "name": "/usr/share/perl/5.26.1/unicore/lib/Bpt"}, {"size": 8, "name": "/usr/share/perl/5.26.1/unicore/lib/DI"}, {"size": 12, "name": "/usr/share/perl/5.26.1/unicore/lib/IDS"}, {"size": 8, "name": "/usr/share/perl/5.26.1/unicore/lib/SD"}, {"size": 12, "name": "/usr/share/perl/5.26.1/unicore/lib/NFDQC"}, {"size": 12, "name": "/usr/share/perl/5.26.1/unicore/lib/CWT"}, {"size": 8, "name": "/usr/share/perl/5.26.1/unicore/lib/Ideo"}, {"size": 2212, "name": "/usr/share/perl/5.26.1/unicore/lib"}, {"size": 992, "name": "/usr/share/perl/5.26.1/unicore/To"}, {"size": 4604, "name": "/usr/share/perl/5.26.1/unicore"}, {"size": 64, "name": "/usr/share/perl/5.26.1/Test2/API"}, {"size": 8, "name": "/usr/share/perl/5.26.1/Test2/Event/TAP"}, {"size": 64, "name": "/usr/share/perl/5.26.1/Test2/Event"}, {"size": 20, "name": "/usr/share/perl/5.26.1/Test2/IPC/Driver"}, {"size": 32, "name": "/usr/share/perl/5.26.1/Test2/IPC"}, {"size": 20, "name": "/usr/share/perl/5.26.1/Test2/Util"}, {"size": 20, "name": "/usr/share/perl/5.26.1/Test2/Formatter"}, {"size": 8, "name": "/usr/share/perl/5.26.1/Test2/Hub/Interceptor"}, {"size": 20, "name": "/usr/share/perl/5.26.1/Test2/Hub"}, {"size": 16, "name": "/usr/share/perl/5.26.1/Test2/Tools"}, {"size": 344, "name": "/usr/share/perl/5.26.1/Test2"}, {"size": 24, "name": "/usr/share/perl/5.26.1/Params"}, {"size": 8, "name": "/usr/share/perl/5.26.1/JSON/PP"}, {"size": 96, "name": "/usr/share/perl/5.26.1/JSON"}, {"size": 8, "name": "/usr/share/perl/5.26.1/Math/BigFloat"}, {"size": 140, "name": "/usr/share/perl/5.26.1/Math/BigInt"}, {"size": 684, "name": "/usr/share/perl/5.26.1/Math"}, {"size": 28, "name": "/usr/share/perl/5.26.1/IO/Socket"}, {"size": 8, "name": "/usr/share/perl/5.26.1/IO/Compress/Zip"}, {"size": 16, "name": "/usr/share/perl/5.26.1/IO/Compress/Adapter"}, {"size": 28, "name": "/usr/share/perl/5.26.1/IO/Compress/Base"}, {"size": 16, "name": "/usr/share/perl/5.26.1/IO/Compress/Zlib"}, {"size": 8, "name": "/usr/share/perl/5.26.1/IO/Compress/Gzip"}, {"size": 296, "name": "/usr/share/perl/5.26.1/IO/Compress"}, {"size": 20, "name": "/usr/share/perl/5.26.1/IO/Uncompress/Adapter"}, {"size": 300, "name": "/usr/share/perl/5.26.1/IO/Uncompress"}, {"size": 644, "name": "/usr/share/perl/5.26.1/IO"}, {"size": 76, "name": "/usr/share/perl/5.26.1/Encode"}, {"size": 8, "name": "/usr/share/perl/5.26.1/Carp"}, {"size": 24, "name": "/usr/share/perl/5.26.1/Class"}, {"size": 88, "name": "/usr/share/perl/5.26.1/IPC"}, {"size": 252, "name": "/usr/share/perl/5.26.1/B"}, {"size": 12, "name": "/usr/share/perl/5.26.1/encoding"}, {"size": 20, "name": "/usr/share/perl/5.26.1/ExtUtils/CBuilder/Platform/Windows"}, {"size": 76, "name": "/usr/share/perl/5.26.1/ExtUtils/CBuilder/Platform"}, {"size": 92, "name": "/usr/share/perl/5.26.1/ExtUtils/CBuilder"}, {"size": 72, "name": "/usr/share/perl/5.26.1/ExtUtils/Constant"}, {"size": 36, "name": "/usr/share/perl/5.26.1/ExtUtils/ParseXS"}, {"size": 56, "name": "/usr/share/perl/5.26.1/ExtUtils/MakeMaker"}, {"size": 32, "name": "/usr/share/perl/5.26.1/ExtUtils/Liblist"}, {"size": 28, "name": "/usr/share/perl/5.26.1/ExtUtils/Typemaps"}, {"size": 12, "name": "/usr/share/perl/5.26.1/ExtUtils/Command"}, {"size": 1088, "name": "/usr/share/perl/5.26.1/ExtUtils"}, {"size": 284, "name": "/usr/share/perl/5.26.1/pod"}, {"size": 8, "name": "/usr/share/perl/5.26.1/Search"}, {"size": 36, "name": "/usr/share/perl/5.26.1/Attribute"}, {"size": 8, "name": "/usr/share/perl/5.26.1/App/Prove/State/Result"}, {"size": 20, "name": "/usr/share/perl/5.26.1/App/Prove/State"}, {"size": 36, "name": "/usr/share/perl/5.26.1/App/Prove"}, {"size": 100, "name": "/usr/share/perl/5.26.1/App"}, {"size": 12, "name": "/usr/share/perl/5.26.1/Digest"}, {"size": 44, "name": "/usr/share/perl/5.26.1/I18N/LangTags"}, {"size": 84, "name": "/usr/share/perl/5.26.1/I18N"}, {"size": 2212, "name": "/usr/share/perl/5.26.1/Locale/Codes"}, {"size": 64, "name": "/usr/share/perl/5.26.1/Locale/Maketext"}, {"size": 2436, "name": "/usr/share/perl/5.26.1/Locale"}, {"size": 28, "name": "/usr/share/perl/5.26.1/TAP/Harness"}, {"size": 24, "name": "/usr/share/perl/5.26.1/TAP/Parser/Iterator"}, {"size": 12, "name": "/usr/share/perl/5.26.1/TAP/Parser/Scheduler"}, {"size": 20, "name": "/usr/share/perl/5.26.1/TAP/Parser/YAMLish"}, {"size": 40, "name": "/usr/share/perl/5.26.1/TAP/Parser/Result"}, {"size": 32, "name": "/usr/share/perl/5.26.1/TAP/Parser/SourceHandler"}, {"size": 224, "name": "/usr/share/perl/5.26.1/TAP/Parser"}, {"size": 8, "name": "/usr/share/perl/5.26.1/TAP/Formatter/File"}, {"size": 20, "name": "/usr/share/perl/5.26.1/TAP/Formatter/Console"}, {"size": 64, "name": "/usr/share/perl/5.26.1/TAP/Formatter"}, {"size": 412, "name": "/usr/share/perl/5.26.1/TAP"}, {"size": 92, "name": "/usr/share/perl/5.26.1/Text"}, {"size": 12, "name": "/usr/share/perl/5.26.1/Perl"}, {"size": 40, "name": "/usr/share/perl/5.26.1/version"}, {"size": 32, "name": "/usr/share/perl/5.26.1/Archive/Tar"}, {"size": 112, "name": "/usr/share/perl/5.26.1/Archive"}, {"size": 20, "name": "/usr/share/perl/5.26.1/Config/Perl"}, {"size": 28, "name": "/usr/share/perl/5.26.1/Config"}, {"size": 12, "name": "/usr/share/perl/5.26.1/Exporter"}, {"size": 80, "name": "/usr/share/perl/5.26.1/HTTP"}, {"size": 100, "name": "/usr/share/perl/5.26.1/Term"}, {"size": 48, "name": "/usr/share/perl/5.26.1/Compress"}, {"size": 24, "name": "/usr/share/perl/5.26.1/DBM_Filter"}, {"size": 12, "name": "/usr/share/perl/5.26.1/autodie/Scope"}, {"size": 8, "name": "/usr/share/perl/5.26.1/autodie/exception"}, {"size": 80, "name": "/usr/share/perl/5.26.1/autodie"}, {"size": 8, "name": "/usr/share/perl/5.26.1/warnings"}, {"size": 528, "name": "/usr/share/perl/5.26.1/Unicode/Collate/CJK"}, {"size": 1096, "name": "/usr/share/perl/5.26.1/Unicode/Collate/Locale"}, {"size": 3416, "name": "/usr/share/perl/5.26.1/Unicode/Collate"}, {"size": 3580, "name": "/usr/share/perl/5.26.1/Unicode"}, {"size": 32, "name": "/usr/share/perl/5.26.1/Time"}, {"size": 60, "name": "/usr/share/perl/5.26.1/Getopt"}, {"size": 12, "name": "/usr/share/perl/5.26.1/Devel"}, {"size": 136, "name": "/usr/share/perl/5.26.1/Tie"}, {"size": 24, "name": "/usr/share/perl/5.26.1/Module/Load"}, {"size": 36, "name": "/usr/share/perl/5.26.1/Module/CoreList"}, {"size": 852, "name": "/usr/share/perl/5.26.1/Module"}, {"size": 28, "name": "/usr/share/perl/5.26.1/Filter"}, {"size": 8, "name": "/usr/share/perl/5.26.1/overload"}, {"size": 20, "name": "/usr/share/perl/5.26.1/User"}, {"size": 21032, "name": "/usr/share/perl/5.26.1"}, {"size": 21036, "name": "/usr/share/perl"}, {"size": 16, "name": "/usr/share/open-vm-tools/messages/it"}, {"size": 28, "name": "/usr/share/open-vm-tools/messages/zh_CN"}, {"size": 16, "name": "/usr/share/open-vm-tools/messages/zh_TW"}, {"size": 36, "name": "/usr/share/open-vm-tools/messages/ja"}, {"size": 16, "name": "/usr/share/open-vm-tools/messages/es"}, {"size": 16, "name": "/usr/share/open-vm-tools/messages/fr"}, {"size": 32, "name": "/usr/share/open-vm-tools/messages/ko"}, {"size": 32, "name": "/usr/share/open-vm-tools/messages/de"}, {"size": 16, "name": "/usr/share/open-vm-tools/messages/en"}, {"size": 212, "name": "/usr/share/open-vm-tools/messages"}, {"size": 216, "name": "/usr/share/open-vm-tools"}, {"size": 56, "name": "/usr/share/ubuntu-release-upgrader"}, {"size": 223584, "name": "/usr/share"}, {"size": 24, "name": "/usr/include/rdma/hfi"}, {"size": 168, "name": "/usr/include/rdma"}, {"size": 284, "name": "/usr/include/rpcsvc"}, {"size": 188, "name": "/usr/include/reglib"}, {"size": 8, "name": "/usr/include/netiucv"}, {"size": 8, "name": "/usr/include/netpacket"}, {"size": 48, "name": "/usr/include/mtd"}, {"size": 8, "name": "/usr/include/netash"}, {"size": 12, "name": "/usr/include/linux/spi"}, {"size": 20, "name": "/usr/include/linux/wimax"}, {"size": 8, "name": "/usr/include/linux/hdlc"}, {"size": 28, "name": "/usr/include/linux/raid"}, {"size": 8, "name": "/usr/include/linux/cifs"}, {"size": 8, "name": "/usr/include/linux/sched"}, {"size": 40, "name": "/usr/include/linux/can"}, {"size": 44, "name": "/usr/include/linux/netfilter_ipv4"}, {"size": 8, "name": "/usr/include/linux/sunrpc"}, {"size": 12, "name": "/usr/include/linux/hsi"}, {"size": 12, "name": "/usr/include/linux/byteorder"}, {"size": 20, "name": "/usr/include/linux/android"}, {"size": 64, "name": "/usr/include/linux/tc_act"}, {"size": 88, "name": "/usr/include/linux/dvb"}, {"size": 12, "name": "/usr/include/linux/iio"}, {"size": 8, "name": "/usr/include/linux/mmc"}, {"size": 16, "name": "/usr/include/linux/netfilter_arp"}, {"size": 24, "name": "/usr/include/linux/genwqe"}, {"size": 144, "name": "/usr/include/linux/usb"}, {"size": 80, "name": "/usr/include/linux/netfilter_bridge"}, {"size": 24, "name": "/usr/include/linux/nfsd"}, {"size": 20, "name": "/usr/include/linux/tc_ematch"}, {"size": 16, "name": "/usr/include/linux/caif"}, {"size": 28, "name": "/usr/include/linux/netfilter/ipset"}, {"size": 436, "name": "/usr/include/linux/netfilter"}, {"size": 56, "name": "/usr/include/linux/netfilter_ipv6"}, {"size": 12, "name": "/usr/include/linux/isdn"}, {"size": 5320, "name": "/usr/include/linux"}, {"size": 200, "name": "/usr/include/asm-generic"}, {"size": 8, "name": "/usr/include/netrose"}, {"size": 20, "name": "/usr/include/video"}, {"size": 120, "name": "/usr/include/rpc"}, {"size": 60, "name": "/usr/include/net"}, {"size": 204, "name": "/usr/include/sound"}, {"size": 56, "name": "/usr/include/arpa"}, {"size": 216, "name": "/usr/include/btrfs"}, {"size": 8, "name": "/usr/include/netrom"}, {"size": 24, "name": "/usr/include/xen"}, {"size": 60, "name": "/usr/include/scsi/fc"}, {"size": 120, "name": "/usr/include/scsi"}, {"size": 396, "name": "/usr/include/drm"}, {"size": 80, "name": "/usr/include/c++/7/tr2"}, {"size": 52, "name": "/usr/include/c++/7/ext/pb_ds/detail/thin_heap_"}, {"size": 104, "name": "/usr/include/c++/7/ext/pb_ds/detail/binary_heap_"}, {"size": 80, "name": "/usr/include/c++/7/ext/pb_ds/detail/ov_tree_map_"}, {"size": 164, "name": "/usr/include/c++/7/ext/pb_ds/detail/pat_trie_"}, {"size": 120, "name": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_"}, {"size": 56, "name": "/usr/include/c++/7/ext/pb_ds/detail/rb_tree_map_"}, {"size": 48, "name": "/usr/include/c++/7/ext/pb_ds/detail/binomial_heap_base_"}, {"size": 44, "name": "/usr/include/c++/7/ext/pb_ds/detail/trie_policy"}, {"size": 112, "name": "/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_"}, {"size": 20, "name": "/usr/include/c++/7/ext/pb_ds/detail/unordered_iterator"}, {"size": 72, "name": "/usr/include/c++/7/ext/pb_ds/detail/hash_fn"}, {"size": 48, "name": "/usr/include/c++/7/ext/pb_ds/detail/rc_binomial_heap_"}, {"size": 128, "name": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_"}, {"size": 64, "name": "/usr/include/c++/7/ext/pb_ds/detail/splay_tree_"}, {"size": 40, "name": "/usr/include/c++/7/ext/pb_ds/detail/pairing_heap_"}, {"size": 52, "name": "/usr/include/c++/7/ext/pb_ds/detail/list_update_map_"}, {"size": 12, "name": "/usr/include/c++/7/ext/pb_ds/detail/list_update_policy"}, {"size": 16, "name": "/usr/include/c++/7/ext/pb_ds/detail/binomial_heap_"}, {"size": 56, "name": "/usr/include/c++/7/ext/pb_ds/detail/resize_policy"}, {"size": 68, "name": "/usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_"}, {"size": 16, "name": "/usr/include/c++/7/ext/pb_ds/detail/branch_policy"}, {"size": 12, "name": "/usr/include/c++/7/ext/pb_ds/detail/eq_fn"}, {"size": 16, "name": "/usr/include/c++/7/ext/pb_ds/detail/tree_policy"}, {"size": 1480, "name": "/usr/include/c++/7/ext/pb_ds/detail"}, {"size": 1588, "name": "/usr/include/c++/7/ext/pb_ds"}, {"size": 2496, "name": "/usr/include/c++/7/ext"}, {"size": 612, "name": "/usr/include/c++/7/parallel"}, {"size": 108, "name": "/usr/include/c++/7/experimental/bits"}, {"size": 340, "name": "/usr/include/c++/7/experimental"}, {"size": 3440, "name": "/usr/include/c++/7/bits"}, {"size": 44, "name": "/usr/include/c++/7/decimal"}, {"size": 120, "name": "/usr/include/c++/7/backward"}, {"size": 508, "name": "/usr/include/c++/7/debug"}, {"size": 864, "name": "/usr/include/c++/7/tr1"}, {"size": 112, "name": "/usr/include/c++/7/profile/impl"}, {"size": 344, "name": "/usr/include/c++/7/profile"}, {"size": 10172, "name": "/usr/include/c++/7"}, {"size": 10176, "name": "/usr/include/c++"}, {"size": 12, "name": "/usr/include/misc"}, {"size": 468, "name": "/usr/include/x86_64-linux-gnu/sys"}, {"size": 24, "name": "/usr/include/x86_64-linux-gnu/gnu"}, {"size": 116, "name": "/usr/include/x86_64-linux-gnu/bits/types"}, {"size": 1012, "name": "/usr/include/x86_64-linux-gnu/bits"}, {"size": 336, "name": "/usr/include/x86_64-linux-gnu/asm"}, {"size": 12, "name": "/usr/include/x86_64-linux-gnu/c++/7/ext"}, {"size": 208, "name": "/usr/include/x86_64-linux-gnu/c++/7/bits"}, {"size": 224, "name": "/usr/include/x86_64-linux-gnu/c++/7"}, {"size": 228, "name": "/usr/include/x86_64-linux-gnu/c++"}, {"size": 48, "name": "/usr/include/x86_64-linux-gnu/python3.6m"}, {"size": 2144, "name": "/usr/include/x86_64-linux-gnu"}, {"size": 4, "name": "/usr/include/xfs"}, {"size": 8, "name": "/usr/include/netipx"}, {"size": 8, "name": "/usr/include/nfs"}, {"size": 24, "name": "/usr/include/protocols"}, {"size": 768, "name": "/usr/include/python3.6m"}, {"size": 116, "name": "/usr/include/netinet"}, {"size": 12, "name": "/usr/include/netax25"}, {"size": 8, "name": "/usr/include/netatalk"}, {"size": 8, "name": "/usr/include/neteconet"}, {"size": 22016, "name": "/usr/include"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/udf"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/fs/nls"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/fs/squashfs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/fs/hostfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/adfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/freevxfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/sysfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/efs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/afs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/gfs2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/ecryptfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/orangefs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/ntfs"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/fs/cifs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/notify/dnotify"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/notify/inotify"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/notify/fanotify"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/fs/notify"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/affs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/autofs4"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/fs/exofs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/fs/openpromfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/sysv"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/fs/jffs2"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/fs/tracefs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/fs/devpts"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/qnx4"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/hfsplus"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/ufs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/btrfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/efivarfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/fscache"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/pstore"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/f2fs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/9p"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/crypto"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/minix"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/qnx6"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/ubifs"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/fs/ncpfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/hpfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/kernfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/omfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/configfs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/fs/nfs_common"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/cramfs"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/fs/aufs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/hfs"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/fs/xfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/coda"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/fs/nfs/blocklayout"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/fs/nfs/flexfilelayout"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/fs/nfs/filelayout"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72/fs/nfs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/fs/hugetlbfs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/fs/ocfs2/cluster"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/fs/ocfs2/dlmfs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/fs/ocfs2/dlm"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/fs/ocfs2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/isofs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/romfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/dlm"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/fs/fat"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/cachefiles"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/quota"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/ext2"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/fs/nfsd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/fs/exportfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/bfs"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/fs/ext4"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/overlayfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/fuse"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/fs/lockd"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/ceph"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/fs/debugfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/proc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/jbd2"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/fs/ramfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/nilfs2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/jfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/befs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/fs/reiserfs"}, {"size": 1024, "name": "/usr/src/linux-headers-4.15.0-72/fs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/virt/kvm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/virt/lib"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/virt"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72/drivers/spi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/soc/ti"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/soc/lantiq"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/soc/qcom"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/soc/bcm/brcmstb/pm"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/drivers/soc/bcm/brcmstb"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/drivers/soc/bcm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/soc/versatile"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/soc/actions"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/soc/dove"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/soc/tegra/fuse"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/drivers/soc/tegra"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/soc/imx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/soc/ux500"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/soc/fsl/qe"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/soc/fsl/qbman"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/drivers/soc/fsl"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/soc/zte"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/soc/renesas"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/soc/mediatek"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/soc/amlogic"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/soc/samsung"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/soc/rockchip"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/soc/atmel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/soc/sunxi"}, {"size": 284, "name": "/usr/src/linux-headers-4.15.0-72/drivers/soc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/nfc/nfcmrvl"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/nfc/pn533"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/nfc/fdp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/nfc/s3fwrn5"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/nfc/pn544"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/nfc/nxp-nci"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/nfc/st95hf"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/nfc/microread"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/nfc/st21nfca"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/nfc/st-nci"}, {"size": 132, "name": "/usr/src/linux-headers-4.15.0-72/drivers/nfc"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/drivers/bluetooth"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/power/reset"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/drivers/power/supply"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/power/avs"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-72/drivers/power"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/ntb/hw/intel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/ntb/hw/mscc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/ntb/hw/idt"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/ntb/hw/amd"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-72/drivers/ntb/hw"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/ntb/test"}, {"size": 84, "name": "/usr/src/linux-headers-4.15.0-72/drivers/ntb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/perf/hisilicon"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/drivers/perf"}, {"size": 68, "name": "/usr/src/linux-headers-4.15.0-72/drivers/rtc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/dma-buf"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/firewire"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpio"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/memstick/core"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/memstick/host"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/drivers/memstick"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/vlynq"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/dca"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/dax"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/ipu-v3"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/vga"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/savage"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/vc4"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/atmel-hlcdc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/bochs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/mxsfb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/selftests"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/r128"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/sti"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/i915/gvt"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/i915"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/ttm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/tdfx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/etnaviv"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/i2c"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/tve200"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/mgag200"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/via"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/stm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/dispnv04"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvif"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine/sec2"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine/msenc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine/bsp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine/device"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine/disp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine/sw"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine/mspdec"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine/sec"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine/fifo"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine/ce"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine/cipher"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine/mpeg"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine/nvdec"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine/vic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine/gr"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine/dma"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine/msppp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine/msvld"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine/nvenc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine/pm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine/vp"}, {"size": 176, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/gpio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/top"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/mmu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/devinit"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/instmem"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/iccsense"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/i2c"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/bus"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/fb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/secboot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/bar"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/therm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/bios"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/volt"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/pmu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/mxm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/mc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/clk"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/timer"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/ibus"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/fuse"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/pci"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/ltc"}, {"size": 192, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/core"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/falcon"}, {"size": 392, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm"}, {"size": 420, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/exynos"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/tilcdc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/rcar-du"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/fsl-dcu"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/tegra"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/virtio"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/imx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/ast"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/radeon"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/sis"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/qxl"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/msm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/cirrus"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/zte"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/panel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/udl"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/armada"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/omapdrm/dss"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/omapdrm/displays"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/omapdrm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/i810"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/bridge/analogix"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/bridge/adv7511"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/bridge/synopsys"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/bridge"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/shmobile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/mga"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/powerplay/hwmgr"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/powerplay/smumgr"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/powerplay"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/acp"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/amdgpu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/display/amdgpu_dm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/display/dc/dce112"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/display/dc/gpio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/display/dc/dml"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/display/dc/dcn10"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/display/dc/calcs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/display/dc/irq"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/display/dc/dce120"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/display/dc/basics"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/display/dc/bios"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/display/dc/i2caux"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/display/dc/dce100"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/display/dc/virtual"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/display/dc/dce"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/display/dc/dce110"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/display/dc/dce80"}, {"size": 128, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/display/dc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/display/modules/freesync"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/display/modules"}, {"size": 160, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/display"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/lib"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/amdkfd"}, {"size": 240, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/pl111"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/mediatek"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/sun4i"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/vmwgfx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/hisilicon/hibmc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/hisilicon/kirin"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/hisilicon"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/rockchip"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/arc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/gma500"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/arm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/meson"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/tinydrm/core"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/tinydrm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/vgem"}, {"size": 1364, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/drm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu/host1x"}, {"size": 1408, "name": "/usr/src/linux-headers-4.15.0-72/drivers/gpu"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/sn"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/spmi"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/drivers/char/hw_random"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/char/ipmi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/char/xillybus"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/char/agp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/char/mwave"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/char/xilinx_hwicap"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/char/pcmcia"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/char/tpm/st33zp24"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/drivers/char/tpm"}, {"size": 152, "name": "/usr/src/linux-headers-4.15.0-72/drivers/char"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/thunderbolt"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/memory/tegra"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/memory/samsung"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72/drivers/memory"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/fsi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/virt"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/pinctrl/spear"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/pinctrl/sh-pfc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/pinctrl/intel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/pinctrl/vt8500"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/pinctrl/stm32"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/pinctrl/uniphier"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/pinctrl/ti"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/pinctrl/qcom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/pinctrl/bcm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/pinctrl/berlin"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/pinctrl/tegra"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/pinctrl/nomadik"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/pinctrl/sprd"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/pinctrl/zte"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/pinctrl/aspeed"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/pinctrl/freescale"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/pinctrl/pxa"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/pinctrl/sirf"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/pinctrl/mediatek"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/pinctrl/samsung"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/pinctrl/mvebu"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/pinctrl/sunxi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/pinctrl/meson"}, {"size": 296, "name": "/usr/src/linux-headers-4.15.0-72/drivers/pinctrl"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-72/drivers/regulator"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/vhost"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/ras"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/fmc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/tee/optee"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/drivers/tee"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/mtd/spi-nor"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/mtd/nand/brcmnand"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/mtd/nand/bcm47xxnflash"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/mtd/nand/gpmi-nand"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/mtd/nand/atmel"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-72/drivers/mtd/nand"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/mtd/tests"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/mtd/onenand"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/mtd/lpddr"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/drivers/mtd/maps"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/drivers/mtd/devices"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/mtd/parsers"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/drivers/mtd/chips"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/mtd/ubi"}, {"size": 220, "name": "/usr/src/linux-headers-4.15.0-72/drivers/mtd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/nubus"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/reset/sti"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/reset/tegra"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/reset/hisilicon"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/drivers/reset"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/accessibility/braille"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/drivers/accessibility"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/pps/clients"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/pps/generators"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/drivers/pps"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/parport"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/drivers/atm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/ptp"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/drivers/iommu"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/opp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/hsi/clients"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/hsi/controllers"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/drivers/hsi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/i2c/muxes"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-72/drivers/i2c/busses"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/i2c/algos"}, {"size": 96, "name": "/usr/src/linux-headers-4.15.0-72/drivers/i2c"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/macintosh/ams"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/drivers/macintosh"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/hwmon/pmbus"}, {"size": 88, "name": "/usr/src/linux-headers-4.15.0-72/drivers/hwmon"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/platform/goldfish"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/platform/chrome"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/platform/mips"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/drivers/platform/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/platform/olpc"}, {"size": 104, "name": "/usr/src/linux-headers-4.15.0-72/drivers/platform"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/s390/cio"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/s390/char"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/s390/net"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/s390/virtio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/s390/crypto"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/s390/block"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/s390/scsi"}, {"size": 80, "name": "/usr/src/linux-headers-4.15.0-72/drivers/s390"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/idle"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/bus"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/message/fusion"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/drivers/message"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/mcb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/video/logo"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/savage"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/omap2/omapfb/dss"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/omap2/omapfb/displays"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/omap2/omapfb"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/omap2"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/intelfb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/mbx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/vermilion"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/mmp/fb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/mmp/panel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/mmp/hw"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/mmp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/via"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/geode"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/core"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/sis"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/riva"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/omap"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/matrox"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/aty"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/i810"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/nvidia"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/mb862xx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/kyro"}, {"size": 320, "name": "/usr/src/linux-headers-4.15.0-72/drivers/video/fbdev"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/video/console"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/drivers/video/backlight"}, {"size": 384, "name": "/usr/src/linux-headers-4.15.0-72/drivers/video"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/nvme/host"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/nvme/target"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/drivers/nvme"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/dio"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/extcon"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/base/power"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/base/regmap"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/base/test"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-72/drivers/base"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/android"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/hyperv"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wimax/i2400m"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wimax"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/fjes"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/bonding"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/team"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/cris"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ipvlan"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/can/spi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/can/cc770"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/can/sja1000"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/can/ifi_canfd"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/can/c_can"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/can/mscan"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/can/softing"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/can/m_can"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/can/usb/peak_usb"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/can/usb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/can/rcar"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/can/peak_canfd"}, {"size": 156, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/can"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wan/lmc"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wan"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/cisco"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/intel/iwlwifi/mvm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/intel/iwlwifi/dvm"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/intel/iwlwifi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/intel/iwlegacy"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/intel/ipw2x00"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/intel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/st/cw1200"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/st"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/rsi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/quantenna/qtnfmac"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/quantenna"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/ti/wl12xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/ti/wl1251"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/ti/wlcore"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/ti/wl18xx"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/ti"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/intersil/prism54"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/intersil/hostap"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/intersil/p54"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/intersil/orinoco"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/intersil"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/admtek"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/broadcom/brcm80211/brcmfmac"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/broadcom/brcm80211/brcmutil"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/broadcom/brcm80211/brcmsmac"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/broadcom/brcm80211"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/broadcom/b43"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/broadcom/b43legacy"}, {"size": 76, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/broadcom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/ath/wil6210"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/ath/carl9170"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/ath/ath5k"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/ath/ath9k"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/ath/wcn36xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/ath/ath10k"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/ath/ath6kl"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/ath/ar5523"}, {"size": 112, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/ath"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/realtek/rtl8xxxu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/realtek/rtlwifi/rtl8192de"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/realtek/rtlwifi/rtl8192cu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/realtek/rtlwifi/rtl8192ce"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/realtek/rtlwifi/rtl8192se"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/realtek/rtlwifi/rtl8192c"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/realtek/rtlwifi/rtl8723be"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/realtek/rtlwifi/rtl8723com"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/realtek/rtlwifi/rtl8821ae"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/realtek/rtlwifi/btcoexist"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/realtek/rtlwifi/rtl8192ee"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/realtek/rtlwifi/rtl8188ee"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/realtek/rtlwifi/rtl8723ae"}, {"size": 108, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/realtek/rtlwifi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/realtek/rtl818x/rtl8180"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/realtek/rtl818x/rtl8187"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/realtek/rtl818x"}, {"size": 160, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/realtek"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/marvell/libertas_tf"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/marvell/mwifiex"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/marvell/libertas"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/marvell"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/mediatek/mt7601u"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/mediatek"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/atmel"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/ralink/rt2x00"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/ralink"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/zydas/zd1211rw"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless/zydas"}, {"size": 772, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/wireless"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/dsa/mv88e6xxx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/dsa/b53"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/dsa/microchip"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/dsa"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/aeroflex"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/calxeda"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/silan"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/moxa"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/hp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/emulex/benet"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/emulex"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/nxp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/ibm/emac"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/ibm/ehea"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/ibm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/altera"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/cisco/enic"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/cisco"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/aurora"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/intel/ixgbevf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/intel/igbvf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/intel/i40evf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/intel/ixgbe"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/intel/fm10k"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/intel/ixgb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/intel/e1000"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/intel/igb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/intel/i40e"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/intel/e1000e"}, {"size": 100, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/intel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/natsemi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/pasemi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/qlogic/qede"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/qlogic/netxen"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/qlogic/qlcnic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/qlogic/qed"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/qlogic/qlge"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/qlogic"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/oki-semi/pch_gbe"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/oki-semi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/apm/xgene"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/apm/xgene-v2"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/apm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/alteon"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/nuvoton"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/agere"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/qualcomm/rmnet"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/qualcomm/emac"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/qualcomm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/tehuti"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/ti"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/i825xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/rdc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/sfc/falcon"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/sfc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/rocker"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/tile"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/wiznet"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/huawei/hinic"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/huawei"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/via"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/myricom/myri10ge"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/myricom"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/chelsio/libcxgb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/chelsio/cxgb3"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/chelsio/cxgb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/chelsio/cxgb4vf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/chelsio/cxgb4"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/chelsio"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/microchip"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/toshiba"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/allwinner"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/broadcom/bnx2x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/broadcom/genet"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/broadcom/bnxt"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/broadcom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/seeq"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/xscale"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/sis"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/adi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/mellanox/mlxfw"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/mellanox/mlx5/core/diag"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/mellanox/mlx5/core/ipoib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/mellanox/mlx5/core/fpga"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/mellanox/mlx5/core/accel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/mellanox/mlx5/core/lib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/mellanox/mlx5/core/en_accel"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/mellanox/mlx5/core"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/mellanox/mlx5"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/mellanox/mlx4"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/mellanox/mlxsw"}, {"size": 112, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/mellanox"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/3com"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/cadence"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/neterion/vxge"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/neterion"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/stmicro/stmmac"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/stmicro"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/davicom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/cirrus"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/dec/tulip"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/dec"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/fujitsu"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/micrel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/atheros/atlx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/atheros/alx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/atheros/atl1c"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/atheros/atl1e"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/atheros"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/8390"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/ezchip"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/socionext"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/freescale/fs_enet"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/freescale/fman"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/freescale/dpaa"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/freescale"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/renesas"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/faraday"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/realtek"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/aquantia/atlantic"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/aquantia"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/xircom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/nvidia"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/amd/xgbe"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/amd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/netronome/nfp"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/netronome"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/alacritech"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/packetengines"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/sun"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/marvell"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/mediatek"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/adaptec"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/apple"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/dlink"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/samsung/sxgbe"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/samsung"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/smsc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/sgi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/hisilicon/hns"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/hisilicon/hns3/hns3pf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/hisilicon/hns3/hns3vf"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/hisilicon/hns3"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/hisilicon"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/arc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/tundra"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/cavium/octeon"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/cavium/liquidio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/cavium/thunder"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/cavium"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/amazon/ena"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/amazon"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/brocade/bna"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/brocade"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/xilinx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/synopsys"}, {"size": 1672, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ethernet"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/vmxnet3"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/hippi"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/hamradio"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ieee802154"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/phy"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/appletalk"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/plip"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/arcnet"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/ppp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/slip"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/usb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/caif"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/xen-netback"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/fddi/skfp"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net/fddi"}, {"size": 3000, "name": "/usr/src/linux-headers-4.15.0-72/drivers/net"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/devfreq/event"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/drivers/devfreq"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/leds/trigger"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-72/drivers/leds"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/nvdimm"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/drivers/auxdisplay"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/ps3"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/drivers/input/keyboard"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/input/rmi4"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/input/tablet"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/drivers/input/mouse"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/drivers/input/misc"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/drivers/input/touchscreen"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/drivers/input/serio"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/input/gameport"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/input/joystick/iforce"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/drivers/input/joystick"}, {"size": 244, "name": "/usr/src/linux-headers-4.15.0-72/drivers/input"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/virtio"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/hwspinlock"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/drivers/clocksource"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/hwtracing/stm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/hwtracing/intel_th"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/hwtracing/coresight"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-72/drivers/hwtracing"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/sbus/char"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/drivers/sbus"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/xen/xenfs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/xen/events"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/xen/xen-pciback"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/xen/xenbus"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-72/drivers/xen"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/mux"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/phy/st"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/phy/qualcomm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/phy/ti"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/phy/lantiq"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/phy/motorola"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/phy/tegra"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/phy/allwinner"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/phy/broadcom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/phy/renesas"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/phy/marvell"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/phy/mediatek"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/phy/amlogic"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/phy/samsung"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/phy/hisilicon"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/phy/rockchip"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/phy/ralink"}, {"size": 204, "name": "/usr/src/linux-headers-4.15.0-72/drivers/phy"}, {"size": 120, "name": "/usr/src/linux-headers-4.15.0-72/drivers/crypto/vmx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/crypto/amcc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/crypto/stm32"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/crypto/bcm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/crypto/chelsio"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/crypto/virtio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/crypto/axis"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/crypto/ux500/cryp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/crypto/ux500/hash"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/drivers/crypto/ux500"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/crypto/qat/qat_c3xxx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/crypto/qat/qat_c62xvf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/crypto/qat/qat_c62x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/crypto/qat/qat_c3xxxvf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/crypto/qat/qat_dh895xccvf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/crypto/qat/qat_dh895xcc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/crypto/qat/qat_common"}, {"size": 68, "name": "/usr/src/linux-headers-4.15.0-72/drivers/crypto/qat"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/crypto/ccp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/crypto/sunxi-ss"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/crypto/marvell"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/crypto/nx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/crypto/mediatek"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/crypto/caam"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/crypto/rockchip"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/crypto/inside-secure"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/crypto/cavium/cpt"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/crypto/cavium/nitrox"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/crypto/cavium/zip"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72/drivers/crypto/cavium"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/crypto/qce"}, {"size": 436, "name": "/usr/src/linux-headers-4.15.0-72/drivers/crypto"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/bcma"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/pnp/pnpbios"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/pnp/pnpacpi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/pnp/isapnp"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/drivers/pnp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/block/xen-blkback"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/block/mtip32xx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/block/aoe"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/drivers/block/paride"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/block/rsxx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/block/drbd"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/block/zram"}, {"size": 112, "name": "/usr/src/linux-headers-4.15.0-72/drivers/block"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/irqchip"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/scsi/cxlflash"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/scsi/be2iscsi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/scsi/smartpqi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/scsi/ibmvscsi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/scsi/qla4xxx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/scsi/bfa"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/scsi/aacraid"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/scsi/arcmsr"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/scsi/aic7xxx/aicasm"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/drivers/scsi/aic7xxx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/scsi/snic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/scsi/fcoe"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/scsi/mvsas"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/scsi/device_handler"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/scsi/ufs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/scsi/ibmvscsi_tgt"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/scsi/osd"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/scsi/bnx2i"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/scsi/qedi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/scsi/aic94xx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/scsi/lpfc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/scsi/csiostor"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/scsi/hisi_sas"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/scsi/qla2xxx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/scsi/fnic"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/scsi/esas2r"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/scsi/libsas"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/scsi/libfc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/scsi/pcmcia"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/scsi/cxgbi/cxgb4i"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/scsi/cxgbi/cxgb3i"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/drivers/scsi/cxgbi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/scsi/bnx2fc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/scsi/megaraid"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/scsi/pm8001"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/scsi/arm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/scsi/qedf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/scsi/isci"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/scsi/sym53c8xx_2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/scsi/mpt3sas"}, {"size": 528, "name": "/usr/src/linux-headers-4.15.0-72/drivers/scsi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/amba"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/sh/maple"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/sh/superhyway"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/sh/clk"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/sh/intc"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/drivers/sh"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/thermal/int340x_thermal"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/thermal/st"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/thermal/qcom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/thermal/tegra"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/thermal/broadcom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/thermal/samsung"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/thermal/ti-soc-thermal"}, {"size": 112, "name": "/usr/src/linux-headers-4.15.0-72/drivers/thermal"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/fpga"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/eisa"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/uwb/i1480/dfu"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/uwb/i1480"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/drivers/uwb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/tc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/misc/cxl"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/misc/ibmasm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/misc/vmw_vmci"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/misc/sgi-gru"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/misc/ti-st"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/misc/lis3lv02d"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/misc/cb710"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/misc/sgi-xp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/misc/eeprom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/misc/cardreader"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/misc/c2port"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/misc/altera-stapl"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/misc/ocxl"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/misc/genwqe"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/misc/mic/cosm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/misc/mic/scif"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/misc/mic/vop"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/misc/mic/card"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/misc/mic/bus"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/misc/mic/host"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/misc/mic/cosm_client"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-72/drivers/misc/mic"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/misc/echo"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/misc/mei"}, {"size": 280, "name": "/usr/src/linux-headers-4.15.0-72/drivers/misc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/of/unittest-data"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/drivers/of"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/hid/usbhid"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/hid/i2c-hid"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/hid/intel-ish-hid"}, {"size": 80, "name": "/usr/src/linux-headers-4.15.0-72/drivers/hid"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/md/persistent-data"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/md/bcache"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-72/drivers/md"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/vfio/platform/reset"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/drivers/vfio/platform"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/vfio/mdev"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/vfio/pci"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-72/drivers/vfio"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/parisc"}, {"size": 76, "name": "/usr/src/linux-headers-4.15.0-72/drivers/mfd"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/powercap"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/target/tcm_fc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/target/sbp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/target/iscsi/cxgbit"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/drivers/target/iscsi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/target/loopback"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-72/drivers/target"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/nvmem"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/clk/spear"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/clk/nxp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/clk/st"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/clk/loongson1"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/clk/mxs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/clk/uniphier"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/clk/ti"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/clk/qcom"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/clk/at91"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/clk/mmp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/clk/bcm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/clk/h8300"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/clk/versatile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/clk/berlin"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/clk/ingenic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/clk/microchip"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/clk/tegra"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/clk/imx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/clk/keystone"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/clk/axis"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/clk/sunxi-ng"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/clk/ux500"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/clk/imgtec"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/clk/zte"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/clk/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/clk/pxa"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/clk/renesas"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/clk/sirf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/clk/axs10x"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/clk/mediatek"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/clk/samsung"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/clk/pistachio"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/clk/mvebu"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/clk/hisilicon"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/clk/rockchip"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/clk/sunxi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/clk/zynq"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/clk/socfpga"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/clk/meson"}, {"size": 396, "name": "/usr/src/linux-headers-4.15.0-72/drivers/clk"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/ipack/carriers"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/ipack/devices"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/drivers/ipack"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/iio/buffer"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/iio/counter"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/iio/potentiostat"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/iio/frequency"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/iio/humidity"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/iio/common/ssp_sensors"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/iio/common/hid-sensors"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/iio/common/st_sensors"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/iio/common/ms_sensors"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/iio/common/cros_ec_sensors"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-72/drivers/iio/common"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/drivers/iio/adc"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/iio/magnetometer"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/iio/multiplexer"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/drivers/iio/light"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/iio/potentiometer"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/iio/proximity"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/iio/dummy"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/iio/gyro"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/iio/orientation"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/iio/chemical"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/drivers/iio/accel"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/iio/pressure"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/iio/amplifiers"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/iio/health"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/iio/temperature"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/iio/imu/inv_mpu6050"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/iio/imu/bmi160"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/iio/imu/st_lsm6dsx"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/drivers/iio/imu"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/drivers/iio/dac"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/iio/trigger"}, {"size": 452, "name": "/usr/src/linux-headers-4.15.0-72/drivers/iio"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/mmc/core"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72/drivers/mmc/host"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-72/drivers/mmc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/dma/bestcomm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/dma/hsu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/dma/ioat"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/dma/qcom"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/dma/ipu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/dma/ppc4xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/dma/sh"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/dma/dw"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/dma/xilinx"}, {"size": 120, "name": "/usr/src/linux-headers-4.15.0-72/drivers/dma"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/firmware/efi/libstub"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/firmware/efi/test"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/drivers/firmware/efi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/firmware/tegra"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/firmware/broadcom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/firmware/google"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/firmware/meson"}, {"size": 100, "name": "/usr/src/linux-headers-4.15.0-72/drivers/firmware"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/infiniband/sw/rxe"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/infiniband/sw/rdmavt"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/drivers/infiniband/sw"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/infiniband/core"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/infiniband/hw/hns"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/infiniband/hw/hfi1"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/infiniband/hw/qib"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/infiniband/hw/cxgb3"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/infiniband/hw/i40iw"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/infiniband/hw/ocrdma"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/infiniband/hw/qedr"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/infiniband/hw/mlx5"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/infiniband/hw/nes"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/infiniband/hw/mlx4"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/infiniband/hw/vmw_pvrdma"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/infiniband/hw/bnxt_re"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/infiniband/hw/mthca"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/infiniband/hw/cxgb4"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/infiniband/hw/usnic"}, {"size": 188, "name": "/usr/src/linux-headers-4.15.0-72/drivers/infiniband/hw"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/infiniband/ulp/isert"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/infiniband/ulp/iser"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/infiniband/ulp/srp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/infiniband/ulp/ipoib"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/infiniband/ulp/srpt"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/infiniband/ulp/opa_vnic"}, {"size": 80, "name": "/usr/src/linux-headers-4.15.0-72/drivers/infiniband/ulp"}, {"size": 320, "name": "/usr/src/linux-headers-4.15.0-72/drivers/infiniband"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/acpi/acpica"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/acpi/arm64"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/acpi/dptf"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/acpi/apei"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/acpi/nfit"}, {"size": 84, "name": "/usr/src/linux-headers-4.15.0-72/drivers/acpi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/rpmsg"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/ssb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/connector"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72/drivers/ata"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/w1/slaves"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/w1/masters"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72/drivers/w1"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/drivers/pcmcia"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/usb/dwc3"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/usb/dwc2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/usb/wusbcore"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/usb/common"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/usb/usbip"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72/drivers/usb/serial"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/usb/chipidea"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/usb/atm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/usb/mon"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/usb/class"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/usb/musb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/usb/renesas_usbhs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/usb/early"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/usb/c67x00"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/usb/core"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/usb/mtu3"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/usb/phy"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/usb/image"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/usb/host/whci"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-72/drivers/usb/host"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/usb/misc/sisusbvga"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/drivers/usb/misc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/usb/typec/ucsi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/usb/typec/fusb302"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/drivers/usb/typec"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/usb/isp1760"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/usb/storage"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/usb/gadget/udc/bdc"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72/drivers/usb/gadget/udc"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/drivers/usb/gadget/legacy"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/usb/gadget/function"}, {"size": 104, "name": "/usr/src/linux-headers-4.15.0-72/drivers/usb/gadget"}, {"size": 500, "name": "/usr/src/linux-headers-4.15.0-72/drivers/usb"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72/drivers/ide"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/cdrom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/zorro"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/drivers/edac"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/lightnvm"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/uio"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-72/drivers/cpufreq"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/rtl8712"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/fwserial"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/lustre/lustre/lov"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/lustre/lustre/ptlrpc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/lustre/lustre/obdclass"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/lustre/lustre/lmv"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/lustre/lustre/fid"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/lustre/lustre/mgc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/lustre/lustre/fld"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/lustre/lustre/osc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/lustre/lustre/llite"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/lustre/lustre/mdc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/lustre/lustre/obdecho"}, {"size": 100, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/lustre/lustre"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/lustre/lnet/lnet"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/lustre/lnet/libcfs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/lustre/lnet/selftest"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/lustre/lnet/klnds/socklnd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/lustre/lnet/klnds/o2iblnd"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/lustre/lnet/klnds"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/lustre/lnet"}, {"size": 172, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/lustre"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/rtl8188eu"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/pi433"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/vboxvideo"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/gdm724x"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/skein"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/olpc_dcon"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/dgnc"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/irda/drivers"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/irda/net/ircomm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/irda/net/irlan"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/irda/net/irnet"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/irda/net"}, {"size": 76, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/irda"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/goldfish"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/comedi/drivers"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/comedi/kcomedilib"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/comedi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/nvec"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/vt6655"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/octeon"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/wilc1000"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/wlan-ng"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/vc04_services/bcm2835-camera"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/vc04_services/bcm2835-audio"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/vc04_services"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/clocking-wizard"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/most/hdm-dim2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/most/mostcore"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/most/aim-network"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/most/hdm-usb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/most/aim-sound"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/most/hdm-i2c"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/most/aim-v4l2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/most/aim-cdev"}, {"size": 108, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/most"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/xgifb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/mt29f_spinand"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/android/ion"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/android"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/fbtft"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/greybus/tools"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/greybus"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/fsl-mc/bus/dpio"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/fsl-mc/bus"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/fsl-mc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/ccree"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/rtlwifi/rtl8822be"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/rtlwifi/btcoexist"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/rtlwifi"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/speakup"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/sm750fb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/gs_fpgaboot"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/octeon-usb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/ks7010"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/emxx_udc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/rtl8192u/ieee80211"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/rtl8192u"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/board"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/iio/frequency"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/iio/adc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/iio/cdc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/iio/addac"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/iio/light"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/iio/impedance-analyzer"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/iio/gyro"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/iio/resolver"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/iio/accel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/iio/meter"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/iio/trigger"}, {"size": 144, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/iio"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/unisys/visorbus"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/unisys/visorinput"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/unisys/visorhba"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/unisys/visornic"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/unisys"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/rtl8723bs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/typec"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/rtl8192e/rtl8192e"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/rtl8192e"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/fsl-dpaa2/ethernet"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/fsl-dpaa2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/netlogic"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/vme/devices"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/vme"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/rts5208"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/media/atomisp/i2c/ov5693"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/media/atomisp/i2c"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/media/atomisp/platform/intel-mid"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/media/atomisp/platform"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/media/atomisp/pci/atomisp2/css2400"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/media/atomisp/pci/atomisp2"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/media/atomisp/pci"}, {"size": 92, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/media/atomisp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/media/davinci_vpfe"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/media/imx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/media/lirc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/media/omap4iss"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/media/cxd2099"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/media/bcm2048"}, {"size": 176, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/media"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging/vt6656"}, {"size": 1440, "name": "/usr/src/linux-headers-4.15.0-72/drivers/staging"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/rapidio/devices"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/rapidio/switches"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/drivers/rapidio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/tty/vt"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/drivers/tty/serial/8250"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/tty/serial/jsm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/tty/serial/cpm_uart"}, {"size": 112, "name": "/usr/src/linux-headers-4.15.0-72/drivers/tty/serial"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/tty/ipwireless"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/tty/hvc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/tty/serdev"}, {"size": 180, "name": "/usr/src/linux-headers-4.15.0-72/drivers/tty"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/vme/boards"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/vme/bridges"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/drivers/vme"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/hv"}, {"size": 76, "name": "/usr/src/linux-headers-4.15.0-72/drivers/watchdog"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/remoteproc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/cpuidle/governors"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/drivers/cpuidle"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/isdn/hysdn"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/isdn/gigaset"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/isdn/isdnloop"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/isdn/capi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/isdn/mISDN"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/drivers/isdn/hisax"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/isdn/i4l"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/isdn/hardware/mISDN"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/isdn/hardware/eicon"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/isdn/hardware/avm"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/drivers/isdn/hardware"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/isdn/divert"}, {"size": 164, "name": "/usr/src/linux-headers-4.15.0-72/drivers/isdn"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/pci/dwc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/pci/switch"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/pci/hotplug"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/pci/endpoint/functions"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/drivers/pci/endpoint"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/pci/pcie/aer"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/drivers/pci/pcie"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/pci/host"}, {"size": 124, "name": "/usr/src/linux-headers-4.15.0-72/drivers/pci"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/drivers/pwm"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/mailbox"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/spi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/firewire"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/tuners"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/cec"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/rc/img-ir"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/rc/keymaps"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/rc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/common/b2c2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/common/saa7146"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/common/v4l2-tpg"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/common/siano"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/common"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/radio/wl128x"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/radio/si4713"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/radio/si470x"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/radio"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/i2c/m5mols"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/i2c/adv748x"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/i2c/soc_camera"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/i2c/smiapp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/i2c/cx25840"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/i2c/s5c73m3"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/i2c/et8ek8"}, {"size": 112, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/i2c"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/platform/vimc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/platform/tegra-cec"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/platform/rcar-vin"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/platform/omap3isp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/platform/davinci"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/platform/soc_camera"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/platform/sti/cec"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/platform/sti/bdisp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/platform/sti/hva"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/platform/sti/delta"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/platform/sti/c8sectpfe"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/platform/sti"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/platform/mtk-vpu"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/platform/am437x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/platform/stm32"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/platform/qcom/venus"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/platform/qcom/camss-8x16"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/platform/qcom"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/platform/s5p-g2d"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/platform/s3c-camif"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/platform/cec-gpio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/platform/s5p-cec"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/platform/vsp1"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/platform/mtk-vcodec"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/platform/vivid"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/platform/exynos-gsc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/platform/s5p-mfc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/platform/blackfin"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/platform/marvell-ccic"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/platform/omap"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/platform/mtk-jpeg"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/platform/coda"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/platform/mtk-mdp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/platform/s5p-jpeg"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/platform/ti-vpe"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/platform/rockchip/rga"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/platform/rockchip"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/platform/atmel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/platform/exynos4-is"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/platform/meson"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/platform/xilinx"}, {"size": 396, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/platform"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/v4l2-core"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/mmc/siano"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/mmc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/dvb-core"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/usb/dvb-usb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/usb/ttusb-dec"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/usb/au0828"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/usb/stkwebcam"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/usb/usbtv"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/usb/pwc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/usb/gspca/gl860"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/usb/gspca/m5602"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/usb/gspca/stv06xx"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/usb/gspca"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/usb/b2c2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/usb/rainshadow-cec"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/usb/ttusb-budget"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/usb/hackrf"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/usb/uvc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/usb/usbvision"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/usb/em28xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/usb/zr364xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/usb/airspy"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/usb/stk1160"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/usb/s2255"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/usb/hdpvr"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/usb/pvrusb2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/usb/cx231xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/usb/tm6000"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/usb/cpia2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/usb/msi2500"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/usb/as102"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/usb/pulse8-cec"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/usb/siano"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/usb/go7007"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/usb/dvb-usb-v2"}, {"size": 424, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/usb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/dvb-frontends/drx39xyj"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/dvb-frontends"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/pci/dm1105"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/pci/meye"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/pci/ngene"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/pci/smipcie"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/pci/cx18"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/pci/tw68"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/pci/ivtv"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/pci/solo6x10"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/pci/pt3"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/pci/pluto2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/pci/b2c2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/pci/bt8xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/pci/saa7146"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/pci/netup_unidvb"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/pci/ttpci"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/pci/sta2x11"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/pci/pt1"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/pci/saa7134"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/pci/cobalt"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/pci/dt3155"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/pci/zoran"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/pci/mantis"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/pci/cx88"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/pci/saa7164"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/pci/cx23885"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/pci/tw5864"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/pci/cx25821"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/pci/tw686x"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/pci/ddbridge"}, {"size": 364, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media/pci"}, {"size": 1636, "name": "/usr/src/linux-headers-4.15.0-72/drivers/media"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/drivers/sfi"}, {"size": 16352, "name": "/usr/src/linux-headers-4.15.0-72/drivers"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/samples/hidraw"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/samples/kfifo"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/samples/timers"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/samples/livepatch"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/samples/trace_printk"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/samples/kobject"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/samples/vfio-mdev"}, {"size": 80, "name": "/usr/src/linux-headers-4.15.0-72/samples/bpf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/samples/kprobes"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/samples/auxdisplay"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/samples/hw_breakpoint"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/samples/trace_events"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/samples/blackfin"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-72/samples/pktgen"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/samples/configfs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/samples/rpmsg"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/samples/uhid"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/samples/connector"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/samples/v4l"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/samples/kdb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/samples/seccomp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/samples/mic/mpssd"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/samples/mic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/samples/mei"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/samples/watchdog"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/samples/statx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/samples/sockmap"}, {"size": 332, "name": "/usr/src/linux-headers-4.15.0-72/samples"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/ipc"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/Documentation/sphinx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/Documentation/features"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/Documentation/EDID"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/Documentation/s390"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/Documentation/kbuild"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/Documentation/trace/postprocess"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-72/Documentation/trace"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/Documentation/aoe"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/Documentation/scsi/scsi_transport_srp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/Documentation/scsi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/Documentation/cdrom"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/Documentation/filesystems/cifs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/Documentation/filesystems"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/Documentation/media"}, {"size": 176, "name": "/usr/src/linux-headers-4.15.0-72/Documentation"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/ubuntu/vbox/vboxvideo"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/ubuntu/vbox/vboxguest"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/ubuntu/vbox/vboxsf"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-72/ubuntu/vbox"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/ubuntu/include"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/ubuntu/hio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/ubuntu/xr-usb-serial"}, {"size": 112, "name": "/usr/src/linux-headers-4.15.0-72/ubuntu"}, {"size": 68, "name": "/usr/src/linux-headers-4.15.0-72/init"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/wimax"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/nfc/nci"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/nfc/hci"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/net/nfc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/bluetooth/hidp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/bluetooth/rfcomm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/bluetooth/bnep"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/bluetooth/cmtp"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-72/net/bluetooth"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/tipc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/qrtr"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/net/key"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/netlink"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/net/dccp/ccids"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/net/dccp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/net/rose"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/xfrm"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/net/sched"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/kcm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/decnet/netfilter"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/net/decnet"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/can"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/unix"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/sctp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/packet"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/net/sunrpc/auth_gss"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/net/sunrpc/xprtrdma"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/net/sunrpc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/mpls"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/rds"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/net/wireless"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/atm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/psample"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/mac802154"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/net/bpf"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/net/ipv4/netfilter"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-72/net/ipv4"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/iucv"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/smc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/dns_resolver"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/dsa"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/nsh"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/net/ethernet"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/vmw_vsock"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/rfkill"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/llc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/switchdev"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/net/netrom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/openvswitch"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/ieee802154/6lowpan"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/net/ieee802154"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/net/core"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/ife"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/9p"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/x25"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/phonet"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/rxrpc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/net/appletalk"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/lapb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/netlabel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/ipx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/batman-adv"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/l3mdev"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/strparser"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/802"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/8021q"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/l2tp"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/net/bridge/netfilter"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/net/bridge"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/hsr"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/6lowpan"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/net/mac80211"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/ncsi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/caif"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/dcb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/tls"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/net/netfilter/ipvs"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/net/netfilter/ipset"}, {"size": 104, "name": "/usr/src/linux-headers-4.15.0-72/net/netfilter"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/net/ceph"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/net/ipv6/ila"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/net/ipv6/netfilter"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/net/ipv6"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/net/ax25"}, {"size": 1152, "name": "/usr/src/linux-headers-4.15.0-72/net"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/spi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/power/cpupower/utils"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/power/cpupower/debug/x86_64"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/power/cpupower/debug/i386"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/power/cpupower/debug/kernel"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/tools/power/cpupower/debug"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/tools/power/cpupower/bench"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-72/tools/power/cpupower"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/power/pm-graph"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/power/x86/x86_energy_perf_policy"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/power/x86/turbostat"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/tools/power/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/power/acpi/tools/acpidbg"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/power/acpi/tools/acpidump"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/power/acpi/tools/ec"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/tools/power/acpi/tools"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-72/tools/power/acpi"}, {"size": 148, "name": "/usr/src/linux-headers-4.15.0-72/tools/power"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/tools/perf/Documentation"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-72/tools/perf/trace/beauty"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/tools/perf/trace"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/tools/perf/tests/shell/lib"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/tools/perf/tests/shell"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/tools/perf/tests"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/perf/util"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/perf/scripts/perl/Perf-Trace-Util"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-72/tools/perf/scripts/perl"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/tools/perf/scripts"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/perf/arch/s390"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/perf/arch/arm64"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/perf/arch/sparc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/perf/arch/xtensa"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/perf/arch/sh"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/perf/arch/x86/tests"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/perf/arch/x86/entry/syscalls"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/tools/perf/arch/x86/entry"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/tools/perf/arch/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/perf/arch/arm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/perf/arch/powerpc"}, {"size": 88, "name": "/usr/src/linux-headers-4.15.0-72/tools/perf/arch"}, {"size": 336, "name": "/usr/src/linux-headers-4.15.0-72/tools/perf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/firewire"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/gpio"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/tools/build/feature"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/build/tests/ex"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/tools/build/tests"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-72/tools/build"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/accounting"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/bpf/bpftool/Documentation"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/tools/bpf/bpftool"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/tools/bpf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/time"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/leds"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/tools/virtio/ringtest"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/virtio/vhost_test"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/virtio/virtio-trace"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/tools/virtio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/wmi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/cgroup"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/thermal/tmon"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/tools/thermal"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/kvm/kvm_stat"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/tools/kvm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/iio"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/tools/scripts"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/tools/vm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/pcmcia"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/tools/usb/usbip/vudc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/usb/usbip/libsrc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/usb/usbip/src"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-72/tools/usb/usbip"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/usb/ffs-aio-example/multibuff/host_app"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/tools/usb/ffs-aio-example/multibuff"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/usb/ffs-aio-example/simple/host_app"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/tools/usb/ffs-aio-example/simple"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/tools/usb/ffs-aio-example"}, {"size": 88, "name": "/usr/src/linux-headers-4.15.0-72/tools/usb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/nfsd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/lib/subcmd"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/tools/lib/bpf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/lib/api"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/tools/lib/lockdep"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/tools/lib/traceevent"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-72/tools/lib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/laptop/freefall"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/laptop/dslm"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/tools/laptop"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/tools/hv"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/tools/objtool"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/memory-hotplug"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/breakpoints"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/mqueue"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/ntb"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/gpio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/ftrace"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/drivers/gpu"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/drivers"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/ipc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/timers"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/media_tests"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/sigaltstack"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/ptp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/networking/timestamping"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/networking"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/bpf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/kcmp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/splice"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/kmod"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/android/ion"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/android"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/net"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/size"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/mount"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/efivarfs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/prctl"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/futex/functional"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/futex"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/pstore"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/memfd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/vDSO"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/static_keys"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/sysctl"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/cpu-hotplug"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/ptrace"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/x86"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/firmware"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/membarrier"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/locking"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/vm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/sync"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/intel_pstate"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/seccomp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/user"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/zram"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/capabilities"}, {"size": 104, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/rcutorture/bin"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/rcutorture/configs/rcuperf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/rcutorture/configs/rcu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/rcutorture/configs/lock"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/rcutorture/configs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/rcutorture/formal/srcu-cbmc/tests/store_buffering"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/rcutorture/formal/srcu-cbmc/tests"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/rcutorture/formal/srcu-cbmc"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/rcutorture/formal"}, {"size": 164, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/rcutorture"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/lib"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/cpufreq"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/exec"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/netfilter"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/nsfs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/watchdog"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/filesystems"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/powerpc/alignment"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/powerpc/cache_shape"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/powerpc/benchmarks"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/powerpc/syscalls"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/powerpc/switch_endian"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/powerpc/math"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/powerpc/mm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/powerpc/signal"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/powerpc/pmu/ebb"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/powerpc/pmu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/powerpc/vphn"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/powerpc/stringloops"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/powerpc/primitives"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/powerpc/ptrace"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/powerpc/copyloops"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/powerpc/scripts"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/powerpc/dscr"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/powerpc/tm"}, {"size": 152, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/powerpc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests/ia64"}, {"size": 1052, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/selftests"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/vsock"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/nvdimm/test"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/nvdimm"}, {"size": 108, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/ktest"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/scatterlist"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/radix-tree"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing/fault-injection"}, {"size": 1220, "name": "/usr/src/linux-headers-4.15.0-72/tools/testing"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/tools/pci"}, {"size": 2176, "name": "/usr/src/linux-headers-4.15.0-72/tools"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/sound/spi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/spear"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/generic"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/intel/boards"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/intel/baytrail"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/intel/common"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/intel/haswell"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/intel/atom/sst"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/intel/atom"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/intel/skylake"}, {"size": 80, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/intel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/txx9"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/davinci"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/mxs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/sti"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/dwc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/qcom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/bcm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/stm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/kirkwood"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/tegra"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/img"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/adi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/au1x"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/ux500"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/fsl"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/xtensa"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/sh/rcar"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/sh"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/blackfin"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/cirrus"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/zte"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/omap"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/codecs"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/pxa"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/sirf"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/amd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/mediatek/common"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/mediatek/mt2701"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/mediatek/mt8173"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/mediatek"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/samsung"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/nuc900"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/hisilicon"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/rockchip"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/atmel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/sunxi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc/jz4740"}, {"size": 616, "name": "/usr/src/linux-headers-4.15.0-72/sound/soc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/firewire/oxfw"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/firewire/bebob"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/firewire/tascam"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/firewire/digi00x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/firewire/motu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/firewire/fireworks"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/firewire/dice"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/firewire/fireface"}, {"size": 80, "name": "/usr/src/linux-headers-4.15.0-72/sound/firewire"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/drivers/opl4"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/drivers/pcsp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/drivers/vx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/drivers/mpu401"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/drivers/opl3"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-72/sound/drivers"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/sound/ppc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/i2c/other"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/sound/i2c"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/sound/ac97"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/sound/aoa/fabrics"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/aoa/soundbus/i2sbus"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/sound/aoa/soundbus"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/aoa/core"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/sound/aoa/codecs"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-72/sound/aoa"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/core/seq/oss"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/sound/core/seq"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/core/oss"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-72/sound/core"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/sound/sparc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/isa/cs423x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/isa/es1688"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/isa/opti9xx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/isa/sb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/isa/galaxy"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/isa/gus"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/isa/wavefront"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/isa/ad1816a"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/isa/wss"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/isa/msnd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/isa/ad1848"}, {"size": 112, "name": "/usr/src/linux-headers-4.15.0-72/sound/isa"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/sound/sh"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/sound/mips"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/sound/parisc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/sound/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/synth/emux"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/sound/synth"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/pcmcia/pdaudiocf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/pcmcia/vx"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/sound/pcmcia"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/sound/usb/line6"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/usb/usx2y"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/usb/hiface"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/usb/bcd2000"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/usb/misc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/usb/caiaq"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/usb/6fire"}, {"size": 76, "name": "/usr/src/linux-headers-4.15.0-72/sound/usb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/hda/ext"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/sound/hda"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/sound/oss/dmasound"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/sound/oss"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/sound/atmel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/sound/arm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/pci/korg1212"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/pci/ymfpci"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/pci/nm256"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/pci/aw2"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/pci/ali5451"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/pci/asihpi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/pci/rme9652"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/pci/ice1712"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/pci/lx6464es"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/pci/ac97"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/pci/riptide"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/pci/vx222"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/pci/emu10k1"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/pci/ca0106"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/pci/au88x0"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/pci/cs5535audio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/pci/ctxfi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/pci/trident"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/pci/pcxhr"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/pci/lola"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/pci/echoaudio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/pci/mixart"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/pci/oxygen"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/sound/pci/cs46xx"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/sound/pci/hda"}, {"size": 244, "name": "/usr/src/linux-headers-4.15.0-72/sound/pci"}, {"size": 1524, "name": "/usr/src/linux-headers-4.15.0-72/sound"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/mm/kasan"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/mm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/security/yama"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/security/tomoyo"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/security/integrity/evm"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/security/integrity/ima"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72/security/integrity"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/security/apparmor"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/security/smack"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/security/loadpin"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/security/keys/encrypted-keys"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/security/keys"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/security/selinux"}, {"size": 164, "name": "/usr/src/linux-headers-4.15.0-72/security"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/include/soc/at91"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/include/soc/sa1100"}, {"size": 108, "name": "/usr/src/linux-headers-4.15.0-72/include/soc/tegra"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/include/soc/imx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/include/soc/brcmstb"}, {"size": 88, "name": "/usr/src/linux-headers-4.15.0-72/include/soc/fsl/qe"}, {"size": 144, "name": "/usr/src/linux-headers-4.15.0-72/include/soc/fsl"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/include/soc/nps"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/include/soc/mediatek"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/include/soc/rockchip"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/include/soc/arc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/include/soc/bcm2835"}, {"size": 372, "name": "/usr/src/linux-headers-4.15.0-72/include/soc"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/include/uapi/rdma/hfi"}, {"size": 168, "name": "/usr/src/linux-headers-4.15.0-72/include/uapi/rdma"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/include/uapi/mtd"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/include/uapi/linux/spi"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/include/uapi/linux/wimax"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/include/uapi/linux/hdlc"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/include/uapi/linux/raid"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/include/uapi/linux/cifs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/include/uapi/linux/sched"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72/include/uapi/linux/can"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-72/include/uapi/linux/netfilter_ipv4"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/include/uapi/linux/sunrpc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/include/uapi/linux/hsi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/include/uapi/linux/byteorder"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/include/uapi/linux/android"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-72/include/uapi/linux/tc_act"}, {"size": 88, "name": "/usr/src/linux-headers-4.15.0-72/include/uapi/linux/dvb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/include/uapi/linux/iio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/include/uapi/linux/mmc"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/include/uapi/linux/netfilter_arp"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/include/uapi/linux/genwqe"}, {"size": 144, "name": "/usr/src/linux-headers-4.15.0-72/include/uapi/linux/usb"}, {"size": 80, "name": "/usr/src/linux-headers-4.15.0-72/include/uapi/linux/netfilter_bridge"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/include/uapi/linux/nfsd"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/include/uapi/linux/tc_ematch"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/include/uapi/linux/caif"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/include/uapi/linux/netfilter/ipset"}, {"size": 428, "name": "/usr/src/linux-headers-4.15.0-72/include/uapi/linux/netfilter"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-72/include/uapi/linux/netfilter_ipv6"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/include/uapi/linux/isdn"}, {"size": 5280, "name": "/usr/src/linux-headers-4.15.0-72/include/uapi/linux"}, {"size": 204, "name": "/usr/src/linux-headers-4.15.0-72/include/uapi/asm-generic"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/include/uapi/video"}, {"size": 204, "name": "/usr/src/linux-headers-4.15.0-72/include/uapi/sound"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/include/uapi/xen"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-72/include/uapi/scsi/fc"}, {"size": 96, "name": "/usr/src/linux-headers-4.15.0-72/include/uapi/scsi"}, {"size": 396, "name": "/usr/src/linux-headers-4.15.0-72/include/uapi/drm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/include/uapi/misc"}, {"size": 6456, "name": "/usr/src/linux-headers-4.15.0-72/include/uapi"}, {"size": 448, "name": "/usr/src/linux-headers-4.15.0-72/include/rdma"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/include/memory"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/include/ras"}, {"size": 196, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/spi"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/wimax"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/soc/ti"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/soc/qcom"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/soc/actions"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/soc/dove"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/soc/brcmstb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/soc/renesas"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/soc/mediatek"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/soc/samsung"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/soc/sunxi"}, {"size": 152, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/soc"}, {"size": 88, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/power"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/perf"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/rtc"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/gpio"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/raid"}, {"size": 344, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/mlx5"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/avf"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/crush"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/pinctrl"}, {"size": 172, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/regulator"}, {"size": 144, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/sched"}, {"size": 272, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/mtd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/reset"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/can/platform"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/can/dev"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/can"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/netfilter_ipv4"}, {"size": 228, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/sunrpc"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/hsi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/i2c"}, {"size": 96, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/mlx4"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/byteorder"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/dsa"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/extcon"}, {"size": 104, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/input"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/mux"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/phy/tegra"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/phy"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/platform_data/x86"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/platform_data/media"}, {"size": 1084, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/platform_data"}, {"size": 100, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/bcma"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/fsl/bestcomm"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/fsl"}, {"size": 100, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/irqchip"}, {"size": 80, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/amba"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/fpga"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/ulpi"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/uwb"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/unaligned"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/mfd/da9062"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/mfd/mt6323"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/mfd/da9063"}, {"size": 212, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/mfd/wm831x"}, {"size": 500, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/mfd/arizona"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/mfd/da9150"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/mfd/da9055"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/mfd/mt6397"}, {"size": 308, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/mfd/wm8994"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/mfd/pcf50633"}, {"size": 132, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/mfd/wm8350"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/mfd/syscon"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/mfd/da9052"}, {"size": 68, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/mfd/samsung"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/mfd/abx500"}, {"size": 2988, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/mfd"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/clk"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/iio/frequency"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/iio/common"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/iio/adc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/iio/magnetometer"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/iio/gyro"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/iio/timer"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/iio/accel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/iio/imu"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/iio/dac"}, {"size": 268, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/iio"}, {"size": 108, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/mmc"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/dma"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/firmware/meson"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/firmware"}, {"size": 280, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/qed"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/decompress"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/rpmsg"}, {"size": 132, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/ssb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/netfilter_arp"}, {"size": 476, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/usb"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/netfilter_bridge"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/netfilter/ipset"}, {"size": 200, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/netfilter"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/lockd"}, {"size": 192, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/ceph"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/remoteproc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/netfilter_ipv6"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/isdn"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/include/linux/mailbox"}, {"size": 19528, "name": "/usr/src/linux-headers-4.15.0-72/include/linux"}, {"size": 92, "name": "/usr/src/linux-headers-4.15.0-72/include/asm-generic/bitops"}, {"size": 708, "name": "/usr/src/linux-headers-4.15.0-72/include/asm-generic"}, {"size": 580, "name": "/usr/src/linux-headers-4.15.0-72/include/video"}, {"size": 872, "name": "/usr/src/linux-headers-4.15.0-72/include/trace/events"}, {"size": 912, "name": "/usr/src/linux-headers-4.15.0-72/include/trace"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/include/dt-bindings/soc"}, {"size": 104, "name": "/usr/src/linux-headers-4.15.0-72/include/dt-bindings/power"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/include/dt-bindings/gpio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/include/dt-bindings/spmi"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/include/dt-bindings/interrupt-controller"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/include/dt-bindings/memory"}, {"size": 136, "name": "/usr/src/linux-headers-4.15.0-72/include/dt-bindings/pinctrl"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/include/dt-bindings/regulator"}, {"size": 228, "name": "/usr/src/linux-headers-4.15.0-72/include/dt-bindings/reset"}, {"size": 1164, "name": "/usr/src/linux-headers-4.15.0-72/include/dt-bindings/clock"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/include/dt-bindings/i2c"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/include/dt-bindings/net"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/include/dt-bindings/sound"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/include/dt-bindings/leds"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/include/dt-bindings/input"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/include/dt-bindings/mux"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/include/dt-bindings/phy"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/include/dt-bindings/display"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/include/dt-bindings/thermal"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/include/dt-bindings/mips"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-72/include/dt-bindings/mfd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/include/dt-bindings/clk"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/include/dt-bindings/iio/adc"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/include/dt-bindings/iio"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/include/dt-bindings/dma"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/include/dt-bindings/arm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/include/dt-bindings/pwm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/include/dt-bindings/mailbox"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/include/dt-bindings/media"}, {"size": 2068, "name": "/usr/src/linux-headers-4.15.0-72/include/dt-bindings"}, {"size": 120, "name": "/usr/src/linux-headers-4.15.0-72/include/math-emu"}, {"size": 76, "name": "/usr/src/linux-headers-4.15.0-72/include/net/nfc"}, {"size": 176, "name": "/usr/src/linux-headers-4.15.0-72/include/net/bluetooth"}, {"size": 168, "name": "/usr/src/linux-headers-4.15.0-72/include/net/sctp"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/include/net/iucv"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-72/include/net/tc_act"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72/include/net/9p"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/include/net/phonet"}, {"size": 76, "name": "/usr/src/linux-headers-4.15.0-72/include/net/caif"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/include/net/netfilter/ipv4"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/include/net/netfilter/ipv6"}, {"size": 272, "name": "/usr/src/linux-headers-4.15.0-72/include/net/netfilter"}, {"size": 80, "name": "/usr/src/linux-headers-4.15.0-72/include/net/netns"}, {"size": 3064, "name": "/usr/src/linux-headers-4.15.0-72/include/net"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/include/sound/ac97"}, {"size": 1188, "name": "/usr/src/linux-headers-4.15.0-72/include/sound"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/include/clocksource"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/include/xen/interface/hvm"}, {"size": 228, "name": "/usr/src/linux-headers-4.15.0-72/include/xen/interface/io"}, {"size": 432, "name": "/usr/src/linux-headers-4.15.0-72/include/xen/interface"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/include/xen/arm"}, {"size": 544, "name": "/usr/src/linux-headers-4.15.0-72/include/xen"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-72/include/crypto/internal"}, {"size": 392, "name": "/usr/src/linux-headers-4.15.0-72/include/crypto"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-72/include/scsi/fc"}, {"size": 580, "name": "/usr/src/linux-headers-4.15.0-72/include/scsi"}, {"size": 120, "name": "/usr/src/linux-headers-4.15.0-72/include/drm/ttm"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/include/drm/i2c"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/include/drm/bridge"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/include/drm/tinydrm"}, {"size": 1008, "name": "/usr/src/linux-headers-4.15.0-72/include/drm"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/include/misc"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/include/kvm"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-72/include/target/iscsi"}, {"size": 96, "name": "/usr/src/linux-headers-4.15.0-72/include/target"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/include/acpi/platform"}, {"size": 476, "name": "/usr/src/linux-headers-4.15.0-72/include/acpi"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-72/include/pcmcia"}, {"size": 92, "name": "/usr/src/linux-headers-4.15.0-72/include/media/davinci"}, {"size": 216, "name": "/usr/src/linux-headers-4.15.0-72/include/media/i2c"}, {"size": 96, "name": "/usr/src/linux-headers-4.15.0-72/include/media/drv-intf"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/include/media/blackfin"}, {"size": 988, "name": "/usr/src/linux-headers-4.15.0-72/include/media"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-72/include/keys"}, {"size": 39780, "name": "/usr/src/linux-headers-4.15.0-72/include"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/crypto/async_tx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/crypto/asymmetric_keys"}, {"size": 88, "name": "/usr/src/linux-headers-4.15.0-72/crypto"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/kernel/power"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/kernel/irq"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/kernel/printk"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/kernel/sched"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/kernel/livepatch"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/kernel/bpf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/kernel/events"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/kernel/trace"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/kernel/time"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/kernel/cgroup"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/kernel/debug/kdb"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/kernel/debug"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/kernel/locking"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/kernel/rcu"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/kernel/gcov"}, {"size": 220, "name": "/usr/src/linux-headers-4.15.0-72/kernel"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/block/partitions"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72/block"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/certs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/firmware"}, {"size": 156, "name": "/usr/src/linux-headers-4.15.0-72/scripts/mod"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/scripts/ksymoops"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/scripts/package"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/scripts/coccinelle/iterators"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/scripts/coccinelle/locks"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/scripts/coccinelle/api/alloc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/scripts/coccinelle/api/debugfs"}, {"size": 88, "name": "/usr/src/linux-headers-4.15.0-72/scripts/coccinelle/api"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/scripts/coccinelle/tests"}, {"size": 76, "name": "/usr/src/linux-headers-4.15.0-72/scripts/coccinelle/misc"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/scripts/coccinelle/null"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/scripts/coccinelle/free"}, {"size": 288, "name": "/usr/src/linux-headers-4.15.0-72/scripts/coccinelle"}, {"size": 208, "name": "/usr/src/linux-headers-4.15.0-72/scripts/genksyms"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/scripts/basic"}, {"size": 136, "name": "/usr/src/linux-headers-4.15.0-72/scripts/gcc-plugins"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/scripts/tracing"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-72/scripts/gdb/linux"}, {"size": 84, "name": "/usr/src/linux-headers-4.15.0-72/scripts/gdb"}, {"size": 92, "name": "/usr/src/linux-headers-4.15.0-72/scripts/kconfig/lxdialog"}, {"size": 692, "name": "/usr/src/linux-headers-4.15.0-72/scripts/kconfig"}, {"size": 188, "name": "/usr/src/linux-headers-4.15.0-72/scripts/dtc/libfdt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72/scripts/dtc/include-prefixes"}, {"size": 620, "name": "/usr/src/linux-headers-4.15.0-72/scripts/dtc"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/scripts/selinux/genheaders"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/scripts/selinux/mdp"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-72/scripts/selinux"}, {"size": 3560, "name": "/usr/src/linux-headers-4.15.0-72/scripts"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/m32r/oprofile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/m32r/mm"}, {"size": 136, "name": "/usr/src/linux-headers-4.15.0-72/arch/m32r/include/uapi/asm"}, {"size": 140, "name": "/usr/src/linux-headers-4.15.0-72/arch/m32r/include/uapi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/m32r/include/asm/mappi2"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/arch/m32r/include/asm/m32700ut"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/m32r/include/asm/mappi3"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/arch/m32r/include/asm/opsput"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/m32r/include/asm/m32104ut"}, {"size": 500, "name": "/usr/src/linux-headers-4.15.0-72/arch/m32r/include/asm"}, {"size": 644, "name": "/usr/src/linux-headers-4.15.0-72/arch/m32r/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/m32r/kernel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/m32r/boot/compressed"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/arch/m32r/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/m32r/lib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/m32r/platforms/mappi2"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/m32r/platforms/oaks32r"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/m32r/platforms/m32700ut"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/m32r/platforms/mappi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/m32r/platforms/mappi3"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/m32r/platforms/opsput"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/m32r/platforms/usrv"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/m32r/platforms/m32104ut"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-72/arch/m32r/platforms"}, {"size": 792, "name": "/usr/src/linux-headers-4.15.0-72/arch/m32r"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/mm"}, {"size": 108, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/include/uapi/asm"}, {"size": 316, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/include/uapi/arch-v10/arch"}, {"size": 320, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/include/uapi/arch-v10"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/include/uapi/arch-v32/arch"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/include/uapi/arch-v32"}, {"size": 448, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/include/uapi"}, {"size": 208, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/include/asm"}, {"size": 124, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/include/arch-v10/arch"}, {"size": 128, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/include/arch-v10"}, {"size": 128, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/include/arch-v32/mach-a3/mach/hwregs/asm"}, {"size": 212, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/include/arch-v32/mach-a3/mach/hwregs/iop/asm"}, {"size": 324, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/include/arch-v32/mach-a3/mach/hwregs/iop"}, {"size": 604, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/include/arch-v32/mach-a3/mach/hwregs"}, {"size": 628, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/include/arch-v32/mach-a3/mach"}, {"size": 632, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/include/arch-v32/mach-a3"}, {"size": 276, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/include/arch-v32/arch/hwregs/asm"}, {"size": 492, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/include/arch-v32/arch/hwregs/iop/asm"}, {"size": 816, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/include/arch-v32/arch/hwregs/iop"}, {"size": 1288, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/include/arch-v32/arch/hwregs"}, {"size": 1412, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/include/arch-v32/arch"}, {"size": 88, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/include/arch-v32/mach-fs/mach/hwregs/asm"}, {"size": 216, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/include/arch-v32/mach-fs/mach/hwregs"}, {"size": 240, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/include/arch-v32/mach-fs/mach"}, {"size": 244, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/include/arch-v32/mach-fs"}, {"size": 2292, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/include/arch-v32"}, {"size": 3080, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/include"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/arch-v10/drivers"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/arch-v10/mm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/arch-v10/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/arch-v10/lib"}, {"size": 68, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/arch-v10"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/arch-v32/drivers/mach-a3"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/arch-v32/drivers/mach-fs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/arch-v32/drivers/pci"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/arch-v32/drivers"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/arch-v32/mach-a3"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/arch-v32/mm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/arch-v32/kernel"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/arch-v32/mach-fs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/arch-v32/lib"}, {"size": 108, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/arch-v32"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/boot/compressed"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/boot/rescue"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/boot/dts"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris/boot"}, {"size": 3348, "name": "/usr/src/linux-headers-4.15.0-72/arch/cris"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/h8300/mm"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/arch/h8300/include/uapi/asm"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/arch/h8300/include/uapi"}, {"size": 136, "name": "/usr/src/linux-headers-4.15.0-72/arch/h8300/include/asm"}, {"size": 176, "name": "/usr/src/linux-headers-4.15.0-72/arch/h8300/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/h8300/kernel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/h8300/boot/compressed"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/h8300/boot/dts"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/arch/h8300/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/h8300/lib"}, {"size": 244, "name": "/usr/src/linux-headers-4.15.0-72/arch/h8300"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/metag/oprofile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/metag/tbx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/metag/mm"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/arch/metag/include/uapi/asm"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72/arch/metag/include/uapi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/metag/include/asm/mach"}, {"size": 488, "name": "/usr/src/linux-headers-4.15.0-72/arch/metag/include/asm"}, {"size": 532, "name": "/usr/src/linux-headers-4.15.0-72/arch/metag/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/metag/kernel/perf"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/metag/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/metag/boot/dts"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/metag/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/metag/lib"}, {"size": 624, "name": "/usr/src/linux-headers-4.15.0-72/arch/metag"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/tile/gxio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/tile/mm"}, {"size": 68, "name": "/usr/src/linux-headers-4.15.0-72/arch/tile/include/uapi/asm"}, {"size": 204, "name": "/usr/src/linux-headers-4.15.0-72/arch/tile/include/uapi/arch"}, {"size": 276, "name": "/usr/src/linux-headers-4.15.0-72/arch/tile/include/uapi"}, {"size": 148, "name": "/usr/src/linux-headers-4.15.0-72/arch/tile/include/gxio"}, {"size": 504, "name": "/usr/src/linux-headers-4.15.0-72/arch/tile/include/asm"}, {"size": 124, "name": "/usr/src/linux-headers-4.15.0-72/arch/tile/include/arch"}, {"size": 340, "name": "/usr/src/linux-headers-4.15.0-72/arch/tile/include/hv"}, {"size": 1396, "name": "/usr/src/linux-headers-4.15.0-72/arch/tile/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/tile/kernel/vdso"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/tile/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/tile/kvm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/tile/lib"}, {"size": 1480, "name": "/usr/src/linux-headers-4.15.0-72/arch/tile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/s390/oprofile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/s390/net"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/s390/tools"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/s390/mm"}, {"size": 252, "name": "/usr/src/linux-headers-4.15.0-72/arch/s390/include/uapi/asm"}, {"size": 256, "name": "/usr/src/linux-headers-4.15.0-72/arch/s390/include/uapi"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/s390/include/asm/trace"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/s390/include/asm/fpu"}, {"size": 860, "name": "/usr/src/linux-headers-4.15.0-72/arch/s390/include/asm"}, {"size": 1120, "name": "/usr/src/linux-headers-4.15.0-72/arch/s390/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/s390/hypfs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/s390/crypto"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/s390/kernel/vdso64"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/s390/kernel/vdso32"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/arch/s390/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/s390/appldata"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/s390/numa"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/s390/kvm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/s390/boot/compressed"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/arch/s390/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/s390/lib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/s390/pci"}, {"size": 1304, "name": "/usr/src/linux-headers-4.15.0-72/arch/s390"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/microblaze/oprofile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/microblaze/mm"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-72/arch/microblaze/include/uapi/asm"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-72/arch/microblaze/include/uapi"}, {"size": 292, "name": "/usr/src/linux-headers-4.15.0-72/arch/microblaze/include/asm"}, {"size": 356, "name": "/usr/src/linux-headers-4.15.0-72/arch/microblaze/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/microblaze/kernel/cpu"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/microblaze/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/microblaze/boot/dts"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/microblaze/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/microblaze/lib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/microblaze/pci"}, {"size": 444, "name": "/usr/src/linux-headers-4.15.0-72/arch/microblaze"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/unicore32/mm"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/arch/unicore32/include/uapi/asm"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/arch/unicore32/include/uapi"}, {"size": 116, "name": "/usr/src/linux-headers-4.15.0-72/arch/unicore32/include/mach"}, {"size": 200, "name": "/usr/src/linux-headers-4.15.0-72/arch/unicore32/include/asm"}, {"size": 348, "name": "/usr/src/linux-headers-4.15.0-72/arch/unicore32/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/unicore32/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/unicore32/boot/compressed"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/unicore32/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/unicore32/lib"}, {"size": 412, "name": "/usr/src/linux-headers-4.15.0-72/arch/unicore32"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/score/mm"}, {"size": 128, "name": "/usr/src/linux-headers-4.15.0-72/arch/score/include/uapi/asm"}, {"size": 132, "name": "/usr/src/linux-headers-4.15.0-72/arch/score/include/uapi"}, {"size": 256, "name": "/usr/src/linux-headers-4.15.0-72/arch/score/include/asm"}, {"size": 392, "name": "/usr/src/linux-headers-4.15.0-72/arch/score/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/score/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/score/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/score/lib"}, {"size": 440, "name": "/usr/src/linux-headers-4.15.0-72/arch/score"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/net"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/mm"}, {"size": 100, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/include/uapi/asm"}, {"size": 104, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/include/uapi"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/include/asm/xen"}, {"size": 908, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/include/asm"}, {"size": 1016, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/xen"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/crypto"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/kernel/vdso"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/kernel/probes"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/kvm/hyp"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/kvm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/altera"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/al"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/apm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/qcom"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/actions"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/exynos"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/allwinner"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/broadcom/stingray"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/broadcom/northstar2"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/broadcom"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/sprd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/zte"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/socionext"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/freescale"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/renesas"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/realtek"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/nvidia"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/amd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/marvell"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/mediatek"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/amlogic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/hisilicon"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/rockchip"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/cavium"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/arm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/lg"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/xilinx"}, {"size": 224, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts"}, {"size": 236, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64/lib"}, {"size": 1436, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm64"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mn10300/oprofile"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/arch/mn10300/proc-mn103e010/include/proc"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/arch/mn10300/proc-mn103e010/include"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-72/arch/mn10300/proc-mn103e010"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72/arch/mn10300/unit-asb2364/include/unit"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-72/arch/mn10300/unit-asb2364/include"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-72/arch/mn10300/unit-asb2364"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/arch/mn10300/unit-asb2305/include/unit"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/arch/mn10300/unit-asb2305/include"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/arch/mn10300/unit-asb2305"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/mn10300/mm"}, {"size": 140, "name": "/usr/src/linux-headers-4.15.0-72/arch/mn10300/include/uapi/asm"}, {"size": 144, "name": "/usr/src/linux-headers-4.15.0-72/arch/mn10300/include/uapi"}, {"size": 464, "name": "/usr/src/linux-headers-4.15.0-72/arch/mn10300/include/asm"}, {"size": 612, "name": "/usr/src/linux-headers-4.15.0-72/arch/mn10300/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mn10300/kernel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/mn10300/boot/compressed"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/arch/mn10300/boot"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-72/arch/mn10300/proc-mn2ws0050/include/proc"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/arch/mn10300/proc-mn2ws0050/include"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-72/arch/mn10300/proc-mn2ws0050"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mn10300/lib"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/arch/mn10300/unit-asb2303/include/unit"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/arch/mn10300/unit-asb2303/include"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72/arch/mn10300/unit-asb2303"}, {"size": 928, "name": "/usr/src/linux-headers-4.15.0-72/arch/mn10300"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/hexagon/mm"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-72/arch/hexagon/include/uapi/asm"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-72/arch/hexagon/include/uapi"}, {"size": 248, "name": "/usr/src/linux-headers-4.15.0-72/arch/hexagon/include/asm"}, {"size": 316, "name": "/usr/src/linux-headers-4.15.0-72/arch/hexagon/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/hexagon/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/hexagon/lib"}, {"size": 352, "name": "/usr/src/linux-headers-4.15.0-72/arch/hexagon"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sparc/oprofile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sparc/power"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/sparc/vdso"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sparc/prom"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sparc/math-emu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sparc/net"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sparc/mm"}, {"size": 264, "name": "/usr/src/linux-headers-4.15.0-72/arch/sparc/include/uapi/asm"}, {"size": 268, "name": "/usr/src/linux-headers-4.15.0-72/arch/sparc/include/uapi"}, {"size": 1416, "name": "/usr/src/linux-headers-4.15.0-72/arch/sparc/include/asm"}, {"size": 1688, "name": "/usr/src/linux-headers-4.15.0-72/arch/sparc/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sparc/crypto"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sparc/kernel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/sparc/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sparc/lib"}, {"size": 1816, "name": "/usr/src/linux-headers-4.15.0-72/arch/sparc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/oprofile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/mm"}, {"size": 128, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/include/uapi/asm"}, {"size": 132, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/include/uapi"}, {"size": 364, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/include/asm"}, {"size": 500, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/include"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/variants/dc233c/include/variant"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/variants/dc233c/include"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/variants/dc233c"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/variants/fsf/include/variant"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/variants/fsf/include"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/variants/fsf"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/variants/test_kc705_hifi/include/variant"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/variants/test_kc705_hifi/include"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/variants/test_kc705_hifi"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/variants/test_mmuhifi_c3/include/variant"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/variants/test_mmuhifi_c3/include"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/variants/test_mmuhifi_c3"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/variants/dc232b/include/variant"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/variants/dc232b/include"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/variants/dc232b"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/variants/csp/include/variant"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/variants/csp/include"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/variants/csp"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/variants/de212/include/variant"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/variants/de212/include"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/variants/de212"}, {"size": 372, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/variants"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/boot/boot-redboot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/boot/boot-elf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/boot/lib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/boot/dts"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/lib"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/platforms/xtfpga/include/platform"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/platforms/xtfpga/include"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/platforms/xtfpga"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/platforms/iss/include/platform"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/platforms/iss/include"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/platforms/iss"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/platforms/xt2000/include/platform"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/platforms/xt2000/include"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/platforms/xt2000"}, {"size": 84, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa/platforms"}, {"size": 1060, "name": "/usr/src/linux-headers-4.15.0-72/arch/xtensa"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/oprofile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/lib64"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/cchips/hd6446x"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/cchips"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-microdev"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-highlander"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-kfr2r09"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-sdk7786"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-se/770x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-se/7343"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-se/7206"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-se/7724"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-se/7722"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-se/7721"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-se/7751"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-se/7780"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-se"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-rsk"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-dreamcast"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-landisk"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-sdk7780"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-migor"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-cayman"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-ap325rxa"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-sh7763rdp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-ecovec24"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-hp6xx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-x3proto"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-r2d"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-lboxre2"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-sh03"}, {"size": 256, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/boards"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/drivers/superhyway"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/drivers/dma"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/drivers/pci"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/drivers"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/math-emu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/tools"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/mm"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/include/cpu-sh5/cpu"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/include/cpu-sh5"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/include/mach-kfr2r09/mach"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/include/mach-kfr2r09"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/include/mach-sdk7786/mach"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/include/mach-sdk7786"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/include/mach-se/mach"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/include/mach-se"}, {"size": 116, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/include/uapi/asm"}, {"size": 120, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/include/uapi"}, {"size": 124, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/include/cpu-sh4/cpu"}, {"size": 128, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/include/cpu-sh4"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/include/cpu-sh3/cpu"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/include/cpu-sh3"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/include/mach-dreamcast/mach"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/include/mach-dreamcast"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/include/mach-landisk/mach"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/include/mach-landisk"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/include/cpu-sh2/cpu"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/include/cpu-sh2"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/include/mach-migor/mach"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/include/mach-migor"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/include/cpu-sh2a/cpu"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/include/cpu-sh2a"}, {"size": 748, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/include/asm"}, {"size": 76, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/include/mach-common/mach"}, {"size": 80, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/include/mach-common"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/include/mach-ecovec24/mach"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/include/mach-ecovec24"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/include/cpu-sh4a/cpu"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/include/cpu-sh4a"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/include/cpu-common/cpu"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/include/cpu-common"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/include/mach-x3proto/mach"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/include/mach-x3proto"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/include/mach-sh03/mach"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/include/mach-sh03"}, {"size": 1476, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/kernel/vsyscall"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/kernel/cpu/irq"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/kernel/cpu/sh4a"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/kernel/cpu/sh3"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/kernel/cpu/sh4"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/kernel/cpu/shmobile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/kernel/cpu/sh5"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/kernel/cpu/sh2a"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/kernel/cpu/sh2"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/kernel/cpu"}, {"size": 88, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/kernel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/boot/compressed"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/boot/romimage"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/boot/dts"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh/lib"}, {"size": 2016, "name": "/usr/src/linux-headers-4.15.0-72/arch/sh"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/oprofile"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf609/boards"}, {"size": 616, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf609/include/mach"}, {"size": 620, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf609/include"}, {"size": 668, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf609"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf538/boards"}, {"size": 340, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf538/include/mach"}, {"size": 344, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf538/include"}, {"size": 368, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf538"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf548/boards"}, {"size": 868, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf548/include/mach"}, {"size": 872, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf548/include"}, {"size": 900, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf548"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf533/boards"}, {"size": 160, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf533/include/mach"}, {"size": 164, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf533/include"}, {"size": 188, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf533"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf561/boards"}, {"size": 276, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf561/include/mach"}, {"size": 280, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf561/include"}, {"size": 304, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf561"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/mm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf518/boards"}, {"size": 280, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf518/include/mach"}, {"size": 284, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf518/include"}, {"size": 312, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf518"}, {"size": 84, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/include/uapi/asm"}, {"size": 88, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/include/uapi"}, {"size": 608, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/include/asm"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/include/mach-common"}, {"size": 752, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-common"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/kernel/cplb-nompu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/kernel/cplb-mpu"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/kernel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf527/boards"}, {"size": 344, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf527/include/mach"}, {"size": 348, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf527/include"}, {"size": 376, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf527"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/boot"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf537/boards"}, {"size": 348, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf537/include/mach"}, {"size": 352, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf537/include"}, {"size": 376, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf537"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin/lib"}, {"size": 4372, "name": "/usr/src/linux-headers-4.15.0-72/arch/blackfin"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/oprofile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/power"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/vdso"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/loongson32/common"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/loongson32/ls1b"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/loongson32/ls1c"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/loongson32"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/generic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/fw/sni"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/fw/cfe"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/fw/lib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/fw/arc"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/fw"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/ath79"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/txx9/rbtx4938"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/txx9/generic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/txx9/rbtx4939"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/txx9/rbtx4927"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/txx9/jmr3927"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/txx9"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/bcm63xx/boards"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/bcm63xx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/emma/common"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/emma/markeins"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/emma"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/jazz"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/cavium-octeon/crypto"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/cavium-octeon/executive"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/cavium-octeon"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/pnx833x/stb22x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/pnx833x/common"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/pnx833x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/sgi-ip22"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/lantiq/falcon"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/lantiq/xway"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/lantiq"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/mti-malta"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/rb532"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/sni"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/math-emu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/net"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/tools"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/mm"}, {"size": 264, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/uapi/asm"}, {"size": 268, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/uapi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/fw/cfe"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/fw/arc"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/fw"}, {"size": 116, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/sn/sn0"}, {"size": 256, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/sn"}, {"size": 124, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/txx9"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/emma"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-db1x00"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-vr41xx"}, {"size": 156, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-au1x00"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-jz4740"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-ar7"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-ralink/rt3883"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-ralink/mt7620"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-ralink/rt305x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-ralink/rt288x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-ralink/mt7621"}, {"size": 92, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-ralink"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-xilfpga"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-lasat"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-generic"}, {"size": 192, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-bcm63xx"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-bcm47xx"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-cobalt"}, {"size": 104, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-pmcs-msp71xx"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-netlogic"}, {"size": 2300, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/octeon"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-bmips"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-jazz"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-dec"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-ip32"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-ip22"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-malta"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-emma2rh"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/xtalk"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-ath25"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-ip27"}, {"size": 80, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/dec"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-sibyte"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/ip32"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-loongson32"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-tx39xx"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-paravirt"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mips-boards"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-ath79"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-tx49xx"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/vr41xx"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-pnx833x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-pistachio"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-pic32"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-rm"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/sgi"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/lasat"}, {"size": 68, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/netlogic/xlp-hal"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/netlogic/xlr"}, {"size": 160, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/netlogic"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-lantiq/falcon"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-lantiq/xway"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-lantiq"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-cavium-octeon"}, {"size": 408, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/sibyte"}, {"size": 80, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-rc32434"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-ip28"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/pci"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-loongson64/cs5536"}, {"size": 104, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-loongson64"}, {"size": 6492, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include/asm"}, {"size": 6764, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/alchemy/common"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/alchemy/devboards"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/alchemy"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/paravirt"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/bcm47xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/cobalt"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/loongson64/common/cs5536"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/loongson64/common"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/loongson64/loongson-3"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/loongson64/lemote-2f"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/loongson64/fuloong-2e"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/loongson64"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/dec/prom"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/dec"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/ath25"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/kvm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/sgi-ip32"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/boot/compressed"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/boot/tools"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/boot/dts/cavium-octeon"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/boot/dts/lantiq"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/boot/dts/qca"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/boot/dts/ni"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/boot/dts/xilfpga"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/boot/dts/ingenic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/boot/dts/img"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/boot/dts/brcm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/boot/dts/pic32"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/boot/dts/ralink"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/boot/dts/netlogic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/boot/dts/mti"}, {"size": 104, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/boot/dts"}, {"size": 136, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/pic32/common"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/pic32/pic32mzda"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/pic32"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/bmips"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/vr41xx/common"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/vr41xx/casio-e55"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/vr41xx/ibm-workpad"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/vr41xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/sgi-ip27"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/pmcs-msp71xx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/lib"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/pistachio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/lasat/image"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/lasat"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/ralink"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/netlogic/xlr"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/netlogic/common"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/netlogic/xlp"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/netlogic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/sibyte/swarm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/sibyte/common"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/sibyte/bcm1480"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/sibyte/sb1250"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/sibyte"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/pci"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/jz4740"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips/ar7"}, {"size": 7832, "name": "/usr/src/linux-headers-4.15.0-72/arch/mips"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/parisc/oprofile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/parisc/math-emu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/parisc/mm"}, {"size": 160, "name": "/usr/src/linux-headers-4.15.0-72/arch/parisc/include/uapi/asm"}, {"size": 164, "name": "/usr/src/linux-headers-4.15.0-72/arch/parisc/include/uapi"}, {"size": 528, "name": "/usr/src/linux-headers-4.15.0-72/arch/parisc/include/asm"}, {"size": 696, "name": "/usr/src/linux-headers-4.15.0-72/arch/parisc/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/parisc/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/parisc/boot/compressed"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/arch/parisc/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/parisc/lib"}, {"size": 788, "name": "/usr/src/linux-headers-4.15.0-72/arch/parisc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/hyperv"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/ia32"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/oprofile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/power"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/purgatory"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/ras"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/platform/ts5500"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/platform/intel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/platform/ce4100"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/platform/scx200"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/platform/goldfish"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/platform/intel-mid/device_libs"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/platform/intel-mid"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/platform/efi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/platform/geode"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/platform/iris"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/platform/olpc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/platform/uv"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/platform/atom"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/platform/intel-quark"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/platform/sfi"}, {"size": 128, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/platform"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/events/intel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/events/amd"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/events"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/video"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/math-emu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/net"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/tools"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/mm"}, {"size": 288, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/include/uapi/asm"}, {"size": 292, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/include/uapi"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/include/asm/trace"}, {"size": 96, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/include/asm/xen"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/include/asm/crypto"}, {"size": 272, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/include/asm/uv"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/include/asm/fpu"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/include/asm/numachip"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/include/asm/e820"}, {"size": 2444, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/include/asm"}, {"size": 2740, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/include"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/xen"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/crypto/sha1-mb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/crypto/sha256-mb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/crypto/sha512-mb"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/crypto"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/kernel/kprobes"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/kernel/apic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/kernel/acpi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/kernel/cpu/mcheck"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/kernel/cpu/mtrr"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/kernel/cpu/microcode"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/kernel/cpu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/kernel/fpu"}, {"size": 80, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/realmode/rm"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/realmode"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/kvm"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/entry/vdso"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/entry/vsyscall"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/entry/syscalls"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/entry"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/boot/compressed"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/boot"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/um/vdso"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/um/os-Linux"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/um"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/lib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86/pci"}, {"size": 3428, "name": "/usr/src/linux-headers-4.15.0-72/arch/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/riscv/mm"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/arch/riscv/include/uapi/asm"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-72/arch/riscv/include/uapi"}, {"size": 244, "name": "/usr/src/linux-headers-4.15.0-72/arch/riscv/include/asm"}, {"size": 300, "name": "/usr/src/linux-headers-4.15.0-72/arch/riscv/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/riscv/kernel/vdso"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/riscv/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/riscv/lib"}, {"size": 348, "name": "/usr/src/linux-headers-4.15.0-72/arch/riscv"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/openrisc/mm"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/arch/openrisc/include/uapi/asm"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/arch/openrisc/include/uapi"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/arch/openrisc/include/asm/bitops"}, {"size": 228, "name": "/usr/src/linux-headers-4.15.0-72/arch/openrisc/include/asm"}, {"size": 268, "name": "/usr/src/linux-headers-4.15.0-72/arch/openrisc/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/openrisc/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/openrisc/boot/dts"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/openrisc/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/openrisc/lib"}, {"size": 320, "name": "/usr/src/linux-headers-4.15.0-72/arch/openrisc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/frv/mm"}, {"size": 152, "name": "/usr/src/linux-headers-4.15.0-72/arch/frv/include/uapi/asm"}, {"size": 156, "name": "/usr/src/linux-headers-4.15.0-72/arch/frv/include/uapi"}, {"size": 456, "name": "/usr/src/linux-headers-4.15.0-72/arch/frv/include/asm"}, {"size": 616, "name": "/usr/src/linux-headers-4.15.0-72/arch/frv/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/frv/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/frv/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/frv/lib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/frv/mb93090-mb00"}, {"size": 680, "name": "/usr/src/linux-headers-4.15.0-72/arch/frv"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/alpha/oprofile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/alpha/math-emu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/alpha/mm"}, {"size": 200, "name": "/usr/src/linux-headers-4.15.0-72/arch/alpha/include/uapi/asm"}, {"size": 204, "name": "/usr/src/linux-headers-4.15.0-72/arch/alpha/include/uapi"}, {"size": 652, "name": "/usr/src/linux-headers-4.15.0-72/arch/alpha/include/asm"}, {"size": 860, "name": "/usr/src/linux-headers-4.15.0-72/arch/alpha/include"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/alpha/kernel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/alpha/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/alpha/lib"}, {"size": 952, "name": "/usr/src/linux-headers-4.15.0-72/arch/alpha"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/um/os-Linux/drivers"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/um/os-Linux/skas"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/arch/um/os-Linux"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/um/drivers"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/um/include/shared/skas"}, {"size": 120, "name": "/usr/src/linux-headers-4.15.0-72/arch/um/include/shared"}, {"size": 148, "name": "/usr/src/linux-headers-4.15.0-72/arch/um/include/asm"}, {"size": 272, "name": "/usr/src/linux-headers-4.15.0-72/arch/um/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/um/kernel/skas"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/um/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/um/scripts"}, {"size": 388, "name": "/usr/src/linux-headers-4.15.0-72/arch/um"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/m68k/coldfire"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/m68k/emu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/m68k/bvme6000"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/m68k/sun3/prom"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/m68k/sun3"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/m68k/atari"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/m68k/ifpsp060"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/m68k/math-emu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/m68k/tools/amiga"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/m68k/tools"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/m68k/mm"}, {"size": 116, "name": "/usr/src/linux-headers-4.15.0-72/arch/m68k/include/uapi/asm"}, {"size": 120, "name": "/usr/src/linux-headers-4.15.0-72/arch/m68k/include/uapi"}, {"size": 1180, "name": "/usr/src/linux-headers-4.15.0-72/arch/m68k/include/asm"}, {"size": 1304, "name": "/usr/src/linux-headers-4.15.0-72/arch/m68k/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/m68k/amiga"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/arch/m68k/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/m68k/q40"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/m68k/mvme16x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/m68k/fpsp040"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/m68k/sun3x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/m68k/68000"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/m68k/lib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/m68k/mvme147"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/m68k/apollo"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/m68k/hp300"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/m68k/mac"}, {"size": 1568, "name": "/usr/src/linux-headers-4.15.0-72/arch/m68k"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/nios2/platform"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/nios2/mm"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/arch/nios2/include/uapi/asm"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72/arch/nios2/include/uapi"}, {"size": 164, "name": "/usr/src/linux-headers-4.15.0-72/arch/nios2/include/asm"}, {"size": 208, "name": "/usr/src/linux-headers-4.15.0-72/arch/nios2/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/nios2/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/nios2/boot/compressed"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/arch/nios2/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/nios2/lib"}, {"size": 288, "name": "/usr/src/linux-headers-4.15.0-72/arch/nios2"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arc/oprofile"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arc/plat-hsdk"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/arch/arc/plat-eznps/include/plat"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/arch/arc/plat-eznps/include"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/arch/arc/plat-eznps"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arc/mm"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/arch/arc/include/uapi/asm"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-72/arch/arc/include/uapi"}, {"size": 388, "name": "/usr/src/linux-headers-4.15.0-72/arch/arc/include/asm"}, {"size": 444, "name": "/usr/src/linux-headers-4.15.0-72/arch/arc/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arc/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arc/boot/dts"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/arc/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arc/plat-sim"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arc/plat-tb10x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arc/lib"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arc/plat-axs10x"}, {"size": 604, "name": "/usr/src/linux-headers-4.15.0-72/arch/arc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/c6x/mm"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/arch/c6x/include/uapi/asm"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72/arch/c6x/include/uapi"}, {"size": 172, "name": "/usr/src/linux-headers-4.15.0-72/arch/c6x/include/asm"}, {"size": 216, "name": "/usr/src/linux-headers-4.15.0-72/arch/c6x/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/c6x/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/c6x/boot/dts"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/c6x/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/c6x/lib"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/c6x/platforms"}, {"size": 280, "name": "/usr/src/linux-headers-4.15.0-72/arch/c6x"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-oxnas"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/oprofile"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-tegra"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-qcom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-hisi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/vdso"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-nomadik"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-uniphier"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-at91"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/plat-iop"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-footbridge/include/mach"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-footbridge/include"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-footbridge"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-nspire"}, {"size": 104, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-s3c24xx/include/mach"}, {"size": 108, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-s3c24xx/include"}, {"size": 136, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-s3c24xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-rockchip"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/plat-pxa/include/plat"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/plat-pxa/include"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/plat-pxa"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-lpc32xx/include/mach"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-lpc32xx/include"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-lpc32xx"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-rpc/include/mach"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-rpc/include"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-rpc"}, {"size": 76, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-iop13xx/include/mach"}, {"size": 80, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-iop13xx/include"}, {"size": 96, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-iop13xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-artpec"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-prima2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/common"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-mediatek"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-mv78xx0"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-spear/include/mach"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-spear/include"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-spear"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-berlin"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-digicolor"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-mvebu"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-ebsa110/include/mach"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-ebsa110/include"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-ebsa110"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-ep93xx/include/mach"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-ep93xx/include"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-ep93xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-sti"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-lpc18xx"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-iop32x/include/mach"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-iop32x/include"}, {"size": 68, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-iop32x"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-dove/include/mach"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-dove/include"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-dove"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-ux500"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-integrator"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/plat-orion/include/plat"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/plat-orion/include"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/plat-orion"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-tango"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-w90x900/include/mach"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-w90x900/include"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-w90x900"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/probes/uprobes"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/probes/kprobes"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/probes"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-exynos/include/mach"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-exynos/include"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-exynos"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/net"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-imx/devices"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-imx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-zynq"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/tools"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-sunxi"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-efm32"}, {"size": 96, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/include/uapi/asm"}, {"size": 100, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/include/uapi"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/include/asm/mach"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/include/asm/xen"}, {"size": 160, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/include/asm/hardware"}, {"size": 1180, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/include/asm"}, {"size": 152, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/include/debug"}, {"size": 1436, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/include"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-s5pv210"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-meson"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-iop33x/include/mach"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-iop33x/include"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-iop33x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/xen"}, {"size": 88, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-davinci/include/mach"}, {"size": 92, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-davinci/include"}, {"size": 112, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-davinci"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/crypto"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/vfp"}, {"size": 224, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-pxa/include/mach"}, {"size": 228, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-pxa/include"}, {"size": 256, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-pxa"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-zx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-u300"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-actions"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-moxart"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/plat-omap/include/plat"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/plat-omap/include"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/plat-omap"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-cns3xxx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-alpine"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/nwfpe"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-highbank"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-vt8500"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/kvm/hyp"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/kvm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-versatile"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-picoxcell"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/boot/compressed"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/boot/bootp"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/boot/dts"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/boot"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/firmware"}, {"size": 116, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-omap1/include/mach"}, {"size": 120, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-omap1/include"}, {"size": 140, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-omap1"}, {"size": 180, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-sa1100/include/mach"}, {"size": 184, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-sa1100/include"}, {"size": 204, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-sa1100"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-bcm"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-orion5x"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-shmobile"}, {"size": 84, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-ixp4xx/include/mach"}, {"size": 88, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-ixp4xx/include"}, {"size": 108, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-ixp4xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-mmp"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-omap2/include/mach"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-omap2/include"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-omap2"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/lib"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-stm32"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/plat-versatile/include/plat"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/plat-versatile/include"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/plat-versatile"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-vexpress"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-clps711x"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-gemini"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-mxs"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-netx/include/mach"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-netx/include"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-netx"}, {"size": 144, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/plat-samsung/include/plat"}, {"size": 148, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/plat-samsung/include"}, {"size": 164, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/plat-samsung"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-keystone"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-s3c64xx/include/mach"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-s3c64xx/include"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-s3c64xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-realview"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-asm9260"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-axxia"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-ks8695/include/mach"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-ks8695/include"}, {"size": 68, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-ks8695"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-aspeed"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm/mach-socfpga"}, {"size": 4784, "name": "/usr/src/linux-headers-4.15.0-72/arch/arm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/oprofile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/perf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/sysdev/ge"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/sysdev/xics"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/sysdev/xive"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/sysdev"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/purgatory"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/math-emu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/net"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/tools"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/mm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/xmon"}, {"size": 232, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/include/uapi/asm"}, {"size": 236, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/include/uapi"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/include/asm/book3s/32"}, {"size": 152, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/include/asm/book3s/64"}, {"size": 196, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/include/asm/book3s"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/include/asm/nohash/32"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/include/asm/nohash/64"}, {"size": 96, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/include/asm/nohash"}, {"size": 2448, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/include/asm"}, {"size": 2688, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/crypto"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/kernel/trace"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/kernel/vdso64"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/kernel/vdso32"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/kernel"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/kvm"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/lib"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms/82xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms/83xx"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms/pseries"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms/52xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms/pasemi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms/40x"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms/maple"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms/embedded6xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms/86xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms/amigaone"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms/4xx"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms/44x"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms/8xx"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms/ps3"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms/chrp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms/powernv"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms/85xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms/powermac"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms/512x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms/cell/spufs"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms/cell"}, {"size": 304, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms"}, {"size": 3288, "name": "/usr/src/linux-headers-4.15.0-72/arch/powerpc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/ia64/hp/zx1"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/ia64/hp/common"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/ia64/hp/sim/boot"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/arch/ia64/hp/sim"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-72/arch/ia64/hp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/ia64/oprofile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/ia64/dig"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72/arch/ia64/sn/include/xtalk"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72/arch/ia64/sn/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/ia64/sn/kernel/sn2"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/ia64/sn/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/ia64/sn/pci/pcibr"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/ia64/sn/pci"}, {"size": 76, "name": "/usr/src/linux-headers-4.15.0-72/arch/ia64/sn"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/ia64/mm"}, {"size": 236, "name": "/usr/src/linux-headers-4.15.0-72/arch/ia64/include/uapi/asm"}, {"size": 240, "name": "/usr/src/linux-headers-4.15.0-72/arch/ia64/include/uapi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/ia64/include/asm/sn/sn2"}, {"size": 440, "name": "/usr/src/linux-headers-4.15.0-72/arch/ia64/include/asm/sn"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/ia64/include/asm/native"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-72/arch/ia64/include/asm/uv"}, {"size": 1240, "name": "/usr/src/linux-headers-4.15.0-72/arch/ia64/include/asm"}, {"size": 1484, "name": "/usr/src/linux-headers-4.15.0-72/arch/ia64/include"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/arch/ia64/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/ia64/scripts"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/ia64/uv/kernel"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/arch/ia64/uv"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/ia64/lib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/arch/ia64/pci"}, {"size": 1716, "name": "/usr/src/linux-headers-4.15.0-72/arch/ia64"}, {"size": 48368, "name": "/usr/src/linux-headers-4.15.0-72/arch"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/lib/lzo"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/lib/lz4"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/lib/reed_solomon"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72/lib/xz"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/lib/zlib_deflate"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/lib/zstd"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/lib/fonts"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/lib/raid6/test"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72/lib/raid6"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/lib/842"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/lib/mpi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72/lib/zlib_inflate"}, {"size": 228, "name": "/usr/src/linux-headers-4.15.0-72/lib"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72/usr"}, {"size": 115568, "name": "/usr/src/linux-headers-4.15.0-72"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-70-generic/tools/objtool/arch/x86/lib"}, {"size": 268, "name": "/usr/src/linux-headers-4.15.0-70-generic/tools/objtool/arch/x86"}, {"size": 272, "name": "/usr/src/linux-headers-4.15.0-70-generic/tools/objtool/arch"}, {"size": 4648, "name": "/usr/src/linux-headers-4.15.0-70-generic/tools/objtool"}, {"size": 4652, "name": "/usr/src/linux-headers-4.15.0-70-generic/tools"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hyperv"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/asus/nb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/asus"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ad5592r"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dcache/word"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dcache"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/spi/oc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/spi/pxa2xx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/spi/slave/system"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/spi/slave"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/spi/zynqmp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/spi/axi/spi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/spi/axi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/spi/lm70"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/spi/dw/mid"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/spi/dw"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/spi/loopback"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/spi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/videobuf/dma"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/videobuf"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/vlan/8021q"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/vlan"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dp83640"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/wimax/debug"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/wimax/i2400m/debug"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/wimax/i2400m"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/wimax"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ezx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/moxa"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dln2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/soc/camera"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/soc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bmp280"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rt2800usb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/msi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/inotify"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ia32"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nfc/nxp/nci"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nfc/nxp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nfc/pn533"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nfc/fdp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nfc/nci"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nfc/st/nci"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nfc/st"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nfc/s3fwrn5"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nfc/pn544"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nfc/microread"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nfc/st21nfca"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nfc/mei"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nfc/mrvl"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nfc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/udf"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/oprofile/nmi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/oprofile"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/xor"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nls/codepage"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nls/koi8"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nls/iso8859"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nls/mac"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nls"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/evm/extra/smack"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/evm/extra"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/evm/attr"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/evm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/tipc/media"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/tipc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/power/reset"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/power"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/8139too"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sgetmask"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/squashfs/file"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/squashfs/fragment/cache"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/squashfs/fragment"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/squashfs/decomp"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/squashfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rpcsec/gss"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rpcsec"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ir/nec"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ir/xmp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ir/sharp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ir/ite"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ir/serial"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ir/rc5"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ir/jvc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ir/mce/kbd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ir/mce"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ir/sony"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ir/lirc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ir/sanyo"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ir/rc6"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ir/winbond"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ir"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/it8712f"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dmar"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bnx2x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ntb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fs/dax"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fs/posix"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ksdazzle"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/kprobe"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/zx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/perf/events/intel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/perf/events"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/perf"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/no/hz"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/no"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ms5611"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/devtmpfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rt2800pci"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/swiotlb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/battery/twl4030"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/battery/bq27xxx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/battery/gauge"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/battery"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/b44/pcicore"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/b44/pci"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/b44"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scif"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rtc/intf"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rtc/systohc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rtc/mc146818"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rtc/i2c/and"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rtc/i2c"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rtc/hctosys"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rtc/drv/rv3029"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rtc/drv/m41t80"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rtc/drv/ds1307"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rtc/drv/hid/sensor"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rtc/drv/hid"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rtc/drv/ds3232"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rtc/drv/ds1374"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rtc/drv/ds1685"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rtc/drv"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rtc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/keyboard/gpio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/keyboard/tm2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/keyboard/dlink"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/keyboard/cros"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/keyboard"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crc/itu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hdlc/raw"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hdlc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nft/masq"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nft/dup"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nft/set"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nft/reject"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nft/fib"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nft/redir"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nft/fwd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nft/chain/route"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nft/chain/nat"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nft/chain"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nft/bridge"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nft"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/adfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/vop"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/da9062"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/vmivme"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/max63xx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/at76c50x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ucsi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/lustre"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ibm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/altera/pr/ip"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/altera/pr"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/altera"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/firewire"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/unixware"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/tps68470/pmic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/tps68470"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/int340x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/gpio/ml"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/gpio/gpio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/gpio/generic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/gpio/janz"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/gpio/crystal"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/gpio/104/dio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/gpio/104/idi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/gpio/104/idio"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/gpio/104"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/gpio/whiskey"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/gpio/pci/idio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/gpio/pci"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/gpio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cardman"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rfd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mcs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/brcmfmac/proto"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/brcmfmac"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/kxsd9"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/generic/msi/irq"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/generic/msi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/generic/calibrate"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/generic/irq/effective/aff"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/generic/irq/effective"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/generic/irq/matrix"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/generic/irq/reservation"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/generic/irq"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/generic/strnlen"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/generic/adc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/generic/pending"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/generic/net"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/generic/time"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/generic/early"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/generic/clockevents/min"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/generic/clockevents"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/generic/isa"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/generic/strncpy/from"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/generic/strncpy"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/generic/cmos"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/generic/smp/idle"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/generic/smp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/generic/cpu"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/generic/find/first"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/generic/find"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/generic/pci"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/generic/bug/relative"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/generic/bug"}, {"size": 116, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/generic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/htc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/stack"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/raid"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dp83848"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rdma"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/memstick/tifm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/memstick/jmicron"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/memstick/realtek"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/memstick"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rt2800/lib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rt2800"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ali"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/interval"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fw/cfg"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fw/loader/user"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fw/loader"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fw"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/defconfig"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/io/delay/type"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/io/delay"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/io"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/grace"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/has/ioport"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/has"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/signed/pe/file"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/signed/pe"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/signed"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ksz884x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/lnet/xprt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/lnet/max"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/lnet"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hysdn"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cfq/group"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cfq"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/w83627hf"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/aurora"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/key/dh"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/key"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pcspkr"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mmu"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/smartjoyplus"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/processor"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/misdn"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/inline/write/unlock"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/inline/write"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/inline/read/unlock"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/inline/read"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/inline/spin/unlock"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/inline/spin"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/inline"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/alienware"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/legacy/pty"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/legacy/vsyscall"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/legacy"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mpl115"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/file"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rtl"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sysfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/device"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/da9063"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/modify/ldt"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/modify"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/wm831x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/intel/soc/pmic/chtdc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/intel/soc/pmic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/intel/soc/dts/iosf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/intel/soc/dts"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/intel/soc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/intel/turbo/max"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/intel/turbo"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/intel/iommu/floppy"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/intel/iommu"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/intel/bxtwc/pmic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/intel/bxtwc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/intel/pch"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/intel/pmc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/intel/bxt/pmic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/intel/bxt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/intel/wmi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/intel/hid"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/intel/punit"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/intel/th"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/intel/mic/x100"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/intel/mic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/intel/cht"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/intel/int0002"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/intel/mei"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/intel/xway"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/intel/ish"}, {"size": 108, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/intel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sw"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fwtty/max/total"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fwtty/max/card"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fwtty/max"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fwtty"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/wil6210/isr"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/wil6210"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/max8925"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/lzo"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/lp8788"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/v4l2/mem2mem"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/v4l2/flash/led"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/v4l2/flash"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/v4l2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/efs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/actisys"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/afs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hsu"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/netlink"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dynamic/ftrace/with"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dynamic/ftrace"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dynamic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/gigaset"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ftrace/mcount"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ftrace"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/icplus"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nortel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/thunderbolt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/network/phy"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/network"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/maxim"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/build"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/gfs2/fs/locking"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/gfs2/fs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/gfs2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hugetlb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/logitech"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/irq/forced"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/irq/domain"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/irq/bypass"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/irq"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/slab/merge"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/slab/freelist"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/slab"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sysvipc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/encrypted"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hibernate"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ebc/c384"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ebc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/lz4"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sonypi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/initramfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dragonrise"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mlx5/core/en"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mlx5/core"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mlx5/en"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mlx5"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/memory/notifier/error"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/memory/notifier"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/memory/hotplug/default"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/memory/hotplug"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/memory"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sp5100"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nsc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/capi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sys"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fsi/master"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fsi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/virt/to"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/virt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sbp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ixgbe"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cec/platform"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cec"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pinctrl"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sxgbe"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rtlphydm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/qnx6fs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nic7018"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/eeepc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/regulator/userspace"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/regulator/qcom"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/regulator/arizona"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/regulator/virtual"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/regulator/fixed"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/regulator/mc13xxx"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/regulator"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rsi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/twl6030"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/notifier/error"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/notifier"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ring/buffer/allow"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ring/buffer"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ring"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/microsemi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/orangefs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/context/switch"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/context"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rmi4/f03"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rmi4/2d"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rmi4"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bootparam/hardlockup/panic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bootparam/hardlockup"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bootparam/hung/task/panic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bootparam/hung/task"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bootparam/hung"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bootparam/softlockup/panic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bootparam/softlockup"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bootparam"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/qfmt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ipw2200"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/vhost"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/b43/pcicore"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/b43/phy"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/b43/bcma"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/b43/buses/bcma/and"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/b43/buses/bcma"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/b43/buses"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/b43/pci"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/b43"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/default/io/delay"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/default/io"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/default/tcp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/default/mmap/min"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/default/mmap"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/default/hung/task"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/default/hung"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/default/security"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/default"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ras"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/printk/safe/log/buf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/printk/safe/log"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/printk/safe"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/printk"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fmc/write"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fmc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/logirumblepad2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/preempt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/surface/pro3"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/surface/3"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/surface"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/probe"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/detect/hung"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/detect"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/national"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/aim"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/xfrm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/new"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ipmi/device"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ipmi/dmi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ipmi/proc"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ipmi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hwpoison"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/migrate/vma"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/migrate"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/af/rxrpc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/af"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/axp20x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ntfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cifs/weak/pw"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cifs/weak"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cifs/dfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cifs/allow/insecure"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cifs/allow"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cifs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/vt/console"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/vt/hw/console"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/vt/hw"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/vt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/tcp/cong"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/tcp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rc/ati"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sched/stack/end"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sched/stack"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sched/mc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sched/omit/frame"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sched/omit"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sched"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/uts"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/carl9170"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/netxen"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/zpa2326"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ipc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/spi/nor/use/4k"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/spi/nor/use"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/spi/nor"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/spi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/redboot/directory"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/redboot"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/gpio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/intel/vr"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/intel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/complex"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/sm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/nand/diskonchip/probe"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/nand/diskonchip"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/nand/ecc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/nand/denali"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/nand"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/latch"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/sbc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/spinand"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/map/bank/width"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/map/bank"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/map"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/cmdline"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/onenand/verify"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/onenand/2x"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/onenand"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/mt81xx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/block"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/gen"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/scb2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/qinfo"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/cfi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/ar7"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/ubi/beb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/ubi/wl"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/ubi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/dataflash"}, {"size": 152, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/decnet/nf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/decnet"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/common/clk/cs2000"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/common/clk"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/common"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hz"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hardlockup/check"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hardlockup/detector"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hardlockup"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/strict/module"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/strict/kernel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/strict"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/reset/attack"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/reset/ti"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/reset"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/irtty"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/gro"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ima/default/hash"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ima/default"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ima/appraise"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ima/measure/pcr"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ima/measure"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ima/ng"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ima/trusted"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ima/lsm"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ima"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/can/cc770"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/can/esd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/can/sja1000"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/can/ems"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/can/janz"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/can/mcba"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/can/m"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/can/8dev"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/can/kvaser"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/can/calc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/can/peak"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/can/softing"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/can/ifi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/can/plx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/can/c/can"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/can/c"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/can/gs"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/can"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dwc/xlgmac"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dwc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rtl8192c"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/reed/solomon"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/reed"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/affs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/batman/adv"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/batman"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/alim7101"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/cs4271"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/xtfpga"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/zx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/generic/dmaengine"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/generic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/bdw/rt5677"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/bdw"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/kbl/rt5663/rt5514/max98927"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/kbl/rt5663/rt5514"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/kbl/rt5663/max98927"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/kbl/rt5663"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/kbl"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/broadwell"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/sst"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/bxt/rt298"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/bxt/da7219/max98357a"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/bxt/da7219"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/bxt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/haswell"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/bytcr/rt5660"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/bytcr/rt5651"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/bytcr/rt5640"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/bytcr"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/skl/rt286"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/skl/nau88l25/ssm4567"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/skl/nau88l25/max98357a"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/skl/nau88l25"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/skl"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/cht/bsw/rt5672"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/cht/bsw/max98090/ti"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/cht/bsw/max98090"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/cht/bsw/rt5645"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/cht/bsw"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/cht"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/byt/cht/es8316"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/byt/cht/da7213"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/byt/cht"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/byt"}, {"size": 136, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/inno"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/pcm512x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/sti"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/rt5514"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/i2c/and"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/i2c"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/ac97"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/msm8916/wcd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/msm8916"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/cs42l51"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/adau1761"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/cs42xx8"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/ssm2602"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/imx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/pcm179x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/hdmi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/es8328"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/img/parallel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/img/i2s"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/img/spdif"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/img/pistachio/internal"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/img/pistachio"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/img"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/pcm3168a"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/fsl"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/sirf/audio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/sirf"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/acpi/intel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/acpi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/amd/cz/rt5645"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/amd/cz"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/amd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/hdac"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/tlv320aic23"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/adau"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/bt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/wm8804"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/sigmadsp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/rt5677"}, {"size": 316, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/pcm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/verbose"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/firewire"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/dynamic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/fm801/tea575x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/fm801"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/atiixp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/sb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/serial"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/via82xx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/ac97/power/save"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/ac97/power"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/ac97"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/designware"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/compress"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/emu10k1"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/es1968"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/sst/ipc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/sst/atom/hifi2"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/sst/atom"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/sst"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/mixer"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/seq/midi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/seq/hrtimer"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/seq"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/support/old"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/support"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/dma"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/vx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/synth"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/i2s/hi6210"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/i2s"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/max"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/mpu401"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/usb/caiaq"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/usb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/oxygen"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/cs46xx/new"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/cs46xx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/hda/power/save"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/hda/power"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/hda/codec/ca0132"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/hda/codec"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/hda/ext"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/hda/dsp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/hda/patch"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/hda/input/beep"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/hda/input"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/hda/prealloc"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/hda"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/simple/card"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/simple"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/opl3/lib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/opl3"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/jack/input"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/jack"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/atmel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/proc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/dmaengine"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd/maestro3"}, {"size": 560, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/snd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/unix"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dmi/scan/machine/non/efi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dmi/scan/machine/non"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dmi/scan/machine"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dmi/scan"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dmi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/unwinder/frame"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/unwinder"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/myri10ge"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ib700"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/thinkpad/acpi/hotkey"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/thinkpad/acpi/alsa"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/thinkpad/acpi"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/thinkpad"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ti/am335x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ti/cpsw"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ti"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bch/const"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bch"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mlx/cpld"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mlx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sparse"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hotplug/pci/cpci"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hotplug/pci/acpi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hotplug/pci"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hotplug"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/prism2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/qcom/spmi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/qcom/vadc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/qcom/hidma"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/qcom"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sensors/ibm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sensors/sch56xx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sensors/ltc2978"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sensors/mc13783"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sensors/hmc5843"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sensors/via"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sensors/menf21bmc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sensors/dell"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sensors/lis3"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sensors/ntc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sensors/da9052"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sensors/iio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sensors/acpi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sensors/i5k"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sensors/fam15h"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sensors"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sctp/default/cookie/hmac"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sctp/default/cookie"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sctp/default"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sctp/cookie/hmac"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sctp/cookie"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sctp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/irda/fast"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/irda/cache/last"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/irda/cache"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/irda"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usbip/vhci/hc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usbip/vhci/nr"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usbip/vhci"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usbip"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/autofs4"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/serial/altera/uart"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/serial/altera"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/serial/8250/runtime"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/serial/8250/share"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/serial/8250/men"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/serial/8250/nr"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/serial/8250/many"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/serial/8250"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/serial/kgdb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/serial/dev/ctrl"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/serial/dev"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/serial/rp2/nr"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/serial/rp2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/serial/core"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/serial/fsl"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/serial/men"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/serial/sc16is7xx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/serial/sccnxp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/serial/arc/nr"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/serial/arc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/serial/uartlite/nr"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/serial/uartlite"}, {"size": 92, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/serial"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/aix"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ina2xx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/radio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/das08"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/addi/apci"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/addi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/8255"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/amplc/pc236"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/amplc/dio200"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/amplc/pc263"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/amplc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/gsc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/default/buf/size"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/default/buf/maxsize"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/default/buf"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/default"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/quatech/daqp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/quatech"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/cb/das16"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/cb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/ni/daq/dio24"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/ni/daq/700"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/ni/daq"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/ni/labpc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/ni/at"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/ni/mio"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/ni"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/adv/pci"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/adv"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/jr3"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/aio/iiro"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/aio/aio12"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/aio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/contec/pci"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/contec"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/isa"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/icp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/ii"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/misc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/me"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/dyna"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/pcmcia"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/usb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/pci"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/ke"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/adl"}, {"size": 176, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/comedi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/exofs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iwlwifi/device"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iwlwifi/opmode"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iwlwifi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cc10001"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pps/client"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pps"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/be2net"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/packet"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sysv"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/jffs2/fs/posix"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/jffs2/fs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/jffs2/cmode"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/jffs2/compression"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/jffs2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ie6xx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/parport/not"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/parport/pc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/parport"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sunrpc/xprt"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sunrpc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/clz"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/anon"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mpls"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hostap/firmware"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hostap"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/async/tx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/async/raid6"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/async"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rds"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dst"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/i6300esb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/wireless"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bcm/kona/usb2"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bcm/kona"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bcm/net"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bcm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mspro"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ad525x/dpot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ad525x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/atm/idt77252/use"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/atm/idt77252"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/atm/he/use"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/atm/he"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/atm/fore200e/tx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/atm/fore200e"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/atm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ptp/1588/clock"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ptp/1588"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ptp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/viperboard"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iommu"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ath5k"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/thread/info/in"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/thread/info"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/thread"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/mod/arch"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/mod"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/perf/events"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/perf/user/stack"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/perf/user"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/perf"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/gcc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/generic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/stack"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/mixed/breakpoints"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/mixed"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/pcspkr"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/intel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/dynamic/ftrace/with"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/dynamic/ftrace"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/dynamic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/ftrace/mcount"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/ftrace"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/irq/exit/on/irq"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/irq/exit/on"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/irq/exit"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/irq/time"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/irq"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/memory"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/virt/cpu/accounting"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/virt/cpu"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/virt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/cmpxchg"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/context"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/ioremap"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/reliable"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/hardlockup/detector"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/hardlockup"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/unstable/sched"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/unstable"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/syscall"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/kprobes/on"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/kprobes"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/hardened/usercopy"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/hardened"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/cc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/exit"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/net"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/regs/and/stack/access"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/regs/and/stack"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/regs/and"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/regs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/efficient/unaligned"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/efficient"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/kernel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/debug"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/memblock/node"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/memblock"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/kvm/irq"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/kvm/cpu/relax"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/kvm/cpu"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/kvm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/clk"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/dma/api"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/dma"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/ebpf"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/acpi/apei"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/acpi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/copy/thread"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/copy"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/hw"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/c"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/bootmem/info"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/bootmem"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/user/return"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/user"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/arch/huge"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/arch/mmap/rnd/compat"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/arch/mmap/rnd"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/arch/mmap"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/arch/soft"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/arch/vmap"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/arch/compat/mmap"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/arch/compat"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/arch/seccomp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/arch/jump"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/arch/within/stack"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/arch/within"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/arch/transparent/hugepage"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/arch/transparent"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/arch"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/rcu/table"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/rcu"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/setup/per/cpu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/setup/per"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/setup"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/mmiotrace"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/aligned/struct"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/aligned"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/function/graph"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have/function"}, {"size": 388, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/have"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/vlsi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/integrity/trusted"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/integrity/asymmetric"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/integrity"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hsi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/lru"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/balloon"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ucb1400"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/thrustmaster"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/kgdb/serial"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/kgdb/low/level"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/kgdb/low"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/kgdb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/tcm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/i2c/cbus"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/i2c/nforce2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/i2c/parport"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/i2c/pca"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/i2c/diolan"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/i2c/designware"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/i2c/mux"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/i2c/tiny"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/i2c/taos"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/i2c/helper"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/i2c/amd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/i2c/cht"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/i2c/amd756"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/i2c/robotfuzz"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/i2c/cros/ec"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/i2c/cros"}, {"size": 68, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/i2c"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/macintosh"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/lte"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hwmon"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/holtek"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mlx4/core"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mlx4/en"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mlx4"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/optimize"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/aic7xxx/reg/pretty"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/aic7xxx/reg"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/aic7xxx/reset/delay"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/aic7xxx/reset"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/aic7xxx/cmds/per"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/aic7xxx/cmds"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/aic7xxx/debug"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/aic7xxx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sfc/mcdi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sfc/falcon"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sfc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/lockup"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/check"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/init/env/arg"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/init/env"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/init"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ac97"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pccard"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/efi/vars"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/efi/runtime"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/efi/capsule"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/efi/dev/path"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/efi/dev"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/efi/signature/list"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/efi/signature"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/efi/bootloader"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/efi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/uprobe"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/platform"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/atari"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/soft/watchdog"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/soft"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/inet6/xfrm/mode"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/inet6/xfrm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/inet6/esp"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/inet6"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bfq/group"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bfq"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/zeroplus"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/regmap"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/zlib"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sbc/epx/c3"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sbc/epx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sbc/fitpc2"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sbc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/da9150"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nodes/span/other"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nodes/span"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nodes"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/kempld"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/wiznet/bus"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/wiznet/w5100"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/wiznet"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hmm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/wilc1000/hw/oob"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/wilc1000/hw"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/wilc1000"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/thin"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/secondary/trusted"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/secondary"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rionet/tx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rionet/rx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rionet"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/idle/page"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/idle"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fib"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bpf/jit/always"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bpf/jit"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bpf/stream"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bpf"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/machz"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/instruction"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/calgary/iommu/enabled/by"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/calgary/iommu/enabled"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/calgary/iommu"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/calgary"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/font/acorn"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/font"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/zone"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dp83867"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ncp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/message/loglevel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/message"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mcb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/suspend"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sms/usb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sms/sdio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sms/siano"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sms"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/clkbld"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/video/au0828"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/video/ir"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/video/cx18"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/video/ivtv"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/video/v4l2/subdev"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/video/v4l2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/video/cafe"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/video/saa7146"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/video/fb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/video/via"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/video/sony/btf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/video/sony"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/video/em28xx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/video/mem2mem"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/video/vivid/max"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/video/vivid"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/video/stk1160"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/video/saa7134"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/video/zoran"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/video/sh"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/video/hexium"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/video/pvrusb2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/video/cx231xx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/video/cx88/enable"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/video/cx88"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/video/tm6000"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/video/cx25821"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/video/go7007/usb/s2250"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/video/go7007/usb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/video/go7007"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/video/pci"}, {"size": 128, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/video"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fcoe"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fb/carillo"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fb/savage"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fb/aty128"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fb/intel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fb/pm2/fifo"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fb/pm2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fb/sys"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fb/auo"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fb/cfb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fb/s3"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fb/tft/agm1264k"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fb/tft/fbtft"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fb/tft"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fb/cyber2000"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fb/via/x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fb/via"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fb/carmine/dram"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fb/carmine"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fb/mode"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fb/radeon"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fb/sis"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fb/riva"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fb/matrox"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fb/boot/vesa"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fb/boot"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fb/aty"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fb/nvidia"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fb/mb862xx/pci"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fb/mb862xx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fb/deferred"}, {"size": 124, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/vmap"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fanotify/access"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fanotify"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rtl8xxxu"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/smc/ircc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/smc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/thp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ade7854"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/p54"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ldisc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/via/rhine"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/via"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cfag12864b"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/chelsio/t4"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/chelsio/t1"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/chelsio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/associative"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bsd/process/acct"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bsd/process"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bsd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nvme/target"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nvme"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/kprobes/on"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/kprobes"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/stm/source"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/stm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hfsplus/fs/posix"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hfsplus/fs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hfsplus"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/high/res"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/high"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/trace/irqflags"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/trace"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hardened"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/need/multiple"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/need/per/cpu/embed/first"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/need/per/cpu/embed"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/need/per/cpu/page/first"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/need/per/cpu/page"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/need/per/cpu"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/need/per"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/need/sg/dma"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/need/sg"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/need/dma/map"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/need/dma"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/need"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ippp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nv"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/extcon/intel/cht"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/extcon/intel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/extcon/usbc/cros"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/extcon/usbc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/extcon/adc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/extcon/usb"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/extcon"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sony"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ufs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/at803x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cc/optimize/for"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cc/optimize"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cc/stackprotector"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dev/dax"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dev"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/phys/addr/t"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/phys/addr"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/phys"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/netconsole"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nouveau/legacy/ctx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nouveau/legacy"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nouveau/debug"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nouveau"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/it87"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/section/mismatch/warn"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/section/mismatch"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/section"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/logig940"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/base"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fair/group"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fair"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/videobuf2/dma"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/videobuf2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/qnx4fs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/b53/spi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/b53/srab"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/b53/mmap"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/b53/mdio"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/b53"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/net/ematch"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/net/udp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/net/team/mode"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/net/team"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/net/packet"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/net/mpls"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/net/ptp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/net/fou/ip"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/net/fou"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/net/l3/master"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/net/l3"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/net/drop"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/net/ipgre"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/net/sch/fq"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/net/sch"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/net/dsa/mv88e6xxx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/net/dsa/tag/brcm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/net/dsa/tag"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/net/dsa/smsc/lan9303"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/net/dsa/smsc"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/net/dsa"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/net/act/tunnel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/net/act"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/net/ip"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/net/rx/busy"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/net/rx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/net/cls"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/net/9p"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/net/vendor"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/net/poll"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/net/flow"}, {"size": 128, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/net"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/greenasia"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/microchip/ksz/spi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/microchip/ksz"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/microchip"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/logiwheels"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/twl6040"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtrr/sanitizer/enable"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtrr/sanitizer/spare/reg/nr"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtrr/sanitizer/spare/reg"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtrr/sanitizer/spare"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtrr/sanitizer"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtrr"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rfkill"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/tekram"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/104/quad"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/104"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/page/table"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/page"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/xillybus"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/devfreq/gov/simple"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/devfreq/gov"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/devfreq"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cross/memory"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cross"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sound/oss"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sound"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/leds/wm831x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/leds/intel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/leds/pca955x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/leds/lp55xx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/leds/brightness/hw"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/leds/brightness"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/leds/class"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/leds/clevo"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/leds/pca9532"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/leds/trigger/default"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/leds/trigger"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/leds"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nvdimm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/f71808e"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ziirave"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/edd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/musb/pio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/musb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/greybus/bridged"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/greybus"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ttpci"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ip/multiple"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ip/set/bitmap"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ip/set/list"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ip/set/hash"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ip/set"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ip/route"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ip/fib/trie"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ip/fib"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ip/vs/pe"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ip/vs/proto/ah"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ip/vs/proto"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ip/vs/sh/tab"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ip/vs/sh"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ip/vs/tab"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ip/vs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ip/nf/arp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ip/nf/match"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ip/nf/target"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ip/nf"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ip/advanced"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ip/pimsm"}, {"size": 88, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ip"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/qsemi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/da9055"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/slub/cpu"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/slub/memcg/sysfs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/slub/memcg"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/slub"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/int3406"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/de2104x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/amd8111"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fusion/max"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fusion"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/atlas/ph"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/atlas"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/tifm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/prevent/firmware"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/prevent"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/module/srcversion"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/module/sig"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/module"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pmc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/split/ptlock"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/split"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/teranetics"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/btrfs/fs/posix"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/btrfs/fs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/btrfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/security/perf/events"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/security/perf"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/security/tomoyo/activation"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/security/tomoyo/policy"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/security/tomoyo/max/accept"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/security/tomoyo/max/audit"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/security/tomoyo/max"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/security/tomoyo"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/security/network"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/security/default/display"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/security/default"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/security/apparmor/bootparam"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/security/apparmor/hash"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/security/apparmor"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/security/smack/append"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/security/smack"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/security/selinux/bootparam"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/security/selinux/checkreqprot"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/security/selinux/avc"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/security/selinux"}, {"size": 84, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/security"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mlxsw/core"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mlxsw/spectrum"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mlxsw"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/menf21bmc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/early/printk"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/early"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/toshiba/bt"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/toshiba"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/input/soc/button"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/input/soc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/input/gpio/tilt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/input/gpio/rotary"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/input/gpio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/input/max8997"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/input/drv2665"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/input/da9063"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/input/wm831x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/input/max8925"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/input/cma3000"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/input/regulator"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/input/e3x0"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/input/axp20x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/input/ims"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/input/88pm860x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/input/mc13783"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/input/keyspan"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/input/arizona"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/input/twl6040"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/input/da9055"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/input/atlas"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/input/drv2667"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/input/xen/kbddev"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/input/xen"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/input/max77693"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/input/pcf50633"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/input/ad714x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/input/palmas"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/input/drv260x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/input/da9052"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/input/mousedev/screen"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/input/mousedev"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/input/adxl34x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/input/twl4030"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/input/ff"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/input/ati"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/input/88pm80x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/input/retu"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/input/ideapad"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/input/pwm"}, {"size": 168, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/input"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dlci"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/load/uefi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/load"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/quotactl"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/virtio/blk"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/virtio/mmio/cmdline"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/virtio/mmio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/virtio/vsockets"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/virtio/pci"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/virtio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/surface3"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/lcd/class"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/lcd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/liquidio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nvm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ad/sigma"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ad"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/blk/sed"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/blk/dev/ram"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/blk/dev/io"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/blk/dev/loop/min"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/blk/dev/loop"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/blk/dev/pciessd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/blk/dev/dm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/blk/dev/3w/xxxx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/blk/dev/3w"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/blk/dev/null"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/blk/dev"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/blk/cmdline"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/blk/scsi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/blk/debug"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/blk/mq"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/blk/wbt"}, {"size": 68, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/blk"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/xz/dec"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/xz"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/acquire"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cpu5"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/tablet/serial"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/tablet/usb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/tablet"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pkcs7/message"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pkcs7/test"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pkcs7"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fscache"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/compal"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/broadcom"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mma7455"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ultrix"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/lwtunnel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/clocksource/validate/last"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/clocksource/validate"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/clocksource"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/lockdep"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rtllib/crypto"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rtllib"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pcie/dw"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pcie"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/tasks"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/futex"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pnfs/file"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pnfs/flexfile"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pnfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pstore/zlib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pstore"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/gpiolib"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/extra"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/paride"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nf/conntrack/netbios"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nf/conntrack"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nf/dup"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nf/reject"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nf/tables"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nf/defrag"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nf/log"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nf/socket"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nf/ct/proto"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nf/ct/netlink"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nf/ct"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nf/nat/masquerade"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nf/nat/proto"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nf/nat/snmp"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nf/nat"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nf"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/openvswitch"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/amiga"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hdmi/lpe"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hdmi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/lattice/ecp3"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/lattice"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/litelink"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rtlwifi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ieee802154/at86rf230"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ieee802154/ca8210"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ieee802154"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dscc4/pci"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dscc4"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/lirc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/wl1251"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iosched"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/illegal/pointer"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/illegal"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cls/u32"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cls"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rtlhalmac"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/f2fs/fs/posix"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/f2fs/fs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/f2fs/stat"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/f2fs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pda"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/img/ascii"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/img"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/xen/netdev"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/xen/sys"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/xen/grant/dev"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/xen/grant"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/xen/blkdev"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/xen/have"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/xen/balloon/memory/hotplug"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/xen/balloon/memory"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/xen/balloon"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/xen/mce"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/xen/pv"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/xen/dev"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/xen/pcidev"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/xen/fbdev"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/xen/save"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/xen/compat"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/xen/pvcalls"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/xen/scsi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/xen/xenbus"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/xen/acpi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/xen/scrub"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/xen/pvhvm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/xen/auto"}, {"size": 96, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/xen"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/paravirt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mutex/spin/on"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mutex/spin"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mutex"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/core/dump/default/elf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/core/dump/default"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/core/dump"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/core"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ath"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hangcheck"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dummy/console"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dummy"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cmdline"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dell/uart"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dell/wmi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dell/smbios"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dell"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/radix/tree"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/radix"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bcm7xxx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pcf50633"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/phy/cpcap"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/phy/qcom/usb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/phy/qcom"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/phy/pxa/28nm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/phy/pxa"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/phy/samsung"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/phy"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/agp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/speakup/synth"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/speakup"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/compat/netlink"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/compat/old"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/compat/for/u64"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/compat/for"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/compat/binfmt"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/compat"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/9p/fs/posix"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/9p/fs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/9p"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/torture"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/aes/ni"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/aes/x86"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/aes"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/poly1305/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/poly1305"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/michael"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/ablk"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/crct10dif"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/cast"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/ghash/clmul/ni"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/ghash/clmul"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/ghash"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/dev/qat"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/dev/ccp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/dev/padlock"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/dev/nitrox"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/dev/sp"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/dev"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/sha1"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/sha512"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/ansi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/crc32"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/cast6/avx/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/cast6/avx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/cast6"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/camellia/aesni/avx2/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/camellia/aesni/avx2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/camellia/aesni/avx/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/camellia/aesni/avx"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/camellia/aesni"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/camellia/x86"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/camellia"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/des3/ede/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/des3/ede"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/des3"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/serpent/avx2/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/serpent/avx2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/serpent/sse2/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/serpent/sse2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/serpent/avx/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/serpent/avx"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/serpent"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/twofish/x86/64"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/twofish/x86"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/twofish/avx/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/twofish/avx"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/twofish"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/glue/helper"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/glue"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/blowfish/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/blowfish"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/sha256"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/rng"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/user/api"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/user"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/hash"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/manager/disable"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/manager"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/chacha20/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/chacha20"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/cast5/avx/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/cast5/avx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/cast5"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/crc32c"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/drbg"}, {"size": 264, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crypto"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/allow/dev"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/allow/lockdown/lift/by"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/allow/lockdown/lift"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/allow/lockdown"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/allow"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cypress"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ks959"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hdm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bcma/driver/gmac"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bcma/driver"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bcma/host/pci"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bcma/host"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bcma"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x25"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iosf/mbi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iosf"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/airo"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mwifiex"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/persistent"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/kernel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pmic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pid"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/tigon3"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/qlcnic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/wm8350"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/minix"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/wmi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/chrome"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/tick/cpu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/tick"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/lxt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/output"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/vga/arb/max"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/vga/arb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/vga"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hermes/cache/fw/on"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hermes/cache/fw"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hermes/cache"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hermes"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crc32"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mxm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/stacktrace"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/isa/bus"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/isa/dma"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/isa"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mouse/elan/i2c"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mouse/elan"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mouse/ps2/synaptics"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mouse/ps2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mouse/synaptics"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mouse"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/block"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ath9k/btcoex"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ath9k/htc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ath9k/common"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ath9k/channel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ath9k/station"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ath9k"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ubifs/fs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ubifs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/yenta/ene"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/yenta"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cadence"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/syn"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/topstar"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hpwdt/nmi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hpwdt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ena"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/w83977f"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mpu3050"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dptf"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/palmas"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/men/a21"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/men/z188"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/men"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nftl"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cpumask"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/wdat"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/version"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/spi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/qla"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/bnx2x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/qlogic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/cxgb3"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/future"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/dpt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/ipr"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/bnx2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/scan"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/bfa"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/eata/tagged"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/eata/linked"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/eata/max"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/eata"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/chelsio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/ufs/dwc/tc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/ufs/dwc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/ufs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/srp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/osd/dprint"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/osd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/lowlevel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/sas/host"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/sas"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/fc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/ufshcd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/3w"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/cxgb4"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/mpt2sas/max"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/mpt2sas"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/iscsi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/sym53c8xx/default"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/sym53c8xx/dma/addressing"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/sym53c8xx/dma"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/sym53c8xx/max"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/sym53c8xx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/dh/hp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/dh"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/proc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/mpt3sas/max"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/mpt3sas"}, {"size": 172, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/scsi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/w83877f"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/tree"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cgroup/net"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cgroup"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sysctl/exception"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sysctl"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/tracer/max"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/tracer"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nr"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/framebuffer/console/detect"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/framebuffer/console"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/framebuffer"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ab3100"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hpet/mmap"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hpet/emulate"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hpet"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/vitesse"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/drm/analogix"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/drm/i915/capture"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/drm/i915/compress"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/drm/i915/gvt"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/drm/i915"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/drm/i2c/nxp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/drm/i2c"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/drm/kms/fb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/drm/kms/cma"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/drm/kms"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/drm/nouveau"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/drm/mipi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/drm/fbdev"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/drm/amdgpu"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/drm/load/edid"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/drm/load"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/drm/gem/cma"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/drm/gem"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/drm/virtio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/drm/cirrus"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/drm/panel/raspberrypi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/drm/panel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/drm/amd/dc/pre"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/drm/amd/dc/dcn1"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/drm/amd/dc"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/drm/amd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/drm/dp/aux"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/drm/dp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/drm/vmwgfx"}, {"size": 120, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/drm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ncpfs/ioctl"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ncpfs/packet"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ncpfs/nfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ncpfs/os2"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ncpfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/libertas/thinfirm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/libertas"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cb710/debug"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cb710"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/thermal/gov/power"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/thermal/gov/step"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/thermal/gov/fair"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/thermal/gov/bang"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/thermal/gov/user"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/thermal/gov"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/thermal/default/gov/step"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/thermal/default/gov"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/thermal/default"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/thermal/emergency/poweroff/delay"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/thermal/emergency/poweroff"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/thermal/emergency"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/thermal/writable"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/thermal"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/clkevt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/numa/balancing/default"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/numa/balancing"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/numa"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/debug"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/silead"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/efivar"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/buildtime/extable"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/buildtime"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/baycom/ser"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/baycom"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/zstd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rtl8723"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hpfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rt2x00/lib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rt2x00"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/alim1535"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/davicom"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/old/belkin"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/old"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/toim3232"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mantis"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fpga/mgr/altera/ps"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fpga/mgr/altera"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fpga/mgr/xilinx"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fpga/mgr"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fpga"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/eeprom/idt"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/eeprom"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/randomize/memory/physical"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/randomize/memory"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/randomize"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hsa"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/netup"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/au8522"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/dynamic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/b2c2/flexcop"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/b2c2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/tuner"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/zd1301"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/platform"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/rtl2832"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/gp8psk"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/budget"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/max"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/usb/af9005"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/usb/technisat"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/usb/umt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/usb/cinergy"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/usb/dibusb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/usb/nova/t"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/usb/nova"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/usb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/as102"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/av7110"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/ttusb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/firedtv"}, {"size": 100, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dvb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/skge"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/big"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/b43legacy/pcicore"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/b43legacy/dma/and/pio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/b43legacy/dma/and"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/b43legacy/dma"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/b43legacy/pci"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/b43legacy"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/panic/on/oops"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/panic/on"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/panic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/panel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ma600"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/karma"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fujitsu"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/solaris/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/solaris"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/partition"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/eurotech"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/da9052"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/advise"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bmc150/magn"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bmc150/accel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bmc150"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/micrel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/uwb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/clkdev"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/thunder/nic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/thunder"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sysv68"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ad5624r"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dm/multipath"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dm/thin"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dm/cache"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dm/persistent"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dm/log"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dm/bio"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ad7606/iface"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ad7606"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/omfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/misc/rtsx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/misc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/trusted"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/configfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/task/io"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/task/delay"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/task"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hid/hyperv"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hid/sensor/device"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hid/sensor/custom"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hid/sensor/magnetometer"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hid/sensor/inclinometer"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hid/sensor/gyro"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hid/sensor/iio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hid/sensor/accel"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hid/sensor"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hid/udraw"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hid/battery"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hid/ems"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hid/logitech"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hid/picolcd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hid/betop"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hid/acrux"}, {"size": 68, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hid"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bcm87xx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/raw"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/kingsun"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/md"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/gact"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nfp/app"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nfp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/binary"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hisax/sct"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hisax/netjet"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hisax/fritz"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hisax/16"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hisax/enternow"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hisax/sedlbauer"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hisax/teles"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hisax/max"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hisax/avm/a1"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hisax/avm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hisax/bkm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hisax/elsa"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hisax/hfc"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hisax"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sata/dwc/old"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sata/dwc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sata/mobile/lpm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sata/mobile"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sata/ahci"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sata/acard"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sata"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/peaq"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/kvm/generic/dirtylog/read"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/kvm/generic/dirtylog"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/kvm/generic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/kvm/async"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/kvm/debug"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/kvm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nop/usb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nop"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fixed"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/console/loglevel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/console"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/queued"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pata/cmd640"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pata/pdc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pata"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arcnet/rim"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arcnet/com20020"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arcnet"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cramfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/macb/use"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/macb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sg"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/tracing/events"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/tracing"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/vfio/iommu"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/vfio/mdev"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/vfio/pci"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/vfio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/wm831x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/intel/lpss"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/intel/quark/i2c"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/intel/quark"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/intel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/axp20x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/si476x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/sm501"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/janz"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/ti/am335x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/ti"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/wl1273"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/sec"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/arizona"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/tps65912"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/aat2870"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/wm8350"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/da9052"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/twl4030"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/mc13xxx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/cros/ec"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/cros"}, {"size": 92, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mfd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iwlegacy"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/microcode/old"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/microcode"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/target"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/itco/vendor"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/itco"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/adt7316"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/board"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/plx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/aufs/br"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/aufs/ino/t"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/aufs/ino"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/aufs/bdev"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/aufs/branch/max"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/aufs/branch"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/aufs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pantherlord"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/magic/sysrq/default"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/magic/sysrq"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/magic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/xfs/posix"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/xfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/boot/printk"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/boot"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/clk"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/uefi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/pmem/legacy"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/pmem"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/io"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/intel/tsx/mode"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/intel/tsx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/intel/memory/protection"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/intel/memory"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/intel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/vsyscall"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/bootparam/memory/corruption"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/bootparam/memory"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/bootparam"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/speedstep"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/l1/cache"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/l1"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/supports/memory"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/supports"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/p4"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/check/bios"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/check"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/platform"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/internode/cache"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/internode"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/mce"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/need"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/feature"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/dev/dma"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/dev"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/fast/feature"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/fast"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/powernow"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/pkg/temp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/pkg"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/thermal"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/debug"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/minimum/cpu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/minimum"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/reserve"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/extended"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/acpi/cpufreq"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/acpi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/amd/freq"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/amd/platform"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/amd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/mcelog"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/reroute/for/broken/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/reroute/for/broken"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/reroute/for"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/reroute"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/pcc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/ptdump"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/pm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/local"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/direct"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/64/acpi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86/64"}, {"size": 228, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x86"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ipack"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/log/buf"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/log/cpu/max/buf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/log/cpu/max"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/log/cpu"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/log"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iio/buffer"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iio/sysfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iio/sw"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iio/st/sensors"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iio/st/lsm6dsx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iio/st/magn/spi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iio/st/magn/i2c"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iio/st/magn"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iio/st/gyro/spi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iio/st/gyro/i2c"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iio/st/gyro"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iio/st/accel/spi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iio/st/accel/i2c"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iio/st/accel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iio/st/press"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iio/st"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iio/kfifo"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iio/consumers/per"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iio/consumers"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iio/adis/lib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iio/adis"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iio/ssp/sensors"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iio/ssp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iio/tightloop"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iio/triggered"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iio/simple"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iio/interrupt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iio/hrtimer"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iio/cros/ec/sensors"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iio/cros/ec/light"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iio/cros/ec/accel"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iio/cros/ec"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iio/cros"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iio/ms/sensors"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iio/ms"}, {"size": 144, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/punit/atom"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/punit"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/i8253"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mmc/sdricoh"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mmc/via"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mmc/tifm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mmc/toshiba"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mmc/block"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mmc/sdhci"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mmc/ricoh"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mmc/realtek"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mmc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cw1200/wlan"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cw1200"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ldm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sock/cgroup"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sock"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/brcm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dma/shared"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dma/engine"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dma/virt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dma/virtual"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dma"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/kallsyms/absolute"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/kallsyms/base"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/kallsyms"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/firmware/in"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/firmware"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/vfat"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/softlockup"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dp83822"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hypervisor"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bmg160"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ipw2100"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/igb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/coda"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/qtnfmac/pearl"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/qtnfmac"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/raid6"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/kexec/verify"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/kexec/bzimage/verify"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/kexec/bzimage"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/kexec"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/adjd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/unisys"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/renesas"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/audit"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/unused"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/twl4030"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/infiniband/qib"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/infiniband/on/demand"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/infiniband/on"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/infiniband/addr/trans"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/infiniband/addr"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/infiniband/ipoib"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/infiniband/opa"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/infiniband/bnxt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/infiniband/user"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/infiniband/vmware"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/infiniband"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/asymmetric/key"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/asymmetric/public/key"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/asymmetric/public"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/asymmetric"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/textsearch"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/crash"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pdc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dwmac"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ath10k"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/lidar/lite"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/lidar"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/may/use"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/may"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/qed"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dw/dmac"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dw"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/c2port/duramar"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/c2port"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/wq/power/efficient"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/wq/power"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/wq"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nfs/acl"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nfs/v4/1/implementation/id"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nfs/v4/1/implementation"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nfs/v4/1"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nfs/v4/security"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nfs/v4"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nfs/v3"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nfs/use/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nfs/use"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ecrypt/fs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ecrypt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ppp/sync"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ppp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/wlcore"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/processor"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/legacy/tables"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/legacy"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/custom/dsdt"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/custom"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/hotplug"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/i2c"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/table"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/rev/override"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/rev"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/thermal"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/cppc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/cpu/freq"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/cpu"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/apei/memory"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/apei"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/ec"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/pci"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/system/power/states"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/system/power"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/system"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/debugger"}, {"size": 92, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/acpi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/uevent/helper"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/uevent"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/synclink"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/modules/tree"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/modules/use/elf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/modules/use"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/modules"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/elf"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/realtek"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mdio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ip6/nf/match"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ip6/nf/target"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ip6/nf"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ip6"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/enclosure"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/decompress"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ocfs2/fs/userspace"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ocfs2/fs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ocfs2/debug"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ocfs2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/l2tp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/amilo"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/msdos"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/melfas"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/cyttsp4"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/egalax"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/tsc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/wacom"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/auo"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/ti/am335x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/ti"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/wdt87xx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/rohm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/edt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/surface3"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/tsc2007"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/sis"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/rm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/usb/ett"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/usb/general"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/usb/dmc"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/usb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/tsc200x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/ad7879"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/atmel/mxt"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/atmel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/cyttsp"}, {"size": 100, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sigmatel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/act200l"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/typec"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/lz4hc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/aquantia"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pcieaspm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/wafer"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/winbond"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/vm/event"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/vm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/inv/mpu6050"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/inv"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/chr/dev"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/chr"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rpmsg/qcom/glink"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rpmsg/qcom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rpmsg"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bridge/vlan"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bridge/igmp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bridge/ebt/mark"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bridge/ebt/802"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bridge/ebt/t"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bridge/ebt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bridge/nf"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bridge"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ssb/pcmciahost"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ssb/b43/pci"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ssb/b43"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ssb/sdiohost"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ssb/driver/pcicore"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ssb/driver"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ssb/pcihost"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ssb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bnxt/flower"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bnxt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/aic79xx/reg/pretty"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/aic79xx/reg"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/aic79xx/reset/delay"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/aic79xx/reset"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/aic79xx/cmds/per"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/aic79xx/cmds"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/aic79xx/debug"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/aic79xx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/branch/profile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/branch"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/romfs/on"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/romfs/backed/by"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/romfs/backed"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/romfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sc1200"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/unix98"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/slip/mode"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/slip"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hw/random"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hw"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/select/memory"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/select"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rtl8187"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/overlay/fs/redirect/always"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/overlay/fs/redirect"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/overlay/fs"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/overlay"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/v4l/platform"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/v4l/mem2mem"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/v4l/test"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/v4l"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fat/default"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fat"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sync"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ata/verbose"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ata/over"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ata"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/serio/altera"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/serio/gpio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/serio/arc"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/serio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cpu/sup"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cpu/freq/gov/attr"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cpu/freq/gov"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cpu/freq/default/gov"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cpu/freq/default"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cpu/freq"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cpu/idle/gov"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cpu/idle"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cpu"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/esi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/lib80211/crypt"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/lib80211"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cicada"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/quota/netlink"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/quota"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/kdb/default"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/kdb/continue"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/kdb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/amd/iommu"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/amd/xgbe/have"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/amd/xgbe"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/amd/mem"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/amd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/w1/slave/ds2408"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/w1/slave"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/w1/master"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/w1"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pcmcia/load"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pcmcia"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/max/raw"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/max"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/advantech"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/genwqe/platform/error"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/genwqe/platform"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/genwqe"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/binfmt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/60xx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ks8851"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/tahvo/usb/host/by"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/tahvo/usb/host"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/tahvo/usb"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/tahvo"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/net2272"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/dwc3/dual"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/dwc3"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/f/mass"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/f/ss"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/f/uac1"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/f"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/xhci"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/gpio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/g/acm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/g/dbgp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/g"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/ali"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/pwc/input"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/pwc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/link/layer"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/link"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/hub"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/gspca/ov534"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/gspca/xirlink"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/gspca"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/dynamic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/dwc2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/announce/new"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/announce"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/default"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/mv"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/rainshadow"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/hsic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/isp1362"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/midi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/isp1761"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/switch"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/cdc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/serial/digi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/serial/mos7715"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/serial/ftdi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/serial/keyspan"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/serial/kobil"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/serial/mct"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/serial/cypress"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/serial/xsens"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/serial/edgeport"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/serial"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/ftdi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/chipidea"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/ehset/test"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/ehset"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/bdc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/video/class/input"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/video/class"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/video"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/hwa"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/functionfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/mass"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/sierra"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/net/rndis"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/net/cdc/subset"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/net/cdc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/net/huawei/cdc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/net/huawei"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/net/ax88179"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/net/cx82310"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/net/qmi"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/net"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/leds/trigger"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/leds"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/musb/dual"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/musb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/c67x00"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/ohci/little"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/ohci/hcd"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/ohci"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/cypress"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/ehci/tt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/ehci/root/hub"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/ehci/root"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/ehci/hcd"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/ehci"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/gr"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/ulpi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/configfs/f/uac1"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/configfs/f/lb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/configfs/f"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/configfs/mass"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/configfs/ecm"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/configfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/max3421"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/r8a66597"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/isp116x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/eth"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/uhci"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/isp1760/dual"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/isp1760"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/wusb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/ezusb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/snp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/arch/has"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/arch"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/whci"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/pulse8"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/oxu210hp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/u"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/u132"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/fotg210"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/storage/ene"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/storage/cypress"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/storage"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/led"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/sl811/hcd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/sl811"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/gadget/vbus"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/gadget/storage/num"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/gadget/storage"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/gadget"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb/hcd"}, {"size": 468, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/usb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/seccomp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/dns"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sun"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/user/return"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/user/stacktrace"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/user"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/zram"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/backlight/carillo"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/backlight/class"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/backlight/pm8941"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/backlight/lcd"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/backlight"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/event"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sungem"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ath6kl"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hwlat"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/6lowpan/nhc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/6lowpan"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x509/certificate"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/x509"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mem/soft"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mem"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iscsi/ibft"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iscsi/target"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iscsi/boot"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iscsi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/marvell/10g"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/marvell"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/memcg"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/frame"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/842"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/uses/pg"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/uses/high/vma"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/uses/high"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/uses"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/discard"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/pmem"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/filter"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/set"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/strict/module"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/strict/kernel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/strict"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/zone"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/gigantic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/fast"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/devmem/is"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/devmem"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/cache/line"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/cache"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/debug"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/sg"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/acpi/table"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/acpi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/elf"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/ubsan/sanitize"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/ubsan"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/cpu"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/mem"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/uaccess"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/add"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/gcov/profile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/gcov"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/fortify"}, {"size": 112, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/memory"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/supports/memory"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/supports/atomic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/supports/numa"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/supports/debug"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/supports/deferred/struct/page"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/supports/deferred/struct"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/supports/deferred"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/supports/optimized"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/supports"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/mmap/rnd/bits"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/mmap/rnd/compat/bits"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/mmap/rnd/compat"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/mmap/rnd"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/mmap"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/have/nmi/safe"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/have/nmi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/have"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/suspend"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/enable/memory"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/enable/hugepage"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/enable/thp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/enable/split/pmd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/enable/split"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/enable"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/phys/addr/t"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/phys/addr"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/phys"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/clocksource"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/wants/dynamic/task"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/wants/dynamic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/wants/thp"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/wants"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/hibernation"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/dma/addr/t"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/dma/addr"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/dma"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/may/have/pc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/may/have"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/may"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/select/memory"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/select"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/want/huge/pmd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/want/huge"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/want/compat/ipc/parse"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/want/compat/ipc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/want/compat"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/want/old/compat"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/want/old"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/want/general"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/want/batched/unmap/tlb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/want/batched/unmap"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/want/batched"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/want"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/might/have/pc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/might/have/acpi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/might/have"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/might"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/sparsemem"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/proc/kcore"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/proc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/use/memremap"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/use/builtin"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/use/cmpxchg"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/use/queued"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch/use"}, {"size": 400, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arch"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rcu/perf"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rcu/need"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rcu/stall"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rcu/cpu/stall"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rcu/cpu"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rcu"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pc87413"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nfsd/v2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nfsd/v4/security"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nfsd/v4"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nfsd/v3"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nfsd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cdrom/pktcdvd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cdrom"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bmi160"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mac80211/has"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mac80211/rc/default"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mac80211/rc/minstrel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mac80211/rc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mac80211/message"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mac80211/sta/hash/max"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mac80211/sta/hash"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mac80211/sta"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mac80211"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sdio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/exportfs/block"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/exportfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/gs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/jump"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/manager"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sdr/platform"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sdr"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/edac/atomic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/edac/decode"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/edac"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/vsockets"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ni903x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/88eu/ap"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/88eu"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mma9551"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hvc/xen"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hvc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/caif/spi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/caif"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mcp2120"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/adaptec"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cortina"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/apple"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/samsung"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/inet/diag"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/inet/udp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/inet/dccp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/inet/xfrm/mode"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/inet/xfrm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/inet/tcp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/inet/sctp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/inet/esp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/inet/raw"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/inet"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/smsc/sch311x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/smsc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/transparent/huge"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/transparent/hugepage"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/transparent"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/u/serial"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/u"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ne2k"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/want/dev"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/want"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/vxfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/tcg/tis/i2c"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/tcg/tis/st33zp24"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/tcg/tis"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/tcg/vtpm"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/tcg"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/de"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pgtable"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/osf"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/tmd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/oid"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/gameport"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ext4/fs/posix"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ext4/fs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ext4/use/for"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ext4/use"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ext4"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/retu"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fix/earlycon"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fix"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/axp288/fuel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/axp288"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ucs2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/uio/pdrv"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/uio/dmem"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/uio/hv"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/uio/pci"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/uio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/n"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pm/generic/domains"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pm/generic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pm/notifier/error"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pm/notifier"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pm/wakelocks"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pm/sleep"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pm/trace"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pm/devfreq"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pm/advanced"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pm/std"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hts221"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mandatory/file"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mandatory"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/megaraid"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/lsm/mmap/min"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/lsm/mmap"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/lsm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/panasonic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/i40e"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sgi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/lock/down/in/efi/secure"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/lock/down/in/efi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/lock/down/in"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/lock/down"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/lock/spin/on"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/lock/spin"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/lock"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/lsi/et1011c"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/lsi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/led/trigger"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/led"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/acer"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/smsc37b787"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rockchip"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/netfilter/netlink/glue"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/netfilter/netlink"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/netfilter/xt/match"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/netfilter/xt/target"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/netfilter/xt"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/netfilter"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/orinoco"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/staging"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fuse"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/e1000e"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/physical"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/lpc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/chromeos"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/iso9660"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rapidio/disc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rapidio/mport"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rapidio/enum"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rapidio/rxs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rapidio/cps"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rapidio/dma"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rapidio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/joystick/psxpad/spi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/joystick/psxpad"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/joystick/iforce"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/joystick/xpad"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/joystick/grip"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/joystick"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/tty"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/vme"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/lockd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/test/static"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/test/user"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/test"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ceph/fs/posix"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ceph/fs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ceph/lib/use/dns"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ceph/lib/use"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ceph/lib"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ceph"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/stream"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/gart"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cfg80211/default"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cfg80211/require/signed"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cfg80211/require"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cfg80211/crda"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cfg80211/wext"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cfg80211/use/kernel/regdb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cfg80211/use/kernel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cfg80211/use"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cfg80211"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/wilink/platform"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/wilink"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/girbil"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/gadget"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/watchdog/pretimeout/gov"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/watchdog/pretimeout/default/gov"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/watchdog/pretimeout/default"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/watchdog/pretimeout"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/watchdog/handle/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/watchdog/handle"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/watchdog"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cma"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arm/gic/max"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arm/gic"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/arm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sparsemem/vmemmap"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sparsemem/alloc/mem/map"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sparsemem/alloc/mem"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sparsemem/alloc"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/sparsemem"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/wlan/vendor"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/wlan"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/abx500"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mq/iosched"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mq"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bt/rfcomm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bt/bnep/proto"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bt/bnep/mc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bt/bnep"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bt/mrvl"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bt/hcibtusb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bt/hciuart"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/bt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/proc/page"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/proc/pid"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/proc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ipv6/router"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ipv6/multiple"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ipv6/seg6"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ipv6/route"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ipv6/fou"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ipv6/ndisc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ipv6/sit"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ipv6/mroute/multiple"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ipv6/mroute"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ipv6/pimsm"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ipv6"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/isdn/capi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/isdn/divas"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/isdn/drv/avmb1/avm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/isdn/drv/avmb1"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/isdn/drv"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/isdn/ppp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/isdn/tty"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/isdn"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ideapad"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/hist"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/wext"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ks0108"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pci/msi/irq"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pci/msi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pci/sw"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pci/bus/addr/t"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pci/bus/addr"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pci/bus"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pci/endpoint"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pci/lockless"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pci/realloc/enable"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pci/realloc"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pci"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/system/extra/certificate"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/system/extra"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/system/blacklist/hash"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/system/blacklist"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/system/trusted"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/system/data"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/system"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/loopback"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/posix/mqueue"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/posix"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pwm/lpss"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pwm/twl"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pwm/cros"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/pwm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cros/kbd/led"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cros/kbd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cros/ec/lpc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cros/ec"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/cros"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/nilfs2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/tinydrm/mipi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/tinydrm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/jfs/posix"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/jfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/media/altera"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/media/cec"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/media/tuner"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/media/common"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/media/digital/tv"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/media/digital"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/media/radio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/media/subdrv"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/media/camera"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/media/usb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/media/sdr"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/media/analog/tv"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/media/analog"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/media/pci"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/media"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/befs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/keys"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ax25/dama"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ax25"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/stmmac"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rwsem/xchgadd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rwsem/spin/on"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rwsem/spin"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/rwsem"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/function/graph"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/function"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/ms"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/vmware/vmci"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/vmware"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/use/percpu/numa/node"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/use/percpu/numa"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/use/percpu"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/use"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/charger"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/xilinx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/checkpoint"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/fortify"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtdram/total"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtdram/erase"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mtdram"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/mac"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/reiserfs/fs/posix"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/reiserfs/fs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/reiserfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/tmpfs/posix"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config/tmpfs"}, {"size": 12896, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/config"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/generated/uapi/linux"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/generated/uapi"}, {"size": 308, "name": "/usr/src/linux-headers-4.15.0-70-generic/include/generated"}, {"size": 13208, "name": "/usr/src/linux-headers-4.15.0-70-generic/include"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70-generic/kernel"}, {"size": 348, "name": "/usr/src/linux-headers-4.15.0-70-generic/scripts/mod"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-70-generic/scripts/basic"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70-generic/scripts/kconfig/lxdialog"}, {"size": 548, "name": "/usr/src/linux-headers-4.15.0-70-generic/scripts/kconfig"}, {"size": 104, "name": "/usr/src/linux-headers-4.15.0-70-generic/scripts/selinux/genheaders"}, {"size": 108, "name": "/usr/src/linux-headers-4.15.0-70-generic/scripts/selinux/mdp"}, {"size": 220, "name": "/usr/src/linux-headers-4.15.0-70-generic/scripts/selinux"}, {"size": 1436, "name": "/usr/src/linux-headers-4.15.0-70-generic/scripts"}, {"size": 232, "name": "/usr/src/linux-headers-4.15.0-70-generic/arch/x86/purgatory"}, {"size": 112, "name": "/usr/src/linux-headers-4.15.0-70-generic/arch/x86/tools"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-70-generic/arch/x86/include/generated/uapi/asm"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-70-generic/arch/x86/include/generated/uapi"}, {"size": 104, "name": "/usr/src/linux-headers-4.15.0-70-generic/arch/x86/include/generated/asm"}, {"size": 172, "name": "/usr/src/linux-headers-4.15.0-70-generic/arch/x86/include/generated"}, {"size": 176, "name": "/usr/src/linux-headers-4.15.0-70-generic/arch/x86/include"}, {"size": 100, "name": "/usr/src/linux-headers-4.15.0-70-generic/arch/x86/kernel"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70-generic/arch/x86/entry/syscalls"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70-generic/arch/x86/entry"}, {"size": 644, "name": "/usr/src/linux-headers-4.15.0-70-generic/arch/x86"}, {"size": 648, "name": "/usr/src/linux-headers-4.15.0-70-generic/arch"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70-generic/.tmp_versions"}, {"size": 21996, "name": "/usr/src/linux-headers-4.15.0-70-generic"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/udf"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/fs/nls"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/fs/squashfs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/fs/hostfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/adfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/freevxfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/sysfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/efs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/afs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/gfs2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/ecryptfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/orangefs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/ntfs"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/fs/cifs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/notify/dnotify"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/notify/inotify"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/notify/fanotify"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/fs/notify"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/affs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/autofs4"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/fs/exofs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/fs/openpromfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/sysv"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/fs/jffs2"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/fs/tracefs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/fs/devpts"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/qnx4"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/hfsplus"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/ufs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/btrfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/efivarfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/fscache"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/pstore"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/f2fs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/9p"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/crypto"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/minix"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/qnx6"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/ubifs"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/fs/ncpfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/hpfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/kernfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/omfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/configfs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/fs/nfs_common"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/cramfs"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/fs/aufs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/hfs"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/fs/xfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/coda"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/fs/nfs/blocklayout"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/fs/nfs/flexfilelayout"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/fs/nfs/filelayout"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-66/fs/nfs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/fs/hugetlbfs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/fs/ocfs2/cluster"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/fs/ocfs2/dlmfs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/fs/ocfs2/dlm"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/fs/ocfs2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/isofs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/romfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/dlm"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/fs/fat"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/cachefiles"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/quota"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/ext2"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/fs/nfsd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/fs/exportfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/bfs"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/fs/ext4"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/overlayfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/fuse"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/fs/lockd"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/ceph"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/fs/debugfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/proc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/jbd2"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/fs/ramfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/nilfs2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/jfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/befs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/fs/reiserfs"}, {"size": 1024, "name": "/usr/src/linux-headers-4.15.0-66/fs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/virt/kvm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/virt/lib"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/virt"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-66/drivers/spi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/soc/ti"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/soc/lantiq"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/soc/qcom"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/soc/bcm/brcmstb/pm"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/drivers/soc/bcm/brcmstb"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/drivers/soc/bcm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/soc/versatile"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/soc/actions"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/soc/dove"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/soc/tegra/fuse"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/drivers/soc/tegra"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/soc/imx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/soc/ux500"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/soc/fsl/qe"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/soc/fsl/qbman"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/drivers/soc/fsl"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/soc/zte"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/soc/renesas"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/soc/mediatek"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/soc/amlogic"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/soc/samsung"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/soc/rockchip"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/soc/atmel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/soc/sunxi"}, {"size": 284, "name": "/usr/src/linux-headers-4.15.0-66/drivers/soc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/nfc/nfcmrvl"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/nfc/pn533"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/nfc/fdp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/nfc/s3fwrn5"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/nfc/pn544"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/nfc/nxp-nci"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/nfc/st95hf"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/nfc/microread"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/nfc/st21nfca"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/nfc/st-nci"}, {"size": 132, "name": "/usr/src/linux-headers-4.15.0-66/drivers/nfc"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/drivers/bluetooth"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/power/reset"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/drivers/power/supply"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/power/avs"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-66/drivers/power"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/ntb/hw/intel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/ntb/hw/mscc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/ntb/hw/idt"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/ntb/hw/amd"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-66/drivers/ntb/hw"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/ntb/test"}, {"size": 84, "name": "/usr/src/linux-headers-4.15.0-66/drivers/ntb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/perf/hisilicon"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/drivers/perf"}, {"size": 68, "name": "/usr/src/linux-headers-4.15.0-66/drivers/rtc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/dma-buf"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/firewire"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpio"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/memstick/core"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/memstick/host"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/drivers/memstick"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/vlynq"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/dca"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/dax"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/ipu-v3"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/vga"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/savage"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/vc4"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/atmel-hlcdc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/bochs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/mxsfb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/selftests"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/r128"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/sti"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/i915/gvt"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/i915"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/ttm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/tdfx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/etnaviv"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/i2c"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/tve200"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/mgag200"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/via"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/stm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/dispnv04"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvif"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine/sec2"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine/msenc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine/bsp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine/device"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine/disp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine/sw"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine/mspdec"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine/sec"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine/fifo"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine/ce"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine/cipher"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine/mpeg"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine/nvdec"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine/vic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine/gr"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine/dma"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine/msppp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine/msvld"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine/nvenc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine/pm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine/vp"}, {"size": 176, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/gpio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/top"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/mmu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/devinit"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/instmem"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/iccsense"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/i2c"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/bus"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/fb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/secboot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/bar"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/therm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/bios"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/volt"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/pmu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/mxm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/mc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/clk"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/timer"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/ibus"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/fuse"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/pci"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/ltc"}, {"size": 192, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/core"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/falcon"}, {"size": 392, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm"}, {"size": 420, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/exynos"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/tilcdc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/rcar-du"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/fsl-dcu"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/tegra"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/virtio"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/imx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/ast"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/radeon"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/sis"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/qxl"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/msm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/cirrus"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/zte"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/panel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/udl"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/armada"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/omapdrm/dss"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/omapdrm/displays"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/omapdrm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/i810"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/bridge/analogix"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/bridge/adv7511"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/bridge/synopsys"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/bridge"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/shmobile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/mga"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/powerplay/hwmgr"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/powerplay/smumgr"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/powerplay"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/acp"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/amdgpu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/display/amdgpu_dm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/display/dc/dce112"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/display/dc/gpio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/display/dc/dml"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/display/dc/dcn10"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/display/dc/calcs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/display/dc/irq"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/display/dc/dce120"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/display/dc/basics"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/display/dc/bios"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/display/dc/i2caux"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/display/dc/dce100"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/display/dc/virtual"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/display/dc/dce"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/display/dc/dce110"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/display/dc/dce80"}, {"size": 128, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/display/dc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/display/modules/freesync"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/display/modules"}, {"size": 160, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/display"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/lib"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/amdkfd"}, {"size": 240, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/pl111"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/mediatek"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/sun4i"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/vmwgfx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/hisilicon/hibmc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/hisilicon/kirin"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/hisilicon"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/rockchip"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/arc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/gma500"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/arm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/meson"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/tinydrm/core"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/tinydrm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/vgem"}, {"size": 1364, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/drm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu/host1x"}, {"size": 1408, "name": "/usr/src/linux-headers-4.15.0-66/drivers/gpu"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/sn"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/spmi"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/drivers/char/hw_random"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/char/ipmi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/char/xillybus"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/char/agp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/char/mwave"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/char/xilinx_hwicap"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/char/pcmcia"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/char/tpm/st33zp24"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/drivers/char/tpm"}, {"size": 152, "name": "/usr/src/linux-headers-4.15.0-66/drivers/char"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/thunderbolt"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/memory/tegra"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/memory/samsung"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-66/drivers/memory"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/fsi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/virt"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/pinctrl/spear"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/pinctrl/sh-pfc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/pinctrl/intel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/pinctrl/vt8500"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/pinctrl/stm32"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/pinctrl/uniphier"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/pinctrl/ti"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/pinctrl/qcom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/pinctrl/bcm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/pinctrl/berlin"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/pinctrl/tegra"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/pinctrl/nomadik"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/pinctrl/sprd"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/pinctrl/zte"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/pinctrl/aspeed"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/pinctrl/freescale"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/pinctrl/pxa"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/pinctrl/sirf"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/pinctrl/mediatek"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/pinctrl/samsung"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/pinctrl/mvebu"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/pinctrl/sunxi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/pinctrl/meson"}, {"size": 296, "name": "/usr/src/linux-headers-4.15.0-66/drivers/pinctrl"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-66/drivers/regulator"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/vhost"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/ras"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/fmc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/tee/optee"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/drivers/tee"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/mtd/spi-nor"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/mtd/nand/brcmnand"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/mtd/nand/bcm47xxnflash"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/mtd/nand/gpmi-nand"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/mtd/nand/atmel"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-66/drivers/mtd/nand"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/mtd/tests"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/mtd/onenand"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/mtd/lpddr"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/drivers/mtd/maps"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/drivers/mtd/devices"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/mtd/parsers"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/drivers/mtd/chips"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/mtd/ubi"}, {"size": 220, "name": "/usr/src/linux-headers-4.15.0-66/drivers/mtd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/nubus"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/reset/sti"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/reset/tegra"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/reset/hisilicon"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/drivers/reset"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/accessibility/braille"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/drivers/accessibility"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/pps/clients"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/pps/generators"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/drivers/pps"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/parport"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/drivers/atm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/ptp"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/drivers/iommu"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/opp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/hsi/clients"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/hsi/controllers"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/drivers/hsi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/i2c/muxes"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-66/drivers/i2c/busses"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/i2c/algos"}, {"size": 96, "name": "/usr/src/linux-headers-4.15.0-66/drivers/i2c"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/macintosh/ams"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/drivers/macintosh"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/hwmon/pmbus"}, {"size": 88, "name": "/usr/src/linux-headers-4.15.0-66/drivers/hwmon"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/platform/goldfish"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/platform/chrome"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/platform/mips"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/drivers/platform/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/platform/olpc"}, {"size": 104, "name": "/usr/src/linux-headers-4.15.0-66/drivers/platform"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/s390/cio"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/s390/char"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/s390/net"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/s390/virtio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/s390/crypto"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/s390/block"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/s390/scsi"}, {"size": 80, "name": "/usr/src/linux-headers-4.15.0-66/drivers/s390"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/idle"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/bus"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/message/fusion"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/drivers/message"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/mcb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/video/logo"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/savage"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/omap2/omapfb/dss"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/omap2/omapfb/displays"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/omap2/omapfb"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/omap2"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/intelfb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/mbx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/vermilion"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/mmp/fb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/mmp/panel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/mmp/hw"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/mmp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/via"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/geode"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/core"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/sis"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/riva"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/omap"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/matrox"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/aty"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/i810"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/nvidia"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/mb862xx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/kyro"}, {"size": 320, "name": "/usr/src/linux-headers-4.15.0-66/drivers/video/fbdev"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/video/console"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/drivers/video/backlight"}, {"size": 384, "name": "/usr/src/linux-headers-4.15.0-66/drivers/video"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/nvme/host"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/nvme/target"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/drivers/nvme"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/dio"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/extcon"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/base/power"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/base/regmap"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/base/test"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-66/drivers/base"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/android"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/hyperv"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wimax/i2400m"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wimax"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/fjes"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/bonding"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/team"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/cris"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ipvlan"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/can/spi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/can/cc770"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/can/sja1000"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/can/ifi_canfd"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/can/c_can"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/can/mscan"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/can/softing"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/can/m_can"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/can/usb/peak_usb"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/can/usb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/can/rcar"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/can/peak_canfd"}, {"size": 156, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/can"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wan/lmc"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wan"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/cisco"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/intel/iwlwifi/mvm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/intel/iwlwifi/dvm"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/intel/iwlwifi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/intel/iwlegacy"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/intel/ipw2x00"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/intel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/st/cw1200"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/st"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/rsi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/quantenna/qtnfmac"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/quantenna"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/ti/wl12xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/ti/wl1251"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/ti/wlcore"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/ti/wl18xx"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/ti"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/intersil/prism54"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/intersil/hostap"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/intersil/p54"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/intersil/orinoco"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/intersil"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/admtek"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/broadcom/brcm80211/brcmfmac"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/broadcom/brcm80211/brcmutil"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/broadcom/brcm80211/brcmsmac"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/broadcom/brcm80211"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/broadcom/b43"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/broadcom/b43legacy"}, {"size": 76, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/broadcom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/ath/wil6210"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/ath/carl9170"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/ath/ath5k"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/ath/ath9k"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/ath/wcn36xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/ath/ath10k"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/ath/ath6kl"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/ath/ar5523"}, {"size": 112, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/ath"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/realtek/rtl8xxxu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/realtek/rtlwifi/rtl8192de"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/realtek/rtlwifi/rtl8192cu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/realtek/rtlwifi/rtl8192ce"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/realtek/rtlwifi/rtl8192se"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/realtek/rtlwifi/rtl8192c"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/realtek/rtlwifi/rtl8723be"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/realtek/rtlwifi/rtl8723com"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/realtek/rtlwifi/rtl8821ae"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/realtek/rtlwifi/btcoexist"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/realtek/rtlwifi/rtl8192ee"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/realtek/rtlwifi/rtl8188ee"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/realtek/rtlwifi/rtl8723ae"}, {"size": 108, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/realtek/rtlwifi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/realtek/rtl818x/rtl8180"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/realtek/rtl818x/rtl8187"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/realtek/rtl818x"}, {"size": 160, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/realtek"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/marvell/libertas_tf"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/marvell/mwifiex"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/marvell/libertas"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/marvell"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/mediatek/mt7601u"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/mediatek"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/atmel"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/ralink/rt2x00"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/ralink"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/zydas/zd1211rw"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless/zydas"}, {"size": 772, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/wireless"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/dsa/mv88e6xxx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/dsa/b53"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/dsa/microchip"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/dsa"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/aeroflex"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/calxeda"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/silan"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/moxa"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/hp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/emulex/benet"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/emulex"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/nxp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/ibm/emac"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/ibm/ehea"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/ibm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/altera"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/cisco/enic"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/cisco"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/aurora"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/intel/ixgbevf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/intel/igbvf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/intel/i40evf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/intel/ixgbe"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/intel/fm10k"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/intel/ixgb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/intel/e1000"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/intel/igb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/intel/i40e"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/intel/e1000e"}, {"size": 100, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/intel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/natsemi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/pasemi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/qlogic/qede"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/qlogic/netxen"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/qlogic/qlcnic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/qlogic/qed"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/qlogic/qlge"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/qlogic"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/oki-semi/pch_gbe"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/oki-semi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/apm/xgene"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/apm/xgene-v2"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/apm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/alteon"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/nuvoton"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/agere"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/qualcomm/rmnet"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/qualcomm/emac"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/qualcomm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/tehuti"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/ti"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/i825xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/rdc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/sfc/falcon"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/sfc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/rocker"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/tile"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/wiznet"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/huawei/hinic"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/huawei"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/via"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/myricom/myri10ge"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/myricom"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/chelsio/libcxgb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/chelsio/cxgb3"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/chelsio/cxgb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/chelsio/cxgb4vf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/chelsio/cxgb4"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/chelsio"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/microchip"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/toshiba"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/allwinner"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/broadcom/bnx2x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/broadcom/genet"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/broadcom/bnxt"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/broadcom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/seeq"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/xscale"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/sis"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/adi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/mellanox/mlxfw"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/mellanox/mlx5/core/diag"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/mellanox/mlx5/core/ipoib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/mellanox/mlx5/core/fpga"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/mellanox/mlx5/core/accel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/mellanox/mlx5/core/lib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/mellanox/mlx5/core/en_accel"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/mellanox/mlx5/core"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/mellanox/mlx5"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/mellanox/mlx4"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/mellanox/mlxsw"}, {"size": 112, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/mellanox"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/3com"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/cadence"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/neterion/vxge"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/neterion"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/stmicro/stmmac"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/stmicro"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/davicom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/cirrus"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/dec/tulip"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/dec"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/fujitsu"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/micrel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/atheros/atlx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/atheros/alx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/atheros/atl1c"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/atheros/atl1e"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/atheros"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/8390"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/ezchip"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/socionext"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/freescale/fs_enet"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/freescale/fman"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/freescale/dpaa"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/freescale"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/renesas"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/faraday"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/realtek"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/aquantia/atlantic"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/aquantia"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/xircom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/nvidia"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/amd/xgbe"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/amd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/netronome/nfp"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/netronome"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/alacritech"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/packetengines"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/sun"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/marvell"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/mediatek"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/adaptec"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/apple"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/dlink"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/samsung/sxgbe"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/samsung"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/smsc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/sgi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/hisilicon/hns"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/hisilicon/hns3/hns3pf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/hisilicon/hns3/hns3vf"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/hisilicon/hns3"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/hisilicon"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/arc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/tundra"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/cavium/octeon"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/cavium/liquidio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/cavium/thunder"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/cavium"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/amazon/ena"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/amazon"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/brocade/bna"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/brocade"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/xilinx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/synopsys"}, {"size": 1672, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ethernet"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/vmxnet3"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/hippi"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/hamradio"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ieee802154"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/phy"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/appletalk"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/plip"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/arcnet"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/ppp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/slip"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/usb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/caif"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/xen-netback"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/fddi/skfp"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net/fddi"}, {"size": 3000, "name": "/usr/src/linux-headers-4.15.0-66/drivers/net"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/devfreq/event"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/drivers/devfreq"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/leds/trigger"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-66/drivers/leds"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/nvdimm"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/drivers/auxdisplay"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/ps3"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/drivers/input/keyboard"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/input/rmi4"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/input/tablet"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/drivers/input/mouse"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/drivers/input/misc"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/drivers/input/touchscreen"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/drivers/input/serio"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/input/gameport"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/input/joystick/iforce"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/drivers/input/joystick"}, {"size": 244, "name": "/usr/src/linux-headers-4.15.0-66/drivers/input"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/virtio"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/hwspinlock"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/drivers/clocksource"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/hwtracing/stm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/hwtracing/intel_th"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/hwtracing/coresight"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-66/drivers/hwtracing"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/sbus/char"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/drivers/sbus"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/xen/xenfs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/xen/events"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/xen/xen-pciback"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/xen/xenbus"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-66/drivers/xen"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/mux"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/phy/st"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/phy/qualcomm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/phy/ti"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/phy/lantiq"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/phy/motorola"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/phy/tegra"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/phy/allwinner"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/phy/broadcom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/phy/renesas"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/phy/marvell"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/phy/mediatek"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/phy/amlogic"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/phy/samsung"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/phy/hisilicon"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/phy/rockchip"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/phy/ralink"}, {"size": 204, "name": "/usr/src/linux-headers-4.15.0-66/drivers/phy"}, {"size": 120, "name": "/usr/src/linux-headers-4.15.0-66/drivers/crypto/vmx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/crypto/amcc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/crypto/stm32"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/crypto/bcm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/crypto/chelsio"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/crypto/virtio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/crypto/axis"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/crypto/ux500/cryp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/crypto/ux500/hash"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/drivers/crypto/ux500"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/crypto/qat/qat_c3xxx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/crypto/qat/qat_c62xvf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/crypto/qat/qat_c62x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/crypto/qat/qat_c3xxxvf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/crypto/qat/qat_dh895xccvf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/crypto/qat/qat_dh895xcc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/crypto/qat/qat_common"}, {"size": 68, "name": "/usr/src/linux-headers-4.15.0-66/drivers/crypto/qat"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/crypto/ccp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/crypto/sunxi-ss"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/crypto/marvell"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/crypto/nx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/crypto/mediatek"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/crypto/caam"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/crypto/rockchip"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/crypto/inside-secure"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/crypto/cavium/cpt"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/crypto/cavium/nitrox"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/crypto/cavium/zip"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-66/drivers/crypto/cavium"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/crypto/qce"}, {"size": 436, "name": "/usr/src/linux-headers-4.15.0-66/drivers/crypto"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/bcma"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/pnp/pnpbios"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/pnp/pnpacpi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/pnp/isapnp"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/drivers/pnp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/block/xen-blkback"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/block/mtip32xx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/block/aoe"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/drivers/block/paride"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/block/rsxx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/block/drbd"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/block/zram"}, {"size": 112, "name": "/usr/src/linux-headers-4.15.0-66/drivers/block"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/irqchip"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/scsi/cxlflash"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/scsi/be2iscsi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/scsi/smartpqi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/scsi/ibmvscsi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/scsi/qla4xxx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/scsi/bfa"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/scsi/aacraid"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/scsi/arcmsr"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/scsi/aic7xxx/aicasm"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/drivers/scsi/aic7xxx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/scsi/snic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/scsi/fcoe"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/scsi/mvsas"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/scsi/device_handler"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/scsi/ufs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/scsi/ibmvscsi_tgt"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/scsi/osd"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/scsi/bnx2i"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/scsi/qedi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/scsi/aic94xx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/scsi/lpfc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/scsi/csiostor"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/scsi/hisi_sas"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/scsi/qla2xxx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/scsi/fnic"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/scsi/esas2r"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/scsi/libsas"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/scsi/libfc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/scsi/pcmcia"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/scsi/cxgbi/cxgb4i"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/scsi/cxgbi/cxgb3i"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/drivers/scsi/cxgbi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/scsi/bnx2fc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/scsi/megaraid"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/scsi/pm8001"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/scsi/arm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/scsi/qedf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/scsi/isci"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/scsi/sym53c8xx_2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/scsi/mpt3sas"}, {"size": 528, "name": "/usr/src/linux-headers-4.15.0-66/drivers/scsi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/amba"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/sh/maple"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/sh/superhyway"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/sh/clk"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/sh/intc"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/drivers/sh"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/thermal/int340x_thermal"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/thermal/st"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/thermal/qcom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/thermal/tegra"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/thermal/broadcom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/thermal/samsung"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/thermal/ti-soc-thermal"}, {"size": 112, "name": "/usr/src/linux-headers-4.15.0-66/drivers/thermal"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/fpga"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/eisa"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/uwb/i1480/dfu"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/uwb/i1480"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/drivers/uwb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/tc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/misc/cxl"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/misc/ibmasm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/misc/vmw_vmci"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/misc/sgi-gru"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/misc/ti-st"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/misc/lis3lv02d"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/misc/cb710"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/misc/sgi-xp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/misc/eeprom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/misc/cardreader"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/misc/c2port"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/misc/altera-stapl"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/misc/ocxl"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/misc/genwqe"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/misc/mic/cosm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/misc/mic/scif"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/misc/mic/vop"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/misc/mic/card"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/misc/mic/bus"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/misc/mic/host"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/misc/mic/cosm_client"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-66/drivers/misc/mic"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/misc/echo"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/misc/mei"}, {"size": 280, "name": "/usr/src/linux-headers-4.15.0-66/drivers/misc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/of/unittest-data"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/drivers/of"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/hid/usbhid"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/hid/i2c-hid"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/hid/intel-ish-hid"}, {"size": 80, "name": "/usr/src/linux-headers-4.15.0-66/drivers/hid"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/md/persistent-data"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/md/bcache"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-66/drivers/md"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/vfio/platform/reset"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/drivers/vfio/platform"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/vfio/mdev"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/vfio/pci"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-66/drivers/vfio"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/parisc"}, {"size": 76, "name": "/usr/src/linux-headers-4.15.0-66/drivers/mfd"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/powercap"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/target/tcm_fc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/target/sbp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/target/iscsi/cxgbit"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/drivers/target/iscsi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/target/loopback"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-66/drivers/target"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/nvmem"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/clk/spear"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/clk/nxp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/clk/st"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/clk/loongson1"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/clk/mxs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/clk/uniphier"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/clk/ti"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/clk/qcom"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/clk/at91"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/clk/mmp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/clk/bcm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/clk/h8300"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/clk/versatile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/clk/berlin"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/clk/ingenic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/clk/microchip"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/clk/tegra"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/clk/imx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/clk/keystone"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/clk/axis"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/clk/sunxi-ng"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/clk/ux500"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/clk/imgtec"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/clk/zte"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/clk/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/clk/pxa"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/clk/renesas"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/clk/sirf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/clk/axs10x"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/clk/mediatek"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/clk/samsung"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/clk/pistachio"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/clk/mvebu"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/clk/hisilicon"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/clk/rockchip"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/clk/sunxi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/clk/zynq"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/clk/socfpga"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/clk/meson"}, {"size": 396, "name": "/usr/src/linux-headers-4.15.0-66/drivers/clk"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/ipack/carriers"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/ipack/devices"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/drivers/ipack"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/iio/buffer"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/iio/counter"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/iio/potentiostat"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/iio/frequency"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/iio/humidity"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/iio/common/ssp_sensors"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/iio/common/hid-sensors"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/iio/common/st_sensors"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/iio/common/ms_sensors"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/iio/common/cros_ec_sensors"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-66/drivers/iio/common"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/drivers/iio/adc"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/iio/magnetometer"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/iio/multiplexer"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/drivers/iio/light"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/iio/potentiometer"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/iio/proximity"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/iio/dummy"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/iio/gyro"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/iio/orientation"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/iio/chemical"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/drivers/iio/accel"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/iio/pressure"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/iio/amplifiers"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/iio/health"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/iio/temperature"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/iio/imu/inv_mpu6050"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/iio/imu/bmi160"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/iio/imu/st_lsm6dsx"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/drivers/iio/imu"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/drivers/iio/dac"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/iio/trigger"}, {"size": 452, "name": "/usr/src/linux-headers-4.15.0-66/drivers/iio"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/mmc/core"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-66/drivers/mmc/host"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-66/drivers/mmc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/dma/bestcomm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/dma/hsu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/dma/ioat"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/dma/qcom"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/dma/ipu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/dma/ppc4xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/dma/sh"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/dma/dw"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/dma/xilinx"}, {"size": 120, "name": "/usr/src/linux-headers-4.15.0-66/drivers/dma"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/firmware/efi/libstub"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/firmware/efi/test"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/drivers/firmware/efi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/firmware/tegra"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/firmware/broadcom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/firmware/google"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/firmware/meson"}, {"size": 100, "name": "/usr/src/linux-headers-4.15.0-66/drivers/firmware"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/infiniband/sw/rxe"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/infiniband/sw/rdmavt"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/drivers/infiniband/sw"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/infiniband/core"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/infiniband/hw/hns"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/infiniband/hw/hfi1"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/infiniband/hw/qib"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/infiniband/hw/cxgb3"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/infiniband/hw/i40iw"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/infiniband/hw/ocrdma"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/infiniband/hw/qedr"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/infiniband/hw/mlx5"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/infiniband/hw/nes"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/infiniband/hw/mlx4"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/infiniband/hw/vmw_pvrdma"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/infiniband/hw/bnxt_re"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/infiniband/hw/mthca"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/infiniband/hw/cxgb4"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/infiniband/hw/usnic"}, {"size": 188, "name": "/usr/src/linux-headers-4.15.0-66/drivers/infiniband/hw"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/infiniband/ulp/isert"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/infiniband/ulp/iser"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/infiniband/ulp/srp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/infiniband/ulp/ipoib"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/infiniband/ulp/srpt"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/infiniband/ulp/opa_vnic"}, {"size": 80, "name": "/usr/src/linux-headers-4.15.0-66/drivers/infiniband/ulp"}, {"size": 320, "name": "/usr/src/linux-headers-4.15.0-66/drivers/infiniband"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/acpi/acpica"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/acpi/arm64"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/acpi/dptf"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/acpi/apei"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/acpi/nfit"}, {"size": 84, "name": "/usr/src/linux-headers-4.15.0-66/drivers/acpi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/rpmsg"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/ssb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/connector"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-66/drivers/ata"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/w1/slaves"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/w1/masters"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-66/drivers/w1"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/drivers/pcmcia"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/usb/dwc3"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/usb/dwc2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/usb/wusbcore"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/usb/common"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/usb/usbip"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-66/drivers/usb/serial"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/usb/chipidea"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/usb/atm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/usb/mon"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/usb/class"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/usb/musb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/usb/renesas_usbhs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/usb/early"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/usb/c67x00"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/usb/core"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/usb/mtu3"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/usb/phy"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/usb/image"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/usb/host/whci"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-66/drivers/usb/host"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/usb/misc/sisusbvga"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/drivers/usb/misc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/usb/typec/ucsi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/usb/typec/fusb302"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/drivers/usb/typec"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/usb/isp1760"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/usb/storage"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/usb/gadget/udc/bdc"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-66/drivers/usb/gadget/udc"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/drivers/usb/gadget/legacy"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/usb/gadget/function"}, {"size": 104, "name": "/usr/src/linux-headers-4.15.0-66/drivers/usb/gadget"}, {"size": 500, "name": "/usr/src/linux-headers-4.15.0-66/drivers/usb"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-66/drivers/ide"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/cdrom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/zorro"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/drivers/edac"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/lightnvm"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/uio"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-66/drivers/cpufreq"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/rtl8712"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/fwserial"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/lustre/lustre/lov"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/lustre/lustre/ptlrpc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/lustre/lustre/obdclass"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/lustre/lustre/lmv"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/lustre/lustre/fid"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/lustre/lustre/mgc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/lustre/lustre/fld"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/lustre/lustre/osc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/lustre/lustre/llite"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/lustre/lustre/mdc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/lustre/lustre/obdecho"}, {"size": 100, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/lustre/lustre"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/lustre/lnet/lnet"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/lustre/lnet/libcfs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/lustre/lnet/selftest"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/lustre/lnet/klnds/socklnd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/lustre/lnet/klnds/o2iblnd"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/lustre/lnet/klnds"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/lustre/lnet"}, {"size": 172, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/lustre"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/rtl8188eu"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/pi433"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/vboxvideo"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/gdm724x"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/skein"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/olpc_dcon"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/dgnc"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/irda/drivers"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/irda/net/ircomm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/irda/net/irlan"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/irda/net/irnet"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/irda/net"}, {"size": 76, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/irda"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/goldfish"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/comedi/drivers"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/comedi/kcomedilib"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/comedi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/nvec"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/vt6655"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/octeon"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/wilc1000"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/wlan-ng"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/vc04_services/bcm2835-camera"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/vc04_services/bcm2835-audio"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/vc04_services"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/clocking-wizard"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/most/hdm-dim2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/most/mostcore"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/most/aim-network"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/most/hdm-usb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/most/aim-sound"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/most/hdm-i2c"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/most/aim-v4l2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/most/aim-cdev"}, {"size": 108, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/most"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/xgifb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/mt29f_spinand"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/android/ion"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/android"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/fbtft"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/greybus/tools"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/greybus"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/fsl-mc/bus/dpio"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/fsl-mc/bus"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/fsl-mc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/ccree"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/rtlwifi/rtl8822be"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/rtlwifi/btcoexist"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/rtlwifi"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/speakup"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/sm750fb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/gs_fpgaboot"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/octeon-usb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/ks7010"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/emxx_udc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/rtl8192u/ieee80211"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/rtl8192u"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/board"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/iio/frequency"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/iio/adc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/iio/cdc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/iio/addac"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/iio/light"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/iio/impedance-analyzer"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/iio/gyro"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/iio/resolver"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/iio/accel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/iio/meter"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/iio/trigger"}, {"size": 144, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/iio"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/unisys/visorbus"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/unisys/visorinput"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/unisys/visorhba"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/unisys/visornic"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/unisys"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/rtl8723bs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/typec"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/rtl8192e/rtl8192e"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/rtl8192e"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/fsl-dpaa2/ethernet"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/fsl-dpaa2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/netlogic"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/vme/devices"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/vme"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/rts5208"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/media/atomisp/i2c/ov5693"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/media/atomisp/i2c"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/media/atomisp/platform/intel-mid"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/media/atomisp/platform"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/media/atomisp/pci/atomisp2/css2400"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/media/atomisp/pci/atomisp2"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/media/atomisp/pci"}, {"size": 92, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/media/atomisp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/media/davinci_vpfe"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/media/imx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/media/lirc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/media/omap4iss"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/media/cxd2099"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/media/bcm2048"}, {"size": 176, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/media"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging/vt6656"}, {"size": 1440, "name": "/usr/src/linux-headers-4.15.0-66/drivers/staging"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/rapidio/devices"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/rapidio/switches"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/drivers/rapidio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/tty/vt"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/drivers/tty/serial/8250"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/tty/serial/jsm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/tty/serial/cpm_uart"}, {"size": 112, "name": "/usr/src/linux-headers-4.15.0-66/drivers/tty/serial"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/tty/ipwireless"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/tty/hvc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/tty/serdev"}, {"size": 180, "name": "/usr/src/linux-headers-4.15.0-66/drivers/tty"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/vme/boards"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/vme/bridges"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/drivers/vme"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/hv"}, {"size": 76, "name": "/usr/src/linux-headers-4.15.0-66/drivers/watchdog"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/remoteproc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/cpuidle/governors"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/drivers/cpuidle"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/isdn/hysdn"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/isdn/gigaset"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/isdn/isdnloop"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/isdn/capi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/isdn/mISDN"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/drivers/isdn/hisax"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/isdn/i4l"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/isdn/hardware/mISDN"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/isdn/hardware/eicon"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/isdn/hardware/avm"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/drivers/isdn/hardware"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/isdn/divert"}, {"size": 164, "name": "/usr/src/linux-headers-4.15.0-66/drivers/isdn"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/pci/dwc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/pci/switch"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/pci/hotplug"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/pci/endpoint/functions"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/drivers/pci/endpoint"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/pci/pcie/aer"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/drivers/pci/pcie"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/pci/host"}, {"size": 124, "name": "/usr/src/linux-headers-4.15.0-66/drivers/pci"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/drivers/pwm"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/mailbox"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/spi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/firewire"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/tuners"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/cec"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/rc/img-ir"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/rc/keymaps"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/rc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/common/b2c2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/common/saa7146"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/common/v4l2-tpg"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/common/siano"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/common"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/radio/wl128x"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/radio/si4713"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/radio/si470x"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/radio"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/i2c/m5mols"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/i2c/adv748x"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/i2c/soc_camera"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/i2c/smiapp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/i2c/cx25840"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/i2c/s5c73m3"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/i2c/et8ek8"}, {"size": 112, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/i2c"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/platform/vimc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/platform/tegra-cec"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/platform/rcar-vin"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/platform/omap3isp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/platform/davinci"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/platform/soc_camera"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/platform/sti/cec"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/platform/sti/bdisp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/platform/sti/hva"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/platform/sti/delta"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/platform/sti/c8sectpfe"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/platform/sti"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/platform/mtk-vpu"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/platform/am437x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/platform/stm32"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/platform/qcom/venus"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/platform/qcom/camss-8x16"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/platform/qcom"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/platform/s5p-g2d"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/platform/s3c-camif"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/platform/cec-gpio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/platform/s5p-cec"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/platform/vsp1"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/platform/mtk-vcodec"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/platform/vivid"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/platform/exynos-gsc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/platform/s5p-mfc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/platform/blackfin"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/platform/marvell-ccic"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/platform/omap"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/platform/mtk-jpeg"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/platform/coda"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/platform/mtk-mdp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/platform/s5p-jpeg"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/platform/ti-vpe"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/platform/rockchip/rga"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/platform/rockchip"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/platform/atmel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/platform/exynos4-is"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/platform/meson"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/platform/xilinx"}, {"size": 396, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/platform"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/v4l2-core"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/mmc/siano"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/mmc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/dvb-core"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/usb/dvb-usb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/usb/ttusb-dec"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/usb/au0828"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/usb/stkwebcam"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/usb/usbtv"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/usb/pwc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/usb/gspca/gl860"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/usb/gspca/m5602"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/usb/gspca/stv06xx"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/usb/gspca"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/usb/b2c2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/usb/rainshadow-cec"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/usb/ttusb-budget"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/usb/hackrf"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/usb/uvc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/usb/usbvision"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/usb/em28xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/usb/zr364xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/usb/airspy"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/usb/stk1160"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/usb/s2255"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/usb/hdpvr"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/usb/pvrusb2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/usb/cx231xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/usb/tm6000"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/usb/cpia2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/usb/msi2500"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/usb/as102"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/usb/pulse8-cec"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/usb/siano"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/usb/go7007"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/usb/dvb-usb-v2"}, {"size": 424, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/usb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/dvb-frontends/drx39xyj"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/dvb-frontends"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/pci/dm1105"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/pci/meye"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/pci/ngene"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/pci/smipcie"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/pci/cx18"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/pci/tw68"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/pci/ivtv"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/pci/solo6x10"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/pci/pt3"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/pci/pluto2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/pci/b2c2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/pci/bt8xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/pci/saa7146"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/pci/netup_unidvb"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/pci/ttpci"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/pci/sta2x11"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/pci/pt1"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/pci/saa7134"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/pci/cobalt"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/pci/dt3155"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/pci/zoran"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/pci/mantis"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/pci/cx88"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/pci/saa7164"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/pci/cx23885"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/pci/tw5864"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/pci/cx25821"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/pci/tw686x"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/pci/ddbridge"}, {"size": 364, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media/pci"}, {"size": 1636, "name": "/usr/src/linux-headers-4.15.0-66/drivers/media"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/drivers/sfi"}, {"size": 16352, "name": "/usr/src/linux-headers-4.15.0-66/drivers"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/samples/hidraw"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/samples/kfifo"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/samples/timers"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/samples/livepatch"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/samples/trace_printk"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/samples/kobject"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/samples/vfio-mdev"}, {"size": 80, "name": "/usr/src/linux-headers-4.15.0-66/samples/bpf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/samples/kprobes"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/samples/auxdisplay"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/samples/hw_breakpoint"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/samples/trace_events"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/samples/blackfin"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-66/samples/pktgen"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/samples/configfs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/samples/rpmsg"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/samples/uhid"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/samples/connector"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/samples/v4l"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/samples/kdb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/samples/seccomp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/samples/mic/mpssd"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/samples/mic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/samples/mei"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/samples/watchdog"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/samples/statx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/samples/sockmap"}, {"size": 332, "name": "/usr/src/linux-headers-4.15.0-66/samples"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/ipc"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/Documentation/sphinx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/Documentation/features"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/Documentation/EDID"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/Documentation/s390"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/Documentation/kbuild"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/Documentation/trace/postprocess"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-66/Documentation/trace"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/Documentation/aoe"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/Documentation/scsi/scsi_transport_srp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/Documentation/scsi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/Documentation/cdrom"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/Documentation/filesystems/cifs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/Documentation/filesystems"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/Documentation/media"}, {"size": 176, "name": "/usr/src/linux-headers-4.15.0-66/Documentation"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/ubuntu/vbox/vboxvideo"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/ubuntu/vbox/vboxguest"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/ubuntu/vbox/vboxsf"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-66/ubuntu/vbox"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/ubuntu/include"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/ubuntu/hio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/ubuntu/xr-usb-serial"}, {"size": 112, "name": "/usr/src/linux-headers-4.15.0-66/ubuntu"}, {"size": 68, "name": "/usr/src/linux-headers-4.15.0-66/init"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/wimax"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/nfc/nci"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/nfc/hci"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/net/nfc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/bluetooth/hidp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/bluetooth/rfcomm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/bluetooth/bnep"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/bluetooth/cmtp"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-66/net/bluetooth"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/tipc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/qrtr"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/net/key"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/netlink"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/net/dccp/ccids"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/net/dccp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/net/rose"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/xfrm"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/net/sched"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/kcm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/decnet/netfilter"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/net/decnet"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/can"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/unix"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/sctp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/packet"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/net/sunrpc/auth_gss"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/net/sunrpc/xprtrdma"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/net/sunrpc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/mpls"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/rds"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/net/wireless"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/atm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/psample"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/mac802154"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/net/bpf"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/net/ipv4/netfilter"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-66/net/ipv4"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/iucv"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/smc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/dns_resolver"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/dsa"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/nsh"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/net/ethernet"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/vmw_vsock"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/rfkill"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/llc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/switchdev"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/net/netrom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/openvswitch"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/ieee802154/6lowpan"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/net/ieee802154"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/net/core"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/ife"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/9p"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/x25"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/phonet"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/rxrpc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/net/appletalk"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/lapb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/netlabel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/ipx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/batman-adv"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/l3mdev"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/strparser"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/802"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/8021q"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/l2tp"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/net/bridge/netfilter"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/net/bridge"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/hsr"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/6lowpan"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/net/mac80211"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/ncsi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/caif"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/dcb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/tls"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/net/netfilter/ipvs"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/net/netfilter/ipset"}, {"size": 104, "name": "/usr/src/linux-headers-4.15.0-66/net/netfilter"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/net/ceph"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/net/ipv6/ila"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/net/ipv6/netfilter"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/net/ipv6"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/net/ax25"}, {"size": 1152, "name": "/usr/src/linux-headers-4.15.0-66/net"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/spi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/power/cpupower/utils"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/power/cpupower/debug/x86_64"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/power/cpupower/debug/i386"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/power/cpupower/debug/kernel"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/tools/power/cpupower/debug"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/tools/power/cpupower/bench"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-66/tools/power/cpupower"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/power/pm-graph"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/power/x86/x86_energy_perf_policy"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/power/x86/turbostat"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/tools/power/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/power/acpi/tools/acpidbg"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/power/acpi/tools/acpidump"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/power/acpi/tools/ec"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/tools/power/acpi/tools"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-66/tools/power/acpi"}, {"size": 148, "name": "/usr/src/linux-headers-4.15.0-66/tools/power"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/tools/perf/Documentation"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-66/tools/perf/trace/beauty"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/tools/perf/trace"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/tools/perf/tests/shell/lib"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/tools/perf/tests/shell"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/tools/perf/tests"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/perf/util"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/perf/scripts/perl/Perf-Trace-Util"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-66/tools/perf/scripts/perl"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/tools/perf/scripts"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/perf/arch/s390"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/perf/arch/arm64"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/perf/arch/sparc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/perf/arch/xtensa"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/perf/arch/sh"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/perf/arch/x86/tests"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/perf/arch/x86/entry/syscalls"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/tools/perf/arch/x86/entry"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/tools/perf/arch/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/perf/arch/arm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/perf/arch/powerpc"}, {"size": 88, "name": "/usr/src/linux-headers-4.15.0-66/tools/perf/arch"}, {"size": 336, "name": "/usr/src/linux-headers-4.15.0-66/tools/perf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/firewire"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/gpio"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/tools/build/feature"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/build/tests/ex"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/tools/build/tests"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-66/tools/build"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/accounting"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/bpf/bpftool/Documentation"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/tools/bpf/bpftool"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/tools/bpf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/time"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/leds"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/tools/virtio/ringtest"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/virtio/vhost_test"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/virtio/virtio-trace"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/tools/virtio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/wmi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/cgroup"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/thermal/tmon"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/tools/thermal"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/kvm/kvm_stat"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/tools/kvm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/iio"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/tools/scripts"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/tools/vm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/pcmcia"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/tools/usb/usbip/vudc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/usb/usbip/libsrc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/usb/usbip/src"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-66/tools/usb/usbip"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/usb/ffs-aio-example/multibuff/host_app"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/tools/usb/ffs-aio-example/multibuff"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/usb/ffs-aio-example/simple/host_app"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/tools/usb/ffs-aio-example/simple"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/tools/usb/ffs-aio-example"}, {"size": 88, "name": "/usr/src/linux-headers-4.15.0-66/tools/usb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/nfsd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/lib/subcmd"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/tools/lib/bpf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/lib/api"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/tools/lib/lockdep"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/tools/lib/traceevent"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-66/tools/lib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/laptop/freefall"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/laptop/dslm"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/tools/laptop"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/tools/hv"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/tools/objtool"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/memory-hotplug"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/breakpoints"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/mqueue"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/ntb"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/gpio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/ftrace"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/drivers/gpu"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/drivers"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/ipc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/timers"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/media_tests"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/sigaltstack"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/ptp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/networking/timestamping"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/networking"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/bpf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/kcmp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/splice"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/kmod"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/android/ion"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/android"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/net"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/size"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/mount"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/efivarfs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/prctl"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/futex/functional"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/futex"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/pstore"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/memfd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/vDSO"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/static_keys"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/sysctl"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/cpu-hotplug"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/ptrace"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/x86"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/firmware"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/membarrier"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/locking"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/vm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/sync"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/intel_pstate"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/seccomp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/user"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/zram"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/capabilities"}, {"size": 104, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/rcutorture/bin"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/rcutorture/configs/rcuperf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/rcutorture/configs/rcu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/rcutorture/configs/lock"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/rcutorture/configs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/rcutorture/formal/srcu-cbmc/tests/store_buffering"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/rcutorture/formal/srcu-cbmc/tests"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/rcutorture/formal/srcu-cbmc"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/rcutorture/formal"}, {"size": 164, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/rcutorture"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/lib"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/cpufreq"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/exec"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/netfilter"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/nsfs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/watchdog"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/filesystems"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/powerpc/alignment"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/powerpc/cache_shape"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/powerpc/benchmarks"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/powerpc/syscalls"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/powerpc/switch_endian"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/powerpc/math"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/powerpc/mm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/powerpc/signal"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/powerpc/pmu/ebb"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/powerpc/pmu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/powerpc/vphn"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/powerpc/stringloops"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/powerpc/primitives"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/powerpc/ptrace"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/powerpc/copyloops"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/powerpc/scripts"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/powerpc/dscr"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/powerpc/tm"}, {"size": 152, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/powerpc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests/ia64"}, {"size": 1052, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/selftests"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/vsock"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/nvdimm/test"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/nvdimm"}, {"size": 108, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/ktest"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/scatterlist"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/radix-tree"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing/fault-injection"}, {"size": 1220, "name": "/usr/src/linux-headers-4.15.0-66/tools/testing"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/tools/pci"}, {"size": 2176, "name": "/usr/src/linux-headers-4.15.0-66/tools"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/sound/spi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/spear"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/generic"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/intel/boards"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/intel/baytrail"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/intel/common"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/intel/haswell"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/intel/atom/sst"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/intel/atom"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/intel/skylake"}, {"size": 80, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/intel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/txx9"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/davinci"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/mxs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/sti"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/dwc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/qcom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/bcm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/stm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/kirkwood"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/tegra"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/img"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/adi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/au1x"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/ux500"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/fsl"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/xtensa"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/sh/rcar"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/sh"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/blackfin"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/cirrus"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/zte"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/omap"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/codecs"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/pxa"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/sirf"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/amd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/mediatek/common"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/mediatek/mt2701"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/mediatek/mt8173"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/mediatek"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/samsung"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/nuc900"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/hisilicon"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/rockchip"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/atmel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/sunxi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc/jz4740"}, {"size": 616, "name": "/usr/src/linux-headers-4.15.0-66/sound/soc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/firewire/oxfw"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/firewire/bebob"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/firewire/tascam"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/firewire/digi00x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/firewire/motu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/firewire/fireworks"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/firewire/dice"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/firewire/fireface"}, {"size": 80, "name": "/usr/src/linux-headers-4.15.0-66/sound/firewire"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/drivers/opl4"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/drivers/pcsp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/drivers/vx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/drivers/mpu401"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/drivers/opl3"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-66/sound/drivers"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/sound/ppc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/i2c/other"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/sound/i2c"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/sound/ac97"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/sound/aoa/fabrics"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/aoa/soundbus/i2sbus"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/sound/aoa/soundbus"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/aoa/core"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/sound/aoa/codecs"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-66/sound/aoa"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/core/seq/oss"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/sound/core/seq"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/core/oss"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-66/sound/core"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/sound/sparc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/isa/cs423x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/isa/es1688"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/isa/opti9xx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/isa/sb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/isa/galaxy"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/isa/gus"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/isa/wavefront"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/isa/ad1816a"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/isa/wss"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/isa/msnd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/isa/ad1848"}, {"size": 112, "name": "/usr/src/linux-headers-4.15.0-66/sound/isa"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/sound/sh"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/sound/mips"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/sound/parisc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/sound/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/synth/emux"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/sound/synth"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/pcmcia/pdaudiocf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/pcmcia/vx"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/sound/pcmcia"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/sound/usb/line6"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/usb/usx2y"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/usb/hiface"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/usb/bcd2000"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/usb/misc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/usb/caiaq"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/usb/6fire"}, {"size": 76, "name": "/usr/src/linux-headers-4.15.0-66/sound/usb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/hda/ext"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/sound/hda"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/sound/oss/dmasound"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/sound/oss"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/sound/atmel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/sound/arm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/pci/korg1212"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/pci/ymfpci"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/pci/nm256"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/pci/aw2"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/pci/ali5451"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/pci/asihpi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/pci/rme9652"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/pci/ice1712"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/pci/lx6464es"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/pci/ac97"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/pci/riptide"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/pci/vx222"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/pci/emu10k1"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/pci/ca0106"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/pci/au88x0"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/pci/cs5535audio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/pci/ctxfi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/pci/trident"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/pci/pcxhr"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/pci/lola"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/pci/echoaudio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/pci/mixart"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/pci/oxygen"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/sound/pci/cs46xx"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/sound/pci/hda"}, {"size": 244, "name": "/usr/src/linux-headers-4.15.0-66/sound/pci"}, {"size": 1524, "name": "/usr/src/linux-headers-4.15.0-66/sound"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/mm/kasan"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/mm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/security/yama"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/security/tomoyo"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/security/integrity/evm"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/security/integrity/ima"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-66/security/integrity"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/security/apparmor"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/security/smack"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/security/loadpin"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/security/keys/encrypted-keys"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/security/keys"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/security/selinux"}, {"size": 164, "name": "/usr/src/linux-headers-4.15.0-66/security"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/include/soc/at91"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/include/soc/sa1100"}, {"size": 108, "name": "/usr/src/linux-headers-4.15.0-66/include/soc/tegra"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/include/soc/imx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/include/soc/brcmstb"}, {"size": 88, "name": "/usr/src/linux-headers-4.15.0-66/include/soc/fsl/qe"}, {"size": 144, "name": "/usr/src/linux-headers-4.15.0-66/include/soc/fsl"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/include/soc/nps"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/include/soc/mediatek"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/include/soc/rockchip"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/include/soc/arc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/include/soc/bcm2835"}, {"size": 372, "name": "/usr/src/linux-headers-4.15.0-66/include/soc"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/include/uapi/rdma/hfi"}, {"size": 168, "name": "/usr/src/linux-headers-4.15.0-66/include/uapi/rdma"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/include/uapi/mtd"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/include/uapi/linux/spi"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/include/uapi/linux/wimax"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/include/uapi/linux/hdlc"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/include/uapi/linux/raid"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/include/uapi/linux/cifs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/include/uapi/linux/sched"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-66/include/uapi/linux/can"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-66/include/uapi/linux/netfilter_ipv4"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/include/uapi/linux/sunrpc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/include/uapi/linux/hsi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/include/uapi/linux/byteorder"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/include/uapi/linux/android"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-66/include/uapi/linux/tc_act"}, {"size": 88, "name": "/usr/src/linux-headers-4.15.0-66/include/uapi/linux/dvb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/include/uapi/linux/iio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/include/uapi/linux/mmc"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/include/uapi/linux/netfilter_arp"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/include/uapi/linux/genwqe"}, {"size": 144, "name": "/usr/src/linux-headers-4.15.0-66/include/uapi/linux/usb"}, {"size": 80, "name": "/usr/src/linux-headers-4.15.0-66/include/uapi/linux/netfilter_bridge"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/include/uapi/linux/nfsd"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/include/uapi/linux/tc_ematch"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/include/uapi/linux/caif"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/include/uapi/linux/netfilter/ipset"}, {"size": 428, "name": "/usr/src/linux-headers-4.15.0-66/include/uapi/linux/netfilter"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-66/include/uapi/linux/netfilter_ipv6"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/include/uapi/linux/isdn"}, {"size": 5280, "name": "/usr/src/linux-headers-4.15.0-66/include/uapi/linux"}, {"size": 204, "name": "/usr/src/linux-headers-4.15.0-66/include/uapi/asm-generic"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/include/uapi/video"}, {"size": 204, "name": "/usr/src/linux-headers-4.15.0-66/include/uapi/sound"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/include/uapi/xen"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-66/include/uapi/scsi/fc"}, {"size": 96, "name": "/usr/src/linux-headers-4.15.0-66/include/uapi/scsi"}, {"size": 396, "name": "/usr/src/linux-headers-4.15.0-66/include/uapi/drm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/include/uapi/misc"}, {"size": 6456, "name": "/usr/src/linux-headers-4.15.0-66/include/uapi"}, {"size": 448, "name": "/usr/src/linux-headers-4.15.0-66/include/rdma"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/include/memory"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/include/ras"}, {"size": 196, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/spi"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/wimax"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/soc/ti"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/soc/qcom"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/soc/actions"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/soc/dove"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/soc/brcmstb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/soc/renesas"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/soc/mediatek"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/soc/samsung"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/soc/sunxi"}, {"size": 152, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/soc"}, {"size": 88, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/power"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/perf"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/rtc"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/gpio"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/raid"}, {"size": 344, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/mlx5"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/avf"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/crush"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/pinctrl"}, {"size": 172, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/regulator"}, {"size": 144, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/sched"}, {"size": 272, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/mtd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/reset"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/can/platform"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/can/dev"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/can"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/netfilter_ipv4"}, {"size": 228, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/sunrpc"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/hsi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/i2c"}, {"size": 96, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/mlx4"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/byteorder"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/dsa"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/extcon"}, {"size": 104, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/input"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/mux"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/phy/tegra"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/phy"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/platform_data/x86"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/platform_data/media"}, {"size": 1084, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/platform_data"}, {"size": 100, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/bcma"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/fsl/bestcomm"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/fsl"}, {"size": 100, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/irqchip"}, {"size": 80, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/amba"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/fpga"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/ulpi"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/uwb"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/unaligned"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/mfd/da9062"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/mfd/mt6323"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/mfd/da9063"}, {"size": 212, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/mfd/wm831x"}, {"size": 500, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/mfd/arizona"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/mfd/da9150"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/mfd/da9055"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/mfd/mt6397"}, {"size": 308, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/mfd/wm8994"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/mfd/pcf50633"}, {"size": 132, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/mfd/wm8350"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/mfd/syscon"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/mfd/da9052"}, {"size": 68, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/mfd/samsung"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/mfd/abx500"}, {"size": 2988, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/mfd"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/clk"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/iio/frequency"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/iio/common"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/iio/adc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/iio/magnetometer"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/iio/gyro"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/iio/timer"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/iio/accel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/iio/imu"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/iio/dac"}, {"size": 268, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/iio"}, {"size": 108, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/mmc"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/dma"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/firmware/meson"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/firmware"}, {"size": 280, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/qed"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/decompress"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/rpmsg"}, {"size": 132, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/ssb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/netfilter_arp"}, {"size": 476, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/usb"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/netfilter_bridge"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/netfilter/ipset"}, {"size": 200, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/netfilter"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/lockd"}, {"size": 192, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/ceph"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/remoteproc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/netfilter_ipv6"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/isdn"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/include/linux/mailbox"}, {"size": 19528, "name": "/usr/src/linux-headers-4.15.0-66/include/linux"}, {"size": 92, "name": "/usr/src/linux-headers-4.15.0-66/include/asm-generic/bitops"}, {"size": 708, "name": "/usr/src/linux-headers-4.15.0-66/include/asm-generic"}, {"size": 580, "name": "/usr/src/linux-headers-4.15.0-66/include/video"}, {"size": 872, "name": "/usr/src/linux-headers-4.15.0-66/include/trace/events"}, {"size": 912, "name": "/usr/src/linux-headers-4.15.0-66/include/trace"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/include/dt-bindings/soc"}, {"size": 104, "name": "/usr/src/linux-headers-4.15.0-66/include/dt-bindings/power"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/include/dt-bindings/gpio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/include/dt-bindings/spmi"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/include/dt-bindings/interrupt-controller"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/include/dt-bindings/memory"}, {"size": 136, "name": "/usr/src/linux-headers-4.15.0-66/include/dt-bindings/pinctrl"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/include/dt-bindings/regulator"}, {"size": 228, "name": "/usr/src/linux-headers-4.15.0-66/include/dt-bindings/reset"}, {"size": 1164, "name": "/usr/src/linux-headers-4.15.0-66/include/dt-bindings/clock"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/include/dt-bindings/i2c"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/include/dt-bindings/net"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/include/dt-bindings/sound"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/include/dt-bindings/leds"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/include/dt-bindings/input"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/include/dt-bindings/mux"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/include/dt-bindings/phy"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/include/dt-bindings/display"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/include/dt-bindings/thermal"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/include/dt-bindings/mips"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-66/include/dt-bindings/mfd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/include/dt-bindings/clk"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/include/dt-bindings/iio/adc"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/include/dt-bindings/iio"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/include/dt-bindings/dma"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/include/dt-bindings/arm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/include/dt-bindings/pwm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/include/dt-bindings/mailbox"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/include/dt-bindings/media"}, {"size": 2068, "name": "/usr/src/linux-headers-4.15.0-66/include/dt-bindings"}, {"size": 120, "name": "/usr/src/linux-headers-4.15.0-66/include/math-emu"}, {"size": 76, "name": "/usr/src/linux-headers-4.15.0-66/include/net/nfc"}, {"size": 176, "name": "/usr/src/linux-headers-4.15.0-66/include/net/bluetooth"}, {"size": 168, "name": "/usr/src/linux-headers-4.15.0-66/include/net/sctp"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/include/net/iucv"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-66/include/net/tc_act"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-66/include/net/9p"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/include/net/phonet"}, {"size": 76, "name": "/usr/src/linux-headers-4.15.0-66/include/net/caif"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/include/net/netfilter/ipv4"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/include/net/netfilter/ipv6"}, {"size": 272, "name": "/usr/src/linux-headers-4.15.0-66/include/net/netfilter"}, {"size": 80, "name": "/usr/src/linux-headers-4.15.0-66/include/net/netns"}, {"size": 3064, "name": "/usr/src/linux-headers-4.15.0-66/include/net"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/include/sound/ac97"}, {"size": 1188, "name": "/usr/src/linux-headers-4.15.0-66/include/sound"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/include/clocksource"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/include/xen/interface/hvm"}, {"size": 228, "name": "/usr/src/linux-headers-4.15.0-66/include/xen/interface/io"}, {"size": 432, "name": "/usr/src/linux-headers-4.15.0-66/include/xen/interface"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/include/xen/arm"}, {"size": 544, "name": "/usr/src/linux-headers-4.15.0-66/include/xen"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-66/include/crypto/internal"}, {"size": 392, "name": "/usr/src/linux-headers-4.15.0-66/include/crypto"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-66/include/scsi/fc"}, {"size": 580, "name": "/usr/src/linux-headers-4.15.0-66/include/scsi"}, {"size": 120, "name": "/usr/src/linux-headers-4.15.0-66/include/drm/ttm"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/include/drm/i2c"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/include/drm/bridge"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/include/drm/tinydrm"}, {"size": 1008, "name": "/usr/src/linux-headers-4.15.0-66/include/drm"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/include/misc"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/include/kvm"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-66/include/target/iscsi"}, {"size": 96, "name": "/usr/src/linux-headers-4.15.0-66/include/target"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/include/acpi/platform"}, {"size": 476, "name": "/usr/src/linux-headers-4.15.0-66/include/acpi"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-66/include/pcmcia"}, {"size": 92, "name": "/usr/src/linux-headers-4.15.0-66/include/media/davinci"}, {"size": 216, "name": "/usr/src/linux-headers-4.15.0-66/include/media/i2c"}, {"size": 96, "name": "/usr/src/linux-headers-4.15.0-66/include/media/drv-intf"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/include/media/blackfin"}, {"size": 988, "name": "/usr/src/linux-headers-4.15.0-66/include/media"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-66/include/keys"}, {"size": 39780, "name": "/usr/src/linux-headers-4.15.0-66/include"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/crypto/async_tx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/crypto/asymmetric_keys"}, {"size": 88, "name": "/usr/src/linux-headers-4.15.0-66/crypto"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/kernel/power"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/kernel/irq"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/kernel/printk"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/kernel/sched"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/kernel/livepatch"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/kernel/bpf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/kernel/events"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/kernel/trace"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/kernel/time"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/kernel/cgroup"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/kernel/debug/kdb"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/kernel/debug"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/kernel/locking"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/kernel/rcu"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/kernel/gcov"}, {"size": 220, "name": "/usr/src/linux-headers-4.15.0-66/kernel"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/block/partitions"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-66/block"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/certs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/firmware"}, {"size": 156, "name": "/usr/src/linux-headers-4.15.0-66/scripts/mod"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/scripts/ksymoops"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/scripts/package"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/scripts/coccinelle/iterators"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/scripts/coccinelle/locks"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/scripts/coccinelle/api/alloc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/scripts/coccinelle/api/debugfs"}, {"size": 88, "name": "/usr/src/linux-headers-4.15.0-66/scripts/coccinelle/api"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/scripts/coccinelle/tests"}, {"size": 76, "name": "/usr/src/linux-headers-4.15.0-66/scripts/coccinelle/misc"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/scripts/coccinelle/null"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/scripts/coccinelle/free"}, {"size": 288, "name": "/usr/src/linux-headers-4.15.0-66/scripts/coccinelle"}, {"size": 208, "name": "/usr/src/linux-headers-4.15.0-66/scripts/genksyms"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/scripts/basic"}, {"size": 136, "name": "/usr/src/linux-headers-4.15.0-66/scripts/gcc-plugins"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/scripts/tracing"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-66/scripts/gdb/linux"}, {"size": 84, "name": "/usr/src/linux-headers-4.15.0-66/scripts/gdb"}, {"size": 92, "name": "/usr/src/linux-headers-4.15.0-66/scripts/kconfig/lxdialog"}, {"size": 692, "name": "/usr/src/linux-headers-4.15.0-66/scripts/kconfig"}, {"size": 188, "name": "/usr/src/linux-headers-4.15.0-66/scripts/dtc/libfdt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-66/scripts/dtc/include-prefixes"}, {"size": 620, "name": "/usr/src/linux-headers-4.15.0-66/scripts/dtc"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/scripts/selinux/genheaders"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/scripts/selinux/mdp"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-66/scripts/selinux"}, {"size": 3556, "name": "/usr/src/linux-headers-4.15.0-66/scripts"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/m32r/oprofile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/m32r/mm"}, {"size": 136, "name": "/usr/src/linux-headers-4.15.0-66/arch/m32r/include/uapi/asm"}, {"size": 140, "name": "/usr/src/linux-headers-4.15.0-66/arch/m32r/include/uapi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/m32r/include/asm/mappi2"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/arch/m32r/include/asm/m32700ut"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/m32r/include/asm/mappi3"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/arch/m32r/include/asm/opsput"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/m32r/include/asm/m32104ut"}, {"size": 500, "name": "/usr/src/linux-headers-4.15.0-66/arch/m32r/include/asm"}, {"size": 644, "name": "/usr/src/linux-headers-4.15.0-66/arch/m32r/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/m32r/kernel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/m32r/boot/compressed"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/arch/m32r/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/m32r/lib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/m32r/platforms/mappi2"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/m32r/platforms/oaks32r"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/m32r/platforms/m32700ut"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/m32r/platforms/mappi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/m32r/platforms/mappi3"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/m32r/platforms/opsput"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/m32r/platforms/usrv"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/m32r/platforms/m32104ut"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-66/arch/m32r/platforms"}, {"size": 792, "name": "/usr/src/linux-headers-4.15.0-66/arch/m32r"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/mm"}, {"size": 108, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/include/uapi/asm"}, {"size": 316, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/include/uapi/arch-v10/arch"}, {"size": 320, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/include/uapi/arch-v10"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/include/uapi/arch-v32/arch"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/include/uapi/arch-v32"}, {"size": 448, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/include/uapi"}, {"size": 208, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/include/asm"}, {"size": 124, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/include/arch-v10/arch"}, {"size": 128, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/include/arch-v10"}, {"size": 128, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/include/arch-v32/mach-a3/mach/hwregs/asm"}, {"size": 212, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/include/arch-v32/mach-a3/mach/hwregs/iop/asm"}, {"size": 324, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/include/arch-v32/mach-a3/mach/hwregs/iop"}, {"size": 604, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/include/arch-v32/mach-a3/mach/hwregs"}, {"size": 628, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/include/arch-v32/mach-a3/mach"}, {"size": 632, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/include/arch-v32/mach-a3"}, {"size": 276, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/include/arch-v32/arch/hwregs/asm"}, {"size": 492, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/include/arch-v32/arch/hwregs/iop/asm"}, {"size": 816, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/include/arch-v32/arch/hwregs/iop"}, {"size": 1288, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/include/arch-v32/arch/hwregs"}, {"size": 1412, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/include/arch-v32/arch"}, {"size": 88, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/include/arch-v32/mach-fs/mach/hwregs/asm"}, {"size": 216, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/include/arch-v32/mach-fs/mach/hwregs"}, {"size": 240, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/include/arch-v32/mach-fs/mach"}, {"size": 244, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/include/arch-v32/mach-fs"}, {"size": 2292, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/include/arch-v32"}, {"size": 3080, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/include"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/arch-v10/drivers"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/arch-v10/mm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/arch-v10/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/arch-v10/lib"}, {"size": 68, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/arch-v10"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/arch-v32/drivers/mach-a3"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/arch-v32/drivers/mach-fs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/arch-v32/drivers/pci"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/arch-v32/drivers"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/arch-v32/mach-a3"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/arch-v32/mm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/arch-v32/kernel"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/arch-v32/mach-fs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/arch-v32/lib"}, {"size": 108, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/arch-v32"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/boot/compressed"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/boot/rescue"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/boot/dts"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris/boot"}, {"size": 3348, "name": "/usr/src/linux-headers-4.15.0-66/arch/cris"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/h8300/mm"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/arch/h8300/include/uapi/asm"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/arch/h8300/include/uapi"}, {"size": 136, "name": "/usr/src/linux-headers-4.15.0-66/arch/h8300/include/asm"}, {"size": 176, "name": "/usr/src/linux-headers-4.15.0-66/arch/h8300/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/h8300/kernel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/h8300/boot/compressed"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/h8300/boot/dts"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/arch/h8300/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/h8300/lib"}, {"size": 244, "name": "/usr/src/linux-headers-4.15.0-66/arch/h8300"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/metag/oprofile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/metag/tbx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/metag/mm"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/arch/metag/include/uapi/asm"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-66/arch/metag/include/uapi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/metag/include/asm/mach"}, {"size": 488, "name": "/usr/src/linux-headers-4.15.0-66/arch/metag/include/asm"}, {"size": 532, "name": "/usr/src/linux-headers-4.15.0-66/arch/metag/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/metag/kernel/perf"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/metag/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/metag/boot/dts"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/metag/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/metag/lib"}, {"size": 624, "name": "/usr/src/linux-headers-4.15.0-66/arch/metag"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/tile/gxio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/tile/mm"}, {"size": 68, "name": "/usr/src/linux-headers-4.15.0-66/arch/tile/include/uapi/asm"}, {"size": 204, "name": "/usr/src/linux-headers-4.15.0-66/arch/tile/include/uapi/arch"}, {"size": 276, "name": "/usr/src/linux-headers-4.15.0-66/arch/tile/include/uapi"}, {"size": 148, "name": "/usr/src/linux-headers-4.15.0-66/arch/tile/include/gxio"}, {"size": 504, "name": "/usr/src/linux-headers-4.15.0-66/arch/tile/include/asm"}, {"size": 124, "name": "/usr/src/linux-headers-4.15.0-66/arch/tile/include/arch"}, {"size": 340, "name": "/usr/src/linux-headers-4.15.0-66/arch/tile/include/hv"}, {"size": 1396, "name": "/usr/src/linux-headers-4.15.0-66/arch/tile/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/tile/kernel/vdso"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/tile/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/tile/kvm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/tile/lib"}, {"size": 1480, "name": "/usr/src/linux-headers-4.15.0-66/arch/tile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/s390/oprofile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/s390/net"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/s390/tools"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/s390/mm"}, {"size": 252, "name": "/usr/src/linux-headers-4.15.0-66/arch/s390/include/uapi/asm"}, {"size": 256, "name": "/usr/src/linux-headers-4.15.0-66/arch/s390/include/uapi"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/s390/include/asm/trace"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/s390/include/asm/fpu"}, {"size": 860, "name": "/usr/src/linux-headers-4.15.0-66/arch/s390/include/asm"}, {"size": 1120, "name": "/usr/src/linux-headers-4.15.0-66/arch/s390/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/s390/hypfs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/s390/crypto"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/s390/kernel/vdso64"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/s390/kernel/vdso32"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/arch/s390/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/s390/appldata"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/s390/numa"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/s390/kvm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/s390/boot/compressed"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/arch/s390/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/s390/lib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/s390/pci"}, {"size": 1304, "name": "/usr/src/linux-headers-4.15.0-66/arch/s390"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/microblaze/oprofile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/microblaze/mm"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-66/arch/microblaze/include/uapi/asm"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-66/arch/microblaze/include/uapi"}, {"size": 292, "name": "/usr/src/linux-headers-4.15.0-66/arch/microblaze/include/asm"}, {"size": 356, "name": "/usr/src/linux-headers-4.15.0-66/arch/microblaze/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/microblaze/kernel/cpu"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/microblaze/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/microblaze/boot/dts"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/microblaze/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/microblaze/lib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/microblaze/pci"}, {"size": 444, "name": "/usr/src/linux-headers-4.15.0-66/arch/microblaze"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/unicore32/mm"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/arch/unicore32/include/uapi/asm"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/arch/unicore32/include/uapi"}, {"size": 116, "name": "/usr/src/linux-headers-4.15.0-66/arch/unicore32/include/mach"}, {"size": 200, "name": "/usr/src/linux-headers-4.15.0-66/arch/unicore32/include/asm"}, {"size": 348, "name": "/usr/src/linux-headers-4.15.0-66/arch/unicore32/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/unicore32/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/unicore32/boot/compressed"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/unicore32/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/unicore32/lib"}, {"size": 412, "name": "/usr/src/linux-headers-4.15.0-66/arch/unicore32"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/score/mm"}, {"size": 128, "name": "/usr/src/linux-headers-4.15.0-66/arch/score/include/uapi/asm"}, {"size": 132, "name": "/usr/src/linux-headers-4.15.0-66/arch/score/include/uapi"}, {"size": 256, "name": "/usr/src/linux-headers-4.15.0-66/arch/score/include/asm"}, {"size": 392, "name": "/usr/src/linux-headers-4.15.0-66/arch/score/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/score/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/score/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/score/lib"}, {"size": 440, "name": "/usr/src/linux-headers-4.15.0-66/arch/score"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/net"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/mm"}, {"size": 100, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/include/uapi/asm"}, {"size": 104, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/include/uapi"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/include/asm/xen"}, {"size": 896, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/include/asm"}, {"size": 1004, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/xen"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/crypto"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/kernel/vdso"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/kernel/probes"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/kvm/hyp"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/kvm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/altera"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/al"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/apm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/qcom"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/actions"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/exynos"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/allwinner"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/broadcom/stingray"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/broadcom/northstar2"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/broadcom"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/sprd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/zte"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/socionext"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/freescale"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/renesas"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/realtek"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/nvidia"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/amd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/marvell"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/mediatek"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/amlogic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/hisilicon"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/rockchip"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/cavium"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/arm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/lg"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/xilinx"}, {"size": 224, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts"}, {"size": 236, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64/lib"}, {"size": 1424, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm64"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mn10300/oprofile"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/arch/mn10300/proc-mn103e010/include/proc"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/arch/mn10300/proc-mn103e010/include"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-66/arch/mn10300/proc-mn103e010"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-66/arch/mn10300/unit-asb2364/include/unit"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-66/arch/mn10300/unit-asb2364/include"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-66/arch/mn10300/unit-asb2364"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/arch/mn10300/unit-asb2305/include/unit"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/arch/mn10300/unit-asb2305/include"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/arch/mn10300/unit-asb2305"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/mn10300/mm"}, {"size": 140, "name": "/usr/src/linux-headers-4.15.0-66/arch/mn10300/include/uapi/asm"}, {"size": 144, "name": "/usr/src/linux-headers-4.15.0-66/arch/mn10300/include/uapi"}, {"size": 464, "name": "/usr/src/linux-headers-4.15.0-66/arch/mn10300/include/asm"}, {"size": 612, "name": "/usr/src/linux-headers-4.15.0-66/arch/mn10300/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mn10300/kernel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/mn10300/boot/compressed"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/arch/mn10300/boot"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-66/arch/mn10300/proc-mn2ws0050/include/proc"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/arch/mn10300/proc-mn2ws0050/include"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-66/arch/mn10300/proc-mn2ws0050"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mn10300/lib"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/arch/mn10300/unit-asb2303/include/unit"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/arch/mn10300/unit-asb2303/include"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-66/arch/mn10300/unit-asb2303"}, {"size": 928, "name": "/usr/src/linux-headers-4.15.0-66/arch/mn10300"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/hexagon/mm"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-66/arch/hexagon/include/uapi/asm"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-66/arch/hexagon/include/uapi"}, {"size": 248, "name": "/usr/src/linux-headers-4.15.0-66/arch/hexagon/include/asm"}, {"size": 316, "name": "/usr/src/linux-headers-4.15.0-66/arch/hexagon/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/hexagon/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/hexagon/lib"}, {"size": 352, "name": "/usr/src/linux-headers-4.15.0-66/arch/hexagon"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sparc/oprofile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sparc/power"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/sparc/vdso"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sparc/prom"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sparc/math-emu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sparc/net"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sparc/mm"}, {"size": 264, "name": "/usr/src/linux-headers-4.15.0-66/arch/sparc/include/uapi/asm"}, {"size": 268, "name": "/usr/src/linux-headers-4.15.0-66/arch/sparc/include/uapi"}, {"size": 1416, "name": "/usr/src/linux-headers-4.15.0-66/arch/sparc/include/asm"}, {"size": 1688, "name": "/usr/src/linux-headers-4.15.0-66/arch/sparc/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sparc/crypto"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sparc/kernel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/sparc/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sparc/lib"}, {"size": 1816, "name": "/usr/src/linux-headers-4.15.0-66/arch/sparc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/oprofile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/mm"}, {"size": 128, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/include/uapi/asm"}, {"size": 132, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/include/uapi"}, {"size": 364, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/include/asm"}, {"size": 500, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/include"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/variants/dc233c/include/variant"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/variants/dc233c/include"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/variants/dc233c"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/variants/fsf/include/variant"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/variants/fsf/include"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/variants/fsf"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/variants/test_kc705_hifi/include/variant"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/variants/test_kc705_hifi/include"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/variants/test_kc705_hifi"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/variants/test_mmuhifi_c3/include/variant"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/variants/test_mmuhifi_c3/include"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/variants/test_mmuhifi_c3"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/variants/dc232b/include/variant"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/variants/dc232b/include"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/variants/dc232b"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/variants/csp/include/variant"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/variants/csp/include"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/variants/csp"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/variants/de212/include/variant"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/variants/de212/include"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/variants/de212"}, {"size": 372, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/variants"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/boot/boot-redboot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/boot/boot-elf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/boot/lib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/boot/dts"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/lib"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/platforms/xtfpga/include/platform"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/platforms/xtfpga/include"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/platforms/xtfpga"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/platforms/iss/include/platform"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/platforms/iss/include"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/platforms/iss"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/platforms/xt2000/include/platform"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/platforms/xt2000/include"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/platforms/xt2000"}, {"size": 84, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa/platforms"}, {"size": 1060, "name": "/usr/src/linux-headers-4.15.0-66/arch/xtensa"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/oprofile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/lib64"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/cchips/hd6446x"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/cchips"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-microdev"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-highlander"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-kfr2r09"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-sdk7786"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-se/770x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-se/7343"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-se/7206"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-se/7724"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-se/7722"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-se/7721"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-se/7751"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-se/7780"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-se"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-rsk"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-dreamcast"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-landisk"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-sdk7780"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-migor"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-cayman"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-ap325rxa"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-sh7763rdp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-ecovec24"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-hp6xx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-x3proto"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-r2d"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-lboxre2"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-sh03"}, {"size": 256, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/boards"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/drivers/superhyway"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/drivers/dma"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/drivers/pci"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/drivers"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/math-emu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/tools"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/mm"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/include/cpu-sh5/cpu"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/include/cpu-sh5"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/include/mach-kfr2r09/mach"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/include/mach-kfr2r09"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/include/mach-sdk7786/mach"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/include/mach-sdk7786"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/include/mach-se/mach"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/include/mach-se"}, {"size": 116, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/include/uapi/asm"}, {"size": 120, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/include/uapi"}, {"size": 124, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/include/cpu-sh4/cpu"}, {"size": 128, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/include/cpu-sh4"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/include/cpu-sh3/cpu"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/include/cpu-sh3"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/include/mach-dreamcast/mach"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/include/mach-dreamcast"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/include/mach-landisk/mach"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/include/mach-landisk"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/include/cpu-sh2/cpu"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/include/cpu-sh2"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/include/mach-migor/mach"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/include/mach-migor"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/include/cpu-sh2a/cpu"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/include/cpu-sh2a"}, {"size": 748, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/include/asm"}, {"size": 76, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/include/mach-common/mach"}, {"size": 80, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/include/mach-common"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/include/mach-ecovec24/mach"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/include/mach-ecovec24"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/include/cpu-sh4a/cpu"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/include/cpu-sh4a"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/include/cpu-common/cpu"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/include/cpu-common"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/include/mach-x3proto/mach"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/include/mach-x3proto"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/include/mach-sh03/mach"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/include/mach-sh03"}, {"size": 1476, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/kernel/vsyscall"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/kernel/cpu/irq"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/kernel/cpu/sh4a"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/kernel/cpu/sh3"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/kernel/cpu/sh4"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/kernel/cpu/shmobile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/kernel/cpu/sh5"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/kernel/cpu/sh2a"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/kernel/cpu/sh2"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/kernel/cpu"}, {"size": 88, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/kernel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/boot/compressed"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/boot/romimage"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/boot/dts"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh/lib"}, {"size": 2016, "name": "/usr/src/linux-headers-4.15.0-66/arch/sh"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/oprofile"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf609/boards"}, {"size": 616, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf609/include/mach"}, {"size": 620, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf609/include"}, {"size": 668, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf609"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf538/boards"}, {"size": 340, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf538/include/mach"}, {"size": 344, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf538/include"}, {"size": 368, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf538"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf548/boards"}, {"size": 868, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf548/include/mach"}, {"size": 872, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf548/include"}, {"size": 900, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf548"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf533/boards"}, {"size": 160, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf533/include/mach"}, {"size": 164, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf533/include"}, {"size": 188, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf533"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf561/boards"}, {"size": 276, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf561/include/mach"}, {"size": 280, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf561/include"}, {"size": 304, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf561"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/mm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf518/boards"}, {"size": 280, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf518/include/mach"}, {"size": 284, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf518/include"}, {"size": 312, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf518"}, {"size": 84, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/include/uapi/asm"}, {"size": 88, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/include/uapi"}, {"size": 608, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/include/asm"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/include/mach-common"}, {"size": 752, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-common"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/kernel/cplb-nompu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/kernel/cplb-mpu"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/kernel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf527/boards"}, {"size": 344, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf527/include/mach"}, {"size": 348, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf527/include"}, {"size": 376, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf527"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/boot"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf537/boards"}, {"size": 348, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf537/include/mach"}, {"size": 352, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf537/include"}, {"size": 376, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf537"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin/lib"}, {"size": 4372, "name": "/usr/src/linux-headers-4.15.0-66/arch/blackfin"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/oprofile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/power"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/vdso"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/loongson32/common"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/loongson32/ls1b"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/loongson32/ls1c"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/loongson32"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/generic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/fw/sni"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/fw/cfe"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/fw/lib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/fw/arc"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/fw"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/ath79"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/txx9/rbtx4938"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/txx9/generic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/txx9/rbtx4939"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/txx9/rbtx4927"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/txx9/jmr3927"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/txx9"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/bcm63xx/boards"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/bcm63xx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/emma/common"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/emma/markeins"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/emma"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/jazz"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/cavium-octeon/crypto"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/cavium-octeon/executive"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/cavium-octeon"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/pnx833x/stb22x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/pnx833x/common"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/pnx833x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/sgi-ip22"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/lantiq/falcon"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/lantiq/xway"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/lantiq"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/mti-malta"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/rb532"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/sni"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/math-emu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/net"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/tools"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/mm"}, {"size": 264, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/uapi/asm"}, {"size": 268, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/uapi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/fw/cfe"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/fw/arc"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/fw"}, {"size": 116, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/sn/sn0"}, {"size": 256, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/sn"}, {"size": 124, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/txx9"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/emma"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-db1x00"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-vr41xx"}, {"size": 156, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-au1x00"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-jz4740"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-ar7"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-ralink/rt3883"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-ralink/mt7620"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-ralink/rt305x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-ralink/rt288x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-ralink/mt7621"}, {"size": 92, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-ralink"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-xilfpga"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-lasat"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-generic"}, {"size": 192, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-bcm63xx"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-bcm47xx"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-cobalt"}, {"size": 104, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-pmcs-msp71xx"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-netlogic"}, {"size": 2300, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/octeon"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-bmips"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-jazz"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-dec"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-ip32"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-ip22"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-malta"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-emma2rh"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/xtalk"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-ath25"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-ip27"}, {"size": 80, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/dec"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-sibyte"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/ip32"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-loongson32"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-tx39xx"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-paravirt"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mips-boards"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-ath79"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-tx49xx"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/vr41xx"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-pnx833x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-pistachio"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-pic32"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-rm"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/sgi"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/lasat"}, {"size": 68, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/netlogic/xlp-hal"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/netlogic/xlr"}, {"size": 160, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/netlogic"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-lantiq/falcon"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-lantiq/xway"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-lantiq"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-cavium-octeon"}, {"size": 408, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/sibyte"}, {"size": 80, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-rc32434"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-ip28"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/pci"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-loongson64/cs5536"}, {"size": 104, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-loongson64"}, {"size": 6492, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include/asm"}, {"size": 6764, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/alchemy/common"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/alchemy/devboards"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/alchemy"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/paravirt"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/bcm47xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/cobalt"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/loongson64/common/cs5536"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/loongson64/common"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/loongson64/loongson-3"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/loongson64/lemote-2f"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/loongson64/fuloong-2e"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/loongson64"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/dec/prom"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/dec"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/ath25"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/kvm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/sgi-ip32"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/boot/compressed"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/boot/tools"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/boot/dts/cavium-octeon"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/boot/dts/lantiq"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/boot/dts/qca"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/boot/dts/ni"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/boot/dts/xilfpga"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/boot/dts/ingenic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/boot/dts/img"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/boot/dts/brcm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/boot/dts/pic32"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/boot/dts/ralink"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/boot/dts/netlogic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/boot/dts/mti"}, {"size": 104, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/boot/dts"}, {"size": 136, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/pic32/common"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/pic32/pic32mzda"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/pic32"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/bmips"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/vr41xx/common"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/vr41xx/casio-e55"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/vr41xx/ibm-workpad"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/vr41xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/sgi-ip27"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/pmcs-msp71xx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/lib"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/pistachio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/lasat/image"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/lasat"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/ralink"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/netlogic/xlr"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/netlogic/common"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/netlogic/xlp"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/netlogic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/sibyte/swarm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/sibyte/common"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/sibyte/bcm1480"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/sibyte/sb1250"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/sibyte"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/pci"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/jz4740"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips/ar7"}, {"size": 7832, "name": "/usr/src/linux-headers-4.15.0-66/arch/mips"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/parisc/oprofile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/parisc/math-emu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/parisc/mm"}, {"size": 160, "name": "/usr/src/linux-headers-4.15.0-66/arch/parisc/include/uapi/asm"}, {"size": 164, "name": "/usr/src/linux-headers-4.15.0-66/arch/parisc/include/uapi"}, {"size": 528, "name": "/usr/src/linux-headers-4.15.0-66/arch/parisc/include/asm"}, {"size": 696, "name": "/usr/src/linux-headers-4.15.0-66/arch/parisc/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/parisc/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/parisc/boot/compressed"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/arch/parisc/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/parisc/lib"}, {"size": 788, "name": "/usr/src/linux-headers-4.15.0-66/arch/parisc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/hyperv"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/ia32"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/oprofile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/power"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/purgatory"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/ras"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/platform/ts5500"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/platform/intel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/platform/ce4100"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/platform/scx200"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/platform/goldfish"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/platform/intel-mid/device_libs"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/platform/intel-mid"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/platform/efi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/platform/geode"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/platform/iris"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/platform/olpc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/platform/uv"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/platform/atom"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/platform/intel-quark"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/platform/sfi"}, {"size": 128, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/platform"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/events/intel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/events/amd"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/events"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/video"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/math-emu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/net"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/tools"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/mm"}, {"size": 288, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/include/uapi/asm"}, {"size": 292, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/include/uapi"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/include/asm/trace"}, {"size": 96, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/include/asm/xen"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/include/asm/crypto"}, {"size": 272, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/include/asm/uv"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/include/asm/fpu"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/include/asm/numachip"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/include/asm/e820"}, {"size": 2444, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/include/asm"}, {"size": 2740, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/include"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/xen"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/crypto/sha1-mb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/crypto/sha256-mb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/crypto/sha512-mb"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/crypto"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/kernel/kprobes"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/kernel/apic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/kernel/acpi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/kernel/cpu/mcheck"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/kernel/cpu/mtrr"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/kernel/cpu/microcode"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/kernel/cpu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/kernel/fpu"}, {"size": 80, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/realmode/rm"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/realmode"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/kvm"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/entry/vdso"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/entry/vsyscall"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/entry/syscalls"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/entry"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/boot/compressed"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/boot"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/um/vdso"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/um/os-Linux"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/um"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/lib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86/pci"}, {"size": 3428, "name": "/usr/src/linux-headers-4.15.0-66/arch/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/riscv/mm"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/arch/riscv/include/uapi/asm"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-66/arch/riscv/include/uapi"}, {"size": 244, "name": "/usr/src/linux-headers-4.15.0-66/arch/riscv/include/asm"}, {"size": 300, "name": "/usr/src/linux-headers-4.15.0-66/arch/riscv/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/riscv/kernel/vdso"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/riscv/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/riscv/lib"}, {"size": 348, "name": "/usr/src/linux-headers-4.15.0-66/arch/riscv"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/openrisc/mm"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/arch/openrisc/include/uapi/asm"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/arch/openrisc/include/uapi"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/arch/openrisc/include/asm/bitops"}, {"size": 228, "name": "/usr/src/linux-headers-4.15.0-66/arch/openrisc/include/asm"}, {"size": 268, "name": "/usr/src/linux-headers-4.15.0-66/arch/openrisc/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/openrisc/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/openrisc/boot/dts"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/openrisc/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/openrisc/lib"}, {"size": 320, "name": "/usr/src/linux-headers-4.15.0-66/arch/openrisc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/frv/mm"}, {"size": 152, "name": "/usr/src/linux-headers-4.15.0-66/arch/frv/include/uapi/asm"}, {"size": 156, "name": "/usr/src/linux-headers-4.15.0-66/arch/frv/include/uapi"}, {"size": 456, "name": "/usr/src/linux-headers-4.15.0-66/arch/frv/include/asm"}, {"size": 616, "name": "/usr/src/linux-headers-4.15.0-66/arch/frv/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/frv/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/frv/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/frv/lib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/frv/mb93090-mb00"}, {"size": 680, "name": "/usr/src/linux-headers-4.15.0-66/arch/frv"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/alpha/oprofile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/alpha/math-emu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/alpha/mm"}, {"size": 200, "name": "/usr/src/linux-headers-4.15.0-66/arch/alpha/include/uapi/asm"}, {"size": 204, "name": "/usr/src/linux-headers-4.15.0-66/arch/alpha/include/uapi"}, {"size": 652, "name": "/usr/src/linux-headers-4.15.0-66/arch/alpha/include/asm"}, {"size": 860, "name": "/usr/src/linux-headers-4.15.0-66/arch/alpha/include"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/alpha/kernel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/alpha/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/alpha/lib"}, {"size": 952, "name": "/usr/src/linux-headers-4.15.0-66/arch/alpha"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/um/os-Linux/drivers"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/um/os-Linux/skas"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/arch/um/os-Linux"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/um/drivers"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/um/include/shared/skas"}, {"size": 120, "name": "/usr/src/linux-headers-4.15.0-66/arch/um/include/shared"}, {"size": 148, "name": "/usr/src/linux-headers-4.15.0-66/arch/um/include/asm"}, {"size": 272, "name": "/usr/src/linux-headers-4.15.0-66/arch/um/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/um/kernel/skas"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/um/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/um/scripts"}, {"size": 388, "name": "/usr/src/linux-headers-4.15.0-66/arch/um"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/m68k/coldfire"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/m68k/emu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/m68k/bvme6000"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/m68k/sun3/prom"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/m68k/sun3"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/m68k/atari"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/m68k/ifpsp060"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/m68k/math-emu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/m68k/tools/amiga"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/m68k/tools"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/m68k/mm"}, {"size": 116, "name": "/usr/src/linux-headers-4.15.0-66/arch/m68k/include/uapi/asm"}, {"size": 120, "name": "/usr/src/linux-headers-4.15.0-66/arch/m68k/include/uapi"}, {"size": 1180, "name": "/usr/src/linux-headers-4.15.0-66/arch/m68k/include/asm"}, {"size": 1304, "name": "/usr/src/linux-headers-4.15.0-66/arch/m68k/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/m68k/amiga"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/arch/m68k/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/m68k/q40"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/m68k/mvme16x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/m68k/fpsp040"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/m68k/sun3x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/m68k/68000"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/m68k/lib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/m68k/mvme147"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/m68k/apollo"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/m68k/hp300"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/m68k/mac"}, {"size": 1568, "name": "/usr/src/linux-headers-4.15.0-66/arch/m68k"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/nios2/platform"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/nios2/mm"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/arch/nios2/include/uapi/asm"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-66/arch/nios2/include/uapi"}, {"size": 164, "name": "/usr/src/linux-headers-4.15.0-66/arch/nios2/include/asm"}, {"size": 208, "name": "/usr/src/linux-headers-4.15.0-66/arch/nios2/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/nios2/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/nios2/boot/compressed"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/arch/nios2/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/nios2/lib"}, {"size": 288, "name": "/usr/src/linux-headers-4.15.0-66/arch/nios2"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arc/oprofile"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arc/plat-hsdk"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/arch/arc/plat-eznps/include/plat"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/arch/arc/plat-eznps/include"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/arch/arc/plat-eznps"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arc/mm"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/arch/arc/include/uapi/asm"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-66/arch/arc/include/uapi"}, {"size": 388, "name": "/usr/src/linux-headers-4.15.0-66/arch/arc/include/asm"}, {"size": 444, "name": "/usr/src/linux-headers-4.15.0-66/arch/arc/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arc/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arc/boot/dts"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/arc/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arc/plat-sim"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arc/plat-tb10x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arc/lib"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arc/plat-axs10x"}, {"size": 604, "name": "/usr/src/linux-headers-4.15.0-66/arch/arc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/c6x/mm"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/arch/c6x/include/uapi/asm"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-66/arch/c6x/include/uapi"}, {"size": 172, "name": "/usr/src/linux-headers-4.15.0-66/arch/c6x/include/asm"}, {"size": 216, "name": "/usr/src/linux-headers-4.15.0-66/arch/c6x/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/c6x/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/c6x/boot/dts"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/c6x/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/c6x/lib"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/c6x/platforms"}, {"size": 280, "name": "/usr/src/linux-headers-4.15.0-66/arch/c6x"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-oxnas"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/oprofile"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-tegra"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-qcom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-hisi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/vdso"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-nomadik"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-uniphier"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-at91"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/plat-iop"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-footbridge/include/mach"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-footbridge/include"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-footbridge"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-nspire"}, {"size": 104, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-s3c24xx/include/mach"}, {"size": 108, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-s3c24xx/include"}, {"size": 136, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-s3c24xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-rockchip"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/plat-pxa/include/plat"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/plat-pxa/include"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/plat-pxa"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-lpc32xx/include/mach"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-lpc32xx/include"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-lpc32xx"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-rpc/include/mach"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-rpc/include"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-rpc"}, {"size": 76, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-iop13xx/include/mach"}, {"size": 80, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-iop13xx/include"}, {"size": 96, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-iop13xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-artpec"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-prima2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/common"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-mediatek"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-mv78xx0"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-spear/include/mach"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-spear/include"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-spear"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-berlin"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-digicolor"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-mvebu"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-ebsa110/include/mach"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-ebsa110/include"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-ebsa110"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-ep93xx/include/mach"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-ep93xx/include"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-ep93xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-sti"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-lpc18xx"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-iop32x/include/mach"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-iop32x/include"}, {"size": 68, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-iop32x"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-dove/include/mach"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-dove/include"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-dove"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-ux500"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-integrator"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/plat-orion/include/plat"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/plat-orion/include"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/plat-orion"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-tango"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-w90x900/include/mach"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-w90x900/include"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-w90x900"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/probes/uprobes"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/probes/kprobes"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/probes"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-exynos/include/mach"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-exynos/include"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-exynos"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/net"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-imx/devices"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-imx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-zynq"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/tools"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-sunxi"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-efm32"}, {"size": 96, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/include/uapi/asm"}, {"size": 100, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/include/uapi"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/include/asm/mach"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/include/asm/xen"}, {"size": 160, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/include/asm/hardware"}, {"size": 1180, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/include/asm"}, {"size": 152, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/include/debug"}, {"size": 1436, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/include"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-s5pv210"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-meson"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-iop33x/include/mach"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-iop33x/include"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-iop33x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/xen"}, {"size": 88, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-davinci/include/mach"}, {"size": 92, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-davinci/include"}, {"size": 112, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-davinci"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/crypto"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/vfp"}, {"size": 224, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-pxa/include/mach"}, {"size": 228, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-pxa/include"}, {"size": 256, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-pxa"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-zx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-u300"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-actions"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-moxart"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/plat-omap/include/plat"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/plat-omap/include"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/plat-omap"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-cns3xxx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-alpine"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/nwfpe"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-highbank"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-vt8500"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/kvm/hyp"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/kvm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-versatile"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-picoxcell"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/boot/compressed"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/boot/bootp"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/boot/dts"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/boot"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/firmware"}, {"size": 116, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-omap1/include/mach"}, {"size": 120, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-omap1/include"}, {"size": 140, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-omap1"}, {"size": 180, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-sa1100/include/mach"}, {"size": 184, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-sa1100/include"}, {"size": 204, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-sa1100"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-bcm"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-orion5x"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-shmobile"}, {"size": 84, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-ixp4xx/include/mach"}, {"size": 88, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-ixp4xx/include"}, {"size": 108, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-ixp4xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-mmp"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-omap2/include/mach"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-omap2/include"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-omap2"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/lib"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-stm32"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/plat-versatile/include/plat"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/plat-versatile/include"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/plat-versatile"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-vexpress"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-clps711x"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-gemini"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-mxs"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-netx/include/mach"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-netx/include"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-netx"}, {"size": 144, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/plat-samsung/include/plat"}, {"size": 148, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/plat-samsung/include"}, {"size": 164, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/plat-samsung"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-keystone"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-s3c64xx/include/mach"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-s3c64xx/include"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-s3c64xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-realview"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-asm9260"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-axxia"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-ks8695/include/mach"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-ks8695/include"}, {"size": 68, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-ks8695"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-aspeed"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm/mach-socfpga"}, {"size": 4784, "name": "/usr/src/linux-headers-4.15.0-66/arch/arm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/oprofile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/perf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/sysdev/ge"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/sysdev/xics"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/sysdev/xive"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/sysdev"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/purgatory"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/math-emu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/net"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/tools"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/mm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/xmon"}, {"size": 232, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/include/uapi/asm"}, {"size": 236, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/include/uapi"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/include/asm/book3s/32"}, {"size": 152, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/include/asm/book3s/64"}, {"size": 196, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/include/asm/book3s"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/include/asm/nohash/32"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/include/asm/nohash/64"}, {"size": 96, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/include/asm/nohash"}, {"size": 2448, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/include/asm"}, {"size": 2688, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/crypto"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/kernel/trace"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/kernel/vdso64"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/kernel/vdso32"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/kernel"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/kvm"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/lib"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms/82xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms/83xx"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms/pseries"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms/52xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms/pasemi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms/40x"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms/maple"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms/embedded6xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms/86xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms/amigaone"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms/4xx"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms/44x"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms/8xx"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms/ps3"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms/chrp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms/powernv"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms/85xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms/powermac"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms/512x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms/cell/spufs"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms/cell"}, {"size": 304, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms"}, {"size": 3288, "name": "/usr/src/linux-headers-4.15.0-66/arch/powerpc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/ia64/hp/zx1"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/ia64/hp/common"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/ia64/hp/sim/boot"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/arch/ia64/hp/sim"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-66/arch/ia64/hp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/ia64/oprofile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/ia64/dig"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-66/arch/ia64/sn/include/xtalk"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-66/arch/ia64/sn/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/ia64/sn/kernel/sn2"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/ia64/sn/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/ia64/sn/pci/pcibr"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/ia64/sn/pci"}, {"size": 76, "name": "/usr/src/linux-headers-4.15.0-66/arch/ia64/sn"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/ia64/mm"}, {"size": 236, "name": "/usr/src/linux-headers-4.15.0-66/arch/ia64/include/uapi/asm"}, {"size": 240, "name": "/usr/src/linux-headers-4.15.0-66/arch/ia64/include/uapi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/ia64/include/asm/sn/sn2"}, {"size": 440, "name": "/usr/src/linux-headers-4.15.0-66/arch/ia64/include/asm/sn"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/ia64/include/asm/native"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-66/arch/ia64/include/asm/uv"}, {"size": 1240, "name": "/usr/src/linux-headers-4.15.0-66/arch/ia64/include/asm"}, {"size": 1484, "name": "/usr/src/linux-headers-4.15.0-66/arch/ia64/include"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/arch/ia64/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/ia64/scripts"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/ia64/uv/kernel"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/arch/ia64/uv"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/ia64/lib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/arch/ia64/pci"}, {"size": 1716, "name": "/usr/src/linux-headers-4.15.0-66/arch/ia64"}, {"size": 48356, "name": "/usr/src/linux-headers-4.15.0-66/arch"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/lib/lzo"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/lib/lz4"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/lib/reed_solomon"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-66/lib/xz"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/lib/zlib_deflate"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/lib/zstd"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/lib/fonts"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/lib/raid6/test"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-66/lib/raid6"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/lib/842"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/lib/mpi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-66/lib/zlib_inflate"}, {"size": 228, "name": "/usr/src/linux-headers-4.15.0-66/lib"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-66/usr"}, {"size": 115552, "name": "/usr/src/linux-headers-4.15.0-66"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/udf"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/fs/nls"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/fs/squashfs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/fs/hostfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/adfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/freevxfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/sysfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/efs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/afs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/gfs2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/ecryptfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/orangefs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/ntfs"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/fs/cifs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/notify/dnotify"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/notify/inotify"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/notify/fanotify"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/fs/notify"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/affs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/autofs4"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/fs/exofs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/fs/openpromfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/sysv"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/fs/jffs2"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/fs/tracefs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/fs/devpts"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/qnx4"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/hfsplus"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/ufs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/btrfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/efivarfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/fscache"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/pstore"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/f2fs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/9p"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/crypto"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/minix"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/qnx6"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/ubifs"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/fs/ncpfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/hpfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/kernfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/omfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/configfs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/fs/nfs_common"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/cramfs"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/fs/aufs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/hfs"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/fs/xfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/coda"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/fs/nfs/blocklayout"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/fs/nfs/flexfilelayout"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/fs/nfs/filelayout"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70/fs/nfs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/fs/hugetlbfs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/fs/ocfs2/cluster"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/fs/ocfs2/dlmfs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/fs/ocfs2/dlm"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/fs/ocfs2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/isofs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/romfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/dlm"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/fs/fat"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/cachefiles"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/quota"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/ext2"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/fs/nfsd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/fs/exportfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/bfs"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/fs/ext4"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/overlayfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/fuse"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/fs/lockd"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/ceph"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/fs/debugfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/proc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/jbd2"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/fs/ramfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/nilfs2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/jfs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/befs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/fs/reiserfs"}, {"size": 1024, "name": "/usr/src/linux-headers-4.15.0-70/fs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/virt/kvm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/virt/lib"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/virt"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70/drivers/spi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/soc/ti"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/soc/lantiq"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/soc/qcom"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/soc/bcm/brcmstb/pm"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/drivers/soc/bcm/brcmstb"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/drivers/soc/bcm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/soc/versatile"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/soc/actions"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/soc/dove"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/soc/tegra/fuse"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/drivers/soc/tegra"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/soc/imx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/soc/ux500"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/soc/fsl/qe"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/soc/fsl/qbman"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/drivers/soc/fsl"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/soc/zte"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/soc/renesas"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/soc/mediatek"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/soc/amlogic"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/soc/samsung"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/soc/rockchip"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/soc/atmel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/soc/sunxi"}, {"size": 284, "name": "/usr/src/linux-headers-4.15.0-70/drivers/soc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/nfc/nfcmrvl"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/nfc/pn533"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/nfc/fdp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/nfc/s3fwrn5"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/nfc/pn544"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/nfc/nxp-nci"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/nfc/st95hf"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/nfc/microread"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/nfc/st21nfca"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/nfc/st-nci"}, {"size": 132, "name": "/usr/src/linux-headers-4.15.0-70/drivers/nfc"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/drivers/bluetooth"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/power/reset"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/drivers/power/supply"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/power/avs"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-70/drivers/power"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/ntb/hw/intel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/ntb/hw/mscc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/ntb/hw/idt"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/ntb/hw/amd"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-70/drivers/ntb/hw"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/ntb/test"}, {"size": 84, "name": "/usr/src/linux-headers-4.15.0-70/drivers/ntb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/perf/hisilicon"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/drivers/perf"}, {"size": 68, "name": "/usr/src/linux-headers-4.15.0-70/drivers/rtc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/dma-buf"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/firewire"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpio"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/memstick/core"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/memstick/host"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/drivers/memstick"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/vlynq"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/dca"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/dax"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/ipu-v3"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/vga"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/savage"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/vc4"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/atmel-hlcdc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/bochs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/mxsfb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/selftests"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/r128"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/sti"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/i915/gvt"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/i915"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/ttm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/tdfx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/etnaviv"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/i2c"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/tve200"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/mgag200"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/via"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/stm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/dispnv04"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvif"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine/sec2"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine/msenc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine/bsp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine/device"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine/disp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine/sw"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine/mspdec"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine/sec"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine/fifo"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine/ce"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine/cipher"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine/mpeg"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine/nvdec"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine/vic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine/gr"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine/dma"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine/msppp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine/msvld"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine/nvenc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine/pm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine/vp"}, {"size": 176, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/gpio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/top"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/mmu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/devinit"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/instmem"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/iccsense"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/i2c"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/bus"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/fb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/secboot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/bar"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/therm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/bios"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/volt"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/pmu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/mxm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/mc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/clk"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/timer"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/ibus"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/fuse"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/pci"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/ltc"}, {"size": 192, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/core"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/falcon"}, {"size": 392, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm"}, {"size": 420, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/exynos"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/tilcdc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/rcar-du"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/fsl-dcu"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/tegra"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/virtio"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/imx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/ast"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/radeon"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/sis"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/qxl"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/msm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/cirrus"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/zte"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/panel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/udl"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/armada"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/omapdrm/dss"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/omapdrm/displays"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/omapdrm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/i810"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/bridge/analogix"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/bridge/adv7511"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/bridge/synopsys"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/bridge"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/shmobile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/mga"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/powerplay/hwmgr"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/powerplay/smumgr"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/powerplay"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/acp"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/amdgpu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/display/amdgpu_dm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/display/dc/dce112"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/display/dc/gpio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/display/dc/dml"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/display/dc/dcn10"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/display/dc/calcs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/display/dc/irq"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/display/dc/dce120"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/display/dc/basics"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/display/dc/bios"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/display/dc/i2caux"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/display/dc/dce100"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/display/dc/virtual"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/display/dc/dce"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/display/dc/dce110"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/display/dc/dce80"}, {"size": 128, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/display/dc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/display/modules/freesync"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/display/modules"}, {"size": 160, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/display"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/lib"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/amdkfd"}, {"size": 240, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/pl111"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/mediatek"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/sun4i"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/vmwgfx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/hisilicon/hibmc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/hisilicon/kirin"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/hisilicon"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/rockchip"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/arc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/gma500"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/arm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/meson"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/tinydrm/core"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/tinydrm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/vgem"}, {"size": 1364, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/drm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu/host1x"}, {"size": 1408, "name": "/usr/src/linux-headers-4.15.0-70/drivers/gpu"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/sn"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/spmi"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/drivers/char/hw_random"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/char/ipmi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/char/xillybus"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/char/agp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/char/mwave"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/char/xilinx_hwicap"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/char/pcmcia"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/char/tpm/st33zp24"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/drivers/char/tpm"}, {"size": 152, "name": "/usr/src/linux-headers-4.15.0-70/drivers/char"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/thunderbolt"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/memory/tegra"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/memory/samsung"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70/drivers/memory"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/fsi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/virt"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/pinctrl/spear"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/pinctrl/sh-pfc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/pinctrl/intel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/pinctrl/vt8500"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/pinctrl/stm32"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/pinctrl/uniphier"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/pinctrl/ti"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/pinctrl/qcom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/pinctrl/bcm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/pinctrl/berlin"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/pinctrl/tegra"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/pinctrl/nomadik"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/pinctrl/sprd"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/pinctrl/zte"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/pinctrl/aspeed"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/pinctrl/freescale"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/pinctrl/pxa"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/pinctrl/sirf"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/pinctrl/mediatek"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/pinctrl/samsung"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/pinctrl/mvebu"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/pinctrl/sunxi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/pinctrl/meson"}, {"size": 296, "name": "/usr/src/linux-headers-4.15.0-70/drivers/pinctrl"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-70/drivers/regulator"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/vhost"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/ras"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/fmc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/tee/optee"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/drivers/tee"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/mtd/spi-nor"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/mtd/nand/brcmnand"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/mtd/nand/bcm47xxnflash"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/mtd/nand/gpmi-nand"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/mtd/nand/atmel"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-70/drivers/mtd/nand"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/mtd/tests"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/mtd/onenand"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/mtd/lpddr"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/drivers/mtd/maps"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/drivers/mtd/devices"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/mtd/parsers"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/drivers/mtd/chips"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/mtd/ubi"}, {"size": 220, "name": "/usr/src/linux-headers-4.15.0-70/drivers/mtd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/nubus"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/reset/sti"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/reset/tegra"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/reset/hisilicon"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/drivers/reset"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/accessibility/braille"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/drivers/accessibility"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/pps/clients"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/pps/generators"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/drivers/pps"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/parport"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/drivers/atm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/ptp"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/drivers/iommu"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/opp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/hsi/clients"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/hsi/controllers"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/drivers/hsi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/i2c/muxes"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-70/drivers/i2c/busses"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/i2c/algos"}, {"size": 96, "name": "/usr/src/linux-headers-4.15.0-70/drivers/i2c"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/macintosh/ams"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/drivers/macintosh"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/hwmon/pmbus"}, {"size": 88, "name": "/usr/src/linux-headers-4.15.0-70/drivers/hwmon"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/platform/goldfish"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/platform/chrome"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/platform/mips"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/drivers/platform/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/platform/olpc"}, {"size": 104, "name": "/usr/src/linux-headers-4.15.0-70/drivers/platform"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/s390/cio"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/s390/char"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/s390/net"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/s390/virtio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/s390/crypto"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/s390/block"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/s390/scsi"}, {"size": 80, "name": "/usr/src/linux-headers-4.15.0-70/drivers/s390"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/idle"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/bus"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/message/fusion"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/drivers/message"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/mcb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/video/logo"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/savage"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/omap2/omapfb/dss"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/omap2/omapfb/displays"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/omap2/omapfb"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/omap2"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/intelfb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/mbx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/vermilion"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/mmp/fb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/mmp/panel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/mmp/hw"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/mmp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/via"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/geode"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/core"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/sis"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/riva"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/omap"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/matrox"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/aty"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/i810"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/nvidia"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/mb862xx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/kyro"}, {"size": 320, "name": "/usr/src/linux-headers-4.15.0-70/drivers/video/fbdev"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/video/console"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/drivers/video/backlight"}, {"size": 384, "name": "/usr/src/linux-headers-4.15.0-70/drivers/video"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/nvme/host"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/nvme/target"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/drivers/nvme"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/dio"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/extcon"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/base/power"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/base/regmap"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/base/test"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-70/drivers/base"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/android"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/hyperv"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wimax/i2400m"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wimax"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/fjes"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/bonding"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/team"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/cris"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ipvlan"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/can/spi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/can/cc770"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/can/sja1000"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/can/ifi_canfd"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/can/c_can"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/can/mscan"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/can/softing"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/can/m_can"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/can/usb/peak_usb"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/can/usb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/can/rcar"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/can/peak_canfd"}, {"size": 156, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/can"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wan/lmc"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wan"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/cisco"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/intel/iwlwifi/mvm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/intel/iwlwifi/dvm"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/intel/iwlwifi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/intel/iwlegacy"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/intel/ipw2x00"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/intel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/st/cw1200"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/st"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/rsi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/quantenna/qtnfmac"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/quantenna"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/ti/wl12xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/ti/wl1251"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/ti/wlcore"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/ti/wl18xx"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/ti"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/intersil/prism54"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/intersil/hostap"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/intersil/p54"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/intersil/orinoco"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/intersil"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/admtek"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/broadcom/brcm80211/brcmfmac"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/broadcom/brcm80211/brcmutil"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/broadcom/brcm80211/brcmsmac"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/broadcom/brcm80211"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/broadcom/b43"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/broadcom/b43legacy"}, {"size": 76, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/broadcom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/ath/wil6210"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/ath/carl9170"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/ath/ath5k"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/ath/ath9k"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/ath/wcn36xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/ath/ath10k"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/ath/ath6kl"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/ath/ar5523"}, {"size": 112, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/ath"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/realtek/rtl8xxxu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/realtek/rtlwifi/rtl8192de"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/realtek/rtlwifi/rtl8192cu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/realtek/rtlwifi/rtl8192ce"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/realtek/rtlwifi/rtl8192se"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/realtek/rtlwifi/rtl8192c"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/realtek/rtlwifi/rtl8723be"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/realtek/rtlwifi/rtl8723com"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/realtek/rtlwifi/rtl8821ae"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/realtek/rtlwifi/btcoexist"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/realtek/rtlwifi/rtl8192ee"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/realtek/rtlwifi/rtl8188ee"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/realtek/rtlwifi/rtl8723ae"}, {"size": 108, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/realtek/rtlwifi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/realtek/rtl818x/rtl8180"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/realtek/rtl818x/rtl8187"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/realtek/rtl818x"}, {"size": 160, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/realtek"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/marvell/libertas_tf"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/marvell/mwifiex"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/marvell/libertas"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/marvell"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/mediatek/mt7601u"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/mediatek"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/atmel"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/ralink/rt2x00"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/ralink"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/zydas/zd1211rw"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless/zydas"}, {"size": 772, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/wireless"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/dsa/mv88e6xxx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/dsa/b53"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/dsa/microchip"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/dsa"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/aeroflex"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/calxeda"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/silan"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/moxa"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/hp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/emulex/benet"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/emulex"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/nxp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/ibm/emac"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/ibm/ehea"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/ibm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/altera"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/cisco/enic"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/cisco"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/aurora"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/intel/ixgbevf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/intel/igbvf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/intel/i40evf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/intel/ixgbe"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/intel/fm10k"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/intel/ixgb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/intel/e1000"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/intel/igb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/intel/i40e"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/intel/e1000e"}, {"size": 100, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/intel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/natsemi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/pasemi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/qlogic/qede"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/qlogic/netxen"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/qlogic/qlcnic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/qlogic/qed"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/qlogic/qlge"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/qlogic"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/oki-semi/pch_gbe"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/oki-semi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/apm/xgene"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/apm/xgene-v2"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/apm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/alteon"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/nuvoton"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/agere"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/qualcomm/rmnet"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/qualcomm/emac"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/qualcomm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/tehuti"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/ti"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/i825xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/rdc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/sfc/falcon"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/sfc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/rocker"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/tile"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/wiznet"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/huawei/hinic"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/huawei"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/via"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/myricom/myri10ge"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/myricom"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/chelsio/libcxgb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/chelsio/cxgb3"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/chelsio/cxgb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/chelsio/cxgb4vf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/chelsio/cxgb4"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/chelsio"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/microchip"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/toshiba"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/allwinner"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/broadcom/bnx2x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/broadcom/genet"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/broadcom/bnxt"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/broadcom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/seeq"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/xscale"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/sis"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/adi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/mellanox/mlxfw"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/mellanox/mlx5/core/diag"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/mellanox/mlx5/core/ipoib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/mellanox/mlx5/core/fpga"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/mellanox/mlx5/core/accel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/mellanox/mlx5/core/lib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/mellanox/mlx5/core/en_accel"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/mellanox/mlx5/core"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/mellanox/mlx5"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/mellanox/mlx4"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/mellanox/mlxsw"}, {"size": 112, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/mellanox"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/3com"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/cadence"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/neterion/vxge"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/neterion"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/stmicro/stmmac"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/stmicro"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/davicom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/cirrus"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/dec/tulip"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/dec"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/fujitsu"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/micrel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/atheros/atlx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/atheros/alx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/atheros/atl1c"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/atheros/atl1e"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/atheros"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/8390"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/ezchip"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/socionext"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/freescale/fs_enet"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/freescale/fman"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/freescale/dpaa"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/freescale"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/renesas"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/faraday"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/realtek"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/aquantia/atlantic"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/aquantia"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/xircom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/nvidia"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/amd/xgbe"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/amd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/netronome/nfp"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/netronome"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/alacritech"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/packetengines"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/sun"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/marvell"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/mediatek"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/adaptec"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/apple"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/dlink"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/samsung/sxgbe"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/samsung"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/smsc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/sgi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/hisilicon/hns"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/hisilicon/hns3/hns3pf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/hisilicon/hns3/hns3vf"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/hisilicon/hns3"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/hisilicon"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/arc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/tundra"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/cavium/octeon"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/cavium/liquidio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/cavium/thunder"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/cavium"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/amazon/ena"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/amazon"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/brocade/bna"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/brocade"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/xilinx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/synopsys"}, {"size": 1672, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ethernet"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/vmxnet3"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/hippi"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/hamradio"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ieee802154"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/phy"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/appletalk"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/plip"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/arcnet"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/ppp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/slip"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/usb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/caif"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/xen-netback"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/fddi/skfp"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net/fddi"}, {"size": 3000, "name": "/usr/src/linux-headers-4.15.0-70/drivers/net"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/devfreq/event"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/drivers/devfreq"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/leds/trigger"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-70/drivers/leds"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/nvdimm"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/drivers/auxdisplay"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/ps3"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/drivers/input/keyboard"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/input/rmi4"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/input/tablet"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/drivers/input/mouse"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/drivers/input/misc"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/drivers/input/touchscreen"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/drivers/input/serio"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/input/gameport"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/input/joystick/iforce"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/drivers/input/joystick"}, {"size": 244, "name": "/usr/src/linux-headers-4.15.0-70/drivers/input"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/virtio"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/hwspinlock"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/drivers/clocksource"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/hwtracing/stm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/hwtracing/intel_th"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/hwtracing/coresight"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-70/drivers/hwtracing"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/sbus/char"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/drivers/sbus"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/xen/xenfs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/xen/events"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/xen/xen-pciback"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/xen/xenbus"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-70/drivers/xen"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/mux"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/phy/st"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/phy/qualcomm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/phy/ti"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/phy/lantiq"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/phy/motorola"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/phy/tegra"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/phy/allwinner"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/phy/broadcom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/phy/renesas"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/phy/marvell"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/phy/mediatek"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/phy/amlogic"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/phy/samsung"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/phy/hisilicon"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/phy/rockchip"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/phy/ralink"}, {"size": 204, "name": "/usr/src/linux-headers-4.15.0-70/drivers/phy"}, {"size": 120, "name": "/usr/src/linux-headers-4.15.0-70/drivers/crypto/vmx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/crypto/amcc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/crypto/stm32"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/crypto/bcm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/crypto/chelsio"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/crypto/virtio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/crypto/axis"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/crypto/ux500/cryp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/crypto/ux500/hash"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/drivers/crypto/ux500"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/crypto/qat/qat_c3xxx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/crypto/qat/qat_c62xvf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/crypto/qat/qat_c62x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/crypto/qat/qat_c3xxxvf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/crypto/qat/qat_dh895xccvf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/crypto/qat/qat_dh895xcc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/crypto/qat/qat_common"}, {"size": 68, "name": "/usr/src/linux-headers-4.15.0-70/drivers/crypto/qat"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/crypto/ccp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/crypto/sunxi-ss"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/crypto/marvell"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/crypto/nx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/crypto/mediatek"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/crypto/caam"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/crypto/rockchip"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/crypto/inside-secure"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/crypto/cavium/cpt"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/crypto/cavium/nitrox"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/crypto/cavium/zip"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70/drivers/crypto/cavium"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/crypto/qce"}, {"size": 436, "name": "/usr/src/linux-headers-4.15.0-70/drivers/crypto"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/bcma"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/pnp/pnpbios"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/pnp/pnpacpi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/pnp/isapnp"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/drivers/pnp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/block/xen-blkback"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/block/mtip32xx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/block/aoe"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/drivers/block/paride"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/block/rsxx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/block/drbd"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/block/zram"}, {"size": 112, "name": "/usr/src/linux-headers-4.15.0-70/drivers/block"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/irqchip"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/scsi/cxlflash"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/scsi/be2iscsi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/scsi/smartpqi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/scsi/ibmvscsi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/scsi/qla4xxx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/scsi/bfa"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/scsi/aacraid"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/scsi/arcmsr"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/scsi/aic7xxx/aicasm"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/drivers/scsi/aic7xxx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/scsi/snic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/scsi/fcoe"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/scsi/mvsas"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/scsi/device_handler"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/scsi/ufs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/scsi/ibmvscsi_tgt"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/scsi/osd"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/scsi/bnx2i"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/scsi/qedi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/scsi/aic94xx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/scsi/lpfc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/scsi/csiostor"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/scsi/hisi_sas"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/scsi/qla2xxx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/scsi/fnic"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/scsi/esas2r"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/scsi/libsas"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/scsi/libfc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/scsi/pcmcia"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/scsi/cxgbi/cxgb4i"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/scsi/cxgbi/cxgb3i"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/drivers/scsi/cxgbi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/scsi/bnx2fc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/scsi/megaraid"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/scsi/pm8001"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/scsi/arm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/scsi/qedf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/scsi/isci"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/scsi/sym53c8xx_2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/scsi/mpt3sas"}, {"size": 528, "name": "/usr/src/linux-headers-4.15.0-70/drivers/scsi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/amba"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/sh/maple"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/sh/superhyway"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/sh/clk"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/sh/intc"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/drivers/sh"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/thermal/int340x_thermal"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/thermal/st"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/thermal/qcom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/thermal/tegra"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/thermal/broadcom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/thermal/samsung"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/thermal/ti-soc-thermal"}, {"size": 112, "name": "/usr/src/linux-headers-4.15.0-70/drivers/thermal"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/fpga"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/eisa"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/uwb/i1480/dfu"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/uwb/i1480"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/drivers/uwb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/tc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/misc/cxl"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/misc/ibmasm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/misc/vmw_vmci"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/misc/sgi-gru"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/misc/ti-st"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/misc/lis3lv02d"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/misc/cb710"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/misc/sgi-xp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/misc/eeprom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/misc/cardreader"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/misc/c2port"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/misc/altera-stapl"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/misc/ocxl"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/misc/genwqe"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/misc/mic/cosm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/misc/mic/scif"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/misc/mic/vop"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/misc/mic/card"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/misc/mic/bus"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/misc/mic/host"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/misc/mic/cosm_client"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-70/drivers/misc/mic"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/misc/echo"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/misc/mei"}, {"size": 280, "name": "/usr/src/linux-headers-4.15.0-70/drivers/misc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/of/unittest-data"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/drivers/of"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/hid/usbhid"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/hid/i2c-hid"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/hid/intel-ish-hid"}, {"size": 80, "name": "/usr/src/linux-headers-4.15.0-70/drivers/hid"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/md/persistent-data"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/md/bcache"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-70/drivers/md"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/vfio/platform/reset"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/drivers/vfio/platform"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/vfio/mdev"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/vfio/pci"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-70/drivers/vfio"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/parisc"}, {"size": 76, "name": "/usr/src/linux-headers-4.15.0-70/drivers/mfd"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/powercap"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/target/tcm_fc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/target/sbp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/target/iscsi/cxgbit"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/drivers/target/iscsi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/target/loopback"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-70/drivers/target"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/nvmem"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/clk/spear"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/clk/nxp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/clk/st"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/clk/loongson1"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/clk/mxs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/clk/uniphier"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/clk/ti"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/clk/qcom"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/clk/at91"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/clk/mmp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/clk/bcm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/clk/h8300"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/clk/versatile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/clk/berlin"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/clk/ingenic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/clk/microchip"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/clk/tegra"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/clk/imx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/clk/keystone"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/clk/axis"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/clk/sunxi-ng"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/clk/ux500"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/clk/imgtec"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/clk/zte"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/clk/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/clk/pxa"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/clk/renesas"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/clk/sirf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/clk/axs10x"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/clk/mediatek"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/clk/samsung"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/clk/pistachio"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/clk/mvebu"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/clk/hisilicon"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/clk/rockchip"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/clk/sunxi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/clk/zynq"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/clk/socfpga"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/clk/meson"}, {"size": 396, "name": "/usr/src/linux-headers-4.15.0-70/drivers/clk"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/ipack/carriers"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/ipack/devices"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/drivers/ipack"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/iio/buffer"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/iio/counter"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/iio/potentiostat"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/iio/frequency"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/iio/humidity"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/iio/common/ssp_sensors"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/iio/common/hid-sensors"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/iio/common/st_sensors"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/iio/common/ms_sensors"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/iio/common/cros_ec_sensors"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-70/drivers/iio/common"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/drivers/iio/adc"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/iio/magnetometer"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/iio/multiplexer"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/drivers/iio/light"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/iio/potentiometer"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/iio/proximity"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/iio/dummy"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/iio/gyro"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/iio/orientation"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/iio/chemical"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/drivers/iio/accel"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/iio/pressure"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/iio/amplifiers"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/iio/health"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/iio/temperature"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/iio/imu/inv_mpu6050"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/iio/imu/bmi160"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/iio/imu/st_lsm6dsx"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/drivers/iio/imu"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/drivers/iio/dac"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/iio/trigger"}, {"size": 452, "name": "/usr/src/linux-headers-4.15.0-70/drivers/iio"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/mmc/core"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70/drivers/mmc/host"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-70/drivers/mmc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/dma/bestcomm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/dma/hsu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/dma/ioat"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/dma/qcom"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/dma/ipu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/dma/ppc4xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/dma/sh"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/dma/dw"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/dma/xilinx"}, {"size": 120, "name": "/usr/src/linux-headers-4.15.0-70/drivers/dma"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/firmware/efi/libstub"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/firmware/efi/test"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/drivers/firmware/efi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/firmware/tegra"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/firmware/broadcom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/firmware/google"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/firmware/meson"}, {"size": 100, "name": "/usr/src/linux-headers-4.15.0-70/drivers/firmware"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/infiniband/sw/rxe"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/infiniband/sw/rdmavt"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/drivers/infiniband/sw"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/infiniband/core"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/infiniband/hw/hns"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/infiniband/hw/hfi1"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/infiniband/hw/qib"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/infiniband/hw/cxgb3"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/infiniband/hw/i40iw"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/infiniband/hw/ocrdma"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/infiniband/hw/qedr"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/infiniband/hw/mlx5"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/infiniband/hw/nes"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/infiniband/hw/mlx4"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/infiniband/hw/vmw_pvrdma"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/infiniband/hw/bnxt_re"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/infiniband/hw/mthca"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/infiniband/hw/cxgb4"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/infiniband/hw/usnic"}, {"size": 188, "name": "/usr/src/linux-headers-4.15.0-70/drivers/infiniband/hw"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/infiniband/ulp/isert"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/infiniband/ulp/iser"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/infiniband/ulp/srp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/infiniband/ulp/ipoib"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/infiniband/ulp/srpt"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/infiniband/ulp/opa_vnic"}, {"size": 80, "name": "/usr/src/linux-headers-4.15.0-70/drivers/infiniband/ulp"}, {"size": 320, "name": "/usr/src/linux-headers-4.15.0-70/drivers/infiniband"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/acpi/acpica"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/acpi/arm64"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/acpi/dptf"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/acpi/apei"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/acpi/nfit"}, {"size": 84, "name": "/usr/src/linux-headers-4.15.0-70/drivers/acpi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/rpmsg"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/ssb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/connector"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70/drivers/ata"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/w1/slaves"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/w1/masters"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70/drivers/w1"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/drivers/pcmcia"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/usb/dwc3"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/usb/dwc2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/usb/wusbcore"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/usb/common"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/usb/usbip"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70/drivers/usb/serial"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/usb/chipidea"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/usb/atm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/usb/mon"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/usb/class"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/usb/musb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/usb/renesas_usbhs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/usb/early"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/usb/c67x00"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/usb/core"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/usb/mtu3"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/usb/phy"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/usb/image"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/usb/host/whci"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-70/drivers/usb/host"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/usb/misc/sisusbvga"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/drivers/usb/misc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/usb/typec/ucsi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/usb/typec/fusb302"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/drivers/usb/typec"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/usb/isp1760"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/usb/storage"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/usb/gadget/udc/bdc"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70/drivers/usb/gadget/udc"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/drivers/usb/gadget/legacy"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/usb/gadget/function"}, {"size": 104, "name": "/usr/src/linux-headers-4.15.0-70/drivers/usb/gadget"}, {"size": 500, "name": "/usr/src/linux-headers-4.15.0-70/drivers/usb"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70/drivers/ide"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/cdrom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/zorro"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/drivers/edac"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/lightnvm"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/uio"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-70/drivers/cpufreq"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/rtl8712"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/fwserial"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/lustre/lustre/lov"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/lustre/lustre/ptlrpc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/lustre/lustre/obdclass"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/lustre/lustre/lmv"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/lustre/lustre/fid"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/lustre/lustre/mgc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/lustre/lustre/fld"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/lustre/lustre/osc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/lustre/lustre/llite"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/lustre/lustre/mdc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/lustre/lustre/obdecho"}, {"size": 100, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/lustre/lustre"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/lustre/lnet/lnet"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/lustre/lnet/libcfs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/lustre/lnet/selftest"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/lustre/lnet/klnds/socklnd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/lustre/lnet/klnds/o2iblnd"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/lustre/lnet/klnds"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/lustre/lnet"}, {"size": 172, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/lustre"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/rtl8188eu"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/pi433"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/vboxvideo"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/gdm724x"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/skein"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/olpc_dcon"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/dgnc"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/irda/drivers"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/irda/net/ircomm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/irda/net/irlan"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/irda/net/irnet"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/irda/net"}, {"size": 76, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/irda"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/goldfish"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/comedi/drivers"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/comedi/kcomedilib"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/comedi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/nvec"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/vt6655"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/octeon"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/wilc1000"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/wlan-ng"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/vc04_services/bcm2835-camera"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/vc04_services/bcm2835-audio"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/vc04_services"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/clocking-wizard"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/most/hdm-dim2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/most/mostcore"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/most/aim-network"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/most/hdm-usb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/most/aim-sound"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/most/hdm-i2c"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/most/aim-v4l2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/most/aim-cdev"}, {"size": 108, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/most"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/xgifb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/mt29f_spinand"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/android/ion"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/android"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/fbtft"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/greybus/tools"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/greybus"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/fsl-mc/bus/dpio"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/fsl-mc/bus"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/fsl-mc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/ccree"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/rtlwifi/rtl8822be"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/rtlwifi/btcoexist"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/rtlwifi"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/speakup"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/sm750fb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/gs_fpgaboot"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/octeon-usb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/ks7010"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/emxx_udc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/rtl8192u/ieee80211"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/rtl8192u"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/board"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/iio/frequency"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/iio/adc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/iio/cdc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/iio/addac"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/iio/light"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/iio/impedance-analyzer"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/iio/gyro"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/iio/resolver"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/iio/accel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/iio/meter"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/iio/trigger"}, {"size": 144, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/iio"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/unisys/visorbus"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/unisys/visorinput"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/unisys/visorhba"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/unisys/visornic"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/unisys"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/rtl8723bs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/typec"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/rtl8192e/rtl8192e"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/rtl8192e"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/fsl-dpaa2/ethernet"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/fsl-dpaa2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/netlogic"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/vme/devices"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/vme"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/rts5208"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/media/atomisp/i2c/ov5693"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/media/atomisp/i2c"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/media/atomisp/platform/intel-mid"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/media/atomisp/platform"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/media/atomisp/pci/atomisp2/css2400"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/media/atomisp/pci/atomisp2"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/media/atomisp/pci"}, {"size": 92, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/media/atomisp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/media/davinci_vpfe"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/media/imx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/media/lirc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/media/omap4iss"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/media/cxd2099"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/media/bcm2048"}, {"size": 176, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/media"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging/vt6656"}, {"size": 1440, "name": "/usr/src/linux-headers-4.15.0-70/drivers/staging"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/rapidio/devices"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/rapidio/switches"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/drivers/rapidio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/tty/vt"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/drivers/tty/serial/8250"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/tty/serial/jsm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/tty/serial/cpm_uart"}, {"size": 112, "name": "/usr/src/linux-headers-4.15.0-70/drivers/tty/serial"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/tty/ipwireless"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/tty/hvc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/tty/serdev"}, {"size": 180, "name": "/usr/src/linux-headers-4.15.0-70/drivers/tty"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/vme/boards"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/vme/bridges"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/drivers/vme"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/hv"}, {"size": 76, "name": "/usr/src/linux-headers-4.15.0-70/drivers/watchdog"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/remoteproc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/cpuidle/governors"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/drivers/cpuidle"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/isdn/hysdn"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/isdn/gigaset"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/isdn/isdnloop"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/isdn/capi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/isdn/mISDN"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/drivers/isdn/hisax"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/isdn/i4l"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/isdn/hardware/mISDN"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/isdn/hardware/eicon"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/isdn/hardware/avm"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/drivers/isdn/hardware"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/isdn/divert"}, {"size": 164, "name": "/usr/src/linux-headers-4.15.0-70/drivers/isdn"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/pci/dwc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/pci/switch"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/pci/hotplug"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/pci/endpoint/functions"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/drivers/pci/endpoint"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/pci/pcie/aer"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/drivers/pci/pcie"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/pci/host"}, {"size": 124, "name": "/usr/src/linux-headers-4.15.0-70/drivers/pci"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/drivers/pwm"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/mailbox"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/spi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/firewire"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/tuners"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/cec"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/rc/img-ir"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/rc/keymaps"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/rc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/common/b2c2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/common/saa7146"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/common/v4l2-tpg"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/common/siano"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/common"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/radio/wl128x"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/radio/si4713"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/radio/si470x"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/radio"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/i2c/m5mols"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/i2c/adv748x"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/i2c/soc_camera"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/i2c/smiapp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/i2c/cx25840"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/i2c/s5c73m3"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/i2c/et8ek8"}, {"size": 112, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/i2c"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/platform/vimc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/platform/tegra-cec"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/platform/rcar-vin"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/platform/omap3isp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/platform/davinci"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/platform/soc_camera"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/platform/sti/cec"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/platform/sti/bdisp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/platform/sti/hva"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/platform/sti/delta"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/platform/sti/c8sectpfe"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/platform/sti"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/platform/mtk-vpu"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/platform/am437x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/platform/stm32"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/platform/qcom/venus"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/platform/qcom/camss-8x16"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/platform/qcom"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/platform/s5p-g2d"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/platform/s3c-camif"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/platform/cec-gpio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/platform/s5p-cec"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/platform/vsp1"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/platform/mtk-vcodec"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/platform/vivid"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/platform/exynos-gsc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/platform/s5p-mfc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/platform/blackfin"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/platform/marvell-ccic"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/platform/omap"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/platform/mtk-jpeg"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/platform/coda"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/platform/mtk-mdp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/platform/s5p-jpeg"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/platform/ti-vpe"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/platform/rockchip/rga"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/platform/rockchip"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/platform/atmel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/platform/exynos4-is"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/platform/meson"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/platform/xilinx"}, {"size": 396, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/platform"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/v4l2-core"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/mmc/siano"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/mmc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/dvb-core"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/usb/dvb-usb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/usb/ttusb-dec"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/usb/au0828"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/usb/stkwebcam"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/usb/usbtv"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/usb/pwc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/usb/gspca/gl860"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/usb/gspca/m5602"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/usb/gspca/stv06xx"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/usb/gspca"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/usb/b2c2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/usb/rainshadow-cec"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/usb/ttusb-budget"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/usb/hackrf"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/usb/uvc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/usb/usbvision"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/usb/em28xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/usb/zr364xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/usb/airspy"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/usb/stk1160"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/usb/s2255"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/usb/hdpvr"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/usb/pvrusb2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/usb/cx231xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/usb/tm6000"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/usb/cpia2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/usb/msi2500"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/usb/as102"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/usb/pulse8-cec"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/usb/siano"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/usb/go7007"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/usb/dvb-usb-v2"}, {"size": 424, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/usb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/dvb-frontends/drx39xyj"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/dvb-frontends"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/pci/dm1105"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/pci/meye"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/pci/ngene"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/pci/smipcie"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/pci/cx18"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/pci/tw68"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/pci/ivtv"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/pci/solo6x10"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/pci/pt3"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/pci/pluto2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/pci/b2c2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/pci/bt8xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/pci/saa7146"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/pci/netup_unidvb"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/pci/ttpci"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/pci/sta2x11"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/pci/pt1"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/pci/saa7134"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/pci/cobalt"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/pci/dt3155"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/pci/zoran"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/pci/mantis"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/pci/cx88"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/pci/saa7164"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/pci/cx23885"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/pci/tw5864"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/pci/cx25821"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/pci/tw686x"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/pci/ddbridge"}, {"size": 364, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media/pci"}, {"size": 1636, "name": "/usr/src/linux-headers-4.15.0-70/drivers/media"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/drivers/sfi"}, {"size": 16352, "name": "/usr/src/linux-headers-4.15.0-70/drivers"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/samples/hidraw"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/samples/kfifo"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/samples/timers"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/samples/livepatch"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/samples/trace_printk"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/samples/kobject"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/samples/vfio-mdev"}, {"size": 80, "name": "/usr/src/linux-headers-4.15.0-70/samples/bpf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/samples/kprobes"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/samples/auxdisplay"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/samples/hw_breakpoint"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/samples/trace_events"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/samples/blackfin"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-70/samples/pktgen"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/samples/configfs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/samples/rpmsg"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/samples/uhid"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/samples/connector"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/samples/v4l"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/samples/kdb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/samples/seccomp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/samples/mic/mpssd"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/samples/mic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/samples/mei"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/samples/watchdog"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/samples/statx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/samples/sockmap"}, {"size": 332, "name": "/usr/src/linux-headers-4.15.0-70/samples"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/ipc"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/Documentation/sphinx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/Documentation/features"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/Documentation/EDID"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/Documentation/s390"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/Documentation/kbuild"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/Documentation/trace/postprocess"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-70/Documentation/trace"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/Documentation/aoe"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/Documentation/scsi/scsi_transport_srp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/Documentation/scsi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/Documentation/cdrom"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/Documentation/filesystems/cifs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/Documentation/filesystems"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/Documentation/media"}, {"size": 176, "name": "/usr/src/linux-headers-4.15.0-70/Documentation"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/ubuntu/vbox/vboxvideo"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/ubuntu/vbox/vboxguest"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/ubuntu/vbox/vboxsf"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-70/ubuntu/vbox"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/ubuntu/include"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/ubuntu/hio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/ubuntu/xr-usb-serial"}, {"size": 112, "name": "/usr/src/linux-headers-4.15.0-70/ubuntu"}, {"size": 68, "name": "/usr/src/linux-headers-4.15.0-70/init"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/wimax"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/nfc/nci"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/nfc/hci"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/net/nfc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/bluetooth/hidp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/bluetooth/rfcomm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/bluetooth/bnep"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/bluetooth/cmtp"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-70/net/bluetooth"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/tipc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/qrtr"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/net/key"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/netlink"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/net/dccp/ccids"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/net/dccp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/net/rose"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/xfrm"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/net/sched"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/kcm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/decnet/netfilter"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/net/decnet"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/can"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/unix"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/sctp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/packet"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/net/sunrpc/auth_gss"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/net/sunrpc/xprtrdma"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/net/sunrpc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/mpls"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/rds"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/net/wireless"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/atm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/psample"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/mac802154"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/net/bpf"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/net/ipv4/netfilter"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-70/net/ipv4"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/iucv"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/smc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/dns_resolver"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/dsa"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/nsh"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/net/ethernet"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/vmw_vsock"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/rfkill"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/llc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/switchdev"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/net/netrom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/openvswitch"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/ieee802154/6lowpan"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/net/ieee802154"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/net/core"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/ife"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/9p"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/x25"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/phonet"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/rxrpc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/net/appletalk"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/lapb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/netlabel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/ipx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/batman-adv"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/l3mdev"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/strparser"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/802"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/8021q"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/l2tp"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/net/bridge/netfilter"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/net/bridge"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/hsr"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/6lowpan"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/net/mac80211"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/ncsi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/caif"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/dcb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/tls"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/net/netfilter/ipvs"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/net/netfilter/ipset"}, {"size": 104, "name": "/usr/src/linux-headers-4.15.0-70/net/netfilter"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/net/ceph"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/net/ipv6/ila"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/net/ipv6/netfilter"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/net/ipv6"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/net/ax25"}, {"size": 1152, "name": "/usr/src/linux-headers-4.15.0-70/net"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/spi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/power/cpupower/utils"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/power/cpupower/debug/x86_64"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/power/cpupower/debug/i386"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/power/cpupower/debug/kernel"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/tools/power/cpupower/debug"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/tools/power/cpupower/bench"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-70/tools/power/cpupower"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/power/pm-graph"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/power/x86/x86_energy_perf_policy"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/power/x86/turbostat"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/tools/power/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/power/acpi/tools/acpidbg"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/power/acpi/tools/acpidump"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/power/acpi/tools/ec"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/tools/power/acpi/tools"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-70/tools/power/acpi"}, {"size": 148, "name": "/usr/src/linux-headers-4.15.0-70/tools/power"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/tools/perf/Documentation"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-70/tools/perf/trace/beauty"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/tools/perf/trace"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/tools/perf/tests/shell/lib"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/tools/perf/tests/shell"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/tools/perf/tests"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/perf/util"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/perf/scripts/perl/Perf-Trace-Util"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-70/tools/perf/scripts/perl"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/tools/perf/scripts"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/perf/arch/s390"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/perf/arch/arm64"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/perf/arch/sparc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/perf/arch/xtensa"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/perf/arch/sh"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/perf/arch/x86/tests"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/perf/arch/x86/entry/syscalls"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/tools/perf/arch/x86/entry"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/tools/perf/arch/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/perf/arch/arm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/perf/arch/powerpc"}, {"size": 88, "name": "/usr/src/linux-headers-4.15.0-70/tools/perf/arch"}, {"size": 336, "name": "/usr/src/linux-headers-4.15.0-70/tools/perf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/firewire"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/gpio"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/tools/build/feature"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/build/tests/ex"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/tools/build/tests"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-70/tools/build"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/accounting"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/bpf/bpftool/Documentation"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/tools/bpf/bpftool"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/tools/bpf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/time"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/leds"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/tools/virtio/ringtest"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/virtio/vhost_test"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/virtio/virtio-trace"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/tools/virtio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/wmi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/cgroup"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/thermal/tmon"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/tools/thermal"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/kvm/kvm_stat"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/tools/kvm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/iio"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/tools/scripts"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/tools/vm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/pcmcia"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/tools/usb/usbip/vudc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/usb/usbip/libsrc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/usb/usbip/src"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-70/tools/usb/usbip"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/usb/ffs-aio-example/multibuff/host_app"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/tools/usb/ffs-aio-example/multibuff"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/usb/ffs-aio-example/simple/host_app"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/tools/usb/ffs-aio-example/simple"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/tools/usb/ffs-aio-example"}, {"size": 88, "name": "/usr/src/linux-headers-4.15.0-70/tools/usb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/nfsd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/lib/subcmd"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/tools/lib/bpf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/lib/api"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/tools/lib/lockdep"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/tools/lib/traceevent"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-70/tools/lib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/laptop/freefall"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/laptop/dslm"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/tools/laptop"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/tools/hv"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/tools/objtool"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/memory-hotplug"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/breakpoints"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/mqueue"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/ntb"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/gpio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/ftrace"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/drivers/gpu"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/drivers"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/ipc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/timers"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/media_tests"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/sigaltstack"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/ptp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/networking/timestamping"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/networking"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/bpf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/kcmp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/splice"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/kmod"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/android/ion"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/android"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/net"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/size"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/mount"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/efivarfs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/prctl"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/futex/functional"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/futex"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/pstore"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/memfd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/vDSO"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/static_keys"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/sysctl"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/cpu-hotplug"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/ptrace"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/x86"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/firmware"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/membarrier"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/locking"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/vm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/sync"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/intel_pstate"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/seccomp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/user"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/zram"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/capabilities"}, {"size": 104, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/rcutorture/bin"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/rcutorture/configs/rcuperf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/rcutorture/configs/rcu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/rcutorture/configs/lock"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/rcutorture/configs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/rcutorture/formal/srcu-cbmc/tests/store_buffering"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/rcutorture/formal/srcu-cbmc/tests"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/rcutorture/formal/srcu-cbmc"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/rcutorture/formal"}, {"size": 164, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/rcutorture"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/lib"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/cpufreq"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/exec"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/netfilter"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/nsfs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/watchdog"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/filesystems"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/powerpc/alignment"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/powerpc/cache_shape"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/powerpc/benchmarks"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/powerpc/syscalls"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/powerpc/switch_endian"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/powerpc/math"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/powerpc/mm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/powerpc/signal"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/powerpc/pmu/ebb"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/powerpc/pmu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/powerpc/vphn"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/powerpc/stringloops"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/powerpc/primitives"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/powerpc/ptrace"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/powerpc/copyloops"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/powerpc/scripts"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/powerpc/dscr"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/powerpc/tm"}, {"size": 152, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/powerpc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests/ia64"}, {"size": 1052, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/selftests"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/vsock"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/nvdimm/test"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/nvdimm"}, {"size": 108, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/ktest"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/scatterlist"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/radix-tree"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing/fault-injection"}, {"size": 1220, "name": "/usr/src/linux-headers-4.15.0-70/tools/testing"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/tools/pci"}, {"size": 2176, "name": "/usr/src/linux-headers-4.15.0-70/tools"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/sound/spi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/spear"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/generic"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/intel/boards"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/intel/baytrail"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/intel/common"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/intel/haswell"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/intel/atom/sst"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/intel/atom"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/intel/skylake"}, {"size": 80, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/intel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/txx9"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/davinci"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/mxs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/sti"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/dwc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/qcom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/bcm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/stm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/kirkwood"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/tegra"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/img"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/adi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/au1x"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/ux500"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/fsl"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/xtensa"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/sh/rcar"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/sh"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/blackfin"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/cirrus"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/zte"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/omap"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/codecs"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/pxa"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/sirf"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/amd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/mediatek/common"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/mediatek/mt2701"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/mediatek/mt8173"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/mediatek"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/samsung"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/nuc900"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/hisilicon"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/rockchip"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/atmel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/sunxi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc/jz4740"}, {"size": 616, "name": "/usr/src/linux-headers-4.15.0-70/sound/soc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/firewire/oxfw"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/firewire/bebob"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/firewire/tascam"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/firewire/digi00x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/firewire/motu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/firewire/fireworks"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/firewire/dice"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/firewire/fireface"}, {"size": 80, "name": "/usr/src/linux-headers-4.15.0-70/sound/firewire"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/drivers/opl4"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/drivers/pcsp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/drivers/vx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/drivers/mpu401"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/drivers/opl3"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-70/sound/drivers"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/sound/ppc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/i2c/other"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/sound/i2c"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/sound/ac97"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/sound/aoa/fabrics"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/aoa/soundbus/i2sbus"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/sound/aoa/soundbus"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/aoa/core"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/sound/aoa/codecs"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-70/sound/aoa"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/core/seq/oss"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/sound/core/seq"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/core/oss"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-70/sound/core"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/sound/sparc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/isa/cs423x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/isa/es1688"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/isa/opti9xx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/isa/sb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/isa/galaxy"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/isa/gus"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/isa/wavefront"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/isa/ad1816a"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/isa/wss"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/isa/msnd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/isa/ad1848"}, {"size": 112, "name": "/usr/src/linux-headers-4.15.0-70/sound/isa"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/sound/sh"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/sound/mips"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/sound/parisc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/sound/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/synth/emux"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/sound/synth"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/pcmcia/pdaudiocf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/pcmcia/vx"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/sound/pcmcia"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/sound/usb/line6"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/usb/usx2y"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/usb/hiface"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/usb/bcd2000"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/usb/misc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/usb/caiaq"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/usb/6fire"}, {"size": 76, "name": "/usr/src/linux-headers-4.15.0-70/sound/usb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/hda/ext"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/sound/hda"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/sound/oss/dmasound"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/sound/oss"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/sound/atmel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/sound/arm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/pci/korg1212"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/pci/ymfpci"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/pci/nm256"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/pci/aw2"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/pci/ali5451"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/pci/asihpi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/pci/rme9652"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/pci/ice1712"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/pci/lx6464es"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/pci/ac97"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/pci/riptide"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/pci/vx222"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/pci/emu10k1"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/pci/ca0106"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/pci/au88x0"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/pci/cs5535audio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/pci/ctxfi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/pci/trident"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/pci/pcxhr"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/pci/lola"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/pci/echoaudio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/pci/mixart"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/pci/oxygen"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/sound/pci/cs46xx"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/sound/pci/hda"}, {"size": 244, "name": "/usr/src/linux-headers-4.15.0-70/sound/pci"}, {"size": 1524, "name": "/usr/src/linux-headers-4.15.0-70/sound"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/mm/kasan"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/mm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/security/yama"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/security/tomoyo"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/security/integrity/evm"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/security/integrity/ima"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70/security/integrity"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/security/apparmor"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/security/smack"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/security/loadpin"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/security/keys/encrypted-keys"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/security/keys"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/security/selinux"}, {"size": 164, "name": "/usr/src/linux-headers-4.15.0-70/security"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/include/soc/at91"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/include/soc/sa1100"}, {"size": 108, "name": "/usr/src/linux-headers-4.15.0-70/include/soc/tegra"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/include/soc/imx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/include/soc/brcmstb"}, {"size": 88, "name": "/usr/src/linux-headers-4.15.0-70/include/soc/fsl/qe"}, {"size": 144, "name": "/usr/src/linux-headers-4.15.0-70/include/soc/fsl"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/include/soc/nps"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/include/soc/mediatek"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/include/soc/rockchip"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/include/soc/arc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/include/soc/bcm2835"}, {"size": 372, "name": "/usr/src/linux-headers-4.15.0-70/include/soc"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/include/uapi/rdma/hfi"}, {"size": 168, "name": "/usr/src/linux-headers-4.15.0-70/include/uapi/rdma"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/include/uapi/mtd"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/include/uapi/linux/spi"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/include/uapi/linux/wimax"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/include/uapi/linux/hdlc"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/include/uapi/linux/raid"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/include/uapi/linux/cifs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/include/uapi/linux/sched"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70/include/uapi/linux/can"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-70/include/uapi/linux/netfilter_ipv4"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/include/uapi/linux/sunrpc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/include/uapi/linux/hsi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/include/uapi/linux/byteorder"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/include/uapi/linux/android"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-70/include/uapi/linux/tc_act"}, {"size": 88, "name": "/usr/src/linux-headers-4.15.0-70/include/uapi/linux/dvb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/include/uapi/linux/iio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/include/uapi/linux/mmc"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/include/uapi/linux/netfilter_arp"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/include/uapi/linux/genwqe"}, {"size": 144, "name": "/usr/src/linux-headers-4.15.0-70/include/uapi/linux/usb"}, {"size": 80, "name": "/usr/src/linux-headers-4.15.0-70/include/uapi/linux/netfilter_bridge"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/include/uapi/linux/nfsd"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/include/uapi/linux/tc_ematch"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/include/uapi/linux/caif"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/include/uapi/linux/netfilter/ipset"}, {"size": 428, "name": "/usr/src/linux-headers-4.15.0-70/include/uapi/linux/netfilter"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-70/include/uapi/linux/netfilter_ipv6"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/include/uapi/linux/isdn"}, {"size": 5280, "name": "/usr/src/linux-headers-4.15.0-70/include/uapi/linux"}, {"size": 204, "name": "/usr/src/linux-headers-4.15.0-70/include/uapi/asm-generic"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/include/uapi/video"}, {"size": 204, "name": "/usr/src/linux-headers-4.15.0-70/include/uapi/sound"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/include/uapi/xen"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-70/include/uapi/scsi/fc"}, {"size": 96, "name": "/usr/src/linux-headers-4.15.0-70/include/uapi/scsi"}, {"size": 396, "name": "/usr/src/linux-headers-4.15.0-70/include/uapi/drm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/include/uapi/misc"}, {"size": 6456, "name": "/usr/src/linux-headers-4.15.0-70/include/uapi"}, {"size": 448, "name": "/usr/src/linux-headers-4.15.0-70/include/rdma"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/include/memory"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/include/ras"}, {"size": 196, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/spi"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/wimax"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/soc/ti"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/soc/qcom"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/soc/actions"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/soc/dove"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/soc/brcmstb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/soc/renesas"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/soc/mediatek"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/soc/samsung"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/soc/sunxi"}, {"size": 152, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/soc"}, {"size": 88, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/power"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/perf"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/rtc"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/gpio"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/raid"}, {"size": 344, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/mlx5"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/avf"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/crush"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/pinctrl"}, {"size": 172, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/regulator"}, {"size": 144, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/sched"}, {"size": 272, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/mtd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/reset"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/can/platform"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/can/dev"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/can"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/netfilter_ipv4"}, {"size": 228, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/sunrpc"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/hsi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/i2c"}, {"size": 96, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/mlx4"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/byteorder"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/dsa"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/extcon"}, {"size": 104, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/input"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/mux"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/phy/tegra"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/phy"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/platform_data/x86"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/platform_data/media"}, {"size": 1084, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/platform_data"}, {"size": 100, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/bcma"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/fsl/bestcomm"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/fsl"}, {"size": 100, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/irqchip"}, {"size": 80, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/amba"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/fpga"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/ulpi"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/uwb"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/unaligned"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/mfd/da9062"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/mfd/mt6323"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/mfd/da9063"}, {"size": 212, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/mfd/wm831x"}, {"size": 500, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/mfd/arizona"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/mfd/da9150"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/mfd/da9055"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/mfd/mt6397"}, {"size": 308, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/mfd/wm8994"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/mfd/pcf50633"}, {"size": 132, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/mfd/wm8350"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/mfd/syscon"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/mfd/da9052"}, {"size": 68, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/mfd/samsung"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/mfd/abx500"}, {"size": 2988, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/mfd"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/clk"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/iio/frequency"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/iio/common"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/iio/adc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/iio/magnetometer"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/iio/gyro"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/iio/timer"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/iio/accel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/iio/imu"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/iio/dac"}, {"size": 268, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/iio"}, {"size": 108, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/mmc"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/dma"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/firmware/meson"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/firmware"}, {"size": 280, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/qed"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/decompress"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/rpmsg"}, {"size": 132, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/ssb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/netfilter_arp"}, {"size": 476, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/usb"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/netfilter_bridge"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/netfilter/ipset"}, {"size": 200, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/netfilter"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/lockd"}, {"size": 192, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/ceph"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/remoteproc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/netfilter_ipv6"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/isdn"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/include/linux/mailbox"}, {"size": 19528, "name": "/usr/src/linux-headers-4.15.0-70/include/linux"}, {"size": 92, "name": "/usr/src/linux-headers-4.15.0-70/include/asm-generic/bitops"}, {"size": 708, "name": "/usr/src/linux-headers-4.15.0-70/include/asm-generic"}, {"size": 580, "name": "/usr/src/linux-headers-4.15.0-70/include/video"}, {"size": 872, "name": "/usr/src/linux-headers-4.15.0-70/include/trace/events"}, {"size": 912, "name": "/usr/src/linux-headers-4.15.0-70/include/trace"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/include/dt-bindings/soc"}, {"size": 104, "name": "/usr/src/linux-headers-4.15.0-70/include/dt-bindings/power"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/include/dt-bindings/gpio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/include/dt-bindings/spmi"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/include/dt-bindings/interrupt-controller"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/include/dt-bindings/memory"}, {"size": 136, "name": "/usr/src/linux-headers-4.15.0-70/include/dt-bindings/pinctrl"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/include/dt-bindings/regulator"}, {"size": 228, "name": "/usr/src/linux-headers-4.15.0-70/include/dt-bindings/reset"}, {"size": 1164, "name": "/usr/src/linux-headers-4.15.0-70/include/dt-bindings/clock"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/include/dt-bindings/i2c"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/include/dt-bindings/net"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/include/dt-bindings/sound"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/include/dt-bindings/leds"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/include/dt-bindings/input"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/include/dt-bindings/mux"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/include/dt-bindings/phy"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/include/dt-bindings/display"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/include/dt-bindings/thermal"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/include/dt-bindings/mips"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-70/include/dt-bindings/mfd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/include/dt-bindings/clk"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/include/dt-bindings/iio/adc"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/include/dt-bindings/iio"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/include/dt-bindings/dma"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/include/dt-bindings/arm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/include/dt-bindings/pwm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/include/dt-bindings/mailbox"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/include/dt-bindings/media"}, {"size": 2068, "name": "/usr/src/linux-headers-4.15.0-70/include/dt-bindings"}, {"size": 120, "name": "/usr/src/linux-headers-4.15.0-70/include/math-emu"}, {"size": 76, "name": "/usr/src/linux-headers-4.15.0-70/include/net/nfc"}, {"size": 176, "name": "/usr/src/linux-headers-4.15.0-70/include/net/bluetooth"}, {"size": 168, "name": "/usr/src/linux-headers-4.15.0-70/include/net/sctp"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/include/net/iucv"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-70/include/net/tc_act"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70/include/net/9p"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/include/net/phonet"}, {"size": 76, "name": "/usr/src/linux-headers-4.15.0-70/include/net/caif"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/include/net/netfilter/ipv4"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/include/net/netfilter/ipv6"}, {"size": 272, "name": "/usr/src/linux-headers-4.15.0-70/include/net/netfilter"}, {"size": 80, "name": "/usr/src/linux-headers-4.15.0-70/include/net/netns"}, {"size": 3064, "name": "/usr/src/linux-headers-4.15.0-70/include/net"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/include/sound/ac97"}, {"size": 1188, "name": "/usr/src/linux-headers-4.15.0-70/include/sound"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/include/clocksource"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/include/xen/interface/hvm"}, {"size": 228, "name": "/usr/src/linux-headers-4.15.0-70/include/xen/interface/io"}, {"size": 432, "name": "/usr/src/linux-headers-4.15.0-70/include/xen/interface"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/include/xen/arm"}, {"size": 544, "name": "/usr/src/linux-headers-4.15.0-70/include/xen"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-70/include/crypto/internal"}, {"size": 392, "name": "/usr/src/linux-headers-4.15.0-70/include/crypto"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-70/include/scsi/fc"}, {"size": 580, "name": "/usr/src/linux-headers-4.15.0-70/include/scsi"}, {"size": 120, "name": "/usr/src/linux-headers-4.15.0-70/include/drm/ttm"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/include/drm/i2c"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/include/drm/bridge"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/include/drm/tinydrm"}, {"size": 1008, "name": "/usr/src/linux-headers-4.15.0-70/include/drm"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/include/misc"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/include/kvm"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-70/include/target/iscsi"}, {"size": 96, "name": "/usr/src/linux-headers-4.15.0-70/include/target"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/include/acpi/platform"}, {"size": 476, "name": "/usr/src/linux-headers-4.15.0-70/include/acpi"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-70/include/pcmcia"}, {"size": 92, "name": "/usr/src/linux-headers-4.15.0-70/include/media/davinci"}, {"size": 216, "name": "/usr/src/linux-headers-4.15.0-70/include/media/i2c"}, {"size": 96, "name": "/usr/src/linux-headers-4.15.0-70/include/media/drv-intf"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/include/media/blackfin"}, {"size": 988, "name": "/usr/src/linux-headers-4.15.0-70/include/media"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-70/include/keys"}, {"size": 39780, "name": "/usr/src/linux-headers-4.15.0-70/include"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/crypto/async_tx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/crypto/asymmetric_keys"}, {"size": 88, "name": "/usr/src/linux-headers-4.15.0-70/crypto"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/kernel/power"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/kernel/irq"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/kernel/printk"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/kernel/sched"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/kernel/livepatch"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/kernel/bpf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/kernel/events"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/kernel/trace"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/kernel/time"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/kernel/cgroup"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/kernel/debug/kdb"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/kernel/debug"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/kernel/locking"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/kernel/rcu"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/kernel/gcov"}, {"size": 220, "name": "/usr/src/linux-headers-4.15.0-70/kernel"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/block/partitions"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70/block"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/certs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/firmware"}, {"size": 156, "name": "/usr/src/linux-headers-4.15.0-70/scripts/mod"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/scripts/ksymoops"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/scripts/package"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/scripts/coccinelle/iterators"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/scripts/coccinelle/locks"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/scripts/coccinelle/api/alloc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/scripts/coccinelle/api/debugfs"}, {"size": 88, "name": "/usr/src/linux-headers-4.15.0-70/scripts/coccinelle/api"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/scripts/coccinelle/tests"}, {"size": 76, "name": "/usr/src/linux-headers-4.15.0-70/scripts/coccinelle/misc"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/scripts/coccinelle/null"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/scripts/coccinelle/free"}, {"size": 288, "name": "/usr/src/linux-headers-4.15.0-70/scripts/coccinelle"}, {"size": 208, "name": "/usr/src/linux-headers-4.15.0-70/scripts/genksyms"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/scripts/basic"}, {"size": 136, "name": "/usr/src/linux-headers-4.15.0-70/scripts/gcc-plugins"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/scripts/tracing"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-70/scripts/gdb/linux"}, {"size": 84, "name": "/usr/src/linux-headers-4.15.0-70/scripts/gdb"}, {"size": 92, "name": "/usr/src/linux-headers-4.15.0-70/scripts/kconfig/lxdialog"}, {"size": 692, "name": "/usr/src/linux-headers-4.15.0-70/scripts/kconfig"}, {"size": 188, "name": "/usr/src/linux-headers-4.15.0-70/scripts/dtc/libfdt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-70/scripts/dtc/include-prefixes"}, {"size": 620, "name": "/usr/src/linux-headers-4.15.0-70/scripts/dtc"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/scripts/selinux/genheaders"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/scripts/selinux/mdp"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-70/scripts/selinux"}, {"size": 3556, "name": "/usr/src/linux-headers-4.15.0-70/scripts"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/m32r/oprofile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/m32r/mm"}, {"size": 136, "name": "/usr/src/linux-headers-4.15.0-70/arch/m32r/include/uapi/asm"}, {"size": 140, "name": "/usr/src/linux-headers-4.15.0-70/arch/m32r/include/uapi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/m32r/include/asm/mappi2"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/arch/m32r/include/asm/m32700ut"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/m32r/include/asm/mappi3"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/arch/m32r/include/asm/opsput"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/m32r/include/asm/m32104ut"}, {"size": 500, "name": "/usr/src/linux-headers-4.15.0-70/arch/m32r/include/asm"}, {"size": 644, "name": "/usr/src/linux-headers-4.15.0-70/arch/m32r/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/m32r/kernel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/m32r/boot/compressed"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/arch/m32r/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/m32r/lib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/m32r/platforms/mappi2"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/m32r/platforms/oaks32r"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/m32r/platforms/m32700ut"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/m32r/platforms/mappi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/m32r/platforms/mappi3"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/m32r/platforms/opsput"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/m32r/platforms/usrv"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/m32r/platforms/m32104ut"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-70/arch/m32r/platforms"}, {"size": 792, "name": "/usr/src/linux-headers-4.15.0-70/arch/m32r"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/mm"}, {"size": 108, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/include/uapi/asm"}, {"size": 316, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/include/uapi/arch-v10/arch"}, {"size": 320, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/include/uapi/arch-v10"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/include/uapi/arch-v32/arch"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/include/uapi/arch-v32"}, {"size": 448, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/include/uapi"}, {"size": 208, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/include/asm"}, {"size": 124, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/include/arch-v10/arch"}, {"size": 128, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/include/arch-v10"}, {"size": 128, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/include/arch-v32/mach-a3/mach/hwregs/asm"}, {"size": 212, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/include/arch-v32/mach-a3/mach/hwregs/iop/asm"}, {"size": 324, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/include/arch-v32/mach-a3/mach/hwregs/iop"}, {"size": 604, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/include/arch-v32/mach-a3/mach/hwregs"}, {"size": 628, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/include/arch-v32/mach-a3/mach"}, {"size": 632, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/include/arch-v32/mach-a3"}, {"size": 276, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/include/arch-v32/arch/hwregs/asm"}, {"size": 492, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/include/arch-v32/arch/hwregs/iop/asm"}, {"size": 816, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/include/arch-v32/arch/hwregs/iop"}, {"size": 1288, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/include/arch-v32/arch/hwregs"}, {"size": 1412, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/include/arch-v32/arch"}, {"size": 88, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/include/arch-v32/mach-fs/mach/hwregs/asm"}, {"size": 216, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/include/arch-v32/mach-fs/mach/hwregs"}, {"size": 240, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/include/arch-v32/mach-fs/mach"}, {"size": 244, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/include/arch-v32/mach-fs"}, {"size": 2292, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/include/arch-v32"}, {"size": 3080, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/include"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/arch-v10/drivers"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/arch-v10/mm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/arch-v10/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/arch-v10/lib"}, {"size": 68, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/arch-v10"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/arch-v32/drivers/mach-a3"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/arch-v32/drivers/mach-fs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/arch-v32/drivers/pci"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/arch-v32/drivers"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/arch-v32/mach-a3"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/arch-v32/mm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/arch-v32/kernel"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/arch-v32/mach-fs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/arch-v32/lib"}, {"size": 108, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/arch-v32"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/boot/compressed"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/boot/rescue"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/boot/dts"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris/boot"}, {"size": 3348, "name": "/usr/src/linux-headers-4.15.0-70/arch/cris"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/h8300/mm"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/arch/h8300/include/uapi/asm"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/arch/h8300/include/uapi"}, {"size": 136, "name": "/usr/src/linux-headers-4.15.0-70/arch/h8300/include/asm"}, {"size": 176, "name": "/usr/src/linux-headers-4.15.0-70/arch/h8300/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/h8300/kernel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/h8300/boot/compressed"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/h8300/boot/dts"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/arch/h8300/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/h8300/lib"}, {"size": 244, "name": "/usr/src/linux-headers-4.15.0-70/arch/h8300"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/metag/oprofile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/metag/tbx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/metag/mm"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/arch/metag/include/uapi/asm"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70/arch/metag/include/uapi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/metag/include/asm/mach"}, {"size": 488, "name": "/usr/src/linux-headers-4.15.0-70/arch/metag/include/asm"}, {"size": 532, "name": "/usr/src/linux-headers-4.15.0-70/arch/metag/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/metag/kernel/perf"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/metag/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/metag/boot/dts"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/metag/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/metag/lib"}, {"size": 624, "name": "/usr/src/linux-headers-4.15.0-70/arch/metag"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/tile/gxio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/tile/mm"}, {"size": 68, "name": "/usr/src/linux-headers-4.15.0-70/arch/tile/include/uapi/asm"}, {"size": 204, "name": "/usr/src/linux-headers-4.15.0-70/arch/tile/include/uapi/arch"}, {"size": 276, "name": "/usr/src/linux-headers-4.15.0-70/arch/tile/include/uapi"}, {"size": 148, "name": "/usr/src/linux-headers-4.15.0-70/arch/tile/include/gxio"}, {"size": 504, "name": "/usr/src/linux-headers-4.15.0-70/arch/tile/include/asm"}, {"size": 124, "name": "/usr/src/linux-headers-4.15.0-70/arch/tile/include/arch"}, {"size": 340, "name": "/usr/src/linux-headers-4.15.0-70/arch/tile/include/hv"}, {"size": 1396, "name": "/usr/src/linux-headers-4.15.0-70/arch/tile/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/tile/kernel/vdso"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/tile/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/tile/kvm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/tile/lib"}, {"size": 1480, "name": "/usr/src/linux-headers-4.15.0-70/arch/tile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/s390/oprofile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/s390/net"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/s390/tools"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/s390/mm"}, {"size": 252, "name": "/usr/src/linux-headers-4.15.0-70/arch/s390/include/uapi/asm"}, {"size": 256, "name": "/usr/src/linux-headers-4.15.0-70/arch/s390/include/uapi"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/s390/include/asm/trace"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/s390/include/asm/fpu"}, {"size": 860, "name": "/usr/src/linux-headers-4.15.0-70/arch/s390/include/asm"}, {"size": 1120, "name": "/usr/src/linux-headers-4.15.0-70/arch/s390/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/s390/hypfs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/s390/crypto"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/s390/kernel/vdso64"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/s390/kernel/vdso32"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/arch/s390/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/s390/appldata"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/s390/numa"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/s390/kvm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/s390/boot/compressed"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/arch/s390/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/s390/lib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/s390/pci"}, {"size": 1304, "name": "/usr/src/linux-headers-4.15.0-70/arch/s390"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/microblaze/oprofile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/microblaze/mm"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-70/arch/microblaze/include/uapi/asm"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-70/arch/microblaze/include/uapi"}, {"size": 292, "name": "/usr/src/linux-headers-4.15.0-70/arch/microblaze/include/asm"}, {"size": 356, "name": "/usr/src/linux-headers-4.15.0-70/arch/microblaze/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/microblaze/kernel/cpu"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/microblaze/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/microblaze/boot/dts"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/microblaze/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/microblaze/lib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/microblaze/pci"}, {"size": 444, "name": "/usr/src/linux-headers-4.15.0-70/arch/microblaze"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/unicore32/mm"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/arch/unicore32/include/uapi/asm"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/arch/unicore32/include/uapi"}, {"size": 116, "name": "/usr/src/linux-headers-4.15.0-70/arch/unicore32/include/mach"}, {"size": 200, "name": "/usr/src/linux-headers-4.15.0-70/arch/unicore32/include/asm"}, {"size": 348, "name": "/usr/src/linux-headers-4.15.0-70/arch/unicore32/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/unicore32/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/unicore32/boot/compressed"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/unicore32/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/unicore32/lib"}, {"size": 412, "name": "/usr/src/linux-headers-4.15.0-70/arch/unicore32"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/score/mm"}, {"size": 128, "name": "/usr/src/linux-headers-4.15.0-70/arch/score/include/uapi/asm"}, {"size": 132, "name": "/usr/src/linux-headers-4.15.0-70/arch/score/include/uapi"}, {"size": 256, "name": "/usr/src/linux-headers-4.15.0-70/arch/score/include/asm"}, {"size": 392, "name": "/usr/src/linux-headers-4.15.0-70/arch/score/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/score/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/score/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/score/lib"}, {"size": 440, "name": "/usr/src/linux-headers-4.15.0-70/arch/score"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/net"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/mm"}, {"size": 100, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/include/uapi/asm"}, {"size": 104, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/include/uapi"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/include/asm/xen"}, {"size": 896, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/include/asm"}, {"size": 1004, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/xen"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/crypto"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/kernel/vdso"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/kernel/probes"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/kvm/hyp"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/kvm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/altera"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/al"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/apm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/qcom"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/actions"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/exynos"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/allwinner"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/broadcom/stingray"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/broadcom/northstar2"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/broadcom"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/sprd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/zte"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/socionext"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/freescale"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/renesas"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/realtek"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/nvidia"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/amd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/marvell"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/mediatek"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/amlogic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/hisilicon"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/rockchip"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/cavium"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/arm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/lg"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/xilinx"}, {"size": 224, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts"}, {"size": 236, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64/lib"}, {"size": 1424, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm64"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mn10300/oprofile"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/arch/mn10300/proc-mn103e010/include/proc"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/arch/mn10300/proc-mn103e010/include"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-70/arch/mn10300/proc-mn103e010"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70/arch/mn10300/unit-asb2364/include/unit"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-70/arch/mn10300/unit-asb2364/include"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-70/arch/mn10300/unit-asb2364"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/arch/mn10300/unit-asb2305/include/unit"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/arch/mn10300/unit-asb2305/include"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/arch/mn10300/unit-asb2305"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/mn10300/mm"}, {"size": 140, "name": "/usr/src/linux-headers-4.15.0-70/arch/mn10300/include/uapi/asm"}, {"size": 144, "name": "/usr/src/linux-headers-4.15.0-70/arch/mn10300/include/uapi"}, {"size": 464, "name": "/usr/src/linux-headers-4.15.0-70/arch/mn10300/include/asm"}, {"size": 612, "name": "/usr/src/linux-headers-4.15.0-70/arch/mn10300/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mn10300/kernel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/mn10300/boot/compressed"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/arch/mn10300/boot"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-70/arch/mn10300/proc-mn2ws0050/include/proc"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/arch/mn10300/proc-mn2ws0050/include"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-70/arch/mn10300/proc-mn2ws0050"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mn10300/lib"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/arch/mn10300/unit-asb2303/include/unit"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/arch/mn10300/unit-asb2303/include"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70/arch/mn10300/unit-asb2303"}, {"size": 928, "name": "/usr/src/linux-headers-4.15.0-70/arch/mn10300"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/hexagon/mm"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-70/arch/hexagon/include/uapi/asm"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-70/arch/hexagon/include/uapi"}, {"size": 248, "name": "/usr/src/linux-headers-4.15.0-70/arch/hexagon/include/asm"}, {"size": 316, "name": "/usr/src/linux-headers-4.15.0-70/arch/hexagon/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/hexagon/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/hexagon/lib"}, {"size": 352, "name": "/usr/src/linux-headers-4.15.0-70/arch/hexagon"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sparc/oprofile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sparc/power"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/sparc/vdso"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sparc/prom"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sparc/math-emu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sparc/net"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sparc/mm"}, {"size": 264, "name": "/usr/src/linux-headers-4.15.0-70/arch/sparc/include/uapi/asm"}, {"size": 268, "name": "/usr/src/linux-headers-4.15.0-70/arch/sparc/include/uapi"}, {"size": 1416, "name": "/usr/src/linux-headers-4.15.0-70/arch/sparc/include/asm"}, {"size": 1688, "name": "/usr/src/linux-headers-4.15.0-70/arch/sparc/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sparc/crypto"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sparc/kernel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/sparc/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sparc/lib"}, {"size": 1816, "name": "/usr/src/linux-headers-4.15.0-70/arch/sparc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/oprofile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/mm"}, {"size": 128, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/include/uapi/asm"}, {"size": 132, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/include/uapi"}, {"size": 364, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/include/asm"}, {"size": 500, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/include"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/variants/dc233c/include/variant"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/variants/dc233c/include"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/variants/dc233c"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/variants/fsf/include/variant"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/variants/fsf/include"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/variants/fsf"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/variants/test_kc705_hifi/include/variant"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/variants/test_kc705_hifi/include"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/variants/test_kc705_hifi"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/variants/test_mmuhifi_c3/include/variant"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/variants/test_mmuhifi_c3/include"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/variants/test_mmuhifi_c3"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/variants/dc232b/include/variant"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/variants/dc232b/include"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/variants/dc232b"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/variants/csp/include/variant"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/variants/csp/include"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/variants/csp"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/variants/de212/include/variant"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/variants/de212/include"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/variants/de212"}, {"size": 372, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/variants"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/boot/boot-redboot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/boot/boot-elf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/boot/lib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/boot/dts"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/lib"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/platforms/xtfpga/include/platform"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/platforms/xtfpga/include"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/platforms/xtfpga"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/platforms/iss/include/platform"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/platforms/iss/include"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/platforms/iss"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/platforms/xt2000/include/platform"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/platforms/xt2000/include"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/platforms/xt2000"}, {"size": 84, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa/platforms"}, {"size": 1060, "name": "/usr/src/linux-headers-4.15.0-70/arch/xtensa"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/oprofile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/lib64"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/cchips/hd6446x"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/cchips"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-microdev"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-highlander"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-kfr2r09"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-sdk7786"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-se/770x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-se/7343"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-se/7206"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-se/7724"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-se/7722"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-se/7721"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-se/7751"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-se/7780"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-se"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-rsk"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-dreamcast"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-landisk"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-sdk7780"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-migor"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-cayman"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-ap325rxa"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-sh7763rdp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-ecovec24"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-hp6xx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-x3proto"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-r2d"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-lboxre2"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-sh03"}, {"size": 256, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/boards"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/drivers/superhyway"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/drivers/dma"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/drivers/pci"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/drivers"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/math-emu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/tools"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/mm"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/include/cpu-sh5/cpu"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/include/cpu-sh5"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/include/mach-kfr2r09/mach"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/include/mach-kfr2r09"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/include/mach-sdk7786/mach"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/include/mach-sdk7786"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/include/mach-se/mach"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/include/mach-se"}, {"size": 116, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/include/uapi/asm"}, {"size": 120, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/include/uapi"}, {"size": 124, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/include/cpu-sh4/cpu"}, {"size": 128, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/include/cpu-sh4"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/include/cpu-sh3/cpu"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/include/cpu-sh3"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/include/mach-dreamcast/mach"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/include/mach-dreamcast"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/include/mach-landisk/mach"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/include/mach-landisk"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/include/cpu-sh2/cpu"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/include/cpu-sh2"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/include/mach-migor/mach"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/include/mach-migor"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/include/cpu-sh2a/cpu"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/include/cpu-sh2a"}, {"size": 748, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/include/asm"}, {"size": 76, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/include/mach-common/mach"}, {"size": 80, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/include/mach-common"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/include/mach-ecovec24/mach"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/include/mach-ecovec24"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/include/cpu-sh4a/cpu"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/include/cpu-sh4a"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/include/cpu-common/cpu"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/include/cpu-common"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/include/mach-x3proto/mach"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/include/mach-x3proto"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/include/mach-sh03/mach"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/include/mach-sh03"}, {"size": 1476, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/kernel/vsyscall"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/kernel/cpu/irq"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/kernel/cpu/sh4a"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/kernel/cpu/sh3"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/kernel/cpu/sh4"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/kernel/cpu/shmobile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/kernel/cpu/sh5"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/kernel/cpu/sh2a"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/kernel/cpu/sh2"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/kernel/cpu"}, {"size": 88, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/kernel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/boot/compressed"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/boot/romimage"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/boot/dts"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh/lib"}, {"size": 2016, "name": "/usr/src/linux-headers-4.15.0-70/arch/sh"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/oprofile"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf609/boards"}, {"size": 616, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf609/include/mach"}, {"size": 620, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf609/include"}, {"size": 668, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf609"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf538/boards"}, {"size": 340, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf538/include/mach"}, {"size": 344, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf538/include"}, {"size": 368, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf538"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf548/boards"}, {"size": 868, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf548/include/mach"}, {"size": 872, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf548/include"}, {"size": 900, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf548"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf533/boards"}, {"size": 160, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf533/include/mach"}, {"size": 164, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf533/include"}, {"size": 188, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf533"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf561/boards"}, {"size": 276, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf561/include/mach"}, {"size": 280, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf561/include"}, {"size": 304, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf561"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/mm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf518/boards"}, {"size": 280, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf518/include/mach"}, {"size": 284, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf518/include"}, {"size": 312, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf518"}, {"size": 84, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/include/uapi/asm"}, {"size": 88, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/include/uapi"}, {"size": 608, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/include/asm"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/include/mach-common"}, {"size": 752, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-common"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/kernel/cplb-nompu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/kernel/cplb-mpu"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/kernel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf527/boards"}, {"size": 344, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf527/include/mach"}, {"size": 348, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf527/include"}, {"size": 376, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf527"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/boot"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf537/boards"}, {"size": 348, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf537/include/mach"}, {"size": 352, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf537/include"}, {"size": 376, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf537"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin/lib"}, {"size": 4372, "name": "/usr/src/linux-headers-4.15.0-70/arch/blackfin"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/oprofile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/power"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/vdso"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/loongson32/common"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/loongson32/ls1b"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/loongson32/ls1c"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/loongson32"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/generic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/fw/sni"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/fw/cfe"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/fw/lib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/fw/arc"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/fw"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/ath79"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/txx9/rbtx4938"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/txx9/generic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/txx9/rbtx4939"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/txx9/rbtx4927"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/txx9/jmr3927"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/txx9"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/bcm63xx/boards"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/bcm63xx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/emma/common"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/emma/markeins"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/emma"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/jazz"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/cavium-octeon/crypto"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/cavium-octeon/executive"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/cavium-octeon"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/pnx833x/stb22x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/pnx833x/common"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/pnx833x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/sgi-ip22"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/lantiq/falcon"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/lantiq/xway"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/lantiq"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/mti-malta"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/rb532"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/sni"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/math-emu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/net"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/tools"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/mm"}, {"size": 264, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/uapi/asm"}, {"size": 268, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/uapi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/fw/cfe"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/fw/arc"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/fw"}, {"size": 116, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/sn/sn0"}, {"size": 256, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/sn"}, {"size": 124, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/txx9"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/emma"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-db1x00"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-vr41xx"}, {"size": 156, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-au1x00"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-jz4740"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-ar7"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-ralink/rt3883"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-ralink/mt7620"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-ralink/rt305x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-ralink/rt288x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-ralink/mt7621"}, {"size": 92, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-ralink"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-xilfpga"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-lasat"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-generic"}, {"size": 192, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-bcm63xx"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-bcm47xx"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-cobalt"}, {"size": 104, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-pmcs-msp71xx"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-netlogic"}, {"size": 2300, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/octeon"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-bmips"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-jazz"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-dec"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-ip32"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-ip22"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-malta"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-emma2rh"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/xtalk"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-ath25"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-ip27"}, {"size": 80, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/dec"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-sibyte"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/ip32"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-loongson32"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-tx39xx"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-paravirt"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mips-boards"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-ath79"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-tx49xx"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/vr41xx"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-pnx833x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-pistachio"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-pic32"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-rm"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/sgi"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/lasat"}, {"size": 68, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/netlogic/xlp-hal"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/netlogic/xlr"}, {"size": 160, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/netlogic"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-lantiq/falcon"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-lantiq/xway"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-lantiq"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-cavium-octeon"}, {"size": 408, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/sibyte"}, {"size": 80, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-rc32434"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-ip28"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/pci"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-loongson64/cs5536"}, {"size": 104, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-loongson64"}, {"size": 6492, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include/asm"}, {"size": 6764, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/alchemy/common"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/alchemy/devboards"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/alchemy"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/paravirt"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/bcm47xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/cobalt"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/loongson64/common/cs5536"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/loongson64/common"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/loongson64/loongson-3"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/loongson64/lemote-2f"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/loongson64/fuloong-2e"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/loongson64"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/dec/prom"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/dec"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/ath25"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/kvm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/sgi-ip32"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/boot/compressed"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/boot/tools"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/boot/dts/cavium-octeon"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/boot/dts/lantiq"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/boot/dts/qca"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/boot/dts/ni"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/boot/dts/xilfpga"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/boot/dts/ingenic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/boot/dts/img"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/boot/dts/brcm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/boot/dts/pic32"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/boot/dts/ralink"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/boot/dts/netlogic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/boot/dts/mti"}, {"size": 104, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/boot/dts"}, {"size": 136, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/pic32/common"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/pic32/pic32mzda"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/pic32"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/bmips"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/vr41xx/common"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/vr41xx/casio-e55"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/vr41xx/ibm-workpad"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/vr41xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/sgi-ip27"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/pmcs-msp71xx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/lib"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/pistachio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/lasat/image"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/lasat"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/ralink"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/netlogic/xlr"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/netlogic/common"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/netlogic/xlp"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/netlogic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/sibyte/swarm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/sibyte/common"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/sibyte/bcm1480"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/sibyte/sb1250"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/sibyte"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/pci"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/jz4740"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips/ar7"}, {"size": 7832, "name": "/usr/src/linux-headers-4.15.0-70/arch/mips"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/parisc/oprofile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/parisc/math-emu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/parisc/mm"}, {"size": 160, "name": "/usr/src/linux-headers-4.15.0-70/arch/parisc/include/uapi/asm"}, {"size": 164, "name": "/usr/src/linux-headers-4.15.0-70/arch/parisc/include/uapi"}, {"size": 528, "name": "/usr/src/linux-headers-4.15.0-70/arch/parisc/include/asm"}, {"size": 696, "name": "/usr/src/linux-headers-4.15.0-70/arch/parisc/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/parisc/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/parisc/boot/compressed"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/arch/parisc/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/parisc/lib"}, {"size": 788, "name": "/usr/src/linux-headers-4.15.0-70/arch/parisc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/hyperv"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/ia32"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/oprofile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/power"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/purgatory"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/ras"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/platform/ts5500"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/platform/intel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/platform/ce4100"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/platform/scx200"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/platform/goldfish"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/platform/intel-mid/device_libs"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/platform/intel-mid"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/platform/efi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/platform/geode"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/platform/iris"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/platform/olpc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/platform/uv"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/platform/atom"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/platform/intel-quark"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/platform/sfi"}, {"size": 128, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/platform"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/events/intel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/events/amd"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/events"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/video"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/math-emu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/net"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/tools"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/mm"}, {"size": 288, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/include/uapi/asm"}, {"size": 292, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/include/uapi"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/include/asm/trace"}, {"size": 96, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/include/asm/xen"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/include/asm/crypto"}, {"size": 272, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/include/asm/uv"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/include/asm/fpu"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/include/asm/numachip"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/include/asm/e820"}, {"size": 2444, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/include/asm"}, {"size": 2740, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/include"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/xen"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/crypto/sha1-mb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/crypto/sha256-mb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/crypto/sha512-mb"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/crypto"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/kernel/kprobes"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/kernel/apic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/kernel/acpi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/kernel/cpu/mcheck"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/kernel/cpu/mtrr"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/kernel/cpu/microcode"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/kernel/cpu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/kernel/fpu"}, {"size": 80, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/realmode/rm"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/realmode"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/kvm"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/entry/vdso"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/entry/vsyscall"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/entry/syscalls"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/entry"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/boot/compressed"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/boot"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/um/vdso"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/um/os-Linux"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/um"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/lib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86/pci"}, {"size": 3428, "name": "/usr/src/linux-headers-4.15.0-70/arch/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/riscv/mm"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/arch/riscv/include/uapi/asm"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-70/arch/riscv/include/uapi"}, {"size": 244, "name": "/usr/src/linux-headers-4.15.0-70/arch/riscv/include/asm"}, {"size": 300, "name": "/usr/src/linux-headers-4.15.0-70/arch/riscv/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/riscv/kernel/vdso"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/riscv/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/riscv/lib"}, {"size": 348, "name": "/usr/src/linux-headers-4.15.0-70/arch/riscv"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/openrisc/mm"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/arch/openrisc/include/uapi/asm"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/arch/openrisc/include/uapi"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/arch/openrisc/include/asm/bitops"}, {"size": 228, "name": "/usr/src/linux-headers-4.15.0-70/arch/openrisc/include/asm"}, {"size": 268, "name": "/usr/src/linux-headers-4.15.0-70/arch/openrisc/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/openrisc/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/openrisc/boot/dts"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/openrisc/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/openrisc/lib"}, {"size": 320, "name": "/usr/src/linux-headers-4.15.0-70/arch/openrisc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/frv/mm"}, {"size": 152, "name": "/usr/src/linux-headers-4.15.0-70/arch/frv/include/uapi/asm"}, {"size": 156, "name": "/usr/src/linux-headers-4.15.0-70/arch/frv/include/uapi"}, {"size": 456, "name": "/usr/src/linux-headers-4.15.0-70/arch/frv/include/asm"}, {"size": 616, "name": "/usr/src/linux-headers-4.15.0-70/arch/frv/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/frv/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/frv/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/frv/lib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/frv/mb93090-mb00"}, {"size": 680, "name": "/usr/src/linux-headers-4.15.0-70/arch/frv"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/alpha/oprofile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/alpha/math-emu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/alpha/mm"}, {"size": 200, "name": "/usr/src/linux-headers-4.15.0-70/arch/alpha/include/uapi/asm"}, {"size": 204, "name": "/usr/src/linux-headers-4.15.0-70/arch/alpha/include/uapi"}, {"size": 652, "name": "/usr/src/linux-headers-4.15.0-70/arch/alpha/include/asm"}, {"size": 860, "name": "/usr/src/linux-headers-4.15.0-70/arch/alpha/include"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/alpha/kernel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/alpha/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/alpha/lib"}, {"size": 952, "name": "/usr/src/linux-headers-4.15.0-70/arch/alpha"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/um/os-Linux/drivers"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/um/os-Linux/skas"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/arch/um/os-Linux"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/um/drivers"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/um/include/shared/skas"}, {"size": 120, "name": "/usr/src/linux-headers-4.15.0-70/arch/um/include/shared"}, {"size": 148, "name": "/usr/src/linux-headers-4.15.0-70/arch/um/include/asm"}, {"size": 272, "name": "/usr/src/linux-headers-4.15.0-70/arch/um/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/um/kernel/skas"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/um/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/um/scripts"}, {"size": 388, "name": "/usr/src/linux-headers-4.15.0-70/arch/um"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/m68k/coldfire"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/m68k/emu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/m68k/bvme6000"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/m68k/sun3/prom"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/m68k/sun3"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/m68k/atari"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/m68k/ifpsp060"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/m68k/math-emu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/m68k/tools/amiga"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/m68k/tools"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/m68k/mm"}, {"size": 116, "name": "/usr/src/linux-headers-4.15.0-70/arch/m68k/include/uapi/asm"}, {"size": 120, "name": "/usr/src/linux-headers-4.15.0-70/arch/m68k/include/uapi"}, {"size": 1180, "name": "/usr/src/linux-headers-4.15.0-70/arch/m68k/include/asm"}, {"size": 1304, "name": "/usr/src/linux-headers-4.15.0-70/arch/m68k/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/m68k/amiga"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/arch/m68k/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/m68k/q40"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/m68k/mvme16x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/m68k/fpsp040"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/m68k/sun3x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/m68k/68000"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/m68k/lib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/m68k/mvme147"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/m68k/apollo"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/m68k/hp300"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/m68k/mac"}, {"size": 1568, "name": "/usr/src/linux-headers-4.15.0-70/arch/m68k"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/nios2/platform"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/nios2/mm"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/arch/nios2/include/uapi/asm"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70/arch/nios2/include/uapi"}, {"size": 164, "name": "/usr/src/linux-headers-4.15.0-70/arch/nios2/include/asm"}, {"size": 208, "name": "/usr/src/linux-headers-4.15.0-70/arch/nios2/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/nios2/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/nios2/boot/compressed"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/arch/nios2/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/nios2/lib"}, {"size": 288, "name": "/usr/src/linux-headers-4.15.0-70/arch/nios2"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arc/oprofile"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arc/plat-hsdk"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/arch/arc/plat-eznps/include/plat"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/arch/arc/plat-eznps/include"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/arch/arc/plat-eznps"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arc/mm"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/arch/arc/include/uapi/asm"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-70/arch/arc/include/uapi"}, {"size": 388, "name": "/usr/src/linux-headers-4.15.0-70/arch/arc/include/asm"}, {"size": 444, "name": "/usr/src/linux-headers-4.15.0-70/arch/arc/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arc/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arc/boot/dts"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/arc/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arc/plat-sim"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arc/plat-tb10x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arc/lib"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arc/plat-axs10x"}, {"size": 604, "name": "/usr/src/linux-headers-4.15.0-70/arch/arc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/c6x/mm"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/arch/c6x/include/uapi/asm"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70/arch/c6x/include/uapi"}, {"size": 172, "name": "/usr/src/linux-headers-4.15.0-70/arch/c6x/include/asm"}, {"size": 216, "name": "/usr/src/linux-headers-4.15.0-70/arch/c6x/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/c6x/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/c6x/boot/dts"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/c6x/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/c6x/lib"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/c6x/platforms"}, {"size": 280, "name": "/usr/src/linux-headers-4.15.0-70/arch/c6x"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-oxnas"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/oprofile"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-tegra"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-qcom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-hisi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/vdso"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-nomadik"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-uniphier"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-at91"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/plat-iop"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-footbridge/include/mach"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-footbridge/include"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-footbridge"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-nspire"}, {"size": 104, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-s3c24xx/include/mach"}, {"size": 108, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-s3c24xx/include"}, {"size": 136, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-s3c24xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-rockchip"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/plat-pxa/include/plat"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/plat-pxa/include"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/plat-pxa"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-lpc32xx/include/mach"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-lpc32xx/include"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-lpc32xx"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-rpc/include/mach"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-rpc/include"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-rpc"}, {"size": 76, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-iop13xx/include/mach"}, {"size": 80, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-iop13xx/include"}, {"size": 96, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-iop13xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-artpec"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-prima2"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/common"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-mediatek"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-mv78xx0"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-spear/include/mach"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-spear/include"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-spear"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-berlin"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-digicolor"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-mvebu"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-ebsa110/include/mach"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-ebsa110/include"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-ebsa110"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-ep93xx/include/mach"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-ep93xx/include"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-ep93xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-sti"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-lpc18xx"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-iop32x/include/mach"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-iop32x/include"}, {"size": 68, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-iop32x"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-dove/include/mach"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-dove/include"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-dove"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-ux500"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-integrator"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/plat-orion/include/plat"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/plat-orion/include"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/plat-orion"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-tango"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-w90x900/include/mach"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-w90x900/include"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-w90x900"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/probes/uprobes"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/probes/kprobes"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/probes"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-exynos/include/mach"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-exynos/include"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-exynos"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/net"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-imx/devices"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-imx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-zynq"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/tools"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-sunxi"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-efm32"}, {"size": 96, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/include/uapi/asm"}, {"size": 100, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/include/uapi"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/include/asm/mach"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/include/asm/xen"}, {"size": 160, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/include/asm/hardware"}, {"size": 1180, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/include/asm"}, {"size": 152, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/include/debug"}, {"size": 1436, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/include"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-s5pv210"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-meson"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-iop33x/include/mach"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-iop33x/include"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-iop33x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/xen"}, {"size": 88, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-davinci/include/mach"}, {"size": 92, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-davinci/include"}, {"size": 112, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-davinci"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/crypto"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/vfp"}, {"size": 224, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-pxa/include/mach"}, {"size": 228, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-pxa/include"}, {"size": 256, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-pxa"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-zx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-u300"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-actions"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-moxart"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/plat-omap/include/plat"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/plat-omap/include"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/plat-omap"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-cns3xxx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-alpine"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/nwfpe"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-highbank"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-vt8500"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/kvm/hyp"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/kvm"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-versatile"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-picoxcell"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/boot/compressed"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/boot/bootp"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/boot/dts"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/boot"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/firmware"}, {"size": 116, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-omap1/include/mach"}, {"size": 120, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-omap1/include"}, {"size": 140, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-omap1"}, {"size": 180, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-sa1100/include/mach"}, {"size": 184, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-sa1100/include"}, {"size": 204, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-sa1100"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-bcm"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-orion5x"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-shmobile"}, {"size": 84, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-ixp4xx/include/mach"}, {"size": 88, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-ixp4xx/include"}, {"size": 108, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-ixp4xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-mmp"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-omap2/include/mach"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-omap2/include"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-omap2"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/lib"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-stm32"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/plat-versatile/include/plat"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/plat-versatile/include"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/plat-versatile"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-vexpress"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-clps711x"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-gemini"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-mxs"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-netx/include/mach"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-netx/include"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-netx"}, {"size": 144, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/plat-samsung/include/plat"}, {"size": 148, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/plat-samsung/include"}, {"size": 164, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/plat-samsung"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-keystone"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-s3c64xx/include/mach"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-s3c64xx/include"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-s3c64xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-realview"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-asm9260"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-axxia"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-ks8695/include/mach"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-ks8695/include"}, {"size": 68, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-ks8695"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-aspeed"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm/mach-socfpga"}, {"size": 4784, "name": "/usr/src/linux-headers-4.15.0-70/arch/arm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/oprofile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/perf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/sysdev/ge"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/sysdev/xics"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/sysdev/xive"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/sysdev"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/purgatory"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/math-emu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/net"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/tools"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/mm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/xmon"}, {"size": 232, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/include/uapi/asm"}, {"size": 236, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/include/uapi"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/include/asm/book3s/32"}, {"size": 152, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/include/asm/book3s/64"}, {"size": 196, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/include/asm/book3s"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/include/asm/nohash/32"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/include/asm/nohash/64"}, {"size": 96, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/include/asm/nohash"}, {"size": 2448, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/include/asm"}, {"size": 2688, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/crypto"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/kernel/trace"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/kernel/vdso64"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/kernel/vdso32"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/kernel"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/kvm"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/lib"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms/82xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms/83xx"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms/pseries"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms/52xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms/pasemi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms/40x"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms/maple"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms/embedded6xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms/86xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms/amigaone"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms/4xx"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms/44x"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms/8xx"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms/ps3"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms/chrp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms/powernv"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms/85xx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms/powermac"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms/512x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms/cell/spufs"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms/cell"}, {"size": 304, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms"}, {"size": 3288, "name": "/usr/src/linux-headers-4.15.0-70/arch/powerpc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/ia64/hp/zx1"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/ia64/hp/common"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/ia64/hp/sim/boot"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/arch/ia64/hp/sim"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-70/arch/ia64/hp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/ia64/oprofile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/ia64/dig"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-70/arch/ia64/sn/include/xtalk"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-70/arch/ia64/sn/include"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/ia64/sn/kernel/sn2"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/ia64/sn/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/ia64/sn/pci/pcibr"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/ia64/sn/pci"}, {"size": 76, "name": "/usr/src/linux-headers-4.15.0-70/arch/ia64/sn"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/ia64/mm"}, {"size": 236, "name": "/usr/src/linux-headers-4.15.0-70/arch/ia64/include/uapi/asm"}, {"size": 240, "name": "/usr/src/linux-headers-4.15.0-70/arch/ia64/include/uapi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/ia64/include/asm/sn/sn2"}, {"size": 440, "name": "/usr/src/linux-headers-4.15.0-70/arch/ia64/include/asm/sn"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/ia64/include/asm/native"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-70/arch/ia64/include/asm/uv"}, {"size": 1240, "name": "/usr/src/linux-headers-4.15.0-70/arch/ia64/include/asm"}, {"size": 1484, "name": "/usr/src/linux-headers-4.15.0-70/arch/ia64/include"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/arch/ia64/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/ia64/scripts"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/ia64/uv/kernel"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/arch/ia64/uv"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/ia64/lib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/arch/ia64/pci"}, {"size": 1716, "name": "/usr/src/linux-headers-4.15.0-70/arch/ia64"}, {"size": 48356, "name": "/usr/src/linux-headers-4.15.0-70/arch"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/lib/lzo"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/lib/lz4"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/lib/reed_solomon"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-70/lib/xz"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/lib/zlib_deflate"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/lib/zstd"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/lib/fonts"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/lib/raid6/test"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-70/lib/raid6"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/lib/842"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/lib/mpi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-70/lib/zlib_inflate"}, {"size": 228, "name": "/usr/src/linux-headers-4.15.0-70/lib"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-70/usr"}, {"size": 115552, "name": "/usr/src/linux-headers-4.15.0-70"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-72-generic/tools/objtool/arch/x86/lib"}, {"size": 268, "name": "/usr/src/linux-headers-4.15.0-72-generic/tools/objtool/arch/x86"}, {"size": 272, "name": "/usr/src/linux-headers-4.15.0-72-generic/tools/objtool/arch"}, {"size": 4644, "name": "/usr/src/linux-headers-4.15.0-72-generic/tools/objtool"}, {"size": 4648, "name": "/usr/src/linux-headers-4.15.0-72-generic/tools"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hyperv"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/asus/nb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/asus"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ad5592r"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dcache/word"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dcache"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/spi/oc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/spi/pxa2xx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/spi/slave/system"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/spi/slave"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/spi/zynqmp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/spi/axi/spi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/spi/axi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/spi/lm70"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/spi/dw/mid"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/spi/dw"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/spi/loopback"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/spi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/videobuf/dma"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/videobuf"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/vlan/8021q"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/vlan"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dp83640"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/wimax/debug"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/wimax/i2400m/debug"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/wimax/i2400m"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/wimax"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ezx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/moxa"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dln2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/soc/camera"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/soc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bmp280"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rt2800usb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/msi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/inotify"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ia32"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nfc/nxp/nci"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nfc/nxp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nfc/pn533"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nfc/fdp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nfc/nci"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nfc/st/nci"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nfc/st"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nfc/s3fwrn5"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nfc/pn544"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nfc/microread"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nfc/st21nfca"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nfc/mei"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nfc/mrvl"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nfc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/udf"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/oprofile/nmi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/oprofile"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/xor"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nls/codepage"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nls/koi8"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nls/iso8859"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nls/mac"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nls"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/evm/extra/smack"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/evm/extra"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/evm/attr"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/evm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/tipc/media"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/tipc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/power/reset"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/power"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/8139too"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sgetmask"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/squashfs/file"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/squashfs/fragment/cache"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/squashfs/fragment"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/squashfs/decomp"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/squashfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rpcsec/gss"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rpcsec"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ir/nec"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ir/xmp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ir/sharp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ir/ite"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ir/serial"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ir/rc5"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ir/jvc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ir/mce/kbd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ir/mce"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ir/sony"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ir/lirc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ir/sanyo"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ir/rc6"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ir/winbond"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ir"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/it8712f"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dmar"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bnx2x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ntb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fs/dax"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fs/posix"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ksdazzle"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/kprobe"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/zx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/perf/events/intel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/perf/events"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/perf"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/no/hz"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/no"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ms5611"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/devtmpfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rt2800pci"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/swiotlb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/battery/twl4030"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/battery/bq27xxx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/battery/gauge"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/battery"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/b44/pcicore"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/b44/pci"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/b44"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scif"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rtc/intf"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rtc/systohc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rtc/mc146818"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rtc/i2c/and"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rtc/i2c"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rtc/hctosys"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rtc/drv/rv3029"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rtc/drv/m41t80"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rtc/drv/ds1307"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rtc/drv/hid/sensor"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rtc/drv/hid"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rtc/drv/ds3232"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rtc/drv/ds1374"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rtc/drv/ds1685"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rtc/drv"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rtc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/keyboard/gpio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/keyboard/tm2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/keyboard/dlink"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/keyboard/cros"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/keyboard"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crc/itu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hdlc/raw"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hdlc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nft/masq"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nft/dup"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nft/set"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nft/reject"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nft/fib"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nft/redir"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nft/fwd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nft/chain/route"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nft/chain/nat"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nft/chain"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nft/bridge"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nft"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/adfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/vop"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/da9062"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/vmivme"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/max63xx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/at76c50x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ucsi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/lustre"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ibm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/altera/pr/ip"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/altera/pr"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/altera"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/firewire"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/unixware"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/tps68470/pmic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/tps68470"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/int340x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/gpio/ml"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/gpio/gpio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/gpio/generic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/gpio/janz"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/gpio/crystal"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/gpio/104/dio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/gpio/104/idi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/gpio/104/idio"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/gpio/104"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/gpio/whiskey"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/gpio/pci/idio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/gpio/pci"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/gpio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cardman"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rfd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mcs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/brcmfmac/proto"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/brcmfmac"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/kxsd9"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/generic/msi/irq"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/generic/msi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/generic/calibrate"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/generic/irq/effective/aff"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/generic/irq/effective"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/generic/irq/matrix"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/generic/irq/reservation"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/generic/irq"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/generic/strnlen"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/generic/adc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/generic/pending"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/generic/net"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/generic/time"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/generic/early"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/generic/clockevents/min"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/generic/clockevents"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/generic/isa"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/generic/strncpy/from"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/generic/strncpy"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/generic/cmos"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/generic/smp/idle"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/generic/smp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/generic/cpu"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/generic/find/first"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/generic/find"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/generic/pci"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/generic/bug/relative"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/generic/bug"}, {"size": 116, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/generic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/htc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/stack"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/raid"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dp83848"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rdma"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/memstick/tifm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/memstick/jmicron"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/memstick/realtek"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/memstick"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rt2800/lib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rt2800"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ali"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/interval"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fw/cfg"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fw/loader/user"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fw/loader"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fw"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/defconfig"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/io/delay/type"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/io/delay"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/io"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/grace"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/has/ioport"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/has"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/signed/pe/file"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/signed/pe"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/signed"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ksz884x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/lnet/xprt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/lnet/max"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/lnet"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hysdn"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cfq/group"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cfq"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/w83627hf"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/aurora"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/key/dh"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/key"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pcspkr"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mmu"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/smartjoyplus"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/processor"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/misdn"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/inline/write/unlock"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/inline/write"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/inline/read/unlock"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/inline/read"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/inline/spin/unlock"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/inline/spin"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/inline"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/alienware"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/legacy/pty"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/legacy/vsyscall"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/legacy"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mpl115"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/file"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rtl"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sysfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/device"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/da9063"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/modify/ldt"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/modify"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/wm831x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/intel/soc/pmic/chtdc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/intel/soc/pmic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/intel/soc/dts/iosf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/intel/soc/dts"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/intel/soc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/intel/turbo/max"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/intel/turbo"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/intel/iommu/floppy"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/intel/iommu"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/intel/bxtwc/pmic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/intel/bxtwc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/intel/pch"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/intel/pmc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/intel/bxt/pmic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/intel/bxt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/intel/wmi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/intel/hid"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/intel/punit"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/intel/th"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/intel/mic/x100"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/intel/mic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/intel/cht"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/intel/int0002"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/intel/mei"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/intel/xway"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/intel/ish"}, {"size": 108, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/intel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sw"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fwtty/max/total"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fwtty/max/card"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fwtty/max"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fwtty"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/wil6210/isr"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/wil6210"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/max8925"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/lzo"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/lp8788"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/v4l2/mem2mem"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/v4l2/flash/led"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/v4l2/flash"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/v4l2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/efs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/actisys"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/afs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hsu"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/netlink"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dynamic/ftrace/with"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dynamic/ftrace"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dynamic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/gigaset"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ftrace/mcount"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ftrace"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/icplus"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nortel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/thunderbolt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/network/phy"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/network"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/maxim"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/build"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/gfs2/fs/locking"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/gfs2/fs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/gfs2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hugetlb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/logitech"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/irq/forced"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/irq/domain"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/irq/bypass"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/irq"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/slab/merge"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/slab/freelist"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/slab"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sysvipc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/encrypted"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hibernate"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ebc/c384"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ebc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/lz4"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sonypi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/initramfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dragonrise"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mlx5/core/en"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mlx5/core"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mlx5/en"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mlx5"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/memory/notifier/error"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/memory/notifier"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/memory/hotplug/default"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/memory/hotplug"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/memory"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sp5100"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nsc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/capi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sys"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fsi/master"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fsi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/virt/to"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/virt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sbp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ixgbe"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cec/platform"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cec"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pinctrl"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sxgbe"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rtlphydm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/qnx6fs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nic7018"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/eeepc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/regulator/userspace"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/regulator/qcom"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/regulator/arizona"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/regulator/virtual"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/regulator/fixed"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/regulator/mc13xxx"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/regulator"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rsi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/twl6030"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/notifier/error"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/notifier"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ring/buffer/allow"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ring/buffer"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ring"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/microsemi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/orangefs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/context/switch"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/context"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rmi4/f03"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rmi4/2d"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rmi4"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bootparam/hardlockup/panic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bootparam/hardlockup"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bootparam/hung/task/panic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bootparam/hung/task"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bootparam/hung"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bootparam/softlockup/panic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bootparam/softlockup"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bootparam"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/qfmt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ipw2200"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/vhost"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/b43/pcicore"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/b43/phy"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/b43/bcma"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/b43/buses/bcma/and"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/b43/buses/bcma"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/b43/buses"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/b43/pci"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/b43"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/default/io/delay"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/default/io"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/default/tcp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/default/mmap/min"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/default/mmap"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/default/hung/task"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/default/hung"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/default/security"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/default"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ras"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/printk/safe/log/buf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/printk/safe/log"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/printk/safe"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/printk"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fmc/write"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fmc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/logirumblepad2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/preempt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/surface/pro3"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/surface/3"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/surface"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/probe"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/detect/hung"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/detect"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/national"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/aim"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/xfrm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/new"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ipmi/device"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ipmi/dmi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ipmi/proc"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ipmi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hwpoison"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/migrate/vma"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/migrate"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/af/rxrpc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/af"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/axp20x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ntfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cifs/weak/pw"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cifs/weak"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cifs/dfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cifs/allow/insecure"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cifs/allow"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cifs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/vt/console"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/vt/hw/console"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/vt/hw"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/vt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/tcp/cong"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/tcp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rc/ati"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sched/stack/end"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sched/stack"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sched/mc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sched/omit/frame"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sched/omit"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sched"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/uts"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/carl9170"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/netxen"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/zpa2326"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ipc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/spi/nor/use/4k"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/spi/nor/use"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/spi/nor"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/spi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/redboot/directory"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/redboot"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/gpio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/intel/vr"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/intel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/complex"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/sm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/nand/diskonchip/probe"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/nand/diskonchip"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/nand/ecc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/nand/denali"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/nand"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/latch"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/sbc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/spinand"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/map/bank/width"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/map/bank"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/map"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/cmdline"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/onenand/verify"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/onenand/2x"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/onenand"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/mt81xx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/block"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/gen"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/scb2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/qinfo"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/cfi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/ar7"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/ubi/beb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/ubi/wl"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/ubi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/dataflash"}, {"size": 152, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/decnet/nf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/decnet"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/common/clk/cs2000"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/common/clk"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/common"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hz"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hardlockup/check"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hardlockup/detector"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hardlockup"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/strict/module"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/strict/kernel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/strict"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/reset/attack"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/reset/ti"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/reset"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/irtty"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/gro"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ima/default/hash"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ima/default"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ima/appraise"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ima/measure/pcr"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ima/measure"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ima/ng"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ima/trusted"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ima/lsm"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ima"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/can/cc770"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/can/esd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/can/sja1000"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/can/ems"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/can/janz"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/can/mcba"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/can/m"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/can/8dev"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/can/kvaser"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/can/calc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/can/peak"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/can/softing"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/can/ifi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/can/plx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/can/c/can"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/can/c"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/can/gs"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/can"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dwc/xlgmac"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dwc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rtl8192c"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/reed/solomon"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/reed"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/affs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/batman/adv"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/batman"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/alim7101"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/cs4271"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/xtfpga"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/zx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/generic/dmaengine"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/generic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/bdw/rt5677"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/bdw"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/kbl/rt5663/rt5514/max98927"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/kbl/rt5663/rt5514"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/kbl/rt5663/max98927"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/kbl/rt5663"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/kbl"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/broadwell"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/sst"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/bxt/rt298"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/bxt/da7219/max98357a"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/bxt/da7219"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/bxt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/haswell"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/bytcr/rt5660"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/bytcr/rt5651"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/bytcr/rt5640"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/bytcr"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/skl/rt286"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/skl/nau88l25/ssm4567"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/skl/nau88l25/max98357a"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/skl/nau88l25"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/skl"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/cht/bsw/rt5672"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/cht/bsw/max98090/ti"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/cht/bsw/max98090"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/cht/bsw/rt5645"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/cht/bsw"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/cht"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/byt/cht/es8316"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/byt/cht/da7213"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/byt/cht"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/byt"}, {"size": 136, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/inno"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/pcm512x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/sti"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/rt5514"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/i2c/and"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/i2c"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/ac97"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/msm8916/wcd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/msm8916"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/cs42l51"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/adau1761"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/cs42xx8"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/ssm2602"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/imx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/pcm179x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/hdmi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/es8328"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/img/parallel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/img/i2s"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/img/spdif"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/img/pistachio/internal"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/img/pistachio"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/img"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/pcm3168a"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/fsl"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/sirf/audio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/sirf"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/acpi/intel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/acpi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/amd/cz/rt5645"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/amd/cz"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/amd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/hdac"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/tlv320aic23"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/adau"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/bt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/wm8804"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/sigmadsp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/rt5677"}, {"size": 316, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/pcm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/verbose"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/firewire"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/dynamic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/fm801/tea575x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/fm801"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/atiixp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/sb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/serial"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/via82xx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/ac97/power/save"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/ac97/power"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/ac97"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/designware"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/compress"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/emu10k1"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/es1968"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/sst/ipc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/sst/atom/hifi2"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/sst/atom"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/sst"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/mixer"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/seq/midi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/seq/hrtimer"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/seq"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/support/old"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/support"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/dma"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/vx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/synth"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/i2s/hi6210"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/i2s"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/max"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/mpu401"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/usb/caiaq"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/usb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/oxygen"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/cs46xx/new"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/cs46xx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/hda/power/save"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/hda/power"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/hda/codec/ca0132"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/hda/codec"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/hda/ext"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/hda/dsp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/hda/patch"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/hda/input/beep"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/hda/input"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/hda/prealloc"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/hda"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/simple/card"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/simple"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/opl3/lib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/opl3"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/jack/input"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/jack"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/atmel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/proc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/dmaengine"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd/maestro3"}, {"size": 560, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/snd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/unix"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dmi/scan/machine/non/efi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dmi/scan/machine/non"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dmi/scan/machine"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dmi/scan"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dmi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/unwinder/frame"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/unwinder"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/myri10ge"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ib700"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/thinkpad/acpi/hotkey"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/thinkpad/acpi/alsa"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/thinkpad/acpi"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/thinkpad"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ti/am335x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ti/cpsw"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ti"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bch/const"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bch"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mlx/cpld"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mlx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sparse"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hotplug/pci/cpci"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hotplug/pci/acpi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hotplug/pci"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hotplug"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/prism2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/qcom/spmi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/qcom/vadc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/qcom/hidma"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/qcom"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sensors/ibm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sensors/sch56xx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sensors/ltc2978"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sensors/mc13783"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sensors/hmc5843"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sensors/via"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sensors/menf21bmc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sensors/dell"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sensors/lis3"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sensors/ntc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sensors/da9052"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sensors/iio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sensors/acpi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sensors/i5k"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sensors/fam15h"}, {"size": 72, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sensors"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sctp/default/cookie/hmac"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sctp/default/cookie"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sctp/default"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sctp/cookie/hmac"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sctp/cookie"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sctp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/irda/fast"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/irda/cache/last"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/irda/cache"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/irda"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usbip/vhci/hc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usbip/vhci/nr"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usbip/vhci"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usbip"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/autofs4"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/serial/altera/uart"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/serial/altera"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/serial/8250/runtime"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/serial/8250/share"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/serial/8250/men"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/serial/8250/nr"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/serial/8250/many"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/serial/8250"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/serial/kgdb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/serial/dev/ctrl"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/serial/dev"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/serial/rp2/nr"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/serial/rp2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/serial/core"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/serial/fsl"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/serial/men"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/serial/sc16is7xx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/serial/sccnxp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/serial/arc/nr"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/serial/arc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/serial/uartlite/nr"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/serial/uartlite"}, {"size": 92, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/serial"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/aix"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ina2xx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/radio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/das08"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/addi/apci"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/addi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/8255"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/amplc/pc236"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/amplc/dio200"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/amplc/pc263"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/amplc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/gsc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/default/buf/size"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/default/buf/maxsize"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/default/buf"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/default"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/quatech/daqp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/quatech"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/cb/das16"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/cb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/ni/daq/dio24"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/ni/daq/700"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/ni/daq"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/ni/labpc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/ni/at"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/ni/mio"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/ni"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/adv/pci"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/adv"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/jr3"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/aio/iiro"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/aio/aio12"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/aio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/contec/pci"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/contec"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/isa"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/icp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/ii"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/misc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/me"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/dyna"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/pcmcia"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/usb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/pci"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/ke"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/adl"}, {"size": 176, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/comedi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/exofs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iwlwifi/device"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iwlwifi/opmode"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iwlwifi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cc10001"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pps/client"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pps"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/be2net"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/packet"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sysv"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/jffs2/fs/posix"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/jffs2/fs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/jffs2/cmode"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/jffs2/compression"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/jffs2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ie6xx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/parport/not"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/parport/pc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/parport"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sunrpc/xprt"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sunrpc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/clz"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/anon"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mpls"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hostap/firmware"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hostap"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/async/tx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/async/raid6"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/async"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rds"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dst"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/i6300esb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/wireless"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bcm/kona/usb2"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bcm/kona"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bcm/net"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bcm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mspro"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ad525x/dpot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ad525x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/atm/idt77252/use"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/atm/idt77252"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/atm/he/use"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/atm/he"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/atm/fore200e/tx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/atm/fore200e"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/atm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ptp/1588/clock"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ptp/1588"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ptp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/viperboard"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iommu"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ath5k"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/thread/info/in"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/thread/info"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/thread"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/mod/arch"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/mod"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/perf/events"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/perf/user/stack"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/perf/user"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/perf"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/gcc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/generic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/stack"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/mixed/breakpoints"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/mixed"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/pcspkr"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/intel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/dynamic/ftrace/with"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/dynamic/ftrace"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/dynamic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/ftrace/mcount"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/ftrace"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/irq/exit/on/irq"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/irq/exit/on"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/irq/exit"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/irq/time"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/irq"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/memory"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/virt/cpu/accounting"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/virt/cpu"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/virt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/cmpxchg"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/context"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/ioremap"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/reliable"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/hardlockup/detector"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/hardlockup"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/unstable/sched"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/unstable"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/syscall"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/kprobes/on"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/kprobes"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/hardened/usercopy"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/hardened"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/cc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/exit"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/net"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/regs/and/stack/access"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/regs/and/stack"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/regs/and"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/regs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/efficient/unaligned"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/efficient"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/kernel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/debug"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/memblock/node"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/memblock"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/kvm/irq"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/kvm/cpu/relax"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/kvm/cpu"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/kvm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/clk"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/dma/api"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/dma"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/ebpf"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/acpi/apei"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/acpi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/copy/thread"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/copy"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/hw"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/c"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/bootmem/info"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/bootmem"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/user/return"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/user"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/arch/huge"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/arch/mmap/rnd/compat"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/arch/mmap/rnd"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/arch/mmap"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/arch/soft"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/arch/vmap"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/arch/compat/mmap"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/arch/compat"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/arch/seccomp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/arch/jump"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/arch/within/stack"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/arch/within"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/arch/transparent/hugepage"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/arch/transparent"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/arch"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/rcu/table"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/rcu"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/setup/per/cpu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/setup/per"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/setup"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/mmiotrace"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/aligned/struct"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/aligned"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/function/graph"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have/function"}, {"size": 388, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/have"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/vlsi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/integrity/trusted"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/integrity/asymmetric"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/integrity"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hsi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/lru"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/balloon"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ucb1400"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/thrustmaster"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/kgdb/serial"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/kgdb/low/level"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/kgdb/low"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/kgdb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/tcm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/i2c/cbus"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/i2c/nforce2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/i2c/parport"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/i2c/pca"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/i2c/diolan"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/i2c/designware"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/i2c/mux"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/i2c/tiny"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/i2c/taos"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/i2c/helper"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/i2c/amd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/i2c/cht"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/i2c/amd756"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/i2c/robotfuzz"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/i2c/cros/ec"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/i2c/cros"}, {"size": 68, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/i2c"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/macintosh"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/lte"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hwmon"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/holtek"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mlx4/core"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mlx4/en"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mlx4"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/optimize"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/aic7xxx/reg/pretty"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/aic7xxx/reg"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/aic7xxx/reset/delay"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/aic7xxx/reset"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/aic7xxx/cmds/per"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/aic7xxx/cmds"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/aic7xxx/debug"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/aic7xxx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sfc/mcdi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sfc/falcon"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sfc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/lockup"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/check"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/init/env/arg"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/init/env"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/init"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ac97"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pccard"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/efi/vars"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/efi/runtime"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/efi/capsule"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/efi/dev/path"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/efi/dev"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/efi/signature/list"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/efi/signature"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/efi/bootloader"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/efi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/uprobe"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/platform"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/atari"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/soft/watchdog"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/soft"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/inet6/xfrm/mode"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/inet6/xfrm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/inet6/esp"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/inet6"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bfq/group"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bfq"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/zeroplus"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/regmap"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/zlib"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sbc/epx/c3"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sbc/epx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sbc/fitpc2"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sbc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/da9150"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nodes/span/other"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nodes/span"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nodes"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/kempld"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/wiznet/bus"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/wiznet/w5100"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/wiznet"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hmm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/wilc1000/hw/oob"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/wilc1000/hw"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/wilc1000"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/thin"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/secondary/trusted"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/secondary"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rionet/tx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rionet/rx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rionet"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/idle/page"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/idle"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fib"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bpf/jit/always"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bpf/jit"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bpf/stream"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bpf"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/machz"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/instruction"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/calgary/iommu/enabled/by"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/calgary/iommu/enabled"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/calgary/iommu"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/calgary"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/font/acorn"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/font"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/zone"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dp83867"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ncp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/message/loglevel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/message"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mcb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/suspend"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sms/usb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sms/sdio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sms/siano"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sms"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/clkbld"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/video/au0828"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/video/ir"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/video/cx18"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/video/ivtv"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/video/v4l2/subdev"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/video/v4l2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/video/cafe"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/video/saa7146"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/video/fb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/video/via"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/video/sony/btf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/video/sony"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/video/em28xx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/video/mem2mem"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/video/vivid/max"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/video/vivid"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/video/stk1160"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/video/saa7134"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/video/zoran"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/video/sh"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/video/hexium"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/video/pvrusb2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/video/cx231xx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/video/cx88/enable"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/video/cx88"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/video/tm6000"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/video/cx25821"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/video/go7007/usb/s2250"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/video/go7007/usb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/video/go7007"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/video/pci"}, {"size": 128, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/video"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fcoe"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fb/carillo"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fb/savage"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fb/aty128"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fb/intel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fb/pm2/fifo"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fb/pm2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fb/sys"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fb/auo"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fb/cfb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fb/s3"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fb/tft/agm1264k"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fb/tft/fbtft"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fb/tft"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fb/cyber2000"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fb/via/x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fb/via"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fb/carmine/dram"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fb/carmine"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fb/mode"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fb/radeon"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fb/sis"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fb/riva"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fb/matrox"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fb/boot/vesa"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fb/boot"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fb/aty"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fb/nvidia"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fb/mb862xx/pci"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fb/mb862xx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fb/deferred"}, {"size": 124, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/vmap"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fanotify/access"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fanotify"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rtl8xxxu"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/smc/ircc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/smc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/thp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ade7854"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/p54"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ldisc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/via/rhine"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/via"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cfag12864b"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/chelsio/t4"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/chelsio/t1"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/chelsio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/associative"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bsd/process/acct"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bsd/process"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bsd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nvme/target"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nvme"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/kprobes/on"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/kprobes"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/stm/source"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/stm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hfsplus/fs/posix"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hfsplus/fs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hfsplus"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/high/res"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/high"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/trace/irqflags"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/trace"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hardened"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/need/multiple"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/need/per/cpu/embed/first"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/need/per/cpu/embed"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/need/per/cpu/page/first"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/need/per/cpu/page"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/need/per/cpu"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/need/per"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/need/sg/dma"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/need/sg"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/need/dma/map"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/need/dma"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/need"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ippp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nv"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/extcon/intel/cht"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/extcon/intel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/extcon/usbc/cros"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/extcon/usbc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/extcon/adc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/extcon/usb"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/extcon"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sony"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ufs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/at803x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cc/optimize/for"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cc/optimize"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cc/stackprotector"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dev/dax"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dev"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/phys/addr/t"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/phys/addr"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/phys"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/netconsole"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nouveau/legacy/ctx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nouveau/legacy"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nouveau/debug"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nouveau"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/it87"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/section/mismatch/warn"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/section/mismatch"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/section"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/logig940"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/base"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fair/group"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fair"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/videobuf2/dma"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/videobuf2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/qnx4fs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/b53/spi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/b53/srab"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/b53/mmap"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/b53/mdio"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/b53"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/net/ematch"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/net/udp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/net/team/mode"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/net/team"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/net/packet"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/net/mpls"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/net/ptp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/net/fou/ip"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/net/fou"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/net/l3/master"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/net/l3"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/net/drop"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/net/ipgre"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/net/sch/fq"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/net/sch"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/net/dsa/mv88e6xxx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/net/dsa/tag/brcm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/net/dsa/tag"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/net/dsa/smsc/lan9303"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/net/dsa/smsc"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/net/dsa"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/net/act/tunnel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/net/act"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/net/ip"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/net/rx/busy"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/net/rx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/net/cls"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/net/9p"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/net/vendor"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/net/poll"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/net/flow"}, {"size": 128, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/net"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/greenasia"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/microchip/ksz/spi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/microchip/ksz"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/microchip"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/logiwheels"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/twl6040"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtrr/sanitizer/enable"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtrr/sanitizer/spare/reg/nr"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtrr/sanitizer/spare/reg"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtrr/sanitizer/spare"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtrr/sanitizer"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtrr"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rfkill"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/tekram"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/104/quad"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/104"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/page/table"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/page"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/xillybus"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/devfreq/gov/simple"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/devfreq/gov"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/devfreq"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cross/memory"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cross"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sound/oss"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sound"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/leds/wm831x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/leds/intel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/leds/pca955x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/leds/lp55xx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/leds/brightness/hw"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/leds/brightness"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/leds/class"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/leds/clevo"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/leds/pca9532"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/leds/trigger/default"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/leds/trigger"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/leds"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nvdimm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/f71808e"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ziirave"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/edd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/musb/pio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/musb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/greybus/bridged"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/greybus"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ttpci"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ip/multiple"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ip/set/bitmap"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ip/set/list"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ip/set/hash"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ip/set"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ip/route"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ip/fib/trie"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ip/fib"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ip/vs/pe"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ip/vs/proto/ah"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ip/vs/proto"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ip/vs/sh/tab"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ip/vs/sh"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ip/vs/tab"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ip/vs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ip/nf/arp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ip/nf/match"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ip/nf/target"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ip/nf"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ip/advanced"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ip/pimsm"}, {"size": 88, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ip"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/qsemi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/da9055"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/slub/cpu"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/slub/memcg/sysfs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/slub/memcg"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/slub"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/int3406"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/de2104x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/amd8111"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fusion/max"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fusion"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/atlas/ph"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/atlas"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/tifm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/prevent/firmware"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/prevent"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/module/srcversion"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/module/sig"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/module"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pmc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/split/ptlock"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/split"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/teranetics"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/btrfs/fs/posix"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/btrfs/fs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/btrfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/security/perf/events"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/security/perf"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/security/tomoyo/activation"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/security/tomoyo/policy"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/security/tomoyo/max/accept"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/security/tomoyo/max/audit"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/security/tomoyo/max"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/security/tomoyo"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/security/network"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/security/default/display"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/security/default"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/security/apparmor/bootparam"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/security/apparmor/hash"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/security/apparmor"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/security/smack/append"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/security/smack"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/security/selinux/bootparam"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/security/selinux/checkreqprot"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/security/selinux/avc"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/security/selinux"}, {"size": 84, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/security"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mlxsw/core"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mlxsw/spectrum"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mlxsw"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/menf21bmc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/early/printk"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/early"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/toshiba/bt"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/toshiba"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/input/soc/button"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/input/soc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/input/gpio/tilt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/input/gpio/rotary"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/input/gpio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/input/max8997"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/input/drv2665"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/input/da9063"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/input/wm831x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/input/max8925"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/input/cma3000"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/input/regulator"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/input/e3x0"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/input/axp20x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/input/ims"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/input/88pm860x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/input/mc13783"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/input/keyspan"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/input/arizona"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/input/twl6040"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/input/da9055"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/input/atlas"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/input/drv2667"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/input/xen/kbddev"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/input/xen"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/input/max77693"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/input/pcf50633"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/input/ad714x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/input/palmas"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/input/drv260x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/input/da9052"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/input/mousedev/screen"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/input/mousedev"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/input/adxl34x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/input/twl4030"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/input/ff"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/input/ati"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/input/88pm80x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/input/retu"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/input/ideapad"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/input/pwm"}, {"size": 168, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/input"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dlci"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/load/uefi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/load"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/quotactl"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/virtio/blk"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/virtio/mmio/cmdline"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/virtio/mmio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/virtio/vsockets"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/virtio/pci"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/virtio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/surface3"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/lcd/class"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/lcd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/liquidio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nvm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ad/sigma"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ad"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/blk/sed"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/blk/dev/ram"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/blk/dev/io"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/blk/dev/loop/min"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/blk/dev/loop"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/blk/dev/pciessd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/blk/dev/dm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/blk/dev/3w/xxxx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/blk/dev/3w"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/blk/dev/null"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/blk/dev"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/blk/cmdline"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/blk/scsi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/blk/debug"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/blk/mq"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/blk/wbt"}, {"size": 68, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/blk"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/xz/dec"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/xz"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/acquire"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cpu5"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/tablet/serial"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/tablet/usb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/tablet"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pkcs7/message"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pkcs7/test"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pkcs7"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fscache"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/compal"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/broadcom"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mma7455"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ultrix"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/lwtunnel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/clocksource/validate/last"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/clocksource/validate"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/clocksource"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/lockdep"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rtllib/crypto"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rtllib"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pcie/dw"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pcie"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/tasks"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/futex"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pnfs/file"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pnfs/flexfile"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pnfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pstore/zlib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pstore"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/gpiolib"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/extra"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/paride"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nf/conntrack/netbios"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nf/conntrack"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nf/dup"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nf/reject"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nf/tables"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nf/defrag"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nf/log"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nf/socket"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nf/ct/proto"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nf/ct/netlink"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nf/ct"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nf/nat/masquerade"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nf/nat/proto"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nf/nat/snmp"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nf/nat"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nf"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/openvswitch"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/amiga"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hdmi/lpe"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hdmi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/lattice/ecp3"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/lattice"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/litelink"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rtlwifi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ieee802154/at86rf230"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ieee802154/ca8210"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ieee802154"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dscc4/pci"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dscc4"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/lirc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/wl1251"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iosched"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/illegal/pointer"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/illegal"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cls/u32"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cls"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rtlhalmac"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/f2fs/fs/posix"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/f2fs/fs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/f2fs/stat"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/f2fs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pda"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/img/ascii"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/img"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/xen/netdev"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/xen/sys"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/xen/grant/dev"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/xen/grant"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/xen/blkdev"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/xen/have"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/xen/balloon/memory/hotplug"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/xen/balloon/memory"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/xen/balloon"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/xen/mce"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/xen/pv"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/xen/dev"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/xen/pcidev"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/xen/fbdev"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/xen/save"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/xen/compat"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/xen/pvcalls"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/xen/scsi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/xen/xenbus"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/xen/acpi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/xen/scrub"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/xen/pvhvm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/xen/auto"}, {"size": 96, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/xen"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/paravirt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mutex/spin/on"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mutex/spin"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mutex"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/core/dump/default/elf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/core/dump/default"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/core/dump"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/core"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ath"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hangcheck"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dummy/console"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dummy"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cmdline"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dell/uart"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dell/wmi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dell/smbios"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dell"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/radix/tree"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/radix"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bcm7xxx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pcf50633"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/phy/cpcap"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/phy/qcom/usb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/phy/qcom"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/phy/pxa/28nm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/phy/pxa"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/phy/samsung"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/phy"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/agp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/speakup/synth"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/speakup"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/compat/netlink"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/compat/old"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/compat/for/u64"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/compat/for"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/compat/binfmt"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/compat"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/9p/fs/posix"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/9p/fs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/9p"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/torture"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/aes/ni"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/aes/x86"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/aes"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/poly1305/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/poly1305"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/michael"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/ablk"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/crct10dif"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/cast"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/ghash/clmul/ni"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/ghash/clmul"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/ghash"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/dev/qat"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/dev/ccp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/dev/padlock"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/dev/nitrox"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/dev/sp"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/dev"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/sha1"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/sha512"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/ansi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/crc32"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/cast6/avx/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/cast6/avx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/cast6"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/camellia/aesni/avx2/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/camellia/aesni/avx2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/camellia/aesni/avx/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/camellia/aesni/avx"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/camellia/aesni"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/camellia/x86"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/camellia"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/des3/ede/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/des3/ede"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/des3"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/serpent/avx2/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/serpent/avx2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/serpent/sse2/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/serpent/sse2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/serpent/avx/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/serpent/avx"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/serpent"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/twofish/x86/64"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/twofish/x86"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/twofish/avx/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/twofish/avx"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/twofish"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/glue/helper"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/glue"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/blowfish/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/blowfish"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/sha256"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/rng"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/user/api"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/user"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/hash"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/manager/disable"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/manager"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/chacha20/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/chacha20"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/cast5/avx/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/cast5/avx"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/cast5"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/crc32c"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/drbg"}, {"size": 264, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crypto"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/allow/dev"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/allow/lockdown/lift/by"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/allow/lockdown/lift"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/allow/lockdown"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/allow"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cypress"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ks959"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hdm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bcma/driver/gmac"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bcma/driver"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bcma/host/pci"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bcma/host"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bcma"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x25"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iosf/mbi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iosf"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/airo"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mwifiex"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/persistent"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/kernel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pmic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pid"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/tigon3"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/qlcnic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/wm8350"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/minix"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/wmi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/chrome"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/tick/cpu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/tick"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/lxt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/output"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/vga/arb/max"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/vga/arb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/vga"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hermes/cache/fw/on"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hermes/cache/fw"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hermes/cache"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hermes"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crc32"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mxm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/stacktrace"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/isa/bus"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/isa/dma"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/isa"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mouse/elan/i2c"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mouse/elan"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mouse/ps2/synaptics"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mouse/ps2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mouse/synaptics"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mouse"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/block"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ath9k/btcoex"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ath9k/htc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ath9k/common"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ath9k/channel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ath9k/station"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ath9k"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ubifs/fs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ubifs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/yenta/ene"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/yenta"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cadence"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/syn"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/topstar"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hpwdt/nmi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hpwdt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ena"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/w83977f"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mpu3050"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dptf"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/palmas"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/men/a21"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/men/z188"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/men"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nftl"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cpumask"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/wdat"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/version"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/spi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/qla"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/bnx2x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/qlogic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/cxgb3"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/future"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/dpt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/ipr"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/bnx2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/scan"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/bfa"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/eata/tagged"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/eata/linked"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/eata/max"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/eata"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/chelsio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/ufs/dwc/tc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/ufs/dwc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/ufs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/srp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/osd/dprint"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/osd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/lowlevel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/sas/host"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/sas"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/fc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/ufshcd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/3w"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/cxgb4"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/mpt2sas/max"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/mpt2sas"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/iscsi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/sym53c8xx/default"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/sym53c8xx/dma/addressing"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/sym53c8xx/dma"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/sym53c8xx/max"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/sym53c8xx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/dh/hp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/dh"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/proc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/mpt3sas/max"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/mpt3sas"}, {"size": 172, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/scsi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/w83877f"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/tree"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cgroup/net"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cgroup"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sysctl/exception"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sysctl"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/tracer/max"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/tracer"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nr"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/framebuffer/console/detect"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/framebuffer/console"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/framebuffer"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ab3100"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hpet/mmap"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hpet/emulate"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hpet"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/vitesse"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/drm/analogix"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/drm/i915/capture"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/drm/i915/compress"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/drm/i915/gvt"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/drm/i915"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/drm/i2c/nxp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/drm/i2c"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/drm/kms/fb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/drm/kms/cma"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/drm/kms"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/drm/nouveau"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/drm/mipi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/drm/fbdev"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/drm/amdgpu"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/drm/load/edid"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/drm/load"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/drm/gem/cma"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/drm/gem"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/drm/virtio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/drm/cirrus"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/drm/panel/raspberrypi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/drm/panel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/drm/amd/dc/pre"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/drm/amd/dc/dcn1"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/drm/amd/dc"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/drm/amd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/drm/dp/aux"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/drm/dp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/drm/vmwgfx"}, {"size": 120, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/drm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ncpfs/ioctl"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ncpfs/packet"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ncpfs/nfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ncpfs/os2"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ncpfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/libertas/thinfirm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/libertas"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cb710/debug"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cb710"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/thermal/gov/power"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/thermal/gov/step"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/thermal/gov/fair"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/thermal/gov/bang"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/thermal/gov/user"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/thermal/gov"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/thermal/default/gov/step"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/thermal/default/gov"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/thermal/default"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/thermal/emergency/poweroff/delay"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/thermal/emergency/poweroff"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/thermal/emergency"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/thermal/writable"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/thermal"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/clkevt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/numa/balancing/default"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/numa/balancing"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/numa"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/debug"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/silead"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/efivar"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/buildtime/extable"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/buildtime"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/baycom/ser"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/baycom"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/zstd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rtl8723"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hpfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rt2x00/lib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rt2x00"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/alim1535"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/davicom"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/old/belkin"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/old"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/toim3232"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mantis"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fpga/mgr/altera/ps"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fpga/mgr/altera"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fpga/mgr/xilinx"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fpga/mgr"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fpga"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/eeprom/idt"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/eeprom"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/randomize/memory/physical"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/randomize/memory"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/randomize"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hsa"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/netup"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/au8522"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/dynamic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/b2c2/flexcop"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/b2c2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/tuner"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/zd1301"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/platform"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/rtl2832"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/gp8psk"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/budget"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/max"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/usb/af9005"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/usb/technisat"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/usb/umt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/usb/cinergy"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/usb/dibusb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/usb/nova/t"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/usb/nova"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/usb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/as102"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/av7110"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/ttusb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/firedtv"}, {"size": 100, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dvb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/skge"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/big"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/b43legacy/pcicore"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/b43legacy/dma/and/pio"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/b43legacy/dma/and"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/b43legacy/dma"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/b43legacy/pci"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/b43legacy"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/panic/on/oops"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/panic/on"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/panic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/panel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ma600"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/karma"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fujitsu"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/solaris/x86"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/solaris"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/partition"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/eurotech"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/da9052"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/advise"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bmc150/magn"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bmc150/accel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bmc150"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/micrel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/uwb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/clkdev"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/thunder/nic"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/thunder"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sysv68"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ad5624r"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dm/multipath"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dm/thin"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dm/cache"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dm/persistent"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dm/log"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dm/bio"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ad7606/iface"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ad7606"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/omfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/misc/rtsx"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/misc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/trusted"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/configfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/task/io"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/task/delay"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/task"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hid/hyperv"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hid/sensor/device"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hid/sensor/custom"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hid/sensor/magnetometer"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hid/sensor/inclinometer"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hid/sensor/gyro"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hid/sensor/iio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hid/sensor/accel"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hid/sensor"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hid/udraw"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hid/battery"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hid/ems"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hid/logitech"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hid/picolcd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hid/betop"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hid/acrux"}, {"size": 68, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hid"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bcm87xx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/raw"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/kingsun"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/md"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/gact"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nfp/app"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nfp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/binary"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hisax/sct"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hisax/netjet"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hisax/fritz"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hisax/16"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hisax/enternow"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hisax/sedlbauer"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hisax/teles"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hisax/max"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hisax/avm/a1"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hisax/avm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hisax/bkm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hisax/elsa"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hisax/hfc"}, {"size": 56, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hisax"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sata/dwc/old"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sata/dwc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sata/mobile/lpm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sata/mobile"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sata/ahci"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sata/acard"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sata"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/peaq"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/kvm/generic/dirtylog/read"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/kvm/generic/dirtylog"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/kvm/generic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/kvm/async"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/kvm/debug"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/kvm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nop/usb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nop"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fixed"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/console/loglevel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/console"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/queued"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pata/cmd640"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pata/pdc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pata"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arcnet/rim"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arcnet/com20020"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arcnet"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cramfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/macb/use"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/macb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sg"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/tracing/events"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/tracing"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/vfio/iommu"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/vfio/mdev"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/vfio/pci"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/vfio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/wm831x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/intel/lpss"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/intel/quark/i2c"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/intel/quark"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/intel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/axp20x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/si476x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/sm501"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/janz"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/ti/am335x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/ti"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/wl1273"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/sec"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/arizona"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/tps65912"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/aat2870"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/wm8350"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/da9052"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/twl4030"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/mc13xxx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/cros/ec"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/cros"}, {"size": 92, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mfd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iwlegacy"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/microcode/old"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/microcode"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/target"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/itco/vendor"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/itco"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/adt7316"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/board"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/plx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/aufs/br"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/aufs/ino/t"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/aufs/ino"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/aufs/bdev"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/aufs/branch/max"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/aufs/branch"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/aufs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pantherlord"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/magic/sysrq/default"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/magic/sysrq"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/magic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/xfs/posix"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/xfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/boot/printk"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/boot"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/clk"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/uefi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/pmem/legacy"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/pmem"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/io"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/intel/tsx/mode"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/intel/tsx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/intel/memory/protection"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/intel/memory"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/intel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/vsyscall"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/bootparam/memory/corruption"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/bootparam/memory"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/bootparam"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/speedstep"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/l1/cache"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/l1"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/supports/memory"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/supports"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/p4"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/check/bios"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/check"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/platform"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/internode/cache"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/internode"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/mce"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/need"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/feature"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/dev/dma"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/dev"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/fast/feature"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/fast"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/powernow"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/pkg/temp"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/pkg"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/thermal"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/debug"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/minimum/cpu"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/minimum"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/reserve"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/extended"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/acpi/cpufreq"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/acpi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/amd/freq"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/amd/platform"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/amd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/mcelog"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/reroute/for/broken/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/reroute/for/broken"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/reroute/for"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/reroute"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/pcc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/ptdump"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/pm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/local"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/direct"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/64/acpi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86/64"}, {"size": 228, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x86"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ipack"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/log/buf"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/log/cpu/max/buf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/log/cpu/max"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/log/cpu"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/log"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iio/buffer"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iio/sysfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iio/sw"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iio/st/sensors"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iio/st/lsm6dsx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iio/st/magn/spi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iio/st/magn/i2c"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iio/st/magn"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iio/st/gyro/spi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iio/st/gyro/i2c"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iio/st/gyro"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iio/st/accel/spi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iio/st/accel/i2c"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iio/st/accel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iio/st/press"}, {"size": 52, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iio/st"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iio/kfifo"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iio/consumers/per"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iio/consumers"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iio/adis/lib"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iio/adis"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iio/ssp/sensors"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iio/ssp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iio/tightloop"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iio/triggered"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iio/simple"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iio/interrupt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iio/hrtimer"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iio/cros/ec/sensors"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iio/cros/ec/light"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iio/cros/ec/accel"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iio/cros/ec"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iio/cros"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iio/ms/sensors"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iio/ms"}, {"size": 144, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/punit/atom"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/punit"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/i8253"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mmc/sdricoh"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mmc/via"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mmc/tifm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mmc/toshiba"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mmc/block"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mmc/sdhci"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mmc/ricoh"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mmc/realtek"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mmc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cw1200/wlan"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cw1200"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ldm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sock/cgroup"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sock"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/brcm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dma/shared"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dma/engine"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dma/virt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dma/virtual"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dma"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/kallsyms/absolute"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/kallsyms/base"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/kallsyms"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/firmware/in"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/firmware"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/vfat"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/softlockup"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dp83822"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hypervisor"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bmg160"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ipw2100"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/igb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/coda"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/qtnfmac/pearl"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/qtnfmac"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/raid6"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/kexec/verify"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/kexec/bzimage/verify"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/kexec/bzimage"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/kexec"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/adjd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/unisys"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/renesas"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/audit"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/unused"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/twl4030"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/infiniband/qib"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/infiniband/on/demand"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/infiniband/on"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/infiniband/addr/trans"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/infiniband/addr"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/infiniband/ipoib"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/infiniband/opa"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/infiniband/bnxt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/infiniband/user"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/infiniband/vmware"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/infiniband"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/asymmetric/key"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/asymmetric/public/key"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/asymmetric/public"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/asymmetric"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/textsearch"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/crash"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pdc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dwmac"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ath10k"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/lidar/lite"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/lidar"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/may/use"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/may"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/qed"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dw/dmac"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dw"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/c2port/duramar"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/c2port"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/wq/power/efficient"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/wq/power"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/wq"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nfs/acl"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nfs/v4/1/implementation/id"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nfs/v4/1/implementation"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nfs/v4/1"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nfs/v4/security"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nfs/v4"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nfs/v3"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nfs/use/kernel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nfs/use"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ecrypt/fs"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ecrypt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ppp/sync"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ppp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/wlcore"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/processor"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/legacy/tables"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/legacy"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/custom/dsdt"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/custom"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/hotplug"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/i2c"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/table"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/rev/override"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/rev"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/thermal"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/cppc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/cpu/freq"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/cpu"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/apei/memory"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/apei"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/ec"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/pci"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/system/power/states"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/system/power"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/system"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/debugger"}, {"size": 92, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/acpi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/uevent/helper"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/uevent"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/synclink"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/modules/tree"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/modules/use/elf"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/modules/use"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/modules"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/elf"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/realtek"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mdio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ip6/nf/match"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ip6/nf/target"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ip6/nf"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ip6"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/enclosure"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/decompress"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ocfs2/fs/userspace"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ocfs2/fs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ocfs2/debug"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ocfs2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/l2tp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/amilo"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/msdos"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/melfas"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/cyttsp4"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/egalax"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/tsc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/wacom"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/auo"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/ti/am335x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/ti"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/wdt87xx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/rohm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/edt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/surface3"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/tsc2007"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/sis"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/rm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/usb/ett"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/usb/general"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/usb/dmc"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/usb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/tsc200x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/ad7879"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/atmel/mxt"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/atmel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/cyttsp"}, {"size": 100, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sigmatel"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/act200l"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/typec"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/lz4hc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/aquantia"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pcieaspm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/wafer"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/winbond"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/vm/event"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/vm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/inv/mpu6050"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/inv"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/chr/dev"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/chr"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rpmsg/qcom/glink"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rpmsg/qcom"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rpmsg"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bridge/vlan"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bridge/igmp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bridge/ebt/mark"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bridge/ebt/802"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bridge/ebt/t"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bridge/ebt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bridge/nf"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bridge"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ssb/pcmciahost"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ssb/b43/pci"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ssb/b43"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ssb/sdiohost"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ssb/driver/pcicore"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ssb/driver"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ssb/pcihost"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ssb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bnxt/flower"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bnxt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/aic79xx/reg/pretty"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/aic79xx/reg"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/aic79xx/reset/delay"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/aic79xx/reset"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/aic79xx/cmds/per"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/aic79xx/cmds"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/aic79xx/debug"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/aic79xx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/branch/profile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/branch"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/romfs/on"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/romfs/backed/by"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/romfs/backed"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/romfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sc1200"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/unix98"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/slip/mode"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/slip"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hw/random"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hw"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/select/memory"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/select"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rtl8187"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/overlay/fs/redirect/always"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/overlay/fs/redirect"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/overlay/fs"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/overlay"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/v4l/platform"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/v4l/mem2mem"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/v4l/test"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/v4l"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fat/default"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fat"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sync"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ata/verbose"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ata/over"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ata"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/serio/altera"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/serio/gpio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/serio/arc"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/serio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cpu/sup"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cpu/freq/gov/attr"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cpu/freq/gov"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cpu/freq/default/gov"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cpu/freq/default"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cpu/freq"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cpu/idle/gov"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cpu/idle"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cpu"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/esi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/lib80211/crypt"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/lib80211"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cicada"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/quota/netlink"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/quota"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/kdb/default"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/kdb/continue"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/kdb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/amd/iommu"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/amd/xgbe/have"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/amd/xgbe"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/amd/mem"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/amd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/w1/slave/ds2408"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/w1/slave"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/w1/master"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/w1"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pcmcia/load"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pcmcia"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/max/raw"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/max"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/advantech"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/genwqe/platform/error"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/genwqe/platform"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/genwqe"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/binfmt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/60xx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ks8851"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/tahvo/usb/host/by"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/tahvo/usb/host"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/tahvo/usb"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/tahvo"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/net2272"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/dwc3/dual"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/dwc3"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/f/mass"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/f/ss"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/f/uac1"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/f"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/xhci"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/gpio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/g/acm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/g/dbgp"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/g"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/ali"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/pwc/input"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/pwc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/link/layer"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/link"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/hub"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/gspca/ov534"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/gspca/xirlink"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/gspca"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/dynamic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/dwc2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/announce/new"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/announce"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/default"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/mv"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/rainshadow"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/hsic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/isp1362"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/midi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/isp1761"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/switch"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/cdc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/serial/digi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/serial/mos7715"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/serial/ftdi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/serial/keyspan"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/serial/kobil"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/serial/mct"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/serial/cypress"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/serial/xsens"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/serial/edgeport"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/serial"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/ftdi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/chipidea"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/ehset/test"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/ehset"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/bdc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/video/class/input"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/video/class"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/video"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/hwa"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/functionfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/mass"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/sierra"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/net/rndis"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/net/cdc/subset"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/net/cdc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/net/huawei/cdc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/net/huawei"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/net/ax88179"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/net/cx82310"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/net/qmi"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/net"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/leds/trigger"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/leds"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/musb/dual"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/musb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/c67x00"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/ohci/little"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/ohci/hcd"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/ohci"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/cypress"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/ehci/tt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/ehci/root/hub"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/ehci/root"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/ehci/hcd"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/ehci"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/gr"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/ulpi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/configfs/f/uac1"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/configfs/f/lb"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/configfs/f"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/configfs/mass"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/configfs/ecm"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/configfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/max3421"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/r8a66597"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/isp116x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/eth"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/uhci"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/isp1760/dual"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/isp1760"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/wusb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/ezusb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/snp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/arch/has"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/arch"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/whci"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/pulse8"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/oxu210hp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/u"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/u132"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/fotg210"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/storage/ene"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/storage/cypress"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/storage"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/led"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/sl811/hcd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/sl811"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/gadget/vbus"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/gadget/storage/num"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/gadget/storage"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/gadget"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb/hcd"}, {"size": 468, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/usb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/seccomp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/dns"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sun"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/user/return"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/user/stacktrace"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/user"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/zram"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/backlight/carillo"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/backlight/class"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/backlight/pm8941"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/backlight/lcd"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/backlight"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/event"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sungem"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ath6kl"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hwlat"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/6lowpan/nhc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/6lowpan"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x509/certificate"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/x509"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mem/soft"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mem"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iscsi/ibft"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iscsi/target"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iscsi/boot"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iscsi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/marvell/10g"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/marvell"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/memcg"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/frame"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/842"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/uses/pg"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/uses/high/vma"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/uses/high"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/uses"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/discard"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/pmem"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/filter"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/set"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/strict/module"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/strict/kernel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/strict"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/zone"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/gigantic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/fast"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/devmem/is"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/devmem"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/cache/line"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/cache"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/debug"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/sg"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/acpi/table"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/acpi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/elf"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/ubsan/sanitize"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/ubsan"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/cpu"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/mem"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/uaccess"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/add"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/gcov/profile"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/gcov"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/fortify"}, {"size": 112, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/memory"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/supports/memory"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/supports/atomic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/supports/numa"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/supports/debug"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/supports/deferred/struct/page"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/supports/deferred/struct"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/supports/deferred"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/supports/optimized"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/supports"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/mmap/rnd/bits"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/mmap/rnd/compat/bits"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/mmap/rnd/compat"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/mmap/rnd"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/mmap"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/have/nmi/safe"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/have/nmi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/have"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/suspend"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/enable/memory"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/enable/hugepage"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/enable/thp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/enable/split/pmd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/enable/split"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/enable"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/phys/addr/t"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/phys/addr"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/phys"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/clocksource"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/wants/dynamic/task"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/wants/dynamic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/wants/thp"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/wants"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/hibernation"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/dma/addr/t"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/dma/addr"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/dma"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/may/have/pc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/may/have"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/may"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/select/memory"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/select"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/want/huge/pmd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/want/huge"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/want/compat/ipc/parse"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/want/compat/ipc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/want/compat"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/want/old/compat"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/want/old"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/want/general"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/want/batched/unmap/tlb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/want/batched/unmap"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/want/batched"}, {"size": 48, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/want"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/might/have/pc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/might/have/acpi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/might/have"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/might"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/sparsemem"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/proc/kcore"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/proc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/use/memremap"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/use/builtin"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/use/cmpxchg"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/use/queued"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch/use"}, {"size": 400, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arch"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rcu/perf"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rcu/need"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rcu/stall"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rcu/cpu/stall"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rcu/cpu"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rcu"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pc87413"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nfsd/v2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nfsd/v4/security"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nfsd/v4"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nfsd/v3"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nfsd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cdrom/pktcdvd"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cdrom"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bmi160"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mac80211/has"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mac80211/rc/default"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mac80211/rc/minstrel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mac80211/rc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mac80211/message"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mac80211/sta/hash/max"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mac80211/sta/hash"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mac80211/sta"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mac80211"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sdio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/exportfs/block"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/exportfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/gs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/jump"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/manager"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sdr/platform"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sdr"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/edac/atomic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/edac/decode"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/edac"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/vsockets"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ni903x"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/88eu/ap"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/88eu"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mma9551"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hvc/xen"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hvc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/caif/spi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/caif"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mcp2120"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/adaptec"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cortina"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/apple"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/samsung"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/inet/diag"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/inet/udp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/inet/dccp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/inet/xfrm/mode"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/inet/xfrm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/inet/tcp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/inet/sctp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/inet/esp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/inet/raw"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/inet"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/smsc/sch311x"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/smsc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/transparent/huge"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/transparent/hugepage"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/transparent"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/u/serial"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/u"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ne2k"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/want/dev"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/want"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/vxfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/tcg/tis/i2c"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/tcg/tis/st33zp24"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/tcg/tis"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/tcg/vtpm"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/tcg"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/de"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pgtable"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/osf"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/tmd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/oid"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/gameport"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ext4/fs/posix"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ext4/fs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ext4/use/for"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ext4/use"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ext4"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/retu"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fix/earlycon"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fix"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/axp288/fuel"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/axp288"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ucs2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/uio/pdrv"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/uio/dmem"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/uio/hv"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/uio/pci"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/uio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/n"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pm/generic/domains"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pm/generic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pm/notifier/error"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pm/notifier"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pm/wakelocks"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pm/sleep"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pm/trace"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pm/devfreq"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pm/advanced"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pm/std"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hts221"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mandatory/file"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mandatory"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/megaraid"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/lsm/mmap/min"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/lsm/mmap"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/lsm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/panasonic"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/i40e"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sgi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/lock/down/in/efi/secure"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/lock/down/in/efi"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/lock/down/in"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/lock/down"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/lock/spin/on"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/lock/spin"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/lock"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/lsi/et1011c"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/lsi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/led/trigger"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/led"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/acer"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/smsc37b787"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rockchip"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/netfilter/netlink/glue"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/netfilter/netlink"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/netfilter/xt/match"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/netfilter/xt/target"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/netfilter/xt"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/netfilter"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/orinoco"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/staging"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fuse"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/e1000e"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/physical"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/lpc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/chromeos"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/iso9660"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rapidio/disc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rapidio/mport"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rapidio/enum"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rapidio/rxs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rapidio/cps"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rapidio/dma"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rapidio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/joystick/psxpad/spi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/joystick/psxpad"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/joystick/iforce"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/joystick/xpad"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/joystick/grip"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/joystick"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/tty"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/vme"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/lockd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/test/static"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/test/user"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/test"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ceph/fs/posix"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ceph/fs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ceph/lib/use/dns"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ceph/lib/use"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ceph/lib"}, {"size": 24, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ceph"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/stream"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/gart"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cfg80211/default"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cfg80211/require/signed"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cfg80211/require"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cfg80211/crda"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cfg80211/wext"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cfg80211/use/kernel/regdb"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cfg80211/use/kernel"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cfg80211/use"}, {"size": 36, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cfg80211"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/wilink/platform"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/wilink"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/girbil"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/gadget"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/watchdog/pretimeout/gov"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/watchdog/pretimeout/default/gov"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/watchdog/pretimeout/default"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/watchdog/pretimeout"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/watchdog/handle/boot"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/watchdog/handle"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/watchdog"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cma"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arm/gic/max"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arm/gic"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/arm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sparsemem/vmemmap"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sparsemem/alloc/mem/map"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sparsemem/alloc/mem"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sparsemem/alloc"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/sparsemem"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/wlan/vendor"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/wlan"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/abx500"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mq/iosched"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mq"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bt/rfcomm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bt/bnep/proto"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bt/bnep/mc"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bt/bnep"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bt/mrvl"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bt/hcibtusb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bt/hciuart"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/bt"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/proc/page"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/proc/pid"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/proc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ipv6/router"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ipv6/multiple"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ipv6/seg6"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ipv6/route"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ipv6/fou"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ipv6/ndisc"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ipv6/sit"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ipv6/mroute/multiple"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ipv6/mroute"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ipv6/pimsm"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ipv6"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/isdn/capi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/isdn/divas"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/isdn/drv/avmb1/avm"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/isdn/drv/avmb1"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/isdn/drv"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/isdn/ppp"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/isdn/tty"}, {"size": 32, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/isdn"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ideapad"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/hist"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/wext"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ks0108"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pci/msi/irq"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pci/msi"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pci/sw"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pci/bus/addr/t"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pci/bus/addr"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pci/bus"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pci/endpoint"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pci/lockless"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pci/realloc/enable"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pci/realloc"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pci"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/system/extra/certificate"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/system/extra"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/system/blacklist/hash"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/system/blacklist"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/system/trusted"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/system/data"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/system"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/loopback"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/posix/mqueue"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/posix"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pwm/lpss"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pwm/twl"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pwm/cros"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/pwm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cros/kbd/led"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cros/kbd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cros/ec/lpc"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cros/ec"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/cros"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/nilfs2"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/tinydrm/mipi"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/tinydrm"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/jfs/posix"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/jfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/media/altera"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/media/cec"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/media/tuner"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/media/common"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/media/digital/tv"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/media/digital"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/media/radio"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/media/subdrv"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/media/camera"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/media/usb"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/media/sdr"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/media/analog/tv"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/media/analog"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/media/pci"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/media"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/befs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/keys"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ax25/dama"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ax25"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/stmmac"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rwsem/xchgadd"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rwsem/spin/on"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rwsem/spin"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/rwsem"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/function/graph"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/function"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/ms"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/vmware/vmci"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/vmware"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/use/percpu/numa/node"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/use/percpu/numa"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/use/percpu"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/use"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/charger"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/xilinx"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/checkpoint"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/fortify"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtdram/total"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtdram/erase"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mtdram"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/mac"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/reiserfs/fs/posix"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/reiserfs/fs"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/reiserfs"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/tmpfs/posix"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config/tmpfs"}, {"size": 12896, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/config"}, {"size": 8, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/generated/uapi/linux"}, {"size": 12, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/generated/uapi"}, {"size": 308, "name": "/usr/src/linux-headers-4.15.0-72-generic/include/generated"}, {"size": 13208, "name": "/usr/src/linux-headers-4.15.0-72-generic/include"}, {"size": 28, "name": "/usr/src/linux-headers-4.15.0-72-generic/kernel"}, {"size": 348, "name": "/usr/src/linux-headers-4.15.0-72-generic/scripts/mod"}, {"size": 44, "name": "/usr/src/linux-headers-4.15.0-72-generic/scripts/basic"}, {"size": 40, "name": "/usr/src/linux-headers-4.15.0-72-generic/scripts/kconfig/lxdialog"}, {"size": 548, "name": "/usr/src/linux-headers-4.15.0-72-generic/scripts/kconfig"}, {"size": 104, "name": "/usr/src/linux-headers-4.15.0-72-generic/scripts/selinux/genheaders"}, {"size": 108, "name": "/usr/src/linux-headers-4.15.0-72-generic/scripts/selinux/mdp"}, {"size": 220, "name": "/usr/src/linux-headers-4.15.0-72-generic/scripts/selinux"}, {"size": 1436, "name": "/usr/src/linux-headers-4.15.0-72-generic/scripts"}, {"size": 232, "name": "/usr/src/linux-headers-4.15.0-72-generic/arch/x86/purgatory"}, {"size": 112, "name": "/usr/src/linux-headers-4.15.0-72-generic/arch/x86/tools"}, {"size": 60, "name": "/usr/src/linux-headers-4.15.0-72-generic/arch/x86/include/generated/uapi/asm"}, {"size": 64, "name": "/usr/src/linux-headers-4.15.0-72-generic/arch/x86/include/generated/uapi"}, {"size": 104, "name": "/usr/src/linux-headers-4.15.0-72-generic/arch/x86/include/generated/asm"}, {"size": 172, "name": "/usr/src/linux-headers-4.15.0-72-generic/arch/x86/include/generated"}, {"size": 176, "name": "/usr/src/linux-headers-4.15.0-72-generic/arch/x86/include"}, {"size": 100, "name": "/usr/src/linux-headers-4.15.0-72-generic/arch/x86/kernel"}, {"size": 16, "name": "/usr/src/linux-headers-4.15.0-72-generic/arch/x86/entry/syscalls"}, {"size": 20, "name": "/usr/src/linux-headers-4.15.0-72-generic/arch/x86/entry"}, {"size": 644, "name": "/usr/src/linux-headers-4.15.0-72-generic/arch/x86"}, {"size": 648, "name": "/usr/src/linux-headers-4.15.0-72-generic/arch"}, {"size": 4, "name": "/usr/src/linux-headers-4.15.0-72-generic/.tmp_versions"}, {"size": 21992, "name": "/usr/src/linux-headers-4.15.0-72-generic"}, {"size": 390664, "name": "/usr/src"}, {"size": 184, "name": "/usr/lib/accountsservice"}, {"size": 4, "name": "/usr/lib/networkd-dispatcher/off.d"}, {"size": 4, "name": "/usr/lib/networkd-dispatcher/dormant.d"}, {"size": 4, "name": "/usr/lib/networkd-dispatcher/routable.d"}, {"size": 4, "name": "/usr/lib/networkd-dispatcher/no-carrier.d"}, {"size": 20, "name": "/usr/lib/networkd-dispatcher"}, {"size": 8, "name": "/usr/lib/locale/C.UTF-8/LC_MESSAGES"}, {"size": 1728, "name": "/usr/lib/locale/C.UTF-8"}, {"size": 3308, "name": "/usr/lib/locale"}, {"size": 24, "name": "/usr/lib/apt/planners"}, {"size": 48, "name": "/usr/lib/apt/solvers"}, {"size": 760, "name": "/usr/lib/apt/methods"}, {"size": 884, "name": "/usr/lib/apt"}, {"size": 28, "name": "/usr/lib/dpkg/methods/apt"}, {"size": 32, "name": "/usr/lib/dpkg/methods"}, {"size": 36, "name": "/usr/lib/dpkg"}, {"size": 576, "name": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk"}, {"size": 28, "name": "/usr/lib/gcc/x86_64-linux-gnu/7/include/sanitizer"}, {"size": 2596, "name": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"size": 184, "name": "/usr/lib/gcc/x86_64-linux-gnu/7/plugin"}, {"size": 20, "name": "/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed"}, {"size": 86880, "name": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"size": 4, "name": "/usr/lib/gcc/x86_64-linux-gnu/8"}, {"size": 86888, "name": "/usr/lib/gcc/x86_64-linux-gnu"}, {"size": 86892, "name": "/usr/lib/gcc"}, {"size": 4852, "name": "/usr/lib/file"}, {"size": 4, "name": "/usr/lib/groff/site-tmac"}, {"size": 32, "name": "/usr/lib/groff/grog"}, {"size": 40, "name": "/usr/lib/groff"}, {"size": 4, "name": "/usr/lib/sasl2"}, {"size": 16, "name": "/usr/lib/valgrind"}, {"size": 48, "name": "/usr/lib/dbus-1.0"}, {"size": 8, "name": "/usr/lib/pm-utils/sleep.d"}, {"size": 8, "name": "/usr/lib/pm-utils/power.d"}, {"size": 20, "name": "/usr/lib/pm-utils"}, {"size": 4, "name": "/usr/lib/gnupg2"}, {"size": 4, "name": "/usr/lib/bfd-plugins"}, {"size": 40, "name": "/usr/lib/byobu/include/__pycache__"}, {"size": 152, "name": "/usr/lib/byobu/include"}, {"size": 332, "name": "/usr/lib/byobu"}, {"size": 892, "name": "/usr/lib/openssh"}, {"size": 8, "name": "/usr/lib/rsyslog"}, {"size": 4, "name": "/usr/lib/linux/triggers"}, {"size": 8, "name": "/usr/lib/linux"}, {"size": 60, "name": "/usr/lib/update-notifier"}, {"size": 12, "name": "/usr/lib/language-selector"}, {"size": 8, "name": "/usr/lib/sysctl.d"}, {"size": 4, "name": "/usr/lib/gold-ld"}, {"size": 8, "name": "/usr/lib/software-properties"}, {"size": 4, "name": "/usr/lib/compat-ld"}, {"size": 4, "name": "/usr/lib/lxcfs"}, {"size": 8, "name": "/usr/lib/environment.d"}, {"size": 20, "name": "/usr/lib/linux-boot-probes/mounted"}, {"size": 28, "name": "/usr/lib/linux-boot-probes"}, {"size": 36, "name": "/usr/lib/grub-legacy"}, {"size": 388, "name": "/usr/lib/python3.6/asyncio/__pycache__"}, {"size": 828, "name": "/usr/lib/python3.6/asyncio"}, {"size": 128, "name": "/usr/lib/python3.6/urllib/__pycache__"}, {"size": 292, "name": "/usr/lib/python3.6/urllib"}, {"size": 2356, "name": "/usr/lib/python3.6/lib-dynload"}, {"size": 84, "name": "/usr/lib/python3.6/xml/sax/__pycache__"}, {"size": 160, "name": "/usr/lib/python3.6/xml/sax"}, {"size": 136, "name": "/usr/lib/python3.6/xml/dom/__pycache__"}, {"size": 288, "name": "/usr/lib/python3.6/xml/dom"}, {"size": 68, "name": "/usr/lib/python3.6/xml/etree/__pycache__"}, {"size": 156, "name": "/usr/lib/python3.6/xml/etree"}, {"size": 8, "name": "/usr/lib/python3.6/xml/__pycache__"}, {"size": 12, "name": "/usr/lib/python3.6/xml/parsers/__pycache__"}, {"size": 24, "name": "/usr/lib/python3.6/xml/parsers"}, {"size": 644, "name": "/usr/lib/python3.6/xml"}, {"size": 40, "name": "/usr/lib/python3.6/ctypes/__pycache__"}, {"size": 92, "name": "/usr/lib/python3.6/ctypes"}, {"size": 32, "name": "/usr/lib/python3.6/dbm/__pycache__"}, {"size": 64, "name": "/usr/lib/python3.6/dbm"}, {"size": 108, "name": "/usr/lib/python3.6/importlib/__pycache__"}, {"size": 244, "name": "/usr/lib/python3.6/importlib"}, {"size": 76, "name": "/usr/lib/python3.6/xmlrpc/__pycache__"}, {"size": 172, "name": "/usr/lib/python3.6/xmlrpc"}, {"size": 32, "name": "/usr/lib/python3.6/curses/__pycache__"}, {"size": 64, "name": "/usr/lib/python3.6/curses"}, {"size": 73640, "name": "/usr/lib/python3.6/config-3.6m-x86_64-linux-gnu"}, {"size": 8, "name": "/usr/lib/python3.6/concurrent/__pycache__"}, {"size": 52, "name": "/usr/lib/python3.6/concurrent/futures/__pycache__"}, {"size": 116, "name": "/usr/lib/python3.6/concurrent/futures"}, {"size": 132, "name": "/usr/lib/python3.6/concurrent"}, {"size": 16, "name": "/usr/lib/python3.6/sqlite3/__pycache__"}, {"size": 32, "name": "/usr/lib/python3.6/sqlite3"}, {"size": 608, "name": "/usr/lib/python3.6/encodings/__pycache__"}, {"size": 2372, "name": "/usr/lib/python3.6/encodings"}, {"size": 132, "name": "/usr/lib/python3.6/logging/__pycache__"}, {"size": 304, "name": "/usr/lib/python3.6/logging"}, {"size": 76, "name": "/usr/lib/python3.6/lib2to3/pgen2/__pycache__"}, {"size": 168, "name": "/usr/lib/python3.6/lib2to3/pgen2"}, {"size": 124, "name": "/usr/lib/python3.6/lib2to3/__pycache__"}, {"size": 236, "name": "/usr/lib/python3.6/lib2to3/fixes/__pycache__"}, {"size": 480, "name": "/usr/lib/python3.6/lib2to3/fixes"}, {"size": 920, "name": "/usr/lib/python3.6/lib2to3"}, {"size": 332, "name": "/usr/lib/python3.6/distutils/__pycache__"}, {"size": 216, "name": "/usr/lib/python3.6/distutils/command/__pycache__"}, {"size": 524, "name": "/usr/lib/python3.6/distutils/command"}, {"size": 1332, "name": "/usr/lib/python3.6/distutils"}, {"size": 3544, "name": "/usr/lib/python3.6/__pycache__"}, {"size": 152, "name": "/usr/lib/python3.6/http/__pycache__"}, {"size": 364, "name": "/usr/lib/python3.6/http"}, {"size": 12, "name": "/usr/lib/python3.6/multiprocessing/dummy/__pycache__"}, {"size": 24, "name": "/usr/lib/python3.6/multiprocessing/dummy"}, {"size": 224, "name": "/usr/lib/python3.6/multiprocessing/__pycache__"}, {"size": 504, "name": "/usr/lib/python3.6/multiprocessing"}, {"size": 64, "name": "/usr/lib/python3.6/wsgiref/__pycache__"}, {"size": 136, "name": "/usr/lib/python3.6/wsgiref"}, {"size": 24, "name": "/usr/lib/python3.6/venv/__pycache__"}, {"size": 8, "name": "/usr/lib/python3.6/venv/scripts/common"}, {"size": 12, "name": "/usr/lib/python3.6/venv/scripts/posix"}, {"size": 24, "name": "/usr/lib/python3.6/venv/scripts"}, {"size": 76, "name": "/usr/lib/python3.6/venv"}, {"size": 72, "name": "/usr/lib/python3.6/html/__pycache__"}, {"size": 180, "name": "/usr/lib/python3.6/html"}, {"size": 40, "name": "/usr/lib/python3.6/email/mime/__pycache__"}, {"size": 76, "name": "/usr/lib/python3.6/email/mime"}, {"size": 316, "name": "/usr/lib/python3.6/email/__pycache__"}, {"size": 792, "name": "/usr/lib/python3.6/email"}, {"size": 52, "name": "/usr/lib/python3.6/json/__pycache__"}, {"size": 112, "name": "/usr/lib/python3.6/json"}, {"size": 56, "name": "/usr/lib/python3.6/collections/__pycache__"}, {"size": 112, "name": "/usr/lib/python3.6/collections"}, {"size": 400, "name": "/usr/lib/python3.6/pydoc_data/__pycache__"}, {"size": 1040, "name": "/usr/lib/python3.6/pydoc_data"}, {"size": 44, "name": "/usr/lib/python3.6/test/__pycache__"}, {"size": 100, "name": "/usr/lib/python3.6/test/support/__pycache__"}, {"size": 224, "name": "/usr/lib/python3.6/test/support"}, {"size": 88, "name": "/usr/lib/python3.6/test/libregrtest/__pycache__"}, {"size": 192, "name": "/usr/lib/python3.6/test/libregrtest"}, {"size": 504, "name": "/usr/lib/python3.6/test"}, {"size": 188, "name": "/usr/lib/python3.6/unittest/__pycache__"}, {"size": 412, "name": "/usr/lib/python3.6/unittest"}, {"size": 95764, "name": "/usr/lib/python3.6"}, {"size": 12, "name": "/usr/lib/os-prober"}, {"size": 40, "name": "/usr/lib/mime/packages"}, {"size": 52, "name": "/usr/lib/mime"}, {"size": 4, "name": "/usr/lib/tar"}, {"size": 72, "name": "/usr/lib/tmpfiles.d"}, {"size": 4, "name": "/usr/lib/systemd/tests/testdata"}, {"size": 8, "name": "/usr/lib/systemd/tests"}, {"size": 4, "name": "/usr/lib/systemd/user-generators"}, {"size": 8, "name": "/usr/lib/systemd/user-preset"}, {"size": 48, "name": "/usr/lib/systemd/system-environment-generators"}, {"size": 8, "name": "/usr/lib/systemd/logind.conf.d"}, {"size": 148, "name": "/usr/lib/systemd/boot/efi"}, {"size": 152, "name": "/usr/lib/systemd/boot"}, {"size": 164, "name": "/usr/lib/systemd/catalog"}, {"size": 4, "name": "/usr/lib/systemd/user/graphical-session-pre.target.wants"}, {"size": 4, "name": "/usr/lib/systemd/user/sockets.target.wants"}, {"size": 112, "name": "/usr/lib/systemd/user"}, {"size": 20, "name": "/usr/lib/systemd/user-environment-generators"}, {"size": 528, "name": "/usr/lib/systemd"}, {"size": 444, "name": "/usr/lib/klibc/bin"}, {"size": 448, "name": "/usr/lib/klibc"}, {"size": 16, "name": "/usr/lib/kernel/install.d"}, {"size": 20, "name": "/usr/lib/kernel"}, {"size": 660, "name": "/usr/lib/gnupg"}, {"size": 28, "name": "/usr/lib/python3/dist-packages/apt/progress/__pycache__"}, {"size": 60, "name": "/usr/lib/python3/dist-packages/apt/progress"}, {"size": 124, "name": "/usr/lib/python3/dist-packages/apt/__pycache__"}, {"size": 336, "name": "/usr/lib/python3/dist-packages/apt"}, {"size": 16, "name": "/usr/lib/python3/dist-packages/six-1.11.0.egg-info"}, {"size": 52, "name": "/usr/lib/python3/dist-packages/httplib2/__pycache__"}, {"size": 120, "name": "/usr/lib/python3/dist-packages/httplib2"}, {"size": 28, "name": "/usr/lib/python3/dist-packages/wheel/signatures/__pycache__"}, {"size": 52, "name": "/usr/lib/python3/dist-packages/wheel/signatures"}, {"size": 16, "name": "/usr/lib/python3/dist-packages/wheel/tool/__pycache__"}, {"size": 36, "name": "/usr/lib/python3/dist-packages/wheel/tool"}, {"size": 100, "name": "/usr/lib/python3/dist-packages/wheel/__pycache__"}, {"size": 296, "name": "/usr/lib/python3/dist-packages/wheel"}, {"size": 20, "name": "/usr/lib/python3/dist-packages/CommandNotFound/db/__pycache__"}, {"size": 44, "name": "/usr/lib/python3/dist-packages/CommandNotFound/db"}, {"size": 28, "name": "/usr/lib/python3/dist-packages/CommandNotFound/__pycache__"}, {"size": 100, "name": "/usr/lib/python3/dist-packages/CommandNotFound"}, {"size": 16, "name": "/usr/lib/python3/dist-packages/requests_unixsocket/__pycache__"}, {"size": 32, "name": "/usr/lib/python3/dist-packages/requests_unixsocket"}, {"size": 28, "name": "/usr/lib/python3/dist-packages/cryptography-2.1.4.egg-info"}, {"size": 20, "name": "/usr/lib/python3/dist-packages/cloud_init-19.1.egg-info"}, {"size": 16, "name": "/usr/lib/python3/dist-packages/ssh_import_id/__pycache__"}, {"size": 32, "name": "/usr/lib/python3/dist-packages/ssh_import_id"}, {"size": 24, "name": "/usr/lib/python3/dist-packages/idna-2.6.egg-info"}, {"size": 40, "name": "/usr/lib/python3/dist-packages/Automat-0.6.0.egg-info"}, {"size": 28, "name": "/usr/lib/python3/dist-packages/incremental-16.10.1.egg-info"}, {"size": 24, "name": "/usr/lib/python3/dist-packages/oauthlib-2.0.6.egg-info"}, {"size": 20, "name": "/usr/lib/python3/dist-packages/hyperlink-17.3.1.egg-info"}, {"size": 28, "name": "/usr/lib/python3/dist-packages/Twisted-17.9.0.egg-info"}, {"size": 8, "name": "/usr/lib/python3/dist-packages/setuptools/extern/__pycache__"}, {"size": 16, "name": "/usr/lib/python3/dist-packages/setuptools/extern"}, {"size": 264, "name": "/usr/lib/python3/dist-packages/setuptools/__pycache__"}, {"size": 244, "name": "/usr/lib/python3/dist-packages/setuptools/command/__pycache__"}, {"size": 536, "name": "/usr/lib/python3/dist-packages/setuptools/command"}, {"size": 72, "name": "/usr/lib/python3/dist-packages/setuptools/_vendor/packaging/__pycache__"}, {"size": 156, "name": "/usr/lib/python3/dist-packages/setuptools/_vendor/packaging"}, {"size": 232, "name": "/usr/lib/python3/dist-packages/setuptools/_vendor/__pycache__"}, {"size": 652, "name": "/usr/lib/python3/dist-packages/setuptools/_vendor"}, {"size": 2180, "name": "/usr/lib/python3/dist-packages/setuptools"}, {"size": 192, "name": "/usr/lib/python3/dist-packages/OpenSSL/__pycache__"}, {"size": 404, "name": "/usr/lib/python3/dist-packages/OpenSSL"}, {"size": 56, "name": "/usr/lib/python3/dist-packages/hyperlink/__pycache__"}, {"size": 60, "name": "/usr/lib/python3/dist-packages/hyperlink/test/__pycache__"}, {"size": 120, "name": "/usr/lib/python3/dist-packages/hyperlink/test"}, {"size": 240, "name": "/usr/lib/python3/dist-packages/hyperlink"}, {"size": 84, "name": "/usr/lib/python3/dist-packages/jsonschema/tests/__pycache__"}, {"size": 168, "name": "/usr/lib/python3/dist-packages/jsonschema/tests"}, {"size": 88, "name": "/usr/lib/python3/dist-packages/jsonschema/__pycache__"}, {"size": 20, "name": "/usr/lib/python3/dist-packages/jsonschema/schemas"}, {"size": 360, "name": "/usr/lib/python3/dist-packages/jsonschema"}, {"size": 180, "name": "/usr/lib/python3/dist-packages/requests/__pycache__"}, {"size": 384, "name": "/usr/lib/python3/dist-packages/requests"}, {"size": 24, "name": "/usr/lib/python3/dist-packages/PyJWT-1.5.3.egg-info"}, {"size": 32, "name": "/usr/lib/python3/dist-packages/markupsafe/__pycache__"}, {"size": 76, "name": "/usr/lib/python3/dist-packages/markupsafe"}, {"size": 28, "name": "/usr/lib/python3/dist-packages/constantly/__pycache__"}, {"size": 56, "name": "/usr/lib/python3/dist-packages/constantly"}, {"size": 436, "name": "/usr/lib/python3/dist-packages/DistUpgrade/__pycache__"}, {"size": 1040, "name": "/usr/lib/python3/dist-packages/DistUpgrade"}, {"size": 28, "name": "/usr/lib/python3/dist-packages/jsonschema-2.6.0.egg-info"}, {"size": 16, "name": "/usr/lib/python3/dist-packages/ssh_import_id-5.7.egg-info"}, {"size": 48, "name": "/usr/lib/python3/dist-packages/aptsources/__pycache__"}, {"size": 112, "name": "/usr/lib/python3/dist-packages/aptsources"}, {"size": 20, "name": "/usr/lib/python3/dist-packages/requests_unixsocket-0.1.5.egg-info"}, {"size": 32, "name": "/usr/lib/python3/dist-packages/cryptography/__pycache__"}, {"size": 24, "name": "/usr/lib/python3/dist-packages/cryptography/hazmat/bindings/openssl/__pycache__"}, {"size": 48, "name": "/usr/lib/python3/dist-packages/cryptography/hazmat/bindings/openssl"}, {"size": 8, "name": "/usr/lib/python3/dist-packages/cryptography/hazmat/bindings/__pycache__"}, {"size": 1016, "name": "/usr/lib/python3/dist-packages/cryptography/hazmat/bindings"}, {"size": 8, "name": "/usr/lib/python3/dist-packages/cryptography/hazmat/__pycache__"}, {"size": 20, "name": "/usr/lib/python3/dist-packages/cryptography/hazmat/primitives/twofactor/__pycache__"}, {"size": 40, "name": "/usr/lib/python3/dist-packages/cryptography/hazmat/primitives/twofactor"}, {"size": 52, "name": "/usr/lib/python3/dist-packages/cryptography/hazmat/primitives/__pycache__"}, {"size": 68, "name": "/usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/__pycache__"}, {"size": 128, "name": "/usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric"}, {"size": 32, "name": "/usr/lib/python3/dist-packages/cryptography/hazmat/primitives/kdf/__pycache__"}, {"size": 72, "name": "/usr/lib/python3/dist-packages/cryptography/hazmat/primitives/kdf"}, {"size": 44, "name": "/usr/lib/python3/dist-packages/cryptography/hazmat/primitives/ciphers/__pycache__"}, {"size": 84, "name": "/usr/lib/python3/dist-packages/cryptography/hazmat/primitives/ciphers"}, {"size": 428, "name": "/usr/lib/python3/dist-packages/cryptography/hazmat/primitives"}, {"size": 200, "name": "/usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/__pycache__"}, {"size": 456, "name": "/usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl"}, {"size": 24, "name": "/usr/lib/python3/dist-packages/cryptography/hazmat/backends/__pycache__"}, {"size": 500, "name": "/usr/lib/python3/dist-packages/cryptography/hazmat/backends"}, {"size": 1960, "name": "/usr/lib/python3/dist-packages/cryptography/hazmat"}, {"size": 120, "name": "/usr/lib/python3/dist-packages/cryptography/x509/__pycache__"}, {"size": 236, "name": "/usr/lib/python3/dist-packages/cryptography/x509"}, {"size": 2260, "name": "/usr/lib/python3/dist-packages/cryptography"}, {"size": 284, "name": "/usr/lib/python3/dist-packages/idna/__pycache__"}, {"size": 540, "name": "/usr/lib/python3/dist-packages/idna"}, {"size": 16, "name": "/usr/lib/python3/dist-packages/serial/threaded/__pycache__"}, {"size": 32, "name": "/usr/lib/python3/dist-packages/serial/threaded"}, {"size": 80, "name": "/usr/lib/python3/dist-packages/serial/tools/__pycache__"}, {"size": 172, "name": "/usr/lib/python3/dist-packages/serial/tools"}, {"size": 124, "name": "/usr/lib/python3/dist-packages/serial/__pycache__"}, {"size": 56, "name": "/usr/lib/python3/dist-packages/serial/urlhandler/__pycache__"}, {"size": 116, "name": "/usr/lib/python3/dist-packages/serial/urlhandler"}, {"size": 628, "name": "/usr/lib/python3/dist-packages/serial"}, {"size": 148, "name": "/usr/lib/python3/dist-packages/gi/overrides/__pycache__"}, {"size": 332, "name": "/usr/lib/python3/dist-packages/gi/overrides"}, {"size": 8, "name": "/usr/lib/python3/dist-packages/gi/repository/__pycache__"}, {"size": 16, "name": "/usr/lib/python3/dist-packages/gi/repository"}, {"size": 80, "name": "/usr/lib/python3/dist-packages/gi/__pycache__"}, {"size": 852, "name": "/usr/lib/python3/dist-packages/gi"}, {"size": 12, "name": "/usr/lib/python3/dist-packages/urllib3/packages/ssl_match_hostname/__pycache__"}, {"size": 28, "name": "/usr/lib/python3/dist-packages/urllib3/packages/ssl_match_hostname"}, {"size": 20, "name": "/usr/lib/python3/dist-packages/urllib3/packages/__pycache__"}, {"size": 12, "name": "/usr/lib/python3/dist-packages/urllib3/packages/backports/__pycache__"}, {"size": 20, "name": "/usr/lib/python3/dist-packages/urllib3/packages/backports"}, {"size": 88, "name": "/usr/lib/python3/dist-packages/urllib3/packages"}, {"size": 120, "name": "/usr/lib/python3/dist-packages/urllib3/__pycache__"}, {"size": 88, "name": "/usr/lib/python3/dist-packages/urllib3/util/__pycache__"}, {"size": 192, "name": "/usr/lib/python3/dist-packages/urllib3/util"}, {"size": 28, "name": "/usr/lib/python3/dist-packages/urllib3/contrib/_securetransport/__pycache__"}, {"size": 64, "name": "/usr/lib/python3/dist-packages/urllib3/contrib/_securetransport"}, {"size": 68, "name": "/usr/lib/python3/dist-packages/urllib3/contrib/__pycache__"}, {"size": 212, "name": "/usr/lib/python3/dist-packages/urllib3/contrib"}, {"size": 756, "name": "/usr/lib/python3/dist-packages/urllib3"}, {"size": 16, "name": "/usr/lib/python3/dist-packages/python_debian-0.1.32.egg-info"}, {"size": 28, "name": "/usr/lib/python3/dist-packages/keyrings.alt-3.0.egg-info"}, {"size": 16, "name": "/usr/lib/python3/dist-packages/jsonpatch-1.16.egg-info"}, {"size": 16, "name": "/usr/lib/python3/dist-packages/asn1crypto-0.24.0.egg-info"}, {"size": 20, "name": "/usr/lib/python3/dist-packages/constantly-15.1.0.egg-info"}, {"size": 16, "name": "/usr/lib/python3/dist-packages/unattended_upgrades-0.1.egg-info"}, {"size": 36, "name": "/usr/lib/python3/dist-packages/attrs-17.4.0.egg-info"}, {"size": 56, "name": "/usr/lib/python3/dist-packages/urllib3-1.22.egg-info"}, {"size": 12, "name": "/usr/lib/python3/dist-packages/HweSupportStatus/__pycache__"}, {"size": 20, "name": "/usr/lib/python3/dist-packages/HweSupportStatus"}, {"size": 28, "name": "/usr/lib/python3/dist-packages/distro_info_test/__pycache__"}, {"size": 56, "name": "/usr/lib/python3/dist-packages/distro_info_test"}, {"size": 84, "name": "/usr/lib/python3/dist-packages/requests-2.18.4.egg-info"}, {"size": 56, "name": "/usr/lib/python3/dist-packages/pyasn1/codec/ber/__pycache__"}, {"size": 144, "name": "/usr/lib/python3/dist-packages/pyasn1/codec/ber"}, {"size": 8, "name": "/usr/lib/python3/dist-packages/pyasn1/codec/__pycache__"}, {"size": 16, "name": "/usr/lib/python3/dist-packages/pyasn1/codec/der/__pycache__"}, {"size": 32, "name": "/usr/lib/python3/dist-packages/pyasn1/codec/der"}, {"size": 20, "name": "/usr/lib/python3/dist-packages/pyasn1/codec/cer/__pycache__"}, {"size": 44, "name": "/usr/lib/python3/dist-packages/pyasn1/codec/cer"}, {"size": 24, "name": "/usr/lib/python3/dist-packages/pyasn1/codec/native/__pycache__"}, {"size": 48, "name": "/usr/lib/python3/dist-packages/pyasn1/codec/native"}, {"size": 284, "name": "/usr/lib/python3/dist-packages/pyasn1/codec"}, {"size": 208, "name": "/usr/lib/python3/dist-packages/pyasn1/type/__pycache__"}, {"size": 428, "name": "/usr/lib/python3/dist-packages/pyasn1/type"}, {"size": 32, "name": "/usr/lib/python3/dist-packages/pyasn1/compat/__pycache__"}, {"size": 64, "name": "/usr/lib/python3/dist-packages/pyasn1/compat"}, {"size": 16, "name": "/usr/lib/python3/dist-packages/pyasn1/__pycache__"}, {"size": 808, "name": "/usr/lib/python3/dist-packages/pyasn1"}, {"size": 16, "name": "/usr/lib/python3/dist-packages/click-6.7.egg-info"}, {"size": 12, "name": "/usr/lib/python3/dist-packages/asn1crypto/_perf/__pycache__"}, {"size": 20, "name": "/usr/lib/python3/dist-packages/asn1crypto/_perf"}, {"size": 440, "name": "/usr/lib/python3/dist-packages/asn1crypto/__pycache__"}, {"size": 988, "name": "/usr/lib/python3/dist-packages/asn1crypto"}, {"size": 84, "name": "/usr/lib/python3/dist-packages/pip/req/__pycache__"}, {"size": 196, "name": "/usr/lib/python3/dist-packages/pip/req"}, {"size": 92, "name": "/usr/lib/python3/dist-packages/pip/utils/__pycache__"}, {"size": 192, "name": "/usr/lib/python3/dist-packages/pip/utils"}, {"size": 16, "name": "/usr/lib/python3/dist-packages/pip/operations/__pycache__"}, {"size": 32, "name": "/usr/lib/python3/dist-packages/pip/operations"}, {"size": 12, "name": "/usr/lib/python3/dist-packages/pip/models/__pycache__"}, {"size": 24, "name": "/usr/lib/python3/dist-packages/pip/models"}, {"size": 24, "name": "/usr/lib/python3/dist-packages/pip/compat/__pycache__"}, {"size": 60, "name": "/usr/lib/python3/dist-packages/pip/compat"}, {"size": 160, "name": "/usr/lib/python3/dist-packages/pip/__pycache__"}, {"size": 44, "name": "/usr/lib/python3/dist-packages/pip/vcs/__pycache__"}, {"size": 96, "name": "/usr/lib/python3/dist-packages/pip/vcs"}, {"size": 88, "name": "/usr/lib/python3/dist-packages/pip/commands/__pycache__"}, {"size": 184, "name": "/usr/lib/python3/dist-packages/pip/commands"}, {"size": 8, "name": "/usr/lib/python3/dist-packages/pip/_vendor/__pycache__"}, {"size": 20, "name": "/usr/lib/python3/dist-packages/pip/_vendor"}, {"size": 1164, "name": "/usr/lib/python3/dist-packages/pip"}, {"size": 16, "name": "/usr/lib/python3/dist-packages/UpdateManager/__pycache__"}, {"size": 20, "name": "/usr/lib/python3/dist-packages/UpdateManager/backend/__pycache__"}, {"size": 48, "name": "/usr/lib/python3/dist-packages/UpdateManager/backend"}, {"size": 84, "name": "/usr/lib/python3/dist-packages/UpdateManager/Core/__pycache__"}, {"size": 188, "name": "/usr/lib/python3/dist-packages/UpdateManager/Core"}, {"size": 264, "name": "/usr/lib/python3/dist-packages/UpdateManager"}, {"size": 580, "name": "/usr/lib/python3/dist-packages/chardet/__pycache__"}, {"size": 12, "name": "/usr/lib/python3/dist-packages/chardet/cli/__pycache__"}, {"size": 24, "name": "/usr/lib/python3/dist-packages/chardet/cli"}, {"size": 1044, "name": "/usr/lib/python3/dist-packages/chardet"}, {"size": 172, "name": "/usr/lib/python3/dist-packages/yaml/__pycache__"}, {"size": 420, "name": "/usr/lib/python3/dist-packages/yaml"}, {"size": 44, "name": "/usr/lib/python3/dist-packages/zope.interface-4.3.2.egg-info"}, {"size": 232, "name": "/usr/lib/python3/dist-packages/click/__pycache__"}, {"size": 504, "name": "/usr/lib/python3/dist-packages/click"}, {"size": 8, "name": "/usr/lib/python3/dist-packages/pkg_resources/extern/__pycache__"}, {"size": 16, "name": "/usr/lib/python3/dist-packages/pkg_resources/extern"}, {"size": 104, "name": "/usr/lib/python3/dist-packages/pkg_resources/__pycache__"}, {"size": 72, "name": "/usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/__pycache__"}, {"size": 156, "name": "/usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging"}, {"size": 252, "name": "/usr/lib/python3/dist-packages/pkg_resources/_vendor/__pycache__"}, {"size": 696, "name": "/usr/lib/python3/dist-packages/pkg_resources/_vendor"}, {"size": 928, "name": "/usr/lib/python3/dist-packages/pkg_resources"}, {"size": 44, "name": "/usr/lib/python3/dist-packages/secretstorage/__pycache__"}, {"size": 88, "name": "/usr/lib/python3/dist-packages/secretstorage"}, {"size": 336, "name": "/usr/lib/python3/dist-packages/pyasn1_modules/__pycache__"}, {"size": 728, "name": "/usr/lib/python3/dist-packages/pyasn1_modules"}, {"size": 28, "name": "/usr/lib/python3/dist-packages/netifaces-0.10.4.egg-info"}, {"size": 48, "name": "/usr/lib/python3/dist-packages/automat/__pycache__"}, {"size": 80, "name": "/usr/lib/python3/dist-packages/automat/_test/__pycache__"}, {"size": 152, "name": "/usr/lib/python3/dist-packages/automat/_test"}, {"size": 248, "name": "/usr/lib/python3/dist-packages/automat"}, {"size": 20, "name": "/usr/lib/python3/dist-packages/chardet-3.0.4.egg-info"}, {"size": 88, "name": "/usr/lib/python3/dist-packages/twisted/words/im/__pycache__"}, {"size": 244, "name": "/usr/lib/python3/dist-packages/twisted/words/im"}, {"size": 100, "name": "/usr/lib/python3/dist-packages/twisted/words/xish/__pycache__"}, {"size": 224, "name": "/usr/lib/python3/dist-packages/twisted/words/xish"}, {"size": 72, "name": "/usr/lib/python3/dist-packages/twisted/words/__pycache__"}, {"size": 140, "name": "/usr/lib/python3/dist-packages/twisted/words/protocols/jabber/__pycache__"}, {"size": 276, "name": "/usr/lib/python3/dist-packages/twisted/words/protocols/jabber"}, {"size": 124, "name": "/usr/lib/python3/dist-packages/twisted/words/protocols/__pycache__"}, {"size": 532, "name": "/usr/lib/python3/dist-packages/twisted/words/protocols"}, {"size": 364, "name": "/usr/lib/python3/dist-packages/twisted/words/test/__pycache__"}, {"size": 724, "name": "/usr/lib/python3/dist-packages/twisted/words/test"}, {"size": 1868, "name": "/usr/lib/python3/dist-packages/twisted/words"}, {"size": 56, "name": "/usr/lib/python3/dist-packages/twisted/pair/__pycache__"}, {"size": 84, "name": "/usr/lib/python3/dist-packages/twisted/pair/test/__pycache__"}, {"size": 180, "name": "/usr/lib/python3/dist-packages/twisted/pair/test"}, {"size": 296, "name": "/usr/lib/python3/dist-packages/twisted/pair"}, {"size": 120, "name": "/usr/lib/python3/dist-packages/twisted/conch/insults/__pycache__"}, {"size": 228, "name": "/usr/lib/python3/dist-packages/twisted/conch/insults"}, {"size": 288, "name": "/usr/lib/python3/dist-packages/twisted/conch/ssh/__pycache__"}, {"size": 588, "name": "/usr/lib/python3/dist-packages/twisted/conch/ssh"}, {"size": 56, "name": "/usr/lib/python3/dist-packages/twisted/conch/client/__pycache__"}, {"size": 116, "name": "/usr/lib/python3/dist-packages/twisted/conch/client"}, {"size": 200, "name": "/usr/lib/python3/dist-packages/twisted/conch/__pycache__"}, {"size": 92, "name": "/usr/lib/python3/dist-packages/twisted/conch/scripts/__pycache__"}, {"size": 188, "name": "/usr/lib/python3/dist-packages/twisted/conch/scripts"}, {"size": 24, "name": "/usr/lib/python3/dist-packages/twisted/conch/ui/__pycache__"}, {"size": 48, "name": "/usr/lib/python3/dist-packages/twisted/conch/ui"}, {"size": 796, "name": "/usr/lib/python3/dist-packages/twisted/conch/test/__pycache__"}, {"size": 1596, "name": "/usr/lib/python3/dist-packages/twisted/conch/test"}, {"size": 16, "name": "/usr/lib/python3/dist-packages/twisted/conch/openssh_compat/__pycache__"}, {"size": 32, "name": "/usr/lib/python3/dist-packages/twisted/conch/openssh_compat"}, {"size": 3192, "name": "/usr/lib/python3/dist-packages/twisted/conch"}, {"size": 148, "name": "/usr/lib/python3/dist-packages/twisted/spread/__pycache__"}, {"size": 140, "name": "/usr/lib/python3/dist-packages/twisted/spread/test/__pycache__"}, {"size": 264, "name": "/usr/lib/python3/dist-packages/twisted/spread/test"}, {"size": 568, "name": "/usr/lib/python3/dist-packages/twisted/spread"}, {"size": 192, "name": "/usr/lib/python3/dist-packages/twisted/trial/__pycache__"}, {"size": 60, "name": "/usr/lib/python3/dist-packages/twisted/trial/_dist/__pycache__"}, {"size": 68, "name": "/usr/lib/python3/dist-packages/twisted/trial/_dist/test/__pycache__"}, {"size": 132, "name": "/usr/lib/python3/dist-packages/twisted/trial/_dist/test"}, {"size": 252, "name": "/usr/lib/python3/dist-packages/twisted/trial/_dist"}, {"size": 508, "name": "/usr/lib/python3/dist-packages/twisted/trial/test/__pycache__"}, {"size": 964, "name": "/usr/lib/python3/dist-packages/twisted/trial/test"}, {"size": 1600, "name": "/usr/lib/python3/dist-packages/twisted/trial"}, {"size": 16, "name": "/usr/lib/python3/dist-packages/twisted/python/_pydoctortemplates"}, {"size": 564, "name": "/usr/lib/python3/dist-packages/twisted/python/__pycache__"}, {"size": 428, "name": "/usr/lib/python3/dist-packages/twisted/python/test/__pycache__"}, {"size": 836, "name": "/usr/lib/python3/dist-packages/twisted/python/test"}, {"size": 2012, "name": "/usr/lib/python3/dist-packages/twisted/python"}, {"size": 76, "name": "/usr/lib/python3/dist-packages/twisted/plugins/__pycache__"}, {"size": 160, "name": "/usr/lib/python3/dist-packages/twisted/plugins"}, {"size": 76, "name": "/usr/lib/python3/dist-packages/twisted/internet/iocpreactor/__pycache__"}, {"size": 436, "name": "/usr/lib/python3/dist-packages/twisted/internet/iocpreactor/iocpsupport"}, {"size": 604, "name": "/usr/lib/python3/dist-packages/twisted/internet/iocpreactor"}, {"size": 908, "name": "/usr/lib/python3/dist-packages/twisted/internet/__pycache__"}, {"size": 720, "name": "/usr/lib/python3/dist-packages/twisted/internet/test/__pycache__"}, {"size": 24, "name": "/usr/lib/python3/dist-packages/twisted/internet/test/fake_CAs"}, {"size": 1452, "name": "/usr/lib/python3/dist-packages/twisted/internet/test"}, {"size": 3900, "name": "/usr/lib/python3/dist-packages/twisted/internet"}, {"size": 112, "name": "/usr/lib/python3/dist-packages/twisted/logger/__pycache__"}, {"size": 160, "name": "/usr/lib/python3/dist-packages/twisted/logger/test/__pycache__"}, {"size": 312, "name": "/usr/lib/python3/dist-packages/twisted/logger/test"}, {"size": 544, "name": "/usr/lib/python3/dist-packages/twisted/logger"}, {"size": 28, "name": "/usr/lib/python3/dist-packages/twisted/web/_auth/__pycache__"}, {"size": 56, "name": "/usr/lib/python3/dist-packages/twisted/web/_auth"}, {"size": 640, "name": "/usr/lib/python3/dist-packages/twisted/web/__pycache__"}, {"size": 1028, "name": "/usr/lib/python3/dist-packages/twisted/web/test/__pycache__"}, {"size": 2056, "name": "/usr/lib/python3/dist-packages/twisted/web/test"}, {"size": 3448, "name": "/usr/lib/python3/dist-packages/twisted/web"}, {"size": 92, "name": "/usr/lib/python3/dist-packages/twisted/positioning/__pycache__"}, {"size": 100, "name": "/usr/lib/python3/dist-packages/twisted/positioning/test/__pycache__"}, {"size": 192, "name": "/usr/lib/python3/dist-packages/twisted/positioning/test"}, {"size": 364, "name": "/usr/lib/python3/dist-packages/twisted/positioning"}, {"size": 28, "name": "/usr/lib/python3/dist-packages/twisted/__pycache__"}, {"size": 92, "name": "/usr/lib/python3/dist-packages/twisted/application/__pycache__"}, {"size": 20, "name": "/usr/lib/python3/dist-packages/twisted/application/twist/__pycache__"}, {"size": 28, "name": "/usr/lib/python3/dist-packages/twisted/application/twist/test/__pycache__"}, {"size": 56, "name": "/usr/lib/python3/dist-packages/twisted/application/twist/test"}, {"size": 96, "name": "/usr/lib/python3/dist-packages/twisted/application/twist"}, {"size": 32, "name": "/usr/lib/python3/dist-packages/twisted/application/runner/__pycache__"}, {"size": 44, "name": "/usr/lib/python3/dist-packages/twisted/application/runner/test/__pycache__"}, {"size": 88, "name": "/usr/lib/python3/dist-packages/twisted/application/runner/test"}, {"size": 148, "name": "/usr/lib/python3/dist-packages/twisted/application/runner"}, {"size": 48, "name": "/usr/lib/python3/dist-packages/twisted/application/test/__pycache__"}, {"size": 100, "name": "/usr/lib/python3/dist-packages/twisted/application/test"}, {"size": 524, "name": "/usr/lib/python3/dist-packages/twisted/application"}, {"size": 56, "name": "/usr/lib/python3/dist-packages/twisted/scripts/__pycache__"}, {"size": 16, "name": "/usr/lib/python3/dist-packages/twisted/scripts/test/__pycache__"}, {"size": 32, "name": "/usr/lib/python3/dist-packages/twisted/scripts/test"}, {"size": 148, "name": "/usr/lib/python3/dist-packages/twisted/scripts"}, {"size": 40, "name": "/usr/lib/python3/dist-packages/twisted/protocols/haproxy/__pycache__"}, {"size": 48, "name": "/usr/lib/python3/dist-packages/twisted/protocols/haproxy/test/__pycache__"}, {"size": 96, "name": "/usr/lib/python3/dist-packages/twisted/protocols/haproxy/test"}, {"size": 180, "name": "/usr/lib/python3/dist-packages/twisted/protocols/haproxy"}, {"size": 448, "name": "/usr/lib/python3/dist-packages/twisted/protocols/__pycache__"}, {"size": 120, "name": "/usr/lib/python3/dist-packages/twisted/protocols/test/__pycache__"}, {"size": 244, "name": "/usr/lib/python3/dist-packages/twisted/protocols/test"}, {"size": 1312, "name": "/usr/lib/python3/dist-packages/twisted/protocols"}, {"size": 40, "name": "/usr/lib/python3/dist-packages/twisted/runner/__pycache__"}, {"size": 36, "name": "/usr/lib/python3/dist-packages/twisted/runner/test/__pycache__"}, {"size": 72, "name": "/usr/lib/python3/dist-packages/twisted/runner/test"}, {"size": 152, "name": "/usr/lib/python3/dist-packages/twisted/runner"}, {"size": 60, "name": "/usr/lib/python3/dist-packages/twisted/cred/__pycache__"}, {"size": 84, "name": "/usr/lib/python3/dist-packages/twisted/cred/test/__pycache__"}, {"size": 164, "name": "/usr/lib/python3/dist-packages/twisted/cred/test"}, {"size": 292, "name": "/usr/lib/python3/dist-packages/twisted/cred"}, {"size": 36, "name": "/usr/lib/python3/dist-packages/twisted/_threads/__pycache__"}, {"size": 40, "name": "/usr/lib/python3/dist-packages/twisted/_threads/test/__pycache__"}, {"size": 76, "name": "/usr/lib/python3/dist-packages/twisted/_threads/test"}, {"size": 148, "name": "/usr/lib/python3/dist-packages/twisted/_threads"}, {"size": 64, "name": "/usr/lib/python3/dist-packages/twisted/persisted/__pycache__"}, {"size": 16, "name": "/usr/lib/python3/dist-packages/twisted/persisted/test/__pycache__"}, {"size": 28, "name": "/usr/lib/python3/dist-packages/twisted/persisted/test"}, {"size": 164, "name": "/usr/lib/python3/dist-packages/twisted/persisted"}, {"size": 1968, "name": "/usr/lib/python3/dist-packages/twisted/test/__pycache__"}, {"size": 3984, "name": "/usr/lib/python3/dist-packages/twisted/test"}, {"size": 324, "name": "/usr/lib/python3/dist-packages/twisted/mail/__pycache__"}, {"size": 344, "name": "/usr/lib/python3/dist-packages/twisted/mail/test/__pycache__"}, {"size": 680, "name": "/usr/lib/python3/dist-packages/twisted/mail/test"}, {"size": 1336, "name": "/usr/lib/python3/dist-packages/twisted/mail"}, {"size": 24, "name": "/usr/lib/python3/dist-packages/twisted/enterprise/__pycache__"}, {"size": 52, "name": "/usr/lib/python3/dist-packages/twisted/enterprise"}, {"size": 20, "name": "/usr/lib/python3/dist-packages/twisted/tap/__pycache__"}, {"size": 40, "name": "/usr/lib/python3/dist-packages/twisted/tap"}, {"size": 244, "name": "/usr/lib/python3/dist-packages/twisted/names/__pycache__"}, {"size": 396, "name": "/usr/lib/python3/dist-packages/twisted/names/test/__pycache__"}, {"size": 792, "name": "/usr/lib/python3/dist-packages/twisted/names/test"}, {"size": 1288, "name": "/usr/lib/python3/dist-packages/twisted/names"}, {"size": 27452, "name": "/usr/lib/python3/dist-packages/twisted"}, {"size": 60, "name": "/usr/lib/python3/dist-packages/landscape/sysinfo/__pycache__"}, {"size": 120, "name": "/usr/lib/python3/dist-packages/landscape/sysinfo"}, {"size": 28, "name": "/usr/lib/python3/dist-packages/landscape/message_schemas/__pycache__"}, {"size": 64, "name": "/usr/lib/python3/dist-packages/landscape/message_schemas"}, {"size": 12, "name": "/usr/lib/python3/dist-packages/landscape/__pycache__"}, {"size": 88, "name": "/usr/lib/python3/dist-packages/landscape/lib/apt/package/__pycache__"}, {"size": 172, "name": "/usr/lib/python3/dist-packages/landscape/lib/apt/package"}, {"size": 8, "name": "/usr/lib/python3/dist-packages/landscape/lib/apt/__pycache__"}, {"size": 184, "name": "/usr/lib/python3/dist-packages/landscape/lib/apt"}, {"size": 288, "name": "/usr/lib/python3/dist-packages/landscape/lib/__pycache__"}, {"size": 772, "name": "/usr/lib/python3/dist-packages/landscape/lib"}, {"size": 980, "name": "/usr/lib/python3/dist-packages/landscape"}, {"size": 24, "name": "/usr/lib/python3/dist-packages/MarkupSafe-1.0.egg-info"}, {"size": 24, "name": "/usr/lib/python3/dist-packages/SecretStorage-2.3.1.egg-info"}, {"size": 164, "name": "/usr/lib/python3/dist-packages/debian/__pycache__"}, {"size": 360, "name": "/usr/lib/python3/dist-packages/debian"}, {"size": 36, "name": "/usr/lib/python3/dist-packages/systemd/__pycache__"}, {"size": 32, "name": "/usr/lib/python3/dist-packages/systemd/test/__pycache__"}, {"size": 64, "name": "/usr/lib/python3/dist-packages/systemd/test"}, {"size": 252, "name": "/usr/lib/python3/dist-packages/systemd"}, {"size": 148, "name": "/usr/lib/python3/dist-packages/ufw/__pycache__"}, {"size": 372, "name": "/usr/lib/python3/dist-packages/ufw"}, {"size": 28, "name": "/usr/lib/python3/dist-packages/Jinja2-2.10.egg-info"}, {"size": 20, "name": "/usr/lib/python3/dist-packages/Crypto/Random/OSRNG/__pycache__"}, {"size": 40, "name": "/usr/lib/python3/dist-packages/Crypto/Random/OSRNG"}, {"size": 20, "name": "/usr/lib/python3/dist-packages/Crypto/Random/__pycache__"}, {"size": 24, "name": "/usr/lib/python3/dist-packages/Crypto/Random/Fortuna/__pycache__"}, {"size": 48, "name": "/usr/lib/python3/dist-packages/Crypto/Random/Fortuna"}, {"size": 132, "name": "/usr/lib/python3/dist-packages/Crypto/Random"}, {"size": 28, "name": "/usr/lib/python3/dist-packages/Crypto/Signature/__pycache__"}, {"size": 60, "name": "/usr/lib/python3/dist-packages/Crypto/Signature"}, {"size": 68, "name": "/usr/lib/python3/dist-packages/Crypto/Cipher/__pycache__"}, {"size": 436, "name": "/usr/lib/python3/dist-packages/Crypto/Cipher"}, {"size": 56, "name": "/usr/lib/python3/dist-packages/Crypto/Hash/__pycache__"}, {"size": 228, "name": "/usr/lib/python3/dist-packages/Crypto/Hash"}, {"size": 176, "name": "/usr/lib/python3/dist-packages/Crypto/Util/__pycache__"}, {"size": 372, "name": "/usr/lib/python3/dist-packages/Crypto/Util"}, {"size": 32, "name": "/usr/lib/python3/dist-packages/Crypto/Protocol/__pycache__"}, {"size": 72, "name": "/usr/lib/python3/dist-packages/Crypto/Protocol"}, {"size": 28, "name": "/usr/lib/python3/dist-packages/Crypto/SelfTest/Random/OSRNG/__pycache__"}, {"size": 56, "name": "/usr/lib/python3/dist-packages/Crypto/SelfTest/Random/OSRNG"}, {"size": 20, "name": "/usr/lib/python3/dist-packages/Crypto/SelfTest/Random/__pycache__"}, {"size": 24, "name": "/usr/lib/python3/dist-packages/Crypto/SelfTest/Random/Fortuna/__pycache__"}, {"size": 52, "name": "/usr/lib/python3/dist-packages/Crypto/SelfTest/Random/Fortuna"}, {"size": 156, "name": "/usr/lib/python3/dist-packages/Crypto/SelfTest/Random"}, {"size": 32, "name": "/usr/lib/python3/dist-packages/Crypto/SelfTest/Signature/__pycache__"}, {"size": 76, "name": "/usr/lib/python3/dist-packages/Crypto/SelfTest/Signature"}, {"size": 172, "name": "/usr/lib/python3/dist-packages/Crypto/SelfTest/Cipher/__pycache__"}, {"size": 368, "name": "/usr/lib/python3/dist-packages/Crypto/SelfTest/Cipher"}, {"size": 60, "name": "/usr/lib/python3/dist-packages/Crypto/SelfTest/Hash/__pycache__"}, {"size": 124, "name": "/usr/lib/python3/dist-packages/Crypto/SelfTest/Hash"}, {"size": 36, "name": "/usr/lib/python3/dist-packages/Crypto/SelfTest/Util/__pycache__"}, {"size": 84, "name": "/usr/lib/python3/dist-packages/Crypto/SelfTest/Util"}, {"size": 24, "name": "/usr/lib/python3/dist-packages/Crypto/SelfTest/Protocol/__pycache__"}, {"size": 48, "name": "/usr/lib/python3/dist-packages/Crypto/SelfTest/Protocol"}, {"size": 12, "name": "/usr/lib/python3/dist-packages/Crypto/SelfTest/__pycache__"}, {"size": 60, "name": "/usr/lib/python3/dist-packages/Crypto/SelfTest/PublicKey/__pycache__"}, {"size": 128, "name": "/usr/lib/python3/dist-packages/Crypto/SelfTest/PublicKey"}, {"size": 1008, "name": "/usr/lib/python3/dist-packages/Crypto/SelfTest"}, {"size": 12, "name": "/usr/lib/python3/dist-packages/Crypto/__pycache__"}, {"size": 84, "name": "/usr/lib/python3/dist-packages/Crypto/PublicKey/__pycache__"}, {"size": 260, "name": "/usr/lib/python3/dist-packages/Crypto/PublicKey"}, {"size": 2592, "name": "/usr/lib/python3/dist-packages/Crypto"}, {"size": 28, "name": "/usr/lib/python3/dist-packages/pip-9.0.1.egg-info"}, {"size": 292, "name": "/usr/lib/python3/dist-packages/__pycache__"}, {"size": 28, "name": "/usr/lib/python3/dist-packages/service_identity-16.0.0.egg-info"}, {"size": 52, "name": "/usr/lib/python3/dist-packages/LanguageSelector/__pycache__"}, {"size": 112, "name": "/usr/lib/python3/dist-packages/LanguageSelector"}, {"size": 152, "name": "/usr/lib/python3/dist-packages/xdg/__pycache__"}, {"size": 320, "name": "/usr/lib/python3/dist-packages/xdg"}, {"size": 40, "name": "/usr/lib/python3/dist-packages/keyring-10.6.0.egg-info"}, {"size": 16, "name": "/usr/lib/python3/dist-packages/distro_info-0.18ubuntu0.18.04.1.egg-info"}, {"size": 20, "name": "/usr/lib/python3/dist-packages/configobj-5.0.6.egg-info"}, {"size": 28, "name": "/usr/lib/python3/dist-packages/cloudinit/cmd/devel/__pycache__"}, {"size": 60, "name": "/usr/lib/python3/dist-packages/cloudinit/cmd/devel"}, {"size": 52, "name": "/usr/lib/python3/dist-packages/cloudinit/cmd/__pycache__"}, {"size": 176, "name": "/usr/lib/python3/dist-packages/cloudinit/cmd"}, {"size": 116, "name": "/usr/lib/python3/dist-packages/cloudinit/distros/__pycache__"}, {"size": 32, "name": "/usr/lib/python3/dist-packages/cloudinit/distros/parsers/__pycache__"}, {"size": 64, "name": "/usr/lib/python3/dist-packages/cloudinit/distros/parsers"}, {"size": 328, "name": "/usr/lib/python3/dist-packages/cloudinit/distros"}, {"size": 136, "name": "/usr/lib/python3/dist-packages/cloudinit/net/__pycache__"}, {"size": 304, "name": "/usr/lib/python3/dist-packages/cloudinit/net"}, {"size": 404, "name": "/usr/lib/python3/dist-packages/cloudinit/config/__pycache__"}, {"size": 900, "name": "/usr/lib/python3/dist-packages/cloudinit/config"}, {"size": 28, "name": "/usr/lib/python3/dist-packages/cloudinit/reporting/__pycache__"}, {"size": 60, "name": "/usr/lib/python3/dist-packages/cloudinit/reporting"}, {"size": 12, "name": "/usr/lib/python3/dist-packages/cloudinit/filters/__pycache__"}, {"size": 20, "name": "/usr/lib/python3/dist-packages/cloudinit/filters"}, {"size": 268, "name": "/usr/lib/python3/dist-packages/cloudinit/__pycache__"}, {"size": 64, "name": "/usr/lib/python3/dist-packages/cloudinit/sources/helpers/__pycache__"}, {"size": 8, "name": "/usr/lib/python3/dist-packages/cloudinit/sources/helpers/vmware/__pycache__"}, {"size": 84, "name": "/usr/lib/python3/dist-packages/cloudinit/sources/helpers/vmware/imc/__pycache__"}, {"size": 160, "name": "/usr/lib/python3/dist-packages/cloudinit/sources/helpers/vmware/imc"}, {"size": 172, "name": "/usr/lib/python3/dist-packages/cloudinit/sources/helpers/vmware"}, {"size": 308, "name": "/usr/lib/python3/dist-packages/cloudinit/sources/helpers"}, {"size": 264, "name": "/usr/lib/python3/dist-packages/cloudinit/sources/__pycache__"}, {"size": 916, "name": "/usr/lib/python3/dist-packages/cloudinit/sources"}, {"size": 20, "name": "/usr/lib/python3/dist-packages/cloudinit/mergers/__pycache__"}, {"size": 44, "name": "/usr/lib/python3/dist-packages/cloudinit/mergers"}, {"size": 36, "name": "/usr/lib/python3/dist-packages/cloudinit/handlers/__pycache__"}, {"size": 80, "name": "/usr/lib/python3/dist-packages/cloudinit/handlers"}, {"size": 28, "name": "/usr/lib/python3/dist-packages/cloudinit/analyze/__pycache__"}, {"size": 56, "name": "/usr/lib/python3/dist-packages/cloudinit/analyze"}, {"size": 3476, "name": "/usr/lib/python3/dist-packages/cloudinit"}, {"size": 32, "name": "/usr/lib/python3/dist-packages/service_identity/__pycache__"}, {"size": 64, "name": "/usr/lib/python3/dist-packages/service_identity"}, {"size": 20, "name": "/usr/lib/python3/dist-packages/keyring/tests/__pycache__"}, {"size": 24, "name": "/usr/lib/python3/dist-packages/keyring/tests/backends/__pycache__"}, {"size": 44, "name": "/usr/lib/python3/dist-packages/keyring/tests/backends"}, {"size": 84, "name": "/usr/lib/python3/dist-packages/keyring/tests"}, {"size": 60, "name": "/usr/lib/python3/dist-packages/keyring/__pycache__"}, {"size": 20, "name": "/usr/lib/python3/dist-packages/keyring/util/__pycache__"}, {"size": 40, "name": "/usr/lib/python3/dist-packages/keyring/util"}, {"size": 44, "name": "/usr/lib/python3/dist-packages/keyring/backends/__pycache__"}, {"size": 88, "name": "/usr/lib/python3/dist-packages/keyring/backends"}, {"size": 328, "name": "/usr/lib/python3/dist-packages/keyring"}, {"size": 20, "name": "/usr/lib/python3/dist-packages/language_selector-0.1.egg-info"}, {"size": 72, "name": "/usr/lib/python3/dist-packages/keyrings/alt/__pycache__"}, {"size": 148, "name": "/usr/lib/python3/dist-packages/keyrings/alt"}, {"size": 152, "name": "/usr/lib/python3/dist-packages/keyrings"}, {"size": 92, "name": "/usr/lib/python3/dist-packages/attr/__pycache__"}, {"size": 192, "name": "/usr/lib/python3/dist-packages/attr"}, {"size": 52, "name": "/usr/lib/python3/dist-packages/jwt/__pycache__"}, {"size": 16, "name": "/usr/lib/python3/dist-packages/jwt/contrib/algorithms/__pycache__"}, {"size": 28, "name": "/usr/lib/python3/dist-packages/jwt/contrib/algorithms"}, {"size": 8, "name": "/usr/lib/python3/dist-packages/jwt/contrib/__pycache__"}, {"size": 40, "name": "/usr/lib/python3/dist-packages/jwt/contrib"}, {"size": 152, "name": "/usr/lib/python3/dist-packages/jwt"}, {"size": 56, "name": "/usr/lib/python3/dist-packages/incremental/tests/__pycache__"}, {"size": 108, "name": "/usr/lib/python3/dist-packages/incremental/tests"}, {"size": 28, "name": "/usr/lib/python3/dist-packages/incremental/__pycache__"}, {"size": 168, "name": "/usr/lib/python3/dist-packages/incremental"}, {"size": 52, "name": "/usr/lib/python3/dist-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__"}, {"size": 120, "name": "/usr/lib/python3/dist-packages/oauthlib/oauth1/rfc5849/endpoints"}, {"size": 80, "name": "/usr/lib/python3/dist-packages/oauthlib/oauth1/rfc5849/__pycache__"}, {"size": 292, "name": "/usr/lib/python3/dist-packages/oauthlib/oauth1/rfc5849"}, {"size": 8, "name": "/usr/lib/python3/dist-packages/oauthlib/oauth1/__pycache__"}, {"size": 308, "name": "/usr/lib/python3/dist-packages/oauthlib/oauth1"}, {"size": 8, "name": "/usr/lib/python3/dist-packages/oauthlib/oauth2/__pycache__"}, {"size": 92, "name": "/usr/lib/python3/dist-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__"}, {"size": 200, "name": "/usr/lib/python3/dist-packages/oauthlib/oauth2/rfc6749/grant_types"}, {"size": 68, "name": "/usr/lib/python3/dist-packages/oauthlib/oauth2/rfc6749/clients/__pycache__"}, {"size": 136, "name": "/usr/lib/python3/dist-packages/oauthlib/oauth2/rfc6749/clients"}, {"size": 52, "name": "/usr/lib/python3/dist-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__"}, {"size": 108, "name": "/usr/lib/python3/dist-packages/oauthlib/oauth2/rfc6749/endpoints"}, {"size": 84, "name": "/usr/lib/python3/dist-packages/oauthlib/oauth2/rfc6749/__pycache__"}, {"size": 608, "name": "/usr/lib/python3/dist-packages/oauthlib/oauth2/rfc6749"}, {"size": 624, "name": "/usr/lib/python3/dist-packages/oauthlib/oauth2"}, {"size": 36, "name": "/usr/lib/python3/dist-packages/oauthlib/__pycache__"}, {"size": 1004, "name": "/usr/lib/python3/dist-packages/oauthlib"}, {"size": 8, "name": "/usr/lib/python3/dist-packages/janitor/__pycache__"}, {"size": 36, "name": "/usr/lib/python3/dist-packages/janitor/plugincore/__pycache__"}, {"size": 72, "name": "/usr/lib/python3/dist-packages/janitor/plugincore"}, {"size": 88, "name": "/usr/lib/python3/dist-packages/janitor"}, {"size": 40, "name": "/usr/lib/python3/dist-packages/wheel-0.30.0.egg-info"}, {"size": 28, "name": "/usr/lib/python3/dist-packages/colorama-0.3.7.egg-info"}, {"size": 16, "name": "/usr/lib/python3/dist-packages/jsonpointer-1.10.egg-info"}, {"size": 40, "name": "/usr/lib/python3/dist-packages/blinker/__pycache__"}, {"size": 84, "name": "/usr/lib/python3/dist-packages/blinker"}, {"size": 80, "name": "/usr/lib/python3/dist-packages/apport/crashdb_impl/__pycache__"}, {"size": 188, "name": "/usr/lib/python3/dist-packages/apport/crashdb_impl"}, {"size": 236, "name": "/usr/lib/python3/dist-packages/apport/__pycache__"}, {"size": 756, "name": "/usr/lib/python3/dist-packages/apport"}, {"size": 20, "name": "/usr/lib/python3/dist-packages/certifi-2018.1.18.egg-info"}, {"size": 44, "name": "/usr/lib/python3/dist-packages/pygtkcompat/__pycache__"}, {"size": 88, "name": "/usr/lib/python3/dist-packages/pygtkcompat"}, {"size": 24, "name": "/usr/lib/python3/dist-packages/setuptools-39.0.1.egg-info"}, {"size": 36, "name": "/usr/lib/python3/dist-packages/colorama/__pycache__"}, {"size": 80, "name": "/usr/lib/python3/dist-packages/colorama"}, {"size": 24, "name": "/usr/lib/python3/dist-packages/pyOpenSSL-17.5.0.egg-info"}, {"size": 20, "name": "/usr/lib/python3/dist-packages/pyasn1-0.4.2.egg-info"}, {"size": 140, "name": "/usr/lib/python3/dist-packages/dbus/__pycache__"}, {"size": 12, "name": "/usr/lib/python3/dist-packages/dbus/mainloop/__pycache__"}, {"size": 24, "name": "/usr/lib/python3/dist-packages/dbus/mainloop"}, {"size": 352, "name": "/usr/lib/python3/dist-packages/dbus"}, {"size": 432, "name": "/usr/lib/python3/dist-packages/jinja2/__pycache__"}, {"size": 916, "name": "/usr/lib/python3/dist-packages/jinja2"}, {"size": 8, "name": "/usr/lib/python3/dist-packages/debian_bundle/__pycache__"}, {"size": 16, "name": "/usr/lib/python3/dist-packages/debian_bundle"}, {"size": 20, "name": "/usr/lib/python3/dist-packages/zope/interface/common/tests/__pycache__"}, {"size": 40, "name": "/usr/lib/python3/dist-packages/zope/interface/common/tests"}, {"size": 56, "name": "/usr/lib/python3/dist-packages/zope/interface/common/__pycache__"}, {"size": 144, "name": "/usr/lib/python3/dist-packages/zope/interface/common"}, {"size": 496, "name": "/usr/lib/python3/dist-packages/zope/interface/tests/__pycache__"}, {"size": 900, "name": "/usr/lib/python3/dist-packages/zope/interface/tests"}, {"size": 176, "name": "/usr/lib/python3/dist-packages/zope/interface/__pycache__"}, {"size": 1440, "name": "/usr/lib/python3/dist-packages/zope/interface"}, {"size": 8, "name": "/usr/lib/python3/dist-packages/zope/__pycache__"}, {"size": 1456, "name": "/usr/lib/python3/dist-packages/zope"}, {"size": 16, "name": "/usr/lib/python3/dist-packages/certifi/__pycache__"}, {"size": 300, "name": "/usr/lib/python3/dist-packages/certifi"}, {"size": 92, "name": "/usr/lib/python3/dist-packages/softwareproperties/__pycache__"}, {"size": 24, "name": "/usr/lib/python3/dist-packages/softwareproperties/dbus/__pycache__"}, {"size": 48, "name": "/usr/lib/python3/dist-packages/softwareproperties/dbus"}, {"size": 252, "name": "/usr/lib/python3/dist-packages/softwareproperties"}, {"size": 63268, "name": "/usr/lib/python3/dist-packages"}, {"size": 63272, "name": "/usr/lib/python3"}, {"size": 20028, "name": "/usr/lib/lxd"}, {"size": 4, "name": "/usr/lib/binfmt.d"}, {"size": 3364, "name": "/usr/lib/grub/i386-pc"}, {"size": 3368, "name": "/usr/lib/grub"}, {"size": 128, "name": "/usr/lib/tc"}, {"size": 12, "name": "/usr/lib/x86_64-linux-gnu/pkgconfig"}, {"size": 68, "name": "/usr/lib/x86_64-linux-gnu/perl5/5.26/File/FcntlLock"}, {"size": 88, "name": "/usr/lib/x86_64-linux-gnu/perl5/5.26/File"}, {"size": 12, "name": "/usr/lib/x86_64-linux-gnu/perl5/5.26/Locale"}, {"size": 16, "name": "/usr/lib/x86_64-linux-gnu/perl5/5.26/Text"}, {"size": 8, "name": "/usr/lib/x86_64-linux-gnu/perl5/5.26/Algorithm/Diff"}, {"size": 12, "name": "/usr/lib/x86_64-linux-gnu/perl5/5.26/Algorithm"}, {"size": 16, "name": "/usr/lib/x86_64-linux-gnu/perl5/5.26/auto/File/FcntlLock"}, {"size": 20, "name": "/usr/lib/x86_64-linux-gnu/perl5/5.26/auto/File"}, {"size": 24, "name": "/usr/lib/x86_64-linux-gnu/perl5/5.26/auto/Locale/gettext"}, {"size": 28, "name": "/usr/lib/x86_64-linux-gnu/perl5/5.26/auto/Locale"}, {"size": 16, "name": "/usr/lib/x86_64-linux-gnu/perl5/5.26/auto/Text/CharWidth"}, {"size": 28, "name": "/usr/lib/x86_64-linux-gnu/perl5/5.26/auto/Text/Iconv"}, {"size": 48, "name": "/usr/lib/x86_64-linux-gnu/perl5/5.26/auto/Text"}, {"size": 20, "name": "/usr/lib/x86_64-linux-gnu/perl5/5.26/auto/Algorithm/Diff/XS"}, {"size": 24, "name": "/usr/lib/x86_64-linux-gnu/perl5/5.26/auto/Algorithm/Diff"}, {"size": 28, "name": "/usr/lib/x86_64-linux-gnu/perl5/5.26/auto/Algorithm"}, {"size": 128, "name": "/usr/lib/x86_64-linux-gnu/perl5/5.26/auto"}, {"size": 260, "name": "/usr/lib/x86_64-linux-gnu/perl5/5.26"}, {"size": 264, "name": "/usr/lib/x86_64-linux-gnu/perl5"}, {"size": 20, "name": "/usr/lib/x86_64-linux-gnu/awk"}, {"size": 4, "name": "/usr/lib/x86_64-linux-gnu/krb5/plugins/libkrb5"}, {"size": 8, "name": "/usr/lib/x86_64-linux-gnu/krb5/plugins"}, {"size": 12, "name": "/usr/lib/x86_64-linux-gnu/krb5"}, {"size": 208, "name": "/usr/lib/x86_64-linux-gnu/sasl2"}, {"size": 16, "name": "/usr/lib/x86_64-linux-gnu/lxc/hooks"}, {"size": 212, "name": "/usr/lib/x86_64-linux-gnu/lxc"}, {"size": 688, "name": "/usr/lib/x86_64-linux-gnu/rsyslog"}, {"size": 72, "name": "/usr/lib/x86_64-linux-gnu/lxcfs"}, {"size": 6568, "name": "/usr/lib/x86_64-linux-gnu/gconv"}, {"size": 280, "name": "/usr/lib/x86_64-linux-gnu/openssl-1.0.0/engines"}, {"size": 284, "name": "/usr/lib/x86_64-linux-gnu/openssl-1.0.0"}, {"size": 616, "name": "/usr/lib/x86_64-linux-gnu/girepository-1.0"}, {"size": 60, "name": "/usr/lib/x86_64-linux-gnu/glib-2.0"}, {"size": 12, "name": "/usr/lib/x86_64-linux-gnu/coreutils"}, {"size": 108, "name": "/usr/lib/x86_64-linux-gnu/libfakeroot"}, {"size": 16, "name": "/usr/lib/x86_64-linux-gnu/perl-base/File/Spec"}, {"size": 104, "name": "/usr/lib/x86_64-linux-gnu/perl-base/File"}, {"size": 8, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Blk"}, {"size": 12, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CWU"}, {"size": 12, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CI"}, {"size": 8, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dia"}, {"size": 44, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc"}, {"size": 72, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg"}, {"size": 8, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CE"}, {"size": 44, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB"}, {"size": 184, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx"}, {"size": 180, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc"}, {"size": 60, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc"}, {"size": 8, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dep"}, {"size": 8, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Cased"}, {"size": 60, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt"}, {"size": 12, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CWCF"}, {"size": 8, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Math"}, {"size": 8, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Hex"}, {"size": 72, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age"}, {"size": 60, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB"}, {"size": 8, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Hyphen"}, {"size": 8, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/UIdeo"}, {"size": 8, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/QMark"}, {"size": 12, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFKCQC"}, {"size": 8, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/BidiM"}, {"size": 156, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc"}, {"size": 88, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC"}, {"size": 16, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CWKCF"}, {"size": 20, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFKDQC"}, {"size": 8, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dash"}, {"size": 8, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/PatSyn"}, {"size": 8, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/BidiC"}, {"size": 200, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv"}, {"size": 12, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/XIDS"}, {"size": 52, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC"}, {"size": 12, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/XIDC"}, {"size": 12, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lower"}, {"size": 8, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ext"}, {"size": 8, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/PCM"}, {"size": 8, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Hst"}, {"size": 16, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GrBase"}, {"size": 12, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/IDC"}, {"size": 24, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ea"}, {"size": 132, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In"}, {"size": 132, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl"}, {"size": 8, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/STerm"}, {"size": 8, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CompEx"}, {"size": 12, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CWL"}, {"size": 8, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Term"}, {"size": 24, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jt"}, {"size": 12, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Alpha"}, {"size": 8, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CWCM"}, {"size": 12, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFCQC"}, {"size": 72, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB"}, {"size": 12, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Upper"}, {"size": 16, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nt"}, {"size": 96, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb"}, {"size": 16, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bpt"}, {"size": 8, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/DI"}, {"size": 12, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/IDS"}, {"size": 8, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SD"}, {"size": 12, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFDQC"}, {"size": 12, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CWT"}, {"size": 8, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ideo"}, {"size": 2212, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib"}, {"size": 992, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To"}, {"size": 3340, "name": "/usr/lib/x86_64-linux-gnu/perl-base/unicore"}, {"size": 8, "name": "/usr/lib/x86_64-linux-gnu/perl-base/Scalar"}, {"size": 40, "name": "/usr/lib/x86_64-linux-gnu/perl-base/IO/Socket"}, {"size": 88, "name": "/usr/lib/x86_64-linux-gnu/perl-base/IO"}, {"size": 8, "name": "/usr/lib/x86_64-linux-gnu/perl-base/Carp"}, {"size": 20, "name": "/usr/lib/x86_64-linux-gnu/perl-base/IPC"}, {"size": 16, "name": "/usr/lib/x86_64-linux-gnu/perl-base/Hash"}, {"size": 20, "name": "/usr/lib/x86_64-linux-gnu/perl-base/Text"}, {"size": 12, "name": "/usr/lib/x86_64-linux-gnu/perl-base/Exporter"}, {"size": 8, "name": "/usr/lib/x86_64-linux-gnu/perl-base/warnings"}, {"size": 48, "name": "/usr/lib/x86_64-linux-gnu/perl-base/Getopt"}, {"size": 8, "name": "/usr/lib/x86_64-linux-gnu/perl-base/Tie"}, {"size": 536, "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/re"}, {"size": 32, "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/File/Glob"}, {"size": 36, "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/File"}, {"size": 20, "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/Cwd"}, {"size": 24, "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/IO"}, {"size": 24, "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/Fcntl"}, {"size": 48, "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/Socket"}, {"size": 24, "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/Hash/Util"}, {"size": 28, "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/Hash"}, {"size": 108, "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/POSIX"}, {"size": 52, "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/List/Util"}, {"size": 56, "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/List"}, {"size": 16, "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto/attributes"}, {"size": 900, "name": "/usr/lib/x86_64-linux-gnu/perl-base/auto"}, {"size": 8, "name": "/usr/lib/x86_64-linux-gnu/perl-base/List"}, {"size": 4944, "name": "/usr/lib/x86_64-linux-gnu/perl-base"}, {"size": 16, "name": "/usr/lib/x86_64-linux-gnu/polkit-1/extensions"}, {"size": 20, "name": "/usr/lib/x86_64-linux-gnu/polkit-1"}, {"size": 16, "name": "/usr/lib/x86_64-linux-gnu/utempter"}, {"size": 16, "name": "/usr/lib/x86_64-linux-gnu/audit"}, {"size": 1352, "name": "/usr/lib/x86_64-linux-gnu/xtables"}, {"size": 44, "name": "/usr/lib/x86_64-linux-gnu/engines-1.1"}, {"size": 440, "name": "/usr/lib/x86_64-linux-gnu/blas"}, {"size": 60, "name": "/usr/lib/x86_64-linux-gnu/plymouth/renderers"}, {"size": 232, "name": "/usr/lib/x86_64-linux-gnu/plymouth"}, {"size": 180, "name": "/usr/lib/x86_64-linux-gnu/gawk"}, {"size": 1692, "name": "/usr/lib/x86_64-linux-gnu/ldscripts"}, {"size": 4, "name": "/usr/lib/x86_64-linux-gnu/perl/cross-config-5.26.1"}, {"size": 52, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/Data"}, {"size": 24, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/PerlIO"}, {"size": 3464, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/CORE"}, {"size": 92, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/File/Spec"}, {"size": 112, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/File"}, {"size": 72, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/sys"}, {"size": 8, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/Scalar"}, {"size": 16, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/linux"}, {"size": 12, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/Math/BigInt"}, {"size": 16, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/Math"}, {"size": 16, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/IO/Socket"}, {"size": 80, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/IO"}, {"size": 52, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/asm-generic"}, {"size": 8, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/Encode/KR"}, {"size": 12, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/Encode/CN"}, {"size": 8, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/Encode/Unicode"}, {"size": 8, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/Encode/MIME/Header"}, {"size": 36, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/Encode/MIME"}, {"size": 20, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/Encode/JP"}, {"size": 200, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/Encode"}, {"size": 12, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/gnu"}, {"size": 76, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/bits/types"}, {"size": 312, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/bits"}, {"size": 56, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/Sys"}, {"size": 36, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/IPC"}, {"size": 92, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/B"}, {"size": 40, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/Digest"}, {"size": 136, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/asm"}, {"size": 8, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/I18N"}, {"size": 36, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/Hash/Util"}, {"size": 52, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/Hash"}, {"size": 12, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/Sub"}, {"size": 64, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/Compress/Raw"}, {"size": 68, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/Compress"}, {"size": 24, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/Unicode/Collate"}, {"size": 112, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/Unicode"}, {"size": 60, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/Time"}, {"size": 248, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/Devel"}, {"size": 8, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/Tie/Hash"}, {"size": 12, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/Tie"}, {"size": 16, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/MIME"}, {"size": 20, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/Filter/Util"}, {"size": 24, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/Filter"}, {"size": 536, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/re"}, {"size": 44, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Data/Dumper"}, {"size": 48, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Data"}, {"size": 24, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/ODBM_File"}, {"size": 24, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/mro"}, {"size": 20, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/PerlIO/scalar"}, {"size": 16, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/PerlIO/mmap"}, {"size": 32, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/PerlIO/encoding"}, {"size": 24, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/PerlIO/via"}, {"size": 96, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/PerlIO"}, {"size": 32, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/File/Glob"}, {"size": 12, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/File/DosGlob"}, {"size": 48, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/File"}, {"size": 20, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Cwd"}, {"size": 20, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Math/BigInt/FastCalc"}, {"size": 24, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Math/BigInt"}, {"size": 28, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Math"}, {"size": 24, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/IO"}, {"size": 2360, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Encode/KR"}, {"size": 48, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Encode/EBCDIC"}, {"size": 364, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Encode/Byte"}, {"size": 60, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Encode/Symbol"}, {"size": 2048, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Encode/CN"}, {"size": 1980, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Encode/TW"}, {"size": 24, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Encode/Unicode"}, {"size": 2688, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Encode/JP"}, {"size": 9616, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Encode"}, {"size": 24, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Sys/Syslog"}, {"size": 12, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Sys/Hostname"}, {"size": 40, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Sys"}, {"size": 32, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/IPC/SysV"}, {"size": 36, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/IPC"}, {"size": 92, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/B"}, {"size": 24, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Fcntl"}, {"size": 32, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/SDBM_File"}, {"size": 52, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/DB_File"}, {"size": 48, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Socket"}, {"size": 24, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Digest/MD5"}, {"size": 48, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Digest/SHA"}, {"size": 76, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Digest"}, {"size": 20, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/I18N/Langinfo"}, {"size": 24, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/I18N"}, {"size": 24, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Hash/Util/FieldHash"}, {"size": 48, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Hash/Util"}, {"size": 52, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Hash"}, {"size": 108, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/POSIX"}, {"size": 24, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/NDBM_File"}, {"size": 36, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Compress/Raw/Bzip2"}, {"size": 64, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Compress/Raw/Zlib"}, {"size": 104, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Compress/Raw"}, {"size": 108, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Compress"}, {"size": 516, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Unicode/Normalize"}, {"size": 1404, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Unicode/Collate"}, {"size": 1924, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Unicode"}, {"size": 32, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Time/HiRes"}, {"size": 24, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Time/Piece"}, {"size": 60, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Time"}, {"size": 24, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/arybase"}, {"size": 28, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/GDBM_File"}, {"size": 24, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Opcode"}, {"size": 20, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Devel/Peek"}, {"size": 24, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Devel"}, {"size": 16, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Tie/Hash/NamedCapture"}, {"size": 20, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Tie/Hash"}, {"size": 24, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Tie"}, {"size": 20, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/MIME/Base64"}, {"size": 24, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/MIME"}, {"size": 20, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Filter/Util/Call"}, {"size": 24, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Filter/Util"}, {"size": 28, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Filter"}, {"size": 40, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/threads/shared"}, {"size": 84, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/threads"}, {"size": 92, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Storable"}, {"size": 52, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/List/Util"}, {"size": 56, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/List"}, {"size": 16, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/attributes"}, {"size": 13592, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/auto"}, {"size": 28, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/threads"}, {"size": 8, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/List/Util"}, {"size": 16, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1/List"}, {"size": 19928, "name": "/usr/lib/x86_64-linux-gnu/perl/5.26.1"}, {"size": 56, "name": "/usr/lib/x86_64-linux-gnu/perl/debian-config-data-5.26.1"}, {"size": 19992, "name": "/usr/lib/x86_64-linux-gnu/perl"}, {"size": 147400, "name": "/usr/lib/x86_64-linux-gnu"}, {"size": 20, "name": "/usr/lib/ssl/misc"}, {"size": 24, "name": "/usr/lib/ssl"}, {"size": 8, "name": "/usr/lib/dracut/modules.d/90bcache"}, {"size": 12, "name": "/usr/lib/dracut/modules.d"}, {"size": 16, "name": "/usr/lib/dracut"}, {"size": 272, "name": "/usr/lib/man-db"}, {"size": 4, "name": "/usr/lib/modules-load.d"}, {"size": 328, "name": "/usr/lib/initramfs-tools/bin"}, {"size": 8, "name": "/usr/lib/initramfs-tools/etc/dhcp/dhclient-enter-hooks.d"}, {"size": 16, "name": "/usr/lib/initramfs-tools/etc/dhcp"}, {"size": 20, "name": "/usr/lib/initramfs-tools/etc"}, {"size": 352, "name": "/usr/lib/initramfs-tools"}, {"size": 36, "name": "/usr/lib/policykit-1"}, {"size": 4, "name": "/usr/lib/python2.7/dist-packages"}, {"size": 8, "name": "/usr/lib/python2.7"}, {"size": 120, "name": "/usr/lib/sysstat"}, {"size": 104, "name": "/usr/lib/git-core/mergetools"}, {"size": 22232, "name": "/usr/lib/git-core"}, {"size": 8, "name": "/usr/lib/initcpio/install"}, {"size": 12, "name": "/usr/lib/initcpio"}, {"size": 24, "name": "/usr/lib/python3.7/lib-dynload"}, {"size": 48, "name": "/usr/lib/python3.7/lib2to3/pgen2"}, {"size": 12, "name": "/usr/lib/python3.7/lib2to3/fixes"}, {"size": 136, "name": "/usr/lib/python3.7/lib2to3"}, {"size": 72, "name": "/usr/lib/python3.7/distutils/command"}, {"size": 316, "name": "/usr/lib/python3.7/distutils"}, {"size": 480, "name": "/usr/lib/python3.7"}, {"size": 8, "name": "/usr/lib/os-probes/init"}, {"size": 12, "name": "/usr/lib/os-probes/mounted/efi"}, {"size": 72, "name": "/usr/lib/os-probes/mounted"}, {"size": 88, "name": "/usr/lib/os-probes"}, {"size": 8, "name": "/usr/lib/sysusers.d"}, {"size": 16, "name": "/usr/lib/eject"}, {"size": 504, "name": "/usr/lib/sudo"}, {"size": 60, "name": "/usr/lib/cloud-init"}, {"size": 8, "name": "/usr/lib/ubuntu-fan"}, {"size": 45864, "name": "/usr/lib/snapd"}, {"size": 140, "name": "/usr/lib/open-vm-tools/plugins/common"}, {"size": 172, "name": "/usr/lib/open-vm-tools/plugins/vmsvc"}, {"size": 316, "name": "/usr/lib/open-vm-tools/plugins"}, {"size": 320, "name": "/usr/lib/open-vm-tools"}, {"size": 16, "name": "/usr/lib/ubuntu-release-upgrader"}, {"size": 500852, "name": "/usr/lib"}, {"size": 4, "name": "/usr/local/sbin"}, {"size": 4, "name": "/usr/local/games"}, {"size": 4, "name": "/usr/local/bin"}, {"size": 4, "name": "/usr/local/share/ca-certificates"}, {"size": 4, "name": "/usr/local/share/man"}, {"size": 12, "name": "/usr/local/share"}, {"size": 4, "name": "/usr/local/include"}, {"size": 4, "name": "/usr/local/etc"}, {"size": 4, "name": "/usr/local/src"}, {"size": 4, "name": "/usr/local/lib/python3.6/dist-packages"}, {"size": 8, "name": "/usr/local/lib/python3.6"}, {"size": 12, "name": "/usr/local/lib"}, {"size": 52, "name": "/usr/local"}, {"size": 1497916, "name": "/usr"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/du.out000066400000000000000000042545301415226333200203630ustar00rootroot0000000000000021532 /usr/sbin 4 /usr/games 339208 /usr/bin 32 /usr/share/pkgconfig 8 /usr/share/perl5/Debian/DebConf/Client 12 /usr/share/perl5/Debian/DebConf 16 /usr/share/perl5/Debian/Debhelper/Sequence 12 /usr/share/perl5/Debian/Debhelper/Buildsystem 32 /usr/share/perl5/Debian/Debhelper 56 /usr/share/perl5/Debian 8 /usr/share/perl5/Error 12 /usr/share/perl5/Text 8 /usr/share/perl5/Debconf/Format 8 /usr/share/perl5/Debconf/Client 8 /usr/share/perl5/Debconf/Template 16 /usr/share/perl5/Debconf/FrontEnd/Kde 80 /usr/share/perl5/Debconf/FrontEnd 40 /usr/share/perl5/Debconf/Element/Noninteractive 40 /usr/share/perl5/Debconf/Element/Teletype 40 /usr/share/perl5/Debconf/Element/Gnome 40 /usr/share/perl5/Debconf/Element/Editor 40 /usr/share/perl5/Debconf/Element/Dialog 40 /usr/share/perl5/Debconf/Element/Web 40 /usr/share/perl5/Debconf/Element/Kde 304 /usr/share/perl5/Debconf/Element 60 /usr/share/perl5/Debconf/DbDriver 572 /usr/share/perl5/Debconf 92 /usr/share/perl5/Algorithm 8 /usr/share/perl5/Git/LoadCPAN/Mail 16 /usr/share/perl5/Git/LoadCPAN 40 /usr/share/perl5/Git 8 /usr/share/perl5/Dpkg/Control/Tests 84 /usr/share/perl5/Dpkg/Control 20 /usr/share/perl5/Dpkg/Build 12 /usr/share/perl5/Dpkg/Interface 68 /usr/share/perl5/Dpkg/Shlibs 16 /usr/share/perl5/Dpkg/Changelog/Entry 44 /usr/share/perl5/Dpkg/Changelog 36 /usr/share/perl5/Dpkg/Vendor 12 /usr/share/perl5/Dpkg/Dist 36 /usr/share/perl5/Dpkg/Source/Package/V3 92 /usr/share/perl5/Dpkg/Source/Package 164 /usr/share/perl5/Dpkg/Source 28 /usr/share/perl5/Dpkg/Compression 732 /usr/share/perl5/Dpkg 1604 /usr/share/perl5 60 /usr/share/locale/mn/LC_MESSAGES 64 /usr/share/locale/mn 8 /usr/share/locale/de_DE/LC_MESSAGES 12 /usr/share/locale/de_DE 8 /usr/share/locale/sco/LC_MESSAGES 12 /usr/share/locale/sco 84 /usr/share/locale/oc/LC_MESSAGES 88 /usr/share/locale/oc 52 /usr/share/locale/bn_IN/LC_MESSAGES 56 /usr/share/locale/bn_IN 944 /usr/share/locale/it/LC_MESSAGES 948 /usr/share/locale/it 220 /usr/share/locale/bn/LC_MESSAGES 224 /usr/share/locale/bn 24 /usr/share/locale/bo/LC_MESSAGES 28 /usr/share/locale/bo 28 /usr/share/locale/dv/LC_MESSAGES 32 /usr/share/locale/dv 108 /usr/share/locale/ml/LC_MESSAGES 112 /usr/share/locale/ml 416 /usr/share/locale/id/LC_MESSAGES 420 /usr/share/locale/id 8 /usr/share/locale/ay/LC_MESSAGES 12 /usr/share/locale/ay 8 /usr/share/locale/kl/LC_MESSAGES 12 /usr/share/locale/kl 8 /usr/share/locale/trv/LC_MESSAGES 12 /usr/share/locale/trv 292 /usr/share/locale/ro/LC_MESSAGES 296 /usr/share/locale/ro 16 /usr/share/locale/gn/LC_MESSAGES 20 /usr/share/locale/gn 32 /usr/share/locale/en_GB/LC_MESSAGES 36 /usr/share/locale/en_GB 164 /usr/share/locale/et/LC_MESSAGES 168 /usr/share/locale/et 20 /usr/share/locale/frp/LC_MESSAGES 24 /usr/share/locale/frp 16 /usr/share/locale/io/LC_MESSAGES 20 /usr/share/locale/io 20 /usr/share/locale/sw/LC_MESSAGES 24 /usr/share/locale/sw 8 /usr/share/locale/om/LC_MESSAGES 12 /usr/share/locale/om 8 /usr/share/locale/st/LC_MESSAGES 12 /usr/share/locale/st 12 /usr/share/locale/fil/LC_MESSAGES 16 /usr/share/locale/fil 996 /usr/share/locale/uk/LC_MESSAGES 1000 /usr/share/locale/uk 300 /usr/share/locale/eu/LC_MESSAGES 304 /usr/share/locale/eu 32 /usr/share/locale/tig/LC_MESSAGES 36 /usr/share/locale/tig 8 /usr/share/locale/bi/LC_MESSAGES 12 /usr/share/locale/bi 536 /usr/share/locale/da/LC_MESSAGES 540 /usr/share/locale/da 384 /usr/share/locale/ca/LC_MESSAGES 388 /usr/share/locale/ca 664 /usr/share/locale/pl/LC_MESSAGES 668 /usr/share/locale/pl 552 /usr/share/locale/ta/LC_MESSAGES 556 /usr/share/locale/ta 76 /usr/share/locale/wa/LC_MESSAGES 80 /usr/share/locale/wa 12 /usr/share/locale/mai/LC_MESSAGES 16 /usr/share/locale/mai 20 /usr/share/locale/mhr/LC_MESSAGES 24 /usr/share/locale/mhr 12 /usr/share/locale/na/LC_MESSAGES 16 /usr/share/locale/na 44 /usr/share/locale/my/LC_MESSAGES 48 /usr/share/locale/my 40 /usr/share/locale/mi/LC_MESSAGES 44 /usr/share/locale/mi 8 /usr/share/locale/pap/LC_MESSAGES 12 /usr/share/locale/pap 8 /usr/share/locale/mg/LC_MESSAGES 12 /usr/share/locale/mg 32 /usr/share/locale/gd/LC_MESSAGES 36 /usr/share/locale/gd 32 /usr/share/locale/byn/LC_MESSAGES 36 /usr/share/locale/byn 16 /usr/share/locale/ach/LC_MESSAGES 20 /usr/share/locale/ach 68 /usr/share/locale/tg/LC_MESSAGES 72 /usr/share/locale/tg 76 /usr/share/locale/af/LC_MESSAGES 80 /usr/share/locale/af 36 /usr/share/locale/ps/LC_MESSAGES 40 /usr/share/locale/ps 68 /usr/share/locale/kk/LC_MESSAGES 72 /usr/share/locale/kk 52 /usr/share/locale/tt/LC_MESSAGES 56 /usr/share/locale/tt 16 /usr/share/locale/en@boldquot/LC_MESSAGES 20 /usr/share/locale/en@boldquot 12 /usr/share/locale/co/LC_MESSAGES 16 /usr/share/locale/co 396 /usr/share/locale/be/LC_MESSAGES 400 /usr/share/locale/be 32 /usr/share/locale/ca@valencia/LC_MESSAGES 36 /usr/share/locale/ca@valencia 496 /usr/share/locale/zh_CN/LC_MESSAGES 500 /usr/share/locale/zh_CN 96 /usr/share/locale/zh_HK/LC_MESSAGES 100 /usr/share/locale/zh_HK 60 /usr/share/locale/sq/LC_MESSAGES 64 /usr/share/locale/sq 540 /usr/share/locale/pa/LC_MESSAGES 544 /usr/share/locale/pa 8 /usr/share/locale/iu/LC_MESSAGES 12 /usr/share/locale/iu 44 /usr/share/locale/tt@iqtelif/LC_MESSAGES 48 /usr/share/locale/tt@iqtelif 32 /usr/share/locale/ti/LC_MESSAGES 36 /usr/share/locale/ti 84 /usr/share/locale/as/LC_MESSAGES 88 /usr/share/locale/as 28 /usr/share/locale/ve/LC_MESSAGES 32 /usr/share/locale/ve 332 /usr/share/locale/pt/LC_MESSAGES 336 /usr/share/locale/pt 8 /usr/share/locale/qu/LC_MESSAGES 12 /usr/share/locale/qu 120 /usr/share/locale/lv/LC_MESSAGES 124 /usr/share/locale/lv 60 /usr/share/locale/si/LC_MESSAGES 64 /usr/share/locale/si 108 /usr/share/locale/cy/LC_MESSAGES 112 /usr/share/locale/cy 72 /usr/share/locale/rw/LC_MESSAGES 76 /usr/share/locale/rw 32 /usr/share/locale/en_CA/LC_MESSAGES 36 /usr/share/locale/en_CA 332 /usr/share/locale/el/LC_MESSAGES 336 /usr/share/locale/el 8 /usr/share/locale/bem/LC_MESSAGES 12 /usr/share/locale/bem 60 /usr/share/locale/am/LC_MESSAGES 64 /usr/share/locale/am 104 /usr/share/locale/br/LC_MESSAGES 108 /usr/share/locale/br 32 /usr/share/locale/tk/LC_MESSAGES 36 /usr/share/locale/tk 124 /usr/share/locale/ar/LC_MESSAGES 128 /usr/share/locale/ar 76 /usr/share/locale/ka/LC_MESSAGES 80 /usr/share/locale/ka 24 /usr/share/locale/fr_CA/LC_MESSAGES 28 /usr/share/locale/fr_CA 12 /usr/share/locale/kab/LC_MESSAGES 16 /usr/share/locale/kab 76 /usr/share/locale/ug/LC_MESSAGES 80 /usr/share/locale/ug 24 /usr/share/locale/gv/LC_MESSAGES 28 /usr/share/locale/gv 8 /usr/share/locale/pam/LC_MESSAGES 12 /usr/share/locale/pam 24 /usr/share/locale/sd/LC_MESSAGES 28 /usr/share/locale/sd 320 /usr/share/locale/zh_TW/LC_MESSAGES 324 /usr/share/locale/zh_TW 32 /usr/share/locale/wo/LC_MESSAGES 36 /usr/share/locale/wo 12 /usr/share/locale/nv/LC_MESSAGES 16 /usr/share/locale/nv 16 /usr/share/locale/en@quot/LC_MESSAGES 20 /usr/share/locale/en@quot 136 /usr/share/locale/gu/LC_MESSAGES 140 /usr/share/locale/gu 8 /usr/share/locale/aa/LC_MESSAGES 12 /usr/share/locale/aa 528 /usr/share/locale/ja/LC_MESSAGES 532 /usr/share/locale/ja 112 /usr/share/locale/te/LC_MESSAGES 116 /usr/share/locale/te 12 /usr/share/locale/bar/LC_MESSAGES 16 /usr/share/locale/bar 476 /usr/share/locale/ru/LC_MESSAGES 480 /usr/share/locale/ru 28 /usr/share/locale/fur/LC_MESSAGES 32 /usr/share/locale/fur 36 /usr/share/locale/ce/LC_MESSAGES 40 /usr/share/locale/ce 8 /usr/share/locale/mo/LC_MESSAGES 12 /usr/share/locale/mo 12 /usr/share/locale/kv/LC_MESSAGES 16 /usr/share/locale/kv 476 /usr/share/locale/kn/LC_MESSAGES 480 /usr/share/locale/kn 12 /usr/share/locale/ki/LC_MESSAGES 16 /usr/share/locale/ki 12 /usr/share/locale/vec/LC_MESSAGES 16 /usr/share/locale/vec 40 /usr/share/locale/fo/LC_MESSAGES 44 /usr/share/locale/fo 16 /usr/share/locale/shn/LC_MESSAGES 20 /usr/share/locale/shn 388 /usr/share/locale/es/LC_MESSAGES 392 /usr/share/locale/es 28 /usr/share/locale/nso/LC_MESSAGES 32 /usr/share/locale/nso 8 /usr/share/locale/ba/LC_MESSAGES 12 /usr/share/locale/ba 8 /usr/share/locale/ary/LC_MESSAGES 12 /usr/share/locale/ary 524 /usr/share/locale/ast/LC_MESSAGES 528 /usr/share/locale/ast 344 /usr/share/locale/sr/LC_MESSAGES 348 /usr/share/locale/sr 296 /usr/share/locale/or/LC_MESSAGES 300 /usr/share/locale/or 16 /usr/share/locale/jam/LC_MESSAGES 20 /usr/share/locale/jam 32 /usr/share/locale/gez/LC_MESSAGES 36 /usr/share/locale/gez 12 /usr/share/locale/nah/LC_MESSAGES 16 /usr/share/locale/nah 136 /usr/share/locale/tl/LC_MESSAGES 140 /usr/share/locale/tl 32 /usr/share/locale/en_AU/LC_MESSAGES 36 /usr/share/locale/en_AU 16 /usr/share/locale/ln/LC_MESSAGES 20 /usr/share/locale/ln 8 /usr/share/locale/pt_PT/LC_MESSAGES 12 /usr/share/locale/pt_PT 244 /usr/share/locale/bg/LC_MESSAGES 248 /usr/share/locale/bg 8 /usr/share/locale/ee/LC_MESSAGES 12 /usr/share/locale/ee 16 /usr/share/locale/pi/LC_MESSAGES 20 /usr/share/locale/pi 392 /usr/share/locale/cs/LC_MESSAGES 396 /usr/share/locale/cs 48 /usr/share/locale/az/LC_MESSAGES 52 /usr/share/locale/az 24 /usr/share/locale/sc/LC_MESSAGES 28 /usr/share/locale/sc 292 /usr/share/locale/lt/LC_MESSAGES 296 /usr/share/locale/lt 100 /usr/share/locale/ga/LC_MESSAGES 104 /usr/share/locale/ga 24 /usr/share/locale/zu/LC_MESSAGES 28 /usr/share/locale/zu 168 /usr/share/locale/is/LC_MESSAGES 172 /usr/share/locale/is 232 /usr/share/locale/dz/LC_MESSAGES 236 /usr/share/locale/dz 668 /usr/share/locale/tr/LC_MESSAGES 672 /usr/share/locale/tr 52 /usr/share/locale/hy/LC_MESSAGES 56 /usr/share/locale/hy 84 /usr/share/locale/ku/LC_MESSAGES 88 /usr/share/locale/ku 8 /usr/share/locale/szl/LC_MESSAGES 12 /usr/share/locale/szl 20 /usr/share/locale/nds/LC_MESSAGES 24 /usr/share/locale/nds 100 /usr/share/locale/hi/LC_MESSAGES 104 /usr/share/locale/hi 12 /usr/share/locale/haw/LC_MESSAGES 16 /usr/share/locale/haw 16 /usr/share/locale/so/LC_MESSAGES 20 /usr/share/locale/so 180 /usr/share/locale/nn/LC_MESSAGES 184 /usr/share/locale/nn 36 /usr/share/locale/uz/LC_MESSAGES 40 /usr/share/locale/uz 56 /usr/share/locale/ia/LC_MESSAGES 60 /usr/share/locale/ia 996 /usr/share/locale/fr/LC_MESSAGES 1000 /usr/share/locale/fr 108 /usr/share/locale/fa/LC_MESSAGES 112 /usr/share/locale/fa 28 /usr/share/locale/ckb/LC_MESSAGES 32 /usr/share/locale/ckb 396 /usr/share/locale/hu/LC_MESSAGES 400 /usr/share/locale/hu 276 /usr/share/locale/eo/LC_MESSAGES 280 /usr/share/locale/eo 12 /usr/share/locale/ha/LC_MESSAGES 16 /usr/share/locale/ha 932 /usr/share/locale/sv/LC_MESSAGES 936 /usr/share/locale/sv 36 /usr/share/locale/csb/LC_MESSAGES 40 /usr/share/locale/csb 16 /usr/share/locale/os/LC_MESSAGES 20 /usr/share/locale/os 16 /usr/share/locale/sa/LC_MESSAGES 20 /usr/share/locale/sa 100 /usr/share/locale/bs/LC_MESSAGES 104 /usr/share/locale/bs 8 /usr/share/locale/ab/LC_MESSAGES 12 /usr/share/locale/ab 256 /usr/share/locale/km/LC_MESSAGES 260 /usr/share/locale/km 620 /usr/share/locale/th/LC_MESSAGES 624 /usr/share/locale/th 8 /usr/share/locale/ta_LK/LC_MESSAGES 12 /usr/share/locale/ta_LK 8 /usr/share/locale/ak/LC_MESSAGES 12 /usr/share/locale/ak 48 /usr/share/locale/mt/LC_MESSAGES 52 /usr/share/locale/mt 340 /usr/share/locale/sk/LC_MESSAGES 344 /usr/share/locale/sk 16 /usr/share/locale/chr/LC_MESSAGES 20 /usr/share/locale/chr 8 /usr/share/locale/be@latin/LC_MESSAGES 12 /usr/share/locale/be@latin 28 /usr/share/locale/ur/LC_MESSAGES 32 /usr/share/locale/ur 656 /usr/share/locale/nl/LC_MESSAGES 660 /usr/share/locale/nl 32 /usr/share/locale/kw/LC_MESSAGES 36 /usr/share/locale/kw 304 /usr/share/locale/ko/LC_MESSAGES 308 /usr/share/locale/ko 540 /usr/share/locale/gl/LC_MESSAGES 544 /usr/share/locale/gl 340 /usr/share/locale/crh/LC_MESSAGES 344 /usr/share/locale/crh 16 /usr/share/locale/wal/LC_MESSAGES 20 /usr/share/locale/wal 8 /usr/share/locale/ff/LC_MESSAGES 12 /usr/share/locale/ff 16 /usr/share/locale/se/LC_MESSAGES 20 /usr/share/locale/se 16 /usr/share/locale/jv/LC_MESSAGES 20 /usr/share/locale/jv 24 /usr/share/locale/ht/LC_MESSAGES 28 /usr/share/locale/ht 212 /usr/share/locale/pt_BR/LC_MESSAGES 216 /usr/share/locale/pt_BR 16 /usr/share/locale/ace/LC_MESSAGES 20 /usr/share/locale/ace 12 /usr/share/locale/lb/LC_MESSAGES 16 /usr/share/locale/lb 560 /usr/share/locale/vi/LC_MESSAGES 564 /usr/share/locale/vi 980 /usr/share/locale/de/LC_MESSAGES 984 /usr/share/locale/de 28 /usr/share/locale/xh/LC_MESSAGES 32 /usr/share/locale/xh 24 /usr/share/locale/an/LC_MESSAGES 28 /usr/share/locale/an 20 /usr/share/locale/kok/LC_MESSAGES 24 /usr/share/locale/kok 680 /usr/share/locale/mr/LC_MESSAGES 684 /usr/share/locale/mr 32 /usr/share/locale/fy/LC_MESSAGES 36 /usr/share/locale/fy 52 /usr/share/locale/ky/LC_MESSAGES 56 /usr/share/locale/ky 60 /usr/share/locale/mk/LC_MESSAGES 64 /usr/share/locale/mk 12 /usr/share/locale/fa_AF/LC_MESSAGES 16 /usr/share/locale/fa_AF 252 /usr/share/locale/nb/LC_MESSAGES 256 /usr/share/locale/nb 28 /usr/share/locale/cv/LC_MESSAGES 32 /usr/share/locale/cv 8 /usr/share/locale/ch/LC_MESSAGES 12 /usr/share/locale/ch 88 /usr/share/locale/he/LC_MESSAGES 92 /usr/share/locale/he 16 /usr/share/locale/son/LC_MESSAGES 20 /usr/share/locale/son 20 /usr/share/locale/lo/LC_MESSAGES 24 /usr/share/locale/lo 8 /usr/share/locale/sr@Latn/LC_MESSAGES 12 /usr/share/locale/sr@Latn 128 /usr/share/locale/hr/LC_MESSAGES 132 /usr/share/locale/hr 16 /usr/share/locale/yo/LC_MESSAGES 20 /usr/share/locale/yo 296 /usr/share/locale/sl/LC_MESSAGES 300 /usr/share/locale/sl 248 /usr/share/locale/sr@latin/LC_MESSAGES 252 /usr/share/locale/sr@latin 116 /usr/share/locale/en/LC_MESSAGES 120 /usr/share/locale/en 212 /usr/share/locale/ne/LC_MESSAGES 216 /usr/share/locale/ne 60 /usr/share/locale/ms/LC_MESSAGES 64 /usr/share/locale/ms 200 /usr/share/locale/fi/LC_MESSAGES 204 /usr/share/locale/fi 28412 /usr/share/locale 8 /usr/share/aclocal 20 /usr/share/netplan/netplan/__pycache__ 20 /usr/share/netplan/netplan/cli/__pycache__ 48 /usr/share/netplan/netplan/cli/commands/__pycache__ 108 /usr/share/netplan/netplan/cli/commands 148 /usr/share/netplan/netplan/cli 196 /usr/share/netplan/netplan 204 /usr/share/netplan 1448 /usr/share/xml/iso-codes 1452 /usr/share/xml 36 /usr/share/menu 60 /usr/share/dpkg 52 /usr/share/dbus-1/system-services 52 /usr/share/dbus-1/interfaces 16 /usr/share/dbus-1/services 56 /usr/share/dbus-1/system.d 192 /usr/share/dbus-1 72 /usr/share/gitweb/static 324 /usr/share/gitweb 100 /usr/share/awk 8 /usr/share/binfmts 4 /usr/share/file/magic 8 /usr/share/file 24 /usr/share/groff/1.22.3/font/devlatin1 56 /usr/share/groff/1.22.3/font/devps/generate 660 /usr/share/groff/1.22.3/font/devps 120 /usr/share/groff/1.22.3/font/devutf8 24 /usr/share/groff/1.22.3/font/devascii 832 /usr/share/groff/1.22.3/font 72 /usr/share/groff/1.22.3/tmac/mdoc 772 /usr/share/groff/1.22.3/tmac 1612 /usr/share/groff/1.22.3 1616 /usr/share/groff 544 /usr/share/ca-certificates/mozilla 548 /usr/share/ca-certificates 32 /usr/share/dh-python/dhpython/build/__pycache__ 68 /usr/share/dh-python/dhpython/build 100 /usr/share/dh-python/dhpython/__pycache__ 292 /usr/share/dh-python/dhpython 156 /usr/share/dh-python/dist 540 /usr/share/dh-python 1156 /usr/share/sosreport/sos/plugins/__pycache__ 2384 /usr/share/sosreport/sos/plugins 92 /usr/share/sosreport/sos/__pycache__ 60 /usr/share/sosreport/sos/policies/__pycache__ 128 /usr/share/sosreport/sos/policies 2716 /usr/share/sosreport/sos 2728 /usr/share/sosreport 16 /usr/share/X11/locale/iso8859-6 132 /usr/share/X11/locale/el_GR.UTF-8 16 /usr/share/X11/locale/ja_JP.UTF-8 16 /usr/share/X11/locale/tatar-cyr 36 /usr/share/X11/locale/iso8859-13 24 /usr/share/X11/locale/zh_TW.big5 16 /usr/share/X11/locale/th_TH 576 /usr/share/X11/locale/en_US.UTF-8 16 /usr/share/X11/locale/km_KH.UTF-8 16 /usr/share/X11/locale/isiri-3342 36 /usr/share/X11/locale/iso8859-1 16 /usr/share/X11/locale/ja.JIS 16 /usr/share/X11/locale/zh_HK.big5 16 /usr/share/X11/locale/zh_CN 36 /usr/share/X11/locale/iso8859-9e 16 /usr/share/X11/locale/armscii-8 24 /usr/share/X11/locale/iso8859-7 36 /usr/share/X11/locale/iso8859-3 16 /usr/share/X11/locale/iso8859-10 16 /usr/share/X11/locale/iso8859-8 16 /usr/share/X11/locale/zh_TW 16 /usr/share/X11/locale/zh_CN.UTF-8 16 /usr/share/X11/locale/ja 16 /usr/share/X11/locale/zh_CN.gbk 36 /usr/share/X11/locale/iso8859-9 36 /usr/share/X11/locale/iso8859-14 16 /usr/share/X11/locale/ru_RU.UTF-8 16 /usr/share/X11/locale/koi8-u 16 /usr/share/X11/locale/georgian-ps 16 /usr/share/X11/locale/zh_TW.UTF-8 16 /usr/share/X11/locale/ko_KR.UTF-8 16 /usr/share/X11/locale/pt_PT.UTF-8 16 /usr/share/X11/locale/nokhchi-1 20 /usr/share/X11/locale/sr_CS.UTF-8 12 /usr/share/X11/locale/cs_CZ.UTF-8 36 /usr/share/X11/locale/iso8859-2 16 /usr/share/X11/locale/tscii-0 16 /usr/share/X11/locale/microsoft-cp1255 16 /usr/share/X11/locale/koi8-r 20 /usr/share/X11/locale/ja.SJIS 16 /usr/share/X11/locale/microsoft-cp1251 16 /usr/share/X11/locale/iscii-dev 28 /usr/share/X11/locale/iso8859-4 16 /usr/share/X11/locale/C 44 /usr/share/X11/locale/fi_FI.UTF-8 24 /usr/share/X11/locale/am_ET.UTF-8 16 /usr/share/X11/locale/iso8859-11 16 /usr/share/X11/locale/pt_BR.UTF-8 16 /usr/share/X11/locale/ibm-cp1133 16 /usr/share/X11/locale/ko 16 /usr/share/X11/locale/th_TH.UTF-8 16 /usr/share/X11/locale/iso8859-5 16 /usr/share/X11/locale/zh_HK.big5hkscs 16 /usr/share/X11/locale/microsoft-cp1256 20 /usr/share/X11/locale/vi_VN.viscii 20 /usr/share/X11/locale/koi8-c 16 /usr/share/X11/locale/georgian-academy 16 /usr/share/X11/locale/zh_HK.UTF-8 20 /usr/share/X11/locale/vi_VN.tcvn 16 /usr/share/X11/locale/mulelao-1 16 /usr/share/X11/locale/zh_CN.gb18030 32 /usr/share/X11/locale/iso8859-15 2068 /usr/share/X11/locale 8 /usr/share/X11/xkb/symbols/jolla_vndr 8 /usr/share/X11/xkb/symbols/sgi_vndr 8 /usr/share/X11/xkb/symbols/hp_vndr 120 /usr/share/X11/xkb/symbols/nokia_vndr 36 /usr/share/X11/xkb/symbols/digital_vndr 20 /usr/share/X11/xkb/symbols/fujitsu_vndr 84 /usr/share/X11/xkb/symbols/macintosh_vndr 8 /usr/share/X11/xkb/symbols/sony_vndr 12 /usr/share/X11/xkb/symbols/nec_vndr 16 /usr/share/X11/xkb/symbols/xfree68_vndr 236 /usr/share/X11/xkb/symbols/sun_vndr 24 /usr/share/X11/xkb/symbols/sharp_vndr 2304 /usr/share/X11/xkb/symbols 80 /usr/share/X11/xkb/compat 48 /usr/share/X11/xkb/geometry/sgi_vndr 48 /usr/share/X11/xkb/geometry/digital_vndr 416 /usr/share/X11/xkb/geometry 16 /usr/share/X11/xkb/keycodes/sgi_vndr 20 /usr/share/X11/xkb/keycodes/digital_vndr 132 /usr/share/X11/xkb/keycodes 684 /usr/share/X11/xkb/rules 72 /usr/share/X11/xkb/types 3692 /usr/share/X11/xkb 5808 /usr/share/X11 4 /usr/share/icons/hicolor/48x48/mimetypes 12 /usr/share/icons/hicolor/48x48/apps 20 /usr/share/icons/hicolor/48x48 4 /usr/share/icons/hicolor/64x64/mimetypes 12 /usr/share/icons/hicolor/64x64/apps 20 /usr/share/icons/hicolor/64x64 4 /usr/share/icons/hicolor/32x32/mimetypes 8 /usr/share/icons/hicolor/32x32/apps 16 /usr/share/icons/hicolor/32x32 4 /usr/share/icons/hicolor/scalable/mimetypes 60 /usr/share/icons/hicolor/scalable/apps 68 /usr/share/icons/hicolor/scalable 128 /usr/share/icons/hicolor 100 /usr/share/icons/HighContrast/scalable/apps 104 /usr/share/icons/HighContrast/scalable 108 /usr/share/icons/HighContrast 8 /usr/share/icons/locolor/16x16/apps 12 /usr/share/icons/locolor/16x16 8 /usr/share/icons/locolor/32x32/apps 12 /usr/share/icons/locolor/32x32 28 /usr/share/icons/locolor 268 /usr/share/icons 8 /usr/share/dnsmasq-base 4 /usr/share/dict 52 /usr/share/byobu/keybindings 8 /usr/share/byobu/windows 12 /usr/share/byobu/status 8 /usr/share/byobu/tests 12 /usr/share/byobu/desktop 20 /usr/share/byobu/pixmaps 40 /usr/share/byobu/profiles 156 /usr/share/byobu 56 /usr/share/lxc/templates 52 /usr/share/lxc/hooks 12 /usr/share/lxc/config/common.conf.d 36 /usr/share/lxc/config 12 /usr/share/lxc/selinux 164 /usr/share/lxc 6824 /usr/share/GeoIP 12 /usr/share/base-passwd 12 /usr/share/openssh 12 /usr/share/libdrm 12 /usr/share/locales 8 /usr/share/java 8 /usr/share/python/runtime.d 12 /usr/share/python 8 /usr/share/rsyslog 12 /usr/share/language-support 4 /usr/share/update-notifier/plugins/cache-changed 8 /usr/share/update-notifier/plugins 8 /usr/share/update-notifier/upgrader-patches 88 /usr/share/update-notifier 76 /usr/share/language-selector/data 80 /usr/share/language-selector 1800 /usr/share/python-wheels 20 /usr/share/slurm 264 /usr/share/common-licenses 8 /usr/share/libc-bin 12 /usr/share/build-essential 12 /usr/share/lxcfs 16 /usr/share/mdadm 12 /usr/share/cryptsetup/initramfs/bin 16 /usr/share/cryptsetup/initramfs 20 /usr/share/cryptsetup 2948 /usr/share/command-not-found 4 /usr/share/libsensors4 44 /usr/share/pam 20 /usr/share/tabset 16 /usr/share/doc/accountsservice 16 /usr/share/doc/libapt-pkg5.0 16 /usr/share/doc/python3-crypto 32 /usr/share/doc/dpkg-dev 52 /usr/share/doc/libmpfr6 28 /usr/share/doc/bsdutils 24 /usr/share/doc/net-tools 80 /usr/share/doc/libkrb5-3 16 /usr/share/doc/python3-blinker 12 /usr/share/doc/liblz4-1 16 /usr/share/doc/networkd-dispatcher 40 /usr/share/doc/vim-runtime 16 /usr/share/doc/libdpkg-perl 12 /usr/share/doc/libdevmapper1.02.1 24 /usr/share/doc/apt/examples 32 /usr/share/doc/apt 28 /usr/share/doc/mlocate 32 /usr/share/doc/tmux 12 /usr/share/doc/libonig4 12 /usr/share/doc/libpci3 8 /usr/share/doc/libapt-inst2.0 48 /usr/share/doc/linux-headers-4.15.0-72 24 /usr/share/doc/libxmlsec1 16 /usr/share/doc/distro-info-data 20 /usr/share/doc/less 12 /usr/share/doc/libfastjson4 12 /usr/share/doc/libirs160 12 /usr/share/doc/libxdmcp6 12 /usr/share/doc/libkeyutils1 12 /usr/share/doc/dnsutils 12 /usr/share/doc/libmpdec2 36 /usr/share/doc/dpkg 12 /usr/share/doc/libnl-genl-3-200 28 /usr/share/doc/python3-certifi 44 /usr/share/doc/libnettle6 12 /usr/share/doc/python3-jsonschema 124 /usr/share/doc/linux-modules-extra-4.15.0-70-generic 172 /usr/share/doc/libslang2 24 /usr/share/doc/liblinear3 12 /usr/share/doc/libsemanage1 16 /usr/share/doc/acl 68 /usr/share/doc/libk5crypto3 12 /usr/share/doc/libestr0 8 /usr/share/doc/python3-pip 8 /usr/share/doc/dmeventd 12 /usr/share/doc/libglib2.0-data 16 /usr/share/doc/libtext-charwidth-perl 16 /usr/share/doc/dmidecode 16 /usr/share/doc/readline-common 12 /usr/share/doc/python3-markupsafe 48 /usr/share/doc/linux-modules-4.15.0-72-generic 12 /usr/share/doc/libisns0 12 /usr/share/doc/libfile-fcntllock-perl 328 /usr/share/doc/linux-firmware/licenses 384 /usr/share/doc/linux-firmware 92 /usr/share/doc/groff-base 12 /usr/share/doc/libsepol1 56 /usr/share/doc/lvm2 32 /usr/share/doc/ethtool 12 /usr/share/doc/libnpth0 16 /usr/share/doc/libcap2 16 /usr/share/doc/libusb-1.0-0 20 /usr/share/doc/libcryptsetup12 32 /usr/share/doc/intel-microcode 32 /usr/share/doc/libc6-dev 12 /usr/share/doc/python3-pam/examples 24 /usr/share/doc/python3-pam 28 /usr/share/doc/ed 12 /usr/share/doc/python3-automat 20 /usr/share/doc/file 12 /usr/share/doc/python3-systemd 12 /usr/share/doc/cloud-initramfs-copymods 12 /usr/share/doc/libnetfilter-conntrack3 36 /usr/share/doc/python3-dbus 8 /usr/share/doc/eatmydata 16 /usr/share/doc/libassuan0 8 /usr/share/doc/procps/examples 32 /usr/share/doc/procps 24 /usr/share/doc/libfdisk1 20 /usr/share/doc/openssl/HOWTO 72 /usr/share/doc/openssl 128 /usr/share/doc/libc6 8 /usr/share/doc/ca-certificates/examples/ca-certificates-local/debian/source 40 /usr/share/doc/ca-certificates/examples/ca-certificates-local/debian 12 /usr/share/doc/ca-certificates/examples/ca-certificates-local/local 64 /usr/share/doc/ca-certificates/examples/ca-certificates-local 68 /usr/share/doc/ca-certificates/examples 100 /usr/share/doc/ca-certificates 16 /usr/share/doc/powermgmt-base 20 /usr/share/doc/dh-python 20 /usr/share/doc/sosreport 20 /usr/share/doc/diffutils 20 /usr/share/doc/libgpg-error0 16 /usr/share/doc/libunistring2 32 /usr/share/doc/patch 12 /usr/share/doc/dns-root-data 12 /usr/share/doc/libaccountsservice0 12 /usr/share/doc/libelf1 12 /usr/share/doc/python3-apt 12 /usr/share/doc/python3-keyrings.alt 12 /usr/share/doc/sed/examples 108 /usr/share/doc/sed 12 /usr/share/doc/zerofree 32 /usr/share/doc/iucode-tool 12 /usr/share/doc/libisccfg160 24 /usr/share/doc/python3-distutils 12 /usr/share/doc/libheimntlm0-heimdal 20 /usr/share/doc/pigz 16 /usr/share/doc/gpg 32 /usr/share/doc/dnsmasq-base/examples 88 /usr/share/doc/dnsmasq-base 12 /usr/share/doc/xauth 20 /usr/share/doc/libnl-3-200 8 /usr/share/doc/passwd/examples 84 /usr/share/doc/passwd 8 /usr/share/doc/python3-commandnotfound 16 /usr/share/doc/libisc169 12 /usr/share/doc/libbz2-1.0 20 /usr/share/doc/python3-setuptools 12 /usr/share/doc/libalgorithm-merge-perl 28 /usr/share/doc/git-man 28 /usr/share/doc/libksba8 12 /usr/share/doc/libntfs-3g88 8 /usr/share/doc/liblvm2cmd2.02 20 /usr/share/doc/ntfs-3g 24 /usr/share/doc/byobu 36 /usr/share/doc/libfuse2 24 /usr/share/doc/gpgv 24 /usr/share/doc/gnupg-utils 8 /usr/share/doc/libdevmapper-event1.02.1 44 /usr/share/doc/base-passwd 12 /usr/share/doc/python3-pyasn1 16 /usr/share/doc/ncurses-base 24 /usr/share/doc/dash 28 /usr/share/doc/lxd-client 44 /usr/share/doc/locales 20 /usr/share/doc/libssl1.1 12 /usr/share/doc/gpg-agent/examples 36 /usr/share/doc/gpg-agent 12 /usr/share/doc/python3-incremental 12 /usr/share/doc/libkrb5-26-heimdal 28 /usr/share/doc/libnih1 12 /usr/share/doc/run-one 24 /usr/share/doc/libblkid1 12 /usr/share/doc/update-notifier-common 20 /usr/share/doc/libmagic-mgc 12 /usr/share/doc/libnss-systemd 12 /usr/share/doc/ureadahead 12 /usr/share/doc/libmagic1 12 /usr/share/doc/python3-wheel 12 /usr/share/doc/mime-support 12 /usr/share/doc/rsyslog/examples/rsyslog.d 8 /usr/share/doc/rsyslog/examples/tmpfiles.d 24 /usr/share/doc/rsyslog/examples 52 /usr/share/doc/rsyslog 20 /usr/share/doc/liblxc1 20 /usr/share/doc/libssl1.0.0 12 /usr/share/doc/libexpat1-dev/examples 120 /usr/share/doc/libexpat1-dev/expat.html 144 /usr/share/doc/libexpat1-dev 28 /usr/share/doc/acpid/examples 48 /usr/share/doc/acpid 12 /usr/share/doc/language-selector-common 16 /usr/share/doc/linux-base 72 /usr/share/doc/containerd 8 /usr/share/doc/netcat-openbsd/examples/contrib 60 /usr/share/doc/netcat-openbsd/examples 76 /usr/share/doc/netcat-openbsd 16 /usr/share/doc/libgmp10 12 /usr/share/doc/btrfs-progs 12 /usr/share/doc/python3-click 36 /usr/share/doc/libwrap0 12 /usr/share/doc/ubuntu-server 28 /usr/share/doc/libdrm2 8 /usr/share/doc/dmsetup 16 /usr/share/doc/libapparmor1 32 /usr/share/doc/slurm 52 /usr/share/doc/install-info 12 /usr/share/doc/python-apt-common 12 /usr/share/doc/binutils-common 12 /usr/share/doc/linux-headers-generic 12 /usr/share/doc/libmnl0 156 /usr/share/doc/libgnutls30 40 /usr/share/doc/vim-tiny 76 /usr/share/doc/libdbus-1-3 12 /usr/share/doc/python3-distupgrade 20 /usr/share/doc/logrotate 32 /usr/share/doc/libc-bin 152 /usr/share/doc/gdisk 12 /usr/share/doc/python3-oauthlib 12 /usr/share/doc/linux-image-4.15.0-70-generic 8 /usr/share/doc/libpolkit-agent-1-0 20 /usr/share/doc/htop 12 /usr/share/doc/libpipeline1 8 /usr/share/doc/strace/examples 36 /usr/share/doc/strace 16 /usr/share/doc/cgroupfs-mount 12 /usr/share/doc/python3-openssl 12 /usr/share/doc/libmspack0 16 /usr/share/doc/build-essential 28 /usr/share/doc/libsmartcols1 12 /usr/share/doc/libnfnetlink0 16 /usr/share/doc/iw 12 /usr/share/doc/python3-attr 24 /usr/share/doc/libdumbnet1 16 /usr/share/doc/ubuntu-release-upgrader-core 12 /usr/share/doc/python3-jinja2 12 /usr/share/doc/libbind9-160 12 /usr/share/doc/init 12 /usr/share/doc/ubuntu-keyring 12 /usr/share/doc/command-not-found-data 12 /usr/share/doc/ncurses-bin 16 /usr/share/doc/gpgsm 48 /usr/share/doc/libpcre3 12 /usr/share/doc/lxcfs 24 /usr/share/doc/libcurl3-gnutls 28 /usr/share/doc/libfribidi0 8 /usr/share/doc/liblvm2app2.2 8 /usr/share/doc/pciutils/examples 24 /usr/share/doc/pciutils 12 /usr/share/doc/mdadm/examples 168 /usr/share/doc/mdadm 8 /usr/share/doc/cryptsetup/examples 240 /usr/share/doc/cryptsetup 44 /usr/share/doc/python3-httplib2 12 /usr/share/doc/command-not-found 68 /usr/share/doc/uidmap 12 /usr/share/doc/pollinate 28 /usr/share/doc/python3-gdbm 40 /usr/share/doc/fonts-ubuntu-console 12 /usr/share/doc/lshw 20 /usr/share/doc/libsensors4 24 /usr/share/doc/fdisk 12 /usr/share/doc/ubuntu-standard 20 /usr/share/doc/runc 12 /usr/share/doc/libattr1 8 /usr/share/doc/gpgconf/examples 32 /usr/share/doc/gpgconf 4 /usr/share/doc/linux-image-unsigned-4.15.0-72-generic 60 /usr/share/doc/open-iscsi 84 /usr/share/doc/dirmngr 12 /usr/share/doc/libacl1 24 /usr/share/doc/libdrm-common 8 /usr/share/doc/xz-utils/extra/scanlzma 8 /usr/share/doc/xz-utils/extra/7z2lzma 20 /usr/share/doc/xz-utils/extra 64 /usr/share/doc/xz-utils 16 /usr/share/doc/libpopt0 28 /usr/share/doc/at 12 /usr/share/doc/libdns-export1100 16 /usr/share/doc/libroken18-heimdal 12 /usr/share/doc/info 36 /usr/share/doc/iputils-tracepath 16 /usr/share/doc/libuv1 8 /usr/share/doc/libreadline7/examples 32 /usr/share/doc/libreadline7 156 /usr/share/doc/iptables/html 192 /usr/share/doc/iptables 744 /usr/share/doc/python3.6 8 /usr/share/doc/nano/examples 180 /usr/share/doc/nano 12 /usr/share/doc/thermald 156 /usr/share/doc/libglib2.0-0 32 /usr/share/doc/libip6tc0 16 /usr/share/doc/python3-twisted-bin 12 /usr/share/doc/librtmp1 16 /usr/share/doc/ncurses-term 20 /usr/share/doc/libdb5.3 16 /usr/share/doc/bcache-tools 44 /usr/share/doc/liblzma5 16 /usr/share/doc/pastebinit 12 /usr/share/doc/libaudit1 16 /usr/share/doc/libzstd1 36 /usr/share/doc/dosfstools 16 /usr/share/doc/libedit2 32 /usr/share/doc/libc-dev-bin 24 /usr/share/doc/libxml2 20 /usr/share/doc/os-prober 8 /usr/share/doc/linux-generic 88 /usr/share/doc/bash 12 /usr/share/doc/busybox-initramfs 12 /usr/share/doc/python3-netifaces 36 /usr/share/doc/iputils-ping 12 /usr/share/doc/libnewt0.52 56 /usr/share/doc/time 8 /usr/share/doc/libfreetype6/pcf 72 /usr/share/doc/libfreetype6 16 /usr/share/doc/python3-jsonpatch 16 /usr/share/doc/docker 12 /usr/share/doc/zlib1g 12 /usr/share/doc/xdelta3 12 /usr/share/doc/libutempter0 20 /usr/share/doc/hdparm/wiper 8 /usr/share/doc/hdparm/contrib 52 /usr/share/doc/hdparm 12 /usr/share/doc/ucf/examples 24 /usr/share/doc/ucf 20 /usr/share/doc/libxext6 20 /usr/share/doc/libdbus-glib-1-2 20 /usr/share/doc/libgeoip1 28 /usr/share/doc/liblzo2-2 24 /usr/share/doc/base-files 16 /usr/share/doc/libtext-wrapi18n-perl 16 /usr/share/doc/iproute2 12 /usr/share/doc/libhcrypto4-heimdal 12 /usr/share/doc/ubuntu-minimal 16 /usr/share/doc/python3-idna 124 /usr/share/doc/linux-modules-4.15.0-70-generic 12 /usr/share/doc/libpam-cap 16 /usr/share/doc/systemd-sysv 12 /usr/share/doc/libevent-2.1-6 8 /usr/share/doc/popularity-contest/examples/cgi-bin 60 /usr/share/doc/popularity-contest/examples/bin 72 /usr/share/doc/popularity-contest/examples 92 /usr/share/doc/popularity-contest 12 /usr/share/doc/python3-update-manager 12 /usr/share/doc/libeatmydata1 12 /usr/share/doc/libatm1 8 /usr/share/doc/mount/examples 36 /usr/share/doc/mount 16 /usr/share/doc/gpg-wks-client 20 /usr/share/doc/udev 8 /usr/share/doc/python3-newt 28 /usr/share/doc/bash-completion 12 /usr/share/doc/linux-image-4.15.0-72-generic 12 /usr/share/doc/bridge-utils/examples 64 /usr/share/doc/bridge-utils 468 /usr/share/doc/manpages 124 /usr/share/doc/perl-modules-5.26 20 /usr/share/doc/iftop 12 /usr/share/doc/libxcb1 12 /usr/share/doc/overlayroot 16 /usr/share/doc/libgirepository-1.0-1 16 /usr/share/doc/ebtables 20 /usr/share/doc/libkmod2 12 /usr/share/doc/libpsl5 12 /usr/share/doc/libisccc160 28 /usr/share/doc/libpython3-dev 60 /usr/share/doc/tar 20 /usr/share/doc/bc/examples 108 /usr/share/doc/bc 12 /usr/share/doc/linux-image-generic 12 /usr/share/doc/python3-configobj 8 /usr/share/doc/bzip2 12 /usr/share/doc/python3-constantly 124 /usr/share/doc/linux-headers-4.15.0-70-generic 16 /usr/share/doc/python3-jwt 8 /usr/share/doc/kbd/examples 8 /usr/share/doc/kbd/scancodes 68 /usr/share/doc/kbd/charsets 44 /usr/share/doc/kbd/font-formats 164 /usr/share/doc/kbd 36 /usr/share/doc/amd64-microcode 12 /usr/share/doc/libpolkit-gobject-1-0 16 /usr/share/doc/libheimbase1-heimdal 12 /usr/share/doc/cloud-initramfs-dyn-netconf 16 /usr/share/doc/libudev1 60 /usr/share/doc/python3.6-minimal 20 /usr/share/doc/libjson-c3 76 /usr/share/doc/libkrb5support0 16 /usr/share/doc/gpg-wks-server 24 /usr/share/doc/python3-software-properties 12 /usr/share/doc/gir1.2-glib-2.0 8 /usr/share/doc/fakeroot 16 /usr/share/doc/liblwres160 12 /usr/share/doc/bind9-host 20 /usr/share/doc/psmisc 52 /usr/share/doc/libxslt1.1 12 /usr/share/doc/whiptail 12 /usr/share/doc/libgssapi3-heimdal 12 /usr/share/doc/python-pip-whl 144 /usr/share/doc/gcc-7-base/gcc 24 /usr/share/doc/gcc-7-base/itm 72 /usr/share/doc/gcc-7-base/gomp 16 /usr/share/doc/gcc-7-base/sanitizer 8 /usr/share/doc/gcc-7-base/mpx 436 /usr/share/doc/gcc-7-base/C++ 12 /usr/share/doc/gcc-7-base/quadmath 8 /usr/share/doc/gcc-7-base/cilkrts 1048 /usr/share/doc/gcc-7-base 192 /usr/share/doc/systemd 36 /usr/share/doc/jq 12 /usr/share/doc/libxau6 12 /usr/share/doc/ssh-import-id 48 /usr/share/doc/linux-libc-dev 8 /usr/share/doc/software-properties-common 24 /usr/share/doc/python3-lib2to3 12 /usr/share/doc/grub-gfxpayload-lists 84 /usr/share/doc/gcc-8-base 8 /usr/share/doc/ufw/examples 32 /usr/share/doc/ufw 28 /usr/share/doc/libidn11 28 /usr/share/doc/xkb-data 184 /usr/share/doc/linux-headers-4.15.0-66 20 /usr/share/doc/debianutils 12 /usr/share/doc/cloud-guest-utils 64 /usr/share/doc/gnupg 136 /usr/share/doc/coreutils 20 /usr/share/doc/tcpdump/examples 44 /usr/share/doc/tcpdump 20 /usr/share/doc/iso-codes 32 /usr/share/doc/keyboard-configuration 12 /usr/share/doc/libplymouth4 12 /usr/share/doc/python3-chardet 20 /usr/share/doc/init-system-helpers 100 /usr/share/doc/python3/python-policy.html 144 /usr/share/doc/python3 12 /usr/share/doc/libgpm2 24 /usr/share/doc/libfakeroot 12 /usr/share/doc/python3-cryptography 12 /usr/share/doc/python3-colorama 24 /usr/share/doc/python3-xdg 28 /usr/share/doc/libpython3-stdlib 32 /usr/share/doc/multiarch-support 60 /usr/share/doc/docker.io 20 /usr/share/doc/apparmor 16 /usr/share/doc/lxd 32 /usr/share/doc/libjq1 16 /usr/share/doc/libsqlite3-0 40 /usr/share/doc/util-linux/examples 244 /usr/share/doc/util-linux/releases 432 /usr/share/doc/util-linux 64 /usr/share/doc/libx11-6 2024 /usr/share/doc/git/RelNotes 12 /usr/share/doc/git/contrib/git-jump 260 /usr/share/doc/git/contrib/examples 20 /usr/share/doc/git/contrib/stats 12 /usr/share/doc/git/contrib/update-unicode 36 /usr/share/doc/git/contrib/coccinelle 20 /usr/share/doc/git/contrib/contacts 36 /usr/share/doc/git/contrib/persistent-https 20 /usr/share/doc/git/contrib/svn-fe 16 /usr/share/doc/git/contrib/git-shell-commands 8 /usr/share/doc/git/contrib/long-running-filter 40 /usr/share/doc/git/contrib/fast-import 8 /usr/share/doc/git/contrib/workdir 28 /usr/share/doc/git/contrib/buildsystems/Generators 60 /usr/share/doc/git/contrib/buildsystems 16 /usr/share/doc/git/contrib/remote-helpers 16 /usr/share/doc/git/contrib/hg-to-git 16 /usr/share/doc/git/contrib/diff-highlight/t 56 /usr/share/doc/git/contrib/diff-highlight 12 /usr/share/doc/git/contrib/thunderbird-patch-inline 44 /usr/share/doc/git/contrib/subtree/t 120 /usr/share/doc/git/contrib/subtree 16 /usr/share/doc/git/contrib/credential/wincred 12 /usr/share/doc/git/contrib/credential/osxkeychain 20 /usr/share/doc/git/contrib/credential/gnome-keyring 20 /usr/share/doc/git/contrib/credential/libsecret 28 /usr/share/doc/git/contrib/credential/netrc 100 /usr/share/doc/git/contrib/credential 896 /usr/share/doc/git/contrib 2968 /usr/share/doc/git 16 /usr/share/doc/libsasl2-modules 36 /usr/share/doc/libbsd0 12 /usr/share/doc/python3-urllib3 8 /usr/share/doc/libp11-kit0/examples 32 /usr/share/doc/libp11-kit0 40 /usr/share/doc/libnghttp2-14 12 /usr/share/doc/libdns1100 12 /usr/share/doc/netplan.io 12 /usr/share/doc/python3-distro-info 12 /usr/share/doc/python3-service-identity 120 /usr/share/doc/libperl5.26 32 /usr/share/doc/libpam0g 16 /usr/share/doc/sensible-utils 12 /usr/share/doc/python3-requests-unixsocket 20 /usr/share/doc/python3-keyring 24 /usr/share/doc/libcurl4 12 /usr/share/doc/geoip-database 12 /usr/share/doc/publicsuffix/examples 48 /usr/share/doc/publicsuffix 8 /usr/share/doc/plymouth-theme-ubuntu-text 12 /usr/share/doc/python3-pyasn1-modules 8 /usr/share/doc/libpam-modules-bin 20 /usr/share/doc/nmap/style 80 /usr/share/doc/nmap 28 /usr/share/doc/libidn2-0 4 /usr/share/doc/libext2fs 16 /usr/share/doc/tzdata 8 /usr/share/doc/python3-apport 8 /usr/share/doc/sysvinit-utils 48 /usr/share/doc/linux-modules-extra-4.15.0-72-generic 124 /usr/share/doc/linux-headers-4.15.0-70 24 /usr/share/doc/python3-debian/examples/debtags 20 /usr/share/doc/python3-debian/examples/debfile 12 /usr/share/doc/python3-debian/examples/changelog 8 /usr/share/doc/python3-debian/examples/copyright 20 /usr/share/doc/python3-debian/examples/deb822 88 /usr/share/doc/python3-debian/examples 128 /usr/share/doc/python3-debian 12 /usr/share/doc/libaudit-common 28 /usr/share/doc/isc-dhcp-client 32 /usr/share/doc/libxtables12 16 /usr/share/doc/python3-twisted 32 /usr/share/doc/ltrace 12 /usr/share/doc/libseccomp2 12 /usr/share/doc/libselinux1 24 /usr/share/doc/libtinfo5 12 /usr/share/doc/libmpc3 24 /usr/share/doc/libtasn1-6 16 /usr/share/doc/libisl19 116 /usr/share/doc/gettext-base 20 /usr/share/doc/libsigsegv2 56 /usr/share/doc/cron/examples 96 /usr/share/doc/cron 12 /usr/share/doc/grub-legacy-ec2 68 /usr/share/doc/libgssapi-krb5-2 44 /usr/share/doc/liblxc-common/examples 52 /usr/share/doc/liblxc-common 40 /usr/share/doc/vim 68 /usr/share/doc/login 12 /usr/share/doc/python3-asn1crypto 12 /usr/share/doc/xdg-user-dirs 16 /usr/share/doc/libicu60 12 /usr/share/doc/libalgorithm-diff-xs-perl 12 /usr/share/doc/libhx509-5-heimdal 8 /usr/share/doc/libss2 40 /usr/share/doc/wget 12 /usr/share/doc/libyaml-0-2 12 /usr/share/doc/rsync/examples 52 /usr/share/doc/rsync/scripts 100 /usr/share/doc/rsync 16 /usr/share/doc/debconf 16 /usr/share/doc/python3-yaml 28 /usr/share/doc/bsdmainutils 24 /usr/share/doc/libmount1 16 /usr/share/doc/libsystemd0 32 /usr/share/doc/telnet 12 /usr/share/doc/libcap-ng0 32 /usr/share/doc/libiptc0 24 /usr/share/doc/man-db/examples 292 /usr/share/doc/man-db 12 /usr/share/doc/ubuntu-advantage-tools 12 /usr/share/doc/cryptsetup-bin 20 /usr/share/doc/lsb-base 16 /usr/share/doc/lsb-release 32 /usr/share/doc/libldap-2.4-2 24 /usr/share/doc/crda 4 /usr/share/doc/linux-image-unsigned-4.15.0-70-generic 64 /usr/share/doc/libpython3.6-minimal 16 /usr/share/doc/libsasl2-2 12 /usr/share/doc/libtext-iconv-perl 12 /usr/share/doc/squashfs-tools 16 /usr/share/doc/curl 20 /usr/share/doc/xfsprogs 12 /usr/share/doc/mtr-tiny 32 /usr/share/doc/libparted2 24 /usr/share/doc/liberror-perl/examples/next-in-loop 36 /usr/share/doc/liberror-perl/examples 48 /usr/share/doc/liberror-perl 12 /usr/share/doc/screen/examples 36 /usr/share/doc/screen/terminfo 120 /usr/share/doc/screen 8 /usr/share/doc/libpolkit-backend-1-0 24 /usr/share/doc/python3-pkg-resources 12 /usr/share/doc/netbase 12 /usr/share/doc/landscape-common 12 /usr/share/doc/wireless-regdb 28 /usr/share/doc/libuuid1 12 /usr/share/doc/python3-serial 8 /usr/share/doc/libpam-runtime 72 /usr/share/doc/apport 16 /usr/share/doc/python3-zope.interface 56 /usr/share/doc/libx11-data 28 /usr/share/doc/libpcap0.8 8 /usr/share/doc/libreadline5/examples 32 /usr/share/doc/libreadline5 12 /usr/share/doc/initramfs-tools 16 /usr/share/doc/libblas3 8 /usr/share/doc/libpam-modules/examples 16 /usr/share/doc/libpam-modules 32 /usr/share/doc/libip4tc0 24 /usr/share/doc/isc-dhcp-common 20 /usr/share/doc/policykit-1 60 /usr/share/doc/libgcrypt20 12 /usr/share/doc/python3-six 20 /usr/share/doc/libnuma1 20 /usr/share/doc/liblocale-gettext-perl 48 /usr/share/doc/mawk/examples 68 /usr/share/doc/mawk 8 /usr/share/doc/btrfs-tools 112 /usr/share/doc/libpng16-16 28 /usr/share/doc/libklibc 68 /usr/share/doc/make 8 /usr/share/doc/openssh-client/examples 108 /usr/share/doc/openssh-client 44 /usr/share/doc/vim-common 16 /usr/share/doc/e2fsprogs 40 /usr/share/doc/xxd 56 /usr/share/doc/findutils 8 /usr/share/doc/grub-common/examples 72 /usr/share/doc/grub-common 28 /usr/share/doc/libalgorithm-diff-perl/examples 44 /usr/share/doc/libalgorithm-diff-perl 16 /usr/share/doc/friendly-recovery 12 /usr/share/doc/sysstat/xml 28 /usr/share/doc/sysstat/examples 84 /usr/share/doc/sysstat 12 /usr/share/doc/libunwind8 28 /usr/share/doc/plymouth 12 /usr/share/doc/libdebconfclient0 20 /usr/share/doc/ftp 32 /usr/share/doc/busybox-static/examples/udhcp 48 /usr/share/doc/busybox-static/examples 68 /usr/share/doc/busybox-static 16 /usr/share/doc/libexpat1 12 /usr/share/doc/irqbalance 16 /usr/share/doc/libprocps6 8 /usr/share/doc/libgdbm-compat4 12 /usr/share/doc/apt-utils/examples 20 /usr/share/doc/apt-utils 16 /usr/share/doc/usbutils 24 /usr/share/doc/gzip 64 /usr/share/doc/lsof/examples 208 /usr/share/doc/lsof 76 /usr/share/doc/krb5-locales 16 /usr/share/doc/libsasl2-modules-db 28 /usr/share/doc/parted 8 /usr/share/doc/fuse 12 /usr/share/doc/libcom-err2 28 /usr/share/doc/dbus 48 /usr/share/doc/linux-headers-4.15.0-72-generic 12 /usr/share/doc/libffi6 48 /usr/share/doc/grep 12 /usr/share/doc/liblua5.3-0 16 /usr/share/doc/libcap2-bin 12 /usr/share/doc/libpam-systemd 12 /usr/share/doc/libxmuu1 20 /usr/share/doc/initramfs-tools-core/examples 44 /usr/share/doc/initramfs-tools-core 12 /usr/share/doc/libsemanage-common 12 /usr/share/doc/libasn1-8-heimdal 12 /usr/share/doc/libgdbm5 16 /usr/share/doc/libargon2-0 16 /usr/share/doc/initramfs-tools-bin 24 /usr/share/doc/gnupg-l10n 12 /usr/share/doc/python3-hyperlink 12 /usr/share/doc/python3-requests 28 /usr/share/doc/eject 24 /usr/share/doc/sudo/examples 108 /usr/share/doc/sudo 12 /usr/share/doc/python3-secretstorage 92 /usr/share/doc/gawk/examples/network 84 /usr/share/doc/gawk/examples/prog 28 /usr/share/doc/gawk/examples/misc 28 /usr/share/doc/gawk/examples/data 108 /usr/share/doc/gawk/examples/lib 344 /usr/share/doc/gawk/examples 376 /usr/share/doc/gawk 28 /usr/share/doc/libldap-common 12 /usr/share/doc/python3-cffi-backend 20 /usr/share/doc/cpp 12 /usr/share/doc/python3-problem-report 28 /usr/share/doc/pinentry-curses 16 /usr/share/doc/cloud-init/examples/seed 220 /usr/share/doc/cloud-init/examples 252 /usr/share/doc/cloud-init 12 /usr/share/doc/python3-gi 12 /usr/share/doc/libext2fs2 8 /usr/share/doc/libxmlsec1-openssl 8 /usr/share/doc/adduser/examples/adduser.local.conf.examples/skel.other 16 /usr/share/doc/adduser/examples/adduser.local.conf.examples/skel 40 /usr/share/doc/adduser/examples/adduser.local.conf.examples 104 /usr/share/doc/adduser/examples 120 /usr/share/doc/adduser 16 /usr/share/doc/ubuntu-fan 16 /usr/share/doc/libisc-export169 20 /usr/share/doc/update-manager-core 20 /usr/share/doc/unattended-upgrades 28 /usr/share/doc/python3-minimal 16 /usr/share/doc/python3-json-pointer 68 /usr/share/doc/shared-mime-info/shared-mime-info-spec.html 252 /usr/share/doc/shared-mime-info 24 /usr/share/doc/snapd 24 /usr/share/doc/uuid-runtime 212 /usr/share/doc/perl 12 /usr/share/doc/libwind0-heimdal 16 /usr/share/doc/open-vm-tools 12 /usr/share/doc/hostname 8 /usr/share/doc/nplan 20 /usr/share/doc/cpio 16 /usr/share/doc/binutils/gas 16 /usr/share/doc/binutils/gprof 12 /usr/share/doc/binutils/bfd 20 /usr/share/doc/binutils/ld 112 /usr/share/doc/binutils 12 /usr/share/doc/apport-symptoms 24200 /usr/share/doc 1116 /usr/share/info 8 /usr/share/readline 12 /usr/share/iptables 184 /usr/share/nano 12 /usr/share/os-prober 40 /usr/share/base-files 104 /usr/share/gcc-8/python/libstdcxx/v6 112 /usr/share/gcc-8/python/libstdcxx 116 /usr/share/gcc-8/python 120 /usr/share/gcc-8 16 /usr/share/popularity-contest 12 /usr/share/bash-completion/helpers 2668 /usr/share/bash-completion/completions 2756 /usr/share/bash-completion 172 /usr/share/python-apt/templates 176 /usr/share/python-apt 4 /usr/share/glib-2.0/schemas 8 /usr/share/glib-2.0 20 /usr/share/pyshared 20 /usr/share/pam-configs 76 /usr/share/mime/x-content 220 /usr/share/mime/audio 2212 /usr/share/mime/packages 20 /usr/share/mime/font 32 /usr/share/mime/message 120 /usr/share/mime/video 20 /usr/share/mime/model 8 /usr/share/mime/x-epoc 376 /usr/share/mime/image 1768 /usr/share/mime/application 32 /usr/share/mime/inode 480 /usr/share/mime/text 44 /usr/share/mime/multipart 5708 /usr/share/mime 8 /usr/share/landscape 3380 /usr/share/i18n/charmaps 10208 /usr/share/i18n/locales 13600 /usr/share/i18n 64 /usr/share/pixmaps 20 /usr/share/systemd 20 /usr/share/grub-gfxpayload-lists/blacklist 24 /usr/share/grub-gfxpayload-lists 32 /usr/share/ufw/iptables 504 /usr/share/ufw/messages 584 /usr/share/ufw 8 /usr/share/debianutils 296 /usr/share/gnupg 36 /usr/share/language-tools 1472 /usr/share/iso-codes/json 1476 /usr/share/iso-codes 24 /usr/share/python3/runtime.d 44 /usr/share/python3/debpython/__pycache__ 92 /usr/share/python3/debpython 16 /usr/share/python3/__pycache__ 8 /usr/share/python3/bcep 20 /usr/share/python3/dist 184 /usr/share/python3 20 /usr/share/docker.io/contrib 24 /usr/share/docker.io 36 /usr/share/zoneinfo/Atlantic 4 /usr/share/zoneinfo/SystemV 4 /usr/share/zoneinfo/Canada 132 /usr/share/zoneinfo/Pacific 76 /usr/share/zoneinfo/Africa 168 /usr/share/zoneinfo/Europe 4 /usr/share/zoneinfo/Brazil 8 /usr/share/zoneinfo/Chile 8 /usr/share/zoneinfo/Arctic 44 /usr/share/zoneinfo/Antarctica 52 /usr/share/zoneinfo/Australia 36 /usr/share/zoneinfo/Indian 16 /usr/share/zoneinfo/America/North_Dakota 32 /usr/share/zoneinfo/America/Argentina 8 /usr/share/zoneinfo/America/Kentucky 28 /usr/share/zoneinfo/America/Indiana 540 /usr/share/zoneinfo/America 4 /usr/share/zoneinfo/US 288 /usr/share/zoneinfo/Asia 108 /usr/share/zoneinfo/Etc 36 /usr/share/zoneinfo/right/Atlantic 4 /usr/share/zoneinfo/right/SystemV 4 /usr/share/zoneinfo/right/Canada 132 /usr/share/zoneinfo/right/Pacific 76 /usr/share/zoneinfo/right/Africa 168 /usr/share/zoneinfo/right/Europe 4 /usr/share/zoneinfo/right/Brazil 8 /usr/share/zoneinfo/right/Chile 8 /usr/share/zoneinfo/right/Arctic 44 /usr/share/zoneinfo/right/Antarctica 52 /usr/share/zoneinfo/right/Australia 36 /usr/share/zoneinfo/right/Indian 16 /usr/share/zoneinfo/right/America/North_Dakota 32 /usr/share/zoneinfo/right/America/Argentina 8 /usr/share/zoneinfo/right/America/Kentucky 28 /usr/share/zoneinfo/right/America/Indiana 556 /usr/share/zoneinfo/right/America 4 /usr/share/zoneinfo/right/US 288 /usr/share/zoneinfo/right/Asia 108 /usr/share/zoneinfo/right/Etc 4 /usr/share/zoneinfo/right/Mexico 1688 /usr/share/zoneinfo/right 4 /usr/share/zoneinfo/Mexico 4 /usr/share/zoneinfo/posix/Atlantic 4 /usr/share/zoneinfo/posix/SystemV 4 /usr/share/zoneinfo/posix/Canada 4 /usr/share/zoneinfo/posix/Pacific 4 /usr/share/zoneinfo/posix/Africa 12 /usr/share/zoneinfo/posix/Europe 4 /usr/share/zoneinfo/posix/Brazil 4 /usr/share/zoneinfo/posix/Chile 4 /usr/share/zoneinfo/posix/Arctic 4 /usr/share/zoneinfo/posix/Antarctica 4 /usr/share/zoneinfo/posix/Australia 4 /usr/share/zoneinfo/posix/Indian 4 /usr/share/zoneinfo/posix/America/North_Dakota 4 /usr/share/zoneinfo/posix/America/Argentina 4 /usr/share/zoneinfo/posix/America/Kentucky 4 /usr/share/zoneinfo/posix/America/Indiana 36 /usr/share/zoneinfo/posix/America 4 /usr/share/zoneinfo/posix/US 12 /usr/share/zoneinfo/posix/Asia 4 /usr/share/zoneinfo/posix/Etc 4 /usr/share/zoneinfo/posix/Mexico 120 /usr/share/zoneinfo/posix 3540 /usr/share/zoneinfo 76 /usr/share/doc-base 12 /usr/share/grub/default 2508 /usr/share/grub 8 /usr/share/sensible-utils/bin 12 /usr/share/sensible-utils 244 /usr/share/publicsuffix 1108 /usr/share/misc 60 /usr/share/nmap/nselib/data/psexec 24 /usr/share/nmap/nselib/data/jdwp-class 3364 /usr/share/nmap/nselib/data 6616 /usr/share/nmap/nselib 4744 /usr/share/nmap/scripts 20040 /usr/share/nmap 8 /usr/share/polkit-1/rules.d 120 /usr/share/polkit-1/actions 132 /usr/share/polkit-1 252 /usr/share/zsh/vendor-completions 256 /usr/share/zsh 40 /usr/share/keyrings 20 /usr/share/debhelper/autoscripts 24 /usr/share/debhelper 812 /usr/share/vim/vim80/indent 20 /usr/share/vim/vim80/pack/dist/opt/termdebug/plugin 24 /usr/share/vim/vim80/pack/dist/opt/termdebug 8 /usr/share/vim/vim80/pack/dist/opt/swapmouse/plugin 12 /usr/share/vim/vim80/pack/dist/opt/swapmouse 28 /usr/share/vim/vim80/pack/dist/opt/matchit/doc 36 /usr/share/vim/vim80/pack/dist/opt/matchit/plugin 68 /usr/share/vim/vim80/pack/dist/opt/matchit 16 /usr/share/vim/vim80/pack/dist/opt/justify/plugin 20 /usr/share/vim/vim80/pack/dist/opt/justify 8 /usr/share/vim/vim80/pack/dist/opt/dvorak/plugin 12 /usr/share/vim/vim80/pack/dist/opt/dvorak/dvorak 24 /usr/share/vim/vim80/pack/dist/opt/dvorak 8 /usr/share/vim/vim80/pack/dist/opt/editexisting/plugin 12 /usr/share/vim/vim80/pack/dist/opt/editexisting 8 /usr/share/vim/vim80/pack/dist/opt/shellmenu/plugin 12 /usr/share/vim/vim80/pack/dist/opt/shellmenu 176 /usr/share/vim/vim80/pack/dist/opt 180 /usr/share/vim/vim80/pack/dist 184 /usr/share/vim/vim80/pack 7088 /usr/share/vim/vim80/doc 136 /usr/share/vim/vim80/print 80 /usr/share/vim/vim80/colors 20 /usr/share/vim/vim80/macros/urm 16 /usr/share/vim/vim80/macros/life 48 /usr/share/vim/vim80/macros/maze 16 /usr/share/vim/vim80/macros/hanoi 144 /usr/share/vim/vim80/macros 84 /usr/share/vim/vim80/plugin 2356 /usr/share/vim/vim80/tutor 3604 /usr/share/vim/vim80/spell 180 /usr/share/vim/vim80/lang/it/LC_MESSAGES 184 /usr/share/vim/vim80/lang/it 176 /usr/share/vim/vim80/lang/ja.euc-jp/LC_MESSAGES 180 /usr/share/vim/vim80/lang/ja.euc-jp 144 /usr/share/vim/vim80/lang/no/LC_MESSAGES 148 /usr/share/vim/vim80/lang/no 24 /usr/share/vim/vim80/lang/en_GB/LC_MESSAGES 28 /usr/share/vim/vim80/lang/en_GB 216 /usr/share/vim/vim80/lang/uk/LC_MESSAGES 220 /usr/share/vim/vim80/lang/uk 180 /usr/share/vim/vim80/lang/ca/LC_MESSAGES 184 /usr/share/vim/vim80/lang/ca 168 /usr/share/vim/vim80/lang/pl/LC_MESSAGES 172 /usr/share/vim/vim80/lang/pl 176 /usr/share/vim/vim80/lang/ru.cp1251/LC_MESSAGES 180 /usr/share/vim/vim80/lang/ru.cp1251 128 /usr/share/vim/vim80/lang/zh_CN.cp936/LC_MESSAGES 132 /usr/share/vim/vim80/lang/zh_CN.cp936 124 /usr/share/vim/vim80/lang/af/LC_MESSAGES 128 /usr/share/vim/vim80/lang/af 128 /usr/share/vim/vim80/lang/zh_CN/LC_MESSAGES 132 /usr/share/vim/vim80/lang/zh_CN 112 /usr/share/vim/vim80/lang/cs.cp1250/LC_MESSAGES 116 /usr/share/vim/vim80/lang/cs.cp1250 16 /usr/share/vim/vim80/lang/lv/LC_MESSAGES 20 /usr/share/vim/vim80/lang/lv 172 /usr/share/vim/vim80/lang/pl.UTF-8/LC_MESSAGES 176 /usr/share/vim/vim80/lang/pl.UTF-8 172 /usr/share/vim/vim80/lang/uk.cp1251/LC_MESSAGES 176 /usr/share/vim/vim80/lang/uk.cp1251 112 /usr/share/vim/vim80/lang/zh_TW/LC_MESSAGES 116 /usr/share/vim/vim80/lang/zh_TW 136 /usr/share/vim/vim80/lang/zh_CN.UTF-8/LC_MESSAGES 140 /usr/share/vim/vim80/lang/zh_CN.UTF-8 200 /usr/share/vim/vim80/lang/ja/LC_MESSAGES 204 /usr/share/vim/vim80/lang/ja 220 /usr/share/vim/vim80/lang/ru/LC_MESSAGES 224 /usr/share/vim/vim80/lang/ru 164 /usr/share/vim/vim80/lang/es/LC_MESSAGES 168 /usr/share/vim/vim80/lang/es 144 /usr/share/vim/vim80/lang/sk.cp1250/LC_MESSAGES 148 /usr/share/vim/vim80/lang/sk.cp1250 120 /usr/share/vim/vim80/lang/zh_TW.UTF-8/LC_MESSAGES 124 /usr/share/vim/vim80/lang/zh_TW.UTF-8 112 /usr/share/vim/vim80/lang/cs/LC_MESSAGES 116 /usr/share/vim/vim80/lang/cs 180 /usr/share/vim/vim80/lang/ga/LC_MESSAGES 184 /usr/share/vim/vim80/lang/ga 184 /usr/share/vim/vim80/lang/fr/LC_MESSAGES 188 /usr/share/vim/vim80/lang/fr 176 /usr/share/vim/vim80/lang/eo/LC_MESSAGES 180 /usr/share/vim/vim80/lang/eo 148 /usr/share/vim/vim80/lang/sv/LC_MESSAGES 152 /usr/share/vim/vim80/lang/sv 144 /usr/share/vim/vim80/lang/sk/LC_MESSAGES 148 /usr/share/vim/vim80/lang/sk 176 /usr/share/vim/vim80/lang/ja.sjis/LC_MESSAGES 180 /usr/share/vim/vim80/lang/ja.sjis 108 /usr/share/vim/vim80/lang/nl/LC_MESSAGES 112 /usr/share/vim/vim80/lang/nl 176 /usr/share/vim/vim80/lang/ko.UTF-8/LC_MESSAGES 180 /usr/share/vim/vim80/lang/ko.UTF-8 160 /usr/share/vim/vim80/lang/ko/LC_MESSAGES 164 /usr/share/vim/vim80/lang/ko 180 /usr/share/vim/vim80/lang/pt_BR/LC_MESSAGES 184 /usr/share/vim/vim80/lang/pt_BR 168 /usr/share/vim/vim80/lang/pl.cp1250/LC_MESSAGES 172 /usr/share/vim/vim80/lang/pl.cp1250 140 /usr/share/vim/vim80/lang/vi/LC_MESSAGES 144 /usr/share/vim/vim80/lang/vi 180 /usr/share/vim/vim80/lang/de/LC_MESSAGES 184 /usr/share/vim/vim80/lang/de 144 /usr/share/vim/vim80/lang/nb/LC_MESSAGES 148 /usr/share/vim/vim80/lang/nb 176 /usr/share/vim/vim80/lang/fi/LC_MESSAGES 180 /usr/share/vim/vim80/lang/fi 6936 /usr/share/vim/vim80/lang 264 /usr/share/vim/vim80/compiler 980 /usr/share/vim/vim80/ftplugin 352 /usr/share/vim/vim80/keymap 556 /usr/share/vim/vim80/autoload/xml 24 /usr/share/vim/vim80/autoload/dist 1984 /usr/share/vim/vim80/autoload 6452 /usr/share/vim/vim80/syntax 31744 /usr/share/vim/vim80 4 /usr/share/vim/addons/plugin 8 /usr/share/vim/addons 8 /usr/share/vim/registry 31764 /usr/share/vim 92 /usr/share/man/it/man5 240 /usr/share/man/it/man1 192 /usr/share/man/it/man8 528 /usr/share/man/it 8 /usr/share/man/id/man5 52 /usr/share/man/id/man1 20 /usr/share/man/id/man8 84 /usr/share/man/id 2908 /usr/share/man/man3 52 /usr/share/man/ro/man1 56 /usr/share/man/ro 20 /usr/share/man/da/man5 60 /usr/share/man/da/man1 48 /usr/share/man/da/man8 132 /usr/share/man/da 44 /usr/share/man/pl/man5 200 /usr/share/man/pl/man1 128 /usr/share/man/pl/man8 376 /usr/share/man/pl 32 /usr/share/man/zh_CN/man5 88 /usr/share/man/zh_CN/man1 104 /usr/share/man/zh_CN/man8 228 /usr/share/man/zh_CN 40 /usr/share/man/pt/man5 128 /usr/share/man/pt/man1 40 /usr/share/man/pt/man8 212 /usr/share/man/pt 8 /usr/share/man/zh_TW/man5 20 /usr/share/man/zh_TW/man1 32 /usr/share/man/zh_TW/man8 64 /usr/share/man/zh_TW 80 /usr/share/man/ja/man5 236 /usr/share/man/ja/man1 172 /usr/share/man/ja/man8 492 /usr/share/man/ja 40 /usr/share/man/ru/man5 220 /usr/share/man/ru/man1 132 /usr/share/man/ru/man8 396 /usr/share/man/ru 1176 /usr/share/man/man7 1396 /usr/share/man/man5 40 /usr/share/man/es/man5 204 /usr/share/man/es/man1 112 /usr/share/man/es/man8 360 /usr/share/man/es 8 /usr/share/man/sr/man5 44 /usr/share/man/sr/man1 16 /usr/share/man/sr/man8 72 /usr/share/man/sr 20 /usr/share/man/cs/man5 20 /usr/share/man/cs/man1 36 /usr/share/man/cs/man8 80 /usr/share/man/cs 16 /usr/share/man/tr/man5 64 /usr/share/man/tr/man1 40 /usr/share/man/tr/man8 124 /usr/share/man/tr 104 /usr/share/man/fr/man5 336 /usr/share/man/fr/man1 284 /usr/share/man/fr/man8 728 /usr/share/man/fr 8 /usr/share/man/hu/man5 92 /usr/share/man/hu/man1 8 /usr/share/man/hu/man8 112 /usr/share/man/hu 44 /usr/share/man/sv/man5 176 /usr/share/man/sv/man1 84 /usr/share/man/sv/man8 308 /usr/share/man/sv 56 /usr/share/man/sk/man1 60 /usr/share/man/sk 48 /usr/share/man/zh/man1 52 /usr/share/man/zh 8 /usr/share/man/nl/man7 156 /usr/share/man/nl/man5 256 /usr/share/man/nl/man1 72 /usr/share/man/nl/man8 496 /usr/share/man/nl 1452 /usr/share/man/man2 8 /usr/share/man/ko/man5 24 /usr/share/man/ko/man1 12 /usr/share/man/ko/man8 48 /usr/share/man/ko 16 /usr/share/man/pt_BR/man5 104 /usr/share/man/pt_BR/man1 52 /usr/share/man/pt_BR/man8 176 /usr/share/man/pt_BR 8 /usr/share/man/de/man7 196 /usr/share/man/de/man5 404 /usr/share/man/de/man1 240 /usr/share/man/de/man8 852 /usr/share/man/de 8 /usr/share/man/man6 7116 /usr/share/man/man1 3256 /usr/share/man/man8 56 /usr/share/man/hr/man1 60 /usr/share/man/hr 172 /usr/share/man/man4 12 /usr/share/man/sl/man1 24 /usr/share/man/sl/man8 40 /usr/share/man/sl 8 /usr/share/man/man9 16 /usr/share/man/fi/man1 20 /usr/share/man/fi 23652 /usr/share/man 12 /usr/share/distro-info 28 /usr/share/debconf 12 /usr/share/man-db 48 /usr/share/ubuntu-advantage-tools/modules 52 /usr/share/ubuntu-advantage-tools 12 /usr/share/gettext/its 16 /usr/share/gettext 20 /usr/share/applications 320 /usr/share/screen/utf8encodings 324 /usr/share/screen 28 /usr/share/gdb/auto-load/lib/x86_64-linux-gnu 32 /usr/share/gdb/auto-load/lib 12 /usr/share/gdb/auto-load/usr/lib/x86_64-linux-gnu 16 /usr/share/gdb/auto-load/usr/lib 20 /usr/share/gdb/auto-load/usr 56 /usr/share/gdb/auto-load 60 /usr/share/gdb 16 /usr/share/dns 8 /usr/share/hal/fdi/policy/10osvendor 12 /usr/share/hal/fdi/policy 16 /usr/share/hal/fdi 20 /usr/share/hal 60 /usr/share/apport/symptoms 12 /usr/share/apport/testsuite 80 /usr/share/apport/general-hooks 108 /usr/share/apport/package-hooks 356 /usr/share/apport 172 /usr/share/initramfs-tools/hooks 4 /usr/share/initramfs-tools/modules.d 16 /usr/share/initramfs-tools/scripts/local-block 28 /usr/share/initramfs-tools/scripts/init-top 20 /usr/share/initramfs-tools/scripts/local-bottom 16 /usr/share/initramfs-tools/scripts/init-premount 20 /usr/share/initramfs-tools/scripts/local-premount 16 /usr/share/initramfs-tools/scripts/panic 56 /usr/share/initramfs-tools/scripts/init-bottom 36 /usr/share/initramfs-tools/scripts/local-top 244 /usr/share/initramfs-tools/scripts 16 /usr/share/initramfs-tools/conf-hooks.d 4 /usr/share/initramfs-tools/conf.d 480 /usr/share/initramfs-tools 12 /usr/share/cmake/bash-completion 16 /usr/share/cmake 60 /usr/share/pastebin.d 1460 /usr/share/consolefonts 112 /usr/share/consoletrans 8 /usr/share/plymouth/themes/tribar 8 /usr/share/plymouth/themes/details 8 /usr/share/plymouth/themes/text 12 /usr/share/plymouth/themes/ubuntu-text 40 /usr/share/plymouth/themes 52 /usr/share/plymouth 52 /usr/share/git-core/templates/hooks 8 /usr/share/git-core/templates/info 4 /usr/share/git-core/templates/branches 72 /usr/share/git-core/templates 52 /usr/share/git-core/contrib/hooks 56 /usr/share/git-core/contrib 132 /usr/share/git-core 52 /usr/share/console-setup 540 /usr/share/lintian/overrides 544 /usr/share/lintian 96 /usr/share/terminfo/e 64 /usr/share/terminfo/f 168 /usr/share/terminfo/g 12 /usr/share/terminfo/E 380 /usr/share/terminfo/v 4 /usr/share/terminfo/1 108 /usr/share/terminfo/q 584 /usr/share/terminfo/x 12 /usr/share/terminfo/j 900 /usr/share/terminfo/a 4 /usr/share/terminfo/X 248 /usr/share/terminfo/m 536 /usr/share/terminfo/d 4 /usr/share/terminfo/4 4 /usr/share/terminfo/P 448 /usr/share/terminfo/w 4 /usr/share/terminfo/Q 4 /usr/share/terminfo/L 8 /usr/share/terminfo/N 4 /usr/share/terminfo/7 16 /usr/share/terminfo/M 4 /usr/share/terminfo/A 4 /usr/share/terminfo/3 4 /usr/share/terminfo/5 112 /usr/share/terminfo/o 152 /usr/share/terminfo/b 356 /usr/share/terminfo/h 240 /usr/share/terminfo/i 8 /usr/share/terminfo/9 108 /usr/share/terminfo/k 360 /usr/share/terminfo/s 596 /usr/share/terminfo/t 4 /usr/share/terminfo/2 292 /usr/share/terminfo/c 56 /usr/share/terminfo/z 108 /usr/share/terminfo/l 4 /usr/share/terminfo/8 20 /usr/share/terminfo/u 380 /usr/share/terminfo/p 508 /usr/share/terminfo/n 100 /usr/share/terminfo/r 4 /usr/share/terminfo/6 7032 /usr/share/terminfo 4 /usr/share/package-data-downloads 40 /usr/share/calendar/de_DE 8 /usr/share/calendar/de_AT 32 /usr/share/calendar/ru_RU 20 /usr/share/calendar/hu_HU 12 /usr/share/calendar/hr_HR 20 /usr/share/calendar/uk_UA 52 /usr/share/calendar/fr_FR 24 /usr/share/calendar/pt_BR 460 /usr/share/calendar 8 /usr/share/bug/apt 12 /usr/share/bug/file 8 /usr/share/bug/procps 12 /usr/share/bug/grub-pc-bin 8 /usr/share/bug/locales 12 /usr/share/bug/libmagic1 8 /usr/share/bug/mime-support 12 /usr/share/bug/vim-tiny 8 /usr/share/bug/logrotate 12 /usr/share/bug/mdadm 12 /usr/share/bug/grub2-common 12 /usr/share/bug/udev 8 /usr/share/bug/bash-completion 12 /usr/share/bug/grub-pc 12 /usr/share/bug/systemd 8 /usr/share/bug/keyboard-configuration 8 /usr/share/bug/init-system-helpers 12 /usr/share/bug/cron 12 /usr/share/bug/vim 8 /usr/share/bug/man-db 8 /usr/share/bug/initramfs-tools 12 /usr/share/bug/grub-common 8 /usr/share/bug/console-setup 8 /usr/share/bug/dbus 8 /usr/share/bug/console-setup-linux 8 /usr/share/bug/binutils 268 /usr/share/bug 8 /usr/share/adduser 32 /usr/share/unattended-upgrades 416 /usr/share/perl/5.26.1/Pod/Simple 64 /usr/share/perl/5.26.1/Pod/Perldoc 28 /usr/share/perl/5.26.1/Pod/Text 1084 /usr/share/perl/5.26.1/Pod 32 /usr/share/perl/5.26.1/Thread 8 /usr/share/perl/5.26.1/CPAN/API 8 /usr/share/perl/5.26.1/CPAN/FTP 16 /usr/share/perl/5.26.1/CPAN/Plugin 20 /usr/share/perl/5.26.1/CPAN/Exception 12 /usr/share/perl/5.26.1/CPAN/Kwalify 84 /usr/share/perl/5.26.1/CPAN/Meta/History 316 /usr/share/perl/5.26.1/CPAN/Meta 16 /usr/share/perl/5.26.1/CPAN/HTTP 8 /usr/share/perl/5.26.1/CPAN/LWP 1004 /usr/share/perl/5.26.1/CPAN 8 /usr/share/perl/5.26.1/PerlIO/via 12 /usr/share/perl/5.26.1/PerlIO 40 /usr/share/perl/5.26.1/Memoize 16 /usr/share/perl/5.26.1/Parse/CPAN 20 /usr/share/perl/5.26.1/Parse 24 /usr/share/perl/5.26.1/Net/FTP 348 /usr/share/perl/5.26.1/Net 20 /usr/share/perl/5.26.1/Test/Builder/IO 8 /usr/share/perl/5.26.1/Test/Builder/Tester 64 /usr/share/perl/5.26.1/Test/Builder 20 /usr/share/perl/5.26.1/Test/Tester 8 /usr/share/perl/5.26.1/Test/use 276 /usr/share/perl/5.26.1/Test 216 /usr/share/perl/5.26.1/File 8 /usr/share/perl/5.26.1/unicore/lib/Blk 12 /usr/share/perl/5.26.1/unicore/lib/CWU 12 /usr/share/perl/5.26.1/unicore/lib/CI 8 /usr/share/perl/5.26.1/unicore/lib/Dia 44 /usr/share/perl/5.26.1/unicore/lib/Ccc 72 /usr/share/perl/5.26.1/unicore/lib/Jg 8 /usr/share/perl/5.26.1/unicore/lib/CE 44 /usr/share/perl/5.26.1/unicore/lib/GCB 184 /usr/share/perl/5.26.1/unicore/lib/Scx 180 /usr/share/perl/5.26.1/unicore/lib/Sc 60 /usr/share/perl/5.26.1/unicore/lib/Bc 8 /usr/share/perl/5.26.1/unicore/lib/Dep 8 /usr/share/perl/5.26.1/unicore/lib/Cased 60 /usr/share/perl/5.26.1/unicore/lib/Dt 12 /usr/share/perl/5.26.1/unicore/lib/CWCF 8 /usr/share/perl/5.26.1/unicore/lib/Math 8 /usr/share/perl/5.26.1/unicore/lib/Hex 72 /usr/share/perl/5.26.1/unicore/lib/Age 60 /usr/share/perl/5.26.1/unicore/lib/WB 8 /usr/share/perl/5.26.1/unicore/lib/Hyphen 8 /usr/share/perl/5.26.1/unicore/lib/UIdeo 8 /usr/share/perl/5.26.1/unicore/lib/QMark 12 /usr/share/perl/5.26.1/unicore/lib/NFKCQC 8 /usr/share/perl/5.26.1/unicore/lib/BidiM 156 /usr/share/perl/5.26.1/unicore/lib/Gc 88 /usr/share/perl/5.26.1/unicore/lib/InSC 16 /usr/share/perl/5.26.1/unicore/lib/CWKCF 20 /usr/share/perl/5.26.1/unicore/lib/NFKDQC 8 /usr/share/perl/5.26.1/unicore/lib/Dash 8 /usr/share/perl/5.26.1/unicore/lib/PatSyn 8 /usr/share/perl/5.26.1/unicore/lib/BidiC 200 /usr/share/perl/5.26.1/unicore/lib/Nv 12 /usr/share/perl/5.26.1/unicore/lib/XIDS 52 /usr/share/perl/5.26.1/unicore/lib/InPC 12 /usr/share/perl/5.26.1/unicore/lib/XIDC 12 /usr/share/perl/5.26.1/unicore/lib/Lower 8 /usr/share/perl/5.26.1/unicore/lib/Ext 8 /usr/share/perl/5.26.1/unicore/lib/PCM 8 /usr/share/perl/5.26.1/unicore/lib/Hst 16 /usr/share/perl/5.26.1/unicore/lib/GrBase 12 /usr/share/perl/5.26.1/unicore/lib/IDC 24 /usr/share/perl/5.26.1/unicore/lib/Ea 132 /usr/share/perl/5.26.1/unicore/lib/In 132 /usr/share/perl/5.26.1/unicore/lib/Perl 8 /usr/share/perl/5.26.1/unicore/lib/STerm 8 /usr/share/perl/5.26.1/unicore/lib/CompEx 12 /usr/share/perl/5.26.1/unicore/lib/CWL 8 /usr/share/perl/5.26.1/unicore/lib/Term 24 /usr/share/perl/5.26.1/unicore/lib/Jt 12 /usr/share/perl/5.26.1/unicore/lib/Alpha 8 /usr/share/perl/5.26.1/unicore/lib/CWCM 12 /usr/share/perl/5.26.1/unicore/lib/NFCQC 72 /usr/share/perl/5.26.1/unicore/lib/SB 12 /usr/share/perl/5.26.1/unicore/lib/Upper 16 /usr/share/perl/5.26.1/unicore/lib/Nt 96 /usr/share/perl/5.26.1/unicore/lib/Lb 16 /usr/share/perl/5.26.1/unicore/lib/Bpt 8 /usr/share/perl/5.26.1/unicore/lib/DI 12 /usr/share/perl/5.26.1/unicore/lib/IDS 8 /usr/share/perl/5.26.1/unicore/lib/SD 12 /usr/share/perl/5.26.1/unicore/lib/NFDQC 12 /usr/share/perl/5.26.1/unicore/lib/CWT 8 /usr/share/perl/5.26.1/unicore/lib/Ideo 2212 /usr/share/perl/5.26.1/unicore/lib 992 /usr/share/perl/5.26.1/unicore/To 4604 /usr/share/perl/5.26.1/unicore 64 /usr/share/perl/5.26.1/Test2/API 8 /usr/share/perl/5.26.1/Test2/Event/TAP 64 /usr/share/perl/5.26.1/Test2/Event 20 /usr/share/perl/5.26.1/Test2/IPC/Driver 32 /usr/share/perl/5.26.1/Test2/IPC 20 /usr/share/perl/5.26.1/Test2/Util 20 /usr/share/perl/5.26.1/Test2/Formatter 8 /usr/share/perl/5.26.1/Test2/Hub/Interceptor 20 /usr/share/perl/5.26.1/Test2/Hub 16 /usr/share/perl/5.26.1/Test2/Tools 344 /usr/share/perl/5.26.1/Test2 24 /usr/share/perl/5.26.1/Params 8 /usr/share/perl/5.26.1/JSON/PP 96 /usr/share/perl/5.26.1/JSON 8 /usr/share/perl/5.26.1/Math/BigFloat 140 /usr/share/perl/5.26.1/Math/BigInt 684 /usr/share/perl/5.26.1/Math 28 /usr/share/perl/5.26.1/IO/Socket 8 /usr/share/perl/5.26.1/IO/Compress/Zip 16 /usr/share/perl/5.26.1/IO/Compress/Adapter 28 /usr/share/perl/5.26.1/IO/Compress/Base 16 /usr/share/perl/5.26.1/IO/Compress/Zlib 8 /usr/share/perl/5.26.1/IO/Compress/Gzip 296 /usr/share/perl/5.26.1/IO/Compress 20 /usr/share/perl/5.26.1/IO/Uncompress/Adapter 300 /usr/share/perl/5.26.1/IO/Uncompress 644 /usr/share/perl/5.26.1/IO 76 /usr/share/perl/5.26.1/Encode 8 /usr/share/perl/5.26.1/Carp 24 /usr/share/perl/5.26.1/Class 88 /usr/share/perl/5.26.1/IPC 252 /usr/share/perl/5.26.1/B 12 /usr/share/perl/5.26.1/encoding 20 /usr/share/perl/5.26.1/ExtUtils/CBuilder/Platform/Windows 76 /usr/share/perl/5.26.1/ExtUtils/CBuilder/Platform 92 /usr/share/perl/5.26.1/ExtUtils/CBuilder 72 /usr/share/perl/5.26.1/ExtUtils/Constant 36 /usr/share/perl/5.26.1/ExtUtils/ParseXS 56 /usr/share/perl/5.26.1/ExtUtils/MakeMaker 32 /usr/share/perl/5.26.1/ExtUtils/Liblist 28 /usr/share/perl/5.26.1/ExtUtils/Typemaps 12 /usr/share/perl/5.26.1/ExtUtils/Command 1088 /usr/share/perl/5.26.1/ExtUtils 284 /usr/share/perl/5.26.1/pod 8 /usr/share/perl/5.26.1/Search 36 /usr/share/perl/5.26.1/Attribute 8 /usr/share/perl/5.26.1/App/Prove/State/Result 20 /usr/share/perl/5.26.1/App/Prove/State 36 /usr/share/perl/5.26.1/App/Prove 100 /usr/share/perl/5.26.1/App 12 /usr/share/perl/5.26.1/Digest 44 /usr/share/perl/5.26.1/I18N/LangTags 84 /usr/share/perl/5.26.1/I18N 2212 /usr/share/perl/5.26.1/Locale/Codes 64 /usr/share/perl/5.26.1/Locale/Maketext 2436 /usr/share/perl/5.26.1/Locale 28 /usr/share/perl/5.26.1/TAP/Harness 24 /usr/share/perl/5.26.1/TAP/Parser/Iterator 12 /usr/share/perl/5.26.1/TAP/Parser/Scheduler 20 /usr/share/perl/5.26.1/TAP/Parser/YAMLish 40 /usr/share/perl/5.26.1/TAP/Parser/Result 32 /usr/share/perl/5.26.1/TAP/Parser/SourceHandler 224 /usr/share/perl/5.26.1/TAP/Parser 8 /usr/share/perl/5.26.1/TAP/Formatter/File 20 /usr/share/perl/5.26.1/TAP/Formatter/Console 64 /usr/share/perl/5.26.1/TAP/Formatter 412 /usr/share/perl/5.26.1/TAP 92 /usr/share/perl/5.26.1/Text 12 /usr/share/perl/5.26.1/Perl 40 /usr/share/perl/5.26.1/version 32 /usr/share/perl/5.26.1/Archive/Tar 112 /usr/share/perl/5.26.1/Archive 20 /usr/share/perl/5.26.1/Config/Perl 28 /usr/share/perl/5.26.1/Config 12 /usr/share/perl/5.26.1/Exporter 80 /usr/share/perl/5.26.1/HTTP 100 /usr/share/perl/5.26.1/Term 48 /usr/share/perl/5.26.1/Compress 24 /usr/share/perl/5.26.1/DBM_Filter 12 /usr/share/perl/5.26.1/autodie/Scope 8 /usr/share/perl/5.26.1/autodie/exception 80 /usr/share/perl/5.26.1/autodie 8 /usr/share/perl/5.26.1/warnings 528 /usr/share/perl/5.26.1/Unicode/Collate/CJK 1096 /usr/share/perl/5.26.1/Unicode/Collate/Locale 3416 /usr/share/perl/5.26.1/Unicode/Collate 3580 /usr/share/perl/5.26.1/Unicode 32 /usr/share/perl/5.26.1/Time 60 /usr/share/perl/5.26.1/Getopt 12 /usr/share/perl/5.26.1/Devel 136 /usr/share/perl/5.26.1/Tie 24 /usr/share/perl/5.26.1/Module/Load 36 /usr/share/perl/5.26.1/Module/CoreList 852 /usr/share/perl/5.26.1/Module 28 /usr/share/perl/5.26.1/Filter 8 /usr/share/perl/5.26.1/overload 20 /usr/share/perl/5.26.1/User 21032 /usr/share/perl/5.26.1 21036 /usr/share/perl 16 /usr/share/open-vm-tools/messages/it 28 /usr/share/open-vm-tools/messages/zh_CN 16 /usr/share/open-vm-tools/messages/zh_TW 36 /usr/share/open-vm-tools/messages/ja 16 /usr/share/open-vm-tools/messages/es 16 /usr/share/open-vm-tools/messages/fr 32 /usr/share/open-vm-tools/messages/ko 32 /usr/share/open-vm-tools/messages/de 16 /usr/share/open-vm-tools/messages/en 212 /usr/share/open-vm-tools/messages 216 /usr/share/open-vm-tools 56 /usr/share/ubuntu-release-upgrader 223584 /usr/share 24 /usr/include/rdma/hfi 168 /usr/include/rdma 284 /usr/include/rpcsvc 188 /usr/include/reglib 8 /usr/include/netiucv 8 /usr/include/netpacket 48 /usr/include/mtd 8 /usr/include/netash 12 /usr/include/linux/spi 20 /usr/include/linux/wimax 8 /usr/include/linux/hdlc 28 /usr/include/linux/raid 8 /usr/include/linux/cifs 8 /usr/include/linux/sched 40 /usr/include/linux/can 44 /usr/include/linux/netfilter_ipv4 8 /usr/include/linux/sunrpc 12 /usr/include/linux/hsi 12 /usr/include/linux/byteorder 20 /usr/include/linux/android 64 /usr/include/linux/tc_act 88 /usr/include/linux/dvb 12 /usr/include/linux/iio 8 /usr/include/linux/mmc 16 /usr/include/linux/netfilter_arp 24 /usr/include/linux/genwqe 144 /usr/include/linux/usb 80 /usr/include/linux/netfilter_bridge 24 /usr/include/linux/nfsd 20 /usr/include/linux/tc_ematch 16 /usr/include/linux/caif 28 /usr/include/linux/netfilter/ipset 436 /usr/include/linux/netfilter 56 /usr/include/linux/netfilter_ipv6 12 /usr/include/linux/isdn 5320 /usr/include/linux 200 /usr/include/asm-generic 8 /usr/include/netrose 20 /usr/include/video 120 /usr/include/rpc 60 /usr/include/net 204 /usr/include/sound 56 /usr/include/arpa 216 /usr/include/btrfs 8 /usr/include/netrom 24 /usr/include/xen 60 /usr/include/scsi/fc 120 /usr/include/scsi 396 /usr/include/drm 80 /usr/include/c++/7/tr2 52 /usr/include/c++/7/ext/pb_ds/detail/thin_heap_ 104 /usr/include/c++/7/ext/pb_ds/detail/binary_heap_ 80 /usr/include/c++/7/ext/pb_ds/detail/ov_tree_map_ 164 /usr/include/c++/7/ext/pb_ds/detail/pat_trie_ 120 /usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_ 56 /usr/include/c++/7/ext/pb_ds/detail/rb_tree_map_ 48 /usr/include/c++/7/ext/pb_ds/detail/binomial_heap_base_ 44 /usr/include/c++/7/ext/pb_ds/detail/trie_policy 112 /usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_ 20 /usr/include/c++/7/ext/pb_ds/detail/unordered_iterator 72 /usr/include/c++/7/ext/pb_ds/detail/hash_fn 48 /usr/include/c++/7/ext/pb_ds/detail/rc_binomial_heap_ 128 /usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_ 64 /usr/include/c++/7/ext/pb_ds/detail/splay_tree_ 40 /usr/include/c++/7/ext/pb_ds/detail/pairing_heap_ 52 /usr/include/c++/7/ext/pb_ds/detail/list_update_map_ 12 /usr/include/c++/7/ext/pb_ds/detail/list_update_policy 16 /usr/include/c++/7/ext/pb_ds/detail/binomial_heap_ 56 /usr/include/c++/7/ext/pb_ds/detail/resize_policy 68 /usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_ 16 /usr/include/c++/7/ext/pb_ds/detail/branch_policy 12 /usr/include/c++/7/ext/pb_ds/detail/eq_fn 16 /usr/include/c++/7/ext/pb_ds/detail/tree_policy 1480 /usr/include/c++/7/ext/pb_ds/detail 1588 /usr/include/c++/7/ext/pb_ds 2496 /usr/include/c++/7/ext 612 /usr/include/c++/7/parallel 108 /usr/include/c++/7/experimental/bits 340 /usr/include/c++/7/experimental 3440 /usr/include/c++/7/bits 44 /usr/include/c++/7/decimal 120 /usr/include/c++/7/backward 508 /usr/include/c++/7/debug 864 /usr/include/c++/7/tr1 112 /usr/include/c++/7/profile/impl 344 /usr/include/c++/7/profile 10172 /usr/include/c++/7 10176 /usr/include/c++ 12 /usr/include/misc 468 /usr/include/x86_64-linux-gnu/sys 24 /usr/include/x86_64-linux-gnu/gnu 116 /usr/include/x86_64-linux-gnu/bits/types 1012 /usr/include/x86_64-linux-gnu/bits 336 /usr/include/x86_64-linux-gnu/asm 12 /usr/include/x86_64-linux-gnu/c++/7/ext 208 /usr/include/x86_64-linux-gnu/c++/7/bits 224 /usr/include/x86_64-linux-gnu/c++/7 228 /usr/include/x86_64-linux-gnu/c++ 48 /usr/include/x86_64-linux-gnu/python3.6m 2144 /usr/include/x86_64-linux-gnu 4 /usr/include/xfs 8 /usr/include/netipx 8 /usr/include/nfs 24 /usr/include/protocols 768 /usr/include/python3.6m 116 /usr/include/netinet 12 /usr/include/netax25 8 /usr/include/netatalk 8 /usr/include/neteconet 22016 /usr/include 12 /usr/src/linux-headers-4.15.0-72/fs/udf 36 /usr/src/linux-headers-4.15.0-72/fs/nls 16 /usr/src/linux-headers-4.15.0-72/fs/squashfs 8 /usr/src/linux-headers-4.15.0-72/fs/hostfs 12 /usr/src/linux-headers-4.15.0-72/fs/adfs 12 /usr/src/linux-headers-4.15.0-72/fs/freevxfs 12 /usr/src/linux-headers-4.15.0-72/fs/sysfs 12 /usr/src/linux-headers-4.15.0-72/fs/efs 12 /usr/src/linux-headers-4.15.0-72/fs/afs 12 /usr/src/linux-headers-4.15.0-72/fs/gfs2 12 /usr/src/linux-headers-4.15.0-72/fs/ecryptfs 12 /usr/src/linux-headers-4.15.0-72/fs/orangefs 12 /usr/src/linux-headers-4.15.0-72/fs/ntfs 20 /usr/src/linux-headers-4.15.0-72/fs/cifs 12 /usr/src/linux-headers-4.15.0-72/fs/notify/dnotify 12 /usr/src/linux-headers-4.15.0-72/fs/notify/inotify 12 /usr/src/linux-headers-4.15.0-72/fs/notify/fanotify 48 /usr/src/linux-headers-4.15.0-72/fs/notify 12 /usr/src/linux-headers-4.15.0-72/fs/affs 12 /usr/src/linux-headers-4.15.0-72/fs/autofs4 16 /usr/src/linux-headers-4.15.0-72/fs/exofs 8 /usr/src/linux-headers-4.15.0-72/fs/openpromfs 12 /usr/src/linux-headers-4.15.0-72/fs/sysv 16 /usr/src/linux-headers-4.15.0-72/fs/jffs2 8 /usr/src/linux-headers-4.15.0-72/fs/tracefs 8 /usr/src/linux-headers-4.15.0-72/fs/devpts 12 /usr/src/linux-headers-4.15.0-72/fs/qnx4 12 /usr/src/linux-headers-4.15.0-72/fs/hfsplus 12 /usr/src/linux-headers-4.15.0-72/fs/ufs 12 /usr/src/linux-headers-4.15.0-72/fs/btrfs 12 /usr/src/linux-headers-4.15.0-72/fs/efivarfs 12 /usr/src/linux-headers-4.15.0-72/fs/fscache 12 /usr/src/linux-headers-4.15.0-72/fs/pstore 12 /usr/src/linux-headers-4.15.0-72/fs/f2fs 12 /usr/src/linux-headers-4.15.0-72/fs/9p 12 /usr/src/linux-headers-4.15.0-72/fs/crypto 12 /usr/src/linux-headers-4.15.0-72/fs/minix 12 /usr/src/linux-headers-4.15.0-72/fs/qnx6 12 /usr/src/linux-headers-4.15.0-72/fs/ubifs 16 /usr/src/linux-headers-4.15.0-72/fs/ncpfs 12 /usr/src/linux-headers-4.15.0-72/fs/hpfs 12 /usr/src/linux-headers-4.15.0-72/fs/kernfs 12 /usr/src/linux-headers-4.15.0-72/fs/omfs 12 /usr/src/linux-headers-4.15.0-72/fs/configfs 8 /usr/src/linux-headers-4.15.0-72/fs/nfs_common 12 /usr/src/linux-headers-4.15.0-72/fs/cramfs 16 /usr/src/linux-headers-4.15.0-72/fs/aufs 12 /usr/src/linux-headers-4.15.0-72/fs/hfs 20 /usr/src/linux-headers-4.15.0-72/fs/xfs 12 /usr/src/linux-headers-4.15.0-72/fs/coda 8 /usr/src/linux-headers-4.15.0-72/fs/nfs/blocklayout 8 /usr/src/linux-headers-4.15.0-72/fs/nfs/flexfilelayout 8 /usr/src/linux-headers-4.15.0-72/fs/nfs/filelayout 40 /usr/src/linux-headers-4.15.0-72/fs/nfs 8 /usr/src/linux-headers-4.15.0-72/fs/hugetlbfs 8 /usr/src/linux-headers-4.15.0-72/fs/ocfs2/cluster 8 /usr/src/linux-headers-4.15.0-72/fs/ocfs2/dlmfs 8 /usr/src/linux-headers-4.15.0-72/fs/ocfs2/dlm 36 /usr/src/linux-headers-4.15.0-72/fs/ocfs2 12 /usr/src/linux-headers-4.15.0-72/fs/isofs 12 /usr/src/linux-headers-4.15.0-72/fs/romfs 12 /usr/src/linux-headers-4.15.0-72/fs/dlm 16 /usr/src/linux-headers-4.15.0-72/fs/fat 12 /usr/src/linux-headers-4.15.0-72/fs/cachefiles 12 /usr/src/linux-headers-4.15.0-72/fs/quota 12 /usr/src/linux-headers-4.15.0-72/fs/ext2 16 /usr/src/linux-headers-4.15.0-72/fs/nfsd 8 /usr/src/linux-headers-4.15.0-72/fs/exportfs 12 /usr/src/linux-headers-4.15.0-72/fs/bfs 16 /usr/src/linux-headers-4.15.0-72/fs/ext4 12 /usr/src/linux-headers-4.15.0-72/fs/overlayfs 12 /usr/src/linux-headers-4.15.0-72/fs/fuse 8 /usr/src/linux-headers-4.15.0-72/fs/lockd 12 /usr/src/linux-headers-4.15.0-72/fs/ceph 8 /usr/src/linux-headers-4.15.0-72/fs/debugfs 12 /usr/src/linux-headers-4.15.0-72/fs/proc 12 /usr/src/linux-headers-4.15.0-72/fs/jbd2 8 /usr/src/linux-headers-4.15.0-72/fs/ramfs 12 /usr/src/linux-headers-4.15.0-72/fs/nilfs2 12 /usr/src/linux-headers-4.15.0-72/fs/jfs 12 /usr/src/linux-headers-4.15.0-72/fs/befs 12 /usr/src/linux-headers-4.15.0-72/fs/reiserfs 1024 /usr/src/linux-headers-4.15.0-72/fs 8 /usr/src/linux-headers-4.15.0-72/virt/kvm 12 /usr/src/linux-headers-4.15.0-72/virt/lib 28 /usr/src/linux-headers-4.15.0-72/virt 40 /usr/src/linux-headers-4.15.0-72/drivers/spi 12 /usr/src/linux-headers-4.15.0-72/drivers/soc/ti 8 /usr/src/linux-headers-4.15.0-72/drivers/soc/lantiq 12 /usr/src/linux-headers-4.15.0-72/drivers/soc/qcom 8 /usr/src/linux-headers-4.15.0-72/drivers/soc/bcm/brcmstb/pm 20 /usr/src/linux-headers-4.15.0-72/drivers/soc/bcm/brcmstb 32 /usr/src/linux-headers-4.15.0-72/drivers/soc/bcm 12 /usr/src/linux-headers-4.15.0-72/drivers/soc/versatile 12 /usr/src/linux-headers-4.15.0-72/drivers/soc/actions 8 /usr/src/linux-headers-4.15.0-72/drivers/soc/dove 8 /usr/src/linux-headers-4.15.0-72/drivers/soc/tegra/fuse 20 /usr/src/linux-headers-4.15.0-72/drivers/soc/tegra 12 /usr/src/linux-headers-4.15.0-72/drivers/soc/imx 12 /usr/src/linux-headers-4.15.0-72/drivers/soc/ux500 12 /usr/src/linux-headers-4.15.0-72/drivers/soc/fsl/qe 12 /usr/src/linux-headers-4.15.0-72/drivers/soc/fsl/qbman 36 /usr/src/linux-headers-4.15.0-72/drivers/soc/fsl 12 /usr/src/linux-headers-4.15.0-72/drivers/soc/zte 12 /usr/src/linux-headers-4.15.0-72/drivers/soc/renesas 12 /usr/src/linux-headers-4.15.0-72/drivers/soc/mediatek 12 /usr/src/linux-headers-4.15.0-72/drivers/soc/amlogic 12 /usr/src/linux-headers-4.15.0-72/drivers/soc/samsung 12 /usr/src/linux-headers-4.15.0-72/drivers/soc/rockchip 12 /usr/src/linux-headers-4.15.0-72/drivers/soc/atmel 12 /usr/src/linux-headers-4.15.0-72/drivers/soc/sunxi 284 /usr/src/linux-headers-4.15.0-72/drivers/soc 12 /usr/src/linux-headers-4.15.0-72/drivers/nfc/nfcmrvl 12 /usr/src/linux-headers-4.15.0-72/drivers/nfc/pn533 12 /usr/src/linux-headers-4.15.0-72/drivers/nfc/fdp 12 /usr/src/linux-headers-4.15.0-72/drivers/nfc/s3fwrn5 12 /usr/src/linux-headers-4.15.0-72/drivers/nfc/pn544 12 /usr/src/linux-headers-4.15.0-72/drivers/nfc/nxp-nci 12 /usr/src/linux-headers-4.15.0-72/drivers/nfc/st95hf 12 /usr/src/linux-headers-4.15.0-72/drivers/nfc/microread 12 /usr/src/linux-headers-4.15.0-72/drivers/nfc/st21nfca 12 /usr/src/linux-headers-4.15.0-72/drivers/nfc/st-nci 132 /usr/src/linux-headers-4.15.0-72/drivers/nfc 20 /usr/src/linux-headers-4.15.0-72/drivers/bluetooth 16 /usr/src/linux-headers-4.15.0-72/drivers/power/reset 32 /usr/src/linux-headers-4.15.0-72/drivers/power/supply 12 /usr/src/linux-headers-4.15.0-72/drivers/power/avs 72 /usr/src/linux-headers-4.15.0-72/drivers/power 12 /usr/src/linux-headers-4.15.0-72/drivers/ntb/hw/intel 12 /usr/src/linux-headers-4.15.0-72/drivers/ntb/hw/mscc 12 /usr/src/linux-headers-4.15.0-72/drivers/ntb/hw/idt 12 /usr/src/linux-headers-4.15.0-72/drivers/ntb/hw/amd 60 /usr/src/linux-headers-4.15.0-72/drivers/ntb/hw 12 /usr/src/linux-headers-4.15.0-72/drivers/ntb/test 84 /usr/src/linux-headers-4.15.0-72/drivers/ntb 8 /usr/src/linux-headers-4.15.0-72/drivers/perf/hisilicon 20 /usr/src/linux-headers-4.15.0-72/drivers/perf 68 /usr/src/linux-headers-4.15.0-72/drivers/rtc 12 /usr/src/linux-headers-4.15.0-72/drivers/dma-buf 12 /usr/src/linux-headers-4.15.0-72/drivers/firewire 52 /usr/src/linux-headers-4.15.0-72/drivers/gpio 12 /usr/src/linux-headers-4.15.0-72/drivers/memstick/core 12 /usr/src/linux-headers-4.15.0-72/drivers/memstick/host 36 /usr/src/linux-headers-4.15.0-72/drivers/memstick 12 /usr/src/linux-headers-4.15.0-72/drivers/vlynq 12 /usr/src/linux-headers-4.15.0-72/drivers/dca 12 /usr/src/linux-headers-4.15.0-72/drivers/dax 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/ipu-v3 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/vga 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/savage 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/vc4 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/atmel-hlcdc 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/bochs 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/mxsfb 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/selftests 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/r128 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/sti 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/i915/gvt 28 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/i915 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/ttm 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/tdfx 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/etnaviv 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/i2c 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/tve200 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/mgag200 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/via 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/stm 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/dispnv04 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvif 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine/sec2 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine/msenc 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine/bsp 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine/device 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine/disp 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine/sw 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine/mspdec 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine/sec 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine/fifo 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine/ce 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine/cipher 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine/mpeg 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine/nvdec 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine/vic 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine/gr 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine/dma 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine/msppp 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine/msvld 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine/nvenc 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine/pm 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine/vp 176 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/engine 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/gpio 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/top 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/mmu 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/devinit 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/instmem 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/iccsense 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/i2c 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/bus 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/fb 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/secboot 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/bar 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/therm 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/bios 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/volt 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/pmu 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/mxm 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/mc 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/clk 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/timer 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/ibus 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/fuse 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/pci 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev/ltc 192 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/subdev 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/core 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm/falcon 392 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau/nvkm 420 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/nouveau 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/exynos 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/tilcdc 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/rcar-du 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/fsl-dcu 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/tegra 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/virtio 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/imx 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/ast 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/radeon 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/sis 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/qxl 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/msm 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/cirrus 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/zte 16 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/panel 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/udl 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/armada 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/omapdrm/dss 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/omapdrm/displays 36 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/omapdrm 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/i810 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/bridge/analogix 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/bridge/adv7511 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/bridge/synopsys 48 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/bridge 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/shmobile 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/mga 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/powerplay/hwmgr 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/powerplay/smumgr 24 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/powerplay 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/acp 16 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/amdgpu 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/display/amdgpu_dm 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/display/dc/dce112 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/display/dc/gpio 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/display/dc/dml 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/display/dc/dcn10 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/display/dc/calcs 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/display/dc/irq 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/display/dc/dce120 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/display/dc/basics 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/display/dc/bios 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/display/dc/i2caux 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/display/dc/dce100 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/display/dc/virtual 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/display/dc/dce 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/display/dc/dce110 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/display/dc/dce80 128 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/display/dc 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/display/modules/freesync 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/display/modules 160 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/display 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/lib 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd/amdkfd 240 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/amd 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/pl111 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/mediatek 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/sun4i 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/vmwgfx 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/hisilicon/hibmc 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/hisilicon/kirin 36 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/hisilicon 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/rockchip 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/arc 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/gma500 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/arm 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/meson 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/tinydrm/core 20 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/tinydrm 8 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm/vgem 1364 /usr/src/linux-headers-4.15.0-72/drivers/gpu/drm 12 /usr/src/linux-headers-4.15.0-72/drivers/gpu/host1x 1408 /usr/src/linux-headers-4.15.0-72/drivers/gpu 12 /usr/src/linux-headers-4.15.0-72/drivers/sn 12 /usr/src/linux-headers-4.15.0-72/drivers/spmi 24 /usr/src/linux-headers-4.15.0-72/drivers/char/hw_random 12 /usr/src/linux-headers-4.15.0-72/drivers/char/ipmi 12 /usr/src/linux-headers-4.15.0-72/drivers/char/xillybus 16 /usr/src/linux-headers-4.15.0-72/drivers/char/agp 8 /usr/src/linux-headers-4.15.0-72/drivers/char/mwave 8 /usr/src/linux-headers-4.15.0-72/drivers/char/xilinx_hwicap 12 /usr/src/linux-headers-4.15.0-72/drivers/char/pcmcia 12 /usr/src/linux-headers-4.15.0-72/drivers/char/tpm/st33zp24 28 /usr/src/linux-headers-4.15.0-72/drivers/char/tpm 152 /usr/src/linux-headers-4.15.0-72/drivers/char 12 /usr/src/linux-headers-4.15.0-72/drivers/thunderbolt 12 /usr/src/linux-headers-4.15.0-72/drivers/memory/tegra 12 /usr/src/linux-headers-4.15.0-72/drivers/memory/samsung 40 /usr/src/linux-headers-4.15.0-72/drivers/memory 12 /usr/src/linux-headers-4.15.0-72/drivers/fsi 12 /usr/src/linux-headers-4.15.0-72/drivers/virt 12 /usr/src/linux-headers-4.15.0-72/drivers/pinctrl/spear 12 /usr/src/linux-headers-4.15.0-72/drivers/pinctrl/sh-pfc 12 /usr/src/linux-headers-4.15.0-72/drivers/pinctrl/intel 12 /usr/src/linux-headers-4.15.0-72/drivers/pinctrl/vt8500 12 /usr/src/linux-headers-4.15.0-72/drivers/pinctrl/stm32 12 /usr/src/linux-headers-4.15.0-72/drivers/pinctrl/uniphier 12 /usr/src/linux-headers-4.15.0-72/drivers/pinctrl/ti 16 /usr/src/linux-headers-4.15.0-72/drivers/pinctrl/qcom 12 /usr/src/linux-headers-4.15.0-72/drivers/pinctrl/bcm 12 /usr/src/linux-headers-4.15.0-72/drivers/pinctrl/berlin 12 /usr/src/linux-headers-4.15.0-72/drivers/pinctrl/tegra 12 /usr/src/linux-headers-4.15.0-72/drivers/pinctrl/nomadik 12 /usr/src/linux-headers-4.15.0-72/drivers/pinctrl/sprd 12 /usr/src/linux-headers-4.15.0-72/drivers/pinctrl/zte 12 /usr/src/linux-headers-4.15.0-72/drivers/pinctrl/aspeed 12 /usr/src/linux-headers-4.15.0-72/drivers/pinctrl/freescale 12 /usr/src/linux-headers-4.15.0-72/drivers/pinctrl/pxa 8 /usr/src/linux-headers-4.15.0-72/drivers/pinctrl/sirf 12 /usr/src/linux-headers-4.15.0-72/drivers/pinctrl/mediatek 12 /usr/src/linux-headers-4.15.0-72/drivers/pinctrl/samsung 12 /usr/src/linux-headers-4.15.0-72/drivers/pinctrl/mvebu 12 /usr/src/linux-headers-4.15.0-72/drivers/pinctrl/sunxi 12 /usr/src/linux-headers-4.15.0-72/drivers/pinctrl/meson 296 /usr/src/linux-headers-4.15.0-72/drivers/pinctrl 44 /usr/src/linux-headers-4.15.0-72/drivers/regulator 16 /usr/src/linux-headers-4.15.0-72/drivers/vhost 12 /usr/src/linux-headers-4.15.0-72/drivers/ras 12 /usr/src/linux-headers-4.15.0-72/drivers/fmc 12 /usr/src/linux-headers-4.15.0-72/drivers/tee/optee 24 /usr/src/linux-headers-4.15.0-72/drivers/tee 16 /usr/src/linux-headers-4.15.0-72/drivers/mtd/spi-nor 8 /usr/src/linux-headers-4.15.0-72/drivers/mtd/nand/brcmnand 8 /usr/src/linux-headers-4.15.0-72/drivers/mtd/nand/bcm47xxnflash 8 /usr/src/linux-headers-4.15.0-72/drivers/mtd/nand/gpmi-nand 8 /usr/src/linux-headers-4.15.0-72/drivers/mtd/nand/atmel 60 /usr/src/linux-headers-4.15.0-72/drivers/mtd/nand 8 /usr/src/linux-headers-4.15.0-72/drivers/mtd/tests 12 /usr/src/linux-headers-4.15.0-72/drivers/mtd/onenand 12 /usr/src/linux-headers-4.15.0-72/drivers/mtd/lpddr 24 /usr/src/linux-headers-4.15.0-72/drivers/mtd/maps 20 /usr/src/linux-headers-4.15.0-72/drivers/mtd/devices 12 /usr/src/linux-headers-4.15.0-72/drivers/mtd/parsers 20 /usr/src/linux-headers-4.15.0-72/drivers/mtd/chips 16 /usr/src/linux-headers-4.15.0-72/drivers/mtd/ubi 220 /usr/src/linux-headers-4.15.0-72/drivers/mtd 8 /usr/src/linux-headers-4.15.0-72/drivers/nubus 12 /usr/src/linux-headers-4.15.0-72/drivers/reset/sti 12 /usr/src/linux-headers-4.15.0-72/drivers/reset/tegra 12 /usr/src/linux-headers-4.15.0-72/drivers/reset/hisilicon 48 /usr/src/linux-headers-4.15.0-72/drivers/reset 8 /usr/src/linux-headers-4.15.0-72/drivers/accessibility/braille 20 /usr/src/linux-headers-4.15.0-72/drivers/accessibility 12 /usr/src/linux-headers-4.15.0-72/drivers/pps/clients 12 /usr/src/linux-headers-4.15.0-72/drivers/pps/generators 36 /usr/src/linux-headers-4.15.0-72/drivers/pps 16 /usr/src/linux-headers-4.15.0-72/drivers/parport 24 /usr/src/linux-headers-4.15.0-72/drivers/atm 12 /usr/src/linux-headers-4.15.0-72/drivers/ptp 20 /usr/src/linux-headers-4.15.0-72/drivers/iommu 12 /usr/src/linux-headers-4.15.0-72/drivers/opp 12 /usr/src/linux-headers-4.15.0-72/drivers/hsi/clients 12 /usr/src/linux-headers-4.15.0-72/drivers/hsi/controllers 36 /usr/src/linux-headers-4.15.0-72/drivers/hsi 12 /usr/src/linux-headers-4.15.0-72/drivers/i2c/muxes 56 /usr/src/linux-headers-4.15.0-72/drivers/i2c/busses 12 /usr/src/linux-headers-4.15.0-72/drivers/i2c/algos 96 /usr/src/linux-headers-4.15.0-72/drivers/i2c 8 /usr/src/linux-headers-4.15.0-72/drivers/macintosh/ams 28 /usr/src/linux-headers-4.15.0-72/drivers/macintosh 16 /usr/src/linux-headers-4.15.0-72/drivers/hwmon/pmbus 88 /usr/src/linux-headers-4.15.0-72/drivers/hwmon 12 /usr/src/linux-headers-4.15.0-72/drivers/platform/goldfish 12 /usr/src/linux-headers-4.15.0-72/drivers/platform/chrome 12 /usr/src/linux-headers-4.15.0-72/drivers/platform/mips 48 /usr/src/linux-headers-4.15.0-72/drivers/platform/x86 8 /usr/src/linux-headers-4.15.0-72/drivers/platform/olpc 104 /usr/src/linux-headers-4.15.0-72/drivers/platform 8 /usr/src/linux-headers-4.15.0-72/drivers/s390/cio 16 /usr/src/linux-headers-4.15.0-72/drivers/s390/char 12 /usr/src/linux-headers-4.15.0-72/drivers/s390/net 8 /usr/src/linux-headers-4.15.0-72/drivers/s390/virtio 8 /usr/src/linux-headers-4.15.0-72/drivers/s390/crypto 12 /usr/src/linux-headers-4.15.0-72/drivers/s390/block 8 /usr/src/linux-headers-4.15.0-72/drivers/s390/scsi 80 /usr/src/linux-headers-4.15.0-72/drivers/s390 12 /usr/src/linux-headers-4.15.0-72/drivers/idle 16 /usr/src/linux-headers-4.15.0-72/drivers/bus 12 /usr/src/linux-headers-4.15.0-72/drivers/message/fusion 20 /usr/src/linux-headers-4.15.0-72/drivers/message 12 /usr/src/linux-headers-4.15.0-72/drivers/mcb 12 /usr/src/linux-headers-4.15.0-72/drivers/video/logo 8 /usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/savage 12 /usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/omap2/omapfb/dss 12 /usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/omap2/omapfb/displays 36 /usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/omap2/omapfb 48 /usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/omap2 8 /usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/intelfb 8 /usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/mbx 8 /usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/vermilion 12 /usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/mmp/fb 12 /usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/mmp/panel 12 /usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/mmp/hw 48 /usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/mmp 8 /usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/via 12 /usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/geode 8 /usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/core 8 /usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/sis 8 /usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/riva 12 /usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/omap 8 /usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/matrox 8 /usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/aty 8 /usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/i810 8 /usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/nvidia 8 /usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/mb862xx 8 /usr/src/linux-headers-4.15.0-72/drivers/video/fbdev/kyro 320 /usr/src/linux-headers-4.15.0-72/drivers/video/fbdev 16 /usr/src/linux-headers-4.15.0-72/drivers/video/console 24 /usr/src/linux-headers-4.15.0-72/drivers/video/backlight 384 /usr/src/linux-headers-4.15.0-72/drivers/video 12 /usr/src/linux-headers-4.15.0-72/drivers/nvme/host 12 /usr/src/linux-headers-4.15.0-72/drivers/nvme/target 36 /usr/src/linux-headers-4.15.0-72/drivers/nvme 8 /usr/src/linux-headers-4.15.0-72/drivers/dio 16 /usr/src/linux-headers-4.15.0-72/drivers/extcon 8 /usr/src/linux-headers-4.15.0-72/drivers/base/power 12 /usr/src/linux-headers-4.15.0-72/drivers/base/regmap 12 /usr/src/linux-headers-4.15.0-72/drivers/base/test 52 /usr/src/linux-headers-4.15.0-72/drivers/base 12 /usr/src/linux-headers-4.15.0-72/drivers/android 12 /usr/src/linux-headers-4.15.0-72/drivers/net/hyperv 12 /usr/src/linux-headers-4.15.0-72/drivers/net/wimax/i2400m 24 /usr/src/linux-headers-4.15.0-72/drivers/net/wimax 8 /usr/src/linux-headers-4.15.0-72/drivers/net/fjes 8 /usr/src/linux-headers-4.15.0-72/drivers/net/bonding 12 /usr/src/linux-headers-4.15.0-72/drivers/net/team 8 /usr/src/linux-headers-4.15.0-72/drivers/net/cris 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ipvlan 12 /usr/src/linux-headers-4.15.0-72/drivers/net/can/spi 12 /usr/src/linux-headers-4.15.0-72/drivers/net/can/cc770 12 /usr/src/linux-headers-4.15.0-72/drivers/net/can/sja1000 12 /usr/src/linux-headers-4.15.0-72/drivers/net/can/ifi_canfd 12 /usr/src/linux-headers-4.15.0-72/drivers/net/can/c_can 12 /usr/src/linux-headers-4.15.0-72/drivers/net/can/mscan 12 /usr/src/linux-headers-4.15.0-72/drivers/net/can/softing 12 /usr/src/linux-headers-4.15.0-72/drivers/net/can/m_can 8 /usr/src/linux-headers-4.15.0-72/drivers/net/can/usb/peak_usb 20 /usr/src/linux-headers-4.15.0-72/drivers/net/can/usb 12 /usr/src/linux-headers-4.15.0-72/drivers/net/can/rcar 12 /usr/src/linux-headers-4.15.0-72/drivers/net/can/peak_canfd 156 /usr/src/linux-headers-4.15.0-72/drivers/net/can 8 /usr/src/linux-headers-4.15.0-72/drivers/net/wan/lmc 32 /usr/src/linux-headers-4.15.0-72/drivers/net/wan 12 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/cisco 8 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/intel/iwlwifi/mvm 8 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/intel/iwlwifi/dvm 32 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/intel/iwlwifi 12 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/intel/iwlegacy 16 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/intel/ipw2x00 72 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/intel 12 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/st/cw1200 24 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/st 12 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/rsi 12 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/quantenna/qtnfmac 24 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/quantenna 12 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/ti/wl12xx 12 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/ti/wl1251 12 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/ti/wlcore 12 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/ti/wl18xx 60 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/ti 8 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/intersil/prism54 12 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/intersil/hostap 12 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/intersil/p54 16 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/intersil/orinoco 60 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/intersil 12 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/admtek 8 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/broadcom/brcm80211/brcmfmac 8 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/broadcom/brcm80211/brcmutil 8 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/broadcom/brcm80211/brcmsmac 36 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/broadcom/brcm80211 16 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/broadcom/b43 12 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/broadcom/b43legacy 76 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/broadcom 12 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/ath/wil6210 12 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/ath/carl9170 12 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/ath/ath5k 16 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/ath/ath9k 12 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/ath/wcn36xx 12 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/ath/ath10k 12 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/ath/ath6kl 12 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/ath/ar5523 112 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/ath 12 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/realtek/rtl8xxxu 8 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/realtek/rtlwifi/rtl8192de 8 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/realtek/rtlwifi/rtl8192cu 8 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/realtek/rtlwifi/rtl8192ce 8 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/realtek/rtlwifi/rtl8192se 8 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/realtek/rtlwifi/rtl8192c 8 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/realtek/rtlwifi/rtl8723be 8 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/realtek/rtlwifi/rtl8723com 8 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/realtek/rtlwifi/rtl8821ae 8 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/realtek/rtlwifi/btcoexist 8 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/realtek/rtlwifi/rtl8192ee 8 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/realtek/rtlwifi/rtl8188ee 8 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/realtek/rtlwifi/rtl8723ae 108 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/realtek/rtlwifi 8 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/realtek/rtl818x/rtl8180 8 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/realtek/rtl818x/rtl8187 28 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/realtek/rtl818x 160 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/realtek 12 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/marvell/libertas_tf 12 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/marvell/mwifiex 12 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/marvell/libertas 48 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/marvell 12 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/mediatek/mt7601u 24 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/mediatek 12 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/atmel 16 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/ralink/rt2x00 28 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/ralink 12 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/zydas/zd1211rw 24 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless/zydas 772 /usr/src/linux-headers-4.15.0-72/drivers/net/wireless 12 /usr/src/linux-headers-4.15.0-72/drivers/net/dsa/mv88e6xxx 12 /usr/src/linux-headers-4.15.0-72/drivers/net/dsa/b53 12 /usr/src/linux-headers-4.15.0-72/drivers/net/dsa/microchip 48 /usr/src/linux-headers-4.15.0-72/drivers/net/dsa 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/aeroflex 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/calxeda 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/silan 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/moxa 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/hp 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/emulex/benet 24 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/emulex 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/nxp 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/ibm/emac 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/ibm/ehea 32 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/ibm 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/altera 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/cisco/enic 24 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/cisco 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/aurora 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/intel/ixgbevf 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/intel/igbvf 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/intel/i40evf 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/intel/ixgbe 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/intel/fm10k 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/intel/ixgb 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/intel/e1000 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/intel/igb 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/intel/i40e 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/intel/e1000e 100 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/intel 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/natsemi 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/pasemi 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/qlogic/qede 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/qlogic/netxen 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/qlogic/qlcnic 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/qlogic/qed 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/qlogic/qlge 52 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/qlogic 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/oki-semi/pch_gbe 24 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/oki-semi 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/apm/xgene 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/apm/xgene-v2 36 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/apm 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/alteon 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/nuvoton 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/agere 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/qualcomm/rmnet 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/qualcomm/emac 32 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/qualcomm 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/tehuti 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/ti 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/i825xx 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/rdc 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/sfc/falcon 24 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/sfc 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/rocker 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/tile 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/wiznet 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/huawei/hinic 24 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/huawei 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/via 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/myricom/myri10ge 20 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/myricom 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/chelsio/libcxgb 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/chelsio/cxgb3 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/chelsio/cxgb 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/chelsio/cxgb4vf 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/chelsio/cxgb4 52 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/chelsio 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/microchip 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/toshiba 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/allwinner 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/broadcom/bnx2x 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/broadcom/genet 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/broadcom/bnxt 40 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/broadcom 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/seeq 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/xscale 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/sis 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/adi 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/mellanox/mlxfw 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/mellanox/mlx5/core/diag 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/mellanox/mlx5/core/ipoib 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/mellanox/mlx5/core/fpga 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/mellanox/mlx5/core/accel 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/mellanox/mlx5/core/lib 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/mellanox/mlx5/core/en_accel 60 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/mellanox/mlx5/core 64 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/mellanox/mlx5 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/mellanox/mlx4 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/mellanox/mlxsw 112 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/mellanox 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/3com 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/cadence 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/neterion/vxge 20 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/neterion 16 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/stmicro/stmmac 28 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/stmicro 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/davicom 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/cirrus 16 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/dec/tulip 28 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/dec 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/fujitsu 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/micrel 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/atheros/atlx 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/atheros/alx 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/atheros/atl1c 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/atheros/atl1e 44 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/atheros 16 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/8390 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/ezchip 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/socionext 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/freescale/fs_enet 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/freescale/fman 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/freescale/dpaa 48 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/freescale 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/renesas 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/faraday 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/realtek 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/aquantia/atlantic 20 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/aquantia 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/xircom 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/nvidia 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/amd/xgbe 24 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/amd 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/netronome/nfp 20 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/netronome 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/alacritech 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/packetengines 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/sun 16 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/marvell 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/mediatek 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/adaptec 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/apple 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/dlink 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/samsung/sxgbe 20 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/samsung 16 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/smsc 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/sgi 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/hisilicon/hns 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/hisilicon/hns3/hns3pf 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/hisilicon/hns3/hns3vf 24 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/hisilicon/hns3 44 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/hisilicon 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/arc 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/tundra 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/cavium/octeon 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/cavium/liquidio 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/cavium/thunder 36 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/cavium 8 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/amazon/ena 20 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/amazon 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/brocade/bna 24 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/brocade 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/xilinx 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet/synopsys 1672 /usr/src/linux-headers-4.15.0-72/drivers/net/ethernet 8 /usr/src/linux-headers-4.15.0-72/drivers/net/vmxnet3 12 /usr/src/linux-headers-4.15.0-72/drivers/net/hippi 16 /usr/src/linux-headers-4.15.0-72/drivers/net/hamradio 12 /usr/src/linux-headers-4.15.0-72/drivers/net/ieee802154 20 /usr/src/linux-headers-4.15.0-72/drivers/net/phy 16 /usr/src/linux-headers-4.15.0-72/drivers/net/appletalk 12 /usr/src/linux-headers-4.15.0-72/drivers/net/plip 16 /usr/src/linux-headers-4.15.0-72/drivers/net/arcnet 16 /usr/src/linux-headers-4.15.0-72/drivers/net/ppp 12 /usr/src/linux-headers-4.15.0-72/drivers/net/slip 32 /usr/src/linux-headers-4.15.0-72/drivers/net/usb 12 /usr/src/linux-headers-4.15.0-72/drivers/net/caif 8 /usr/src/linux-headers-4.15.0-72/drivers/net/xen-netback 8 /usr/src/linux-headers-4.15.0-72/drivers/net/fddi/skfp 20 /usr/src/linux-headers-4.15.0-72/drivers/net/fddi 3000 /usr/src/linux-headers-4.15.0-72/drivers/net 12 /usr/src/linux-headers-4.15.0-72/drivers/devfreq/event 28 /usr/src/linux-headers-4.15.0-72/drivers/devfreq 12 /usr/src/linux-headers-4.15.0-72/drivers/leds/trigger 44 /usr/src/linux-headers-4.15.0-72/drivers/leds 12 /usr/src/linux-headers-4.15.0-72/drivers/nvdimm 24 /usr/src/linux-headers-4.15.0-72/drivers/auxdisplay 8 /usr/src/linux-headers-4.15.0-72/drivers/ps3 32 /usr/src/linux-headers-4.15.0-72/drivers/input/keyboard 12 /usr/src/linux-headers-4.15.0-72/drivers/input/rmi4 12 /usr/src/linux-headers-4.15.0-72/drivers/input/tablet 24 /usr/src/linux-headers-4.15.0-72/drivers/input/mouse 36 /usr/src/linux-headers-4.15.0-72/drivers/input/misc 48 /usr/src/linux-headers-4.15.0-72/drivers/input/touchscreen 20 /usr/src/linux-headers-4.15.0-72/drivers/input/serio 12 /usr/src/linux-headers-4.15.0-72/drivers/input/gameport 12 /usr/src/linux-headers-4.15.0-72/drivers/input/joystick/iforce 32 /usr/src/linux-headers-4.15.0-72/drivers/input/joystick 244 /usr/src/linux-headers-4.15.0-72/drivers/input 12 /usr/src/linux-headers-4.15.0-72/drivers/virtio 12 /usr/src/linux-headers-4.15.0-72/drivers/hwspinlock 24 /usr/src/linux-headers-4.15.0-72/drivers/clocksource 12 /usr/src/linux-headers-4.15.0-72/drivers/hwtracing/stm 12 /usr/src/linux-headers-4.15.0-72/drivers/hwtracing/intel_th 16 /usr/src/linux-headers-4.15.0-72/drivers/hwtracing/coresight 44 /usr/src/linux-headers-4.15.0-72/drivers/hwtracing 12 /usr/src/linux-headers-4.15.0-72/drivers/sbus/char 20 /usr/src/linux-headers-4.15.0-72/drivers/sbus 8 /usr/src/linux-headers-4.15.0-72/drivers/xen/xenfs 8 /usr/src/linux-headers-4.15.0-72/drivers/xen/events 8 /usr/src/linux-headers-4.15.0-72/drivers/xen/xen-pciback 8 /usr/src/linux-headers-4.15.0-72/drivers/xen/xenbus 52 /usr/src/linux-headers-4.15.0-72/drivers/xen 12 /usr/src/linux-headers-4.15.0-72/drivers/mux 12 /usr/src/linux-headers-4.15.0-72/drivers/phy/st 12 /usr/src/linux-headers-4.15.0-72/drivers/phy/qualcomm 12 /usr/src/linux-headers-4.15.0-72/drivers/phy/ti 12 /usr/src/linux-headers-4.15.0-72/drivers/phy/lantiq 12 /usr/src/linux-headers-4.15.0-72/drivers/phy/motorola 12 /usr/src/linux-headers-4.15.0-72/drivers/phy/tegra 12 /usr/src/linux-headers-4.15.0-72/drivers/phy/allwinner 12 /usr/src/linux-headers-4.15.0-72/drivers/phy/broadcom 12 /usr/src/linux-headers-4.15.0-72/drivers/phy/renesas 12 /usr/src/linux-headers-4.15.0-72/drivers/phy/marvell 12 /usr/src/linux-headers-4.15.0-72/drivers/phy/mediatek 12 /usr/src/linux-headers-4.15.0-72/drivers/phy/amlogic 12 /usr/src/linux-headers-4.15.0-72/drivers/phy/samsung 12 /usr/src/linux-headers-4.15.0-72/drivers/phy/hisilicon 12 /usr/src/linux-headers-4.15.0-72/drivers/phy/rockchip 12 /usr/src/linux-headers-4.15.0-72/drivers/phy/ralink 204 /usr/src/linux-headers-4.15.0-72/drivers/phy 120 /usr/src/linux-headers-4.15.0-72/drivers/crypto/vmx 8 /usr/src/linux-headers-4.15.0-72/drivers/crypto/amcc 12 /usr/src/linux-headers-4.15.0-72/drivers/crypto/stm32 8 /usr/src/linux-headers-4.15.0-72/drivers/crypto/bcm 12 /usr/src/linux-headers-4.15.0-72/drivers/crypto/chelsio 12 /usr/src/linux-headers-4.15.0-72/drivers/crypto/virtio 8 /usr/src/linux-headers-4.15.0-72/drivers/crypto/axis 8 /usr/src/linux-headers-4.15.0-72/drivers/crypto/ux500/cryp 8 /usr/src/linux-headers-4.15.0-72/drivers/crypto/ux500/hash 28 /usr/src/linux-headers-4.15.0-72/drivers/crypto/ux500 8 /usr/src/linux-headers-4.15.0-72/drivers/crypto/qat/qat_c3xxx 8 /usr/src/linux-headers-4.15.0-72/drivers/crypto/qat/qat_c62xvf 8 /usr/src/linux-headers-4.15.0-72/drivers/crypto/qat/qat_c62x 8 /usr/src/linux-headers-4.15.0-72/drivers/crypto/qat/qat_c3xxxvf 8 /usr/src/linux-headers-4.15.0-72/drivers/crypto/qat/qat_dh895xccvf 8 /usr/src/linux-headers-4.15.0-72/drivers/crypto/qat/qat_dh895xcc 8 /usr/src/linux-headers-4.15.0-72/drivers/crypto/qat/qat_common 68 /usr/src/linux-headers-4.15.0-72/drivers/crypto/qat 12 /usr/src/linux-headers-4.15.0-72/drivers/crypto/ccp 8 /usr/src/linux-headers-4.15.0-72/drivers/crypto/sunxi-ss 8 /usr/src/linux-headers-4.15.0-72/drivers/crypto/marvell 12 /usr/src/linux-headers-4.15.0-72/drivers/crypto/nx 8 /usr/src/linux-headers-4.15.0-72/drivers/crypto/mediatek 16 /usr/src/linux-headers-4.15.0-72/drivers/crypto/caam 8 /usr/src/linux-headers-4.15.0-72/drivers/crypto/rockchip 8 /usr/src/linux-headers-4.15.0-72/drivers/crypto/inside-secure 12 /usr/src/linux-headers-4.15.0-72/drivers/crypto/cavium/cpt 12 /usr/src/linux-headers-4.15.0-72/drivers/crypto/cavium/nitrox 8 /usr/src/linux-headers-4.15.0-72/drivers/crypto/cavium/zip 40 /usr/src/linux-headers-4.15.0-72/drivers/crypto/cavium 8 /usr/src/linux-headers-4.15.0-72/drivers/crypto/qce 436 /usr/src/linux-headers-4.15.0-72/drivers/crypto 12 /usr/src/linux-headers-4.15.0-72/drivers/bcma 12 /usr/src/linux-headers-4.15.0-72/drivers/pnp/pnpbios 12 /usr/src/linux-headers-4.15.0-72/drivers/pnp/pnpacpi 12 /usr/src/linux-headers-4.15.0-72/drivers/pnp/isapnp 48 /usr/src/linux-headers-4.15.0-72/drivers/pnp 8 /usr/src/linux-headers-4.15.0-72/drivers/block/xen-blkback 12 /usr/src/linux-headers-4.15.0-72/drivers/block/mtip32xx 8 /usr/src/linux-headers-4.15.0-72/drivers/block/aoe 24 /usr/src/linux-headers-4.15.0-72/drivers/block/paride 8 /usr/src/linux-headers-4.15.0-72/drivers/block/rsxx 12 /usr/src/linux-headers-4.15.0-72/drivers/block/drbd 12 /usr/src/linux-headers-4.15.0-72/drivers/block/zram 112 /usr/src/linux-headers-4.15.0-72/drivers/block 16 /usr/src/linux-headers-4.15.0-72/drivers/irqchip 12 /usr/src/linux-headers-4.15.0-72/drivers/scsi/cxlflash 12 /usr/src/linux-headers-4.15.0-72/drivers/scsi/be2iscsi 12 /usr/src/linux-headers-4.15.0-72/drivers/scsi/smartpqi 8 /usr/src/linux-headers-4.15.0-72/drivers/scsi/ibmvscsi 12 /usr/src/linux-headers-4.15.0-72/drivers/scsi/qla4xxx 8 /usr/src/linux-headers-4.15.0-72/drivers/scsi/bfa 8 /usr/src/linux-headers-4.15.0-72/drivers/scsi/aacraid 8 /usr/src/linux-headers-4.15.0-72/drivers/scsi/arcmsr 8 /usr/src/linux-headers-4.15.0-72/drivers/scsi/aic7xxx/aicasm 24 /usr/src/linux-headers-4.15.0-72/drivers/scsi/aic7xxx 8 /usr/src/linux-headers-4.15.0-72/drivers/scsi/snic 8 /usr/src/linux-headers-4.15.0-72/drivers/scsi/fcoe 12 /usr/src/linux-headers-4.15.0-72/drivers/scsi/mvsas 12 /usr/src/linux-headers-4.15.0-72/drivers/scsi/device_handler 12 /usr/src/linux-headers-4.15.0-72/drivers/scsi/ufs 8 /usr/src/linux-headers-4.15.0-72/drivers/scsi/ibmvscsi_tgt 12 /usr/src/linux-headers-4.15.0-72/drivers/scsi/osd 12 /usr/src/linux-headers-4.15.0-72/drivers/scsi/bnx2i 12 /usr/src/linux-headers-4.15.0-72/drivers/scsi/qedi 12 /usr/src/linux-headers-4.15.0-72/drivers/scsi/aic94xx 8 /usr/src/linux-headers-4.15.0-72/drivers/scsi/lpfc 12 /usr/src/linux-headers-4.15.0-72/drivers/scsi/csiostor 12 /usr/src/linux-headers-4.15.0-72/drivers/scsi/hisi_sas 12 /usr/src/linux-headers-4.15.0-72/drivers/scsi/qla2xxx 8 /usr/src/linux-headers-4.15.0-72/drivers/scsi/fnic 12 /usr/src/linux-headers-4.15.0-72/drivers/scsi/esas2r 12 /usr/src/linux-headers-4.15.0-72/drivers/scsi/libsas 8 /usr/src/linux-headers-4.15.0-72/drivers/scsi/libfc 12 /usr/src/linux-headers-4.15.0-72/drivers/scsi/pcmcia 12 /usr/src/linux-headers-4.15.0-72/drivers/scsi/cxgbi/cxgb4i 12 /usr/src/linux-headers-4.15.0-72/drivers/scsi/cxgbi/cxgb3i 36 /usr/src/linux-headers-4.15.0-72/drivers/scsi/cxgbi 12 /usr/src/linux-headers-4.15.0-72/drivers/scsi/bnx2fc 12 /usr/src/linux-headers-4.15.0-72/drivers/scsi/megaraid 8 /usr/src/linux-headers-4.15.0-72/drivers/scsi/pm8001 12 /usr/src/linux-headers-4.15.0-72/drivers/scsi/arm 12 /usr/src/linux-headers-4.15.0-72/drivers/scsi/qedf 8 /usr/src/linux-headers-4.15.0-72/drivers/scsi/isci 8 /usr/src/linux-headers-4.15.0-72/drivers/scsi/sym53c8xx_2 12 /usr/src/linux-headers-4.15.0-72/drivers/scsi/mpt3sas 528 /usr/src/linux-headers-4.15.0-72/drivers/scsi 12 /usr/src/linux-headers-4.15.0-72/drivers/amba 8 /usr/src/linux-headers-4.15.0-72/drivers/sh/maple 8 /usr/src/linux-headers-4.15.0-72/drivers/sh/superhyway 8 /usr/src/linux-headers-4.15.0-72/drivers/sh/clk 12 /usr/src/linux-headers-4.15.0-72/drivers/sh/intc 48 /usr/src/linux-headers-4.15.0-72/drivers/sh 12 /usr/src/linux-headers-4.15.0-72/drivers/thermal/int340x_thermal 12 /usr/src/linux-headers-4.15.0-72/drivers/thermal/st 12 /usr/src/linux-headers-4.15.0-72/drivers/thermal/qcom 12 /usr/src/linux-headers-4.15.0-72/drivers/thermal/tegra 12 /usr/src/linux-headers-4.15.0-72/drivers/thermal/broadcom 12 /usr/src/linux-headers-4.15.0-72/drivers/thermal/samsung 12 /usr/src/linux-headers-4.15.0-72/drivers/thermal/ti-soc-thermal 112 /usr/src/linux-headers-4.15.0-72/drivers/thermal 12 /usr/src/linux-headers-4.15.0-72/drivers/fpga 12 /usr/src/linux-headers-4.15.0-72/drivers/eisa 8 /usr/src/linux-headers-4.15.0-72/drivers/uwb/i1480/dfu 16 /usr/src/linux-headers-4.15.0-72/drivers/uwb/i1480 28 /usr/src/linux-headers-4.15.0-72/drivers/uwb 8 /usr/src/linux-headers-4.15.0-72/drivers/tc 12 /usr/src/linux-headers-4.15.0-72/drivers/misc/cxl 8 /usr/src/linux-headers-4.15.0-72/drivers/misc/ibmasm 12 /usr/src/linux-headers-4.15.0-72/drivers/misc/vmw_vmci 8 /usr/src/linux-headers-4.15.0-72/drivers/misc/sgi-gru 12 /usr/src/linux-headers-4.15.0-72/drivers/misc/ti-st 12 /usr/src/linux-headers-4.15.0-72/drivers/misc/lis3lv02d 12 /usr/src/linux-headers-4.15.0-72/drivers/misc/cb710 8 /usr/src/linux-headers-4.15.0-72/drivers/misc/sgi-xp 12 /usr/src/linux-headers-4.15.0-72/drivers/misc/eeprom 12 /usr/src/linux-headers-4.15.0-72/drivers/misc/cardreader 12 /usr/src/linux-headers-4.15.0-72/drivers/misc/c2port 12 /usr/src/linux-headers-4.15.0-72/drivers/misc/altera-stapl 12 /usr/src/linux-headers-4.15.0-72/drivers/misc/ocxl 12 /usr/src/linux-headers-4.15.0-72/drivers/misc/genwqe 8 /usr/src/linux-headers-4.15.0-72/drivers/misc/mic/cosm 8 /usr/src/linux-headers-4.15.0-72/drivers/misc/mic/scif 8 /usr/src/linux-headers-4.15.0-72/drivers/misc/mic/vop 8 /usr/src/linux-headers-4.15.0-72/drivers/misc/mic/card 8 /usr/src/linux-headers-4.15.0-72/drivers/misc/mic/bus 8 /usr/src/linux-headers-4.15.0-72/drivers/misc/mic/host 8 /usr/src/linux-headers-4.15.0-72/drivers/misc/mic/cosm_client 72 /usr/src/linux-headers-4.15.0-72/drivers/misc/mic 12 /usr/src/linux-headers-4.15.0-72/drivers/misc/echo 12 /usr/src/linux-headers-4.15.0-72/drivers/misc/mei 280 /usr/src/linux-headers-4.15.0-72/drivers/misc 8 /usr/src/linux-headers-4.15.0-72/drivers/of/unittest-data 20 /usr/src/linux-headers-4.15.0-72/drivers/of 12 /usr/src/linux-headers-4.15.0-72/drivers/hid/usbhid 12 /usr/src/linux-headers-4.15.0-72/drivers/hid/i2c-hid 12 /usr/src/linux-headers-4.15.0-72/drivers/hid/intel-ish-hid 80 /usr/src/linux-headers-4.15.0-72/drivers/hid 12 /usr/src/linux-headers-4.15.0-72/drivers/md/persistent-data 12 /usr/src/linux-headers-4.15.0-72/drivers/md/bcache 52 /usr/src/linux-headers-4.15.0-72/drivers/md 12 /usr/src/linux-headers-4.15.0-72/drivers/vfio/platform/reset 24 /usr/src/linux-headers-4.15.0-72/drivers/vfio/platform 12 /usr/src/linux-headers-4.15.0-72/drivers/vfio/mdev 12 /usr/src/linux-headers-4.15.0-72/drivers/vfio/pci 60 /usr/src/linux-headers-4.15.0-72/drivers/vfio 16 /usr/src/linux-headers-4.15.0-72/drivers/parisc 76 /usr/src/linux-headers-4.15.0-72/drivers/mfd 12 /usr/src/linux-headers-4.15.0-72/drivers/powercap 12 /usr/src/linux-headers-4.15.0-72/drivers/target/tcm_fc 12 /usr/src/linux-headers-4.15.0-72/drivers/target/sbp 12 /usr/src/linux-headers-4.15.0-72/drivers/target/iscsi/cxgbit 24 /usr/src/linux-headers-4.15.0-72/drivers/target/iscsi 12 /usr/src/linux-headers-4.15.0-72/drivers/target/loopback 72 /usr/src/linux-headers-4.15.0-72/drivers/target 16 /usr/src/linux-headers-4.15.0-72/drivers/nvmem 8 /usr/src/linux-headers-4.15.0-72/drivers/clk/spear 8 /usr/src/linux-headers-4.15.0-72/drivers/clk/nxp 8 /usr/src/linux-headers-4.15.0-72/drivers/clk/st 8 /usr/src/linux-headers-4.15.0-72/drivers/clk/loongson1 8 /usr/src/linux-headers-4.15.0-72/drivers/clk/mxs 12 /usr/src/linux-headers-4.15.0-72/drivers/clk/uniphier 12 /usr/src/linux-headers-4.15.0-72/drivers/clk/ti 16 /usr/src/linux-headers-4.15.0-72/drivers/clk/qcom 8 /usr/src/linux-headers-4.15.0-72/drivers/clk/at91 8 /usr/src/linux-headers-4.15.0-72/drivers/clk/mmp 12 /usr/src/linux-headers-4.15.0-72/drivers/clk/bcm 8 /usr/src/linux-headers-4.15.0-72/drivers/clk/h8300 12 /usr/src/linux-headers-4.15.0-72/drivers/clk/versatile 8 /usr/src/linux-headers-4.15.0-72/drivers/clk/berlin 8 /usr/src/linux-headers-4.15.0-72/drivers/clk/ingenic 8 /usr/src/linux-headers-4.15.0-72/drivers/clk/microchip 12 /usr/src/linux-headers-4.15.0-72/drivers/clk/tegra 8 /usr/src/linux-headers-4.15.0-72/drivers/clk/imx 12 /usr/src/linux-headers-4.15.0-72/drivers/clk/keystone 8 /usr/src/linux-headers-4.15.0-72/drivers/clk/axis 12 /usr/src/linux-headers-4.15.0-72/drivers/clk/sunxi-ng 8 /usr/src/linux-headers-4.15.0-72/drivers/clk/ux500 12 /usr/src/linux-headers-4.15.0-72/drivers/clk/imgtec 8 /usr/src/linux-headers-4.15.0-72/drivers/clk/zte 8 /usr/src/linux-headers-4.15.0-72/drivers/clk/x86 8 /usr/src/linux-headers-4.15.0-72/drivers/clk/pxa 12 /usr/src/linux-headers-4.15.0-72/drivers/clk/renesas 8 /usr/src/linux-headers-4.15.0-72/drivers/clk/sirf 8 /usr/src/linux-headers-4.15.0-72/drivers/clk/axs10x 16 /usr/src/linux-headers-4.15.0-72/drivers/clk/mediatek 12 /usr/src/linux-headers-4.15.0-72/drivers/clk/samsung 8 /usr/src/linux-headers-4.15.0-72/drivers/clk/pistachio 12 /usr/src/linux-headers-4.15.0-72/drivers/clk/mvebu 12 /usr/src/linux-headers-4.15.0-72/drivers/clk/hisilicon 8 /usr/src/linux-headers-4.15.0-72/drivers/clk/rockchip 8 /usr/src/linux-headers-4.15.0-72/drivers/clk/sunxi 8 /usr/src/linux-headers-4.15.0-72/drivers/clk/zynq 8 /usr/src/linux-headers-4.15.0-72/drivers/clk/socfpga 12 /usr/src/linux-headers-4.15.0-72/drivers/clk/meson 396 /usr/src/linux-headers-4.15.0-72/drivers/clk 12 /usr/src/linux-headers-4.15.0-72/drivers/ipack/carriers 12 /usr/src/linux-headers-4.15.0-72/drivers/ipack/devices 36 /usr/src/linux-headers-4.15.0-72/drivers/ipack 12 /usr/src/linux-headers-4.15.0-72/drivers/iio/buffer 12 /usr/src/linux-headers-4.15.0-72/drivers/iio/counter 12 /usr/src/linux-headers-4.15.0-72/drivers/iio/potentiostat 12 /usr/src/linux-headers-4.15.0-72/drivers/iio/frequency 12 /usr/src/linux-headers-4.15.0-72/drivers/iio/humidity 12 /usr/src/linux-headers-4.15.0-72/drivers/iio/common/ssp_sensors 12 /usr/src/linux-headers-4.15.0-72/drivers/iio/common/hid-sensors 12 /usr/src/linux-headers-4.15.0-72/drivers/iio/common/st_sensors 12 /usr/src/linux-headers-4.15.0-72/drivers/iio/common/ms_sensors 12 /usr/src/linux-headers-4.15.0-72/drivers/iio/common/cros_ec_sensors 72 /usr/src/linux-headers-4.15.0-72/drivers/iio/common 36 /usr/src/linux-headers-4.15.0-72/drivers/iio/adc 16 /usr/src/linux-headers-4.15.0-72/drivers/iio/magnetometer 12 /usr/src/linux-headers-4.15.0-72/drivers/iio/multiplexer 20 /usr/src/linux-headers-4.15.0-72/drivers/iio/light 12 /usr/src/linux-headers-4.15.0-72/drivers/iio/potentiometer 12 /usr/src/linux-headers-4.15.0-72/drivers/iio/proximity 12 /usr/src/linux-headers-4.15.0-72/drivers/iio/dummy 12 /usr/src/linux-headers-4.15.0-72/drivers/iio/gyro 12 /usr/src/linux-headers-4.15.0-72/drivers/iio/orientation 12 /usr/src/linux-headers-4.15.0-72/drivers/iio/chemical 20 /usr/src/linux-headers-4.15.0-72/drivers/iio/accel 16 /usr/src/linux-headers-4.15.0-72/drivers/iio/pressure 12 /usr/src/linux-headers-4.15.0-72/drivers/iio/amplifiers 12 /usr/src/linux-headers-4.15.0-72/drivers/iio/health 12 /usr/src/linux-headers-4.15.0-72/drivers/iio/temperature 12 /usr/src/linux-headers-4.15.0-72/drivers/iio/imu/inv_mpu6050 12 /usr/src/linux-headers-4.15.0-72/drivers/iio/imu/bmi160 12 /usr/src/linux-headers-4.15.0-72/drivers/iio/imu/st_lsm6dsx 48 /usr/src/linux-headers-4.15.0-72/drivers/iio/imu 20 /usr/src/linux-headers-4.15.0-72/drivers/iio/dac 12 /usr/src/linux-headers-4.15.0-72/drivers/iio/trigger 452 /usr/src/linux-headers-4.15.0-72/drivers/iio 12 /usr/src/linux-headers-4.15.0-72/drivers/mmc/core 40 /usr/src/linux-headers-4.15.0-72/drivers/mmc/host 64 /usr/src/linux-headers-4.15.0-72/drivers/mmc 12 /usr/src/linux-headers-4.15.0-72/drivers/dma/bestcomm 12 /usr/src/linux-headers-4.15.0-72/drivers/dma/hsu 8 /usr/src/linux-headers-4.15.0-72/drivers/dma/ioat 12 /usr/src/linux-headers-4.15.0-72/drivers/dma/qcom 8 /usr/src/linux-headers-4.15.0-72/drivers/dma/ipu 8 /usr/src/linux-headers-4.15.0-72/drivers/dma/ppc4xx 12 /usr/src/linux-headers-4.15.0-72/drivers/dma/sh 12 /usr/src/linux-headers-4.15.0-72/drivers/dma/dw 8 /usr/src/linux-headers-4.15.0-72/drivers/dma/xilinx 120 /usr/src/linux-headers-4.15.0-72/drivers/dma 8 /usr/src/linux-headers-4.15.0-72/drivers/firmware/efi/libstub 8 /usr/src/linux-headers-4.15.0-72/drivers/firmware/efi/test 32 /usr/src/linux-headers-4.15.0-72/drivers/firmware/efi 12 /usr/src/linux-headers-4.15.0-72/drivers/firmware/tegra 12 /usr/src/linux-headers-4.15.0-72/drivers/firmware/broadcom 12 /usr/src/linux-headers-4.15.0-72/drivers/firmware/google 12 /usr/src/linux-headers-4.15.0-72/drivers/firmware/meson 100 /usr/src/linux-headers-4.15.0-72/drivers/firmware 12 /usr/src/linux-headers-4.15.0-72/drivers/infiniband/sw/rxe 12 /usr/src/linux-headers-4.15.0-72/drivers/infiniband/sw/rdmavt 32 /usr/src/linux-headers-4.15.0-72/drivers/infiniband/sw 8 /usr/src/linux-headers-4.15.0-72/drivers/infiniband/core 12 /usr/src/linux-headers-4.15.0-72/drivers/infiniband/hw/hns 12 /usr/src/linux-headers-4.15.0-72/drivers/infiniband/hw/hfi1 12 /usr/src/linux-headers-4.15.0-72/drivers/infiniband/hw/qib 12 /usr/src/linux-headers-4.15.0-72/drivers/infiniband/hw/cxgb3 12 /usr/src/linux-headers-4.15.0-72/drivers/infiniband/hw/i40iw 12 /usr/src/linux-headers-4.15.0-72/drivers/infiniband/hw/ocrdma 12 /usr/src/linux-headers-4.15.0-72/drivers/infiniband/hw/qedr 12 /usr/src/linux-headers-4.15.0-72/drivers/infiniband/hw/mlx5 12 /usr/src/linux-headers-4.15.0-72/drivers/infiniband/hw/nes 12 /usr/src/linux-headers-4.15.0-72/drivers/infiniband/hw/mlx4 12 /usr/src/linux-headers-4.15.0-72/drivers/infiniband/hw/vmw_pvrdma 12 /usr/src/linux-headers-4.15.0-72/drivers/infiniband/hw/bnxt_re 12 /usr/src/linux-headers-4.15.0-72/drivers/infiniband/hw/mthca 12 /usr/src/linux-headers-4.15.0-72/drivers/infiniband/hw/cxgb4 12 /usr/src/linux-headers-4.15.0-72/drivers/infiniband/hw/usnic 188 /usr/src/linux-headers-4.15.0-72/drivers/infiniband/hw 12 /usr/src/linux-headers-4.15.0-72/drivers/infiniband/ulp/isert 12 /usr/src/linux-headers-4.15.0-72/drivers/infiniband/ulp/iser 12 /usr/src/linux-headers-4.15.0-72/drivers/infiniband/ulp/srp 12 /usr/src/linux-headers-4.15.0-72/drivers/infiniband/ulp/ipoib 12 /usr/src/linux-headers-4.15.0-72/drivers/infiniband/ulp/srpt 12 /usr/src/linux-headers-4.15.0-72/drivers/infiniband/ulp/opa_vnic 80 /usr/src/linux-headers-4.15.0-72/drivers/infiniband/ulp 320 /usr/src/linux-headers-4.15.0-72/drivers/infiniband 8 /usr/src/linux-headers-4.15.0-72/drivers/acpi/acpica 12 /usr/src/linux-headers-4.15.0-72/drivers/acpi/arm64 12 /usr/src/linux-headers-4.15.0-72/drivers/acpi/dptf 12 /usr/src/linux-headers-4.15.0-72/drivers/acpi/apei 12 /usr/src/linux-headers-4.15.0-72/drivers/acpi/nfit 84 /usr/src/linux-headers-4.15.0-72/drivers/acpi 12 /usr/src/linux-headers-4.15.0-72/drivers/rpmsg 16 /usr/src/linux-headers-4.15.0-72/drivers/ssb 12 /usr/src/linux-headers-4.15.0-72/drivers/connector 40 /usr/src/linux-headers-4.15.0-72/drivers/ata 16 /usr/src/linux-headers-4.15.0-72/drivers/w1/slaves 12 /usr/src/linux-headers-4.15.0-72/drivers/w1/masters 40 /usr/src/linux-headers-4.15.0-72/drivers/w1 20 /usr/src/linux-headers-4.15.0-72/drivers/pcmcia 12 /usr/src/linux-headers-4.15.0-72/drivers/usb/dwc3 12 /usr/src/linux-headers-4.15.0-72/drivers/usb/dwc2 12 /usr/src/linux-headers-4.15.0-72/drivers/usb/wusbcore 8 /usr/src/linux-headers-4.15.0-72/drivers/usb/common 12 /usr/src/linux-headers-4.15.0-72/drivers/usb/usbip 40 /usr/src/linux-headers-4.15.0-72/drivers/usb/serial 12 /usr/src/linux-headers-4.15.0-72/drivers/usb/chipidea 12 /usr/src/linux-headers-4.15.0-72/drivers/usb/atm 12 /usr/src/linux-headers-4.15.0-72/drivers/usb/mon 12 /usr/src/linux-headers-4.15.0-72/drivers/usb/class 16 /usr/src/linux-headers-4.15.0-72/drivers/usb/musb 12 /usr/src/linux-headers-4.15.0-72/drivers/usb/renesas_usbhs 8 /usr/src/linux-headers-4.15.0-72/drivers/usb/early 8 /usr/src/linux-headers-4.15.0-72/drivers/usb/c67x00 12 /usr/src/linux-headers-4.15.0-72/drivers/usb/core 12 /usr/src/linux-headers-4.15.0-72/drivers/usb/mtu3 16 /usr/src/linux-headers-4.15.0-72/drivers/usb/phy 12 /usr/src/linux-headers-4.15.0-72/drivers/usb/image 8 /usr/src/linux-headers-4.15.0-72/drivers/usb/host/whci 44 /usr/src/linux-headers-4.15.0-72/drivers/usb/host 12 /usr/src/linux-headers-4.15.0-72/drivers/usb/misc/sisusbvga 32 /usr/src/linux-headers-4.15.0-72/drivers/usb/misc 12 /usr/src/linux-headers-4.15.0-72/drivers/usb/typec/ucsi 12 /usr/src/linux-headers-4.15.0-72/drivers/usb/typec/fusb302 36 /usr/src/linux-headers-4.15.0-72/drivers/usb/typec 12 /usr/src/linux-headers-4.15.0-72/drivers/usb/isp1760 16 /usr/src/linux-headers-4.15.0-72/drivers/usb/storage 12 /usr/src/linux-headers-4.15.0-72/drivers/usb/gadget/udc/bdc 40 /usr/src/linux-headers-4.15.0-72/drivers/usb/gadget/udc 28 /usr/src/linux-headers-4.15.0-72/drivers/usb/gadget/legacy 8 /usr/src/linux-headers-4.15.0-72/drivers/usb/gadget/function 104 /usr/src/linux-headers-4.15.0-72/drivers/usb/gadget 500 /usr/src/linux-headers-4.15.0-72/drivers/usb 40 /usr/src/linux-headers-4.15.0-72/drivers/ide 8 /usr/src/linux-headers-4.15.0-72/drivers/cdrom 12 /usr/src/linux-headers-4.15.0-72/drivers/zorro 24 /usr/src/linux-headers-4.15.0-72/drivers/edac 12 /usr/src/linux-headers-4.15.0-72/drivers/lightnvm 16 /usr/src/linux-headers-4.15.0-72/drivers/uio 52 /usr/src/linux-headers-4.15.0-72/drivers/cpufreq 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/rtl8712 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/fwserial 8 /usr/src/linux-headers-4.15.0-72/drivers/staging/lustre/lustre/lov 8 /usr/src/linux-headers-4.15.0-72/drivers/staging/lustre/lustre/ptlrpc 8 /usr/src/linux-headers-4.15.0-72/drivers/staging/lustre/lustre/obdclass 8 /usr/src/linux-headers-4.15.0-72/drivers/staging/lustre/lustre/lmv 8 /usr/src/linux-headers-4.15.0-72/drivers/staging/lustre/lustre/fid 8 /usr/src/linux-headers-4.15.0-72/drivers/staging/lustre/lustre/mgc 8 /usr/src/linux-headers-4.15.0-72/drivers/staging/lustre/lustre/fld 8 /usr/src/linux-headers-4.15.0-72/drivers/staging/lustre/lustre/osc 8 /usr/src/linux-headers-4.15.0-72/drivers/staging/lustre/lustre/llite 8 /usr/src/linux-headers-4.15.0-72/drivers/staging/lustre/lustre/mdc 8 /usr/src/linux-headers-4.15.0-72/drivers/staging/lustre/lustre/obdecho 100 /usr/src/linux-headers-4.15.0-72/drivers/staging/lustre/lustre 8 /usr/src/linux-headers-4.15.0-72/drivers/staging/lustre/lnet/lnet 8 /usr/src/linux-headers-4.15.0-72/drivers/staging/lustre/lnet/libcfs 8 /usr/src/linux-headers-4.15.0-72/drivers/staging/lustre/lnet/selftest 8 /usr/src/linux-headers-4.15.0-72/drivers/staging/lustre/lnet/klnds/socklnd 8 /usr/src/linux-headers-4.15.0-72/drivers/staging/lustre/lnet/klnds/o2iblnd 24 /usr/src/linux-headers-4.15.0-72/drivers/staging/lustre/lnet/klnds 60 /usr/src/linux-headers-4.15.0-72/drivers/staging/lustre/lnet 172 /usr/src/linux-headers-4.15.0-72/drivers/staging/lustre 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/rtl8188eu 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/pi433 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/vboxvideo 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/gdm724x 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/skein 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/olpc_dcon 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/dgnc 24 /usr/src/linux-headers-4.15.0-72/drivers/staging/irda/drivers 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/irda/net/ircomm 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/irda/net/irlan 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/irda/net/irnet 48 /usr/src/linux-headers-4.15.0-72/drivers/staging/irda/net 76 /usr/src/linux-headers-4.15.0-72/drivers/staging/irda 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/goldfish 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/comedi/drivers 8 /usr/src/linux-headers-4.15.0-72/drivers/staging/comedi/kcomedilib 72 /usr/src/linux-headers-4.15.0-72/drivers/staging/comedi 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/nvec 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/vt6655 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/octeon 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/wilc1000 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/wlan-ng 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/vc04_services/bcm2835-camera 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/vc04_services/bcm2835-audio 36 /usr/src/linux-headers-4.15.0-72/drivers/staging/vc04_services 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/clocking-wizard 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/most/hdm-dim2 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/most/mostcore 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/most/aim-network 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/most/hdm-usb 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/most/aim-sound 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/most/hdm-i2c 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/most/aim-v4l2 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/most/aim-cdev 108 /usr/src/linux-headers-4.15.0-72/drivers/staging/most 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/xgifb 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/mt29f_spinand 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/android/ion 24 /usr/src/linux-headers-4.15.0-72/drivers/staging/android 16 /usr/src/linux-headers-4.15.0-72/drivers/staging/fbtft 8 /usr/src/linux-headers-4.15.0-72/drivers/staging/greybus/tools 24 /usr/src/linux-headers-4.15.0-72/drivers/staging/greybus 8 /usr/src/linux-headers-4.15.0-72/drivers/staging/fsl-mc/bus/dpio 20 /usr/src/linux-headers-4.15.0-72/drivers/staging/fsl-mc/bus 32 /usr/src/linux-headers-4.15.0-72/drivers/staging/fsl-mc 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/ccree 8 /usr/src/linux-headers-4.15.0-72/drivers/staging/rtlwifi/rtl8822be 8 /usr/src/linux-headers-4.15.0-72/drivers/staging/rtlwifi/btcoexist 28 /usr/src/linux-headers-4.15.0-72/drivers/staging/rtlwifi 16 /usr/src/linux-headers-4.15.0-72/drivers/staging/speakup 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/sm750fb 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/gs_fpgaboot 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/octeon-usb 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/ks7010 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/emxx_udc 8 /usr/src/linux-headers-4.15.0-72/drivers/staging/rtl8192u/ieee80211 20 /usr/src/linux-headers-4.15.0-72/drivers/staging/rtl8192u 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/board 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/iio/frequency 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/iio/adc 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/iio/cdc 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/iio/addac 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/iio/light 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/iio/impedance-analyzer 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/iio/gyro 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/iio/resolver 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/iio/accel 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/iio/meter 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/iio/trigger 144 /usr/src/linux-headers-4.15.0-72/drivers/staging/iio 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/unisys/visorbus 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/unisys/visorinput 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/unisys/visorhba 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/unisys/visornic 60 /usr/src/linux-headers-4.15.0-72/drivers/staging/unisys 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/rtl8723bs 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/typec 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/rtl8192e/rtl8192e 24 /usr/src/linux-headers-4.15.0-72/drivers/staging/rtl8192e 8 /usr/src/linux-headers-4.15.0-72/drivers/staging/fsl-dpaa2/ethernet 20 /usr/src/linux-headers-4.15.0-72/drivers/staging/fsl-dpaa2 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/netlogic 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/vme/devices 20 /usr/src/linux-headers-4.15.0-72/drivers/staging/vme 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/rts5208 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/media/atomisp/i2c/ov5693 24 /usr/src/linux-headers-4.15.0-72/drivers/staging/media/atomisp/i2c 8 /usr/src/linux-headers-4.15.0-72/drivers/staging/media/atomisp/platform/intel-mid 16 /usr/src/linux-headers-4.15.0-72/drivers/staging/media/atomisp/platform 8 /usr/src/linux-headers-4.15.0-72/drivers/staging/media/atomisp/pci/atomisp2/css2400 28 /usr/src/linux-headers-4.15.0-72/drivers/staging/media/atomisp/pci/atomisp2 40 /usr/src/linux-headers-4.15.0-72/drivers/staging/media/atomisp/pci 92 /usr/src/linux-headers-4.15.0-72/drivers/staging/media/atomisp 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/media/davinci_vpfe 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/media/imx 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/media/lirc 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/media/omap4iss 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/media/cxd2099 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/media/bcm2048 176 /usr/src/linux-headers-4.15.0-72/drivers/staging/media 12 /usr/src/linux-headers-4.15.0-72/drivers/staging/vt6656 1440 /usr/src/linux-headers-4.15.0-72/drivers/staging 12 /usr/src/linux-headers-4.15.0-72/drivers/rapidio/devices 12 /usr/src/linux-headers-4.15.0-72/drivers/rapidio/switches 36 /usr/src/linux-headers-4.15.0-72/drivers/rapidio 8 /usr/src/linux-headers-4.15.0-72/drivers/tty/vt 28 /usr/src/linux-headers-4.15.0-72/drivers/tty/serial/8250 8 /usr/src/linux-headers-4.15.0-72/drivers/tty/serial/jsm 8 /usr/src/linux-headers-4.15.0-72/drivers/tty/serial/cpm_uart 112 /usr/src/linux-headers-4.15.0-72/drivers/tty/serial 8 /usr/src/linux-headers-4.15.0-72/drivers/tty/ipwireless 12 /usr/src/linux-headers-4.15.0-72/drivers/tty/hvc 12 /usr/src/linux-headers-4.15.0-72/drivers/tty/serdev 180 /usr/src/linux-headers-4.15.0-72/drivers/tty 12 /usr/src/linux-headers-4.15.0-72/drivers/vme/boards 12 /usr/src/linux-headers-4.15.0-72/drivers/vme/bridges 36 /usr/src/linux-headers-4.15.0-72/drivers/vme 12 /usr/src/linux-headers-4.15.0-72/drivers/hv 76 /usr/src/linux-headers-4.15.0-72/drivers/watchdog 16 /usr/src/linux-headers-4.15.0-72/drivers/remoteproc 8 /usr/src/linux-headers-4.15.0-72/drivers/cpuidle/governors 32 /usr/src/linux-headers-4.15.0-72/drivers/cpuidle 12 /usr/src/linux-headers-4.15.0-72/drivers/isdn/hysdn 12 /usr/src/linux-headers-4.15.0-72/drivers/isdn/gigaset 8 /usr/src/linux-headers-4.15.0-72/drivers/isdn/isdnloop 12 /usr/src/linux-headers-4.15.0-72/drivers/isdn/capi 12 /usr/src/linux-headers-4.15.0-72/drivers/isdn/mISDN 24 /usr/src/linux-headers-4.15.0-72/drivers/isdn/hisax 16 /usr/src/linux-headers-4.15.0-72/drivers/isdn/i4l 12 /usr/src/linux-headers-4.15.0-72/drivers/isdn/hardware/mISDN 12 /usr/src/linux-headers-4.15.0-72/drivers/isdn/hardware/eicon 12 /usr/src/linux-headers-4.15.0-72/drivers/isdn/hardware/avm 48 /usr/src/linux-headers-4.15.0-72/drivers/isdn/hardware 8 /usr/src/linux-headers-4.15.0-72/drivers/isdn/divert 164 /usr/src/linux-headers-4.15.0-72/drivers/isdn 16 /usr/src/linux-headers-4.15.0-72/drivers/pci/dwc 12 /usr/src/linux-headers-4.15.0-72/drivers/pci/switch 16 /usr/src/linux-headers-4.15.0-72/drivers/pci/hotplug 12 /usr/src/linux-headers-4.15.0-72/drivers/pci/endpoint/functions 24 /usr/src/linux-headers-4.15.0-72/drivers/pci/endpoint 16 /usr/src/linux-headers-4.15.0-72/drivers/pci/pcie/aer 28 /usr/src/linux-headers-4.15.0-72/drivers/pci/pcie 16 /usr/src/linux-headers-4.15.0-72/drivers/pci/host 124 /usr/src/linux-headers-4.15.0-72/drivers/pci 24 /usr/src/linux-headers-4.15.0-72/drivers/pwm 16 /usr/src/linux-headers-4.15.0-72/drivers/mailbox 12 /usr/src/linux-headers-4.15.0-72/drivers/media/spi 12 /usr/src/linux-headers-4.15.0-72/drivers/media/firewire 20 /usr/src/linux-headers-4.15.0-72/drivers/media/tuners 12 /usr/src/linux-headers-4.15.0-72/drivers/media/cec 12 /usr/src/linux-headers-4.15.0-72/drivers/media/rc/img-ir 12 /usr/src/linux-headers-4.15.0-72/drivers/media/rc/keymaps 48 /usr/src/linux-headers-4.15.0-72/drivers/media/rc 12 /usr/src/linux-headers-4.15.0-72/drivers/media/common/b2c2 12 /usr/src/linux-headers-4.15.0-72/drivers/media/common/saa7146 12 /usr/src/linux-headers-4.15.0-72/drivers/media/common/v4l2-tpg 12 /usr/src/linux-headers-4.15.0-72/drivers/media/common/siano 60 /usr/src/linux-headers-4.15.0-72/drivers/media/common 12 /usr/src/linux-headers-4.15.0-72/drivers/media/radio/wl128x 12 /usr/src/linux-headers-4.15.0-72/drivers/media/radio/si4713 12 /usr/src/linux-headers-4.15.0-72/drivers/media/radio/si470x 60 /usr/src/linux-headers-4.15.0-72/drivers/media/radio 12 /usr/src/linux-headers-4.15.0-72/drivers/media/i2c/m5mols 8 /usr/src/linux-headers-4.15.0-72/drivers/media/i2c/adv748x 12 /usr/src/linux-headers-4.15.0-72/drivers/media/i2c/soc_camera 12 /usr/src/linux-headers-4.15.0-72/drivers/media/i2c/smiapp 12 /usr/src/linux-headers-4.15.0-72/drivers/media/i2c/cx25840 8 /usr/src/linux-headers-4.15.0-72/drivers/media/i2c/s5c73m3 12 /usr/src/linux-headers-4.15.0-72/drivers/media/i2c/et8ek8 112 /usr/src/linux-headers-4.15.0-72/drivers/media/i2c 12 /usr/src/linux-headers-4.15.0-72/drivers/media/platform/vimc 8 /usr/src/linux-headers-4.15.0-72/drivers/media/platform/tegra-cec 12 /usr/src/linux-headers-4.15.0-72/drivers/media/platform/rcar-vin 8 /usr/src/linux-headers-4.15.0-72/drivers/media/platform/omap3isp 12 /usr/src/linux-headers-4.15.0-72/drivers/media/platform/davinci 12 /usr/src/linux-headers-4.15.0-72/drivers/media/platform/soc_camera 8 /usr/src/linux-headers-4.15.0-72/drivers/media/platform/sti/cec 8 /usr/src/linux-headers-4.15.0-72/drivers/media/platform/sti/bdisp 8 /usr/src/linux-headers-4.15.0-72/drivers/media/platform/sti/hva 8 /usr/src/linux-headers-4.15.0-72/drivers/media/platform/sti/delta 12 /usr/src/linux-headers-4.15.0-72/drivers/media/platform/sti/c8sectpfe 48 /usr/src/linux-headers-4.15.0-72/drivers/media/platform/sti 8 /usr/src/linux-headers-4.15.0-72/drivers/media/platform/mtk-vpu 12 /usr/src/linux-headers-4.15.0-72/drivers/media/platform/am437x 8 /usr/src/linux-headers-4.15.0-72/drivers/media/platform/stm32 8 /usr/src/linux-headers-4.15.0-72/drivers/media/platform/qcom/venus 8 /usr/src/linux-headers-4.15.0-72/drivers/media/platform/qcom/camss-8x16 20 /usr/src/linux-headers-4.15.0-72/drivers/media/platform/qcom 8 /usr/src/linux-headers-4.15.0-72/drivers/media/platform/s5p-g2d 8 /usr/src/linux-headers-4.15.0-72/drivers/media/platform/s3c-camif 8 /usr/src/linux-headers-4.15.0-72/drivers/media/platform/cec-gpio 8 /usr/src/linux-headers-4.15.0-72/drivers/media/platform/s5p-cec 8 /usr/src/linux-headers-4.15.0-72/drivers/media/platform/vsp1 8 /usr/src/linux-headers-4.15.0-72/drivers/media/platform/mtk-vcodec 12 /usr/src/linux-headers-4.15.0-72/drivers/media/platform/vivid 8 /usr/src/linux-headers-4.15.0-72/drivers/media/platform/exynos-gsc 8 /usr/src/linux-headers-4.15.0-72/drivers/media/platform/s5p-mfc 12 /usr/src/linux-headers-4.15.0-72/drivers/media/platform/blackfin 12 /usr/src/linux-headers-4.15.0-72/drivers/media/platform/marvell-ccic 12 /usr/src/linux-headers-4.15.0-72/drivers/media/platform/omap 8 /usr/src/linux-headers-4.15.0-72/drivers/media/platform/mtk-jpeg 8 /usr/src/linux-headers-4.15.0-72/drivers/media/platform/coda 8 /usr/src/linux-headers-4.15.0-72/drivers/media/platform/mtk-mdp 8 /usr/src/linux-headers-4.15.0-72/drivers/media/platform/s5p-jpeg 8 /usr/src/linux-headers-4.15.0-72/drivers/media/platform/ti-vpe 8 /usr/src/linux-headers-4.15.0-72/drivers/media/platform/rockchip/rga 12 /usr/src/linux-headers-4.15.0-72/drivers/media/platform/rockchip 12 /usr/src/linux-headers-4.15.0-72/drivers/media/platform/atmel 12 /usr/src/linux-headers-4.15.0-72/drivers/media/platform/exynos4-is 8 /usr/src/linux-headers-4.15.0-72/drivers/media/platform/meson 12 /usr/src/linux-headers-4.15.0-72/drivers/media/platform/xilinx 396 /usr/src/linux-headers-4.15.0-72/drivers/media/platform 12 /usr/src/linux-headers-4.15.0-72/drivers/media/v4l2-core 12 /usr/src/linux-headers-4.15.0-72/drivers/media/mmc/siano 24 /usr/src/linux-headers-4.15.0-72/drivers/media/mmc 12 /usr/src/linux-headers-4.15.0-72/drivers/media/dvb-core 20 /usr/src/linux-headers-4.15.0-72/drivers/media/usb/dvb-usb 12 /usr/src/linux-headers-4.15.0-72/drivers/media/usb/ttusb-dec 12 /usr/src/linux-headers-4.15.0-72/drivers/media/usb/au0828 12 /usr/src/linux-headers-4.15.0-72/drivers/media/usb/stkwebcam 12 /usr/src/linux-headers-4.15.0-72/drivers/media/usb/usbtv 12 /usr/src/linux-headers-4.15.0-72/drivers/media/usb/pwc 12 /usr/src/linux-headers-4.15.0-72/drivers/media/usb/gspca/gl860 12 /usr/src/linux-headers-4.15.0-72/drivers/media/usb/gspca/m5602 12 /usr/src/linux-headers-4.15.0-72/drivers/media/usb/gspca/stv06xx 64 /usr/src/linux-headers-4.15.0-72/drivers/media/usb/gspca 12 /usr/src/linux-headers-4.15.0-72/drivers/media/usb/b2c2 12 /usr/src/linux-headers-4.15.0-72/drivers/media/usb/rainshadow-cec 12 /usr/src/linux-headers-4.15.0-72/drivers/media/usb/ttusb-budget 12 /usr/src/linux-headers-4.15.0-72/drivers/media/usb/hackrf 12 /usr/src/linux-headers-4.15.0-72/drivers/media/usb/uvc 12 /usr/src/linux-headers-4.15.0-72/drivers/media/usb/usbvision 12 /usr/src/linux-headers-4.15.0-72/drivers/media/usb/em28xx 12 /usr/src/linux-headers-4.15.0-72/drivers/media/usb/zr364xx 12 /usr/src/linux-headers-4.15.0-72/drivers/media/usb/airspy 12 /usr/src/linux-headers-4.15.0-72/drivers/media/usb/stk1160 12 /usr/src/linux-headers-4.15.0-72/drivers/media/usb/s2255 12 /usr/src/linux-headers-4.15.0-72/drivers/media/usb/hdpvr 12 /usr/src/linux-headers-4.15.0-72/drivers/media/usb/pvrusb2 12 /usr/src/linux-headers-4.15.0-72/drivers/media/usb/cx231xx 12 /usr/src/linux-headers-4.15.0-72/drivers/media/usb/tm6000 12 /usr/src/linux-headers-4.15.0-72/drivers/media/usb/cpia2 12 /usr/src/linux-headers-4.15.0-72/drivers/media/usb/msi2500 12 /usr/src/linux-headers-4.15.0-72/drivers/media/usb/as102 12 /usr/src/linux-headers-4.15.0-72/drivers/media/usb/pulse8-cec 12 /usr/src/linux-headers-4.15.0-72/drivers/media/usb/siano 12 /usr/src/linux-headers-4.15.0-72/drivers/media/usb/go7007 16 /usr/src/linux-headers-4.15.0-72/drivers/media/usb/dvb-usb-v2 424 /usr/src/linux-headers-4.15.0-72/drivers/media/usb 12 /usr/src/linux-headers-4.15.0-72/drivers/media/dvb-frontends/drx39xyj 52 /usr/src/linux-headers-4.15.0-72/drivers/media/dvb-frontends 12 /usr/src/linux-headers-4.15.0-72/drivers/media/pci/dm1105 12 /usr/src/linux-headers-4.15.0-72/drivers/media/pci/meye 12 /usr/src/linux-headers-4.15.0-72/drivers/media/pci/ngene 12 /usr/src/linux-headers-4.15.0-72/drivers/media/pci/smipcie 12 /usr/src/linux-headers-4.15.0-72/drivers/media/pci/cx18 12 /usr/src/linux-headers-4.15.0-72/drivers/media/pci/tw68 12 /usr/src/linux-headers-4.15.0-72/drivers/media/pci/ivtv 12 /usr/src/linux-headers-4.15.0-72/drivers/media/pci/solo6x10 12 /usr/src/linux-headers-4.15.0-72/drivers/media/pci/pt3 12 /usr/src/linux-headers-4.15.0-72/drivers/media/pci/pluto2 12 /usr/src/linux-headers-4.15.0-72/drivers/media/pci/b2c2 12 /usr/src/linux-headers-4.15.0-72/drivers/media/pci/bt8xx 12 /usr/src/linux-headers-4.15.0-72/drivers/media/pci/saa7146 12 /usr/src/linux-headers-4.15.0-72/drivers/media/pci/netup_unidvb 16 /usr/src/linux-headers-4.15.0-72/drivers/media/pci/ttpci 12 /usr/src/linux-headers-4.15.0-72/drivers/media/pci/sta2x11 12 /usr/src/linux-headers-4.15.0-72/drivers/media/pci/pt1 12 /usr/src/linux-headers-4.15.0-72/drivers/media/pci/saa7134 12 /usr/src/linux-headers-4.15.0-72/drivers/media/pci/cobalt 12 /usr/src/linux-headers-4.15.0-72/drivers/media/pci/dt3155 12 /usr/src/linux-headers-4.15.0-72/drivers/media/pci/zoran 12 /usr/src/linux-headers-4.15.0-72/drivers/media/pci/mantis 12 /usr/src/linux-headers-4.15.0-72/drivers/media/pci/cx88 12 /usr/src/linux-headers-4.15.0-72/drivers/media/pci/saa7164 12 /usr/src/linux-headers-4.15.0-72/drivers/media/pci/cx23885 12 /usr/src/linux-headers-4.15.0-72/drivers/media/pci/tw5864 12 /usr/src/linux-headers-4.15.0-72/drivers/media/pci/cx25821 12 /usr/src/linux-headers-4.15.0-72/drivers/media/pci/tw686x 12 /usr/src/linux-headers-4.15.0-72/drivers/media/pci/ddbridge 364 /usr/src/linux-headers-4.15.0-72/drivers/media/pci 1636 /usr/src/linux-headers-4.15.0-72/drivers/media 12 /usr/src/linux-headers-4.15.0-72/drivers/sfi 16352 /usr/src/linux-headers-4.15.0-72/drivers 8 /usr/src/linux-headers-4.15.0-72/samples/hidraw 8 /usr/src/linux-headers-4.15.0-72/samples/kfifo 8 /usr/src/linux-headers-4.15.0-72/samples/timers 8 /usr/src/linux-headers-4.15.0-72/samples/livepatch 8 /usr/src/linux-headers-4.15.0-72/samples/trace_printk 8 /usr/src/linux-headers-4.15.0-72/samples/kobject 8 /usr/src/linux-headers-4.15.0-72/samples/vfio-mdev 80 /usr/src/linux-headers-4.15.0-72/samples/bpf 8 /usr/src/linux-headers-4.15.0-72/samples/kprobes 8 /usr/src/linux-headers-4.15.0-72/samples/auxdisplay 8 /usr/src/linux-headers-4.15.0-72/samples/hw_breakpoint 8 /usr/src/linux-headers-4.15.0-72/samples/trace_events 8 /usr/src/linux-headers-4.15.0-72/samples/blackfin 44 /usr/src/linux-headers-4.15.0-72/samples/pktgen 8 /usr/src/linux-headers-4.15.0-72/samples/configfs 8 /usr/src/linux-headers-4.15.0-72/samples/rpmsg 8 /usr/src/linux-headers-4.15.0-72/samples/uhid 8 /usr/src/linux-headers-4.15.0-72/samples/connector 8 /usr/src/linux-headers-4.15.0-72/samples/v4l 8 /usr/src/linux-headers-4.15.0-72/samples/kdb 8 /usr/src/linux-headers-4.15.0-72/samples/seccomp 8 /usr/src/linux-headers-4.15.0-72/samples/mic/mpssd 12 /usr/src/linux-headers-4.15.0-72/samples/mic 8 /usr/src/linux-headers-4.15.0-72/samples/mei 8 /usr/src/linux-headers-4.15.0-72/samples/watchdog 8 /usr/src/linux-headers-4.15.0-72/samples/statx 8 /usr/src/linux-headers-4.15.0-72/samples/sockmap 332 /usr/src/linux-headers-4.15.0-72/samples 8 /usr/src/linux-headers-4.15.0-72/ipc 16 /usr/src/linux-headers-4.15.0-72/Documentation/sphinx 8 /usr/src/linux-headers-4.15.0-72/Documentation/features 8 /usr/src/linux-headers-4.15.0-72/Documentation/EDID 8 /usr/src/linux-headers-4.15.0-72/Documentation/s390 16 /usr/src/linux-headers-4.15.0-72/Documentation/kbuild 48 /usr/src/linux-headers-4.15.0-72/Documentation/trace/postprocess 52 /usr/src/linux-headers-4.15.0-72/Documentation/trace 16 /usr/src/linux-headers-4.15.0-72/Documentation/aoe 8 /usr/src/linux-headers-4.15.0-72/Documentation/scsi/scsi_transport_srp 12 /usr/src/linux-headers-4.15.0-72/Documentation/scsi 8 /usr/src/linux-headers-4.15.0-72/Documentation/cdrom 8 /usr/src/linux-headers-4.15.0-72/Documentation/filesystems/cifs 12 /usr/src/linux-headers-4.15.0-72/Documentation/filesystems 8 /usr/src/linux-headers-4.15.0-72/Documentation/media 176 /usr/src/linux-headers-4.15.0-72/Documentation 20 /usr/src/linux-headers-4.15.0-72/ubuntu/vbox/vboxvideo 24 /usr/src/linux-headers-4.15.0-72/ubuntu/vbox/vboxguest 20 /usr/src/linux-headers-4.15.0-72/ubuntu/vbox/vboxsf 72 /usr/src/linux-headers-4.15.0-72/ubuntu/vbox 8 /usr/src/linux-headers-4.15.0-72/ubuntu/include 12 /usr/src/linux-headers-4.15.0-72/ubuntu/hio 8 /usr/src/linux-headers-4.15.0-72/ubuntu/xr-usb-serial 112 /usr/src/linux-headers-4.15.0-72/ubuntu 68 /usr/src/linux-headers-4.15.0-72/init 12 /usr/src/linux-headers-4.15.0-72/net/wimax 12 /usr/src/linux-headers-4.15.0-72/net/nfc/nci 12 /usr/src/linux-headers-4.15.0-72/net/nfc/hci 36 /usr/src/linux-headers-4.15.0-72/net/nfc 12 /usr/src/linux-headers-4.15.0-72/net/bluetooth/hidp 12 /usr/src/linux-headers-4.15.0-72/net/bluetooth/rfcomm 12 /usr/src/linux-headers-4.15.0-72/net/bluetooth/bnep 12 /usr/src/linux-headers-4.15.0-72/net/bluetooth/cmtp 60 /usr/src/linux-headers-4.15.0-72/net/bluetooth 12 /usr/src/linux-headers-4.15.0-72/net/tipc 12 /usr/src/linux-headers-4.15.0-72/net/qrtr 8 /usr/src/linux-headers-4.15.0-72/net/key 12 /usr/src/linux-headers-4.15.0-72/net/netlink 8 /usr/src/linux-headers-4.15.0-72/net/dccp/ccids 20 /usr/src/linux-headers-4.15.0-72/net/dccp 8 /usr/src/linux-headers-4.15.0-72/net/rose 12 /usr/src/linux-headers-4.15.0-72/net/xfrm 36 /usr/src/linux-headers-4.15.0-72/net/sched 12 /usr/src/linux-headers-4.15.0-72/net/kcm 12 /usr/src/linux-headers-4.15.0-72/net/decnet/netfilter 24 /usr/src/linux-headers-4.15.0-72/net/decnet 12 /usr/src/linux-headers-4.15.0-72/net/can 12 /usr/src/linux-headers-4.15.0-72/net/unix 12 /usr/src/linux-headers-4.15.0-72/net/sctp 12 /usr/src/linux-headers-4.15.0-72/net/packet 8 /usr/src/linux-headers-4.15.0-72/net/sunrpc/auth_gss 8 /usr/src/linux-headers-4.15.0-72/net/sunrpc/xprtrdma 28 /usr/src/linux-headers-4.15.0-72/net/sunrpc 12 /usr/src/linux-headers-4.15.0-72/net/mpls 12 /usr/src/linux-headers-4.15.0-72/net/rds 16 /usr/src/linux-headers-4.15.0-72/net/wireless 12 /usr/src/linux-headers-4.15.0-72/net/atm 12 /usr/src/linux-headers-4.15.0-72/net/psample 12 /usr/src/linux-headers-4.15.0-72/net/mac802154 8 /usr/src/linux-headers-4.15.0-72/net/bpf 24 /usr/src/linux-headers-4.15.0-72/net/ipv4/netfilter 60 /usr/src/linux-headers-4.15.0-72/net/ipv4 12 /usr/src/linux-headers-4.15.0-72/net/iucv 12 /usr/src/linux-headers-4.15.0-72/net/smc 12 /usr/src/linux-headers-4.15.0-72/net/dns_resolver 12 /usr/src/linux-headers-4.15.0-72/net/dsa 12 /usr/src/linux-headers-4.15.0-72/net/nsh 8 /usr/src/linux-headers-4.15.0-72/net/ethernet 12 /usr/src/linux-headers-4.15.0-72/net/vmw_vsock 12 /usr/src/linux-headers-4.15.0-72/net/rfkill 12 /usr/src/linux-headers-4.15.0-72/net/llc 12 /usr/src/linux-headers-4.15.0-72/net/switchdev 8 /usr/src/linux-headers-4.15.0-72/net/netrom 12 /usr/src/linux-headers-4.15.0-72/net/openvswitch 12 /usr/src/linux-headers-4.15.0-72/net/ieee802154/6lowpan 24 /usr/src/linux-headers-4.15.0-72/net/ieee802154 8 /usr/src/linux-headers-4.15.0-72/net/core 12 /usr/src/linux-headers-4.15.0-72/net/ife 12 /usr/src/linux-headers-4.15.0-72/net/9p 12 /usr/src/linux-headers-4.15.0-72/net/x25 12 /usr/src/linux-headers-4.15.0-72/net/phonet 12 /usr/src/linux-headers-4.15.0-72/net/rxrpc 8 /usr/src/linux-headers-4.15.0-72/net/appletalk 12 /usr/src/linux-headers-4.15.0-72/net/lapb 12 /usr/src/linux-headers-4.15.0-72/net/netlabel 12 /usr/src/linux-headers-4.15.0-72/net/ipx 12 /usr/src/linux-headers-4.15.0-72/net/batman-adv 12 /usr/src/linux-headers-4.15.0-72/net/l3mdev 12 /usr/src/linux-headers-4.15.0-72/net/strparser 12 /usr/src/linux-headers-4.15.0-72/net/802 12 /usr/src/linux-headers-4.15.0-72/net/8021q 12 /usr/src/linux-headers-4.15.0-72/net/l2tp 16 /usr/src/linux-headers-4.15.0-72/net/bridge/netfilter 28 /usr/src/linux-headers-4.15.0-72/net/bridge 12 /usr/src/linux-headers-4.15.0-72/net/hsr 12 /usr/src/linux-headers-4.15.0-72/net/6lowpan 20 /usr/src/linux-headers-4.15.0-72/net/mac80211 12 /usr/src/linux-headers-4.15.0-72/net/ncsi 12 /usr/src/linux-headers-4.15.0-72/net/caif 12 /usr/src/linux-headers-4.15.0-72/net/dcb 12 /usr/src/linux-headers-4.15.0-72/net/tls 20 /usr/src/linux-headers-4.15.0-72/net/netfilter/ipvs 16 /usr/src/linux-headers-4.15.0-72/net/netfilter/ipset 104 /usr/src/linux-headers-4.15.0-72/net/netfilter 12 /usr/src/linux-headers-4.15.0-72/net/ceph 8 /usr/src/linux-headers-4.15.0-72/net/ipv6/ila 20 /usr/src/linux-headers-4.15.0-72/net/ipv6/netfilter 48 /usr/src/linux-headers-4.15.0-72/net/ipv6 16 /usr/src/linux-headers-4.15.0-72/net/ax25 1152 /usr/src/linux-headers-4.15.0-72/net 8 /usr/src/linux-headers-4.15.0-72/tools/spi 8 /usr/src/linux-headers-4.15.0-72/tools/power/cpupower/utils 8 /usr/src/linux-headers-4.15.0-72/tools/power/cpupower/debug/x86_64 8 /usr/src/linux-headers-4.15.0-72/tools/power/cpupower/debug/i386 8 /usr/src/linux-headers-4.15.0-72/tools/power/cpupower/debug/kernel 28 /usr/src/linux-headers-4.15.0-72/tools/power/cpupower/debug 20 /usr/src/linux-headers-4.15.0-72/tools/power/cpupower/bench 72 /usr/src/linux-headers-4.15.0-72/tools/power/cpupower 8 /usr/src/linux-headers-4.15.0-72/tools/power/pm-graph 8 /usr/src/linux-headers-4.15.0-72/tools/power/x86/x86_energy_perf_policy 8 /usr/src/linux-headers-4.15.0-72/tools/power/x86/turbostat 20 /usr/src/linux-headers-4.15.0-72/tools/power/x86 8 /usr/src/linux-headers-4.15.0-72/tools/power/acpi/tools/acpidbg 8 /usr/src/linux-headers-4.15.0-72/tools/power/acpi/tools/acpidump 8 /usr/src/linux-headers-4.15.0-72/tools/power/acpi/tools/ec 28 /usr/src/linux-headers-4.15.0-72/tools/power/acpi/tools 44 /usr/src/linux-headers-4.15.0-72/tools/power/acpi 148 /usr/src/linux-headers-4.15.0-72/tools/power 16 /usr/src/linux-headers-4.15.0-72/tools/perf/Documentation 44 /usr/src/linux-headers-4.15.0-72/tools/perf/trace/beauty 48 /usr/src/linux-headers-4.15.0-72/tools/perf/trace 12 /usr/src/linux-headers-4.15.0-72/tools/perf/tests/shell/lib 32 /usr/src/linux-headers-4.15.0-72/tools/perf/tests/shell 36 /usr/src/linux-headers-4.15.0-72/tools/perf/tests 8 /usr/src/linux-headers-4.15.0-72/tools/perf/util 8 /usr/src/linux-headers-4.15.0-72/tools/perf/scripts/perl/Perf-Trace-Util 44 /usr/src/linux-headers-4.15.0-72/tools/perf/scripts/perl 48 /usr/src/linux-headers-4.15.0-72/tools/perf/scripts 8 /usr/src/linux-headers-4.15.0-72/tools/perf/arch/s390 8 /usr/src/linux-headers-4.15.0-72/tools/perf/arch/arm64 8 /usr/src/linux-headers-4.15.0-72/tools/perf/arch/sparc 8 /usr/src/linux-headers-4.15.0-72/tools/perf/arch/xtensa 8 /usr/src/linux-headers-4.15.0-72/tools/perf/arch/sh 8 /usr/src/linux-headers-4.15.0-72/tools/perf/arch/x86/tests 8 /usr/src/linux-headers-4.15.0-72/tools/perf/arch/x86/entry/syscalls 12 /usr/src/linux-headers-4.15.0-72/tools/perf/arch/x86/entry 28 /usr/src/linux-headers-4.15.0-72/tools/perf/arch/x86 8 /usr/src/linux-headers-4.15.0-72/tools/perf/arch/arm 8 /usr/src/linux-headers-4.15.0-72/tools/perf/arch/powerpc 88 /usr/src/linux-headers-4.15.0-72/tools/perf/arch 336 /usr/src/linux-headers-4.15.0-72/tools/perf 8 /usr/src/linux-headers-4.15.0-72/tools/firewire 8 /usr/src/linux-headers-4.15.0-72/tools/gpio 12 /usr/src/linux-headers-4.15.0-72/tools/build/feature 8 /usr/src/linux-headers-4.15.0-72/tools/build/tests/ex 16 /usr/src/linux-headers-4.15.0-72/tools/build/tests 52 /usr/src/linux-headers-4.15.0-72/tools/build 8 /usr/src/linux-headers-4.15.0-72/tools/accounting 8 /usr/src/linux-headers-4.15.0-72/tools/bpf/bpftool/Documentation 16 /usr/src/linux-headers-4.15.0-72/tools/bpf/bpftool 24 /usr/src/linux-headers-4.15.0-72/tools/bpf 8 /usr/src/linux-headers-4.15.0-72/tools/time 8 /usr/src/linux-headers-4.15.0-72/tools/leds 12 /usr/src/linux-headers-4.15.0-72/tools/virtio/ringtest 8 /usr/src/linux-headers-4.15.0-72/tools/virtio/vhost_test 8 /usr/src/linux-headers-4.15.0-72/tools/virtio/virtio-trace 36 /usr/src/linux-headers-4.15.0-72/tools/virtio 8 /usr/src/linux-headers-4.15.0-72/tools/wmi 8 /usr/src/linux-headers-4.15.0-72/tools/cgroup 8 /usr/src/linux-headers-4.15.0-72/tools/thermal/tmon 12 /usr/src/linux-headers-4.15.0-72/tools/thermal 8 /usr/src/linux-headers-4.15.0-72/tools/kvm/kvm_stat 12 /usr/src/linux-headers-4.15.0-72/tools/kvm 8 /usr/src/linux-headers-4.15.0-72/tools/iio 12 /usr/src/linux-headers-4.15.0-72/tools/scripts 16 /usr/src/linux-headers-4.15.0-72/tools/vm 8 /usr/src/linux-headers-4.15.0-72/tools/pcmcia 12 /usr/src/linux-headers-4.15.0-72/tools/usb/usbip/vudc 8 /usr/src/linux-headers-4.15.0-72/tools/usb/usbip/libsrc 8 /usr/src/linux-headers-4.15.0-72/tools/usb/usbip/src 44 /usr/src/linux-headers-4.15.0-72/tools/usb/usbip 8 /usr/src/linux-headers-4.15.0-72/tools/usb/ffs-aio-example/multibuff/host_app 12 /usr/src/linux-headers-4.15.0-72/tools/usb/ffs-aio-example/multibuff 8 /usr/src/linux-headers-4.15.0-72/tools/usb/ffs-aio-example/simple/host_app 12 /usr/src/linux-headers-4.15.0-72/tools/usb/ffs-aio-example/simple 28 /usr/src/linux-headers-4.15.0-72/tools/usb/ffs-aio-example 88 /usr/src/linux-headers-4.15.0-72/tools/usb 8 /usr/src/linux-headers-4.15.0-72/tools/nfsd 8 /usr/src/linux-headers-4.15.0-72/tools/lib/subcmd 12 /usr/src/linux-headers-4.15.0-72/tools/lib/bpf 8 /usr/src/linux-headers-4.15.0-72/tools/lib/api 16 /usr/src/linux-headers-4.15.0-72/tools/lib/lockdep 12 /usr/src/linux-headers-4.15.0-72/tools/lib/traceevent 60 /usr/src/linux-headers-4.15.0-72/tools/lib 8 /usr/src/linux-headers-4.15.0-72/tools/laptop/freefall 8 /usr/src/linux-headers-4.15.0-72/tools/laptop/dslm 20 /usr/src/linux-headers-4.15.0-72/tools/laptop 20 /usr/src/linux-headers-4.15.0-72/tools/hv 12 /usr/src/linux-headers-4.15.0-72/tools/objtool 16 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/memory-hotplug 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/breakpoints 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/mqueue 16 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/ntb 20 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/gpio 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/ftrace 12 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/drivers/gpu 16 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/drivers 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/ipc 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/timers 16 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/media_tests 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/sigaltstack 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/ptp 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/networking/timestamping 12 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/networking 20 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/bpf 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/kcmp 12 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/splice 24 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/kmod 12 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/android/ion 24 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/android 48 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/net 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/size 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/mount 12 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/efivarfs 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/prctl 12 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/futex/functional 24 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/futex 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/pstore 16 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/memfd 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/vDSO 12 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/static_keys 24 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/sysctl 16 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/cpu-hotplug 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/ptrace 12 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/x86 28 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/firmware 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/membarrier 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/locking 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/vm 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/sync 12 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/intel_pstate 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/seccomp 12 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/user 28 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/zram 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/capabilities 104 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/rcutorture/bin 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/rcutorture/configs/rcuperf 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/rcutorture/configs/rcu 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/rcutorture/configs/lock 28 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/rcutorture/configs 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/rcutorture/formal/srcu-cbmc/tests/store_buffering 16 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/rcutorture/formal/srcu-cbmc/tests 24 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/rcutorture/formal/srcu-cbmc 28 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/rcutorture/formal 164 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/rcutorture 20 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/lib 40 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/cpufreq 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/exec 40 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/netfilter 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/nsfs 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/watchdog 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/filesystems 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/powerpc/alignment 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/powerpc/cache_shape 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/powerpc/benchmarks 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/powerpc/syscalls 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/powerpc/switch_endian 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/powerpc/math 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/powerpc/mm 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/powerpc/signal 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/powerpc/pmu/ebb 16 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/powerpc/pmu 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/powerpc/vphn 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/powerpc/stringloops 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/powerpc/primitives 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/powerpc/ptrace 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/powerpc/copyloops 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/powerpc/scripts 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/powerpc/dscr 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/powerpc/tm 152 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/powerpc 8 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests/ia64 1052 /usr/src/linux-headers-4.15.0-72/tools/testing/selftests 8 /usr/src/linux-headers-4.15.0-72/tools/testing/vsock 8 /usr/src/linux-headers-4.15.0-72/tools/testing/nvdimm/test 20 /usr/src/linux-headers-4.15.0-72/tools/testing/nvdimm 108 /usr/src/linux-headers-4.15.0-72/tools/testing/ktest 8 /usr/src/linux-headers-4.15.0-72/tools/testing/scatterlist 8 /usr/src/linux-headers-4.15.0-72/tools/testing/radix-tree 12 /usr/src/linux-headers-4.15.0-72/tools/testing/fault-injection 1220 /usr/src/linux-headers-4.15.0-72/tools/testing 8 /usr/src/linux-headers-4.15.0-72/tools/pci 2176 /usr/src/linux-headers-4.15.0-72/tools 12 /usr/src/linux-headers-4.15.0-72/sound/spi 12 /usr/src/linux-headers-4.15.0-72/sound/soc/spear 12 /usr/src/linux-headers-4.15.0-72/sound/soc/generic 20 /usr/src/linux-headers-4.15.0-72/sound/soc/intel/boards 8 /usr/src/linux-headers-4.15.0-72/sound/soc/intel/baytrail 8 /usr/src/linux-headers-4.15.0-72/sound/soc/intel/common 8 /usr/src/linux-headers-4.15.0-72/sound/soc/intel/haswell 8 /usr/src/linux-headers-4.15.0-72/sound/soc/intel/atom/sst 16 /usr/src/linux-headers-4.15.0-72/sound/soc/intel/atom 8 /usr/src/linux-headers-4.15.0-72/sound/soc/intel/skylake 80 /usr/src/linux-headers-4.15.0-72/sound/soc/intel 12 /usr/src/linux-headers-4.15.0-72/sound/soc/txx9 12 /usr/src/linux-headers-4.15.0-72/sound/soc/davinci 12 /usr/src/linux-headers-4.15.0-72/sound/soc/mxs 12 /usr/src/linux-headers-4.15.0-72/sound/soc/sti 12 /usr/src/linux-headers-4.15.0-72/sound/soc/dwc 12 /usr/src/linux-headers-4.15.0-72/sound/soc/qcom 12 /usr/src/linux-headers-4.15.0-72/sound/soc/bcm 12 /usr/src/linux-headers-4.15.0-72/sound/soc/stm 12 /usr/src/linux-headers-4.15.0-72/sound/soc/kirkwood 16 /usr/src/linux-headers-4.15.0-72/sound/soc/tegra 12 /usr/src/linux-headers-4.15.0-72/sound/soc/img 12 /usr/src/linux-headers-4.15.0-72/sound/soc/adi 12 /usr/src/linux-headers-4.15.0-72/sound/soc/au1x 12 /usr/src/linux-headers-4.15.0-72/sound/soc/ux500 20 /usr/src/linux-headers-4.15.0-72/sound/soc/fsl 12 /usr/src/linux-headers-4.15.0-72/sound/soc/xtensa 8 /usr/src/linux-headers-4.15.0-72/sound/soc/sh/rcar 20 /usr/src/linux-headers-4.15.0-72/sound/soc/sh 16 /usr/src/linux-headers-4.15.0-72/sound/soc/blackfin 12 /usr/src/linux-headers-4.15.0-72/sound/soc/cirrus 12 /usr/src/linux-headers-4.15.0-72/sound/soc/zte 16 /usr/src/linux-headers-4.15.0-72/sound/soc/omap 56 /usr/src/linux-headers-4.15.0-72/sound/soc/codecs 16 /usr/src/linux-headers-4.15.0-72/sound/soc/pxa 12 /usr/src/linux-headers-4.15.0-72/sound/soc/sirf 12 /usr/src/linux-headers-4.15.0-72/sound/soc/amd 8 /usr/src/linux-headers-4.15.0-72/sound/soc/mediatek/common 8 /usr/src/linux-headers-4.15.0-72/sound/soc/mediatek/mt2701 8 /usr/src/linux-headers-4.15.0-72/sound/soc/mediatek/mt8173 36 /usr/src/linux-headers-4.15.0-72/sound/soc/mediatek 16 /usr/src/linux-headers-4.15.0-72/sound/soc/samsung 12 /usr/src/linux-headers-4.15.0-72/sound/soc/nuc900 12 /usr/src/linux-headers-4.15.0-72/sound/soc/hisilicon 12 /usr/src/linux-headers-4.15.0-72/sound/soc/rockchip 12 /usr/src/linux-headers-4.15.0-72/sound/soc/atmel 12 /usr/src/linux-headers-4.15.0-72/sound/soc/sunxi 12 /usr/src/linux-headers-4.15.0-72/sound/soc/jz4740 616 /usr/src/linux-headers-4.15.0-72/sound/soc 8 /usr/src/linux-headers-4.15.0-72/sound/firewire/oxfw 8 /usr/src/linux-headers-4.15.0-72/sound/firewire/bebob 8 /usr/src/linux-headers-4.15.0-72/sound/firewire/tascam 8 /usr/src/linux-headers-4.15.0-72/sound/firewire/digi00x 8 /usr/src/linux-headers-4.15.0-72/sound/firewire/motu 8 /usr/src/linux-headers-4.15.0-72/sound/firewire/fireworks 8 /usr/src/linux-headers-4.15.0-72/sound/firewire/dice 8 /usr/src/linux-headers-4.15.0-72/sound/firewire/fireface 80 /usr/src/linux-headers-4.15.0-72/sound/firewire 8 /usr/src/linux-headers-4.15.0-72/sound/drivers/opl4 8 /usr/src/linux-headers-4.15.0-72/sound/drivers/pcsp 8 /usr/src/linux-headers-4.15.0-72/sound/drivers/vx 8 /usr/src/linux-headers-4.15.0-72/sound/drivers/mpu401 8 /usr/src/linux-headers-4.15.0-72/sound/drivers/opl3 56 /usr/src/linux-headers-4.15.0-72/sound/drivers 12 /usr/src/linux-headers-4.15.0-72/sound/ppc 8 /usr/src/linux-headers-4.15.0-72/sound/i2c/other 16 /usr/src/linux-headers-4.15.0-72/sound/i2c 12 /usr/src/linux-headers-4.15.0-72/sound/ac97 12 /usr/src/linux-headers-4.15.0-72/sound/aoa/fabrics 8 /usr/src/linux-headers-4.15.0-72/sound/aoa/soundbus/i2sbus 20 /usr/src/linux-headers-4.15.0-72/sound/aoa/soundbus 8 /usr/src/linux-headers-4.15.0-72/sound/aoa/core 12 /usr/src/linux-headers-4.15.0-72/sound/aoa/codecs 64 /usr/src/linux-headers-4.15.0-72/sound/aoa 8 /usr/src/linux-headers-4.15.0-72/sound/core/seq/oss 20 /usr/src/linux-headers-4.15.0-72/sound/core/seq 8 /usr/src/linux-headers-4.15.0-72/sound/core/oss 44 /usr/src/linux-headers-4.15.0-72/sound/core 12 /usr/src/linux-headers-4.15.0-72/sound/sparc 8 /usr/src/linux-headers-4.15.0-72/sound/isa/cs423x 8 /usr/src/linux-headers-4.15.0-72/sound/isa/es1688 8 /usr/src/linux-headers-4.15.0-72/sound/isa/opti9xx 8 /usr/src/linux-headers-4.15.0-72/sound/isa/sb 8 /usr/src/linux-headers-4.15.0-72/sound/isa/galaxy 8 /usr/src/linux-headers-4.15.0-72/sound/isa/gus 8 /usr/src/linux-headers-4.15.0-72/sound/isa/wavefront 8 /usr/src/linux-headers-4.15.0-72/sound/isa/ad1816a 8 /usr/src/linux-headers-4.15.0-72/sound/isa/wss 8 /usr/src/linux-headers-4.15.0-72/sound/isa/msnd 8 /usr/src/linux-headers-4.15.0-72/sound/isa/ad1848 112 /usr/src/linux-headers-4.15.0-72/sound/isa 12 /usr/src/linux-headers-4.15.0-72/sound/sh 12 /usr/src/linux-headers-4.15.0-72/sound/mips 12 /usr/src/linux-headers-4.15.0-72/sound/parisc 12 /usr/src/linux-headers-4.15.0-72/sound/x86 8 /usr/src/linux-headers-4.15.0-72/sound/synth/emux 20 /usr/src/linux-headers-4.15.0-72/sound/synth 8 /usr/src/linux-headers-4.15.0-72/sound/pcmcia/pdaudiocf 8 /usr/src/linux-headers-4.15.0-72/sound/pcmcia/vx 28 /usr/src/linux-headers-4.15.0-72/sound/pcmcia 12 /usr/src/linux-headers-4.15.0-72/sound/usb/line6 8 /usr/src/linux-headers-4.15.0-72/sound/usb/usx2y 8 /usr/src/linux-headers-4.15.0-72/sound/usb/hiface 8 /usr/src/linux-headers-4.15.0-72/sound/usb/bcd2000 8 /usr/src/linux-headers-4.15.0-72/sound/usb/misc 8 /usr/src/linux-headers-4.15.0-72/sound/usb/caiaq 8 /usr/src/linux-headers-4.15.0-72/sound/usb/6fire 76 /usr/src/linux-headers-4.15.0-72/sound/usb 8 /usr/src/linux-headers-4.15.0-72/sound/hda/ext 20 /usr/src/linux-headers-4.15.0-72/sound/hda 12 /usr/src/linux-headers-4.15.0-72/sound/oss/dmasound 16 /usr/src/linux-headers-4.15.0-72/sound/oss 12 /usr/src/linux-headers-4.15.0-72/sound/atmel 12 /usr/src/linux-headers-4.15.0-72/sound/arm 8 /usr/src/linux-headers-4.15.0-72/sound/pci/korg1212 8 /usr/src/linux-headers-4.15.0-72/sound/pci/ymfpci 8 /usr/src/linux-headers-4.15.0-72/sound/pci/nm256 8 /usr/src/linux-headers-4.15.0-72/sound/pci/aw2 8 /usr/src/linux-headers-4.15.0-72/sound/pci/ali5451 8 /usr/src/linux-headers-4.15.0-72/sound/pci/asihpi 8 /usr/src/linux-headers-4.15.0-72/sound/pci/rme9652 8 /usr/src/linux-headers-4.15.0-72/sound/pci/ice1712 8 /usr/src/linux-headers-4.15.0-72/sound/pci/lx6464es 8 /usr/src/linux-headers-4.15.0-72/sound/pci/ac97 8 /usr/src/linux-headers-4.15.0-72/sound/pci/riptide 8 /usr/src/linux-headers-4.15.0-72/sound/pci/vx222 8 /usr/src/linux-headers-4.15.0-72/sound/pci/emu10k1 8 /usr/src/linux-headers-4.15.0-72/sound/pci/ca0106 8 /usr/src/linux-headers-4.15.0-72/sound/pci/au88x0 8 /usr/src/linux-headers-4.15.0-72/sound/pci/cs5535audio 8 /usr/src/linux-headers-4.15.0-72/sound/pci/ctxfi 8 /usr/src/linux-headers-4.15.0-72/sound/pci/trident 8 /usr/src/linux-headers-4.15.0-72/sound/pci/pcxhr 8 /usr/src/linux-headers-4.15.0-72/sound/pci/lola 8 /usr/src/linux-headers-4.15.0-72/sound/pci/echoaudio 8 /usr/src/linux-headers-4.15.0-72/sound/pci/mixart 8 /usr/src/linux-headers-4.15.0-72/sound/pci/oxygen 8 /usr/src/linux-headers-4.15.0-72/sound/pci/cs46xx 16 /usr/src/linux-headers-4.15.0-72/sound/pci/hda 244 /usr/src/linux-headers-4.15.0-72/sound/pci 1524 /usr/src/linux-headers-4.15.0-72/sound 8 /usr/src/linux-headers-4.15.0-72/mm/kasan 48 /usr/src/linux-headers-4.15.0-72/mm 12 /usr/src/linux-headers-4.15.0-72/security/yama 12 /usr/src/linux-headers-4.15.0-72/security/tomoyo 12 /usr/src/linux-headers-4.15.0-72/security/integrity/evm 16 /usr/src/linux-headers-4.15.0-72/security/integrity/ima 40 /usr/src/linux-headers-4.15.0-72/security/integrity 16 /usr/src/linux-headers-4.15.0-72/security/apparmor 12 /usr/src/linux-headers-4.15.0-72/security/smack 12 /usr/src/linux-headers-4.15.0-72/security/loadpin 8 /usr/src/linux-headers-4.15.0-72/security/keys/encrypted-keys 20 /usr/src/linux-headers-4.15.0-72/security/keys 12 /usr/src/linux-headers-4.15.0-72/security/selinux 164 /usr/src/linux-headers-4.15.0-72/security 24 /usr/src/linux-headers-4.15.0-72/include/soc/at91 8 /usr/src/linux-headers-4.15.0-72/include/soc/sa1100 108 /usr/src/linux-headers-4.15.0-72/include/soc/tegra 16 /usr/src/linux-headers-4.15.0-72/include/soc/imx 8 /usr/src/linux-headers-4.15.0-72/include/soc/brcmstb 88 /usr/src/linux-headers-4.15.0-72/include/soc/fsl/qe 144 /usr/src/linux-headers-4.15.0-72/include/soc/fsl 16 /usr/src/linux-headers-4.15.0-72/include/soc/nps 8 /usr/src/linux-headers-4.15.0-72/include/soc/mediatek 8 /usr/src/linux-headers-4.15.0-72/include/soc/rockchip 16 /usr/src/linux-headers-4.15.0-72/include/soc/arc 12 /usr/src/linux-headers-4.15.0-72/include/soc/bcm2835 372 /usr/src/linux-headers-4.15.0-72/include/soc 24 /usr/src/linux-headers-4.15.0-72/include/uapi/rdma/hfi 168 /usr/src/linux-headers-4.15.0-72/include/uapi/rdma 48 /usr/src/linux-headers-4.15.0-72/include/uapi/mtd 12 /usr/src/linux-headers-4.15.0-72/include/uapi/linux/spi 20 /usr/src/linux-headers-4.15.0-72/include/uapi/linux/wimax 8 /usr/src/linux-headers-4.15.0-72/include/uapi/linux/hdlc 28 /usr/src/linux-headers-4.15.0-72/include/uapi/linux/raid 8 /usr/src/linux-headers-4.15.0-72/include/uapi/linux/cifs 8 /usr/src/linux-headers-4.15.0-72/include/uapi/linux/sched 40 /usr/src/linux-headers-4.15.0-72/include/uapi/linux/can 44 /usr/src/linux-headers-4.15.0-72/include/uapi/linux/netfilter_ipv4 8 /usr/src/linux-headers-4.15.0-72/include/uapi/linux/sunrpc 12 /usr/src/linux-headers-4.15.0-72/include/uapi/linux/hsi 12 /usr/src/linux-headers-4.15.0-72/include/uapi/linux/byteorder 20 /usr/src/linux-headers-4.15.0-72/include/uapi/linux/android 64 /usr/src/linux-headers-4.15.0-72/include/uapi/linux/tc_act 88 /usr/src/linux-headers-4.15.0-72/include/uapi/linux/dvb 12 /usr/src/linux-headers-4.15.0-72/include/uapi/linux/iio 8 /usr/src/linux-headers-4.15.0-72/include/uapi/linux/mmc 16 /usr/src/linux-headers-4.15.0-72/include/uapi/linux/netfilter_arp 24 /usr/src/linux-headers-4.15.0-72/include/uapi/linux/genwqe 144 /usr/src/linux-headers-4.15.0-72/include/uapi/linux/usb 80 /usr/src/linux-headers-4.15.0-72/include/uapi/linux/netfilter_bridge 24 /usr/src/linux-headers-4.15.0-72/include/uapi/linux/nfsd 20 /usr/src/linux-headers-4.15.0-72/include/uapi/linux/tc_ematch 16 /usr/src/linux-headers-4.15.0-72/include/uapi/linux/caif 28 /usr/src/linux-headers-4.15.0-72/include/uapi/linux/netfilter/ipset 428 /usr/src/linux-headers-4.15.0-72/include/uapi/linux/netfilter 56 /usr/src/linux-headers-4.15.0-72/include/uapi/linux/netfilter_ipv6 12 /usr/src/linux-headers-4.15.0-72/include/uapi/linux/isdn 5280 /usr/src/linux-headers-4.15.0-72/include/uapi/linux 204 /usr/src/linux-headers-4.15.0-72/include/uapi/asm-generic 20 /usr/src/linux-headers-4.15.0-72/include/uapi/video 204 /usr/src/linux-headers-4.15.0-72/include/uapi/sound 24 /usr/src/linux-headers-4.15.0-72/include/uapi/xen 60 /usr/src/linux-headers-4.15.0-72/include/uapi/scsi/fc 96 /usr/src/linux-headers-4.15.0-72/include/uapi/scsi 396 /usr/src/linux-headers-4.15.0-72/include/uapi/drm 12 /usr/src/linux-headers-4.15.0-72/include/uapi/misc 6456 /usr/src/linux-headers-4.15.0-72/include/uapi 448 /usr/src/linux-headers-4.15.0-72/include/rdma 8 /usr/src/linux-headers-4.15.0-72/include/memory 16 /usr/src/linux-headers-4.15.0-72/include/ras 196 /usr/src/linux-headers-4.15.0-72/include/linux/spi 20 /usr/src/linux-headers-4.15.0-72/include/linux/wimax 32 /usr/src/linux-headers-4.15.0-72/include/linux/soc/ti 24 /usr/src/linux-headers-4.15.0-72/include/linux/soc/qcom 8 /usr/src/linux-headers-4.15.0-72/include/linux/soc/actions 8 /usr/src/linux-headers-4.15.0-72/include/linux/soc/dove 8 /usr/src/linux-headers-4.15.0-72/include/linux/soc/brcmstb 12 /usr/src/linux-headers-4.15.0-72/include/linux/soc/renesas 8 /usr/src/linux-headers-4.15.0-72/include/linux/soc/mediatek 40 /usr/src/linux-headers-4.15.0-72/include/linux/soc/samsung 8 /usr/src/linux-headers-4.15.0-72/include/linux/soc/sunxi 152 /usr/src/linux-headers-4.15.0-72/include/linux/soc 88 /usr/src/linux-headers-4.15.0-72/include/linux/power 12 /usr/src/linux-headers-4.15.0-72/include/linux/perf 36 /usr/src/linux-headers-4.15.0-72/include/linux/rtc 48 /usr/src/linux-headers-4.15.0-72/include/linux/gpio 20 /usr/src/linux-headers-4.15.0-72/include/linux/raid 344 /usr/src/linux-headers-4.15.0-72/include/linux/mlx5 28 /usr/src/linux-headers-4.15.0-72/include/linux/avf 24 /usr/src/linux-headers-4.15.0-72/include/linux/crush 56 /usr/src/linux-headers-4.15.0-72/include/linux/pinctrl 172 /usr/src/linux-headers-4.15.0-72/include/linux/regulator 144 /usr/src/linux-headers-4.15.0-72/include/linux/sched 272 /usr/src/linux-headers-4.15.0-72/include/linux/mtd 8 /usr/src/linux-headers-4.15.0-72/include/linux/reset 20 /usr/src/linux-headers-4.15.0-72/include/linux/can/platform 12 /usr/src/linux-headers-4.15.0-72/include/linux/can/dev 60 /usr/src/linux-headers-4.15.0-72/include/linux/can 8 /usr/src/linux-headers-4.15.0-72/include/linux/netfilter_ipv4 228 /usr/src/linux-headers-4.15.0-72/include/linux/sunrpc 24 /usr/src/linux-headers-4.15.0-72/include/linux/hsi 8 /usr/src/linux-headers-4.15.0-72/include/linux/i2c 96 /usr/src/linux-headers-4.15.0-72/include/linux/mlx4 20 /usr/src/linux-headers-4.15.0-72/include/linux/byteorder 8 /usr/src/linux-headers-4.15.0-72/include/linux/dsa 12 /usr/src/linux-headers-4.15.0-72/include/linux/extcon 104 /usr/src/linux-headers-4.15.0-72/include/linux/input 12 /usr/src/linux-headers-4.15.0-72/include/linux/mux 8 /usr/src/linux-headers-4.15.0-72/include/linux/phy/tegra 44 /usr/src/linux-headers-4.15.0-72/include/linux/phy 24 /usr/src/linux-headers-4.15.0-72/include/linux/platform_data/x86 60 /usr/src/linux-headers-4.15.0-72/include/linux/platform_data/media 1084 /usr/src/linux-headers-4.15.0-72/include/linux/platform_data 100 /usr/src/linux-headers-4.15.0-72/include/linux/bcma 40 /usr/src/linux-headers-4.15.0-72/include/linux/fsl/bestcomm 64 /usr/src/linux-headers-4.15.0-72/include/linux/fsl 100 /usr/src/linux-headers-4.15.0-72/include/linux/irqchip 80 /usr/src/linux-headers-4.15.0-72/include/linux/amba 20 /usr/src/linux-headers-4.15.0-72/include/linux/fpga 20 /usr/src/linux-headers-4.15.0-72/include/linux/ulpi 40 /usr/src/linux-headers-4.15.0-72/include/linux/uwb 44 /usr/src/linux-headers-4.15.0-72/include/linux/unaligned 44 /usr/src/linux-headers-4.15.0-72/include/linux/mfd/da9062 28 /usr/src/linux-headers-4.15.0-72/include/linux/mfd/mt6323 48 /usr/src/linux-headers-4.15.0-72/include/linux/mfd/da9063 212 /usr/src/linux-headers-4.15.0-72/include/linux/mfd/wm831x 500 /usr/src/linux-headers-4.15.0-72/include/linux/mfd/arizona 48 /usr/src/linux-headers-4.15.0-72/include/linux/mfd/da9150 36 /usr/src/linux-headers-4.15.0-72/include/linux/mfd/da9055 24 /usr/src/linux-headers-4.15.0-72/include/linux/mfd/mt6397 308 /usr/src/linux-headers-4.15.0-72/include/linux/mfd/wm8994 36 /usr/src/linux-headers-4.15.0-72/include/linux/mfd/pcf50633 132 /usr/src/linux-headers-4.15.0-72/include/linux/mfd/wm8350 72 /usr/src/linux-headers-4.15.0-72/include/linux/mfd/syscon 40 /usr/src/linux-headers-4.15.0-72/include/linux/mfd/da9052 68 /usr/src/linux-headers-4.15.0-72/include/linux/mfd/samsung 64 /usr/src/linux-headers-4.15.0-72/include/linux/mfd/abx500 2988 /usr/src/linux-headers-4.15.0-72/include/linux/mfd 56 /usr/src/linux-headers-4.15.0-72/include/linux/clk 20 /usr/src/linux-headers-4.15.0-72/include/linux/iio/frequency 28 /usr/src/linux-headers-4.15.0-72/include/linux/iio/common 12 /usr/src/linux-headers-4.15.0-72/include/linux/iio/adc 8 /usr/src/linux-headers-4.15.0-72/include/linux/iio/magnetometer 12 /usr/src/linux-headers-4.15.0-72/include/linux/iio/gyro 12 /usr/src/linux-headers-4.15.0-72/include/linux/iio/timer 8 /usr/src/linux-headers-4.15.0-72/include/linux/iio/accel 12 /usr/src/linux-headers-4.15.0-72/include/linux/iio/imu 24 /usr/src/linux-headers-4.15.0-72/include/linux/iio/dac 268 /usr/src/linux-headers-4.15.0-72/include/linux/iio 108 /usr/src/linux-headers-4.15.0-72/include/linux/mmc 36 /usr/src/linux-headers-4.15.0-72/include/linux/dma 8 /usr/src/linux-headers-4.15.0-72/include/linux/firmware/meson 12 /usr/src/linux-headers-4.15.0-72/include/linux/firmware 280 /usr/src/linux-headers-4.15.0-72/include/linux/qed 36 /usr/src/linux-headers-4.15.0-72/include/linux/decompress 12 /usr/src/linux-headers-4.15.0-72/include/linux/rpmsg 132 /usr/src/linux-headers-4.15.0-72/include/linux/ssb 8 /usr/src/linux-headers-4.15.0-72/include/linux/netfilter_arp 476 /usr/src/linux-headers-4.15.0-72/include/linux/usb 16 /usr/src/linux-headers-4.15.0-72/include/linux/netfilter_bridge 56 /usr/src/linux-headers-4.15.0-72/include/linux/netfilter/ipset 200 /usr/src/linux-headers-4.15.0-72/include/linux/netfilter 40 /usr/src/linux-headers-4.15.0-72/include/linux/lockd 192 /usr/src/linux-headers-4.15.0-72/include/linux/ceph 12 /usr/src/linux-headers-4.15.0-72/include/linux/remoteproc 8 /usr/src/linux-headers-4.15.0-72/include/linux/netfilter_ipv6 28 /usr/src/linux-headers-4.15.0-72/include/linux/isdn 8 /usr/src/linux-headers-4.15.0-72/include/linux/mailbox 19528 /usr/src/linux-headers-4.15.0-72/include/linux 92 /usr/src/linux-headers-4.15.0-72/include/asm-generic/bitops 708 /usr/src/linux-headers-4.15.0-72/include/asm-generic 580 /usr/src/linux-headers-4.15.0-72/include/video 872 /usr/src/linux-headers-4.15.0-72/include/trace/events 912 /usr/src/linux-headers-4.15.0-72/include/trace 16 /usr/src/linux-headers-4.15.0-72/include/dt-bindings/soc 104 /usr/src/linux-headers-4.15.0-72/include/dt-bindings/power 36 /usr/src/linux-headers-4.15.0-72/include/dt-bindings/gpio 8 /usr/src/linux-headers-4.15.0-72/include/dt-bindings/spmi 24 /usr/src/linux-headers-4.15.0-72/include/dt-bindings/interrupt-controller 36 /usr/src/linux-headers-4.15.0-72/include/dt-bindings/memory 136 /usr/src/linux-headers-4.15.0-72/include/dt-bindings/pinctrl 8 /usr/src/linux-headers-4.15.0-72/include/dt-bindings/regulator 228 /usr/src/linux-headers-4.15.0-72/include/dt-bindings/reset 1164 /usr/src/linux-headers-4.15.0-72/include/dt-bindings/clock 8 /usr/src/linux-headers-4.15.0-72/include/dt-bindings/i2c 12 /usr/src/linux-headers-4.15.0-72/include/dt-bindings/net 36 /usr/src/linux-headers-4.15.0-72/include/dt-bindings/sound 24 /usr/src/linux-headers-4.15.0-72/include/dt-bindings/leds 12 /usr/src/linux-headers-4.15.0-72/include/dt-bindings/input 8 /usr/src/linux-headers-4.15.0-72/include/dt-bindings/mux 12 /usr/src/linux-headers-4.15.0-72/include/dt-bindings/phy 8 /usr/src/linux-headers-4.15.0-72/include/dt-bindings/display 24 /usr/src/linux-headers-4.15.0-72/include/dt-bindings/thermal 8 /usr/src/linux-headers-4.15.0-72/include/dt-bindings/mips 60 /usr/src/linux-headers-4.15.0-72/include/dt-bindings/mfd 8 /usr/src/linux-headers-4.15.0-72/include/dt-bindings/clk 8 /usr/src/linux-headers-4.15.0-72/include/dt-bindings/iio/adc 20 /usr/src/linux-headers-4.15.0-72/include/dt-bindings/iio 20 /usr/src/linux-headers-4.15.0-72/include/dt-bindings/dma 8 /usr/src/linux-headers-4.15.0-72/include/dt-bindings/arm 8 /usr/src/linux-headers-4.15.0-72/include/dt-bindings/pwm 8 /usr/src/linux-headers-4.15.0-72/include/dt-bindings/mailbox 20 /usr/src/linux-headers-4.15.0-72/include/dt-bindings/media 2068 /usr/src/linux-headers-4.15.0-72/include/dt-bindings 120 /usr/src/linux-headers-4.15.0-72/include/math-emu 76 /usr/src/linux-headers-4.15.0-72/include/net/nfc 176 /usr/src/linux-headers-4.15.0-72/include/net/bluetooth 168 /usr/src/linux-headers-4.15.0-72/include/net/sctp 32 /usr/src/linux-headers-4.15.0-72/include/net/iucv 64 /usr/src/linux-headers-4.15.0-72/include/net/tc_act 40 /usr/src/linux-headers-4.15.0-72/include/net/9p 20 /usr/src/linux-headers-4.15.0-72/include/net/phonet 76 /usr/src/linux-headers-4.15.0-72/include/net/caif 24 /usr/src/linux-headers-4.15.0-72/include/net/netfilter/ipv4 28 /usr/src/linux-headers-4.15.0-72/include/net/netfilter/ipv6 272 /usr/src/linux-headers-4.15.0-72/include/net/netfilter 80 /usr/src/linux-headers-4.15.0-72/include/net/netns 3064 /usr/src/linux-headers-4.15.0-72/include/net 32 /usr/src/linux-headers-4.15.0-72/include/sound/ac97 1188 /usr/src/linux-headers-4.15.0-72/include/sound 24 /usr/src/linux-headers-4.15.0-72/include/clocksource 32 /usr/src/linux-headers-4.15.0-72/include/xen/interface/hvm 228 /usr/src/linux-headers-4.15.0-72/include/xen/interface/io 432 /usr/src/linux-headers-4.15.0-72/include/xen/interface 24 /usr/src/linux-headers-4.15.0-72/include/xen/arm 544 /usr/src/linux-headers-4.15.0-72/include/xen 64 /usr/src/linux-headers-4.15.0-72/include/crypto/internal 392 /usr/src/linux-headers-4.15.0-72/include/crypto 52 /usr/src/linux-headers-4.15.0-72/include/scsi/fc 580 /usr/src/linux-headers-4.15.0-72/include/scsi 120 /usr/src/linux-headers-4.15.0-72/include/drm/ttm 16 /usr/src/linux-headers-4.15.0-72/include/drm/i2c 32 /usr/src/linux-headers-4.15.0-72/include/drm/bridge 20 /usr/src/linux-headers-4.15.0-72/include/drm/tinydrm 1008 /usr/src/linux-headers-4.15.0-72/include/drm 48 /usr/src/linux-headers-4.15.0-72/include/misc 36 /usr/src/linux-headers-4.15.0-72/include/kvm 44 /usr/src/linux-headers-4.15.0-72/include/target/iscsi 96 /usr/src/linux-headers-4.15.0-72/include/target 48 /usr/src/linux-headers-4.15.0-72/include/acpi/platform 476 /usr/src/linux-headers-4.15.0-72/include/acpi 56 /usr/src/linux-headers-4.15.0-72/include/pcmcia 92 /usr/src/linux-headers-4.15.0-72/include/media/davinci 216 /usr/src/linux-headers-4.15.0-72/include/media/i2c 96 /usr/src/linux-headers-4.15.0-72/include/media/drv-intf 12 /usr/src/linux-headers-4.15.0-72/include/media/blackfin 988 /usr/src/linux-headers-4.15.0-72/include/media 60 /usr/src/linux-headers-4.15.0-72/include/keys 39780 /usr/src/linux-headers-4.15.0-72/include 12 /usr/src/linux-headers-4.15.0-72/crypto/async_tx 12 /usr/src/linux-headers-4.15.0-72/crypto/asymmetric_keys 88 /usr/src/linux-headers-4.15.0-72/crypto 20 /usr/src/linux-headers-4.15.0-72/kernel/power 12 /usr/src/linux-headers-4.15.0-72/kernel/irq 8 /usr/src/linux-headers-4.15.0-72/kernel/printk 8 /usr/src/linux-headers-4.15.0-72/kernel/sched 12 /usr/src/linux-headers-4.15.0-72/kernel/livepatch 8 /usr/src/linux-headers-4.15.0-72/kernel/bpf 8 /usr/src/linux-headers-4.15.0-72/kernel/events 32 /usr/src/linux-headers-4.15.0-72/kernel/trace 12 /usr/src/linux-headers-4.15.0-72/kernel/time 8 /usr/src/linux-headers-4.15.0-72/kernel/cgroup 8 /usr/src/linux-headers-4.15.0-72/kernel/debug/kdb 16 /usr/src/linux-headers-4.15.0-72/kernel/debug 8 /usr/src/linux-headers-4.15.0-72/kernel/locking 24 /usr/src/linux-headers-4.15.0-72/kernel/rcu 12 /usr/src/linux-headers-4.15.0-72/kernel/gcov 220 /usr/src/linux-headers-4.15.0-72/kernel 20 /usr/src/linux-headers-4.15.0-72/block/partitions 40 /usr/src/linux-headers-4.15.0-72/block 20 /usr/src/linux-headers-4.15.0-72/certs 8 /usr/src/linux-headers-4.15.0-72/firmware 156 /usr/src/linux-headers-4.15.0-72/scripts/mod 8 /usr/src/linux-headers-4.15.0-72/scripts/ksymoops 48 /usr/src/linux-headers-4.15.0-72/scripts/package 24 /usr/src/linux-headers-4.15.0-72/scripts/coccinelle/iterators 20 /usr/src/linux-headers-4.15.0-72/scripts/coccinelle/locks 16 /usr/src/linux-headers-4.15.0-72/scripts/coccinelle/api/alloc 8 /usr/src/linux-headers-4.15.0-72/scripts/coccinelle/api/debugfs 88 /usr/src/linux-headers-4.15.0-72/scripts/coccinelle/api 20 /usr/src/linux-headers-4.15.0-72/scripts/coccinelle/tests 76 /usr/src/linux-headers-4.15.0-72/scripts/coccinelle/misc 24 /usr/src/linux-headers-4.15.0-72/scripts/coccinelle/null 32 /usr/src/linux-headers-4.15.0-72/scripts/coccinelle/free 288 /usr/src/linux-headers-4.15.0-72/scripts/coccinelle 208 /usr/src/linux-headers-4.15.0-72/scripts/genksyms 28 /usr/src/linux-headers-4.15.0-72/scripts/basic 136 /usr/src/linux-headers-4.15.0-72/scripts/gcc-plugins 12 /usr/src/linux-headers-4.15.0-72/scripts/tracing 72 /usr/src/linux-headers-4.15.0-72/scripts/gdb/linux 84 /usr/src/linux-headers-4.15.0-72/scripts/gdb 92 /usr/src/linux-headers-4.15.0-72/scripts/kconfig/lxdialog 692 /usr/src/linux-headers-4.15.0-72/scripts/kconfig 188 /usr/src/linux-headers-4.15.0-72/scripts/dtc/libfdt 4 /usr/src/linux-headers-4.15.0-72/scripts/dtc/include-prefixes 620 /usr/src/linux-headers-4.15.0-72/scripts/dtc 16 /usr/src/linux-headers-4.15.0-72/scripts/selinux/genheaders 24 /usr/src/linux-headers-4.15.0-72/scripts/selinux/mdp 56 /usr/src/linux-headers-4.15.0-72/scripts/selinux 3560 /usr/src/linux-headers-4.15.0-72/scripts 8 /usr/src/linux-headers-4.15.0-72/arch/m32r/oprofile 8 /usr/src/linux-headers-4.15.0-72/arch/m32r/mm 136 /usr/src/linux-headers-4.15.0-72/arch/m32r/include/uapi/asm 140 /usr/src/linux-headers-4.15.0-72/arch/m32r/include/uapi 12 /usr/src/linux-headers-4.15.0-72/arch/m32r/include/asm/mappi2 24 /usr/src/linux-headers-4.15.0-72/arch/m32r/include/asm/m32700ut 12 /usr/src/linux-headers-4.15.0-72/arch/m32r/include/asm/mappi3 24 /usr/src/linux-headers-4.15.0-72/arch/m32r/include/asm/opsput 12 /usr/src/linux-headers-4.15.0-72/arch/m32r/include/asm/m32104ut 500 /usr/src/linux-headers-4.15.0-72/arch/m32r/include/asm 644 /usr/src/linux-headers-4.15.0-72/arch/m32r/include 8 /usr/src/linux-headers-4.15.0-72/arch/m32r/kernel 12 /usr/src/linux-headers-4.15.0-72/arch/m32r/boot/compressed 20 /usr/src/linux-headers-4.15.0-72/arch/m32r/boot 8 /usr/src/linux-headers-4.15.0-72/arch/m32r/lib 8 /usr/src/linux-headers-4.15.0-72/arch/m32r/platforms/mappi2 8 /usr/src/linux-headers-4.15.0-72/arch/m32r/platforms/oaks32r 8 /usr/src/linux-headers-4.15.0-72/arch/m32r/platforms/m32700ut 8 /usr/src/linux-headers-4.15.0-72/arch/m32r/platforms/mappi 8 /usr/src/linux-headers-4.15.0-72/arch/m32r/platforms/mappi3 8 /usr/src/linux-headers-4.15.0-72/arch/m32r/platforms/opsput 8 /usr/src/linux-headers-4.15.0-72/arch/m32r/platforms/usrv 8 /usr/src/linux-headers-4.15.0-72/arch/m32r/platforms/m32104ut 72 /usr/src/linux-headers-4.15.0-72/arch/m32r/platforms 792 /usr/src/linux-headers-4.15.0-72/arch/m32r 8 /usr/src/linux-headers-4.15.0-72/arch/cris/mm 108 /usr/src/linux-headers-4.15.0-72/arch/cris/include/uapi/asm 316 /usr/src/linux-headers-4.15.0-72/arch/cris/include/uapi/arch-v10/arch 320 /usr/src/linux-headers-4.15.0-72/arch/cris/include/uapi/arch-v10 12 /usr/src/linux-headers-4.15.0-72/arch/cris/include/uapi/arch-v32/arch 16 /usr/src/linux-headers-4.15.0-72/arch/cris/include/uapi/arch-v32 448 /usr/src/linux-headers-4.15.0-72/arch/cris/include/uapi 208 /usr/src/linux-headers-4.15.0-72/arch/cris/include/asm 124 /usr/src/linux-headers-4.15.0-72/arch/cris/include/arch-v10/arch 128 /usr/src/linux-headers-4.15.0-72/arch/cris/include/arch-v10 128 /usr/src/linux-headers-4.15.0-72/arch/cris/include/arch-v32/mach-a3/mach/hwregs/asm 212 /usr/src/linux-headers-4.15.0-72/arch/cris/include/arch-v32/mach-a3/mach/hwregs/iop/asm 324 /usr/src/linux-headers-4.15.0-72/arch/cris/include/arch-v32/mach-a3/mach/hwregs/iop 604 /usr/src/linux-headers-4.15.0-72/arch/cris/include/arch-v32/mach-a3/mach/hwregs 628 /usr/src/linux-headers-4.15.0-72/arch/cris/include/arch-v32/mach-a3/mach 632 /usr/src/linux-headers-4.15.0-72/arch/cris/include/arch-v32/mach-a3 276 /usr/src/linux-headers-4.15.0-72/arch/cris/include/arch-v32/arch/hwregs/asm 492 /usr/src/linux-headers-4.15.0-72/arch/cris/include/arch-v32/arch/hwregs/iop/asm 816 /usr/src/linux-headers-4.15.0-72/arch/cris/include/arch-v32/arch/hwregs/iop 1288 /usr/src/linux-headers-4.15.0-72/arch/cris/include/arch-v32/arch/hwregs 1412 /usr/src/linux-headers-4.15.0-72/arch/cris/include/arch-v32/arch 88 /usr/src/linux-headers-4.15.0-72/arch/cris/include/arch-v32/mach-fs/mach/hwregs/asm 216 /usr/src/linux-headers-4.15.0-72/arch/cris/include/arch-v32/mach-fs/mach/hwregs 240 /usr/src/linux-headers-4.15.0-72/arch/cris/include/arch-v32/mach-fs/mach 244 /usr/src/linux-headers-4.15.0-72/arch/cris/include/arch-v32/mach-fs 2292 /usr/src/linux-headers-4.15.0-72/arch/cris/include/arch-v32 3080 /usr/src/linux-headers-4.15.0-72/arch/cris/include 28 /usr/src/linux-headers-4.15.0-72/arch/cris/arch-v10/drivers 8 /usr/src/linux-headers-4.15.0-72/arch/cris/arch-v10/mm 8 /usr/src/linux-headers-4.15.0-72/arch/cris/arch-v10/kernel 8 /usr/src/linux-headers-4.15.0-72/arch/cris/arch-v10/lib 68 /usr/src/linux-headers-4.15.0-72/arch/cris/arch-v10 8 /usr/src/linux-headers-4.15.0-72/arch/cris/kernel 8 /usr/src/linux-headers-4.15.0-72/arch/cris/arch-v32/drivers/mach-a3 8 /usr/src/linux-headers-4.15.0-72/arch/cris/arch-v32/drivers/mach-fs 8 /usr/src/linux-headers-4.15.0-72/arch/cris/arch-v32/drivers/pci 44 /usr/src/linux-headers-4.15.0-72/arch/cris/arch-v32/drivers 12 /usr/src/linux-headers-4.15.0-72/arch/cris/arch-v32/mach-a3 8 /usr/src/linux-headers-4.15.0-72/arch/cris/arch-v32/mm 8 /usr/src/linux-headers-4.15.0-72/arch/cris/arch-v32/kernel 16 /usr/src/linux-headers-4.15.0-72/arch/cris/arch-v32/mach-fs 8 /usr/src/linux-headers-4.15.0-72/arch/cris/arch-v32/lib 108 /usr/src/linux-headers-4.15.0-72/arch/cris/arch-v32 16 /usr/src/linux-headers-4.15.0-72/arch/cris/boot/compressed 16 /usr/src/linux-headers-4.15.0-72/arch/cris/boot/rescue 8 /usr/src/linux-headers-4.15.0-72/arch/cris/boot/dts 48 /usr/src/linux-headers-4.15.0-72/arch/cris/boot 3348 /usr/src/linux-headers-4.15.0-72/arch/cris 8 /usr/src/linux-headers-4.15.0-72/arch/h8300/mm 32 /usr/src/linux-headers-4.15.0-72/arch/h8300/include/uapi/asm 36 /usr/src/linux-headers-4.15.0-72/arch/h8300/include/uapi 136 /usr/src/linux-headers-4.15.0-72/arch/h8300/include/asm 176 /usr/src/linux-headers-4.15.0-72/arch/h8300/include 8 /usr/src/linux-headers-4.15.0-72/arch/h8300/kernel 12 /usr/src/linux-headers-4.15.0-72/arch/h8300/boot/compressed 8 /usr/src/linux-headers-4.15.0-72/arch/h8300/boot/dts 28 /usr/src/linux-headers-4.15.0-72/arch/h8300/boot 8 /usr/src/linux-headers-4.15.0-72/arch/h8300/lib 244 /usr/src/linux-headers-4.15.0-72/arch/h8300 8 /usr/src/linux-headers-4.15.0-72/arch/metag/oprofile 8 /usr/src/linux-headers-4.15.0-72/arch/metag/tbx 12 /usr/src/linux-headers-4.15.0-72/arch/metag/mm 36 /usr/src/linux-headers-4.15.0-72/arch/metag/include/uapi/asm 40 /usr/src/linux-headers-4.15.0-72/arch/metag/include/uapi 8 /usr/src/linux-headers-4.15.0-72/arch/metag/include/asm/mach 488 /usr/src/linux-headers-4.15.0-72/arch/metag/include/asm 532 /usr/src/linux-headers-4.15.0-72/arch/metag/include 8 /usr/src/linux-headers-4.15.0-72/arch/metag/kernel/perf 16 /usr/src/linux-headers-4.15.0-72/arch/metag/kernel 8 /usr/src/linux-headers-4.15.0-72/arch/metag/boot/dts 16 /usr/src/linux-headers-4.15.0-72/arch/metag/boot 8 /usr/src/linux-headers-4.15.0-72/arch/metag/lib 624 /usr/src/linux-headers-4.15.0-72/arch/metag 12 /usr/src/linux-headers-4.15.0-72/arch/tile/gxio 8 /usr/src/linux-headers-4.15.0-72/arch/tile/mm 68 /usr/src/linux-headers-4.15.0-72/arch/tile/include/uapi/asm 204 /usr/src/linux-headers-4.15.0-72/arch/tile/include/uapi/arch 276 /usr/src/linux-headers-4.15.0-72/arch/tile/include/uapi 148 /usr/src/linux-headers-4.15.0-72/arch/tile/include/gxio 504 /usr/src/linux-headers-4.15.0-72/arch/tile/include/asm 124 /usr/src/linux-headers-4.15.0-72/arch/tile/include/arch 340 /usr/src/linux-headers-4.15.0-72/arch/tile/include/hv 1396 /usr/src/linux-headers-4.15.0-72/arch/tile/include 8 /usr/src/linux-headers-4.15.0-72/arch/tile/kernel/vdso 16 /usr/src/linux-headers-4.15.0-72/arch/tile/kernel 8 /usr/src/linux-headers-4.15.0-72/arch/tile/kvm 8 /usr/src/linux-headers-4.15.0-72/arch/tile/lib 1480 /usr/src/linux-headers-4.15.0-72/arch/tile 8 /usr/src/linux-headers-4.15.0-72/arch/s390/oprofile 8 /usr/src/linux-headers-4.15.0-72/arch/s390/net 8 /usr/src/linux-headers-4.15.0-72/arch/s390/tools 8 /usr/src/linux-headers-4.15.0-72/arch/s390/mm 252 /usr/src/linux-headers-4.15.0-72/arch/s390/include/uapi/asm 256 /usr/src/linux-headers-4.15.0-72/arch/s390/include/uapi 16 /usr/src/linux-headers-4.15.0-72/arch/s390/include/asm/trace 16 /usr/src/linux-headers-4.15.0-72/arch/s390/include/asm/fpu 860 /usr/src/linux-headers-4.15.0-72/arch/s390/include/asm 1120 /usr/src/linux-headers-4.15.0-72/arch/s390/include 8 /usr/src/linux-headers-4.15.0-72/arch/s390/hypfs 8 /usr/src/linux-headers-4.15.0-72/arch/s390/crypto 8 /usr/src/linux-headers-4.15.0-72/arch/s390/kernel/vdso64 8 /usr/src/linux-headers-4.15.0-72/arch/s390/kernel/vdso32 24 /usr/src/linux-headers-4.15.0-72/arch/s390/kernel 8 /usr/src/linux-headers-4.15.0-72/arch/s390/appldata 8 /usr/src/linux-headers-4.15.0-72/arch/s390/numa 12 /usr/src/linux-headers-4.15.0-72/arch/s390/kvm 8 /usr/src/linux-headers-4.15.0-72/arch/s390/boot/compressed 20 /usr/src/linux-headers-4.15.0-72/arch/s390/boot 8 /usr/src/linux-headers-4.15.0-72/arch/s390/lib 8 /usr/src/linux-headers-4.15.0-72/arch/s390/pci 1304 /usr/src/linux-headers-4.15.0-72/arch/s390 8 /usr/src/linux-headers-4.15.0-72/arch/microblaze/oprofile 8 /usr/src/linux-headers-4.15.0-72/arch/microblaze/mm 56 /usr/src/linux-headers-4.15.0-72/arch/microblaze/include/uapi/asm 60 /usr/src/linux-headers-4.15.0-72/arch/microblaze/include/uapi 292 /usr/src/linux-headers-4.15.0-72/arch/microblaze/include/asm 356 /usr/src/linux-headers-4.15.0-72/arch/microblaze/include 8 /usr/src/linux-headers-4.15.0-72/arch/microblaze/kernel/cpu 16 /usr/src/linux-headers-4.15.0-72/arch/microblaze/kernel 8 /usr/src/linux-headers-4.15.0-72/arch/microblaze/boot/dts 16 /usr/src/linux-headers-4.15.0-72/arch/microblaze/boot 8 /usr/src/linux-headers-4.15.0-72/arch/microblaze/lib 8 /usr/src/linux-headers-4.15.0-72/arch/microblaze/pci 444 /usr/src/linux-headers-4.15.0-72/arch/microblaze 12 /usr/src/linux-headers-4.15.0-72/arch/unicore32/mm 24 /usr/src/linux-headers-4.15.0-72/arch/unicore32/include/uapi/asm 28 /usr/src/linux-headers-4.15.0-72/arch/unicore32/include/uapi 116 /usr/src/linux-headers-4.15.0-72/arch/unicore32/include/mach 200 /usr/src/linux-headers-4.15.0-72/arch/unicore32/include/asm 348 /usr/src/linux-headers-4.15.0-72/arch/unicore32/include 8 /usr/src/linux-headers-4.15.0-72/arch/unicore32/kernel 8 /usr/src/linux-headers-4.15.0-72/arch/unicore32/boot/compressed 16 /usr/src/linux-headers-4.15.0-72/arch/unicore32/boot 8 /usr/src/linux-headers-4.15.0-72/arch/unicore32/lib 412 /usr/src/linux-headers-4.15.0-72/arch/unicore32 8 /usr/src/linux-headers-4.15.0-72/arch/score/mm 128 /usr/src/linux-headers-4.15.0-72/arch/score/include/uapi/asm 132 /usr/src/linux-headers-4.15.0-72/arch/score/include/uapi 256 /usr/src/linux-headers-4.15.0-72/arch/score/include/asm 392 /usr/src/linux-headers-4.15.0-72/arch/score/include 8 /usr/src/linux-headers-4.15.0-72/arch/score/kernel 8 /usr/src/linux-headers-4.15.0-72/arch/score/boot 8 /usr/src/linux-headers-4.15.0-72/arch/score/lib 440 /usr/src/linux-headers-4.15.0-72/arch/score 8 /usr/src/linux-headers-4.15.0-72/arch/arm64/net 8 /usr/src/linux-headers-4.15.0-72/arch/arm64/mm 100 /usr/src/linux-headers-4.15.0-72/arch/arm64/include/uapi/asm 104 /usr/src/linux-headers-4.15.0-72/arch/arm64/include/uapi 32 /usr/src/linux-headers-4.15.0-72/arch/arm64/include/asm/xen 908 /usr/src/linux-headers-4.15.0-72/arch/arm64/include/asm 1016 /usr/src/linux-headers-4.15.0-72/arch/arm64/include 8 /usr/src/linux-headers-4.15.0-72/arch/arm64/xen 36 /usr/src/linux-headers-4.15.0-72/arch/arm64/crypto 12 /usr/src/linux-headers-4.15.0-72/arch/arm64/kernel/vdso 8 /usr/src/linux-headers-4.15.0-72/arch/arm64/kernel/probes 32 /usr/src/linux-headers-4.15.0-72/arch/arm64/kernel 8 /usr/src/linux-headers-4.15.0-72/arch/arm64/kvm/hyp 20 /usr/src/linux-headers-4.15.0-72/arch/arm64/kvm 8 /usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/altera 8 /usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/al 8 /usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/apm 8 /usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/qcom 8 /usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/actions 8 /usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/exynos 8 /usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/allwinner 8 /usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/broadcom/stingray 8 /usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/broadcom/northstar2 24 /usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/broadcom 8 /usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/sprd 8 /usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/zte 8 /usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/socionext 8 /usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/freescale 8 /usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/renesas 8 /usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/realtek 8 /usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/nvidia 8 /usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/amd 8 /usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/marvell 8 /usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/mediatek 8 /usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/amlogic 8 /usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/hisilicon 8 /usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/rockchip 8 /usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/cavium 8 /usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/arm 8 /usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/lg 8 /usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts/xilinx 224 /usr/src/linux-headers-4.15.0-72/arch/arm64/boot/dts 236 /usr/src/linux-headers-4.15.0-72/arch/arm64/boot 8 /usr/src/linux-headers-4.15.0-72/arch/arm64/lib 1436 /usr/src/linux-headers-4.15.0-72/arch/arm64 8 /usr/src/linux-headers-4.15.0-72/arch/mn10300/oprofile 32 /usr/src/linux-headers-4.15.0-72/arch/mn10300/proc-mn103e010/include/proc 36 /usr/src/linux-headers-4.15.0-72/arch/mn10300/proc-mn103e010/include 44 /usr/src/linux-headers-4.15.0-72/arch/mn10300/proc-mn103e010 40 /usr/src/linux-headers-4.15.0-72/arch/mn10300/unit-asb2364/include/unit 44 /usr/src/linux-headers-4.15.0-72/arch/mn10300/unit-asb2364/include 52 /usr/src/linux-headers-4.15.0-72/arch/mn10300/unit-asb2364 20 /usr/src/linux-headers-4.15.0-72/arch/mn10300/unit-asb2305/include/unit 24 /usr/src/linux-headers-4.15.0-72/arch/mn10300/unit-asb2305/include 32 /usr/src/linux-headers-4.15.0-72/arch/mn10300/unit-asb2305 16 /usr/src/linux-headers-4.15.0-72/arch/mn10300/mm 140 /usr/src/linux-headers-4.15.0-72/arch/mn10300/include/uapi/asm 144 /usr/src/linux-headers-4.15.0-72/arch/mn10300/include/uapi 464 /usr/src/linux-headers-4.15.0-72/arch/mn10300/include/asm 612 /usr/src/linux-headers-4.15.0-72/arch/mn10300/include 8 /usr/src/linux-headers-4.15.0-72/arch/mn10300/kernel 12 /usr/src/linux-headers-4.15.0-72/arch/mn10300/boot/compressed 24 /usr/src/linux-headers-4.15.0-72/arch/mn10300/boot 44 /usr/src/linux-headers-4.15.0-72/arch/mn10300/proc-mn2ws0050/include/proc 48 /usr/src/linux-headers-4.15.0-72/arch/mn10300/proc-mn2ws0050/include 56 /usr/src/linux-headers-4.15.0-72/arch/mn10300/proc-mn2ws0050 8 /usr/src/linux-headers-4.15.0-72/arch/mn10300/lib 28 /usr/src/linux-headers-4.15.0-72/arch/mn10300/unit-asb2303/include/unit 32 /usr/src/linux-headers-4.15.0-72/arch/mn10300/unit-asb2303/include 40 /usr/src/linux-headers-4.15.0-72/arch/mn10300/unit-asb2303 928 /usr/src/linux-headers-4.15.0-72/arch/mn10300 8 /usr/src/linux-headers-4.15.0-72/arch/hexagon/mm 60 /usr/src/linux-headers-4.15.0-72/arch/hexagon/include/uapi/asm 64 /usr/src/linux-headers-4.15.0-72/arch/hexagon/include/uapi 248 /usr/src/linux-headers-4.15.0-72/arch/hexagon/include/asm 316 /usr/src/linux-headers-4.15.0-72/arch/hexagon/include 8 /usr/src/linux-headers-4.15.0-72/arch/hexagon/kernel 8 /usr/src/linux-headers-4.15.0-72/arch/hexagon/lib 352 /usr/src/linux-headers-4.15.0-72/arch/hexagon 8 /usr/src/linux-headers-4.15.0-72/arch/sparc/oprofile 8 /usr/src/linux-headers-4.15.0-72/arch/sparc/power 12 /usr/src/linux-headers-4.15.0-72/arch/sparc/vdso 8 /usr/src/linux-headers-4.15.0-72/arch/sparc/prom 8 /usr/src/linux-headers-4.15.0-72/arch/sparc/math-emu 8 /usr/src/linux-headers-4.15.0-72/arch/sparc/net 8 /usr/src/linux-headers-4.15.0-72/arch/sparc/mm 264 /usr/src/linux-headers-4.15.0-72/arch/sparc/include/uapi/asm 268 /usr/src/linux-headers-4.15.0-72/arch/sparc/include/uapi 1416 /usr/src/linux-headers-4.15.0-72/arch/sparc/include/asm 1688 /usr/src/linux-headers-4.15.0-72/arch/sparc/include 8 /usr/src/linux-headers-4.15.0-72/arch/sparc/crypto 8 /usr/src/linux-headers-4.15.0-72/arch/sparc/kernel 12 /usr/src/linux-headers-4.15.0-72/arch/sparc/boot 8 /usr/src/linux-headers-4.15.0-72/arch/sparc/lib 1816 /usr/src/linux-headers-4.15.0-72/arch/sparc 8 /usr/src/linux-headers-4.15.0-72/arch/xtensa/oprofile 8 /usr/src/linux-headers-4.15.0-72/arch/xtensa/mm 128 /usr/src/linux-headers-4.15.0-72/arch/xtensa/include/uapi/asm 132 /usr/src/linux-headers-4.15.0-72/arch/xtensa/include/uapi 364 /usr/src/linux-headers-4.15.0-72/arch/xtensa/include/asm 500 /usr/src/linux-headers-4.15.0-72/arch/xtensa/include 48 /usr/src/linux-headers-4.15.0-72/arch/xtensa/variants/dc233c/include/variant 52 /usr/src/linux-headers-4.15.0-72/arch/xtensa/variants/dc233c/include 56 /usr/src/linux-headers-4.15.0-72/arch/xtensa/variants/dc233c 28 /usr/src/linux-headers-4.15.0-72/arch/xtensa/variants/fsf/include/variant 32 /usr/src/linux-headers-4.15.0-72/arch/xtensa/variants/fsf/include 36 /usr/src/linux-headers-4.15.0-72/arch/xtensa/variants/fsf 56 /usr/src/linux-headers-4.15.0-72/arch/xtensa/variants/test_kc705_hifi/include/variant 60 /usr/src/linux-headers-4.15.0-72/arch/xtensa/variants/test_kc705_hifi/include 64 /usr/src/linux-headers-4.15.0-72/arch/xtensa/variants/test_kc705_hifi 40 /usr/src/linux-headers-4.15.0-72/arch/xtensa/variants/test_mmuhifi_c3/include/variant 44 /usr/src/linux-headers-4.15.0-72/arch/xtensa/variants/test_mmuhifi_c3/include 48 /usr/src/linux-headers-4.15.0-72/arch/xtensa/variants/test_mmuhifi_c3 40 /usr/src/linux-headers-4.15.0-72/arch/xtensa/variants/dc232b/include/variant 44 /usr/src/linux-headers-4.15.0-72/arch/xtensa/variants/dc232b/include 48 /usr/src/linux-headers-4.15.0-72/arch/xtensa/variants/dc232b 52 /usr/src/linux-headers-4.15.0-72/arch/xtensa/variants/csp/include/variant 56 /usr/src/linux-headers-4.15.0-72/arch/xtensa/variants/csp/include 60 /usr/src/linux-headers-4.15.0-72/arch/xtensa/variants/csp 48 /usr/src/linux-headers-4.15.0-72/arch/xtensa/variants/de212/include/variant 52 /usr/src/linux-headers-4.15.0-72/arch/xtensa/variants/de212/include 56 /usr/src/linux-headers-4.15.0-72/arch/xtensa/variants/de212 372 /usr/src/linux-headers-4.15.0-72/arch/xtensa/variants 8 /usr/src/linux-headers-4.15.0-72/arch/xtensa/kernel 8 /usr/src/linux-headers-4.15.0-72/arch/xtensa/boot/boot-redboot 8 /usr/src/linux-headers-4.15.0-72/arch/xtensa/boot/boot-elf 8 /usr/src/linux-headers-4.15.0-72/arch/xtensa/boot/lib 8 /usr/src/linux-headers-4.15.0-72/arch/xtensa/boot/dts 40 /usr/src/linux-headers-4.15.0-72/arch/xtensa/boot 8 /usr/src/linux-headers-4.15.0-72/arch/xtensa/lib 16 /usr/src/linux-headers-4.15.0-72/arch/xtensa/platforms/xtfpga/include/platform 20 /usr/src/linux-headers-4.15.0-72/arch/xtensa/platforms/xtfpga/include 28 /usr/src/linux-headers-4.15.0-72/arch/xtensa/platforms/xtfpga 16 /usr/src/linux-headers-4.15.0-72/arch/xtensa/platforms/iss/include/platform 20 /usr/src/linux-headers-4.15.0-72/arch/xtensa/platforms/iss/include 28 /usr/src/linux-headers-4.15.0-72/arch/xtensa/platforms/iss 12 /usr/src/linux-headers-4.15.0-72/arch/xtensa/platforms/xt2000/include/platform 16 /usr/src/linux-headers-4.15.0-72/arch/xtensa/platforms/xt2000/include 24 /usr/src/linux-headers-4.15.0-72/arch/xtensa/platforms/xt2000 84 /usr/src/linux-headers-4.15.0-72/arch/xtensa/platforms 1060 /usr/src/linux-headers-4.15.0-72/arch/xtensa 8 /usr/src/linux-headers-4.15.0-72/arch/sh/oprofile 8 /usr/src/linux-headers-4.15.0-72/arch/sh/lib64 8 /usr/src/linux-headers-4.15.0-72/arch/sh/cchips/hd6446x 16 /usr/src/linux-headers-4.15.0-72/arch/sh/cchips 8 /usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-microdev 12 /usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-highlander 8 /usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-kfr2r09 8 /usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-sdk7786 8 /usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-se/770x 8 /usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-se/7343 8 /usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-se/7206 8 /usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-se/7724 8 /usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-se/7722 8 /usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-se/7721 8 /usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-se/7751 8 /usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-se/7780 72 /usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-se 12 /usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-rsk 8 /usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-dreamcast 8 /usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-landisk 12 /usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-sdk7780 12 /usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-migor 8 /usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-cayman 8 /usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-ap325rxa 8 /usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-sh7763rdp 8 /usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-ecovec24 8 /usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-hp6xx 8 /usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-x3proto 12 /usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-r2d 8 /usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-lboxre2 8 /usr/src/linux-headers-4.15.0-72/arch/sh/boards/mach-sh03 256 /usr/src/linux-headers-4.15.0-72/arch/sh/boards 8 /usr/src/linux-headers-4.15.0-72/arch/sh/drivers/superhyway 12 /usr/src/linux-headers-4.15.0-72/arch/sh/drivers/dma 8 /usr/src/linux-headers-4.15.0-72/arch/sh/drivers/pci 40 /usr/src/linux-headers-4.15.0-72/arch/sh/drivers 8 /usr/src/linux-headers-4.15.0-72/arch/sh/math-emu 8 /usr/src/linux-headers-4.15.0-72/arch/sh/tools 16 /usr/src/linux-headers-4.15.0-72/arch/sh/mm 28 /usr/src/linux-headers-4.15.0-72/arch/sh/include/cpu-sh5/cpu 32 /usr/src/linux-headers-4.15.0-72/arch/sh/include/cpu-sh5 16 /usr/src/linux-headers-4.15.0-72/arch/sh/include/mach-kfr2r09/mach 20 /usr/src/linux-headers-4.15.0-72/arch/sh/include/mach-kfr2r09 16 /usr/src/linux-headers-4.15.0-72/arch/sh/include/mach-sdk7786/mach 20 /usr/src/linux-headers-4.15.0-72/arch/sh/include/mach-sdk7786 44 /usr/src/linux-headers-4.15.0-72/arch/sh/include/mach-se/mach 48 /usr/src/linux-headers-4.15.0-72/arch/sh/include/mach-se 116 /usr/src/linux-headers-4.15.0-72/arch/sh/include/uapi/asm 120 /usr/src/linux-headers-4.15.0-72/arch/sh/include/uapi 124 /usr/src/linux-headers-4.15.0-72/arch/sh/include/cpu-sh4/cpu 128 /usr/src/linux-headers-4.15.0-72/arch/sh/include/cpu-sh4 52 /usr/src/linux-headers-4.15.0-72/arch/sh/include/cpu-sh3/cpu 56 /usr/src/linux-headers-4.15.0-72/arch/sh/include/cpu-sh3 20 /usr/src/linux-headers-4.15.0-72/arch/sh/include/mach-dreamcast/mach 24 /usr/src/linux-headers-4.15.0-72/arch/sh/include/mach-dreamcast 12 /usr/src/linux-headers-4.15.0-72/arch/sh/include/mach-landisk/mach 16 /usr/src/linux-headers-4.15.0-72/arch/sh/include/mach-landisk 16 /usr/src/linux-headers-4.15.0-72/arch/sh/include/cpu-sh2/cpu 20 /usr/src/linux-headers-4.15.0-72/arch/sh/include/cpu-sh2 8 /usr/src/linux-headers-4.15.0-72/arch/sh/include/mach-migor/mach 12 /usr/src/linux-headers-4.15.0-72/arch/sh/include/mach-migor 48 /usr/src/linux-headers-4.15.0-72/arch/sh/include/cpu-sh2a/cpu 52 /usr/src/linux-headers-4.15.0-72/arch/sh/include/cpu-sh2a 748 /usr/src/linux-headers-4.15.0-72/arch/sh/include/asm 76 /usr/src/linux-headers-4.15.0-72/arch/sh/include/mach-common/mach 80 /usr/src/linux-headers-4.15.0-72/arch/sh/include/mach-common 12 /usr/src/linux-headers-4.15.0-72/arch/sh/include/mach-ecovec24/mach 16 /usr/src/linux-headers-4.15.0-72/arch/sh/include/mach-ecovec24 12 /usr/src/linux-headers-4.15.0-72/arch/sh/include/cpu-sh4a/cpu 16 /usr/src/linux-headers-4.15.0-72/arch/sh/include/cpu-sh4a 28 /usr/src/linux-headers-4.15.0-72/arch/sh/include/cpu-common/cpu 32 /usr/src/linux-headers-4.15.0-72/arch/sh/include/cpu-common 12 /usr/src/linux-headers-4.15.0-72/arch/sh/include/mach-x3proto/mach 16 /usr/src/linux-headers-4.15.0-72/arch/sh/include/mach-x3proto 12 /usr/src/linux-headers-4.15.0-72/arch/sh/include/mach-sh03/mach 16 /usr/src/linux-headers-4.15.0-72/arch/sh/include/mach-sh03 1476 /usr/src/linux-headers-4.15.0-72/arch/sh/include 8 /usr/src/linux-headers-4.15.0-72/arch/sh/kernel/vsyscall 8 /usr/src/linux-headers-4.15.0-72/arch/sh/kernel/cpu/irq 8 /usr/src/linux-headers-4.15.0-72/arch/sh/kernel/cpu/sh4a 8 /usr/src/linux-headers-4.15.0-72/arch/sh/kernel/cpu/sh3 8 /usr/src/linux-headers-4.15.0-72/arch/sh/kernel/cpu/sh4 8 /usr/src/linux-headers-4.15.0-72/arch/sh/kernel/cpu/shmobile 8 /usr/src/linux-headers-4.15.0-72/arch/sh/kernel/cpu/sh5 8 /usr/src/linux-headers-4.15.0-72/arch/sh/kernel/cpu/sh2a 8 /usr/src/linux-headers-4.15.0-72/arch/sh/kernel/cpu/sh2 72 /usr/src/linux-headers-4.15.0-72/arch/sh/kernel/cpu 88 /usr/src/linux-headers-4.15.0-72/arch/sh/kernel 12 /usr/src/linux-headers-4.15.0-72/arch/sh/boot/compressed 8 /usr/src/linux-headers-4.15.0-72/arch/sh/boot/romimage 8 /usr/src/linux-headers-4.15.0-72/arch/sh/boot/dts 36 /usr/src/linux-headers-4.15.0-72/arch/sh/boot 8 /usr/src/linux-headers-4.15.0-72/arch/sh/lib 2016 /usr/src/linux-headers-4.15.0-72/arch/sh 8 /usr/src/linux-headers-4.15.0-72/arch/blackfin/oprofile 12 /usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf609/boards 616 /usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf609/include/mach 620 /usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf609/include 668 /usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf609 12 /usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf538/boards 340 /usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf538/include/mach 344 /usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf538/include 368 /usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf538 12 /usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf548/boards 868 /usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf548/include/mach 872 /usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf548/include 900 /usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf548 12 /usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf533/boards 160 /usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf533/include/mach 164 /usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf533/include 188 /usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf533 12 /usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf561/boards 276 /usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf561/include/mach 280 /usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf561/include 304 /usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf561 8 /usr/src/linux-headers-4.15.0-72/arch/blackfin/mm 12 /usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf518/boards 280 /usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf518/include/mach 284 /usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf518/include 312 /usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf518 84 /usr/src/linux-headers-4.15.0-72/arch/blackfin/include/uapi/asm 88 /usr/src/linux-headers-4.15.0-72/arch/blackfin/include/uapi 608 /usr/src/linux-headers-4.15.0-72/arch/blackfin/include/asm 52 /usr/src/linux-headers-4.15.0-72/arch/blackfin/include/mach-common 752 /usr/src/linux-headers-4.15.0-72/arch/blackfin/include 8 /usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-common 8 /usr/src/linux-headers-4.15.0-72/arch/blackfin/kernel/cplb-nompu 8 /usr/src/linux-headers-4.15.0-72/arch/blackfin/kernel/cplb-mpu 24 /usr/src/linux-headers-4.15.0-72/arch/blackfin/kernel 12 /usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf527/boards 344 /usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf527/include/mach 348 /usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf527/include 376 /usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf527 12 /usr/src/linux-headers-4.15.0-72/arch/blackfin/boot 12 /usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf537/boards 348 /usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf537/include/mach 352 /usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf537/include 376 /usr/src/linux-headers-4.15.0-72/arch/blackfin/mach-bf537 8 /usr/src/linux-headers-4.15.0-72/arch/blackfin/lib 4372 /usr/src/linux-headers-4.15.0-72/arch/blackfin 8 /usr/src/linux-headers-4.15.0-72/arch/mips/oprofile 8 /usr/src/linux-headers-4.15.0-72/arch/mips/power 12 /usr/src/linux-headers-4.15.0-72/arch/mips/vdso 8 /usr/src/linux-headers-4.15.0-72/arch/mips/loongson32/common 8 /usr/src/linux-headers-4.15.0-72/arch/mips/loongson32/ls1b 8 /usr/src/linux-headers-4.15.0-72/arch/mips/loongson32/ls1c 36 /usr/src/linux-headers-4.15.0-72/arch/mips/loongson32 12 /usr/src/linux-headers-4.15.0-72/arch/mips/generic 8 /usr/src/linux-headers-4.15.0-72/arch/mips/fw/sni 8 /usr/src/linux-headers-4.15.0-72/arch/mips/fw/cfe 8 /usr/src/linux-headers-4.15.0-72/arch/mips/fw/lib 8 /usr/src/linux-headers-4.15.0-72/arch/mips/fw/arc 36 /usr/src/linux-headers-4.15.0-72/arch/mips/fw 12 /usr/src/linux-headers-4.15.0-72/arch/mips/ath79 8 /usr/src/linux-headers-4.15.0-72/arch/mips/txx9/rbtx4938 8 /usr/src/linux-headers-4.15.0-72/arch/mips/txx9/generic 8 /usr/src/linux-headers-4.15.0-72/arch/mips/txx9/rbtx4939 8 /usr/src/linux-headers-4.15.0-72/arch/mips/txx9/rbtx4927 8 /usr/src/linux-headers-4.15.0-72/arch/mips/txx9/jmr3927 52 /usr/src/linux-headers-4.15.0-72/arch/mips/txx9 12 /usr/src/linux-headers-4.15.0-72/arch/mips/bcm63xx/boards 24 /usr/src/linux-headers-4.15.0-72/arch/mips/bcm63xx 8 /usr/src/linux-headers-4.15.0-72/arch/mips/emma/common 8 /usr/src/linux-headers-4.15.0-72/arch/mips/emma/markeins 24 /usr/src/linux-headers-4.15.0-72/arch/mips/emma 12 /usr/src/linux-headers-4.15.0-72/arch/mips/jazz 8 /usr/src/linux-headers-4.15.0-72/arch/mips/cavium-octeon/crypto 8 /usr/src/linux-headers-4.15.0-72/arch/mips/cavium-octeon/executive 28 /usr/src/linux-headers-4.15.0-72/arch/mips/cavium-octeon 8 /usr/src/linux-headers-4.15.0-72/arch/mips/pnx833x/stb22x 8 /usr/src/linux-headers-4.15.0-72/arch/mips/pnx833x/common 24 /usr/src/linux-headers-4.15.0-72/arch/mips/pnx833x 8 /usr/src/linux-headers-4.15.0-72/arch/mips/sgi-ip22 8 /usr/src/linux-headers-4.15.0-72/arch/mips/lantiq/falcon 8 /usr/src/linux-headers-4.15.0-72/arch/mips/lantiq/xway 28 /usr/src/linux-headers-4.15.0-72/arch/mips/lantiq 8 /usr/src/linux-headers-4.15.0-72/arch/mips/mti-malta 8 /usr/src/linux-headers-4.15.0-72/arch/mips/rb532 8 /usr/src/linux-headers-4.15.0-72/arch/mips/sni 8 /usr/src/linux-headers-4.15.0-72/arch/mips/math-emu 8 /usr/src/linux-headers-4.15.0-72/arch/mips/net 8 /usr/src/linux-headers-4.15.0-72/arch/mips/tools 8 /usr/src/linux-headers-4.15.0-72/arch/mips/mm 264 /usr/src/linux-headers-4.15.0-72/arch/mips/include/uapi/asm 268 /usr/src/linux-headers-4.15.0-72/arch/mips/include/uapi 12 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/fw/cfe 12 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/fw/arc 32 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/fw 116 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/sn/sn0 256 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/sn 124 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/txx9 20 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/emma 16 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-db1x00 8 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-vr41xx 156 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-au1x00 52 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-jz4740 24 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-ar7 8 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-ralink/rt3883 8 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-ralink/mt7620 8 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-ralink/rt305x 8 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-ralink/rt288x 8 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-ralink/mt7621 92 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-ralink 8 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-xilfpga 12 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-lasat 56 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-generic 192 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-bcm63xx 16 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-bcm47xx 20 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-cobalt 104 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-pmcs-msp71xx 16 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-netlogic 2300 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/octeon 20 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-bmips 16 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-jazz 12 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-dec 24 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-ip32 16 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-ip22 40 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-malta 8 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-emma2rh 16 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/xtalk 16 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-ath25 44 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-ip27 80 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/dec 12 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-sibyte 28 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/ip32 52 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-loongson32 16 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-tx39xx 16 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-paravirt 60 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mips-boards 48 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-ath79 28 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-tx49xx 44 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/vr41xx 36 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-pnx833x 8 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-pistachio 20 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-pic32 16 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-rm 64 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/sgi 36 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/lasat 68 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/netlogic/xlp-hal 52 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/netlogic/xlr 160 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/netlogic 20 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-lantiq/falcon 20 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-lantiq/xway 52 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-lantiq 32 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-cavium-octeon 408 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/sibyte 80 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-rc32434 16 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-ip28 36 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/pci 24 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-loongson64/cs5536 104 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm/mach-loongson64 6492 /usr/src/linux-headers-4.15.0-72/arch/mips/include/asm 6764 /usr/src/linux-headers-4.15.0-72/arch/mips/include 8 /usr/src/linux-headers-4.15.0-72/arch/mips/alchemy/common 8 /usr/src/linux-headers-4.15.0-72/arch/mips/alchemy/devboards 28 /usr/src/linux-headers-4.15.0-72/arch/mips/alchemy 12 /usr/src/linux-headers-4.15.0-72/arch/mips/paravirt 12 /usr/src/linux-headers-4.15.0-72/arch/mips/bcm47xx 12 /usr/src/linux-headers-4.15.0-72/arch/mips/kernel 8 /usr/src/linux-headers-4.15.0-72/arch/mips/cobalt 8 /usr/src/linux-headers-4.15.0-72/arch/mips/loongson64/common/cs5536 16 /usr/src/linux-headers-4.15.0-72/arch/mips/loongson64/common 8 /usr/src/linux-headers-4.15.0-72/arch/mips/loongson64/loongson-3 8 /usr/src/linux-headers-4.15.0-72/arch/mips/loongson64/lemote-2f 8 /usr/src/linux-headers-4.15.0-72/arch/mips/loongson64/fuloong-2e 52 /usr/src/linux-headers-4.15.0-72/arch/mips/loongson64 8 /usr/src/linux-headers-4.15.0-72/arch/mips/dec/prom 16 /usr/src/linux-headers-4.15.0-72/arch/mips/dec 12 /usr/src/linux-headers-4.15.0-72/arch/mips/ath25 12 /usr/src/linux-headers-4.15.0-72/arch/mips/kvm 8 /usr/src/linux-headers-4.15.0-72/arch/mips/sgi-ip32 12 /usr/src/linux-headers-4.15.0-72/arch/mips/boot/compressed 8 /usr/src/linux-headers-4.15.0-72/arch/mips/boot/tools 8 /usr/src/linux-headers-4.15.0-72/arch/mips/boot/dts/cavium-octeon 8 /usr/src/linux-headers-4.15.0-72/arch/mips/boot/dts/lantiq 8 /usr/src/linux-headers-4.15.0-72/arch/mips/boot/dts/qca 8 /usr/src/linux-headers-4.15.0-72/arch/mips/boot/dts/ni 8 /usr/src/linux-headers-4.15.0-72/arch/mips/boot/dts/xilfpga 8 /usr/src/linux-headers-4.15.0-72/arch/mips/boot/dts/ingenic 8 /usr/src/linux-headers-4.15.0-72/arch/mips/boot/dts/img 8 /usr/src/linux-headers-4.15.0-72/arch/mips/boot/dts/brcm 8 /usr/src/linux-headers-4.15.0-72/arch/mips/boot/dts/pic32 8 /usr/src/linux-headers-4.15.0-72/arch/mips/boot/dts/ralink 8 /usr/src/linux-headers-4.15.0-72/arch/mips/boot/dts/netlogic 8 /usr/src/linux-headers-4.15.0-72/arch/mips/boot/dts/mti 104 /usr/src/linux-headers-4.15.0-72/arch/mips/boot/dts 136 /usr/src/linux-headers-4.15.0-72/arch/mips/boot 8 /usr/src/linux-headers-4.15.0-72/arch/mips/pic32/common 8 /usr/src/linux-headers-4.15.0-72/arch/mips/pic32/pic32mzda 28 /usr/src/linux-headers-4.15.0-72/arch/mips/pic32 12 /usr/src/linux-headers-4.15.0-72/arch/mips/bmips 8 /usr/src/linux-headers-4.15.0-72/arch/mips/vr41xx/common 8 /usr/src/linux-headers-4.15.0-72/arch/mips/vr41xx/casio-e55 8 /usr/src/linux-headers-4.15.0-72/arch/mips/vr41xx/ibm-workpad 32 /usr/src/linux-headers-4.15.0-72/arch/mips/vr41xx 12 /usr/src/linux-headers-4.15.0-72/arch/mips/sgi-ip27 12 /usr/src/linux-headers-4.15.0-72/arch/mips/pmcs-msp71xx 8 /usr/src/linux-headers-4.15.0-72/arch/mips/lib 12 /usr/src/linux-headers-4.15.0-72/arch/mips/pistachio 8 /usr/src/linux-headers-4.15.0-72/arch/mips/lasat/image 20 /usr/src/linux-headers-4.15.0-72/arch/mips/lasat 12 /usr/src/linux-headers-4.15.0-72/arch/mips/ralink 8 /usr/src/linux-headers-4.15.0-72/arch/mips/netlogic/xlr 8 /usr/src/linux-headers-4.15.0-72/arch/mips/netlogic/common 8 /usr/src/linux-headers-4.15.0-72/arch/mips/netlogic/xlp 36 /usr/src/linux-headers-4.15.0-72/arch/mips/netlogic 8 /usr/src/linux-headers-4.15.0-72/arch/mips/sibyte/swarm 8 /usr/src/linux-headers-4.15.0-72/arch/mips/sibyte/common 8 /usr/src/linux-headers-4.15.0-72/arch/mips/sibyte/bcm1480 8 /usr/src/linux-headers-4.15.0-72/arch/mips/sibyte/sb1250 44 /usr/src/linux-headers-4.15.0-72/arch/mips/sibyte 8 /usr/src/linux-headers-4.15.0-72/arch/mips/pci 12 /usr/src/linux-headers-4.15.0-72/arch/mips/jz4740 8 /usr/src/linux-headers-4.15.0-72/arch/mips/ar7 7832 /usr/src/linux-headers-4.15.0-72/arch/mips 8 /usr/src/linux-headers-4.15.0-72/arch/parisc/oprofile 8 /usr/src/linux-headers-4.15.0-72/arch/parisc/math-emu 8 /usr/src/linux-headers-4.15.0-72/arch/parisc/mm 160 /usr/src/linux-headers-4.15.0-72/arch/parisc/include/uapi/asm 164 /usr/src/linux-headers-4.15.0-72/arch/parisc/include/uapi 528 /usr/src/linux-headers-4.15.0-72/arch/parisc/include/asm 696 /usr/src/linux-headers-4.15.0-72/arch/parisc/include 8 /usr/src/linux-headers-4.15.0-72/arch/parisc/kernel 8 /usr/src/linux-headers-4.15.0-72/arch/parisc/boot/compressed 20 /usr/src/linux-headers-4.15.0-72/arch/parisc/boot 8 /usr/src/linux-headers-4.15.0-72/arch/parisc/lib 788 /usr/src/linux-headers-4.15.0-72/arch/parisc 8 /usr/src/linux-headers-4.15.0-72/arch/x86/hyperv 8 /usr/src/linux-headers-4.15.0-72/arch/x86/ia32 8 /usr/src/linux-headers-4.15.0-72/arch/x86/oprofile 8 /usr/src/linux-headers-4.15.0-72/arch/x86/power 8 /usr/src/linux-headers-4.15.0-72/arch/x86/purgatory 8 /usr/src/linux-headers-4.15.0-72/arch/x86/ras 8 /usr/src/linux-headers-4.15.0-72/arch/x86/platform/ts5500 8 /usr/src/linux-headers-4.15.0-72/arch/x86/platform/intel 8 /usr/src/linux-headers-4.15.0-72/arch/x86/platform/ce4100 8 /usr/src/linux-headers-4.15.0-72/arch/x86/platform/scx200 8 /usr/src/linux-headers-4.15.0-72/arch/x86/platform/goldfish 8 /usr/src/linux-headers-4.15.0-72/arch/x86/platform/intel-mid/device_libs 16 /usr/src/linux-headers-4.15.0-72/arch/x86/platform/intel-mid 8 /usr/src/linux-headers-4.15.0-72/arch/x86/platform/efi 8 /usr/src/linux-headers-4.15.0-72/arch/x86/platform/geode 8 /usr/src/linux-headers-4.15.0-72/arch/x86/platform/iris 8 /usr/src/linux-headers-4.15.0-72/arch/x86/platform/olpc 8 /usr/src/linux-headers-4.15.0-72/arch/x86/platform/uv 8 /usr/src/linux-headers-4.15.0-72/arch/x86/platform/atom 8 /usr/src/linux-headers-4.15.0-72/arch/x86/platform/intel-quark 8 /usr/src/linux-headers-4.15.0-72/arch/x86/platform/sfi 128 /usr/src/linux-headers-4.15.0-72/arch/x86/platform 8 /usr/src/linux-headers-4.15.0-72/arch/x86/events/intel 8 /usr/src/linux-headers-4.15.0-72/arch/x86/events/amd 28 /usr/src/linux-headers-4.15.0-72/arch/x86/events 8 /usr/src/linux-headers-4.15.0-72/arch/x86/video 8 /usr/src/linux-headers-4.15.0-72/arch/x86/math-emu 8 /usr/src/linux-headers-4.15.0-72/arch/x86/net 8 /usr/src/linux-headers-4.15.0-72/arch/x86/tools 8 /usr/src/linux-headers-4.15.0-72/arch/x86/mm 288 /usr/src/linux-headers-4.15.0-72/arch/x86/include/uapi/asm 292 /usr/src/linux-headers-4.15.0-72/arch/x86/include/uapi 36 /usr/src/linux-headers-4.15.0-72/arch/x86/include/asm/trace 96 /usr/src/linux-headers-4.15.0-72/arch/x86/include/asm/xen 32 /usr/src/linux-headers-4.15.0-72/arch/x86/include/asm/crypto 272 /usr/src/linux-headers-4.15.0-72/arch/x86/include/asm/uv 48 /usr/src/linux-headers-4.15.0-72/arch/x86/include/asm/fpu 12 /usr/src/linux-headers-4.15.0-72/arch/x86/include/asm/numachip 12 /usr/src/linux-headers-4.15.0-72/arch/x86/include/asm/e820 2444 /usr/src/linux-headers-4.15.0-72/arch/x86/include/asm 2740 /usr/src/linux-headers-4.15.0-72/arch/x86/include 12 /usr/src/linux-headers-4.15.0-72/arch/x86/xen 8 /usr/src/linux-headers-4.15.0-72/arch/x86/crypto/sha1-mb 8 /usr/src/linux-headers-4.15.0-72/arch/x86/crypto/sha256-mb 8 /usr/src/linux-headers-4.15.0-72/arch/x86/crypto/sha512-mb 36 /usr/src/linux-headers-4.15.0-72/arch/x86/crypto 8 /usr/src/linux-headers-4.15.0-72/arch/x86/kernel/kprobes 8 /usr/src/linux-headers-4.15.0-72/arch/x86/kernel/apic 8 /usr/src/linux-headers-4.15.0-72/arch/x86/kernel/acpi 8 /usr/src/linux-headers-4.15.0-72/arch/x86/kernel/cpu/mcheck 8 /usr/src/linux-headers-4.15.0-72/arch/x86/kernel/cpu/mtrr 8 /usr/src/linux-headers-4.15.0-72/arch/x86/kernel/cpu/microcode 36 /usr/src/linux-headers-4.15.0-72/arch/x86/kernel/cpu 8 /usr/src/linux-headers-4.15.0-72/arch/x86/kernel/fpu 80 /usr/src/linux-headers-4.15.0-72/arch/x86/kernel 8 /usr/src/linux-headers-4.15.0-72/arch/x86/realmode/rm 16 /usr/src/linux-headers-4.15.0-72/arch/x86/realmode 12 /usr/src/linux-headers-4.15.0-72/arch/x86/kvm 16 /usr/src/linux-headers-4.15.0-72/arch/x86/entry/vdso 8 /usr/src/linux-headers-4.15.0-72/arch/x86/entry/vsyscall 16 /usr/src/linux-headers-4.15.0-72/arch/x86/entry/syscalls 48 /usr/src/linux-headers-4.15.0-72/arch/x86/entry 12 /usr/src/linux-headers-4.15.0-72/arch/x86/boot/compressed 32 /usr/src/linux-headers-4.15.0-72/arch/x86/boot 12 /usr/src/linux-headers-4.15.0-72/arch/x86/um/vdso 8 /usr/src/linux-headers-4.15.0-72/arch/x86/um/os-Linux 32 /usr/src/linux-headers-4.15.0-72/arch/x86/um 8 /usr/src/linux-headers-4.15.0-72/arch/x86/lib 8 /usr/src/linux-headers-4.15.0-72/arch/x86/pci 3428 /usr/src/linux-headers-4.15.0-72/arch/x86 8 /usr/src/linux-headers-4.15.0-72/arch/riscv/mm 48 /usr/src/linux-headers-4.15.0-72/arch/riscv/include/uapi/asm 52 /usr/src/linux-headers-4.15.0-72/arch/riscv/include/uapi 244 /usr/src/linux-headers-4.15.0-72/arch/riscv/include/asm 300 /usr/src/linux-headers-4.15.0-72/arch/riscv/include 8 /usr/src/linux-headers-4.15.0-72/arch/riscv/kernel/vdso 16 /usr/src/linux-headers-4.15.0-72/arch/riscv/kernel 8 /usr/src/linux-headers-4.15.0-72/arch/riscv/lib 348 /usr/src/linux-headers-4.15.0-72/arch/riscv 8 /usr/src/linux-headers-4.15.0-72/arch/openrisc/mm 32 /usr/src/linux-headers-4.15.0-72/arch/openrisc/include/uapi/asm 36 /usr/src/linux-headers-4.15.0-72/arch/openrisc/include/uapi 24 /usr/src/linux-headers-4.15.0-72/arch/openrisc/include/asm/bitops 228 /usr/src/linux-headers-4.15.0-72/arch/openrisc/include/asm 268 /usr/src/linux-headers-4.15.0-72/arch/openrisc/include 8 /usr/src/linux-headers-4.15.0-72/arch/openrisc/kernel 8 /usr/src/linux-headers-4.15.0-72/arch/openrisc/boot/dts 12 /usr/src/linux-headers-4.15.0-72/arch/openrisc/boot 8 /usr/src/linux-headers-4.15.0-72/arch/openrisc/lib 320 /usr/src/linux-headers-4.15.0-72/arch/openrisc 8 /usr/src/linux-headers-4.15.0-72/arch/frv/mm 152 /usr/src/linux-headers-4.15.0-72/arch/frv/include/uapi/asm 156 /usr/src/linux-headers-4.15.0-72/arch/frv/include/uapi 456 /usr/src/linux-headers-4.15.0-72/arch/frv/include/asm 616 /usr/src/linux-headers-4.15.0-72/arch/frv/include 8 /usr/src/linux-headers-4.15.0-72/arch/frv/kernel 8 /usr/src/linux-headers-4.15.0-72/arch/frv/boot 8 /usr/src/linux-headers-4.15.0-72/arch/frv/lib 8 /usr/src/linux-headers-4.15.0-72/arch/frv/mb93090-mb00 680 /usr/src/linux-headers-4.15.0-72/arch/frv 8 /usr/src/linux-headers-4.15.0-72/arch/alpha/oprofile 8 /usr/src/linux-headers-4.15.0-72/arch/alpha/math-emu 8 /usr/src/linux-headers-4.15.0-72/arch/alpha/mm 200 /usr/src/linux-headers-4.15.0-72/arch/alpha/include/uapi/asm 204 /usr/src/linux-headers-4.15.0-72/arch/alpha/include/uapi 652 /usr/src/linux-headers-4.15.0-72/arch/alpha/include/asm 860 /usr/src/linux-headers-4.15.0-72/arch/alpha/include 12 /usr/src/linux-headers-4.15.0-72/arch/alpha/kernel 12 /usr/src/linux-headers-4.15.0-72/arch/alpha/boot 8 /usr/src/linux-headers-4.15.0-72/arch/alpha/lib 952 /usr/src/linux-headers-4.15.0-72/arch/alpha 8 /usr/src/linux-headers-4.15.0-72/arch/um/os-Linux/drivers 8 /usr/src/linux-headers-4.15.0-72/arch/um/os-Linux/skas 24 /usr/src/linux-headers-4.15.0-72/arch/um/os-Linux 8 /usr/src/linux-headers-4.15.0-72/arch/um/drivers 16 /usr/src/linux-headers-4.15.0-72/arch/um/include/shared/skas 120 /usr/src/linux-headers-4.15.0-72/arch/um/include/shared 148 /usr/src/linux-headers-4.15.0-72/arch/um/include/asm 272 /usr/src/linux-headers-4.15.0-72/arch/um/include 8 /usr/src/linux-headers-4.15.0-72/arch/um/kernel/skas 16 /usr/src/linux-headers-4.15.0-72/arch/um/kernel 8 /usr/src/linux-headers-4.15.0-72/arch/um/scripts 388 /usr/src/linux-headers-4.15.0-72/arch/um 8 /usr/src/linux-headers-4.15.0-72/arch/m68k/coldfire 8 /usr/src/linux-headers-4.15.0-72/arch/m68k/emu 8 /usr/src/linux-headers-4.15.0-72/arch/m68k/bvme6000 8 /usr/src/linux-headers-4.15.0-72/arch/m68k/sun3/prom 16 /usr/src/linux-headers-4.15.0-72/arch/m68k/sun3 8 /usr/src/linux-headers-4.15.0-72/arch/m68k/atari 8 /usr/src/linux-headers-4.15.0-72/arch/m68k/ifpsp060 8 /usr/src/linux-headers-4.15.0-72/arch/m68k/math-emu 8 /usr/src/linux-headers-4.15.0-72/arch/m68k/tools/amiga 12 /usr/src/linux-headers-4.15.0-72/arch/m68k/tools 8 /usr/src/linux-headers-4.15.0-72/arch/m68k/mm 116 /usr/src/linux-headers-4.15.0-72/arch/m68k/include/uapi/asm 120 /usr/src/linux-headers-4.15.0-72/arch/m68k/include/uapi 1180 /usr/src/linux-headers-4.15.0-72/arch/m68k/include/asm 1304 /usr/src/linux-headers-4.15.0-72/arch/m68k/include 8 /usr/src/linux-headers-4.15.0-72/arch/m68k/amiga 24 /usr/src/linux-headers-4.15.0-72/arch/m68k/kernel 8 /usr/src/linux-headers-4.15.0-72/arch/m68k/q40 8 /usr/src/linux-headers-4.15.0-72/arch/m68k/mvme16x 8 /usr/src/linux-headers-4.15.0-72/arch/m68k/fpsp040 8 /usr/src/linux-headers-4.15.0-72/arch/m68k/sun3x 8 /usr/src/linux-headers-4.15.0-72/arch/m68k/68000 8 /usr/src/linux-headers-4.15.0-72/arch/m68k/lib 8 /usr/src/linux-headers-4.15.0-72/arch/m68k/mvme147 8 /usr/src/linux-headers-4.15.0-72/arch/m68k/apollo 8 /usr/src/linux-headers-4.15.0-72/arch/m68k/hp300 8 /usr/src/linux-headers-4.15.0-72/arch/m68k/mac 1568 /usr/src/linux-headers-4.15.0-72/arch/m68k 16 /usr/src/linux-headers-4.15.0-72/arch/nios2/platform 8 /usr/src/linux-headers-4.15.0-72/arch/nios2/mm 36 /usr/src/linux-headers-4.15.0-72/arch/nios2/include/uapi/asm 40 /usr/src/linux-headers-4.15.0-72/arch/nios2/include/uapi 164 /usr/src/linux-headers-4.15.0-72/arch/nios2/include/asm 208 /usr/src/linux-headers-4.15.0-72/arch/nios2/include 8 /usr/src/linux-headers-4.15.0-72/arch/nios2/kernel 8 /usr/src/linux-headers-4.15.0-72/arch/nios2/boot/compressed 20 /usr/src/linux-headers-4.15.0-72/arch/nios2/boot 8 /usr/src/linux-headers-4.15.0-72/arch/nios2/lib 288 /usr/src/linux-headers-4.15.0-72/arch/nios2 8 /usr/src/linux-headers-4.15.0-72/arch/arc/oprofile 12 /usr/src/linux-headers-4.15.0-72/arch/arc/plat-hsdk 20 /usr/src/linux-headers-4.15.0-72/arch/arc/plat-eznps/include/plat 24 /usr/src/linux-headers-4.15.0-72/arch/arc/plat-eznps/include 36 /usr/src/linux-headers-4.15.0-72/arch/arc/plat-eznps 8 /usr/src/linux-headers-4.15.0-72/arch/arc/mm 48 /usr/src/linux-headers-4.15.0-72/arch/arc/include/uapi/asm 52 /usr/src/linux-headers-4.15.0-72/arch/arc/include/uapi 388 /usr/src/linux-headers-4.15.0-72/arch/arc/include/asm 444 /usr/src/linux-headers-4.15.0-72/arch/arc/include 8 /usr/src/linux-headers-4.15.0-72/arch/arc/kernel 8 /usr/src/linux-headers-4.15.0-72/arch/arc/boot/dts 16 /usr/src/linux-headers-4.15.0-72/arch/arc/boot 8 /usr/src/linux-headers-4.15.0-72/arch/arc/plat-sim 12 /usr/src/linux-headers-4.15.0-72/arch/arc/plat-tb10x 8 /usr/src/linux-headers-4.15.0-72/arch/arc/lib 12 /usr/src/linux-headers-4.15.0-72/arch/arc/plat-axs10x 604 /usr/src/linux-headers-4.15.0-72/arch/arc 8 /usr/src/linux-headers-4.15.0-72/arch/c6x/mm 36 /usr/src/linux-headers-4.15.0-72/arch/c6x/include/uapi/asm 40 /usr/src/linux-headers-4.15.0-72/arch/c6x/include/uapi 172 /usr/src/linux-headers-4.15.0-72/arch/c6x/include/asm 216 /usr/src/linux-headers-4.15.0-72/arch/c6x/include 8 /usr/src/linux-headers-4.15.0-72/arch/c6x/kernel 8 /usr/src/linux-headers-4.15.0-72/arch/c6x/boot/dts 16 /usr/src/linux-headers-4.15.0-72/arch/c6x/boot 8 /usr/src/linux-headers-4.15.0-72/arch/c6x/lib 12 /usr/src/linux-headers-4.15.0-72/arch/c6x/platforms 280 /usr/src/linux-headers-4.15.0-72/arch/c6x 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-oxnas 8 /usr/src/linux-headers-4.15.0-72/arch/arm/oprofile 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-tegra 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-qcom 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-hisi 8 /usr/src/linux-headers-4.15.0-72/arch/arm/vdso 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-nomadik 8 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-uniphier 16 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-at91 8 /usr/src/linux-headers-4.15.0-72/arch/arm/plat-iop 32 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-footbridge/include/mach 36 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-footbridge/include 52 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-footbridge 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-nspire 104 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-s3c24xx/include/mach 108 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-s3c24xx/include 136 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-s3c24xx 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-rockchip 16 /usr/src/linux-headers-4.15.0-72/arch/arm/plat-pxa/include/plat 20 /usr/src/linux-headers-4.15.0-72/arch/arm/plat-pxa/include 32 /usr/src/linux-headers-4.15.0-72/arch/arm/plat-pxa 48 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-lpc32xx/include/mach 52 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-lpc32xx/include 64 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-lpc32xx 40 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-rpc/include/mach 44 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-rpc/include 56 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-rpc 76 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-iop13xx/include/mach 80 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-iop13xx/include 96 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-iop13xx 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-artpec 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-prima2 12 /usr/src/linux-headers-4.15.0-72/arch/arm/common 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-mediatek 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-mv78xx0 20 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-spear/include/mach 24 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-spear/include 36 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-spear 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-berlin 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-digicolor 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-mvebu 28 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-ebsa110/include/mach 32 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-ebsa110/include 44 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-ebsa110 32 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-ep93xx/include/mach 36 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-ep93xx/include 52 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-ep93xx 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-sti 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-lpc18xx 48 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-iop32x/include/mach 52 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-iop32x/include 68 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-iop32x 32 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-dove/include/mach 36 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-dove/include 52 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-dove 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-ux500 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-integrator 32 /usr/src/linux-headers-4.15.0-72/arch/arm/plat-orion/include/plat 36 /usr/src/linux-headers-4.15.0-72/arch/arm/plat-orion/include 44 /usr/src/linux-headers-4.15.0-72/arch/arm/plat-orion 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-tango 52 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-w90x900/include/mach 56 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-w90x900/include 72 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-w90x900 8 /usr/src/linux-headers-4.15.0-72/arch/arm/probes/uprobes 8 /usr/src/linux-headers-4.15.0-72/arch/arm/probes/kprobes 24 /usr/src/linux-headers-4.15.0-72/arch/arm/probes 8 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-exynos/include/mach 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-exynos/include 24 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-exynos 8 /usr/src/linux-headers-4.15.0-72/arch/arm/net 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-imx/devices 36 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-imx 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-zynq 20 /usr/src/linux-headers-4.15.0-72/arch/arm/tools 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-sunxi 40 /usr/src/linux-headers-4.15.0-72/arch/arm/mm 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-efm32 96 /usr/src/linux-headers-4.15.0-72/arch/arm/include/uapi/asm 100 /usr/src/linux-headers-4.15.0-72/arch/arm/include/uapi 36 /usr/src/linux-headers-4.15.0-72/arch/arm/include/asm/mach 32 /usr/src/linux-headers-4.15.0-72/arch/arm/include/asm/xen 160 /usr/src/linux-headers-4.15.0-72/arch/arm/include/asm/hardware 1180 /usr/src/linux-headers-4.15.0-72/arch/arm/include/asm 152 /usr/src/linux-headers-4.15.0-72/arch/arm/include/debug 1436 /usr/src/linux-headers-4.15.0-72/arch/arm/include 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-s5pv210 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-meson 40 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-iop33x/include/mach 44 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-iop33x/include 60 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-iop33x 8 /usr/src/linux-headers-4.15.0-72/arch/arm/xen 88 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-davinci/include/mach 92 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-davinci/include 112 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-davinci 52 /usr/src/linux-headers-4.15.0-72/arch/arm/crypto 12 /usr/src/linux-headers-4.15.0-72/arch/arm/kernel 8 /usr/src/linux-headers-4.15.0-72/arch/arm/vfp 224 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-pxa/include/mach 228 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-pxa/include 256 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-pxa 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-zx 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-u300 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-actions 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-moxart 36 /usr/src/linux-headers-4.15.0-72/arch/arm/plat-omap/include/plat 40 /usr/src/linux-headers-4.15.0-72/arch/arm/plat-omap/include 56 /usr/src/linux-headers-4.15.0-72/arch/arm/plat-omap 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-cns3xxx 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-alpine 8 /usr/src/linux-headers-4.15.0-72/arch/arm/nwfpe 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-highbank 16 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-vt8500 8 /usr/src/linux-headers-4.15.0-72/arch/arm/kvm/hyp 20 /usr/src/linux-headers-4.15.0-72/arch/arm/kvm 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-versatile 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-picoxcell 12 /usr/src/linux-headers-4.15.0-72/arch/arm/boot/compressed 12 /usr/src/linux-headers-4.15.0-72/arch/arm/boot/bootp 32 /usr/src/linux-headers-4.15.0-72/arch/arm/boot/dts 72 /usr/src/linux-headers-4.15.0-72/arch/arm/boot 12 /usr/src/linux-headers-4.15.0-72/arch/arm/firmware 116 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-omap1/include/mach 120 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-omap1/include 140 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-omap1 180 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-sa1100/include/mach 184 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-sa1100/include 204 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-sa1100 16 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-bcm 16 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-orion5x 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-shmobile 84 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-ixp4xx/include/mach 88 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-ixp4xx/include 108 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-ixp4xx 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-mmp 16 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-omap2/include/mach 20 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-omap2/include 44 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-omap2 8 /usr/src/linux-headers-4.15.0-72/arch/arm/lib 16 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-stm32 12 /usr/src/linux-headers-4.15.0-72/arch/arm/plat-versatile/include/plat 16 /usr/src/linux-headers-4.15.0-72/arch/arm/plat-versatile/include 28 /usr/src/linux-headers-4.15.0-72/arch/arm/plat-versatile 16 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-vexpress 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-clps711x 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-gemini 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-mxs 44 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-netx/include/mach 48 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-netx/include 64 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-netx 144 /usr/src/linux-headers-4.15.0-72/arch/arm/plat-samsung/include/plat 148 /usr/src/linux-headers-4.15.0-72/arch/arm/plat-samsung/include 164 /usr/src/linux-headers-4.15.0-72/arch/arm/plat-samsung 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-keystone 48 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-s3c64xx/include/mach 52 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-s3c64xx/include 72 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-s3c64xx 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-realview 8 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-asm9260 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-axxia 48 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-ks8695/include/mach 52 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-ks8695/include 68 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-ks8695 8 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-aspeed 12 /usr/src/linux-headers-4.15.0-72/arch/arm/mach-socfpga 4784 /usr/src/linux-headers-4.15.0-72/arch/arm 8 /usr/src/linux-headers-4.15.0-72/arch/powerpc/oprofile 8 /usr/src/linux-headers-4.15.0-72/arch/powerpc/perf 8 /usr/src/linux-headers-4.15.0-72/arch/powerpc/sysdev/ge 12 /usr/src/linux-headers-4.15.0-72/arch/powerpc/sysdev/xics 12 /usr/src/linux-headers-4.15.0-72/arch/powerpc/sysdev/xive 44 /usr/src/linux-headers-4.15.0-72/arch/powerpc/sysdev 8 /usr/src/linux-headers-4.15.0-72/arch/powerpc/purgatory 8 /usr/src/linux-headers-4.15.0-72/arch/powerpc/math-emu 8 /usr/src/linux-headers-4.15.0-72/arch/powerpc/net 20 /usr/src/linux-headers-4.15.0-72/arch/powerpc/tools 8 /usr/src/linux-headers-4.15.0-72/arch/powerpc/mm 8 /usr/src/linux-headers-4.15.0-72/arch/powerpc/xmon 232 /usr/src/linux-headers-4.15.0-72/arch/powerpc/include/uapi/asm 236 /usr/src/linux-headers-4.15.0-72/arch/powerpc/include/uapi 32 /usr/src/linux-headers-4.15.0-72/arch/powerpc/include/asm/book3s/32 152 /usr/src/linux-headers-4.15.0-72/arch/powerpc/include/asm/book3s/64 196 /usr/src/linux-headers-4.15.0-72/arch/powerpc/include/asm/book3s 40 /usr/src/linux-headers-4.15.0-72/arch/powerpc/include/asm/nohash/32 36 /usr/src/linux-headers-4.15.0-72/arch/powerpc/include/asm/nohash/64 96 /usr/src/linux-headers-4.15.0-72/arch/powerpc/include/asm/nohash 2448 /usr/src/linux-headers-4.15.0-72/arch/powerpc/include/asm 2688 /usr/src/linux-headers-4.15.0-72/arch/powerpc/include 8 /usr/src/linux-headers-4.15.0-72/arch/powerpc/crypto 8 /usr/src/linux-headers-4.15.0-72/arch/powerpc/kernel/trace 8 /usr/src/linux-headers-4.15.0-72/arch/powerpc/kernel/vdso64 8 /usr/src/linux-headers-4.15.0-72/arch/powerpc/kernel/vdso32 44 /usr/src/linux-headers-4.15.0-72/arch/powerpc/kernel 16 /usr/src/linux-headers-4.15.0-72/arch/powerpc/kvm 28 /usr/src/linux-headers-4.15.0-72/arch/powerpc/boot 8 /usr/src/linux-headers-4.15.0-72/arch/powerpc/lib 12 /usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms/82xx 12 /usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms/83xx 16 /usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms/pseries 12 /usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms/52xx 12 /usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms/pasemi 12 /usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms/40x 12 /usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms/maple 12 /usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms/embedded6xx 12 /usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms/86xx 12 /usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms/amigaone 8 /usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms/4xx 24 /usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms/44x 16 /usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms/8xx 16 /usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms/ps3 12 /usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms/chrp 12 /usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms/powernv 16 /usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms/85xx 12 /usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms/powermac 12 /usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms/512x 8 /usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms/cell/spufs 20 /usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms/cell 304 /usr/src/linux-headers-4.15.0-72/arch/powerpc/platforms 3288 /usr/src/linux-headers-4.15.0-72/arch/powerpc 8 /usr/src/linux-headers-4.15.0-72/arch/ia64/hp/zx1 8 /usr/src/linux-headers-4.15.0-72/arch/ia64/hp/common 12 /usr/src/linux-headers-4.15.0-72/arch/ia64/hp/sim/boot 24 /usr/src/linux-headers-4.15.0-72/arch/ia64/hp/sim 44 /usr/src/linux-headers-4.15.0-72/arch/ia64/hp 8 /usr/src/linux-headers-4.15.0-72/arch/ia64/oprofile 8 /usr/src/linux-headers-4.15.0-72/arch/ia64/dig 24 /usr/src/linux-headers-4.15.0-72/arch/ia64/sn/include/xtalk 36 /usr/src/linux-headers-4.15.0-72/arch/ia64/sn/include 8 /usr/src/linux-headers-4.15.0-72/arch/ia64/sn/kernel/sn2 16 /usr/src/linux-headers-4.15.0-72/arch/ia64/sn/kernel 8 /usr/src/linux-headers-4.15.0-72/arch/ia64/sn/pci/pcibr 16 /usr/src/linux-headers-4.15.0-72/arch/ia64/sn/pci 76 /usr/src/linux-headers-4.15.0-72/arch/ia64/sn 8 /usr/src/linux-headers-4.15.0-72/arch/ia64/mm 236 /usr/src/linux-headers-4.15.0-72/arch/ia64/include/uapi/asm 240 /usr/src/linux-headers-4.15.0-72/arch/ia64/include/uapi 12 /usr/src/linux-headers-4.15.0-72/arch/ia64/include/asm/sn/sn2 440 /usr/src/linux-headers-4.15.0-72/arch/ia64/include/asm/sn 16 /usr/src/linux-headers-4.15.0-72/arch/ia64/include/asm/native 56 /usr/src/linux-headers-4.15.0-72/arch/ia64/include/asm/uv 1240 /usr/src/linux-headers-4.15.0-72/arch/ia64/include/asm 1484 /usr/src/linux-headers-4.15.0-72/arch/ia64/include 12 /usr/src/linux-headers-4.15.0-72/arch/ia64/kernel 8 /usr/src/linux-headers-4.15.0-72/arch/ia64/scripts 8 /usr/src/linux-headers-4.15.0-72/arch/ia64/uv/kernel 16 /usr/src/linux-headers-4.15.0-72/arch/ia64/uv 8 /usr/src/linux-headers-4.15.0-72/arch/ia64/lib 8 /usr/src/linux-headers-4.15.0-72/arch/ia64/pci 1716 /usr/src/linux-headers-4.15.0-72/arch/ia64 48368 /usr/src/linux-headers-4.15.0-72/arch 8 /usr/src/linux-headers-4.15.0-72/lib/lzo 8 /usr/src/linux-headers-4.15.0-72/lib/lz4 8 /usr/src/linux-headers-4.15.0-72/lib/reed_solomon 12 /usr/src/linux-headers-4.15.0-72/lib/xz 8 /usr/src/linux-headers-4.15.0-72/lib/zlib_deflate 8 /usr/src/linux-headers-4.15.0-72/lib/zstd 16 /usr/src/linux-headers-4.15.0-72/lib/fonts 8 /usr/src/linux-headers-4.15.0-72/lib/raid6/test 20 /usr/src/linux-headers-4.15.0-72/lib/raid6 8 /usr/src/linux-headers-4.15.0-72/lib/842 8 /usr/src/linux-headers-4.15.0-72/lib/mpi 8 /usr/src/linux-headers-4.15.0-72/lib/zlib_inflate 228 /usr/src/linux-headers-4.15.0-72/lib 16 /usr/src/linux-headers-4.15.0-72/usr 115568 /usr/src/linux-headers-4.15.0-72 56 /usr/src/linux-headers-4.15.0-70-generic/tools/objtool/arch/x86/lib 268 /usr/src/linux-headers-4.15.0-70-generic/tools/objtool/arch/x86 272 /usr/src/linux-headers-4.15.0-70-generic/tools/objtool/arch 4648 /usr/src/linux-headers-4.15.0-70-generic/tools/objtool 4652 /usr/src/linux-headers-4.15.0-70-generic/tools 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hyperv 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/asus/nb 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/asus 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ad5592r 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dcache/word 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/dcache 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/spi/oc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/spi/pxa2xx 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/spi/slave/system 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/spi/slave 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/spi/zynqmp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/spi/axi/spi 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/spi/axi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/spi/lm70 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/spi/dw/mid 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/spi/dw 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/spi/loopback 48 /usr/src/linux-headers-4.15.0-70-generic/include/config/spi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/videobuf/dma 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/videobuf 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/vlan/8021q 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/vlan 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dp83640 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/wimax/debug 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/wimax/i2400m/debug 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/wimax/i2400m 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/wimax 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ezx 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/moxa 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dln2 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/soc/camera 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/soc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/bmp280 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rt2800usb 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/msi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/inotify 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ia32 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nfc/nxp/nci 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/nfc/nxp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nfc/pn533 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nfc/fdp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nfc/nci 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nfc/st/nci 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/nfc/st 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nfc/s3fwrn5 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nfc/pn544 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nfc/microread 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nfc/st21nfca 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nfc/mei 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nfc/mrvl 56 /usr/src/linux-headers-4.15.0-70-generic/include/config/nfc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/udf 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/oprofile/nmi 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/oprofile 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/xor 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nls/codepage 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nls/koi8 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nls/iso8859 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nls/mac 20 /usr/src/linux-headers-4.15.0-70-generic/include/config/nls 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/evm/extra/smack 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/evm/extra 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/evm/attr 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/evm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/tipc/media 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/tipc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/power/reset 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/power 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/8139too 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sgetmask 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/squashfs/file 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/squashfs/fragment/cache 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/squashfs/fragment 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/squashfs/decomp 20 /usr/src/linux-headers-4.15.0-70-generic/include/config/squashfs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rpcsec/gss 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/rpcsec 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ir/nec 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ir/xmp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ir/sharp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ir/ite 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ir/serial 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ir/rc5 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ir/jvc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ir/mce/kbd 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/ir/mce 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ir/sony 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ir/lirc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ir/sanyo 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ir/rc6 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ir/winbond 60 /usr/src/linux-headers-4.15.0-70-generic/include/config/ir 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/it8712f 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dmar 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/bnx2x 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ntb 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fs/dax 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fs/posix 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/fs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ksdazzle 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/kprobe 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/zx 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/perf/events/intel 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/perf/events 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/perf 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/no/hz 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/no 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ms5611 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/devtmpfs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rt2800pci 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/swiotlb 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/battery/twl4030 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/battery/bq27xxx 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/battery/gauge 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/battery 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/b44/pcicore 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/b44/pci 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/b44 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/scif 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rtc/intf 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rtc/systohc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rtc/mc146818 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rtc/i2c/and 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/rtc/i2c 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rtc/hctosys 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rtc/drv/rv3029 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rtc/drv/m41t80 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rtc/drv/ds1307 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rtc/drv/hid/sensor 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/rtc/drv/hid 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rtc/drv/ds3232 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rtc/drv/ds1374 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rtc/drv/ds1685 36 /usr/src/linux-headers-4.15.0-70-generic/include/config/rtc/drv 64 /usr/src/linux-headers-4.15.0-70-generic/include/config/rtc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/keyboard/gpio 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/keyboard/tm2 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/keyboard/dlink 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/keyboard/cros 20 /usr/src/linux-headers-4.15.0-70-generic/include/config/keyboard 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/crc/itu 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/crc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hdlc/raw 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/hdlc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nft/masq 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nft/dup 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nft/set 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nft/reject 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nft/fib 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nft/redir 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nft/fwd 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nft/chain/route 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nft/chain/nat 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/nft/chain 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nft/bridge 48 /usr/src/linux-headers-4.15.0-70-generic/include/config/nft 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/adfs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/vop 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/da9062 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/vmivme 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/max63xx 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/at76c50x 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ucsi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/lustre 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ibm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/altera/pr/ip 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/altera/pr 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/altera 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/firewire 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/unixware 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/tps68470/pmic 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/tps68470 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/int340x 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/cx 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/gpio/ml 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/gpio/gpio 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/gpio/generic 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/gpio/janz 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/gpio/crystal 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/gpio/104/dio 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/gpio/104/idi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/gpio/104/idio 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/gpio/104 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/gpio/whiskey 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/gpio/pci/idio 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/gpio/pci 52 /usr/src/linux-headers-4.15.0-70-generic/include/config/gpio 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/cardman 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rfd 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mcs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/brcmfmac/proto 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/brcmfmac 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/kxsd9 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/generic/msi/irq 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/generic/msi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/generic/calibrate 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/generic/irq/effective/aff 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/generic/irq/effective 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/generic/irq/matrix 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/generic/irq/reservation 20 /usr/src/linux-headers-4.15.0-70-generic/include/config/generic/irq 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/generic/strnlen 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/generic/adc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/generic/pending 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/generic/net 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/generic/time 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/generic/early 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/generic/clockevents/min 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/generic/clockevents 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/generic/isa 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/generic/strncpy/from 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/generic/strncpy 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/generic/cmos 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/generic/smp/idle 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/generic/smp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/generic/cpu 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/generic/find/first 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/generic/find 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/generic/pci 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/generic/bug/relative 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/generic/bug 116 /usr/src/linux-headers-4.15.0-70-generic/include/config/generic 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/htc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/stack 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/raid 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dp83848 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rdma 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/memstick/tifm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/memstick/jmicron 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/memstick/realtek 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/memstick 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rt2800/lib 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/rt2800 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ali 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/interval 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fw/cfg 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fw/loader/user 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/fw/loader 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/fw 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/defconfig 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/io/delay/type 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/io/delay 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/io 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/grace 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/has/ioport 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/has 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/signed/pe/file 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/signed/pe 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/signed 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ksz884x 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/lnet/xprt 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/lnet/max 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/lnet 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hysdn 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/cfq/group 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/cfq 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/w83627hf 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/aurora 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/key/dh 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/key 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/pcspkr 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mmu 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/smartjoyplus 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/processor 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/misdn 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/inline/write/unlock 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/inline/write 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/inline/read/unlock 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/inline/read 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/inline/spin/unlock 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/inline/spin 28 /usr/src/linux-headers-4.15.0-70-generic/include/config/inline 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/alienware 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/legacy/pty 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/legacy/vsyscall 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/legacy 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mpl115 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/file 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rtl 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sysfs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/device 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/da9063 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/cio 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/modify/ldt 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/modify 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/wm831x 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/intel/soc/pmic/chtdc 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/intel/soc/pmic 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/intel/soc/dts/iosf 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/intel/soc/dts 20 /usr/src/linux-headers-4.15.0-70-generic/include/config/intel/soc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/intel/turbo/max 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/intel/turbo 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/intel/iommu/floppy 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/intel/iommu 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/intel/bxtwc/pmic 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/intel/bxtwc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/intel/pch 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/intel/pmc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/intel/bxt/pmic 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/intel/bxt 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/intel/wmi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/intel/hid 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/intel/punit 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/intel/th 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/intel/mic/x100 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/intel/mic 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/intel/cht 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/intel/int0002 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/intel/mei 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/intel/xway 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/intel/ish 108 /usr/src/linux-headers-4.15.0-70-generic/include/config/intel 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sw 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fwtty/max/total 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fwtty/max/card 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/fwtty/max 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/fwtty 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/wil6210/isr 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/wil6210 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/max8925 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/lzo 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/lp8788 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/v4l2/mem2mem 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/v4l2/flash/led 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/v4l2/flash 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/v4l2 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/efs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/actisys 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/afs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rfs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hsu 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/netlink 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dynamic/ftrace/with 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/dynamic/ftrace 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/dynamic 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/gigaset 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ftrace/mcount 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/ftrace 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/icplus 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nortel 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/thunderbolt 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/network/phy 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/network 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/maxim 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/build 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/gfs2/fs/locking 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/gfs2/fs 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/gfs2 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hugetlb 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/logitech 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/irq/forced 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/irq/domain 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/irq/bypass 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/irq 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/slab/merge 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/slab/freelist 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/slab 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sysvipc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/encrypted 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hibernate 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ebc/c384 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/ebc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/lz4 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sonypi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/initramfs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dragonrise 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mlx5/core/en 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/mlx5/core 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mlx5/en 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/mlx5 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/memory/notifier/error 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/memory/notifier 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/memory/hotplug/default 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/memory/hotplug 20 /usr/src/linux-headers-4.15.0-70-generic/include/config/memory 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sp5100 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nsc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/capi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sys 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fsi/master 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/fsi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/virt/to 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/virt 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sbp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ixgbe 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/cec/platform 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/cec 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/pinctrl 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sxgbe 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rtlphydm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/qnx6fs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nic7018 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/eeepc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/regulator/userspace 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/regulator/qcom 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/regulator/arizona 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/regulator/virtual 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/regulator/fixed 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/regulator/mc13xxx 28 /usr/src/linux-headers-4.15.0-70-generic/include/config/regulator 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rsi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/twl6030 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/notifier/error 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/notifier 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ring/buffer/allow 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/ring/buffer 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/ring 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/microsemi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/orangefs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/context/switch 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/context 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rmi4/f03 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rmi4/2d 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/rmi4 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/bootparam/hardlockup/panic 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/bootparam/hardlockup 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/bootparam/hung/task/panic 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/bootparam/hung/task 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/bootparam/hung 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/bootparam/softlockup/panic 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/bootparam/softlockup 32 /usr/src/linux-headers-4.15.0-70-generic/include/config/bootparam 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/qfmt 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ipw2200 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/vhost 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/b43/pcicore 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/b43/phy 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/b43/bcma 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/b43/buses/bcma/and 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/b43/buses/bcma 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/b43/buses 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/b43/pci 32 /usr/src/linux-headers-4.15.0-70-generic/include/config/b43 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/default/io/delay 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/default/io 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/default/tcp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/default/mmap/min 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/default/mmap 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/default/hung/task 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/default/hung 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/default/security 36 /usr/src/linux-headers-4.15.0-70-generic/include/config/default 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ras 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/printk/safe/log/buf 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/printk/safe/log 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/printk/safe 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/printk 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fmc/write 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/fmc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/logirumblepad2 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/preempt 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/surface/pro3 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/surface/3 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/surface 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/probe 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/detect/hung 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/detect 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/national 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/aim 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/xfrm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/new 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ipmi/device 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ipmi/dmi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ipmi/proc 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/ipmi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hwpoison 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/migrate/vma 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/migrate 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/af/rxrpc 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/af 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/axp20x 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ntfs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/cifs/weak/pw 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/cifs/weak 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/cifs/dfs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/cifs/allow/insecure 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/cifs/allow 24 /usr/src/linux-headers-4.15.0-70-generic/include/config/cifs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/vt/console 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/vt/hw/console 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/vt/hw 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/vt 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/tcp/cong 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/tcp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rc/ati 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/rc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sched/stack/end 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/sched/stack 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sched/mc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sched/omit/frame 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/sched/omit 24 /usr/src/linux-headers-4.15.0-70-generic/include/config/sched 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/uts 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/carl9170 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/netxen 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/zpa2326 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ipc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/spi/nor/use/4k 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/spi/nor/use 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/spi/nor 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/spi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/redboot/directory 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/redboot 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/gpio 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/intel/vr 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/intel 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/complex 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/sm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/nand/diskonchip/probe 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/nand/diskonchip 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/nand/ecc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/nand/denali 20 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/nand 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/latch 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/sbc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/spinand 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/map/bank/width 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/map/bank 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/map 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/cmdline 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/onenand/verify 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/onenand/2x 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/onenand 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/mt81xx 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/block 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/gen 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/scb2 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/qinfo 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/cfi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/ar7 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/ubi/beb 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/ubi/wl 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/ubi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtd/dataflash 152 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtd 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/decnet/nf 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/decnet 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/common/clk/cs2000 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/common/clk 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/common 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hz 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hardlockup/check 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hardlockup/detector 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/hardlockup 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/strict/module 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/strict/kernel 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/strict 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/reset/attack 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/reset/ti 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/reset 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/irtty 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/gro 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ima/default/hash 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/ima/default 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ima/appraise 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ima/measure/pcr 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/ima/measure 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ima/ng 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ima/trusted 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ima/lsm 36 /usr/src/linux-headers-4.15.0-70-generic/include/config/ima 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/can/cc770 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/can/esd 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/can/sja1000 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/can/ems 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/can/janz 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/can/mcba 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/can/m 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/can/8dev 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/can/kvaser 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/can/calc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/can/peak 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/can/softing 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/can/ifi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/can/plx 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/can/c/can 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/can/c 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/can/gs 72 /usr/src/linux-headers-4.15.0-70-generic/include/config/can 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dwc/xlgmac 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/dwc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rtl8192c 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/reed/solomon 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/reed 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/affs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/batman/adv 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/batman 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/alim7101 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/cs4271 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/xtfpga 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/zx 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/generic/dmaengine 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/generic 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/bdw/rt5677 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/bdw 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/kbl/rt5663/rt5514/max98927 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/kbl/rt5663/rt5514 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/kbl/rt5663/max98927 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/kbl/rt5663 20 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/kbl 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/broadwell 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/sst 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/bxt/rt298 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/bxt/da7219/max98357a 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/bxt/da7219 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/bxt 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/haswell 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/bytcr/rt5660 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/bytcr/rt5651 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/bytcr/rt5640 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/bytcr 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/skl/rt286 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/skl/nau88l25/ssm4567 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/skl/nau88l25/max98357a 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/skl/nau88l25 20 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/skl 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/cht/bsw/rt5672 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/cht/bsw/max98090/ti 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/cht/bsw/max98090 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/cht/bsw/rt5645 20 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/cht/bsw 24 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/cht 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/byt/cht/es8316 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/byt/cht/da7213 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/byt/cht 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel/byt 136 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/intel 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/inno 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/pcm512x 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/sti 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/rt5514 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/i2c/and 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/i2c 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/ac97 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/msm8916/wcd 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/msm8916 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/cs42l51 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/adau1761 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/cs42xx8 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/ssm2602 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/imx 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/pcm179x 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/hdmi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/es8328 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/img/parallel 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/img/i2s 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/img/spdif 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/img/pistachio/internal 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/img/pistachio 24 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/img 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/pcm3168a 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/fsl 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/sirf/audio 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/sirf 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/acpi/intel 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/acpi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/amd/cz/rt5645 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/amd/cz 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/amd 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/hdac 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/tlv320aic23 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/adau 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/bt 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/wm8804 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/sigmadsp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc/rt5677 316 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/soc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/pcm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/verbose 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/firewire 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/dynamic 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/fm801/tea575x 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/fm801 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/atiixp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/sb 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/serial 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/via82xx 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/ac97/power/save 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/ac97/power 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/ac97 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/designware 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/compress 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/emu10k1 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/es1968 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/sst/ipc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/sst/atom/hifi2 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/sst/atom 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/sst 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/mixer 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/seq/midi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/seq/hrtimer 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/seq 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/support/old 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/support 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/dma 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/vx 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/synth 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/i2s/hi6210 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/i2s 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/max 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/mpu401 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/usb/caiaq 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/usb 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/oxygen 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/cs46xx/new 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/cs46xx 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/hda/power/save 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/hda/power 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/hda/codec/ca0132 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/hda/codec 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/hda/ext 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/hda/dsp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/hda/patch 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/hda/input/beep 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/hda/input 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/hda/prealloc 44 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/hda 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/simple/card 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/simple 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/opl3/lib 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/opl3 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/jack/input 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/jack 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/atmel 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/proc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/dmaengine 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd/maestro3 560 /usr/src/linux-headers-4.15.0-70-generic/include/config/snd 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/unix 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dmi/scan/machine/non/efi 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/dmi/scan/machine/non 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/dmi/scan/machine 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/dmi/scan 20 /usr/src/linux-headers-4.15.0-70-generic/include/config/dmi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/unwinder/frame 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/unwinder 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/myri10ge 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ib700 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/thinkpad/acpi/hotkey 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/thinkpad/acpi/alsa 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/thinkpad/acpi 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/thinkpad 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ti/am335x 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ti/cpsw 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/ti 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/bch/const 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/bch 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mlx/cpld 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/mlx 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sparse 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hotplug/pci/cpci 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hotplug/pci/acpi 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/hotplug/pci 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/hotplug 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/prism2 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/qcom/spmi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/qcom/vadc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/qcom/hidma 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/qcom 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sensors/ibm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sensors/sch56xx 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sensors/ltc2978 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sensors/mc13783 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sensors/hmc5843 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sensors/via 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sensors/menf21bmc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sensors/dell 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sensors/lis3 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sensors/ntc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sensors/da9052 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sensors/iio 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sensors/acpi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sensors/i5k 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sensors/fam15h 72 /usr/src/linux-headers-4.15.0-70-generic/include/config/sensors 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sctp/default/cookie/hmac 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/sctp/default/cookie 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/sctp/default 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sctp/cookie/hmac 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/sctp/cookie 24 /usr/src/linux-headers-4.15.0-70-generic/include/config/sctp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/irda/fast 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/irda/cache/last 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/irda/cache 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/irda 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usbip/vhci/hc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usbip/vhci/nr 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/usbip/vhci 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/usbip 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/autofs4 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/serial/altera/uart 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/serial/altera 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/serial/8250/runtime 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/serial/8250/share 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/serial/8250/men 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/serial/8250/nr 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/serial/8250/many 24 /usr/src/linux-headers-4.15.0-70-generic/include/config/serial/8250 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/serial/kgdb 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/serial/dev/ctrl 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/serial/dev 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/serial/rp2/nr 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/serial/rp2 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/serial/core 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/serial/fsl 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/serial/men 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/serial/sc16is7xx 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/serial/sccnxp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/serial/arc/nr 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/serial/arc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/serial/uartlite/nr 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/serial/uartlite 92 /usr/src/linux-headers-4.15.0-70-generic/include/config/serial 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/aix 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ina2xx 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/radio 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/das08 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/addi/apci 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/addi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/8255 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/amplc/pc236 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/amplc/dio200 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/amplc/pc263 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/amplc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/gsc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/default/buf/size 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/default/buf/maxsize 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/default/buf 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/default 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/quatech/daqp 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/quatech 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/cb/das16 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/cb 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/ni/daq/dio24 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/ni/daq/700 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/ni/daq 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/ni/labpc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/ni/at 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/ni/mio 28 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/ni 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/adv/pci 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/adv 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/jr3 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/aio/iiro 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/aio/aio12 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/aio 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/contec/pci 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/contec 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/isa 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/icp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/ii 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/misc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/me 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/dyna 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/pcmcia 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/usb 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/pci 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/ke 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi/adl 176 /usr/src/linux-headers-4.15.0-70-generic/include/config/comedi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/exofs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/iwlwifi/device 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/iwlwifi/opmode 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/iwlwifi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/cc10001 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/pps/client 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/pps 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/be2net 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/packet 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sysv 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/jffs2/fs/posix 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/jffs2/fs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/jffs2/cmode 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/jffs2/compression 20 /usr/src/linux-headers-4.15.0-70-generic/include/config/jffs2 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ie6xx 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/parport/not 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/parport/pc 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/parport 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sunrpc/xprt 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/sunrpc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/clz 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/anon 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mpls 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hostap/firmware 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/hostap 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/async/tx 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/async/raid6 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/async 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rds 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dst 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/i6300esb 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/wireless 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/bcm/kona/usb2 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/bcm/kona 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/bcm/net 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/bcm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mspro 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ad525x/dpot 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/ad525x 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/atm/idt77252/use 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/atm/idt77252 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/atm/he/use 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/atm/he 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/atm/fore200e/tx 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/atm/fore200e 28 /usr/src/linux-headers-4.15.0-70-generic/include/config/atm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ptp/1588/clock 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/ptp/1588 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/ptp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/viperboard 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/iommu 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ath5k 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/thread/info/in 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/thread/info 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/thread 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/mod/arch 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/mod 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/perf/events 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/perf/user/stack 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/perf/user 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/perf 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/gcc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/generic 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/stack 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/mixed/breakpoints 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/mixed 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/pcspkr 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/intel 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/dynamic/ftrace/with 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/dynamic/ftrace 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/dynamic 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/ftrace/mcount 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/ftrace 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/irq/exit/on/irq 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/irq/exit/on 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/irq/exit 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/irq/time 20 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/irq 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/memory 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/virt/cpu/accounting 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/virt/cpu 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/virt 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/cmpxchg 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/context 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/ioremap 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/reliable 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/hardlockup/detector 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/hardlockup 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/unstable/sched 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/unstable 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/syscall 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/kprobes/on 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/kprobes 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/hardened/usercopy 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/hardened 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/cc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/exit 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/net 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/regs/and/stack/access 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/regs/and/stack 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/regs/and 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/regs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/efficient/unaligned 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/efficient 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/kernel 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/debug 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/memblock/node 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/memblock 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/kvm/irq 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/kvm/cpu/relax 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/kvm/cpu 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/kvm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/clk 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/dma/api 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/dma 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/ebpf 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/acpi/apei 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/acpi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/copy/thread 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/copy 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/hw 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/c 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/bootmem/info 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/bootmem 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/user/return 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/user 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/arch/huge 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/arch/mmap/rnd/compat 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/arch/mmap/rnd 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/arch/mmap 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/arch/soft 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/arch/vmap 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/arch/compat/mmap 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/arch/compat 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/arch/seccomp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/arch/jump 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/arch/within/stack 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/arch/within 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/arch/transparent/hugepage 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/arch/transparent 60 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/arch 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/rcu/table 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/rcu 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/setup/per/cpu 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/setup/per 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/setup 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/mmiotrace 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/aligned/struct 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/aligned 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/function/graph 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/have/function 388 /usr/src/linux-headers-4.15.0-70-generic/include/config/have 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/vlsi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/integrity/trusted 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/integrity/asymmetric 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/integrity 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hsi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/lru 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/balloon 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ucb1400 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/thrustmaster 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/kgdb/serial 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/kgdb/low/level 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/kgdb/low 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/kgdb 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/tcm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/i2c/cbus 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/i2c/nforce2 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/i2c/parport 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/i2c/pca 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/i2c/diolan 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/i2c/designware 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/i2c/mux 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/i2c/tiny 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/i2c/taos 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/i2c/helper 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/i2c/amd 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/i2c/cht 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/i2c/amd756 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/i2c/robotfuzz 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/i2c/cros/ec 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/i2c/cros 68 /usr/src/linux-headers-4.15.0-70-generic/include/config/i2c 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/macintosh 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/lte 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hwmon 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/holtek 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mlx4/core 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mlx4/en 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/mlx4 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/optimize 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/aic7xxx/reg/pretty 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/aic7xxx/reg 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/aic7xxx/reset/delay 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/aic7xxx/reset 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/aic7xxx/cmds/per 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/aic7xxx/cmds 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/aic7xxx/debug 32 /usr/src/linux-headers-4.15.0-70-generic/include/config/aic7xxx 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sfc/mcdi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sfc/falcon 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/sfc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/lockup 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/check 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/init/env/arg 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/init/env 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/init 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ac97 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/pccard 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/efi/vars 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/efi/runtime 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/efi/capsule 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/efi/dev/path 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/efi/dev 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/efi/signature/list 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/efi/signature 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/efi/bootloader 36 /usr/src/linux-headers-4.15.0-70-generic/include/config/efi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/uprobe 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/platform 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/atari 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/soft/watchdog 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/soft 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/inet6/xfrm/mode 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/inet6/xfrm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/inet6/esp 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/inet6 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/bfq/group 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/bfq 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/zeroplus 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/regmap 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/zlib 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sbc/epx/c3 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/sbc/epx 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sbc/fitpc2 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/sbc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/da9150 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nodes/span/other 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/nodes/span 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/nodes 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/kempld 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/wiznet/bus 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/wiznet/w5100 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/wiznet 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hmm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/wilc1000/hw/oob 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/wilc1000/hw 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/wilc1000 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/thin 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/secondary/trusted 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/secondary 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rionet/tx 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rionet/rx 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/rionet 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/idle/page 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/idle 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fib 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/bpf/jit/always 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/bpf/jit 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/bpf/stream 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/bpf 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/machz 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/instruction 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/calgary/iommu/enabled/by 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/calgary/iommu/enabled 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/calgary/iommu 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/calgary 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/font/acorn 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/font 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/zone 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dp83867 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ncp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/message/loglevel 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/message 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mcb 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/suspend 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sms/usb 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sms/sdio 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sms/siano 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/sms 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/clkbld 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/video/au0828 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/video/ir 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/video/cx18 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/video/ivtv 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/video/v4l2/subdev 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/video/v4l2 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/video/cafe 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/video/saa7146 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/video/fb 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/video/via 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/video/sony/btf 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/video/sony 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/video/em28xx 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/video/mem2mem 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/video/vivid/max 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/video/vivid 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/video/stk1160 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/video/saa7134 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/video/zoran 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/video/sh 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/video/hexium 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/video/pvrusb2 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/video/cx231xx 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/video/cx88/enable 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/video/cx88 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/video/tm6000 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/video/cx25821 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/video/go7007/usb/s2250 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/video/go7007/usb 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/video/go7007 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/video/pci 128 /usr/src/linux-headers-4.15.0-70-generic/include/config/video 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fcoe 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fb/carillo 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fb/savage 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fb/aty128 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fb/intel 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fb/pm2/fifo 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/fb/pm2 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fb/sys 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fb/auo 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fb/cfb 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fb/s3 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fb/tft/agm1264k 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fb/tft/fbtft 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/fb/tft 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fb/cyber2000 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fb/via/x 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/fb/via 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fb/carmine/dram 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/fb/carmine 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fb/mode 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fb/radeon 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fb/sis 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fb/riva 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fb/matrox 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fb/boot/vesa 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/fb/boot 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fb/aty 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fb/nvidia 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fb/mb862xx/pci 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/fb/mb862xx 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fb/deferred 124 /usr/src/linux-headers-4.15.0-70-generic/include/config/fb 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/vmap 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fanotify/access 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/fanotify 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rtl8xxxu 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/smc/ircc 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/smc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/thp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ade7854 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/p54 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ldisc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/via/rhine 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/via 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/cfag12864b 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/chelsio/t4 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/chelsio/t1 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/chelsio 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/associative 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/bsd/process/acct 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/bsd/process 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/bsd 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nvme/target 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/nvme 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/kprobes/on 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/kprobes 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/stm/source 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/stm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hfsplus/fs/posix 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/hfsplus/fs 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/hfsplus 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/high/res 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/high 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/trace/irqflags 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/trace 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hardened 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/need/multiple 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/need/per/cpu/embed/first 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/need/per/cpu/embed 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/need/per/cpu/page/first 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/need/per/cpu/page 20 /usr/src/linux-headers-4.15.0-70-generic/include/config/need/per/cpu 24 /usr/src/linux-headers-4.15.0-70-generic/include/config/need/per 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/need/sg/dma 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/need/sg 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/need/dma/map 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/need/dma 48 /usr/src/linux-headers-4.15.0-70-generic/include/config/need 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ippp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nv 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/extcon/intel/cht 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/extcon/intel 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/extcon/usbc/cros 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/extcon/usbc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/extcon/adc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/extcon/usb 28 /usr/src/linux-headers-4.15.0-70-generic/include/config/extcon 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sony 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ufs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/at803x 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/cc/optimize/for 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/cc/optimize 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/cc/stackprotector 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/cc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dev/dax 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/dev 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/phys/addr/t 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/phys/addr 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/phys 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/netconsole 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nouveau/legacy/ctx 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/nouveau/legacy 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nouveau/debug 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/nouveau 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/it87 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/section/mismatch/warn 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/section/mismatch 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/section 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/logig940 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/base 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fair/group 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/fair 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/videobuf2/dma 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/videobuf2 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/qnx4fs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/b53/spi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/b53/srab 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/b53/mmap 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/b53/mdio 20 /usr/src/linux-headers-4.15.0-70-generic/include/config/b53 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/net/ematch 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/net/udp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/net/team/mode 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/net/team 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/net/packet 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/net/mpls 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/net/ptp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/net/fou/ip 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/net/fou 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/net/l3/master 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/net/l3 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/net/drop 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/net/ipgre 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/net/sch/fq 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/net/sch 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/net/dsa/mv88e6xxx 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/net/dsa/tag/brcm 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/net/dsa/tag 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/net/dsa/smsc/lan9303 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/net/dsa/smsc 24 /usr/src/linux-headers-4.15.0-70-generic/include/config/net/dsa 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/net/act/tunnel 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/net/act 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/net/ip 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/net/rx/busy 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/net/rx 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/net/cls 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/net/9p 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/net/vendor 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/net/poll 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/net/flow 128 /usr/src/linux-headers-4.15.0-70-generic/include/config/net 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/greenasia 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/microchip/ksz/spi 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/microchip/ksz 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/microchip 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/logiwheels 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/twl6040 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtrr/sanitizer/enable 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtrr/sanitizer/spare/reg/nr 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtrr/sanitizer/spare/reg 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtrr/sanitizer/spare 20 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtrr/sanitizer 24 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtrr 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rfkill 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/tekram 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/104/quad 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/104 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/page/table 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/page 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/xillybus 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/devfreq/gov/simple 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/devfreq/gov 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/devfreq 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/cross/memory 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/cross 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sound/oss 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/sound 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/leds/wm831x 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/leds/intel 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/leds/pca955x 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/leds/lp55xx 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/leds/brightness/hw 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/leds/brightness 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/leds/class 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/leds/clevo 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/leds/pca9532 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/leds/trigger/default 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/leds/trigger 48 /usr/src/linux-headers-4.15.0-70-generic/include/config/leds 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nvdimm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/f71808e 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ziirave 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/edd 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/musb/pio 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/musb 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/greybus/bridged 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/greybus 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ttpci 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ip/multiple 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ip/set/bitmap 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ip/set/list 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ip/set/hash 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/ip/set 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ip/route 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ip/fib/trie 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/ip/fib 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ip/vs/pe 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ip/vs/proto/ah 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/ip/vs/proto 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ip/vs/sh/tab 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/ip/vs/sh 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ip/vs/tab 28 /usr/src/linux-headers-4.15.0-70-generic/include/config/ip/vs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ip/nf/arp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ip/nf/match 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ip/nf/target 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/ip/nf 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ip/advanced 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ip/pimsm 88 /usr/src/linux-headers-4.15.0-70-generic/include/config/ip 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/qsemi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/da9055 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/slub/cpu 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/slub/memcg/sysfs 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/slub/memcg 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/slub 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/int3406 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/de2104x 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/amd8111 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fusion/max 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/fusion 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/atlas/ph 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/atlas 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/tifm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/prevent/firmware 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/prevent 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/module/srcversion 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/module/sig 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/module 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/pmc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/split/ptlock 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/split 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/teranetics 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/btrfs/fs/posix 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/btrfs/fs 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/btrfs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/security/perf/events 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/security/perf 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/security/tomoyo/activation 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/security/tomoyo/policy 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/security/tomoyo/max/accept 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/security/tomoyo/max/audit 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/security/tomoyo/max 24 /usr/src/linux-headers-4.15.0-70-generic/include/config/security/tomoyo 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/security/network 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/security/default/display 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/security/default 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/security/apparmor/bootparam 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/security/apparmor/hash 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/security/apparmor 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/security/smack/append 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/security/smack 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/security/selinux/bootparam 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/security/selinux/checkreqprot 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/security/selinux/avc 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/security/selinux 84 /usr/src/linux-headers-4.15.0-70-generic/include/config/security 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mlxsw/core 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mlxsw/spectrum 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/mlxsw 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/menf21bmc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/early/printk 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/early 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/toshiba/bt 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/toshiba 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/input/soc/button 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/input/soc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/input/gpio/tilt 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/input/gpio/rotary 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/input/gpio 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/input/max8997 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/input/drv2665 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/input/da9063 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/input/wm831x 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/input/max8925 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/input/cma3000 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/input/regulator 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/input/e3x0 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/input/axp20x 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/input/ims 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/input/88pm860x 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/input/mc13783 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/input/keyspan 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/input/arizona 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/input/twl6040 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/input/da9055 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/input/atlas 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/input/drv2667 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/input/xen/kbddev 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/input/xen 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/input/max77693 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/input/pcf50633 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/input/ad714x 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/input/palmas 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/input/drv260x 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/input/da9052 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/input/mousedev/screen 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/input/mousedev 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/input/adxl34x 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/input/twl4030 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/input/ff 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/input/ati 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/input/88pm80x 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/input/retu 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/input/ideapad 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/input/pwm 168 /usr/src/linux-headers-4.15.0-70-generic/include/config/input 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dlci 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/load/uefi 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/load 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/quotactl 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/virtio/blk 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/virtio/mmio/cmdline 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/virtio/mmio 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/virtio/vsockets 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/virtio/pci 24 /usr/src/linux-headers-4.15.0-70-generic/include/config/virtio 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/surface3 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/lcd/class 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/lcd 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/liquidio 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nvm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ad/sigma 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/ad 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/blk/sed 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/blk/dev/ram 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/blk/dev/io 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/blk/dev/loop/min 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/blk/dev/loop 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/blk/dev/pciessd 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/blk/dev/dm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/blk/dev/3w/xxxx 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/blk/dev/3w 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/blk/dev/null 40 /usr/src/linux-headers-4.15.0-70-generic/include/config/blk/dev 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/blk/cmdline 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/blk/scsi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/blk/debug 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/blk/mq 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/blk/wbt 68 /usr/src/linux-headers-4.15.0-70-generic/include/config/blk 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/xz/dec 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/xz 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/acquire 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/cpu5 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/tablet/serial 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/tablet/usb 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/tablet 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/pkcs7/message 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/pkcs7/test 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/pkcs7 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fscache 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/compal 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/broadcom 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mma7455 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ultrix 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/lwtunnel 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/clocksource/validate/last 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/clocksource/validate 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/clocksource 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/lockdep 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rtllib/crypto 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/rtllib 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/pcie/dw 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/pcie 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/tasks 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/futex 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/pnfs/file 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/pnfs/flexfile 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/pnfs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/pstore/zlib 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/pstore 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/gpiolib 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/extra 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/paride 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nf/conntrack/netbios 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/nf/conntrack 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nf/dup 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nf/reject 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nf/tables 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nf/defrag 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nf/log 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nf/socket 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nf/ct/proto 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nf/ct/netlink 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/nf/ct 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nf/nat/masquerade 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nf/nat/proto 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nf/nat/snmp 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/nf/nat 64 /usr/src/linux-headers-4.15.0-70-generic/include/config/nf 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/openvswitch 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/amiga 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hdmi/lpe 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/hdmi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/lattice/ecp3 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/lattice 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/litelink 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rtlwifi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ieee802154/at86rf230 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ieee802154/ca8210 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/ieee802154 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dscc4/pci 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/dscc4 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/lirc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/wl1251 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/iosched 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/illegal/pointer 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/illegal 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/cls/u32 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/cls 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rtlhalmac 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/f2fs/fs/posix 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/f2fs/fs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/f2fs/stat 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/f2fs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/pda 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/img/ascii 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/img 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/xen/netdev 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/xen/sys 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/xen/grant/dev 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/xen/grant 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/xen/blkdev 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/xen/have 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/xen/balloon/memory/hotplug 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/xen/balloon/memory 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/xen/balloon 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/xen/mce 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/xen/pv 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/xen/dev 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/xen/pcidev 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/xen/fbdev 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/xen/save 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/xen/compat 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/xen/pvcalls 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/xen/scsi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/xen/xenbus 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/xen/acpi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/xen/scrub 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/xen/pvhvm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/xen/auto 96 /usr/src/linux-headers-4.15.0-70-generic/include/config/xen 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/paravirt 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mutex/spin/on 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/mutex/spin 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/mutex 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/core/dump/default/elf 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/core/dump/default 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/core/dump 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/core 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ath 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hangcheck 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dummy/console 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/dummy 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/cmdline 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dell/uart 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dell/wmi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dell/smbios 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/dell 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/radix/tree 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/radix 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/bcm7xxx 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/pcf50633 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/phy/cpcap 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/phy/qcom/usb 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/phy/qcom 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/phy/pxa/28nm 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/phy/pxa 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/phy/samsung 28 /usr/src/linux-headers-4.15.0-70-generic/include/config/phy 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/agp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/speakup/synth 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/speakup 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/compat/netlink 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/compat/old 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/compat/for/u64 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/compat/for 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/compat/binfmt 24 /usr/src/linux-headers-4.15.0-70-generic/include/config/compat 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/9p/fs/posix 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/9p/fs 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/9p 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/torture 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nd 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/aes/ni 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/aes/x86 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/aes 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/poly1305/x86 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/poly1305 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/michael 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/ablk 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/crct10dif 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/cast 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/ghash/clmul/ni 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/ghash/clmul 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/ghash 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/dev/qat 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/dev/ccp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/dev/padlock 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/dev/nitrox 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/dev/sp 24 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/dev 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/sha1 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/sha512 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/ansi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/crc32 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/cast6/avx/x86 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/cast6/avx 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/cast6 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/camellia/aesni/avx2/x86 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/camellia/aesni/avx2 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/camellia/aesni/avx/x86 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/camellia/aesni/avx 20 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/camellia/aesni 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/camellia/x86 28 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/camellia 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/des3/ede/x86 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/des3/ede 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/des3 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/serpent/avx2/x86 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/serpent/avx2 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/serpent/sse2/x86 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/serpent/sse2 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/serpent/avx/x86 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/serpent/avx 28 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/serpent 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/twofish/x86/64 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/twofish/x86 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/twofish/avx/x86 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/twofish/avx 20 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/twofish 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/glue/helper 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/glue 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/blowfish/x86 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/blowfish 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/sha256 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/rng 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/user/api 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/user 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/hash 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/manager/disable 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/manager 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/chacha20/x86 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/chacha20 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/cast5/avx/x86 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/cast5/avx 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/cast5 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/crc32c 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto/drbg 264 /usr/src/linux-headers-4.15.0-70-generic/include/config/crypto 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/allow/dev 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/allow/lockdown/lift/by 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/allow/lockdown/lift 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/allow/lockdown 20 /usr/src/linux-headers-4.15.0-70-generic/include/config/allow 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/cypress 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ks959 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hdm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/bcma/driver/gmac 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/bcma/driver 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/bcma/host/pci 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/bcma/host 20 /usr/src/linux-headers-4.15.0-70-generic/include/config/bcma 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/x25 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/iosf/mbi 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/iosf 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/airo 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mwifiex 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/persistent 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/kernel 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/pmic 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/pid 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/tigon3 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/qlcnic 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/wm8350 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/minix 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/wmi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/chrome 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/tick/cpu 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/tick 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/lxt 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/cfs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/output 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/vga/arb/max 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/vga/arb 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/vga 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hermes/cache/fw/on 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/hermes/cache/fw 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/hermes/cache 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/hermes 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/crc32 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mxm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/stacktrace 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/isa/bus 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/isa/dma 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/isa 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mouse/elan/i2c 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/mouse/elan 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mouse/ps2/synaptics 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/mouse/ps2 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mouse/synaptics 24 /usr/src/linux-headers-4.15.0-70-generic/include/config/mouse 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/block 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ath9k/btcoex 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ath9k/htc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ath9k/common 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ath9k/channel 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ath9k/station 24 /usr/src/linux-headers-4.15.0-70-generic/include/config/ath9k 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ubifs/fs 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/ubifs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/yenta/ene 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/yenta 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/cadence 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/syn 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/topstar 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hpwdt/nmi 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/hpwdt 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ena 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/w83977f 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mpu3050 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dptf 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/palmas 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/men/a21 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/men/z188 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/men 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nftl 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/cpumask 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/wdat 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/version 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/spi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/qla 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/bnx2x 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/qlogic 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/cxgb3 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/future 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/dpt 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/ipr 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/bnx2 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/scan 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/bfa 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/eata/tagged 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/eata/linked 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/eata/max 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/eata 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/chelsio 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/ufs/dwc/tc 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/ufs/dwc 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/ufs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/srp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/osd/dprint 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/osd 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/lowlevel 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/sas/host 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/sas 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/fc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/ufshcd 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/3w 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/cxgb4 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/mpt2sas/max 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/mpt2sas 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/iscsi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/sym53c8xx/default 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/sym53c8xx/dma/addressing 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/sym53c8xx/dma 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/sym53c8xx/max 20 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/sym53c8xx 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/dh/hp 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/dh 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/proc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/mpt3sas/max 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi/mpt3sas 172 /usr/src/linux-headers-4.15.0-70-generic/include/config/scsi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/w83877f 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/tree 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/cgroup/net 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/cgroup 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sysctl/exception 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/sysctl 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/tracer/max 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/tracer 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nr 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/framebuffer/console/detect 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/framebuffer/console 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/framebuffer 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ab3100 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hpet/mmap 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hpet/emulate 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/hpet 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/vitesse 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/drm/analogix 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/drm/i915/capture 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/drm/i915/compress 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/drm/i915/gvt 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/drm/i915 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/drm/i2c/nxp 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/drm/i2c 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/drm/kms/fb 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/drm/kms/cma 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/drm/kms 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/drm/nouveau 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/drm/mipi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/drm/fbdev 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/drm/amdgpu 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/drm/load/edid 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/drm/load 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/drm/gem/cma 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/drm/gem 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/drm/virtio 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/drm/cirrus 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/drm/panel/raspberrypi 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/drm/panel 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/drm/amd/dc/pre 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/drm/amd/dc/dcn1 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/drm/amd/dc 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/drm/amd 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/drm/dp/aux 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/drm/dp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/drm/vmwgfx 120 /usr/src/linux-headers-4.15.0-70-generic/include/config/drm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ncpfs/ioctl 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ncpfs/packet 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ncpfs/nfs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ncpfs/os2 20 /usr/src/linux-headers-4.15.0-70-generic/include/config/ncpfs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/libertas/thinfirm 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/libertas 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/cb710/debug 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/cb710 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/thermal/gov/power 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/thermal/gov/step 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/thermal/gov/fair 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/thermal/gov/bang 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/thermal/gov/user 24 /usr/src/linux-headers-4.15.0-70-generic/include/config/thermal/gov 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/thermal/default/gov/step 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/thermal/default/gov 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/thermal/default 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/thermal/emergency/poweroff/delay 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/thermal/emergency/poweroff 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/thermal/emergency 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/thermal/writable 56 /usr/src/linux-headers-4.15.0-70-generic/include/config/thermal 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/clkevt 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/numa/balancing/default 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/numa/balancing 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/numa 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/debug 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/silead 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/efivar 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/buildtime/extable 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/buildtime 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/baycom/ser 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/baycom 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/zstd 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rtl8723 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hpfs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rt2x00/lib 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/rt2x00 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/alim1535 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/davicom 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/old/belkin 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/old 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/toim3232 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mantis 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fpga/mgr/altera/ps 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/fpga/mgr/altera 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fpga/mgr/xilinx 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/fpga/mgr 20 /usr/src/linux-headers-4.15.0-70-generic/include/config/fpga 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/eeprom/idt 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/eeprom 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/randomize/memory/physical 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/randomize/memory 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/randomize 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hsa 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/netup 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/au8522 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/dynamic 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/b2c2/flexcop 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/b2c2 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/tuner 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/zd1301 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/platform 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/rtl2832 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/gp8psk 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/budget 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/max 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/usb/af9005 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/usb/technisat 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/usb/umt 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/usb/cinergy 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/usb/dibusb 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/usb/nova/t 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/usb/nova 32 /usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/usb 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/as102 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/av7110 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/ttusb 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dvb/firedtv 100 /usr/src/linux-headers-4.15.0-70-generic/include/config/dvb 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/skge 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/big 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/b43legacy/pcicore 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/b43legacy/dma/and/pio 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/b43legacy/dma/and 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/b43legacy/dma 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/b43legacy/pci 24 /usr/src/linux-headers-4.15.0-70-generic/include/config/b43legacy 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/panic/on/oops 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/panic/on 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/panic 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/panel 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ma600 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/karma 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fujitsu 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/solaris/x86 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/solaris 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/partition 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/eurotech 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/da9052 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/advise 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/bmc150/magn 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/bmc150/accel 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/bmc150 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/micrel 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/uwb 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/clkdev 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/thunder/nic 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/thunder 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sysv68 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ad5624r 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dm/multipath 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dm/thin 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dm/cache 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dm/persistent 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dm/log 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dm/bio 28 /usr/src/linux-headers-4.15.0-70-generic/include/config/dm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ad7606/iface 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/ad7606 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/omfs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/misc/rtsx 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/misc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/trusted 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/configfs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/task/io 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/task/delay 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/task 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hid/hyperv 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hid/sensor/device 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hid/sensor/custom 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hid/sensor/magnetometer 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hid/sensor/inclinometer 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hid/sensor/gyro 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hid/sensor/iio 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hid/sensor/accel 32 /usr/src/linux-headers-4.15.0-70-generic/include/config/hid/sensor 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hid/udraw 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hid/battery 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hid/ems 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hid/logitech 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hid/picolcd 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hid/betop 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hid/acrux 68 /usr/src/linux-headers-4.15.0-70-generic/include/config/hid 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/bcm87xx 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/raw 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/kingsun 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/md 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/gact 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nfp/app 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/nfp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/binary 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hisax/sct 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hisax/netjet 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hisax/fritz 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hisax/16 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hisax/enternow 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hisax/sedlbauer 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hisax/teles 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hisax/max 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hisax/avm/a1 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/hisax/avm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hisax/bkm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hisax/elsa 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hisax/hfc 56 /usr/src/linux-headers-4.15.0-70-generic/include/config/hisax 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sata/dwc/old 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/sata/dwc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sata/mobile/lpm 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/sata/mobile 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sata/ahci 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sata/acard 28 /usr/src/linux-headers-4.15.0-70-generic/include/config/sata 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/peaq 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/kvm/generic/dirtylog/read 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/kvm/generic/dirtylog 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/kvm/generic 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/kvm/async 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/kvm/debug 24 /usr/src/linux-headers-4.15.0-70-generic/include/config/kvm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nop/usb 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/nop 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fixed 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/console/loglevel 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/console 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/queued 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/pata/cmd640 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/pata/pdc 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/pata 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arcnet/rim 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arcnet/com20020 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/arcnet 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/cramfs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/macb/use 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/macb 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sg 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/tracing/events 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/tracing 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/vfio/iommu 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/vfio/mdev 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/vfio/pci 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/vfio 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/wm831x 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/intel/lpss 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/intel/quark/i2c 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/intel/quark 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/intel 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/axp20x 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/si476x 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/sm501 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/janz 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/ti/am335x 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/ti 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/wl1273 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/sec 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/arizona 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/tps65912 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/aat2870 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/wm8350 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/da9052 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/twl4030 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/mc13xxx 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/cros/ec 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/mfd/cros 92 /usr/src/linux-headers-4.15.0-70-generic/include/config/mfd 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/iwlegacy 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/microcode/old 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/microcode 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/target 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/itco/vendor 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/itco 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/adt7316 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/board 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/plx 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/aufs/br 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/aufs/ino/t 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/aufs/ino 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/aufs/bdev 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/aufs/branch/max 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/aufs/branch 28 /usr/src/linux-headers-4.15.0-70-generic/include/config/aufs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/pantherlord 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hfs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/magic/sysrq/default 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/magic/sysrq 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/magic 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/xfs/posix 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/xfs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/boot/printk 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/boot 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/clk 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/uefi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/pmem/legacy 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/pmem 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/io 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/intel/tsx/mode 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/intel/tsx 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/intel/memory/protection 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/intel/memory 20 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/intel 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/vsyscall 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/bootparam/memory/corruption 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/bootparam/memory 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/bootparam 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/speedstep 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/l1/cache 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/l1 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/supports/memory 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/supports 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/p4 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/check/bios 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/check 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/platform 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/internode/cache 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/internode 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/mce 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/need 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/feature 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/dev/dma 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/dev 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/fast/feature 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/fast 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/powernow 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/pkg/temp 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/pkg 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/thermal 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/debug 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/minimum/cpu 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/minimum 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/reserve 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/extended 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/acpi/cpufreq 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/acpi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/amd/freq 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/amd/platform 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/amd 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/mcelog 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/reroute/for/broken/boot 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/reroute/for/broken 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/reroute/for 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/reroute 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/pcc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/ptdump 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/pm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/local 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/direct 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/64/acpi 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86/64 228 /usr/src/linux-headers-4.15.0-70-generic/include/config/x86 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ipack 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/log/buf 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/log/cpu/max/buf 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/log/cpu/max 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/log/cpu 20 /usr/src/linux-headers-4.15.0-70-generic/include/config/log 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/iio/buffer 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/iio/sysfs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/iio/sw 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/iio/st/sensors 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/iio/st/lsm6dsx 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/iio/st/magn/spi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/iio/st/magn/i2c 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/iio/st/magn 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/iio/st/gyro/spi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/iio/st/gyro/i2c 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/iio/st/gyro 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/iio/st/accel/spi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/iio/st/accel/i2c 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/iio/st/accel 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/iio/st/press 52 /usr/src/linux-headers-4.15.0-70-generic/include/config/iio/st 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/iio/kfifo 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/iio/consumers/per 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/iio/consumers 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/iio/adis/lib 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/iio/adis 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/iio/ssp/sensors 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/iio/ssp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/iio/tightloop 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/iio/triggered 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/iio/simple 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/iio/interrupt 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/iio/hrtimer 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/iio/cros/ec/sensors 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/iio/cros/ec/light 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/iio/cros/ec/accel 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/iio/cros/ec 20 /usr/src/linux-headers-4.15.0-70-generic/include/config/iio/cros 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/iio/ms/sensors 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/iio/ms 144 /usr/src/linux-headers-4.15.0-70-generic/include/config/iio 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/punit/atom 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/punit 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/i8253 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mmc/sdricoh 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mmc/via 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mmc/tifm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mmc/toshiba 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mmc/block 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mmc/sdhci 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mmc/ricoh 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mmc/realtek 36 /usr/src/linux-headers-4.15.0-70-generic/include/config/mmc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/cw1200/wlan 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/cw1200 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ldm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sock/cgroup 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/sock 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/brcm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dma/shared 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dma/engine 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dma/virt 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dma/virtual 20 /usr/src/linux-headers-4.15.0-70-generic/include/config/dma 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/kallsyms/absolute 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/kallsyms/base 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/kallsyms 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/firmware/in 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/firmware 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/vfat 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/softlockup 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dp83822 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hypervisor 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/bmg160 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ipw2100 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/igb 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/coda 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rt 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/qtnfmac/pearl 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/qtnfmac 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/raid6 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/kexec/verify 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/kexec/bzimage/verify 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/kexec/bzimage 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/kexec 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/adjd 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/unisys 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/renesas 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/audit 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/unused 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/twl4030 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/infiniband/qib 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/infiniband/on/demand 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/infiniband/on 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/infiniband/addr/trans 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/infiniband/addr 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/infiniband/ipoib 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/infiniband/opa 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/infiniband/bnxt 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/infiniband/user 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/infiniband/vmware 44 /usr/src/linux-headers-4.15.0-70-generic/include/config/infiniband 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/asymmetric/key 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/asymmetric/public/key 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/asymmetric/public 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/asymmetric 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/textsearch 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/crash 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/pdc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dwmac 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ath10k 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/lidar/lite 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/lidar 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/may/use 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/may 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/qed 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dw/dmac 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/dw 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/c2port/duramar 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/c2port 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/wq/power/efficient 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/wq/power 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/wq 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nfs/acl 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nfs/v4/1/implementation/id 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/nfs/v4/1/implementation 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/nfs/v4/1 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nfs/v4/security 20 /usr/src/linux-headers-4.15.0-70-generic/include/config/nfs/v4 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nfs/v3 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nfs/use/kernel 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/nfs/use 40 /usr/src/linux-headers-4.15.0-70-generic/include/config/nfs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ecrypt/fs 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/ecrypt 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ppp/sync 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/ppp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/wlcore 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/processor 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/legacy/tables 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/legacy 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/custom/dsdt 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/custom 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/hotplug 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/i2c 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/table 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/rev/override 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/rev 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/thermal 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/cppc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/cpu/freq 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/cpu 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/apei/memory 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/apei 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/ec 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/pci 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/system/power/states 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/system/power 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/system 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/acpi/debugger 92 /usr/src/linux-headers-4.15.0-70-generic/include/config/acpi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/uevent/helper 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/uevent 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/synclink 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/modules/tree 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/modules/use/elf 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/modules/use 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/modules 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/elf 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/realtek 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mdio 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ip6/nf/match 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ip6/nf/target 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/ip6/nf 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/ip6 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/enclosure 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/decompress 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ocfs2/fs/userspace 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/ocfs2/fs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ocfs2/debug 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/ocfs2 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/l2tp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/amilo 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rd 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/msdos 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/melfas 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/cyttsp4 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/egalax 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/tsc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/wacom 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/auo 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/ti/am335x 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/ti 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/wdt87xx 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/rohm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/edt 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/surface3 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/tsc2007 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/sis 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/rm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/usb/ett 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/usb/general 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/usb/dmc 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/usb 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/tsc200x 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/ad7879 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/atmel/mxt 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/atmel 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen/cyttsp 100 /usr/src/linux-headers-4.15.0-70-generic/include/config/touchscreen 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sigmatel 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/act200l 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/typec 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/lz4hc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/aquantia 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/pcieaspm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/wafer 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/winbond 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/vm/event 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/vm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/inv/mpu6050 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/inv 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/chr/dev 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/chr 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rpmsg/qcom/glink 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/rpmsg/qcom 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/rpmsg 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/bridge/vlan 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/bridge/igmp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/bridge/ebt/mark 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/bridge/ebt/802 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/bridge/ebt/t 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/bridge/ebt 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/bridge/nf 32 /usr/src/linux-headers-4.15.0-70-generic/include/config/bridge 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ssb/pcmciahost 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ssb/b43/pci 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/ssb/b43 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ssb/sdiohost 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ssb/driver/pcicore 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/ssb/driver 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ssb/pcihost 32 /usr/src/linux-headers-4.15.0-70-generic/include/config/ssb 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/bnxt/flower 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/bnxt 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/aic79xx/reg/pretty 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/aic79xx/reg 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/aic79xx/reset/delay 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/aic79xx/reset 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/aic79xx/cmds/per 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/aic79xx/cmds 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/aic79xx/debug 32 /usr/src/linux-headers-4.15.0-70-generic/include/config/aic79xx 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/branch/profile 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/branch 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/romfs/on 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/romfs/backed/by 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/romfs/backed 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/romfs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sc1200 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/unix98 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/slip/mode 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/slip 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hw/random 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/hw 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/select/memory 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/select 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rtl8187 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/overlay/fs/redirect/always 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/overlay/fs/redirect 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/overlay/fs 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/overlay 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/v4l/platform 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/v4l/mem2mem 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/v4l/test 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/v4l 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fat/default 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/fat 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sync 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ata/verbose 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ata/over 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/ata 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/serio/altera 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/serio/gpio 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/serio/arc 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/serio 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/cpu/sup 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/cpu/freq/gov/attr 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/cpu/freq/gov 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/cpu/freq/default/gov 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/cpu/freq/default 20 /usr/src/linux-headers-4.15.0-70-generic/include/config/cpu/freq 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/cpu/idle/gov 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/cpu/idle 36 /usr/src/linux-headers-4.15.0-70-generic/include/config/cpu 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/esi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/lib80211/crypt 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/lib80211 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/cicada 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/quota/netlink 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/quota 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/kdb/default 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/kdb/continue 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/kdb 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/amd/iommu 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/amd/xgbe/have 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/amd/xgbe 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/amd/mem 20 /usr/src/linux-headers-4.15.0-70-generic/include/config/amd 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/w1/slave/ds2408 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/w1/slave 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/w1/master 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/w1 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/pcmcia/load 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/pcmcia 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/max/raw 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/max 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/advantech 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/genwqe/platform/error 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/genwqe/platform 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/genwqe 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/binfmt 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/60xx 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ks8851 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/tahvo/usb/host/by 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/tahvo/usb/host 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/tahvo/usb 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/tahvo 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/net2272 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/dwc3/dual 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/dwc3 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/f/mass 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/f/ss 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/f/uac1 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/f 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/xhci 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/gpio 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/g/acm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/g/dbgp 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/g 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/ali 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/pwc/input 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/pwc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/link/layer 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/link 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/hub 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/gspca/ov534 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/gspca/xirlink 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/gspca 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/dynamic 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/dwc2 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/announce/new 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/announce 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/default 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/mv 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/rainshadow 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/hsic 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/isp1362 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/midi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/isp1761 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/switch 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/cdc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/serial/digi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/serial/mos7715 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/serial/ftdi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/serial/keyspan 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/serial/kobil 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/serial/mct 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/serial/cypress 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/serial/xsens 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/serial/edgeport 40 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/serial 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/ftdi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/chipidea 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/ehset/test 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/ehset 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/bdc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/video/class/input 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/video/class 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/video 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/hwa 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/functionfs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/mass 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/sierra 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/net/rndis 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/net/cdc/subset 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/net/cdc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/net/huawei/cdc 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/net/huawei 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/net/ax88179 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/net/cx82310 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/net/qmi 36 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/net 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/leds/trigger 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/leds 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/musb/dual 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/musb 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/c67x00 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/ohci/little 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/ohci/hcd 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/ohci 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/cypress 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/ehci/tt 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/ehci/root/hub 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/ehci/root 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/ehci/hcd 20 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/ehci 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/gr 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/ulpi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/configfs/f/uac1 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/configfs/f/lb 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/configfs/f 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/configfs/mass 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/configfs/ecm 24 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/configfs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/max3421 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/r8a66597 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/isp116x 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/eth 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/uhci 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/isp1760/dual 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/isp1760 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/wusb 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/ezusb 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/snp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/arch/has 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/arch 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/whci 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/pulse8 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/oxu210hp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/u 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/u132 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/fotg210 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/storage/ene 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/storage/cypress 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/storage 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/led 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/sl811/hcd 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/sl811 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/gadget/vbus 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/gadget/storage/num 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/gadget/storage 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/gadget 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb/hcd 468 /usr/src/linux-headers-4.15.0-70-generic/include/config/usb 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/seccomp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/dns 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sun 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/user/return 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/user/stacktrace 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/user 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mic 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/zram 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/backlight/carillo 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/backlight/class 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/backlight/pm8941 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/backlight/lcd 20 /usr/src/linux-headers-4.15.0-70-generic/include/config/backlight 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/event 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sungem 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ath6kl 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hwlat 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/6lowpan/nhc 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/6lowpan 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/x509/certificate 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/x509 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mem/soft 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/mem 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/iscsi/ibft 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/iscsi/target 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/iscsi/boot 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/iscsi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/marvell/10g 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/marvell 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/memcg 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/frame 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/842 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/uses/pg 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/uses/high/vma 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/uses/high 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/uses 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/discard 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/pmem 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/filter 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/set 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/strict/module 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/strict/kernel 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/strict 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/zone 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/gigantic 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/fast 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/devmem/is 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/devmem 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/cache/line 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/cache 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/debug 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/sg 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/acpi/table 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/acpi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/elf 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/ubsan/sanitize 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/ubsan 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/cpu 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/mem 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/uaccess 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/add 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/gcov/profile 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/gcov 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has/fortify 112 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/has 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/memory 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/supports/memory 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/supports/atomic 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/supports/numa 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/supports/debug 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/supports/deferred/struct/page 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/supports/deferred/struct 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/supports/deferred 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/supports/optimized 36 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/supports 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/mmap/rnd/bits 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/mmap/rnd/compat/bits 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/mmap/rnd/compat 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/mmap/rnd 20 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/mmap 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/have/nmi/safe 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/have/nmi 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/have 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/suspend 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/enable/memory 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/enable/hugepage 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/enable/thp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/enable/split/pmd 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/enable/split 24 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/enable 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/phys/addr/t 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/phys/addr 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/phys 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/clocksource 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/wants/dynamic/task 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/wants/dynamic 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/wants/thp 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/wants 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/hibernation 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/dma/addr/t 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/dma/addr 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/dma 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/may/have/pc 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/may/have 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/may 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/select/memory 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/select 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/want/huge/pmd 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/want/huge 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/want/compat/ipc/parse 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/want/compat/ipc 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/want/compat 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/want/old/compat 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/want/old 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/want/general 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/want/batched/unmap/tlb 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/want/batched/unmap 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/want/batched 48 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/want 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/might/have/pc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/might/have/acpi 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/might/have 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/might 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/sparsemem 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/proc/kcore 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/proc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/use/memremap 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/use/builtin 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/use/cmpxchg 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/use/queued 20 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch/use 400 /usr/src/linux-headers-4.15.0-70-generic/include/config/arch 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rcu/perf 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rcu/need 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rcu/stall 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rcu/cpu/stall 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/rcu/cpu 24 /usr/src/linux-headers-4.15.0-70-generic/include/config/rcu 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/pc87413 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nfsd/v2 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nfsd/v4/security 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/nfsd/v4 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nfsd/v3 20 /usr/src/linux-headers-4.15.0-70-generic/include/config/nfsd 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/cdrom/pktcdvd 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/cdrom 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/bmi160 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mac80211/has 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mac80211/rc/default 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mac80211/rc/minstrel 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/mac80211/rc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mac80211/message 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mac80211/sta/hash/max 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/mac80211/sta/hash 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/mac80211/sta 36 /usr/src/linux-headers-4.15.0-70-generic/include/config/mac80211 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sdio 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/exportfs/block 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/exportfs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/gs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/jump 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/manager 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sdr/platform 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/sdr 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/edac/atomic 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/edac/decode 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/edac 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/vsockets 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ni903x 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/88eu/ap 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/88eu 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mma9551 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hvc/xen 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/hvc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/caif/spi 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/caif 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mcp2120 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/adaptec 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/cortina 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/apple 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/bfs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/samsung 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/inet/diag 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/inet/udp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/inet/dccp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/inet/xfrm/mode 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/inet/xfrm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/inet/tcp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/inet/sctp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/inet/esp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/inet/raw 40 /usr/src/linux-headers-4.15.0-70-generic/include/config/inet 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/smsc/sch311x 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/smsc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/transparent/huge 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/transparent/hugepage 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/transparent 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/u/serial 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/u 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ne2k 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/want/dev 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/want 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/vxfs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/tcg/tis/i2c 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/tcg/tis/st33zp24 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/tcg/tis 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/tcg/vtpm 20 /usr/src/linux-headers-4.15.0-70-generic/include/config/tcg 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/de 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/pgtable 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/osf 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/tmd 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/oid 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/gameport 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ext4/fs/posix 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/ext4/fs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ext4/use/for 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/ext4/use 20 /usr/src/linux-headers-4.15.0-70-generic/include/config/ext4 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/retu 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fix/earlycon 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/fix 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/axp288/fuel 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/axp288 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ucs2 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/uio/pdrv 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/uio/dmem 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/uio/hv 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/uio/pci 20 /usr/src/linux-headers-4.15.0-70-generic/include/config/uio 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/n 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/pm/generic/domains 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/pm/generic 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/pm/notifier/error 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/pm/notifier 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/pm/wakelocks 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/pm/sleep 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/pm/trace 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/pm/devfreq 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/pm/advanced 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/pm/std 44 /usr/src/linux-headers-4.15.0-70-generic/include/config/pm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hts221 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mandatory/file 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/mandatory 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/megaraid 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/lsm/mmap/min 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/lsm/mmap 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/lsm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/panasonic 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/i40e 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sgi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/lock/down/in/efi/secure 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/lock/down/in/efi 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/lock/down/in 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/lock/down 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/lock/spin/on 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/lock/spin 28 /usr/src/linux-headers-4.15.0-70-generic/include/config/lock 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/lsi/et1011c 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/lsi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/led/trigger 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/led 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/acer 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/smsc37b787 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rockchip 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/netfilter/netlink/glue 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/netfilter/netlink 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/netfilter/xt/match 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/netfilter/xt/target 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/netfilter/xt 24 /usr/src/linux-headers-4.15.0-70-generic/include/config/netfilter 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/orinoco 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/staging 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fuse 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/e1000e 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/physical 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/lpc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/chromeos 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/iso9660 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rapidio/disc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rapidio/mport 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rapidio/enum 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rapidio/rxs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rapidio/cps 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rapidio/dma 28 /usr/src/linux-headers-4.15.0-70-generic/include/config/rapidio 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/joystick/psxpad/spi 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/joystick/psxpad 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/joystick/iforce 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/joystick/xpad 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/joystick/grip 24 /usr/src/linux-headers-4.15.0-70-generic/include/config/joystick 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/tty 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/vme 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/lockd 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/test/static 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/test/user 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/test 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ceph/fs/posix 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/ceph/fs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ceph/lib/use/dns 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/ceph/lib/use 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/ceph/lib 24 /usr/src/linux-headers-4.15.0-70-generic/include/config/ceph 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/stream 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/gart 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/cfg80211/default 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/cfg80211/require/signed 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/cfg80211/require 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/cfg80211/crda 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/cfg80211/wext 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/cfg80211/use/kernel/regdb 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/cfg80211/use/kernel 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/cfg80211/use 36 /usr/src/linux-headers-4.15.0-70-generic/include/config/cfg80211 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/wilink/platform 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/wilink 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/girbil 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/gadget 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/watchdog/pretimeout/gov 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/watchdog/pretimeout/default/gov 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/watchdog/pretimeout/default 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/watchdog/pretimeout 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/watchdog/handle/boot 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/watchdog/handle 28 /usr/src/linux-headers-4.15.0-70-generic/include/config/watchdog 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/cma 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/arm/gic/max 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/arm/gic 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/arm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sparsemem/vmemmap 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/sparsemem/alloc/mem/map 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/sparsemem/alloc/mem 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/sparsemem/alloc 20 /usr/src/linux-headers-4.15.0-70-generic/include/config/sparsemem 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/wlan/vendor 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/wlan 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/abx500 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mq/iosched 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/mq 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/bt/rfcomm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/bt/bnep/proto 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/bt/bnep/mc 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/bt/bnep 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/bt/mrvl 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/bt/hcibtusb 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/bt/hciuart 32 /usr/src/linux-headers-4.15.0-70-generic/include/config/bt 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/proc/page 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/proc/pid 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/proc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ipv6/router 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ipv6/multiple 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ipv6/seg6 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ipv6/route 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ipv6/fou 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ipv6/ndisc 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ipv6/sit 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ipv6/mroute/multiple 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/ipv6/mroute 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ipv6/pimsm 44 /usr/src/linux-headers-4.15.0-70-generic/include/config/ipv6 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/isdn/capi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/isdn/divas 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/isdn/drv/avmb1/avm 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/isdn/drv/avmb1 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/isdn/drv 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/isdn/ppp 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/isdn/tty 32 /usr/src/linux-headers-4.15.0-70-generic/include/config/isdn 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ideapad 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/hist 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/wext 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ks0108 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/pci/msi/irq 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/pci/msi 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/pci/sw 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/pci/bus/addr/t 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/pci/bus/addr 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/pci/bus 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/pci/endpoint 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/pci/lockless 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/pci/realloc/enable 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/pci/realloc 44 /usr/src/linux-headers-4.15.0-70-generic/include/config/pci 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/system/extra/certificate 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/system/extra 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/system/blacklist/hash 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/system/blacklist 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/system/trusted 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/system/data 28 /usr/src/linux-headers-4.15.0-70-generic/include/config/system 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/loopback 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/posix/mqueue 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/posix 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/pwm/lpss 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/pwm/twl 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/pwm/cros 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/pwm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/cros/kbd/led 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/cros/kbd 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/cros/ec/lpc 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/cros/ec 20 /usr/src/linux-headers-4.15.0-70-generic/include/config/cros 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/nilfs2 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/tinydrm/mipi 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/tinydrm 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/jfs/posix 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/jfs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/media/altera 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/media/cec 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/media/tuner 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/media/common 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/media/digital/tv 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/media/digital 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/media/radio 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/media/subdrv 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/media/camera 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/media/usb 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/media/sdr 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/media/analog/tv 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/media/analog 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/media/pci 60 /usr/src/linux-headers-4.15.0-70-generic/include/config/media 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/befs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/keys 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ax25/dama 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/ax25 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/stmmac 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rwsem/xchgadd 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/rwsem/spin/on 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/rwsem/spin 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/rwsem 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/function/graph 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/function 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/ms 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/vmware/vmci 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/vmware 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/use/percpu/numa/node 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/use/percpu/numa 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/use/percpu 16 /usr/src/linux-headers-4.15.0-70-generic/include/config/use 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/charger 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/xilinx 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/checkpoint 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/fortify 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtdram/total 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtdram/erase 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/mtdram 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/mac 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/reiserfs/fs/posix 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/reiserfs/fs 12 /usr/src/linux-headers-4.15.0-70-generic/include/config/reiserfs 4 /usr/src/linux-headers-4.15.0-70-generic/include/config/tmpfs/posix 8 /usr/src/linux-headers-4.15.0-70-generic/include/config/tmpfs 12896 /usr/src/linux-headers-4.15.0-70-generic/include/config 8 /usr/src/linux-headers-4.15.0-70-generic/include/generated/uapi/linux 12 /usr/src/linux-headers-4.15.0-70-generic/include/generated/uapi 308 /usr/src/linux-headers-4.15.0-70-generic/include/generated 13208 /usr/src/linux-headers-4.15.0-70-generic/include 28 /usr/src/linux-headers-4.15.0-70-generic/kernel 348 /usr/src/linux-headers-4.15.0-70-generic/scripts/mod 44 /usr/src/linux-headers-4.15.0-70-generic/scripts/basic 40 /usr/src/linux-headers-4.15.0-70-generic/scripts/kconfig/lxdialog 548 /usr/src/linux-headers-4.15.0-70-generic/scripts/kconfig 104 /usr/src/linux-headers-4.15.0-70-generic/scripts/selinux/genheaders 108 /usr/src/linux-headers-4.15.0-70-generic/scripts/selinux/mdp 220 /usr/src/linux-headers-4.15.0-70-generic/scripts/selinux 1436 /usr/src/linux-headers-4.15.0-70-generic/scripts 232 /usr/src/linux-headers-4.15.0-70-generic/arch/x86/purgatory 112 /usr/src/linux-headers-4.15.0-70-generic/arch/x86/tools 60 /usr/src/linux-headers-4.15.0-70-generic/arch/x86/include/generated/uapi/asm 64 /usr/src/linux-headers-4.15.0-70-generic/arch/x86/include/generated/uapi 104 /usr/src/linux-headers-4.15.0-70-generic/arch/x86/include/generated/asm 172 /usr/src/linux-headers-4.15.0-70-generic/arch/x86/include/generated 176 /usr/src/linux-headers-4.15.0-70-generic/arch/x86/include 100 /usr/src/linux-headers-4.15.0-70-generic/arch/x86/kernel 16 /usr/src/linux-headers-4.15.0-70-generic/arch/x86/entry/syscalls 20 /usr/src/linux-headers-4.15.0-70-generic/arch/x86/entry 644 /usr/src/linux-headers-4.15.0-70-generic/arch/x86 648 /usr/src/linux-headers-4.15.0-70-generic/arch 4 /usr/src/linux-headers-4.15.0-70-generic/.tmp_versions 21996 /usr/src/linux-headers-4.15.0-70-generic 12 /usr/src/linux-headers-4.15.0-66/fs/udf 36 /usr/src/linux-headers-4.15.0-66/fs/nls 16 /usr/src/linux-headers-4.15.0-66/fs/squashfs 8 /usr/src/linux-headers-4.15.0-66/fs/hostfs 12 /usr/src/linux-headers-4.15.0-66/fs/adfs 12 /usr/src/linux-headers-4.15.0-66/fs/freevxfs 12 /usr/src/linux-headers-4.15.0-66/fs/sysfs 12 /usr/src/linux-headers-4.15.0-66/fs/efs 12 /usr/src/linux-headers-4.15.0-66/fs/afs 12 /usr/src/linux-headers-4.15.0-66/fs/gfs2 12 /usr/src/linux-headers-4.15.0-66/fs/ecryptfs 12 /usr/src/linux-headers-4.15.0-66/fs/orangefs 12 /usr/src/linux-headers-4.15.0-66/fs/ntfs 20 /usr/src/linux-headers-4.15.0-66/fs/cifs 12 /usr/src/linux-headers-4.15.0-66/fs/notify/dnotify 12 /usr/src/linux-headers-4.15.0-66/fs/notify/inotify 12 /usr/src/linux-headers-4.15.0-66/fs/notify/fanotify 48 /usr/src/linux-headers-4.15.0-66/fs/notify 12 /usr/src/linux-headers-4.15.0-66/fs/affs 12 /usr/src/linux-headers-4.15.0-66/fs/autofs4 16 /usr/src/linux-headers-4.15.0-66/fs/exofs 8 /usr/src/linux-headers-4.15.0-66/fs/openpromfs 12 /usr/src/linux-headers-4.15.0-66/fs/sysv 16 /usr/src/linux-headers-4.15.0-66/fs/jffs2 8 /usr/src/linux-headers-4.15.0-66/fs/tracefs 8 /usr/src/linux-headers-4.15.0-66/fs/devpts 12 /usr/src/linux-headers-4.15.0-66/fs/qnx4 12 /usr/src/linux-headers-4.15.0-66/fs/hfsplus 12 /usr/src/linux-headers-4.15.0-66/fs/ufs 12 /usr/src/linux-headers-4.15.0-66/fs/btrfs 12 /usr/src/linux-headers-4.15.0-66/fs/efivarfs 12 /usr/src/linux-headers-4.15.0-66/fs/fscache 12 /usr/src/linux-headers-4.15.0-66/fs/pstore 12 /usr/src/linux-headers-4.15.0-66/fs/f2fs 12 /usr/src/linux-headers-4.15.0-66/fs/9p 12 /usr/src/linux-headers-4.15.0-66/fs/crypto 12 /usr/src/linux-headers-4.15.0-66/fs/minix 12 /usr/src/linux-headers-4.15.0-66/fs/qnx6 12 /usr/src/linux-headers-4.15.0-66/fs/ubifs 16 /usr/src/linux-headers-4.15.0-66/fs/ncpfs 12 /usr/src/linux-headers-4.15.0-66/fs/hpfs 12 /usr/src/linux-headers-4.15.0-66/fs/kernfs 12 /usr/src/linux-headers-4.15.0-66/fs/omfs 12 /usr/src/linux-headers-4.15.0-66/fs/configfs 8 /usr/src/linux-headers-4.15.0-66/fs/nfs_common 12 /usr/src/linux-headers-4.15.0-66/fs/cramfs 16 /usr/src/linux-headers-4.15.0-66/fs/aufs 12 /usr/src/linux-headers-4.15.0-66/fs/hfs 20 /usr/src/linux-headers-4.15.0-66/fs/xfs 12 /usr/src/linux-headers-4.15.0-66/fs/coda 8 /usr/src/linux-headers-4.15.0-66/fs/nfs/blocklayout 8 /usr/src/linux-headers-4.15.0-66/fs/nfs/flexfilelayout 8 /usr/src/linux-headers-4.15.0-66/fs/nfs/filelayout 40 /usr/src/linux-headers-4.15.0-66/fs/nfs 8 /usr/src/linux-headers-4.15.0-66/fs/hugetlbfs 8 /usr/src/linux-headers-4.15.0-66/fs/ocfs2/cluster 8 /usr/src/linux-headers-4.15.0-66/fs/ocfs2/dlmfs 8 /usr/src/linux-headers-4.15.0-66/fs/ocfs2/dlm 36 /usr/src/linux-headers-4.15.0-66/fs/ocfs2 12 /usr/src/linux-headers-4.15.0-66/fs/isofs 12 /usr/src/linux-headers-4.15.0-66/fs/romfs 12 /usr/src/linux-headers-4.15.0-66/fs/dlm 16 /usr/src/linux-headers-4.15.0-66/fs/fat 12 /usr/src/linux-headers-4.15.0-66/fs/cachefiles 12 /usr/src/linux-headers-4.15.0-66/fs/quota 12 /usr/src/linux-headers-4.15.0-66/fs/ext2 16 /usr/src/linux-headers-4.15.0-66/fs/nfsd 8 /usr/src/linux-headers-4.15.0-66/fs/exportfs 12 /usr/src/linux-headers-4.15.0-66/fs/bfs 16 /usr/src/linux-headers-4.15.0-66/fs/ext4 12 /usr/src/linux-headers-4.15.0-66/fs/overlayfs 12 /usr/src/linux-headers-4.15.0-66/fs/fuse 8 /usr/src/linux-headers-4.15.0-66/fs/lockd 12 /usr/src/linux-headers-4.15.0-66/fs/ceph 8 /usr/src/linux-headers-4.15.0-66/fs/debugfs 12 /usr/src/linux-headers-4.15.0-66/fs/proc 12 /usr/src/linux-headers-4.15.0-66/fs/jbd2 8 /usr/src/linux-headers-4.15.0-66/fs/ramfs 12 /usr/src/linux-headers-4.15.0-66/fs/nilfs2 12 /usr/src/linux-headers-4.15.0-66/fs/jfs 12 /usr/src/linux-headers-4.15.0-66/fs/befs 12 /usr/src/linux-headers-4.15.0-66/fs/reiserfs 1024 /usr/src/linux-headers-4.15.0-66/fs 8 /usr/src/linux-headers-4.15.0-66/virt/kvm 12 /usr/src/linux-headers-4.15.0-66/virt/lib 28 /usr/src/linux-headers-4.15.0-66/virt 40 /usr/src/linux-headers-4.15.0-66/drivers/spi 12 /usr/src/linux-headers-4.15.0-66/drivers/soc/ti 8 /usr/src/linux-headers-4.15.0-66/drivers/soc/lantiq 12 /usr/src/linux-headers-4.15.0-66/drivers/soc/qcom 8 /usr/src/linux-headers-4.15.0-66/drivers/soc/bcm/brcmstb/pm 20 /usr/src/linux-headers-4.15.0-66/drivers/soc/bcm/brcmstb 32 /usr/src/linux-headers-4.15.0-66/drivers/soc/bcm 12 /usr/src/linux-headers-4.15.0-66/drivers/soc/versatile 12 /usr/src/linux-headers-4.15.0-66/drivers/soc/actions 8 /usr/src/linux-headers-4.15.0-66/drivers/soc/dove 8 /usr/src/linux-headers-4.15.0-66/drivers/soc/tegra/fuse 20 /usr/src/linux-headers-4.15.0-66/drivers/soc/tegra 12 /usr/src/linux-headers-4.15.0-66/drivers/soc/imx 12 /usr/src/linux-headers-4.15.0-66/drivers/soc/ux500 12 /usr/src/linux-headers-4.15.0-66/drivers/soc/fsl/qe 12 /usr/src/linux-headers-4.15.0-66/drivers/soc/fsl/qbman 36 /usr/src/linux-headers-4.15.0-66/drivers/soc/fsl 12 /usr/src/linux-headers-4.15.0-66/drivers/soc/zte 12 /usr/src/linux-headers-4.15.0-66/drivers/soc/renesas 12 /usr/src/linux-headers-4.15.0-66/drivers/soc/mediatek 12 /usr/src/linux-headers-4.15.0-66/drivers/soc/amlogic 12 /usr/src/linux-headers-4.15.0-66/drivers/soc/samsung 12 /usr/src/linux-headers-4.15.0-66/drivers/soc/rockchip 12 /usr/src/linux-headers-4.15.0-66/drivers/soc/atmel 12 /usr/src/linux-headers-4.15.0-66/drivers/soc/sunxi 284 /usr/src/linux-headers-4.15.0-66/drivers/soc 12 /usr/src/linux-headers-4.15.0-66/drivers/nfc/nfcmrvl 12 /usr/src/linux-headers-4.15.0-66/drivers/nfc/pn533 12 /usr/src/linux-headers-4.15.0-66/drivers/nfc/fdp 12 /usr/src/linux-headers-4.15.0-66/drivers/nfc/s3fwrn5 12 /usr/src/linux-headers-4.15.0-66/drivers/nfc/pn544 12 /usr/src/linux-headers-4.15.0-66/drivers/nfc/nxp-nci 12 /usr/src/linux-headers-4.15.0-66/drivers/nfc/st95hf 12 /usr/src/linux-headers-4.15.0-66/drivers/nfc/microread 12 /usr/src/linux-headers-4.15.0-66/drivers/nfc/st21nfca 12 /usr/src/linux-headers-4.15.0-66/drivers/nfc/st-nci 132 /usr/src/linux-headers-4.15.0-66/drivers/nfc 20 /usr/src/linux-headers-4.15.0-66/drivers/bluetooth 16 /usr/src/linux-headers-4.15.0-66/drivers/power/reset 32 /usr/src/linux-headers-4.15.0-66/drivers/power/supply 12 /usr/src/linux-headers-4.15.0-66/drivers/power/avs 72 /usr/src/linux-headers-4.15.0-66/drivers/power 12 /usr/src/linux-headers-4.15.0-66/drivers/ntb/hw/intel 12 /usr/src/linux-headers-4.15.0-66/drivers/ntb/hw/mscc 12 /usr/src/linux-headers-4.15.0-66/drivers/ntb/hw/idt 12 /usr/src/linux-headers-4.15.0-66/drivers/ntb/hw/amd 60 /usr/src/linux-headers-4.15.0-66/drivers/ntb/hw 12 /usr/src/linux-headers-4.15.0-66/drivers/ntb/test 84 /usr/src/linux-headers-4.15.0-66/drivers/ntb 8 /usr/src/linux-headers-4.15.0-66/drivers/perf/hisilicon 20 /usr/src/linux-headers-4.15.0-66/drivers/perf 68 /usr/src/linux-headers-4.15.0-66/drivers/rtc 12 /usr/src/linux-headers-4.15.0-66/drivers/dma-buf 12 /usr/src/linux-headers-4.15.0-66/drivers/firewire 52 /usr/src/linux-headers-4.15.0-66/drivers/gpio 12 /usr/src/linux-headers-4.15.0-66/drivers/memstick/core 12 /usr/src/linux-headers-4.15.0-66/drivers/memstick/host 36 /usr/src/linux-headers-4.15.0-66/drivers/memstick 12 /usr/src/linux-headers-4.15.0-66/drivers/vlynq 12 /usr/src/linux-headers-4.15.0-66/drivers/dca 12 /usr/src/linux-headers-4.15.0-66/drivers/dax 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/ipu-v3 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/vga 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/savage 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/vc4 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/atmel-hlcdc 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/bochs 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/mxsfb 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/selftests 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/r128 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/sti 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/i915/gvt 28 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/i915 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/ttm 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/tdfx 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/etnaviv 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/i2c 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/tve200 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/mgag200 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/via 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/stm 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/dispnv04 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvif 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine/sec2 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine/msenc 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine/bsp 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine/device 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine/disp 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine/sw 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine/mspdec 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine/sec 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine/fifo 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine/ce 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine/cipher 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine/mpeg 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine/nvdec 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine/vic 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine/gr 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine/dma 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine/msppp 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine/msvld 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine/nvenc 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine/pm 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine/vp 176 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/engine 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/gpio 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/top 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/mmu 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/devinit 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/instmem 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/iccsense 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/i2c 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/bus 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/fb 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/secboot 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/bar 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/therm 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/bios 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/volt 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/pmu 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/mxm 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/mc 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/clk 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/timer 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/ibus 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/fuse 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/pci 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev/ltc 192 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/subdev 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/core 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm/falcon 392 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau/nvkm 420 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/nouveau 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/exynos 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/tilcdc 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/rcar-du 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/fsl-dcu 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/tegra 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/virtio 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/imx 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/ast 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/radeon 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/sis 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/qxl 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/msm 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/cirrus 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/zte 16 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/panel 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/udl 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/armada 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/omapdrm/dss 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/omapdrm/displays 36 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/omapdrm 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/i810 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/bridge/analogix 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/bridge/adv7511 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/bridge/synopsys 48 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/bridge 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/shmobile 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/mga 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/powerplay/hwmgr 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/powerplay/smumgr 24 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/powerplay 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/acp 16 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/amdgpu 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/display/amdgpu_dm 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/display/dc/dce112 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/display/dc/gpio 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/display/dc/dml 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/display/dc/dcn10 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/display/dc/calcs 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/display/dc/irq 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/display/dc/dce120 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/display/dc/basics 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/display/dc/bios 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/display/dc/i2caux 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/display/dc/dce100 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/display/dc/virtual 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/display/dc/dce 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/display/dc/dce110 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/display/dc/dce80 128 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/display/dc 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/display/modules/freesync 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/display/modules 160 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/display 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/lib 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd/amdkfd 240 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/amd 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/pl111 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/mediatek 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/sun4i 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/vmwgfx 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/hisilicon/hibmc 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/hisilicon/kirin 36 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/hisilicon 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/rockchip 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/arc 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/gma500 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/arm 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/meson 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/tinydrm/core 20 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/tinydrm 8 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm/vgem 1364 /usr/src/linux-headers-4.15.0-66/drivers/gpu/drm 12 /usr/src/linux-headers-4.15.0-66/drivers/gpu/host1x 1408 /usr/src/linux-headers-4.15.0-66/drivers/gpu 12 /usr/src/linux-headers-4.15.0-66/drivers/sn 12 /usr/src/linux-headers-4.15.0-66/drivers/spmi 24 /usr/src/linux-headers-4.15.0-66/drivers/char/hw_random 12 /usr/src/linux-headers-4.15.0-66/drivers/char/ipmi 12 /usr/src/linux-headers-4.15.0-66/drivers/char/xillybus 16 /usr/src/linux-headers-4.15.0-66/drivers/char/agp 8 /usr/src/linux-headers-4.15.0-66/drivers/char/mwave 8 /usr/src/linux-headers-4.15.0-66/drivers/char/xilinx_hwicap 12 /usr/src/linux-headers-4.15.0-66/drivers/char/pcmcia 12 /usr/src/linux-headers-4.15.0-66/drivers/char/tpm/st33zp24 28 /usr/src/linux-headers-4.15.0-66/drivers/char/tpm 152 /usr/src/linux-headers-4.15.0-66/drivers/char 12 /usr/src/linux-headers-4.15.0-66/drivers/thunderbolt 12 /usr/src/linux-headers-4.15.0-66/drivers/memory/tegra 12 /usr/src/linux-headers-4.15.0-66/drivers/memory/samsung 40 /usr/src/linux-headers-4.15.0-66/drivers/memory 12 /usr/src/linux-headers-4.15.0-66/drivers/fsi 12 /usr/src/linux-headers-4.15.0-66/drivers/virt 12 /usr/src/linux-headers-4.15.0-66/drivers/pinctrl/spear 12 /usr/src/linux-headers-4.15.0-66/drivers/pinctrl/sh-pfc 12 /usr/src/linux-headers-4.15.0-66/drivers/pinctrl/intel 12 /usr/src/linux-headers-4.15.0-66/drivers/pinctrl/vt8500 12 /usr/src/linux-headers-4.15.0-66/drivers/pinctrl/stm32 12 /usr/src/linux-headers-4.15.0-66/drivers/pinctrl/uniphier 12 /usr/src/linux-headers-4.15.0-66/drivers/pinctrl/ti 16 /usr/src/linux-headers-4.15.0-66/drivers/pinctrl/qcom 12 /usr/src/linux-headers-4.15.0-66/drivers/pinctrl/bcm 12 /usr/src/linux-headers-4.15.0-66/drivers/pinctrl/berlin 12 /usr/src/linux-headers-4.15.0-66/drivers/pinctrl/tegra 12 /usr/src/linux-headers-4.15.0-66/drivers/pinctrl/nomadik 12 /usr/src/linux-headers-4.15.0-66/drivers/pinctrl/sprd 12 /usr/src/linux-headers-4.15.0-66/drivers/pinctrl/zte 12 /usr/src/linux-headers-4.15.0-66/drivers/pinctrl/aspeed 12 /usr/src/linux-headers-4.15.0-66/drivers/pinctrl/freescale 12 /usr/src/linux-headers-4.15.0-66/drivers/pinctrl/pxa 8 /usr/src/linux-headers-4.15.0-66/drivers/pinctrl/sirf 12 /usr/src/linux-headers-4.15.0-66/drivers/pinctrl/mediatek 12 /usr/src/linux-headers-4.15.0-66/drivers/pinctrl/samsung 12 /usr/src/linux-headers-4.15.0-66/drivers/pinctrl/mvebu 12 /usr/src/linux-headers-4.15.0-66/drivers/pinctrl/sunxi 12 /usr/src/linux-headers-4.15.0-66/drivers/pinctrl/meson 296 /usr/src/linux-headers-4.15.0-66/drivers/pinctrl 44 /usr/src/linux-headers-4.15.0-66/drivers/regulator 16 /usr/src/linux-headers-4.15.0-66/drivers/vhost 12 /usr/src/linux-headers-4.15.0-66/drivers/ras 12 /usr/src/linux-headers-4.15.0-66/drivers/fmc 12 /usr/src/linux-headers-4.15.0-66/drivers/tee/optee 24 /usr/src/linux-headers-4.15.0-66/drivers/tee 16 /usr/src/linux-headers-4.15.0-66/drivers/mtd/spi-nor 8 /usr/src/linux-headers-4.15.0-66/drivers/mtd/nand/brcmnand 8 /usr/src/linux-headers-4.15.0-66/drivers/mtd/nand/bcm47xxnflash 8 /usr/src/linux-headers-4.15.0-66/drivers/mtd/nand/gpmi-nand 8 /usr/src/linux-headers-4.15.0-66/drivers/mtd/nand/atmel 60 /usr/src/linux-headers-4.15.0-66/drivers/mtd/nand 8 /usr/src/linux-headers-4.15.0-66/drivers/mtd/tests 12 /usr/src/linux-headers-4.15.0-66/drivers/mtd/onenand 12 /usr/src/linux-headers-4.15.0-66/drivers/mtd/lpddr 24 /usr/src/linux-headers-4.15.0-66/drivers/mtd/maps 20 /usr/src/linux-headers-4.15.0-66/drivers/mtd/devices 12 /usr/src/linux-headers-4.15.0-66/drivers/mtd/parsers 20 /usr/src/linux-headers-4.15.0-66/drivers/mtd/chips 16 /usr/src/linux-headers-4.15.0-66/drivers/mtd/ubi 220 /usr/src/linux-headers-4.15.0-66/drivers/mtd 8 /usr/src/linux-headers-4.15.0-66/drivers/nubus 12 /usr/src/linux-headers-4.15.0-66/drivers/reset/sti 12 /usr/src/linux-headers-4.15.0-66/drivers/reset/tegra 12 /usr/src/linux-headers-4.15.0-66/drivers/reset/hisilicon 48 /usr/src/linux-headers-4.15.0-66/drivers/reset 8 /usr/src/linux-headers-4.15.0-66/drivers/accessibility/braille 20 /usr/src/linux-headers-4.15.0-66/drivers/accessibility 12 /usr/src/linux-headers-4.15.0-66/drivers/pps/clients 12 /usr/src/linux-headers-4.15.0-66/drivers/pps/generators 36 /usr/src/linux-headers-4.15.0-66/drivers/pps 16 /usr/src/linux-headers-4.15.0-66/drivers/parport 24 /usr/src/linux-headers-4.15.0-66/drivers/atm 12 /usr/src/linux-headers-4.15.0-66/drivers/ptp 20 /usr/src/linux-headers-4.15.0-66/drivers/iommu 12 /usr/src/linux-headers-4.15.0-66/drivers/opp 12 /usr/src/linux-headers-4.15.0-66/drivers/hsi/clients 12 /usr/src/linux-headers-4.15.0-66/drivers/hsi/controllers 36 /usr/src/linux-headers-4.15.0-66/drivers/hsi 12 /usr/src/linux-headers-4.15.0-66/drivers/i2c/muxes 56 /usr/src/linux-headers-4.15.0-66/drivers/i2c/busses 12 /usr/src/linux-headers-4.15.0-66/drivers/i2c/algos 96 /usr/src/linux-headers-4.15.0-66/drivers/i2c 8 /usr/src/linux-headers-4.15.0-66/drivers/macintosh/ams 28 /usr/src/linux-headers-4.15.0-66/drivers/macintosh 16 /usr/src/linux-headers-4.15.0-66/drivers/hwmon/pmbus 88 /usr/src/linux-headers-4.15.0-66/drivers/hwmon 12 /usr/src/linux-headers-4.15.0-66/drivers/platform/goldfish 12 /usr/src/linux-headers-4.15.0-66/drivers/platform/chrome 12 /usr/src/linux-headers-4.15.0-66/drivers/platform/mips 48 /usr/src/linux-headers-4.15.0-66/drivers/platform/x86 8 /usr/src/linux-headers-4.15.0-66/drivers/platform/olpc 104 /usr/src/linux-headers-4.15.0-66/drivers/platform 8 /usr/src/linux-headers-4.15.0-66/drivers/s390/cio 16 /usr/src/linux-headers-4.15.0-66/drivers/s390/char 12 /usr/src/linux-headers-4.15.0-66/drivers/s390/net 8 /usr/src/linux-headers-4.15.0-66/drivers/s390/virtio 8 /usr/src/linux-headers-4.15.0-66/drivers/s390/crypto 12 /usr/src/linux-headers-4.15.0-66/drivers/s390/block 8 /usr/src/linux-headers-4.15.0-66/drivers/s390/scsi 80 /usr/src/linux-headers-4.15.0-66/drivers/s390 12 /usr/src/linux-headers-4.15.0-66/drivers/idle 16 /usr/src/linux-headers-4.15.0-66/drivers/bus 12 /usr/src/linux-headers-4.15.0-66/drivers/message/fusion 20 /usr/src/linux-headers-4.15.0-66/drivers/message 12 /usr/src/linux-headers-4.15.0-66/drivers/mcb 12 /usr/src/linux-headers-4.15.0-66/drivers/video/logo 8 /usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/savage 12 /usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/omap2/omapfb/dss 12 /usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/omap2/omapfb/displays 36 /usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/omap2/omapfb 48 /usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/omap2 8 /usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/intelfb 8 /usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/mbx 8 /usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/vermilion 12 /usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/mmp/fb 12 /usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/mmp/panel 12 /usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/mmp/hw 48 /usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/mmp 8 /usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/via 12 /usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/geode 8 /usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/core 8 /usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/sis 8 /usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/riva 12 /usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/omap 8 /usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/matrox 8 /usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/aty 8 /usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/i810 8 /usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/nvidia 8 /usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/mb862xx 8 /usr/src/linux-headers-4.15.0-66/drivers/video/fbdev/kyro 320 /usr/src/linux-headers-4.15.0-66/drivers/video/fbdev 16 /usr/src/linux-headers-4.15.0-66/drivers/video/console 24 /usr/src/linux-headers-4.15.0-66/drivers/video/backlight 384 /usr/src/linux-headers-4.15.0-66/drivers/video 12 /usr/src/linux-headers-4.15.0-66/drivers/nvme/host 12 /usr/src/linux-headers-4.15.0-66/drivers/nvme/target 36 /usr/src/linux-headers-4.15.0-66/drivers/nvme 8 /usr/src/linux-headers-4.15.0-66/drivers/dio 16 /usr/src/linux-headers-4.15.0-66/drivers/extcon 8 /usr/src/linux-headers-4.15.0-66/drivers/base/power 12 /usr/src/linux-headers-4.15.0-66/drivers/base/regmap 12 /usr/src/linux-headers-4.15.0-66/drivers/base/test 52 /usr/src/linux-headers-4.15.0-66/drivers/base 12 /usr/src/linux-headers-4.15.0-66/drivers/android 12 /usr/src/linux-headers-4.15.0-66/drivers/net/hyperv 12 /usr/src/linux-headers-4.15.0-66/drivers/net/wimax/i2400m 24 /usr/src/linux-headers-4.15.0-66/drivers/net/wimax 8 /usr/src/linux-headers-4.15.0-66/drivers/net/fjes 8 /usr/src/linux-headers-4.15.0-66/drivers/net/bonding 12 /usr/src/linux-headers-4.15.0-66/drivers/net/team 8 /usr/src/linux-headers-4.15.0-66/drivers/net/cris 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ipvlan 12 /usr/src/linux-headers-4.15.0-66/drivers/net/can/spi 12 /usr/src/linux-headers-4.15.0-66/drivers/net/can/cc770 12 /usr/src/linux-headers-4.15.0-66/drivers/net/can/sja1000 12 /usr/src/linux-headers-4.15.0-66/drivers/net/can/ifi_canfd 12 /usr/src/linux-headers-4.15.0-66/drivers/net/can/c_can 12 /usr/src/linux-headers-4.15.0-66/drivers/net/can/mscan 12 /usr/src/linux-headers-4.15.0-66/drivers/net/can/softing 12 /usr/src/linux-headers-4.15.0-66/drivers/net/can/m_can 8 /usr/src/linux-headers-4.15.0-66/drivers/net/can/usb/peak_usb 20 /usr/src/linux-headers-4.15.0-66/drivers/net/can/usb 12 /usr/src/linux-headers-4.15.0-66/drivers/net/can/rcar 12 /usr/src/linux-headers-4.15.0-66/drivers/net/can/peak_canfd 156 /usr/src/linux-headers-4.15.0-66/drivers/net/can 8 /usr/src/linux-headers-4.15.0-66/drivers/net/wan/lmc 32 /usr/src/linux-headers-4.15.0-66/drivers/net/wan 12 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/cisco 8 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/intel/iwlwifi/mvm 8 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/intel/iwlwifi/dvm 32 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/intel/iwlwifi 12 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/intel/iwlegacy 16 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/intel/ipw2x00 72 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/intel 12 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/st/cw1200 24 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/st 12 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/rsi 12 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/quantenna/qtnfmac 24 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/quantenna 12 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/ti/wl12xx 12 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/ti/wl1251 12 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/ti/wlcore 12 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/ti/wl18xx 60 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/ti 8 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/intersil/prism54 12 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/intersil/hostap 12 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/intersil/p54 16 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/intersil/orinoco 60 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/intersil 12 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/admtek 8 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/broadcom/brcm80211/brcmfmac 8 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/broadcom/brcm80211/brcmutil 8 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/broadcom/brcm80211/brcmsmac 36 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/broadcom/brcm80211 16 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/broadcom/b43 12 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/broadcom/b43legacy 76 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/broadcom 12 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/ath/wil6210 12 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/ath/carl9170 12 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/ath/ath5k 16 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/ath/ath9k 12 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/ath/wcn36xx 12 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/ath/ath10k 12 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/ath/ath6kl 12 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/ath/ar5523 112 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/ath 12 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/realtek/rtl8xxxu 8 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/realtek/rtlwifi/rtl8192de 8 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/realtek/rtlwifi/rtl8192cu 8 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/realtek/rtlwifi/rtl8192ce 8 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/realtek/rtlwifi/rtl8192se 8 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/realtek/rtlwifi/rtl8192c 8 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/realtek/rtlwifi/rtl8723be 8 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/realtek/rtlwifi/rtl8723com 8 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/realtek/rtlwifi/rtl8821ae 8 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/realtek/rtlwifi/btcoexist 8 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/realtek/rtlwifi/rtl8192ee 8 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/realtek/rtlwifi/rtl8188ee 8 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/realtek/rtlwifi/rtl8723ae 108 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/realtek/rtlwifi 8 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/realtek/rtl818x/rtl8180 8 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/realtek/rtl818x/rtl8187 28 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/realtek/rtl818x 160 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/realtek 12 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/marvell/libertas_tf 12 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/marvell/mwifiex 12 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/marvell/libertas 48 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/marvell 12 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/mediatek/mt7601u 24 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/mediatek 12 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/atmel 16 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/ralink/rt2x00 28 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/ralink 12 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/zydas/zd1211rw 24 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless/zydas 772 /usr/src/linux-headers-4.15.0-66/drivers/net/wireless 12 /usr/src/linux-headers-4.15.0-66/drivers/net/dsa/mv88e6xxx 12 /usr/src/linux-headers-4.15.0-66/drivers/net/dsa/b53 12 /usr/src/linux-headers-4.15.0-66/drivers/net/dsa/microchip 48 /usr/src/linux-headers-4.15.0-66/drivers/net/dsa 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/aeroflex 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/calxeda 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/silan 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/moxa 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/hp 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/emulex/benet 24 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/emulex 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/nxp 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/ibm/emac 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/ibm/ehea 32 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/ibm 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/altera 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/cisco/enic 24 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/cisco 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/aurora 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/intel/ixgbevf 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/intel/igbvf 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/intel/i40evf 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/intel/ixgbe 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/intel/fm10k 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/intel/ixgb 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/intel/e1000 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/intel/igb 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/intel/i40e 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/intel/e1000e 100 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/intel 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/natsemi 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/pasemi 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/qlogic/qede 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/qlogic/netxen 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/qlogic/qlcnic 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/qlogic/qed 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/qlogic/qlge 52 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/qlogic 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/oki-semi/pch_gbe 24 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/oki-semi 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/apm/xgene 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/apm/xgene-v2 36 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/apm 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/alteon 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/nuvoton 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/agere 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/qualcomm/rmnet 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/qualcomm/emac 32 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/qualcomm 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/tehuti 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/ti 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/i825xx 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/rdc 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/sfc/falcon 24 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/sfc 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/rocker 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/tile 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/wiznet 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/huawei/hinic 24 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/huawei 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/via 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/myricom/myri10ge 20 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/myricom 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/chelsio/libcxgb 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/chelsio/cxgb3 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/chelsio/cxgb 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/chelsio/cxgb4vf 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/chelsio/cxgb4 52 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/chelsio 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/microchip 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/toshiba 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/allwinner 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/broadcom/bnx2x 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/broadcom/genet 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/broadcom/bnxt 40 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/broadcom 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/seeq 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/xscale 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/sis 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/adi 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/mellanox/mlxfw 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/mellanox/mlx5/core/diag 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/mellanox/mlx5/core/ipoib 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/mellanox/mlx5/core/fpga 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/mellanox/mlx5/core/accel 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/mellanox/mlx5/core/lib 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/mellanox/mlx5/core/en_accel 60 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/mellanox/mlx5/core 64 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/mellanox/mlx5 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/mellanox/mlx4 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/mellanox/mlxsw 112 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/mellanox 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/3com 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/cadence 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/neterion/vxge 20 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/neterion 16 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/stmicro/stmmac 28 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/stmicro 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/davicom 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/cirrus 16 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/dec/tulip 28 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/dec 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/fujitsu 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/micrel 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/atheros/atlx 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/atheros/alx 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/atheros/atl1c 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/atheros/atl1e 44 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/atheros 16 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/8390 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/ezchip 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/socionext 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/freescale/fs_enet 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/freescale/fman 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/freescale/dpaa 48 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/freescale 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/renesas 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/faraday 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/realtek 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/aquantia/atlantic 20 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/aquantia 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/xircom 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/nvidia 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/amd/xgbe 24 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/amd 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/netronome/nfp 20 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/netronome 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/alacritech 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/packetengines 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/sun 16 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/marvell 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/mediatek 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/adaptec 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/apple 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/dlink 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/samsung/sxgbe 20 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/samsung 16 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/smsc 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/sgi 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/hisilicon/hns 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/hisilicon/hns3/hns3pf 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/hisilicon/hns3/hns3vf 24 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/hisilicon/hns3 44 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/hisilicon 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/arc 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/tundra 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/cavium/octeon 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/cavium/liquidio 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/cavium/thunder 36 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/cavium 8 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/amazon/ena 20 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/amazon 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/brocade/bna 24 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/brocade 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/xilinx 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet/synopsys 1672 /usr/src/linux-headers-4.15.0-66/drivers/net/ethernet 8 /usr/src/linux-headers-4.15.0-66/drivers/net/vmxnet3 12 /usr/src/linux-headers-4.15.0-66/drivers/net/hippi 16 /usr/src/linux-headers-4.15.0-66/drivers/net/hamradio 12 /usr/src/linux-headers-4.15.0-66/drivers/net/ieee802154 20 /usr/src/linux-headers-4.15.0-66/drivers/net/phy 16 /usr/src/linux-headers-4.15.0-66/drivers/net/appletalk 12 /usr/src/linux-headers-4.15.0-66/drivers/net/plip 16 /usr/src/linux-headers-4.15.0-66/drivers/net/arcnet 16 /usr/src/linux-headers-4.15.0-66/drivers/net/ppp 12 /usr/src/linux-headers-4.15.0-66/drivers/net/slip 32 /usr/src/linux-headers-4.15.0-66/drivers/net/usb 12 /usr/src/linux-headers-4.15.0-66/drivers/net/caif 8 /usr/src/linux-headers-4.15.0-66/drivers/net/xen-netback 8 /usr/src/linux-headers-4.15.0-66/drivers/net/fddi/skfp 20 /usr/src/linux-headers-4.15.0-66/drivers/net/fddi 3000 /usr/src/linux-headers-4.15.0-66/drivers/net 12 /usr/src/linux-headers-4.15.0-66/drivers/devfreq/event 28 /usr/src/linux-headers-4.15.0-66/drivers/devfreq 12 /usr/src/linux-headers-4.15.0-66/drivers/leds/trigger 44 /usr/src/linux-headers-4.15.0-66/drivers/leds 12 /usr/src/linux-headers-4.15.0-66/drivers/nvdimm 24 /usr/src/linux-headers-4.15.0-66/drivers/auxdisplay 8 /usr/src/linux-headers-4.15.0-66/drivers/ps3 32 /usr/src/linux-headers-4.15.0-66/drivers/input/keyboard 12 /usr/src/linux-headers-4.15.0-66/drivers/input/rmi4 12 /usr/src/linux-headers-4.15.0-66/drivers/input/tablet 24 /usr/src/linux-headers-4.15.0-66/drivers/input/mouse 36 /usr/src/linux-headers-4.15.0-66/drivers/input/misc 48 /usr/src/linux-headers-4.15.0-66/drivers/input/touchscreen 20 /usr/src/linux-headers-4.15.0-66/drivers/input/serio 12 /usr/src/linux-headers-4.15.0-66/drivers/input/gameport 12 /usr/src/linux-headers-4.15.0-66/drivers/input/joystick/iforce 32 /usr/src/linux-headers-4.15.0-66/drivers/input/joystick 244 /usr/src/linux-headers-4.15.0-66/drivers/input 12 /usr/src/linux-headers-4.15.0-66/drivers/virtio 12 /usr/src/linux-headers-4.15.0-66/drivers/hwspinlock 24 /usr/src/linux-headers-4.15.0-66/drivers/clocksource 12 /usr/src/linux-headers-4.15.0-66/drivers/hwtracing/stm 12 /usr/src/linux-headers-4.15.0-66/drivers/hwtracing/intel_th 16 /usr/src/linux-headers-4.15.0-66/drivers/hwtracing/coresight 44 /usr/src/linux-headers-4.15.0-66/drivers/hwtracing 12 /usr/src/linux-headers-4.15.0-66/drivers/sbus/char 20 /usr/src/linux-headers-4.15.0-66/drivers/sbus 8 /usr/src/linux-headers-4.15.0-66/drivers/xen/xenfs 8 /usr/src/linux-headers-4.15.0-66/drivers/xen/events 8 /usr/src/linux-headers-4.15.0-66/drivers/xen/xen-pciback 8 /usr/src/linux-headers-4.15.0-66/drivers/xen/xenbus 52 /usr/src/linux-headers-4.15.0-66/drivers/xen 12 /usr/src/linux-headers-4.15.0-66/drivers/mux 12 /usr/src/linux-headers-4.15.0-66/drivers/phy/st 12 /usr/src/linux-headers-4.15.0-66/drivers/phy/qualcomm 12 /usr/src/linux-headers-4.15.0-66/drivers/phy/ti 12 /usr/src/linux-headers-4.15.0-66/drivers/phy/lantiq 12 /usr/src/linux-headers-4.15.0-66/drivers/phy/motorola 12 /usr/src/linux-headers-4.15.0-66/drivers/phy/tegra 12 /usr/src/linux-headers-4.15.0-66/drivers/phy/allwinner 12 /usr/src/linux-headers-4.15.0-66/drivers/phy/broadcom 12 /usr/src/linux-headers-4.15.0-66/drivers/phy/renesas 12 /usr/src/linux-headers-4.15.0-66/drivers/phy/marvell 12 /usr/src/linux-headers-4.15.0-66/drivers/phy/mediatek 12 /usr/src/linux-headers-4.15.0-66/drivers/phy/amlogic 12 /usr/src/linux-headers-4.15.0-66/drivers/phy/samsung 12 /usr/src/linux-headers-4.15.0-66/drivers/phy/hisilicon 12 /usr/src/linux-headers-4.15.0-66/drivers/phy/rockchip 12 /usr/src/linux-headers-4.15.0-66/drivers/phy/ralink 204 /usr/src/linux-headers-4.15.0-66/drivers/phy 120 /usr/src/linux-headers-4.15.0-66/drivers/crypto/vmx 8 /usr/src/linux-headers-4.15.0-66/drivers/crypto/amcc 12 /usr/src/linux-headers-4.15.0-66/drivers/crypto/stm32 8 /usr/src/linux-headers-4.15.0-66/drivers/crypto/bcm 12 /usr/src/linux-headers-4.15.0-66/drivers/crypto/chelsio 12 /usr/src/linux-headers-4.15.0-66/drivers/crypto/virtio 8 /usr/src/linux-headers-4.15.0-66/drivers/crypto/axis 8 /usr/src/linux-headers-4.15.0-66/drivers/crypto/ux500/cryp 8 /usr/src/linux-headers-4.15.0-66/drivers/crypto/ux500/hash 28 /usr/src/linux-headers-4.15.0-66/drivers/crypto/ux500 8 /usr/src/linux-headers-4.15.0-66/drivers/crypto/qat/qat_c3xxx 8 /usr/src/linux-headers-4.15.0-66/drivers/crypto/qat/qat_c62xvf 8 /usr/src/linux-headers-4.15.0-66/drivers/crypto/qat/qat_c62x 8 /usr/src/linux-headers-4.15.0-66/drivers/crypto/qat/qat_c3xxxvf 8 /usr/src/linux-headers-4.15.0-66/drivers/crypto/qat/qat_dh895xccvf 8 /usr/src/linux-headers-4.15.0-66/drivers/crypto/qat/qat_dh895xcc 8 /usr/src/linux-headers-4.15.0-66/drivers/crypto/qat/qat_common 68 /usr/src/linux-headers-4.15.0-66/drivers/crypto/qat 12 /usr/src/linux-headers-4.15.0-66/drivers/crypto/ccp 8 /usr/src/linux-headers-4.15.0-66/drivers/crypto/sunxi-ss 8 /usr/src/linux-headers-4.15.0-66/drivers/crypto/marvell 12 /usr/src/linux-headers-4.15.0-66/drivers/crypto/nx 8 /usr/src/linux-headers-4.15.0-66/drivers/crypto/mediatek 16 /usr/src/linux-headers-4.15.0-66/drivers/crypto/caam 8 /usr/src/linux-headers-4.15.0-66/drivers/crypto/rockchip 8 /usr/src/linux-headers-4.15.0-66/drivers/crypto/inside-secure 12 /usr/src/linux-headers-4.15.0-66/drivers/crypto/cavium/cpt 12 /usr/src/linux-headers-4.15.0-66/drivers/crypto/cavium/nitrox 8 /usr/src/linux-headers-4.15.0-66/drivers/crypto/cavium/zip 40 /usr/src/linux-headers-4.15.0-66/drivers/crypto/cavium 8 /usr/src/linux-headers-4.15.0-66/drivers/crypto/qce 436 /usr/src/linux-headers-4.15.0-66/drivers/crypto 12 /usr/src/linux-headers-4.15.0-66/drivers/bcma 12 /usr/src/linux-headers-4.15.0-66/drivers/pnp/pnpbios 12 /usr/src/linux-headers-4.15.0-66/drivers/pnp/pnpacpi 12 /usr/src/linux-headers-4.15.0-66/drivers/pnp/isapnp 48 /usr/src/linux-headers-4.15.0-66/drivers/pnp 8 /usr/src/linux-headers-4.15.0-66/drivers/block/xen-blkback 12 /usr/src/linux-headers-4.15.0-66/drivers/block/mtip32xx 8 /usr/src/linux-headers-4.15.0-66/drivers/block/aoe 24 /usr/src/linux-headers-4.15.0-66/drivers/block/paride 8 /usr/src/linux-headers-4.15.0-66/drivers/block/rsxx 12 /usr/src/linux-headers-4.15.0-66/drivers/block/drbd 12 /usr/src/linux-headers-4.15.0-66/drivers/block/zram 112 /usr/src/linux-headers-4.15.0-66/drivers/block 16 /usr/src/linux-headers-4.15.0-66/drivers/irqchip 12 /usr/src/linux-headers-4.15.0-66/drivers/scsi/cxlflash 12 /usr/src/linux-headers-4.15.0-66/drivers/scsi/be2iscsi 12 /usr/src/linux-headers-4.15.0-66/drivers/scsi/smartpqi 8 /usr/src/linux-headers-4.15.0-66/drivers/scsi/ibmvscsi 12 /usr/src/linux-headers-4.15.0-66/drivers/scsi/qla4xxx 8 /usr/src/linux-headers-4.15.0-66/drivers/scsi/bfa 8 /usr/src/linux-headers-4.15.0-66/drivers/scsi/aacraid 8 /usr/src/linux-headers-4.15.0-66/drivers/scsi/arcmsr 8 /usr/src/linux-headers-4.15.0-66/drivers/scsi/aic7xxx/aicasm 24 /usr/src/linux-headers-4.15.0-66/drivers/scsi/aic7xxx 8 /usr/src/linux-headers-4.15.0-66/drivers/scsi/snic 8 /usr/src/linux-headers-4.15.0-66/drivers/scsi/fcoe 12 /usr/src/linux-headers-4.15.0-66/drivers/scsi/mvsas 12 /usr/src/linux-headers-4.15.0-66/drivers/scsi/device_handler 12 /usr/src/linux-headers-4.15.0-66/drivers/scsi/ufs 8 /usr/src/linux-headers-4.15.0-66/drivers/scsi/ibmvscsi_tgt 12 /usr/src/linux-headers-4.15.0-66/drivers/scsi/osd 12 /usr/src/linux-headers-4.15.0-66/drivers/scsi/bnx2i 12 /usr/src/linux-headers-4.15.0-66/drivers/scsi/qedi 12 /usr/src/linux-headers-4.15.0-66/drivers/scsi/aic94xx 8 /usr/src/linux-headers-4.15.0-66/drivers/scsi/lpfc 12 /usr/src/linux-headers-4.15.0-66/drivers/scsi/csiostor 12 /usr/src/linux-headers-4.15.0-66/drivers/scsi/hisi_sas 12 /usr/src/linux-headers-4.15.0-66/drivers/scsi/qla2xxx 8 /usr/src/linux-headers-4.15.0-66/drivers/scsi/fnic 12 /usr/src/linux-headers-4.15.0-66/drivers/scsi/esas2r 12 /usr/src/linux-headers-4.15.0-66/drivers/scsi/libsas 8 /usr/src/linux-headers-4.15.0-66/drivers/scsi/libfc 12 /usr/src/linux-headers-4.15.0-66/drivers/scsi/pcmcia 12 /usr/src/linux-headers-4.15.0-66/drivers/scsi/cxgbi/cxgb4i 12 /usr/src/linux-headers-4.15.0-66/drivers/scsi/cxgbi/cxgb3i 36 /usr/src/linux-headers-4.15.0-66/drivers/scsi/cxgbi 12 /usr/src/linux-headers-4.15.0-66/drivers/scsi/bnx2fc 12 /usr/src/linux-headers-4.15.0-66/drivers/scsi/megaraid 8 /usr/src/linux-headers-4.15.0-66/drivers/scsi/pm8001 12 /usr/src/linux-headers-4.15.0-66/drivers/scsi/arm 12 /usr/src/linux-headers-4.15.0-66/drivers/scsi/qedf 8 /usr/src/linux-headers-4.15.0-66/drivers/scsi/isci 8 /usr/src/linux-headers-4.15.0-66/drivers/scsi/sym53c8xx_2 12 /usr/src/linux-headers-4.15.0-66/drivers/scsi/mpt3sas 528 /usr/src/linux-headers-4.15.0-66/drivers/scsi 12 /usr/src/linux-headers-4.15.0-66/drivers/amba 8 /usr/src/linux-headers-4.15.0-66/drivers/sh/maple 8 /usr/src/linux-headers-4.15.0-66/drivers/sh/superhyway 8 /usr/src/linux-headers-4.15.0-66/drivers/sh/clk 12 /usr/src/linux-headers-4.15.0-66/drivers/sh/intc 48 /usr/src/linux-headers-4.15.0-66/drivers/sh 12 /usr/src/linux-headers-4.15.0-66/drivers/thermal/int340x_thermal 12 /usr/src/linux-headers-4.15.0-66/drivers/thermal/st 12 /usr/src/linux-headers-4.15.0-66/drivers/thermal/qcom 12 /usr/src/linux-headers-4.15.0-66/drivers/thermal/tegra 12 /usr/src/linux-headers-4.15.0-66/drivers/thermal/broadcom 12 /usr/src/linux-headers-4.15.0-66/drivers/thermal/samsung 12 /usr/src/linux-headers-4.15.0-66/drivers/thermal/ti-soc-thermal 112 /usr/src/linux-headers-4.15.0-66/drivers/thermal 12 /usr/src/linux-headers-4.15.0-66/drivers/fpga 12 /usr/src/linux-headers-4.15.0-66/drivers/eisa 8 /usr/src/linux-headers-4.15.0-66/drivers/uwb/i1480/dfu 16 /usr/src/linux-headers-4.15.0-66/drivers/uwb/i1480 28 /usr/src/linux-headers-4.15.0-66/drivers/uwb 8 /usr/src/linux-headers-4.15.0-66/drivers/tc 12 /usr/src/linux-headers-4.15.0-66/drivers/misc/cxl 8 /usr/src/linux-headers-4.15.0-66/drivers/misc/ibmasm 12 /usr/src/linux-headers-4.15.0-66/drivers/misc/vmw_vmci 8 /usr/src/linux-headers-4.15.0-66/drivers/misc/sgi-gru 12 /usr/src/linux-headers-4.15.0-66/drivers/misc/ti-st 12 /usr/src/linux-headers-4.15.0-66/drivers/misc/lis3lv02d 12 /usr/src/linux-headers-4.15.0-66/drivers/misc/cb710 8 /usr/src/linux-headers-4.15.0-66/drivers/misc/sgi-xp 12 /usr/src/linux-headers-4.15.0-66/drivers/misc/eeprom 12 /usr/src/linux-headers-4.15.0-66/drivers/misc/cardreader 12 /usr/src/linux-headers-4.15.0-66/drivers/misc/c2port 12 /usr/src/linux-headers-4.15.0-66/drivers/misc/altera-stapl 12 /usr/src/linux-headers-4.15.0-66/drivers/misc/ocxl 12 /usr/src/linux-headers-4.15.0-66/drivers/misc/genwqe 8 /usr/src/linux-headers-4.15.0-66/drivers/misc/mic/cosm 8 /usr/src/linux-headers-4.15.0-66/drivers/misc/mic/scif 8 /usr/src/linux-headers-4.15.0-66/drivers/misc/mic/vop 8 /usr/src/linux-headers-4.15.0-66/drivers/misc/mic/card 8 /usr/src/linux-headers-4.15.0-66/drivers/misc/mic/bus 8 /usr/src/linux-headers-4.15.0-66/drivers/misc/mic/host 8 /usr/src/linux-headers-4.15.0-66/drivers/misc/mic/cosm_client 72 /usr/src/linux-headers-4.15.0-66/drivers/misc/mic 12 /usr/src/linux-headers-4.15.0-66/drivers/misc/echo 12 /usr/src/linux-headers-4.15.0-66/drivers/misc/mei 280 /usr/src/linux-headers-4.15.0-66/drivers/misc 8 /usr/src/linux-headers-4.15.0-66/drivers/of/unittest-data 20 /usr/src/linux-headers-4.15.0-66/drivers/of 12 /usr/src/linux-headers-4.15.0-66/drivers/hid/usbhid 12 /usr/src/linux-headers-4.15.0-66/drivers/hid/i2c-hid 12 /usr/src/linux-headers-4.15.0-66/drivers/hid/intel-ish-hid 80 /usr/src/linux-headers-4.15.0-66/drivers/hid 12 /usr/src/linux-headers-4.15.0-66/drivers/md/persistent-data 12 /usr/src/linux-headers-4.15.0-66/drivers/md/bcache 52 /usr/src/linux-headers-4.15.0-66/drivers/md 12 /usr/src/linux-headers-4.15.0-66/drivers/vfio/platform/reset 24 /usr/src/linux-headers-4.15.0-66/drivers/vfio/platform 12 /usr/src/linux-headers-4.15.0-66/drivers/vfio/mdev 12 /usr/src/linux-headers-4.15.0-66/drivers/vfio/pci 60 /usr/src/linux-headers-4.15.0-66/drivers/vfio 16 /usr/src/linux-headers-4.15.0-66/drivers/parisc 76 /usr/src/linux-headers-4.15.0-66/drivers/mfd 12 /usr/src/linux-headers-4.15.0-66/drivers/powercap 12 /usr/src/linux-headers-4.15.0-66/drivers/target/tcm_fc 12 /usr/src/linux-headers-4.15.0-66/drivers/target/sbp 12 /usr/src/linux-headers-4.15.0-66/drivers/target/iscsi/cxgbit 24 /usr/src/linux-headers-4.15.0-66/drivers/target/iscsi 12 /usr/src/linux-headers-4.15.0-66/drivers/target/loopback 72 /usr/src/linux-headers-4.15.0-66/drivers/target 16 /usr/src/linux-headers-4.15.0-66/drivers/nvmem 8 /usr/src/linux-headers-4.15.0-66/drivers/clk/spear 8 /usr/src/linux-headers-4.15.0-66/drivers/clk/nxp 8 /usr/src/linux-headers-4.15.0-66/drivers/clk/st 8 /usr/src/linux-headers-4.15.0-66/drivers/clk/loongson1 8 /usr/src/linux-headers-4.15.0-66/drivers/clk/mxs 12 /usr/src/linux-headers-4.15.0-66/drivers/clk/uniphier 12 /usr/src/linux-headers-4.15.0-66/drivers/clk/ti 16 /usr/src/linux-headers-4.15.0-66/drivers/clk/qcom 8 /usr/src/linux-headers-4.15.0-66/drivers/clk/at91 8 /usr/src/linux-headers-4.15.0-66/drivers/clk/mmp 12 /usr/src/linux-headers-4.15.0-66/drivers/clk/bcm 8 /usr/src/linux-headers-4.15.0-66/drivers/clk/h8300 12 /usr/src/linux-headers-4.15.0-66/drivers/clk/versatile 8 /usr/src/linux-headers-4.15.0-66/drivers/clk/berlin 8 /usr/src/linux-headers-4.15.0-66/drivers/clk/ingenic 8 /usr/src/linux-headers-4.15.0-66/drivers/clk/microchip 12 /usr/src/linux-headers-4.15.0-66/drivers/clk/tegra 8 /usr/src/linux-headers-4.15.0-66/drivers/clk/imx 12 /usr/src/linux-headers-4.15.0-66/drivers/clk/keystone 8 /usr/src/linux-headers-4.15.0-66/drivers/clk/axis 12 /usr/src/linux-headers-4.15.0-66/drivers/clk/sunxi-ng 8 /usr/src/linux-headers-4.15.0-66/drivers/clk/ux500 12 /usr/src/linux-headers-4.15.0-66/drivers/clk/imgtec 8 /usr/src/linux-headers-4.15.0-66/drivers/clk/zte 8 /usr/src/linux-headers-4.15.0-66/drivers/clk/x86 8 /usr/src/linux-headers-4.15.0-66/drivers/clk/pxa 12 /usr/src/linux-headers-4.15.0-66/drivers/clk/renesas 8 /usr/src/linux-headers-4.15.0-66/drivers/clk/sirf 8 /usr/src/linux-headers-4.15.0-66/drivers/clk/axs10x 16 /usr/src/linux-headers-4.15.0-66/drivers/clk/mediatek 12 /usr/src/linux-headers-4.15.0-66/drivers/clk/samsung 8 /usr/src/linux-headers-4.15.0-66/drivers/clk/pistachio 12 /usr/src/linux-headers-4.15.0-66/drivers/clk/mvebu 12 /usr/src/linux-headers-4.15.0-66/drivers/clk/hisilicon 8 /usr/src/linux-headers-4.15.0-66/drivers/clk/rockchip 8 /usr/src/linux-headers-4.15.0-66/drivers/clk/sunxi 8 /usr/src/linux-headers-4.15.0-66/drivers/clk/zynq 8 /usr/src/linux-headers-4.15.0-66/drivers/clk/socfpga 12 /usr/src/linux-headers-4.15.0-66/drivers/clk/meson 396 /usr/src/linux-headers-4.15.0-66/drivers/clk 12 /usr/src/linux-headers-4.15.0-66/drivers/ipack/carriers 12 /usr/src/linux-headers-4.15.0-66/drivers/ipack/devices 36 /usr/src/linux-headers-4.15.0-66/drivers/ipack 12 /usr/src/linux-headers-4.15.0-66/drivers/iio/buffer 12 /usr/src/linux-headers-4.15.0-66/drivers/iio/counter 12 /usr/src/linux-headers-4.15.0-66/drivers/iio/potentiostat 12 /usr/src/linux-headers-4.15.0-66/drivers/iio/frequency 12 /usr/src/linux-headers-4.15.0-66/drivers/iio/humidity 12 /usr/src/linux-headers-4.15.0-66/drivers/iio/common/ssp_sensors 12 /usr/src/linux-headers-4.15.0-66/drivers/iio/common/hid-sensors 12 /usr/src/linux-headers-4.15.0-66/drivers/iio/common/st_sensors 12 /usr/src/linux-headers-4.15.0-66/drivers/iio/common/ms_sensors 12 /usr/src/linux-headers-4.15.0-66/drivers/iio/common/cros_ec_sensors 72 /usr/src/linux-headers-4.15.0-66/drivers/iio/common 36 /usr/src/linux-headers-4.15.0-66/drivers/iio/adc 16 /usr/src/linux-headers-4.15.0-66/drivers/iio/magnetometer 12 /usr/src/linux-headers-4.15.0-66/drivers/iio/multiplexer 20 /usr/src/linux-headers-4.15.0-66/drivers/iio/light 12 /usr/src/linux-headers-4.15.0-66/drivers/iio/potentiometer 12 /usr/src/linux-headers-4.15.0-66/drivers/iio/proximity 12 /usr/src/linux-headers-4.15.0-66/drivers/iio/dummy 12 /usr/src/linux-headers-4.15.0-66/drivers/iio/gyro 12 /usr/src/linux-headers-4.15.0-66/drivers/iio/orientation 12 /usr/src/linux-headers-4.15.0-66/drivers/iio/chemical 20 /usr/src/linux-headers-4.15.0-66/drivers/iio/accel 16 /usr/src/linux-headers-4.15.0-66/drivers/iio/pressure 12 /usr/src/linux-headers-4.15.0-66/drivers/iio/amplifiers 12 /usr/src/linux-headers-4.15.0-66/drivers/iio/health 12 /usr/src/linux-headers-4.15.0-66/drivers/iio/temperature 12 /usr/src/linux-headers-4.15.0-66/drivers/iio/imu/inv_mpu6050 12 /usr/src/linux-headers-4.15.0-66/drivers/iio/imu/bmi160 12 /usr/src/linux-headers-4.15.0-66/drivers/iio/imu/st_lsm6dsx 48 /usr/src/linux-headers-4.15.0-66/drivers/iio/imu 20 /usr/src/linux-headers-4.15.0-66/drivers/iio/dac 12 /usr/src/linux-headers-4.15.0-66/drivers/iio/trigger 452 /usr/src/linux-headers-4.15.0-66/drivers/iio 12 /usr/src/linux-headers-4.15.0-66/drivers/mmc/core 40 /usr/src/linux-headers-4.15.0-66/drivers/mmc/host 64 /usr/src/linux-headers-4.15.0-66/drivers/mmc 12 /usr/src/linux-headers-4.15.0-66/drivers/dma/bestcomm 12 /usr/src/linux-headers-4.15.0-66/drivers/dma/hsu 8 /usr/src/linux-headers-4.15.0-66/drivers/dma/ioat 12 /usr/src/linux-headers-4.15.0-66/drivers/dma/qcom 8 /usr/src/linux-headers-4.15.0-66/drivers/dma/ipu 8 /usr/src/linux-headers-4.15.0-66/drivers/dma/ppc4xx 12 /usr/src/linux-headers-4.15.0-66/drivers/dma/sh 12 /usr/src/linux-headers-4.15.0-66/drivers/dma/dw 8 /usr/src/linux-headers-4.15.0-66/drivers/dma/xilinx 120 /usr/src/linux-headers-4.15.0-66/drivers/dma 8 /usr/src/linux-headers-4.15.0-66/drivers/firmware/efi/libstub 8 /usr/src/linux-headers-4.15.0-66/drivers/firmware/efi/test 32 /usr/src/linux-headers-4.15.0-66/drivers/firmware/efi 12 /usr/src/linux-headers-4.15.0-66/drivers/firmware/tegra 12 /usr/src/linux-headers-4.15.0-66/drivers/firmware/broadcom 12 /usr/src/linux-headers-4.15.0-66/drivers/firmware/google 12 /usr/src/linux-headers-4.15.0-66/drivers/firmware/meson 100 /usr/src/linux-headers-4.15.0-66/drivers/firmware 12 /usr/src/linux-headers-4.15.0-66/drivers/infiniband/sw/rxe 12 /usr/src/linux-headers-4.15.0-66/drivers/infiniband/sw/rdmavt 32 /usr/src/linux-headers-4.15.0-66/drivers/infiniband/sw 8 /usr/src/linux-headers-4.15.0-66/drivers/infiniband/core 12 /usr/src/linux-headers-4.15.0-66/drivers/infiniband/hw/hns 12 /usr/src/linux-headers-4.15.0-66/drivers/infiniband/hw/hfi1 12 /usr/src/linux-headers-4.15.0-66/drivers/infiniband/hw/qib 12 /usr/src/linux-headers-4.15.0-66/drivers/infiniband/hw/cxgb3 12 /usr/src/linux-headers-4.15.0-66/drivers/infiniband/hw/i40iw 12 /usr/src/linux-headers-4.15.0-66/drivers/infiniband/hw/ocrdma 12 /usr/src/linux-headers-4.15.0-66/drivers/infiniband/hw/qedr 12 /usr/src/linux-headers-4.15.0-66/drivers/infiniband/hw/mlx5 12 /usr/src/linux-headers-4.15.0-66/drivers/infiniband/hw/nes 12 /usr/src/linux-headers-4.15.0-66/drivers/infiniband/hw/mlx4 12 /usr/src/linux-headers-4.15.0-66/drivers/infiniband/hw/vmw_pvrdma 12 /usr/src/linux-headers-4.15.0-66/drivers/infiniband/hw/bnxt_re 12 /usr/src/linux-headers-4.15.0-66/drivers/infiniband/hw/mthca 12 /usr/src/linux-headers-4.15.0-66/drivers/infiniband/hw/cxgb4 12 /usr/src/linux-headers-4.15.0-66/drivers/infiniband/hw/usnic 188 /usr/src/linux-headers-4.15.0-66/drivers/infiniband/hw 12 /usr/src/linux-headers-4.15.0-66/drivers/infiniband/ulp/isert 12 /usr/src/linux-headers-4.15.0-66/drivers/infiniband/ulp/iser 12 /usr/src/linux-headers-4.15.0-66/drivers/infiniband/ulp/srp 12 /usr/src/linux-headers-4.15.0-66/drivers/infiniband/ulp/ipoib 12 /usr/src/linux-headers-4.15.0-66/drivers/infiniband/ulp/srpt 12 /usr/src/linux-headers-4.15.0-66/drivers/infiniband/ulp/opa_vnic 80 /usr/src/linux-headers-4.15.0-66/drivers/infiniband/ulp 320 /usr/src/linux-headers-4.15.0-66/drivers/infiniband 8 /usr/src/linux-headers-4.15.0-66/drivers/acpi/acpica 12 /usr/src/linux-headers-4.15.0-66/drivers/acpi/arm64 12 /usr/src/linux-headers-4.15.0-66/drivers/acpi/dptf 12 /usr/src/linux-headers-4.15.0-66/drivers/acpi/apei 12 /usr/src/linux-headers-4.15.0-66/drivers/acpi/nfit 84 /usr/src/linux-headers-4.15.0-66/drivers/acpi 12 /usr/src/linux-headers-4.15.0-66/drivers/rpmsg 16 /usr/src/linux-headers-4.15.0-66/drivers/ssb 12 /usr/src/linux-headers-4.15.0-66/drivers/connector 40 /usr/src/linux-headers-4.15.0-66/drivers/ata 16 /usr/src/linux-headers-4.15.0-66/drivers/w1/slaves 12 /usr/src/linux-headers-4.15.0-66/drivers/w1/masters 40 /usr/src/linux-headers-4.15.0-66/drivers/w1 20 /usr/src/linux-headers-4.15.0-66/drivers/pcmcia 12 /usr/src/linux-headers-4.15.0-66/drivers/usb/dwc3 12 /usr/src/linux-headers-4.15.0-66/drivers/usb/dwc2 12 /usr/src/linux-headers-4.15.0-66/drivers/usb/wusbcore 8 /usr/src/linux-headers-4.15.0-66/drivers/usb/common 12 /usr/src/linux-headers-4.15.0-66/drivers/usb/usbip 40 /usr/src/linux-headers-4.15.0-66/drivers/usb/serial 12 /usr/src/linux-headers-4.15.0-66/drivers/usb/chipidea 12 /usr/src/linux-headers-4.15.0-66/drivers/usb/atm 12 /usr/src/linux-headers-4.15.0-66/drivers/usb/mon 12 /usr/src/linux-headers-4.15.0-66/drivers/usb/class 16 /usr/src/linux-headers-4.15.0-66/drivers/usb/musb 12 /usr/src/linux-headers-4.15.0-66/drivers/usb/renesas_usbhs 8 /usr/src/linux-headers-4.15.0-66/drivers/usb/early 8 /usr/src/linux-headers-4.15.0-66/drivers/usb/c67x00 12 /usr/src/linux-headers-4.15.0-66/drivers/usb/core 12 /usr/src/linux-headers-4.15.0-66/drivers/usb/mtu3 16 /usr/src/linux-headers-4.15.0-66/drivers/usb/phy 12 /usr/src/linux-headers-4.15.0-66/drivers/usb/image 8 /usr/src/linux-headers-4.15.0-66/drivers/usb/host/whci 44 /usr/src/linux-headers-4.15.0-66/drivers/usb/host 12 /usr/src/linux-headers-4.15.0-66/drivers/usb/misc/sisusbvga 32 /usr/src/linux-headers-4.15.0-66/drivers/usb/misc 12 /usr/src/linux-headers-4.15.0-66/drivers/usb/typec/ucsi 12 /usr/src/linux-headers-4.15.0-66/drivers/usb/typec/fusb302 36 /usr/src/linux-headers-4.15.0-66/drivers/usb/typec 12 /usr/src/linux-headers-4.15.0-66/drivers/usb/isp1760 16 /usr/src/linux-headers-4.15.0-66/drivers/usb/storage 12 /usr/src/linux-headers-4.15.0-66/drivers/usb/gadget/udc/bdc 40 /usr/src/linux-headers-4.15.0-66/drivers/usb/gadget/udc 28 /usr/src/linux-headers-4.15.0-66/drivers/usb/gadget/legacy 8 /usr/src/linux-headers-4.15.0-66/drivers/usb/gadget/function 104 /usr/src/linux-headers-4.15.0-66/drivers/usb/gadget 500 /usr/src/linux-headers-4.15.0-66/drivers/usb 40 /usr/src/linux-headers-4.15.0-66/drivers/ide 8 /usr/src/linux-headers-4.15.0-66/drivers/cdrom 12 /usr/src/linux-headers-4.15.0-66/drivers/zorro 24 /usr/src/linux-headers-4.15.0-66/drivers/edac 12 /usr/src/linux-headers-4.15.0-66/drivers/lightnvm 16 /usr/src/linux-headers-4.15.0-66/drivers/uio 52 /usr/src/linux-headers-4.15.0-66/drivers/cpufreq 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/rtl8712 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/fwserial 8 /usr/src/linux-headers-4.15.0-66/drivers/staging/lustre/lustre/lov 8 /usr/src/linux-headers-4.15.0-66/drivers/staging/lustre/lustre/ptlrpc 8 /usr/src/linux-headers-4.15.0-66/drivers/staging/lustre/lustre/obdclass 8 /usr/src/linux-headers-4.15.0-66/drivers/staging/lustre/lustre/lmv 8 /usr/src/linux-headers-4.15.0-66/drivers/staging/lustre/lustre/fid 8 /usr/src/linux-headers-4.15.0-66/drivers/staging/lustre/lustre/mgc 8 /usr/src/linux-headers-4.15.0-66/drivers/staging/lustre/lustre/fld 8 /usr/src/linux-headers-4.15.0-66/drivers/staging/lustre/lustre/osc 8 /usr/src/linux-headers-4.15.0-66/drivers/staging/lustre/lustre/llite 8 /usr/src/linux-headers-4.15.0-66/drivers/staging/lustre/lustre/mdc 8 /usr/src/linux-headers-4.15.0-66/drivers/staging/lustre/lustre/obdecho 100 /usr/src/linux-headers-4.15.0-66/drivers/staging/lustre/lustre 8 /usr/src/linux-headers-4.15.0-66/drivers/staging/lustre/lnet/lnet 8 /usr/src/linux-headers-4.15.0-66/drivers/staging/lustre/lnet/libcfs 8 /usr/src/linux-headers-4.15.0-66/drivers/staging/lustre/lnet/selftest 8 /usr/src/linux-headers-4.15.0-66/drivers/staging/lustre/lnet/klnds/socklnd 8 /usr/src/linux-headers-4.15.0-66/drivers/staging/lustre/lnet/klnds/o2iblnd 24 /usr/src/linux-headers-4.15.0-66/drivers/staging/lustre/lnet/klnds 60 /usr/src/linux-headers-4.15.0-66/drivers/staging/lustre/lnet 172 /usr/src/linux-headers-4.15.0-66/drivers/staging/lustre 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/rtl8188eu 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/pi433 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/vboxvideo 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/gdm724x 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/skein 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/olpc_dcon 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/dgnc 24 /usr/src/linux-headers-4.15.0-66/drivers/staging/irda/drivers 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/irda/net/ircomm 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/irda/net/irlan 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/irda/net/irnet 48 /usr/src/linux-headers-4.15.0-66/drivers/staging/irda/net 76 /usr/src/linux-headers-4.15.0-66/drivers/staging/irda 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/goldfish 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/comedi/drivers 8 /usr/src/linux-headers-4.15.0-66/drivers/staging/comedi/kcomedilib 72 /usr/src/linux-headers-4.15.0-66/drivers/staging/comedi 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/nvec 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/vt6655 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/octeon 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/wilc1000 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/wlan-ng 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/vc04_services/bcm2835-camera 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/vc04_services/bcm2835-audio 36 /usr/src/linux-headers-4.15.0-66/drivers/staging/vc04_services 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/clocking-wizard 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/most/hdm-dim2 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/most/mostcore 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/most/aim-network 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/most/hdm-usb 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/most/aim-sound 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/most/hdm-i2c 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/most/aim-v4l2 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/most/aim-cdev 108 /usr/src/linux-headers-4.15.0-66/drivers/staging/most 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/xgifb 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/mt29f_spinand 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/android/ion 24 /usr/src/linux-headers-4.15.0-66/drivers/staging/android 16 /usr/src/linux-headers-4.15.0-66/drivers/staging/fbtft 8 /usr/src/linux-headers-4.15.0-66/drivers/staging/greybus/tools 24 /usr/src/linux-headers-4.15.0-66/drivers/staging/greybus 8 /usr/src/linux-headers-4.15.0-66/drivers/staging/fsl-mc/bus/dpio 20 /usr/src/linux-headers-4.15.0-66/drivers/staging/fsl-mc/bus 32 /usr/src/linux-headers-4.15.0-66/drivers/staging/fsl-mc 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/ccree 8 /usr/src/linux-headers-4.15.0-66/drivers/staging/rtlwifi/rtl8822be 8 /usr/src/linux-headers-4.15.0-66/drivers/staging/rtlwifi/btcoexist 28 /usr/src/linux-headers-4.15.0-66/drivers/staging/rtlwifi 16 /usr/src/linux-headers-4.15.0-66/drivers/staging/speakup 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/sm750fb 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/gs_fpgaboot 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/octeon-usb 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/ks7010 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/emxx_udc 8 /usr/src/linux-headers-4.15.0-66/drivers/staging/rtl8192u/ieee80211 20 /usr/src/linux-headers-4.15.0-66/drivers/staging/rtl8192u 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/board 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/iio/frequency 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/iio/adc 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/iio/cdc 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/iio/addac 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/iio/light 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/iio/impedance-analyzer 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/iio/gyro 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/iio/resolver 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/iio/accel 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/iio/meter 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/iio/trigger 144 /usr/src/linux-headers-4.15.0-66/drivers/staging/iio 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/unisys/visorbus 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/unisys/visorinput 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/unisys/visorhba 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/unisys/visornic 60 /usr/src/linux-headers-4.15.0-66/drivers/staging/unisys 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/rtl8723bs 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/typec 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/rtl8192e/rtl8192e 24 /usr/src/linux-headers-4.15.0-66/drivers/staging/rtl8192e 8 /usr/src/linux-headers-4.15.0-66/drivers/staging/fsl-dpaa2/ethernet 20 /usr/src/linux-headers-4.15.0-66/drivers/staging/fsl-dpaa2 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/netlogic 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/vme/devices 20 /usr/src/linux-headers-4.15.0-66/drivers/staging/vme 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/rts5208 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/media/atomisp/i2c/ov5693 24 /usr/src/linux-headers-4.15.0-66/drivers/staging/media/atomisp/i2c 8 /usr/src/linux-headers-4.15.0-66/drivers/staging/media/atomisp/platform/intel-mid 16 /usr/src/linux-headers-4.15.0-66/drivers/staging/media/atomisp/platform 8 /usr/src/linux-headers-4.15.0-66/drivers/staging/media/atomisp/pci/atomisp2/css2400 28 /usr/src/linux-headers-4.15.0-66/drivers/staging/media/atomisp/pci/atomisp2 40 /usr/src/linux-headers-4.15.0-66/drivers/staging/media/atomisp/pci 92 /usr/src/linux-headers-4.15.0-66/drivers/staging/media/atomisp 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/media/davinci_vpfe 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/media/imx 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/media/lirc 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/media/omap4iss 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/media/cxd2099 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/media/bcm2048 176 /usr/src/linux-headers-4.15.0-66/drivers/staging/media 12 /usr/src/linux-headers-4.15.0-66/drivers/staging/vt6656 1440 /usr/src/linux-headers-4.15.0-66/drivers/staging 12 /usr/src/linux-headers-4.15.0-66/drivers/rapidio/devices 12 /usr/src/linux-headers-4.15.0-66/drivers/rapidio/switches 36 /usr/src/linux-headers-4.15.0-66/drivers/rapidio 8 /usr/src/linux-headers-4.15.0-66/drivers/tty/vt 28 /usr/src/linux-headers-4.15.0-66/drivers/tty/serial/8250 8 /usr/src/linux-headers-4.15.0-66/drivers/tty/serial/jsm 8 /usr/src/linux-headers-4.15.0-66/drivers/tty/serial/cpm_uart 112 /usr/src/linux-headers-4.15.0-66/drivers/tty/serial 8 /usr/src/linux-headers-4.15.0-66/drivers/tty/ipwireless 12 /usr/src/linux-headers-4.15.0-66/drivers/tty/hvc 12 /usr/src/linux-headers-4.15.0-66/drivers/tty/serdev 180 /usr/src/linux-headers-4.15.0-66/drivers/tty 12 /usr/src/linux-headers-4.15.0-66/drivers/vme/boards 12 /usr/src/linux-headers-4.15.0-66/drivers/vme/bridges 36 /usr/src/linux-headers-4.15.0-66/drivers/vme 12 /usr/src/linux-headers-4.15.0-66/drivers/hv 76 /usr/src/linux-headers-4.15.0-66/drivers/watchdog 16 /usr/src/linux-headers-4.15.0-66/drivers/remoteproc 8 /usr/src/linux-headers-4.15.0-66/drivers/cpuidle/governors 32 /usr/src/linux-headers-4.15.0-66/drivers/cpuidle 12 /usr/src/linux-headers-4.15.0-66/drivers/isdn/hysdn 12 /usr/src/linux-headers-4.15.0-66/drivers/isdn/gigaset 8 /usr/src/linux-headers-4.15.0-66/drivers/isdn/isdnloop 12 /usr/src/linux-headers-4.15.0-66/drivers/isdn/capi 12 /usr/src/linux-headers-4.15.0-66/drivers/isdn/mISDN 24 /usr/src/linux-headers-4.15.0-66/drivers/isdn/hisax 16 /usr/src/linux-headers-4.15.0-66/drivers/isdn/i4l 12 /usr/src/linux-headers-4.15.0-66/drivers/isdn/hardware/mISDN 12 /usr/src/linux-headers-4.15.0-66/drivers/isdn/hardware/eicon 12 /usr/src/linux-headers-4.15.0-66/drivers/isdn/hardware/avm 48 /usr/src/linux-headers-4.15.0-66/drivers/isdn/hardware 8 /usr/src/linux-headers-4.15.0-66/drivers/isdn/divert 164 /usr/src/linux-headers-4.15.0-66/drivers/isdn 16 /usr/src/linux-headers-4.15.0-66/drivers/pci/dwc 12 /usr/src/linux-headers-4.15.0-66/drivers/pci/switch 16 /usr/src/linux-headers-4.15.0-66/drivers/pci/hotplug 12 /usr/src/linux-headers-4.15.0-66/drivers/pci/endpoint/functions 24 /usr/src/linux-headers-4.15.0-66/drivers/pci/endpoint 16 /usr/src/linux-headers-4.15.0-66/drivers/pci/pcie/aer 28 /usr/src/linux-headers-4.15.0-66/drivers/pci/pcie 16 /usr/src/linux-headers-4.15.0-66/drivers/pci/host 124 /usr/src/linux-headers-4.15.0-66/drivers/pci 24 /usr/src/linux-headers-4.15.0-66/drivers/pwm 16 /usr/src/linux-headers-4.15.0-66/drivers/mailbox 12 /usr/src/linux-headers-4.15.0-66/drivers/media/spi 12 /usr/src/linux-headers-4.15.0-66/drivers/media/firewire 20 /usr/src/linux-headers-4.15.0-66/drivers/media/tuners 12 /usr/src/linux-headers-4.15.0-66/drivers/media/cec 12 /usr/src/linux-headers-4.15.0-66/drivers/media/rc/img-ir 12 /usr/src/linux-headers-4.15.0-66/drivers/media/rc/keymaps 48 /usr/src/linux-headers-4.15.0-66/drivers/media/rc 12 /usr/src/linux-headers-4.15.0-66/drivers/media/common/b2c2 12 /usr/src/linux-headers-4.15.0-66/drivers/media/common/saa7146 12 /usr/src/linux-headers-4.15.0-66/drivers/media/common/v4l2-tpg 12 /usr/src/linux-headers-4.15.0-66/drivers/media/common/siano 60 /usr/src/linux-headers-4.15.0-66/drivers/media/common 12 /usr/src/linux-headers-4.15.0-66/drivers/media/radio/wl128x 12 /usr/src/linux-headers-4.15.0-66/drivers/media/radio/si4713 12 /usr/src/linux-headers-4.15.0-66/drivers/media/radio/si470x 60 /usr/src/linux-headers-4.15.0-66/drivers/media/radio 12 /usr/src/linux-headers-4.15.0-66/drivers/media/i2c/m5mols 8 /usr/src/linux-headers-4.15.0-66/drivers/media/i2c/adv748x 12 /usr/src/linux-headers-4.15.0-66/drivers/media/i2c/soc_camera 12 /usr/src/linux-headers-4.15.0-66/drivers/media/i2c/smiapp 12 /usr/src/linux-headers-4.15.0-66/drivers/media/i2c/cx25840 8 /usr/src/linux-headers-4.15.0-66/drivers/media/i2c/s5c73m3 12 /usr/src/linux-headers-4.15.0-66/drivers/media/i2c/et8ek8 112 /usr/src/linux-headers-4.15.0-66/drivers/media/i2c 12 /usr/src/linux-headers-4.15.0-66/drivers/media/platform/vimc 8 /usr/src/linux-headers-4.15.0-66/drivers/media/platform/tegra-cec 12 /usr/src/linux-headers-4.15.0-66/drivers/media/platform/rcar-vin 8 /usr/src/linux-headers-4.15.0-66/drivers/media/platform/omap3isp 12 /usr/src/linux-headers-4.15.0-66/drivers/media/platform/davinci 12 /usr/src/linux-headers-4.15.0-66/drivers/media/platform/soc_camera 8 /usr/src/linux-headers-4.15.0-66/drivers/media/platform/sti/cec 8 /usr/src/linux-headers-4.15.0-66/drivers/media/platform/sti/bdisp 8 /usr/src/linux-headers-4.15.0-66/drivers/media/platform/sti/hva 8 /usr/src/linux-headers-4.15.0-66/drivers/media/platform/sti/delta 12 /usr/src/linux-headers-4.15.0-66/drivers/media/platform/sti/c8sectpfe 48 /usr/src/linux-headers-4.15.0-66/drivers/media/platform/sti 8 /usr/src/linux-headers-4.15.0-66/drivers/media/platform/mtk-vpu 12 /usr/src/linux-headers-4.15.0-66/drivers/media/platform/am437x 8 /usr/src/linux-headers-4.15.0-66/drivers/media/platform/stm32 8 /usr/src/linux-headers-4.15.0-66/drivers/media/platform/qcom/venus 8 /usr/src/linux-headers-4.15.0-66/drivers/media/platform/qcom/camss-8x16 20 /usr/src/linux-headers-4.15.0-66/drivers/media/platform/qcom 8 /usr/src/linux-headers-4.15.0-66/drivers/media/platform/s5p-g2d 8 /usr/src/linux-headers-4.15.0-66/drivers/media/platform/s3c-camif 8 /usr/src/linux-headers-4.15.0-66/drivers/media/platform/cec-gpio 8 /usr/src/linux-headers-4.15.0-66/drivers/media/platform/s5p-cec 8 /usr/src/linux-headers-4.15.0-66/drivers/media/platform/vsp1 8 /usr/src/linux-headers-4.15.0-66/drivers/media/platform/mtk-vcodec 12 /usr/src/linux-headers-4.15.0-66/drivers/media/platform/vivid 8 /usr/src/linux-headers-4.15.0-66/drivers/media/platform/exynos-gsc 8 /usr/src/linux-headers-4.15.0-66/drivers/media/platform/s5p-mfc 12 /usr/src/linux-headers-4.15.0-66/drivers/media/platform/blackfin 12 /usr/src/linux-headers-4.15.0-66/drivers/media/platform/marvell-ccic 12 /usr/src/linux-headers-4.15.0-66/drivers/media/platform/omap 8 /usr/src/linux-headers-4.15.0-66/drivers/media/platform/mtk-jpeg 8 /usr/src/linux-headers-4.15.0-66/drivers/media/platform/coda 8 /usr/src/linux-headers-4.15.0-66/drivers/media/platform/mtk-mdp 8 /usr/src/linux-headers-4.15.0-66/drivers/media/platform/s5p-jpeg 8 /usr/src/linux-headers-4.15.0-66/drivers/media/platform/ti-vpe 8 /usr/src/linux-headers-4.15.0-66/drivers/media/platform/rockchip/rga 12 /usr/src/linux-headers-4.15.0-66/drivers/media/platform/rockchip 12 /usr/src/linux-headers-4.15.0-66/drivers/media/platform/atmel 12 /usr/src/linux-headers-4.15.0-66/drivers/media/platform/exynos4-is 8 /usr/src/linux-headers-4.15.0-66/drivers/media/platform/meson 12 /usr/src/linux-headers-4.15.0-66/drivers/media/platform/xilinx 396 /usr/src/linux-headers-4.15.0-66/drivers/media/platform 12 /usr/src/linux-headers-4.15.0-66/drivers/media/v4l2-core 12 /usr/src/linux-headers-4.15.0-66/drivers/media/mmc/siano 24 /usr/src/linux-headers-4.15.0-66/drivers/media/mmc 12 /usr/src/linux-headers-4.15.0-66/drivers/media/dvb-core 20 /usr/src/linux-headers-4.15.0-66/drivers/media/usb/dvb-usb 12 /usr/src/linux-headers-4.15.0-66/drivers/media/usb/ttusb-dec 12 /usr/src/linux-headers-4.15.0-66/drivers/media/usb/au0828 12 /usr/src/linux-headers-4.15.0-66/drivers/media/usb/stkwebcam 12 /usr/src/linux-headers-4.15.0-66/drivers/media/usb/usbtv 12 /usr/src/linux-headers-4.15.0-66/drivers/media/usb/pwc 12 /usr/src/linux-headers-4.15.0-66/drivers/media/usb/gspca/gl860 12 /usr/src/linux-headers-4.15.0-66/drivers/media/usb/gspca/m5602 12 /usr/src/linux-headers-4.15.0-66/drivers/media/usb/gspca/stv06xx 64 /usr/src/linux-headers-4.15.0-66/drivers/media/usb/gspca 12 /usr/src/linux-headers-4.15.0-66/drivers/media/usb/b2c2 12 /usr/src/linux-headers-4.15.0-66/drivers/media/usb/rainshadow-cec 12 /usr/src/linux-headers-4.15.0-66/drivers/media/usb/ttusb-budget 12 /usr/src/linux-headers-4.15.0-66/drivers/media/usb/hackrf 12 /usr/src/linux-headers-4.15.0-66/drivers/media/usb/uvc 12 /usr/src/linux-headers-4.15.0-66/drivers/media/usb/usbvision 12 /usr/src/linux-headers-4.15.0-66/drivers/media/usb/em28xx 12 /usr/src/linux-headers-4.15.0-66/drivers/media/usb/zr364xx 12 /usr/src/linux-headers-4.15.0-66/drivers/media/usb/airspy 12 /usr/src/linux-headers-4.15.0-66/drivers/media/usb/stk1160 12 /usr/src/linux-headers-4.15.0-66/drivers/media/usb/s2255 12 /usr/src/linux-headers-4.15.0-66/drivers/media/usb/hdpvr 12 /usr/src/linux-headers-4.15.0-66/drivers/media/usb/pvrusb2 12 /usr/src/linux-headers-4.15.0-66/drivers/media/usb/cx231xx 12 /usr/src/linux-headers-4.15.0-66/drivers/media/usb/tm6000 12 /usr/src/linux-headers-4.15.0-66/drivers/media/usb/cpia2 12 /usr/src/linux-headers-4.15.0-66/drivers/media/usb/msi2500 12 /usr/src/linux-headers-4.15.0-66/drivers/media/usb/as102 12 /usr/src/linux-headers-4.15.0-66/drivers/media/usb/pulse8-cec 12 /usr/src/linux-headers-4.15.0-66/drivers/media/usb/siano 12 /usr/src/linux-headers-4.15.0-66/drivers/media/usb/go7007 16 /usr/src/linux-headers-4.15.0-66/drivers/media/usb/dvb-usb-v2 424 /usr/src/linux-headers-4.15.0-66/drivers/media/usb 12 /usr/src/linux-headers-4.15.0-66/drivers/media/dvb-frontends/drx39xyj 52 /usr/src/linux-headers-4.15.0-66/drivers/media/dvb-frontends 12 /usr/src/linux-headers-4.15.0-66/drivers/media/pci/dm1105 12 /usr/src/linux-headers-4.15.0-66/drivers/media/pci/meye 12 /usr/src/linux-headers-4.15.0-66/drivers/media/pci/ngene 12 /usr/src/linux-headers-4.15.0-66/drivers/media/pci/smipcie 12 /usr/src/linux-headers-4.15.0-66/drivers/media/pci/cx18 12 /usr/src/linux-headers-4.15.0-66/drivers/media/pci/tw68 12 /usr/src/linux-headers-4.15.0-66/drivers/media/pci/ivtv 12 /usr/src/linux-headers-4.15.0-66/drivers/media/pci/solo6x10 12 /usr/src/linux-headers-4.15.0-66/drivers/media/pci/pt3 12 /usr/src/linux-headers-4.15.0-66/drivers/media/pci/pluto2 12 /usr/src/linux-headers-4.15.0-66/drivers/media/pci/b2c2 12 /usr/src/linux-headers-4.15.0-66/drivers/media/pci/bt8xx 12 /usr/src/linux-headers-4.15.0-66/drivers/media/pci/saa7146 12 /usr/src/linux-headers-4.15.0-66/drivers/media/pci/netup_unidvb 16 /usr/src/linux-headers-4.15.0-66/drivers/media/pci/ttpci 12 /usr/src/linux-headers-4.15.0-66/drivers/media/pci/sta2x11 12 /usr/src/linux-headers-4.15.0-66/drivers/media/pci/pt1 12 /usr/src/linux-headers-4.15.0-66/drivers/media/pci/saa7134 12 /usr/src/linux-headers-4.15.0-66/drivers/media/pci/cobalt 12 /usr/src/linux-headers-4.15.0-66/drivers/media/pci/dt3155 12 /usr/src/linux-headers-4.15.0-66/drivers/media/pci/zoran 12 /usr/src/linux-headers-4.15.0-66/drivers/media/pci/mantis 12 /usr/src/linux-headers-4.15.0-66/drivers/media/pci/cx88 12 /usr/src/linux-headers-4.15.0-66/drivers/media/pci/saa7164 12 /usr/src/linux-headers-4.15.0-66/drivers/media/pci/cx23885 12 /usr/src/linux-headers-4.15.0-66/drivers/media/pci/tw5864 12 /usr/src/linux-headers-4.15.0-66/drivers/media/pci/cx25821 12 /usr/src/linux-headers-4.15.0-66/drivers/media/pci/tw686x 12 /usr/src/linux-headers-4.15.0-66/drivers/media/pci/ddbridge 364 /usr/src/linux-headers-4.15.0-66/drivers/media/pci 1636 /usr/src/linux-headers-4.15.0-66/drivers/media 12 /usr/src/linux-headers-4.15.0-66/drivers/sfi 16352 /usr/src/linux-headers-4.15.0-66/drivers 8 /usr/src/linux-headers-4.15.0-66/samples/hidraw 8 /usr/src/linux-headers-4.15.0-66/samples/kfifo 8 /usr/src/linux-headers-4.15.0-66/samples/timers 8 /usr/src/linux-headers-4.15.0-66/samples/livepatch 8 /usr/src/linux-headers-4.15.0-66/samples/trace_printk 8 /usr/src/linux-headers-4.15.0-66/samples/kobject 8 /usr/src/linux-headers-4.15.0-66/samples/vfio-mdev 80 /usr/src/linux-headers-4.15.0-66/samples/bpf 8 /usr/src/linux-headers-4.15.0-66/samples/kprobes 8 /usr/src/linux-headers-4.15.0-66/samples/auxdisplay 8 /usr/src/linux-headers-4.15.0-66/samples/hw_breakpoint 8 /usr/src/linux-headers-4.15.0-66/samples/trace_events 8 /usr/src/linux-headers-4.15.0-66/samples/blackfin 44 /usr/src/linux-headers-4.15.0-66/samples/pktgen 8 /usr/src/linux-headers-4.15.0-66/samples/configfs 8 /usr/src/linux-headers-4.15.0-66/samples/rpmsg 8 /usr/src/linux-headers-4.15.0-66/samples/uhid 8 /usr/src/linux-headers-4.15.0-66/samples/connector 8 /usr/src/linux-headers-4.15.0-66/samples/v4l 8 /usr/src/linux-headers-4.15.0-66/samples/kdb 8 /usr/src/linux-headers-4.15.0-66/samples/seccomp 8 /usr/src/linux-headers-4.15.0-66/samples/mic/mpssd 12 /usr/src/linux-headers-4.15.0-66/samples/mic 8 /usr/src/linux-headers-4.15.0-66/samples/mei 8 /usr/src/linux-headers-4.15.0-66/samples/watchdog 8 /usr/src/linux-headers-4.15.0-66/samples/statx 8 /usr/src/linux-headers-4.15.0-66/samples/sockmap 332 /usr/src/linux-headers-4.15.0-66/samples 8 /usr/src/linux-headers-4.15.0-66/ipc 16 /usr/src/linux-headers-4.15.0-66/Documentation/sphinx 8 /usr/src/linux-headers-4.15.0-66/Documentation/features 8 /usr/src/linux-headers-4.15.0-66/Documentation/EDID 8 /usr/src/linux-headers-4.15.0-66/Documentation/s390 16 /usr/src/linux-headers-4.15.0-66/Documentation/kbuild 48 /usr/src/linux-headers-4.15.0-66/Documentation/trace/postprocess 52 /usr/src/linux-headers-4.15.0-66/Documentation/trace 16 /usr/src/linux-headers-4.15.0-66/Documentation/aoe 8 /usr/src/linux-headers-4.15.0-66/Documentation/scsi/scsi_transport_srp 12 /usr/src/linux-headers-4.15.0-66/Documentation/scsi 8 /usr/src/linux-headers-4.15.0-66/Documentation/cdrom 8 /usr/src/linux-headers-4.15.0-66/Documentation/filesystems/cifs 12 /usr/src/linux-headers-4.15.0-66/Documentation/filesystems 8 /usr/src/linux-headers-4.15.0-66/Documentation/media 176 /usr/src/linux-headers-4.15.0-66/Documentation 20 /usr/src/linux-headers-4.15.0-66/ubuntu/vbox/vboxvideo 24 /usr/src/linux-headers-4.15.0-66/ubuntu/vbox/vboxguest 20 /usr/src/linux-headers-4.15.0-66/ubuntu/vbox/vboxsf 72 /usr/src/linux-headers-4.15.0-66/ubuntu/vbox 8 /usr/src/linux-headers-4.15.0-66/ubuntu/include 12 /usr/src/linux-headers-4.15.0-66/ubuntu/hio 8 /usr/src/linux-headers-4.15.0-66/ubuntu/xr-usb-serial 112 /usr/src/linux-headers-4.15.0-66/ubuntu 68 /usr/src/linux-headers-4.15.0-66/init 12 /usr/src/linux-headers-4.15.0-66/net/wimax 12 /usr/src/linux-headers-4.15.0-66/net/nfc/nci 12 /usr/src/linux-headers-4.15.0-66/net/nfc/hci 36 /usr/src/linux-headers-4.15.0-66/net/nfc 12 /usr/src/linux-headers-4.15.0-66/net/bluetooth/hidp 12 /usr/src/linux-headers-4.15.0-66/net/bluetooth/rfcomm 12 /usr/src/linux-headers-4.15.0-66/net/bluetooth/bnep 12 /usr/src/linux-headers-4.15.0-66/net/bluetooth/cmtp 60 /usr/src/linux-headers-4.15.0-66/net/bluetooth 12 /usr/src/linux-headers-4.15.0-66/net/tipc 12 /usr/src/linux-headers-4.15.0-66/net/qrtr 8 /usr/src/linux-headers-4.15.0-66/net/key 12 /usr/src/linux-headers-4.15.0-66/net/netlink 8 /usr/src/linux-headers-4.15.0-66/net/dccp/ccids 20 /usr/src/linux-headers-4.15.0-66/net/dccp 8 /usr/src/linux-headers-4.15.0-66/net/rose 12 /usr/src/linux-headers-4.15.0-66/net/xfrm 36 /usr/src/linux-headers-4.15.0-66/net/sched 12 /usr/src/linux-headers-4.15.0-66/net/kcm 12 /usr/src/linux-headers-4.15.0-66/net/decnet/netfilter 24 /usr/src/linux-headers-4.15.0-66/net/decnet 12 /usr/src/linux-headers-4.15.0-66/net/can 12 /usr/src/linux-headers-4.15.0-66/net/unix 12 /usr/src/linux-headers-4.15.0-66/net/sctp 12 /usr/src/linux-headers-4.15.0-66/net/packet 8 /usr/src/linux-headers-4.15.0-66/net/sunrpc/auth_gss 8 /usr/src/linux-headers-4.15.0-66/net/sunrpc/xprtrdma 28 /usr/src/linux-headers-4.15.0-66/net/sunrpc 12 /usr/src/linux-headers-4.15.0-66/net/mpls 12 /usr/src/linux-headers-4.15.0-66/net/rds 16 /usr/src/linux-headers-4.15.0-66/net/wireless 12 /usr/src/linux-headers-4.15.0-66/net/atm 12 /usr/src/linux-headers-4.15.0-66/net/psample 12 /usr/src/linux-headers-4.15.0-66/net/mac802154 8 /usr/src/linux-headers-4.15.0-66/net/bpf 24 /usr/src/linux-headers-4.15.0-66/net/ipv4/netfilter 60 /usr/src/linux-headers-4.15.0-66/net/ipv4 12 /usr/src/linux-headers-4.15.0-66/net/iucv 12 /usr/src/linux-headers-4.15.0-66/net/smc 12 /usr/src/linux-headers-4.15.0-66/net/dns_resolver 12 /usr/src/linux-headers-4.15.0-66/net/dsa 12 /usr/src/linux-headers-4.15.0-66/net/nsh 8 /usr/src/linux-headers-4.15.0-66/net/ethernet 12 /usr/src/linux-headers-4.15.0-66/net/vmw_vsock 12 /usr/src/linux-headers-4.15.0-66/net/rfkill 12 /usr/src/linux-headers-4.15.0-66/net/llc 12 /usr/src/linux-headers-4.15.0-66/net/switchdev 8 /usr/src/linux-headers-4.15.0-66/net/netrom 12 /usr/src/linux-headers-4.15.0-66/net/openvswitch 12 /usr/src/linux-headers-4.15.0-66/net/ieee802154/6lowpan 24 /usr/src/linux-headers-4.15.0-66/net/ieee802154 8 /usr/src/linux-headers-4.15.0-66/net/core 12 /usr/src/linux-headers-4.15.0-66/net/ife 12 /usr/src/linux-headers-4.15.0-66/net/9p 12 /usr/src/linux-headers-4.15.0-66/net/x25 12 /usr/src/linux-headers-4.15.0-66/net/phonet 12 /usr/src/linux-headers-4.15.0-66/net/rxrpc 8 /usr/src/linux-headers-4.15.0-66/net/appletalk 12 /usr/src/linux-headers-4.15.0-66/net/lapb 12 /usr/src/linux-headers-4.15.0-66/net/netlabel 12 /usr/src/linux-headers-4.15.0-66/net/ipx 12 /usr/src/linux-headers-4.15.0-66/net/batman-adv 12 /usr/src/linux-headers-4.15.0-66/net/l3mdev 12 /usr/src/linux-headers-4.15.0-66/net/strparser 12 /usr/src/linux-headers-4.15.0-66/net/802 12 /usr/src/linux-headers-4.15.0-66/net/8021q 12 /usr/src/linux-headers-4.15.0-66/net/l2tp 16 /usr/src/linux-headers-4.15.0-66/net/bridge/netfilter 28 /usr/src/linux-headers-4.15.0-66/net/bridge 12 /usr/src/linux-headers-4.15.0-66/net/hsr 12 /usr/src/linux-headers-4.15.0-66/net/6lowpan 20 /usr/src/linux-headers-4.15.0-66/net/mac80211 12 /usr/src/linux-headers-4.15.0-66/net/ncsi 12 /usr/src/linux-headers-4.15.0-66/net/caif 12 /usr/src/linux-headers-4.15.0-66/net/dcb 12 /usr/src/linux-headers-4.15.0-66/net/tls 20 /usr/src/linux-headers-4.15.0-66/net/netfilter/ipvs 16 /usr/src/linux-headers-4.15.0-66/net/netfilter/ipset 104 /usr/src/linux-headers-4.15.0-66/net/netfilter 12 /usr/src/linux-headers-4.15.0-66/net/ceph 8 /usr/src/linux-headers-4.15.0-66/net/ipv6/ila 20 /usr/src/linux-headers-4.15.0-66/net/ipv6/netfilter 48 /usr/src/linux-headers-4.15.0-66/net/ipv6 16 /usr/src/linux-headers-4.15.0-66/net/ax25 1152 /usr/src/linux-headers-4.15.0-66/net 8 /usr/src/linux-headers-4.15.0-66/tools/spi 8 /usr/src/linux-headers-4.15.0-66/tools/power/cpupower/utils 8 /usr/src/linux-headers-4.15.0-66/tools/power/cpupower/debug/x86_64 8 /usr/src/linux-headers-4.15.0-66/tools/power/cpupower/debug/i386 8 /usr/src/linux-headers-4.15.0-66/tools/power/cpupower/debug/kernel 28 /usr/src/linux-headers-4.15.0-66/tools/power/cpupower/debug 20 /usr/src/linux-headers-4.15.0-66/tools/power/cpupower/bench 72 /usr/src/linux-headers-4.15.0-66/tools/power/cpupower 8 /usr/src/linux-headers-4.15.0-66/tools/power/pm-graph 8 /usr/src/linux-headers-4.15.0-66/tools/power/x86/x86_energy_perf_policy 8 /usr/src/linux-headers-4.15.0-66/tools/power/x86/turbostat 20 /usr/src/linux-headers-4.15.0-66/tools/power/x86 8 /usr/src/linux-headers-4.15.0-66/tools/power/acpi/tools/acpidbg 8 /usr/src/linux-headers-4.15.0-66/tools/power/acpi/tools/acpidump 8 /usr/src/linux-headers-4.15.0-66/tools/power/acpi/tools/ec 28 /usr/src/linux-headers-4.15.0-66/tools/power/acpi/tools 44 /usr/src/linux-headers-4.15.0-66/tools/power/acpi 148 /usr/src/linux-headers-4.15.0-66/tools/power 16 /usr/src/linux-headers-4.15.0-66/tools/perf/Documentation 44 /usr/src/linux-headers-4.15.0-66/tools/perf/trace/beauty 48 /usr/src/linux-headers-4.15.0-66/tools/perf/trace 12 /usr/src/linux-headers-4.15.0-66/tools/perf/tests/shell/lib 32 /usr/src/linux-headers-4.15.0-66/tools/perf/tests/shell 36 /usr/src/linux-headers-4.15.0-66/tools/perf/tests 8 /usr/src/linux-headers-4.15.0-66/tools/perf/util 8 /usr/src/linux-headers-4.15.0-66/tools/perf/scripts/perl/Perf-Trace-Util 44 /usr/src/linux-headers-4.15.0-66/tools/perf/scripts/perl 48 /usr/src/linux-headers-4.15.0-66/tools/perf/scripts 8 /usr/src/linux-headers-4.15.0-66/tools/perf/arch/s390 8 /usr/src/linux-headers-4.15.0-66/tools/perf/arch/arm64 8 /usr/src/linux-headers-4.15.0-66/tools/perf/arch/sparc 8 /usr/src/linux-headers-4.15.0-66/tools/perf/arch/xtensa 8 /usr/src/linux-headers-4.15.0-66/tools/perf/arch/sh 8 /usr/src/linux-headers-4.15.0-66/tools/perf/arch/x86/tests 8 /usr/src/linux-headers-4.15.0-66/tools/perf/arch/x86/entry/syscalls 12 /usr/src/linux-headers-4.15.0-66/tools/perf/arch/x86/entry 28 /usr/src/linux-headers-4.15.0-66/tools/perf/arch/x86 8 /usr/src/linux-headers-4.15.0-66/tools/perf/arch/arm 8 /usr/src/linux-headers-4.15.0-66/tools/perf/arch/powerpc 88 /usr/src/linux-headers-4.15.0-66/tools/perf/arch 336 /usr/src/linux-headers-4.15.0-66/tools/perf 8 /usr/src/linux-headers-4.15.0-66/tools/firewire 8 /usr/src/linux-headers-4.15.0-66/tools/gpio 12 /usr/src/linux-headers-4.15.0-66/tools/build/feature 8 /usr/src/linux-headers-4.15.0-66/tools/build/tests/ex 16 /usr/src/linux-headers-4.15.0-66/tools/build/tests 52 /usr/src/linux-headers-4.15.0-66/tools/build 8 /usr/src/linux-headers-4.15.0-66/tools/accounting 8 /usr/src/linux-headers-4.15.0-66/tools/bpf/bpftool/Documentation 16 /usr/src/linux-headers-4.15.0-66/tools/bpf/bpftool 24 /usr/src/linux-headers-4.15.0-66/tools/bpf 8 /usr/src/linux-headers-4.15.0-66/tools/time 8 /usr/src/linux-headers-4.15.0-66/tools/leds 12 /usr/src/linux-headers-4.15.0-66/tools/virtio/ringtest 8 /usr/src/linux-headers-4.15.0-66/tools/virtio/vhost_test 8 /usr/src/linux-headers-4.15.0-66/tools/virtio/virtio-trace 36 /usr/src/linux-headers-4.15.0-66/tools/virtio 8 /usr/src/linux-headers-4.15.0-66/tools/wmi 8 /usr/src/linux-headers-4.15.0-66/tools/cgroup 8 /usr/src/linux-headers-4.15.0-66/tools/thermal/tmon 12 /usr/src/linux-headers-4.15.0-66/tools/thermal 8 /usr/src/linux-headers-4.15.0-66/tools/kvm/kvm_stat 12 /usr/src/linux-headers-4.15.0-66/tools/kvm 8 /usr/src/linux-headers-4.15.0-66/tools/iio 12 /usr/src/linux-headers-4.15.0-66/tools/scripts 16 /usr/src/linux-headers-4.15.0-66/tools/vm 8 /usr/src/linux-headers-4.15.0-66/tools/pcmcia 12 /usr/src/linux-headers-4.15.0-66/tools/usb/usbip/vudc 8 /usr/src/linux-headers-4.15.0-66/tools/usb/usbip/libsrc 8 /usr/src/linux-headers-4.15.0-66/tools/usb/usbip/src 44 /usr/src/linux-headers-4.15.0-66/tools/usb/usbip 8 /usr/src/linux-headers-4.15.0-66/tools/usb/ffs-aio-example/multibuff/host_app 12 /usr/src/linux-headers-4.15.0-66/tools/usb/ffs-aio-example/multibuff 8 /usr/src/linux-headers-4.15.0-66/tools/usb/ffs-aio-example/simple/host_app 12 /usr/src/linux-headers-4.15.0-66/tools/usb/ffs-aio-example/simple 28 /usr/src/linux-headers-4.15.0-66/tools/usb/ffs-aio-example 88 /usr/src/linux-headers-4.15.0-66/tools/usb 8 /usr/src/linux-headers-4.15.0-66/tools/nfsd 8 /usr/src/linux-headers-4.15.0-66/tools/lib/subcmd 12 /usr/src/linux-headers-4.15.0-66/tools/lib/bpf 8 /usr/src/linux-headers-4.15.0-66/tools/lib/api 16 /usr/src/linux-headers-4.15.0-66/tools/lib/lockdep 12 /usr/src/linux-headers-4.15.0-66/tools/lib/traceevent 60 /usr/src/linux-headers-4.15.0-66/tools/lib 8 /usr/src/linux-headers-4.15.0-66/tools/laptop/freefall 8 /usr/src/linux-headers-4.15.0-66/tools/laptop/dslm 20 /usr/src/linux-headers-4.15.0-66/tools/laptop 20 /usr/src/linux-headers-4.15.0-66/tools/hv 12 /usr/src/linux-headers-4.15.0-66/tools/objtool 16 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/memory-hotplug 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/breakpoints 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/mqueue 16 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/ntb 20 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/gpio 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/ftrace 12 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/drivers/gpu 16 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/drivers 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/ipc 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/timers 16 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/media_tests 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/sigaltstack 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/ptp 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/networking/timestamping 12 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/networking 20 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/bpf 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/kcmp 12 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/splice 24 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/kmod 12 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/android/ion 24 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/android 48 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/net 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/size 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/mount 12 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/efivarfs 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/prctl 12 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/futex/functional 24 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/futex 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/pstore 16 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/memfd 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/vDSO 12 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/static_keys 24 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/sysctl 16 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/cpu-hotplug 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/ptrace 12 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/x86 28 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/firmware 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/membarrier 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/locking 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/vm 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/sync 12 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/intel_pstate 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/seccomp 12 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/user 28 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/zram 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/capabilities 104 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/rcutorture/bin 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/rcutorture/configs/rcuperf 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/rcutorture/configs/rcu 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/rcutorture/configs/lock 28 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/rcutorture/configs 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/rcutorture/formal/srcu-cbmc/tests/store_buffering 16 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/rcutorture/formal/srcu-cbmc/tests 24 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/rcutorture/formal/srcu-cbmc 28 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/rcutorture/formal 164 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/rcutorture 20 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/lib 40 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/cpufreq 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/exec 40 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/netfilter 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/nsfs 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/watchdog 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/filesystems 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/powerpc/alignment 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/powerpc/cache_shape 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/powerpc/benchmarks 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/powerpc/syscalls 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/powerpc/switch_endian 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/powerpc/math 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/powerpc/mm 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/powerpc/signal 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/powerpc/pmu/ebb 16 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/powerpc/pmu 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/powerpc/vphn 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/powerpc/stringloops 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/powerpc/primitives 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/powerpc/ptrace 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/powerpc/copyloops 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/powerpc/scripts 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/powerpc/dscr 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/powerpc/tm 152 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/powerpc 8 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests/ia64 1052 /usr/src/linux-headers-4.15.0-66/tools/testing/selftests 8 /usr/src/linux-headers-4.15.0-66/tools/testing/vsock 8 /usr/src/linux-headers-4.15.0-66/tools/testing/nvdimm/test 20 /usr/src/linux-headers-4.15.0-66/tools/testing/nvdimm 108 /usr/src/linux-headers-4.15.0-66/tools/testing/ktest 8 /usr/src/linux-headers-4.15.0-66/tools/testing/scatterlist 8 /usr/src/linux-headers-4.15.0-66/tools/testing/radix-tree 12 /usr/src/linux-headers-4.15.0-66/tools/testing/fault-injection 1220 /usr/src/linux-headers-4.15.0-66/tools/testing 8 /usr/src/linux-headers-4.15.0-66/tools/pci 2176 /usr/src/linux-headers-4.15.0-66/tools 12 /usr/src/linux-headers-4.15.0-66/sound/spi 12 /usr/src/linux-headers-4.15.0-66/sound/soc/spear 12 /usr/src/linux-headers-4.15.0-66/sound/soc/generic 20 /usr/src/linux-headers-4.15.0-66/sound/soc/intel/boards 8 /usr/src/linux-headers-4.15.0-66/sound/soc/intel/baytrail 8 /usr/src/linux-headers-4.15.0-66/sound/soc/intel/common 8 /usr/src/linux-headers-4.15.0-66/sound/soc/intel/haswell 8 /usr/src/linux-headers-4.15.0-66/sound/soc/intel/atom/sst 16 /usr/src/linux-headers-4.15.0-66/sound/soc/intel/atom 8 /usr/src/linux-headers-4.15.0-66/sound/soc/intel/skylake 80 /usr/src/linux-headers-4.15.0-66/sound/soc/intel 12 /usr/src/linux-headers-4.15.0-66/sound/soc/txx9 12 /usr/src/linux-headers-4.15.0-66/sound/soc/davinci 12 /usr/src/linux-headers-4.15.0-66/sound/soc/mxs 12 /usr/src/linux-headers-4.15.0-66/sound/soc/sti 12 /usr/src/linux-headers-4.15.0-66/sound/soc/dwc 12 /usr/src/linux-headers-4.15.0-66/sound/soc/qcom 12 /usr/src/linux-headers-4.15.0-66/sound/soc/bcm 12 /usr/src/linux-headers-4.15.0-66/sound/soc/stm 12 /usr/src/linux-headers-4.15.0-66/sound/soc/kirkwood 16 /usr/src/linux-headers-4.15.0-66/sound/soc/tegra 12 /usr/src/linux-headers-4.15.0-66/sound/soc/img 12 /usr/src/linux-headers-4.15.0-66/sound/soc/adi 12 /usr/src/linux-headers-4.15.0-66/sound/soc/au1x 12 /usr/src/linux-headers-4.15.0-66/sound/soc/ux500 20 /usr/src/linux-headers-4.15.0-66/sound/soc/fsl 12 /usr/src/linux-headers-4.15.0-66/sound/soc/xtensa 8 /usr/src/linux-headers-4.15.0-66/sound/soc/sh/rcar 20 /usr/src/linux-headers-4.15.0-66/sound/soc/sh 16 /usr/src/linux-headers-4.15.0-66/sound/soc/blackfin 12 /usr/src/linux-headers-4.15.0-66/sound/soc/cirrus 12 /usr/src/linux-headers-4.15.0-66/sound/soc/zte 16 /usr/src/linux-headers-4.15.0-66/sound/soc/omap 56 /usr/src/linux-headers-4.15.0-66/sound/soc/codecs 16 /usr/src/linux-headers-4.15.0-66/sound/soc/pxa 12 /usr/src/linux-headers-4.15.0-66/sound/soc/sirf 12 /usr/src/linux-headers-4.15.0-66/sound/soc/amd 8 /usr/src/linux-headers-4.15.0-66/sound/soc/mediatek/common 8 /usr/src/linux-headers-4.15.0-66/sound/soc/mediatek/mt2701 8 /usr/src/linux-headers-4.15.0-66/sound/soc/mediatek/mt8173 36 /usr/src/linux-headers-4.15.0-66/sound/soc/mediatek 16 /usr/src/linux-headers-4.15.0-66/sound/soc/samsung 12 /usr/src/linux-headers-4.15.0-66/sound/soc/nuc900 12 /usr/src/linux-headers-4.15.0-66/sound/soc/hisilicon 12 /usr/src/linux-headers-4.15.0-66/sound/soc/rockchip 12 /usr/src/linux-headers-4.15.0-66/sound/soc/atmel 12 /usr/src/linux-headers-4.15.0-66/sound/soc/sunxi 12 /usr/src/linux-headers-4.15.0-66/sound/soc/jz4740 616 /usr/src/linux-headers-4.15.0-66/sound/soc 8 /usr/src/linux-headers-4.15.0-66/sound/firewire/oxfw 8 /usr/src/linux-headers-4.15.0-66/sound/firewire/bebob 8 /usr/src/linux-headers-4.15.0-66/sound/firewire/tascam 8 /usr/src/linux-headers-4.15.0-66/sound/firewire/digi00x 8 /usr/src/linux-headers-4.15.0-66/sound/firewire/motu 8 /usr/src/linux-headers-4.15.0-66/sound/firewire/fireworks 8 /usr/src/linux-headers-4.15.0-66/sound/firewire/dice 8 /usr/src/linux-headers-4.15.0-66/sound/firewire/fireface 80 /usr/src/linux-headers-4.15.0-66/sound/firewire 8 /usr/src/linux-headers-4.15.0-66/sound/drivers/opl4 8 /usr/src/linux-headers-4.15.0-66/sound/drivers/pcsp 8 /usr/src/linux-headers-4.15.0-66/sound/drivers/vx 8 /usr/src/linux-headers-4.15.0-66/sound/drivers/mpu401 8 /usr/src/linux-headers-4.15.0-66/sound/drivers/opl3 56 /usr/src/linux-headers-4.15.0-66/sound/drivers 12 /usr/src/linux-headers-4.15.0-66/sound/ppc 8 /usr/src/linux-headers-4.15.0-66/sound/i2c/other 16 /usr/src/linux-headers-4.15.0-66/sound/i2c 12 /usr/src/linux-headers-4.15.0-66/sound/ac97 12 /usr/src/linux-headers-4.15.0-66/sound/aoa/fabrics 8 /usr/src/linux-headers-4.15.0-66/sound/aoa/soundbus/i2sbus 20 /usr/src/linux-headers-4.15.0-66/sound/aoa/soundbus 8 /usr/src/linux-headers-4.15.0-66/sound/aoa/core 12 /usr/src/linux-headers-4.15.0-66/sound/aoa/codecs 64 /usr/src/linux-headers-4.15.0-66/sound/aoa 8 /usr/src/linux-headers-4.15.0-66/sound/core/seq/oss 20 /usr/src/linux-headers-4.15.0-66/sound/core/seq 8 /usr/src/linux-headers-4.15.0-66/sound/core/oss 44 /usr/src/linux-headers-4.15.0-66/sound/core 12 /usr/src/linux-headers-4.15.0-66/sound/sparc 8 /usr/src/linux-headers-4.15.0-66/sound/isa/cs423x 8 /usr/src/linux-headers-4.15.0-66/sound/isa/es1688 8 /usr/src/linux-headers-4.15.0-66/sound/isa/opti9xx 8 /usr/src/linux-headers-4.15.0-66/sound/isa/sb 8 /usr/src/linux-headers-4.15.0-66/sound/isa/galaxy 8 /usr/src/linux-headers-4.15.0-66/sound/isa/gus 8 /usr/src/linux-headers-4.15.0-66/sound/isa/wavefront 8 /usr/src/linux-headers-4.15.0-66/sound/isa/ad1816a 8 /usr/src/linux-headers-4.15.0-66/sound/isa/wss 8 /usr/src/linux-headers-4.15.0-66/sound/isa/msnd 8 /usr/src/linux-headers-4.15.0-66/sound/isa/ad1848 112 /usr/src/linux-headers-4.15.0-66/sound/isa 12 /usr/src/linux-headers-4.15.0-66/sound/sh 12 /usr/src/linux-headers-4.15.0-66/sound/mips 12 /usr/src/linux-headers-4.15.0-66/sound/parisc 12 /usr/src/linux-headers-4.15.0-66/sound/x86 8 /usr/src/linux-headers-4.15.0-66/sound/synth/emux 20 /usr/src/linux-headers-4.15.0-66/sound/synth 8 /usr/src/linux-headers-4.15.0-66/sound/pcmcia/pdaudiocf 8 /usr/src/linux-headers-4.15.0-66/sound/pcmcia/vx 28 /usr/src/linux-headers-4.15.0-66/sound/pcmcia 12 /usr/src/linux-headers-4.15.0-66/sound/usb/line6 8 /usr/src/linux-headers-4.15.0-66/sound/usb/usx2y 8 /usr/src/linux-headers-4.15.0-66/sound/usb/hiface 8 /usr/src/linux-headers-4.15.0-66/sound/usb/bcd2000 8 /usr/src/linux-headers-4.15.0-66/sound/usb/misc 8 /usr/src/linux-headers-4.15.0-66/sound/usb/caiaq 8 /usr/src/linux-headers-4.15.0-66/sound/usb/6fire 76 /usr/src/linux-headers-4.15.0-66/sound/usb 8 /usr/src/linux-headers-4.15.0-66/sound/hda/ext 20 /usr/src/linux-headers-4.15.0-66/sound/hda 12 /usr/src/linux-headers-4.15.0-66/sound/oss/dmasound 16 /usr/src/linux-headers-4.15.0-66/sound/oss 12 /usr/src/linux-headers-4.15.0-66/sound/atmel 12 /usr/src/linux-headers-4.15.0-66/sound/arm 8 /usr/src/linux-headers-4.15.0-66/sound/pci/korg1212 8 /usr/src/linux-headers-4.15.0-66/sound/pci/ymfpci 8 /usr/src/linux-headers-4.15.0-66/sound/pci/nm256 8 /usr/src/linux-headers-4.15.0-66/sound/pci/aw2 8 /usr/src/linux-headers-4.15.0-66/sound/pci/ali5451 8 /usr/src/linux-headers-4.15.0-66/sound/pci/asihpi 8 /usr/src/linux-headers-4.15.0-66/sound/pci/rme9652 8 /usr/src/linux-headers-4.15.0-66/sound/pci/ice1712 8 /usr/src/linux-headers-4.15.0-66/sound/pci/lx6464es 8 /usr/src/linux-headers-4.15.0-66/sound/pci/ac97 8 /usr/src/linux-headers-4.15.0-66/sound/pci/riptide 8 /usr/src/linux-headers-4.15.0-66/sound/pci/vx222 8 /usr/src/linux-headers-4.15.0-66/sound/pci/emu10k1 8 /usr/src/linux-headers-4.15.0-66/sound/pci/ca0106 8 /usr/src/linux-headers-4.15.0-66/sound/pci/au88x0 8 /usr/src/linux-headers-4.15.0-66/sound/pci/cs5535audio 8 /usr/src/linux-headers-4.15.0-66/sound/pci/ctxfi 8 /usr/src/linux-headers-4.15.0-66/sound/pci/trident 8 /usr/src/linux-headers-4.15.0-66/sound/pci/pcxhr 8 /usr/src/linux-headers-4.15.0-66/sound/pci/lola 8 /usr/src/linux-headers-4.15.0-66/sound/pci/echoaudio 8 /usr/src/linux-headers-4.15.0-66/sound/pci/mixart 8 /usr/src/linux-headers-4.15.0-66/sound/pci/oxygen 8 /usr/src/linux-headers-4.15.0-66/sound/pci/cs46xx 16 /usr/src/linux-headers-4.15.0-66/sound/pci/hda 244 /usr/src/linux-headers-4.15.0-66/sound/pci 1524 /usr/src/linux-headers-4.15.0-66/sound 8 /usr/src/linux-headers-4.15.0-66/mm/kasan 48 /usr/src/linux-headers-4.15.0-66/mm 12 /usr/src/linux-headers-4.15.0-66/security/yama 12 /usr/src/linux-headers-4.15.0-66/security/tomoyo 12 /usr/src/linux-headers-4.15.0-66/security/integrity/evm 16 /usr/src/linux-headers-4.15.0-66/security/integrity/ima 40 /usr/src/linux-headers-4.15.0-66/security/integrity 16 /usr/src/linux-headers-4.15.0-66/security/apparmor 12 /usr/src/linux-headers-4.15.0-66/security/smack 12 /usr/src/linux-headers-4.15.0-66/security/loadpin 8 /usr/src/linux-headers-4.15.0-66/security/keys/encrypted-keys 20 /usr/src/linux-headers-4.15.0-66/security/keys 12 /usr/src/linux-headers-4.15.0-66/security/selinux 164 /usr/src/linux-headers-4.15.0-66/security 24 /usr/src/linux-headers-4.15.0-66/include/soc/at91 8 /usr/src/linux-headers-4.15.0-66/include/soc/sa1100 108 /usr/src/linux-headers-4.15.0-66/include/soc/tegra 16 /usr/src/linux-headers-4.15.0-66/include/soc/imx 8 /usr/src/linux-headers-4.15.0-66/include/soc/brcmstb 88 /usr/src/linux-headers-4.15.0-66/include/soc/fsl/qe 144 /usr/src/linux-headers-4.15.0-66/include/soc/fsl 16 /usr/src/linux-headers-4.15.0-66/include/soc/nps 8 /usr/src/linux-headers-4.15.0-66/include/soc/mediatek 8 /usr/src/linux-headers-4.15.0-66/include/soc/rockchip 16 /usr/src/linux-headers-4.15.0-66/include/soc/arc 12 /usr/src/linux-headers-4.15.0-66/include/soc/bcm2835 372 /usr/src/linux-headers-4.15.0-66/include/soc 24 /usr/src/linux-headers-4.15.0-66/include/uapi/rdma/hfi 168 /usr/src/linux-headers-4.15.0-66/include/uapi/rdma 48 /usr/src/linux-headers-4.15.0-66/include/uapi/mtd 12 /usr/src/linux-headers-4.15.0-66/include/uapi/linux/spi 20 /usr/src/linux-headers-4.15.0-66/include/uapi/linux/wimax 8 /usr/src/linux-headers-4.15.0-66/include/uapi/linux/hdlc 28 /usr/src/linux-headers-4.15.0-66/include/uapi/linux/raid 8 /usr/src/linux-headers-4.15.0-66/include/uapi/linux/cifs 8 /usr/src/linux-headers-4.15.0-66/include/uapi/linux/sched 40 /usr/src/linux-headers-4.15.0-66/include/uapi/linux/can 44 /usr/src/linux-headers-4.15.0-66/include/uapi/linux/netfilter_ipv4 8 /usr/src/linux-headers-4.15.0-66/include/uapi/linux/sunrpc 12 /usr/src/linux-headers-4.15.0-66/include/uapi/linux/hsi 12 /usr/src/linux-headers-4.15.0-66/include/uapi/linux/byteorder 20 /usr/src/linux-headers-4.15.0-66/include/uapi/linux/android 64 /usr/src/linux-headers-4.15.0-66/include/uapi/linux/tc_act 88 /usr/src/linux-headers-4.15.0-66/include/uapi/linux/dvb 12 /usr/src/linux-headers-4.15.0-66/include/uapi/linux/iio 8 /usr/src/linux-headers-4.15.0-66/include/uapi/linux/mmc 16 /usr/src/linux-headers-4.15.0-66/include/uapi/linux/netfilter_arp 24 /usr/src/linux-headers-4.15.0-66/include/uapi/linux/genwqe 144 /usr/src/linux-headers-4.15.0-66/include/uapi/linux/usb 80 /usr/src/linux-headers-4.15.0-66/include/uapi/linux/netfilter_bridge 24 /usr/src/linux-headers-4.15.0-66/include/uapi/linux/nfsd 20 /usr/src/linux-headers-4.15.0-66/include/uapi/linux/tc_ematch 16 /usr/src/linux-headers-4.15.0-66/include/uapi/linux/caif 28 /usr/src/linux-headers-4.15.0-66/include/uapi/linux/netfilter/ipset 428 /usr/src/linux-headers-4.15.0-66/include/uapi/linux/netfilter 56 /usr/src/linux-headers-4.15.0-66/include/uapi/linux/netfilter_ipv6 12 /usr/src/linux-headers-4.15.0-66/include/uapi/linux/isdn 5280 /usr/src/linux-headers-4.15.0-66/include/uapi/linux 204 /usr/src/linux-headers-4.15.0-66/include/uapi/asm-generic 20 /usr/src/linux-headers-4.15.0-66/include/uapi/video 204 /usr/src/linux-headers-4.15.0-66/include/uapi/sound 24 /usr/src/linux-headers-4.15.0-66/include/uapi/xen 60 /usr/src/linux-headers-4.15.0-66/include/uapi/scsi/fc 96 /usr/src/linux-headers-4.15.0-66/include/uapi/scsi 396 /usr/src/linux-headers-4.15.0-66/include/uapi/drm 12 /usr/src/linux-headers-4.15.0-66/include/uapi/misc 6456 /usr/src/linux-headers-4.15.0-66/include/uapi 448 /usr/src/linux-headers-4.15.0-66/include/rdma 8 /usr/src/linux-headers-4.15.0-66/include/memory 16 /usr/src/linux-headers-4.15.0-66/include/ras 196 /usr/src/linux-headers-4.15.0-66/include/linux/spi 20 /usr/src/linux-headers-4.15.0-66/include/linux/wimax 32 /usr/src/linux-headers-4.15.0-66/include/linux/soc/ti 24 /usr/src/linux-headers-4.15.0-66/include/linux/soc/qcom 8 /usr/src/linux-headers-4.15.0-66/include/linux/soc/actions 8 /usr/src/linux-headers-4.15.0-66/include/linux/soc/dove 8 /usr/src/linux-headers-4.15.0-66/include/linux/soc/brcmstb 12 /usr/src/linux-headers-4.15.0-66/include/linux/soc/renesas 8 /usr/src/linux-headers-4.15.0-66/include/linux/soc/mediatek 40 /usr/src/linux-headers-4.15.0-66/include/linux/soc/samsung 8 /usr/src/linux-headers-4.15.0-66/include/linux/soc/sunxi 152 /usr/src/linux-headers-4.15.0-66/include/linux/soc 88 /usr/src/linux-headers-4.15.0-66/include/linux/power 12 /usr/src/linux-headers-4.15.0-66/include/linux/perf 36 /usr/src/linux-headers-4.15.0-66/include/linux/rtc 48 /usr/src/linux-headers-4.15.0-66/include/linux/gpio 20 /usr/src/linux-headers-4.15.0-66/include/linux/raid 344 /usr/src/linux-headers-4.15.0-66/include/linux/mlx5 28 /usr/src/linux-headers-4.15.0-66/include/linux/avf 24 /usr/src/linux-headers-4.15.0-66/include/linux/crush 56 /usr/src/linux-headers-4.15.0-66/include/linux/pinctrl 172 /usr/src/linux-headers-4.15.0-66/include/linux/regulator 144 /usr/src/linux-headers-4.15.0-66/include/linux/sched 272 /usr/src/linux-headers-4.15.0-66/include/linux/mtd 8 /usr/src/linux-headers-4.15.0-66/include/linux/reset 20 /usr/src/linux-headers-4.15.0-66/include/linux/can/platform 12 /usr/src/linux-headers-4.15.0-66/include/linux/can/dev 60 /usr/src/linux-headers-4.15.0-66/include/linux/can 8 /usr/src/linux-headers-4.15.0-66/include/linux/netfilter_ipv4 228 /usr/src/linux-headers-4.15.0-66/include/linux/sunrpc 24 /usr/src/linux-headers-4.15.0-66/include/linux/hsi 8 /usr/src/linux-headers-4.15.0-66/include/linux/i2c 96 /usr/src/linux-headers-4.15.0-66/include/linux/mlx4 20 /usr/src/linux-headers-4.15.0-66/include/linux/byteorder 8 /usr/src/linux-headers-4.15.0-66/include/linux/dsa 12 /usr/src/linux-headers-4.15.0-66/include/linux/extcon 104 /usr/src/linux-headers-4.15.0-66/include/linux/input 12 /usr/src/linux-headers-4.15.0-66/include/linux/mux 8 /usr/src/linux-headers-4.15.0-66/include/linux/phy/tegra 44 /usr/src/linux-headers-4.15.0-66/include/linux/phy 24 /usr/src/linux-headers-4.15.0-66/include/linux/platform_data/x86 60 /usr/src/linux-headers-4.15.0-66/include/linux/platform_data/media 1084 /usr/src/linux-headers-4.15.0-66/include/linux/platform_data 100 /usr/src/linux-headers-4.15.0-66/include/linux/bcma 40 /usr/src/linux-headers-4.15.0-66/include/linux/fsl/bestcomm 64 /usr/src/linux-headers-4.15.0-66/include/linux/fsl 100 /usr/src/linux-headers-4.15.0-66/include/linux/irqchip 80 /usr/src/linux-headers-4.15.0-66/include/linux/amba 20 /usr/src/linux-headers-4.15.0-66/include/linux/fpga 20 /usr/src/linux-headers-4.15.0-66/include/linux/ulpi 40 /usr/src/linux-headers-4.15.0-66/include/linux/uwb 44 /usr/src/linux-headers-4.15.0-66/include/linux/unaligned 44 /usr/src/linux-headers-4.15.0-66/include/linux/mfd/da9062 28 /usr/src/linux-headers-4.15.0-66/include/linux/mfd/mt6323 48 /usr/src/linux-headers-4.15.0-66/include/linux/mfd/da9063 212 /usr/src/linux-headers-4.15.0-66/include/linux/mfd/wm831x 500 /usr/src/linux-headers-4.15.0-66/include/linux/mfd/arizona 48 /usr/src/linux-headers-4.15.0-66/include/linux/mfd/da9150 36 /usr/src/linux-headers-4.15.0-66/include/linux/mfd/da9055 24 /usr/src/linux-headers-4.15.0-66/include/linux/mfd/mt6397 308 /usr/src/linux-headers-4.15.0-66/include/linux/mfd/wm8994 36 /usr/src/linux-headers-4.15.0-66/include/linux/mfd/pcf50633 132 /usr/src/linux-headers-4.15.0-66/include/linux/mfd/wm8350 72 /usr/src/linux-headers-4.15.0-66/include/linux/mfd/syscon 40 /usr/src/linux-headers-4.15.0-66/include/linux/mfd/da9052 68 /usr/src/linux-headers-4.15.0-66/include/linux/mfd/samsung 64 /usr/src/linux-headers-4.15.0-66/include/linux/mfd/abx500 2988 /usr/src/linux-headers-4.15.0-66/include/linux/mfd 56 /usr/src/linux-headers-4.15.0-66/include/linux/clk 20 /usr/src/linux-headers-4.15.0-66/include/linux/iio/frequency 28 /usr/src/linux-headers-4.15.0-66/include/linux/iio/common 12 /usr/src/linux-headers-4.15.0-66/include/linux/iio/adc 8 /usr/src/linux-headers-4.15.0-66/include/linux/iio/magnetometer 12 /usr/src/linux-headers-4.15.0-66/include/linux/iio/gyro 12 /usr/src/linux-headers-4.15.0-66/include/linux/iio/timer 8 /usr/src/linux-headers-4.15.0-66/include/linux/iio/accel 12 /usr/src/linux-headers-4.15.0-66/include/linux/iio/imu 24 /usr/src/linux-headers-4.15.0-66/include/linux/iio/dac 268 /usr/src/linux-headers-4.15.0-66/include/linux/iio 108 /usr/src/linux-headers-4.15.0-66/include/linux/mmc 36 /usr/src/linux-headers-4.15.0-66/include/linux/dma 8 /usr/src/linux-headers-4.15.0-66/include/linux/firmware/meson 12 /usr/src/linux-headers-4.15.0-66/include/linux/firmware 280 /usr/src/linux-headers-4.15.0-66/include/linux/qed 36 /usr/src/linux-headers-4.15.0-66/include/linux/decompress 12 /usr/src/linux-headers-4.15.0-66/include/linux/rpmsg 132 /usr/src/linux-headers-4.15.0-66/include/linux/ssb 8 /usr/src/linux-headers-4.15.0-66/include/linux/netfilter_arp 476 /usr/src/linux-headers-4.15.0-66/include/linux/usb 16 /usr/src/linux-headers-4.15.0-66/include/linux/netfilter_bridge 56 /usr/src/linux-headers-4.15.0-66/include/linux/netfilter/ipset 200 /usr/src/linux-headers-4.15.0-66/include/linux/netfilter 40 /usr/src/linux-headers-4.15.0-66/include/linux/lockd 192 /usr/src/linux-headers-4.15.0-66/include/linux/ceph 12 /usr/src/linux-headers-4.15.0-66/include/linux/remoteproc 8 /usr/src/linux-headers-4.15.0-66/include/linux/netfilter_ipv6 28 /usr/src/linux-headers-4.15.0-66/include/linux/isdn 8 /usr/src/linux-headers-4.15.0-66/include/linux/mailbox 19528 /usr/src/linux-headers-4.15.0-66/include/linux 92 /usr/src/linux-headers-4.15.0-66/include/asm-generic/bitops 708 /usr/src/linux-headers-4.15.0-66/include/asm-generic 580 /usr/src/linux-headers-4.15.0-66/include/video 872 /usr/src/linux-headers-4.15.0-66/include/trace/events 912 /usr/src/linux-headers-4.15.0-66/include/trace 16 /usr/src/linux-headers-4.15.0-66/include/dt-bindings/soc 104 /usr/src/linux-headers-4.15.0-66/include/dt-bindings/power 36 /usr/src/linux-headers-4.15.0-66/include/dt-bindings/gpio 8 /usr/src/linux-headers-4.15.0-66/include/dt-bindings/spmi 24 /usr/src/linux-headers-4.15.0-66/include/dt-bindings/interrupt-controller 36 /usr/src/linux-headers-4.15.0-66/include/dt-bindings/memory 136 /usr/src/linux-headers-4.15.0-66/include/dt-bindings/pinctrl 8 /usr/src/linux-headers-4.15.0-66/include/dt-bindings/regulator 228 /usr/src/linux-headers-4.15.0-66/include/dt-bindings/reset 1164 /usr/src/linux-headers-4.15.0-66/include/dt-bindings/clock 8 /usr/src/linux-headers-4.15.0-66/include/dt-bindings/i2c 12 /usr/src/linux-headers-4.15.0-66/include/dt-bindings/net 36 /usr/src/linux-headers-4.15.0-66/include/dt-bindings/sound 24 /usr/src/linux-headers-4.15.0-66/include/dt-bindings/leds 12 /usr/src/linux-headers-4.15.0-66/include/dt-bindings/input 8 /usr/src/linux-headers-4.15.0-66/include/dt-bindings/mux 12 /usr/src/linux-headers-4.15.0-66/include/dt-bindings/phy 8 /usr/src/linux-headers-4.15.0-66/include/dt-bindings/display 24 /usr/src/linux-headers-4.15.0-66/include/dt-bindings/thermal 8 /usr/src/linux-headers-4.15.0-66/include/dt-bindings/mips 60 /usr/src/linux-headers-4.15.0-66/include/dt-bindings/mfd 8 /usr/src/linux-headers-4.15.0-66/include/dt-bindings/clk 8 /usr/src/linux-headers-4.15.0-66/include/dt-bindings/iio/adc 20 /usr/src/linux-headers-4.15.0-66/include/dt-bindings/iio 20 /usr/src/linux-headers-4.15.0-66/include/dt-bindings/dma 8 /usr/src/linux-headers-4.15.0-66/include/dt-bindings/arm 8 /usr/src/linux-headers-4.15.0-66/include/dt-bindings/pwm 8 /usr/src/linux-headers-4.15.0-66/include/dt-bindings/mailbox 20 /usr/src/linux-headers-4.15.0-66/include/dt-bindings/media 2068 /usr/src/linux-headers-4.15.0-66/include/dt-bindings 120 /usr/src/linux-headers-4.15.0-66/include/math-emu 76 /usr/src/linux-headers-4.15.0-66/include/net/nfc 176 /usr/src/linux-headers-4.15.0-66/include/net/bluetooth 168 /usr/src/linux-headers-4.15.0-66/include/net/sctp 32 /usr/src/linux-headers-4.15.0-66/include/net/iucv 64 /usr/src/linux-headers-4.15.0-66/include/net/tc_act 40 /usr/src/linux-headers-4.15.0-66/include/net/9p 20 /usr/src/linux-headers-4.15.0-66/include/net/phonet 76 /usr/src/linux-headers-4.15.0-66/include/net/caif 24 /usr/src/linux-headers-4.15.0-66/include/net/netfilter/ipv4 28 /usr/src/linux-headers-4.15.0-66/include/net/netfilter/ipv6 272 /usr/src/linux-headers-4.15.0-66/include/net/netfilter 80 /usr/src/linux-headers-4.15.0-66/include/net/netns 3064 /usr/src/linux-headers-4.15.0-66/include/net 32 /usr/src/linux-headers-4.15.0-66/include/sound/ac97 1188 /usr/src/linux-headers-4.15.0-66/include/sound 24 /usr/src/linux-headers-4.15.0-66/include/clocksource 32 /usr/src/linux-headers-4.15.0-66/include/xen/interface/hvm 228 /usr/src/linux-headers-4.15.0-66/include/xen/interface/io 432 /usr/src/linux-headers-4.15.0-66/include/xen/interface 24 /usr/src/linux-headers-4.15.0-66/include/xen/arm 544 /usr/src/linux-headers-4.15.0-66/include/xen 64 /usr/src/linux-headers-4.15.0-66/include/crypto/internal 392 /usr/src/linux-headers-4.15.0-66/include/crypto 52 /usr/src/linux-headers-4.15.0-66/include/scsi/fc 580 /usr/src/linux-headers-4.15.0-66/include/scsi 120 /usr/src/linux-headers-4.15.0-66/include/drm/ttm 16 /usr/src/linux-headers-4.15.0-66/include/drm/i2c 32 /usr/src/linux-headers-4.15.0-66/include/drm/bridge 20 /usr/src/linux-headers-4.15.0-66/include/drm/tinydrm 1008 /usr/src/linux-headers-4.15.0-66/include/drm 48 /usr/src/linux-headers-4.15.0-66/include/misc 36 /usr/src/linux-headers-4.15.0-66/include/kvm 44 /usr/src/linux-headers-4.15.0-66/include/target/iscsi 96 /usr/src/linux-headers-4.15.0-66/include/target 48 /usr/src/linux-headers-4.15.0-66/include/acpi/platform 476 /usr/src/linux-headers-4.15.0-66/include/acpi 56 /usr/src/linux-headers-4.15.0-66/include/pcmcia 92 /usr/src/linux-headers-4.15.0-66/include/media/davinci 216 /usr/src/linux-headers-4.15.0-66/include/media/i2c 96 /usr/src/linux-headers-4.15.0-66/include/media/drv-intf 12 /usr/src/linux-headers-4.15.0-66/include/media/blackfin 988 /usr/src/linux-headers-4.15.0-66/include/media 60 /usr/src/linux-headers-4.15.0-66/include/keys 39780 /usr/src/linux-headers-4.15.0-66/include 12 /usr/src/linux-headers-4.15.0-66/crypto/async_tx 12 /usr/src/linux-headers-4.15.0-66/crypto/asymmetric_keys 88 /usr/src/linux-headers-4.15.0-66/crypto 20 /usr/src/linux-headers-4.15.0-66/kernel/power 12 /usr/src/linux-headers-4.15.0-66/kernel/irq 8 /usr/src/linux-headers-4.15.0-66/kernel/printk 8 /usr/src/linux-headers-4.15.0-66/kernel/sched 12 /usr/src/linux-headers-4.15.0-66/kernel/livepatch 8 /usr/src/linux-headers-4.15.0-66/kernel/bpf 8 /usr/src/linux-headers-4.15.0-66/kernel/events 32 /usr/src/linux-headers-4.15.0-66/kernel/trace 12 /usr/src/linux-headers-4.15.0-66/kernel/time 8 /usr/src/linux-headers-4.15.0-66/kernel/cgroup 8 /usr/src/linux-headers-4.15.0-66/kernel/debug/kdb 16 /usr/src/linux-headers-4.15.0-66/kernel/debug 8 /usr/src/linux-headers-4.15.0-66/kernel/locking 24 /usr/src/linux-headers-4.15.0-66/kernel/rcu 12 /usr/src/linux-headers-4.15.0-66/kernel/gcov 220 /usr/src/linux-headers-4.15.0-66/kernel 20 /usr/src/linux-headers-4.15.0-66/block/partitions 40 /usr/src/linux-headers-4.15.0-66/block 20 /usr/src/linux-headers-4.15.0-66/certs 8 /usr/src/linux-headers-4.15.0-66/firmware 156 /usr/src/linux-headers-4.15.0-66/scripts/mod 8 /usr/src/linux-headers-4.15.0-66/scripts/ksymoops 48 /usr/src/linux-headers-4.15.0-66/scripts/package 24 /usr/src/linux-headers-4.15.0-66/scripts/coccinelle/iterators 20 /usr/src/linux-headers-4.15.0-66/scripts/coccinelle/locks 16 /usr/src/linux-headers-4.15.0-66/scripts/coccinelle/api/alloc 8 /usr/src/linux-headers-4.15.0-66/scripts/coccinelle/api/debugfs 88 /usr/src/linux-headers-4.15.0-66/scripts/coccinelle/api 20 /usr/src/linux-headers-4.15.0-66/scripts/coccinelle/tests 76 /usr/src/linux-headers-4.15.0-66/scripts/coccinelle/misc 24 /usr/src/linux-headers-4.15.0-66/scripts/coccinelle/null 32 /usr/src/linux-headers-4.15.0-66/scripts/coccinelle/free 288 /usr/src/linux-headers-4.15.0-66/scripts/coccinelle 208 /usr/src/linux-headers-4.15.0-66/scripts/genksyms 28 /usr/src/linux-headers-4.15.0-66/scripts/basic 136 /usr/src/linux-headers-4.15.0-66/scripts/gcc-plugins 12 /usr/src/linux-headers-4.15.0-66/scripts/tracing 72 /usr/src/linux-headers-4.15.0-66/scripts/gdb/linux 84 /usr/src/linux-headers-4.15.0-66/scripts/gdb 92 /usr/src/linux-headers-4.15.0-66/scripts/kconfig/lxdialog 692 /usr/src/linux-headers-4.15.0-66/scripts/kconfig 188 /usr/src/linux-headers-4.15.0-66/scripts/dtc/libfdt 4 /usr/src/linux-headers-4.15.0-66/scripts/dtc/include-prefixes 620 /usr/src/linux-headers-4.15.0-66/scripts/dtc 16 /usr/src/linux-headers-4.15.0-66/scripts/selinux/genheaders 24 /usr/src/linux-headers-4.15.0-66/scripts/selinux/mdp 56 /usr/src/linux-headers-4.15.0-66/scripts/selinux 3556 /usr/src/linux-headers-4.15.0-66/scripts 8 /usr/src/linux-headers-4.15.0-66/arch/m32r/oprofile 8 /usr/src/linux-headers-4.15.0-66/arch/m32r/mm 136 /usr/src/linux-headers-4.15.0-66/arch/m32r/include/uapi/asm 140 /usr/src/linux-headers-4.15.0-66/arch/m32r/include/uapi 12 /usr/src/linux-headers-4.15.0-66/arch/m32r/include/asm/mappi2 24 /usr/src/linux-headers-4.15.0-66/arch/m32r/include/asm/m32700ut 12 /usr/src/linux-headers-4.15.0-66/arch/m32r/include/asm/mappi3 24 /usr/src/linux-headers-4.15.0-66/arch/m32r/include/asm/opsput 12 /usr/src/linux-headers-4.15.0-66/arch/m32r/include/asm/m32104ut 500 /usr/src/linux-headers-4.15.0-66/arch/m32r/include/asm 644 /usr/src/linux-headers-4.15.0-66/arch/m32r/include 8 /usr/src/linux-headers-4.15.0-66/arch/m32r/kernel 12 /usr/src/linux-headers-4.15.0-66/arch/m32r/boot/compressed 20 /usr/src/linux-headers-4.15.0-66/arch/m32r/boot 8 /usr/src/linux-headers-4.15.0-66/arch/m32r/lib 8 /usr/src/linux-headers-4.15.0-66/arch/m32r/platforms/mappi2 8 /usr/src/linux-headers-4.15.0-66/arch/m32r/platforms/oaks32r 8 /usr/src/linux-headers-4.15.0-66/arch/m32r/platforms/m32700ut 8 /usr/src/linux-headers-4.15.0-66/arch/m32r/platforms/mappi 8 /usr/src/linux-headers-4.15.0-66/arch/m32r/platforms/mappi3 8 /usr/src/linux-headers-4.15.0-66/arch/m32r/platforms/opsput 8 /usr/src/linux-headers-4.15.0-66/arch/m32r/platforms/usrv 8 /usr/src/linux-headers-4.15.0-66/arch/m32r/platforms/m32104ut 72 /usr/src/linux-headers-4.15.0-66/arch/m32r/platforms 792 /usr/src/linux-headers-4.15.0-66/arch/m32r 8 /usr/src/linux-headers-4.15.0-66/arch/cris/mm 108 /usr/src/linux-headers-4.15.0-66/arch/cris/include/uapi/asm 316 /usr/src/linux-headers-4.15.0-66/arch/cris/include/uapi/arch-v10/arch 320 /usr/src/linux-headers-4.15.0-66/arch/cris/include/uapi/arch-v10 12 /usr/src/linux-headers-4.15.0-66/arch/cris/include/uapi/arch-v32/arch 16 /usr/src/linux-headers-4.15.0-66/arch/cris/include/uapi/arch-v32 448 /usr/src/linux-headers-4.15.0-66/arch/cris/include/uapi 208 /usr/src/linux-headers-4.15.0-66/arch/cris/include/asm 124 /usr/src/linux-headers-4.15.0-66/arch/cris/include/arch-v10/arch 128 /usr/src/linux-headers-4.15.0-66/arch/cris/include/arch-v10 128 /usr/src/linux-headers-4.15.0-66/arch/cris/include/arch-v32/mach-a3/mach/hwregs/asm 212 /usr/src/linux-headers-4.15.0-66/arch/cris/include/arch-v32/mach-a3/mach/hwregs/iop/asm 324 /usr/src/linux-headers-4.15.0-66/arch/cris/include/arch-v32/mach-a3/mach/hwregs/iop 604 /usr/src/linux-headers-4.15.0-66/arch/cris/include/arch-v32/mach-a3/mach/hwregs 628 /usr/src/linux-headers-4.15.0-66/arch/cris/include/arch-v32/mach-a3/mach 632 /usr/src/linux-headers-4.15.0-66/arch/cris/include/arch-v32/mach-a3 276 /usr/src/linux-headers-4.15.0-66/arch/cris/include/arch-v32/arch/hwregs/asm 492 /usr/src/linux-headers-4.15.0-66/arch/cris/include/arch-v32/arch/hwregs/iop/asm 816 /usr/src/linux-headers-4.15.0-66/arch/cris/include/arch-v32/arch/hwregs/iop 1288 /usr/src/linux-headers-4.15.0-66/arch/cris/include/arch-v32/arch/hwregs 1412 /usr/src/linux-headers-4.15.0-66/arch/cris/include/arch-v32/arch 88 /usr/src/linux-headers-4.15.0-66/arch/cris/include/arch-v32/mach-fs/mach/hwregs/asm 216 /usr/src/linux-headers-4.15.0-66/arch/cris/include/arch-v32/mach-fs/mach/hwregs 240 /usr/src/linux-headers-4.15.0-66/arch/cris/include/arch-v32/mach-fs/mach 244 /usr/src/linux-headers-4.15.0-66/arch/cris/include/arch-v32/mach-fs 2292 /usr/src/linux-headers-4.15.0-66/arch/cris/include/arch-v32 3080 /usr/src/linux-headers-4.15.0-66/arch/cris/include 28 /usr/src/linux-headers-4.15.0-66/arch/cris/arch-v10/drivers 8 /usr/src/linux-headers-4.15.0-66/arch/cris/arch-v10/mm 8 /usr/src/linux-headers-4.15.0-66/arch/cris/arch-v10/kernel 8 /usr/src/linux-headers-4.15.0-66/arch/cris/arch-v10/lib 68 /usr/src/linux-headers-4.15.0-66/arch/cris/arch-v10 8 /usr/src/linux-headers-4.15.0-66/arch/cris/kernel 8 /usr/src/linux-headers-4.15.0-66/arch/cris/arch-v32/drivers/mach-a3 8 /usr/src/linux-headers-4.15.0-66/arch/cris/arch-v32/drivers/mach-fs 8 /usr/src/linux-headers-4.15.0-66/arch/cris/arch-v32/drivers/pci 44 /usr/src/linux-headers-4.15.0-66/arch/cris/arch-v32/drivers 12 /usr/src/linux-headers-4.15.0-66/arch/cris/arch-v32/mach-a3 8 /usr/src/linux-headers-4.15.0-66/arch/cris/arch-v32/mm 8 /usr/src/linux-headers-4.15.0-66/arch/cris/arch-v32/kernel 16 /usr/src/linux-headers-4.15.0-66/arch/cris/arch-v32/mach-fs 8 /usr/src/linux-headers-4.15.0-66/arch/cris/arch-v32/lib 108 /usr/src/linux-headers-4.15.0-66/arch/cris/arch-v32 16 /usr/src/linux-headers-4.15.0-66/arch/cris/boot/compressed 16 /usr/src/linux-headers-4.15.0-66/arch/cris/boot/rescue 8 /usr/src/linux-headers-4.15.0-66/arch/cris/boot/dts 48 /usr/src/linux-headers-4.15.0-66/arch/cris/boot 3348 /usr/src/linux-headers-4.15.0-66/arch/cris 8 /usr/src/linux-headers-4.15.0-66/arch/h8300/mm 32 /usr/src/linux-headers-4.15.0-66/arch/h8300/include/uapi/asm 36 /usr/src/linux-headers-4.15.0-66/arch/h8300/include/uapi 136 /usr/src/linux-headers-4.15.0-66/arch/h8300/include/asm 176 /usr/src/linux-headers-4.15.0-66/arch/h8300/include 8 /usr/src/linux-headers-4.15.0-66/arch/h8300/kernel 12 /usr/src/linux-headers-4.15.0-66/arch/h8300/boot/compressed 8 /usr/src/linux-headers-4.15.0-66/arch/h8300/boot/dts 28 /usr/src/linux-headers-4.15.0-66/arch/h8300/boot 8 /usr/src/linux-headers-4.15.0-66/arch/h8300/lib 244 /usr/src/linux-headers-4.15.0-66/arch/h8300 8 /usr/src/linux-headers-4.15.0-66/arch/metag/oprofile 8 /usr/src/linux-headers-4.15.0-66/arch/metag/tbx 12 /usr/src/linux-headers-4.15.0-66/arch/metag/mm 36 /usr/src/linux-headers-4.15.0-66/arch/metag/include/uapi/asm 40 /usr/src/linux-headers-4.15.0-66/arch/metag/include/uapi 8 /usr/src/linux-headers-4.15.0-66/arch/metag/include/asm/mach 488 /usr/src/linux-headers-4.15.0-66/arch/metag/include/asm 532 /usr/src/linux-headers-4.15.0-66/arch/metag/include 8 /usr/src/linux-headers-4.15.0-66/arch/metag/kernel/perf 16 /usr/src/linux-headers-4.15.0-66/arch/metag/kernel 8 /usr/src/linux-headers-4.15.0-66/arch/metag/boot/dts 16 /usr/src/linux-headers-4.15.0-66/arch/metag/boot 8 /usr/src/linux-headers-4.15.0-66/arch/metag/lib 624 /usr/src/linux-headers-4.15.0-66/arch/metag 12 /usr/src/linux-headers-4.15.0-66/arch/tile/gxio 8 /usr/src/linux-headers-4.15.0-66/arch/tile/mm 68 /usr/src/linux-headers-4.15.0-66/arch/tile/include/uapi/asm 204 /usr/src/linux-headers-4.15.0-66/arch/tile/include/uapi/arch 276 /usr/src/linux-headers-4.15.0-66/arch/tile/include/uapi 148 /usr/src/linux-headers-4.15.0-66/arch/tile/include/gxio 504 /usr/src/linux-headers-4.15.0-66/arch/tile/include/asm 124 /usr/src/linux-headers-4.15.0-66/arch/tile/include/arch 340 /usr/src/linux-headers-4.15.0-66/arch/tile/include/hv 1396 /usr/src/linux-headers-4.15.0-66/arch/tile/include 8 /usr/src/linux-headers-4.15.0-66/arch/tile/kernel/vdso 16 /usr/src/linux-headers-4.15.0-66/arch/tile/kernel 8 /usr/src/linux-headers-4.15.0-66/arch/tile/kvm 8 /usr/src/linux-headers-4.15.0-66/arch/tile/lib 1480 /usr/src/linux-headers-4.15.0-66/arch/tile 8 /usr/src/linux-headers-4.15.0-66/arch/s390/oprofile 8 /usr/src/linux-headers-4.15.0-66/arch/s390/net 8 /usr/src/linux-headers-4.15.0-66/arch/s390/tools 8 /usr/src/linux-headers-4.15.0-66/arch/s390/mm 252 /usr/src/linux-headers-4.15.0-66/arch/s390/include/uapi/asm 256 /usr/src/linux-headers-4.15.0-66/arch/s390/include/uapi 16 /usr/src/linux-headers-4.15.0-66/arch/s390/include/asm/trace 16 /usr/src/linux-headers-4.15.0-66/arch/s390/include/asm/fpu 860 /usr/src/linux-headers-4.15.0-66/arch/s390/include/asm 1120 /usr/src/linux-headers-4.15.0-66/arch/s390/include 8 /usr/src/linux-headers-4.15.0-66/arch/s390/hypfs 8 /usr/src/linux-headers-4.15.0-66/arch/s390/crypto 8 /usr/src/linux-headers-4.15.0-66/arch/s390/kernel/vdso64 8 /usr/src/linux-headers-4.15.0-66/arch/s390/kernel/vdso32 24 /usr/src/linux-headers-4.15.0-66/arch/s390/kernel 8 /usr/src/linux-headers-4.15.0-66/arch/s390/appldata 8 /usr/src/linux-headers-4.15.0-66/arch/s390/numa 12 /usr/src/linux-headers-4.15.0-66/arch/s390/kvm 8 /usr/src/linux-headers-4.15.0-66/arch/s390/boot/compressed 20 /usr/src/linux-headers-4.15.0-66/arch/s390/boot 8 /usr/src/linux-headers-4.15.0-66/arch/s390/lib 8 /usr/src/linux-headers-4.15.0-66/arch/s390/pci 1304 /usr/src/linux-headers-4.15.0-66/arch/s390 8 /usr/src/linux-headers-4.15.0-66/arch/microblaze/oprofile 8 /usr/src/linux-headers-4.15.0-66/arch/microblaze/mm 56 /usr/src/linux-headers-4.15.0-66/arch/microblaze/include/uapi/asm 60 /usr/src/linux-headers-4.15.0-66/arch/microblaze/include/uapi 292 /usr/src/linux-headers-4.15.0-66/arch/microblaze/include/asm 356 /usr/src/linux-headers-4.15.0-66/arch/microblaze/include 8 /usr/src/linux-headers-4.15.0-66/arch/microblaze/kernel/cpu 16 /usr/src/linux-headers-4.15.0-66/arch/microblaze/kernel 8 /usr/src/linux-headers-4.15.0-66/arch/microblaze/boot/dts 16 /usr/src/linux-headers-4.15.0-66/arch/microblaze/boot 8 /usr/src/linux-headers-4.15.0-66/arch/microblaze/lib 8 /usr/src/linux-headers-4.15.0-66/arch/microblaze/pci 444 /usr/src/linux-headers-4.15.0-66/arch/microblaze 12 /usr/src/linux-headers-4.15.0-66/arch/unicore32/mm 24 /usr/src/linux-headers-4.15.0-66/arch/unicore32/include/uapi/asm 28 /usr/src/linux-headers-4.15.0-66/arch/unicore32/include/uapi 116 /usr/src/linux-headers-4.15.0-66/arch/unicore32/include/mach 200 /usr/src/linux-headers-4.15.0-66/arch/unicore32/include/asm 348 /usr/src/linux-headers-4.15.0-66/arch/unicore32/include 8 /usr/src/linux-headers-4.15.0-66/arch/unicore32/kernel 8 /usr/src/linux-headers-4.15.0-66/arch/unicore32/boot/compressed 16 /usr/src/linux-headers-4.15.0-66/arch/unicore32/boot 8 /usr/src/linux-headers-4.15.0-66/arch/unicore32/lib 412 /usr/src/linux-headers-4.15.0-66/arch/unicore32 8 /usr/src/linux-headers-4.15.0-66/arch/score/mm 128 /usr/src/linux-headers-4.15.0-66/arch/score/include/uapi/asm 132 /usr/src/linux-headers-4.15.0-66/arch/score/include/uapi 256 /usr/src/linux-headers-4.15.0-66/arch/score/include/asm 392 /usr/src/linux-headers-4.15.0-66/arch/score/include 8 /usr/src/linux-headers-4.15.0-66/arch/score/kernel 8 /usr/src/linux-headers-4.15.0-66/arch/score/boot 8 /usr/src/linux-headers-4.15.0-66/arch/score/lib 440 /usr/src/linux-headers-4.15.0-66/arch/score 8 /usr/src/linux-headers-4.15.0-66/arch/arm64/net 8 /usr/src/linux-headers-4.15.0-66/arch/arm64/mm 100 /usr/src/linux-headers-4.15.0-66/arch/arm64/include/uapi/asm 104 /usr/src/linux-headers-4.15.0-66/arch/arm64/include/uapi 32 /usr/src/linux-headers-4.15.0-66/arch/arm64/include/asm/xen 896 /usr/src/linux-headers-4.15.0-66/arch/arm64/include/asm 1004 /usr/src/linux-headers-4.15.0-66/arch/arm64/include 8 /usr/src/linux-headers-4.15.0-66/arch/arm64/xen 36 /usr/src/linux-headers-4.15.0-66/arch/arm64/crypto 12 /usr/src/linux-headers-4.15.0-66/arch/arm64/kernel/vdso 8 /usr/src/linux-headers-4.15.0-66/arch/arm64/kernel/probes 32 /usr/src/linux-headers-4.15.0-66/arch/arm64/kernel 8 /usr/src/linux-headers-4.15.0-66/arch/arm64/kvm/hyp 20 /usr/src/linux-headers-4.15.0-66/arch/arm64/kvm 8 /usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/altera 8 /usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/al 8 /usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/apm 8 /usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/qcom 8 /usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/actions 8 /usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/exynos 8 /usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/allwinner 8 /usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/broadcom/stingray 8 /usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/broadcom/northstar2 24 /usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/broadcom 8 /usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/sprd 8 /usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/zte 8 /usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/socionext 8 /usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/freescale 8 /usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/renesas 8 /usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/realtek 8 /usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/nvidia 8 /usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/amd 8 /usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/marvell 8 /usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/mediatek 8 /usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/amlogic 8 /usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/hisilicon 8 /usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/rockchip 8 /usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/cavium 8 /usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/arm 8 /usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/lg 8 /usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts/xilinx 224 /usr/src/linux-headers-4.15.0-66/arch/arm64/boot/dts 236 /usr/src/linux-headers-4.15.0-66/arch/arm64/boot 8 /usr/src/linux-headers-4.15.0-66/arch/arm64/lib 1424 /usr/src/linux-headers-4.15.0-66/arch/arm64 8 /usr/src/linux-headers-4.15.0-66/arch/mn10300/oprofile 32 /usr/src/linux-headers-4.15.0-66/arch/mn10300/proc-mn103e010/include/proc 36 /usr/src/linux-headers-4.15.0-66/arch/mn10300/proc-mn103e010/include 44 /usr/src/linux-headers-4.15.0-66/arch/mn10300/proc-mn103e010 40 /usr/src/linux-headers-4.15.0-66/arch/mn10300/unit-asb2364/include/unit 44 /usr/src/linux-headers-4.15.0-66/arch/mn10300/unit-asb2364/include 52 /usr/src/linux-headers-4.15.0-66/arch/mn10300/unit-asb2364 20 /usr/src/linux-headers-4.15.0-66/arch/mn10300/unit-asb2305/include/unit 24 /usr/src/linux-headers-4.15.0-66/arch/mn10300/unit-asb2305/include 32 /usr/src/linux-headers-4.15.0-66/arch/mn10300/unit-asb2305 16 /usr/src/linux-headers-4.15.0-66/arch/mn10300/mm 140 /usr/src/linux-headers-4.15.0-66/arch/mn10300/include/uapi/asm 144 /usr/src/linux-headers-4.15.0-66/arch/mn10300/include/uapi 464 /usr/src/linux-headers-4.15.0-66/arch/mn10300/include/asm 612 /usr/src/linux-headers-4.15.0-66/arch/mn10300/include 8 /usr/src/linux-headers-4.15.0-66/arch/mn10300/kernel 12 /usr/src/linux-headers-4.15.0-66/arch/mn10300/boot/compressed 24 /usr/src/linux-headers-4.15.0-66/arch/mn10300/boot 44 /usr/src/linux-headers-4.15.0-66/arch/mn10300/proc-mn2ws0050/include/proc 48 /usr/src/linux-headers-4.15.0-66/arch/mn10300/proc-mn2ws0050/include 56 /usr/src/linux-headers-4.15.0-66/arch/mn10300/proc-mn2ws0050 8 /usr/src/linux-headers-4.15.0-66/arch/mn10300/lib 28 /usr/src/linux-headers-4.15.0-66/arch/mn10300/unit-asb2303/include/unit 32 /usr/src/linux-headers-4.15.0-66/arch/mn10300/unit-asb2303/include 40 /usr/src/linux-headers-4.15.0-66/arch/mn10300/unit-asb2303 928 /usr/src/linux-headers-4.15.0-66/arch/mn10300 8 /usr/src/linux-headers-4.15.0-66/arch/hexagon/mm 60 /usr/src/linux-headers-4.15.0-66/arch/hexagon/include/uapi/asm 64 /usr/src/linux-headers-4.15.0-66/arch/hexagon/include/uapi 248 /usr/src/linux-headers-4.15.0-66/arch/hexagon/include/asm 316 /usr/src/linux-headers-4.15.0-66/arch/hexagon/include 8 /usr/src/linux-headers-4.15.0-66/arch/hexagon/kernel 8 /usr/src/linux-headers-4.15.0-66/arch/hexagon/lib 352 /usr/src/linux-headers-4.15.0-66/arch/hexagon 8 /usr/src/linux-headers-4.15.0-66/arch/sparc/oprofile 8 /usr/src/linux-headers-4.15.0-66/arch/sparc/power 12 /usr/src/linux-headers-4.15.0-66/arch/sparc/vdso 8 /usr/src/linux-headers-4.15.0-66/arch/sparc/prom 8 /usr/src/linux-headers-4.15.0-66/arch/sparc/math-emu 8 /usr/src/linux-headers-4.15.0-66/arch/sparc/net 8 /usr/src/linux-headers-4.15.0-66/arch/sparc/mm 264 /usr/src/linux-headers-4.15.0-66/arch/sparc/include/uapi/asm 268 /usr/src/linux-headers-4.15.0-66/arch/sparc/include/uapi 1416 /usr/src/linux-headers-4.15.0-66/arch/sparc/include/asm 1688 /usr/src/linux-headers-4.15.0-66/arch/sparc/include 8 /usr/src/linux-headers-4.15.0-66/arch/sparc/crypto 8 /usr/src/linux-headers-4.15.0-66/arch/sparc/kernel 12 /usr/src/linux-headers-4.15.0-66/arch/sparc/boot 8 /usr/src/linux-headers-4.15.0-66/arch/sparc/lib 1816 /usr/src/linux-headers-4.15.0-66/arch/sparc 8 /usr/src/linux-headers-4.15.0-66/arch/xtensa/oprofile 8 /usr/src/linux-headers-4.15.0-66/arch/xtensa/mm 128 /usr/src/linux-headers-4.15.0-66/arch/xtensa/include/uapi/asm 132 /usr/src/linux-headers-4.15.0-66/arch/xtensa/include/uapi 364 /usr/src/linux-headers-4.15.0-66/arch/xtensa/include/asm 500 /usr/src/linux-headers-4.15.0-66/arch/xtensa/include 48 /usr/src/linux-headers-4.15.0-66/arch/xtensa/variants/dc233c/include/variant 52 /usr/src/linux-headers-4.15.0-66/arch/xtensa/variants/dc233c/include 56 /usr/src/linux-headers-4.15.0-66/arch/xtensa/variants/dc233c 28 /usr/src/linux-headers-4.15.0-66/arch/xtensa/variants/fsf/include/variant 32 /usr/src/linux-headers-4.15.0-66/arch/xtensa/variants/fsf/include 36 /usr/src/linux-headers-4.15.0-66/arch/xtensa/variants/fsf 56 /usr/src/linux-headers-4.15.0-66/arch/xtensa/variants/test_kc705_hifi/include/variant 60 /usr/src/linux-headers-4.15.0-66/arch/xtensa/variants/test_kc705_hifi/include 64 /usr/src/linux-headers-4.15.0-66/arch/xtensa/variants/test_kc705_hifi 40 /usr/src/linux-headers-4.15.0-66/arch/xtensa/variants/test_mmuhifi_c3/include/variant 44 /usr/src/linux-headers-4.15.0-66/arch/xtensa/variants/test_mmuhifi_c3/include 48 /usr/src/linux-headers-4.15.0-66/arch/xtensa/variants/test_mmuhifi_c3 40 /usr/src/linux-headers-4.15.0-66/arch/xtensa/variants/dc232b/include/variant 44 /usr/src/linux-headers-4.15.0-66/arch/xtensa/variants/dc232b/include 48 /usr/src/linux-headers-4.15.0-66/arch/xtensa/variants/dc232b 52 /usr/src/linux-headers-4.15.0-66/arch/xtensa/variants/csp/include/variant 56 /usr/src/linux-headers-4.15.0-66/arch/xtensa/variants/csp/include 60 /usr/src/linux-headers-4.15.0-66/arch/xtensa/variants/csp 48 /usr/src/linux-headers-4.15.0-66/arch/xtensa/variants/de212/include/variant 52 /usr/src/linux-headers-4.15.0-66/arch/xtensa/variants/de212/include 56 /usr/src/linux-headers-4.15.0-66/arch/xtensa/variants/de212 372 /usr/src/linux-headers-4.15.0-66/arch/xtensa/variants 8 /usr/src/linux-headers-4.15.0-66/arch/xtensa/kernel 8 /usr/src/linux-headers-4.15.0-66/arch/xtensa/boot/boot-redboot 8 /usr/src/linux-headers-4.15.0-66/arch/xtensa/boot/boot-elf 8 /usr/src/linux-headers-4.15.0-66/arch/xtensa/boot/lib 8 /usr/src/linux-headers-4.15.0-66/arch/xtensa/boot/dts 40 /usr/src/linux-headers-4.15.0-66/arch/xtensa/boot 8 /usr/src/linux-headers-4.15.0-66/arch/xtensa/lib 16 /usr/src/linux-headers-4.15.0-66/arch/xtensa/platforms/xtfpga/include/platform 20 /usr/src/linux-headers-4.15.0-66/arch/xtensa/platforms/xtfpga/include 28 /usr/src/linux-headers-4.15.0-66/arch/xtensa/platforms/xtfpga 16 /usr/src/linux-headers-4.15.0-66/arch/xtensa/platforms/iss/include/platform 20 /usr/src/linux-headers-4.15.0-66/arch/xtensa/platforms/iss/include 28 /usr/src/linux-headers-4.15.0-66/arch/xtensa/platforms/iss 12 /usr/src/linux-headers-4.15.0-66/arch/xtensa/platforms/xt2000/include/platform 16 /usr/src/linux-headers-4.15.0-66/arch/xtensa/platforms/xt2000/include 24 /usr/src/linux-headers-4.15.0-66/arch/xtensa/platforms/xt2000 84 /usr/src/linux-headers-4.15.0-66/arch/xtensa/platforms 1060 /usr/src/linux-headers-4.15.0-66/arch/xtensa 8 /usr/src/linux-headers-4.15.0-66/arch/sh/oprofile 8 /usr/src/linux-headers-4.15.0-66/arch/sh/lib64 8 /usr/src/linux-headers-4.15.0-66/arch/sh/cchips/hd6446x 16 /usr/src/linux-headers-4.15.0-66/arch/sh/cchips 8 /usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-microdev 12 /usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-highlander 8 /usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-kfr2r09 8 /usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-sdk7786 8 /usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-se/770x 8 /usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-se/7343 8 /usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-se/7206 8 /usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-se/7724 8 /usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-se/7722 8 /usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-se/7721 8 /usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-se/7751 8 /usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-se/7780 72 /usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-se 12 /usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-rsk 8 /usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-dreamcast 8 /usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-landisk 12 /usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-sdk7780 12 /usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-migor 8 /usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-cayman 8 /usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-ap325rxa 8 /usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-sh7763rdp 8 /usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-ecovec24 8 /usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-hp6xx 8 /usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-x3proto 12 /usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-r2d 8 /usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-lboxre2 8 /usr/src/linux-headers-4.15.0-66/arch/sh/boards/mach-sh03 256 /usr/src/linux-headers-4.15.0-66/arch/sh/boards 8 /usr/src/linux-headers-4.15.0-66/arch/sh/drivers/superhyway 12 /usr/src/linux-headers-4.15.0-66/arch/sh/drivers/dma 8 /usr/src/linux-headers-4.15.0-66/arch/sh/drivers/pci 40 /usr/src/linux-headers-4.15.0-66/arch/sh/drivers 8 /usr/src/linux-headers-4.15.0-66/arch/sh/math-emu 8 /usr/src/linux-headers-4.15.0-66/arch/sh/tools 16 /usr/src/linux-headers-4.15.0-66/arch/sh/mm 28 /usr/src/linux-headers-4.15.0-66/arch/sh/include/cpu-sh5/cpu 32 /usr/src/linux-headers-4.15.0-66/arch/sh/include/cpu-sh5 16 /usr/src/linux-headers-4.15.0-66/arch/sh/include/mach-kfr2r09/mach 20 /usr/src/linux-headers-4.15.0-66/arch/sh/include/mach-kfr2r09 16 /usr/src/linux-headers-4.15.0-66/arch/sh/include/mach-sdk7786/mach 20 /usr/src/linux-headers-4.15.0-66/arch/sh/include/mach-sdk7786 44 /usr/src/linux-headers-4.15.0-66/arch/sh/include/mach-se/mach 48 /usr/src/linux-headers-4.15.0-66/arch/sh/include/mach-se 116 /usr/src/linux-headers-4.15.0-66/arch/sh/include/uapi/asm 120 /usr/src/linux-headers-4.15.0-66/arch/sh/include/uapi 124 /usr/src/linux-headers-4.15.0-66/arch/sh/include/cpu-sh4/cpu 128 /usr/src/linux-headers-4.15.0-66/arch/sh/include/cpu-sh4 52 /usr/src/linux-headers-4.15.0-66/arch/sh/include/cpu-sh3/cpu 56 /usr/src/linux-headers-4.15.0-66/arch/sh/include/cpu-sh3 20 /usr/src/linux-headers-4.15.0-66/arch/sh/include/mach-dreamcast/mach 24 /usr/src/linux-headers-4.15.0-66/arch/sh/include/mach-dreamcast 12 /usr/src/linux-headers-4.15.0-66/arch/sh/include/mach-landisk/mach 16 /usr/src/linux-headers-4.15.0-66/arch/sh/include/mach-landisk 16 /usr/src/linux-headers-4.15.0-66/arch/sh/include/cpu-sh2/cpu 20 /usr/src/linux-headers-4.15.0-66/arch/sh/include/cpu-sh2 8 /usr/src/linux-headers-4.15.0-66/arch/sh/include/mach-migor/mach 12 /usr/src/linux-headers-4.15.0-66/arch/sh/include/mach-migor 48 /usr/src/linux-headers-4.15.0-66/arch/sh/include/cpu-sh2a/cpu 52 /usr/src/linux-headers-4.15.0-66/arch/sh/include/cpu-sh2a 748 /usr/src/linux-headers-4.15.0-66/arch/sh/include/asm 76 /usr/src/linux-headers-4.15.0-66/arch/sh/include/mach-common/mach 80 /usr/src/linux-headers-4.15.0-66/arch/sh/include/mach-common 12 /usr/src/linux-headers-4.15.0-66/arch/sh/include/mach-ecovec24/mach 16 /usr/src/linux-headers-4.15.0-66/arch/sh/include/mach-ecovec24 12 /usr/src/linux-headers-4.15.0-66/arch/sh/include/cpu-sh4a/cpu 16 /usr/src/linux-headers-4.15.0-66/arch/sh/include/cpu-sh4a 28 /usr/src/linux-headers-4.15.0-66/arch/sh/include/cpu-common/cpu 32 /usr/src/linux-headers-4.15.0-66/arch/sh/include/cpu-common 12 /usr/src/linux-headers-4.15.0-66/arch/sh/include/mach-x3proto/mach 16 /usr/src/linux-headers-4.15.0-66/arch/sh/include/mach-x3proto 12 /usr/src/linux-headers-4.15.0-66/arch/sh/include/mach-sh03/mach 16 /usr/src/linux-headers-4.15.0-66/arch/sh/include/mach-sh03 1476 /usr/src/linux-headers-4.15.0-66/arch/sh/include 8 /usr/src/linux-headers-4.15.0-66/arch/sh/kernel/vsyscall 8 /usr/src/linux-headers-4.15.0-66/arch/sh/kernel/cpu/irq 8 /usr/src/linux-headers-4.15.0-66/arch/sh/kernel/cpu/sh4a 8 /usr/src/linux-headers-4.15.0-66/arch/sh/kernel/cpu/sh3 8 /usr/src/linux-headers-4.15.0-66/arch/sh/kernel/cpu/sh4 8 /usr/src/linux-headers-4.15.0-66/arch/sh/kernel/cpu/shmobile 8 /usr/src/linux-headers-4.15.0-66/arch/sh/kernel/cpu/sh5 8 /usr/src/linux-headers-4.15.0-66/arch/sh/kernel/cpu/sh2a 8 /usr/src/linux-headers-4.15.0-66/arch/sh/kernel/cpu/sh2 72 /usr/src/linux-headers-4.15.0-66/arch/sh/kernel/cpu 88 /usr/src/linux-headers-4.15.0-66/arch/sh/kernel 12 /usr/src/linux-headers-4.15.0-66/arch/sh/boot/compressed 8 /usr/src/linux-headers-4.15.0-66/arch/sh/boot/romimage 8 /usr/src/linux-headers-4.15.0-66/arch/sh/boot/dts 36 /usr/src/linux-headers-4.15.0-66/arch/sh/boot 8 /usr/src/linux-headers-4.15.0-66/arch/sh/lib 2016 /usr/src/linux-headers-4.15.0-66/arch/sh 8 /usr/src/linux-headers-4.15.0-66/arch/blackfin/oprofile 12 /usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf609/boards 616 /usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf609/include/mach 620 /usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf609/include 668 /usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf609 12 /usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf538/boards 340 /usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf538/include/mach 344 /usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf538/include 368 /usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf538 12 /usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf548/boards 868 /usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf548/include/mach 872 /usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf548/include 900 /usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf548 12 /usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf533/boards 160 /usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf533/include/mach 164 /usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf533/include 188 /usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf533 12 /usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf561/boards 276 /usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf561/include/mach 280 /usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf561/include 304 /usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf561 8 /usr/src/linux-headers-4.15.0-66/arch/blackfin/mm 12 /usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf518/boards 280 /usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf518/include/mach 284 /usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf518/include 312 /usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf518 84 /usr/src/linux-headers-4.15.0-66/arch/blackfin/include/uapi/asm 88 /usr/src/linux-headers-4.15.0-66/arch/blackfin/include/uapi 608 /usr/src/linux-headers-4.15.0-66/arch/blackfin/include/asm 52 /usr/src/linux-headers-4.15.0-66/arch/blackfin/include/mach-common 752 /usr/src/linux-headers-4.15.0-66/arch/blackfin/include 8 /usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-common 8 /usr/src/linux-headers-4.15.0-66/arch/blackfin/kernel/cplb-nompu 8 /usr/src/linux-headers-4.15.0-66/arch/blackfin/kernel/cplb-mpu 24 /usr/src/linux-headers-4.15.0-66/arch/blackfin/kernel 12 /usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf527/boards 344 /usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf527/include/mach 348 /usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf527/include 376 /usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf527 12 /usr/src/linux-headers-4.15.0-66/arch/blackfin/boot 12 /usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf537/boards 348 /usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf537/include/mach 352 /usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf537/include 376 /usr/src/linux-headers-4.15.0-66/arch/blackfin/mach-bf537 8 /usr/src/linux-headers-4.15.0-66/arch/blackfin/lib 4372 /usr/src/linux-headers-4.15.0-66/arch/blackfin 8 /usr/src/linux-headers-4.15.0-66/arch/mips/oprofile 8 /usr/src/linux-headers-4.15.0-66/arch/mips/power 12 /usr/src/linux-headers-4.15.0-66/arch/mips/vdso 8 /usr/src/linux-headers-4.15.0-66/arch/mips/loongson32/common 8 /usr/src/linux-headers-4.15.0-66/arch/mips/loongson32/ls1b 8 /usr/src/linux-headers-4.15.0-66/arch/mips/loongson32/ls1c 36 /usr/src/linux-headers-4.15.0-66/arch/mips/loongson32 12 /usr/src/linux-headers-4.15.0-66/arch/mips/generic 8 /usr/src/linux-headers-4.15.0-66/arch/mips/fw/sni 8 /usr/src/linux-headers-4.15.0-66/arch/mips/fw/cfe 8 /usr/src/linux-headers-4.15.0-66/arch/mips/fw/lib 8 /usr/src/linux-headers-4.15.0-66/arch/mips/fw/arc 36 /usr/src/linux-headers-4.15.0-66/arch/mips/fw 12 /usr/src/linux-headers-4.15.0-66/arch/mips/ath79 8 /usr/src/linux-headers-4.15.0-66/arch/mips/txx9/rbtx4938 8 /usr/src/linux-headers-4.15.0-66/arch/mips/txx9/generic 8 /usr/src/linux-headers-4.15.0-66/arch/mips/txx9/rbtx4939 8 /usr/src/linux-headers-4.15.0-66/arch/mips/txx9/rbtx4927 8 /usr/src/linux-headers-4.15.0-66/arch/mips/txx9/jmr3927 52 /usr/src/linux-headers-4.15.0-66/arch/mips/txx9 12 /usr/src/linux-headers-4.15.0-66/arch/mips/bcm63xx/boards 24 /usr/src/linux-headers-4.15.0-66/arch/mips/bcm63xx 8 /usr/src/linux-headers-4.15.0-66/arch/mips/emma/common 8 /usr/src/linux-headers-4.15.0-66/arch/mips/emma/markeins 24 /usr/src/linux-headers-4.15.0-66/arch/mips/emma 12 /usr/src/linux-headers-4.15.0-66/arch/mips/jazz 8 /usr/src/linux-headers-4.15.0-66/arch/mips/cavium-octeon/crypto 8 /usr/src/linux-headers-4.15.0-66/arch/mips/cavium-octeon/executive 28 /usr/src/linux-headers-4.15.0-66/arch/mips/cavium-octeon 8 /usr/src/linux-headers-4.15.0-66/arch/mips/pnx833x/stb22x 8 /usr/src/linux-headers-4.15.0-66/arch/mips/pnx833x/common 24 /usr/src/linux-headers-4.15.0-66/arch/mips/pnx833x 8 /usr/src/linux-headers-4.15.0-66/arch/mips/sgi-ip22 8 /usr/src/linux-headers-4.15.0-66/arch/mips/lantiq/falcon 8 /usr/src/linux-headers-4.15.0-66/arch/mips/lantiq/xway 28 /usr/src/linux-headers-4.15.0-66/arch/mips/lantiq 8 /usr/src/linux-headers-4.15.0-66/arch/mips/mti-malta 8 /usr/src/linux-headers-4.15.0-66/arch/mips/rb532 8 /usr/src/linux-headers-4.15.0-66/arch/mips/sni 8 /usr/src/linux-headers-4.15.0-66/arch/mips/math-emu 8 /usr/src/linux-headers-4.15.0-66/arch/mips/net 8 /usr/src/linux-headers-4.15.0-66/arch/mips/tools 8 /usr/src/linux-headers-4.15.0-66/arch/mips/mm 264 /usr/src/linux-headers-4.15.0-66/arch/mips/include/uapi/asm 268 /usr/src/linux-headers-4.15.0-66/arch/mips/include/uapi 12 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/fw/cfe 12 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/fw/arc 32 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/fw 116 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/sn/sn0 256 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/sn 124 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/txx9 20 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/emma 16 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-db1x00 8 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-vr41xx 156 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-au1x00 52 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-jz4740 24 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-ar7 8 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-ralink/rt3883 8 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-ralink/mt7620 8 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-ralink/rt305x 8 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-ralink/rt288x 8 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-ralink/mt7621 92 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-ralink 8 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-xilfpga 12 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-lasat 56 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-generic 192 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-bcm63xx 16 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-bcm47xx 20 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-cobalt 104 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-pmcs-msp71xx 16 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-netlogic 2300 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/octeon 20 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-bmips 16 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-jazz 12 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-dec 24 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-ip32 16 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-ip22 40 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-malta 8 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-emma2rh 16 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/xtalk 16 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-ath25 44 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-ip27 80 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/dec 12 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-sibyte 28 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/ip32 52 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-loongson32 16 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-tx39xx 16 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-paravirt 60 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mips-boards 48 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-ath79 28 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-tx49xx 44 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/vr41xx 36 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-pnx833x 8 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-pistachio 20 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-pic32 16 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-rm 64 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/sgi 36 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/lasat 68 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/netlogic/xlp-hal 52 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/netlogic/xlr 160 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/netlogic 20 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-lantiq/falcon 20 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-lantiq/xway 52 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-lantiq 32 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-cavium-octeon 408 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/sibyte 80 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-rc32434 16 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-ip28 36 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/pci 24 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-loongson64/cs5536 104 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm/mach-loongson64 6492 /usr/src/linux-headers-4.15.0-66/arch/mips/include/asm 6764 /usr/src/linux-headers-4.15.0-66/arch/mips/include 8 /usr/src/linux-headers-4.15.0-66/arch/mips/alchemy/common 8 /usr/src/linux-headers-4.15.0-66/arch/mips/alchemy/devboards 28 /usr/src/linux-headers-4.15.0-66/arch/mips/alchemy 12 /usr/src/linux-headers-4.15.0-66/arch/mips/paravirt 12 /usr/src/linux-headers-4.15.0-66/arch/mips/bcm47xx 12 /usr/src/linux-headers-4.15.0-66/arch/mips/kernel 8 /usr/src/linux-headers-4.15.0-66/arch/mips/cobalt 8 /usr/src/linux-headers-4.15.0-66/arch/mips/loongson64/common/cs5536 16 /usr/src/linux-headers-4.15.0-66/arch/mips/loongson64/common 8 /usr/src/linux-headers-4.15.0-66/arch/mips/loongson64/loongson-3 8 /usr/src/linux-headers-4.15.0-66/arch/mips/loongson64/lemote-2f 8 /usr/src/linux-headers-4.15.0-66/arch/mips/loongson64/fuloong-2e 52 /usr/src/linux-headers-4.15.0-66/arch/mips/loongson64 8 /usr/src/linux-headers-4.15.0-66/arch/mips/dec/prom 16 /usr/src/linux-headers-4.15.0-66/arch/mips/dec 12 /usr/src/linux-headers-4.15.0-66/arch/mips/ath25 12 /usr/src/linux-headers-4.15.0-66/arch/mips/kvm 8 /usr/src/linux-headers-4.15.0-66/arch/mips/sgi-ip32 12 /usr/src/linux-headers-4.15.0-66/arch/mips/boot/compressed 8 /usr/src/linux-headers-4.15.0-66/arch/mips/boot/tools 8 /usr/src/linux-headers-4.15.0-66/arch/mips/boot/dts/cavium-octeon 8 /usr/src/linux-headers-4.15.0-66/arch/mips/boot/dts/lantiq 8 /usr/src/linux-headers-4.15.0-66/arch/mips/boot/dts/qca 8 /usr/src/linux-headers-4.15.0-66/arch/mips/boot/dts/ni 8 /usr/src/linux-headers-4.15.0-66/arch/mips/boot/dts/xilfpga 8 /usr/src/linux-headers-4.15.0-66/arch/mips/boot/dts/ingenic 8 /usr/src/linux-headers-4.15.0-66/arch/mips/boot/dts/img 8 /usr/src/linux-headers-4.15.0-66/arch/mips/boot/dts/brcm 8 /usr/src/linux-headers-4.15.0-66/arch/mips/boot/dts/pic32 8 /usr/src/linux-headers-4.15.0-66/arch/mips/boot/dts/ralink 8 /usr/src/linux-headers-4.15.0-66/arch/mips/boot/dts/netlogic 8 /usr/src/linux-headers-4.15.0-66/arch/mips/boot/dts/mti 104 /usr/src/linux-headers-4.15.0-66/arch/mips/boot/dts 136 /usr/src/linux-headers-4.15.0-66/arch/mips/boot 8 /usr/src/linux-headers-4.15.0-66/arch/mips/pic32/common 8 /usr/src/linux-headers-4.15.0-66/arch/mips/pic32/pic32mzda 28 /usr/src/linux-headers-4.15.0-66/arch/mips/pic32 12 /usr/src/linux-headers-4.15.0-66/arch/mips/bmips 8 /usr/src/linux-headers-4.15.0-66/arch/mips/vr41xx/common 8 /usr/src/linux-headers-4.15.0-66/arch/mips/vr41xx/casio-e55 8 /usr/src/linux-headers-4.15.0-66/arch/mips/vr41xx/ibm-workpad 32 /usr/src/linux-headers-4.15.0-66/arch/mips/vr41xx 12 /usr/src/linux-headers-4.15.0-66/arch/mips/sgi-ip27 12 /usr/src/linux-headers-4.15.0-66/arch/mips/pmcs-msp71xx 8 /usr/src/linux-headers-4.15.0-66/arch/mips/lib 12 /usr/src/linux-headers-4.15.0-66/arch/mips/pistachio 8 /usr/src/linux-headers-4.15.0-66/arch/mips/lasat/image 20 /usr/src/linux-headers-4.15.0-66/arch/mips/lasat 12 /usr/src/linux-headers-4.15.0-66/arch/mips/ralink 8 /usr/src/linux-headers-4.15.0-66/arch/mips/netlogic/xlr 8 /usr/src/linux-headers-4.15.0-66/arch/mips/netlogic/common 8 /usr/src/linux-headers-4.15.0-66/arch/mips/netlogic/xlp 36 /usr/src/linux-headers-4.15.0-66/arch/mips/netlogic 8 /usr/src/linux-headers-4.15.0-66/arch/mips/sibyte/swarm 8 /usr/src/linux-headers-4.15.0-66/arch/mips/sibyte/common 8 /usr/src/linux-headers-4.15.0-66/arch/mips/sibyte/bcm1480 8 /usr/src/linux-headers-4.15.0-66/arch/mips/sibyte/sb1250 44 /usr/src/linux-headers-4.15.0-66/arch/mips/sibyte 8 /usr/src/linux-headers-4.15.0-66/arch/mips/pci 12 /usr/src/linux-headers-4.15.0-66/arch/mips/jz4740 8 /usr/src/linux-headers-4.15.0-66/arch/mips/ar7 7832 /usr/src/linux-headers-4.15.0-66/arch/mips 8 /usr/src/linux-headers-4.15.0-66/arch/parisc/oprofile 8 /usr/src/linux-headers-4.15.0-66/arch/parisc/math-emu 8 /usr/src/linux-headers-4.15.0-66/arch/parisc/mm 160 /usr/src/linux-headers-4.15.0-66/arch/parisc/include/uapi/asm 164 /usr/src/linux-headers-4.15.0-66/arch/parisc/include/uapi 528 /usr/src/linux-headers-4.15.0-66/arch/parisc/include/asm 696 /usr/src/linux-headers-4.15.0-66/arch/parisc/include 8 /usr/src/linux-headers-4.15.0-66/arch/parisc/kernel 8 /usr/src/linux-headers-4.15.0-66/arch/parisc/boot/compressed 20 /usr/src/linux-headers-4.15.0-66/arch/parisc/boot 8 /usr/src/linux-headers-4.15.0-66/arch/parisc/lib 788 /usr/src/linux-headers-4.15.0-66/arch/parisc 8 /usr/src/linux-headers-4.15.0-66/arch/x86/hyperv 8 /usr/src/linux-headers-4.15.0-66/arch/x86/ia32 8 /usr/src/linux-headers-4.15.0-66/arch/x86/oprofile 8 /usr/src/linux-headers-4.15.0-66/arch/x86/power 8 /usr/src/linux-headers-4.15.0-66/arch/x86/purgatory 8 /usr/src/linux-headers-4.15.0-66/arch/x86/ras 8 /usr/src/linux-headers-4.15.0-66/arch/x86/platform/ts5500 8 /usr/src/linux-headers-4.15.0-66/arch/x86/platform/intel 8 /usr/src/linux-headers-4.15.0-66/arch/x86/platform/ce4100 8 /usr/src/linux-headers-4.15.0-66/arch/x86/platform/scx200 8 /usr/src/linux-headers-4.15.0-66/arch/x86/platform/goldfish 8 /usr/src/linux-headers-4.15.0-66/arch/x86/platform/intel-mid/device_libs 16 /usr/src/linux-headers-4.15.0-66/arch/x86/platform/intel-mid 8 /usr/src/linux-headers-4.15.0-66/arch/x86/platform/efi 8 /usr/src/linux-headers-4.15.0-66/arch/x86/platform/geode 8 /usr/src/linux-headers-4.15.0-66/arch/x86/platform/iris 8 /usr/src/linux-headers-4.15.0-66/arch/x86/platform/olpc 8 /usr/src/linux-headers-4.15.0-66/arch/x86/platform/uv 8 /usr/src/linux-headers-4.15.0-66/arch/x86/platform/atom 8 /usr/src/linux-headers-4.15.0-66/arch/x86/platform/intel-quark 8 /usr/src/linux-headers-4.15.0-66/arch/x86/platform/sfi 128 /usr/src/linux-headers-4.15.0-66/arch/x86/platform 8 /usr/src/linux-headers-4.15.0-66/arch/x86/events/intel 8 /usr/src/linux-headers-4.15.0-66/arch/x86/events/amd 28 /usr/src/linux-headers-4.15.0-66/arch/x86/events 8 /usr/src/linux-headers-4.15.0-66/arch/x86/video 8 /usr/src/linux-headers-4.15.0-66/arch/x86/math-emu 8 /usr/src/linux-headers-4.15.0-66/arch/x86/net 8 /usr/src/linux-headers-4.15.0-66/arch/x86/tools 8 /usr/src/linux-headers-4.15.0-66/arch/x86/mm 288 /usr/src/linux-headers-4.15.0-66/arch/x86/include/uapi/asm 292 /usr/src/linux-headers-4.15.0-66/arch/x86/include/uapi 36 /usr/src/linux-headers-4.15.0-66/arch/x86/include/asm/trace 96 /usr/src/linux-headers-4.15.0-66/arch/x86/include/asm/xen 32 /usr/src/linux-headers-4.15.0-66/arch/x86/include/asm/crypto 272 /usr/src/linux-headers-4.15.0-66/arch/x86/include/asm/uv 48 /usr/src/linux-headers-4.15.0-66/arch/x86/include/asm/fpu 12 /usr/src/linux-headers-4.15.0-66/arch/x86/include/asm/numachip 12 /usr/src/linux-headers-4.15.0-66/arch/x86/include/asm/e820 2444 /usr/src/linux-headers-4.15.0-66/arch/x86/include/asm 2740 /usr/src/linux-headers-4.15.0-66/arch/x86/include 12 /usr/src/linux-headers-4.15.0-66/arch/x86/xen 8 /usr/src/linux-headers-4.15.0-66/arch/x86/crypto/sha1-mb 8 /usr/src/linux-headers-4.15.0-66/arch/x86/crypto/sha256-mb 8 /usr/src/linux-headers-4.15.0-66/arch/x86/crypto/sha512-mb 36 /usr/src/linux-headers-4.15.0-66/arch/x86/crypto 8 /usr/src/linux-headers-4.15.0-66/arch/x86/kernel/kprobes 8 /usr/src/linux-headers-4.15.0-66/arch/x86/kernel/apic 8 /usr/src/linux-headers-4.15.0-66/arch/x86/kernel/acpi 8 /usr/src/linux-headers-4.15.0-66/arch/x86/kernel/cpu/mcheck 8 /usr/src/linux-headers-4.15.0-66/arch/x86/kernel/cpu/mtrr 8 /usr/src/linux-headers-4.15.0-66/arch/x86/kernel/cpu/microcode 36 /usr/src/linux-headers-4.15.0-66/arch/x86/kernel/cpu 8 /usr/src/linux-headers-4.15.0-66/arch/x86/kernel/fpu 80 /usr/src/linux-headers-4.15.0-66/arch/x86/kernel 8 /usr/src/linux-headers-4.15.0-66/arch/x86/realmode/rm 16 /usr/src/linux-headers-4.15.0-66/arch/x86/realmode 12 /usr/src/linux-headers-4.15.0-66/arch/x86/kvm 16 /usr/src/linux-headers-4.15.0-66/arch/x86/entry/vdso 8 /usr/src/linux-headers-4.15.0-66/arch/x86/entry/vsyscall 16 /usr/src/linux-headers-4.15.0-66/arch/x86/entry/syscalls 48 /usr/src/linux-headers-4.15.0-66/arch/x86/entry 12 /usr/src/linux-headers-4.15.0-66/arch/x86/boot/compressed 32 /usr/src/linux-headers-4.15.0-66/arch/x86/boot 12 /usr/src/linux-headers-4.15.0-66/arch/x86/um/vdso 8 /usr/src/linux-headers-4.15.0-66/arch/x86/um/os-Linux 32 /usr/src/linux-headers-4.15.0-66/arch/x86/um 8 /usr/src/linux-headers-4.15.0-66/arch/x86/lib 8 /usr/src/linux-headers-4.15.0-66/arch/x86/pci 3428 /usr/src/linux-headers-4.15.0-66/arch/x86 8 /usr/src/linux-headers-4.15.0-66/arch/riscv/mm 48 /usr/src/linux-headers-4.15.0-66/arch/riscv/include/uapi/asm 52 /usr/src/linux-headers-4.15.0-66/arch/riscv/include/uapi 244 /usr/src/linux-headers-4.15.0-66/arch/riscv/include/asm 300 /usr/src/linux-headers-4.15.0-66/arch/riscv/include 8 /usr/src/linux-headers-4.15.0-66/arch/riscv/kernel/vdso 16 /usr/src/linux-headers-4.15.0-66/arch/riscv/kernel 8 /usr/src/linux-headers-4.15.0-66/arch/riscv/lib 348 /usr/src/linux-headers-4.15.0-66/arch/riscv 8 /usr/src/linux-headers-4.15.0-66/arch/openrisc/mm 32 /usr/src/linux-headers-4.15.0-66/arch/openrisc/include/uapi/asm 36 /usr/src/linux-headers-4.15.0-66/arch/openrisc/include/uapi 24 /usr/src/linux-headers-4.15.0-66/arch/openrisc/include/asm/bitops 228 /usr/src/linux-headers-4.15.0-66/arch/openrisc/include/asm 268 /usr/src/linux-headers-4.15.0-66/arch/openrisc/include 8 /usr/src/linux-headers-4.15.0-66/arch/openrisc/kernel 8 /usr/src/linux-headers-4.15.0-66/arch/openrisc/boot/dts 12 /usr/src/linux-headers-4.15.0-66/arch/openrisc/boot 8 /usr/src/linux-headers-4.15.0-66/arch/openrisc/lib 320 /usr/src/linux-headers-4.15.0-66/arch/openrisc 8 /usr/src/linux-headers-4.15.0-66/arch/frv/mm 152 /usr/src/linux-headers-4.15.0-66/arch/frv/include/uapi/asm 156 /usr/src/linux-headers-4.15.0-66/arch/frv/include/uapi 456 /usr/src/linux-headers-4.15.0-66/arch/frv/include/asm 616 /usr/src/linux-headers-4.15.0-66/arch/frv/include 8 /usr/src/linux-headers-4.15.0-66/arch/frv/kernel 8 /usr/src/linux-headers-4.15.0-66/arch/frv/boot 8 /usr/src/linux-headers-4.15.0-66/arch/frv/lib 8 /usr/src/linux-headers-4.15.0-66/arch/frv/mb93090-mb00 680 /usr/src/linux-headers-4.15.0-66/arch/frv 8 /usr/src/linux-headers-4.15.0-66/arch/alpha/oprofile 8 /usr/src/linux-headers-4.15.0-66/arch/alpha/math-emu 8 /usr/src/linux-headers-4.15.0-66/arch/alpha/mm 200 /usr/src/linux-headers-4.15.0-66/arch/alpha/include/uapi/asm 204 /usr/src/linux-headers-4.15.0-66/arch/alpha/include/uapi 652 /usr/src/linux-headers-4.15.0-66/arch/alpha/include/asm 860 /usr/src/linux-headers-4.15.0-66/arch/alpha/include 12 /usr/src/linux-headers-4.15.0-66/arch/alpha/kernel 12 /usr/src/linux-headers-4.15.0-66/arch/alpha/boot 8 /usr/src/linux-headers-4.15.0-66/arch/alpha/lib 952 /usr/src/linux-headers-4.15.0-66/arch/alpha 8 /usr/src/linux-headers-4.15.0-66/arch/um/os-Linux/drivers 8 /usr/src/linux-headers-4.15.0-66/arch/um/os-Linux/skas 24 /usr/src/linux-headers-4.15.0-66/arch/um/os-Linux 8 /usr/src/linux-headers-4.15.0-66/arch/um/drivers 16 /usr/src/linux-headers-4.15.0-66/arch/um/include/shared/skas 120 /usr/src/linux-headers-4.15.0-66/arch/um/include/shared 148 /usr/src/linux-headers-4.15.0-66/arch/um/include/asm 272 /usr/src/linux-headers-4.15.0-66/arch/um/include 8 /usr/src/linux-headers-4.15.0-66/arch/um/kernel/skas 16 /usr/src/linux-headers-4.15.0-66/arch/um/kernel 8 /usr/src/linux-headers-4.15.0-66/arch/um/scripts 388 /usr/src/linux-headers-4.15.0-66/arch/um 8 /usr/src/linux-headers-4.15.0-66/arch/m68k/coldfire 8 /usr/src/linux-headers-4.15.0-66/arch/m68k/emu 8 /usr/src/linux-headers-4.15.0-66/arch/m68k/bvme6000 8 /usr/src/linux-headers-4.15.0-66/arch/m68k/sun3/prom 16 /usr/src/linux-headers-4.15.0-66/arch/m68k/sun3 8 /usr/src/linux-headers-4.15.0-66/arch/m68k/atari 8 /usr/src/linux-headers-4.15.0-66/arch/m68k/ifpsp060 8 /usr/src/linux-headers-4.15.0-66/arch/m68k/math-emu 8 /usr/src/linux-headers-4.15.0-66/arch/m68k/tools/amiga 12 /usr/src/linux-headers-4.15.0-66/arch/m68k/tools 8 /usr/src/linux-headers-4.15.0-66/arch/m68k/mm 116 /usr/src/linux-headers-4.15.0-66/arch/m68k/include/uapi/asm 120 /usr/src/linux-headers-4.15.0-66/arch/m68k/include/uapi 1180 /usr/src/linux-headers-4.15.0-66/arch/m68k/include/asm 1304 /usr/src/linux-headers-4.15.0-66/arch/m68k/include 8 /usr/src/linux-headers-4.15.0-66/arch/m68k/amiga 24 /usr/src/linux-headers-4.15.0-66/arch/m68k/kernel 8 /usr/src/linux-headers-4.15.0-66/arch/m68k/q40 8 /usr/src/linux-headers-4.15.0-66/arch/m68k/mvme16x 8 /usr/src/linux-headers-4.15.0-66/arch/m68k/fpsp040 8 /usr/src/linux-headers-4.15.0-66/arch/m68k/sun3x 8 /usr/src/linux-headers-4.15.0-66/arch/m68k/68000 8 /usr/src/linux-headers-4.15.0-66/arch/m68k/lib 8 /usr/src/linux-headers-4.15.0-66/arch/m68k/mvme147 8 /usr/src/linux-headers-4.15.0-66/arch/m68k/apollo 8 /usr/src/linux-headers-4.15.0-66/arch/m68k/hp300 8 /usr/src/linux-headers-4.15.0-66/arch/m68k/mac 1568 /usr/src/linux-headers-4.15.0-66/arch/m68k 16 /usr/src/linux-headers-4.15.0-66/arch/nios2/platform 8 /usr/src/linux-headers-4.15.0-66/arch/nios2/mm 36 /usr/src/linux-headers-4.15.0-66/arch/nios2/include/uapi/asm 40 /usr/src/linux-headers-4.15.0-66/arch/nios2/include/uapi 164 /usr/src/linux-headers-4.15.0-66/arch/nios2/include/asm 208 /usr/src/linux-headers-4.15.0-66/arch/nios2/include 8 /usr/src/linux-headers-4.15.0-66/arch/nios2/kernel 8 /usr/src/linux-headers-4.15.0-66/arch/nios2/boot/compressed 20 /usr/src/linux-headers-4.15.0-66/arch/nios2/boot 8 /usr/src/linux-headers-4.15.0-66/arch/nios2/lib 288 /usr/src/linux-headers-4.15.0-66/arch/nios2 8 /usr/src/linux-headers-4.15.0-66/arch/arc/oprofile 12 /usr/src/linux-headers-4.15.0-66/arch/arc/plat-hsdk 20 /usr/src/linux-headers-4.15.0-66/arch/arc/plat-eznps/include/plat 24 /usr/src/linux-headers-4.15.0-66/arch/arc/plat-eznps/include 36 /usr/src/linux-headers-4.15.0-66/arch/arc/plat-eznps 8 /usr/src/linux-headers-4.15.0-66/arch/arc/mm 48 /usr/src/linux-headers-4.15.0-66/arch/arc/include/uapi/asm 52 /usr/src/linux-headers-4.15.0-66/arch/arc/include/uapi 388 /usr/src/linux-headers-4.15.0-66/arch/arc/include/asm 444 /usr/src/linux-headers-4.15.0-66/arch/arc/include 8 /usr/src/linux-headers-4.15.0-66/arch/arc/kernel 8 /usr/src/linux-headers-4.15.0-66/arch/arc/boot/dts 16 /usr/src/linux-headers-4.15.0-66/arch/arc/boot 8 /usr/src/linux-headers-4.15.0-66/arch/arc/plat-sim 12 /usr/src/linux-headers-4.15.0-66/arch/arc/plat-tb10x 8 /usr/src/linux-headers-4.15.0-66/arch/arc/lib 12 /usr/src/linux-headers-4.15.0-66/arch/arc/plat-axs10x 604 /usr/src/linux-headers-4.15.0-66/arch/arc 8 /usr/src/linux-headers-4.15.0-66/arch/c6x/mm 36 /usr/src/linux-headers-4.15.0-66/arch/c6x/include/uapi/asm 40 /usr/src/linux-headers-4.15.0-66/arch/c6x/include/uapi 172 /usr/src/linux-headers-4.15.0-66/arch/c6x/include/asm 216 /usr/src/linux-headers-4.15.0-66/arch/c6x/include 8 /usr/src/linux-headers-4.15.0-66/arch/c6x/kernel 8 /usr/src/linux-headers-4.15.0-66/arch/c6x/boot/dts 16 /usr/src/linux-headers-4.15.0-66/arch/c6x/boot 8 /usr/src/linux-headers-4.15.0-66/arch/c6x/lib 12 /usr/src/linux-headers-4.15.0-66/arch/c6x/platforms 280 /usr/src/linux-headers-4.15.0-66/arch/c6x 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-oxnas 8 /usr/src/linux-headers-4.15.0-66/arch/arm/oprofile 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-tegra 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-qcom 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-hisi 8 /usr/src/linux-headers-4.15.0-66/arch/arm/vdso 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-nomadik 8 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-uniphier 16 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-at91 8 /usr/src/linux-headers-4.15.0-66/arch/arm/plat-iop 32 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-footbridge/include/mach 36 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-footbridge/include 52 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-footbridge 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-nspire 104 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-s3c24xx/include/mach 108 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-s3c24xx/include 136 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-s3c24xx 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-rockchip 16 /usr/src/linux-headers-4.15.0-66/arch/arm/plat-pxa/include/plat 20 /usr/src/linux-headers-4.15.0-66/arch/arm/plat-pxa/include 32 /usr/src/linux-headers-4.15.0-66/arch/arm/plat-pxa 48 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-lpc32xx/include/mach 52 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-lpc32xx/include 64 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-lpc32xx 40 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-rpc/include/mach 44 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-rpc/include 56 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-rpc 76 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-iop13xx/include/mach 80 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-iop13xx/include 96 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-iop13xx 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-artpec 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-prima2 12 /usr/src/linux-headers-4.15.0-66/arch/arm/common 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-mediatek 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-mv78xx0 20 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-spear/include/mach 24 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-spear/include 36 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-spear 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-berlin 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-digicolor 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-mvebu 28 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-ebsa110/include/mach 32 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-ebsa110/include 44 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-ebsa110 32 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-ep93xx/include/mach 36 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-ep93xx/include 52 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-ep93xx 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-sti 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-lpc18xx 48 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-iop32x/include/mach 52 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-iop32x/include 68 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-iop32x 32 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-dove/include/mach 36 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-dove/include 52 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-dove 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-ux500 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-integrator 32 /usr/src/linux-headers-4.15.0-66/arch/arm/plat-orion/include/plat 36 /usr/src/linux-headers-4.15.0-66/arch/arm/plat-orion/include 44 /usr/src/linux-headers-4.15.0-66/arch/arm/plat-orion 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-tango 52 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-w90x900/include/mach 56 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-w90x900/include 72 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-w90x900 8 /usr/src/linux-headers-4.15.0-66/arch/arm/probes/uprobes 8 /usr/src/linux-headers-4.15.0-66/arch/arm/probes/kprobes 24 /usr/src/linux-headers-4.15.0-66/arch/arm/probes 8 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-exynos/include/mach 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-exynos/include 24 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-exynos 8 /usr/src/linux-headers-4.15.0-66/arch/arm/net 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-imx/devices 36 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-imx 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-zynq 20 /usr/src/linux-headers-4.15.0-66/arch/arm/tools 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-sunxi 40 /usr/src/linux-headers-4.15.0-66/arch/arm/mm 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-efm32 96 /usr/src/linux-headers-4.15.0-66/arch/arm/include/uapi/asm 100 /usr/src/linux-headers-4.15.0-66/arch/arm/include/uapi 36 /usr/src/linux-headers-4.15.0-66/arch/arm/include/asm/mach 32 /usr/src/linux-headers-4.15.0-66/arch/arm/include/asm/xen 160 /usr/src/linux-headers-4.15.0-66/arch/arm/include/asm/hardware 1180 /usr/src/linux-headers-4.15.0-66/arch/arm/include/asm 152 /usr/src/linux-headers-4.15.0-66/arch/arm/include/debug 1436 /usr/src/linux-headers-4.15.0-66/arch/arm/include 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-s5pv210 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-meson 40 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-iop33x/include/mach 44 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-iop33x/include 60 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-iop33x 8 /usr/src/linux-headers-4.15.0-66/arch/arm/xen 88 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-davinci/include/mach 92 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-davinci/include 112 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-davinci 52 /usr/src/linux-headers-4.15.0-66/arch/arm/crypto 12 /usr/src/linux-headers-4.15.0-66/arch/arm/kernel 8 /usr/src/linux-headers-4.15.0-66/arch/arm/vfp 224 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-pxa/include/mach 228 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-pxa/include 256 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-pxa 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-zx 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-u300 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-actions 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-moxart 36 /usr/src/linux-headers-4.15.0-66/arch/arm/plat-omap/include/plat 40 /usr/src/linux-headers-4.15.0-66/arch/arm/plat-omap/include 56 /usr/src/linux-headers-4.15.0-66/arch/arm/plat-omap 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-cns3xxx 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-alpine 8 /usr/src/linux-headers-4.15.0-66/arch/arm/nwfpe 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-highbank 16 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-vt8500 8 /usr/src/linux-headers-4.15.0-66/arch/arm/kvm/hyp 20 /usr/src/linux-headers-4.15.0-66/arch/arm/kvm 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-versatile 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-picoxcell 12 /usr/src/linux-headers-4.15.0-66/arch/arm/boot/compressed 12 /usr/src/linux-headers-4.15.0-66/arch/arm/boot/bootp 32 /usr/src/linux-headers-4.15.0-66/arch/arm/boot/dts 72 /usr/src/linux-headers-4.15.0-66/arch/arm/boot 12 /usr/src/linux-headers-4.15.0-66/arch/arm/firmware 116 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-omap1/include/mach 120 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-omap1/include 140 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-omap1 180 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-sa1100/include/mach 184 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-sa1100/include 204 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-sa1100 16 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-bcm 16 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-orion5x 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-shmobile 84 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-ixp4xx/include/mach 88 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-ixp4xx/include 108 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-ixp4xx 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-mmp 16 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-omap2/include/mach 20 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-omap2/include 44 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-omap2 8 /usr/src/linux-headers-4.15.0-66/arch/arm/lib 16 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-stm32 12 /usr/src/linux-headers-4.15.0-66/arch/arm/plat-versatile/include/plat 16 /usr/src/linux-headers-4.15.0-66/arch/arm/plat-versatile/include 28 /usr/src/linux-headers-4.15.0-66/arch/arm/plat-versatile 16 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-vexpress 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-clps711x 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-gemini 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-mxs 44 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-netx/include/mach 48 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-netx/include 64 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-netx 144 /usr/src/linux-headers-4.15.0-66/arch/arm/plat-samsung/include/plat 148 /usr/src/linux-headers-4.15.0-66/arch/arm/plat-samsung/include 164 /usr/src/linux-headers-4.15.0-66/arch/arm/plat-samsung 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-keystone 48 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-s3c64xx/include/mach 52 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-s3c64xx/include 72 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-s3c64xx 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-realview 8 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-asm9260 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-axxia 48 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-ks8695/include/mach 52 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-ks8695/include 68 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-ks8695 8 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-aspeed 12 /usr/src/linux-headers-4.15.0-66/arch/arm/mach-socfpga 4784 /usr/src/linux-headers-4.15.0-66/arch/arm 8 /usr/src/linux-headers-4.15.0-66/arch/powerpc/oprofile 8 /usr/src/linux-headers-4.15.0-66/arch/powerpc/perf 8 /usr/src/linux-headers-4.15.0-66/arch/powerpc/sysdev/ge 12 /usr/src/linux-headers-4.15.0-66/arch/powerpc/sysdev/xics 12 /usr/src/linux-headers-4.15.0-66/arch/powerpc/sysdev/xive 44 /usr/src/linux-headers-4.15.0-66/arch/powerpc/sysdev 8 /usr/src/linux-headers-4.15.0-66/arch/powerpc/purgatory 8 /usr/src/linux-headers-4.15.0-66/arch/powerpc/math-emu 8 /usr/src/linux-headers-4.15.0-66/arch/powerpc/net 20 /usr/src/linux-headers-4.15.0-66/arch/powerpc/tools 8 /usr/src/linux-headers-4.15.0-66/arch/powerpc/mm 8 /usr/src/linux-headers-4.15.0-66/arch/powerpc/xmon 232 /usr/src/linux-headers-4.15.0-66/arch/powerpc/include/uapi/asm 236 /usr/src/linux-headers-4.15.0-66/arch/powerpc/include/uapi 32 /usr/src/linux-headers-4.15.0-66/arch/powerpc/include/asm/book3s/32 152 /usr/src/linux-headers-4.15.0-66/arch/powerpc/include/asm/book3s/64 196 /usr/src/linux-headers-4.15.0-66/arch/powerpc/include/asm/book3s 40 /usr/src/linux-headers-4.15.0-66/arch/powerpc/include/asm/nohash/32 36 /usr/src/linux-headers-4.15.0-66/arch/powerpc/include/asm/nohash/64 96 /usr/src/linux-headers-4.15.0-66/arch/powerpc/include/asm/nohash 2448 /usr/src/linux-headers-4.15.0-66/arch/powerpc/include/asm 2688 /usr/src/linux-headers-4.15.0-66/arch/powerpc/include 8 /usr/src/linux-headers-4.15.0-66/arch/powerpc/crypto 8 /usr/src/linux-headers-4.15.0-66/arch/powerpc/kernel/trace 8 /usr/src/linux-headers-4.15.0-66/arch/powerpc/kernel/vdso64 8 /usr/src/linux-headers-4.15.0-66/arch/powerpc/kernel/vdso32 44 /usr/src/linux-headers-4.15.0-66/arch/powerpc/kernel 16 /usr/src/linux-headers-4.15.0-66/arch/powerpc/kvm 28 /usr/src/linux-headers-4.15.0-66/arch/powerpc/boot 8 /usr/src/linux-headers-4.15.0-66/arch/powerpc/lib 12 /usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms/82xx 12 /usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms/83xx 16 /usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms/pseries 12 /usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms/52xx 12 /usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms/pasemi 12 /usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms/40x 12 /usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms/maple 12 /usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms/embedded6xx 12 /usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms/86xx 12 /usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms/amigaone 8 /usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms/4xx 24 /usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms/44x 16 /usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms/8xx 16 /usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms/ps3 12 /usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms/chrp 12 /usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms/powernv 16 /usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms/85xx 12 /usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms/powermac 12 /usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms/512x 8 /usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms/cell/spufs 20 /usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms/cell 304 /usr/src/linux-headers-4.15.0-66/arch/powerpc/platforms 3288 /usr/src/linux-headers-4.15.0-66/arch/powerpc 8 /usr/src/linux-headers-4.15.0-66/arch/ia64/hp/zx1 8 /usr/src/linux-headers-4.15.0-66/arch/ia64/hp/common 12 /usr/src/linux-headers-4.15.0-66/arch/ia64/hp/sim/boot 24 /usr/src/linux-headers-4.15.0-66/arch/ia64/hp/sim 44 /usr/src/linux-headers-4.15.0-66/arch/ia64/hp 8 /usr/src/linux-headers-4.15.0-66/arch/ia64/oprofile 8 /usr/src/linux-headers-4.15.0-66/arch/ia64/dig 24 /usr/src/linux-headers-4.15.0-66/arch/ia64/sn/include/xtalk 36 /usr/src/linux-headers-4.15.0-66/arch/ia64/sn/include 8 /usr/src/linux-headers-4.15.0-66/arch/ia64/sn/kernel/sn2 16 /usr/src/linux-headers-4.15.0-66/arch/ia64/sn/kernel 8 /usr/src/linux-headers-4.15.0-66/arch/ia64/sn/pci/pcibr 16 /usr/src/linux-headers-4.15.0-66/arch/ia64/sn/pci 76 /usr/src/linux-headers-4.15.0-66/arch/ia64/sn 8 /usr/src/linux-headers-4.15.0-66/arch/ia64/mm 236 /usr/src/linux-headers-4.15.0-66/arch/ia64/include/uapi/asm 240 /usr/src/linux-headers-4.15.0-66/arch/ia64/include/uapi 12 /usr/src/linux-headers-4.15.0-66/arch/ia64/include/asm/sn/sn2 440 /usr/src/linux-headers-4.15.0-66/arch/ia64/include/asm/sn 16 /usr/src/linux-headers-4.15.0-66/arch/ia64/include/asm/native 56 /usr/src/linux-headers-4.15.0-66/arch/ia64/include/asm/uv 1240 /usr/src/linux-headers-4.15.0-66/arch/ia64/include/asm 1484 /usr/src/linux-headers-4.15.0-66/arch/ia64/include 12 /usr/src/linux-headers-4.15.0-66/arch/ia64/kernel 8 /usr/src/linux-headers-4.15.0-66/arch/ia64/scripts 8 /usr/src/linux-headers-4.15.0-66/arch/ia64/uv/kernel 16 /usr/src/linux-headers-4.15.0-66/arch/ia64/uv 8 /usr/src/linux-headers-4.15.0-66/arch/ia64/lib 8 /usr/src/linux-headers-4.15.0-66/arch/ia64/pci 1716 /usr/src/linux-headers-4.15.0-66/arch/ia64 48356 /usr/src/linux-headers-4.15.0-66/arch 8 /usr/src/linux-headers-4.15.0-66/lib/lzo 8 /usr/src/linux-headers-4.15.0-66/lib/lz4 8 /usr/src/linux-headers-4.15.0-66/lib/reed_solomon 12 /usr/src/linux-headers-4.15.0-66/lib/xz 8 /usr/src/linux-headers-4.15.0-66/lib/zlib_deflate 8 /usr/src/linux-headers-4.15.0-66/lib/zstd 16 /usr/src/linux-headers-4.15.0-66/lib/fonts 8 /usr/src/linux-headers-4.15.0-66/lib/raid6/test 20 /usr/src/linux-headers-4.15.0-66/lib/raid6 8 /usr/src/linux-headers-4.15.0-66/lib/842 8 /usr/src/linux-headers-4.15.0-66/lib/mpi 8 /usr/src/linux-headers-4.15.0-66/lib/zlib_inflate 228 /usr/src/linux-headers-4.15.0-66/lib 16 /usr/src/linux-headers-4.15.0-66/usr 115552 /usr/src/linux-headers-4.15.0-66 12 /usr/src/linux-headers-4.15.0-70/fs/udf 36 /usr/src/linux-headers-4.15.0-70/fs/nls 16 /usr/src/linux-headers-4.15.0-70/fs/squashfs 8 /usr/src/linux-headers-4.15.0-70/fs/hostfs 12 /usr/src/linux-headers-4.15.0-70/fs/adfs 12 /usr/src/linux-headers-4.15.0-70/fs/freevxfs 12 /usr/src/linux-headers-4.15.0-70/fs/sysfs 12 /usr/src/linux-headers-4.15.0-70/fs/efs 12 /usr/src/linux-headers-4.15.0-70/fs/afs 12 /usr/src/linux-headers-4.15.0-70/fs/gfs2 12 /usr/src/linux-headers-4.15.0-70/fs/ecryptfs 12 /usr/src/linux-headers-4.15.0-70/fs/orangefs 12 /usr/src/linux-headers-4.15.0-70/fs/ntfs 20 /usr/src/linux-headers-4.15.0-70/fs/cifs 12 /usr/src/linux-headers-4.15.0-70/fs/notify/dnotify 12 /usr/src/linux-headers-4.15.0-70/fs/notify/inotify 12 /usr/src/linux-headers-4.15.0-70/fs/notify/fanotify 48 /usr/src/linux-headers-4.15.0-70/fs/notify 12 /usr/src/linux-headers-4.15.0-70/fs/affs 12 /usr/src/linux-headers-4.15.0-70/fs/autofs4 16 /usr/src/linux-headers-4.15.0-70/fs/exofs 8 /usr/src/linux-headers-4.15.0-70/fs/openpromfs 12 /usr/src/linux-headers-4.15.0-70/fs/sysv 16 /usr/src/linux-headers-4.15.0-70/fs/jffs2 8 /usr/src/linux-headers-4.15.0-70/fs/tracefs 8 /usr/src/linux-headers-4.15.0-70/fs/devpts 12 /usr/src/linux-headers-4.15.0-70/fs/qnx4 12 /usr/src/linux-headers-4.15.0-70/fs/hfsplus 12 /usr/src/linux-headers-4.15.0-70/fs/ufs 12 /usr/src/linux-headers-4.15.0-70/fs/btrfs 12 /usr/src/linux-headers-4.15.0-70/fs/efivarfs 12 /usr/src/linux-headers-4.15.0-70/fs/fscache 12 /usr/src/linux-headers-4.15.0-70/fs/pstore 12 /usr/src/linux-headers-4.15.0-70/fs/f2fs 12 /usr/src/linux-headers-4.15.0-70/fs/9p 12 /usr/src/linux-headers-4.15.0-70/fs/crypto 12 /usr/src/linux-headers-4.15.0-70/fs/minix 12 /usr/src/linux-headers-4.15.0-70/fs/qnx6 12 /usr/src/linux-headers-4.15.0-70/fs/ubifs 16 /usr/src/linux-headers-4.15.0-70/fs/ncpfs 12 /usr/src/linux-headers-4.15.0-70/fs/hpfs 12 /usr/src/linux-headers-4.15.0-70/fs/kernfs 12 /usr/src/linux-headers-4.15.0-70/fs/omfs 12 /usr/src/linux-headers-4.15.0-70/fs/configfs 8 /usr/src/linux-headers-4.15.0-70/fs/nfs_common 12 /usr/src/linux-headers-4.15.0-70/fs/cramfs 16 /usr/src/linux-headers-4.15.0-70/fs/aufs 12 /usr/src/linux-headers-4.15.0-70/fs/hfs 20 /usr/src/linux-headers-4.15.0-70/fs/xfs 12 /usr/src/linux-headers-4.15.0-70/fs/coda 8 /usr/src/linux-headers-4.15.0-70/fs/nfs/blocklayout 8 /usr/src/linux-headers-4.15.0-70/fs/nfs/flexfilelayout 8 /usr/src/linux-headers-4.15.0-70/fs/nfs/filelayout 40 /usr/src/linux-headers-4.15.0-70/fs/nfs 8 /usr/src/linux-headers-4.15.0-70/fs/hugetlbfs 8 /usr/src/linux-headers-4.15.0-70/fs/ocfs2/cluster 8 /usr/src/linux-headers-4.15.0-70/fs/ocfs2/dlmfs 8 /usr/src/linux-headers-4.15.0-70/fs/ocfs2/dlm 36 /usr/src/linux-headers-4.15.0-70/fs/ocfs2 12 /usr/src/linux-headers-4.15.0-70/fs/isofs 12 /usr/src/linux-headers-4.15.0-70/fs/romfs 12 /usr/src/linux-headers-4.15.0-70/fs/dlm 16 /usr/src/linux-headers-4.15.0-70/fs/fat 12 /usr/src/linux-headers-4.15.0-70/fs/cachefiles 12 /usr/src/linux-headers-4.15.0-70/fs/quota 12 /usr/src/linux-headers-4.15.0-70/fs/ext2 16 /usr/src/linux-headers-4.15.0-70/fs/nfsd 8 /usr/src/linux-headers-4.15.0-70/fs/exportfs 12 /usr/src/linux-headers-4.15.0-70/fs/bfs 16 /usr/src/linux-headers-4.15.0-70/fs/ext4 12 /usr/src/linux-headers-4.15.0-70/fs/overlayfs 12 /usr/src/linux-headers-4.15.0-70/fs/fuse 8 /usr/src/linux-headers-4.15.0-70/fs/lockd 12 /usr/src/linux-headers-4.15.0-70/fs/ceph 8 /usr/src/linux-headers-4.15.0-70/fs/debugfs 12 /usr/src/linux-headers-4.15.0-70/fs/proc 12 /usr/src/linux-headers-4.15.0-70/fs/jbd2 8 /usr/src/linux-headers-4.15.0-70/fs/ramfs 12 /usr/src/linux-headers-4.15.0-70/fs/nilfs2 12 /usr/src/linux-headers-4.15.0-70/fs/jfs 12 /usr/src/linux-headers-4.15.0-70/fs/befs 12 /usr/src/linux-headers-4.15.0-70/fs/reiserfs 1024 /usr/src/linux-headers-4.15.0-70/fs 8 /usr/src/linux-headers-4.15.0-70/virt/kvm 12 /usr/src/linux-headers-4.15.0-70/virt/lib 28 /usr/src/linux-headers-4.15.0-70/virt 40 /usr/src/linux-headers-4.15.0-70/drivers/spi 12 /usr/src/linux-headers-4.15.0-70/drivers/soc/ti 8 /usr/src/linux-headers-4.15.0-70/drivers/soc/lantiq 12 /usr/src/linux-headers-4.15.0-70/drivers/soc/qcom 8 /usr/src/linux-headers-4.15.0-70/drivers/soc/bcm/brcmstb/pm 20 /usr/src/linux-headers-4.15.0-70/drivers/soc/bcm/brcmstb 32 /usr/src/linux-headers-4.15.0-70/drivers/soc/bcm 12 /usr/src/linux-headers-4.15.0-70/drivers/soc/versatile 12 /usr/src/linux-headers-4.15.0-70/drivers/soc/actions 8 /usr/src/linux-headers-4.15.0-70/drivers/soc/dove 8 /usr/src/linux-headers-4.15.0-70/drivers/soc/tegra/fuse 20 /usr/src/linux-headers-4.15.0-70/drivers/soc/tegra 12 /usr/src/linux-headers-4.15.0-70/drivers/soc/imx 12 /usr/src/linux-headers-4.15.0-70/drivers/soc/ux500 12 /usr/src/linux-headers-4.15.0-70/drivers/soc/fsl/qe 12 /usr/src/linux-headers-4.15.0-70/drivers/soc/fsl/qbman 36 /usr/src/linux-headers-4.15.0-70/drivers/soc/fsl 12 /usr/src/linux-headers-4.15.0-70/drivers/soc/zte 12 /usr/src/linux-headers-4.15.0-70/drivers/soc/renesas 12 /usr/src/linux-headers-4.15.0-70/drivers/soc/mediatek 12 /usr/src/linux-headers-4.15.0-70/drivers/soc/amlogic 12 /usr/src/linux-headers-4.15.0-70/drivers/soc/samsung 12 /usr/src/linux-headers-4.15.0-70/drivers/soc/rockchip 12 /usr/src/linux-headers-4.15.0-70/drivers/soc/atmel 12 /usr/src/linux-headers-4.15.0-70/drivers/soc/sunxi 284 /usr/src/linux-headers-4.15.0-70/drivers/soc 12 /usr/src/linux-headers-4.15.0-70/drivers/nfc/nfcmrvl 12 /usr/src/linux-headers-4.15.0-70/drivers/nfc/pn533 12 /usr/src/linux-headers-4.15.0-70/drivers/nfc/fdp 12 /usr/src/linux-headers-4.15.0-70/drivers/nfc/s3fwrn5 12 /usr/src/linux-headers-4.15.0-70/drivers/nfc/pn544 12 /usr/src/linux-headers-4.15.0-70/drivers/nfc/nxp-nci 12 /usr/src/linux-headers-4.15.0-70/drivers/nfc/st95hf 12 /usr/src/linux-headers-4.15.0-70/drivers/nfc/microread 12 /usr/src/linux-headers-4.15.0-70/drivers/nfc/st21nfca 12 /usr/src/linux-headers-4.15.0-70/drivers/nfc/st-nci 132 /usr/src/linux-headers-4.15.0-70/drivers/nfc 20 /usr/src/linux-headers-4.15.0-70/drivers/bluetooth 16 /usr/src/linux-headers-4.15.0-70/drivers/power/reset 32 /usr/src/linux-headers-4.15.0-70/drivers/power/supply 12 /usr/src/linux-headers-4.15.0-70/drivers/power/avs 72 /usr/src/linux-headers-4.15.0-70/drivers/power 12 /usr/src/linux-headers-4.15.0-70/drivers/ntb/hw/intel 12 /usr/src/linux-headers-4.15.0-70/drivers/ntb/hw/mscc 12 /usr/src/linux-headers-4.15.0-70/drivers/ntb/hw/idt 12 /usr/src/linux-headers-4.15.0-70/drivers/ntb/hw/amd 60 /usr/src/linux-headers-4.15.0-70/drivers/ntb/hw 12 /usr/src/linux-headers-4.15.0-70/drivers/ntb/test 84 /usr/src/linux-headers-4.15.0-70/drivers/ntb 8 /usr/src/linux-headers-4.15.0-70/drivers/perf/hisilicon 20 /usr/src/linux-headers-4.15.0-70/drivers/perf 68 /usr/src/linux-headers-4.15.0-70/drivers/rtc 12 /usr/src/linux-headers-4.15.0-70/drivers/dma-buf 12 /usr/src/linux-headers-4.15.0-70/drivers/firewire 52 /usr/src/linux-headers-4.15.0-70/drivers/gpio 12 /usr/src/linux-headers-4.15.0-70/drivers/memstick/core 12 /usr/src/linux-headers-4.15.0-70/drivers/memstick/host 36 /usr/src/linux-headers-4.15.0-70/drivers/memstick 12 /usr/src/linux-headers-4.15.0-70/drivers/vlynq 12 /usr/src/linux-headers-4.15.0-70/drivers/dca 12 /usr/src/linux-headers-4.15.0-70/drivers/dax 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/ipu-v3 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/vga 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/savage 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/vc4 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/atmel-hlcdc 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/bochs 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/mxsfb 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/selftests 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/r128 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/sti 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/i915/gvt 28 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/i915 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/ttm 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/tdfx 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/etnaviv 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/i2c 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/tve200 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/mgag200 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/via 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/stm 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/dispnv04 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvif 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine/sec2 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine/msenc 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine/bsp 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine/device 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine/disp 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine/sw 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine/mspdec 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine/sec 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine/fifo 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine/ce 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine/cipher 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine/mpeg 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine/nvdec 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine/vic 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine/gr 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine/dma 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine/msppp 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine/msvld 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine/nvenc 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine/pm 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine/vp 176 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/engine 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/gpio 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/top 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/mmu 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/devinit 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/instmem 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/iccsense 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/i2c 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/bus 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/fb 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/secboot 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/bar 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/therm 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/bios 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/volt 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/pmu 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/mxm 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/mc 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/clk 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/timer 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/ibus 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/fuse 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/pci 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev/ltc 192 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/subdev 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/core 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm/falcon 392 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau/nvkm 420 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/nouveau 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/exynos 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/tilcdc 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/rcar-du 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/fsl-dcu 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/tegra 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/virtio 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/imx 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/ast 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/radeon 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/sis 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/qxl 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/msm 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/cirrus 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/zte 16 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/panel 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/udl 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/armada 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/omapdrm/dss 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/omapdrm/displays 36 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/omapdrm 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/i810 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/bridge/analogix 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/bridge/adv7511 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/bridge/synopsys 48 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/bridge 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/shmobile 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/mga 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/powerplay/hwmgr 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/powerplay/smumgr 24 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/powerplay 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/acp 16 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/amdgpu 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/display/amdgpu_dm 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/display/dc/dce112 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/display/dc/gpio 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/display/dc/dml 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/display/dc/dcn10 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/display/dc/calcs 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/display/dc/irq 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/display/dc/dce120 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/display/dc/basics 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/display/dc/bios 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/display/dc/i2caux 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/display/dc/dce100 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/display/dc/virtual 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/display/dc/dce 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/display/dc/dce110 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/display/dc/dce80 128 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/display/dc 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/display/modules/freesync 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/display/modules 160 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/display 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/lib 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd/amdkfd 240 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/amd 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/pl111 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/mediatek 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/sun4i 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/vmwgfx 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/hisilicon/hibmc 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/hisilicon/kirin 36 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/hisilicon 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/rockchip 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/arc 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/gma500 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/arm 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/meson 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/tinydrm/core 20 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/tinydrm 8 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm/vgem 1364 /usr/src/linux-headers-4.15.0-70/drivers/gpu/drm 12 /usr/src/linux-headers-4.15.0-70/drivers/gpu/host1x 1408 /usr/src/linux-headers-4.15.0-70/drivers/gpu 12 /usr/src/linux-headers-4.15.0-70/drivers/sn 12 /usr/src/linux-headers-4.15.0-70/drivers/spmi 24 /usr/src/linux-headers-4.15.0-70/drivers/char/hw_random 12 /usr/src/linux-headers-4.15.0-70/drivers/char/ipmi 12 /usr/src/linux-headers-4.15.0-70/drivers/char/xillybus 16 /usr/src/linux-headers-4.15.0-70/drivers/char/agp 8 /usr/src/linux-headers-4.15.0-70/drivers/char/mwave 8 /usr/src/linux-headers-4.15.0-70/drivers/char/xilinx_hwicap 12 /usr/src/linux-headers-4.15.0-70/drivers/char/pcmcia 12 /usr/src/linux-headers-4.15.0-70/drivers/char/tpm/st33zp24 28 /usr/src/linux-headers-4.15.0-70/drivers/char/tpm 152 /usr/src/linux-headers-4.15.0-70/drivers/char 12 /usr/src/linux-headers-4.15.0-70/drivers/thunderbolt 12 /usr/src/linux-headers-4.15.0-70/drivers/memory/tegra 12 /usr/src/linux-headers-4.15.0-70/drivers/memory/samsung 40 /usr/src/linux-headers-4.15.0-70/drivers/memory 12 /usr/src/linux-headers-4.15.0-70/drivers/fsi 12 /usr/src/linux-headers-4.15.0-70/drivers/virt 12 /usr/src/linux-headers-4.15.0-70/drivers/pinctrl/spear 12 /usr/src/linux-headers-4.15.0-70/drivers/pinctrl/sh-pfc 12 /usr/src/linux-headers-4.15.0-70/drivers/pinctrl/intel 12 /usr/src/linux-headers-4.15.0-70/drivers/pinctrl/vt8500 12 /usr/src/linux-headers-4.15.0-70/drivers/pinctrl/stm32 12 /usr/src/linux-headers-4.15.0-70/drivers/pinctrl/uniphier 12 /usr/src/linux-headers-4.15.0-70/drivers/pinctrl/ti 16 /usr/src/linux-headers-4.15.0-70/drivers/pinctrl/qcom 12 /usr/src/linux-headers-4.15.0-70/drivers/pinctrl/bcm 12 /usr/src/linux-headers-4.15.0-70/drivers/pinctrl/berlin 12 /usr/src/linux-headers-4.15.0-70/drivers/pinctrl/tegra 12 /usr/src/linux-headers-4.15.0-70/drivers/pinctrl/nomadik 12 /usr/src/linux-headers-4.15.0-70/drivers/pinctrl/sprd 12 /usr/src/linux-headers-4.15.0-70/drivers/pinctrl/zte 12 /usr/src/linux-headers-4.15.0-70/drivers/pinctrl/aspeed 12 /usr/src/linux-headers-4.15.0-70/drivers/pinctrl/freescale 12 /usr/src/linux-headers-4.15.0-70/drivers/pinctrl/pxa 8 /usr/src/linux-headers-4.15.0-70/drivers/pinctrl/sirf 12 /usr/src/linux-headers-4.15.0-70/drivers/pinctrl/mediatek 12 /usr/src/linux-headers-4.15.0-70/drivers/pinctrl/samsung 12 /usr/src/linux-headers-4.15.0-70/drivers/pinctrl/mvebu 12 /usr/src/linux-headers-4.15.0-70/drivers/pinctrl/sunxi 12 /usr/src/linux-headers-4.15.0-70/drivers/pinctrl/meson 296 /usr/src/linux-headers-4.15.0-70/drivers/pinctrl 44 /usr/src/linux-headers-4.15.0-70/drivers/regulator 16 /usr/src/linux-headers-4.15.0-70/drivers/vhost 12 /usr/src/linux-headers-4.15.0-70/drivers/ras 12 /usr/src/linux-headers-4.15.0-70/drivers/fmc 12 /usr/src/linux-headers-4.15.0-70/drivers/tee/optee 24 /usr/src/linux-headers-4.15.0-70/drivers/tee 16 /usr/src/linux-headers-4.15.0-70/drivers/mtd/spi-nor 8 /usr/src/linux-headers-4.15.0-70/drivers/mtd/nand/brcmnand 8 /usr/src/linux-headers-4.15.0-70/drivers/mtd/nand/bcm47xxnflash 8 /usr/src/linux-headers-4.15.0-70/drivers/mtd/nand/gpmi-nand 8 /usr/src/linux-headers-4.15.0-70/drivers/mtd/nand/atmel 60 /usr/src/linux-headers-4.15.0-70/drivers/mtd/nand 8 /usr/src/linux-headers-4.15.0-70/drivers/mtd/tests 12 /usr/src/linux-headers-4.15.0-70/drivers/mtd/onenand 12 /usr/src/linux-headers-4.15.0-70/drivers/mtd/lpddr 24 /usr/src/linux-headers-4.15.0-70/drivers/mtd/maps 20 /usr/src/linux-headers-4.15.0-70/drivers/mtd/devices 12 /usr/src/linux-headers-4.15.0-70/drivers/mtd/parsers 20 /usr/src/linux-headers-4.15.0-70/drivers/mtd/chips 16 /usr/src/linux-headers-4.15.0-70/drivers/mtd/ubi 220 /usr/src/linux-headers-4.15.0-70/drivers/mtd 8 /usr/src/linux-headers-4.15.0-70/drivers/nubus 12 /usr/src/linux-headers-4.15.0-70/drivers/reset/sti 12 /usr/src/linux-headers-4.15.0-70/drivers/reset/tegra 12 /usr/src/linux-headers-4.15.0-70/drivers/reset/hisilicon 48 /usr/src/linux-headers-4.15.0-70/drivers/reset 8 /usr/src/linux-headers-4.15.0-70/drivers/accessibility/braille 20 /usr/src/linux-headers-4.15.0-70/drivers/accessibility 12 /usr/src/linux-headers-4.15.0-70/drivers/pps/clients 12 /usr/src/linux-headers-4.15.0-70/drivers/pps/generators 36 /usr/src/linux-headers-4.15.0-70/drivers/pps 16 /usr/src/linux-headers-4.15.0-70/drivers/parport 24 /usr/src/linux-headers-4.15.0-70/drivers/atm 12 /usr/src/linux-headers-4.15.0-70/drivers/ptp 20 /usr/src/linux-headers-4.15.0-70/drivers/iommu 12 /usr/src/linux-headers-4.15.0-70/drivers/opp 12 /usr/src/linux-headers-4.15.0-70/drivers/hsi/clients 12 /usr/src/linux-headers-4.15.0-70/drivers/hsi/controllers 36 /usr/src/linux-headers-4.15.0-70/drivers/hsi 12 /usr/src/linux-headers-4.15.0-70/drivers/i2c/muxes 56 /usr/src/linux-headers-4.15.0-70/drivers/i2c/busses 12 /usr/src/linux-headers-4.15.0-70/drivers/i2c/algos 96 /usr/src/linux-headers-4.15.0-70/drivers/i2c 8 /usr/src/linux-headers-4.15.0-70/drivers/macintosh/ams 28 /usr/src/linux-headers-4.15.0-70/drivers/macintosh 16 /usr/src/linux-headers-4.15.0-70/drivers/hwmon/pmbus 88 /usr/src/linux-headers-4.15.0-70/drivers/hwmon 12 /usr/src/linux-headers-4.15.0-70/drivers/platform/goldfish 12 /usr/src/linux-headers-4.15.0-70/drivers/platform/chrome 12 /usr/src/linux-headers-4.15.0-70/drivers/platform/mips 48 /usr/src/linux-headers-4.15.0-70/drivers/platform/x86 8 /usr/src/linux-headers-4.15.0-70/drivers/platform/olpc 104 /usr/src/linux-headers-4.15.0-70/drivers/platform 8 /usr/src/linux-headers-4.15.0-70/drivers/s390/cio 16 /usr/src/linux-headers-4.15.0-70/drivers/s390/char 12 /usr/src/linux-headers-4.15.0-70/drivers/s390/net 8 /usr/src/linux-headers-4.15.0-70/drivers/s390/virtio 8 /usr/src/linux-headers-4.15.0-70/drivers/s390/crypto 12 /usr/src/linux-headers-4.15.0-70/drivers/s390/block 8 /usr/src/linux-headers-4.15.0-70/drivers/s390/scsi 80 /usr/src/linux-headers-4.15.0-70/drivers/s390 12 /usr/src/linux-headers-4.15.0-70/drivers/idle 16 /usr/src/linux-headers-4.15.0-70/drivers/bus 12 /usr/src/linux-headers-4.15.0-70/drivers/message/fusion 20 /usr/src/linux-headers-4.15.0-70/drivers/message 12 /usr/src/linux-headers-4.15.0-70/drivers/mcb 12 /usr/src/linux-headers-4.15.0-70/drivers/video/logo 8 /usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/savage 12 /usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/omap2/omapfb/dss 12 /usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/omap2/omapfb/displays 36 /usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/omap2/omapfb 48 /usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/omap2 8 /usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/intelfb 8 /usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/mbx 8 /usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/vermilion 12 /usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/mmp/fb 12 /usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/mmp/panel 12 /usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/mmp/hw 48 /usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/mmp 8 /usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/via 12 /usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/geode 8 /usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/core 8 /usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/sis 8 /usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/riva 12 /usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/omap 8 /usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/matrox 8 /usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/aty 8 /usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/i810 8 /usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/nvidia 8 /usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/mb862xx 8 /usr/src/linux-headers-4.15.0-70/drivers/video/fbdev/kyro 320 /usr/src/linux-headers-4.15.0-70/drivers/video/fbdev 16 /usr/src/linux-headers-4.15.0-70/drivers/video/console 24 /usr/src/linux-headers-4.15.0-70/drivers/video/backlight 384 /usr/src/linux-headers-4.15.0-70/drivers/video 12 /usr/src/linux-headers-4.15.0-70/drivers/nvme/host 12 /usr/src/linux-headers-4.15.0-70/drivers/nvme/target 36 /usr/src/linux-headers-4.15.0-70/drivers/nvme 8 /usr/src/linux-headers-4.15.0-70/drivers/dio 16 /usr/src/linux-headers-4.15.0-70/drivers/extcon 8 /usr/src/linux-headers-4.15.0-70/drivers/base/power 12 /usr/src/linux-headers-4.15.0-70/drivers/base/regmap 12 /usr/src/linux-headers-4.15.0-70/drivers/base/test 52 /usr/src/linux-headers-4.15.0-70/drivers/base 12 /usr/src/linux-headers-4.15.0-70/drivers/android 12 /usr/src/linux-headers-4.15.0-70/drivers/net/hyperv 12 /usr/src/linux-headers-4.15.0-70/drivers/net/wimax/i2400m 24 /usr/src/linux-headers-4.15.0-70/drivers/net/wimax 8 /usr/src/linux-headers-4.15.0-70/drivers/net/fjes 8 /usr/src/linux-headers-4.15.0-70/drivers/net/bonding 12 /usr/src/linux-headers-4.15.0-70/drivers/net/team 8 /usr/src/linux-headers-4.15.0-70/drivers/net/cris 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ipvlan 12 /usr/src/linux-headers-4.15.0-70/drivers/net/can/spi 12 /usr/src/linux-headers-4.15.0-70/drivers/net/can/cc770 12 /usr/src/linux-headers-4.15.0-70/drivers/net/can/sja1000 12 /usr/src/linux-headers-4.15.0-70/drivers/net/can/ifi_canfd 12 /usr/src/linux-headers-4.15.0-70/drivers/net/can/c_can 12 /usr/src/linux-headers-4.15.0-70/drivers/net/can/mscan 12 /usr/src/linux-headers-4.15.0-70/drivers/net/can/softing 12 /usr/src/linux-headers-4.15.0-70/drivers/net/can/m_can 8 /usr/src/linux-headers-4.15.0-70/drivers/net/can/usb/peak_usb 20 /usr/src/linux-headers-4.15.0-70/drivers/net/can/usb 12 /usr/src/linux-headers-4.15.0-70/drivers/net/can/rcar 12 /usr/src/linux-headers-4.15.0-70/drivers/net/can/peak_canfd 156 /usr/src/linux-headers-4.15.0-70/drivers/net/can 8 /usr/src/linux-headers-4.15.0-70/drivers/net/wan/lmc 32 /usr/src/linux-headers-4.15.0-70/drivers/net/wan 12 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/cisco 8 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/intel/iwlwifi/mvm 8 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/intel/iwlwifi/dvm 32 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/intel/iwlwifi 12 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/intel/iwlegacy 16 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/intel/ipw2x00 72 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/intel 12 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/st/cw1200 24 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/st 12 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/rsi 12 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/quantenna/qtnfmac 24 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/quantenna 12 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/ti/wl12xx 12 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/ti/wl1251 12 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/ti/wlcore 12 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/ti/wl18xx 60 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/ti 8 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/intersil/prism54 12 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/intersil/hostap 12 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/intersil/p54 16 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/intersil/orinoco 60 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/intersil 12 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/admtek 8 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/broadcom/brcm80211/brcmfmac 8 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/broadcom/brcm80211/brcmutil 8 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/broadcom/brcm80211/brcmsmac 36 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/broadcom/brcm80211 16 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/broadcom/b43 12 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/broadcom/b43legacy 76 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/broadcom 12 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/ath/wil6210 12 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/ath/carl9170 12 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/ath/ath5k 16 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/ath/ath9k 12 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/ath/wcn36xx 12 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/ath/ath10k 12 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/ath/ath6kl 12 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/ath/ar5523 112 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/ath 12 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/realtek/rtl8xxxu 8 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/realtek/rtlwifi/rtl8192de 8 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/realtek/rtlwifi/rtl8192cu 8 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/realtek/rtlwifi/rtl8192ce 8 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/realtek/rtlwifi/rtl8192se 8 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/realtek/rtlwifi/rtl8192c 8 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/realtek/rtlwifi/rtl8723be 8 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/realtek/rtlwifi/rtl8723com 8 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/realtek/rtlwifi/rtl8821ae 8 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/realtek/rtlwifi/btcoexist 8 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/realtek/rtlwifi/rtl8192ee 8 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/realtek/rtlwifi/rtl8188ee 8 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/realtek/rtlwifi/rtl8723ae 108 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/realtek/rtlwifi 8 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/realtek/rtl818x/rtl8180 8 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/realtek/rtl818x/rtl8187 28 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/realtek/rtl818x 160 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/realtek 12 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/marvell/libertas_tf 12 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/marvell/mwifiex 12 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/marvell/libertas 48 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/marvell 12 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/mediatek/mt7601u 24 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/mediatek 12 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/atmel 16 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/ralink/rt2x00 28 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/ralink 12 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/zydas/zd1211rw 24 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless/zydas 772 /usr/src/linux-headers-4.15.0-70/drivers/net/wireless 12 /usr/src/linux-headers-4.15.0-70/drivers/net/dsa/mv88e6xxx 12 /usr/src/linux-headers-4.15.0-70/drivers/net/dsa/b53 12 /usr/src/linux-headers-4.15.0-70/drivers/net/dsa/microchip 48 /usr/src/linux-headers-4.15.0-70/drivers/net/dsa 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/aeroflex 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/calxeda 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/silan 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/moxa 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/hp 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/emulex/benet 24 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/emulex 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/nxp 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/ibm/emac 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/ibm/ehea 32 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/ibm 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/altera 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/cisco/enic 24 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/cisco 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/aurora 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/intel/ixgbevf 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/intel/igbvf 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/intel/i40evf 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/intel/ixgbe 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/intel/fm10k 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/intel/ixgb 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/intel/e1000 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/intel/igb 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/intel/i40e 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/intel/e1000e 100 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/intel 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/natsemi 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/pasemi 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/qlogic/qede 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/qlogic/netxen 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/qlogic/qlcnic 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/qlogic/qed 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/qlogic/qlge 52 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/qlogic 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/oki-semi/pch_gbe 24 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/oki-semi 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/apm/xgene 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/apm/xgene-v2 36 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/apm 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/alteon 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/nuvoton 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/agere 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/qualcomm/rmnet 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/qualcomm/emac 32 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/qualcomm 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/tehuti 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/ti 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/i825xx 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/rdc 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/sfc/falcon 24 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/sfc 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/rocker 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/tile 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/wiznet 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/huawei/hinic 24 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/huawei 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/via 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/myricom/myri10ge 20 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/myricom 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/chelsio/libcxgb 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/chelsio/cxgb3 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/chelsio/cxgb 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/chelsio/cxgb4vf 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/chelsio/cxgb4 52 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/chelsio 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/microchip 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/toshiba 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/allwinner 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/broadcom/bnx2x 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/broadcom/genet 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/broadcom/bnxt 40 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/broadcom 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/seeq 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/xscale 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/sis 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/adi 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/mellanox/mlxfw 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/mellanox/mlx5/core/diag 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/mellanox/mlx5/core/ipoib 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/mellanox/mlx5/core/fpga 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/mellanox/mlx5/core/accel 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/mellanox/mlx5/core/lib 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/mellanox/mlx5/core/en_accel 60 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/mellanox/mlx5/core 64 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/mellanox/mlx5 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/mellanox/mlx4 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/mellanox/mlxsw 112 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/mellanox 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/3com 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/cadence 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/neterion/vxge 20 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/neterion 16 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/stmicro/stmmac 28 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/stmicro 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/davicom 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/cirrus 16 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/dec/tulip 28 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/dec 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/fujitsu 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/micrel 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/atheros/atlx 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/atheros/alx 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/atheros/atl1c 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/atheros/atl1e 44 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/atheros 16 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/8390 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/ezchip 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/socionext 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/freescale/fs_enet 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/freescale/fman 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/freescale/dpaa 48 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/freescale 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/renesas 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/faraday 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/realtek 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/aquantia/atlantic 20 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/aquantia 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/xircom 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/nvidia 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/amd/xgbe 24 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/amd 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/netronome/nfp 20 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/netronome 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/alacritech 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/packetengines 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/sun 16 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/marvell 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/mediatek 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/adaptec 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/apple 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/dlink 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/samsung/sxgbe 20 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/samsung 16 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/smsc 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/sgi 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/hisilicon/hns 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/hisilicon/hns3/hns3pf 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/hisilicon/hns3/hns3vf 24 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/hisilicon/hns3 44 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/hisilicon 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/arc 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/tundra 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/cavium/octeon 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/cavium/liquidio 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/cavium/thunder 36 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/cavium 8 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/amazon/ena 20 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/amazon 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/brocade/bna 24 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/brocade 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/xilinx 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet/synopsys 1672 /usr/src/linux-headers-4.15.0-70/drivers/net/ethernet 8 /usr/src/linux-headers-4.15.0-70/drivers/net/vmxnet3 12 /usr/src/linux-headers-4.15.0-70/drivers/net/hippi 16 /usr/src/linux-headers-4.15.0-70/drivers/net/hamradio 12 /usr/src/linux-headers-4.15.0-70/drivers/net/ieee802154 20 /usr/src/linux-headers-4.15.0-70/drivers/net/phy 16 /usr/src/linux-headers-4.15.0-70/drivers/net/appletalk 12 /usr/src/linux-headers-4.15.0-70/drivers/net/plip 16 /usr/src/linux-headers-4.15.0-70/drivers/net/arcnet 16 /usr/src/linux-headers-4.15.0-70/drivers/net/ppp 12 /usr/src/linux-headers-4.15.0-70/drivers/net/slip 32 /usr/src/linux-headers-4.15.0-70/drivers/net/usb 12 /usr/src/linux-headers-4.15.0-70/drivers/net/caif 8 /usr/src/linux-headers-4.15.0-70/drivers/net/xen-netback 8 /usr/src/linux-headers-4.15.0-70/drivers/net/fddi/skfp 20 /usr/src/linux-headers-4.15.0-70/drivers/net/fddi 3000 /usr/src/linux-headers-4.15.0-70/drivers/net 12 /usr/src/linux-headers-4.15.0-70/drivers/devfreq/event 28 /usr/src/linux-headers-4.15.0-70/drivers/devfreq 12 /usr/src/linux-headers-4.15.0-70/drivers/leds/trigger 44 /usr/src/linux-headers-4.15.0-70/drivers/leds 12 /usr/src/linux-headers-4.15.0-70/drivers/nvdimm 24 /usr/src/linux-headers-4.15.0-70/drivers/auxdisplay 8 /usr/src/linux-headers-4.15.0-70/drivers/ps3 32 /usr/src/linux-headers-4.15.0-70/drivers/input/keyboard 12 /usr/src/linux-headers-4.15.0-70/drivers/input/rmi4 12 /usr/src/linux-headers-4.15.0-70/drivers/input/tablet 24 /usr/src/linux-headers-4.15.0-70/drivers/input/mouse 36 /usr/src/linux-headers-4.15.0-70/drivers/input/misc 48 /usr/src/linux-headers-4.15.0-70/drivers/input/touchscreen 20 /usr/src/linux-headers-4.15.0-70/drivers/input/serio 12 /usr/src/linux-headers-4.15.0-70/drivers/input/gameport 12 /usr/src/linux-headers-4.15.0-70/drivers/input/joystick/iforce 32 /usr/src/linux-headers-4.15.0-70/drivers/input/joystick 244 /usr/src/linux-headers-4.15.0-70/drivers/input 12 /usr/src/linux-headers-4.15.0-70/drivers/virtio 12 /usr/src/linux-headers-4.15.0-70/drivers/hwspinlock 24 /usr/src/linux-headers-4.15.0-70/drivers/clocksource 12 /usr/src/linux-headers-4.15.0-70/drivers/hwtracing/stm 12 /usr/src/linux-headers-4.15.0-70/drivers/hwtracing/intel_th 16 /usr/src/linux-headers-4.15.0-70/drivers/hwtracing/coresight 44 /usr/src/linux-headers-4.15.0-70/drivers/hwtracing 12 /usr/src/linux-headers-4.15.0-70/drivers/sbus/char 20 /usr/src/linux-headers-4.15.0-70/drivers/sbus 8 /usr/src/linux-headers-4.15.0-70/drivers/xen/xenfs 8 /usr/src/linux-headers-4.15.0-70/drivers/xen/events 8 /usr/src/linux-headers-4.15.0-70/drivers/xen/xen-pciback 8 /usr/src/linux-headers-4.15.0-70/drivers/xen/xenbus 52 /usr/src/linux-headers-4.15.0-70/drivers/xen 12 /usr/src/linux-headers-4.15.0-70/drivers/mux 12 /usr/src/linux-headers-4.15.0-70/drivers/phy/st 12 /usr/src/linux-headers-4.15.0-70/drivers/phy/qualcomm 12 /usr/src/linux-headers-4.15.0-70/drivers/phy/ti 12 /usr/src/linux-headers-4.15.0-70/drivers/phy/lantiq 12 /usr/src/linux-headers-4.15.0-70/drivers/phy/motorola 12 /usr/src/linux-headers-4.15.0-70/drivers/phy/tegra 12 /usr/src/linux-headers-4.15.0-70/drivers/phy/allwinner 12 /usr/src/linux-headers-4.15.0-70/drivers/phy/broadcom 12 /usr/src/linux-headers-4.15.0-70/drivers/phy/renesas 12 /usr/src/linux-headers-4.15.0-70/drivers/phy/marvell 12 /usr/src/linux-headers-4.15.0-70/drivers/phy/mediatek 12 /usr/src/linux-headers-4.15.0-70/drivers/phy/amlogic 12 /usr/src/linux-headers-4.15.0-70/drivers/phy/samsung 12 /usr/src/linux-headers-4.15.0-70/drivers/phy/hisilicon 12 /usr/src/linux-headers-4.15.0-70/drivers/phy/rockchip 12 /usr/src/linux-headers-4.15.0-70/drivers/phy/ralink 204 /usr/src/linux-headers-4.15.0-70/drivers/phy 120 /usr/src/linux-headers-4.15.0-70/drivers/crypto/vmx 8 /usr/src/linux-headers-4.15.0-70/drivers/crypto/amcc 12 /usr/src/linux-headers-4.15.0-70/drivers/crypto/stm32 8 /usr/src/linux-headers-4.15.0-70/drivers/crypto/bcm 12 /usr/src/linux-headers-4.15.0-70/drivers/crypto/chelsio 12 /usr/src/linux-headers-4.15.0-70/drivers/crypto/virtio 8 /usr/src/linux-headers-4.15.0-70/drivers/crypto/axis 8 /usr/src/linux-headers-4.15.0-70/drivers/crypto/ux500/cryp 8 /usr/src/linux-headers-4.15.0-70/drivers/crypto/ux500/hash 28 /usr/src/linux-headers-4.15.0-70/drivers/crypto/ux500 8 /usr/src/linux-headers-4.15.0-70/drivers/crypto/qat/qat_c3xxx 8 /usr/src/linux-headers-4.15.0-70/drivers/crypto/qat/qat_c62xvf 8 /usr/src/linux-headers-4.15.0-70/drivers/crypto/qat/qat_c62x 8 /usr/src/linux-headers-4.15.0-70/drivers/crypto/qat/qat_c3xxxvf 8 /usr/src/linux-headers-4.15.0-70/drivers/crypto/qat/qat_dh895xccvf 8 /usr/src/linux-headers-4.15.0-70/drivers/crypto/qat/qat_dh895xcc 8 /usr/src/linux-headers-4.15.0-70/drivers/crypto/qat/qat_common 68 /usr/src/linux-headers-4.15.0-70/drivers/crypto/qat 12 /usr/src/linux-headers-4.15.0-70/drivers/crypto/ccp 8 /usr/src/linux-headers-4.15.0-70/drivers/crypto/sunxi-ss 8 /usr/src/linux-headers-4.15.0-70/drivers/crypto/marvell 12 /usr/src/linux-headers-4.15.0-70/drivers/crypto/nx 8 /usr/src/linux-headers-4.15.0-70/drivers/crypto/mediatek 16 /usr/src/linux-headers-4.15.0-70/drivers/crypto/caam 8 /usr/src/linux-headers-4.15.0-70/drivers/crypto/rockchip 8 /usr/src/linux-headers-4.15.0-70/drivers/crypto/inside-secure 12 /usr/src/linux-headers-4.15.0-70/drivers/crypto/cavium/cpt 12 /usr/src/linux-headers-4.15.0-70/drivers/crypto/cavium/nitrox 8 /usr/src/linux-headers-4.15.0-70/drivers/crypto/cavium/zip 40 /usr/src/linux-headers-4.15.0-70/drivers/crypto/cavium 8 /usr/src/linux-headers-4.15.0-70/drivers/crypto/qce 436 /usr/src/linux-headers-4.15.0-70/drivers/crypto 12 /usr/src/linux-headers-4.15.0-70/drivers/bcma 12 /usr/src/linux-headers-4.15.0-70/drivers/pnp/pnpbios 12 /usr/src/linux-headers-4.15.0-70/drivers/pnp/pnpacpi 12 /usr/src/linux-headers-4.15.0-70/drivers/pnp/isapnp 48 /usr/src/linux-headers-4.15.0-70/drivers/pnp 8 /usr/src/linux-headers-4.15.0-70/drivers/block/xen-blkback 12 /usr/src/linux-headers-4.15.0-70/drivers/block/mtip32xx 8 /usr/src/linux-headers-4.15.0-70/drivers/block/aoe 24 /usr/src/linux-headers-4.15.0-70/drivers/block/paride 8 /usr/src/linux-headers-4.15.0-70/drivers/block/rsxx 12 /usr/src/linux-headers-4.15.0-70/drivers/block/drbd 12 /usr/src/linux-headers-4.15.0-70/drivers/block/zram 112 /usr/src/linux-headers-4.15.0-70/drivers/block 16 /usr/src/linux-headers-4.15.0-70/drivers/irqchip 12 /usr/src/linux-headers-4.15.0-70/drivers/scsi/cxlflash 12 /usr/src/linux-headers-4.15.0-70/drivers/scsi/be2iscsi 12 /usr/src/linux-headers-4.15.0-70/drivers/scsi/smartpqi 8 /usr/src/linux-headers-4.15.0-70/drivers/scsi/ibmvscsi 12 /usr/src/linux-headers-4.15.0-70/drivers/scsi/qla4xxx 8 /usr/src/linux-headers-4.15.0-70/drivers/scsi/bfa 8 /usr/src/linux-headers-4.15.0-70/drivers/scsi/aacraid 8 /usr/src/linux-headers-4.15.0-70/drivers/scsi/arcmsr 8 /usr/src/linux-headers-4.15.0-70/drivers/scsi/aic7xxx/aicasm 24 /usr/src/linux-headers-4.15.0-70/drivers/scsi/aic7xxx 8 /usr/src/linux-headers-4.15.0-70/drivers/scsi/snic 8 /usr/src/linux-headers-4.15.0-70/drivers/scsi/fcoe 12 /usr/src/linux-headers-4.15.0-70/drivers/scsi/mvsas 12 /usr/src/linux-headers-4.15.0-70/drivers/scsi/device_handler 12 /usr/src/linux-headers-4.15.0-70/drivers/scsi/ufs 8 /usr/src/linux-headers-4.15.0-70/drivers/scsi/ibmvscsi_tgt 12 /usr/src/linux-headers-4.15.0-70/drivers/scsi/osd 12 /usr/src/linux-headers-4.15.0-70/drivers/scsi/bnx2i 12 /usr/src/linux-headers-4.15.0-70/drivers/scsi/qedi 12 /usr/src/linux-headers-4.15.0-70/drivers/scsi/aic94xx 8 /usr/src/linux-headers-4.15.0-70/drivers/scsi/lpfc 12 /usr/src/linux-headers-4.15.0-70/drivers/scsi/csiostor 12 /usr/src/linux-headers-4.15.0-70/drivers/scsi/hisi_sas 12 /usr/src/linux-headers-4.15.0-70/drivers/scsi/qla2xxx 8 /usr/src/linux-headers-4.15.0-70/drivers/scsi/fnic 12 /usr/src/linux-headers-4.15.0-70/drivers/scsi/esas2r 12 /usr/src/linux-headers-4.15.0-70/drivers/scsi/libsas 8 /usr/src/linux-headers-4.15.0-70/drivers/scsi/libfc 12 /usr/src/linux-headers-4.15.0-70/drivers/scsi/pcmcia 12 /usr/src/linux-headers-4.15.0-70/drivers/scsi/cxgbi/cxgb4i 12 /usr/src/linux-headers-4.15.0-70/drivers/scsi/cxgbi/cxgb3i 36 /usr/src/linux-headers-4.15.0-70/drivers/scsi/cxgbi 12 /usr/src/linux-headers-4.15.0-70/drivers/scsi/bnx2fc 12 /usr/src/linux-headers-4.15.0-70/drivers/scsi/megaraid 8 /usr/src/linux-headers-4.15.0-70/drivers/scsi/pm8001 12 /usr/src/linux-headers-4.15.0-70/drivers/scsi/arm 12 /usr/src/linux-headers-4.15.0-70/drivers/scsi/qedf 8 /usr/src/linux-headers-4.15.0-70/drivers/scsi/isci 8 /usr/src/linux-headers-4.15.0-70/drivers/scsi/sym53c8xx_2 12 /usr/src/linux-headers-4.15.0-70/drivers/scsi/mpt3sas 528 /usr/src/linux-headers-4.15.0-70/drivers/scsi 12 /usr/src/linux-headers-4.15.0-70/drivers/amba 8 /usr/src/linux-headers-4.15.0-70/drivers/sh/maple 8 /usr/src/linux-headers-4.15.0-70/drivers/sh/superhyway 8 /usr/src/linux-headers-4.15.0-70/drivers/sh/clk 12 /usr/src/linux-headers-4.15.0-70/drivers/sh/intc 48 /usr/src/linux-headers-4.15.0-70/drivers/sh 12 /usr/src/linux-headers-4.15.0-70/drivers/thermal/int340x_thermal 12 /usr/src/linux-headers-4.15.0-70/drivers/thermal/st 12 /usr/src/linux-headers-4.15.0-70/drivers/thermal/qcom 12 /usr/src/linux-headers-4.15.0-70/drivers/thermal/tegra 12 /usr/src/linux-headers-4.15.0-70/drivers/thermal/broadcom 12 /usr/src/linux-headers-4.15.0-70/drivers/thermal/samsung 12 /usr/src/linux-headers-4.15.0-70/drivers/thermal/ti-soc-thermal 112 /usr/src/linux-headers-4.15.0-70/drivers/thermal 12 /usr/src/linux-headers-4.15.0-70/drivers/fpga 12 /usr/src/linux-headers-4.15.0-70/drivers/eisa 8 /usr/src/linux-headers-4.15.0-70/drivers/uwb/i1480/dfu 16 /usr/src/linux-headers-4.15.0-70/drivers/uwb/i1480 28 /usr/src/linux-headers-4.15.0-70/drivers/uwb 8 /usr/src/linux-headers-4.15.0-70/drivers/tc 12 /usr/src/linux-headers-4.15.0-70/drivers/misc/cxl 8 /usr/src/linux-headers-4.15.0-70/drivers/misc/ibmasm 12 /usr/src/linux-headers-4.15.0-70/drivers/misc/vmw_vmci 8 /usr/src/linux-headers-4.15.0-70/drivers/misc/sgi-gru 12 /usr/src/linux-headers-4.15.0-70/drivers/misc/ti-st 12 /usr/src/linux-headers-4.15.0-70/drivers/misc/lis3lv02d 12 /usr/src/linux-headers-4.15.0-70/drivers/misc/cb710 8 /usr/src/linux-headers-4.15.0-70/drivers/misc/sgi-xp 12 /usr/src/linux-headers-4.15.0-70/drivers/misc/eeprom 12 /usr/src/linux-headers-4.15.0-70/drivers/misc/cardreader 12 /usr/src/linux-headers-4.15.0-70/drivers/misc/c2port 12 /usr/src/linux-headers-4.15.0-70/drivers/misc/altera-stapl 12 /usr/src/linux-headers-4.15.0-70/drivers/misc/ocxl 12 /usr/src/linux-headers-4.15.0-70/drivers/misc/genwqe 8 /usr/src/linux-headers-4.15.0-70/drivers/misc/mic/cosm 8 /usr/src/linux-headers-4.15.0-70/drivers/misc/mic/scif 8 /usr/src/linux-headers-4.15.0-70/drivers/misc/mic/vop 8 /usr/src/linux-headers-4.15.0-70/drivers/misc/mic/card 8 /usr/src/linux-headers-4.15.0-70/drivers/misc/mic/bus 8 /usr/src/linux-headers-4.15.0-70/drivers/misc/mic/host 8 /usr/src/linux-headers-4.15.0-70/drivers/misc/mic/cosm_client 72 /usr/src/linux-headers-4.15.0-70/drivers/misc/mic 12 /usr/src/linux-headers-4.15.0-70/drivers/misc/echo 12 /usr/src/linux-headers-4.15.0-70/drivers/misc/mei 280 /usr/src/linux-headers-4.15.0-70/drivers/misc 8 /usr/src/linux-headers-4.15.0-70/drivers/of/unittest-data 20 /usr/src/linux-headers-4.15.0-70/drivers/of 12 /usr/src/linux-headers-4.15.0-70/drivers/hid/usbhid 12 /usr/src/linux-headers-4.15.0-70/drivers/hid/i2c-hid 12 /usr/src/linux-headers-4.15.0-70/drivers/hid/intel-ish-hid 80 /usr/src/linux-headers-4.15.0-70/drivers/hid 12 /usr/src/linux-headers-4.15.0-70/drivers/md/persistent-data 12 /usr/src/linux-headers-4.15.0-70/drivers/md/bcache 52 /usr/src/linux-headers-4.15.0-70/drivers/md 12 /usr/src/linux-headers-4.15.0-70/drivers/vfio/platform/reset 24 /usr/src/linux-headers-4.15.0-70/drivers/vfio/platform 12 /usr/src/linux-headers-4.15.0-70/drivers/vfio/mdev 12 /usr/src/linux-headers-4.15.0-70/drivers/vfio/pci 60 /usr/src/linux-headers-4.15.0-70/drivers/vfio 16 /usr/src/linux-headers-4.15.0-70/drivers/parisc 76 /usr/src/linux-headers-4.15.0-70/drivers/mfd 12 /usr/src/linux-headers-4.15.0-70/drivers/powercap 12 /usr/src/linux-headers-4.15.0-70/drivers/target/tcm_fc 12 /usr/src/linux-headers-4.15.0-70/drivers/target/sbp 12 /usr/src/linux-headers-4.15.0-70/drivers/target/iscsi/cxgbit 24 /usr/src/linux-headers-4.15.0-70/drivers/target/iscsi 12 /usr/src/linux-headers-4.15.0-70/drivers/target/loopback 72 /usr/src/linux-headers-4.15.0-70/drivers/target 16 /usr/src/linux-headers-4.15.0-70/drivers/nvmem 8 /usr/src/linux-headers-4.15.0-70/drivers/clk/spear 8 /usr/src/linux-headers-4.15.0-70/drivers/clk/nxp 8 /usr/src/linux-headers-4.15.0-70/drivers/clk/st 8 /usr/src/linux-headers-4.15.0-70/drivers/clk/loongson1 8 /usr/src/linux-headers-4.15.0-70/drivers/clk/mxs 12 /usr/src/linux-headers-4.15.0-70/drivers/clk/uniphier 12 /usr/src/linux-headers-4.15.0-70/drivers/clk/ti 16 /usr/src/linux-headers-4.15.0-70/drivers/clk/qcom 8 /usr/src/linux-headers-4.15.0-70/drivers/clk/at91 8 /usr/src/linux-headers-4.15.0-70/drivers/clk/mmp 12 /usr/src/linux-headers-4.15.0-70/drivers/clk/bcm 8 /usr/src/linux-headers-4.15.0-70/drivers/clk/h8300 12 /usr/src/linux-headers-4.15.0-70/drivers/clk/versatile 8 /usr/src/linux-headers-4.15.0-70/drivers/clk/berlin 8 /usr/src/linux-headers-4.15.0-70/drivers/clk/ingenic 8 /usr/src/linux-headers-4.15.0-70/drivers/clk/microchip 12 /usr/src/linux-headers-4.15.0-70/drivers/clk/tegra 8 /usr/src/linux-headers-4.15.0-70/drivers/clk/imx 12 /usr/src/linux-headers-4.15.0-70/drivers/clk/keystone 8 /usr/src/linux-headers-4.15.0-70/drivers/clk/axis 12 /usr/src/linux-headers-4.15.0-70/drivers/clk/sunxi-ng 8 /usr/src/linux-headers-4.15.0-70/drivers/clk/ux500 12 /usr/src/linux-headers-4.15.0-70/drivers/clk/imgtec 8 /usr/src/linux-headers-4.15.0-70/drivers/clk/zte 8 /usr/src/linux-headers-4.15.0-70/drivers/clk/x86 8 /usr/src/linux-headers-4.15.0-70/drivers/clk/pxa 12 /usr/src/linux-headers-4.15.0-70/drivers/clk/renesas 8 /usr/src/linux-headers-4.15.0-70/drivers/clk/sirf 8 /usr/src/linux-headers-4.15.0-70/drivers/clk/axs10x 16 /usr/src/linux-headers-4.15.0-70/drivers/clk/mediatek 12 /usr/src/linux-headers-4.15.0-70/drivers/clk/samsung 8 /usr/src/linux-headers-4.15.0-70/drivers/clk/pistachio 12 /usr/src/linux-headers-4.15.0-70/drivers/clk/mvebu 12 /usr/src/linux-headers-4.15.0-70/drivers/clk/hisilicon 8 /usr/src/linux-headers-4.15.0-70/drivers/clk/rockchip 8 /usr/src/linux-headers-4.15.0-70/drivers/clk/sunxi 8 /usr/src/linux-headers-4.15.0-70/drivers/clk/zynq 8 /usr/src/linux-headers-4.15.0-70/drivers/clk/socfpga 12 /usr/src/linux-headers-4.15.0-70/drivers/clk/meson 396 /usr/src/linux-headers-4.15.0-70/drivers/clk 12 /usr/src/linux-headers-4.15.0-70/drivers/ipack/carriers 12 /usr/src/linux-headers-4.15.0-70/drivers/ipack/devices 36 /usr/src/linux-headers-4.15.0-70/drivers/ipack 12 /usr/src/linux-headers-4.15.0-70/drivers/iio/buffer 12 /usr/src/linux-headers-4.15.0-70/drivers/iio/counter 12 /usr/src/linux-headers-4.15.0-70/drivers/iio/potentiostat 12 /usr/src/linux-headers-4.15.0-70/drivers/iio/frequency 12 /usr/src/linux-headers-4.15.0-70/drivers/iio/humidity 12 /usr/src/linux-headers-4.15.0-70/drivers/iio/common/ssp_sensors 12 /usr/src/linux-headers-4.15.0-70/drivers/iio/common/hid-sensors 12 /usr/src/linux-headers-4.15.0-70/drivers/iio/common/st_sensors 12 /usr/src/linux-headers-4.15.0-70/drivers/iio/common/ms_sensors 12 /usr/src/linux-headers-4.15.0-70/drivers/iio/common/cros_ec_sensors 72 /usr/src/linux-headers-4.15.0-70/drivers/iio/common 36 /usr/src/linux-headers-4.15.0-70/drivers/iio/adc 16 /usr/src/linux-headers-4.15.0-70/drivers/iio/magnetometer 12 /usr/src/linux-headers-4.15.0-70/drivers/iio/multiplexer 20 /usr/src/linux-headers-4.15.0-70/drivers/iio/light 12 /usr/src/linux-headers-4.15.0-70/drivers/iio/potentiometer 12 /usr/src/linux-headers-4.15.0-70/drivers/iio/proximity 12 /usr/src/linux-headers-4.15.0-70/drivers/iio/dummy 12 /usr/src/linux-headers-4.15.0-70/drivers/iio/gyro 12 /usr/src/linux-headers-4.15.0-70/drivers/iio/orientation 12 /usr/src/linux-headers-4.15.0-70/drivers/iio/chemical 20 /usr/src/linux-headers-4.15.0-70/drivers/iio/accel 16 /usr/src/linux-headers-4.15.0-70/drivers/iio/pressure 12 /usr/src/linux-headers-4.15.0-70/drivers/iio/amplifiers 12 /usr/src/linux-headers-4.15.0-70/drivers/iio/health 12 /usr/src/linux-headers-4.15.0-70/drivers/iio/temperature 12 /usr/src/linux-headers-4.15.0-70/drivers/iio/imu/inv_mpu6050 12 /usr/src/linux-headers-4.15.0-70/drivers/iio/imu/bmi160 12 /usr/src/linux-headers-4.15.0-70/drivers/iio/imu/st_lsm6dsx 48 /usr/src/linux-headers-4.15.0-70/drivers/iio/imu 20 /usr/src/linux-headers-4.15.0-70/drivers/iio/dac 12 /usr/src/linux-headers-4.15.0-70/drivers/iio/trigger 452 /usr/src/linux-headers-4.15.0-70/drivers/iio 12 /usr/src/linux-headers-4.15.0-70/drivers/mmc/core 40 /usr/src/linux-headers-4.15.0-70/drivers/mmc/host 64 /usr/src/linux-headers-4.15.0-70/drivers/mmc 12 /usr/src/linux-headers-4.15.0-70/drivers/dma/bestcomm 12 /usr/src/linux-headers-4.15.0-70/drivers/dma/hsu 8 /usr/src/linux-headers-4.15.0-70/drivers/dma/ioat 12 /usr/src/linux-headers-4.15.0-70/drivers/dma/qcom 8 /usr/src/linux-headers-4.15.0-70/drivers/dma/ipu 8 /usr/src/linux-headers-4.15.0-70/drivers/dma/ppc4xx 12 /usr/src/linux-headers-4.15.0-70/drivers/dma/sh 12 /usr/src/linux-headers-4.15.0-70/drivers/dma/dw 8 /usr/src/linux-headers-4.15.0-70/drivers/dma/xilinx 120 /usr/src/linux-headers-4.15.0-70/drivers/dma 8 /usr/src/linux-headers-4.15.0-70/drivers/firmware/efi/libstub 8 /usr/src/linux-headers-4.15.0-70/drivers/firmware/efi/test 32 /usr/src/linux-headers-4.15.0-70/drivers/firmware/efi 12 /usr/src/linux-headers-4.15.0-70/drivers/firmware/tegra 12 /usr/src/linux-headers-4.15.0-70/drivers/firmware/broadcom 12 /usr/src/linux-headers-4.15.0-70/drivers/firmware/google 12 /usr/src/linux-headers-4.15.0-70/drivers/firmware/meson 100 /usr/src/linux-headers-4.15.0-70/drivers/firmware 12 /usr/src/linux-headers-4.15.0-70/drivers/infiniband/sw/rxe 12 /usr/src/linux-headers-4.15.0-70/drivers/infiniband/sw/rdmavt 32 /usr/src/linux-headers-4.15.0-70/drivers/infiniband/sw 8 /usr/src/linux-headers-4.15.0-70/drivers/infiniband/core 12 /usr/src/linux-headers-4.15.0-70/drivers/infiniband/hw/hns 12 /usr/src/linux-headers-4.15.0-70/drivers/infiniband/hw/hfi1 12 /usr/src/linux-headers-4.15.0-70/drivers/infiniband/hw/qib 12 /usr/src/linux-headers-4.15.0-70/drivers/infiniband/hw/cxgb3 12 /usr/src/linux-headers-4.15.0-70/drivers/infiniband/hw/i40iw 12 /usr/src/linux-headers-4.15.0-70/drivers/infiniband/hw/ocrdma 12 /usr/src/linux-headers-4.15.0-70/drivers/infiniband/hw/qedr 12 /usr/src/linux-headers-4.15.0-70/drivers/infiniband/hw/mlx5 12 /usr/src/linux-headers-4.15.0-70/drivers/infiniband/hw/nes 12 /usr/src/linux-headers-4.15.0-70/drivers/infiniband/hw/mlx4 12 /usr/src/linux-headers-4.15.0-70/drivers/infiniband/hw/vmw_pvrdma 12 /usr/src/linux-headers-4.15.0-70/drivers/infiniband/hw/bnxt_re 12 /usr/src/linux-headers-4.15.0-70/drivers/infiniband/hw/mthca 12 /usr/src/linux-headers-4.15.0-70/drivers/infiniband/hw/cxgb4 12 /usr/src/linux-headers-4.15.0-70/drivers/infiniband/hw/usnic 188 /usr/src/linux-headers-4.15.0-70/drivers/infiniband/hw 12 /usr/src/linux-headers-4.15.0-70/drivers/infiniband/ulp/isert 12 /usr/src/linux-headers-4.15.0-70/drivers/infiniband/ulp/iser 12 /usr/src/linux-headers-4.15.0-70/drivers/infiniband/ulp/srp 12 /usr/src/linux-headers-4.15.0-70/drivers/infiniband/ulp/ipoib 12 /usr/src/linux-headers-4.15.0-70/drivers/infiniband/ulp/srpt 12 /usr/src/linux-headers-4.15.0-70/drivers/infiniband/ulp/opa_vnic 80 /usr/src/linux-headers-4.15.0-70/drivers/infiniband/ulp 320 /usr/src/linux-headers-4.15.0-70/drivers/infiniband 8 /usr/src/linux-headers-4.15.0-70/drivers/acpi/acpica 12 /usr/src/linux-headers-4.15.0-70/drivers/acpi/arm64 12 /usr/src/linux-headers-4.15.0-70/drivers/acpi/dptf 12 /usr/src/linux-headers-4.15.0-70/drivers/acpi/apei 12 /usr/src/linux-headers-4.15.0-70/drivers/acpi/nfit 84 /usr/src/linux-headers-4.15.0-70/drivers/acpi 12 /usr/src/linux-headers-4.15.0-70/drivers/rpmsg 16 /usr/src/linux-headers-4.15.0-70/drivers/ssb 12 /usr/src/linux-headers-4.15.0-70/drivers/connector 40 /usr/src/linux-headers-4.15.0-70/drivers/ata 16 /usr/src/linux-headers-4.15.0-70/drivers/w1/slaves 12 /usr/src/linux-headers-4.15.0-70/drivers/w1/masters 40 /usr/src/linux-headers-4.15.0-70/drivers/w1 20 /usr/src/linux-headers-4.15.0-70/drivers/pcmcia 12 /usr/src/linux-headers-4.15.0-70/drivers/usb/dwc3 12 /usr/src/linux-headers-4.15.0-70/drivers/usb/dwc2 12 /usr/src/linux-headers-4.15.0-70/drivers/usb/wusbcore 8 /usr/src/linux-headers-4.15.0-70/drivers/usb/common 12 /usr/src/linux-headers-4.15.0-70/drivers/usb/usbip 40 /usr/src/linux-headers-4.15.0-70/drivers/usb/serial 12 /usr/src/linux-headers-4.15.0-70/drivers/usb/chipidea 12 /usr/src/linux-headers-4.15.0-70/drivers/usb/atm 12 /usr/src/linux-headers-4.15.0-70/drivers/usb/mon 12 /usr/src/linux-headers-4.15.0-70/drivers/usb/class 16 /usr/src/linux-headers-4.15.0-70/drivers/usb/musb 12 /usr/src/linux-headers-4.15.0-70/drivers/usb/renesas_usbhs 8 /usr/src/linux-headers-4.15.0-70/drivers/usb/early 8 /usr/src/linux-headers-4.15.0-70/drivers/usb/c67x00 12 /usr/src/linux-headers-4.15.0-70/drivers/usb/core 12 /usr/src/linux-headers-4.15.0-70/drivers/usb/mtu3 16 /usr/src/linux-headers-4.15.0-70/drivers/usb/phy 12 /usr/src/linux-headers-4.15.0-70/drivers/usb/image 8 /usr/src/linux-headers-4.15.0-70/drivers/usb/host/whci 44 /usr/src/linux-headers-4.15.0-70/drivers/usb/host 12 /usr/src/linux-headers-4.15.0-70/drivers/usb/misc/sisusbvga 32 /usr/src/linux-headers-4.15.0-70/drivers/usb/misc 12 /usr/src/linux-headers-4.15.0-70/drivers/usb/typec/ucsi 12 /usr/src/linux-headers-4.15.0-70/drivers/usb/typec/fusb302 36 /usr/src/linux-headers-4.15.0-70/drivers/usb/typec 12 /usr/src/linux-headers-4.15.0-70/drivers/usb/isp1760 16 /usr/src/linux-headers-4.15.0-70/drivers/usb/storage 12 /usr/src/linux-headers-4.15.0-70/drivers/usb/gadget/udc/bdc 40 /usr/src/linux-headers-4.15.0-70/drivers/usb/gadget/udc 28 /usr/src/linux-headers-4.15.0-70/drivers/usb/gadget/legacy 8 /usr/src/linux-headers-4.15.0-70/drivers/usb/gadget/function 104 /usr/src/linux-headers-4.15.0-70/drivers/usb/gadget 500 /usr/src/linux-headers-4.15.0-70/drivers/usb 40 /usr/src/linux-headers-4.15.0-70/drivers/ide 8 /usr/src/linux-headers-4.15.0-70/drivers/cdrom 12 /usr/src/linux-headers-4.15.0-70/drivers/zorro 24 /usr/src/linux-headers-4.15.0-70/drivers/edac 12 /usr/src/linux-headers-4.15.0-70/drivers/lightnvm 16 /usr/src/linux-headers-4.15.0-70/drivers/uio 52 /usr/src/linux-headers-4.15.0-70/drivers/cpufreq 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/rtl8712 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/fwserial 8 /usr/src/linux-headers-4.15.0-70/drivers/staging/lustre/lustre/lov 8 /usr/src/linux-headers-4.15.0-70/drivers/staging/lustre/lustre/ptlrpc 8 /usr/src/linux-headers-4.15.0-70/drivers/staging/lustre/lustre/obdclass 8 /usr/src/linux-headers-4.15.0-70/drivers/staging/lustre/lustre/lmv 8 /usr/src/linux-headers-4.15.0-70/drivers/staging/lustre/lustre/fid 8 /usr/src/linux-headers-4.15.0-70/drivers/staging/lustre/lustre/mgc 8 /usr/src/linux-headers-4.15.0-70/drivers/staging/lustre/lustre/fld 8 /usr/src/linux-headers-4.15.0-70/drivers/staging/lustre/lustre/osc 8 /usr/src/linux-headers-4.15.0-70/drivers/staging/lustre/lustre/llite 8 /usr/src/linux-headers-4.15.0-70/drivers/staging/lustre/lustre/mdc 8 /usr/src/linux-headers-4.15.0-70/drivers/staging/lustre/lustre/obdecho 100 /usr/src/linux-headers-4.15.0-70/drivers/staging/lustre/lustre 8 /usr/src/linux-headers-4.15.0-70/drivers/staging/lustre/lnet/lnet 8 /usr/src/linux-headers-4.15.0-70/drivers/staging/lustre/lnet/libcfs 8 /usr/src/linux-headers-4.15.0-70/drivers/staging/lustre/lnet/selftest 8 /usr/src/linux-headers-4.15.0-70/drivers/staging/lustre/lnet/klnds/socklnd 8 /usr/src/linux-headers-4.15.0-70/drivers/staging/lustre/lnet/klnds/o2iblnd 24 /usr/src/linux-headers-4.15.0-70/drivers/staging/lustre/lnet/klnds 60 /usr/src/linux-headers-4.15.0-70/drivers/staging/lustre/lnet 172 /usr/src/linux-headers-4.15.0-70/drivers/staging/lustre 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/rtl8188eu 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/pi433 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/vboxvideo 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/gdm724x 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/skein 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/olpc_dcon 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/dgnc 24 /usr/src/linux-headers-4.15.0-70/drivers/staging/irda/drivers 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/irda/net/ircomm 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/irda/net/irlan 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/irda/net/irnet 48 /usr/src/linux-headers-4.15.0-70/drivers/staging/irda/net 76 /usr/src/linux-headers-4.15.0-70/drivers/staging/irda 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/goldfish 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/comedi/drivers 8 /usr/src/linux-headers-4.15.0-70/drivers/staging/comedi/kcomedilib 72 /usr/src/linux-headers-4.15.0-70/drivers/staging/comedi 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/nvec 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/vt6655 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/octeon 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/wilc1000 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/wlan-ng 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/vc04_services/bcm2835-camera 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/vc04_services/bcm2835-audio 36 /usr/src/linux-headers-4.15.0-70/drivers/staging/vc04_services 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/clocking-wizard 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/most/hdm-dim2 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/most/mostcore 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/most/aim-network 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/most/hdm-usb 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/most/aim-sound 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/most/hdm-i2c 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/most/aim-v4l2 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/most/aim-cdev 108 /usr/src/linux-headers-4.15.0-70/drivers/staging/most 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/xgifb 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/mt29f_spinand 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/android/ion 24 /usr/src/linux-headers-4.15.0-70/drivers/staging/android 16 /usr/src/linux-headers-4.15.0-70/drivers/staging/fbtft 8 /usr/src/linux-headers-4.15.0-70/drivers/staging/greybus/tools 24 /usr/src/linux-headers-4.15.0-70/drivers/staging/greybus 8 /usr/src/linux-headers-4.15.0-70/drivers/staging/fsl-mc/bus/dpio 20 /usr/src/linux-headers-4.15.0-70/drivers/staging/fsl-mc/bus 32 /usr/src/linux-headers-4.15.0-70/drivers/staging/fsl-mc 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/ccree 8 /usr/src/linux-headers-4.15.0-70/drivers/staging/rtlwifi/rtl8822be 8 /usr/src/linux-headers-4.15.0-70/drivers/staging/rtlwifi/btcoexist 28 /usr/src/linux-headers-4.15.0-70/drivers/staging/rtlwifi 16 /usr/src/linux-headers-4.15.0-70/drivers/staging/speakup 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/sm750fb 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/gs_fpgaboot 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/octeon-usb 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/ks7010 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/emxx_udc 8 /usr/src/linux-headers-4.15.0-70/drivers/staging/rtl8192u/ieee80211 20 /usr/src/linux-headers-4.15.0-70/drivers/staging/rtl8192u 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/board 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/iio/frequency 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/iio/adc 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/iio/cdc 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/iio/addac 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/iio/light 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/iio/impedance-analyzer 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/iio/gyro 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/iio/resolver 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/iio/accel 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/iio/meter 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/iio/trigger 144 /usr/src/linux-headers-4.15.0-70/drivers/staging/iio 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/unisys/visorbus 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/unisys/visorinput 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/unisys/visorhba 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/unisys/visornic 60 /usr/src/linux-headers-4.15.0-70/drivers/staging/unisys 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/rtl8723bs 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/typec 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/rtl8192e/rtl8192e 24 /usr/src/linux-headers-4.15.0-70/drivers/staging/rtl8192e 8 /usr/src/linux-headers-4.15.0-70/drivers/staging/fsl-dpaa2/ethernet 20 /usr/src/linux-headers-4.15.0-70/drivers/staging/fsl-dpaa2 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/netlogic 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/vme/devices 20 /usr/src/linux-headers-4.15.0-70/drivers/staging/vme 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/rts5208 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/media/atomisp/i2c/ov5693 24 /usr/src/linux-headers-4.15.0-70/drivers/staging/media/atomisp/i2c 8 /usr/src/linux-headers-4.15.0-70/drivers/staging/media/atomisp/platform/intel-mid 16 /usr/src/linux-headers-4.15.0-70/drivers/staging/media/atomisp/platform 8 /usr/src/linux-headers-4.15.0-70/drivers/staging/media/atomisp/pci/atomisp2/css2400 28 /usr/src/linux-headers-4.15.0-70/drivers/staging/media/atomisp/pci/atomisp2 40 /usr/src/linux-headers-4.15.0-70/drivers/staging/media/atomisp/pci 92 /usr/src/linux-headers-4.15.0-70/drivers/staging/media/atomisp 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/media/davinci_vpfe 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/media/imx 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/media/lirc 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/media/omap4iss 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/media/cxd2099 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/media/bcm2048 176 /usr/src/linux-headers-4.15.0-70/drivers/staging/media 12 /usr/src/linux-headers-4.15.0-70/drivers/staging/vt6656 1440 /usr/src/linux-headers-4.15.0-70/drivers/staging 12 /usr/src/linux-headers-4.15.0-70/drivers/rapidio/devices 12 /usr/src/linux-headers-4.15.0-70/drivers/rapidio/switches 36 /usr/src/linux-headers-4.15.0-70/drivers/rapidio 8 /usr/src/linux-headers-4.15.0-70/drivers/tty/vt 28 /usr/src/linux-headers-4.15.0-70/drivers/tty/serial/8250 8 /usr/src/linux-headers-4.15.0-70/drivers/tty/serial/jsm 8 /usr/src/linux-headers-4.15.0-70/drivers/tty/serial/cpm_uart 112 /usr/src/linux-headers-4.15.0-70/drivers/tty/serial 8 /usr/src/linux-headers-4.15.0-70/drivers/tty/ipwireless 12 /usr/src/linux-headers-4.15.0-70/drivers/tty/hvc 12 /usr/src/linux-headers-4.15.0-70/drivers/tty/serdev 180 /usr/src/linux-headers-4.15.0-70/drivers/tty 12 /usr/src/linux-headers-4.15.0-70/drivers/vme/boards 12 /usr/src/linux-headers-4.15.0-70/drivers/vme/bridges 36 /usr/src/linux-headers-4.15.0-70/drivers/vme 12 /usr/src/linux-headers-4.15.0-70/drivers/hv 76 /usr/src/linux-headers-4.15.0-70/drivers/watchdog 16 /usr/src/linux-headers-4.15.0-70/drivers/remoteproc 8 /usr/src/linux-headers-4.15.0-70/drivers/cpuidle/governors 32 /usr/src/linux-headers-4.15.0-70/drivers/cpuidle 12 /usr/src/linux-headers-4.15.0-70/drivers/isdn/hysdn 12 /usr/src/linux-headers-4.15.0-70/drivers/isdn/gigaset 8 /usr/src/linux-headers-4.15.0-70/drivers/isdn/isdnloop 12 /usr/src/linux-headers-4.15.0-70/drivers/isdn/capi 12 /usr/src/linux-headers-4.15.0-70/drivers/isdn/mISDN 24 /usr/src/linux-headers-4.15.0-70/drivers/isdn/hisax 16 /usr/src/linux-headers-4.15.0-70/drivers/isdn/i4l 12 /usr/src/linux-headers-4.15.0-70/drivers/isdn/hardware/mISDN 12 /usr/src/linux-headers-4.15.0-70/drivers/isdn/hardware/eicon 12 /usr/src/linux-headers-4.15.0-70/drivers/isdn/hardware/avm 48 /usr/src/linux-headers-4.15.0-70/drivers/isdn/hardware 8 /usr/src/linux-headers-4.15.0-70/drivers/isdn/divert 164 /usr/src/linux-headers-4.15.0-70/drivers/isdn 16 /usr/src/linux-headers-4.15.0-70/drivers/pci/dwc 12 /usr/src/linux-headers-4.15.0-70/drivers/pci/switch 16 /usr/src/linux-headers-4.15.0-70/drivers/pci/hotplug 12 /usr/src/linux-headers-4.15.0-70/drivers/pci/endpoint/functions 24 /usr/src/linux-headers-4.15.0-70/drivers/pci/endpoint 16 /usr/src/linux-headers-4.15.0-70/drivers/pci/pcie/aer 28 /usr/src/linux-headers-4.15.0-70/drivers/pci/pcie 16 /usr/src/linux-headers-4.15.0-70/drivers/pci/host 124 /usr/src/linux-headers-4.15.0-70/drivers/pci 24 /usr/src/linux-headers-4.15.0-70/drivers/pwm 16 /usr/src/linux-headers-4.15.0-70/drivers/mailbox 12 /usr/src/linux-headers-4.15.0-70/drivers/media/spi 12 /usr/src/linux-headers-4.15.0-70/drivers/media/firewire 20 /usr/src/linux-headers-4.15.0-70/drivers/media/tuners 12 /usr/src/linux-headers-4.15.0-70/drivers/media/cec 12 /usr/src/linux-headers-4.15.0-70/drivers/media/rc/img-ir 12 /usr/src/linux-headers-4.15.0-70/drivers/media/rc/keymaps 48 /usr/src/linux-headers-4.15.0-70/drivers/media/rc 12 /usr/src/linux-headers-4.15.0-70/drivers/media/common/b2c2 12 /usr/src/linux-headers-4.15.0-70/drivers/media/common/saa7146 12 /usr/src/linux-headers-4.15.0-70/drivers/media/common/v4l2-tpg 12 /usr/src/linux-headers-4.15.0-70/drivers/media/common/siano 60 /usr/src/linux-headers-4.15.0-70/drivers/media/common 12 /usr/src/linux-headers-4.15.0-70/drivers/media/radio/wl128x 12 /usr/src/linux-headers-4.15.0-70/drivers/media/radio/si4713 12 /usr/src/linux-headers-4.15.0-70/drivers/media/radio/si470x 60 /usr/src/linux-headers-4.15.0-70/drivers/media/radio 12 /usr/src/linux-headers-4.15.0-70/drivers/media/i2c/m5mols 8 /usr/src/linux-headers-4.15.0-70/drivers/media/i2c/adv748x 12 /usr/src/linux-headers-4.15.0-70/drivers/media/i2c/soc_camera 12 /usr/src/linux-headers-4.15.0-70/drivers/media/i2c/smiapp 12 /usr/src/linux-headers-4.15.0-70/drivers/media/i2c/cx25840 8 /usr/src/linux-headers-4.15.0-70/drivers/media/i2c/s5c73m3 12 /usr/src/linux-headers-4.15.0-70/drivers/media/i2c/et8ek8 112 /usr/src/linux-headers-4.15.0-70/drivers/media/i2c 12 /usr/src/linux-headers-4.15.0-70/drivers/media/platform/vimc 8 /usr/src/linux-headers-4.15.0-70/drivers/media/platform/tegra-cec 12 /usr/src/linux-headers-4.15.0-70/drivers/media/platform/rcar-vin 8 /usr/src/linux-headers-4.15.0-70/drivers/media/platform/omap3isp 12 /usr/src/linux-headers-4.15.0-70/drivers/media/platform/davinci 12 /usr/src/linux-headers-4.15.0-70/drivers/media/platform/soc_camera 8 /usr/src/linux-headers-4.15.0-70/drivers/media/platform/sti/cec 8 /usr/src/linux-headers-4.15.0-70/drivers/media/platform/sti/bdisp 8 /usr/src/linux-headers-4.15.0-70/drivers/media/platform/sti/hva 8 /usr/src/linux-headers-4.15.0-70/drivers/media/platform/sti/delta 12 /usr/src/linux-headers-4.15.0-70/drivers/media/platform/sti/c8sectpfe 48 /usr/src/linux-headers-4.15.0-70/drivers/media/platform/sti 8 /usr/src/linux-headers-4.15.0-70/drivers/media/platform/mtk-vpu 12 /usr/src/linux-headers-4.15.0-70/drivers/media/platform/am437x 8 /usr/src/linux-headers-4.15.0-70/drivers/media/platform/stm32 8 /usr/src/linux-headers-4.15.0-70/drivers/media/platform/qcom/venus 8 /usr/src/linux-headers-4.15.0-70/drivers/media/platform/qcom/camss-8x16 20 /usr/src/linux-headers-4.15.0-70/drivers/media/platform/qcom 8 /usr/src/linux-headers-4.15.0-70/drivers/media/platform/s5p-g2d 8 /usr/src/linux-headers-4.15.0-70/drivers/media/platform/s3c-camif 8 /usr/src/linux-headers-4.15.0-70/drivers/media/platform/cec-gpio 8 /usr/src/linux-headers-4.15.0-70/drivers/media/platform/s5p-cec 8 /usr/src/linux-headers-4.15.0-70/drivers/media/platform/vsp1 8 /usr/src/linux-headers-4.15.0-70/drivers/media/platform/mtk-vcodec 12 /usr/src/linux-headers-4.15.0-70/drivers/media/platform/vivid 8 /usr/src/linux-headers-4.15.0-70/drivers/media/platform/exynos-gsc 8 /usr/src/linux-headers-4.15.0-70/drivers/media/platform/s5p-mfc 12 /usr/src/linux-headers-4.15.0-70/drivers/media/platform/blackfin 12 /usr/src/linux-headers-4.15.0-70/drivers/media/platform/marvell-ccic 12 /usr/src/linux-headers-4.15.0-70/drivers/media/platform/omap 8 /usr/src/linux-headers-4.15.0-70/drivers/media/platform/mtk-jpeg 8 /usr/src/linux-headers-4.15.0-70/drivers/media/platform/coda 8 /usr/src/linux-headers-4.15.0-70/drivers/media/platform/mtk-mdp 8 /usr/src/linux-headers-4.15.0-70/drivers/media/platform/s5p-jpeg 8 /usr/src/linux-headers-4.15.0-70/drivers/media/platform/ti-vpe 8 /usr/src/linux-headers-4.15.0-70/drivers/media/platform/rockchip/rga 12 /usr/src/linux-headers-4.15.0-70/drivers/media/platform/rockchip 12 /usr/src/linux-headers-4.15.0-70/drivers/media/platform/atmel 12 /usr/src/linux-headers-4.15.0-70/drivers/media/platform/exynos4-is 8 /usr/src/linux-headers-4.15.0-70/drivers/media/platform/meson 12 /usr/src/linux-headers-4.15.0-70/drivers/media/platform/xilinx 396 /usr/src/linux-headers-4.15.0-70/drivers/media/platform 12 /usr/src/linux-headers-4.15.0-70/drivers/media/v4l2-core 12 /usr/src/linux-headers-4.15.0-70/drivers/media/mmc/siano 24 /usr/src/linux-headers-4.15.0-70/drivers/media/mmc 12 /usr/src/linux-headers-4.15.0-70/drivers/media/dvb-core 20 /usr/src/linux-headers-4.15.0-70/drivers/media/usb/dvb-usb 12 /usr/src/linux-headers-4.15.0-70/drivers/media/usb/ttusb-dec 12 /usr/src/linux-headers-4.15.0-70/drivers/media/usb/au0828 12 /usr/src/linux-headers-4.15.0-70/drivers/media/usb/stkwebcam 12 /usr/src/linux-headers-4.15.0-70/drivers/media/usb/usbtv 12 /usr/src/linux-headers-4.15.0-70/drivers/media/usb/pwc 12 /usr/src/linux-headers-4.15.0-70/drivers/media/usb/gspca/gl860 12 /usr/src/linux-headers-4.15.0-70/drivers/media/usb/gspca/m5602 12 /usr/src/linux-headers-4.15.0-70/drivers/media/usb/gspca/stv06xx 64 /usr/src/linux-headers-4.15.0-70/drivers/media/usb/gspca 12 /usr/src/linux-headers-4.15.0-70/drivers/media/usb/b2c2 12 /usr/src/linux-headers-4.15.0-70/drivers/media/usb/rainshadow-cec 12 /usr/src/linux-headers-4.15.0-70/drivers/media/usb/ttusb-budget 12 /usr/src/linux-headers-4.15.0-70/drivers/media/usb/hackrf 12 /usr/src/linux-headers-4.15.0-70/drivers/media/usb/uvc 12 /usr/src/linux-headers-4.15.0-70/drivers/media/usb/usbvision 12 /usr/src/linux-headers-4.15.0-70/drivers/media/usb/em28xx 12 /usr/src/linux-headers-4.15.0-70/drivers/media/usb/zr364xx 12 /usr/src/linux-headers-4.15.0-70/drivers/media/usb/airspy 12 /usr/src/linux-headers-4.15.0-70/drivers/media/usb/stk1160 12 /usr/src/linux-headers-4.15.0-70/drivers/media/usb/s2255 12 /usr/src/linux-headers-4.15.0-70/drivers/media/usb/hdpvr 12 /usr/src/linux-headers-4.15.0-70/drivers/media/usb/pvrusb2 12 /usr/src/linux-headers-4.15.0-70/drivers/media/usb/cx231xx 12 /usr/src/linux-headers-4.15.0-70/drivers/media/usb/tm6000 12 /usr/src/linux-headers-4.15.0-70/drivers/media/usb/cpia2 12 /usr/src/linux-headers-4.15.0-70/drivers/media/usb/msi2500 12 /usr/src/linux-headers-4.15.0-70/drivers/media/usb/as102 12 /usr/src/linux-headers-4.15.0-70/drivers/media/usb/pulse8-cec 12 /usr/src/linux-headers-4.15.0-70/drivers/media/usb/siano 12 /usr/src/linux-headers-4.15.0-70/drivers/media/usb/go7007 16 /usr/src/linux-headers-4.15.0-70/drivers/media/usb/dvb-usb-v2 424 /usr/src/linux-headers-4.15.0-70/drivers/media/usb 12 /usr/src/linux-headers-4.15.0-70/drivers/media/dvb-frontends/drx39xyj 52 /usr/src/linux-headers-4.15.0-70/drivers/media/dvb-frontends 12 /usr/src/linux-headers-4.15.0-70/drivers/media/pci/dm1105 12 /usr/src/linux-headers-4.15.0-70/drivers/media/pci/meye 12 /usr/src/linux-headers-4.15.0-70/drivers/media/pci/ngene 12 /usr/src/linux-headers-4.15.0-70/drivers/media/pci/smipcie 12 /usr/src/linux-headers-4.15.0-70/drivers/media/pci/cx18 12 /usr/src/linux-headers-4.15.0-70/drivers/media/pci/tw68 12 /usr/src/linux-headers-4.15.0-70/drivers/media/pci/ivtv 12 /usr/src/linux-headers-4.15.0-70/drivers/media/pci/solo6x10 12 /usr/src/linux-headers-4.15.0-70/drivers/media/pci/pt3 12 /usr/src/linux-headers-4.15.0-70/drivers/media/pci/pluto2 12 /usr/src/linux-headers-4.15.0-70/drivers/media/pci/b2c2 12 /usr/src/linux-headers-4.15.0-70/drivers/media/pci/bt8xx 12 /usr/src/linux-headers-4.15.0-70/drivers/media/pci/saa7146 12 /usr/src/linux-headers-4.15.0-70/drivers/media/pci/netup_unidvb 16 /usr/src/linux-headers-4.15.0-70/drivers/media/pci/ttpci 12 /usr/src/linux-headers-4.15.0-70/drivers/media/pci/sta2x11 12 /usr/src/linux-headers-4.15.0-70/drivers/media/pci/pt1 12 /usr/src/linux-headers-4.15.0-70/drivers/media/pci/saa7134 12 /usr/src/linux-headers-4.15.0-70/drivers/media/pci/cobalt 12 /usr/src/linux-headers-4.15.0-70/drivers/media/pci/dt3155 12 /usr/src/linux-headers-4.15.0-70/drivers/media/pci/zoran 12 /usr/src/linux-headers-4.15.0-70/drivers/media/pci/mantis 12 /usr/src/linux-headers-4.15.0-70/drivers/media/pci/cx88 12 /usr/src/linux-headers-4.15.0-70/drivers/media/pci/saa7164 12 /usr/src/linux-headers-4.15.0-70/drivers/media/pci/cx23885 12 /usr/src/linux-headers-4.15.0-70/drivers/media/pci/tw5864 12 /usr/src/linux-headers-4.15.0-70/drivers/media/pci/cx25821 12 /usr/src/linux-headers-4.15.0-70/drivers/media/pci/tw686x 12 /usr/src/linux-headers-4.15.0-70/drivers/media/pci/ddbridge 364 /usr/src/linux-headers-4.15.0-70/drivers/media/pci 1636 /usr/src/linux-headers-4.15.0-70/drivers/media 12 /usr/src/linux-headers-4.15.0-70/drivers/sfi 16352 /usr/src/linux-headers-4.15.0-70/drivers 8 /usr/src/linux-headers-4.15.0-70/samples/hidraw 8 /usr/src/linux-headers-4.15.0-70/samples/kfifo 8 /usr/src/linux-headers-4.15.0-70/samples/timers 8 /usr/src/linux-headers-4.15.0-70/samples/livepatch 8 /usr/src/linux-headers-4.15.0-70/samples/trace_printk 8 /usr/src/linux-headers-4.15.0-70/samples/kobject 8 /usr/src/linux-headers-4.15.0-70/samples/vfio-mdev 80 /usr/src/linux-headers-4.15.0-70/samples/bpf 8 /usr/src/linux-headers-4.15.0-70/samples/kprobes 8 /usr/src/linux-headers-4.15.0-70/samples/auxdisplay 8 /usr/src/linux-headers-4.15.0-70/samples/hw_breakpoint 8 /usr/src/linux-headers-4.15.0-70/samples/trace_events 8 /usr/src/linux-headers-4.15.0-70/samples/blackfin 44 /usr/src/linux-headers-4.15.0-70/samples/pktgen 8 /usr/src/linux-headers-4.15.0-70/samples/configfs 8 /usr/src/linux-headers-4.15.0-70/samples/rpmsg 8 /usr/src/linux-headers-4.15.0-70/samples/uhid 8 /usr/src/linux-headers-4.15.0-70/samples/connector 8 /usr/src/linux-headers-4.15.0-70/samples/v4l 8 /usr/src/linux-headers-4.15.0-70/samples/kdb 8 /usr/src/linux-headers-4.15.0-70/samples/seccomp 8 /usr/src/linux-headers-4.15.0-70/samples/mic/mpssd 12 /usr/src/linux-headers-4.15.0-70/samples/mic 8 /usr/src/linux-headers-4.15.0-70/samples/mei 8 /usr/src/linux-headers-4.15.0-70/samples/watchdog 8 /usr/src/linux-headers-4.15.0-70/samples/statx 8 /usr/src/linux-headers-4.15.0-70/samples/sockmap 332 /usr/src/linux-headers-4.15.0-70/samples 8 /usr/src/linux-headers-4.15.0-70/ipc 16 /usr/src/linux-headers-4.15.0-70/Documentation/sphinx 8 /usr/src/linux-headers-4.15.0-70/Documentation/features 8 /usr/src/linux-headers-4.15.0-70/Documentation/EDID 8 /usr/src/linux-headers-4.15.0-70/Documentation/s390 16 /usr/src/linux-headers-4.15.0-70/Documentation/kbuild 48 /usr/src/linux-headers-4.15.0-70/Documentation/trace/postprocess 52 /usr/src/linux-headers-4.15.0-70/Documentation/trace 16 /usr/src/linux-headers-4.15.0-70/Documentation/aoe 8 /usr/src/linux-headers-4.15.0-70/Documentation/scsi/scsi_transport_srp 12 /usr/src/linux-headers-4.15.0-70/Documentation/scsi 8 /usr/src/linux-headers-4.15.0-70/Documentation/cdrom 8 /usr/src/linux-headers-4.15.0-70/Documentation/filesystems/cifs 12 /usr/src/linux-headers-4.15.0-70/Documentation/filesystems 8 /usr/src/linux-headers-4.15.0-70/Documentation/media 176 /usr/src/linux-headers-4.15.0-70/Documentation 20 /usr/src/linux-headers-4.15.0-70/ubuntu/vbox/vboxvideo 24 /usr/src/linux-headers-4.15.0-70/ubuntu/vbox/vboxguest 20 /usr/src/linux-headers-4.15.0-70/ubuntu/vbox/vboxsf 72 /usr/src/linux-headers-4.15.0-70/ubuntu/vbox 8 /usr/src/linux-headers-4.15.0-70/ubuntu/include 12 /usr/src/linux-headers-4.15.0-70/ubuntu/hio 8 /usr/src/linux-headers-4.15.0-70/ubuntu/xr-usb-serial 112 /usr/src/linux-headers-4.15.0-70/ubuntu 68 /usr/src/linux-headers-4.15.0-70/init 12 /usr/src/linux-headers-4.15.0-70/net/wimax 12 /usr/src/linux-headers-4.15.0-70/net/nfc/nci 12 /usr/src/linux-headers-4.15.0-70/net/nfc/hci 36 /usr/src/linux-headers-4.15.0-70/net/nfc 12 /usr/src/linux-headers-4.15.0-70/net/bluetooth/hidp 12 /usr/src/linux-headers-4.15.0-70/net/bluetooth/rfcomm 12 /usr/src/linux-headers-4.15.0-70/net/bluetooth/bnep 12 /usr/src/linux-headers-4.15.0-70/net/bluetooth/cmtp 60 /usr/src/linux-headers-4.15.0-70/net/bluetooth 12 /usr/src/linux-headers-4.15.0-70/net/tipc 12 /usr/src/linux-headers-4.15.0-70/net/qrtr 8 /usr/src/linux-headers-4.15.0-70/net/key 12 /usr/src/linux-headers-4.15.0-70/net/netlink 8 /usr/src/linux-headers-4.15.0-70/net/dccp/ccids 20 /usr/src/linux-headers-4.15.0-70/net/dccp 8 /usr/src/linux-headers-4.15.0-70/net/rose 12 /usr/src/linux-headers-4.15.0-70/net/xfrm 36 /usr/src/linux-headers-4.15.0-70/net/sched 12 /usr/src/linux-headers-4.15.0-70/net/kcm 12 /usr/src/linux-headers-4.15.0-70/net/decnet/netfilter 24 /usr/src/linux-headers-4.15.0-70/net/decnet 12 /usr/src/linux-headers-4.15.0-70/net/can 12 /usr/src/linux-headers-4.15.0-70/net/unix 12 /usr/src/linux-headers-4.15.0-70/net/sctp 12 /usr/src/linux-headers-4.15.0-70/net/packet 8 /usr/src/linux-headers-4.15.0-70/net/sunrpc/auth_gss 8 /usr/src/linux-headers-4.15.0-70/net/sunrpc/xprtrdma 28 /usr/src/linux-headers-4.15.0-70/net/sunrpc 12 /usr/src/linux-headers-4.15.0-70/net/mpls 12 /usr/src/linux-headers-4.15.0-70/net/rds 16 /usr/src/linux-headers-4.15.0-70/net/wireless 12 /usr/src/linux-headers-4.15.0-70/net/atm 12 /usr/src/linux-headers-4.15.0-70/net/psample 12 /usr/src/linux-headers-4.15.0-70/net/mac802154 8 /usr/src/linux-headers-4.15.0-70/net/bpf 24 /usr/src/linux-headers-4.15.0-70/net/ipv4/netfilter 60 /usr/src/linux-headers-4.15.0-70/net/ipv4 12 /usr/src/linux-headers-4.15.0-70/net/iucv 12 /usr/src/linux-headers-4.15.0-70/net/smc 12 /usr/src/linux-headers-4.15.0-70/net/dns_resolver 12 /usr/src/linux-headers-4.15.0-70/net/dsa 12 /usr/src/linux-headers-4.15.0-70/net/nsh 8 /usr/src/linux-headers-4.15.0-70/net/ethernet 12 /usr/src/linux-headers-4.15.0-70/net/vmw_vsock 12 /usr/src/linux-headers-4.15.0-70/net/rfkill 12 /usr/src/linux-headers-4.15.0-70/net/llc 12 /usr/src/linux-headers-4.15.0-70/net/switchdev 8 /usr/src/linux-headers-4.15.0-70/net/netrom 12 /usr/src/linux-headers-4.15.0-70/net/openvswitch 12 /usr/src/linux-headers-4.15.0-70/net/ieee802154/6lowpan 24 /usr/src/linux-headers-4.15.0-70/net/ieee802154 8 /usr/src/linux-headers-4.15.0-70/net/core 12 /usr/src/linux-headers-4.15.0-70/net/ife 12 /usr/src/linux-headers-4.15.0-70/net/9p 12 /usr/src/linux-headers-4.15.0-70/net/x25 12 /usr/src/linux-headers-4.15.0-70/net/phonet 12 /usr/src/linux-headers-4.15.0-70/net/rxrpc 8 /usr/src/linux-headers-4.15.0-70/net/appletalk 12 /usr/src/linux-headers-4.15.0-70/net/lapb 12 /usr/src/linux-headers-4.15.0-70/net/netlabel 12 /usr/src/linux-headers-4.15.0-70/net/ipx 12 /usr/src/linux-headers-4.15.0-70/net/batman-adv 12 /usr/src/linux-headers-4.15.0-70/net/l3mdev 12 /usr/src/linux-headers-4.15.0-70/net/strparser 12 /usr/src/linux-headers-4.15.0-70/net/802 12 /usr/src/linux-headers-4.15.0-70/net/8021q 12 /usr/src/linux-headers-4.15.0-70/net/l2tp 16 /usr/src/linux-headers-4.15.0-70/net/bridge/netfilter 28 /usr/src/linux-headers-4.15.0-70/net/bridge 12 /usr/src/linux-headers-4.15.0-70/net/hsr 12 /usr/src/linux-headers-4.15.0-70/net/6lowpan 20 /usr/src/linux-headers-4.15.0-70/net/mac80211 12 /usr/src/linux-headers-4.15.0-70/net/ncsi 12 /usr/src/linux-headers-4.15.0-70/net/caif 12 /usr/src/linux-headers-4.15.0-70/net/dcb 12 /usr/src/linux-headers-4.15.0-70/net/tls 20 /usr/src/linux-headers-4.15.0-70/net/netfilter/ipvs 16 /usr/src/linux-headers-4.15.0-70/net/netfilter/ipset 104 /usr/src/linux-headers-4.15.0-70/net/netfilter 12 /usr/src/linux-headers-4.15.0-70/net/ceph 8 /usr/src/linux-headers-4.15.0-70/net/ipv6/ila 20 /usr/src/linux-headers-4.15.0-70/net/ipv6/netfilter 48 /usr/src/linux-headers-4.15.0-70/net/ipv6 16 /usr/src/linux-headers-4.15.0-70/net/ax25 1152 /usr/src/linux-headers-4.15.0-70/net 8 /usr/src/linux-headers-4.15.0-70/tools/spi 8 /usr/src/linux-headers-4.15.0-70/tools/power/cpupower/utils 8 /usr/src/linux-headers-4.15.0-70/tools/power/cpupower/debug/x86_64 8 /usr/src/linux-headers-4.15.0-70/tools/power/cpupower/debug/i386 8 /usr/src/linux-headers-4.15.0-70/tools/power/cpupower/debug/kernel 28 /usr/src/linux-headers-4.15.0-70/tools/power/cpupower/debug 20 /usr/src/linux-headers-4.15.0-70/tools/power/cpupower/bench 72 /usr/src/linux-headers-4.15.0-70/tools/power/cpupower 8 /usr/src/linux-headers-4.15.0-70/tools/power/pm-graph 8 /usr/src/linux-headers-4.15.0-70/tools/power/x86/x86_energy_perf_policy 8 /usr/src/linux-headers-4.15.0-70/tools/power/x86/turbostat 20 /usr/src/linux-headers-4.15.0-70/tools/power/x86 8 /usr/src/linux-headers-4.15.0-70/tools/power/acpi/tools/acpidbg 8 /usr/src/linux-headers-4.15.0-70/tools/power/acpi/tools/acpidump 8 /usr/src/linux-headers-4.15.0-70/tools/power/acpi/tools/ec 28 /usr/src/linux-headers-4.15.0-70/tools/power/acpi/tools 44 /usr/src/linux-headers-4.15.0-70/tools/power/acpi 148 /usr/src/linux-headers-4.15.0-70/tools/power 16 /usr/src/linux-headers-4.15.0-70/tools/perf/Documentation 44 /usr/src/linux-headers-4.15.0-70/tools/perf/trace/beauty 48 /usr/src/linux-headers-4.15.0-70/tools/perf/trace 12 /usr/src/linux-headers-4.15.0-70/tools/perf/tests/shell/lib 32 /usr/src/linux-headers-4.15.0-70/tools/perf/tests/shell 36 /usr/src/linux-headers-4.15.0-70/tools/perf/tests 8 /usr/src/linux-headers-4.15.0-70/tools/perf/util 8 /usr/src/linux-headers-4.15.0-70/tools/perf/scripts/perl/Perf-Trace-Util 44 /usr/src/linux-headers-4.15.0-70/tools/perf/scripts/perl 48 /usr/src/linux-headers-4.15.0-70/tools/perf/scripts 8 /usr/src/linux-headers-4.15.0-70/tools/perf/arch/s390 8 /usr/src/linux-headers-4.15.0-70/tools/perf/arch/arm64 8 /usr/src/linux-headers-4.15.0-70/tools/perf/arch/sparc 8 /usr/src/linux-headers-4.15.0-70/tools/perf/arch/xtensa 8 /usr/src/linux-headers-4.15.0-70/tools/perf/arch/sh 8 /usr/src/linux-headers-4.15.0-70/tools/perf/arch/x86/tests 8 /usr/src/linux-headers-4.15.0-70/tools/perf/arch/x86/entry/syscalls 12 /usr/src/linux-headers-4.15.0-70/tools/perf/arch/x86/entry 28 /usr/src/linux-headers-4.15.0-70/tools/perf/arch/x86 8 /usr/src/linux-headers-4.15.0-70/tools/perf/arch/arm 8 /usr/src/linux-headers-4.15.0-70/tools/perf/arch/powerpc 88 /usr/src/linux-headers-4.15.0-70/tools/perf/arch 336 /usr/src/linux-headers-4.15.0-70/tools/perf 8 /usr/src/linux-headers-4.15.0-70/tools/firewire 8 /usr/src/linux-headers-4.15.0-70/tools/gpio 12 /usr/src/linux-headers-4.15.0-70/tools/build/feature 8 /usr/src/linux-headers-4.15.0-70/tools/build/tests/ex 16 /usr/src/linux-headers-4.15.0-70/tools/build/tests 52 /usr/src/linux-headers-4.15.0-70/tools/build 8 /usr/src/linux-headers-4.15.0-70/tools/accounting 8 /usr/src/linux-headers-4.15.0-70/tools/bpf/bpftool/Documentation 16 /usr/src/linux-headers-4.15.0-70/tools/bpf/bpftool 24 /usr/src/linux-headers-4.15.0-70/tools/bpf 8 /usr/src/linux-headers-4.15.0-70/tools/time 8 /usr/src/linux-headers-4.15.0-70/tools/leds 12 /usr/src/linux-headers-4.15.0-70/tools/virtio/ringtest 8 /usr/src/linux-headers-4.15.0-70/tools/virtio/vhost_test 8 /usr/src/linux-headers-4.15.0-70/tools/virtio/virtio-trace 36 /usr/src/linux-headers-4.15.0-70/tools/virtio 8 /usr/src/linux-headers-4.15.0-70/tools/wmi 8 /usr/src/linux-headers-4.15.0-70/tools/cgroup 8 /usr/src/linux-headers-4.15.0-70/tools/thermal/tmon 12 /usr/src/linux-headers-4.15.0-70/tools/thermal 8 /usr/src/linux-headers-4.15.0-70/tools/kvm/kvm_stat 12 /usr/src/linux-headers-4.15.0-70/tools/kvm 8 /usr/src/linux-headers-4.15.0-70/tools/iio 12 /usr/src/linux-headers-4.15.0-70/tools/scripts 16 /usr/src/linux-headers-4.15.0-70/tools/vm 8 /usr/src/linux-headers-4.15.0-70/tools/pcmcia 12 /usr/src/linux-headers-4.15.0-70/tools/usb/usbip/vudc 8 /usr/src/linux-headers-4.15.0-70/tools/usb/usbip/libsrc 8 /usr/src/linux-headers-4.15.0-70/tools/usb/usbip/src 44 /usr/src/linux-headers-4.15.0-70/tools/usb/usbip 8 /usr/src/linux-headers-4.15.0-70/tools/usb/ffs-aio-example/multibuff/host_app 12 /usr/src/linux-headers-4.15.0-70/tools/usb/ffs-aio-example/multibuff 8 /usr/src/linux-headers-4.15.0-70/tools/usb/ffs-aio-example/simple/host_app 12 /usr/src/linux-headers-4.15.0-70/tools/usb/ffs-aio-example/simple 28 /usr/src/linux-headers-4.15.0-70/tools/usb/ffs-aio-example 88 /usr/src/linux-headers-4.15.0-70/tools/usb 8 /usr/src/linux-headers-4.15.0-70/tools/nfsd 8 /usr/src/linux-headers-4.15.0-70/tools/lib/subcmd 12 /usr/src/linux-headers-4.15.0-70/tools/lib/bpf 8 /usr/src/linux-headers-4.15.0-70/tools/lib/api 16 /usr/src/linux-headers-4.15.0-70/tools/lib/lockdep 12 /usr/src/linux-headers-4.15.0-70/tools/lib/traceevent 60 /usr/src/linux-headers-4.15.0-70/tools/lib 8 /usr/src/linux-headers-4.15.0-70/tools/laptop/freefall 8 /usr/src/linux-headers-4.15.0-70/tools/laptop/dslm 20 /usr/src/linux-headers-4.15.0-70/tools/laptop 20 /usr/src/linux-headers-4.15.0-70/tools/hv 12 /usr/src/linux-headers-4.15.0-70/tools/objtool 16 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/memory-hotplug 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/breakpoints 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/mqueue 16 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/ntb 20 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/gpio 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/ftrace 12 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/drivers/gpu 16 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/drivers 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/ipc 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/timers 16 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/media_tests 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/sigaltstack 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/ptp 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/networking/timestamping 12 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/networking 20 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/bpf 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/kcmp 12 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/splice 24 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/kmod 12 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/android/ion 24 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/android 48 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/net 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/size 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/mount 12 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/efivarfs 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/prctl 12 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/futex/functional 24 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/futex 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/pstore 16 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/memfd 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/vDSO 12 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/static_keys 24 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/sysctl 16 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/cpu-hotplug 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/ptrace 12 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/x86 28 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/firmware 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/membarrier 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/locking 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/vm 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/sync 12 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/intel_pstate 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/seccomp 12 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/user 28 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/zram 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/capabilities 104 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/rcutorture/bin 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/rcutorture/configs/rcuperf 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/rcutorture/configs/rcu 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/rcutorture/configs/lock 28 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/rcutorture/configs 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/rcutorture/formal/srcu-cbmc/tests/store_buffering 16 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/rcutorture/formal/srcu-cbmc/tests 24 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/rcutorture/formal/srcu-cbmc 28 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/rcutorture/formal 164 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/rcutorture 20 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/lib 40 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/cpufreq 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/exec 40 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/netfilter 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/nsfs 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/watchdog 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/filesystems 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/powerpc/alignment 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/powerpc/cache_shape 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/powerpc/benchmarks 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/powerpc/syscalls 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/powerpc/switch_endian 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/powerpc/math 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/powerpc/mm 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/powerpc/signal 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/powerpc/pmu/ebb 16 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/powerpc/pmu 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/powerpc/vphn 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/powerpc/stringloops 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/powerpc/primitives 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/powerpc/ptrace 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/powerpc/copyloops 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/powerpc/scripts 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/powerpc/dscr 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/powerpc/tm 152 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/powerpc 8 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests/ia64 1052 /usr/src/linux-headers-4.15.0-70/tools/testing/selftests 8 /usr/src/linux-headers-4.15.0-70/tools/testing/vsock 8 /usr/src/linux-headers-4.15.0-70/tools/testing/nvdimm/test 20 /usr/src/linux-headers-4.15.0-70/tools/testing/nvdimm 108 /usr/src/linux-headers-4.15.0-70/tools/testing/ktest 8 /usr/src/linux-headers-4.15.0-70/tools/testing/scatterlist 8 /usr/src/linux-headers-4.15.0-70/tools/testing/radix-tree 12 /usr/src/linux-headers-4.15.0-70/tools/testing/fault-injection 1220 /usr/src/linux-headers-4.15.0-70/tools/testing 8 /usr/src/linux-headers-4.15.0-70/tools/pci 2176 /usr/src/linux-headers-4.15.0-70/tools 12 /usr/src/linux-headers-4.15.0-70/sound/spi 12 /usr/src/linux-headers-4.15.0-70/sound/soc/spear 12 /usr/src/linux-headers-4.15.0-70/sound/soc/generic 20 /usr/src/linux-headers-4.15.0-70/sound/soc/intel/boards 8 /usr/src/linux-headers-4.15.0-70/sound/soc/intel/baytrail 8 /usr/src/linux-headers-4.15.0-70/sound/soc/intel/common 8 /usr/src/linux-headers-4.15.0-70/sound/soc/intel/haswell 8 /usr/src/linux-headers-4.15.0-70/sound/soc/intel/atom/sst 16 /usr/src/linux-headers-4.15.0-70/sound/soc/intel/atom 8 /usr/src/linux-headers-4.15.0-70/sound/soc/intel/skylake 80 /usr/src/linux-headers-4.15.0-70/sound/soc/intel 12 /usr/src/linux-headers-4.15.0-70/sound/soc/txx9 12 /usr/src/linux-headers-4.15.0-70/sound/soc/davinci 12 /usr/src/linux-headers-4.15.0-70/sound/soc/mxs 12 /usr/src/linux-headers-4.15.0-70/sound/soc/sti 12 /usr/src/linux-headers-4.15.0-70/sound/soc/dwc 12 /usr/src/linux-headers-4.15.0-70/sound/soc/qcom 12 /usr/src/linux-headers-4.15.0-70/sound/soc/bcm 12 /usr/src/linux-headers-4.15.0-70/sound/soc/stm 12 /usr/src/linux-headers-4.15.0-70/sound/soc/kirkwood 16 /usr/src/linux-headers-4.15.0-70/sound/soc/tegra 12 /usr/src/linux-headers-4.15.0-70/sound/soc/img 12 /usr/src/linux-headers-4.15.0-70/sound/soc/adi 12 /usr/src/linux-headers-4.15.0-70/sound/soc/au1x 12 /usr/src/linux-headers-4.15.0-70/sound/soc/ux500 20 /usr/src/linux-headers-4.15.0-70/sound/soc/fsl 12 /usr/src/linux-headers-4.15.0-70/sound/soc/xtensa 8 /usr/src/linux-headers-4.15.0-70/sound/soc/sh/rcar 20 /usr/src/linux-headers-4.15.0-70/sound/soc/sh 16 /usr/src/linux-headers-4.15.0-70/sound/soc/blackfin 12 /usr/src/linux-headers-4.15.0-70/sound/soc/cirrus 12 /usr/src/linux-headers-4.15.0-70/sound/soc/zte 16 /usr/src/linux-headers-4.15.0-70/sound/soc/omap 56 /usr/src/linux-headers-4.15.0-70/sound/soc/codecs 16 /usr/src/linux-headers-4.15.0-70/sound/soc/pxa 12 /usr/src/linux-headers-4.15.0-70/sound/soc/sirf 12 /usr/src/linux-headers-4.15.0-70/sound/soc/amd 8 /usr/src/linux-headers-4.15.0-70/sound/soc/mediatek/common 8 /usr/src/linux-headers-4.15.0-70/sound/soc/mediatek/mt2701 8 /usr/src/linux-headers-4.15.0-70/sound/soc/mediatek/mt8173 36 /usr/src/linux-headers-4.15.0-70/sound/soc/mediatek 16 /usr/src/linux-headers-4.15.0-70/sound/soc/samsung 12 /usr/src/linux-headers-4.15.0-70/sound/soc/nuc900 12 /usr/src/linux-headers-4.15.0-70/sound/soc/hisilicon 12 /usr/src/linux-headers-4.15.0-70/sound/soc/rockchip 12 /usr/src/linux-headers-4.15.0-70/sound/soc/atmel 12 /usr/src/linux-headers-4.15.0-70/sound/soc/sunxi 12 /usr/src/linux-headers-4.15.0-70/sound/soc/jz4740 616 /usr/src/linux-headers-4.15.0-70/sound/soc 8 /usr/src/linux-headers-4.15.0-70/sound/firewire/oxfw 8 /usr/src/linux-headers-4.15.0-70/sound/firewire/bebob 8 /usr/src/linux-headers-4.15.0-70/sound/firewire/tascam 8 /usr/src/linux-headers-4.15.0-70/sound/firewire/digi00x 8 /usr/src/linux-headers-4.15.0-70/sound/firewire/motu 8 /usr/src/linux-headers-4.15.0-70/sound/firewire/fireworks 8 /usr/src/linux-headers-4.15.0-70/sound/firewire/dice 8 /usr/src/linux-headers-4.15.0-70/sound/firewire/fireface 80 /usr/src/linux-headers-4.15.0-70/sound/firewire 8 /usr/src/linux-headers-4.15.0-70/sound/drivers/opl4 8 /usr/src/linux-headers-4.15.0-70/sound/drivers/pcsp 8 /usr/src/linux-headers-4.15.0-70/sound/drivers/vx 8 /usr/src/linux-headers-4.15.0-70/sound/drivers/mpu401 8 /usr/src/linux-headers-4.15.0-70/sound/drivers/opl3 56 /usr/src/linux-headers-4.15.0-70/sound/drivers 12 /usr/src/linux-headers-4.15.0-70/sound/ppc 8 /usr/src/linux-headers-4.15.0-70/sound/i2c/other 16 /usr/src/linux-headers-4.15.0-70/sound/i2c 12 /usr/src/linux-headers-4.15.0-70/sound/ac97 12 /usr/src/linux-headers-4.15.0-70/sound/aoa/fabrics 8 /usr/src/linux-headers-4.15.0-70/sound/aoa/soundbus/i2sbus 20 /usr/src/linux-headers-4.15.0-70/sound/aoa/soundbus 8 /usr/src/linux-headers-4.15.0-70/sound/aoa/core 12 /usr/src/linux-headers-4.15.0-70/sound/aoa/codecs 64 /usr/src/linux-headers-4.15.0-70/sound/aoa 8 /usr/src/linux-headers-4.15.0-70/sound/core/seq/oss 20 /usr/src/linux-headers-4.15.0-70/sound/core/seq 8 /usr/src/linux-headers-4.15.0-70/sound/core/oss 44 /usr/src/linux-headers-4.15.0-70/sound/core 12 /usr/src/linux-headers-4.15.0-70/sound/sparc 8 /usr/src/linux-headers-4.15.0-70/sound/isa/cs423x 8 /usr/src/linux-headers-4.15.0-70/sound/isa/es1688 8 /usr/src/linux-headers-4.15.0-70/sound/isa/opti9xx 8 /usr/src/linux-headers-4.15.0-70/sound/isa/sb 8 /usr/src/linux-headers-4.15.0-70/sound/isa/galaxy 8 /usr/src/linux-headers-4.15.0-70/sound/isa/gus 8 /usr/src/linux-headers-4.15.0-70/sound/isa/wavefront 8 /usr/src/linux-headers-4.15.0-70/sound/isa/ad1816a 8 /usr/src/linux-headers-4.15.0-70/sound/isa/wss 8 /usr/src/linux-headers-4.15.0-70/sound/isa/msnd 8 /usr/src/linux-headers-4.15.0-70/sound/isa/ad1848 112 /usr/src/linux-headers-4.15.0-70/sound/isa 12 /usr/src/linux-headers-4.15.0-70/sound/sh 12 /usr/src/linux-headers-4.15.0-70/sound/mips 12 /usr/src/linux-headers-4.15.0-70/sound/parisc 12 /usr/src/linux-headers-4.15.0-70/sound/x86 8 /usr/src/linux-headers-4.15.0-70/sound/synth/emux 20 /usr/src/linux-headers-4.15.0-70/sound/synth 8 /usr/src/linux-headers-4.15.0-70/sound/pcmcia/pdaudiocf 8 /usr/src/linux-headers-4.15.0-70/sound/pcmcia/vx 28 /usr/src/linux-headers-4.15.0-70/sound/pcmcia 12 /usr/src/linux-headers-4.15.0-70/sound/usb/line6 8 /usr/src/linux-headers-4.15.0-70/sound/usb/usx2y 8 /usr/src/linux-headers-4.15.0-70/sound/usb/hiface 8 /usr/src/linux-headers-4.15.0-70/sound/usb/bcd2000 8 /usr/src/linux-headers-4.15.0-70/sound/usb/misc 8 /usr/src/linux-headers-4.15.0-70/sound/usb/caiaq 8 /usr/src/linux-headers-4.15.0-70/sound/usb/6fire 76 /usr/src/linux-headers-4.15.0-70/sound/usb 8 /usr/src/linux-headers-4.15.0-70/sound/hda/ext 20 /usr/src/linux-headers-4.15.0-70/sound/hda 12 /usr/src/linux-headers-4.15.0-70/sound/oss/dmasound 16 /usr/src/linux-headers-4.15.0-70/sound/oss 12 /usr/src/linux-headers-4.15.0-70/sound/atmel 12 /usr/src/linux-headers-4.15.0-70/sound/arm 8 /usr/src/linux-headers-4.15.0-70/sound/pci/korg1212 8 /usr/src/linux-headers-4.15.0-70/sound/pci/ymfpci 8 /usr/src/linux-headers-4.15.0-70/sound/pci/nm256 8 /usr/src/linux-headers-4.15.0-70/sound/pci/aw2 8 /usr/src/linux-headers-4.15.0-70/sound/pci/ali5451 8 /usr/src/linux-headers-4.15.0-70/sound/pci/asihpi 8 /usr/src/linux-headers-4.15.0-70/sound/pci/rme9652 8 /usr/src/linux-headers-4.15.0-70/sound/pci/ice1712 8 /usr/src/linux-headers-4.15.0-70/sound/pci/lx6464es 8 /usr/src/linux-headers-4.15.0-70/sound/pci/ac97 8 /usr/src/linux-headers-4.15.0-70/sound/pci/riptide 8 /usr/src/linux-headers-4.15.0-70/sound/pci/vx222 8 /usr/src/linux-headers-4.15.0-70/sound/pci/emu10k1 8 /usr/src/linux-headers-4.15.0-70/sound/pci/ca0106 8 /usr/src/linux-headers-4.15.0-70/sound/pci/au88x0 8 /usr/src/linux-headers-4.15.0-70/sound/pci/cs5535audio 8 /usr/src/linux-headers-4.15.0-70/sound/pci/ctxfi 8 /usr/src/linux-headers-4.15.0-70/sound/pci/trident 8 /usr/src/linux-headers-4.15.0-70/sound/pci/pcxhr 8 /usr/src/linux-headers-4.15.0-70/sound/pci/lola 8 /usr/src/linux-headers-4.15.0-70/sound/pci/echoaudio 8 /usr/src/linux-headers-4.15.0-70/sound/pci/mixart 8 /usr/src/linux-headers-4.15.0-70/sound/pci/oxygen 8 /usr/src/linux-headers-4.15.0-70/sound/pci/cs46xx 16 /usr/src/linux-headers-4.15.0-70/sound/pci/hda 244 /usr/src/linux-headers-4.15.0-70/sound/pci 1524 /usr/src/linux-headers-4.15.0-70/sound 8 /usr/src/linux-headers-4.15.0-70/mm/kasan 48 /usr/src/linux-headers-4.15.0-70/mm 12 /usr/src/linux-headers-4.15.0-70/security/yama 12 /usr/src/linux-headers-4.15.0-70/security/tomoyo 12 /usr/src/linux-headers-4.15.0-70/security/integrity/evm 16 /usr/src/linux-headers-4.15.0-70/security/integrity/ima 40 /usr/src/linux-headers-4.15.0-70/security/integrity 16 /usr/src/linux-headers-4.15.0-70/security/apparmor 12 /usr/src/linux-headers-4.15.0-70/security/smack 12 /usr/src/linux-headers-4.15.0-70/security/loadpin 8 /usr/src/linux-headers-4.15.0-70/security/keys/encrypted-keys 20 /usr/src/linux-headers-4.15.0-70/security/keys 12 /usr/src/linux-headers-4.15.0-70/security/selinux 164 /usr/src/linux-headers-4.15.0-70/security 24 /usr/src/linux-headers-4.15.0-70/include/soc/at91 8 /usr/src/linux-headers-4.15.0-70/include/soc/sa1100 108 /usr/src/linux-headers-4.15.0-70/include/soc/tegra 16 /usr/src/linux-headers-4.15.0-70/include/soc/imx 8 /usr/src/linux-headers-4.15.0-70/include/soc/brcmstb 88 /usr/src/linux-headers-4.15.0-70/include/soc/fsl/qe 144 /usr/src/linux-headers-4.15.0-70/include/soc/fsl 16 /usr/src/linux-headers-4.15.0-70/include/soc/nps 8 /usr/src/linux-headers-4.15.0-70/include/soc/mediatek 8 /usr/src/linux-headers-4.15.0-70/include/soc/rockchip 16 /usr/src/linux-headers-4.15.0-70/include/soc/arc 12 /usr/src/linux-headers-4.15.0-70/include/soc/bcm2835 372 /usr/src/linux-headers-4.15.0-70/include/soc 24 /usr/src/linux-headers-4.15.0-70/include/uapi/rdma/hfi 168 /usr/src/linux-headers-4.15.0-70/include/uapi/rdma 48 /usr/src/linux-headers-4.15.0-70/include/uapi/mtd 12 /usr/src/linux-headers-4.15.0-70/include/uapi/linux/spi 20 /usr/src/linux-headers-4.15.0-70/include/uapi/linux/wimax 8 /usr/src/linux-headers-4.15.0-70/include/uapi/linux/hdlc 28 /usr/src/linux-headers-4.15.0-70/include/uapi/linux/raid 8 /usr/src/linux-headers-4.15.0-70/include/uapi/linux/cifs 8 /usr/src/linux-headers-4.15.0-70/include/uapi/linux/sched 40 /usr/src/linux-headers-4.15.0-70/include/uapi/linux/can 44 /usr/src/linux-headers-4.15.0-70/include/uapi/linux/netfilter_ipv4 8 /usr/src/linux-headers-4.15.0-70/include/uapi/linux/sunrpc 12 /usr/src/linux-headers-4.15.0-70/include/uapi/linux/hsi 12 /usr/src/linux-headers-4.15.0-70/include/uapi/linux/byteorder 20 /usr/src/linux-headers-4.15.0-70/include/uapi/linux/android 64 /usr/src/linux-headers-4.15.0-70/include/uapi/linux/tc_act 88 /usr/src/linux-headers-4.15.0-70/include/uapi/linux/dvb 12 /usr/src/linux-headers-4.15.0-70/include/uapi/linux/iio 8 /usr/src/linux-headers-4.15.0-70/include/uapi/linux/mmc 16 /usr/src/linux-headers-4.15.0-70/include/uapi/linux/netfilter_arp 24 /usr/src/linux-headers-4.15.0-70/include/uapi/linux/genwqe 144 /usr/src/linux-headers-4.15.0-70/include/uapi/linux/usb 80 /usr/src/linux-headers-4.15.0-70/include/uapi/linux/netfilter_bridge 24 /usr/src/linux-headers-4.15.0-70/include/uapi/linux/nfsd 20 /usr/src/linux-headers-4.15.0-70/include/uapi/linux/tc_ematch 16 /usr/src/linux-headers-4.15.0-70/include/uapi/linux/caif 28 /usr/src/linux-headers-4.15.0-70/include/uapi/linux/netfilter/ipset 428 /usr/src/linux-headers-4.15.0-70/include/uapi/linux/netfilter 56 /usr/src/linux-headers-4.15.0-70/include/uapi/linux/netfilter_ipv6 12 /usr/src/linux-headers-4.15.0-70/include/uapi/linux/isdn 5280 /usr/src/linux-headers-4.15.0-70/include/uapi/linux 204 /usr/src/linux-headers-4.15.0-70/include/uapi/asm-generic 20 /usr/src/linux-headers-4.15.0-70/include/uapi/video 204 /usr/src/linux-headers-4.15.0-70/include/uapi/sound 24 /usr/src/linux-headers-4.15.0-70/include/uapi/xen 60 /usr/src/linux-headers-4.15.0-70/include/uapi/scsi/fc 96 /usr/src/linux-headers-4.15.0-70/include/uapi/scsi 396 /usr/src/linux-headers-4.15.0-70/include/uapi/drm 12 /usr/src/linux-headers-4.15.0-70/include/uapi/misc 6456 /usr/src/linux-headers-4.15.0-70/include/uapi 448 /usr/src/linux-headers-4.15.0-70/include/rdma 8 /usr/src/linux-headers-4.15.0-70/include/memory 16 /usr/src/linux-headers-4.15.0-70/include/ras 196 /usr/src/linux-headers-4.15.0-70/include/linux/spi 20 /usr/src/linux-headers-4.15.0-70/include/linux/wimax 32 /usr/src/linux-headers-4.15.0-70/include/linux/soc/ti 24 /usr/src/linux-headers-4.15.0-70/include/linux/soc/qcom 8 /usr/src/linux-headers-4.15.0-70/include/linux/soc/actions 8 /usr/src/linux-headers-4.15.0-70/include/linux/soc/dove 8 /usr/src/linux-headers-4.15.0-70/include/linux/soc/brcmstb 12 /usr/src/linux-headers-4.15.0-70/include/linux/soc/renesas 8 /usr/src/linux-headers-4.15.0-70/include/linux/soc/mediatek 40 /usr/src/linux-headers-4.15.0-70/include/linux/soc/samsung 8 /usr/src/linux-headers-4.15.0-70/include/linux/soc/sunxi 152 /usr/src/linux-headers-4.15.0-70/include/linux/soc 88 /usr/src/linux-headers-4.15.0-70/include/linux/power 12 /usr/src/linux-headers-4.15.0-70/include/linux/perf 36 /usr/src/linux-headers-4.15.0-70/include/linux/rtc 48 /usr/src/linux-headers-4.15.0-70/include/linux/gpio 20 /usr/src/linux-headers-4.15.0-70/include/linux/raid 344 /usr/src/linux-headers-4.15.0-70/include/linux/mlx5 28 /usr/src/linux-headers-4.15.0-70/include/linux/avf 24 /usr/src/linux-headers-4.15.0-70/include/linux/crush 56 /usr/src/linux-headers-4.15.0-70/include/linux/pinctrl 172 /usr/src/linux-headers-4.15.0-70/include/linux/regulator 144 /usr/src/linux-headers-4.15.0-70/include/linux/sched 272 /usr/src/linux-headers-4.15.0-70/include/linux/mtd 8 /usr/src/linux-headers-4.15.0-70/include/linux/reset 20 /usr/src/linux-headers-4.15.0-70/include/linux/can/platform 12 /usr/src/linux-headers-4.15.0-70/include/linux/can/dev 60 /usr/src/linux-headers-4.15.0-70/include/linux/can 8 /usr/src/linux-headers-4.15.0-70/include/linux/netfilter_ipv4 228 /usr/src/linux-headers-4.15.0-70/include/linux/sunrpc 24 /usr/src/linux-headers-4.15.0-70/include/linux/hsi 8 /usr/src/linux-headers-4.15.0-70/include/linux/i2c 96 /usr/src/linux-headers-4.15.0-70/include/linux/mlx4 20 /usr/src/linux-headers-4.15.0-70/include/linux/byteorder 8 /usr/src/linux-headers-4.15.0-70/include/linux/dsa 12 /usr/src/linux-headers-4.15.0-70/include/linux/extcon 104 /usr/src/linux-headers-4.15.0-70/include/linux/input 12 /usr/src/linux-headers-4.15.0-70/include/linux/mux 8 /usr/src/linux-headers-4.15.0-70/include/linux/phy/tegra 44 /usr/src/linux-headers-4.15.0-70/include/linux/phy 24 /usr/src/linux-headers-4.15.0-70/include/linux/platform_data/x86 60 /usr/src/linux-headers-4.15.0-70/include/linux/platform_data/media 1084 /usr/src/linux-headers-4.15.0-70/include/linux/platform_data 100 /usr/src/linux-headers-4.15.0-70/include/linux/bcma 40 /usr/src/linux-headers-4.15.0-70/include/linux/fsl/bestcomm 64 /usr/src/linux-headers-4.15.0-70/include/linux/fsl 100 /usr/src/linux-headers-4.15.0-70/include/linux/irqchip 80 /usr/src/linux-headers-4.15.0-70/include/linux/amba 20 /usr/src/linux-headers-4.15.0-70/include/linux/fpga 20 /usr/src/linux-headers-4.15.0-70/include/linux/ulpi 40 /usr/src/linux-headers-4.15.0-70/include/linux/uwb 44 /usr/src/linux-headers-4.15.0-70/include/linux/unaligned 44 /usr/src/linux-headers-4.15.0-70/include/linux/mfd/da9062 28 /usr/src/linux-headers-4.15.0-70/include/linux/mfd/mt6323 48 /usr/src/linux-headers-4.15.0-70/include/linux/mfd/da9063 212 /usr/src/linux-headers-4.15.0-70/include/linux/mfd/wm831x 500 /usr/src/linux-headers-4.15.0-70/include/linux/mfd/arizona 48 /usr/src/linux-headers-4.15.0-70/include/linux/mfd/da9150 36 /usr/src/linux-headers-4.15.0-70/include/linux/mfd/da9055 24 /usr/src/linux-headers-4.15.0-70/include/linux/mfd/mt6397 308 /usr/src/linux-headers-4.15.0-70/include/linux/mfd/wm8994 36 /usr/src/linux-headers-4.15.0-70/include/linux/mfd/pcf50633 132 /usr/src/linux-headers-4.15.0-70/include/linux/mfd/wm8350 72 /usr/src/linux-headers-4.15.0-70/include/linux/mfd/syscon 40 /usr/src/linux-headers-4.15.0-70/include/linux/mfd/da9052 68 /usr/src/linux-headers-4.15.0-70/include/linux/mfd/samsung 64 /usr/src/linux-headers-4.15.0-70/include/linux/mfd/abx500 2988 /usr/src/linux-headers-4.15.0-70/include/linux/mfd 56 /usr/src/linux-headers-4.15.0-70/include/linux/clk 20 /usr/src/linux-headers-4.15.0-70/include/linux/iio/frequency 28 /usr/src/linux-headers-4.15.0-70/include/linux/iio/common 12 /usr/src/linux-headers-4.15.0-70/include/linux/iio/adc 8 /usr/src/linux-headers-4.15.0-70/include/linux/iio/magnetometer 12 /usr/src/linux-headers-4.15.0-70/include/linux/iio/gyro 12 /usr/src/linux-headers-4.15.0-70/include/linux/iio/timer 8 /usr/src/linux-headers-4.15.0-70/include/linux/iio/accel 12 /usr/src/linux-headers-4.15.0-70/include/linux/iio/imu 24 /usr/src/linux-headers-4.15.0-70/include/linux/iio/dac 268 /usr/src/linux-headers-4.15.0-70/include/linux/iio 108 /usr/src/linux-headers-4.15.0-70/include/linux/mmc 36 /usr/src/linux-headers-4.15.0-70/include/linux/dma 8 /usr/src/linux-headers-4.15.0-70/include/linux/firmware/meson 12 /usr/src/linux-headers-4.15.0-70/include/linux/firmware 280 /usr/src/linux-headers-4.15.0-70/include/linux/qed 36 /usr/src/linux-headers-4.15.0-70/include/linux/decompress 12 /usr/src/linux-headers-4.15.0-70/include/linux/rpmsg 132 /usr/src/linux-headers-4.15.0-70/include/linux/ssb 8 /usr/src/linux-headers-4.15.0-70/include/linux/netfilter_arp 476 /usr/src/linux-headers-4.15.0-70/include/linux/usb 16 /usr/src/linux-headers-4.15.0-70/include/linux/netfilter_bridge 56 /usr/src/linux-headers-4.15.0-70/include/linux/netfilter/ipset 200 /usr/src/linux-headers-4.15.0-70/include/linux/netfilter 40 /usr/src/linux-headers-4.15.0-70/include/linux/lockd 192 /usr/src/linux-headers-4.15.0-70/include/linux/ceph 12 /usr/src/linux-headers-4.15.0-70/include/linux/remoteproc 8 /usr/src/linux-headers-4.15.0-70/include/linux/netfilter_ipv6 28 /usr/src/linux-headers-4.15.0-70/include/linux/isdn 8 /usr/src/linux-headers-4.15.0-70/include/linux/mailbox 19528 /usr/src/linux-headers-4.15.0-70/include/linux 92 /usr/src/linux-headers-4.15.0-70/include/asm-generic/bitops 708 /usr/src/linux-headers-4.15.0-70/include/asm-generic 580 /usr/src/linux-headers-4.15.0-70/include/video 872 /usr/src/linux-headers-4.15.0-70/include/trace/events 912 /usr/src/linux-headers-4.15.0-70/include/trace 16 /usr/src/linux-headers-4.15.0-70/include/dt-bindings/soc 104 /usr/src/linux-headers-4.15.0-70/include/dt-bindings/power 36 /usr/src/linux-headers-4.15.0-70/include/dt-bindings/gpio 8 /usr/src/linux-headers-4.15.0-70/include/dt-bindings/spmi 24 /usr/src/linux-headers-4.15.0-70/include/dt-bindings/interrupt-controller 36 /usr/src/linux-headers-4.15.0-70/include/dt-bindings/memory 136 /usr/src/linux-headers-4.15.0-70/include/dt-bindings/pinctrl 8 /usr/src/linux-headers-4.15.0-70/include/dt-bindings/regulator 228 /usr/src/linux-headers-4.15.0-70/include/dt-bindings/reset 1164 /usr/src/linux-headers-4.15.0-70/include/dt-bindings/clock 8 /usr/src/linux-headers-4.15.0-70/include/dt-bindings/i2c 12 /usr/src/linux-headers-4.15.0-70/include/dt-bindings/net 36 /usr/src/linux-headers-4.15.0-70/include/dt-bindings/sound 24 /usr/src/linux-headers-4.15.0-70/include/dt-bindings/leds 12 /usr/src/linux-headers-4.15.0-70/include/dt-bindings/input 8 /usr/src/linux-headers-4.15.0-70/include/dt-bindings/mux 12 /usr/src/linux-headers-4.15.0-70/include/dt-bindings/phy 8 /usr/src/linux-headers-4.15.0-70/include/dt-bindings/display 24 /usr/src/linux-headers-4.15.0-70/include/dt-bindings/thermal 8 /usr/src/linux-headers-4.15.0-70/include/dt-bindings/mips 60 /usr/src/linux-headers-4.15.0-70/include/dt-bindings/mfd 8 /usr/src/linux-headers-4.15.0-70/include/dt-bindings/clk 8 /usr/src/linux-headers-4.15.0-70/include/dt-bindings/iio/adc 20 /usr/src/linux-headers-4.15.0-70/include/dt-bindings/iio 20 /usr/src/linux-headers-4.15.0-70/include/dt-bindings/dma 8 /usr/src/linux-headers-4.15.0-70/include/dt-bindings/arm 8 /usr/src/linux-headers-4.15.0-70/include/dt-bindings/pwm 8 /usr/src/linux-headers-4.15.0-70/include/dt-bindings/mailbox 20 /usr/src/linux-headers-4.15.0-70/include/dt-bindings/media 2068 /usr/src/linux-headers-4.15.0-70/include/dt-bindings 120 /usr/src/linux-headers-4.15.0-70/include/math-emu 76 /usr/src/linux-headers-4.15.0-70/include/net/nfc 176 /usr/src/linux-headers-4.15.0-70/include/net/bluetooth 168 /usr/src/linux-headers-4.15.0-70/include/net/sctp 32 /usr/src/linux-headers-4.15.0-70/include/net/iucv 64 /usr/src/linux-headers-4.15.0-70/include/net/tc_act 40 /usr/src/linux-headers-4.15.0-70/include/net/9p 20 /usr/src/linux-headers-4.15.0-70/include/net/phonet 76 /usr/src/linux-headers-4.15.0-70/include/net/caif 24 /usr/src/linux-headers-4.15.0-70/include/net/netfilter/ipv4 28 /usr/src/linux-headers-4.15.0-70/include/net/netfilter/ipv6 272 /usr/src/linux-headers-4.15.0-70/include/net/netfilter 80 /usr/src/linux-headers-4.15.0-70/include/net/netns 3064 /usr/src/linux-headers-4.15.0-70/include/net 32 /usr/src/linux-headers-4.15.0-70/include/sound/ac97 1188 /usr/src/linux-headers-4.15.0-70/include/sound 24 /usr/src/linux-headers-4.15.0-70/include/clocksource 32 /usr/src/linux-headers-4.15.0-70/include/xen/interface/hvm 228 /usr/src/linux-headers-4.15.0-70/include/xen/interface/io 432 /usr/src/linux-headers-4.15.0-70/include/xen/interface 24 /usr/src/linux-headers-4.15.0-70/include/xen/arm 544 /usr/src/linux-headers-4.15.0-70/include/xen 64 /usr/src/linux-headers-4.15.0-70/include/crypto/internal 392 /usr/src/linux-headers-4.15.0-70/include/crypto 52 /usr/src/linux-headers-4.15.0-70/include/scsi/fc 580 /usr/src/linux-headers-4.15.0-70/include/scsi 120 /usr/src/linux-headers-4.15.0-70/include/drm/ttm 16 /usr/src/linux-headers-4.15.0-70/include/drm/i2c 32 /usr/src/linux-headers-4.15.0-70/include/drm/bridge 20 /usr/src/linux-headers-4.15.0-70/include/drm/tinydrm 1008 /usr/src/linux-headers-4.15.0-70/include/drm 48 /usr/src/linux-headers-4.15.0-70/include/misc 36 /usr/src/linux-headers-4.15.0-70/include/kvm 44 /usr/src/linux-headers-4.15.0-70/include/target/iscsi 96 /usr/src/linux-headers-4.15.0-70/include/target 48 /usr/src/linux-headers-4.15.0-70/include/acpi/platform 476 /usr/src/linux-headers-4.15.0-70/include/acpi 56 /usr/src/linux-headers-4.15.0-70/include/pcmcia 92 /usr/src/linux-headers-4.15.0-70/include/media/davinci 216 /usr/src/linux-headers-4.15.0-70/include/media/i2c 96 /usr/src/linux-headers-4.15.0-70/include/media/drv-intf 12 /usr/src/linux-headers-4.15.0-70/include/media/blackfin 988 /usr/src/linux-headers-4.15.0-70/include/media 60 /usr/src/linux-headers-4.15.0-70/include/keys 39780 /usr/src/linux-headers-4.15.0-70/include 12 /usr/src/linux-headers-4.15.0-70/crypto/async_tx 12 /usr/src/linux-headers-4.15.0-70/crypto/asymmetric_keys 88 /usr/src/linux-headers-4.15.0-70/crypto 20 /usr/src/linux-headers-4.15.0-70/kernel/power 12 /usr/src/linux-headers-4.15.0-70/kernel/irq 8 /usr/src/linux-headers-4.15.0-70/kernel/printk 8 /usr/src/linux-headers-4.15.0-70/kernel/sched 12 /usr/src/linux-headers-4.15.0-70/kernel/livepatch 8 /usr/src/linux-headers-4.15.0-70/kernel/bpf 8 /usr/src/linux-headers-4.15.0-70/kernel/events 32 /usr/src/linux-headers-4.15.0-70/kernel/trace 12 /usr/src/linux-headers-4.15.0-70/kernel/time 8 /usr/src/linux-headers-4.15.0-70/kernel/cgroup 8 /usr/src/linux-headers-4.15.0-70/kernel/debug/kdb 16 /usr/src/linux-headers-4.15.0-70/kernel/debug 8 /usr/src/linux-headers-4.15.0-70/kernel/locking 24 /usr/src/linux-headers-4.15.0-70/kernel/rcu 12 /usr/src/linux-headers-4.15.0-70/kernel/gcov 220 /usr/src/linux-headers-4.15.0-70/kernel 20 /usr/src/linux-headers-4.15.0-70/block/partitions 40 /usr/src/linux-headers-4.15.0-70/block 20 /usr/src/linux-headers-4.15.0-70/certs 8 /usr/src/linux-headers-4.15.0-70/firmware 156 /usr/src/linux-headers-4.15.0-70/scripts/mod 8 /usr/src/linux-headers-4.15.0-70/scripts/ksymoops 48 /usr/src/linux-headers-4.15.0-70/scripts/package 24 /usr/src/linux-headers-4.15.0-70/scripts/coccinelle/iterators 20 /usr/src/linux-headers-4.15.0-70/scripts/coccinelle/locks 16 /usr/src/linux-headers-4.15.0-70/scripts/coccinelle/api/alloc 8 /usr/src/linux-headers-4.15.0-70/scripts/coccinelle/api/debugfs 88 /usr/src/linux-headers-4.15.0-70/scripts/coccinelle/api 20 /usr/src/linux-headers-4.15.0-70/scripts/coccinelle/tests 76 /usr/src/linux-headers-4.15.0-70/scripts/coccinelle/misc 24 /usr/src/linux-headers-4.15.0-70/scripts/coccinelle/null 32 /usr/src/linux-headers-4.15.0-70/scripts/coccinelle/free 288 /usr/src/linux-headers-4.15.0-70/scripts/coccinelle 208 /usr/src/linux-headers-4.15.0-70/scripts/genksyms 28 /usr/src/linux-headers-4.15.0-70/scripts/basic 136 /usr/src/linux-headers-4.15.0-70/scripts/gcc-plugins 12 /usr/src/linux-headers-4.15.0-70/scripts/tracing 72 /usr/src/linux-headers-4.15.0-70/scripts/gdb/linux 84 /usr/src/linux-headers-4.15.0-70/scripts/gdb 92 /usr/src/linux-headers-4.15.0-70/scripts/kconfig/lxdialog 692 /usr/src/linux-headers-4.15.0-70/scripts/kconfig 188 /usr/src/linux-headers-4.15.0-70/scripts/dtc/libfdt 4 /usr/src/linux-headers-4.15.0-70/scripts/dtc/include-prefixes 620 /usr/src/linux-headers-4.15.0-70/scripts/dtc 16 /usr/src/linux-headers-4.15.0-70/scripts/selinux/genheaders 24 /usr/src/linux-headers-4.15.0-70/scripts/selinux/mdp 56 /usr/src/linux-headers-4.15.0-70/scripts/selinux 3556 /usr/src/linux-headers-4.15.0-70/scripts 8 /usr/src/linux-headers-4.15.0-70/arch/m32r/oprofile 8 /usr/src/linux-headers-4.15.0-70/arch/m32r/mm 136 /usr/src/linux-headers-4.15.0-70/arch/m32r/include/uapi/asm 140 /usr/src/linux-headers-4.15.0-70/arch/m32r/include/uapi 12 /usr/src/linux-headers-4.15.0-70/arch/m32r/include/asm/mappi2 24 /usr/src/linux-headers-4.15.0-70/arch/m32r/include/asm/m32700ut 12 /usr/src/linux-headers-4.15.0-70/arch/m32r/include/asm/mappi3 24 /usr/src/linux-headers-4.15.0-70/arch/m32r/include/asm/opsput 12 /usr/src/linux-headers-4.15.0-70/arch/m32r/include/asm/m32104ut 500 /usr/src/linux-headers-4.15.0-70/arch/m32r/include/asm 644 /usr/src/linux-headers-4.15.0-70/arch/m32r/include 8 /usr/src/linux-headers-4.15.0-70/arch/m32r/kernel 12 /usr/src/linux-headers-4.15.0-70/arch/m32r/boot/compressed 20 /usr/src/linux-headers-4.15.0-70/arch/m32r/boot 8 /usr/src/linux-headers-4.15.0-70/arch/m32r/lib 8 /usr/src/linux-headers-4.15.0-70/arch/m32r/platforms/mappi2 8 /usr/src/linux-headers-4.15.0-70/arch/m32r/platforms/oaks32r 8 /usr/src/linux-headers-4.15.0-70/arch/m32r/platforms/m32700ut 8 /usr/src/linux-headers-4.15.0-70/arch/m32r/platforms/mappi 8 /usr/src/linux-headers-4.15.0-70/arch/m32r/platforms/mappi3 8 /usr/src/linux-headers-4.15.0-70/arch/m32r/platforms/opsput 8 /usr/src/linux-headers-4.15.0-70/arch/m32r/platforms/usrv 8 /usr/src/linux-headers-4.15.0-70/arch/m32r/platforms/m32104ut 72 /usr/src/linux-headers-4.15.0-70/arch/m32r/platforms 792 /usr/src/linux-headers-4.15.0-70/arch/m32r 8 /usr/src/linux-headers-4.15.0-70/arch/cris/mm 108 /usr/src/linux-headers-4.15.0-70/arch/cris/include/uapi/asm 316 /usr/src/linux-headers-4.15.0-70/arch/cris/include/uapi/arch-v10/arch 320 /usr/src/linux-headers-4.15.0-70/arch/cris/include/uapi/arch-v10 12 /usr/src/linux-headers-4.15.0-70/arch/cris/include/uapi/arch-v32/arch 16 /usr/src/linux-headers-4.15.0-70/arch/cris/include/uapi/arch-v32 448 /usr/src/linux-headers-4.15.0-70/arch/cris/include/uapi 208 /usr/src/linux-headers-4.15.0-70/arch/cris/include/asm 124 /usr/src/linux-headers-4.15.0-70/arch/cris/include/arch-v10/arch 128 /usr/src/linux-headers-4.15.0-70/arch/cris/include/arch-v10 128 /usr/src/linux-headers-4.15.0-70/arch/cris/include/arch-v32/mach-a3/mach/hwregs/asm 212 /usr/src/linux-headers-4.15.0-70/arch/cris/include/arch-v32/mach-a3/mach/hwregs/iop/asm 324 /usr/src/linux-headers-4.15.0-70/arch/cris/include/arch-v32/mach-a3/mach/hwregs/iop 604 /usr/src/linux-headers-4.15.0-70/arch/cris/include/arch-v32/mach-a3/mach/hwregs 628 /usr/src/linux-headers-4.15.0-70/arch/cris/include/arch-v32/mach-a3/mach 632 /usr/src/linux-headers-4.15.0-70/arch/cris/include/arch-v32/mach-a3 276 /usr/src/linux-headers-4.15.0-70/arch/cris/include/arch-v32/arch/hwregs/asm 492 /usr/src/linux-headers-4.15.0-70/arch/cris/include/arch-v32/arch/hwregs/iop/asm 816 /usr/src/linux-headers-4.15.0-70/arch/cris/include/arch-v32/arch/hwregs/iop 1288 /usr/src/linux-headers-4.15.0-70/arch/cris/include/arch-v32/arch/hwregs 1412 /usr/src/linux-headers-4.15.0-70/arch/cris/include/arch-v32/arch 88 /usr/src/linux-headers-4.15.0-70/arch/cris/include/arch-v32/mach-fs/mach/hwregs/asm 216 /usr/src/linux-headers-4.15.0-70/arch/cris/include/arch-v32/mach-fs/mach/hwregs 240 /usr/src/linux-headers-4.15.0-70/arch/cris/include/arch-v32/mach-fs/mach 244 /usr/src/linux-headers-4.15.0-70/arch/cris/include/arch-v32/mach-fs 2292 /usr/src/linux-headers-4.15.0-70/arch/cris/include/arch-v32 3080 /usr/src/linux-headers-4.15.0-70/arch/cris/include 28 /usr/src/linux-headers-4.15.0-70/arch/cris/arch-v10/drivers 8 /usr/src/linux-headers-4.15.0-70/arch/cris/arch-v10/mm 8 /usr/src/linux-headers-4.15.0-70/arch/cris/arch-v10/kernel 8 /usr/src/linux-headers-4.15.0-70/arch/cris/arch-v10/lib 68 /usr/src/linux-headers-4.15.0-70/arch/cris/arch-v10 8 /usr/src/linux-headers-4.15.0-70/arch/cris/kernel 8 /usr/src/linux-headers-4.15.0-70/arch/cris/arch-v32/drivers/mach-a3 8 /usr/src/linux-headers-4.15.0-70/arch/cris/arch-v32/drivers/mach-fs 8 /usr/src/linux-headers-4.15.0-70/arch/cris/arch-v32/drivers/pci 44 /usr/src/linux-headers-4.15.0-70/arch/cris/arch-v32/drivers 12 /usr/src/linux-headers-4.15.0-70/arch/cris/arch-v32/mach-a3 8 /usr/src/linux-headers-4.15.0-70/arch/cris/arch-v32/mm 8 /usr/src/linux-headers-4.15.0-70/arch/cris/arch-v32/kernel 16 /usr/src/linux-headers-4.15.0-70/arch/cris/arch-v32/mach-fs 8 /usr/src/linux-headers-4.15.0-70/arch/cris/arch-v32/lib 108 /usr/src/linux-headers-4.15.0-70/arch/cris/arch-v32 16 /usr/src/linux-headers-4.15.0-70/arch/cris/boot/compressed 16 /usr/src/linux-headers-4.15.0-70/arch/cris/boot/rescue 8 /usr/src/linux-headers-4.15.0-70/arch/cris/boot/dts 48 /usr/src/linux-headers-4.15.0-70/arch/cris/boot 3348 /usr/src/linux-headers-4.15.0-70/arch/cris 8 /usr/src/linux-headers-4.15.0-70/arch/h8300/mm 32 /usr/src/linux-headers-4.15.0-70/arch/h8300/include/uapi/asm 36 /usr/src/linux-headers-4.15.0-70/arch/h8300/include/uapi 136 /usr/src/linux-headers-4.15.0-70/arch/h8300/include/asm 176 /usr/src/linux-headers-4.15.0-70/arch/h8300/include 8 /usr/src/linux-headers-4.15.0-70/arch/h8300/kernel 12 /usr/src/linux-headers-4.15.0-70/arch/h8300/boot/compressed 8 /usr/src/linux-headers-4.15.0-70/arch/h8300/boot/dts 28 /usr/src/linux-headers-4.15.0-70/arch/h8300/boot 8 /usr/src/linux-headers-4.15.0-70/arch/h8300/lib 244 /usr/src/linux-headers-4.15.0-70/arch/h8300 8 /usr/src/linux-headers-4.15.0-70/arch/metag/oprofile 8 /usr/src/linux-headers-4.15.0-70/arch/metag/tbx 12 /usr/src/linux-headers-4.15.0-70/arch/metag/mm 36 /usr/src/linux-headers-4.15.0-70/arch/metag/include/uapi/asm 40 /usr/src/linux-headers-4.15.0-70/arch/metag/include/uapi 8 /usr/src/linux-headers-4.15.0-70/arch/metag/include/asm/mach 488 /usr/src/linux-headers-4.15.0-70/arch/metag/include/asm 532 /usr/src/linux-headers-4.15.0-70/arch/metag/include 8 /usr/src/linux-headers-4.15.0-70/arch/metag/kernel/perf 16 /usr/src/linux-headers-4.15.0-70/arch/metag/kernel 8 /usr/src/linux-headers-4.15.0-70/arch/metag/boot/dts 16 /usr/src/linux-headers-4.15.0-70/arch/metag/boot 8 /usr/src/linux-headers-4.15.0-70/arch/metag/lib 624 /usr/src/linux-headers-4.15.0-70/arch/metag 12 /usr/src/linux-headers-4.15.0-70/arch/tile/gxio 8 /usr/src/linux-headers-4.15.0-70/arch/tile/mm 68 /usr/src/linux-headers-4.15.0-70/arch/tile/include/uapi/asm 204 /usr/src/linux-headers-4.15.0-70/arch/tile/include/uapi/arch 276 /usr/src/linux-headers-4.15.0-70/arch/tile/include/uapi 148 /usr/src/linux-headers-4.15.0-70/arch/tile/include/gxio 504 /usr/src/linux-headers-4.15.0-70/arch/tile/include/asm 124 /usr/src/linux-headers-4.15.0-70/arch/tile/include/arch 340 /usr/src/linux-headers-4.15.0-70/arch/tile/include/hv 1396 /usr/src/linux-headers-4.15.0-70/arch/tile/include 8 /usr/src/linux-headers-4.15.0-70/arch/tile/kernel/vdso 16 /usr/src/linux-headers-4.15.0-70/arch/tile/kernel 8 /usr/src/linux-headers-4.15.0-70/arch/tile/kvm 8 /usr/src/linux-headers-4.15.0-70/arch/tile/lib 1480 /usr/src/linux-headers-4.15.0-70/arch/tile 8 /usr/src/linux-headers-4.15.0-70/arch/s390/oprofile 8 /usr/src/linux-headers-4.15.0-70/arch/s390/net 8 /usr/src/linux-headers-4.15.0-70/arch/s390/tools 8 /usr/src/linux-headers-4.15.0-70/arch/s390/mm 252 /usr/src/linux-headers-4.15.0-70/arch/s390/include/uapi/asm 256 /usr/src/linux-headers-4.15.0-70/arch/s390/include/uapi 16 /usr/src/linux-headers-4.15.0-70/arch/s390/include/asm/trace 16 /usr/src/linux-headers-4.15.0-70/arch/s390/include/asm/fpu 860 /usr/src/linux-headers-4.15.0-70/arch/s390/include/asm 1120 /usr/src/linux-headers-4.15.0-70/arch/s390/include 8 /usr/src/linux-headers-4.15.0-70/arch/s390/hypfs 8 /usr/src/linux-headers-4.15.0-70/arch/s390/crypto 8 /usr/src/linux-headers-4.15.0-70/arch/s390/kernel/vdso64 8 /usr/src/linux-headers-4.15.0-70/arch/s390/kernel/vdso32 24 /usr/src/linux-headers-4.15.0-70/arch/s390/kernel 8 /usr/src/linux-headers-4.15.0-70/arch/s390/appldata 8 /usr/src/linux-headers-4.15.0-70/arch/s390/numa 12 /usr/src/linux-headers-4.15.0-70/arch/s390/kvm 8 /usr/src/linux-headers-4.15.0-70/arch/s390/boot/compressed 20 /usr/src/linux-headers-4.15.0-70/arch/s390/boot 8 /usr/src/linux-headers-4.15.0-70/arch/s390/lib 8 /usr/src/linux-headers-4.15.0-70/arch/s390/pci 1304 /usr/src/linux-headers-4.15.0-70/arch/s390 8 /usr/src/linux-headers-4.15.0-70/arch/microblaze/oprofile 8 /usr/src/linux-headers-4.15.0-70/arch/microblaze/mm 56 /usr/src/linux-headers-4.15.0-70/arch/microblaze/include/uapi/asm 60 /usr/src/linux-headers-4.15.0-70/arch/microblaze/include/uapi 292 /usr/src/linux-headers-4.15.0-70/arch/microblaze/include/asm 356 /usr/src/linux-headers-4.15.0-70/arch/microblaze/include 8 /usr/src/linux-headers-4.15.0-70/arch/microblaze/kernel/cpu 16 /usr/src/linux-headers-4.15.0-70/arch/microblaze/kernel 8 /usr/src/linux-headers-4.15.0-70/arch/microblaze/boot/dts 16 /usr/src/linux-headers-4.15.0-70/arch/microblaze/boot 8 /usr/src/linux-headers-4.15.0-70/arch/microblaze/lib 8 /usr/src/linux-headers-4.15.0-70/arch/microblaze/pci 444 /usr/src/linux-headers-4.15.0-70/arch/microblaze 12 /usr/src/linux-headers-4.15.0-70/arch/unicore32/mm 24 /usr/src/linux-headers-4.15.0-70/arch/unicore32/include/uapi/asm 28 /usr/src/linux-headers-4.15.0-70/arch/unicore32/include/uapi 116 /usr/src/linux-headers-4.15.0-70/arch/unicore32/include/mach 200 /usr/src/linux-headers-4.15.0-70/arch/unicore32/include/asm 348 /usr/src/linux-headers-4.15.0-70/arch/unicore32/include 8 /usr/src/linux-headers-4.15.0-70/arch/unicore32/kernel 8 /usr/src/linux-headers-4.15.0-70/arch/unicore32/boot/compressed 16 /usr/src/linux-headers-4.15.0-70/arch/unicore32/boot 8 /usr/src/linux-headers-4.15.0-70/arch/unicore32/lib 412 /usr/src/linux-headers-4.15.0-70/arch/unicore32 8 /usr/src/linux-headers-4.15.0-70/arch/score/mm 128 /usr/src/linux-headers-4.15.0-70/arch/score/include/uapi/asm 132 /usr/src/linux-headers-4.15.0-70/arch/score/include/uapi 256 /usr/src/linux-headers-4.15.0-70/arch/score/include/asm 392 /usr/src/linux-headers-4.15.0-70/arch/score/include 8 /usr/src/linux-headers-4.15.0-70/arch/score/kernel 8 /usr/src/linux-headers-4.15.0-70/arch/score/boot 8 /usr/src/linux-headers-4.15.0-70/arch/score/lib 440 /usr/src/linux-headers-4.15.0-70/arch/score 8 /usr/src/linux-headers-4.15.0-70/arch/arm64/net 8 /usr/src/linux-headers-4.15.0-70/arch/arm64/mm 100 /usr/src/linux-headers-4.15.0-70/arch/arm64/include/uapi/asm 104 /usr/src/linux-headers-4.15.0-70/arch/arm64/include/uapi 32 /usr/src/linux-headers-4.15.0-70/arch/arm64/include/asm/xen 896 /usr/src/linux-headers-4.15.0-70/arch/arm64/include/asm 1004 /usr/src/linux-headers-4.15.0-70/arch/arm64/include 8 /usr/src/linux-headers-4.15.0-70/arch/arm64/xen 36 /usr/src/linux-headers-4.15.0-70/arch/arm64/crypto 12 /usr/src/linux-headers-4.15.0-70/arch/arm64/kernel/vdso 8 /usr/src/linux-headers-4.15.0-70/arch/arm64/kernel/probes 32 /usr/src/linux-headers-4.15.0-70/arch/arm64/kernel 8 /usr/src/linux-headers-4.15.0-70/arch/arm64/kvm/hyp 20 /usr/src/linux-headers-4.15.0-70/arch/arm64/kvm 8 /usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/altera 8 /usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/al 8 /usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/apm 8 /usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/qcom 8 /usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/actions 8 /usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/exynos 8 /usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/allwinner 8 /usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/broadcom/stingray 8 /usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/broadcom/northstar2 24 /usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/broadcom 8 /usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/sprd 8 /usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/zte 8 /usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/socionext 8 /usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/freescale 8 /usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/renesas 8 /usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/realtek 8 /usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/nvidia 8 /usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/amd 8 /usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/marvell 8 /usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/mediatek 8 /usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/amlogic 8 /usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/hisilicon 8 /usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/rockchip 8 /usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/cavium 8 /usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/arm 8 /usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/lg 8 /usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts/xilinx 224 /usr/src/linux-headers-4.15.0-70/arch/arm64/boot/dts 236 /usr/src/linux-headers-4.15.0-70/arch/arm64/boot 8 /usr/src/linux-headers-4.15.0-70/arch/arm64/lib 1424 /usr/src/linux-headers-4.15.0-70/arch/arm64 8 /usr/src/linux-headers-4.15.0-70/arch/mn10300/oprofile 32 /usr/src/linux-headers-4.15.0-70/arch/mn10300/proc-mn103e010/include/proc 36 /usr/src/linux-headers-4.15.0-70/arch/mn10300/proc-mn103e010/include 44 /usr/src/linux-headers-4.15.0-70/arch/mn10300/proc-mn103e010 40 /usr/src/linux-headers-4.15.0-70/arch/mn10300/unit-asb2364/include/unit 44 /usr/src/linux-headers-4.15.0-70/arch/mn10300/unit-asb2364/include 52 /usr/src/linux-headers-4.15.0-70/arch/mn10300/unit-asb2364 20 /usr/src/linux-headers-4.15.0-70/arch/mn10300/unit-asb2305/include/unit 24 /usr/src/linux-headers-4.15.0-70/arch/mn10300/unit-asb2305/include 32 /usr/src/linux-headers-4.15.0-70/arch/mn10300/unit-asb2305 16 /usr/src/linux-headers-4.15.0-70/arch/mn10300/mm 140 /usr/src/linux-headers-4.15.0-70/arch/mn10300/include/uapi/asm 144 /usr/src/linux-headers-4.15.0-70/arch/mn10300/include/uapi 464 /usr/src/linux-headers-4.15.0-70/arch/mn10300/include/asm 612 /usr/src/linux-headers-4.15.0-70/arch/mn10300/include 8 /usr/src/linux-headers-4.15.0-70/arch/mn10300/kernel 12 /usr/src/linux-headers-4.15.0-70/arch/mn10300/boot/compressed 24 /usr/src/linux-headers-4.15.0-70/arch/mn10300/boot 44 /usr/src/linux-headers-4.15.0-70/arch/mn10300/proc-mn2ws0050/include/proc 48 /usr/src/linux-headers-4.15.0-70/arch/mn10300/proc-mn2ws0050/include 56 /usr/src/linux-headers-4.15.0-70/arch/mn10300/proc-mn2ws0050 8 /usr/src/linux-headers-4.15.0-70/arch/mn10300/lib 28 /usr/src/linux-headers-4.15.0-70/arch/mn10300/unit-asb2303/include/unit 32 /usr/src/linux-headers-4.15.0-70/arch/mn10300/unit-asb2303/include 40 /usr/src/linux-headers-4.15.0-70/arch/mn10300/unit-asb2303 928 /usr/src/linux-headers-4.15.0-70/arch/mn10300 8 /usr/src/linux-headers-4.15.0-70/arch/hexagon/mm 60 /usr/src/linux-headers-4.15.0-70/arch/hexagon/include/uapi/asm 64 /usr/src/linux-headers-4.15.0-70/arch/hexagon/include/uapi 248 /usr/src/linux-headers-4.15.0-70/arch/hexagon/include/asm 316 /usr/src/linux-headers-4.15.0-70/arch/hexagon/include 8 /usr/src/linux-headers-4.15.0-70/arch/hexagon/kernel 8 /usr/src/linux-headers-4.15.0-70/arch/hexagon/lib 352 /usr/src/linux-headers-4.15.0-70/arch/hexagon 8 /usr/src/linux-headers-4.15.0-70/arch/sparc/oprofile 8 /usr/src/linux-headers-4.15.0-70/arch/sparc/power 12 /usr/src/linux-headers-4.15.0-70/arch/sparc/vdso 8 /usr/src/linux-headers-4.15.0-70/arch/sparc/prom 8 /usr/src/linux-headers-4.15.0-70/arch/sparc/math-emu 8 /usr/src/linux-headers-4.15.0-70/arch/sparc/net 8 /usr/src/linux-headers-4.15.0-70/arch/sparc/mm 264 /usr/src/linux-headers-4.15.0-70/arch/sparc/include/uapi/asm 268 /usr/src/linux-headers-4.15.0-70/arch/sparc/include/uapi 1416 /usr/src/linux-headers-4.15.0-70/arch/sparc/include/asm 1688 /usr/src/linux-headers-4.15.0-70/arch/sparc/include 8 /usr/src/linux-headers-4.15.0-70/arch/sparc/crypto 8 /usr/src/linux-headers-4.15.0-70/arch/sparc/kernel 12 /usr/src/linux-headers-4.15.0-70/arch/sparc/boot 8 /usr/src/linux-headers-4.15.0-70/arch/sparc/lib 1816 /usr/src/linux-headers-4.15.0-70/arch/sparc 8 /usr/src/linux-headers-4.15.0-70/arch/xtensa/oprofile 8 /usr/src/linux-headers-4.15.0-70/arch/xtensa/mm 128 /usr/src/linux-headers-4.15.0-70/arch/xtensa/include/uapi/asm 132 /usr/src/linux-headers-4.15.0-70/arch/xtensa/include/uapi 364 /usr/src/linux-headers-4.15.0-70/arch/xtensa/include/asm 500 /usr/src/linux-headers-4.15.0-70/arch/xtensa/include 48 /usr/src/linux-headers-4.15.0-70/arch/xtensa/variants/dc233c/include/variant 52 /usr/src/linux-headers-4.15.0-70/arch/xtensa/variants/dc233c/include 56 /usr/src/linux-headers-4.15.0-70/arch/xtensa/variants/dc233c 28 /usr/src/linux-headers-4.15.0-70/arch/xtensa/variants/fsf/include/variant 32 /usr/src/linux-headers-4.15.0-70/arch/xtensa/variants/fsf/include 36 /usr/src/linux-headers-4.15.0-70/arch/xtensa/variants/fsf 56 /usr/src/linux-headers-4.15.0-70/arch/xtensa/variants/test_kc705_hifi/include/variant 60 /usr/src/linux-headers-4.15.0-70/arch/xtensa/variants/test_kc705_hifi/include 64 /usr/src/linux-headers-4.15.0-70/arch/xtensa/variants/test_kc705_hifi 40 /usr/src/linux-headers-4.15.0-70/arch/xtensa/variants/test_mmuhifi_c3/include/variant 44 /usr/src/linux-headers-4.15.0-70/arch/xtensa/variants/test_mmuhifi_c3/include 48 /usr/src/linux-headers-4.15.0-70/arch/xtensa/variants/test_mmuhifi_c3 40 /usr/src/linux-headers-4.15.0-70/arch/xtensa/variants/dc232b/include/variant 44 /usr/src/linux-headers-4.15.0-70/arch/xtensa/variants/dc232b/include 48 /usr/src/linux-headers-4.15.0-70/arch/xtensa/variants/dc232b 52 /usr/src/linux-headers-4.15.0-70/arch/xtensa/variants/csp/include/variant 56 /usr/src/linux-headers-4.15.0-70/arch/xtensa/variants/csp/include 60 /usr/src/linux-headers-4.15.0-70/arch/xtensa/variants/csp 48 /usr/src/linux-headers-4.15.0-70/arch/xtensa/variants/de212/include/variant 52 /usr/src/linux-headers-4.15.0-70/arch/xtensa/variants/de212/include 56 /usr/src/linux-headers-4.15.0-70/arch/xtensa/variants/de212 372 /usr/src/linux-headers-4.15.0-70/arch/xtensa/variants 8 /usr/src/linux-headers-4.15.0-70/arch/xtensa/kernel 8 /usr/src/linux-headers-4.15.0-70/arch/xtensa/boot/boot-redboot 8 /usr/src/linux-headers-4.15.0-70/arch/xtensa/boot/boot-elf 8 /usr/src/linux-headers-4.15.0-70/arch/xtensa/boot/lib 8 /usr/src/linux-headers-4.15.0-70/arch/xtensa/boot/dts 40 /usr/src/linux-headers-4.15.0-70/arch/xtensa/boot 8 /usr/src/linux-headers-4.15.0-70/arch/xtensa/lib 16 /usr/src/linux-headers-4.15.0-70/arch/xtensa/platforms/xtfpga/include/platform 20 /usr/src/linux-headers-4.15.0-70/arch/xtensa/platforms/xtfpga/include 28 /usr/src/linux-headers-4.15.0-70/arch/xtensa/platforms/xtfpga 16 /usr/src/linux-headers-4.15.0-70/arch/xtensa/platforms/iss/include/platform 20 /usr/src/linux-headers-4.15.0-70/arch/xtensa/platforms/iss/include 28 /usr/src/linux-headers-4.15.0-70/arch/xtensa/platforms/iss 12 /usr/src/linux-headers-4.15.0-70/arch/xtensa/platforms/xt2000/include/platform 16 /usr/src/linux-headers-4.15.0-70/arch/xtensa/platforms/xt2000/include 24 /usr/src/linux-headers-4.15.0-70/arch/xtensa/platforms/xt2000 84 /usr/src/linux-headers-4.15.0-70/arch/xtensa/platforms 1060 /usr/src/linux-headers-4.15.0-70/arch/xtensa 8 /usr/src/linux-headers-4.15.0-70/arch/sh/oprofile 8 /usr/src/linux-headers-4.15.0-70/arch/sh/lib64 8 /usr/src/linux-headers-4.15.0-70/arch/sh/cchips/hd6446x 16 /usr/src/linux-headers-4.15.0-70/arch/sh/cchips 8 /usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-microdev 12 /usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-highlander 8 /usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-kfr2r09 8 /usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-sdk7786 8 /usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-se/770x 8 /usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-se/7343 8 /usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-se/7206 8 /usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-se/7724 8 /usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-se/7722 8 /usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-se/7721 8 /usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-se/7751 8 /usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-se/7780 72 /usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-se 12 /usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-rsk 8 /usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-dreamcast 8 /usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-landisk 12 /usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-sdk7780 12 /usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-migor 8 /usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-cayman 8 /usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-ap325rxa 8 /usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-sh7763rdp 8 /usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-ecovec24 8 /usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-hp6xx 8 /usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-x3proto 12 /usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-r2d 8 /usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-lboxre2 8 /usr/src/linux-headers-4.15.0-70/arch/sh/boards/mach-sh03 256 /usr/src/linux-headers-4.15.0-70/arch/sh/boards 8 /usr/src/linux-headers-4.15.0-70/arch/sh/drivers/superhyway 12 /usr/src/linux-headers-4.15.0-70/arch/sh/drivers/dma 8 /usr/src/linux-headers-4.15.0-70/arch/sh/drivers/pci 40 /usr/src/linux-headers-4.15.0-70/arch/sh/drivers 8 /usr/src/linux-headers-4.15.0-70/arch/sh/math-emu 8 /usr/src/linux-headers-4.15.0-70/arch/sh/tools 16 /usr/src/linux-headers-4.15.0-70/arch/sh/mm 28 /usr/src/linux-headers-4.15.0-70/arch/sh/include/cpu-sh5/cpu 32 /usr/src/linux-headers-4.15.0-70/arch/sh/include/cpu-sh5 16 /usr/src/linux-headers-4.15.0-70/arch/sh/include/mach-kfr2r09/mach 20 /usr/src/linux-headers-4.15.0-70/arch/sh/include/mach-kfr2r09 16 /usr/src/linux-headers-4.15.0-70/arch/sh/include/mach-sdk7786/mach 20 /usr/src/linux-headers-4.15.0-70/arch/sh/include/mach-sdk7786 44 /usr/src/linux-headers-4.15.0-70/arch/sh/include/mach-se/mach 48 /usr/src/linux-headers-4.15.0-70/arch/sh/include/mach-se 116 /usr/src/linux-headers-4.15.0-70/arch/sh/include/uapi/asm 120 /usr/src/linux-headers-4.15.0-70/arch/sh/include/uapi 124 /usr/src/linux-headers-4.15.0-70/arch/sh/include/cpu-sh4/cpu 128 /usr/src/linux-headers-4.15.0-70/arch/sh/include/cpu-sh4 52 /usr/src/linux-headers-4.15.0-70/arch/sh/include/cpu-sh3/cpu 56 /usr/src/linux-headers-4.15.0-70/arch/sh/include/cpu-sh3 20 /usr/src/linux-headers-4.15.0-70/arch/sh/include/mach-dreamcast/mach 24 /usr/src/linux-headers-4.15.0-70/arch/sh/include/mach-dreamcast 12 /usr/src/linux-headers-4.15.0-70/arch/sh/include/mach-landisk/mach 16 /usr/src/linux-headers-4.15.0-70/arch/sh/include/mach-landisk 16 /usr/src/linux-headers-4.15.0-70/arch/sh/include/cpu-sh2/cpu 20 /usr/src/linux-headers-4.15.0-70/arch/sh/include/cpu-sh2 8 /usr/src/linux-headers-4.15.0-70/arch/sh/include/mach-migor/mach 12 /usr/src/linux-headers-4.15.0-70/arch/sh/include/mach-migor 48 /usr/src/linux-headers-4.15.0-70/arch/sh/include/cpu-sh2a/cpu 52 /usr/src/linux-headers-4.15.0-70/arch/sh/include/cpu-sh2a 748 /usr/src/linux-headers-4.15.0-70/arch/sh/include/asm 76 /usr/src/linux-headers-4.15.0-70/arch/sh/include/mach-common/mach 80 /usr/src/linux-headers-4.15.0-70/arch/sh/include/mach-common 12 /usr/src/linux-headers-4.15.0-70/arch/sh/include/mach-ecovec24/mach 16 /usr/src/linux-headers-4.15.0-70/arch/sh/include/mach-ecovec24 12 /usr/src/linux-headers-4.15.0-70/arch/sh/include/cpu-sh4a/cpu 16 /usr/src/linux-headers-4.15.0-70/arch/sh/include/cpu-sh4a 28 /usr/src/linux-headers-4.15.0-70/arch/sh/include/cpu-common/cpu 32 /usr/src/linux-headers-4.15.0-70/arch/sh/include/cpu-common 12 /usr/src/linux-headers-4.15.0-70/arch/sh/include/mach-x3proto/mach 16 /usr/src/linux-headers-4.15.0-70/arch/sh/include/mach-x3proto 12 /usr/src/linux-headers-4.15.0-70/arch/sh/include/mach-sh03/mach 16 /usr/src/linux-headers-4.15.0-70/arch/sh/include/mach-sh03 1476 /usr/src/linux-headers-4.15.0-70/arch/sh/include 8 /usr/src/linux-headers-4.15.0-70/arch/sh/kernel/vsyscall 8 /usr/src/linux-headers-4.15.0-70/arch/sh/kernel/cpu/irq 8 /usr/src/linux-headers-4.15.0-70/arch/sh/kernel/cpu/sh4a 8 /usr/src/linux-headers-4.15.0-70/arch/sh/kernel/cpu/sh3 8 /usr/src/linux-headers-4.15.0-70/arch/sh/kernel/cpu/sh4 8 /usr/src/linux-headers-4.15.0-70/arch/sh/kernel/cpu/shmobile 8 /usr/src/linux-headers-4.15.0-70/arch/sh/kernel/cpu/sh5 8 /usr/src/linux-headers-4.15.0-70/arch/sh/kernel/cpu/sh2a 8 /usr/src/linux-headers-4.15.0-70/arch/sh/kernel/cpu/sh2 72 /usr/src/linux-headers-4.15.0-70/arch/sh/kernel/cpu 88 /usr/src/linux-headers-4.15.0-70/arch/sh/kernel 12 /usr/src/linux-headers-4.15.0-70/arch/sh/boot/compressed 8 /usr/src/linux-headers-4.15.0-70/arch/sh/boot/romimage 8 /usr/src/linux-headers-4.15.0-70/arch/sh/boot/dts 36 /usr/src/linux-headers-4.15.0-70/arch/sh/boot 8 /usr/src/linux-headers-4.15.0-70/arch/sh/lib 2016 /usr/src/linux-headers-4.15.0-70/arch/sh 8 /usr/src/linux-headers-4.15.0-70/arch/blackfin/oprofile 12 /usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf609/boards 616 /usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf609/include/mach 620 /usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf609/include 668 /usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf609 12 /usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf538/boards 340 /usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf538/include/mach 344 /usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf538/include 368 /usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf538 12 /usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf548/boards 868 /usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf548/include/mach 872 /usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf548/include 900 /usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf548 12 /usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf533/boards 160 /usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf533/include/mach 164 /usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf533/include 188 /usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf533 12 /usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf561/boards 276 /usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf561/include/mach 280 /usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf561/include 304 /usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf561 8 /usr/src/linux-headers-4.15.0-70/arch/blackfin/mm 12 /usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf518/boards 280 /usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf518/include/mach 284 /usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf518/include 312 /usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf518 84 /usr/src/linux-headers-4.15.0-70/arch/blackfin/include/uapi/asm 88 /usr/src/linux-headers-4.15.0-70/arch/blackfin/include/uapi 608 /usr/src/linux-headers-4.15.0-70/arch/blackfin/include/asm 52 /usr/src/linux-headers-4.15.0-70/arch/blackfin/include/mach-common 752 /usr/src/linux-headers-4.15.0-70/arch/blackfin/include 8 /usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-common 8 /usr/src/linux-headers-4.15.0-70/arch/blackfin/kernel/cplb-nompu 8 /usr/src/linux-headers-4.15.0-70/arch/blackfin/kernel/cplb-mpu 24 /usr/src/linux-headers-4.15.0-70/arch/blackfin/kernel 12 /usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf527/boards 344 /usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf527/include/mach 348 /usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf527/include 376 /usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf527 12 /usr/src/linux-headers-4.15.0-70/arch/blackfin/boot 12 /usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf537/boards 348 /usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf537/include/mach 352 /usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf537/include 376 /usr/src/linux-headers-4.15.0-70/arch/blackfin/mach-bf537 8 /usr/src/linux-headers-4.15.0-70/arch/blackfin/lib 4372 /usr/src/linux-headers-4.15.0-70/arch/blackfin 8 /usr/src/linux-headers-4.15.0-70/arch/mips/oprofile 8 /usr/src/linux-headers-4.15.0-70/arch/mips/power 12 /usr/src/linux-headers-4.15.0-70/arch/mips/vdso 8 /usr/src/linux-headers-4.15.0-70/arch/mips/loongson32/common 8 /usr/src/linux-headers-4.15.0-70/arch/mips/loongson32/ls1b 8 /usr/src/linux-headers-4.15.0-70/arch/mips/loongson32/ls1c 36 /usr/src/linux-headers-4.15.0-70/arch/mips/loongson32 12 /usr/src/linux-headers-4.15.0-70/arch/mips/generic 8 /usr/src/linux-headers-4.15.0-70/arch/mips/fw/sni 8 /usr/src/linux-headers-4.15.0-70/arch/mips/fw/cfe 8 /usr/src/linux-headers-4.15.0-70/arch/mips/fw/lib 8 /usr/src/linux-headers-4.15.0-70/arch/mips/fw/arc 36 /usr/src/linux-headers-4.15.0-70/arch/mips/fw 12 /usr/src/linux-headers-4.15.0-70/arch/mips/ath79 8 /usr/src/linux-headers-4.15.0-70/arch/mips/txx9/rbtx4938 8 /usr/src/linux-headers-4.15.0-70/arch/mips/txx9/generic 8 /usr/src/linux-headers-4.15.0-70/arch/mips/txx9/rbtx4939 8 /usr/src/linux-headers-4.15.0-70/arch/mips/txx9/rbtx4927 8 /usr/src/linux-headers-4.15.0-70/arch/mips/txx9/jmr3927 52 /usr/src/linux-headers-4.15.0-70/arch/mips/txx9 12 /usr/src/linux-headers-4.15.0-70/arch/mips/bcm63xx/boards 24 /usr/src/linux-headers-4.15.0-70/arch/mips/bcm63xx 8 /usr/src/linux-headers-4.15.0-70/arch/mips/emma/common 8 /usr/src/linux-headers-4.15.0-70/arch/mips/emma/markeins 24 /usr/src/linux-headers-4.15.0-70/arch/mips/emma 12 /usr/src/linux-headers-4.15.0-70/arch/mips/jazz 8 /usr/src/linux-headers-4.15.0-70/arch/mips/cavium-octeon/crypto 8 /usr/src/linux-headers-4.15.0-70/arch/mips/cavium-octeon/executive 28 /usr/src/linux-headers-4.15.0-70/arch/mips/cavium-octeon 8 /usr/src/linux-headers-4.15.0-70/arch/mips/pnx833x/stb22x 8 /usr/src/linux-headers-4.15.0-70/arch/mips/pnx833x/common 24 /usr/src/linux-headers-4.15.0-70/arch/mips/pnx833x 8 /usr/src/linux-headers-4.15.0-70/arch/mips/sgi-ip22 8 /usr/src/linux-headers-4.15.0-70/arch/mips/lantiq/falcon 8 /usr/src/linux-headers-4.15.0-70/arch/mips/lantiq/xway 28 /usr/src/linux-headers-4.15.0-70/arch/mips/lantiq 8 /usr/src/linux-headers-4.15.0-70/arch/mips/mti-malta 8 /usr/src/linux-headers-4.15.0-70/arch/mips/rb532 8 /usr/src/linux-headers-4.15.0-70/arch/mips/sni 8 /usr/src/linux-headers-4.15.0-70/arch/mips/math-emu 8 /usr/src/linux-headers-4.15.0-70/arch/mips/net 8 /usr/src/linux-headers-4.15.0-70/arch/mips/tools 8 /usr/src/linux-headers-4.15.0-70/arch/mips/mm 264 /usr/src/linux-headers-4.15.0-70/arch/mips/include/uapi/asm 268 /usr/src/linux-headers-4.15.0-70/arch/mips/include/uapi 12 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/fw/cfe 12 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/fw/arc 32 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/fw 116 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/sn/sn0 256 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/sn 124 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/txx9 20 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/emma 16 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-db1x00 8 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-vr41xx 156 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-au1x00 52 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-jz4740 24 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-ar7 8 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-ralink/rt3883 8 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-ralink/mt7620 8 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-ralink/rt305x 8 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-ralink/rt288x 8 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-ralink/mt7621 92 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-ralink 8 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-xilfpga 12 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-lasat 56 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-generic 192 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-bcm63xx 16 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-bcm47xx 20 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-cobalt 104 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-pmcs-msp71xx 16 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-netlogic 2300 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/octeon 20 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-bmips 16 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-jazz 12 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-dec 24 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-ip32 16 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-ip22 40 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-malta 8 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-emma2rh 16 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/xtalk 16 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-ath25 44 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-ip27 80 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/dec 12 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-sibyte 28 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/ip32 52 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-loongson32 16 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-tx39xx 16 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-paravirt 60 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mips-boards 48 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-ath79 28 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-tx49xx 44 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/vr41xx 36 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-pnx833x 8 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-pistachio 20 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-pic32 16 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-rm 64 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/sgi 36 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/lasat 68 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/netlogic/xlp-hal 52 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/netlogic/xlr 160 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/netlogic 20 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-lantiq/falcon 20 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-lantiq/xway 52 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-lantiq 32 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-cavium-octeon 408 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/sibyte 80 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-rc32434 16 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-ip28 36 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/pci 24 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-loongson64/cs5536 104 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm/mach-loongson64 6492 /usr/src/linux-headers-4.15.0-70/arch/mips/include/asm 6764 /usr/src/linux-headers-4.15.0-70/arch/mips/include 8 /usr/src/linux-headers-4.15.0-70/arch/mips/alchemy/common 8 /usr/src/linux-headers-4.15.0-70/arch/mips/alchemy/devboards 28 /usr/src/linux-headers-4.15.0-70/arch/mips/alchemy 12 /usr/src/linux-headers-4.15.0-70/arch/mips/paravirt 12 /usr/src/linux-headers-4.15.0-70/arch/mips/bcm47xx 12 /usr/src/linux-headers-4.15.0-70/arch/mips/kernel 8 /usr/src/linux-headers-4.15.0-70/arch/mips/cobalt 8 /usr/src/linux-headers-4.15.0-70/arch/mips/loongson64/common/cs5536 16 /usr/src/linux-headers-4.15.0-70/arch/mips/loongson64/common 8 /usr/src/linux-headers-4.15.0-70/arch/mips/loongson64/loongson-3 8 /usr/src/linux-headers-4.15.0-70/arch/mips/loongson64/lemote-2f 8 /usr/src/linux-headers-4.15.0-70/arch/mips/loongson64/fuloong-2e 52 /usr/src/linux-headers-4.15.0-70/arch/mips/loongson64 8 /usr/src/linux-headers-4.15.0-70/arch/mips/dec/prom 16 /usr/src/linux-headers-4.15.0-70/arch/mips/dec 12 /usr/src/linux-headers-4.15.0-70/arch/mips/ath25 12 /usr/src/linux-headers-4.15.0-70/arch/mips/kvm 8 /usr/src/linux-headers-4.15.0-70/arch/mips/sgi-ip32 12 /usr/src/linux-headers-4.15.0-70/arch/mips/boot/compressed 8 /usr/src/linux-headers-4.15.0-70/arch/mips/boot/tools 8 /usr/src/linux-headers-4.15.0-70/arch/mips/boot/dts/cavium-octeon 8 /usr/src/linux-headers-4.15.0-70/arch/mips/boot/dts/lantiq 8 /usr/src/linux-headers-4.15.0-70/arch/mips/boot/dts/qca 8 /usr/src/linux-headers-4.15.0-70/arch/mips/boot/dts/ni 8 /usr/src/linux-headers-4.15.0-70/arch/mips/boot/dts/xilfpga 8 /usr/src/linux-headers-4.15.0-70/arch/mips/boot/dts/ingenic 8 /usr/src/linux-headers-4.15.0-70/arch/mips/boot/dts/img 8 /usr/src/linux-headers-4.15.0-70/arch/mips/boot/dts/brcm 8 /usr/src/linux-headers-4.15.0-70/arch/mips/boot/dts/pic32 8 /usr/src/linux-headers-4.15.0-70/arch/mips/boot/dts/ralink 8 /usr/src/linux-headers-4.15.0-70/arch/mips/boot/dts/netlogic 8 /usr/src/linux-headers-4.15.0-70/arch/mips/boot/dts/mti 104 /usr/src/linux-headers-4.15.0-70/arch/mips/boot/dts 136 /usr/src/linux-headers-4.15.0-70/arch/mips/boot 8 /usr/src/linux-headers-4.15.0-70/arch/mips/pic32/common 8 /usr/src/linux-headers-4.15.0-70/arch/mips/pic32/pic32mzda 28 /usr/src/linux-headers-4.15.0-70/arch/mips/pic32 12 /usr/src/linux-headers-4.15.0-70/arch/mips/bmips 8 /usr/src/linux-headers-4.15.0-70/arch/mips/vr41xx/common 8 /usr/src/linux-headers-4.15.0-70/arch/mips/vr41xx/casio-e55 8 /usr/src/linux-headers-4.15.0-70/arch/mips/vr41xx/ibm-workpad 32 /usr/src/linux-headers-4.15.0-70/arch/mips/vr41xx 12 /usr/src/linux-headers-4.15.0-70/arch/mips/sgi-ip27 12 /usr/src/linux-headers-4.15.0-70/arch/mips/pmcs-msp71xx 8 /usr/src/linux-headers-4.15.0-70/arch/mips/lib 12 /usr/src/linux-headers-4.15.0-70/arch/mips/pistachio 8 /usr/src/linux-headers-4.15.0-70/arch/mips/lasat/image 20 /usr/src/linux-headers-4.15.0-70/arch/mips/lasat 12 /usr/src/linux-headers-4.15.0-70/arch/mips/ralink 8 /usr/src/linux-headers-4.15.0-70/arch/mips/netlogic/xlr 8 /usr/src/linux-headers-4.15.0-70/arch/mips/netlogic/common 8 /usr/src/linux-headers-4.15.0-70/arch/mips/netlogic/xlp 36 /usr/src/linux-headers-4.15.0-70/arch/mips/netlogic 8 /usr/src/linux-headers-4.15.0-70/arch/mips/sibyte/swarm 8 /usr/src/linux-headers-4.15.0-70/arch/mips/sibyte/common 8 /usr/src/linux-headers-4.15.0-70/arch/mips/sibyte/bcm1480 8 /usr/src/linux-headers-4.15.0-70/arch/mips/sibyte/sb1250 44 /usr/src/linux-headers-4.15.0-70/arch/mips/sibyte 8 /usr/src/linux-headers-4.15.0-70/arch/mips/pci 12 /usr/src/linux-headers-4.15.0-70/arch/mips/jz4740 8 /usr/src/linux-headers-4.15.0-70/arch/mips/ar7 7832 /usr/src/linux-headers-4.15.0-70/arch/mips 8 /usr/src/linux-headers-4.15.0-70/arch/parisc/oprofile 8 /usr/src/linux-headers-4.15.0-70/arch/parisc/math-emu 8 /usr/src/linux-headers-4.15.0-70/arch/parisc/mm 160 /usr/src/linux-headers-4.15.0-70/arch/parisc/include/uapi/asm 164 /usr/src/linux-headers-4.15.0-70/arch/parisc/include/uapi 528 /usr/src/linux-headers-4.15.0-70/arch/parisc/include/asm 696 /usr/src/linux-headers-4.15.0-70/arch/parisc/include 8 /usr/src/linux-headers-4.15.0-70/arch/parisc/kernel 8 /usr/src/linux-headers-4.15.0-70/arch/parisc/boot/compressed 20 /usr/src/linux-headers-4.15.0-70/arch/parisc/boot 8 /usr/src/linux-headers-4.15.0-70/arch/parisc/lib 788 /usr/src/linux-headers-4.15.0-70/arch/parisc 8 /usr/src/linux-headers-4.15.0-70/arch/x86/hyperv 8 /usr/src/linux-headers-4.15.0-70/arch/x86/ia32 8 /usr/src/linux-headers-4.15.0-70/arch/x86/oprofile 8 /usr/src/linux-headers-4.15.0-70/arch/x86/power 8 /usr/src/linux-headers-4.15.0-70/arch/x86/purgatory 8 /usr/src/linux-headers-4.15.0-70/arch/x86/ras 8 /usr/src/linux-headers-4.15.0-70/arch/x86/platform/ts5500 8 /usr/src/linux-headers-4.15.0-70/arch/x86/platform/intel 8 /usr/src/linux-headers-4.15.0-70/arch/x86/platform/ce4100 8 /usr/src/linux-headers-4.15.0-70/arch/x86/platform/scx200 8 /usr/src/linux-headers-4.15.0-70/arch/x86/platform/goldfish 8 /usr/src/linux-headers-4.15.0-70/arch/x86/platform/intel-mid/device_libs 16 /usr/src/linux-headers-4.15.0-70/arch/x86/platform/intel-mid 8 /usr/src/linux-headers-4.15.0-70/arch/x86/platform/efi 8 /usr/src/linux-headers-4.15.0-70/arch/x86/platform/geode 8 /usr/src/linux-headers-4.15.0-70/arch/x86/platform/iris 8 /usr/src/linux-headers-4.15.0-70/arch/x86/platform/olpc 8 /usr/src/linux-headers-4.15.0-70/arch/x86/platform/uv 8 /usr/src/linux-headers-4.15.0-70/arch/x86/platform/atom 8 /usr/src/linux-headers-4.15.0-70/arch/x86/platform/intel-quark 8 /usr/src/linux-headers-4.15.0-70/arch/x86/platform/sfi 128 /usr/src/linux-headers-4.15.0-70/arch/x86/platform 8 /usr/src/linux-headers-4.15.0-70/arch/x86/events/intel 8 /usr/src/linux-headers-4.15.0-70/arch/x86/events/amd 28 /usr/src/linux-headers-4.15.0-70/arch/x86/events 8 /usr/src/linux-headers-4.15.0-70/arch/x86/video 8 /usr/src/linux-headers-4.15.0-70/arch/x86/math-emu 8 /usr/src/linux-headers-4.15.0-70/arch/x86/net 8 /usr/src/linux-headers-4.15.0-70/arch/x86/tools 8 /usr/src/linux-headers-4.15.0-70/arch/x86/mm 288 /usr/src/linux-headers-4.15.0-70/arch/x86/include/uapi/asm 292 /usr/src/linux-headers-4.15.0-70/arch/x86/include/uapi 36 /usr/src/linux-headers-4.15.0-70/arch/x86/include/asm/trace 96 /usr/src/linux-headers-4.15.0-70/arch/x86/include/asm/xen 32 /usr/src/linux-headers-4.15.0-70/arch/x86/include/asm/crypto 272 /usr/src/linux-headers-4.15.0-70/arch/x86/include/asm/uv 48 /usr/src/linux-headers-4.15.0-70/arch/x86/include/asm/fpu 12 /usr/src/linux-headers-4.15.0-70/arch/x86/include/asm/numachip 12 /usr/src/linux-headers-4.15.0-70/arch/x86/include/asm/e820 2444 /usr/src/linux-headers-4.15.0-70/arch/x86/include/asm 2740 /usr/src/linux-headers-4.15.0-70/arch/x86/include 12 /usr/src/linux-headers-4.15.0-70/arch/x86/xen 8 /usr/src/linux-headers-4.15.0-70/arch/x86/crypto/sha1-mb 8 /usr/src/linux-headers-4.15.0-70/arch/x86/crypto/sha256-mb 8 /usr/src/linux-headers-4.15.0-70/arch/x86/crypto/sha512-mb 36 /usr/src/linux-headers-4.15.0-70/arch/x86/crypto 8 /usr/src/linux-headers-4.15.0-70/arch/x86/kernel/kprobes 8 /usr/src/linux-headers-4.15.0-70/arch/x86/kernel/apic 8 /usr/src/linux-headers-4.15.0-70/arch/x86/kernel/acpi 8 /usr/src/linux-headers-4.15.0-70/arch/x86/kernel/cpu/mcheck 8 /usr/src/linux-headers-4.15.0-70/arch/x86/kernel/cpu/mtrr 8 /usr/src/linux-headers-4.15.0-70/arch/x86/kernel/cpu/microcode 36 /usr/src/linux-headers-4.15.0-70/arch/x86/kernel/cpu 8 /usr/src/linux-headers-4.15.0-70/arch/x86/kernel/fpu 80 /usr/src/linux-headers-4.15.0-70/arch/x86/kernel 8 /usr/src/linux-headers-4.15.0-70/arch/x86/realmode/rm 16 /usr/src/linux-headers-4.15.0-70/arch/x86/realmode 12 /usr/src/linux-headers-4.15.0-70/arch/x86/kvm 16 /usr/src/linux-headers-4.15.0-70/arch/x86/entry/vdso 8 /usr/src/linux-headers-4.15.0-70/arch/x86/entry/vsyscall 16 /usr/src/linux-headers-4.15.0-70/arch/x86/entry/syscalls 48 /usr/src/linux-headers-4.15.0-70/arch/x86/entry 12 /usr/src/linux-headers-4.15.0-70/arch/x86/boot/compressed 32 /usr/src/linux-headers-4.15.0-70/arch/x86/boot 12 /usr/src/linux-headers-4.15.0-70/arch/x86/um/vdso 8 /usr/src/linux-headers-4.15.0-70/arch/x86/um/os-Linux 32 /usr/src/linux-headers-4.15.0-70/arch/x86/um 8 /usr/src/linux-headers-4.15.0-70/arch/x86/lib 8 /usr/src/linux-headers-4.15.0-70/arch/x86/pci 3428 /usr/src/linux-headers-4.15.0-70/arch/x86 8 /usr/src/linux-headers-4.15.0-70/arch/riscv/mm 48 /usr/src/linux-headers-4.15.0-70/arch/riscv/include/uapi/asm 52 /usr/src/linux-headers-4.15.0-70/arch/riscv/include/uapi 244 /usr/src/linux-headers-4.15.0-70/arch/riscv/include/asm 300 /usr/src/linux-headers-4.15.0-70/arch/riscv/include 8 /usr/src/linux-headers-4.15.0-70/arch/riscv/kernel/vdso 16 /usr/src/linux-headers-4.15.0-70/arch/riscv/kernel 8 /usr/src/linux-headers-4.15.0-70/arch/riscv/lib 348 /usr/src/linux-headers-4.15.0-70/arch/riscv 8 /usr/src/linux-headers-4.15.0-70/arch/openrisc/mm 32 /usr/src/linux-headers-4.15.0-70/arch/openrisc/include/uapi/asm 36 /usr/src/linux-headers-4.15.0-70/arch/openrisc/include/uapi 24 /usr/src/linux-headers-4.15.0-70/arch/openrisc/include/asm/bitops 228 /usr/src/linux-headers-4.15.0-70/arch/openrisc/include/asm 268 /usr/src/linux-headers-4.15.0-70/arch/openrisc/include 8 /usr/src/linux-headers-4.15.0-70/arch/openrisc/kernel 8 /usr/src/linux-headers-4.15.0-70/arch/openrisc/boot/dts 12 /usr/src/linux-headers-4.15.0-70/arch/openrisc/boot 8 /usr/src/linux-headers-4.15.0-70/arch/openrisc/lib 320 /usr/src/linux-headers-4.15.0-70/arch/openrisc 8 /usr/src/linux-headers-4.15.0-70/arch/frv/mm 152 /usr/src/linux-headers-4.15.0-70/arch/frv/include/uapi/asm 156 /usr/src/linux-headers-4.15.0-70/arch/frv/include/uapi 456 /usr/src/linux-headers-4.15.0-70/arch/frv/include/asm 616 /usr/src/linux-headers-4.15.0-70/arch/frv/include 8 /usr/src/linux-headers-4.15.0-70/arch/frv/kernel 8 /usr/src/linux-headers-4.15.0-70/arch/frv/boot 8 /usr/src/linux-headers-4.15.0-70/arch/frv/lib 8 /usr/src/linux-headers-4.15.0-70/arch/frv/mb93090-mb00 680 /usr/src/linux-headers-4.15.0-70/arch/frv 8 /usr/src/linux-headers-4.15.0-70/arch/alpha/oprofile 8 /usr/src/linux-headers-4.15.0-70/arch/alpha/math-emu 8 /usr/src/linux-headers-4.15.0-70/arch/alpha/mm 200 /usr/src/linux-headers-4.15.0-70/arch/alpha/include/uapi/asm 204 /usr/src/linux-headers-4.15.0-70/arch/alpha/include/uapi 652 /usr/src/linux-headers-4.15.0-70/arch/alpha/include/asm 860 /usr/src/linux-headers-4.15.0-70/arch/alpha/include 12 /usr/src/linux-headers-4.15.0-70/arch/alpha/kernel 12 /usr/src/linux-headers-4.15.0-70/arch/alpha/boot 8 /usr/src/linux-headers-4.15.0-70/arch/alpha/lib 952 /usr/src/linux-headers-4.15.0-70/arch/alpha 8 /usr/src/linux-headers-4.15.0-70/arch/um/os-Linux/drivers 8 /usr/src/linux-headers-4.15.0-70/arch/um/os-Linux/skas 24 /usr/src/linux-headers-4.15.0-70/arch/um/os-Linux 8 /usr/src/linux-headers-4.15.0-70/arch/um/drivers 16 /usr/src/linux-headers-4.15.0-70/arch/um/include/shared/skas 120 /usr/src/linux-headers-4.15.0-70/arch/um/include/shared 148 /usr/src/linux-headers-4.15.0-70/arch/um/include/asm 272 /usr/src/linux-headers-4.15.0-70/arch/um/include 8 /usr/src/linux-headers-4.15.0-70/arch/um/kernel/skas 16 /usr/src/linux-headers-4.15.0-70/arch/um/kernel 8 /usr/src/linux-headers-4.15.0-70/arch/um/scripts 388 /usr/src/linux-headers-4.15.0-70/arch/um 8 /usr/src/linux-headers-4.15.0-70/arch/m68k/coldfire 8 /usr/src/linux-headers-4.15.0-70/arch/m68k/emu 8 /usr/src/linux-headers-4.15.0-70/arch/m68k/bvme6000 8 /usr/src/linux-headers-4.15.0-70/arch/m68k/sun3/prom 16 /usr/src/linux-headers-4.15.0-70/arch/m68k/sun3 8 /usr/src/linux-headers-4.15.0-70/arch/m68k/atari 8 /usr/src/linux-headers-4.15.0-70/arch/m68k/ifpsp060 8 /usr/src/linux-headers-4.15.0-70/arch/m68k/math-emu 8 /usr/src/linux-headers-4.15.0-70/arch/m68k/tools/amiga 12 /usr/src/linux-headers-4.15.0-70/arch/m68k/tools 8 /usr/src/linux-headers-4.15.0-70/arch/m68k/mm 116 /usr/src/linux-headers-4.15.0-70/arch/m68k/include/uapi/asm 120 /usr/src/linux-headers-4.15.0-70/arch/m68k/include/uapi 1180 /usr/src/linux-headers-4.15.0-70/arch/m68k/include/asm 1304 /usr/src/linux-headers-4.15.0-70/arch/m68k/include 8 /usr/src/linux-headers-4.15.0-70/arch/m68k/amiga 24 /usr/src/linux-headers-4.15.0-70/arch/m68k/kernel 8 /usr/src/linux-headers-4.15.0-70/arch/m68k/q40 8 /usr/src/linux-headers-4.15.0-70/arch/m68k/mvme16x 8 /usr/src/linux-headers-4.15.0-70/arch/m68k/fpsp040 8 /usr/src/linux-headers-4.15.0-70/arch/m68k/sun3x 8 /usr/src/linux-headers-4.15.0-70/arch/m68k/68000 8 /usr/src/linux-headers-4.15.0-70/arch/m68k/lib 8 /usr/src/linux-headers-4.15.0-70/arch/m68k/mvme147 8 /usr/src/linux-headers-4.15.0-70/arch/m68k/apollo 8 /usr/src/linux-headers-4.15.0-70/arch/m68k/hp300 8 /usr/src/linux-headers-4.15.0-70/arch/m68k/mac 1568 /usr/src/linux-headers-4.15.0-70/arch/m68k 16 /usr/src/linux-headers-4.15.0-70/arch/nios2/platform 8 /usr/src/linux-headers-4.15.0-70/arch/nios2/mm 36 /usr/src/linux-headers-4.15.0-70/arch/nios2/include/uapi/asm 40 /usr/src/linux-headers-4.15.0-70/arch/nios2/include/uapi 164 /usr/src/linux-headers-4.15.0-70/arch/nios2/include/asm 208 /usr/src/linux-headers-4.15.0-70/arch/nios2/include 8 /usr/src/linux-headers-4.15.0-70/arch/nios2/kernel 8 /usr/src/linux-headers-4.15.0-70/arch/nios2/boot/compressed 20 /usr/src/linux-headers-4.15.0-70/arch/nios2/boot 8 /usr/src/linux-headers-4.15.0-70/arch/nios2/lib 288 /usr/src/linux-headers-4.15.0-70/arch/nios2 8 /usr/src/linux-headers-4.15.0-70/arch/arc/oprofile 12 /usr/src/linux-headers-4.15.0-70/arch/arc/plat-hsdk 20 /usr/src/linux-headers-4.15.0-70/arch/arc/plat-eznps/include/plat 24 /usr/src/linux-headers-4.15.0-70/arch/arc/plat-eznps/include 36 /usr/src/linux-headers-4.15.0-70/arch/arc/plat-eznps 8 /usr/src/linux-headers-4.15.0-70/arch/arc/mm 48 /usr/src/linux-headers-4.15.0-70/arch/arc/include/uapi/asm 52 /usr/src/linux-headers-4.15.0-70/arch/arc/include/uapi 388 /usr/src/linux-headers-4.15.0-70/arch/arc/include/asm 444 /usr/src/linux-headers-4.15.0-70/arch/arc/include 8 /usr/src/linux-headers-4.15.0-70/arch/arc/kernel 8 /usr/src/linux-headers-4.15.0-70/arch/arc/boot/dts 16 /usr/src/linux-headers-4.15.0-70/arch/arc/boot 8 /usr/src/linux-headers-4.15.0-70/arch/arc/plat-sim 12 /usr/src/linux-headers-4.15.0-70/arch/arc/plat-tb10x 8 /usr/src/linux-headers-4.15.0-70/arch/arc/lib 12 /usr/src/linux-headers-4.15.0-70/arch/arc/plat-axs10x 604 /usr/src/linux-headers-4.15.0-70/arch/arc 8 /usr/src/linux-headers-4.15.0-70/arch/c6x/mm 36 /usr/src/linux-headers-4.15.0-70/arch/c6x/include/uapi/asm 40 /usr/src/linux-headers-4.15.0-70/arch/c6x/include/uapi 172 /usr/src/linux-headers-4.15.0-70/arch/c6x/include/asm 216 /usr/src/linux-headers-4.15.0-70/arch/c6x/include 8 /usr/src/linux-headers-4.15.0-70/arch/c6x/kernel 8 /usr/src/linux-headers-4.15.0-70/arch/c6x/boot/dts 16 /usr/src/linux-headers-4.15.0-70/arch/c6x/boot 8 /usr/src/linux-headers-4.15.0-70/arch/c6x/lib 12 /usr/src/linux-headers-4.15.0-70/arch/c6x/platforms 280 /usr/src/linux-headers-4.15.0-70/arch/c6x 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-oxnas 8 /usr/src/linux-headers-4.15.0-70/arch/arm/oprofile 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-tegra 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-qcom 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-hisi 8 /usr/src/linux-headers-4.15.0-70/arch/arm/vdso 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-nomadik 8 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-uniphier 16 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-at91 8 /usr/src/linux-headers-4.15.0-70/arch/arm/plat-iop 32 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-footbridge/include/mach 36 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-footbridge/include 52 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-footbridge 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-nspire 104 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-s3c24xx/include/mach 108 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-s3c24xx/include 136 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-s3c24xx 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-rockchip 16 /usr/src/linux-headers-4.15.0-70/arch/arm/plat-pxa/include/plat 20 /usr/src/linux-headers-4.15.0-70/arch/arm/plat-pxa/include 32 /usr/src/linux-headers-4.15.0-70/arch/arm/plat-pxa 48 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-lpc32xx/include/mach 52 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-lpc32xx/include 64 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-lpc32xx 40 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-rpc/include/mach 44 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-rpc/include 56 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-rpc 76 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-iop13xx/include/mach 80 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-iop13xx/include 96 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-iop13xx 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-artpec 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-prima2 12 /usr/src/linux-headers-4.15.0-70/arch/arm/common 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-mediatek 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-mv78xx0 20 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-spear/include/mach 24 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-spear/include 36 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-spear 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-berlin 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-digicolor 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-mvebu 28 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-ebsa110/include/mach 32 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-ebsa110/include 44 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-ebsa110 32 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-ep93xx/include/mach 36 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-ep93xx/include 52 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-ep93xx 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-sti 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-lpc18xx 48 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-iop32x/include/mach 52 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-iop32x/include 68 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-iop32x 32 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-dove/include/mach 36 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-dove/include 52 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-dove 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-ux500 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-integrator 32 /usr/src/linux-headers-4.15.0-70/arch/arm/plat-orion/include/plat 36 /usr/src/linux-headers-4.15.0-70/arch/arm/plat-orion/include 44 /usr/src/linux-headers-4.15.0-70/arch/arm/plat-orion 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-tango 52 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-w90x900/include/mach 56 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-w90x900/include 72 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-w90x900 8 /usr/src/linux-headers-4.15.0-70/arch/arm/probes/uprobes 8 /usr/src/linux-headers-4.15.0-70/arch/arm/probes/kprobes 24 /usr/src/linux-headers-4.15.0-70/arch/arm/probes 8 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-exynos/include/mach 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-exynos/include 24 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-exynos 8 /usr/src/linux-headers-4.15.0-70/arch/arm/net 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-imx/devices 36 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-imx 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-zynq 20 /usr/src/linux-headers-4.15.0-70/arch/arm/tools 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-sunxi 40 /usr/src/linux-headers-4.15.0-70/arch/arm/mm 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-efm32 96 /usr/src/linux-headers-4.15.0-70/arch/arm/include/uapi/asm 100 /usr/src/linux-headers-4.15.0-70/arch/arm/include/uapi 36 /usr/src/linux-headers-4.15.0-70/arch/arm/include/asm/mach 32 /usr/src/linux-headers-4.15.0-70/arch/arm/include/asm/xen 160 /usr/src/linux-headers-4.15.0-70/arch/arm/include/asm/hardware 1180 /usr/src/linux-headers-4.15.0-70/arch/arm/include/asm 152 /usr/src/linux-headers-4.15.0-70/arch/arm/include/debug 1436 /usr/src/linux-headers-4.15.0-70/arch/arm/include 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-s5pv210 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-meson 40 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-iop33x/include/mach 44 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-iop33x/include 60 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-iop33x 8 /usr/src/linux-headers-4.15.0-70/arch/arm/xen 88 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-davinci/include/mach 92 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-davinci/include 112 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-davinci 52 /usr/src/linux-headers-4.15.0-70/arch/arm/crypto 12 /usr/src/linux-headers-4.15.0-70/arch/arm/kernel 8 /usr/src/linux-headers-4.15.0-70/arch/arm/vfp 224 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-pxa/include/mach 228 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-pxa/include 256 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-pxa 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-zx 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-u300 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-actions 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-moxart 36 /usr/src/linux-headers-4.15.0-70/arch/arm/plat-omap/include/plat 40 /usr/src/linux-headers-4.15.0-70/arch/arm/plat-omap/include 56 /usr/src/linux-headers-4.15.0-70/arch/arm/plat-omap 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-cns3xxx 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-alpine 8 /usr/src/linux-headers-4.15.0-70/arch/arm/nwfpe 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-highbank 16 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-vt8500 8 /usr/src/linux-headers-4.15.0-70/arch/arm/kvm/hyp 20 /usr/src/linux-headers-4.15.0-70/arch/arm/kvm 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-versatile 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-picoxcell 12 /usr/src/linux-headers-4.15.0-70/arch/arm/boot/compressed 12 /usr/src/linux-headers-4.15.0-70/arch/arm/boot/bootp 32 /usr/src/linux-headers-4.15.0-70/arch/arm/boot/dts 72 /usr/src/linux-headers-4.15.0-70/arch/arm/boot 12 /usr/src/linux-headers-4.15.0-70/arch/arm/firmware 116 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-omap1/include/mach 120 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-omap1/include 140 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-omap1 180 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-sa1100/include/mach 184 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-sa1100/include 204 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-sa1100 16 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-bcm 16 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-orion5x 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-shmobile 84 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-ixp4xx/include/mach 88 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-ixp4xx/include 108 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-ixp4xx 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-mmp 16 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-omap2/include/mach 20 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-omap2/include 44 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-omap2 8 /usr/src/linux-headers-4.15.0-70/arch/arm/lib 16 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-stm32 12 /usr/src/linux-headers-4.15.0-70/arch/arm/plat-versatile/include/plat 16 /usr/src/linux-headers-4.15.0-70/arch/arm/plat-versatile/include 28 /usr/src/linux-headers-4.15.0-70/arch/arm/plat-versatile 16 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-vexpress 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-clps711x 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-gemini 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-mxs 44 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-netx/include/mach 48 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-netx/include 64 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-netx 144 /usr/src/linux-headers-4.15.0-70/arch/arm/plat-samsung/include/plat 148 /usr/src/linux-headers-4.15.0-70/arch/arm/plat-samsung/include 164 /usr/src/linux-headers-4.15.0-70/arch/arm/plat-samsung 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-keystone 48 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-s3c64xx/include/mach 52 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-s3c64xx/include 72 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-s3c64xx 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-realview 8 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-asm9260 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-axxia 48 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-ks8695/include/mach 52 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-ks8695/include 68 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-ks8695 8 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-aspeed 12 /usr/src/linux-headers-4.15.0-70/arch/arm/mach-socfpga 4784 /usr/src/linux-headers-4.15.0-70/arch/arm 8 /usr/src/linux-headers-4.15.0-70/arch/powerpc/oprofile 8 /usr/src/linux-headers-4.15.0-70/arch/powerpc/perf 8 /usr/src/linux-headers-4.15.0-70/arch/powerpc/sysdev/ge 12 /usr/src/linux-headers-4.15.0-70/arch/powerpc/sysdev/xics 12 /usr/src/linux-headers-4.15.0-70/arch/powerpc/sysdev/xive 44 /usr/src/linux-headers-4.15.0-70/arch/powerpc/sysdev 8 /usr/src/linux-headers-4.15.0-70/arch/powerpc/purgatory 8 /usr/src/linux-headers-4.15.0-70/arch/powerpc/math-emu 8 /usr/src/linux-headers-4.15.0-70/arch/powerpc/net 20 /usr/src/linux-headers-4.15.0-70/arch/powerpc/tools 8 /usr/src/linux-headers-4.15.0-70/arch/powerpc/mm 8 /usr/src/linux-headers-4.15.0-70/arch/powerpc/xmon 232 /usr/src/linux-headers-4.15.0-70/arch/powerpc/include/uapi/asm 236 /usr/src/linux-headers-4.15.0-70/arch/powerpc/include/uapi 32 /usr/src/linux-headers-4.15.0-70/arch/powerpc/include/asm/book3s/32 152 /usr/src/linux-headers-4.15.0-70/arch/powerpc/include/asm/book3s/64 196 /usr/src/linux-headers-4.15.0-70/arch/powerpc/include/asm/book3s 40 /usr/src/linux-headers-4.15.0-70/arch/powerpc/include/asm/nohash/32 36 /usr/src/linux-headers-4.15.0-70/arch/powerpc/include/asm/nohash/64 96 /usr/src/linux-headers-4.15.0-70/arch/powerpc/include/asm/nohash 2448 /usr/src/linux-headers-4.15.0-70/arch/powerpc/include/asm 2688 /usr/src/linux-headers-4.15.0-70/arch/powerpc/include 8 /usr/src/linux-headers-4.15.0-70/arch/powerpc/crypto 8 /usr/src/linux-headers-4.15.0-70/arch/powerpc/kernel/trace 8 /usr/src/linux-headers-4.15.0-70/arch/powerpc/kernel/vdso64 8 /usr/src/linux-headers-4.15.0-70/arch/powerpc/kernel/vdso32 44 /usr/src/linux-headers-4.15.0-70/arch/powerpc/kernel 16 /usr/src/linux-headers-4.15.0-70/arch/powerpc/kvm 28 /usr/src/linux-headers-4.15.0-70/arch/powerpc/boot 8 /usr/src/linux-headers-4.15.0-70/arch/powerpc/lib 12 /usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms/82xx 12 /usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms/83xx 16 /usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms/pseries 12 /usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms/52xx 12 /usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms/pasemi 12 /usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms/40x 12 /usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms/maple 12 /usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms/embedded6xx 12 /usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms/86xx 12 /usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms/amigaone 8 /usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms/4xx 24 /usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms/44x 16 /usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms/8xx 16 /usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms/ps3 12 /usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms/chrp 12 /usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms/powernv 16 /usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms/85xx 12 /usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms/powermac 12 /usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms/512x 8 /usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms/cell/spufs 20 /usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms/cell 304 /usr/src/linux-headers-4.15.0-70/arch/powerpc/platforms 3288 /usr/src/linux-headers-4.15.0-70/arch/powerpc 8 /usr/src/linux-headers-4.15.0-70/arch/ia64/hp/zx1 8 /usr/src/linux-headers-4.15.0-70/arch/ia64/hp/common 12 /usr/src/linux-headers-4.15.0-70/arch/ia64/hp/sim/boot 24 /usr/src/linux-headers-4.15.0-70/arch/ia64/hp/sim 44 /usr/src/linux-headers-4.15.0-70/arch/ia64/hp 8 /usr/src/linux-headers-4.15.0-70/arch/ia64/oprofile 8 /usr/src/linux-headers-4.15.0-70/arch/ia64/dig 24 /usr/src/linux-headers-4.15.0-70/arch/ia64/sn/include/xtalk 36 /usr/src/linux-headers-4.15.0-70/arch/ia64/sn/include 8 /usr/src/linux-headers-4.15.0-70/arch/ia64/sn/kernel/sn2 16 /usr/src/linux-headers-4.15.0-70/arch/ia64/sn/kernel 8 /usr/src/linux-headers-4.15.0-70/arch/ia64/sn/pci/pcibr 16 /usr/src/linux-headers-4.15.0-70/arch/ia64/sn/pci 76 /usr/src/linux-headers-4.15.0-70/arch/ia64/sn 8 /usr/src/linux-headers-4.15.0-70/arch/ia64/mm 236 /usr/src/linux-headers-4.15.0-70/arch/ia64/include/uapi/asm 240 /usr/src/linux-headers-4.15.0-70/arch/ia64/include/uapi 12 /usr/src/linux-headers-4.15.0-70/arch/ia64/include/asm/sn/sn2 440 /usr/src/linux-headers-4.15.0-70/arch/ia64/include/asm/sn 16 /usr/src/linux-headers-4.15.0-70/arch/ia64/include/asm/native 56 /usr/src/linux-headers-4.15.0-70/arch/ia64/include/asm/uv 1240 /usr/src/linux-headers-4.15.0-70/arch/ia64/include/asm 1484 /usr/src/linux-headers-4.15.0-70/arch/ia64/include 12 /usr/src/linux-headers-4.15.0-70/arch/ia64/kernel 8 /usr/src/linux-headers-4.15.0-70/arch/ia64/scripts 8 /usr/src/linux-headers-4.15.0-70/arch/ia64/uv/kernel 16 /usr/src/linux-headers-4.15.0-70/arch/ia64/uv 8 /usr/src/linux-headers-4.15.0-70/arch/ia64/lib 8 /usr/src/linux-headers-4.15.0-70/arch/ia64/pci 1716 /usr/src/linux-headers-4.15.0-70/arch/ia64 48356 /usr/src/linux-headers-4.15.0-70/arch 8 /usr/src/linux-headers-4.15.0-70/lib/lzo 8 /usr/src/linux-headers-4.15.0-70/lib/lz4 8 /usr/src/linux-headers-4.15.0-70/lib/reed_solomon 12 /usr/src/linux-headers-4.15.0-70/lib/xz 8 /usr/src/linux-headers-4.15.0-70/lib/zlib_deflate 8 /usr/src/linux-headers-4.15.0-70/lib/zstd 16 /usr/src/linux-headers-4.15.0-70/lib/fonts 8 /usr/src/linux-headers-4.15.0-70/lib/raid6/test 20 /usr/src/linux-headers-4.15.0-70/lib/raid6 8 /usr/src/linux-headers-4.15.0-70/lib/842 8 /usr/src/linux-headers-4.15.0-70/lib/mpi 8 /usr/src/linux-headers-4.15.0-70/lib/zlib_inflate 228 /usr/src/linux-headers-4.15.0-70/lib 16 /usr/src/linux-headers-4.15.0-70/usr 115552 /usr/src/linux-headers-4.15.0-70 56 /usr/src/linux-headers-4.15.0-72-generic/tools/objtool/arch/x86/lib 268 /usr/src/linux-headers-4.15.0-72-generic/tools/objtool/arch/x86 272 /usr/src/linux-headers-4.15.0-72-generic/tools/objtool/arch 4644 /usr/src/linux-headers-4.15.0-72-generic/tools/objtool 4648 /usr/src/linux-headers-4.15.0-72-generic/tools 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hyperv 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/asus/nb 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/asus 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ad5592r 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dcache/word 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/dcache 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/spi/oc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/spi/pxa2xx 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/spi/slave/system 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/spi/slave 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/spi/zynqmp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/spi/axi/spi 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/spi/axi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/spi/lm70 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/spi/dw/mid 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/spi/dw 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/spi/loopback 48 /usr/src/linux-headers-4.15.0-72-generic/include/config/spi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/videobuf/dma 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/videobuf 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/vlan/8021q 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/vlan 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dp83640 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/wimax/debug 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/wimax/i2400m/debug 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/wimax/i2400m 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/wimax 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ezx 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/moxa 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dln2 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/soc/camera 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/soc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/bmp280 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rt2800usb 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/msi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/inotify 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ia32 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nfc/nxp/nci 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/nfc/nxp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nfc/pn533 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nfc/fdp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nfc/nci 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nfc/st/nci 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/nfc/st 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nfc/s3fwrn5 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nfc/pn544 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nfc/microread 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nfc/st21nfca 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nfc/mei 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nfc/mrvl 56 /usr/src/linux-headers-4.15.0-72-generic/include/config/nfc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/udf 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/oprofile/nmi 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/oprofile 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/xor 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nls/codepage 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nls/koi8 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nls/iso8859 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nls/mac 20 /usr/src/linux-headers-4.15.0-72-generic/include/config/nls 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/evm/extra/smack 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/evm/extra 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/evm/attr 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/evm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/tipc/media 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/tipc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/power/reset 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/power 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/8139too 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sgetmask 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/squashfs/file 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/squashfs/fragment/cache 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/squashfs/fragment 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/squashfs/decomp 20 /usr/src/linux-headers-4.15.0-72-generic/include/config/squashfs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rpcsec/gss 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/rpcsec 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ir/nec 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ir/xmp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ir/sharp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ir/ite 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ir/serial 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ir/rc5 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ir/jvc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ir/mce/kbd 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/ir/mce 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ir/sony 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ir/lirc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ir/sanyo 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ir/rc6 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ir/winbond 60 /usr/src/linux-headers-4.15.0-72-generic/include/config/ir 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/it8712f 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dmar 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/bnx2x 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ntb 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fs/dax 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fs/posix 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/fs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ksdazzle 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/kprobe 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/zx 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/perf/events/intel 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/perf/events 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/perf 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/no/hz 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/no 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ms5611 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/devtmpfs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rt2800pci 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/swiotlb 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/battery/twl4030 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/battery/bq27xxx 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/battery/gauge 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/battery 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/b44/pcicore 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/b44/pci 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/b44 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/scif 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rtc/intf 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rtc/systohc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rtc/mc146818 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rtc/i2c/and 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/rtc/i2c 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rtc/hctosys 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rtc/drv/rv3029 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rtc/drv/m41t80 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rtc/drv/ds1307 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rtc/drv/hid/sensor 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/rtc/drv/hid 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rtc/drv/ds3232 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rtc/drv/ds1374 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rtc/drv/ds1685 36 /usr/src/linux-headers-4.15.0-72-generic/include/config/rtc/drv 64 /usr/src/linux-headers-4.15.0-72-generic/include/config/rtc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/keyboard/gpio 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/keyboard/tm2 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/keyboard/dlink 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/keyboard/cros 20 /usr/src/linux-headers-4.15.0-72-generic/include/config/keyboard 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/crc/itu 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/crc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hdlc/raw 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/hdlc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nft/masq 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nft/dup 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nft/set 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nft/reject 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nft/fib 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nft/redir 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nft/fwd 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nft/chain/route 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nft/chain/nat 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/nft/chain 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nft/bridge 48 /usr/src/linux-headers-4.15.0-72-generic/include/config/nft 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/adfs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/vop 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/da9062 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/vmivme 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/max63xx 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/at76c50x 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ucsi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/lustre 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ibm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/altera/pr/ip 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/altera/pr 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/altera 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/firewire 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/unixware 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/tps68470/pmic 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/tps68470 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/int340x 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/cx 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/gpio/ml 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/gpio/gpio 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/gpio/generic 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/gpio/janz 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/gpio/crystal 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/gpio/104/dio 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/gpio/104/idi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/gpio/104/idio 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/gpio/104 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/gpio/whiskey 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/gpio/pci/idio 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/gpio/pci 52 /usr/src/linux-headers-4.15.0-72-generic/include/config/gpio 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/cardman 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rfd 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mcs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/brcmfmac/proto 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/brcmfmac 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/kxsd9 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/generic/msi/irq 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/generic/msi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/generic/calibrate 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/generic/irq/effective/aff 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/generic/irq/effective 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/generic/irq/matrix 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/generic/irq/reservation 20 /usr/src/linux-headers-4.15.0-72-generic/include/config/generic/irq 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/generic/strnlen 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/generic/adc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/generic/pending 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/generic/net 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/generic/time 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/generic/early 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/generic/clockevents/min 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/generic/clockevents 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/generic/isa 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/generic/strncpy/from 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/generic/strncpy 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/generic/cmos 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/generic/smp/idle 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/generic/smp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/generic/cpu 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/generic/find/first 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/generic/find 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/generic/pci 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/generic/bug/relative 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/generic/bug 116 /usr/src/linux-headers-4.15.0-72-generic/include/config/generic 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/htc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/stack 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/raid 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dp83848 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rdma 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/memstick/tifm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/memstick/jmicron 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/memstick/realtek 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/memstick 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rt2800/lib 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/rt2800 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ali 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/interval 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fw/cfg 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fw/loader/user 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/fw/loader 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/fw 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/defconfig 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/io/delay/type 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/io/delay 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/io 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/grace 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/has/ioport 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/has 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/signed/pe/file 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/signed/pe 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/signed 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ksz884x 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/lnet/xprt 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/lnet/max 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/lnet 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hysdn 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/cfq/group 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/cfq 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/w83627hf 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/aurora 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/key/dh 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/key 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/pcspkr 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mmu 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/smartjoyplus 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/processor 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/misdn 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/inline/write/unlock 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/inline/write 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/inline/read/unlock 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/inline/read 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/inline/spin/unlock 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/inline/spin 28 /usr/src/linux-headers-4.15.0-72-generic/include/config/inline 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/alienware 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/legacy/pty 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/legacy/vsyscall 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/legacy 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mpl115 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/file 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rtl 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sysfs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/device 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/da9063 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/cio 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/modify/ldt 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/modify 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/wm831x 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/intel/soc/pmic/chtdc 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/intel/soc/pmic 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/intel/soc/dts/iosf 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/intel/soc/dts 20 /usr/src/linux-headers-4.15.0-72-generic/include/config/intel/soc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/intel/turbo/max 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/intel/turbo 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/intel/iommu/floppy 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/intel/iommu 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/intel/bxtwc/pmic 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/intel/bxtwc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/intel/pch 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/intel/pmc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/intel/bxt/pmic 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/intel/bxt 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/intel/wmi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/intel/hid 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/intel/punit 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/intel/th 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/intel/mic/x100 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/intel/mic 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/intel/cht 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/intel/int0002 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/intel/mei 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/intel/xway 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/intel/ish 108 /usr/src/linux-headers-4.15.0-72-generic/include/config/intel 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sw 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fwtty/max/total 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fwtty/max/card 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/fwtty/max 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/fwtty 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/wil6210/isr 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/wil6210 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/max8925 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/lzo 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/lp8788 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/v4l2/mem2mem 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/v4l2/flash/led 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/v4l2/flash 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/v4l2 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/efs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/actisys 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/afs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rfs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hsu 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/netlink 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dynamic/ftrace/with 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/dynamic/ftrace 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/dynamic 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/gigaset 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ftrace/mcount 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/ftrace 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/icplus 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nortel 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/thunderbolt 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/network/phy 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/network 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/maxim 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/build 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/gfs2/fs/locking 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/gfs2/fs 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/gfs2 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hugetlb 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/logitech 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/irq/forced 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/irq/domain 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/irq/bypass 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/irq 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/slab/merge 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/slab/freelist 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/slab 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sysvipc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/encrypted 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hibernate 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ebc/c384 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/ebc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/lz4 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sonypi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/initramfs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dragonrise 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mlx5/core/en 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/mlx5/core 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mlx5/en 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/mlx5 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/memory/notifier/error 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/memory/notifier 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/memory/hotplug/default 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/memory/hotplug 20 /usr/src/linux-headers-4.15.0-72-generic/include/config/memory 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sp5100 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nsc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/capi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sys 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fsi/master 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/fsi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/virt/to 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/virt 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sbp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ixgbe 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/cec/platform 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/cec 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/pinctrl 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sxgbe 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rtlphydm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/qnx6fs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nic7018 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/eeepc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/regulator/userspace 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/regulator/qcom 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/regulator/arizona 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/regulator/virtual 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/regulator/fixed 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/regulator/mc13xxx 28 /usr/src/linux-headers-4.15.0-72-generic/include/config/regulator 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rsi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/twl6030 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/notifier/error 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/notifier 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ring/buffer/allow 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/ring/buffer 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/ring 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/microsemi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/orangefs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/context/switch 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/context 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rmi4/f03 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rmi4/2d 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/rmi4 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/bootparam/hardlockup/panic 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/bootparam/hardlockup 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/bootparam/hung/task/panic 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/bootparam/hung/task 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/bootparam/hung 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/bootparam/softlockup/panic 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/bootparam/softlockup 32 /usr/src/linux-headers-4.15.0-72-generic/include/config/bootparam 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/qfmt 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ipw2200 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/vhost 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/b43/pcicore 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/b43/phy 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/b43/bcma 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/b43/buses/bcma/and 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/b43/buses/bcma 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/b43/buses 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/b43/pci 32 /usr/src/linux-headers-4.15.0-72-generic/include/config/b43 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/default/io/delay 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/default/io 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/default/tcp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/default/mmap/min 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/default/mmap 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/default/hung/task 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/default/hung 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/default/security 36 /usr/src/linux-headers-4.15.0-72-generic/include/config/default 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ras 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/printk/safe/log/buf 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/printk/safe/log 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/printk/safe 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/printk 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fmc/write 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/fmc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/logirumblepad2 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/preempt 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/surface/pro3 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/surface/3 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/surface 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/probe 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/detect/hung 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/detect 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/national 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/aim 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/xfrm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/new 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ipmi/device 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ipmi/dmi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ipmi/proc 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/ipmi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hwpoison 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/migrate/vma 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/migrate 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/af/rxrpc 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/af 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/axp20x 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ntfs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/cifs/weak/pw 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/cifs/weak 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/cifs/dfs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/cifs/allow/insecure 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/cifs/allow 24 /usr/src/linux-headers-4.15.0-72-generic/include/config/cifs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/vt/console 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/vt/hw/console 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/vt/hw 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/vt 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/tcp/cong 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/tcp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rc/ati 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/rc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sched/stack/end 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/sched/stack 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sched/mc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sched/omit/frame 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/sched/omit 24 /usr/src/linux-headers-4.15.0-72-generic/include/config/sched 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/uts 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/carl9170 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/netxen 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/zpa2326 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ipc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/spi/nor/use/4k 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/spi/nor/use 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/spi/nor 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/spi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/redboot/directory 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/redboot 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/gpio 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/intel/vr 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/intel 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/complex 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/sm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/nand/diskonchip/probe 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/nand/diskonchip 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/nand/ecc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/nand/denali 20 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/nand 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/latch 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/sbc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/spinand 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/map/bank/width 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/map/bank 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/map 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/cmdline 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/onenand/verify 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/onenand/2x 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/onenand 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/mt81xx 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/block 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/gen 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/scb2 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/qinfo 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/cfi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/ar7 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/ubi/beb 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/ubi/wl 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/ubi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtd/dataflash 152 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtd 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/decnet/nf 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/decnet 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/common/clk/cs2000 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/common/clk 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/common 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hz 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hardlockup/check 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hardlockup/detector 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/hardlockup 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/strict/module 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/strict/kernel 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/strict 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/reset/attack 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/reset/ti 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/reset 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/irtty 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/gro 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ima/default/hash 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/ima/default 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ima/appraise 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ima/measure/pcr 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/ima/measure 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ima/ng 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ima/trusted 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ima/lsm 36 /usr/src/linux-headers-4.15.0-72-generic/include/config/ima 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/can/cc770 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/can/esd 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/can/sja1000 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/can/ems 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/can/janz 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/can/mcba 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/can/m 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/can/8dev 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/can/kvaser 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/can/calc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/can/peak 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/can/softing 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/can/ifi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/can/plx 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/can/c/can 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/can/c 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/can/gs 72 /usr/src/linux-headers-4.15.0-72-generic/include/config/can 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dwc/xlgmac 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/dwc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rtl8192c 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/reed/solomon 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/reed 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/affs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/batman/adv 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/batman 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/alim7101 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/cs4271 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/xtfpga 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/zx 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/generic/dmaengine 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/generic 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/bdw/rt5677 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/bdw 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/kbl/rt5663/rt5514/max98927 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/kbl/rt5663/rt5514 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/kbl/rt5663/max98927 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/kbl/rt5663 20 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/kbl 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/broadwell 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/sst 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/bxt/rt298 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/bxt/da7219/max98357a 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/bxt/da7219 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/bxt 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/haswell 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/bytcr/rt5660 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/bytcr/rt5651 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/bytcr/rt5640 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/bytcr 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/skl/rt286 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/skl/nau88l25/ssm4567 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/skl/nau88l25/max98357a 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/skl/nau88l25 20 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/skl 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/cht/bsw/rt5672 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/cht/bsw/max98090/ti 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/cht/bsw/max98090 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/cht/bsw/rt5645 20 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/cht/bsw 24 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/cht 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/byt/cht/es8316 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/byt/cht/da7213 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/byt/cht 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel/byt 136 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/intel 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/inno 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/pcm512x 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/sti 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/rt5514 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/i2c/and 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/i2c 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/ac97 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/msm8916/wcd 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/msm8916 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/cs42l51 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/adau1761 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/cs42xx8 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/ssm2602 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/imx 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/pcm179x 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/hdmi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/es8328 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/img/parallel 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/img/i2s 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/img/spdif 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/img/pistachio/internal 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/img/pistachio 24 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/img 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/pcm3168a 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/fsl 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/sirf/audio 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/sirf 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/acpi/intel 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/acpi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/amd/cz/rt5645 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/amd/cz 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/amd 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/hdac 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/tlv320aic23 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/adau 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/bt 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/wm8804 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/sigmadsp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc/rt5677 316 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/soc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/pcm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/verbose 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/firewire 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/dynamic 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/fm801/tea575x 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/fm801 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/atiixp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/sb 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/serial 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/via82xx 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/ac97/power/save 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/ac97/power 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/ac97 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/designware 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/compress 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/emu10k1 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/es1968 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/sst/ipc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/sst/atom/hifi2 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/sst/atom 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/sst 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/mixer 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/seq/midi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/seq/hrtimer 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/seq 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/support/old 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/support 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/dma 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/vx 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/synth 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/i2s/hi6210 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/i2s 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/max 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/mpu401 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/usb/caiaq 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/usb 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/oxygen 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/cs46xx/new 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/cs46xx 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/hda/power/save 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/hda/power 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/hda/codec/ca0132 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/hda/codec 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/hda/ext 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/hda/dsp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/hda/patch 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/hda/input/beep 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/hda/input 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/hda/prealloc 44 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/hda 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/simple/card 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/simple 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/opl3/lib 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/opl3 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/jack/input 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/jack 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/atmel 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/proc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/dmaengine 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd/maestro3 560 /usr/src/linux-headers-4.15.0-72-generic/include/config/snd 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/unix 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dmi/scan/machine/non/efi 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/dmi/scan/machine/non 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/dmi/scan/machine 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/dmi/scan 20 /usr/src/linux-headers-4.15.0-72-generic/include/config/dmi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/unwinder/frame 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/unwinder 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/myri10ge 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ib700 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/thinkpad/acpi/hotkey 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/thinkpad/acpi/alsa 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/thinkpad/acpi 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/thinkpad 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ti/am335x 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ti/cpsw 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/ti 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/bch/const 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/bch 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mlx/cpld 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/mlx 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sparse 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hotplug/pci/cpci 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hotplug/pci/acpi 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/hotplug/pci 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/hotplug 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/prism2 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/qcom/spmi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/qcom/vadc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/qcom/hidma 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/qcom 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sensors/ibm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sensors/sch56xx 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sensors/ltc2978 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sensors/mc13783 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sensors/hmc5843 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sensors/via 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sensors/menf21bmc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sensors/dell 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sensors/lis3 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sensors/ntc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sensors/da9052 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sensors/iio 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sensors/acpi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sensors/i5k 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sensors/fam15h 72 /usr/src/linux-headers-4.15.0-72-generic/include/config/sensors 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sctp/default/cookie/hmac 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/sctp/default/cookie 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/sctp/default 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sctp/cookie/hmac 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/sctp/cookie 24 /usr/src/linux-headers-4.15.0-72-generic/include/config/sctp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/irda/fast 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/irda/cache/last 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/irda/cache 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/irda 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usbip/vhci/hc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usbip/vhci/nr 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/usbip/vhci 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/usbip 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/autofs4 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/serial/altera/uart 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/serial/altera 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/serial/8250/runtime 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/serial/8250/share 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/serial/8250/men 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/serial/8250/nr 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/serial/8250/many 24 /usr/src/linux-headers-4.15.0-72-generic/include/config/serial/8250 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/serial/kgdb 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/serial/dev/ctrl 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/serial/dev 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/serial/rp2/nr 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/serial/rp2 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/serial/core 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/serial/fsl 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/serial/men 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/serial/sc16is7xx 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/serial/sccnxp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/serial/arc/nr 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/serial/arc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/serial/uartlite/nr 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/serial/uartlite 92 /usr/src/linux-headers-4.15.0-72-generic/include/config/serial 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/aix 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ina2xx 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/radio 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/das08 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/addi/apci 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/addi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/8255 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/amplc/pc236 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/amplc/dio200 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/amplc/pc263 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/amplc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/gsc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/default/buf/size 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/default/buf/maxsize 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/default/buf 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/default 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/quatech/daqp 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/quatech 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/cb/das16 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/cb 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/ni/daq/dio24 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/ni/daq/700 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/ni/daq 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/ni/labpc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/ni/at 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/ni/mio 28 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/ni 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/adv/pci 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/adv 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/jr3 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/aio/iiro 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/aio/aio12 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/aio 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/contec/pci 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/contec 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/isa 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/icp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/ii 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/misc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/me 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/dyna 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/pcmcia 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/usb 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/pci 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/ke 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi/adl 176 /usr/src/linux-headers-4.15.0-72-generic/include/config/comedi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/exofs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/iwlwifi/device 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/iwlwifi/opmode 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/iwlwifi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/cc10001 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/pps/client 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/pps 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/be2net 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/packet 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sysv 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/jffs2/fs/posix 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/jffs2/fs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/jffs2/cmode 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/jffs2/compression 20 /usr/src/linux-headers-4.15.0-72-generic/include/config/jffs2 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ie6xx 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/parport/not 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/parport/pc 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/parport 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sunrpc/xprt 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/sunrpc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/clz 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/anon 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mpls 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hostap/firmware 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/hostap 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/async/tx 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/async/raid6 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/async 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rds 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dst 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/i6300esb 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/wireless 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/bcm/kona/usb2 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/bcm/kona 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/bcm/net 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/bcm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mspro 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ad525x/dpot 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/ad525x 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/atm/idt77252/use 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/atm/idt77252 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/atm/he/use 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/atm/he 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/atm/fore200e/tx 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/atm/fore200e 28 /usr/src/linux-headers-4.15.0-72-generic/include/config/atm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ptp/1588/clock 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/ptp/1588 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/ptp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/viperboard 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/iommu 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ath5k 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/thread/info/in 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/thread/info 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/thread 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/mod/arch 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/mod 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/perf/events 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/perf/user/stack 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/perf/user 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/perf 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/gcc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/generic 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/stack 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/mixed/breakpoints 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/mixed 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/pcspkr 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/intel 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/dynamic/ftrace/with 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/dynamic/ftrace 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/dynamic 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/ftrace/mcount 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/ftrace 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/irq/exit/on/irq 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/irq/exit/on 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/irq/exit 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/irq/time 20 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/irq 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/memory 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/virt/cpu/accounting 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/virt/cpu 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/virt 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/cmpxchg 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/context 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/ioremap 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/reliable 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/hardlockup/detector 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/hardlockup 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/unstable/sched 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/unstable 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/syscall 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/kprobes/on 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/kprobes 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/hardened/usercopy 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/hardened 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/cc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/exit 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/net 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/regs/and/stack/access 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/regs/and/stack 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/regs/and 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/regs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/efficient/unaligned 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/efficient 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/kernel 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/debug 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/memblock/node 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/memblock 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/kvm/irq 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/kvm/cpu/relax 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/kvm/cpu 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/kvm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/clk 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/dma/api 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/dma 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/ebpf 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/acpi/apei 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/acpi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/copy/thread 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/copy 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/hw 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/c 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/bootmem/info 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/bootmem 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/user/return 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/user 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/arch/huge 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/arch/mmap/rnd/compat 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/arch/mmap/rnd 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/arch/mmap 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/arch/soft 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/arch/vmap 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/arch/compat/mmap 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/arch/compat 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/arch/seccomp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/arch/jump 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/arch/within/stack 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/arch/within 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/arch/transparent/hugepage 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/arch/transparent 60 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/arch 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/rcu/table 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/rcu 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/setup/per/cpu 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/setup/per 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/setup 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/mmiotrace 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/aligned/struct 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/aligned 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/function/graph 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/have/function 388 /usr/src/linux-headers-4.15.0-72-generic/include/config/have 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/vlsi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/integrity/trusted 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/integrity/asymmetric 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/integrity 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hsi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/lru 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/balloon 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ucb1400 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/thrustmaster 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/kgdb/serial 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/kgdb/low/level 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/kgdb/low 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/kgdb 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/tcm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/i2c/cbus 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/i2c/nforce2 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/i2c/parport 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/i2c/pca 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/i2c/diolan 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/i2c/designware 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/i2c/mux 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/i2c/tiny 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/i2c/taos 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/i2c/helper 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/i2c/amd 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/i2c/cht 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/i2c/amd756 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/i2c/robotfuzz 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/i2c/cros/ec 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/i2c/cros 68 /usr/src/linux-headers-4.15.0-72-generic/include/config/i2c 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/macintosh 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/lte 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hwmon 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/holtek 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mlx4/core 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mlx4/en 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/mlx4 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/optimize 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/aic7xxx/reg/pretty 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/aic7xxx/reg 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/aic7xxx/reset/delay 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/aic7xxx/reset 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/aic7xxx/cmds/per 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/aic7xxx/cmds 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/aic7xxx/debug 32 /usr/src/linux-headers-4.15.0-72-generic/include/config/aic7xxx 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sfc/mcdi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sfc/falcon 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/sfc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/lockup 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/check 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/init/env/arg 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/init/env 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/init 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ac97 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/pccard 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/efi/vars 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/efi/runtime 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/efi/capsule 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/efi/dev/path 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/efi/dev 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/efi/signature/list 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/efi/signature 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/efi/bootloader 36 /usr/src/linux-headers-4.15.0-72-generic/include/config/efi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/uprobe 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/platform 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/atari 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/soft/watchdog 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/soft 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/inet6/xfrm/mode 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/inet6/xfrm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/inet6/esp 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/inet6 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/bfq/group 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/bfq 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/zeroplus 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/regmap 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/zlib 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sbc/epx/c3 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/sbc/epx 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sbc/fitpc2 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/sbc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/da9150 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nodes/span/other 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/nodes/span 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/nodes 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/kempld 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/wiznet/bus 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/wiznet/w5100 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/wiznet 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hmm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/wilc1000/hw/oob 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/wilc1000/hw 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/wilc1000 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/thin 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/secondary/trusted 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/secondary 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rionet/tx 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rionet/rx 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/rionet 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/idle/page 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/idle 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fib 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/bpf/jit/always 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/bpf/jit 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/bpf/stream 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/bpf 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/machz 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/instruction 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/calgary/iommu/enabled/by 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/calgary/iommu/enabled 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/calgary/iommu 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/calgary 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/font/acorn 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/font 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/zone 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dp83867 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ncp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/message/loglevel 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/message 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mcb 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/suspend 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sms/usb 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sms/sdio 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sms/siano 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/sms 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/clkbld 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/video/au0828 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/video/ir 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/video/cx18 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/video/ivtv 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/video/v4l2/subdev 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/video/v4l2 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/video/cafe 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/video/saa7146 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/video/fb 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/video/via 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/video/sony/btf 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/video/sony 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/video/em28xx 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/video/mem2mem 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/video/vivid/max 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/video/vivid 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/video/stk1160 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/video/saa7134 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/video/zoran 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/video/sh 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/video/hexium 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/video/pvrusb2 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/video/cx231xx 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/video/cx88/enable 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/video/cx88 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/video/tm6000 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/video/cx25821 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/video/go7007/usb/s2250 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/video/go7007/usb 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/video/go7007 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/video/pci 128 /usr/src/linux-headers-4.15.0-72-generic/include/config/video 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fcoe 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fb/carillo 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fb/savage 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fb/aty128 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fb/intel 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fb/pm2/fifo 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/fb/pm2 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fb/sys 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fb/auo 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fb/cfb 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fb/s3 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fb/tft/agm1264k 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fb/tft/fbtft 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/fb/tft 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fb/cyber2000 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fb/via/x 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/fb/via 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fb/carmine/dram 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/fb/carmine 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fb/mode 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fb/radeon 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fb/sis 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fb/riva 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fb/matrox 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fb/boot/vesa 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/fb/boot 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fb/aty 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fb/nvidia 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fb/mb862xx/pci 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/fb/mb862xx 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fb/deferred 124 /usr/src/linux-headers-4.15.0-72-generic/include/config/fb 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/vmap 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fanotify/access 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/fanotify 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rtl8xxxu 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/smc/ircc 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/smc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/thp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ade7854 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/p54 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ldisc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/via/rhine 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/via 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/cfag12864b 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/chelsio/t4 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/chelsio/t1 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/chelsio 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/associative 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/bsd/process/acct 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/bsd/process 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/bsd 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nvme/target 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/nvme 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/kprobes/on 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/kprobes 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/stm/source 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/stm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hfsplus/fs/posix 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/hfsplus/fs 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/hfsplus 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/high/res 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/high 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/trace/irqflags 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/trace 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hardened 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/need/multiple 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/need/per/cpu/embed/first 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/need/per/cpu/embed 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/need/per/cpu/page/first 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/need/per/cpu/page 20 /usr/src/linux-headers-4.15.0-72-generic/include/config/need/per/cpu 24 /usr/src/linux-headers-4.15.0-72-generic/include/config/need/per 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/need/sg/dma 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/need/sg 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/need/dma/map 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/need/dma 48 /usr/src/linux-headers-4.15.0-72-generic/include/config/need 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ippp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nv 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/extcon/intel/cht 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/extcon/intel 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/extcon/usbc/cros 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/extcon/usbc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/extcon/adc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/extcon/usb 28 /usr/src/linux-headers-4.15.0-72-generic/include/config/extcon 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sony 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ufs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/at803x 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/cc/optimize/for 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/cc/optimize 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/cc/stackprotector 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/cc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dev/dax 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/dev 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/phys/addr/t 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/phys/addr 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/phys 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/netconsole 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nouveau/legacy/ctx 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/nouveau/legacy 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nouveau/debug 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/nouveau 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/it87 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/section/mismatch/warn 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/section/mismatch 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/section 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/logig940 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/base 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fair/group 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/fair 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/videobuf2/dma 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/videobuf2 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/qnx4fs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/b53/spi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/b53/srab 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/b53/mmap 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/b53/mdio 20 /usr/src/linux-headers-4.15.0-72-generic/include/config/b53 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/net/ematch 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/net/udp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/net/team/mode 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/net/team 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/net/packet 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/net/mpls 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/net/ptp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/net/fou/ip 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/net/fou 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/net/l3/master 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/net/l3 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/net/drop 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/net/ipgre 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/net/sch/fq 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/net/sch 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/net/dsa/mv88e6xxx 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/net/dsa/tag/brcm 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/net/dsa/tag 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/net/dsa/smsc/lan9303 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/net/dsa/smsc 24 /usr/src/linux-headers-4.15.0-72-generic/include/config/net/dsa 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/net/act/tunnel 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/net/act 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/net/ip 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/net/rx/busy 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/net/rx 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/net/cls 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/net/9p 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/net/vendor 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/net/poll 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/net/flow 128 /usr/src/linux-headers-4.15.0-72-generic/include/config/net 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/greenasia 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/microchip/ksz/spi 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/microchip/ksz 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/microchip 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/logiwheels 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/twl6040 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtrr/sanitizer/enable 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtrr/sanitizer/spare/reg/nr 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtrr/sanitizer/spare/reg 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtrr/sanitizer/spare 20 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtrr/sanitizer 24 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtrr 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rfkill 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/tekram 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/104/quad 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/104 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/page/table 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/page 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/xillybus 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/devfreq/gov/simple 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/devfreq/gov 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/devfreq 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/cross/memory 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/cross 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sound/oss 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/sound 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/leds/wm831x 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/leds/intel 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/leds/pca955x 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/leds/lp55xx 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/leds/brightness/hw 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/leds/brightness 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/leds/class 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/leds/clevo 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/leds/pca9532 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/leds/trigger/default 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/leds/trigger 48 /usr/src/linux-headers-4.15.0-72-generic/include/config/leds 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nvdimm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/f71808e 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ziirave 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/edd 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/musb/pio 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/musb 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/greybus/bridged 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/greybus 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ttpci 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ip/multiple 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ip/set/bitmap 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ip/set/list 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ip/set/hash 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/ip/set 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ip/route 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ip/fib/trie 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/ip/fib 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ip/vs/pe 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ip/vs/proto/ah 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/ip/vs/proto 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ip/vs/sh/tab 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/ip/vs/sh 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ip/vs/tab 28 /usr/src/linux-headers-4.15.0-72-generic/include/config/ip/vs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ip/nf/arp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ip/nf/match 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ip/nf/target 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/ip/nf 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ip/advanced 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ip/pimsm 88 /usr/src/linux-headers-4.15.0-72-generic/include/config/ip 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/qsemi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/da9055 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/slub/cpu 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/slub/memcg/sysfs 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/slub/memcg 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/slub 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/int3406 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/de2104x 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/amd8111 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fusion/max 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/fusion 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/atlas/ph 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/atlas 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/tifm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/prevent/firmware 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/prevent 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/module/srcversion 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/module/sig 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/module 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/pmc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/split/ptlock 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/split 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/teranetics 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/btrfs/fs/posix 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/btrfs/fs 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/btrfs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/security/perf/events 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/security/perf 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/security/tomoyo/activation 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/security/tomoyo/policy 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/security/tomoyo/max/accept 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/security/tomoyo/max/audit 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/security/tomoyo/max 24 /usr/src/linux-headers-4.15.0-72-generic/include/config/security/tomoyo 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/security/network 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/security/default/display 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/security/default 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/security/apparmor/bootparam 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/security/apparmor/hash 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/security/apparmor 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/security/smack/append 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/security/smack 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/security/selinux/bootparam 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/security/selinux/checkreqprot 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/security/selinux/avc 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/security/selinux 84 /usr/src/linux-headers-4.15.0-72-generic/include/config/security 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mlxsw/core 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mlxsw/spectrum 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/mlxsw 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/menf21bmc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/early/printk 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/early 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/toshiba/bt 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/toshiba 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/input/soc/button 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/input/soc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/input/gpio/tilt 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/input/gpio/rotary 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/input/gpio 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/input/max8997 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/input/drv2665 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/input/da9063 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/input/wm831x 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/input/max8925 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/input/cma3000 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/input/regulator 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/input/e3x0 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/input/axp20x 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/input/ims 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/input/88pm860x 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/input/mc13783 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/input/keyspan 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/input/arizona 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/input/twl6040 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/input/da9055 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/input/atlas 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/input/drv2667 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/input/xen/kbddev 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/input/xen 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/input/max77693 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/input/pcf50633 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/input/ad714x 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/input/palmas 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/input/drv260x 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/input/da9052 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/input/mousedev/screen 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/input/mousedev 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/input/adxl34x 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/input/twl4030 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/input/ff 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/input/ati 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/input/88pm80x 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/input/retu 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/input/ideapad 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/input/pwm 168 /usr/src/linux-headers-4.15.0-72-generic/include/config/input 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dlci 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/load/uefi 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/load 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/quotactl 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/virtio/blk 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/virtio/mmio/cmdline 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/virtio/mmio 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/virtio/vsockets 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/virtio/pci 24 /usr/src/linux-headers-4.15.0-72-generic/include/config/virtio 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/surface3 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/lcd/class 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/lcd 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/liquidio 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nvm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ad/sigma 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/ad 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/blk/sed 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/blk/dev/ram 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/blk/dev/io 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/blk/dev/loop/min 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/blk/dev/loop 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/blk/dev/pciessd 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/blk/dev/dm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/blk/dev/3w/xxxx 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/blk/dev/3w 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/blk/dev/null 40 /usr/src/linux-headers-4.15.0-72-generic/include/config/blk/dev 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/blk/cmdline 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/blk/scsi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/blk/debug 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/blk/mq 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/blk/wbt 68 /usr/src/linux-headers-4.15.0-72-generic/include/config/blk 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/xz/dec 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/xz 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/acquire 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/cpu5 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/tablet/serial 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/tablet/usb 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/tablet 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/pkcs7/message 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/pkcs7/test 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/pkcs7 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fscache 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/compal 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/broadcom 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mma7455 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ultrix 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/lwtunnel 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/clocksource/validate/last 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/clocksource/validate 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/clocksource 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/lockdep 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rtllib/crypto 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/rtllib 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/pcie/dw 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/pcie 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/tasks 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/futex 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/pnfs/file 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/pnfs/flexfile 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/pnfs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/pstore/zlib 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/pstore 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/gpiolib 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/extra 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/paride 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nf/conntrack/netbios 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/nf/conntrack 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nf/dup 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nf/reject 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nf/tables 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nf/defrag 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nf/log 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nf/socket 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nf/ct/proto 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nf/ct/netlink 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/nf/ct 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nf/nat/masquerade 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nf/nat/proto 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nf/nat/snmp 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/nf/nat 64 /usr/src/linux-headers-4.15.0-72-generic/include/config/nf 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/openvswitch 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/amiga 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hdmi/lpe 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/hdmi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/lattice/ecp3 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/lattice 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/litelink 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rtlwifi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ieee802154/at86rf230 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ieee802154/ca8210 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/ieee802154 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dscc4/pci 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/dscc4 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/lirc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/wl1251 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/iosched 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/illegal/pointer 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/illegal 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/cls/u32 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/cls 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rtlhalmac 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/f2fs/fs/posix 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/f2fs/fs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/f2fs/stat 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/f2fs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/pda 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/img/ascii 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/img 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/xen/netdev 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/xen/sys 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/xen/grant/dev 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/xen/grant 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/xen/blkdev 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/xen/have 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/xen/balloon/memory/hotplug 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/xen/balloon/memory 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/xen/balloon 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/xen/mce 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/xen/pv 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/xen/dev 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/xen/pcidev 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/xen/fbdev 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/xen/save 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/xen/compat 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/xen/pvcalls 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/xen/scsi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/xen/xenbus 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/xen/acpi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/xen/scrub 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/xen/pvhvm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/xen/auto 96 /usr/src/linux-headers-4.15.0-72-generic/include/config/xen 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/paravirt 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mutex/spin/on 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/mutex/spin 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/mutex 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/core/dump/default/elf 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/core/dump/default 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/core/dump 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/core 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ath 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hangcheck 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dummy/console 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/dummy 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/cmdline 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dell/uart 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dell/wmi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dell/smbios 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/dell 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/radix/tree 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/radix 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/bcm7xxx 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/pcf50633 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/phy/cpcap 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/phy/qcom/usb 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/phy/qcom 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/phy/pxa/28nm 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/phy/pxa 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/phy/samsung 28 /usr/src/linux-headers-4.15.0-72-generic/include/config/phy 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/agp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/speakup/synth 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/speakup 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/compat/netlink 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/compat/old 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/compat/for/u64 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/compat/for 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/compat/binfmt 24 /usr/src/linux-headers-4.15.0-72-generic/include/config/compat 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/9p/fs/posix 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/9p/fs 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/9p 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/torture 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nd 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/aes/ni 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/aes/x86 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/aes 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/poly1305/x86 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/poly1305 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/michael 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/ablk 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/crct10dif 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/cast 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/ghash/clmul/ni 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/ghash/clmul 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/ghash 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/dev/qat 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/dev/ccp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/dev/padlock 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/dev/nitrox 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/dev/sp 24 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/dev 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/sha1 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/sha512 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/ansi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/crc32 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/cast6/avx/x86 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/cast6/avx 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/cast6 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/camellia/aesni/avx2/x86 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/camellia/aesni/avx2 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/camellia/aesni/avx/x86 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/camellia/aesni/avx 20 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/camellia/aesni 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/camellia/x86 28 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/camellia 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/des3/ede/x86 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/des3/ede 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/des3 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/serpent/avx2/x86 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/serpent/avx2 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/serpent/sse2/x86 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/serpent/sse2 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/serpent/avx/x86 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/serpent/avx 28 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/serpent 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/twofish/x86/64 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/twofish/x86 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/twofish/avx/x86 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/twofish/avx 20 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/twofish 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/glue/helper 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/glue 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/blowfish/x86 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/blowfish 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/sha256 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/rng 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/user/api 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/user 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/hash 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/manager/disable 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/manager 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/chacha20/x86 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/chacha20 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/cast5/avx/x86 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/cast5/avx 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/cast5 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/crc32c 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto/drbg 264 /usr/src/linux-headers-4.15.0-72-generic/include/config/crypto 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/allow/dev 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/allow/lockdown/lift/by 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/allow/lockdown/lift 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/allow/lockdown 20 /usr/src/linux-headers-4.15.0-72-generic/include/config/allow 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/cypress 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ks959 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hdm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/bcma/driver/gmac 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/bcma/driver 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/bcma/host/pci 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/bcma/host 20 /usr/src/linux-headers-4.15.0-72-generic/include/config/bcma 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/x25 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/iosf/mbi 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/iosf 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/airo 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mwifiex 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/persistent 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/kernel 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/pmic 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/pid 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/tigon3 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/qlcnic 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/wm8350 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/minix 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/wmi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/chrome 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/tick/cpu 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/tick 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/lxt 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/cfs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/output 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/vga/arb/max 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/vga/arb 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/vga 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hermes/cache/fw/on 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/hermes/cache/fw 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/hermes/cache 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/hermes 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/crc32 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mxm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/stacktrace 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/isa/bus 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/isa/dma 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/isa 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mouse/elan/i2c 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/mouse/elan 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mouse/ps2/synaptics 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/mouse/ps2 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mouse/synaptics 24 /usr/src/linux-headers-4.15.0-72-generic/include/config/mouse 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/block 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ath9k/btcoex 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ath9k/htc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ath9k/common 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ath9k/channel 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ath9k/station 24 /usr/src/linux-headers-4.15.0-72-generic/include/config/ath9k 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ubifs/fs 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/ubifs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/yenta/ene 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/yenta 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/cadence 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/syn 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/topstar 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hpwdt/nmi 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/hpwdt 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ena 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/w83977f 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mpu3050 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dptf 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/palmas 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/men/a21 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/men/z188 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/men 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nftl 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/cpumask 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/wdat 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/version 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/spi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/qla 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/bnx2x 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/qlogic 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/cxgb3 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/future 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/dpt 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/ipr 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/bnx2 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/scan 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/bfa 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/eata/tagged 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/eata/linked 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/eata/max 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/eata 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/chelsio 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/ufs/dwc/tc 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/ufs/dwc 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/ufs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/srp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/osd/dprint 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/osd 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/lowlevel 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/sas/host 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/sas 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/fc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/ufshcd 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/3w 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/cxgb4 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/mpt2sas/max 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/mpt2sas 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/iscsi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/sym53c8xx/default 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/sym53c8xx/dma/addressing 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/sym53c8xx/dma 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/sym53c8xx/max 20 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/sym53c8xx 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/dh/hp 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/dh 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/proc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/mpt3sas/max 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi/mpt3sas 172 /usr/src/linux-headers-4.15.0-72-generic/include/config/scsi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/w83877f 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/tree 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/cgroup/net 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/cgroup 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sysctl/exception 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/sysctl 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/tracer/max 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/tracer 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nr 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/framebuffer/console/detect 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/framebuffer/console 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/framebuffer 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ab3100 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hpet/mmap 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hpet/emulate 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/hpet 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/vitesse 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/drm/analogix 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/drm/i915/capture 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/drm/i915/compress 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/drm/i915/gvt 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/drm/i915 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/drm/i2c/nxp 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/drm/i2c 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/drm/kms/fb 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/drm/kms/cma 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/drm/kms 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/drm/nouveau 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/drm/mipi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/drm/fbdev 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/drm/amdgpu 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/drm/load/edid 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/drm/load 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/drm/gem/cma 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/drm/gem 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/drm/virtio 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/drm/cirrus 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/drm/panel/raspberrypi 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/drm/panel 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/drm/amd/dc/pre 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/drm/amd/dc/dcn1 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/drm/amd/dc 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/drm/amd 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/drm/dp/aux 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/drm/dp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/drm/vmwgfx 120 /usr/src/linux-headers-4.15.0-72-generic/include/config/drm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ncpfs/ioctl 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ncpfs/packet 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ncpfs/nfs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ncpfs/os2 20 /usr/src/linux-headers-4.15.0-72-generic/include/config/ncpfs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/libertas/thinfirm 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/libertas 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/cb710/debug 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/cb710 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/thermal/gov/power 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/thermal/gov/step 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/thermal/gov/fair 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/thermal/gov/bang 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/thermal/gov/user 24 /usr/src/linux-headers-4.15.0-72-generic/include/config/thermal/gov 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/thermal/default/gov/step 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/thermal/default/gov 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/thermal/default 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/thermal/emergency/poweroff/delay 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/thermal/emergency/poweroff 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/thermal/emergency 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/thermal/writable 56 /usr/src/linux-headers-4.15.0-72-generic/include/config/thermal 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/clkevt 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/numa/balancing/default 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/numa/balancing 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/numa 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/debug 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/silead 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/efivar 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/buildtime/extable 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/buildtime 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/baycom/ser 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/baycom 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/zstd 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rtl8723 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hpfs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rt2x00/lib 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/rt2x00 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/alim1535 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/davicom 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/old/belkin 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/old 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/toim3232 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mantis 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fpga/mgr/altera/ps 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/fpga/mgr/altera 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fpga/mgr/xilinx 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/fpga/mgr 20 /usr/src/linux-headers-4.15.0-72-generic/include/config/fpga 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/eeprom/idt 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/eeprom 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/randomize/memory/physical 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/randomize/memory 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/randomize 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hsa 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/netup 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/au8522 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/dynamic 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/b2c2/flexcop 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/b2c2 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/tuner 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/zd1301 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/platform 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/rtl2832 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/gp8psk 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/budget 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/max 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/usb/af9005 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/usb/technisat 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/usb/umt 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/usb/cinergy 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/usb/dibusb 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/usb/nova/t 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/usb/nova 32 /usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/usb 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/as102 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/av7110 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/ttusb 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dvb/firedtv 100 /usr/src/linux-headers-4.15.0-72-generic/include/config/dvb 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/skge 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/big 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/b43legacy/pcicore 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/b43legacy/dma/and/pio 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/b43legacy/dma/and 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/b43legacy/dma 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/b43legacy/pci 24 /usr/src/linux-headers-4.15.0-72-generic/include/config/b43legacy 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/panic/on/oops 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/panic/on 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/panic 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/panel 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ma600 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/karma 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fujitsu 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/solaris/x86 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/solaris 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/partition 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/eurotech 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/da9052 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/advise 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/bmc150/magn 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/bmc150/accel 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/bmc150 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/micrel 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/uwb 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/clkdev 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/thunder/nic 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/thunder 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sysv68 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ad5624r 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dm/multipath 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dm/thin 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dm/cache 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dm/persistent 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dm/log 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dm/bio 28 /usr/src/linux-headers-4.15.0-72-generic/include/config/dm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ad7606/iface 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/ad7606 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/omfs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/misc/rtsx 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/misc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/trusted 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/configfs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/task/io 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/task/delay 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/task 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hid/hyperv 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hid/sensor/device 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hid/sensor/custom 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hid/sensor/magnetometer 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hid/sensor/inclinometer 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hid/sensor/gyro 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hid/sensor/iio 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hid/sensor/accel 32 /usr/src/linux-headers-4.15.0-72-generic/include/config/hid/sensor 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hid/udraw 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hid/battery 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hid/ems 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hid/logitech 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hid/picolcd 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hid/betop 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hid/acrux 68 /usr/src/linux-headers-4.15.0-72-generic/include/config/hid 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/bcm87xx 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/raw 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/kingsun 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/md 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/gact 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nfp/app 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/nfp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/binary 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hisax/sct 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hisax/netjet 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hisax/fritz 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hisax/16 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hisax/enternow 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hisax/sedlbauer 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hisax/teles 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hisax/max 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hisax/avm/a1 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/hisax/avm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hisax/bkm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hisax/elsa 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hisax/hfc 56 /usr/src/linux-headers-4.15.0-72-generic/include/config/hisax 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sata/dwc/old 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/sata/dwc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sata/mobile/lpm 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/sata/mobile 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sata/ahci 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sata/acard 28 /usr/src/linux-headers-4.15.0-72-generic/include/config/sata 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/peaq 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/kvm/generic/dirtylog/read 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/kvm/generic/dirtylog 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/kvm/generic 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/kvm/async 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/kvm/debug 24 /usr/src/linux-headers-4.15.0-72-generic/include/config/kvm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nop/usb 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/nop 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fixed 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/console/loglevel 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/console 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/queued 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/pata/cmd640 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/pata/pdc 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/pata 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arcnet/rim 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arcnet/com20020 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/arcnet 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/cramfs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/macb/use 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/macb 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sg 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/tracing/events 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/tracing 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/vfio/iommu 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/vfio/mdev 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/vfio/pci 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/vfio 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/wm831x 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/intel/lpss 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/intel/quark/i2c 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/intel/quark 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/intel 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/axp20x 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/si476x 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/sm501 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/janz 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/ti/am335x 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/ti 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/wl1273 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/sec 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/arizona 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/tps65912 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/aat2870 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/wm8350 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/da9052 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/twl4030 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/mc13xxx 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/cros/ec 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/mfd/cros 92 /usr/src/linux-headers-4.15.0-72-generic/include/config/mfd 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/iwlegacy 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/microcode/old 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/microcode 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/target 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/itco/vendor 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/itco 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/adt7316 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/board 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/plx 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/aufs/br 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/aufs/ino/t 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/aufs/ino 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/aufs/bdev 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/aufs/branch/max 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/aufs/branch 28 /usr/src/linux-headers-4.15.0-72-generic/include/config/aufs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/pantherlord 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hfs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/magic/sysrq/default 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/magic/sysrq 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/magic 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/xfs/posix 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/xfs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/boot/printk 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/boot 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/clk 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/uefi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/pmem/legacy 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/pmem 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/io 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/intel/tsx/mode 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/intel/tsx 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/intel/memory/protection 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/intel/memory 20 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/intel 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/vsyscall 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/bootparam/memory/corruption 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/bootparam/memory 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/bootparam 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/speedstep 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/l1/cache 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/l1 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/supports/memory 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/supports 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/p4 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/check/bios 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/check 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/platform 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/internode/cache 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/internode 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/mce 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/need 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/feature 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/dev/dma 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/dev 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/fast/feature 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/fast 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/powernow 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/pkg/temp 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/pkg 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/thermal 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/debug 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/minimum/cpu 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/minimum 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/reserve 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/extended 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/acpi/cpufreq 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/acpi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/amd/freq 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/amd/platform 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/amd 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/mcelog 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/reroute/for/broken/boot 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/reroute/for/broken 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/reroute/for 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/reroute 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/pcc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/ptdump 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/pm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/local 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/direct 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/64/acpi 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86/64 228 /usr/src/linux-headers-4.15.0-72-generic/include/config/x86 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ipack 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/log/buf 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/log/cpu/max/buf 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/log/cpu/max 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/log/cpu 20 /usr/src/linux-headers-4.15.0-72-generic/include/config/log 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/iio/buffer 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/iio/sysfs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/iio/sw 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/iio/st/sensors 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/iio/st/lsm6dsx 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/iio/st/magn/spi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/iio/st/magn/i2c 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/iio/st/magn 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/iio/st/gyro/spi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/iio/st/gyro/i2c 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/iio/st/gyro 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/iio/st/accel/spi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/iio/st/accel/i2c 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/iio/st/accel 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/iio/st/press 52 /usr/src/linux-headers-4.15.0-72-generic/include/config/iio/st 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/iio/kfifo 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/iio/consumers/per 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/iio/consumers 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/iio/adis/lib 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/iio/adis 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/iio/ssp/sensors 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/iio/ssp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/iio/tightloop 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/iio/triggered 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/iio/simple 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/iio/interrupt 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/iio/hrtimer 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/iio/cros/ec/sensors 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/iio/cros/ec/light 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/iio/cros/ec/accel 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/iio/cros/ec 20 /usr/src/linux-headers-4.15.0-72-generic/include/config/iio/cros 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/iio/ms/sensors 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/iio/ms 144 /usr/src/linux-headers-4.15.0-72-generic/include/config/iio 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/punit/atom 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/punit 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/i8253 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mmc/sdricoh 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mmc/via 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mmc/tifm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mmc/toshiba 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mmc/block 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mmc/sdhci 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mmc/ricoh 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mmc/realtek 36 /usr/src/linux-headers-4.15.0-72-generic/include/config/mmc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/cw1200/wlan 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/cw1200 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ldm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sock/cgroup 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/sock 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/brcm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dma/shared 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dma/engine 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dma/virt 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dma/virtual 20 /usr/src/linux-headers-4.15.0-72-generic/include/config/dma 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/kallsyms/absolute 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/kallsyms/base 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/kallsyms 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/firmware/in 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/firmware 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/vfat 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/softlockup 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dp83822 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hypervisor 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/bmg160 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ipw2100 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/igb 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/coda 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rt 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/qtnfmac/pearl 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/qtnfmac 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/raid6 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/kexec/verify 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/kexec/bzimage/verify 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/kexec/bzimage 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/kexec 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/adjd 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/unisys 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/renesas 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/audit 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/unused 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/twl4030 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/infiniband/qib 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/infiniband/on/demand 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/infiniband/on 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/infiniband/addr/trans 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/infiniband/addr 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/infiniband/ipoib 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/infiniband/opa 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/infiniband/bnxt 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/infiniband/user 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/infiniband/vmware 44 /usr/src/linux-headers-4.15.0-72-generic/include/config/infiniband 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/asymmetric/key 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/asymmetric/public/key 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/asymmetric/public 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/asymmetric 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/textsearch 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/crash 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/pdc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dwmac 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ath10k 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/lidar/lite 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/lidar 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/may/use 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/may 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/qed 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dw/dmac 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/dw 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/c2port/duramar 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/c2port 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/wq/power/efficient 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/wq/power 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/wq 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nfs/acl 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nfs/v4/1/implementation/id 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/nfs/v4/1/implementation 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/nfs/v4/1 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nfs/v4/security 20 /usr/src/linux-headers-4.15.0-72-generic/include/config/nfs/v4 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nfs/v3 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nfs/use/kernel 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/nfs/use 40 /usr/src/linux-headers-4.15.0-72-generic/include/config/nfs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ecrypt/fs 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/ecrypt 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ppp/sync 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/ppp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/wlcore 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/processor 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/legacy/tables 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/legacy 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/custom/dsdt 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/custom 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/hotplug 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/i2c 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/table 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/rev/override 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/rev 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/thermal 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/cppc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/cpu/freq 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/cpu 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/apei/memory 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/apei 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/ec 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/pci 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/system/power/states 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/system/power 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/system 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/acpi/debugger 92 /usr/src/linux-headers-4.15.0-72-generic/include/config/acpi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/uevent/helper 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/uevent 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/synclink 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/modules/tree 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/modules/use/elf 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/modules/use 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/modules 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/elf 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/realtek 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mdio 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ip6/nf/match 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ip6/nf/target 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/ip6/nf 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/ip6 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/enclosure 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/decompress 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ocfs2/fs/userspace 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/ocfs2/fs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ocfs2/debug 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/ocfs2 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/l2tp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/amilo 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rd 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/msdos 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/melfas 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/cyttsp4 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/egalax 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/tsc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/wacom 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/auo 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/ti/am335x 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/ti 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/wdt87xx 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/rohm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/edt 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/surface3 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/tsc2007 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/sis 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/rm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/usb/ett 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/usb/general 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/usb/dmc 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/usb 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/tsc200x 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/ad7879 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/atmel/mxt 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/atmel 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen/cyttsp 100 /usr/src/linux-headers-4.15.0-72-generic/include/config/touchscreen 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sigmatel 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/act200l 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/typec 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/lz4hc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/aquantia 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/pcieaspm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/wafer 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/winbond 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/vm/event 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/vm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/inv/mpu6050 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/inv 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/chr/dev 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/chr 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rpmsg/qcom/glink 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/rpmsg/qcom 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/rpmsg 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/bridge/vlan 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/bridge/igmp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/bridge/ebt/mark 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/bridge/ebt/802 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/bridge/ebt/t 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/bridge/ebt 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/bridge/nf 32 /usr/src/linux-headers-4.15.0-72-generic/include/config/bridge 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ssb/pcmciahost 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ssb/b43/pci 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/ssb/b43 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ssb/sdiohost 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ssb/driver/pcicore 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/ssb/driver 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ssb/pcihost 32 /usr/src/linux-headers-4.15.0-72-generic/include/config/ssb 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/bnxt/flower 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/bnxt 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/aic79xx/reg/pretty 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/aic79xx/reg 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/aic79xx/reset/delay 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/aic79xx/reset 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/aic79xx/cmds/per 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/aic79xx/cmds 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/aic79xx/debug 32 /usr/src/linux-headers-4.15.0-72-generic/include/config/aic79xx 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/branch/profile 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/branch 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/romfs/on 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/romfs/backed/by 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/romfs/backed 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/romfs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sc1200 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/unix98 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/slip/mode 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/slip 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hw/random 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/hw 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/select/memory 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/select 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rtl8187 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/overlay/fs/redirect/always 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/overlay/fs/redirect 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/overlay/fs 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/overlay 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/v4l/platform 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/v4l/mem2mem 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/v4l/test 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/v4l 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fat/default 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/fat 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sync 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ata/verbose 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ata/over 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/ata 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/serio/altera 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/serio/gpio 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/serio/arc 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/serio 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/cpu/sup 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/cpu/freq/gov/attr 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/cpu/freq/gov 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/cpu/freq/default/gov 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/cpu/freq/default 20 /usr/src/linux-headers-4.15.0-72-generic/include/config/cpu/freq 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/cpu/idle/gov 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/cpu/idle 36 /usr/src/linux-headers-4.15.0-72-generic/include/config/cpu 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/esi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/lib80211/crypt 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/lib80211 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/cicada 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/quota/netlink 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/quota 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/kdb/default 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/kdb/continue 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/kdb 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/amd/iommu 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/amd/xgbe/have 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/amd/xgbe 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/amd/mem 20 /usr/src/linux-headers-4.15.0-72-generic/include/config/amd 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/w1/slave/ds2408 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/w1/slave 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/w1/master 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/w1 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/pcmcia/load 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/pcmcia 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/max/raw 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/max 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/advantech 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/genwqe/platform/error 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/genwqe/platform 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/genwqe 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/binfmt 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/60xx 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ks8851 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/tahvo/usb/host/by 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/tahvo/usb/host 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/tahvo/usb 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/tahvo 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/net2272 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/dwc3/dual 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/dwc3 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/f/mass 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/f/ss 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/f/uac1 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/f 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/xhci 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/gpio 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/g/acm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/g/dbgp 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/g 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/ali 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/pwc/input 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/pwc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/link/layer 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/link 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/hub 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/gspca/ov534 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/gspca/xirlink 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/gspca 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/dynamic 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/dwc2 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/announce/new 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/announce 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/default 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/mv 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/rainshadow 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/hsic 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/isp1362 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/midi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/isp1761 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/switch 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/cdc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/serial/digi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/serial/mos7715 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/serial/ftdi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/serial/keyspan 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/serial/kobil 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/serial/mct 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/serial/cypress 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/serial/xsens 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/serial/edgeport 40 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/serial 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/ftdi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/chipidea 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/ehset/test 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/ehset 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/bdc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/video/class/input 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/video/class 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/video 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/hwa 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/functionfs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/mass 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/sierra 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/net/rndis 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/net/cdc/subset 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/net/cdc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/net/huawei/cdc 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/net/huawei 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/net/ax88179 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/net/cx82310 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/net/qmi 36 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/net 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/leds/trigger 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/leds 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/musb/dual 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/musb 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/c67x00 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/ohci/little 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/ohci/hcd 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/ohci 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/cypress 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/ehci/tt 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/ehci/root/hub 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/ehci/root 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/ehci/hcd 20 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/ehci 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/gr 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/ulpi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/configfs/f/uac1 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/configfs/f/lb 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/configfs/f 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/configfs/mass 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/configfs/ecm 24 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/configfs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/max3421 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/r8a66597 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/isp116x 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/eth 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/uhci 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/isp1760/dual 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/isp1760 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/wusb 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/ezusb 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/snp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/arch/has 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/arch 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/whci 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/pulse8 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/oxu210hp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/u 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/u132 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/fotg210 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/storage/ene 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/storage/cypress 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/storage 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/led 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/sl811/hcd 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/sl811 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/gadget/vbus 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/gadget/storage/num 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/gadget/storage 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/gadget 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb/hcd 468 /usr/src/linux-headers-4.15.0-72-generic/include/config/usb 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/seccomp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/dns 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sun 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/user/return 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/user/stacktrace 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/user 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mic 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/zram 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/backlight/carillo 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/backlight/class 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/backlight/pm8941 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/backlight/lcd 20 /usr/src/linux-headers-4.15.0-72-generic/include/config/backlight 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/event 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sungem 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ath6kl 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hwlat 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/6lowpan/nhc 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/6lowpan 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/x509/certificate 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/x509 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mem/soft 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/mem 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/iscsi/ibft 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/iscsi/target 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/iscsi/boot 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/iscsi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/marvell/10g 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/marvell 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/memcg 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/frame 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/842 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/uses/pg 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/uses/high/vma 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/uses/high 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/uses 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/discard 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/pmem 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/filter 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/set 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/strict/module 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/strict/kernel 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/strict 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/zone 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/gigantic 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/fast 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/devmem/is 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/devmem 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/cache/line 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/cache 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/debug 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/sg 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/acpi/table 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/acpi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/elf 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/ubsan/sanitize 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/ubsan 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/cpu 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/mem 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/uaccess 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/add 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/gcov/profile 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/gcov 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has/fortify 112 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/has 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/memory 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/supports/memory 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/supports/atomic 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/supports/numa 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/supports/debug 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/supports/deferred/struct/page 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/supports/deferred/struct 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/supports/deferred 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/supports/optimized 36 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/supports 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/mmap/rnd/bits 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/mmap/rnd/compat/bits 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/mmap/rnd/compat 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/mmap/rnd 20 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/mmap 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/have/nmi/safe 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/have/nmi 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/have 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/suspend 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/enable/memory 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/enable/hugepage 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/enable/thp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/enable/split/pmd 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/enable/split 24 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/enable 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/phys/addr/t 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/phys/addr 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/phys 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/clocksource 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/wants/dynamic/task 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/wants/dynamic 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/wants/thp 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/wants 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/hibernation 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/dma/addr/t 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/dma/addr 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/dma 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/may/have/pc 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/may/have 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/may 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/select/memory 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/select 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/want/huge/pmd 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/want/huge 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/want/compat/ipc/parse 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/want/compat/ipc 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/want/compat 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/want/old/compat 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/want/old 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/want/general 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/want/batched/unmap/tlb 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/want/batched/unmap 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/want/batched 48 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/want 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/might/have/pc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/might/have/acpi 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/might/have 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/might 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/sparsemem 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/proc/kcore 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/proc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/use/memremap 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/use/builtin 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/use/cmpxchg 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/use/queued 20 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch/use 400 /usr/src/linux-headers-4.15.0-72-generic/include/config/arch 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rcu/perf 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rcu/need 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rcu/stall 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rcu/cpu/stall 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/rcu/cpu 24 /usr/src/linux-headers-4.15.0-72-generic/include/config/rcu 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/pc87413 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nfsd/v2 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nfsd/v4/security 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/nfsd/v4 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nfsd/v3 20 /usr/src/linux-headers-4.15.0-72-generic/include/config/nfsd 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/cdrom/pktcdvd 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/cdrom 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/bmi160 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mac80211/has 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mac80211/rc/default 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mac80211/rc/minstrel 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/mac80211/rc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mac80211/message 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mac80211/sta/hash/max 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/mac80211/sta/hash 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/mac80211/sta 36 /usr/src/linux-headers-4.15.0-72-generic/include/config/mac80211 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sdio 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/exportfs/block 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/exportfs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/gs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/jump 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/manager 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sdr/platform 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/sdr 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/edac/atomic 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/edac/decode 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/edac 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/vsockets 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ni903x 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/88eu/ap 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/88eu 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mma9551 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hvc/xen 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/hvc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/caif/spi 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/caif 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mcp2120 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/adaptec 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/cortina 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/apple 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/bfs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/samsung 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/inet/diag 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/inet/udp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/inet/dccp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/inet/xfrm/mode 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/inet/xfrm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/inet/tcp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/inet/sctp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/inet/esp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/inet/raw 40 /usr/src/linux-headers-4.15.0-72-generic/include/config/inet 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/smsc/sch311x 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/smsc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/transparent/huge 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/transparent/hugepage 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/transparent 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/u/serial 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/u 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ne2k 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/want/dev 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/want 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/vxfs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/tcg/tis/i2c 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/tcg/tis/st33zp24 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/tcg/tis 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/tcg/vtpm 20 /usr/src/linux-headers-4.15.0-72-generic/include/config/tcg 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/de 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/pgtable 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/osf 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/tmd 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/oid 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/gameport 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ext4/fs/posix 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/ext4/fs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ext4/use/for 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/ext4/use 20 /usr/src/linux-headers-4.15.0-72-generic/include/config/ext4 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/retu 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fix/earlycon 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/fix 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/axp288/fuel 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/axp288 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ucs2 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/uio/pdrv 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/uio/dmem 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/uio/hv 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/uio/pci 20 /usr/src/linux-headers-4.15.0-72-generic/include/config/uio 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/n 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/pm/generic/domains 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/pm/generic 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/pm/notifier/error 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/pm/notifier 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/pm/wakelocks 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/pm/sleep 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/pm/trace 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/pm/devfreq 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/pm/advanced 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/pm/std 44 /usr/src/linux-headers-4.15.0-72-generic/include/config/pm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hts221 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mandatory/file 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/mandatory 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/megaraid 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/lsm/mmap/min 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/lsm/mmap 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/lsm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/panasonic 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/i40e 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sgi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/lock/down/in/efi/secure 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/lock/down/in/efi 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/lock/down/in 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/lock/down 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/lock/spin/on 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/lock/spin 28 /usr/src/linux-headers-4.15.0-72-generic/include/config/lock 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/lsi/et1011c 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/lsi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/led/trigger 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/led 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/acer 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/smsc37b787 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rockchip 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/netfilter/netlink/glue 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/netfilter/netlink 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/netfilter/xt/match 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/netfilter/xt/target 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/netfilter/xt 24 /usr/src/linux-headers-4.15.0-72-generic/include/config/netfilter 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/orinoco 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/staging 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fuse 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/e1000e 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/physical 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/lpc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/chromeos 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/iso9660 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rapidio/disc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rapidio/mport 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rapidio/enum 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rapidio/rxs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rapidio/cps 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rapidio/dma 28 /usr/src/linux-headers-4.15.0-72-generic/include/config/rapidio 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/joystick/psxpad/spi 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/joystick/psxpad 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/joystick/iforce 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/joystick/xpad 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/joystick/grip 24 /usr/src/linux-headers-4.15.0-72-generic/include/config/joystick 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/tty 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/vme 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/lockd 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/test/static 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/test/user 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/test 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ceph/fs/posix 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/ceph/fs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ceph/lib/use/dns 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/ceph/lib/use 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/ceph/lib 24 /usr/src/linux-headers-4.15.0-72-generic/include/config/ceph 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/stream 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/gart 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/cfg80211/default 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/cfg80211/require/signed 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/cfg80211/require 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/cfg80211/crda 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/cfg80211/wext 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/cfg80211/use/kernel/regdb 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/cfg80211/use/kernel 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/cfg80211/use 36 /usr/src/linux-headers-4.15.0-72-generic/include/config/cfg80211 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/wilink/platform 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/wilink 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/girbil 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/gadget 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/watchdog/pretimeout/gov 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/watchdog/pretimeout/default/gov 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/watchdog/pretimeout/default 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/watchdog/pretimeout 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/watchdog/handle/boot 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/watchdog/handle 28 /usr/src/linux-headers-4.15.0-72-generic/include/config/watchdog 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/cma 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/arm/gic/max 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/arm/gic 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/arm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sparsemem/vmemmap 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/sparsemem/alloc/mem/map 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/sparsemem/alloc/mem 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/sparsemem/alloc 20 /usr/src/linux-headers-4.15.0-72-generic/include/config/sparsemem 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/wlan/vendor 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/wlan 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/abx500 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mq/iosched 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/mq 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/bt/rfcomm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/bt/bnep/proto 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/bt/bnep/mc 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/bt/bnep 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/bt/mrvl 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/bt/hcibtusb 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/bt/hciuart 32 /usr/src/linux-headers-4.15.0-72-generic/include/config/bt 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/proc/page 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/proc/pid 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/proc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ipv6/router 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ipv6/multiple 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ipv6/seg6 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ipv6/route 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ipv6/fou 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ipv6/ndisc 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ipv6/sit 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ipv6/mroute/multiple 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/ipv6/mroute 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ipv6/pimsm 44 /usr/src/linux-headers-4.15.0-72-generic/include/config/ipv6 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/isdn/capi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/isdn/divas 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/isdn/drv/avmb1/avm 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/isdn/drv/avmb1 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/isdn/drv 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/isdn/ppp 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/isdn/tty 32 /usr/src/linux-headers-4.15.0-72-generic/include/config/isdn 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ideapad 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/hist 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/wext 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ks0108 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/pci/msi/irq 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/pci/msi 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/pci/sw 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/pci/bus/addr/t 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/pci/bus/addr 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/pci/bus 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/pci/endpoint 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/pci/lockless 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/pci/realloc/enable 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/pci/realloc 44 /usr/src/linux-headers-4.15.0-72-generic/include/config/pci 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/system/extra/certificate 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/system/extra 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/system/blacklist/hash 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/system/blacklist 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/system/trusted 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/system/data 28 /usr/src/linux-headers-4.15.0-72-generic/include/config/system 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/loopback 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/posix/mqueue 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/posix 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/pwm/lpss 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/pwm/twl 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/pwm/cros 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/pwm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/cros/kbd/led 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/cros/kbd 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/cros/ec/lpc 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/cros/ec 20 /usr/src/linux-headers-4.15.0-72-generic/include/config/cros 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/nilfs2 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/tinydrm/mipi 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/tinydrm 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/jfs/posix 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/jfs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/media/altera 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/media/cec 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/media/tuner 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/media/common 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/media/digital/tv 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/media/digital 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/media/radio 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/media/subdrv 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/media/camera 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/media/usb 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/media/sdr 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/media/analog/tv 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/media/analog 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/media/pci 60 /usr/src/linux-headers-4.15.0-72-generic/include/config/media 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/befs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/keys 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ax25/dama 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/ax25 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/stmmac 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rwsem/xchgadd 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/rwsem/spin/on 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/rwsem/spin 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/rwsem 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/function/graph 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/function 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/ms 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/vmware/vmci 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/vmware 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/use/percpu/numa/node 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/use/percpu/numa 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/use/percpu 16 /usr/src/linux-headers-4.15.0-72-generic/include/config/use 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/charger 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/xilinx 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/checkpoint 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/fortify 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtdram/total 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtdram/erase 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/mtdram 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/mac 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/reiserfs/fs/posix 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/reiserfs/fs 12 /usr/src/linux-headers-4.15.0-72-generic/include/config/reiserfs 4 /usr/src/linux-headers-4.15.0-72-generic/include/config/tmpfs/posix 8 /usr/src/linux-headers-4.15.0-72-generic/include/config/tmpfs 12896 /usr/src/linux-headers-4.15.0-72-generic/include/config 8 /usr/src/linux-headers-4.15.0-72-generic/include/generated/uapi/linux 12 /usr/src/linux-headers-4.15.0-72-generic/include/generated/uapi 308 /usr/src/linux-headers-4.15.0-72-generic/include/generated 13208 /usr/src/linux-headers-4.15.0-72-generic/include 28 /usr/src/linux-headers-4.15.0-72-generic/kernel 348 /usr/src/linux-headers-4.15.0-72-generic/scripts/mod 44 /usr/src/linux-headers-4.15.0-72-generic/scripts/basic 40 /usr/src/linux-headers-4.15.0-72-generic/scripts/kconfig/lxdialog 548 /usr/src/linux-headers-4.15.0-72-generic/scripts/kconfig 104 /usr/src/linux-headers-4.15.0-72-generic/scripts/selinux/genheaders 108 /usr/src/linux-headers-4.15.0-72-generic/scripts/selinux/mdp 220 /usr/src/linux-headers-4.15.0-72-generic/scripts/selinux 1436 /usr/src/linux-headers-4.15.0-72-generic/scripts 232 /usr/src/linux-headers-4.15.0-72-generic/arch/x86/purgatory 112 /usr/src/linux-headers-4.15.0-72-generic/arch/x86/tools 60 /usr/src/linux-headers-4.15.0-72-generic/arch/x86/include/generated/uapi/asm 64 /usr/src/linux-headers-4.15.0-72-generic/arch/x86/include/generated/uapi 104 /usr/src/linux-headers-4.15.0-72-generic/arch/x86/include/generated/asm 172 /usr/src/linux-headers-4.15.0-72-generic/arch/x86/include/generated 176 /usr/src/linux-headers-4.15.0-72-generic/arch/x86/include 100 /usr/src/linux-headers-4.15.0-72-generic/arch/x86/kernel 16 /usr/src/linux-headers-4.15.0-72-generic/arch/x86/entry/syscalls 20 /usr/src/linux-headers-4.15.0-72-generic/arch/x86/entry 644 /usr/src/linux-headers-4.15.0-72-generic/arch/x86 648 /usr/src/linux-headers-4.15.0-72-generic/arch 4 /usr/src/linux-headers-4.15.0-72-generic/.tmp_versions 21992 /usr/src/linux-headers-4.15.0-72-generic 390664 /usr/src 184 /usr/lib/accountsservice 4 /usr/lib/networkd-dispatcher/off.d 4 /usr/lib/networkd-dispatcher/dormant.d 4 /usr/lib/networkd-dispatcher/routable.d 4 /usr/lib/networkd-dispatcher/no-carrier.d 20 /usr/lib/networkd-dispatcher 8 /usr/lib/locale/C.UTF-8/LC_MESSAGES 1728 /usr/lib/locale/C.UTF-8 3308 /usr/lib/locale 24 /usr/lib/apt/planners 48 /usr/lib/apt/solvers 760 /usr/lib/apt/methods 884 /usr/lib/apt 28 /usr/lib/dpkg/methods/apt 32 /usr/lib/dpkg/methods 36 /usr/lib/dpkg 576 /usr/lib/gcc/x86_64-linux-gnu/7/include/cilk 28 /usr/lib/gcc/x86_64-linux-gnu/7/include/sanitizer 2596 /usr/lib/gcc/x86_64-linux-gnu/7/include 184 /usr/lib/gcc/x86_64-linux-gnu/7/plugin 20 /usr/lib/gcc/x86_64-linux-gnu/7/include-fixed 86880 /usr/lib/gcc/x86_64-linux-gnu/7 4 /usr/lib/gcc/x86_64-linux-gnu/8 86888 /usr/lib/gcc/x86_64-linux-gnu 86892 /usr/lib/gcc 4852 /usr/lib/file 4 /usr/lib/groff/site-tmac 32 /usr/lib/groff/grog 40 /usr/lib/groff 4 /usr/lib/sasl2 16 /usr/lib/valgrind 48 /usr/lib/dbus-1.0 8 /usr/lib/pm-utils/sleep.d 8 /usr/lib/pm-utils/power.d 20 /usr/lib/pm-utils 4 /usr/lib/gnupg2 4 /usr/lib/bfd-plugins 40 /usr/lib/byobu/include/__pycache__ 152 /usr/lib/byobu/include 332 /usr/lib/byobu 892 /usr/lib/openssh 8 /usr/lib/rsyslog 4 /usr/lib/linux/triggers 8 /usr/lib/linux 60 /usr/lib/update-notifier 12 /usr/lib/language-selector 8 /usr/lib/sysctl.d 4 /usr/lib/gold-ld 8 /usr/lib/software-properties 4 /usr/lib/compat-ld 4 /usr/lib/lxcfs 8 /usr/lib/environment.d 20 /usr/lib/linux-boot-probes/mounted 28 /usr/lib/linux-boot-probes 36 /usr/lib/grub-legacy 388 /usr/lib/python3.6/asyncio/__pycache__ 828 /usr/lib/python3.6/asyncio 128 /usr/lib/python3.6/urllib/__pycache__ 292 /usr/lib/python3.6/urllib 2356 /usr/lib/python3.6/lib-dynload 84 /usr/lib/python3.6/xml/sax/__pycache__ 160 /usr/lib/python3.6/xml/sax 136 /usr/lib/python3.6/xml/dom/__pycache__ 288 /usr/lib/python3.6/xml/dom 68 /usr/lib/python3.6/xml/etree/__pycache__ 156 /usr/lib/python3.6/xml/etree 8 /usr/lib/python3.6/xml/__pycache__ 12 /usr/lib/python3.6/xml/parsers/__pycache__ 24 /usr/lib/python3.6/xml/parsers 644 /usr/lib/python3.6/xml 40 /usr/lib/python3.6/ctypes/__pycache__ 92 /usr/lib/python3.6/ctypes 32 /usr/lib/python3.6/dbm/__pycache__ 64 /usr/lib/python3.6/dbm 108 /usr/lib/python3.6/importlib/__pycache__ 244 /usr/lib/python3.6/importlib 76 /usr/lib/python3.6/xmlrpc/__pycache__ 172 /usr/lib/python3.6/xmlrpc 32 /usr/lib/python3.6/curses/__pycache__ 64 /usr/lib/python3.6/curses 73640 /usr/lib/python3.6/config-3.6m-x86_64-linux-gnu 8 /usr/lib/python3.6/concurrent/__pycache__ 52 /usr/lib/python3.6/concurrent/futures/__pycache__ 116 /usr/lib/python3.6/concurrent/futures 132 /usr/lib/python3.6/concurrent 16 /usr/lib/python3.6/sqlite3/__pycache__ 32 /usr/lib/python3.6/sqlite3 608 /usr/lib/python3.6/encodings/__pycache__ 2372 /usr/lib/python3.6/encodings 132 /usr/lib/python3.6/logging/__pycache__ 304 /usr/lib/python3.6/logging 76 /usr/lib/python3.6/lib2to3/pgen2/__pycache__ 168 /usr/lib/python3.6/lib2to3/pgen2 124 /usr/lib/python3.6/lib2to3/__pycache__ 236 /usr/lib/python3.6/lib2to3/fixes/__pycache__ 480 /usr/lib/python3.6/lib2to3/fixes 920 /usr/lib/python3.6/lib2to3 332 /usr/lib/python3.6/distutils/__pycache__ 216 /usr/lib/python3.6/distutils/command/__pycache__ 524 /usr/lib/python3.6/distutils/command 1332 /usr/lib/python3.6/distutils 3544 /usr/lib/python3.6/__pycache__ 152 /usr/lib/python3.6/http/__pycache__ 364 /usr/lib/python3.6/http 12 /usr/lib/python3.6/multiprocessing/dummy/__pycache__ 24 /usr/lib/python3.6/multiprocessing/dummy 224 /usr/lib/python3.6/multiprocessing/__pycache__ 504 /usr/lib/python3.6/multiprocessing 64 /usr/lib/python3.6/wsgiref/__pycache__ 136 /usr/lib/python3.6/wsgiref 24 /usr/lib/python3.6/venv/__pycache__ 8 /usr/lib/python3.6/venv/scripts/common 12 /usr/lib/python3.6/venv/scripts/posix 24 /usr/lib/python3.6/venv/scripts 76 /usr/lib/python3.6/venv 72 /usr/lib/python3.6/html/__pycache__ 180 /usr/lib/python3.6/html 40 /usr/lib/python3.6/email/mime/__pycache__ 76 /usr/lib/python3.6/email/mime 316 /usr/lib/python3.6/email/__pycache__ 792 /usr/lib/python3.6/email 52 /usr/lib/python3.6/json/__pycache__ 112 /usr/lib/python3.6/json 56 /usr/lib/python3.6/collections/__pycache__ 112 /usr/lib/python3.6/collections 400 /usr/lib/python3.6/pydoc_data/__pycache__ 1040 /usr/lib/python3.6/pydoc_data 44 /usr/lib/python3.6/test/__pycache__ 100 /usr/lib/python3.6/test/support/__pycache__ 224 /usr/lib/python3.6/test/support 88 /usr/lib/python3.6/test/libregrtest/__pycache__ 192 /usr/lib/python3.6/test/libregrtest 504 /usr/lib/python3.6/test 188 /usr/lib/python3.6/unittest/__pycache__ 412 /usr/lib/python3.6/unittest 95764 /usr/lib/python3.6 12 /usr/lib/os-prober 40 /usr/lib/mime/packages 52 /usr/lib/mime 4 /usr/lib/tar 72 /usr/lib/tmpfiles.d 4 /usr/lib/systemd/tests/testdata 8 /usr/lib/systemd/tests 4 /usr/lib/systemd/user-generators 8 /usr/lib/systemd/user-preset 48 /usr/lib/systemd/system-environment-generators 8 /usr/lib/systemd/logind.conf.d 148 /usr/lib/systemd/boot/efi 152 /usr/lib/systemd/boot 164 /usr/lib/systemd/catalog 4 /usr/lib/systemd/user/graphical-session-pre.target.wants 4 /usr/lib/systemd/user/sockets.target.wants 112 /usr/lib/systemd/user 20 /usr/lib/systemd/user-environment-generators 528 /usr/lib/systemd 444 /usr/lib/klibc/bin 448 /usr/lib/klibc 16 /usr/lib/kernel/install.d 20 /usr/lib/kernel 660 /usr/lib/gnupg 28 /usr/lib/python3/dist-packages/apt/progress/__pycache__ 60 /usr/lib/python3/dist-packages/apt/progress 124 /usr/lib/python3/dist-packages/apt/__pycache__ 336 /usr/lib/python3/dist-packages/apt 16 /usr/lib/python3/dist-packages/six-1.11.0.egg-info 52 /usr/lib/python3/dist-packages/httplib2/__pycache__ 120 /usr/lib/python3/dist-packages/httplib2 28 /usr/lib/python3/dist-packages/wheel/signatures/__pycache__ 52 /usr/lib/python3/dist-packages/wheel/signatures 16 /usr/lib/python3/dist-packages/wheel/tool/__pycache__ 36 /usr/lib/python3/dist-packages/wheel/tool 100 /usr/lib/python3/dist-packages/wheel/__pycache__ 296 /usr/lib/python3/dist-packages/wheel 20 /usr/lib/python3/dist-packages/CommandNotFound/db/__pycache__ 44 /usr/lib/python3/dist-packages/CommandNotFound/db 28 /usr/lib/python3/dist-packages/CommandNotFound/__pycache__ 100 /usr/lib/python3/dist-packages/CommandNotFound 16 /usr/lib/python3/dist-packages/requests_unixsocket/__pycache__ 32 /usr/lib/python3/dist-packages/requests_unixsocket 28 /usr/lib/python3/dist-packages/cryptography-2.1.4.egg-info 20 /usr/lib/python3/dist-packages/cloud_init-19.1.egg-info 16 /usr/lib/python3/dist-packages/ssh_import_id/__pycache__ 32 /usr/lib/python3/dist-packages/ssh_import_id 24 /usr/lib/python3/dist-packages/idna-2.6.egg-info 40 /usr/lib/python3/dist-packages/Automat-0.6.0.egg-info 28 /usr/lib/python3/dist-packages/incremental-16.10.1.egg-info 24 /usr/lib/python3/dist-packages/oauthlib-2.0.6.egg-info 20 /usr/lib/python3/dist-packages/hyperlink-17.3.1.egg-info 28 /usr/lib/python3/dist-packages/Twisted-17.9.0.egg-info 8 /usr/lib/python3/dist-packages/setuptools/extern/__pycache__ 16 /usr/lib/python3/dist-packages/setuptools/extern 264 /usr/lib/python3/dist-packages/setuptools/__pycache__ 244 /usr/lib/python3/dist-packages/setuptools/command/__pycache__ 536 /usr/lib/python3/dist-packages/setuptools/command 72 /usr/lib/python3/dist-packages/setuptools/_vendor/packaging/__pycache__ 156 /usr/lib/python3/dist-packages/setuptools/_vendor/packaging 232 /usr/lib/python3/dist-packages/setuptools/_vendor/__pycache__ 652 /usr/lib/python3/dist-packages/setuptools/_vendor 2180 /usr/lib/python3/dist-packages/setuptools 192 /usr/lib/python3/dist-packages/OpenSSL/__pycache__ 404 /usr/lib/python3/dist-packages/OpenSSL 56 /usr/lib/python3/dist-packages/hyperlink/__pycache__ 60 /usr/lib/python3/dist-packages/hyperlink/test/__pycache__ 120 /usr/lib/python3/dist-packages/hyperlink/test 240 /usr/lib/python3/dist-packages/hyperlink 84 /usr/lib/python3/dist-packages/jsonschema/tests/__pycache__ 168 /usr/lib/python3/dist-packages/jsonschema/tests 88 /usr/lib/python3/dist-packages/jsonschema/__pycache__ 20 /usr/lib/python3/dist-packages/jsonschema/schemas 360 /usr/lib/python3/dist-packages/jsonschema 180 /usr/lib/python3/dist-packages/requests/__pycache__ 384 /usr/lib/python3/dist-packages/requests 24 /usr/lib/python3/dist-packages/PyJWT-1.5.3.egg-info 32 /usr/lib/python3/dist-packages/markupsafe/__pycache__ 76 /usr/lib/python3/dist-packages/markupsafe 28 /usr/lib/python3/dist-packages/constantly/__pycache__ 56 /usr/lib/python3/dist-packages/constantly 436 /usr/lib/python3/dist-packages/DistUpgrade/__pycache__ 1040 /usr/lib/python3/dist-packages/DistUpgrade 28 /usr/lib/python3/dist-packages/jsonschema-2.6.0.egg-info 16 /usr/lib/python3/dist-packages/ssh_import_id-5.7.egg-info 48 /usr/lib/python3/dist-packages/aptsources/__pycache__ 112 /usr/lib/python3/dist-packages/aptsources 20 /usr/lib/python3/dist-packages/requests_unixsocket-0.1.5.egg-info 32 /usr/lib/python3/dist-packages/cryptography/__pycache__ 24 /usr/lib/python3/dist-packages/cryptography/hazmat/bindings/openssl/__pycache__ 48 /usr/lib/python3/dist-packages/cryptography/hazmat/bindings/openssl 8 /usr/lib/python3/dist-packages/cryptography/hazmat/bindings/__pycache__ 1016 /usr/lib/python3/dist-packages/cryptography/hazmat/bindings 8 /usr/lib/python3/dist-packages/cryptography/hazmat/__pycache__ 20 /usr/lib/python3/dist-packages/cryptography/hazmat/primitives/twofactor/__pycache__ 40 /usr/lib/python3/dist-packages/cryptography/hazmat/primitives/twofactor 52 /usr/lib/python3/dist-packages/cryptography/hazmat/primitives/__pycache__ 68 /usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/__pycache__ 128 /usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric 32 /usr/lib/python3/dist-packages/cryptography/hazmat/primitives/kdf/__pycache__ 72 /usr/lib/python3/dist-packages/cryptography/hazmat/primitives/kdf 44 /usr/lib/python3/dist-packages/cryptography/hazmat/primitives/ciphers/__pycache__ 84 /usr/lib/python3/dist-packages/cryptography/hazmat/primitives/ciphers 428 /usr/lib/python3/dist-packages/cryptography/hazmat/primitives 200 /usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/__pycache__ 456 /usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl 24 /usr/lib/python3/dist-packages/cryptography/hazmat/backends/__pycache__ 500 /usr/lib/python3/dist-packages/cryptography/hazmat/backends 1960 /usr/lib/python3/dist-packages/cryptography/hazmat 120 /usr/lib/python3/dist-packages/cryptography/x509/__pycache__ 236 /usr/lib/python3/dist-packages/cryptography/x509 2260 /usr/lib/python3/dist-packages/cryptography 284 /usr/lib/python3/dist-packages/idna/__pycache__ 540 /usr/lib/python3/dist-packages/idna 16 /usr/lib/python3/dist-packages/serial/threaded/__pycache__ 32 /usr/lib/python3/dist-packages/serial/threaded 80 /usr/lib/python3/dist-packages/serial/tools/__pycache__ 172 /usr/lib/python3/dist-packages/serial/tools 124 /usr/lib/python3/dist-packages/serial/__pycache__ 56 /usr/lib/python3/dist-packages/serial/urlhandler/__pycache__ 116 /usr/lib/python3/dist-packages/serial/urlhandler 628 /usr/lib/python3/dist-packages/serial 148 /usr/lib/python3/dist-packages/gi/overrides/__pycache__ 332 /usr/lib/python3/dist-packages/gi/overrides 8 /usr/lib/python3/dist-packages/gi/repository/__pycache__ 16 /usr/lib/python3/dist-packages/gi/repository 80 /usr/lib/python3/dist-packages/gi/__pycache__ 852 /usr/lib/python3/dist-packages/gi 12 /usr/lib/python3/dist-packages/urllib3/packages/ssl_match_hostname/__pycache__ 28 /usr/lib/python3/dist-packages/urllib3/packages/ssl_match_hostname 20 /usr/lib/python3/dist-packages/urllib3/packages/__pycache__ 12 /usr/lib/python3/dist-packages/urllib3/packages/backports/__pycache__ 20 /usr/lib/python3/dist-packages/urllib3/packages/backports 88 /usr/lib/python3/dist-packages/urllib3/packages 120 /usr/lib/python3/dist-packages/urllib3/__pycache__ 88 /usr/lib/python3/dist-packages/urllib3/util/__pycache__ 192 /usr/lib/python3/dist-packages/urllib3/util 28 /usr/lib/python3/dist-packages/urllib3/contrib/_securetransport/__pycache__ 64 /usr/lib/python3/dist-packages/urllib3/contrib/_securetransport 68 /usr/lib/python3/dist-packages/urllib3/contrib/__pycache__ 212 /usr/lib/python3/dist-packages/urllib3/contrib 756 /usr/lib/python3/dist-packages/urllib3 16 /usr/lib/python3/dist-packages/python_debian-0.1.32.egg-info 28 /usr/lib/python3/dist-packages/keyrings.alt-3.0.egg-info 16 /usr/lib/python3/dist-packages/jsonpatch-1.16.egg-info 16 /usr/lib/python3/dist-packages/asn1crypto-0.24.0.egg-info 20 /usr/lib/python3/dist-packages/constantly-15.1.0.egg-info 16 /usr/lib/python3/dist-packages/unattended_upgrades-0.1.egg-info 36 /usr/lib/python3/dist-packages/attrs-17.4.0.egg-info 56 /usr/lib/python3/dist-packages/urllib3-1.22.egg-info 12 /usr/lib/python3/dist-packages/HweSupportStatus/__pycache__ 20 /usr/lib/python3/dist-packages/HweSupportStatus 28 /usr/lib/python3/dist-packages/distro_info_test/__pycache__ 56 /usr/lib/python3/dist-packages/distro_info_test 84 /usr/lib/python3/dist-packages/requests-2.18.4.egg-info 56 /usr/lib/python3/dist-packages/pyasn1/codec/ber/__pycache__ 144 /usr/lib/python3/dist-packages/pyasn1/codec/ber 8 /usr/lib/python3/dist-packages/pyasn1/codec/__pycache__ 16 /usr/lib/python3/dist-packages/pyasn1/codec/der/__pycache__ 32 /usr/lib/python3/dist-packages/pyasn1/codec/der 20 /usr/lib/python3/dist-packages/pyasn1/codec/cer/__pycache__ 44 /usr/lib/python3/dist-packages/pyasn1/codec/cer 24 /usr/lib/python3/dist-packages/pyasn1/codec/native/__pycache__ 48 /usr/lib/python3/dist-packages/pyasn1/codec/native 284 /usr/lib/python3/dist-packages/pyasn1/codec 208 /usr/lib/python3/dist-packages/pyasn1/type/__pycache__ 428 /usr/lib/python3/dist-packages/pyasn1/type 32 /usr/lib/python3/dist-packages/pyasn1/compat/__pycache__ 64 /usr/lib/python3/dist-packages/pyasn1/compat 16 /usr/lib/python3/dist-packages/pyasn1/__pycache__ 808 /usr/lib/python3/dist-packages/pyasn1 16 /usr/lib/python3/dist-packages/click-6.7.egg-info 12 /usr/lib/python3/dist-packages/asn1crypto/_perf/__pycache__ 20 /usr/lib/python3/dist-packages/asn1crypto/_perf 440 /usr/lib/python3/dist-packages/asn1crypto/__pycache__ 988 /usr/lib/python3/dist-packages/asn1crypto 84 /usr/lib/python3/dist-packages/pip/req/__pycache__ 196 /usr/lib/python3/dist-packages/pip/req 92 /usr/lib/python3/dist-packages/pip/utils/__pycache__ 192 /usr/lib/python3/dist-packages/pip/utils 16 /usr/lib/python3/dist-packages/pip/operations/__pycache__ 32 /usr/lib/python3/dist-packages/pip/operations 12 /usr/lib/python3/dist-packages/pip/models/__pycache__ 24 /usr/lib/python3/dist-packages/pip/models 24 /usr/lib/python3/dist-packages/pip/compat/__pycache__ 60 /usr/lib/python3/dist-packages/pip/compat 160 /usr/lib/python3/dist-packages/pip/__pycache__ 44 /usr/lib/python3/dist-packages/pip/vcs/__pycache__ 96 /usr/lib/python3/dist-packages/pip/vcs 88 /usr/lib/python3/dist-packages/pip/commands/__pycache__ 184 /usr/lib/python3/dist-packages/pip/commands 8 /usr/lib/python3/dist-packages/pip/_vendor/__pycache__ 20 /usr/lib/python3/dist-packages/pip/_vendor 1164 /usr/lib/python3/dist-packages/pip 16 /usr/lib/python3/dist-packages/UpdateManager/__pycache__ 20 /usr/lib/python3/dist-packages/UpdateManager/backend/__pycache__ 48 /usr/lib/python3/dist-packages/UpdateManager/backend 84 /usr/lib/python3/dist-packages/UpdateManager/Core/__pycache__ 188 /usr/lib/python3/dist-packages/UpdateManager/Core 264 /usr/lib/python3/dist-packages/UpdateManager 580 /usr/lib/python3/dist-packages/chardet/__pycache__ 12 /usr/lib/python3/dist-packages/chardet/cli/__pycache__ 24 /usr/lib/python3/dist-packages/chardet/cli 1044 /usr/lib/python3/dist-packages/chardet 172 /usr/lib/python3/dist-packages/yaml/__pycache__ 420 /usr/lib/python3/dist-packages/yaml 44 /usr/lib/python3/dist-packages/zope.interface-4.3.2.egg-info 232 /usr/lib/python3/dist-packages/click/__pycache__ 504 /usr/lib/python3/dist-packages/click 8 /usr/lib/python3/dist-packages/pkg_resources/extern/__pycache__ 16 /usr/lib/python3/dist-packages/pkg_resources/extern 104 /usr/lib/python3/dist-packages/pkg_resources/__pycache__ 72 /usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/__pycache__ 156 /usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging 252 /usr/lib/python3/dist-packages/pkg_resources/_vendor/__pycache__ 696 /usr/lib/python3/dist-packages/pkg_resources/_vendor 928 /usr/lib/python3/dist-packages/pkg_resources 44 /usr/lib/python3/dist-packages/secretstorage/__pycache__ 88 /usr/lib/python3/dist-packages/secretstorage 336 /usr/lib/python3/dist-packages/pyasn1_modules/__pycache__ 728 /usr/lib/python3/dist-packages/pyasn1_modules 28 /usr/lib/python3/dist-packages/netifaces-0.10.4.egg-info 48 /usr/lib/python3/dist-packages/automat/__pycache__ 80 /usr/lib/python3/dist-packages/automat/_test/__pycache__ 152 /usr/lib/python3/dist-packages/automat/_test 248 /usr/lib/python3/dist-packages/automat 20 /usr/lib/python3/dist-packages/chardet-3.0.4.egg-info 88 /usr/lib/python3/dist-packages/twisted/words/im/__pycache__ 244 /usr/lib/python3/dist-packages/twisted/words/im 100 /usr/lib/python3/dist-packages/twisted/words/xish/__pycache__ 224 /usr/lib/python3/dist-packages/twisted/words/xish 72 /usr/lib/python3/dist-packages/twisted/words/__pycache__ 140 /usr/lib/python3/dist-packages/twisted/words/protocols/jabber/__pycache__ 276 /usr/lib/python3/dist-packages/twisted/words/protocols/jabber 124 /usr/lib/python3/dist-packages/twisted/words/protocols/__pycache__ 532 /usr/lib/python3/dist-packages/twisted/words/protocols 364 /usr/lib/python3/dist-packages/twisted/words/test/__pycache__ 724 /usr/lib/python3/dist-packages/twisted/words/test 1868 /usr/lib/python3/dist-packages/twisted/words 56 /usr/lib/python3/dist-packages/twisted/pair/__pycache__ 84 /usr/lib/python3/dist-packages/twisted/pair/test/__pycache__ 180 /usr/lib/python3/dist-packages/twisted/pair/test 296 /usr/lib/python3/dist-packages/twisted/pair 120 /usr/lib/python3/dist-packages/twisted/conch/insults/__pycache__ 228 /usr/lib/python3/dist-packages/twisted/conch/insults 288 /usr/lib/python3/dist-packages/twisted/conch/ssh/__pycache__ 588 /usr/lib/python3/dist-packages/twisted/conch/ssh 56 /usr/lib/python3/dist-packages/twisted/conch/client/__pycache__ 116 /usr/lib/python3/dist-packages/twisted/conch/client 200 /usr/lib/python3/dist-packages/twisted/conch/__pycache__ 92 /usr/lib/python3/dist-packages/twisted/conch/scripts/__pycache__ 188 /usr/lib/python3/dist-packages/twisted/conch/scripts 24 /usr/lib/python3/dist-packages/twisted/conch/ui/__pycache__ 48 /usr/lib/python3/dist-packages/twisted/conch/ui 796 /usr/lib/python3/dist-packages/twisted/conch/test/__pycache__ 1596 /usr/lib/python3/dist-packages/twisted/conch/test 16 /usr/lib/python3/dist-packages/twisted/conch/openssh_compat/__pycache__ 32 /usr/lib/python3/dist-packages/twisted/conch/openssh_compat 3192 /usr/lib/python3/dist-packages/twisted/conch 148 /usr/lib/python3/dist-packages/twisted/spread/__pycache__ 140 /usr/lib/python3/dist-packages/twisted/spread/test/__pycache__ 264 /usr/lib/python3/dist-packages/twisted/spread/test 568 /usr/lib/python3/dist-packages/twisted/spread 192 /usr/lib/python3/dist-packages/twisted/trial/__pycache__ 60 /usr/lib/python3/dist-packages/twisted/trial/_dist/__pycache__ 68 /usr/lib/python3/dist-packages/twisted/trial/_dist/test/__pycache__ 132 /usr/lib/python3/dist-packages/twisted/trial/_dist/test 252 /usr/lib/python3/dist-packages/twisted/trial/_dist 508 /usr/lib/python3/dist-packages/twisted/trial/test/__pycache__ 964 /usr/lib/python3/dist-packages/twisted/trial/test 1600 /usr/lib/python3/dist-packages/twisted/trial 16 /usr/lib/python3/dist-packages/twisted/python/_pydoctortemplates 564 /usr/lib/python3/dist-packages/twisted/python/__pycache__ 428 /usr/lib/python3/dist-packages/twisted/python/test/__pycache__ 836 /usr/lib/python3/dist-packages/twisted/python/test 2012 /usr/lib/python3/dist-packages/twisted/python 76 /usr/lib/python3/dist-packages/twisted/plugins/__pycache__ 160 /usr/lib/python3/dist-packages/twisted/plugins 76 /usr/lib/python3/dist-packages/twisted/internet/iocpreactor/__pycache__ 436 /usr/lib/python3/dist-packages/twisted/internet/iocpreactor/iocpsupport 604 /usr/lib/python3/dist-packages/twisted/internet/iocpreactor 908 /usr/lib/python3/dist-packages/twisted/internet/__pycache__ 720 /usr/lib/python3/dist-packages/twisted/internet/test/__pycache__ 24 /usr/lib/python3/dist-packages/twisted/internet/test/fake_CAs 1452 /usr/lib/python3/dist-packages/twisted/internet/test 3900 /usr/lib/python3/dist-packages/twisted/internet 112 /usr/lib/python3/dist-packages/twisted/logger/__pycache__ 160 /usr/lib/python3/dist-packages/twisted/logger/test/__pycache__ 312 /usr/lib/python3/dist-packages/twisted/logger/test 544 /usr/lib/python3/dist-packages/twisted/logger 28 /usr/lib/python3/dist-packages/twisted/web/_auth/__pycache__ 56 /usr/lib/python3/dist-packages/twisted/web/_auth 640 /usr/lib/python3/dist-packages/twisted/web/__pycache__ 1028 /usr/lib/python3/dist-packages/twisted/web/test/__pycache__ 2056 /usr/lib/python3/dist-packages/twisted/web/test 3448 /usr/lib/python3/dist-packages/twisted/web 92 /usr/lib/python3/dist-packages/twisted/positioning/__pycache__ 100 /usr/lib/python3/dist-packages/twisted/positioning/test/__pycache__ 192 /usr/lib/python3/dist-packages/twisted/positioning/test 364 /usr/lib/python3/dist-packages/twisted/positioning 28 /usr/lib/python3/dist-packages/twisted/__pycache__ 92 /usr/lib/python3/dist-packages/twisted/application/__pycache__ 20 /usr/lib/python3/dist-packages/twisted/application/twist/__pycache__ 28 /usr/lib/python3/dist-packages/twisted/application/twist/test/__pycache__ 56 /usr/lib/python3/dist-packages/twisted/application/twist/test 96 /usr/lib/python3/dist-packages/twisted/application/twist 32 /usr/lib/python3/dist-packages/twisted/application/runner/__pycache__ 44 /usr/lib/python3/dist-packages/twisted/application/runner/test/__pycache__ 88 /usr/lib/python3/dist-packages/twisted/application/runner/test 148 /usr/lib/python3/dist-packages/twisted/application/runner 48 /usr/lib/python3/dist-packages/twisted/application/test/__pycache__ 100 /usr/lib/python3/dist-packages/twisted/application/test 524 /usr/lib/python3/dist-packages/twisted/application 56 /usr/lib/python3/dist-packages/twisted/scripts/__pycache__ 16 /usr/lib/python3/dist-packages/twisted/scripts/test/__pycache__ 32 /usr/lib/python3/dist-packages/twisted/scripts/test 148 /usr/lib/python3/dist-packages/twisted/scripts 40 /usr/lib/python3/dist-packages/twisted/protocols/haproxy/__pycache__ 48 /usr/lib/python3/dist-packages/twisted/protocols/haproxy/test/__pycache__ 96 /usr/lib/python3/dist-packages/twisted/protocols/haproxy/test 180 /usr/lib/python3/dist-packages/twisted/protocols/haproxy 448 /usr/lib/python3/dist-packages/twisted/protocols/__pycache__ 120 /usr/lib/python3/dist-packages/twisted/protocols/test/__pycache__ 244 /usr/lib/python3/dist-packages/twisted/protocols/test 1312 /usr/lib/python3/dist-packages/twisted/protocols 40 /usr/lib/python3/dist-packages/twisted/runner/__pycache__ 36 /usr/lib/python3/dist-packages/twisted/runner/test/__pycache__ 72 /usr/lib/python3/dist-packages/twisted/runner/test 152 /usr/lib/python3/dist-packages/twisted/runner 60 /usr/lib/python3/dist-packages/twisted/cred/__pycache__ 84 /usr/lib/python3/dist-packages/twisted/cred/test/__pycache__ 164 /usr/lib/python3/dist-packages/twisted/cred/test 292 /usr/lib/python3/dist-packages/twisted/cred 36 /usr/lib/python3/dist-packages/twisted/_threads/__pycache__ 40 /usr/lib/python3/dist-packages/twisted/_threads/test/__pycache__ 76 /usr/lib/python3/dist-packages/twisted/_threads/test 148 /usr/lib/python3/dist-packages/twisted/_threads 64 /usr/lib/python3/dist-packages/twisted/persisted/__pycache__ 16 /usr/lib/python3/dist-packages/twisted/persisted/test/__pycache__ 28 /usr/lib/python3/dist-packages/twisted/persisted/test 164 /usr/lib/python3/dist-packages/twisted/persisted 1968 /usr/lib/python3/dist-packages/twisted/test/__pycache__ 3984 /usr/lib/python3/dist-packages/twisted/test 324 /usr/lib/python3/dist-packages/twisted/mail/__pycache__ 344 /usr/lib/python3/dist-packages/twisted/mail/test/__pycache__ 680 /usr/lib/python3/dist-packages/twisted/mail/test 1336 /usr/lib/python3/dist-packages/twisted/mail 24 /usr/lib/python3/dist-packages/twisted/enterprise/__pycache__ 52 /usr/lib/python3/dist-packages/twisted/enterprise 20 /usr/lib/python3/dist-packages/twisted/tap/__pycache__ 40 /usr/lib/python3/dist-packages/twisted/tap 244 /usr/lib/python3/dist-packages/twisted/names/__pycache__ 396 /usr/lib/python3/dist-packages/twisted/names/test/__pycache__ 792 /usr/lib/python3/dist-packages/twisted/names/test 1288 /usr/lib/python3/dist-packages/twisted/names 27452 /usr/lib/python3/dist-packages/twisted 60 /usr/lib/python3/dist-packages/landscape/sysinfo/__pycache__ 120 /usr/lib/python3/dist-packages/landscape/sysinfo 28 /usr/lib/python3/dist-packages/landscape/message_schemas/__pycache__ 64 /usr/lib/python3/dist-packages/landscape/message_schemas 12 /usr/lib/python3/dist-packages/landscape/__pycache__ 88 /usr/lib/python3/dist-packages/landscape/lib/apt/package/__pycache__ 172 /usr/lib/python3/dist-packages/landscape/lib/apt/package 8 /usr/lib/python3/dist-packages/landscape/lib/apt/__pycache__ 184 /usr/lib/python3/dist-packages/landscape/lib/apt 288 /usr/lib/python3/dist-packages/landscape/lib/__pycache__ 772 /usr/lib/python3/dist-packages/landscape/lib 980 /usr/lib/python3/dist-packages/landscape 24 /usr/lib/python3/dist-packages/MarkupSafe-1.0.egg-info 24 /usr/lib/python3/dist-packages/SecretStorage-2.3.1.egg-info 164 /usr/lib/python3/dist-packages/debian/__pycache__ 360 /usr/lib/python3/dist-packages/debian 36 /usr/lib/python3/dist-packages/systemd/__pycache__ 32 /usr/lib/python3/dist-packages/systemd/test/__pycache__ 64 /usr/lib/python3/dist-packages/systemd/test 252 /usr/lib/python3/dist-packages/systemd 148 /usr/lib/python3/dist-packages/ufw/__pycache__ 372 /usr/lib/python3/dist-packages/ufw 28 /usr/lib/python3/dist-packages/Jinja2-2.10.egg-info 20 /usr/lib/python3/dist-packages/Crypto/Random/OSRNG/__pycache__ 40 /usr/lib/python3/dist-packages/Crypto/Random/OSRNG 20 /usr/lib/python3/dist-packages/Crypto/Random/__pycache__ 24 /usr/lib/python3/dist-packages/Crypto/Random/Fortuna/__pycache__ 48 /usr/lib/python3/dist-packages/Crypto/Random/Fortuna 132 /usr/lib/python3/dist-packages/Crypto/Random 28 /usr/lib/python3/dist-packages/Crypto/Signature/__pycache__ 60 /usr/lib/python3/dist-packages/Crypto/Signature 68 /usr/lib/python3/dist-packages/Crypto/Cipher/__pycache__ 436 /usr/lib/python3/dist-packages/Crypto/Cipher 56 /usr/lib/python3/dist-packages/Crypto/Hash/__pycache__ 228 /usr/lib/python3/dist-packages/Crypto/Hash 176 /usr/lib/python3/dist-packages/Crypto/Util/__pycache__ 372 /usr/lib/python3/dist-packages/Crypto/Util 32 /usr/lib/python3/dist-packages/Crypto/Protocol/__pycache__ 72 /usr/lib/python3/dist-packages/Crypto/Protocol 28 /usr/lib/python3/dist-packages/Crypto/SelfTest/Random/OSRNG/__pycache__ 56 /usr/lib/python3/dist-packages/Crypto/SelfTest/Random/OSRNG 20 /usr/lib/python3/dist-packages/Crypto/SelfTest/Random/__pycache__ 24 /usr/lib/python3/dist-packages/Crypto/SelfTest/Random/Fortuna/__pycache__ 52 /usr/lib/python3/dist-packages/Crypto/SelfTest/Random/Fortuna 156 /usr/lib/python3/dist-packages/Crypto/SelfTest/Random 32 /usr/lib/python3/dist-packages/Crypto/SelfTest/Signature/__pycache__ 76 /usr/lib/python3/dist-packages/Crypto/SelfTest/Signature 172 /usr/lib/python3/dist-packages/Crypto/SelfTest/Cipher/__pycache__ 368 /usr/lib/python3/dist-packages/Crypto/SelfTest/Cipher 60 /usr/lib/python3/dist-packages/Crypto/SelfTest/Hash/__pycache__ 124 /usr/lib/python3/dist-packages/Crypto/SelfTest/Hash 36 /usr/lib/python3/dist-packages/Crypto/SelfTest/Util/__pycache__ 84 /usr/lib/python3/dist-packages/Crypto/SelfTest/Util 24 /usr/lib/python3/dist-packages/Crypto/SelfTest/Protocol/__pycache__ 48 /usr/lib/python3/dist-packages/Crypto/SelfTest/Protocol 12 /usr/lib/python3/dist-packages/Crypto/SelfTest/__pycache__ 60 /usr/lib/python3/dist-packages/Crypto/SelfTest/PublicKey/__pycache__ 128 /usr/lib/python3/dist-packages/Crypto/SelfTest/PublicKey 1008 /usr/lib/python3/dist-packages/Crypto/SelfTest 12 /usr/lib/python3/dist-packages/Crypto/__pycache__ 84 /usr/lib/python3/dist-packages/Crypto/PublicKey/__pycache__ 260 /usr/lib/python3/dist-packages/Crypto/PublicKey 2592 /usr/lib/python3/dist-packages/Crypto 28 /usr/lib/python3/dist-packages/pip-9.0.1.egg-info 292 /usr/lib/python3/dist-packages/__pycache__ 28 /usr/lib/python3/dist-packages/service_identity-16.0.0.egg-info 52 /usr/lib/python3/dist-packages/LanguageSelector/__pycache__ 112 /usr/lib/python3/dist-packages/LanguageSelector 152 /usr/lib/python3/dist-packages/xdg/__pycache__ 320 /usr/lib/python3/dist-packages/xdg 40 /usr/lib/python3/dist-packages/keyring-10.6.0.egg-info 16 /usr/lib/python3/dist-packages/distro_info-0.18ubuntu0.18.04.1.egg-info 20 /usr/lib/python3/dist-packages/configobj-5.0.6.egg-info 28 /usr/lib/python3/dist-packages/cloudinit/cmd/devel/__pycache__ 60 /usr/lib/python3/dist-packages/cloudinit/cmd/devel 52 /usr/lib/python3/dist-packages/cloudinit/cmd/__pycache__ 176 /usr/lib/python3/dist-packages/cloudinit/cmd 116 /usr/lib/python3/dist-packages/cloudinit/distros/__pycache__ 32 /usr/lib/python3/dist-packages/cloudinit/distros/parsers/__pycache__ 64 /usr/lib/python3/dist-packages/cloudinit/distros/parsers 328 /usr/lib/python3/dist-packages/cloudinit/distros 136 /usr/lib/python3/dist-packages/cloudinit/net/__pycache__ 304 /usr/lib/python3/dist-packages/cloudinit/net 404 /usr/lib/python3/dist-packages/cloudinit/config/__pycache__ 900 /usr/lib/python3/dist-packages/cloudinit/config 28 /usr/lib/python3/dist-packages/cloudinit/reporting/__pycache__ 60 /usr/lib/python3/dist-packages/cloudinit/reporting 12 /usr/lib/python3/dist-packages/cloudinit/filters/__pycache__ 20 /usr/lib/python3/dist-packages/cloudinit/filters 268 /usr/lib/python3/dist-packages/cloudinit/__pycache__ 64 /usr/lib/python3/dist-packages/cloudinit/sources/helpers/__pycache__ 8 /usr/lib/python3/dist-packages/cloudinit/sources/helpers/vmware/__pycache__ 84 /usr/lib/python3/dist-packages/cloudinit/sources/helpers/vmware/imc/__pycache__ 160 /usr/lib/python3/dist-packages/cloudinit/sources/helpers/vmware/imc 172 /usr/lib/python3/dist-packages/cloudinit/sources/helpers/vmware 308 /usr/lib/python3/dist-packages/cloudinit/sources/helpers 264 /usr/lib/python3/dist-packages/cloudinit/sources/__pycache__ 916 /usr/lib/python3/dist-packages/cloudinit/sources 20 /usr/lib/python3/dist-packages/cloudinit/mergers/__pycache__ 44 /usr/lib/python3/dist-packages/cloudinit/mergers 36 /usr/lib/python3/dist-packages/cloudinit/handlers/__pycache__ 80 /usr/lib/python3/dist-packages/cloudinit/handlers 28 /usr/lib/python3/dist-packages/cloudinit/analyze/__pycache__ 56 /usr/lib/python3/dist-packages/cloudinit/analyze 3476 /usr/lib/python3/dist-packages/cloudinit 32 /usr/lib/python3/dist-packages/service_identity/__pycache__ 64 /usr/lib/python3/dist-packages/service_identity 20 /usr/lib/python3/dist-packages/keyring/tests/__pycache__ 24 /usr/lib/python3/dist-packages/keyring/tests/backends/__pycache__ 44 /usr/lib/python3/dist-packages/keyring/tests/backends 84 /usr/lib/python3/dist-packages/keyring/tests 60 /usr/lib/python3/dist-packages/keyring/__pycache__ 20 /usr/lib/python3/dist-packages/keyring/util/__pycache__ 40 /usr/lib/python3/dist-packages/keyring/util 44 /usr/lib/python3/dist-packages/keyring/backends/__pycache__ 88 /usr/lib/python3/dist-packages/keyring/backends 328 /usr/lib/python3/dist-packages/keyring 20 /usr/lib/python3/dist-packages/language_selector-0.1.egg-info 72 /usr/lib/python3/dist-packages/keyrings/alt/__pycache__ 148 /usr/lib/python3/dist-packages/keyrings/alt 152 /usr/lib/python3/dist-packages/keyrings 92 /usr/lib/python3/dist-packages/attr/__pycache__ 192 /usr/lib/python3/dist-packages/attr 52 /usr/lib/python3/dist-packages/jwt/__pycache__ 16 /usr/lib/python3/dist-packages/jwt/contrib/algorithms/__pycache__ 28 /usr/lib/python3/dist-packages/jwt/contrib/algorithms 8 /usr/lib/python3/dist-packages/jwt/contrib/__pycache__ 40 /usr/lib/python3/dist-packages/jwt/contrib 152 /usr/lib/python3/dist-packages/jwt 56 /usr/lib/python3/dist-packages/incremental/tests/__pycache__ 108 /usr/lib/python3/dist-packages/incremental/tests 28 /usr/lib/python3/dist-packages/incremental/__pycache__ 168 /usr/lib/python3/dist-packages/incremental 52 /usr/lib/python3/dist-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__ 120 /usr/lib/python3/dist-packages/oauthlib/oauth1/rfc5849/endpoints 80 /usr/lib/python3/dist-packages/oauthlib/oauth1/rfc5849/__pycache__ 292 /usr/lib/python3/dist-packages/oauthlib/oauth1/rfc5849 8 /usr/lib/python3/dist-packages/oauthlib/oauth1/__pycache__ 308 /usr/lib/python3/dist-packages/oauthlib/oauth1 8 /usr/lib/python3/dist-packages/oauthlib/oauth2/__pycache__ 92 /usr/lib/python3/dist-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__ 200 /usr/lib/python3/dist-packages/oauthlib/oauth2/rfc6749/grant_types 68 /usr/lib/python3/dist-packages/oauthlib/oauth2/rfc6749/clients/__pycache__ 136 /usr/lib/python3/dist-packages/oauthlib/oauth2/rfc6749/clients 52 /usr/lib/python3/dist-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__ 108 /usr/lib/python3/dist-packages/oauthlib/oauth2/rfc6749/endpoints 84 /usr/lib/python3/dist-packages/oauthlib/oauth2/rfc6749/__pycache__ 608 /usr/lib/python3/dist-packages/oauthlib/oauth2/rfc6749 624 /usr/lib/python3/dist-packages/oauthlib/oauth2 36 /usr/lib/python3/dist-packages/oauthlib/__pycache__ 1004 /usr/lib/python3/dist-packages/oauthlib 8 /usr/lib/python3/dist-packages/janitor/__pycache__ 36 /usr/lib/python3/dist-packages/janitor/plugincore/__pycache__ 72 /usr/lib/python3/dist-packages/janitor/plugincore 88 /usr/lib/python3/dist-packages/janitor 40 /usr/lib/python3/dist-packages/wheel-0.30.0.egg-info 28 /usr/lib/python3/dist-packages/colorama-0.3.7.egg-info 16 /usr/lib/python3/dist-packages/jsonpointer-1.10.egg-info 40 /usr/lib/python3/dist-packages/blinker/__pycache__ 84 /usr/lib/python3/dist-packages/blinker 80 /usr/lib/python3/dist-packages/apport/crashdb_impl/__pycache__ 188 /usr/lib/python3/dist-packages/apport/crashdb_impl 236 /usr/lib/python3/dist-packages/apport/__pycache__ 756 /usr/lib/python3/dist-packages/apport 20 /usr/lib/python3/dist-packages/certifi-2018.1.18.egg-info 44 /usr/lib/python3/dist-packages/pygtkcompat/__pycache__ 88 /usr/lib/python3/dist-packages/pygtkcompat 24 /usr/lib/python3/dist-packages/setuptools-39.0.1.egg-info 36 /usr/lib/python3/dist-packages/colorama/__pycache__ 80 /usr/lib/python3/dist-packages/colorama 24 /usr/lib/python3/dist-packages/pyOpenSSL-17.5.0.egg-info 20 /usr/lib/python3/dist-packages/pyasn1-0.4.2.egg-info 140 /usr/lib/python3/dist-packages/dbus/__pycache__ 12 /usr/lib/python3/dist-packages/dbus/mainloop/__pycache__ 24 /usr/lib/python3/dist-packages/dbus/mainloop 352 /usr/lib/python3/dist-packages/dbus 432 /usr/lib/python3/dist-packages/jinja2/__pycache__ 916 /usr/lib/python3/dist-packages/jinja2 8 /usr/lib/python3/dist-packages/debian_bundle/__pycache__ 16 /usr/lib/python3/dist-packages/debian_bundle 20 /usr/lib/python3/dist-packages/zope/interface/common/tests/__pycache__ 40 /usr/lib/python3/dist-packages/zope/interface/common/tests 56 /usr/lib/python3/dist-packages/zope/interface/common/__pycache__ 144 /usr/lib/python3/dist-packages/zope/interface/common 496 /usr/lib/python3/dist-packages/zope/interface/tests/__pycache__ 900 /usr/lib/python3/dist-packages/zope/interface/tests 176 /usr/lib/python3/dist-packages/zope/interface/__pycache__ 1440 /usr/lib/python3/dist-packages/zope/interface 8 /usr/lib/python3/dist-packages/zope/__pycache__ 1456 /usr/lib/python3/dist-packages/zope 16 /usr/lib/python3/dist-packages/certifi/__pycache__ 300 /usr/lib/python3/dist-packages/certifi 92 /usr/lib/python3/dist-packages/softwareproperties/__pycache__ 24 /usr/lib/python3/dist-packages/softwareproperties/dbus/__pycache__ 48 /usr/lib/python3/dist-packages/softwareproperties/dbus 252 /usr/lib/python3/dist-packages/softwareproperties 63268 /usr/lib/python3/dist-packages 63272 /usr/lib/python3 20028 /usr/lib/lxd 4 /usr/lib/binfmt.d 3364 /usr/lib/grub/i386-pc 3368 /usr/lib/grub 128 /usr/lib/tc 12 /usr/lib/x86_64-linux-gnu/pkgconfig 68 /usr/lib/x86_64-linux-gnu/perl5/5.26/File/FcntlLock 88 /usr/lib/x86_64-linux-gnu/perl5/5.26/File 12 /usr/lib/x86_64-linux-gnu/perl5/5.26/Locale 16 /usr/lib/x86_64-linux-gnu/perl5/5.26/Text 8 /usr/lib/x86_64-linux-gnu/perl5/5.26/Algorithm/Diff 12 /usr/lib/x86_64-linux-gnu/perl5/5.26/Algorithm 16 /usr/lib/x86_64-linux-gnu/perl5/5.26/auto/File/FcntlLock 20 /usr/lib/x86_64-linux-gnu/perl5/5.26/auto/File 24 /usr/lib/x86_64-linux-gnu/perl5/5.26/auto/Locale/gettext 28 /usr/lib/x86_64-linux-gnu/perl5/5.26/auto/Locale 16 /usr/lib/x86_64-linux-gnu/perl5/5.26/auto/Text/CharWidth 28 /usr/lib/x86_64-linux-gnu/perl5/5.26/auto/Text/Iconv 48 /usr/lib/x86_64-linux-gnu/perl5/5.26/auto/Text 20 /usr/lib/x86_64-linux-gnu/perl5/5.26/auto/Algorithm/Diff/XS 24 /usr/lib/x86_64-linux-gnu/perl5/5.26/auto/Algorithm/Diff 28 /usr/lib/x86_64-linux-gnu/perl5/5.26/auto/Algorithm 128 /usr/lib/x86_64-linux-gnu/perl5/5.26/auto 260 /usr/lib/x86_64-linux-gnu/perl5/5.26 264 /usr/lib/x86_64-linux-gnu/perl5 20 /usr/lib/x86_64-linux-gnu/awk 4 /usr/lib/x86_64-linux-gnu/krb5/plugins/libkrb5 8 /usr/lib/x86_64-linux-gnu/krb5/plugins 12 /usr/lib/x86_64-linux-gnu/krb5 208 /usr/lib/x86_64-linux-gnu/sasl2 16 /usr/lib/x86_64-linux-gnu/lxc/hooks 212 /usr/lib/x86_64-linux-gnu/lxc 688 /usr/lib/x86_64-linux-gnu/rsyslog 72 /usr/lib/x86_64-linux-gnu/lxcfs 6568 /usr/lib/x86_64-linux-gnu/gconv 280 /usr/lib/x86_64-linux-gnu/openssl-1.0.0/engines 284 /usr/lib/x86_64-linux-gnu/openssl-1.0.0 616 /usr/lib/x86_64-linux-gnu/girepository-1.0 60 /usr/lib/x86_64-linux-gnu/glib-2.0 12 /usr/lib/x86_64-linux-gnu/coreutils 108 /usr/lib/x86_64-linux-gnu/libfakeroot 16 /usr/lib/x86_64-linux-gnu/perl-base/File/Spec 104 /usr/lib/x86_64-linux-gnu/perl-base/File 8 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Blk 12 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CWU 12 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CI 8 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dia 44 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc 72 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg 8 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CE 44 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB 184 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx 180 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc 60 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc 8 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dep 8 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Cased 60 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt 12 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CWCF 8 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Math 8 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Hex 72 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age 60 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB 8 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Hyphen 8 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/UIdeo 8 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/QMark 12 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFKCQC 8 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/BidiM 156 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc 88 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC 16 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CWKCF 20 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFKDQC 8 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dash 8 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/PatSyn 8 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/BidiC 200 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv 12 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/XIDS 52 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC 12 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/XIDC 12 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lower 8 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ext 8 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/PCM 8 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Hst 16 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GrBase 12 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/IDC 24 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ea 132 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In 132 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl 8 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/STerm 8 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CompEx 12 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CWL 8 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Term 24 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jt 12 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Alpha 8 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CWCM 12 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFCQC 72 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB 12 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Upper 16 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nt 96 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb 16 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bpt 8 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/DI 12 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/IDS 8 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SD 12 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFDQC 12 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CWT 8 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ideo 2212 /usr/lib/x86_64-linux-gnu/perl-base/unicore/lib 992 /usr/lib/x86_64-linux-gnu/perl-base/unicore/To 3340 /usr/lib/x86_64-linux-gnu/perl-base/unicore 8 /usr/lib/x86_64-linux-gnu/perl-base/Scalar 40 /usr/lib/x86_64-linux-gnu/perl-base/IO/Socket 88 /usr/lib/x86_64-linux-gnu/perl-base/IO 8 /usr/lib/x86_64-linux-gnu/perl-base/Carp 20 /usr/lib/x86_64-linux-gnu/perl-base/IPC 16 /usr/lib/x86_64-linux-gnu/perl-base/Hash 20 /usr/lib/x86_64-linux-gnu/perl-base/Text 12 /usr/lib/x86_64-linux-gnu/perl-base/Exporter 8 /usr/lib/x86_64-linux-gnu/perl-base/warnings 48 /usr/lib/x86_64-linux-gnu/perl-base/Getopt 8 /usr/lib/x86_64-linux-gnu/perl-base/Tie 536 /usr/lib/x86_64-linux-gnu/perl-base/auto/re 32 /usr/lib/x86_64-linux-gnu/perl-base/auto/File/Glob 36 /usr/lib/x86_64-linux-gnu/perl-base/auto/File 20 /usr/lib/x86_64-linux-gnu/perl-base/auto/Cwd 24 /usr/lib/x86_64-linux-gnu/perl-base/auto/IO 24 /usr/lib/x86_64-linux-gnu/perl-base/auto/Fcntl 48 /usr/lib/x86_64-linux-gnu/perl-base/auto/Socket 24 /usr/lib/x86_64-linux-gnu/perl-base/auto/Hash/Util 28 /usr/lib/x86_64-linux-gnu/perl-base/auto/Hash 108 /usr/lib/x86_64-linux-gnu/perl-base/auto/POSIX 52 /usr/lib/x86_64-linux-gnu/perl-base/auto/List/Util 56 /usr/lib/x86_64-linux-gnu/perl-base/auto/List 16 /usr/lib/x86_64-linux-gnu/perl-base/auto/attributes 900 /usr/lib/x86_64-linux-gnu/perl-base/auto 8 /usr/lib/x86_64-linux-gnu/perl-base/List 4944 /usr/lib/x86_64-linux-gnu/perl-base 16 /usr/lib/x86_64-linux-gnu/polkit-1/extensions 20 /usr/lib/x86_64-linux-gnu/polkit-1 16 /usr/lib/x86_64-linux-gnu/utempter 16 /usr/lib/x86_64-linux-gnu/audit 1352 /usr/lib/x86_64-linux-gnu/xtables 44 /usr/lib/x86_64-linux-gnu/engines-1.1 440 /usr/lib/x86_64-linux-gnu/blas 60 /usr/lib/x86_64-linux-gnu/plymouth/renderers 232 /usr/lib/x86_64-linux-gnu/plymouth 180 /usr/lib/x86_64-linux-gnu/gawk 1692 /usr/lib/x86_64-linux-gnu/ldscripts 4 /usr/lib/x86_64-linux-gnu/perl/cross-config-5.26.1 52 /usr/lib/x86_64-linux-gnu/perl/5.26.1/Data 24 /usr/lib/x86_64-linux-gnu/perl/5.26.1/PerlIO 3464 /usr/lib/x86_64-linux-gnu/perl/5.26.1/CORE 92 /usr/lib/x86_64-linux-gnu/perl/5.26.1/File/Spec 112 /usr/lib/x86_64-linux-gnu/perl/5.26.1/File 72 /usr/lib/x86_64-linux-gnu/perl/5.26.1/sys 8 /usr/lib/x86_64-linux-gnu/perl/5.26.1/Scalar 16 /usr/lib/x86_64-linux-gnu/perl/5.26.1/linux 12 /usr/lib/x86_64-linux-gnu/perl/5.26.1/Math/BigInt 16 /usr/lib/x86_64-linux-gnu/perl/5.26.1/Math 16 /usr/lib/x86_64-linux-gnu/perl/5.26.1/IO/Socket 80 /usr/lib/x86_64-linux-gnu/perl/5.26.1/IO 52 /usr/lib/x86_64-linux-gnu/perl/5.26.1/asm-generic 8 /usr/lib/x86_64-linux-gnu/perl/5.26.1/Encode/KR 12 /usr/lib/x86_64-linux-gnu/perl/5.26.1/Encode/CN 8 /usr/lib/x86_64-linux-gnu/perl/5.26.1/Encode/Unicode 8 /usr/lib/x86_64-linux-gnu/perl/5.26.1/Encode/MIME/Header 36 /usr/lib/x86_64-linux-gnu/perl/5.26.1/Encode/MIME 20 /usr/lib/x86_64-linux-gnu/perl/5.26.1/Encode/JP 200 /usr/lib/x86_64-linux-gnu/perl/5.26.1/Encode 12 /usr/lib/x86_64-linux-gnu/perl/5.26.1/gnu 76 /usr/lib/x86_64-linux-gnu/perl/5.26.1/bits/types 312 /usr/lib/x86_64-linux-gnu/perl/5.26.1/bits 56 /usr/lib/x86_64-linux-gnu/perl/5.26.1/Sys 36 /usr/lib/x86_64-linux-gnu/perl/5.26.1/IPC 92 /usr/lib/x86_64-linux-gnu/perl/5.26.1/B 40 /usr/lib/x86_64-linux-gnu/perl/5.26.1/Digest 136 /usr/lib/x86_64-linux-gnu/perl/5.26.1/asm 8 /usr/lib/x86_64-linux-gnu/perl/5.26.1/I18N 36 /usr/lib/x86_64-linux-gnu/perl/5.26.1/Hash/Util 52 /usr/lib/x86_64-linux-gnu/perl/5.26.1/Hash 12 /usr/lib/x86_64-linux-gnu/perl/5.26.1/Sub 64 /usr/lib/x86_64-linux-gnu/perl/5.26.1/Compress/Raw 68 /usr/lib/x86_64-linux-gnu/perl/5.26.1/Compress 24 /usr/lib/x86_64-linux-gnu/perl/5.26.1/Unicode/Collate 112 /usr/lib/x86_64-linux-gnu/perl/5.26.1/Unicode 60 /usr/lib/x86_64-linux-gnu/perl/5.26.1/Time 248 /usr/lib/x86_64-linux-gnu/perl/5.26.1/Devel 8 /usr/lib/x86_64-linux-gnu/perl/5.26.1/Tie/Hash 12 /usr/lib/x86_64-linux-gnu/perl/5.26.1/Tie 16 /usr/lib/x86_64-linux-gnu/perl/5.26.1/MIME 20 /usr/lib/x86_64-linux-gnu/perl/5.26.1/Filter/Util 24 /usr/lib/x86_64-linux-gnu/perl/5.26.1/Filter 536 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/re 44 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Data/Dumper 48 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Data 24 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/ODBM_File 24 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/mro 20 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/PerlIO/scalar 16 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/PerlIO/mmap 32 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/PerlIO/encoding 24 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/PerlIO/via 96 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/PerlIO 32 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/File/Glob 12 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/File/DosGlob 48 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/File 20 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Cwd 20 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Math/BigInt/FastCalc 24 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Math/BigInt 28 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Math 24 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/IO 2360 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Encode/KR 48 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Encode/EBCDIC 364 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Encode/Byte 60 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Encode/Symbol 2048 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Encode/CN 1980 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Encode/TW 24 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Encode/Unicode 2688 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Encode/JP 9616 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Encode 24 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Sys/Syslog 12 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Sys/Hostname 40 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Sys 32 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/IPC/SysV 36 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/IPC 92 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/B 24 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Fcntl 32 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/SDBM_File 52 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/DB_File 48 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Socket 24 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Digest/MD5 48 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Digest/SHA 76 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Digest 20 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/I18N/Langinfo 24 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/I18N 24 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Hash/Util/FieldHash 48 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Hash/Util 52 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Hash 108 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/POSIX 24 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/NDBM_File 36 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Compress/Raw/Bzip2 64 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Compress/Raw/Zlib 104 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Compress/Raw 108 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Compress 516 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Unicode/Normalize 1404 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Unicode/Collate 1924 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Unicode 32 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Time/HiRes 24 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Time/Piece 60 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Time 24 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/arybase 28 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/GDBM_File 24 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Opcode 20 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Devel/Peek 24 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Devel 16 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Tie/Hash/NamedCapture 20 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Tie/Hash 24 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Tie 20 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/MIME/Base64 24 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/MIME 20 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Filter/Util/Call 24 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Filter/Util 28 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Filter 40 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/threads/shared 84 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/threads 92 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/Storable 52 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/List/Util 56 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/List 16 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto/attributes 13592 /usr/lib/x86_64-linux-gnu/perl/5.26.1/auto 28 /usr/lib/x86_64-linux-gnu/perl/5.26.1/threads 8 /usr/lib/x86_64-linux-gnu/perl/5.26.1/List/Util 16 /usr/lib/x86_64-linux-gnu/perl/5.26.1/List 19928 /usr/lib/x86_64-linux-gnu/perl/5.26.1 56 /usr/lib/x86_64-linux-gnu/perl/debian-config-data-5.26.1 19992 /usr/lib/x86_64-linux-gnu/perl 147400 /usr/lib/x86_64-linux-gnu 20 /usr/lib/ssl/misc 24 /usr/lib/ssl 8 /usr/lib/dracut/modules.d/90bcache 12 /usr/lib/dracut/modules.d 16 /usr/lib/dracut 272 /usr/lib/man-db 4 /usr/lib/modules-load.d 328 /usr/lib/initramfs-tools/bin 8 /usr/lib/initramfs-tools/etc/dhcp/dhclient-enter-hooks.d 16 /usr/lib/initramfs-tools/etc/dhcp 20 /usr/lib/initramfs-tools/etc 352 /usr/lib/initramfs-tools 36 /usr/lib/policykit-1 4 /usr/lib/python2.7/dist-packages 8 /usr/lib/python2.7 120 /usr/lib/sysstat 104 /usr/lib/git-core/mergetools 22232 /usr/lib/git-core 8 /usr/lib/initcpio/install 12 /usr/lib/initcpio 24 /usr/lib/python3.7/lib-dynload 48 /usr/lib/python3.7/lib2to3/pgen2 12 /usr/lib/python3.7/lib2to3/fixes 136 /usr/lib/python3.7/lib2to3 72 /usr/lib/python3.7/distutils/command 316 /usr/lib/python3.7/distutils 480 /usr/lib/python3.7 8 /usr/lib/os-probes/init 12 /usr/lib/os-probes/mounted/efi 72 /usr/lib/os-probes/mounted 88 /usr/lib/os-probes 8 /usr/lib/sysusers.d 16 /usr/lib/eject 504 /usr/lib/sudo 60 /usr/lib/cloud-init 8 /usr/lib/ubuntu-fan 45864 /usr/lib/snapd 140 /usr/lib/open-vm-tools/plugins/common 172 /usr/lib/open-vm-tools/plugins/vmsvc 316 /usr/lib/open-vm-tools/plugins 320 /usr/lib/open-vm-tools 16 /usr/lib/ubuntu-release-upgrader 500852 /usr/lib 4 /usr/local/sbin 4 /usr/local/games 4 /usr/local/bin 4 /usr/local/share/ca-certificates 4 /usr/local/share/man 12 /usr/local/share 4 /usr/local/include 4 /usr/local/etc 4 /usr/local/src 4 /usr/local/lib/python3.6/dist-packages 8 /usr/local/lib/python3.6 12 /usr/local/lib 52 /usr/local 1497916 /usr jc-1.17.3/tests/fixtures/ubuntu-18.04/env.json000066400000000000000000000051331415226333200206720ustar00rootroot00000000000000[{"name": "LS_COLORS", "value": "rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:"}, {"name": "SSH_CONNECTION", "value": "192.168.71.1 65159 192.168.71.131 22"}, {"name": "LESSCLOSE", "value": "/usr/bin/lesspipe %s %s"}, {"name": "LANG", "value": "en_US.UTF-8"}, {"name": "OLDPWD", "value": "/home/kbrazil"}, {"name": "XDG_SESSION_ID", "value": "49"}, {"name": "USER", "value": "kbrazil"}, {"name": "PWD", "value": "/home/kbrazil/testfiles"}, {"name": "HOME", "value": "/home/kbrazil"}, {"name": "SSH_CLIENT", "value": "192.168.71.1 65159 22"}, {"name": "XDG_DATA_DIRS", "value": "/usr/local/share:/usr/share:/var/lib/snapd/desktop"}, {"name": "SSH_TTY", "value": "/dev/pts/0"}, {"name": "MAIL", "value": "/var/mail/kbrazil"}, {"name": "SHELL", "value": "/bin/bash"}, {"name": "TERM", "value": "xterm-256color"}, {"name": "SHLVL", "value": "2"}, {"name": "LOGNAME", "value": "kbrazil"}, {"name": "XDG_RUNTIME_DIR", "value": "/run/user/1000"}, {"name": "PATH", "value": "/home/kbrazil/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin"}, {"name": "LESSOPEN", "value": "| /usr/bin/lesspipe %s"}, {"name": "_", "value": "/usr/bin/env"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/env.out000066400000000000000000000041151415226333200205270ustar00rootroot00000000000000LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: SSH_CONNECTION=192.168.71.1 65159 192.168.71.131 22 LESSCLOSE=/usr/bin/lesspipe %s %s LANG=en_US.UTF-8 OLDPWD=/home/kbrazil XDG_SESSION_ID=49 USER=kbrazil PWD=/home/kbrazil/testfiles HOME=/home/kbrazil SSH_CLIENT=192.168.71.1 65159 22 XDG_DATA_DIRS=/usr/local/share:/usr/share:/var/lib/snapd/desktop SSH_TTY=/dev/pts/0 MAIL=/var/mail/kbrazil SHELL=/bin/bash TERM=xterm-256color SHLVL=2 LOGNAME=kbrazil XDG_RUNTIME_DIR=/run/user/1000 PATH=/home/kbrazil/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin LESSOPEN=| /usr/bin/lesspipe %s _=/usr/bin/env jc-1.17.3/tests/fixtures/ubuntu-18.04/file.json000066400000000000000000000021051415226333200210150ustar00rootroot00000000000000[{"filename": "crayaml.yaml", "type": "ASCII text"}, {"filename": "git", "type": "directory"}, {"filename": "ifconfig-ubuntu.out", "type": "ASCII text"}, {"filename": "iptables-tests", "type": "directory"}, {"filename": "lastb.out", "type": "ASCII text"}, {"filename": "listjobs", "type": "ASCII text"}, {"filename": "ls-lR.out", "type": "ASCII text"}, {"filename": "ls-R.out", "type": "ASCII text"}, {"filename": "netstat-ae.out", "type": "ASCII text"}, {"filename": "netstat-aew.out", "type": "ASCII text"}, {"filename": "netstat-a.out", "type": "ASCII text"}, {"filename": "netstat-aw.out", "type": "ASCII text"}, {"filename": "resizeterm.sh", "type": "Bourne-Again shell script, ASCII text executable"}, {"filename": "snap", "type": "directory"}, {"filename": "ssout", "type": "ASCII text"}, {"filename": "sudofix", "type": "ASCII text"}, {"filename": "testfiles", "type": "directory"}, {"filename": "tmp", "type": "directory"}, {"filename": "trafficgen.sh", "type": "Bourne-Again shell script, ASCII text executable"}, {"filename": "xmltest.xml", "type": "XML 1.0 document, ASCII text"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/file.out000066400000000000000000000013311415226333200206530ustar00rootroot00000000000000crayaml.yaml: ASCII text git: directory ifconfig-ubuntu.out: ASCII text iptables-tests: directory lastb.out: ASCII text listjobs: ASCII text ls-lR.out: ASCII text ls-R.out: ASCII text netstat-ae.out: ASCII text netstat-aew.out: ASCII text netstat-a.out: ASCII text netstat-aw.out: ASCII text resizeterm.sh: Bourne-Again shell script, ASCII text executable snap: directory ssout: ASCII text sudofix: ASCII text testfiles: directory tmp: directory trafficgen.sh: Bourne-Again shell script, ASCII text executable xmltest.xml: XML 1.0 document, ASCII text jc-1.17.3/tests/fixtures/ubuntu-18.04/finger.json000066400000000000000000000026441415226333200213600ustar00rootroot00000000000000[{"login":"kbrazil","name":"Kelly Brazil","tty":"tty1","idle":"14d","login_time":"Mar 22 21:14","tty_writeable":false,"idle_minutes":0,"idle_hours":0,"idle_days":14,"total_idle_minutes":20160},{"login":"kbrazil","name":"Kelly Brazil","tty":"pts/0","idle":null,"login_time":"Apr 5 15:33","details":"(192.168.1.22)","tty_writeable":true,"idle_minutes":0,"idle_hours":0,"idle_days":0,"total_idle_minutes":0},{"login":"kbrazil","name":"Kelly Brazil","tty":"pts/1","idle":"1:00","login_time":"Apr 6 09:04","details":"(192.168.1.22)","tty_writeable":true,"idle_minutes":0,"idle_hours":1,"idle_days":0,"total_idle_minutes":60},{"login":"kbrazil","name":"Kelly Brazil","tty":"pts/0","idle":"14","login_time":"Apr 5 12:30","tty_writeable":true,"idle_minutes":14,"idle_hours":0,"idle_days":0,"total_idle_minutes":14},{"login":"kbrazil","name":"Kelly Brazil","tty":"pts/0","idle":"14","login_time":"Apr 5 2020","tty_writeable":true,"idle_minutes":14,"idle_hours":0,"idle_days":0,"total_idle_minutes":14},{"login":"kbrazil","name":"Kelly Brazil","tty":"pts/0","idle":"14","login_time":"Apr 5 2021","details":"(192.168.1.23)","tty_writeable":true,"idle_minutes":14,"idle_hours":0,"idle_days":0,"total_idle_minutes":14},{"login":"kbrazil","name":"Kelly Brazil","tty":"pts/1","idle":"1:00","login_time":"Apr 6 09:04","details":"(192.168.1.22) other details","tty_writeable":true,"idle_minutes":0,"idle_hours":1,"idle_days":0,"total_idle_minutes":60}] jc-1.17.3/tests/fixtures/ubuntu-18.04/finger.out000066400000000000000000000010131415226333200212030ustar00rootroot00000000000000Login Name Tty Idle Login Time Office Office Phone kbrazil Kelly Brazil *tty1 14d Mar 22 21:14 kbrazil Kelly Brazil pts/0 Apr 5 15:33 (192.168.1.22) kbrazil Kelly Brazil pts/1 1:00 Apr 6 09:04 (192.168.1.22) kbrazil Kelly Brazil pts/0 14 Apr 5 12:30 kbrazil Kelly Brazil pts/0 14 Apr 5 2020 kbrazil Kelly Brazil pts/0 14 Apr 5 2021 (192.168.1.23) kbrazil Kelly Brazil pts/1 1:00 Apr 6 09:04 (192.168.1.22) other details jc-1.17.3/tests/fixtures/ubuntu-18.04/free-h.json000066400000000000000000000002071415226333200212450ustar00rootroot00000000000000[{"type":"Mem","total":1,"used":237,"free":466,"shared":1,"buff_cache":1,"available":1},{"type":"Swap","total":2,"used":268,"free":2}] jc-1.17.3/tests/fixtures/ubuntu-18.04/free-h.out000066400000000000000000000003141415226333200211020ustar00rootroot00000000000000 total used free shared buff/cache available Mem: 1.9G 237M 466M 1.2M 1.2G 1.5G Swap: 2.0G 268K 2.0G jc-1.17.3/tests/fixtures/ubuntu-18.04/free.json000066400000000000000000000003031415226333200210150ustar00rootroot00000000000000[{"type": "Mem", "total": 2017300, "used": 242740, "free": 478228, "shared": 1196, "buff_cache": 1296332, "available": 1585920}, {"type": "Swap", "total": 2097148, "used": 268, "free": 2096880}] jc-1.17.3/tests/fixtures/ubuntu-18.04/free.out000066400000000000000000000003141415226333200206550ustar00rootroot00000000000000 total used free shared buff/cache available Mem: 2017300 242740 478228 1196 1296332 1585920 Swap: 2097148 268 2096880 jc-1.17.3/tests/fixtures/ubuntu-18.04/fstab.json000066400000000000000000000004141415226333200211760ustar00rootroot00000000000000[{"fs_spec": "UUID=011527a0-c72a-4c00-a50e-ee90da26b6e2", "fs_file": "/", "fs_vfstype": "ext4", "fs_mntops": "defaults", "fs_freq": 0, "fs_passno": 0}, {"fs_spec": "/swap.img", "fs_file": "none", "fs_vfstype": "swap", "fs_mntops": "sw", "fs_freq": 0, "fs_passno": 0}] jc-1.17.3/tests/fixtures/ubuntu-18.04/fstab.out000066400000000000000000000001701415226333200210330ustar00rootroot00000000000000UUID=011527a0-c72a-4c00-a50e-ee90da26b6e2 / ext4 defaults 0 0 /swap.img none swap sw 0 0 # this is a comment jc-1.17.3/tests/fixtures/ubuntu-18.04/group.json000066400000000000000000000071711415226333200212420ustar00rootroot00000000000000[{"group_name": "root", "password": "x", "gid": 0, "members": []}, {"group_name": "daemon", "password": "x", "gid": 1, "members": []}, {"group_name": "bin", "password": "x", "gid": 2, "members": []}, {"group_name": "sys", "password": "x", "gid": 3, "members": []}, {"group_name": "adm", "password": "x", "gid": 4, "members": ["syslog", "joeuser"]}, {"group_name": "tty", "password": "x", "gid": 5, "members": []}, {"group_name": "disk", "password": "x", "gid": 6, "members": []}, {"group_name": "lp", "password": "x", "gid": 7, "members": []}, {"group_name": "mail", "password": "x", "gid": 8, "members": []}, {"group_name": "news", "password": "x", "gid": 9, "members": []}, {"group_name": "uucp", "password": "x", "gid": 10, "members": []}, {"group_name": "man", "password": "x", "gid": 12, "members": []}, {"group_name": "proxy", "password": "x", "gid": 13, "members": []}, {"group_name": "kmem", "password": "x", "gid": 15, "members": []}, {"group_name": "dialout", "password": "x", "gid": 20, "members": []}, {"group_name": "fax", "password": "x", "gid": 21, "members": []}, {"group_name": "voice", "password": "x", "gid": 22, "members": []}, {"group_name": "cdrom", "password": "x", "gid": 24, "members": ["joeuser"]}, {"group_name": "floppy", "password": "x", "gid": 25, "members": []}, {"group_name": "tape", "password": "x", "gid": 26, "members": []}, {"group_name": "sudo", "password": "x", "gid": 27, "members": ["joeuser"]}, {"group_name": "audio", "password": "x", "gid": 29, "members": []}, {"group_name": "dip", "password": "x", "gid": 30, "members": ["joeuser"]}, {"group_name": "www-data", "password": "x", "gid": 33, "members": []}, {"group_name": "backup", "password": "x", "gid": 34, "members": []}, {"group_name": "operator", "password": "x", "gid": 37, "members": []}, {"group_name": "list", "password": "x", "gid": 38, "members": []}, {"group_name": "irc", "password": "x", "gid": 39, "members": []}, {"group_name": "src", "password": "x", "gid": 40, "members": []}, {"group_name": "gnats", "password": "x", "gid": 41, "members": []}, {"group_name": "shadow", "password": "x", "gid": 42, "members": []}, {"group_name": "utmp", "password": "x", "gid": 43, "members": []}, {"group_name": "video", "password": "x", "gid": 44, "members": []}, {"group_name": "sasl", "password": "x", "gid": 45, "members": []}, {"group_name": "plugdev", "password": "x", "gid": 46, "members": ["joeuser"]}, {"group_name": "staff", "password": "x", "gid": 50, "members": []}, {"group_name": "games", "password": "x", "gid": 60, "members": []}, {"group_name": "users", "password": "x", "gid": 100, "members": []}, {"group_name": "nogroup", "password": "x", "gid": 65534, "members": []}, {"group_name": "systemd-journal", "password": "x", "gid": 101, "members": []}, {"group_name": "systemd-network", "password": "x", "gid": 102, "members": []}, {"group_name": "systemd-resolve", "password": "x", "gid": 103, "members": []}, {"group_name": "input", "password": "x", "gid": 104, "members": []}, {"group_name": "crontab", "password": "x", "gid": 105, "members": []}, {"group_name": "syslog", "password": "x", "gid": 106, "members": []}, {"group_name": "messagebus", "password": "x", "gid": 107, "members": []}, {"group_name": "lxd", "password": "x", "gid": 108, "members": ["joeuser"]}, {"group_name": "mlocate", "password": "x", "gid": 109, "members": []}, {"group_name": "uuidd", "password": "x", "gid": 110, "members": []}, {"group_name": "ssh", "password": "x", "gid": 111, "members": []}, {"group_name": "landscape", "password": "x", "gid": 112, "members": []}, {"group_name": "joeuser", "password": "x", "gid": 1000, "members": []}, {"group_name": "docker", "password": "x", "gid": 113, "members": []}] jc-1.17.3/tests/fixtures/ubuntu-18.04/group.out000066400000000000000000000013211415226333200210670ustar00rootroot00000000000000root:x:0: daemon:x:1: bin:x:2: sys:x:3: adm:x:4:syslog,joeuser tty:x:5: disk:x:6: lp:x:7: mail:x:8: news:x:9: uucp:x:10: man:x:12: proxy:x:13: kmem:x:15: dialout:x:20: fax:x:21: voice:x:22: cdrom:x:24:joeuser floppy:x:25: tape:x:26: sudo:x:27:joeuser audio:x:29: dip:x:30:joeuser www-data:x:33: backup:x:34: operator:x:37: list:x:38: irc:x:39: src:x:40: gnats:x:41: shadow:x:42: utmp:x:43: video:x:44: sasl:x:45: plugdev:x:46:joeuser staff:x:50: games:x:60: users:x:100: nogroup:x:65534: systemd-journal:x:101: systemd-network:x:102: systemd-resolve:x:103: input:x:104: crontab:x:105: syslog:x:106: messagebus:x:107: lxd:x:108:joeuser mlocate:x:109: uuidd:x:110: ssh:x:111: landscape:x:112: joeuser:x:1000: docker:x:113: jc-1.17.3/tests/fixtures/ubuntu-18.04/gshadow.json000066400000000000000000000102671415226333200215420ustar00rootroot00000000000000[{"group_name": "root", "password": "*", "administrators": [], "members": []}, {"group_name": "daemon", "password": "*", "administrators": [], "members": []}, {"group_name": "bin", "password": "*", "administrators": [], "members": []}, {"group_name": "sys", "password": "*", "administrators": [], "members": []}, {"group_name": "adm", "password": "*", "administrators": [], "members": ["syslog", "joeuser"]}, {"group_name": "tty", "password": "*", "administrators": [], "members": []}, {"group_name": "disk", "password": "*", "administrators": [], "members": []}, {"group_name": "lp", "password": "*", "administrators": [], "members": []}, {"group_name": "mail", "password": "*", "administrators": [], "members": []}, {"group_name": "news", "password": "*", "administrators": [], "members": []}, {"group_name": "uucp", "password": "*", "administrators": [], "members": []}, {"group_name": "man", "password": "*", "administrators": [], "members": []}, {"group_name": "proxy", "password": "*", "administrators": [], "members": []}, {"group_name": "kmem", "password": "*", "administrators": [], "members": []}, {"group_name": "dialout", "password": "*", "administrators": [], "members": []}, {"group_name": "fax", "password": "*", "administrators": [], "members": []}, {"group_name": "voice", "password": "*", "administrators": [], "members": []}, {"group_name": "cdrom", "password": "*", "administrators": [], "members": ["joeuser"]}, {"group_name": "floppy", "password": "*", "administrators": [], "members": []}, {"group_name": "tape", "password": "*", "administrators": [], "members": []}, {"group_name": "sudo", "password": "*", "administrators": [], "members": ["joeuser"]}, {"group_name": "audio", "password": "*", "administrators": [], "members": []}, {"group_name": "dip", "password": "*", "administrators": [], "members": ["joeuser"]}, {"group_name": "www-data", "password": "*", "administrators": [], "members": []}, {"group_name": "backup", "password": "*", "administrators": [], "members": []}, {"group_name": "operator", "password": "*", "administrators": [], "members": []}, {"group_name": "list", "password": "*", "administrators": [], "members": []}, {"group_name": "irc", "password": "*", "administrators": [], "members": []}, {"group_name": "src", "password": "*", "administrators": [], "members": []}, {"group_name": "gnats", "password": "*", "administrators": [], "members": []}, {"group_name": "shadow", "password": "*", "administrators": [], "members": []}, {"group_name": "utmp", "password": "*", "administrators": [], "members": []}, {"group_name": "video", "password": "*", "administrators": [], "members": []}, {"group_name": "sasl", "password": "*", "administrators": [], "members": []}, {"group_name": "plugdev", "password": "*", "administrators": [], "members": ["joeuser"]}, {"group_name": "staff", "password": "*", "administrators": [], "members": []}, {"group_name": "games", "password": "*", "administrators": [], "members": []}, {"group_name": "users", "password": "*", "administrators": [], "members": []}, {"group_name": "nogroup", "password": "*", "administrators": [], "members": []}, {"group_name": "systemd-journal", "password": "!", "administrators": [], "members": []}, {"group_name": "systemd-network", "password": "!", "administrators": [], "members": []}, {"group_name": "systemd-resolve", "password": "!", "administrators": [], "members": []}, {"group_name": "input", "password": "!", "administrators": [], "members": []}, {"group_name": "crontab", "password": "!", "administrators": [], "members": []}, {"group_name": "syslog", "password": "!", "administrators": [], "members": []}, {"group_name": "messagebus", "password": "!", "administrators": [], "members": []}, {"group_name": "lxd", "password": "!", "administrators": [], "members": ["joeuser"]}, {"group_name": "mlocate", "password": "!", "administrators": [], "members": []}, {"group_name": "uuidd", "password": "!", "administrators": [], "members": []}, {"group_name": "ssh", "password": "!", "administrators": [], "members": []}, {"group_name": "landscape", "password": "!", "administrators": [], "members": []}, {"group_name": "joeuser", "password": "!", "administrators": [], "members": []}, {"group_name": "docker", "password": "!", "administrators": [], "members": []}] jc-1.17.3/tests/fixtures/ubuntu-18.04/gshadow.out000066400000000000000000000011361415226333200213730ustar00rootroot00000000000000root:*:: daemon:*:: bin:*:: sys:*:: adm:*::syslog,joeuser tty:*:: disk:*:: lp:*:: mail:*:: news:*:: uucp:*:: man:*:: proxy:*:: kmem:*:: dialout:*:: fax:*:: voice:*:: cdrom:*::joeuser floppy:*:: tape:*:: sudo:*::joeuser audio:*:: dip:*::joeuser www-data:*:: backup:*:: operator:*:: list:*:: irc:*:: src:*:: gnats:*:: shadow:*:: utmp:*:: video:*:: sasl:*:: plugdev:*::joeuser staff:*:: games:*:: users:*:: nogroup:*:: systemd-journal:!:: systemd-network:!:: systemd-resolve:!:: input:!:: crontab:!:: syslog:!:: messagebus:!:: lxd:!::joeuser mlocate:!:: uuidd:!:: ssh:!:: landscape:!:: joeuser:!:: docker:!:: jc-1.17.3/tests/fixtures/ubuntu-18.04/history.json000066400000000000000000000543761415226333200216200ustar00rootroot00000000000000[{"line": 1, "command": "ls"}, {"line": 2, "command": "top"}, {"line": 3, "command": "cd /etc/systemd/system/"}, {"line": 4, "command": "ls"}, {"line": 5, "command": "docker ps"}, {"line": 6, "command": "sudo su"}, {"line": 7, "command": "sudo su -"}, {"line": 8, "command": "vi resizeterm.sh"}, {"line": 9, "command": "chmod +x resizeterm.sh "}, {"line": 10, "command": "."}, {"line": 11, "command": "clear"}, {"line": 12, "command": "./resizeterm.sh "}, {"line": 13, "command": "ls"}, {"line": 14, "command": "cd .."}, {"line": 15, "command": "ls"}, {"line": 16, "command": "cd .."}, {"line": 17, "command": "ls"}, {"line": 18, "command": "cd root/"}, {"line": 19, "command": "ls"}, {"line": 20, "command": "sudo su -"}, {"line": 21, "command": "snap"}, {"line": 22, "command": "snap update"}, {"line": 23, "command": "snap help"}, {"line": 24, "command": "snap help --all"}, {"line": 25, "command": "top"}, {"line": 26, "command": "vi"}, {"line": 27, "command": "ls"}, {"line": 28, "command": "./resizeterm.sh "}, {"line": 29, "command": "top"}, {"line": 30, "command": "ls"}, {"line": 31, "command": "exit"}, {"line": 32, "command": "./resizeterm.sh "}, {"line": 33, "command": "docker ps"}, {"line": 34, "command": "sudo su - "}, {"line": 35, "command": "ls"}, {"line": 36, "command": "top"}, {"line": 37, "command": "vi trafficgen.sh"}, {"line": 38, "command": "chmod +x trafficgen.sh "}, {"line": 39, "command": "./trafficgen.sh "}, {"line": 40, "command": "sudo su -"}, {"line": 41, "command": "ls"}, {"line": 42, "command": "nmap"}, {"line": 43, "command": "./trafficgen.sh "}, {"line": 44, "command": "nmap --help"}, {"line": 45, "command": "./trafficgen.sh "}, {"line": 46, "command": "ifconfig ens33 | grep \"inet \" | cut -d \" \" -f 10"}, {"line": 47, "command": "ifconfig ens33 | grep \"inet \" | cut -d \" \" -f 11"}, {"line": 48, "command": "ifconfig ens33 | grep \"inet \" | cut -d \" \" -f 12"}, {"line": 49, "command": "ifconfig ens33 | grep \"inet \" | cut -d \" \" -f 13"}, {"line": 50, "command": "ip address"}, {"line": 51, "command": "ifconfig ens33 | grep \"inet \" | cut -d \" \" -f 10"}, {"line": 52, "command": "ifconfig ens33 | grep \"inet \" | cut -d \" \" -f 9"}, {"line": 53, "command": "ifconfig ens33 | grep \"inet \" | cut -d \" \" -f 10"}, {"line": 54, "command": "ifconfig ens33 | grep \"inet \" | cut -d \" \" -f 11"}, {"line": 55, "command": "ifconfig ens33 | grep \"inet \" | cut -d \" \" -f 12"}, {"line": 56, "command": "ifconfig ens33 | grep \"inet \" | cut -d \" \" -f 13"}, {"line": 57, "command": "ifconfig ens33 | grep \"inet \" | cut -d \"/\""}, {"line": 58, "command": "ifconfig ens33 | grep \"inet \" | cut -d \"/\" -f 1"}, {"line": 59, "command": "ifconfig ens33 | grep \"inet \" | cut -d \"\\/\" -f 1"}, {"line": 60, "command": "ifconfig ens33 | grep \"inet \" | tr \"/\" \" \""}, {"line": 61, "command": "ifconfig -a ens33 | grep \"inet \" | tr \"/\" \" \""}, {"line": 62, "command": "ifconfig ens33 | grep \"inet \" | cut -d \" \" -f 10"}, {"line": 63, "command": "ifconfig ens33 | grep \"inet \""}, {"line": 64, "command": "ifconfig ens33 -a | grep \"inet \""}, {"line": 65, "command": "ifconfig -a ens33 | grep \"inet \""}, {"line": 66, "command": "ifconfig -v ens33 | grep \"inet \""}, {"line": 67, "command": "ifconfig ens33 | grep \"inet \""}, {"line": 68, "command": "ip address"}, {"line": 69, "command": "rm trafficgen.sh "}, {"line": 70, "command": "vi trafficgen.sh"}, {"line": 71, "command": "chmod +x trafficgen.sh "}, {"line": 72, "command": "./trafficgen.sh "}, {"line": 73, "command": "vi trafficgen.sh "}, {"line": 74, "command": "./trafficgen.sh "}, {"line": 75, "command": "sudo su -"}, {"line": 76, "command": "snap update"}, {"line": 77, "command": "ls"}, {"line": 78, "command": "./trafficgen.sh "}, {"line": 79, "command": "sudo su -"}, {"line": 80, "command": "nmap"}, {"line": 81, "command": "nmap 192.168.71.10"}, {"line": 82, "command": "ls"}, {"line": 83, "command": "./resizeterm.sh "}, {"line": 84, "command": "./trafficgen.sh "}, {"line": 85, "command": "sudo su"}, {"line": 86, "command": "docker ps"}, {"line": 87, "command": "sudo docker ps"}, {"line": 88, "command": "systemctl reboot"}, {"line": 89, "command": "sudo su"}, {"line": 90, "command": "docker ps"}, {"line": 91, "command": "sudo su"}, {"line": 92, "command": "pip"}, {"line": 93, "command": "python3"}, {"line": 94, "command": "sudo apt update"}, {"line": 95, "command": "sudo apt upgrade"}, {"line": 96, "command": "apt list --upgradable"}, {"line": 97, "command": "sudo apt update all"}, {"line": 98, "command": "sudo apt update"}, {"line": 99, "command": "sudo apt-get upgrade"}, {"line": 100, "command": "ps"}, {"line": 101, "command": "ps -ef"}, {"line": 102, "command": "top"}, {"line": 103, "command": "pip3"}, {"line": 104, "command": "sudo apt install python3-pip"}, {"line": 105, "command": "./resizeterm.sh "}, {"line": 106, "command": "pip3 install jc"}, {"line": 107, "command": "jc"}, {"line": 108, "command": "which jc"}, {"line": 109, "command": "pip3 install --user jc"}, {"line": 110, "command": "jc"}, {"line": 111, "command": "sudo pip3 install jc"}, {"line": 112, "command": "jc"}, {"line": 113, "command": "which jc"}, {"line": 114, "command": "exit"}, {"line": 115, "command": "jc"}, {"line": 116, "command": "ifconfig | jc --ifconfig"}, {"line": 117, "command": "ifconfig | jc --ifconfig -p"}, {"line": 118, "command": "ls -l | jc --ls"}, {"line": 119, "command": "ls -l | jc --ls -p"}, {"line": 120, "command": "ls -l /bin | jc --ls -p"}, {"line": 121, "command": "netstat"}, {"line": 122, "command": "netstat | jc --netstat -p"}, {"line": 123, "command": "netstat -l | jc --netstat -p"}, {"line": 124, "command": "netstat -nl | jc --netstat -p"}, {"line": 125, "command": "netstat -n | jc --netstat -p"}, {"line": 126, "command": "netstat -n | jc --netstat | jq ."}, {"line": 127, "command": "sudo apt-get jq"}, {"line": 128, "command": "sudo apt-get install jq"}, {"line": 129, "command": "netstat -n | jc --netstat | jq ."}, {"line": 130, "command": "netstat -lnp | jc --netstat | jq ."}, {"line": 131, "command": "netstat -lp | jc --netstat | jq ."}, {"line": 132, "command": "netstat -l | jc --netstat | jq ."}, {"line": 133, "command": "netstat -lnp"}, {"line": 134, "command": "netstat -ln"}, {"line": 135, "command": "netstat"}, {"line": 136, "command": "netstat -l | jc --netstat | jq ."}, {"line": 137, "command": "curl"}, {"line": 138, "command": "netstat -p"}, {"line": 139, "command": "sudo netstat -p"}, {"line": 140, "command": "apt update & sudo netstat"}, {"line": 141, "command": "apt update & sleep 1; sudo netstat"}, {"line": 142, "command": "sudo apt update & sleep 1; sudo netstat"}, {"line": 143, "command": "sudo apt update & sleep 2; sudo netstat -p"}, {"line": 144, "command": "sudo apt update & sleep 1; sudo netstat -p"}, {"line": 145, "command": "sudo netstat -lp | jc --netstat -p"}, {"line": 146, "command": "sudo netstat -lp | jc --netstat | jq ."}, {"line": 147, "command": "netstat -lp | jc --netstat | jq ."}, {"line": 148, "command": "sudo netstat -lp | jc --netstat | jq ."}, {"line": 149, "command": "sudo netstat -lpn | jc --netstat | jq ."}, {"line": 150, "command": "sudo netstat -lpnw | jc --netstat | jq ."}, {"line": 151, "command": "man netstat"}, {"line": 152, "command": "./resizeterm.sh "}, {"line": 153, "command": "man netstat "}, {"line": 154, "command": "sudo netstat -lpnW | jc --netstat | jq ."}, {"line": 155, "command": "sudo netstat -lpn -W | jc --netstat | jq ."}, {"line": 156, "command": "man netstat"}, {"line": 157, "command": "sudo netstat -lp -W | jc --netstat | jq ."}, {"line": 158, "command": "ls -l /usr/bin | jc --ls | jq .[] | jq 'select(.bytes > 50000000)'"}, {"line": 159, "command": "ls -l /usr/bin | jc --ls | jq .[].'select(.bytes > 50000000)'"}, {"line": 160, "command": "ls -l /usr/bin | jc --ls | jq .[]'select(.bytes > 50000000)'"}, {"line": 161, "command": "ls -l /usr/bin | jc --ls | jq [].'select(.bytes > 50000000)'"}, {"line": 162, "command": "ls -l /usr/bin | jc --ls | jq [.'select(.bytes > 50000000)]'"}, {"line": 163, "command": "ls -l /usr/bin | jc --ls | jq .'select(.bytes > 50000000)'"}, {"line": 164, "command": "ls -l /usr/bin | jc --ls | jq [].'select(.bytes > 50000000)'"}, {"line": 165, "command": "ls -l /usr/bin | jc --ls | jq .[].'select(.bytes > 50000000)'"}, {"line": 166, "command": "ls -l /usr/bin | jc --ls | jq .[] | jq 'select(.bytes > 50000000)'"}, {"line": 167, "command": "netstat | jc --netstat"}, {"line": 168, "command": "netstat -l | jc --netstat"}, {"line": 169, "command": "netstat -l | jc --netstat | jq ."}, {"line": 170, "command": "sudo netstat -lp | jc --netstat | jq ."}, {"line": 171, "command": "ls -l /usr/bin | jc --ls | jq .[] | jq 'select(.bytes > 50000000)'"}, {"line": 172, "command": "ls -l /usr/bin | jc --ls | jq .[] 'select(.bytes > 50000000)'"}, {"line": 173, "command": "ls -l /usr/bin | jc --ls | jq .[]. 'select(.bytes > 50000000)'"}, {"line": 174, "command": "ls -l /usr/bin | jc --ls | jq .[]'"}, {"line": 175, "command": "ls -l /usr/bin | jc --ls | jq .[].'"}, {"line": 176, "command": "ls -l /usr/bin | jc --ls | jq .[]"}, {"line": 177, "command": "ls -l /usr/bin | jc --ls | jq .[]."}, {"line": 178, "command": "ls -l /usr/bin | jc --ls | jq '.[] select(.bytes > 50000000)'"}, {"line": 179, "command": "ls -l /usr/bin | jc --ls | jq '.[]. select(.bytes > 50000000)'"}, {"line": 180, "command": "ls -l /usr/bin | jc --ls | jq '.[] select(.bytes > 50000000)'"}, {"line": 181, "command": "ls -l /usr/bin | jc --ls | jq '.[] . select(.bytes > 50000000)'"}, {"line": 182, "command": "ls -l /usr/bin | jc --ls | jq '[]. select(.bytes > 50000000)'"}, {"line": 183, "command": "ls -l /usr/bin | jc --ls | jq '[].select(.bytes > 50000000)'"}, {"line": 184, "command": "ls -l /usr/bin | jc --ls | jq '.[].select(.bytes > 50000000)'"}, {"line": 185, "command": "ls -l /usr/bin | jc --ls | jq .[] | jq 'select(.bytes > 50000000)'"}, {"line": 186, "command": "ls"}, {"line": 187, "command": "mkdir git"}, {"line": 188, "command": "cd git/"}, {"line": 189, "command": "ls"}, {"line": 190, "command": "git clone https://github.com/kellyjonbrazil/jc.git"}, {"line": 191, "command": "cd jc/"}, {"line": 192, "command": "ls"}, {"line": 193, "command": "cat README.md "}, {"line": 194, "command": "cd .."}, {"line": 195, "command": "ls"}, {"line": 196, "command": "rm -rf jc/"}, {"line": 197, "command": "git clone --single-branch --branch dev https://github.com/kellyjonbrazil/jc.git"}, {"line": 198, "command": "ls"}, {"line": 199, "command": "cd jc/"}, {"line": 200, "command": "ls"}, {"line": 201, "command": "cat README.md "}, {"line": 202, "command": "pip3 list"}, {"line": 203, "command": "pip3 unistall jc"}, {"line": 204, "command": "pip3 uninstall jc"}, {"line": 205, "command": "jc"}, {"line": 206, "command": "ls"}, {"line": 207, "command": "pip3 install --upgrade -e ."}, {"line": 208, "command": "jc"}, {"line": 209, "command": "ls"}, {"line": 210, "command": "cd jc"}, {"line": 211, "command": "ls"}, {"line": 212, "command": "cd parsers/"}, {"line": 213, "command": "ls"}, {"line": 214, "command": "netstat -lp | jc --netstat"}, {"line": 215, "command": "ls"}, {"line": 216, "command": "netstat -p | jc --netstat"}, {"line": 217, "command": "netstat -lp | jc --netstat"}, {"line": 218, "command": "rm netstat.py "}, {"line": 219, "command": "vi netstat.py"}, {"line": 220, "command": "netstat -lp | jc --netstat"}, {"line": 221, "command": "netstat -l | jc --netstat"}, {"line": 222, "command": "netstat -l | jc --netstat -p"}, {"line": 223, "command": "netstat -lp | jc --netstat -p"}, {"line": 224, "command": "netstat -lp"}, {"line": 225, "command": "sudo netstat -lp | jc --netstat -p"}, {"line": 226, "command": "rm netstat.py "}, {"line": 227, "command": "vi netstat.py"}, {"line": 228, "command": "sudo netstat -lp | jc --netstat -p"}, {"line": 229, "command": "netstat -lp | jc --netstat -p"}, {"line": 230, "command": "rm netstat.py "}, {"line": 231, "command": "vi netstat.py"}, {"line": 232, "command": "netstat -lp | jc --netstat -p"}, {"line": 233, "command": "sudo netstat -lp | jc --netstat -p"}, {"line": 234, "command": "sudo netstat -p | jc --netstat -p"}, {"line": 235, "command": "netstat -p | jc --netstat -p"}, {"line": 236, "command": "cd .."}, {"line": 237, "command": "cd ~"}, {"line": 238, "command": "ls"}, {"line": 239, "command": "cat trafficgen.sh "}, {"line": 240, "command": "mkdir tmp"}, {"line": 241, "command": "cd tmp"}, {"line": 242, "command": "history | grep clone"}, {"line": 243, "command": "git clone https://github.com/kellyjonbrazil/jc.git & sleep 1; netstat | jc --netstat"}, {"line": 244, "command": "ls"}, {"line": 245, "command": "rm -rf jc/"}, {"line": 246, "command": "git clone https://github.com/kellyjonbrazil/jc.git & sleep 1; netstat"}, {"line": 247, "command": "rm -rf jc/"}, {"line": 248, "command": "git clone https://github.com/kellyjonbrazil/jc.git & sleep 1; netstat | jc --netstat"}, {"line": 249, "command": "rm -rf jc/"}, {"line": 250, "command": "git clone https://github.com/kellyjonbrazil/jc.git & sleep 1; netstat -p | jc --netstat"}, {"line": 251, "command": "git clone https://github.com/kellyjonbrazil/jc.git & sleep 1; netstat -p | jc --netstat -p"}, {"line": 252, "command": "rm -rf jc/"}, {"line": 253, "command": "git clone https://github.com/kellyjonbrazil/jc.git & sleep 1; netstat -p | jc --netstat -p"}, {"line": 254, "command": "rm -rf jc/"}, {"line": 255, "command": "git clone https://github.com/kellyjonbrazil/jc.git & sleep 1; netstat -p | jc --netstat -p"}, {"line": 256, "command": "netstat -l | jc --netstat -p"}, {"line": 257, "command": "netstat -ln | jc --netstat -p"}, {"line": 258, "command": "netstat -lnp | jc --netstat -p"}, {"line": 259, "command": "sudo netstat -lnp | jc --netstat -p"}, {"line": 260, "command": "history | grep clone"}, {"line": 261, "command": "git clone --single-branch --branch dev https://github.com/kellyjonbrazil/jc.git"}, {"line": 262, "command": "ls"}, {"line": 263, "command": "ps -a"}, {"line": 264, "command": "ps -ef"}, {"line": 265, "command": "ps -axz"}, {"line": 266, "command": "ps -ax"}, {"line": 267, "command": "ps -axu"}, {"line": 268, "command": "cd ~/git/"}, {"line": 269, "command": "pip3 uninstall jc"}, {"line": 270, "command": "history | grep clone"}, {"line": 271, "command": "ls"}, {"line": 272, "command": "rm -rf jc/"}, {"line": 273, "command": "git clone --single-branch --branch dev https://github.com/kellyjonbrazil/jc.git"}, {"line": 274, "command": "pip3 install --user -e ."}, {"line": 275, "command": "cd jc/"}, {"line": 276, "command": "pip3 install --user -e ."}, {"line": 277, "command": "jc"}, {"line": 278, "command": "ps | jc --ps"}, {"line": 279, "command": "ps | jc --ps -p"}, {"line": 280, "command": "ps -ef | jc --ps -p"}, {"line": 281, "command": "ps -ax | jc --ps -p"}, {"line": 282, "command": "ps -axu | jc --ps -p"}, {"line": 283, "command": "ps -axu | jc --ps | jq ."}, {"line": 284, "command": "ps -ef | jc --ps -p"}, {"line": 285, "command": "route"}, {"line": 286, "command": "route -n"}, {"line": 287, "command": "ls"}, {"line": 288, "command": "cd .."}, {"line": 289, "command": "pip3 uninstall jc"}, {"line": 290, "command": "ls"}, {"line": 291, "command": "rm -rf jc/"}, {"line": 292, "command": "history | grep clone"}, {"line": 293, "command": "git clone --single-branch --branch dev https://github.com/kellyjonbrazil/jc.git"}, {"line": 294, "command": "ls"}, {"line": 295, "command": "cd jc/"}, {"line": 296, "command": "pip3 install --user -e ."}, {"line": 297, "command": "route | jc --route -p"}, {"line": 298, "command": "route -v | jc --route -p"}, {"line": 299, "command": "route | jc --route -p"}, {"line": 300, "command": "route -n | jc --route -p"}, {"line": 301, "command": "route -n | jc --route"}, {"line": 302, "command": "ls -l | jc --ls"}, {"line": 303, "command": "netstat -l | jc --ls"}, {"line": 304, "command": "netstat -l | jc --netstat"}, {"line": 305, "command": "netstat -l | jc"}, {"line": 306, "command": "ifconfig | jc --ifconfig"}, {"line": 307, "command": "route | jc --route"}, {"line": 308, "command": "ps -ef | jc --ps -p"}, {"line": 309, "command": "pip list"}, {"line": 310, "command": "pip3 list"}, {"line": 311, "command": "ls"}, {"line": 312, "command": "netstat | jc --netstat -p"}, {"line": 313, "command": "netstat -l | jc --netstat -p"}, {"line": 314, "command": "pip3 list"}, {"line": 315, "command": "cd jc/parsers/"}, {"line": 316, "command": "ls"}, {"line": 317, "command": "ls -l | jc --ls"}, {"line": 318, "command": "ls -l | jc --ls -p"}, {"line": 319, "command": "ls -l /var | jc --ls -p"}, {"line": 320, "command": "ls -l /usr/local/bin | jc --ls -p"}, {"line": 321, "command": "ls -l /usr/local/bin/"}, {"line": 322, "command": "ls -l /usr/local"}, {"line": 323, "command": "ls -l ~/.local/"}, {"line": 324, "command": "ls -l ~/.local/bin/"}, {"line": 325, "command": "ls -l ~/.local/lib"}, {"line": 326, "command": "ls -l ~/.local/lib/python3.6/"}, {"line": 327, "command": "ls -l ~/.local/lib/python3.6/site-packages/"}, {"line": 328, "command": "ls -l ~/.local/lib/python3.6/site-packages/ifconfigparser/"}, {"line": 329, "command": "ls -l ~/.local/lib/python3.6/site-packages/ifconfigparser/__pycache__/"}, {"line": 330, "command": "ls -l /"}, {"line": 331, "command": "ls -l / | jc --ls"}, {"line": 332, "command": "ls -l / | jc --ls -p"}, {"line": 333, "command": "rm ls.py "}, {"line": 334, "command": "vi ls.py"}, {"line": 335, "command": "ls -l / | jc --ls -p"}, {"line": 336, "command": "ls -l /"}, {"line": 337, "command": "rm ls.py "}, {"line": 338, "command": "vi ls.py"}, {"line": 339, "command": "ls -l / | jc --ls -p"}, {"line": 340, "command": "rm ls.py "}, {"line": 341, "command": "vi ls.py"}, {"line": 342, "command": "ls -l / | jc --ls -p"}, {"line": 343, "command": "ls -l /usr/local/bin | jc --ls -p"}, {"line": 344, "command": "rm ls.py "}, {"line": 345, "command": "vi ls.py"}, {"line": 346, "command": "ls -l /usr/local/bin | jc --ls -p"}, {"line": 347, "command": "ls -l / | jc --ls -p"}, {"line": 348, "command": "cd ~"}, {"line": 349, "command": "pip3 uninstall jc"}, {"line": 350, "command": "cd git/"}, {"line": 351, "command": "ls"}, {"line": 352, "command": "rm -rf jc/"}, {"line": 353, "command": "history | grep clone"}, {"line": 354, "command": "git clone --single-branch --branch dev https://github.com/kellyjonbrazil/jc.git"}, {"line": 355, "command": "ls"}, {"line": 356, "command": "cd jc/"}, {"line": 357, "command": "pip3 install --user --upgrade -e ."}, {"line": 358, "command": "jc"}, {"line": 359, "command": "ls /usr/local/bin | jc --ls"}, {"line": 360, "command": "ls /usr/local/bin "}, {"line": 361, "command": "ls /usr/local/bin -l"}, {"line": 362, "command": "cd jc/parsers/"}, {"line": 363, "command": "ls"}, {"line": 364, "command": "rm ls.py "}, {"line": 365, "command": "vi ls.py"}, {"line": 366, "command": "ls /usr/local/bin "}, {"line": 367, "command": "ls /usr/local/bin | jc --ls"}, {"line": 368, "command": "ls -l /usr/local/bin | jc --ls"}, {"line": 369, "command": "ls -al /usr/local/bin | jc --ls"}, {"line": 370, "command": "ls -al /usr/local/bin | jc --ls -p"}, {"line": 371, "command": "cd .."}, {"line": 372, "command": "pip3 uninstall jc"}, {"line": 373, "command": "rm -rf jc/"}, {"line": 374, "command": "history | grep clone"}, {"line": 375, "command": "git clone --single-branch --branch dev https://github.com/kellyjonbrazil/jc.git"}, {"line": 376, "command": "cd jc/"}, {"line": 377, "command": "pip3 install --user --upgrade -e ."}, {"line": 378, "command": "jc"}, {"line": 379, "command": "ls /usr/local/bin | jc --ls"}, {"line": 380, "command": "ls -l /usr/local/bin | jc --ls"}, {"line": 381, "command": "ls -al /usr/local/bin | jc --ls"}, {"line": 382, "command": "ls -al /usr/local/bin | jc --ls -p"}, {"line": 383, "command": "ps -ef | jc --ps"}, {"line": 384, "command": "ps -ef | jc --ps -p"}, {"line": 385, "command": "pip3 list"}, {"line": 386, "command": "ls"}, {"line": 387, "command": "./build-package.sh "}, {"line": 388, "command": "ls"}, {"line": 389, "command": "./pypi-upload.sh "}, {"line": 390, "command": "cd .."}, {"line": 391, "command": "ls"}, {"line": 392, "command": "pip3 uninstall jc"}, {"line": 393, "command": "rm -rf jc/"}, {"line": 394, "command": "pip3 install --user --upgrade jc"}, {"line": 395, "command": "pip3 list"}, {"line": 396, "command": "w"}, {"line": 397, "command": "w -f"}, {"line": 398, "command": "w | jc --route"}, {"line": 399, "command": "w | jc --route -p"}, {"line": 400, "command": "w -f | jc --route -p"}, {"line": 401, "command": "route"}, {"line": 402, "command": "uptime"}, {"line": 403, "command": "ls -l /bin | jc --ls -p"}, {"line": 404, "command": "lsof | jc --lsof -p"}, {"line": 405, "command": "sudo lsof | jc --lsof -p"}, {"line": 406, "command": "w | jc --w -p"}, {"line": 407, "command": "uptime | jc --uptime -p"}, {"line": 408, "command": "ls"}, {"line": 409, "command": "cd testfiles/"}, {"line": 410, "command": "ls"}, {"line": 411, "command": "rm tests.sh "}, {"line": 412, "command": "vi tests.sh"}, {"line": 413, "command": "chmod +x tests.sh "}, {"line": 414, "command": "./tests.sh "}, {"line": 415, "command": "ls"}, {"line": 416, "command": "cat iptables-filter.out "}, {"line": 417, "command": "cat iptables-filter-nv.out "}, {"line": 418, "command": "ls"}, {"line": 419, "command": "ls -al"}, {"line": 420, "command": "man history"}, {"line": 421, "command": "rm tests.sh "}, {"line": 422, "command": "vi tests.sh"}, {"line": 423, "command": "chmod +x tests.sh "}, {"line": 424, "command": "./tests.sh "}, {"line": 425, "command": "ls -al"}, {"line": 426, "command": "cat netstat.out "}, {"line": 427, "command": "ls"}, {"line": 428, "command": "cat w"}, {"line": 429, "command": "cat w.out "}, {"line": 430, "command": "cat uname-a.out "}, {"line": 431, "command": "rm tests.sh "}, {"line": 432, "command": "vi tests.sh"}, {"line": 433, "command": "chmod +x tests.sh "}, {"line": 434, "command": "./tests.sh "}, {"line": 435, "command": "ls -al"}, {"line": 436, "command": "cat iptables-filter.out "}, {"line": 437, "command": "uname"}, {"line": 438, "command": "uname -a"}, {"line": 439, "command": "cd /etc/"}, {"line": 440, "command": "ls"}, {"line": 441, "command": "uname -a"}, {"line": 442, "command": "ls"}, {"line": 443, "command": "cat debian_version "}, {"line": 444, "command": "lsb_release -a "}, {"line": 445, "command": "uname -a"}, {"line": 446, "command": "lsb_release "}, {"line": 447, "command": "lsb_release -a"}, {"line": 448, "command": "ifconfig"}, {"line": 449, "command": "cd ~"}, {"line": 450, "command": "cd testfiles/"}, {"line": 451, "command": "ls"}, {"line": 452, "command": "cat history.out "}, {"line": 453, "command": "history > history.out"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/history.out000066400000000000000000000310541415226333200214420ustar00rootroot00000000000000 1 ls 2 top 3 cd /etc/systemd/system/ 4 ls 5 docker ps 6 sudo su 7 sudo su - 8 vi resizeterm.sh 9 chmod +x resizeterm.sh 10 . 11 clear 12 ./resizeterm.sh 13 ls 14 cd .. 15 ls 16 cd .. 17 ls 18 cd root/ 19 ls 20 sudo su - 21 snap 22 snap update 23 snap help 24 snap help --all 25 top 26 vi 27 ls 28 ./resizeterm.sh 29 top 30 ls 31 exit 32 ./resizeterm.sh 33 docker ps 34 sudo su - 35 ls 36 top 37 vi trafficgen.sh 38 chmod +x trafficgen.sh 39 ./trafficgen.sh 40 sudo su - 41 ls 42 nmap 43 ./trafficgen.sh 44 nmap --help 45 ./trafficgen.sh 46 ifconfig ens33 | grep "inet " | cut -d " " -f 10 47 ifconfig ens33 | grep "inet " | cut -d " " -f 11 48 ifconfig ens33 | grep "inet " | cut -d " " -f 12 49 ifconfig ens33 | grep "inet " | cut -d " " -f 13 50 ip address 51 ifconfig ens33 | grep "inet " | cut -d " " -f 10 52 ifconfig ens33 | grep "inet " | cut -d " " -f 9 53 ifconfig ens33 | grep "inet " | cut -d " " -f 10 54 ifconfig ens33 | grep "inet " | cut -d " " -f 11 55 ifconfig ens33 | grep "inet " | cut -d " " -f 12 56 ifconfig ens33 | grep "inet " | cut -d " " -f 13 57 ifconfig ens33 | grep "inet " | cut -d "/" 58 ifconfig ens33 | grep "inet " | cut -d "/" -f 1 59 ifconfig ens33 | grep "inet " | cut -d "\/" -f 1 60 ifconfig ens33 | grep "inet " | tr "/" " " 61 ifconfig -a ens33 | grep "inet " | tr "/" " " 62 ifconfig ens33 | grep "inet " | cut -d " " -f 10 63 ifconfig ens33 | grep "inet " 64 ifconfig ens33 -a | grep "inet " 65 ifconfig -a ens33 | grep "inet " 66 ifconfig -v ens33 | grep "inet " 67 ifconfig ens33 | grep "inet " 68 ip address 69 rm trafficgen.sh 70 vi trafficgen.sh 71 chmod +x trafficgen.sh 72 ./trafficgen.sh 73 vi trafficgen.sh 74 ./trafficgen.sh 75 sudo su - 76 snap update 77 ls 78 ./trafficgen.sh 79 sudo su - 80 nmap 81 nmap 192.168.71.10 82 ls 83 ./resizeterm.sh 84 ./trafficgen.sh 85 sudo su 86 docker ps 87 sudo docker ps 88 systemctl reboot 89 sudo su 90 docker ps 91 sudo su 92 pip 93 python3 94 sudo apt update 95 sudo apt upgrade 96 apt list --upgradable 97 sudo apt update all 98 sudo apt update 99 sudo apt-get upgrade 100 ps 101 ps -ef 102 top 103 pip3 104 sudo apt install python3-pip 105 ./resizeterm.sh 106 pip3 install jc 107 jc 108 which jc 109 pip3 install --user jc 110 jc 111 sudo pip3 install jc 112 jc 113 which jc 114 exit 115 jc 116 ifconfig | jc --ifconfig 117 ifconfig | jc --ifconfig -p 118 ls -l | jc --ls 119 ls -l | jc --ls -p 120 ls -l /bin | jc --ls -p 121 netstat 122 netstat | jc --netstat -p 123 netstat -l | jc --netstat -p 124 netstat -nl | jc --netstat -p 125 netstat -n | jc --netstat -p 126 netstat -n | jc --netstat | jq . 127 sudo apt-get jq 128 sudo apt-get install jq 129 netstat -n | jc --netstat | jq . 130 netstat -lnp | jc --netstat | jq . 131 netstat -lp | jc --netstat | jq . 132 netstat -l | jc --netstat | jq . 133 netstat -lnp 134 netstat -ln 135 netstat 136 netstat -l | jc --netstat | jq . 137 curl 138 netstat -p 139 sudo netstat -p 140 apt update & sudo netstat 141 apt update & sleep 1; sudo netstat 142 sudo apt update & sleep 1; sudo netstat 143 sudo apt update & sleep 2; sudo netstat -p 144 sudo apt update & sleep 1; sudo netstat -p 145 sudo netstat -lp | jc --netstat -p 146 sudo netstat -lp | jc --netstat | jq . 147 netstat -lp | jc --netstat | jq . 148 sudo netstat -lp | jc --netstat | jq . 149 sudo netstat -lpn | jc --netstat | jq . 150 sudo netstat -lpnw | jc --netstat | jq . 151 man netstat 152 ./resizeterm.sh 153 man netstat 154 sudo netstat -lpnW | jc --netstat | jq . 155 sudo netstat -lpn -W | jc --netstat | jq . 156 man netstat 157 sudo netstat -lp -W | jc --netstat | jq . 158 ls -l /usr/bin | jc --ls | jq .[] | jq 'select(.bytes > 50000000)' 159 ls -l /usr/bin | jc --ls | jq .[].'select(.bytes > 50000000)' 160 ls -l /usr/bin | jc --ls | jq .[]'select(.bytes > 50000000)' 161 ls -l /usr/bin | jc --ls | jq [].'select(.bytes > 50000000)' 162 ls -l /usr/bin | jc --ls | jq [.'select(.bytes > 50000000)]' 163 ls -l /usr/bin | jc --ls | jq .'select(.bytes > 50000000)' 164 ls -l /usr/bin | jc --ls | jq [].'select(.bytes > 50000000)' 165 ls -l /usr/bin | jc --ls | jq .[].'select(.bytes > 50000000)' 166 ls -l /usr/bin | jc --ls | jq .[] | jq 'select(.bytes > 50000000)' 167 netstat | jc --netstat 168 netstat -l | jc --netstat 169 netstat -l | jc --netstat | jq . 170 sudo netstat -lp | jc --netstat | jq . 171 ls -l /usr/bin | jc --ls | jq .[] | jq 'select(.bytes > 50000000)' 172 ls -l /usr/bin | jc --ls | jq .[] 'select(.bytes > 50000000)' 173 ls -l /usr/bin | jc --ls | jq .[]. 'select(.bytes > 50000000)' 174 ls -l /usr/bin | jc --ls | jq .[]' 175 ls -l /usr/bin | jc --ls | jq .[].' 176 ls -l /usr/bin | jc --ls | jq .[] 177 ls -l /usr/bin | jc --ls | jq .[]. 178 ls -l /usr/bin | jc --ls | jq '.[] select(.bytes > 50000000)' 179 ls -l /usr/bin | jc --ls | jq '.[]. select(.bytes > 50000000)' 180 ls -l /usr/bin | jc --ls | jq '.[] select(.bytes > 50000000)' 181 ls -l /usr/bin | jc --ls | jq '.[] . select(.bytes > 50000000)' 182 ls -l /usr/bin | jc --ls | jq '[]. select(.bytes > 50000000)' 183 ls -l /usr/bin | jc --ls | jq '[].select(.bytes > 50000000)' 184 ls -l /usr/bin | jc --ls | jq '.[].select(.bytes > 50000000)' 185 ls -l /usr/bin | jc --ls | jq .[] | jq 'select(.bytes > 50000000)' 186 ls 187 mkdir git 188 cd git/ 189 ls 190 git clone https://github.com/kellyjonbrazil/jc.git 191 cd jc/ 192 ls 193 cat README.md 194 cd .. 195 ls 196 rm -rf jc/ 197 git clone --single-branch --branch dev https://github.com/kellyjonbrazil/jc.git 198 ls 199 cd jc/ 200 ls 201 cat README.md 202 pip3 list 203 pip3 unistall jc 204 pip3 uninstall jc 205 jc 206 ls 207 pip3 install --upgrade -e . 208 jc 209 ls 210 cd jc 211 ls 212 cd parsers/ 213 ls 214 netstat -lp | jc --netstat 215 ls 216 netstat -p | jc --netstat 217 netstat -lp | jc --netstat 218 rm netstat.py 219 vi netstat.py 220 netstat -lp | jc --netstat 221 netstat -l | jc --netstat 222 netstat -l | jc --netstat -p 223 netstat -lp | jc --netstat -p 224 netstat -lp 225 sudo netstat -lp | jc --netstat -p 226 rm netstat.py 227 vi netstat.py 228 sudo netstat -lp | jc --netstat -p 229 netstat -lp | jc --netstat -p 230 rm netstat.py 231 vi netstat.py 232 netstat -lp | jc --netstat -p 233 sudo netstat -lp | jc --netstat -p 234 sudo netstat -p | jc --netstat -p 235 netstat -p | jc --netstat -p 236 cd .. 237 cd ~ 238 ls 239 cat trafficgen.sh 240 mkdir tmp 241 cd tmp 242 history | grep clone 243 git clone https://github.com/kellyjonbrazil/jc.git & sleep 1; netstat | jc --netstat 244 ls 245 rm -rf jc/ 246 git clone https://github.com/kellyjonbrazil/jc.git & sleep 1; netstat 247 rm -rf jc/ 248 git clone https://github.com/kellyjonbrazil/jc.git & sleep 1; netstat | jc --netstat 249 rm -rf jc/ 250 git clone https://github.com/kellyjonbrazil/jc.git & sleep 1; netstat -p | jc --netstat 251 git clone https://github.com/kellyjonbrazil/jc.git & sleep 1; netstat -p | jc --netstat -p 252 rm -rf jc/ 253 git clone https://github.com/kellyjonbrazil/jc.git & sleep 1; netstat -p | jc --netstat -p 254 rm -rf jc/ 255 git clone https://github.com/kellyjonbrazil/jc.git & sleep 1; netstat -p | jc --netstat -p 256 netstat -l | jc --netstat -p 257 netstat -ln | jc --netstat -p 258 netstat -lnp | jc --netstat -p 259 sudo netstat -lnp | jc --netstat -p 260 history | grep clone 261 git clone --single-branch --branch dev https://github.com/kellyjonbrazil/jc.git 262 ls 263 ps -a 264 ps -ef 265 ps -axz 266 ps -ax 267 ps -axu 268 cd ~/git/ 269 pip3 uninstall jc 270 history | grep clone 271 ls 272 rm -rf jc/ 273 git clone --single-branch --branch dev https://github.com/kellyjonbrazil/jc.git 274 pip3 install --user -e . 275 cd jc/ 276 pip3 install --user -e . 277 jc 278 ps | jc --ps 279 ps | jc --ps -p 280 ps -ef | jc --ps -p 281 ps -ax | jc --ps -p 282 ps -axu | jc --ps -p 283 ps -axu | jc --ps | jq . 284 ps -ef | jc --ps -p 285 route 286 route -n 287 ls 288 cd .. 289 pip3 uninstall jc 290 ls 291 rm -rf jc/ 292 history | grep clone 293 git clone --single-branch --branch dev https://github.com/kellyjonbrazil/jc.git 294 ls 295 cd jc/ 296 pip3 install --user -e . 297 route | jc --route -p 298 route -v | jc --route -p 299 route | jc --route -p 300 route -n | jc --route -p 301 route -n | jc --route 302 ls -l | jc --ls 303 netstat -l | jc --ls 304 netstat -l | jc --netstat 305 netstat -l | jc 306 ifconfig | jc --ifconfig 307 route | jc --route 308 ps -ef | jc --ps -p 309 pip list 310 pip3 list 311 ls 312 netstat | jc --netstat -p 313 netstat -l | jc --netstat -p 314 pip3 list 315 cd jc/parsers/ 316 ls 317 ls -l | jc --ls 318 ls -l | jc --ls -p 319 ls -l /var | jc --ls -p 320 ls -l /usr/local/bin | jc --ls -p 321 ls -l /usr/local/bin/ 322 ls -l /usr/local 323 ls -l ~/.local/ 324 ls -l ~/.local/bin/ 325 ls -l ~/.local/lib 326 ls -l ~/.local/lib/python3.6/ 327 ls -l ~/.local/lib/python3.6/site-packages/ 328 ls -l ~/.local/lib/python3.6/site-packages/ifconfigparser/ 329 ls -l ~/.local/lib/python3.6/site-packages/ifconfigparser/__pycache__/ 330 ls -l / 331 ls -l / | jc --ls 332 ls -l / | jc --ls -p 333 rm ls.py 334 vi ls.py 335 ls -l / | jc --ls -p 336 ls -l / 337 rm ls.py 338 vi ls.py 339 ls -l / | jc --ls -p 340 rm ls.py 341 vi ls.py 342 ls -l / | jc --ls -p 343 ls -l /usr/local/bin | jc --ls -p 344 rm ls.py 345 vi ls.py 346 ls -l /usr/local/bin | jc --ls -p 347 ls -l / | jc --ls -p 348 cd ~ 349 pip3 uninstall jc 350 cd git/ 351 ls 352 rm -rf jc/ 353 history | grep clone 354 git clone --single-branch --branch dev https://github.com/kellyjonbrazil/jc.git 355 ls 356 cd jc/ 357 pip3 install --user --upgrade -e . 358 jc 359 ls /usr/local/bin | jc --ls 360 ls /usr/local/bin 361 ls /usr/local/bin -l 362 cd jc/parsers/ 363 ls 364 rm ls.py 365 vi ls.py 366 ls /usr/local/bin 367 ls /usr/local/bin | jc --ls 368 ls -l /usr/local/bin | jc --ls 369 ls -al /usr/local/bin | jc --ls 370 ls -al /usr/local/bin | jc --ls -p 371 cd .. 372 pip3 uninstall jc 373 rm -rf jc/ 374 history | grep clone 375 git clone --single-branch --branch dev https://github.com/kellyjonbrazil/jc.git 376 cd jc/ 377 pip3 install --user --upgrade -e . 378 jc 379 ls /usr/local/bin | jc --ls 380 ls -l /usr/local/bin | jc --ls 381 ls -al /usr/local/bin | jc --ls 382 ls -al /usr/local/bin | jc --ls -p 383 ps -ef | jc --ps 384 ps -ef | jc --ps -p 385 pip3 list 386 ls 387 ./build-package.sh 388 ls 389 ./pypi-upload.sh 390 cd .. 391 ls 392 pip3 uninstall jc 393 rm -rf jc/ 394 pip3 install --user --upgrade jc 395 pip3 list 396 w 397 w -f 398 w | jc --route 399 w | jc --route -p 400 w -f | jc --route -p 401 route 402 uptime 403 ls -l /bin | jc --ls -p 404 lsof | jc --lsof -p 405 sudo lsof | jc --lsof -p 406 w | jc --w -p 407 uptime | jc --uptime -p 408 ls 409 cd testfiles/ 410 ls 411 rm tests.sh 412 vi tests.sh 413 chmod +x tests.sh 414 ./tests.sh 415 ls 416 cat iptables-filter.out 417 cat iptables-filter-nv.out 418 ls 419 ls -al 420 man history 421 rm tests.sh 422 vi tests.sh 423 chmod +x tests.sh 424 ./tests.sh 425 ls -al 426 cat netstat.out 427 ls 428 cat w 429 cat w.out 430 cat uname-a.out 431 rm tests.sh 432 vi tests.sh 433 chmod +x tests.sh 434 ./tests.sh 435 ls -al 436 cat iptables-filter.out 437 uname 438 uname -a 439 cd /etc/ 440 ls 441 uname -a 442 ls 443 cat debian_version 444 lsb_release -a 445 uname -a 446 lsb_release 447 lsb_release -a 448 ifconfig 449 cd ~ 450 cd testfiles/ 451 ls 452 cat history.out 453 history > history.out jc-1.17.3/tests/fixtures/ubuntu-18.04/hosts.json000066400000000000000000000005551415226333200212450ustar00rootroot00000000000000[{"ip": "127.0.0.1", "hostname": ["localhost"]}, {"ip": "127.0.1.1", "hostname": ["kbrazil-ubuntu"]}, {"ip": "::1", "hostname": ["ip6-localhost", "ip6-loopback"]}, {"ip": "fe00::0", "hostname": ["ip6-localnet"]}, {"ip": "ff00::0", "hostname": ["ip6-mcastprefix"]}, {"ip": "ff02::1", "hostname": ["ip6-allnodes"]}, {"ip": "ff02::2", "hostname": ["ip6-allrouters"]}] jc-1.17.3/tests/fixtures/ubuntu-18.04/hosts.out000066400000000000000000000004201415226333200210720ustar00rootroot00000000000000# comment line 127.0.0.1 localhost 127.0.1.1 kbrazil-ubuntu # The following lines are desirable for IPv6 capable hosts ::1 ip6-localhost ip6-loopback fe00::0 ip6-localnet ff00::0 ip6-mcastprefix ff02::1 ip6-allnodes # this is a comment ff02::2 ip6-allrouters jc-1.17.3/tests/fixtures/ubuntu-18.04/ifconfig.json000066400000000000000000000021021415226333200216570ustar00rootroot00000000000000[{"name": "ens33", "flags": 4163, "state": ["UP", "BROADCAST", "RUNNING", "MULTICAST"], "mtu": 1500, "ipv4_addr": "192.168.71.131", "ipv4_mask": "255.255.255.0", "ipv4_bcast": "192.168.71.255", "ipv6_addr": "fe80::20c:29ff:fe99:4517", "ipv6_mask": 64, "ipv6_scope": "0x20", "mac_addr": "00:0c:29:99:45:17", "type": "Ethernet", "rx_packets": 138830, "rx_bytes": 178583682, "rx_errors": 0, "rx_dropped": 0, "rx_overruns": 0, "rx_frame": 0, "tx_packets": 30490, "tx_bytes": 3772041, "tx_errors": 0, "tx_dropped": 0, "tx_overruns": 0, "tx_carrier": 0, "tx_collisions": 0, "metric": null}, {"name": "lo", "flags": 73, "state": ["UP", "LOOPBACK", "RUNNING"], "mtu": 65536, "ipv4_addr": "127.0.0.1", "ipv4_mask": "255.0.0.0", "ipv4_bcast": null, "ipv6_addr": "::1", "ipv6_mask": 128, "ipv6_scope": "0x10", "mac_addr": null, "type": "Local Loopback", "rx_packets": 825, "rx_bytes": 76797, "rx_errors": 0, "rx_dropped": 0, "rx_overruns": 0, "rx_frame": 0, "tx_packets": 825, "tx_bytes": 76797, "tx_errors": 0, "tx_dropped": 0, "tx_overruns": 0, "tx_carrier": 0, "tx_collisions": 0, "metric": null}] jc-1.17.3/tests/fixtures/ubuntu-18.04/ifconfig.out000066400000000000000000000015761415226333200215330ustar00rootroot00000000000000ens33: flags=4163 mtu 1500 inet 192.168.71.131 netmask 255.255.255.0 broadcast 192.168.71.255 inet6 fe80::20c:29ff:fe99:4517 prefixlen 64 scopeid 0x20 ether 00:0c:29:99:45:17 txqueuelen 1000 (Ethernet) RX packets 138830 bytes 178583682 (178.5 MB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 30490 bytes 3772041 (3.7 MB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 lo: flags=73 mtu 65536 inet 127.0.0.1 netmask 255.0.0.0 inet6 ::1 prefixlen 128 scopeid 0x10 loop txqueuelen 1000 (Local Loopback) RX packets 825 bytes 76797 (76.7 KB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 825 bytes 76797 (76.7 KB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 jc-1.17.3/tests/fixtures/ubuntu-18.04/iostat-1-streaming.json000066400000000000000000000146761415226333200235460ustar00rootroot00000000000000[{"percent_user":11.66,"percent_nice":3.51,"percent_system":7.44,"percent_iowait":1.33,"percent_steal":0.0,"percent_idle":76.06,"type":"cpu"},{"device":"loop0","tps":0.05,"kb_read_s":0.16,"kb_wrtn_s":0.0,"kb_read":125,"kb_wrtn":0,"type":"device"},{"device":"loop1","tps":11.06,"kb_read_s":12.71,"kb_wrtn_s":0.0,"kb_read":10139,"kb_wrtn":0,"type":"device"},{"device":"loop2","tps":0.12,"kb_read_s":1.77,"kb_wrtn_s":0.0,"kb_read":1413,"kb_wrtn":0,"type":"device"},{"device":"loop3","tps":0.07,"kb_read_s":0.45,"kb_wrtn_s":0.0,"kb_read":359,"kb_wrtn":0,"type":"device"},{"device":"loop4","tps":0.07,"kb_read_s":1.34,"kb_wrtn_s":0.0,"kb_read":1067,"kb_wrtn":0,"type":"device"},{"device":"loop5","tps":0.13,"kb_read_s":1.49,"kb_wrtn_s":0.0,"kb_read":1190,"kb_wrtn":0,"type":"device"},{"device":"loop6","tps":0.05,"kb_read_s":0.16,"kb_wrtn_s":0.0,"kb_read":125,"kb_wrtn":0,"type":"device"},{"device":"loop7","tps":0.08,"kb_read_s":1.34,"kb_wrtn_s":0.0,"kb_read":1070,"kb_wrtn":0,"type":"device"},{"device":"fd0","tps":0.26,"kb_read_s":1.01,"kb_wrtn_s":0.0,"kb_read":806,"kb_wrtn":0,"type":"device"},{"device":"sda","tps":82.01,"kb_read_s":1901.45,"kb_wrtn_s":3368.25,"kb_read":1517318,"kb_wrtn":2687800,"type":"device"},{"device":"scd0","tps":2.89,"kb_read_s":64.94,"kb_wrtn_s":0.0,"kb_read":51818,"kb_wrtn":0,"type":"device"},{"device":"scd1","tps":2.89,"kb_read_s":64.44,"kb_wrtn_s":0.0,"kb_read":51418,"kb_wrtn":0,"type":"device"},{"device":"loop8","tps":15.88,"kb_read_s":17.15,"kb_wrtn_s":0.0,"kb_read":13683,"kb_wrtn":0,"type":"device"},{"device":"loop9","tps":0.08,"kb_read_s":0.45,"kb_wrtn_s":0.0,"kb_read":362,"kb_wrtn":0,"type":"device"},{"device":"loop10","tps":0.12,"kb_read_s":0.6,"kb_wrtn_s":0.0,"kb_read":476,"kb_wrtn":0,"type":"device"},{"device":"loop11","tps":0.04,"kb_read_s":0.14,"kb_wrtn_s":0.0,"kb_read":108,"kb_wrtn":0,"type":"device"},{"device":"loop12","tps":0.06,"kb_read_s":0.44,"kb_wrtn_s":0.0,"kb_read":353,"kb_wrtn":0,"type":"device"},{"device":"loop13","tps":0.05,"kb_read_s":0.44,"kb_wrtn_s":0.0,"kb_read":348,"kb_wrtn":0,"type":"device"},{"device":"loop14","tps":0.08,"kb_read_s":0.46,"kb_wrtn_s":0.0,"kb_read":366,"kb_wrtn":0,"type":"device"},{"device":"loop15","tps":0.08,"kb_read_s":0.45,"kb_wrtn_s":0.0,"kb_read":361,"kb_wrtn":0,"type":"device"},{"percent_user":1.01,"percent_nice":0.0,"percent_system":0.0,"percent_iowait":0.0,"percent_steal":0.0,"percent_idle":98.99,"type":"cpu"},{"device":"loop0","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop1","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop2","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop3","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop4","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop5","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop6","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop7","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"fd0","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"sda","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"scd0","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"scd1","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop8","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop9","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop10","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop11","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop12","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop13","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop14","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop15","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"percent_user":0.0,"percent_nice":0.0,"percent_system":1.0,"percent_iowait":0.0,"percent_steal":0.0,"percent_idle":99.0,"type":"cpu"},{"device":"loop0","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop1","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop2","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop3","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop4","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop5","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop6","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop7","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"fd0","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"sda","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"scd0","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"scd1","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop8","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop9","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop10","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop11","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop12","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop13","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop14","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop15","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/iostat-1.json000066400000000000000000000146761415226333200215570ustar00rootroot00000000000000[{"percent_user":11.66,"percent_nice":3.51,"percent_system":7.44,"percent_iowait":1.33,"percent_steal":0.0,"percent_idle":76.06,"type":"cpu"},{"device":"loop0","tps":0.05,"kb_read_s":0.16,"kb_wrtn_s":0.0,"kb_read":125,"kb_wrtn":0,"type":"device"},{"device":"loop1","tps":11.06,"kb_read_s":12.71,"kb_wrtn_s":0.0,"kb_read":10139,"kb_wrtn":0,"type":"device"},{"device":"loop2","tps":0.12,"kb_read_s":1.77,"kb_wrtn_s":0.0,"kb_read":1413,"kb_wrtn":0,"type":"device"},{"device":"loop3","tps":0.07,"kb_read_s":0.45,"kb_wrtn_s":0.0,"kb_read":359,"kb_wrtn":0,"type":"device"},{"device":"loop4","tps":0.07,"kb_read_s":1.34,"kb_wrtn_s":0.0,"kb_read":1067,"kb_wrtn":0,"type":"device"},{"device":"loop5","tps":0.13,"kb_read_s":1.49,"kb_wrtn_s":0.0,"kb_read":1190,"kb_wrtn":0,"type":"device"},{"device":"loop6","tps":0.05,"kb_read_s":0.16,"kb_wrtn_s":0.0,"kb_read":125,"kb_wrtn":0,"type":"device"},{"device":"loop7","tps":0.08,"kb_read_s":1.34,"kb_wrtn_s":0.0,"kb_read":1070,"kb_wrtn":0,"type":"device"},{"device":"fd0","tps":0.26,"kb_read_s":1.01,"kb_wrtn_s":0.0,"kb_read":806,"kb_wrtn":0,"type":"device"},{"device":"sda","tps":82.01,"kb_read_s":1901.45,"kb_wrtn_s":3368.25,"kb_read":1517318,"kb_wrtn":2687800,"type":"device"},{"device":"scd0","tps":2.89,"kb_read_s":64.94,"kb_wrtn_s":0.0,"kb_read":51818,"kb_wrtn":0,"type":"device"},{"device":"scd1","tps":2.89,"kb_read_s":64.44,"kb_wrtn_s":0.0,"kb_read":51418,"kb_wrtn":0,"type":"device"},{"device":"loop8","tps":15.88,"kb_read_s":17.15,"kb_wrtn_s":0.0,"kb_read":13683,"kb_wrtn":0,"type":"device"},{"device":"loop9","tps":0.08,"kb_read_s":0.45,"kb_wrtn_s":0.0,"kb_read":362,"kb_wrtn":0,"type":"device"},{"device":"loop10","tps":0.12,"kb_read_s":0.6,"kb_wrtn_s":0.0,"kb_read":476,"kb_wrtn":0,"type":"device"},{"device":"loop11","tps":0.04,"kb_read_s":0.14,"kb_wrtn_s":0.0,"kb_read":108,"kb_wrtn":0,"type":"device"},{"device":"loop12","tps":0.06,"kb_read_s":0.44,"kb_wrtn_s":0.0,"kb_read":353,"kb_wrtn":0,"type":"device"},{"device":"loop13","tps":0.05,"kb_read_s":0.44,"kb_wrtn_s":0.0,"kb_read":348,"kb_wrtn":0,"type":"device"},{"device":"loop14","tps":0.08,"kb_read_s":0.46,"kb_wrtn_s":0.0,"kb_read":366,"kb_wrtn":0,"type":"device"},{"device":"loop15","tps":0.08,"kb_read_s":0.45,"kb_wrtn_s":0.0,"kb_read":361,"kb_wrtn":0,"type":"device"},{"percent_user":1.01,"percent_nice":0.0,"percent_system":0.0,"percent_iowait":0.0,"percent_steal":0.0,"percent_idle":98.99,"type":"cpu"},{"device":"loop0","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop1","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop2","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop3","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop4","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop5","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop6","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop7","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"fd0","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"sda","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"scd0","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"scd1","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop8","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop9","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop10","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop11","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop12","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop13","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop14","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop15","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"percent_user":0.0,"percent_nice":0.0,"percent_system":1.0,"percent_iowait":0.0,"percent_steal":0.0,"percent_idle":99.0,"type":"cpu"},{"device":"loop0","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop1","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop2","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop3","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop4","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop5","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop6","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop7","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"fd0","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"sda","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"scd0","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"scd1","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop8","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop9","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop10","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop11","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop12","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop13","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop14","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"},{"device":"loop15","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_read":0,"kb_wrtn":0,"type":"device"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/iostat-1.out000066400000000000000000000114301415226333200213760ustar00rootroot00000000000000Linux 4.15.0-158-generic (kbrazil-ubuntu) 12/01/2021 _x86_64_ (1 CPU) avg-cpu: %user %nice %system %iowait %steal %idle 11.66 3.51 7.44 1.33 0.00 76.06 Device tps kB_read/s kB_wrtn/s kB_read kB_wrtn loop0 0.05 0.16 0.00 125 0 loop1 11.06 12.71 0.00 10139 0 loop2 0.12 1.77 0.00 1413 0 loop3 0.07 0.45 0.00 359 0 loop4 0.07 1.34 0.00 1067 0 loop5 0.13 1.49 0.00 1190 0 loop6 0.05 0.16 0.00 125 0 loop7 0.08 1.34 0.00 1070 0 fd0 0.26 1.01 0.00 806 0 sda 82.01 1901.45 3368.25 1517318 2687800 scd0 2.89 64.94 0.00 51818 0 scd1 2.89 64.44 0.00 51418 0 loop8 15.88 17.15 0.00 13683 0 loop9 0.08 0.45 0.00 362 0 loop10 0.12 0.60 0.00 476 0 loop11 0.04 0.14 0.00 108 0 loop12 0.06 0.44 0.00 353 0 loop13 0.05 0.44 0.00 348 0 loop14 0.08 0.46 0.00 366 0 loop15 0.08 0.45 0.00 361 0 avg-cpu: %user %nice %system %iowait %steal %idle 1.01 0.00 0.00 0.00 0.00 98.99 Device tps kB_read/s kB_wrtn/s kB_read kB_wrtn loop0 0.00 0.00 0.00 0 0 loop1 0.00 0.00 0.00 0 0 loop2 0.00 0.00 0.00 0 0 loop3 0.00 0.00 0.00 0 0 loop4 0.00 0.00 0.00 0 0 loop5 0.00 0.00 0.00 0 0 loop6 0.00 0.00 0.00 0 0 loop7 0.00 0.00 0.00 0 0 fd0 0.00 0.00 0.00 0 0 sda 0.00 0.00 0.00 0 0 scd0 0.00 0.00 0.00 0 0 scd1 0.00 0.00 0.00 0 0 loop8 0.00 0.00 0.00 0 0 loop9 0.00 0.00 0.00 0 0 loop10 0.00 0.00 0.00 0 0 loop11 0.00 0.00 0.00 0 0 loop12 0.00 0.00 0.00 0 0 loop13 0.00 0.00 0.00 0 0 loop14 0.00 0.00 0.00 0 0 loop15 0.00 0.00 0.00 0 0 avg-cpu: %user %nice %system %iowait %steal %idle 0.00 0.00 1.00 0.00 0.00 99.00 Device tps kB_read/s kB_wrtn/s kB_read kB_wrtn loop0 0.00 0.00 0.00 0 0 loop1 0.00 0.00 0.00 0 0 loop2 0.00 0.00 0.00 0 0 loop3 0.00 0.00 0.00 0 0 loop4 0.00 0.00 0.00 0 0 loop5 0.00 0.00 0.00 0 0 loop6 0.00 0.00 0.00 0 0 loop7 0.00 0.00 0.00 0 0 fd0 0.00 0.00 0.00 0 0 sda 0.00 0.00 0.00 0 0 scd0 0.00 0.00 0.00 0 0 scd1 0.00 0.00 0.00 0 0 loop8 0.00 0.00 0.00 0 0 loop9 0.00 0.00 0.00 0 0 loop10 0.00 0.00 0.00 0 0 loop11 0.00 0.00 0.00 0 0 loop12 0.00 0.00 0.00 0 0 loop13 0.00 0.00 0.00 0 0 loop14 0.00 0.00 0.00 0 0 loop15 0.00 0.00 0.00 0 0 jc-1.17.3/tests/fixtures/ubuntu-18.04/iostat-m-streaming.json000066400000000000000000000042301415226333200236230ustar00rootroot00000000000000[{"percent_user":13.71,"percent_nice":4.14,"percent_system":8.73,"percent_iowait":1.56,"percent_steal":0.0,"percent_idle":71.86,"type":"cpu"},{"device":"loop0","tps":0.06,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_read":0,"mb_wrtn":0,"type":"device"},{"device":"loop1","tps":13.06,"mb_read_s":0.01,"mb_wrtn_s":0.0,"mb_read":9,"mb_wrtn":0,"type":"device"},{"device":"loop2","tps":0.14,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_read":1,"mb_wrtn":0,"type":"device"},{"device":"loop3","tps":0.08,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_read":0,"mb_wrtn":0,"type":"device"},{"device":"loop4","tps":0.09,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_read":1,"mb_wrtn":0,"type":"device"},{"device":"loop5","tps":0.16,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_read":1,"mb_wrtn":0,"type":"device"},{"device":"loop6","tps":0.06,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_read":0,"mb_wrtn":0,"type":"device"},{"device":"loop7","tps":0.09,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_read":1,"mb_wrtn":0,"type":"device"},{"device":"fd0","tps":0.3,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_read":0,"mb_wrtn":0,"type":"device"},{"device":"sda","tps":96.73,"mb_read_s":2.19,"mb_wrtn_s":3.88,"mb_read":1481,"mb_wrtn":2624,"type":"device"},{"device":"scd0","tps":3.41,"mb_read_s":0.07,"mb_wrtn_s":0.0,"mb_read":50,"mb_wrtn":0,"type":"device"},{"device":"scd1","tps":3.41,"mb_read_s":0.07,"mb_wrtn_s":0.0,"mb_read":50,"mb_wrtn":0,"type":"device"},{"device":"loop8","tps":18.73,"mb_read_s":0.02,"mb_wrtn_s":0.0,"mb_read":13,"mb_wrtn":0,"type":"device"},{"device":"loop9","tps":0.09,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_read":0,"mb_wrtn":0,"type":"device"},{"device":"loop10","tps":0.15,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_read":0,"mb_wrtn":0,"type":"device"},{"device":"loop11","tps":0.05,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_read":0,"mb_wrtn":0,"type":"device"},{"device":"loop12","tps":0.07,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_read":0,"mb_wrtn":0,"type":"device"},{"device":"loop13","tps":0.06,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_read":0,"mb_wrtn":0,"type":"device"},{"device":"loop14","tps":0.09,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_read":0,"mb_wrtn":0,"type":"device"},{"device":"loop15","tps":0.09,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_read":0,"mb_wrtn":0,"type":"device"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/iostat-m.json000066400000000000000000000042301415226333200216340ustar00rootroot00000000000000[{"percent_user":13.71,"percent_nice":4.14,"percent_system":8.73,"percent_iowait":1.56,"percent_steal":0.0,"percent_idle":71.86,"type":"cpu"},{"device":"loop0","tps":0.06,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_read":0,"mb_wrtn":0,"type":"device"},{"device":"loop1","tps":13.06,"mb_read_s":0.01,"mb_wrtn_s":0.0,"mb_read":9,"mb_wrtn":0,"type":"device"},{"device":"loop2","tps":0.14,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_read":1,"mb_wrtn":0,"type":"device"},{"device":"loop3","tps":0.08,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_read":0,"mb_wrtn":0,"type":"device"},{"device":"loop4","tps":0.09,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_read":1,"mb_wrtn":0,"type":"device"},{"device":"loop5","tps":0.16,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_read":1,"mb_wrtn":0,"type":"device"},{"device":"loop6","tps":0.06,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_read":0,"mb_wrtn":0,"type":"device"},{"device":"loop7","tps":0.09,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_read":1,"mb_wrtn":0,"type":"device"},{"device":"fd0","tps":0.3,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_read":0,"mb_wrtn":0,"type":"device"},{"device":"sda","tps":96.73,"mb_read_s":2.19,"mb_wrtn_s":3.88,"mb_read":1481,"mb_wrtn":2624,"type":"device"},{"device":"scd0","tps":3.41,"mb_read_s":0.07,"mb_wrtn_s":0.0,"mb_read":50,"mb_wrtn":0,"type":"device"},{"device":"scd1","tps":3.41,"mb_read_s":0.07,"mb_wrtn_s":0.0,"mb_read":50,"mb_wrtn":0,"type":"device"},{"device":"loop8","tps":18.73,"mb_read_s":0.02,"mb_wrtn_s":0.0,"mb_read":13,"mb_wrtn":0,"type":"device"},{"device":"loop9","tps":0.09,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_read":0,"mb_wrtn":0,"type":"device"},{"device":"loop10","tps":0.15,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_read":0,"mb_wrtn":0,"type":"device"},{"device":"loop11","tps":0.05,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_read":0,"mb_wrtn":0,"type":"device"},{"device":"loop12","tps":0.07,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_read":0,"mb_wrtn":0,"type":"device"},{"device":"loop13","tps":0.06,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_read":0,"mb_wrtn":0,"type":"device"},{"device":"loop14","tps":0.09,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_read":0,"mb_wrtn":0,"type":"device"},{"device":"loop15","tps":0.09,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_read":0,"mb_wrtn":0,"type":"device"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/iostat-m.out000066400000000000000000000032161415226333200214750ustar00rootroot00000000000000Linux 4.15.0-158-generic (kbrazil-ubuntu) 12/01/2021 _x86_64_ (1 CPU) avg-cpu: %user %nice %system %iowait %steal %idle 13.71 4.14 8.73 1.56 0.00 71.86 Device tps MB_read/s MB_wrtn/s MB_read MB_wrtn loop0 0.06 0.00 0.00 0 0 loop1 13.06 0.01 0.00 9 0 loop2 0.14 0.00 0.00 1 0 loop3 0.08 0.00 0.00 0 0 loop4 0.09 0.00 0.00 1 0 loop5 0.16 0.00 0.00 1 0 loop6 0.06 0.00 0.00 0 0 loop7 0.09 0.00 0.00 1 0 fd0 0.30 0.00 0.00 0 0 sda 96.73 2.19 3.88 1481 2624 scd0 3.41 0.07 0.00 50 0 scd1 3.41 0.07 0.00 50 0 loop8 18.73 0.02 0.00 13 0 loop9 0.09 0.00 0.00 0 0 loop10 0.15 0.00 0.00 0 0 loop11 0.05 0.00 0.00 0 0 loop12 0.07 0.00 0.00 0 0 loop13 0.06 0.00 0.00 0 0 loop14 0.09 0.00 0.00 0 0 loop15 0.09 0.00 0.00 0 0 jc-1.17.3/tests/fixtures/ubuntu-18.04/iostat-mx-streaming.json000066400000000000000000000120251415226333200240140ustar00rootroot00000000000000[{"percent_user":12.13,"percent_nice":3.65,"percent_system":7.74,"percent_iowait":1.38,"percent_steal":0.0,"percent_idle":75.1,"type":"cpu"},{"device":"loop0","r_s":0.05,"w_s":0.0,"rmb_s":0.0,"wmb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":16.9,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":3.14,"wareq_sz":0.0,"svctm":0.0,"percent_util":0.0,"type":"device"},{"device":"loop1","r_s":11.52,"w_s":0.0,"rmb_s":0.01,"wmb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":0.12,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":1.15,"wareq_sz":0.0,"svctm":0.0,"percent_util":0.0,"type":"device"},{"device":"loop2","r_s":0.13,"w_s":0.0,"rmb_s":0.0,"wmb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":6.97,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":14.57,"wareq_sz":0.0,"svctm":0.12,"percent_util":0.0,"type":"device"},{"device":"loop3","r_s":0.07,"w_s":0.0,"rmb_s":0.0,"wmb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":11.04,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":6.65,"wareq_sz":0.0,"svctm":0.22,"percent_util":0.0,"type":"device"},{"device":"loop4","r_s":0.08,"w_s":0.0,"rmb_s":0.0,"wmb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":13.83,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":18.08,"wareq_sz":0.0,"svctm":2.24,"percent_util":0.02,"type":"device"},{"device":"loop5","r_s":0.14,"w_s":0.0,"rmb_s":0.0,"wmb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":3.14,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":11.12,"wareq_sz":0.0,"svctm":0.0,"percent_util":0.0,"type":"device"},{"device":"loop6","r_s":0.05,"w_s":0.0,"rmb_s":0.0,"wmb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":3.0,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":3.14,"wareq_sz":0.0,"svctm":0.0,"percent_util":0.0,"type":"device"},{"device":"loop7","r_s":0.08,"w_s":0.0,"rmb_s":0.0,"wmb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":3.61,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":17.54,"wareq_sz":0.0,"svctm":0.07,"percent_util":0.0,"type":"device"},{"device":"fd0","r_s":0.27,"w_s":0.0,"rmb_s":0.0,"wmb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":4.43,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":3.92,"wareq_sz":0.0,"svctm":4.43,"percent_util":0.12,"type":"device"},{"device":"sda","r_s":40.74,"w_s":44.66,"rmb_s":1.93,"wmb_s":3.43,"rrqm_s":3.5,"wrqm_s":96.04,"percent_rrqm":7.9,"percent_wrqm":68.26,"r_await":1.65,"w_await":3.0,"aqu_sz":0.2,"rareq_sz":48.6,"wareq_sz":78.55,"svctm":0.55,"percent_util":4.66,"type":"device"},{"device":"scd0","r_s":3.01,"w_s":0.0,"rmb_s":0.07,"wmb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":0.3,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":22.48,"wareq_sz":0.0,"svctm":0.29,"percent_util":0.09,"type":"device"},{"device":"scd1","r_s":3.01,"w_s":0.0,"rmb_s":0.07,"wmb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":0.27,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":22.31,"wareq_sz":0.0,"svctm":0.27,"percent_util":0.08,"type":"device"},{"device":"loop8","r_s":16.54,"w_s":0.0,"rmb_s":0.02,"wmb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":0.83,"w_await":0.0,"aqu_sz":0.01,"rareq_sz":1.08,"wareq_sz":0.0,"svctm":0.04,"percent_util":0.06,"type":"device"},{"device":"loop9","r_s":0.08,"w_s":0.0,"rmb_s":0.0,"wmb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":6.67,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":6.03,"wareq_sz":0.0,"svctm":0.6,"percent_util":0.0,"type":"device"},{"device":"loop10","r_s":0.13,"w_s":0.0,"rmb_s":0.0,"wmb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":2.51,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":4.81,"wareq_sz":0.0,"svctm":0.04,"percent_util":0.0,"type":"device"},{"device":"loop11","r_s":0.04,"w_s":0.0,"rmb_s":0.0,"wmb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":6.67,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":3.27,"wareq_sz":0.0,"svctm":0.0,"percent_util":0.0,"type":"device"},{"device":"loop12","r_s":0.06,"w_s":0.0,"rmb_s":0.0,"wmb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":4.25,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":7.36,"wareq_sz":0.0,"svctm":0.42,"percent_util":0.0,"type":"device"},{"device":"loop13","r_s":0.06,"w_s":0.0,"rmb_s":0.0,"wmb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":5.02,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":8.1,"wareq_sz":0.0,"svctm":0.09,"percent_util":0.0,"type":"device"},{"device":"loop14","r_s":0.08,"w_s":0.0,"rmb_s":0.0,"wmb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":0.0,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":6.0,"wareq_sz":0.0,"svctm":0.0,"percent_util":0.0,"type":"device"},{"device":"loop15","r_s":0.08,"w_s":0.0,"rmb_s":0.0,"wmb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":0.06,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":5.82,"wareq_sz":0.0,"svctm":0.0,"percent_util":0.0,"type":"device"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/iostat-mx.json000066400000000000000000000120251415226333200220250ustar00rootroot00000000000000[{"percent_user":12.13,"percent_nice":3.65,"percent_system":7.74,"percent_iowait":1.38,"percent_steal":0.0,"percent_idle":75.1,"type":"cpu"},{"device":"loop0","r_s":0.05,"w_s":0.0,"rmb_s":0.0,"wmb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":16.9,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":3.14,"wareq_sz":0.0,"svctm":0.0,"percent_util":0.0,"type":"device"},{"device":"loop1","r_s":11.52,"w_s":0.0,"rmb_s":0.01,"wmb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":0.12,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":1.15,"wareq_sz":0.0,"svctm":0.0,"percent_util":0.0,"type":"device"},{"device":"loop2","r_s":0.13,"w_s":0.0,"rmb_s":0.0,"wmb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":6.97,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":14.57,"wareq_sz":0.0,"svctm":0.12,"percent_util":0.0,"type":"device"},{"device":"loop3","r_s":0.07,"w_s":0.0,"rmb_s":0.0,"wmb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":11.04,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":6.65,"wareq_sz":0.0,"svctm":0.22,"percent_util":0.0,"type":"device"},{"device":"loop4","r_s":0.08,"w_s":0.0,"rmb_s":0.0,"wmb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":13.83,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":18.08,"wareq_sz":0.0,"svctm":2.24,"percent_util":0.02,"type":"device"},{"device":"loop5","r_s":0.14,"w_s":0.0,"rmb_s":0.0,"wmb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":3.14,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":11.12,"wareq_sz":0.0,"svctm":0.0,"percent_util":0.0,"type":"device"},{"device":"loop6","r_s":0.05,"w_s":0.0,"rmb_s":0.0,"wmb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":3.0,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":3.14,"wareq_sz":0.0,"svctm":0.0,"percent_util":0.0,"type":"device"},{"device":"loop7","r_s":0.08,"w_s":0.0,"rmb_s":0.0,"wmb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":3.61,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":17.54,"wareq_sz":0.0,"svctm":0.07,"percent_util":0.0,"type":"device"},{"device":"fd0","r_s":0.27,"w_s":0.0,"rmb_s":0.0,"wmb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":4.43,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":3.92,"wareq_sz":0.0,"svctm":4.43,"percent_util":0.12,"type":"device"},{"device":"sda","r_s":40.74,"w_s":44.66,"rmb_s":1.93,"wmb_s":3.43,"rrqm_s":3.5,"wrqm_s":96.04,"percent_rrqm":7.9,"percent_wrqm":68.26,"r_await":1.65,"w_await":3.0,"aqu_sz":0.2,"rareq_sz":48.6,"wareq_sz":78.55,"svctm":0.55,"percent_util":4.66,"type":"device"},{"device":"scd0","r_s":3.01,"w_s":0.0,"rmb_s":0.07,"wmb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":0.3,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":22.48,"wareq_sz":0.0,"svctm":0.29,"percent_util":0.09,"type":"device"},{"device":"scd1","r_s":3.01,"w_s":0.0,"rmb_s":0.07,"wmb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":0.27,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":22.31,"wareq_sz":0.0,"svctm":0.27,"percent_util":0.08,"type":"device"},{"device":"loop8","r_s":16.54,"w_s":0.0,"rmb_s":0.02,"wmb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":0.83,"w_await":0.0,"aqu_sz":0.01,"rareq_sz":1.08,"wareq_sz":0.0,"svctm":0.04,"percent_util":0.06,"type":"device"},{"device":"loop9","r_s":0.08,"w_s":0.0,"rmb_s":0.0,"wmb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":6.67,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":6.03,"wareq_sz":0.0,"svctm":0.6,"percent_util":0.0,"type":"device"},{"device":"loop10","r_s":0.13,"w_s":0.0,"rmb_s":0.0,"wmb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":2.51,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":4.81,"wareq_sz":0.0,"svctm":0.04,"percent_util":0.0,"type":"device"},{"device":"loop11","r_s":0.04,"w_s":0.0,"rmb_s":0.0,"wmb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":6.67,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":3.27,"wareq_sz":0.0,"svctm":0.0,"percent_util":0.0,"type":"device"},{"device":"loop12","r_s":0.06,"w_s":0.0,"rmb_s":0.0,"wmb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":4.25,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":7.36,"wareq_sz":0.0,"svctm":0.42,"percent_util":0.0,"type":"device"},{"device":"loop13","r_s":0.06,"w_s":0.0,"rmb_s":0.0,"wmb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":5.02,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":8.1,"wareq_sz":0.0,"svctm":0.09,"percent_util":0.0,"type":"device"},{"device":"loop14","r_s":0.08,"w_s":0.0,"rmb_s":0.0,"wmb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":0.0,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":6.0,"wareq_sz":0.0,"svctm":0.0,"percent_util":0.0,"type":"device"},{"device":"loop15","r_s":0.08,"w_s":0.0,"rmb_s":0.0,"wmb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":0.06,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":5.82,"wareq_sz":0.0,"svctm":0.0,"percent_util":0.0,"type":"device"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/iostat-mx.out000066400000000000000000000057671415226333200217020ustar00rootroot00000000000000Linux 4.15.0-158-generic (kbrazil-ubuntu) 12/01/2021 _x86_64_ (1 CPU) avg-cpu: %user %nice %system %iowait %steal %idle 12.13 3.65 7.74 1.38 0.00 75.10 Device r/s w/s rMB/s wMB/s rrqm/s wrqm/s %rrqm %wrqm r_await w_await aqu-sz rareq-sz wareq-sz svctm %util loop0 0.05 0.00 0.00 0.00 0.00 0.00 0.00 0.00 16.90 0.00 0.00 3.14 0.00 0.00 0.00 loop1 11.52 0.00 0.01 0.00 0.00 0.00 0.00 0.00 0.12 0.00 0.00 1.15 0.00 0.00 0.00 loop2 0.13 0.00 0.00 0.00 0.00 0.00 0.00 0.00 6.97 0.00 0.00 14.57 0.00 0.12 0.00 loop3 0.07 0.00 0.00 0.00 0.00 0.00 0.00 0.00 11.04 0.00 0.00 6.65 0.00 0.22 0.00 loop4 0.08 0.00 0.00 0.00 0.00 0.00 0.00 0.00 13.83 0.00 0.00 18.08 0.00 2.24 0.02 loop5 0.14 0.00 0.00 0.00 0.00 0.00 0.00 0.00 3.14 0.00 0.00 11.12 0.00 0.00 0.00 loop6 0.05 0.00 0.00 0.00 0.00 0.00 0.00 0.00 3.00 0.00 0.00 3.14 0.00 0.00 0.00 loop7 0.08 0.00 0.00 0.00 0.00 0.00 0.00 0.00 3.61 0.00 0.00 17.54 0.00 0.07 0.00 fd0 0.27 0.00 0.00 0.00 0.00 0.00 0.00 0.00 4.43 0.00 0.00 3.92 0.00 4.43 0.12 sda 40.74 44.66 1.93 3.43 3.50 96.04 7.90 68.26 1.65 3.00 0.20 48.60 78.55 0.55 4.66 scd0 3.01 0.00 0.07 0.00 0.00 0.00 0.00 0.00 0.30 0.00 0.00 22.48 0.00 0.29 0.09 scd1 3.01 0.00 0.07 0.00 0.00 0.00 0.00 0.00 0.27 0.00 0.00 22.31 0.00 0.27 0.08 loop8 16.54 0.00 0.02 0.00 0.00 0.00 0.00 0.00 0.83 0.00 0.01 1.08 0.00 0.04 0.06 loop9 0.08 0.00 0.00 0.00 0.00 0.00 0.00 0.00 6.67 0.00 0.00 6.03 0.00 0.60 0.00 loop10 0.13 0.00 0.00 0.00 0.00 0.00 0.00 0.00 2.51 0.00 0.00 4.81 0.00 0.04 0.00 loop11 0.04 0.00 0.00 0.00 0.00 0.00 0.00 0.00 6.67 0.00 0.00 3.27 0.00 0.00 0.00 loop12 0.06 0.00 0.00 0.00 0.00 0.00 0.00 0.00 4.25 0.00 0.00 7.36 0.00 0.42 0.00 loop13 0.06 0.00 0.00 0.00 0.00 0.00 0.00 0.00 5.02 0.00 0.00 8.10 0.00 0.09 0.00 loop14 0.08 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 6.00 0.00 0.00 0.00 loop15 0.08 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.06 0.00 0.00 5.82 0.00 0.00 0.00 jc-1.17.3/tests/fixtures/ubuntu-18.04/iostat-streaming.json000066400000000000000000000043551415226333200234010ustar00rootroot00000000000000[{"percent_user":28.59,"percent_nice":11.11,"percent_system":33.13,"percent_iowait":1.52,"percent_steal":0.0,"percent_idle":25.66,"type":"cpu"},{"device":"loop0","tps":0.36,"kb_read_s":1.18,"kb_wrtn_s":0.0,"kb_read":108,"kb_wrtn":0,"type":"device"},{"device":"loop1","tps":94.34,"kb_read_s":108.57,"kb_wrtn_s":0.0,"kb_read":9923,"kb_wrtn":0,"type":"device"},{"device":"loop2","tps":0.98,"kb_read_s":15.27,"kb_wrtn_s":0.0,"kb_read":1396,"kb_wrtn":0,"type":"device"},{"device":"loop3","tps":0.5,"kb_read_s":3.73,"kb_wrtn_s":0.0,"kb_read":341,"kb_wrtn":0,"type":"device"},{"device":"loop4","tps":0.57,"kb_read_s":11.6,"kb_wrtn_s":0.0,"kb_read":1060,"kb_wrtn":0,"type":"device"},{"device":"loop5","tps":0.36,"kb_read_s":1.18,"kb_wrtn_s":0.0,"kb_read":108,"kb_wrtn":0,"type":"device"},{"device":"loop6","tps":0.36,"kb_read_s":1.18,"kb_wrtn_s":0.0,"kb_read":108,"kb_wrtn":0,"type":"device"},{"device":"loop7","tps":0.58,"kb_read_s":11.51,"kb_wrtn_s":0.0,"kb_read":1052,"kb_wrtn":0,"type":"device"},{"device":"fd0","tps":0.97,"kb_read_s":3.89,"kb_wrtn_s":0.0,"kb_read":356,"kb_wrtn":0,"type":"device"},{"device":"sda","tps":179.87,"kb_read_s":7918.74,"kb_wrtn_s":9915.54,"kb_read":723773,"kb_wrtn":906280,"type":"device"},{"device":"scd0","tps":11.58,"kb_read_s":260.7,"kb_wrtn_s":0.0,"kb_read":23828,"kb_wrtn":0,"type":"device"},{"device":"scd1","tps":11.58,"kb_read_s":258.69,"kb_wrtn_s":0.0,"kb_read":23644,"kb_wrtn":0,"type":"device"},{"device":"loop8","tps":138.52,"kb_read_s":149.51,"kb_wrtn_s":0.0,"kb_read":13665,"kb_wrtn":0,"type":"device"},{"device":"loop9","tps":0.57,"kb_read_s":3.76,"kb_wrtn_s":0.0,"kb_read":344,"kb_wrtn":0,"type":"device"},{"device":"loop10","tps":1.01,"kb_read_s":5.02,"kb_wrtn_s":0.0,"kb_read":459,"kb_wrtn":0,"type":"device"},{"device":"loop11","tps":0.36,"kb_read_s":1.18,"kb_wrtn_s":0.0,"kb_read":108,"kb_wrtn":0,"type":"device"},{"device":"loop12","tps":0.45,"kb_read_s":3.68,"kb_wrtn_s":0.0,"kb_read":336,"kb_wrtn":0,"type":"device"},{"device":"loop13","tps":0.39,"kb_read_s":3.62,"kb_wrtn_s":0.0,"kb_read":331,"kb_wrtn":0,"type":"device"},{"device":"loop14","tps":0.58,"kb_read_s":3.81,"kb_wrtn_s":0.0,"kb_read":348,"kb_wrtn":0,"type":"device"},{"device":"loop15","tps":0.59,"kb_read_s":3.75,"kb_wrtn_s":0.0,"kb_read":343,"kb_wrtn":0,"type":"device"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/iostat-x-streaming.json000066400000000000000000000121051415226333200236360ustar00rootroot00000000000000[{"percent_user":39.64,"percent_nice":12.36,"percent_system":28.21,"percent_iowait":2.28,"percent_steal":0.0,"percent_idle":17.51,"type":"cpu"},{"device":"loop0","r_s":0.24,"w_s":0.0,"rkb_s":0.79,"wkb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":20.12,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":3.27,"wareq_sz":0.0,"svctm":0.0,"percent_util":0.0,"type":"device"},{"device":"loop1","r_s":63.02,"w_s":0.0,"rkb_s":72.52,"wkb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":0.12,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":1.15,"wareq_sz":0.0,"svctm":0.0,"percent_util":0.01,"type":"device"},{"device":"loop2","r_s":0.66,"w_s":0.0,"rkb_s":10.2,"wkb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":7.42,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":15.51,"wareq_sz":0.0,"svctm":0.13,"percent_util":0.01,"type":"device"},{"device":"loop3","r_s":0.34,"w_s":0.0,"rkb_s":2.49,"wkb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":12.87,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":7.41,"wareq_sz":0.0,"svctm":0.26,"percent_util":0.01,"type":"device"},{"device":"loop4","r_s":0.43,"w_s":0.0,"rkb_s":7.8,"wkb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":13.83,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":18.08,"wareq_sz":0.0,"svctm":2.24,"percent_util":0.1,"type":"device"},{"device":"loop5","r_s":0.72,"w_s":0.0,"rkb_s":8.56,"wkb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":3.39,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":11.84,"wareq_sz":0.0,"svctm":0.0,"percent_util":0.0,"type":"device"},{"device":"loop6","r_s":0.24,"w_s":0.0,"rkb_s":0.79,"wkb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":3.64,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":3.27,"wareq_sz":0.0,"svctm":0.0,"percent_util":0.0,"type":"device"},{"device":"loop7","r_s":0.39,"w_s":0.0,"rkb_s":7.69,"wkb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":4.08,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":19.85,"wareq_sz":0.0,"svctm":0.08,"percent_util":0.0,"type":"device"},{"device":"fd0","r_s":1.21,"w_s":0.0,"rkb_s":4.82,"wkb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":2.59,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":4.0,"wareq_sz":0.0,"svctm":2.59,"percent_util":0.31,"type":"device"},{"device":"sda","r_s":127.92,"w_s":67.15,"rkb_s":8595.16,"wkb_s":12457.33,"rrqm_s":15.79,"wrqm_s":142.95,"percent_rrqm":10.99,"percent_wrqm":68.04,"r_await":2.57,"w_await":6.93,"aqu_sz":0.79,"rareq_sz":67.19,"wareq_sz":185.52,"svctm":0.78,"percent_util":15.14,"type":"device"},{"device":"scd0","r_s":14.11,"w_s":0.0,"rkb_s":317.88,"wkb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":0.34,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":22.52,"wareq_sz":0.0,"svctm":0.34,"percent_util":0.47,"type":"device"},{"device":"scd1","r_s":14.11,"w_s":0.0,"rkb_s":315.43,"wkb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":0.31,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":22.35,"wareq_sz":0.0,"svctm":0.31,"percent_util":0.43,"type":"device"},{"device":"loop8","r_s":92.5,"w_s":0.0,"rkb_s":99.83,"wkb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":0.83,"w_await":0.0,"aqu_sz":0.07,"rareq_sz":1.08,"wareq_sz":0.0,"svctm":0.04,"percent_util":0.36,"type":"device"},{"device":"loop9","r_s":0.38,"w_s":0.0,"rkb_s":2.51,"wkb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":7.54,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":6.62,"wareq_sz":0.0,"svctm":0.69,"percent_util":0.03,"type":"device"},{"device":"loop10","r_s":0.67,"w_s":0.0,"rkb_s":3.35,"wkb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":2.61,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":4.99,"wareq_sz":0.0,"svctm":0.04,"percent_util":0.0,"type":"device"},{"device":"loop11","r_s":0.24,"w_s":0.0,"rkb_s":0.79,"wkb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":6.67,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":3.27,"wareq_sz":0.0,"svctm":0.0,"percent_util":0.0,"type":"device"},{"device":"loop12","r_s":0.3,"w_s":0.0,"rkb_s":2.45,"wkb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":4.98,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":8.2,"wareq_sz":0.0,"svctm":0.49,"percent_util":0.01,"type":"device"},{"device":"loop13","r_s":0.26,"w_s":0.0,"rkb_s":2.42,"wkb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":5.67,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":9.19,"wareq_sz":0.0,"svctm":0.11,"percent_util":0.0,"type":"device"},{"device":"loop14","r_s":0.39,"w_s":0.0,"rkb_s":2.54,"wkb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":0.0,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":6.57,"wareq_sz":0.0,"svctm":0.0,"percent_util":0.0,"type":"device"},{"device":"loop15","r_s":0.39,"w_s":0.0,"rkb_s":2.51,"wkb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":0.0,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":6.35,"wareq_sz":0.0,"svctm":0.0,"percent_util":0.0,"type":"device"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/iostat-x.json000066400000000000000000000121051415226333200216470ustar00rootroot00000000000000[{"percent_user":39.64,"percent_nice":12.36,"percent_system":28.21,"percent_iowait":2.28,"percent_steal":0.0,"percent_idle":17.51,"type":"cpu"},{"device":"loop0","r_s":0.24,"w_s":0.0,"rkb_s":0.79,"wkb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":20.12,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":3.27,"wareq_sz":0.0,"svctm":0.0,"percent_util":0.0,"type":"device"},{"device":"loop1","r_s":63.02,"w_s":0.0,"rkb_s":72.52,"wkb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":0.12,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":1.15,"wareq_sz":0.0,"svctm":0.0,"percent_util":0.01,"type":"device"},{"device":"loop2","r_s":0.66,"w_s":0.0,"rkb_s":10.2,"wkb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":7.42,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":15.51,"wareq_sz":0.0,"svctm":0.13,"percent_util":0.01,"type":"device"},{"device":"loop3","r_s":0.34,"w_s":0.0,"rkb_s":2.49,"wkb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":12.87,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":7.41,"wareq_sz":0.0,"svctm":0.26,"percent_util":0.01,"type":"device"},{"device":"loop4","r_s":0.43,"w_s":0.0,"rkb_s":7.8,"wkb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":13.83,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":18.08,"wareq_sz":0.0,"svctm":2.24,"percent_util":0.1,"type":"device"},{"device":"loop5","r_s":0.72,"w_s":0.0,"rkb_s":8.56,"wkb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":3.39,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":11.84,"wareq_sz":0.0,"svctm":0.0,"percent_util":0.0,"type":"device"},{"device":"loop6","r_s":0.24,"w_s":0.0,"rkb_s":0.79,"wkb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":3.64,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":3.27,"wareq_sz":0.0,"svctm":0.0,"percent_util":0.0,"type":"device"},{"device":"loop7","r_s":0.39,"w_s":0.0,"rkb_s":7.69,"wkb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":4.08,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":19.85,"wareq_sz":0.0,"svctm":0.08,"percent_util":0.0,"type":"device"},{"device":"fd0","r_s":1.21,"w_s":0.0,"rkb_s":4.82,"wkb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":2.59,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":4.0,"wareq_sz":0.0,"svctm":2.59,"percent_util":0.31,"type":"device"},{"device":"sda","r_s":127.92,"w_s":67.15,"rkb_s":8595.16,"wkb_s":12457.33,"rrqm_s":15.79,"wrqm_s":142.95,"percent_rrqm":10.99,"percent_wrqm":68.04,"r_await":2.57,"w_await":6.93,"aqu_sz":0.79,"rareq_sz":67.19,"wareq_sz":185.52,"svctm":0.78,"percent_util":15.14,"type":"device"},{"device":"scd0","r_s":14.11,"w_s":0.0,"rkb_s":317.88,"wkb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":0.34,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":22.52,"wareq_sz":0.0,"svctm":0.34,"percent_util":0.47,"type":"device"},{"device":"scd1","r_s":14.11,"w_s":0.0,"rkb_s":315.43,"wkb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":0.31,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":22.35,"wareq_sz":0.0,"svctm":0.31,"percent_util":0.43,"type":"device"},{"device":"loop8","r_s":92.5,"w_s":0.0,"rkb_s":99.83,"wkb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":0.83,"w_await":0.0,"aqu_sz":0.07,"rareq_sz":1.08,"wareq_sz":0.0,"svctm":0.04,"percent_util":0.36,"type":"device"},{"device":"loop9","r_s":0.38,"w_s":0.0,"rkb_s":2.51,"wkb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":7.54,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":6.62,"wareq_sz":0.0,"svctm":0.69,"percent_util":0.03,"type":"device"},{"device":"loop10","r_s":0.67,"w_s":0.0,"rkb_s":3.35,"wkb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":2.61,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":4.99,"wareq_sz":0.0,"svctm":0.04,"percent_util":0.0,"type":"device"},{"device":"loop11","r_s":0.24,"w_s":0.0,"rkb_s":0.79,"wkb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":6.67,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":3.27,"wareq_sz":0.0,"svctm":0.0,"percent_util":0.0,"type":"device"},{"device":"loop12","r_s":0.3,"w_s":0.0,"rkb_s":2.45,"wkb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":4.98,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":8.2,"wareq_sz":0.0,"svctm":0.49,"percent_util":0.01,"type":"device"},{"device":"loop13","r_s":0.26,"w_s":0.0,"rkb_s":2.42,"wkb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":5.67,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":9.19,"wareq_sz":0.0,"svctm":0.11,"percent_util":0.0,"type":"device"},{"device":"loop14","r_s":0.39,"w_s":0.0,"rkb_s":2.54,"wkb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":0.0,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":6.57,"wareq_sz":0.0,"svctm":0.0,"percent_util":0.0,"type":"device"},{"device":"loop15","r_s":0.39,"w_s":0.0,"rkb_s":2.51,"wkb_s":0.0,"rrqm_s":0.0,"wrqm_s":0.0,"percent_rrqm":0.0,"percent_wrqm":0.0,"r_await":0.0,"w_await":0.0,"aqu_sz":0.0,"rareq_sz":6.35,"wareq_sz":0.0,"svctm":0.0,"percent_util":0.0,"type":"device"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/iostat-x.out000066400000000000000000000057671415226333200215250ustar00rootroot00000000000000Linux 4.15.0-158-generic (kbrazil-ubuntu) 12/01/2021 _x86_64_ (1 CPU) avg-cpu: %user %nice %system %iowait %steal %idle 39.64 12.36 28.21 2.28 0.00 17.51 Device r/s w/s rkB/s wkB/s rrqm/s wrqm/s %rrqm %wrqm r_await w_await aqu-sz rareq-sz wareq-sz svctm %util loop0 0.24 0.00 0.79 0.00 0.00 0.00 0.00 0.00 20.12 0.00 0.00 3.27 0.00 0.00 0.00 loop1 63.02 0.00 72.52 0.00 0.00 0.00 0.00 0.00 0.12 0.00 0.00 1.15 0.00 0.00 0.01 loop2 0.66 0.00 10.20 0.00 0.00 0.00 0.00 0.00 7.42 0.00 0.00 15.51 0.00 0.13 0.01 loop3 0.34 0.00 2.49 0.00 0.00 0.00 0.00 0.00 12.87 0.00 0.00 7.41 0.00 0.26 0.01 loop4 0.43 0.00 7.80 0.00 0.00 0.00 0.00 0.00 13.83 0.00 0.00 18.08 0.00 2.24 0.10 loop5 0.72 0.00 8.56 0.00 0.00 0.00 0.00 0.00 3.39 0.00 0.00 11.84 0.00 0.00 0.00 loop6 0.24 0.00 0.79 0.00 0.00 0.00 0.00 0.00 3.64 0.00 0.00 3.27 0.00 0.00 0.00 loop7 0.39 0.00 7.69 0.00 0.00 0.00 0.00 0.00 4.08 0.00 0.00 19.85 0.00 0.08 0.00 fd0 1.21 0.00 4.82 0.00 0.00 0.00 0.00 0.00 2.59 0.00 0.00 4.00 0.00 2.59 0.31 sda 127.92 67.15 8595.16 12457.33 15.79 142.95 10.99 68.04 2.57 6.93 0.79 67.19 185.52 0.78 15.14 scd0 14.11 0.00 317.88 0.00 0.00 0.00 0.00 0.00 0.34 0.00 0.00 22.52 0.00 0.34 0.47 scd1 14.11 0.00 315.43 0.00 0.00 0.00 0.00 0.00 0.31 0.00 0.00 22.35 0.00 0.31 0.43 loop8 92.50 0.00 99.83 0.00 0.00 0.00 0.00 0.00 0.83 0.00 0.07 1.08 0.00 0.04 0.36 loop9 0.38 0.00 2.51 0.00 0.00 0.00 0.00 0.00 7.54 0.00 0.00 6.62 0.00 0.69 0.03 loop10 0.67 0.00 3.35 0.00 0.00 0.00 0.00 0.00 2.61 0.00 0.00 4.99 0.00 0.04 0.00 loop11 0.24 0.00 0.79 0.00 0.00 0.00 0.00 0.00 6.67 0.00 0.00 3.27 0.00 0.00 0.00 loop12 0.30 0.00 2.45 0.00 0.00 0.00 0.00 0.00 4.98 0.00 0.00 8.20 0.00 0.49 0.01 loop13 0.26 0.00 2.42 0.00 0.00 0.00 0.00 0.00 5.67 0.00 0.00 9.19 0.00 0.11 0.00 loop14 0.39 0.00 2.54 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 6.57 0.00 0.00 0.00 loop15 0.39 0.00 2.51 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 6.35 0.00 0.00 0.00 jc-1.17.3/tests/fixtures/ubuntu-18.04/iostat.json000066400000000000000000000043551415226333200214120ustar00rootroot00000000000000[{"percent_user":28.59,"percent_nice":11.11,"percent_system":33.13,"percent_iowait":1.52,"percent_steal":0.0,"percent_idle":25.66,"type":"cpu"},{"device":"loop0","tps":0.36,"kb_read_s":1.18,"kb_wrtn_s":0.0,"kb_read":108,"kb_wrtn":0,"type":"device"},{"device":"loop1","tps":94.34,"kb_read_s":108.57,"kb_wrtn_s":0.0,"kb_read":9923,"kb_wrtn":0,"type":"device"},{"device":"loop2","tps":0.98,"kb_read_s":15.27,"kb_wrtn_s":0.0,"kb_read":1396,"kb_wrtn":0,"type":"device"},{"device":"loop3","tps":0.5,"kb_read_s":3.73,"kb_wrtn_s":0.0,"kb_read":341,"kb_wrtn":0,"type":"device"},{"device":"loop4","tps":0.57,"kb_read_s":11.6,"kb_wrtn_s":0.0,"kb_read":1060,"kb_wrtn":0,"type":"device"},{"device":"loop5","tps":0.36,"kb_read_s":1.18,"kb_wrtn_s":0.0,"kb_read":108,"kb_wrtn":0,"type":"device"},{"device":"loop6","tps":0.36,"kb_read_s":1.18,"kb_wrtn_s":0.0,"kb_read":108,"kb_wrtn":0,"type":"device"},{"device":"loop7","tps":0.58,"kb_read_s":11.51,"kb_wrtn_s":0.0,"kb_read":1052,"kb_wrtn":0,"type":"device"},{"device":"fd0","tps":0.97,"kb_read_s":3.89,"kb_wrtn_s":0.0,"kb_read":356,"kb_wrtn":0,"type":"device"},{"device":"sda","tps":179.87,"kb_read_s":7918.74,"kb_wrtn_s":9915.54,"kb_read":723773,"kb_wrtn":906280,"type":"device"},{"device":"scd0","tps":11.58,"kb_read_s":260.7,"kb_wrtn_s":0.0,"kb_read":23828,"kb_wrtn":0,"type":"device"},{"device":"scd1","tps":11.58,"kb_read_s":258.69,"kb_wrtn_s":0.0,"kb_read":23644,"kb_wrtn":0,"type":"device"},{"device":"loop8","tps":138.52,"kb_read_s":149.51,"kb_wrtn_s":0.0,"kb_read":13665,"kb_wrtn":0,"type":"device"},{"device":"loop9","tps":0.57,"kb_read_s":3.76,"kb_wrtn_s":0.0,"kb_read":344,"kb_wrtn":0,"type":"device"},{"device":"loop10","tps":1.01,"kb_read_s":5.02,"kb_wrtn_s":0.0,"kb_read":459,"kb_wrtn":0,"type":"device"},{"device":"loop11","tps":0.36,"kb_read_s":1.18,"kb_wrtn_s":0.0,"kb_read":108,"kb_wrtn":0,"type":"device"},{"device":"loop12","tps":0.45,"kb_read_s":3.68,"kb_wrtn_s":0.0,"kb_read":336,"kb_wrtn":0,"type":"device"},{"device":"loop13","tps":0.39,"kb_read_s":3.62,"kb_wrtn_s":0.0,"kb_read":331,"kb_wrtn":0,"type":"device"},{"device":"loop14","tps":0.58,"kb_read_s":3.81,"kb_wrtn_s":0.0,"kb_read":348,"kb_wrtn":0,"type":"device"},{"device":"loop15","tps":0.59,"kb_read_s":3.75,"kb_wrtn_s":0.0,"kb_read":343,"kb_wrtn":0,"type":"device"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/iostat.out000066400000000000000000000032161415226333200212430ustar00rootroot00000000000000Linux 4.15.0-158-generic (kbrazil-ubuntu) 12/01/2021 _x86_64_ (1 CPU) avg-cpu: %user %nice %system %iowait %steal %idle 28.59 11.11 33.13 1.52 0.00 25.66 Device tps kB_read/s kB_wrtn/s kB_read kB_wrtn loop0 0.36 1.18 0.00 108 0 loop1 94.34 108.57 0.00 9923 0 loop2 0.98 15.27 0.00 1396 0 loop3 0.50 3.73 0.00 341 0 loop4 0.57 11.60 0.00 1060 0 loop5 0.36 1.18 0.00 108 0 loop6 0.36 1.18 0.00 108 0 loop7 0.58 11.51 0.00 1052 0 fd0 0.97 3.89 0.00 356 0 sda 179.87 7918.74 9915.54 723773 906280 scd0 11.58 260.70 0.00 23828 0 scd1 11.58 258.69 0.00 23644 0 loop8 138.52 149.51 0.00 13665 0 loop9 0.57 3.76 0.00 344 0 loop10 1.01 5.02 0.00 459 0 loop11 0.36 1.18 0.00 108 0 loop12 0.45 3.68 0.00 336 0 loop13 0.39 3.62 0.00 331 0 loop14 0.58 3.81 0.00 348 0 loop15 0.59 3.75 0.00 343 0 jc-1.17.3/tests/fixtures/ubuntu-18.04/iptables-filter-line-numbers.json000066400000000000000000000024061415226333200255660ustar00rootroot00000000000000[{"chain": "INPUT", "rules": [{"num": 1, "target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"num": 2, "target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"num": 3, "target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "ctstate RELATED,ESTABLISHED"}, {"num": 4, "target": "DROP", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "ctstate INVALID"}, {"num": 5, "target": "DROP", "prot": "all", "opt": null, "source": "15.15.15.51", "destination": "anywhere"}, {"num": 6, "target": "ACCEPT", "prot": "tcp", "opt": null, "source": "15.15.15.0/24", "destination": "anywhere", "options": "tcp dpt:ssh ctstate NEW,ESTABLISHED"}]}, {"chain": "FORWARD", "rules": []}, {"chain": "OUTPUT", "rules": [{"num": 1, "target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"num": 2, "target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "ctstate ESTABLISHED"}, {"num": 3, "target": "ACCEPT", "prot": "tcp", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "tcp spt:ssh ctstate ESTABLISHED"}]}] jc-1.17.3/tests/fixtures/ubuntu-18.04/iptables-filter-line-numbers.out000066400000000000000000000020011415226333200254130ustar00rootroot00000000000000Chain INPUT (policy ACCEPT) num target prot opt source destination 1 ACCEPT all -- anywhere anywhere 2 ACCEPT all -- anywhere anywhere 3 ACCEPT all -- anywhere anywhere ctstate RELATED,ESTABLISHED 4 DROP all -- anywhere anywhere ctstate INVALID 5 DROP all -- 15.15.15.51 anywhere 6 ACCEPT tcp -- 15.15.15.0/24 anywhere tcp dpt:ssh ctstate NEW,ESTABLISHED Chain FORWARD (policy ACCEPT) num target prot opt source destination Chain OUTPUT (policy ACCEPT) num target prot opt source destination 1 ACCEPT all -- anywhere anywhere 2 ACCEPT all -- anywhere anywhere ctstate ESTABLISHED 3 ACCEPT tcp -- anywhere anywhere tcp spt:ssh ctstate ESTABLISHED jc-1.17.3/tests/fixtures/ubuntu-18.04/iptables-filter-nv.json000066400000000000000000000076011415226333200236130ustar00rootroot00000000000000[{"chain": "INPUT", "rules": [{"pkts": 66, "bytes": 6034, "target": "ACCEPT", "prot": "all", "opt": null, "in": "lo", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0"}, {"pkts": 1137, "bytes": 318000, "target": "ACCEPT", "prot": "all", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0", "options": "ctstate RELATED,ESTABLISHED"}, {"pkts": 0, "bytes": 0, "target": "DROP", "prot": "all", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0", "options": "ctstate INVALID"}, {"pkts": 0, "bytes": 0, "target": "ACCEPT", "prot": "tcp", "opt": null, "in": "*", "out": "*", "source": "15.15.15.0/24", "destination": "0.0.0.0/0", "options": "tcp dpt:22 ctstate NEW,ESTABLISHED"}, {"pkts": 0, "bytes": 0, "target": "ACCEPT", "prot": "all", "opt": null, "in": "lo", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0"}, {"pkts": 0, "bytes": 0, "target": "ACCEPT", "prot": "all", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0", "options": "ctstate RELATED,ESTABLISHED"}, {"pkts": 0, "bytes": 0, "target": "DROP", "prot": "all", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0", "options": "ctstate INVALID"}, {"pkts": 0, "bytes": 0, "target": "ACCEPT", "prot": "tcp", "opt": null, "in": "*", "out": "*", "source": "15.15.15.0/24", "destination": "0.0.0.0/0", "options": "tcp dpt:22 ctstate NEW,ESTABLISHED"}, {"pkts": 0, "bytes": 0, "target": "ACCEPT", "prot": "all", "opt": null, "in": "lo", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0"}, {"pkts": 0, "bytes": 0, "target": "ACCEPT", "prot": "all", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0", "options": "ctstate RELATED,ESTABLISHED"}, {"pkts": 0, "bytes": 0, "target": "DROP", "prot": "all", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0", "options": "ctstate INVALID"}, {"pkts": 0, "bytes": 0, "target": "DROP", "prot": "all", "opt": null, "in": "lo", "out": "*", "source": "15.15.15.51", "destination": "0.0.0.0/0"}, {"pkts": 0, "bytes": 0, "target": "ACCEPT", "prot": "tcp", "opt": null, "in": "*", "out": "*", "source": "15.15.15.0/24", "destination": "0.0.0.0/0", "options": "tcp dpt:22 ctstate NEW,ESTABLISHED"}]}, {"chain": "FORWARD", "rules": []}, {"chain": "OUTPUT", "rules": [{"pkts": 66, "bytes": 6034, "target": "ACCEPT", "prot": "all", "opt": null, "in": "*", "out": "lo", "source": "0.0.0.0/0", "destination": "0.0.0.0/0"}, {"pkts": 889, "bytes": 158000, "target": "ACCEPT", "prot": "all", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0", "options": "ctstate ESTABLISHED"}, {"pkts": 0, "bytes": 0, "target": "ACCEPT", "prot": "tcp", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0", "options": "tcp spt:22 ctstate ESTABLISHED"}, {"pkts": 0, "bytes": 0, "target": "ACCEPT", "prot": "all", "opt": null, "in": "*", "out": "lo", "source": "0.0.0.0/0", "destination": "0.0.0.0/0"}, {"pkts": 0, "bytes": 0, "target": "ACCEPT", "prot": "all", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0", "options": "ctstate ESTABLISHED"}, {"pkts": 0, "bytes": 0, "target": "ACCEPT", "prot": "tcp", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0", "options": "tcp spt:22 ctstate ESTABLISHED"}, {"pkts": 0, "bytes": 0, "target": "ACCEPT", "prot": "all", "opt": null, "in": "*", "out": "lo", "source": "0.0.0.0/0", "destination": "0.0.0.0/0"}, {"pkts": 0, "bytes": 0, "target": "ACCEPT", "prot": "all", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0", "options": "ctstate ESTABLISHED"}, {"pkts": 0, "bytes": 0, "target": "ACCEPT", "prot": "tcp", "opt": null, "in": "*", "out": "*", "source": "0.0.0.0/0", "destination": "0.0.0.0/0", "options": "tcp spt:22 ctstate ESTABLISHED"}]}] jc-1.17.3/tests/fixtures/ubuntu-18.04/iptables-filter-nv.out000066400000000000000000000053131415226333200234470ustar00rootroot00000000000000Chain INPUT (policy ACCEPT 0 packets, 0 bytes) pkts bytes target prot opt in out source destination 66 6034 ACCEPT all -- lo * 0.0.0.0/0 0.0.0.0/0 1137 318K ACCEPT all -- * * 0.0.0.0/0 0.0.0.0/0 ctstate RELATED,ESTABLISHED 0 0 DROP all -- * * 0.0.0.0/0 0.0.0.0/0 ctstate INVALID 0 0 ACCEPT tcp -- * * 15.15.15.0/24 0.0.0.0/0 tcp dpt:22 ctstate NEW,ESTABLISHED 0 0 ACCEPT all -- lo * 0.0.0.0/0 0.0.0.0/0 0 0 ACCEPT all -- * * 0.0.0.0/0 0.0.0.0/0 ctstate RELATED,ESTABLISHED 0 0 DROP all -- * * 0.0.0.0/0 0.0.0.0/0 ctstate INVALID 0 0 ACCEPT tcp -- * * 15.15.15.0/24 0.0.0.0/0 tcp dpt:22 ctstate NEW,ESTABLISHED 0 0 ACCEPT all -- lo * 0.0.0.0/0 0.0.0.0/0 0 0 ACCEPT all -- * * 0.0.0.0/0 0.0.0.0/0 ctstate RELATED,ESTABLISHED 0 0 DROP all -- * * 0.0.0.0/0 0.0.0.0/0 ctstate INVALID 0 0 DROP all -- lo * 15.15.15.51 0.0.0.0/0 0 0 ACCEPT tcp -- * * 15.15.15.0/24 0.0.0.0/0 tcp dpt:22 ctstate NEW,ESTABLISHED Chain FORWARD (policy ACCEPT 0 packets, 0 bytes) pkts bytes target prot opt in out source destination Chain OUTPUT (policy ACCEPT 4 packets, 277 bytes) pkts bytes target prot opt in out source destination 66 6034 ACCEPT all -- * lo 0.0.0.0/0 0.0.0.0/0 889 158K ACCEPT all -- * * 0.0.0.0/0 0.0.0.0/0 ctstate ESTABLISHED 0 0 ACCEPT tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp spt:22 ctstate ESTABLISHED 0 0 ACCEPT all -- * lo 0.0.0.0/0 0.0.0.0/0 0 0 ACCEPT all -- * * 0.0.0.0/0 0.0.0.0/0 ctstate ESTABLISHED 0 0 ACCEPT tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp spt:22 ctstate ESTABLISHED 0 0 ACCEPT all -- * lo 0.0.0.0/0 0.0.0.0/0 0 0 ACCEPT all -- * * 0.0.0.0/0 0.0.0.0/0 ctstate ESTABLISHED 0 0 ACCEPT tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp spt:22 ctstate ESTABLISHED jc-1.17.3/tests/fixtures/ubuntu-18.04/iptables-filter.json000066400000000000000000000055151415226333200231740ustar00rootroot00000000000000[{"chain": "INPUT", "rules": [{"target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "ctstate RELATED,ESTABLISHED"}, {"target": "DROP", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "ctstate INVALID"}, {"target": "ACCEPT", "prot": "tcp", "opt": null, "source": "15.15.15.0/24", "destination": "anywhere", "options": "tcp dpt:ssh ctstate NEW,ESTABLISHED"}, {"target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "ctstate RELATED,ESTABLISHED"}, {"target": "DROP", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "ctstate INVALID"}, {"target": "ACCEPT", "prot": "tcp", "opt": null, "source": "15.15.15.0/24", "destination": "anywhere", "options": "tcp dpt:ssh ctstate NEW,ESTABLISHED"}, {"target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "ctstate RELATED,ESTABLISHED"}, {"target": "DROP", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "ctstate INVALID"}, {"target": "DROP", "prot": "all", "opt": null, "source": "15.15.15.51", "destination": "anywhere"}, {"target": "ACCEPT", "prot": "tcp", "opt": null, "source": "15.15.15.0/24", "destination": "anywhere", "options": "tcp dpt:ssh ctstate NEW,ESTABLISHED"}]}, {"chain": "FORWARD", "rules": []}, {"chain": "OUTPUT", "rules": [{"target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "ctstate ESTABLISHED"}, {"target": "ACCEPT", "prot": "tcp", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "tcp spt:ssh ctstate ESTABLISHED"}, {"target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "ctstate ESTABLISHED"}, {"target": "ACCEPT", "prot": "tcp", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "tcp spt:ssh ctstate ESTABLISHED"}, {"target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere"}, {"target": "ACCEPT", "prot": "all", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "ctstate ESTABLISHED"}, {"target": "ACCEPT", "prot": "tcp", "opt": null, "source": "anywhere", "destination": "anywhere", "options": "tcp spt:ssh ctstate ESTABLISHED"}]}] jc-1.17.3/tests/fixtures/ubuntu-18.04/iptables-filter.out000066400000000000000000000037631415226333200230350ustar00rootroot00000000000000Chain INPUT (policy ACCEPT) target prot opt source destination ACCEPT all -- anywhere anywhere ACCEPT all -- anywhere anywhere ctstate RELATED,ESTABLISHED DROP all -- anywhere anywhere ctstate INVALID ACCEPT tcp -- 15.15.15.0/24 anywhere tcp dpt:ssh ctstate NEW,ESTABLISHED ACCEPT all -- anywhere anywhere ACCEPT all -- anywhere anywhere ctstate RELATED,ESTABLISHED DROP all -- anywhere anywhere ctstate INVALID ACCEPT tcp -- 15.15.15.0/24 anywhere tcp dpt:ssh ctstate NEW,ESTABLISHED ACCEPT all -- anywhere anywhere ACCEPT all -- anywhere anywhere ctstate RELATED,ESTABLISHED DROP all -- anywhere anywhere ctstate INVALID DROP all -- 15.15.15.51 anywhere ACCEPT tcp -- 15.15.15.0/24 anywhere tcp dpt:ssh ctstate NEW,ESTABLISHED Chain FORWARD (policy ACCEPT) target prot opt source destination Chain OUTPUT (policy ACCEPT) target prot opt source destination ACCEPT all -- anywhere anywhere ACCEPT all -- anywhere anywhere ctstate ESTABLISHED ACCEPT tcp -- anywhere anywhere tcp spt:ssh ctstate ESTABLISHED ACCEPT all -- anywhere anywhere ACCEPT all -- anywhere anywhere ctstate ESTABLISHED ACCEPT tcp -- anywhere anywhere tcp spt:ssh ctstate ESTABLISHED ACCEPT all -- anywhere anywhere ACCEPT all -- anywhere anywhere ctstate ESTABLISHED ACCEPT tcp -- anywhere anywhere tcp spt:ssh ctstate ESTABLISHED jc-1.17.3/tests/fixtures/ubuntu-18.04/iptables-mangle.json000066400000000000000000000002641415226333200231460ustar00rootroot00000000000000[{"chain": "PREROUTING", "rules": []}, {"chain": "INPUT", "rules": []}, {"chain": "FORWARD", "rules": []}, {"chain": "OUTPUT", "rules": []}, {"chain": "POSTROUTING", "rules": []}] jc-1.17.3/tests/fixtures/ubuntu-18.04/iptables-mangle.out000066400000000000000000000007241415226333200230050ustar00rootroot00000000000000Chain PREROUTING (policy ACCEPT) target prot opt source destination Chain INPUT (policy ACCEPT) target prot opt source destination Chain FORWARD (policy ACCEPT) target prot opt source destination Chain OUTPUT (policy ACCEPT) target prot opt source destination Chain POSTROUTING (policy ACCEPT) target prot opt source destination jc-1.17.3/tests/fixtures/ubuntu-18.04/iptables-nat.json000066400000000000000000000002211415226333200224560ustar00rootroot00000000000000[{"chain": "PREROUTING", "rules": []}, {"chain": "INPUT", "rules": []}, {"chain": "OUTPUT", "rules": []}, {"chain": "POSTROUTING", "rules": []}] jc-1.17.3/tests/fixtures/ubuntu-18.04/iptables-nat.out000066400000000000000000000005671415226333200223310ustar00rootroot00000000000000Chain PREROUTING (policy ACCEPT) target prot opt source destination Chain INPUT (policy ACCEPT) target prot opt source destination Chain OUTPUT (policy ACCEPT) target prot opt source destination Chain POSTROUTING (policy ACCEPT) target prot opt source destination jc-1.17.3/tests/fixtures/ubuntu-18.04/iptables-raw.json000066400000000000000000000001111415226333200224630ustar00rootroot00000000000000[{"chain": "PREROUTING", "rules": []}, {"chain": "OUTPUT", "rules": []}] jc-1.17.3/tests/fixtures/ubuntu-18.04/iptables-raw.out000066400000000000000000000002731415226333200223320ustar00rootroot00000000000000Chain PREROUTING (policy ACCEPT) target prot opt source destination Chain OUTPUT (policy ACCEPT) target prot opt source destination jc-1.17.3/tests/fixtures/ubuntu-18.04/jobs.json000066400000000000000000000004621415226333200210370ustar00rootroot00000000000000[{"job_number": 1, "status": "Running", "command": "sleep 11 &"}, {"job_number": 2, "status": "Running", "command": "sleep 12 &"}, {"job_number": 3, "history": "previous", "status": "Running", "command": "sleep 13 &"}, {"job_number": 4, "history": "current", "status": "Running", "command": "sleep 14 &"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/jobs.out000066400000000000000000000002441415226333200206730ustar00rootroot00000000000000[1] Running sleep 11 & [2] Running sleep 12 & [3]- Running sleep 13 & [4]+ Running sleep 14 & jc-1.17.3/tests/fixtures/ubuntu-18.04/last-w.json000066400000000000000000000034601415226333200213120ustar00rootroot00000000000000[{"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Fri Feb 28 23:03", "logout": "still logged in"}, {"user": "reboot", "tty": "system boot", "hostname": "4.15.0-88-generic", "login": "Fri Feb 28 23:03", "logout": "running"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Fri Feb 28 14:56", "logout": "down", "duration": "06:51"}, {"user": "reboot", "tty": "system boot", "hostname": "4.15.0-88-generic", "login": "Fri Feb 28 14:55", "logout": "21:47", "duration": "06:52"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Feb 27 23:50", "logout": "down", "duration": "00:10"}, {"user": "reboot", "tty": "system boot", "hostname": "4.15.0-88-generic", "login": "Thu Feb 27 23:49", "logout": "00:00", "duration": "00:11"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Feb 27 18:07", "logout": "down", "duration": "00:04"}, {"user": "reboot", "tty": "system boot", "hostname": "4.15.0-76-generic", "login": "Thu Feb 27 18:07", "logout": "18:12", "duration": "00:04"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Tue Feb 18 02:50", "logout": "down", "duration": "37:58"}, {"user": "reboot", "tty": "system boot", "hostname": "4.15.0-76-generic", "login": "Tue Feb 18 02:50", "logout": "16:48", "duration": "37:58"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Fri Feb 14 02:06", "logout": "01:48", "duration": "95:41"}, {"user": "reboot", "tty": "system boot", "hostname": "4.15.0-76-generic", "login": "Fri Feb 14 02:06", "logout": "01:48", "duration": "95:41"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Feb 6 01:05", "logout": "down", "duration": "38:43"}, {"user": "reboot", "tty": "system boot", "hostname": "4.15.0-76-generic", "login": "Thu Feb 6 01:04", "logout": "15:48", "duration": "38:43"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/last-w.out000066400000000000000000000020611415226333200211440ustar00rootroot00000000000000kbrazil ttyS0 Fri Feb 28 23:03 still logged in reboot system boot 4.15.0-88-generic Fri Feb 28 23:03 still running kbrazil ttyS0 Fri Feb 28 14:56 - down (06:51) reboot system boot 4.15.0-88-generic Fri Feb 28 14:55 - 21:47 (06:52) kbrazil ttyS0 Thu Feb 27 23:50 - down (00:10) reboot system boot 4.15.0-88-generic Thu Feb 27 23:49 - 00:00 (00:11) kbrazil ttyS0 Thu Feb 27 18:07 - down (00:04) reboot system boot 4.15.0-76-generic Thu Feb 27 18:07 - 18:12 (00:04) kbrazil ttyS0 Tue Feb 18 02:50 - down (1+13:58) reboot system boot 4.15.0-76-generic Tue Feb 18 02:50 - 16:48 (1+13:58) kbrazil ttyS0 Fri Feb 14 02:06 - 01:48 (3+23:41) reboot system boot 4.15.0-76-generic Fri Feb 14 02:06 - 01:48 (3+23:41) kbrazil ttyS0 Thu Feb 6 01:05 - down (1+14:43) reboot system boot 4.15.0-76-generic Thu Feb 6 01:04 - 15:48 (1+14:43) wtmp begins Wed Feb 5 22:22:55 2020 jc-1.17.3/tests/fixtures/ubuntu-18.04/last.json000066400000000000000000000034511415226333200210460ustar00rootroot00000000000000[{"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Fri Feb 28 23:03", "logout": "still logged in"}, {"user": "reboot", "tty": "system boot", "hostname": "4.15.0-88-generi", "login": "Fri Feb 28 23:03", "logout": "running"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Fri Feb 28 14:56", "logout": "down", "duration": "06:51"}, {"user": "reboot", "tty": "system boot", "hostname": "4.15.0-88-generi", "login": "Fri Feb 28 14:55", "logout": "21:47", "duration": "06:52"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Feb 27 23:50", "logout": "down", "duration": "00:10"}, {"user": "reboot", "tty": "system boot", "hostname": "4.15.0-88-generi", "login": "Thu Feb 27 23:49", "logout": "00:00", "duration": "00:11"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Feb 27 18:07", "logout": "down", "duration": "00:04"}, {"user": "reboot", "tty": "system boot", "hostname": "4.15.0-76-generi", "login": "Thu Feb 27 18:07", "logout": "18:12", "duration": "00:04"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Tue Feb 18 02:50", "logout": "down", "duration": "37:58"}, {"user": "reboot", "tty": "system boot", "hostname": "4.15.0-76-generi", "login": "Tue Feb 18 02:50", "logout": "16:48", "duration": "37:58"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Fri Feb 14 02:06", "logout": "01:48", "duration": "95:41"}, {"user": "reboot", "tty": "system boot", "hostname": "4.15.0-76-generi", "login": "Fri Feb 14 02:06", "logout": "01:48", "duration": "95:41"}, {"user": "kbrazil", "tty": "ttyS0", "hostname": null, "login": "Thu Feb 6 01:05", "logout": "down", "duration": "38:43"}, {"user": "reboot", "tty": "system boot", "hostname": "4.15.0-76-generi", "login": "Thu Feb 6 01:04", "logout": "15:48", "duration": "38:43"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/last.out000066400000000000000000000020521415226333200207000ustar00rootroot00000000000000kbrazil ttyS0 Fri Feb 28 23:03 still logged in reboot system boot 4.15.0-88-generi Fri Feb 28 23:03 still running kbrazil ttyS0 Fri Feb 28 14:56 - down (06:51) reboot system boot 4.15.0-88-generi Fri Feb 28 14:55 - 21:47 (06:52) kbrazil ttyS0 Thu Feb 27 23:50 - down (00:10) reboot system boot 4.15.0-88-generi Thu Feb 27 23:49 - 00:00 (00:11) kbrazil ttyS0 Thu Feb 27 18:07 - down (00:04) reboot system boot 4.15.0-76-generi Thu Feb 27 18:07 - 18:12 (00:04) kbrazil ttyS0 Tue Feb 18 02:50 - down (1+13:58) reboot system boot 4.15.0-76-generi Tue Feb 18 02:50 - 16:48 (1+13:58) kbrazil ttyS0 Fri Feb 14 02:06 - 01:48 (3+23:41) reboot system boot 4.15.0-76-generi Fri Feb 14 02:06 - 01:48 (3+23:41) kbrazil ttyS0 Thu Feb 6 01:05 - down (1+14:43) reboot system boot 4.15.0-76-generi Thu Feb 6 01:04 - 15:48 (1+14:43) wtmp begins Wed Feb 5 22:22:55 2020 jc-1.17.3/tests/fixtures/ubuntu-18.04/lastb.json000066400000000000000000000001751415226333200212100ustar00rootroot00000000000000[{"user": "UNKNOWN", "tty": "ttyS0", "hostname": null, "login": "Fri Feb 14 02:06", "logout": "02:06", "duration": "00:00"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/lastb.out000066400000000000000000000001571415226333200210460ustar00rootroot00000000000000UNKNOWN ttyS0 Fri Feb 14 02:06 - 02:06 (00:00) btmp begins Fri Feb 14 02:06:41 2020 jc-1.17.3/tests/fixtures/ubuntu-18.04/ls-R-newlines.json000066400000000000000000000022011415226333200225320ustar00rootroot00000000000000[{"filename": "lstest", "parent": "."}, {"filename": "systemd-private-65c1089f1d4c4cf5bc50ca55478abfde-systemd-resolved.service-La9AqY", "parent": "."}, {"filename": "systemd-private-65c1089f1d4c4cf5bc50ca55478abfde-systemd-timesyncd.service-L7q4cJ", "parent": "."}, {"filename": "vmware-root_670-2722828838", "parent": "."}, {"filename": "a regular filename", "parent": "./lstest"}, {"filename": "this file has", "parent": "./lstest"}, {"filename": "a combination", "parent": "./lstest"}, {"filename": "of everything", "parent": "./lstest"}, {"filename": "this file has", "parent": "./lstest"}, {"filename": "a newline inside", "parent": "./lstest"}, {"filename": "this file has", "parent": "./lstest"}, {"filename": "four contiguous newlines inside", "parent": "./lstest"}, {"filename": "this file", "parent": "./lstest"}, {"filename": "has", "parent": "./lstest"}, {"filename": "six", "parent": "./lstest"}, {"filename": "newlines", "parent": "./lstest"}, {"filename": "within", "parent": "./lstest"}, {"filename": "this file starts with four newlines", "parent": "./lstest"}, {"filename": "this file starts with one newline", "parent": "./lstest"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/ls-R-newlines.out000066400000000000000000000007271415226333200224030ustar00rootroot00000000000000.: lstest systemd-private-65c1089f1d4c4cf5bc50ca55478abfde-systemd-resolved.service-La9AqY systemd-private-65c1089f1d4c4cf5bc50ca55478abfde-systemd-timesyncd.service-L7q4cJ vmware-root_670-2722828838 ./lstest: a regular filename this file has a combination of everything this file has a newline inside this file has four contiguous newlines inside this file has six newlines within this file starts with four newlines this file starts with one newline jc-1.17.3/tests/fixtures/ubuntu-18.04/ls-R.json000066400000000000000000011073051415226333200207240ustar00rootroot00000000000000[{"filename": "bin", "parent": "/usr"}, {"filename": "games", "parent": "/usr"}, {"filename": "include", "parent": "/usr"}, {"filename": "lib", "parent": "/usr"}, {"filename": "local", "parent": "/usr"}, {"filename": "sbin", "parent": "/usr"}, {"filename": "share", "parent": "/usr"}, {"filename": "src", "parent": "/usr"}, {"filename": "[", "parent": "/usr/bin"}, {"filename": "aa-enabled", "parent": "/usr/bin"}, {"filename": "aa-exec", "parent": "/usr/bin"}, {"filename": "acpi_listen", "parent": "/usr/bin"}, {"filename": "add-apt-repository", "parent": "/usr/bin"}, {"filename": "addpart", "parent": "/usr/bin"}, {"filename": "addr2line", "parent": "/usr/bin"}, {"filename": "apport-bug", "parent": "/usr/bin"}, {"filename": "apport-cli", "parent": "/usr/bin"}, {"filename": "apport-collect", "parent": "/usr/bin"}, {"filename": "apport-unpack", "parent": "/usr/bin"}, {"filename": "apropos", "parent": "/usr/bin"}, {"filename": "apt", "parent": "/usr/bin"}, {"filename": "apt-add-repository", "parent": "/usr/bin"}, {"filename": "apt-cache", "parent": "/usr/bin"}, {"filename": "apt-cdrom", "parent": "/usr/bin"}, {"filename": "apt-config", "parent": "/usr/bin"}, {"filename": "apt-extracttemplates", "parent": "/usr/bin"}, {"filename": "apt-ftparchive", "parent": "/usr/bin"}, {"filename": "apt-get", "parent": "/usr/bin"}, {"filename": "apt-key", "parent": "/usr/bin"}, {"filename": "apt-mark", "parent": "/usr/bin"}, {"filename": "apt-sortpkgs", "parent": "/usr/bin"}, {"filename": "ar", "parent": "/usr/bin"}, {"filename": "arch", "parent": "/usr/bin"}, {"filename": "as", "parent": "/usr/bin"}, {"filename": "at", "parent": "/usr/bin"}, {"filename": "atq", "parent": "/usr/bin"}, {"filename": "atrm", "parent": "/usr/bin"}, {"filename": "automat-visualize3", "parent": "/usr/bin"}, {"filename": "awk", "parent": "/usr/bin"}, {"filename": "b2sum", "parent": "/usr/bin"}, {"filename": "base32", "parent": "/usr/bin"}, {"filename": "base64", "parent": "/usr/bin"}, {"filename": "basename", "parent": "/usr/bin"}, {"filename": "bashbug", "parent": "/usr/bin"}, {"filename": "batch", "parent": "/usr/bin"}, {"filename": "bc", "parent": "/usr/bin"}, {"filename": "bootctl", "parent": "/usr/bin"}, {"filename": "bsd-from", "parent": "/usr/bin"}, {"filename": "bsd-write", "parent": "/usr/bin"}, {"filename": "busctl", "parent": "/usr/bin"}, {"filename": "byobu", "parent": "/usr/bin"}, {"filename": "byobu-config", "parent": "/usr/bin"}, {"filename": "byobu-ctrl-a", "parent": "/usr/bin"}, {"filename": "byobu-disable", "parent": "/usr/bin"}, {"filename": "byobu-disable-prompt", "parent": "/usr/bin"}, {"filename": "byobu-enable", "parent": "/usr/bin"}, {"filename": "byobu-enable-prompt", "parent": "/usr/bin"}, {"filename": "byobu-export", "parent": "/usr/bin"}, {"filename": "byobu-janitor", "parent": "/usr/bin"}, {"filename": "byobu-keybindings", "parent": "/usr/bin"}, {"filename": "byobu-launch", "parent": "/usr/bin"}, {"filename": "byobu-launcher", "parent": "/usr/bin"}, {"filename": "byobu-launcher-install", "parent": "/usr/bin"}, {"filename": "byobu-launcher-uninstall", "parent": "/usr/bin"}, {"filename": "byobu-layout", "parent": "/usr/bin"}, {"filename": "byobu-prompt", "parent": "/usr/bin"}, {"filename": "byobu-quiet", "parent": "/usr/bin"}, {"filename": "byobu-reconnect-sockets", "parent": "/usr/bin"}, {"filename": "byobu-screen", "parent": "/usr/bin"}, {"filename": "byobu-select-backend", "parent": "/usr/bin"}, {"filename": "byobu-select-profile", "parent": "/usr/bin"}, {"filename": "byobu-select-session", "parent": "/usr/bin"}, {"filename": "byobu-shell", "parent": "/usr/bin"}, {"filename": "byobu-silent", "parent": "/usr/bin"}, {"filename": "byobu-status", "parent": "/usr/bin"}, {"filename": "byobu-status-detail", "parent": "/usr/bin"}, {"filename": "byobu-tmux", "parent": "/usr/bin"}, {"filename": "byobu-ugraph", "parent": "/usr/bin"}, {"filename": "byobu-ulevel", "parent": "/usr/bin"}, {"filename": "c++", "parent": "/usr/bin"}, {"filename": "c89", "parent": "/usr/bin"}, {"filename": "c89-gcc", "parent": "/usr/bin"}, {"filename": "c99", "parent": "/usr/bin"}, {"filename": "c99-gcc", "parent": "/usr/bin"}, {"filename": "cal", "parent": "/usr/bin"}, {"filename": "calendar", "parent": "/usr/bin"}, {"filename": "captoinfo", "parent": "/usr/bin"}, {"filename": "catchsegv", "parent": "/usr/bin"}, {"filename": "catman", "parent": "/usr/bin"}, {"filename": "cautious-launcher", "parent": "/usr/bin"}, {"filename": "cc", "parent": "/usr/bin"}, {"filename": "c++filt", "parent": "/usr/bin"}, {"filename": "cftp3", "parent": "/usr/bin"}, {"filename": "cgroupfs-mount", "parent": "/usr/bin"}, {"filename": "cgroupfs-umount", "parent": "/usr/bin"}, {"filename": "chacl", "parent": "/usr/bin"}, {"filename": "chage", "parent": "/usr/bin"}, {"filename": "chardet3", "parent": "/usr/bin"}, {"filename": "chardetect3", "parent": "/usr/bin"}, {"filename": "chattr", "parent": "/usr/bin"}, {"filename": "chcon", "parent": "/usr/bin"}, {"filename": "check-language-support", "parent": "/usr/bin"}, {"filename": "chfn", "parent": "/usr/bin"}, {"filename": "chrt", "parent": "/usr/bin"}, {"filename": "chsh", "parent": "/usr/bin"}, {"filename": "cifsiostat", "parent": "/usr/bin"}, {"filename": "ckbcomp", "parent": "/usr/bin"}, {"filename": "ckeygen3", "parent": "/usr/bin"}, {"filename": "cksum", "parent": "/usr/bin"}, {"filename": "clear", "parent": "/usr/bin"}, {"filename": "clear_console", "parent": "/usr/bin"}, {"filename": "cloud-id", "parent": "/usr/bin"}, {"filename": "cloud-init", "parent": "/usr/bin"}, {"filename": "cloud-init-per", "parent": "/usr/bin"}, {"filename": "cmp", "parent": "/usr/bin"}, {"filename": "codepage", "parent": "/usr/bin"}, {"filename": "col", "parent": "/usr/bin"}, {"filename": "col1", "parent": "/usr/bin"}, {"filename": "col2", "parent": "/usr/bin"}, {"filename": "col3", "parent": "/usr/bin"}, {"filename": "col4", "parent": "/usr/bin"}, {"filename": "col5", "parent": "/usr/bin"}, {"filename": "col6", "parent": "/usr/bin"}, {"filename": "col7", "parent": "/usr/bin"}, {"filename": "col8", "parent": "/usr/bin"}, {"filename": "col9", "parent": "/usr/bin"}, {"filename": "colcrt", "parent": "/usr/bin"}, {"filename": "colrm", "parent": "/usr/bin"}, {"filename": "column", "parent": "/usr/bin"}, {"filename": "comm", "parent": "/usr/bin"}, {"filename": "compose", "parent": "/usr/bin"}, {"filename": "conch3", "parent": "/usr/bin"}, {"filename": "containerd", "parent": "/usr/bin"}, {"filename": "containerd-shim", "parent": "/usr/bin"}, {"filename": "containerd-shim-runc-v1", "parent": "/usr/bin"}, {"filename": "containerd-stress", "parent": "/usr/bin"}, {"filename": "corelist", "parent": "/usr/bin"}, {"filename": "cpan", "parent": "/usr/bin"}, {"filename": "cpan5.26-x86_64-linux-gnu", "parent": "/usr/bin"}, {"filename": "cpp", "parent": "/usr/bin"}, {"filename": "cpp-7", "parent": "/usr/bin"}, {"filename": "c_rehash", "parent": "/usr/bin"}, {"filename": "crontab", "parent": "/usr/bin"}, {"filename": "csplit", "parent": "/usr/bin"}, {"filename": "ctail", "parent": "/usr/bin"}, {"filename": "ctr", "parent": "/usr/bin"}, {"filename": "ctstat", "parent": "/usr/bin"}, {"filename": "curl", "parent": "/usr/bin"}, {"filename": "cut", "parent": "/usr/bin"}, {"filename": "dbus-cleanup-sockets", "parent": "/usr/bin"}, {"filename": "dbus-daemon", "parent": "/usr/bin"}, {"filename": "dbus-monitor", "parent": "/usr/bin"}, {"filename": "dbus-run-session", "parent": "/usr/bin"}, {"filename": "dbus-send", "parent": "/usr/bin"}, {"filename": "dbus-update-activation-environment", "parent": "/usr/bin"}, {"filename": "dbus-uuidgen", "parent": "/usr/bin"}, {"filename": "deallocvt", "parent": "/usr/bin"}, {"filename": "debconf", "parent": "/usr/bin"}, {"filename": "debconf-apt-progress", "parent": "/usr/bin"}, {"filename": "debconf-communicate", "parent": "/usr/bin"}, {"filename": "debconf-copydb", "parent": "/usr/bin"}, {"filename": "debconf-escape", "parent": "/usr/bin"}, {"filename": "debconf-set-selections", "parent": "/usr/bin"}, {"filename": "debconf-show", "parent": "/usr/bin"}, {"filename": "deb-systemd-helper", "parent": "/usr/bin"}, {"filename": "deb-systemd-invoke", "parent": "/usr/bin"}, {"filename": "delpart", "parent": "/usr/bin"}, {"filename": "delv", "parent": "/usr/bin"}, {"filename": "dh_bash-completion", "parent": "/usr/bin"}, {"filename": "dh_pypy", "parent": "/usr/bin"}, {"filename": "dh_python3", "parent": "/usr/bin"}, {"filename": "diff", "parent": "/usr/bin"}, {"filename": "diff3", "parent": "/usr/bin"}, {"filename": "dig", "parent": "/usr/bin"}, {"filename": "dircolors", "parent": "/usr/bin"}, {"filename": "dirmngr", "parent": "/usr/bin"}, {"filename": "dirmngr-client", "parent": "/usr/bin"}, {"filename": "dirname", "parent": "/usr/bin"}, {"filename": "docker", "parent": "/usr/bin"}, {"filename": "dockerd", "parent": "/usr/bin"}, {"filename": "docker-init", "parent": "/usr/bin"}, {"filename": "docker-proxy", "parent": "/usr/bin"}, {"filename": "do-release-upgrade", "parent": "/usr/bin"}, {"filename": "dpkg", "parent": "/usr/bin"}, {"filename": "dpkg-architecture", "parent": "/usr/bin"}, {"filename": "dpkg-buildflags", "parent": "/usr/bin"}, {"filename": "dpkg-buildpackage", "parent": "/usr/bin"}, {"filename": "dpkg-checkbuilddeps", "parent": "/usr/bin"}, {"filename": "dpkg-deb", "parent": "/usr/bin"}, {"filename": "dpkg-distaddfile", "parent": "/usr/bin"}, {"filename": "dpkg-divert", "parent": "/usr/bin"}, {"filename": "dpkg-genbuildinfo", "parent": "/usr/bin"}, {"filename": "dpkg-genchanges", "parent": "/usr/bin"}, {"filename": "dpkg-gencontrol", "parent": "/usr/bin"}, {"filename": "dpkg-gensymbols", "parent": "/usr/bin"}, {"filename": "dpkg-maintscript-helper", "parent": "/usr/bin"}, {"filename": "dpkg-mergechangelogs", "parent": "/usr/bin"}, {"filename": "dpkg-name", "parent": "/usr/bin"}, {"filename": "dpkg-parsechangelog", "parent": "/usr/bin"}, {"filename": "dpkg-query", "parent": "/usr/bin"}, {"filename": "dpkg-scanpackages", "parent": "/usr/bin"}, {"filename": "dpkg-scansources", "parent": "/usr/bin"}, {"filename": "dpkg-shlibdeps", "parent": "/usr/bin"}, {"filename": "dpkg-source", "parent": "/usr/bin"}, {"filename": "dpkg-split", "parent": "/usr/bin"}, {"filename": "dpkg-statoverride", "parent": "/usr/bin"}, {"filename": "dpkg-trigger", "parent": "/usr/bin"}, {"filename": "dpkg-vendor", "parent": "/usr/bin"}, {"filename": "du", "parent": "/usr/bin"}, {"filename": "dumpkeys", "parent": "/usr/bin"}, {"filename": "dwp", "parent": "/usr/bin"}, {"filename": "eatmydata", "parent": "/usr/bin"}, {"filename": "ec2metadata", "parent": "/usr/bin"}, {"filename": "edit", "parent": "/usr/bin"}, {"filename": "editor", "parent": "/usr/bin"}, {"filename": "eject", "parent": "/usr/bin"}, {"filename": "elfedit", "parent": "/usr/bin"}, {"filename": "enc2xs", "parent": "/usr/bin"}, {"filename": "encguess", "parent": "/usr/bin"}, {"filename": "env", "parent": "/usr/bin"}, {"filename": "envsubst", "parent": "/usr/bin"}, {"filename": "eqn", "parent": "/usr/bin"}, {"filename": "ex", "parent": "/usr/bin"}, {"filename": "expand", "parent": "/usr/bin"}, {"filename": "expiry", "parent": "/usr/bin"}, {"filename": "expr", "parent": "/usr/bin"}, {"filename": "factor", "parent": "/usr/bin"}, {"filename": "faillog", "parent": "/usr/bin"}, {"filename": "faked-sysv", "parent": "/usr/bin"}, {"filename": "faked-tcp", "parent": "/usr/bin"}, {"filename": "fakeroot", "parent": "/usr/bin"}, {"filename": "fakeroot-sysv", "parent": "/usr/bin"}, {"filename": "fakeroot-tcp", "parent": "/usr/bin"}, {"filename": "fallocate", "parent": "/usr/bin"}, {"filename": "file", "parent": "/usr/bin"}, {"filename": "find", "parent": "/usr/bin"}, {"filename": "flock", "parent": "/usr/bin"}, {"filename": "fmt", "parent": "/usr/bin"}, {"filename": "fold", "parent": "/usr/bin"}, {"filename": "free", "parent": "/usr/bin"}, {"filename": "from", "parent": "/usr/bin"}, {"filename": "ftp", "parent": "/usr/bin"}, {"filename": "g++", "parent": "/usr/bin"}, {"filename": "g++-7", "parent": "/usr/bin"}, {"filename": "gawk", "parent": "/usr/bin"}, {"filename": "gcc", "parent": "/usr/bin"}, {"filename": "gcc-7", "parent": "/usr/bin"}, {"filename": "gcc-ar", "parent": "/usr/bin"}, {"filename": "gcc-ar-7", "parent": "/usr/bin"}, {"filename": "gcc-nm", "parent": "/usr/bin"}, {"filename": "gcc-nm-7", "parent": "/usr/bin"}, {"filename": "gcc-ranlib", "parent": "/usr/bin"}, {"filename": "gcc-ranlib-7", "parent": "/usr/bin"}, {"filename": "gcov", "parent": "/usr/bin"}, {"filename": "gcov-7", "parent": "/usr/bin"}, {"filename": "gcov-dump", "parent": "/usr/bin"}, {"filename": "gcov-dump-7", "parent": "/usr/bin"}, {"filename": "gcov-tool", "parent": "/usr/bin"}, {"filename": "gcov-tool-7", "parent": "/usr/bin"}, {"filename": "gencat", "parent": "/usr/bin"}, {"filename": "geqn", "parent": "/usr/bin"}, {"filename": "getconf", "parent": "/usr/bin"}, {"filename": "getent", "parent": "/usr/bin"}, {"filename": "getfacl", "parent": "/usr/bin"}, {"filename": "getkeycodes", "parent": "/usr/bin"}, {"filename": "getopt", "parent": "/usr/bin"}, {"filename": "gettext", "parent": "/usr/bin"}, {"filename": "gettext.sh", "parent": "/usr/bin"}, {"filename": "ginstall-info", "parent": "/usr/bin"}, {"filename": "git", "parent": "/usr/bin"}, {"filename": "git-receive-pack", "parent": "/usr/bin"}, {"filename": "git-shell", "parent": "/usr/bin"}, {"filename": "git-upload-archive", "parent": "/usr/bin"}, {"filename": "git-upload-pack", "parent": "/usr/bin"}, {"filename": "gold", "parent": "/usr/bin"}, {"filename": "gpasswd", "parent": "/usr/bin"}, {"filename": "gpg", "parent": "/usr/bin"}, {"filename": "gpg-agent", "parent": "/usr/bin"}, {"filename": "gpgconf", "parent": "/usr/bin"}, {"filename": "gpg-connect-agent", "parent": "/usr/bin"}, {"filename": "gpgparsemail", "parent": "/usr/bin"}, {"filename": "gpgsm", "parent": "/usr/bin"}, {"filename": "gpgsplit", "parent": "/usr/bin"}, {"filename": "gpgv", "parent": "/usr/bin"}, {"filename": "gpg-wks-server", "parent": "/usr/bin"}, {"filename": "gpg-zip", "parent": "/usr/bin"}, {"filename": "gpic", "parent": "/usr/bin"}, {"filename": "gprof", "parent": "/usr/bin"}, {"filename": "groff", "parent": "/usr/bin"}, {"filename": "grog", "parent": "/usr/bin"}, {"filename": "grops", "parent": "/usr/bin"}, {"filename": "grotty", "parent": "/usr/bin"}, {"filename": "groups", "parent": "/usr/bin"}, {"filename": "growpart", "parent": "/usr/bin"}, {"filename": "grub-editenv", "parent": "/usr/bin"}, {"filename": "grub-file", "parent": "/usr/bin"}, {"filename": "grub-fstest", "parent": "/usr/bin"}, {"filename": "grub-glue-efi", "parent": "/usr/bin"}, {"filename": "grub-kbdcomp", "parent": "/usr/bin"}, {"filename": "grub-menulst2cfg", "parent": "/usr/bin"}, {"filename": "grub-mkfont", "parent": "/usr/bin"}, {"filename": "grub-mkimage", "parent": "/usr/bin"}, {"filename": "grub-mklayout", "parent": "/usr/bin"}, {"filename": "grub-mknetdir", "parent": "/usr/bin"}, {"filename": "grub-mkpasswd-pbkdf2", "parent": "/usr/bin"}, {"filename": "grub-mkrelpath", "parent": "/usr/bin"}, {"filename": "grub-mkrescue", "parent": "/usr/bin"}, {"filename": "grub-mkstandalone", "parent": "/usr/bin"}, {"filename": "grub-mount", "parent": "/usr/bin"}, {"filename": "grub-ntldr-img", "parent": "/usr/bin"}, {"filename": "grub-render-label", "parent": "/usr/bin"}, {"filename": "grub-script-check", "parent": "/usr/bin"}, {"filename": "grub-syslinux2cfg", "parent": "/usr/bin"}, {"filename": "gtbl", "parent": "/usr/bin"}, {"filename": "h2ph", "parent": "/usr/bin"}, {"filename": "h2xs", "parent": "/usr/bin"}, {"filename": "hd", "parent": "/usr/bin"}, {"filename": "head", "parent": "/usr/bin"}, {"filename": "helpztags", "parent": "/usr/bin"}, {"filename": "hexdump", "parent": "/usr/bin"}, {"filename": "host", "parent": "/usr/bin"}, {"filename": "hostid", "parent": "/usr/bin"}, {"filename": "hostnamectl", "parent": "/usr/bin"}, {"filename": "htop", "parent": "/usr/bin"}, {"filename": "hwe-support-status", "parent": "/usr/bin"}, {"filename": "i386", "parent": "/usr/bin"}, {"filename": "iconv", "parent": "/usr/bin"}, {"filename": "id", "parent": "/usr/bin"}, {"filename": "igawk", "parent": "/usr/bin"}, {"filename": "info", "parent": "/usr/bin"}, {"filename": "infobrowser", "parent": "/usr/bin"}, {"filename": "infocmp", "parent": "/usr/bin"}, {"filename": "infotocap", "parent": "/usr/bin"}, {"filename": "install", "parent": "/usr/bin"}, {"filename": "install-info", "parent": "/usr/bin"}, {"filename": "instmodsh", "parent": "/usr/bin"}, {"filename": "ionice", "parent": "/usr/bin"}, {"filename": "iostat", "parent": "/usr/bin"}, {"filename": "ipcmk", "parent": "/usr/bin"}, {"filename": "ipcrm", "parent": "/usr/bin"}, {"filename": "ipcs", "parent": "/usr/bin"}, {"filename": "iptables-xml", "parent": "/usr/bin"}, {"filename": "ischroot", "parent": "/usr/bin"}, {"filename": "iscsiadm", "parent": "/usr/bin"}, {"filename": "join", "parent": "/usr/bin"}, {"filename": "jq", "parent": "/usr/bin"}, {"filename": "jsondiff", "parent": "/usr/bin"}, {"filename": "jsonpatch", "parent": "/usr/bin"}, {"filename": "jsonpointer", "parent": "/usr/bin"}, {"filename": "json_pp", "parent": "/usr/bin"}, {"filename": "jsonschema", "parent": "/usr/bin"}, {"filename": "kbdinfo", "parent": "/usr/bin"}, {"filename": "kbxutil", "parent": "/usr/bin"}, {"filename": "keep-one-running", "parent": "/usr/bin"}, {"filename": "kernel-install", "parent": "/usr/bin"}, {"filename": "keyring", "parent": "/usr/bin"}, {"filename": "killall", "parent": "/usr/bin"}, {"filename": "landscape-sysinfo", "parent": "/usr/bin"}, {"filename": "last", "parent": "/usr/bin"}, {"filename": "lastb", "parent": "/usr/bin"}, {"filename": "lastlog", "parent": "/usr/bin"}, {"filename": "lcf", "parent": "/usr/bin"}, {"filename": "ld", "parent": "/usr/bin"}, {"filename": "ld.bfd", "parent": "/usr/bin"}, {"filename": "ldd", "parent": "/usr/bin"}, {"filename": "ld.gold", "parent": "/usr/bin"}, {"filename": "less", "parent": "/usr/bin"}, {"filename": "lessecho", "parent": "/usr/bin"}, {"filename": "lessfile", "parent": "/usr/bin"}, {"filename": "lesskey", "parent": "/usr/bin"}, {"filename": "lesspipe", "parent": "/usr/bin"}, {"filename": "lexgrog", "parent": "/usr/bin"}, {"filename": "libnetcfg", "parent": "/usr/bin"}, {"filename": "link", "parent": "/usr/bin"}, {"filename": "linux32", "parent": "/usr/bin"}, {"filename": "linux64", "parent": "/usr/bin"}, {"filename": "linux-boot-prober", "parent": "/usr/bin"}, {"filename": "linux-check-removal", "parent": "/usr/bin"}, {"filename": "linux-update-symlinks", "parent": "/usr/bin"}, {"filename": "linux-version", "parent": "/usr/bin"}, {"filename": "lnstat", "parent": "/usr/bin"}, {"filename": "loadkeys", "parent": "/usr/bin"}, {"filename": "loadunimap", "parent": "/usr/bin"}, {"filename": "locale", "parent": "/usr/bin"}, {"filename": "locale-check", "parent": "/usr/bin"}, {"filename": "localectl", "parent": "/usr/bin"}, {"filename": "localedef", "parent": "/usr/bin"}, {"filename": "locate", "parent": "/usr/bin"}, {"filename": "logger", "parent": "/usr/bin"}, {"filename": "logname", "parent": "/usr/bin"}, {"filename": "look", "parent": "/usr/bin"}, {"filename": "lorder", "parent": "/usr/bin"}, {"filename": "lsattr", "parent": "/usr/bin"}, {"filename": "lsb_release", "parent": "/usr/bin"}, {"filename": "lscpu", "parent": "/usr/bin"}, {"filename": "lshw", "parent": "/usr/bin"}, {"filename": "lsinitramfs", "parent": "/usr/bin"}, {"filename": "lsipc", "parent": "/usr/bin"}, {"filename": "lslocks", "parent": "/usr/bin"}, {"filename": "lslogins", "parent": "/usr/bin"}, {"filename": "lsmem", "parent": "/usr/bin"}, {"filename": "lsns", "parent": "/usr/bin"}, {"filename": "lsof", "parent": "/usr/bin"}, {"filename": "lspci", "parent": "/usr/bin"}, {"filename": "lspgpot", "parent": "/usr/bin"}, {"filename": "lsusb", "parent": "/usr/bin"}, {"filename": "ltrace", "parent": "/usr/bin"}, {"filename": "lxc", "parent": "/usr/bin"}, {"filename": "lxcfs", "parent": "/usr/bin"}, {"filename": "lxd", "parent": "/usr/bin"}, {"filename": "lzcat", "parent": "/usr/bin"}, {"filename": "lzcmp", "parent": "/usr/bin"}, {"filename": "lzdiff", "parent": "/usr/bin"}, {"filename": "lzegrep", "parent": "/usr/bin"}, {"filename": "lzfgrep", "parent": "/usr/bin"}, {"filename": "lzgrep", "parent": "/usr/bin"}, {"filename": "lzless", "parent": "/usr/bin"}, {"filename": "lzma", "parent": "/usr/bin"}, {"filename": "lzmainfo", "parent": "/usr/bin"}, {"filename": "lzmore", "parent": "/usr/bin"}, {"filename": "make", "parent": "/usr/bin"}, {"filename": "make-first-existing-target", "parent": "/usr/bin"}, {"filename": "man", "parent": "/usr/bin"}, {"filename": "mandb", "parent": "/usr/bin"}, {"filename": "manifest", "parent": "/usr/bin"}, {"filename": "manpath", "parent": "/usr/bin"}, {"filename": "mapscrn", "parent": "/usr/bin"}, {"filename": "mawk", "parent": "/usr/bin"}, {"filename": "mcookie", "parent": "/usr/bin"}, {"filename": "md5sum", "parent": "/usr/bin"}, {"filename": "md5sum.textutils", "parent": "/usr/bin"}, {"filename": "mdig", "parent": "/usr/bin"}, {"filename": "mesg", "parent": "/usr/bin"}, {"filename": "migrate-pubring-from-classic-gpg", "parent": "/usr/bin"}, {"filename": "miniterm", "parent": "/usr/bin"}, {"filename": "mkfifo", "parent": "/usr/bin"}, {"filename": "mk_modmap", "parent": "/usr/bin"}, {"filename": "mksquashfs", "parent": "/usr/bin"}, {"filename": "mlocate", "parent": "/usr/bin"}, {"filename": "mpstat", "parent": "/usr/bin"}, {"filename": "mtr", "parent": "/usr/bin"}, {"filename": "mtrace", "parent": "/usr/bin"}, {"filename": "mtr-packet", "parent": "/usr/bin"}, {"filename": "namei", "parent": "/usr/bin"}, {"filename": "nawk", "parent": "/usr/bin"}, {"filename": "ncal", "parent": "/usr/bin"}, {"filename": "ncat", "parent": "/usr/bin"}, {"filename": "neqn", "parent": "/usr/bin"}, {"filename": "netkit-ftp", "parent": "/usr/bin"}, {"filename": "networkd-dispatcher", "parent": "/usr/bin"}, {"filename": "newgidmap", "parent": "/usr/bin"}, {"filename": "newgrp", "parent": "/usr/bin"}, {"filename": "newuidmap", "parent": "/usr/bin"}, {"filename": "NF", "parent": "/usr/bin"}, {"filename": "ngettext", "parent": "/usr/bin"}, {"filename": "nice", "parent": "/usr/bin"}, {"filename": "nl", "parent": "/usr/bin"}, {"filename": "nm", "parent": "/usr/bin"}, {"filename": "nmap", "parent": "/usr/bin"}, {"filename": "nohup", "parent": "/usr/bin"}, {"filename": "nping", "parent": "/usr/bin"}, {"filename": "nproc", "parent": "/usr/bin"}, {"filename": "nroff", "parent": "/usr/bin"}, {"filename": "nsenter", "parent": "/usr/bin"}, {"filename": "nslookup", "parent": "/usr/bin"}, {"filename": "nstat", "parent": "/usr/bin"}, {"filename": "nsupdate", "parent": "/usr/bin"}, {"filename": "ntfsdecrypt", "parent": "/usr/bin"}, {"filename": "numfmt", "parent": "/usr/bin"}, {"filename": "objcopy", "parent": "/usr/bin"}, {"filename": "objdump", "parent": "/usr/bin"}, {"filename": "od", "parent": "/usr/bin"}, {"filename": "on_ac_power", "parent": "/usr/bin"}, {"filename": "openssl", "parent": "/usr/bin"}, {"filename": "os-prober", "parent": "/usr/bin"}, {"filename": "pager", "parent": "/usr/bin"}, {"filename": "partx", "parent": "/usr/bin"}, {"filename": "passwd", "parent": "/usr/bin"}, {"filename": "paste", "parent": "/usr/bin"}, {"filename": "pastebinit", "parent": "/usr/bin"}, {"filename": "patch", "parent": "/usr/bin"}, {"filename": "pathchk", "parent": "/usr/bin"}, {"filename": "pbget", "parent": "/usr/bin"}, {"filename": "pbput", "parent": "/usr/bin"}, {"filename": "pbputs", "parent": "/usr/bin"}, {"filename": "pcimodules", "parent": "/usr/bin"}, {"filename": "pdb3", "parent": "/usr/bin"}, {"filename": "pdb3.6", "parent": "/usr/bin"}, {"filename": "peekfd", "parent": "/usr/bin"}, {"filename": "perl", "parent": "/usr/bin"}, {"filename": "perl5.26.1", "parent": "/usr/bin"}, {"filename": "perl5.26-x86_64-linux-gnu", "parent": "/usr/bin"}, {"filename": "perlbug", "parent": "/usr/bin"}, {"filename": "perldoc", "parent": "/usr/bin"}, {"filename": "perlivp", "parent": "/usr/bin"}, {"filename": "perlthanks", "parent": "/usr/bin"}, {"filename": "pftp", "parent": "/usr/bin"}, {"filename": "pgrep", "parent": "/usr/bin"}, {"filename": "pic", "parent": "/usr/bin"}, {"filename": "pico", "parent": "/usr/bin"}, {"filename": "piconv", "parent": "/usr/bin"}, {"filename": "pidstat", "parent": "/usr/bin"}, {"filename": "pigz", "parent": "/usr/bin"}, {"filename": "pinentry", "parent": "/usr/bin"}, {"filename": "pinentry-curses", "parent": "/usr/bin"}, {"filename": "pinky", "parent": "/usr/bin"}, {"filename": "pip3", "parent": "/usr/bin"}, {"filename": "pkaction", "parent": "/usr/bin"}, {"filename": "pkcheck", "parent": "/usr/bin"}, {"filename": "pkexec", "parent": "/usr/bin"}, {"filename": "pkill", "parent": "/usr/bin"}, {"filename": "pkttyagent", "parent": "/usr/bin"}, {"filename": "pl2pm", "parent": "/usr/bin"}, {"filename": "pldd", "parent": "/usr/bin"}, {"filename": "pmap", "parent": "/usr/bin"}, {"filename": "pod2html", "parent": "/usr/bin"}, {"filename": "pod2man", "parent": "/usr/bin"}, {"filename": "pod2text", "parent": "/usr/bin"}, {"filename": "pod2usage", "parent": "/usr/bin"}, {"filename": "podchecker", "parent": "/usr/bin"}, {"filename": "podselect", "parent": "/usr/bin"}, {"filename": "pollinate", "parent": "/usr/bin"}, {"filename": "pr", "parent": "/usr/bin"}, {"filename": "preconv", "parent": "/usr/bin"}, {"filename": "print", "parent": "/usr/bin"}, {"filename": "printenv", "parent": "/usr/bin"}, {"filename": "printerbanner", "parent": "/usr/bin"}, {"filename": "printf", "parent": "/usr/bin"}, {"filename": "prlimit", "parent": "/usr/bin"}, {"filename": "prove", "parent": "/usr/bin"}, {"filename": "prtstat", "parent": "/usr/bin"}, {"filename": "psfaddtable", "parent": "/usr/bin"}, {"filename": "psfgettable", "parent": "/usr/bin"}, {"filename": "psfstriptable", "parent": "/usr/bin"}, {"filename": "psfxtable", "parent": "/usr/bin"}, {"filename": "pslog", "parent": "/usr/bin"}, {"filename": "pstree", "parent": "/usr/bin"}, {"filename": "pstree.x11", "parent": "/usr/bin"}, {"filename": "ptar", "parent": "/usr/bin"}, {"filename": "ptardiff", "parent": "/usr/bin"}, {"filename": "ptargrep", "parent": "/usr/bin"}, {"filename": "ptx", "parent": "/usr/bin"}, {"filename": "purge-old-kernels", "parent": "/usr/bin"}, {"filename": "pwdx", "parent": "/usr/bin"}, {"filename": "py3clean", "parent": "/usr/bin"}, {"filename": "py3compile", "parent": "/usr/bin"}, {"filename": "py3versions", "parent": "/usr/bin"}, {"filename": "pybuild", "parent": "/usr/bin"}, {"filename": "pydoc3", "parent": "/usr/bin"}, {"filename": "pydoc3.6", "parent": "/usr/bin"}, {"filename": "pygettext3", "parent": "/usr/bin"}, {"filename": "pygettext3.6", "parent": "/usr/bin"}, {"filename": "pyhtmlizer3", "parent": "/usr/bin"}, {"filename": "pyjwt3", "parent": "/usr/bin"}, {"filename": "python3", "parent": "/usr/bin"}, {"filename": "python3.6", "parent": "/usr/bin"}, {"filename": "python3.6-config", "parent": "/usr/bin"}, {"filename": "python3.6m", "parent": "/usr/bin"}, {"filename": "python3.6m-config", "parent": "/usr/bin"}, {"filename": "python3-config", "parent": "/usr/bin"}, {"filename": "python3-jsondiff", "parent": "/usr/bin"}, {"filename": "python3-jsonpatch", "parent": "/usr/bin"}, {"filename": "python3-jsonpointer", "parent": "/usr/bin"}, {"filename": "python3-jsonschema", "parent": "/usr/bin"}, {"filename": "python3m", "parent": "/usr/bin"}, {"filename": "python3m-config", "parent": "/usr/bin"}, {"filename": "ranlib", "parent": "/usr/bin"}, {"filename": "rcp", "parent": "/usr/bin"}, {"filename": "rdma", "parent": "/usr/bin"}, {"filename": "readelf", "parent": "/usr/bin"}, {"filename": "realpath", "parent": "/usr/bin"}, {"filename": "rename.ul", "parent": "/usr/bin"}, {"filename": "renice", "parent": "/usr/bin"}, {"filename": "reset", "parent": "/usr/bin"}, {"filename": "resizecons", "parent": "/usr/bin"}, {"filename": "resizepart", "parent": "/usr/bin"}, {"filename": "rev", "parent": "/usr/bin"}, {"filename": "rgrep", "parent": "/usr/bin"}, {"filename": "rlogin", "parent": "/usr/bin"}, {"filename": "routef", "parent": "/usr/bin"}, {"filename": "routel", "parent": "/usr/bin"}, {"filename": "rpcgen", "parent": "/usr/bin"}, {"filename": "rsh", "parent": "/usr/bin"}, {"filename": "rsync", "parent": "/usr/bin"}, {"filename": "rtstat", "parent": "/usr/bin"}, {"filename": "runcon", "parent": "/usr/bin"}, {"filename": "run-mailcap", "parent": "/usr/bin"}, {"filename": "run-one", "parent": "/usr/bin"}, {"filename": "run-one-constantly", "parent": "/usr/bin"}, {"filename": "run-one-until-failure", "parent": "/usr/bin"}, {"filename": "run-one-until-success", "parent": "/usr/bin"}, {"filename": "run-this-one", "parent": "/usr/bin"}, {"filename": "rview", "parent": "/usr/bin"}, {"filename": "rvim", "parent": "/usr/bin"}, {"filename": "sadf", "parent": "/usr/bin"}, {"filename": "sar", "parent": "/usr/bin"}, {"filename": "sar.sysstat", "parent": "/usr/bin"}, {"filename": "savelog", "parent": "/usr/bin"}, {"filename": "scp", "parent": "/usr/bin"}, {"filename": "screen", "parent": "/usr/bin"}, {"filename": "screendump", "parent": "/usr/bin"}, {"filename": "script", "parent": "/usr/bin"}, {"filename": "scriptreplay", "parent": "/usr/bin"}, {"filename": "sdiff", "parent": "/usr/bin"}, {"filename": "see", "parent": "/usr/bin"}, {"filename": "select-editor", "parent": "/usr/bin"}, {"filename": "sensible-browser", "parent": "/usr/bin"}, {"filename": "sensible-editor", "parent": "/usr/bin"}, {"filename": "sensible-pager", "parent": "/usr/bin"}, {"filename": "seq", "parent": "/usr/bin"}, {"filename": "setarch", "parent": "/usr/bin"}, {"filename": "setfacl", "parent": "/usr/bin"}, {"filename": "setkeycodes", "parent": "/usr/bin"}, {"filename": "setleds", "parent": "/usr/bin"}, {"filename": "setlogcons", "parent": "/usr/bin"}, {"filename": "setmetamode", "parent": "/usr/bin"}, {"filename": "setpci", "parent": "/usr/bin"}, {"filename": "setsid", "parent": "/usr/bin"}, {"filename": "setterm", "parent": "/usr/bin"}, {"filename": "sftp", "parent": "/usr/bin"}, {"filename": "sg", "parent": "/usr/bin"}, {"filename": "sha1sum", "parent": "/usr/bin"}, {"filename": "sha224sum", "parent": "/usr/bin"}, {"filename": "sha256sum", "parent": "/usr/bin"}, {"filename": "sha384sum", "parent": "/usr/bin"}, {"filename": "sha512sum", "parent": "/usr/bin"}, {"filename": "shasum", "parent": "/usr/bin"}, {"filename": "showconsolefont", "parent": "/usr/bin"}, {"filename": "showkey", "parent": "/usr/bin"}, {"filename": "shred", "parent": "/usr/bin"}, {"filename": "shuf", "parent": "/usr/bin"}, {"filename": "size", "parent": "/usr/bin"}, {"filename": "skill", "parent": "/usr/bin"}, {"filename": "slabtop", "parent": "/usr/bin"}, {"filename": "slogin", "parent": "/usr/bin"}, {"filename": "slurm", "parent": "/usr/bin"}, {"filename": "snap", "parent": "/usr/bin"}, {"filename": "snapctl", "parent": "/usr/bin"}, {"filename": "snapfuse", "parent": "/usr/bin"}, {"filename": "snice", "parent": "/usr/bin"}, {"filename": "soelim", "parent": "/usr/bin"}, {"filename": "sort", "parent": "/usr/bin"}, {"filename": "sosreport", "parent": "/usr/bin"}, {"filename": "sotruss", "parent": "/usr/bin"}, {"filename": "splain", "parent": "/usr/bin"}, {"filename": "split", "parent": "/usr/bin"}, {"filename": "splitfont", "parent": "/usr/bin"}, {"filename": "sprof", "parent": "/usr/bin"}, {"filename": "ssh", "parent": "/usr/bin"}, {"filename": "ssh-add", "parent": "/usr/bin"}, {"filename": "ssh-agent", "parent": "/usr/bin"}, {"filename": "ssh-argv0", "parent": "/usr/bin"}, {"filename": "ssh-copy-id", "parent": "/usr/bin"}, {"filename": "ssh-import-id", "parent": "/usr/bin"}, {"filename": "ssh-import-id-gh", "parent": "/usr/bin"}, {"filename": "ssh-import-id-lp", "parent": "/usr/bin"}, {"filename": "ssh-keygen", "parent": "/usr/bin"}, {"filename": "ssh-keyscan", "parent": "/usr/bin"}, {"filename": "stat", "parent": "/usr/bin"}, {"filename": "stdbuf", "parent": "/usr/bin"}, {"filename": "strace", "parent": "/usr/bin"}, {"filename": "strace-log-merge", "parent": "/usr/bin"}, {"filename": "strings", "parent": "/usr/bin"}, {"filename": "strip", "parent": "/usr/bin"}, {"filename": "sudo", "parent": "/usr/bin"}, {"filename": "sudoedit", "parent": "/usr/bin"}, {"filename": "sudoreplay", "parent": "/usr/bin"}, {"filename": "sum", "parent": "/usr/bin"}, {"filename": "symcryptrun", "parent": "/usr/bin"}, {"filename": "systemd-analyze", "parent": "/usr/bin"}, {"filename": "systemd-cat", "parent": "/usr/bin"}, {"filename": "systemd-cgls", "parent": "/usr/bin"}, {"filename": "systemd-cgtop", "parent": "/usr/bin"}, {"filename": "systemd-delta", "parent": "/usr/bin"}, {"filename": "systemd-detect-virt", "parent": "/usr/bin"}, {"filename": "systemd-mount", "parent": "/usr/bin"}, {"filename": "systemd-path", "parent": "/usr/bin"}, {"filename": "systemd-resolve", "parent": "/usr/bin"}, {"filename": "systemd-run", "parent": "/usr/bin"}, {"filename": "systemd-socket-activate", "parent": "/usr/bin"}, {"filename": "systemd-stdio-bridge", "parent": "/usr/bin"}, {"filename": "systemd-umount", "parent": "/usr/bin"}, {"filename": "tabs", "parent": "/usr/bin"}, {"filename": "tac", "parent": "/usr/bin"}, {"filename": "tail", "parent": "/usr/bin"}, {"filename": "tapestat", "parent": "/usr/bin"}, {"filename": "taskset", "parent": "/usr/bin"}, {"filename": "tbl", "parent": "/usr/bin"}, {"filename": "tee", "parent": "/usr/bin"}, {"filename": "telnet", "parent": "/usr/bin"}, {"filename": "telnet.netkit", "parent": "/usr/bin"}, {"filename": "test", "parent": "/usr/bin"}, {"filename": "tic", "parent": "/usr/bin"}, {"filename": "time", "parent": "/usr/bin"}, {"filename": "timedatectl", "parent": "/usr/bin"}, {"filename": "timeout", "parent": "/usr/bin"}, {"filename": "tkconch3", "parent": "/usr/bin"}, {"filename": "tload", "parent": "/usr/bin"}, {"filename": "tmux", "parent": "/usr/bin"}, {"filename": "toe", "parent": "/usr/bin"}, {"filename": "top", "parent": "/usr/bin"}, {"filename": "touch", "parent": "/usr/bin"}, {"filename": "tput", "parent": "/usr/bin"}, {"filename": "tr", "parent": "/usr/bin"}, {"filename": "tracepath", "parent": "/usr/bin"}, {"filename": "traceroute6", "parent": "/usr/bin"}, {"filename": "traceroute6.iputils", "parent": "/usr/bin"}, {"filename": "trial3", "parent": "/usr/bin"}, {"filename": "troff", "parent": "/usr/bin"}, {"filename": "truncate", "parent": "/usr/bin"}, {"filename": "tset", "parent": "/usr/bin"}, {"filename": "tsort", "parent": "/usr/bin"}, {"filename": "tty", "parent": "/usr/bin"}, {"filename": "twist3", "parent": "/usr/bin"}, {"filename": "twistd3", "parent": "/usr/bin"}, {"filename": "tzselect", "parent": "/usr/bin"}, {"filename": "ua", "parent": "/usr/bin"}, {"filename": "ubuntu-advantage", "parent": "/usr/bin"}, {"filename": "ubuntu-bug", "parent": "/usr/bin"}, {"filename": "ubuntu-core-launcher", "parent": "/usr/bin"}, {"filename": "ubuntu-support-status", "parent": "/usr/bin"}, {"filename": "ucf", "parent": "/usr/bin"}, {"filename": "ucfq", "parent": "/usr/bin"}, {"filename": "ucfr", "parent": "/usr/bin"}, {"filename": "ul", "parent": "/usr/bin"}, {"filename": "unattended-upgrade", "parent": "/usr/bin"}, {"filename": "unattended-upgrades", "parent": "/usr/bin"}, {"filename": "unexpand", "parent": "/usr/bin"}, {"filename": "unicode_stop", "parent": "/usr/bin"}, {"filename": "uniq", "parent": "/usr/bin"}, {"filename": "unlink", "parent": "/usr/bin"}, {"filename": "unlzma", "parent": "/usr/bin"}, {"filename": "unmkinitramfs", "parent": "/usr/bin"}, {"filename": "unpigz", "parent": "/usr/bin"}, {"filename": "unshare", "parent": "/usr/bin"}, {"filename": "unsquashfs", "parent": "/usr/bin"}, {"filename": "unxz", "parent": "/usr/bin"}, {"filename": "update-alternatives", "parent": "/usr/bin"}, {"filename": "updatedb", "parent": "/usr/bin"}, {"filename": "updatedb.mlocate", "parent": "/usr/bin"}, {"filename": "update-mime-database", "parent": "/usr/bin"}, {"filename": "uptime", "parent": "/usr/bin"}, {"filename": "usb-devices", "parent": "/usr/bin"}, {"filename": "usbhid-dump", "parent": "/usr/bin"}, {"filename": "users", "parent": "/usr/bin"}, {"filename": "utmpdump", "parent": "/usr/bin"}, {"filename": "uuidgen", "parent": "/usr/bin"}, {"filename": "uuidparse", "parent": "/usr/bin"}, {"filename": "vcs-run", "parent": "/usr/bin"}, {"filename": "VGAuthService", "parent": "/usr/bin"}, {"filename": "vi", "parent": "/usr/bin"}, {"filename": "view", "parent": "/usr/bin"}, {"filename": "vigpg", "parent": "/usr/bin"}, {"filename": "vim", "parent": "/usr/bin"}, {"filename": "vim.basic", "parent": "/usr/bin"}, {"filename": "vimdiff", "parent": "/usr/bin"}, {"filename": "vim.tiny", "parent": "/usr/bin"}, {"filename": "vimtutor", "parent": "/usr/bin"}, {"filename": "vmhgfs-fuse", "parent": "/usr/bin"}, {"filename": "vmstat", "parent": "/usr/bin"}, {"filename": "vmtoolsd", "parent": "/usr/bin"}, {"filename": "vmware-checkvm", "parent": "/usr/bin"}, {"filename": "vmware-guestproxycerttool", "parent": "/usr/bin"}, {"filename": "vmware-hgfsclient", "parent": "/usr/bin"}, {"filename": "vmware-namespace-cmd", "parent": "/usr/bin"}, {"filename": "vmware-rpctool", "parent": "/usr/bin"}, {"filename": "vmware-toolbox-cmd", "parent": "/usr/bin"}, {"filename": "vmware-vgauth-cmd", "parent": "/usr/bin"}, {"filename": "vmware-vgauth-smoketest", "parent": "/usr/bin"}, {"filename": "vmware-vmblock-fuse", "parent": "/usr/bin"}, {"filename": "vmware-xferlogs", "parent": "/usr/bin"}, {"filename": "volname", "parent": "/usr/bin"}, {"filename": "w", "parent": "/usr/bin"}, {"filename": "wall", "parent": "/usr/bin"}, {"filename": "watch", "parent": "/usr/bin"}, {"filename": "watchgnupg", "parent": "/usr/bin"}, {"filename": "wc", "parent": "/usr/bin"}, {"filename": "wget", "parent": "/usr/bin"}, {"filename": "whatis", "parent": "/usr/bin"}, {"filename": "whereis", "parent": "/usr/bin"}, {"filename": "which", "parent": "/usr/bin"}, {"filename": "who", "parent": "/usr/bin"}, {"filename": "whoami", "parent": "/usr/bin"}, {"filename": "wifi-status", "parent": "/usr/bin"}, {"filename": "wmdocker", "parent": "/usr/bin"}, {"filename": "w.procps", "parent": "/usr/bin"}, {"filename": "write", "parent": "/usr/bin"}, {"filename": "x86_64", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-addr2line", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-ar", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-as", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-c++filt", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-cpp", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-cpp-7", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-dwp", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-elfedit", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-g++", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-g++-7", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-gcc", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-gcc-7", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-gcc-ar", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-gcc-ar-7", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-gcc-nm", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-gcc-nm-7", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-gcc-ranlib", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-gcc-ranlib-7", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-gcov", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-gcov-7", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-gcov-dump", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-gcov-dump-7", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-gcov-tool", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-gcov-tool-7", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-gold", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-gprof", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-ld", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-ld.bfd", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-ld.gold", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-nm", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-objcopy", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-objdump", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-python3.6-config", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-python3.6m-config", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-python3-config", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-python3m-config", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-ranlib", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-readelf", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-size", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-strings", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-strip", "parent": "/usr/bin"}, {"filename": "xargs", "parent": "/usr/bin"}, {"filename": "xauth", "parent": "/usr/bin"}, {"filename": "xdelta3", "parent": "/usr/bin"}, {"filename": "xdg-user-dir", "parent": "/usr/bin"}, {"filename": "xdg-user-dirs-update", "parent": "/usr/bin"}, {"filename": "xsubpp", "parent": "/usr/bin"}, {"filename": "xxd", "parent": "/usr/bin"}, {"filename": "xz", "parent": "/usr/bin"}, {"filename": "xzcat", "parent": "/usr/bin"}, {"filename": "xzcmp", "parent": "/usr/bin"}, {"filename": "xzdiff", "parent": "/usr/bin"}, {"filename": "xzegrep", "parent": "/usr/bin"}, {"filename": "xzfgrep", "parent": "/usr/bin"}, {"filename": "xzgrep", "parent": "/usr/bin"}, {"filename": "xzless", "parent": "/usr/bin"}, {"filename": "xzmore", "parent": "/usr/bin"}, {"filename": "yes", "parent": "/usr/bin"}, {"filename": "zdump", "parent": "/usr/bin"}, {"filename": "zipdetails", "parent": "/usr/bin"}, {"filename": "aio.h", "parent": "/usr/include"}, {"filename": "aliases.h", "parent": "/usr/include"}, {"filename": "alloca.h", "parent": "/usr/include"}, {"filename": "argp.h", "parent": "/usr/include"}, {"filename": "argz.h", "parent": "/usr/include"}, {"filename": "ar.h", "parent": "/usr/include"}, {"filename": "arpa", "parent": "/usr/include"}, {"filename": "asm-generic", "parent": "/usr/include"}, {"filename": "assert.h", "parent": "/usr/include"}, {"filename": "btrfs", "parent": "/usr/include"}, {"filename": "byteswap.h", "parent": "/usr/include"}, {"filename": "c++", "parent": "/usr/include"}, {"filename": "complex.h", "parent": "/usr/include"}, {"filename": "cpio.h", "parent": "/usr/include"}, {"filename": "crypt.h", "parent": "/usr/include"}, {"filename": "ctype.h", "parent": "/usr/include"}, {"filename": "dirent.h", "parent": "/usr/include"}, {"filename": "dlfcn.h", "parent": "/usr/include"}, {"filename": "drm", "parent": "/usr/include"}, {"filename": "elf.h", "parent": "/usr/include"}, {"filename": "endian.h", "parent": "/usr/include"}, {"filename": "envz.h", "parent": "/usr/include"}, {"filename": "err.h", "parent": "/usr/include"}, {"filename": "errno.h", "parent": "/usr/include"}, {"filename": "error.h", "parent": "/usr/include"}, {"filename": "execinfo.h", "parent": "/usr/include"}, {"filename": "expat_external.h", "parent": "/usr/include"}, {"filename": "expat.h", "parent": "/usr/include"}, {"filename": "fcntl.h", "parent": "/usr/include"}, {"filename": "features.h", "parent": "/usr/include"}, {"filename": "fenv.h", "parent": "/usr/include"}, {"filename": "fmtmsg.h", "parent": "/usr/include"}, {"filename": "fnmatch.h", "parent": "/usr/include"}, {"filename": "fstab.h", "parent": "/usr/include"}, {"filename": "fts.h", "parent": "/usr/include"}, {"filename": "ftw.h", "parent": "/usr/include"}, {"filename": "gawkapi.h", "parent": "/usr/include"}, {"filename": "_G_config.h", "parent": "/usr/include"}, {"filename": "gconv.h", "parent": "/usr/include"}, {"filename": "getopt.h", "parent": "/usr/include"}, {"filename": "glob.h", "parent": "/usr/include"}, {"filename": "gnumake.h", "parent": "/usr/include"}, {"filename": "gnu-versions.h", "parent": "/usr/include"}, {"filename": "grp.h", "parent": "/usr/include"}, {"filename": "gshadow.h", "parent": "/usr/include"}, {"filename": "iconv.h", "parent": "/usr/include"}, {"filename": "ifaddrs.h", "parent": "/usr/include"}, {"filename": "inttypes.h", "parent": "/usr/include"}, {"filename": "langinfo.h", "parent": "/usr/include"}, {"filename": "lastlog.h", "parent": "/usr/include"}, {"filename": "libgen.h", "parent": "/usr/include"}, {"filename": "libintl.h", "parent": "/usr/include"}, {"filename": "libio.h", "parent": "/usr/include"}, {"filename": "limits.h", "parent": "/usr/include"}, {"filename": "link.h", "parent": "/usr/include"}, {"filename": "linux", "parent": "/usr/include"}, {"filename": "locale.h", "parent": "/usr/include"}, {"filename": "malloc.h", "parent": "/usr/include"}, {"filename": "math.h", "parent": "/usr/include"}, {"filename": "mcheck.h", "parent": "/usr/include"}, {"filename": "memory.h", "parent": "/usr/include"}, {"filename": "misc", "parent": "/usr/include"}, {"filename": "mntent.h", "parent": "/usr/include"}, {"filename": "monetary.h", "parent": "/usr/include"}, {"filename": "mqueue.h", "parent": "/usr/include"}, {"filename": "mtd", "parent": "/usr/include"}, {"filename": "net", "parent": "/usr/include"}, {"filename": "netash", "parent": "/usr/include"}, {"filename": "netatalk", "parent": "/usr/include"}, {"filename": "netax25", "parent": "/usr/include"}, {"filename": "netdb.h", "parent": "/usr/include"}, {"filename": "neteconet", "parent": "/usr/include"}, {"filename": "netinet", "parent": "/usr/include"}, {"filename": "netipx", "parent": "/usr/include"}, {"filename": "netiucv", "parent": "/usr/include"}, {"filename": "netpacket", "parent": "/usr/include"}, {"filename": "netrom", "parent": "/usr/include"}, {"filename": "netrose", "parent": "/usr/include"}, {"filename": "nfs", "parent": "/usr/include"}, {"filename": "nl_types.h", "parent": "/usr/include"}, {"filename": "nss.h", "parent": "/usr/include"}, {"filename": "obstack.h", "parent": "/usr/include"}, {"filename": "paths.h", "parent": "/usr/include"}, {"filename": "poll.h", "parent": "/usr/include"}, {"filename": "printf.h", "parent": "/usr/include"}, {"filename": "proc_service.h", "parent": "/usr/include"}, {"filename": "protocols", "parent": "/usr/include"}, {"filename": "pthread.h", "parent": "/usr/include"}, {"filename": "pty.h", "parent": "/usr/include"}, {"filename": "pwd.h", "parent": "/usr/include"}, {"filename": "python3.6", "parent": "/usr/include"}, {"filename": "python3.6m", "parent": "/usr/include"}, {"filename": "rdma", "parent": "/usr/include"}, {"filename": "re_comp.h", "parent": "/usr/include"}, {"filename": "regex.h", "parent": "/usr/include"}, {"filename": "regexp.h", "parent": "/usr/include"}, {"filename": "reglib", "parent": "/usr/include"}, {"filename": "resolv.h", "parent": "/usr/include"}, {"filename": "rpc", "parent": "/usr/include"}, {"filename": "rpcsvc", "parent": "/usr/include"}, {"filename": "sched.h", "parent": "/usr/include"}, {"filename": "scsi", "parent": "/usr/include"}, {"filename": "search.h", "parent": "/usr/include"}, {"filename": "semaphore.h", "parent": "/usr/include"}, {"filename": "setjmp.h", "parent": "/usr/include"}, {"filename": "sgtty.h", "parent": "/usr/include"}, {"filename": "shadow.h", "parent": "/usr/include"}, {"filename": "signal.h", "parent": "/usr/include"}, {"filename": "sound", "parent": "/usr/include"}, {"filename": "spawn.h", "parent": "/usr/include"}, {"filename": "stab.h", "parent": "/usr/include"}, {"filename": "stdc-predef.h", "parent": "/usr/include"}, {"filename": "stdint.h", "parent": "/usr/include"}, {"filename": "stdio_ext.h", "parent": "/usr/include"}, {"filename": "stdio.h", "parent": "/usr/include"}, {"filename": "stdlib.h", "parent": "/usr/include"}, {"filename": "string.h", "parent": "/usr/include"}, {"filename": "strings.h", "parent": "/usr/include"}, {"filename": "stropts.h", "parent": "/usr/include"}, {"filename": "sudo_plugin.h", "parent": "/usr/include"}, {"filename": "syscall.h", "parent": "/usr/include"}, {"filename": "sysexits.h", "parent": "/usr/include"}, {"filename": "syslog.h", "parent": "/usr/include"}, {"filename": "tar.h", "parent": "/usr/include"}, {"filename": "termio.h", "parent": "/usr/include"}, {"filename": "termios.h", "parent": "/usr/include"}, {"filename": "tgmath.h", "parent": "/usr/include"}, {"filename": "thread_db.h", "parent": "/usr/include"}, {"filename": "time.h", "parent": "/usr/include"}, {"filename": "ttyent.h", "parent": "/usr/include"}, {"filename": "uchar.h", "parent": "/usr/include"}, {"filename": "ucontext.h", "parent": "/usr/include"}, {"filename": "ulimit.h", "parent": "/usr/include"}, {"filename": "unistd.h", "parent": "/usr/include"}, {"filename": "ustat.h", "parent": "/usr/include"}, {"filename": "utime.h", "parent": "/usr/include"}, {"filename": "utmp.h", "parent": "/usr/include"}, {"filename": "utmpx.h", "parent": "/usr/include"}, {"filename": "values.h", "parent": "/usr/include"}, {"filename": "video", "parent": "/usr/include"}, {"filename": "wait.h", "parent": "/usr/include"}, {"filename": "wchar.h", "parent": "/usr/include"}, {"filename": "wctype.h", "parent": "/usr/include"}, {"filename": "wordexp.h", "parent": "/usr/include"}, {"filename": "x86_64-linux-gnu", "parent": "/usr/include"}, {"filename": "xen", "parent": "/usr/include"}, {"filename": "xfs", "parent": "/usr/include"}, {"filename": "ftp.h", "parent": "/usr/include/arpa"}, {"filename": "inet.h", "parent": "/usr/include/arpa"}, {"filename": "nameser_compat.h", "parent": "/usr/include/arpa"}, {"filename": "nameser.h", "parent": "/usr/include/arpa"}, {"filename": "telnet.h", "parent": "/usr/include/arpa"}, {"filename": "tftp.h", "parent": "/usr/include/arpa"}, {"filename": "auxvec.h", "parent": "/usr/include/asm-generic"}, {"filename": "bitsperlong.h", "parent": "/usr/include/asm-generic"}, {"filename": "bpf_perf_event.h", "parent": "/usr/include/asm-generic"}, {"filename": "errno-base.h", "parent": "/usr/include/asm-generic"}, {"filename": "errno.h", "parent": "/usr/include/asm-generic"}, {"filename": "fcntl.h", "parent": "/usr/include/asm-generic"}, {"filename": "hugetlb_encode.h", "parent": "/usr/include/asm-generic"}, {"filename": "int-l64.h", "parent": "/usr/include/asm-generic"}, {"filename": "int-ll64.h", "parent": "/usr/include/asm-generic"}, {"filename": "ioctl.h", "parent": "/usr/include/asm-generic"}, {"filename": "ioctls.h", "parent": "/usr/include/asm-generic"}, {"filename": "ipcbuf.h", "parent": "/usr/include/asm-generic"}, {"filename": "kvm_para.h", "parent": "/usr/include/asm-generic"}, {"filename": "mman-common.h", "parent": "/usr/include/asm-generic"}, {"filename": "mman.h", "parent": "/usr/include/asm-generic"}, {"filename": "msgbuf.h", "parent": "/usr/include/asm-generic"}, {"filename": "param.h", "parent": "/usr/include/asm-generic"}, {"filename": "poll.h", "parent": "/usr/include/asm-generic"}, {"filename": "posix_types.h", "parent": "/usr/include/asm-generic"}, {"filename": "resource.h", "parent": "/usr/include/asm-generic"}, {"filename": "sembuf.h", "parent": "/usr/include/asm-generic"}, {"filename": "setup.h", "parent": "/usr/include/asm-generic"}, {"filename": "shmbuf.h", "parent": "/usr/include/asm-generic"}, {"filename": "shmparam.h", "parent": "/usr/include/asm-generic"}, {"filename": "siginfo.h", "parent": "/usr/include/asm-generic"}, {"filename": "signal-defs.h", "parent": "/usr/include/asm-generic"}, {"filename": "signal.h", "parent": "/usr/include/asm-generic"}, {"filename": "socket.h", "parent": "/usr/include/asm-generic"}, {"filename": "sockios.h", "parent": "/usr/include/asm-generic"}, {"filename": "statfs.h", "parent": "/usr/include/asm-generic"}, {"filename": "stat.h", "parent": "/usr/include/asm-generic"}, {"filename": "swab.h", "parent": "/usr/include/asm-generic"}, {"filename": "termbits.h", "parent": "/usr/include/asm-generic"}, {"filename": "termios.h", "parent": "/usr/include/asm-generic"}, {"filename": "types.h", "parent": "/usr/include/asm-generic"}, {"filename": "ucontext.h", "parent": "/usr/include/asm-generic"}, {"filename": "unistd.h", "parent": "/usr/include/asm-generic"}, {"filename": "btrfsck.h", "parent": "/usr/include/btrfs"}, {"filename": "btrfs-list.h", "parent": "/usr/include/btrfs"}, {"filename": "crc32c.h", "parent": "/usr/include/btrfs"}, {"filename": "ctree.h", "parent": "/usr/include/btrfs"}, {"filename": "extent-cache.h", "parent": "/usr/include/btrfs"}, {"filename": "extent_io.h", "parent": "/usr/include/btrfs"}, {"filename": "ioctl.h", "parent": "/usr/include/btrfs"}, {"filename": "kerncompat.h", "parent": "/usr/include/btrfs"}, {"filename": "list.h", "parent": "/usr/include/btrfs"}, {"filename": "radix-tree.h", "parent": "/usr/include/btrfs"}, {"filename": "raid56.h", "parent": "/usr/include/btrfs"}, {"filename": "rbtree.h", "parent": "/usr/include/btrfs"}, {"filename": "send.h", "parent": "/usr/include/btrfs"}, {"filename": "send-stream.h", "parent": "/usr/include/btrfs"}, {"filename": "send-utils.h", "parent": "/usr/include/btrfs"}, {"filename": "sizes.h", "parent": "/usr/include/btrfs"}, {"filename": "version.h", "parent": "/usr/include/btrfs"}, {"filename": "7", "parent": "/usr/include/c++"}, {"filename": "7.4.0", "parent": "/usr/include/c++"}, {"filename": "algorithm", "parent": "/usr/include/c++/7"}, {"filename": "any", "parent": "/usr/include/c++/7"}, {"filename": "array", "parent": "/usr/include/c++/7"}, {"filename": "atomic", "parent": "/usr/include/c++/7"}, {"filename": "backward", "parent": "/usr/include/c++/7"}, {"filename": "bits", "parent": "/usr/include/c++/7"}, {"filename": "bitset", "parent": "/usr/include/c++/7"}, {"filename": "cassert", "parent": "/usr/include/c++/7"}, {"filename": "ccomplex", "parent": "/usr/include/c++/7"}, {"filename": "cctype", "parent": "/usr/include/c++/7"}, {"filename": "cerrno", "parent": "/usr/include/c++/7"}, {"filename": "cfenv", "parent": "/usr/include/c++/7"}, {"filename": "cfloat", "parent": "/usr/include/c++/7"}, {"filename": "chrono", "parent": "/usr/include/c++/7"}, {"filename": "cinttypes", "parent": "/usr/include/c++/7"}, {"filename": "ciso646", "parent": "/usr/include/c++/7"}, {"filename": "climits", "parent": "/usr/include/c++/7"}, {"filename": "clocale", "parent": "/usr/include/c++/7"}, {"filename": "cmath", "parent": "/usr/include/c++/7"}, {"filename": "codecvt", "parent": "/usr/include/c++/7"}, {"filename": "complex", "parent": "/usr/include/c++/7"}, {"filename": "complex.h", "parent": "/usr/include/c++/7"}, {"filename": "condition_variable", "parent": "/usr/include/c++/7"}, {"filename": "csetjmp", "parent": "/usr/include/c++/7"}, {"filename": "csignal", "parent": "/usr/include/c++/7"}, {"filename": "cstdalign", "parent": "/usr/include/c++/7"}, {"filename": "cstdarg", "parent": "/usr/include/c++/7"}, {"filename": "cstdbool", "parent": "/usr/include/c++/7"}, {"filename": "cstddef", "parent": "/usr/include/c++/7"}, {"filename": "cstdint", "parent": "/usr/include/c++/7"}, {"filename": "cstdio", "parent": "/usr/include/c++/7"}, {"filename": "cstdlib", "parent": "/usr/include/c++/7"}, {"filename": "cstring", "parent": "/usr/include/c++/7"}, {"filename": "ctgmath", "parent": "/usr/include/c++/7"}, {"filename": "ctime", "parent": "/usr/include/c++/7"}, {"filename": "cuchar", "parent": "/usr/include/c++/7"}, {"filename": "cwchar", "parent": "/usr/include/c++/7"}, {"filename": "cwctype", "parent": "/usr/include/c++/7"}, {"filename": "cxxabi.h", "parent": "/usr/include/c++/7"}, {"filename": "debug", "parent": "/usr/include/c++/7"}, {"filename": "decimal", "parent": "/usr/include/c++/7"}, {"filename": "deque", "parent": "/usr/include/c++/7"}, {"filename": "exception", "parent": "/usr/include/c++/7"}, {"filename": "experimental", "parent": "/usr/include/c++/7"}, {"filename": "ext", "parent": "/usr/include/c++/7"}, {"filename": "fenv.h", "parent": "/usr/include/c++/7"}, {"filename": "forward_list", "parent": "/usr/include/c++/7"}, {"filename": "fstream", "parent": "/usr/include/c++/7"}, {"filename": "functional", "parent": "/usr/include/c++/7"}, {"filename": "future", "parent": "/usr/include/c++/7"}, {"filename": "initializer_list", "parent": "/usr/include/c++/7"}, {"filename": "iomanip", "parent": "/usr/include/c++/7"}, {"filename": "ios", "parent": "/usr/include/c++/7"}, {"filename": "iosfwd", "parent": "/usr/include/c++/7"}, {"filename": "iostream", "parent": "/usr/include/c++/7"}, {"filename": "istream", "parent": "/usr/include/c++/7"}, {"filename": "iterator", "parent": "/usr/include/c++/7"}, {"filename": "limits", "parent": "/usr/include/c++/7"}, {"filename": "list", "parent": "/usr/include/c++/7"}, {"filename": "locale", "parent": "/usr/include/c++/7"}, {"filename": "map", "parent": "/usr/include/c++/7"}, {"filename": "math.h", "parent": "/usr/include/c++/7"}, {"filename": "memory", "parent": "/usr/include/c++/7"}, {"filename": "mutex", "parent": "/usr/include/c++/7"}, {"filename": "new", "parent": "/usr/include/c++/7"}, {"filename": "numeric", "parent": "/usr/include/c++/7"}, {"filename": "optional", "parent": "/usr/include/c++/7"}, {"filename": "ostream", "parent": "/usr/include/c++/7"}, {"filename": "parallel", "parent": "/usr/include/c++/7"}, {"filename": "profile", "parent": "/usr/include/c++/7"}, {"filename": "queue", "parent": "/usr/include/c++/7"}, {"filename": "random", "parent": "/usr/include/c++/7"}, {"filename": "ratio", "parent": "/usr/include/c++/7"}, {"filename": "regex", "parent": "/usr/include/c++/7"}, {"filename": "scoped_allocator", "parent": "/usr/include/c++/7"}, {"filename": "set", "parent": "/usr/include/c++/7"}, {"filename": "shared_mutex", "parent": "/usr/include/c++/7"}, {"filename": "sstream", "parent": "/usr/include/c++/7"}, {"filename": "stack", "parent": "/usr/include/c++/7"}, {"filename": "stdexcept", "parent": "/usr/include/c++/7"}, {"filename": "stdlib.h", "parent": "/usr/include/c++/7"}, {"filename": "streambuf", "parent": "/usr/include/c++/7"}, {"filename": "string", "parent": "/usr/include/c++/7"}, {"filename": "string_view", "parent": "/usr/include/c++/7"}, {"filename": "system_error", "parent": "/usr/include/c++/7"}, {"filename": "tgmath.h", "parent": "/usr/include/c++/7"}, {"filename": "thread", "parent": "/usr/include/c++/7"}, {"filename": "tr1", "parent": "/usr/include/c++/7"}, {"filename": "tr2", "parent": "/usr/include/c++/7"}, {"filename": "tuple", "parent": "/usr/include/c++/7"}, {"filename": "typeindex", "parent": "/usr/include/c++/7"}, {"filename": "typeinfo", "parent": "/usr/include/c++/7"}, {"filename": "type_traits", "parent": "/usr/include/c++/7"}, {"filename": "unordered_map", "parent": "/usr/include/c++/7"}, {"filename": "unordered_set", "parent": "/usr/include/c++/7"}, {"filename": "utility", "parent": "/usr/include/c++/7"}, {"filename": "valarray", "parent": "/usr/include/c++/7"}, {"filename": "variant", "parent": "/usr/include/c++/7"}, {"filename": "vector", "parent": "/usr/include/c++/7"}, {"filename": "auto_ptr.h", "parent": "/usr/include/c++/7/backward"}, {"filename": "backward_warning.h", "parent": "/usr/include/c++/7/backward"}, {"filename": "binders.h", "parent": "/usr/include/c++/7/backward"}, {"filename": "hash_fun.h", "parent": "/usr/include/c++/7/backward"}, {"filename": "hash_map", "parent": "/usr/include/c++/7/backward"}, {"filename": "hash_set", "parent": "/usr/include/c++/7/backward"}, {"filename": "hashtable.h", "parent": "/usr/include/c++/7/backward"}, {"filename": "strstream", "parent": "/usr/include/c++/7/backward"}, {"filename": "algorithmfwd.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "allocated_ptr.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "allocator.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "alloc_traits.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "atomic_base.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "atomic_futex.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "atomic_lockfree_defines.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "basic_ios.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "basic_ios.tcc", "parent": "/usr/include/c++/7/bits"}, {"filename": "basic_string.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "basic_string.tcc", "parent": "/usr/include/c++/7/bits"}, {"filename": "boost_concept_check.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "c++0x_warning.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "char_traits.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "codecvt.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "concept_check.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "cpp_type_traits.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "cxxabi_forced.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "cxxabi_init_exception.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "deque.tcc", "parent": "/usr/include/c++/7/bits"}, {"filename": "enable_special_members.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "exception_defines.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "exception.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "exception_ptr.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "forward_list.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "forward_list.tcc", "parent": "/usr/include/c++/7/bits"}, {"filename": "fstream.tcc", "parent": "/usr/include/c++/7/bits"}, {"filename": "functexcept.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "functional_hash.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "gslice_array.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "gslice.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "hash_bytes.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "hashtable.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "hashtable_policy.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "indirect_array.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "invoke.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "ios_base.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "istream.tcc", "parent": "/usr/include/c++/7/bits"}, {"filename": "list.tcc", "parent": "/usr/include/c++/7/bits"}, {"filename": "locale_classes.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "locale_classes.tcc", "parent": "/usr/include/c++/7/bits"}, {"filename": "locale_conv.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "locale_facets.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "locale_facets_nonio.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "locale_facets_nonio.tcc", "parent": "/usr/include/c++/7/bits"}, {"filename": "locale_facets.tcc", "parent": "/usr/include/c++/7/bits"}, {"filename": "localefwd.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "mask_array.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "memoryfwd.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "move.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "nested_exception.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "node_handle.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "ostream_insert.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "ostream.tcc", "parent": "/usr/include/c++/7/bits"}, {"filename": "parse_numbers.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "postypes.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "predefined_ops.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "ptr_traits.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "quoted_string.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "random.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "random.tcc", "parent": "/usr/include/c++/7/bits"}, {"filename": "range_access.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "refwrap.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "regex_automaton.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "regex_automaton.tcc", "parent": "/usr/include/c++/7/bits"}, {"filename": "regex_compiler.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "regex_compiler.tcc", "parent": "/usr/include/c++/7/bits"}, {"filename": "regex_constants.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "regex_error.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "regex_executor.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "regex_executor.tcc", "parent": "/usr/include/c++/7/bits"}, {"filename": "regex.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "regex_scanner.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "regex_scanner.tcc", "parent": "/usr/include/c++/7/bits"}, {"filename": "regex.tcc", "parent": "/usr/include/c++/7/bits"}, {"filename": "shared_ptr_atomic.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "shared_ptr_base.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "shared_ptr.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "slice_array.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "specfun.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "sstream.tcc", "parent": "/usr/include/c++/7/bits"}, {"filename": "std_abs.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "std_function.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "std_mutex.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "stl_algobase.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "stl_algo.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "stl_bvector.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "stl_construct.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "stl_deque.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "stl_function.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "stl_heap.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "stl_iterator_base_funcs.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "stl_iterator_base_types.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "stl_iterator.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "stl_list.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "stl_map.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "stl_multimap.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "stl_multiset.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "stl_numeric.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "stl_pair.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "stl_queue.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "stl_raw_storage_iter.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "stl_relops.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "stl_set.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "stl_stack.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "stl_tempbuf.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "stl_tree.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "stl_uninitialized.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "stl_vector.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "streambuf_iterator.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "streambuf.tcc", "parent": "/usr/include/c++/7/bits"}, {"filename": "stream_iterator.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "stringfwd.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "string_view.tcc", "parent": "/usr/include/c++/7/bits"}, {"filename": "uniform_int_dist.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "unique_ptr.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "unordered_map.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "unordered_set.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "uses_allocator.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "valarray_after.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "valarray_array.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "valarray_array.tcc", "parent": "/usr/include/c++/7/bits"}, {"filename": "valarray_before.h", "parent": "/usr/include/c++/7/bits"}, {"filename": "vector.tcc", "parent": "/usr/include/c++/7/bits"}, {"filename": "array", "parent": "/usr/include/c++/7/debug"}, {"filename": "assertions.h", "parent": "/usr/include/c++/7/debug"}, {"filename": "bitset", "parent": "/usr/include/c++/7/debug"}, {"filename": "debug.h", "parent": "/usr/include/c++/7/debug"}, {"filename": "deque", "parent": "/usr/include/c++/7/debug"}, {"filename": "formatter.h", "parent": "/usr/include/c++/7/debug"}, {"filename": "forward_list", "parent": "/usr/include/c++/7/debug"}, {"filename": "functions.h", "parent": "/usr/include/c++/7/debug"}, {"filename": "helper_functions.h", "parent": "/usr/include/c++/7/debug"}, {"filename": "list", "parent": "/usr/include/c++/7/debug"}, {"filename": "macros.h", "parent": "/usr/include/c++/7/debug"}, {"filename": "map", "parent": "/usr/include/c++/7/debug"}, {"filename": "map.h", "parent": "/usr/include/c++/7/debug"}, {"filename": "multimap.h", "parent": "/usr/include/c++/7/debug"}, {"filename": "multiset.h", "parent": "/usr/include/c++/7/debug"}, {"filename": "safe_base.h", "parent": "/usr/include/c++/7/debug"}, {"filename": "safe_container.h", "parent": "/usr/include/c++/7/debug"}, {"filename": "safe_iterator.h", "parent": "/usr/include/c++/7/debug"}, {"filename": "safe_iterator.tcc", "parent": "/usr/include/c++/7/debug"}, {"filename": "safe_local_iterator.h", "parent": "/usr/include/c++/7/debug"}, {"filename": "safe_local_iterator.tcc", "parent": "/usr/include/c++/7/debug"}, {"filename": "safe_sequence.h", "parent": "/usr/include/c++/7/debug"}, {"filename": "safe_sequence.tcc", "parent": "/usr/include/c++/7/debug"}, {"filename": "safe_unordered_base.h", "parent": "/usr/include/c++/7/debug"}, {"filename": "safe_unordered_container.h", "parent": "/usr/include/c++/7/debug"}, {"filename": "safe_unordered_container.tcc", "parent": "/usr/include/c++/7/debug"}, {"filename": "set", "parent": "/usr/include/c++/7/debug"}, {"filename": "set.h", "parent": "/usr/include/c++/7/debug"}, {"filename": "stl_iterator.h", "parent": "/usr/include/c++/7/debug"}, {"filename": "string", "parent": "/usr/include/c++/7/debug"}, {"filename": "unordered_map", "parent": "/usr/include/c++/7/debug"}, {"filename": "unordered_set", "parent": "/usr/include/c++/7/debug"}, {"filename": "vector", "parent": "/usr/include/c++/7/debug"}, {"filename": "decimal", "parent": "/usr/include/c++/7/decimal"}, {"filename": "decimal.h", "parent": "/usr/include/c++/7/decimal"}, {"filename": "algorithm", "parent": "/usr/include/c++/7/experimental"}, {"filename": "any", "parent": "/usr/include/c++/7/experimental"}, {"filename": "array", "parent": "/usr/include/c++/7/experimental"}, {"filename": "bits", "parent": "/usr/include/c++/7/experimental"}, {"filename": "chrono", "parent": "/usr/include/c++/7/experimental"}, {"filename": "deque", "parent": "/usr/include/c++/7/experimental"}, {"filename": "filesystem", "parent": "/usr/include/c++/7/experimental"}, {"filename": "forward_list", "parent": "/usr/include/c++/7/experimental"}, {"filename": "functional", "parent": "/usr/include/c++/7/experimental"}, {"filename": "iterator", "parent": "/usr/include/c++/7/experimental"}, {"filename": "list", "parent": "/usr/include/c++/7/experimental"}, {"filename": "map", "parent": "/usr/include/c++/7/experimental"}, {"filename": "memory", "parent": "/usr/include/c++/7/experimental"}, {"filename": "memory_resource", "parent": "/usr/include/c++/7/experimental"}, {"filename": "numeric", "parent": "/usr/include/c++/7/experimental"}, {"filename": "optional", "parent": "/usr/include/c++/7/experimental"}, {"filename": "propagate_const", "parent": "/usr/include/c++/7/experimental"}, {"filename": "random", "parent": "/usr/include/c++/7/experimental"}, {"filename": "ratio", "parent": "/usr/include/c++/7/experimental"}, {"filename": "regex", "parent": "/usr/include/c++/7/experimental"}, {"filename": "set", "parent": "/usr/include/c++/7/experimental"}, {"filename": "source_location", "parent": "/usr/include/c++/7/experimental"}, {"filename": "string", "parent": "/usr/include/c++/7/experimental"}, {"filename": "string_view", "parent": "/usr/include/c++/7/experimental"}, {"filename": "system_error", "parent": "/usr/include/c++/7/experimental"}, {"filename": "tuple", "parent": "/usr/include/c++/7/experimental"}, {"filename": "type_traits", "parent": "/usr/include/c++/7/experimental"}, {"filename": "unordered_map", "parent": "/usr/include/c++/7/experimental"}, {"filename": "unordered_set", "parent": "/usr/include/c++/7/experimental"}, {"filename": "utility", "parent": "/usr/include/c++/7/experimental"}, {"filename": "vector", "parent": "/usr/include/c++/7/experimental"}, {"filename": "erase_if.h", "parent": "/usr/include/c++/7/experimental/bits"}, {"filename": "fs_dir.h", "parent": "/usr/include/c++/7/experimental/bits"}, {"filename": "fs_fwd.h", "parent": "/usr/include/c++/7/experimental/bits"}, {"filename": "fs_ops.h", "parent": "/usr/include/c++/7/experimental/bits"}, {"filename": "fs_path.h", "parent": "/usr/include/c++/7/experimental/bits"}, {"filename": "lfts_config.h", "parent": "/usr/include/c++/7/experimental/bits"}, {"filename": "shared_ptr.h", "parent": "/usr/include/c++/7/experimental/bits"}, {"filename": "string_view.tcc", "parent": "/usr/include/c++/7/experimental/bits"}, {"filename": "algorithm", "parent": "/usr/include/c++/7/ext"}, {"filename": "aligned_buffer.h", "parent": "/usr/include/c++/7/ext"}, {"filename": "alloc_traits.h", "parent": "/usr/include/c++/7/ext"}, {"filename": "array_allocator.h", "parent": "/usr/include/c++/7/ext"}, {"filename": "atomicity.h", "parent": "/usr/include/c++/7/ext"}, {"filename": "bitmap_allocator.h", "parent": "/usr/include/c++/7/ext"}, {"filename": "cast.h", "parent": "/usr/include/c++/7/ext"}, {"filename": "cmath", "parent": "/usr/include/c++/7/ext"}, {"filename": "codecvt_specializations.h", "parent": "/usr/include/c++/7/ext"}, {"filename": "concurrence.h", "parent": "/usr/include/c++/7/ext"}, {"filename": "debug_allocator.h", "parent": "/usr/include/c++/7/ext"}, {"filename": "enc_filebuf.h", "parent": "/usr/include/c++/7/ext"}, {"filename": "extptr_allocator.h", "parent": "/usr/include/c++/7/ext"}, {"filename": "functional", "parent": "/usr/include/c++/7/ext"}, {"filename": "hash_map", "parent": "/usr/include/c++/7/ext"}, {"filename": "hash_set", "parent": "/usr/include/c++/7/ext"}, {"filename": "iterator", "parent": "/usr/include/c++/7/ext"}, {"filename": "malloc_allocator.h", "parent": "/usr/include/c++/7/ext"}, {"filename": "memory", "parent": "/usr/include/c++/7/ext"}, {"filename": "mt_allocator.h", "parent": "/usr/include/c++/7/ext"}, {"filename": "new_allocator.h", "parent": "/usr/include/c++/7/ext"}, {"filename": "numeric", "parent": "/usr/include/c++/7/ext"}, {"filename": "numeric_traits.h", "parent": "/usr/include/c++/7/ext"}, {"filename": "pb_ds", "parent": "/usr/include/c++/7/ext"}, {"filename": "pod_char_traits.h", "parent": "/usr/include/c++/7/ext"}, {"filename": "pointer.h", "parent": "/usr/include/c++/7/ext"}, {"filename": "pool_allocator.h", "parent": "/usr/include/c++/7/ext"}, {"filename": "random", "parent": "/usr/include/c++/7/ext"}, {"filename": "random.tcc", "parent": "/usr/include/c++/7/ext"}, {"filename": "rb_tree", "parent": "/usr/include/c++/7/ext"}, {"filename": "rc_string_base.h", "parent": "/usr/include/c++/7/ext"}, {"filename": "rope", "parent": "/usr/include/c++/7/ext"}, {"filename": "ropeimpl.h", "parent": "/usr/include/c++/7/ext"}, {"filename": "slist", "parent": "/usr/include/c++/7/ext"}, {"filename": "sso_string_base.h", "parent": "/usr/include/c++/7/ext"}, {"filename": "stdio_filebuf.h", "parent": "/usr/include/c++/7/ext"}, {"filename": "stdio_sync_filebuf.h", "parent": "/usr/include/c++/7/ext"}, {"filename": "string_conversions.h", "parent": "/usr/include/c++/7/ext"}, {"filename": "throw_allocator.h", "parent": "/usr/include/c++/7/ext"}, {"filename": "typelist.h", "parent": "/usr/include/c++/7/ext"}, {"filename": "type_traits.h", "parent": "/usr/include/c++/7/ext"}, {"filename": "vstring_fwd.h", "parent": "/usr/include/c++/7/ext"}, {"filename": "vstring.h", "parent": "/usr/include/c++/7/ext"}, {"filename": "vstring.tcc", "parent": "/usr/include/c++/7/ext"}, {"filename": "vstring_util.h", "parent": "/usr/include/c++/7/ext"}, {"filename": "assoc_container.hpp", "parent": "/usr/include/c++/7/ext/pb_ds"}, {"filename": "detail", "parent": "/usr/include/c++/7/ext/pb_ds"}, {"filename": "exception.hpp", "parent": "/usr/include/c++/7/ext/pb_ds"}, {"filename": "hash_policy.hpp", "parent": "/usr/include/c++/7/ext/pb_ds"}, {"filename": "list_update_policy.hpp", "parent": "/usr/include/c++/7/ext/pb_ds"}, {"filename": "priority_queue.hpp", "parent": "/usr/include/c++/7/ext/pb_ds"}, {"filename": "tag_and_trait.hpp", "parent": "/usr/include/c++/7/ext/pb_ds"}, {"filename": "tree_policy.hpp", "parent": "/usr/include/c++/7/ext/pb_ds"}, {"filename": "trie_policy.hpp", "parent": "/usr/include/c++/7/ext/pb_ds"}, {"filename": "binary_heap_", "parent": "/usr/include/c++/7/ext/pb_ds/detail"}, {"filename": "binomial_heap_", "parent": "/usr/include/c++/7/ext/pb_ds/detail"}, {"filename": "binomial_heap_base_", "parent": "/usr/include/c++/7/ext/pb_ds/detail"}, {"filename": "bin_search_tree_", "parent": "/usr/include/c++/7/ext/pb_ds/detail"}, {"filename": "branch_policy", "parent": "/usr/include/c++/7/ext/pb_ds/detail"}, {"filename": "cc_hash_table_map_", "parent": "/usr/include/c++/7/ext/pb_ds/detail"}, {"filename": "cond_dealtor.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail"}, {"filename": "container_base_dispatch.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail"}, {"filename": "debug_map_base.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail"}, {"filename": "eq_fn", "parent": "/usr/include/c++/7/ext/pb_ds/detail"}, {"filename": "gp_hash_table_map_", "parent": "/usr/include/c++/7/ext/pb_ds/detail"}, {"filename": "hash_fn", "parent": "/usr/include/c++/7/ext/pb_ds/detail"}, {"filename": "left_child_next_sibling_heap_", "parent": "/usr/include/c++/7/ext/pb_ds/detail"}, {"filename": "list_update_map_", "parent": "/usr/include/c++/7/ext/pb_ds/detail"}, {"filename": "list_update_policy", "parent": "/usr/include/c++/7/ext/pb_ds/detail"}, {"filename": "ov_tree_map_", "parent": "/usr/include/c++/7/ext/pb_ds/detail"}, {"filename": "pairing_heap_", "parent": "/usr/include/c++/7/ext/pb_ds/detail"}, {"filename": "pat_trie_", "parent": "/usr/include/c++/7/ext/pb_ds/detail"}, {"filename": "priority_queue_base_dispatch.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail"}, {"filename": "rb_tree_map_", "parent": "/usr/include/c++/7/ext/pb_ds/detail"}, {"filename": "rc_binomial_heap_", "parent": "/usr/include/c++/7/ext/pb_ds/detail"}, {"filename": "resize_policy", "parent": "/usr/include/c++/7/ext/pb_ds/detail"}, {"filename": "splay_tree_", "parent": "/usr/include/c++/7/ext/pb_ds/detail"}, {"filename": "standard_policies.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail"}, {"filename": "thin_heap_", "parent": "/usr/include/c++/7/ext/pb_ds/detail"}, {"filename": "tree_policy", "parent": "/usr/include/c++/7/ext/pb_ds/detail"}, {"filename": "tree_trace_base.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail"}, {"filename": "trie_policy", "parent": "/usr/include/c++/7/ext/pb_ds/detail"}, {"filename": "types_traits.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail"}, {"filename": "type_utils.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail"}, {"filename": "unordered_iterator", "parent": "/usr/include/c++/7/ext/pb_ds/detail"}, {"filename": "binary_heap_.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binary_heap_"}, {"filename": "const_iterator.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binary_heap_"}, {"filename": "constructors_destructor_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binary_heap_"}, {"filename": "debug_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binary_heap_"}, {"filename": "entry_cmp.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binary_heap_"}, {"filename": "entry_pred.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binary_heap_"}, {"filename": "erase_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binary_heap_"}, {"filename": "find_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binary_heap_"}, {"filename": "info_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binary_heap_"}, {"filename": "insert_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binary_heap_"}, {"filename": "iterators_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binary_heap_"}, {"filename": "point_const_iterator.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binary_heap_"}, {"filename": "policy_access_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binary_heap_"}, {"filename": "resize_policy.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binary_heap_"}, {"filename": "split_join_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binary_heap_"}, {"filename": "trace_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binary_heap_"}, {"filename": "binomial_heap_.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binomial_heap_"}, {"filename": "constructors_destructor_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binomial_heap_"}, {"filename": "debug_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binomial_heap_"}, {"filename": "binomial_heap_base_.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binomial_heap_base_"}, {"filename": "constructors_destructor_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binomial_heap_base_"}, {"filename": "debug_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binomial_heap_base_"}, {"filename": "erase_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binomial_heap_base_"}, {"filename": "find_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binomial_heap_base_"}, {"filename": "insert_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binomial_heap_base_"}, {"filename": "split_join_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binomial_heap_base_"}, {"filename": "bin_search_tree_.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_"}, {"filename": "constructors_destructor_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_"}, {"filename": "debug_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_"}, {"filename": "erase_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_"}, {"filename": "find_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_"}, {"filename": "info_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_"}, {"filename": "insert_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_"}, {"filename": "iterators_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_"}, {"filename": "node_iterators.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_"}, {"filename": "point_iterators.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_"}, {"filename": "policy_access_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_"}, {"filename": "r_erase_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_"}, {"filename": "rotate_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_"}, {"filename": "split_join_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_"}, {"filename": "traits.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_"}, {"filename": "branch_policy.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/branch_policy"}, {"filename": "null_node_metadata.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/branch_policy"}, {"filename": "traits.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/branch_policy"}, {"filename": "cc_ht_map_.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_"}, {"filename": "cmp_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_"}, {"filename": "cond_key_dtor_entry_dealtor.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_"}, {"filename": "constructor_destructor_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_"}, {"filename": "constructor_destructor_no_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_"}, {"filename": "constructor_destructor_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_"}, {"filename": "debug_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_"}, {"filename": "debug_no_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_"}, {"filename": "debug_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_"}, {"filename": "entry_list_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_"}, {"filename": "erase_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_"}, {"filename": "erase_no_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_"}, {"filename": "erase_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_"}, {"filename": "find_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_"}, {"filename": "find_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_"}, {"filename": "info_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_"}, {"filename": "insert_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_"}, {"filename": "insert_no_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_"}, {"filename": "insert_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_"}, {"filename": "iterators_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_"}, {"filename": "policy_access_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_"}, {"filename": "resize_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_"}, {"filename": "resize_no_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_"}, {"filename": "resize_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_"}, {"filename": "size_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_"}, {"filename": "trace_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_"}, {"filename": "eq_by_less.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/eq_fn"}, {"filename": "hash_eq_fn.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/eq_fn"}, {"filename": "constructor_destructor_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_"}, {"filename": "constructor_destructor_no_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_"}, {"filename": "constructor_destructor_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_"}, {"filename": "debug_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_"}, {"filename": "debug_no_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_"}, {"filename": "debug_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_"}, {"filename": "erase_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_"}, {"filename": "erase_no_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_"}, {"filename": "erase_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_"}, {"filename": "find_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_"}, {"filename": "find_no_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_"}, {"filename": "find_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_"}, {"filename": "gp_ht_map_.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_"}, {"filename": "info_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_"}, {"filename": "insert_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_"}, {"filename": "insert_no_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_"}, {"filename": "insert_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_"}, {"filename": "iterator_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_"}, {"filename": "policy_access_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_"}, {"filename": "resize_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_"}, {"filename": "resize_no_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_"}, {"filename": "resize_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_"}, {"filename": "trace_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_"}, {"filename": "direct_mask_range_hashing_imp.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/hash_fn"}, {"filename": "direct_mod_range_hashing_imp.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/hash_fn"}, {"filename": "linear_probe_fn_imp.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/hash_fn"}, {"filename": "mask_based_range_hashing.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/hash_fn"}, {"filename": "mod_based_range_hashing.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/hash_fn"}, {"filename": "probe_fn_base.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/hash_fn"}, {"filename": "quadratic_probe_fn_imp.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/hash_fn"}, {"filename": "ranged_hash_fn.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/hash_fn"}, {"filename": "ranged_probe_fn.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/hash_fn"}, {"filename": "sample_probe_fn.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/hash_fn"}, {"filename": "sample_ranged_hash_fn.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/hash_fn"}, {"filename": "sample_ranged_probe_fn.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/hash_fn"}, {"filename": "sample_range_hashing.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/hash_fn"}, {"filename": "const_iterator.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_"}, {"filename": "constructors_destructor_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_"}, {"filename": "debug_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_"}, {"filename": "erase_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_"}, {"filename": "info_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_"}, {"filename": "insert_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_"}, {"filename": "iterators_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_"}, {"filename": "left_child_next_sibling_heap_.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_"}, {"filename": "node.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_"}, {"filename": "point_const_iterator.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_"}, {"filename": "policy_access_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_"}, {"filename": "trace_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_"}, {"filename": "constructor_destructor_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/list_update_map_"}, {"filename": "debug_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/list_update_map_"}, {"filename": "entry_metadata_base.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/list_update_map_"}, {"filename": "erase_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/list_update_map_"}, {"filename": "find_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/list_update_map_"}, {"filename": "info_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/list_update_map_"}, {"filename": "insert_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/list_update_map_"}, {"filename": "iterators_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/list_update_map_"}, {"filename": "lu_map_.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/list_update_map_"}, {"filename": "trace_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/list_update_map_"}, {"filename": "lu_counter_metadata.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/list_update_policy"}, {"filename": "sample_update_policy.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/list_update_policy"}, {"filename": "constructors_destructor_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/ov_tree_map_"}, {"filename": "debug_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/ov_tree_map_"}, {"filename": "erase_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/ov_tree_map_"}, {"filename": "info_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/ov_tree_map_"}, {"filename": "insert_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/ov_tree_map_"}, {"filename": "iterators_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/ov_tree_map_"}, {"filename": "node_iterators.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/ov_tree_map_"}, {"filename": "ov_tree_map_.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/ov_tree_map_"}, {"filename": "policy_access_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/ov_tree_map_"}, {"filename": "split_join_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/ov_tree_map_"}, {"filename": "traits.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/ov_tree_map_"}, {"filename": "constructors_destructor_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pairing_heap_"}, {"filename": "debug_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pairing_heap_"}, {"filename": "erase_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pairing_heap_"}, {"filename": "find_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pairing_heap_"}, {"filename": "insert_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pairing_heap_"}, {"filename": "pairing_heap_.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pairing_heap_"}, {"filename": "split_join_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pairing_heap_"}, {"filename": "constructors_destructor_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pat_trie_"}, {"filename": "debug_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pat_trie_"}, {"filename": "erase_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pat_trie_"}, {"filename": "find_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pat_trie_"}, {"filename": "info_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pat_trie_"}, {"filename": "insert_join_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pat_trie_"}, {"filename": "iterators_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pat_trie_"}, {"filename": "pat_trie_base.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pat_trie_"}, {"filename": "pat_trie_.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pat_trie_"}, {"filename": "policy_access_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pat_trie_"}, {"filename": "r_erase_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pat_trie_"}, {"filename": "rotate_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pat_trie_"}, {"filename": "split_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pat_trie_"}, {"filename": "synth_access_traits.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pat_trie_"}, {"filename": "trace_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pat_trie_"}, {"filename": "traits.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pat_trie_"}, {"filename": "update_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pat_trie_"}, {"filename": "constructors_destructor_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/rb_tree_map_"}, {"filename": "debug_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/rb_tree_map_"}, {"filename": "erase_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/rb_tree_map_"}, {"filename": "find_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/rb_tree_map_"}, {"filename": "info_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/rb_tree_map_"}, {"filename": "insert_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/rb_tree_map_"}, {"filename": "node.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/rb_tree_map_"}, {"filename": "rb_tree_.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/rb_tree_map_"}, {"filename": "split_join_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/rb_tree_map_"}, {"filename": "traits.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/rb_tree_map_"}, {"filename": "constructors_destructor_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/rc_binomial_heap_"}, {"filename": "debug_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/rc_binomial_heap_"}, {"filename": "erase_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/rc_binomial_heap_"}, {"filename": "insert_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/rc_binomial_heap_"}, {"filename": "rc_binomial_heap_.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/rc_binomial_heap_"}, {"filename": "rc.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/rc_binomial_heap_"}, {"filename": "split_join_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/rc_binomial_heap_"}, {"filename": "trace_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/rc_binomial_heap_"}, {"filename": "cc_hash_max_collision_check_resize_trigger_imp.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/resize_policy"}, {"filename": "hash_exponential_size_policy_imp.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/resize_policy"}, {"filename": "hash_load_check_resize_trigger_imp.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/resize_policy"}, {"filename": "hash_load_check_resize_trigger_size_base.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/resize_policy"}, {"filename": "hash_prime_size_policy_imp.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/resize_policy"}, {"filename": "hash_standard_resize_policy_imp.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/resize_policy"}, {"filename": "sample_resize_policy.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/resize_policy"}, {"filename": "sample_resize_trigger.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/resize_policy"}, {"filename": "sample_size_policy.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/resize_policy"}, {"filename": "constructors_destructor_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/splay_tree_"}, {"filename": "debug_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/splay_tree_"}, {"filename": "erase_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/splay_tree_"}, {"filename": "find_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/splay_tree_"}, {"filename": "info_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/splay_tree_"}, {"filename": "insert_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/splay_tree_"}, {"filename": "node.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/splay_tree_"}, {"filename": "splay_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/splay_tree_"}, {"filename": "splay_tree_.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/splay_tree_"}, {"filename": "split_join_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/splay_tree_"}, {"filename": "traits.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/splay_tree_"}, {"filename": "constructors_destructor_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/thin_heap_"}, {"filename": "debug_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/thin_heap_"}, {"filename": "erase_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/thin_heap_"}, {"filename": "find_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/thin_heap_"}, {"filename": "insert_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/thin_heap_"}, {"filename": "split_join_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/thin_heap_"}, {"filename": "thin_heap_.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/thin_heap_"}, {"filename": "trace_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/thin_heap_"}, {"filename": "node_metadata_selector.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/tree_policy"}, {"filename": "order_statistics_imp.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/tree_policy"}, {"filename": "sample_tree_node_update.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/tree_policy"}, {"filename": "node_metadata_selector.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/trie_policy"}, {"filename": "order_statistics_imp.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/trie_policy"}, {"filename": "prefix_search_node_update_imp.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/trie_policy"}, {"filename": "sample_trie_access_traits.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/trie_policy"}, {"filename": "sample_trie_node_update.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/trie_policy"}, {"filename": "trie_policy_base.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/trie_policy"}, {"filename": "trie_string_access_traits_imp.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/trie_policy"}, {"filename": "const_iterator.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/unordered_iterator"}, {"filename": "iterator.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/unordered_iterator"}, {"filename": "point_const_iterator.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/unordered_iterator"}, {"filename": "point_iterator.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/unordered_iterator"}, {"filename": "algobase.h", "parent": "/usr/include/c++/7/parallel"}, {"filename": "algo.h", "parent": "/usr/include/c++/7/parallel"}, {"filename": "algorithm", "parent": "/usr/include/c++/7/parallel"}, {"filename": "algorithmfwd.h", "parent": "/usr/include/c++/7/parallel"}, {"filename": "balanced_quicksort.h", "parent": "/usr/include/c++/7/parallel"}, {"filename": "base.h", "parent": "/usr/include/c++/7/parallel"}, {"filename": "basic_iterator.h", "parent": "/usr/include/c++/7/parallel"}, {"filename": "checkers.h", "parent": "/usr/include/c++/7/parallel"}, {"filename": "compatibility.h", "parent": "/usr/include/c++/7/parallel"}, {"filename": "compiletime_settings.h", "parent": "/usr/include/c++/7/parallel"}, {"filename": "equally_split.h", "parent": "/usr/include/c++/7/parallel"}, {"filename": "features.h", "parent": "/usr/include/c++/7/parallel"}, {"filename": "find.h", "parent": "/usr/include/c++/7/parallel"}, {"filename": "find_selectors.h", "parent": "/usr/include/c++/7/parallel"}, {"filename": "for_each.h", "parent": "/usr/include/c++/7/parallel"}, {"filename": "for_each_selectors.h", "parent": "/usr/include/c++/7/parallel"}, {"filename": "iterator.h", "parent": "/usr/include/c++/7/parallel"}, {"filename": "list_partition.h", "parent": "/usr/include/c++/7/parallel"}, {"filename": "losertree.h", "parent": "/usr/include/c++/7/parallel"}, {"filename": "merge.h", "parent": "/usr/include/c++/7/parallel"}, {"filename": "multiseq_selection.h", "parent": "/usr/include/c++/7/parallel"}, {"filename": "multiway_merge.h", "parent": "/usr/include/c++/7/parallel"}, {"filename": "multiway_mergesort.h", "parent": "/usr/include/c++/7/parallel"}, {"filename": "numeric", "parent": "/usr/include/c++/7/parallel"}, {"filename": "numericfwd.h", "parent": "/usr/include/c++/7/parallel"}, {"filename": "omp_loop.h", "parent": "/usr/include/c++/7/parallel"}, {"filename": "omp_loop_static.h", "parent": "/usr/include/c++/7/parallel"}, {"filename": "parallel.h", "parent": "/usr/include/c++/7/parallel"}, {"filename": "par_loop.h", "parent": "/usr/include/c++/7/parallel"}, {"filename": "partial_sum.h", "parent": "/usr/include/c++/7/parallel"}, {"filename": "partition.h", "parent": "/usr/include/c++/7/parallel"}, {"filename": "queue.h", "parent": "/usr/include/c++/7/parallel"}, {"filename": "quicksort.h", "parent": "/usr/include/c++/7/parallel"}, {"filename": "random_number.h", "parent": "/usr/include/c++/7/parallel"}, {"filename": "random_shuffle.h", "parent": "/usr/include/c++/7/parallel"}, {"filename": "search.h", "parent": "/usr/include/c++/7/parallel"}, {"filename": "set_operations.h", "parent": "/usr/include/c++/7/parallel"}, {"filename": "settings.h", "parent": "/usr/include/c++/7/parallel"}, {"filename": "sort.h", "parent": "/usr/include/c++/7/parallel"}, {"filename": "tags.h", "parent": "/usr/include/c++/7/parallel"}, {"filename": "types.h", "parent": "/usr/include/c++/7/parallel"}, {"filename": "unique_copy.h", "parent": "/usr/include/c++/7/parallel"}, {"filename": "workstealing.h", "parent": "/usr/include/c++/7/parallel"}, {"filename": "array", "parent": "/usr/include/c++/7/profile"}, {"filename": "base.h", "parent": "/usr/include/c++/7/profile"}, {"filename": "bitset", "parent": "/usr/include/c++/7/profile"}, {"filename": "deque", "parent": "/usr/include/c++/7/profile"}, {"filename": "forward_list", "parent": "/usr/include/c++/7/profile"}, {"filename": "impl", "parent": "/usr/include/c++/7/profile"}, {"filename": "iterator_tracker.h", "parent": "/usr/include/c++/7/profile"}, {"filename": "list", "parent": "/usr/include/c++/7/profile"}, {"filename": "map", "parent": "/usr/include/c++/7/profile"}, {"filename": "map.h", "parent": "/usr/include/c++/7/profile"}, {"filename": "multimap.h", "parent": "/usr/include/c++/7/profile"}, {"filename": "multiset.h", "parent": "/usr/include/c++/7/profile"}, {"filename": "ordered_base.h", "parent": "/usr/include/c++/7/profile"}, {"filename": "set", "parent": "/usr/include/c++/7/profile"}, {"filename": "set.h", "parent": "/usr/include/c++/7/profile"}, {"filename": "unordered_base.h", "parent": "/usr/include/c++/7/profile"}, {"filename": "unordered_map", "parent": "/usr/include/c++/7/profile"}, {"filename": "unordered_set", "parent": "/usr/include/c++/7/profile"}, {"filename": "vector", "parent": "/usr/include/c++/7/profile"}, {"filename": "profiler_algos.h", "parent": "/usr/include/c++/7/profile/impl"}, {"filename": "profiler_container_size.h", "parent": "/usr/include/c++/7/profile/impl"}, {"filename": "profiler.h", "parent": "/usr/include/c++/7/profile/impl"}, {"filename": "profiler_hash_func.h", "parent": "/usr/include/c++/7/profile/impl"}, {"filename": "profiler_hashtable_size.h", "parent": "/usr/include/c++/7/profile/impl"}, {"filename": "profiler_list_to_slist.h", "parent": "/usr/include/c++/7/profile/impl"}, {"filename": "profiler_list_to_vector.h", "parent": "/usr/include/c++/7/profile/impl"}, {"filename": "profiler_map_to_unordered_map.h", "parent": "/usr/include/c++/7/profile/impl"}, {"filename": "profiler_node.h", "parent": "/usr/include/c++/7/profile/impl"}, {"filename": "profiler_state.h", "parent": "/usr/include/c++/7/profile/impl"}, {"filename": "profiler_trace.h", "parent": "/usr/include/c++/7/profile/impl"}, {"filename": "profiler_vector_size.h", "parent": "/usr/include/c++/7/profile/impl"}, {"filename": "profiler_vector_to_list.h", "parent": "/usr/include/c++/7/profile/impl"}, {"filename": "array", "parent": "/usr/include/c++/7/tr1"}, {"filename": "bessel_function.tcc", "parent": "/usr/include/c++/7/tr1"}, {"filename": "beta_function.tcc", "parent": "/usr/include/c++/7/tr1"}, {"filename": "ccomplex", "parent": "/usr/include/c++/7/tr1"}, {"filename": "cctype", "parent": "/usr/include/c++/7/tr1"}, {"filename": "cfenv", "parent": "/usr/include/c++/7/tr1"}, {"filename": "cfloat", "parent": "/usr/include/c++/7/tr1"}, {"filename": "cinttypes", "parent": "/usr/include/c++/7/tr1"}, {"filename": "climits", "parent": "/usr/include/c++/7/tr1"}, {"filename": "cmath", "parent": "/usr/include/c++/7/tr1"}, {"filename": "complex", "parent": "/usr/include/c++/7/tr1"}, {"filename": "complex.h", "parent": "/usr/include/c++/7/tr1"}, {"filename": "cstdarg", "parent": "/usr/include/c++/7/tr1"}, {"filename": "cstdbool", "parent": "/usr/include/c++/7/tr1"}, {"filename": "cstdint", "parent": "/usr/include/c++/7/tr1"}, {"filename": "cstdio", "parent": "/usr/include/c++/7/tr1"}, {"filename": "cstdlib", "parent": "/usr/include/c++/7/tr1"}, {"filename": "ctgmath", "parent": "/usr/include/c++/7/tr1"}, {"filename": "ctime", "parent": "/usr/include/c++/7/tr1"}, {"filename": "ctype.h", "parent": "/usr/include/c++/7/tr1"}, {"filename": "cwchar", "parent": "/usr/include/c++/7/tr1"}, {"filename": "cwctype", "parent": "/usr/include/c++/7/tr1"}, {"filename": "ell_integral.tcc", "parent": "/usr/include/c++/7/tr1"}, {"filename": "exp_integral.tcc", "parent": "/usr/include/c++/7/tr1"}, {"filename": "fenv.h", "parent": "/usr/include/c++/7/tr1"}, {"filename": "float.h", "parent": "/usr/include/c++/7/tr1"}, {"filename": "functional", "parent": "/usr/include/c++/7/tr1"}, {"filename": "functional_hash.h", "parent": "/usr/include/c++/7/tr1"}, {"filename": "gamma.tcc", "parent": "/usr/include/c++/7/tr1"}, {"filename": "hashtable.h", "parent": "/usr/include/c++/7/tr1"}, {"filename": "hashtable_policy.h", "parent": "/usr/include/c++/7/tr1"}, {"filename": "hypergeometric.tcc", "parent": "/usr/include/c++/7/tr1"}, {"filename": "inttypes.h", "parent": "/usr/include/c++/7/tr1"}, {"filename": "legendre_function.tcc", "parent": "/usr/include/c++/7/tr1"}, {"filename": "limits.h", "parent": "/usr/include/c++/7/tr1"}, {"filename": "math.h", "parent": "/usr/include/c++/7/tr1"}, {"filename": "memory", "parent": "/usr/include/c++/7/tr1"}, {"filename": "modified_bessel_func.tcc", "parent": "/usr/include/c++/7/tr1"}, {"filename": "poly_hermite.tcc", "parent": "/usr/include/c++/7/tr1"}, {"filename": "poly_laguerre.tcc", "parent": "/usr/include/c++/7/tr1"}, {"filename": "random", "parent": "/usr/include/c++/7/tr1"}, {"filename": "random.h", "parent": "/usr/include/c++/7/tr1"}, {"filename": "random.tcc", "parent": "/usr/include/c++/7/tr1"}, {"filename": "regex", "parent": "/usr/include/c++/7/tr1"}, {"filename": "riemann_zeta.tcc", "parent": "/usr/include/c++/7/tr1"}, {"filename": "shared_ptr.h", "parent": "/usr/include/c++/7/tr1"}, {"filename": "special_function_util.h", "parent": "/usr/include/c++/7/tr1"}, {"filename": "stdarg.h", "parent": "/usr/include/c++/7/tr1"}, {"filename": "stdbool.h", "parent": "/usr/include/c++/7/tr1"}, {"filename": "stdint.h", "parent": "/usr/include/c++/7/tr1"}, {"filename": "stdio.h", "parent": "/usr/include/c++/7/tr1"}, {"filename": "stdlib.h", "parent": "/usr/include/c++/7/tr1"}, {"filename": "tgmath.h", "parent": "/usr/include/c++/7/tr1"}, {"filename": "tuple", "parent": "/usr/include/c++/7/tr1"}, {"filename": "type_traits", "parent": "/usr/include/c++/7/tr1"}, {"filename": "unordered_map", "parent": "/usr/include/c++/7/tr1"}, {"filename": "unordered_map.h", "parent": "/usr/include/c++/7/tr1"}, {"filename": "unordered_set", "parent": "/usr/include/c++/7/tr1"}, {"filename": "unordered_set.h", "parent": "/usr/include/c++/7/tr1"}, {"filename": "utility", "parent": "/usr/include/c++/7/tr1"}, {"filename": "wchar.h", "parent": "/usr/include/c++/7/tr1"}, {"filename": "wctype.h", "parent": "/usr/include/c++/7/tr1"}, {"filename": "bool_set", "parent": "/usr/include/c++/7/tr2"}, {"filename": "bool_set.tcc", "parent": "/usr/include/c++/7/tr2"}, {"filename": "dynamic_bitset", "parent": "/usr/include/c++/7/tr2"}, {"filename": "dynamic_bitset.tcc", "parent": "/usr/include/c++/7/tr2"}, {"filename": "ratio", "parent": "/usr/include/c++/7/tr2"}, {"filename": "type_traits", "parent": "/usr/include/c++/7/tr2"}, {"filename": "amdgpu_drm.h", "parent": "/usr/include/drm"}, {"filename": "armada_drm.h", "parent": "/usr/include/drm"}, {"filename": "drm_fourcc.h", "parent": "/usr/include/drm"}, {"filename": "drm.h", "parent": "/usr/include/drm"}, {"filename": "drm_mode.h", "parent": "/usr/include/drm"}, {"filename": "drm_sarea.h", "parent": "/usr/include/drm"}, {"filename": "etnaviv_drm.h", "parent": "/usr/include/drm"}, {"filename": "exynos_drm.h", "parent": "/usr/include/drm"}, {"filename": "i810_drm.h", "parent": "/usr/include/drm"}, {"filename": "i915_drm.h", "parent": "/usr/include/drm"}, {"filename": "mga_drm.h", "parent": "/usr/include/drm"}, {"filename": "msm_drm.h", "parent": "/usr/include/drm"}, {"filename": "nouveau_drm.h", "parent": "/usr/include/drm"}, {"filename": "omap_drm.h", "parent": "/usr/include/drm"}, {"filename": "qxl_drm.h", "parent": "/usr/include/drm"}, {"filename": "r128_drm.h", "parent": "/usr/include/drm"}, {"filename": "radeon_drm.h", "parent": "/usr/include/drm"}, {"filename": "savage_drm.h", "parent": "/usr/include/drm"}, {"filename": "sis_drm.h", "parent": "/usr/include/drm"}, {"filename": "tegra_drm.h", "parent": "/usr/include/drm"}, {"filename": "vc4_drm.h", "parent": "/usr/include/drm"}, {"filename": "vgem_drm.h", "parent": "/usr/include/drm"}, {"filename": "via_drm.h", "parent": "/usr/include/drm"}, {"filename": "virtgpu_drm.h", "parent": "/usr/include/drm"}, {"filename": "vmwgfx_drm.h", "parent": "/usr/include/drm"}, {"filename": "acct.h", "parent": "/usr/include/linux"}, {"filename": "adb.h", "parent": "/usr/include/linux"}, {"filename": "adfs_fs.h", "parent": "/usr/include/linux"}, {"filename": "affs_hardblocks.h", "parent": "/usr/include/linux"}, {"filename": "agpgart.h", "parent": "/usr/include/linux"}, {"filename": "aio_abi.h", "parent": "/usr/include/linux"}, {"filename": "am437x-vpfe.h", "parent": "/usr/include/linux"}, {"filename": "android", "parent": "/usr/include/linux"}, {"filename": "a.out.h", "parent": "/usr/include/linux"}, {"filename": "apm_bios.h", "parent": "/usr/include/linux"}, {"filename": "arcfb.h", "parent": "/usr/include/linux"}, {"filename": "arm_sdei.h", "parent": "/usr/include/linux"}, {"filename": "aspeed-lpc-ctrl.h", "parent": "/usr/include/linux"}, {"filename": "atalk.h", "parent": "/usr/include/linux"}, {"filename": "atmapi.h", "parent": "/usr/include/linux"}, {"filename": "atmarp.h", "parent": "/usr/include/linux"}, {"filename": "atmbr2684.h", "parent": "/usr/include/linux"}, {"filename": "atmclip.h", "parent": "/usr/include/linux"}, {"filename": "atmdev.h", "parent": "/usr/include/linux"}, {"filename": "atm_eni.h", "parent": "/usr/include/linux"}, {"filename": "atm.h", "parent": "/usr/include/linux"}, {"filename": "atm_he.h", "parent": "/usr/include/linux"}, {"filename": "atm_idt77105.h", "parent": "/usr/include/linux"}, {"filename": "atmioc.h", "parent": "/usr/include/linux"}, {"filename": "atmlec.h", "parent": "/usr/include/linux"}, {"filename": "atmmpc.h", "parent": "/usr/include/linux"}, {"filename": "atm_nicstar.h", "parent": "/usr/include/linux"}, {"filename": "atmppp.h", "parent": "/usr/include/linux"}, {"filename": "atmsap.h", "parent": "/usr/include/linux"}, {"filename": "atmsvc.h", "parent": "/usr/include/linux"}, {"filename": "atm_tcp.h", "parent": "/usr/include/linux"}, {"filename": "atm_zatm.h", "parent": "/usr/include/linux"}, {"filename": "audit.h", "parent": "/usr/include/linux"}, {"filename": "aufs_type.h", "parent": "/usr/include/linux"}, {"filename": "auto_dev-ioctl.h", "parent": "/usr/include/linux"}, {"filename": "auto_fs4.h", "parent": "/usr/include/linux"}, {"filename": "auto_fs.h", "parent": "/usr/include/linux"}, {"filename": "auxvec.h", "parent": "/usr/include/linux"}, {"filename": "ax25.h", "parent": "/usr/include/linux"}, {"filename": "b1lli.h", "parent": "/usr/include/linux"}, {"filename": "batman_adv.h", "parent": "/usr/include/linux"}, {"filename": "baycom.h", "parent": "/usr/include/linux"}, {"filename": "bcache.h", "parent": "/usr/include/linux"}, {"filename": "bcm933xx_hcs.h", "parent": "/usr/include/linux"}, {"filename": "bfs_fs.h", "parent": "/usr/include/linux"}, {"filename": "binfmts.h", "parent": "/usr/include/linux"}, {"filename": "blkpg.h", "parent": "/usr/include/linux"}, {"filename": "blktrace_api.h", "parent": "/usr/include/linux"}, {"filename": "blkzoned.h", "parent": "/usr/include/linux"}, {"filename": "bpf_common.h", "parent": "/usr/include/linux"}, {"filename": "bpf.h", "parent": "/usr/include/linux"}, {"filename": "bpf_perf_event.h", "parent": "/usr/include/linux"}, {"filename": "bpqether.h", "parent": "/usr/include/linux"}, {"filename": "bsg.h", "parent": "/usr/include/linux"}, {"filename": "bt-bmc.h", "parent": "/usr/include/linux"}, {"filename": "btrfs.h", "parent": "/usr/include/linux"}, {"filename": "btrfs_tree.h", "parent": "/usr/include/linux"}, {"filename": "byteorder", "parent": "/usr/include/linux"}, {"filename": "caif", "parent": "/usr/include/linux"}, {"filename": "can", "parent": "/usr/include/linux"}, {"filename": "can.h", "parent": "/usr/include/linux"}, {"filename": "capability.h", "parent": "/usr/include/linux"}, {"filename": "capi.h", "parent": "/usr/include/linux"}, {"filename": "cciss_defs.h", "parent": "/usr/include/linux"}, {"filename": "cciss_ioctl.h", "parent": "/usr/include/linux"}, {"filename": "cdrom.h", "parent": "/usr/include/linux"}, {"filename": "cec-funcs.h", "parent": "/usr/include/linux"}, {"filename": "cec.h", "parent": "/usr/include/linux"}, {"filename": "cgroupstats.h", "parent": "/usr/include/linux"}, {"filename": "chio.h", "parent": "/usr/include/linux"}, {"filename": "cifs", "parent": "/usr/include/linux"}, {"filename": "cm4000_cs.h", "parent": "/usr/include/linux"}, {"filename": "cn_proc.h", "parent": "/usr/include/linux"}, {"filename": "coda.h", "parent": "/usr/include/linux"}, {"filename": "coda_psdev.h", "parent": "/usr/include/linux"}, {"filename": "coff.h", "parent": "/usr/include/linux"}, {"filename": "connector.h", "parent": "/usr/include/linux"}, {"filename": "const.h", "parent": "/usr/include/linux"}, {"filename": "coresight-stm.h", "parent": "/usr/include/linux"}, {"filename": "cramfs_fs.h", "parent": "/usr/include/linux"}, {"filename": "cryptouser.h", "parent": "/usr/include/linux"}, {"filename": "cuda.h", "parent": "/usr/include/linux"}, {"filename": "cyclades.h", "parent": "/usr/include/linux"}, {"filename": "cycx_cfm.h", "parent": "/usr/include/linux"}, {"filename": "dcbnl.h", "parent": "/usr/include/linux"}, {"filename": "dccp.h", "parent": "/usr/include/linux"}, {"filename": "devlink.h", "parent": "/usr/include/linux"}, {"filename": "dlmconstants.h", "parent": "/usr/include/linux"}, {"filename": "dlm_device.h", "parent": "/usr/include/linux"}, {"filename": "dlm.h", "parent": "/usr/include/linux"}, {"filename": "dlm_netlink.h", "parent": "/usr/include/linux"}, {"filename": "dlm_plock.h", "parent": "/usr/include/linux"}, {"filename": "dma-buf.h", "parent": "/usr/include/linux"}, {"filename": "dm-ioctl.h", "parent": "/usr/include/linux"}, {"filename": "dm-log-userspace.h", "parent": "/usr/include/linux"}, {"filename": "dn.h", "parent": "/usr/include/linux"}, {"filename": "dqblk_xfs.h", "parent": "/usr/include/linux"}, {"filename": "dvb", "parent": "/usr/include/linux"}, {"filename": "edd.h", "parent": "/usr/include/linux"}, {"filename": "efs_fs_sb.h", "parent": "/usr/include/linux"}, {"filename": "elfcore.h", "parent": "/usr/include/linux"}, {"filename": "elf-em.h", "parent": "/usr/include/linux"}, {"filename": "elf-fdpic.h", "parent": "/usr/include/linux"}, {"filename": "elf.h", "parent": "/usr/include/linux"}, {"filename": "errno.h", "parent": "/usr/include/linux"}, {"filename": "errqueue.h", "parent": "/usr/include/linux"}, {"filename": "ethtool.h", "parent": "/usr/include/linux"}, {"filename": "eventpoll.h", "parent": "/usr/include/linux"}, {"filename": "fadvise.h", "parent": "/usr/include/linux"}, {"filename": "falloc.h", "parent": "/usr/include/linux"}, {"filename": "fanotify.h", "parent": "/usr/include/linux"}, {"filename": "fb.h", "parent": "/usr/include/linux"}, {"filename": "fcntl.h", "parent": "/usr/include/linux"}, {"filename": "fd.h", "parent": "/usr/include/linux"}, {"filename": "fdreg.h", "parent": "/usr/include/linux"}, {"filename": "fib_rules.h", "parent": "/usr/include/linux"}, {"filename": "fiemap.h", "parent": "/usr/include/linux"}, {"filename": "filter.h", "parent": "/usr/include/linux"}, {"filename": "firewire-cdev.h", "parent": "/usr/include/linux"}, {"filename": "firewire-constants.h", "parent": "/usr/include/linux"}, {"filename": "flat.h", "parent": "/usr/include/linux"}, {"filename": "fou.h", "parent": "/usr/include/linux"}, {"filename": "fs.h", "parent": "/usr/include/linux"}, {"filename": "fsl_hypervisor.h", "parent": "/usr/include/linux"}, {"filename": "fsmap.h", "parent": "/usr/include/linux"}, {"filename": "fuse.h", "parent": "/usr/include/linux"}, {"filename": "futex.h", "parent": "/usr/include/linux"}, {"filename": "gameport.h", "parent": "/usr/include/linux"}, {"filename": "genetlink.h", "parent": "/usr/include/linux"}, {"filename": "gen_stats.h", "parent": "/usr/include/linux"}, {"filename": "genwqe", "parent": "/usr/include/linux"}, {"filename": "gfs2_ondisk.h", "parent": "/usr/include/linux"}, {"filename": "gigaset_dev.h", "parent": "/usr/include/linux"}, {"filename": "gpio.h", "parent": "/usr/include/linux"}, {"filename": "gsmmux.h", "parent": "/usr/include/linux"}, {"filename": "gtp.h", "parent": "/usr/include/linux"}, {"filename": "hash_info.h", "parent": "/usr/include/linux"}, {"filename": "hdlc", "parent": "/usr/include/linux"}, {"filename": "hdlcdrv.h", "parent": "/usr/include/linux"}, {"filename": "hdlc.h", "parent": "/usr/include/linux"}, {"filename": "hdreg.h", "parent": "/usr/include/linux"}, {"filename": "hiddev.h", "parent": "/usr/include/linux"}, {"filename": "hid.h", "parent": "/usr/include/linux"}, {"filename": "hidraw.h", "parent": "/usr/include/linux"}, {"filename": "hpet.h", "parent": "/usr/include/linux"}, {"filename": "hsi", "parent": "/usr/include/linux"}, {"filename": "hsr_netlink.h", "parent": "/usr/include/linux"}, {"filename": "hw_breakpoint.h", "parent": "/usr/include/linux"}, {"filename": "hyperv.h", "parent": "/usr/include/linux"}, {"filename": "hysdn_if.h", "parent": "/usr/include/linux"}, {"filename": "i2c-dev.h", "parent": "/usr/include/linux"}, {"filename": "i2c.h", "parent": "/usr/include/linux"}, {"filename": "i2o-dev.h", "parent": "/usr/include/linux"}, {"filename": "i8k.h", "parent": "/usr/include/linux"}, {"filename": "icmp.h", "parent": "/usr/include/linux"}, {"filename": "icmpv6.h", "parent": "/usr/include/linux"}, {"filename": "if_addr.h", "parent": "/usr/include/linux"}, {"filename": "if_addrlabel.h", "parent": "/usr/include/linux"}, {"filename": "if_alg.h", "parent": "/usr/include/linux"}, {"filename": "if_arcnet.h", "parent": "/usr/include/linux"}, {"filename": "if_arp.h", "parent": "/usr/include/linux"}, {"filename": "if_bonding.h", "parent": "/usr/include/linux"}, {"filename": "if_bridge.h", "parent": "/usr/include/linux"}, {"filename": "if_cablemodem.h", "parent": "/usr/include/linux"}, {"filename": "ife.h", "parent": "/usr/include/linux"}, {"filename": "if_eql.h", "parent": "/usr/include/linux"}, {"filename": "if_ether.h", "parent": "/usr/include/linux"}, {"filename": "if_fc.h", "parent": "/usr/include/linux"}, {"filename": "if_fddi.h", "parent": "/usr/include/linux"}, {"filename": "if_frad.h", "parent": "/usr/include/linux"}, {"filename": "if.h", "parent": "/usr/include/linux"}, {"filename": "if_hippi.h", "parent": "/usr/include/linux"}, {"filename": "if_infiniband.h", "parent": "/usr/include/linux"}, {"filename": "if_link.h", "parent": "/usr/include/linux"}, {"filename": "if_ltalk.h", "parent": "/usr/include/linux"}, {"filename": "if_macsec.h", "parent": "/usr/include/linux"}, {"filename": "if_packet.h", "parent": "/usr/include/linux"}, {"filename": "if_phonet.h", "parent": "/usr/include/linux"}, {"filename": "if_plip.h", "parent": "/usr/include/linux"}, {"filename": "if_ppp.h", "parent": "/usr/include/linux"}, {"filename": "if_pppol2tp.h", "parent": "/usr/include/linux"}, {"filename": "if_pppox.h", "parent": "/usr/include/linux"}, {"filename": "if_slip.h", "parent": "/usr/include/linux"}, {"filename": "if_team.h", "parent": "/usr/include/linux"}, {"filename": "if_tun.h", "parent": "/usr/include/linux"}, {"filename": "if_tunnel.h", "parent": "/usr/include/linux"}, {"filename": "if_vlan.h", "parent": "/usr/include/linux"}, {"filename": "if_x25.h", "parent": "/usr/include/linux"}, {"filename": "igmp.h", "parent": "/usr/include/linux"}, {"filename": "iio", "parent": "/usr/include/linux"}, {"filename": "ila.h", "parent": "/usr/include/linux"}, {"filename": "in6.h", "parent": "/usr/include/linux"}, {"filename": "inet_diag.h", "parent": "/usr/include/linux"}, {"filename": "in.h", "parent": "/usr/include/linux"}, {"filename": "inotify.h", "parent": "/usr/include/linux"}, {"filename": "input-event-codes.h", "parent": "/usr/include/linux"}, {"filename": "input.h", "parent": "/usr/include/linux"}, {"filename": "in_route.h", "parent": "/usr/include/linux"}, {"filename": "ioctl.h", "parent": "/usr/include/linux"}, {"filename": "ip6_tunnel.h", "parent": "/usr/include/linux"}, {"filename": "ipc.h", "parent": "/usr/include/linux"}, {"filename": "ip.h", "parent": "/usr/include/linux"}, {"filename": "ipmi.h", "parent": "/usr/include/linux"}, {"filename": "ipmi_msgdefs.h", "parent": "/usr/include/linux"}, {"filename": "ipsec.h", "parent": "/usr/include/linux"}, {"filename": "ipv6.h", "parent": "/usr/include/linux"}, {"filename": "ipv6_route.h", "parent": "/usr/include/linux"}, {"filename": "ip_vs.h", "parent": "/usr/include/linux"}, {"filename": "ipx.h", "parent": "/usr/include/linux"}, {"filename": "irda.h", "parent": "/usr/include/linux"}, {"filename": "irqnr.h", "parent": "/usr/include/linux"}, {"filename": "isdn", "parent": "/usr/include/linux"}, {"filename": "isdn_divertif.h", "parent": "/usr/include/linux"}, {"filename": "isdn.h", "parent": "/usr/include/linux"}, {"filename": "isdnif.h", "parent": "/usr/include/linux"}, {"filename": "isdn_ppp.h", "parent": "/usr/include/linux"}, {"filename": "iso_fs.h", "parent": "/usr/include/linux"}, {"filename": "ivtvfb.h", "parent": "/usr/include/linux"}, {"filename": "ivtv.h", "parent": "/usr/include/linux"}, {"filename": "ixjuser.h", "parent": "/usr/include/linux"}, {"filename": "jffs2.h", "parent": "/usr/include/linux"}, {"filename": "joystick.h", "parent": "/usr/include/linux"}, {"filename": "kcm.h", "parent": "/usr/include/linux"}, {"filename": "kcmp.h", "parent": "/usr/include/linux"}, {"filename": "kcov.h", "parent": "/usr/include/linux"}, {"filename": "kdev_t.h", "parent": "/usr/include/linux"}, {"filename": "kd.h", "parent": "/usr/include/linux"}, {"filename": "kernelcapi.h", "parent": "/usr/include/linux"}, {"filename": "kernel.h", "parent": "/usr/include/linux"}, {"filename": "kernel-page-flags.h", "parent": "/usr/include/linux"}, {"filename": "kexec.h", "parent": "/usr/include/linux"}, {"filename": "keyboard.h", "parent": "/usr/include/linux"}, {"filename": "keyctl.h", "parent": "/usr/include/linux"}, {"filename": "kfd_ioctl.h", "parent": "/usr/include/linux"}, {"filename": "kvm.h", "parent": "/usr/include/linux"}, {"filename": "kvm_para.h", "parent": "/usr/include/linux"}, {"filename": "l2tp.h", "parent": "/usr/include/linux"}, {"filename": "libc-compat.h", "parent": "/usr/include/linux"}, {"filename": "lightnvm.h", "parent": "/usr/include/linux"}, {"filename": "limits.h", "parent": "/usr/include/linux"}, {"filename": "lirc.h", "parent": "/usr/include/linux"}, {"filename": "llc.h", "parent": "/usr/include/linux"}, {"filename": "loop.h", "parent": "/usr/include/linux"}, {"filename": "lp.h", "parent": "/usr/include/linux"}, {"filename": "lwtunnel.h", "parent": "/usr/include/linux"}, {"filename": "magic.h", "parent": "/usr/include/linux"}, {"filename": "major.h", "parent": "/usr/include/linux"}, {"filename": "map_to_7segment.h", "parent": "/usr/include/linux"}, {"filename": "matroxfb.h", "parent": "/usr/include/linux"}, {"filename": "max2175.h", "parent": "/usr/include/linux"}, {"filename": "mdio.h", "parent": "/usr/include/linux"}, {"filename": "media-bus-format.h", "parent": "/usr/include/linux"}, {"filename": "media.h", "parent": "/usr/include/linux"}, {"filename": "mei.h", "parent": "/usr/include/linux"}, {"filename": "membarrier.h", "parent": "/usr/include/linux"}, {"filename": "memfd.h", "parent": "/usr/include/linux"}, {"filename": "mempolicy.h", "parent": "/usr/include/linux"}, {"filename": "meye.h", "parent": "/usr/include/linux"}, {"filename": "mic_common.h", "parent": "/usr/include/linux"}, {"filename": "mic_ioctl.h", "parent": "/usr/include/linux"}, {"filename": "mii.h", "parent": "/usr/include/linux"}, {"filename": "minix_fs.h", "parent": "/usr/include/linux"}, {"filename": "mman.h", "parent": "/usr/include/linux"}, {"filename": "mmc", "parent": "/usr/include/linux"}, {"filename": "mmtimer.h", "parent": "/usr/include/linux"}, {"filename": "module.h", "parent": "/usr/include/linux"}, {"filename": "mpls.h", "parent": "/usr/include/linux"}, {"filename": "mpls_iptunnel.h", "parent": "/usr/include/linux"}, {"filename": "mqueue.h", "parent": "/usr/include/linux"}, {"filename": "mroute6.h", "parent": "/usr/include/linux"}, {"filename": "mroute.h", "parent": "/usr/include/linux"}, {"filename": "msdos_fs.h", "parent": "/usr/include/linux"}, {"filename": "msg.h", "parent": "/usr/include/linux"}, {"filename": "mtio.h", "parent": "/usr/include/linux"}, {"filename": "nbd.h", "parent": "/usr/include/linux"}, {"filename": "nbd-netlink.h", "parent": "/usr/include/linux"}, {"filename": "ncp_fs.h", "parent": "/usr/include/linux"}, {"filename": "ncp.h", "parent": "/usr/include/linux"}, {"filename": "ncp_mount.h", "parent": "/usr/include/linux"}, {"filename": "ncp_no.h", "parent": "/usr/include/linux"}, {"filename": "ndctl.h", "parent": "/usr/include/linux"}, {"filename": "neighbour.h", "parent": "/usr/include/linux"}, {"filename": "netconf.h", "parent": "/usr/include/linux"}, {"filename": "netdevice.h", "parent": "/usr/include/linux"}, {"filename": "net_dropmon.h", "parent": "/usr/include/linux"}, {"filename": "netfilter", "parent": "/usr/include/linux"}, {"filename": "netfilter_arp", "parent": "/usr/include/linux"}, {"filename": "netfilter_arp.h", "parent": "/usr/include/linux"}, {"filename": "netfilter_bridge", "parent": "/usr/include/linux"}, {"filename": "netfilter_bridge.h", "parent": "/usr/include/linux"}, {"filename": "netfilter_decnet.h", "parent": "/usr/include/linux"}, {"filename": "netfilter.h", "parent": "/usr/include/linux"}, {"filename": "netfilter_ipv4", "parent": "/usr/include/linux"}, {"filename": "netfilter_ipv4.h", "parent": "/usr/include/linux"}, {"filename": "netfilter_ipv6", "parent": "/usr/include/linux"}, {"filename": "netfilter_ipv6.h", "parent": "/usr/include/linux"}, {"filename": "net.h", "parent": "/usr/include/linux"}, {"filename": "netlink_diag.h", "parent": "/usr/include/linux"}, {"filename": "netlink.h", "parent": "/usr/include/linux"}, {"filename": "net_namespace.h", "parent": "/usr/include/linux"}, {"filename": "netrom.h", "parent": "/usr/include/linux"}, {"filename": "net_tstamp.h", "parent": "/usr/include/linux"}, {"filename": "nfc.h", "parent": "/usr/include/linux"}, {"filename": "nfs2.h", "parent": "/usr/include/linux"}, {"filename": "nfs3.h", "parent": "/usr/include/linux"}, {"filename": "nfs4.h", "parent": "/usr/include/linux"}, {"filename": "nfs4_mount.h", "parent": "/usr/include/linux"}, {"filename": "nfsacl.h", "parent": "/usr/include/linux"}, {"filename": "nfsd", "parent": "/usr/include/linux"}, {"filename": "nfs_fs.h", "parent": "/usr/include/linux"}, {"filename": "nfs.h", "parent": "/usr/include/linux"}, {"filename": "nfs_idmap.h", "parent": "/usr/include/linux"}, {"filename": "nfs_mount.h", "parent": "/usr/include/linux"}, {"filename": "nilfs2_api.h", "parent": "/usr/include/linux"}, {"filename": "nilfs2_ondisk.h", "parent": "/usr/include/linux"}, {"filename": "nl80211.h", "parent": "/usr/include/linux"}, {"filename": "n_r3964.h", "parent": "/usr/include/linux"}, {"filename": "nsfs.h", "parent": "/usr/include/linux"}, {"filename": "nubus.h", "parent": "/usr/include/linux"}, {"filename": "nvme_ioctl.h", "parent": "/usr/include/linux"}, {"filename": "nvram.h", "parent": "/usr/include/linux"}, {"filename": "omap3isp.h", "parent": "/usr/include/linux"}, {"filename": "omapfb.h", "parent": "/usr/include/linux"}, {"filename": "oom.h", "parent": "/usr/include/linux"}, {"filename": "openvswitch.h", "parent": "/usr/include/linux"}, {"filename": "packet_diag.h", "parent": "/usr/include/linux"}, {"filename": "param.h", "parent": "/usr/include/linux"}, {"filename": "parport.h", "parent": "/usr/include/linux"}, {"filename": "patchkey.h", "parent": "/usr/include/linux"}, {"filename": "pci.h", "parent": "/usr/include/linux"}, {"filename": "pci_regs.h", "parent": "/usr/include/linux"}, {"filename": "pcitest.h", "parent": "/usr/include/linux"}, {"filename": "perf_event.h", "parent": "/usr/include/linux"}, {"filename": "personality.h", "parent": "/usr/include/linux"}, {"filename": "pfkeyv2.h", "parent": "/usr/include/linux"}, {"filename": "pg.h", "parent": "/usr/include/linux"}, {"filename": "phantom.h", "parent": "/usr/include/linux"}, {"filename": "phonet.h", "parent": "/usr/include/linux"}, {"filename": "pktcdvd.h", "parent": "/usr/include/linux"}, {"filename": "pkt_cls.h", "parent": "/usr/include/linux"}, {"filename": "pkt_sched.h", "parent": "/usr/include/linux"}, {"filename": "pmu.h", "parent": "/usr/include/linux"}, {"filename": "poll.h", "parent": "/usr/include/linux"}, {"filename": "posix_acl.h", "parent": "/usr/include/linux"}, {"filename": "posix_acl_xattr.h", "parent": "/usr/include/linux"}, {"filename": "posix_types.h", "parent": "/usr/include/linux"}, {"filename": "ppdev.h", "parent": "/usr/include/linux"}, {"filename": "ppp-comp.h", "parent": "/usr/include/linux"}, {"filename": "ppp_defs.h", "parent": "/usr/include/linux"}, {"filename": "ppp-ioctl.h", "parent": "/usr/include/linux"}, {"filename": "pps.h", "parent": "/usr/include/linux"}, {"filename": "prctl.h", "parent": "/usr/include/linux"}, {"filename": "pr.h", "parent": "/usr/include/linux"}, {"filename": "psample.h", "parent": "/usr/include/linux"}, {"filename": "psci.h", "parent": "/usr/include/linux"}, {"filename": "ptp_clock.h", "parent": "/usr/include/linux"}, {"filename": "ptrace.h", "parent": "/usr/include/linux"}, {"filename": "qnx4_fs.h", "parent": "/usr/include/linux"}, {"filename": "qnxtypes.h", "parent": "/usr/include/linux"}, {"filename": "qrtr.h", "parent": "/usr/include/linux"}, {"filename": "quota.h", "parent": "/usr/include/linux"}, {"filename": "radeonfb.h", "parent": "/usr/include/linux"}, {"filename": "raid", "parent": "/usr/include/linux"}, {"filename": "random.h", "parent": "/usr/include/linux"}, {"filename": "raw.h", "parent": "/usr/include/linux"}, {"filename": "rds.h", "parent": "/usr/include/linux"}, {"filename": "reboot.h", "parent": "/usr/include/linux"}, {"filename": "reiserfs_fs.h", "parent": "/usr/include/linux"}, {"filename": "reiserfs_xattr.h", "parent": "/usr/include/linux"}, {"filename": "resource.h", "parent": "/usr/include/linux"}, {"filename": "rfkill.h", "parent": "/usr/include/linux"}, {"filename": "rio_cm_cdev.h", "parent": "/usr/include/linux"}, {"filename": "rio_mport_cdev.h", "parent": "/usr/include/linux"}, {"filename": "romfs_fs.h", "parent": "/usr/include/linux"}, {"filename": "rose.h", "parent": "/usr/include/linux"}, {"filename": "route.h", "parent": "/usr/include/linux"}, {"filename": "rpmsg.h", "parent": "/usr/include/linux"}, {"filename": "rtc.h", "parent": "/usr/include/linux"}, {"filename": "rtnetlink.h", "parent": "/usr/include/linux"}, {"filename": "rxrpc.h", "parent": "/usr/include/linux"}, {"filename": "scc.h", "parent": "/usr/include/linux"}, {"filename": "sched", "parent": "/usr/include/linux"}, {"filename": "sched.h", "parent": "/usr/include/linux"}, {"filename": "scif_ioctl.h", "parent": "/usr/include/linux"}, {"filename": "screen_info.h", "parent": "/usr/include/linux"}, {"filename": "sctp.h", "parent": "/usr/include/linux"}, {"filename": "sdla.h", "parent": "/usr/include/linux"}, {"filename": "seccomp.h", "parent": "/usr/include/linux"}, {"filename": "securebits.h", "parent": "/usr/include/linux"}, {"filename": "sed-opal.h", "parent": "/usr/include/linux"}, {"filename": "seg6_genl.h", "parent": "/usr/include/linux"}, {"filename": "seg6.h", "parent": "/usr/include/linux"}, {"filename": "seg6_hmac.h", "parent": "/usr/include/linux"}, {"filename": "seg6_iptunnel.h", "parent": "/usr/include/linux"}, {"filename": "seg6_local.h", "parent": "/usr/include/linux"}, {"filename": "selinux_netlink.h", "parent": "/usr/include/linux"}, {"filename": "sem.h", "parent": "/usr/include/linux"}, {"filename": "serial_core.h", "parent": "/usr/include/linux"}, {"filename": "serial.h", "parent": "/usr/include/linux"}, {"filename": "serial_reg.h", "parent": "/usr/include/linux"}, {"filename": "serio.h", "parent": "/usr/include/linux"}, {"filename": "shm.h", "parent": "/usr/include/linux"}, {"filename": "signalfd.h", "parent": "/usr/include/linux"}, {"filename": "signal.h", "parent": "/usr/include/linux"}, {"filename": "smc_diag.h", "parent": "/usr/include/linux"}, {"filename": "smc.h", "parent": "/usr/include/linux"}, {"filename": "smiapp.h", "parent": "/usr/include/linux"}, {"filename": "snmp.h", "parent": "/usr/include/linux"}, {"filename": "sock_diag.h", "parent": "/usr/include/linux"}, {"filename": "socket.h", "parent": "/usr/include/linux"}, {"filename": "sockios.h", "parent": "/usr/include/linux"}, {"filename": "sonet.h", "parent": "/usr/include/linux"}, {"filename": "sonypi.h", "parent": "/usr/include/linux"}, {"filename": "soundcard.h", "parent": "/usr/include/linux"}, {"filename": "sound.h", "parent": "/usr/include/linux"}, {"filename": "spi", "parent": "/usr/include/linux"}, {"filename": "stat.h", "parent": "/usr/include/linux"}, {"filename": "stddef.h", "parent": "/usr/include/linux"}, {"filename": "stm.h", "parent": "/usr/include/linux"}, {"filename": "string.h", "parent": "/usr/include/linux"}, {"filename": "sunrpc", "parent": "/usr/include/linux"}, {"filename": "suspend_ioctls.h", "parent": "/usr/include/linux"}, {"filename": "swab.h", "parent": "/usr/include/linux"}, {"filename": "switchtec_ioctl.h", "parent": "/usr/include/linux"}, {"filename": "sync_file.h", "parent": "/usr/include/linux"}, {"filename": "synclink.h", "parent": "/usr/include/linux"}, {"filename": "sysctl.h", "parent": "/usr/include/linux"}, {"filename": "sysinfo.h", "parent": "/usr/include/linux"}, {"filename": "target_core_user.h", "parent": "/usr/include/linux"}, {"filename": "taskstats.h", "parent": "/usr/include/linux"}, {"filename": "tc_act", "parent": "/usr/include/linux"}, {"filename": "tc_ematch", "parent": "/usr/include/linux"}, {"filename": "tcp.h", "parent": "/usr/include/linux"}, {"filename": "tcp_metrics.h", "parent": "/usr/include/linux"}, {"filename": "tee.h", "parent": "/usr/include/linux"}, {"filename": "telephony.h", "parent": "/usr/include/linux"}, {"filename": "termios.h", "parent": "/usr/include/linux"}, {"filename": "thermal.h", "parent": "/usr/include/linux"}, {"filename": "time.h", "parent": "/usr/include/linux"}, {"filename": "timerfd.h", "parent": "/usr/include/linux"}, {"filename": "times.h", "parent": "/usr/include/linux"}, {"filename": "timex.h", "parent": "/usr/include/linux"}, {"filename": "tiocl.h", "parent": "/usr/include/linux"}, {"filename": "tipc_config.h", "parent": "/usr/include/linux"}, {"filename": "tipc.h", "parent": "/usr/include/linux"}, {"filename": "tipc_netlink.h", "parent": "/usr/include/linux"}, {"filename": "tls.h", "parent": "/usr/include/linux"}, {"filename": "toshiba.h", "parent": "/usr/include/linux"}, {"filename": "tty_flags.h", "parent": "/usr/include/linux"}, {"filename": "tty.h", "parent": "/usr/include/linux"}, {"filename": "types.h", "parent": "/usr/include/linux"}, {"filename": "udf_fs_i.h", "parent": "/usr/include/linux"}, {"filename": "udp.h", "parent": "/usr/include/linux"}, {"filename": "uhid.h", "parent": "/usr/include/linux"}, {"filename": "uinput.h", "parent": "/usr/include/linux"}, {"filename": "uio.h", "parent": "/usr/include/linux"}, {"filename": "uleds.h", "parent": "/usr/include/linux"}, {"filename": "ultrasound.h", "parent": "/usr/include/linux"}, {"filename": "un.h", "parent": "/usr/include/linux"}, {"filename": "unistd.h", "parent": "/usr/include/linux"}, {"filename": "unix_diag.h", "parent": "/usr/include/linux"}, {"filename": "usb", "parent": "/usr/include/linux"}, {"filename": "usbdevice_fs.h", "parent": "/usr/include/linux"}, {"filename": "usbip.h", "parent": "/usr/include/linux"}, {"filename": "userfaultfd.h", "parent": "/usr/include/linux"}, {"filename": "userio.h", "parent": "/usr/include/linux"}, {"filename": "utime.h", "parent": "/usr/include/linux"}, {"filename": "utsname.h", "parent": "/usr/include/linux"}, {"filename": "uuid.h", "parent": "/usr/include/linux"}, {"filename": "uvcvideo.h", "parent": "/usr/include/linux"}, {"filename": "v4l2-common.h", "parent": "/usr/include/linux"}, {"filename": "v4l2-controls.h", "parent": "/usr/include/linux"}, {"filename": "v4l2-dv-timings.h", "parent": "/usr/include/linux"}, {"filename": "v4l2-mediabus.h", "parent": "/usr/include/linux"}, {"filename": "v4l2-subdev.h", "parent": "/usr/include/linux"}, {"filename": "version.h", "parent": "/usr/include/linux"}, {"filename": "veth.h", "parent": "/usr/include/linux"}, {"filename": "vfio_ccw.h", "parent": "/usr/include/linux"}, {"filename": "vfio.h", "parent": "/usr/include/linux"}, {"filename": "vhost.h", "parent": "/usr/include/linux"}, {"filename": "videodev2.h", "parent": "/usr/include/linux"}, {"filename": "virtio_9p.h", "parent": "/usr/include/linux"}, {"filename": "virtio_balloon.h", "parent": "/usr/include/linux"}, {"filename": "virtio_blk.h", "parent": "/usr/include/linux"}, {"filename": "virtio_config.h", "parent": "/usr/include/linux"}, {"filename": "virtio_console.h", "parent": "/usr/include/linux"}, {"filename": "virtio_crypto.h", "parent": "/usr/include/linux"}, {"filename": "virtio_gpu.h", "parent": "/usr/include/linux"}, {"filename": "virtio_ids.h", "parent": "/usr/include/linux"}, {"filename": "virtio_input.h", "parent": "/usr/include/linux"}, {"filename": "virtio_mmio.h", "parent": "/usr/include/linux"}, {"filename": "virtio_net.h", "parent": "/usr/include/linux"}, {"filename": "virtio_pci.h", "parent": "/usr/include/linux"}, {"filename": "virtio_ring.h", "parent": "/usr/include/linux"}, {"filename": "virtio_rng.h", "parent": "/usr/include/linux"}, {"filename": "virtio_scsi.h", "parent": "/usr/include/linux"}, {"filename": "virtio_types.h", "parent": "/usr/include/linux"}, {"filename": "virtio_vsock.h", "parent": "/usr/include/linux"}, {"filename": "vm_sockets_diag.h", "parent": "/usr/include/linux"}, {"filename": "vm_sockets.h", "parent": "/usr/include/linux"}, {"filename": "vsockmon.h", "parent": "/usr/include/linux"}, {"filename": "vt.h", "parent": "/usr/include/linux"}, {"filename": "vtpm_proxy.h", "parent": "/usr/include/linux"}, {"filename": "wait.h", "parent": "/usr/include/linux"}, {"filename": "wanrouter.h", "parent": "/usr/include/linux"}, {"filename": "watchdog.h", "parent": "/usr/include/linux"}, {"filename": "wimax", "parent": "/usr/include/linux"}, {"filename": "wimax.h", "parent": "/usr/include/linux"}, {"filename": "wireless.h", "parent": "/usr/include/linux"}, {"filename": "wmi.h", "parent": "/usr/include/linux"}, {"filename": "x25.h", "parent": "/usr/include/linux"}, {"filename": "xattr.h", "parent": "/usr/include/linux"}, {"filename": "xfrm.h", "parent": "/usr/include/linux"}, {"filename": "xilinx-v4l2-controls.h", "parent": "/usr/include/linux"}, {"filename": "zorro.h", "parent": "/usr/include/linux"}, {"filename": "zorro_ids.h", "parent": "/usr/include/linux"}, {"filename": "binder.h", "parent": "/usr/include/linux/android"}, {"filename": "big_endian.h", "parent": "/usr/include/linux/byteorder"}, {"filename": "little_endian.h", "parent": "/usr/include/linux/byteorder"}, {"filename": "caif_socket.h", "parent": "/usr/include/linux/caif"}, {"filename": "if_caif.h", "parent": "/usr/include/linux/caif"}, {"filename": "bcm.h", "parent": "/usr/include/linux/can"}, {"filename": "error.h", "parent": "/usr/include/linux/can"}, {"filename": "gw.h", "parent": "/usr/include/linux/can"}, {"filename": "netlink.h", "parent": "/usr/include/linux/can"}, {"filename": "raw.h", "parent": "/usr/include/linux/can"}, {"filename": "vxcan.h", "parent": "/usr/include/linux/can"}, {"filename": "cifs_mount.h", "parent": "/usr/include/linux/cifs"}, {"filename": "audio.h", "parent": "/usr/include/linux/dvb"}, {"filename": "ca.h", "parent": "/usr/include/linux/dvb"}, {"filename": "dmx.h", "parent": "/usr/include/linux/dvb"}, {"filename": "frontend.h", "parent": "/usr/include/linux/dvb"}, {"filename": "net.h", "parent": "/usr/include/linux/dvb"}, {"filename": "osd.h", "parent": "/usr/include/linux/dvb"}, {"filename": "version.h", "parent": "/usr/include/linux/dvb"}, {"filename": "video.h", "parent": "/usr/include/linux/dvb"}, {"filename": "genwqe_card.h", "parent": "/usr/include/linux/genwqe"}, {"filename": "ioctl.h", "parent": "/usr/include/linux/hdlc"}, {"filename": "cs-protocol.h", "parent": "/usr/include/linux/hsi"}, {"filename": "hsi_char.h", "parent": "/usr/include/linux/hsi"}, {"filename": "events.h", "parent": "/usr/include/linux/iio"}, {"filename": "types.h", "parent": "/usr/include/linux/iio"}, {"filename": "capicmd.h", "parent": "/usr/include/linux/isdn"}, {"filename": "ioctl.h", "parent": "/usr/include/linux/mmc"}, {"filename": "ipset", "parent": "/usr/include/linux/netfilter"}, {"filename": "nf_conntrack_common.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "nf_conntrack_ftp.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "nf_conntrack_sctp.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "nf_conntrack_tcp.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "nf_conntrack_tuple_common.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "nf_log.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "nf_nat.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "nfnetlink_acct.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "nfnetlink_compat.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "nfnetlink_conntrack.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "nfnetlink_cthelper.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "nfnetlink_cttimeout.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "nfnetlink.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "nfnetlink_log.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "nfnetlink_queue.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "nf_tables_compat.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "nf_tables.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "x_tables.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_addrtype.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_AUDIT.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_bpf.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_cgroup.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_CHECKSUM.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_CLASSIFY.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_cluster.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_comment.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_connbytes.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_connlabel.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_connlimit.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_connmark.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_CONNMARK.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_CONNSECMARK.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_conntrack.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_cpu.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_CT.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_dccp.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_devgroup.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_dscp.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_DSCP.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_ecn.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_esp.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_hashlimit.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_helper.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_HMARK.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_IDLETIMER.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_ipcomp.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_iprange.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_ipvs.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_l2tp.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_LED.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_length.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_limit.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_LOG.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_mac.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_mark.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_MARK.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_multiport.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_nfacct.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_NFLOG.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_NFQUEUE.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_osf.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_owner.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_physdev.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_pkttype.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_policy.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_quota.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_rateest.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_RATEEST.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_realm.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_recent.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_rpfilter.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_sctp.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_SECMARK.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_set.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_socket.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_state.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_statistic.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_string.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_SYNPROXY.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_tcpmss.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_TCPMSS.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_TCPOPTSTRIP.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_tcpudp.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_TEE.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_time.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_TPROXY.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "xt_u32.h", "parent": "/usr/include/linux/netfilter"}, {"filename": "ip_set_bitmap.h", "parent": "/usr/include/linux/netfilter/ipset"}, {"filename": "ip_set.h", "parent": "/usr/include/linux/netfilter/ipset"}, {"filename": "ip_set_hash.h", "parent": "/usr/include/linux/netfilter/ipset"}, {"filename": "ip_set_list.h", "parent": "/usr/include/linux/netfilter/ipset"}, {"filename": "arp_tables.h", "parent": "/usr/include/linux/netfilter_arp"}, {"filename": "arpt_mangle.h", "parent": "/usr/include/linux/netfilter_arp"}, {"filename": "ebt_802_3.h", "parent": "/usr/include/linux/netfilter_bridge"}, {"filename": "ebtables.h", "parent": "/usr/include/linux/netfilter_bridge"}, {"filename": "ebt_among.h", "parent": "/usr/include/linux/netfilter_bridge"}, {"filename": "ebt_arp.h", "parent": "/usr/include/linux/netfilter_bridge"}, {"filename": "ebt_arpreply.h", "parent": "/usr/include/linux/netfilter_bridge"}, {"filename": "ebt_ip6.h", "parent": "/usr/include/linux/netfilter_bridge"}, {"filename": "ebt_ip.h", "parent": "/usr/include/linux/netfilter_bridge"}, {"filename": "ebt_limit.h", "parent": "/usr/include/linux/netfilter_bridge"}, {"filename": "ebt_log.h", "parent": "/usr/include/linux/netfilter_bridge"}, {"filename": "ebt_mark_m.h", "parent": "/usr/include/linux/netfilter_bridge"}, {"filename": "ebt_mark_t.h", "parent": "/usr/include/linux/netfilter_bridge"}, {"filename": "ebt_nat.h", "parent": "/usr/include/linux/netfilter_bridge"}, {"filename": "ebt_nflog.h", "parent": "/usr/include/linux/netfilter_bridge"}, {"filename": "ebt_pkttype.h", "parent": "/usr/include/linux/netfilter_bridge"}, {"filename": "ebt_redirect.h", "parent": "/usr/include/linux/netfilter_bridge"}, {"filename": "ebt_stp.h", "parent": "/usr/include/linux/netfilter_bridge"}, {"filename": "ebt_vlan.h", "parent": "/usr/include/linux/netfilter_bridge"}, {"filename": "ip_tables.h", "parent": "/usr/include/linux/netfilter_ipv4"}, {"filename": "ipt_ah.h", "parent": "/usr/include/linux/netfilter_ipv4"}, {"filename": "ipt_CLUSTERIP.h", "parent": "/usr/include/linux/netfilter_ipv4"}, {"filename": "ipt_ecn.h", "parent": "/usr/include/linux/netfilter_ipv4"}, {"filename": "ipt_ECN.h", "parent": "/usr/include/linux/netfilter_ipv4"}, {"filename": "ipt_LOG.h", "parent": "/usr/include/linux/netfilter_ipv4"}, {"filename": "ipt_REJECT.h", "parent": "/usr/include/linux/netfilter_ipv4"}, {"filename": "ipt_ttl.h", "parent": "/usr/include/linux/netfilter_ipv4"}, {"filename": "ipt_TTL.h", "parent": "/usr/include/linux/netfilter_ipv4"}, {"filename": "ip6_tables.h", "parent": "/usr/include/linux/netfilter_ipv6"}, {"filename": "ip6t_ah.h", "parent": "/usr/include/linux/netfilter_ipv6"}, {"filename": "ip6t_frag.h", "parent": "/usr/include/linux/netfilter_ipv6"}, {"filename": "ip6t_hl.h", "parent": "/usr/include/linux/netfilter_ipv6"}, {"filename": "ip6t_HL.h", "parent": "/usr/include/linux/netfilter_ipv6"}, {"filename": "ip6t_ipv6header.h", "parent": "/usr/include/linux/netfilter_ipv6"}, {"filename": "ip6t_LOG.h", "parent": "/usr/include/linux/netfilter_ipv6"}, {"filename": "ip6t_mh.h", "parent": "/usr/include/linux/netfilter_ipv6"}, {"filename": "ip6t_NPT.h", "parent": "/usr/include/linux/netfilter_ipv6"}, {"filename": "ip6t_opts.h", "parent": "/usr/include/linux/netfilter_ipv6"}, {"filename": "ip6t_REJECT.h", "parent": "/usr/include/linux/netfilter_ipv6"}, {"filename": "ip6t_rt.h", "parent": "/usr/include/linux/netfilter_ipv6"}, {"filename": "cld.h", "parent": "/usr/include/linux/nfsd"}, {"filename": "debug.h", "parent": "/usr/include/linux/nfsd"}, {"filename": "export.h", "parent": "/usr/include/linux/nfsd"}, {"filename": "nfsfh.h", "parent": "/usr/include/linux/nfsd"}, {"filename": "stats.h", "parent": "/usr/include/linux/nfsd"}, {"filename": "md_p.h", "parent": "/usr/include/linux/raid"}, {"filename": "md_u.h", "parent": "/usr/include/linux/raid"}, {"filename": "types.h", "parent": "/usr/include/linux/sched"}, {"filename": "spidev.h", "parent": "/usr/include/linux/spi"}, {"filename": "debug.h", "parent": "/usr/include/linux/sunrpc"}, {"filename": "tc_bpf.h", "parent": "/usr/include/linux/tc_act"}, {"filename": "tc_connmark.h", "parent": "/usr/include/linux/tc_act"}, {"filename": "tc_csum.h", "parent": "/usr/include/linux/tc_act"}, {"filename": "tc_defact.h", "parent": "/usr/include/linux/tc_act"}, {"filename": "tc_gact.h", "parent": "/usr/include/linux/tc_act"}, {"filename": "tc_ife.h", "parent": "/usr/include/linux/tc_act"}, {"filename": "tc_ipt.h", "parent": "/usr/include/linux/tc_act"}, {"filename": "tc_mirred.h", "parent": "/usr/include/linux/tc_act"}, {"filename": "tc_nat.h", "parent": "/usr/include/linux/tc_act"}, {"filename": "tc_pedit.h", "parent": "/usr/include/linux/tc_act"}, {"filename": "tc_sample.h", "parent": "/usr/include/linux/tc_act"}, {"filename": "tc_skbedit.h", "parent": "/usr/include/linux/tc_act"}, {"filename": "tc_skbmod.h", "parent": "/usr/include/linux/tc_act"}, {"filename": "tc_tunnel_key.h", "parent": "/usr/include/linux/tc_act"}, {"filename": "tc_vlan.h", "parent": "/usr/include/linux/tc_act"}, {"filename": "tc_em_cmp.h", "parent": "/usr/include/linux/tc_ematch"}, {"filename": "tc_em_meta.h", "parent": "/usr/include/linux/tc_ematch"}, {"filename": "tc_em_nbyte.h", "parent": "/usr/include/linux/tc_ematch"}, {"filename": "tc_em_text.h", "parent": "/usr/include/linux/tc_ematch"}, {"filename": "audio.h", "parent": "/usr/include/linux/usb"}, {"filename": "cdc.h", "parent": "/usr/include/linux/usb"}, {"filename": "cdc-wdm.h", "parent": "/usr/include/linux/usb"}, {"filename": "ch11.h", "parent": "/usr/include/linux/usb"}, {"filename": "ch9.h", "parent": "/usr/include/linux/usb"}, {"filename": "charger.h", "parent": "/usr/include/linux/usb"}, {"filename": "functionfs.h", "parent": "/usr/include/linux/usb"}, {"filename": "gadgetfs.h", "parent": "/usr/include/linux/usb"}, {"filename": "g_printer.h", "parent": "/usr/include/linux/usb"}, {"filename": "midi.h", "parent": "/usr/include/linux/usb"}, {"filename": "tmc.h", "parent": "/usr/include/linux/usb"}, {"filename": "video.h", "parent": "/usr/include/linux/usb"}, {"filename": "i2400m.h", "parent": "/usr/include/linux/wimax"}, {"filename": "cxl.h", "parent": "/usr/include/misc"}, {"filename": "ocxl.h", "parent": "/usr/include/misc"}, {"filename": "inftl-user.h", "parent": "/usr/include/mtd"}, {"filename": "mtd-abi.h", "parent": "/usr/include/mtd"}, {"filename": "mtd-user.h", "parent": "/usr/include/mtd"}, {"filename": "nftl-user.h", "parent": "/usr/include/mtd"}, {"filename": "ubi-user.h", "parent": "/usr/include/mtd"}, {"filename": "ethernet.h", "parent": "/usr/include/net"}, {"filename": "if_arp.h", "parent": "/usr/include/net"}, {"filename": "if.h", "parent": "/usr/include/net"}, {"filename": "if_packet.h", "parent": "/usr/include/net"}, {"filename": "if_ppp.h", "parent": "/usr/include/net"}, {"filename": "if_shaper.h", "parent": "/usr/include/net"}, {"filename": "if_slip.h", "parent": "/usr/include/net"}, {"filename": "ppp-comp.h", "parent": "/usr/include/net"}, {"filename": "ppp_defs.h", "parent": "/usr/include/net"}, {"filename": "route.h", "parent": "/usr/include/net"}, {"filename": "ash.h", "parent": "/usr/include/netash"}, {"filename": "at.h", "parent": "/usr/include/netatalk"}, {"filename": "ax25.h", "parent": "/usr/include/netax25"}, {"filename": "ec.h", "parent": "/usr/include/neteconet"}, {"filename": "ether.h", "parent": "/usr/include/netinet"}, {"filename": "icmp6.h", "parent": "/usr/include/netinet"}, {"filename": "if_ether.h", "parent": "/usr/include/netinet"}, {"filename": "if_fddi.h", "parent": "/usr/include/netinet"}, {"filename": "if_tr.h", "parent": "/usr/include/netinet"}, {"filename": "igmp.h", "parent": "/usr/include/netinet"}, {"filename": "in.h", "parent": "/usr/include/netinet"}, {"filename": "in_systm.h", "parent": "/usr/include/netinet"}, {"filename": "ip6.h", "parent": "/usr/include/netinet"}, {"filename": "ip.h", "parent": "/usr/include/netinet"}, {"filename": "ip_icmp.h", "parent": "/usr/include/netinet"}, {"filename": "tcp.h", "parent": "/usr/include/netinet"}, {"filename": "udp.h", "parent": "/usr/include/netinet"}, {"filename": "ipx.h", "parent": "/usr/include/netipx"}, {"filename": "iucv.h", "parent": "/usr/include/netiucv"}, {"filename": "packet.h", "parent": "/usr/include/netpacket"}, {"filename": "netrom.h", "parent": "/usr/include/netrom"}, {"filename": "rose.h", "parent": "/usr/include/netrose"}, {"filename": "nfs.h", "parent": "/usr/include/nfs"}, {"filename": "routed.h", "parent": "/usr/include/protocols"}, {"filename": "rwhod.h", "parent": "/usr/include/protocols"}, {"filename": "talkd.h", "parent": "/usr/include/protocols"}, {"filename": "timed.h", "parent": "/usr/include/protocols"}, {"filename": "abstract.h", "parent": "/usr/include/python3.6m"}, {"filename": "accu.h", "parent": "/usr/include/python3.6m"}, {"filename": "asdl.h", "parent": "/usr/include/python3.6m"}, {"filename": "ast.h", "parent": "/usr/include/python3.6m"}, {"filename": "bitset.h", "parent": "/usr/include/python3.6m"}, {"filename": "bltinmodule.h", "parent": "/usr/include/python3.6m"}, {"filename": "boolobject.h", "parent": "/usr/include/python3.6m"}, {"filename": "bytearrayobject.h", "parent": "/usr/include/python3.6m"}, {"filename": "bytes_methods.h", "parent": "/usr/include/python3.6m"}, {"filename": "bytesobject.h", "parent": "/usr/include/python3.6m"}, {"filename": "cellobject.h", "parent": "/usr/include/python3.6m"}, {"filename": "ceval.h", "parent": "/usr/include/python3.6m"}, {"filename": "classobject.h", "parent": "/usr/include/python3.6m"}, {"filename": "codecs.h", "parent": "/usr/include/python3.6m"}, {"filename": "code.h", "parent": "/usr/include/python3.6m"}, {"filename": "compile.h", "parent": "/usr/include/python3.6m"}, {"filename": "complexobject.h", "parent": "/usr/include/python3.6m"}, {"filename": "datetime.h", "parent": "/usr/include/python3.6m"}, {"filename": "descrobject.h", "parent": "/usr/include/python3.6m"}, {"filename": "dictobject.h", "parent": "/usr/include/python3.6m"}, {"filename": "dtoa.h", "parent": "/usr/include/python3.6m"}, {"filename": "dynamic_annotations.h", "parent": "/usr/include/python3.6m"}, {"filename": "enumobject.h", "parent": "/usr/include/python3.6m"}, {"filename": "errcode.h", "parent": "/usr/include/python3.6m"}, {"filename": "eval.h", "parent": "/usr/include/python3.6m"}, {"filename": "fileobject.h", "parent": "/usr/include/python3.6m"}, {"filename": "fileutils.h", "parent": "/usr/include/python3.6m"}, {"filename": "floatobject.h", "parent": "/usr/include/python3.6m"}, {"filename": "frameobject.h", "parent": "/usr/include/python3.6m"}, {"filename": "funcobject.h", "parent": "/usr/include/python3.6m"}, {"filename": "genobject.h", "parent": "/usr/include/python3.6m"}, {"filename": "graminit.h", "parent": "/usr/include/python3.6m"}, {"filename": "grammar.h", "parent": "/usr/include/python3.6m"}, {"filename": "import.h", "parent": "/usr/include/python3.6m"}, {"filename": "intrcheck.h", "parent": "/usr/include/python3.6m"}, {"filename": "iterobject.h", "parent": "/usr/include/python3.6m"}, {"filename": "listobject.h", "parent": "/usr/include/python3.6m"}, {"filename": "longintrepr.h", "parent": "/usr/include/python3.6m"}, {"filename": "longobject.h", "parent": "/usr/include/python3.6m"}, {"filename": "marshal.h", "parent": "/usr/include/python3.6m"}, {"filename": "memoryobject.h", "parent": "/usr/include/python3.6m"}, {"filename": "metagrammar.h", "parent": "/usr/include/python3.6m"}, {"filename": "methodobject.h", "parent": "/usr/include/python3.6m"}, {"filename": "modsupport.h", "parent": "/usr/include/python3.6m"}, {"filename": "moduleobject.h", "parent": "/usr/include/python3.6m"}, {"filename": "namespaceobject.h", "parent": "/usr/include/python3.6m"}, {"filename": "node.h", "parent": "/usr/include/python3.6m"}, {"filename": "object.h", "parent": "/usr/include/python3.6m"}, {"filename": "objimpl.h", "parent": "/usr/include/python3.6m"}, {"filename": "odictobject.h", "parent": "/usr/include/python3.6m"}, {"filename": "opcode.h", "parent": "/usr/include/python3.6m"}, {"filename": "osdefs.h", "parent": "/usr/include/python3.6m"}, {"filename": "osmodule.h", "parent": "/usr/include/python3.6m"}, {"filename": "parsetok.h", "parent": "/usr/include/python3.6m"}, {"filename": "patchlevel.h", "parent": "/usr/include/python3.6m"}, {"filename": "pgen.h", "parent": "/usr/include/python3.6m"}, {"filename": "pgenheaders.h", "parent": "/usr/include/python3.6m"}, {"filename": "pyarena.h", "parent": "/usr/include/python3.6m"}, {"filename": "pyatomic.h", "parent": "/usr/include/python3.6m"}, {"filename": "pycapsule.h", "parent": "/usr/include/python3.6m"}, {"filename": "pyconfig.h", "parent": "/usr/include/python3.6m"}, {"filename": "pyctype.h", "parent": "/usr/include/python3.6m"}, {"filename": "py_curses.h", "parent": "/usr/include/python3.6m"}, {"filename": "pydebug.h", "parent": "/usr/include/python3.6m"}, {"filename": "pydtrace.h", "parent": "/usr/include/python3.6m"}, {"filename": "pyerrors.h", "parent": "/usr/include/python3.6m"}, {"filename": "pyexpat.h", "parent": "/usr/include/python3.6m"}, {"filename": "pyfpe.h", "parent": "/usr/include/python3.6m"}, {"filename": "pygetopt.h", "parent": "/usr/include/python3.6m"}, {"filename": "pyhash.h", "parent": "/usr/include/python3.6m"}, {"filename": "pylifecycle.h", "parent": "/usr/include/python3.6m"}, {"filename": "pymacconfig.h", "parent": "/usr/include/python3.6m"}, {"filename": "pymacro.h", "parent": "/usr/include/python3.6m"}, {"filename": "pymath.h", "parent": "/usr/include/python3.6m"}, {"filename": "pymem.h", "parent": "/usr/include/python3.6m"}, {"filename": "pyport.h", "parent": "/usr/include/python3.6m"}, {"filename": "pystate.h", "parent": "/usr/include/python3.6m"}, {"filename": "pystrcmp.h", "parent": "/usr/include/python3.6m"}, {"filename": "pystrhex.h", "parent": "/usr/include/python3.6m"}, {"filename": "pystrtod.h", "parent": "/usr/include/python3.6m"}, {"filename": "Python-ast.h", "parent": "/usr/include/python3.6m"}, {"filename": "Python.h", "parent": "/usr/include/python3.6m"}, {"filename": "pythonrun.h", "parent": "/usr/include/python3.6m"}, {"filename": "pythread.h", "parent": "/usr/include/python3.6m"}, {"filename": "pytime.h", "parent": "/usr/include/python3.6m"}, {"filename": "rangeobject.h", "parent": "/usr/include/python3.6m"}, {"filename": "setobject.h", "parent": "/usr/include/python3.6m"}, {"filename": "sliceobject.h", "parent": "/usr/include/python3.6m"}, {"filename": "structmember.h", "parent": "/usr/include/python3.6m"}, {"filename": "structseq.h", "parent": "/usr/include/python3.6m"}, {"filename": "symtable.h", "parent": "/usr/include/python3.6m"}, {"filename": "sysmodule.h", "parent": "/usr/include/python3.6m"}, {"filename": "token.h", "parent": "/usr/include/python3.6m"}, {"filename": "traceback.h", "parent": "/usr/include/python3.6m"}, {"filename": "tupleobject.h", "parent": "/usr/include/python3.6m"}, {"filename": "typeslots.h", "parent": "/usr/include/python3.6m"}, {"filename": "ucnhash.h", "parent": "/usr/include/python3.6m"}, {"filename": "unicodeobject.h", "parent": "/usr/include/python3.6m"}, {"filename": "warnings.h", "parent": "/usr/include/python3.6m"}, {"filename": "weakrefobject.h", "parent": "/usr/include/python3.6m"}, {"filename": "bnxt_re-abi.h", "parent": "/usr/include/rdma"}, {"filename": "cxgb3-abi.h", "parent": "/usr/include/rdma"}, {"filename": "cxgb4-abi.h", "parent": "/usr/include/rdma"}, {"filename": "hfi", "parent": "/usr/include/rdma"}, {"filename": "hns-abi.h", "parent": "/usr/include/rdma"}, {"filename": "ib_user_cm.h", "parent": "/usr/include/rdma"}, {"filename": "ib_user_ioctl_verbs.h", "parent": "/usr/include/rdma"}, {"filename": "ib_user_mad.h", "parent": "/usr/include/rdma"}, {"filename": "ib_user_sa.h", "parent": "/usr/include/rdma"}, {"filename": "ib_user_verbs.h", "parent": "/usr/include/rdma"}, {"filename": "mlx4-abi.h", "parent": "/usr/include/rdma"}, {"filename": "mlx5-abi.h", "parent": "/usr/include/rdma"}, {"filename": "mthca-abi.h", "parent": "/usr/include/rdma"}, {"filename": "nes-abi.h", "parent": "/usr/include/rdma"}, {"filename": "ocrdma-abi.h", "parent": "/usr/include/rdma"}, {"filename": "qedr-abi.h", "parent": "/usr/include/rdma"}, {"filename": "rdma_netlink.h", "parent": "/usr/include/rdma"}, {"filename": "rdma_user_cm.h", "parent": "/usr/include/rdma"}, {"filename": "rdma_user_ioctl.h", "parent": "/usr/include/rdma"}, {"filename": "rdma_user_rxe.h", "parent": "/usr/include/rdma"}, {"filename": "vmw_pvrdma-abi.h", "parent": "/usr/include/rdma"}, {"filename": "hfi1_ioctl.h", "parent": "/usr/include/rdma/hfi"}, {"filename": "hfi1_user.h", "parent": "/usr/include/rdma/hfi"}, {"filename": "nl80211.h", "parent": "/usr/include/reglib"}, {"filename": "regdb.h", "parent": "/usr/include/reglib"}, {"filename": "reglib.h", "parent": "/usr/include/reglib"}, {"filename": "auth_des.h", "parent": "/usr/include/rpc"}, {"filename": "auth.h", "parent": "/usr/include/rpc"}, {"filename": "auth_unix.h", "parent": "/usr/include/rpc"}, {"filename": "clnt.h", "parent": "/usr/include/rpc"}, {"filename": "des_crypt.h", "parent": "/usr/include/rpc"}, {"filename": "key_prot.h", "parent": "/usr/include/rpc"}, {"filename": "netdb.h", "parent": "/usr/include/rpc"}, {"filename": "pmap_clnt.h", "parent": "/usr/include/rpc"}, {"filename": "pmap_prot.h", "parent": "/usr/include/rpc"}, {"filename": "pmap_rmt.h", "parent": "/usr/include/rpc"}, {"filename": "rpc_des.h", "parent": "/usr/include/rpc"}, {"filename": "rpc.h", "parent": "/usr/include/rpc"}, {"filename": "rpc_msg.h", "parent": "/usr/include/rpc"}, {"filename": "svc_auth.h", "parent": "/usr/include/rpc"}, {"filename": "svc.h", "parent": "/usr/include/rpc"}, {"filename": "types.h", "parent": "/usr/include/rpc"}, {"filename": "xdr.h", "parent": "/usr/include/rpc"}, {"filename": "bootparam.h", "parent": "/usr/include/rpcsvc"}, {"filename": "bootparam_prot.h", "parent": "/usr/include/rpcsvc"}, {"filename": "bootparam_prot.x", "parent": "/usr/include/rpcsvc"}, {"filename": "key_prot.h", "parent": "/usr/include/rpcsvc"}, {"filename": "key_prot.x", "parent": "/usr/include/rpcsvc"}, {"filename": "klm_prot.h", "parent": "/usr/include/rpcsvc"}, {"filename": "klm_prot.x", "parent": "/usr/include/rpcsvc"}, {"filename": "mount.h", "parent": "/usr/include/rpcsvc"}, {"filename": "mount.x", "parent": "/usr/include/rpcsvc"}, {"filename": "nfs_prot.h", "parent": "/usr/include/rpcsvc"}, {"filename": "nfs_prot.x", "parent": "/usr/include/rpcsvc"}, {"filename": "nis_callback.h", "parent": "/usr/include/rpcsvc"}, {"filename": "nis_callback.x", "parent": "/usr/include/rpcsvc"}, {"filename": "nis.h", "parent": "/usr/include/rpcsvc"}, {"filename": "nislib.h", "parent": "/usr/include/rpcsvc"}, {"filename": "nis_object.x", "parent": "/usr/include/rpcsvc"}, {"filename": "nis_tags.h", "parent": "/usr/include/rpcsvc"}, {"filename": "nis.x", "parent": "/usr/include/rpcsvc"}, {"filename": "nlm_prot.h", "parent": "/usr/include/rpcsvc"}, {"filename": "nlm_prot.x", "parent": "/usr/include/rpcsvc"}, {"filename": "rex.h", "parent": "/usr/include/rpcsvc"}, {"filename": "rex.x", "parent": "/usr/include/rpcsvc"}, {"filename": "rquota.h", "parent": "/usr/include/rpcsvc"}, {"filename": "rquota.x", "parent": "/usr/include/rpcsvc"}, {"filename": "rstat.h", "parent": "/usr/include/rpcsvc"}, {"filename": "rstat.x", "parent": "/usr/include/rpcsvc"}, {"filename": "rusers.h", "parent": "/usr/include/rpcsvc"}, {"filename": "rusers.x", "parent": "/usr/include/rpcsvc"}, {"filename": "sm_inter.h", "parent": "/usr/include/rpcsvc"}, {"filename": "sm_inter.x", "parent": "/usr/include/rpcsvc"}, {"filename": "spray.h", "parent": "/usr/include/rpcsvc"}, {"filename": "spray.x", "parent": "/usr/include/rpcsvc"}, {"filename": "ypclnt.h", "parent": "/usr/include/rpcsvc"}, {"filename": "yp.h", "parent": "/usr/include/rpcsvc"}, {"filename": "yppasswd.h", "parent": "/usr/include/rpcsvc"}, {"filename": "yppasswd.x", "parent": "/usr/include/rpcsvc"}, {"filename": "yp_prot.h", "parent": "/usr/include/rpcsvc"}, {"filename": "ypupd.h", "parent": "/usr/include/rpcsvc"}, {"filename": "yp.x", "parent": "/usr/include/rpcsvc"}, {"filename": "cxlflash_ioctl.h", "parent": "/usr/include/scsi"}, {"filename": "fc", "parent": "/usr/include/scsi"}, {"filename": "scsi_bsg_fc.h", "parent": "/usr/include/scsi"}, {"filename": "scsi.h", "parent": "/usr/include/scsi"}, {"filename": "scsi_ioctl.h", "parent": "/usr/include/scsi"}, {"filename": "scsi_netlink_fc.h", "parent": "/usr/include/scsi"}, {"filename": "scsi_netlink.h", "parent": "/usr/include/scsi"}, {"filename": "sg.h", "parent": "/usr/include/scsi"}, {"filename": "fc_els.h", "parent": "/usr/include/scsi/fc"}, {"filename": "fc_fs.h", "parent": "/usr/include/scsi/fc"}, {"filename": "fc_gs.h", "parent": "/usr/include/scsi/fc"}, {"filename": "fc_ns.h", "parent": "/usr/include/scsi/fc"}, {"filename": "asequencer.h", "parent": "/usr/include/sound"}, {"filename": "asoc.h", "parent": "/usr/include/sound"}, {"filename": "asound_fm.h", "parent": "/usr/include/sound"}, {"filename": "asound.h", "parent": "/usr/include/sound"}, {"filename": "compress_offload.h", "parent": "/usr/include/sound"}, {"filename": "compress_params.h", "parent": "/usr/include/sound"}, {"filename": "emu10k1.h", "parent": "/usr/include/sound"}, {"filename": "firewire.h", "parent": "/usr/include/sound"}, {"filename": "hdsp.h", "parent": "/usr/include/sound"}, {"filename": "hdspm.h", "parent": "/usr/include/sound"}, {"filename": "sb16_csp.h", "parent": "/usr/include/sound"}, {"filename": "sfnt_info.h", "parent": "/usr/include/sound"}, {"filename": "snd_sst_tokens.h", "parent": "/usr/include/sound"}, {"filename": "tlv.h", "parent": "/usr/include/sound"}, {"filename": "usb_stream.h", "parent": "/usr/include/sound"}, {"filename": "edid.h", "parent": "/usr/include/video"}, {"filename": "sisfb.h", "parent": "/usr/include/video"}, {"filename": "uvesafb.h", "parent": "/usr/include/video"}, {"filename": "a.out.h", "parent": "/usr/include/x86_64-linux-gnu"}, {"filename": "asm", "parent": "/usr/include/x86_64-linux-gnu"}, {"filename": "bits", "parent": "/usr/include/x86_64-linux-gnu"}, {"filename": "c++", "parent": "/usr/include/x86_64-linux-gnu"}, {"filename": "expat_config.h", "parent": "/usr/include/x86_64-linux-gnu"}, {"filename": "fpu_control.h", "parent": "/usr/include/x86_64-linux-gnu"}, {"filename": "gnu", "parent": "/usr/include/x86_64-linux-gnu"}, {"filename": "ieee754.h", "parent": "/usr/include/x86_64-linux-gnu"}, {"filename": "python3.6m", "parent": "/usr/include/x86_64-linux-gnu"}, {"filename": "sys", "parent": "/usr/include/x86_64-linux-gnu"}, {"filename": "a.out.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "auxvec.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "bitsperlong.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "boot.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "bootparam.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "bpf_perf_event.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "byteorder.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "debugreg.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "e820.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "errno.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "fcntl.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "hw_breakpoint.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "hwcap2.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "hyperv.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "ioctl.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "ioctls.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "ipcbuf.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "ist.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "kvm.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "kvm_para.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "kvm_perf.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "ldt.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "mce.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "mman.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "msgbuf.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "msr.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "mtrr.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "param.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "perf_regs.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "poll.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "posix_types_32.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "posix_types_64.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "posix_types.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "posix_types_x32.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "prctl.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "processor-flags.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "ptrace-abi.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "ptrace.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "resource.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "sembuf.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "setup.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "shmbuf.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "sigcontext32.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "sigcontext.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "siginfo.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "signal.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "socket.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "sockios.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "statfs.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "stat.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "svm.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "swab.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "termbits.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "termios.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "types.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "ucontext.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "unistd_32.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "unistd_64.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "unistd.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "unistd_x32.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "vm86.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "vmx.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "vsyscall.h", "parent": "/usr/include/x86_64-linux-gnu/asm"}, {"filename": "a.out.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "auxv.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "byteswap-16.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "byteswap.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "cmathcalls.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "confname.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "cpu-set.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "dirent.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "dlfcn.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "elfclass.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "endian.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "environments.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "epoll.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "errno.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "error.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "eventfd.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "fcntl2.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "fcntl.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "fcntl-linux.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "fenv.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "fenvinline.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "floatn-common.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "floatn.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "flt-eval-method.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "fp-fast.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "fp-logb.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "_G_config.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "getopt_core.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "getopt_ext.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "getopt_posix.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "hwcap.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "in.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "initspin.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "inotify.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "ioctls.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "ioctl-types.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "ipc.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "ipctypes.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "iscanonical.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "libc-header-start.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "libio.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "libio-ldbl.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "libm-simd-decl-stubs.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "link.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "locale.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "local_lim.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "long-double.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "mathcalls.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "mathcalls-helper-functions.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "mathdef.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "math-finite.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "mathinline.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "math-vector.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "mman.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "mman-linux.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "mman-shared.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "monetary-ldbl.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "mqueue2.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "mqueue.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "msq.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "netdb.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "param.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "poll2.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "poll.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "posix1_lim.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "posix2_lim.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "posix_opt.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "printf-ldbl.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "pthreadtypes-arch.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "pthreadtypes.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "ptrace-shared.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "resource.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "sched.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "select2.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "select.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "semaphore.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "sem.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "setjmp2.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "setjmp.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "shm.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "sigaction.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "sigcontext.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "sigevent-consts.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "siginfo-arch.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "siginfo-consts-arch.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "siginfo-consts.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "signalfd.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "signum-generic.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "signum.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "sigstack.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "sigthread.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "sockaddr.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "socket2.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "socket.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "socket_type.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "ss_flags.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "stab.def", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "statfs.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "stat.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "statvfs.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "stdint-intn.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "stdint-uintn.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "stdio2.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "stdio.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "stdio-ldbl.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "stdio_lim.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "stdlib-bsearch.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "stdlib-float.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "stdlib.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "stdlib-ldbl.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "string_fortified.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "strings_fortified.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "stropts.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "syscall.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "sysctl.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "sys_errlist.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "syslog.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "syslog-ldbl.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "syslog-path.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "sysmacros.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "termios.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "thread-shared-types.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "time.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "timerfd.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "timex.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "types", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "types.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "typesizes.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "uintn-identity.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "uio-ext.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "uio_lim.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "unistd.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "ustat.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "utmp.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "utmpx.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "utsname.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "waitflags.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "waitstatus.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "wchar2.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "wchar.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "wchar-ldbl.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "wctype-wchar.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "wordsize.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "xopen_lim.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "xtitypes.h", "parent": "/usr/include/x86_64-linux-gnu/bits"}, {"filename": "clockid_t.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types"}, {"filename": "clock_t.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types"}, {"filename": "__FILE.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types"}, {"filename": "FILE.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types"}, {"filename": "__locale_t.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types"}, {"filename": "locale_t.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types"}, {"filename": "__mbstate_t.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types"}, {"filename": "mbstate_t.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types"}, {"filename": "res_state.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types"}, {"filename": "sig_atomic_t.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types"}, {"filename": "sigevent_t.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types"}, {"filename": "siginfo_t.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types"}, {"filename": "__sigset_t.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types"}, {"filename": "sigset_t.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types"}, {"filename": "__sigval_t.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types"}, {"filename": "sigval_t.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types"}, {"filename": "stack_t.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types"}, {"filename": "struct_iovec.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types"}, {"filename": "struct_itimerspec.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types"}, {"filename": "struct_osockaddr.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types"}, {"filename": "struct_rusage.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types"}, {"filename": "struct_sigstack.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types"}, {"filename": "struct_timespec.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types"}, {"filename": "struct_timeval.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types"}, {"filename": "struct_tm.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types"}, {"filename": "timer_t.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types"}, {"filename": "time_t.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types"}, {"filename": "wint_t.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types"}, {"filename": "7", "parent": "/usr/include/x86_64-linux-gnu/c++"}, {"filename": "7.4.0", "parent": "/usr/include/x86_64-linux-gnu/c++"}, {"filename": "bits", "parent": "/usr/include/x86_64-linux-gnu/c++/7"}, {"filename": "ext", "parent": "/usr/include/x86_64-linux-gnu/c++/7"}, {"filename": "atomic_word.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits"}, {"filename": "basic_file.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits"}, {"filename": "c++allocator.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits"}, {"filename": "c++config.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits"}, {"filename": "c++io.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits"}, {"filename": "c++locale.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits"}, {"filename": "cpu_defines.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits"}, {"filename": "ctype_base.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits"}, {"filename": "ctype_inline.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits"}, {"filename": "cxxabi_tweaks.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits"}, {"filename": "error_constants.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits"}, {"filename": "extc++.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits"}, {"filename": "gthr-default.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits"}, {"filename": "gthr.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits"}, {"filename": "gthr-posix.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits"}, {"filename": "gthr-single.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits"}, {"filename": "messages_members.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits"}, {"filename": "opt_random.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits"}, {"filename": "os_defines.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits"}, {"filename": "stdc++.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits"}, {"filename": "stdtr1c++.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits"}, {"filename": "time_members.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits"}, {"filename": "opt_random.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/ext"}, {"filename": "libc-version.h", "parent": "/usr/include/x86_64-linux-gnu/gnu"}, {"filename": "lib-names-64.h", "parent": "/usr/include/x86_64-linux-gnu/gnu"}, {"filename": "lib-names.h", "parent": "/usr/include/x86_64-linux-gnu/gnu"}, {"filename": "stubs-64.h", "parent": "/usr/include/x86_64-linux-gnu/gnu"}, {"filename": "stubs.h", "parent": "/usr/include/x86_64-linux-gnu/gnu"}, {"filename": "pyconfig.h", "parent": "/usr/include/x86_64-linux-gnu/python3.6m"}, {"filename": "acct.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "auxv.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "bitypes.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "cdefs.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "debugreg.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "dir.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "elf.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "epoll.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "errno.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "eventfd.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "fanotify.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "fcntl.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "file.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "fsuid.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "gmon.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "gmon_out.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "inotify.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "ioctl.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "io.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "ipc.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "kd.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "klog.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "mman.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "mount.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "msg.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "mtio.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "param.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "pci.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "perm.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "personality.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "poll.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "prctl.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "procfs.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "profil.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "ptrace.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "queue.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "quota.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "random.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "raw.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "reboot.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "reg.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "resource.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "select.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "sem.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "sendfile.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "shm.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "signalfd.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "signal.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "socket.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "socketvar.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "soundcard.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "statfs.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "stat.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "statvfs.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "stropts.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "swap.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "syscall.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "sysctl.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "sysinfo.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "syslog.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "sysmacros.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "termios.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "timeb.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "time.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "timerfd.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "times.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "timex.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "ttychars.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "ttydefaults.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "types.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "ucontext.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "uio.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "un.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "unistd.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "user.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "ustat.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "utsname.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "vfs.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "vlimit.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "vm86.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "vt.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "vtimes.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "wait.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "xattr.h", "parent": "/usr/include/x86_64-linux-gnu/sys"}, {"filename": "evtchn.h", "parent": "/usr/include/xen"}, {"filename": "gntalloc.h", "parent": "/usr/include/xen"}, {"filename": "gntdev.h", "parent": "/usr/include/xen"}, {"filename": "privcmd.h", "parent": "/usr/include/xen"}, {"filename": "accountsservice", "parent": "/usr/lib"}, {"filename": "apt", "parent": "/usr/lib"}, {"filename": "bfd-plugins", "parent": "/usr/lib"}, {"filename": "binfmt.d", "parent": "/usr/lib"}, {"filename": "byobu", "parent": "/usr/lib"}, {"filename": "cloud-init", "parent": "/usr/lib"}, {"filename": "cnf-update-db", "parent": "/usr/lib"}, {"filename": "command-not-found", "parent": "/usr/lib"}, {"filename": "compat-ld", "parent": "/usr/lib"}, {"filename": "dbus-1.0", "parent": "/usr/lib"}, {"filename": "dpkg", "parent": "/usr/lib"}, {"filename": "dracut", "parent": "/usr/lib"}, {"filename": "eject", "parent": "/usr/lib"}, {"filename": "environment.d", "parent": "/usr/lib"}, {"filename": "file", "parent": "/usr/lib"}, {"filename": "gcc", "parent": "/usr/lib"}, {"filename": "git-core", "parent": "/usr/lib"}, {"filename": "gnupg", "parent": "/usr/lib"}, {"filename": "gnupg2", "parent": "/usr/lib"}, {"filename": "gold-ld", "parent": "/usr/lib"}, {"filename": "groff", "parent": "/usr/lib"}, {"filename": "grub", "parent": "/usr/lib"}, {"filename": "grub-legacy", "parent": "/usr/lib"}, {"filename": "initcpio", "parent": "/usr/lib"}, {"filename": "initramfs-tools", "parent": "/usr/lib"}, {"filename": "kernel", "parent": "/usr/lib"}, {"filename": "klibc", "parent": "/usr/lib"}, {"filename": "language-selector", "parent": "/usr/lib"}, {"filename": "libDeployPkg.so.0", "parent": "/usr/lib"}, {"filename": "libDeployPkg.so.0.0.0", "parent": "/usr/lib"}, {"filename": "libguestlib.so.0", "parent": "/usr/lib"}, {"filename": "libguestlib.so.0.0.0", "parent": "/usr/lib"}, {"filename": "libhgfs.so.0", "parent": "/usr/lib"}, {"filename": "libhgfs.so.0.0.0", "parent": "/usr/lib"}, {"filename": "libvgauth.so.0", "parent": "/usr/lib"}, {"filename": "libvgauth.so.0.0.0", "parent": "/usr/lib"}, {"filename": "libvmtools.so.0", "parent": "/usr/lib"}, {"filename": "libvmtools.so.0.0.0", "parent": "/usr/lib"}, {"filename": "linux", "parent": "/usr/lib"}, {"filename": "linux-boot-probes", "parent": "/usr/lib"}, {"filename": "locale", "parent": "/usr/lib"}, {"filename": "lxcfs", "parent": "/usr/lib"}, {"filename": "lxd", "parent": "/usr/lib"}, {"filename": "man-db", "parent": "/usr/lib"}, {"filename": "mime", "parent": "/usr/lib"}, {"filename": "modules-load.d", "parent": "/usr/lib"}, {"filename": "networkd-dispatcher", "parent": "/usr/lib"}, {"filename": "openssh", "parent": "/usr/lib"}, {"filename": "open-vm-tools", "parent": "/usr/lib"}, {"filename": "os-prober", "parent": "/usr/lib"}, {"filename": "os-probes", "parent": "/usr/lib"}, {"filename": "os-release", "parent": "/usr/lib"}, {"filename": "pm-utils", "parent": "/usr/lib"}, {"filename": "policykit-1", "parent": "/usr/lib"}, {"filename": "python2.7", "parent": "/usr/lib"}, {"filename": "python3", "parent": "/usr/lib"}, {"filename": "python3.6", "parent": "/usr/lib"}, {"filename": "python3.7", "parent": "/usr/lib"}, {"filename": "rsyslog", "parent": "/usr/lib"}, {"filename": "sasl2", "parent": "/usr/lib"}, {"filename": "sftp-server", "parent": "/usr/lib"}, {"filename": "snapd", "parent": "/usr/lib"}, {"filename": "software-properties", "parent": "/usr/lib"}, {"filename": "ssl", "parent": "/usr/lib"}, {"filename": "sudo", "parent": "/usr/lib"}, {"filename": "sysctl.d", "parent": "/usr/lib"}, {"filename": "sysstat", "parent": "/usr/lib"}, {"filename": "systemd", "parent": "/usr/lib"}, {"filename": "sysusers.d", "parent": "/usr/lib"}, {"filename": "tar", "parent": "/usr/lib"}, {"filename": "tc", "parent": "/usr/lib"}, {"filename": "tmpfiles.d", "parent": "/usr/lib"}, {"filename": "ubuntu-fan", "parent": "/usr/lib"}, {"filename": "ubuntu-release-upgrader", "parent": "/usr/lib"}, {"filename": "update-notifier", "parent": "/usr/lib"}, {"filename": "valgrind", "parent": "/usr/lib"}, {"filename": "x86_64-linux-gnu", "parent": "/usr/lib"}, {"filename": "accounts-daemon", "parent": "/usr/lib/accountsservice"}, {"filename": "apt-helper", "parent": "/usr/lib/apt"}, {"filename": "apt.systemd.daily", "parent": "/usr/lib/apt"}, {"filename": "methods", "parent": "/usr/lib/apt"}, {"filename": "planners", "parent": "/usr/lib/apt"}, {"filename": "solvers", "parent": "/usr/lib/apt"}, {"filename": "cdrom", "parent": "/usr/lib/apt/methods"}, {"filename": "copy", "parent": "/usr/lib/apt/methods"}, {"filename": "file", "parent": "/usr/lib/apt/methods"}, {"filename": "ftp", "parent": "/usr/lib/apt/methods"}, {"filename": "gpgv", "parent": "/usr/lib/apt/methods"}, {"filename": "http", "parent": "/usr/lib/apt/methods"}, {"filename": "https", "parent": "/usr/lib/apt/methods"}, {"filename": "mirror", "parent": "/usr/lib/apt/methods"}, {"filename": "mirror+copy", "parent": "/usr/lib/apt/methods"}, {"filename": "mirror+file", "parent": "/usr/lib/apt/methods"}, {"filename": "mirror+ftp", "parent": "/usr/lib/apt/methods"}, {"filename": "mirror+http", "parent": "/usr/lib/apt/methods"}, {"filename": "mirror+https", "parent": "/usr/lib/apt/methods"}, {"filename": "rred", "parent": "/usr/lib/apt/methods"}, {"filename": "rsh", "parent": "/usr/lib/apt/methods"}, {"filename": "ssh", "parent": "/usr/lib/apt/methods"}, {"filename": "store", "parent": "/usr/lib/apt/methods"}, {"filename": "apt", "parent": "/usr/lib/apt/planners"}, {"filename": "dump", "parent": "/usr/lib/apt/planners"}, {"filename": "apt", "parent": "/usr/lib/apt/solvers"}, {"filename": "dump", "parent": "/usr/lib/apt/solvers"}, {"filename": "liblto_plugin.so", "parent": "/usr/lib/bfd-plugins"}, {"filename": "apport", "parent": "/usr/lib/byobu"}, {"filename": "arch", "parent": "/usr/lib/byobu"}, {"filename": "battery", "parent": "/usr/lib/byobu"}, {"filename": "color", "parent": "/usr/lib/byobu"}, {"filename": "cpu_count", "parent": "/usr/lib/byobu"}, {"filename": "cpu_freq", "parent": "/usr/lib/byobu"}, {"filename": "cpu_temp", "parent": "/usr/lib/byobu"}, {"filename": "custom", "parent": "/usr/lib/byobu"}, {"filename": "date", "parent": "/usr/lib/byobu"}, {"filename": "disk", "parent": "/usr/lib/byobu"}, {"filename": "disk_io", "parent": "/usr/lib/byobu"}, {"filename": "distro", "parent": "/usr/lib/byobu"}, {"filename": "ec2_cost", "parent": "/usr/lib/byobu"}, {"filename": "entropy", "parent": "/usr/lib/byobu"}, {"filename": "fan_speed", "parent": "/usr/lib/byobu"}, {"filename": "hostname", "parent": "/usr/lib/byobu"}, {"filename": "include", "parent": "/usr/lib/byobu"}, {"filename": "ip_address", "parent": "/usr/lib/byobu"}, {"filename": "load_average", "parent": "/usr/lib/byobu"}, {"filename": "logo", "parent": "/usr/lib/byobu"}, {"filename": "mail", "parent": "/usr/lib/byobu"}, {"filename": "memory", "parent": "/usr/lib/byobu"}, {"filename": "menu", "parent": "/usr/lib/byobu"}, {"filename": "network", "parent": "/usr/lib/byobu"}, {"filename": "processes", "parent": "/usr/lib/byobu"}, {"filename": "raid", "parent": "/usr/lib/byobu"}, {"filename": "rcs_cost", "parent": "/usr/lib/byobu"}, {"filename": "reboot_required", "parent": "/usr/lib/byobu"}, {"filename": "release", "parent": "/usr/lib/byobu"}, {"filename": "services", "parent": "/usr/lib/byobu"}, {"filename": "session", "parent": "/usr/lib/byobu"}, {"filename": "swap", "parent": "/usr/lib/byobu"}, {"filename": "time", "parent": "/usr/lib/byobu"}, {"filename": "time_binary", "parent": "/usr/lib/byobu"}, {"filename": "time_utc", "parent": "/usr/lib/byobu"}, {"filename": "trash", "parent": "/usr/lib/byobu"}, {"filename": "updates_available", "parent": "/usr/lib/byobu"}, {"filename": "uptime", "parent": "/usr/lib/byobu"}, {"filename": "users", "parent": "/usr/lib/byobu"}, {"filename": "whoami", "parent": "/usr/lib/byobu"}, {"filename": "wifi_quality", "parent": "/usr/lib/byobu"}, {"filename": "colors", "parent": "/usr/lib/byobu/include"}, {"filename": "common", "parent": "/usr/lib/byobu/include"}, {"filename": "config.py", "parent": "/usr/lib/byobu/include"}, {"filename": "constants", "parent": "/usr/lib/byobu/include"}, {"filename": "cycle-status", "parent": "/usr/lib/byobu/include"}, {"filename": "dirs", "parent": "/usr/lib/byobu/include"}, {"filename": "ec2instancespricing.py", "parent": "/usr/lib/byobu/include"}, {"filename": "icons", "parent": "/usr/lib/byobu/include"}, {"filename": "mondrian", "parent": "/usr/lib/byobu/include"}, {"filename": "notify_osd", "parent": "/usr/lib/byobu/include"}, {"filename": "__pycache__", "parent": "/usr/lib/byobu/include"}, {"filename": "select-session.py", "parent": "/usr/lib/byobu/include"}, {"filename": "shutil", "parent": "/usr/lib/byobu/include"}, {"filename": "tmux-detach-all-but-current-client", "parent": "/usr/lib/byobu/include"}, {"filename": "tmux-send-command-to-all-panes", "parent": "/usr/lib/byobu/include"}, {"filename": "tmux-send-command-to-all-windows", "parent": "/usr/lib/byobu/include"}, {"filename": "toggle-utf8", "parent": "/usr/lib/byobu/include"}, {"filename": "config.cpython-36.pyc", "parent": "/usr/lib/byobu/include/__pycache__"}, {"filename": "ec2instancespricing.cpython-36.pyc", "parent": "/usr/lib/byobu/include/__pycache__"}, {"filename": "select-session.cpython-36.pyc", "parent": "/usr/lib/byobu/include/__pycache__"}, {"filename": "ds-identify", "parent": "/usr/lib/cloud-init"}, {"filename": "uncloud-init", "parent": "/usr/lib/cloud-init"}, {"filename": "write-ssh-key-fingerprints", "parent": "/usr/lib/cloud-init"}, {"filename": "ld", "parent": "/usr/lib/compat-ld"}, {"filename": "dbus-daemon-launch-helper", "parent": "/usr/lib/dbus-1.0"}, {"filename": "methods", "parent": "/usr/lib/dpkg"}, {"filename": "apt", "parent": "/usr/lib/dpkg/methods"}, {"filename": "desc.apt", "parent": "/usr/lib/dpkg/methods/apt"}, {"filename": "install", "parent": "/usr/lib/dpkg/methods/apt"}, {"filename": "names", "parent": "/usr/lib/dpkg/methods/apt"}, {"filename": "setup", "parent": "/usr/lib/dpkg/methods/apt"}, {"filename": "update", "parent": "/usr/lib/dpkg/methods/apt"}, {"filename": "modules.d", "parent": "/usr/lib/dracut"}, {"filename": "90bcache", "parent": "/usr/lib/dracut/modules.d"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/90bcache"}, {"filename": "dmcrypt-get-device", "parent": "/usr/lib/eject"}, {"filename": "990-snapd.conf", "parent": "/usr/lib/environment.d"}, {"filename": "99-environment.conf", "parent": "/usr/lib/environment.d"}, {"filename": "magic.mgc", "parent": "/usr/lib/file"}, {"filename": "x86_64-linux-gnu", "parent": "/usr/lib/gcc"}, {"filename": "7", "parent": "/usr/lib/gcc/x86_64-linux-gnu"}, {"filename": "7.4.0", "parent": "/usr/lib/gcc/x86_64-linux-gnu"}, {"filename": "8", "parent": "/usr/lib/gcc/x86_64-linux-gnu"}, {"filename": "cc1", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "cc1plus", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "collect2", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "crtbegin.o", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "crtbeginS.o", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "crtbeginT.o", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "crtend.o", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "crtendS.o", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "crtfastmath.o", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "crtoffloadbegin.o", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "crtoffloadend.o", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "crtoffloadtable.o", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "crtprec32.o", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "crtprec64.o", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "crtprec80.o", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "include", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "include-fixed", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "libasan.a", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "libasan_preinit.o", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "libasan.so", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "libatomic.a", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "libatomic.so", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "libbacktrace.a", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "libcc1.so", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "libcilkrts.a", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "libcilkrts.so", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "libcilkrts.spec", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "libgcc.a", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "libgcc_eh.a", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "libgcc_s.so", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "libgcc_s.so.1", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "libgcov.a", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "libgomp.a", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "libgomp.so", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "libgomp.spec", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "libitm.a", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "libitm.so", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "libitm.spec", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "liblsan.a", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "liblsan.so", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "liblto_plugin.so", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "liblto_plugin.so.0", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "liblto_plugin.so.0.0.0", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "libmpx.a", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "libmpx.so", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "libmpx.spec", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "libmpxwrappers.a", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "libmpxwrappers.so", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "libquadmath.a", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "libquadmath.so", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "libsanitizer.spec", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "libssp_nonshared.a", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "libstdc++.a", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "libstdc++fs.a", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "libstdc++.so", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "libsupc++.a", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "libtsan.a", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "libtsan.so", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "libubsan.a", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "libubsan.so", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "lto1", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "lto-wrapper", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "plugin", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7"}, {"filename": "adxintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "ammintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "avx2intrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "avx5124fmapsintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "avx5124vnniwintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "avx512bwintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "avx512cdintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "avx512dqintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "avx512erintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "avx512fintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "avx512ifmaintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "avx512ifmavlintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "avx512pfintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "avx512vbmiintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "avx512vbmivlintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "avx512vlbwintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "avx512vldqintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "avx512vlintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "avx512vpopcntdqintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "avxintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "backtrace.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "backtrace-supported.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "bmi2intrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "bmiintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "bmmintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "cilk", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "clflushoptintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "clwbintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "clzerointrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "cpuid.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "cross-stdarg.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "emmintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "f16cintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "float.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "fma4intrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "fmaintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "fxsrintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "gcov.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "ia32intrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "immintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "iso646.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "lwpintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "lzcntintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "mm3dnow.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "mmintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "mm_malloc.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "mwaitxintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "nmmintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "omp.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "openacc.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "pkuintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "pmmintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "popcntintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "prfchwintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "quadmath.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "quadmath_weak.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "rdseedintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "rtmintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "sanitizer", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "sgxintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "shaintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "smmintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "stdalign.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "stdarg.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "stdatomic.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "stdbool.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "stddef.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "stdfix.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "stdint-gcc.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "stdint.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "stdnoreturn.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "tbmintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "tmmintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "unwind.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "varargs.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "wmmintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "x86intrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "xmmintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "xopintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "xsavecintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "xsaveintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "xsaveoptintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "xsavesintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "xtestintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include"}, {"filename": "cilk_api.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk"}, {"filename": "cilk_api_linux.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk"}, {"filename": "cilk.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk"}, {"filename": "cilk_stub.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk"}, {"filename": "cilk_undocumented.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk"}, {"filename": "common.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk"}, {"filename": "holder.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk"}, {"filename": "hyperobject_base.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk"}, {"filename": "metaprogramming.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk"}, {"filename": "reducer_file.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk"}, {"filename": "reducer.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk"}, {"filename": "reducer_list.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk"}, {"filename": "reducer_max.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk"}, {"filename": "reducer_min.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk"}, {"filename": "reducer_min_max.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk"}, {"filename": "reducer_opadd.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk"}, {"filename": "reducer_opand.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk"}, {"filename": "reducer_opmul.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk"}, {"filename": "reducer_opor.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk"}, {"filename": "reducer_opxor.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk"}, {"filename": "reducer_ostream.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk"}, {"filename": "reducer_string.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk"}, {"filename": "asan_interface.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/sanitizer"}, {"filename": "common_interface_defs.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/sanitizer"}, {"filename": "lsan_interface.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/sanitizer"}, {"filename": "limits.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed"}, {"filename": "README", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed"}, {"filename": "syslimits.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed"}, {"filename": "libcc1plugin.so", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/plugin"}, {"filename": "libcc1plugin.so.0", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/plugin"}, {"filename": "libcc1plugin.so.0.0.0", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/plugin"}, {"filename": "libcp1plugin.so", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/plugin"}, {"filename": "libcp1plugin.so.0", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/plugin"}, {"filename": "libcp1plugin.so.0.0.0", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/plugin"}, {"filename": "git", "parent": "/usr/lib/git-core"}, {"filename": "git-add", "parent": "/usr/lib/git-core"}, {"filename": "git-add--interactive", "parent": "/usr/lib/git-core"}, {"filename": "git-am", "parent": "/usr/lib/git-core"}, {"filename": "git-annotate", "parent": "/usr/lib/git-core"}, {"filename": "git-apply", "parent": "/usr/lib/git-core"}, {"filename": "git-archive", "parent": "/usr/lib/git-core"}, {"filename": "git-bisect", "parent": "/usr/lib/git-core"}, {"filename": "git-bisect--helper", "parent": "/usr/lib/git-core"}, {"filename": "git-blame", "parent": "/usr/lib/git-core"}, {"filename": "git-branch", "parent": "/usr/lib/git-core"}, {"filename": "git-bundle", "parent": "/usr/lib/git-core"}, {"filename": "git-cat-file", "parent": "/usr/lib/git-core"}, {"filename": "git-check-attr", "parent": "/usr/lib/git-core"}, {"filename": "git-check-ignore", "parent": "/usr/lib/git-core"}, {"filename": "git-check-mailmap", "parent": "/usr/lib/git-core"}, {"filename": "git-checkout", "parent": "/usr/lib/git-core"}, {"filename": "git-checkout-index", "parent": "/usr/lib/git-core"}, {"filename": "git-check-ref-format", "parent": "/usr/lib/git-core"}, {"filename": "git-cherry", "parent": "/usr/lib/git-core"}, {"filename": "git-cherry-pick", "parent": "/usr/lib/git-core"}, {"filename": "git-clean", "parent": "/usr/lib/git-core"}, {"filename": "git-clone", "parent": "/usr/lib/git-core"}, {"filename": "git-column", "parent": "/usr/lib/git-core"}, {"filename": "git-commit", "parent": "/usr/lib/git-core"}, {"filename": "git-commit-tree", "parent": "/usr/lib/git-core"}, {"filename": "git-config", "parent": "/usr/lib/git-core"}, {"filename": "git-count-objects", "parent": "/usr/lib/git-core"}, {"filename": "git-credential", "parent": "/usr/lib/git-core"}, {"filename": "git-credential-cache", "parent": "/usr/lib/git-core"}, {"filename": "git-credential-cache--daemon", "parent": "/usr/lib/git-core"}, {"filename": "git-credential-store", "parent": "/usr/lib/git-core"}, {"filename": "git-daemon", "parent": "/usr/lib/git-core"}, {"filename": "git-describe", "parent": "/usr/lib/git-core"}, {"filename": "git-diff", "parent": "/usr/lib/git-core"}, {"filename": "git-diff-files", "parent": "/usr/lib/git-core"}, {"filename": "git-diff-index", "parent": "/usr/lib/git-core"}, {"filename": "git-difftool", "parent": "/usr/lib/git-core"}, {"filename": "git-difftool--helper", "parent": "/usr/lib/git-core"}, {"filename": "git-diff-tree", "parent": "/usr/lib/git-core"}, {"filename": "git-fast-export", "parent": "/usr/lib/git-core"}, {"filename": "git-fast-import", "parent": "/usr/lib/git-core"}, {"filename": "git-fetch", "parent": "/usr/lib/git-core"}, {"filename": "git-fetch-pack", "parent": "/usr/lib/git-core"}, {"filename": "git-filter-branch", "parent": "/usr/lib/git-core"}, {"filename": "git-fmt-merge-msg", "parent": "/usr/lib/git-core"}, {"filename": "git-for-each-ref", "parent": "/usr/lib/git-core"}, {"filename": "git-format-patch", "parent": "/usr/lib/git-core"}, {"filename": "git-fsck", "parent": "/usr/lib/git-core"}, {"filename": "git-fsck-objects", "parent": "/usr/lib/git-core"}, {"filename": "git-gc", "parent": "/usr/lib/git-core"}, {"filename": "git-get-tar-commit-id", "parent": "/usr/lib/git-core"}, {"filename": "git-grep", "parent": "/usr/lib/git-core"}, {"filename": "git-hash-object", "parent": "/usr/lib/git-core"}, {"filename": "git-help", "parent": "/usr/lib/git-core"}, {"filename": "git-http-backend", "parent": "/usr/lib/git-core"}, {"filename": "git-http-fetch", "parent": "/usr/lib/git-core"}, {"filename": "git-http-push", "parent": "/usr/lib/git-core"}, {"filename": "git-imap-send", "parent": "/usr/lib/git-core"}, {"filename": "git-index-pack", "parent": "/usr/lib/git-core"}, {"filename": "git-init", "parent": "/usr/lib/git-core"}, {"filename": "git-init-db", "parent": "/usr/lib/git-core"}, {"filename": "git-instaweb", "parent": "/usr/lib/git-core"}, {"filename": "git-interpret-trailers", "parent": "/usr/lib/git-core"}, {"filename": "git-log", "parent": "/usr/lib/git-core"}, {"filename": "git-ls-files", "parent": "/usr/lib/git-core"}, {"filename": "git-ls-remote", "parent": "/usr/lib/git-core"}, {"filename": "git-ls-tree", "parent": "/usr/lib/git-core"}, {"filename": "git-mailinfo", "parent": "/usr/lib/git-core"}, {"filename": "git-mailsplit", "parent": "/usr/lib/git-core"}, {"filename": "git-merge", "parent": "/usr/lib/git-core"}, {"filename": "git-merge-base", "parent": "/usr/lib/git-core"}, {"filename": "git-merge-file", "parent": "/usr/lib/git-core"}, {"filename": "git-merge-index", "parent": "/usr/lib/git-core"}, {"filename": "git-merge-octopus", "parent": "/usr/lib/git-core"}, {"filename": "git-merge-one-file", "parent": "/usr/lib/git-core"}, {"filename": "git-merge-ours", "parent": "/usr/lib/git-core"}, {"filename": "git-merge-recursive", "parent": "/usr/lib/git-core"}, {"filename": "git-merge-resolve", "parent": "/usr/lib/git-core"}, {"filename": "git-merge-subtree", "parent": "/usr/lib/git-core"}, {"filename": "git-mergetool", "parent": "/usr/lib/git-core"}, {"filename": "git-mergetool--lib", "parent": "/usr/lib/git-core"}, {"filename": "git-merge-tree", "parent": "/usr/lib/git-core"}, {"filename": "git-mktag", "parent": "/usr/lib/git-core"}, {"filename": "git-mktree", "parent": "/usr/lib/git-core"}, {"filename": "git-mv", "parent": "/usr/lib/git-core"}, {"filename": "git-name-rev", "parent": "/usr/lib/git-core"}, {"filename": "git-notes", "parent": "/usr/lib/git-core"}, {"filename": "git-pack-objects", "parent": "/usr/lib/git-core"}, {"filename": "git-pack-redundant", "parent": "/usr/lib/git-core"}, {"filename": "git-pack-refs", "parent": "/usr/lib/git-core"}, {"filename": "git-parse-remote", "parent": "/usr/lib/git-core"}, {"filename": "git-patch-id", "parent": "/usr/lib/git-core"}, {"filename": "git-prune", "parent": "/usr/lib/git-core"}, {"filename": "git-prune-packed", "parent": "/usr/lib/git-core"}, {"filename": "git-pull", "parent": "/usr/lib/git-core"}, {"filename": "git-push", "parent": "/usr/lib/git-core"}, {"filename": "git-quiltimport", "parent": "/usr/lib/git-core"}, {"filename": "git-read-tree", "parent": "/usr/lib/git-core"}, {"filename": "git-rebase", "parent": "/usr/lib/git-core"}, {"filename": "git-rebase--am", "parent": "/usr/lib/git-core"}, {"filename": "git-rebase--helper", "parent": "/usr/lib/git-core"}, {"filename": "git-rebase--interactive", "parent": "/usr/lib/git-core"}, {"filename": "git-rebase--merge", "parent": "/usr/lib/git-core"}, {"filename": "git-receive-pack", "parent": "/usr/lib/git-core"}, {"filename": "git-reflog", "parent": "/usr/lib/git-core"}, {"filename": "git-remote", "parent": "/usr/lib/git-core"}, {"filename": "git-remote-ext", "parent": "/usr/lib/git-core"}, {"filename": "git-remote-fd", "parent": "/usr/lib/git-core"}, {"filename": "git-remote-ftp", "parent": "/usr/lib/git-core"}, {"filename": "git-remote-ftps", "parent": "/usr/lib/git-core"}, {"filename": "git-remote-http", "parent": "/usr/lib/git-core"}, {"filename": "git-remote-https", "parent": "/usr/lib/git-core"}, {"filename": "git-remote-testsvn", "parent": "/usr/lib/git-core"}, {"filename": "git-repack", "parent": "/usr/lib/git-core"}, {"filename": "git-replace", "parent": "/usr/lib/git-core"}, {"filename": "git-request-pull", "parent": "/usr/lib/git-core"}, {"filename": "git-rerere", "parent": "/usr/lib/git-core"}, {"filename": "git-reset", "parent": "/usr/lib/git-core"}, {"filename": "git-revert", "parent": "/usr/lib/git-core"}, {"filename": "git-rev-list", "parent": "/usr/lib/git-core"}, {"filename": "git-rev-parse", "parent": "/usr/lib/git-core"}, {"filename": "git-rm", "parent": "/usr/lib/git-core"}, {"filename": "git-send-pack", "parent": "/usr/lib/git-core"}, {"filename": "git-shell", "parent": "/usr/lib/git-core"}, {"filename": "git-sh-i18n", "parent": "/usr/lib/git-core"}, {"filename": "git-sh-i18n--envsubst", "parent": "/usr/lib/git-core"}, {"filename": "git-shortlog", "parent": "/usr/lib/git-core"}, {"filename": "git-show", "parent": "/usr/lib/git-core"}, {"filename": "git-show-branch", "parent": "/usr/lib/git-core"}, {"filename": "git-show-index", "parent": "/usr/lib/git-core"}, {"filename": "git-show-ref", "parent": "/usr/lib/git-core"}, {"filename": "git-sh-prompt", "parent": "/usr/lib/git-core"}, {"filename": "git-sh-setup", "parent": "/usr/lib/git-core"}, {"filename": "git-stage", "parent": "/usr/lib/git-core"}, {"filename": "git-stash", "parent": "/usr/lib/git-core"}, {"filename": "git-status", "parent": "/usr/lib/git-core"}, {"filename": "git-stripspace", "parent": "/usr/lib/git-core"}, {"filename": "git-submodule", "parent": "/usr/lib/git-core"}, {"filename": "git-submodule--helper", "parent": "/usr/lib/git-core"}, {"filename": "git-subtree", "parent": "/usr/lib/git-core"}, {"filename": "git-symbolic-ref", "parent": "/usr/lib/git-core"}, {"filename": "git-tag", "parent": "/usr/lib/git-core"}, {"filename": "git-unpack-file", "parent": "/usr/lib/git-core"}, {"filename": "git-unpack-objects", "parent": "/usr/lib/git-core"}, {"filename": "git-update-index", "parent": "/usr/lib/git-core"}, {"filename": "git-update-ref", "parent": "/usr/lib/git-core"}, {"filename": "git-update-server-info", "parent": "/usr/lib/git-core"}, {"filename": "git-upload-archive", "parent": "/usr/lib/git-core"}, {"filename": "git-upload-pack", "parent": "/usr/lib/git-core"}, {"filename": "git-var", "parent": "/usr/lib/git-core"}, {"filename": "git-verify-commit", "parent": "/usr/lib/git-core"}, {"filename": "git-verify-pack", "parent": "/usr/lib/git-core"}, {"filename": "git-verify-tag", "parent": "/usr/lib/git-core"}, {"filename": "git-web--browse", "parent": "/usr/lib/git-core"}, {"filename": "git-whatchanged", "parent": "/usr/lib/git-core"}, {"filename": "git-worktree", "parent": "/usr/lib/git-core"}, {"filename": "git-write-tree", "parent": "/usr/lib/git-core"}, {"filename": "mergetools", "parent": "/usr/lib/git-core"}, {"filename": "araxis", "parent": "/usr/lib/git-core/mergetools"}, {"filename": "bc", "parent": "/usr/lib/git-core/mergetools"}, {"filename": "bc3", "parent": "/usr/lib/git-core/mergetools"}, {"filename": "codecompare", "parent": "/usr/lib/git-core/mergetools"}, {"filename": "deltawalker", "parent": "/usr/lib/git-core/mergetools"}, {"filename": "diffmerge", "parent": "/usr/lib/git-core/mergetools"}, {"filename": "diffuse", "parent": "/usr/lib/git-core/mergetools"}, {"filename": "ecmerge", "parent": "/usr/lib/git-core/mergetools"}, {"filename": "emerge", "parent": "/usr/lib/git-core/mergetools"}, {"filename": "examdiff", "parent": "/usr/lib/git-core/mergetools"}, {"filename": "gvimdiff", "parent": "/usr/lib/git-core/mergetools"}, {"filename": "gvimdiff2", "parent": "/usr/lib/git-core/mergetools"}, {"filename": "gvimdiff3", "parent": "/usr/lib/git-core/mergetools"}, {"filename": "kdiff3", "parent": "/usr/lib/git-core/mergetools"}, {"filename": "kompare", "parent": "/usr/lib/git-core/mergetools"}, {"filename": "meld", "parent": "/usr/lib/git-core/mergetools"}, {"filename": "opendiff", "parent": "/usr/lib/git-core/mergetools"}, {"filename": "p4merge", "parent": "/usr/lib/git-core/mergetools"}, {"filename": "tkdiff", "parent": "/usr/lib/git-core/mergetools"}, {"filename": "tortoisemerge", "parent": "/usr/lib/git-core/mergetools"}, {"filename": "vimdiff", "parent": "/usr/lib/git-core/mergetools"}, {"filename": "vimdiff2", "parent": "/usr/lib/git-core/mergetools"}, {"filename": "vimdiff3", "parent": "/usr/lib/git-core/mergetools"}, {"filename": "winmerge", "parent": "/usr/lib/git-core/mergetools"}, {"filename": "xxdiff", "parent": "/usr/lib/git-core/mergetools"}, {"filename": "dirmngr_ldap", "parent": "/usr/lib/gnupg"}, {"filename": "gpg-check-pattern", "parent": "/usr/lib/gnupg"}, {"filename": "gpg-preset-passphrase", "parent": "/usr/lib/gnupg"}, {"filename": "gpg-protect-tool", "parent": "/usr/lib/gnupg"}, {"filename": "gpg-wks-client", "parent": "/usr/lib/gnupg"}, {"filename": "gpg-preset-passphrase", "parent": "/usr/lib/gnupg2"}, {"filename": "gpg-protect-tool", "parent": "/usr/lib/gnupg2"}, {"filename": "ld", "parent": "/usr/lib/gold-ld"}, {"filename": "grog", "parent": "/usr/lib/groff"}, {"filename": "site-tmac", "parent": "/usr/lib/groff"}, {"filename": "subs.pl", "parent": "/usr/lib/groff/grog"}, {"filename": "grub-mkconfig_lib", "parent": "/usr/lib/grub"}, {"filename": "i386-pc", "parent": "/usr/lib/grub"}, {"filename": "915resolution.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "acpi.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "adler32.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "affs.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "afs.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "ahci.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "all_video.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "aout.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "archelp.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "ata.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "at_keyboard.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "backtrace.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "bfs.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "biosdisk.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "bitmap.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "bitmap_scale.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "blocklist.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "boot_hybrid.img", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "boot.img", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "boot.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "bsd.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "bswap_test.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "btrfs.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "bufio.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "cat.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "cbfs.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "cbls.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "cbmemc.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "cbtable.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "cbtime.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "cdboot.img", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "chain.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "cmdline_cat_test.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "cmosdump.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "cmostest.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "cmp.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "cmp_test.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "command.lst", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "configfile.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "config.h", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "cpio_be.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "cpio.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "cpuid.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "crc64.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "cryptodisk.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "crypto.lst", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "crypto.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "cs5536.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "ctz_test.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "datehook.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "date.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "datetime.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "diskboot.img", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "diskfilter.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "disk.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "div.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "div_test.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "dm_nv.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "drivemap.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "echo.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "efiemu32.o", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "efiemu64.o", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "efiemu.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "ehci.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "elf.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "eval.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "exfat.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "exfctest.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "ext2.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "extcmd.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "fat.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "file.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "font.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "freedos.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "fshelp.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "fs.lst", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "functional_test.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "g2hdr.bin", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "g2hdr.img", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "g2ldr.img", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "g2ldr.mbr", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_arcfour.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_blowfish.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_camellia.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_cast5.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_crc.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_des.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_dsa.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_idea.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_md4.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_md5.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_rfc2268.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_rijndael.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_rmd160.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_rsa.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_seed.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_serpent.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_sha1.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_sha256.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_sha512.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_tiger.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_twofish.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gcry_whirlpool.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gdb.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "geli.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gettext.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gfxmenu.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gfxterm_background.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gfxterm_menu.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gfxterm.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gptsync.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "grldr.img", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "grub-bios-setup", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "grub-ntldr-img", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "gzio.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "halt.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "hashsum.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "hdparm.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "hello.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "help.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "hexdump.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "hfs.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "hfspluscomp.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "hfsplus.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "http.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "hwmatch.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "iorw.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "iso9660.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "jfs.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "jpeg.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "kernel.img", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "keylayouts.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "keystatus.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "ldm.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "legacycfg.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "legacy_password_test.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "linux16.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "linux.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "lnxboot.img", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "loadenv.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "loopback.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "lsacpi.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "lsapm.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "lsmmap.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "ls.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "lspci.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "luks.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "lvm.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "lzma_decompress.img", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "lzopio.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "macbless.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "macho.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "mda_text.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "mdraid09_be.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "mdraid09.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "mdraid1x.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "memdisk.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "memrw.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "minicmd.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "minix2_be.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "minix2.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "minix3_be.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "minix3.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "minix_be.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "minix.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "mmap.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "moddep.lst", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "modinfo.sh", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "morse.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "mpi.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "msdospart.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "mul_test.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "multiboot2.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "multiboot.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "nativedisk.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "net.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "newc.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "nilfs2.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "normal.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "ntfscomp.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "ntfs.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "ntldr.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "odc.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "offsetio.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "ohci.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "part_acorn.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "part_amiga.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "part_apple.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "part_bsd.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "part_dfly.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "part_dvh.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "part_gpt.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "partmap.lst", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "part_msdos.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "part_plan.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "part_sun.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "part_sunpc.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "parttool.lst", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "parttool.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "password.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "password_pbkdf2.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "pata.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "pbkdf2.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "pbkdf2_test.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "pcidump.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "pci.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "plan9.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "play.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "png.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "priority_queue.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "probe.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "procfs.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "progress.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "pxeboot.img", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "pxechain.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "pxe.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "raid5rec.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "raid6rec.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "random.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "read.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "reboot.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "regexp.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "reiserfs.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "relocator.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "romfs.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "scsi.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "search_fs_file.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "search_fs_uuid.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "search_label.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "search.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "sendkey.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "serial.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "setjmp.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "setjmp_test.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "setpci.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "sfs.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "shift_test.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "signature_test.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "sleep.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "sleep_test.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "spkmodem.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "squash4.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "syslinuxcfg.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "tar.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "terminal.lst", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "terminal.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "terminfo.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "test_blockarg.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "testload.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "test.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "testspeed.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "tftp.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "tga.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "time.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "trig.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "tr.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "truecrypt.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "true.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "udf.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "ufs1_be.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "ufs1.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "ufs2.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "uhci.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "usb_keyboard.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "usb.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "usbms.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "usbserial_common.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "usbserial_ftdi.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "usbserial_pl2303.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "usbserial_usbdebug.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "usbtest.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "vbe.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "verify.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "vga.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "vga_text.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "video_bochs.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "video_cirrus.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "video_colors.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "video_fb.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "videoinfo.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "video.lst", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "video.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "videotest_checksum.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "videotest.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "xfs.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "xnu.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "xnu_uuid.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "xnu_uuid_test.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "xzio.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "zfscrypt.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "zfsinfo.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "zfs.mod", "parent": "/usr/lib/grub/i386-pc"}, {"filename": "update-grub", "parent": "/usr/lib/grub-legacy"}, {"filename": "install", "parent": "/usr/lib/initcpio"}, {"filename": "bcache", "parent": "/usr/lib/initcpio/install"}, {"filename": "bin", "parent": "/usr/lib/initramfs-tools"}, {"filename": "etc", "parent": "/usr/lib/initramfs-tools"}, {"filename": "busybox", "parent": "/usr/lib/initramfs-tools/bin"}, {"filename": "rzscontrol", "parent": "/usr/lib/initramfs-tools/bin"}, {"filename": "wait-for-root", "parent": "/usr/lib/initramfs-tools/bin"}, {"filename": "dhcp", "parent": "/usr/lib/initramfs-tools/etc"}, {"filename": "dhclient.conf", "parent": "/usr/lib/initramfs-tools/etc/dhcp"}, {"filename": "dhclient-enter-hooks.d", "parent": "/usr/lib/initramfs-tools/etc/dhcp"}, {"filename": "config", "parent": "/usr/lib/initramfs-tools/etc/dhcp/dhclient-enter-hooks.d"}, {"filename": "install.d", "parent": "/usr/lib/kernel"}, {"filename": "50-depmod.install", "parent": "/usr/lib/kernel/install.d"}, {"filename": "85-initrd.install", "parent": "/usr/lib/kernel/install.d"}, {"filename": "90-loaderentry.install", "parent": "/usr/lib/kernel/install.d"}, {"filename": "bin", "parent": "/usr/lib/klibc"}, {"filename": "cat", "parent": "/usr/lib/klibc/bin"}, {"filename": "chroot", "parent": "/usr/lib/klibc/bin"}, {"filename": "cpio", "parent": "/usr/lib/klibc/bin"}, {"filename": "dd", "parent": "/usr/lib/klibc/bin"}, {"filename": "dmesg", "parent": "/usr/lib/klibc/bin"}, {"filename": "false", "parent": "/usr/lib/klibc/bin"}, {"filename": "fstype", "parent": "/usr/lib/klibc/bin"}, {"filename": "gunzip", "parent": "/usr/lib/klibc/bin"}, {"filename": "gzip", "parent": "/usr/lib/klibc/bin"}, {"filename": "halt", "parent": "/usr/lib/klibc/bin"}, {"filename": "ipconfig", "parent": "/usr/lib/klibc/bin"}, {"filename": "kill", "parent": "/usr/lib/klibc/bin"}, {"filename": "kinit", "parent": "/usr/lib/klibc/bin"}, {"filename": "kinit.shared", "parent": "/usr/lib/klibc/bin"}, {"filename": "ln", "parent": "/usr/lib/klibc/bin"}, {"filename": "losetup", "parent": "/usr/lib/klibc/bin"}, {"filename": "ls", "parent": "/usr/lib/klibc/bin"}, {"filename": "minips", "parent": "/usr/lib/klibc/bin"}, {"filename": "mkdir", "parent": "/usr/lib/klibc/bin"}, {"filename": "mkfifo", "parent": "/usr/lib/klibc/bin"}, {"filename": "mknod", "parent": "/usr/lib/klibc/bin"}, {"filename": "mount", "parent": "/usr/lib/klibc/bin"}, {"filename": "mv", "parent": "/usr/lib/klibc/bin"}, {"filename": "nfsmount", "parent": "/usr/lib/klibc/bin"}, {"filename": "nuke", "parent": "/usr/lib/klibc/bin"}, {"filename": "pivot_root", "parent": "/usr/lib/klibc/bin"}, {"filename": "poweroff", "parent": "/usr/lib/klibc/bin"}, {"filename": "readlink", "parent": "/usr/lib/klibc/bin"}, {"filename": "reboot", "parent": "/usr/lib/klibc/bin"}, {"filename": "resume", "parent": "/usr/lib/klibc/bin"}, {"filename": "run-init", "parent": "/usr/lib/klibc/bin"}, {"filename": "sh.shared", "parent": "/usr/lib/klibc/bin"}, {"filename": "sleep", "parent": "/usr/lib/klibc/bin"}, {"filename": "sync", "parent": "/usr/lib/klibc/bin"}, {"filename": "true", "parent": "/usr/lib/klibc/bin"}, {"filename": "umount", "parent": "/usr/lib/klibc/bin"}, {"filename": "uname", "parent": "/usr/lib/klibc/bin"}, {"filename": "zcat", "parent": "/usr/lib/klibc/bin"}, {"filename": "ls-dbus-backend", "parent": "/usr/lib/language-selector"}, {"filename": "triggers", "parent": "/usr/lib/linux"}, {"filename": "50mounted-tests", "parent": "/usr/lib/linux-boot-probes"}, {"filename": "mounted", "parent": "/usr/lib/linux-boot-probes"}, {"filename": "40grub", "parent": "/usr/lib/linux-boot-probes/mounted"}, {"filename": "40grub2", "parent": "/usr/lib/linux-boot-probes/mounted"}, {"filename": "50lilo", "parent": "/usr/lib/linux-boot-probes/mounted"}, {"filename": "90fallback", "parent": "/usr/lib/linux-boot-probes/mounted"}, {"filename": "C.UTF-8", "parent": "/usr/lib/locale"}, {"filename": "locale-archive", "parent": "/usr/lib/locale"}, {"filename": "LC_ADDRESS", "parent": "/usr/lib/locale/C.UTF-8"}, {"filename": "LC_COLLATE", "parent": "/usr/lib/locale/C.UTF-8"}, {"filename": "LC_CTYPE", "parent": "/usr/lib/locale/C.UTF-8"}, {"filename": "LC_IDENTIFICATION", "parent": "/usr/lib/locale/C.UTF-8"}, {"filename": "LC_MEASUREMENT", "parent": "/usr/lib/locale/C.UTF-8"}, {"filename": "LC_MESSAGES", "parent": "/usr/lib/locale/C.UTF-8"}, {"filename": "LC_MONETARY", "parent": "/usr/lib/locale/C.UTF-8"}, {"filename": "LC_NAME", "parent": "/usr/lib/locale/C.UTF-8"}, {"filename": "LC_NUMERIC", "parent": "/usr/lib/locale/C.UTF-8"}, {"filename": "LC_PAPER", "parent": "/usr/lib/locale/C.UTF-8"}, {"filename": "LC_TELEPHONE", "parent": "/usr/lib/locale/C.UTF-8"}, {"filename": "LC_TIME", "parent": "/usr/lib/locale/C.UTF-8"}, {"filename": "SYS_LC_MESSAGES", "parent": "/usr/lib/locale/C.UTF-8/LC_MESSAGES"}, {"filename": "liblxcfs.so", "parent": "/usr/lib/lxcfs"}, {"filename": "libdqlite.so.0", "parent": "/usr/lib/lxd"}, {"filename": "libdqlite.so.0.0.1", "parent": "/usr/lib/lxd"}, {"filename": "libsqlite3.so.0", "parent": "/usr/lib/lxd"}, {"filename": "libsqlite3.so.0.8.6", "parent": "/usr/lib/lxd"}, {"filename": "lxd", "parent": "/usr/lib/lxd"}, {"filename": "shutdown", "parent": "/usr/lib/lxd"}, {"filename": "upgrade-bridge", "parent": "/usr/lib/lxd"}, {"filename": "globbing", "parent": "/usr/lib/man-db"}, {"filename": "libman-2.8.3.so", "parent": "/usr/lib/man-db"}, {"filename": "libmandb-2.8.3.so", "parent": "/usr/lib/man-db"}, {"filename": "libmandb.so", "parent": "/usr/lib/man-db"}, {"filename": "libman.so", "parent": "/usr/lib/man-db"}, {"filename": "man", "parent": "/usr/lib/man-db"}, {"filename": "manconv", "parent": "/usr/lib/man-db"}, {"filename": "mandb", "parent": "/usr/lib/man-db"}, {"filename": "zsoelim", "parent": "/usr/lib/man-db"}, {"filename": "debian-view", "parent": "/usr/lib/mime"}, {"filename": "mailcap", "parent": "/usr/lib/mime"}, {"filename": "packages", "parent": "/usr/lib/mime"}, {"filename": "groff-base", "parent": "/usr/lib/mime/packages"}, {"filename": "info", "parent": "/usr/lib/mime/packages"}, {"filename": "less", "parent": "/usr/lib/mime/packages"}, {"filename": "man-db", "parent": "/usr/lib/mime/packages"}, {"filename": "mime-support", "parent": "/usr/lib/mime/packages"}, {"filename": "sensible-utils", "parent": "/usr/lib/mime/packages"}, {"filename": "tar", "parent": "/usr/lib/mime/packages"}, {"filename": "util-linux", "parent": "/usr/lib/mime/packages"}, {"filename": "vim-common", "parent": "/usr/lib/mime/packages"}, {"filename": "dormant.d", "parent": "/usr/lib/networkd-dispatcher"}, {"filename": "no-carrier.d", "parent": "/usr/lib/networkd-dispatcher"}, {"filename": "off.d", "parent": "/usr/lib/networkd-dispatcher"}, {"filename": "routable.d", "parent": "/usr/lib/networkd-dispatcher"}, {"filename": "agent-launch", "parent": "/usr/lib/openssh"}, {"filename": "sftp-server", "parent": "/usr/lib/openssh"}, {"filename": "ssh-keysign", "parent": "/usr/lib/openssh"}, {"filename": "ssh-pkcs11-helper", "parent": "/usr/lib/openssh"}, {"filename": "ssh-session-cleanup", "parent": "/usr/lib/openssh"}, {"filename": "plugins", "parent": "/usr/lib/open-vm-tools"}, {"filename": "common", "parent": "/usr/lib/open-vm-tools/plugins"}, {"filename": "vmsvc", "parent": "/usr/lib/open-vm-tools/plugins"}, {"filename": "libhgfsServer.so", "parent": "/usr/lib/open-vm-tools/plugins/common"}, {"filename": "libvix.so", "parent": "/usr/lib/open-vm-tools/plugins/common"}, {"filename": "libdeployPkgPlugin.so", "parent": "/usr/lib/open-vm-tools/plugins/vmsvc"}, {"filename": "libgrabbitmqProxy.so", "parent": "/usr/lib/open-vm-tools/plugins/vmsvc"}, {"filename": "libguestInfo.so", "parent": "/usr/lib/open-vm-tools/plugins/vmsvc"}, {"filename": "libpowerOps.so", "parent": "/usr/lib/open-vm-tools/plugins/vmsvc"}, {"filename": "libresolutionKMS.so", "parent": "/usr/lib/open-vm-tools/plugins/vmsvc"}, {"filename": "libtimeSync.so", "parent": "/usr/lib/open-vm-tools/plugins/vmsvc"}, {"filename": "libvmbackup.so", "parent": "/usr/lib/open-vm-tools/plugins/vmsvc"}, {"filename": "newns", "parent": "/usr/lib/os-prober"}, {"filename": "50mounted-tests", "parent": "/usr/lib/os-probes"}, {"filename": "init", "parent": "/usr/lib/os-probes"}, {"filename": "mounted", "parent": "/usr/lib/os-probes"}, {"filename": "10filesystems", "parent": "/usr/lib/os-probes/init"}, {"filename": "05efi", "parent": "/usr/lib/os-probes/mounted"}, {"filename": "10freedos", "parent": "/usr/lib/os-probes/mounted"}, {"filename": "10qnx", "parent": "/usr/lib/os-probes/mounted"}, {"filename": "20macosx", "parent": "/usr/lib/os-probes/mounted"}, {"filename": "20microsoft", "parent": "/usr/lib/os-probes/mounted"}, {"filename": "30utility", "parent": "/usr/lib/os-probes/mounted"}, {"filename": "40lsb", "parent": "/usr/lib/os-probes/mounted"}, {"filename": "70hurd", "parent": "/usr/lib/os-probes/mounted"}, {"filename": "80minix", "parent": "/usr/lib/os-probes/mounted"}, {"filename": "83haiku", "parent": "/usr/lib/os-probes/mounted"}, {"filename": "90linux-distro", "parent": "/usr/lib/os-probes/mounted"}, {"filename": "90solaris", "parent": "/usr/lib/os-probes/mounted"}, {"filename": "efi", "parent": "/usr/lib/os-probes/mounted"}, {"filename": "10elilo", "parent": "/usr/lib/os-probes/mounted/efi"}, {"filename": "20microsoft", "parent": "/usr/lib/os-probes/mounted/efi"}, {"filename": "power.d", "parent": "/usr/lib/pm-utils"}, {"filename": "sleep.d", "parent": "/usr/lib/pm-utils"}, {"filename": "95hdparm-apm", "parent": "/usr/lib/pm-utils/power.d"}, {"filename": "000record-status", "parent": "/usr/lib/pm-utils/sleep.d"}, {"filename": "95hdparm-apm", "parent": "/usr/lib/pm-utils/sleep.d"}, {"filename": "polkit-agent-helper-1", "parent": "/usr/lib/policykit-1"}, {"filename": "polkitd", "parent": "/usr/lib/policykit-1"}, {"filename": "dist-packages", "parent": "/usr/lib/python2.7"}, {"filename": "lsb_release.py", "parent": "/usr/lib/python2.7/dist-packages"}, {"filename": "dist-packages", "parent": "/usr/lib/python3"}, {"filename": "apport", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "apport_python_hook.py", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "apt", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "apt_inst.cpython-36m-x86_64-linux-gnu.so", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "apt_inst.pyi", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "apt_pkg.cpython-36m-x86_64-linux-gnu.so", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "apt_pkg.pyi", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "aptsources", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "asn1crypto", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "asn1crypto-0.24.0.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "attr", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "attrs-17.4.0.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "automat", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "Automat-0.6.0.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "blinker", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "blinker-1.4.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "certifi", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "certifi-2018.1.18.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "_cffi_backend.cpython-36m-x86_64-linux-gnu.so", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "chardet", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "chardet-3.0.4.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "click", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "click-6.7.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "cloudinit", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "cloud_init-19.1.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "colorama", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "colorama-0.3.7.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "CommandNotFound", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "command_not_found-0.3.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "configobj-5.0.6.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "configobj.py", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "constantly", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "constantly-15.1.0.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "Crypto", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "cryptography", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "cryptography-2.1.4.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "dbus", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "_dbus_bindings.cpython-36m-x86_64-linux-gnu.so", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "_dbus_glib_bindings.cpython-36m-x86_64-linux-gnu.so", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "deb822.py", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "debconf.py", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "debian", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "debian_bundle", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "distro_info-0.18ubuntu0.18.04.1.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "distro_info.py", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "distro_info_test", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "DistUpgrade", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "easy_install.py", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "gi", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "httplib2", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "httplib2-0.9.2.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "HweSupportStatus", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "hyperlink", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "hyperlink-17.3.1.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "idna", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "idna-2.6.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "incremental", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "incremental-16.10.1.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "janitor", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "jinja2", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "Jinja2-2.10.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "jsonpatch-1.16.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "jsonpatch.py", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "jsonpointer-1.10.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "jsonpointer.py", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "jsonschema", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "jsonschema-2.6.0.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "jwt", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "keyring", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "keyring-10.6.0.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "keyrings", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "keyrings.alt-3.0.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "landscape", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "LanguageSelector", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "language_selector-0.1.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "language_support_pkgs.py", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "lsb_release.py", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "markupsafe", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "MarkupSafe-1.0.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "netifaces-0.10.4.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "netifaces.cpython-36m-x86_64-linux-gnu.so", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "oauthlib", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "oauthlib-2.0.6.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "OpenSSL", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "PAM-0.4.2.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "PAM.cpython-36m-x86_64-linux-gnu.so", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "pip", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "pip-9.0.1.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "pkg_resources", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "problem_report.py", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "pyasn1", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "pyasn1-0.4.2.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "pyasn1_modules", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "pyasn1_modules-0.2.1.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "__pycache__", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "pycrypto-2.6.1.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "pygobject-3.26.1.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "pygtkcompat", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "PyJWT-1.5.3.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "pyOpenSSL-17.5.0.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "pyserial-3.4.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "python_apt-1.6.5_ubuntu0.2.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "python_debian-0.1.32.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "pyxdg-0.25.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "PyYAML-3.12.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "README.txt", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "requests", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "requests-2.18.4.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "requests_unixsocket", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "requests_unixsocket-0.1.5.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "secretstorage", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "SecretStorage-2.3.1.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "serial", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "service_identity", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "service_identity-16.0.0.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "setuptools", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "setuptools-39.0.1.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "six-1.11.0.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "six.py", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "_snack.cpython-36m-x86_64-linux-gnu.so", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "snack.py", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "softwareproperties", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "ssh_import_id", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "ssh_import_id-5.7.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "systemd", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "systemd_python-234.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "twisted", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "Twisted-17.9.0.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "ufw", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "ufw-0.36.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "unattended_upgrades-0.1.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "UpdateManager", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "urllib3", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "urllib3-1.22.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "validate.py", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "_version.py", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "wheel", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "wheel-0.30.0.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "xdg", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "yaml", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "_yaml.cpython-36m-x86_64-linux-gnu.so", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "zope", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "zope.interface-4.3.2.egg-info", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "zope.interface-4.3.2-nspkg.pth", "parent": "/usr/lib/python3/dist-packages"}, {"filename": "crashdb_impl", "parent": "/usr/lib/python3/dist-packages/apport"}, {"filename": "crashdb.py", "parent": "/usr/lib/python3/dist-packages/apport"}, {"filename": "fileutils.py", "parent": "/usr/lib/python3/dist-packages/apport"}, {"filename": "hookutils.py", "parent": "/usr/lib/python3/dist-packages/apport"}, {"filename": "__init__.py", "parent": "/usr/lib/python3/dist-packages/apport"}, {"filename": "packaging_impl.py", "parent": "/usr/lib/python3/dist-packages/apport"}, {"filename": "packaging.py", "parent": "/usr/lib/python3/dist-packages/apport"}, {"filename": "__pycache__", "parent": "/usr/lib/python3/dist-packages/apport"}, {"filename": "report.py", "parent": "/usr/lib/python3/dist-packages/apport"}, {"filename": "REThread.py", "parent": "/usr/lib/python3/dist-packages/apport"}, {"filename": "sandboxutils.py", "parent": "/usr/lib/python3/dist-packages/apport"}, {"filename": "ui.py", "parent": "/usr/lib/python3/dist-packages/apport"}, {"filename": "debian.py", "parent": "/usr/lib/python3/dist-packages/apport/crashdb_impl"}, {"filename": "__init__.py", "parent": "/usr/lib/python3/dist-packages/apport/crashdb_impl"}, {"filename": "launchpad.py", "parent": "/usr/lib/python3/dist-packages/apport/crashdb_impl"}, {"filename": "memory.py", "parent": "/usr/lib/python3/dist-packages/apport/crashdb_impl"}, {"filename": "__pycache__", "parent": "/usr/lib/python3/dist-packages/apport/crashdb_impl"}, {"filename": "debian.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/apport/crashdb_impl/__pycache__"}, {"filename": "__init__.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/apport/crashdb_impl/__pycache__"}, {"filename": "launchpad.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/apport/crashdb_impl/__pycache__"}, {"filename": "memory.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/apport/crashdb_impl/__pycache__"}, {"filename": "crashdb.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/apport/__pycache__"}, {"filename": "fileutils.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/apport/__pycache__"}, {"filename": "hookutils.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/apport/__pycache__"}, {"filename": "__init__.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/apport/__pycache__"}, {"filename": "packaging.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/apport/__pycache__"}, {"filename": "packaging_impl.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/apport/__pycache__"}, {"filename": "report.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/apport/__pycache__"}, {"filename": "REThread.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/apport/__pycache__"}, {"filename": "sandboxutils.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/apport/__pycache__"}, {"filename": "ui.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/apport/__pycache__"}, {"filename": "auth.py", "parent": "/usr/lib/python3/dist-packages/apt"}, {"filename": "cache.py", "parent": "/usr/lib/python3/dist-packages/apt"}, {"filename": "cdrom.py", "parent": "/usr/lib/python3/dist-packages/apt"}, {"filename": "debfile.py", "parent": "/usr/lib/python3/dist-packages/apt"}, {"filename": "__init__.py", "parent": "/usr/lib/python3/dist-packages/apt"}, {"filename": "package.py", "parent": "/usr/lib/python3/dist-packages/apt"}, {"filename": "progress", "parent": "/usr/lib/python3/dist-packages/apt"}, {"filename": "__pycache__", "parent": "/usr/lib/python3/dist-packages/apt"}, {"filename": "utils.py", "parent": "/usr/lib/python3/dist-packages/apt"}, {"filename": "base.py", "parent": "/usr/lib/python3/dist-packages/apt/progress"}, {"filename": "__init__.py", "parent": "/usr/lib/python3/dist-packages/apt/progress"}, {"filename": "__pycache__", "parent": "/usr/lib/python3/dist-packages/apt/progress"}, {"filename": "text.py", "parent": "/usr/lib/python3/dist-packages/apt/progress"}, {"filename": "base.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/apt/progress/__pycache__"}, {"filename": "__init__.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/apt/progress/__pycache__"}, {"filename": "text.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/apt/progress/__pycache__"}, {"filename": "auth.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/apt/__pycache__"}, {"filename": "cache.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/apt/__pycache__"}, {"filename": "cdrom.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/apt/__pycache__"}, {"filename": "debfile.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/apt/__pycache__"}, {"filename": "__init__.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/apt/__pycache__"}, {"filename": "package.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/apt/__pycache__"}, {"filename": "utils.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/apt/__pycache__"}, {"filename": "distinfo.py", "parent": "/usr/lib/python3/dist-packages/aptsources"}, {"filename": "distro.py", "parent": "/usr/lib/python3/dist-packages/aptsources"}, {"filename": "__init__.py", "parent": "/usr/lib/python3/dist-packages/aptsources"}, {"filename": "__pycache__", "parent": "/usr/lib/python3/dist-packages/aptsources"}, {"filename": "sourceslist.py", "parent": "/usr/lib/python3/dist-packages/aptsources"}, {"filename": "distinfo.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/aptsources/__pycache__"}, {"filename": "distro.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/aptsources/__pycache__"}, {"filename": "__init__.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/aptsources/__pycache__"}, {"filename": "sourceslist.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/aptsources/__pycache__"}, {"filename": "algos.py", "parent": "/usr/lib/python3/dist-packages/asn1crypto"}, {"filename": "cms.py", "parent": "/usr/lib/python3/dist-packages/asn1crypto"}, {"filename": "core.py", "parent": "/usr/lib/python3/dist-packages/asn1crypto"}, {"filename": "crl.py", "parent": "/usr/lib/python3/dist-packages/asn1crypto"}, {"filename": "csr.py", "parent": "/usr/lib/python3/dist-packages/asn1crypto"}, {"filename": "_elliptic_curve.py", "parent": "/usr/lib/python3/dist-packages/asn1crypto"}, {"filename": "_errors.py", "parent": "/usr/lib/python3/dist-packages/asn1crypto"}, {"filename": "_ffi.py", "parent": "/usr/lib/python3/dist-packages/asn1crypto"}, {"filename": "_inet.py", "parent": "/usr/lib/python3/dist-packages/asn1crypto"}, {"filename": "__init__.py", "parent": "/usr/lib/python3/dist-packages/asn1crypto"}, {"filename": "_int.py", "parent": "/usr/lib/python3/dist-packages/asn1crypto"}, {"filename": "_iri.py", "parent": "/usr/lib/python3/dist-packages/asn1crypto"}, {"filename": "keys.py", "parent": "/usr/lib/python3/dist-packages/asn1crypto"}, {"filename": "ocsp.py", "parent": "/usr/lib/python3/dist-packages/asn1crypto"}, {"filename": "_ordereddict.py", "parent": "/usr/lib/python3/dist-packages/asn1crypto"}, {"filename": "parser.py", "parent": "/usr/lib/python3/dist-packages/asn1crypto"}, {"filename": "pdf.py", "parent": "/usr/lib/python3/dist-packages/asn1crypto"}, {"filename": "pem.py", "parent": "/usr/lib/python3/dist-packages/asn1crypto"}, {"filename": "_perf", "parent": "/usr/lib/python3/dist-packages/asn1crypto"}, {"filename": "pkcs12.py", "parent": "/usr/lib/python3/dist-packages/asn1crypto"}, {"filename": "__pycache__", "parent": "/usr/lib/python3/dist-packages/asn1crypto"}, {"filename": "_teletex_codec.py", "parent": "/usr/lib/python3/dist-packages/asn1crypto"}, {"filename": "tsp.py", "parent": "/usr/lib/python3/dist-packages/asn1crypto"}, {"filename": "_types.py", "parent": "/usr/lib/python3/dist-packages/asn1crypto"}, {"filename": "util.py", "parent": "/usr/lib/python3/dist-packages/asn1crypto"}, {"filename": "version.py", "parent": "/usr/lib/python3/dist-packages/asn1crypto"}, {"filename": "x509.py", "parent": "/usr/lib/python3/dist-packages/asn1crypto"}, {"filename": "_big_num_ctypes.py", "parent": "/usr/lib/python3/dist-packages/asn1crypto/_perf"}, {"filename": "__init__.py", "parent": "/usr/lib/python3/dist-packages/asn1crypto/_perf"}, {"filename": "__pycache__", "parent": "/usr/lib/python3/dist-packages/asn1crypto/_perf"}, {"filename": "_big_num_ctypes.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/asn1crypto/_perf/__pycache__"}, {"filename": "__init__.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/asn1crypto/_perf/__pycache__"}, {"filename": "algos.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/asn1crypto/__pycache__"}, {"filename": "cms.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/asn1crypto/__pycache__"}, {"filename": "core.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/asn1crypto/__pycache__"}, {"filename": "crl.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/asn1crypto/__pycache__"}, {"filename": "csr.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/asn1crypto/__pycache__"}, {"filename": "_elliptic_curve.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/asn1crypto/__pycache__"}, {"filename": "_errors.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/asn1crypto/__pycache__"}, {"filename": "_ffi.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/asn1crypto/__pycache__"}, {"filename": "_inet.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/asn1crypto/__pycache__"}, {"filename": "__init__.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/asn1crypto/__pycache__"}, {"filename": "_int.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/asn1crypto/__pycache__"}, {"filename": "_iri.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/asn1crypto/__pycache__"}, {"filename": "keys.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/asn1crypto/__pycache__"}, {"filename": "ocsp.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/asn1crypto/__pycache__"}, {"filename": "_ordereddict.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/asn1crypto/__pycache__"}, {"filename": "parser.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/asn1crypto/__pycache__"}, {"filename": "pdf.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/asn1crypto/__pycache__"}, {"filename": "pem.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/asn1crypto/__pycache__"}, {"filename": "pkcs12.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/asn1crypto/__pycache__"}, {"filename": "_teletex_codec.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/asn1crypto/__pycache__"}, {"filename": "tsp.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/asn1crypto/__pycache__"}, {"filename": "_types.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/asn1crypto/__pycache__"}, {"filename": "util.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/asn1crypto/__pycache__"}, {"filename": "version.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/asn1crypto/__pycache__"}, {"filename": "x509.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/asn1crypto/__pycache__"}, {"filename": "dependency_links.txt", "parent": "/usr/lib/python3/dist-packages/asn1crypto-0.24.0.egg-info"}, {"filename": "PKG-INFO", "parent": "/usr/lib/python3/dist-packages/asn1crypto-0.24.0.egg-info"}, {"filename": "top_level.txt", "parent": "/usr/lib/python3/dist-packages/asn1crypto-0.24.0.egg-info"}, {"filename": "_compat.py", "parent": "/usr/lib/python3/dist-packages/attr"}, {"filename": "_config.py", "parent": "/usr/lib/python3/dist-packages/attr"}, {"filename": "converters.py", "parent": "/usr/lib/python3/dist-packages/attr"}, {"filename": "exceptions.py", "parent": "/usr/lib/python3/dist-packages/attr"}, {"filename": "filters.py", "parent": "/usr/lib/python3/dist-packages/attr"}, {"filename": "_funcs.py", "parent": "/usr/lib/python3/dist-packages/attr"}, {"filename": "__init__.py", "parent": "/usr/lib/python3/dist-packages/attr"}, {"filename": "_make.py", "parent": "/usr/lib/python3/dist-packages/attr"}, {"filename": "__pycache__", "parent": "/usr/lib/python3/dist-packages/attr"}, {"filename": "validators.py", "parent": "/usr/lib/python3/dist-packages/attr"}, {"filename": "_compat.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/attr/__pycache__"}, {"filename": "_config.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/attr/__pycache__"}, {"filename": "converters.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/attr/__pycache__"}, {"filename": "exceptions.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/attr/__pycache__"}, {"filename": "filters.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/attr/__pycache__"}, {"filename": "_funcs.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/attr/__pycache__"}, {"filename": "__init__.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/attr/__pycache__"}, {"filename": "_make.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/attr/__pycache__"}, {"filename": "validators.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/attr/__pycache__"}, {"filename": "dependency_links.txt", "parent": "/usr/lib/python3/dist-packages/attrs-17.4.0.egg-info"}, {"filename": "not-zip-safe", "parent": "/usr/lib/python3/dist-packages/attrs-17.4.0.egg-info"}, {"filename": "PKG-INFO", "parent": "/usr/lib/python3/dist-packages/attrs-17.4.0.egg-info"}, {"filename": "requires.txt", "parent": "/usr/lib/python3/dist-packages/attrs-17.4.0.egg-info"}, {"filename": "top_level.txt", "parent": "/usr/lib/python3/dist-packages/attrs-17.4.0.egg-info"}, {"filename": "_core.py", "parent": "/usr/lib/python3/dist-packages/automat"}, {"filename": "_discover.py", "parent": "/usr/lib/python3/dist-packages/automat"}, {"filename": "__init__.py", "parent": "/usr/lib/python3/dist-packages/automat"}, {"filename": "_introspection.py", "parent": "/usr/lib/python3/dist-packages/automat"}, {"filename": "_methodical.py", "parent": "/usr/lib/python3/dist-packages/automat"}, {"filename": "__pycache__", "parent": "/usr/lib/python3/dist-packages/automat"}, {"filename": "_test", "parent": "/usr/lib/python3/dist-packages/automat"}, {"filename": "_visualize.py", "parent": "/usr/lib/python3/dist-packages/automat"}, {"filename": "_core.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/automat/__pycache__"}, {"filename": "_discover.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/automat/__pycache__"}, {"filename": "__init__.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/automat/__pycache__"}, {"filename": "_introspection.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/automat/__pycache__"}, {"filename": "_methodical.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/automat/__pycache__"}, {"filename": "_visualize.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/automat/__pycache__"}, {"filename": "__init__.py", "parent": "/usr/lib/python3/dist-packages/automat/_test"}, {"filename": "__pycache__", "parent": "/usr/lib/python3/dist-packages/automat/_test"}, {"filename": "test_core.py", "parent": "/usr/lib/python3/dist-packages/automat/_test"}, {"filename": "test_discover.py", "parent": "/usr/lib/python3/dist-packages/automat/_test"}, {"filename": "test_methodical.py", "parent": "/usr/lib/python3/dist-packages/automat/_test"}, {"filename": "test_trace.py", "parent": "/usr/lib/python3/dist-packages/automat/_test"}, {"filename": "test_visualize.py", "parent": "/usr/lib/python3/dist-packages/automat/_test"}, {"filename": "__init__.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/automat/_test/__pycache__"}, {"filename": "test_core.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/automat/_test/__pycache__"}, {"filename": "test_discover.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/automat/_test/__pycache__"}, {"filename": "test_methodical.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/automat/_test/__pycache__"}, {"filename": "test_trace.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/automat/_test/__pycache__"}, {"filename": "test_visualize.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/automat/_test/__pycache__"}, {"filename": "dependency_links.txt", "parent": "/usr/lib/python3/dist-packages/Automat-0.6.0.egg-info"}, {"filename": "entry_points.txt", "parent": "/usr/lib/python3/dist-packages/Automat-0.6.0.egg-info"}, {"filename": "PKG-INFO", "parent": "/usr/lib/python3/dist-packages/Automat-0.6.0.egg-info"}, {"filename": "requires.txt", "parent": "/usr/lib/python3/dist-packages/Automat-0.6.0.egg-info"}, {"filename": "top_level.txt", "parent": "/usr/lib/python3/dist-packages/Automat-0.6.0.egg-info"}, {"filename": "base.py", "parent": "/usr/lib/python3/dist-packages/blinker"}, {"filename": "__init__.py", "parent": "/usr/lib/python3/dist-packages/blinker"}, {"filename": "__pycache__", "parent": "/usr/lib/python3/dist-packages/blinker"}, {"filename": "_saferef.py", "parent": "/usr/lib/python3/dist-packages/blinker"}, {"filename": "_utilities.py", "parent": "/usr/lib/python3/dist-packages/blinker"}, {"filename": "base.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/blinker/__pycache__"}, {"filename": "__init__.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/blinker/__pycache__"}, {"filename": "_saferef.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/blinker/__pycache__"}, {"filename": "_utilities.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/blinker/__pycache__"}, {"filename": "cacert.pem", "parent": "/usr/lib/python3/dist-packages/certifi"}, {"filename": "core.py", "parent": "/usr/lib/python3/dist-packages/certifi"}, {"filename": "__init__.py", "parent": "/usr/lib/python3/dist-packages/certifi"}, {"filename": "__main__.py", "parent": "/usr/lib/python3/dist-packages/certifi"}, {"filename": "__pycache__", "parent": "/usr/lib/python3/dist-packages/certifi"}, {"filename": "core.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/certifi/__pycache__"}, {"filename": "__init__.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/certifi/__pycache__"}, {"filename": "__main__.cpython-36.pyc", "parent": "/usr/lib/python3/dist-packages/certifi/__pycache__"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/ls-R.out000066400000000000000000001717251415226333200205700ustar00rootroot00000000000000/usr: bin games include lib local sbin share src /usr/bin: [ aa-enabled aa-exec acpi_listen add-apt-repository addpart addr2line apport-bug apport-cli apport-collect apport-unpack apropos apt apt-add-repository apt-cache apt-cdrom apt-config apt-extracttemplates apt-ftparchive apt-get apt-key apt-mark apt-sortpkgs ar arch as at atq atrm automat-visualize3 awk b2sum base32 base64 basename bashbug batch bc bootctl bsd-from bsd-write busctl byobu byobu-config byobu-ctrl-a byobu-disable byobu-disable-prompt byobu-enable byobu-enable-prompt byobu-export byobu-janitor byobu-keybindings byobu-launch byobu-launcher byobu-launcher-install byobu-launcher-uninstall byobu-layout byobu-prompt byobu-quiet byobu-reconnect-sockets byobu-screen byobu-select-backend byobu-select-profile byobu-select-session byobu-shell byobu-silent byobu-status byobu-status-detail byobu-tmux byobu-ugraph byobu-ulevel c++ c89 c89-gcc c99 c99-gcc cal calendar captoinfo catchsegv catman cautious-launcher cc c++filt cftp3 cgroupfs-mount cgroupfs-umount chacl chage chardet3 chardetect3 chattr chcon check-language-support chfn chrt chsh cifsiostat ckbcomp ckeygen3 cksum clear clear_console cloud-id cloud-init cloud-init-per cmp codepage col col1 col2 col3 col4 col5 col6 col7 col8 col9 colcrt colrm column comm compose conch3 containerd containerd-shim containerd-shim-runc-v1 containerd-stress corelist cpan cpan5.26-x86_64-linux-gnu cpp cpp-7 c_rehash crontab csplit ctail ctr ctstat curl cut dbus-cleanup-sockets dbus-daemon dbus-monitor dbus-run-session dbus-send dbus-update-activation-environment dbus-uuidgen deallocvt debconf debconf-apt-progress debconf-communicate debconf-copydb debconf-escape debconf-set-selections debconf-show deb-systemd-helper deb-systemd-invoke delpart delv dh_bash-completion dh_pypy dh_python3 diff diff3 dig dircolors dirmngr dirmngr-client dirname docker dockerd docker-init docker-proxy do-release-upgrade dpkg dpkg-architecture dpkg-buildflags dpkg-buildpackage dpkg-checkbuilddeps dpkg-deb dpkg-distaddfile dpkg-divert dpkg-genbuildinfo dpkg-genchanges dpkg-gencontrol dpkg-gensymbols dpkg-maintscript-helper dpkg-mergechangelogs dpkg-name dpkg-parsechangelog dpkg-query dpkg-scanpackages dpkg-scansources dpkg-shlibdeps dpkg-source dpkg-split dpkg-statoverride dpkg-trigger dpkg-vendor du dumpkeys dwp eatmydata ec2metadata edit editor eject elfedit enc2xs encguess env envsubst eqn ex expand expiry expr factor faillog faked-sysv faked-tcp fakeroot fakeroot-sysv fakeroot-tcp fallocate file find flock fmt fold free from ftp g++ g++-7 gawk gcc gcc-7 gcc-ar gcc-ar-7 gcc-nm gcc-nm-7 gcc-ranlib gcc-ranlib-7 gcov gcov-7 gcov-dump gcov-dump-7 gcov-tool gcov-tool-7 gencat geqn getconf getent getfacl getkeycodes getopt gettext gettext.sh ginstall-info git git-receive-pack git-shell git-upload-archive git-upload-pack gold gpasswd gpg gpg-agent gpgconf gpg-connect-agent gpgparsemail gpgsm gpgsplit gpgv gpg-wks-server gpg-zip gpic gprof groff grog grops grotty groups growpart grub-editenv grub-file grub-fstest grub-glue-efi grub-kbdcomp grub-menulst2cfg grub-mkfont grub-mkimage grub-mklayout grub-mknetdir grub-mkpasswd-pbkdf2 grub-mkrelpath grub-mkrescue grub-mkstandalone grub-mount grub-ntldr-img grub-render-label grub-script-check grub-syslinux2cfg gtbl h2ph h2xs hd head helpztags hexdump host hostid hostnamectl htop hwe-support-status i386 iconv id igawk info infobrowser infocmp infotocap install install-info instmodsh ionice iostat ipcmk ipcrm ipcs iptables-xml ischroot iscsiadm join jq jsondiff jsonpatch jsonpointer json_pp jsonschema kbdinfo kbxutil keep-one-running kernel-install keyring killall landscape-sysinfo last lastb lastlog lcf ld ld.bfd ldd ld.gold less lessecho lessfile lesskey lesspipe lexgrog libnetcfg link linux32 linux64 linux-boot-prober linux-check-removal linux-update-symlinks linux-version lnstat loadkeys loadunimap locale locale-check localectl localedef locate logger logname look lorder lsattr lsb_release lscpu lshw lsinitramfs lsipc lslocks lslogins lsmem lsns lsof lspci lspgpot lsusb ltrace lxc lxcfs lxd lzcat lzcmp lzdiff lzegrep lzfgrep lzgrep lzless lzma lzmainfo lzmore make make-first-existing-target man mandb manifest manpath mapscrn mawk mcookie md5sum md5sum.textutils mdig mesg migrate-pubring-from-classic-gpg miniterm mkfifo mk_modmap mksquashfs mlocate mpstat mtr mtrace mtr-packet namei nawk ncal ncat neqn netkit-ftp networkd-dispatcher newgidmap newgrp newuidmap NF ngettext nice nl nm nmap nohup nping nproc nroff nsenter nslookup nstat nsupdate ntfsdecrypt numfmt objcopy objdump od on_ac_power openssl os-prober pager partx passwd paste pastebinit patch pathchk pbget pbput pbputs pcimodules pdb3 pdb3.6 peekfd perl perl5.26.1 perl5.26-x86_64-linux-gnu perlbug perldoc perlivp perlthanks pftp pgrep pic pico piconv pidstat pigz pinentry pinentry-curses pinky pip3 pkaction pkcheck pkexec pkill pkttyagent pl2pm pldd pmap pod2html pod2man pod2text pod2usage podchecker podselect pollinate pr preconv print printenv printerbanner printf prlimit prove prtstat psfaddtable psfgettable psfstriptable psfxtable pslog pstree pstree.x11 ptar ptardiff ptargrep ptx purge-old-kernels pwdx py3clean py3compile py3versions pybuild pydoc3 pydoc3.6 pygettext3 pygettext3.6 pyhtmlizer3 pyjwt3 python3 python3.6 python3.6-config python3.6m python3.6m-config python3-config python3-jsondiff python3-jsonpatch python3-jsonpointer python3-jsonschema python3m python3m-config ranlib rcp rdma readelf realpath rename.ul renice reset resizecons resizepart rev rgrep rlogin routef routel rpcgen rsh rsync rtstat runcon run-mailcap run-one run-one-constantly run-one-until-failure run-one-until-success run-this-one rview rvim sadf sar sar.sysstat savelog scp screen screendump script scriptreplay sdiff see select-editor sensible-browser sensible-editor sensible-pager seq setarch setfacl setkeycodes setleds setlogcons setmetamode setpci setsid setterm sftp sg sha1sum sha224sum sha256sum sha384sum sha512sum shasum showconsolefont showkey shred shuf size skill slabtop slogin slurm snap snapctl snapfuse snice soelim sort sosreport sotruss splain split splitfont sprof ssh ssh-add ssh-agent ssh-argv0 ssh-copy-id ssh-import-id ssh-import-id-gh ssh-import-id-lp ssh-keygen ssh-keyscan stat stdbuf strace strace-log-merge strings strip sudo sudoedit sudoreplay sum symcryptrun systemd-analyze systemd-cat systemd-cgls systemd-cgtop systemd-delta systemd-detect-virt systemd-mount systemd-path systemd-resolve systemd-run systemd-socket-activate systemd-stdio-bridge systemd-umount tabs tac tail tapestat taskset tbl tee telnet telnet.netkit test tic time timedatectl timeout tkconch3 tload tmux toe top touch tput tr tracepath traceroute6 traceroute6.iputils trial3 troff truncate tset tsort tty twist3 twistd3 tzselect ua ubuntu-advantage ubuntu-bug ubuntu-core-launcher ubuntu-support-status ucf ucfq ucfr ul unattended-upgrade unattended-upgrades unexpand unicode_stop uniq unlink unlzma unmkinitramfs unpigz unshare unsquashfs unxz update-alternatives updatedb updatedb.mlocate update-mime-database uptime usb-devices usbhid-dump users utmpdump uuidgen uuidparse vcs-run VGAuthService vi view vigpg vim vim.basic vimdiff vim.tiny vimtutor vmhgfs-fuse vmstat vmtoolsd vmware-checkvm vmware-guestproxycerttool vmware-hgfsclient vmware-namespace-cmd vmware-rpctool vmware-toolbox-cmd vmware-vgauth-cmd vmware-vgauth-smoketest vmware-vmblock-fuse vmware-xferlogs volname w wall watch watchgnupg wc wget whatis whereis which who whoami wifi-status wmdocker w.procps write x86_64 x86_64-linux-gnu-addr2line x86_64-linux-gnu-ar x86_64-linux-gnu-as x86_64-linux-gnu-c++filt x86_64-linux-gnu-cpp x86_64-linux-gnu-cpp-7 x86_64-linux-gnu-dwp x86_64-linux-gnu-elfedit x86_64-linux-gnu-g++ x86_64-linux-gnu-g++-7 x86_64-linux-gnu-gcc x86_64-linux-gnu-gcc-7 x86_64-linux-gnu-gcc-ar x86_64-linux-gnu-gcc-ar-7 x86_64-linux-gnu-gcc-nm x86_64-linux-gnu-gcc-nm-7 x86_64-linux-gnu-gcc-ranlib x86_64-linux-gnu-gcc-ranlib-7 x86_64-linux-gnu-gcov x86_64-linux-gnu-gcov-7 x86_64-linux-gnu-gcov-dump x86_64-linux-gnu-gcov-dump-7 x86_64-linux-gnu-gcov-tool x86_64-linux-gnu-gcov-tool-7 x86_64-linux-gnu-gold x86_64-linux-gnu-gprof x86_64-linux-gnu-ld x86_64-linux-gnu-ld.bfd x86_64-linux-gnu-ld.gold x86_64-linux-gnu-nm x86_64-linux-gnu-objcopy x86_64-linux-gnu-objdump x86_64-linux-gnu-python3.6-config x86_64-linux-gnu-python3.6m-config x86_64-linux-gnu-python3-config x86_64-linux-gnu-python3m-config x86_64-linux-gnu-ranlib x86_64-linux-gnu-readelf x86_64-linux-gnu-size x86_64-linux-gnu-strings x86_64-linux-gnu-strip xargs xauth xdelta3 xdg-user-dir xdg-user-dirs-update xsubpp xxd xz xzcat xzcmp xzdiff xzegrep xzfgrep xzgrep xzless xzmore yes zdump zipdetails /usr/games: /usr/include: aio.h aliases.h alloca.h argp.h argz.h ar.h arpa asm-generic assert.h btrfs byteswap.h c++ complex.h cpio.h crypt.h ctype.h dirent.h dlfcn.h drm elf.h endian.h envz.h err.h errno.h error.h execinfo.h expat_external.h expat.h fcntl.h features.h fenv.h fmtmsg.h fnmatch.h fstab.h fts.h ftw.h gawkapi.h _G_config.h gconv.h getopt.h glob.h gnumake.h gnu-versions.h grp.h gshadow.h iconv.h ifaddrs.h inttypes.h langinfo.h lastlog.h libgen.h libintl.h libio.h limits.h link.h linux locale.h malloc.h math.h mcheck.h memory.h misc mntent.h monetary.h mqueue.h mtd net netash netatalk netax25 netdb.h neteconet netinet netipx netiucv netpacket netrom netrose nfs nl_types.h nss.h obstack.h paths.h poll.h printf.h proc_service.h protocols pthread.h pty.h pwd.h python3.6 python3.6m rdma re_comp.h regex.h regexp.h reglib resolv.h rpc rpcsvc sched.h scsi search.h semaphore.h setjmp.h sgtty.h shadow.h signal.h sound spawn.h stab.h stdc-predef.h stdint.h stdio_ext.h stdio.h stdlib.h string.h strings.h stropts.h sudo_plugin.h syscall.h sysexits.h syslog.h tar.h termio.h termios.h tgmath.h thread_db.h time.h ttyent.h uchar.h ucontext.h ulimit.h unistd.h ustat.h utime.h utmp.h utmpx.h values.h video wait.h wchar.h wctype.h wordexp.h x86_64-linux-gnu xen xfs /usr/include/arpa: ftp.h inet.h nameser_compat.h nameser.h telnet.h tftp.h /usr/include/asm-generic: auxvec.h bitsperlong.h bpf_perf_event.h errno-base.h errno.h fcntl.h hugetlb_encode.h int-l64.h int-ll64.h ioctl.h ioctls.h ipcbuf.h kvm_para.h mman-common.h mman.h msgbuf.h param.h poll.h posix_types.h resource.h sembuf.h setup.h shmbuf.h shmparam.h siginfo.h signal-defs.h signal.h socket.h sockios.h statfs.h stat.h swab.h termbits.h termios.h types.h ucontext.h unistd.h /usr/include/btrfs: btrfsck.h btrfs-list.h crc32c.h ctree.h extent-cache.h extent_io.h ioctl.h kerncompat.h list.h radix-tree.h raid56.h rbtree.h send.h send-stream.h send-utils.h sizes.h version.h /usr/include/c++: 7 7.4.0 /usr/include/c++/7: algorithm any array atomic backward bits bitset cassert ccomplex cctype cerrno cfenv cfloat chrono cinttypes ciso646 climits clocale cmath codecvt complex complex.h condition_variable csetjmp csignal cstdalign cstdarg cstdbool cstddef cstdint cstdio cstdlib cstring ctgmath ctime cuchar cwchar cwctype cxxabi.h debug decimal deque exception experimental ext fenv.h forward_list fstream functional future initializer_list iomanip ios iosfwd iostream istream iterator limits list locale map math.h memory mutex new numeric optional ostream parallel profile queue random ratio regex scoped_allocator set shared_mutex sstream stack stdexcept stdlib.h streambuf string string_view system_error tgmath.h thread tr1 tr2 tuple typeindex typeinfo type_traits unordered_map unordered_set utility valarray variant vector /usr/include/c++/7/backward: auto_ptr.h backward_warning.h binders.h hash_fun.h hash_map hash_set hashtable.h strstream /usr/include/c++/7/bits: algorithmfwd.h allocated_ptr.h allocator.h alloc_traits.h atomic_base.h atomic_futex.h atomic_lockfree_defines.h basic_ios.h basic_ios.tcc basic_string.h basic_string.tcc boost_concept_check.h c++0x_warning.h char_traits.h codecvt.h concept_check.h cpp_type_traits.h cxxabi_forced.h cxxabi_init_exception.h deque.tcc enable_special_members.h exception_defines.h exception.h exception_ptr.h forward_list.h forward_list.tcc fstream.tcc functexcept.h functional_hash.h gslice_array.h gslice.h hash_bytes.h hashtable.h hashtable_policy.h indirect_array.h invoke.h ios_base.h istream.tcc list.tcc locale_classes.h locale_classes.tcc locale_conv.h locale_facets.h locale_facets_nonio.h locale_facets_nonio.tcc locale_facets.tcc localefwd.h mask_array.h memoryfwd.h move.h nested_exception.h node_handle.h ostream_insert.h ostream.tcc parse_numbers.h postypes.h predefined_ops.h ptr_traits.h quoted_string.h random.h random.tcc range_access.h refwrap.h regex_automaton.h regex_automaton.tcc regex_compiler.h regex_compiler.tcc regex_constants.h regex_error.h regex_executor.h regex_executor.tcc regex.h regex_scanner.h regex_scanner.tcc regex.tcc shared_ptr_atomic.h shared_ptr_base.h shared_ptr.h slice_array.h specfun.h sstream.tcc std_abs.h std_function.h std_mutex.h stl_algobase.h stl_algo.h stl_bvector.h stl_construct.h stl_deque.h stl_function.h stl_heap.h stl_iterator_base_funcs.h stl_iterator_base_types.h stl_iterator.h stl_list.h stl_map.h stl_multimap.h stl_multiset.h stl_numeric.h stl_pair.h stl_queue.h stl_raw_storage_iter.h stl_relops.h stl_set.h stl_stack.h stl_tempbuf.h stl_tree.h stl_uninitialized.h stl_vector.h streambuf_iterator.h streambuf.tcc stream_iterator.h stringfwd.h string_view.tcc uniform_int_dist.h unique_ptr.h unordered_map.h unordered_set.h uses_allocator.h valarray_after.h valarray_array.h valarray_array.tcc valarray_before.h vector.tcc /usr/include/c++/7/debug: array assertions.h bitset debug.h deque formatter.h forward_list functions.h helper_functions.h list macros.h map map.h multimap.h multiset.h safe_base.h safe_container.h safe_iterator.h safe_iterator.tcc safe_local_iterator.h safe_local_iterator.tcc safe_sequence.h safe_sequence.tcc safe_unordered_base.h safe_unordered_container.h safe_unordered_container.tcc set set.h stl_iterator.h string unordered_map unordered_set vector /usr/include/c++/7/decimal: decimal decimal.h /usr/include/c++/7/experimental: algorithm any array bits chrono deque filesystem forward_list functional iterator list map memory memory_resource numeric optional propagate_const random ratio regex set source_location string string_view system_error tuple type_traits unordered_map unordered_set utility vector /usr/include/c++/7/experimental/bits: erase_if.h fs_dir.h fs_fwd.h fs_ops.h fs_path.h lfts_config.h shared_ptr.h string_view.tcc /usr/include/c++/7/ext: algorithm aligned_buffer.h alloc_traits.h array_allocator.h atomicity.h bitmap_allocator.h cast.h cmath codecvt_specializations.h concurrence.h debug_allocator.h enc_filebuf.h extptr_allocator.h functional hash_map hash_set iterator malloc_allocator.h memory mt_allocator.h new_allocator.h numeric numeric_traits.h pb_ds pod_char_traits.h pointer.h pool_allocator.h random random.tcc rb_tree rc_string_base.h rope ropeimpl.h slist sso_string_base.h stdio_filebuf.h stdio_sync_filebuf.h string_conversions.h throw_allocator.h typelist.h type_traits.h vstring_fwd.h vstring.h vstring.tcc vstring_util.h /usr/include/c++/7/ext/pb_ds: assoc_container.hpp detail exception.hpp hash_policy.hpp list_update_policy.hpp priority_queue.hpp tag_and_trait.hpp tree_policy.hpp trie_policy.hpp /usr/include/c++/7/ext/pb_ds/detail: binary_heap_ binomial_heap_ binomial_heap_base_ bin_search_tree_ branch_policy cc_hash_table_map_ cond_dealtor.hpp container_base_dispatch.hpp debug_map_base.hpp eq_fn gp_hash_table_map_ hash_fn left_child_next_sibling_heap_ list_update_map_ list_update_policy ov_tree_map_ pairing_heap_ pat_trie_ priority_queue_base_dispatch.hpp rb_tree_map_ rc_binomial_heap_ resize_policy splay_tree_ standard_policies.hpp thin_heap_ tree_policy tree_trace_base.hpp trie_policy types_traits.hpp type_utils.hpp unordered_iterator /usr/include/c++/7/ext/pb_ds/detail/binary_heap_: binary_heap_.hpp const_iterator.hpp constructors_destructor_fn_imps.hpp debug_fn_imps.hpp entry_cmp.hpp entry_pred.hpp erase_fn_imps.hpp find_fn_imps.hpp info_fn_imps.hpp insert_fn_imps.hpp iterators_fn_imps.hpp point_const_iterator.hpp policy_access_fn_imps.hpp resize_policy.hpp split_join_fn_imps.hpp trace_fn_imps.hpp /usr/include/c++/7/ext/pb_ds/detail/binomial_heap_: binomial_heap_.hpp constructors_destructor_fn_imps.hpp debug_fn_imps.hpp /usr/include/c++/7/ext/pb_ds/detail/binomial_heap_base_: binomial_heap_base_.hpp constructors_destructor_fn_imps.hpp debug_fn_imps.hpp erase_fn_imps.hpp find_fn_imps.hpp insert_fn_imps.hpp split_join_fn_imps.hpp /usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_: bin_search_tree_.hpp constructors_destructor_fn_imps.hpp debug_fn_imps.hpp erase_fn_imps.hpp find_fn_imps.hpp info_fn_imps.hpp insert_fn_imps.hpp iterators_fn_imps.hpp node_iterators.hpp point_iterators.hpp policy_access_fn_imps.hpp r_erase_fn_imps.hpp rotate_fn_imps.hpp split_join_fn_imps.hpp traits.hpp /usr/include/c++/7/ext/pb_ds/detail/branch_policy: branch_policy.hpp null_node_metadata.hpp traits.hpp /usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_: cc_ht_map_.hpp cmp_fn_imps.hpp cond_key_dtor_entry_dealtor.hpp constructor_destructor_fn_imps.hpp constructor_destructor_no_store_hash_fn_imps.hpp constructor_destructor_store_hash_fn_imps.hpp debug_fn_imps.hpp debug_no_store_hash_fn_imps.hpp debug_store_hash_fn_imps.hpp entry_list_fn_imps.hpp erase_fn_imps.hpp erase_no_store_hash_fn_imps.hpp erase_store_hash_fn_imps.hpp find_fn_imps.hpp find_store_hash_fn_imps.hpp info_fn_imps.hpp insert_fn_imps.hpp insert_no_store_hash_fn_imps.hpp insert_store_hash_fn_imps.hpp iterators_fn_imps.hpp policy_access_fn_imps.hpp resize_fn_imps.hpp resize_no_store_hash_fn_imps.hpp resize_store_hash_fn_imps.hpp size_fn_imps.hpp trace_fn_imps.hpp /usr/include/c++/7/ext/pb_ds/detail/eq_fn: eq_by_less.hpp hash_eq_fn.hpp /usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_: constructor_destructor_fn_imps.hpp constructor_destructor_no_store_hash_fn_imps.hpp constructor_destructor_store_hash_fn_imps.hpp debug_fn_imps.hpp debug_no_store_hash_fn_imps.hpp debug_store_hash_fn_imps.hpp erase_fn_imps.hpp erase_no_store_hash_fn_imps.hpp erase_store_hash_fn_imps.hpp find_fn_imps.hpp find_no_store_hash_fn_imps.hpp find_store_hash_fn_imps.hpp gp_ht_map_.hpp info_fn_imps.hpp insert_fn_imps.hpp insert_no_store_hash_fn_imps.hpp insert_store_hash_fn_imps.hpp iterator_fn_imps.hpp policy_access_fn_imps.hpp resize_fn_imps.hpp resize_no_store_hash_fn_imps.hpp resize_store_hash_fn_imps.hpp trace_fn_imps.hpp /usr/include/c++/7/ext/pb_ds/detail/hash_fn: direct_mask_range_hashing_imp.hpp direct_mod_range_hashing_imp.hpp linear_probe_fn_imp.hpp mask_based_range_hashing.hpp mod_based_range_hashing.hpp probe_fn_base.hpp quadratic_probe_fn_imp.hpp ranged_hash_fn.hpp ranged_probe_fn.hpp sample_probe_fn.hpp sample_ranged_hash_fn.hpp sample_ranged_probe_fn.hpp sample_range_hashing.hpp /usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_: const_iterator.hpp constructors_destructor_fn_imps.hpp debug_fn_imps.hpp erase_fn_imps.hpp info_fn_imps.hpp insert_fn_imps.hpp iterators_fn_imps.hpp left_child_next_sibling_heap_.hpp node.hpp point_const_iterator.hpp policy_access_fn_imps.hpp trace_fn_imps.hpp /usr/include/c++/7/ext/pb_ds/detail/list_update_map_: constructor_destructor_fn_imps.hpp debug_fn_imps.hpp entry_metadata_base.hpp erase_fn_imps.hpp find_fn_imps.hpp info_fn_imps.hpp insert_fn_imps.hpp iterators_fn_imps.hpp lu_map_.hpp trace_fn_imps.hpp /usr/include/c++/7/ext/pb_ds/detail/list_update_policy: lu_counter_metadata.hpp sample_update_policy.hpp /usr/include/c++/7/ext/pb_ds/detail/ov_tree_map_: constructors_destructor_fn_imps.hpp debug_fn_imps.hpp erase_fn_imps.hpp info_fn_imps.hpp insert_fn_imps.hpp iterators_fn_imps.hpp node_iterators.hpp ov_tree_map_.hpp policy_access_fn_imps.hpp split_join_fn_imps.hpp traits.hpp /usr/include/c++/7/ext/pb_ds/detail/pairing_heap_: constructors_destructor_fn_imps.hpp debug_fn_imps.hpp erase_fn_imps.hpp find_fn_imps.hpp insert_fn_imps.hpp pairing_heap_.hpp split_join_fn_imps.hpp /usr/include/c++/7/ext/pb_ds/detail/pat_trie_: constructors_destructor_fn_imps.hpp debug_fn_imps.hpp erase_fn_imps.hpp find_fn_imps.hpp info_fn_imps.hpp insert_join_fn_imps.hpp iterators_fn_imps.hpp pat_trie_base.hpp pat_trie_.hpp policy_access_fn_imps.hpp r_erase_fn_imps.hpp rotate_fn_imps.hpp split_fn_imps.hpp synth_access_traits.hpp trace_fn_imps.hpp traits.hpp update_fn_imps.hpp /usr/include/c++/7/ext/pb_ds/detail/rb_tree_map_: constructors_destructor_fn_imps.hpp debug_fn_imps.hpp erase_fn_imps.hpp find_fn_imps.hpp info_fn_imps.hpp insert_fn_imps.hpp node.hpp rb_tree_.hpp split_join_fn_imps.hpp traits.hpp /usr/include/c++/7/ext/pb_ds/detail/rc_binomial_heap_: constructors_destructor_fn_imps.hpp debug_fn_imps.hpp erase_fn_imps.hpp insert_fn_imps.hpp rc_binomial_heap_.hpp rc.hpp split_join_fn_imps.hpp trace_fn_imps.hpp /usr/include/c++/7/ext/pb_ds/detail/resize_policy: cc_hash_max_collision_check_resize_trigger_imp.hpp hash_exponential_size_policy_imp.hpp hash_load_check_resize_trigger_imp.hpp hash_load_check_resize_trigger_size_base.hpp hash_prime_size_policy_imp.hpp hash_standard_resize_policy_imp.hpp sample_resize_policy.hpp sample_resize_trigger.hpp sample_size_policy.hpp /usr/include/c++/7/ext/pb_ds/detail/splay_tree_: constructors_destructor_fn_imps.hpp debug_fn_imps.hpp erase_fn_imps.hpp find_fn_imps.hpp info_fn_imps.hpp insert_fn_imps.hpp node.hpp splay_fn_imps.hpp splay_tree_.hpp split_join_fn_imps.hpp traits.hpp /usr/include/c++/7/ext/pb_ds/detail/thin_heap_: constructors_destructor_fn_imps.hpp debug_fn_imps.hpp erase_fn_imps.hpp find_fn_imps.hpp insert_fn_imps.hpp split_join_fn_imps.hpp thin_heap_.hpp trace_fn_imps.hpp /usr/include/c++/7/ext/pb_ds/detail/tree_policy: node_metadata_selector.hpp order_statistics_imp.hpp sample_tree_node_update.hpp /usr/include/c++/7/ext/pb_ds/detail/trie_policy: node_metadata_selector.hpp order_statistics_imp.hpp prefix_search_node_update_imp.hpp sample_trie_access_traits.hpp sample_trie_node_update.hpp trie_policy_base.hpp trie_string_access_traits_imp.hpp /usr/include/c++/7/ext/pb_ds/detail/unordered_iterator: const_iterator.hpp iterator.hpp point_const_iterator.hpp point_iterator.hpp /usr/include/c++/7/parallel: algobase.h algo.h algorithm algorithmfwd.h balanced_quicksort.h base.h basic_iterator.h checkers.h compatibility.h compiletime_settings.h equally_split.h features.h find.h find_selectors.h for_each.h for_each_selectors.h iterator.h list_partition.h losertree.h merge.h multiseq_selection.h multiway_merge.h multiway_mergesort.h numeric numericfwd.h omp_loop.h omp_loop_static.h parallel.h par_loop.h partial_sum.h partition.h queue.h quicksort.h random_number.h random_shuffle.h search.h set_operations.h settings.h sort.h tags.h types.h unique_copy.h workstealing.h /usr/include/c++/7/profile: array base.h bitset deque forward_list impl iterator_tracker.h list map map.h multimap.h multiset.h ordered_base.h set set.h unordered_base.h unordered_map unordered_set vector /usr/include/c++/7/profile/impl: profiler_algos.h profiler_container_size.h profiler.h profiler_hash_func.h profiler_hashtable_size.h profiler_list_to_slist.h profiler_list_to_vector.h profiler_map_to_unordered_map.h profiler_node.h profiler_state.h profiler_trace.h profiler_vector_size.h profiler_vector_to_list.h /usr/include/c++/7/tr1: array bessel_function.tcc beta_function.tcc ccomplex cctype cfenv cfloat cinttypes climits cmath complex complex.h cstdarg cstdbool cstdint cstdio cstdlib ctgmath ctime ctype.h cwchar cwctype ell_integral.tcc exp_integral.tcc fenv.h float.h functional functional_hash.h gamma.tcc hashtable.h hashtable_policy.h hypergeometric.tcc inttypes.h legendre_function.tcc limits.h math.h memory modified_bessel_func.tcc poly_hermite.tcc poly_laguerre.tcc random random.h random.tcc regex riemann_zeta.tcc shared_ptr.h special_function_util.h stdarg.h stdbool.h stdint.h stdio.h stdlib.h tgmath.h tuple type_traits unordered_map unordered_map.h unordered_set unordered_set.h utility wchar.h wctype.h /usr/include/c++/7/tr2: bool_set bool_set.tcc dynamic_bitset dynamic_bitset.tcc ratio type_traits /usr/include/drm: amdgpu_drm.h armada_drm.h drm_fourcc.h drm.h drm_mode.h drm_sarea.h etnaviv_drm.h exynos_drm.h i810_drm.h i915_drm.h mga_drm.h msm_drm.h nouveau_drm.h omap_drm.h qxl_drm.h r128_drm.h radeon_drm.h savage_drm.h sis_drm.h tegra_drm.h vc4_drm.h vgem_drm.h via_drm.h virtgpu_drm.h vmwgfx_drm.h /usr/include/linux: acct.h adb.h adfs_fs.h affs_hardblocks.h agpgart.h aio_abi.h am437x-vpfe.h android a.out.h apm_bios.h arcfb.h arm_sdei.h aspeed-lpc-ctrl.h atalk.h atmapi.h atmarp.h atmbr2684.h atmclip.h atmdev.h atm_eni.h atm.h atm_he.h atm_idt77105.h atmioc.h atmlec.h atmmpc.h atm_nicstar.h atmppp.h atmsap.h atmsvc.h atm_tcp.h atm_zatm.h audit.h aufs_type.h auto_dev-ioctl.h auto_fs4.h auto_fs.h auxvec.h ax25.h b1lli.h batman_adv.h baycom.h bcache.h bcm933xx_hcs.h bfs_fs.h binfmts.h blkpg.h blktrace_api.h blkzoned.h bpf_common.h bpf.h bpf_perf_event.h bpqether.h bsg.h bt-bmc.h btrfs.h btrfs_tree.h byteorder caif can can.h capability.h capi.h cciss_defs.h cciss_ioctl.h cdrom.h cec-funcs.h cec.h cgroupstats.h chio.h cifs cm4000_cs.h cn_proc.h coda.h coda_psdev.h coff.h connector.h const.h coresight-stm.h cramfs_fs.h cryptouser.h cuda.h cyclades.h cycx_cfm.h dcbnl.h dccp.h devlink.h dlmconstants.h dlm_device.h dlm.h dlm_netlink.h dlm_plock.h dma-buf.h dm-ioctl.h dm-log-userspace.h dn.h dqblk_xfs.h dvb edd.h efs_fs_sb.h elfcore.h elf-em.h elf-fdpic.h elf.h errno.h errqueue.h ethtool.h eventpoll.h fadvise.h falloc.h fanotify.h fb.h fcntl.h fd.h fdreg.h fib_rules.h fiemap.h filter.h firewire-cdev.h firewire-constants.h flat.h fou.h fs.h fsl_hypervisor.h fsmap.h fuse.h futex.h gameport.h genetlink.h gen_stats.h genwqe gfs2_ondisk.h gigaset_dev.h gpio.h gsmmux.h gtp.h hash_info.h hdlc hdlcdrv.h hdlc.h hdreg.h hiddev.h hid.h hidraw.h hpet.h hsi hsr_netlink.h hw_breakpoint.h hyperv.h hysdn_if.h i2c-dev.h i2c.h i2o-dev.h i8k.h icmp.h icmpv6.h if_addr.h if_addrlabel.h if_alg.h if_arcnet.h if_arp.h if_bonding.h if_bridge.h if_cablemodem.h ife.h if_eql.h if_ether.h if_fc.h if_fddi.h if_frad.h if.h if_hippi.h if_infiniband.h if_link.h if_ltalk.h if_macsec.h if_packet.h if_phonet.h if_plip.h if_ppp.h if_pppol2tp.h if_pppox.h if_slip.h if_team.h if_tun.h if_tunnel.h if_vlan.h if_x25.h igmp.h iio ila.h in6.h inet_diag.h in.h inotify.h input-event-codes.h input.h in_route.h ioctl.h ip6_tunnel.h ipc.h ip.h ipmi.h ipmi_msgdefs.h ipsec.h ipv6.h ipv6_route.h ip_vs.h ipx.h irda.h irqnr.h isdn isdn_divertif.h isdn.h isdnif.h isdn_ppp.h iso_fs.h ivtvfb.h ivtv.h ixjuser.h jffs2.h joystick.h kcm.h kcmp.h kcov.h kdev_t.h kd.h kernelcapi.h kernel.h kernel-page-flags.h kexec.h keyboard.h keyctl.h kfd_ioctl.h kvm.h kvm_para.h l2tp.h libc-compat.h lightnvm.h limits.h lirc.h llc.h loop.h lp.h lwtunnel.h magic.h major.h map_to_7segment.h matroxfb.h max2175.h mdio.h media-bus-format.h media.h mei.h membarrier.h memfd.h mempolicy.h meye.h mic_common.h mic_ioctl.h mii.h minix_fs.h mman.h mmc mmtimer.h module.h mpls.h mpls_iptunnel.h mqueue.h mroute6.h mroute.h msdos_fs.h msg.h mtio.h nbd.h nbd-netlink.h ncp_fs.h ncp.h ncp_mount.h ncp_no.h ndctl.h neighbour.h netconf.h netdevice.h net_dropmon.h netfilter netfilter_arp netfilter_arp.h netfilter_bridge netfilter_bridge.h netfilter_decnet.h netfilter.h netfilter_ipv4 netfilter_ipv4.h netfilter_ipv6 netfilter_ipv6.h net.h netlink_diag.h netlink.h net_namespace.h netrom.h net_tstamp.h nfc.h nfs2.h nfs3.h nfs4.h nfs4_mount.h nfsacl.h nfsd nfs_fs.h nfs.h nfs_idmap.h nfs_mount.h nilfs2_api.h nilfs2_ondisk.h nl80211.h n_r3964.h nsfs.h nubus.h nvme_ioctl.h nvram.h omap3isp.h omapfb.h oom.h openvswitch.h packet_diag.h param.h parport.h patchkey.h pci.h pci_regs.h pcitest.h perf_event.h personality.h pfkeyv2.h pg.h phantom.h phonet.h pktcdvd.h pkt_cls.h pkt_sched.h pmu.h poll.h posix_acl.h posix_acl_xattr.h posix_types.h ppdev.h ppp-comp.h ppp_defs.h ppp-ioctl.h pps.h prctl.h pr.h psample.h psci.h ptp_clock.h ptrace.h qnx4_fs.h qnxtypes.h qrtr.h quota.h radeonfb.h raid random.h raw.h rds.h reboot.h reiserfs_fs.h reiserfs_xattr.h resource.h rfkill.h rio_cm_cdev.h rio_mport_cdev.h romfs_fs.h rose.h route.h rpmsg.h rtc.h rtnetlink.h rxrpc.h scc.h sched sched.h scif_ioctl.h screen_info.h sctp.h sdla.h seccomp.h securebits.h sed-opal.h seg6_genl.h seg6.h seg6_hmac.h seg6_iptunnel.h seg6_local.h selinux_netlink.h sem.h serial_core.h serial.h serial_reg.h serio.h shm.h signalfd.h signal.h smc_diag.h smc.h smiapp.h snmp.h sock_diag.h socket.h sockios.h sonet.h sonypi.h soundcard.h sound.h spi stat.h stddef.h stm.h string.h sunrpc suspend_ioctls.h swab.h switchtec_ioctl.h sync_file.h synclink.h sysctl.h sysinfo.h target_core_user.h taskstats.h tc_act tc_ematch tcp.h tcp_metrics.h tee.h telephony.h termios.h thermal.h time.h timerfd.h times.h timex.h tiocl.h tipc_config.h tipc.h tipc_netlink.h tls.h toshiba.h tty_flags.h tty.h types.h udf_fs_i.h udp.h uhid.h uinput.h uio.h uleds.h ultrasound.h un.h unistd.h unix_diag.h usb usbdevice_fs.h usbip.h userfaultfd.h userio.h utime.h utsname.h uuid.h uvcvideo.h v4l2-common.h v4l2-controls.h v4l2-dv-timings.h v4l2-mediabus.h v4l2-subdev.h version.h veth.h vfio_ccw.h vfio.h vhost.h videodev2.h virtio_9p.h virtio_balloon.h virtio_blk.h virtio_config.h virtio_console.h virtio_crypto.h virtio_gpu.h virtio_ids.h virtio_input.h virtio_mmio.h virtio_net.h virtio_pci.h virtio_ring.h virtio_rng.h virtio_scsi.h virtio_types.h virtio_vsock.h vm_sockets_diag.h vm_sockets.h vsockmon.h vt.h vtpm_proxy.h wait.h wanrouter.h watchdog.h wimax wimax.h wireless.h wmi.h x25.h xattr.h xfrm.h xilinx-v4l2-controls.h zorro.h zorro_ids.h /usr/include/linux/android: binder.h /usr/include/linux/byteorder: big_endian.h little_endian.h /usr/include/linux/caif: caif_socket.h if_caif.h /usr/include/linux/can: bcm.h error.h gw.h netlink.h raw.h vxcan.h /usr/include/linux/cifs: cifs_mount.h /usr/include/linux/dvb: audio.h ca.h dmx.h frontend.h net.h osd.h version.h video.h /usr/include/linux/genwqe: genwqe_card.h /usr/include/linux/hdlc: ioctl.h /usr/include/linux/hsi: cs-protocol.h hsi_char.h /usr/include/linux/iio: events.h types.h /usr/include/linux/isdn: capicmd.h /usr/include/linux/mmc: ioctl.h /usr/include/linux/netfilter: ipset nf_conntrack_common.h nf_conntrack_ftp.h nf_conntrack_sctp.h nf_conntrack_tcp.h nf_conntrack_tuple_common.h nf_log.h nf_nat.h nfnetlink_acct.h nfnetlink_compat.h nfnetlink_conntrack.h nfnetlink_cthelper.h nfnetlink_cttimeout.h nfnetlink.h nfnetlink_log.h nfnetlink_queue.h nf_tables_compat.h nf_tables.h x_tables.h xt_addrtype.h xt_AUDIT.h xt_bpf.h xt_cgroup.h xt_CHECKSUM.h xt_CLASSIFY.h xt_cluster.h xt_comment.h xt_connbytes.h xt_connlabel.h xt_connlimit.h xt_connmark.h xt_CONNMARK.h xt_CONNSECMARK.h xt_conntrack.h xt_cpu.h xt_CT.h xt_dccp.h xt_devgroup.h xt_dscp.h xt_DSCP.h xt_ecn.h xt_esp.h xt_hashlimit.h xt_helper.h xt_HMARK.h xt_IDLETIMER.h xt_ipcomp.h xt_iprange.h xt_ipvs.h xt_l2tp.h xt_LED.h xt_length.h xt_limit.h xt_LOG.h xt_mac.h xt_mark.h xt_MARK.h xt_multiport.h xt_nfacct.h xt_NFLOG.h xt_NFQUEUE.h xt_osf.h xt_owner.h xt_physdev.h xt_pkttype.h xt_policy.h xt_quota.h xt_rateest.h xt_RATEEST.h xt_realm.h xt_recent.h xt_rpfilter.h xt_sctp.h xt_SECMARK.h xt_set.h xt_socket.h xt_state.h xt_statistic.h xt_string.h xt_SYNPROXY.h xt_tcpmss.h xt_TCPMSS.h xt_TCPOPTSTRIP.h xt_tcpudp.h xt_TEE.h xt_time.h xt_TPROXY.h xt_u32.h /usr/include/linux/netfilter/ipset: ip_set_bitmap.h ip_set.h ip_set_hash.h ip_set_list.h /usr/include/linux/netfilter_arp: arp_tables.h arpt_mangle.h /usr/include/linux/netfilter_bridge: ebt_802_3.h ebtables.h ebt_among.h ebt_arp.h ebt_arpreply.h ebt_ip6.h ebt_ip.h ebt_limit.h ebt_log.h ebt_mark_m.h ebt_mark_t.h ebt_nat.h ebt_nflog.h ebt_pkttype.h ebt_redirect.h ebt_stp.h ebt_vlan.h /usr/include/linux/netfilter_ipv4: ip_tables.h ipt_ah.h ipt_CLUSTERIP.h ipt_ecn.h ipt_ECN.h ipt_LOG.h ipt_REJECT.h ipt_ttl.h ipt_TTL.h /usr/include/linux/netfilter_ipv6: ip6_tables.h ip6t_ah.h ip6t_frag.h ip6t_hl.h ip6t_HL.h ip6t_ipv6header.h ip6t_LOG.h ip6t_mh.h ip6t_NPT.h ip6t_opts.h ip6t_REJECT.h ip6t_rt.h /usr/include/linux/nfsd: cld.h debug.h export.h nfsfh.h stats.h /usr/include/linux/raid: md_p.h md_u.h /usr/include/linux/sched: types.h /usr/include/linux/spi: spidev.h /usr/include/linux/sunrpc: debug.h /usr/include/linux/tc_act: tc_bpf.h tc_connmark.h tc_csum.h tc_defact.h tc_gact.h tc_ife.h tc_ipt.h tc_mirred.h tc_nat.h tc_pedit.h tc_sample.h tc_skbedit.h tc_skbmod.h tc_tunnel_key.h tc_vlan.h /usr/include/linux/tc_ematch: tc_em_cmp.h tc_em_meta.h tc_em_nbyte.h tc_em_text.h /usr/include/linux/usb: audio.h cdc.h cdc-wdm.h ch11.h ch9.h charger.h functionfs.h gadgetfs.h g_printer.h midi.h tmc.h video.h /usr/include/linux/wimax: i2400m.h /usr/include/misc: cxl.h ocxl.h /usr/include/mtd: inftl-user.h mtd-abi.h mtd-user.h nftl-user.h ubi-user.h /usr/include/net: ethernet.h if_arp.h if.h if_packet.h if_ppp.h if_shaper.h if_slip.h ppp-comp.h ppp_defs.h route.h /usr/include/netash: ash.h /usr/include/netatalk: at.h /usr/include/netax25: ax25.h /usr/include/neteconet: ec.h /usr/include/netinet: ether.h icmp6.h if_ether.h if_fddi.h if_tr.h igmp.h in.h in_systm.h ip6.h ip.h ip_icmp.h tcp.h udp.h /usr/include/netipx: ipx.h /usr/include/netiucv: iucv.h /usr/include/netpacket: packet.h /usr/include/netrom: netrom.h /usr/include/netrose: rose.h /usr/include/nfs: nfs.h /usr/include/protocols: routed.h rwhod.h talkd.h timed.h /usr/include/python3.6m: abstract.h accu.h asdl.h ast.h bitset.h bltinmodule.h boolobject.h bytearrayobject.h bytes_methods.h bytesobject.h cellobject.h ceval.h classobject.h codecs.h code.h compile.h complexobject.h datetime.h descrobject.h dictobject.h dtoa.h dynamic_annotations.h enumobject.h errcode.h eval.h fileobject.h fileutils.h floatobject.h frameobject.h funcobject.h genobject.h graminit.h grammar.h import.h intrcheck.h iterobject.h listobject.h longintrepr.h longobject.h marshal.h memoryobject.h metagrammar.h methodobject.h modsupport.h moduleobject.h namespaceobject.h node.h object.h objimpl.h odictobject.h opcode.h osdefs.h osmodule.h parsetok.h patchlevel.h pgen.h pgenheaders.h pyarena.h pyatomic.h pycapsule.h pyconfig.h pyctype.h py_curses.h pydebug.h pydtrace.h pyerrors.h pyexpat.h pyfpe.h pygetopt.h pyhash.h pylifecycle.h pymacconfig.h pymacro.h pymath.h pymem.h pyport.h pystate.h pystrcmp.h pystrhex.h pystrtod.h Python-ast.h Python.h pythonrun.h pythread.h pytime.h rangeobject.h setobject.h sliceobject.h structmember.h structseq.h symtable.h sysmodule.h token.h traceback.h tupleobject.h typeslots.h ucnhash.h unicodeobject.h warnings.h weakrefobject.h /usr/include/rdma: bnxt_re-abi.h cxgb3-abi.h cxgb4-abi.h hfi hns-abi.h ib_user_cm.h ib_user_ioctl_verbs.h ib_user_mad.h ib_user_sa.h ib_user_verbs.h mlx4-abi.h mlx5-abi.h mthca-abi.h nes-abi.h ocrdma-abi.h qedr-abi.h rdma_netlink.h rdma_user_cm.h rdma_user_ioctl.h rdma_user_rxe.h vmw_pvrdma-abi.h /usr/include/rdma/hfi: hfi1_ioctl.h hfi1_user.h /usr/include/reglib: nl80211.h regdb.h reglib.h /usr/include/rpc: auth_des.h auth.h auth_unix.h clnt.h des_crypt.h key_prot.h netdb.h pmap_clnt.h pmap_prot.h pmap_rmt.h rpc_des.h rpc.h rpc_msg.h svc_auth.h svc.h types.h xdr.h /usr/include/rpcsvc: bootparam.h bootparam_prot.h bootparam_prot.x key_prot.h key_prot.x klm_prot.h klm_prot.x mount.h mount.x nfs_prot.h nfs_prot.x nis_callback.h nis_callback.x nis.h nislib.h nis_object.x nis_tags.h nis.x nlm_prot.h nlm_prot.x rex.h rex.x rquota.h rquota.x rstat.h rstat.x rusers.h rusers.x sm_inter.h sm_inter.x spray.h spray.x ypclnt.h yp.h yppasswd.h yppasswd.x yp_prot.h ypupd.h yp.x /usr/include/scsi: cxlflash_ioctl.h fc scsi_bsg_fc.h scsi.h scsi_ioctl.h scsi_netlink_fc.h scsi_netlink.h sg.h /usr/include/scsi/fc: fc_els.h fc_fs.h fc_gs.h fc_ns.h /usr/include/sound: asequencer.h asoc.h asound_fm.h asound.h compress_offload.h compress_params.h emu10k1.h firewire.h hdsp.h hdspm.h sb16_csp.h sfnt_info.h snd_sst_tokens.h tlv.h usb_stream.h /usr/include/video: edid.h sisfb.h uvesafb.h /usr/include/x86_64-linux-gnu: a.out.h asm bits c++ expat_config.h fpu_control.h gnu ieee754.h python3.6m sys /usr/include/x86_64-linux-gnu/asm: a.out.h auxvec.h bitsperlong.h boot.h bootparam.h bpf_perf_event.h byteorder.h debugreg.h e820.h errno.h fcntl.h hw_breakpoint.h hwcap2.h hyperv.h ioctl.h ioctls.h ipcbuf.h ist.h kvm.h kvm_para.h kvm_perf.h ldt.h mce.h mman.h msgbuf.h msr.h mtrr.h param.h perf_regs.h poll.h posix_types_32.h posix_types_64.h posix_types.h posix_types_x32.h prctl.h processor-flags.h ptrace-abi.h ptrace.h resource.h sembuf.h setup.h shmbuf.h sigcontext32.h sigcontext.h siginfo.h signal.h socket.h sockios.h statfs.h stat.h svm.h swab.h termbits.h termios.h types.h ucontext.h unistd_32.h unistd_64.h unistd.h unistd_x32.h vm86.h vmx.h vsyscall.h /usr/include/x86_64-linux-gnu/bits: a.out.h auxv.h byteswap-16.h byteswap.h cmathcalls.h confname.h cpu-set.h dirent.h dlfcn.h elfclass.h endian.h environments.h epoll.h errno.h error.h eventfd.h fcntl2.h fcntl.h fcntl-linux.h fenv.h fenvinline.h floatn-common.h floatn.h flt-eval-method.h fp-fast.h fp-logb.h _G_config.h getopt_core.h getopt_ext.h getopt_posix.h hwcap.h in.h initspin.h inotify.h ioctls.h ioctl-types.h ipc.h ipctypes.h iscanonical.h libc-header-start.h libio.h libio-ldbl.h libm-simd-decl-stubs.h link.h locale.h local_lim.h long-double.h mathcalls.h mathcalls-helper-functions.h mathdef.h math-finite.h mathinline.h math-vector.h mman.h mman-linux.h mman-shared.h monetary-ldbl.h mqueue2.h mqueue.h msq.h netdb.h param.h poll2.h poll.h posix1_lim.h posix2_lim.h posix_opt.h printf-ldbl.h pthreadtypes-arch.h pthreadtypes.h ptrace-shared.h resource.h sched.h select2.h select.h semaphore.h sem.h setjmp2.h setjmp.h shm.h sigaction.h sigcontext.h sigevent-consts.h siginfo-arch.h siginfo-consts-arch.h siginfo-consts.h signalfd.h signum-generic.h signum.h sigstack.h sigthread.h sockaddr.h socket2.h socket.h socket_type.h ss_flags.h stab.def statfs.h stat.h statvfs.h stdint-intn.h stdint-uintn.h stdio2.h stdio.h stdio-ldbl.h stdio_lim.h stdlib-bsearch.h stdlib-float.h stdlib.h stdlib-ldbl.h string_fortified.h strings_fortified.h stropts.h syscall.h sysctl.h sys_errlist.h syslog.h syslog-ldbl.h syslog-path.h sysmacros.h termios.h thread-shared-types.h time.h timerfd.h timex.h types types.h typesizes.h uintn-identity.h uio-ext.h uio_lim.h unistd.h ustat.h utmp.h utmpx.h utsname.h waitflags.h waitstatus.h wchar2.h wchar.h wchar-ldbl.h wctype-wchar.h wordsize.h xopen_lim.h xtitypes.h /usr/include/x86_64-linux-gnu/bits/types: clockid_t.h clock_t.h __FILE.h FILE.h __locale_t.h locale_t.h __mbstate_t.h mbstate_t.h res_state.h sig_atomic_t.h sigevent_t.h siginfo_t.h __sigset_t.h sigset_t.h __sigval_t.h sigval_t.h stack_t.h struct_iovec.h struct_itimerspec.h struct_osockaddr.h struct_rusage.h struct_sigstack.h struct_timespec.h struct_timeval.h struct_tm.h timer_t.h time_t.h wint_t.h /usr/include/x86_64-linux-gnu/c++: 7 7.4.0 /usr/include/x86_64-linux-gnu/c++/7: bits ext /usr/include/x86_64-linux-gnu/c++/7/bits: atomic_word.h basic_file.h c++allocator.h c++config.h c++io.h c++locale.h cpu_defines.h ctype_base.h ctype_inline.h cxxabi_tweaks.h error_constants.h extc++.h gthr-default.h gthr.h gthr-posix.h gthr-single.h messages_members.h opt_random.h os_defines.h stdc++.h stdtr1c++.h time_members.h /usr/include/x86_64-linux-gnu/c++/7/ext: opt_random.h /usr/include/x86_64-linux-gnu/gnu: libc-version.h lib-names-64.h lib-names.h stubs-64.h stubs.h /usr/include/x86_64-linux-gnu/python3.6m: pyconfig.h /usr/include/x86_64-linux-gnu/sys: acct.h auxv.h bitypes.h cdefs.h debugreg.h dir.h elf.h epoll.h errno.h eventfd.h fanotify.h fcntl.h file.h fsuid.h gmon.h gmon_out.h inotify.h ioctl.h io.h ipc.h kd.h klog.h mman.h mount.h msg.h mtio.h param.h pci.h perm.h personality.h poll.h prctl.h procfs.h profil.h ptrace.h queue.h quota.h random.h raw.h reboot.h reg.h resource.h select.h sem.h sendfile.h shm.h signalfd.h signal.h socket.h socketvar.h soundcard.h statfs.h stat.h statvfs.h stropts.h swap.h syscall.h sysctl.h sysinfo.h syslog.h sysmacros.h termios.h timeb.h time.h timerfd.h times.h timex.h ttychars.h ttydefaults.h types.h ucontext.h uio.h un.h unistd.h user.h ustat.h utsname.h vfs.h vlimit.h vm86.h vt.h vtimes.h wait.h xattr.h /usr/include/xen: evtchn.h gntalloc.h gntdev.h privcmd.h /usr/include/xfs: /usr/lib: accountsservice apt bfd-plugins binfmt.d byobu cloud-init cnf-update-db command-not-found compat-ld dbus-1.0 dpkg dracut eject environment.d file gcc git-core gnupg gnupg2 gold-ld groff grub grub-legacy initcpio initramfs-tools kernel klibc language-selector libDeployPkg.so.0 libDeployPkg.so.0.0.0 libguestlib.so.0 libguestlib.so.0.0.0 libhgfs.so.0 libhgfs.so.0.0.0 libvgauth.so.0 libvgauth.so.0.0.0 libvmtools.so.0 libvmtools.so.0.0.0 linux linux-boot-probes locale lxcfs lxd man-db mime modules-load.d networkd-dispatcher openssh open-vm-tools os-prober os-probes os-release pm-utils policykit-1 python2.7 python3 python3.6 python3.7 rsyslog sasl2 sftp-server snapd software-properties ssl sudo sysctl.d sysstat systemd sysusers.d tar tc tmpfiles.d ubuntu-fan ubuntu-release-upgrader update-notifier valgrind x86_64-linux-gnu /usr/lib/accountsservice: accounts-daemon /usr/lib/apt: apt-helper apt.systemd.daily methods planners solvers /usr/lib/apt/methods: cdrom copy file ftp gpgv http https mirror mirror+copy mirror+file mirror+ftp mirror+http mirror+https rred rsh ssh store /usr/lib/apt/planners: apt dump /usr/lib/apt/solvers: apt dump /usr/lib/bfd-plugins: liblto_plugin.so /usr/lib/binfmt.d: /usr/lib/byobu: apport arch battery color cpu_count cpu_freq cpu_temp custom date disk disk_io distro ec2_cost entropy fan_speed hostname include ip_address load_average logo mail memory menu network processes raid rcs_cost reboot_required release services session swap time time_binary time_utc trash updates_available uptime users whoami wifi_quality /usr/lib/byobu/include: colors common config.py constants cycle-status dirs ec2instancespricing.py icons mondrian notify_osd __pycache__ select-session.py shutil tmux-detach-all-but-current-client tmux-send-command-to-all-panes tmux-send-command-to-all-windows toggle-utf8 /usr/lib/byobu/include/__pycache__: config.cpython-36.pyc ec2instancespricing.cpython-36.pyc select-session.cpython-36.pyc /usr/lib/cloud-init: ds-identify uncloud-init write-ssh-key-fingerprints /usr/lib/compat-ld: ld /usr/lib/dbus-1.0: dbus-daemon-launch-helper /usr/lib/dpkg: methods /usr/lib/dpkg/methods: apt /usr/lib/dpkg/methods/apt: desc.apt install names setup update /usr/lib/dracut: modules.d /usr/lib/dracut/modules.d: 90bcache /usr/lib/dracut/modules.d/90bcache: module-setup.sh /usr/lib/eject: dmcrypt-get-device /usr/lib/environment.d: 990-snapd.conf 99-environment.conf /usr/lib/file: magic.mgc /usr/lib/gcc: x86_64-linux-gnu /usr/lib/gcc/x86_64-linux-gnu: 7 7.4.0 8 /usr/lib/gcc/x86_64-linux-gnu/7: cc1 cc1plus collect2 crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o crtfastmath.o crtoffloadbegin.o crtoffloadend.o crtoffloadtable.o crtprec32.o crtprec64.o crtprec80.o include include-fixed libasan.a libasan_preinit.o libasan.so libatomic.a libatomic.so libbacktrace.a libcc1.so libcilkrts.a libcilkrts.so libcilkrts.spec libgcc.a libgcc_eh.a libgcc_s.so libgcc_s.so.1 libgcov.a libgomp.a libgomp.so libgomp.spec libitm.a libitm.so libitm.spec liblsan.a liblsan.so liblto_plugin.so liblto_plugin.so.0 liblto_plugin.so.0.0.0 libmpx.a libmpx.so libmpx.spec libmpxwrappers.a libmpxwrappers.so libquadmath.a libquadmath.so libsanitizer.spec libssp_nonshared.a libstdc++.a libstdc++fs.a libstdc++.so libsupc++.a libtsan.a libtsan.so libubsan.a libubsan.so lto1 lto-wrapper plugin /usr/lib/gcc/x86_64-linux-gnu/7/include: adxintrin.h ammintrin.h avx2intrin.h avx5124fmapsintrin.h avx5124vnniwintrin.h avx512bwintrin.h avx512cdintrin.h avx512dqintrin.h avx512erintrin.h avx512fintrin.h avx512ifmaintrin.h avx512ifmavlintrin.h avx512pfintrin.h avx512vbmiintrin.h avx512vbmivlintrin.h avx512vlbwintrin.h avx512vldqintrin.h avx512vlintrin.h avx512vpopcntdqintrin.h avxintrin.h backtrace.h backtrace-supported.h bmi2intrin.h bmiintrin.h bmmintrin.h cilk clflushoptintrin.h clwbintrin.h clzerointrin.h cpuid.h cross-stdarg.h emmintrin.h f16cintrin.h float.h fma4intrin.h fmaintrin.h fxsrintrin.h gcov.h ia32intrin.h immintrin.h iso646.h lwpintrin.h lzcntintrin.h mm3dnow.h mmintrin.h mm_malloc.h mwaitxintrin.h nmmintrin.h omp.h openacc.h pkuintrin.h pmmintrin.h popcntintrin.h prfchwintrin.h quadmath.h quadmath_weak.h rdseedintrin.h rtmintrin.h sanitizer sgxintrin.h shaintrin.h smmintrin.h stdalign.h stdarg.h stdatomic.h stdbool.h stddef.h stdfix.h stdint-gcc.h stdint.h stdnoreturn.h tbmintrin.h tmmintrin.h unwind.h varargs.h wmmintrin.h x86intrin.h xmmintrin.h xopintrin.h xsavecintrin.h xsaveintrin.h xsaveoptintrin.h xsavesintrin.h xtestintrin.h /usr/lib/gcc/x86_64-linux-gnu/7/include/cilk: cilk_api.h cilk_api_linux.h cilk.h cilk_stub.h cilk_undocumented.h common.h holder.h hyperobject_base.h metaprogramming.h reducer_file.h reducer.h reducer_list.h reducer_max.h reducer_min.h reducer_min_max.h reducer_opadd.h reducer_opand.h reducer_opmul.h reducer_opor.h reducer_opxor.h reducer_ostream.h reducer_string.h /usr/lib/gcc/x86_64-linux-gnu/7/include/sanitizer: asan_interface.h common_interface_defs.h lsan_interface.h /usr/lib/gcc/x86_64-linux-gnu/7/include-fixed: limits.h README syslimits.h /usr/lib/gcc/x86_64-linux-gnu/7/plugin: libcc1plugin.so libcc1plugin.so.0 libcc1plugin.so.0.0.0 libcp1plugin.so libcp1plugin.so.0 libcp1plugin.so.0.0.0 /usr/lib/gcc/x86_64-linux-gnu/8: /usr/lib/git-core: git git-add git-add--interactive git-am git-annotate git-apply git-archive git-bisect git-bisect--helper git-blame git-branch git-bundle git-cat-file git-check-attr git-check-ignore git-check-mailmap git-checkout git-checkout-index git-check-ref-format git-cherry git-cherry-pick git-clean git-clone git-column git-commit git-commit-tree git-config git-count-objects git-credential git-credential-cache git-credential-cache--daemon git-credential-store git-daemon git-describe git-diff git-diff-files git-diff-index git-difftool git-difftool--helper git-diff-tree git-fast-export git-fast-import git-fetch git-fetch-pack git-filter-branch git-fmt-merge-msg git-for-each-ref git-format-patch git-fsck git-fsck-objects git-gc git-get-tar-commit-id git-grep git-hash-object git-help git-http-backend git-http-fetch git-http-push git-imap-send git-index-pack git-init git-init-db git-instaweb git-interpret-trailers git-log git-ls-files git-ls-remote git-ls-tree git-mailinfo git-mailsplit git-merge git-merge-base git-merge-file git-merge-index git-merge-octopus git-merge-one-file git-merge-ours git-merge-recursive git-merge-resolve git-merge-subtree git-mergetool git-mergetool--lib git-merge-tree git-mktag git-mktree git-mv git-name-rev git-notes git-pack-objects git-pack-redundant git-pack-refs git-parse-remote git-patch-id git-prune git-prune-packed git-pull git-push git-quiltimport git-read-tree git-rebase git-rebase--am git-rebase--helper git-rebase--interactive git-rebase--merge git-receive-pack git-reflog git-remote git-remote-ext git-remote-fd git-remote-ftp git-remote-ftps git-remote-http git-remote-https git-remote-testsvn git-repack git-replace git-request-pull git-rerere git-reset git-revert git-rev-list git-rev-parse git-rm git-send-pack git-shell git-sh-i18n git-sh-i18n--envsubst git-shortlog git-show git-show-branch git-show-index git-show-ref git-sh-prompt git-sh-setup git-stage git-stash git-status git-stripspace git-submodule git-submodule--helper git-subtree git-symbolic-ref git-tag git-unpack-file git-unpack-objects git-update-index git-update-ref git-update-server-info git-upload-archive git-upload-pack git-var git-verify-commit git-verify-pack git-verify-tag git-web--browse git-whatchanged git-worktree git-write-tree mergetools /usr/lib/git-core/mergetools: araxis bc bc3 codecompare deltawalker diffmerge diffuse ecmerge emerge examdiff gvimdiff gvimdiff2 gvimdiff3 kdiff3 kompare meld opendiff p4merge tkdiff tortoisemerge vimdiff vimdiff2 vimdiff3 winmerge xxdiff /usr/lib/gnupg: dirmngr_ldap gpg-check-pattern gpg-preset-passphrase gpg-protect-tool gpg-wks-client /usr/lib/gnupg2: gpg-preset-passphrase gpg-protect-tool /usr/lib/gold-ld: ld /usr/lib/groff: grog site-tmac /usr/lib/groff/grog: subs.pl /usr/lib/groff/site-tmac: /usr/lib/grub: grub-mkconfig_lib i386-pc /usr/lib/grub/i386-pc: 915resolution.mod acpi.mod adler32.mod affs.mod afs.mod ahci.mod all_video.mod aout.mod archelp.mod ata.mod at_keyboard.mod backtrace.mod bfs.mod biosdisk.mod bitmap.mod bitmap_scale.mod blocklist.mod boot_hybrid.img boot.img boot.mod bsd.mod bswap_test.mod btrfs.mod bufio.mod cat.mod cbfs.mod cbls.mod cbmemc.mod cbtable.mod cbtime.mod cdboot.img chain.mod cmdline_cat_test.mod cmosdump.mod cmostest.mod cmp.mod cmp_test.mod command.lst configfile.mod config.h cpio_be.mod cpio.mod cpuid.mod crc64.mod cryptodisk.mod crypto.lst crypto.mod cs5536.mod ctz_test.mod datehook.mod date.mod datetime.mod diskboot.img diskfilter.mod disk.mod div.mod div_test.mod dm_nv.mod drivemap.mod echo.mod efiemu32.o efiemu64.o efiemu.mod ehci.mod elf.mod eval.mod exfat.mod exfctest.mod ext2.mod extcmd.mod fat.mod file.mod font.mod freedos.mod fshelp.mod fs.lst functional_test.mod g2hdr.bin g2hdr.img g2ldr.img g2ldr.mbr gcry_arcfour.mod gcry_blowfish.mod gcry_camellia.mod gcry_cast5.mod gcry_crc.mod gcry_des.mod gcry_dsa.mod gcry_idea.mod gcry_md4.mod gcry_md5.mod gcry_rfc2268.mod gcry_rijndael.mod gcry_rmd160.mod gcry_rsa.mod gcry_seed.mod gcry_serpent.mod gcry_sha1.mod gcry_sha256.mod gcry_sha512.mod gcry_tiger.mod gcry_twofish.mod gcry_whirlpool.mod gdb.mod geli.mod gettext.mod gfxmenu.mod gfxterm_background.mod gfxterm_menu.mod gfxterm.mod gptsync.mod grldr.img grub-bios-setup grub-ntldr-img gzio.mod halt.mod hashsum.mod hdparm.mod hello.mod help.mod hexdump.mod hfs.mod hfspluscomp.mod hfsplus.mod http.mod hwmatch.mod iorw.mod iso9660.mod jfs.mod jpeg.mod kernel.img keylayouts.mod keystatus.mod ldm.mod legacycfg.mod legacy_password_test.mod linux16.mod linux.mod lnxboot.img loadenv.mod loopback.mod lsacpi.mod lsapm.mod lsmmap.mod ls.mod lspci.mod luks.mod lvm.mod lzma_decompress.img lzopio.mod macbless.mod macho.mod mda_text.mod mdraid09_be.mod mdraid09.mod mdraid1x.mod memdisk.mod memrw.mod minicmd.mod minix2_be.mod minix2.mod minix3_be.mod minix3.mod minix_be.mod minix.mod mmap.mod moddep.lst modinfo.sh morse.mod mpi.mod msdospart.mod mul_test.mod multiboot2.mod multiboot.mod nativedisk.mod net.mod newc.mod nilfs2.mod normal.mod ntfscomp.mod ntfs.mod ntldr.mod odc.mod offsetio.mod ohci.mod part_acorn.mod part_amiga.mod part_apple.mod part_bsd.mod part_dfly.mod part_dvh.mod part_gpt.mod partmap.lst part_msdos.mod part_plan.mod part_sun.mod part_sunpc.mod parttool.lst parttool.mod password.mod password_pbkdf2.mod pata.mod pbkdf2.mod pbkdf2_test.mod pcidump.mod pci.mod plan9.mod play.mod png.mod priority_queue.mod probe.mod procfs.mod progress.mod pxeboot.img pxechain.mod pxe.mod raid5rec.mod raid6rec.mod random.mod read.mod reboot.mod regexp.mod reiserfs.mod relocator.mod romfs.mod scsi.mod search_fs_file.mod search_fs_uuid.mod search_label.mod search.mod sendkey.mod serial.mod setjmp.mod setjmp_test.mod setpci.mod sfs.mod shift_test.mod signature_test.mod sleep.mod sleep_test.mod spkmodem.mod squash4.mod syslinuxcfg.mod tar.mod terminal.lst terminal.mod terminfo.mod test_blockarg.mod testload.mod test.mod testspeed.mod tftp.mod tga.mod time.mod trig.mod tr.mod truecrypt.mod true.mod udf.mod ufs1_be.mod ufs1.mod ufs2.mod uhci.mod usb_keyboard.mod usb.mod usbms.mod usbserial_common.mod usbserial_ftdi.mod usbserial_pl2303.mod usbserial_usbdebug.mod usbtest.mod vbe.mod verify.mod vga.mod vga_text.mod video_bochs.mod video_cirrus.mod video_colors.mod video_fb.mod videoinfo.mod video.lst video.mod videotest_checksum.mod videotest.mod xfs.mod xnu.mod xnu_uuid.mod xnu_uuid_test.mod xzio.mod zfscrypt.mod zfsinfo.mod zfs.mod /usr/lib/grub-legacy: update-grub /usr/lib/initcpio: install /usr/lib/initcpio/install: bcache /usr/lib/initramfs-tools: bin etc /usr/lib/initramfs-tools/bin: busybox rzscontrol wait-for-root /usr/lib/initramfs-tools/etc: dhcp /usr/lib/initramfs-tools/etc/dhcp: dhclient.conf dhclient-enter-hooks.d /usr/lib/initramfs-tools/etc/dhcp/dhclient-enter-hooks.d: config /usr/lib/kernel: install.d /usr/lib/kernel/install.d: 50-depmod.install 85-initrd.install 90-loaderentry.install /usr/lib/klibc: bin /usr/lib/klibc/bin: cat chroot cpio dd dmesg false fstype gunzip gzip halt ipconfig kill kinit kinit.shared ln losetup ls minips mkdir mkfifo mknod mount mv nfsmount nuke pivot_root poweroff readlink reboot resume run-init sh.shared sleep sync true umount uname zcat /usr/lib/language-selector: ls-dbus-backend /usr/lib/linux: triggers /usr/lib/linux/triggers: /usr/lib/linux-boot-probes: 50mounted-tests mounted /usr/lib/linux-boot-probes/mounted: 40grub 40grub2 50lilo 90fallback /usr/lib/locale: C.UTF-8 locale-archive /usr/lib/locale/C.UTF-8: LC_ADDRESS LC_COLLATE LC_CTYPE LC_IDENTIFICATION LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER LC_TELEPHONE LC_TIME /usr/lib/locale/C.UTF-8/LC_MESSAGES: SYS_LC_MESSAGES /usr/lib/lxcfs: liblxcfs.so /usr/lib/lxd: libdqlite.so.0 libdqlite.so.0.0.1 libsqlite3.so.0 libsqlite3.so.0.8.6 lxd shutdown upgrade-bridge /usr/lib/man-db: globbing libman-2.8.3.so libmandb-2.8.3.so libmandb.so libman.so man manconv mandb zsoelim /usr/lib/mime: debian-view mailcap packages /usr/lib/mime/packages: groff-base info less man-db mime-support sensible-utils tar util-linux vim-common /usr/lib/modules-load.d: /usr/lib/networkd-dispatcher: dormant.d no-carrier.d off.d routable.d /usr/lib/networkd-dispatcher/dormant.d: /usr/lib/networkd-dispatcher/no-carrier.d: /usr/lib/networkd-dispatcher/off.d: /usr/lib/networkd-dispatcher/routable.d: /usr/lib/openssh: agent-launch sftp-server ssh-keysign ssh-pkcs11-helper ssh-session-cleanup /usr/lib/open-vm-tools: plugins /usr/lib/open-vm-tools/plugins: common vmsvc /usr/lib/open-vm-tools/plugins/common: libhgfsServer.so libvix.so /usr/lib/open-vm-tools/plugins/vmsvc: libdeployPkgPlugin.so libgrabbitmqProxy.so libguestInfo.so libpowerOps.so libresolutionKMS.so libtimeSync.so libvmbackup.so /usr/lib/os-prober: newns /usr/lib/os-probes: 50mounted-tests init mounted /usr/lib/os-probes/init: 10filesystems /usr/lib/os-probes/mounted: 05efi 10freedos 10qnx 20macosx 20microsoft 30utility 40lsb 70hurd 80minix 83haiku 90linux-distro 90solaris efi /usr/lib/os-probes/mounted/efi: 10elilo 20microsoft /usr/lib/pm-utils: power.d sleep.d /usr/lib/pm-utils/power.d: 95hdparm-apm /usr/lib/pm-utils/sleep.d: 000record-status 95hdparm-apm /usr/lib/policykit-1: polkit-agent-helper-1 polkitd /usr/lib/python2.7: dist-packages /usr/lib/python2.7/dist-packages: lsb_release.py /usr/lib/python3: dist-packages /usr/lib/python3/dist-packages: apport apport_python_hook.py apt apt_inst.cpython-36m-x86_64-linux-gnu.so apt_inst.pyi apt_pkg.cpython-36m-x86_64-linux-gnu.so apt_pkg.pyi aptsources asn1crypto asn1crypto-0.24.0.egg-info attr attrs-17.4.0.egg-info automat Automat-0.6.0.egg-info blinker blinker-1.4.egg-info certifi certifi-2018.1.18.egg-info _cffi_backend.cpython-36m-x86_64-linux-gnu.so chardet chardet-3.0.4.egg-info click click-6.7.egg-info cloudinit cloud_init-19.1.egg-info colorama colorama-0.3.7.egg-info CommandNotFound command_not_found-0.3.egg-info configobj-5.0.6.egg-info configobj.py constantly constantly-15.1.0.egg-info Crypto cryptography cryptography-2.1.4.egg-info dbus _dbus_bindings.cpython-36m-x86_64-linux-gnu.so _dbus_glib_bindings.cpython-36m-x86_64-linux-gnu.so deb822.py debconf.py debian debian_bundle distro_info-0.18ubuntu0.18.04.1.egg-info distro_info.py distro_info_test DistUpgrade easy_install.py gi httplib2 httplib2-0.9.2.egg-info HweSupportStatus hyperlink hyperlink-17.3.1.egg-info idna idna-2.6.egg-info incremental incremental-16.10.1.egg-info janitor jinja2 Jinja2-2.10.egg-info jsonpatch-1.16.egg-info jsonpatch.py jsonpointer-1.10.egg-info jsonpointer.py jsonschema jsonschema-2.6.0.egg-info jwt keyring keyring-10.6.0.egg-info keyrings keyrings.alt-3.0.egg-info landscape LanguageSelector language_selector-0.1.egg-info language_support_pkgs.py lsb_release.py markupsafe MarkupSafe-1.0.egg-info netifaces-0.10.4.egg-info netifaces.cpython-36m-x86_64-linux-gnu.so oauthlib oauthlib-2.0.6.egg-info OpenSSL PAM-0.4.2.egg-info PAM.cpython-36m-x86_64-linux-gnu.so pip pip-9.0.1.egg-info pkg_resources problem_report.py pyasn1 pyasn1-0.4.2.egg-info pyasn1_modules pyasn1_modules-0.2.1.egg-info __pycache__ pycrypto-2.6.1.egg-info pygobject-3.26.1.egg-info pygtkcompat PyJWT-1.5.3.egg-info pyOpenSSL-17.5.0.egg-info pyserial-3.4.egg-info python_apt-1.6.5_ubuntu0.2.egg-info python_debian-0.1.32.egg-info pyxdg-0.25.egg-info PyYAML-3.12.egg-info README.txt requests requests-2.18.4.egg-info requests_unixsocket requests_unixsocket-0.1.5.egg-info secretstorage SecretStorage-2.3.1.egg-info serial service_identity service_identity-16.0.0.egg-info setuptools setuptools-39.0.1.egg-info six-1.11.0.egg-info six.py _snack.cpython-36m-x86_64-linux-gnu.so snack.py softwareproperties ssh_import_id ssh_import_id-5.7.egg-info systemd systemd_python-234.egg-info twisted Twisted-17.9.0.egg-info ufw ufw-0.36.egg-info unattended_upgrades-0.1.egg-info UpdateManager urllib3 urllib3-1.22.egg-info validate.py _version.py wheel wheel-0.30.0.egg-info xdg yaml _yaml.cpython-36m-x86_64-linux-gnu.so zope zope.interface-4.3.2.egg-info zope.interface-4.3.2-nspkg.pth /usr/lib/python3/dist-packages/apport: crashdb_impl crashdb.py fileutils.py hookutils.py __init__.py packaging_impl.py packaging.py __pycache__ report.py REThread.py sandboxutils.py ui.py /usr/lib/python3/dist-packages/apport/crashdb_impl: debian.py __init__.py launchpad.py memory.py __pycache__ /usr/lib/python3/dist-packages/apport/crashdb_impl/__pycache__: debian.cpython-36.pyc __init__.cpython-36.pyc launchpad.cpython-36.pyc memory.cpython-36.pyc /usr/lib/python3/dist-packages/apport/__pycache__: crashdb.cpython-36.pyc fileutils.cpython-36.pyc hookutils.cpython-36.pyc __init__.cpython-36.pyc packaging.cpython-36.pyc packaging_impl.cpython-36.pyc report.cpython-36.pyc REThread.cpython-36.pyc sandboxutils.cpython-36.pyc ui.cpython-36.pyc /usr/lib/python3/dist-packages/apt: auth.py cache.py cdrom.py debfile.py __init__.py package.py progress __pycache__ utils.py /usr/lib/python3/dist-packages/apt/progress: base.py __init__.py __pycache__ text.py /usr/lib/python3/dist-packages/apt/progress/__pycache__: base.cpython-36.pyc __init__.cpython-36.pyc text.cpython-36.pyc /usr/lib/python3/dist-packages/apt/__pycache__: auth.cpython-36.pyc cache.cpython-36.pyc cdrom.cpython-36.pyc debfile.cpython-36.pyc __init__.cpython-36.pyc package.cpython-36.pyc utils.cpython-36.pyc /usr/lib/python3/dist-packages/aptsources: distinfo.py distro.py __init__.py __pycache__ sourceslist.py /usr/lib/python3/dist-packages/aptsources/__pycache__: distinfo.cpython-36.pyc distro.cpython-36.pyc __init__.cpython-36.pyc sourceslist.cpython-36.pyc /usr/lib/python3/dist-packages/asn1crypto: algos.py cms.py core.py crl.py csr.py _elliptic_curve.py _errors.py _ffi.py _inet.py __init__.py _int.py _iri.py keys.py ocsp.py _ordereddict.py parser.py pdf.py pem.py _perf pkcs12.py __pycache__ _teletex_codec.py tsp.py _types.py util.py version.py x509.py /usr/lib/python3/dist-packages/asn1crypto/_perf: _big_num_ctypes.py __init__.py __pycache__ /usr/lib/python3/dist-packages/asn1crypto/_perf/__pycache__: _big_num_ctypes.cpython-36.pyc __init__.cpython-36.pyc /usr/lib/python3/dist-packages/asn1crypto/__pycache__: algos.cpython-36.pyc cms.cpython-36.pyc core.cpython-36.pyc crl.cpython-36.pyc csr.cpython-36.pyc _elliptic_curve.cpython-36.pyc _errors.cpython-36.pyc _ffi.cpython-36.pyc _inet.cpython-36.pyc __init__.cpython-36.pyc _int.cpython-36.pyc _iri.cpython-36.pyc keys.cpython-36.pyc ocsp.cpython-36.pyc _ordereddict.cpython-36.pyc parser.cpython-36.pyc pdf.cpython-36.pyc pem.cpython-36.pyc pkcs12.cpython-36.pyc _teletex_codec.cpython-36.pyc tsp.cpython-36.pyc _types.cpython-36.pyc util.cpython-36.pyc version.cpython-36.pyc x509.cpython-36.pyc /usr/lib/python3/dist-packages/asn1crypto-0.24.0.egg-info: dependency_links.txt PKG-INFO top_level.txt /usr/lib/python3/dist-packages/attr: _compat.py _config.py converters.py exceptions.py filters.py _funcs.py __init__.py _make.py __pycache__ validators.py /usr/lib/python3/dist-packages/attr/__pycache__: _compat.cpython-36.pyc _config.cpython-36.pyc converters.cpython-36.pyc exceptions.cpython-36.pyc filters.cpython-36.pyc _funcs.cpython-36.pyc __init__.cpython-36.pyc _make.cpython-36.pyc validators.cpython-36.pyc /usr/lib/python3/dist-packages/attrs-17.4.0.egg-info: dependency_links.txt not-zip-safe PKG-INFO requires.txt top_level.txt /usr/lib/python3/dist-packages/automat: _core.py _discover.py __init__.py _introspection.py _methodical.py __pycache__ _test _visualize.py /usr/lib/python3/dist-packages/automat/__pycache__: _core.cpython-36.pyc _discover.cpython-36.pyc __init__.cpython-36.pyc _introspection.cpython-36.pyc _methodical.cpython-36.pyc _visualize.cpython-36.pyc /usr/lib/python3/dist-packages/automat/_test: __init__.py __pycache__ test_core.py test_discover.py test_methodical.py test_trace.py test_visualize.py /usr/lib/python3/dist-packages/automat/_test/__pycache__: __init__.cpython-36.pyc test_core.cpython-36.pyc test_discover.cpython-36.pyc test_methodical.cpython-36.pyc test_trace.cpython-36.pyc test_visualize.cpython-36.pyc /usr/lib/python3/dist-packages/Automat-0.6.0.egg-info: dependency_links.txt entry_points.txt PKG-INFO requires.txt top_level.txt /usr/lib/python3/dist-packages/blinker: base.py __init__.py __pycache__ _saferef.py _utilities.py /usr/lib/python3/dist-packages/blinker/__pycache__: base.cpython-36.pyc __init__.cpython-36.pyc _saferef.cpython-36.pyc _utilities.cpython-36.pyc /usr/lib/python3/dist-packages/certifi: cacert.pem core.py __init__.py __main__.py __pycache__ /usr/lib/python3/dist-packages/certifi/__pycache__: core.cpython-36.pyc __init__.cpython-36.pyc __main__.cpython-36.pycjc-1.17.3/tests/fixtures/ubuntu-18.04/ls-al-streaming.json000066400000000000000000000067211415226333200231050ustar00rootroot00000000000000[{"filename":".","flags":"drwxr-xr-x","links":24,"owner":"root","group":"root","size":4096,"date":"Oct 24 06:33"},{"filename":"..","flags":"drwxr-xr-x","links":24,"owner":"root","group":"root","size":4096,"date":"Oct 24 06:33"},{"filename":"bin","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:12"},{"filename":"boot","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Oct 25 07:14"},{"filename":"cdrom","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 12 17:21"},{"filename":"dev","flags":"drwxr-xr-x","links":19,"owner":"root","group":"root","size":4060,"date":"Oct 24 06:33"},{"filename":"etc","flags":"drwxr-xr-x","links":93,"owner":"root","group":"root","size":4096,"date":"Oct 24 06:32"},{"filename":"home","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 12 17:24"},{"filename":"initrd.img","link_to":"boot/initrd.img-4.15.0-66-generic","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":33,"date":"Oct 24 06:33"},{"filename":"initrd.img.old","link_to":"boot/initrd.img-4.15.0-65-generic","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":33,"date":"Oct 24 06:33"},{"filename":"lib","flags":"drwxr-xr-x","links":23,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"lib64","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 19:23"},{"filename":"lost+found","flags":"drwx------","links":2,"owner":"root","group":"root","size":16384,"date":"Aug 12 17:21"},{"filename":"media","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 19:22"},{"filename":"mnt","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 19:22"},{"filename":"opt","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 14 02:02"},{"filename":"proc","flags":"dr-xr-xr-x","links":184,"owner":"root","group":"root","size":0,"date":"Oct 21 20:17"},{"filename":"root","flags":"drwx------","links":4,"owner":"root","group":"root","size":4096,"date":"Aug 13 23:27"},{"filename":"run","flags":"drwxr-xr-x","links":29,"owner":"root","group":"root","size":1060,"date":"Oct 28 08:49"},{"filename":"sbin","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":12288,"date":"Oct 18 00:11"},{"filename":"snap","flags":"drwxr-xr-x","links":9,"owner":"root","group":"root","size":4096,"date":"Aug 14 02:01"},{"filename":"srv","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 19:22"},{"filename":"swap.img","flags":"-rw-------","links":1,"owner":"root","group":"root","size":2147483648,"date":"Aug 12 17:22"},{"filename":"sys","flags":"dr-xr-xr-x","links":13,"owner":"root","group":"root","size":0,"date":"Oct 22 00:54"},{"filename":"tmp","flags":"drwxrwxrwt","links":11,"owner":"root","group":"root","size":4096,"date":"Oct 28 19:42"},{"filename":"usr","flags":"drwxr-xr-x","links":10,"owner":"root","group":"root","size":4096,"date":"Aug 5 19:22"},{"filename":"var","flags":"drwxr-xr-x","links":13,"owner":"root","group":"root","size":4096,"date":"Aug 5 19:24"},{"filename":"vmlinuz","link_to":"boot/vmlinuz-4.15.0-66-generic","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":30,"date":"Oct 24 06:33"},{"filename":"vmlinuz.old","link_to":"boot/vmlinuz-4.15.0-65-generic","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":30,"date":"Oct 24 06:33"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/ls-al.json000066400000000000000000000075561415226333200211250ustar00rootroot00000000000000[{"filename": ".", "flags": "drwxr-xr-x", "links": 24, "owner": "root", "group": "root", "size": 4096, "date": "Oct 24 06:33"}, {"filename": "..", "flags": "drwxr-xr-x", "links": 24, "owner": "root", "group": "root", "size": 4096, "date": "Oct 24 06:33"}, {"filename": "bin", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:12"}, {"filename": "boot", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Oct 25 07:14"}, {"filename": "cdrom", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 12 17:21"}, {"filename": "dev", "flags": "drwxr-xr-x", "links": 19, "owner": "root", "group": "root", "size": 4060, "date": "Oct 24 06:33"}, {"filename": "etc", "flags": "drwxr-xr-x", "links": 93, "owner": "root", "group": "root", "size": 4096, "date": "Oct 24 06:32"}, {"filename": "home", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 12 17:24"}, {"filename": "initrd.img", "link_to": "boot/initrd.img-4.15.0-66-generic", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 33, "date": "Oct 24 06:33"}, {"filename": "initrd.img.old", "link_to": "boot/initrd.img-4.15.0-65-generic", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 33, "date": "Oct 24 06:33"}, {"filename": "lib", "flags": "drwxr-xr-x", "links": 23, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "lib64", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 19:23"}, {"filename": "lost+found", "flags": "drwx------", "links": 2, "owner": "root", "group": "root", "size": 16384, "date": "Aug 12 17:21"}, {"filename": "media", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 19:22"}, {"filename": "mnt", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 19:22"}, {"filename": "opt", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 14 02:02"}, {"filename": "proc", "flags": "dr-xr-xr-x", "links": 184, "owner": "root", "group": "root", "size": 0, "date": "Oct 21 20:17"}, {"filename": "root", "flags": "drwx------", "links": 4, "owner": "root", "group": "root", "size": 4096, "date": "Aug 13 23:27"}, {"filename": "run", "flags": "drwxr-xr-x", "links": 29, "owner": "root", "group": "root", "size": 1060, "date": "Oct 28 08:49"}, {"filename": "sbin", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 12288, "date": "Oct 18 00:11"}, {"filename": "snap", "flags": "drwxr-xr-x", "links": 9, "owner": "root", "group": "root", "size": 4096, "date": "Aug 14 02:01"}, {"filename": "srv", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 19:22"}, {"filename": "swap.img", "flags": "-rw-------", "links": 1, "owner": "root", "group": "root", "size": 2147483648, "date": "Aug 12 17:22"}, {"filename": "sys", "flags": "dr-xr-xr-x", "links": 13, "owner": "root", "group": "root", "size": 0, "date": "Oct 22 00:54"}, {"filename": "tmp", "flags": "drwxrwxrwt", "links": 11, "owner": "root", "group": "root", "size": 4096, "date": "Oct 28 19:42"}, {"filename": "usr", "flags": "drwxr-xr-x", "links": 10, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 19:22"}, {"filename": "var", "flags": "drwxr-xr-x", "links": 13, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 19:24"}, {"filename": "vmlinuz", "link_to": "boot/vmlinuz-4.15.0-66-generic", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 30, "date": "Oct 24 06:33"}, {"filename": "vmlinuz.old", "link_to": "boot/vmlinuz-4.15.0-65-generic", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 30, "date": "Oct 24 06:33"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/ls-al.out000066400000000000000000000033201415226333200207440ustar00rootroot00000000000000total 2097256 drwxr-xr-x 24 root root 4096 Oct 24 06:33 . drwxr-xr-x 24 root root 4096 Oct 24 06:33 .. drwxr-xr-x 2 root root 4096 Oct 18 00:12 bin drwxr-xr-x 3 root root 4096 Oct 25 07:14 boot drwxr-xr-x 2 root root 4096 Aug 12 17:21 cdrom drwxr-xr-x 19 root root 4060 Oct 24 06:33 dev drwxr-xr-x 93 root root 4096 Oct 24 06:32 etc drwxr-xr-x 3 root root 4096 Aug 12 17:24 home lrwxrwxrwx 1 root root 33 Oct 24 06:33 initrd.img -> boot/initrd.img-4.15.0-66-generic lrwxrwxrwx 1 root root 33 Oct 24 06:33 initrd.img.old -> boot/initrd.img-4.15.0-65-generic drwxr-xr-x 23 root root 4096 Oct 18 00:14 lib drwxr-xr-x 2 root root 4096 Aug 5 19:23 lib64 drwx------ 2 root root 16384 Aug 12 17:21 lost+found drwxr-xr-x 2 root root 4096 Aug 5 19:22 media drwxr-xr-x 2 root root 4096 Aug 5 19:22 mnt drwxr-xr-x 3 root root 4096 Aug 14 02:02 opt dr-xr-xr-x 184 root root 0 Oct 21 20:17 proc drwx------ 4 root root 4096 Aug 13 23:27 root drwxr-xr-x 29 root root 1060 Oct 28 08:49 run drwxr-xr-x 2 root root 12288 Oct 18 00:11 sbin drwxr-xr-x 9 root root 4096 Aug 14 02:01 snap drwxr-xr-x 2 root root 4096 Aug 5 19:22 srv -rw------- 1 root root 2147483648 Aug 12 17:22 swap.img dr-xr-xr-x 13 root root 0 Oct 22 00:54 sys drwxrwxrwt 11 root root 4096 Oct 28 19:42 tmp drwxr-xr-x 10 root root 4096 Aug 5 19:22 usr drwxr-xr-x 13 root root 4096 Aug 5 19:24 var lrwxrwxrwx 1 root root 30 Oct 24 06:33 vmlinuz -> boot/vmlinuz-4.15.0-66-generic lrwxrwxrwx 1 root root 30 Oct 24 06:33 vmlinuz.old -> boot/vmlinuz-4.15.0-65-generic jc-1.17.3/tests/fixtures/ubuntu-18.04/ls-alR-streaming.json000066400000000000000000025263671415226333200232460ustar00rootroot00000000000000[{"filename":".","parent":"/usr","flags":"drwxr-xr-x","links":10,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"..","parent":"/usr","flags":"drwxr-xr-x","links":24,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:04"},{"filename":"bin","parent":"/usr","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":28672,"date":"Feb 6 06:24"},{"filename":"games","parent":"/usr","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Apr 24 2018"},{"filename":"include","parent":"/usr","flags":"drwxr-xr-x","links":34,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"lib","parent":"/usr","flags":"drwxr-xr-x","links":65,"owner":"root","group":"root","size":4096,"date":"Oct 30 21:02"},{"filename":"local","parent":"/usr","flags":"drwxr-xr-x","links":10,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"sbin","parent":"/usr","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"share","parent":"/usr","flags":"drwxr-xr-x","links":117,"owner":"root","group":"root","size":4096,"date":"Oct 30 21:02"},{"filename":"src","parent":"/usr","flags":"drwxr-xr-x","links":6,"owner":"root","group":"root","size":4096,"date":"Feb 6 06:23"},{"filename":".","parent":"/usr/bin","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":28672,"date":"Feb 6 06:24"},{"filename":"..","parent":"/usr/bin","flags":"drwxr-xr-x","links":10,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"[","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":51384,"date":"Jan 18 2018"},{"filename":"aa-enabled","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22696,"date":"Sep 27 2018"},{"filename":"aa-exec","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22696,"date":"Sep 27 2018"},{"filename":"acpi_listen","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14608,"date":"Apr 28 2017"},{"filename":"add-apt-repository","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":7258,"date":"Jul 12 2019"},{"filename":"addpart","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22608,"date":"Oct 15 2018"},{"filename":"addr2line","link_to":"x86_64-linux-gnu-addr2line","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":26,"date":"May 8 2019"},{"filename":"apport-bug","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2558,"date":"Feb 13 2018"},{"filename":"apport-cli","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":13367,"date":"Nov 5 02:49"},{"filename":"apport-collect","link_to":"apport-bug","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":10,"date":"Nov 5 02:49"},{"filename":"apport-unpack","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1849,"date":"Nov 5 02:49"},{"filename":"apropos","link_to":"whatis","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"Aug 4 2018"},{"filename":"apt","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14424,"date":"May 7 2019"},{"filename":"apt-add-repository","link_to":"add-apt-repository","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":18,"date":"Jul 12 2019"},{"filename":"apt-cache","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":80032,"date":"May 7 2019"},{"filename":"apt-cdrom","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22688,"date":"May 7 2019"},{"filename":"apt-config","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22616,"date":"May 7 2019"},{"filename":"apt-extracttemplates","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22688,"date":"May 7 2019"},{"filename":"apt-ftparchive","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":239776,"date":"May 7 2019"},{"filename":"apt-get","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43168,"date":"May 7 2019"},{"filename":"apt-key","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":27391,"date":"May 7 2019"},{"filename":"apt-mark","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43168,"date":"May 7 2019"},{"filename":"apt-sortpkgs","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43096,"date":"May 7 2019"},{"filename":"ar","link_to":"x86_64-linux-gnu-ar","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":19,"date":"May 8 2019"},{"filename":"arch","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35032,"date":"Jan 18 2018"},{"filename":"as","link_to":"x86_64-linux-gnu-as","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":19,"date":"May 8 2019"},{"filename":"at","parent":"/usr/bin","flags":"-rwsr-sr-x","links":1,"owner":"daemon","group":"daemon","size":51464,"date":"Feb 20 2018"},{"filename":"atq","link_to":"at","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":2,"date":"Feb 20 2018"},{"filename":"atrm","link_to":"at","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":2,"date":"Feb 20 2018"},{"filename":"automat-visualize3","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":402,"date":"Aug 28 2017"},{"filename":"awk","link_to":"/etc/alternatives/awk","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"Aug 5 2019"},{"filename":"b2sum","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":55512,"date":"Jan 18 2018"},{"filename":"base32","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39096,"date":"Jan 18 2018"},{"filename":"base64","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39096,"date":"Jan 18 2018"},{"filename":"basename","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"Jan 18 2018"},{"filename":"bashbug","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":7115,"date":"Jun 6 2019"},{"filename":"batch","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":152,"date":"Feb 20 2018"},{"filename":"bc","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":92872,"date":"Mar 22 2018"},{"filename":"bootctl","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":34952,"date":"Feb 5 01:07"},{"filename":"bsd-from","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10232,"date":"Jan 17 2018"},{"filename":"bsd-write","parent":"/usr/bin","flags":"-rwxr-sr-x","links":1,"owner":"root","group":"tty","size":14328,"date":"Jan 17 2018"},{"filename":"busctl","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":67672,"date":"Feb 5 01:07"},{"filename":"byobu","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":8264,"date":"Dec 4 2017"},{"filename":"byobu-config","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":996,"date":"Dec 4 2017"},{"filename":"byobu-ctrl-a","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4774,"date":"Dec 4 2017"},{"filename":"byobu-disable","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1295,"date":"Dec 4 2017"},{"filename":"byobu-disable-prompt","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1307,"date":"Dec 4 2017"},{"filename":"byobu-enable","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1182,"date":"Dec 4 2017"},{"filename":"byobu-enable-prompt","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1453,"date":"Dec 4 2017"},{"filename":"byobu-export","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1260,"date":"Dec 4 2017"},{"filename":"byobu-janitor","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":5963,"date":"Dec 4 2017"},{"filename":"byobu-keybindings","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1506,"date":"Dec 4 2017"},{"filename":"byobu-launch","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3289,"date":"Dec 4 2017"},{"filename":"byobu-launcher","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1910,"date":"Dec 4 2017"},{"filename":"byobu-launcher-install","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2459,"date":"Dec 4 2017"},{"filename":"byobu-launcher-uninstall","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1561,"date":"Dec 4 2017"},{"filename":"byobu-layout","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3348,"date":"Dec 4 2017"},{"filename":"byobu-prompt","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1156,"date":"Dec 4 2017"},{"filename":"byobu-quiet","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1410,"date":"Dec 4 2017"},{"filename":"byobu-reconnect-sockets","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3298,"date":"Dec 4 2017"},{"filename":"byobu-screen","link_to":"byobu","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"Dec 4 2017"},{"filename":"byobu-select-backend","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1452,"date":"Dec 4 2017"},{"filename":"byobu-select-profile","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":6287,"date":"Dec 4 2017"},{"filename":"byobu-select-session","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1012,"date":"Dec 4 2017"},{"filename":"byobu-shell","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1599,"date":"Dec 4 2017"},{"filename":"byobu-silent","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1306,"date":"Dec 4 2017"},{"filename":"byobu-status","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":6015,"date":"Dec 4 2017"},{"filename":"byobu-status-detail","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1207,"date":"Dec 4 2017"},{"filename":"byobu-tmux","link_to":"byobu","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"Dec 4 2017"},{"filename":"byobu-ugraph","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4667,"date":"Dec 4 2017"},{"filename":"byobu-ulevel","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":11996,"date":"Dec 4 2017"},{"filename":"c++","link_to":"/etc/alternatives/c++","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"Oct 18 00:14"},{"filename":"c89","link_to":"/etc/alternatives/c89","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"Oct 18 00:14"},{"filename":"c89-gcc","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":428,"date":"May 7 2006"},{"filename":"c99","link_to":"/etc/alternatives/c99","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"Oct 18 00:14"},{"filename":"c99-gcc","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":454,"date":"Apr 11 2011"},{"filename":"cal","link_to":"ncal","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"Jan 17 2018"},{"filename":"calendar","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31208,"date":"Jan 17 2018"},{"filename":"captoinfo","link_to":"tic","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"May 23 2018"},{"filename":"catchsegv","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3327,"date":"Apr 16 2018"},{"filename":"catman","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39384,"date":"Aug 4 2018"},{"filename":"cautious-launcher","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":853,"date":"Jul 15 2016"},{"filename":"cc","link_to":"/etc/alternatives/cc","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":20,"date":"Oct 18 00:14"},{"filename":"c++filt","link_to":"x86_64-linux-gnu-c++filt","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"May 8 2019"},{"filename":"cftp3","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":380,"date":"Apr 20 2018"},{"filename":"cgroupfs-mount","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1275,"date":"Jan 25 2016"},{"filename":"cgroupfs-umount","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":620,"date":"Jan 25 2016"},{"filename":"chacl","link_to":"/bin/chacl","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":10,"date":"Aug 5 2019"},{"filename":"chage","parent":"/usr/bin","flags":"-rwxr-sr-x","links":1,"owner":"root","group":"shadow","size":71816,"date":"Mar 22 2019"},{"filename":"chardet3","link_to":"chardetect3","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":11,"date":"Jun 18 2017"},{"filename":"chardetect3","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":389,"date":"Jun 18 2017"},{"filename":"chattr","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14336,"date":"Jan 22 14:40"},{"filename":"chcon","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":63672,"date":"Jan 18 2018"},{"filename":"check-language-support","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2771,"date":"Jun 28 2019"},{"filename":"chfn","parent":"/usr/bin","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"root","size":76496,"date":"Mar 22 2019"},{"filename":"chrt","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30800,"date":"Oct 15 2018"},{"filename":"chsh","parent":"/usr/bin","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"root","size":44528,"date":"Mar 22 2019"},{"filename":"cifsiostat","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":34960,"date":"Jan 17 11:24"},{"filename":"ckbcomp","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":149838,"date":"Apr 23 2019"},{"filename":"ckeygen3","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":386,"date":"Apr 20 2018"},{"filename":"cksum","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"Jan 18 2018"},{"filename":"clear","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10240,"date":"May 23 2018"},{"filename":"clear_console","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"Jun 6 2019"},{"filename":"cloud-id","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":390,"date":"May 11 2019"},{"filename":"cloud-init","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":394,"date":"May 11 2019"},{"filename":"cloud-init-per","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2108,"date":"May 10 2019"},{"filename":"cmp","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47200,"date":"Aug 4 2017"},{"filename":"codepage","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14328,"date":"Jan 22 2018"},{"filename":"col","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10232,"date":"Jan 17 2018"},{"filename":"col1","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":963,"date":"Dec 4 2017"},{"filename":"col2","link_to":"col1","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"Dec 4 2017"},{"filename":"col3","link_to":"col1","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"Dec 4 2017"},{"filename":"col4","link_to":"col1","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"Dec 4 2017"},{"filename":"col5","link_to":"col1","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"Dec 4 2017"},{"filename":"col6","link_to":"col1","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"Dec 4 2017"},{"filename":"col7","link_to":"col1","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"Dec 4 2017"},{"filename":"col8","link_to":"col1","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"Dec 4 2017"},{"filename":"col9","link_to":"col1","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"Dec 4 2017"},{"filename":"colcrt","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10240,"date":"Jan 17 2018"},{"filename":"colrm","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10232,"date":"Jan 17 2018"},{"filename":"column","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14344,"date":"Jan 17 2018"},{"filename":"comm","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39128,"date":"Jan 18 2018"},{"filename":"compose","link_to":"run-mailcap","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":11,"date":"Jul 15 2016"},{"filename":"conch3","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":382,"date":"Apr 20 2018"},{"filename":"containerd","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":40697760,"date":"Jul 3 2019"},{"filename":"containerd-shim","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4973832,"date":"Jul 3 2019"},{"filename":"containerd-shim-runc-v1","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":6258056,"date":"Jul 3 2019"},{"filename":"containerd-stress","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18702208,"date":"Jul 3 2019"},{"filename":"corelist","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":12835,"date":"Nov 19 2018"},{"filename":"cpan","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":8156,"date":"Nov 19 2018"},{"filename":"cpan5.26-x86_64-linux-gnu","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":8177,"date":"Nov 19 2018"},{"filename":"cpp","link_to":"cpp-7","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"May 20 2019"},{"filename":"cpp-7","link_to":"x86_64-linux-gnu-cpp-7","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"May 8 2019"},{"filename":"c_rehash","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":6332,"date":"Nov 12 16:58"},{"filename":"crontab","parent":"/usr/bin","flags":"-rwxr-sr-x","links":1,"owner":"root","group":"crontab","size":39352,"date":"Nov 16 2017"},{"filename":"csplit","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":51416,"date":"Jan 18 2018"},{"filename":"ctail","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":958,"date":"Dec 4 2017"},{"filename":"ctr","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22322880,"date":"Jul 3 2019"},{"filename":"ctstat","link_to":"lnstat","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"Feb 26 2018"},{"filename":"curl","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":223304,"date":"Sep 6 05:27"},{"filename":"cut","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43224,"date":"Jan 18 2018"},{"filename":"dbus-cleanup-sockets","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10224,"date":"Jun 10 2019"},{"filename":"dbus-daemon","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":236584,"date":"Jun 10 2019"},{"filename":"dbus-monitor","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22520,"date":"Jun 10 2019"},{"filename":"dbus-run-session","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10224,"date":"Jun 10 2019"},{"filename":"dbus-send","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26608,"date":"Jun 10 2019"},{"filename":"dbus-update-activation-environment","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14320,"date":"Jun 10 2019"},{"filename":"dbus-uuidgen","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10224,"date":"Jun 10 2019"},{"filename":"deallocvt","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"Jan 22 2018"},{"filename":"debconf","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2859,"date":"May 6 2019"},{"filename":"debconf-apt-progress","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":11541,"date":"May 6 2019"},{"filename":"debconf-communicate","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":608,"date":"May 6 2019"},{"filename":"debconf-copydb","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1719,"date":"May 6 2019"},{"filename":"debconf-escape","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":647,"date":"May 6 2019"},{"filename":"debconf-set-selections","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2935,"date":"May 6 2019"},{"filename":"debconf-show","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1827,"date":"May 6 2019"},{"filename":"deb-systemd-helper","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":20142,"date":"Oct 25 2017"},{"filename":"deb-systemd-invoke","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4434,"date":"Oct 25 2017"},{"filename":"delpart","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22608,"date":"Oct 15 2018"},{"filename":"delv","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":41840,"date":"Nov 18 15:01"},{"filename":"dh_bash-completion","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2550,"date":"Apr 2 2018"},{"filename":"dh_pypy","link_to":"../share/dh-python/dh_pypy","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":26,"date":"Mar 26 2018"},{"filename":"dh_python3","link_to":"../share/dh-python/dh_python3","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":29,"date":"Mar 26 2018"},{"filename":"diff","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":145752,"date":"Aug 4 2017"},{"filename":"diff3","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":63704,"date":"Aug 4 2017"},{"filename":"dig","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":150024,"date":"Nov 18 15:01"},{"filename":"dircolors","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47296,"date":"Jan 18 2018"},{"filename":"dirmngr","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":546360,"date":"Jan 10 2019"},{"filename":"dirmngr-client","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":109320,"date":"Jan 10 2019"},{"filename":"dirname","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30904,"date":"Jan 18 2018"},{"filename":"docker","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":68677120,"date":"Aug 14 2019"},{"filename":"dockerd","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":81828392,"date":"Aug 14 2019"},{"filename":"docker-init","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":804408,"date":"Aug 14 2019"},{"filename":"docker-proxy","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2857151,"date":"Aug 14 2019"},{"filename":"do-release-upgrade","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":9017,"date":"Jun 19 2019"},{"filename":"dpkg","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":297472,"date":"Oct 4 2018"},{"filename":"dpkg-architecture","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":12852,"date":"Sep 5 21:05"},{"filename":"dpkg-buildflags","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":7565,"date":"Sep 5 21:05"},{"filename":"dpkg-buildpackage","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":29796,"date":"Sep 5 21:05"},{"filename":"dpkg-checkbuilddeps","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":7503,"date":"Sep 5 21:05"},{"filename":"dpkg-deb","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":153952,"date":"Oct 4 2018"},{"filename":"dpkg-distaddfile","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2782,"date":"Sep 5 21:05"},{"filename":"dpkg-divert","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":141728,"date":"Oct 4 2018"},{"filename":"dpkg-genbuildinfo","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":16775,"date":"Sep 5 21:05"},{"filename":"dpkg-genchanges","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":17622,"date":"Sep 5 21:05"},{"filename":"dpkg-gencontrol","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14059,"date":"Sep 5 21:05"},{"filename":"dpkg-gensymbols","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10629,"date":"Sep 5 21:05"},{"filename":"dpkg-maintscript-helper","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":19031,"date":"Oct 4 2018"},{"filename":"dpkg-mergechangelogs","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":8590,"date":"Sep 5 21:05"},{"filename":"dpkg-name","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":6789,"date":"Sep 5 21:05"},{"filename":"dpkg-parsechangelog","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4435,"date":"Sep 5 21:05"},{"filename":"dpkg-query","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":149912,"date":"Oct 4 2018"},{"filename":"dpkg-scanpackages","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":8425,"date":"Sep 5 21:05"},{"filename":"dpkg-scansources","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":9167,"date":"Sep 5 21:05"},{"filename":"dpkg-shlibdeps","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31360,"date":"Sep 5 21:05"},{"filename":"dpkg-source","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":23300,"date":"Sep 5 21:05"},{"filename":"dpkg-split","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":121176,"date":"Oct 4 2018"},{"filename":"dpkg-statoverride","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":71936,"date":"Oct 4 2018"},{"filename":"dpkg-trigger","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":67848,"date":"Oct 4 2018"},{"filename":"dpkg-vendor","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3262,"date":"Sep 5 21:05"},{"filename":"du","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":100568,"date":"Jan 18 2018"},{"filename":"dumpkeys","link_to":"/bin/dumpkeys","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":13,"date":"Aug 5 2019"},{"filename":"dwp","link_to":"x86_64-linux-gnu-dwp","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":20,"date":"May 8 2019"},{"filename":"eatmydata","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2806,"date":"Mar 9 2018"},{"filename":"ec2metadata","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":7297,"date":"Apr 13 2018"},{"filename":"edit","link_to":"run-mailcap","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":11,"date":"Jul 15 2016"},{"filename":"editor","link_to":"/etc/alternatives/editor","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"Aug 5 2019"},{"filename":"eject","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31424,"date":"Mar 28 2017"},{"filename":"elfedit","link_to":"x86_64-linux-gnu-elfedit","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"May 8 2019"},{"filename":"enc2xs","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":42153,"date":"Nov 19 2018"},{"filename":"encguess","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3066,"date":"Nov 19 2018"},{"filename":"env","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"Jan 18 2018"},{"filename":"envsubst","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":34896,"date":"Feb 21 2019"},{"filename":"eqn","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":197824,"date":"Feb 10 2018"},{"filename":"ex","link_to":"/etc/alternatives/ex","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":20,"date":"Aug 5 2019"},{"filename":"expand","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39128,"date":"Jan 18 2018"},{"filename":"expiry","parent":"/usr/bin","flags":"-rwxr-sr-x","links":1,"owner":"root","group":"shadow","size":22808,"date":"Mar 22 2019"},{"filename":"expr","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47288,"date":"Jan 18 2018"},{"filename":"factor","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":75992,"date":"Jan 18 2018"},{"filename":"faillog","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18728,"date":"Mar 22 2019"},{"filename":"faked-sysv","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26736,"date":"Jan 8 2018"},{"filename":"faked-tcp","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30824,"date":"Jan 8 2018"},{"filename":"fakeroot","link_to":"/etc/alternatives/fakeroot","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":26,"date":"Oct 18 00:14"},{"filename":"fakeroot-sysv","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3851,"date":"Jan 8 2018"},{"filename":"fakeroot-tcp","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3846,"date":"Jan 8 2018"},{"filename":"fallocate","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26704,"date":"Oct 15 2018"},{"filename":"file","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22792,"date":"Oct 29 16:50"},{"filename":"find","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":238080,"date":"Nov 5 2017"},{"filename":"flock","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30880,"date":"Oct 15 2018"},{"filename":"fmt","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43192,"date":"Jan 18 2018"},{"filename":"fold","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"Jan 18 2018"},{"filename":"free","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18512,"date":"May 14 2018"},{"filename":"from","link_to":"/etc/alternatives/from","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"Aug 5 2019"},{"filename":"ftp","link_to":"/etc/alternatives/ftp","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"Aug 5 2019"},{"filename":"g++","link_to":"g++-7","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"May 20 2019"},{"filename":"g++-7","link_to":"x86_64-linux-gnu-g++-7","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"May 8 2019"},{"filename":"gawk","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":658072,"date":"Feb 11 2018"},{"filename":"gcc","link_to":"gcc-7","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"May 20 2019"},{"filename":"gcc-7","link_to":"x86_64-linux-gnu-gcc-7","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"May 8 2019"},{"filename":"gcc-ar","link_to":"gcc-ar-7","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":8,"date":"May 20 2019"},{"filename":"gcc-ar-7","link_to":"x86_64-linux-gnu-gcc-ar-7","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":25,"date":"May 8 2019"},{"filename":"gcc-nm","link_to":"gcc-nm-7","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":8,"date":"May 20 2019"},{"filename":"gcc-nm-7","link_to":"x86_64-linux-gnu-gcc-nm-7","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":25,"date":"May 8 2019"},{"filename":"gcc-ranlib","link_to":"gcc-ranlib-7","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":12,"date":"May 20 2019"},{"filename":"gcc-ranlib-7","link_to":"x86_64-linux-gnu-gcc-ranlib-7","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":29,"date":"May 8 2019"},{"filename":"gcov","link_to":"gcov-7","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"May 20 2019"},{"filename":"gcov-7","link_to":"x86_64-linux-gnu-gcov-7","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":23,"date":"May 8 2019"},{"filename":"gcov-dump","link_to":"gcov-dump-7","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":11,"date":"May 20 2019"},{"filename":"gcov-dump-7","link_to":"x86_64-linux-gnu-gcov-dump-7","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":28,"date":"May 8 2019"},{"filename":"gcov-tool","link_to":"gcov-tool-7","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":11,"date":"May 20 2019"},{"filename":"gcov-tool-7","link_to":"x86_64-linux-gnu-gcov-tool-7","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":28,"date":"May 8 2019"},{"filename":"gencat","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22752,"date":"Apr 16 2018"},{"filename":"geqn","link_to":"eqn","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Feb 10 2018"},{"filename":"getconf","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30856,"date":"Apr 16 2018"},{"filename":"getent","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31224,"date":"Apr 16 2018"},{"filename":"getfacl","link_to":"/bin/getfacl","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":12,"date":"Aug 5 2019"},{"filename":"getkeycodes","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"Jan 22 2018"},{"filename":"getopt","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14408,"date":"Oct 15 2018"},{"filename":"gettext","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":34896,"date":"Feb 21 2019"},{"filename":"gettext.sh","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4629,"date":"Feb 21 2019"},{"filename":"ginstall-info","link_to":"install-info","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":12,"date":"Feb 5 2018"},{"filename":"git","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2347696,"date":"Dec 9 13:29"},{"filename":"git-receive-pack","link_to":"git","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-shell","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1304912,"date":"Dec 9 13:29"},{"filename":"git-upload-archive","link_to":"git","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-upload-pack","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1317120,"date":"Dec 9 13:29"},{"filename":"gold","link_to":"x86_64-linux-gnu-gold","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"May 8 2019"},{"filename":"gpasswd","parent":"/usr/bin","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"root","size":75824,"date":"Mar 22 2019"},{"filename":"gpg","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1017384,"date":"Jan 10 2019"},{"filename":"gpg-agent","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":398024,"date":"Jan 10 2019"},{"filename":"gpgconf","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":166216,"date":"Jan 10 2019"},{"filename":"gpg-connect-agent","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":158568,"date":"Jan 10 2019"},{"filename":"gpgparsemail","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26696,"date":"Jan 10 2019"},{"filename":"gpgsm","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":502880,"date":"Jan 10 2019"},{"filename":"gpgsplit","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":80336,"date":"Jan 10 2019"},{"filename":"gpgv","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":437264,"date":"Jan 10 2019"},{"filename":"gpg-wks-server","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":191504,"date":"Jan 10 2019"},{"filename":"gpg-zip","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3443,"date":"Jan 10 2019"},{"filename":"gpic","link_to":"pic","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Feb 10 2018"},{"filename":"gprof","link_to":"x86_64-linux-gnu-gprof","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"May 8 2019"},{"filename":"groff","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":107840,"date":"Feb 10 2018"},{"filename":"grog","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2780,"date":"Feb 10 2018"},{"filename":"grops","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":169696,"date":"Feb 10 2018"},{"filename":"grotty","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":124256,"date":"Feb 10 2018"},{"filename":"groups","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"Jan 18 2018"},{"filename":"growpart","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":21883,"date":"Apr 13 2018"},{"filename":"grub-editenv","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":245688,"date":"Mar 18 2019"},{"filename":"grub-file","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":675624,"date":"Mar 18 2019"},{"filename":"grub-fstest","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":808600,"date":"Mar 18 2019"},{"filename":"grub-glue-efi","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":241432,"date":"Mar 18 2019"},{"filename":"grub-kbdcomp","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1681,"date":"Mar 18 2019"},{"filename":"grub-menulst2cfg","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":221224,"date":"Mar 18 2019"},{"filename":"grub-mkfont","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":270680,"date":"Mar 18 2019"},{"filename":"grub-mkimage","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":336728,"date":"Mar 18 2019"},{"filename":"grub-mklayout","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":245848,"date":"Mar 18 2019"},{"filename":"grub-mknetdir","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":378280,"date":"Mar 18 2019"},{"filename":"grub-mkpasswd-pbkdf2","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":249976,"date":"Mar 18 2019"},{"filename":"grub-mkrelpath","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":241144,"date":"Mar 18 2019"},{"filename":"grub-mkrescue","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":841960,"date":"Mar 18 2019"},{"filename":"grub-mkstandalone","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":460536,"date":"Mar 18 2019"},{"filename":"grub-mount","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":622808,"date":"Mar 18 2019"},{"filename":"grub-ntldr-img","link_to":"../lib/grub/i386-pc/grub-ntldr-img","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":34,"date":"Mar 18 2019"},{"filename":"grub-render-label","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":692392,"date":"Mar 18 2019"},{"filename":"grub-script-check","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":265848,"date":"Mar 18 2019"},{"filename":"grub-syslinux2cfg","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":639672,"date":"Mar 18 2019"},{"filename":"gtbl","link_to":"tbl","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Feb 10 2018"},{"filename":"h2ph","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":29224,"date":"Nov 19 2018"},{"filename":"h2xs","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":60866,"date":"Nov 19 2018"},{"filename":"hd","link_to":"hexdump","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":7,"date":"Jan 17 2018"},{"filename":"head","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43224,"date":"Jan 18 2018"},{"filename":"helpztags","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2514,"date":"Feb 2 2018"},{"filename":"hexdump","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26728,"date":"Jan 17 2018"},{"filename":"host","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":129704,"date":"Nov 18 15:01"},{"filename":"hostid","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30904,"date":"Jan 18 2018"},{"filename":"hostnamectl","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18504,"date":"Feb 5 01:07"},{"filename":"htop","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":185016,"date":"Feb 17 2018"},{"filename":"hwe-support-status","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10830,"date":"Apr 9 2019"},{"filename":"i386","link_to":"setarch","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":7,"date":"Oct 15 2018"},{"filename":"iconv","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":63744,"date":"Apr 16 2018"},{"filename":"id","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43224,"date":"Jan 18 2018"},{"filename":"igawk","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3189,"date":"Feb 11 2018"},{"filename":"info","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":251616,"date":"Feb 5 2018"},{"filename":"infobrowser","link_to":"/etc/alternatives/infobrowser","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":29,"date":"Aug 5 2019"},{"filename":"infocmp","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":59464,"date":"May 23 2018"},{"filename":"infotocap","link_to":"tic","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"May 23 2018"},{"filename":"install","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":145664,"date":"Jan 18 2018"},{"filename":"install-info","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":44128,"date":"Feb 5 2018"},{"filename":"instmodsh","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4370,"date":"Nov 19 2018"},{"filename":"ionice","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26704,"date":"Oct 15 2018"},{"filename":"iostat","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":55440,"date":"Jan 17 11:24"},{"filename":"ipcmk","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26768,"date":"Oct 15 2018"},{"filename":"ipcrm","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26704,"date":"Oct 15 2018"},{"filename":"ipcs","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":51280,"date":"Oct 15 2018"},{"filename":"iptables-xml","link_to":"/sbin/xtables-multi","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":19,"date":"Nov 12 2017"},{"filename":"ischroot","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10280,"date":"Dec 30 2017"},{"filename":"iscsiadm","link_to":"/sbin/iscsiadm","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":14,"date":"Mar 28 2019"},{"filename":"join","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47320,"date":"Jan 18 2018"},{"filename":"jq","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22520,"date":"Jan 30 2017"},{"filename":"jsondiff","link_to":"/etc/alternatives/jsondiff","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":26,"date":"Aug 5 2019"},{"filename":"jsonpatch","link_to":"/etc/alternatives/jsonpatch","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":27,"date":"Aug 5 2019"},{"filename":"jsonpointer","link_to":"/etc/alternatives/jsonpointer","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":29,"date":"Aug 5 2019"},{"filename":"json_pp","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3959,"date":"Nov 19 2018"},{"filename":"jsonschema","link_to":"/etc/alternatives/jsonschema","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":28,"date":"Aug 5 2019"},{"filename":"kbdinfo","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14408,"date":"Jan 22 2018"},{"filename":"kbxutil","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":162496,"date":"Jan 10 2019"},{"filename":"keep-one-running","link_to":"run-one","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":7,"date":"Jan 15 2014"},{"filename":"kernel-install","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4508,"date":"Jan 28 2018"},{"filename":"keyring","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":385,"date":"Jan 9 2018"},{"filename":"killall","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":27768,"date":"Dec 11 2018"},{"filename":"landscape-sysinfo","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":624,"date":"Feb 8 2019"},{"filename":"last","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43088,"date":"Oct 15 2018"},{"filename":"lastb","link_to":"last","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"Oct 15 2018"},{"filename":"lastlog","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18504,"date":"Mar 22 2019"},{"filename":"lcf","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":7786,"date":"Feb 26 2018"},{"filename":"ld","link_to":"x86_64-linux-gnu-ld","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":19,"date":"May 8 2019"},{"filename":"ld.bfd","link_to":"x86_64-linux-gnu-ld.bfd","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":23,"date":"May 8 2019"},{"filename":"ldd","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":5420,"date":"Apr 16 2018"},{"filename":"ld.gold","link_to":"x86_64-linux-gnu-ld.gold","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"May 8 2019"},{"filename":"less","link_to":"/bin/less","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":9,"date":"Aug 5 2019"},{"filename":"lessecho","link_to":"/bin/lessecho","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":13,"date":"Aug 5 2019"},{"filename":"lessfile","link_to":"/bin/lessfile","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":13,"date":"Aug 5 2019"},{"filename":"lesskey","link_to":"/bin/lesskey","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":12,"date":"Aug 5 2019"},{"filename":"lesspipe","link_to":"/bin/lesspipe","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":13,"date":"Aug 5 2019"},{"filename":"lexgrog","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":92744,"date":"Aug 4 2018"},{"filename":"libnetcfg","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":15775,"date":"Nov 19 2018"},{"filename":"link","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30904,"date":"Jan 18 2018"},{"filename":"linux32","link_to":"setarch","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":7,"date":"Oct 15 2018"},{"filename":"linux64","link_to":"setarch","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":7,"date":"Oct 15 2018"},{"filename":"linux-boot-prober","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1577,"date":"Jan 21 2017"},{"filename":"linux-check-removal","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4090,"date":"Jun 21 2016"},{"filename":"linux-update-symlinks","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":6320,"date":"Jun 5 2016"},{"filename":"linux-version","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2696,"date":"Sep 17 2016"},{"filename":"lnstat","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22888,"date":"Feb 26 2018"},{"filename":"loadkeys","link_to":"/bin/loadkeys","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":13,"date":"Aug 5 2019"},{"filename":"loadunimap","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26760,"date":"Jan 22 2018"},{"filename":"locale","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":50592,"date":"Apr 16 2018"},{"filename":"locale-check","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10240,"date":"Aug 5 2019"},{"filename":"localectl","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22600,"date":"Feb 5 01:07"},{"filename":"localedef","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":338744,"date":"Apr 16 2018"},{"filename":"locate","link_to":"/etc/alternatives/locate","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"Aug 5 2019"},{"filename":"logger","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47792,"date":"Oct 15 2018"},{"filename":"logname","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30904,"date":"Jan 18 2018"},{"filename":"look","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10472,"date":"Jan 17 2018"},{"filename":"lorder","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2885,"date":"Jan 17 2018"},{"filename":"lsattr","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10240,"date":"Jan 22 14:40"},{"filename":"lsb_release","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3638,"date":"Aug 7 2017"},{"filename":"lscpu","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":71760,"date":"Oct 15 2018"},{"filename":"lshw","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":687056,"date":"Jul 10 2018"},{"filename":"lsinitramfs","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":625,"date":"Sep 27 2018"},{"filename":"lsipc","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":71760,"date":"Oct 15 2018"},{"filename":"lslocks","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35232,"date":"Oct 15 2018"},{"filename":"lslogins","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":63568,"date":"Oct 15 2018"},{"filename":"lsmem","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43088,"date":"Oct 15 2018"},{"filename":"lsns","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":38992,"date":"Oct 15 2018"},{"filename":"lsof","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":163224,"date":"Oct 28 2015"},{"filename":"lspci","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":81584,"date":"Feb 10 2019"},{"filename":"lspgpot","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1081,"date":"Aug 28 2017"},{"filename":"lsusb","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":117176,"date":"Apr 21 2017"},{"filename":"ltrace","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":333016,"date":"Oct 13 2016"},{"filename":"lxc","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10779792,"date":"Nov 23 2018"},{"filename":"lxcfs","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18504,"date":"Nov 23 2018"},{"filename":"lxd","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":105,"date":"Nov 23 2018"},{"filename":"lzcat","link_to":"/etc/alternatives/lzcat","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":23,"date":"Aug 5 2019"},{"filename":"lzcmp","link_to":"/etc/alternatives/lzcmp","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":23,"date":"Aug 5 2019"},{"filename":"lzdiff","link_to":"/etc/alternatives/lzdiff","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"Aug 5 2019"},{"filename":"lzegrep","link_to":"/etc/alternatives/lzegrep","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":25,"date":"Aug 5 2019"},{"filename":"lzfgrep","link_to":"/etc/alternatives/lzfgrep","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":25,"date":"Aug 5 2019"},{"filename":"lzgrep","link_to":"/etc/alternatives/lzgrep","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"Aug 5 2019"},{"filename":"lzless","link_to":"/etc/alternatives/lzless","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"Aug 5 2019"},{"filename":"lzma","link_to":"/etc/alternatives/lzma","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"Aug 5 2019"},{"filename":"lzmainfo","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10384,"date":"Jun 28 2017"},{"filename":"lzmore","link_to":"/etc/alternatives/lzmore","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"Aug 5 2019"},{"filename":"make","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":222792,"date":"Apr 17 2018"},{"filename":"make-first-existing-target","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4905,"date":"Apr 17 2018"},{"filename":"man","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":107008,"date":"Aug 4 2018"},{"filename":"mandb","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":129760,"date":"Aug 4 2018"},{"filename":"manifest","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1942,"date":"Dec 4 2017"},{"filename":"manpath","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31200,"date":"Aug 4 2018"},{"filename":"mapscrn","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22664,"date":"Jan 22 2018"},{"filename":"mawk","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":125416,"date":"Apr 3 2018"},{"filename":"mcookie","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30864,"date":"Oct 15 2018"},{"filename":"md5sum","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43224,"date":"Jan 18 2018"},{"filename":"md5sum.textutils","link_to":"md5sum","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"Jan 18 2018"},{"filename":"mdig","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43136,"date":"Nov 18 15:01"},{"filename":"mesg","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"Oct 15 2018"},{"filename":"migrate-pubring-from-classic-gpg","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2194,"date":"Nov 30 2017"},{"filename":"miniterm","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35098,"date":"Apr 9 2018"},{"filename":"mkfifo","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":63672,"date":"Jan 18 2018"},{"filename":"mk_modmap","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":16163,"date":"Jan 22 2018"},{"filename":"mksquashfs","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":189432,"date":"Jul 5 2018"},{"filename":"mlocate","parent":"/usr/bin","flags":"-rwxr-sr-x","links":1,"owner":"root","group":"mlocate","size":43088,"date":"Mar 1 2018"},{"filename":"mpstat","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":51360,"date":"Jan 17 11:24"},{"filename":"mtr","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":73664,"date":"Nov 2 2017"},{"filename":"mtrace","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":6494,"date":"Apr 16 2018"},{"filename":"mtr-packet","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26616,"date":"Nov 2 2017"},{"filename":"namei","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26704,"date":"Oct 15 2018"},{"filename":"nawk","link_to":"/etc/alternatives/nawk","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"Aug 5 2019"},{"filename":"ncal","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":29480,"date":"Jan 17 2018"},{"filename":"ncat","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":204760,"date":"Apr 16 2018"},{"filename":"neqn","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":908,"date":"Feb 10 2018"},{"filename":"netkit-ftp","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":101064,"date":"Dec 6 2016"},{"filename":"networkd-dispatcher","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18203,"date":"Oct 15 2018"},{"filename":"newgidmap","parent":"/usr/bin","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"root","size":37136,"date":"Mar 22 2019"},{"filename":"newgrp","parent":"/usr/bin","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"root","size":40344,"date":"Mar 22 2019"},{"filename":"newuidmap","parent":"/usr/bin","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"root","size":37136,"date":"Mar 22 2019"},{"filename":"NF","link_to":"col1","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"Dec 4 2017"},{"filename":"ngettext","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":34896,"date":"Feb 21 2019"},{"filename":"nice","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"Jan 18 2018"},{"filename":"nl","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43288,"date":"Jan 18 2018"},{"filename":"nm","link_to":"x86_64-linux-gnu-nm","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":19,"date":"May 8 2019"},{"filename":"nmap","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2961432,"date":"Apr 16 2018"},{"filename":"nohup","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"Jan 18 2018"},{"filename":"nping","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":530776,"date":"Apr 16 2018"},{"filename":"nproc","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"Jan 18 2018"},{"filename":"nroff","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3323,"date":"Feb 10 2018"},{"filename":"nsenter","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31008,"date":"Oct 15 2018"},{"filename":"nslookup","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":133640,"date":"Nov 18 15:01"},{"filename":"nstat","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26696,"date":"Feb 26 2018"},{"filename":"nsupdate","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":67608,"date":"Nov 18 15:01"},{"filename":"ntfsdecrypt","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47224,"date":"Mar 21 2019"},{"filename":"numfmt","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":63736,"date":"Jan 18 2018"},{"filename":"objcopy","link_to":"x86_64-linux-gnu-objcopy","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"May 8 2019"},{"filename":"objdump","link_to":"x86_64-linux-gnu-objdump","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"May 8 2019"},{"filename":"od","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":67800,"date":"Jan 18 2018"},{"filename":"on_ac_power","link_to":"/sbin/on_ac_power","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":17,"date":"Mar 20 2018"},{"filename":"openssl","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":723944,"date":"Nov 12 16:58"},{"filename":"os-prober","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4551,"date":"Jan 31 2017"},{"filename":"pager","link_to":"/etc/alternatives/pager","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":23,"date":"Aug 5 2019"},{"filename":"partx","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":88144,"date":"Oct 15 2018"},{"filename":"passwd","parent":"/usr/bin","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"root","size":59640,"date":"Mar 22 2019"},{"filename":"paste","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35032,"date":"Jan 18 2018"},{"filename":"pastebinit","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":16642,"date":"Mar 1 2016"},{"filename":"patch","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":182648,"date":"Jul 23 2019"},{"filename":"pathchk","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"Jan 18 2018"},{"filename":"pbget","link_to":"pbput","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"Apr 15 2018"},{"filename":"pbput","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2569,"date":"Feb 29 2016"},{"filename":"pbputs","link_to":"pbput","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"Apr 15 2018"},{"filename":"pcimodules","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14472,"date":"Feb 10 2019"},{"filename":"pdb3","link_to":"pdb3.6","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"Oct 25 2018"},{"filename":"pdb3.6","link_to":"../lib/python3.6/pdb.py","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":23,"date":"Oct 7 12:59"},{"filename":"peekfd","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14328,"date":"Dec 11 2018"},{"filename":"perl","parent":"/usr/bin","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"root","size":2097720,"date":"Nov 19 2018"},{"filename":"perl5.26.1","parent":"/usr/bin","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"root","size":2097720,"date":"Nov 19 2018"},{"filename":"perl5.26-x86_64-linux-gnu","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10216,"date":"Nov 19 2018"},{"filename":"perlbug","parent":"/usr/bin","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"root","size":45853,"date":"Nov 19 2018"},{"filename":"perldoc","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":125,"date":"Nov 19 2018"},{"filename":"perlivp","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10864,"date":"Nov 19 2018"},{"filename":"perlthanks","parent":"/usr/bin","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"root","size":45853,"date":"Nov 19 2018"},{"filename":"pftp","link_to":"/etc/alternatives/pftp","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"Aug 5 2019"},{"filename":"pgrep","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26712,"date":"May 14 2018"},{"filename":"pic","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":208928,"date":"Feb 10 2018"},{"filename":"pico","link_to":"/etc/alternatives/pico","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"Aug 5 2019"},{"filename":"piconv","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":8357,"date":"Nov 19 2018"},{"filename":"pidstat","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":63648,"date":"Jan 17 11:24"},{"filename":"pigz","parent":"/usr/bin","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"root","size":116944,"date":"Dec 27 2017"},{"filename":"pinentry","link_to":"/etc/alternatives/pinentry","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":26,"date":"Aug 5 2019"},{"filename":"pinentry-curses","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":63992,"date":"Feb 6 2018"},{"filename":"pinky","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39128,"date":"Jan 18 2018"},{"filename":"pip3","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":293,"date":"Apr 3 2019"},{"filename":"pkaction","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14328,"date":"Mar 27 2019"},{"filename":"pkcheck","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18504,"date":"Mar 27 2019"},{"filename":"pkexec","parent":"/usr/bin","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"root","size":22520,"date":"Mar 27 2019"},{"filename":"pkill","link_to":"pgrep","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"May 14 2018"},{"filename":"pkttyagent","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14328,"date":"Mar 27 2019"},{"filename":"pl2pm","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4533,"date":"Nov 19 2018"},{"filename":"pldd","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18656,"date":"Apr 16 2018"},{"filename":"pmap","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30808,"date":"May 14 2018"},{"filename":"pod2html","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4134,"date":"Nov 19 2018"},{"filename":"pod2man","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":15079,"date":"Nov 19 2018"},{"filename":"pod2text","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10979,"date":"Nov 19 2018"},{"filename":"pod2usage","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3948,"date":"Nov 19 2018"},{"filename":"podchecker","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3658,"date":"Nov 19 2018"},{"filename":"podselect","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2527,"date":"Nov 19 2018"},{"filename":"pollinate","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":8744,"date":"May 29 2018"},{"filename":"pr","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":71960,"date":"Jan 18 2018"},{"filename":"preconv","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47304,"date":"Feb 10 2018"},{"filename":"print","link_to":"run-mailcap","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":11,"date":"Jul 15 2016"},{"filename":"printenv","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30904,"date":"Jan 18 2018"},{"filename":"printerbanner","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22528,"date":"Jan 17 2018"},{"filename":"printf","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":51384,"date":"Jan 18 2018"},{"filename":"prlimit","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35424,"date":"Oct 15 2018"},{"filename":"prove","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":13588,"date":"Nov 19 2018"},{"filename":"prtstat","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18504,"date":"Dec 11 2018"},{"filename":"psfaddtable","link_to":"psfxtable","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":9,"date":"Jan 22 2018"},{"filename":"psfgettable","link_to":"psfxtable","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":9,"date":"Jan 22 2018"},{"filename":"psfstriptable","link_to":"psfxtable","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":9,"date":"Jan 22 2018"},{"filename":"psfxtable","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18424,"date":"Jan 22 2018"},{"filename":"pslog","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10232,"date":"Dec 11 2018"},{"filename":"pstree","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":27592,"date":"Dec 11 2018"},{"filename":"pstree.x11","link_to":"pstree","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"Dec 11 2018"},{"filename":"ptar","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3549,"date":"Nov 19 2018"},{"filename":"ptardiff","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2628,"date":"Nov 19 2018"},{"filename":"ptargrep","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4392,"date":"Nov 19 2018"},{"filename":"ptx","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":71928,"date":"Jan 18 2018"},{"filename":"purge-old-kernels","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1149,"date":"Dec 4 2017"},{"filename":"pwdx","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"May 14 2018"},{"filename":"py3clean","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":7812,"date":"Oct 25 2018"},{"filename":"py3compile","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":12119,"date":"Oct 25 2018"},{"filename":"py3versions","link_to":"../share/python3/py3versions.py","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":31,"date":"Oct 25 2018"},{"filename":"pybuild","link_to":"../share/dh-python/pybuild","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":26,"date":"Mar 26 2018"},{"filename":"pydoc3","link_to":"pydoc3.6","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":8,"date":"Oct 25 2018"},{"filename":"pydoc3.6","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":79,"date":"Oct 7 12:59"},{"filename":"pygettext3","link_to":"pygettext3.6","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":12,"date":"Oct 25 2018"},{"filename":"pygettext3.6","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":21547,"date":"Oct 7 12:59"},{"filename":"pyhtmlizer3","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":392,"date":"Apr 20 2018"},{"filename":"pyjwt3","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":372,"date":"Sep 25 2017"},{"filename":"python3","link_to":"python3.6","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":9,"date":"Oct 25 2018"},{"filename":"python3.6","parent":"/usr/bin","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"root","size":4526456,"date":"Oct 7 12:59"},{"filename":"python3.6-config","link_to":"x86_64-linux-gnu-python3.6-config","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":33,"date":"Oct 7 12:59"},{"filename":"python3.6m","parent":"/usr/bin","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"root","size":4526456,"date":"Oct 7 12:59"},{"filename":"python3.6m-config","link_to":"x86_64-linux-gnu-python3.6m-config","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":34,"date":"Oct 7 12:59"},{"filename":"python3-config","link_to":"python3.6-config","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":16,"date":"Oct 25 2018"},{"filename":"python3-jsondiff","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1018,"date":"Oct 28 2017"},{"filename":"python3-jsonpatch","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3661,"date":"Oct 28 2017"},{"filename":"python3-jsonpointer","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1342,"date":"May 1 2016"},{"filename":"python3-jsonschema","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":398,"date":"Nov 15 2017"},{"filename":"python3m","link_to":"python3.6m","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":10,"date":"Oct 25 2018"},{"filename":"python3m-config","link_to":"python3.6m-config","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":17,"date":"Oct 25 2018"},{"filename":"ranlib","link_to":"x86_64-linux-gnu-ranlib","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":23,"date":"May 8 2019"},{"filename":"rcp","link_to":"/etc/alternatives/rcp","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"Aug 5 2019"},{"filename":"rdma","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26696,"date":"Feb 26 2018"},{"filename":"readelf","link_to":"x86_64-linux-gnu-readelf","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"May 8 2019"},{"filename":"realpath","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47320,"date":"Jan 18 2018"},{"filename":"rename.ul","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14408,"date":"Oct 15 2018"},{"filename":"renice","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14408,"date":"Oct 15 2018"},{"filename":"reset","link_to":"tset","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"May 23 2018"},{"filename":"resizecons","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18568,"date":"Jan 22 2018"},{"filename":"resizepart","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":38992,"date":"Oct 15 2018"},{"filename":"rev","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"Oct 15 2018"},{"filename":"rgrep","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30,"date":"Jul 11 2017"},{"filename":"rlogin","link_to":"/etc/alternatives/rlogin","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"Aug 5 2019"},{"filename":"routef","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":208,"date":"Feb 26 2018"},{"filename":"routel","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1656,"date":"Feb 26 2018"},{"filename":"rpcgen","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":100896,"date":"Apr 16 2018"},{"filename":"rsh","link_to":"/etc/alternatives/rsh","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"Aug 5 2019"},{"filename":"rsync","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":500024,"date":"Jan 18 2018"},{"filename":"rtstat","link_to":"lnstat","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"Feb 26 2018"},{"filename":"runcon","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"Jan 18 2018"},{"filename":"run-mailcap","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18161,"date":"Jul 15 2016"},{"filename":"run-one","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3592,"date":"Jan 15 2014"},{"filename":"run-one-constantly","link_to":"run-one","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":7,"date":"Jan 15 2014"},{"filename":"run-one-until-failure","link_to":"run-one","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":7,"date":"Jan 15 2014"},{"filename":"run-one-until-success","link_to":"run-one","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":7,"date":"Jan 15 2014"},{"filename":"run-this-one","link_to":"run-one","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":7,"date":"Jan 15 2014"},{"filename":"rview","link_to":"/etc/alternatives/rview","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":23,"date":"Aug 5 2019"},{"filename":"rvim","link_to":"/etc/alternatives/rvim","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"Aug 5 2019"},{"filename":"sadf","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":313824,"date":"Jan 17 11:24"},{"filename":"sar","link_to":"/etc/alternatives/sar","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"Oct 30 21:02"},{"filename":"sar.sysstat","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":120720,"date":"Jan 17 11:24"},{"filename":"savelog","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10469,"date":"Dec 30 2017"},{"filename":"scp","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":100496,"date":"Mar 4 2019"},{"filename":"screen","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":465928,"date":"Jul 20 2018"},{"filename":"screendump","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10232,"date":"Jan 22 2018"},{"filename":"script","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30792,"date":"Oct 15 2018"},{"filename":"scriptreplay","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26704,"date":"Oct 15 2018"},{"filename":"sdiff","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":51296,"date":"Aug 4 2017"},{"filename":"see","link_to":"run-mailcap","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":11,"date":"Jul 15 2016"},{"filename":"select-editor","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2442,"date":"Mar 12 2018"},{"filename":"sensible-browser","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1209,"date":"Mar 12 2018"},{"filename":"sensible-editor","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1109,"date":"Mar 12 2018"},{"filename":"sensible-pager","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":433,"date":"Mar 12 2018"},{"filename":"seq","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47288,"date":"Jan 18 2018"},{"filename":"setarch","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18784,"date":"Oct 15 2018"},{"filename":"setfacl","link_to":"/bin/setfacl","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":12,"date":"Aug 5 2019"},{"filename":"setkeycodes","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"Jan 22 2018"},{"filename":"setleds","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14392,"date":"Jan 22 2018"},{"filename":"setlogcons","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"Jan 22 2018"},{"filename":"setmetamode","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10344,"date":"Jan 22 2018"},{"filename":"setpci","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26704,"date":"Feb 10 2019"},{"filename":"setsid","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"Oct 15 2018"},{"filename":"setterm","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43088,"date":"Oct 15 2018"},{"filename":"sftp","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":153960,"date":"Mar 4 2019"},{"filename":"sg","link_to":"newgrp","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"Mar 22 2019"},{"filename":"sha1sum","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47320,"date":"Jan 18 2018"},{"filename":"sha224sum","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":55512,"date":"Jan 18 2018"},{"filename":"sha256sum","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":55512,"date":"Jan 18 2018"},{"filename":"sha384sum","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":59608,"date":"Jan 18 2018"},{"filename":"sha512sum","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":59608,"date":"Jan 18 2018"},{"filename":"shasum","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":9371,"date":"Nov 19 2018"},{"filename":"showconsolefont","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18504,"date":"Jan 22 2018"},{"filename":"showkey","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14408,"date":"Jan 22 2018"},{"filename":"shred","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":59608,"date":"Jan 18 2018"},{"filename":"shuf","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":55480,"date":"Jan 18 2018"},{"filename":"size","link_to":"x86_64-linux-gnu-size","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"May 8 2019"},{"filename":"skill","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26704,"date":"May 14 2018"},{"filename":"slabtop","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18512,"date":"May 14 2018"},{"filename":"slogin","link_to":"ssh","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Mar 4 2019"},{"filename":"slurm","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":34824,"date":"Apr 3 2018"},{"filename":"snap","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":13316808,"date":"Jun 5 2019"},{"filename":"snapctl","link_to":"../lib/snapd/snapctl","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":20,"date":"Jun 5 2019"},{"filename":"snapfuse","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30856,"date":"Jun 5 2019"},{"filename":"snice","link_to":"skill","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"May 14 2018"},{"filename":"soelim","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30920,"date":"Feb 10 2018"},{"filename":"sort","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":113120,"date":"Jan 18 2018"},{"filename":"sosreport","link_to":"../share/sosreport/sosreport","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":28,"date":"Nov 16 2018"},{"filename":"sotruss","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4306,"date":"Apr 16 2018"},{"filename":"splain","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":19150,"date":"Nov 19 2018"},{"filename":"split","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":55936,"date":"Jan 18 2018"},{"filename":"splitfont","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10232,"date":"Jan 22 2018"},{"filename":"sprof","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26840,"date":"Apr 16 2018"},{"filename":"ssh","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":727848,"date":"Mar 4 2019"},{"filename":"ssh-add","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":346248,"date":"Mar 4 2019"},{"filename":"ssh-agent","parent":"/usr/bin","flags":"-rwxr-sr-x","links":1,"owner":"root","group":"ssh","size":362640,"date":"Mar 4 2019"},{"filename":"ssh-argv0","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1456,"date":"Jan 16 2018"},{"filename":"ssh-copy-id","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10658,"date":"Oct 2 2017"},{"filename":"ssh-import-id","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1771,"date":"May 16 2018"},{"filename":"ssh-import-id-gh","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":782,"date":"Jan 30 2016"},{"filename":"ssh-import-id-lp","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":782,"date":"Jan 30 2016"},{"filename":"ssh-keygen","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":420000,"date":"Mar 4 2019"},{"filename":"ssh-keyscan","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":420000,"date":"Mar 4 2019"},{"filename":"stat","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":80088,"date":"Jan 18 2018"},{"filename":"stdbuf","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47288,"date":"Jan 18 2018"},{"filename":"strace","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1378552,"date":"Apr 11 2018"},{"filename":"strace-log-merge","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2644,"date":"Feb 13 2018"},{"filename":"strings","link_to":"x86_64-linux-gnu-strings","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"May 8 2019"},{"filename":"strip","link_to":"x86_64-linux-gnu-strip","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"May 8 2019"},{"filename":"sudo","parent":"/usr/bin","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"root","size":149080,"date":"Jan 31 17:18"},{"filename":"sudoedit","link_to":"sudo","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"Jan 31 17:18"},{"filename":"sudoreplay","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":56128,"date":"Jan 31 17:18"},{"filename":"sum","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39104,"date":"Jan 18 2018"},{"filename":"symcryptrun","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":113384,"date":"Jan 10 2019"},{"filename":"systemd-analyze","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1554720,"date":"Feb 5 01:07"},{"filename":"systemd-cat","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"Feb 5 01:07"},{"filename":"systemd-cgls","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14408,"date":"Feb 5 01:07"},{"filename":"systemd-cgtop","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30816,"date":"Feb 5 01:07"},{"filename":"systemd-delta","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22600,"date":"Feb 5 01:07"},{"filename":"systemd-detect-virt","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10304,"date":"Feb 5 01:07"},{"filename":"systemd-mount","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43104,"date":"Feb 5 01:07"},{"filename":"systemd-path","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10304,"date":"Feb 5 01:07"},{"filename":"systemd-resolve","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":88136,"date":"Feb 5 01:07"},{"filename":"systemd-run","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43080,"date":"Feb 5 01:07"},{"filename":"systemd-socket-activate","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18504,"date":"Feb 5 01:07"},{"filename":"systemd-stdio-bridge","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14408,"date":"Feb 5 01:07"},{"filename":"systemd-umount","link_to":"systemd-mount","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":13,"date":"Feb 5 01:07"},{"filename":"tabs","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14328,"date":"May 23 2018"},{"filename":"tac","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39096,"date":"Jan 18 2018"},{"filename":"tail","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":67832,"date":"Jan 18 2018"},{"filename":"tapestat","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39056,"date":"Jan 17 11:24"},{"filename":"taskset","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30800,"date":"Oct 15 2018"},{"filename":"tbl","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":129224,"date":"Feb 10 2018"},{"filename":"tee","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35032,"date":"Jan 18 2018"},{"filename":"telnet","link_to":"/etc/alternatives/telnet","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"Aug 5 2019"},{"filename":"telnet.netkit","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":111024,"date":"Nov 7 2016"},{"filename":"test","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47288,"date":"Jan 18 2018"},{"filename":"tic","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":84080,"date":"May 23 2018"},{"filename":"time","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14720,"date":"Apr 21 2017"},{"filename":"timedatectl","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22600,"date":"Feb 5 01:07"},{"filename":"timeout","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39552,"date":"Jan 18 2018"},{"filename":"tkconch3","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":386,"date":"Apr 20 2018"},{"filename":"tload","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14424,"date":"May 14 2018"},{"filename":"tmux","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":577088,"date":"Jul 4 2019"},{"filename":"toe","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14328,"date":"May 23 2018"},{"filename":"top","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":108304,"date":"May 14 2018"},{"filename":"touch","link_to":"/bin/touch","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":10,"date":"Aug 5 2019"},{"filename":"tput","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18456,"date":"May 23 2018"},{"filename":"tr","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47288,"date":"Jan 18 2018"},{"filename":"tracepath","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14344,"date":"Jun 28 2019"},{"filename":"traceroute6","link_to":"/etc/alternatives/traceroute6","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":29,"date":"Aug 5 2019"},{"filename":"traceroute6.iputils","parent":"/usr/bin","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"root","size":18448,"date":"Jun 28 2019"},{"filename":"trial3","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":382,"date":"Apr 20 2018"},{"filename":"troff","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":736608,"date":"Feb 10 2018"},{"filename":"truncate","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39096,"date":"Jan 18 2018"},{"filename":"tset","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22528,"date":"May 23 2018"},{"filename":"tsort","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"Jan 18 2018"},{"filename":"tty","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30904,"date":"Jan 18 2018"},{"filename":"twist3","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":382,"date":"Apr 20 2018"},{"filename":"twistd3","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":384,"date":"Apr 20 2018"},{"filename":"tzselect","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":15395,"date":"Apr 16 2018"},{"filename":"ua","link_to":"ubuntu-advantage","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":16,"date":"Mar 21 2018"},{"filename":"ubuntu-advantage","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4596,"date":"Mar 21 2018"},{"filename":"ubuntu-bug","link_to":"apport-bug","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":10,"date":"Nov 5 02:49"},{"filename":"ubuntu-core-launcher","link_to":"../lib/snapd/snap-confine","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":25,"date":"Jun 5 2019"},{"filename":"ubuntu-support-status","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":8033,"date":"Apr 9 2019"},{"filename":"ucf","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":40685,"date":"Feb 26 2018"},{"filename":"ucfq","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":19367,"date":"Feb 26 2018"},{"filename":"ucfr","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10722,"date":"Feb 26 2018"},{"filename":"ul","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14344,"date":"Jan 17 2018"},{"filename":"unattended-upgrade","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":81388,"date":"Apr 29 2019"},{"filename":"unattended-upgrades","link_to":"unattended-upgrade","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":18,"date":"Apr 29 2019"},{"filename":"unexpand","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39128,"date":"Jan 18 2018"},{"filename":"unicode_stop","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":530,"date":"Jan 22 2018"},{"filename":"uniq","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43224,"date":"Jan 18 2018"},{"filename":"unlink","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30904,"date":"Jan 18 2018"},{"filename":"unlzma","link_to":"/etc/alternatives/unlzma","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"Aug 5 2019"},{"filename":"unmkinitramfs","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2859,"date":"Sep 27 2018"},{"filename":"unpigz","parent":"/usr/bin","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"root","size":116944,"date":"Dec 27 2017"},{"filename":"unshare","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18712,"date":"Oct 15 2018"},{"filename":"unsquashfs","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":98008,"date":"Jul 5 2018"},{"filename":"unxz","link_to":"xz","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":2,"date":"Jun 28 2017"},{"filename":"update-alternatives","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47112,"date":"Oct 4 2018"},{"filename":"updatedb","link_to":"/etc/alternatives/updatedb","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":26,"date":"Aug 5 2019"},{"filename":"updatedb.mlocate","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47184,"date":"Mar 1 2018"},{"filename":"update-mime-database","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":51392,"date":"Oct 10 2017"},{"filename":"uptime","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"May 14 2018"},{"filename":"usb-devices","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4216,"date":"Apr 21 2017"},{"filename":"usbhid-dump","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22608,"date":"Apr 21 2017"},{"filename":"users","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"Jan 18 2018"},{"filename":"utmpdump","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22600,"date":"Oct 15 2018"},{"filename":"uuidgen","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14408,"date":"Oct 15 2018"},{"filename":"uuidparse","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":34896,"date":"Oct 15 2018"},{"filename":"vcs-run","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":6913,"date":"Apr 13 2018"},{"filename":"VGAuthService","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":125144,"date":"May 14 2019"},{"filename":"vi","link_to":"/etc/alternatives/vi","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":20,"date":"Aug 5 2019"},{"filename":"view","link_to":"/etc/alternatives/view","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"Aug 5 2019"},{"filename":"vigpg","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2640,"date":"Dec 4 2017"},{"filename":"vim","link_to":"/etc/alternatives/vim","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"Aug 5 2019"},{"filename":"vim.basic","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2671240,"date":"Jun 6 2019"},{"filename":"vimdiff","link_to":"/etc/alternatives/vimdiff","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":25,"date":"Aug 5 2019"},{"filename":"vim.tiny","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1108024,"date":"Jun 6 2019"},{"filename":"vimtutor","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2099,"date":"Jun 6 2019"},{"filename":"vmhgfs-fuse","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47600,"date":"May 14 2019"},{"filename":"vmstat","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":34912,"date":"May 14 2018"},{"filename":"vmtoolsd","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":51456,"date":"May 14 2019"},{"filename":"vmware-checkvm","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"May 14 2019"},{"filename":"vmware-guestproxycerttool","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31240,"date":"May 14 2019"},{"filename":"vmware-hgfsclient","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"May 14 2019"},{"filename":"vmware-namespace-cmd","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18424,"date":"May 14 2019"},{"filename":"vmware-rpctool","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18424,"date":"May 14 2019"},{"filename":"vmware-toolbox-cmd","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39200,"date":"May 14 2019"},{"filename":"vmware-vgauth-cmd","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14328,"date":"May 14 2019"},{"filename":"vmware-vgauth-smoketest","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18440,"date":"May 14 2019"},{"filename":"vmware-vmblock-fuse","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18848,"date":"May 14 2019"},{"filename":"vmware-xferlogs","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"May 14 2019"},{"filename":"volname","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10232,"date":"Mar 28 2017"},{"filename":"w","link_to":"/etc/alternatives/w","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":19,"date":"Aug 5 2019"},{"filename":"wall","parent":"/usr/bin","flags":"-rwxr-sr-x","links":1,"owner":"root","group":"tty","size":30800,"date":"Oct 15 2018"},{"filename":"watch","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22952,"date":"May 14 2018"},{"filename":"watchgnupg","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14328,"date":"Jan 10 2019"},{"filename":"wc","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43200,"date":"Jan 18 2018"},{"filename":"wget","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":499264,"date":"Apr 8 2019"},{"filename":"whatis","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":48104,"date":"Aug 4 2018"},{"filename":"whereis","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":27144,"date":"Oct 15 2018"},{"filename":"which","link_to":"/bin/which","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":10,"date":"Aug 5 2019"},{"filename":"who","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":51416,"date":"Jan 18 2018"},{"filename":"whoami","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30904,"date":"Jan 18 2018"},{"filename":"wifi-status","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2107,"date":"Dec 4 2017"},{"filename":"wmdocker","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22536,"date":"Apr 3 2018"},{"filename":"w.procps","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18504,"date":"May 14 2018"},{"filename":"write","link_to":"/etc/alternatives/write","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":23,"date":"Aug 5 2019"},{"filename":"x86_64","link_to":"setarch","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":7,"date":"Oct 15 2018"},{"filename":"x86_64-linux-gnu-addr2line","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31152,"date":"May 8 2019"},{"filename":"x86_64-linux-gnu-ar","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":59640,"date":"May 8 2019"},{"filename":"x86_64-linux-gnu-as","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":917488,"date":"May 8 2019"},{"filename":"x86_64-linux-gnu-c++filt","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26744,"date":"May 8 2019"},{"filename":"x86_64-linux-gnu-cpp","link_to":"cpp-7","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"May 20 2019"},{"filename":"x86_64-linux-gnu-cpp-7","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1010624,"date":"May 8 2019"},{"filename":"x86_64-linux-gnu-dwp","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2911496,"date":"May 8 2019"},{"filename":"x86_64-linux-gnu-elfedit","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31184,"date":"May 8 2019"},{"filename":"x86_64-linux-gnu-g++","link_to":"g++-7","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"May 20 2019"},{"filename":"x86_64-linux-gnu-g++-7","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1010624,"date":"May 8 2019"},{"filename":"x86_64-linux-gnu-gcc","link_to":"gcc-7","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"May 20 2019"},{"filename":"x86_64-linux-gnu-gcc-7","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1010624,"date":"May 8 2019"},{"filename":"x86_64-linux-gnu-gcc-ar","link_to":"gcc-ar-7","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":8,"date":"May 20 2019"},{"filename":"x86_64-linux-gnu-gcc-ar-7","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":27104,"date":"May 8 2019"},{"filename":"x86_64-linux-gnu-gcc-nm","link_to":"gcc-nm-7","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":8,"date":"May 20 2019"},{"filename":"x86_64-linux-gnu-gcc-nm-7","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":27104,"date":"May 8 2019"},{"filename":"x86_64-linux-gnu-gcc-ranlib","link_to":"gcc-ranlib-7","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":12,"date":"May 20 2019"},{"filename":"x86_64-linux-gnu-gcc-ranlib-7","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":27104,"date":"May 8 2019"},{"filename":"x86_64-linux-gnu-gcov","link_to":"gcov-7","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"May 20 2019"},{"filename":"x86_64-linux-gnu-gcov-7","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":622688,"date":"May 8 2019"},{"filename":"x86_64-linux-gnu-gcov-dump","link_to":"gcov-dump-7","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":11,"date":"May 20 2019"},{"filename":"x86_64-linux-gnu-gcov-dump-7","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":491448,"date":"May 8 2019"},{"filename":"x86_64-linux-gnu-gcov-tool","link_to":"gcov-tool-7","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":11,"date":"May 20 2019"},{"filename":"x86_64-linux-gnu-gcov-tool-7","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":516088,"date":"May 8 2019"},{"filename":"x86_64-linux-gnu-gold","link_to":"x86_64-linux-gnu-ld.gold","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"May 8 2019"},{"filename":"x86_64-linux-gnu-gprof","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":102120,"date":"May 8 2019"},{"filename":"x86_64-linux-gnu-ld","link_to":"x86_64-linux-gnu-ld.bfd","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":23,"date":"May 8 2019"},{"filename":"x86_64-linux-gnu-ld.bfd","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1779400,"date":"May 8 2019"},{"filename":"x86_64-linux-gnu-ld.gold","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3136552,"date":"May 8 2019"},{"filename":"x86_64-linux-gnu-nm","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":44184,"date":"May 8 2019"},{"filename":"x86_64-linux-gnu-objcopy","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":235720,"date":"May 8 2019"},{"filename":"x86_64-linux-gnu-objdump","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":414128,"date":"May 8 2019"},{"filename":"x86_64-linux-gnu-python3.6-config","link_to":"x86_64-linux-gnu-python3.6m-config","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":34,"date":"Oct 7 12:59"},{"filename":"x86_64-linux-gnu-python3.6m-config","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3283,"date":"Oct 7 12:59"},{"filename":"x86_64-linux-gnu-python3-config","link_to":"x86_64-linux-gnu-python3.6-config","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":33,"date":"Oct 25 2018"},{"filename":"x86_64-linux-gnu-python3m-config","link_to":"x86_64-linux-gnu-python3.6m-config","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":34,"date":"Oct 25 2018"},{"filename":"x86_64-linux-gnu-ranlib","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":59672,"date":"May 8 2019"},{"filename":"x86_64-linux-gnu-readelf","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":596440,"date":"May 8 2019"},{"filename":"x86_64-linux-gnu-size","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31024,"date":"May 8 2019"},{"filename":"x86_64-linux-gnu-strings","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31232,"date":"May 8 2019"},{"filename":"x86_64-linux-gnu-strip","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":235728,"date":"May 8 2019"},{"filename":"xargs","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":71896,"date":"Nov 5 2017"},{"filename":"xauth","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":52032,"date":"Nov 21 2017"},{"filename":"xdelta3","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":153904,"date":"Dec 6 2016"},{"filename":"xdg-user-dir","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":234,"date":"Mar 23 2018"},{"filename":"xdg-user-dirs-update","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18504,"date":"Mar 23 2018"},{"filename":"xsubpp","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":5164,"date":"Nov 19 2018"},{"filename":"xxd","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18552,"date":"Jun 6 2019"},{"filename":"xz","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":76216,"date":"Jun 28 2017"},{"filename":"xzcat","link_to":"xz","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":2,"date":"Jun 28 2017"},{"filename":"xzcmp","link_to":"xzdiff","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"Jun 28 2017"},{"filename":"xzdiff","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":6632,"date":"Jun 28 2017"},{"filename":"xzegrep","link_to":"xzgrep","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"Jun 28 2017"},{"filename":"xzfgrep","link_to":"xzgrep","parent":"/usr/bin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"Jun 28 2017"},{"filename":"xzgrep","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":5628,"date":"Jun 28 2017"},{"filename":"xzless","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1802,"date":"Jun 28 2017"},{"filename":"xzmore","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2161,"date":"Jun 28 2017"},{"filename":"yes","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30904,"date":"Jan 18 2018"},{"filename":"zdump","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18488,"date":"Apr 16 2018"},{"filename":"zipdetails","parent":"/usr/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":48497,"date":"Nov 19 2018"},{"filename":".","parent":"/usr/games","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Apr 24 2018"},{"filename":"..","parent":"/usr/games","flags":"drwxr-xr-x","links":10,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":".","parent":"/usr/include","flags":"drwxr-xr-x","links":34,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"..","parent":"/usr/include","flags":"drwxr-xr-x","links":10,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"aio.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7456,"date":"Apr 16 2018"},{"filename":"aliases.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2031,"date":"Apr 16 2018"},{"filename":"alloca.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1203,"date":"Apr 16 2018"},{"filename":"argp.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":25414,"date":"Apr 16 2018"},{"filename":"argz.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6050,"date":"Apr 16 2018"},{"filename":"ar.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1730,"date":"Apr 16 2018"},{"filename":"arpa","parent":"/usr/include","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"asm-generic","parent":"/usr/include","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"assert.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4642,"date":"Apr 16 2018"},{"filename":"btrfs","parent":"/usr/include","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"byteswap.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1404,"date":"Apr 16 2018"},{"filename":"c++","parent":"/usr/include","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"complex.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7163,"date":"Apr 16 2018"},{"filename":"cpio.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2267,"date":"Apr 16 2018"},{"filename":"crypt.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2259,"date":"Apr 16 2018"},{"filename":"ctype.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":10963,"date":"Apr 16 2018"},{"filename":"dirent.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":12484,"date":"Apr 16 2018"},{"filename":"dlfcn.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7018,"date":"Apr 16 2018"},{"filename":"drm","parent":"/usr/include","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"elf.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":169800,"date":"Apr 16 2018"},{"filename":"endian.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3189,"date":"Apr 16 2018"},{"filename":"envz.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2866,"date":"Apr 16 2018"},{"filename":"err.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2209,"date":"Apr 16 2018"},{"filename":"errno.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1832,"date":"Apr 16 2018"},{"filename":"error.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2039,"date":"Apr 16 2018"},{"filename":"execinfo.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1522,"date":"Apr 16 2018"},{"filename":"expat_external.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5532,"date":"Sep 10 18:05"},{"filename":"expat.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":43512,"date":"Sep 10 18:05"},{"filename":"fcntl.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9463,"date":"Apr 16 2018"},{"filename":"features.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":15541,"date":"Apr 16 2018"},{"filename":"fenv.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5857,"date":"Apr 16 2018"},{"filename":"fmtmsg.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3239,"date":"Apr 16 2018"},{"filename":"fnmatch.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2295,"date":"Apr 16 2018"},{"filename":"fstab.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3111,"date":"Apr 16 2018"},{"filename":"fts.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8372,"date":"Apr 16 2018"},{"filename":"ftw.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5251,"date":"Apr 16 2018"},{"filename":"gawkapi.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":31038,"date":"Feb 11 2018"},{"filename":"_G_config.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":932,"date":"Apr 16 2018"},{"filename":"gconv.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4410,"date":"Apr 16 2018"},{"filename":"getopt.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1468,"date":"Apr 16 2018"},{"filename":"glob.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6614,"date":"Apr 16 2018"},{"filename":"gnumake.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2912,"date":"Apr 17 2018"},{"filename":"gnu-versions.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2342,"date":"Apr 16 2018"},{"filename":"grp.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6686,"date":"Apr 16 2018"},{"filename":"gshadow.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4528,"date":"Apr 16 2018"},{"filename":"iconv.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1857,"date":"Apr 16 2018"},{"filename":"ifaddrs.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2840,"date":"Apr 16 2018"},{"filename":"inttypes.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":11892,"date":"Apr 16 2018"},{"filename":"langinfo.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":17848,"date":"Apr 16 2018"},{"filename":"lastlog.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":126,"date":"Apr 16 2018"},{"filename":"libgen.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1385,"date":"Apr 16 2018"},{"filename":"libintl.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4579,"date":"Apr 16 2018"},{"filename":"libio.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":918,"date":"Apr 16 2018"},{"filename":"limits.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5412,"date":"Apr 16 2018"},{"filename":"link.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7206,"date":"Apr 16 2018"},{"filename":"linux","parent":"/usr/include","flags":"drwxr-xr-x","links":28,"owner":"root","group":"root","size":69632,"date":"Feb 5 06:03"},{"filename":"locale.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7674,"date":"Apr 16 2018"},{"filename":"malloc.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6102,"date":"Apr 16 2018"},{"filename":"math.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":45384,"date":"Apr 16 2018"},{"filename":"mcheck.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2434,"date":"Apr 16 2018"},{"filename":"memory.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":955,"date":"Apr 16 2018"},{"filename":"misc","parent":"/usr/include","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"mntent.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3358,"date":"Apr 16 2018"},{"filename":"monetary.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1803,"date":"Apr 16 2018"},{"filename":"mqueue.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3759,"date":"Apr 16 2018"},{"filename":"mtd","parent":"/usr/include","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"net","parent":"/usr/include","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"netash","parent":"/usr/include","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"netatalk","parent":"/usr/include","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"netax25","parent":"/usr/include","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"netdb.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":28051,"date":"Apr 16 2018"},{"filename":"neteconet","parent":"/usr/include","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"netinet","parent":"/usr/include","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"netipx","parent":"/usr/include","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"netiucv","parent":"/usr/include","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"netpacket","parent":"/usr/include","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"netrom","parent":"/usr/include","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"netrose","parent":"/usr/include","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"nfs","parent":"/usr/include","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"nl_types.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1752,"date":"Apr 16 2018"},{"filename":"nss.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1878,"date":"Apr 16 2018"},{"filename":"obstack.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":21306,"date":"Apr 16 2018"},{"filename":"paths.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2983,"date":"Apr 16 2018"},{"filename":"poll.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":22,"date":"Apr 16 2018"},{"filename":"printf.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6800,"date":"Apr 16 2018"},{"filename":"proc_service.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3476,"date":"Apr 16 2018"},{"filename":"protocols","parent":"/usr/include","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"pthread.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":41269,"date":"Apr 16 2018"},{"filename":"pty.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1569,"date":"Apr 16 2018"},{"filename":"pwd.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6029,"date":"Apr 16 2018"},{"filename":"python3.6","link_to":"python3.6m","parent":"/usr/include","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":10,"date":"Oct 7 12:59"},{"filename":"python3.6m","parent":"/usr/include","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"rdma","parent":"/usr/include","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"re_comp.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":962,"date":"Apr 16 2018"},{"filename":"regex.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":22050,"date":"Apr 16 2018"},{"filename":"regexp.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1447,"date":"Apr 16 2018"},{"filename":"reglib","parent":"/usr/include","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 12 2019"},{"filename":"resolv.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":12012,"date":"Apr 16 2018"},{"filename":"rpc","parent":"/usr/include","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"rpcsvc","parent":"/usr/include","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"sched.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4732,"date":"Apr 16 2018"},{"filename":"scsi","parent":"/usr/include","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"search.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5223,"date":"Apr 16 2018"},{"filename":"semaphore.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2399,"date":"Apr 16 2018"},{"filename":"setjmp.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3669,"date":"Apr 16 2018"},{"filename":"sgtty.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1343,"date":"Apr 16 2018"},{"filename":"shadow.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5197,"date":"Apr 16 2018"},{"filename":"signal.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":12243,"date":"Apr 16 2018"},{"filename":"sound","parent":"/usr/include","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"spawn.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6690,"date":"Apr 16 2018"},{"filename":"stab.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":264,"date":"Apr 16 2018"},{"filename":"stdc-predef.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2363,"date":"Apr 16 2018"},{"filename":"stdint.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8626,"date":"Apr 16 2018"},{"filename":"stdio_ext.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2799,"date":"Apr 16 2018"},{"filename":"stdio.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":29665,"date":"Apr 16 2018"},{"filename":"stdlib.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":35784,"date":"Apr 16 2018"},{"filename":"string.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":17545,"date":"Apr 16 2018"},{"filename":"strings.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4752,"date":"Apr 16 2018"},{"filename":"stropts.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3047,"date":"Apr 16 2018"},{"filename":"sudo_plugin.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8084,"date":"Jan 31 17:18"},{"filename":"syscall.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":25,"date":"Apr 16 2018"},{"filename":"sysexits.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5232,"date":"Apr 16 2018"},{"filename":"syslog.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":24,"date":"Apr 16 2018"},{"filename":"tar.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3785,"date":"Apr 16 2018"},{"filename":"termio.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":214,"date":"Apr 16 2018"},{"filename":"termios.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3598,"date":"Apr 16 2018"},{"filename":"tgmath.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":31489,"date":"Apr 16 2018"},{"filename":"thread_db.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":16023,"date":"Apr 16 2018"},{"filename":"time.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":10360,"date":"Apr 16 2018"},{"filename":"ttyent.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2494,"date":"Apr 16 2018"},{"filename":"uchar.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2312,"date":"Apr 16 2018"},{"filename":"ucontext.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1937,"date":"Apr 16 2018"},{"filename":"ulimit.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1583,"date":"Apr 16 2018"},{"filename":"unistd.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":42785,"date":"Apr 16 2018"},{"filename":"ustat.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":23,"date":"Apr 16 2018"},{"filename":"utime.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1501,"date":"Apr 16 2018"},{"filename":"utmp.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3222,"date":"Apr 16 2018"},{"filename":"utmpx.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4099,"date":"Apr 16 2018"},{"filename":"values.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1955,"date":"Apr 16 2018"},{"filename":"video","parent":"/usr/include","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"wait.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":22,"date":"Apr 16 2018"},{"filename":"wchar.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":31111,"date":"Apr 16 2018"},{"filename":"wctype.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5548,"date":"Apr 16 2018"},{"filename":"wordexp.h","parent":"/usr/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2501,"date":"Apr 16 2018"},{"filename":"x86_64-linux-gnu","parent":"/usr/include","flags":"drwxr-xr-x","links":8,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"xen","parent":"/usr/include","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"xfs","parent":"/usr/include","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Apr 18 2018"},{"filename":".","parent":"/usr/include/arpa","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/arpa","flags":"drwxr-xr-x","links":34,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"ftp.h","parent":"/usr/include/arpa","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3432,"date":"Apr 16 2018"},{"filename":"inet.h","parent":"/usr/include/arpa","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4276,"date":"Apr 16 2018"},{"filename":"nameser_compat.h","parent":"/usr/include/arpa","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7041,"date":"Apr 16 2018"},{"filename":"nameser.h","parent":"/usr/include/arpa","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":14195,"date":"Apr 16 2018"},{"filename":"telnet.h","parent":"/usr/include/arpa","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":10263,"date":"Apr 16 2018"},{"filename":"tftp.h","parent":"/usr/include/arpa","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3051,"date":"Apr 16 2018"},{"filename":".","parent":"/usr/include/asm-generic","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"..","parent":"/usr/include/asm-generic","flags":"drwxr-xr-x","links":34,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"auxvec.h","parent":"/usr/include/asm-generic","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":218,"date":"Jan 17 13:59"},{"filename":"bitsperlong.h","parent":"/usr/include/asm-generic","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":564,"date":"Jan 17 13:59"},{"filename":"bpf_perf_event.h","parent":"/usr/include/asm-generic","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":238,"date":"Jan 17 13:59"},{"filename":"errno-base.h","parent":"/usr/include/asm-generic","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1612,"date":"Jan 17 13:59"},{"filename":"errno.h","parent":"/usr/include/asm-generic","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5648,"date":"Jan 17 13:59"},{"filename":"fcntl.h","parent":"/usr/include/asm-generic","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5423,"date":"Jan 17 13:59"},{"filename":"hugetlb_encode.h","parent":"/usr/include/asm-generic","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1605,"date":"Jan 17 13:59"},{"filename":"int-l64.h","parent":"/usr/include/asm-generic","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":718,"date":"Jan 17 13:59"},{"filename":"int-ll64.h","parent":"/usr/include/asm-generic","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":864,"date":"Jan 17 13:59"},{"filename":"ioctl.h","parent":"/usr/include/asm-generic","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3478,"date":"Jan 17 13:59"},{"filename":"ioctls.h","parent":"/usr/include/asm-generic","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3866,"date":"Jan 17 13:59"},{"filename":"ipcbuf.h","parent":"/usr/include/asm-generic","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1003,"date":"Jan 17 13:59"},{"filename":"kvm_para.h","parent":"/usr/include/asm-generic","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":96,"date":"Jan 17 13:59"},{"filename":"mman-common.h","parent":"/usr/include/asm-generic","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3020,"date":"Jan 17 13:59"},{"filename":"mman.h","parent":"/usr/include/asm-generic","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1080,"date":"Jan 17 13:59"},{"filename":"msgbuf.h","parent":"/usr/include/asm-generic","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1570,"date":"Jan 17 13:59"},{"filename":"param.h","parent":"/usr/include/asm-generic","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":353,"date":"Jan 17 13:59"},{"filename":"poll.h","parent":"/usr/include/asm-generic","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":858,"date":"Jan 17 13:59"},{"filename":"posix_types.h","parent":"/usr/include/asm-generic","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2294,"date":"Jan 17 13:59"},{"filename":"resource.h","parent":"/usr/include/asm-generic","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1872,"date":"Jan 17 13:59"},{"filename":"sembuf.h","parent":"/usr/include/asm-generic","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1257,"date":"Jan 17 13:59"},{"filename":"setup.h","parent":"/usr/include/asm-generic","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":190,"date":"Jan 17 13:59"},{"filename":"shmbuf.h","parent":"/usr/include/asm-generic","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1798,"date":"Jan 17 13:59"},{"filename":"shmparam.h","parent":"/usr/include/asm-generic","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":231,"date":"Jan 17 13:59"},{"filename":"siginfo.h","parent":"/usr/include/asm-generic","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8627,"date":"Jan 17 13:59"},{"filename":"signal-defs.h","parent":"/usr/include/asm-generic","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":800,"date":"Jan 17 13:59"},{"filename":"signal.h","parent":"/usr/include/asm-generic","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2709,"date":"Jan 17 13:59"},{"filename":"socket.h","parent":"/usr/include/asm-generic","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2292,"date":"Jan 17 13:59"},{"filename":"sockios.h","parent":"/usr/include/asm-generic","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":439,"date":"Jan 17 13:59"},{"filename":"statfs.h","parent":"/usr/include/asm-generic","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1839,"date":"Jan 17 13:59"},{"filename":"stat.h","parent":"/usr/include/asm-generic","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2633,"date":"Jan 17 13:59"},{"filename":"swab.h","parent":"/usr/include/asm-generic","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":502,"date":"Jan 17 13:59"},{"filename":"termbits.h","parent":"/usr/include/asm-generic","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4716,"date":"Jan 17 13:59"},{"filename":"termios.h","parent":"/usr/include/asm-generic","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1377,"date":"Jan 17 13:59"},{"filename":"types.h","parent":"/usr/include/asm-generic","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":233,"date":"Jan 17 13:59"},{"filename":"ucontext.h","parent":"/usr/include/asm-generic","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":357,"date":"Jan 17 13:59"},{"filename":"unistd.h","parent":"/usr/include/asm-generic","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":30244,"date":"Jan 17 13:59"},{"filename":".","parent":"/usr/include/btrfs","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"..","parent":"/usr/include/btrfs","flags":"drwxr-xr-x","links":34,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"btrfsck.h","parent":"/usr/include/btrfs","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5035,"date":"Mar 12 2018"},{"filename":"btrfs-list.h","parent":"/usr/include/btrfs","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4658,"date":"Mar 12 2018"},{"filename":"crc32c.h","parent":"/usr/include/btrfs","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1095,"date":"Mar 12 2018"},{"filename":"ctree.h","parent":"/usr/include/btrfs","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":91600,"date":"Mar 12 2018"},{"filename":"extent-cache.h","parent":"/usr/include/btrfs","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3604,"date":"Mar 12 2018"},{"filename":"extent_io.h","parent":"/usr/include/btrfs","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6040,"date":"Mar 12 2018"},{"filename":"ioctl.h","parent":"/usr/include/btrfs","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":26509,"date":"Feb 16 2018"},{"filename":"kerncompat.h","parent":"/usr/include/btrfs","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":10419,"date":"Mar 12 2018"},{"filename":"list.h","parent":"/usr/include/btrfs","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":14636,"date":"Mar 12 2018"},{"filename":"radix-tree.h","parent":"/usr/include/btrfs","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3343,"date":"Mar 12 2018"},{"filename":"raid56.h","parent":"/usr/include/btrfs","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2024,"date":"Mar 12 2018"},{"filename":"rbtree.h","parent":"/usr/include/btrfs","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3903,"date":"Mar 12 2018"},{"filename":"send.h","parent":"/usr/include/btrfs","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3090,"date":"Mar 12 2018"},{"filename":"send-stream.h","parent":"/usr/include/btrfs","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2803,"date":"Mar 12 2018"},{"filename":"send-utils.h","parent":"/usr/include/btrfs","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3700,"date":"Mar 12 2018"},{"filename":"sizes.h","parent":"/usr/include/btrfs","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1223,"date":"Mar 12 2018"},{"filename":"version.h","parent":"/usr/include/btrfs","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":363,"date":"Mar 12 2018"},{"filename":".","parent":"/usr/include/c++","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/c++","flags":"drwxr-xr-x","links":34,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"7","parent":"/usr/include/c++","flags":"drwxr-xr-x","links":12,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"7.4.0","link_to":"7","parent":"/usr/include/c++","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":1,"date":"May 8 2019"},{"filename":".","parent":"/usr/include/c++/7","flags":"drwxr-xr-x","links":12,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/c++/7","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"algorithm","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2518,"date":"May 8 2019"},{"filename":"any","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":18229,"date":"May 8 2019"},{"filename":"array","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":11385,"date":"May 8 2019"},{"filename":"atomic","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":40975,"date":"May 8 2019"},{"filename":"backward","parent":"/usr/include/c++/7","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"bits","parent":"/usr/include/c++/7","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"bitset","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":45887,"date":"May 8 2019"},{"filename":"cassert","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1648,"date":"May 8 2019"},{"filename":"ccomplex","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1335,"date":"May 8 2019"},{"filename":"cctype","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2409,"date":"May 8 2019"},{"filename":"cerrno","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1770,"date":"May 8 2019"},{"filename":"cfenv","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2051,"date":"May 8 2019"},{"filename":"cfloat","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1889,"date":"May 8 2019"},{"filename":"chrono","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":30089,"date":"May 8 2019"},{"filename":"cinttypes","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2157,"date":"May 8 2019"},{"filename":"ciso646","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1464,"date":"May 8 2019"},{"filename":"climits","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1913,"date":"May 8 2019"},{"filename":"clocale","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1905,"date":"May 8 2019"},{"filename":"cmath","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":48484,"date":"May 8 2019"},{"filename":"codecvt","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5341,"date":"May 8 2019"},{"filename":"complex","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":54204,"date":"May 8 2019"},{"filename":"complex.h","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1461,"date":"May 8 2019"},{"filename":"condition_variable","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8954,"date":"May 8 2019"},{"filename":"csetjmp","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1949,"date":"May 8 2019"},{"filename":"csignal","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1855,"date":"May 8 2019"},{"filename":"cstdalign","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1407,"date":"May 8 2019"},{"filename":"cstdarg","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1868,"date":"May 8 2019"},{"filename":"cstdbool","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1401,"date":"May 8 2019"},{"filename":"cstddef","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6440,"date":"May 8 2019"},{"filename":"cstdint","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2167,"date":"May 8 2019"},{"filename":"cstdio","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4439,"date":"May 8 2019"},{"filename":"cstdlib","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6325,"date":"May 8 2019"},{"filename":"cstring","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3123,"date":"May 8 2019"},{"filename":"ctgmath","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1360,"date":"May 8 2019"},{"filename":"ctime","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2125,"date":"May 8 2019"},{"filename":"cuchar","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2210,"date":"May 8 2019"},{"filename":"cwchar","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6509,"date":"May 8 2019"},{"filename":"cwctype","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2793,"date":"May 8 2019"},{"filename":"cxxabi.h","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":21947,"date":"May 8 2019"},{"filename":"debug","parent":"/usr/include/c++/7","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"decimal","parent":"/usr/include/c++/7","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"deque","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2665,"date":"May 8 2019"},{"filename":"exception","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4777,"date":"May 8 2019"},{"filename":"experimental","parent":"/usr/include/c++/7","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"ext","parent":"/usr/include/c++/7","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"fenv.h","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2020,"date":"May 8 2019"},{"filename":"forward_list","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1577,"date":"May 8 2019"},{"filename":"fstream","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":33845,"date":"May 8 2019"},{"filename":"functional","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":39570,"date":"May 8 2019"},{"filename":"future","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":50678,"date":"May 8 2019"},{"filename":"initializer_list","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2974,"date":"May 8 2019"},{"filename":"iomanip","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":16132,"date":"May 8 2019"},{"filename":"ios","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1601,"date":"May 8 2019"},{"filename":"iosfwd","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6918,"date":"May 8 2019"},{"filename":"iostream","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2695,"date":"May 8 2019"},{"filename":"istream","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":32843,"date":"May 8 2019"},{"filename":"iterator","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2644,"date":"May 8 2019"},{"filename":"limits","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":69181,"date":"May 8 2019"},{"filename":"list","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2594,"date":"May 8 2019"},{"filename":"locale","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1488,"date":"May 8 2019"},{"filename":"map","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2559,"date":"May 8 2019"},{"filename":"math.h","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4380,"date":"May 8 2019"},{"filename":"memory","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4711,"date":"May 8 2019"},{"filename":"mutex","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":18310,"date":"May 8 2019"},{"filename":"new","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7507,"date":"May 8 2019"},{"filename":"numeric","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5232,"date":"May 8 2019"},{"filename":"optional","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":31123,"date":"May 8 2019"},{"filename":"ostream","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":21977,"date":"May 8 2019"},{"filename":"parallel","parent":"/usr/include/c++/7","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"profile","parent":"/usr/include/c++/7","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"queue","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2467,"date":"May 8 2019"},{"filename":"random","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1692,"date":"May 8 2019"},{"filename":"ratio","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":19886,"date":"May 8 2019"},{"filename":"regex","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1894,"date":"May 8 2019"},{"filename":"scoped_allocator","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":16221,"date":"May 8 2019"},{"filename":"set","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2559,"date":"May 8 2019"},{"filename":"shared_mutex","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":19409,"date":"May 8 2019"},{"filename":"sstream","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":26839,"date":"May 8 2019"},{"filename":"stack","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2391,"date":"May 8 2019"},{"filename":"stdexcept","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7975,"date":"May 8 2019"},{"filename":"stdlib.h","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2248,"date":"May 8 2019"},{"filename":"streambuf","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":29558,"date":"May 8 2019"},{"filename":"string","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1940,"date":"May 8 2019"},{"filename":"string_view","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":21299,"date":"May 8 2019"},{"filename":"system_error","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":11522,"date":"May 8 2019"},{"filename":"tgmath.h","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1360,"date":"May 8 2019"},{"filename":"thread","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":10267,"date":"May 8 2019"},{"filename":"tr1","parent":"/usr/include/c++/7","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"tr2","parent":"/usr/include/c++/7","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"tuple","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":59617,"date":"May 8 2019"},{"filename":"typeindex","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3093,"date":"May 8 2019"},{"filename":"typeinfo","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7692,"date":"May 8 2019"},{"filename":"type_traits","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":92445,"date":"May 8 2019"},{"filename":"unordered_map","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1857,"date":"May 8 2019"},{"filename":"unordered_set","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1856,"date":"May 8 2019"},{"filename":"utility","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":12447,"date":"May 8 2019"},{"filename":"valarray","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":40274,"date":"May 8 2019"},{"filename":"variant","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":43104,"date":"May 8 2019"},{"filename":"vector","parent":"/usr/include/c++/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2747,"date":"May 8 2019"},{"filename":".","parent":"/usr/include/c++/7/backward","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/c++/7/backward","flags":"drwxr-xr-x","links":12,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"auto_ptr.h","parent":"/usr/include/c++/7/backward","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":10689,"date":"May 8 2019"},{"filename":"backward_warning.h","parent":"/usr/include/c++/7/backward","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2491,"date":"May 8 2019"},{"filename":"binders.h","parent":"/usr/include/c++/7/backward","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7167,"date":"May 8 2019"},{"filename":"hash_fun.h","parent":"/usr/include/c++/7/backward","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4248,"date":"May 8 2019"},{"filename":"hash_map","parent":"/usr/include/c++/7/backward","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":17775,"date":"May 8 2019"},{"filename":"hash_set","parent":"/usr/include/c++/7/backward","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":17195,"date":"May 8 2019"},{"filename":"hashtable.h","parent":"/usr/include/c++/7/backward","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":33719,"date":"May 8 2019"},{"filename":"strstream","parent":"/usr/include/c++/7/backward","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5798,"date":"May 8 2019"},{"filename":".","parent":"/usr/include/c++/7/bits","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/c++/7/bits","flags":"drwxr-xr-x","links":12,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"algorithmfwd.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":21737,"date":"May 8 2019"},{"filename":"allocated_ptr.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3516,"date":"May 8 2019"},{"filename":"allocator.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6888,"date":"May 8 2019"},{"filename":"alloc_traits.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":19585,"date":"May 8 2019"},{"filename":"atomic_base.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":23842,"date":"May 8 2019"},{"filename":"atomic_futex.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9576,"date":"May 8 2019"},{"filename":"atomic_lockfree_defines.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2253,"date":"May 8 2019"},{"filename":"basic_ios.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":16074,"date":"May 8 2019"},{"filename":"basic_ios.tcc","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6083,"date":"May 8 2019"},{"filename":"basic_string.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":240793,"date":"May 8 2019"},{"filename":"basic_string.tcc","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":53755,"date":"May 8 2019"},{"filename":"boost_concept_check.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":27048,"date":"May 8 2019"},{"filename":"c++0x_warning.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1474,"date":"May 8 2019"},{"filename":"char_traits.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":20745,"date":"May 8 2019"},{"filename":"codecvt.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":21297,"date":"May 8 2019"},{"filename":"concept_check.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3423,"date":"May 8 2019"},{"filename":"cpp_type_traits.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9594,"date":"May 8 2019"},{"filename":"cxxabi_forced.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1811,"date":"May 8 2019"},{"filename":"cxxabi_init_exception.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2220,"date":"May 8 2019"},{"filename":"deque.tcc","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":34058,"date":"May 8 2019"},{"filename":"enable_special_members.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":12387,"date":"May 8 2019"},{"filename":"exception_defines.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1645,"date":"May 8 2019"},{"filename":"exception.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2280,"date":"May 8 2019"},{"filename":"exception_ptr.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6464,"date":"May 8 2019"},{"filename":"forward_list.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":48641,"date":"May 8 2019"},{"filename":"forward_list.tcc","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":15022,"date":"May 8 2019"},{"filename":"fstream.tcc","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":32909,"date":"May 8 2019"},{"filename":"functexcept.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3254,"date":"May 8 2019"},{"filename":"functional_hash.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8194,"date":"May 8 2019"},{"filename":"gslice_array.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7769,"date":"May 8 2019"},{"filename":"gslice.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5518,"date":"May 8 2019"},{"filename":"hash_bytes.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2146,"date":"May 8 2019"},{"filename":"hashtable.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":73276,"date":"May 8 2019"},{"filename":"hashtable_policy.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":67045,"date":"May 8 2019"},{"filename":"indirect_array.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7861,"date":"May 8 2019"},{"filename":"invoke.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3657,"date":"May 8 2019"},{"filename":"ios_base.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":30944,"date":"May 8 2019"},{"filename":"istream.tcc","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":31093,"date":"May 8 2019"},{"filename":"list.tcc","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":15912,"date":"May 8 2019"},{"filename":"locale_classes.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":24897,"date":"May 8 2019"},{"filename":"locale_classes.tcc","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8375,"date":"May 8 2019"},{"filename":"locale_conv.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":16077,"date":"May 8 2019"},{"filename":"locale_facets.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":92142,"date":"May 8 2019"},{"filename":"locale_facets_nonio.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":68941,"date":"May 8 2019"},{"filename":"locale_facets_nonio.tcc","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":45522,"date":"May 8 2019"},{"filename":"locale_facets.tcc","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":39568,"date":"May 8 2019"},{"filename":"localefwd.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5646,"date":"May 8 2019"},{"filename":"mask_array.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7595,"date":"May 8 2019"},{"filename":"memoryfwd.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2419,"date":"May 8 2019"},{"filename":"move.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6653,"date":"May 8 2019"},{"filename":"nested_exception.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4768,"date":"May 8 2019"},{"filename":"node_handle.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8165,"date":"May 8 2019"},{"filename":"ostream_insert.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4002,"date":"May 8 2019"},{"filename":"ostream.tcc","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":12315,"date":"May 8 2019"},{"filename":"parse_numbers.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8027,"date":"May 8 2019"},{"filename":"postypes.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8208,"date":"May 8 2019"},{"filename":"predefined_ops.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9083,"date":"May 8 2019"},{"filename":"ptr_traits.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4860,"date":"May 8 2019"},{"filename":"quoted_string.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4581,"date":"May 8 2019"},{"filename":"random.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":175292,"date":"May 8 2019"},{"filename":"random.tcc","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":105554,"date":"May 8 2019"},{"filename":"range_access.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9988,"date":"May 8 2019"},{"filename":"refwrap.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":13807,"date":"May 8 2019"},{"filename":"regex_automaton.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":10721,"date":"May 8 2019"},{"filename":"regex_automaton.tcc","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7838,"date":"May 8 2019"},{"filename":"regex_compiler.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":17196,"date":"May 8 2019"},{"filename":"regex_compiler.tcc","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":18901,"date":"May 8 2019"},{"filename":"regex_constants.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":14709,"date":"May 8 2019"},{"filename":"regex_error.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4969,"date":"May 8 2019"},{"filename":"regex_executor.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7488,"date":"May 8 2019"},{"filename":"regex_executor.tcc","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":17319,"date":"May 8 2019"},{"filename":"regex.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":98206,"date":"May 8 2019"},{"filename":"regex_scanner.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7088,"date":"May 8 2019"},{"filename":"regex_scanner.tcc","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":15009,"date":"May 8 2019"},{"filename":"regex.tcc","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":16486,"date":"May 8 2019"},{"filename":"shared_ptr_atomic.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9769,"date":"May 8 2019"},{"filename":"shared_ptr_base.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":53803,"date":"May 8 2019"},{"filename":"shared_ptr.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":22909,"date":"May 8 2019"},{"filename":"slice_array.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9348,"date":"May 8 2019"},{"filename":"specfun.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":45086,"date":"May 8 2019"},{"filename":"sstream.tcc","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":10115,"date":"May 8 2019"},{"filename":"std_abs.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3290,"date":"May 8 2019"},{"filename":"std_function.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":23974,"date":"May 8 2019"},{"filename":"std_mutex.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9298,"date":"May 8 2019"},{"filename":"stl_algobase.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":50403,"date":"May 8 2019"},{"filename":"stl_algo.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":213859,"date":"May 8 2019"},{"filename":"stl_bvector.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":33821,"date":"May 8 2019"},{"filename":"stl_construct.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7397,"date":"May 8 2019"},{"filename":"stl_deque.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":77771,"date":"May 8 2019"},{"filename":"stl_function.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":33276,"date":"May 8 2019"},{"filename":"stl_heap.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":20206,"date":"May 8 2019"},{"filename":"stl_iterator_base_funcs.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8071,"date":"May 8 2019"},{"filename":"stl_iterator_base_types.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8680,"date":"May 8 2019"},{"filename":"stl_iterator.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":41744,"date":"May 8 2019"},{"filename":"stl_list.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":65181,"date":"May 8 2019"},{"filename":"stl_map.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":51221,"date":"May 8 2019"},{"filename":"stl_multimap.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":39940,"date":"May 8 2019"},{"filename":"stl_multiset.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":34056,"date":"May 8 2019"},{"filename":"stl_numeric.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":13832,"date":"May 8 2019"},{"filename":"stl_pair.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":18642,"date":"May 8 2019"},{"filename":"stl_queue.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":22125,"date":"May 8 2019"},{"filename":"stl_raw_storage_iter.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3830,"date":"May 8 2019"},{"filename":"stl_relops.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4599,"date":"May 8 2019"},{"filename":"stl_set.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":34432,"date":"May 8 2019"},{"filename":"stl_stack.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":11446,"date":"May 8 2019"},{"filename":"stl_tempbuf.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8344,"date":"May 8 2019"},{"filename":"stl_tree.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":74820,"date":"May 8 2019"},{"filename":"stl_uninitialized.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":27600,"date":"May 8 2019"},{"filename":"stl_vector.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":55637,"date":"May 8 2019"},{"filename":"streambuf_iterator.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":12624,"date":"May 8 2019"},{"filename":"streambuf.tcc","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4929,"date":"May 8 2019"},{"filename":"stream_iterator.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6654,"date":"May 8 2019"},{"filename":"stringfwd.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2607,"date":"May 8 2019"},{"filename":"string_view.tcc","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6632,"date":"May 8 2019"},{"filename":"uniform_int_dist.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":10147,"date":"May 8 2019"},{"filename":"unique_ptr.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":25794,"date":"May 8 2019"},{"filename":"unordered_map.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":68650,"date":"May 8 2019"},{"filename":"unordered_set.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":53824,"date":"May 8 2019"},{"filename":"uses_allocator.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6383,"date":"May 8 2019"},{"filename":"valarray_after.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":22655,"date":"May 8 2019"},{"filename":"valarray_array.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":21807,"date":"May 8 2019"},{"filename":"valarray_array.tcc","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7254,"date":"May 8 2019"},{"filename":"valarray_before.h","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":18513,"date":"May 8 2019"},{"filename":"vector.tcc","parent":"/usr/include/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":27598,"date":"May 8 2019"},{"filename":".","parent":"/usr/include/c++/7/debug","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/c++/7/debug","flags":"drwxr-xr-x","links":12,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"array","parent":"/usr/include/c++/7/debug","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":10122,"date":"May 8 2019"},{"filename":"assertions.h","parent":"/usr/include/c++/7/debug","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2411,"date":"May 8 2019"},{"filename":"bitset","parent":"/usr/include/c++/7/debug","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":11903,"date":"May 8 2019"},{"filename":"debug.h","parent":"/usr/include/c++/7/debug","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5221,"date":"May 8 2019"},{"filename":"deque","parent":"/usr/include/c++/7/debug","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":17004,"date":"May 8 2019"},{"filename":"formatter.h","parent":"/usr/include/c++/7/debug","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":14169,"date":"May 8 2019"},{"filename":"forward_list","parent":"/usr/include/c++/7/debug","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":25253,"date":"May 8 2019"},{"filename":"functions.h","parent":"/usr/include/c++/7/debug","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":16601,"date":"May 8 2019"},{"filename":"helper_functions.h","parent":"/usr/include/c++/7/debug","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6813,"date":"May 8 2019"},{"filename":"list","parent":"/usr/include/c++/7/debug","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":22406,"date":"May 8 2019"},{"filename":"macros.h","parent":"/usr/include/c++/7/debug","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":17872,"date":"May 8 2019"},{"filename":"map","parent":"/usr/include/c++/7/debug","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1345,"date":"May 8 2019"},{"filename":"map.h","parent":"/usr/include/c++/7/debug","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":21145,"date":"May 8 2019"},{"filename":"multimap.h","parent":"/usr/include/c++/7/debug","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":18244,"date":"May 8 2019"},{"filename":"multiset.h","parent":"/usr/include/c++/7/debug","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":17168,"date":"May 8 2019"},{"filename":"safe_base.h","parent":"/usr/include/c++/7/debug","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9279,"date":"May 8 2019"},{"filename":"safe_container.h","parent":"/usr/include/c++/7/debug","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3413,"date":"May 8 2019"},{"filename":"safe_iterator.h","parent":"/usr/include/c++/7/debug","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":30248,"date":"May 8 2019"},{"filename":"safe_iterator.tcc","parent":"/usr/include/c++/7/debug","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2959,"date":"May 8 2019"},{"filename":"safe_local_iterator.h","parent":"/usr/include/c++/7/debug","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":16229,"date":"May 8 2019"},{"filename":"safe_local_iterator.tcc","parent":"/usr/include/c++/7/debug","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2118,"date":"May 8 2019"},{"filename":"safe_sequence.h","parent":"/usr/include/c++/7/debug","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5096,"date":"May 8 2019"},{"filename":"safe_sequence.tcc","parent":"/usr/include/c++/7/debug","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4989,"date":"May 8 2019"},{"filename":"safe_unordered_base.h","parent":"/usr/include/c++/7/debug","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6895,"date":"May 8 2019"},{"filename":"safe_unordered_container.h","parent":"/usr/include/c++/7/debug","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3897,"date":"May 8 2019"},{"filename":"safe_unordered_container.tcc","parent":"/usr/include/c++/7/debug","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3263,"date":"May 8 2019"},{"filename":"set","parent":"/usr/include/c++/7/debug","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1345,"date":"May 8 2019"},{"filename":"set.h","parent":"/usr/include/c++/7/debug","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":17328,"date":"May 8 2019"},{"filename":"stl_iterator.h","parent":"/usr/include/c++/7/debug","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4276,"date":"May 8 2019"},{"filename":"string","parent":"/usr/include/c++/7/debug","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":33653,"date":"May 8 2019"},{"filename":"unordered_map","parent":"/usr/include/c++/7/debug","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":35411,"date":"May 8 2019"},{"filename":"unordered_set","parent":"/usr/include/c++/7/debug","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":30522,"date":"May 8 2019"},{"filename":"vector","parent":"/usr/include/c++/7/debug","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":21862,"date":"May 8 2019"},{"filename":".","parent":"/usr/include/c++/7/decimal","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/c++/7/decimal","flags":"drwxr-xr-x","links":12,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"decimal","parent":"/usr/include/c++/7/decimal","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":17640,"date":"May 8 2019"},{"filename":"decimal.h","parent":"/usr/include/c++/7/decimal","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":17002,"date":"May 8 2019"},{"filename":".","parent":"/usr/include/c++/7/experimental","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/c++/7/experimental","flags":"drwxr-xr-x","links":12,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"algorithm","parent":"/usr/include/c++/7/experimental","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3089,"date":"May 8 2019"},{"filename":"any","parent":"/usr/include/c++/7/experimental","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":14592,"date":"May 8 2019"},{"filename":"array","parent":"/usr/include/c++/7/experimental","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3232,"date":"May 8 2019"},{"filename":"bits","parent":"/usr/include/c++/7/experimental","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"chrono","parent":"/usr/include/c++/7/experimental","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1937,"date":"May 8 2019"},{"filename":"deque","parent":"/usr/include/c++/7/experimental","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2317,"date":"May 8 2019"},{"filename":"filesystem","parent":"/usr/include/c++/7/experimental","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2195,"date":"May 8 2019"},{"filename":"forward_list","parent":"/usr/include/c++/7/experimental","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2373,"date":"May 8 2019"},{"filename":"functional","parent":"/usr/include/c++/7/experimental","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":12553,"date":"May 8 2019"},{"filename":"iterator","parent":"/usr/include/c++/7/experimental","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3510,"date":"May 8 2019"},{"filename":"list","parent":"/usr/include/c++/7/experimental","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2284,"date":"May 8 2019"},{"filename":"map","parent":"/usr/include/c++/7/experimental","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2628,"date":"May 8 2019"},{"filename":"memory","parent":"/usr/include/c++/7/experimental","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6040,"date":"May 8 2019"},{"filename":"memory_resource","parent":"/usr/include/c++/7/experimental","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":12803,"date":"May 8 2019"},{"filename":"numeric","parent":"/usr/include/c++/7/experimental","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2798,"date":"May 8 2019"},{"filename":"optional","parent":"/usr/include/c++/7/experimental","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":28849,"date":"May 8 2019"},{"filename":"propagate_const","parent":"/usr/include/c++/7/experimental","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":15312,"date":"May 8 2019"},{"filename":"random","parent":"/usr/include/c++/7/experimental","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2475,"date":"May 8 2019"},{"filename":"ratio","parent":"/usr/include/c++/7/experimental","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2416,"date":"May 8 2019"},{"filename":"regex","parent":"/usr/include/c++/7/experimental","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2097,"date":"May 8 2019"},{"filename":"set","parent":"/usr/include/c++/7/experimental","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2502,"date":"May 8 2019"},{"filename":"source_location","parent":"/usr/include/c++/7/experimental","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2670,"date":"May 8 2019"},{"filename":"string","parent":"/usr/include/c++/7/experimental","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2861,"date":"May 8 2019"},{"filename":"string_view","parent":"/usr/include/c++/7/experimental","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":21790,"date":"May 8 2019"},{"filename":"system_error","parent":"/usr/include/c++/7/experimental","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2023,"date":"May 8 2019"},{"filename":"tuple","parent":"/usr/include/c++/7/experimental","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2450,"date":"May 8 2019"},{"filename":"type_traits","parent":"/usr/include/c++/7/experimental","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":11018,"date":"May 8 2019"},{"filename":"unordered_map","parent":"/usr/include/c++/7/experimental","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2874,"date":"May 8 2019"},{"filename":"unordered_set","parent":"/usr/include/c++/7/experimental","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2757,"date":"May 8 2019"},{"filename":"utility","parent":"/usr/include/c++/7/experimental","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1633,"date":"May 8 2019"},{"filename":"vector","parent":"/usr/include/c++/7/experimental","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2389,"date":"May 8 2019"},{"filename":".","parent":"/usr/include/c++/7/experimental/bits","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/c++/7/experimental/bits","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"erase_if.h","parent":"/usr/include/c++/7/experimental/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2079,"date":"May 8 2019"},{"filename":"fs_dir.h","parent":"/usr/include/c++/7/experimental/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":10789,"date":"May 8 2019"},{"filename":"fs_fwd.h","parent":"/usr/include/c++/7/experimental/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8507,"date":"May 8 2019"},{"filename":"fs_ops.h","parent":"/usr/include/c++/7/experimental/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9330,"date":"May 8 2019"},{"filename":"fs_path.h","parent":"/usr/include/c++/7/experimental/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":30782,"date":"May 8 2019"},{"filename":"lfts_config.h","parent":"/usr/include/c++/7/experimental/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2144,"date":"May 8 2019"},{"filename":"shared_ptr.h","parent":"/usr/include/c++/7/experimental/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":20301,"date":"May 8 2019"},{"filename":"string_view.tcc","parent":"/usr/include/c++/7/experimental/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6816,"date":"May 8 2019"},{"filename":".","parent":"/usr/include/c++/7/ext","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/c++/7/ext","flags":"drwxr-xr-x","links":12,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"algorithm","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":19290,"date":"May 8 2019"},{"filename":"aligned_buffer.h","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3742,"date":"May 8 2019"},{"filename":"alloc_traits.h","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5658,"date":"May 8 2019"},{"filename":"array_allocator.h","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5386,"date":"May 8 2019"},{"filename":"atomicity.h","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3509,"date":"May 8 2019"},{"filename":"bitmap_allocator.h","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":31892,"date":"May 8 2019"},{"filename":"cast.h","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4447,"date":"May 8 2019"},{"filename":"cmath","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6570,"date":"May 8 2019"},{"filename":"codecvt_specializations.h","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":16353,"date":"May 8 2019"},{"filename":"concurrence.h","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7611,"date":"May 8 2019"},{"filename":"debug_allocator.h","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5716,"date":"May 8 2019"},{"filename":"enc_filebuf.h","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2247,"date":"May 8 2019"},{"filename":"extptr_allocator.h","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6189,"date":"May 8 2019"},{"filename":"functional","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":14292,"date":"May 8 2019"},{"filename":"hash_map","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":17775,"date":"May 8 2019"},{"filename":"hash_set","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":17195,"date":"May 8 2019"},{"filename":"iterator","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4031,"date":"May 8 2019"},{"filename":"malloc_allocator.h","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5086,"date":"May 8 2019"},{"filename":"memory","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7156,"date":"May 8 2019"},{"filename":"mt_allocator.h","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":23523,"date":"May 8 2019"},{"filename":"new_allocator.h","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4805,"date":"May 8 2019"},{"filename":"numeric","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4731,"date":"May 8 2019"},{"filename":"numeric_traits.h","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4575,"date":"May 8 2019"},{"filename":"pb_ds","parent":"/usr/include/c++/7/ext","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"pod_char_traits.h","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5556,"date":"May 8 2019"},{"filename":"pointer.h","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":19827,"date":"May 8 2019"},{"filename":"pool_allocator.h","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8821,"date":"May 8 2019"},{"filename":"random","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":111392,"date":"May 8 2019"},{"filename":"random.tcc","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":60247,"date":"May 8 2019"},{"filename":"rb_tree","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3311,"date":"May 8 2019"},{"filename":"rc_string_base.h","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":23735,"date":"May 8 2019"},{"filename":"rope","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":87643,"date":"May 8 2019"},{"filename":"ropeimpl.h","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":48434,"date":"May 8 2019"},{"filename":"slist","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":29603,"date":"May 8 2019"},{"filename":"sso_string_base.h","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":16314,"date":"May 8 2019"},{"filename":"stdio_filebuf.h","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5670,"date":"May 8 2019"},{"filename":"stdio_sync_filebuf.h","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8782,"date":"May 8 2019"},{"filename":"string_conversions.h","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3597,"date":"May 8 2019"},{"filename":"throw_allocator.h","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":24537,"date":"May 8 2019"},{"filename":"typelist.h","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":16835,"date":"May 8 2019"},{"filename":"type_traits.h","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5914,"date":"May 8 2019"},{"filename":"vstring_fwd.h","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3222,"date":"May 8 2019"},{"filename":"vstring.h","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":110573,"date":"May 8 2019"},{"filename":"vstring.tcc","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":23614,"date":"May 8 2019"},{"filename":"vstring_util.h","parent":"/usr/include/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5767,"date":"May 8 2019"},{"filename":".","parent":"/usr/include/c++/7/ext/pb_ds","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/c++/7/ext/pb_ds","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"assoc_container.hpp","parent":"/usr/include/c++/7/ext/pb_ds","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":30110,"date":"May 8 2019"},{"filename":"detail","parent":"/usr/include/c++/7/ext/pb_ds","flags":"drwxr-xr-x","links":25,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"exception.hpp","parent":"/usr/include/c++/7/ext/pb_ds","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2988,"date":"May 8 2019"},{"filename":"hash_policy.hpp","parent":"/usr/include/c++/7/ext/pb_ds","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":16815,"date":"May 8 2019"},{"filename":"list_update_policy.hpp","parent":"/usr/include/c++/7/ext/pb_ds","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4368,"date":"May 8 2019"},{"filename":"priority_queue.hpp","parent":"/usr/include/c++/7/ext/pb_ds","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5502,"date":"May 8 2019"},{"filename":"tag_and_trait.hpp","parent":"/usr/include/c++/7/ext/pb_ds","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":12268,"date":"May 8 2019"},{"filename":"tree_policy.hpp","parent":"/usr/include/c++/7/ext/pb_ds","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5577,"date":"May 8 2019"},{"filename":"trie_policy.hpp","parent":"/usr/include/c++/7/ext/pb_ds","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":12225,"date":"May 8 2019"},{"filename":".","parent":"/usr/include/c++/7/ext/pb_ds/detail","flags":"drwxr-xr-x","links":25,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/c++/7/ext/pb_ds/detail","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"binary_heap_","parent":"/usr/include/c++/7/ext/pb_ds/detail","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"binomial_heap_","parent":"/usr/include/c++/7/ext/pb_ds/detail","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"binomial_heap_base_","parent":"/usr/include/c++/7/ext/pb_ds/detail","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"bin_search_tree_","parent":"/usr/include/c++/7/ext/pb_ds/detail","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"branch_policy","parent":"/usr/include/c++/7/ext/pb_ds/detail","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"cc_hash_table_map_","parent":"/usr/include/c++/7/ext/pb_ds/detail","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"cond_dealtor.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2724,"date":"May 8 2019"},{"filename":"container_base_dispatch.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":13120,"date":"May 8 2019"},{"filename":"debug_map_base.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8697,"date":"May 8 2019"},{"filename":"eq_fn","parent":"/usr/include/c++/7/ext/pb_ds/detail","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"gp_hash_table_map_","parent":"/usr/include/c++/7/ext/pb_ds/detail","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"hash_fn","parent":"/usr/include/c++/7/ext/pb_ds/detail","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"left_child_next_sibling_heap_","parent":"/usr/include/c++/7/ext/pb_ds/detail","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"list_update_map_","parent":"/usr/include/c++/7/ext/pb_ds/detail","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"list_update_policy","parent":"/usr/include/c++/7/ext/pb_ds/detail","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"ov_tree_map_","parent":"/usr/include/c++/7/ext/pb_ds/detail","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"pairing_heap_","parent":"/usr/include/c++/7/ext/pb_ds/detail","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"pat_trie_","parent":"/usr/include/c++/7/ext/pb_ds/detail","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"priority_queue_base_dispatch.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4140,"date":"May 8 2019"},{"filename":"rb_tree_map_","parent":"/usr/include/c++/7/ext/pb_ds/detail","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"rc_binomial_heap_","parent":"/usr/include/c++/7/ext/pb_ds/detail","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"resize_policy","parent":"/usr/include/c++/7/ext/pb_ds/detail","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"splay_tree_","parent":"/usr/include/c++/7/ext/pb_ds/detail","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"standard_policies.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5031,"date":"May 8 2019"},{"filename":"thin_heap_","parent":"/usr/include/c++/7/ext/pb_ds/detail","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"tree_policy","parent":"/usr/include/c++/7/ext/pb_ds/detail","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"tree_trace_base.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5134,"date":"May 8 2019"},{"filename":"trie_policy","parent":"/usr/include/c++/7/ext/pb_ds/detail","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"types_traits.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9998,"date":"May 8 2019"},{"filename":"type_utils.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4319,"date":"May 8 2019"},{"filename":"unordered_iterator","parent":"/usr/include/c++/7/ext/pb_ds/detail","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":".","parent":"/usr/include/c++/7/ext/pb_ds/detail/binary_heap_","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/c++/7/ext/pb_ds/detail/binary_heap_","flags":"drwxr-xr-x","links":25,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"binary_heap_.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/binary_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9010,"date":"May 8 2019"},{"filename":"const_iterator.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/binary_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4338,"date":"May 8 2019"},{"filename":"constructors_destructor_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/binary_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4189,"date":"May 8 2019"},{"filename":"debug_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/binary_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2541,"date":"May 8 2019"},{"filename":"entry_cmp.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/binary_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2820,"date":"May 8 2019"},{"filename":"entry_pred.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/binary_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2785,"date":"May 8 2019"},{"filename":"erase_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/binary_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5504,"date":"May 8 2019"},{"filename":"find_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/binary_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2597,"date":"May 8 2019"},{"filename":"info_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/binary_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2062,"date":"May 8 2019"},{"filename":"insert_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/binary_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4978,"date":"May 8 2019"},{"filename":"iterators_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/binary_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2270,"date":"May 8 2019"},{"filename":"point_const_iterator.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/binary_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4447,"date":"May 8 2019"},{"filename":"policy_access_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/binary_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1902,"date":"May 8 2019"},{"filename":"resize_policy.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/binary_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6133,"date":"May 8 2019"},{"filename":"split_join_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/binary_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4923,"date":"May 8 2019"},{"filename":"trace_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/binary_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2447,"date":"May 8 2019"},{"filename":".","parent":"/usr/include/c++/7/ext/pb_ds/detail/binomial_heap_","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/c++/7/ext/pb_ds/detail/binomial_heap_","flags":"drwxr-xr-x","links":25,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"binomial_heap_.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/binomial_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3922,"date":"May 8 2019"},{"filename":"constructors_destructor_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/binomial_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2151,"date":"May 8 2019"},{"filename":"debug_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/binomial_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1897,"date":"May 8 2019"},{"filename":".","parent":"/usr/include/c++/7/ext/pb_ds/detail/binomial_heap_base_","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/c++/7/ext/pb_ds/detail/binomial_heap_base_","flags":"drwxr-xr-x","links":25,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"binomial_heap_base_.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/binomial_heap_base_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6202,"date":"May 8 2019"},{"filename":"constructors_destructor_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/binomial_heap_base_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2688,"date":"May 8 2019"},{"filename":"debug_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/binomial_heap_base_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3468,"date":"May 8 2019"},{"filename":"erase_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/binomial_heap_base_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4482,"date":"May 8 2019"},{"filename":"find_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/binomial_heap_base_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2345,"date":"May 8 2019"},{"filename":"insert_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/binomial_heap_base_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5271,"date":"May 8 2019"},{"filename":"split_join_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/binomial_heap_base_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5365,"date":"May 8 2019"},{"filename":".","parent":"/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_","flags":"drwxr-xr-x","links":25,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"bin_search_tree_.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":12419,"date":"May 8 2019"},{"filename":"constructors_destructor_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5507,"date":"May 8 2019"},{"filename":"debug_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8071,"date":"May 8 2019"},{"filename":"erase_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2919,"date":"May 8 2019"},{"filename":"find_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4679,"date":"May 8 2019"},{"filename":"info_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2080,"date":"May 8 2019"},{"filename":"insert_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5481,"date":"May 8 2019"},{"filename":"iterators_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3515,"date":"May 8 2019"},{"filename":"node_iterators.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5997,"date":"May 8 2019"},{"filename":"point_iterators.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8961,"date":"May 8 2019"},{"filename":"policy_access_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1905,"date":"May 8 2019"},{"filename":"r_erase_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2909,"date":"May 8 2019"},{"filename":"rotate_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4190,"date":"May 8 2019"},{"filename":"split_join_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4007,"date":"May 8 2019"},{"filename":"traits.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6378,"date":"May 8 2019"},{"filename":".","parent":"/usr/include/c++/7/ext/pb_ds/detail/branch_policy","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/c++/7/ext/pb_ds/detail/branch_policy","flags":"drwxr-xr-x","links":25,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"branch_policy.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/branch_policy","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4031,"date":"May 8 2019"},{"filename":"null_node_metadata.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/branch_policy","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2379,"date":"May 8 2019"},{"filename":"traits.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/branch_policy","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3254,"date":"May 8 2019"},{"filename":".","parent":"/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_","flags":"drwxr-xr-x","links":25,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"cc_ht_map_.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":19953,"date":"May 8 2019"},{"filename":"cmp_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2765,"date":"May 8 2019"},{"filename":"cond_key_dtor_entry_dealtor.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2874,"date":"May 8 2019"},{"filename":"constructor_destructor_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5791,"date":"May 8 2019"},{"filename":"constructor_destructor_no_store_hash_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2226,"date":"May 8 2019"},{"filename":"constructor_destructor_store_hash_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2306,"date":"May 8 2019"},{"filename":"debug_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2693,"date":"May 8 2019"},{"filename":"debug_no_store_hash_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2000,"date":"May 8 2019"},{"filename":"debug_store_hash_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2148,"date":"May 8 2019"},{"filename":"entry_list_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2954,"date":"May 8 2019"},{"filename":"erase_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3245,"date":"May 8 2019"},{"filename":"erase_no_store_hash_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3264,"date":"May 8 2019"},{"filename":"erase_store_hash_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3225,"date":"May 8 2019"},{"filename":"find_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2485,"date":"May 8 2019"},{"filename":"find_store_hash_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1779,"date":"May 8 2019"},{"filename":"info_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3111,"date":"May 8 2019"},{"filename":"insert_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1896,"date":"May 8 2019"},{"filename":"insert_no_store_hash_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2618,"date":"May 8 2019"},{"filename":"insert_store_hash_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2674,"date":"May 8 2019"},{"filename":"iterators_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2664,"date":"May 8 2019"},{"filename":"policy_access_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2481,"date":"May 8 2019"},{"filename":"resize_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4062,"date":"May 8 2019"},{"filename":"resize_no_store_hash_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2242,"date":"May 8 2019"},{"filename":"resize_store_hash_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2274,"date":"May 8 2019"},{"filename":"size_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2109,"date":"May 8 2019"},{"filename":"trace_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2363,"date":"May 8 2019"},{"filename":".","parent":"/usr/include/c++/7/ext/pb_ds/detail/eq_fn","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/c++/7/ext/pb_ds/detail/eq_fn","flags":"drwxr-xr-x","links":25,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"eq_by_less.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/eq_fn","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2330,"date":"May 8 2019"},{"filename":"hash_eq_fn.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/eq_fn","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3821,"date":"May 8 2019"},{"filename":".","parent":"/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_","flags":"drwxr-xr-x","links":25,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"constructor_destructor_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6606,"date":"May 8 2019"},{"filename":"constructor_destructor_no_store_hash_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2202,"date":"May 8 2019"},{"filename":"constructor_destructor_store_hash_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2269,"date":"May 8 2019"},{"filename":"debug_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2174,"date":"May 8 2019"},{"filename":"debug_no_store_hash_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2505,"date":"May 8 2019"},{"filename":"debug_store_hash_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2645,"date":"May 8 2019"},{"filename":"erase_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3204,"date":"May 8 2019"},{"filename":"erase_no_store_hash_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2885,"date":"May 8 2019"},{"filename":"erase_store_hash_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2919,"date":"May 8 2019"},{"filename":"find_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2478,"date":"May 8 2019"},{"filename":"find_no_store_hash_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1924,"date":"May 8 2019"},{"filename":"find_store_hash_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1780,"date":"May 8 2019"},{"filename":"gp_ht_map_.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":20398,"date":"May 8 2019"},{"filename":"info_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2108,"date":"May 8 2019"},{"filename":"insert_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1896,"date":"May 8 2019"},{"filename":"insert_no_store_hash_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3777,"date":"May 8 2019"},{"filename":"insert_store_hash_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4085,"date":"May 8 2019"},{"filename":"iterator_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2619,"date":"May 8 2019"},{"filename":"policy_access_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2660,"date":"May 8 2019"},{"filename":"resize_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4157,"date":"May 8 2019"},{"filename":"resize_no_store_hash_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2618,"date":"May 8 2019"},{"filename":"resize_store_hash_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2651,"date":"May 8 2019"},{"filename":"trace_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2424,"date":"May 8 2019"},{"filename":".","parent":"/usr/include/c++/7/ext/pb_ds/detail/hash_fn","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/c++/7/ext/pb_ds/detail/hash_fn","flags":"drwxr-xr-x","links":25,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"direct_mask_range_hashing_imp.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/hash_fn","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2104,"date":"May 8 2019"},{"filename":"direct_mod_range_hashing_imp.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/hash_fn","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2094,"date":"May 8 2019"},{"filename":"linear_probe_fn_imp.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/hash_fn","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1913,"date":"May 8 2019"},{"filename":"mask_based_range_hashing.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/hash_fn","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3290,"date":"May 8 2019"},{"filename":"mod_based_range_hashing.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/hash_fn","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2391,"date":"May 8 2019"},{"filename":"probe_fn_base.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/hash_fn","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2009,"date":"May 8 2019"},{"filename":"quadratic_probe_fn_imp.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/hash_fn","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1920,"date":"May 8 2019"},{"filename":"ranged_hash_fn.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/hash_fn","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":10619,"date":"May 8 2019"},{"filename":"ranged_probe_fn.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/hash_fn","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":10436,"date":"May 8 2019"},{"filename":"sample_probe_fn.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/hash_fn","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2291,"date":"May 8 2019"},{"filename":"sample_ranged_hash_fn.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/hash_fn","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2469,"date":"May 8 2019"},{"filename":"sample_ranged_probe_fn.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/hash_fn","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2598,"date":"May 8 2019"},{"filename":"sample_range_hashing.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/hash_fn","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2487,"date":"May 8 2019"},{"filename":".","parent":"/usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_","flags":"drwxr-xr-x","links":25,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"const_iterator.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4924,"date":"May 8 2019"},{"filename":"constructors_destructor_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4055,"date":"May 8 2019"},{"filename":"debug_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4075,"date":"May 8 2019"},{"filename":"erase_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3959,"date":"May 8 2019"},{"filename":"info_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2106,"date":"May 8 2019"},{"filename":"insert_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5201,"date":"May 8 2019"},{"filename":"iterators_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2555,"date":"May 8 2019"},{"filename":"left_child_next_sibling_heap_.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8175,"date":"May 8 2019"},{"filename":"node.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3212,"date":"May 8 2019"},{"filename":"point_const_iterator.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4496,"date":"May 8 2019"},{"filename":"policy_access_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1927,"date":"May 8 2019"},{"filename":"trace_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2815,"date":"May 8 2019"},{"filename":".","parent":"/usr/include/c++/7/ext/pb_ds/detail/list_update_map_","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/c++/7/ext/pb_ds/detail/list_update_map_","flags":"drwxr-xr-x","links":25,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"constructor_destructor_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/list_update_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3584,"date":"May 8 2019"},{"filename":"debug_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/list_update_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2095,"date":"May 8 2019"},{"filename":"entry_metadata_base.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/list_update_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2117,"date":"May 8 2019"},{"filename":"erase_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/list_update_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3482,"date":"May 8 2019"},{"filename":"find_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/list_update_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2861,"date":"May 8 2019"},{"filename":"info_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/list_update_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2074,"date":"May 8 2019"},{"filename":"insert_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/list_update_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3510,"date":"May 8 2019"},{"filename":"iterators_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/list_update_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2520,"date":"May 8 2019"},{"filename":"lu_map_.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/list_update_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":10393,"date":"May 8 2019"},{"filename":"trace_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/list_update_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2028,"date":"May 8 2019"},{"filename":".","parent":"/usr/include/c++/7/ext/pb_ds/detail/list_update_policy","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/c++/7/ext/pb_ds/detail/list_update_policy","flags":"drwxr-xr-x","links":25,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"lu_counter_metadata.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/list_update_policy","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2850,"date":"May 8 2019"},{"filename":"sample_update_policy.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/list_update_policy","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2672,"date":"May 8 2019"},{"filename":".","parent":"/usr/include/c++/7/ext/pb_ds/detail/ov_tree_map_","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/c++/7/ext/pb_ds/detail/ov_tree_map_","flags":"drwxr-xr-x","links":25,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"constructors_destructor_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/ov_tree_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6869,"date":"May 8 2019"},{"filename":"debug_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/ov_tree_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2818,"date":"May 8 2019"},{"filename":"erase_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/ov_tree_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4981,"date":"May 8 2019"},{"filename":"info_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/ov_tree_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2084,"date":"May 8 2019"},{"filename":"insert_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/ov_tree_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2273,"date":"May 8 2019"},{"filename":"iterators_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/ov_tree_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3361,"date":"May 8 2019"},{"filename":"node_iterators.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/ov_tree_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8811,"date":"May 8 2019"},{"filename":"ov_tree_map_.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/ov_tree_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":15366,"date":"May 8 2019"},{"filename":"policy_access_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/ov_tree_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1887,"date":"May 8 2019"},{"filename":"split_join_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/ov_tree_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3774,"date":"May 8 2019"},{"filename":"traits.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/ov_tree_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4562,"date":"May 8 2019"},{"filename":".","parent":"/usr/include/c++/7/ext/pb_ds/detail/pairing_heap_","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/c++/7/ext/pb_ds/detail/pairing_heap_","flags":"drwxr-xr-x","links":25,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"constructors_destructor_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/pairing_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2506,"date":"May 8 2019"},{"filename":"debug_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/pairing_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1996,"date":"May 8 2019"},{"filename":"erase_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/pairing_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7191,"date":"May 8 2019"},{"filename":"find_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/pairing_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1937,"date":"May 8 2019"},{"filename":"insert_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/pairing_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2947,"date":"May 8 2019"},{"filename":"pairing_heap_.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/pairing_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5517,"date":"May 8 2019"},{"filename":"split_join_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/pairing_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3706,"date":"May 8 2019"},{"filename":".","parent":"/usr/include/c++/7/ext/pb_ds/detail/pat_trie_","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/c++/7/ext/pb_ds/detail/pat_trie_","flags":"drwxr-xr-x","links":25,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"constructors_destructor_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/pat_trie_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5712,"date":"May 8 2019"},{"filename":"debug_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/pat_trie_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3791,"date":"May 8 2019"},{"filename":"erase_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/pat_trie_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7945,"date":"May 8 2019"},{"filename":"find_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/pat_trie_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7875,"date":"May 8 2019"},{"filename":"info_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/pat_trie_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2056,"date":"May 8 2019"},{"filename":"insert_join_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/pat_trie_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":14475,"date":"May 8 2019"},{"filename":"iterators_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/pat_trie_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3480,"date":"May 8 2019"},{"filename":"pat_trie_base.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/pat_trie_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":37633,"date":"May 8 2019"},{"filename":"pat_trie_.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/pat_trie_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":16869,"date":"May 8 2019"},{"filename":"policy_access_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/pat_trie_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2215,"date":"May 8 2019"},{"filename":"r_erase_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/pat_trie_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2920,"date":"May 8 2019"},{"filename":"rotate_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/pat_trie_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4330,"date":"May 8 2019"},{"filename":"split_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/pat_trie_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7725,"date":"May 8 2019"},{"filename":"synth_access_traits.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/pat_trie_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6718,"date":"May 8 2019"},{"filename":"trace_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/pat_trie_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3401,"date":"May 8 2019"},{"filename":"traits.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/pat_trie_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6305,"date":"May 8 2019"},{"filename":"update_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/pat_trie_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2042,"date":"May 8 2019"},{"filename":".","parent":"/usr/include/c++/7/ext/pb_ds/detail/rb_tree_map_","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/c++/7/ext/pb_ds/detail/rb_tree_map_","flags":"drwxr-xr-x","links":25,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"constructors_destructor_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/rb_tree_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2783,"date":"May 8 2019"},{"filename":"debug_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/rb_tree_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2761,"date":"May 8 2019"},{"filename":"erase_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/rb_tree_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7051,"date":"May 8 2019"},{"filename":"find_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/rb_tree_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1703,"date":"May 8 2019"},{"filename":"info_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/rb_tree_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1841,"date":"May 8 2019"},{"filename":"insert_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/rb_tree_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3867,"date":"May 8 2019"},{"filename":"node.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/rb_tree_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3870,"date":"May 8 2019"},{"filename":"rb_tree_.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/rb_tree_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7962,"date":"May 8 2019"},{"filename":"split_join_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/rb_tree_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7861,"date":"May 8 2019"},{"filename":"traits.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/rb_tree_map_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3283,"date":"May 8 2019"},{"filename":".","parent":"/usr/include/c++/7/ext/pb_ds/detail/rc_binomial_heap_","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/c++/7/ext/pb_ds/detail/rc_binomial_heap_","flags":"drwxr-xr-x","links":25,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"constructors_destructor_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/rc_binomial_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2467,"date":"May 8 2019"},{"filename":"debug_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/rc_binomial_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3538,"date":"May 8 2019"},{"filename":"erase_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/rc_binomial_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2889,"date":"May 8 2019"},{"filename":"insert_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/rc_binomial_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4237,"date":"May 8 2019"},{"filename":"rc_binomial_heap_.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/rc_binomial_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5303,"date":"May 8 2019"},{"filename":"rc.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/rc_binomial_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6265,"date":"May 8 2019"},{"filename":"split_join_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/rc_binomial_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2418,"date":"May 8 2019"},{"filename":"trace_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/rc_binomial_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1904,"date":"May 8 2019"},{"filename":".","parent":"/usr/include/c++/7/ext/pb_ds/detail/resize_policy","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/c++/7/ext/pb_ds/detail/resize_policy","flags":"drwxr-xr-x","links":25,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"cc_hash_max_collision_check_resize_trigger_imp.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/resize_policy","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4899,"date":"May 8 2019"},{"filename":"hash_exponential_size_policy_imp.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/resize_policy","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2772,"date":"May 8 2019"},{"filename":"hash_load_check_resize_trigger_imp.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/resize_policy","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7752,"date":"May 8 2019"},{"filename":"hash_load_check_resize_trigger_size_base.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/resize_policy","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2970,"date":"May 8 2019"},{"filename":"hash_prime_size_policy_imp.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/resize_policy","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6139,"date":"May 8 2019"},{"filename":"hash_standard_resize_policy_imp.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/resize_policy","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6283,"date":"May 8 2019"},{"filename":"sample_resize_policy.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/resize_policy","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3578,"date":"May 8 2019"},{"filename":"sample_resize_trigger.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/resize_policy","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3914,"date":"May 8 2019"},{"filename":"sample_size_policy.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/resize_policy","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2427,"date":"May 8 2019"},{"filename":".","parent":"/usr/include/c++/7/ext/pb_ds/detail/splay_tree_","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/c++/7/ext/pb_ds/detail/splay_tree_","flags":"drwxr-xr-x","links":25,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"constructors_destructor_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/splay_tree_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2847,"date":"May 8 2019"},{"filename":"debug_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/splay_tree_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2463,"date":"May 8 2019"},{"filename":"erase_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/splay_tree_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4269,"date":"May 8 2019"},{"filename":"find_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/splay_tree_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3319,"date":"May 8 2019"},{"filename":"info_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/splay_tree_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1689,"date":"May 8 2019"},{"filename":"insert_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/splay_tree_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3353,"date":"May 8 2019"},{"filename":"node.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/splay_tree_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3744,"date":"May 8 2019"},{"filename":"splay_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/splay_tree_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8049,"date":"May 8 2019"},{"filename":"splay_tree_.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/splay_tree_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9307,"date":"May 8 2019"},{"filename":"split_join_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/splay_tree_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3634,"date":"May 8 2019"},{"filename":"traits.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/splay_tree_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3351,"date":"May 8 2019"},{"filename":".","parent":"/usr/include/c++/7/ext/pb_ds/detail/thin_heap_","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/c++/7/ext/pb_ds/detail/thin_heap_","flags":"drwxr-xr-x","links":25,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"constructors_destructor_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/thin_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2946,"date":"May 8 2019"},{"filename":"debug_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/thin_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3866,"date":"May 8 2019"},{"filename":"erase_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/thin_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6055,"date":"May 8 2019"},{"filename":"find_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/thin_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1952,"date":"May 8 2019"},{"filename":"insert_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/thin_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7483,"date":"May 8 2019"},{"filename":"split_join_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/thin_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3155,"date":"May 8 2019"},{"filename":"thin_heap_.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/thin_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8404,"date":"May 8 2019"},{"filename":"trace_fn_imps.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/thin_heap_","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1962,"date":"May 8 2019"},{"filename":".","parent":"/usr/include/c++/7/ext/pb_ds/detail/tree_policy","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/c++/7/ext/pb_ds/detail/tree_policy","flags":"drwxr-xr-x","links":25,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"node_metadata_selector.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/tree_policy","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3338,"date":"May 8 2019"},{"filename":"order_statistics_imp.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/tree_policy","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3723,"date":"May 8 2019"},{"filename":"sample_tree_node_update.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/tree_policy","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2346,"date":"May 8 2019"},{"filename":".","parent":"/usr/include/c++/7/ext/pb_ds/detail/trie_policy","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/c++/7/ext/pb_ds/detail/trie_policy","flags":"drwxr-xr-x","links":25,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"node_metadata_selector.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/trie_policy","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3338,"date":"May 8 2019"},{"filename":"order_statistics_imp.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/trie_policy","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4701,"date":"May 8 2019"},{"filename":"prefix_search_node_update_imp.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/trie_policy","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4511,"date":"May 8 2019"},{"filename":"sample_trie_access_traits.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/trie_policy","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2713,"date":"May 8 2019"},{"filename":"sample_trie_node_update.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/trie_policy","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2348,"date":"May 8 2019"},{"filename":"trie_policy_base.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/trie_policy","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5847,"date":"May 8 2019"},{"filename":"trie_string_access_traits_imp.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/trie_policy","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3051,"date":"May 8 2019"},{"filename":".","parent":"/usr/include/c++/7/ext/pb_ds/detail/unordered_iterator","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/c++/7/ext/pb_ds/detail/unordered_iterator","flags":"drwxr-xr-x","links":25,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"const_iterator.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/unordered_iterator","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3345,"date":"May 8 2019"},{"filename":"iterator.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/unordered_iterator","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3797,"date":"May 8 2019"},{"filename":"point_const_iterator.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/unordered_iterator","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3806,"date":"May 8 2019"},{"filename":"point_iterator.hpp","parent":"/usr/include/c++/7/ext/pb_ds/detail/unordered_iterator","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3574,"date":"May 8 2019"},{"filename":".","parent":"/usr/include/c++/7/parallel","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/c++/7/parallel","flags":"drwxr-xr-x","links":12,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"algobase.h","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":17155,"date":"May 8 2019"},{"filename":"algo.h","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":80030,"date":"May 8 2019"},{"filename":"algorithm","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1381,"date":"May 8 2019"},{"filename":"algorithmfwd.h","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":32206,"date":"May 8 2019"},{"filename":"balanced_quicksort.h","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":16952,"date":"May 8 2019"},{"filename":"base.h","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":12373,"date":"May 8 2019"},{"filename":"basic_iterator.h","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1586,"date":"May 8 2019"},{"filename":"checkers.h","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2300,"date":"May 8 2019"},{"filename":"compatibility.h","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3790,"date":"May 8 2019"},{"filename":"compiletime_settings.h","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2871,"date":"May 8 2019"},{"filename":"equally_split.h","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3356,"date":"May 8 2019"},{"filename":"features.h","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3543,"date":"May 8 2019"},{"filename":"find.h","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":13591,"date":"May 8 2019"},{"filename":"find_selectors.h","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6992,"date":"May 8 2019"},{"filename":"for_each.h","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3947,"date":"May 8 2019"},{"filename":"for_each_selectors.h","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":10565,"date":"May 8 2019"},{"filename":"iterator.h","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5678,"date":"May 8 2019"},{"filename":"list_partition.h","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6542,"date":"May 8 2019"},{"filename":"losertree.h","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":28592,"date":"May 8 2019"},{"filename":"merge.h","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9578,"date":"May 8 2019"},{"filename":"multiseq_selection.h","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":22075,"date":"May 8 2019"},{"filename":"multiway_merge.h","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":70535,"date":"May 8 2019"},{"filename":"multiway_mergesort.h","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":15271,"date":"May 8 2019"},{"filename":"numeric","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":20717,"date":"May 8 2019"},{"filename":"numericfwd.h","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7500,"date":"May 8 2019"},{"filename":"omp_loop.h","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4031,"date":"May 8 2019"},{"filename":"omp_loop_static.h","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4104,"date":"May 8 2019"},{"filename":"parallel.h","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1576,"date":"May 8 2019"},{"filename":"par_loop.h","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4552,"date":"May 8 2019"},{"filename":"partial_sum.h","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7474,"date":"May 8 2019"},{"filename":"partition.h","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":14961,"date":"May 8 2019"},{"filename":"queue.h","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5542,"date":"May 8 2019"},{"filename":"quicksort.h","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6126,"date":"May 8 2019"},{"filename":"random_number.h","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4227,"date":"May 8 2019"},{"filename":"random_shuffle.h","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":18675,"date":"May 8 2019"},{"filename":"search.h","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5391,"date":"May 8 2019"},{"filename":"set_operations.h","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":14590,"date":"May 8 2019"},{"filename":"settings.h","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":12458,"date":"May 8 2019"},{"filename":"sort.h","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7709,"date":"May 8 2019"},{"filename":"tags.h","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5982,"date":"May 8 2019"},{"filename":"types.h","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3716,"date":"May 8 2019"},{"filename":"unique_copy.h","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6165,"date":"May 8 2019"},{"filename":"workstealing.h","parent":"/usr/include/c++/7/parallel","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9612,"date":"May 8 2019"},{"filename":".","parent":"/usr/include/c++/7/profile","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/c++/7/profile","flags":"drwxr-xr-x","links":12,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"array","parent":"/usr/include/c++/7/profile","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8796,"date":"May 8 2019"},{"filename":"base.h","parent":"/usr/include/c++/7/profile","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1709,"date":"May 8 2019"},{"filename":"bitset","parent":"/usr/include/c++/7/profile","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6607,"date":"May 8 2019"},{"filename":"deque","parent":"/usr/include/c++/7/profile","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5273,"date":"May 8 2019"},{"filename":"forward_list","parent":"/usr/include/c++/7/profile","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6390,"date":"May 8 2019"},{"filename":"impl","parent":"/usr/include/c++/7/profile","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"iterator_tracker.h","parent":"/usr/include/c++/7/profile","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9554,"date":"May 8 2019"},{"filename":"list","parent":"/usr/include/c++/7/profile","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":16862,"date":"May 8 2019"},{"filename":"map","parent":"/usr/include/c++/7/profile","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1246,"date":"May 8 2019"},{"filename":"map.h","parent":"/usr/include/c++/7/profile","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":20100,"date":"May 8 2019"},{"filename":"multimap.h","parent":"/usr/include/c++/7/profile","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":19334,"date":"May 8 2019"},{"filename":"multiset.h","parent":"/usr/include/c++/7/profile","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":18913,"date":"May 8 2019"},{"filename":"ordered_base.h","parent":"/usr/include/c++/7/profile","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2776,"date":"May 8 2019"},{"filename":"set","parent":"/usr/include/c++/7/profile","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1246,"date":"May 8 2019"},{"filename":"set.h","parent":"/usr/include/c++/7/profile","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":18121,"date":"May 8 2019"},{"filename":"unordered_base.h","parent":"/usr/include/c++/7/profile","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9116,"date":"May 8 2019"},{"filename":"unordered_map","parent":"/usr/include/c++/7/profile","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":17544,"date":"May 8 2019"},{"filename":"unordered_set","parent":"/usr/include/c++/7/profile","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":16291,"date":"May 8 2019"},{"filename":"vector","parent":"/usr/include/c++/7/profile","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":15882,"date":"May 8 2019"},{"filename":".","parent":"/usr/include/c++/7/profile/impl","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/c++/7/profile/impl","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"profiler_algos.h","parent":"/usr/include/c++/7/profile/impl","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3429,"date":"May 8 2019"},{"filename":"profiler_container_size.h","parent":"/usr/include/c++/7/profile/impl","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5403,"date":"May 8 2019"},{"filename":"profiler.h","parent":"/usr/include/c++/7/profile/impl","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":13924,"date":"May 8 2019"},{"filename":"profiler_hash_func.h","parent":"/usr/include/c++/7/profile/impl","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4412,"date":"May 8 2019"},{"filename":"profiler_hashtable_size.h","parent":"/usr/include/c++/7/profile/impl","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2982,"date":"May 8 2019"},{"filename":"profiler_list_to_slist.h","parent":"/usr/include/c++/7/profile/impl","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4438,"date":"May 8 2019"},{"filename":"profiler_list_to_vector.h","parent":"/usr/include/c++/7/profile/impl","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6843,"date":"May 8 2019"},{"filename":"profiler_map_to_unordered_map.h","parent":"/usr/include/c++/7/profile/impl","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7081,"date":"May 8 2019"},{"filename":"profiler_node.h","parent":"/usr/include/c++/7/profile/impl","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3801,"date":"May 8 2019"},{"filename":"profiler_state.h","parent":"/usr/include/c++/7/profile/impl","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2004,"date":"May 8 2019"},{"filename":"profiler_trace.h","parent":"/usr/include/c++/7/profile/impl","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":20875,"date":"May 8 2019"},{"filename":"profiler_vector_size.h","parent":"/usr/include/c++/7/profile/impl","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2928,"date":"May 8 2019"},{"filename":"profiler_vector_to_list.h","parent":"/usr/include/c++/7/profile/impl","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6877,"date":"May 8 2019"},{"filename":".","parent":"/usr/include/c++/7/tr1","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/c++/7/tr1","flags":"drwxr-xr-x","links":12,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"array","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6964,"date":"May 8 2019"},{"filename":"bessel_function.tcc","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":22477,"date":"May 8 2019"},{"filename":"beta_function.tcc","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5999,"date":"May 8 2019"},{"filename":"ccomplex","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1255,"date":"May 8 2019"},{"filename":"cctype","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1412,"date":"May 8 2019"},{"filename":"cfenv","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2004,"date":"May 8 2019"},{"filename":"cfloat","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1380,"date":"May 8 2019"},{"filename":"cinttypes","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2256,"date":"May 8 2019"},{"filename":"climits","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1454,"date":"May 8 2019"},{"filename":"cmath","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":43357,"date":"May 8 2019"},{"filename":"complex","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":12384,"date":"May 8 2019"},{"filename":"complex.h","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1261,"date":"May 8 2019"},{"filename":"cstdarg","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1246,"date":"May 8 2019"},{"filename":"cstdbool","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1344,"date":"May 8 2019"},{"filename":"cstdint","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2623,"date":"May 8 2019"},{"filename":"cstdio","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1482,"date":"May 8 2019"},{"filename":"cstdlib","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1796,"date":"May 8 2019"},{"filename":"ctgmath","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1248,"date":"May 8 2019"},{"filename":"ctime","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1234,"date":"May 8 2019"},{"filename":"ctype.h","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1209,"date":"May 8 2019"},{"filename":"cwchar","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1718,"date":"May 8 2019"},{"filename":"cwctype","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1459,"date":"May 8 2019"},{"filename":"ell_integral.tcc","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":27728,"date":"May 8 2019"},{"filename":"exp_integral.tcc","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":16013,"date":"May 8 2019"},{"filename":"fenv.h","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1204,"date":"May 8 2019"},{"filename":"float.h","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1209,"date":"May 8 2019"},{"filename":"functional","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":70799,"date":"May 8 2019"},{"filename":"functional_hash.h","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6043,"date":"May 8 2019"},{"filename":"gamma.tcc","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":14686,"date":"May 8 2019"},{"filename":"hashtable.h","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":41537,"date":"May 8 2019"},{"filename":"hashtable_policy.h","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":25085,"date":"May 8 2019"},{"filename":"hypergeometric.tcc","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":28070,"date":"May 8 2019"},{"filename":"inttypes.h","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1267,"date":"May 8 2019"},{"filename":"legendre_function.tcc","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":10913,"date":"May 8 2019"},{"filename":"limits.h","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1214,"date":"May 8 2019"},{"filename":"math.h","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4553,"date":"May 8 2019"},{"filename":"memory","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1791,"date":"May 8 2019"},{"filename":"modified_bessel_func.tcc","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":15926,"date":"May 8 2019"},{"filename":"poly_hermite.tcc","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3929,"date":"May 8 2019"},{"filename":"poly_laguerre.tcc","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":11680,"date":"May 8 2019"},{"filename":"random","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1589,"date":"May 8 2019"},{"filename":"random.h","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":73193,"date":"May 8 2019"},{"filename":"random.tcc","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":53996,"date":"May 8 2019"},{"filename":"regex","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":92945,"date":"May 8 2019"},{"filename":"riemann_zeta.tcc","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":14067,"date":"May 8 2019"},{"filename":"shared_ptr.h","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":32608,"date":"May 8 2019"},{"filename":"special_function_util.h","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5059,"date":"May 8 2019"},{"filename":"stdarg.h","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1214,"date":"May 8 2019"},{"filename":"stdbool.h","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1219,"date":"May 8 2019"},{"filename":"stdint.h","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1214,"date":"May 8 2019"},{"filename":"stdio.h","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1209,"date":"May 8 2019"},{"filename":"stdlib.h","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1487,"date":"May 8 2019"},{"filename":"tgmath.h","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1255,"date":"May 8 2019"},{"filename":"tuple","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":12119,"date":"May 8 2019"},{"filename":"type_traits","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":19019,"date":"May 8 2019"},{"filename":"unordered_map","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1574,"date":"May 8 2019"},{"filename":"unordered_map.h","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":10216,"date":"May 8 2019"},{"filename":"unordered_set","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1574,"date":"May 8 2019"},{"filename":"unordered_set.h","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9540,"date":"May 8 2019"},{"filename":"utility","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3225,"date":"May 8 2019"},{"filename":"wchar.h","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1249,"date":"May 8 2019"},{"filename":"wctype.h","parent":"/usr/include/c++/7/tr1","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1255,"date":"May 8 2019"},{"filename":".","parent":"/usr/include/c++/7/tr2","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/c++/7/tr2","flags":"drwxr-xr-x","links":12,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"bool_set","parent":"/usr/include/c++/7/tr2","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7370,"date":"May 8 2019"},{"filename":"bool_set.tcc","parent":"/usr/include/c++/7/tr2","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8319,"date":"May 8 2019"},{"filename":"dynamic_bitset","parent":"/usr/include/c++/7/tr2","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":34144,"date":"May 8 2019"},{"filename":"dynamic_bitset.tcc","parent":"/usr/include/c++/7/tr2","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8925,"date":"May 8 2019"},{"filename":"ratio","parent":"/usr/include/c++/7/tr2","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2130,"date":"May 8 2019"},{"filename":"type_traits","parent":"/usr/include/c++/7/tr2","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2699,"date":"May 8 2019"},{"filename":".","parent":"/usr/include/drm","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"..","parent":"/usr/include/drm","flags":"drwxr-xr-x","links":34,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"amdgpu_drm.h","parent":"/usr/include/drm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":26729,"date":"Jan 17 13:59"},{"filename":"armada_drm.h","parent":"/usr/include/drm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1212,"date":"Jan 17 13:59"},{"filename":"drm_fourcc.h","parent":"/usr/include/drm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":18067,"date":"Jan 17 13:59"},{"filename":"drm.h","parent":"/usr/include/drm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":30656,"date":"Jan 17 13:59"},{"filename":"drm_mode.h","parent":"/usr/include/drm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":22905,"date":"Jan 17 13:59"},{"filename":"drm_sarea.h","parent":"/usr/include/drm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2782,"date":"Jan 17 13:59"},{"filename":"etnaviv_drm.h","parent":"/usr/include/drm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":11005,"date":"Jan 17 13:59"},{"filename":"exynos_drm.h","parent":"/usr/include/drm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8954,"date":"Jan 17 13:59"},{"filename":"i810_drm.h","parent":"/usr/include/drm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":10061,"date":"Jan 17 13:59"},{"filename":"i915_drm.h","parent":"/usr/include/drm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":50833,"date":"Jan 17 13:59"},{"filename":"mga_drm.h","parent":"/usr/include/drm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":13010,"date":"Jan 17 13:59"},{"filename":"msm_drm.h","parent":"/usr/include/drm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":11997,"date":"Jan 17 13:59"},{"filename":"nouveau_drm.h","parent":"/usr/include/drm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4847,"date":"Jan 17 13:59"},{"filename":"omap_drm.h","parent":"/usr/include/drm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4141,"date":"Jan 17 13:59"},{"filename":"qxl_drm.h","parent":"/usr/include/drm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4131,"date":"Jan 17 13:59"},{"filename":"r128_drm.h","parent":"/usr/include/drm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":10000,"date":"Jan 17 13:59"},{"filename":"radeon_drm.h","parent":"/usr/include/drm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":38236,"date":"Jan 17 13:59"},{"filename":"savage_drm.h","parent":"/usr/include/drm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7170,"date":"Jan 17 13:59"},{"filename":"sis_drm.h","parent":"/usr/include/drm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2637,"date":"Jan 17 13:59"},{"filename":"tegra_drm.h","parent":"/usr/include/drm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5597,"date":"Jan 17 13:59"},{"filename":"vc4_drm.h","parent":"/usr/include/drm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":11472,"date":"Jan 17 13:59"},{"filename":"vgem_drm.h","parent":"/usr/include/drm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1971,"date":"Jan 17 13:59"},{"filename":"via_drm.h","parent":"/usr/include/drm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8345,"date":"Jan 17 13:59"},{"filename":"virtgpu_drm.h","parent":"/usr/include/drm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4777,"date":"Jan 17 13:59"},{"filename":"vmwgfx_drm.h","parent":"/usr/include/drm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":32084,"date":"Jan 17 13:59"},{"filename":".","parent":"/usr/include/linux","flags":"drwxr-xr-x","links":28,"owner":"root","group":"root","size":69632,"date":"Feb 5 06:03"},{"filename":"..","parent":"/usr/include/linux","flags":"drwxr-xr-x","links":34,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"acct.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3733,"date":"Jan 17 13:59"},{"filename":"adb.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1140,"date":"Jan 17 13:59"},{"filename":"adfs_fs.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":936,"date":"Jan 17 13:59"},{"filename":"affs_hardblocks.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1544,"date":"Jan 17 13:59"},{"filename":"agpgart.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3940,"date":"Jan 17 13:59"},{"filename":"aio_abi.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3276,"date":"Jan 17 13:59"},{"filename":"am437x-vpfe.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3681,"date":"Jan 17 13:59"},{"filename":"android","parent":"/usr/include/linux","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"a.out.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6892,"date":"Jan 17 13:59"},{"filename":"apm_bios.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3683,"date":"Jan 17 13:59"},{"filename":"arcfb.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":213,"date":"Jan 17 13:59"},{"filename":"arm_sdei.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2751,"date":"Jan 17 13:59"},{"filename":"aspeed-lpc-ctrl.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1780,"date":"Jan 17 13:59"},{"filename":"atalk.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1023,"date":"Jan 17 13:59"},{"filename":"atmapi.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":952,"date":"Jan 17 13:59"},{"filename":"atmarp.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1296,"date":"Jan 17 13:59"},{"filename":"atmbr2684.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3271,"date":"Jan 17 13:59"},{"filename":"atmclip.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":576,"date":"Jan 17 13:59"},{"filename":"atmdev.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7677,"date":"Jan 17 13:59"},{"filename":"atm_eni.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":648,"date":"Jan 17 13:59"},{"filename":"atm.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7888,"date":"Jan 17 13:59"},{"filename":"atm_he.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":406,"date":"Jan 17 13:59"},{"filename":"atm_idt77105.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":955,"date":"Jan 17 13:59"},{"filename":"atmioc.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1646,"date":"Jan 17 13:59"},{"filename":"atmlec.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2381,"date":"Jan 17 13:59"},{"filename":"atmmpc.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4226,"date":"Jan 17 13:59"},{"filename":"atm_nicstar.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1278,"date":"Jan 17 13:59"},{"filename":"atmppp.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":639,"date":"Jan 17 13:59"},{"filename":"atmsap.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4970,"date":"Jan 17 13:59"},{"filename":"atmsvc.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1853,"date":"Jan 17 13:59"},{"filename":"atm_tcp.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1622,"date":"Jan 17 13:59"},{"filename":"atm_zatm.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1540,"date":"Jan 17 13:59"},{"filename":"audit.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":19552,"date":"Jan 17 13:59"},{"filename":"aufs_type.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":11370,"date":"Jan 17 13:59"},{"filename":"auto_dev-ioctl.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4986,"date":"Jan 17 13:59"},{"filename":"auto_fs4.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4275,"date":"Jan 17 13:59"},{"filename":"auto_fs.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2658,"date":"Jan 17 13:59"},{"filename":"auxvec.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1496,"date":"Jan 17 13:59"},{"filename":"ax25.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2824,"date":"Jan 17 13:59"},{"filename":"b1lli.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1717,"date":"Jan 17 13:59"},{"filename":"batman_adv.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9447,"date":"Jan 17 13:59"},{"filename":"baycom.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":883,"date":"Jan 17 13:59"},{"filename":"bcache.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8366,"date":"Jan 17 13:59"},{"filename":"bcm933xx_hcs.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":419,"date":"Jan 17 13:59"},{"filename":"bfs_fs.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1893,"date":"Jan 17 13:59"},{"filename":"binfmts.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":628,"date":"Jan 17 13:59"},{"filename":"blkpg.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1634,"date":"Jan 17 13:59"},{"filename":"blktrace_api.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4702,"date":"Jan 17 13:59"},{"filename":"blkzoned.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5168,"date":"Jan 17 13:59"},{"filename":"bpf_common.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1293,"date":"Jan 17 13:59"},{"filename":"bpf.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":31050,"date":"Jan 17 13:59"},{"filename":"bpf_perf_event.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":516,"date":"Jan 17 13:59"},{"filename":"bpqether.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":981,"date":"Jan 17 13:59"},{"filename":"bsg.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2494,"date":"Jan 17 13:59"},{"filename":"bt-bmc.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":572,"date":"Jan 17 13:59"},{"filename":"btrfs.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":26368,"date":"Jan 17 13:59"},{"filename":"btrfs_tree.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":25233,"date":"Jan 17 13:59"},{"filename":"byteorder","parent":"/usr/include/linux","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"caif","parent":"/usr/include/linux","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"can","parent":"/usr/include/linux","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"can.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7881,"date":"Jan 17 13:59"},{"filename":"capability.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":11780,"date":"Jan 17 13:59"},{"filename":"capi.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3124,"date":"Jan 17 13:59"},{"filename":"cciss_defs.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3281,"date":"Jan 17 13:59"},{"filename":"cciss_ioctl.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2761,"date":"Jan 17 13:59"},{"filename":"cdrom.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":28859,"date":"Jan 17 13:59"},{"filename":"cec-funcs.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":55019,"date":"Jan 17 13:59"},{"filename":"cec.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":37654,"date":"Jan 17 13:59"},{"filename":"cgroupstats.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2219,"date":"Jan 17 13:59"},{"filename":"chio.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5344,"date":"Jan 17 13:59"},{"filename":"cifs","parent":"/usr/include/linux","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"cm4000_cs.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1806,"date":"Jan 17 13:59"},{"filename":"cn_proc.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3334,"date":"Jan 17 13:59"},{"filename":"coda.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":17505,"date":"Jan 17 13:59"},{"filename":"coda_psdev.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":360,"date":"Jan 17 13:59"},{"filename":"coff.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":12476,"date":"Jan 17 13:59"},{"filename":"connector.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2253,"date":"Jan 17 13:59"},{"filename":"const.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":736,"date":"Jan 17 13:59"},{"filename":"coresight-stm.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":674,"date":"Jan 17 13:59"},{"filename":"cramfs_fs.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3555,"date":"Jan 17 13:59"},{"filename":"cryptouser.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3392,"date":"Jan 17 13:59"},{"filename":"cuda.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":905,"date":"Jan 17 13:59"},{"filename":"cyclades.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":17108,"date":"Jan 17 13:59"},{"filename":"cycx_cfm.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2990,"date":"Jan 17 13:59"},{"filename":"dcbnl.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":24954,"date":"Jan 17 13:59"},{"filename":"dccp.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6436,"date":"Jan 17 13:59"},{"filename":"devlink.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7324,"date":"Jan 17 13:59"},{"filename":"dlmconstants.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5080,"date":"Jan 17 13:59"},{"filename":"dlm_device.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2543,"date":"Jan 17 13:59"},{"filename":"dlm.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2553,"date":"Jan 17 13:59"},{"filename":"dlm_netlink.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1159,"date":"Jan 17 13:59"},{"filename":"dlm_plock.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":894,"date":"Jan 17 13:59"},{"filename":"dma-buf.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1358,"date":"Jan 17 13:59"},{"filename":"dm-ioctl.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":10870,"date":"Jan 17 13:59"},{"filename":"dm-log-userspace.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":15191,"date":"Jan 17 13:59"},{"filename":"dn.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4642,"date":"Jan 17 13:59"},{"filename":"dqblk_xfs.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8999,"date":"Jan 17 13:59"},{"filename":"dvb","parent":"/usr/include/linux","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"edd.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5604,"date":"Jan 17 13:59"},{"filename":"efs_fs_sb.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2227,"date":"Jan 17 13:59"},{"filename":"elfcore.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2995,"date":"Jan 17 13:59"},{"filename":"elf-em.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2187,"date":"Jan 17 13:59"},{"filename":"elf-fdpic.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1124,"date":"Jan 17 13:59"},{"filename":"elf.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":13298,"date":"Jan 17 13:59"},{"filename":"errno.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":23,"date":"Jan 17 13:59"},{"filename":"errqueue.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1369,"date":"Jan 17 13:59"},{"filename":"ethtool.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":71485,"date":"Jan 17 13:59"},{"filename":"eventpoll.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2542,"date":"Jan 17 13:59"},{"filename":"fadvise.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":842,"date":"Jan 17 13:59"},{"filename":"falloc.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3584,"date":"Jan 17 13:59"},{"filename":"fanotify.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3672,"date":"Jan 17 13:59"},{"filename":"fb.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":16446,"date":"Jan 17 13:59"},{"filename":"fcntl.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3297,"date":"Jan 17 13:59"},{"filename":"fd.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":11672,"date":"Jan 17 13:59"},{"filename":"fdreg.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5420,"date":"Jan 17 13:59"},{"filename":"fib_rules.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1837,"date":"Jan 17 13:59"},{"filename":"fiemap.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2775,"date":"Jan 17 13:59"},{"filename":"filter.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2216,"date":"Jan 17 13:59"},{"filename":"firewire-cdev.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":43886,"date":"Jan 17 13:59"},{"filename":"firewire-constants.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3231,"date":"Jan 17 13:59"},{"filename":"flat.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2148,"date":"Jan 17 13:59"},{"filename":"fou.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":694,"date":"Jan 17 13:59"},{"filename":"fs.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":14818,"date":"Jan 17 13:59"},{"filename":"fsl_hypervisor.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7301,"date":"Jan 17 13:59"},{"filename":"fsmap.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4393,"date":"Jan 17 13:59"},{"filename":"fuse.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":17468,"date":"Jan 17 13:59"},{"filename":"futex.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4993,"date":"Jan 17 13:59"},{"filename":"gameport.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":897,"date":"Jan 17 13:59"},{"filename":"genetlink.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1923,"date":"Jan 17 13:59"},{"filename":"gen_stats.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1578,"date":"Jan 17 13:59"},{"filename":"genwqe","parent":"/usr/include/linux","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"gfs2_ondisk.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":12355,"date":"Jan 17 13:59"},{"filename":"gigaset_dev.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1442,"date":"Jan 17 13:59"},{"filename":"gpio.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5750,"date":"Jan 17 13:59"},{"filename":"gsmmux.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1041,"date":"Jan 17 13:59"},{"filename":"gtp.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":681,"date":"Jan 17 13:59"},{"filename":"hash_info.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":921,"date":"Jan 17 13:59"},{"filename":"hdlc","parent":"/usr/include/linux","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"hdlcdrv.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2908,"date":"Jan 17 13:59"},{"filename":"hdlc.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":637,"date":"Jan 17 13:59"},{"filename":"hdreg.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":22703,"date":"Jan 17 13:59"},{"filename":"hiddev.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6345,"date":"Jan 17 13:59"},{"filename":"hid.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1901,"date":"Jan 17 13:59"},{"filename":"hidraw.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1511,"date":"Jan 17 13:59"},{"filename":"hpet.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":743,"date":"Jan 17 13:59"},{"filename":"hsi","parent":"/usr/include/linux","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"hsr_netlink.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1081,"date":"Jan 17 13:59"},{"filename":"hw_breakpoint.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":742,"date":"Jan 17 13:59"},{"filename":"hyperv.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":10569,"date":"Jan 17 13:59"},{"filename":"hysdn_if.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1382,"date":"Jan 17 13:59"},{"filename":"i2c-dev.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2612,"date":"Jan 17 13:59"},{"filename":"i2c.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7132,"date":"Jan 17 13:59"},{"filename":"i2o-dev.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":11555,"date":"Jan 17 13:59"},{"filename":"i8k.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1528,"date":"Jan 17 13:59"},{"filename":"icmp.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2975,"date":"Jan 17 13:59"},{"filename":"icmpv6.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3977,"date":"Jan 17 13:59"},{"filename":"if_addr.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1802,"date":"Jan 17 13:59"},{"filename":"if_addrlabel.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":721,"date":"Jan 17 13:59"},{"filename":"if_alg.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":946,"date":"Jan 17 13:59"},{"filename":"if_arcnet.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3717,"date":"Jan 17 13:59"},{"filename":"if_arp.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6577,"date":"Jan 17 13:59"},{"filename":"if_bonding.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4268,"date":"Jan 17 13:59"},{"filename":"if_bridge.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6709,"date":"Jan 17 13:59"},{"filename":"if_cablemodem.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":986,"date":"Jan 17 13:59"},{"filename":"ife.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":351,"date":"Jan 17 13:59"},{"filename":"if_eql.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1349,"date":"Jan 17 13:59"},{"filename":"if_ether.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7940,"date":"Jan 17 13:59"},{"filename":"if_fc.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1738,"date":"Jan 17 13:59"},{"filename":"if_fddi.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3748,"date":"Jan 17 13:59"},{"filename":"if_frad.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3019,"date":"Jan 17 13:59"},{"filename":"if.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":10813,"date":"Jan 17 13:59"},{"filename":"if_hippi.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4235,"date":"Jan 17 13:59"},{"filename":"if_infiniband.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1245,"date":"Jan 17 13:59"},{"filename":"if_link.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":21954,"date":"Jan 17 13:59"},{"filename":"if_ltalk.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":210,"date":"Jan 17 13:59"},{"filename":"if_macsec.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5616,"date":"Jan 17 13:59"},{"filename":"if_packet.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7919,"date":"Jan 17 13:59"},{"filename":"if_phonet.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":424,"date":"Jan 17 13:59"},{"filename":"if_plip.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":660,"date":"Jan 17 13:59"},{"filename":"if_ppp.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":29,"date":"Jan 17 13:59"},{"filename":"if_pppol2tp.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3292,"date":"Jan 17 13:59"},{"filename":"if_pppox.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4879,"date":"Jan 17 13:59"},{"filename":"if_slip.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":872,"date":"Jan 17 13:59"},{"filename":"if_team.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2600,"date":"Jan 17 13:59"},{"filename":"if_tun.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3969,"date":"Jan 17 13:59"},{"filename":"if_tunnel.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4005,"date":"Jan 17 13:59"},{"filename":"if_vlan.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1793,"date":"Jan 17 13:59"},{"filename":"if_x25.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":881,"date":"Jan 17 13:59"},{"filename":"igmp.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3014,"date":"Jan 17 13:59"},{"filename":"iio","parent":"/usr/include/linux","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"ila.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1230,"date":"Jan 17 13:59"},{"filename":"in6.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7438,"date":"Jan 17 13:59"},{"filename":"inet_diag.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4330,"date":"Jan 17 13:59"},{"filename":"in.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9698,"date":"Jan 17 13:59"},{"filename":"inotify.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2977,"date":"Jan 17 13:59"},{"filename":"input-event-codes.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":24567,"date":"Jan 17 13:59"},{"filename":"input.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":15454,"date":"Jan 17 13:59"},{"filename":"in_route.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":936,"date":"Jan 17 13:59"},{"filename":"ioctl.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":163,"date":"Jan 17 13:59"},{"filename":"ip6_tunnel.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1953,"date":"Jan 17 13:59"},{"filename":"ipc.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2101,"date":"Jan 17 13:59"},{"filename":"ip.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4699,"date":"Jan 17 13:59"},{"filename":"ipmi.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":16240,"date":"Jan 17 13:59"},{"filename":"ipmi_msgdefs.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4541,"date":"Jan 17 13:59"},{"filename":"ipsec.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":947,"date":"Jan 17 13:59"},{"filename":"ipv6.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3967,"date":"Jan 17 13:59"},{"filename":"ipv6_route.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1908,"date":"Jan 17 13:59"},{"filename":"ip_vs.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":13631,"date":"Jan 17 13:59"},{"filename":"ipx.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2347,"date":"Jan 17 13:59"},{"filename":"irda.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7554,"date":"Jan 17 13:59"},{"filename":"irqnr.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":104,"date":"Jan 17 13:59"},{"filename":"isdn","parent":"/usr/include/linux","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"isdn_divertif.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1200,"date":"Jan 17 13:59"},{"filename":"isdn.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5774,"date":"Jan 17 13:59"},{"filename":"isdnif.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2370,"date":"Jan 17 13:59"},{"filename":"isdn_ppp.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1923,"date":"Jan 17 13:59"},{"filename":"iso_fs.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6485,"date":"Jan 17 13:59"},{"filename":"ivtvfb.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1207,"date":"Jan 17 13:59"},{"filename":"ivtv.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3022,"date":"Jan 17 13:59"},{"filename":"ixjuser.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":25181,"date":"Jan 17 13:59"},{"filename":"jffs2.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7018,"date":"Jan 17 13:59"},{"filename":"joystick.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3645,"date":"Jan 17 13:59"},{"filename":"kcm.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":822,"date":"Jan 17 13:59"},{"filename":"kcmp.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":522,"date":"Jan 17 13:59"},{"filename":"kcov.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1099,"date":"Jan 17 13:59"},{"filename":"kdev_t.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":383,"date":"Jan 17 13:59"},{"filename":"kd.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6283,"date":"Jan 17 13:59"},{"filename":"kernelcapi.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1019,"date":"Jan 17 13:59"},{"filename":"kernel.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":438,"date":"Jan 17 13:59"},{"filename":"kernel-page-flags.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":877,"date":"Jan 17 13:59"},{"filename":"kexec.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1835,"date":"Jan 17 13:59"},{"filename":"keyboard.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":12783,"date":"Jan 17 13:59"},{"filename":"keyctl.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3555,"date":"Jan 17 13:59"},{"filename":"kfd_ioctl.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9591,"date":"Jan 17 13:59"},{"filename":"kvm.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":41076,"date":"Jan 17 13:59"},{"filename":"kvm_para.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":882,"date":"Jan 17 13:59"},{"filename":"l2tp.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5635,"date":"Jan 17 13:59"},{"filename":"libc-compat.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8289,"date":"Jan 17 13:59"},{"filename":"lightnvm.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4877,"date":"Jan 17 13:59"},{"filename":"limits.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":937,"date":"Jan 17 13:59"},{"filename":"lirc.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5062,"date":"Jan 17 13:59"},{"filename":"llc.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3164,"date":"Jan 17 13:59"},{"filename":"loop.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2520,"date":"Jan 17 13:59"},{"filename":"lp.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3875,"date":"Jan 17 13:59"},{"filename":"lwtunnel.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1273,"date":"Jan 17 13:59"},{"filename":"magic.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3401,"date":"Jan 17 13:59"},{"filename":"major.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4713,"date":"Jan 17 13:59"},{"filename":"map_to_7segment.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7251,"date":"Jan 17 13:59"},{"filename":"matroxfb.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1464,"date":"Jan 17 13:59"},{"filename":"max2175.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1035,"date":"Jan 17 13:59"},{"filename":"mdio.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":14131,"date":"Jan 17 13:59"},{"filename":"media-bus-format.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6411,"date":"Jan 17 13:59"},{"filename":"media.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":12534,"date":"Jan 17 13:59"},{"filename":"mei.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4815,"date":"Jan 17 13:59"},{"filename":"membarrier.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4221,"date":"Jan 17 13:59"},{"filename":"memfd.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1228,"date":"Jan 17 13:59"},{"filename":"mempolicy.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2154,"date":"Jan 17 13:59"},{"filename":"meye.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2529,"date":"Jan 17 13:59"},{"filename":"mic_common.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6519,"date":"Jan 17 13:59"},{"filename":"mic_ioctl.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2252,"date":"Jan 17 13:59"},{"filename":"mii.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8076,"date":"Jan 17 13:59"},{"filename":"minix_fs.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2122,"date":"Jan 17 13:59"},{"filename":"mman.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1242,"date":"Jan 17 13:59"},{"filename":"mmc","parent":"/usr/include/linux","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"mmtimer.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2117,"date":"Jan 17 13:59"},{"filename":"module.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":255,"date":"Jan 17 13:59"},{"filename":"mpls.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2302,"date":"Jan 17 13:59"},{"filename":"mpls_iptunnel.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":761,"date":"Jan 17 13:59"},{"filename":"mqueue.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2201,"date":"Jan 17 13:59"},{"filename":"mroute6.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4577,"date":"Jan 17 13:59"},{"filename":"mroute.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5427,"date":"Jan 17 13:59"},{"filename":"msdos_fs.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6936,"date":"Jan 17 13:59"},{"filename":"msg.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3350,"date":"Jan 17 13:59"},{"filename":"mtio.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8175,"date":"Jan 17 13:59"},{"filename":"nbd.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3024,"date":"Jan 17 13:59"},{"filename":"nbd-netlink.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2378,"date":"Jan 17 13:59"},{"filename":"ncp_fs.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3416,"date":"Jan 17 13:59"},{"filename":"ncp.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5118,"date":"Jan 17 13:59"},{"filename":"ncp_mount.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2174,"date":"Jan 17 13:59"},{"filename":"ncp_no.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":714,"date":"Jan 17 13:59"},{"filename":"ndctl.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8142,"date":"Jan 17 13:59"},{"filename":"neighbour.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4340,"date":"Jan 17 13:59"},{"filename":"netconf.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":589,"date":"Jan 17 13:59"},{"filename":"netdevice.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2253,"date":"Jan 17 13:59"},{"filename":"net_dropmon.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1154,"date":"Jan 17 13:59"},{"filename":"netfilter","parent":"/usr/include/linux","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":12288,"date":"Feb 5 06:03"},{"filename":"netfilter_arp","parent":"/usr/include/linux","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"netfilter_arp.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":444,"date":"Jan 17 13:59"},{"filename":"netfilter_bridge","parent":"/usr/include/linux","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"netfilter_bridge.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":901,"date":"Jan 17 13:59"},{"filename":"netfilter_decnet.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1935,"date":"Jan 17 13:59"},{"filename":"netfilter.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1820,"date":"Jan 17 13:59"},{"filename":"netfilter_ipv4","parent":"/usr/include/linux","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"netfilter_ipv4.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2132,"date":"Jan 17 13:59"},{"filename":"netfilter_ipv6","parent":"/usr/include/linux","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"netfilter_ipv6.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2151,"date":"Jan 17 13:59"},{"filename":"net.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2085,"date":"Jan 17 13:59"},{"filename":"netlink_diag.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1524,"date":"Jan 17 13:59"},{"filename":"netlink.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7790,"date":"Jan 17 13:59"},{"filename":"net_namespace.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":672,"date":"Jan 17 13:59"},{"filename":"netrom.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":807,"date":"Jan 17 13:59"},{"filename":"net_tstamp.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4435,"date":"Jan 17 13:59"},{"filename":"nfc.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":11209,"date":"Jan 17 13:59"},{"filename":"nfs2.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1468,"date":"Jan 17 13:59"},{"filename":"nfs3.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2359,"date":"Jan 17 13:59"},{"filename":"nfs4.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6338,"date":"Jan 17 13:59"},{"filename":"nfs4_mount.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1932,"date":"Jan 17 13:59"},{"filename":"nfsacl.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":668,"date":"Jan 17 13:59"},{"filename":"nfsd","parent":"/usr/include/linux","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"nfs_fs.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1608,"date":"Jan 17 13:59"},{"filename":"nfs.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4472,"date":"Jan 17 13:59"},{"filename":"nfs_idmap.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2243,"date":"Jan 17 13:59"},{"filename":"nfs_mount.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2438,"date":"Jan 17 13:59"},{"filename":"nilfs2_api.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7589,"date":"Jan 17 13:59"},{"filename":"nilfs2_ondisk.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":18085,"date":"Jan 17 13:59"},{"filename":"nl80211.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":234260,"date":"Jan 17 13:59"},{"filename":"n_r3964.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2410,"date":"Jan 17 13:59"},{"filename":"nsfs.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":639,"date":"Jan 17 13:59"},{"filename":"nubus.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8574,"date":"Jan 17 13:59"},{"filename":"nvme_ioctl.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1648,"date":"Jan 17 13:59"},{"filename":"nvram.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":532,"date":"Jan 17 13:59"},{"filename":"omap3isp.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":20740,"date":"Jan 17 13:59"},{"filename":"omapfb.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5918,"date":"Jan 17 13:59"},{"filename":"oom.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":511,"date":"Jan 17 13:59"},{"filename":"openvswitch.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":35305,"date":"Jan 17 13:59"},{"filename":"packet_diag.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1672,"date":"Jan 17 13:59"},{"filename":"param.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":141,"date":"Jan 17 13:59"},{"filename":"parport.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3644,"date":"Jan 17 13:59"},{"filename":"patchkey.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":892,"date":"Jan 17 13:59"},{"filename":"pci.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1380,"date":"Jan 17 13:59"},{"filename":"pci_regs.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":54036,"date":"Jan 17 13:59"},{"filename":"pcitest.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":579,"date":"Jan 17 13:59"},{"filename":"perf_event.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":31522,"date":"Jan 17 13:59"},{"filename":"personality.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2097,"date":"Jan 17 13:59"},{"filename":"pfkeyv2.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":10569,"date":"Jan 17 13:59"},{"filename":"pg.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2346,"date":"Jan 17 13:59"},{"filename":"phantom.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1654,"date":"Jan 17 13:59"},{"filename":"phonet.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4677,"date":"Jan 17 13:59"},{"filename":"pktcdvd.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2687,"date":"Jan 17 13:59"},{"filename":"pkt_cls.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":12006,"date":"Jan 17 13:59"},{"filename":"pkt_sched.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":21365,"date":"Jan 17 13:59"},{"filename":"pmu.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5319,"date":"Jan 17 13:59"},{"filename":"poll.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":22,"date":"Jan 17 13:59"},{"filename":"posix_acl.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1254,"date":"Jan 17 13:59"},{"filename":"posix_acl_xattr.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1115,"date":"Jan 17 13:59"},{"filename":"posix_types.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1098,"date":"Jan 17 13:59"},{"filename":"ppdev.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3211,"date":"Jan 17 13:59"},{"filename":"ppp-comp.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2527,"date":"Jan 17 13:59"},{"filename":"ppp_defs.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5107,"date":"Jan 17 13:59"},{"filename":"ppp-ioctl.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5480,"date":"Jan 17 13:59"},{"filename":"pps.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4734,"date":"Jan 17 13:59"},{"filename":"prctl.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7919,"date":"Jan 17 13:59"},{"filename":"pr.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1073,"date":"Jan 17 13:59"},{"filename":"psample.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":798,"date":"Jan 17 13:59"},{"filename":"psci.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4055,"date":"Jan 17 13:59"},{"filename":"ptp_clock.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4868,"date":"Jan 17 13:59"},{"filename":"ptrace.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3337,"date":"Jan 17 13:59"},{"filename":"qnx4_fs.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2328,"date":"Jan 17 13:59"},{"filename":"qnxtypes.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":624,"date":"Jan 17 13:59"},{"filename":"qrtr.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":893,"date":"Jan 17 13:59"},{"filename":"quota.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6291,"date":"Jan 17 13:59"},{"filename":"radeonfb.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":360,"date":"Jan 17 13:59"},{"filename":"raid","parent":"/usr/include/linux","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"random.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1370,"date":"Jan 17 13:59"},{"filename":"raw.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":365,"date":"Jan 17 13:59"},{"filename":"rds.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9126,"date":"Jan 17 13:59"},{"filename":"reboot.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1343,"date":"Jan 17 13:59"},{"filename":"reiserfs_fs.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":775,"date":"Jan 17 13:59"},{"filename":"reiserfs_xattr.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":533,"date":"Jan 17 13:59"},{"filename":"resource.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2347,"date":"Jan 17 13:59"},{"filename":"rfkill.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3682,"date":"Jan 17 13:59"},{"filename":"rio_cm_cdev.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3248,"date":"Jan 17 13:59"},{"filename":"rio_mport_cdev.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9330,"date":"Jan 17 13:59"},{"filename":"romfs_fs.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1238,"date":"Jan 17 13:59"},{"filename":"rose.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2232,"date":"Jan 17 13:59"},{"filename":"route.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2332,"date":"Jan 17 13:59"},{"filename":"rpmsg.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1002,"date":"Jan 17 13:59"},{"filename":"rtc.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4009,"date":"Jan 17 13:59"},{"filename":"rtnetlink.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":17991,"date":"Jan 17 13:59"},{"filename":"rxrpc.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5080,"date":"Jan 17 13:59"},{"filename":"scc.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4597,"date":"Jan 17 13:59"},{"filename":"sched","parent":"/usr/include/linux","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"sched.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2341,"date":"Jan 17 13:59"},{"filename":"scif_ioctl.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6382,"date":"Jan 17 13:59"},{"filename":"screen_info.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2479,"date":"Jan 17 13:59"},{"filename":"sctp.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":32735,"date":"Jan 17 13:59"},{"filename":"sdla.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2839,"date":"Jan 17 13:59"},{"filename":"seccomp.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2257,"date":"Jan 17 13:59"},{"filename":"securebits.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2704,"date":"Jan 17 13:59"},{"filename":"sed-opal.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3275,"date":"Jan 17 13:59"},{"filename":"seg6_genl.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":589,"date":"Jan 17 13:59"},{"filename":"seg6.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1170,"date":"Jan 17 13:59"},{"filename":"seg6_hmac.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":423,"date":"Jan 17 13:59"},{"filename":"seg6_iptunnel.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":927,"date":"Jan 17 13:59"},{"filename":"seg6_local.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1803,"date":"Jan 17 13:59"},{"filename":"selinux_netlink.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1195,"date":"Jan 17 13:59"},{"filename":"sem.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3019,"date":"Jan 17 13:59"},{"filename":"serial_core.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6245,"date":"Jan 17 13:59"},{"filename":"serial.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3421,"date":"Jan 17 13:59"},{"filename":"serial_reg.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":15496,"date":"Jan 17 13:59"},{"filename":"serio.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2037,"date":"Jan 17 13:59"},{"filename":"shm.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3664,"date":"Jan 17 13:59"},{"filename":"signalfd.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1159,"date":"Jan 17 13:59"},{"filename":"signal.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":388,"date":"Jan 17 13:59"},{"filename":"smc_diag.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2268,"date":"Jan 17 13:59"},{"filename":"smc.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":780,"date":"Jan 17 13:59"},{"filename":"smiapp.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1058,"date":"Jan 17 13:59"},{"filename":"snmp.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":12642,"date":"Jan 17 13:59"},{"filename":"sock_diag.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":727,"date":"Jan 17 13:59"},{"filename":"socket.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":801,"date":"Jan 17 13:59"},{"filename":"sockios.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6106,"date":"Jan 17 13:59"},{"filename":"sonet.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2290,"date":"Jan 17 13:59"},{"filename":"sonypi.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5309,"date":"Jan 17 13:59"},{"filename":"soundcard.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":46038,"date":"Jan 17 13:59"},{"filename":"sound.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1237,"date":"Jan 17 13:59"},{"filename":"spi","parent":"/usr/include/linux","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"stat.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6100,"date":"Jan 17 13:59"},{"filename":"stddef.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":131,"date":"Jan 17 13:59"},{"filename":"stm.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1616,"date":"Jan 17 13:59"},{"filename":"string.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":238,"date":"Jan 17 13:59"},{"filename":"sunrpc","parent":"/usr/include/linux","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"suspend_ioctls.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1431,"date":"Jan 17 13:59"},{"filename":"swab.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6711,"date":"Jan 17 13:59"},{"filename":"switchtec_ioctl.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4465,"date":"Jan 17 13:59"},{"filename":"sync_file.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2883,"date":"Jan 17 13:59"},{"filename":"synclink.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8985,"date":"Jan 17 13:59"},{"filename":"sysctl.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":26188,"date":"Jan 17 13:59"},{"filename":"sysinfo.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1049,"date":"Jan 17 13:59"},{"filename":"target_core_user.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3768,"date":"Jan 17 13:59"},{"filename":"taskstats.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7057,"date":"Jan 17 13:59"},{"filename":"tc_act","parent":"/usr/include/linux","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"tc_ematch","parent":"/usr/include/linux","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"tcp.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8293,"date":"Jan 17 13:59"},{"filename":"tcp_metrics.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1549,"date":"Jan 17 13:59"},{"filename":"tee.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":11255,"date":"Jan 17 13:59"},{"filename":"telephony.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9115,"date":"Jan 17 13:59"},{"filename":"termios.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":506,"date":"Jan 17 13:59"},{"filename":"thermal.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":924,"date":"Jan 17 13:59"},{"filename":"time.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1720,"date":"Jan 17 13:59"},{"filename":"timerfd.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":936,"date":"Jan 17 13:59"},{"filename":"times.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":278,"date":"Jan 17 13:59"},{"filename":"timex.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6403,"date":"Jan 17 13:59"},{"filename":"tiocl.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1729,"date":"Jan 17 13:59"},{"filename":"tipc_config.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":14775,"date":"Jan 17 13:59"},{"filename":"tipc.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7709,"date":"Jan 17 13:59"},{"filename":"tipc_netlink.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8010,"date":"Jan 17 13:59"},{"filename":"tls.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2723,"date":"Jan 17 13:59"},{"filename":"toshiba.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1930,"date":"Jan 17 13:59"},{"filename":"tty_flags.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4526,"date":"Jan 17 13:59"},{"filename":"tty.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1585,"date":"Jan 17 13:59"},{"filename":"types.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1438,"date":"Jan 17 13:59"},{"filename":"udf_fs_i.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":697,"date":"Jan 17 13:59"},{"filename":"udp.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1463,"date":"Jan 17 13:59"},{"filename":"uhid.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4648,"date":"Jan 17 13:59"},{"filename":"uinput.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9261,"date":"Jan 17 13:59"},{"filename":"uio.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":732,"date":"Jan 17 13:59"},{"filename":"uleds.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":798,"date":"Jan 17 13:59"},{"filename":"ultrasound.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4562,"date":"Jan 17 13:59"},{"filename":"un.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":384,"date":"Jan 17 13:59"},{"filename":"unistd.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":220,"date":"Jan 17 13:59"},{"filename":"unix_diag.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1253,"date":"Jan 17 13:59"},{"filename":"usb","parent":"/usr/include/linux","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"usbdevice_fs.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6928,"date":"Jan 17 13:59"},{"filename":"usbip.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":640,"date":"Jan 17 13:59"},{"filename":"userfaultfd.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6811,"date":"Jan 17 13:59"},{"filename":"userio.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1516,"date":"Jan 17 13:59"},{"filename":"utime.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":215,"date":"Jan 17 13:59"},{"filename":"utsname.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":669,"date":"Jan 17 13:59"},{"filename":"uuid.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1382,"date":"Jan 17 13:59"},{"filename":"uvcvideo.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1705,"date":"Jan 17 13:59"},{"filename":"v4l2-common.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4177,"date":"Jan 17 13:59"},{"filename":"v4l2-controls.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":44984,"date":"Jan 17 13:59"},{"filename":"v4l2-dv-timings.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":31562,"date":"Jan 17 13:59"},{"filename":"v4l2-mediabus.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5101,"date":"Jan 17 13:59"},{"filename":"v4l2-subdev.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6096,"date":"Jan 17 13:59"},{"filename":"version.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":97,"date":"Jan 17 13:59"},{"filename":"veth.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":224,"date":"Jan 17 13:59"},{"filename":"vfio_ccw.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":504,"date":"Jan 17 13:59"},{"filename":"vfio.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":26030,"date":"Jan 17 13:59"},{"filename":"vhost.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7305,"date":"Jan 17 13:59"},{"filename":"videodev2.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":85966,"date":"Jan 17 13:59"},{"filename":"virtio_9p.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2041,"date":"Jan 17 13:59"},{"filename":"virtio_balloon.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3800,"date":"Jan 17 13:59"},{"filename":"virtio_blk.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5319,"date":"Jan 17 13:59"},{"filename":"virtio_config.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3420,"date":"Jan 17 13:59"},{"filename":"virtio_console.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3136,"date":"Jan 17 13:59"},{"filename":"virtio_crypto.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":13874,"date":"Jan 17 13:59"},{"filename":"virtio_gpu.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8027,"date":"Jan 17 13:59"},{"filename":"virtio_ids.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2429,"date":"Jan 17 13:59"},{"filename":"virtio_input.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2506,"date":"Jan 17 13:59"},{"filename":"virtio_mmio.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4586,"date":"Jan 17 13:59"},{"filename":"virtio_net.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":10131,"date":"Jan 17 13:59"},{"filename":"virtio_pci.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7079,"date":"Jan 17 13:59"},{"filename":"virtio_ring.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6336,"date":"Jan 17 13:59"},{"filename":"virtio_rng.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":265,"date":"Jan 17 13:59"},{"filename":"virtio_scsi.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6035,"date":"Jan 17 13:59"},{"filename":"virtio_types.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2153,"date":"Jan 17 13:59"},{"filename":"virtio_vsock.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3086,"date":"Jan 17 13:59"},{"filename":"vm_sockets_diag.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":963,"date":"Jan 17 13:59"},{"filename":"vm_sockets.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5314,"date":"Jan 17 13:59"},{"filename":"vsockmon.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1885,"date":"Jan 17 13:59"},{"filename":"vt.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3059,"date":"Jan 17 13:59"},{"filename":"vtpm_proxy.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1719,"date":"Jan 17 13:59"},{"filename":"wait.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":663,"date":"Jan 17 13:59"},{"filename":"wanrouter.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":453,"date":"Jan 17 13:59"},{"filename":"watchdog.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2335,"date":"Jan 17 13:59"},{"filename":"wimax","parent":"/usr/include/linux","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"wimax.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8371,"date":"Jan 17 13:59"},{"filename":"wireless.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":42713,"date":"Jan 17 13:59"},{"filename":"wmi.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1886,"date":"Jan 17 13:59"},{"filename":"x25.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3562,"date":"Jan 17 13:59"},{"filename":"xattr.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2860,"date":"Jan 17 13:59"},{"filename":"xfrm.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":11617,"date":"Jan 17 13:59"},{"filename":"xilinx-v4l2-controls.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2976,"date":"Jan 17 13:59"},{"filename":"zorro.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3296,"date":"Jan 17 13:59"},{"filename":"zorro_ids.h","parent":"/usr/include/linux","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":29963,"date":"Jan 17 13:59"},{"filename":".","parent":"/usr/include/linux/android","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"..","parent":"/usr/include/linux/android","flags":"drwxr-xr-x","links":28,"owner":"root","group":"root","size":69632,"date":"Feb 5 06:03"},{"filename":"binder.h","parent":"/usr/include/linux/android","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":13687,"date":"Jan 17 13:59"},{"filename":".","parent":"/usr/include/linux/byteorder","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"..","parent":"/usr/include/linux/byteorder","flags":"drwxr-xr-x","links":28,"owner":"root","group":"root","size":69632,"date":"Feb 5 06:03"},{"filename":"big_endian.h","parent":"/usr/include/linux/byteorder","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3542,"date":"Jan 17 13:59"},{"filename":"little_endian.h","parent":"/usr/include/linux/byteorder","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3611,"date":"Jan 17 13:59"},{"filename":".","parent":"/usr/include/linux/caif","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"..","parent":"/usr/include/linux/caif","flags":"drwxr-xr-x","links":28,"owner":"root","group":"root","size":69632,"date":"Feb 5 06:03"},{"filename":"caif_socket.h","parent":"/usr/include/linux/caif","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5832,"date":"Jan 17 13:59"},{"filename":"if_caif.h","parent":"/usr/include/linux/caif","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1041,"date":"Jan 17 13:59"},{"filename":".","parent":"/usr/include/linux/can","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"..","parent":"/usr/include/linux/can","flags":"drwxr-xr-x","links":28,"owner":"root","group":"root","size":69632,"date":"Feb 5 06:03"},{"filename":"bcm.h","parent":"/usr/include/linux/can","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4111,"date":"Jan 17 13:59"},{"filename":"error.h","parent":"/usr/include/linux/can","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6605,"date":"Jan 17 13:59"},{"filename":"gw.h","parent":"/usr/include/linux/can","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7438,"date":"Jan 17 13:59"},{"filename":"netlink.h","parent":"/usr/include/linux/can","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3966,"date":"Jan 17 13:59"},{"filename":"raw.h","parent":"/usr/include/linux/can","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2853,"date":"Jan 17 13:59"},{"filename":"vxcan.h","parent":"/usr/include/linux/can","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":227,"date":"Jan 17 13:59"},{"filename":".","parent":"/usr/include/linux/cifs","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"..","parent":"/usr/include/linux/cifs","flags":"drwxr-xr-x","links":28,"owner":"root","group":"root","size":69632,"date":"Feb 5 06:03"},{"filename":"cifs_mount.h","parent":"/usr/include/linux/cifs","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1225,"date":"Jan 17 13:59"},{"filename":".","parent":"/usr/include/linux/dvb","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"..","parent":"/usr/include/linux/dvb","flags":"drwxr-xr-x","links":28,"owner":"root","group":"root","size":69632,"date":"Feb 5 06:03"},{"filename":"audio.h","parent":"/usr/include/linux/dvb","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4959,"date":"Jan 17 13:59"},{"filename":"ca.h","parent":"/usr/include/linux/dvb","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4247,"date":"Jan 17 13:59"},{"filename":"dmx.h","parent":"/usr/include/linux/dvb","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6763,"date":"Jan 17 13:59"},{"filename":"frontend.h","parent":"/usr/include/linux/dvb","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":29085,"date":"Jan 17 13:59"},{"filename":"net.h","parent":"/usr/include/linux/dvb","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2127,"date":"Jan 17 13:59"},{"filename":"osd.h","parent":"/usr/include/linux/dvb","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5761,"date":"Jan 17 13:59"},{"filename":"version.h","parent":"/usr/include/linux/dvb","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1082,"date":"Jan 17 13:59"},{"filename":"video.h","parent":"/usr/include/linux/dvb","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8820,"date":"Jan 17 13:59"},{"filename":".","parent":"/usr/include/linux/genwqe","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"..","parent":"/usr/include/linux/genwqe","flags":"drwxr-xr-x","links":28,"owner":"root","group":"root","size":69632,"date":"Feb 5 06:03"},{"filename":"genwqe_card.h","parent":"/usr/include/linux/genwqe","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":17802,"date":"Jan 17 13:59"},{"filename":".","parent":"/usr/include/linux/hdlc","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"..","parent":"/usr/include/linux/hdlc","flags":"drwxr-xr-x","links":28,"owner":"root","group":"root","size":69632,"date":"Feb 5 06:03"},{"filename":"ioctl.h","parent":"/usr/include/linux/hdlc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2657,"date":"Jan 17 13:59"},{"filename":".","parent":"/usr/include/linux/hsi","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"..","parent":"/usr/include/linux/hsi","flags":"drwxr-xr-x","links":28,"owner":"root","group":"root","size":69632,"date":"Feb 5 06:03"},{"filename":"cs-protocol.h","parent":"/usr/include/linux/hsi","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3656,"date":"Jan 17 13:59"},{"filename":"hsi_char.h","parent":"/usr/include/linux/hsi","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1895,"date":"Jan 17 13:59"},{"filename":".","parent":"/usr/include/linux/iio","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"..","parent":"/usr/include/linux/iio","flags":"drwxr-xr-x","links":28,"owner":"root","group":"root","size":69632,"date":"Feb 5 06:03"},{"filename":"events.h","parent":"/usr/include/linux/iio","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1390,"date":"Jan 17 13:59"},{"filename":"types.h","parent":"/usr/include/linux/iio","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1945,"date":"Jan 17 13:59"},{"filename":".","parent":"/usr/include/linux/isdn","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"..","parent":"/usr/include/linux/isdn","flags":"drwxr-xr-x","links":28,"owner":"root","group":"root","size":69632,"date":"Feb 5 06:03"},{"filename":"capicmd.h","parent":"/usr/include/linux/isdn","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4783,"date":"Jan 17 13:59"},{"filename":".","parent":"/usr/include/linux/mmc","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"..","parent":"/usr/include/linux/mmc","flags":"drwxr-xr-x","links":28,"owner":"root","group":"root","size":69632,"date":"Feb 5 06:03"},{"filename":"ioctl.h","parent":"/usr/include/linux/mmc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2285,"date":"Jan 17 13:59"},{"filename":".","parent":"/usr/include/linux/netfilter","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":12288,"date":"Feb 5 06:03"},{"filename":"..","parent":"/usr/include/linux/netfilter","flags":"drwxr-xr-x","links":28,"owner":"root","group":"root","size":69632,"date":"Feb 5 06:03"},{"filename":"ipset","parent":"/usr/include/linux/netfilter","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"nf_conntrack_common.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4248,"date":"Jan 17 13:59"},{"filename":"nf_conntrack_ftp.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":438,"date":"Jan 17 13:59"},{"filename":"nf_conntrack_sctp.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":576,"date":"Jan 17 13:59"},{"filename":"nf_conntrack_tcp.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1336,"date":"Jan 17 13:59"},{"filename":"nf_conntrack_tuple_common.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":896,"date":"Jan 17 13:59"},{"filename":"nf_log.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":538,"date":"Jan 17 13:59"},{"filename":"nf_nat.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1214,"date":"Jan 17 13:59"},{"filename":"nfnetlink_acct.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":900,"date":"Jan 17 13:59"},{"filename":"nfnetlink_compat.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2444,"date":"Jan 17 13:59"},{"filename":"nfnetlink_conntrack.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5699,"date":"Jan 17 13:59"},{"filename":"nfnetlink_cthelper.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1202,"date":"Jan 17 13:59"},{"filename":"nfnetlink_cttimeout.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2930,"date":"Jan 17 13:59"},{"filename":"nfnetlink.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2428,"date":"Jan 17 13:59"},{"filename":"nfnetlink_log.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2799,"date":"Jan 17 13:59"},{"filename":"nfnetlink_queue.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3499,"date":"Jan 17 13:59"},{"filename":"nf_tables_compat.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":731,"date":"Jan 17 13:59"},{"filename":"nf_tables.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":40173,"date":"Jan 17 13:59"},{"filename":"x_tables.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4467,"date":"Jan 17 13:59"},{"filename":"xt_addrtype.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1084,"date":"Jan 17 13:59"},{"filename":"xt_AUDIT.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":718,"date":"Jan 17 13:59"},{"filename":"xt_bpf.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":935,"date":"Jan 17 13:59"},{"filename":"xt_cgroup.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":740,"date":"Jan 17 13:59"},{"filename":"xt_CHECKSUM.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":563,"date":"Jan 17 13:59"},{"filename":"xt_CLASSIFY.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":217,"date":"Jan 17 13:59"},{"filename":"xt_cluster.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":374,"date":"Jan 17 13:59"},{"filename":"xt_comment.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":230,"date":"Jan 17 13:59"},{"filename":"xt_connbytes.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":577,"date":"Jan 17 13:59"},{"filename":"xt_connlabel.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":280,"date":"Jan 17 13:59"},{"filename":"xt_connlimit.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":575,"date":"Jan 17 13:59"},{"filename":"xt_connmark.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":755,"date":"Jan 17 13:59"},{"filename":"xt_CONNMARK.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":199,"date":"Jan 17 13:59"},{"filename":"xt_CONNSECMARK.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":301,"date":"Jan 17 13:59"},{"filename":"xt_conntrack.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2557,"date":"Jan 17 13:59"},{"filename":"xt_cpu.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":199,"date":"Jan 17 13:59"},{"filename":"xt_CT.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":853,"date":"Jan 17 13:59"},{"filename":"xt_dccp.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":483,"date":"Jan 17 13:59"},{"filename":"xt_devgroup.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":429,"date":"Jan 17 13:59"},{"filename":"xt_dscp.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":701,"date":"Jan 17 13:59"},{"filename":"xt_DSCP.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":697,"date":"Jan 17 13:59"},{"filename":"xt_ecn.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":736,"date":"Jan 17 13:59"},{"filename":"xt_esp.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":418,"date":"Jan 17 13:59"},{"filename":"xt_hashlimit.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3256,"date":"Jan 17 13:59"},{"filename":"xt_helper.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":188,"date":"Jan 17 13:59"},{"filename":"xt_HMARK.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":933,"date":"Jan 17 13:59"},{"filename":"xt_IDLETIMER.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1393,"date":"Jan 17 13:59"},{"filename":"xt_ipcomp.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":485,"date":"Jan 17 13:59"},{"filename":"xt_iprange.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":581,"date":"Jan 17 13:59"},{"filename":"xt_ipvs.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":680,"date":"Jan 17 13:59"},{"filename":"xt_l2tp.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":739,"date":"Jan 17 13:59"},{"filename":"xt_LED.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":470,"date":"Jan 17 13:59"},{"filename":"xt_length.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":221,"date":"Jan 17 13:59"},{"filename":"xt_limit.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":673,"date":"Jan 17 13:59"},{"filename":"xt_LOG.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":642,"date":"Jan 17 13:59"},{"filename":"xt_mac.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":227,"date":"Jan 17 13:59"},{"filename":"xt_mark.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":260,"date":"Jan 17 13:59"},{"filename":"xt_MARK.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":184,"date":"Jan 17 13:59"},{"filename":"xt_multiport.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":721,"date":"Jan 17 13:59"},{"filename":"xt_nfacct.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":421,"date":"Jan 17 13:59"},{"filename":"xt_NFLOG.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":556,"date":"Jan 17 13:59"},{"filename":"xt_NFQUEUE.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":779,"date":"Jan 17 13:59"},{"filename":"xt_osf.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3390,"date":"Jan 17 13:59"},{"filename":"xt_owner.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":369,"date":"Jan 17 13:59"},{"filename":"xt_physdev.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":553,"date":"Jan 17 13:59"},{"filename":"xt_pkttype.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":188,"date":"Jan 17 13:59"},{"filename":"xt_policy.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1022,"date":"Jan 17 13:59"},{"filename":"xt_quota.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":400,"date":"Jan 17 13:59"},{"filename":"xt_rateest.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":859,"date":"Jan 17 13:59"},{"filename":"xt_RATEEST.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":390,"date":"Jan 17 13:59"},{"filename":"xt_realm.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":220,"date":"Jan 17 13:59"},{"filename":"xt_recent.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1058,"date":"Jan 17 13:59"},{"filename":"xt_rpfilter.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":320,"date":"Jan 17 13:59"},{"filename":"xt_sctp.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2326,"date":"Jan 17 13:59"},{"filename":"xt_SECMARK.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":549,"date":"Jan 17 13:59"},{"filename":"xt_set.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1827,"date":"Jan 17 13:59"},{"filename":"xt_socket.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":640,"date":"Jan 17 13:59"},{"filename":"xt_state.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":331,"date":"Jan 17 13:59"},{"filename":"xt_statistic.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":716,"date":"Jan 17 13:59"},{"filename":"xt_string.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":664,"date":"Jan 17 13:59"},{"filename":"xt_SYNPROXY.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":419,"date":"Jan 17 13:59"},{"filename":"xt_tcpmss.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":253,"date":"Jan 17 13:59"},{"filename":"xt_TCPMSS.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":235,"date":"Jan 17 13:59"},{"filename":"xt_TCPOPTSTRIP.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":407,"date":"Jan 17 13:59"},{"filename":"xt_tcpudp.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1250,"date":"Jan 17 13:59"},{"filename":"xt_TEE.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":333,"date":"Jan 17 13:59"},{"filename":"xt_time.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":730,"date":"Jan 17 13:59"},{"filename":"xt_TPROXY.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":575,"date":"Jan 17 13:59"},{"filename":"xt_u32.h","parent":"/usr/include/linux/netfilter","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":752,"date":"Jan 17 13:59"},{"filename":".","parent":"/usr/include/linux/netfilter/ipset","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"..","parent":"/usr/include/linux/netfilter/ipset","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":12288,"date":"Feb 5 06:03"},{"filename":"ip_set_bitmap.h","parent":"/usr/include/linux/netfilter/ipset","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":428,"date":"Jan 17 13:59"},{"filename":"ip_set.h","parent":"/usr/include/linux/netfilter/ipset","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8879,"date":"Jan 17 13:59"},{"filename":"ip_set_hash.h","parent":"/usr/include/linux/netfilter/ipset","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":578,"date":"Jan 17 13:59"},{"filename":"ip_set_list.h","parent":"/usr/include/linux/netfilter/ipset","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":609,"date":"Jan 17 13:59"},{"filename":".","parent":"/usr/include/linux/netfilter_arp","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"..","parent":"/usr/include/linux/netfilter_arp","flags":"drwxr-xr-x","links":28,"owner":"root","group":"root","size":69632,"date":"Feb 5 06:03"},{"filename":"arp_tables.h","parent":"/usr/include/linux/netfilter_arp","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5999,"date":"Jan 17 13:59"},{"filename":"arpt_mangle.h","parent":"/usr/include/linux/netfilter_arp","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":606,"date":"Jan 17 13:59"},{"filename":".","parent":"/usr/include/linux/netfilter_bridge","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"..","parent":"/usr/include/linux/netfilter_bridge","flags":"drwxr-xr-x","links":28,"owner":"root","group":"root","size":69632,"date":"Feb 5 06:03"},{"filename":"ebt_802_3.h","parent":"/usr/include/linux/netfilter_bridge","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1274,"date":"Jan 17 13:59"},{"filename":"ebtables.h","parent":"/usr/include/linux/netfilter_bridge","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9041,"date":"Jan 17 13:59"},{"filename":"ebt_among.h","parent":"/usr/include/linux/netfilter_bridge","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2043,"date":"Jan 17 13:59"},{"filename":"ebt_arp.h","parent":"/usr/include/linux/netfilter_bridge","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":900,"date":"Jan 17 13:59"},{"filename":"ebt_arpreply.h","parent":"/usr/include/linux/netfilter_bridge","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":289,"date":"Jan 17 13:59"},{"filename":"ebt_ip6.h","parent":"/usr/include/linux/netfilter_bridge","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1056,"date":"Jan 17 13:59"},{"filename":"ebt_ip.h","parent":"/usr/include/linux/netfilter_bridge","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":920,"date":"Jan 17 13:59"},{"filename":"ebt_limit.h","parent":"/usr/include/linux/netfilter_bridge","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":616,"date":"Jan 17 13:59"},{"filename":"ebt_log.h","parent":"/usr/include/linux/netfilter_bridge","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":538,"date":"Jan 17 13:59"},{"filename":"ebt_mark_m.h","parent":"/usr/include/linux/netfilter_bridge","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":388,"date":"Jan 17 13:59"},{"filename":"ebt_mark_t.h","parent":"/usr/include/linux/netfilter_bridge","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":831,"date":"Jan 17 13:59"},{"filename":"ebt_nat.h","parent":"/usr/include/linux/netfilter_bridge","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":387,"date":"Jan 17 13:59"},{"filename":"ebt_nflog.h","parent":"/usr/include/linux/netfilter_bridge","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":510,"date":"Jan 17 13:59"},{"filename":"ebt_pkttype.h","parent":"/usr/include/linux/netfilter_bridge","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":267,"date":"Jan 17 13:59"},{"filename":"ebt_redirect.h","parent":"/usr/include/linux/netfilter_bridge","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":286,"date":"Jan 17 13:59"},{"filename":"ebt_stp.h","parent":"/usr/include/linux/netfilter_bridge","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1110,"date":"Jan 17 13:59"},{"filename":"ebt_vlan.h","parent":"/usr/include/linux/netfilter_bridge","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":719,"date":"Jan 17 13:59"},{"filename":".","parent":"/usr/include/linux/netfilter_ipv4","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"..","parent":"/usr/include/linux/netfilter_ipv4","flags":"drwxr-xr-x","links":28,"owner":"root","group":"root","size":69632,"date":"Feb 5 06:03"},{"filename":"ip_tables.h","parent":"/usr/include/linux/netfilter_ipv4","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6647,"date":"Jan 17 13:59"},{"filename":"ipt_ah.h","parent":"/usr/include/linux/netfilter_ipv4","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":425,"date":"Jan 17 13:59"},{"filename":"ipt_CLUSTERIP.h","parent":"/usr/include/linux/netfilter_ipv4","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":821,"date":"Jan 17 13:59"},{"filename":"ipt_ecn.h","parent":"/usr/include/linux/netfilter_ipv4","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":431,"date":"Jan 17 13:59"},{"filename":"ipt_ECN.h","parent":"/usr/include/linux/netfilter_ipv4","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":901,"date":"Jan 17 13:59"},{"filename":"ipt_LOG.h","parent":"/usr/include/linux/netfilter_ipv4","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":722,"date":"Jan 17 13:59"},{"filename":"ipt_REJECT.h","parent":"/usr/include/linux/netfilter_ipv4","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":468,"date":"Jan 17 13:59"},{"filename":"ipt_ttl.h","parent":"/usr/include/linux/netfilter_ipv4","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":431,"date":"Jan 17 13:59"},{"filename":"ipt_TTL.h","parent":"/usr/include/linux/netfilter_ipv4","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":375,"date":"Jan 17 13:59"},{"filename":".","parent":"/usr/include/linux/netfilter_ipv6","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"..","parent":"/usr/include/linux/netfilter_ipv6","flags":"drwxr-xr-x","links":28,"owner":"root","group":"root","size":69632,"date":"Feb 5 06:03"},{"filename":"ip6_tables.h","parent":"/usr/include/linux/netfilter_ipv6","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8011,"date":"Jan 17 13:59"},{"filename":"ip6t_ah.h","parent":"/usr/include/linux/netfilter_ipv6","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":657,"date":"Jan 17 13:59"},{"filename":"ip6t_frag.h","parent":"/usr/include/linux/netfilter_ipv6","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":744,"date":"Jan 17 13:59"},{"filename":"ip6t_hl.h","parent":"/usr/include/linux/netfilter_ipv6","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":458,"date":"Jan 17 13:59"},{"filename":"ip6t_HL.h","parent":"/usr/include/linux/netfilter_ipv6","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":408,"date":"Jan 17 13:59"},{"filename":"ip6t_ipv6header.h","parent":"/usr/include/linux/netfilter_ipv6","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":645,"date":"Jan 17 13:59"},{"filename":"ip6t_LOG.h","parent":"/usr/include/linux/netfilter_ipv6","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":730,"date":"Jan 17 13:59"},{"filename":"ip6t_mh.h","parent":"/usr/include/linux/netfilter_ipv6","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":439,"date":"Jan 17 13:59"},{"filename":"ip6t_NPT.h","parent":"/usr/include/linux/netfilter_ipv6","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":400,"date":"Jan 17 13:59"},{"filename":"ip6t_opts.h","parent":"/usr/include/linux/netfilter_ipv6","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":649,"date":"Jan 17 13:59"},{"filename":"ip6t_REJECT.h","parent":"/usr/include/linux/netfilter_ipv6","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":470,"date":"Jan 17 13:59"},{"filename":"ip6t_rt.h","parent":"/usr/include/linux/netfilter_ipv6","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":985,"date":"Jan 17 13:59"},{"filename":".","parent":"/usr/include/linux/nfsd","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"..","parent":"/usr/include/linux/nfsd","flags":"drwxr-xr-x","links":28,"owner":"root","group":"root","size":69632,"date":"Feb 5 06:03"},{"filename":"cld.h","parent":"/usr/include/linux/nfsd","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1921,"date":"Jan 17 13:59"},{"filename":"debug.h","parent":"/usr/include/linux/nfsd","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":736,"date":"Jan 17 13:59"},{"filename":"export.h","parent":"/usr/include/linux/nfsd","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2113,"date":"Jan 17 13:59"},{"filename":"nfsfh.h","parent":"/usr/include/linux/nfsd","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3517,"date":"Jan 17 13:59"},{"filename":"stats.h","parent":"/usr/include/linux/nfsd","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":421,"date":"Jan 17 13:59"},{"filename":".","parent":"/usr/include/linux/raid","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"..","parent":"/usr/include/linux/raid","flags":"drwxr-xr-x","links":28,"owner":"root","group":"root","size":69632,"date":"Feb 5 06:03"},{"filename":"md_p.h","parent":"/usr/include/linux/raid","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":16054,"date":"Jan 17 13:59"},{"filename":"md_u.h","parent":"/usr/include/linux/raid","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4484,"date":"Jan 17 13:59"},{"filename":".","parent":"/usr/include/linux/sched","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"..","parent":"/usr/include/linux/sched","flags":"drwxr-xr-x","links":28,"owner":"root","group":"root","size":69632,"date":"Feb 5 06:03"},{"filename":"types.h","parent":"/usr/include/linux/sched","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2688,"date":"Jan 17 13:59"},{"filename":".","parent":"/usr/include/linux/spi","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"..","parent":"/usr/include/linux/spi","flags":"drwxr-xr-x","links":28,"owner":"root","group":"root","size":69632,"date":"Feb 5 06:03"},{"filename":"spidev.h","parent":"/usr/include/linux/spi","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5076,"date":"Jan 17 13:59"},{"filename":".","parent":"/usr/include/linux/sunrpc","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"..","parent":"/usr/include/linux/sunrpc","flags":"drwxr-xr-x","links":28,"owner":"root","group":"root","size":69632,"date":"Feb 5 06:03"},{"filename":"debug.h","parent":"/usr/include/linux/sunrpc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1144,"date":"Jan 17 13:59"},{"filename":".","parent":"/usr/include/linux/tc_act","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"..","parent":"/usr/include/linux/tc_act","flags":"drwxr-xr-x","links":28,"owner":"root","group":"root","size":69632,"date":"Feb 5 06:03"},{"filename":"tc_bpf.h","parent":"/usr/include/linux/tc_act","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":788,"date":"Jan 17 13:59"},{"filename":"tc_connmark.h","parent":"/usr/include/linux/tc_act","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":419,"date":"Jan 17 13:59"},{"filename":"tc_csum.h","parent":"/usr/include/linux/tc_act","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":669,"date":"Jan 17 13:59"},{"filename":"tc_defact.h","parent":"/usr/include/linux/tc_act","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":322,"date":"Jan 17 13:59"},{"filename":"tc_gact.h","parent":"/usr/include/linux/tc_act","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":649,"date":"Jan 17 13:59"},{"filename":"tc_ife.h","parent":"/usr/include/linux/tc_act","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":623,"date":"Jan 17 13:59"},{"filename":"tc_ipt.h","parent":"/usr/include/linux/tc_act","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":460,"date":"Jan 17 13:59"},{"filename":"tc_mirred.h","parent":"/usr/include/linux/tc_act","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":753,"date":"Jan 17 13:59"},{"filename":"tc_nat.h","parent":"/usr/include/linux/tc_act","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":447,"date":"Jan 17 13:59"},{"filename":"tc_pedit.h","parent":"/usr/include/linux/tc_act","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1707,"date":"Jan 17 13:59"},{"filename":"tc_sample.h","parent":"/usr/include/linux/tc_act","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":483,"date":"Jan 17 13:59"},{"filename":"tc_skbedit.h","parent":"/usr/include/linux/tc_act","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1413,"date":"Jan 17 13:59"},{"filename":"tc_skbmod.h","parent":"/usr/include/linux/tc_act","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":842,"date":"Jan 17 13:59"},{"filename":"tc_tunnel_key.h","parent":"/usr/include/linux/tc_act","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1180,"date":"Jan 17 13:59"},{"filename":"tc_vlan.h","parent":"/usr/include/linux/tc_act","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":841,"date":"Jan 17 13:59"},{"filename":".","parent":"/usr/include/linux/tc_ematch","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"..","parent":"/usr/include/linux/tc_ematch","flags":"drwxr-xr-x","links":28,"owner":"root","group":"root","size":69632,"date":"Feb 5 06:03"},{"filename":"tc_em_cmp.h","parent":"/usr/include/linux/tc_ematch","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":414,"date":"Jan 17 13:59"},{"filename":"tc_em_meta.h","parent":"/usr/include/linux/tc_ematch","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2116,"date":"Jan 17 13:59"},{"filename":"tc_em_nbyte.h","parent":"/usr/include/linux/tc_ematch","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":255,"date":"Jan 17 13:59"},{"filename":"tc_em_text.h","parent":"/usr/include/linux/tc_ematch","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":384,"date":"Jan 17 13:59"},{"filename":".","parent":"/usr/include/linux/usb","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"..","parent":"/usr/include/linux/usb","flags":"drwxr-xr-x","links":28,"owner":"root","group":"root","size":69632,"date":"Feb 5 06:03"},{"filename":"audio.h","parent":"/usr/include/linux/usb","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":17126,"date":"Jan 17 13:59"},{"filename":"cdc.h","parent":"/usr/include/linux/usb","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":12962,"date":"Jan 17 13:59"},{"filename":"cdc-wdm.h","parent":"/usr/include/linux/usb","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":739,"date":"Jan 17 13:59"},{"filename":"ch11.h","parent":"/usr/include/linux/usb","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8987,"date":"Jan 17 13:59"},{"filename":"ch9.h","parent":"/usr/include/linux/usb","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":38723,"date":"Jan 17 13:59"},{"filename":"charger.h","parent":"/usr/include/linux/usb","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":566,"date":"Jan 17 13:59"},{"filename":"functionfs.h","parent":"/usr/include/linux/usb","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":10370,"date":"Jan 17 13:59"},{"filename":"gadgetfs.h","parent":"/usr/include/linux/usb","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2818,"date":"Jan 17 13:59"},{"filename":"g_printer.h","parent":"/usr/include/linux/usb","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1385,"date":"Jan 17 13:59"},{"filename":"midi.h","parent":"/usr/include/linux/usb","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3434,"date":"Jan 17 13:59"},{"filename":"tmc.h","parent":"/usr/include/linux/usb","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2785,"date":"Jan 17 13:59"},{"filename":"video.h","parent":"/usr/include/linux/usb","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":16212,"date":"Jan 17 13:59"},{"filename":".","parent":"/usr/include/linux/wimax","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"..","parent":"/usr/include/linux/wimax","flags":"drwxr-xr-x","links":28,"owner":"root","group":"root","size":69632,"date":"Feb 5 06:03"},{"filename":"i2400m.h","parent":"/usr/include/linux/wimax","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":15930,"date":"Jan 17 13:59"},{"filename":".","parent":"/usr/include/misc","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"..","parent":"/usr/include/misc","flags":"drwxr-xr-x","links":34,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"cxl.h","parent":"/usr/include/misc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3936,"date":"Jan 17 13:59"},{"filename":"ocxl.h","parent":"/usr/include/misc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1926,"date":"Jan 17 13:59"},{"filename":".","parent":"/usr/include/mtd","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"..","parent":"/usr/include/mtd","flags":"drwxr-xr-x","links":34,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"inftl-user.h","parent":"/usr/include/mtd","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1644,"date":"Jan 17 13:59"},{"filename":"mtd-abi.h","parent":"/usr/include/mtd","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9717,"date":"Jan 17 13:59"},{"filename":"mtd-user.h","parent":"/usr/include/mtd","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1242,"date":"Jan 17 13:59"},{"filename":"nftl-user.h","parent":"/usr/include/mtd","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2116,"date":"Jan 17 13:59"},{"filename":"ubi-user.h","parent":"/usr/include/mtd","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":17674,"date":"Jan 17 13:59"},{"filename":".","parent":"/usr/include/net","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/net","flags":"drwxr-xr-x","links":34,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"ethernet.h","parent":"/usr/include/net","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3135,"date":"Apr 16 2018"},{"filename":"if_arp.h","parent":"/usr/include/net","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7131,"date":"Apr 16 2018"},{"filename":"if.h","parent":"/usr/include/net","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6981,"date":"Apr 16 2018"},{"filename":"if_packet.h","parent":"/usr/include/net","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1261,"date":"Apr 16 2018"},{"filename":"if_ppp.h","parent":"/usr/include/net","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6714,"date":"Apr 16 2018"},{"filename":"if_shaper.h","parent":"/usr/include/net","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1624,"date":"Apr 16 2018"},{"filename":"if_slip.h","parent":"/usr/include/net","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":932,"date":"Apr 16 2018"},{"filename":"ppp-comp.h","parent":"/usr/include/net","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":28,"date":"Apr 16 2018"},{"filename":"ppp_defs.h","parent":"/usr/include/net","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":162,"date":"Apr 16 2018"},{"filename":"route.h","parent":"/usr/include/net","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4703,"date":"Apr 16 2018"},{"filename":".","parent":"/usr/include/netash","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/netash","flags":"drwxr-xr-x","links":34,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"ash.h","parent":"/usr/include/netash","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1362,"date":"Apr 16 2018"},{"filename":".","parent":"/usr/include/netatalk","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/netatalk","flags":"drwxr-xr-x","links":34,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"at.h","parent":"/usr/include/netatalk","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1028,"date":"Apr 16 2018"},{"filename":".","parent":"/usr/include/netax25","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/netax25","flags":"drwxr-xr-x","links":34,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"ax25.h","parent":"/usr/include/netax25","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4809,"date":"Apr 16 2018"},{"filename":".","parent":"/usr/include/neteconet","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/neteconet","flags":"drwxr-xr-x","links":34,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"ec.h","parent":"/usr/include/neteconet","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1667,"date":"Apr 16 2018"},{"filename":".","parent":"/usr/include/netinet","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/netinet","flags":"drwxr-xr-x","links":34,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"ether.h","parent":"/usr/include/netinet","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1984,"date":"Apr 16 2018"},{"filename":"icmp6.h","parent":"/usr/include/netinet","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":11514,"date":"Apr 16 2018"},{"filename":"if_ether.h","parent":"/usr/include/netinet","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3975,"date":"Apr 16 2018"},{"filename":"if_fddi.h","parent":"/usr/include/netinet","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1185,"date":"Apr 16 2018"},{"filename":"if_tr.h","parent":"/usr/include/netinet","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3691,"date":"Apr 16 2018"},{"filename":"igmp.h","parent":"/usr/include/netinet","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4610,"date":"Apr 16 2018"},{"filename":"in.h","parent":"/usr/include/netinet","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":21625,"date":"Apr 16 2018"},{"filename":"in_systm.h","parent":"/usr/include/netinet","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1493,"date":"Apr 16 2018"},{"filename":"ip6.h","parent":"/usr/include/netinet","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5393,"date":"Apr 16 2018"},{"filename":"ip.h","parent":"/usr/include/netinet","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9435,"date":"Apr 16 2018"},{"filename":"ip_icmp.h","parent":"/usr/include/netinet","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":10126,"date":"Apr 16 2018"},{"filename":"tcp.h","parent":"/usr/include/netinet","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9780,"date":"Apr 16 2018"},{"filename":"udp.h","parent":"/usr/include/netinet","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3646,"date":"Apr 16 2018"},{"filename":".","parent":"/usr/include/netipx","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/netipx","flags":"drwxr-xr-x","links":34,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"ipx.h","parent":"/usr/include/netipx","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2899,"date":"Apr 16 2018"},{"filename":".","parent":"/usr/include/netiucv","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/netiucv","flags":"drwxr-xr-x","links":34,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"iucv.h","parent":"/usr/include/netiucv","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1593,"date":"Apr 16 2018"},{"filename":".","parent":"/usr/include/netpacket","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/netpacket","flags":"drwxr-xr-x","links":34,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"packet.h","parent":"/usr/include/netpacket","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2402,"date":"Apr 16 2018"},{"filename":".","parent":"/usr/include/netrom","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/netrom","flags":"drwxr-xr-x","links":34,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"netrom.h","parent":"/usr/include/netrom","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2225,"date":"Apr 16 2018"},{"filename":".","parent":"/usr/include/netrose","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/netrose","flags":"drwxr-xr-x","links":34,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"rose.h","parent":"/usr/include/netrose","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3183,"date":"Apr 16 2018"},{"filename":".","parent":"/usr/include/nfs","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/nfs","flags":"drwxr-xr-x","links":34,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"nfs.h","parent":"/usr/include/nfs","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":23,"date":"Apr 16 2018"},{"filename":".","parent":"/usr/include/protocols","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/protocols","flags":"drwxr-xr-x","links":34,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"routed.h","parent":"/usr/include/protocols","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3844,"date":"Apr 16 2018"},{"filename":"rwhod.h","parent":"/usr/include/protocols","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2567,"date":"Apr 16 2018"},{"filename":"talkd.h","parent":"/usr/include/protocols","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4826,"date":"Apr 16 2018"},{"filename":"timed.h","parent":"/usr/include/protocols","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3881,"date":"Apr 16 2018"},{"filename":".","parent":"/usr/include/python3.6m","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/python3.6m","flags":"drwxr-xr-x","links":34,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"abstract.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":47451,"date":"Oct 7 12:59"},{"filename":"accu.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1016,"date":"Oct 7 12:59"},{"filename":"asdl.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1213,"date":"Oct 7 12:59"},{"filename":"ast.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":477,"date":"Oct 7 12:59"},{"filename":"bitset.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":792,"date":"Oct 7 12:59"},{"filename":"bltinmodule.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":264,"date":"Oct 7 12:59"},{"filename":"boolobject.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":886,"date":"Oct 7 12:59"},{"filename":"bytearrayobject.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2114,"date":"Oct 7 12:59"},{"filename":"bytes_methods.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3191,"date":"Oct 7 12:59"},{"filename":"bytesobject.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8363,"date":"Oct 7 12:59"},{"filename":"cellobject.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":701,"date":"Oct 7 12:59"},{"filename":"ceval.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8524,"date":"Oct 7 12:59"},{"filename":"classobject.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1666,"date":"Oct 7 12:59"},{"filename":"codecs.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6793,"date":"Oct 7 12:59"},{"filename":"code.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5945,"date":"Oct 7 12:59"},{"filename":"compile.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2164,"date":"Oct 7 12:59"},{"filename":"complexobject.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1807,"date":"Oct 7 12:59"},{"filename":"datetime.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9414,"date":"Oct 7 12:59"},{"filename":"descrobject.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2964,"date":"Oct 7 12:59"},{"filename":"dictobject.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7178,"date":"Oct 7 12:59"},{"filename":"dtoa.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":458,"date":"Oct 7 12:59"},{"filename":"dynamic_annotations.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":22469,"date":"Oct 7 12:59"},{"filename":"enumobject.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":253,"date":"Oct 7 12:59"},{"filename":"errcode.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1497,"date":"Oct 7 12:59"},{"filename":"eval.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":597,"date":"Oct 7 12:59"},{"filename":"fileobject.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1651,"date":"Oct 7 12:59"},{"filename":"fileutils.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3524,"date":"Oct 7 12:59"},{"filename":"floatobject.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4794,"date":"Oct 7 12:59"},{"filename":"frameobject.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3530,"date":"Oct 7 12:59"},{"filename":"funcobject.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4079,"date":"Oct 7 12:59"},{"filename":"genobject.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3583,"date":"Oct 7 12:59"},{"filename":"graminit.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1966,"date":"Oct 7 12:59"},{"filename":"grammar.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2074,"date":"Oct 7 12:59"},{"filename":"import.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4233,"date":"Oct 7 12:59"},{"filename":"intrcheck.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":513,"date":"Oct 7 12:59"},{"filename":"iterobject.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":567,"date":"Oct 7 12:59"},{"filename":"listobject.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2900,"date":"Oct 7 12:59"},{"filename":"longintrepr.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3761,"date":"Oct 7 12:59"},{"filename":"longobject.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8471,"date":"Oct 7 12:59"},{"filename":"marshal.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":803,"date":"Oct 7 12:59"},{"filename":"memoryobject.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2765,"date":"Oct 7 12:59"},{"filename":"metagrammar.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":253,"date":"Oct 7 12:59"},{"filename":"methodobject.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3847,"date":"Oct 7 12:59"},{"filename":"modsupport.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7317,"date":"Oct 7 12:59"},{"filename":"moduleobject.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2285,"date":"Oct 7 12:59"},{"filename":"namespaceobject.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":349,"date":"Oct 7 12:59"},{"filename":"node.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1007,"date":"Oct 7 12:59"},{"filename":"object.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":40373,"date":"Oct 7 12:59"},{"filename":"objimpl.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":14244,"date":"Oct 7 12:59"},{"filename":"odictobject.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1288,"date":"Oct 7 12:59"},{"filename":"opcode.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5073,"date":"Oct 7 12:59"},{"filename":"osdefs.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":691,"date":"Oct 7 12:59"},{"filename":"osmodule.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":291,"date":"Oct 7 12:59"},{"filename":"parsetok.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2885,"date":"Oct 7 12:59"},{"filename":"patchlevel.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1128,"date":"Oct 7 12:59"},{"filename":"pgen.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":253,"date":"Oct 7 12:59"},{"filename":"pgenheaders.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1180,"date":"Oct 7 12:59"},{"filename":"pyarena.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2744,"date":"Oct 7 12:59"},{"filename":"pyatomic.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8128,"date":"Oct 7 12:59"},{"filename":"pycapsule.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1726,"date":"Oct 7 12:59"},{"filename":"pyconfig.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4086,"date":"Oct 7 12:59"},{"filename":"pyctype.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1320,"date":"Oct 7 12:59"},{"filename":"py_curses.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4307,"date":"Oct 7 12:59"},{"filename":"pydebug.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1209,"date":"Oct 7 12:59"},{"filename":"pydtrace.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1970,"date":"Oct 7 12:59"},{"filename":"pyerrors.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":17219,"date":"Oct 7 12:59"},{"filename":"pyexpat.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2450,"date":"Oct 7 12:59"},{"filename":"pyfpe.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8471,"date":"Oct 7 12:59"},{"filename":"pygetopt.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":410,"date":"Oct 7 12:59"},{"filename":"pyhash.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4139,"date":"Oct 7 12:59"},{"filename":"pylifecycle.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4078,"date":"Oct 7 12:59"},{"filename":"pymacconfig.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2989,"date":"Oct 7 12:59"},{"filename":"pymacro.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3500,"date":"Oct 7 12:59"},{"filename":"pymath.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8312,"date":"Oct 7 12:59"},{"filename":"pymem.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8557,"date":"Oct 7 12:59"},{"filename":"pyport.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":27573,"date":"Oct 7 12:59"},{"filename":"pystate.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":11146,"date":"Oct 7 12:59"},{"filename":"pystrcmp.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":436,"date":"Oct 7 12:59"},{"filename":"pystrhex.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":495,"date":"Oct 7 12:59"},{"filename":"pystrtod.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1483,"date":"Oct 7 12:59"},{"filename":"Python-ast.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":22274,"date":"Oct 7 12:59"},{"filename":"Python.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3221,"date":"Oct 7 12:59"},{"filename":"pythonrun.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6782,"date":"Oct 7 12:59"},{"filename":"pythread.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2992,"date":"Oct 7 12:59"},{"filename":"pytime.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7609,"date":"Oct 7 12:59"},{"filename":"rangeobject.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":629,"date":"Oct 7 12:59"},{"filename":"setobject.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3333,"date":"Oct 7 12:59"},{"filename":"sliceobject.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2485,"date":"Oct 7 12:59"},{"filename":"structmember.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2018,"date":"Oct 7 12:59"},{"filename":"structseq.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1353,"date":"Oct 7 12:59"},{"filename":"symtable.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4994,"date":"Oct 7 12:59"},{"filename":"sysmodule.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1355,"date":"Oct 7 12:59"},{"filename":"token.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1943,"date":"Oct 7 12:59"},{"filename":"traceback.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3644,"date":"Oct 7 12:59"},{"filename":"tupleobject.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2444,"date":"Oct 7 12:59"},{"filename":"typeslots.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2253,"date":"Oct 7 12:59"},{"filename":"ucnhash.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1056,"date":"Oct 7 12:59"},{"filename":"unicodeobject.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":81779,"date":"Oct 7 12:59"},{"filename":"warnings.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1693,"date":"Oct 7 12:59"},{"filename":"weakrefobject.h","parent":"/usr/include/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2866,"date":"Oct 7 12:59"},{"filename":".","parent":"/usr/include/rdma","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"..","parent":"/usr/include/rdma","flags":"drwxr-xr-x","links":34,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"bnxt_re-abi.h","parent":"/usr/include/rdma","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2657,"date":"Jan 17 13:59"},{"filename":"cxgb3-abi.h","parent":"/usr/include/rdma","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2374,"date":"Jan 17 13:59"},{"filename":"cxgb4-abi.h","parent":"/usr/include/rdma","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2571,"date":"Jan 17 13:59"},{"filename":"hfi","parent":"/usr/include/rdma","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"hns-abi.h","parent":"/usr/include/rdma","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2130,"date":"Jan 17 13:59"},{"filename":"ib_user_cm.h","parent":"/usr/include/rdma","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6609,"date":"Jan 17 13:59"},{"filename":"ib_user_ioctl_verbs.h","parent":"/usr/include/rdma","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2436,"date":"Jan 17 13:59"},{"filename":"ib_user_mad.h","parent":"/usr/include/rdma","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8517,"date":"Jan 17 13:59"},{"filename":"ib_user_sa.h","parent":"/usr/include/rdma","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2305,"date":"Jan 17 13:59"},{"filename":"ib_user_verbs.h","parent":"/usr/include/rdma","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":23714,"date":"Jan 17 13:59"},{"filename":"mlx4-abi.h","parent":"/usr/include/rdma","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4140,"date":"Jan 17 13:59"},{"filename":"mlx5-abi.h","parent":"/usr/include/rdma","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9401,"date":"Jan 17 13:59"},{"filename":"mthca-abi.h","parent":"/usr/include/rdma","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3015,"date":"Jan 17 13:59"},{"filename":"nes-abi.h","parent":"/usr/include/rdma","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3463,"date":"Jan 17 13:59"},{"filename":"ocrdma-abi.h","parent":"/usr/include/rdma","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4016,"date":"Jan 17 13:59"},{"filename":"qedr-abi.h","parent":"/usr/include/rdma","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2699,"date":"Jan 17 13:59"},{"filename":"rdma_netlink.h","parent":"/usr/include/rdma","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7008,"date":"Jan 17 13:59"},{"filename":"rdma_user_cm.h","parent":"/usr/include/rdma","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6326,"date":"Jan 17 13:59"},{"filename":"rdma_user_ioctl.h","parent":"/usr/include/rdma","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4611,"date":"Jan 17 13:59"},{"filename":"rdma_user_rxe.h","parent":"/usr/include/rdma","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3215,"date":"Jan 17 13:59"},{"filename":"vmw_pvrdma-abi.h","parent":"/usr/include/rdma","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7484,"date":"Jan 17 13:59"},{"filename":".","parent":"/usr/include/rdma/hfi","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"..","parent":"/usr/include/rdma/hfi","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"hfi1_ioctl.h","parent":"/usr/include/rdma/hfi","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6490,"date":"Jan 17 13:59"},{"filename":"hfi1_user.h","parent":"/usr/include/rdma/hfi","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9077,"date":"Jan 17 13:59"},{"filename":".","parent":"/usr/include/reglib","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 12 2019"},{"filename":"..","parent":"/usr/include/reglib","flags":"drwxr-xr-x","links":34,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"nl80211.h","parent":"/usr/include/reglib","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":169149,"date":"Feb 5 2018"},{"filename":"regdb.h","parent":"/usr/include/reglib","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4149,"date":"Feb 5 2018"},{"filename":"reglib.h","parent":"/usr/include/reglib","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7240,"date":"Feb 5 2018"},{"filename":".","parent":"/usr/include/rpc","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/rpc","flags":"drwxr-xr-x","links":34,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"auth_des.h","parent":"/usr/include/rpc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3559,"date":"Apr 16 2018"},{"filename":"auth.h","parent":"/usr/include/rpc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6634,"date":"Apr 16 2018"},{"filename":"auth_unix.h","parent":"/usr/include/rpc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2914,"date":"Apr 16 2018"},{"filename":"clnt.h","parent":"/usr/include/rpc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":12531,"date":"Apr 16 2018"},{"filename":"des_crypt.h","parent":"/usr/include/rpc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3383,"date":"Apr 16 2018"},{"filename":"key_prot.h","parent":"/usr/include/rpc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":11756,"date":"Apr 16 2018"},{"filename":"netdb.h","parent":"/usr/include/rpc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2897,"date":"Apr 16 2018"},{"filename":"pmap_clnt.h","parent":"/usr/include/rpc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3837,"date":"Apr 16 2018"},{"filename":"pmap_prot.h","parent":"/usr/include/rpc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3810,"date":"Apr 16 2018"},{"filename":"pmap_rmt.h","parent":"/usr/include/rpc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2311,"date":"Apr 16 2018"},{"filename":"rpc_des.h","parent":"/usr/include/rpc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2511,"date":"Apr 16 2018"},{"filename":"rpc.h","parent":"/usr/include/rpc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3938,"date":"Apr 16 2018"},{"filename":"rpc_msg.h","parent":"/usr/include/rpc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4753,"date":"Apr 16 2018"},{"filename":"svc_auth.h","parent":"/usr/include/rpc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1976,"date":"Apr 16 2018"},{"filename":"svc.h","parent":"/usr/include/rpc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":11524,"date":"Apr 16 2018"},{"filename":"types.h","parent":"/usr/include/rpc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3233,"date":"Apr 16 2018"},{"filename":"xdr.h","parent":"/usr/include/rpc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":14577,"date":"Apr 16 2018"},{"filename":".","parent":"/usr/include/rpcsvc","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/rpcsvc","flags":"drwxr-xr-x","links":34,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"bootparam.h","parent":"/usr/include/rpcsvc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":916,"date":"Apr 16 2018"},{"filename":"bootparam_prot.h","parent":"/usr/include/rpcsvc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3188,"date":"Apr 16 2018"},{"filename":"bootparam_prot.x","parent":"/usr/include/rpcsvc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3120,"date":"Apr 16 2018"},{"filename":"key_prot.h","parent":"/usr/include/rpcsvc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6757,"date":"Apr 16 2018"},{"filename":"key_prot.x","parent":"/usr/include/rpcsvc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6568,"date":"Apr 16 2018"},{"filename":"klm_prot.h","parent":"/usr/include/rpcsvc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3290,"date":"Apr 16 2018"},{"filename":"klm_prot.x","parent":"/usr/include/rpcsvc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3741,"date":"Apr 16 2018"},{"filename":"mount.h","parent":"/usr/include/rpcsvc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3863,"date":"Apr 16 2018"},{"filename":"mount.x","parent":"/usr/include/rpcsvc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4665,"date":"Apr 16 2018"},{"filename":"nfs_prot.h","parent":"/usr/include/rpcsvc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":11448,"date":"Apr 16 2018"},{"filename":"nfs_prot.x","parent":"/usr/include/rpcsvc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7986,"date":"Apr 16 2018"},{"filename":"nis_callback.h","parent":"/usr/include/rpcsvc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2704,"date":"Apr 16 2018"},{"filename":"nis_callback.x","parent":"/usr/include/rpcsvc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2178,"date":"Apr 16 2018"},{"filename":"nis.h","parent":"/usr/include/rpcsvc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":16210,"date":"Apr 16 2018"},{"filename":"nislib.h","parent":"/usr/include/rpcsvc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":12892,"date":"Apr 16 2018"},{"filename":"nis_object.x","parent":"/usr/include/rpcsvc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":13090,"date":"Apr 16 2018"},{"filename":"nis_tags.h","parent":"/usr/include/rpcsvc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5370,"date":"Apr 16 2018"},{"filename":"nis.x","parent":"/usr/include/rpcsvc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":16802,"date":"Apr 16 2018"},{"filename":"nlm_prot.h","parent":"/usr/include/rpcsvc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9374,"date":"Apr 16 2018"},{"filename":"nlm_prot.x","parent":"/usr/include/rpcsvc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4990,"date":"Apr 16 2018"},{"filename":"rex.h","parent":"/usr/include/rpcsvc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5252,"date":"Apr 16 2018"},{"filename":"rex.x","parent":"/usr/include/rpcsvc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7422,"date":"Apr 16 2018"},{"filename":"rquota.h","parent":"/usr/include/rpcsvc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2249,"date":"Apr 16 2018"},{"filename":"rquota.x","parent":"/usr/include/rpcsvc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1568,"date":"Apr 16 2018"},{"filename":"rstat.h","parent":"/usr/include/rpcsvc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4045,"date":"Apr 16 2018"},{"filename":"rstat.x","parent":"/usr/include/rpcsvc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4001,"date":"Apr 16 2018"},{"filename":"rusers.h","parent":"/usr/include/rpcsvc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3279,"date":"Apr 16 2018"},{"filename":"rusers.x","parent":"/usr/include/rpcsvc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5866,"date":"Apr 16 2018"},{"filename":"sm_inter.h","parent":"/usr/include/rpcsvc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3173,"date":"Apr 16 2018"},{"filename":"sm_inter.x","parent":"/usr/include/rpcsvc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3752,"date":"Apr 16 2018"},{"filename":"spray.h","parent":"/usr/include/rpcsvc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1887,"date":"Apr 16 2018"},{"filename":"spray.x","parent":"/usr/include/rpcsvc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2543,"date":"Apr 16 2018"},{"filename":"ypclnt.h","parent":"/usr/include/rpcsvc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3500,"date":"Apr 16 2018"},{"filename":"yp.h","parent":"/usr/include/rpcsvc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9916,"date":"Apr 16 2018"},{"filename":"yppasswd.h","parent":"/usr/include/rpcsvc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1285,"date":"Apr 16 2018"},{"filename":"yppasswd.x","parent":"/usr/include/rpcsvc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2286,"date":"Apr 16 2018"},{"filename":"yp_prot.h","parent":"/usr/include/rpcsvc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":10499,"date":"Apr 16 2018"},{"filename":"ypupd.h","parent":"/usr/include/rpcsvc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3007,"date":"Apr 16 2018"},{"filename":"yp.x","parent":"/usr/include/rpcsvc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7198,"date":"Apr 16 2018"},{"filename":".","parent":"/usr/include/scsi","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"..","parent":"/usr/include/scsi","flags":"drwxr-xr-x","links":34,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"cxlflash_ioctl.h","parent":"/usr/include/scsi","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":10168,"date":"Jan 17 13:59"},{"filename":"fc","parent":"/usr/include/scsi","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"scsi_bsg_fc.h","parent":"/usr/include/scsi","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8817,"date":"Jan 17 13:59"},{"filename":"scsi.h","parent":"/usr/include/scsi","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6969,"date":"Apr 16 2018"},{"filename":"scsi_ioctl.h","parent":"/usr/include/scsi","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1315,"date":"Apr 16 2018"},{"filename":"scsi_netlink_fc.h","parent":"/usr/include/scsi","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1993,"date":"Jan 17 13:59"},{"filename":"scsi_netlink.h","parent":"/usr/include/scsi","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3666,"date":"Jan 17 13:59"},{"filename":"sg.h","parent":"/usr/include/scsi","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":11661,"date":"Apr 16 2018"},{"filename":".","parent":"/usr/include/scsi/fc","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"..","parent":"/usr/include/scsi/fc","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"fc_els.h","parent":"/usr/include/scsi/fc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":26667,"date":"Jan 17 13:59"},{"filename":"fc_fs.h","parent":"/usr/include/scsi/fc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":12367,"date":"Jan 17 13:59"},{"filename":"fc_gs.h","parent":"/usr/include/scsi/fc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2895,"date":"Jan 17 13:59"},{"filename":"fc_ns.h","parent":"/usr/include/scsi/fc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4981,"date":"Jan 17 13:59"},{"filename":".","parent":"/usr/include/sound","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"..","parent":"/usr/include/sound","flags":"drwxr-xr-x","links":34,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"asequencer.h","parent":"/usr/include/sound","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":21847,"date":"Jan 17 13:59"},{"filename":"asoc.h","parent":"/usr/include/sound","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":19733,"date":"Jan 17 13:59"},{"filename":"asound_fm.h","parent":"/usr/include/sound","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4377,"date":"Jan 17 13:59"},{"filename":"asound.h","parent":"/usr/include/sound","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":45851,"date":"Jan 17 13:59"},{"filename":"compress_offload.h","parent":"/usr/include/sound","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6743,"date":"Jan 17 13:59"},{"filename":"compress_params.h","parent":"/usr/include/sound","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":16992,"date":"Jan 17 13:59"},{"filename":"emu10k1.h","parent":"/usr/include/sound","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":17240,"date":"Jan 17 13:59"},{"filename":"firewire.h","parent":"/usr/include/sound","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2697,"date":"Jan 17 13:59"},{"filename":"hdsp.h","parent":"/usr/include/sound","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3140,"date":"Jan 17 13:59"},{"filename":"hdspm.h","parent":"/usr/include/sound","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5486,"date":"Jan 17 13:59"},{"filename":"sb16_csp.h","parent":"/usr/include/sound","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4304,"date":"Jan 17 13:59"},{"filename":"sfnt_info.h","parent":"/usr/include/sound","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7494,"date":"Jan 17 13:59"},{"filename":"snd_sst_tokens.h","parent":"/usr/include/sound","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":11574,"date":"Jan 17 13:59"},{"filename":"tlv.h","parent":"/usr/include/sound","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4041,"date":"Jan 17 13:59"},{"filename":"usb_stream.h","parent":"/usr/include/sound","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1939,"date":"Jan 17 13:59"},{"filename":".","parent":"/usr/include/video","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"..","parent":"/usr/include/video","flags":"drwxr-xr-x","links":34,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"edid.h","parent":"/usr/include/video","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":213,"date":"Jan 17 13:59"},{"filename":"sisfb.h","parent":"/usr/include/video","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7643,"date":"Jan 17 13:59"},{"filename":"uvesafb.h","parent":"/usr/include/video","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1078,"date":"Jan 17 13:59"},{"filename":".","parent":"/usr/include/x86_64-linux-gnu","flags":"drwxr-xr-x","links":8,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/x86_64-linux-gnu","flags":"drwxr-xr-x","links":34,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"a.out.h","parent":"/usr/include/x86_64-linux-gnu","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4350,"date":"Apr 16 2018"},{"filename":"asm","parent":"/usr/include/x86_64-linux-gnu","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":12288,"date":"Feb 5 06:03"},{"filename":"bits","parent":"/usr/include/x86_64-linux-gnu","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":12288,"date":"Oct 18 00:14"},{"filename":"c++","parent":"/usr/include/x86_64-linux-gnu","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"expat_config.h","parent":"/usr/include/x86_64-linux-gnu","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3517,"date":"Sep 10 18:05"},{"filename":"fpu_control.h","parent":"/usr/include/x86_64-linux-gnu","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3583,"date":"Apr 16 2018"},{"filename":"gnu","parent":"/usr/include/x86_64-linux-gnu","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"ieee754.h","parent":"/usr/include/x86_64-linux-gnu","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4910,"date":"Apr 16 2018"},{"filename":"python3.6m","parent":"/usr/include/x86_64-linux-gnu","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"sys","parent":"/usr/include/x86_64-linux-gnu","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":".","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":12288,"date":"Feb 5 06:03"},{"filename":"..","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"drwxr-xr-x","links":8,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"a.out.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":756,"date":"Jan 17 13:59"},{"filename":"auxvec.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":546,"date":"Jan 17 13:59"},{"filename":"bitsperlong.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":321,"date":"Jan 17 13:59"},{"filename":"boot.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":323,"date":"Jan 17 13:59"},{"filename":"bootparam.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7141,"date":"Jan 17 13:59"},{"filename":"bpf_perf_event.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":40,"date":"Jan 17 13:59"},{"filename":"byteorder.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":176,"date":"Jan 17 13:59"},{"filename":"debugreg.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3285,"date":"Jan 17 13:59"},{"filename":"e820.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2579,"date":"Jan 17 13:59"},{"filename":"errno.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":31,"date":"Jan 17 13:59"},{"filename":"fcntl.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":31,"date":"Jan 17 13:59"},{"filename":"hw_breakpoint.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":69,"date":"Jan 17 13:59"},{"filename":"hwcap2.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":174,"date":"Jan 17 13:59"},{"filename":"hyperv.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":13035,"date":"Jan 17 13:59"},{"filename":"ioctl.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":31,"date":"Jan 17 13:59"},{"filename":"ioctls.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":32,"date":"Jan 17 13:59"},{"filename":"ipcbuf.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":32,"date":"Jan 17 13:59"},{"filename":"ist.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":854,"date":"Jan 17 13:59"},{"filename":"kvm.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7152,"date":"Jan 17 13:59"},{"filename":"kvm_para.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2976,"date":"Jan 17 13:59"},{"filename":"kvm_perf.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":388,"date":"Jan 17 13:59"},{"filename":"ldt.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1306,"date":"Jan 17 13:59"},{"filename":"mce.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1312,"date":"Jan 17 13:59"},{"filename":"mman.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1002,"date":"Jan 17 13:59"},{"filename":"msgbuf.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1053,"date":"Jan 17 13:59"},{"filename":"msr.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":346,"date":"Jan 17 13:59"},{"filename":"mtrr.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4225,"date":"Jan 17 13:59"},{"filename":"param.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":31,"date":"Jan 17 13:59"},{"filename":"perf_regs.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":717,"date":"Jan 17 13:59"},{"filename":"poll.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":30,"date":"Jan 17 13:59"},{"filename":"posix_types_32.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":765,"date":"Jan 17 13:59"},{"filename":"posix_types_64.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":609,"date":"Jan 17 13:59"},{"filename":"posix_types.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":224,"date":"Jan 17 13:59"},{"filename":"posix_types_x32.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":581,"date":"Jan 17 13:59"},{"filename":"prctl.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":418,"date":"Jan 17 13:59"},{"filename":"processor-flags.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6623,"date":"Jan 17 13:59"},{"filename":"ptrace-abi.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2037,"date":"Jan 17 13:59"},{"filename":"ptrace.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1495,"date":"Jan 17 13:59"},{"filename":"resource.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":34,"date":"Jan 17 13:59"},{"filename":"sembuf.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":777,"date":"Jan 17 13:59"},{"filename":"setup.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6,"date":"Jan 17 13:59"},{"filename":"shmbuf.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1258,"date":"Jan 17 13:59"},{"filename":"sigcontext32.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":247,"date":"Jan 17 13:59"},{"filename":"sigcontext.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9724,"date":"Jan 17 13:59"},{"filename":"siginfo.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":494,"date":"Jan 17 13:59"},{"filename":"signal.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2901,"date":"Jan 17 13:59"},{"filename":"socket.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":32,"date":"Jan 17 13:59"},{"filename":"sockios.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":33,"date":"Jan 17 13:59"},{"filename":"statfs.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":416,"date":"Jan 17 13:59"},{"filename":"stat.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3131,"date":"Jan 17 13:59"},{"filename":"svm.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7031,"date":"Jan 17 13:59"},{"filename":"swab.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":724,"date":"Jan 17 13:59"},{"filename":"termbits.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":34,"date":"Jan 17 13:59"},{"filename":"termios.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":33,"date":"Jan 17 13:59"},{"filename":"types.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":152,"date":"Jan 17 13:59"},{"filename":"ucontext.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2117,"date":"Jan 17 13:59"},{"filename":"unistd_32.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":10136,"date":"Jan 17 13:59"},{"filename":"unistd_64.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8893,"date":"Jan 17 13:59"},{"filename":"unistd.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":359,"date":"Jan 17 13:59"},{"filename":"unistd_x32.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":15666,"date":"Jan 17 13:59"},{"filename":"vm86.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3118,"date":"Jan 17 13:59"},{"filename":"vmx.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6749,"date":"Jan 17 13:59"},{"filename":"vsyscall.h","parent":"/usr/include/x86_64-linux-gnu/asm","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":263,"date":"Jan 17 13:59"},{"filename":".","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":12288,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"drwxr-xr-x","links":8,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"a.out.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":268,"date":"Apr 16 2018"},{"filename":"auxv.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3475,"date":"Apr 16 2018"},{"filename":"byteswap-16.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1731,"date":"Apr 16 2018"},{"filename":"byteswap.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5664,"date":"Apr 16 2018"},{"filename":"cmathcalls.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4138,"date":"Apr 16 2018"},{"filename":"confname.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":23708,"date":"Apr 16 2018"},{"filename":"cpu-set.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4515,"date":"Apr 16 2018"},{"filename":"dirent.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1728,"date":"Apr 16 2018"},{"filename":"dlfcn.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2520,"date":"Apr 16 2018"},{"filename":"elfclass.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":426,"date":"Apr 16 2018"},{"filename":"endian.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":176,"date":"Apr 16 2018"},{"filename":"environments.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3790,"date":"Apr 16 2018"},{"filename":"epoll.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1070,"date":"Apr 16 2018"},{"filename":"errno.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1425,"date":"Apr 16 2018"},{"filename":"error.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2683,"date":"Apr 16 2018"},{"filename":"eventfd.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1128,"date":"Apr 16 2018"},{"filename":"fcntl2.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5574,"date":"Apr 16 2018"},{"filename":"fcntl.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2245,"date":"Apr 16 2018"},{"filename":"fcntl-linux.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":14359,"date":"Apr 16 2018"},{"filename":"fenv.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4606,"date":"Apr 16 2018"},{"filename":"fenvinline.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":190,"date":"Apr 16 2018"},{"filename":"floatn-common.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9419,"date":"Apr 16 2018"},{"filename":"floatn.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4423,"date":"Apr 16 2018"},{"filename":"flt-eval-method.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1214,"date":"Apr 16 2018"},{"filename":"fp-fast.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1215,"date":"Apr 16 2018"},{"filename":"fp-logb.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1011,"date":"Apr 16 2018"},{"filename":"_G_config.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1440,"date":"Apr 16 2018"},{"filename":"getopt_core.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3666,"date":"Apr 16 2018"},{"filename":"getopt_ext.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3037,"date":"Apr 16 2018"},{"filename":"getopt_posix.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1809,"date":"Apr 16 2018"},{"filename":"hwcap.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":971,"date":"Apr 16 2018"},{"filename":"in.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9440,"date":"Apr 16 2018"},{"filename":"initspin.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":25,"date":"Apr 16 2018"},{"filename":"inotify.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1079,"date":"Apr 16 2018"},{"filename":"ioctls.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4477,"date":"Apr 16 2018"},{"filename":"ioctl-types.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2455,"date":"Apr 16 2018"},{"filename":"ipc.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2070,"date":"Apr 16 2018"},{"filename":"ipctypes.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1175,"date":"Apr 16 2018"},{"filename":"iscanonical.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2478,"date":"Apr 16 2018"},{"filename":"libc-header-start.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2607,"date":"Apr 16 2018"},{"filename":"libio.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":17221,"date":"Apr 16 2018"},{"filename":"libio-ldbl.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1086,"date":"Apr 16 2018"},{"filename":"libm-simd-decl-stubs.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3003,"date":"Apr 16 2018"},{"filename":"link.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4285,"date":"Apr 16 2018"},{"filename":"locale.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1367,"date":"Apr 16 2018"},{"filename":"local_lim.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3184,"date":"Apr 16 2018"},{"filename":"long-double.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":923,"date":"Apr 16 2018"},{"filename":"mathcalls.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":13114,"date":"Apr 16 2018"},{"filename":"mathcalls-helper-functions.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1764,"date":"Apr 16 2018"},{"filename":"mathdef.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":890,"date":"Apr 16 2018"},{"filename":"math-finite.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5374,"date":"Apr 16 2018"},{"filename":"mathinline.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":27180,"date":"Apr 16 2018"},{"filename":"math-vector.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2307,"date":"Apr 16 2018"},{"filename":"mman.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1872,"date":"Apr 16 2018"},{"filename":"mman-linux.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4802,"date":"Apr 16 2018"},{"filename":"mman-shared.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2736,"date":"Apr 16 2018"},{"filename":"monetary-ldbl.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1046,"date":"Apr 16 2018"},{"filename":"mqueue2.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2150,"date":"Apr 16 2018"},{"filename":"mqueue.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1245,"date":"Apr 16 2018"},{"filename":"msq.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2612,"date":"Apr 16 2018"},{"filename":"netdb.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1263,"date":"Apr 16 2018"},{"filename":"param.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1432,"date":"Apr 16 2018"},{"filename":"poll2.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2936,"date":"Apr 16 2018"},{"filename":"poll.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2075,"date":"Apr 16 2018"},{"filename":"posix1_lim.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4922,"date":"Apr 16 2018"},{"filename":"posix2_lim.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2866,"date":"Apr 16 2018"},{"filename":"posix_opt.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5705,"date":"Apr 16 2018"},{"filename":"printf-ldbl.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":991,"date":"Apr 16 2018"},{"filename":"pthreadtypes-arch.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3290,"date":"Apr 16 2018"},{"filename":"pthreadtypes.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3071,"date":"Apr 16 2018"},{"filename":"ptrace-shared.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2696,"date":"Apr 16 2018"},{"filename":"resource.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6298,"date":"Apr 16 2018"},{"filename":"sched.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3811,"date":"Apr 16 2018"},{"filename":"select2.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1437,"date":"Apr 16 2018"},{"filename":"select.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2105,"date":"Apr 16 2018"},{"filename":"semaphore.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1237,"date":"Apr 16 2018"},{"filename":"sem.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2594,"date":"Apr 16 2018"},{"filename":"setjmp2.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1704,"date":"Apr 16 2018"},{"filename":"setjmp.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1286,"date":"Apr 16 2018"},{"filename":"shm.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3566,"date":"Apr 16 2018"},{"filename":"sigaction.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2871,"date":"Apr 16 2018"},{"filename":"sigcontext.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4264,"date":"Apr 16 2018"},{"filename":"sigevent-consts.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1470,"date":"Apr 16 2018"},{"filename":"siginfo-arch.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":729,"date":"Apr 16 2018"},{"filename":"siginfo-consts-arch.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":204,"date":"Apr 16 2018"},{"filename":"siginfo-consts.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5973,"date":"Apr 16 2018"},{"filename":"signalfd.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1066,"date":"Apr 16 2018"},{"filename":"signum-generic.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4340,"date":"Apr 16 2018"},{"filename":"signum.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1633,"date":"Apr 16 2018"},{"filename":"sigstack.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1167,"date":"Apr 16 2018"},{"filename":"sigthread.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1691,"date":"Apr 16 2018"},{"filename":"sockaddr.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1513,"date":"Apr 16 2018"},{"filename":"socket2.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3025,"date":"Apr 16 2018"},{"filename":"socket.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":14322,"date":"Apr 16 2018"},{"filename":"socket_type.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2215,"date":"Apr 16 2018"},{"filename":"ss_flags.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1187,"date":"Apr 16 2018"},{"filename":"stab.def","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9039,"date":"Apr 16 2018"},{"filename":"statfs.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1916,"date":"Apr 16 2018"},{"filename":"stat.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7619,"date":"Apr 16 2018"},{"filename":"statvfs.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3422,"date":"Apr 16 2018"},{"filename":"stdint-intn.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1036,"date":"Apr 16 2018"},{"filename":"stdint-uintn.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1048,"date":"Apr 16 2018"},{"filename":"stdio2.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":12547,"date":"Apr 16 2018"},{"filename":"stdio.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5492,"date":"Apr 16 2018"},{"filename":"stdio-ldbl.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3013,"date":"Apr 16 2018"},{"filename":"stdio_lim.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1212,"date":"Apr 16 2018"},{"filename":"stdlib-bsearch.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1377,"date":"Apr 16 2018"},{"filename":"stdlib-float.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1114,"date":"Apr 16 2018"},{"filename":"stdlib.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5658,"date":"Apr 16 2018"},{"filename":"stdlib-ldbl.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1372,"date":"Apr 16 2018"},{"filename":"string_fortified.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4313,"date":"Apr 16 2018"},{"filename":"strings_fortified.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1208,"date":"Apr 16 2018"},{"filename":"stropts.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8453,"date":"Apr 16 2018"},{"filename":"syscall.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":40539,"date":"Apr 16 2018"},{"filename":"sysctl.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":898,"date":"Apr 16 2018"},{"filename":"sys_errlist.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1215,"date":"Apr 16 2018"},{"filename":"syslog.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1684,"date":"Apr 16 2018"},{"filename":"syslog-ldbl.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1205,"date":"Apr 16 2018"},{"filename":"syslog-path.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1060,"date":"Apr 16 2018"},{"filename":"sysmacros.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2952,"date":"Apr 16 2018"},{"filename":"termios.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5363,"date":"Apr 16 2018"},{"filename":"thread-shared-types.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5610,"date":"Apr 16 2018"},{"filename":"time.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2998,"date":"Apr 16 2018"},{"filename":"timerfd.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1102,"date":"Apr 16 2018"},{"filename":"timex.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4595,"date":"Apr 16 2018"},{"filename":"types","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"types.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7990,"date":"Apr 16 2018"},{"filename":"typesizes.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3397,"date":"Apr 16 2018"},{"filename":"uintn-identity.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1541,"date":"Apr 16 2018"},{"filename":"uio-ext.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1868,"date":"Apr 16 2018"},{"filename":"uio_lim.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1384,"date":"Apr 16 2018"},{"filename":"unistd.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":13315,"date":"Apr 16 2018"},{"filename":"ustat.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1089,"date":"Apr 16 2018"},{"filename":"utmp.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4053,"date":"Apr 16 2018"},{"filename":"utmpx.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3465,"date":"Apr 16 2018"},{"filename":"utsname.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1212,"date":"Apr 16 2018"},{"filename":"waitflags.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2217,"date":"Apr 16 2018"},{"filename":"waitstatus.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2286,"date":"Apr 16 2018"},{"filename":"wchar2.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":20505,"date":"Apr 16 2018"},{"filename":"wchar.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1905,"date":"Apr 16 2018"},{"filename":"wchar-ldbl.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2423,"date":"Apr 16 2018"},{"filename":"wctype-wchar.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6301,"date":"Apr 16 2018"},{"filename":"wordsize.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":442,"date":"Apr 16 2018"},{"filename":"xopen_lim.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3857,"date":"Apr 16 2018"},{"filename":"xtitypes.h","parent":"/usr/include/x86_64-linux-gnu/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1214,"date":"Apr 16 2018"},{"filename":".","parent":"/usr/include/x86_64-linux-gnu/bits/types","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/x86_64-linux-gnu/bits/types","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":12288,"date":"Oct 18 00:14"},{"filename":"clockid_t.h","parent":"/usr/include/x86_64-linux-gnu/bits/types","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":174,"date":"Apr 16 2018"},{"filename":"clock_t.h","parent":"/usr/include/x86_64-linux-gnu/bits/types","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":143,"date":"Apr 16 2018"},{"filename":"__FILE.h","parent":"/usr/include/x86_64-linux-gnu/bits/types","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":110,"date":"Apr 16 2018"},{"filename":"FILE.h","parent":"/usr/include/x86_64-linux-gnu/bits/types","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":180,"date":"Apr 16 2018"},{"filename":"__locale_t.h","parent":"/usr/include/x86_64-linux-gnu/bits/types","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1721,"date":"Apr 16 2018"},{"filename":"locale_t.h","parent":"/usr/include/x86_64-linux-gnu/bits/types","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":982,"date":"Apr 16 2018"},{"filename":"__mbstate_t.h","parent":"/usr/include/x86_64-linux-gnu/bits/types","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":564,"date":"Apr 16 2018"},{"filename":"mbstate_t.h","parent":"/usr/include/x86_64-linux-gnu/bits/types","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":135,"date":"Apr 16 2018"},{"filename":"res_state.h","parent":"/usr/include/x86_64-linux-gnu/bits/types","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2009,"date":"Apr 16 2018"},{"filename":"sig_atomic_t.h","parent":"/usr/include/x86_64-linux-gnu/bits/types","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":272,"date":"Apr 16 2018"},{"filename":"sigevent_t.h","parent":"/usr/include/x86_64-linux-gnu/bits/types","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1204,"date":"Apr 16 2018"},{"filename":"siginfo_t.h","parent":"/usr/include/x86_64-linux-gnu/bits/types","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3886,"date":"Apr 16 2018"},{"filename":"__sigset_t.h","parent":"/usr/include/x86_64-linux-gnu/bits/types","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":206,"date":"Apr 16 2018"},{"filename":"sigset_t.h","parent":"/usr/include/x86_64-linux-gnu/bits/types","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":195,"date":"Apr 16 2018"},{"filename":"__sigval_t.h","parent":"/usr/include/x86_64-linux-gnu/bits/types","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1147,"date":"Apr 16 2018"},{"filename":"sigval_t.h","parent":"/usr/include/x86_64-linux-gnu/bits/types","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":599,"date":"Apr 16 2018"},{"filename":"stack_t.h","parent":"/usr/include/x86_64-linux-gnu/bits/types","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1061,"date":"Apr 16 2018"},{"filename":"struct_iovec.h","parent":"/usr/include/x86_64-linux-gnu/bits/types","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1065,"date":"Apr 16 2018"},{"filename":"struct_itimerspec.h","parent":"/usr/include/x86_64-linux-gnu/bits/types","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":288,"date":"Apr 16 2018"},{"filename":"struct_osockaddr.h","parent":"/usr/include/x86_64-linux-gnu/bits/types","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":274,"date":"Apr 16 2018"},{"filename":"struct_rusage.h","parent":"/usr/include/x86_64-linux-gnu/bits/types","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4076,"date":"Apr 16 2018"},{"filename":"struct_sigstack.h","parent":"/usr/include/x86_64-linux-gnu/bits/types","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1072,"date":"Apr 16 2018"},{"filename":"struct_timespec.h","parent":"/usr/include/x86_64-linux-gnu/bits/types","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":321,"date":"Apr 16 2018"},{"filename":"struct_timeval.h","parent":"/usr/include/x86_64-linux-gnu/bits/types","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":287,"date":"Apr 16 2018"},{"filename":"struct_tm.h","parent":"/usr/include/x86_64-linux-gnu/bits/types","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":760,"date":"Apr 16 2018"},{"filename":"timer_t.h","parent":"/usr/include/x86_64-linux-gnu/bits/types","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":159,"date":"Apr 16 2018"},{"filename":"time_t.h","parent":"/usr/include/x86_64-linux-gnu/bits/types","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":138,"date":"Apr 16 2018"},{"filename":"wint_t.h","parent":"/usr/include/x86_64-linux-gnu/bits/types","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":796,"date":"Apr 16 2018"},{"filename":".","parent":"/usr/include/x86_64-linux-gnu/c++","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/x86_64-linux-gnu/c++","flags":"drwxr-xr-x","links":8,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"7","parent":"/usr/include/x86_64-linux-gnu/c++","flags":"drwxr-xr-x","links":4,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"7.4.0","link_to":"7","parent":"/usr/include/x86_64-linux-gnu/c++","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":1,"date":"May 8 2019"},{"filename":".","parent":"/usr/include/x86_64-linux-gnu/c++/7","flags":"drwxr-xr-x","links":4,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/x86_64-linux-gnu/c++/7","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"bits","parent":"/usr/include/x86_64-linux-gnu/c++/7","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"ext","parent":"/usr/include/x86_64-linux-gnu/c++/7","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":".","parent":"/usr/include/x86_64-linux-gnu/c++/7/bits","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/x86_64-linux-gnu/c++/7/bits","flags":"drwxr-xr-x","links":4,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"atomic_word.h","parent":"/usr/include/x86_64-linux-gnu/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1518,"date":"May 8 2019"},{"filename":"basic_file.h","parent":"/usr/include/x86_64-linux-gnu/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3442,"date":"May 8 2019"},{"filename":"c++allocator.h","parent":"/usr/include/x86_64-linux-gnu/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1849,"date":"May 8 2019"},{"filename":"c++config.h","parent":"/usr/include/x86_64-linux-gnu/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":58031,"date":"May 8 2019"},{"filename":"c++io.h","parent":"/usr/include/x86_64-linux-gnu/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1608,"date":"May 8 2019"},{"filename":"c++locale.h","parent":"/usr/include/x86_64-linux-gnu/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3307,"date":"May 8 2019"},{"filename":"cpu_defines.h","parent":"/usr/include/x86_64-linux-gnu/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1333,"date":"May 8 2019"},{"filename":"ctype_base.h","parent":"/usr/include/x86_64-linux-gnu/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2316,"date":"May 8 2019"},{"filename":"ctype_inline.h","parent":"/usr/include/x86_64-linux-gnu/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2284,"date":"May 8 2019"},{"filename":"cxxabi_tweaks.h","parent":"/usr/include/x86_64-linux-gnu/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2096,"date":"May 8 2019"},{"filename":"error_constants.h","parent":"/usr/include/x86_64-linux-gnu/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5175,"date":"May 8 2019"},{"filename":"extc++.h","parent":"/usr/include/x86_64-linux-gnu/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2661,"date":"May 8 2019"},{"filename":"gthr-default.h","parent":"/usr/include/x86_64-linux-gnu/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":24237,"date":"May 8 2019"},{"filename":"gthr.h","parent":"/usr/include/x86_64-linux-gnu/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5608,"date":"May 8 2019"},{"filename":"gthr-posix.h","parent":"/usr/include/x86_64-linux-gnu/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":24237,"date":"May 8 2019"},{"filename":"gthr-single.h","parent":"/usr/include/x86_64-linux-gnu/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6808,"date":"May 8 2019"},{"filename":"messages_members.h","parent":"/usr/include/x86_64-linux-gnu/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4516,"date":"May 8 2019"},{"filename":"opt_random.h","parent":"/usr/include/x86_64-linux-gnu/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6194,"date":"May 8 2019"},{"filename":"os_defines.h","parent":"/usr/include/x86_64-linux-gnu/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2007,"date":"May 8 2019"},{"filename":"stdc++.h","parent":"/usr/include/x86_64-linux-gnu/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2874,"date":"May 8 2019"},{"filename":"stdtr1c++.h","parent":"/usr/include/x86_64-linux-gnu/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1741,"date":"May 8 2019"},{"filename":"time_members.h","parent":"/usr/include/x86_64-linux-gnu/c++/7/bits","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2924,"date":"May 8 2019"},{"filename":".","parent":"/usr/include/x86_64-linux-gnu/c++/7/ext","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/x86_64-linux-gnu/c++/7/ext","flags":"drwxr-xr-x","links":4,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"opt_random.h","parent":"/usr/include/x86_64-linux-gnu/c++/7/ext","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4756,"date":"May 8 2019"},{"filename":".","parent":"/usr/include/x86_64-linux-gnu/gnu","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/x86_64-linux-gnu/gnu","flags":"drwxr-xr-x","links":8,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"libc-version.h","parent":"/usr/include/x86_64-linux-gnu/gnu","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1263,"date":"Apr 16 2018"},{"filename":"lib-names-64.h","parent":"/usr/include/x86_64-linux-gnu/gnu","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1720,"date":"Apr 16 2018"},{"filename":"lib-names.h","parent":"/usr/include/x86_64-linux-gnu/gnu","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":467,"date":"Apr 16 2018"},{"filename":"stubs-64.h","parent":"/usr/include/x86_64-linux-gnu/gnu","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":613,"date":"Apr 16 2018"},{"filename":"stubs.h","parent":"/usr/include/x86_64-linux-gnu/gnu","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":384,"date":"Apr 16 2018"},{"filename":".","parent":"/usr/include/x86_64-linux-gnu/python3.6m","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/x86_64-linux-gnu/python3.6m","flags":"drwxr-xr-x","links":8,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"pyconfig.h","parent":"/usr/include/x86_64-linux-gnu/python3.6m","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":44045,"date":"Oct 7 12:59"},{"filename":".","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"drwxr-xr-x","links":8,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"acct.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3296,"date":"Apr 16 2018"},{"filename":"auxv.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1282,"date":"Apr 16 2018"},{"filename":"bitypes.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":86,"date":"Apr 16 2018"},{"filename":"cdefs.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":17622,"date":"Apr 16 2018"},{"filename":"debugreg.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3575,"date":"Apr 16 2018"},{"filename":"dir.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":921,"date":"Apr 16 2018"},{"filename":"elf.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1023,"date":"Apr 16 2018"},{"filename":"epoll.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4410,"date":"Apr 16 2018"},{"filename":"errno.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":19,"date":"Apr 16 2018"},{"filename":"eventfd.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1399,"date":"Apr 16 2018"},{"filename":"fanotify.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1291,"date":"Apr 16 2018"},{"filename":"fcntl.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":19,"date":"Apr 16 2018"},{"filename":"file.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1721,"date":"Apr 16 2018"},{"filename":"fsuid.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1187,"date":"Apr 16 2018"},{"filename":"gmon.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6210,"date":"Apr 16 2018"},{"filename":"gmon_out.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2635,"date":"Apr 16 2018"},{"filename":"inotify.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3837,"date":"Apr 16 2018"},{"filename":"ioctl.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1739,"date":"Apr 16 2018"},{"filename":"io.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5085,"date":"Apr 16 2018"},{"filename":"ipc.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1461,"date":"Apr 16 2018"},{"filename":"kd.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1111,"date":"Apr 16 2018"},{"filename":"klog.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1203,"date":"Apr 16 2018"},{"filename":"mman.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5551,"date":"Apr 16 2018"},{"filename":"mount.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5611,"date":"Apr 16 2018"},{"filename":"msg.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2365,"date":"Apr 16 2018"},{"filename":"mtio.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":11162,"date":"Apr 16 2018"},{"filename":"param.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3148,"date":"Apr 16 2018"},{"filename":"pci.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":922,"date":"Apr 16 2018"},{"filename":"perm.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1126,"date":"Apr 16 2018"},{"filename":"personality.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2722,"date":"Apr 16 2018"},{"filename":"poll.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2549,"date":"Apr 16 2018"},{"filename":"prctl.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1058,"date":"Apr 16 2018"},{"filename":"procfs.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4985,"date":"Apr 16 2018"},{"filename":"profil.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1958,"date":"Apr 16 2018"},{"filename":"ptrace.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5841,"date":"Apr 16 2018"},{"filename":"queue.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":19539,"date":"Apr 16 2018"},{"filename":"quota.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5170,"date":"Apr 16 2018"},{"filename":"random.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1443,"date":"Apr 16 2018"},{"filename":"raw.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1181,"date":"Apr 16 2018"},{"filename":"reboot.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1632,"date":"Apr 16 2018"},{"filename":"reg.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1826,"date":"Apr 16 2018"},{"filename":"resource.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3645,"date":"Apr 16 2018"},{"filename":"select.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4140,"date":"Apr 16 2018"},{"filename":"sem.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2036,"date":"Apr 16 2018"},{"filename":"sendfile.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1805,"date":"Apr 16 2018"},{"filename":"shm.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1873,"date":"Apr 16 2018"},{"filename":"signalfd.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1599,"date":"Apr 16 2018"},{"filename":"signal.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":20,"date":"Apr 16 2018"},{"filename":"socket.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":10203,"date":"Apr 16 2018"},{"filename":"socketvar.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":141,"date":"Apr 16 2018"},{"filename":"soundcard.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":29,"date":"Apr 16 2018"},{"filename":"statfs.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2093,"date":"Apr 16 2018"},{"filename":"stat.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":16186,"date":"Apr 16 2018"},{"filename":"statvfs.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2819,"date":"Apr 16 2018"},{"filename":"stropts.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":21,"date":"Apr 16 2018"},{"filename":"swap.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1592,"date":"Apr 16 2018"},{"filename":"syscall.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1335,"date":"Apr 16 2018"},{"filename":"sysctl.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2004,"date":"Apr 16 2018"},{"filename":"sysinfo.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1517,"date":"Apr 16 2018"},{"filename":"syslog.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7702,"date":"Apr 16 2018"},{"filename":"sysmacros.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4030,"date":"Apr 16 2018"},{"filename":"termios.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":74,"date":"Apr 16 2018"},{"filename":"timeb.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1376,"date":"Apr 16 2018"},{"filename":"time.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6656,"date":"Apr 16 2018"},{"filename":"timerfd.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1873,"date":"Apr 16 2018"},{"filename":"times.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1596,"date":"Apr 16 2018"},{"filename":"timex.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2205,"date":"Apr 16 2018"},{"filename":"ttychars.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2499,"date":"Apr 16 2018"},{"filename":"ttydefaults.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3568,"date":"Apr 16 2018"},{"filename":"types.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6584,"date":"Apr 16 2018"},{"filename":"ucontext.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5758,"date":"Apr 16 2018"},{"filename":"uio.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6279,"date":"Apr 16 2018"},{"filename":"un.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1452,"date":"Apr 16 2018"},{"filename":"unistd.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":20,"date":"Apr 16 2018"},{"filename":"user.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5207,"date":"Apr 16 2018"},{"filename":"ustat.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1140,"date":"Apr 16 2018"},{"filename":"utsname.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2480,"date":"Apr 16 2018"},{"filename":"vfs.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":161,"date":"Apr 16 2018"},{"filename":"vlimit.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1879,"date":"Apr 16 2018"},{"filename":"vm86.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1198,"date":"Apr 16 2018"},{"filename":"vt.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":22,"date":"Apr 16 2018"},{"filename":"vtimes.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2462,"date":"Apr 16 2018"},{"filename":"wait.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5312,"date":"Apr 16 2018"},{"filename":"xattr.h","parent":"/usr/include/x86_64-linux-gnu/sys","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4274,"date":"Apr 16 2018"},{"filename":".","parent":"/usr/include/xen","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"..","parent":"/usr/include/xen","flags":"drwxr-xr-x","links":34,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"evtchn.h","parent":"/usr/include/xen","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3553,"date":"Jan 17 13:59"},{"filename":"gntalloc.h","parent":"/usr/include/xen","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2619,"date":"Jan 17 13:59"},{"filename":"gntdev.h","parent":"/usr/include/xen","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7322,"date":"Jan 17 13:59"},{"filename":"privcmd.h","parent":"/usr/include/xen","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3992,"date":"Jan 17 13:59"},{"filename":".","parent":"/usr/include/xfs","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Apr 18 2018"},{"filename":"..","parent":"/usr/include/xfs","flags":"drwxr-xr-x","links":34,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":".","parent":"/usr/lib","flags":"drwxr-xr-x","links":65,"owner":"root","group":"root","size":4096,"date":"Oct 30 21:02"},{"filename":"..","parent":"/usr/lib","flags":"drwxr-xr-x","links":10,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"accountsservice","parent":"/usr/lib","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"apt","parent":"/usr/lib","flags":"drwxr-xr-x","links":5,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"bfd-plugins","parent":"/usr/lib","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"binfmt.d","parent":"/usr/lib","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Apr 20 2018"},{"filename":"byobu","parent":"/usr/lib","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"cloud-init","parent":"/usr/lib","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"cnf-update-db","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":684,"date":"May 5 2018"},{"filename":"command-not-found","parent":"/usr/lib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3300,"date":"May 5 2018"},{"filename":"compat-ld","parent":"/usr/lib","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:13"},{"filename":"dbus-1.0","parent":"/usr/lib","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"dpkg","parent":"/usr/lib","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"dracut","parent":"/usr/lib","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"eject","parent":"/usr/lib","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"environment.d","parent":"/usr/lib","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 6 06:24"},{"filename":"file","parent":"/usr/lib","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 30 20:26"},{"filename":"gcc","parent":"/usr/lib","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Apr 16 2018"},{"filename":"git-core","parent":"/usr/lib","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":20480,"date":"Dec 16 22:19"},{"filename":"gnupg","parent":"/usr/lib","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"gnupg2","parent":"/usr/lib","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"gold-ld","parent":"/usr/lib","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:13"},{"filename":"groff","parent":"/usr/lib","flags":"drwxr-xr-x","links":4,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"grub","parent":"/usr/lib","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 12 2019"},{"filename":"grub-legacy","parent":"/usr/lib","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 12 2019"},{"filename":"initcpio","parent":"/usr/lib","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"initramfs-tools","parent":"/usr/lib","flags":"drwxr-xr-x","links":4,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"kernel","parent":"/usr/lib","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"klibc","parent":"/usr/lib","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"language-selector","parent":"/usr/lib","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"libDeployPkg.so.0","link_to":"libDeployPkg.so.0.0.0","parent":"/usr/lib","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"May 14 2019"},{"filename":"libDeployPkg.so.0.0.0","parent":"/usr/lib","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":31296,"date":"May 14 2019"},{"filename":"libguestlib.so.0","link_to":"libguestlib.so.0.0.0","parent":"/usr/lib","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":20,"date":"May 14 2019"},{"filename":"libguestlib.so.0.0.0","parent":"/usr/lib","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":22656,"date":"May 14 2019"},{"filename":"libhgfs.so.0","link_to":"libhgfs.so.0.0.0","parent":"/usr/lib","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":16,"date":"May 14 2019"},{"filename":"libhgfs.so.0.0.0","parent":"/usr/lib","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":163152,"date":"May 14 2019"},{"filename":"libvgauth.so.0","link_to":"libvgauth.so.0.0.0","parent":"/usr/lib","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":18,"date":"May 14 2019"},{"filename":"libvgauth.so.0.0.0","parent":"/usr/lib","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":85144,"date":"May 14 2019"},{"filename":"libvmtools.so.0","link_to":"libvmtools.so.0.0.0","parent":"/usr/lib","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":19,"date":"May 14 2019"},{"filename":"libvmtools.so.0.0.0","parent":"/usr/lib","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":623592,"date":"May 14 2019"},{"filename":"linux","parent":"/usr/lib","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 12 2019"},{"filename":"linux-boot-probes","parent":"/usr/lib","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 12 2019"},{"filename":"locale","parent":"/usr/lib","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 12 2019"},{"filename":"lxcfs","parent":"/usr/lib","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"lxd","parent":"/usr/lib","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"man-db","parent":"/usr/lib","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"mime","parent":"/usr/lib","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"modules-load.d","parent":"/usr/lib","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Apr 20 2018"},{"filename":"networkd-dispatcher","parent":"/usr/lib","flags":"drwxr-xr-x","links":6,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"openssh","parent":"/usr/lib","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 12 2019"},{"filename":"open-vm-tools","parent":"/usr/lib","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"os-prober","parent":"/usr/lib","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 12 2019"},{"filename":"os-probes","parent":"/usr/lib","flags":"drwxr-xr-x","links":4,"owner":"root","group":"root","size":4096,"date":"Aug 12 2019"},{"filename":"os-release","parent":"/usr/lib","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":386,"date":"Aug 5 2019"},{"filename":"pm-utils","parent":"/usr/lib","flags":"drwxr-xr-x","links":4,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"policykit-1","parent":"/usr/lib","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"python2.7","parent":"/usr/lib","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"python3","parent":"/usr/lib","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"python3.6","parent":"/usr/lib","flags":"drwxr-xr-x","links":30,"owner":"root","group":"root","size":20480,"date":"Oct 18 00:14"},{"filename":"python3.7","parent":"/usr/lib","flags":"drwxr-xr-x","links":5,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"rsyslog","parent":"/usr/lib","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"sasl2","parent":"/usr/lib","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 2018"},{"filename":"sftp-server","link_to":"openssh/sftp-server","parent":"/usr/lib","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":19,"date":"Mar 4 2019"},{"filename":"snapd","parent":"/usr/lib","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"software-properties","parent":"/usr/lib","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 14 2019"},{"filename":"ssl","parent":"/usr/lib","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Nov 20 07:00"},{"filename":"sudo","parent":"/usr/lib","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"sysctl.d","parent":"/usr/lib","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 6 06:24"},{"filename":"sysstat","parent":"/usr/lib","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:03"},{"filename":"systemd","parent":"/usr/lib","flags":"drwxr-xr-x","links":11,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"sysusers.d","parent":"/usr/lib","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"tar","parent":"/usr/lib","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Jul 21 2017"},{"filename":"tc","parent":"/usr/lib","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"tmpfiles.d","parent":"/usr/lib","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 6 06:24"},{"filename":"ubuntu-fan","parent":"/usr/lib","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 14 2019"},{"filename":"ubuntu-release-upgrader","parent":"/usr/lib","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"update-notifier","parent":"/usr/lib","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"valgrind","parent":"/usr/lib","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"x86_64-linux-gnu","parent":"/usr/lib","flags":"drwxr-xr-x","links":27,"owner":"root","group":"root","size":20480,"date":"Feb 14 02:07"},{"filename":".","parent":"/usr/lib/accountsservice","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"..","parent":"/usr/lib/accountsservice","flags":"drwxr-xr-x","links":65,"owner":"root","group":"root","size":4096,"date":"Oct 30 21:02"},{"filename":"accounts-daemon","parent":"/usr/lib/accountsservice","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":182552,"date":"Dec 18 2017"},{"filename":".","parent":"/usr/lib/apt","flags":"drwxr-xr-x","links":5,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"..","parent":"/usr/lib/apt","flags":"drwxr-xr-x","links":65,"owner":"root","group":"root","size":4096,"date":"Oct 30 21:02"},{"filename":"apt-helper","parent":"/usr/lib/apt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31040,"date":"May 7 2019"},{"filename":"apt.systemd.daily","parent":"/usr/lib/apt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":16026,"date":"May 7 2019"},{"filename":"methods","parent":"/usr/lib/apt","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"planners","parent":"/usr/lib/apt","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"solvers","parent":"/usr/lib/apt","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":".","parent":"/usr/lib/apt/methods","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"..","parent":"/usr/lib/apt/methods","flags":"drwxr-xr-x","links":5,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"cdrom","parent":"/usr/lib/apt/methods","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":55456,"date":"May 7 2019"},{"filename":"copy","parent":"/usr/lib/apt/methods","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39072,"date":"May 7 2019"},{"filename":"file","parent":"/usr/lib/apt/methods","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39072,"date":"May 7 2019"},{"filename":"ftp","parent":"/usr/lib/apt/methods","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":116992,"date":"May 7 2019"},{"filename":"gpgv","parent":"/usr/lib/apt/methods","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":75936,"date":"May 7 2019"},{"filename":"http","parent":"/usr/lib/apt/methods","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":166056,"date":"May 7 2019"},{"filename":"https","link_to":"http","parent":"/usr/lib/apt/methods","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"May 7 2019"},{"filename":"mirror","parent":"/usr/lib/apt/methods","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":100512,"date":"May 7 2019"},{"filename":"mirror+copy","link_to":"mirror","parent":"/usr/lib/apt/methods","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"May 7 2019"},{"filename":"mirror+file","link_to":"mirror","parent":"/usr/lib/apt/methods","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"May 7 2019"},{"filename":"mirror+ftp","link_to":"mirror","parent":"/usr/lib/apt/methods","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"May 7 2019"},{"filename":"mirror+http","link_to":"mirror","parent":"/usr/lib/apt/methods","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"May 7 2019"},{"filename":"mirror+https","link_to":"mirror","parent":"/usr/lib/apt/methods","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"May 7 2019"},{"filename":"rred","parent":"/usr/lib/apt/methods","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":67744,"date":"May 7 2019"},{"filename":"rsh","parent":"/usr/lib/apt/methods","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":51376,"date":"May 7 2019"},{"filename":"ssh","link_to":"rsh","parent":"/usr/lib/apt/methods","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"May 7 2019"},{"filename":"store","parent":"/usr/lib/apt/methods","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43168,"date":"May 7 2019"},{"filename":".","parent":"/usr/lib/apt/planners","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"..","parent":"/usr/lib/apt/planners","flags":"drwxr-xr-x","links":5,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"apt","parent":"/usr/lib/apt/planners","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18592,"date":"May 7 2019"},{"filename":"dump","link_to":"../solvers/dump","parent":"/usr/lib/apt/planners","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":15,"date":"May 7 2019"},{"filename":".","parent":"/usr/lib/apt/solvers","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"..","parent":"/usr/lib/apt/solvers","flags":"drwxr-xr-x","links":5,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"apt","parent":"/usr/lib/apt/solvers","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22688,"date":"May 7 2019"},{"filename":"dump","parent":"/usr/lib/apt/solvers","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18520,"date":"May 7 2019"},{"filename":".","parent":"/usr/lib/bfd-plugins","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/lib/bfd-plugins","flags":"drwxr-xr-x","links":65,"owner":"root","group":"root","size":4096,"date":"Oct 30 21:02"},{"filename":"liblto_plugin.so","link_to":"../gcc/x86_64-linux-gnu/7/liblto_plugin.so","parent":"/usr/lib/bfd-plugins","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":42,"date":"May 20 2019"},{"filename":".","parent":"/usr/lib/binfmt.d","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Apr 20 2018"},{"filename":"..","parent":"/usr/lib/binfmt.d","flags":"drwxr-xr-x","links":65,"owner":"root","group":"root","size":4096,"date":"Oct 30 21:02"},{"filename":".","parent":"/usr/lib/byobu","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"..","parent":"/usr/lib/byobu","flags":"drwxr-xr-x","links":65,"owner":"root","group":"root","size":4096,"date":"Oct 30 21:02"},{"filename":"apport","parent":"/usr/lib/byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1543,"date":"Dec 4 2017"},{"filename":"arch","parent":"/usr/lib/byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":916,"date":"Dec 4 2017"},{"filename":"battery","parent":"/usr/lib/byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4202,"date":"Dec 4 2017"},{"filename":"color","parent":"/usr/lib/byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1061,"date":"Dec 4 2017"},{"filename":"cpu_count","parent":"/usr/lib/byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1055,"date":"Dec 4 2017"},{"filename":"cpu_freq","parent":"/usr/lib/byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1882,"date":"Dec 4 2017"},{"filename":"cpu_temp","parent":"/usr/lib/byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1828,"date":"Dec 4 2017"},{"filename":"custom","parent":"/usr/lib/byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1927,"date":"Dec 4 2017"},{"filename":"date","parent":"/usr/lib/byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":990,"date":"Dec 4 2017"},{"filename":"disk","parent":"/usr/lib/byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1846,"date":"Dec 4 2017"},{"filename":"disk_io","parent":"/usr/lib/byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2991,"date":"Dec 4 2017"},{"filename":"distro","parent":"/usr/lib/byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1060,"date":"Dec 4 2017"},{"filename":"ec2_cost","parent":"/usr/lib/byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4316,"date":"Dec 4 2017"},{"filename":"entropy","parent":"/usr/lib/byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1089,"date":"Dec 4 2017"},{"filename":"fan_speed","parent":"/usr/lib/byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1894,"date":"Dec 4 2017"},{"filename":"hostname","parent":"/usr/lib/byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1329,"date":"Dec 4 2017"},{"filename":"include","parent":"/usr/lib/byobu","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"ip_address","parent":"/usr/lib/byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3097,"date":"Dec 4 2017"},{"filename":"load_average","parent":"/usr/lib/byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1123,"date":"Dec 4 2017"},{"filename":"logo","parent":"/usr/lib/byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4009,"date":"Dec 4 2017"},{"filename":"mail","parent":"/usr/lib/byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1337,"date":"Dec 4 2017"},{"filename":"memory","parent":"/usr/lib/byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2675,"date":"Dec 4 2017"},{"filename":"menu","parent":"/usr/lib/byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1651,"date":"Dec 4 2017"},{"filename":"network","parent":"/usr/lib/byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3172,"date":"Dec 4 2017"},{"filename":"processes","parent":"/usr/lib/byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1152,"date":"Dec 4 2017"},{"filename":"raid","parent":"/usr/lib/byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1434,"date":"Dec 4 2017"},{"filename":"rcs_cost","parent":"/usr/lib/byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3639,"date":"Dec 4 2017"},{"filename":"reboot_required","parent":"/usr/lib/byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2206,"date":"Dec 4 2017"},{"filename":"release","parent":"/usr/lib/byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1872,"date":"Dec 4 2017"},{"filename":"services","parent":"/usr/lib/byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2135,"date":"Dec 4 2017"},{"filename":"session","parent":"/usr/lib/byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1311,"date":"Dec 4 2017"},{"filename":"swap","parent":"/usr/lib/byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1792,"date":"Dec 4 2017"},{"filename":"time","parent":"/usr/lib/byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1081,"date":"Dec 4 2017"},{"filename":"time_binary","parent":"/usr/lib/byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4278,"date":"Dec 4 2017"},{"filename":"time_utc","parent":"/usr/lib/byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":960,"date":"Dec 4 2017"},{"filename":"trash","parent":"/usr/lib/byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1159,"date":"Dec 4 2017"},{"filename":"updates_available","parent":"/usr/lib/byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":5151,"date":"Dec 4 2017"},{"filename":"uptime","parent":"/usr/lib/byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1676,"date":"Dec 4 2017"},{"filename":"users","parent":"/usr/lib/byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1550,"date":"Dec 4 2017"},{"filename":"whoami","parent":"/usr/lib/byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":959,"date":"Dec 4 2017"},{"filename":"wifi_quality","parent":"/usr/lib/byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1898,"date":"Dec 4 2017"},{"filename":".","parent":"/usr/lib/byobu/include","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"..","parent":"/usr/lib/byobu/include","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"colors","parent":"/usr/lib/byobu/include","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1049,"date":"Dec 4 2017"},{"filename":"common","parent":"/usr/lib/byobu/include","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1953,"date":"Dec 4 2017"},{"filename":"config.py","parent":"/usr/lib/byobu/include","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10709,"date":"Dec 4 2017"},{"filename":"constants","parent":"/usr/lib/byobu/include","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2396,"date":"Dec 4 2017"},{"filename":"cycle-status","parent":"/usr/lib/byobu/include","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1379,"date":"Dec 4 2017"},{"filename":"dirs","parent":"/usr/lib/byobu/include","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2641,"date":"Dec 4 2017"},{"filename":"ec2instancespricing.py","parent":"/usr/lib/byobu/include","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":24418,"date":"Dec 4 2017"},{"filename":"icons","parent":"/usr/lib/byobu/include","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1881,"date":"Dec 4 2017"},{"filename":"mondrian","parent":"/usr/lib/byobu/include","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4572,"date":"Dec 4 2017"},{"filename":"notify_osd","parent":"/usr/lib/byobu/include","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1782,"date":"Dec 4 2017"},{"filename":"__pycache__","parent":"/usr/lib/byobu/include","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"select-session.py","parent":"/usr/lib/byobu/include","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":6797,"date":"Dec 4 2017"},{"filename":"shutil","parent":"/usr/lib/byobu/include","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":8707,"date":"Dec 4 2017"},{"filename":"tmux-detach-all-but-current-client","parent":"/usr/lib/byobu/include","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1595,"date":"Dec 4 2017"},{"filename":"tmux-send-command-to-all-panes","parent":"/usr/lib/byobu/include","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":955,"date":"Dec 4 2017"},{"filename":"tmux-send-command-to-all-windows","parent":"/usr/lib/byobu/include","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":881,"date":"Dec 4 2017"},{"filename":"toggle-utf8","parent":"/usr/lib/byobu/include","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1694,"date":"Dec 4 2017"},{"filename":".","parent":"/usr/lib/byobu/include/__pycache__","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"..","parent":"/usr/lib/byobu/include/__pycache__","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"config.cpython-36.pyc","parent":"/usr/lib/byobu/include/__pycache__","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9974,"date":"Aug 5 2019"},{"filename":"ec2instancespricing.cpython-36.pyc","parent":"/usr/lib/byobu/include/__pycache__","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":12699,"date":"Aug 5 2019"},{"filename":"select-session.cpython-36.pyc","parent":"/usr/lib/byobu/include/__pycache__","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4261,"date":"Aug 5 2019"},{"filename":".","parent":"/usr/lib/cloud-init","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"..","parent":"/usr/lib/cloud-init","flags":"drwxr-xr-x","links":65,"owner":"root","group":"root","size":4096,"date":"Oct 30 21:02"},{"filename":"ds-identify","parent":"/usr/lib/cloud-init","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":44208,"date":"May 10 2019"},{"filename":"uncloud-init","parent":"/usr/lib/cloud-init","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4116,"date":"May 10 2019"},{"filename":"write-ssh-key-fingerprints","parent":"/usr/lib/cloud-init","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1135,"date":"May 10 2019"},{"filename":".","parent":"/usr/lib/compat-ld","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:13"},{"filename":"..","parent":"/usr/lib/compat-ld","flags":"drwxr-xr-x","links":65,"owner":"root","group":"root","size":4096,"date":"Oct 30 21:02"},{"filename":"ld","link_to":"../../bin/ld.bfd","parent":"/usr/lib/compat-ld","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":16,"date":"May 8 2019"},{"filename":".","parent":"/usr/lib/dbus-1.0","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"..","parent":"/usr/lib/dbus-1.0","flags":"drwxr-xr-x","links":65,"owner":"root","group":"root","size":4096,"date":"Oct 30 21:02"},{"filename":"dbus-daemon-launch-helper","parent":"/usr/lib/dbus-1.0","flags":"-rwsr-xr--","links":1,"owner":"root","group":"messagebus","size":42992,"date":"Jun 10 2019"},{"filename":".","parent":"/usr/lib/dpkg","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"..","parent":"/usr/lib/dpkg","flags":"drwxr-xr-x","links":65,"owner":"root","group":"root","size":4096,"date":"Oct 30 21:02"},{"filename":"methods","parent":"/usr/lib/dpkg","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":".","parent":"/usr/lib/dpkg/methods","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"..","parent":"/usr/lib/dpkg/methods","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"apt","parent":"/usr/lib/dpkg/methods","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":".","parent":"/usr/lib/dpkg/methods/apt","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"..","parent":"/usr/lib/dpkg/methods/apt","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"desc.apt","parent":"/usr/lib/dpkg/methods/apt","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":567,"date":"May 7 2019"},{"filename":"install","parent":"/usr/lib/dpkg/methods/apt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2861,"date":"May 7 2019"},{"filename":"names","parent":"/usr/lib/dpkg/methods/apt","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":39,"date":"May 7 2019"},{"filename":"setup","parent":"/usr/lib/dpkg/methods/apt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":7728,"date":"May 7 2019"},{"filename":"update","parent":"/usr/lib/dpkg/methods/apt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1242,"date":"May 7 2019"},{"filename":".","parent":"/usr/lib/dracut","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"..","parent":"/usr/lib/dracut","flags":"drwxr-xr-x","links":65,"owner":"root","group":"root","size":4096,"date":"Oct 30 21:02"},{"filename":"modules.d","parent":"/usr/lib/dracut","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":".","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"..","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"90bcache","parent":"/usr/lib/dracut/modules.d","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":".","parent":"/usr/lib/dracut/modules.d/90bcache","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"..","parent":"/usr/lib/dracut/modules.d/90bcache","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"module-setup.sh","parent":"/usr/lib/dracut/modules.d/90bcache","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":696,"date":"Apr 21 2017"},{"filename":".","parent":"/usr/lib/eject","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"..","parent":"/usr/lib/eject","flags":"drwxr-xr-x","links":65,"owner":"root","group":"root","size":4096,"date":"Oct 30 21:02"},{"filename":"dmcrypt-get-device","parent":"/usr/lib/eject","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"root","size":10232,"date":"Mar 28 2017"},{"filename":".","parent":"/usr/lib/environment.d","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 6 06:24"},{"filename":"..","parent":"/usr/lib/environment.d","flags":"drwxr-xr-x","links":65,"owner":"root","group":"root","size":4096,"date":"Oct 30 21:02"},{"filename":"990-snapd.conf","parent":"/usr/lib/environment.d","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":21,"date":"Jun 5 2019"},{"filename":"99-environment.conf","link_to":"/etc/environment","parent":"/usr/lib/environment.d","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":16,"date":"Feb 5 01:07"},{"filename":".","parent":"/usr/lib/file","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 30 20:26"},{"filename":"..","parent":"/usr/lib/file","flags":"drwxr-xr-x","links":65,"owner":"root","group":"root","size":4096,"date":"Oct 30 21:02"},{"filename":"magic.mgc","parent":"/usr/lib/file","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4961856,"date":"Oct 29 16:50"},{"filename":".","parent":"/usr/lib/gcc","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Apr 16 2018"},{"filename":"..","parent":"/usr/lib/gcc","flags":"drwxr-xr-x","links":65,"owner":"root","group":"root","size":4096,"date":"Oct 30 21:02"},{"filename":"x86_64-linux-gnu","parent":"/usr/lib/gcc","flags":"drwxr-xr-x","links":4,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":".","parent":"/usr/lib/gcc/x86_64-linux-gnu","flags":"drwxr-xr-x","links":4,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/lib/gcc/x86_64-linux-gnu","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Apr 16 2018"},{"filename":"7","parent":"/usr/lib/gcc/x86_64-linux-gnu","flags":"drwxr-xr-x","links":5,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"7.4.0","link_to":"7","parent":"/usr/lib/gcc/x86_64-linux-gnu","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":1,"date":"May 8 2019"},{"filename":"8","parent":"/usr/lib/gcc/x86_64-linux-gnu","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Apr 16 2018"},{"filename":".","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"drwxr-xr-x","links":5,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"drwxr-xr-x","links":4,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"cc1","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22256464,"date":"May 8 2019"},{"filename":"cc1plus","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":23604080,"date":"May 8 2019"},{"filename":"collect2","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":577760,"date":"May 8 2019"},{"filename":"crtbegin.o","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2456,"date":"May 8 2019"},{"filename":"crtbeginS.o","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2824,"date":"May 8 2019"},{"filename":"crtbeginT.o","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2976,"date":"May 8 2019"},{"filename":"crtend.o","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1224,"date":"May 8 2019"},{"filename":"crtendS.o","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1224,"date":"May 8 2019"},{"filename":"crtfastmath.o","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3760,"date":"May 8 2019"},{"filename":"crtoffloadbegin.o","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1248,"date":"May 8 2019"},{"filename":"crtoffloadend.o","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1248,"date":"May 8 2019"},{"filename":"crtoffloadtable.o","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1464,"date":"May 8 2019"},{"filename":"crtprec32.o","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3368,"date":"May 8 2019"},{"filename":"crtprec64.o","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3376,"date":"May 8 2019"},{"filename":"crtprec80.o","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3368,"date":"May 8 2019"},{"filename":"include","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"drwxr-xr-x","links":4,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"include-fixed","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"libasan.a","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2925550,"date":"May 8 2019"},{"filename":"libasan_preinit.o","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":17808,"date":"May 8 2019"},{"filename":"libasan.so","link_to":"../../../x86_64-linux-gnu/libasan.so.4","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":38,"date":"May 8 2019"},{"filename":"libatomic.a","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":119194,"date":"May 8 2019"},{"filename":"libatomic.so","link_to":"../../../x86_64-linux-gnu/libatomic.so.1","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":40,"date":"May 8 2019"},{"filename":"libbacktrace.a","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":70210,"date":"May 8 2019"},{"filename":"libcc1.so","link_to":"../../../x86_64-linux-gnu/libcc1.so.0","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":37,"date":"May 8 2019"},{"filename":"libcilkrts.a","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":277408,"date":"May 8 2019"},{"filename":"libcilkrts.so","link_to":"../../../x86_64-linux-gnu/libcilkrts.so.5","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":41,"date":"May 8 2019"},{"filename":"libcilkrts.spec","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":173,"date":"May 8 2019"},{"filename":"libgcc.a","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3003558,"date":"May 8 2019"},{"filename":"libgcc_eh.a","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":51748,"date":"May 8 2019"},{"filename":"libgcc_s.so","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":132,"date":"May 8 2019"},{"filename":"libgcc_s.so.1","link_to":"/lib/x86_64-linux-gnu/libgcc_s.so.1","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":35,"date":"May 8 2019"},{"filename":"libgcov.a","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":58898,"date":"May 8 2019"},{"filename":"libgomp.a","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":352114,"date":"May 8 2019"},{"filename":"libgomp.so","link_to":"../../../x86_64-linux-gnu/libgomp.so.1","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":38,"date":"May 8 2019"},{"filename":"libgomp.spec","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":169,"date":"May 8 2019"},{"filename":"libitm.a","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":222358,"date":"May 8 2019"},{"filename":"libitm.so","link_to":"../../../x86_64-linux-gnu/libitm.so.1","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":37,"date":"May 8 2019"},{"filename":"libitm.spec","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":162,"date":"May 8 2019"},{"filename":"liblsan.a","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":867742,"date":"May 8 2019"},{"filename":"liblsan.so","link_to":"../../../x86_64-linux-gnu/liblsan.so.0","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":38,"date":"May 8 2019"},{"filename":"liblto_plugin.so","link_to":"liblto_plugin.so.0.0.0","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"May 8 2019"},{"filename":"liblto_plugin.so.0","link_to":"liblto_plugin.so.0.0.0","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"May 8 2019"},{"filename":"liblto_plugin.so.0.0.0","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":76576,"date":"May 8 2019"},{"filename":"libmpx.a","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":25732,"date":"May 8 2019"},{"filename":"libmpx.so","link_to":"../../../x86_64-linux-gnu/libmpx.so.2","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":37,"date":"May 8 2019"},{"filename":"libmpx.spec","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":156,"date":"May 8 2019"},{"filename":"libmpxwrappers.a","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":12100,"date":"May 8 2019"},{"filename":"libmpxwrappers.so","link_to":"../../../x86_64-linux-gnu/libmpxwrappers.so.2","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":45,"date":"May 8 2019"},{"filename":"libquadmath.a","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":569496,"date":"May 8 2019"},{"filename":"libquadmath.so","link_to":"../../../x86_64-linux-gnu/libquadmath.so.0","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":42,"date":"May 8 2019"},{"filename":"libsanitizer.spec","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":320,"date":"May 8 2019"},{"filename":"libssp_nonshared.a","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1486,"date":"May 8 2019"},{"filename":"libstdc++.a","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4783610,"date":"May 8 2019"},{"filename":"libstdc++fs.a","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":680216,"date":"May 8 2019"},{"filename":"libstdc++.so","link_to":"../../../x86_64-linux-gnu/libstdc++.so.6","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":40,"date":"May 8 2019"},{"filename":"libsupc++.a","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":363654,"date":"May 8 2019"},{"filename":"libtsan.a","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2036204,"date":"May 8 2019"},{"filename":"libtsan.so","link_to":"../../../x86_64-linux-gnu/libtsan.so.0","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":38,"date":"May 8 2019"},{"filename":"libubsan.a","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":811530,"date":"May 8 2019"},{"filename":"libubsan.so","link_to":"../../../x86_64-linux-gnu/libubsan.so.0","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":39,"date":"May 8 2019"},{"filename":"lto1","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":21301200,"date":"May 8 2019"},{"filename":"lto-wrapper","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":893240,"date":"May 8 2019"},{"filename":"plugin","parent":"/usr/lib/gcc/x86_64-linux-gnu/7","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":".","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"drwxr-xr-x","links":4,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"drwxr-xr-x","links":5,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"adxintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2865,"date":"May 8 2019"},{"filename":"ammintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3216,"date":"May 8 2019"},{"filename":"avx2intrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":58030,"date":"May 8 2019"},{"filename":"avx5124fmapsintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6535,"date":"May 8 2019"},{"filename":"avx5124vnniwintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4256,"date":"May 8 2019"},{"filename":"avx512bwintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":100776,"date":"May 8 2019"},{"filename":"avx512cdintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5822,"date":"May 8 2019"},{"filename":"avx512dqintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":77963,"date":"May 8 2019"},{"filename":"avx512erintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":12965,"date":"May 8 2019"},{"filename":"avx512fintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":438944,"date":"May 8 2019"},{"filename":"avx512ifmaintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3430,"date":"May 8 2019"},{"filename":"avx512ifmavlintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5385,"date":"May 8 2019"},{"filename":"avx512pfintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":10038,"date":"May 8 2019"},{"filename":"avx512vbmiintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4921,"date":"May 8 2019"},{"filename":"avx512vbmivlintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8364,"date":"May 8 2019"},{"filename":"avx512vlbwintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":142308,"date":"May 8 2019"},{"filename":"avx512vldqintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":61317,"date":"May 8 2019"},{"filename":"avx512vlintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":423232,"date":"May 8 2019"},{"filename":"avx512vpopcntdqintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3105,"date":"May 8 2019"},{"filename":"avxintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":49383,"date":"May 8 2019"},{"filename":"backtrace.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8754,"date":"May 8 2019"},{"filename":"backtrace-supported.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2982,"date":"May 8 2019"},{"filename":"bmi2intrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3388,"date":"May 8 2019"},{"filename":"bmiintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5628,"date":"May 8 2019"},{"filename":"bmmintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1154,"date":"May 8 2019"},{"filename":"cilk","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"clflushoptintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1663,"date":"May 8 2019"},{"filename":"clwbintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1585,"date":"May 8 2019"},{"filename":"clzerointrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1491,"date":"May 8 2019"},{"filename":"cpuid.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7939,"date":"May 8 2019"},{"filename":"cross-stdarg.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2558,"date":"May 8 2019"},{"filename":"emmintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":51033,"date":"May 8 2019"},{"filename":"f16cintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3406,"date":"May 8 2019"},{"filename":"float.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":16917,"date":"May 8 2019"},{"filename":"fma4intrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9132,"date":"May 8 2019"},{"filename":"fmaintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":10536,"date":"May 8 2019"},{"filename":"fxsrintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2108,"date":"May 8 2019"},{"filename":"gcov.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1389,"date":"May 8 2019"},{"filename":"ia32intrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7817,"date":"May 8 2019"},{"filename":"immintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4984,"date":"May 8 2019"},{"filename":"iso646.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1272,"date":"May 8 2019"},{"filename":"lwpintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3400,"date":"May 8 2019"},{"filename":"lzcntintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2398,"date":"May 8 2019"},{"filename":"mm3dnow.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7076,"date":"May 8 2019"},{"filename":"mmintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":31354,"date":"May 8 2019"},{"filename":"mm_malloc.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1783,"date":"May 8 2019"},{"filename":"mwaitxintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1747,"date":"May 8 2019"},{"filename":"nmmintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1288,"date":"May 8 2019"},{"filename":"omp.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6092,"date":"May 8 2019"},{"filename":"openacc.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4655,"date":"May 8 2019"},{"filename":"pkuintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1741,"date":"May 8 2019"},{"filename":"pmmintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4368,"date":"May 8 2019"},{"filename":"popcntintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1750,"date":"May 8 2019"},{"filename":"prfchwintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1447,"date":"May 8 2019"},{"filename":"quadmath.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9085,"date":"May 8 2019"},{"filename":"quadmath_weak.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3146,"date":"May 8 2019"},{"filename":"rdseedintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2017,"date":"May 8 2019"},{"filename":"rtmintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2733,"date":"May 8 2019"},{"filename":"sanitizer","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"sgxintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4530,"date":"May 8 2019"},{"filename":"shaintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3198,"date":"May 8 2019"},{"filename":"smmintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":28405,"date":"May 8 2019"},{"filename":"stdalign.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1210,"date":"May 8 2019"},{"filename":"stdarg.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4072,"date":"May 8 2019"},{"filename":"stdatomic.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9321,"date":"May 8 2019"},{"filename":"stdbool.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1524,"date":"May 8 2019"},{"filename":"stddef.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":14140,"date":"May 8 2019"},{"filename":"stdfix.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6000,"date":"May 8 2019"},{"filename":"stdint-gcc.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9457,"date":"May 8 2019"},{"filename":"stdint.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":328,"date":"May 8 2019"},{"filename":"stdnoreturn.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1136,"date":"May 8 2019"},{"filename":"tbmintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5242,"date":"May 8 2019"},{"filename":"tmmintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8343,"date":"May 8 2019"},{"filename":"unwind.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":10717,"date":"May 8 2019"},{"filename":"varargs.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":139,"date":"May 8 2019"},{"filename":"wmmintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4590,"date":"May 8 2019"},{"filename":"x86intrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2054,"date":"May 8 2019"},{"filename":"xmmintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":42210,"date":"May 8 2019"},{"filename":"xopintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":28566,"date":"May 8 2019"},{"filename":"xsavecintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1821,"date":"May 8 2019"},{"filename":"xsaveintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2190,"date":"May 8 2019"},{"filename":"xsaveoptintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1903,"date":"May 8 2019"},{"filename":"xsavesintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2157,"date":"May 8 2019"},{"filename":"xtestintrin.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1687,"date":"May 8 2019"},{"filename":".","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk","flags":"drwxr-xr-x","links":4,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"cilk_api.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":15236,"date":"May 8 2019"},{"filename":"cilk_api_linux.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2445,"date":"May 8 2019"},{"filename":"cilk.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3541,"date":"May 8 2019"},{"filename":"cilk_stub.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3007,"date":"May 8 2019"},{"filename":"cilk_undocumented.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4743,"date":"May 8 2019"},{"filename":"common.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":13162,"date":"May 8 2019"},{"filename":"holder.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":38881,"date":"May 8 2019"},{"filename":"hyperobject_base.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7107,"date":"May 8 2019"},{"filename":"metaprogramming.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":21801,"date":"May 8 2019"},{"filename":"reducer_file.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2363,"date":"May 8 2019"},{"filename":"reducer.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":76234,"date":"May 8 2019"},{"filename":"reducer_list.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":42065,"date":"May 8 2019"},{"filename":"reducer_max.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2591,"date":"May 8 2019"},{"filename":"reducer_min.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2591,"date":"May 8 2019"},{"filename":"reducer_min_max.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":149159,"date":"May 8 2019"},{"filename":"reducer_opadd.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":26215,"date":"May 8 2019"},{"filename":"reducer_opand.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":22726,"date":"May 8 2019"},{"filename":"reducer_opmul.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":16961,"date":"May 8 2019"},{"filename":"reducer_opor.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":22452,"date":"May 8 2019"},{"filename":"reducer_opxor.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":22561,"date":"May 8 2019"},{"filename":"reducer_ostream.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":20100,"date":"May 8 2019"},{"filename":"reducer_string.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":27509,"date":"May 8 2019"},{"filename":".","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include/sanitizer","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include/sanitizer","flags":"drwxr-xr-x","links":4,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"asan_interface.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include/sanitizer","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7022,"date":"May 8 2019"},{"filename":"common_interface_defs.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include/sanitizer","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9855,"date":"May 8 2019"},{"filename":"lsan_interface.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include/sanitizer","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3529,"date":"May 8 2019"},{"filename":".","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed","flags":"drwxr-xr-x","links":5,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"limits.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6089,"date":"May 8 2019"},{"filename":"README","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":750,"date":"May 8 2019"},{"filename":"syslimits.h","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":330,"date":"May 8 2019"},{"filename":".","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/plugin","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"..","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/plugin","flags":"drwxr-xr-x","links":5,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":"libcc1plugin.so","link_to":"libcc1plugin.so.0.0.0","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/plugin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"May 8 2019"},{"filename":"libcc1plugin.so.0","link_to":"libcc1plugin.so.0.0.0","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/plugin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"May 8 2019"},{"filename":"libcc1plugin.so.0.0.0","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/plugin","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":56104,"date":"May 8 2019"},{"filename":"libcp1plugin.so","link_to":"libcp1plugin.so.0.0.0","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/plugin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"May 8 2019"},{"filename":"libcp1plugin.so.0","link_to":"libcp1plugin.so.0.0.0","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/plugin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"May 8 2019"},{"filename":"libcp1plugin.so.0.0.0","parent":"/usr/lib/gcc/x86_64-linux-gnu/7/plugin","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":126752,"date":"May 8 2019"},{"filename":".","parent":"/usr/lib/gcc/x86_64-linux-gnu/8","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Apr 16 2018"},{"filename":"..","parent":"/usr/lib/gcc/x86_64-linux-gnu/8","flags":"drwxr-xr-x","links":4,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:14"},{"filename":".","parent":"/usr/lib/git-core","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":20480,"date":"Dec 16 22:19"},{"filename":"..","parent":"/usr/lib/git-core","flags":"drwxr-xr-x","links":65,"owner":"root","group":"root","size":4096,"date":"Oct 30 21:02"},{"filename":"git","parent":"/usr/lib/git-core","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2347696,"date":"Dec 9 13:29"},{"filename":"git-add","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-add--interactive","parent":"/usr/lib/git-core","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43919,"date":"Dec 9 13:29"},{"filename":"git-am","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-annotate","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-apply","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-archive","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-bisect","parent":"/usr/lib/git-core","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14444,"date":"Dec 9 13:29"},{"filename":"git-bisect--helper","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-blame","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-branch","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-bundle","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-cat-file","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-check-attr","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-check-ignore","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-check-mailmap","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-checkout","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-checkout-index","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-check-ref-format","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-cherry","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-cherry-pick","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-clean","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-clone","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-column","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-commit","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-commit-tree","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-config","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-count-objects","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-credential","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-credential-cache","parent":"/usr/lib/git-core","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1308912,"date":"Dec 9 13:29"},{"filename":"git-credential-cache--daemon","parent":"/usr/lib/git-core","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1317200,"date":"Dec 9 13:29"},{"filename":"git-credential-store","parent":"/usr/lib/git-core","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1313072,"date":"Dec 9 13:29"},{"filename":"git-daemon","parent":"/usr/lib/git-core","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1321328,"date":"Dec 9 13:29"},{"filename":"git-describe","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-diff","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-diff-files","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-diff-index","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-difftool","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-difftool--helper","parent":"/usr/lib/git-core","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2244,"date":"Dec 9 13:29"},{"filename":"git-diff-tree","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-fast-export","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-fast-import","parent":"/usr/lib/git-core","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1346416,"date":"Dec 9 13:29"},{"filename":"git-fetch","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-fetch-pack","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-filter-branch","parent":"/usr/lib/git-core","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":15534,"date":"Dec 9 13:29"},{"filename":"git-fmt-merge-msg","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-for-each-ref","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-format-patch","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-fsck","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-fsck-objects","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-gc","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-get-tar-commit-id","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-grep","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-hash-object","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-help","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-http-backend","parent":"/usr/lib/git-core","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1317424,"date":"Dec 9 13:29"},{"filename":"git-http-fetch","parent":"/usr/lib/git-core","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1358608,"date":"Dec 9 13:29"},{"filename":"git-http-push","parent":"/usr/lib/git-core","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1366816,"date":"Dec 9 13:29"},{"filename":"git-imap-send","parent":"/usr/lib/git-core","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1367216,"date":"Dec 9 13:29"},{"filename":"git-index-pack","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-init","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-init-db","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-instaweb","parent":"/usr/lib/git-core","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18546,"date":"Dec 9 13:29"},{"filename":"git-interpret-trailers","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-log","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-ls-files","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-ls-remote","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-ls-tree","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-mailinfo","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-mailsplit","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-merge","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-merge-base","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-merge-file","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-merge-index","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-merge-octopus","parent":"/usr/lib/git-core","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2477,"date":"Dec 9 13:29"},{"filename":"git-merge-one-file","parent":"/usr/lib/git-core","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3707,"date":"Dec 9 13:29"},{"filename":"git-merge-ours","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-merge-recursive","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-merge-resolve","parent":"/usr/lib/git-core","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":944,"date":"Dec 9 13:29"},{"filename":"git-merge-subtree","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-mergetool","parent":"/usr/lib/git-core","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10303,"date":"Dec 9 13:29"},{"filename":"git-mergetool--lib","parent":"/usr/lib/git-core","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8869,"date":"Dec 9 13:29"},{"filename":"git-merge-tree","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-mktag","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-mktree","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-mv","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-name-rev","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-notes","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-pack-objects","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-pack-redundant","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-pack-refs","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-parse-remote","parent":"/usr/lib/git-core","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2650,"date":"Dec 9 13:29"},{"filename":"git-patch-id","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-prune","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-prune-packed","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-pull","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-push","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-quiltimport","parent":"/usr/lib/git-core","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3596,"date":"Dec 9 13:29"},{"filename":"git-read-tree","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-rebase","parent":"/usr/lib/git-core","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":17291,"date":"Dec 9 13:29"},{"filename":"git-rebase--am","parent":"/usr/lib/git-core","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2680,"date":"Dec 9 13:29"},{"filename":"git-rebase--helper","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-rebase--interactive","parent":"/usr/lib/git-core","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":28932,"date":"Dec 9 13:29"},{"filename":"git-rebase--merge","parent":"/usr/lib/git-core","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4096,"date":"Dec 9 13:29"},{"filename":"git-receive-pack","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-reflog","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-remote","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-remote-ext","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-remote-fd","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-remote-ftp","link_to":"git-remote-http","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":15,"date":"Dec 9 13:29"},{"filename":"git-remote-ftps","link_to":"git-remote-http","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":15,"date":"Dec 9 13:29"},{"filename":"git-remote-http","parent":"/usr/lib/git-core","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1370880,"date":"Dec 9 13:29"},{"filename":"git-remote-https","link_to":"git-remote-http","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":15,"date":"Dec 9 13:29"},{"filename":"git-remote-testsvn","parent":"/usr/lib/git-core","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1329520,"date":"Dec 9 13:29"},{"filename":"git-repack","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-replace","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-request-pull","parent":"/usr/lib/git-core","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3698,"date":"Dec 9 13:29"},{"filename":"git-rerere","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-reset","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-revert","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-rev-list","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-rev-parse","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-rm","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-send-pack","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-shell","parent":"/usr/lib/git-core","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1304912,"date":"Dec 9 13:29"},{"filename":"git-sh-i18n","parent":"/usr/lib/git-core","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2355,"date":"Dec 9 13:29"},{"filename":"git-sh-i18n--envsubst","parent":"/usr/lib/git-core","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1304816,"date":"Dec 9 13:29"},{"filename":"git-shortlog","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-show","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-show-branch","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-show-index","parent":"/usr/lib/git-core","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1304816,"date":"Dec 9 13:29"},{"filename":"git-show-ref","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-sh-prompt","parent":"/usr/lib/git-core","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":16379,"date":"Dec 9 13:29"},{"filename":"git-sh-setup","parent":"/usr/lib/git-core","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9256,"date":"Dec 9 13:29"},{"filename":"git-stage","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-stash","parent":"/usr/lib/git-core","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":15486,"date":"Dec 9 13:29"},{"filename":"git-status","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-stripspace","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-submodule","parent":"/usr/lib/git-core","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":23941,"date":"Dec 9 13:29"},{"filename":"git-submodule--helper","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-subtree","parent":"/usr/lib/git-core","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":16495,"date":"Dec 9 13:29"},{"filename":"git-symbolic-ref","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-tag","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-unpack-file","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-unpack-objects","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-update-index","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-update-ref","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-update-server-info","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-upload-archive","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-upload-pack","parent":"/usr/lib/git-core","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1317120,"date":"Dec 9 13:29"},{"filename":"git-var","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-verify-commit","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-verify-pack","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-verify-tag","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-web--browse","parent":"/usr/lib/git-core","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4401,"date":"Dec 9 13:29"},{"filename":"git-whatchanged","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-worktree","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"git-write-tree","link_to":"git","parent":"/usr/lib/git-core","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"Dec 9 13:29"},{"filename":"mergetools","parent":"/usr/lib/git-core","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Dec 16 22:19"},{"filename":".","parent":"/usr/lib/git-core/mergetools","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Dec 16 22:19"},{"filename":"..","parent":"/usr/lib/git-core/mergetools","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":20480,"date":"Dec 16 22:19"},{"filename":"araxis","parent":"/usr/lib/git-core/mergetools","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":358,"date":"Dec 9 13:29"},{"filename":"bc","parent":"/usr/lib/git-core/mergetools","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":367,"date":"Dec 9 13:29"},{"filename":"bc3","parent":"/usr/lib/git-core/mergetools","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":24,"date":"Dec 9 13:29"},{"filename":"codecompare","parent":"/usr/lib/git-core/mergetools","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":353,"date":"Dec 9 13:29"},{"filename":"deltawalker","parent":"/usr/lib/git-core/mergetools","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":663,"date":"Dec 9 13:29"},{"filename":"diffmerge","parent":"/usr/lib/git-core/mergetools","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":309,"date":"Dec 9 13:29"},{"filename":"diffuse","parent":"/usr/lib/git-core/mergetools","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":248,"date":"Dec 9 13:29"},{"filename":"ecmerge","parent":"/usr/lib/git-core/mergetools","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":306,"date":"Dec 9 13:29"},{"filename":"emerge","parent":"/usr/lib/git-core/mergetools","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":438,"date":"Dec 9 13:29"},{"filename":"examdiff","parent":"/usr/lib/git-core/mergetools","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":336,"date":"Dec 9 13:29"},{"filename":"gvimdiff","parent":"/usr/lib/git-core/mergetools","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":29,"date":"Dec 9 13:29"},{"filename":"gvimdiff2","parent":"/usr/lib/git-core/mergetools","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":29,"date":"Dec 9 13:29"},{"filename":"gvimdiff3","parent":"/usr/lib/git-core/mergetools","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":29,"date":"Dec 9 13:29"},{"filename":"kdiff3","parent":"/usr/lib/git-core/mergetools","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":522,"date":"Dec 9 13:29"},{"filename":"kompare","parent":"/usr/lib/git-core/mergetools","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":117,"date":"Dec 9 13:29"},{"filename":"meld","parent":"/usr/lib/git-core/mergetools","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":843,"date":"Dec 9 13:29"},{"filename":"opendiff","parent":"/usr/lib/git-core/mergetools","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":267,"date":"Dec 9 13:29"},{"filename":"p4merge","parent":"/usr/lib/git-core/mergetools","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":617,"date":"Dec 9 13:29"},{"filename":"tkdiff","parent":"/usr/lib/git-core/mergetools","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":258,"date":"Dec 9 13:29"},{"filename":"tortoisemerge","parent":"/usr/lib/git-core/mergetools","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":602,"date":"Dec 9 13:29"},{"filename":"vimdiff","parent":"/usr/lib/git-core/mergetools","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":890,"date":"Dec 9 13:29"},{"filename":"vimdiff2","parent":"/usr/lib/git-core/mergetools","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":29,"date":"Dec 9 13:29"},{"filename":"vimdiff3","parent":"/usr/lib/git-core/mergetools","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":29,"date":"Dec 9 13:29"},{"filename":"winmerge","parent":"/usr/lib/git-core/mergetools","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":361,"date":"Dec 9 13:29"},{"filename":"xxdiff","parent":"/usr/lib/git-core/mergetools","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":584,"date":"Dec 9 13:29"},{"filename":".","parent":"/usr/lib/gnupg","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"..","parent":"/usr/lib/gnupg","flags":"drwxr-xr-x","links":65,"owner":"root","group":"root","size":4096,"date":"Oct 30 21:02"},{"filename":"dirmngr_ldap","parent":"/usr/lib/gnupg","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":80616,"date":"Jan 10 2019"},{"filename":"gpg-check-pattern","parent":"/usr/lib/gnupg","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":104872,"date":"Jan 10 2019"},{"filename":"gpg-preset-passphrase","parent":"/usr/lib/gnupg","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":80328,"date":"Jan 10 2019"},{"filename":"gpg-protect-tool","parent":"/usr/lib/gnupg","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":191400,"date":"Jan 10 2019"},{"filename":"gpg-wks-client","parent":"/usr/lib/gnupg","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":207720,"date":"Jan 10 2019"},{"filename":".","parent":"/usr/lib/gnupg2","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"..","parent":"/usr/lib/gnupg2","flags":"drwxr-xr-x","links":65,"owner":"root","group":"root","size":4096,"date":"Oct 30 21:02"},{"filename":"gpg-preset-passphrase","link_to":"../gnupg/gpg-preset-passphrase","parent":"/usr/lib/gnupg2","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":30,"date":"Jan 10 2019"},{"filename":"gpg-protect-tool","link_to":"../gnupg/gpg-protect-tool","parent":"/usr/lib/gnupg2","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":25,"date":"Jan 10 2019"},{"filename":".","parent":"/usr/lib/gold-ld","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Oct 18 00:13"},{"filename":"..","parent":"/usr/lib/gold-ld","flags":"drwxr-xr-x","links":65,"owner":"root","group":"root","size":4096,"date":"Oct 30 21:02"},{"filename":"ld","link_to":"../../bin/ld.gold","parent":"/usr/lib/gold-ld","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":17,"date":"May 8 2019"},{"filename":".","parent":"/usr/lib/groff","flags":"drwxr-xr-x","links":4,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"..","parent":"/usr/lib/groff","flags":"drwxr-xr-x","links":65,"owner":"root","group":"root","size":4096,"date":"Oct 30 21:02"},{"filename":"grog","parent":"/usr/lib/groff","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"site-tmac","parent":"/usr/lib/groff","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 10 2018"},{"filename":".","parent":"/usr/lib/groff/grog","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"..","parent":"/usr/lib/groff/grog","flags":"drwxr-xr-x","links":4,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"subs.pl","parent":"/usr/lib/groff/grog","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":28293,"date":"Feb 10 2018"},{"filename":".","parent":"/usr/lib/groff/site-tmac","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 10 2018"},{"filename":"..","parent":"/usr/lib/groff/site-tmac","flags":"drwxr-xr-x","links":4,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":".","parent":"/usr/lib/grub","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 12 2019"},{"filename":"..","parent":"/usr/lib/grub","flags":"drwxr-xr-x","links":65,"owner":"root","group":"root","size":4096,"date":"Oct 30 21:02"},{"filename":"grub-mkconfig_lib","link_to":"../../share/grub/grub-mkconfig_lib","parent":"/usr/lib/grub","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":34,"date":"Mar 18 2019"},{"filename":"i386-pc","parent":"/usr/lib/grub","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":20480,"date":"Aug 12 2019"},{"filename":".","parent":"/usr/lib/grub/i386-pc","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":20480,"date":"Aug 12 2019"},{"filename":"..","parent":"/usr/lib/grub/i386-pc","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 12 2019"},{"filename":"915resolution.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7972,"date":"Mar 18 2019"},{"filename":"acpi.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":10620,"date":"Mar 18 2019"},{"filename":"adler32.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1324,"date":"Mar 18 2019"},{"filename":"affs.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5652,"date":"Mar 18 2019"},{"filename":"afs.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6108,"date":"Mar 18 2019"},{"filename":"ahci.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":15540,"date":"Mar 18 2019"},{"filename":"all_video.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":492,"date":"Mar 18 2019"},{"filename":"aout.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1036,"date":"Mar 18 2019"},{"filename":"archelp.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2956,"date":"Mar 18 2019"},{"filename":"ata.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5636,"date":"Mar 18 2019"},{"filename":"at_keyboard.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4284,"date":"Mar 18 2019"},{"filename":"backtrace.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1640,"date":"Mar 18 2019"},{"filename":"bfs.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6816,"date":"Mar 18 2019"},{"filename":"biosdisk.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4692,"date":"Mar 18 2019"},{"filename":"bitmap.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2256,"date":"Mar 18 2019"},{"filename":"bitmap_scale.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3788,"date":"Mar 18 2019"},{"filename":"blocklist.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2128,"date":"Mar 18 2019"},{"filename":"boot_hybrid.img","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":512,"date":"Mar 18 2019"},{"filename":"boot.img","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":512,"date":"Mar 18 2019"},{"filename":"boot.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2432,"date":"Mar 18 2019"},{"filename":"bsd.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":30516,"date":"Mar 18 2019"},{"filename":"bswap_test.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2408,"date":"Mar 18 2019"},{"filename":"btrfs.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":14484,"date":"Mar 18 2019"},{"filename":"bufio.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2044,"date":"Mar 18 2019"},{"filename":"cat.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2948,"date":"Mar 18 2019"},{"filename":"cbfs.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4032,"date":"Mar 18 2019"},{"filename":"cbls.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3604,"date":"Mar 18 2019"},{"filename":"cbmemc.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2424,"date":"Mar 18 2019"},{"filename":"cbtable.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":984,"date":"Mar 18 2019"},{"filename":"cbtime.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2860,"date":"Mar 18 2019"},{"filename":"cdboot.img","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2048,"date":"Mar 18 2019"},{"filename":"chain.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3500,"date":"Mar 18 2019"},{"filename":"cmdline_cat_test.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3072,"date":"Mar 18 2019"},{"filename":"cmosdump.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1216,"date":"Mar 18 2019"},{"filename":"cmostest.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1868,"date":"Mar 18 2019"},{"filename":"cmp.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1984,"date":"Mar 18 2019"},{"filename":"cmp_test.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4688,"date":"Mar 18 2019"},{"filename":"command.lst","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3842,"date":"Mar 18 2019"},{"filename":"configfile.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2264,"date":"Mar 18 2019"},{"filename":"config.h","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1929,"date":"Mar 18 2019"},{"filename":"cpio_be.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2776,"date":"Mar 18 2019"},{"filename":"cpio.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2708,"date":"Mar 18 2019"},{"filename":"cpuid.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1728,"date":"Mar 18 2019"},{"filename":"crc64.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1660,"date":"Mar 18 2019"},{"filename":"cryptodisk.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":10180,"date":"Mar 18 2019"},{"filename":"crypto.lst","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":936,"date":"Mar 18 2019"},{"filename":"crypto.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4972,"date":"Mar 18 2019"},{"filename":"cs5536.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3896,"date":"Mar 18 2019"},{"filename":"ctz_test.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1820,"date":"Mar 18 2019"},{"filename":"datehook.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1792,"date":"Mar 18 2019"},{"filename":"date.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2188,"date":"Mar 18 2019"},{"filename":"datetime.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1252,"date":"Mar 18 2019"},{"filename":"diskboot.img","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":512,"date":"Mar 18 2019"},{"filename":"diskfilter.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":10572,"date":"Mar 18 2019"},{"filename":"disk.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2408,"date":"Mar 18 2019"},{"filename":"div.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1032,"date":"Mar 18 2019"},{"filename":"div_test.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5672,"date":"Mar 18 2019"},{"filename":"dm_nv.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1848,"date":"Mar 18 2019"},{"filename":"drivemap.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5380,"date":"Mar 18 2019"},{"filename":"echo.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1960,"date":"Mar 18 2019"},{"filename":"efiemu32.o","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8128,"date":"Mar 18 2019"},{"filename":"efiemu64.o","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":10080,"date":"Mar 18 2019"},{"filename":"efiemu.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":24020,"date":"Mar 18 2019"},{"filename":"ehci.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":15984,"date":"Mar 18 2019"},{"filename":"elf.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4144,"date":"Mar 18 2019"},{"filename":"eval.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1444,"date":"Mar 18 2019"},{"filename":"exfat.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5360,"date":"Mar 18 2019"},{"filename":"exfctest.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1468,"date":"Mar 18 2019"},{"filename":"ext2.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6116,"date":"Mar 18 2019"},{"filename":"extcmd.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4548,"date":"Mar 18 2019"},{"filename":"fat.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5504,"date":"Mar 18 2019"},{"filename":"file.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":16768,"date":"Mar 18 2019"},{"filename":"font.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":12504,"date":"Mar 18 2019"},{"filename":"freedos.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2660,"date":"Mar 18 2019"},{"filename":"fshelp.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2980,"date":"Mar 18 2019"},{"filename":"fs.lst","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":214,"date":"Mar 18 2019"},{"filename":"functional_test.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":34276,"date":"Mar 18 2019"},{"filename":"g2hdr.bin","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":512,"date":"Mar 18 2019"},{"filename":"g2hdr.img","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":512,"date":"Mar 18 2019"},{"filename":"g2ldr.img","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":10240,"date":"Mar 18 2019"},{"filename":"g2ldr.mbr","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8192,"date":"Mar 18 2019"},{"filename":"gcry_arcfour.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1644,"date":"Mar 18 2019"},{"filename":"gcry_blowfish.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8224,"date":"Mar 18 2019"},{"filename":"gcry_camellia.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":33916,"date":"Mar 18 2019"},{"filename":"gcry_cast5.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":16484,"date":"Mar 18 2019"},{"filename":"gcry_crc.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2956,"date":"Mar 18 2019"},{"filename":"gcry_des.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":19248,"date":"Mar 18 2019"},{"filename":"gcry_dsa.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2288,"date":"Mar 18 2019"},{"filename":"gcry_idea.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3012,"date":"Mar 18 2019"},{"filename":"gcry_md4.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3176,"date":"Mar 18 2019"},{"filename":"gcry_md5.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3796,"date":"Mar 18 2019"},{"filename":"gcry_rfc2268.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2524,"date":"Mar 18 2019"},{"filename":"gcry_rijndael.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":19104,"date":"Mar 18 2019"},{"filename":"gcry_rmd160.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8216,"date":"Mar 18 2019"},{"filename":"gcry_rsa.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2076,"date":"Mar 18 2019"},{"filename":"gcry_seed.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":15384,"date":"Mar 18 2019"},{"filename":"gcry_serpent.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":17012,"date":"Mar 18 2019"},{"filename":"gcry_sha1.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7984,"date":"Mar 18 2019"},{"filename":"gcry_sha256.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4440,"date":"Mar 18 2019"},{"filename":"gcry_sha512.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9412,"date":"Mar 18 2019"},{"filename":"gcry_tiger.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":12692,"date":"Mar 18 2019"},{"filename":"gcry_twofish.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":37128,"date":"Mar 18 2019"},{"filename":"gcry_whirlpool.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":24924,"date":"Mar 18 2019"},{"filename":"gdb.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":25272,"date":"Mar 18 2019"},{"filename":"geli.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6040,"date":"Mar 18 2019"},{"filename":"gettext.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4940,"date":"Mar 18 2019"},{"filename":"gfxmenu.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":39432,"date":"Mar 18 2019"},{"filename":"gfxterm_background.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2892,"date":"Mar 18 2019"},{"filename":"gfxterm_menu.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5048,"date":"Mar 18 2019"},{"filename":"gfxterm.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":10024,"date":"Mar 18 2019"},{"filename":"gptsync.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3812,"date":"Mar 18 2019"},{"filename":"grldr.img","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":10240,"date":"Mar 18 2019"},{"filename":"grub-bios-setup","parent":"/usr/lib/grub/i386-pc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":812184,"date":"Mar 18 2019"},{"filename":"grub-ntldr-img","parent":"/usr/lib/grub/i386-pc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39072,"date":"Mar 18 2019"},{"filename":"gzio.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8320,"date":"Mar 18 2019"},{"filename":"halt.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4488,"date":"Mar 18 2019"},{"filename":"hashsum.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5256,"date":"Mar 18 2019"},{"filename":"hdparm.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7272,"date":"Mar 18 2019"},{"filename":"hello.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1208,"date":"Mar 18 2019"},{"filename":"help.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2576,"date":"Mar 18 2019"},{"filename":"hexdump.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3168,"date":"Mar 18 2019"},{"filename":"hfs.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7008,"date":"Mar 18 2019"},{"filename":"hfspluscomp.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3072,"date":"Mar 18 2019"},{"filename":"hfsplus.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7724,"date":"Mar 18 2019"},{"filename":"http.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5756,"date":"Mar 18 2019"},{"filename":"hwmatch.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":47196,"date":"Mar 18 2019"},{"filename":"iorw.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2912,"date":"Mar 18 2019"},{"filename":"iso9660.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8604,"date":"Mar 18 2019"},{"filename":"jfs.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6064,"date":"Mar 18 2019"},{"filename":"jpeg.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6276,"date":"Mar 18 2019"},{"filename":"kernel.img","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":28480,"date":"Mar 18 2019"},{"filename":"keylayouts.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5008,"date":"Mar 18 2019"},{"filename":"keystatus.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1976,"date":"Mar 18 2019"},{"filename":"ldm.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6540,"date":"Mar 18 2019"},{"filename":"legacycfg.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":30088,"date":"Mar 18 2019"},{"filename":"legacy_password_test.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":14468,"date":"Mar 18 2019"},{"filename":"linux16.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8176,"date":"Mar 18 2019"},{"filename":"linux.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":13344,"date":"Mar 18 2019"},{"filename":"lnxboot.img","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1024,"date":"Mar 18 2019"},{"filename":"loadenv.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5888,"date":"Mar 18 2019"},{"filename":"loopback.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2988,"date":"Mar 18 2019"},{"filename":"lsacpi.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4804,"date":"Mar 18 2019"},{"filename":"lsapm.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2280,"date":"Mar 18 2019"},{"filename":"lsmmap.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1868,"date":"Mar 18 2019"},{"filename":"ls.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4068,"date":"Mar 18 2019"},{"filename":"lspci.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4860,"date":"Mar 18 2019"},{"filename":"luks.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6896,"date":"Mar 18 2019"},{"filename":"lvm.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6776,"date":"Mar 18 2019"},{"filename":"lzma_decompress.img","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2832,"date":"Mar 18 2019"},{"filename":"lzopio.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5224,"date":"Mar 18 2019"},{"filename":"macbless.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3308,"date":"Mar 18 2019"},{"filename":"macho.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7520,"date":"Mar 18 2019"},{"filename":"mda_text.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2052,"date":"Mar 18 2019"},{"filename":"mdraid09_be.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2020,"date":"Mar 18 2019"},{"filename":"mdraid09.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1944,"date":"Mar 18 2019"},{"filename":"mdraid1x.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1944,"date":"Mar 18 2019"},{"filename":"memdisk.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2020,"date":"Mar 18 2019"},{"filename":"memrw.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2936,"date":"Mar 18 2019"},{"filename":"minicmd.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3408,"date":"Mar 18 2019"},{"filename":"minix2_be.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3912,"date":"Mar 18 2019"},{"filename":"minix2.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3748,"date":"Mar 18 2019"},{"filename":"minix3_be.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3848,"date":"Mar 18 2019"},{"filename":"minix3.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3716,"date":"Mar 18 2019"},{"filename":"minix_be.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3780,"date":"Mar 18 2019"},{"filename":"minix.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3652,"date":"Mar 18 2019"},{"filename":"mmap.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":8544,"date":"Mar 18 2019"},{"filename":"moddep.lst","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5416,"date":"Mar 18 2019"},{"filename":"modinfo.sh","parent":"/usr/lib/grub/i386-pc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2548,"date":"Mar 18 2019"},{"filename":"morse.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2396,"date":"Mar 18 2019"},{"filename":"mpi.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":27912,"date":"Mar 18 2019"},{"filename":"msdospart.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2460,"date":"Mar 18 2019"},{"filename":"mul_test.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2064,"date":"Mar 18 2019"},{"filename":"multiboot2.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":15488,"date":"Mar 18 2019"},{"filename":"multiboot.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":14108,"date":"Mar 18 2019"},{"filename":"nativedisk.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4196,"date":"Mar 18 2019"},{"filename":"net.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":54688,"date":"Mar 18 2019"},{"filename":"newc.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2964,"date":"Mar 18 2019"},{"filename":"nilfs2.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6708,"date":"Mar 18 2019"},{"filename":"normal.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":115620,"date":"Mar 18 2019"},{"filename":"ntfscomp.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4420,"date":"Mar 18 2019"},{"filename":"ntfs.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9952,"date":"Mar 18 2019"},{"filename":"ntldr.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2552,"date":"Mar 18 2019"},{"filename":"odc.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2772,"date":"Mar 18 2019"},{"filename":"offsetio.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1512,"date":"Mar 18 2019"},{"filename":"ohci.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":10436,"date":"Mar 18 2019"},{"filename":"part_acorn.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1672,"date":"Mar 18 2019"},{"filename":"part_amiga.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1892,"date":"Mar 18 2019"},{"filename":"part_apple.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2148,"date":"Mar 18 2019"},{"filename":"part_bsd.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2776,"date":"Mar 18 2019"},{"filename":"part_dfly.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1776,"date":"Mar 18 2019"},{"filename":"part_dvh.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1480,"date":"Mar 18 2019"},{"filename":"part_gpt.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2388,"date":"Mar 18 2019"},{"filename":"partmap.lst","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":111,"date":"Mar 18 2019"},{"filename":"part_msdos.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2268,"date":"Mar 18 2019"},{"filename":"part_plan.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1820,"date":"Mar 18 2019"},{"filename":"part_sun.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1536,"date":"Mar 18 2019"},{"filename":"part_sunpc.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1640,"date":"Mar 18 2019"},{"filename":"parttool.lst","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":17,"date":"Mar 18 2019"},{"filename":"parttool.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4644,"date":"Mar 18 2019"},{"filename":"password.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1888,"date":"Mar 18 2019"},{"filename":"password_pbkdf2.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2812,"date":"Mar 18 2019"},{"filename":"pata.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4772,"date":"Mar 18 2019"},{"filename":"pbkdf2.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1468,"date":"Mar 18 2019"},{"filename":"pbkdf2_test.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2252,"date":"Mar 18 2019"},{"filename":"pcidump.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2480,"date":"Mar 18 2019"},{"filename":"pci.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1408,"date":"Mar 18 2019"},{"filename":"plan9.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6336,"date":"Mar 18 2019"},{"filename":"play.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2512,"date":"Mar 18 2019"},{"filename":"png.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7460,"date":"Mar 18 2019"},{"filename":"priority_queue.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1568,"date":"Mar 18 2019"},{"filename":"probe.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2700,"date":"Mar 18 2019"},{"filename":"procfs.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2380,"date":"Mar 18 2019"},{"filename":"progress.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2208,"date":"Mar 18 2019"},{"filename":"pxeboot.img","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1024,"date":"Mar 18 2019"},{"filename":"pxechain.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2664,"date":"Mar 18 2019"},{"filename":"pxe.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3840,"date":"Mar 18 2019"},{"filename":"raid5rec.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1368,"date":"Mar 18 2019"},{"filename":"raid6rec.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2248,"date":"Mar 18 2019"},{"filename":"random.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2844,"date":"Mar 18 2019"},{"filename":"read.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1444,"date":"Mar 18 2019"},{"filename":"reboot.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1720,"date":"Mar 18 2019"},{"filename":"regexp.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":51012,"date":"Mar 18 2019"},{"filename":"reiserfs.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9056,"date":"Mar 18 2019"},{"filename":"relocator.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":14972,"date":"Mar 18 2019"},{"filename":"romfs.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4244,"date":"Mar 18 2019"},{"filename":"scsi.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4796,"date":"Mar 18 2019"},{"filename":"search_fs_file.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3212,"date":"Mar 18 2019"},{"filename":"search_fs_uuid.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3204,"date":"Mar 18 2019"},{"filename":"search_label.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3120,"date":"Mar 18 2019"},{"filename":"search.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3688,"date":"Mar 18 2019"},{"filename":"sendkey.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7148,"date":"Mar 18 2019"},{"filename":"serial.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7824,"date":"Mar 18 2019"},{"filename":"setjmp.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":708,"date":"Mar 18 2019"},{"filename":"setjmp_test.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1704,"date":"Mar 18 2019"},{"filename":"setpci.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5356,"date":"Mar 18 2019"},{"filename":"sfs.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5136,"date":"Mar 18 2019"},{"filename":"shift_test.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2480,"date":"Mar 18 2019"},{"filename":"signature_test.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6476,"date":"Mar 18 2019"},{"filename":"sleep.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2276,"date":"Mar 18 2019"},{"filename":"sleep_test.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2320,"date":"Mar 18 2019"},{"filename":"spkmodem.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2088,"date":"Mar 18 2019"},{"filename":"squash4.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7116,"date":"Mar 18 2019"},{"filename":"syslinuxcfg.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":17436,"date":"Mar 18 2019"},{"filename":"tar.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3316,"date":"Mar 18 2019"},{"filename":"terminal.lst","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":202,"date":"Mar 18 2019"},{"filename":"terminal.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4344,"date":"Mar 18 2019"},{"filename":"terminfo.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":11972,"date":"Mar 18 2019"},{"filename":"test_blockarg.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1340,"date":"Mar 18 2019"},{"filename":"testload.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2696,"date":"Mar 18 2019"},{"filename":"test.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5124,"date":"Mar 18 2019"},{"filename":"testspeed.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2328,"date":"Mar 18 2019"},{"filename":"tftp.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5484,"date":"Mar 18 2019"},{"filename":"tga.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4460,"date":"Mar 18 2019"},{"filename":"time.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1508,"date":"Mar 18 2019"},{"filename":"trig.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1764,"date":"Mar 18 2019"},{"filename":"tr.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2400,"date":"Mar 18 2019"},{"filename":"truecrypt.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3580,"date":"Mar 18 2019"},{"filename":"true.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1204,"date":"Mar 18 2019"},{"filename":"udf.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7868,"date":"Mar 18 2019"},{"filename":"ufs1_be.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5868,"date":"Mar 18 2019"},{"filename":"ufs1.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5476,"date":"Mar 18 2019"},{"filename":"ufs2.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5540,"date":"Mar 18 2019"},{"filename":"uhci.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6596,"date":"Mar 18 2019"},{"filename":"usb_keyboard.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3900,"date":"Mar 18 2019"},{"filename":"usb.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":10532,"date":"Mar 18 2019"},{"filename":"usbms.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7048,"date":"Mar 18 2019"},{"filename":"usbserial_common.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2020,"date":"Mar 18 2019"},{"filename":"usbserial_ftdi.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2360,"date":"Mar 18 2019"},{"filename":"usbserial_pl2303.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2692,"date":"Mar 18 2019"},{"filename":"usbserial_usbdebug.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1536,"date":"Mar 18 2019"},{"filename":"usbtest.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3600,"date":"Mar 18 2019"},{"filename":"vbe.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":9940,"date":"Mar 18 2019"},{"filename":"verify.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":12040,"date":"Mar 18 2019"},{"filename":"vga.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5076,"date":"Mar 18 2019"},{"filename":"vga_text.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2180,"date":"Mar 18 2019"},{"filename":"video_bochs.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5668,"date":"Mar 18 2019"},{"filename":"video_cirrus.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6052,"date":"Mar 18 2019"},{"filename":"video_colors.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5680,"date":"Mar 18 2019"},{"filename":"video_fb.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":20872,"date":"Mar 18 2019"},{"filename":"videoinfo.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3980,"date":"Mar 18 2019"},{"filename":"video.lst","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":33,"date":"Mar 18 2019"},{"filename":"video.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6072,"date":"Mar 18 2019"},{"filename":"videotest_checksum.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2384,"date":"Mar 18 2019"},{"filename":"videotest.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":4268,"date":"Mar 18 2019"},{"filename":"xfs.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":7496,"date":"Mar 18 2019"},{"filename":"xnu.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":27432,"date":"Mar 18 2019"},{"filename":"xnu_uuid.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2140,"date":"Mar 18 2019"},{"filename":"xnu_uuid_test.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":2016,"date":"Mar 18 2019"},{"filename":"xzio.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":15784,"date":"Mar 18 2019"},{"filename":"zfscrypt.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":5584,"date":"Mar 18 2019"},{"filename":"zfsinfo.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":6612,"date":"Mar 18 2019"},{"filename":"zfs.mod","parent":"/usr/lib/grub/i386-pc","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":40340,"date":"Mar 18 2019"},{"filename":".","parent":"/usr/lib/grub-legacy","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 12 2019"},{"filename":"..","parent":"/usr/lib/grub-legacy","flags":"drwxr-xr-x","links":65,"owner":"root","group":"root","size":4096,"date":"Oct 30 21:02"},{"filename":"update-grub","parent":"/usr/lib/grub-legacy","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30822,"date":"Mar 18 2019"},{"filename":".","parent":"/usr/lib/initcpio","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"..","parent":"/usr/lib/initcpio","flags":"drwxr-xr-x","links":65,"owner":"root","group":"root","size":4096,"date":"Oct 30 21:02"},{"filename":"install","parent":"/usr/lib/initcpio","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":".","parent":"/usr/lib/initcpio/install","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"..","parent":"/usr/lib/initcpio/install","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"bcache","parent":"/usr/lib/initcpio/install","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":291,"date":"Apr 21 2017"},{"filename":".","parent":"/usr/lib/initramfs-tools","flags":"drwxr-xr-x","links":4,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"..","parent":"/usr/lib/initramfs-tools","flags":"drwxr-xr-x","links":65,"owner":"root","group":"root","size":4096,"date":"Oct 30 21:02"},{"filename":"bin","parent":"/usr/lib/initramfs-tools","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"etc","parent":"/usr/lib/initramfs-tools","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":".","parent":"/usr/lib/initramfs-tools/bin","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"..","parent":"/usr/lib/initramfs-tools/bin","flags":"drwxr-xr-x","links":4,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"busybox","parent":"/usr/lib/initramfs-tools/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":305280,"date":"Mar 6 2019"},{"filename":"rzscontrol","parent":"/usr/lib/initramfs-tools/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10472,"date":"Apr 17 2019"},{"filename":"wait-for-root","parent":"/usr/lib/initramfs-tools/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10232,"date":"Apr 17 2019"},{"filename":".","parent":"/usr/lib/initramfs-tools/etc","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"..","parent":"/usr/lib/initramfs-tools/etc","flags":"drwxr-xr-x","links":4,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"dhcp","parent":"/usr/lib/initramfs-tools/etc","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":".","parent":"/usr/lib/initramfs-tools/etc/dhcp","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"..","parent":"/usr/lib/initramfs-tools/etc/dhcp","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"dhclient.conf","parent":"/usr/lib/initramfs-tools/etc/dhcp","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":422,"date":"Oct 12 2017"},{"filename":"dhclient-enter-hooks.d","parent":"/usr/lib/initramfs-tools/etc/dhcp","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":".","parent":"/usr/lib/initramfs-tools/etc/dhcp/dhclient-enter-hooks.d","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"..","parent":"/usr/lib/initramfs-tools/etc/dhcp/dhclient-enter-hooks.d","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"config","parent":"/usr/lib/initramfs-tools/etc/dhcp/dhclient-enter-hooks.d","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1814,"date":"Oct 12 2017"},{"filename":".","parent":"/usr/lib/kernel","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"..","parent":"/usr/lib/kernel","flags":"drwxr-xr-x","links":65,"owner":"root","group":"root","size":4096,"date":"Oct 30 21:02"},{"filename":"install.d","parent":"/usr/lib/kernel","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 6 06:24"},{"filename":".","parent":"/usr/lib/kernel/install.d","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 6 06:24"},{"filename":"..","parent":"/usr/lib/kernel/install.d","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"50-depmod.install","parent":"/usr/lib/kernel/install.d","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":368,"date":"Jan 28 2018"},{"filename":"85-initrd.install","parent":"/usr/lib/kernel/install.d","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":567,"date":"Nov 14 20:51"},{"filename":"90-loaderentry.install","parent":"/usr/lib/kernel/install.d","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2051,"date":"Jan 28 2018"},{"filename":".","parent":"/usr/lib/klibc","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"..","parent":"/usr/lib/klibc","flags":"drwxr-xr-x","links":65,"owner":"root","group":"root","size":4096,"date":"Oct 30 21:02"},{"filename":"bin","parent":"/usr/lib/klibc","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":".","parent":"/usr/lib/klibc/bin","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"..","parent":"/usr/lib/klibc/bin","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"cat","parent":"/usr/lib/klibc/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2832,"date":"Nov 9 2017"},{"filename":"chroot","parent":"/usr/lib/klibc/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1016,"date":"Nov 9 2017"},{"filename":"cpio","parent":"/usr/lib/klibc/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":5360,"date":"Nov 9 2017"},{"filename":"dd","parent":"/usr/lib/klibc/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4136,"date":"Nov 9 2017"},{"filename":"dmesg","parent":"/usr/lib/klibc/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1144,"date":"Nov 9 2017"},{"filename":"false","parent":"/usr/lib/klibc/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":624,"date":"Nov 9 2017"},{"filename":"fstype","parent":"/usr/lib/klibc/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4536,"date":"Nov 9 2017"},{"filename":"gunzip","parent":"/usr/lib/klibc/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":32312,"date":"Nov 9 2017"},{"filename":"gzip","parent":"/usr/lib/klibc/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":32312,"date":"Nov 9 2017"},{"filename":"halt","parent":"/usr/lib/klibc/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1176,"date":"Nov 9 2017"},{"filename":"ipconfig","parent":"/usr/lib/klibc/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":13680,"date":"Nov 9 2017"},{"filename":"kill","parent":"/usr/lib/klibc/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1088,"date":"Nov 9 2017"},{"filename":"kinit","parent":"/usr/lib/klibc/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":73560,"date":"Nov 9 2017"},{"filename":"kinit.shared","parent":"/usr/lib/klibc/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":44800,"date":"Nov 9 2017"},{"filename":"ln","parent":"/usr/lib/klibc/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1408,"date":"Nov 9 2017"},{"filename":"losetup","parent":"/usr/lib/klibc/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4904,"date":"Nov 9 2017"},{"filename":"ls","parent":"/usr/lib/klibc/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2616,"date":"Nov 9 2017"},{"filename":"minips","parent":"/usr/lib/klibc/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":5680,"date":"Nov 9 2017"},{"filename":"mkdir","parent":"/usr/lib/klibc/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2240,"date":"Nov 9 2017"},{"filename":"mkfifo","parent":"/usr/lib/klibc/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1936,"date":"Nov 9 2017"},{"filename":"mknod","parent":"/usr/lib/klibc/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2016,"date":"Nov 9 2017"},{"filename":"mount","parent":"/usr/lib/klibc/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2824,"date":"Nov 9 2017"},{"filename":"mv","parent":"/usr/lib/klibc/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2496,"date":"Nov 9 2017"},{"filename":"nfsmount","parent":"/usr/lib/klibc/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":7288,"date":"Nov 9 2017"},{"filename":"nuke","parent":"/usr/lib/klibc/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1216,"date":"Nov 9 2017"},{"filename":"pivot_root","parent":"/usr/lib/klibc/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":960,"date":"Nov 9 2017"},{"filename":"poweroff","parent":"/usr/lib/klibc/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1176,"date":"Nov 9 2017"},{"filename":"readlink","parent":"/usr/lib/klibc/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1272,"date":"Nov 9 2017"},{"filename":"reboot","parent":"/usr/lib/klibc/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1176,"date":"Nov 9 2017"},{"filename":"resume","parent":"/usr/lib/klibc/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2904,"date":"Nov 9 2017"},{"filename":"run-init","parent":"/usr/lib/klibc/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":5056,"date":"Nov 9 2017"},{"filename":"sh.shared","parent":"/usr/lib/klibc/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":58568,"date":"Nov 9 2017"},{"filename":"sleep","parent":"/usr/lib/klibc/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":976,"date":"Nov 9 2017"},{"filename":"sync","parent":"/usr/lib/klibc/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":784,"date":"Nov 9 2017"},{"filename":"true","parent":"/usr/lib/klibc/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":616,"date":"Nov 9 2017"},{"filename":"umount","parent":"/usr/lib/klibc/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1200,"date":"Nov 9 2017"},{"filename":"uname","parent":"/usr/lib/klibc/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1880,"date":"Nov 9 2017"},{"filename":"zcat","parent":"/usr/lib/klibc/bin","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":32312,"date":"Nov 9 2017"},{"filename":".","parent":"/usr/lib/language-selector","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"..","parent":"/usr/lib/language-selector","flags":"drwxr-xr-x","links":65,"owner":"root","group":"root","size":4096,"date":"Oct 30 21:02"},{"filename":"ls-dbus-backend","parent":"/usr/lib/language-selector","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4520,"date":"Nov 4 2013"},{"filename":".","parent":"/usr/lib/linux","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 12 2019"},{"filename":"..","parent":"/usr/lib/linux","flags":"drwxr-xr-x","links":65,"owner":"root","group":"root","size":4096,"date":"Oct 30 21:02"},{"filename":"triggers","parent":"/usr/lib/linux","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:04"},{"filename":".","parent":"/usr/lib/linux/triggers","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Feb 5 06:04"},{"filename":"..","parent":"/usr/lib/linux/triggers","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 12 2019"},{"filename":".","parent":"/usr/lib/linux-boot-probes","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 12 2019"},{"filename":"..","parent":"/usr/lib/linux-boot-probes","flags":"drwxr-xr-x","links":65,"owner":"root","group":"root","size":4096,"date":"Oct 30 21:02"},{"filename":"50mounted-tests","parent":"/usr/lib/linux-boot-probes","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2705,"date":"Jan 26 2017"},{"filename":"mounted","parent":"/usr/lib/linux-boot-probes","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 12 2019"},{"filename":".","parent":"/usr/lib/linux-boot-probes/mounted","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 12 2019"},{"filename":"..","parent":"/usr/lib/linux-boot-probes/mounted","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 12 2019"},{"filename":"40grub","parent":"/usr/lib/linux-boot-probes/mounted","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2147,"date":"Jan 21 2017"},{"filename":"40grub2","parent":"/usr/lib/linux-boot-probes/mounted","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2535,"date":"Jan 21 2017"},{"filename":"50lilo","parent":"/usr/lib/linux-boot-probes/mounted","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2331,"date":"Jan 21 2017"},{"filename":"90fallback","parent":"/usr/lib/linux-boot-probes/mounted","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2000,"date":"Jan 21 2017"},{"filename":".","parent":"/usr/lib/locale","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 12 2019"},{"filename":"..","parent":"/usr/lib/locale","flags":"drwxr-xr-x","links":65,"owner":"root","group":"root","size":4096,"date":"Oct 30 21:02"},{"filename":"C.UTF-8","parent":"/usr/lib/locale","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"locale-archive","parent":"/usr/lib/locale","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1683056,"date":"Aug 12 2019"},{"filename":".","parent":"/usr/lib/locale/C.UTF-8","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"..","parent":"/usr/lib/locale/C.UTF-8","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 12 2019"},{"filename":"LC_ADDRESS","parent":"/usr/lib/locale/C.UTF-8","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":131,"date":"Apr 16 2018"},{"filename":"LC_COLLATE","parent":"/usr/lib/locale/C.UTF-8","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":1516558,"date":"Apr 16 2018"},{"filename":"LC_CTYPE","parent":"/usr/lib/locale/C.UTF-8","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":199772,"date":"Apr 16 2018"},{"filename":"LC_IDENTIFICATION","parent":"/usr/lib/locale/C.UTF-8","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":252,"date":"Apr 16 2018"},{"filename":"LC_MEASUREMENT","parent":"/usr/lib/locale/C.UTF-8","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":23,"date":"Apr 16 2018"},{"filename":"LC_MESSAGES","parent":"/usr/lib/locale/C.UTF-8","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"LC_MONETARY","parent":"/usr/lib/locale/C.UTF-8","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":270,"date":"Apr 16 2018"},{"filename":"LC_NAME","parent":"/usr/lib/locale/C.UTF-8","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":62,"date":"Apr 16 2018"},{"filename":"LC_NUMERIC","parent":"/usr/lib/locale/C.UTF-8","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":50,"date":"Apr 16 2018"},{"filename":"LC_PAPER","parent":"/usr/lib/locale/C.UTF-8","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":34,"date":"Apr 16 2018"},{"filename":"LC_TELEPHONE","parent":"/usr/lib/locale/C.UTF-8","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":47,"date":"Apr 16 2018"},{"filename":"LC_TIME","parent":"/usr/lib/locale/C.UTF-8","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":3360,"date":"Apr 16 2018"},{"filename":".","parent":"/usr/lib/locale/C.UTF-8/LC_MESSAGES","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"..","parent":"/usr/lib/locale/C.UTF-8/LC_MESSAGES","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"SYS_LC_MESSAGES","parent":"/usr/lib/locale/C.UTF-8/LC_MESSAGES","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":48,"date":"Apr 16 2018"},{"filename":".","parent":"/usr/lib/lxcfs","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"..","parent":"/usr/lib/lxcfs","flags":"drwxr-xr-x","links":65,"owner":"root","group":"root","size":4096,"date":"Oct 30 21:02"},{"filename":"liblxcfs.so","link_to":"../x86_64-linux-gnu/lxcfs/liblxcfs.so","parent":"/usr/lib/lxcfs","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":37,"date":"Nov 23 2018"},{"filename":".","parent":"/usr/lib/lxd","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"..","parent":"/usr/lib/lxd","flags":"drwxr-xr-x","links":65,"owner":"root","group":"root","size":4096,"date":"Oct 30 21:02"},{"filename":"libdqlite.so.0","parent":"/usr/lib/lxd","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":110600,"date":"Nov 23 2018"},{"filename":"libdqlite.so.0.0.1","parent":"/usr/lib/lxd","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":110600,"date":"Nov 23 2018"},{"filename":"libsqlite3.so.0","parent":"/usr/lib/lxd","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":760256,"date":"Nov 23 2018"},{"filename":"libsqlite3.so.0.8.6","parent":"/usr/lib/lxd","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":760256,"date":"Nov 23 2018"},{"filename":"lxd","parent":"/usr/lib/lxd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18748376,"date":"Nov 23 2018"},{"filename":"shutdown","parent":"/usr/lib/lxd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":99,"date":"Nov 23 2018"},{"filename":"upgrade-bridge","parent":"/usr/lib/lxd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4957,"date":"Nov 23 2018"},{"filename":".","parent":"/usr/lib/man-db","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4096,"date":"Aug 5 2019"},{"filename":"..","parent":"/usr/lib/man-db","flags":"drwxr-xr-x","links":65,"owner":"root","group":"root","size":4096,"date":"Oct 30 21:02"},{"filename":"globbing","parent":"/usr/lib/man-db","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18904,"date":"Aug 4 2018"},{"filename":"libman-2.8.3.so","parent":"/usr/lib/man-db","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":160768,"date":"Aug 4 2018"},{"filename":"libmandb-2.8.3.so","parent":"/usr/lib/man-db","flags":"-rw-r--r--","links":1,"owner":"root","group":"root","size":22368,"date":"Aug 4 2018"},{"filename":"libmandb.so","link_to":"libmandb-2.8.3.so","parent":"/usr/lib/man-db","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":17,"date":"Aug 4 2018"},{"filename":"libman.so","link_to":"libman-2.8.3.so","parent":"/usr/lib/man-db","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":15,"date":"Aug 4 2018"},{"filename":"man","link_to":"../../bin/man","parent":"/usr/lib/man-db","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":13,"date":"Aug 4 2018"},{"filename":"manconv","parent":"/usr/lib/man-db","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14712,"date":"Aug 4 2018"},{"filename":"mandb","link_to":"../../bin/mandb","parent":"/usr/lib/man-db","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":15,"date":"Aug 4 2018"},{"filename":"zsoelim","parent":"/usr/lib/man-db","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47416,"date":"Aug 4 2018"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/ls-alR.json000066400000000000000000027442341415226333200212520ustar00rootroot00000000000000[{"filename": ".", "parent": "/usr", "flags": "drwxr-xr-x", "links": 10, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "..", "parent": "/usr", "flags": "drwxr-xr-x", "links": 24, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:04"}, {"filename": "bin", "parent": "/usr", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 28672, "date": "Feb 6 06:24"}, {"filename": "games", "parent": "/usr", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Apr 24 2018"}, {"filename": "include", "parent": "/usr", "flags": "drwxr-xr-x", "links": 34, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "lib", "parent": "/usr", "flags": "drwxr-xr-x", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Oct 30 21:02"}, {"filename": "local", "parent": "/usr", "flags": "drwxr-xr-x", "links": 10, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "sbin", "parent": "/usr", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "share", "parent": "/usr", "flags": "drwxr-xr-x", "links": 117, "owner": "root", "group": "root", "size": 4096, "date": "Oct 30 21:02"}, {"filename": "src", "parent": "/usr", "flags": "drwxr-xr-x", "links": 6, "owner": "root", "group": "root", "size": 4096, "date": "Feb 6 06:23"}, {"filename": ".", "parent": "/usr/bin", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 28672, "date": "Feb 6 06:24"}, {"filename": "..", "parent": "/usr/bin", "flags": "drwxr-xr-x", "links": 10, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "[", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 51384, "date": "Jan 18 2018"}, {"filename": "aa-enabled", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 22696, "date": "Sep 27 2018"}, {"filename": "aa-exec", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 22696, "date": "Sep 27 2018"}, {"filename": "acpi_listen", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 14608, "date": "Apr 28 2017"}, {"filename": "add-apt-repository", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 7258, "date": "Jul 12 2019"}, {"filename": "addpart", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 22608, "date": "Oct 15 2018"}, {"filename": "addr2line", "link_to": "x86_64-linux-gnu-addr2line", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 26, "date": "May 8 2019"}, {"filename": "apport-bug", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2558, "date": "Feb 13 2018"}, {"filename": "apport-cli", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 13367, "date": "Nov 5 02:49"}, {"filename": "apport-collect", "link_to": "apport-bug", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 10, "date": "Nov 5 02:49"}, {"filename": "apport-unpack", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1849, "date": "Nov 5 02:49"}, {"filename": "apropos", "link_to": "whatis", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 6, "date": "Aug 4 2018"}, {"filename": "apt", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 14424, "date": "May 7 2019"}, {"filename": "apt-add-repository", "link_to": "add-apt-repository", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 18, "date": "Jul 12 2019"}, {"filename": "apt-cache", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 80032, "date": "May 7 2019"}, {"filename": "apt-cdrom", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 22688, "date": "May 7 2019"}, {"filename": "apt-config", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 22616, "date": "May 7 2019"}, {"filename": "apt-extracttemplates", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 22688, "date": "May 7 2019"}, {"filename": "apt-ftparchive", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 239776, "date": "May 7 2019"}, {"filename": "apt-get", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 43168, "date": "May 7 2019"}, {"filename": "apt-key", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 27391, "date": "May 7 2019"}, {"filename": "apt-mark", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 43168, "date": "May 7 2019"}, {"filename": "apt-sortpkgs", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 43096, "date": "May 7 2019"}, {"filename": "ar", "link_to": "x86_64-linux-gnu-ar", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 19, "date": "May 8 2019"}, {"filename": "arch", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 35032, "date": "Jan 18 2018"}, {"filename": "as", "link_to": "x86_64-linux-gnu-as", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 19, "date": "May 8 2019"}, {"filename": "at", "parent": "/usr/bin", "flags": "-rwsr-sr-x", "links": 1, "owner": "daemon", "group": "daemon", "size": 51464, "date": "Feb 20 2018"}, {"filename": "atq", "link_to": "at", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 2, "date": "Feb 20 2018"}, {"filename": "atrm", "link_to": "at", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 2, "date": "Feb 20 2018"}, {"filename": "automat-visualize3", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 402, "date": "Aug 28 2017"}, {"filename": "awk", "link_to": "/etc/alternatives/awk", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 21, "date": "Aug 5 2019"}, {"filename": "b2sum", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 55512, "date": "Jan 18 2018"}, {"filename": "base32", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 39096, "date": "Jan 18 2018"}, {"filename": "base64", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 39096, "date": "Jan 18 2018"}, {"filename": "basename", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 35000, "date": "Jan 18 2018"}, {"filename": "bashbug", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 7115, "date": "Jun 6 2019"}, {"filename": "batch", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 152, "date": "Feb 20 2018"}, {"filename": "bc", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 92872, "date": "Mar 22 2018"}, {"filename": "bootctl", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 34952, "date": "Feb 5 01:07"}, {"filename": "bsd-from", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10232, "date": "Jan 17 2018"}, {"filename": "bsd-write", "parent": "/usr/bin", "flags": "-rwxr-sr-x", "links": 1, "owner": "root", "group": "tty", "size": 14328, "date": "Jan 17 2018"}, {"filename": "busctl", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 67672, "date": "Feb 5 01:07"}, {"filename": "byobu", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 8264, "date": "Dec 4 2017"}, {"filename": "byobu-config", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 996, "date": "Dec 4 2017"}, {"filename": "byobu-ctrl-a", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 4774, "date": "Dec 4 2017"}, {"filename": "byobu-disable", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1295, "date": "Dec 4 2017"}, {"filename": "byobu-disable-prompt", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1307, "date": "Dec 4 2017"}, {"filename": "byobu-enable", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1182, "date": "Dec 4 2017"}, {"filename": "byobu-enable-prompt", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1453, "date": "Dec 4 2017"}, {"filename": "byobu-export", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1260, "date": "Dec 4 2017"}, {"filename": "byobu-janitor", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 5963, "date": "Dec 4 2017"}, {"filename": "byobu-keybindings", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1506, "date": "Dec 4 2017"}, {"filename": "byobu-launch", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 3289, "date": "Dec 4 2017"}, {"filename": "byobu-launcher", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1910, "date": "Dec 4 2017"}, {"filename": "byobu-launcher-install", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2459, "date": "Dec 4 2017"}, {"filename": "byobu-launcher-uninstall", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1561, "date": "Dec 4 2017"}, {"filename": "byobu-layout", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 3348, "date": "Dec 4 2017"}, {"filename": "byobu-prompt", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1156, "date": "Dec 4 2017"}, {"filename": "byobu-quiet", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1410, "date": "Dec 4 2017"}, {"filename": "byobu-reconnect-sockets", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 3298, "date": "Dec 4 2017"}, {"filename": "byobu-screen", "link_to": "byobu", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 5, "date": "Dec 4 2017"}, {"filename": "byobu-select-backend", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1452, "date": "Dec 4 2017"}, {"filename": "byobu-select-profile", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 6287, "date": "Dec 4 2017"}, {"filename": "byobu-select-session", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1012, "date": "Dec 4 2017"}, {"filename": "byobu-shell", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1599, "date": "Dec 4 2017"}, {"filename": "byobu-silent", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1306, "date": "Dec 4 2017"}, {"filename": "byobu-status", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 6015, "date": "Dec 4 2017"}, {"filename": "byobu-status-detail", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1207, "date": "Dec 4 2017"}, {"filename": "byobu-tmux", "link_to": "byobu", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 5, "date": "Dec 4 2017"}, {"filename": "byobu-ugraph", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 4667, "date": "Dec 4 2017"}, {"filename": "byobu-ulevel", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 11996, "date": "Dec 4 2017"}, {"filename": "c++", "link_to": "/etc/alternatives/c++", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 21, "date": "Oct 18 00:14"}, {"filename": "c89", "link_to": "/etc/alternatives/c89", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 21, "date": "Oct 18 00:14"}, {"filename": "c89-gcc", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 428, "date": "May 7 2006"}, {"filename": "c99", "link_to": "/etc/alternatives/c99", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 21, "date": "Oct 18 00:14"}, {"filename": "c99-gcc", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 454, "date": "Apr 11 2011"}, {"filename": "cal", "link_to": "ncal", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 4, "date": "Jan 17 2018"}, {"filename": "calendar", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 31208, "date": "Jan 17 2018"}, {"filename": "captoinfo", "link_to": "tic", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "May 23 2018"}, {"filename": "catchsegv", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 3327, "date": "Apr 16 2018"}, {"filename": "catman", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 39384, "date": "Aug 4 2018"}, {"filename": "cautious-launcher", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 853, "date": "Jul 15 2016"}, {"filename": "cc", "link_to": "/etc/alternatives/cc", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 20, "date": "Oct 18 00:14"}, {"filename": "c++filt", "link_to": "x86_64-linux-gnu-c++filt", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 24, "date": "May 8 2019"}, {"filename": "cftp3", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 380, "date": "Apr 20 2018"}, {"filename": "cgroupfs-mount", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1275, "date": "Jan 25 2016"}, {"filename": "cgroupfs-umount", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 620, "date": "Jan 25 2016"}, {"filename": "chacl", "link_to": "/bin/chacl", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 10, "date": "Aug 5 2019"}, {"filename": "chage", "parent": "/usr/bin", "flags": "-rwxr-sr-x", "links": 1, "owner": "root", "group": "shadow", "size": 71816, "date": "Mar 22 2019"}, {"filename": "chardet3", "link_to": "chardetect3", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 11, "date": "Jun 18 2017"}, {"filename": "chardetect3", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 389, "date": "Jun 18 2017"}, {"filename": "chattr", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 14336, "date": "Jan 22 14:40"}, {"filename": "chcon", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 63672, "date": "Jan 18 2018"}, {"filename": "check-language-support", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2771, "date": "Jun 28 2019"}, {"filename": "chfn", "parent": "/usr/bin", "flags": "-rwsr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 76496, "date": "Mar 22 2019"}, {"filename": "chrt", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 30800, "date": "Oct 15 2018"}, {"filename": "chsh", "parent": "/usr/bin", "flags": "-rwsr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 44528, "date": "Mar 22 2019"}, {"filename": "cifsiostat", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 34960, "date": "Jan 17 11:24"}, {"filename": "ckbcomp", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 149838, "date": "Apr 23 2019"}, {"filename": "ckeygen3", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 386, "date": "Apr 20 2018"}, {"filename": "cksum", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 35000, "date": "Jan 18 2018"}, {"filename": "clear", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10240, "date": "May 23 2018"}, {"filename": "clear_console", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10312, "date": "Jun 6 2019"}, {"filename": "cloud-id", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 390, "date": "May 11 2019"}, {"filename": "cloud-init", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 394, "date": "May 11 2019"}, {"filename": "cloud-init-per", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2108, "date": "May 10 2019"}, {"filename": "cmp", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 47200, "date": "Aug 4 2017"}, {"filename": "codepage", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 14328, "date": "Jan 22 2018"}, {"filename": "col", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10232, "date": "Jan 17 2018"}, {"filename": "col1", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 963, "date": "Dec 4 2017"}, {"filename": "col2", "link_to": "col1", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 4, "date": "Dec 4 2017"}, {"filename": "col3", "link_to": "col1", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 4, "date": "Dec 4 2017"}, {"filename": "col4", "link_to": "col1", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 4, "date": "Dec 4 2017"}, {"filename": "col5", "link_to": "col1", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 4, "date": "Dec 4 2017"}, {"filename": "col6", "link_to": "col1", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 4, "date": "Dec 4 2017"}, {"filename": "col7", "link_to": "col1", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 4, "date": "Dec 4 2017"}, {"filename": "col8", "link_to": "col1", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 4, "date": "Dec 4 2017"}, {"filename": "col9", "link_to": "col1", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 4, "date": "Dec 4 2017"}, {"filename": "colcrt", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10240, "date": "Jan 17 2018"}, {"filename": "colrm", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10232, "date": "Jan 17 2018"}, {"filename": "column", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 14344, "date": "Jan 17 2018"}, {"filename": "comm", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 39128, "date": "Jan 18 2018"}, {"filename": "compose", "link_to": "run-mailcap", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 11, "date": "Jul 15 2016"}, {"filename": "conch3", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 382, "date": "Apr 20 2018"}, {"filename": "containerd", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 40697760, "date": "Jul 3 2019"}, {"filename": "containerd-shim", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 4973832, "date": "Jul 3 2019"}, {"filename": "containerd-shim-runc-v1", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 6258056, "date": "Jul 3 2019"}, {"filename": "containerd-stress", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 18702208, "date": "Jul 3 2019"}, {"filename": "corelist", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 12835, "date": "Nov 19 2018"}, {"filename": "cpan", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 8156, "date": "Nov 19 2018"}, {"filename": "cpan5.26-x86_64-linux-gnu", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 8177, "date": "Nov 19 2018"}, {"filename": "cpp", "link_to": "cpp-7", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 5, "date": "May 20 2019"}, {"filename": "cpp-7", "link_to": "x86_64-linux-gnu-cpp-7", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 22, "date": "May 8 2019"}, {"filename": "c_rehash", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 6332, "date": "Nov 12 16:58"}, {"filename": "crontab", "parent": "/usr/bin", "flags": "-rwxr-sr-x", "links": 1, "owner": "root", "group": "crontab", "size": 39352, "date": "Nov 16 2017"}, {"filename": "csplit", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 51416, "date": "Jan 18 2018"}, {"filename": "ctail", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 958, "date": "Dec 4 2017"}, {"filename": "ctr", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 22322880, "date": "Jul 3 2019"}, {"filename": "ctstat", "link_to": "lnstat", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 6, "date": "Feb 26 2018"}, {"filename": "curl", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 223304, "date": "Sep 6 05:27"}, {"filename": "cut", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 43224, "date": "Jan 18 2018"}, {"filename": "dbus-cleanup-sockets", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10224, "date": "Jun 10 2019"}, {"filename": "dbus-daemon", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 236584, "date": "Jun 10 2019"}, {"filename": "dbus-monitor", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 22520, "date": "Jun 10 2019"}, {"filename": "dbus-run-session", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10224, "date": "Jun 10 2019"}, {"filename": "dbus-send", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 26608, "date": "Jun 10 2019"}, {"filename": "dbus-update-activation-environment", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 14320, "date": "Jun 10 2019"}, {"filename": "dbus-uuidgen", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10224, "date": "Jun 10 2019"}, {"filename": "deallocvt", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10312, "date": "Jan 22 2018"}, {"filename": "debconf", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2859, "date": "May 6 2019"}, {"filename": "debconf-apt-progress", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 11541, "date": "May 6 2019"}, {"filename": "debconf-communicate", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 608, "date": "May 6 2019"}, {"filename": "debconf-copydb", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1719, "date": "May 6 2019"}, {"filename": "debconf-escape", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 647, "date": "May 6 2019"}, {"filename": "debconf-set-selections", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2935, "date": "May 6 2019"}, {"filename": "debconf-show", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1827, "date": "May 6 2019"}, {"filename": "deb-systemd-helper", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 20142, "date": "Oct 25 2017"}, {"filename": "deb-systemd-invoke", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 4434, "date": "Oct 25 2017"}, {"filename": "delpart", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 22608, "date": "Oct 15 2018"}, {"filename": "delv", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 41840, "date": "Nov 18 15:01"}, {"filename": "dh_bash-completion", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2550, "date": "Apr 2 2018"}, {"filename": "dh_pypy", "link_to": "../share/dh-python/dh_pypy", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 26, "date": "Mar 26 2018"}, {"filename": "dh_python3", "link_to": "../share/dh-python/dh_python3", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 29, "date": "Mar 26 2018"}, {"filename": "diff", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 145752, "date": "Aug 4 2017"}, {"filename": "diff3", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 63704, "date": "Aug 4 2017"}, {"filename": "dig", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 150024, "date": "Nov 18 15:01"}, {"filename": "dircolors", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 47296, "date": "Jan 18 2018"}, {"filename": "dirmngr", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 546360, "date": "Jan 10 2019"}, {"filename": "dirmngr-client", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 109320, "date": "Jan 10 2019"}, {"filename": "dirname", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 30904, "date": "Jan 18 2018"}, {"filename": "docker", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 68677120, "date": "Aug 14 2019"}, {"filename": "dockerd", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 81828392, "date": "Aug 14 2019"}, {"filename": "docker-init", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 804408, "date": "Aug 14 2019"}, {"filename": "docker-proxy", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2857151, "date": "Aug 14 2019"}, {"filename": "do-release-upgrade", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 9017, "date": "Jun 19 2019"}, {"filename": "dpkg", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 297472, "date": "Oct 4 2018"}, {"filename": "dpkg-architecture", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 12852, "date": "Sep 5 21:05"}, {"filename": "dpkg-buildflags", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 7565, "date": "Sep 5 21:05"}, {"filename": "dpkg-buildpackage", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 29796, "date": "Sep 5 21:05"}, {"filename": "dpkg-checkbuilddeps", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 7503, "date": "Sep 5 21:05"}, {"filename": "dpkg-deb", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 153952, "date": "Oct 4 2018"}, {"filename": "dpkg-distaddfile", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2782, "date": "Sep 5 21:05"}, {"filename": "dpkg-divert", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 141728, "date": "Oct 4 2018"}, {"filename": "dpkg-genbuildinfo", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 16775, "date": "Sep 5 21:05"}, {"filename": "dpkg-genchanges", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 17622, "date": "Sep 5 21:05"}, {"filename": "dpkg-gencontrol", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 14059, "date": "Sep 5 21:05"}, {"filename": "dpkg-gensymbols", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10629, "date": "Sep 5 21:05"}, {"filename": "dpkg-maintscript-helper", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 19031, "date": "Oct 4 2018"}, {"filename": "dpkg-mergechangelogs", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 8590, "date": "Sep 5 21:05"}, {"filename": "dpkg-name", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 6789, "date": "Sep 5 21:05"}, {"filename": "dpkg-parsechangelog", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 4435, "date": "Sep 5 21:05"}, {"filename": "dpkg-query", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 149912, "date": "Oct 4 2018"}, {"filename": "dpkg-scanpackages", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 8425, "date": "Sep 5 21:05"}, {"filename": "dpkg-scansources", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 9167, "date": "Sep 5 21:05"}, {"filename": "dpkg-shlibdeps", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 31360, "date": "Sep 5 21:05"}, {"filename": "dpkg-source", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 23300, "date": "Sep 5 21:05"}, {"filename": "dpkg-split", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 121176, "date": "Oct 4 2018"}, {"filename": "dpkg-statoverride", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 71936, "date": "Oct 4 2018"}, {"filename": "dpkg-trigger", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 67848, "date": "Oct 4 2018"}, {"filename": "dpkg-vendor", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 3262, "date": "Sep 5 21:05"}, {"filename": "du", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 100568, "date": "Jan 18 2018"}, {"filename": "dumpkeys", "link_to": "/bin/dumpkeys", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 13, "date": "Aug 5 2019"}, {"filename": "dwp", "link_to": "x86_64-linux-gnu-dwp", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 20, "date": "May 8 2019"}, {"filename": "eatmydata", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2806, "date": "Mar 9 2018"}, {"filename": "ec2metadata", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 7297, "date": "Apr 13 2018"}, {"filename": "edit", "link_to": "run-mailcap", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 11, "date": "Jul 15 2016"}, {"filename": "editor", "link_to": "/etc/alternatives/editor", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 24, "date": "Aug 5 2019"}, {"filename": "eject", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 31424, "date": "Mar 28 2017"}, {"filename": "elfedit", "link_to": "x86_64-linux-gnu-elfedit", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 24, "date": "May 8 2019"}, {"filename": "enc2xs", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 42153, "date": "Nov 19 2018"}, {"filename": "encguess", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 3066, "date": "Nov 19 2018"}, {"filename": "env", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 35000, "date": "Jan 18 2018"}, {"filename": "envsubst", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 34896, "date": "Feb 21 2019"}, {"filename": "eqn", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 197824, "date": "Feb 10 2018"}, {"filename": "ex", "link_to": "/etc/alternatives/ex", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 20, "date": "Aug 5 2019"}, {"filename": "expand", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 39128, "date": "Jan 18 2018"}, {"filename": "expiry", "parent": "/usr/bin", "flags": "-rwxr-sr-x", "links": 1, "owner": "root", "group": "shadow", "size": 22808, "date": "Mar 22 2019"}, {"filename": "expr", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 47288, "date": "Jan 18 2018"}, {"filename": "factor", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 75992, "date": "Jan 18 2018"}, {"filename": "faillog", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 18728, "date": "Mar 22 2019"}, {"filename": "faked-sysv", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 26736, "date": "Jan 8 2018"}, {"filename": "faked-tcp", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 30824, "date": "Jan 8 2018"}, {"filename": "fakeroot", "link_to": "/etc/alternatives/fakeroot", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 26, "date": "Oct 18 00:14"}, {"filename": "fakeroot-sysv", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 3851, "date": "Jan 8 2018"}, {"filename": "fakeroot-tcp", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 3846, "date": "Jan 8 2018"}, {"filename": "fallocate", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 26704, "date": "Oct 15 2018"}, {"filename": "file", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 22792, "date": "Oct 29 16:50"}, {"filename": "find", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 238080, "date": "Nov 5 2017"}, {"filename": "flock", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 30880, "date": "Oct 15 2018"}, {"filename": "fmt", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 43192, "date": "Jan 18 2018"}, {"filename": "fold", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 35000, "date": "Jan 18 2018"}, {"filename": "free", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 18512, "date": "May 14 2018"}, {"filename": "from", "link_to": "/etc/alternatives/from", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 22, "date": "Aug 5 2019"}, {"filename": "ftp", "link_to": "/etc/alternatives/ftp", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 21, "date": "Aug 5 2019"}, {"filename": "g++", "link_to": "g++-7", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 5, "date": "May 20 2019"}, {"filename": "g++-7", "link_to": "x86_64-linux-gnu-g++-7", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 22, "date": "May 8 2019"}, {"filename": "gawk", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 658072, "date": "Feb 11 2018"}, {"filename": "gcc", "link_to": "gcc-7", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 5, "date": "May 20 2019"}, {"filename": "gcc-7", "link_to": "x86_64-linux-gnu-gcc-7", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 22, "date": "May 8 2019"}, {"filename": "gcc-ar", "link_to": "gcc-ar-7", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 8, "date": "May 20 2019"}, {"filename": "gcc-ar-7", "link_to": "x86_64-linux-gnu-gcc-ar-7", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 25, "date": "May 8 2019"}, {"filename": "gcc-nm", "link_to": "gcc-nm-7", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 8, "date": "May 20 2019"}, {"filename": "gcc-nm-7", "link_to": "x86_64-linux-gnu-gcc-nm-7", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 25, "date": "May 8 2019"}, {"filename": "gcc-ranlib", "link_to": "gcc-ranlib-7", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 12, "date": "May 20 2019"}, {"filename": "gcc-ranlib-7", "link_to": "x86_64-linux-gnu-gcc-ranlib-7", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 29, "date": "May 8 2019"}, {"filename": "gcov", "link_to": "gcov-7", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 6, "date": "May 20 2019"}, {"filename": "gcov-7", "link_to": "x86_64-linux-gnu-gcov-7", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 23, "date": "May 8 2019"}, {"filename": "gcov-dump", "link_to": "gcov-dump-7", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 11, "date": "May 20 2019"}, {"filename": "gcov-dump-7", "link_to": "x86_64-linux-gnu-gcov-dump-7", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 28, "date": "May 8 2019"}, {"filename": "gcov-tool", "link_to": "gcov-tool-7", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 11, "date": "May 20 2019"}, {"filename": "gcov-tool-7", "link_to": "x86_64-linux-gnu-gcov-tool-7", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 28, "date": "May 8 2019"}, {"filename": "gencat", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 22752, "date": "Apr 16 2018"}, {"filename": "geqn", "link_to": "eqn", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Feb 10 2018"}, {"filename": "getconf", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 30856, "date": "Apr 16 2018"}, {"filename": "getent", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 31224, "date": "Apr 16 2018"}, {"filename": "getfacl", "link_to": "/bin/getfacl", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 12, "date": "Aug 5 2019"}, {"filename": "getkeycodes", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10312, "date": "Jan 22 2018"}, {"filename": "getopt", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 14408, "date": "Oct 15 2018"}, {"filename": "gettext", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 34896, "date": "Feb 21 2019"}, {"filename": "gettext.sh", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 4629, "date": "Feb 21 2019"}, {"filename": "ginstall-info", "link_to": "install-info", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 12, "date": "Feb 5 2018"}, {"filename": "git", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2347696, "date": "Dec 9 13:29"}, {"filename": "git-receive-pack", "link_to": "git", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-shell", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1304912, "date": "Dec 9 13:29"}, {"filename": "git-upload-archive", "link_to": "git", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-upload-pack", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1317120, "date": "Dec 9 13:29"}, {"filename": "gold", "link_to": "x86_64-linux-gnu-gold", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 21, "date": "May 8 2019"}, {"filename": "gpasswd", "parent": "/usr/bin", "flags": "-rwsr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 75824, "date": "Mar 22 2019"}, {"filename": "gpg", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1017384, "date": "Jan 10 2019"}, {"filename": "gpg-agent", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 398024, "date": "Jan 10 2019"}, {"filename": "gpgconf", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 166216, "date": "Jan 10 2019"}, {"filename": "gpg-connect-agent", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 158568, "date": "Jan 10 2019"}, {"filename": "gpgparsemail", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 26696, "date": "Jan 10 2019"}, {"filename": "gpgsm", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 502880, "date": "Jan 10 2019"}, {"filename": "gpgsplit", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 80336, "date": "Jan 10 2019"}, {"filename": "gpgv", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 437264, "date": "Jan 10 2019"}, {"filename": "gpg-wks-server", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 191504, "date": "Jan 10 2019"}, {"filename": "gpg-zip", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 3443, "date": "Jan 10 2019"}, {"filename": "gpic", "link_to": "pic", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Feb 10 2018"}, {"filename": "gprof", "link_to": "x86_64-linux-gnu-gprof", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 22, "date": "May 8 2019"}, {"filename": "groff", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 107840, "date": "Feb 10 2018"}, {"filename": "grog", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2780, "date": "Feb 10 2018"}, {"filename": "grops", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 169696, "date": "Feb 10 2018"}, {"filename": "grotty", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 124256, "date": "Feb 10 2018"}, {"filename": "groups", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 35000, "date": "Jan 18 2018"}, {"filename": "growpart", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 21883, "date": "Apr 13 2018"}, {"filename": "grub-editenv", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 245688, "date": "Mar 18 2019"}, {"filename": "grub-file", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 675624, "date": "Mar 18 2019"}, {"filename": "grub-fstest", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 808600, "date": "Mar 18 2019"}, {"filename": "grub-glue-efi", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 241432, "date": "Mar 18 2019"}, {"filename": "grub-kbdcomp", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1681, "date": "Mar 18 2019"}, {"filename": "grub-menulst2cfg", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 221224, "date": "Mar 18 2019"}, {"filename": "grub-mkfont", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 270680, "date": "Mar 18 2019"}, {"filename": "grub-mkimage", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 336728, "date": "Mar 18 2019"}, {"filename": "grub-mklayout", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 245848, "date": "Mar 18 2019"}, {"filename": "grub-mknetdir", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 378280, "date": "Mar 18 2019"}, {"filename": "grub-mkpasswd-pbkdf2", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 249976, "date": "Mar 18 2019"}, {"filename": "grub-mkrelpath", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 241144, "date": "Mar 18 2019"}, {"filename": "grub-mkrescue", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 841960, "date": "Mar 18 2019"}, {"filename": "grub-mkstandalone", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 460536, "date": "Mar 18 2019"}, {"filename": "grub-mount", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 622808, "date": "Mar 18 2019"}, {"filename": "grub-ntldr-img", "link_to": "../lib/grub/i386-pc/grub-ntldr-img", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 34, "date": "Mar 18 2019"}, {"filename": "grub-render-label", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 692392, "date": "Mar 18 2019"}, {"filename": "grub-script-check", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 265848, "date": "Mar 18 2019"}, {"filename": "grub-syslinux2cfg", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 639672, "date": "Mar 18 2019"}, {"filename": "gtbl", "link_to": "tbl", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Feb 10 2018"}, {"filename": "h2ph", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 29224, "date": "Nov 19 2018"}, {"filename": "h2xs", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 60866, "date": "Nov 19 2018"}, {"filename": "hd", "link_to": "hexdump", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 7, "date": "Jan 17 2018"}, {"filename": "head", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 43224, "date": "Jan 18 2018"}, {"filename": "helpztags", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2514, "date": "Feb 2 2018"}, {"filename": "hexdump", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 26728, "date": "Jan 17 2018"}, {"filename": "host", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 129704, "date": "Nov 18 15:01"}, {"filename": "hostid", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 30904, "date": "Jan 18 2018"}, {"filename": "hostnamectl", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 18504, "date": "Feb 5 01:07"}, {"filename": "htop", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 185016, "date": "Feb 17 2018"}, {"filename": "hwe-support-status", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10830, "date": "Apr 9 2019"}, {"filename": "i386", "link_to": "setarch", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 7, "date": "Oct 15 2018"}, {"filename": "iconv", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 63744, "date": "Apr 16 2018"}, {"filename": "id", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 43224, "date": "Jan 18 2018"}, {"filename": "igawk", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 3189, "date": "Feb 11 2018"}, {"filename": "info", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 251616, "date": "Feb 5 2018"}, {"filename": "infobrowser", "link_to": "/etc/alternatives/infobrowser", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 29, "date": "Aug 5 2019"}, {"filename": "infocmp", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 59464, "date": "May 23 2018"}, {"filename": "infotocap", "link_to": "tic", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "May 23 2018"}, {"filename": "install", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 145664, "date": "Jan 18 2018"}, {"filename": "install-info", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 44128, "date": "Feb 5 2018"}, {"filename": "instmodsh", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 4370, "date": "Nov 19 2018"}, {"filename": "ionice", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 26704, "date": "Oct 15 2018"}, {"filename": "iostat", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 55440, "date": "Jan 17 11:24"}, {"filename": "ipcmk", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 26768, "date": "Oct 15 2018"}, {"filename": "ipcrm", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 26704, "date": "Oct 15 2018"}, {"filename": "ipcs", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 51280, "date": "Oct 15 2018"}, {"filename": "iptables-xml", "link_to": "/sbin/xtables-multi", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 19, "date": "Nov 12 2017"}, {"filename": "ischroot", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10280, "date": "Dec 30 2017"}, {"filename": "iscsiadm", "link_to": "/sbin/iscsiadm", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 14, "date": "Mar 28 2019"}, {"filename": "join", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 47320, "date": "Jan 18 2018"}, {"filename": "jq", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 22520, "date": "Jan 30 2017"}, {"filename": "jsondiff", "link_to": "/etc/alternatives/jsondiff", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 26, "date": "Aug 5 2019"}, {"filename": "jsonpatch", "link_to": "/etc/alternatives/jsonpatch", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 27, "date": "Aug 5 2019"}, {"filename": "jsonpointer", "link_to": "/etc/alternatives/jsonpointer", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 29, "date": "Aug 5 2019"}, {"filename": "json_pp", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 3959, "date": "Nov 19 2018"}, {"filename": "jsonschema", "link_to": "/etc/alternatives/jsonschema", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 28, "date": "Aug 5 2019"}, {"filename": "kbdinfo", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 14408, "date": "Jan 22 2018"}, {"filename": "kbxutil", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 162496, "date": "Jan 10 2019"}, {"filename": "keep-one-running", "link_to": "run-one", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 7, "date": "Jan 15 2014"}, {"filename": "kernel-install", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 4508, "date": "Jan 28 2018"}, {"filename": "keyring", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 385, "date": "Jan 9 2018"}, {"filename": "killall", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 27768, "date": "Dec 11 2018"}, {"filename": "landscape-sysinfo", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 624, "date": "Feb 8 2019"}, {"filename": "last", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 43088, "date": "Oct 15 2018"}, {"filename": "lastb", "link_to": "last", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 4, "date": "Oct 15 2018"}, {"filename": "lastlog", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 18504, "date": "Mar 22 2019"}, {"filename": "lcf", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 7786, "date": "Feb 26 2018"}, {"filename": "ld", "link_to": "x86_64-linux-gnu-ld", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 19, "date": "May 8 2019"}, {"filename": "ld.bfd", "link_to": "x86_64-linux-gnu-ld.bfd", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 23, "date": "May 8 2019"}, {"filename": "ldd", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 5420, "date": "Apr 16 2018"}, {"filename": "ld.gold", "link_to": "x86_64-linux-gnu-ld.gold", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 24, "date": "May 8 2019"}, {"filename": "less", "link_to": "/bin/less", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 9, "date": "Aug 5 2019"}, {"filename": "lessecho", "link_to": "/bin/lessecho", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 13, "date": "Aug 5 2019"}, {"filename": "lessfile", "link_to": "/bin/lessfile", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 13, "date": "Aug 5 2019"}, {"filename": "lesskey", "link_to": "/bin/lesskey", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 12, "date": "Aug 5 2019"}, {"filename": "lesspipe", "link_to": "/bin/lesspipe", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 13, "date": "Aug 5 2019"}, {"filename": "lexgrog", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 92744, "date": "Aug 4 2018"}, {"filename": "libnetcfg", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 15775, "date": "Nov 19 2018"}, {"filename": "link", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 30904, "date": "Jan 18 2018"}, {"filename": "linux32", "link_to": "setarch", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 7, "date": "Oct 15 2018"}, {"filename": "linux64", "link_to": "setarch", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 7, "date": "Oct 15 2018"}, {"filename": "linux-boot-prober", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1577, "date": "Jan 21 2017"}, {"filename": "linux-check-removal", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 4090, "date": "Jun 21 2016"}, {"filename": "linux-update-symlinks", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 6320, "date": "Jun 5 2016"}, {"filename": "linux-version", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2696, "date": "Sep 17 2016"}, {"filename": "lnstat", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 22888, "date": "Feb 26 2018"}, {"filename": "loadkeys", "link_to": "/bin/loadkeys", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 13, "date": "Aug 5 2019"}, {"filename": "loadunimap", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 26760, "date": "Jan 22 2018"}, {"filename": "locale", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 50592, "date": "Apr 16 2018"}, {"filename": "locale-check", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10240, "date": "Aug 5 2019"}, {"filename": "localectl", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 22600, "date": "Feb 5 01:07"}, {"filename": "localedef", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 338744, "date": "Apr 16 2018"}, {"filename": "locate", "link_to": "/etc/alternatives/locate", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 24, "date": "Aug 5 2019"}, {"filename": "logger", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 47792, "date": "Oct 15 2018"}, {"filename": "logname", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 30904, "date": "Jan 18 2018"}, {"filename": "look", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10472, "date": "Jan 17 2018"}, {"filename": "lorder", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2885, "date": "Jan 17 2018"}, {"filename": "lsattr", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10240, "date": "Jan 22 14:40"}, {"filename": "lsb_release", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 3638, "date": "Aug 7 2017"}, {"filename": "lscpu", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 71760, "date": "Oct 15 2018"}, {"filename": "lshw", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 687056, "date": "Jul 10 2018"}, {"filename": "lsinitramfs", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 625, "date": "Sep 27 2018"}, {"filename": "lsipc", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 71760, "date": "Oct 15 2018"}, {"filename": "lslocks", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 35232, "date": "Oct 15 2018"}, {"filename": "lslogins", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 63568, "date": "Oct 15 2018"}, {"filename": "lsmem", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 43088, "date": "Oct 15 2018"}, {"filename": "lsns", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 38992, "date": "Oct 15 2018"}, {"filename": "lsof", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 163224, "date": "Oct 28 2015"}, {"filename": "lspci", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 81584, "date": "Feb 10 2019"}, {"filename": "lspgpot", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1081, "date": "Aug 28 2017"}, {"filename": "lsusb", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 117176, "date": "Apr 21 2017"}, {"filename": "ltrace", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 333016, "date": "Oct 13 2016"}, {"filename": "lxc", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10779792, "date": "Nov 23 2018"}, {"filename": "lxcfs", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 18504, "date": "Nov 23 2018"}, {"filename": "lxd", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 105, "date": "Nov 23 2018"}, {"filename": "lzcat", "link_to": "/etc/alternatives/lzcat", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 23, "date": "Aug 5 2019"}, {"filename": "lzcmp", "link_to": "/etc/alternatives/lzcmp", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 23, "date": "Aug 5 2019"}, {"filename": "lzdiff", "link_to": "/etc/alternatives/lzdiff", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 24, "date": "Aug 5 2019"}, {"filename": "lzegrep", "link_to": "/etc/alternatives/lzegrep", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 25, "date": "Aug 5 2019"}, {"filename": "lzfgrep", "link_to": "/etc/alternatives/lzfgrep", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 25, "date": "Aug 5 2019"}, {"filename": "lzgrep", "link_to": "/etc/alternatives/lzgrep", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 24, "date": "Aug 5 2019"}, {"filename": "lzless", "link_to": "/etc/alternatives/lzless", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 24, "date": "Aug 5 2019"}, {"filename": "lzma", "link_to": "/etc/alternatives/lzma", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 22, "date": "Aug 5 2019"}, {"filename": "lzmainfo", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10384, "date": "Jun 28 2017"}, {"filename": "lzmore", "link_to": "/etc/alternatives/lzmore", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 24, "date": "Aug 5 2019"}, {"filename": "make", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 222792, "date": "Apr 17 2018"}, {"filename": "make-first-existing-target", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 4905, "date": "Apr 17 2018"}, {"filename": "man", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 107008, "date": "Aug 4 2018"}, {"filename": "mandb", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 129760, "date": "Aug 4 2018"}, {"filename": "manifest", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1942, "date": "Dec 4 2017"}, {"filename": "manpath", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 31200, "date": "Aug 4 2018"}, {"filename": "mapscrn", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 22664, "date": "Jan 22 2018"}, {"filename": "mawk", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 125416, "date": "Apr 3 2018"}, {"filename": "mcookie", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 30864, "date": "Oct 15 2018"}, {"filename": "md5sum", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 43224, "date": "Jan 18 2018"}, {"filename": "md5sum.textutils", "link_to": "md5sum", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 6, "date": "Jan 18 2018"}, {"filename": "mdig", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 43136, "date": "Nov 18 15:01"}, {"filename": "mesg", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10312, "date": "Oct 15 2018"}, {"filename": "migrate-pubring-from-classic-gpg", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2194, "date": "Nov 30 2017"}, {"filename": "miniterm", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 35098, "date": "Apr 9 2018"}, {"filename": "mkfifo", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 63672, "date": "Jan 18 2018"}, {"filename": "mk_modmap", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 16163, "date": "Jan 22 2018"}, {"filename": "mksquashfs", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 189432, "date": "Jul 5 2018"}, {"filename": "mlocate", "parent": "/usr/bin", "flags": "-rwxr-sr-x", "links": 1, "owner": "root", "group": "mlocate", "size": 43088, "date": "Mar 1 2018"}, {"filename": "mpstat", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 51360, "date": "Jan 17 11:24"}, {"filename": "mtr", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 73664, "date": "Nov 2 2017"}, {"filename": "mtrace", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 6494, "date": "Apr 16 2018"}, {"filename": "mtr-packet", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 26616, "date": "Nov 2 2017"}, {"filename": "namei", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 26704, "date": "Oct 15 2018"}, {"filename": "nawk", "link_to": "/etc/alternatives/nawk", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 22, "date": "Aug 5 2019"}, {"filename": "ncal", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 29480, "date": "Jan 17 2018"}, {"filename": "ncat", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 204760, "date": "Apr 16 2018"}, {"filename": "neqn", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 908, "date": "Feb 10 2018"}, {"filename": "netkit-ftp", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 101064, "date": "Dec 6 2016"}, {"filename": "networkd-dispatcher", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 18203, "date": "Oct 15 2018"}, {"filename": "newgidmap", "parent": "/usr/bin", "flags": "-rwsr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 37136, "date": "Mar 22 2019"}, {"filename": "newgrp", "parent": "/usr/bin", "flags": "-rwsr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 40344, "date": "Mar 22 2019"}, {"filename": "newuidmap", "parent": "/usr/bin", "flags": "-rwsr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 37136, "date": "Mar 22 2019"}, {"filename": "NF", "link_to": "col1", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 4, "date": "Dec 4 2017"}, {"filename": "ngettext", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 34896, "date": "Feb 21 2019"}, {"filename": "nice", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 35000, "date": "Jan 18 2018"}, {"filename": "nl", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 43288, "date": "Jan 18 2018"}, {"filename": "nm", "link_to": "x86_64-linux-gnu-nm", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 19, "date": "May 8 2019"}, {"filename": "nmap", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2961432, "date": "Apr 16 2018"}, {"filename": "nohup", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 35000, "date": "Jan 18 2018"}, {"filename": "nping", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 530776, "date": "Apr 16 2018"}, {"filename": "nproc", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 35000, "date": "Jan 18 2018"}, {"filename": "nroff", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 3323, "date": "Feb 10 2018"}, {"filename": "nsenter", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 31008, "date": "Oct 15 2018"}, {"filename": "nslookup", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 133640, "date": "Nov 18 15:01"}, {"filename": "nstat", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 26696, "date": "Feb 26 2018"}, {"filename": "nsupdate", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 67608, "date": "Nov 18 15:01"}, {"filename": "ntfsdecrypt", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 47224, "date": "Mar 21 2019"}, {"filename": "numfmt", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 63736, "date": "Jan 18 2018"}, {"filename": "objcopy", "link_to": "x86_64-linux-gnu-objcopy", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 24, "date": "May 8 2019"}, {"filename": "objdump", "link_to": "x86_64-linux-gnu-objdump", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 24, "date": "May 8 2019"}, {"filename": "od", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 67800, "date": "Jan 18 2018"}, {"filename": "on_ac_power", "link_to": "/sbin/on_ac_power", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 17, "date": "Mar 20 2018"}, {"filename": "openssl", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 723944, "date": "Nov 12 16:58"}, {"filename": "os-prober", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 4551, "date": "Jan 31 2017"}, {"filename": "pager", "link_to": "/etc/alternatives/pager", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 23, "date": "Aug 5 2019"}, {"filename": "partx", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 88144, "date": "Oct 15 2018"}, {"filename": "passwd", "parent": "/usr/bin", "flags": "-rwsr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 59640, "date": "Mar 22 2019"}, {"filename": "paste", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 35032, "date": "Jan 18 2018"}, {"filename": "pastebinit", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 16642, "date": "Mar 1 2016"}, {"filename": "patch", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 182648, "date": "Jul 23 2019"}, {"filename": "pathchk", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 35000, "date": "Jan 18 2018"}, {"filename": "pbget", "link_to": "pbput", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 5, "date": "Apr 15 2018"}, {"filename": "pbput", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2569, "date": "Feb 29 2016"}, {"filename": "pbputs", "link_to": "pbput", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 5, "date": "Apr 15 2018"}, {"filename": "pcimodules", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 14472, "date": "Feb 10 2019"}, {"filename": "pdb3", "link_to": "pdb3.6", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 6, "date": "Oct 25 2018"}, {"filename": "pdb3.6", "link_to": "../lib/python3.6/pdb.py", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 23, "date": "Oct 7 12:59"}, {"filename": "peekfd", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 14328, "date": "Dec 11 2018"}, {"filename": "perl", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 2097720, "date": "Nov 19 2018"}, {"filename": "perl5.26.1", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 2097720, "date": "Nov 19 2018"}, {"filename": "perl5.26-x86_64-linux-gnu", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10216, "date": "Nov 19 2018"}, {"filename": "perlbug", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 45853, "date": "Nov 19 2018"}, {"filename": "perldoc", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 125, "date": "Nov 19 2018"}, {"filename": "perlivp", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10864, "date": "Nov 19 2018"}, {"filename": "perlthanks", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 45853, "date": "Nov 19 2018"}, {"filename": "pftp", "link_to": "/etc/alternatives/pftp", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 22, "date": "Aug 5 2019"}, {"filename": "pgrep", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 26712, "date": "May 14 2018"}, {"filename": "pic", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 208928, "date": "Feb 10 2018"}, {"filename": "pico", "link_to": "/etc/alternatives/pico", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 22, "date": "Aug 5 2019"}, {"filename": "piconv", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 8357, "date": "Nov 19 2018"}, {"filename": "pidstat", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 63648, "date": "Jan 17 11:24"}, {"filename": "pigz", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 116944, "date": "Dec 27 2017"}, {"filename": "pinentry", "link_to": "/etc/alternatives/pinentry", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 26, "date": "Aug 5 2019"}, {"filename": "pinentry-curses", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 63992, "date": "Feb 6 2018"}, {"filename": "pinky", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 39128, "date": "Jan 18 2018"}, {"filename": "pip3", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 293, "date": "Apr 3 2019"}, {"filename": "pkaction", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 14328, "date": "Mar 27 2019"}, {"filename": "pkcheck", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 18504, "date": "Mar 27 2019"}, {"filename": "pkexec", "parent": "/usr/bin", "flags": "-rwsr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 22520, "date": "Mar 27 2019"}, {"filename": "pkill", "link_to": "pgrep", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 5, "date": "May 14 2018"}, {"filename": "pkttyagent", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 14328, "date": "Mar 27 2019"}, {"filename": "pl2pm", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 4533, "date": "Nov 19 2018"}, {"filename": "pldd", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 18656, "date": "Apr 16 2018"}, {"filename": "pmap", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 30808, "date": "May 14 2018"}, {"filename": "pod2html", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 4134, "date": "Nov 19 2018"}, {"filename": "pod2man", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 15079, "date": "Nov 19 2018"}, {"filename": "pod2text", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10979, "date": "Nov 19 2018"}, {"filename": "pod2usage", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 3948, "date": "Nov 19 2018"}, {"filename": "podchecker", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 3658, "date": "Nov 19 2018"}, {"filename": "podselect", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2527, "date": "Nov 19 2018"}, {"filename": "pollinate", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 8744, "date": "May 29 2018"}, {"filename": "pr", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 71960, "date": "Jan 18 2018"}, {"filename": "preconv", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 47304, "date": "Feb 10 2018"}, {"filename": "print", "link_to": "run-mailcap", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 11, "date": "Jul 15 2016"}, {"filename": "printenv", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 30904, "date": "Jan 18 2018"}, {"filename": "printerbanner", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 22528, "date": "Jan 17 2018"}, {"filename": "printf", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 51384, "date": "Jan 18 2018"}, {"filename": "prlimit", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 35424, "date": "Oct 15 2018"}, {"filename": "prove", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 13588, "date": "Nov 19 2018"}, {"filename": "prtstat", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 18504, "date": "Dec 11 2018"}, {"filename": "psfaddtable", "link_to": "psfxtable", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 9, "date": "Jan 22 2018"}, {"filename": "psfgettable", "link_to": "psfxtable", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 9, "date": "Jan 22 2018"}, {"filename": "psfstriptable", "link_to": "psfxtable", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 9, "date": "Jan 22 2018"}, {"filename": "psfxtable", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 18424, "date": "Jan 22 2018"}, {"filename": "pslog", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10232, "date": "Dec 11 2018"}, {"filename": "pstree", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 27592, "date": "Dec 11 2018"}, {"filename": "pstree.x11", "link_to": "pstree", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 6, "date": "Dec 11 2018"}, {"filename": "ptar", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 3549, "date": "Nov 19 2018"}, {"filename": "ptardiff", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2628, "date": "Nov 19 2018"}, {"filename": "ptargrep", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 4392, "date": "Nov 19 2018"}, {"filename": "ptx", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 71928, "date": "Jan 18 2018"}, {"filename": "purge-old-kernels", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1149, "date": "Dec 4 2017"}, {"filename": "pwdx", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10312, "date": "May 14 2018"}, {"filename": "py3clean", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 7812, "date": "Oct 25 2018"}, {"filename": "py3compile", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 12119, "date": "Oct 25 2018"}, {"filename": "py3versions", "link_to": "../share/python3/py3versions.py", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 31, "date": "Oct 25 2018"}, {"filename": "pybuild", "link_to": "../share/dh-python/pybuild", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 26, "date": "Mar 26 2018"}, {"filename": "pydoc3", "link_to": "pydoc3.6", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 8, "date": "Oct 25 2018"}, {"filename": "pydoc3.6", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 79, "date": "Oct 7 12:59"}, {"filename": "pygettext3", "link_to": "pygettext3.6", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 12, "date": "Oct 25 2018"}, {"filename": "pygettext3.6", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 21547, "date": "Oct 7 12:59"}, {"filename": "pyhtmlizer3", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 392, "date": "Apr 20 2018"}, {"filename": "pyjwt3", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 372, "date": "Sep 25 2017"}, {"filename": "python3", "link_to": "python3.6", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 9, "date": "Oct 25 2018"}, {"filename": "python3.6", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4526456, "date": "Oct 7 12:59"}, {"filename": "python3.6-config", "link_to": "x86_64-linux-gnu-python3.6-config", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 33, "date": "Oct 7 12:59"}, {"filename": "python3.6m", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4526456, "date": "Oct 7 12:59"}, {"filename": "python3.6m-config", "link_to": "x86_64-linux-gnu-python3.6m-config", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 34, "date": "Oct 7 12:59"}, {"filename": "python3-config", "link_to": "python3.6-config", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 16, "date": "Oct 25 2018"}, {"filename": "python3-jsondiff", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1018, "date": "Oct 28 2017"}, {"filename": "python3-jsonpatch", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 3661, "date": "Oct 28 2017"}, {"filename": "python3-jsonpointer", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1342, "date": "May 1 2016"}, {"filename": "python3-jsonschema", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 398, "date": "Nov 15 2017"}, {"filename": "python3m", "link_to": "python3.6m", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 10, "date": "Oct 25 2018"}, {"filename": "python3m-config", "link_to": "python3.6m-config", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 17, "date": "Oct 25 2018"}, {"filename": "ranlib", "link_to": "x86_64-linux-gnu-ranlib", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 23, "date": "May 8 2019"}, {"filename": "rcp", "link_to": "/etc/alternatives/rcp", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 21, "date": "Aug 5 2019"}, {"filename": "rdma", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 26696, "date": "Feb 26 2018"}, {"filename": "readelf", "link_to": "x86_64-linux-gnu-readelf", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 24, "date": "May 8 2019"}, {"filename": "realpath", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 47320, "date": "Jan 18 2018"}, {"filename": "rename.ul", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 14408, "date": "Oct 15 2018"}, {"filename": "renice", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 14408, "date": "Oct 15 2018"}, {"filename": "reset", "link_to": "tset", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 4, "date": "May 23 2018"}, {"filename": "resizecons", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 18568, "date": "Jan 22 2018"}, {"filename": "resizepart", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 38992, "date": "Oct 15 2018"}, {"filename": "rev", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10312, "date": "Oct 15 2018"}, {"filename": "rgrep", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 30, "date": "Jul 11 2017"}, {"filename": "rlogin", "link_to": "/etc/alternatives/rlogin", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 24, "date": "Aug 5 2019"}, {"filename": "routef", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 208, "date": "Feb 26 2018"}, {"filename": "routel", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1656, "date": "Feb 26 2018"}, {"filename": "rpcgen", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 100896, "date": "Apr 16 2018"}, {"filename": "rsh", "link_to": "/etc/alternatives/rsh", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 21, "date": "Aug 5 2019"}, {"filename": "rsync", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 500024, "date": "Jan 18 2018"}, {"filename": "rtstat", "link_to": "lnstat", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 6, "date": "Feb 26 2018"}, {"filename": "runcon", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 35000, "date": "Jan 18 2018"}, {"filename": "run-mailcap", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 18161, "date": "Jul 15 2016"}, {"filename": "run-one", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 3592, "date": "Jan 15 2014"}, {"filename": "run-one-constantly", "link_to": "run-one", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 7, "date": "Jan 15 2014"}, {"filename": "run-one-until-failure", "link_to": "run-one", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 7, "date": "Jan 15 2014"}, {"filename": "run-one-until-success", "link_to": "run-one", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 7, "date": "Jan 15 2014"}, {"filename": "run-this-one", "link_to": "run-one", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 7, "date": "Jan 15 2014"}, {"filename": "rview", "link_to": "/etc/alternatives/rview", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 23, "date": "Aug 5 2019"}, {"filename": "rvim", "link_to": "/etc/alternatives/rvim", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 22, "date": "Aug 5 2019"}, {"filename": "sadf", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 313824, "date": "Jan 17 11:24"}, {"filename": "sar", "link_to": "/etc/alternatives/sar", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 21, "date": "Oct 30 21:02"}, {"filename": "sar.sysstat", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 120720, "date": "Jan 17 11:24"}, {"filename": "savelog", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10469, "date": "Dec 30 2017"}, {"filename": "scp", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 100496, "date": "Mar 4 2019"}, {"filename": "screen", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 465928, "date": "Jul 20 2018"}, {"filename": "screendump", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10232, "date": "Jan 22 2018"}, {"filename": "script", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 30792, "date": "Oct 15 2018"}, {"filename": "scriptreplay", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 26704, "date": "Oct 15 2018"}, {"filename": "sdiff", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 51296, "date": "Aug 4 2017"}, {"filename": "see", "link_to": "run-mailcap", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 11, "date": "Jul 15 2016"}, {"filename": "select-editor", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2442, "date": "Mar 12 2018"}, {"filename": "sensible-browser", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1209, "date": "Mar 12 2018"}, {"filename": "sensible-editor", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1109, "date": "Mar 12 2018"}, {"filename": "sensible-pager", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 433, "date": "Mar 12 2018"}, {"filename": "seq", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 47288, "date": "Jan 18 2018"}, {"filename": "setarch", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 18784, "date": "Oct 15 2018"}, {"filename": "setfacl", "link_to": "/bin/setfacl", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 12, "date": "Aug 5 2019"}, {"filename": "setkeycodes", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10312, "date": "Jan 22 2018"}, {"filename": "setleds", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 14392, "date": "Jan 22 2018"}, {"filename": "setlogcons", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10312, "date": "Jan 22 2018"}, {"filename": "setmetamode", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10344, "date": "Jan 22 2018"}, {"filename": "setpci", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 26704, "date": "Feb 10 2019"}, {"filename": "setsid", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10312, "date": "Oct 15 2018"}, {"filename": "setterm", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 43088, "date": "Oct 15 2018"}, {"filename": "sftp", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 153960, "date": "Mar 4 2019"}, {"filename": "sg", "link_to": "newgrp", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 6, "date": "Mar 22 2019"}, {"filename": "sha1sum", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 47320, "date": "Jan 18 2018"}, {"filename": "sha224sum", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 55512, "date": "Jan 18 2018"}, {"filename": "sha256sum", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 55512, "date": "Jan 18 2018"}, {"filename": "sha384sum", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 59608, "date": "Jan 18 2018"}, {"filename": "sha512sum", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 59608, "date": "Jan 18 2018"}, {"filename": "shasum", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 9371, "date": "Nov 19 2018"}, {"filename": "showconsolefont", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 18504, "date": "Jan 22 2018"}, {"filename": "showkey", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 14408, "date": "Jan 22 2018"}, {"filename": "shred", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 59608, "date": "Jan 18 2018"}, {"filename": "shuf", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 55480, "date": "Jan 18 2018"}, {"filename": "size", "link_to": "x86_64-linux-gnu-size", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 21, "date": "May 8 2019"}, {"filename": "skill", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 26704, "date": "May 14 2018"}, {"filename": "slabtop", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 18512, "date": "May 14 2018"}, {"filename": "slogin", "link_to": "ssh", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Mar 4 2019"}, {"filename": "slurm", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 34824, "date": "Apr 3 2018"}, {"filename": "snap", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 13316808, "date": "Jun 5 2019"}, {"filename": "snapctl", "link_to": "../lib/snapd/snapctl", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 20, "date": "Jun 5 2019"}, {"filename": "snapfuse", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 30856, "date": "Jun 5 2019"}, {"filename": "snice", "link_to": "skill", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 5, "date": "May 14 2018"}, {"filename": "soelim", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 30920, "date": "Feb 10 2018"}, {"filename": "sort", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 113120, "date": "Jan 18 2018"}, {"filename": "sosreport", "link_to": "../share/sosreport/sosreport", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 28, "date": "Nov 16 2018"}, {"filename": "sotruss", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 4306, "date": "Apr 16 2018"}, {"filename": "splain", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 19150, "date": "Nov 19 2018"}, {"filename": "split", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 55936, "date": "Jan 18 2018"}, {"filename": "splitfont", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10232, "date": "Jan 22 2018"}, {"filename": "sprof", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 26840, "date": "Apr 16 2018"}, {"filename": "ssh", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 727848, "date": "Mar 4 2019"}, {"filename": "ssh-add", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 346248, "date": "Mar 4 2019"}, {"filename": "ssh-agent", "parent": "/usr/bin", "flags": "-rwxr-sr-x", "links": 1, "owner": "root", "group": "ssh", "size": 362640, "date": "Mar 4 2019"}, {"filename": "ssh-argv0", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1456, "date": "Jan 16 2018"}, {"filename": "ssh-copy-id", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10658, "date": "Oct 2 2017"}, {"filename": "ssh-import-id", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1771, "date": "May 16 2018"}, {"filename": "ssh-import-id-gh", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 782, "date": "Jan 30 2016"}, {"filename": "ssh-import-id-lp", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 782, "date": "Jan 30 2016"}, {"filename": "ssh-keygen", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 420000, "date": "Mar 4 2019"}, {"filename": "ssh-keyscan", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 420000, "date": "Mar 4 2019"}, {"filename": "stat", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 80088, "date": "Jan 18 2018"}, {"filename": "stdbuf", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 47288, "date": "Jan 18 2018"}, {"filename": "strace", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1378552, "date": "Apr 11 2018"}, {"filename": "strace-log-merge", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2644, "date": "Feb 13 2018"}, {"filename": "strings", "link_to": "x86_64-linux-gnu-strings", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 24, "date": "May 8 2019"}, {"filename": "strip", "link_to": "x86_64-linux-gnu-strip", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 22, "date": "May 8 2019"}, {"filename": "sudo", "parent": "/usr/bin", "flags": "-rwsr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 149080, "date": "Jan 31 17:18"}, {"filename": "sudoedit", "link_to": "sudo", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 4, "date": "Jan 31 17:18"}, {"filename": "sudoreplay", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 56128, "date": "Jan 31 17:18"}, {"filename": "sum", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 39104, "date": "Jan 18 2018"}, {"filename": "symcryptrun", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 113384, "date": "Jan 10 2019"}, {"filename": "systemd-analyze", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1554720, "date": "Feb 5 01:07"}, {"filename": "systemd-cat", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10312, "date": "Feb 5 01:07"}, {"filename": "systemd-cgls", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 14408, "date": "Feb 5 01:07"}, {"filename": "systemd-cgtop", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 30816, "date": "Feb 5 01:07"}, {"filename": "systemd-delta", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 22600, "date": "Feb 5 01:07"}, {"filename": "systemd-detect-virt", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10304, "date": "Feb 5 01:07"}, {"filename": "systemd-mount", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 43104, "date": "Feb 5 01:07"}, {"filename": "systemd-path", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10304, "date": "Feb 5 01:07"}, {"filename": "systemd-resolve", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 88136, "date": "Feb 5 01:07"}, {"filename": "systemd-run", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 43080, "date": "Feb 5 01:07"}, {"filename": "systemd-socket-activate", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 18504, "date": "Feb 5 01:07"}, {"filename": "systemd-stdio-bridge", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 14408, "date": "Feb 5 01:07"}, {"filename": "systemd-umount", "link_to": "systemd-mount", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 13, "date": "Feb 5 01:07"}, {"filename": "tabs", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 14328, "date": "May 23 2018"}, {"filename": "tac", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 39096, "date": "Jan 18 2018"}, {"filename": "tail", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 67832, "date": "Jan 18 2018"}, {"filename": "tapestat", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 39056, "date": "Jan 17 11:24"}, {"filename": "taskset", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 30800, "date": "Oct 15 2018"}, {"filename": "tbl", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 129224, "date": "Feb 10 2018"}, {"filename": "tee", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 35032, "date": "Jan 18 2018"}, {"filename": "telnet", "link_to": "/etc/alternatives/telnet", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 24, "date": "Aug 5 2019"}, {"filename": "telnet.netkit", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 111024, "date": "Nov 7 2016"}, {"filename": "test", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 47288, "date": "Jan 18 2018"}, {"filename": "tic", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 84080, "date": "May 23 2018"}, {"filename": "time", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 14720, "date": "Apr 21 2017"}, {"filename": "timedatectl", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 22600, "date": "Feb 5 01:07"}, {"filename": "timeout", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 39552, "date": "Jan 18 2018"}, {"filename": "tkconch3", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 386, "date": "Apr 20 2018"}, {"filename": "tload", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 14424, "date": "May 14 2018"}, {"filename": "tmux", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 577088, "date": "Jul 4 2019"}, {"filename": "toe", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 14328, "date": "May 23 2018"}, {"filename": "top", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 108304, "date": "May 14 2018"}, {"filename": "touch", "link_to": "/bin/touch", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 10, "date": "Aug 5 2019"}, {"filename": "tput", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 18456, "date": "May 23 2018"}, {"filename": "tr", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 47288, "date": "Jan 18 2018"}, {"filename": "tracepath", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 14344, "date": "Jun 28 2019"}, {"filename": "traceroute6", "link_to": "/etc/alternatives/traceroute6", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 29, "date": "Aug 5 2019"}, {"filename": "traceroute6.iputils", "parent": "/usr/bin", "flags": "-rwsr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 18448, "date": "Jun 28 2019"}, {"filename": "trial3", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 382, "date": "Apr 20 2018"}, {"filename": "troff", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 736608, "date": "Feb 10 2018"}, {"filename": "truncate", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 39096, "date": "Jan 18 2018"}, {"filename": "tset", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 22528, "date": "May 23 2018"}, {"filename": "tsort", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 35000, "date": "Jan 18 2018"}, {"filename": "tty", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 30904, "date": "Jan 18 2018"}, {"filename": "twist3", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 382, "date": "Apr 20 2018"}, {"filename": "twistd3", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 384, "date": "Apr 20 2018"}, {"filename": "tzselect", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 15395, "date": "Apr 16 2018"}, {"filename": "ua", "link_to": "ubuntu-advantage", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 16, "date": "Mar 21 2018"}, {"filename": "ubuntu-advantage", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 4596, "date": "Mar 21 2018"}, {"filename": "ubuntu-bug", "link_to": "apport-bug", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 10, "date": "Nov 5 02:49"}, {"filename": "ubuntu-core-launcher", "link_to": "../lib/snapd/snap-confine", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 25, "date": "Jun 5 2019"}, {"filename": "ubuntu-support-status", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 8033, "date": "Apr 9 2019"}, {"filename": "ucf", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 40685, "date": "Feb 26 2018"}, {"filename": "ucfq", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 19367, "date": "Feb 26 2018"}, {"filename": "ucfr", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10722, "date": "Feb 26 2018"}, {"filename": "ul", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 14344, "date": "Jan 17 2018"}, {"filename": "unattended-upgrade", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 81388, "date": "Apr 29 2019"}, {"filename": "unattended-upgrades", "link_to": "unattended-upgrade", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 18, "date": "Apr 29 2019"}, {"filename": "unexpand", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 39128, "date": "Jan 18 2018"}, {"filename": "unicode_stop", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 530, "date": "Jan 22 2018"}, {"filename": "uniq", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 43224, "date": "Jan 18 2018"}, {"filename": "unlink", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 30904, "date": "Jan 18 2018"}, {"filename": "unlzma", "link_to": "/etc/alternatives/unlzma", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 24, "date": "Aug 5 2019"}, {"filename": "unmkinitramfs", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2859, "date": "Sep 27 2018"}, {"filename": "unpigz", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 116944, "date": "Dec 27 2017"}, {"filename": "unshare", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 18712, "date": "Oct 15 2018"}, {"filename": "unsquashfs", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 98008, "date": "Jul 5 2018"}, {"filename": "unxz", "link_to": "xz", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 2, "date": "Jun 28 2017"}, {"filename": "update-alternatives", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 47112, "date": "Oct 4 2018"}, {"filename": "updatedb", "link_to": "/etc/alternatives/updatedb", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 26, "date": "Aug 5 2019"}, {"filename": "updatedb.mlocate", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 47184, "date": "Mar 1 2018"}, {"filename": "update-mime-database", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 51392, "date": "Oct 10 2017"}, {"filename": "uptime", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10312, "date": "May 14 2018"}, {"filename": "usb-devices", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 4216, "date": "Apr 21 2017"}, {"filename": "usbhid-dump", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 22608, "date": "Apr 21 2017"}, {"filename": "users", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 35000, "date": "Jan 18 2018"}, {"filename": "utmpdump", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 22600, "date": "Oct 15 2018"}, {"filename": "uuidgen", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 14408, "date": "Oct 15 2018"}, {"filename": "uuidparse", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 34896, "date": "Oct 15 2018"}, {"filename": "vcs-run", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 6913, "date": "Apr 13 2018"}, {"filename": "VGAuthService", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 125144, "date": "May 14 2019"}, {"filename": "vi", "link_to": "/etc/alternatives/vi", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 20, "date": "Aug 5 2019"}, {"filename": "view", "link_to": "/etc/alternatives/view", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 22, "date": "Aug 5 2019"}, {"filename": "vigpg", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2640, "date": "Dec 4 2017"}, {"filename": "vim", "link_to": "/etc/alternatives/vim", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 21, "date": "Aug 5 2019"}, {"filename": "vim.basic", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2671240, "date": "Jun 6 2019"}, {"filename": "vimdiff", "link_to": "/etc/alternatives/vimdiff", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 25, "date": "Aug 5 2019"}, {"filename": "vim.tiny", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1108024, "date": "Jun 6 2019"}, {"filename": "vimtutor", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2099, "date": "Jun 6 2019"}, {"filename": "vmhgfs-fuse", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 47600, "date": "May 14 2019"}, {"filename": "vmstat", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 34912, "date": "May 14 2018"}, {"filename": "vmtoolsd", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 51456, "date": "May 14 2019"}, {"filename": "vmware-checkvm", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10312, "date": "May 14 2019"}, {"filename": "vmware-guestproxycerttool", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 31240, "date": "May 14 2019"}, {"filename": "vmware-hgfsclient", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10312, "date": "May 14 2019"}, {"filename": "vmware-namespace-cmd", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 18424, "date": "May 14 2019"}, {"filename": "vmware-rpctool", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 18424, "date": "May 14 2019"}, {"filename": "vmware-toolbox-cmd", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 39200, "date": "May 14 2019"}, {"filename": "vmware-vgauth-cmd", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 14328, "date": "May 14 2019"}, {"filename": "vmware-vgauth-smoketest", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 18440, "date": "May 14 2019"}, {"filename": "vmware-vmblock-fuse", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 18848, "date": "May 14 2019"}, {"filename": "vmware-xferlogs", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10312, "date": "May 14 2019"}, {"filename": "volname", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10232, "date": "Mar 28 2017"}, {"filename": "w", "link_to": "/etc/alternatives/w", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 19, "date": "Aug 5 2019"}, {"filename": "wall", "parent": "/usr/bin", "flags": "-rwxr-sr-x", "links": 1, "owner": "root", "group": "tty", "size": 30800, "date": "Oct 15 2018"}, {"filename": "watch", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 22952, "date": "May 14 2018"}, {"filename": "watchgnupg", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 14328, "date": "Jan 10 2019"}, {"filename": "wc", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 43200, "date": "Jan 18 2018"}, {"filename": "wget", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 499264, "date": "Apr 8 2019"}, {"filename": "whatis", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 48104, "date": "Aug 4 2018"}, {"filename": "whereis", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 27144, "date": "Oct 15 2018"}, {"filename": "which", "link_to": "/bin/which", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 10, "date": "Aug 5 2019"}, {"filename": "who", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 51416, "date": "Jan 18 2018"}, {"filename": "whoami", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 30904, "date": "Jan 18 2018"}, {"filename": "wifi-status", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2107, "date": "Dec 4 2017"}, {"filename": "wmdocker", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 22536, "date": "Apr 3 2018"}, {"filename": "w.procps", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 18504, "date": "May 14 2018"}, {"filename": "write", "link_to": "/etc/alternatives/write", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 23, "date": "Aug 5 2019"}, {"filename": "x86_64", "link_to": "setarch", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 7, "date": "Oct 15 2018"}, {"filename": "x86_64-linux-gnu-addr2line", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 31152, "date": "May 8 2019"}, {"filename": "x86_64-linux-gnu-ar", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 59640, "date": "May 8 2019"}, {"filename": "x86_64-linux-gnu-as", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 917488, "date": "May 8 2019"}, {"filename": "x86_64-linux-gnu-c++filt", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 26744, "date": "May 8 2019"}, {"filename": "x86_64-linux-gnu-cpp", "link_to": "cpp-7", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 5, "date": "May 20 2019"}, {"filename": "x86_64-linux-gnu-cpp-7", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1010624, "date": "May 8 2019"}, {"filename": "x86_64-linux-gnu-dwp", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2911496, "date": "May 8 2019"}, {"filename": "x86_64-linux-gnu-elfedit", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 31184, "date": "May 8 2019"}, {"filename": "x86_64-linux-gnu-g++", "link_to": "g++-7", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 5, "date": "May 20 2019"}, {"filename": "x86_64-linux-gnu-g++-7", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1010624, "date": "May 8 2019"}, {"filename": "x86_64-linux-gnu-gcc", "link_to": "gcc-7", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 5, "date": "May 20 2019"}, {"filename": "x86_64-linux-gnu-gcc-7", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1010624, "date": "May 8 2019"}, {"filename": "x86_64-linux-gnu-gcc-ar", "link_to": "gcc-ar-7", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 8, "date": "May 20 2019"}, {"filename": "x86_64-linux-gnu-gcc-ar-7", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 27104, "date": "May 8 2019"}, {"filename": "x86_64-linux-gnu-gcc-nm", "link_to": "gcc-nm-7", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 8, "date": "May 20 2019"}, {"filename": "x86_64-linux-gnu-gcc-nm-7", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 27104, "date": "May 8 2019"}, {"filename": "x86_64-linux-gnu-gcc-ranlib", "link_to": "gcc-ranlib-7", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 12, "date": "May 20 2019"}, {"filename": "x86_64-linux-gnu-gcc-ranlib-7", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 27104, "date": "May 8 2019"}, {"filename": "x86_64-linux-gnu-gcov", "link_to": "gcov-7", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 6, "date": "May 20 2019"}, {"filename": "x86_64-linux-gnu-gcov-7", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 622688, "date": "May 8 2019"}, {"filename": "x86_64-linux-gnu-gcov-dump", "link_to": "gcov-dump-7", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 11, "date": "May 20 2019"}, {"filename": "x86_64-linux-gnu-gcov-dump-7", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 491448, "date": "May 8 2019"}, {"filename": "x86_64-linux-gnu-gcov-tool", "link_to": "gcov-tool-7", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 11, "date": "May 20 2019"}, {"filename": "x86_64-linux-gnu-gcov-tool-7", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 516088, "date": "May 8 2019"}, {"filename": "x86_64-linux-gnu-gold", "link_to": "x86_64-linux-gnu-ld.gold", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 24, "date": "May 8 2019"}, {"filename": "x86_64-linux-gnu-gprof", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 102120, "date": "May 8 2019"}, {"filename": "x86_64-linux-gnu-ld", "link_to": "x86_64-linux-gnu-ld.bfd", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 23, "date": "May 8 2019"}, {"filename": "x86_64-linux-gnu-ld.bfd", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1779400, "date": "May 8 2019"}, {"filename": "x86_64-linux-gnu-ld.gold", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 3136552, "date": "May 8 2019"}, {"filename": "x86_64-linux-gnu-nm", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 44184, "date": "May 8 2019"}, {"filename": "x86_64-linux-gnu-objcopy", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 235720, "date": "May 8 2019"}, {"filename": "x86_64-linux-gnu-objdump", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 414128, "date": "May 8 2019"}, {"filename": "x86_64-linux-gnu-python3.6-config", "link_to": "x86_64-linux-gnu-python3.6m-config", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 34, "date": "Oct 7 12:59"}, {"filename": "x86_64-linux-gnu-python3.6m-config", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 3283, "date": "Oct 7 12:59"}, {"filename": "x86_64-linux-gnu-python3-config", "link_to": "x86_64-linux-gnu-python3.6-config", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 33, "date": "Oct 25 2018"}, {"filename": "x86_64-linux-gnu-python3m-config", "link_to": "x86_64-linux-gnu-python3.6m-config", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 34, "date": "Oct 25 2018"}, {"filename": "x86_64-linux-gnu-ranlib", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 59672, "date": "May 8 2019"}, {"filename": "x86_64-linux-gnu-readelf", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 596440, "date": "May 8 2019"}, {"filename": "x86_64-linux-gnu-size", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 31024, "date": "May 8 2019"}, {"filename": "x86_64-linux-gnu-strings", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 31232, "date": "May 8 2019"}, {"filename": "x86_64-linux-gnu-strip", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 235728, "date": "May 8 2019"}, {"filename": "xargs", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 71896, "date": "Nov 5 2017"}, {"filename": "xauth", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 52032, "date": "Nov 21 2017"}, {"filename": "xdelta3", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 153904, "date": "Dec 6 2016"}, {"filename": "xdg-user-dir", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 234, "date": "Mar 23 2018"}, {"filename": "xdg-user-dirs-update", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 18504, "date": "Mar 23 2018"}, {"filename": "xsubpp", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 5164, "date": "Nov 19 2018"}, {"filename": "xxd", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 18552, "date": "Jun 6 2019"}, {"filename": "xz", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 76216, "date": "Jun 28 2017"}, {"filename": "xzcat", "link_to": "xz", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 2, "date": "Jun 28 2017"}, {"filename": "xzcmp", "link_to": "xzdiff", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 6, "date": "Jun 28 2017"}, {"filename": "xzdiff", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 6632, "date": "Jun 28 2017"}, {"filename": "xzegrep", "link_to": "xzgrep", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 6, "date": "Jun 28 2017"}, {"filename": "xzfgrep", "link_to": "xzgrep", "parent": "/usr/bin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 6, "date": "Jun 28 2017"}, {"filename": "xzgrep", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 5628, "date": "Jun 28 2017"}, {"filename": "xzless", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1802, "date": "Jun 28 2017"}, {"filename": "xzmore", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2161, "date": "Jun 28 2017"}, {"filename": "yes", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 30904, "date": "Jan 18 2018"}, {"filename": "zdump", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 18488, "date": "Apr 16 2018"}, {"filename": "zipdetails", "parent": "/usr/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 48497, "date": "Nov 19 2018"}, {"filename": ".", "parent": "/usr/games", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Apr 24 2018"}, {"filename": "..", "parent": "/usr/games", "flags": "drwxr-xr-x", "links": 10, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": ".", "parent": "/usr/include", "flags": "drwxr-xr-x", "links": 34, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "..", "parent": "/usr/include", "flags": "drwxr-xr-x", "links": 10, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "aio.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7456, "date": "Apr 16 2018"}, {"filename": "aliases.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2031, "date": "Apr 16 2018"}, {"filename": "alloca.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1203, "date": "Apr 16 2018"}, {"filename": "argp.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 25414, "date": "Apr 16 2018"}, {"filename": "argz.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6050, "date": "Apr 16 2018"}, {"filename": "ar.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1730, "date": "Apr 16 2018"}, {"filename": "arpa", "parent": "/usr/include", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "asm-generic", "parent": "/usr/include", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "assert.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4642, "date": "Apr 16 2018"}, {"filename": "btrfs", "parent": "/usr/include", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "byteswap.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1404, "date": "Apr 16 2018"}, {"filename": "c++", "parent": "/usr/include", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "complex.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7163, "date": "Apr 16 2018"}, {"filename": "cpio.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2267, "date": "Apr 16 2018"}, {"filename": "crypt.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2259, "date": "Apr 16 2018"}, {"filename": "ctype.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 10963, "date": "Apr 16 2018"}, {"filename": "dirent.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 12484, "date": "Apr 16 2018"}, {"filename": "dlfcn.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7018, "date": "Apr 16 2018"}, {"filename": "drm", "parent": "/usr/include", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "elf.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 169800, "date": "Apr 16 2018"}, {"filename": "endian.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3189, "date": "Apr 16 2018"}, {"filename": "envz.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2866, "date": "Apr 16 2018"}, {"filename": "err.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2209, "date": "Apr 16 2018"}, {"filename": "errno.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1832, "date": "Apr 16 2018"}, {"filename": "error.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2039, "date": "Apr 16 2018"}, {"filename": "execinfo.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1522, "date": "Apr 16 2018"}, {"filename": "expat_external.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5532, "date": "Sep 10 18:05"}, {"filename": "expat.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 43512, "date": "Sep 10 18:05"}, {"filename": "fcntl.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9463, "date": "Apr 16 2018"}, {"filename": "features.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 15541, "date": "Apr 16 2018"}, {"filename": "fenv.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5857, "date": "Apr 16 2018"}, {"filename": "fmtmsg.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3239, "date": "Apr 16 2018"}, {"filename": "fnmatch.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2295, "date": "Apr 16 2018"}, {"filename": "fstab.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3111, "date": "Apr 16 2018"}, {"filename": "fts.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8372, "date": "Apr 16 2018"}, {"filename": "ftw.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5251, "date": "Apr 16 2018"}, {"filename": "gawkapi.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 31038, "date": "Feb 11 2018"}, {"filename": "_G_config.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 932, "date": "Apr 16 2018"}, {"filename": "gconv.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4410, "date": "Apr 16 2018"}, {"filename": "getopt.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1468, "date": "Apr 16 2018"}, {"filename": "glob.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6614, "date": "Apr 16 2018"}, {"filename": "gnumake.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2912, "date": "Apr 17 2018"}, {"filename": "gnu-versions.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2342, "date": "Apr 16 2018"}, {"filename": "grp.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6686, "date": "Apr 16 2018"}, {"filename": "gshadow.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4528, "date": "Apr 16 2018"}, {"filename": "iconv.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1857, "date": "Apr 16 2018"}, {"filename": "ifaddrs.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2840, "date": "Apr 16 2018"}, {"filename": "inttypes.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 11892, "date": "Apr 16 2018"}, {"filename": "langinfo.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 17848, "date": "Apr 16 2018"}, {"filename": "lastlog.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 126, "date": "Apr 16 2018"}, {"filename": "libgen.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1385, "date": "Apr 16 2018"}, {"filename": "libintl.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4579, "date": "Apr 16 2018"}, {"filename": "libio.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 918, "date": "Apr 16 2018"}, {"filename": "limits.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5412, "date": "Apr 16 2018"}, {"filename": "link.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7206, "date": "Apr 16 2018"}, {"filename": "linux", "parent": "/usr/include", "flags": "drwxr-xr-x", "links": 28, "owner": "root", "group": "root", "size": 69632, "date": "Feb 5 06:03"}, {"filename": "locale.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7674, "date": "Apr 16 2018"}, {"filename": "malloc.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6102, "date": "Apr 16 2018"}, {"filename": "math.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 45384, "date": "Apr 16 2018"}, {"filename": "mcheck.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2434, "date": "Apr 16 2018"}, {"filename": "memory.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 955, "date": "Apr 16 2018"}, {"filename": "misc", "parent": "/usr/include", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "mntent.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3358, "date": "Apr 16 2018"}, {"filename": "monetary.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1803, "date": "Apr 16 2018"}, {"filename": "mqueue.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3759, "date": "Apr 16 2018"}, {"filename": "mtd", "parent": "/usr/include", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "net", "parent": "/usr/include", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "netash", "parent": "/usr/include", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "netatalk", "parent": "/usr/include", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "netax25", "parent": "/usr/include", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "netdb.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 28051, "date": "Apr 16 2018"}, {"filename": "neteconet", "parent": "/usr/include", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "netinet", "parent": "/usr/include", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "netipx", "parent": "/usr/include", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "netiucv", "parent": "/usr/include", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "netpacket", "parent": "/usr/include", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "netrom", "parent": "/usr/include", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "netrose", "parent": "/usr/include", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "nfs", "parent": "/usr/include", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "nl_types.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1752, "date": "Apr 16 2018"}, {"filename": "nss.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1878, "date": "Apr 16 2018"}, {"filename": "obstack.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 21306, "date": "Apr 16 2018"}, {"filename": "paths.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2983, "date": "Apr 16 2018"}, {"filename": "poll.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 22, "date": "Apr 16 2018"}, {"filename": "printf.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6800, "date": "Apr 16 2018"}, {"filename": "proc_service.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3476, "date": "Apr 16 2018"}, {"filename": "protocols", "parent": "/usr/include", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "pthread.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 41269, "date": "Apr 16 2018"}, {"filename": "pty.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1569, "date": "Apr 16 2018"}, {"filename": "pwd.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6029, "date": "Apr 16 2018"}, {"filename": "python3.6", "link_to": "python3.6m", "parent": "/usr/include", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 10, "date": "Oct 7 12:59"}, {"filename": "python3.6m", "parent": "/usr/include", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "rdma", "parent": "/usr/include", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "re_comp.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 962, "date": "Apr 16 2018"}, {"filename": "regex.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 22050, "date": "Apr 16 2018"}, {"filename": "regexp.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1447, "date": "Apr 16 2018"}, {"filename": "reglib", "parent": "/usr/include", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 12 2019"}, {"filename": "resolv.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 12012, "date": "Apr 16 2018"}, {"filename": "rpc", "parent": "/usr/include", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "rpcsvc", "parent": "/usr/include", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "sched.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4732, "date": "Apr 16 2018"}, {"filename": "scsi", "parent": "/usr/include", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "search.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5223, "date": "Apr 16 2018"}, {"filename": "semaphore.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2399, "date": "Apr 16 2018"}, {"filename": "setjmp.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3669, "date": "Apr 16 2018"}, {"filename": "sgtty.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1343, "date": "Apr 16 2018"}, {"filename": "shadow.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5197, "date": "Apr 16 2018"}, {"filename": "signal.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 12243, "date": "Apr 16 2018"}, {"filename": "sound", "parent": "/usr/include", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "spawn.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6690, "date": "Apr 16 2018"}, {"filename": "stab.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 264, "date": "Apr 16 2018"}, {"filename": "stdc-predef.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2363, "date": "Apr 16 2018"}, {"filename": "stdint.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8626, "date": "Apr 16 2018"}, {"filename": "stdio_ext.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2799, "date": "Apr 16 2018"}, {"filename": "stdio.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 29665, "date": "Apr 16 2018"}, {"filename": "stdlib.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 35784, "date": "Apr 16 2018"}, {"filename": "string.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 17545, "date": "Apr 16 2018"}, {"filename": "strings.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4752, "date": "Apr 16 2018"}, {"filename": "stropts.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3047, "date": "Apr 16 2018"}, {"filename": "sudo_plugin.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8084, "date": "Jan 31 17:18"}, {"filename": "syscall.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 25, "date": "Apr 16 2018"}, {"filename": "sysexits.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5232, "date": "Apr 16 2018"}, {"filename": "syslog.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 24, "date": "Apr 16 2018"}, {"filename": "tar.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3785, "date": "Apr 16 2018"}, {"filename": "termio.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 214, "date": "Apr 16 2018"}, {"filename": "termios.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3598, "date": "Apr 16 2018"}, {"filename": "tgmath.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 31489, "date": "Apr 16 2018"}, {"filename": "thread_db.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 16023, "date": "Apr 16 2018"}, {"filename": "time.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 10360, "date": "Apr 16 2018"}, {"filename": "ttyent.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2494, "date": "Apr 16 2018"}, {"filename": "uchar.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2312, "date": "Apr 16 2018"}, {"filename": "ucontext.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1937, "date": "Apr 16 2018"}, {"filename": "ulimit.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1583, "date": "Apr 16 2018"}, {"filename": "unistd.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 42785, "date": "Apr 16 2018"}, {"filename": "ustat.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 23, "date": "Apr 16 2018"}, {"filename": "utime.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1501, "date": "Apr 16 2018"}, {"filename": "utmp.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3222, "date": "Apr 16 2018"}, {"filename": "utmpx.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4099, "date": "Apr 16 2018"}, {"filename": "values.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1955, "date": "Apr 16 2018"}, {"filename": "video", "parent": "/usr/include", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "wait.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 22, "date": "Apr 16 2018"}, {"filename": "wchar.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 31111, "date": "Apr 16 2018"}, {"filename": "wctype.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5548, "date": "Apr 16 2018"}, {"filename": "wordexp.h", "parent": "/usr/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2501, "date": "Apr 16 2018"}, {"filename": "x86_64-linux-gnu", "parent": "/usr/include", "flags": "drwxr-xr-x", "links": 8, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "xen", "parent": "/usr/include", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "xfs", "parent": "/usr/include", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Apr 18 2018"}, {"filename": ".", "parent": "/usr/include/arpa", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/arpa", "flags": "drwxr-xr-x", "links": 34, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "ftp.h", "parent": "/usr/include/arpa", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3432, "date": "Apr 16 2018"}, {"filename": "inet.h", "parent": "/usr/include/arpa", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4276, "date": "Apr 16 2018"}, {"filename": "nameser_compat.h", "parent": "/usr/include/arpa", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7041, "date": "Apr 16 2018"}, {"filename": "nameser.h", "parent": "/usr/include/arpa", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 14195, "date": "Apr 16 2018"}, {"filename": "telnet.h", "parent": "/usr/include/arpa", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 10263, "date": "Apr 16 2018"}, {"filename": "tftp.h", "parent": "/usr/include/arpa", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3051, "date": "Apr 16 2018"}, {"filename": ".", "parent": "/usr/include/asm-generic", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "..", "parent": "/usr/include/asm-generic", "flags": "drwxr-xr-x", "links": 34, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "auxvec.h", "parent": "/usr/include/asm-generic", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 218, "date": "Jan 17 13:59"}, {"filename": "bitsperlong.h", "parent": "/usr/include/asm-generic", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 564, "date": "Jan 17 13:59"}, {"filename": "bpf_perf_event.h", "parent": "/usr/include/asm-generic", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 238, "date": "Jan 17 13:59"}, {"filename": "errno-base.h", "parent": "/usr/include/asm-generic", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1612, "date": "Jan 17 13:59"}, {"filename": "errno.h", "parent": "/usr/include/asm-generic", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5648, "date": "Jan 17 13:59"}, {"filename": "fcntl.h", "parent": "/usr/include/asm-generic", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5423, "date": "Jan 17 13:59"}, {"filename": "hugetlb_encode.h", "parent": "/usr/include/asm-generic", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1605, "date": "Jan 17 13:59"}, {"filename": "int-l64.h", "parent": "/usr/include/asm-generic", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 718, "date": "Jan 17 13:59"}, {"filename": "int-ll64.h", "parent": "/usr/include/asm-generic", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 864, "date": "Jan 17 13:59"}, {"filename": "ioctl.h", "parent": "/usr/include/asm-generic", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3478, "date": "Jan 17 13:59"}, {"filename": "ioctls.h", "parent": "/usr/include/asm-generic", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3866, "date": "Jan 17 13:59"}, {"filename": "ipcbuf.h", "parent": "/usr/include/asm-generic", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1003, "date": "Jan 17 13:59"}, {"filename": "kvm_para.h", "parent": "/usr/include/asm-generic", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 96, "date": "Jan 17 13:59"}, {"filename": "mman-common.h", "parent": "/usr/include/asm-generic", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3020, "date": "Jan 17 13:59"}, {"filename": "mman.h", "parent": "/usr/include/asm-generic", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1080, "date": "Jan 17 13:59"}, {"filename": "msgbuf.h", "parent": "/usr/include/asm-generic", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1570, "date": "Jan 17 13:59"}, {"filename": "param.h", "parent": "/usr/include/asm-generic", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 353, "date": "Jan 17 13:59"}, {"filename": "poll.h", "parent": "/usr/include/asm-generic", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 858, "date": "Jan 17 13:59"}, {"filename": "posix_types.h", "parent": "/usr/include/asm-generic", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2294, "date": "Jan 17 13:59"}, {"filename": "resource.h", "parent": "/usr/include/asm-generic", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1872, "date": "Jan 17 13:59"}, {"filename": "sembuf.h", "parent": "/usr/include/asm-generic", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1257, "date": "Jan 17 13:59"}, {"filename": "setup.h", "parent": "/usr/include/asm-generic", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 190, "date": "Jan 17 13:59"}, {"filename": "shmbuf.h", "parent": "/usr/include/asm-generic", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1798, "date": "Jan 17 13:59"}, {"filename": "shmparam.h", "parent": "/usr/include/asm-generic", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 231, "date": "Jan 17 13:59"}, {"filename": "siginfo.h", "parent": "/usr/include/asm-generic", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8627, "date": "Jan 17 13:59"}, {"filename": "signal-defs.h", "parent": "/usr/include/asm-generic", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 800, "date": "Jan 17 13:59"}, {"filename": "signal.h", "parent": "/usr/include/asm-generic", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2709, "date": "Jan 17 13:59"}, {"filename": "socket.h", "parent": "/usr/include/asm-generic", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2292, "date": "Jan 17 13:59"}, {"filename": "sockios.h", "parent": "/usr/include/asm-generic", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 439, "date": "Jan 17 13:59"}, {"filename": "statfs.h", "parent": "/usr/include/asm-generic", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1839, "date": "Jan 17 13:59"}, {"filename": "stat.h", "parent": "/usr/include/asm-generic", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2633, "date": "Jan 17 13:59"}, {"filename": "swab.h", "parent": "/usr/include/asm-generic", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 502, "date": "Jan 17 13:59"}, {"filename": "termbits.h", "parent": "/usr/include/asm-generic", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4716, "date": "Jan 17 13:59"}, {"filename": "termios.h", "parent": "/usr/include/asm-generic", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1377, "date": "Jan 17 13:59"}, {"filename": "types.h", "parent": "/usr/include/asm-generic", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 233, "date": "Jan 17 13:59"}, {"filename": "ucontext.h", "parent": "/usr/include/asm-generic", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 357, "date": "Jan 17 13:59"}, {"filename": "unistd.h", "parent": "/usr/include/asm-generic", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 30244, "date": "Jan 17 13:59"}, {"filename": ".", "parent": "/usr/include/btrfs", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "..", "parent": "/usr/include/btrfs", "flags": "drwxr-xr-x", "links": 34, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "btrfsck.h", "parent": "/usr/include/btrfs", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5035, "date": "Mar 12 2018"}, {"filename": "btrfs-list.h", "parent": "/usr/include/btrfs", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4658, "date": "Mar 12 2018"}, {"filename": "crc32c.h", "parent": "/usr/include/btrfs", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1095, "date": "Mar 12 2018"}, {"filename": "ctree.h", "parent": "/usr/include/btrfs", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 91600, "date": "Mar 12 2018"}, {"filename": "extent-cache.h", "parent": "/usr/include/btrfs", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3604, "date": "Mar 12 2018"}, {"filename": "extent_io.h", "parent": "/usr/include/btrfs", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6040, "date": "Mar 12 2018"}, {"filename": "ioctl.h", "parent": "/usr/include/btrfs", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 26509, "date": "Feb 16 2018"}, {"filename": "kerncompat.h", "parent": "/usr/include/btrfs", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 10419, "date": "Mar 12 2018"}, {"filename": "list.h", "parent": "/usr/include/btrfs", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 14636, "date": "Mar 12 2018"}, {"filename": "radix-tree.h", "parent": "/usr/include/btrfs", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3343, "date": "Mar 12 2018"}, {"filename": "raid56.h", "parent": "/usr/include/btrfs", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2024, "date": "Mar 12 2018"}, {"filename": "rbtree.h", "parent": "/usr/include/btrfs", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3903, "date": "Mar 12 2018"}, {"filename": "send.h", "parent": "/usr/include/btrfs", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3090, "date": "Mar 12 2018"}, {"filename": "send-stream.h", "parent": "/usr/include/btrfs", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2803, "date": "Mar 12 2018"}, {"filename": "send-utils.h", "parent": "/usr/include/btrfs", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3700, "date": "Mar 12 2018"}, {"filename": "sizes.h", "parent": "/usr/include/btrfs", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1223, "date": "Mar 12 2018"}, {"filename": "version.h", "parent": "/usr/include/btrfs", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 363, "date": "Mar 12 2018"}, {"filename": ".", "parent": "/usr/include/c++", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/c++", "flags": "drwxr-xr-x", "links": 34, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "7", "parent": "/usr/include/c++", "flags": "drwxr-xr-x", "links": 12, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "7.4.0", "link_to": "7", "parent": "/usr/include/c++", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 1, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/include/c++/7", "flags": "drwxr-xr-x", "links": 12, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/c++/7", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "algorithm", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2518, "date": "May 8 2019"}, {"filename": "any", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 18229, "date": "May 8 2019"}, {"filename": "array", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 11385, "date": "May 8 2019"}, {"filename": "atomic", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 40975, "date": "May 8 2019"}, {"filename": "backward", "parent": "/usr/include/c++/7", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "bits", "parent": "/usr/include/c++/7", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "bitset", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 45887, "date": "May 8 2019"}, {"filename": "cassert", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1648, "date": "May 8 2019"}, {"filename": "ccomplex", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1335, "date": "May 8 2019"}, {"filename": "cctype", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2409, "date": "May 8 2019"}, {"filename": "cerrno", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1770, "date": "May 8 2019"}, {"filename": "cfenv", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2051, "date": "May 8 2019"}, {"filename": "cfloat", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1889, "date": "May 8 2019"}, {"filename": "chrono", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 30089, "date": "May 8 2019"}, {"filename": "cinttypes", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2157, "date": "May 8 2019"}, {"filename": "ciso646", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1464, "date": "May 8 2019"}, {"filename": "climits", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1913, "date": "May 8 2019"}, {"filename": "clocale", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1905, "date": "May 8 2019"}, {"filename": "cmath", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 48484, "date": "May 8 2019"}, {"filename": "codecvt", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5341, "date": "May 8 2019"}, {"filename": "complex", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 54204, "date": "May 8 2019"}, {"filename": "complex.h", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1461, "date": "May 8 2019"}, {"filename": "condition_variable", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8954, "date": "May 8 2019"}, {"filename": "csetjmp", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1949, "date": "May 8 2019"}, {"filename": "csignal", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1855, "date": "May 8 2019"}, {"filename": "cstdalign", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1407, "date": "May 8 2019"}, {"filename": "cstdarg", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1868, "date": "May 8 2019"}, {"filename": "cstdbool", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1401, "date": "May 8 2019"}, {"filename": "cstddef", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6440, "date": "May 8 2019"}, {"filename": "cstdint", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2167, "date": "May 8 2019"}, {"filename": "cstdio", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4439, "date": "May 8 2019"}, {"filename": "cstdlib", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6325, "date": "May 8 2019"}, {"filename": "cstring", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3123, "date": "May 8 2019"}, {"filename": "ctgmath", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1360, "date": "May 8 2019"}, {"filename": "ctime", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2125, "date": "May 8 2019"}, {"filename": "cuchar", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2210, "date": "May 8 2019"}, {"filename": "cwchar", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6509, "date": "May 8 2019"}, {"filename": "cwctype", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2793, "date": "May 8 2019"}, {"filename": "cxxabi.h", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 21947, "date": "May 8 2019"}, {"filename": "debug", "parent": "/usr/include/c++/7", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "decimal", "parent": "/usr/include/c++/7", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "deque", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2665, "date": "May 8 2019"}, {"filename": "exception", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4777, "date": "May 8 2019"}, {"filename": "experimental", "parent": "/usr/include/c++/7", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "ext", "parent": "/usr/include/c++/7", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "fenv.h", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2020, "date": "May 8 2019"}, {"filename": "forward_list", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1577, "date": "May 8 2019"}, {"filename": "fstream", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 33845, "date": "May 8 2019"}, {"filename": "functional", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 39570, "date": "May 8 2019"}, {"filename": "future", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 50678, "date": "May 8 2019"}, {"filename": "initializer_list", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2974, "date": "May 8 2019"}, {"filename": "iomanip", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 16132, "date": "May 8 2019"}, {"filename": "ios", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1601, "date": "May 8 2019"}, {"filename": "iosfwd", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6918, "date": "May 8 2019"}, {"filename": "iostream", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2695, "date": "May 8 2019"}, {"filename": "istream", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 32843, "date": "May 8 2019"}, {"filename": "iterator", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2644, "date": "May 8 2019"}, {"filename": "limits", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 69181, "date": "May 8 2019"}, {"filename": "list", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2594, "date": "May 8 2019"}, {"filename": "locale", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1488, "date": "May 8 2019"}, {"filename": "map", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2559, "date": "May 8 2019"}, {"filename": "math.h", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4380, "date": "May 8 2019"}, {"filename": "memory", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4711, "date": "May 8 2019"}, {"filename": "mutex", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 18310, "date": "May 8 2019"}, {"filename": "new", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7507, "date": "May 8 2019"}, {"filename": "numeric", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5232, "date": "May 8 2019"}, {"filename": "optional", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 31123, "date": "May 8 2019"}, {"filename": "ostream", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 21977, "date": "May 8 2019"}, {"filename": "parallel", "parent": "/usr/include/c++/7", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "profile", "parent": "/usr/include/c++/7", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "queue", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2467, "date": "May 8 2019"}, {"filename": "random", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1692, "date": "May 8 2019"}, {"filename": "ratio", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 19886, "date": "May 8 2019"}, {"filename": "regex", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1894, "date": "May 8 2019"}, {"filename": "scoped_allocator", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 16221, "date": "May 8 2019"}, {"filename": "set", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2559, "date": "May 8 2019"}, {"filename": "shared_mutex", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 19409, "date": "May 8 2019"}, {"filename": "sstream", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 26839, "date": "May 8 2019"}, {"filename": "stack", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2391, "date": "May 8 2019"}, {"filename": "stdexcept", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7975, "date": "May 8 2019"}, {"filename": "stdlib.h", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2248, "date": "May 8 2019"}, {"filename": "streambuf", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 29558, "date": "May 8 2019"}, {"filename": "string", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1940, "date": "May 8 2019"}, {"filename": "string_view", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 21299, "date": "May 8 2019"}, {"filename": "system_error", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 11522, "date": "May 8 2019"}, {"filename": "tgmath.h", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1360, "date": "May 8 2019"}, {"filename": "thread", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 10267, "date": "May 8 2019"}, {"filename": "tr1", "parent": "/usr/include/c++/7", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "tr2", "parent": "/usr/include/c++/7", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "tuple", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 59617, "date": "May 8 2019"}, {"filename": "typeindex", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3093, "date": "May 8 2019"}, {"filename": "typeinfo", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7692, "date": "May 8 2019"}, {"filename": "type_traits", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 92445, "date": "May 8 2019"}, {"filename": "unordered_map", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1857, "date": "May 8 2019"}, {"filename": "unordered_set", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1856, "date": "May 8 2019"}, {"filename": "utility", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 12447, "date": "May 8 2019"}, {"filename": "valarray", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 40274, "date": "May 8 2019"}, {"filename": "variant", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 43104, "date": "May 8 2019"}, {"filename": "vector", "parent": "/usr/include/c++/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2747, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/include/c++/7/backward", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/c++/7/backward", "flags": "drwxr-xr-x", "links": 12, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "auto_ptr.h", "parent": "/usr/include/c++/7/backward", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 10689, "date": "May 8 2019"}, {"filename": "backward_warning.h", "parent": "/usr/include/c++/7/backward", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2491, "date": "May 8 2019"}, {"filename": "binders.h", "parent": "/usr/include/c++/7/backward", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7167, "date": "May 8 2019"}, {"filename": "hash_fun.h", "parent": "/usr/include/c++/7/backward", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4248, "date": "May 8 2019"}, {"filename": "hash_map", "parent": "/usr/include/c++/7/backward", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 17775, "date": "May 8 2019"}, {"filename": "hash_set", "parent": "/usr/include/c++/7/backward", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 17195, "date": "May 8 2019"}, {"filename": "hashtable.h", "parent": "/usr/include/c++/7/backward", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 33719, "date": "May 8 2019"}, {"filename": "strstream", "parent": "/usr/include/c++/7/backward", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5798, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/include/c++/7/bits", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/c++/7/bits", "flags": "drwxr-xr-x", "links": 12, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "algorithmfwd.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 21737, "date": "May 8 2019"}, {"filename": "allocated_ptr.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3516, "date": "May 8 2019"}, {"filename": "allocator.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6888, "date": "May 8 2019"}, {"filename": "alloc_traits.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 19585, "date": "May 8 2019"}, {"filename": "atomic_base.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 23842, "date": "May 8 2019"}, {"filename": "atomic_futex.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9576, "date": "May 8 2019"}, {"filename": "atomic_lockfree_defines.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2253, "date": "May 8 2019"}, {"filename": "basic_ios.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 16074, "date": "May 8 2019"}, {"filename": "basic_ios.tcc", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6083, "date": "May 8 2019"}, {"filename": "basic_string.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 240793, "date": "May 8 2019"}, {"filename": "basic_string.tcc", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 53755, "date": "May 8 2019"}, {"filename": "boost_concept_check.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 27048, "date": "May 8 2019"}, {"filename": "c++0x_warning.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1474, "date": "May 8 2019"}, {"filename": "char_traits.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 20745, "date": "May 8 2019"}, {"filename": "codecvt.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 21297, "date": "May 8 2019"}, {"filename": "concept_check.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3423, "date": "May 8 2019"}, {"filename": "cpp_type_traits.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9594, "date": "May 8 2019"}, {"filename": "cxxabi_forced.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1811, "date": "May 8 2019"}, {"filename": "cxxabi_init_exception.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2220, "date": "May 8 2019"}, {"filename": "deque.tcc", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 34058, "date": "May 8 2019"}, {"filename": "enable_special_members.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 12387, "date": "May 8 2019"}, {"filename": "exception_defines.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1645, "date": "May 8 2019"}, {"filename": "exception.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2280, "date": "May 8 2019"}, {"filename": "exception_ptr.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6464, "date": "May 8 2019"}, {"filename": "forward_list.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 48641, "date": "May 8 2019"}, {"filename": "forward_list.tcc", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 15022, "date": "May 8 2019"}, {"filename": "fstream.tcc", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 32909, "date": "May 8 2019"}, {"filename": "functexcept.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3254, "date": "May 8 2019"}, {"filename": "functional_hash.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8194, "date": "May 8 2019"}, {"filename": "gslice_array.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7769, "date": "May 8 2019"}, {"filename": "gslice.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5518, "date": "May 8 2019"}, {"filename": "hash_bytes.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2146, "date": "May 8 2019"}, {"filename": "hashtable.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 73276, "date": "May 8 2019"}, {"filename": "hashtable_policy.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 67045, "date": "May 8 2019"}, {"filename": "indirect_array.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7861, "date": "May 8 2019"}, {"filename": "invoke.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3657, "date": "May 8 2019"}, {"filename": "ios_base.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 30944, "date": "May 8 2019"}, {"filename": "istream.tcc", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 31093, "date": "May 8 2019"}, {"filename": "list.tcc", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 15912, "date": "May 8 2019"}, {"filename": "locale_classes.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 24897, "date": "May 8 2019"}, {"filename": "locale_classes.tcc", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8375, "date": "May 8 2019"}, {"filename": "locale_conv.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 16077, "date": "May 8 2019"}, {"filename": "locale_facets.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 92142, "date": "May 8 2019"}, {"filename": "locale_facets_nonio.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 68941, "date": "May 8 2019"}, {"filename": "locale_facets_nonio.tcc", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 45522, "date": "May 8 2019"}, {"filename": "locale_facets.tcc", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 39568, "date": "May 8 2019"}, {"filename": "localefwd.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5646, "date": "May 8 2019"}, {"filename": "mask_array.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7595, "date": "May 8 2019"}, {"filename": "memoryfwd.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2419, "date": "May 8 2019"}, {"filename": "move.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6653, "date": "May 8 2019"}, {"filename": "nested_exception.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4768, "date": "May 8 2019"}, {"filename": "node_handle.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8165, "date": "May 8 2019"}, {"filename": "ostream_insert.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4002, "date": "May 8 2019"}, {"filename": "ostream.tcc", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 12315, "date": "May 8 2019"}, {"filename": "parse_numbers.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8027, "date": "May 8 2019"}, {"filename": "postypes.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8208, "date": "May 8 2019"}, {"filename": "predefined_ops.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9083, "date": "May 8 2019"}, {"filename": "ptr_traits.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4860, "date": "May 8 2019"}, {"filename": "quoted_string.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4581, "date": "May 8 2019"}, {"filename": "random.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 175292, "date": "May 8 2019"}, {"filename": "random.tcc", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 105554, "date": "May 8 2019"}, {"filename": "range_access.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9988, "date": "May 8 2019"}, {"filename": "refwrap.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 13807, "date": "May 8 2019"}, {"filename": "regex_automaton.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 10721, "date": "May 8 2019"}, {"filename": "regex_automaton.tcc", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7838, "date": "May 8 2019"}, {"filename": "regex_compiler.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 17196, "date": "May 8 2019"}, {"filename": "regex_compiler.tcc", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 18901, "date": "May 8 2019"}, {"filename": "regex_constants.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 14709, "date": "May 8 2019"}, {"filename": "regex_error.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4969, "date": "May 8 2019"}, {"filename": "regex_executor.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7488, "date": "May 8 2019"}, {"filename": "regex_executor.tcc", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 17319, "date": "May 8 2019"}, {"filename": "regex.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 98206, "date": "May 8 2019"}, {"filename": "regex_scanner.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7088, "date": "May 8 2019"}, {"filename": "regex_scanner.tcc", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 15009, "date": "May 8 2019"}, {"filename": "regex.tcc", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 16486, "date": "May 8 2019"}, {"filename": "shared_ptr_atomic.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9769, "date": "May 8 2019"}, {"filename": "shared_ptr_base.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 53803, "date": "May 8 2019"}, {"filename": "shared_ptr.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 22909, "date": "May 8 2019"}, {"filename": "slice_array.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9348, "date": "May 8 2019"}, {"filename": "specfun.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 45086, "date": "May 8 2019"}, {"filename": "sstream.tcc", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 10115, "date": "May 8 2019"}, {"filename": "std_abs.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3290, "date": "May 8 2019"}, {"filename": "std_function.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 23974, "date": "May 8 2019"}, {"filename": "std_mutex.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9298, "date": "May 8 2019"}, {"filename": "stl_algobase.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 50403, "date": "May 8 2019"}, {"filename": "stl_algo.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 213859, "date": "May 8 2019"}, {"filename": "stl_bvector.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 33821, "date": "May 8 2019"}, {"filename": "stl_construct.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7397, "date": "May 8 2019"}, {"filename": "stl_deque.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 77771, "date": "May 8 2019"}, {"filename": "stl_function.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 33276, "date": "May 8 2019"}, {"filename": "stl_heap.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 20206, "date": "May 8 2019"}, {"filename": "stl_iterator_base_funcs.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8071, "date": "May 8 2019"}, {"filename": "stl_iterator_base_types.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8680, "date": "May 8 2019"}, {"filename": "stl_iterator.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 41744, "date": "May 8 2019"}, {"filename": "stl_list.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 65181, "date": "May 8 2019"}, {"filename": "stl_map.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 51221, "date": "May 8 2019"}, {"filename": "stl_multimap.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 39940, "date": "May 8 2019"}, {"filename": "stl_multiset.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 34056, "date": "May 8 2019"}, {"filename": "stl_numeric.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 13832, "date": "May 8 2019"}, {"filename": "stl_pair.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 18642, "date": "May 8 2019"}, {"filename": "stl_queue.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 22125, "date": "May 8 2019"}, {"filename": "stl_raw_storage_iter.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3830, "date": "May 8 2019"}, {"filename": "stl_relops.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4599, "date": "May 8 2019"}, {"filename": "stl_set.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 34432, "date": "May 8 2019"}, {"filename": "stl_stack.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 11446, "date": "May 8 2019"}, {"filename": "stl_tempbuf.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8344, "date": "May 8 2019"}, {"filename": "stl_tree.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 74820, "date": "May 8 2019"}, {"filename": "stl_uninitialized.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 27600, "date": "May 8 2019"}, {"filename": "stl_vector.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 55637, "date": "May 8 2019"}, {"filename": "streambuf_iterator.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 12624, "date": "May 8 2019"}, {"filename": "streambuf.tcc", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4929, "date": "May 8 2019"}, {"filename": "stream_iterator.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6654, "date": "May 8 2019"}, {"filename": "stringfwd.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2607, "date": "May 8 2019"}, {"filename": "string_view.tcc", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6632, "date": "May 8 2019"}, {"filename": "uniform_int_dist.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 10147, "date": "May 8 2019"}, {"filename": "unique_ptr.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 25794, "date": "May 8 2019"}, {"filename": "unordered_map.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 68650, "date": "May 8 2019"}, {"filename": "unordered_set.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 53824, "date": "May 8 2019"}, {"filename": "uses_allocator.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6383, "date": "May 8 2019"}, {"filename": "valarray_after.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 22655, "date": "May 8 2019"}, {"filename": "valarray_array.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 21807, "date": "May 8 2019"}, {"filename": "valarray_array.tcc", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7254, "date": "May 8 2019"}, {"filename": "valarray_before.h", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 18513, "date": "May 8 2019"}, {"filename": "vector.tcc", "parent": "/usr/include/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 27598, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/include/c++/7/debug", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/c++/7/debug", "flags": "drwxr-xr-x", "links": 12, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "array", "parent": "/usr/include/c++/7/debug", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 10122, "date": "May 8 2019"}, {"filename": "assertions.h", "parent": "/usr/include/c++/7/debug", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2411, "date": "May 8 2019"}, {"filename": "bitset", "parent": "/usr/include/c++/7/debug", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 11903, "date": "May 8 2019"}, {"filename": "debug.h", "parent": "/usr/include/c++/7/debug", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5221, "date": "May 8 2019"}, {"filename": "deque", "parent": "/usr/include/c++/7/debug", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 17004, "date": "May 8 2019"}, {"filename": "formatter.h", "parent": "/usr/include/c++/7/debug", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 14169, "date": "May 8 2019"}, {"filename": "forward_list", "parent": "/usr/include/c++/7/debug", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 25253, "date": "May 8 2019"}, {"filename": "functions.h", "parent": "/usr/include/c++/7/debug", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 16601, "date": "May 8 2019"}, {"filename": "helper_functions.h", "parent": "/usr/include/c++/7/debug", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6813, "date": "May 8 2019"}, {"filename": "list", "parent": "/usr/include/c++/7/debug", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 22406, "date": "May 8 2019"}, {"filename": "macros.h", "parent": "/usr/include/c++/7/debug", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 17872, "date": "May 8 2019"}, {"filename": "map", "parent": "/usr/include/c++/7/debug", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1345, "date": "May 8 2019"}, {"filename": "map.h", "parent": "/usr/include/c++/7/debug", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 21145, "date": "May 8 2019"}, {"filename": "multimap.h", "parent": "/usr/include/c++/7/debug", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 18244, "date": "May 8 2019"}, {"filename": "multiset.h", "parent": "/usr/include/c++/7/debug", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 17168, "date": "May 8 2019"}, {"filename": "safe_base.h", "parent": "/usr/include/c++/7/debug", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9279, "date": "May 8 2019"}, {"filename": "safe_container.h", "parent": "/usr/include/c++/7/debug", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3413, "date": "May 8 2019"}, {"filename": "safe_iterator.h", "parent": "/usr/include/c++/7/debug", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 30248, "date": "May 8 2019"}, {"filename": "safe_iterator.tcc", "parent": "/usr/include/c++/7/debug", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2959, "date": "May 8 2019"}, {"filename": "safe_local_iterator.h", "parent": "/usr/include/c++/7/debug", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 16229, "date": "May 8 2019"}, {"filename": "safe_local_iterator.tcc", "parent": "/usr/include/c++/7/debug", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2118, "date": "May 8 2019"}, {"filename": "safe_sequence.h", "parent": "/usr/include/c++/7/debug", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5096, "date": "May 8 2019"}, {"filename": "safe_sequence.tcc", "parent": "/usr/include/c++/7/debug", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4989, "date": "May 8 2019"}, {"filename": "safe_unordered_base.h", "parent": "/usr/include/c++/7/debug", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6895, "date": "May 8 2019"}, {"filename": "safe_unordered_container.h", "parent": "/usr/include/c++/7/debug", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3897, "date": "May 8 2019"}, {"filename": "safe_unordered_container.tcc", "parent": "/usr/include/c++/7/debug", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3263, "date": "May 8 2019"}, {"filename": "set", "parent": "/usr/include/c++/7/debug", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1345, "date": "May 8 2019"}, {"filename": "set.h", "parent": "/usr/include/c++/7/debug", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 17328, "date": "May 8 2019"}, {"filename": "stl_iterator.h", "parent": "/usr/include/c++/7/debug", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4276, "date": "May 8 2019"}, {"filename": "string", "parent": "/usr/include/c++/7/debug", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 33653, "date": "May 8 2019"}, {"filename": "unordered_map", "parent": "/usr/include/c++/7/debug", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 35411, "date": "May 8 2019"}, {"filename": "unordered_set", "parent": "/usr/include/c++/7/debug", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 30522, "date": "May 8 2019"}, {"filename": "vector", "parent": "/usr/include/c++/7/debug", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 21862, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/include/c++/7/decimal", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/c++/7/decimal", "flags": "drwxr-xr-x", "links": 12, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "decimal", "parent": "/usr/include/c++/7/decimal", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 17640, "date": "May 8 2019"}, {"filename": "decimal.h", "parent": "/usr/include/c++/7/decimal", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 17002, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/include/c++/7/experimental", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/c++/7/experimental", "flags": "drwxr-xr-x", "links": 12, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "algorithm", "parent": "/usr/include/c++/7/experimental", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3089, "date": "May 8 2019"}, {"filename": "any", "parent": "/usr/include/c++/7/experimental", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 14592, "date": "May 8 2019"}, {"filename": "array", "parent": "/usr/include/c++/7/experimental", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3232, "date": "May 8 2019"}, {"filename": "bits", "parent": "/usr/include/c++/7/experimental", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "chrono", "parent": "/usr/include/c++/7/experimental", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1937, "date": "May 8 2019"}, {"filename": "deque", "parent": "/usr/include/c++/7/experimental", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2317, "date": "May 8 2019"}, {"filename": "filesystem", "parent": "/usr/include/c++/7/experimental", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2195, "date": "May 8 2019"}, {"filename": "forward_list", "parent": "/usr/include/c++/7/experimental", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2373, "date": "May 8 2019"}, {"filename": "functional", "parent": "/usr/include/c++/7/experimental", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 12553, "date": "May 8 2019"}, {"filename": "iterator", "parent": "/usr/include/c++/7/experimental", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3510, "date": "May 8 2019"}, {"filename": "list", "parent": "/usr/include/c++/7/experimental", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2284, "date": "May 8 2019"}, {"filename": "map", "parent": "/usr/include/c++/7/experimental", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2628, "date": "May 8 2019"}, {"filename": "memory", "parent": "/usr/include/c++/7/experimental", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6040, "date": "May 8 2019"}, {"filename": "memory_resource", "parent": "/usr/include/c++/7/experimental", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 12803, "date": "May 8 2019"}, {"filename": "numeric", "parent": "/usr/include/c++/7/experimental", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2798, "date": "May 8 2019"}, {"filename": "optional", "parent": "/usr/include/c++/7/experimental", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 28849, "date": "May 8 2019"}, {"filename": "propagate_const", "parent": "/usr/include/c++/7/experimental", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 15312, "date": "May 8 2019"}, {"filename": "random", "parent": "/usr/include/c++/7/experimental", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2475, "date": "May 8 2019"}, {"filename": "ratio", "parent": "/usr/include/c++/7/experimental", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2416, "date": "May 8 2019"}, {"filename": "regex", "parent": "/usr/include/c++/7/experimental", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2097, "date": "May 8 2019"}, {"filename": "set", "parent": "/usr/include/c++/7/experimental", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2502, "date": "May 8 2019"}, {"filename": "source_location", "parent": "/usr/include/c++/7/experimental", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2670, "date": "May 8 2019"}, {"filename": "string", "parent": "/usr/include/c++/7/experimental", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2861, "date": "May 8 2019"}, {"filename": "string_view", "parent": "/usr/include/c++/7/experimental", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 21790, "date": "May 8 2019"}, {"filename": "system_error", "parent": "/usr/include/c++/7/experimental", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2023, "date": "May 8 2019"}, {"filename": "tuple", "parent": "/usr/include/c++/7/experimental", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2450, "date": "May 8 2019"}, {"filename": "type_traits", "parent": "/usr/include/c++/7/experimental", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 11018, "date": "May 8 2019"}, {"filename": "unordered_map", "parent": "/usr/include/c++/7/experimental", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2874, "date": "May 8 2019"}, {"filename": "unordered_set", "parent": "/usr/include/c++/7/experimental", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2757, "date": "May 8 2019"}, {"filename": "utility", "parent": "/usr/include/c++/7/experimental", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1633, "date": "May 8 2019"}, {"filename": "vector", "parent": "/usr/include/c++/7/experimental", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2389, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/include/c++/7/experimental/bits", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/c++/7/experimental/bits", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "erase_if.h", "parent": "/usr/include/c++/7/experimental/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2079, "date": "May 8 2019"}, {"filename": "fs_dir.h", "parent": "/usr/include/c++/7/experimental/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 10789, "date": "May 8 2019"}, {"filename": "fs_fwd.h", "parent": "/usr/include/c++/7/experimental/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8507, "date": "May 8 2019"}, {"filename": "fs_ops.h", "parent": "/usr/include/c++/7/experimental/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9330, "date": "May 8 2019"}, {"filename": "fs_path.h", "parent": "/usr/include/c++/7/experimental/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 30782, "date": "May 8 2019"}, {"filename": "lfts_config.h", "parent": "/usr/include/c++/7/experimental/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2144, "date": "May 8 2019"}, {"filename": "shared_ptr.h", "parent": "/usr/include/c++/7/experimental/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 20301, "date": "May 8 2019"}, {"filename": "string_view.tcc", "parent": "/usr/include/c++/7/experimental/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6816, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/include/c++/7/ext", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/c++/7/ext", "flags": "drwxr-xr-x", "links": 12, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "algorithm", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 19290, "date": "May 8 2019"}, {"filename": "aligned_buffer.h", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3742, "date": "May 8 2019"}, {"filename": "alloc_traits.h", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5658, "date": "May 8 2019"}, {"filename": "array_allocator.h", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5386, "date": "May 8 2019"}, {"filename": "atomicity.h", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3509, "date": "May 8 2019"}, {"filename": "bitmap_allocator.h", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 31892, "date": "May 8 2019"}, {"filename": "cast.h", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4447, "date": "May 8 2019"}, {"filename": "cmath", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6570, "date": "May 8 2019"}, {"filename": "codecvt_specializations.h", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 16353, "date": "May 8 2019"}, {"filename": "concurrence.h", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7611, "date": "May 8 2019"}, {"filename": "debug_allocator.h", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5716, "date": "May 8 2019"}, {"filename": "enc_filebuf.h", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2247, "date": "May 8 2019"}, {"filename": "extptr_allocator.h", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6189, "date": "May 8 2019"}, {"filename": "functional", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 14292, "date": "May 8 2019"}, {"filename": "hash_map", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 17775, "date": "May 8 2019"}, {"filename": "hash_set", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 17195, "date": "May 8 2019"}, {"filename": "iterator", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4031, "date": "May 8 2019"}, {"filename": "malloc_allocator.h", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5086, "date": "May 8 2019"}, {"filename": "memory", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7156, "date": "May 8 2019"}, {"filename": "mt_allocator.h", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 23523, "date": "May 8 2019"}, {"filename": "new_allocator.h", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4805, "date": "May 8 2019"}, {"filename": "numeric", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4731, "date": "May 8 2019"}, {"filename": "numeric_traits.h", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4575, "date": "May 8 2019"}, {"filename": "pb_ds", "parent": "/usr/include/c++/7/ext", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "pod_char_traits.h", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5556, "date": "May 8 2019"}, {"filename": "pointer.h", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 19827, "date": "May 8 2019"}, {"filename": "pool_allocator.h", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8821, "date": "May 8 2019"}, {"filename": "random", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 111392, "date": "May 8 2019"}, {"filename": "random.tcc", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 60247, "date": "May 8 2019"}, {"filename": "rb_tree", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3311, "date": "May 8 2019"}, {"filename": "rc_string_base.h", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 23735, "date": "May 8 2019"}, {"filename": "rope", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 87643, "date": "May 8 2019"}, {"filename": "ropeimpl.h", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 48434, "date": "May 8 2019"}, {"filename": "slist", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 29603, "date": "May 8 2019"}, {"filename": "sso_string_base.h", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 16314, "date": "May 8 2019"}, {"filename": "stdio_filebuf.h", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5670, "date": "May 8 2019"}, {"filename": "stdio_sync_filebuf.h", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8782, "date": "May 8 2019"}, {"filename": "string_conversions.h", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3597, "date": "May 8 2019"}, {"filename": "throw_allocator.h", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 24537, "date": "May 8 2019"}, {"filename": "typelist.h", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 16835, "date": "May 8 2019"}, {"filename": "type_traits.h", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5914, "date": "May 8 2019"}, {"filename": "vstring_fwd.h", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3222, "date": "May 8 2019"}, {"filename": "vstring.h", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 110573, "date": "May 8 2019"}, {"filename": "vstring.tcc", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 23614, "date": "May 8 2019"}, {"filename": "vstring_util.h", "parent": "/usr/include/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5767, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/include/c++/7/ext/pb_ds", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/c++/7/ext/pb_ds", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "assoc_container.hpp", "parent": "/usr/include/c++/7/ext/pb_ds", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 30110, "date": "May 8 2019"}, {"filename": "detail", "parent": "/usr/include/c++/7/ext/pb_ds", "flags": "drwxr-xr-x", "links": 25, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "exception.hpp", "parent": "/usr/include/c++/7/ext/pb_ds", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2988, "date": "May 8 2019"}, {"filename": "hash_policy.hpp", "parent": "/usr/include/c++/7/ext/pb_ds", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 16815, "date": "May 8 2019"}, {"filename": "list_update_policy.hpp", "parent": "/usr/include/c++/7/ext/pb_ds", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4368, "date": "May 8 2019"}, {"filename": "priority_queue.hpp", "parent": "/usr/include/c++/7/ext/pb_ds", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5502, "date": "May 8 2019"}, {"filename": "tag_and_trait.hpp", "parent": "/usr/include/c++/7/ext/pb_ds", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 12268, "date": "May 8 2019"}, {"filename": "tree_policy.hpp", "parent": "/usr/include/c++/7/ext/pb_ds", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5577, "date": "May 8 2019"}, {"filename": "trie_policy.hpp", "parent": "/usr/include/c++/7/ext/pb_ds", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 12225, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/include/c++/7/ext/pb_ds/detail", "flags": "drwxr-xr-x", "links": 25, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/c++/7/ext/pb_ds/detail", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "binary_heap_", "parent": "/usr/include/c++/7/ext/pb_ds/detail", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "binomial_heap_", "parent": "/usr/include/c++/7/ext/pb_ds/detail", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "binomial_heap_base_", "parent": "/usr/include/c++/7/ext/pb_ds/detail", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "bin_search_tree_", "parent": "/usr/include/c++/7/ext/pb_ds/detail", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "branch_policy", "parent": "/usr/include/c++/7/ext/pb_ds/detail", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "cc_hash_table_map_", "parent": "/usr/include/c++/7/ext/pb_ds/detail", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "cond_dealtor.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2724, "date": "May 8 2019"}, {"filename": "container_base_dispatch.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 13120, "date": "May 8 2019"}, {"filename": "debug_map_base.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8697, "date": "May 8 2019"}, {"filename": "eq_fn", "parent": "/usr/include/c++/7/ext/pb_ds/detail", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "gp_hash_table_map_", "parent": "/usr/include/c++/7/ext/pb_ds/detail", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "hash_fn", "parent": "/usr/include/c++/7/ext/pb_ds/detail", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "left_child_next_sibling_heap_", "parent": "/usr/include/c++/7/ext/pb_ds/detail", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "list_update_map_", "parent": "/usr/include/c++/7/ext/pb_ds/detail", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "list_update_policy", "parent": "/usr/include/c++/7/ext/pb_ds/detail", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "ov_tree_map_", "parent": "/usr/include/c++/7/ext/pb_ds/detail", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "pairing_heap_", "parent": "/usr/include/c++/7/ext/pb_ds/detail", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "pat_trie_", "parent": "/usr/include/c++/7/ext/pb_ds/detail", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "priority_queue_base_dispatch.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4140, "date": "May 8 2019"}, {"filename": "rb_tree_map_", "parent": "/usr/include/c++/7/ext/pb_ds/detail", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "rc_binomial_heap_", "parent": "/usr/include/c++/7/ext/pb_ds/detail", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "resize_policy", "parent": "/usr/include/c++/7/ext/pb_ds/detail", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "splay_tree_", "parent": "/usr/include/c++/7/ext/pb_ds/detail", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "standard_policies.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5031, "date": "May 8 2019"}, {"filename": "thin_heap_", "parent": "/usr/include/c++/7/ext/pb_ds/detail", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "tree_policy", "parent": "/usr/include/c++/7/ext/pb_ds/detail", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "tree_trace_base.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5134, "date": "May 8 2019"}, {"filename": "trie_policy", "parent": "/usr/include/c++/7/ext/pb_ds/detail", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "types_traits.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9998, "date": "May 8 2019"}, {"filename": "type_utils.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4319, "date": "May 8 2019"}, {"filename": "unordered_iterator", "parent": "/usr/include/c++/7/ext/pb_ds/detail", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": ".", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binary_heap_", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binary_heap_", "flags": "drwxr-xr-x", "links": 25, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "binary_heap_.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binary_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9010, "date": "May 8 2019"}, {"filename": "const_iterator.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binary_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4338, "date": "May 8 2019"}, {"filename": "constructors_destructor_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binary_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4189, "date": "May 8 2019"}, {"filename": "debug_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binary_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2541, "date": "May 8 2019"}, {"filename": "entry_cmp.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binary_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2820, "date": "May 8 2019"}, {"filename": "entry_pred.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binary_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2785, "date": "May 8 2019"}, {"filename": "erase_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binary_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5504, "date": "May 8 2019"}, {"filename": "find_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binary_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2597, "date": "May 8 2019"}, {"filename": "info_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binary_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2062, "date": "May 8 2019"}, {"filename": "insert_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binary_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4978, "date": "May 8 2019"}, {"filename": "iterators_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binary_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2270, "date": "May 8 2019"}, {"filename": "point_const_iterator.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binary_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4447, "date": "May 8 2019"}, {"filename": "policy_access_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binary_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1902, "date": "May 8 2019"}, {"filename": "resize_policy.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binary_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6133, "date": "May 8 2019"}, {"filename": "split_join_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binary_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4923, "date": "May 8 2019"}, {"filename": "trace_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binary_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2447, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binomial_heap_", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binomial_heap_", "flags": "drwxr-xr-x", "links": 25, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "binomial_heap_.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binomial_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3922, "date": "May 8 2019"}, {"filename": "constructors_destructor_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binomial_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2151, "date": "May 8 2019"}, {"filename": "debug_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binomial_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1897, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binomial_heap_base_", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binomial_heap_base_", "flags": "drwxr-xr-x", "links": 25, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "binomial_heap_base_.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binomial_heap_base_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6202, "date": "May 8 2019"}, {"filename": "constructors_destructor_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binomial_heap_base_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2688, "date": "May 8 2019"}, {"filename": "debug_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binomial_heap_base_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3468, "date": "May 8 2019"}, {"filename": "erase_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binomial_heap_base_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4482, "date": "May 8 2019"}, {"filename": "find_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binomial_heap_base_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2345, "date": "May 8 2019"}, {"filename": "insert_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binomial_heap_base_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5271, "date": "May 8 2019"}, {"filename": "split_join_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/binomial_heap_base_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5365, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_", "flags": "drwxr-xr-x", "links": 25, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "bin_search_tree_.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 12419, "date": "May 8 2019"}, {"filename": "constructors_destructor_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5507, "date": "May 8 2019"}, {"filename": "debug_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8071, "date": "May 8 2019"}, {"filename": "erase_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2919, "date": "May 8 2019"}, {"filename": "find_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4679, "date": "May 8 2019"}, {"filename": "info_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2080, "date": "May 8 2019"}, {"filename": "insert_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5481, "date": "May 8 2019"}, {"filename": "iterators_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3515, "date": "May 8 2019"}, {"filename": "node_iterators.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5997, "date": "May 8 2019"}, {"filename": "point_iterators.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8961, "date": "May 8 2019"}, {"filename": "policy_access_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1905, "date": "May 8 2019"}, {"filename": "r_erase_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2909, "date": "May 8 2019"}, {"filename": "rotate_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4190, "date": "May 8 2019"}, {"filename": "split_join_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4007, "date": "May 8 2019"}, {"filename": "traits.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6378, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/include/c++/7/ext/pb_ds/detail/branch_policy", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/c++/7/ext/pb_ds/detail/branch_policy", "flags": "drwxr-xr-x", "links": 25, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "branch_policy.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/branch_policy", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4031, "date": "May 8 2019"}, {"filename": "null_node_metadata.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/branch_policy", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2379, "date": "May 8 2019"}, {"filename": "traits.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/branch_policy", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3254, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_", "flags": "drwxr-xr-x", "links": 25, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "cc_ht_map_.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 19953, "date": "May 8 2019"}, {"filename": "cmp_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2765, "date": "May 8 2019"}, {"filename": "cond_key_dtor_entry_dealtor.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2874, "date": "May 8 2019"}, {"filename": "constructor_destructor_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5791, "date": "May 8 2019"}, {"filename": "constructor_destructor_no_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2226, "date": "May 8 2019"}, {"filename": "constructor_destructor_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2306, "date": "May 8 2019"}, {"filename": "debug_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2693, "date": "May 8 2019"}, {"filename": "debug_no_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2000, "date": "May 8 2019"}, {"filename": "debug_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2148, "date": "May 8 2019"}, {"filename": "entry_list_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2954, "date": "May 8 2019"}, {"filename": "erase_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3245, "date": "May 8 2019"}, {"filename": "erase_no_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3264, "date": "May 8 2019"}, {"filename": "erase_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3225, "date": "May 8 2019"}, {"filename": "find_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2485, "date": "May 8 2019"}, {"filename": "find_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1779, "date": "May 8 2019"}, {"filename": "info_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3111, "date": "May 8 2019"}, {"filename": "insert_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1896, "date": "May 8 2019"}, {"filename": "insert_no_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2618, "date": "May 8 2019"}, {"filename": "insert_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2674, "date": "May 8 2019"}, {"filename": "iterators_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2664, "date": "May 8 2019"}, {"filename": "policy_access_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2481, "date": "May 8 2019"}, {"filename": "resize_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4062, "date": "May 8 2019"}, {"filename": "resize_no_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2242, "date": "May 8 2019"}, {"filename": "resize_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2274, "date": "May 8 2019"}, {"filename": "size_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2109, "date": "May 8 2019"}, {"filename": "trace_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2363, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/include/c++/7/ext/pb_ds/detail/eq_fn", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/c++/7/ext/pb_ds/detail/eq_fn", "flags": "drwxr-xr-x", "links": 25, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "eq_by_less.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/eq_fn", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2330, "date": "May 8 2019"}, {"filename": "hash_eq_fn.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/eq_fn", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3821, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_", "flags": "drwxr-xr-x", "links": 25, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "constructor_destructor_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6606, "date": "May 8 2019"}, {"filename": "constructor_destructor_no_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2202, "date": "May 8 2019"}, {"filename": "constructor_destructor_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2269, "date": "May 8 2019"}, {"filename": "debug_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2174, "date": "May 8 2019"}, {"filename": "debug_no_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2505, "date": "May 8 2019"}, {"filename": "debug_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2645, "date": "May 8 2019"}, {"filename": "erase_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3204, "date": "May 8 2019"}, {"filename": "erase_no_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2885, "date": "May 8 2019"}, {"filename": "erase_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2919, "date": "May 8 2019"}, {"filename": "find_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2478, "date": "May 8 2019"}, {"filename": "find_no_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1924, "date": "May 8 2019"}, {"filename": "find_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1780, "date": "May 8 2019"}, {"filename": "gp_ht_map_.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 20398, "date": "May 8 2019"}, {"filename": "info_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2108, "date": "May 8 2019"}, {"filename": "insert_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1896, "date": "May 8 2019"}, {"filename": "insert_no_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3777, "date": "May 8 2019"}, {"filename": "insert_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4085, "date": "May 8 2019"}, {"filename": "iterator_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2619, "date": "May 8 2019"}, {"filename": "policy_access_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2660, "date": "May 8 2019"}, {"filename": "resize_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4157, "date": "May 8 2019"}, {"filename": "resize_no_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2618, "date": "May 8 2019"}, {"filename": "resize_store_hash_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2651, "date": "May 8 2019"}, {"filename": "trace_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2424, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/include/c++/7/ext/pb_ds/detail/hash_fn", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/c++/7/ext/pb_ds/detail/hash_fn", "flags": "drwxr-xr-x", "links": 25, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "direct_mask_range_hashing_imp.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/hash_fn", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2104, "date": "May 8 2019"}, {"filename": "direct_mod_range_hashing_imp.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/hash_fn", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2094, "date": "May 8 2019"}, {"filename": "linear_probe_fn_imp.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/hash_fn", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1913, "date": "May 8 2019"}, {"filename": "mask_based_range_hashing.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/hash_fn", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3290, "date": "May 8 2019"}, {"filename": "mod_based_range_hashing.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/hash_fn", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2391, "date": "May 8 2019"}, {"filename": "probe_fn_base.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/hash_fn", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2009, "date": "May 8 2019"}, {"filename": "quadratic_probe_fn_imp.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/hash_fn", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1920, "date": "May 8 2019"}, {"filename": "ranged_hash_fn.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/hash_fn", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 10619, "date": "May 8 2019"}, {"filename": "ranged_probe_fn.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/hash_fn", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 10436, "date": "May 8 2019"}, {"filename": "sample_probe_fn.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/hash_fn", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2291, "date": "May 8 2019"}, {"filename": "sample_ranged_hash_fn.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/hash_fn", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2469, "date": "May 8 2019"}, {"filename": "sample_ranged_probe_fn.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/hash_fn", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2598, "date": "May 8 2019"}, {"filename": "sample_range_hashing.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/hash_fn", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2487, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_", "flags": "drwxr-xr-x", "links": 25, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "const_iterator.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4924, "date": "May 8 2019"}, {"filename": "constructors_destructor_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4055, "date": "May 8 2019"}, {"filename": "debug_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4075, "date": "May 8 2019"}, {"filename": "erase_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3959, "date": "May 8 2019"}, {"filename": "info_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2106, "date": "May 8 2019"}, {"filename": "insert_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5201, "date": "May 8 2019"}, {"filename": "iterators_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2555, "date": "May 8 2019"}, {"filename": "left_child_next_sibling_heap_.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8175, "date": "May 8 2019"}, {"filename": "node.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3212, "date": "May 8 2019"}, {"filename": "point_const_iterator.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4496, "date": "May 8 2019"}, {"filename": "policy_access_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1927, "date": "May 8 2019"}, {"filename": "trace_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2815, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/include/c++/7/ext/pb_ds/detail/list_update_map_", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/c++/7/ext/pb_ds/detail/list_update_map_", "flags": "drwxr-xr-x", "links": 25, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "constructor_destructor_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/list_update_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3584, "date": "May 8 2019"}, {"filename": "debug_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/list_update_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2095, "date": "May 8 2019"}, {"filename": "entry_metadata_base.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/list_update_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2117, "date": "May 8 2019"}, {"filename": "erase_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/list_update_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3482, "date": "May 8 2019"}, {"filename": "find_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/list_update_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2861, "date": "May 8 2019"}, {"filename": "info_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/list_update_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2074, "date": "May 8 2019"}, {"filename": "insert_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/list_update_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3510, "date": "May 8 2019"}, {"filename": "iterators_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/list_update_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2520, "date": "May 8 2019"}, {"filename": "lu_map_.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/list_update_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 10393, "date": "May 8 2019"}, {"filename": "trace_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/list_update_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2028, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/include/c++/7/ext/pb_ds/detail/list_update_policy", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/c++/7/ext/pb_ds/detail/list_update_policy", "flags": "drwxr-xr-x", "links": 25, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "lu_counter_metadata.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/list_update_policy", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2850, "date": "May 8 2019"}, {"filename": "sample_update_policy.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/list_update_policy", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2672, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/include/c++/7/ext/pb_ds/detail/ov_tree_map_", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/c++/7/ext/pb_ds/detail/ov_tree_map_", "flags": "drwxr-xr-x", "links": 25, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "constructors_destructor_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/ov_tree_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6869, "date": "May 8 2019"}, {"filename": "debug_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/ov_tree_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2818, "date": "May 8 2019"}, {"filename": "erase_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/ov_tree_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4981, "date": "May 8 2019"}, {"filename": "info_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/ov_tree_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2084, "date": "May 8 2019"}, {"filename": "insert_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/ov_tree_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2273, "date": "May 8 2019"}, {"filename": "iterators_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/ov_tree_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3361, "date": "May 8 2019"}, {"filename": "node_iterators.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/ov_tree_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8811, "date": "May 8 2019"}, {"filename": "ov_tree_map_.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/ov_tree_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 15366, "date": "May 8 2019"}, {"filename": "policy_access_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/ov_tree_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1887, "date": "May 8 2019"}, {"filename": "split_join_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/ov_tree_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3774, "date": "May 8 2019"}, {"filename": "traits.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/ov_tree_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4562, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pairing_heap_", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pairing_heap_", "flags": "drwxr-xr-x", "links": 25, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "constructors_destructor_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pairing_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2506, "date": "May 8 2019"}, {"filename": "debug_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pairing_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1996, "date": "May 8 2019"}, {"filename": "erase_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pairing_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7191, "date": "May 8 2019"}, {"filename": "find_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pairing_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1937, "date": "May 8 2019"}, {"filename": "insert_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pairing_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2947, "date": "May 8 2019"}, {"filename": "pairing_heap_.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pairing_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5517, "date": "May 8 2019"}, {"filename": "split_join_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pairing_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3706, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pat_trie_", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pat_trie_", "flags": "drwxr-xr-x", "links": 25, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "constructors_destructor_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pat_trie_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5712, "date": "May 8 2019"}, {"filename": "debug_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pat_trie_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3791, "date": "May 8 2019"}, {"filename": "erase_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pat_trie_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7945, "date": "May 8 2019"}, {"filename": "find_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pat_trie_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7875, "date": "May 8 2019"}, {"filename": "info_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pat_trie_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2056, "date": "May 8 2019"}, {"filename": "insert_join_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pat_trie_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 14475, "date": "May 8 2019"}, {"filename": "iterators_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pat_trie_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3480, "date": "May 8 2019"}, {"filename": "pat_trie_base.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pat_trie_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 37633, "date": "May 8 2019"}, {"filename": "pat_trie_.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pat_trie_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 16869, "date": "May 8 2019"}, {"filename": "policy_access_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pat_trie_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2215, "date": "May 8 2019"}, {"filename": "r_erase_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pat_trie_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2920, "date": "May 8 2019"}, {"filename": "rotate_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pat_trie_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4330, "date": "May 8 2019"}, {"filename": "split_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pat_trie_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7725, "date": "May 8 2019"}, {"filename": "synth_access_traits.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pat_trie_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6718, "date": "May 8 2019"}, {"filename": "trace_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pat_trie_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3401, "date": "May 8 2019"}, {"filename": "traits.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pat_trie_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6305, "date": "May 8 2019"}, {"filename": "update_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/pat_trie_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2042, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/include/c++/7/ext/pb_ds/detail/rb_tree_map_", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/c++/7/ext/pb_ds/detail/rb_tree_map_", "flags": "drwxr-xr-x", "links": 25, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "constructors_destructor_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/rb_tree_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2783, "date": "May 8 2019"}, {"filename": "debug_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/rb_tree_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2761, "date": "May 8 2019"}, {"filename": "erase_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/rb_tree_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7051, "date": "May 8 2019"}, {"filename": "find_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/rb_tree_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1703, "date": "May 8 2019"}, {"filename": "info_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/rb_tree_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1841, "date": "May 8 2019"}, {"filename": "insert_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/rb_tree_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3867, "date": "May 8 2019"}, {"filename": "node.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/rb_tree_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3870, "date": "May 8 2019"}, {"filename": "rb_tree_.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/rb_tree_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7962, "date": "May 8 2019"}, {"filename": "split_join_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/rb_tree_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7861, "date": "May 8 2019"}, {"filename": "traits.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/rb_tree_map_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3283, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/include/c++/7/ext/pb_ds/detail/rc_binomial_heap_", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/c++/7/ext/pb_ds/detail/rc_binomial_heap_", "flags": "drwxr-xr-x", "links": 25, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "constructors_destructor_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/rc_binomial_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2467, "date": "May 8 2019"}, {"filename": "debug_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/rc_binomial_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3538, "date": "May 8 2019"}, {"filename": "erase_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/rc_binomial_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2889, "date": "May 8 2019"}, {"filename": "insert_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/rc_binomial_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4237, "date": "May 8 2019"}, {"filename": "rc_binomial_heap_.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/rc_binomial_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5303, "date": "May 8 2019"}, {"filename": "rc.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/rc_binomial_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6265, "date": "May 8 2019"}, {"filename": "split_join_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/rc_binomial_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2418, "date": "May 8 2019"}, {"filename": "trace_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/rc_binomial_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1904, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/include/c++/7/ext/pb_ds/detail/resize_policy", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/c++/7/ext/pb_ds/detail/resize_policy", "flags": "drwxr-xr-x", "links": 25, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "cc_hash_max_collision_check_resize_trigger_imp.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/resize_policy", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4899, "date": "May 8 2019"}, {"filename": "hash_exponential_size_policy_imp.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/resize_policy", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2772, "date": "May 8 2019"}, {"filename": "hash_load_check_resize_trigger_imp.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/resize_policy", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7752, "date": "May 8 2019"}, {"filename": "hash_load_check_resize_trigger_size_base.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/resize_policy", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2970, "date": "May 8 2019"}, {"filename": "hash_prime_size_policy_imp.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/resize_policy", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6139, "date": "May 8 2019"}, {"filename": "hash_standard_resize_policy_imp.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/resize_policy", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6283, "date": "May 8 2019"}, {"filename": "sample_resize_policy.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/resize_policy", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3578, "date": "May 8 2019"}, {"filename": "sample_resize_trigger.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/resize_policy", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3914, "date": "May 8 2019"}, {"filename": "sample_size_policy.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/resize_policy", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2427, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/include/c++/7/ext/pb_ds/detail/splay_tree_", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/c++/7/ext/pb_ds/detail/splay_tree_", "flags": "drwxr-xr-x", "links": 25, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "constructors_destructor_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/splay_tree_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2847, "date": "May 8 2019"}, {"filename": "debug_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/splay_tree_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2463, "date": "May 8 2019"}, {"filename": "erase_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/splay_tree_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4269, "date": "May 8 2019"}, {"filename": "find_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/splay_tree_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3319, "date": "May 8 2019"}, {"filename": "info_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/splay_tree_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1689, "date": "May 8 2019"}, {"filename": "insert_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/splay_tree_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3353, "date": "May 8 2019"}, {"filename": "node.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/splay_tree_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3744, "date": "May 8 2019"}, {"filename": "splay_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/splay_tree_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8049, "date": "May 8 2019"}, {"filename": "splay_tree_.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/splay_tree_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9307, "date": "May 8 2019"}, {"filename": "split_join_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/splay_tree_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3634, "date": "May 8 2019"}, {"filename": "traits.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/splay_tree_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3351, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/include/c++/7/ext/pb_ds/detail/thin_heap_", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/c++/7/ext/pb_ds/detail/thin_heap_", "flags": "drwxr-xr-x", "links": 25, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "constructors_destructor_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/thin_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2946, "date": "May 8 2019"}, {"filename": "debug_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/thin_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3866, "date": "May 8 2019"}, {"filename": "erase_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/thin_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6055, "date": "May 8 2019"}, {"filename": "find_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/thin_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1952, "date": "May 8 2019"}, {"filename": "insert_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/thin_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7483, "date": "May 8 2019"}, {"filename": "split_join_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/thin_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3155, "date": "May 8 2019"}, {"filename": "thin_heap_.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/thin_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8404, "date": "May 8 2019"}, {"filename": "trace_fn_imps.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/thin_heap_", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1962, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/include/c++/7/ext/pb_ds/detail/tree_policy", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/c++/7/ext/pb_ds/detail/tree_policy", "flags": "drwxr-xr-x", "links": 25, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "node_metadata_selector.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/tree_policy", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3338, "date": "May 8 2019"}, {"filename": "order_statistics_imp.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/tree_policy", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3723, "date": "May 8 2019"}, {"filename": "sample_tree_node_update.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/tree_policy", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2346, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/include/c++/7/ext/pb_ds/detail/trie_policy", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/c++/7/ext/pb_ds/detail/trie_policy", "flags": "drwxr-xr-x", "links": 25, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "node_metadata_selector.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/trie_policy", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3338, "date": "May 8 2019"}, {"filename": "order_statistics_imp.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/trie_policy", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4701, "date": "May 8 2019"}, {"filename": "prefix_search_node_update_imp.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/trie_policy", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4511, "date": "May 8 2019"}, {"filename": "sample_trie_access_traits.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/trie_policy", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2713, "date": "May 8 2019"}, {"filename": "sample_trie_node_update.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/trie_policy", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2348, "date": "May 8 2019"}, {"filename": "trie_policy_base.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/trie_policy", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5847, "date": "May 8 2019"}, {"filename": "trie_string_access_traits_imp.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/trie_policy", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3051, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/include/c++/7/ext/pb_ds/detail/unordered_iterator", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/c++/7/ext/pb_ds/detail/unordered_iterator", "flags": "drwxr-xr-x", "links": 25, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "const_iterator.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/unordered_iterator", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3345, "date": "May 8 2019"}, {"filename": "iterator.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/unordered_iterator", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3797, "date": "May 8 2019"}, {"filename": "point_const_iterator.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/unordered_iterator", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3806, "date": "May 8 2019"}, {"filename": "point_iterator.hpp", "parent": "/usr/include/c++/7/ext/pb_ds/detail/unordered_iterator", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3574, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/include/c++/7/parallel", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/c++/7/parallel", "flags": "drwxr-xr-x", "links": 12, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "algobase.h", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 17155, "date": "May 8 2019"}, {"filename": "algo.h", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 80030, "date": "May 8 2019"}, {"filename": "algorithm", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1381, "date": "May 8 2019"}, {"filename": "algorithmfwd.h", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 32206, "date": "May 8 2019"}, {"filename": "balanced_quicksort.h", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 16952, "date": "May 8 2019"}, {"filename": "base.h", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 12373, "date": "May 8 2019"}, {"filename": "basic_iterator.h", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1586, "date": "May 8 2019"}, {"filename": "checkers.h", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2300, "date": "May 8 2019"}, {"filename": "compatibility.h", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3790, "date": "May 8 2019"}, {"filename": "compiletime_settings.h", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2871, "date": "May 8 2019"}, {"filename": "equally_split.h", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3356, "date": "May 8 2019"}, {"filename": "features.h", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3543, "date": "May 8 2019"}, {"filename": "find.h", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 13591, "date": "May 8 2019"}, {"filename": "find_selectors.h", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6992, "date": "May 8 2019"}, {"filename": "for_each.h", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3947, "date": "May 8 2019"}, {"filename": "for_each_selectors.h", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 10565, "date": "May 8 2019"}, {"filename": "iterator.h", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5678, "date": "May 8 2019"}, {"filename": "list_partition.h", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6542, "date": "May 8 2019"}, {"filename": "losertree.h", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 28592, "date": "May 8 2019"}, {"filename": "merge.h", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9578, "date": "May 8 2019"}, {"filename": "multiseq_selection.h", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 22075, "date": "May 8 2019"}, {"filename": "multiway_merge.h", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 70535, "date": "May 8 2019"}, {"filename": "multiway_mergesort.h", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 15271, "date": "May 8 2019"}, {"filename": "numeric", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 20717, "date": "May 8 2019"}, {"filename": "numericfwd.h", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7500, "date": "May 8 2019"}, {"filename": "omp_loop.h", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4031, "date": "May 8 2019"}, {"filename": "omp_loop_static.h", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4104, "date": "May 8 2019"}, {"filename": "parallel.h", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1576, "date": "May 8 2019"}, {"filename": "par_loop.h", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4552, "date": "May 8 2019"}, {"filename": "partial_sum.h", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7474, "date": "May 8 2019"}, {"filename": "partition.h", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 14961, "date": "May 8 2019"}, {"filename": "queue.h", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5542, "date": "May 8 2019"}, {"filename": "quicksort.h", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6126, "date": "May 8 2019"}, {"filename": "random_number.h", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4227, "date": "May 8 2019"}, {"filename": "random_shuffle.h", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 18675, "date": "May 8 2019"}, {"filename": "search.h", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5391, "date": "May 8 2019"}, {"filename": "set_operations.h", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 14590, "date": "May 8 2019"}, {"filename": "settings.h", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 12458, "date": "May 8 2019"}, {"filename": "sort.h", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7709, "date": "May 8 2019"}, {"filename": "tags.h", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5982, "date": "May 8 2019"}, {"filename": "types.h", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3716, "date": "May 8 2019"}, {"filename": "unique_copy.h", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6165, "date": "May 8 2019"}, {"filename": "workstealing.h", "parent": "/usr/include/c++/7/parallel", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9612, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/include/c++/7/profile", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/c++/7/profile", "flags": "drwxr-xr-x", "links": 12, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "array", "parent": "/usr/include/c++/7/profile", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8796, "date": "May 8 2019"}, {"filename": "base.h", "parent": "/usr/include/c++/7/profile", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1709, "date": "May 8 2019"}, {"filename": "bitset", "parent": "/usr/include/c++/7/profile", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6607, "date": "May 8 2019"}, {"filename": "deque", "parent": "/usr/include/c++/7/profile", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5273, "date": "May 8 2019"}, {"filename": "forward_list", "parent": "/usr/include/c++/7/profile", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6390, "date": "May 8 2019"}, {"filename": "impl", "parent": "/usr/include/c++/7/profile", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "iterator_tracker.h", "parent": "/usr/include/c++/7/profile", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9554, "date": "May 8 2019"}, {"filename": "list", "parent": "/usr/include/c++/7/profile", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 16862, "date": "May 8 2019"}, {"filename": "map", "parent": "/usr/include/c++/7/profile", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1246, "date": "May 8 2019"}, {"filename": "map.h", "parent": "/usr/include/c++/7/profile", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 20100, "date": "May 8 2019"}, {"filename": "multimap.h", "parent": "/usr/include/c++/7/profile", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 19334, "date": "May 8 2019"}, {"filename": "multiset.h", "parent": "/usr/include/c++/7/profile", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 18913, "date": "May 8 2019"}, {"filename": "ordered_base.h", "parent": "/usr/include/c++/7/profile", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2776, "date": "May 8 2019"}, {"filename": "set", "parent": "/usr/include/c++/7/profile", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1246, "date": "May 8 2019"}, {"filename": "set.h", "parent": "/usr/include/c++/7/profile", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 18121, "date": "May 8 2019"}, {"filename": "unordered_base.h", "parent": "/usr/include/c++/7/profile", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9116, "date": "May 8 2019"}, {"filename": "unordered_map", "parent": "/usr/include/c++/7/profile", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 17544, "date": "May 8 2019"}, {"filename": "unordered_set", "parent": "/usr/include/c++/7/profile", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 16291, "date": "May 8 2019"}, {"filename": "vector", "parent": "/usr/include/c++/7/profile", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 15882, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/include/c++/7/profile/impl", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/c++/7/profile/impl", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "profiler_algos.h", "parent": "/usr/include/c++/7/profile/impl", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3429, "date": "May 8 2019"}, {"filename": "profiler_container_size.h", "parent": "/usr/include/c++/7/profile/impl", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5403, "date": "May 8 2019"}, {"filename": "profiler.h", "parent": "/usr/include/c++/7/profile/impl", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 13924, "date": "May 8 2019"}, {"filename": "profiler_hash_func.h", "parent": "/usr/include/c++/7/profile/impl", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4412, "date": "May 8 2019"}, {"filename": "profiler_hashtable_size.h", "parent": "/usr/include/c++/7/profile/impl", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2982, "date": "May 8 2019"}, {"filename": "profiler_list_to_slist.h", "parent": "/usr/include/c++/7/profile/impl", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4438, "date": "May 8 2019"}, {"filename": "profiler_list_to_vector.h", "parent": "/usr/include/c++/7/profile/impl", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6843, "date": "May 8 2019"}, {"filename": "profiler_map_to_unordered_map.h", "parent": "/usr/include/c++/7/profile/impl", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7081, "date": "May 8 2019"}, {"filename": "profiler_node.h", "parent": "/usr/include/c++/7/profile/impl", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3801, "date": "May 8 2019"}, {"filename": "profiler_state.h", "parent": "/usr/include/c++/7/profile/impl", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2004, "date": "May 8 2019"}, {"filename": "profiler_trace.h", "parent": "/usr/include/c++/7/profile/impl", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 20875, "date": "May 8 2019"}, {"filename": "profiler_vector_size.h", "parent": "/usr/include/c++/7/profile/impl", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2928, "date": "May 8 2019"}, {"filename": "profiler_vector_to_list.h", "parent": "/usr/include/c++/7/profile/impl", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6877, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/include/c++/7/tr1", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/c++/7/tr1", "flags": "drwxr-xr-x", "links": 12, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "array", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6964, "date": "May 8 2019"}, {"filename": "bessel_function.tcc", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 22477, "date": "May 8 2019"}, {"filename": "beta_function.tcc", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5999, "date": "May 8 2019"}, {"filename": "ccomplex", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1255, "date": "May 8 2019"}, {"filename": "cctype", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1412, "date": "May 8 2019"}, {"filename": "cfenv", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2004, "date": "May 8 2019"}, {"filename": "cfloat", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1380, "date": "May 8 2019"}, {"filename": "cinttypes", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2256, "date": "May 8 2019"}, {"filename": "climits", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1454, "date": "May 8 2019"}, {"filename": "cmath", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 43357, "date": "May 8 2019"}, {"filename": "complex", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 12384, "date": "May 8 2019"}, {"filename": "complex.h", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1261, "date": "May 8 2019"}, {"filename": "cstdarg", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1246, "date": "May 8 2019"}, {"filename": "cstdbool", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1344, "date": "May 8 2019"}, {"filename": "cstdint", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2623, "date": "May 8 2019"}, {"filename": "cstdio", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1482, "date": "May 8 2019"}, {"filename": "cstdlib", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1796, "date": "May 8 2019"}, {"filename": "ctgmath", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1248, "date": "May 8 2019"}, {"filename": "ctime", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1234, "date": "May 8 2019"}, {"filename": "ctype.h", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1209, "date": "May 8 2019"}, {"filename": "cwchar", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1718, "date": "May 8 2019"}, {"filename": "cwctype", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1459, "date": "May 8 2019"}, {"filename": "ell_integral.tcc", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 27728, "date": "May 8 2019"}, {"filename": "exp_integral.tcc", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 16013, "date": "May 8 2019"}, {"filename": "fenv.h", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1204, "date": "May 8 2019"}, {"filename": "float.h", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1209, "date": "May 8 2019"}, {"filename": "functional", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 70799, "date": "May 8 2019"}, {"filename": "functional_hash.h", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6043, "date": "May 8 2019"}, {"filename": "gamma.tcc", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 14686, "date": "May 8 2019"}, {"filename": "hashtable.h", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 41537, "date": "May 8 2019"}, {"filename": "hashtable_policy.h", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 25085, "date": "May 8 2019"}, {"filename": "hypergeometric.tcc", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 28070, "date": "May 8 2019"}, {"filename": "inttypes.h", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1267, "date": "May 8 2019"}, {"filename": "legendre_function.tcc", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 10913, "date": "May 8 2019"}, {"filename": "limits.h", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1214, "date": "May 8 2019"}, {"filename": "math.h", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4553, "date": "May 8 2019"}, {"filename": "memory", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1791, "date": "May 8 2019"}, {"filename": "modified_bessel_func.tcc", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 15926, "date": "May 8 2019"}, {"filename": "poly_hermite.tcc", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3929, "date": "May 8 2019"}, {"filename": "poly_laguerre.tcc", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 11680, "date": "May 8 2019"}, {"filename": "random", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1589, "date": "May 8 2019"}, {"filename": "random.h", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 73193, "date": "May 8 2019"}, {"filename": "random.tcc", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 53996, "date": "May 8 2019"}, {"filename": "regex", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 92945, "date": "May 8 2019"}, {"filename": "riemann_zeta.tcc", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 14067, "date": "May 8 2019"}, {"filename": "shared_ptr.h", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 32608, "date": "May 8 2019"}, {"filename": "special_function_util.h", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5059, "date": "May 8 2019"}, {"filename": "stdarg.h", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1214, "date": "May 8 2019"}, {"filename": "stdbool.h", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1219, "date": "May 8 2019"}, {"filename": "stdint.h", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1214, "date": "May 8 2019"}, {"filename": "stdio.h", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1209, "date": "May 8 2019"}, {"filename": "stdlib.h", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1487, "date": "May 8 2019"}, {"filename": "tgmath.h", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1255, "date": "May 8 2019"}, {"filename": "tuple", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 12119, "date": "May 8 2019"}, {"filename": "type_traits", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 19019, "date": "May 8 2019"}, {"filename": "unordered_map", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1574, "date": "May 8 2019"}, {"filename": "unordered_map.h", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 10216, "date": "May 8 2019"}, {"filename": "unordered_set", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1574, "date": "May 8 2019"}, {"filename": "unordered_set.h", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9540, "date": "May 8 2019"}, {"filename": "utility", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3225, "date": "May 8 2019"}, {"filename": "wchar.h", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1249, "date": "May 8 2019"}, {"filename": "wctype.h", "parent": "/usr/include/c++/7/tr1", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1255, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/include/c++/7/tr2", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/c++/7/tr2", "flags": "drwxr-xr-x", "links": 12, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "bool_set", "parent": "/usr/include/c++/7/tr2", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7370, "date": "May 8 2019"}, {"filename": "bool_set.tcc", "parent": "/usr/include/c++/7/tr2", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8319, "date": "May 8 2019"}, {"filename": "dynamic_bitset", "parent": "/usr/include/c++/7/tr2", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 34144, "date": "May 8 2019"}, {"filename": "dynamic_bitset.tcc", "parent": "/usr/include/c++/7/tr2", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8925, "date": "May 8 2019"}, {"filename": "ratio", "parent": "/usr/include/c++/7/tr2", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2130, "date": "May 8 2019"}, {"filename": "type_traits", "parent": "/usr/include/c++/7/tr2", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2699, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/include/drm", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "..", "parent": "/usr/include/drm", "flags": "drwxr-xr-x", "links": 34, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "amdgpu_drm.h", "parent": "/usr/include/drm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 26729, "date": "Jan 17 13:59"}, {"filename": "armada_drm.h", "parent": "/usr/include/drm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1212, "date": "Jan 17 13:59"}, {"filename": "drm_fourcc.h", "parent": "/usr/include/drm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 18067, "date": "Jan 17 13:59"}, {"filename": "drm.h", "parent": "/usr/include/drm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 30656, "date": "Jan 17 13:59"}, {"filename": "drm_mode.h", "parent": "/usr/include/drm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 22905, "date": "Jan 17 13:59"}, {"filename": "drm_sarea.h", "parent": "/usr/include/drm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2782, "date": "Jan 17 13:59"}, {"filename": "etnaviv_drm.h", "parent": "/usr/include/drm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 11005, "date": "Jan 17 13:59"}, {"filename": "exynos_drm.h", "parent": "/usr/include/drm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8954, "date": "Jan 17 13:59"}, {"filename": "i810_drm.h", "parent": "/usr/include/drm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 10061, "date": "Jan 17 13:59"}, {"filename": "i915_drm.h", "parent": "/usr/include/drm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 50833, "date": "Jan 17 13:59"}, {"filename": "mga_drm.h", "parent": "/usr/include/drm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 13010, "date": "Jan 17 13:59"}, {"filename": "msm_drm.h", "parent": "/usr/include/drm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 11997, "date": "Jan 17 13:59"}, {"filename": "nouveau_drm.h", "parent": "/usr/include/drm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4847, "date": "Jan 17 13:59"}, {"filename": "omap_drm.h", "parent": "/usr/include/drm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4141, "date": "Jan 17 13:59"}, {"filename": "qxl_drm.h", "parent": "/usr/include/drm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4131, "date": "Jan 17 13:59"}, {"filename": "r128_drm.h", "parent": "/usr/include/drm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 10000, "date": "Jan 17 13:59"}, {"filename": "radeon_drm.h", "parent": "/usr/include/drm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 38236, "date": "Jan 17 13:59"}, {"filename": "savage_drm.h", "parent": "/usr/include/drm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7170, "date": "Jan 17 13:59"}, {"filename": "sis_drm.h", "parent": "/usr/include/drm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2637, "date": "Jan 17 13:59"}, {"filename": "tegra_drm.h", "parent": "/usr/include/drm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5597, "date": "Jan 17 13:59"}, {"filename": "vc4_drm.h", "parent": "/usr/include/drm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 11472, "date": "Jan 17 13:59"}, {"filename": "vgem_drm.h", "parent": "/usr/include/drm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1971, "date": "Jan 17 13:59"}, {"filename": "via_drm.h", "parent": "/usr/include/drm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8345, "date": "Jan 17 13:59"}, {"filename": "virtgpu_drm.h", "parent": "/usr/include/drm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4777, "date": "Jan 17 13:59"}, {"filename": "vmwgfx_drm.h", "parent": "/usr/include/drm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 32084, "date": "Jan 17 13:59"}, {"filename": ".", "parent": "/usr/include/linux", "flags": "drwxr-xr-x", "links": 28, "owner": "root", "group": "root", "size": 69632, "date": "Feb 5 06:03"}, {"filename": "..", "parent": "/usr/include/linux", "flags": "drwxr-xr-x", "links": 34, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "acct.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3733, "date": "Jan 17 13:59"}, {"filename": "adb.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1140, "date": "Jan 17 13:59"}, {"filename": "adfs_fs.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 936, "date": "Jan 17 13:59"}, {"filename": "affs_hardblocks.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1544, "date": "Jan 17 13:59"}, {"filename": "agpgart.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3940, "date": "Jan 17 13:59"}, {"filename": "aio_abi.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3276, "date": "Jan 17 13:59"}, {"filename": "am437x-vpfe.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3681, "date": "Jan 17 13:59"}, {"filename": "android", "parent": "/usr/include/linux", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "a.out.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6892, "date": "Jan 17 13:59"}, {"filename": "apm_bios.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3683, "date": "Jan 17 13:59"}, {"filename": "arcfb.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 213, "date": "Jan 17 13:59"}, {"filename": "arm_sdei.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2751, "date": "Jan 17 13:59"}, {"filename": "aspeed-lpc-ctrl.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1780, "date": "Jan 17 13:59"}, {"filename": "atalk.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1023, "date": "Jan 17 13:59"}, {"filename": "atmapi.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 952, "date": "Jan 17 13:59"}, {"filename": "atmarp.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1296, "date": "Jan 17 13:59"}, {"filename": "atmbr2684.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3271, "date": "Jan 17 13:59"}, {"filename": "atmclip.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 576, "date": "Jan 17 13:59"}, {"filename": "atmdev.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7677, "date": "Jan 17 13:59"}, {"filename": "atm_eni.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 648, "date": "Jan 17 13:59"}, {"filename": "atm.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7888, "date": "Jan 17 13:59"}, {"filename": "atm_he.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 406, "date": "Jan 17 13:59"}, {"filename": "atm_idt77105.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 955, "date": "Jan 17 13:59"}, {"filename": "atmioc.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1646, "date": "Jan 17 13:59"}, {"filename": "atmlec.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2381, "date": "Jan 17 13:59"}, {"filename": "atmmpc.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4226, "date": "Jan 17 13:59"}, {"filename": "atm_nicstar.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1278, "date": "Jan 17 13:59"}, {"filename": "atmppp.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 639, "date": "Jan 17 13:59"}, {"filename": "atmsap.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4970, "date": "Jan 17 13:59"}, {"filename": "atmsvc.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1853, "date": "Jan 17 13:59"}, {"filename": "atm_tcp.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1622, "date": "Jan 17 13:59"}, {"filename": "atm_zatm.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1540, "date": "Jan 17 13:59"}, {"filename": "audit.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 19552, "date": "Jan 17 13:59"}, {"filename": "aufs_type.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 11370, "date": "Jan 17 13:59"}, {"filename": "auto_dev-ioctl.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4986, "date": "Jan 17 13:59"}, {"filename": "auto_fs4.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4275, "date": "Jan 17 13:59"}, {"filename": "auto_fs.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2658, "date": "Jan 17 13:59"}, {"filename": "auxvec.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1496, "date": "Jan 17 13:59"}, {"filename": "ax25.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2824, "date": "Jan 17 13:59"}, {"filename": "b1lli.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1717, "date": "Jan 17 13:59"}, {"filename": "batman_adv.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9447, "date": "Jan 17 13:59"}, {"filename": "baycom.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 883, "date": "Jan 17 13:59"}, {"filename": "bcache.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8366, "date": "Jan 17 13:59"}, {"filename": "bcm933xx_hcs.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 419, "date": "Jan 17 13:59"}, {"filename": "bfs_fs.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1893, "date": "Jan 17 13:59"}, {"filename": "binfmts.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 628, "date": "Jan 17 13:59"}, {"filename": "blkpg.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1634, "date": "Jan 17 13:59"}, {"filename": "blktrace_api.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4702, "date": "Jan 17 13:59"}, {"filename": "blkzoned.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5168, "date": "Jan 17 13:59"}, {"filename": "bpf_common.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1293, "date": "Jan 17 13:59"}, {"filename": "bpf.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 31050, "date": "Jan 17 13:59"}, {"filename": "bpf_perf_event.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 516, "date": "Jan 17 13:59"}, {"filename": "bpqether.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 981, "date": "Jan 17 13:59"}, {"filename": "bsg.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2494, "date": "Jan 17 13:59"}, {"filename": "bt-bmc.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 572, "date": "Jan 17 13:59"}, {"filename": "btrfs.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 26368, "date": "Jan 17 13:59"}, {"filename": "btrfs_tree.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 25233, "date": "Jan 17 13:59"}, {"filename": "byteorder", "parent": "/usr/include/linux", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "caif", "parent": "/usr/include/linux", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "can", "parent": "/usr/include/linux", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "can.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7881, "date": "Jan 17 13:59"}, {"filename": "capability.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 11780, "date": "Jan 17 13:59"}, {"filename": "capi.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3124, "date": "Jan 17 13:59"}, {"filename": "cciss_defs.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3281, "date": "Jan 17 13:59"}, {"filename": "cciss_ioctl.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2761, "date": "Jan 17 13:59"}, {"filename": "cdrom.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 28859, "date": "Jan 17 13:59"}, {"filename": "cec-funcs.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 55019, "date": "Jan 17 13:59"}, {"filename": "cec.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 37654, "date": "Jan 17 13:59"}, {"filename": "cgroupstats.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2219, "date": "Jan 17 13:59"}, {"filename": "chio.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5344, "date": "Jan 17 13:59"}, {"filename": "cifs", "parent": "/usr/include/linux", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "cm4000_cs.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1806, "date": "Jan 17 13:59"}, {"filename": "cn_proc.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3334, "date": "Jan 17 13:59"}, {"filename": "coda.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 17505, "date": "Jan 17 13:59"}, {"filename": "coda_psdev.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 360, "date": "Jan 17 13:59"}, {"filename": "coff.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 12476, "date": "Jan 17 13:59"}, {"filename": "connector.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2253, "date": "Jan 17 13:59"}, {"filename": "const.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 736, "date": "Jan 17 13:59"}, {"filename": "coresight-stm.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 674, "date": "Jan 17 13:59"}, {"filename": "cramfs_fs.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3555, "date": "Jan 17 13:59"}, {"filename": "cryptouser.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3392, "date": "Jan 17 13:59"}, {"filename": "cuda.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 905, "date": "Jan 17 13:59"}, {"filename": "cyclades.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 17108, "date": "Jan 17 13:59"}, {"filename": "cycx_cfm.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2990, "date": "Jan 17 13:59"}, {"filename": "dcbnl.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 24954, "date": "Jan 17 13:59"}, {"filename": "dccp.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6436, "date": "Jan 17 13:59"}, {"filename": "devlink.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7324, "date": "Jan 17 13:59"}, {"filename": "dlmconstants.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5080, "date": "Jan 17 13:59"}, {"filename": "dlm_device.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2543, "date": "Jan 17 13:59"}, {"filename": "dlm.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2553, "date": "Jan 17 13:59"}, {"filename": "dlm_netlink.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1159, "date": "Jan 17 13:59"}, {"filename": "dlm_plock.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 894, "date": "Jan 17 13:59"}, {"filename": "dma-buf.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1358, "date": "Jan 17 13:59"}, {"filename": "dm-ioctl.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 10870, "date": "Jan 17 13:59"}, {"filename": "dm-log-userspace.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 15191, "date": "Jan 17 13:59"}, {"filename": "dn.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4642, "date": "Jan 17 13:59"}, {"filename": "dqblk_xfs.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8999, "date": "Jan 17 13:59"}, {"filename": "dvb", "parent": "/usr/include/linux", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "edd.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5604, "date": "Jan 17 13:59"}, {"filename": "efs_fs_sb.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2227, "date": "Jan 17 13:59"}, {"filename": "elfcore.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2995, "date": "Jan 17 13:59"}, {"filename": "elf-em.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2187, "date": "Jan 17 13:59"}, {"filename": "elf-fdpic.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1124, "date": "Jan 17 13:59"}, {"filename": "elf.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 13298, "date": "Jan 17 13:59"}, {"filename": "errno.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 23, "date": "Jan 17 13:59"}, {"filename": "errqueue.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1369, "date": "Jan 17 13:59"}, {"filename": "ethtool.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 71485, "date": "Jan 17 13:59"}, {"filename": "eventpoll.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2542, "date": "Jan 17 13:59"}, {"filename": "fadvise.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 842, "date": "Jan 17 13:59"}, {"filename": "falloc.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3584, "date": "Jan 17 13:59"}, {"filename": "fanotify.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3672, "date": "Jan 17 13:59"}, {"filename": "fb.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 16446, "date": "Jan 17 13:59"}, {"filename": "fcntl.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3297, "date": "Jan 17 13:59"}, {"filename": "fd.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 11672, "date": "Jan 17 13:59"}, {"filename": "fdreg.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5420, "date": "Jan 17 13:59"}, {"filename": "fib_rules.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1837, "date": "Jan 17 13:59"}, {"filename": "fiemap.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2775, "date": "Jan 17 13:59"}, {"filename": "filter.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2216, "date": "Jan 17 13:59"}, {"filename": "firewire-cdev.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 43886, "date": "Jan 17 13:59"}, {"filename": "firewire-constants.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3231, "date": "Jan 17 13:59"}, {"filename": "flat.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2148, "date": "Jan 17 13:59"}, {"filename": "fou.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 694, "date": "Jan 17 13:59"}, {"filename": "fs.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 14818, "date": "Jan 17 13:59"}, {"filename": "fsl_hypervisor.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7301, "date": "Jan 17 13:59"}, {"filename": "fsmap.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4393, "date": "Jan 17 13:59"}, {"filename": "fuse.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 17468, "date": "Jan 17 13:59"}, {"filename": "futex.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4993, "date": "Jan 17 13:59"}, {"filename": "gameport.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 897, "date": "Jan 17 13:59"}, {"filename": "genetlink.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1923, "date": "Jan 17 13:59"}, {"filename": "gen_stats.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1578, "date": "Jan 17 13:59"}, {"filename": "genwqe", "parent": "/usr/include/linux", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "gfs2_ondisk.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 12355, "date": "Jan 17 13:59"}, {"filename": "gigaset_dev.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1442, "date": "Jan 17 13:59"}, {"filename": "gpio.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5750, "date": "Jan 17 13:59"}, {"filename": "gsmmux.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1041, "date": "Jan 17 13:59"}, {"filename": "gtp.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 681, "date": "Jan 17 13:59"}, {"filename": "hash_info.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 921, "date": "Jan 17 13:59"}, {"filename": "hdlc", "parent": "/usr/include/linux", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "hdlcdrv.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2908, "date": "Jan 17 13:59"}, {"filename": "hdlc.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 637, "date": "Jan 17 13:59"}, {"filename": "hdreg.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 22703, "date": "Jan 17 13:59"}, {"filename": "hiddev.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6345, "date": "Jan 17 13:59"}, {"filename": "hid.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1901, "date": "Jan 17 13:59"}, {"filename": "hidraw.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1511, "date": "Jan 17 13:59"}, {"filename": "hpet.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 743, "date": "Jan 17 13:59"}, {"filename": "hsi", "parent": "/usr/include/linux", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "hsr_netlink.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1081, "date": "Jan 17 13:59"}, {"filename": "hw_breakpoint.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 742, "date": "Jan 17 13:59"}, {"filename": "hyperv.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 10569, "date": "Jan 17 13:59"}, {"filename": "hysdn_if.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1382, "date": "Jan 17 13:59"}, {"filename": "i2c-dev.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2612, "date": "Jan 17 13:59"}, {"filename": "i2c.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7132, "date": "Jan 17 13:59"}, {"filename": "i2o-dev.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 11555, "date": "Jan 17 13:59"}, {"filename": "i8k.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1528, "date": "Jan 17 13:59"}, {"filename": "icmp.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2975, "date": "Jan 17 13:59"}, {"filename": "icmpv6.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3977, "date": "Jan 17 13:59"}, {"filename": "if_addr.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1802, "date": "Jan 17 13:59"}, {"filename": "if_addrlabel.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 721, "date": "Jan 17 13:59"}, {"filename": "if_alg.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 946, "date": "Jan 17 13:59"}, {"filename": "if_arcnet.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3717, "date": "Jan 17 13:59"}, {"filename": "if_arp.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6577, "date": "Jan 17 13:59"}, {"filename": "if_bonding.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4268, "date": "Jan 17 13:59"}, {"filename": "if_bridge.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6709, "date": "Jan 17 13:59"}, {"filename": "if_cablemodem.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 986, "date": "Jan 17 13:59"}, {"filename": "ife.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 351, "date": "Jan 17 13:59"}, {"filename": "if_eql.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1349, "date": "Jan 17 13:59"}, {"filename": "if_ether.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7940, "date": "Jan 17 13:59"}, {"filename": "if_fc.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1738, "date": "Jan 17 13:59"}, {"filename": "if_fddi.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3748, "date": "Jan 17 13:59"}, {"filename": "if_frad.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3019, "date": "Jan 17 13:59"}, {"filename": "if.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 10813, "date": "Jan 17 13:59"}, {"filename": "if_hippi.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4235, "date": "Jan 17 13:59"}, {"filename": "if_infiniband.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1245, "date": "Jan 17 13:59"}, {"filename": "if_link.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 21954, "date": "Jan 17 13:59"}, {"filename": "if_ltalk.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 210, "date": "Jan 17 13:59"}, {"filename": "if_macsec.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5616, "date": "Jan 17 13:59"}, {"filename": "if_packet.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7919, "date": "Jan 17 13:59"}, {"filename": "if_phonet.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 424, "date": "Jan 17 13:59"}, {"filename": "if_plip.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 660, "date": "Jan 17 13:59"}, {"filename": "if_ppp.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 29, "date": "Jan 17 13:59"}, {"filename": "if_pppol2tp.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3292, "date": "Jan 17 13:59"}, {"filename": "if_pppox.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4879, "date": "Jan 17 13:59"}, {"filename": "if_slip.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 872, "date": "Jan 17 13:59"}, {"filename": "if_team.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2600, "date": "Jan 17 13:59"}, {"filename": "if_tun.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3969, "date": "Jan 17 13:59"}, {"filename": "if_tunnel.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4005, "date": "Jan 17 13:59"}, {"filename": "if_vlan.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1793, "date": "Jan 17 13:59"}, {"filename": "if_x25.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 881, "date": "Jan 17 13:59"}, {"filename": "igmp.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3014, "date": "Jan 17 13:59"}, {"filename": "iio", "parent": "/usr/include/linux", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "ila.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1230, "date": "Jan 17 13:59"}, {"filename": "in6.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7438, "date": "Jan 17 13:59"}, {"filename": "inet_diag.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4330, "date": "Jan 17 13:59"}, {"filename": "in.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9698, "date": "Jan 17 13:59"}, {"filename": "inotify.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2977, "date": "Jan 17 13:59"}, {"filename": "input-event-codes.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 24567, "date": "Jan 17 13:59"}, {"filename": "input.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 15454, "date": "Jan 17 13:59"}, {"filename": "in_route.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 936, "date": "Jan 17 13:59"}, {"filename": "ioctl.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 163, "date": "Jan 17 13:59"}, {"filename": "ip6_tunnel.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1953, "date": "Jan 17 13:59"}, {"filename": "ipc.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2101, "date": "Jan 17 13:59"}, {"filename": "ip.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4699, "date": "Jan 17 13:59"}, {"filename": "ipmi.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 16240, "date": "Jan 17 13:59"}, {"filename": "ipmi_msgdefs.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4541, "date": "Jan 17 13:59"}, {"filename": "ipsec.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 947, "date": "Jan 17 13:59"}, {"filename": "ipv6.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3967, "date": "Jan 17 13:59"}, {"filename": "ipv6_route.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1908, "date": "Jan 17 13:59"}, {"filename": "ip_vs.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 13631, "date": "Jan 17 13:59"}, {"filename": "ipx.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2347, "date": "Jan 17 13:59"}, {"filename": "irda.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7554, "date": "Jan 17 13:59"}, {"filename": "irqnr.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 104, "date": "Jan 17 13:59"}, {"filename": "isdn", "parent": "/usr/include/linux", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "isdn_divertif.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1200, "date": "Jan 17 13:59"}, {"filename": "isdn.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5774, "date": "Jan 17 13:59"}, {"filename": "isdnif.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2370, "date": "Jan 17 13:59"}, {"filename": "isdn_ppp.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1923, "date": "Jan 17 13:59"}, {"filename": "iso_fs.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6485, "date": "Jan 17 13:59"}, {"filename": "ivtvfb.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1207, "date": "Jan 17 13:59"}, {"filename": "ivtv.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3022, "date": "Jan 17 13:59"}, {"filename": "ixjuser.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 25181, "date": "Jan 17 13:59"}, {"filename": "jffs2.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7018, "date": "Jan 17 13:59"}, {"filename": "joystick.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3645, "date": "Jan 17 13:59"}, {"filename": "kcm.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 822, "date": "Jan 17 13:59"}, {"filename": "kcmp.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 522, "date": "Jan 17 13:59"}, {"filename": "kcov.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1099, "date": "Jan 17 13:59"}, {"filename": "kdev_t.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 383, "date": "Jan 17 13:59"}, {"filename": "kd.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6283, "date": "Jan 17 13:59"}, {"filename": "kernelcapi.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1019, "date": "Jan 17 13:59"}, {"filename": "kernel.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 438, "date": "Jan 17 13:59"}, {"filename": "kernel-page-flags.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 877, "date": "Jan 17 13:59"}, {"filename": "kexec.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1835, "date": "Jan 17 13:59"}, {"filename": "keyboard.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 12783, "date": "Jan 17 13:59"}, {"filename": "keyctl.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3555, "date": "Jan 17 13:59"}, {"filename": "kfd_ioctl.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9591, "date": "Jan 17 13:59"}, {"filename": "kvm.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 41076, "date": "Jan 17 13:59"}, {"filename": "kvm_para.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 882, "date": "Jan 17 13:59"}, {"filename": "l2tp.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5635, "date": "Jan 17 13:59"}, {"filename": "libc-compat.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8289, "date": "Jan 17 13:59"}, {"filename": "lightnvm.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4877, "date": "Jan 17 13:59"}, {"filename": "limits.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 937, "date": "Jan 17 13:59"}, {"filename": "lirc.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5062, "date": "Jan 17 13:59"}, {"filename": "llc.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3164, "date": "Jan 17 13:59"}, {"filename": "loop.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2520, "date": "Jan 17 13:59"}, {"filename": "lp.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3875, "date": "Jan 17 13:59"}, {"filename": "lwtunnel.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1273, "date": "Jan 17 13:59"}, {"filename": "magic.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3401, "date": "Jan 17 13:59"}, {"filename": "major.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4713, "date": "Jan 17 13:59"}, {"filename": "map_to_7segment.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7251, "date": "Jan 17 13:59"}, {"filename": "matroxfb.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1464, "date": "Jan 17 13:59"}, {"filename": "max2175.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1035, "date": "Jan 17 13:59"}, {"filename": "mdio.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 14131, "date": "Jan 17 13:59"}, {"filename": "media-bus-format.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6411, "date": "Jan 17 13:59"}, {"filename": "media.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 12534, "date": "Jan 17 13:59"}, {"filename": "mei.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4815, "date": "Jan 17 13:59"}, {"filename": "membarrier.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4221, "date": "Jan 17 13:59"}, {"filename": "memfd.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1228, "date": "Jan 17 13:59"}, {"filename": "mempolicy.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2154, "date": "Jan 17 13:59"}, {"filename": "meye.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2529, "date": "Jan 17 13:59"}, {"filename": "mic_common.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6519, "date": "Jan 17 13:59"}, {"filename": "mic_ioctl.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2252, "date": "Jan 17 13:59"}, {"filename": "mii.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8076, "date": "Jan 17 13:59"}, {"filename": "minix_fs.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2122, "date": "Jan 17 13:59"}, {"filename": "mman.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1242, "date": "Jan 17 13:59"}, {"filename": "mmc", "parent": "/usr/include/linux", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "mmtimer.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2117, "date": "Jan 17 13:59"}, {"filename": "module.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 255, "date": "Jan 17 13:59"}, {"filename": "mpls.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2302, "date": "Jan 17 13:59"}, {"filename": "mpls_iptunnel.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 761, "date": "Jan 17 13:59"}, {"filename": "mqueue.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2201, "date": "Jan 17 13:59"}, {"filename": "mroute6.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4577, "date": "Jan 17 13:59"}, {"filename": "mroute.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5427, "date": "Jan 17 13:59"}, {"filename": "msdos_fs.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6936, "date": "Jan 17 13:59"}, {"filename": "msg.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3350, "date": "Jan 17 13:59"}, {"filename": "mtio.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8175, "date": "Jan 17 13:59"}, {"filename": "nbd.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3024, "date": "Jan 17 13:59"}, {"filename": "nbd-netlink.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2378, "date": "Jan 17 13:59"}, {"filename": "ncp_fs.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3416, "date": "Jan 17 13:59"}, {"filename": "ncp.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5118, "date": "Jan 17 13:59"}, {"filename": "ncp_mount.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2174, "date": "Jan 17 13:59"}, {"filename": "ncp_no.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 714, "date": "Jan 17 13:59"}, {"filename": "ndctl.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8142, "date": "Jan 17 13:59"}, {"filename": "neighbour.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4340, "date": "Jan 17 13:59"}, {"filename": "netconf.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 589, "date": "Jan 17 13:59"}, {"filename": "netdevice.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2253, "date": "Jan 17 13:59"}, {"filename": "net_dropmon.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1154, "date": "Jan 17 13:59"}, {"filename": "netfilter", "parent": "/usr/include/linux", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 12288, "date": "Feb 5 06:03"}, {"filename": "netfilter_arp", "parent": "/usr/include/linux", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "netfilter_arp.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 444, "date": "Jan 17 13:59"}, {"filename": "netfilter_bridge", "parent": "/usr/include/linux", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "netfilter_bridge.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 901, "date": "Jan 17 13:59"}, {"filename": "netfilter_decnet.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1935, "date": "Jan 17 13:59"}, {"filename": "netfilter.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1820, "date": "Jan 17 13:59"}, {"filename": "netfilter_ipv4", "parent": "/usr/include/linux", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "netfilter_ipv4.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2132, "date": "Jan 17 13:59"}, {"filename": "netfilter_ipv6", "parent": "/usr/include/linux", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "netfilter_ipv6.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2151, "date": "Jan 17 13:59"}, {"filename": "net.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2085, "date": "Jan 17 13:59"}, {"filename": "netlink_diag.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1524, "date": "Jan 17 13:59"}, {"filename": "netlink.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7790, "date": "Jan 17 13:59"}, {"filename": "net_namespace.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 672, "date": "Jan 17 13:59"}, {"filename": "netrom.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 807, "date": "Jan 17 13:59"}, {"filename": "net_tstamp.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4435, "date": "Jan 17 13:59"}, {"filename": "nfc.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 11209, "date": "Jan 17 13:59"}, {"filename": "nfs2.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1468, "date": "Jan 17 13:59"}, {"filename": "nfs3.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2359, "date": "Jan 17 13:59"}, {"filename": "nfs4.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6338, "date": "Jan 17 13:59"}, {"filename": "nfs4_mount.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1932, "date": "Jan 17 13:59"}, {"filename": "nfsacl.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 668, "date": "Jan 17 13:59"}, {"filename": "nfsd", "parent": "/usr/include/linux", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "nfs_fs.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1608, "date": "Jan 17 13:59"}, {"filename": "nfs.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4472, "date": "Jan 17 13:59"}, {"filename": "nfs_idmap.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2243, "date": "Jan 17 13:59"}, {"filename": "nfs_mount.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2438, "date": "Jan 17 13:59"}, {"filename": "nilfs2_api.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7589, "date": "Jan 17 13:59"}, {"filename": "nilfs2_ondisk.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 18085, "date": "Jan 17 13:59"}, {"filename": "nl80211.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 234260, "date": "Jan 17 13:59"}, {"filename": "n_r3964.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2410, "date": "Jan 17 13:59"}, {"filename": "nsfs.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 639, "date": "Jan 17 13:59"}, {"filename": "nubus.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8574, "date": "Jan 17 13:59"}, {"filename": "nvme_ioctl.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1648, "date": "Jan 17 13:59"}, {"filename": "nvram.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 532, "date": "Jan 17 13:59"}, {"filename": "omap3isp.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 20740, "date": "Jan 17 13:59"}, {"filename": "omapfb.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5918, "date": "Jan 17 13:59"}, {"filename": "oom.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 511, "date": "Jan 17 13:59"}, {"filename": "openvswitch.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 35305, "date": "Jan 17 13:59"}, {"filename": "packet_diag.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1672, "date": "Jan 17 13:59"}, {"filename": "param.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 141, "date": "Jan 17 13:59"}, {"filename": "parport.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3644, "date": "Jan 17 13:59"}, {"filename": "patchkey.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 892, "date": "Jan 17 13:59"}, {"filename": "pci.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1380, "date": "Jan 17 13:59"}, {"filename": "pci_regs.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 54036, "date": "Jan 17 13:59"}, {"filename": "pcitest.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 579, "date": "Jan 17 13:59"}, {"filename": "perf_event.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 31522, "date": "Jan 17 13:59"}, {"filename": "personality.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2097, "date": "Jan 17 13:59"}, {"filename": "pfkeyv2.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 10569, "date": "Jan 17 13:59"}, {"filename": "pg.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2346, "date": "Jan 17 13:59"}, {"filename": "phantom.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1654, "date": "Jan 17 13:59"}, {"filename": "phonet.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4677, "date": "Jan 17 13:59"}, {"filename": "pktcdvd.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2687, "date": "Jan 17 13:59"}, {"filename": "pkt_cls.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 12006, "date": "Jan 17 13:59"}, {"filename": "pkt_sched.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 21365, "date": "Jan 17 13:59"}, {"filename": "pmu.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5319, "date": "Jan 17 13:59"}, {"filename": "poll.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 22, "date": "Jan 17 13:59"}, {"filename": "posix_acl.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1254, "date": "Jan 17 13:59"}, {"filename": "posix_acl_xattr.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1115, "date": "Jan 17 13:59"}, {"filename": "posix_types.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1098, "date": "Jan 17 13:59"}, {"filename": "ppdev.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3211, "date": "Jan 17 13:59"}, {"filename": "ppp-comp.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2527, "date": "Jan 17 13:59"}, {"filename": "ppp_defs.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5107, "date": "Jan 17 13:59"}, {"filename": "ppp-ioctl.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5480, "date": "Jan 17 13:59"}, {"filename": "pps.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4734, "date": "Jan 17 13:59"}, {"filename": "prctl.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7919, "date": "Jan 17 13:59"}, {"filename": "pr.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1073, "date": "Jan 17 13:59"}, {"filename": "psample.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 798, "date": "Jan 17 13:59"}, {"filename": "psci.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4055, "date": "Jan 17 13:59"}, {"filename": "ptp_clock.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4868, "date": "Jan 17 13:59"}, {"filename": "ptrace.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3337, "date": "Jan 17 13:59"}, {"filename": "qnx4_fs.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2328, "date": "Jan 17 13:59"}, {"filename": "qnxtypes.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 624, "date": "Jan 17 13:59"}, {"filename": "qrtr.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 893, "date": "Jan 17 13:59"}, {"filename": "quota.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6291, "date": "Jan 17 13:59"}, {"filename": "radeonfb.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 360, "date": "Jan 17 13:59"}, {"filename": "raid", "parent": "/usr/include/linux", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "random.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1370, "date": "Jan 17 13:59"}, {"filename": "raw.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 365, "date": "Jan 17 13:59"}, {"filename": "rds.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9126, "date": "Jan 17 13:59"}, {"filename": "reboot.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1343, "date": "Jan 17 13:59"}, {"filename": "reiserfs_fs.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 775, "date": "Jan 17 13:59"}, {"filename": "reiserfs_xattr.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 533, "date": "Jan 17 13:59"}, {"filename": "resource.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2347, "date": "Jan 17 13:59"}, {"filename": "rfkill.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3682, "date": "Jan 17 13:59"}, {"filename": "rio_cm_cdev.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3248, "date": "Jan 17 13:59"}, {"filename": "rio_mport_cdev.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9330, "date": "Jan 17 13:59"}, {"filename": "romfs_fs.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1238, "date": "Jan 17 13:59"}, {"filename": "rose.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2232, "date": "Jan 17 13:59"}, {"filename": "route.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2332, "date": "Jan 17 13:59"}, {"filename": "rpmsg.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1002, "date": "Jan 17 13:59"}, {"filename": "rtc.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4009, "date": "Jan 17 13:59"}, {"filename": "rtnetlink.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 17991, "date": "Jan 17 13:59"}, {"filename": "rxrpc.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5080, "date": "Jan 17 13:59"}, {"filename": "scc.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4597, "date": "Jan 17 13:59"}, {"filename": "sched", "parent": "/usr/include/linux", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "sched.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2341, "date": "Jan 17 13:59"}, {"filename": "scif_ioctl.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6382, "date": "Jan 17 13:59"}, {"filename": "screen_info.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2479, "date": "Jan 17 13:59"}, {"filename": "sctp.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 32735, "date": "Jan 17 13:59"}, {"filename": "sdla.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2839, "date": "Jan 17 13:59"}, {"filename": "seccomp.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2257, "date": "Jan 17 13:59"}, {"filename": "securebits.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2704, "date": "Jan 17 13:59"}, {"filename": "sed-opal.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3275, "date": "Jan 17 13:59"}, {"filename": "seg6_genl.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 589, "date": "Jan 17 13:59"}, {"filename": "seg6.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1170, "date": "Jan 17 13:59"}, {"filename": "seg6_hmac.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 423, "date": "Jan 17 13:59"}, {"filename": "seg6_iptunnel.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 927, "date": "Jan 17 13:59"}, {"filename": "seg6_local.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1803, "date": "Jan 17 13:59"}, {"filename": "selinux_netlink.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1195, "date": "Jan 17 13:59"}, {"filename": "sem.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3019, "date": "Jan 17 13:59"}, {"filename": "serial_core.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6245, "date": "Jan 17 13:59"}, {"filename": "serial.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3421, "date": "Jan 17 13:59"}, {"filename": "serial_reg.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 15496, "date": "Jan 17 13:59"}, {"filename": "serio.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2037, "date": "Jan 17 13:59"}, {"filename": "shm.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3664, "date": "Jan 17 13:59"}, {"filename": "signalfd.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1159, "date": "Jan 17 13:59"}, {"filename": "signal.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 388, "date": "Jan 17 13:59"}, {"filename": "smc_diag.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2268, "date": "Jan 17 13:59"}, {"filename": "smc.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 780, "date": "Jan 17 13:59"}, {"filename": "smiapp.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1058, "date": "Jan 17 13:59"}, {"filename": "snmp.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 12642, "date": "Jan 17 13:59"}, {"filename": "sock_diag.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 727, "date": "Jan 17 13:59"}, {"filename": "socket.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 801, "date": "Jan 17 13:59"}, {"filename": "sockios.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6106, "date": "Jan 17 13:59"}, {"filename": "sonet.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2290, "date": "Jan 17 13:59"}, {"filename": "sonypi.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5309, "date": "Jan 17 13:59"}, {"filename": "soundcard.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 46038, "date": "Jan 17 13:59"}, {"filename": "sound.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1237, "date": "Jan 17 13:59"}, {"filename": "spi", "parent": "/usr/include/linux", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "stat.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6100, "date": "Jan 17 13:59"}, {"filename": "stddef.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 131, "date": "Jan 17 13:59"}, {"filename": "stm.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1616, "date": "Jan 17 13:59"}, {"filename": "string.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 238, "date": "Jan 17 13:59"}, {"filename": "sunrpc", "parent": "/usr/include/linux", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "suspend_ioctls.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1431, "date": "Jan 17 13:59"}, {"filename": "swab.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6711, "date": "Jan 17 13:59"}, {"filename": "switchtec_ioctl.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4465, "date": "Jan 17 13:59"}, {"filename": "sync_file.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2883, "date": "Jan 17 13:59"}, {"filename": "synclink.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8985, "date": "Jan 17 13:59"}, {"filename": "sysctl.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 26188, "date": "Jan 17 13:59"}, {"filename": "sysinfo.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1049, "date": "Jan 17 13:59"}, {"filename": "target_core_user.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3768, "date": "Jan 17 13:59"}, {"filename": "taskstats.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7057, "date": "Jan 17 13:59"}, {"filename": "tc_act", "parent": "/usr/include/linux", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "tc_ematch", "parent": "/usr/include/linux", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "tcp.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8293, "date": "Jan 17 13:59"}, {"filename": "tcp_metrics.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1549, "date": "Jan 17 13:59"}, {"filename": "tee.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 11255, "date": "Jan 17 13:59"}, {"filename": "telephony.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9115, "date": "Jan 17 13:59"}, {"filename": "termios.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 506, "date": "Jan 17 13:59"}, {"filename": "thermal.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 924, "date": "Jan 17 13:59"}, {"filename": "time.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1720, "date": "Jan 17 13:59"}, {"filename": "timerfd.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 936, "date": "Jan 17 13:59"}, {"filename": "times.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 278, "date": "Jan 17 13:59"}, {"filename": "timex.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6403, "date": "Jan 17 13:59"}, {"filename": "tiocl.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1729, "date": "Jan 17 13:59"}, {"filename": "tipc_config.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 14775, "date": "Jan 17 13:59"}, {"filename": "tipc.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7709, "date": "Jan 17 13:59"}, {"filename": "tipc_netlink.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8010, "date": "Jan 17 13:59"}, {"filename": "tls.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2723, "date": "Jan 17 13:59"}, {"filename": "toshiba.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1930, "date": "Jan 17 13:59"}, {"filename": "tty_flags.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4526, "date": "Jan 17 13:59"}, {"filename": "tty.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1585, "date": "Jan 17 13:59"}, {"filename": "types.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1438, "date": "Jan 17 13:59"}, {"filename": "udf_fs_i.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 697, "date": "Jan 17 13:59"}, {"filename": "udp.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1463, "date": "Jan 17 13:59"}, {"filename": "uhid.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4648, "date": "Jan 17 13:59"}, {"filename": "uinput.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9261, "date": "Jan 17 13:59"}, {"filename": "uio.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 732, "date": "Jan 17 13:59"}, {"filename": "uleds.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 798, "date": "Jan 17 13:59"}, {"filename": "ultrasound.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4562, "date": "Jan 17 13:59"}, {"filename": "un.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 384, "date": "Jan 17 13:59"}, {"filename": "unistd.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 220, "date": "Jan 17 13:59"}, {"filename": "unix_diag.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1253, "date": "Jan 17 13:59"}, {"filename": "usb", "parent": "/usr/include/linux", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "usbdevice_fs.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6928, "date": "Jan 17 13:59"}, {"filename": "usbip.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 640, "date": "Jan 17 13:59"}, {"filename": "userfaultfd.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6811, "date": "Jan 17 13:59"}, {"filename": "userio.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1516, "date": "Jan 17 13:59"}, {"filename": "utime.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 215, "date": "Jan 17 13:59"}, {"filename": "utsname.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 669, "date": "Jan 17 13:59"}, {"filename": "uuid.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1382, "date": "Jan 17 13:59"}, {"filename": "uvcvideo.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1705, "date": "Jan 17 13:59"}, {"filename": "v4l2-common.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4177, "date": "Jan 17 13:59"}, {"filename": "v4l2-controls.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 44984, "date": "Jan 17 13:59"}, {"filename": "v4l2-dv-timings.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 31562, "date": "Jan 17 13:59"}, {"filename": "v4l2-mediabus.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5101, "date": "Jan 17 13:59"}, {"filename": "v4l2-subdev.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6096, "date": "Jan 17 13:59"}, {"filename": "version.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 97, "date": "Jan 17 13:59"}, {"filename": "veth.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 224, "date": "Jan 17 13:59"}, {"filename": "vfio_ccw.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 504, "date": "Jan 17 13:59"}, {"filename": "vfio.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 26030, "date": "Jan 17 13:59"}, {"filename": "vhost.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7305, "date": "Jan 17 13:59"}, {"filename": "videodev2.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 85966, "date": "Jan 17 13:59"}, {"filename": "virtio_9p.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2041, "date": "Jan 17 13:59"}, {"filename": "virtio_balloon.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3800, "date": "Jan 17 13:59"}, {"filename": "virtio_blk.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5319, "date": "Jan 17 13:59"}, {"filename": "virtio_config.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3420, "date": "Jan 17 13:59"}, {"filename": "virtio_console.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3136, "date": "Jan 17 13:59"}, {"filename": "virtio_crypto.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 13874, "date": "Jan 17 13:59"}, {"filename": "virtio_gpu.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8027, "date": "Jan 17 13:59"}, {"filename": "virtio_ids.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2429, "date": "Jan 17 13:59"}, {"filename": "virtio_input.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2506, "date": "Jan 17 13:59"}, {"filename": "virtio_mmio.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4586, "date": "Jan 17 13:59"}, {"filename": "virtio_net.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 10131, "date": "Jan 17 13:59"}, {"filename": "virtio_pci.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7079, "date": "Jan 17 13:59"}, {"filename": "virtio_ring.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6336, "date": "Jan 17 13:59"}, {"filename": "virtio_rng.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 265, "date": "Jan 17 13:59"}, {"filename": "virtio_scsi.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6035, "date": "Jan 17 13:59"}, {"filename": "virtio_types.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2153, "date": "Jan 17 13:59"}, {"filename": "virtio_vsock.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3086, "date": "Jan 17 13:59"}, {"filename": "vm_sockets_diag.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 963, "date": "Jan 17 13:59"}, {"filename": "vm_sockets.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5314, "date": "Jan 17 13:59"}, {"filename": "vsockmon.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1885, "date": "Jan 17 13:59"}, {"filename": "vt.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3059, "date": "Jan 17 13:59"}, {"filename": "vtpm_proxy.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1719, "date": "Jan 17 13:59"}, {"filename": "wait.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 663, "date": "Jan 17 13:59"}, {"filename": "wanrouter.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 453, "date": "Jan 17 13:59"}, {"filename": "watchdog.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2335, "date": "Jan 17 13:59"}, {"filename": "wimax", "parent": "/usr/include/linux", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "wimax.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8371, "date": "Jan 17 13:59"}, {"filename": "wireless.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 42713, "date": "Jan 17 13:59"}, {"filename": "wmi.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1886, "date": "Jan 17 13:59"}, {"filename": "x25.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3562, "date": "Jan 17 13:59"}, {"filename": "xattr.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2860, "date": "Jan 17 13:59"}, {"filename": "xfrm.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 11617, "date": "Jan 17 13:59"}, {"filename": "xilinx-v4l2-controls.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2976, "date": "Jan 17 13:59"}, {"filename": "zorro.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3296, "date": "Jan 17 13:59"}, {"filename": "zorro_ids.h", "parent": "/usr/include/linux", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 29963, "date": "Jan 17 13:59"}, {"filename": ".", "parent": "/usr/include/linux/android", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "..", "parent": "/usr/include/linux/android", "flags": "drwxr-xr-x", "links": 28, "owner": "root", "group": "root", "size": 69632, "date": "Feb 5 06:03"}, {"filename": "binder.h", "parent": "/usr/include/linux/android", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 13687, "date": "Jan 17 13:59"}, {"filename": ".", "parent": "/usr/include/linux/byteorder", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "..", "parent": "/usr/include/linux/byteorder", "flags": "drwxr-xr-x", "links": 28, "owner": "root", "group": "root", "size": 69632, "date": "Feb 5 06:03"}, {"filename": "big_endian.h", "parent": "/usr/include/linux/byteorder", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3542, "date": "Jan 17 13:59"}, {"filename": "little_endian.h", "parent": "/usr/include/linux/byteorder", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3611, "date": "Jan 17 13:59"}, {"filename": ".", "parent": "/usr/include/linux/caif", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "..", "parent": "/usr/include/linux/caif", "flags": "drwxr-xr-x", "links": 28, "owner": "root", "group": "root", "size": 69632, "date": "Feb 5 06:03"}, {"filename": "caif_socket.h", "parent": "/usr/include/linux/caif", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5832, "date": "Jan 17 13:59"}, {"filename": "if_caif.h", "parent": "/usr/include/linux/caif", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1041, "date": "Jan 17 13:59"}, {"filename": ".", "parent": "/usr/include/linux/can", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "..", "parent": "/usr/include/linux/can", "flags": "drwxr-xr-x", "links": 28, "owner": "root", "group": "root", "size": 69632, "date": "Feb 5 06:03"}, {"filename": "bcm.h", "parent": "/usr/include/linux/can", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4111, "date": "Jan 17 13:59"}, {"filename": "error.h", "parent": "/usr/include/linux/can", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6605, "date": "Jan 17 13:59"}, {"filename": "gw.h", "parent": "/usr/include/linux/can", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7438, "date": "Jan 17 13:59"}, {"filename": "netlink.h", "parent": "/usr/include/linux/can", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3966, "date": "Jan 17 13:59"}, {"filename": "raw.h", "parent": "/usr/include/linux/can", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2853, "date": "Jan 17 13:59"}, {"filename": "vxcan.h", "parent": "/usr/include/linux/can", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 227, "date": "Jan 17 13:59"}, {"filename": ".", "parent": "/usr/include/linux/cifs", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "..", "parent": "/usr/include/linux/cifs", "flags": "drwxr-xr-x", "links": 28, "owner": "root", "group": "root", "size": 69632, "date": "Feb 5 06:03"}, {"filename": "cifs_mount.h", "parent": "/usr/include/linux/cifs", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1225, "date": "Jan 17 13:59"}, {"filename": ".", "parent": "/usr/include/linux/dvb", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "..", "parent": "/usr/include/linux/dvb", "flags": "drwxr-xr-x", "links": 28, "owner": "root", "group": "root", "size": 69632, "date": "Feb 5 06:03"}, {"filename": "audio.h", "parent": "/usr/include/linux/dvb", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4959, "date": "Jan 17 13:59"}, {"filename": "ca.h", "parent": "/usr/include/linux/dvb", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4247, "date": "Jan 17 13:59"}, {"filename": "dmx.h", "parent": "/usr/include/linux/dvb", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6763, "date": "Jan 17 13:59"}, {"filename": "frontend.h", "parent": "/usr/include/linux/dvb", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 29085, "date": "Jan 17 13:59"}, {"filename": "net.h", "parent": "/usr/include/linux/dvb", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2127, "date": "Jan 17 13:59"}, {"filename": "osd.h", "parent": "/usr/include/linux/dvb", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5761, "date": "Jan 17 13:59"}, {"filename": "version.h", "parent": "/usr/include/linux/dvb", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1082, "date": "Jan 17 13:59"}, {"filename": "video.h", "parent": "/usr/include/linux/dvb", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8820, "date": "Jan 17 13:59"}, {"filename": ".", "parent": "/usr/include/linux/genwqe", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "..", "parent": "/usr/include/linux/genwqe", "flags": "drwxr-xr-x", "links": 28, "owner": "root", "group": "root", "size": 69632, "date": "Feb 5 06:03"}, {"filename": "genwqe_card.h", "parent": "/usr/include/linux/genwqe", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 17802, "date": "Jan 17 13:59"}, {"filename": ".", "parent": "/usr/include/linux/hdlc", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "..", "parent": "/usr/include/linux/hdlc", "flags": "drwxr-xr-x", "links": 28, "owner": "root", "group": "root", "size": 69632, "date": "Feb 5 06:03"}, {"filename": "ioctl.h", "parent": "/usr/include/linux/hdlc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2657, "date": "Jan 17 13:59"}, {"filename": ".", "parent": "/usr/include/linux/hsi", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "..", "parent": "/usr/include/linux/hsi", "flags": "drwxr-xr-x", "links": 28, "owner": "root", "group": "root", "size": 69632, "date": "Feb 5 06:03"}, {"filename": "cs-protocol.h", "parent": "/usr/include/linux/hsi", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3656, "date": "Jan 17 13:59"}, {"filename": "hsi_char.h", "parent": "/usr/include/linux/hsi", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1895, "date": "Jan 17 13:59"}, {"filename": ".", "parent": "/usr/include/linux/iio", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "..", "parent": "/usr/include/linux/iio", "flags": "drwxr-xr-x", "links": 28, "owner": "root", "group": "root", "size": 69632, "date": "Feb 5 06:03"}, {"filename": "events.h", "parent": "/usr/include/linux/iio", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1390, "date": "Jan 17 13:59"}, {"filename": "types.h", "parent": "/usr/include/linux/iio", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1945, "date": "Jan 17 13:59"}, {"filename": ".", "parent": "/usr/include/linux/isdn", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "..", "parent": "/usr/include/linux/isdn", "flags": "drwxr-xr-x", "links": 28, "owner": "root", "group": "root", "size": 69632, "date": "Feb 5 06:03"}, {"filename": "capicmd.h", "parent": "/usr/include/linux/isdn", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4783, "date": "Jan 17 13:59"}, {"filename": ".", "parent": "/usr/include/linux/mmc", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "..", "parent": "/usr/include/linux/mmc", "flags": "drwxr-xr-x", "links": 28, "owner": "root", "group": "root", "size": 69632, "date": "Feb 5 06:03"}, {"filename": "ioctl.h", "parent": "/usr/include/linux/mmc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2285, "date": "Jan 17 13:59"}, {"filename": ".", "parent": "/usr/include/linux/netfilter", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 12288, "date": "Feb 5 06:03"}, {"filename": "..", "parent": "/usr/include/linux/netfilter", "flags": "drwxr-xr-x", "links": 28, "owner": "root", "group": "root", "size": 69632, "date": "Feb 5 06:03"}, {"filename": "ipset", "parent": "/usr/include/linux/netfilter", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "nf_conntrack_common.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4248, "date": "Jan 17 13:59"}, {"filename": "nf_conntrack_ftp.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 438, "date": "Jan 17 13:59"}, {"filename": "nf_conntrack_sctp.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 576, "date": "Jan 17 13:59"}, {"filename": "nf_conntrack_tcp.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1336, "date": "Jan 17 13:59"}, {"filename": "nf_conntrack_tuple_common.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 896, "date": "Jan 17 13:59"}, {"filename": "nf_log.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 538, "date": "Jan 17 13:59"}, {"filename": "nf_nat.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1214, "date": "Jan 17 13:59"}, {"filename": "nfnetlink_acct.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 900, "date": "Jan 17 13:59"}, {"filename": "nfnetlink_compat.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2444, "date": "Jan 17 13:59"}, {"filename": "nfnetlink_conntrack.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5699, "date": "Jan 17 13:59"}, {"filename": "nfnetlink_cthelper.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1202, "date": "Jan 17 13:59"}, {"filename": "nfnetlink_cttimeout.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2930, "date": "Jan 17 13:59"}, {"filename": "nfnetlink.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2428, "date": "Jan 17 13:59"}, {"filename": "nfnetlink_log.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2799, "date": "Jan 17 13:59"}, {"filename": "nfnetlink_queue.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3499, "date": "Jan 17 13:59"}, {"filename": "nf_tables_compat.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 731, "date": "Jan 17 13:59"}, {"filename": "nf_tables.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 40173, "date": "Jan 17 13:59"}, {"filename": "x_tables.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4467, "date": "Jan 17 13:59"}, {"filename": "xt_addrtype.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1084, "date": "Jan 17 13:59"}, {"filename": "xt_AUDIT.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 718, "date": "Jan 17 13:59"}, {"filename": "xt_bpf.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 935, "date": "Jan 17 13:59"}, {"filename": "xt_cgroup.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 740, "date": "Jan 17 13:59"}, {"filename": "xt_CHECKSUM.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 563, "date": "Jan 17 13:59"}, {"filename": "xt_CLASSIFY.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 217, "date": "Jan 17 13:59"}, {"filename": "xt_cluster.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 374, "date": "Jan 17 13:59"}, {"filename": "xt_comment.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 230, "date": "Jan 17 13:59"}, {"filename": "xt_connbytes.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 577, "date": "Jan 17 13:59"}, {"filename": "xt_connlabel.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 280, "date": "Jan 17 13:59"}, {"filename": "xt_connlimit.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 575, "date": "Jan 17 13:59"}, {"filename": "xt_connmark.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 755, "date": "Jan 17 13:59"}, {"filename": "xt_CONNMARK.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 199, "date": "Jan 17 13:59"}, {"filename": "xt_CONNSECMARK.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 301, "date": "Jan 17 13:59"}, {"filename": "xt_conntrack.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2557, "date": "Jan 17 13:59"}, {"filename": "xt_cpu.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 199, "date": "Jan 17 13:59"}, {"filename": "xt_CT.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 853, "date": "Jan 17 13:59"}, {"filename": "xt_dccp.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 483, "date": "Jan 17 13:59"}, {"filename": "xt_devgroup.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 429, "date": "Jan 17 13:59"}, {"filename": "xt_dscp.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 701, "date": "Jan 17 13:59"}, {"filename": "xt_DSCP.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 697, "date": "Jan 17 13:59"}, {"filename": "xt_ecn.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 736, "date": "Jan 17 13:59"}, {"filename": "xt_esp.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 418, "date": "Jan 17 13:59"}, {"filename": "xt_hashlimit.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3256, "date": "Jan 17 13:59"}, {"filename": "xt_helper.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 188, "date": "Jan 17 13:59"}, {"filename": "xt_HMARK.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 933, "date": "Jan 17 13:59"}, {"filename": "xt_IDLETIMER.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1393, "date": "Jan 17 13:59"}, {"filename": "xt_ipcomp.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 485, "date": "Jan 17 13:59"}, {"filename": "xt_iprange.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 581, "date": "Jan 17 13:59"}, {"filename": "xt_ipvs.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 680, "date": "Jan 17 13:59"}, {"filename": "xt_l2tp.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 739, "date": "Jan 17 13:59"}, {"filename": "xt_LED.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 470, "date": "Jan 17 13:59"}, {"filename": "xt_length.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 221, "date": "Jan 17 13:59"}, {"filename": "xt_limit.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 673, "date": "Jan 17 13:59"}, {"filename": "xt_LOG.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 642, "date": "Jan 17 13:59"}, {"filename": "xt_mac.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 227, "date": "Jan 17 13:59"}, {"filename": "xt_mark.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 260, "date": "Jan 17 13:59"}, {"filename": "xt_MARK.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 184, "date": "Jan 17 13:59"}, {"filename": "xt_multiport.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 721, "date": "Jan 17 13:59"}, {"filename": "xt_nfacct.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 421, "date": "Jan 17 13:59"}, {"filename": "xt_NFLOG.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 556, "date": "Jan 17 13:59"}, {"filename": "xt_NFQUEUE.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 779, "date": "Jan 17 13:59"}, {"filename": "xt_osf.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3390, "date": "Jan 17 13:59"}, {"filename": "xt_owner.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 369, "date": "Jan 17 13:59"}, {"filename": "xt_physdev.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 553, "date": "Jan 17 13:59"}, {"filename": "xt_pkttype.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 188, "date": "Jan 17 13:59"}, {"filename": "xt_policy.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1022, "date": "Jan 17 13:59"}, {"filename": "xt_quota.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 400, "date": "Jan 17 13:59"}, {"filename": "xt_rateest.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 859, "date": "Jan 17 13:59"}, {"filename": "xt_RATEEST.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 390, "date": "Jan 17 13:59"}, {"filename": "xt_realm.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 220, "date": "Jan 17 13:59"}, {"filename": "xt_recent.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1058, "date": "Jan 17 13:59"}, {"filename": "xt_rpfilter.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 320, "date": "Jan 17 13:59"}, {"filename": "xt_sctp.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2326, "date": "Jan 17 13:59"}, {"filename": "xt_SECMARK.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 549, "date": "Jan 17 13:59"}, {"filename": "xt_set.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1827, "date": "Jan 17 13:59"}, {"filename": "xt_socket.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 640, "date": "Jan 17 13:59"}, {"filename": "xt_state.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 331, "date": "Jan 17 13:59"}, {"filename": "xt_statistic.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 716, "date": "Jan 17 13:59"}, {"filename": "xt_string.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 664, "date": "Jan 17 13:59"}, {"filename": "xt_SYNPROXY.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 419, "date": "Jan 17 13:59"}, {"filename": "xt_tcpmss.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 253, "date": "Jan 17 13:59"}, {"filename": "xt_TCPMSS.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 235, "date": "Jan 17 13:59"}, {"filename": "xt_TCPOPTSTRIP.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 407, "date": "Jan 17 13:59"}, {"filename": "xt_tcpudp.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1250, "date": "Jan 17 13:59"}, {"filename": "xt_TEE.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 333, "date": "Jan 17 13:59"}, {"filename": "xt_time.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 730, "date": "Jan 17 13:59"}, {"filename": "xt_TPROXY.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 575, "date": "Jan 17 13:59"}, {"filename": "xt_u32.h", "parent": "/usr/include/linux/netfilter", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 752, "date": "Jan 17 13:59"}, {"filename": ".", "parent": "/usr/include/linux/netfilter/ipset", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "..", "parent": "/usr/include/linux/netfilter/ipset", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 12288, "date": "Feb 5 06:03"}, {"filename": "ip_set_bitmap.h", "parent": "/usr/include/linux/netfilter/ipset", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 428, "date": "Jan 17 13:59"}, {"filename": "ip_set.h", "parent": "/usr/include/linux/netfilter/ipset", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8879, "date": "Jan 17 13:59"}, {"filename": "ip_set_hash.h", "parent": "/usr/include/linux/netfilter/ipset", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 578, "date": "Jan 17 13:59"}, {"filename": "ip_set_list.h", "parent": "/usr/include/linux/netfilter/ipset", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 609, "date": "Jan 17 13:59"}, {"filename": ".", "parent": "/usr/include/linux/netfilter_arp", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "..", "parent": "/usr/include/linux/netfilter_arp", "flags": "drwxr-xr-x", "links": 28, "owner": "root", "group": "root", "size": 69632, "date": "Feb 5 06:03"}, {"filename": "arp_tables.h", "parent": "/usr/include/linux/netfilter_arp", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5999, "date": "Jan 17 13:59"}, {"filename": "arpt_mangle.h", "parent": "/usr/include/linux/netfilter_arp", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 606, "date": "Jan 17 13:59"}, {"filename": ".", "parent": "/usr/include/linux/netfilter_bridge", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "..", "parent": "/usr/include/linux/netfilter_bridge", "flags": "drwxr-xr-x", "links": 28, "owner": "root", "group": "root", "size": 69632, "date": "Feb 5 06:03"}, {"filename": "ebt_802_3.h", "parent": "/usr/include/linux/netfilter_bridge", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1274, "date": "Jan 17 13:59"}, {"filename": "ebtables.h", "parent": "/usr/include/linux/netfilter_bridge", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9041, "date": "Jan 17 13:59"}, {"filename": "ebt_among.h", "parent": "/usr/include/linux/netfilter_bridge", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2043, "date": "Jan 17 13:59"}, {"filename": "ebt_arp.h", "parent": "/usr/include/linux/netfilter_bridge", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 900, "date": "Jan 17 13:59"}, {"filename": "ebt_arpreply.h", "parent": "/usr/include/linux/netfilter_bridge", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 289, "date": "Jan 17 13:59"}, {"filename": "ebt_ip6.h", "parent": "/usr/include/linux/netfilter_bridge", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1056, "date": "Jan 17 13:59"}, {"filename": "ebt_ip.h", "parent": "/usr/include/linux/netfilter_bridge", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 920, "date": "Jan 17 13:59"}, {"filename": "ebt_limit.h", "parent": "/usr/include/linux/netfilter_bridge", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 616, "date": "Jan 17 13:59"}, {"filename": "ebt_log.h", "parent": "/usr/include/linux/netfilter_bridge", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 538, "date": "Jan 17 13:59"}, {"filename": "ebt_mark_m.h", "parent": "/usr/include/linux/netfilter_bridge", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 388, "date": "Jan 17 13:59"}, {"filename": "ebt_mark_t.h", "parent": "/usr/include/linux/netfilter_bridge", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 831, "date": "Jan 17 13:59"}, {"filename": "ebt_nat.h", "parent": "/usr/include/linux/netfilter_bridge", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 387, "date": "Jan 17 13:59"}, {"filename": "ebt_nflog.h", "parent": "/usr/include/linux/netfilter_bridge", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 510, "date": "Jan 17 13:59"}, {"filename": "ebt_pkttype.h", "parent": "/usr/include/linux/netfilter_bridge", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 267, "date": "Jan 17 13:59"}, {"filename": "ebt_redirect.h", "parent": "/usr/include/linux/netfilter_bridge", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 286, "date": "Jan 17 13:59"}, {"filename": "ebt_stp.h", "parent": "/usr/include/linux/netfilter_bridge", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1110, "date": "Jan 17 13:59"}, {"filename": "ebt_vlan.h", "parent": "/usr/include/linux/netfilter_bridge", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 719, "date": "Jan 17 13:59"}, {"filename": ".", "parent": "/usr/include/linux/netfilter_ipv4", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "..", "parent": "/usr/include/linux/netfilter_ipv4", "flags": "drwxr-xr-x", "links": 28, "owner": "root", "group": "root", "size": 69632, "date": "Feb 5 06:03"}, {"filename": "ip_tables.h", "parent": "/usr/include/linux/netfilter_ipv4", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6647, "date": "Jan 17 13:59"}, {"filename": "ipt_ah.h", "parent": "/usr/include/linux/netfilter_ipv4", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 425, "date": "Jan 17 13:59"}, {"filename": "ipt_CLUSTERIP.h", "parent": "/usr/include/linux/netfilter_ipv4", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 821, "date": "Jan 17 13:59"}, {"filename": "ipt_ecn.h", "parent": "/usr/include/linux/netfilter_ipv4", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 431, "date": "Jan 17 13:59"}, {"filename": "ipt_ECN.h", "parent": "/usr/include/linux/netfilter_ipv4", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 901, "date": "Jan 17 13:59"}, {"filename": "ipt_LOG.h", "parent": "/usr/include/linux/netfilter_ipv4", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 722, "date": "Jan 17 13:59"}, {"filename": "ipt_REJECT.h", "parent": "/usr/include/linux/netfilter_ipv4", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 468, "date": "Jan 17 13:59"}, {"filename": "ipt_ttl.h", "parent": "/usr/include/linux/netfilter_ipv4", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 431, "date": "Jan 17 13:59"}, {"filename": "ipt_TTL.h", "parent": "/usr/include/linux/netfilter_ipv4", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 375, "date": "Jan 17 13:59"}, {"filename": ".", "parent": "/usr/include/linux/netfilter_ipv6", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "..", "parent": "/usr/include/linux/netfilter_ipv6", "flags": "drwxr-xr-x", "links": 28, "owner": "root", "group": "root", "size": 69632, "date": "Feb 5 06:03"}, {"filename": "ip6_tables.h", "parent": "/usr/include/linux/netfilter_ipv6", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8011, "date": "Jan 17 13:59"}, {"filename": "ip6t_ah.h", "parent": "/usr/include/linux/netfilter_ipv6", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 657, "date": "Jan 17 13:59"}, {"filename": "ip6t_frag.h", "parent": "/usr/include/linux/netfilter_ipv6", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 744, "date": "Jan 17 13:59"}, {"filename": "ip6t_hl.h", "parent": "/usr/include/linux/netfilter_ipv6", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 458, "date": "Jan 17 13:59"}, {"filename": "ip6t_HL.h", "parent": "/usr/include/linux/netfilter_ipv6", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 408, "date": "Jan 17 13:59"}, {"filename": "ip6t_ipv6header.h", "parent": "/usr/include/linux/netfilter_ipv6", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 645, "date": "Jan 17 13:59"}, {"filename": "ip6t_LOG.h", "parent": "/usr/include/linux/netfilter_ipv6", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 730, "date": "Jan 17 13:59"}, {"filename": "ip6t_mh.h", "parent": "/usr/include/linux/netfilter_ipv6", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 439, "date": "Jan 17 13:59"}, {"filename": "ip6t_NPT.h", "parent": "/usr/include/linux/netfilter_ipv6", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 400, "date": "Jan 17 13:59"}, {"filename": "ip6t_opts.h", "parent": "/usr/include/linux/netfilter_ipv6", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 649, "date": "Jan 17 13:59"}, {"filename": "ip6t_REJECT.h", "parent": "/usr/include/linux/netfilter_ipv6", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 470, "date": "Jan 17 13:59"}, {"filename": "ip6t_rt.h", "parent": "/usr/include/linux/netfilter_ipv6", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 985, "date": "Jan 17 13:59"}, {"filename": ".", "parent": "/usr/include/linux/nfsd", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "..", "parent": "/usr/include/linux/nfsd", "flags": "drwxr-xr-x", "links": 28, "owner": "root", "group": "root", "size": 69632, "date": "Feb 5 06:03"}, {"filename": "cld.h", "parent": "/usr/include/linux/nfsd", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1921, "date": "Jan 17 13:59"}, {"filename": "debug.h", "parent": "/usr/include/linux/nfsd", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 736, "date": "Jan 17 13:59"}, {"filename": "export.h", "parent": "/usr/include/linux/nfsd", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2113, "date": "Jan 17 13:59"}, {"filename": "nfsfh.h", "parent": "/usr/include/linux/nfsd", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3517, "date": "Jan 17 13:59"}, {"filename": "stats.h", "parent": "/usr/include/linux/nfsd", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 421, "date": "Jan 17 13:59"}, {"filename": ".", "parent": "/usr/include/linux/raid", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "..", "parent": "/usr/include/linux/raid", "flags": "drwxr-xr-x", "links": 28, "owner": "root", "group": "root", "size": 69632, "date": "Feb 5 06:03"}, {"filename": "md_p.h", "parent": "/usr/include/linux/raid", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 16054, "date": "Jan 17 13:59"}, {"filename": "md_u.h", "parent": "/usr/include/linux/raid", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4484, "date": "Jan 17 13:59"}, {"filename": ".", "parent": "/usr/include/linux/sched", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "..", "parent": "/usr/include/linux/sched", "flags": "drwxr-xr-x", "links": 28, "owner": "root", "group": "root", "size": 69632, "date": "Feb 5 06:03"}, {"filename": "types.h", "parent": "/usr/include/linux/sched", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2688, "date": "Jan 17 13:59"}, {"filename": ".", "parent": "/usr/include/linux/spi", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "..", "parent": "/usr/include/linux/spi", "flags": "drwxr-xr-x", "links": 28, "owner": "root", "group": "root", "size": 69632, "date": "Feb 5 06:03"}, {"filename": "spidev.h", "parent": "/usr/include/linux/spi", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5076, "date": "Jan 17 13:59"}, {"filename": ".", "parent": "/usr/include/linux/sunrpc", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "..", "parent": "/usr/include/linux/sunrpc", "flags": "drwxr-xr-x", "links": 28, "owner": "root", "group": "root", "size": 69632, "date": "Feb 5 06:03"}, {"filename": "debug.h", "parent": "/usr/include/linux/sunrpc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1144, "date": "Jan 17 13:59"}, {"filename": ".", "parent": "/usr/include/linux/tc_act", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "..", "parent": "/usr/include/linux/tc_act", "flags": "drwxr-xr-x", "links": 28, "owner": "root", "group": "root", "size": 69632, "date": "Feb 5 06:03"}, {"filename": "tc_bpf.h", "parent": "/usr/include/linux/tc_act", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 788, "date": "Jan 17 13:59"}, {"filename": "tc_connmark.h", "parent": "/usr/include/linux/tc_act", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 419, "date": "Jan 17 13:59"}, {"filename": "tc_csum.h", "parent": "/usr/include/linux/tc_act", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 669, "date": "Jan 17 13:59"}, {"filename": "tc_defact.h", "parent": "/usr/include/linux/tc_act", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 322, "date": "Jan 17 13:59"}, {"filename": "tc_gact.h", "parent": "/usr/include/linux/tc_act", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 649, "date": "Jan 17 13:59"}, {"filename": "tc_ife.h", "parent": "/usr/include/linux/tc_act", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 623, "date": "Jan 17 13:59"}, {"filename": "tc_ipt.h", "parent": "/usr/include/linux/tc_act", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 460, "date": "Jan 17 13:59"}, {"filename": "tc_mirred.h", "parent": "/usr/include/linux/tc_act", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 753, "date": "Jan 17 13:59"}, {"filename": "tc_nat.h", "parent": "/usr/include/linux/tc_act", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 447, "date": "Jan 17 13:59"}, {"filename": "tc_pedit.h", "parent": "/usr/include/linux/tc_act", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1707, "date": "Jan 17 13:59"}, {"filename": "tc_sample.h", "parent": "/usr/include/linux/tc_act", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 483, "date": "Jan 17 13:59"}, {"filename": "tc_skbedit.h", "parent": "/usr/include/linux/tc_act", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1413, "date": "Jan 17 13:59"}, {"filename": "tc_skbmod.h", "parent": "/usr/include/linux/tc_act", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 842, "date": "Jan 17 13:59"}, {"filename": "tc_tunnel_key.h", "parent": "/usr/include/linux/tc_act", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1180, "date": "Jan 17 13:59"}, {"filename": "tc_vlan.h", "parent": "/usr/include/linux/tc_act", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 841, "date": "Jan 17 13:59"}, {"filename": ".", "parent": "/usr/include/linux/tc_ematch", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "..", "parent": "/usr/include/linux/tc_ematch", "flags": "drwxr-xr-x", "links": 28, "owner": "root", "group": "root", "size": 69632, "date": "Feb 5 06:03"}, {"filename": "tc_em_cmp.h", "parent": "/usr/include/linux/tc_ematch", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 414, "date": "Jan 17 13:59"}, {"filename": "tc_em_meta.h", "parent": "/usr/include/linux/tc_ematch", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2116, "date": "Jan 17 13:59"}, {"filename": "tc_em_nbyte.h", "parent": "/usr/include/linux/tc_ematch", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 255, "date": "Jan 17 13:59"}, {"filename": "tc_em_text.h", "parent": "/usr/include/linux/tc_ematch", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 384, "date": "Jan 17 13:59"}, {"filename": ".", "parent": "/usr/include/linux/usb", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "..", "parent": "/usr/include/linux/usb", "flags": "drwxr-xr-x", "links": 28, "owner": "root", "group": "root", "size": 69632, "date": "Feb 5 06:03"}, {"filename": "audio.h", "parent": "/usr/include/linux/usb", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 17126, "date": "Jan 17 13:59"}, {"filename": "cdc.h", "parent": "/usr/include/linux/usb", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 12962, "date": "Jan 17 13:59"}, {"filename": "cdc-wdm.h", "parent": "/usr/include/linux/usb", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 739, "date": "Jan 17 13:59"}, {"filename": "ch11.h", "parent": "/usr/include/linux/usb", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8987, "date": "Jan 17 13:59"}, {"filename": "ch9.h", "parent": "/usr/include/linux/usb", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 38723, "date": "Jan 17 13:59"}, {"filename": "charger.h", "parent": "/usr/include/linux/usb", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 566, "date": "Jan 17 13:59"}, {"filename": "functionfs.h", "parent": "/usr/include/linux/usb", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 10370, "date": "Jan 17 13:59"}, {"filename": "gadgetfs.h", "parent": "/usr/include/linux/usb", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2818, "date": "Jan 17 13:59"}, {"filename": "g_printer.h", "parent": "/usr/include/linux/usb", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1385, "date": "Jan 17 13:59"}, {"filename": "midi.h", "parent": "/usr/include/linux/usb", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3434, "date": "Jan 17 13:59"}, {"filename": "tmc.h", "parent": "/usr/include/linux/usb", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2785, "date": "Jan 17 13:59"}, {"filename": "video.h", "parent": "/usr/include/linux/usb", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 16212, "date": "Jan 17 13:59"}, {"filename": ".", "parent": "/usr/include/linux/wimax", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "..", "parent": "/usr/include/linux/wimax", "flags": "drwxr-xr-x", "links": 28, "owner": "root", "group": "root", "size": 69632, "date": "Feb 5 06:03"}, {"filename": "i2400m.h", "parent": "/usr/include/linux/wimax", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 15930, "date": "Jan 17 13:59"}, {"filename": ".", "parent": "/usr/include/misc", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "..", "parent": "/usr/include/misc", "flags": "drwxr-xr-x", "links": 34, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "cxl.h", "parent": "/usr/include/misc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3936, "date": "Jan 17 13:59"}, {"filename": "ocxl.h", "parent": "/usr/include/misc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1926, "date": "Jan 17 13:59"}, {"filename": ".", "parent": "/usr/include/mtd", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "..", "parent": "/usr/include/mtd", "flags": "drwxr-xr-x", "links": 34, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "inftl-user.h", "parent": "/usr/include/mtd", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1644, "date": "Jan 17 13:59"}, {"filename": "mtd-abi.h", "parent": "/usr/include/mtd", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9717, "date": "Jan 17 13:59"}, {"filename": "mtd-user.h", "parent": "/usr/include/mtd", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1242, "date": "Jan 17 13:59"}, {"filename": "nftl-user.h", "parent": "/usr/include/mtd", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2116, "date": "Jan 17 13:59"}, {"filename": "ubi-user.h", "parent": "/usr/include/mtd", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 17674, "date": "Jan 17 13:59"}, {"filename": ".", "parent": "/usr/include/net", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/net", "flags": "drwxr-xr-x", "links": 34, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "ethernet.h", "parent": "/usr/include/net", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3135, "date": "Apr 16 2018"}, {"filename": "if_arp.h", "parent": "/usr/include/net", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7131, "date": "Apr 16 2018"}, {"filename": "if.h", "parent": "/usr/include/net", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6981, "date": "Apr 16 2018"}, {"filename": "if_packet.h", "parent": "/usr/include/net", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1261, "date": "Apr 16 2018"}, {"filename": "if_ppp.h", "parent": "/usr/include/net", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6714, "date": "Apr 16 2018"}, {"filename": "if_shaper.h", "parent": "/usr/include/net", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1624, "date": "Apr 16 2018"}, {"filename": "if_slip.h", "parent": "/usr/include/net", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 932, "date": "Apr 16 2018"}, {"filename": "ppp-comp.h", "parent": "/usr/include/net", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 28, "date": "Apr 16 2018"}, {"filename": "ppp_defs.h", "parent": "/usr/include/net", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 162, "date": "Apr 16 2018"}, {"filename": "route.h", "parent": "/usr/include/net", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4703, "date": "Apr 16 2018"}, {"filename": ".", "parent": "/usr/include/netash", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/netash", "flags": "drwxr-xr-x", "links": 34, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "ash.h", "parent": "/usr/include/netash", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1362, "date": "Apr 16 2018"}, {"filename": ".", "parent": "/usr/include/netatalk", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/netatalk", "flags": "drwxr-xr-x", "links": 34, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "at.h", "parent": "/usr/include/netatalk", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1028, "date": "Apr 16 2018"}, {"filename": ".", "parent": "/usr/include/netax25", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/netax25", "flags": "drwxr-xr-x", "links": 34, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "ax25.h", "parent": "/usr/include/netax25", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4809, "date": "Apr 16 2018"}, {"filename": ".", "parent": "/usr/include/neteconet", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/neteconet", "flags": "drwxr-xr-x", "links": 34, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "ec.h", "parent": "/usr/include/neteconet", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1667, "date": "Apr 16 2018"}, {"filename": ".", "parent": "/usr/include/netinet", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/netinet", "flags": "drwxr-xr-x", "links": 34, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "ether.h", "parent": "/usr/include/netinet", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1984, "date": "Apr 16 2018"}, {"filename": "icmp6.h", "parent": "/usr/include/netinet", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 11514, "date": "Apr 16 2018"}, {"filename": "if_ether.h", "parent": "/usr/include/netinet", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3975, "date": "Apr 16 2018"}, {"filename": "if_fddi.h", "parent": "/usr/include/netinet", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1185, "date": "Apr 16 2018"}, {"filename": "if_tr.h", "parent": "/usr/include/netinet", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3691, "date": "Apr 16 2018"}, {"filename": "igmp.h", "parent": "/usr/include/netinet", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4610, "date": "Apr 16 2018"}, {"filename": "in.h", "parent": "/usr/include/netinet", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 21625, "date": "Apr 16 2018"}, {"filename": "in_systm.h", "parent": "/usr/include/netinet", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1493, "date": "Apr 16 2018"}, {"filename": "ip6.h", "parent": "/usr/include/netinet", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5393, "date": "Apr 16 2018"}, {"filename": "ip.h", "parent": "/usr/include/netinet", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9435, "date": "Apr 16 2018"}, {"filename": "ip_icmp.h", "parent": "/usr/include/netinet", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 10126, "date": "Apr 16 2018"}, {"filename": "tcp.h", "parent": "/usr/include/netinet", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9780, "date": "Apr 16 2018"}, {"filename": "udp.h", "parent": "/usr/include/netinet", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3646, "date": "Apr 16 2018"}, {"filename": ".", "parent": "/usr/include/netipx", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/netipx", "flags": "drwxr-xr-x", "links": 34, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "ipx.h", "parent": "/usr/include/netipx", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2899, "date": "Apr 16 2018"}, {"filename": ".", "parent": "/usr/include/netiucv", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/netiucv", "flags": "drwxr-xr-x", "links": 34, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "iucv.h", "parent": "/usr/include/netiucv", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1593, "date": "Apr 16 2018"}, {"filename": ".", "parent": "/usr/include/netpacket", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/netpacket", "flags": "drwxr-xr-x", "links": 34, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "packet.h", "parent": "/usr/include/netpacket", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2402, "date": "Apr 16 2018"}, {"filename": ".", "parent": "/usr/include/netrom", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/netrom", "flags": "drwxr-xr-x", "links": 34, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "netrom.h", "parent": "/usr/include/netrom", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2225, "date": "Apr 16 2018"}, {"filename": ".", "parent": "/usr/include/netrose", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/netrose", "flags": "drwxr-xr-x", "links": 34, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "rose.h", "parent": "/usr/include/netrose", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3183, "date": "Apr 16 2018"}, {"filename": ".", "parent": "/usr/include/nfs", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/nfs", "flags": "drwxr-xr-x", "links": 34, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "nfs.h", "parent": "/usr/include/nfs", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 23, "date": "Apr 16 2018"}, {"filename": ".", "parent": "/usr/include/protocols", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/protocols", "flags": "drwxr-xr-x", "links": 34, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "routed.h", "parent": "/usr/include/protocols", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3844, "date": "Apr 16 2018"}, {"filename": "rwhod.h", "parent": "/usr/include/protocols", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2567, "date": "Apr 16 2018"}, {"filename": "talkd.h", "parent": "/usr/include/protocols", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4826, "date": "Apr 16 2018"}, {"filename": "timed.h", "parent": "/usr/include/protocols", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3881, "date": "Apr 16 2018"}, {"filename": ".", "parent": "/usr/include/python3.6m", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/python3.6m", "flags": "drwxr-xr-x", "links": 34, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "abstract.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 47451, "date": "Oct 7 12:59"}, {"filename": "accu.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1016, "date": "Oct 7 12:59"}, {"filename": "asdl.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1213, "date": "Oct 7 12:59"}, {"filename": "ast.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 477, "date": "Oct 7 12:59"}, {"filename": "bitset.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 792, "date": "Oct 7 12:59"}, {"filename": "bltinmodule.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 264, "date": "Oct 7 12:59"}, {"filename": "boolobject.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 886, "date": "Oct 7 12:59"}, {"filename": "bytearrayobject.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2114, "date": "Oct 7 12:59"}, {"filename": "bytes_methods.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3191, "date": "Oct 7 12:59"}, {"filename": "bytesobject.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8363, "date": "Oct 7 12:59"}, {"filename": "cellobject.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 701, "date": "Oct 7 12:59"}, {"filename": "ceval.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8524, "date": "Oct 7 12:59"}, {"filename": "classobject.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1666, "date": "Oct 7 12:59"}, {"filename": "codecs.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6793, "date": "Oct 7 12:59"}, {"filename": "code.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5945, "date": "Oct 7 12:59"}, {"filename": "compile.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2164, "date": "Oct 7 12:59"}, {"filename": "complexobject.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1807, "date": "Oct 7 12:59"}, {"filename": "datetime.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9414, "date": "Oct 7 12:59"}, {"filename": "descrobject.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2964, "date": "Oct 7 12:59"}, {"filename": "dictobject.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7178, "date": "Oct 7 12:59"}, {"filename": "dtoa.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 458, "date": "Oct 7 12:59"}, {"filename": "dynamic_annotations.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 22469, "date": "Oct 7 12:59"}, {"filename": "enumobject.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 253, "date": "Oct 7 12:59"}, {"filename": "errcode.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1497, "date": "Oct 7 12:59"}, {"filename": "eval.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 597, "date": "Oct 7 12:59"}, {"filename": "fileobject.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1651, "date": "Oct 7 12:59"}, {"filename": "fileutils.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3524, "date": "Oct 7 12:59"}, {"filename": "floatobject.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4794, "date": "Oct 7 12:59"}, {"filename": "frameobject.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3530, "date": "Oct 7 12:59"}, {"filename": "funcobject.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4079, "date": "Oct 7 12:59"}, {"filename": "genobject.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3583, "date": "Oct 7 12:59"}, {"filename": "graminit.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1966, "date": "Oct 7 12:59"}, {"filename": "grammar.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2074, "date": "Oct 7 12:59"}, {"filename": "import.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4233, "date": "Oct 7 12:59"}, {"filename": "intrcheck.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 513, "date": "Oct 7 12:59"}, {"filename": "iterobject.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 567, "date": "Oct 7 12:59"}, {"filename": "listobject.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2900, "date": "Oct 7 12:59"}, {"filename": "longintrepr.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3761, "date": "Oct 7 12:59"}, {"filename": "longobject.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8471, "date": "Oct 7 12:59"}, {"filename": "marshal.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 803, "date": "Oct 7 12:59"}, {"filename": "memoryobject.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2765, "date": "Oct 7 12:59"}, {"filename": "metagrammar.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 253, "date": "Oct 7 12:59"}, {"filename": "methodobject.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3847, "date": "Oct 7 12:59"}, {"filename": "modsupport.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7317, "date": "Oct 7 12:59"}, {"filename": "moduleobject.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2285, "date": "Oct 7 12:59"}, {"filename": "namespaceobject.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 349, "date": "Oct 7 12:59"}, {"filename": "node.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1007, "date": "Oct 7 12:59"}, {"filename": "object.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 40373, "date": "Oct 7 12:59"}, {"filename": "objimpl.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 14244, "date": "Oct 7 12:59"}, {"filename": "odictobject.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1288, "date": "Oct 7 12:59"}, {"filename": "opcode.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5073, "date": "Oct 7 12:59"}, {"filename": "osdefs.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 691, "date": "Oct 7 12:59"}, {"filename": "osmodule.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 291, "date": "Oct 7 12:59"}, {"filename": "parsetok.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2885, "date": "Oct 7 12:59"}, {"filename": "patchlevel.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1128, "date": "Oct 7 12:59"}, {"filename": "pgen.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 253, "date": "Oct 7 12:59"}, {"filename": "pgenheaders.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1180, "date": "Oct 7 12:59"}, {"filename": "pyarena.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2744, "date": "Oct 7 12:59"}, {"filename": "pyatomic.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8128, "date": "Oct 7 12:59"}, {"filename": "pycapsule.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1726, "date": "Oct 7 12:59"}, {"filename": "pyconfig.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4086, "date": "Oct 7 12:59"}, {"filename": "pyctype.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1320, "date": "Oct 7 12:59"}, {"filename": "py_curses.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4307, "date": "Oct 7 12:59"}, {"filename": "pydebug.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1209, "date": "Oct 7 12:59"}, {"filename": "pydtrace.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1970, "date": "Oct 7 12:59"}, {"filename": "pyerrors.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 17219, "date": "Oct 7 12:59"}, {"filename": "pyexpat.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2450, "date": "Oct 7 12:59"}, {"filename": "pyfpe.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8471, "date": "Oct 7 12:59"}, {"filename": "pygetopt.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 410, "date": "Oct 7 12:59"}, {"filename": "pyhash.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4139, "date": "Oct 7 12:59"}, {"filename": "pylifecycle.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4078, "date": "Oct 7 12:59"}, {"filename": "pymacconfig.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2989, "date": "Oct 7 12:59"}, {"filename": "pymacro.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3500, "date": "Oct 7 12:59"}, {"filename": "pymath.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8312, "date": "Oct 7 12:59"}, {"filename": "pymem.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8557, "date": "Oct 7 12:59"}, {"filename": "pyport.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 27573, "date": "Oct 7 12:59"}, {"filename": "pystate.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 11146, "date": "Oct 7 12:59"}, {"filename": "pystrcmp.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 436, "date": "Oct 7 12:59"}, {"filename": "pystrhex.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 495, "date": "Oct 7 12:59"}, {"filename": "pystrtod.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1483, "date": "Oct 7 12:59"}, {"filename": "Python-ast.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 22274, "date": "Oct 7 12:59"}, {"filename": "Python.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3221, "date": "Oct 7 12:59"}, {"filename": "pythonrun.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6782, "date": "Oct 7 12:59"}, {"filename": "pythread.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2992, "date": "Oct 7 12:59"}, {"filename": "pytime.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7609, "date": "Oct 7 12:59"}, {"filename": "rangeobject.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 629, "date": "Oct 7 12:59"}, {"filename": "setobject.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3333, "date": "Oct 7 12:59"}, {"filename": "sliceobject.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2485, "date": "Oct 7 12:59"}, {"filename": "structmember.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2018, "date": "Oct 7 12:59"}, {"filename": "structseq.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1353, "date": "Oct 7 12:59"}, {"filename": "symtable.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4994, "date": "Oct 7 12:59"}, {"filename": "sysmodule.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1355, "date": "Oct 7 12:59"}, {"filename": "token.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1943, "date": "Oct 7 12:59"}, {"filename": "traceback.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3644, "date": "Oct 7 12:59"}, {"filename": "tupleobject.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2444, "date": "Oct 7 12:59"}, {"filename": "typeslots.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2253, "date": "Oct 7 12:59"}, {"filename": "ucnhash.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1056, "date": "Oct 7 12:59"}, {"filename": "unicodeobject.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 81779, "date": "Oct 7 12:59"}, {"filename": "warnings.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1693, "date": "Oct 7 12:59"}, {"filename": "weakrefobject.h", "parent": "/usr/include/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2866, "date": "Oct 7 12:59"}, {"filename": ".", "parent": "/usr/include/rdma", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "..", "parent": "/usr/include/rdma", "flags": "drwxr-xr-x", "links": 34, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "bnxt_re-abi.h", "parent": "/usr/include/rdma", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2657, "date": "Jan 17 13:59"}, {"filename": "cxgb3-abi.h", "parent": "/usr/include/rdma", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2374, "date": "Jan 17 13:59"}, {"filename": "cxgb4-abi.h", "parent": "/usr/include/rdma", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2571, "date": "Jan 17 13:59"}, {"filename": "hfi", "parent": "/usr/include/rdma", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "hns-abi.h", "parent": "/usr/include/rdma", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2130, "date": "Jan 17 13:59"}, {"filename": "ib_user_cm.h", "parent": "/usr/include/rdma", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6609, "date": "Jan 17 13:59"}, {"filename": "ib_user_ioctl_verbs.h", "parent": "/usr/include/rdma", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2436, "date": "Jan 17 13:59"}, {"filename": "ib_user_mad.h", "parent": "/usr/include/rdma", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8517, "date": "Jan 17 13:59"}, {"filename": "ib_user_sa.h", "parent": "/usr/include/rdma", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2305, "date": "Jan 17 13:59"}, {"filename": "ib_user_verbs.h", "parent": "/usr/include/rdma", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 23714, "date": "Jan 17 13:59"}, {"filename": "mlx4-abi.h", "parent": "/usr/include/rdma", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4140, "date": "Jan 17 13:59"}, {"filename": "mlx5-abi.h", "parent": "/usr/include/rdma", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9401, "date": "Jan 17 13:59"}, {"filename": "mthca-abi.h", "parent": "/usr/include/rdma", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3015, "date": "Jan 17 13:59"}, {"filename": "nes-abi.h", "parent": "/usr/include/rdma", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3463, "date": "Jan 17 13:59"}, {"filename": "ocrdma-abi.h", "parent": "/usr/include/rdma", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4016, "date": "Jan 17 13:59"}, {"filename": "qedr-abi.h", "parent": "/usr/include/rdma", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2699, "date": "Jan 17 13:59"}, {"filename": "rdma_netlink.h", "parent": "/usr/include/rdma", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7008, "date": "Jan 17 13:59"}, {"filename": "rdma_user_cm.h", "parent": "/usr/include/rdma", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6326, "date": "Jan 17 13:59"}, {"filename": "rdma_user_ioctl.h", "parent": "/usr/include/rdma", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4611, "date": "Jan 17 13:59"}, {"filename": "rdma_user_rxe.h", "parent": "/usr/include/rdma", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3215, "date": "Jan 17 13:59"}, {"filename": "vmw_pvrdma-abi.h", "parent": "/usr/include/rdma", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7484, "date": "Jan 17 13:59"}, {"filename": ".", "parent": "/usr/include/rdma/hfi", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "..", "parent": "/usr/include/rdma/hfi", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "hfi1_ioctl.h", "parent": "/usr/include/rdma/hfi", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6490, "date": "Jan 17 13:59"}, {"filename": "hfi1_user.h", "parent": "/usr/include/rdma/hfi", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9077, "date": "Jan 17 13:59"}, {"filename": ".", "parent": "/usr/include/reglib", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 12 2019"}, {"filename": "..", "parent": "/usr/include/reglib", "flags": "drwxr-xr-x", "links": 34, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "nl80211.h", "parent": "/usr/include/reglib", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 169149, "date": "Feb 5 2018"}, {"filename": "regdb.h", "parent": "/usr/include/reglib", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4149, "date": "Feb 5 2018"}, {"filename": "reglib.h", "parent": "/usr/include/reglib", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7240, "date": "Feb 5 2018"}, {"filename": ".", "parent": "/usr/include/rpc", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/rpc", "flags": "drwxr-xr-x", "links": 34, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "auth_des.h", "parent": "/usr/include/rpc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3559, "date": "Apr 16 2018"}, {"filename": "auth.h", "parent": "/usr/include/rpc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6634, "date": "Apr 16 2018"}, {"filename": "auth_unix.h", "parent": "/usr/include/rpc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2914, "date": "Apr 16 2018"}, {"filename": "clnt.h", "parent": "/usr/include/rpc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 12531, "date": "Apr 16 2018"}, {"filename": "des_crypt.h", "parent": "/usr/include/rpc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3383, "date": "Apr 16 2018"}, {"filename": "key_prot.h", "parent": "/usr/include/rpc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 11756, "date": "Apr 16 2018"}, {"filename": "netdb.h", "parent": "/usr/include/rpc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2897, "date": "Apr 16 2018"}, {"filename": "pmap_clnt.h", "parent": "/usr/include/rpc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3837, "date": "Apr 16 2018"}, {"filename": "pmap_prot.h", "parent": "/usr/include/rpc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3810, "date": "Apr 16 2018"}, {"filename": "pmap_rmt.h", "parent": "/usr/include/rpc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2311, "date": "Apr 16 2018"}, {"filename": "rpc_des.h", "parent": "/usr/include/rpc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2511, "date": "Apr 16 2018"}, {"filename": "rpc.h", "parent": "/usr/include/rpc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3938, "date": "Apr 16 2018"}, {"filename": "rpc_msg.h", "parent": "/usr/include/rpc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4753, "date": "Apr 16 2018"}, {"filename": "svc_auth.h", "parent": "/usr/include/rpc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1976, "date": "Apr 16 2018"}, {"filename": "svc.h", "parent": "/usr/include/rpc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 11524, "date": "Apr 16 2018"}, {"filename": "types.h", "parent": "/usr/include/rpc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3233, "date": "Apr 16 2018"}, {"filename": "xdr.h", "parent": "/usr/include/rpc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 14577, "date": "Apr 16 2018"}, {"filename": ".", "parent": "/usr/include/rpcsvc", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/rpcsvc", "flags": "drwxr-xr-x", "links": 34, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "bootparam.h", "parent": "/usr/include/rpcsvc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 916, "date": "Apr 16 2018"}, {"filename": "bootparam_prot.h", "parent": "/usr/include/rpcsvc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3188, "date": "Apr 16 2018"}, {"filename": "bootparam_prot.x", "parent": "/usr/include/rpcsvc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3120, "date": "Apr 16 2018"}, {"filename": "key_prot.h", "parent": "/usr/include/rpcsvc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6757, "date": "Apr 16 2018"}, {"filename": "key_prot.x", "parent": "/usr/include/rpcsvc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6568, "date": "Apr 16 2018"}, {"filename": "klm_prot.h", "parent": "/usr/include/rpcsvc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3290, "date": "Apr 16 2018"}, {"filename": "klm_prot.x", "parent": "/usr/include/rpcsvc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3741, "date": "Apr 16 2018"}, {"filename": "mount.h", "parent": "/usr/include/rpcsvc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3863, "date": "Apr 16 2018"}, {"filename": "mount.x", "parent": "/usr/include/rpcsvc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4665, "date": "Apr 16 2018"}, {"filename": "nfs_prot.h", "parent": "/usr/include/rpcsvc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 11448, "date": "Apr 16 2018"}, {"filename": "nfs_prot.x", "parent": "/usr/include/rpcsvc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7986, "date": "Apr 16 2018"}, {"filename": "nis_callback.h", "parent": "/usr/include/rpcsvc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2704, "date": "Apr 16 2018"}, {"filename": "nis_callback.x", "parent": "/usr/include/rpcsvc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2178, "date": "Apr 16 2018"}, {"filename": "nis.h", "parent": "/usr/include/rpcsvc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 16210, "date": "Apr 16 2018"}, {"filename": "nislib.h", "parent": "/usr/include/rpcsvc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 12892, "date": "Apr 16 2018"}, {"filename": "nis_object.x", "parent": "/usr/include/rpcsvc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 13090, "date": "Apr 16 2018"}, {"filename": "nis_tags.h", "parent": "/usr/include/rpcsvc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5370, "date": "Apr 16 2018"}, {"filename": "nis.x", "parent": "/usr/include/rpcsvc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 16802, "date": "Apr 16 2018"}, {"filename": "nlm_prot.h", "parent": "/usr/include/rpcsvc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9374, "date": "Apr 16 2018"}, {"filename": "nlm_prot.x", "parent": "/usr/include/rpcsvc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4990, "date": "Apr 16 2018"}, {"filename": "rex.h", "parent": "/usr/include/rpcsvc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5252, "date": "Apr 16 2018"}, {"filename": "rex.x", "parent": "/usr/include/rpcsvc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7422, "date": "Apr 16 2018"}, {"filename": "rquota.h", "parent": "/usr/include/rpcsvc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2249, "date": "Apr 16 2018"}, {"filename": "rquota.x", "parent": "/usr/include/rpcsvc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1568, "date": "Apr 16 2018"}, {"filename": "rstat.h", "parent": "/usr/include/rpcsvc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4045, "date": "Apr 16 2018"}, {"filename": "rstat.x", "parent": "/usr/include/rpcsvc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4001, "date": "Apr 16 2018"}, {"filename": "rusers.h", "parent": "/usr/include/rpcsvc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3279, "date": "Apr 16 2018"}, {"filename": "rusers.x", "parent": "/usr/include/rpcsvc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5866, "date": "Apr 16 2018"}, {"filename": "sm_inter.h", "parent": "/usr/include/rpcsvc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3173, "date": "Apr 16 2018"}, {"filename": "sm_inter.x", "parent": "/usr/include/rpcsvc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3752, "date": "Apr 16 2018"}, {"filename": "spray.h", "parent": "/usr/include/rpcsvc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1887, "date": "Apr 16 2018"}, {"filename": "spray.x", "parent": "/usr/include/rpcsvc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2543, "date": "Apr 16 2018"}, {"filename": "ypclnt.h", "parent": "/usr/include/rpcsvc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3500, "date": "Apr 16 2018"}, {"filename": "yp.h", "parent": "/usr/include/rpcsvc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9916, "date": "Apr 16 2018"}, {"filename": "yppasswd.h", "parent": "/usr/include/rpcsvc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1285, "date": "Apr 16 2018"}, {"filename": "yppasswd.x", "parent": "/usr/include/rpcsvc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2286, "date": "Apr 16 2018"}, {"filename": "yp_prot.h", "parent": "/usr/include/rpcsvc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 10499, "date": "Apr 16 2018"}, {"filename": "ypupd.h", "parent": "/usr/include/rpcsvc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3007, "date": "Apr 16 2018"}, {"filename": "yp.x", "parent": "/usr/include/rpcsvc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7198, "date": "Apr 16 2018"}, {"filename": ".", "parent": "/usr/include/scsi", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "..", "parent": "/usr/include/scsi", "flags": "drwxr-xr-x", "links": 34, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "cxlflash_ioctl.h", "parent": "/usr/include/scsi", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 10168, "date": "Jan 17 13:59"}, {"filename": "fc", "parent": "/usr/include/scsi", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "scsi_bsg_fc.h", "parent": "/usr/include/scsi", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8817, "date": "Jan 17 13:59"}, {"filename": "scsi.h", "parent": "/usr/include/scsi", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6969, "date": "Apr 16 2018"}, {"filename": "scsi_ioctl.h", "parent": "/usr/include/scsi", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1315, "date": "Apr 16 2018"}, {"filename": "scsi_netlink_fc.h", "parent": "/usr/include/scsi", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1993, "date": "Jan 17 13:59"}, {"filename": "scsi_netlink.h", "parent": "/usr/include/scsi", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3666, "date": "Jan 17 13:59"}, {"filename": "sg.h", "parent": "/usr/include/scsi", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 11661, "date": "Apr 16 2018"}, {"filename": ".", "parent": "/usr/include/scsi/fc", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "..", "parent": "/usr/include/scsi/fc", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "fc_els.h", "parent": "/usr/include/scsi/fc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 26667, "date": "Jan 17 13:59"}, {"filename": "fc_fs.h", "parent": "/usr/include/scsi/fc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 12367, "date": "Jan 17 13:59"}, {"filename": "fc_gs.h", "parent": "/usr/include/scsi/fc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2895, "date": "Jan 17 13:59"}, {"filename": "fc_ns.h", "parent": "/usr/include/scsi/fc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4981, "date": "Jan 17 13:59"}, {"filename": ".", "parent": "/usr/include/sound", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "..", "parent": "/usr/include/sound", "flags": "drwxr-xr-x", "links": 34, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "asequencer.h", "parent": "/usr/include/sound", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 21847, "date": "Jan 17 13:59"}, {"filename": "asoc.h", "parent": "/usr/include/sound", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 19733, "date": "Jan 17 13:59"}, {"filename": "asound_fm.h", "parent": "/usr/include/sound", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4377, "date": "Jan 17 13:59"}, {"filename": "asound.h", "parent": "/usr/include/sound", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 45851, "date": "Jan 17 13:59"}, {"filename": "compress_offload.h", "parent": "/usr/include/sound", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6743, "date": "Jan 17 13:59"}, {"filename": "compress_params.h", "parent": "/usr/include/sound", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 16992, "date": "Jan 17 13:59"}, {"filename": "emu10k1.h", "parent": "/usr/include/sound", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 17240, "date": "Jan 17 13:59"}, {"filename": "firewire.h", "parent": "/usr/include/sound", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2697, "date": "Jan 17 13:59"}, {"filename": "hdsp.h", "parent": "/usr/include/sound", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3140, "date": "Jan 17 13:59"}, {"filename": "hdspm.h", "parent": "/usr/include/sound", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5486, "date": "Jan 17 13:59"}, {"filename": "sb16_csp.h", "parent": "/usr/include/sound", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4304, "date": "Jan 17 13:59"}, {"filename": "sfnt_info.h", "parent": "/usr/include/sound", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7494, "date": "Jan 17 13:59"}, {"filename": "snd_sst_tokens.h", "parent": "/usr/include/sound", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 11574, "date": "Jan 17 13:59"}, {"filename": "tlv.h", "parent": "/usr/include/sound", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4041, "date": "Jan 17 13:59"}, {"filename": "usb_stream.h", "parent": "/usr/include/sound", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1939, "date": "Jan 17 13:59"}, {"filename": ".", "parent": "/usr/include/video", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "..", "parent": "/usr/include/video", "flags": "drwxr-xr-x", "links": 34, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "edid.h", "parent": "/usr/include/video", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 213, "date": "Jan 17 13:59"}, {"filename": "sisfb.h", "parent": "/usr/include/video", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7643, "date": "Jan 17 13:59"}, {"filename": "uvesafb.h", "parent": "/usr/include/video", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1078, "date": "Jan 17 13:59"}, {"filename": ".", "parent": "/usr/include/x86_64-linux-gnu", "flags": "drwxr-xr-x", "links": 8, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/x86_64-linux-gnu", "flags": "drwxr-xr-x", "links": 34, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "a.out.h", "parent": "/usr/include/x86_64-linux-gnu", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4350, "date": "Apr 16 2018"}, {"filename": "asm", "parent": "/usr/include/x86_64-linux-gnu", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 12288, "date": "Feb 5 06:03"}, {"filename": "bits", "parent": "/usr/include/x86_64-linux-gnu", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 12288, "date": "Oct 18 00:14"}, {"filename": "c++", "parent": "/usr/include/x86_64-linux-gnu", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "expat_config.h", "parent": "/usr/include/x86_64-linux-gnu", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3517, "date": "Sep 10 18:05"}, {"filename": "fpu_control.h", "parent": "/usr/include/x86_64-linux-gnu", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3583, "date": "Apr 16 2018"}, {"filename": "gnu", "parent": "/usr/include/x86_64-linux-gnu", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "ieee754.h", "parent": "/usr/include/x86_64-linux-gnu", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4910, "date": "Apr 16 2018"}, {"filename": "python3.6m", "parent": "/usr/include/x86_64-linux-gnu", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "sys", "parent": "/usr/include/x86_64-linux-gnu", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": ".", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 12288, "date": "Feb 5 06:03"}, {"filename": "..", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "drwxr-xr-x", "links": 8, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "a.out.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 756, "date": "Jan 17 13:59"}, {"filename": "auxvec.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 546, "date": "Jan 17 13:59"}, {"filename": "bitsperlong.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 321, "date": "Jan 17 13:59"}, {"filename": "boot.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 323, "date": "Jan 17 13:59"}, {"filename": "bootparam.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7141, "date": "Jan 17 13:59"}, {"filename": "bpf_perf_event.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 40, "date": "Jan 17 13:59"}, {"filename": "byteorder.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 176, "date": "Jan 17 13:59"}, {"filename": "debugreg.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3285, "date": "Jan 17 13:59"}, {"filename": "e820.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2579, "date": "Jan 17 13:59"}, {"filename": "errno.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 31, "date": "Jan 17 13:59"}, {"filename": "fcntl.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 31, "date": "Jan 17 13:59"}, {"filename": "hw_breakpoint.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 69, "date": "Jan 17 13:59"}, {"filename": "hwcap2.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 174, "date": "Jan 17 13:59"}, {"filename": "hyperv.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 13035, "date": "Jan 17 13:59"}, {"filename": "ioctl.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 31, "date": "Jan 17 13:59"}, {"filename": "ioctls.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 32, "date": "Jan 17 13:59"}, {"filename": "ipcbuf.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 32, "date": "Jan 17 13:59"}, {"filename": "ist.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 854, "date": "Jan 17 13:59"}, {"filename": "kvm.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7152, "date": "Jan 17 13:59"}, {"filename": "kvm_para.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2976, "date": "Jan 17 13:59"}, {"filename": "kvm_perf.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 388, "date": "Jan 17 13:59"}, {"filename": "ldt.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1306, "date": "Jan 17 13:59"}, {"filename": "mce.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1312, "date": "Jan 17 13:59"}, {"filename": "mman.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1002, "date": "Jan 17 13:59"}, {"filename": "msgbuf.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1053, "date": "Jan 17 13:59"}, {"filename": "msr.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 346, "date": "Jan 17 13:59"}, {"filename": "mtrr.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4225, "date": "Jan 17 13:59"}, {"filename": "param.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 31, "date": "Jan 17 13:59"}, {"filename": "perf_regs.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 717, "date": "Jan 17 13:59"}, {"filename": "poll.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 30, "date": "Jan 17 13:59"}, {"filename": "posix_types_32.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 765, "date": "Jan 17 13:59"}, {"filename": "posix_types_64.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 609, "date": "Jan 17 13:59"}, {"filename": "posix_types.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 224, "date": "Jan 17 13:59"}, {"filename": "posix_types_x32.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 581, "date": "Jan 17 13:59"}, {"filename": "prctl.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 418, "date": "Jan 17 13:59"}, {"filename": "processor-flags.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6623, "date": "Jan 17 13:59"}, {"filename": "ptrace-abi.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2037, "date": "Jan 17 13:59"}, {"filename": "ptrace.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1495, "date": "Jan 17 13:59"}, {"filename": "resource.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 34, "date": "Jan 17 13:59"}, {"filename": "sembuf.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 777, "date": "Jan 17 13:59"}, {"filename": "setup.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6, "date": "Jan 17 13:59"}, {"filename": "shmbuf.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1258, "date": "Jan 17 13:59"}, {"filename": "sigcontext32.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 247, "date": "Jan 17 13:59"}, {"filename": "sigcontext.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9724, "date": "Jan 17 13:59"}, {"filename": "siginfo.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 494, "date": "Jan 17 13:59"}, {"filename": "signal.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2901, "date": "Jan 17 13:59"}, {"filename": "socket.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 32, "date": "Jan 17 13:59"}, {"filename": "sockios.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 33, "date": "Jan 17 13:59"}, {"filename": "statfs.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 416, "date": "Jan 17 13:59"}, {"filename": "stat.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3131, "date": "Jan 17 13:59"}, {"filename": "svm.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7031, "date": "Jan 17 13:59"}, {"filename": "swab.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 724, "date": "Jan 17 13:59"}, {"filename": "termbits.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 34, "date": "Jan 17 13:59"}, {"filename": "termios.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 33, "date": "Jan 17 13:59"}, {"filename": "types.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 152, "date": "Jan 17 13:59"}, {"filename": "ucontext.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2117, "date": "Jan 17 13:59"}, {"filename": "unistd_32.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 10136, "date": "Jan 17 13:59"}, {"filename": "unistd_64.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8893, "date": "Jan 17 13:59"}, {"filename": "unistd.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 359, "date": "Jan 17 13:59"}, {"filename": "unistd_x32.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 15666, "date": "Jan 17 13:59"}, {"filename": "vm86.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3118, "date": "Jan 17 13:59"}, {"filename": "vmx.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6749, "date": "Jan 17 13:59"}, {"filename": "vsyscall.h", "parent": "/usr/include/x86_64-linux-gnu/asm", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 263, "date": "Jan 17 13:59"}, {"filename": ".", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 12288, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "drwxr-xr-x", "links": 8, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "a.out.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 268, "date": "Apr 16 2018"}, {"filename": "auxv.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3475, "date": "Apr 16 2018"}, {"filename": "byteswap-16.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1731, "date": "Apr 16 2018"}, {"filename": "byteswap.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5664, "date": "Apr 16 2018"}, {"filename": "cmathcalls.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4138, "date": "Apr 16 2018"}, {"filename": "confname.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 23708, "date": "Apr 16 2018"}, {"filename": "cpu-set.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4515, "date": "Apr 16 2018"}, {"filename": "dirent.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1728, "date": "Apr 16 2018"}, {"filename": "dlfcn.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2520, "date": "Apr 16 2018"}, {"filename": "elfclass.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 426, "date": "Apr 16 2018"}, {"filename": "endian.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 176, "date": "Apr 16 2018"}, {"filename": "environments.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3790, "date": "Apr 16 2018"}, {"filename": "epoll.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1070, "date": "Apr 16 2018"}, {"filename": "errno.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1425, "date": "Apr 16 2018"}, {"filename": "error.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2683, "date": "Apr 16 2018"}, {"filename": "eventfd.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1128, "date": "Apr 16 2018"}, {"filename": "fcntl2.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5574, "date": "Apr 16 2018"}, {"filename": "fcntl.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2245, "date": "Apr 16 2018"}, {"filename": "fcntl-linux.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 14359, "date": "Apr 16 2018"}, {"filename": "fenv.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4606, "date": "Apr 16 2018"}, {"filename": "fenvinline.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 190, "date": "Apr 16 2018"}, {"filename": "floatn-common.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9419, "date": "Apr 16 2018"}, {"filename": "floatn.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4423, "date": "Apr 16 2018"}, {"filename": "flt-eval-method.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1214, "date": "Apr 16 2018"}, {"filename": "fp-fast.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1215, "date": "Apr 16 2018"}, {"filename": "fp-logb.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1011, "date": "Apr 16 2018"}, {"filename": "_G_config.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1440, "date": "Apr 16 2018"}, {"filename": "getopt_core.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3666, "date": "Apr 16 2018"}, {"filename": "getopt_ext.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3037, "date": "Apr 16 2018"}, {"filename": "getopt_posix.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1809, "date": "Apr 16 2018"}, {"filename": "hwcap.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 971, "date": "Apr 16 2018"}, {"filename": "in.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9440, "date": "Apr 16 2018"}, {"filename": "initspin.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 25, "date": "Apr 16 2018"}, {"filename": "inotify.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1079, "date": "Apr 16 2018"}, {"filename": "ioctls.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4477, "date": "Apr 16 2018"}, {"filename": "ioctl-types.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2455, "date": "Apr 16 2018"}, {"filename": "ipc.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2070, "date": "Apr 16 2018"}, {"filename": "ipctypes.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1175, "date": "Apr 16 2018"}, {"filename": "iscanonical.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2478, "date": "Apr 16 2018"}, {"filename": "libc-header-start.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2607, "date": "Apr 16 2018"}, {"filename": "libio.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 17221, "date": "Apr 16 2018"}, {"filename": "libio-ldbl.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1086, "date": "Apr 16 2018"}, {"filename": "libm-simd-decl-stubs.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3003, "date": "Apr 16 2018"}, {"filename": "link.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4285, "date": "Apr 16 2018"}, {"filename": "locale.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1367, "date": "Apr 16 2018"}, {"filename": "local_lim.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3184, "date": "Apr 16 2018"}, {"filename": "long-double.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 923, "date": "Apr 16 2018"}, {"filename": "mathcalls.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 13114, "date": "Apr 16 2018"}, {"filename": "mathcalls-helper-functions.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1764, "date": "Apr 16 2018"}, {"filename": "mathdef.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 890, "date": "Apr 16 2018"}, {"filename": "math-finite.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5374, "date": "Apr 16 2018"}, {"filename": "mathinline.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 27180, "date": "Apr 16 2018"}, {"filename": "math-vector.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2307, "date": "Apr 16 2018"}, {"filename": "mman.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1872, "date": "Apr 16 2018"}, {"filename": "mman-linux.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4802, "date": "Apr 16 2018"}, {"filename": "mman-shared.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2736, "date": "Apr 16 2018"}, {"filename": "monetary-ldbl.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1046, "date": "Apr 16 2018"}, {"filename": "mqueue2.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2150, "date": "Apr 16 2018"}, {"filename": "mqueue.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1245, "date": "Apr 16 2018"}, {"filename": "msq.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2612, "date": "Apr 16 2018"}, {"filename": "netdb.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1263, "date": "Apr 16 2018"}, {"filename": "param.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1432, "date": "Apr 16 2018"}, {"filename": "poll2.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2936, "date": "Apr 16 2018"}, {"filename": "poll.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2075, "date": "Apr 16 2018"}, {"filename": "posix1_lim.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4922, "date": "Apr 16 2018"}, {"filename": "posix2_lim.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2866, "date": "Apr 16 2018"}, {"filename": "posix_opt.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5705, "date": "Apr 16 2018"}, {"filename": "printf-ldbl.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 991, "date": "Apr 16 2018"}, {"filename": "pthreadtypes-arch.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3290, "date": "Apr 16 2018"}, {"filename": "pthreadtypes.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3071, "date": "Apr 16 2018"}, {"filename": "ptrace-shared.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2696, "date": "Apr 16 2018"}, {"filename": "resource.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6298, "date": "Apr 16 2018"}, {"filename": "sched.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3811, "date": "Apr 16 2018"}, {"filename": "select2.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1437, "date": "Apr 16 2018"}, {"filename": "select.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2105, "date": "Apr 16 2018"}, {"filename": "semaphore.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1237, "date": "Apr 16 2018"}, {"filename": "sem.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2594, "date": "Apr 16 2018"}, {"filename": "setjmp2.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1704, "date": "Apr 16 2018"}, {"filename": "setjmp.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1286, "date": "Apr 16 2018"}, {"filename": "shm.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3566, "date": "Apr 16 2018"}, {"filename": "sigaction.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2871, "date": "Apr 16 2018"}, {"filename": "sigcontext.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4264, "date": "Apr 16 2018"}, {"filename": "sigevent-consts.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1470, "date": "Apr 16 2018"}, {"filename": "siginfo-arch.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 729, "date": "Apr 16 2018"}, {"filename": "siginfo-consts-arch.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 204, "date": "Apr 16 2018"}, {"filename": "siginfo-consts.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5973, "date": "Apr 16 2018"}, {"filename": "signalfd.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1066, "date": "Apr 16 2018"}, {"filename": "signum-generic.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4340, "date": "Apr 16 2018"}, {"filename": "signum.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1633, "date": "Apr 16 2018"}, {"filename": "sigstack.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1167, "date": "Apr 16 2018"}, {"filename": "sigthread.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1691, "date": "Apr 16 2018"}, {"filename": "sockaddr.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1513, "date": "Apr 16 2018"}, {"filename": "socket2.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3025, "date": "Apr 16 2018"}, {"filename": "socket.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 14322, "date": "Apr 16 2018"}, {"filename": "socket_type.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2215, "date": "Apr 16 2018"}, {"filename": "ss_flags.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1187, "date": "Apr 16 2018"}, {"filename": "stab.def", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9039, "date": "Apr 16 2018"}, {"filename": "statfs.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1916, "date": "Apr 16 2018"}, {"filename": "stat.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7619, "date": "Apr 16 2018"}, {"filename": "statvfs.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3422, "date": "Apr 16 2018"}, {"filename": "stdint-intn.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1036, "date": "Apr 16 2018"}, {"filename": "stdint-uintn.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1048, "date": "Apr 16 2018"}, {"filename": "stdio2.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 12547, "date": "Apr 16 2018"}, {"filename": "stdio.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5492, "date": "Apr 16 2018"}, {"filename": "stdio-ldbl.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3013, "date": "Apr 16 2018"}, {"filename": "stdio_lim.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1212, "date": "Apr 16 2018"}, {"filename": "stdlib-bsearch.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1377, "date": "Apr 16 2018"}, {"filename": "stdlib-float.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1114, "date": "Apr 16 2018"}, {"filename": "stdlib.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5658, "date": "Apr 16 2018"}, {"filename": "stdlib-ldbl.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1372, "date": "Apr 16 2018"}, {"filename": "string_fortified.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4313, "date": "Apr 16 2018"}, {"filename": "strings_fortified.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1208, "date": "Apr 16 2018"}, {"filename": "stropts.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8453, "date": "Apr 16 2018"}, {"filename": "syscall.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 40539, "date": "Apr 16 2018"}, {"filename": "sysctl.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 898, "date": "Apr 16 2018"}, {"filename": "sys_errlist.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1215, "date": "Apr 16 2018"}, {"filename": "syslog.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1684, "date": "Apr 16 2018"}, {"filename": "syslog-ldbl.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1205, "date": "Apr 16 2018"}, {"filename": "syslog-path.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1060, "date": "Apr 16 2018"}, {"filename": "sysmacros.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2952, "date": "Apr 16 2018"}, {"filename": "termios.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5363, "date": "Apr 16 2018"}, {"filename": "thread-shared-types.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5610, "date": "Apr 16 2018"}, {"filename": "time.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2998, "date": "Apr 16 2018"}, {"filename": "timerfd.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1102, "date": "Apr 16 2018"}, {"filename": "timex.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4595, "date": "Apr 16 2018"}, {"filename": "types", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "types.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7990, "date": "Apr 16 2018"}, {"filename": "typesizes.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3397, "date": "Apr 16 2018"}, {"filename": "uintn-identity.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1541, "date": "Apr 16 2018"}, {"filename": "uio-ext.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1868, "date": "Apr 16 2018"}, {"filename": "uio_lim.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1384, "date": "Apr 16 2018"}, {"filename": "unistd.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 13315, "date": "Apr 16 2018"}, {"filename": "ustat.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1089, "date": "Apr 16 2018"}, {"filename": "utmp.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4053, "date": "Apr 16 2018"}, {"filename": "utmpx.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3465, "date": "Apr 16 2018"}, {"filename": "utsname.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1212, "date": "Apr 16 2018"}, {"filename": "waitflags.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2217, "date": "Apr 16 2018"}, {"filename": "waitstatus.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2286, "date": "Apr 16 2018"}, {"filename": "wchar2.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 20505, "date": "Apr 16 2018"}, {"filename": "wchar.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1905, "date": "Apr 16 2018"}, {"filename": "wchar-ldbl.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2423, "date": "Apr 16 2018"}, {"filename": "wctype-wchar.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6301, "date": "Apr 16 2018"}, {"filename": "wordsize.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 442, "date": "Apr 16 2018"}, {"filename": "xopen_lim.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3857, "date": "Apr 16 2018"}, {"filename": "xtitypes.h", "parent": "/usr/include/x86_64-linux-gnu/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1214, "date": "Apr 16 2018"}, {"filename": ".", "parent": "/usr/include/x86_64-linux-gnu/bits/types", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/x86_64-linux-gnu/bits/types", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 12288, "date": "Oct 18 00:14"}, {"filename": "clockid_t.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 174, "date": "Apr 16 2018"}, {"filename": "clock_t.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 143, "date": "Apr 16 2018"}, {"filename": "__FILE.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 110, "date": "Apr 16 2018"}, {"filename": "FILE.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 180, "date": "Apr 16 2018"}, {"filename": "__locale_t.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1721, "date": "Apr 16 2018"}, {"filename": "locale_t.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 982, "date": "Apr 16 2018"}, {"filename": "__mbstate_t.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 564, "date": "Apr 16 2018"}, {"filename": "mbstate_t.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 135, "date": "Apr 16 2018"}, {"filename": "res_state.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2009, "date": "Apr 16 2018"}, {"filename": "sig_atomic_t.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 272, "date": "Apr 16 2018"}, {"filename": "sigevent_t.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1204, "date": "Apr 16 2018"}, {"filename": "siginfo_t.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3886, "date": "Apr 16 2018"}, {"filename": "__sigset_t.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 206, "date": "Apr 16 2018"}, {"filename": "sigset_t.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 195, "date": "Apr 16 2018"}, {"filename": "__sigval_t.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1147, "date": "Apr 16 2018"}, {"filename": "sigval_t.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 599, "date": "Apr 16 2018"}, {"filename": "stack_t.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1061, "date": "Apr 16 2018"}, {"filename": "struct_iovec.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1065, "date": "Apr 16 2018"}, {"filename": "struct_itimerspec.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 288, "date": "Apr 16 2018"}, {"filename": "struct_osockaddr.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 274, "date": "Apr 16 2018"}, {"filename": "struct_rusage.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4076, "date": "Apr 16 2018"}, {"filename": "struct_sigstack.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1072, "date": "Apr 16 2018"}, {"filename": "struct_timespec.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 321, "date": "Apr 16 2018"}, {"filename": "struct_timeval.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 287, "date": "Apr 16 2018"}, {"filename": "struct_tm.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 760, "date": "Apr 16 2018"}, {"filename": "timer_t.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 159, "date": "Apr 16 2018"}, {"filename": "time_t.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 138, "date": "Apr 16 2018"}, {"filename": "wint_t.h", "parent": "/usr/include/x86_64-linux-gnu/bits/types", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 796, "date": "Apr 16 2018"}, {"filename": ".", "parent": "/usr/include/x86_64-linux-gnu/c++", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/x86_64-linux-gnu/c++", "flags": "drwxr-xr-x", "links": 8, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "7", "parent": "/usr/include/x86_64-linux-gnu/c++", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "7.4.0", "link_to": "7", "parent": "/usr/include/x86_64-linux-gnu/c++", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 1, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/include/x86_64-linux-gnu/c++/7", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/x86_64-linux-gnu/c++/7", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "bits", "parent": "/usr/include/x86_64-linux-gnu/c++/7", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "ext", "parent": "/usr/include/x86_64-linux-gnu/c++/7", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": ".", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "atomic_word.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1518, "date": "May 8 2019"}, {"filename": "basic_file.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3442, "date": "May 8 2019"}, {"filename": "c++allocator.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1849, "date": "May 8 2019"}, {"filename": "c++config.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 58031, "date": "May 8 2019"}, {"filename": "c++io.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1608, "date": "May 8 2019"}, {"filename": "c++locale.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3307, "date": "May 8 2019"}, {"filename": "cpu_defines.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1333, "date": "May 8 2019"}, {"filename": "ctype_base.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2316, "date": "May 8 2019"}, {"filename": "ctype_inline.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2284, "date": "May 8 2019"}, {"filename": "cxxabi_tweaks.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2096, "date": "May 8 2019"}, {"filename": "error_constants.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5175, "date": "May 8 2019"}, {"filename": "extc++.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2661, "date": "May 8 2019"}, {"filename": "gthr-default.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 24237, "date": "May 8 2019"}, {"filename": "gthr.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5608, "date": "May 8 2019"}, {"filename": "gthr-posix.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 24237, "date": "May 8 2019"}, {"filename": "gthr-single.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6808, "date": "May 8 2019"}, {"filename": "messages_members.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4516, "date": "May 8 2019"}, {"filename": "opt_random.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6194, "date": "May 8 2019"}, {"filename": "os_defines.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2007, "date": "May 8 2019"}, {"filename": "stdc++.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2874, "date": "May 8 2019"}, {"filename": "stdtr1c++.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1741, "date": "May 8 2019"}, {"filename": "time_members.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/bits", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2924, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/include/x86_64-linux-gnu/c++/7/ext", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/x86_64-linux-gnu/c++/7/ext", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "opt_random.h", "parent": "/usr/include/x86_64-linux-gnu/c++/7/ext", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4756, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/include/x86_64-linux-gnu/gnu", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/x86_64-linux-gnu/gnu", "flags": "drwxr-xr-x", "links": 8, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "libc-version.h", "parent": "/usr/include/x86_64-linux-gnu/gnu", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1263, "date": "Apr 16 2018"}, {"filename": "lib-names-64.h", "parent": "/usr/include/x86_64-linux-gnu/gnu", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1720, "date": "Apr 16 2018"}, {"filename": "lib-names.h", "parent": "/usr/include/x86_64-linux-gnu/gnu", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 467, "date": "Apr 16 2018"}, {"filename": "stubs-64.h", "parent": "/usr/include/x86_64-linux-gnu/gnu", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 613, "date": "Apr 16 2018"}, {"filename": "stubs.h", "parent": "/usr/include/x86_64-linux-gnu/gnu", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 384, "date": "Apr 16 2018"}, {"filename": ".", "parent": "/usr/include/x86_64-linux-gnu/python3.6m", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/x86_64-linux-gnu/python3.6m", "flags": "drwxr-xr-x", "links": 8, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "pyconfig.h", "parent": "/usr/include/x86_64-linux-gnu/python3.6m", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 44045, "date": "Oct 7 12:59"}, {"filename": ".", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "drwxr-xr-x", "links": 8, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "acct.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3296, "date": "Apr 16 2018"}, {"filename": "auxv.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1282, "date": "Apr 16 2018"}, {"filename": "bitypes.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 86, "date": "Apr 16 2018"}, {"filename": "cdefs.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 17622, "date": "Apr 16 2018"}, {"filename": "debugreg.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3575, "date": "Apr 16 2018"}, {"filename": "dir.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 921, "date": "Apr 16 2018"}, {"filename": "elf.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1023, "date": "Apr 16 2018"}, {"filename": "epoll.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4410, "date": "Apr 16 2018"}, {"filename": "errno.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 19, "date": "Apr 16 2018"}, {"filename": "eventfd.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1399, "date": "Apr 16 2018"}, {"filename": "fanotify.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1291, "date": "Apr 16 2018"}, {"filename": "fcntl.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 19, "date": "Apr 16 2018"}, {"filename": "file.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1721, "date": "Apr 16 2018"}, {"filename": "fsuid.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1187, "date": "Apr 16 2018"}, {"filename": "gmon.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6210, "date": "Apr 16 2018"}, {"filename": "gmon_out.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2635, "date": "Apr 16 2018"}, {"filename": "inotify.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3837, "date": "Apr 16 2018"}, {"filename": "ioctl.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1739, "date": "Apr 16 2018"}, {"filename": "io.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5085, "date": "Apr 16 2018"}, {"filename": "ipc.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1461, "date": "Apr 16 2018"}, {"filename": "kd.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1111, "date": "Apr 16 2018"}, {"filename": "klog.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1203, "date": "Apr 16 2018"}, {"filename": "mman.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5551, "date": "Apr 16 2018"}, {"filename": "mount.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5611, "date": "Apr 16 2018"}, {"filename": "msg.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2365, "date": "Apr 16 2018"}, {"filename": "mtio.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 11162, "date": "Apr 16 2018"}, {"filename": "param.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3148, "date": "Apr 16 2018"}, {"filename": "pci.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 922, "date": "Apr 16 2018"}, {"filename": "perm.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1126, "date": "Apr 16 2018"}, {"filename": "personality.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2722, "date": "Apr 16 2018"}, {"filename": "poll.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2549, "date": "Apr 16 2018"}, {"filename": "prctl.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1058, "date": "Apr 16 2018"}, {"filename": "procfs.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4985, "date": "Apr 16 2018"}, {"filename": "profil.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1958, "date": "Apr 16 2018"}, {"filename": "ptrace.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5841, "date": "Apr 16 2018"}, {"filename": "queue.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 19539, "date": "Apr 16 2018"}, {"filename": "quota.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5170, "date": "Apr 16 2018"}, {"filename": "random.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1443, "date": "Apr 16 2018"}, {"filename": "raw.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1181, "date": "Apr 16 2018"}, {"filename": "reboot.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1632, "date": "Apr 16 2018"}, {"filename": "reg.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1826, "date": "Apr 16 2018"}, {"filename": "resource.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3645, "date": "Apr 16 2018"}, {"filename": "select.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4140, "date": "Apr 16 2018"}, {"filename": "sem.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2036, "date": "Apr 16 2018"}, {"filename": "sendfile.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1805, "date": "Apr 16 2018"}, {"filename": "shm.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1873, "date": "Apr 16 2018"}, {"filename": "signalfd.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1599, "date": "Apr 16 2018"}, {"filename": "signal.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 20, "date": "Apr 16 2018"}, {"filename": "socket.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 10203, "date": "Apr 16 2018"}, {"filename": "socketvar.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 141, "date": "Apr 16 2018"}, {"filename": "soundcard.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 29, "date": "Apr 16 2018"}, {"filename": "statfs.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2093, "date": "Apr 16 2018"}, {"filename": "stat.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 16186, "date": "Apr 16 2018"}, {"filename": "statvfs.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2819, "date": "Apr 16 2018"}, {"filename": "stropts.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 21, "date": "Apr 16 2018"}, {"filename": "swap.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1592, "date": "Apr 16 2018"}, {"filename": "syscall.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1335, "date": "Apr 16 2018"}, {"filename": "sysctl.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2004, "date": "Apr 16 2018"}, {"filename": "sysinfo.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1517, "date": "Apr 16 2018"}, {"filename": "syslog.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7702, "date": "Apr 16 2018"}, {"filename": "sysmacros.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4030, "date": "Apr 16 2018"}, {"filename": "termios.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 74, "date": "Apr 16 2018"}, {"filename": "timeb.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1376, "date": "Apr 16 2018"}, {"filename": "time.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6656, "date": "Apr 16 2018"}, {"filename": "timerfd.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1873, "date": "Apr 16 2018"}, {"filename": "times.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1596, "date": "Apr 16 2018"}, {"filename": "timex.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2205, "date": "Apr 16 2018"}, {"filename": "ttychars.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2499, "date": "Apr 16 2018"}, {"filename": "ttydefaults.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3568, "date": "Apr 16 2018"}, {"filename": "types.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6584, "date": "Apr 16 2018"}, {"filename": "ucontext.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5758, "date": "Apr 16 2018"}, {"filename": "uio.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6279, "date": "Apr 16 2018"}, {"filename": "un.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1452, "date": "Apr 16 2018"}, {"filename": "unistd.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 20, "date": "Apr 16 2018"}, {"filename": "user.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5207, "date": "Apr 16 2018"}, {"filename": "ustat.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1140, "date": "Apr 16 2018"}, {"filename": "utsname.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2480, "date": "Apr 16 2018"}, {"filename": "vfs.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 161, "date": "Apr 16 2018"}, {"filename": "vlimit.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1879, "date": "Apr 16 2018"}, {"filename": "vm86.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1198, "date": "Apr 16 2018"}, {"filename": "vt.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 22, "date": "Apr 16 2018"}, {"filename": "vtimes.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2462, "date": "Apr 16 2018"}, {"filename": "wait.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5312, "date": "Apr 16 2018"}, {"filename": "xattr.h", "parent": "/usr/include/x86_64-linux-gnu/sys", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4274, "date": "Apr 16 2018"}, {"filename": ".", "parent": "/usr/include/xen", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "..", "parent": "/usr/include/xen", "flags": "drwxr-xr-x", "links": 34, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "evtchn.h", "parent": "/usr/include/xen", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3553, "date": "Jan 17 13:59"}, {"filename": "gntalloc.h", "parent": "/usr/include/xen", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2619, "date": "Jan 17 13:59"}, {"filename": "gntdev.h", "parent": "/usr/include/xen", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7322, "date": "Jan 17 13:59"}, {"filename": "privcmd.h", "parent": "/usr/include/xen", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3992, "date": "Jan 17 13:59"}, {"filename": ".", "parent": "/usr/include/xfs", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Apr 18 2018"}, {"filename": "..", "parent": "/usr/include/xfs", "flags": "drwxr-xr-x", "links": 34, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": ".", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Oct 30 21:02"}, {"filename": "..", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 10, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "accountsservice", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "apt", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 5, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "bfd-plugins", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "binfmt.d", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Apr 20 2018"}, {"filename": "byobu", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "cloud-init", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "cnf-update-db", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 684, "date": "May 5 2018"}, {"filename": "command-not-found", "parent": "/usr/lib", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 3300, "date": "May 5 2018"}, {"filename": "compat-ld", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:13"}, {"filename": "dbus-1.0", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "dpkg", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "dracut", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "eject", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "environment.d", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 6 06:24"}, {"filename": "file", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 30 20:26"}, {"filename": "gcc", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Apr 16 2018"}, {"filename": "git-core", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 20480, "date": "Dec 16 22:19"}, {"filename": "gnupg", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "gnupg2", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "gold-ld", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:13"}, {"filename": "groff", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "grub", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 12 2019"}, {"filename": "grub-legacy", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 12 2019"}, {"filename": "initcpio", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "initramfs-tools", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "kernel", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "klibc", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "language-selector", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "libDeployPkg.so.0", "link_to": "libDeployPkg.so.0.0.0", "parent": "/usr/lib", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 21, "date": "May 14 2019"}, {"filename": "libDeployPkg.so.0.0.0", "parent": "/usr/lib", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 31296, "date": "May 14 2019"}, {"filename": "libguestlib.so.0", "link_to": "libguestlib.so.0.0.0", "parent": "/usr/lib", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 20, "date": "May 14 2019"}, {"filename": "libguestlib.so.0.0.0", "parent": "/usr/lib", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 22656, "date": "May 14 2019"}, {"filename": "libhgfs.so.0", "link_to": "libhgfs.so.0.0.0", "parent": "/usr/lib", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 16, "date": "May 14 2019"}, {"filename": "libhgfs.so.0.0.0", "parent": "/usr/lib", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 163152, "date": "May 14 2019"}, {"filename": "libvgauth.so.0", "link_to": "libvgauth.so.0.0.0", "parent": "/usr/lib", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 18, "date": "May 14 2019"}, {"filename": "libvgauth.so.0.0.0", "parent": "/usr/lib", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 85144, "date": "May 14 2019"}, {"filename": "libvmtools.so.0", "link_to": "libvmtools.so.0.0.0", "parent": "/usr/lib", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 19, "date": "May 14 2019"}, {"filename": "libvmtools.so.0.0.0", "parent": "/usr/lib", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 623592, "date": "May 14 2019"}, {"filename": "linux", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 12 2019"}, {"filename": "linux-boot-probes", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 12 2019"}, {"filename": "locale", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 12 2019"}, {"filename": "lxcfs", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "lxd", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "man-db", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "mime", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "modules-load.d", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Apr 20 2018"}, {"filename": "networkd-dispatcher", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 6, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "openssh", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 12 2019"}, {"filename": "open-vm-tools", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "os-prober", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 12 2019"}, {"filename": "os-probes", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "root", "size": 4096, "date": "Aug 12 2019"}, {"filename": "os-release", "parent": "/usr/lib", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 386, "date": "Aug 5 2019"}, {"filename": "pm-utils", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "policykit-1", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "python2.7", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "python3", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "python3.6", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 30, "owner": "root", "group": "root", "size": 20480, "date": "Oct 18 00:14"}, {"filename": "python3.7", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 5, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "rsyslog", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "sasl2", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 2018"}, {"filename": "sftp-server", "link_to": "openssh/sftp-server", "parent": "/usr/lib", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 19, "date": "Mar 4 2019"}, {"filename": "snapd", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "software-properties", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 14 2019"}, {"filename": "ssl", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Nov 20 07:00"}, {"filename": "sudo", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "sysctl.d", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 6 06:24"}, {"filename": "sysstat", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:03"}, {"filename": "systemd", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 11, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "sysusers.d", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "tar", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Jul 21 2017"}, {"filename": "tc", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "tmpfiles.d", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 6 06:24"}, {"filename": "ubuntu-fan", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 14 2019"}, {"filename": "ubuntu-release-upgrader", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "update-notifier", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "valgrind", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "x86_64-linux-gnu", "parent": "/usr/lib", "flags": "drwxr-xr-x", "links": 27, "owner": "root", "group": "root", "size": 20480, "date": "Feb 14 02:07"}, {"filename": ".", "parent": "/usr/lib/accountsservice", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "..", "parent": "/usr/lib/accountsservice", "flags": "drwxr-xr-x", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Oct 30 21:02"}, {"filename": "accounts-daemon", "parent": "/usr/lib/accountsservice", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 182552, "date": "Dec 18 2017"}, {"filename": ".", "parent": "/usr/lib/apt", "flags": "drwxr-xr-x", "links": 5, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "..", "parent": "/usr/lib/apt", "flags": "drwxr-xr-x", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Oct 30 21:02"}, {"filename": "apt-helper", "parent": "/usr/lib/apt", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 31040, "date": "May 7 2019"}, {"filename": "apt.systemd.daily", "parent": "/usr/lib/apt", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 16026, "date": "May 7 2019"}, {"filename": "methods", "parent": "/usr/lib/apt", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "planners", "parent": "/usr/lib/apt", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "solvers", "parent": "/usr/lib/apt", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": ".", "parent": "/usr/lib/apt/methods", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "..", "parent": "/usr/lib/apt/methods", "flags": "drwxr-xr-x", "links": 5, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "cdrom", "parent": "/usr/lib/apt/methods", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 55456, "date": "May 7 2019"}, {"filename": "copy", "parent": "/usr/lib/apt/methods", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 39072, "date": "May 7 2019"}, {"filename": "file", "parent": "/usr/lib/apt/methods", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 39072, "date": "May 7 2019"}, {"filename": "ftp", "parent": "/usr/lib/apt/methods", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 116992, "date": "May 7 2019"}, {"filename": "gpgv", "parent": "/usr/lib/apt/methods", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 75936, "date": "May 7 2019"}, {"filename": "http", "parent": "/usr/lib/apt/methods", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 166056, "date": "May 7 2019"}, {"filename": "https", "link_to": "http", "parent": "/usr/lib/apt/methods", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 4, "date": "May 7 2019"}, {"filename": "mirror", "parent": "/usr/lib/apt/methods", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 100512, "date": "May 7 2019"}, {"filename": "mirror+copy", "link_to": "mirror", "parent": "/usr/lib/apt/methods", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 6, "date": "May 7 2019"}, {"filename": "mirror+file", "link_to": "mirror", "parent": "/usr/lib/apt/methods", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 6, "date": "May 7 2019"}, {"filename": "mirror+ftp", "link_to": "mirror", "parent": "/usr/lib/apt/methods", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 6, "date": "May 7 2019"}, {"filename": "mirror+http", "link_to": "mirror", "parent": "/usr/lib/apt/methods", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 6, "date": "May 7 2019"}, {"filename": "mirror+https", "link_to": "mirror", "parent": "/usr/lib/apt/methods", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 6, "date": "May 7 2019"}, {"filename": "rred", "parent": "/usr/lib/apt/methods", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 67744, "date": "May 7 2019"}, {"filename": "rsh", "parent": "/usr/lib/apt/methods", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 51376, "date": "May 7 2019"}, {"filename": "ssh", "link_to": "rsh", "parent": "/usr/lib/apt/methods", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "May 7 2019"}, {"filename": "store", "parent": "/usr/lib/apt/methods", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 43168, "date": "May 7 2019"}, {"filename": ".", "parent": "/usr/lib/apt/planners", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "..", "parent": "/usr/lib/apt/planners", "flags": "drwxr-xr-x", "links": 5, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "apt", "parent": "/usr/lib/apt/planners", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 18592, "date": "May 7 2019"}, {"filename": "dump", "link_to": "../solvers/dump", "parent": "/usr/lib/apt/planners", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 15, "date": "May 7 2019"}, {"filename": ".", "parent": "/usr/lib/apt/solvers", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "..", "parent": "/usr/lib/apt/solvers", "flags": "drwxr-xr-x", "links": 5, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "apt", "parent": "/usr/lib/apt/solvers", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 22688, "date": "May 7 2019"}, {"filename": "dump", "parent": "/usr/lib/apt/solvers", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 18520, "date": "May 7 2019"}, {"filename": ".", "parent": "/usr/lib/bfd-plugins", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/lib/bfd-plugins", "flags": "drwxr-xr-x", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Oct 30 21:02"}, {"filename": "liblto_plugin.so", "link_to": "../gcc/x86_64-linux-gnu/7/liblto_plugin.so", "parent": "/usr/lib/bfd-plugins", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 42, "date": "May 20 2019"}, {"filename": ".", "parent": "/usr/lib/binfmt.d", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Apr 20 2018"}, {"filename": "..", "parent": "/usr/lib/binfmt.d", "flags": "drwxr-xr-x", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Oct 30 21:02"}, {"filename": ".", "parent": "/usr/lib/byobu", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "..", "parent": "/usr/lib/byobu", "flags": "drwxr-xr-x", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Oct 30 21:02"}, {"filename": "apport", "parent": "/usr/lib/byobu", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1543, "date": "Dec 4 2017"}, {"filename": "arch", "parent": "/usr/lib/byobu", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 916, "date": "Dec 4 2017"}, {"filename": "battery", "parent": "/usr/lib/byobu", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 4202, "date": "Dec 4 2017"}, {"filename": "color", "parent": "/usr/lib/byobu", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1061, "date": "Dec 4 2017"}, {"filename": "cpu_count", "parent": "/usr/lib/byobu", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1055, "date": "Dec 4 2017"}, {"filename": "cpu_freq", "parent": "/usr/lib/byobu", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1882, "date": "Dec 4 2017"}, {"filename": "cpu_temp", "parent": "/usr/lib/byobu", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1828, "date": "Dec 4 2017"}, {"filename": "custom", "parent": "/usr/lib/byobu", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1927, "date": "Dec 4 2017"}, {"filename": "date", "parent": "/usr/lib/byobu", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 990, "date": "Dec 4 2017"}, {"filename": "disk", "parent": "/usr/lib/byobu", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1846, "date": "Dec 4 2017"}, {"filename": "disk_io", "parent": "/usr/lib/byobu", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2991, "date": "Dec 4 2017"}, {"filename": "distro", "parent": "/usr/lib/byobu", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1060, "date": "Dec 4 2017"}, {"filename": "ec2_cost", "parent": "/usr/lib/byobu", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 4316, "date": "Dec 4 2017"}, {"filename": "entropy", "parent": "/usr/lib/byobu", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1089, "date": "Dec 4 2017"}, {"filename": "fan_speed", "parent": "/usr/lib/byobu", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1894, "date": "Dec 4 2017"}, {"filename": "hostname", "parent": "/usr/lib/byobu", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1329, "date": "Dec 4 2017"}, {"filename": "include", "parent": "/usr/lib/byobu", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "ip_address", "parent": "/usr/lib/byobu", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 3097, "date": "Dec 4 2017"}, {"filename": "load_average", "parent": "/usr/lib/byobu", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1123, "date": "Dec 4 2017"}, {"filename": "logo", "parent": "/usr/lib/byobu", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 4009, "date": "Dec 4 2017"}, {"filename": "mail", "parent": "/usr/lib/byobu", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1337, "date": "Dec 4 2017"}, {"filename": "memory", "parent": "/usr/lib/byobu", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2675, "date": "Dec 4 2017"}, {"filename": "menu", "parent": "/usr/lib/byobu", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1651, "date": "Dec 4 2017"}, {"filename": "network", "parent": "/usr/lib/byobu", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 3172, "date": "Dec 4 2017"}, {"filename": "processes", "parent": "/usr/lib/byobu", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1152, "date": "Dec 4 2017"}, {"filename": "raid", "parent": "/usr/lib/byobu", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1434, "date": "Dec 4 2017"}, {"filename": "rcs_cost", "parent": "/usr/lib/byobu", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 3639, "date": "Dec 4 2017"}, {"filename": "reboot_required", "parent": "/usr/lib/byobu", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2206, "date": "Dec 4 2017"}, {"filename": "release", "parent": "/usr/lib/byobu", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1872, "date": "Dec 4 2017"}, {"filename": "services", "parent": "/usr/lib/byobu", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2135, "date": "Dec 4 2017"}, {"filename": "session", "parent": "/usr/lib/byobu", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1311, "date": "Dec 4 2017"}, {"filename": "swap", "parent": "/usr/lib/byobu", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1792, "date": "Dec 4 2017"}, {"filename": "time", "parent": "/usr/lib/byobu", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1081, "date": "Dec 4 2017"}, {"filename": "time_binary", "parent": "/usr/lib/byobu", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 4278, "date": "Dec 4 2017"}, {"filename": "time_utc", "parent": "/usr/lib/byobu", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 960, "date": "Dec 4 2017"}, {"filename": "trash", "parent": "/usr/lib/byobu", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1159, "date": "Dec 4 2017"}, {"filename": "updates_available", "parent": "/usr/lib/byobu", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 5151, "date": "Dec 4 2017"}, {"filename": "uptime", "parent": "/usr/lib/byobu", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1676, "date": "Dec 4 2017"}, {"filename": "users", "parent": "/usr/lib/byobu", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1550, "date": "Dec 4 2017"}, {"filename": "whoami", "parent": "/usr/lib/byobu", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 959, "date": "Dec 4 2017"}, {"filename": "wifi_quality", "parent": "/usr/lib/byobu", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1898, "date": "Dec 4 2017"}, {"filename": ".", "parent": "/usr/lib/byobu/include", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "..", "parent": "/usr/lib/byobu/include", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "colors", "parent": "/usr/lib/byobu/include", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1049, "date": "Dec 4 2017"}, {"filename": "common", "parent": "/usr/lib/byobu/include", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1953, "date": "Dec 4 2017"}, {"filename": "config.py", "parent": "/usr/lib/byobu/include", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10709, "date": "Dec 4 2017"}, {"filename": "constants", "parent": "/usr/lib/byobu/include", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2396, "date": "Dec 4 2017"}, {"filename": "cycle-status", "parent": "/usr/lib/byobu/include", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1379, "date": "Dec 4 2017"}, {"filename": "dirs", "parent": "/usr/lib/byobu/include", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2641, "date": "Dec 4 2017"}, {"filename": "ec2instancespricing.py", "parent": "/usr/lib/byobu/include", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 24418, "date": "Dec 4 2017"}, {"filename": "icons", "parent": "/usr/lib/byobu/include", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1881, "date": "Dec 4 2017"}, {"filename": "mondrian", "parent": "/usr/lib/byobu/include", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 4572, "date": "Dec 4 2017"}, {"filename": "notify_osd", "parent": "/usr/lib/byobu/include", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1782, "date": "Dec 4 2017"}, {"filename": "__pycache__", "parent": "/usr/lib/byobu/include", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "select-session.py", "parent": "/usr/lib/byobu/include", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 6797, "date": "Dec 4 2017"}, {"filename": "shutil", "parent": "/usr/lib/byobu/include", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 8707, "date": "Dec 4 2017"}, {"filename": "tmux-detach-all-but-current-client", "parent": "/usr/lib/byobu/include", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1595, "date": "Dec 4 2017"}, {"filename": "tmux-send-command-to-all-panes", "parent": "/usr/lib/byobu/include", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 955, "date": "Dec 4 2017"}, {"filename": "tmux-send-command-to-all-windows", "parent": "/usr/lib/byobu/include", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 881, "date": "Dec 4 2017"}, {"filename": "toggle-utf8", "parent": "/usr/lib/byobu/include", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1694, "date": "Dec 4 2017"}, {"filename": ".", "parent": "/usr/lib/byobu/include/__pycache__", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "..", "parent": "/usr/lib/byobu/include/__pycache__", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "config.cpython-36.pyc", "parent": "/usr/lib/byobu/include/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9974, "date": "Aug 5 2019"}, {"filename": "ec2instancespricing.cpython-36.pyc", "parent": "/usr/lib/byobu/include/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 12699, "date": "Aug 5 2019"}, {"filename": "select-session.cpython-36.pyc", "parent": "/usr/lib/byobu/include/__pycache__", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4261, "date": "Aug 5 2019"}, {"filename": ".", "parent": "/usr/lib/cloud-init", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "..", "parent": "/usr/lib/cloud-init", "flags": "drwxr-xr-x", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Oct 30 21:02"}, {"filename": "ds-identify", "parent": "/usr/lib/cloud-init", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 44208, "date": "May 10 2019"}, {"filename": "uncloud-init", "parent": "/usr/lib/cloud-init", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 4116, "date": "May 10 2019"}, {"filename": "write-ssh-key-fingerprints", "parent": "/usr/lib/cloud-init", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1135, "date": "May 10 2019"}, {"filename": ".", "parent": "/usr/lib/compat-ld", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:13"}, {"filename": "..", "parent": "/usr/lib/compat-ld", "flags": "drwxr-xr-x", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Oct 30 21:02"}, {"filename": "ld", "link_to": "../../bin/ld.bfd", "parent": "/usr/lib/compat-ld", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 16, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/lib/dbus-1.0", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "..", "parent": "/usr/lib/dbus-1.0", "flags": "drwxr-xr-x", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Oct 30 21:02"}, {"filename": "dbus-daemon-launch-helper", "parent": "/usr/lib/dbus-1.0", "flags": "-rwsr-xr--", "links": 1, "owner": "root", "group": "messagebus", "size": 42992, "date": "Jun 10 2019"}, {"filename": ".", "parent": "/usr/lib/dpkg", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "..", "parent": "/usr/lib/dpkg", "flags": "drwxr-xr-x", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Oct 30 21:02"}, {"filename": "methods", "parent": "/usr/lib/dpkg", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": ".", "parent": "/usr/lib/dpkg/methods", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "..", "parent": "/usr/lib/dpkg/methods", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "apt", "parent": "/usr/lib/dpkg/methods", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": ".", "parent": "/usr/lib/dpkg/methods/apt", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "..", "parent": "/usr/lib/dpkg/methods/apt", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "desc.apt", "parent": "/usr/lib/dpkg/methods/apt", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 567, "date": "May 7 2019"}, {"filename": "install", "parent": "/usr/lib/dpkg/methods/apt", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2861, "date": "May 7 2019"}, {"filename": "names", "parent": "/usr/lib/dpkg/methods/apt", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 39, "date": "May 7 2019"}, {"filename": "setup", "parent": "/usr/lib/dpkg/methods/apt", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 7728, "date": "May 7 2019"}, {"filename": "update", "parent": "/usr/lib/dpkg/methods/apt", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1242, "date": "May 7 2019"}, {"filename": ".", "parent": "/usr/lib/dracut", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "..", "parent": "/usr/lib/dracut", "flags": "drwxr-xr-x", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Oct 30 21:02"}, {"filename": "modules.d", "parent": "/usr/lib/dracut", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "90bcache", "parent": "/usr/lib/dracut/modules.d", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": ".", "parent": "/usr/lib/dracut/modules.d/90bcache", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "..", "parent": "/usr/lib/dracut/modules.d/90bcache", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "module-setup.sh", "parent": "/usr/lib/dracut/modules.d/90bcache", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 696, "date": "Apr 21 2017"}, {"filename": ".", "parent": "/usr/lib/eject", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "..", "parent": "/usr/lib/eject", "flags": "drwxr-xr-x", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Oct 30 21:02"}, {"filename": "dmcrypt-get-device", "parent": "/usr/lib/eject", "flags": "-rwsr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10232, "date": "Mar 28 2017"}, {"filename": ".", "parent": "/usr/lib/environment.d", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 6 06:24"}, {"filename": "..", "parent": "/usr/lib/environment.d", "flags": "drwxr-xr-x", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Oct 30 21:02"}, {"filename": "990-snapd.conf", "parent": "/usr/lib/environment.d", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 21, "date": "Jun 5 2019"}, {"filename": "99-environment.conf", "link_to": "/etc/environment", "parent": "/usr/lib/environment.d", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 16, "date": "Feb 5 01:07"}, {"filename": ".", "parent": "/usr/lib/file", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 30 20:26"}, {"filename": "..", "parent": "/usr/lib/file", "flags": "drwxr-xr-x", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Oct 30 21:02"}, {"filename": "magic.mgc", "parent": "/usr/lib/file", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4961856, "date": "Oct 29 16:50"}, {"filename": ".", "parent": "/usr/lib/gcc", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Apr 16 2018"}, {"filename": "..", "parent": "/usr/lib/gcc", "flags": "drwxr-xr-x", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Oct 30 21:02"}, {"filename": "x86_64-linux-gnu", "parent": "/usr/lib/gcc", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": ".", "parent": "/usr/lib/gcc/x86_64-linux-gnu", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/lib/gcc/x86_64-linux-gnu", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Apr 16 2018"}, {"filename": "7", "parent": "/usr/lib/gcc/x86_64-linux-gnu", "flags": "drwxr-xr-x", "links": 5, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "7.4.0", "link_to": "7", "parent": "/usr/lib/gcc/x86_64-linux-gnu", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 1, "date": "May 8 2019"}, {"filename": "8", "parent": "/usr/lib/gcc/x86_64-linux-gnu", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Apr 16 2018"}, {"filename": ".", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "drwxr-xr-x", "links": 5, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "cc1", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 22256464, "date": "May 8 2019"}, {"filename": "cc1plus", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 23604080, "date": "May 8 2019"}, {"filename": "collect2", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 577760, "date": "May 8 2019"}, {"filename": "crtbegin.o", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2456, "date": "May 8 2019"}, {"filename": "crtbeginS.o", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2824, "date": "May 8 2019"}, {"filename": "crtbeginT.o", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2976, "date": "May 8 2019"}, {"filename": "crtend.o", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1224, "date": "May 8 2019"}, {"filename": "crtendS.o", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1224, "date": "May 8 2019"}, {"filename": "crtfastmath.o", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3760, "date": "May 8 2019"}, {"filename": "crtoffloadbegin.o", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1248, "date": "May 8 2019"}, {"filename": "crtoffloadend.o", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1248, "date": "May 8 2019"}, {"filename": "crtoffloadtable.o", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1464, "date": "May 8 2019"}, {"filename": "crtprec32.o", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3368, "date": "May 8 2019"}, {"filename": "crtprec64.o", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3376, "date": "May 8 2019"}, {"filename": "crtprec80.o", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3368, "date": "May 8 2019"}, {"filename": "include", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "include-fixed", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "libasan.a", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2925550, "date": "May 8 2019"}, {"filename": "libasan_preinit.o", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 17808, "date": "May 8 2019"}, {"filename": "libasan.so", "link_to": "../../../x86_64-linux-gnu/libasan.so.4", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 38, "date": "May 8 2019"}, {"filename": "libatomic.a", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 119194, "date": "May 8 2019"}, {"filename": "libatomic.so", "link_to": "../../../x86_64-linux-gnu/libatomic.so.1", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 40, "date": "May 8 2019"}, {"filename": "libbacktrace.a", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 70210, "date": "May 8 2019"}, {"filename": "libcc1.so", "link_to": "../../../x86_64-linux-gnu/libcc1.so.0", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 37, "date": "May 8 2019"}, {"filename": "libcilkrts.a", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 277408, "date": "May 8 2019"}, {"filename": "libcilkrts.so", "link_to": "../../../x86_64-linux-gnu/libcilkrts.so.5", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 41, "date": "May 8 2019"}, {"filename": "libcilkrts.spec", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 173, "date": "May 8 2019"}, {"filename": "libgcc.a", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3003558, "date": "May 8 2019"}, {"filename": "libgcc_eh.a", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 51748, "date": "May 8 2019"}, {"filename": "libgcc_s.so", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 132, "date": "May 8 2019"}, {"filename": "libgcc_s.so.1", "link_to": "/lib/x86_64-linux-gnu/libgcc_s.so.1", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 35, "date": "May 8 2019"}, {"filename": "libgcov.a", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 58898, "date": "May 8 2019"}, {"filename": "libgomp.a", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 352114, "date": "May 8 2019"}, {"filename": "libgomp.so", "link_to": "../../../x86_64-linux-gnu/libgomp.so.1", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 38, "date": "May 8 2019"}, {"filename": "libgomp.spec", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 169, "date": "May 8 2019"}, {"filename": "libitm.a", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 222358, "date": "May 8 2019"}, {"filename": "libitm.so", "link_to": "../../../x86_64-linux-gnu/libitm.so.1", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 37, "date": "May 8 2019"}, {"filename": "libitm.spec", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 162, "date": "May 8 2019"}, {"filename": "liblsan.a", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 867742, "date": "May 8 2019"}, {"filename": "liblsan.so", "link_to": "../../../x86_64-linux-gnu/liblsan.so.0", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 38, "date": "May 8 2019"}, {"filename": "liblto_plugin.so", "link_to": "liblto_plugin.so.0.0.0", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 22, "date": "May 8 2019"}, {"filename": "liblto_plugin.so.0", "link_to": "liblto_plugin.so.0.0.0", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 22, "date": "May 8 2019"}, {"filename": "liblto_plugin.so.0.0.0", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 76576, "date": "May 8 2019"}, {"filename": "libmpx.a", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 25732, "date": "May 8 2019"}, {"filename": "libmpx.so", "link_to": "../../../x86_64-linux-gnu/libmpx.so.2", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 37, "date": "May 8 2019"}, {"filename": "libmpx.spec", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 156, "date": "May 8 2019"}, {"filename": "libmpxwrappers.a", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 12100, "date": "May 8 2019"}, {"filename": "libmpxwrappers.so", "link_to": "../../../x86_64-linux-gnu/libmpxwrappers.so.2", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 45, "date": "May 8 2019"}, {"filename": "libquadmath.a", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 569496, "date": "May 8 2019"}, {"filename": "libquadmath.so", "link_to": "../../../x86_64-linux-gnu/libquadmath.so.0", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 42, "date": "May 8 2019"}, {"filename": "libsanitizer.spec", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 320, "date": "May 8 2019"}, {"filename": "libssp_nonshared.a", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1486, "date": "May 8 2019"}, {"filename": "libstdc++.a", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4783610, "date": "May 8 2019"}, {"filename": "libstdc++fs.a", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 680216, "date": "May 8 2019"}, {"filename": "libstdc++.so", "link_to": "../../../x86_64-linux-gnu/libstdc++.so.6", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 40, "date": "May 8 2019"}, {"filename": "libsupc++.a", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 363654, "date": "May 8 2019"}, {"filename": "libtsan.a", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2036204, "date": "May 8 2019"}, {"filename": "libtsan.so", "link_to": "../../../x86_64-linux-gnu/libtsan.so.0", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 38, "date": "May 8 2019"}, {"filename": "libubsan.a", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 811530, "date": "May 8 2019"}, {"filename": "libubsan.so", "link_to": "../../../x86_64-linux-gnu/libubsan.so.0", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 39, "date": "May 8 2019"}, {"filename": "lto1", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 21301200, "date": "May 8 2019"}, {"filename": "lto-wrapper", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 893240, "date": "May 8 2019"}, {"filename": "plugin", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": ".", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "drwxr-xr-x", "links": 5, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "adxintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2865, "date": "May 8 2019"}, {"filename": "ammintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3216, "date": "May 8 2019"}, {"filename": "avx2intrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 58030, "date": "May 8 2019"}, {"filename": "avx5124fmapsintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6535, "date": "May 8 2019"}, {"filename": "avx5124vnniwintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4256, "date": "May 8 2019"}, {"filename": "avx512bwintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 100776, "date": "May 8 2019"}, {"filename": "avx512cdintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5822, "date": "May 8 2019"}, {"filename": "avx512dqintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 77963, "date": "May 8 2019"}, {"filename": "avx512erintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 12965, "date": "May 8 2019"}, {"filename": "avx512fintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 438944, "date": "May 8 2019"}, {"filename": "avx512ifmaintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3430, "date": "May 8 2019"}, {"filename": "avx512ifmavlintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5385, "date": "May 8 2019"}, {"filename": "avx512pfintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 10038, "date": "May 8 2019"}, {"filename": "avx512vbmiintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4921, "date": "May 8 2019"}, {"filename": "avx512vbmivlintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8364, "date": "May 8 2019"}, {"filename": "avx512vlbwintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 142308, "date": "May 8 2019"}, {"filename": "avx512vldqintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 61317, "date": "May 8 2019"}, {"filename": "avx512vlintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 423232, "date": "May 8 2019"}, {"filename": "avx512vpopcntdqintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3105, "date": "May 8 2019"}, {"filename": "avxintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 49383, "date": "May 8 2019"}, {"filename": "backtrace.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8754, "date": "May 8 2019"}, {"filename": "backtrace-supported.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2982, "date": "May 8 2019"}, {"filename": "bmi2intrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3388, "date": "May 8 2019"}, {"filename": "bmiintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5628, "date": "May 8 2019"}, {"filename": "bmmintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1154, "date": "May 8 2019"}, {"filename": "cilk", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "clflushoptintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1663, "date": "May 8 2019"}, {"filename": "clwbintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1585, "date": "May 8 2019"}, {"filename": "clzerointrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1491, "date": "May 8 2019"}, {"filename": "cpuid.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7939, "date": "May 8 2019"}, {"filename": "cross-stdarg.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2558, "date": "May 8 2019"}, {"filename": "emmintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 51033, "date": "May 8 2019"}, {"filename": "f16cintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3406, "date": "May 8 2019"}, {"filename": "float.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 16917, "date": "May 8 2019"}, {"filename": "fma4intrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9132, "date": "May 8 2019"}, {"filename": "fmaintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 10536, "date": "May 8 2019"}, {"filename": "fxsrintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2108, "date": "May 8 2019"}, {"filename": "gcov.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1389, "date": "May 8 2019"}, {"filename": "ia32intrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7817, "date": "May 8 2019"}, {"filename": "immintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4984, "date": "May 8 2019"}, {"filename": "iso646.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1272, "date": "May 8 2019"}, {"filename": "lwpintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3400, "date": "May 8 2019"}, {"filename": "lzcntintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2398, "date": "May 8 2019"}, {"filename": "mm3dnow.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7076, "date": "May 8 2019"}, {"filename": "mmintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 31354, "date": "May 8 2019"}, {"filename": "mm_malloc.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1783, "date": "May 8 2019"}, {"filename": "mwaitxintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1747, "date": "May 8 2019"}, {"filename": "nmmintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1288, "date": "May 8 2019"}, {"filename": "omp.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6092, "date": "May 8 2019"}, {"filename": "openacc.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4655, "date": "May 8 2019"}, {"filename": "pkuintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1741, "date": "May 8 2019"}, {"filename": "pmmintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4368, "date": "May 8 2019"}, {"filename": "popcntintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1750, "date": "May 8 2019"}, {"filename": "prfchwintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1447, "date": "May 8 2019"}, {"filename": "quadmath.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9085, "date": "May 8 2019"}, {"filename": "quadmath_weak.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3146, "date": "May 8 2019"}, {"filename": "rdseedintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2017, "date": "May 8 2019"}, {"filename": "rtmintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2733, "date": "May 8 2019"}, {"filename": "sanitizer", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "sgxintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4530, "date": "May 8 2019"}, {"filename": "shaintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3198, "date": "May 8 2019"}, {"filename": "smmintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 28405, "date": "May 8 2019"}, {"filename": "stdalign.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1210, "date": "May 8 2019"}, {"filename": "stdarg.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4072, "date": "May 8 2019"}, {"filename": "stdatomic.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9321, "date": "May 8 2019"}, {"filename": "stdbool.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1524, "date": "May 8 2019"}, {"filename": "stddef.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 14140, "date": "May 8 2019"}, {"filename": "stdfix.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6000, "date": "May 8 2019"}, {"filename": "stdint-gcc.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9457, "date": "May 8 2019"}, {"filename": "stdint.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 328, "date": "May 8 2019"}, {"filename": "stdnoreturn.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1136, "date": "May 8 2019"}, {"filename": "tbmintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5242, "date": "May 8 2019"}, {"filename": "tmmintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8343, "date": "May 8 2019"}, {"filename": "unwind.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 10717, "date": "May 8 2019"}, {"filename": "varargs.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 139, "date": "May 8 2019"}, {"filename": "wmmintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4590, "date": "May 8 2019"}, {"filename": "x86intrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2054, "date": "May 8 2019"}, {"filename": "xmmintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 42210, "date": "May 8 2019"}, {"filename": "xopintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 28566, "date": "May 8 2019"}, {"filename": "xsavecintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1821, "date": "May 8 2019"}, {"filename": "xsaveintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2190, "date": "May 8 2019"}, {"filename": "xsaveoptintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1903, "date": "May 8 2019"}, {"filename": "xsavesintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2157, "date": "May 8 2019"}, {"filename": "xtestintrin.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1687, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "cilk_api.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 15236, "date": "May 8 2019"}, {"filename": "cilk_api_linux.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2445, "date": "May 8 2019"}, {"filename": "cilk.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3541, "date": "May 8 2019"}, {"filename": "cilk_stub.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3007, "date": "May 8 2019"}, {"filename": "cilk_undocumented.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4743, "date": "May 8 2019"}, {"filename": "common.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 13162, "date": "May 8 2019"}, {"filename": "holder.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 38881, "date": "May 8 2019"}, {"filename": "hyperobject_base.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7107, "date": "May 8 2019"}, {"filename": "metaprogramming.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 21801, "date": "May 8 2019"}, {"filename": "reducer_file.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2363, "date": "May 8 2019"}, {"filename": "reducer.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 76234, "date": "May 8 2019"}, {"filename": "reducer_list.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 42065, "date": "May 8 2019"}, {"filename": "reducer_max.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2591, "date": "May 8 2019"}, {"filename": "reducer_min.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2591, "date": "May 8 2019"}, {"filename": "reducer_min_max.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 149159, "date": "May 8 2019"}, {"filename": "reducer_opadd.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 26215, "date": "May 8 2019"}, {"filename": "reducer_opand.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 22726, "date": "May 8 2019"}, {"filename": "reducer_opmul.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 16961, "date": "May 8 2019"}, {"filename": "reducer_opor.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 22452, "date": "May 8 2019"}, {"filename": "reducer_opxor.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 22561, "date": "May 8 2019"}, {"filename": "reducer_ostream.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 20100, "date": "May 8 2019"}, {"filename": "reducer_string.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/cilk", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 27509, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/sanitizer", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/sanitizer", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "asan_interface.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/sanitizer", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7022, "date": "May 8 2019"}, {"filename": "common_interface_defs.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/sanitizer", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9855, "date": "May 8 2019"}, {"filename": "lsan_interface.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include/sanitizer", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3529, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed", "flags": "drwxr-xr-x", "links": 5, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "limits.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6089, "date": "May 8 2019"}, {"filename": "README", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 750, "date": "May 8 2019"}, {"filename": "syslimits.h", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 330, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/plugin", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "..", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/plugin", "flags": "drwxr-xr-x", "links": 5, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": "libcc1plugin.so", "link_to": "libcc1plugin.so.0.0.0", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/plugin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 21, "date": "May 8 2019"}, {"filename": "libcc1plugin.so.0", "link_to": "libcc1plugin.so.0.0.0", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/plugin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 21, "date": "May 8 2019"}, {"filename": "libcc1plugin.so.0.0.0", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/plugin", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 56104, "date": "May 8 2019"}, {"filename": "libcp1plugin.so", "link_to": "libcp1plugin.so.0.0.0", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/plugin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 21, "date": "May 8 2019"}, {"filename": "libcp1plugin.so.0", "link_to": "libcp1plugin.so.0.0.0", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/plugin", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 21, "date": "May 8 2019"}, {"filename": "libcp1plugin.so.0.0.0", "parent": "/usr/lib/gcc/x86_64-linux-gnu/7/plugin", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 126752, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/lib/gcc/x86_64-linux-gnu/8", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Apr 16 2018"}, {"filename": "..", "parent": "/usr/lib/gcc/x86_64-linux-gnu/8", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:14"}, {"filename": ".", "parent": "/usr/lib/git-core", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 20480, "date": "Dec 16 22:19"}, {"filename": "..", "parent": "/usr/lib/git-core", "flags": "drwxr-xr-x", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Oct 30 21:02"}, {"filename": "git", "parent": "/usr/lib/git-core", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2347696, "date": "Dec 9 13:29"}, {"filename": "git-add", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-add--interactive", "parent": "/usr/lib/git-core", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 43919, "date": "Dec 9 13:29"}, {"filename": "git-am", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-annotate", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-apply", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-archive", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-bisect", "parent": "/usr/lib/git-core", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 14444, "date": "Dec 9 13:29"}, {"filename": "git-bisect--helper", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-blame", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-branch", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-bundle", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-cat-file", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-check-attr", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-check-ignore", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-check-mailmap", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-checkout", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-checkout-index", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-check-ref-format", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-cherry", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-cherry-pick", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-clean", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-clone", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-column", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-commit", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-commit-tree", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-config", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-count-objects", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-credential", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-credential-cache", "parent": "/usr/lib/git-core", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1308912, "date": "Dec 9 13:29"}, {"filename": "git-credential-cache--daemon", "parent": "/usr/lib/git-core", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1317200, "date": "Dec 9 13:29"}, {"filename": "git-credential-store", "parent": "/usr/lib/git-core", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1313072, "date": "Dec 9 13:29"}, {"filename": "git-daemon", "parent": "/usr/lib/git-core", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1321328, "date": "Dec 9 13:29"}, {"filename": "git-describe", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-diff", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-diff-files", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-diff-index", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-difftool", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-difftool--helper", "parent": "/usr/lib/git-core", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2244, "date": "Dec 9 13:29"}, {"filename": "git-diff-tree", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-fast-export", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-fast-import", "parent": "/usr/lib/git-core", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1346416, "date": "Dec 9 13:29"}, {"filename": "git-fetch", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-fetch-pack", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-filter-branch", "parent": "/usr/lib/git-core", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 15534, "date": "Dec 9 13:29"}, {"filename": "git-fmt-merge-msg", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-for-each-ref", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-format-patch", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-fsck", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-fsck-objects", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-gc", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-get-tar-commit-id", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-grep", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-hash-object", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-help", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-http-backend", "parent": "/usr/lib/git-core", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1317424, "date": "Dec 9 13:29"}, {"filename": "git-http-fetch", "parent": "/usr/lib/git-core", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1358608, "date": "Dec 9 13:29"}, {"filename": "git-http-push", "parent": "/usr/lib/git-core", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1366816, "date": "Dec 9 13:29"}, {"filename": "git-imap-send", "parent": "/usr/lib/git-core", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1367216, "date": "Dec 9 13:29"}, {"filename": "git-index-pack", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-init", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-init-db", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-instaweb", "parent": "/usr/lib/git-core", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 18546, "date": "Dec 9 13:29"}, {"filename": "git-interpret-trailers", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-log", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-ls-files", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-ls-remote", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-ls-tree", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-mailinfo", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-mailsplit", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-merge", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-merge-base", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-merge-file", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-merge-index", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-merge-octopus", "parent": "/usr/lib/git-core", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2477, "date": "Dec 9 13:29"}, {"filename": "git-merge-one-file", "parent": "/usr/lib/git-core", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 3707, "date": "Dec 9 13:29"}, {"filename": "git-merge-ours", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-merge-recursive", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-merge-resolve", "parent": "/usr/lib/git-core", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 944, "date": "Dec 9 13:29"}, {"filename": "git-merge-subtree", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-mergetool", "parent": "/usr/lib/git-core", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10303, "date": "Dec 9 13:29"}, {"filename": "git-mergetool--lib", "parent": "/usr/lib/git-core", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8869, "date": "Dec 9 13:29"}, {"filename": "git-merge-tree", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-mktag", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-mktree", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-mv", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-name-rev", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-notes", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-pack-objects", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-pack-redundant", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-pack-refs", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-parse-remote", "parent": "/usr/lib/git-core", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2650, "date": "Dec 9 13:29"}, {"filename": "git-patch-id", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-prune", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-prune-packed", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-pull", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-push", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-quiltimport", "parent": "/usr/lib/git-core", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 3596, "date": "Dec 9 13:29"}, {"filename": "git-read-tree", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-rebase", "parent": "/usr/lib/git-core", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 17291, "date": "Dec 9 13:29"}, {"filename": "git-rebase--am", "parent": "/usr/lib/git-core", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2680, "date": "Dec 9 13:29"}, {"filename": "git-rebase--helper", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-rebase--interactive", "parent": "/usr/lib/git-core", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 28932, "date": "Dec 9 13:29"}, {"filename": "git-rebase--merge", "parent": "/usr/lib/git-core", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4096, "date": "Dec 9 13:29"}, {"filename": "git-receive-pack", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-reflog", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-remote", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-remote-ext", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-remote-fd", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-remote-ftp", "link_to": "git-remote-http", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 15, "date": "Dec 9 13:29"}, {"filename": "git-remote-ftps", "link_to": "git-remote-http", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 15, "date": "Dec 9 13:29"}, {"filename": "git-remote-http", "parent": "/usr/lib/git-core", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1370880, "date": "Dec 9 13:29"}, {"filename": "git-remote-https", "link_to": "git-remote-http", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 15, "date": "Dec 9 13:29"}, {"filename": "git-remote-testsvn", "parent": "/usr/lib/git-core", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1329520, "date": "Dec 9 13:29"}, {"filename": "git-repack", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-replace", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-request-pull", "parent": "/usr/lib/git-core", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 3698, "date": "Dec 9 13:29"}, {"filename": "git-rerere", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-reset", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-revert", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-rev-list", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-rev-parse", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-rm", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-send-pack", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-shell", "parent": "/usr/lib/git-core", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1304912, "date": "Dec 9 13:29"}, {"filename": "git-sh-i18n", "parent": "/usr/lib/git-core", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2355, "date": "Dec 9 13:29"}, {"filename": "git-sh-i18n--envsubst", "parent": "/usr/lib/git-core", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1304816, "date": "Dec 9 13:29"}, {"filename": "git-shortlog", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-show", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-show-branch", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-show-index", "parent": "/usr/lib/git-core", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1304816, "date": "Dec 9 13:29"}, {"filename": "git-show-ref", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-sh-prompt", "parent": "/usr/lib/git-core", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 16379, "date": "Dec 9 13:29"}, {"filename": "git-sh-setup", "parent": "/usr/lib/git-core", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9256, "date": "Dec 9 13:29"}, {"filename": "git-stage", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-stash", "parent": "/usr/lib/git-core", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 15486, "date": "Dec 9 13:29"}, {"filename": "git-status", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-stripspace", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-submodule", "parent": "/usr/lib/git-core", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 23941, "date": "Dec 9 13:29"}, {"filename": "git-submodule--helper", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-subtree", "parent": "/usr/lib/git-core", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 16495, "date": "Dec 9 13:29"}, {"filename": "git-symbolic-ref", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-tag", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-unpack-file", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-unpack-objects", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-update-index", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-update-ref", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-update-server-info", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-upload-archive", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-upload-pack", "parent": "/usr/lib/git-core", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1317120, "date": "Dec 9 13:29"}, {"filename": "git-var", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-verify-commit", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-verify-pack", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-verify-tag", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-web--browse", "parent": "/usr/lib/git-core", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 4401, "date": "Dec 9 13:29"}, {"filename": "git-whatchanged", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-worktree", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "git-write-tree", "link_to": "git", "parent": "/usr/lib/git-core", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 3, "date": "Dec 9 13:29"}, {"filename": "mergetools", "parent": "/usr/lib/git-core", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Dec 16 22:19"}, {"filename": ".", "parent": "/usr/lib/git-core/mergetools", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Dec 16 22:19"}, {"filename": "..", "parent": "/usr/lib/git-core/mergetools", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 20480, "date": "Dec 16 22:19"}, {"filename": "araxis", "parent": "/usr/lib/git-core/mergetools", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 358, "date": "Dec 9 13:29"}, {"filename": "bc", "parent": "/usr/lib/git-core/mergetools", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 367, "date": "Dec 9 13:29"}, {"filename": "bc3", "parent": "/usr/lib/git-core/mergetools", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 24, "date": "Dec 9 13:29"}, {"filename": "codecompare", "parent": "/usr/lib/git-core/mergetools", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 353, "date": "Dec 9 13:29"}, {"filename": "deltawalker", "parent": "/usr/lib/git-core/mergetools", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 663, "date": "Dec 9 13:29"}, {"filename": "diffmerge", "parent": "/usr/lib/git-core/mergetools", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 309, "date": "Dec 9 13:29"}, {"filename": "diffuse", "parent": "/usr/lib/git-core/mergetools", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 248, "date": "Dec 9 13:29"}, {"filename": "ecmerge", "parent": "/usr/lib/git-core/mergetools", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 306, "date": "Dec 9 13:29"}, {"filename": "emerge", "parent": "/usr/lib/git-core/mergetools", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 438, "date": "Dec 9 13:29"}, {"filename": "examdiff", "parent": "/usr/lib/git-core/mergetools", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 336, "date": "Dec 9 13:29"}, {"filename": "gvimdiff", "parent": "/usr/lib/git-core/mergetools", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 29, "date": "Dec 9 13:29"}, {"filename": "gvimdiff2", "parent": "/usr/lib/git-core/mergetools", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 29, "date": "Dec 9 13:29"}, {"filename": "gvimdiff3", "parent": "/usr/lib/git-core/mergetools", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 29, "date": "Dec 9 13:29"}, {"filename": "kdiff3", "parent": "/usr/lib/git-core/mergetools", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 522, "date": "Dec 9 13:29"}, {"filename": "kompare", "parent": "/usr/lib/git-core/mergetools", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 117, "date": "Dec 9 13:29"}, {"filename": "meld", "parent": "/usr/lib/git-core/mergetools", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 843, "date": "Dec 9 13:29"}, {"filename": "opendiff", "parent": "/usr/lib/git-core/mergetools", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 267, "date": "Dec 9 13:29"}, {"filename": "p4merge", "parent": "/usr/lib/git-core/mergetools", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 617, "date": "Dec 9 13:29"}, {"filename": "tkdiff", "parent": "/usr/lib/git-core/mergetools", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 258, "date": "Dec 9 13:29"}, {"filename": "tortoisemerge", "parent": "/usr/lib/git-core/mergetools", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 602, "date": "Dec 9 13:29"}, {"filename": "vimdiff", "parent": "/usr/lib/git-core/mergetools", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 890, "date": "Dec 9 13:29"}, {"filename": "vimdiff2", "parent": "/usr/lib/git-core/mergetools", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 29, "date": "Dec 9 13:29"}, {"filename": "vimdiff3", "parent": "/usr/lib/git-core/mergetools", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 29, "date": "Dec 9 13:29"}, {"filename": "winmerge", "parent": "/usr/lib/git-core/mergetools", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 361, "date": "Dec 9 13:29"}, {"filename": "xxdiff", "parent": "/usr/lib/git-core/mergetools", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 584, "date": "Dec 9 13:29"}, {"filename": ".", "parent": "/usr/lib/gnupg", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "..", "parent": "/usr/lib/gnupg", "flags": "drwxr-xr-x", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Oct 30 21:02"}, {"filename": "dirmngr_ldap", "parent": "/usr/lib/gnupg", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 80616, "date": "Jan 10 2019"}, {"filename": "gpg-check-pattern", "parent": "/usr/lib/gnupg", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 104872, "date": "Jan 10 2019"}, {"filename": "gpg-preset-passphrase", "parent": "/usr/lib/gnupg", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 80328, "date": "Jan 10 2019"}, {"filename": "gpg-protect-tool", "parent": "/usr/lib/gnupg", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 191400, "date": "Jan 10 2019"}, {"filename": "gpg-wks-client", "parent": "/usr/lib/gnupg", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 207720, "date": "Jan 10 2019"}, {"filename": ".", "parent": "/usr/lib/gnupg2", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "..", "parent": "/usr/lib/gnupg2", "flags": "drwxr-xr-x", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Oct 30 21:02"}, {"filename": "gpg-preset-passphrase", "link_to": "../gnupg/gpg-preset-passphrase", "parent": "/usr/lib/gnupg2", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 30, "date": "Jan 10 2019"}, {"filename": "gpg-protect-tool", "link_to": "../gnupg/gpg-protect-tool", "parent": "/usr/lib/gnupg2", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 25, "date": "Jan 10 2019"}, {"filename": ".", "parent": "/usr/lib/gold-ld", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Oct 18 00:13"}, {"filename": "..", "parent": "/usr/lib/gold-ld", "flags": "drwxr-xr-x", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Oct 30 21:02"}, {"filename": "ld", "link_to": "../../bin/ld.gold", "parent": "/usr/lib/gold-ld", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 17, "date": "May 8 2019"}, {"filename": ".", "parent": "/usr/lib/groff", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "..", "parent": "/usr/lib/groff", "flags": "drwxr-xr-x", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Oct 30 21:02"}, {"filename": "grog", "parent": "/usr/lib/groff", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "site-tmac", "parent": "/usr/lib/groff", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 10 2018"}, {"filename": ".", "parent": "/usr/lib/groff/grog", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "..", "parent": "/usr/lib/groff/grog", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "subs.pl", "parent": "/usr/lib/groff/grog", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 28293, "date": "Feb 10 2018"}, {"filename": ".", "parent": "/usr/lib/groff/site-tmac", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 10 2018"}, {"filename": "..", "parent": "/usr/lib/groff/site-tmac", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": ".", "parent": "/usr/lib/grub", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 12 2019"}, {"filename": "..", "parent": "/usr/lib/grub", "flags": "drwxr-xr-x", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Oct 30 21:02"}, {"filename": "grub-mkconfig_lib", "link_to": "../../share/grub/grub-mkconfig_lib", "parent": "/usr/lib/grub", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 34, "date": "Mar 18 2019"}, {"filename": "i386-pc", "parent": "/usr/lib/grub", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 20480, "date": "Aug 12 2019"}, {"filename": ".", "parent": "/usr/lib/grub/i386-pc", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 20480, "date": "Aug 12 2019"}, {"filename": "..", "parent": "/usr/lib/grub/i386-pc", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 12 2019"}, {"filename": "915resolution.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7972, "date": "Mar 18 2019"}, {"filename": "acpi.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 10620, "date": "Mar 18 2019"}, {"filename": "adler32.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1324, "date": "Mar 18 2019"}, {"filename": "affs.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5652, "date": "Mar 18 2019"}, {"filename": "afs.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6108, "date": "Mar 18 2019"}, {"filename": "ahci.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 15540, "date": "Mar 18 2019"}, {"filename": "all_video.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 492, "date": "Mar 18 2019"}, {"filename": "aout.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1036, "date": "Mar 18 2019"}, {"filename": "archelp.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2956, "date": "Mar 18 2019"}, {"filename": "ata.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5636, "date": "Mar 18 2019"}, {"filename": "at_keyboard.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4284, "date": "Mar 18 2019"}, {"filename": "backtrace.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1640, "date": "Mar 18 2019"}, {"filename": "bfs.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6816, "date": "Mar 18 2019"}, {"filename": "biosdisk.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4692, "date": "Mar 18 2019"}, {"filename": "bitmap.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2256, "date": "Mar 18 2019"}, {"filename": "bitmap_scale.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3788, "date": "Mar 18 2019"}, {"filename": "blocklist.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2128, "date": "Mar 18 2019"}, {"filename": "boot_hybrid.img", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 512, "date": "Mar 18 2019"}, {"filename": "boot.img", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 512, "date": "Mar 18 2019"}, {"filename": "boot.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2432, "date": "Mar 18 2019"}, {"filename": "bsd.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 30516, "date": "Mar 18 2019"}, {"filename": "bswap_test.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2408, "date": "Mar 18 2019"}, {"filename": "btrfs.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 14484, "date": "Mar 18 2019"}, {"filename": "bufio.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2044, "date": "Mar 18 2019"}, {"filename": "cat.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2948, "date": "Mar 18 2019"}, {"filename": "cbfs.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4032, "date": "Mar 18 2019"}, {"filename": "cbls.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3604, "date": "Mar 18 2019"}, {"filename": "cbmemc.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2424, "date": "Mar 18 2019"}, {"filename": "cbtable.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 984, "date": "Mar 18 2019"}, {"filename": "cbtime.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2860, "date": "Mar 18 2019"}, {"filename": "cdboot.img", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2048, "date": "Mar 18 2019"}, {"filename": "chain.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3500, "date": "Mar 18 2019"}, {"filename": "cmdline_cat_test.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3072, "date": "Mar 18 2019"}, {"filename": "cmosdump.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1216, "date": "Mar 18 2019"}, {"filename": "cmostest.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1868, "date": "Mar 18 2019"}, {"filename": "cmp.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1984, "date": "Mar 18 2019"}, {"filename": "cmp_test.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4688, "date": "Mar 18 2019"}, {"filename": "command.lst", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3842, "date": "Mar 18 2019"}, {"filename": "configfile.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2264, "date": "Mar 18 2019"}, {"filename": "config.h", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1929, "date": "Mar 18 2019"}, {"filename": "cpio_be.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2776, "date": "Mar 18 2019"}, {"filename": "cpio.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2708, "date": "Mar 18 2019"}, {"filename": "cpuid.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1728, "date": "Mar 18 2019"}, {"filename": "crc64.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1660, "date": "Mar 18 2019"}, {"filename": "cryptodisk.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 10180, "date": "Mar 18 2019"}, {"filename": "crypto.lst", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 936, "date": "Mar 18 2019"}, {"filename": "crypto.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4972, "date": "Mar 18 2019"}, {"filename": "cs5536.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3896, "date": "Mar 18 2019"}, {"filename": "ctz_test.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1820, "date": "Mar 18 2019"}, {"filename": "datehook.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1792, "date": "Mar 18 2019"}, {"filename": "date.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2188, "date": "Mar 18 2019"}, {"filename": "datetime.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1252, "date": "Mar 18 2019"}, {"filename": "diskboot.img", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 512, "date": "Mar 18 2019"}, {"filename": "diskfilter.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 10572, "date": "Mar 18 2019"}, {"filename": "disk.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2408, "date": "Mar 18 2019"}, {"filename": "div.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1032, "date": "Mar 18 2019"}, {"filename": "div_test.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5672, "date": "Mar 18 2019"}, {"filename": "dm_nv.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1848, "date": "Mar 18 2019"}, {"filename": "drivemap.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5380, "date": "Mar 18 2019"}, {"filename": "echo.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1960, "date": "Mar 18 2019"}, {"filename": "efiemu32.o", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8128, "date": "Mar 18 2019"}, {"filename": "efiemu64.o", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 10080, "date": "Mar 18 2019"}, {"filename": "efiemu.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 24020, "date": "Mar 18 2019"}, {"filename": "ehci.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 15984, "date": "Mar 18 2019"}, {"filename": "elf.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4144, "date": "Mar 18 2019"}, {"filename": "eval.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1444, "date": "Mar 18 2019"}, {"filename": "exfat.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5360, "date": "Mar 18 2019"}, {"filename": "exfctest.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1468, "date": "Mar 18 2019"}, {"filename": "ext2.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6116, "date": "Mar 18 2019"}, {"filename": "extcmd.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4548, "date": "Mar 18 2019"}, {"filename": "fat.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5504, "date": "Mar 18 2019"}, {"filename": "file.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 16768, "date": "Mar 18 2019"}, {"filename": "font.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 12504, "date": "Mar 18 2019"}, {"filename": "freedos.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2660, "date": "Mar 18 2019"}, {"filename": "fshelp.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2980, "date": "Mar 18 2019"}, {"filename": "fs.lst", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 214, "date": "Mar 18 2019"}, {"filename": "functional_test.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 34276, "date": "Mar 18 2019"}, {"filename": "g2hdr.bin", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 512, "date": "Mar 18 2019"}, {"filename": "g2hdr.img", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 512, "date": "Mar 18 2019"}, {"filename": "g2ldr.img", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 10240, "date": "Mar 18 2019"}, {"filename": "g2ldr.mbr", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8192, "date": "Mar 18 2019"}, {"filename": "gcry_arcfour.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1644, "date": "Mar 18 2019"}, {"filename": "gcry_blowfish.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8224, "date": "Mar 18 2019"}, {"filename": "gcry_camellia.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 33916, "date": "Mar 18 2019"}, {"filename": "gcry_cast5.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 16484, "date": "Mar 18 2019"}, {"filename": "gcry_crc.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2956, "date": "Mar 18 2019"}, {"filename": "gcry_des.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 19248, "date": "Mar 18 2019"}, {"filename": "gcry_dsa.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2288, "date": "Mar 18 2019"}, {"filename": "gcry_idea.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3012, "date": "Mar 18 2019"}, {"filename": "gcry_md4.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3176, "date": "Mar 18 2019"}, {"filename": "gcry_md5.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3796, "date": "Mar 18 2019"}, {"filename": "gcry_rfc2268.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2524, "date": "Mar 18 2019"}, {"filename": "gcry_rijndael.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 19104, "date": "Mar 18 2019"}, {"filename": "gcry_rmd160.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8216, "date": "Mar 18 2019"}, {"filename": "gcry_rsa.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2076, "date": "Mar 18 2019"}, {"filename": "gcry_seed.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 15384, "date": "Mar 18 2019"}, {"filename": "gcry_serpent.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 17012, "date": "Mar 18 2019"}, {"filename": "gcry_sha1.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7984, "date": "Mar 18 2019"}, {"filename": "gcry_sha256.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4440, "date": "Mar 18 2019"}, {"filename": "gcry_sha512.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9412, "date": "Mar 18 2019"}, {"filename": "gcry_tiger.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 12692, "date": "Mar 18 2019"}, {"filename": "gcry_twofish.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 37128, "date": "Mar 18 2019"}, {"filename": "gcry_whirlpool.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 24924, "date": "Mar 18 2019"}, {"filename": "gdb.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 25272, "date": "Mar 18 2019"}, {"filename": "geli.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6040, "date": "Mar 18 2019"}, {"filename": "gettext.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4940, "date": "Mar 18 2019"}, {"filename": "gfxmenu.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 39432, "date": "Mar 18 2019"}, {"filename": "gfxterm_background.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2892, "date": "Mar 18 2019"}, {"filename": "gfxterm_menu.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5048, "date": "Mar 18 2019"}, {"filename": "gfxterm.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 10024, "date": "Mar 18 2019"}, {"filename": "gptsync.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3812, "date": "Mar 18 2019"}, {"filename": "grldr.img", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 10240, "date": "Mar 18 2019"}, {"filename": "grub-bios-setup", "parent": "/usr/lib/grub/i386-pc", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 812184, "date": "Mar 18 2019"}, {"filename": "grub-ntldr-img", "parent": "/usr/lib/grub/i386-pc", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 39072, "date": "Mar 18 2019"}, {"filename": "gzio.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8320, "date": "Mar 18 2019"}, {"filename": "halt.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4488, "date": "Mar 18 2019"}, {"filename": "hashsum.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5256, "date": "Mar 18 2019"}, {"filename": "hdparm.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7272, "date": "Mar 18 2019"}, {"filename": "hello.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1208, "date": "Mar 18 2019"}, {"filename": "help.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2576, "date": "Mar 18 2019"}, {"filename": "hexdump.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3168, "date": "Mar 18 2019"}, {"filename": "hfs.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7008, "date": "Mar 18 2019"}, {"filename": "hfspluscomp.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3072, "date": "Mar 18 2019"}, {"filename": "hfsplus.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7724, "date": "Mar 18 2019"}, {"filename": "http.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5756, "date": "Mar 18 2019"}, {"filename": "hwmatch.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 47196, "date": "Mar 18 2019"}, {"filename": "iorw.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2912, "date": "Mar 18 2019"}, {"filename": "iso9660.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8604, "date": "Mar 18 2019"}, {"filename": "jfs.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6064, "date": "Mar 18 2019"}, {"filename": "jpeg.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6276, "date": "Mar 18 2019"}, {"filename": "kernel.img", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 28480, "date": "Mar 18 2019"}, {"filename": "keylayouts.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5008, "date": "Mar 18 2019"}, {"filename": "keystatus.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1976, "date": "Mar 18 2019"}, {"filename": "ldm.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6540, "date": "Mar 18 2019"}, {"filename": "legacycfg.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 30088, "date": "Mar 18 2019"}, {"filename": "legacy_password_test.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 14468, "date": "Mar 18 2019"}, {"filename": "linux16.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8176, "date": "Mar 18 2019"}, {"filename": "linux.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 13344, "date": "Mar 18 2019"}, {"filename": "lnxboot.img", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1024, "date": "Mar 18 2019"}, {"filename": "loadenv.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5888, "date": "Mar 18 2019"}, {"filename": "loopback.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2988, "date": "Mar 18 2019"}, {"filename": "lsacpi.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4804, "date": "Mar 18 2019"}, {"filename": "lsapm.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2280, "date": "Mar 18 2019"}, {"filename": "lsmmap.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1868, "date": "Mar 18 2019"}, {"filename": "ls.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4068, "date": "Mar 18 2019"}, {"filename": "lspci.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4860, "date": "Mar 18 2019"}, {"filename": "luks.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6896, "date": "Mar 18 2019"}, {"filename": "lvm.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6776, "date": "Mar 18 2019"}, {"filename": "lzma_decompress.img", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2832, "date": "Mar 18 2019"}, {"filename": "lzopio.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5224, "date": "Mar 18 2019"}, {"filename": "macbless.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3308, "date": "Mar 18 2019"}, {"filename": "macho.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7520, "date": "Mar 18 2019"}, {"filename": "mda_text.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2052, "date": "Mar 18 2019"}, {"filename": "mdraid09_be.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2020, "date": "Mar 18 2019"}, {"filename": "mdraid09.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1944, "date": "Mar 18 2019"}, {"filename": "mdraid1x.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1944, "date": "Mar 18 2019"}, {"filename": "memdisk.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2020, "date": "Mar 18 2019"}, {"filename": "memrw.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2936, "date": "Mar 18 2019"}, {"filename": "minicmd.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3408, "date": "Mar 18 2019"}, {"filename": "minix2_be.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3912, "date": "Mar 18 2019"}, {"filename": "minix2.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3748, "date": "Mar 18 2019"}, {"filename": "minix3_be.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3848, "date": "Mar 18 2019"}, {"filename": "minix3.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3716, "date": "Mar 18 2019"}, {"filename": "minix_be.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3780, "date": "Mar 18 2019"}, {"filename": "minix.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3652, "date": "Mar 18 2019"}, {"filename": "mmap.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 8544, "date": "Mar 18 2019"}, {"filename": "moddep.lst", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5416, "date": "Mar 18 2019"}, {"filename": "modinfo.sh", "parent": "/usr/lib/grub/i386-pc", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2548, "date": "Mar 18 2019"}, {"filename": "morse.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2396, "date": "Mar 18 2019"}, {"filename": "mpi.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 27912, "date": "Mar 18 2019"}, {"filename": "msdospart.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2460, "date": "Mar 18 2019"}, {"filename": "mul_test.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2064, "date": "Mar 18 2019"}, {"filename": "multiboot2.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 15488, "date": "Mar 18 2019"}, {"filename": "multiboot.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 14108, "date": "Mar 18 2019"}, {"filename": "nativedisk.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4196, "date": "Mar 18 2019"}, {"filename": "net.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 54688, "date": "Mar 18 2019"}, {"filename": "newc.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2964, "date": "Mar 18 2019"}, {"filename": "nilfs2.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6708, "date": "Mar 18 2019"}, {"filename": "normal.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 115620, "date": "Mar 18 2019"}, {"filename": "ntfscomp.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4420, "date": "Mar 18 2019"}, {"filename": "ntfs.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9952, "date": "Mar 18 2019"}, {"filename": "ntldr.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2552, "date": "Mar 18 2019"}, {"filename": "odc.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2772, "date": "Mar 18 2019"}, {"filename": "offsetio.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1512, "date": "Mar 18 2019"}, {"filename": "ohci.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 10436, "date": "Mar 18 2019"}, {"filename": "part_acorn.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1672, "date": "Mar 18 2019"}, {"filename": "part_amiga.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1892, "date": "Mar 18 2019"}, {"filename": "part_apple.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2148, "date": "Mar 18 2019"}, {"filename": "part_bsd.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2776, "date": "Mar 18 2019"}, {"filename": "part_dfly.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1776, "date": "Mar 18 2019"}, {"filename": "part_dvh.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1480, "date": "Mar 18 2019"}, {"filename": "part_gpt.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2388, "date": "Mar 18 2019"}, {"filename": "partmap.lst", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 111, "date": "Mar 18 2019"}, {"filename": "part_msdos.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2268, "date": "Mar 18 2019"}, {"filename": "part_plan.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1820, "date": "Mar 18 2019"}, {"filename": "part_sun.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1536, "date": "Mar 18 2019"}, {"filename": "part_sunpc.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1640, "date": "Mar 18 2019"}, {"filename": "parttool.lst", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 17, "date": "Mar 18 2019"}, {"filename": "parttool.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4644, "date": "Mar 18 2019"}, {"filename": "password.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1888, "date": "Mar 18 2019"}, {"filename": "password_pbkdf2.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2812, "date": "Mar 18 2019"}, {"filename": "pata.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4772, "date": "Mar 18 2019"}, {"filename": "pbkdf2.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1468, "date": "Mar 18 2019"}, {"filename": "pbkdf2_test.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2252, "date": "Mar 18 2019"}, {"filename": "pcidump.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2480, "date": "Mar 18 2019"}, {"filename": "pci.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1408, "date": "Mar 18 2019"}, {"filename": "plan9.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6336, "date": "Mar 18 2019"}, {"filename": "play.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2512, "date": "Mar 18 2019"}, {"filename": "png.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7460, "date": "Mar 18 2019"}, {"filename": "priority_queue.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1568, "date": "Mar 18 2019"}, {"filename": "probe.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2700, "date": "Mar 18 2019"}, {"filename": "procfs.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2380, "date": "Mar 18 2019"}, {"filename": "progress.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2208, "date": "Mar 18 2019"}, {"filename": "pxeboot.img", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1024, "date": "Mar 18 2019"}, {"filename": "pxechain.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2664, "date": "Mar 18 2019"}, {"filename": "pxe.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3840, "date": "Mar 18 2019"}, {"filename": "raid5rec.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1368, "date": "Mar 18 2019"}, {"filename": "raid6rec.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2248, "date": "Mar 18 2019"}, {"filename": "random.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2844, "date": "Mar 18 2019"}, {"filename": "read.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1444, "date": "Mar 18 2019"}, {"filename": "reboot.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1720, "date": "Mar 18 2019"}, {"filename": "regexp.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 51012, "date": "Mar 18 2019"}, {"filename": "reiserfs.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9056, "date": "Mar 18 2019"}, {"filename": "relocator.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 14972, "date": "Mar 18 2019"}, {"filename": "romfs.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4244, "date": "Mar 18 2019"}, {"filename": "scsi.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4796, "date": "Mar 18 2019"}, {"filename": "search_fs_file.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3212, "date": "Mar 18 2019"}, {"filename": "search_fs_uuid.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3204, "date": "Mar 18 2019"}, {"filename": "search_label.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3120, "date": "Mar 18 2019"}, {"filename": "search.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3688, "date": "Mar 18 2019"}, {"filename": "sendkey.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7148, "date": "Mar 18 2019"}, {"filename": "serial.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7824, "date": "Mar 18 2019"}, {"filename": "setjmp.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 708, "date": "Mar 18 2019"}, {"filename": "setjmp_test.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1704, "date": "Mar 18 2019"}, {"filename": "setpci.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5356, "date": "Mar 18 2019"}, {"filename": "sfs.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5136, "date": "Mar 18 2019"}, {"filename": "shift_test.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2480, "date": "Mar 18 2019"}, {"filename": "signature_test.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6476, "date": "Mar 18 2019"}, {"filename": "sleep.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2276, "date": "Mar 18 2019"}, {"filename": "sleep_test.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2320, "date": "Mar 18 2019"}, {"filename": "spkmodem.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2088, "date": "Mar 18 2019"}, {"filename": "squash4.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7116, "date": "Mar 18 2019"}, {"filename": "syslinuxcfg.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 17436, "date": "Mar 18 2019"}, {"filename": "tar.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3316, "date": "Mar 18 2019"}, {"filename": "terminal.lst", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 202, "date": "Mar 18 2019"}, {"filename": "terminal.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4344, "date": "Mar 18 2019"}, {"filename": "terminfo.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 11972, "date": "Mar 18 2019"}, {"filename": "test_blockarg.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1340, "date": "Mar 18 2019"}, {"filename": "testload.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2696, "date": "Mar 18 2019"}, {"filename": "test.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5124, "date": "Mar 18 2019"}, {"filename": "testspeed.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2328, "date": "Mar 18 2019"}, {"filename": "tftp.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5484, "date": "Mar 18 2019"}, {"filename": "tga.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4460, "date": "Mar 18 2019"}, {"filename": "time.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1508, "date": "Mar 18 2019"}, {"filename": "trig.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1764, "date": "Mar 18 2019"}, {"filename": "tr.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2400, "date": "Mar 18 2019"}, {"filename": "truecrypt.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3580, "date": "Mar 18 2019"}, {"filename": "true.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1204, "date": "Mar 18 2019"}, {"filename": "udf.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7868, "date": "Mar 18 2019"}, {"filename": "ufs1_be.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5868, "date": "Mar 18 2019"}, {"filename": "ufs1.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5476, "date": "Mar 18 2019"}, {"filename": "ufs2.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5540, "date": "Mar 18 2019"}, {"filename": "uhci.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6596, "date": "Mar 18 2019"}, {"filename": "usb_keyboard.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3900, "date": "Mar 18 2019"}, {"filename": "usb.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 10532, "date": "Mar 18 2019"}, {"filename": "usbms.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7048, "date": "Mar 18 2019"}, {"filename": "usbserial_common.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2020, "date": "Mar 18 2019"}, {"filename": "usbserial_ftdi.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2360, "date": "Mar 18 2019"}, {"filename": "usbserial_pl2303.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2692, "date": "Mar 18 2019"}, {"filename": "usbserial_usbdebug.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1536, "date": "Mar 18 2019"}, {"filename": "usbtest.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3600, "date": "Mar 18 2019"}, {"filename": "vbe.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 9940, "date": "Mar 18 2019"}, {"filename": "verify.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 12040, "date": "Mar 18 2019"}, {"filename": "vga.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5076, "date": "Mar 18 2019"}, {"filename": "vga_text.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2180, "date": "Mar 18 2019"}, {"filename": "video_bochs.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5668, "date": "Mar 18 2019"}, {"filename": "video_cirrus.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6052, "date": "Mar 18 2019"}, {"filename": "video_colors.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5680, "date": "Mar 18 2019"}, {"filename": "video_fb.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 20872, "date": "Mar 18 2019"}, {"filename": "videoinfo.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3980, "date": "Mar 18 2019"}, {"filename": "video.lst", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 33, "date": "Mar 18 2019"}, {"filename": "video.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6072, "date": "Mar 18 2019"}, {"filename": "videotest_checksum.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2384, "date": "Mar 18 2019"}, {"filename": "videotest.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 4268, "date": "Mar 18 2019"}, {"filename": "xfs.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 7496, "date": "Mar 18 2019"}, {"filename": "xnu.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 27432, "date": "Mar 18 2019"}, {"filename": "xnu_uuid.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2140, "date": "Mar 18 2019"}, {"filename": "xnu_uuid_test.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 2016, "date": "Mar 18 2019"}, {"filename": "xzio.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 15784, "date": "Mar 18 2019"}, {"filename": "zfscrypt.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 5584, "date": "Mar 18 2019"}, {"filename": "zfsinfo.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 6612, "date": "Mar 18 2019"}, {"filename": "zfs.mod", "parent": "/usr/lib/grub/i386-pc", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 40340, "date": "Mar 18 2019"}, {"filename": ".", "parent": "/usr/lib/grub-legacy", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 12 2019"}, {"filename": "..", "parent": "/usr/lib/grub-legacy", "flags": "drwxr-xr-x", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Oct 30 21:02"}, {"filename": "update-grub", "parent": "/usr/lib/grub-legacy", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 30822, "date": "Mar 18 2019"}, {"filename": ".", "parent": "/usr/lib/initcpio", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "..", "parent": "/usr/lib/initcpio", "flags": "drwxr-xr-x", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Oct 30 21:02"}, {"filename": "install", "parent": "/usr/lib/initcpio", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": ".", "parent": "/usr/lib/initcpio/install", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "..", "parent": "/usr/lib/initcpio/install", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "bcache", "parent": "/usr/lib/initcpio/install", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 291, "date": "Apr 21 2017"}, {"filename": ".", "parent": "/usr/lib/initramfs-tools", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "..", "parent": "/usr/lib/initramfs-tools", "flags": "drwxr-xr-x", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Oct 30 21:02"}, {"filename": "bin", "parent": "/usr/lib/initramfs-tools", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "etc", "parent": "/usr/lib/initramfs-tools", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": ".", "parent": "/usr/lib/initramfs-tools/bin", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "..", "parent": "/usr/lib/initramfs-tools/bin", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "busybox", "parent": "/usr/lib/initramfs-tools/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 305280, "date": "Mar 6 2019"}, {"filename": "rzscontrol", "parent": "/usr/lib/initramfs-tools/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10472, "date": "Apr 17 2019"}, {"filename": "wait-for-root", "parent": "/usr/lib/initramfs-tools/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 10232, "date": "Apr 17 2019"}, {"filename": ".", "parent": "/usr/lib/initramfs-tools/etc", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "..", "parent": "/usr/lib/initramfs-tools/etc", "flags": "drwxr-xr-x", "links": 4, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "dhcp", "parent": "/usr/lib/initramfs-tools/etc", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": ".", "parent": "/usr/lib/initramfs-tools/etc/dhcp", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "..", "parent": "/usr/lib/initramfs-tools/etc/dhcp", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "dhclient.conf", "parent": "/usr/lib/initramfs-tools/etc/dhcp", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 422, "date": "Oct 12 2017"}, {"filename": "dhclient-enter-hooks.d", "parent": "/usr/lib/initramfs-tools/etc/dhcp", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": ".", "parent": "/usr/lib/initramfs-tools/etc/dhcp/dhclient-enter-hooks.d", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "..", "parent": "/usr/lib/initramfs-tools/etc/dhcp/dhclient-enter-hooks.d", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "config", "parent": "/usr/lib/initramfs-tools/etc/dhcp/dhclient-enter-hooks.d", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1814, "date": "Oct 12 2017"}, {"filename": ".", "parent": "/usr/lib/kernel", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "..", "parent": "/usr/lib/kernel", "flags": "drwxr-xr-x", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Oct 30 21:02"}, {"filename": "install.d", "parent": "/usr/lib/kernel", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 6 06:24"}, {"filename": ".", "parent": "/usr/lib/kernel/install.d", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 6 06:24"}, {"filename": "..", "parent": "/usr/lib/kernel/install.d", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "50-depmod.install", "parent": "/usr/lib/kernel/install.d", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 368, "date": "Jan 28 2018"}, {"filename": "85-initrd.install", "parent": "/usr/lib/kernel/install.d", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 567, "date": "Nov 14 20:51"}, {"filename": "90-loaderentry.install", "parent": "/usr/lib/kernel/install.d", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2051, "date": "Jan 28 2018"}, {"filename": ".", "parent": "/usr/lib/klibc", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "..", "parent": "/usr/lib/klibc", "flags": "drwxr-xr-x", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Oct 30 21:02"}, {"filename": "bin", "parent": "/usr/lib/klibc", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": ".", "parent": "/usr/lib/klibc/bin", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "..", "parent": "/usr/lib/klibc/bin", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "cat", "parent": "/usr/lib/klibc/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2832, "date": "Nov 9 2017"}, {"filename": "chroot", "parent": "/usr/lib/klibc/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1016, "date": "Nov 9 2017"}, {"filename": "cpio", "parent": "/usr/lib/klibc/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 5360, "date": "Nov 9 2017"}, {"filename": "dd", "parent": "/usr/lib/klibc/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 4136, "date": "Nov 9 2017"}, {"filename": "dmesg", "parent": "/usr/lib/klibc/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1144, "date": "Nov 9 2017"}, {"filename": "false", "parent": "/usr/lib/klibc/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 624, "date": "Nov 9 2017"}, {"filename": "fstype", "parent": "/usr/lib/klibc/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 4536, "date": "Nov 9 2017"}, {"filename": "gunzip", "parent": "/usr/lib/klibc/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 32312, "date": "Nov 9 2017"}, {"filename": "gzip", "parent": "/usr/lib/klibc/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 32312, "date": "Nov 9 2017"}, {"filename": "halt", "parent": "/usr/lib/klibc/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1176, "date": "Nov 9 2017"}, {"filename": "ipconfig", "parent": "/usr/lib/klibc/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 13680, "date": "Nov 9 2017"}, {"filename": "kill", "parent": "/usr/lib/klibc/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1088, "date": "Nov 9 2017"}, {"filename": "kinit", "parent": "/usr/lib/klibc/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 73560, "date": "Nov 9 2017"}, {"filename": "kinit.shared", "parent": "/usr/lib/klibc/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 44800, "date": "Nov 9 2017"}, {"filename": "ln", "parent": "/usr/lib/klibc/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1408, "date": "Nov 9 2017"}, {"filename": "losetup", "parent": "/usr/lib/klibc/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 4904, "date": "Nov 9 2017"}, {"filename": "ls", "parent": "/usr/lib/klibc/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2616, "date": "Nov 9 2017"}, {"filename": "minips", "parent": "/usr/lib/klibc/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 5680, "date": "Nov 9 2017"}, {"filename": "mkdir", "parent": "/usr/lib/klibc/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2240, "date": "Nov 9 2017"}, {"filename": "mkfifo", "parent": "/usr/lib/klibc/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1936, "date": "Nov 9 2017"}, {"filename": "mknod", "parent": "/usr/lib/klibc/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2016, "date": "Nov 9 2017"}, {"filename": "mount", "parent": "/usr/lib/klibc/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2824, "date": "Nov 9 2017"}, {"filename": "mv", "parent": "/usr/lib/klibc/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2496, "date": "Nov 9 2017"}, {"filename": "nfsmount", "parent": "/usr/lib/klibc/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 7288, "date": "Nov 9 2017"}, {"filename": "nuke", "parent": "/usr/lib/klibc/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1216, "date": "Nov 9 2017"}, {"filename": "pivot_root", "parent": "/usr/lib/klibc/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 960, "date": "Nov 9 2017"}, {"filename": "poweroff", "parent": "/usr/lib/klibc/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1176, "date": "Nov 9 2017"}, {"filename": "readlink", "parent": "/usr/lib/klibc/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1272, "date": "Nov 9 2017"}, {"filename": "reboot", "parent": "/usr/lib/klibc/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1176, "date": "Nov 9 2017"}, {"filename": "resume", "parent": "/usr/lib/klibc/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2904, "date": "Nov 9 2017"}, {"filename": "run-init", "parent": "/usr/lib/klibc/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 5056, "date": "Nov 9 2017"}, {"filename": "sh.shared", "parent": "/usr/lib/klibc/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 58568, "date": "Nov 9 2017"}, {"filename": "sleep", "parent": "/usr/lib/klibc/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 976, "date": "Nov 9 2017"}, {"filename": "sync", "parent": "/usr/lib/klibc/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 784, "date": "Nov 9 2017"}, {"filename": "true", "parent": "/usr/lib/klibc/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 616, "date": "Nov 9 2017"}, {"filename": "umount", "parent": "/usr/lib/klibc/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1200, "date": "Nov 9 2017"}, {"filename": "uname", "parent": "/usr/lib/klibc/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 1880, "date": "Nov 9 2017"}, {"filename": "zcat", "parent": "/usr/lib/klibc/bin", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 32312, "date": "Nov 9 2017"}, {"filename": ".", "parent": "/usr/lib/language-selector", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "..", "parent": "/usr/lib/language-selector", "flags": "drwxr-xr-x", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Oct 30 21:02"}, {"filename": "ls-dbus-backend", "parent": "/usr/lib/language-selector", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 4520, "date": "Nov 4 2013"}, {"filename": ".", "parent": "/usr/lib/linux", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 12 2019"}, {"filename": "..", "parent": "/usr/lib/linux", "flags": "drwxr-xr-x", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Oct 30 21:02"}, {"filename": "triggers", "parent": "/usr/lib/linux", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:04"}, {"filename": ".", "parent": "/usr/lib/linux/triggers", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 5 06:04"}, {"filename": "..", "parent": "/usr/lib/linux/triggers", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 12 2019"}, {"filename": ".", "parent": "/usr/lib/linux-boot-probes", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 12 2019"}, {"filename": "..", "parent": "/usr/lib/linux-boot-probes", "flags": "drwxr-xr-x", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Oct 30 21:02"}, {"filename": "50mounted-tests", "parent": "/usr/lib/linux-boot-probes", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2705, "date": "Jan 26 2017"}, {"filename": "mounted", "parent": "/usr/lib/linux-boot-probes", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 12 2019"}, {"filename": ".", "parent": "/usr/lib/linux-boot-probes/mounted", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 12 2019"}, {"filename": "..", "parent": "/usr/lib/linux-boot-probes/mounted", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 12 2019"}, {"filename": "40grub", "parent": "/usr/lib/linux-boot-probes/mounted", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2147, "date": "Jan 21 2017"}, {"filename": "40grub2", "parent": "/usr/lib/linux-boot-probes/mounted", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2535, "date": "Jan 21 2017"}, {"filename": "50lilo", "parent": "/usr/lib/linux-boot-probes/mounted", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2331, "date": "Jan 21 2017"}, {"filename": "90fallback", "parent": "/usr/lib/linux-boot-probes/mounted", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 2000, "date": "Jan 21 2017"}, {"filename": ".", "parent": "/usr/lib/locale", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 12 2019"}, {"filename": "..", "parent": "/usr/lib/locale", "flags": "drwxr-xr-x", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Oct 30 21:02"}, {"filename": "C.UTF-8", "parent": "/usr/lib/locale", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "locale-archive", "parent": "/usr/lib/locale", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1683056, "date": "Aug 12 2019"}, {"filename": ".", "parent": "/usr/lib/locale/C.UTF-8", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "..", "parent": "/usr/lib/locale/C.UTF-8", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 12 2019"}, {"filename": "LC_ADDRESS", "parent": "/usr/lib/locale/C.UTF-8", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 131, "date": "Apr 16 2018"}, {"filename": "LC_COLLATE", "parent": "/usr/lib/locale/C.UTF-8", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 1516558, "date": "Apr 16 2018"}, {"filename": "LC_CTYPE", "parent": "/usr/lib/locale/C.UTF-8", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 199772, "date": "Apr 16 2018"}, {"filename": "LC_IDENTIFICATION", "parent": "/usr/lib/locale/C.UTF-8", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 252, "date": "Apr 16 2018"}, {"filename": "LC_MEASUREMENT", "parent": "/usr/lib/locale/C.UTF-8", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 23, "date": "Apr 16 2018"}, {"filename": "LC_MESSAGES", "parent": "/usr/lib/locale/C.UTF-8", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "LC_MONETARY", "parent": "/usr/lib/locale/C.UTF-8", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 270, "date": "Apr 16 2018"}, {"filename": "LC_NAME", "parent": "/usr/lib/locale/C.UTF-8", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 62, "date": "Apr 16 2018"}, {"filename": "LC_NUMERIC", "parent": "/usr/lib/locale/C.UTF-8", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 50, "date": "Apr 16 2018"}, {"filename": "LC_PAPER", "parent": "/usr/lib/locale/C.UTF-8", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 34, "date": "Apr 16 2018"}, {"filename": "LC_TELEPHONE", "parent": "/usr/lib/locale/C.UTF-8", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 47, "date": "Apr 16 2018"}, {"filename": "LC_TIME", "parent": "/usr/lib/locale/C.UTF-8", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 3360, "date": "Apr 16 2018"}, {"filename": ".", "parent": "/usr/lib/locale/C.UTF-8/LC_MESSAGES", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "..", "parent": "/usr/lib/locale/C.UTF-8/LC_MESSAGES", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "SYS_LC_MESSAGES", "parent": "/usr/lib/locale/C.UTF-8/LC_MESSAGES", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 48, "date": "Apr 16 2018"}, {"filename": ".", "parent": "/usr/lib/lxcfs", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "..", "parent": "/usr/lib/lxcfs", "flags": "drwxr-xr-x", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Oct 30 21:02"}, {"filename": "liblxcfs.so", "link_to": "../x86_64-linux-gnu/lxcfs/liblxcfs.so", "parent": "/usr/lib/lxcfs", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 37, "date": "Nov 23 2018"}, {"filename": ".", "parent": "/usr/lib/lxd", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "..", "parent": "/usr/lib/lxd", "flags": "drwxr-xr-x", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Oct 30 21:02"}, {"filename": "libdqlite.so.0", "parent": "/usr/lib/lxd", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 110600, "date": "Nov 23 2018"}, {"filename": "libdqlite.so.0.0.1", "parent": "/usr/lib/lxd", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 110600, "date": "Nov 23 2018"}, {"filename": "libsqlite3.so.0", "parent": "/usr/lib/lxd", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 760256, "date": "Nov 23 2018"}, {"filename": "libsqlite3.so.0.8.6", "parent": "/usr/lib/lxd", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 760256, "date": "Nov 23 2018"}, {"filename": "lxd", "parent": "/usr/lib/lxd", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 18748376, "date": "Nov 23 2018"}, {"filename": "shutdown", "parent": "/usr/lib/lxd", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 99, "date": "Nov 23 2018"}, {"filename": "upgrade-bridge", "parent": "/usr/lib/lxd", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 4957, "date": "Nov 23 2018"}, {"filename": ".", "parent": "/usr/lib/man-db", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Aug 5 2019"}, {"filename": "..", "parent": "/usr/lib/man-db", "flags": "drwxr-xr-x", "links": 65, "owner": "root", "group": "root", "size": 4096, "date": "Oct 30 21:02"}, {"filename": "globbing", "parent": "/usr/lib/man-db", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 18904, "date": "Aug 4 2018"}, {"filename": "libman-2.8.3.so", "parent": "/usr/lib/man-db", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 160768, "date": "Aug 4 2018"}, {"filename": "libmandb-2.8.3.so", "parent": "/usr/lib/man-db", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "root", "size": 22368, "date": "Aug 4 2018"}, {"filename": "libmandb.so", "link_to": "libmandb-2.8.3.so", "parent": "/usr/lib/man-db", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 17, "date": "Aug 4 2018"}, {"filename": "libman.so", "link_to": "libman-2.8.3.so", "parent": "/usr/lib/man-db", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 15, "date": "Aug 4 2018"}, {"filename": "man", "link_to": "../../bin/man", "parent": "/usr/lib/man-db", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 13, "date": "Aug 4 2018"}, {"filename": "manconv", "parent": "/usr/lib/man-db", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 14712, "date": "Aug 4 2018"}, {"filename": "mandb", "link_to": "../../bin/mandb", "parent": "/usr/lib/man-db", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 15, "date": "Aug 4 2018"}, {"filename": "zsoelim", "parent": "/usr/lib/man-db", "flags": "-rwxr-xr-x", "links": 1, "owner": "root", "group": "root", "size": 47416, "date": "Aug 4 2018"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/ls-alR.out000066400000000000000000010007731415226333200211000ustar00rootroot00000000000000/usr: total 64 drwxr-xr-x 10 root root 4096 Aug 5 2019 . drwxr-xr-x 24 root root 4096 Feb 5 06:04 .. drwxr-xr-x 2 root root 28672 Feb 6 06:24 bin drwxr-xr-x 2 root root 4096 Apr 24 2018 games drwxr-xr-x 34 root root 4096 Feb 5 06:03 include drwxr-xr-x 65 root root 4096 Oct 30 21:02 lib drwxr-xr-x 10 root root 4096 Aug 5 2019 local drwxr-xr-x 2 root root 4096 Feb 5 06:03 sbin drwxr-xr-x 117 root root 4096 Oct 30 21:02 share drwxr-xr-x 6 root root 4096 Feb 6 06:23 src /usr/bin: total 345868 drwxr-xr-x 2 root root 28672 Feb 6 06:24 . drwxr-xr-x 10 root root 4096 Aug 5 2019 .. -rwxr-xr-x 1 root root 51384 Jan 18 2018 [ -rwxr-xr-x 1 root root 22696 Sep 27 2018 aa-enabled -rwxr-xr-x 1 root root 22696 Sep 27 2018 aa-exec -rwxr-xr-x 1 root root 14608 Apr 28 2017 acpi_listen -rwxr-xr-x 1 root root 7258 Jul 12 2019 add-apt-repository -rwxr-xr-x 1 root root 22608 Oct 15 2018 addpart lrwxrwxrwx 1 root root 26 May 8 2019 addr2line -> x86_64-linux-gnu-addr2line -rwxr-xr-x 1 root root 2558 Feb 13 2018 apport-bug -rwxr-xr-x 1 root root 13367 Nov 5 02:49 apport-cli lrwxrwxrwx 1 root root 10 Nov 5 02:49 apport-collect -> apport-bug -rwxr-xr-x 1 root root 1849 Nov 5 02:49 apport-unpack lrwxrwxrwx 1 root root 6 Aug 4 2018 apropos -> whatis -rwxr-xr-x 1 root root 14424 May 7 2019 apt lrwxrwxrwx 1 root root 18 Jul 12 2019 apt-add-repository -> add-apt-repository -rwxr-xr-x 1 root root 80032 May 7 2019 apt-cache -rwxr-xr-x 1 root root 22688 May 7 2019 apt-cdrom -rwxr-xr-x 1 root root 22616 May 7 2019 apt-config -rwxr-xr-x 1 root root 22688 May 7 2019 apt-extracttemplates -rwxr-xr-x 1 root root 239776 May 7 2019 apt-ftparchive -rwxr-xr-x 1 root root 43168 May 7 2019 apt-get -rwxr-xr-x 1 root root 27391 May 7 2019 apt-key -rwxr-xr-x 1 root root 43168 May 7 2019 apt-mark -rwxr-xr-x 1 root root 43096 May 7 2019 apt-sortpkgs lrwxrwxrwx 1 root root 19 May 8 2019 ar -> x86_64-linux-gnu-ar -rwxr-xr-x 1 root root 35032 Jan 18 2018 arch lrwxrwxrwx 1 root root 19 May 8 2019 as -> x86_64-linux-gnu-as -rwsr-sr-x 1 daemon daemon 51464 Feb 20 2018 at lrwxrwxrwx 1 root root 2 Feb 20 2018 atq -> at lrwxrwxrwx 1 root root 2 Feb 20 2018 atrm -> at -rwxr-xr-x 1 root root 402 Aug 28 2017 automat-visualize3 lrwxrwxrwx 1 root root 21 Aug 5 2019 awk -> /etc/alternatives/awk -rwxr-xr-x 1 root root 55512 Jan 18 2018 b2sum -rwxr-xr-x 1 root root 39096 Jan 18 2018 base32 -rwxr-xr-x 1 root root 39096 Jan 18 2018 base64 -rwxr-xr-x 1 root root 35000 Jan 18 2018 basename -rwxr-xr-x 1 root root 7115 Jun 6 2019 bashbug -rwxr-xr-x 1 root root 152 Feb 20 2018 batch -rwxr-xr-x 1 root root 92872 Mar 22 2018 bc -rwxr-xr-x 1 root root 34952 Feb 5 01:07 bootctl -rwxr-xr-x 1 root root 10232 Jan 17 2018 bsd-from -rwxr-sr-x 1 root tty 14328 Jan 17 2018 bsd-write -rwxr-xr-x 1 root root 67672 Feb 5 01:07 busctl -rwxr-xr-x 1 root root 8264 Dec 4 2017 byobu -rwxr-xr-x 1 root root 996 Dec 4 2017 byobu-config -rwxr-xr-x 1 root root 4774 Dec 4 2017 byobu-ctrl-a -rwxr-xr-x 1 root root 1295 Dec 4 2017 byobu-disable -rwxr-xr-x 1 root root 1307 Dec 4 2017 byobu-disable-prompt -rwxr-xr-x 1 root root 1182 Dec 4 2017 byobu-enable -rwxr-xr-x 1 root root 1453 Dec 4 2017 byobu-enable-prompt -rwxr-xr-x 1 root root 1260 Dec 4 2017 byobu-export -rwxr-xr-x 1 root root 5963 Dec 4 2017 byobu-janitor -rwxr-xr-x 1 root root 1506 Dec 4 2017 byobu-keybindings -rwxr-xr-x 1 root root 3289 Dec 4 2017 byobu-launch -rwxr-xr-x 1 root root 1910 Dec 4 2017 byobu-launcher -rwxr-xr-x 1 root root 2459 Dec 4 2017 byobu-launcher-install -rwxr-xr-x 1 root root 1561 Dec 4 2017 byobu-launcher-uninstall -rwxr-xr-x 1 root root 3348 Dec 4 2017 byobu-layout -rwxr-xr-x 1 root root 1156 Dec 4 2017 byobu-prompt -rwxr-xr-x 1 root root 1410 Dec 4 2017 byobu-quiet -rwxr-xr-x 1 root root 3298 Dec 4 2017 byobu-reconnect-sockets lrwxrwxrwx 1 root root 5 Dec 4 2017 byobu-screen -> byobu -rwxr-xr-x 1 root root 1452 Dec 4 2017 byobu-select-backend -rwxr-xr-x 1 root root 6287 Dec 4 2017 byobu-select-profile -rwxr-xr-x 1 root root 1012 Dec 4 2017 byobu-select-session -rwxr-xr-x 1 root root 1599 Dec 4 2017 byobu-shell -rwxr-xr-x 1 root root 1306 Dec 4 2017 byobu-silent -rwxr-xr-x 1 root root 6015 Dec 4 2017 byobu-status -rwxr-xr-x 1 root root 1207 Dec 4 2017 byobu-status-detail lrwxrwxrwx 1 root root 5 Dec 4 2017 byobu-tmux -> byobu -rwxr-xr-x 1 root root 4667 Dec 4 2017 byobu-ugraph -rwxr-xr-x 1 root root 11996 Dec 4 2017 byobu-ulevel lrwxrwxrwx 1 root root 21 Oct 18 00:14 c++ -> /etc/alternatives/c++ lrwxrwxrwx 1 root root 21 Oct 18 00:14 c89 -> /etc/alternatives/c89 -rwxr-xr-x 1 root root 428 May 7 2006 c89-gcc lrwxrwxrwx 1 root root 21 Oct 18 00:14 c99 -> /etc/alternatives/c99 -rwxr-xr-x 1 root root 454 Apr 11 2011 c99-gcc lrwxrwxrwx 1 root root 4 Jan 17 2018 cal -> ncal -rwxr-xr-x 1 root root 31208 Jan 17 2018 calendar lrwxrwxrwx 1 root root 3 May 23 2018 captoinfo -> tic -rwxr-xr-x 1 root root 3327 Apr 16 2018 catchsegv -rwxr-xr-x 1 root root 39384 Aug 4 2018 catman -rwxr-xr-x 1 root root 853 Jul 15 2016 cautious-launcher lrwxrwxrwx 1 root root 20 Oct 18 00:14 cc -> /etc/alternatives/cc lrwxrwxrwx 1 root root 24 May 8 2019 c++filt -> x86_64-linux-gnu-c++filt -rwxr-xr-x 1 root root 380 Apr 20 2018 cftp3 -rwxr-xr-x 1 root root 1275 Jan 25 2016 cgroupfs-mount -rwxr-xr-x 1 root root 620 Jan 25 2016 cgroupfs-umount lrwxrwxrwx 1 root root 10 Aug 5 2019 chacl -> /bin/chacl -rwxr-sr-x 1 root shadow 71816 Mar 22 2019 chage lrwxrwxrwx 1 root root 11 Jun 18 2017 chardet3 -> chardetect3 -rwxr-xr-x 1 root root 389 Jun 18 2017 chardetect3 -rwxr-xr-x 1 root root 14336 Jan 22 14:40 chattr -rwxr-xr-x 1 root root 63672 Jan 18 2018 chcon -rwxr-xr-x 1 root root 2771 Jun 28 2019 check-language-support -rwsr-xr-x 1 root root 76496 Mar 22 2019 chfn -rwxr-xr-x 1 root root 30800 Oct 15 2018 chrt -rwsr-xr-x 1 root root 44528 Mar 22 2019 chsh -rwxr-xr-x 1 root root 34960 Jan 17 11:24 cifsiostat -rwxr-xr-x 1 root root 149838 Apr 23 2019 ckbcomp -rwxr-xr-x 1 root root 386 Apr 20 2018 ckeygen3 -rwxr-xr-x 1 root root 35000 Jan 18 2018 cksum -rwxr-xr-x 1 root root 10240 May 23 2018 clear -rwxr-xr-x 1 root root 10312 Jun 6 2019 clear_console -rwxr-xr-x 1 root root 390 May 11 2019 cloud-id -rwxr-xr-x 1 root root 394 May 11 2019 cloud-init -rwxr-xr-x 1 root root 2108 May 10 2019 cloud-init-per -rwxr-xr-x 1 root root 47200 Aug 4 2017 cmp -rwxr-xr-x 1 root root 14328 Jan 22 2018 codepage -rwxr-xr-x 1 root root 10232 Jan 17 2018 col -rwxr-xr-x 1 root root 963 Dec 4 2017 col1 lrwxrwxrwx 1 root root 4 Dec 4 2017 col2 -> col1 lrwxrwxrwx 1 root root 4 Dec 4 2017 col3 -> col1 lrwxrwxrwx 1 root root 4 Dec 4 2017 col4 -> col1 lrwxrwxrwx 1 root root 4 Dec 4 2017 col5 -> col1 lrwxrwxrwx 1 root root 4 Dec 4 2017 col6 -> col1 lrwxrwxrwx 1 root root 4 Dec 4 2017 col7 -> col1 lrwxrwxrwx 1 root root 4 Dec 4 2017 col8 -> col1 lrwxrwxrwx 1 root root 4 Dec 4 2017 col9 -> col1 -rwxr-xr-x 1 root root 10240 Jan 17 2018 colcrt -rwxr-xr-x 1 root root 10232 Jan 17 2018 colrm -rwxr-xr-x 1 root root 14344 Jan 17 2018 column -rwxr-xr-x 1 root root 39128 Jan 18 2018 comm lrwxrwxrwx 1 root root 11 Jul 15 2016 compose -> run-mailcap -rwxr-xr-x 1 root root 382 Apr 20 2018 conch3 -rwxr-xr-x 1 root root 40697760 Jul 3 2019 containerd -rwxr-xr-x 1 root root 4973832 Jul 3 2019 containerd-shim -rwxr-xr-x 1 root root 6258056 Jul 3 2019 containerd-shim-runc-v1 -rwxr-xr-x 1 root root 18702208 Jul 3 2019 containerd-stress -rwxr-xr-x 1 root root 12835 Nov 19 2018 corelist -rwxr-xr-x 1 root root 8156 Nov 19 2018 cpan -rwxr-xr-x 1 root root 8177 Nov 19 2018 cpan5.26-x86_64-linux-gnu lrwxrwxrwx 1 root root 5 May 20 2019 cpp -> cpp-7 lrwxrwxrwx 1 root root 22 May 8 2019 cpp-7 -> x86_64-linux-gnu-cpp-7 -rwxr-xr-x 1 root root 6332 Nov 12 16:58 c_rehash -rwxr-sr-x 1 root crontab 39352 Nov 16 2017 crontab -rwxr-xr-x 1 root root 51416 Jan 18 2018 csplit -rwxr-xr-x 1 root root 958 Dec 4 2017 ctail -rwxr-xr-x 1 root root 22322880 Jul 3 2019 ctr lrwxrwxrwx 1 root root 6 Feb 26 2018 ctstat -> lnstat -rwxr-xr-x 1 root root 223304 Sep 6 05:27 curl -rwxr-xr-x 1 root root 43224 Jan 18 2018 cut -rwxr-xr-x 1 root root 10224 Jun 10 2019 dbus-cleanup-sockets -rwxr-xr-x 1 root root 236584 Jun 10 2019 dbus-daemon -rwxr-xr-x 1 root root 22520 Jun 10 2019 dbus-monitor -rwxr-xr-x 1 root root 10224 Jun 10 2019 dbus-run-session -rwxr-xr-x 1 root root 26608 Jun 10 2019 dbus-send -rwxr-xr-x 1 root root 14320 Jun 10 2019 dbus-update-activation-environment -rwxr-xr-x 1 root root 10224 Jun 10 2019 dbus-uuidgen -rwxr-xr-x 1 root root 10312 Jan 22 2018 deallocvt -rwxr-xr-x 1 root root 2859 May 6 2019 debconf -rwxr-xr-x 1 root root 11541 May 6 2019 debconf-apt-progress -rwxr-xr-x 1 root root 608 May 6 2019 debconf-communicate -rwxr-xr-x 1 root root 1719 May 6 2019 debconf-copydb -rwxr-xr-x 1 root root 647 May 6 2019 debconf-escape -rwxr-xr-x 1 root root 2935 May 6 2019 debconf-set-selections -rwxr-xr-x 1 root root 1827 May 6 2019 debconf-show -rwxr-xr-x 1 root root 20142 Oct 25 2017 deb-systemd-helper -rwxr-xr-x 1 root root 4434 Oct 25 2017 deb-systemd-invoke -rwxr-xr-x 1 root root 22608 Oct 15 2018 delpart -rwxr-xr-x 1 root root 41840 Nov 18 15:01 delv -rwxr-xr-x 1 root root 2550 Apr 2 2018 dh_bash-completion lrwxrwxrwx 1 root root 26 Mar 26 2018 dh_pypy -> ../share/dh-python/dh_pypy lrwxrwxrwx 1 root root 29 Mar 26 2018 dh_python3 -> ../share/dh-python/dh_python3 -rwxr-xr-x 1 root root 145752 Aug 4 2017 diff -rwxr-xr-x 1 root root 63704 Aug 4 2017 diff3 -rwxr-xr-x 1 root root 150024 Nov 18 15:01 dig -rwxr-xr-x 1 root root 47296 Jan 18 2018 dircolors -rwxr-xr-x 1 root root 546360 Jan 10 2019 dirmngr -rwxr-xr-x 1 root root 109320 Jan 10 2019 dirmngr-client -rwxr-xr-x 1 root root 30904 Jan 18 2018 dirname -rwxr-xr-x 1 root root 68677120 Aug 14 2019 docker -rwxr-xr-x 1 root root 81828392 Aug 14 2019 dockerd -rwxr-xr-x 1 root root 804408 Aug 14 2019 docker-init -rwxr-xr-x 1 root root 2857151 Aug 14 2019 docker-proxy -rwxr-xr-x 1 root root 9017 Jun 19 2019 do-release-upgrade -rwxr-xr-x 1 root root 297472 Oct 4 2018 dpkg -rwxr-xr-x 1 root root 12852 Sep 5 21:05 dpkg-architecture -rwxr-xr-x 1 root root 7565 Sep 5 21:05 dpkg-buildflags -rwxr-xr-x 1 root root 29796 Sep 5 21:05 dpkg-buildpackage -rwxr-xr-x 1 root root 7503 Sep 5 21:05 dpkg-checkbuilddeps -rwxr-xr-x 1 root root 153952 Oct 4 2018 dpkg-deb -rwxr-xr-x 1 root root 2782 Sep 5 21:05 dpkg-distaddfile -rwxr-xr-x 1 root root 141728 Oct 4 2018 dpkg-divert -rwxr-xr-x 1 root root 16775 Sep 5 21:05 dpkg-genbuildinfo -rwxr-xr-x 1 root root 17622 Sep 5 21:05 dpkg-genchanges -rwxr-xr-x 1 root root 14059 Sep 5 21:05 dpkg-gencontrol -rwxr-xr-x 1 root root 10629 Sep 5 21:05 dpkg-gensymbols -rwxr-xr-x 1 root root 19031 Oct 4 2018 dpkg-maintscript-helper -rwxr-xr-x 1 root root 8590 Sep 5 21:05 dpkg-mergechangelogs -rwxr-xr-x 1 root root 6789 Sep 5 21:05 dpkg-name -rwxr-xr-x 1 root root 4435 Sep 5 21:05 dpkg-parsechangelog -rwxr-xr-x 1 root root 149912 Oct 4 2018 dpkg-query -rwxr-xr-x 1 root root 8425 Sep 5 21:05 dpkg-scanpackages -rwxr-xr-x 1 root root 9167 Sep 5 21:05 dpkg-scansources -rwxr-xr-x 1 root root 31360 Sep 5 21:05 dpkg-shlibdeps -rwxr-xr-x 1 root root 23300 Sep 5 21:05 dpkg-source -rwxr-xr-x 1 root root 121176 Oct 4 2018 dpkg-split -rwxr-xr-x 1 root root 71936 Oct 4 2018 dpkg-statoverride -rwxr-xr-x 1 root root 67848 Oct 4 2018 dpkg-trigger -rwxr-xr-x 1 root root 3262 Sep 5 21:05 dpkg-vendor -rwxr-xr-x 1 root root 100568 Jan 18 2018 du lrwxrwxrwx 1 root root 13 Aug 5 2019 dumpkeys -> /bin/dumpkeys lrwxrwxrwx 1 root root 20 May 8 2019 dwp -> x86_64-linux-gnu-dwp -rwxr-xr-x 1 root root 2806 Mar 9 2018 eatmydata -rwxr-xr-x 1 root root 7297 Apr 13 2018 ec2metadata lrwxrwxrwx 1 root root 11 Jul 15 2016 edit -> run-mailcap lrwxrwxrwx 1 root root 24 Aug 5 2019 editor -> /etc/alternatives/editor -rwxr-xr-x 1 root root 31424 Mar 28 2017 eject lrwxrwxrwx 1 root root 24 May 8 2019 elfedit -> x86_64-linux-gnu-elfedit -rwxr-xr-x 1 root root 42153 Nov 19 2018 enc2xs -rwxr-xr-x 1 root root 3066 Nov 19 2018 encguess -rwxr-xr-x 1 root root 35000 Jan 18 2018 env -rwxr-xr-x 1 root root 34896 Feb 21 2019 envsubst -rwxr-xr-x 1 root root 197824 Feb 10 2018 eqn lrwxrwxrwx 1 root root 20 Aug 5 2019 ex -> /etc/alternatives/ex -rwxr-xr-x 1 root root 39128 Jan 18 2018 expand -rwxr-sr-x 1 root shadow 22808 Mar 22 2019 expiry -rwxr-xr-x 1 root root 47288 Jan 18 2018 expr -rwxr-xr-x 1 root root 75992 Jan 18 2018 factor -rwxr-xr-x 1 root root 18728 Mar 22 2019 faillog -rwxr-xr-x 1 root root 26736 Jan 8 2018 faked-sysv -rwxr-xr-x 1 root root 30824 Jan 8 2018 faked-tcp lrwxrwxrwx 1 root root 26 Oct 18 00:14 fakeroot -> /etc/alternatives/fakeroot -rwxr-xr-x 1 root root 3851 Jan 8 2018 fakeroot-sysv -rwxr-xr-x 1 root root 3846 Jan 8 2018 fakeroot-tcp -rwxr-xr-x 1 root root 26704 Oct 15 2018 fallocate -rwxr-xr-x 1 root root 22792 Oct 29 16:50 file -rwxr-xr-x 1 root root 238080 Nov 5 2017 find -rwxr-xr-x 1 root root 30880 Oct 15 2018 flock -rwxr-xr-x 1 root root 43192 Jan 18 2018 fmt -rwxr-xr-x 1 root root 35000 Jan 18 2018 fold -rwxr-xr-x 1 root root 18512 May 14 2018 free lrwxrwxrwx 1 root root 22 Aug 5 2019 from -> /etc/alternatives/from lrwxrwxrwx 1 root root 21 Aug 5 2019 ftp -> /etc/alternatives/ftp lrwxrwxrwx 1 root root 5 May 20 2019 g++ -> g++-7 lrwxrwxrwx 1 root root 22 May 8 2019 g++-7 -> x86_64-linux-gnu-g++-7 -rwxr-xr-x 1 root root 658072 Feb 11 2018 gawk lrwxrwxrwx 1 root root 5 May 20 2019 gcc -> gcc-7 lrwxrwxrwx 1 root root 22 May 8 2019 gcc-7 -> x86_64-linux-gnu-gcc-7 lrwxrwxrwx 1 root root 8 May 20 2019 gcc-ar -> gcc-ar-7 lrwxrwxrwx 1 root root 25 May 8 2019 gcc-ar-7 -> x86_64-linux-gnu-gcc-ar-7 lrwxrwxrwx 1 root root 8 May 20 2019 gcc-nm -> gcc-nm-7 lrwxrwxrwx 1 root root 25 May 8 2019 gcc-nm-7 -> x86_64-linux-gnu-gcc-nm-7 lrwxrwxrwx 1 root root 12 May 20 2019 gcc-ranlib -> gcc-ranlib-7 lrwxrwxrwx 1 root root 29 May 8 2019 gcc-ranlib-7 -> x86_64-linux-gnu-gcc-ranlib-7 lrwxrwxrwx 1 root root 6 May 20 2019 gcov -> gcov-7 lrwxrwxrwx 1 root root 23 May 8 2019 gcov-7 -> x86_64-linux-gnu-gcov-7 lrwxrwxrwx 1 root root 11 May 20 2019 gcov-dump -> gcov-dump-7 lrwxrwxrwx 1 root root 28 May 8 2019 gcov-dump-7 -> x86_64-linux-gnu-gcov-dump-7 lrwxrwxrwx 1 root root 11 May 20 2019 gcov-tool -> gcov-tool-7 lrwxrwxrwx 1 root root 28 May 8 2019 gcov-tool-7 -> x86_64-linux-gnu-gcov-tool-7 -rwxr-xr-x 1 root root 22752 Apr 16 2018 gencat lrwxrwxrwx 1 root root 3 Feb 10 2018 geqn -> eqn -rwxr-xr-x 1 root root 30856 Apr 16 2018 getconf -rwxr-xr-x 1 root root 31224 Apr 16 2018 getent lrwxrwxrwx 1 root root 12 Aug 5 2019 getfacl -> /bin/getfacl -rwxr-xr-x 1 root root 10312 Jan 22 2018 getkeycodes -rwxr-xr-x 1 root root 14408 Oct 15 2018 getopt -rwxr-xr-x 1 root root 34896 Feb 21 2019 gettext -rwxr-xr-x 1 root root 4629 Feb 21 2019 gettext.sh lrwxrwxrwx 1 root root 12 Feb 5 2018 ginstall-info -> install-info -rwxr-xr-x 1 root root 2347696 Dec 9 13:29 git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-receive-pack -> git -rwxr-xr-x 1 root root 1304912 Dec 9 13:29 git-shell lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-upload-archive -> git -rwxr-xr-x 1 root root 1317120 Dec 9 13:29 git-upload-pack lrwxrwxrwx 1 root root 21 May 8 2019 gold -> x86_64-linux-gnu-gold -rwsr-xr-x 1 root root 75824 Mar 22 2019 gpasswd -rwxr-xr-x 1 root root 1017384 Jan 10 2019 gpg -rwxr-xr-x 1 root root 398024 Jan 10 2019 gpg-agent -rwxr-xr-x 1 root root 166216 Jan 10 2019 gpgconf -rwxr-xr-x 1 root root 158568 Jan 10 2019 gpg-connect-agent -rwxr-xr-x 1 root root 26696 Jan 10 2019 gpgparsemail -rwxr-xr-x 1 root root 502880 Jan 10 2019 gpgsm -rwxr-xr-x 1 root root 80336 Jan 10 2019 gpgsplit -rwxr-xr-x 1 root root 437264 Jan 10 2019 gpgv -rwxr-xr-x 1 root root 191504 Jan 10 2019 gpg-wks-server -rwxr-xr-x 1 root root 3443 Jan 10 2019 gpg-zip lrwxrwxrwx 1 root root 3 Feb 10 2018 gpic -> pic lrwxrwxrwx 1 root root 22 May 8 2019 gprof -> x86_64-linux-gnu-gprof -rwxr-xr-x 1 root root 107840 Feb 10 2018 groff -rwxr-xr-x 1 root root 2780 Feb 10 2018 grog -rwxr-xr-x 1 root root 169696 Feb 10 2018 grops -rwxr-xr-x 1 root root 124256 Feb 10 2018 grotty -rwxr-xr-x 1 root root 35000 Jan 18 2018 groups -rwxr-xr-x 1 root root 21883 Apr 13 2018 growpart -rwxr-xr-x 1 root root 245688 Mar 18 2019 grub-editenv -rwxr-xr-x 1 root root 675624 Mar 18 2019 grub-file -rwxr-xr-x 1 root root 808600 Mar 18 2019 grub-fstest -rwxr-xr-x 1 root root 241432 Mar 18 2019 grub-glue-efi -rwxr-xr-x 1 root root 1681 Mar 18 2019 grub-kbdcomp -rwxr-xr-x 1 root root 221224 Mar 18 2019 grub-menulst2cfg -rwxr-xr-x 1 root root 270680 Mar 18 2019 grub-mkfont -rwxr-xr-x 1 root root 336728 Mar 18 2019 grub-mkimage -rwxr-xr-x 1 root root 245848 Mar 18 2019 grub-mklayout -rwxr-xr-x 1 root root 378280 Mar 18 2019 grub-mknetdir -rwxr-xr-x 1 root root 249976 Mar 18 2019 grub-mkpasswd-pbkdf2 -rwxr-xr-x 1 root root 241144 Mar 18 2019 grub-mkrelpath -rwxr-xr-x 1 root root 841960 Mar 18 2019 grub-mkrescue -rwxr-xr-x 1 root root 460536 Mar 18 2019 grub-mkstandalone -rwxr-xr-x 1 root root 622808 Mar 18 2019 grub-mount lrwxrwxrwx 1 root root 34 Mar 18 2019 grub-ntldr-img -> ../lib/grub/i386-pc/grub-ntldr-img -rwxr-xr-x 1 root root 692392 Mar 18 2019 grub-render-label -rwxr-xr-x 1 root root 265848 Mar 18 2019 grub-script-check -rwxr-xr-x 1 root root 639672 Mar 18 2019 grub-syslinux2cfg lrwxrwxrwx 1 root root 3 Feb 10 2018 gtbl -> tbl -rwxr-xr-x 1 root root 29224 Nov 19 2018 h2ph -rwxr-xr-x 1 root root 60866 Nov 19 2018 h2xs lrwxrwxrwx 1 root root 7 Jan 17 2018 hd -> hexdump -rwxr-xr-x 1 root root 43224 Jan 18 2018 head -rwxr-xr-x 1 root root 2514 Feb 2 2018 helpztags -rwxr-xr-x 1 root root 26728 Jan 17 2018 hexdump -rwxr-xr-x 1 root root 129704 Nov 18 15:01 host -rwxr-xr-x 1 root root 30904 Jan 18 2018 hostid -rwxr-xr-x 1 root root 18504 Feb 5 01:07 hostnamectl -rwxr-xr-x 1 root root 185016 Feb 17 2018 htop -rwxr-xr-x 1 root root 10830 Apr 9 2019 hwe-support-status lrwxrwxrwx 1 root root 7 Oct 15 2018 i386 -> setarch -rwxr-xr-x 1 root root 63744 Apr 16 2018 iconv -rwxr-xr-x 1 root root 43224 Jan 18 2018 id -rwxr-xr-x 1 root root 3189 Feb 11 2018 igawk -rwxr-xr-x 1 root root 251616 Feb 5 2018 info lrwxrwxrwx 1 root root 29 Aug 5 2019 infobrowser -> /etc/alternatives/infobrowser -rwxr-xr-x 1 root root 59464 May 23 2018 infocmp lrwxrwxrwx 1 root root 3 May 23 2018 infotocap -> tic -rwxr-xr-x 1 root root 145664 Jan 18 2018 install -rwxr-xr-x 1 root root 44128 Feb 5 2018 install-info -rwxr-xr-x 1 root root 4370 Nov 19 2018 instmodsh -rwxr-xr-x 1 root root 26704 Oct 15 2018 ionice -rwxr-xr-x 1 root root 55440 Jan 17 11:24 iostat -rwxr-xr-x 1 root root 26768 Oct 15 2018 ipcmk -rwxr-xr-x 1 root root 26704 Oct 15 2018 ipcrm -rwxr-xr-x 1 root root 51280 Oct 15 2018 ipcs lrwxrwxrwx 1 root root 19 Nov 12 2017 iptables-xml -> /sbin/xtables-multi -rwxr-xr-x 1 root root 10280 Dec 30 2017 ischroot lrwxrwxrwx 1 root root 14 Mar 28 2019 iscsiadm -> /sbin/iscsiadm -rwxr-xr-x 1 root root 47320 Jan 18 2018 join -rwxr-xr-x 1 root root 22520 Jan 30 2017 jq lrwxrwxrwx 1 root root 26 Aug 5 2019 jsondiff -> /etc/alternatives/jsondiff lrwxrwxrwx 1 root root 27 Aug 5 2019 jsonpatch -> /etc/alternatives/jsonpatch lrwxrwxrwx 1 root root 29 Aug 5 2019 jsonpointer -> /etc/alternatives/jsonpointer -rwxr-xr-x 1 root root 3959 Nov 19 2018 json_pp lrwxrwxrwx 1 root root 28 Aug 5 2019 jsonschema -> /etc/alternatives/jsonschema -rwxr-xr-x 1 root root 14408 Jan 22 2018 kbdinfo -rwxr-xr-x 1 root root 162496 Jan 10 2019 kbxutil lrwxrwxrwx 1 root root 7 Jan 15 2014 keep-one-running -> run-one -rwxr-xr-x 1 root root 4508 Jan 28 2018 kernel-install -rwxr-xr-x 1 root root 385 Jan 9 2018 keyring -rwxr-xr-x 1 root root 27768 Dec 11 2018 killall -rwxr-xr-x 1 root root 624 Feb 8 2019 landscape-sysinfo -rwxr-xr-x 1 root root 43088 Oct 15 2018 last lrwxrwxrwx 1 root root 4 Oct 15 2018 lastb -> last -rwxr-xr-x 1 root root 18504 Mar 22 2019 lastlog -rwxr-xr-x 1 root root 7786 Feb 26 2018 lcf lrwxrwxrwx 1 root root 19 May 8 2019 ld -> x86_64-linux-gnu-ld lrwxrwxrwx 1 root root 23 May 8 2019 ld.bfd -> x86_64-linux-gnu-ld.bfd -rwxr-xr-x 1 root root 5420 Apr 16 2018 ldd lrwxrwxrwx 1 root root 24 May 8 2019 ld.gold -> x86_64-linux-gnu-ld.gold lrwxrwxrwx 1 root root 9 Aug 5 2019 less -> /bin/less lrwxrwxrwx 1 root root 13 Aug 5 2019 lessecho -> /bin/lessecho lrwxrwxrwx 1 root root 13 Aug 5 2019 lessfile -> /bin/lessfile lrwxrwxrwx 1 root root 12 Aug 5 2019 lesskey -> /bin/lesskey lrwxrwxrwx 1 root root 13 Aug 5 2019 lesspipe -> /bin/lesspipe -rwxr-xr-x 1 root root 92744 Aug 4 2018 lexgrog -rwxr-xr-x 1 root root 15775 Nov 19 2018 libnetcfg -rwxr-xr-x 1 root root 30904 Jan 18 2018 link lrwxrwxrwx 1 root root 7 Oct 15 2018 linux32 -> setarch lrwxrwxrwx 1 root root 7 Oct 15 2018 linux64 -> setarch -rwxr-xr-x 1 root root 1577 Jan 21 2017 linux-boot-prober -rwxr-xr-x 1 root root 4090 Jun 21 2016 linux-check-removal -rwxr-xr-x 1 root root 6320 Jun 5 2016 linux-update-symlinks -rwxr-xr-x 1 root root 2696 Sep 17 2016 linux-version -rwxr-xr-x 1 root root 22888 Feb 26 2018 lnstat lrwxrwxrwx 1 root root 13 Aug 5 2019 loadkeys -> /bin/loadkeys -rwxr-xr-x 1 root root 26760 Jan 22 2018 loadunimap -rwxr-xr-x 1 root root 50592 Apr 16 2018 locale -rwxr-xr-x 1 root root 10240 Aug 5 2019 locale-check -rwxr-xr-x 1 root root 22600 Feb 5 01:07 localectl -rwxr-xr-x 1 root root 338744 Apr 16 2018 localedef lrwxrwxrwx 1 root root 24 Aug 5 2019 locate -> /etc/alternatives/locate -rwxr-xr-x 1 root root 47792 Oct 15 2018 logger -rwxr-xr-x 1 root root 30904 Jan 18 2018 logname -rwxr-xr-x 1 root root 10472 Jan 17 2018 look -rwxr-xr-x 1 root root 2885 Jan 17 2018 lorder -rwxr-xr-x 1 root root 10240 Jan 22 14:40 lsattr -rwxr-xr-x 1 root root 3638 Aug 7 2017 lsb_release -rwxr-xr-x 1 root root 71760 Oct 15 2018 lscpu -rwxr-xr-x 1 root root 687056 Jul 10 2018 lshw -rwxr-xr-x 1 root root 625 Sep 27 2018 lsinitramfs -rwxr-xr-x 1 root root 71760 Oct 15 2018 lsipc -rwxr-xr-x 1 root root 35232 Oct 15 2018 lslocks -rwxr-xr-x 1 root root 63568 Oct 15 2018 lslogins -rwxr-xr-x 1 root root 43088 Oct 15 2018 lsmem -rwxr-xr-x 1 root root 38992 Oct 15 2018 lsns -rwxr-xr-x 1 root root 163224 Oct 28 2015 lsof -rwxr-xr-x 1 root root 81584 Feb 10 2019 lspci -rwxr-xr-x 1 root root 1081 Aug 28 2017 lspgpot -rwxr-xr-x 1 root root 117176 Apr 21 2017 lsusb -rwxr-xr-x 1 root root 333016 Oct 13 2016 ltrace -rwxr-xr-x 1 root root 10779792 Nov 23 2018 lxc -rwxr-xr-x 1 root root 18504 Nov 23 2018 lxcfs -rwxr-xr-x 1 root root 105 Nov 23 2018 lxd lrwxrwxrwx 1 root root 23 Aug 5 2019 lzcat -> /etc/alternatives/lzcat lrwxrwxrwx 1 root root 23 Aug 5 2019 lzcmp -> /etc/alternatives/lzcmp lrwxrwxrwx 1 root root 24 Aug 5 2019 lzdiff -> /etc/alternatives/lzdiff lrwxrwxrwx 1 root root 25 Aug 5 2019 lzegrep -> /etc/alternatives/lzegrep lrwxrwxrwx 1 root root 25 Aug 5 2019 lzfgrep -> /etc/alternatives/lzfgrep lrwxrwxrwx 1 root root 24 Aug 5 2019 lzgrep -> /etc/alternatives/lzgrep lrwxrwxrwx 1 root root 24 Aug 5 2019 lzless -> /etc/alternatives/lzless lrwxrwxrwx 1 root root 22 Aug 5 2019 lzma -> /etc/alternatives/lzma -rwxr-xr-x 1 root root 10384 Jun 28 2017 lzmainfo lrwxrwxrwx 1 root root 24 Aug 5 2019 lzmore -> /etc/alternatives/lzmore -rwxr-xr-x 1 root root 222792 Apr 17 2018 make -rwxr-xr-x 1 root root 4905 Apr 17 2018 make-first-existing-target -rwxr-xr-x 1 root root 107008 Aug 4 2018 man -rwxr-xr-x 1 root root 129760 Aug 4 2018 mandb -rwxr-xr-x 1 root root 1942 Dec 4 2017 manifest -rwxr-xr-x 1 root root 31200 Aug 4 2018 manpath -rwxr-xr-x 1 root root 22664 Jan 22 2018 mapscrn -rwxr-xr-x 1 root root 125416 Apr 3 2018 mawk -rwxr-xr-x 1 root root 30864 Oct 15 2018 mcookie -rwxr-xr-x 1 root root 43224 Jan 18 2018 md5sum lrwxrwxrwx 1 root root 6 Jan 18 2018 md5sum.textutils -> md5sum -rwxr-xr-x 1 root root 43136 Nov 18 15:01 mdig -rwxr-xr-x 1 root root 10312 Oct 15 2018 mesg -rwxr-xr-x 1 root root 2194 Nov 30 2017 migrate-pubring-from-classic-gpg -rwxr-xr-x 1 root root 35098 Apr 9 2018 miniterm -rwxr-xr-x 1 root root 63672 Jan 18 2018 mkfifo -rwxr-xr-x 1 root root 16163 Jan 22 2018 mk_modmap -rwxr-xr-x 1 root root 189432 Jul 5 2018 mksquashfs -rwxr-sr-x 1 root mlocate 43088 Mar 1 2018 mlocate -rwxr-xr-x 1 root root 51360 Jan 17 11:24 mpstat -rwxr-xr-x 1 root root 73664 Nov 2 2017 mtr -rwxr-xr-x 1 root root 6494 Apr 16 2018 mtrace -rwxr-xr-x 1 root root 26616 Nov 2 2017 mtr-packet -rwxr-xr-x 1 root root 26704 Oct 15 2018 namei lrwxrwxrwx 1 root root 22 Aug 5 2019 nawk -> /etc/alternatives/nawk -rwxr-xr-x 1 root root 29480 Jan 17 2018 ncal -rwxr-xr-x 1 root root 204760 Apr 16 2018 ncat -rwxr-xr-x 1 root root 908 Feb 10 2018 neqn -rwxr-xr-x 1 root root 101064 Dec 6 2016 netkit-ftp -rwxr-xr-x 1 root root 18203 Oct 15 2018 networkd-dispatcher -rwsr-xr-x 1 root root 37136 Mar 22 2019 newgidmap -rwsr-xr-x 1 root root 40344 Mar 22 2019 newgrp -rwsr-xr-x 1 root root 37136 Mar 22 2019 newuidmap lrwxrwxrwx 1 root root 4 Dec 4 2017 NF -> col1 -rwxr-xr-x 1 root root 34896 Feb 21 2019 ngettext -rwxr-xr-x 1 root root 35000 Jan 18 2018 nice -rwxr-xr-x 1 root root 43288 Jan 18 2018 nl lrwxrwxrwx 1 root root 19 May 8 2019 nm -> x86_64-linux-gnu-nm -rwxr-xr-x 1 root root 2961432 Apr 16 2018 nmap -rwxr-xr-x 1 root root 35000 Jan 18 2018 nohup -rwxr-xr-x 1 root root 530776 Apr 16 2018 nping -rwxr-xr-x 1 root root 35000 Jan 18 2018 nproc -rwxr-xr-x 1 root root 3323 Feb 10 2018 nroff -rwxr-xr-x 1 root root 31008 Oct 15 2018 nsenter -rwxr-xr-x 1 root root 133640 Nov 18 15:01 nslookup -rwxr-xr-x 1 root root 26696 Feb 26 2018 nstat -rwxr-xr-x 1 root root 67608 Nov 18 15:01 nsupdate -rwxr-xr-x 1 root root 47224 Mar 21 2019 ntfsdecrypt -rwxr-xr-x 1 root root 63736 Jan 18 2018 numfmt lrwxrwxrwx 1 root root 24 May 8 2019 objcopy -> x86_64-linux-gnu-objcopy lrwxrwxrwx 1 root root 24 May 8 2019 objdump -> x86_64-linux-gnu-objdump -rwxr-xr-x 1 root root 67800 Jan 18 2018 od lrwxrwxrwx 1 root root 17 Mar 20 2018 on_ac_power -> /sbin/on_ac_power -rwxr-xr-x 1 root root 723944 Nov 12 16:58 openssl -rwxr-xr-x 1 root root 4551 Jan 31 2017 os-prober lrwxrwxrwx 1 root root 23 Aug 5 2019 pager -> /etc/alternatives/pager -rwxr-xr-x 1 root root 88144 Oct 15 2018 partx -rwsr-xr-x 1 root root 59640 Mar 22 2019 passwd -rwxr-xr-x 1 root root 35032 Jan 18 2018 paste -rwxr-xr-x 1 root root 16642 Mar 1 2016 pastebinit -rwxr-xr-x 1 root root 182648 Jul 23 2019 patch -rwxr-xr-x 1 root root 35000 Jan 18 2018 pathchk lrwxrwxrwx 1 root root 5 Apr 15 2018 pbget -> pbput -rwxr-xr-x 1 root root 2569 Feb 29 2016 pbput lrwxrwxrwx 1 root root 5 Apr 15 2018 pbputs -> pbput -rwxr-xr-x 1 root root 14472 Feb 10 2019 pcimodules lrwxrwxrwx 1 root root 6 Oct 25 2018 pdb3 -> pdb3.6 lrwxrwxrwx 1 root root 23 Oct 7 12:59 pdb3.6 -> ../lib/python3.6/pdb.py -rwxr-xr-x 1 root root 14328 Dec 11 2018 peekfd -rwxr-xr-x 2 root root 2097720 Nov 19 2018 perl -rwxr-xr-x 2 root root 2097720 Nov 19 2018 perl5.26.1 -rwxr-xr-x 1 root root 10216 Nov 19 2018 perl5.26-x86_64-linux-gnu -rwxr-xr-x 2 root root 45853 Nov 19 2018 perlbug -rwxr-xr-x 1 root root 125 Nov 19 2018 perldoc -rwxr-xr-x 1 root root 10864 Nov 19 2018 perlivp -rwxr-xr-x 2 root root 45853 Nov 19 2018 perlthanks lrwxrwxrwx 1 root root 22 Aug 5 2019 pftp -> /etc/alternatives/pftp -rwxr-xr-x 1 root root 26712 May 14 2018 pgrep -rwxr-xr-x 1 root root 208928 Feb 10 2018 pic lrwxrwxrwx 1 root root 22 Aug 5 2019 pico -> /etc/alternatives/pico -rwxr-xr-x 1 root root 8357 Nov 19 2018 piconv -rwxr-xr-x 1 root root 63648 Jan 17 11:24 pidstat -rwxr-xr-x 2 root root 116944 Dec 27 2017 pigz lrwxrwxrwx 1 root root 26 Aug 5 2019 pinentry -> /etc/alternatives/pinentry -rwxr-xr-x 1 root root 63992 Feb 6 2018 pinentry-curses -rwxr-xr-x 1 root root 39128 Jan 18 2018 pinky -rwxr-xr-x 1 root root 293 Apr 3 2019 pip3 -rwxr-xr-x 1 root root 14328 Mar 27 2019 pkaction -rwxr-xr-x 1 root root 18504 Mar 27 2019 pkcheck -rwsr-xr-x 1 root root 22520 Mar 27 2019 pkexec lrwxrwxrwx 1 root root 5 May 14 2018 pkill -> pgrep -rwxr-xr-x 1 root root 14328 Mar 27 2019 pkttyagent -rwxr-xr-x 1 root root 4533 Nov 19 2018 pl2pm -rwxr-xr-x 1 root root 18656 Apr 16 2018 pldd -rwxr-xr-x 1 root root 30808 May 14 2018 pmap -rwxr-xr-x 1 root root 4134 Nov 19 2018 pod2html -rwxr-xr-x 1 root root 15079 Nov 19 2018 pod2man -rwxr-xr-x 1 root root 10979 Nov 19 2018 pod2text -rwxr-xr-x 1 root root 3948 Nov 19 2018 pod2usage -rwxr-xr-x 1 root root 3658 Nov 19 2018 podchecker -rwxr-xr-x 1 root root 2527 Nov 19 2018 podselect -rwxr-xr-x 1 root root 8744 May 29 2018 pollinate -rwxr-xr-x 1 root root 71960 Jan 18 2018 pr -rwxr-xr-x 1 root root 47304 Feb 10 2018 preconv lrwxrwxrwx 1 root root 11 Jul 15 2016 print -> run-mailcap -rwxr-xr-x 1 root root 30904 Jan 18 2018 printenv -rwxr-xr-x 1 root root 22528 Jan 17 2018 printerbanner -rwxr-xr-x 1 root root 51384 Jan 18 2018 printf -rwxr-xr-x 1 root root 35424 Oct 15 2018 prlimit -rwxr-xr-x 1 root root 13588 Nov 19 2018 prove -rwxr-xr-x 1 root root 18504 Dec 11 2018 prtstat lrwxrwxrwx 1 root root 9 Jan 22 2018 psfaddtable -> psfxtable lrwxrwxrwx 1 root root 9 Jan 22 2018 psfgettable -> psfxtable lrwxrwxrwx 1 root root 9 Jan 22 2018 psfstriptable -> psfxtable -rwxr-xr-x 1 root root 18424 Jan 22 2018 psfxtable -rwxr-xr-x 1 root root 10232 Dec 11 2018 pslog -rwxr-xr-x 1 root root 27592 Dec 11 2018 pstree lrwxrwxrwx 1 root root 6 Dec 11 2018 pstree.x11 -> pstree -rwxr-xr-x 1 root root 3549 Nov 19 2018 ptar -rwxr-xr-x 1 root root 2628 Nov 19 2018 ptardiff -rwxr-xr-x 1 root root 4392 Nov 19 2018 ptargrep -rwxr-xr-x 1 root root 71928 Jan 18 2018 ptx -rwxr-xr-x 1 root root 1149 Dec 4 2017 purge-old-kernels -rwxr-xr-x 1 root root 10312 May 14 2018 pwdx -rwxr-xr-x 1 root root 7812 Oct 25 2018 py3clean -rwxr-xr-x 1 root root 12119 Oct 25 2018 py3compile lrwxrwxrwx 1 root root 31 Oct 25 2018 py3versions -> ../share/python3/py3versions.py lrwxrwxrwx 1 root root 26 Mar 26 2018 pybuild -> ../share/dh-python/pybuild lrwxrwxrwx 1 root root 8 Oct 25 2018 pydoc3 -> pydoc3.6 -rwxr-xr-x 1 root root 79 Oct 7 12:59 pydoc3.6 lrwxrwxrwx 1 root root 12 Oct 25 2018 pygettext3 -> pygettext3.6 -rwxr-xr-x 1 root root 21547 Oct 7 12:59 pygettext3.6 -rwxr-xr-x 1 root root 392 Apr 20 2018 pyhtmlizer3 -rwxr-xr-x 1 root root 372 Sep 25 2017 pyjwt3 lrwxrwxrwx 1 root root 9 Oct 25 2018 python3 -> python3.6 -rwxr-xr-x 2 root root 4526456 Oct 7 12:59 python3.6 lrwxrwxrwx 1 root root 33 Oct 7 12:59 python3.6-config -> x86_64-linux-gnu-python3.6-config -rwxr-xr-x 2 root root 4526456 Oct 7 12:59 python3.6m lrwxrwxrwx 1 root root 34 Oct 7 12:59 python3.6m-config -> x86_64-linux-gnu-python3.6m-config lrwxrwxrwx 1 root root 16 Oct 25 2018 python3-config -> python3.6-config -rwxr-xr-x 1 root root 1018 Oct 28 2017 python3-jsondiff -rwxr-xr-x 1 root root 3661 Oct 28 2017 python3-jsonpatch -rwxr-xr-x 1 root root 1342 May 1 2016 python3-jsonpointer -rwxr-xr-x 1 root root 398 Nov 15 2017 python3-jsonschema lrwxrwxrwx 1 root root 10 Oct 25 2018 python3m -> python3.6m lrwxrwxrwx 1 root root 17 Oct 25 2018 python3m-config -> python3.6m-config lrwxrwxrwx 1 root root 23 May 8 2019 ranlib -> x86_64-linux-gnu-ranlib lrwxrwxrwx 1 root root 21 Aug 5 2019 rcp -> /etc/alternatives/rcp -rwxr-xr-x 1 root root 26696 Feb 26 2018 rdma lrwxrwxrwx 1 root root 24 May 8 2019 readelf -> x86_64-linux-gnu-readelf -rwxr-xr-x 1 root root 47320 Jan 18 2018 realpath -rwxr-xr-x 1 root root 14408 Oct 15 2018 rename.ul -rwxr-xr-x 1 root root 14408 Oct 15 2018 renice lrwxrwxrwx 1 root root 4 May 23 2018 reset -> tset -rwxr-xr-x 1 root root 18568 Jan 22 2018 resizecons -rwxr-xr-x 1 root root 38992 Oct 15 2018 resizepart -rwxr-xr-x 1 root root 10312 Oct 15 2018 rev -rwxr-xr-x 1 root root 30 Jul 11 2017 rgrep lrwxrwxrwx 1 root root 24 Aug 5 2019 rlogin -> /etc/alternatives/rlogin -rwxr-xr-x 1 root root 208 Feb 26 2018 routef -rwxr-xr-x 1 root root 1656 Feb 26 2018 routel -rwxr-xr-x 1 root root 100896 Apr 16 2018 rpcgen lrwxrwxrwx 1 root root 21 Aug 5 2019 rsh -> /etc/alternatives/rsh -rwxr-xr-x 1 root root 500024 Jan 18 2018 rsync lrwxrwxrwx 1 root root 6 Feb 26 2018 rtstat -> lnstat -rwxr-xr-x 1 root root 35000 Jan 18 2018 runcon -rwxr-xr-x 1 root root 18161 Jul 15 2016 run-mailcap -rwxr-xr-x 1 root root 3592 Jan 15 2014 run-one lrwxrwxrwx 1 root root 7 Jan 15 2014 run-one-constantly -> run-one lrwxrwxrwx 1 root root 7 Jan 15 2014 run-one-until-failure -> run-one lrwxrwxrwx 1 root root 7 Jan 15 2014 run-one-until-success -> run-one lrwxrwxrwx 1 root root 7 Jan 15 2014 run-this-one -> run-one lrwxrwxrwx 1 root root 23 Aug 5 2019 rview -> /etc/alternatives/rview lrwxrwxrwx 1 root root 22 Aug 5 2019 rvim -> /etc/alternatives/rvim -rwxr-xr-x 1 root root 313824 Jan 17 11:24 sadf lrwxrwxrwx 1 root root 21 Oct 30 21:02 sar -> /etc/alternatives/sar -rwxr-xr-x 1 root root 120720 Jan 17 11:24 sar.sysstat -rwxr-xr-x 1 root root 10469 Dec 30 2017 savelog -rwxr-xr-x 1 root root 100496 Mar 4 2019 scp -rwxr-xr-x 1 root root 465928 Jul 20 2018 screen -rwxr-xr-x 1 root root 10232 Jan 22 2018 screendump -rwxr-xr-x 1 root root 30792 Oct 15 2018 script -rwxr-xr-x 1 root root 26704 Oct 15 2018 scriptreplay -rwxr-xr-x 1 root root 51296 Aug 4 2017 sdiff lrwxrwxrwx 1 root root 11 Jul 15 2016 see -> run-mailcap -rwxr-xr-x 1 root root 2442 Mar 12 2018 select-editor -rwxr-xr-x 1 root root 1209 Mar 12 2018 sensible-browser -rwxr-xr-x 1 root root 1109 Mar 12 2018 sensible-editor -rwxr-xr-x 1 root root 433 Mar 12 2018 sensible-pager -rwxr-xr-x 1 root root 47288 Jan 18 2018 seq -rwxr-xr-x 1 root root 18784 Oct 15 2018 setarch lrwxrwxrwx 1 root root 12 Aug 5 2019 setfacl -> /bin/setfacl -rwxr-xr-x 1 root root 10312 Jan 22 2018 setkeycodes -rwxr-xr-x 1 root root 14392 Jan 22 2018 setleds -rwxr-xr-x 1 root root 10312 Jan 22 2018 setlogcons -rwxr-xr-x 1 root root 10344 Jan 22 2018 setmetamode -rwxr-xr-x 1 root root 26704 Feb 10 2019 setpci -rwxr-xr-x 1 root root 10312 Oct 15 2018 setsid -rwxr-xr-x 1 root root 43088 Oct 15 2018 setterm -rwxr-xr-x 1 root root 153960 Mar 4 2019 sftp lrwxrwxrwx 1 root root 6 Mar 22 2019 sg -> newgrp -rwxr-xr-x 1 root root 47320 Jan 18 2018 sha1sum -rwxr-xr-x 1 root root 55512 Jan 18 2018 sha224sum -rwxr-xr-x 1 root root 55512 Jan 18 2018 sha256sum -rwxr-xr-x 1 root root 59608 Jan 18 2018 sha384sum -rwxr-xr-x 1 root root 59608 Jan 18 2018 sha512sum -rwxr-xr-x 1 root root 9371 Nov 19 2018 shasum -rwxr-xr-x 1 root root 18504 Jan 22 2018 showconsolefont -rwxr-xr-x 1 root root 14408 Jan 22 2018 showkey -rwxr-xr-x 1 root root 59608 Jan 18 2018 shred -rwxr-xr-x 1 root root 55480 Jan 18 2018 shuf lrwxrwxrwx 1 root root 21 May 8 2019 size -> x86_64-linux-gnu-size -rwxr-xr-x 1 root root 26704 May 14 2018 skill -rwxr-xr-x 1 root root 18512 May 14 2018 slabtop lrwxrwxrwx 1 root root 3 Mar 4 2019 slogin -> ssh -rwxr-xr-x 1 root root 34824 Apr 3 2018 slurm -rwxr-xr-x 1 root root 13316808 Jun 5 2019 snap lrwxrwxrwx 1 root root 20 Jun 5 2019 snapctl -> ../lib/snapd/snapctl -rwxr-xr-x 1 root root 30856 Jun 5 2019 snapfuse lrwxrwxrwx 1 root root 5 May 14 2018 snice -> skill -rwxr-xr-x 1 root root 30920 Feb 10 2018 soelim -rwxr-xr-x 1 root root 113120 Jan 18 2018 sort lrwxrwxrwx 1 root root 28 Nov 16 2018 sosreport -> ../share/sosreport/sosreport -rwxr-xr-x 1 root root 4306 Apr 16 2018 sotruss -rwxr-xr-x 1 root root 19150 Nov 19 2018 splain -rwxr-xr-x 1 root root 55936 Jan 18 2018 split -rwxr-xr-x 1 root root 10232 Jan 22 2018 splitfont -rwxr-xr-x 1 root root 26840 Apr 16 2018 sprof -rwxr-xr-x 1 root root 727848 Mar 4 2019 ssh -rwxr-xr-x 1 root root 346248 Mar 4 2019 ssh-add -rwxr-sr-x 1 root ssh 362640 Mar 4 2019 ssh-agent -rwxr-xr-x 1 root root 1456 Jan 16 2018 ssh-argv0 -rwxr-xr-x 1 root root 10658 Oct 2 2017 ssh-copy-id -rwxr-xr-x 1 root root 1771 May 16 2018 ssh-import-id -rwxr-xr-x 1 root root 782 Jan 30 2016 ssh-import-id-gh -rwxr-xr-x 1 root root 782 Jan 30 2016 ssh-import-id-lp -rwxr-xr-x 1 root root 420000 Mar 4 2019 ssh-keygen -rwxr-xr-x 1 root root 420000 Mar 4 2019 ssh-keyscan -rwxr-xr-x 1 root root 80088 Jan 18 2018 stat -rwxr-xr-x 1 root root 47288 Jan 18 2018 stdbuf -rwxr-xr-x 1 root root 1378552 Apr 11 2018 strace -rwxr-xr-x 1 root root 2644 Feb 13 2018 strace-log-merge lrwxrwxrwx 1 root root 24 May 8 2019 strings -> x86_64-linux-gnu-strings lrwxrwxrwx 1 root root 22 May 8 2019 strip -> x86_64-linux-gnu-strip -rwsr-xr-x 1 root root 149080 Jan 31 17:18 sudo lrwxrwxrwx 1 root root 4 Jan 31 17:18 sudoedit -> sudo -rwxr-xr-x 1 root root 56128 Jan 31 17:18 sudoreplay -rwxr-xr-x 1 root root 39104 Jan 18 2018 sum -rwxr-xr-x 1 root root 113384 Jan 10 2019 symcryptrun -rwxr-xr-x 1 root root 1554720 Feb 5 01:07 systemd-analyze -rwxr-xr-x 1 root root 10312 Feb 5 01:07 systemd-cat -rwxr-xr-x 1 root root 14408 Feb 5 01:07 systemd-cgls -rwxr-xr-x 1 root root 30816 Feb 5 01:07 systemd-cgtop -rwxr-xr-x 1 root root 22600 Feb 5 01:07 systemd-delta -rwxr-xr-x 1 root root 10304 Feb 5 01:07 systemd-detect-virt -rwxr-xr-x 1 root root 43104 Feb 5 01:07 systemd-mount -rwxr-xr-x 1 root root 10304 Feb 5 01:07 systemd-path -rwxr-xr-x 1 root root 88136 Feb 5 01:07 systemd-resolve -rwxr-xr-x 1 root root 43080 Feb 5 01:07 systemd-run -rwxr-xr-x 1 root root 18504 Feb 5 01:07 systemd-socket-activate -rwxr-xr-x 1 root root 14408 Feb 5 01:07 systemd-stdio-bridge lrwxrwxrwx 1 root root 13 Feb 5 01:07 systemd-umount -> systemd-mount -rwxr-xr-x 1 root root 14328 May 23 2018 tabs -rwxr-xr-x 1 root root 39096 Jan 18 2018 tac -rwxr-xr-x 1 root root 67832 Jan 18 2018 tail -rwxr-xr-x 1 root root 39056 Jan 17 11:24 tapestat -rwxr-xr-x 1 root root 30800 Oct 15 2018 taskset -rwxr-xr-x 1 root root 129224 Feb 10 2018 tbl -rwxr-xr-x 1 root root 35032 Jan 18 2018 tee lrwxrwxrwx 1 root root 24 Aug 5 2019 telnet -> /etc/alternatives/telnet -rwxr-xr-x 1 root root 111024 Nov 7 2016 telnet.netkit -rwxr-xr-x 1 root root 47288 Jan 18 2018 test -rwxr-xr-x 1 root root 84080 May 23 2018 tic -rwxr-xr-x 1 root root 14720 Apr 21 2017 time -rwxr-xr-x 1 root root 22600 Feb 5 01:07 timedatectl -rwxr-xr-x 1 root root 39552 Jan 18 2018 timeout -rwxr-xr-x 1 root root 386 Apr 20 2018 tkconch3 -rwxr-xr-x 1 root root 14424 May 14 2018 tload -rwxr-xr-x 1 root root 577088 Jul 4 2019 tmux -rwxr-xr-x 1 root root 14328 May 23 2018 toe -rwxr-xr-x 1 root root 108304 May 14 2018 top lrwxrwxrwx 1 root root 10 Aug 5 2019 touch -> /bin/touch -rwxr-xr-x 1 root root 18456 May 23 2018 tput -rwxr-xr-x 1 root root 47288 Jan 18 2018 tr -rwxr-xr-x 1 root root 14344 Jun 28 2019 tracepath lrwxrwxrwx 1 root root 29 Aug 5 2019 traceroute6 -> /etc/alternatives/traceroute6 -rwsr-xr-x 1 root root 18448 Jun 28 2019 traceroute6.iputils -rwxr-xr-x 1 root root 382 Apr 20 2018 trial3 -rwxr-xr-x 1 root root 736608 Feb 10 2018 troff -rwxr-xr-x 1 root root 39096 Jan 18 2018 truncate -rwxr-xr-x 1 root root 22528 May 23 2018 tset -rwxr-xr-x 1 root root 35000 Jan 18 2018 tsort -rwxr-xr-x 1 root root 30904 Jan 18 2018 tty -rwxr-xr-x 1 root root 382 Apr 20 2018 twist3 -rwxr-xr-x 1 root root 384 Apr 20 2018 twistd3 -rwxr-xr-x 1 root root 15395 Apr 16 2018 tzselect lrwxrwxrwx 1 root root 16 Mar 21 2018 ua -> ubuntu-advantage -rwxr-xr-x 1 root root 4596 Mar 21 2018 ubuntu-advantage lrwxrwxrwx 1 root root 10 Nov 5 02:49 ubuntu-bug -> apport-bug lrwxrwxrwx 1 root root 25 Jun 5 2019 ubuntu-core-launcher -> ../lib/snapd/snap-confine -rwxr-xr-x 1 root root 8033 Apr 9 2019 ubuntu-support-status -rwxr-xr-x 1 root root 40685 Feb 26 2018 ucf -rwxr-xr-x 1 root root 19367 Feb 26 2018 ucfq -rwxr-xr-x 1 root root 10722 Feb 26 2018 ucfr -rwxr-xr-x 1 root root 14344 Jan 17 2018 ul -rwxr-xr-x 1 root root 81388 Apr 29 2019 unattended-upgrade lrwxrwxrwx 1 root root 18 Apr 29 2019 unattended-upgrades -> unattended-upgrade -rwxr-xr-x 1 root root 39128 Jan 18 2018 unexpand -rwxr-xr-x 1 root root 530 Jan 22 2018 unicode_stop -rwxr-xr-x 1 root root 43224 Jan 18 2018 uniq -rwxr-xr-x 1 root root 30904 Jan 18 2018 unlink lrwxrwxrwx 1 root root 24 Aug 5 2019 unlzma -> /etc/alternatives/unlzma -rwxr-xr-x 1 root root 2859 Sep 27 2018 unmkinitramfs -rwxr-xr-x 2 root root 116944 Dec 27 2017 unpigz -rwxr-xr-x 1 root root 18712 Oct 15 2018 unshare -rwxr-xr-x 1 root root 98008 Jul 5 2018 unsquashfs lrwxrwxrwx 1 root root 2 Jun 28 2017 unxz -> xz -rwxr-xr-x 1 root root 47112 Oct 4 2018 update-alternatives lrwxrwxrwx 1 root root 26 Aug 5 2019 updatedb -> /etc/alternatives/updatedb -rwxr-xr-x 1 root root 47184 Mar 1 2018 updatedb.mlocate -rwxr-xr-x 1 root root 51392 Oct 10 2017 update-mime-database -rwxr-xr-x 1 root root 10312 May 14 2018 uptime -rwxr-xr-x 1 root root 4216 Apr 21 2017 usb-devices -rwxr-xr-x 1 root root 22608 Apr 21 2017 usbhid-dump -rwxr-xr-x 1 root root 35000 Jan 18 2018 users -rwxr-xr-x 1 root root 22600 Oct 15 2018 utmpdump -rwxr-xr-x 1 root root 14408 Oct 15 2018 uuidgen -rwxr-xr-x 1 root root 34896 Oct 15 2018 uuidparse -rwxr-xr-x 1 root root 6913 Apr 13 2018 vcs-run -rwxr-xr-x 1 root root 125144 May 14 2019 VGAuthService lrwxrwxrwx 1 root root 20 Aug 5 2019 vi -> /etc/alternatives/vi lrwxrwxrwx 1 root root 22 Aug 5 2019 view -> /etc/alternatives/view -rwxr-xr-x 1 root root 2640 Dec 4 2017 vigpg lrwxrwxrwx 1 root root 21 Aug 5 2019 vim -> /etc/alternatives/vim -rwxr-xr-x 1 root root 2671240 Jun 6 2019 vim.basic lrwxrwxrwx 1 root root 25 Aug 5 2019 vimdiff -> /etc/alternatives/vimdiff -rwxr-xr-x 1 root root 1108024 Jun 6 2019 vim.tiny -rwxr-xr-x 1 root root 2099 Jun 6 2019 vimtutor -rwxr-xr-x 1 root root 47600 May 14 2019 vmhgfs-fuse -rwxr-xr-x 1 root root 34912 May 14 2018 vmstat -rwxr-xr-x 1 root root 51456 May 14 2019 vmtoolsd -rwxr-xr-x 1 root root 10312 May 14 2019 vmware-checkvm -rwxr-xr-x 1 root root 31240 May 14 2019 vmware-guestproxycerttool -rwxr-xr-x 1 root root 10312 May 14 2019 vmware-hgfsclient -rwxr-xr-x 1 root root 18424 May 14 2019 vmware-namespace-cmd -rwxr-xr-x 1 root root 18424 May 14 2019 vmware-rpctool -rwxr-xr-x 1 root root 39200 May 14 2019 vmware-toolbox-cmd -rwxr-xr-x 1 root root 14328 May 14 2019 vmware-vgauth-cmd -rwxr-xr-x 1 root root 18440 May 14 2019 vmware-vgauth-smoketest -rwxr-xr-x 1 root root 18848 May 14 2019 vmware-vmblock-fuse -rwxr-xr-x 1 root root 10312 May 14 2019 vmware-xferlogs -rwxr-xr-x 1 root root 10232 Mar 28 2017 volname lrwxrwxrwx 1 root root 19 Aug 5 2019 w -> /etc/alternatives/w -rwxr-sr-x 1 root tty 30800 Oct 15 2018 wall -rwxr-xr-x 1 root root 22952 May 14 2018 watch -rwxr-xr-x 1 root root 14328 Jan 10 2019 watchgnupg -rwxr-xr-x 1 root root 43200 Jan 18 2018 wc -rwxr-xr-x 1 root root 499264 Apr 8 2019 wget -rwxr-xr-x 1 root root 48104 Aug 4 2018 whatis -rwxr-xr-x 1 root root 27144 Oct 15 2018 whereis lrwxrwxrwx 1 root root 10 Aug 5 2019 which -> /bin/which -rwxr-xr-x 1 root root 51416 Jan 18 2018 who -rwxr-xr-x 1 root root 30904 Jan 18 2018 whoami -rwxr-xr-x 1 root root 2107 Dec 4 2017 wifi-status -rwxr-xr-x 1 root root 22536 Apr 3 2018 wmdocker -rwxr-xr-x 1 root root 18504 May 14 2018 w.procps lrwxrwxrwx 1 root root 23 Aug 5 2019 write -> /etc/alternatives/write lrwxrwxrwx 1 root root 7 Oct 15 2018 x86_64 -> setarch -rwxr-xr-x 1 root root 31152 May 8 2019 x86_64-linux-gnu-addr2line -rwxr-xr-x 1 root root 59640 May 8 2019 x86_64-linux-gnu-ar -rwxr-xr-x 1 root root 917488 May 8 2019 x86_64-linux-gnu-as -rwxr-xr-x 1 root root 26744 May 8 2019 x86_64-linux-gnu-c++filt lrwxrwxrwx 1 root root 5 May 20 2019 x86_64-linux-gnu-cpp -> cpp-7 -rwxr-xr-x 1 root root 1010624 May 8 2019 x86_64-linux-gnu-cpp-7 -rwxr-xr-x 1 root root 2911496 May 8 2019 x86_64-linux-gnu-dwp -rwxr-xr-x 1 root root 31184 May 8 2019 x86_64-linux-gnu-elfedit lrwxrwxrwx 1 root root 5 May 20 2019 x86_64-linux-gnu-g++ -> g++-7 -rwxr-xr-x 1 root root 1010624 May 8 2019 x86_64-linux-gnu-g++-7 lrwxrwxrwx 1 root root 5 May 20 2019 x86_64-linux-gnu-gcc -> gcc-7 -rwxr-xr-x 1 root root 1010624 May 8 2019 x86_64-linux-gnu-gcc-7 lrwxrwxrwx 1 root root 8 May 20 2019 x86_64-linux-gnu-gcc-ar -> gcc-ar-7 -rwxr-xr-x 1 root root 27104 May 8 2019 x86_64-linux-gnu-gcc-ar-7 lrwxrwxrwx 1 root root 8 May 20 2019 x86_64-linux-gnu-gcc-nm -> gcc-nm-7 -rwxr-xr-x 1 root root 27104 May 8 2019 x86_64-linux-gnu-gcc-nm-7 lrwxrwxrwx 1 root root 12 May 20 2019 x86_64-linux-gnu-gcc-ranlib -> gcc-ranlib-7 -rwxr-xr-x 1 root root 27104 May 8 2019 x86_64-linux-gnu-gcc-ranlib-7 lrwxrwxrwx 1 root root 6 May 20 2019 x86_64-linux-gnu-gcov -> gcov-7 -rwxr-xr-x 1 root root 622688 May 8 2019 x86_64-linux-gnu-gcov-7 lrwxrwxrwx 1 root root 11 May 20 2019 x86_64-linux-gnu-gcov-dump -> gcov-dump-7 -rwxr-xr-x 1 root root 491448 May 8 2019 x86_64-linux-gnu-gcov-dump-7 lrwxrwxrwx 1 root root 11 May 20 2019 x86_64-linux-gnu-gcov-tool -> gcov-tool-7 -rwxr-xr-x 1 root root 516088 May 8 2019 x86_64-linux-gnu-gcov-tool-7 lrwxrwxrwx 1 root root 24 May 8 2019 x86_64-linux-gnu-gold -> x86_64-linux-gnu-ld.gold -rwxr-xr-x 1 root root 102120 May 8 2019 x86_64-linux-gnu-gprof lrwxrwxrwx 1 root root 23 May 8 2019 x86_64-linux-gnu-ld -> x86_64-linux-gnu-ld.bfd -rwxr-xr-x 1 root root 1779400 May 8 2019 x86_64-linux-gnu-ld.bfd -rwxr-xr-x 1 root root 3136552 May 8 2019 x86_64-linux-gnu-ld.gold -rwxr-xr-x 1 root root 44184 May 8 2019 x86_64-linux-gnu-nm -rwxr-xr-x 1 root root 235720 May 8 2019 x86_64-linux-gnu-objcopy -rwxr-xr-x 1 root root 414128 May 8 2019 x86_64-linux-gnu-objdump lrwxrwxrwx 1 root root 34 Oct 7 12:59 x86_64-linux-gnu-python3.6-config -> x86_64-linux-gnu-python3.6m-config -rwxr-xr-x 1 root root 3283 Oct 7 12:59 x86_64-linux-gnu-python3.6m-config lrwxrwxrwx 1 root root 33 Oct 25 2018 x86_64-linux-gnu-python3-config -> x86_64-linux-gnu-python3.6-config lrwxrwxrwx 1 root root 34 Oct 25 2018 x86_64-linux-gnu-python3m-config -> x86_64-linux-gnu-python3.6m-config -rwxr-xr-x 1 root root 59672 May 8 2019 x86_64-linux-gnu-ranlib -rwxr-xr-x 1 root root 596440 May 8 2019 x86_64-linux-gnu-readelf -rwxr-xr-x 1 root root 31024 May 8 2019 x86_64-linux-gnu-size -rwxr-xr-x 1 root root 31232 May 8 2019 x86_64-linux-gnu-strings -rwxr-xr-x 1 root root 235728 May 8 2019 x86_64-linux-gnu-strip -rwxr-xr-x 1 root root 71896 Nov 5 2017 xargs -rwxr-xr-x 1 root root 52032 Nov 21 2017 xauth -rwxr-xr-x 1 root root 153904 Dec 6 2016 xdelta3 -rwxr-xr-x 1 root root 234 Mar 23 2018 xdg-user-dir -rwxr-xr-x 1 root root 18504 Mar 23 2018 xdg-user-dirs-update -rwxr-xr-x 1 root root 5164 Nov 19 2018 xsubpp -rwxr-xr-x 1 root root 18552 Jun 6 2019 xxd -rwxr-xr-x 1 root root 76216 Jun 28 2017 xz lrwxrwxrwx 1 root root 2 Jun 28 2017 xzcat -> xz lrwxrwxrwx 1 root root 6 Jun 28 2017 xzcmp -> xzdiff -rwxr-xr-x 1 root root 6632 Jun 28 2017 xzdiff lrwxrwxrwx 1 root root 6 Jun 28 2017 xzegrep -> xzgrep lrwxrwxrwx 1 root root 6 Jun 28 2017 xzfgrep -> xzgrep -rwxr-xr-x 1 root root 5628 Jun 28 2017 xzgrep -rwxr-xr-x 1 root root 1802 Jun 28 2017 xzless -rwxr-xr-x 1 root root 2161 Jun 28 2017 xzmore -rwxr-xr-x 1 root root 30904 Jan 18 2018 yes -rwxr-xr-x 1 root root 18488 Apr 16 2018 zdump -rwxr-xr-x 1 root root 48497 Nov 19 2018 zipdetails /usr/games: total 8 drwxr-xr-x 2 root root 4096 Apr 24 2018 . drwxr-xr-x 10 root root 4096 Aug 5 2019 .. /usr/include: total 1460 drwxr-xr-x 34 root root 4096 Feb 5 06:03 . drwxr-xr-x 10 root root 4096 Aug 5 2019 .. -rw-r--r-- 1 root root 7456 Apr 16 2018 aio.h -rw-r--r-- 1 root root 2031 Apr 16 2018 aliases.h -rw-r--r-- 1 root root 1203 Apr 16 2018 alloca.h -rw-r--r-- 1 root root 25414 Apr 16 2018 argp.h -rw-r--r-- 1 root root 6050 Apr 16 2018 argz.h -rw-r--r-- 1 root root 1730 Apr 16 2018 ar.h drwxr-xr-x 2 root root 4096 Oct 18 00:14 arpa drwxr-xr-x 2 root root 4096 Feb 5 06:03 asm-generic -rw-r--r-- 1 root root 4642 Apr 16 2018 assert.h drwxr-xr-x 2 root root 4096 Aug 5 2019 btrfs -rw-r--r-- 1 root root 1404 Apr 16 2018 byteswap.h drwxr-xr-x 3 root root 4096 Oct 18 00:14 c++ -rw-r--r-- 1 root root 7163 Apr 16 2018 complex.h -rw-r--r-- 1 root root 2267 Apr 16 2018 cpio.h -rw-r--r-- 1 root root 2259 Apr 16 2018 crypt.h -rw-r--r-- 1 root root 10963 Apr 16 2018 ctype.h -rw-r--r-- 1 root root 12484 Apr 16 2018 dirent.h -rw-r--r-- 1 root root 7018 Apr 16 2018 dlfcn.h drwxr-xr-x 2 root root 4096 Feb 5 06:03 drm -rw-r--r-- 1 root root 169800 Apr 16 2018 elf.h -rw-r--r-- 1 root root 3189 Apr 16 2018 endian.h -rw-r--r-- 1 root root 2866 Apr 16 2018 envz.h -rw-r--r-- 1 root root 2209 Apr 16 2018 err.h -rw-r--r-- 1 root root 1832 Apr 16 2018 errno.h -rw-r--r-- 1 root root 2039 Apr 16 2018 error.h -rw-r--r-- 1 root root 1522 Apr 16 2018 execinfo.h -rw-r--r-- 1 root root 5532 Sep 10 18:05 expat_external.h -rw-r--r-- 1 root root 43512 Sep 10 18:05 expat.h -rw-r--r-- 1 root root 9463 Apr 16 2018 fcntl.h -rw-r--r-- 1 root root 15541 Apr 16 2018 features.h -rw-r--r-- 1 root root 5857 Apr 16 2018 fenv.h -rw-r--r-- 1 root root 3239 Apr 16 2018 fmtmsg.h -rw-r--r-- 1 root root 2295 Apr 16 2018 fnmatch.h -rw-r--r-- 1 root root 3111 Apr 16 2018 fstab.h -rw-r--r-- 1 root root 8372 Apr 16 2018 fts.h -rw-r--r-- 1 root root 5251 Apr 16 2018 ftw.h -rw-r--r-- 1 root root 31038 Feb 11 2018 gawkapi.h -rw-r--r-- 1 root root 932 Apr 16 2018 _G_config.h -rw-r--r-- 1 root root 4410 Apr 16 2018 gconv.h -rw-r--r-- 1 root root 1468 Apr 16 2018 getopt.h -rw-r--r-- 1 root root 6614 Apr 16 2018 glob.h -rw-r--r-- 1 root root 2912 Apr 17 2018 gnumake.h -rw-r--r-- 1 root root 2342 Apr 16 2018 gnu-versions.h -rw-r--r-- 1 root root 6686 Apr 16 2018 grp.h -rw-r--r-- 1 root root 4528 Apr 16 2018 gshadow.h -rw-r--r-- 1 root root 1857 Apr 16 2018 iconv.h -rw-r--r-- 1 root root 2840 Apr 16 2018 ifaddrs.h -rw-r--r-- 1 root root 11892 Apr 16 2018 inttypes.h -rw-r--r-- 1 root root 17848 Apr 16 2018 langinfo.h -rw-r--r-- 1 root root 126 Apr 16 2018 lastlog.h -rw-r--r-- 1 root root 1385 Apr 16 2018 libgen.h -rw-r--r-- 1 root root 4579 Apr 16 2018 libintl.h -rw-r--r-- 1 root root 918 Apr 16 2018 libio.h -rw-r--r-- 1 root root 5412 Apr 16 2018 limits.h -rw-r--r-- 1 root root 7206 Apr 16 2018 link.h drwxr-xr-x 28 root root 69632 Feb 5 06:03 linux -rw-r--r-- 1 root root 7674 Apr 16 2018 locale.h -rw-r--r-- 1 root root 6102 Apr 16 2018 malloc.h -rw-r--r-- 1 root root 45384 Apr 16 2018 math.h -rw-r--r-- 1 root root 2434 Apr 16 2018 mcheck.h -rw-r--r-- 1 root root 955 Apr 16 2018 memory.h drwxr-xr-x 2 root root 4096 Feb 5 06:03 misc -rw-r--r-- 1 root root 3358 Apr 16 2018 mntent.h -rw-r--r-- 1 root root 1803 Apr 16 2018 monetary.h -rw-r--r-- 1 root root 3759 Apr 16 2018 mqueue.h drwxr-xr-x 2 root root 4096 Feb 5 06:03 mtd drwxr-xr-x 2 root root 4096 Oct 18 00:14 net drwxr-xr-x 2 root root 4096 Oct 18 00:14 netash drwxr-xr-x 2 root root 4096 Oct 18 00:14 netatalk drwxr-xr-x 2 root root 4096 Oct 18 00:14 netax25 -rw-r--r-- 1 root root 28051 Apr 16 2018 netdb.h drwxr-xr-x 2 root root 4096 Oct 18 00:14 neteconet drwxr-xr-x 2 root root 4096 Oct 18 00:14 netinet drwxr-xr-x 2 root root 4096 Oct 18 00:14 netipx drwxr-xr-x 2 root root 4096 Oct 18 00:14 netiucv drwxr-xr-x 2 root root 4096 Oct 18 00:14 netpacket drwxr-xr-x 2 root root 4096 Oct 18 00:14 netrom drwxr-xr-x 2 root root 4096 Oct 18 00:14 netrose drwxr-xr-x 2 root root 4096 Oct 18 00:14 nfs -rw-r--r-- 1 root root 1752 Apr 16 2018 nl_types.h -rw-r--r-- 1 root root 1878 Apr 16 2018 nss.h -rw-r--r-- 1 root root 21306 Apr 16 2018 obstack.h -rw-r--r-- 1 root root 2983 Apr 16 2018 paths.h -rw-r--r-- 1 root root 22 Apr 16 2018 poll.h -rw-r--r-- 1 root root 6800 Apr 16 2018 printf.h -rw-r--r-- 1 root root 3476 Apr 16 2018 proc_service.h drwxr-xr-x 2 root root 4096 Oct 18 00:14 protocols -rw-r--r-- 1 root root 41269 Apr 16 2018 pthread.h -rw-r--r-- 1 root root 1569 Apr 16 2018 pty.h -rw-r--r-- 1 root root 6029 Apr 16 2018 pwd.h lrwxrwxrwx 1 root root 10 Oct 7 12:59 python3.6 -> python3.6m drwxr-xr-x 2 root root 4096 Oct 18 00:14 python3.6m drwxr-xr-x 3 root root 4096 Feb 5 06:03 rdma -rw-r--r-- 1 root root 962 Apr 16 2018 re_comp.h -rw-r--r-- 1 root root 22050 Apr 16 2018 regex.h -rw-r--r-- 1 root root 1447 Apr 16 2018 regexp.h drwxr-xr-x 2 root root 4096 Aug 12 2019 reglib -rw-r--r-- 1 root root 12012 Apr 16 2018 resolv.h drwxr-xr-x 2 root root 4096 Oct 18 00:14 rpc drwxr-xr-x 2 root root 4096 Oct 18 00:14 rpcsvc -rw-r--r-- 1 root root 4732 Apr 16 2018 sched.h drwxr-xr-x 3 root root 4096 Feb 5 06:03 scsi -rw-r--r-- 1 root root 5223 Apr 16 2018 search.h -rw-r--r-- 1 root root 2399 Apr 16 2018 semaphore.h -rw-r--r-- 1 root root 3669 Apr 16 2018 setjmp.h -rw-r--r-- 1 root root 1343 Apr 16 2018 sgtty.h -rw-r--r-- 1 root root 5197 Apr 16 2018 shadow.h -rw-r--r-- 1 root root 12243 Apr 16 2018 signal.h drwxr-xr-x 2 root root 4096 Feb 5 06:03 sound -rw-r--r-- 1 root root 6690 Apr 16 2018 spawn.h -rw-r--r-- 1 root root 264 Apr 16 2018 stab.h -rw-r--r-- 1 root root 2363 Apr 16 2018 stdc-predef.h -rw-r--r-- 1 root root 8626 Apr 16 2018 stdint.h -rw-r--r-- 1 root root 2799 Apr 16 2018 stdio_ext.h -rw-r--r-- 1 root root 29665 Apr 16 2018 stdio.h -rw-r--r-- 1 root root 35784 Apr 16 2018 stdlib.h -rw-r--r-- 1 root root 17545 Apr 16 2018 string.h -rw-r--r-- 1 root root 4752 Apr 16 2018 strings.h -rw-r--r-- 1 root root 3047 Apr 16 2018 stropts.h -rw-r--r-- 1 root root 8084 Jan 31 17:18 sudo_plugin.h -rw-r--r-- 1 root root 25 Apr 16 2018 syscall.h -rw-r--r-- 1 root root 5232 Apr 16 2018 sysexits.h -rw-r--r-- 1 root root 24 Apr 16 2018 syslog.h -rw-r--r-- 1 root root 3785 Apr 16 2018 tar.h -rw-r--r-- 1 root root 214 Apr 16 2018 termio.h -rw-r--r-- 1 root root 3598 Apr 16 2018 termios.h -rw-r--r-- 1 root root 31489 Apr 16 2018 tgmath.h -rw-r--r-- 1 root root 16023 Apr 16 2018 thread_db.h -rw-r--r-- 1 root root 10360 Apr 16 2018 time.h -rw-r--r-- 1 root root 2494 Apr 16 2018 ttyent.h -rw-r--r-- 1 root root 2312 Apr 16 2018 uchar.h -rw-r--r-- 1 root root 1937 Apr 16 2018 ucontext.h -rw-r--r-- 1 root root 1583 Apr 16 2018 ulimit.h -rw-r--r-- 1 root root 42785 Apr 16 2018 unistd.h -rw-r--r-- 1 root root 23 Apr 16 2018 ustat.h -rw-r--r-- 1 root root 1501 Apr 16 2018 utime.h -rw-r--r-- 1 root root 3222 Apr 16 2018 utmp.h -rw-r--r-- 1 root root 4099 Apr 16 2018 utmpx.h -rw-r--r-- 1 root root 1955 Apr 16 2018 values.h drwxr-xr-x 2 root root 4096 Feb 5 06:03 video -rw-r--r-- 1 root root 22 Apr 16 2018 wait.h -rw-r--r-- 1 root root 31111 Apr 16 2018 wchar.h -rw-r--r-- 1 root root 5548 Apr 16 2018 wctype.h -rw-r--r-- 1 root root 2501 Apr 16 2018 wordexp.h drwxr-xr-x 8 root root 4096 Oct 18 00:14 x86_64-linux-gnu drwxr-xr-x 2 root root 4096 Feb 5 06:03 xen drwxr-xr-x 2 root root 4096 Apr 18 2018 xfs /usr/include/arpa: total 60 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 34 root root 4096 Feb 5 06:03 .. -rw-r--r-- 1 root root 3432 Apr 16 2018 ftp.h -rw-r--r-- 1 root root 4276 Apr 16 2018 inet.h -rw-r--r-- 1 root root 7041 Apr 16 2018 nameser_compat.h -rw-r--r-- 1 root root 14195 Apr 16 2018 nameser.h -rw-r--r-- 1 root root 10263 Apr 16 2018 telnet.h -rw-r--r-- 1 root root 3051 Apr 16 2018 tftp.h /usr/include/asm-generic: total 204 drwxr-xr-x 2 root root 4096 Feb 5 06:03 . drwxr-xr-x 34 root root 4096 Feb 5 06:03 .. -rw-r--r-- 1 root root 218 Jan 17 13:59 auxvec.h -rw-r--r-- 1 root root 564 Jan 17 13:59 bitsperlong.h -rw-r--r-- 1 root root 238 Jan 17 13:59 bpf_perf_event.h -rw-r--r-- 1 root root 1612 Jan 17 13:59 errno-base.h -rw-r--r-- 1 root root 5648 Jan 17 13:59 errno.h -rw-r--r-- 1 root root 5423 Jan 17 13:59 fcntl.h -rw-r--r-- 1 root root 1605 Jan 17 13:59 hugetlb_encode.h -rw-r--r-- 1 root root 718 Jan 17 13:59 int-l64.h -rw-r--r-- 1 root root 864 Jan 17 13:59 int-ll64.h -rw-r--r-- 1 root root 3478 Jan 17 13:59 ioctl.h -rw-r--r-- 1 root root 3866 Jan 17 13:59 ioctls.h -rw-r--r-- 1 root root 1003 Jan 17 13:59 ipcbuf.h -rw-r--r-- 1 root root 96 Jan 17 13:59 kvm_para.h -rw-r--r-- 1 root root 3020 Jan 17 13:59 mman-common.h -rw-r--r-- 1 root root 1080 Jan 17 13:59 mman.h -rw-r--r-- 1 root root 1570 Jan 17 13:59 msgbuf.h -rw-r--r-- 1 root root 353 Jan 17 13:59 param.h -rw-r--r-- 1 root root 858 Jan 17 13:59 poll.h -rw-r--r-- 1 root root 2294 Jan 17 13:59 posix_types.h -rw-r--r-- 1 root root 1872 Jan 17 13:59 resource.h -rw-r--r-- 1 root root 1257 Jan 17 13:59 sembuf.h -rw-r--r-- 1 root root 190 Jan 17 13:59 setup.h -rw-r--r-- 1 root root 1798 Jan 17 13:59 shmbuf.h -rw-r--r-- 1 root root 231 Jan 17 13:59 shmparam.h -rw-r--r-- 1 root root 8627 Jan 17 13:59 siginfo.h -rw-r--r-- 1 root root 800 Jan 17 13:59 signal-defs.h -rw-r--r-- 1 root root 2709 Jan 17 13:59 signal.h -rw-r--r-- 1 root root 2292 Jan 17 13:59 socket.h -rw-r--r-- 1 root root 439 Jan 17 13:59 sockios.h -rw-r--r-- 1 root root 1839 Jan 17 13:59 statfs.h -rw-r--r-- 1 root root 2633 Jan 17 13:59 stat.h -rw-r--r-- 1 root root 502 Jan 17 13:59 swab.h -rw-r--r-- 1 root root 4716 Jan 17 13:59 termbits.h -rw-r--r-- 1 root root 1377 Jan 17 13:59 termios.h -rw-r--r-- 1 root root 233 Jan 17 13:59 types.h -rw-r--r-- 1 root root 357 Jan 17 13:59 ucontext.h -rw-r--r-- 1 root root 30244 Jan 17 13:59 unistd.h /usr/include/btrfs: total 220 drwxr-xr-x 2 root root 4096 Aug 5 2019 . drwxr-xr-x 34 root root 4096 Feb 5 06:03 .. -rw-r--r-- 1 root root 5035 Mar 12 2018 btrfsck.h -rw-r--r-- 1 root root 4658 Mar 12 2018 btrfs-list.h -rw-r--r-- 1 root root 1095 Mar 12 2018 crc32c.h -rw-r--r-- 1 root root 91600 Mar 12 2018 ctree.h -rw-r--r-- 1 root root 3604 Mar 12 2018 extent-cache.h -rw-r--r-- 1 root root 6040 Mar 12 2018 extent_io.h -rw-r--r-- 1 root root 26509 Feb 16 2018 ioctl.h -rw-r--r-- 1 root root 10419 Mar 12 2018 kerncompat.h -rw-r--r-- 1 root root 14636 Mar 12 2018 list.h -rw-r--r-- 1 root root 3343 Mar 12 2018 radix-tree.h -rw-r--r-- 1 root root 2024 Mar 12 2018 raid56.h -rw-r--r-- 1 root root 3903 Mar 12 2018 rbtree.h -rw-r--r-- 1 root root 3090 Mar 12 2018 send.h -rw-r--r-- 1 root root 2803 Mar 12 2018 send-stream.h -rw-r--r-- 1 root root 3700 Mar 12 2018 send-utils.h -rw-r--r-- 1 root root 1223 Mar 12 2018 sizes.h -rw-r--r-- 1 root root 363 Mar 12 2018 version.h /usr/include/c++: total 12 drwxr-xr-x 3 root root 4096 Oct 18 00:14 . drwxr-xr-x 34 root root 4096 Feb 5 06:03 .. drwxr-xr-x 12 root root 4096 Oct 18 00:14 7 lrwxrwxrwx 1 root root 1 May 8 2019 7.4.0 -> 7 /usr/include/c++/7: total 1368 drwxr-xr-x 12 root root 4096 Oct 18 00:14 . drwxr-xr-x 3 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 2518 May 8 2019 algorithm -rw-r--r-- 1 root root 18229 May 8 2019 any -rw-r--r-- 1 root root 11385 May 8 2019 array -rw-r--r-- 1 root root 40975 May 8 2019 atomic drwxr-xr-x 2 root root 4096 Oct 18 00:14 backward drwxr-xr-x 2 root root 4096 Oct 18 00:14 bits -rw-r--r-- 1 root root 45887 May 8 2019 bitset -rw-r--r-- 1 root root 1648 May 8 2019 cassert -rw-r--r-- 1 root root 1335 May 8 2019 ccomplex -rw-r--r-- 1 root root 2409 May 8 2019 cctype -rw-r--r-- 1 root root 1770 May 8 2019 cerrno -rw-r--r-- 1 root root 2051 May 8 2019 cfenv -rw-r--r-- 1 root root 1889 May 8 2019 cfloat -rw-r--r-- 1 root root 30089 May 8 2019 chrono -rw-r--r-- 1 root root 2157 May 8 2019 cinttypes -rw-r--r-- 1 root root 1464 May 8 2019 ciso646 -rw-r--r-- 1 root root 1913 May 8 2019 climits -rw-r--r-- 1 root root 1905 May 8 2019 clocale -rw-r--r-- 1 root root 48484 May 8 2019 cmath -rw-r--r-- 1 root root 5341 May 8 2019 codecvt -rw-r--r-- 1 root root 54204 May 8 2019 complex -rw-r--r-- 1 root root 1461 May 8 2019 complex.h -rw-r--r-- 1 root root 8954 May 8 2019 condition_variable -rw-r--r-- 1 root root 1949 May 8 2019 csetjmp -rw-r--r-- 1 root root 1855 May 8 2019 csignal -rw-r--r-- 1 root root 1407 May 8 2019 cstdalign -rw-r--r-- 1 root root 1868 May 8 2019 cstdarg -rw-r--r-- 1 root root 1401 May 8 2019 cstdbool -rw-r--r-- 1 root root 6440 May 8 2019 cstddef -rw-r--r-- 1 root root 2167 May 8 2019 cstdint -rw-r--r-- 1 root root 4439 May 8 2019 cstdio -rw-r--r-- 1 root root 6325 May 8 2019 cstdlib -rw-r--r-- 1 root root 3123 May 8 2019 cstring -rw-r--r-- 1 root root 1360 May 8 2019 ctgmath -rw-r--r-- 1 root root 2125 May 8 2019 ctime -rw-r--r-- 1 root root 2210 May 8 2019 cuchar -rw-r--r-- 1 root root 6509 May 8 2019 cwchar -rw-r--r-- 1 root root 2793 May 8 2019 cwctype -rw-r--r-- 1 root root 21947 May 8 2019 cxxabi.h drwxr-xr-x 2 root root 4096 Oct 18 00:14 debug drwxr-xr-x 2 root root 4096 Oct 18 00:14 decimal -rw-r--r-- 1 root root 2665 May 8 2019 deque -rw-r--r-- 1 root root 4777 May 8 2019 exception drwxr-xr-x 3 root root 4096 Oct 18 00:14 experimental drwxr-xr-x 3 root root 4096 Oct 18 00:14 ext -rw-r--r-- 1 root root 2020 May 8 2019 fenv.h -rw-r--r-- 1 root root 1577 May 8 2019 forward_list -rw-r--r-- 1 root root 33845 May 8 2019 fstream -rw-r--r-- 1 root root 39570 May 8 2019 functional -rw-r--r-- 1 root root 50678 May 8 2019 future -rw-r--r-- 1 root root 2974 May 8 2019 initializer_list -rw-r--r-- 1 root root 16132 May 8 2019 iomanip -rw-r--r-- 1 root root 1601 May 8 2019 ios -rw-r--r-- 1 root root 6918 May 8 2019 iosfwd -rw-r--r-- 1 root root 2695 May 8 2019 iostream -rw-r--r-- 1 root root 32843 May 8 2019 istream -rw-r--r-- 1 root root 2644 May 8 2019 iterator -rw-r--r-- 1 root root 69181 May 8 2019 limits -rw-r--r-- 1 root root 2594 May 8 2019 list -rw-r--r-- 1 root root 1488 May 8 2019 locale -rw-r--r-- 1 root root 2559 May 8 2019 map -rw-r--r-- 1 root root 4380 May 8 2019 math.h -rw-r--r-- 1 root root 4711 May 8 2019 memory -rw-r--r-- 1 root root 18310 May 8 2019 mutex -rw-r--r-- 1 root root 7507 May 8 2019 new -rw-r--r-- 1 root root 5232 May 8 2019 numeric -rw-r--r-- 1 root root 31123 May 8 2019 optional -rw-r--r-- 1 root root 21977 May 8 2019 ostream drwxr-xr-x 2 root root 4096 Oct 18 00:14 parallel drwxr-xr-x 3 root root 4096 Oct 18 00:14 profile -rw-r--r-- 1 root root 2467 May 8 2019 queue -rw-r--r-- 1 root root 1692 May 8 2019 random -rw-r--r-- 1 root root 19886 May 8 2019 ratio -rw-r--r-- 1 root root 1894 May 8 2019 regex -rw-r--r-- 1 root root 16221 May 8 2019 scoped_allocator -rw-r--r-- 1 root root 2559 May 8 2019 set -rw-r--r-- 1 root root 19409 May 8 2019 shared_mutex -rw-r--r-- 1 root root 26839 May 8 2019 sstream -rw-r--r-- 1 root root 2391 May 8 2019 stack -rw-r--r-- 1 root root 7975 May 8 2019 stdexcept -rw-r--r-- 1 root root 2248 May 8 2019 stdlib.h -rw-r--r-- 1 root root 29558 May 8 2019 streambuf -rw-r--r-- 1 root root 1940 May 8 2019 string -rw-r--r-- 1 root root 21299 May 8 2019 string_view -rw-r--r-- 1 root root 11522 May 8 2019 system_error -rw-r--r-- 1 root root 1360 May 8 2019 tgmath.h -rw-r--r-- 1 root root 10267 May 8 2019 thread drwxr-xr-x 2 root root 4096 Oct 18 00:14 tr1 drwxr-xr-x 2 root root 4096 Oct 18 00:14 tr2 -rw-r--r-- 1 root root 59617 May 8 2019 tuple -rw-r--r-- 1 root root 3093 May 8 2019 typeindex -rw-r--r-- 1 root root 7692 May 8 2019 typeinfo -rw-r--r-- 1 root root 92445 May 8 2019 type_traits -rw-r--r-- 1 root root 1857 May 8 2019 unordered_map -rw-r--r-- 1 root root 1856 May 8 2019 unordered_set -rw-r--r-- 1 root root 12447 May 8 2019 utility -rw-r--r-- 1 root root 40274 May 8 2019 valarray -rw-r--r-- 1 root root 43104 May 8 2019 variant -rw-r--r-- 1 root root 2747 May 8 2019 vector /usr/include/c++/7/backward: total 124 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 12 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 10689 May 8 2019 auto_ptr.h -rw-r--r-- 1 root root 2491 May 8 2019 backward_warning.h -rw-r--r-- 1 root root 7167 May 8 2019 binders.h -rw-r--r-- 1 root root 4248 May 8 2019 hash_fun.h -rw-r--r-- 1 root root 17775 May 8 2019 hash_map -rw-r--r-- 1 root root 17195 May 8 2019 hash_set -rw-r--r-- 1 root root 33719 May 8 2019 hashtable.h -rw-r--r-- 1 root root 5798 May 8 2019 strstream /usr/include/c++/7/bits: total 3444 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 12 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 21737 May 8 2019 algorithmfwd.h -rw-r--r-- 1 root root 3516 May 8 2019 allocated_ptr.h -rw-r--r-- 1 root root 6888 May 8 2019 allocator.h -rw-r--r-- 1 root root 19585 May 8 2019 alloc_traits.h -rw-r--r-- 1 root root 23842 May 8 2019 atomic_base.h -rw-r--r-- 1 root root 9576 May 8 2019 atomic_futex.h -rw-r--r-- 1 root root 2253 May 8 2019 atomic_lockfree_defines.h -rw-r--r-- 1 root root 16074 May 8 2019 basic_ios.h -rw-r--r-- 1 root root 6083 May 8 2019 basic_ios.tcc -rw-r--r-- 1 root root 240793 May 8 2019 basic_string.h -rw-r--r-- 1 root root 53755 May 8 2019 basic_string.tcc -rw-r--r-- 1 root root 27048 May 8 2019 boost_concept_check.h -rw-r--r-- 1 root root 1474 May 8 2019 c++0x_warning.h -rw-r--r-- 1 root root 20745 May 8 2019 char_traits.h -rw-r--r-- 1 root root 21297 May 8 2019 codecvt.h -rw-r--r-- 1 root root 3423 May 8 2019 concept_check.h -rw-r--r-- 1 root root 9594 May 8 2019 cpp_type_traits.h -rw-r--r-- 1 root root 1811 May 8 2019 cxxabi_forced.h -rw-r--r-- 1 root root 2220 May 8 2019 cxxabi_init_exception.h -rw-r--r-- 1 root root 34058 May 8 2019 deque.tcc -rw-r--r-- 1 root root 12387 May 8 2019 enable_special_members.h -rw-r--r-- 1 root root 1645 May 8 2019 exception_defines.h -rw-r--r-- 1 root root 2280 May 8 2019 exception.h -rw-r--r-- 1 root root 6464 May 8 2019 exception_ptr.h -rw-r--r-- 1 root root 48641 May 8 2019 forward_list.h -rw-r--r-- 1 root root 15022 May 8 2019 forward_list.tcc -rw-r--r-- 1 root root 32909 May 8 2019 fstream.tcc -rw-r--r-- 1 root root 3254 May 8 2019 functexcept.h -rw-r--r-- 1 root root 8194 May 8 2019 functional_hash.h -rw-r--r-- 1 root root 7769 May 8 2019 gslice_array.h -rw-r--r-- 1 root root 5518 May 8 2019 gslice.h -rw-r--r-- 1 root root 2146 May 8 2019 hash_bytes.h -rw-r--r-- 1 root root 73276 May 8 2019 hashtable.h -rw-r--r-- 1 root root 67045 May 8 2019 hashtable_policy.h -rw-r--r-- 1 root root 7861 May 8 2019 indirect_array.h -rw-r--r-- 1 root root 3657 May 8 2019 invoke.h -rw-r--r-- 1 root root 30944 May 8 2019 ios_base.h -rw-r--r-- 1 root root 31093 May 8 2019 istream.tcc -rw-r--r-- 1 root root 15912 May 8 2019 list.tcc -rw-r--r-- 1 root root 24897 May 8 2019 locale_classes.h -rw-r--r-- 1 root root 8375 May 8 2019 locale_classes.tcc -rw-r--r-- 1 root root 16077 May 8 2019 locale_conv.h -rw-r--r-- 1 root root 92142 May 8 2019 locale_facets.h -rw-r--r-- 1 root root 68941 May 8 2019 locale_facets_nonio.h -rw-r--r-- 1 root root 45522 May 8 2019 locale_facets_nonio.tcc -rw-r--r-- 1 root root 39568 May 8 2019 locale_facets.tcc -rw-r--r-- 1 root root 5646 May 8 2019 localefwd.h -rw-r--r-- 1 root root 7595 May 8 2019 mask_array.h -rw-r--r-- 1 root root 2419 May 8 2019 memoryfwd.h -rw-r--r-- 1 root root 6653 May 8 2019 move.h -rw-r--r-- 1 root root 4768 May 8 2019 nested_exception.h -rw-r--r-- 1 root root 8165 May 8 2019 node_handle.h -rw-r--r-- 1 root root 4002 May 8 2019 ostream_insert.h -rw-r--r-- 1 root root 12315 May 8 2019 ostream.tcc -rw-r--r-- 1 root root 8027 May 8 2019 parse_numbers.h -rw-r--r-- 1 root root 8208 May 8 2019 postypes.h -rw-r--r-- 1 root root 9083 May 8 2019 predefined_ops.h -rw-r--r-- 1 root root 4860 May 8 2019 ptr_traits.h -rw-r--r-- 1 root root 4581 May 8 2019 quoted_string.h -rw-r--r-- 1 root root 175292 May 8 2019 random.h -rw-r--r-- 1 root root 105554 May 8 2019 random.tcc -rw-r--r-- 1 root root 9988 May 8 2019 range_access.h -rw-r--r-- 1 root root 13807 May 8 2019 refwrap.h -rw-r--r-- 1 root root 10721 May 8 2019 regex_automaton.h -rw-r--r-- 1 root root 7838 May 8 2019 regex_automaton.tcc -rw-r--r-- 1 root root 17196 May 8 2019 regex_compiler.h -rw-r--r-- 1 root root 18901 May 8 2019 regex_compiler.tcc -rw-r--r-- 1 root root 14709 May 8 2019 regex_constants.h -rw-r--r-- 1 root root 4969 May 8 2019 regex_error.h -rw-r--r-- 1 root root 7488 May 8 2019 regex_executor.h -rw-r--r-- 1 root root 17319 May 8 2019 regex_executor.tcc -rw-r--r-- 1 root root 98206 May 8 2019 regex.h -rw-r--r-- 1 root root 7088 May 8 2019 regex_scanner.h -rw-r--r-- 1 root root 15009 May 8 2019 regex_scanner.tcc -rw-r--r-- 1 root root 16486 May 8 2019 regex.tcc -rw-r--r-- 1 root root 9769 May 8 2019 shared_ptr_atomic.h -rw-r--r-- 1 root root 53803 May 8 2019 shared_ptr_base.h -rw-r--r-- 1 root root 22909 May 8 2019 shared_ptr.h -rw-r--r-- 1 root root 9348 May 8 2019 slice_array.h -rw-r--r-- 1 root root 45086 May 8 2019 specfun.h -rw-r--r-- 1 root root 10115 May 8 2019 sstream.tcc -rw-r--r-- 1 root root 3290 May 8 2019 std_abs.h -rw-r--r-- 1 root root 23974 May 8 2019 std_function.h -rw-r--r-- 1 root root 9298 May 8 2019 std_mutex.h -rw-r--r-- 1 root root 50403 May 8 2019 stl_algobase.h -rw-r--r-- 1 root root 213859 May 8 2019 stl_algo.h -rw-r--r-- 1 root root 33821 May 8 2019 stl_bvector.h -rw-r--r-- 1 root root 7397 May 8 2019 stl_construct.h -rw-r--r-- 1 root root 77771 May 8 2019 stl_deque.h -rw-r--r-- 1 root root 33276 May 8 2019 stl_function.h -rw-r--r-- 1 root root 20206 May 8 2019 stl_heap.h -rw-r--r-- 1 root root 8071 May 8 2019 stl_iterator_base_funcs.h -rw-r--r-- 1 root root 8680 May 8 2019 stl_iterator_base_types.h -rw-r--r-- 1 root root 41744 May 8 2019 stl_iterator.h -rw-r--r-- 1 root root 65181 May 8 2019 stl_list.h -rw-r--r-- 1 root root 51221 May 8 2019 stl_map.h -rw-r--r-- 1 root root 39940 May 8 2019 stl_multimap.h -rw-r--r-- 1 root root 34056 May 8 2019 stl_multiset.h -rw-r--r-- 1 root root 13832 May 8 2019 stl_numeric.h -rw-r--r-- 1 root root 18642 May 8 2019 stl_pair.h -rw-r--r-- 1 root root 22125 May 8 2019 stl_queue.h -rw-r--r-- 1 root root 3830 May 8 2019 stl_raw_storage_iter.h -rw-r--r-- 1 root root 4599 May 8 2019 stl_relops.h -rw-r--r-- 1 root root 34432 May 8 2019 stl_set.h -rw-r--r-- 1 root root 11446 May 8 2019 stl_stack.h -rw-r--r-- 1 root root 8344 May 8 2019 stl_tempbuf.h -rw-r--r-- 1 root root 74820 May 8 2019 stl_tree.h -rw-r--r-- 1 root root 27600 May 8 2019 stl_uninitialized.h -rw-r--r-- 1 root root 55637 May 8 2019 stl_vector.h -rw-r--r-- 1 root root 12624 May 8 2019 streambuf_iterator.h -rw-r--r-- 1 root root 4929 May 8 2019 streambuf.tcc -rw-r--r-- 1 root root 6654 May 8 2019 stream_iterator.h -rw-r--r-- 1 root root 2607 May 8 2019 stringfwd.h -rw-r--r-- 1 root root 6632 May 8 2019 string_view.tcc -rw-r--r-- 1 root root 10147 May 8 2019 uniform_int_dist.h -rw-r--r-- 1 root root 25794 May 8 2019 unique_ptr.h -rw-r--r-- 1 root root 68650 May 8 2019 unordered_map.h -rw-r--r-- 1 root root 53824 May 8 2019 unordered_set.h -rw-r--r-- 1 root root 6383 May 8 2019 uses_allocator.h -rw-r--r-- 1 root root 22655 May 8 2019 valarray_after.h -rw-r--r-- 1 root root 21807 May 8 2019 valarray_array.h -rw-r--r-- 1 root root 7254 May 8 2019 valarray_array.tcc -rw-r--r-- 1 root root 18513 May 8 2019 valarray_before.h -rw-r--r-- 1 root root 27598 May 8 2019 vector.tcc /usr/include/c++/7/debug: total 512 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 12 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 10122 May 8 2019 array -rw-r--r-- 1 root root 2411 May 8 2019 assertions.h -rw-r--r-- 1 root root 11903 May 8 2019 bitset -rw-r--r-- 1 root root 5221 May 8 2019 debug.h -rw-r--r-- 1 root root 17004 May 8 2019 deque -rw-r--r-- 1 root root 14169 May 8 2019 formatter.h -rw-r--r-- 1 root root 25253 May 8 2019 forward_list -rw-r--r-- 1 root root 16601 May 8 2019 functions.h -rw-r--r-- 1 root root 6813 May 8 2019 helper_functions.h -rw-r--r-- 1 root root 22406 May 8 2019 list -rw-r--r-- 1 root root 17872 May 8 2019 macros.h -rw-r--r-- 1 root root 1345 May 8 2019 map -rw-r--r-- 1 root root 21145 May 8 2019 map.h -rw-r--r-- 1 root root 18244 May 8 2019 multimap.h -rw-r--r-- 1 root root 17168 May 8 2019 multiset.h -rw-r--r-- 1 root root 9279 May 8 2019 safe_base.h -rw-r--r-- 1 root root 3413 May 8 2019 safe_container.h -rw-r--r-- 1 root root 30248 May 8 2019 safe_iterator.h -rw-r--r-- 1 root root 2959 May 8 2019 safe_iterator.tcc -rw-r--r-- 1 root root 16229 May 8 2019 safe_local_iterator.h -rw-r--r-- 1 root root 2118 May 8 2019 safe_local_iterator.tcc -rw-r--r-- 1 root root 5096 May 8 2019 safe_sequence.h -rw-r--r-- 1 root root 4989 May 8 2019 safe_sequence.tcc -rw-r--r-- 1 root root 6895 May 8 2019 safe_unordered_base.h -rw-r--r-- 1 root root 3897 May 8 2019 safe_unordered_container.h -rw-r--r-- 1 root root 3263 May 8 2019 safe_unordered_container.tcc -rw-r--r-- 1 root root 1345 May 8 2019 set -rw-r--r-- 1 root root 17328 May 8 2019 set.h -rw-r--r-- 1 root root 4276 May 8 2019 stl_iterator.h -rw-r--r-- 1 root root 33653 May 8 2019 string -rw-r--r-- 1 root root 35411 May 8 2019 unordered_map -rw-r--r-- 1 root root 30522 May 8 2019 unordered_set -rw-r--r-- 1 root root 21862 May 8 2019 vector /usr/include/c++/7/decimal: total 48 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 12 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 17640 May 8 2019 decimal -rw-r--r-- 1 root root 17002 May 8 2019 decimal.h /usr/include/c++/7/experimental: total 240 drwxr-xr-x 3 root root 4096 Oct 18 00:14 . drwxr-xr-x 12 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 3089 May 8 2019 algorithm -rw-r--r-- 1 root root 14592 May 8 2019 any -rw-r--r-- 1 root root 3232 May 8 2019 array drwxr-xr-x 2 root root 4096 Oct 18 00:14 bits -rw-r--r-- 1 root root 1937 May 8 2019 chrono -rw-r--r-- 1 root root 2317 May 8 2019 deque -rw-r--r-- 1 root root 2195 May 8 2019 filesystem -rw-r--r-- 1 root root 2373 May 8 2019 forward_list -rw-r--r-- 1 root root 12553 May 8 2019 functional -rw-r--r-- 1 root root 3510 May 8 2019 iterator -rw-r--r-- 1 root root 2284 May 8 2019 list -rw-r--r-- 1 root root 2628 May 8 2019 map -rw-r--r-- 1 root root 6040 May 8 2019 memory -rw-r--r-- 1 root root 12803 May 8 2019 memory_resource -rw-r--r-- 1 root root 2798 May 8 2019 numeric -rw-r--r-- 1 root root 28849 May 8 2019 optional -rw-r--r-- 1 root root 15312 May 8 2019 propagate_const -rw-r--r-- 1 root root 2475 May 8 2019 random -rw-r--r-- 1 root root 2416 May 8 2019 ratio -rw-r--r-- 1 root root 2097 May 8 2019 regex -rw-r--r-- 1 root root 2502 May 8 2019 set -rw-r--r-- 1 root root 2670 May 8 2019 source_location -rw-r--r-- 1 root root 2861 May 8 2019 string -rw-r--r-- 1 root root 21790 May 8 2019 string_view -rw-r--r-- 1 root root 2023 May 8 2019 system_error -rw-r--r-- 1 root root 2450 May 8 2019 tuple -rw-r--r-- 1 root root 11018 May 8 2019 type_traits -rw-r--r-- 1 root root 2874 May 8 2019 unordered_map -rw-r--r-- 1 root root 2757 May 8 2019 unordered_set -rw-r--r-- 1 root root 1633 May 8 2019 utility -rw-r--r-- 1 root root 2389 May 8 2019 vector /usr/include/c++/7/experimental/bits: total 112 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 3 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 2079 May 8 2019 erase_if.h -rw-r--r-- 1 root root 10789 May 8 2019 fs_dir.h -rw-r--r-- 1 root root 8507 May 8 2019 fs_fwd.h -rw-r--r-- 1 root root 9330 May 8 2019 fs_ops.h -rw-r--r-- 1 root root 30782 May 8 2019 fs_path.h -rw-r--r-- 1 root root 2144 May 8 2019 lfts_config.h -rw-r--r-- 1 root root 20301 May 8 2019 shared_ptr.h -rw-r--r-- 1 root root 6816 May 8 2019 string_view.tcc /usr/include/c++/7/ext: total 916 drwxr-xr-x 3 root root 4096 Oct 18 00:14 . drwxr-xr-x 12 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 19290 May 8 2019 algorithm -rw-r--r-- 1 root root 3742 May 8 2019 aligned_buffer.h -rw-r--r-- 1 root root 5658 May 8 2019 alloc_traits.h -rw-r--r-- 1 root root 5386 May 8 2019 array_allocator.h -rw-r--r-- 1 root root 3509 May 8 2019 atomicity.h -rw-r--r-- 1 root root 31892 May 8 2019 bitmap_allocator.h -rw-r--r-- 1 root root 4447 May 8 2019 cast.h -rw-r--r-- 1 root root 6570 May 8 2019 cmath -rw-r--r-- 1 root root 16353 May 8 2019 codecvt_specializations.h -rw-r--r-- 1 root root 7611 May 8 2019 concurrence.h -rw-r--r-- 1 root root 5716 May 8 2019 debug_allocator.h -rw-r--r-- 1 root root 2247 May 8 2019 enc_filebuf.h -rw-r--r-- 1 root root 6189 May 8 2019 extptr_allocator.h -rw-r--r-- 1 root root 14292 May 8 2019 functional -rw-r--r-- 1 root root 17775 May 8 2019 hash_map -rw-r--r-- 1 root root 17195 May 8 2019 hash_set -rw-r--r-- 1 root root 4031 May 8 2019 iterator -rw-r--r-- 1 root root 5086 May 8 2019 malloc_allocator.h -rw-r--r-- 1 root root 7156 May 8 2019 memory -rw-r--r-- 1 root root 23523 May 8 2019 mt_allocator.h -rw-r--r-- 1 root root 4805 May 8 2019 new_allocator.h -rw-r--r-- 1 root root 4731 May 8 2019 numeric -rw-r--r-- 1 root root 4575 May 8 2019 numeric_traits.h drwxr-xr-x 3 root root 4096 Oct 18 00:14 pb_ds -rw-r--r-- 1 root root 5556 May 8 2019 pod_char_traits.h -rw-r--r-- 1 root root 19827 May 8 2019 pointer.h -rw-r--r-- 1 root root 8821 May 8 2019 pool_allocator.h -rw-r--r-- 1 root root 111392 May 8 2019 random -rw-r--r-- 1 root root 60247 May 8 2019 random.tcc -rw-r--r-- 1 root root 3311 May 8 2019 rb_tree -rw-r--r-- 1 root root 23735 May 8 2019 rc_string_base.h -rw-r--r-- 1 root root 87643 May 8 2019 rope -rw-r--r-- 1 root root 48434 May 8 2019 ropeimpl.h -rw-r--r-- 1 root root 29603 May 8 2019 slist -rw-r--r-- 1 root root 16314 May 8 2019 sso_string_base.h -rw-r--r-- 1 root root 5670 May 8 2019 stdio_filebuf.h -rw-r--r-- 1 root root 8782 May 8 2019 stdio_sync_filebuf.h -rw-r--r-- 1 root root 3597 May 8 2019 string_conversions.h -rw-r--r-- 1 root root 24537 May 8 2019 throw_allocator.h -rw-r--r-- 1 root root 16835 May 8 2019 typelist.h -rw-r--r-- 1 root root 5914 May 8 2019 type_traits.h -rw-r--r-- 1 root root 3222 May 8 2019 vstring_fwd.h -rw-r--r-- 1 root root 110573 May 8 2019 vstring.h -rw-r--r-- 1 root root 23614 May 8 2019 vstring.tcc -rw-r--r-- 1 root root 5767 May 8 2019 vstring_util.h /usr/include/c++/7/ext/pb_ds: total 116 drwxr-xr-x 3 root root 4096 Oct 18 00:14 . drwxr-xr-x 3 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 30110 May 8 2019 assoc_container.hpp drwxr-xr-x 25 root root 4096 Oct 18 00:14 detail -rw-r--r-- 1 root root 2988 May 8 2019 exception.hpp -rw-r--r-- 1 root root 16815 May 8 2019 hash_policy.hpp -rw-r--r-- 1 root root 4368 May 8 2019 list_update_policy.hpp -rw-r--r-- 1 root root 5502 May 8 2019 priority_queue.hpp -rw-r--r-- 1 root root 12268 May 8 2019 tag_and_trait.hpp -rw-r--r-- 1 root root 5577 May 8 2019 tree_policy.hpp -rw-r--r-- 1 root root 12225 May 8 2019 trie_policy.hpp /usr/include/c++/7/ext/pb_ds/detail: total 176 drwxr-xr-x 25 root root 4096 Oct 18 00:14 . drwxr-xr-x 3 root root 4096 Oct 18 00:14 .. drwxr-xr-x 2 root root 4096 Oct 18 00:14 binary_heap_ drwxr-xr-x 2 root root 4096 Oct 18 00:14 binomial_heap_ drwxr-xr-x 2 root root 4096 Oct 18 00:14 binomial_heap_base_ drwxr-xr-x 2 root root 4096 Oct 18 00:14 bin_search_tree_ drwxr-xr-x 2 root root 4096 Oct 18 00:14 branch_policy drwxr-xr-x 2 root root 4096 Oct 18 00:14 cc_hash_table_map_ -rw-r--r-- 1 root root 2724 May 8 2019 cond_dealtor.hpp -rw-r--r-- 1 root root 13120 May 8 2019 container_base_dispatch.hpp -rw-r--r-- 1 root root 8697 May 8 2019 debug_map_base.hpp drwxr-xr-x 2 root root 4096 Oct 18 00:14 eq_fn drwxr-xr-x 2 root root 4096 Oct 18 00:14 gp_hash_table_map_ drwxr-xr-x 2 root root 4096 Oct 18 00:14 hash_fn drwxr-xr-x 2 root root 4096 Oct 18 00:14 left_child_next_sibling_heap_ drwxr-xr-x 2 root root 4096 Oct 18 00:14 list_update_map_ drwxr-xr-x 2 root root 4096 Oct 18 00:14 list_update_policy drwxr-xr-x 2 root root 4096 Oct 18 00:14 ov_tree_map_ drwxr-xr-x 2 root root 4096 Oct 18 00:14 pairing_heap_ drwxr-xr-x 2 root root 4096 Oct 18 00:14 pat_trie_ -rw-r--r-- 1 root root 4140 May 8 2019 priority_queue_base_dispatch.hpp drwxr-xr-x 2 root root 4096 Oct 18 00:14 rb_tree_map_ drwxr-xr-x 2 root root 4096 Oct 18 00:14 rc_binomial_heap_ drwxr-xr-x 2 root root 4096 Oct 18 00:14 resize_policy drwxr-xr-x 2 root root 4096 Oct 18 00:14 splay_tree_ -rw-r--r-- 1 root root 5031 May 8 2019 standard_policies.hpp drwxr-xr-x 2 root root 4096 Oct 18 00:14 thin_heap_ drwxr-xr-x 2 root root 4096 Oct 18 00:14 tree_policy -rw-r--r-- 1 root root 5134 May 8 2019 tree_trace_base.hpp drwxr-xr-x 2 root root 4096 Oct 18 00:14 trie_policy -rw-r--r-- 1 root root 9998 May 8 2019 types_traits.hpp -rw-r--r-- 1 root root 4319 May 8 2019 type_utils.hpp drwxr-xr-x 2 root root 4096 Oct 18 00:14 unordered_iterator /usr/include/c++/7/ext/pb_ds/detail/binary_heap_: total 108 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 25 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 9010 May 8 2019 binary_heap_.hpp -rw-r--r-- 1 root root 4338 May 8 2019 const_iterator.hpp -rw-r--r-- 1 root root 4189 May 8 2019 constructors_destructor_fn_imps.hpp -rw-r--r-- 1 root root 2541 May 8 2019 debug_fn_imps.hpp -rw-r--r-- 1 root root 2820 May 8 2019 entry_cmp.hpp -rw-r--r-- 1 root root 2785 May 8 2019 entry_pred.hpp -rw-r--r-- 1 root root 5504 May 8 2019 erase_fn_imps.hpp -rw-r--r-- 1 root root 2597 May 8 2019 find_fn_imps.hpp -rw-r--r-- 1 root root 2062 May 8 2019 info_fn_imps.hpp -rw-r--r-- 1 root root 4978 May 8 2019 insert_fn_imps.hpp -rw-r--r-- 1 root root 2270 May 8 2019 iterators_fn_imps.hpp -rw-r--r-- 1 root root 4447 May 8 2019 point_const_iterator.hpp -rw-r--r-- 1 root root 1902 May 8 2019 policy_access_fn_imps.hpp -rw-r--r-- 1 root root 6133 May 8 2019 resize_policy.hpp -rw-r--r-- 1 root root 4923 May 8 2019 split_join_fn_imps.hpp -rw-r--r-- 1 root root 2447 May 8 2019 trace_fn_imps.hpp /usr/include/c++/7/ext/pb_ds/detail/binomial_heap_: total 20 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 25 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 3922 May 8 2019 binomial_heap_.hpp -rw-r--r-- 1 root root 2151 May 8 2019 constructors_destructor_fn_imps.hpp -rw-r--r-- 1 root root 1897 May 8 2019 debug_fn_imps.hpp /usr/include/c++/7/ext/pb_ds/detail/binomial_heap_base_: total 52 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 25 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 6202 May 8 2019 binomial_heap_base_.hpp -rw-r--r-- 1 root root 2688 May 8 2019 constructors_destructor_fn_imps.hpp -rw-r--r-- 1 root root 3468 May 8 2019 debug_fn_imps.hpp -rw-r--r-- 1 root root 4482 May 8 2019 erase_fn_imps.hpp -rw-r--r-- 1 root root 2345 May 8 2019 find_fn_imps.hpp -rw-r--r-- 1 root root 5271 May 8 2019 insert_fn_imps.hpp -rw-r--r-- 1 root root 5365 May 8 2019 split_join_fn_imps.hpp /usr/include/c++/7/ext/pb_ds/detail/bin_search_tree_: total 116 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 25 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 12419 May 8 2019 bin_search_tree_.hpp -rw-r--r-- 1 root root 5507 May 8 2019 constructors_destructor_fn_imps.hpp -rw-r--r-- 1 root root 8071 May 8 2019 debug_fn_imps.hpp -rw-r--r-- 1 root root 2919 May 8 2019 erase_fn_imps.hpp -rw-r--r-- 1 root root 4679 May 8 2019 find_fn_imps.hpp -rw-r--r-- 1 root root 2080 May 8 2019 info_fn_imps.hpp -rw-r--r-- 1 root root 5481 May 8 2019 insert_fn_imps.hpp -rw-r--r-- 1 root root 3515 May 8 2019 iterators_fn_imps.hpp -rw-r--r-- 1 root root 5997 May 8 2019 node_iterators.hpp -rw-r--r-- 1 root root 8961 May 8 2019 point_iterators.hpp -rw-r--r-- 1 root root 1905 May 8 2019 policy_access_fn_imps.hpp -rw-r--r-- 1 root root 2909 May 8 2019 r_erase_fn_imps.hpp -rw-r--r-- 1 root root 4190 May 8 2019 rotate_fn_imps.hpp -rw-r--r-- 1 root root 4007 May 8 2019 split_join_fn_imps.hpp -rw-r--r-- 1 root root 6378 May 8 2019 traits.hpp /usr/include/c++/7/ext/pb_ds/detail/branch_policy: total 20 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 25 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 4031 May 8 2019 branch_policy.hpp -rw-r--r-- 1 root root 2379 May 8 2019 null_node_metadata.hpp -rw-r--r-- 1 root root 3254 May 8 2019 traits.hpp /usr/include/c++/7/ext/pb_ds/detail/cc_hash_table_map_: total 132 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 25 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 19953 May 8 2019 cc_ht_map_.hpp -rw-r--r-- 1 root root 2765 May 8 2019 cmp_fn_imps.hpp -rw-r--r-- 1 root root 2874 May 8 2019 cond_key_dtor_entry_dealtor.hpp -rw-r--r-- 1 root root 5791 May 8 2019 constructor_destructor_fn_imps.hpp -rw-r--r-- 1 root root 2226 May 8 2019 constructor_destructor_no_store_hash_fn_imps.hpp -rw-r--r-- 1 root root 2306 May 8 2019 constructor_destructor_store_hash_fn_imps.hpp -rw-r--r-- 1 root root 2693 May 8 2019 debug_fn_imps.hpp -rw-r--r-- 1 root root 2000 May 8 2019 debug_no_store_hash_fn_imps.hpp -rw-r--r-- 1 root root 2148 May 8 2019 debug_store_hash_fn_imps.hpp -rw-r--r-- 1 root root 2954 May 8 2019 entry_list_fn_imps.hpp -rw-r--r-- 1 root root 3245 May 8 2019 erase_fn_imps.hpp -rw-r--r-- 1 root root 3264 May 8 2019 erase_no_store_hash_fn_imps.hpp -rw-r--r-- 1 root root 3225 May 8 2019 erase_store_hash_fn_imps.hpp -rw-r--r-- 1 root root 2485 May 8 2019 find_fn_imps.hpp -rw-r--r-- 1 root root 1779 May 8 2019 find_store_hash_fn_imps.hpp -rw-r--r-- 1 root root 3111 May 8 2019 info_fn_imps.hpp -rw-r--r-- 1 root root 1896 May 8 2019 insert_fn_imps.hpp -rw-r--r-- 1 root root 2618 May 8 2019 insert_no_store_hash_fn_imps.hpp -rw-r--r-- 1 root root 2674 May 8 2019 insert_store_hash_fn_imps.hpp -rw-r--r-- 1 root root 2664 May 8 2019 iterators_fn_imps.hpp -rw-r--r-- 1 root root 2481 May 8 2019 policy_access_fn_imps.hpp -rw-r--r-- 1 root root 4062 May 8 2019 resize_fn_imps.hpp -rw-r--r-- 1 root root 2242 May 8 2019 resize_no_store_hash_fn_imps.hpp -rw-r--r-- 1 root root 2274 May 8 2019 resize_store_hash_fn_imps.hpp -rw-r--r-- 1 root root 2109 May 8 2019 size_fn_imps.hpp -rw-r--r-- 1 root root 2363 May 8 2019 trace_fn_imps.hpp /usr/include/c++/7/ext/pb_ds/detail/eq_fn: total 16 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 25 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 2330 May 8 2019 eq_by_less.hpp -rw-r--r-- 1 root root 3821 May 8 2019 hash_eq_fn.hpp /usr/include/c++/7/ext/pb_ds/detail/gp_hash_table_map_: total 124 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 25 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 6606 May 8 2019 constructor_destructor_fn_imps.hpp -rw-r--r-- 1 root root 2202 May 8 2019 constructor_destructor_no_store_hash_fn_imps.hpp -rw-r--r-- 1 root root 2269 May 8 2019 constructor_destructor_store_hash_fn_imps.hpp -rw-r--r-- 1 root root 2174 May 8 2019 debug_fn_imps.hpp -rw-r--r-- 1 root root 2505 May 8 2019 debug_no_store_hash_fn_imps.hpp -rw-r--r-- 1 root root 2645 May 8 2019 debug_store_hash_fn_imps.hpp -rw-r--r-- 1 root root 3204 May 8 2019 erase_fn_imps.hpp -rw-r--r-- 1 root root 2885 May 8 2019 erase_no_store_hash_fn_imps.hpp -rw-r--r-- 1 root root 2919 May 8 2019 erase_store_hash_fn_imps.hpp -rw-r--r-- 1 root root 2478 May 8 2019 find_fn_imps.hpp -rw-r--r-- 1 root root 1924 May 8 2019 find_no_store_hash_fn_imps.hpp -rw-r--r-- 1 root root 1780 May 8 2019 find_store_hash_fn_imps.hpp -rw-r--r-- 1 root root 20398 May 8 2019 gp_ht_map_.hpp -rw-r--r-- 1 root root 2108 May 8 2019 info_fn_imps.hpp -rw-r--r-- 1 root root 1896 May 8 2019 insert_fn_imps.hpp -rw-r--r-- 1 root root 3777 May 8 2019 insert_no_store_hash_fn_imps.hpp -rw-r--r-- 1 root root 4085 May 8 2019 insert_store_hash_fn_imps.hpp -rw-r--r-- 1 root root 2619 May 8 2019 iterator_fn_imps.hpp -rw-r--r-- 1 root root 2660 May 8 2019 policy_access_fn_imps.hpp -rw-r--r-- 1 root root 4157 May 8 2019 resize_fn_imps.hpp -rw-r--r-- 1 root root 2618 May 8 2019 resize_no_store_hash_fn_imps.hpp -rw-r--r-- 1 root root 2651 May 8 2019 resize_store_hash_fn_imps.hpp -rw-r--r-- 1 root root 2424 May 8 2019 trace_fn_imps.hpp /usr/include/c++/7/ext/pb_ds/detail/hash_fn: total 76 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 25 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 2104 May 8 2019 direct_mask_range_hashing_imp.hpp -rw-r--r-- 1 root root 2094 May 8 2019 direct_mod_range_hashing_imp.hpp -rw-r--r-- 1 root root 1913 May 8 2019 linear_probe_fn_imp.hpp -rw-r--r-- 1 root root 3290 May 8 2019 mask_based_range_hashing.hpp -rw-r--r-- 1 root root 2391 May 8 2019 mod_based_range_hashing.hpp -rw-r--r-- 1 root root 2009 May 8 2019 probe_fn_base.hpp -rw-r--r-- 1 root root 1920 May 8 2019 quadratic_probe_fn_imp.hpp -rw-r--r-- 1 root root 10619 May 8 2019 ranged_hash_fn.hpp -rw-r--r-- 1 root root 10436 May 8 2019 ranged_probe_fn.hpp -rw-r--r-- 1 root root 2291 May 8 2019 sample_probe_fn.hpp -rw-r--r-- 1 root root 2469 May 8 2019 sample_ranged_hash_fn.hpp -rw-r--r-- 1 root root 2598 May 8 2019 sample_ranged_probe_fn.hpp -rw-r--r-- 1 root root 2487 May 8 2019 sample_range_hashing.hpp /usr/include/c++/7/ext/pb_ds/detail/left_child_next_sibling_heap_: total 72 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 25 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 4924 May 8 2019 const_iterator.hpp -rw-r--r-- 1 root root 4055 May 8 2019 constructors_destructor_fn_imps.hpp -rw-r--r-- 1 root root 4075 May 8 2019 debug_fn_imps.hpp -rw-r--r-- 1 root root 3959 May 8 2019 erase_fn_imps.hpp -rw-r--r-- 1 root root 2106 May 8 2019 info_fn_imps.hpp -rw-r--r-- 1 root root 5201 May 8 2019 insert_fn_imps.hpp -rw-r--r-- 1 root root 2555 May 8 2019 iterators_fn_imps.hpp -rw-r--r-- 1 root root 8175 May 8 2019 left_child_next_sibling_heap_.hpp -rw-r--r-- 1 root root 3212 May 8 2019 node.hpp -rw-r--r-- 1 root root 4496 May 8 2019 point_const_iterator.hpp -rw-r--r-- 1 root root 1927 May 8 2019 policy_access_fn_imps.hpp -rw-r--r-- 1 root root 2815 May 8 2019 trace_fn_imps.hpp /usr/include/c++/7/ext/pb_ds/detail/list_update_map_: total 56 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 25 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 3584 May 8 2019 constructor_destructor_fn_imps.hpp -rw-r--r-- 1 root root 2095 May 8 2019 debug_fn_imps.hpp -rw-r--r-- 1 root root 2117 May 8 2019 entry_metadata_base.hpp -rw-r--r-- 1 root root 3482 May 8 2019 erase_fn_imps.hpp -rw-r--r-- 1 root root 2861 May 8 2019 find_fn_imps.hpp -rw-r--r-- 1 root root 2074 May 8 2019 info_fn_imps.hpp -rw-r--r-- 1 root root 3510 May 8 2019 insert_fn_imps.hpp -rw-r--r-- 1 root root 2520 May 8 2019 iterators_fn_imps.hpp -rw-r--r-- 1 root root 10393 May 8 2019 lu_map_.hpp -rw-r--r-- 1 root root 2028 May 8 2019 trace_fn_imps.hpp /usr/include/c++/7/ext/pb_ds/detail/list_update_policy: total 16 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 25 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 2850 May 8 2019 lu_counter_metadata.hpp -rw-r--r-- 1 root root 2672 May 8 2019 sample_update_policy.hpp /usr/include/c++/7/ext/pb_ds/detail/ov_tree_map_: total 84 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 25 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 6869 May 8 2019 constructors_destructor_fn_imps.hpp -rw-r--r-- 1 root root 2818 May 8 2019 debug_fn_imps.hpp -rw-r--r-- 1 root root 4981 May 8 2019 erase_fn_imps.hpp -rw-r--r-- 1 root root 2084 May 8 2019 info_fn_imps.hpp -rw-r--r-- 1 root root 2273 May 8 2019 insert_fn_imps.hpp -rw-r--r-- 1 root root 3361 May 8 2019 iterators_fn_imps.hpp -rw-r--r-- 1 root root 8811 May 8 2019 node_iterators.hpp -rw-r--r-- 1 root root 15366 May 8 2019 ov_tree_map_.hpp -rw-r--r-- 1 root root 1887 May 8 2019 policy_access_fn_imps.hpp -rw-r--r-- 1 root root 3774 May 8 2019 split_join_fn_imps.hpp -rw-r--r-- 1 root root 4562 May 8 2019 traits.hpp /usr/include/c++/7/ext/pb_ds/detail/pairing_heap_: total 44 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 25 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 2506 May 8 2019 constructors_destructor_fn_imps.hpp -rw-r--r-- 1 root root 1996 May 8 2019 debug_fn_imps.hpp -rw-r--r-- 1 root root 7191 May 8 2019 erase_fn_imps.hpp -rw-r--r-- 1 root root 1937 May 8 2019 find_fn_imps.hpp -rw-r--r-- 1 root root 2947 May 8 2019 insert_fn_imps.hpp -rw-r--r-- 1 root root 5517 May 8 2019 pairing_heap_.hpp -rw-r--r-- 1 root root 3706 May 8 2019 split_join_fn_imps.hpp /usr/include/c++/7/ext/pb_ds/detail/pat_trie_: total 168 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 25 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 5712 May 8 2019 constructors_destructor_fn_imps.hpp -rw-r--r-- 1 root root 3791 May 8 2019 debug_fn_imps.hpp -rw-r--r-- 1 root root 7945 May 8 2019 erase_fn_imps.hpp -rw-r--r-- 1 root root 7875 May 8 2019 find_fn_imps.hpp -rw-r--r-- 1 root root 2056 May 8 2019 info_fn_imps.hpp -rw-r--r-- 1 root root 14475 May 8 2019 insert_join_fn_imps.hpp -rw-r--r-- 1 root root 3480 May 8 2019 iterators_fn_imps.hpp -rw-r--r-- 1 root root 37633 May 8 2019 pat_trie_base.hpp -rw-r--r-- 1 root root 16869 May 8 2019 pat_trie_.hpp -rw-r--r-- 1 root root 2215 May 8 2019 policy_access_fn_imps.hpp -rw-r--r-- 1 root root 2920 May 8 2019 r_erase_fn_imps.hpp -rw-r--r-- 1 root root 4330 May 8 2019 rotate_fn_imps.hpp -rw-r--r-- 1 root root 7725 May 8 2019 split_fn_imps.hpp -rw-r--r-- 1 root root 6718 May 8 2019 synth_access_traits.hpp -rw-r--r-- 1 root root 3401 May 8 2019 trace_fn_imps.hpp -rw-r--r-- 1 root root 6305 May 8 2019 traits.hpp -rw-r--r-- 1 root root 2042 May 8 2019 update_fn_imps.hpp /usr/include/c++/7/ext/pb_ds/detail/rb_tree_map_: total 60 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 25 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 2783 May 8 2019 constructors_destructor_fn_imps.hpp -rw-r--r-- 1 root root 2761 May 8 2019 debug_fn_imps.hpp -rw-r--r-- 1 root root 7051 May 8 2019 erase_fn_imps.hpp -rw-r--r-- 1 root root 1703 May 8 2019 find_fn_imps.hpp -rw-r--r-- 1 root root 1841 May 8 2019 info_fn_imps.hpp -rw-r--r-- 1 root root 3867 May 8 2019 insert_fn_imps.hpp -rw-r--r-- 1 root root 3870 May 8 2019 node.hpp -rw-r--r-- 1 root root 7962 May 8 2019 rb_tree_.hpp -rw-r--r-- 1 root root 7861 May 8 2019 split_join_fn_imps.hpp -rw-r--r-- 1 root root 3283 May 8 2019 traits.hpp /usr/include/c++/7/ext/pb_ds/detail/rc_binomial_heap_: total 52 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 25 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 2467 May 8 2019 constructors_destructor_fn_imps.hpp -rw-r--r-- 1 root root 3538 May 8 2019 debug_fn_imps.hpp -rw-r--r-- 1 root root 2889 May 8 2019 erase_fn_imps.hpp -rw-r--r-- 1 root root 4237 May 8 2019 insert_fn_imps.hpp -rw-r--r-- 1 root root 5303 May 8 2019 rc_binomial_heap_.hpp -rw-r--r-- 1 root root 6265 May 8 2019 rc.hpp -rw-r--r-- 1 root root 2418 May 8 2019 split_join_fn_imps.hpp -rw-r--r-- 1 root root 1904 May 8 2019 trace_fn_imps.hpp /usr/include/c++/7/ext/pb_ds/detail/resize_policy: total 60 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 25 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 4899 May 8 2019 cc_hash_max_collision_check_resize_trigger_imp.hpp -rw-r--r-- 1 root root 2772 May 8 2019 hash_exponential_size_policy_imp.hpp -rw-r--r-- 1 root root 7752 May 8 2019 hash_load_check_resize_trigger_imp.hpp -rw-r--r-- 1 root root 2970 May 8 2019 hash_load_check_resize_trigger_size_base.hpp -rw-r--r-- 1 root root 6139 May 8 2019 hash_prime_size_policy_imp.hpp -rw-r--r-- 1 root root 6283 May 8 2019 hash_standard_resize_policy_imp.hpp -rw-r--r-- 1 root root 3578 May 8 2019 sample_resize_policy.hpp -rw-r--r-- 1 root root 3914 May 8 2019 sample_resize_trigger.hpp -rw-r--r-- 1 root root 2427 May 8 2019 sample_size_policy.hpp /usr/include/c++/7/ext/pb_ds/detail/splay_tree_: total 68 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 25 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 2847 May 8 2019 constructors_destructor_fn_imps.hpp -rw-r--r-- 1 root root 2463 May 8 2019 debug_fn_imps.hpp -rw-r--r-- 1 root root 4269 May 8 2019 erase_fn_imps.hpp -rw-r--r-- 1 root root 3319 May 8 2019 find_fn_imps.hpp -rw-r--r-- 1 root root 1689 May 8 2019 info_fn_imps.hpp -rw-r--r-- 1 root root 3353 May 8 2019 insert_fn_imps.hpp -rw-r--r-- 1 root root 3744 May 8 2019 node.hpp -rw-r--r-- 1 root root 8049 May 8 2019 splay_fn_imps.hpp -rw-r--r-- 1 root root 9307 May 8 2019 splay_tree_.hpp -rw-r--r-- 1 root root 3634 May 8 2019 split_join_fn_imps.hpp -rw-r--r-- 1 root root 3351 May 8 2019 traits.hpp /usr/include/c++/7/ext/pb_ds/detail/thin_heap_: total 56 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 25 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 2946 May 8 2019 constructors_destructor_fn_imps.hpp -rw-r--r-- 1 root root 3866 May 8 2019 debug_fn_imps.hpp -rw-r--r-- 1 root root 6055 May 8 2019 erase_fn_imps.hpp -rw-r--r-- 1 root root 1952 May 8 2019 find_fn_imps.hpp -rw-r--r-- 1 root root 7483 May 8 2019 insert_fn_imps.hpp -rw-r--r-- 1 root root 3155 May 8 2019 split_join_fn_imps.hpp -rw-r--r-- 1 root root 8404 May 8 2019 thin_heap_.hpp -rw-r--r-- 1 root root 1962 May 8 2019 trace_fn_imps.hpp /usr/include/c++/7/ext/pb_ds/detail/tree_policy: total 20 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 25 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 3338 May 8 2019 node_metadata_selector.hpp -rw-r--r-- 1 root root 3723 May 8 2019 order_statistics_imp.hpp -rw-r--r-- 1 root root 2346 May 8 2019 sample_tree_node_update.hpp /usr/include/c++/7/ext/pb_ds/detail/trie_policy: total 48 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 25 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 3338 May 8 2019 node_metadata_selector.hpp -rw-r--r-- 1 root root 4701 May 8 2019 order_statistics_imp.hpp -rw-r--r-- 1 root root 4511 May 8 2019 prefix_search_node_update_imp.hpp -rw-r--r-- 1 root root 2713 May 8 2019 sample_trie_access_traits.hpp -rw-r--r-- 1 root root 2348 May 8 2019 sample_trie_node_update.hpp -rw-r--r-- 1 root root 5847 May 8 2019 trie_policy_base.hpp -rw-r--r-- 1 root root 3051 May 8 2019 trie_string_access_traits_imp.hpp /usr/include/c++/7/ext/pb_ds/detail/unordered_iterator: total 24 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 25 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 3345 May 8 2019 const_iterator.hpp -rw-r--r-- 1 root root 3797 May 8 2019 iterator.hpp -rw-r--r-- 1 root root 3806 May 8 2019 point_const_iterator.hpp -rw-r--r-- 1 root root 3574 May 8 2019 point_iterator.hpp /usr/include/c++/7/parallel: total 616 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 12 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 17155 May 8 2019 algobase.h -rw-r--r-- 1 root root 80030 May 8 2019 algo.h -rw-r--r-- 1 root root 1381 May 8 2019 algorithm -rw-r--r-- 1 root root 32206 May 8 2019 algorithmfwd.h -rw-r--r-- 1 root root 16952 May 8 2019 balanced_quicksort.h -rw-r--r-- 1 root root 12373 May 8 2019 base.h -rw-r--r-- 1 root root 1586 May 8 2019 basic_iterator.h -rw-r--r-- 1 root root 2300 May 8 2019 checkers.h -rw-r--r-- 1 root root 3790 May 8 2019 compatibility.h -rw-r--r-- 1 root root 2871 May 8 2019 compiletime_settings.h -rw-r--r-- 1 root root 3356 May 8 2019 equally_split.h -rw-r--r-- 1 root root 3543 May 8 2019 features.h -rw-r--r-- 1 root root 13591 May 8 2019 find.h -rw-r--r-- 1 root root 6992 May 8 2019 find_selectors.h -rw-r--r-- 1 root root 3947 May 8 2019 for_each.h -rw-r--r-- 1 root root 10565 May 8 2019 for_each_selectors.h -rw-r--r-- 1 root root 5678 May 8 2019 iterator.h -rw-r--r-- 1 root root 6542 May 8 2019 list_partition.h -rw-r--r-- 1 root root 28592 May 8 2019 losertree.h -rw-r--r-- 1 root root 9578 May 8 2019 merge.h -rw-r--r-- 1 root root 22075 May 8 2019 multiseq_selection.h -rw-r--r-- 1 root root 70535 May 8 2019 multiway_merge.h -rw-r--r-- 1 root root 15271 May 8 2019 multiway_mergesort.h -rw-r--r-- 1 root root 20717 May 8 2019 numeric -rw-r--r-- 1 root root 7500 May 8 2019 numericfwd.h -rw-r--r-- 1 root root 4031 May 8 2019 omp_loop.h -rw-r--r-- 1 root root 4104 May 8 2019 omp_loop_static.h -rw-r--r-- 1 root root 1576 May 8 2019 parallel.h -rw-r--r-- 1 root root 4552 May 8 2019 par_loop.h -rw-r--r-- 1 root root 7474 May 8 2019 partial_sum.h -rw-r--r-- 1 root root 14961 May 8 2019 partition.h -rw-r--r-- 1 root root 5542 May 8 2019 queue.h -rw-r--r-- 1 root root 6126 May 8 2019 quicksort.h -rw-r--r-- 1 root root 4227 May 8 2019 random_number.h -rw-r--r-- 1 root root 18675 May 8 2019 random_shuffle.h -rw-r--r-- 1 root root 5391 May 8 2019 search.h -rw-r--r-- 1 root root 14590 May 8 2019 set_operations.h -rw-r--r-- 1 root root 12458 May 8 2019 settings.h -rw-r--r-- 1 root root 7709 May 8 2019 sort.h -rw-r--r-- 1 root root 5982 May 8 2019 tags.h -rw-r--r-- 1 root root 3716 May 8 2019 types.h -rw-r--r-- 1 root root 6165 May 8 2019 unique_copy.h -rw-r--r-- 1 root root 9612 May 8 2019 workstealing.h /usr/include/c++/7/profile: total 240 drwxr-xr-x 3 root root 4096 Oct 18 00:14 . drwxr-xr-x 12 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 8796 May 8 2019 array -rw-r--r-- 1 root root 1709 May 8 2019 base.h -rw-r--r-- 1 root root 6607 May 8 2019 bitset -rw-r--r-- 1 root root 5273 May 8 2019 deque -rw-r--r-- 1 root root 6390 May 8 2019 forward_list drwxr-xr-x 2 root root 4096 Oct 18 00:14 impl -rw-r--r-- 1 root root 9554 May 8 2019 iterator_tracker.h -rw-r--r-- 1 root root 16862 May 8 2019 list -rw-r--r-- 1 root root 1246 May 8 2019 map -rw-r--r-- 1 root root 20100 May 8 2019 map.h -rw-r--r-- 1 root root 19334 May 8 2019 multimap.h -rw-r--r-- 1 root root 18913 May 8 2019 multiset.h -rw-r--r-- 1 root root 2776 May 8 2019 ordered_base.h -rw-r--r-- 1 root root 1246 May 8 2019 set -rw-r--r-- 1 root root 18121 May 8 2019 set.h -rw-r--r-- 1 root root 9116 May 8 2019 unordered_base.h -rw-r--r-- 1 root root 17544 May 8 2019 unordered_map -rw-r--r-- 1 root root 16291 May 8 2019 unordered_set -rw-r--r-- 1 root root 15882 May 8 2019 vector /usr/include/c++/7/profile/impl: total 116 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 3 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 3429 May 8 2019 profiler_algos.h -rw-r--r-- 1 root root 5403 May 8 2019 profiler_container_size.h -rw-r--r-- 1 root root 13924 May 8 2019 profiler.h -rw-r--r-- 1 root root 4412 May 8 2019 profiler_hash_func.h -rw-r--r-- 1 root root 2982 May 8 2019 profiler_hashtable_size.h -rw-r--r-- 1 root root 4438 May 8 2019 profiler_list_to_slist.h -rw-r--r-- 1 root root 6843 May 8 2019 profiler_list_to_vector.h -rw-r--r-- 1 root root 7081 May 8 2019 profiler_map_to_unordered_map.h -rw-r--r-- 1 root root 3801 May 8 2019 profiler_node.h -rw-r--r-- 1 root root 2004 May 8 2019 profiler_state.h -rw-r--r-- 1 root root 20875 May 8 2019 profiler_trace.h -rw-r--r-- 1 root root 2928 May 8 2019 profiler_vector_size.h -rw-r--r-- 1 root root 6877 May 8 2019 profiler_vector_to_list.h /usr/include/c++/7/tr1: total 868 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 12 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 6964 May 8 2019 array -rw-r--r-- 1 root root 22477 May 8 2019 bessel_function.tcc -rw-r--r-- 1 root root 5999 May 8 2019 beta_function.tcc -rw-r--r-- 1 root root 1255 May 8 2019 ccomplex -rw-r--r-- 1 root root 1412 May 8 2019 cctype -rw-r--r-- 1 root root 2004 May 8 2019 cfenv -rw-r--r-- 1 root root 1380 May 8 2019 cfloat -rw-r--r-- 1 root root 2256 May 8 2019 cinttypes -rw-r--r-- 1 root root 1454 May 8 2019 climits -rw-r--r-- 1 root root 43357 May 8 2019 cmath -rw-r--r-- 1 root root 12384 May 8 2019 complex -rw-r--r-- 1 root root 1261 May 8 2019 complex.h -rw-r--r-- 1 root root 1246 May 8 2019 cstdarg -rw-r--r-- 1 root root 1344 May 8 2019 cstdbool -rw-r--r-- 1 root root 2623 May 8 2019 cstdint -rw-r--r-- 1 root root 1482 May 8 2019 cstdio -rw-r--r-- 1 root root 1796 May 8 2019 cstdlib -rw-r--r-- 1 root root 1248 May 8 2019 ctgmath -rw-r--r-- 1 root root 1234 May 8 2019 ctime -rw-r--r-- 1 root root 1209 May 8 2019 ctype.h -rw-r--r-- 1 root root 1718 May 8 2019 cwchar -rw-r--r-- 1 root root 1459 May 8 2019 cwctype -rw-r--r-- 1 root root 27728 May 8 2019 ell_integral.tcc -rw-r--r-- 1 root root 16013 May 8 2019 exp_integral.tcc -rw-r--r-- 1 root root 1204 May 8 2019 fenv.h -rw-r--r-- 1 root root 1209 May 8 2019 float.h -rw-r--r-- 1 root root 70799 May 8 2019 functional -rw-r--r-- 1 root root 6043 May 8 2019 functional_hash.h -rw-r--r-- 1 root root 14686 May 8 2019 gamma.tcc -rw-r--r-- 1 root root 41537 May 8 2019 hashtable.h -rw-r--r-- 1 root root 25085 May 8 2019 hashtable_policy.h -rw-r--r-- 1 root root 28070 May 8 2019 hypergeometric.tcc -rw-r--r-- 1 root root 1267 May 8 2019 inttypes.h -rw-r--r-- 1 root root 10913 May 8 2019 legendre_function.tcc -rw-r--r-- 1 root root 1214 May 8 2019 limits.h -rw-r--r-- 1 root root 4553 May 8 2019 math.h -rw-r--r-- 1 root root 1791 May 8 2019 memory -rw-r--r-- 1 root root 15926 May 8 2019 modified_bessel_func.tcc -rw-r--r-- 1 root root 3929 May 8 2019 poly_hermite.tcc -rw-r--r-- 1 root root 11680 May 8 2019 poly_laguerre.tcc -rw-r--r-- 1 root root 1589 May 8 2019 random -rw-r--r-- 1 root root 73193 May 8 2019 random.h -rw-r--r-- 1 root root 53996 May 8 2019 random.tcc -rw-r--r-- 1 root root 92945 May 8 2019 regex -rw-r--r-- 1 root root 14067 May 8 2019 riemann_zeta.tcc -rw-r--r-- 1 root root 32608 May 8 2019 shared_ptr.h -rw-r--r-- 1 root root 5059 May 8 2019 special_function_util.h -rw-r--r-- 1 root root 1214 May 8 2019 stdarg.h -rw-r--r-- 1 root root 1219 May 8 2019 stdbool.h -rw-r--r-- 1 root root 1214 May 8 2019 stdint.h -rw-r--r-- 1 root root 1209 May 8 2019 stdio.h -rw-r--r-- 1 root root 1487 May 8 2019 stdlib.h -rw-r--r-- 1 root root 1255 May 8 2019 tgmath.h -rw-r--r-- 1 root root 12119 May 8 2019 tuple -rw-r--r-- 1 root root 19019 May 8 2019 type_traits -rw-r--r-- 1 root root 1574 May 8 2019 unordered_map -rw-r--r-- 1 root root 10216 May 8 2019 unordered_map.h -rw-r--r-- 1 root root 1574 May 8 2019 unordered_set -rw-r--r-- 1 root root 9540 May 8 2019 unordered_set.h -rw-r--r-- 1 root root 3225 May 8 2019 utility -rw-r--r-- 1 root root 1249 May 8 2019 wchar.h -rw-r--r-- 1 root root 1255 May 8 2019 wctype.h /usr/include/c++/7/tr2: total 84 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 12 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 7370 May 8 2019 bool_set -rw-r--r-- 1 root root 8319 May 8 2019 bool_set.tcc -rw-r--r-- 1 root root 34144 May 8 2019 dynamic_bitset -rw-r--r-- 1 root root 8925 May 8 2019 dynamic_bitset.tcc -rw-r--r-- 1 root root 2130 May 8 2019 ratio -rw-r--r-- 1 root root 2699 May 8 2019 type_traits /usr/include/drm: total 400 drwxr-xr-x 2 root root 4096 Feb 5 06:03 . drwxr-xr-x 34 root root 4096 Feb 5 06:03 .. -rw-r--r-- 1 root root 26729 Jan 17 13:59 amdgpu_drm.h -rw-r--r-- 1 root root 1212 Jan 17 13:59 armada_drm.h -rw-r--r-- 1 root root 18067 Jan 17 13:59 drm_fourcc.h -rw-r--r-- 1 root root 30656 Jan 17 13:59 drm.h -rw-r--r-- 1 root root 22905 Jan 17 13:59 drm_mode.h -rw-r--r-- 1 root root 2782 Jan 17 13:59 drm_sarea.h -rw-r--r-- 1 root root 11005 Jan 17 13:59 etnaviv_drm.h -rw-r--r-- 1 root root 8954 Jan 17 13:59 exynos_drm.h -rw-r--r-- 1 root root 10061 Jan 17 13:59 i810_drm.h -rw-r--r-- 1 root root 50833 Jan 17 13:59 i915_drm.h -rw-r--r-- 1 root root 13010 Jan 17 13:59 mga_drm.h -rw-r--r-- 1 root root 11997 Jan 17 13:59 msm_drm.h -rw-r--r-- 1 root root 4847 Jan 17 13:59 nouveau_drm.h -rw-r--r-- 1 root root 4141 Jan 17 13:59 omap_drm.h -rw-r--r-- 1 root root 4131 Jan 17 13:59 qxl_drm.h -rw-r--r-- 1 root root 10000 Jan 17 13:59 r128_drm.h -rw-r--r-- 1 root root 38236 Jan 17 13:59 radeon_drm.h -rw-r--r-- 1 root root 7170 Jan 17 13:59 savage_drm.h -rw-r--r-- 1 root root 2637 Jan 17 13:59 sis_drm.h -rw-r--r-- 1 root root 5597 Jan 17 13:59 tegra_drm.h -rw-r--r-- 1 root root 11472 Jan 17 13:59 vc4_drm.h -rw-r--r-- 1 root root 1971 Jan 17 13:59 vgem_drm.h -rw-r--r-- 1 root root 8345 Jan 17 13:59 via_drm.h -rw-r--r-- 1 root root 4777 Jan 17 13:59 virtgpu_drm.h -rw-r--r-- 1 root root 32084 Jan 17 13:59 vmwgfx_drm.h /usr/include/linux: total 4216 drwxr-xr-x 28 root root 69632 Feb 5 06:03 . drwxr-xr-x 34 root root 4096 Feb 5 06:03 .. -rw-r--r-- 1 root root 3733 Jan 17 13:59 acct.h -rw-r--r-- 1 root root 1140 Jan 17 13:59 adb.h -rw-r--r-- 1 root root 936 Jan 17 13:59 adfs_fs.h -rw-r--r-- 1 root root 1544 Jan 17 13:59 affs_hardblocks.h -rw-r--r-- 1 root root 3940 Jan 17 13:59 agpgart.h -rw-r--r-- 1 root root 3276 Jan 17 13:59 aio_abi.h -rw-r--r-- 1 root root 3681 Jan 17 13:59 am437x-vpfe.h drwxr-xr-x 2 root root 4096 Feb 5 06:03 android -rw-r--r-- 1 root root 6892 Jan 17 13:59 a.out.h -rw-r--r-- 1 root root 3683 Jan 17 13:59 apm_bios.h -rw-r--r-- 1 root root 213 Jan 17 13:59 arcfb.h -rw-r--r-- 1 root root 2751 Jan 17 13:59 arm_sdei.h -rw-r--r-- 1 root root 1780 Jan 17 13:59 aspeed-lpc-ctrl.h -rw-r--r-- 1 root root 1023 Jan 17 13:59 atalk.h -rw-r--r-- 1 root root 952 Jan 17 13:59 atmapi.h -rw-r--r-- 1 root root 1296 Jan 17 13:59 atmarp.h -rw-r--r-- 1 root root 3271 Jan 17 13:59 atmbr2684.h -rw-r--r-- 1 root root 576 Jan 17 13:59 atmclip.h -rw-r--r-- 1 root root 7677 Jan 17 13:59 atmdev.h -rw-r--r-- 1 root root 648 Jan 17 13:59 atm_eni.h -rw-r--r-- 1 root root 7888 Jan 17 13:59 atm.h -rw-r--r-- 1 root root 406 Jan 17 13:59 atm_he.h -rw-r--r-- 1 root root 955 Jan 17 13:59 atm_idt77105.h -rw-r--r-- 1 root root 1646 Jan 17 13:59 atmioc.h -rw-r--r-- 1 root root 2381 Jan 17 13:59 atmlec.h -rw-r--r-- 1 root root 4226 Jan 17 13:59 atmmpc.h -rw-r--r-- 1 root root 1278 Jan 17 13:59 atm_nicstar.h -rw-r--r-- 1 root root 639 Jan 17 13:59 atmppp.h -rw-r--r-- 1 root root 4970 Jan 17 13:59 atmsap.h -rw-r--r-- 1 root root 1853 Jan 17 13:59 atmsvc.h -rw-r--r-- 1 root root 1622 Jan 17 13:59 atm_tcp.h -rw-r--r-- 1 root root 1540 Jan 17 13:59 atm_zatm.h -rw-r--r-- 1 root root 19552 Jan 17 13:59 audit.h -rw-r--r-- 1 root root 11370 Jan 17 13:59 aufs_type.h -rw-r--r-- 1 root root 4986 Jan 17 13:59 auto_dev-ioctl.h -rw-r--r-- 1 root root 4275 Jan 17 13:59 auto_fs4.h -rw-r--r-- 1 root root 2658 Jan 17 13:59 auto_fs.h -rw-r--r-- 1 root root 1496 Jan 17 13:59 auxvec.h -rw-r--r-- 1 root root 2824 Jan 17 13:59 ax25.h -rw-r--r-- 1 root root 1717 Jan 17 13:59 b1lli.h -rw-r--r-- 1 root root 9447 Jan 17 13:59 batman_adv.h -rw-r--r-- 1 root root 883 Jan 17 13:59 baycom.h -rw-r--r-- 1 root root 8366 Jan 17 13:59 bcache.h -rw-r--r-- 1 root root 419 Jan 17 13:59 bcm933xx_hcs.h -rw-r--r-- 1 root root 1893 Jan 17 13:59 bfs_fs.h -rw-r--r-- 1 root root 628 Jan 17 13:59 binfmts.h -rw-r--r-- 1 root root 1634 Jan 17 13:59 blkpg.h -rw-r--r-- 1 root root 4702 Jan 17 13:59 blktrace_api.h -rw-r--r-- 1 root root 5168 Jan 17 13:59 blkzoned.h -rw-r--r-- 1 root root 1293 Jan 17 13:59 bpf_common.h -rw-r--r-- 1 root root 31050 Jan 17 13:59 bpf.h -rw-r--r-- 1 root root 516 Jan 17 13:59 bpf_perf_event.h -rw-r--r-- 1 root root 981 Jan 17 13:59 bpqether.h -rw-r--r-- 1 root root 2494 Jan 17 13:59 bsg.h -rw-r--r-- 1 root root 572 Jan 17 13:59 bt-bmc.h -rw-r--r-- 1 root root 26368 Jan 17 13:59 btrfs.h -rw-r--r-- 1 root root 25233 Jan 17 13:59 btrfs_tree.h drwxr-xr-x 2 root root 4096 Feb 5 06:03 byteorder drwxr-xr-x 2 root root 4096 Feb 5 06:03 caif drwxr-xr-x 2 root root 4096 Feb 5 06:03 can -rw-r--r-- 1 root root 7881 Jan 17 13:59 can.h -rw-r--r-- 1 root root 11780 Jan 17 13:59 capability.h -rw-r--r-- 1 root root 3124 Jan 17 13:59 capi.h -rw-r--r-- 1 root root 3281 Jan 17 13:59 cciss_defs.h -rw-r--r-- 1 root root 2761 Jan 17 13:59 cciss_ioctl.h -rw-r--r-- 1 root root 28859 Jan 17 13:59 cdrom.h -rw-r--r-- 1 root root 55019 Jan 17 13:59 cec-funcs.h -rw-r--r-- 1 root root 37654 Jan 17 13:59 cec.h -rw-r--r-- 1 root root 2219 Jan 17 13:59 cgroupstats.h -rw-r--r-- 1 root root 5344 Jan 17 13:59 chio.h drwxr-xr-x 2 root root 4096 Feb 5 06:03 cifs -rw-r--r-- 1 root root 1806 Jan 17 13:59 cm4000_cs.h -rw-r--r-- 1 root root 3334 Jan 17 13:59 cn_proc.h -rw-r--r-- 1 root root 17505 Jan 17 13:59 coda.h -rw-r--r-- 1 root root 360 Jan 17 13:59 coda_psdev.h -rw-r--r-- 1 root root 12476 Jan 17 13:59 coff.h -rw-r--r-- 1 root root 2253 Jan 17 13:59 connector.h -rw-r--r-- 1 root root 736 Jan 17 13:59 const.h -rw-r--r-- 1 root root 674 Jan 17 13:59 coresight-stm.h -rw-r--r-- 1 root root 3555 Jan 17 13:59 cramfs_fs.h -rw-r--r-- 1 root root 3392 Jan 17 13:59 cryptouser.h -rw-r--r-- 1 root root 905 Jan 17 13:59 cuda.h -rw-r--r-- 1 root root 17108 Jan 17 13:59 cyclades.h -rw-r--r-- 1 root root 2990 Jan 17 13:59 cycx_cfm.h -rw-r--r-- 1 root root 24954 Jan 17 13:59 dcbnl.h -rw-r--r-- 1 root root 6436 Jan 17 13:59 dccp.h -rw-r--r-- 1 root root 7324 Jan 17 13:59 devlink.h -rw-r--r-- 1 root root 5080 Jan 17 13:59 dlmconstants.h -rw-r--r-- 1 root root 2543 Jan 17 13:59 dlm_device.h -rw-r--r-- 1 root root 2553 Jan 17 13:59 dlm.h -rw-r--r-- 1 root root 1159 Jan 17 13:59 dlm_netlink.h -rw-r--r-- 1 root root 894 Jan 17 13:59 dlm_plock.h -rw-r--r-- 1 root root 1358 Jan 17 13:59 dma-buf.h -rw-r--r-- 1 root root 10870 Jan 17 13:59 dm-ioctl.h -rw-r--r-- 1 root root 15191 Jan 17 13:59 dm-log-userspace.h -rw-r--r-- 1 root root 4642 Jan 17 13:59 dn.h -rw-r--r-- 1 root root 8999 Jan 17 13:59 dqblk_xfs.h drwxr-xr-x 2 root root 4096 Feb 5 06:03 dvb -rw-r--r-- 1 root root 5604 Jan 17 13:59 edd.h -rw-r--r-- 1 root root 2227 Jan 17 13:59 efs_fs_sb.h -rw-r--r-- 1 root root 2995 Jan 17 13:59 elfcore.h -rw-r--r-- 1 root root 2187 Jan 17 13:59 elf-em.h -rw-r--r-- 1 root root 1124 Jan 17 13:59 elf-fdpic.h -rw-r--r-- 1 root root 13298 Jan 17 13:59 elf.h -rw-r--r-- 1 root root 23 Jan 17 13:59 errno.h -rw-r--r-- 1 root root 1369 Jan 17 13:59 errqueue.h -rw-r--r-- 1 root root 71485 Jan 17 13:59 ethtool.h -rw-r--r-- 1 root root 2542 Jan 17 13:59 eventpoll.h -rw-r--r-- 1 root root 842 Jan 17 13:59 fadvise.h -rw-r--r-- 1 root root 3584 Jan 17 13:59 falloc.h -rw-r--r-- 1 root root 3672 Jan 17 13:59 fanotify.h -rw-r--r-- 1 root root 16446 Jan 17 13:59 fb.h -rw-r--r-- 1 root root 3297 Jan 17 13:59 fcntl.h -rw-r--r-- 1 root root 11672 Jan 17 13:59 fd.h -rw-r--r-- 1 root root 5420 Jan 17 13:59 fdreg.h -rw-r--r-- 1 root root 1837 Jan 17 13:59 fib_rules.h -rw-r--r-- 1 root root 2775 Jan 17 13:59 fiemap.h -rw-r--r-- 1 root root 2216 Jan 17 13:59 filter.h -rw-r--r-- 1 root root 43886 Jan 17 13:59 firewire-cdev.h -rw-r--r-- 1 root root 3231 Jan 17 13:59 firewire-constants.h -rw-r--r-- 1 root root 2148 Jan 17 13:59 flat.h -rw-r--r-- 1 root root 694 Jan 17 13:59 fou.h -rw-r--r-- 1 root root 14818 Jan 17 13:59 fs.h -rw-r--r-- 1 root root 7301 Jan 17 13:59 fsl_hypervisor.h -rw-r--r-- 1 root root 4393 Jan 17 13:59 fsmap.h -rw-r--r-- 1 root root 17468 Jan 17 13:59 fuse.h -rw-r--r-- 1 root root 4993 Jan 17 13:59 futex.h -rw-r--r-- 1 root root 897 Jan 17 13:59 gameport.h -rw-r--r-- 1 root root 1923 Jan 17 13:59 genetlink.h -rw-r--r-- 1 root root 1578 Jan 17 13:59 gen_stats.h drwxr-xr-x 2 root root 4096 Feb 5 06:03 genwqe -rw-r--r-- 1 root root 12355 Jan 17 13:59 gfs2_ondisk.h -rw-r--r-- 1 root root 1442 Jan 17 13:59 gigaset_dev.h -rw-r--r-- 1 root root 5750 Jan 17 13:59 gpio.h -rw-r--r-- 1 root root 1041 Jan 17 13:59 gsmmux.h -rw-r--r-- 1 root root 681 Jan 17 13:59 gtp.h -rw-r--r-- 1 root root 921 Jan 17 13:59 hash_info.h drwxr-xr-x 2 root root 4096 Feb 5 06:03 hdlc -rw-r--r-- 1 root root 2908 Jan 17 13:59 hdlcdrv.h -rw-r--r-- 1 root root 637 Jan 17 13:59 hdlc.h -rw-r--r-- 1 root root 22703 Jan 17 13:59 hdreg.h -rw-r--r-- 1 root root 6345 Jan 17 13:59 hiddev.h -rw-r--r-- 1 root root 1901 Jan 17 13:59 hid.h -rw-r--r-- 1 root root 1511 Jan 17 13:59 hidraw.h -rw-r--r-- 1 root root 743 Jan 17 13:59 hpet.h drwxr-xr-x 2 root root 4096 Feb 5 06:03 hsi -rw-r--r-- 1 root root 1081 Jan 17 13:59 hsr_netlink.h -rw-r--r-- 1 root root 742 Jan 17 13:59 hw_breakpoint.h -rw-r--r-- 1 root root 10569 Jan 17 13:59 hyperv.h -rw-r--r-- 1 root root 1382 Jan 17 13:59 hysdn_if.h -rw-r--r-- 1 root root 2612 Jan 17 13:59 i2c-dev.h -rw-r--r-- 1 root root 7132 Jan 17 13:59 i2c.h -rw-r--r-- 1 root root 11555 Jan 17 13:59 i2o-dev.h -rw-r--r-- 1 root root 1528 Jan 17 13:59 i8k.h -rw-r--r-- 1 root root 2975 Jan 17 13:59 icmp.h -rw-r--r-- 1 root root 3977 Jan 17 13:59 icmpv6.h -rw-r--r-- 1 root root 1802 Jan 17 13:59 if_addr.h -rw-r--r-- 1 root root 721 Jan 17 13:59 if_addrlabel.h -rw-r--r-- 1 root root 946 Jan 17 13:59 if_alg.h -rw-r--r-- 1 root root 3717 Jan 17 13:59 if_arcnet.h -rw-r--r-- 1 root root 6577 Jan 17 13:59 if_arp.h -rw-r--r-- 1 root root 4268 Jan 17 13:59 if_bonding.h -rw-r--r-- 1 root root 6709 Jan 17 13:59 if_bridge.h -rw-r--r-- 1 root root 986 Jan 17 13:59 if_cablemodem.h -rw-r--r-- 1 root root 351 Jan 17 13:59 ife.h -rw-r--r-- 1 root root 1349 Jan 17 13:59 if_eql.h -rw-r--r-- 1 root root 7940 Jan 17 13:59 if_ether.h -rw-r--r-- 1 root root 1738 Jan 17 13:59 if_fc.h -rw-r--r-- 1 root root 3748 Jan 17 13:59 if_fddi.h -rw-r--r-- 1 root root 3019 Jan 17 13:59 if_frad.h -rw-r--r-- 1 root root 10813 Jan 17 13:59 if.h -rw-r--r-- 1 root root 4235 Jan 17 13:59 if_hippi.h -rw-r--r-- 1 root root 1245 Jan 17 13:59 if_infiniband.h -rw-r--r-- 1 root root 21954 Jan 17 13:59 if_link.h -rw-r--r-- 1 root root 210 Jan 17 13:59 if_ltalk.h -rw-r--r-- 1 root root 5616 Jan 17 13:59 if_macsec.h -rw-r--r-- 1 root root 7919 Jan 17 13:59 if_packet.h -rw-r--r-- 1 root root 424 Jan 17 13:59 if_phonet.h -rw-r--r-- 1 root root 660 Jan 17 13:59 if_plip.h -rw-r--r-- 1 root root 29 Jan 17 13:59 if_ppp.h -rw-r--r-- 1 root root 3292 Jan 17 13:59 if_pppol2tp.h -rw-r--r-- 1 root root 4879 Jan 17 13:59 if_pppox.h -rw-r--r-- 1 root root 872 Jan 17 13:59 if_slip.h -rw-r--r-- 1 root root 2600 Jan 17 13:59 if_team.h -rw-r--r-- 1 root root 3969 Jan 17 13:59 if_tun.h -rw-r--r-- 1 root root 4005 Jan 17 13:59 if_tunnel.h -rw-r--r-- 1 root root 1793 Jan 17 13:59 if_vlan.h -rw-r--r-- 1 root root 881 Jan 17 13:59 if_x25.h -rw-r--r-- 1 root root 3014 Jan 17 13:59 igmp.h drwxr-xr-x 2 root root 4096 Feb 5 06:03 iio -rw-r--r-- 1 root root 1230 Jan 17 13:59 ila.h -rw-r--r-- 1 root root 7438 Jan 17 13:59 in6.h -rw-r--r-- 1 root root 4330 Jan 17 13:59 inet_diag.h -rw-r--r-- 1 root root 9698 Jan 17 13:59 in.h -rw-r--r-- 1 root root 2977 Jan 17 13:59 inotify.h -rw-r--r-- 1 root root 24567 Jan 17 13:59 input-event-codes.h -rw-r--r-- 1 root root 15454 Jan 17 13:59 input.h -rw-r--r-- 1 root root 936 Jan 17 13:59 in_route.h -rw-r--r-- 1 root root 163 Jan 17 13:59 ioctl.h -rw-r--r-- 1 root root 1953 Jan 17 13:59 ip6_tunnel.h -rw-r--r-- 1 root root 2101 Jan 17 13:59 ipc.h -rw-r--r-- 1 root root 4699 Jan 17 13:59 ip.h -rw-r--r-- 1 root root 16240 Jan 17 13:59 ipmi.h -rw-r--r-- 1 root root 4541 Jan 17 13:59 ipmi_msgdefs.h -rw-r--r-- 1 root root 947 Jan 17 13:59 ipsec.h -rw-r--r-- 1 root root 3967 Jan 17 13:59 ipv6.h -rw-r--r-- 1 root root 1908 Jan 17 13:59 ipv6_route.h -rw-r--r-- 1 root root 13631 Jan 17 13:59 ip_vs.h -rw-r--r-- 1 root root 2347 Jan 17 13:59 ipx.h -rw-r--r-- 1 root root 7554 Jan 17 13:59 irda.h -rw-r--r-- 1 root root 104 Jan 17 13:59 irqnr.h drwxr-xr-x 2 root root 4096 Feb 5 06:03 isdn -rw-r--r-- 1 root root 1200 Jan 17 13:59 isdn_divertif.h -rw-r--r-- 1 root root 5774 Jan 17 13:59 isdn.h -rw-r--r-- 1 root root 2370 Jan 17 13:59 isdnif.h -rw-r--r-- 1 root root 1923 Jan 17 13:59 isdn_ppp.h -rw-r--r-- 1 root root 6485 Jan 17 13:59 iso_fs.h -rw-r--r-- 1 root root 1207 Jan 17 13:59 ivtvfb.h -rw-r--r-- 1 root root 3022 Jan 17 13:59 ivtv.h -rw-r--r-- 1 root root 25181 Jan 17 13:59 ixjuser.h -rw-r--r-- 1 root root 7018 Jan 17 13:59 jffs2.h -rw-r--r-- 1 root root 3645 Jan 17 13:59 joystick.h -rw-r--r-- 1 root root 822 Jan 17 13:59 kcm.h -rw-r--r-- 1 root root 522 Jan 17 13:59 kcmp.h -rw-r--r-- 1 root root 1099 Jan 17 13:59 kcov.h -rw-r--r-- 1 root root 383 Jan 17 13:59 kdev_t.h -rw-r--r-- 1 root root 6283 Jan 17 13:59 kd.h -rw-r--r-- 1 root root 1019 Jan 17 13:59 kernelcapi.h -rw-r--r-- 1 root root 438 Jan 17 13:59 kernel.h -rw-r--r-- 1 root root 877 Jan 17 13:59 kernel-page-flags.h -rw-r--r-- 1 root root 1835 Jan 17 13:59 kexec.h -rw-r--r-- 1 root root 12783 Jan 17 13:59 keyboard.h -rw-r--r-- 1 root root 3555 Jan 17 13:59 keyctl.h -rw-r--r-- 1 root root 9591 Jan 17 13:59 kfd_ioctl.h -rw-r--r-- 1 root root 41076 Jan 17 13:59 kvm.h -rw-r--r-- 1 root root 882 Jan 17 13:59 kvm_para.h -rw-r--r-- 1 root root 5635 Jan 17 13:59 l2tp.h -rw-r--r-- 1 root root 8289 Jan 17 13:59 libc-compat.h -rw-r--r-- 1 root root 4877 Jan 17 13:59 lightnvm.h -rw-r--r-- 1 root root 937 Jan 17 13:59 limits.h -rw-r--r-- 1 root root 5062 Jan 17 13:59 lirc.h -rw-r--r-- 1 root root 3164 Jan 17 13:59 llc.h -rw-r--r-- 1 root root 2520 Jan 17 13:59 loop.h -rw-r--r-- 1 root root 3875 Jan 17 13:59 lp.h -rw-r--r-- 1 root root 1273 Jan 17 13:59 lwtunnel.h -rw-r--r-- 1 root root 3401 Jan 17 13:59 magic.h -rw-r--r-- 1 root root 4713 Jan 17 13:59 major.h -rw-r--r-- 1 root root 7251 Jan 17 13:59 map_to_7segment.h -rw-r--r-- 1 root root 1464 Jan 17 13:59 matroxfb.h -rw-r--r-- 1 root root 1035 Jan 17 13:59 max2175.h -rw-r--r-- 1 root root 14131 Jan 17 13:59 mdio.h -rw-r--r-- 1 root root 6411 Jan 17 13:59 media-bus-format.h -rw-r--r-- 1 root root 12534 Jan 17 13:59 media.h -rw-r--r-- 1 root root 4815 Jan 17 13:59 mei.h -rw-r--r-- 1 root root 4221 Jan 17 13:59 membarrier.h -rw-r--r-- 1 root root 1228 Jan 17 13:59 memfd.h -rw-r--r-- 1 root root 2154 Jan 17 13:59 mempolicy.h -rw-r--r-- 1 root root 2529 Jan 17 13:59 meye.h -rw-r--r-- 1 root root 6519 Jan 17 13:59 mic_common.h -rw-r--r-- 1 root root 2252 Jan 17 13:59 mic_ioctl.h -rw-r--r-- 1 root root 8076 Jan 17 13:59 mii.h -rw-r--r-- 1 root root 2122 Jan 17 13:59 minix_fs.h -rw-r--r-- 1 root root 1242 Jan 17 13:59 mman.h drwxr-xr-x 2 root root 4096 Feb 5 06:03 mmc -rw-r--r-- 1 root root 2117 Jan 17 13:59 mmtimer.h -rw-r--r-- 1 root root 255 Jan 17 13:59 module.h -rw-r--r-- 1 root root 2302 Jan 17 13:59 mpls.h -rw-r--r-- 1 root root 761 Jan 17 13:59 mpls_iptunnel.h -rw-r--r-- 1 root root 2201 Jan 17 13:59 mqueue.h -rw-r--r-- 1 root root 4577 Jan 17 13:59 mroute6.h -rw-r--r-- 1 root root 5427 Jan 17 13:59 mroute.h -rw-r--r-- 1 root root 6936 Jan 17 13:59 msdos_fs.h -rw-r--r-- 1 root root 3350 Jan 17 13:59 msg.h -rw-r--r-- 1 root root 8175 Jan 17 13:59 mtio.h -rw-r--r-- 1 root root 3024 Jan 17 13:59 nbd.h -rw-r--r-- 1 root root 2378 Jan 17 13:59 nbd-netlink.h -rw-r--r-- 1 root root 3416 Jan 17 13:59 ncp_fs.h -rw-r--r-- 1 root root 5118 Jan 17 13:59 ncp.h -rw-r--r-- 1 root root 2174 Jan 17 13:59 ncp_mount.h -rw-r--r-- 1 root root 714 Jan 17 13:59 ncp_no.h -rw-r--r-- 1 root root 8142 Jan 17 13:59 ndctl.h -rw-r--r-- 1 root root 4340 Jan 17 13:59 neighbour.h -rw-r--r-- 1 root root 589 Jan 17 13:59 netconf.h -rw-r--r-- 1 root root 2253 Jan 17 13:59 netdevice.h -rw-r--r-- 1 root root 1154 Jan 17 13:59 net_dropmon.h drwxr-xr-x 3 root root 12288 Feb 5 06:03 netfilter drwxr-xr-x 2 root root 4096 Feb 5 06:03 netfilter_arp -rw-r--r-- 1 root root 444 Jan 17 13:59 netfilter_arp.h drwxr-xr-x 2 root root 4096 Feb 5 06:03 netfilter_bridge -rw-r--r-- 1 root root 901 Jan 17 13:59 netfilter_bridge.h -rw-r--r-- 1 root root 1935 Jan 17 13:59 netfilter_decnet.h -rw-r--r-- 1 root root 1820 Jan 17 13:59 netfilter.h drwxr-xr-x 2 root root 4096 Feb 5 06:03 netfilter_ipv4 -rw-r--r-- 1 root root 2132 Jan 17 13:59 netfilter_ipv4.h drwxr-xr-x 2 root root 4096 Feb 5 06:03 netfilter_ipv6 -rw-r--r-- 1 root root 2151 Jan 17 13:59 netfilter_ipv6.h -rw-r--r-- 1 root root 2085 Jan 17 13:59 net.h -rw-r--r-- 1 root root 1524 Jan 17 13:59 netlink_diag.h -rw-r--r-- 1 root root 7790 Jan 17 13:59 netlink.h -rw-r--r-- 1 root root 672 Jan 17 13:59 net_namespace.h -rw-r--r-- 1 root root 807 Jan 17 13:59 netrom.h -rw-r--r-- 1 root root 4435 Jan 17 13:59 net_tstamp.h -rw-r--r-- 1 root root 11209 Jan 17 13:59 nfc.h -rw-r--r-- 1 root root 1468 Jan 17 13:59 nfs2.h -rw-r--r-- 1 root root 2359 Jan 17 13:59 nfs3.h -rw-r--r-- 1 root root 6338 Jan 17 13:59 nfs4.h -rw-r--r-- 1 root root 1932 Jan 17 13:59 nfs4_mount.h -rw-r--r-- 1 root root 668 Jan 17 13:59 nfsacl.h drwxr-xr-x 2 root root 4096 Feb 5 06:03 nfsd -rw-r--r-- 1 root root 1608 Jan 17 13:59 nfs_fs.h -rw-r--r-- 1 root root 4472 Jan 17 13:59 nfs.h -rw-r--r-- 1 root root 2243 Jan 17 13:59 nfs_idmap.h -rw-r--r-- 1 root root 2438 Jan 17 13:59 nfs_mount.h -rw-r--r-- 1 root root 7589 Jan 17 13:59 nilfs2_api.h -rw-r--r-- 1 root root 18085 Jan 17 13:59 nilfs2_ondisk.h -rw-r--r-- 1 root root 234260 Jan 17 13:59 nl80211.h -rw-r--r-- 1 root root 2410 Jan 17 13:59 n_r3964.h -rw-r--r-- 1 root root 639 Jan 17 13:59 nsfs.h -rw-r--r-- 1 root root 8574 Jan 17 13:59 nubus.h -rw-r--r-- 1 root root 1648 Jan 17 13:59 nvme_ioctl.h -rw-r--r-- 1 root root 532 Jan 17 13:59 nvram.h -rw-r--r-- 1 root root 20740 Jan 17 13:59 omap3isp.h -rw-r--r-- 1 root root 5918 Jan 17 13:59 omapfb.h -rw-r--r-- 1 root root 511 Jan 17 13:59 oom.h -rw-r--r-- 1 root root 35305 Jan 17 13:59 openvswitch.h -rw-r--r-- 1 root root 1672 Jan 17 13:59 packet_diag.h -rw-r--r-- 1 root root 141 Jan 17 13:59 param.h -rw-r--r-- 1 root root 3644 Jan 17 13:59 parport.h -rw-r--r-- 1 root root 892 Jan 17 13:59 patchkey.h -rw-r--r-- 1 root root 1380 Jan 17 13:59 pci.h -rw-r--r-- 1 root root 54036 Jan 17 13:59 pci_regs.h -rw-r--r-- 1 root root 579 Jan 17 13:59 pcitest.h -rw-r--r-- 1 root root 31522 Jan 17 13:59 perf_event.h -rw-r--r-- 1 root root 2097 Jan 17 13:59 personality.h -rw-r--r-- 1 root root 10569 Jan 17 13:59 pfkeyv2.h -rw-r--r-- 1 root root 2346 Jan 17 13:59 pg.h -rw-r--r-- 1 root root 1654 Jan 17 13:59 phantom.h -rw-r--r-- 1 root root 4677 Jan 17 13:59 phonet.h -rw-r--r-- 1 root root 2687 Jan 17 13:59 pktcdvd.h -rw-r--r-- 1 root root 12006 Jan 17 13:59 pkt_cls.h -rw-r--r-- 1 root root 21365 Jan 17 13:59 pkt_sched.h -rw-r--r-- 1 root root 5319 Jan 17 13:59 pmu.h -rw-r--r-- 1 root root 22 Jan 17 13:59 poll.h -rw-r--r-- 1 root root 1254 Jan 17 13:59 posix_acl.h -rw-r--r-- 1 root root 1115 Jan 17 13:59 posix_acl_xattr.h -rw-r--r-- 1 root root 1098 Jan 17 13:59 posix_types.h -rw-r--r-- 1 root root 3211 Jan 17 13:59 ppdev.h -rw-r--r-- 1 root root 2527 Jan 17 13:59 ppp-comp.h -rw-r--r-- 1 root root 5107 Jan 17 13:59 ppp_defs.h -rw-r--r-- 1 root root 5480 Jan 17 13:59 ppp-ioctl.h -rw-r--r-- 1 root root 4734 Jan 17 13:59 pps.h -rw-r--r-- 1 root root 7919 Jan 17 13:59 prctl.h -rw-r--r-- 1 root root 1073 Jan 17 13:59 pr.h -rw-r--r-- 1 root root 798 Jan 17 13:59 psample.h -rw-r--r-- 1 root root 4055 Jan 17 13:59 psci.h -rw-r--r-- 1 root root 4868 Jan 17 13:59 ptp_clock.h -rw-r--r-- 1 root root 3337 Jan 17 13:59 ptrace.h -rw-r--r-- 1 root root 2328 Jan 17 13:59 qnx4_fs.h -rw-r--r-- 1 root root 624 Jan 17 13:59 qnxtypes.h -rw-r--r-- 1 root root 893 Jan 17 13:59 qrtr.h -rw-r--r-- 1 root root 6291 Jan 17 13:59 quota.h -rw-r--r-- 1 root root 360 Jan 17 13:59 radeonfb.h drwxr-xr-x 2 root root 4096 Feb 5 06:03 raid -rw-r--r-- 1 root root 1370 Jan 17 13:59 random.h -rw-r--r-- 1 root root 365 Jan 17 13:59 raw.h -rw-r--r-- 1 root root 9126 Jan 17 13:59 rds.h -rw-r--r-- 1 root root 1343 Jan 17 13:59 reboot.h -rw-r--r-- 1 root root 775 Jan 17 13:59 reiserfs_fs.h -rw-r--r-- 1 root root 533 Jan 17 13:59 reiserfs_xattr.h -rw-r--r-- 1 root root 2347 Jan 17 13:59 resource.h -rw-r--r-- 1 root root 3682 Jan 17 13:59 rfkill.h -rw-r--r-- 1 root root 3248 Jan 17 13:59 rio_cm_cdev.h -rw-r--r-- 1 root root 9330 Jan 17 13:59 rio_mport_cdev.h -rw-r--r-- 1 root root 1238 Jan 17 13:59 romfs_fs.h -rw-r--r-- 1 root root 2232 Jan 17 13:59 rose.h -rw-r--r-- 1 root root 2332 Jan 17 13:59 route.h -rw-r--r-- 1 root root 1002 Jan 17 13:59 rpmsg.h -rw-r--r-- 1 root root 4009 Jan 17 13:59 rtc.h -rw-r--r-- 1 root root 17991 Jan 17 13:59 rtnetlink.h -rw-r--r-- 1 root root 5080 Jan 17 13:59 rxrpc.h -rw-r--r-- 1 root root 4597 Jan 17 13:59 scc.h drwxr-xr-x 2 root root 4096 Feb 5 06:03 sched -rw-r--r-- 1 root root 2341 Jan 17 13:59 sched.h -rw-r--r-- 1 root root 6382 Jan 17 13:59 scif_ioctl.h -rw-r--r-- 1 root root 2479 Jan 17 13:59 screen_info.h -rw-r--r-- 1 root root 32735 Jan 17 13:59 sctp.h -rw-r--r-- 1 root root 2839 Jan 17 13:59 sdla.h -rw-r--r-- 1 root root 2257 Jan 17 13:59 seccomp.h -rw-r--r-- 1 root root 2704 Jan 17 13:59 securebits.h -rw-r--r-- 1 root root 3275 Jan 17 13:59 sed-opal.h -rw-r--r-- 1 root root 589 Jan 17 13:59 seg6_genl.h -rw-r--r-- 1 root root 1170 Jan 17 13:59 seg6.h -rw-r--r-- 1 root root 423 Jan 17 13:59 seg6_hmac.h -rw-r--r-- 1 root root 927 Jan 17 13:59 seg6_iptunnel.h -rw-r--r-- 1 root root 1803 Jan 17 13:59 seg6_local.h -rw-r--r-- 1 root root 1195 Jan 17 13:59 selinux_netlink.h -rw-r--r-- 1 root root 3019 Jan 17 13:59 sem.h -rw-r--r-- 1 root root 6245 Jan 17 13:59 serial_core.h -rw-r--r-- 1 root root 3421 Jan 17 13:59 serial.h -rw-r--r-- 1 root root 15496 Jan 17 13:59 serial_reg.h -rw-r--r-- 1 root root 2037 Jan 17 13:59 serio.h -rw-r--r-- 1 root root 3664 Jan 17 13:59 shm.h -rw-r--r-- 1 root root 1159 Jan 17 13:59 signalfd.h -rw-r--r-- 1 root root 388 Jan 17 13:59 signal.h -rw-r--r-- 1 root root 2268 Jan 17 13:59 smc_diag.h -rw-r--r-- 1 root root 780 Jan 17 13:59 smc.h -rw-r--r-- 1 root root 1058 Jan 17 13:59 smiapp.h -rw-r--r-- 1 root root 12642 Jan 17 13:59 snmp.h -rw-r--r-- 1 root root 727 Jan 17 13:59 sock_diag.h -rw-r--r-- 1 root root 801 Jan 17 13:59 socket.h -rw-r--r-- 1 root root 6106 Jan 17 13:59 sockios.h -rw-r--r-- 1 root root 2290 Jan 17 13:59 sonet.h -rw-r--r-- 1 root root 5309 Jan 17 13:59 sonypi.h -rw-r--r-- 1 root root 46038 Jan 17 13:59 soundcard.h -rw-r--r-- 1 root root 1237 Jan 17 13:59 sound.h drwxr-xr-x 2 root root 4096 Feb 5 06:03 spi -rw-r--r-- 1 root root 6100 Jan 17 13:59 stat.h -rw-r--r-- 1 root root 131 Jan 17 13:59 stddef.h -rw-r--r-- 1 root root 1616 Jan 17 13:59 stm.h -rw-r--r-- 1 root root 238 Jan 17 13:59 string.h drwxr-xr-x 2 root root 4096 Feb 5 06:03 sunrpc -rw-r--r-- 1 root root 1431 Jan 17 13:59 suspend_ioctls.h -rw-r--r-- 1 root root 6711 Jan 17 13:59 swab.h -rw-r--r-- 1 root root 4465 Jan 17 13:59 switchtec_ioctl.h -rw-r--r-- 1 root root 2883 Jan 17 13:59 sync_file.h -rw-r--r-- 1 root root 8985 Jan 17 13:59 synclink.h -rw-r--r-- 1 root root 26188 Jan 17 13:59 sysctl.h -rw-r--r-- 1 root root 1049 Jan 17 13:59 sysinfo.h -rw-r--r-- 1 root root 3768 Jan 17 13:59 target_core_user.h -rw-r--r-- 1 root root 7057 Jan 17 13:59 taskstats.h drwxr-xr-x 2 root root 4096 Feb 5 06:03 tc_act drwxr-xr-x 2 root root 4096 Feb 5 06:03 tc_ematch -rw-r--r-- 1 root root 8293 Jan 17 13:59 tcp.h -rw-r--r-- 1 root root 1549 Jan 17 13:59 tcp_metrics.h -rw-r--r-- 1 root root 11255 Jan 17 13:59 tee.h -rw-r--r-- 1 root root 9115 Jan 17 13:59 telephony.h -rw-r--r-- 1 root root 506 Jan 17 13:59 termios.h -rw-r--r-- 1 root root 924 Jan 17 13:59 thermal.h -rw-r--r-- 1 root root 1720 Jan 17 13:59 time.h -rw-r--r-- 1 root root 936 Jan 17 13:59 timerfd.h -rw-r--r-- 1 root root 278 Jan 17 13:59 times.h -rw-r--r-- 1 root root 6403 Jan 17 13:59 timex.h -rw-r--r-- 1 root root 1729 Jan 17 13:59 tiocl.h -rw-r--r-- 1 root root 14775 Jan 17 13:59 tipc_config.h -rw-r--r-- 1 root root 7709 Jan 17 13:59 tipc.h -rw-r--r-- 1 root root 8010 Jan 17 13:59 tipc_netlink.h -rw-r--r-- 1 root root 2723 Jan 17 13:59 tls.h -rw-r--r-- 1 root root 1930 Jan 17 13:59 toshiba.h -rw-r--r-- 1 root root 4526 Jan 17 13:59 tty_flags.h -rw-r--r-- 1 root root 1585 Jan 17 13:59 tty.h -rw-r--r-- 1 root root 1438 Jan 17 13:59 types.h -rw-r--r-- 1 root root 697 Jan 17 13:59 udf_fs_i.h -rw-r--r-- 1 root root 1463 Jan 17 13:59 udp.h -rw-r--r-- 1 root root 4648 Jan 17 13:59 uhid.h -rw-r--r-- 1 root root 9261 Jan 17 13:59 uinput.h -rw-r--r-- 1 root root 732 Jan 17 13:59 uio.h -rw-r--r-- 1 root root 798 Jan 17 13:59 uleds.h -rw-r--r-- 1 root root 4562 Jan 17 13:59 ultrasound.h -rw-r--r-- 1 root root 384 Jan 17 13:59 un.h -rw-r--r-- 1 root root 220 Jan 17 13:59 unistd.h -rw-r--r-- 1 root root 1253 Jan 17 13:59 unix_diag.h drwxr-xr-x 2 root root 4096 Feb 5 06:03 usb -rw-r--r-- 1 root root 6928 Jan 17 13:59 usbdevice_fs.h -rw-r--r-- 1 root root 640 Jan 17 13:59 usbip.h -rw-r--r-- 1 root root 6811 Jan 17 13:59 userfaultfd.h -rw-r--r-- 1 root root 1516 Jan 17 13:59 userio.h -rw-r--r-- 1 root root 215 Jan 17 13:59 utime.h -rw-r--r-- 1 root root 669 Jan 17 13:59 utsname.h -rw-r--r-- 1 root root 1382 Jan 17 13:59 uuid.h -rw-r--r-- 1 root root 1705 Jan 17 13:59 uvcvideo.h -rw-r--r-- 1 root root 4177 Jan 17 13:59 v4l2-common.h -rw-r--r-- 1 root root 44984 Jan 17 13:59 v4l2-controls.h -rw-r--r-- 1 root root 31562 Jan 17 13:59 v4l2-dv-timings.h -rw-r--r-- 1 root root 5101 Jan 17 13:59 v4l2-mediabus.h -rw-r--r-- 1 root root 6096 Jan 17 13:59 v4l2-subdev.h -rw-r--r-- 1 root root 97 Jan 17 13:59 version.h -rw-r--r-- 1 root root 224 Jan 17 13:59 veth.h -rw-r--r-- 1 root root 504 Jan 17 13:59 vfio_ccw.h -rw-r--r-- 1 root root 26030 Jan 17 13:59 vfio.h -rw-r--r-- 1 root root 7305 Jan 17 13:59 vhost.h -rw-r--r-- 1 root root 85966 Jan 17 13:59 videodev2.h -rw-r--r-- 1 root root 2041 Jan 17 13:59 virtio_9p.h -rw-r--r-- 1 root root 3800 Jan 17 13:59 virtio_balloon.h -rw-r--r-- 1 root root 5319 Jan 17 13:59 virtio_blk.h -rw-r--r-- 1 root root 3420 Jan 17 13:59 virtio_config.h -rw-r--r-- 1 root root 3136 Jan 17 13:59 virtio_console.h -rw-r--r-- 1 root root 13874 Jan 17 13:59 virtio_crypto.h -rw-r--r-- 1 root root 8027 Jan 17 13:59 virtio_gpu.h -rw-r--r-- 1 root root 2429 Jan 17 13:59 virtio_ids.h -rw-r--r-- 1 root root 2506 Jan 17 13:59 virtio_input.h -rw-r--r-- 1 root root 4586 Jan 17 13:59 virtio_mmio.h -rw-r--r-- 1 root root 10131 Jan 17 13:59 virtio_net.h -rw-r--r-- 1 root root 7079 Jan 17 13:59 virtio_pci.h -rw-r--r-- 1 root root 6336 Jan 17 13:59 virtio_ring.h -rw-r--r-- 1 root root 265 Jan 17 13:59 virtio_rng.h -rw-r--r-- 1 root root 6035 Jan 17 13:59 virtio_scsi.h -rw-r--r-- 1 root root 2153 Jan 17 13:59 virtio_types.h -rw-r--r-- 1 root root 3086 Jan 17 13:59 virtio_vsock.h -rw-r--r-- 1 root root 963 Jan 17 13:59 vm_sockets_diag.h -rw-r--r-- 1 root root 5314 Jan 17 13:59 vm_sockets.h -rw-r--r-- 1 root root 1885 Jan 17 13:59 vsockmon.h -rw-r--r-- 1 root root 3059 Jan 17 13:59 vt.h -rw-r--r-- 1 root root 1719 Jan 17 13:59 vtpm_proxy.h -rw-r--r-- 1 root root 663 Jan 17 13:59 wait.h -rw-r--r-- 1 root root 453 Jan 17 13:59 wanrouter.h -rw-r--r-- 1 root root 2335 Jan 17 13:59 watchdog.h drwxr-xr-x 2 root root 4096 Feb 5 06:03 wimax -rw-r--r-- 1 root root 8371 Jan 17 13:59 wimax.h -rw-r--r-- 1 root root 42713 Jan 17 13:59 wireless.h -rw-r--r-- 1 root root 1886 Jan 17 13:59 wmi.h -rw-r--r-- 1 root root 3562 Jan 17 13:59 x25.h -rw-r--r-- 1 root root 2860 Jan 17 13:59 xattr.h -rw-r--r-- 1 root root 11617 Jan 17 13:59 xfrm.h -rw-r--r-- 1 root root 2976 Jan 17 13:59 xilinx-v4l2-controls.h -rw-r--r-- 1 root root 3296 Jan 17 13:59 zorro.h -rw-r--r-- 1 root root 29963 Jan 17 13:59 zorro_ids.h /usr/include/linux/android: total 88 drwxr-xr-x 2 root root 4096 Feb 5 06:03 . drwxr-xr-x 28 root root 69632 Feb 5 06:03 .. -rw-r--r-- 1 root root 13687 Jan 17 13:59 binder.h /usr/include/linux/byteorder: total 80 drwxr-xr-x 2 root root 4096 Feb 5 06:03 . drwxr-xr-x 28 root root 69632 Feb 5 06:03 .. -rw-r--r-- 1 root root 3542 Jan 17 13:59 big_endian.h -rw-r--r-- 1 root root 3611 Jan 17 13:59 little_endian.h /usr/include/linux/caif: total 84 drwxr-xr-x 2 root root 4096 Feb 5 06:03 . drwxr-xr-x 28 root root 69632 Feb 5 06:03 .. -rw-r--r-- 1 root root 5832 Jan 17 13:59 caif_socket.h -rw-r--r-- 1 root root 1041 Jan 17 13:59 if_caif.h /usr/include/linux/can: total 108 drwxr-xr-x 2 root root 4096 Feb 5 06:03 . drwxr-xr-x 28 root root 69632 Feb 5 06:03 .. -rw-r--r-- 1 root root 4111 Jan 17 13:59 bcm.h -rw-r--r-- 1 root root 6605 Jan 17 13:59 error.h -rw-r--r-- 1 root root 7438 Jan 17 13:59 gw.h -rw-r--r-- 1 root root 3966 Jan 17 13:59 netlink.h -rw-r--r-- 1 root root 2853 Jan 17 13:59 raw.h -rw-r--r-- 1 root root 227 Jan 17 13:59 vxcan.h /usr/include/linux/cifs: total 76 drwxr-xr-x 2 root root 4096 Feb 5 06:03 . drwxr-xr-x 28 root root 69632 Feb 5 06:03 .. -rw-r--r-- 1 root root 1225 Jan 17 13:59 cifs_mount.h /usr/include/linux/dvb: total 156 drwxr-xr-x 2 root root 4096 Feb 5 06:03 . drwxr-xr-x 28 root root 69632 Feb 5 06:03 .. -rw-r--r-- 1 root root 4959 Jan 17 13:59 audio.h -rw-r--r-- 1 root root 4247 Jan 17 13:59 ca.h -rw-r--r-- 1 root root 6763 Jan 17 13:59 dmx.h -rw-r--r-- 1 root root 29085 Jan 17 13:59 frontend.h -rw-r--r-- 1 root root 2127 Jan 17 13:59 net.h -rw-r--r-- 1 root root 5761 Jan 17 13:59 osd.h -rw-r--r-- 1 root root 1082 Jan 17 13:59 version.h -rw-r--r-- 1 root root 8820 Jan 17 13:59 video.h /usr/include/linux/genwqe: total 92 drwxr-xr-x 2 root root 4096 Feb 5 06:03 . drwxr-xr-x 28 root root 69632 Feb 5 06:03 .. -rw-r--r-- 1 root root 17802 Jan 17 13:59 genwqe_card.h /usr/include/linux/hdlc: total 76 drwxr-xr-x 2 root root 4096 Feb 5 06:03 . drwxr-xr-x 28 root root 69632 Feb 5 06:03 .. -rw-r--r-- 1 root root 2657 Jan 17 13:59 ioctl.h /usr/include/linux/hsi: total 80 drwxr-xr-x 2 root root 4096 Feb 5 06:03 . drwxr-xr-x 28 root root 69632 Feb 5 06:03 .. -rw-r--r-- 1 root root 3656 Jan 17 13:59 cs-protocol.h -rw-r--r-- 1 root root 1895 Jan 17 13:59 hsi_char.h /usr/include/linux/iio: total 80 drwxr-xr-x 2 root root 4096 Feb 5 06:03 . drwxr-xr-x 28 root root 69632 Feb 5 06:03 .. -rw-r--r-- 1 root root 1390 Jan 17 13:59 events.h -rw-r--r-- 1 root root 1945 Jan 17 13:59 types.h /usr/include/linux/isdn: total 80 drwxr-xr-x 2 root root 4096 Feb 5 06:03 . drwxr-xr-x 28 root root 69632 Feb 5 06:03 .. -rw-r--r-- 1 root root 4783 Jan 17 13:59 capicmd.h /usr/include/linux/mmc: total 76 drwxr-xr-x 2 root root 4096 Feb 5 06:03 . drwxr-xr-x 28 root root 69632 Feb 5 06:03 .. -rw-r--r-- 1 root root 2285 Jan 17 13:59 ioctl.h /usr/include/linux/netfilter: total 480 drwxr-xr-x 3 root root 12288 Feb 5 06:03 . drwxr-xr-x 28 root root 69632 Feb 5 06:03 .. drwxr-xr-x 2 root root 4096 Feb 5 06:03 ipset -rw-r--r-- 1 root root 4248 Jan 17 13:59 nf_conntrack_common.h -rw-r--r-- 1 root root 438 Jan 17 13:59 nf_conntrack_ftp.h -rw-r--r-- 1 root root 576 Jan 17 13:59 nf_conntrack_sctp.h -rw-r--r-- 1 root root 1336 Jan 17 13:59 nf_conntrack_tcp.h -rw-r--r-- 1 root root 896 Jan 17 13:59 nf_conntrack_tuple_common.h -rw-r--r-- 1 root root 538 Jan 17 13:59 nf_log.h -rw-r--r-- 1 root root 1214 Jan 17 13:59 nf_nat.h -rw-r--r-- 1 root root 900 Jan 17 13:59 nfnetlink_acct.h -rw-r--r-- 1 root root 2444 Jan 17 13:59 nfnetlink_compat.h -rw-r--r-- 1 root root 5699 Jan 17 13:59 nfnetlink_conntrack.h -rw-r--r-- 1 root root 1202 Jan 17 13:59 nfnetlink_cthelper.h -rw-r--r-- 1 root root 2930 Jan 17 13:59 nfnetlink_cttimeout.h -rw-r--r-- 1 root root 2428 Jan 17 13:59 nfnetlink.h -rw-r--r-- 1 root root 2799 Jan 17 13:59 nfnetlink_log.h -rw-r--r-- 1 root root 3499 Jan 17 13:59 nfnetlink_queue.h -rw-r--r-- 1 root root 731 Jan 17 13:59 nf_tables_compat.h -rw-r--r-- 1 root root 40173 Jan 17 13:59 nf_tables.h -rw-r--r-- 1 root root 4467 Jan 17 13:59 x_tables.h -rw-r--r-- 1 root root 1084 Jan 17 13:59 xt_addrtype.h -rw-r--r-- 1 root root 718 Jan 17 13:59 xt_AUDIT.h -rw-r--r-- 1 root root 935 Jan 17 13:59 xt_bpf.h -rw-r--r-- 1 root root 740 Jan 17 13:59 xt_cgroup.h -rw-r--r-- 1 root root 563 Jan 17 13:59 xt_CHECKSUM.h -rw-r--r-- 1 root root 217 Jan 17 13:59 xt_CLASSIFY.h -rw-r--r-- 1 root root 374 Jan 17 13:59 xt_cluster.h -rw-r--r-- 1 root root 230 Jan 17 13:59 xt_comment.h -rw-r--r-- 1 root root 577 Jan 17 13:59 xt_connbytes.h -rw-r--r-- 1 root root 280 Jan 17 13:59 xt_connlabel.h -rw-r--r-- 1 root root 575 Jan 17 13:59 xt_connlimit.h -rw-r--r-- 1 root root 755 Jan 17 13:59 xt_connmark.h -rw-r--r-- 1 root root 199 Jan 17 13:59 xt_CONNMARK.h -rw-r--r-- 1 root root 301 Jan 17 13:59 xt_CONNSECMARK.h -rw-r--r-- 1 root root 2557 Jan 17 13:59 xt_conntrack.h -rw-r--r-- 1 root root 199 Jan 17 13:59 xt_cpu.h -rw-r--r-- 1 root root 853 Jan 17 13:59 xt_CT.h -rw-r--r-- 1 root root 483 Jan 17 13:59 xt_dccp.h -rw-r--r-- 1 root root 429 Jan 17 13:59 xt_devgroup.h -rw-r--r-- 1 root root 701 Jan 17 13:59 xt_dscp.h -rw-r--r-- 1 root root 697 Jan 17 13:59 xt_DSCP.h -rw-r--r-- 1 root root 736 Jan 17 13:59 xt_ecn.h -rw-r--r-- 1 root root 418 Jan 17 13:59 xt_esp.h -rw-r--r-- 1 root root 3256 Jan 17 13:59 xt_hashlimit.h -rw-r--r-- 1 root root 188 Jan 17 13:59 xt_helper.h -rw-r--r-- 1 root root 933 Jan 17 13:59 xt_HMARK.h -rw-r--r-- 1 root root 1393 Jan 17 13:59 xt_IDLETIMER.h -rw-r--r-- 1 root root 485 Jan 17 13:59 xt_ipcomp.h -rw-r--r-- 1 root root 581 Jan 17 13:59 xt_iprange.h -rw-r--r-- 1 root root 680 Jan 17 13:59 xt_ipvs.h -rw-r--r-- 1 root root 739 Jan 17 13:59 xt_l2tp.h -rw-r--r-- 1 root root 470 Jan 17 13:59 xt_LED.h -rw-r--r-- 1 root root 221 Jan 17 13:59 xt_length.h -rw-r--r-- 1 root root 673 Jan 17 13:59 xt_limit.h -rw-r--r-- 1 root root 642 Jan 17 13:59 xt_LOG.h -rw-r--r-- 1 root root 227 Jan 17 13:59 xt_mac.h -rw-r--r-- 1 root root 260 Jan 17 13:59 xt_mark.h -rw-r--r-- 1 root root 184 Jan 17 13:59 xt_MARK.h -rw-r--r-- 1 root root 721 Jan 17 13:59 xt_multiport.h -rw-r--r-- 1 root root 421 Jan 17 13:59 xt_nfacct.h -rw-r--r-- 1 root root 556 Jan 17 13:59 xt_NFLOG.h -rw-r--r-- 1 root root 779 Jan 17 13:59 xt_NFQUEUE.h -rw-r--r-- 1 root root 3390 Jan 17 13:59 xt_osf.h -rw-r--r-- 1 root root 369 Jan 17 13:59 xt_owner.h -rw-r--r-- 1 root root 553 Jan 17 13:59 xt_physdev.h -rw-r--r-- 1 root root 188 Jan 17 13:59 xt_pkttype.h -rw-r--r-- 1 root root 1022 Jan 17 13:59 xt_policy.h -rw-r--r-- 1 root root 400 Jan 17 13:59 xt_quota.h -rw-r--r-- 1 root root 859 Jan 17 13:59 xt_rateest.h -rw-r--r-- 1 root root 390 Jan 17 13:59 xt_RATEEST.h -rw-r--r-- 1 root root 220 Jan 17 13:59 xt_realm.h -rw-r--r-- 1 root root 1058 Jan 17 13:59 xt_recent.h -rw-r--r-- 1 root root 320 Jan 17 13:59 xt_rpfilter.h -rw-r--r-- 1 root root 2326 Jan 17 13:59 xt_sctp.h -rw-r--r-- 1 root root 549 Jan 17 13:59 xt_SECMARK.h -rw-r--r-- 1 root root 1827 Jan 17 13:59 xt_set.h -rw-r--r-- 1 root root 640 Jan 17 13:59 xt_socket.h -rw-r--r-- 1 root root 331 Jan 17 13:59 xt_state.h -rw-r--r-- 1 root root 716 Jan 17 13:59 xt_statistic.h -rw-r--r-- 1 root root 664 Jan 17 13:59 xt_string.h -rw-r--r-- 1 root root 419 Jan 17 13:59 xt_SYNPROXY.h -rw-r--r-- 1 root root 253 Jan 17 13:59 xt_tcpmss.h -rw-r--r-- 1 root root 235 Jan 17 13:59 xt_TCPMSS.h -rw-r--r-- 1 root root 407 Jan 17 13:59 xt_TCPOPTSTRIP.h -rw-r--r-- 1 root root 1250 Jan 17 13:59 xt_tcpudp.h -rw-r--r-- 1 root root 333 Jan 17 13:59 xt_TEE.h -rw-r--r-- 1 root root 730 Jan 17 13:59 xt_time.h -rw-r--r-- 1 root root 575 Jan 17 13:59 xt_TPROXY.h -rw-r--r-- 1 root root 752 Jan 17 13:59 xt_u32.h /usr/include/linux/netfilter/ipset: total 40 drwxr-xr-x 2 root root 4096 Feb 5 06:03 . drwxr-xr-x 3 root root 12288 Feb 5 06:03 .. -rw-r--r-- 1 root root 428 Jan 17 13:59 ip_set_bitmap.h -rw-r--r-- 1 root root 8879 Jan 17 13:59 ip_set.h -rw-r--r-- 1 root root 578 Jan 17 13:59 ip_set_hash.h -rw-r--r-- 1 root root 609 Jan 17 13:59 ip_set_list.h /usr/include/linux/netfilter_arp: total 84 drwxr-xr-x 2 root root 4096 Feb 5 06:03 . drwxr-xr-x 28 root root 69632 Feb 5 06:03 .. -rw-r--r-- 1 root root 5999 Jan 17 13:59 arp_tables.h -rw-r--r-- 1 root root 606 Jan 17 13:59 arpt_mangle.h /usr/include/linux/netfilter_bridge: total 148 drwxr-xr-x 2 root root 4096 Feb 5 06:03 . drwxr-xr-x 28 root root 69632 Feb 5 06:03 .. -rw-r--r-- 1 root root 1274 Jan 17 13:59 ebt_802_3.h -rw-r--r-- 1 root root 9041 Jan 17 13:59 ebtables.h -rw-r--r-- 1 root root 2043 Jan 17 13:59 ebt_among.h -rw-r--r-- 1 root root 900 Jan 17 13:59 ebt_arp.h -rw-r--r-- 1 root root 289 Jan 17 13:59 ebt_arpreply.h -rw-r--r-- 1 root root 1056 Jan 17 13:59 ebt_ip6.h -rw-r--r-- 1 root root 920 Jan 17 13:59 ebt_ip.h -rw-r--r-- 1 root root 616 Jan 17 13:59 ebt_limit.h -rw-r--r-- 1 root root 538 Jan 17 13:59 ebt_log.h -rw-r--r-- 1 root root 388 Jan 17 13:59 ebt_mark_m.h -rw-r--r-- 1 root root 831 Jan 17 13:59 ebt_mark_t.h -rw-r--r-- 1 root root 387 Jan 17 13:59 ebt_nat.h -rw-r--r-- 1 root root 510 Jan 17 13:59 ebt_nflog.h -rw-r--r-- 1 root root 267 Jan 17 13:59 ebt_pkttype.h -rw-r--r-- 1 root root 286 Jan 17 13:59 ebt_redirect.h -rw-r--r-- 1 root root 1110 Jan 17 13:59 ebt_stp.h -rw-r--r-- 1 root root 719 Jan 17 13:59 ebt_vlan.h /usr/include/linux/netfilter_ipv4: total 112 drwxr-xr-x 2 root root 4096 Feb 5 06:03 . drwxr-xr-x 28 root root 69632 Feb 5 06:03 .. -rw-r--r-- 1 root root 6647 Jan 17 13:59 ip_tables.h -rw-r--r-- 1 root root 425 Jan 17 13:59 ipt_ah.h -rw-r--r-- 1 root root 821 Jan 17 13:59 ipt_CLUSTERIP.h -rw-r--r-- 1 root root 431 Jan 17 13:59 ipt_ecn.h -rw-r--r-- 1 root root 901 Jan 17 13:59 ipt_ECN.h -rw-r--r-- 1 root root 722 Jan 17 13:59 ipt_LOG.h -rw-r--r-- 1 root root 468 Jan 17 13:59 ipt_REJECT.h -rw-r--r-- 1 root root 431 Jan 17 13:59 ipt_ttl.h -rw-r--r-- 1 root root 375 Jan 17 13:59 ipt_TTL.h /usr/include/linux/netfilter_ipv6: total 124 drwxr-xr-x 2 root root 4096 Feb 5 06:03 . drwxr-xr-x 28 root root 69632 Feb 5 06:03 .. -rw-r--r-- 1 root root 8011 Jan 17 13:59 ip6_tables.h -rw-r--r-- 1 root root 657 Jan 17 13:59 ip6t_ah.h -rw-r--r-- 1 root root 744 Jan 17 13:59 ip6t_frag.h -rw-r--r-- 1 root root 458 Jan 17 13:59 ip6t_hl.h -rw-r--r-- 1 root root 408 Jan 17 13:59 ip6t_HL.h -rw-r--r-- 1 root root 645 Jan 17 13:59 ip6t_ipv6header.h -rw-r--r-- 1 root root 730 Jan 17 13:59 ip6t_LOG.h -rw-r--r-- 1 root root 439 Jan 17 13:59 ip6t_mh.h -rw-r--r-- 1 root root 400 Jan 17 13:59 ip6t_NPT.h -rw-r--r-- 1 root root 649 Jan 17 13:59 ip6t_opts.h -rw-r--r-- 1 root root 470 Jan 17 13:59 ip6t_REJECT.h -rw-r--r-- 1 root root 985 Jan 17 13:59 ip6t_rt.h /usr/include/linux/nfsd: total 92 drwxr-xr-x 2 root root 4096 Feb 5 06:03 . drwxr-xr-x 28 root root 69632 Feb 5 06:03 .. -rw-r--r-- 1 root root 1921 Jan 17 13:59 cld.h -rw-r--r-- 1 root root 736 Jan 17 13:59 debug.h -rw-r--r-- 1 root root 2113 Jan 17 13:59 export.h -rw-r--r-- 1 root root 3517 Jan 17 13:59 nfsfh.h -rw-r--r-- 1 root root 421 Jan 17 13:59 stats.h /usr/include/linux/raid: total 96 drwxr-xr-x 2 root root 4096 Feb 5 06:03 . drwxr-xr-x 28 root root 69632 Feb 5 06:03 .. -rw-r--r-- 1 root root 16054 Jan 17 13:59 md_p.h -rw-r--r-- 1 root root 4484 Jan 17 13:59 md_u.h /usr/include/linux/sched: total 76 drwxr-xr-x 2 root root 4096 Feb 5 06:03 . drwxr-xr-x 28 root root 69632 Feb 5 06:03 .. -rw-r--r-- 1 root root 2688 Jan 17 13:59 types.h /usr/include/linux/spi: total 80 drwxr-xr-x 2 root root 4096 Feb 5 06:03 . drwxr-xr-x 28 root root 69632 Feb 5 06:03 .. -rw-r--r-- 1 root root 5076 Jan 17 13:59 spidev.h /usr/include/linux/sunrpc: total 76 drwxr-xr-x 2 root root 4096 Feb 5 06:03 . drwxr-xr-x 28 root root 69632 Feb 5 06:03 .. -rw-r--r-- 1 root root 1144 Jan 17 13:59 debug.h /usr/include/linux/tc_act: total 132 drwxr-xr-x 2 root root 4096 Feb 5 06:03 . drwxr-xr-x 28 root root 69632 Feb 5 06:03 .. -rw-r--r-- 1 root root 788 Jan 17 13:59 tc_bpf.h -rw-r--r-- 1 root root 419 Jan 17 13:59 tc_connmark.h -rw-r--r-- 1 root root 669 Jan 17 13:59 tc_csum.h -rw-r--r-- 1 root root 322 Jan 17 13:59 tc_defact.h -rw-r--r-- 1 root root 649 Jan 17 13:59 tc_gact.h -rw-r--r-- 1 root root 623 Jan 17 13:59 tc_ife.h -rw-r--r-- 1 root root 460 Jan 17 13:59 tc_ipt.h -rw-r--r-- 1 root root 753 Jan 17 13:59 tc_mirred.h -rw-r--r-- 1 root root 447 Jan 17 13:59 tc_nat.h -rw-r--r-- 1 root root 1707 Jan 17 13:59 tc_pedit.h -rw-r--r-- 1 root root 483 Jan 17 13:59 tc_sample.h -rw-r--r-- 1 root root 1413 Jan 17 13:59 tc_skbedit.h -rw-r--r-- 1 root root 842 Jan 17 13:59 tc_skbmod.h -rw-r--r-- 1 root root 1180 Jan 17 13:59 tc_tunnel_key.h -rw-r--r-- 1 root root 841 Jan 17 13:59 tc_vlan.h /usr/include/linux/tc_ematch: total 88 drwxr-xr-x 2 root root 4096 Feb 5 06:03 . drwxr-xr-x 28 root root 69632 Feb 5 06:03 .. -rw-r--r-- 1 root root 414 Jan 17 13:59 tc_em_cmp.h -rw-r--r-- 1 root root 2116 Jan 17 13:59 tc_em_meta.h -rw-r--r-- 1 root root 255 Jan 17 13:59 tc_em_nbyte.h -rw-r--r-- 1 root root 384 Jan 17 13:59 tc_em_text.h /usr/include/linux/usb: total 212 drwxr-xr-x 2 root root 4096 Feb 5 06:03 . drwxr-xr-x 28 root root 69632 Feb 5 06:03 .. -rw-r--r-- 1 root root 17126 Jan 17 13:59 audio.h -rw-r--r-- 1 root root 12962 Jan 17 13:59 cdc.h -rw-r--r-- 1 root root 739 Jan 17 13:59 cdc-wdm.h -rw-r--r-- 1 root root 8987 Jan 17 13:59 ch11.h -rw-r--r-- 1 root root 38723 Jan 17 13:59 ch9.h -rw-r--r-- 1 root root 566 Jan 17 13:59 charger.h -rw-r--r-- 1 root root 10370 Jan 17 13:59 functionfs.h -rw-r--r-- 1 root root 2818 Jan 17 13:59 gadgetfs.h -rw-r--r-- 1 root root 1385 Jan 17 13:59 g_printer.h -rw-r--r-- 1 root root 3434 Jan 17 13:59 midi.h -rw-r--r-- 1 root root 2785 Jan 17 13:59 tmc.h -rw-r--r-- 1 root root 16212 Jan 17 13:59 video.h /usr/include/linux/wimax: total 88 drwxr-xr-x 2 root root 4096 Feb 5 06:03 . drwxr-xr-x 28 root root 69632 Feb 5 06:03 .. -rw-r--r-- 1 root root 15930 Jan 17 13:59 i2400m.h /usr/include/misc: total 16 drwxr-xr-x 2 root root 4096 Feb 5 06:03 . drwxr-xr-x 34 root root 4096 Feb 5 06:03 .. -rw-r--r-- 1 root root 3936 Jan 17 13:59 cxl.h -rw-r--r-- 1 root root 1926 Jan 17 13:59 ocxl.h /usr/include/mtd: total 52 drwxr-xr-x 2 root root 4096 Feb 5 06:03 . drwxr-xr-x 34 root root 4096 Feb 5 06:03 .. -rw-r--r-- 1 root root 1644 Jan 17 13:59 inftl-user.h -rw-r--r-- 1 root root 9717 Jan 17 13:59 mtd-abi.h -rw-r--r-- 1 root root 1242 Jan 17 13:59 mtd-user.h -rw-r--r-- 1 root root 2116 Jan 17 13:59 nftl-user.h -rw-r--r-- 1 root root 17674 Jan 17 13:59 ubi-user.h /usr/include/net: total 64 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 34 root root 4096 Feb 5 06:03 .. -rw-r--r-- 1 root root 3135 Apr 16 2018 ethernet.h -rw-r--r-- 1 root root 7131 Apr 16 2018 if_arp.h -rw-r--r-- 1 root root 6981 Apr 16 2018 if.h -rw-r--r-- 1 root root 1261 Apr 16 2018 if_packet.h -rw-r--r-- 1 root root 6714 Apr 16 2018 if_ppp.h -rw-r--r-- 1 root root 1624 Apr 16 2018 if_shaper.h -rw-r--r-- 1 root root 932 Apr 16 2018 if_slip.h -rw-r--r-- 1 root root 28 Apr 16 2018 ppp-comp.h -rw-r--r-- 1 root root 162 Apr 16 2018 ppp_defs.h -rw-r--r-- 1 root root 4703 Apr 16 2018 route.h /usr/include/netash: total 12 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 34 root root 4096 Feb 5 06:03 .. -rw-r--r-- 1 root root 1362 Apr 16 2018 ash.h /usr/include/netatalk: total 12 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 34 root root 4096 Feb 5 06:03 .. -rw-r--r-- 1 root root 1028 Apr 16 2018 at.h /usr/include/netax25: total 16 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 34 root root 4096 Feb 5 06:03 .. -rw-r--r-- 1 root root 4809 Apr 16 2018 ax25.h /usr/include/neteconet: total 12 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 34 root root 4096 Feb 5 06:03 .. -rw-r--r-- 1 root root 1667 Apr 16 2018 ec.h /usr/include/netinet: total 120 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 34 root root 4096 Feb 5 06:03 .. -rw-r--r-- 1 root root 1984 Apr 16 2018 ether.h -rw-r--r-- 1 root root 11514 Apr 16 2018 icmp6.h -rw-r--r-- 1 root root 3975 Apr 16 2018 if_ether.h -rw-r--r-- 1 root root 1185 Apr 16 2018 if_fddi.h -rw-r--r-- 1 root root 3691 Apr 16 2018 if_tr.h -rw-r--r-- 1 root root 4610 Apr 16 2018 igmp.h -rw-r--r-- 1 root root 21625 Apr 16 2018 in.h -rw-r--r-- 1 root root 1493 Apr 16 2018 in_systm.h -rw-r--r-- 1 root root 5393 Apr 16 2018 ip6.h -rw-r--r-- 1 root root 9435 Apr 16 2018 ip.h -rw-r--r-- 1 root root 10126 Apr 16 2018 ip_icmp.h -rw-r--r-- 1 root root 9780 Apr 16 2018 tcp.h -rw-r--r-- 1 root root 3646 Apr 16 2018 udp.h /usr/include/netipx: total 12 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 34 root root 4096 Feb 5 06:03 .. -rw-r--r-- 1 root root 2899 Apr 16 2018 ipx.h /usr/include/netiucv: total 12 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 34 root root 4096 Feb 5 06:03 .. -rw-r--r-- 1 root root 1593 Apr 16 2018 iucv.h /usr/include/netpacket: total 12 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 34 root root 4096 Feb 5 06:03 .. -rw-r--r-- 1 root root 2402 Apr 16 2018 packet.h /usr/include/netrom: total 12 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 34 root root 4096 Feb 5 06:03 .. -rw-r--r-- 1 root root 2225 Apr 16 2018 netrom.h /usr/include/netrose: total 12 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 34 root root 4096 Feb 5 06:03 .. -rw-r--r-- 1 root root 3183 Apr 16 2018 rose.h /usr/include/nfs: total 12 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 34 root root 4096 Feb 5 06:03 .. -rw-r--r-- 1 root root 23 Apr 16 2018 nfs.h /usr/include/protocols: total 28 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 34 root root 4096 Feb 5 06:03 .. -rw-r--r-- 1 root root 3844 Apr 16 2018 routed.h -rw-r--r-- 1 root root 2567 Apr 16 2018 rwhod.h -rw-r--r-- 1 root root 4826 Apr 16 2018 talkd.h -rw-r--r-- 1 root root 3881 Apr 16 2018 timed.h /usr/include/python3.6m: total 772 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 34 root root 4096 Feb 5 06:03 .. -rw-r--r-- 1 root root 47451 Oct 7 12:59 abstract.h -rw-r--r-- 1 root root 1016 Oct 7 12:59 accu.h -rw-r--r-- 1 root root 1213 Oct 7 12:59 asdl.h -rw-r--r-- 1 root root 477 Oct 7 12:59 ast.h -rw-r--r-- 1 root root 792 Oct 7 12:59 bitset.h -rw-r--r-- 1 root root 264 Oct 7 12:59 bltinmodule.h -rw-r--r-- 1 root root 886 Oct 7 12:59 boolobject.h -rw-r--r-- 1 root root 2114 Oct 7 12:59 bytearrayobject.h -rw-r--r-- 1 root root 3191 Oct 7 12:59 bytes_methods.h -rw-r--r-- 1 root root 8363 Oct 7 12:59 bytesobject.h -rw-r--r-- 1 root root 701 Oct 7 12:59 cellobject.h -rw-r--r-- 1 root root 8524 Oct 7 12:59 ceval.h -rw-r--r-- 1 root root 1666 Oct 7 12:59 classobject.h -rw-r--r-- 1 root root 6793 Oct 7 12:59 codecs.h -rw-r--r-- 1 root root 5945 Oct 7 12:59 code.h -rw-r--r-- 1 root root 2164 Oct 7 12:59 compile.h -rw-r--r-- 1 root root 1807 Oct 7 12:59 complexobject.h -rw-r--r-- 1 root root 9414 Oct 7 12:59 datetime.h -rw-r--r-- 1 root root 2964 Oct 7 12:59 descrobject.h -rw-r--r-- 1 root root 7178 Oct 7 12:59 dictobject.h -rw-r--r-- 1 root root 458 Oct 7 12:59 dtoa.h -rw-r--r-- 1 root root 22469 Oct 7 12:59 dynamic_annotations.h -rw-r--r-- 1 root root 253 Oct 7 12:59 enumobject.h -rw-r--r-- 1 root root 1497 Oct 7 12:59 errcode.h -rw-r--r-- 1 root root 597 Oct 7 12:59 eval.h -rw-r--r-- 1 root root 1651 Oct 7 12:59 fileobject.h -rw-r--r-- 1 root root 3524 Oct 7 12:59 fileutils.h -rw-r--r-- 1 root root 4794 Oct 7 12:59 floatobject.h -rw-r--r-- 1 root root 3530 Oct 7 12:59 frameobject.h -rw-r--r-- 1 root root 4079 Oct 7 12:59 funcobject.h -rw-r--r-- 1 root root 3583 Oct 7 12:59 genobject.h -rw-r--r-- 1 root root 1966 Oct 7 12:59 graminit.h -rw-r--r-- 1 root root 2074 Oct 7 12:59 grammar.h -rw-r--r-- 1 root root 4233 Oct 7 12:59 import.h -rw-r--r-- 1 root root 513 Oct 7 12:59 intrcheck.h -rw-r--r-- 1 root root 567 Oct 7 12:59 iterobject.h -rw-r--r-- 1 root root 2900 Oct 7 12:59 listobject.h -rw-r--r-- 1 root root 3761 Oct 7 12:59 longintrepr.h -rw-r--r-- 1 root root 8471 Oct 7 12:59 longobject.h -rw-r--r-- 1 root root 803 Oct 7 12:59 marshal.h -rw-r--r-- 1 root root 2765 Oct 7 12:59 memoryobject.h -rw-r--r-- 1 root root 253 Oct 7 12:59 metagrammar.h -rw-r--r-- 1 root root 3847 Oct 7 12:59 methodobject.h -rw-r--r-- 1 root root 7317 Oct 7 12:59 modsupport.h -rw-r--r-- 1 root root 2285 Oct 7 12:59 moduleobject.h -rw-r--r-- 1 root root 349 Oct 7 12:59 namespaceobject.h -rw-r--r-- 1 root root 1007 Oct 7 12:59 node.h -rw-r--r-- 1 root root 40373 Oct 7 12:59 object.h -rw-r--r-- 1 root root 14244 Oct 7 12:59 objimpl.h -rw-r--r-- 1 root root 1288 Oct 7 12:59 odictobject.h -rw-r--r-- 1 root root 5073 Oct 7 12:59 opcode.h -rw-r--r-- 1 root root 691 Oct 7 12:59 osdefs.h -rw-r--r-- 1 root root 291 Oct 7 12:59 osmodule.h -rw-r--r-- 1 root root 2885 Oct 7 12:59 parsetok.h -rw-r--r-- 1 root root 1128 Oct 7 12:59 patchlevel.h -rw-r--r-- 1 root root 253 Oct 7 12:59 pgen.h -rw-r--r-- 1 root root 1180 Oct 7 12:59 pgenheaders.h -rw-r--r-- 1 root root 2744 Oct 7 12:59 pyarena.h -rw-r--r-- 1 root root 8128 Oct 7 12:59 pyatomic.h -rw-r--r-- 1 root root 1726 Oct 7 12:59 pycapsule.h -rw-r--r-- 1 root root 4086 Oct 7 12:59 pyconfig.h -rw-r--r-- 1 root root 1320 Oct 7 12:59 pyctype.h -rw-r--r-- 1 root root 4307 Oct 7 12:59 py_curses.h -rw-r--r-- 1 root root 1209 Oct 7 12:59 pydebug.h -rw-r--r-- 1 root root 1970 Oct 7 12:59 pydtrace.h -rw-r--r-- 1 root root 17219 Oct 7 12:59 pyerrors.h -rw-r--r-- 1 root root 2450 Oct 7 12:59 pyexpat.h -rw-r--r-- 1 root root 8471 Oct 7 12:59 pyfpe.h -rw-r--r-- 1 root root 410 Oct 7 12:59 pygetopt.h -rw-r--r-- 1 root root 4139 Oct 7 12:59 pyhash.h -rw-r--r-- 1 root root 4078 Oct 7 12:59 pylifecycle.h -rw-r--r-- 1 root root 2989 Oct 7 12:59 pymacconfig.h -rw-r--r-- 1 root root 3500 Oct 7 12:59 pymacro.h -rw-r--r-- 1 root root 8312 Oct 7 12:59 pymath.h -rw-r--r-- 1 root root 8557 Oct 7 12:59 pymem.h -rw-r--r-- 1 root root 27573 Oct 7 12:59 pyport.h -rw-r--r-- 1 root root 11146 Oct 7 12:59 pystate.h -rw-r--r-- 1 root root 436 Oct 7 12:59 pystrcmp.h -rw-r--r-- 1 root root 495 Oct 7 12:59 pystrhex.h -rw-r--r-- 1 root root 1483 Oct 7 12:59 pystrtod.h -rw-r--r-- 1 root root 22274 Oct 7 12:59 Python-ast.h -rw-r--r-- 1 root root 3221 Oct 7 12:59 Python.h -rw-r--r-- 1 root root 6782 Oct 7 12:59 pythonrun.h -rw-r--r-- 1 root root 2992 Oct 7 12:59 pythread.h -rw-r--r-- 1 root root 7609 Oct 7 12:59 pytime.h -rw-r--r-- 1 root root 629 Oct 7 12:59 rangeobject.h -rw-r--r-- 1 root root 3333 Oct 7 12:59 setobject.h -rw-r--r-- 1 root root 2485 Oct 7 12:59 sliceobject.h -rw-r--r-- 1 root root 2018 Oct 7 12:59 structmember.h -rw-r--r-- 1 root root 1353 Oct 7 12:59 structseq.h -rw-r--r-- 1 root root 4994 Oct 7 12:59 symtable.h -rw-r--r-- 1 root root 1355 Oct 7 12:59 sysmodule.h -rw-r--r-- 1 root root 1943 Oct 7 12:59 token.h -rw-r--r-- 1 root root 3644 Oct 7 12:59 traceback.h -rw-r--r-- 1 root root 2444 Oct 7 12:59 tupleobject.h -rw-r--r-- 1 root root 2253 Oct 7 12:59 typeslots.h -rw-r--r-- 1 root root 1056 Oct 7 12:59 ucnhash.h -rw-r--r-- 1 root root 81779 Oct 7 12:59 unicodeobject.h -rw-r--r-- 1 root root 1693 Oct 7 12:59 warnings.h -rw-r--r-- 1 root root 2866 Oct 7 12:59 weakrefobject.h /usr/include/rdma: total 152 drwxr-xr-x 3 root root 4096 Feb 5 06:03 . drwxr-xr-x 34 root root 4096 Feb 5 06:03 .. -rw-r--r-- 1 root root 2657 Jan 17 13:59 bnxt_re-abi.h -rw-r--r-- 1 root root 2374 Jan 17 13:59 cxgb3-abi.h -rw-r--r-- 1 root root 2571 Jan 17 13:59 cxgb4-abi.h drwxr-xr-x 2 root root 4096 Feb 5 06:03 hfi -rw-r--r-- 1 root root 2130 Jan 17 13:59 hns-abi.h -rw-r--r-- 1 root root 6609 Jan 17 13:59 ib_user_cm.h -rw-r--r-- 1 root root 2436 Jan 17 13:59 ib_user_ioctl_verbs.h -rw-r--r-- 1 root root 8517 Jan 17 13:59 ib_user_mad.h -rw-r--r-- 1 root root 2305 Jan 17 13:59 ib_user_sa.h -rw-r--r-- 1 root root 23714 Jan 17 13:59 ib_user_verbs.h -rw-r--r-- 1 root root 4140 Jan 17 13:59 mlx4-abi.h -rw-r--r-- 1 root root 9401 Jan 17 13:59 mlx5-abi.h -rw-r--r-- 1 root root 3015 Jan 17 13:59 mthca-abi.h -rw-r--r-- 1 root root 3463 Jan 17 13:59 nes-abi.h -rw-r--r-- 1 root root 4016 Jan 17 13:59 ocrdma-abi.h -rw-r--r-- 1 root root 2699 Jan 17 13:59 qedr-abi.h -rw-r--r-- 1 root root 7008 Jan 17 13:59 rdma_netlink.h -rw-r--r-- 1 root root 6326 Jan 17 13:59 rdma_user_cm.h -rw-r--r-- 1 root root 4611 Jan 17 13:59 rdma_user_ioctl.h -rw-r--r-- 1 root root 3215 Jan 17 13:59 rdma_user_rxe.h -rw-r--r-- 1 root root 7484 Jan 17 13:59 vmw_pvrdma-abi.h /usr/include/rdma/hfi: total 28 drwxr-xr-x 2 root root 4096 Feb 5 06:03 . drwxr-xr-x 3 root root 4096 Feb 5 06:03 .. -rw-r--r-- 1 root root 6490 Jan 17 13:59 hfi1_ioctl.h -rw-r--r-- 1 root root 9077 Jan 17 13:59 hfi1_user.h /usr/include/reglib: total 192 drwxr-xr-x 2 root root 4096 Aug 12 2019 . drwxr-xr-x 34 root root 4096 Feb 5 06:03 .. -rw-r--r-- 1 root root 169149 Feb 5 2018 nl80211.h -rw-r--r-- 1 root root 4149 Feb 5 2018 regdb.h -rw-r--r-- 1 root root 7240 Feb 5 2018 reglib.h /usr/include/rpc: total 124 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 34 root root 4096 Feb 5 06:03 .. -rw-r--r-- 1 root root 3559 Apr 16 2018 auth_des.h -rw-r--r-- 1 root root 6634 Apr 16 2018 auth.h -rw-r--r-- 1 root root 2914 Apr 16 2018 auth_unix.h -rw-r--r-- 1 root root 12531 Apr 16 2018 clnt.h -rw-r--r-- 1 root root 3383 Apr 16 2018 des_crypt.h -rw-r--r-- 1 root root 11756 Apr 16 2018 key_prot.h -rw-r--r-- 1 root root 2897 Apr 16 2018 netdb.h -rw-r--r-- 1 root root 3837 Apr 16 2018 pmap_clnt.h -rw-r--r-- 1 root root 3810 Apr 16 2018 pmap_prot.h -rw-r--r-- 1 root root 2311 Apr 16 2018 pmap_rmt.h -rw-r--r-- 1 root root 2511 Apr 16 2018 rpc_des.h -rw-r--r-- 1 root root 3938 Apr 16 2018 rpc.h -rw-r--r-- 1 root root 4753 Apr 16 2018 rpc_msg.h -rw-r--r-- 1 root root 1976 Apr 16 2018 svc_auth.h -rw-r--r-- 1 root root 11524 Apr 16 2018 svc.h -rw-r--r-- 1 root root 3233 Apr 16 2018 types.h -rw-r--r-- 1 root root 14577 Apr 16 2018 xdr.h /usr/include/rpcsvc: total 288 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 34 root root 4096 Feb 5 06:03 .. -rw-r--r-- 1 root root 916 Apr 16 2018 bootparam.h -rw-r--r-- 1 root root 3188 Apr 16 2018 bootparam_prot.h -rw-r--r-- 1 root root 3120 Apr 16 2018 bootparam_prot.x -rw-r--r-- 1 root root 6757 Apr 16 2018 key_prot.h -rw-r--r-- 1 root root 6568 Apr 16 2018 key_prot.x -rw-r--r-- 1 root root 3290 Apr 16 2018 klm_prot.h -rw-r--r-- 1 root root 3741 Apr 16 2018 klm_prot.x -rw-r--r-- 1 root root 3863 Apr 16 2018 mount.h -rw-r--r-- 1 root root 4665 Apr 16 2018 mount.x -rw-r--r-- 1 root root 11448 Apr 16 2018 nfs_prot.h -rw-r--r-- 1 root root 7986 Apr 16 2018 nfs_prot.x -rw-r--r-- 1 root root 2704 Apr 16 2018 nis_callback.h -rw-r--r-- 1 root root 2178 Apr 16 2018 nis_callback.x -rw-r--r-- 1 root root 16210 Apr 16 2018 nis.h -rw-r--r-- 1 root root 12892 Apr 16 2018 nislib.h -rw-r--r-- 1 root root 13090 Apr 16 2018 nis_object.x -rw-r--r-- 1 root root 5370 Apr 16 2018 nis_tags.h -rw-r--r-- 1 root root 16802 Apr 16 2018 nis.x -rw-r--r-- 1 root root 9374 Apr 16 2018 nlm_prot.h -rw-r--r-- 1 root root 4990 Apr 16 2018 nlm_prot.x -rw-r--r-- 1 root root 5252 Apr 16 2018 rex.h -rw-r--r-- 1 root root 7422 Apr 16 2018 rex.x -rw-r--r-- 1 root root 2249 Apr 16 2018 rquota.h -rw-r--r-- 1 root root 1568 Apr 16 2018 rquota.x -rw-r--r-- 1 root root 4045 Apr 16 2018 rstat.h -rw-r--r-- 1 root root 4001 Apr 16 2018 rstat.x -rw-r--r-- 1 root root 3279 Apr 16 2018 rusers.h -rw-r--r-- 1 root root 5866 Apr 16 2018 rusers.x -rw-r--r-- 1 root root 3173 Apr 16 2018 sm_inter.h -rw-r--r-- 1 root root 3752 Apr 16 2018 sm_inter.x -rw-r--r-- 1 root root 1887 Apr 16 2018 spray.h -rw-r--r-- 1 root root 2543 Apr 16 2018 spray.x -rw-r--r-- 1 root root 3500 Apr 16 2018 ypclnt.h -rw-r--r-- 1 root root 9916 Apr 16 2018 yp.h -rw-r--r-- 1 root root 1285 Apr 16 2018 yppasswd.h -rw-r--r-- 1 root root 2286 Apr 16 2018 yppasswd.x -rw-r--r-- 1 root root 10499 Apr 16 2018 yp_prot.h -rw-r--r-- 1 root root 3007 Apr 16 2018 ypupd.h -rw-r--r-- 1 root root 7198 Apr 16 2018 yp.x /usr/include/scsi: total 68 drwxr-xr-x 3 root root 4096 Feb 5 06:03 . drwxr-xr-x 34 root root 4096 Feb 5 06:03 .. -rw-r--r-- 1 root root 10168 Jan 17 13:59 cxlflash_ioctl.h drwxr-xr-x 2 root root 4096 Feb 5 06:03 fc -rw-r--r-- 1 root root 8817 Jan 17 13:59 scsi_bsg_fc.h -rw-r--r-- 1 root root 6969 Apr 16 2018 scsi.h -rw-r--r-- 1 root root 1315 Apr 16 2018 scsi_ioctl.h -rw-r--r-- 1 root root 1993 Jan 17 13:59 scsi_netlink_fc.h -rw-r--r-- 1 root root 3666 Jan 17 13:59 scsi_netlink.h -rw-r--r-- 1 root root 11661 Apr 16 2018 sg.h /usr/include/scsi/fc: total 64 drwxr-xr-x 2 root root 4096 Feb 5 06:03 . drwxr-xr-x 3 root root 4096 Feb 5 06:03 .. -rw-r--r-- 1 root root 26667 Jan 17 13:59 fc_els.h -rw-r--r-- 1 root root 12367 Jan 17 13:59 fc_fs.h -rw-r--r-- 1 root root 2895 Jan 17 13:59 fc_gs.h -rw-r--r-- 1 root root 4981 Jan 17 13:59 fc_ns.h /usr/include/sound: total 208 drwxr-xr-x 2 root root 4096 Feb 5 06:03 . drwxr-xr-x 34 root root 4096 Feb 5 06:03 .. -rw-r--r-- 1 root root 21847 Jan 17 13:59 asequencer.h -rw-r--r-- 1 root root 19733 Jan 17 13:59 asoc.h -rw-r--r-- 1 root root 4377 Jan 17 13:59 asound_fm.h -rw-r--r-- 1 root root 45851 Jan 17 13:59 asound.h -rw-r--r-- 1 root root 6743 Jan 17 13:59 compress_offload.h -rw-r--r-- 1 root root 16992 Jan 17 13:59 compress_params.h -rw-r--r-- 1 root root 17240 Jan 17 13:59 emu10k1.h -rw-r--r-- 1 root root 2697 Jan 17 13:59 firewire.h -rw-r--r-- 1 root root 3140 Jan 17 13:59 hdsp.h -rw-r--r-- 1 root root 5486 Jan 17 13:59 hdspm.h -rw-r--r-- 1 root root 4304 Jan 17 13:59 sb16_csp.h -rw-r--r-- 1 root root 7494 Jan 17 13:59 sfnt_info.h -rw-r--r-- 1 root root 11574 Jan 17 13:59 snd_sst_tokens.h -rw-r--r-- 1 root root 4041 Jan 17 13:59 tlv.h -rw-r--r-- 1 root root 1939 Jan 17 13:59 usb_stream.h /usr/include/video: total 24 drwxr-xr-x 2 root root 4096 Feb 5 06:03 . drwxr-xr-x 34 root root 4096 Feb 5 06:03 .. -rw-r--r-- 1 root root 213 Jan 17 13:59 edid.h -rw-r--r-- 1 root root 7643 Jan 17 13:59 sisfb.h -rw-r--r-- 1 root root 1078 Jan 17 13:59 uvesafb.h /usr/include/x86_64-linux-gnu: total 72 drwxr-xr-x 8 root root 4096 Oct 18 00:14 . drwxr-xr-x 34 root root 4096 Feb 5 06:03 .. -rw-r--r-- 1 root root 4350 Apr 16 2018 a.out.h drwxr-xr-x 2 root root 12288 Feb 5 06:03 asm drwxr-xr-x 3 root root 12288 Oct 18 00:14 bits drwxr-xr-x 3 root root 4096 Oct 18 00:14 c++ -rw-r--r-- 1 root root 3517 Sep 10 18:05 expat_config.h -rw-r--r-- 1 root root 3583 Apr 16 2018 fpu_control.h drwxr-xr-x 2 root root 4096 Oct 18 00:14 gnu -rw-r--r-- 1 root root 4910 Apr 16 2018 ieee754.h drwxr-xr-x 2 root root 4096 Oct 18 00:14 python3.6m drwxr-xr-x 2 root root 4096 Oct 18 00:14 sys /usr/include/x86_64-linux-gnu/asm: total 340 drwxr-xr-x 2 root root 12288 Feb 5 06:03 . drwxr-xr-x 8 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 756 Jan 17 13:59 a.out.h -rw-r--r-- 1 root root 546 Jan 17 13:59 auxvec.h -rw-r--r-- 1 root root 321 Jan 17 13:59 bitsperlong.h -rw-r--r-- 1 root root 323 Jan 17 13:59 boot.h -rw-r--r-- 1 root root 7141 Jan 17 13:59 bootparam.h -rw-r--r-- 1 root root 40 Jan 17 13:59 bpf_perf_event.h -rw-r--r-- 1 root root 176 Jan 17 13:59 byteorder.h -rw-r--r-- 1 root root 3285 Jan 17 13:59 debugreg.h -rw-r--r-- 1 root root 2579 Jan 17 13:59 e820.h -rw-r--r-- 1 root root 31 Jan 17 13:59 errno.h -rw-r--r-- 1 root root 31 Jan 17 13:59 fcntl.h -rw-r--r-- 1 root root 69 Jan 17 13:59 hw_breakpoint.h -rw-r--r-- 1 root root 174 Jan 17 13:59 hwcap2.h -rw-r--r-- 1 root root 13035 Jan 17 13:59 hyperv.h -rw-r--r-- 1 root root 31 Jan 17 13:59 ioctl.h -rw-r--r-- 1 root root 32 Jan 17 13:59 ioctls.h -rw-r--r-- 1 root root 32 Jan 17 13:59 ipcbuf.h -rw-r--r-- 1 root root 854 Jan 17 13:59 ist.h -rw-r--r-- 1 root root 7152 Jan 17 13:59 kvm.h -rw-r--r-- 1 root root 2976 Jan 17 13:59 kvm_para.h -rw-r--r-- 1 root root 388 Jan 17 13:59 kvm_perf.h -rw-r--r-- 1 root root 1306 Jan 17 13:59 ldt.h -rw-r--r-- 1 root root 1312 Jan 17 13:59 mce.h -rw-r--r-- 1 root root 1002 Jan 17 13:59 mman.h -rw-r--r-- 1 root root 1053 Jan 17 13:59 msgbuf.h -rw-r--r-- 1 root root 346 Jan 17 13:59 msr.h -rw-r--r-- 1 root root 4225 Jan 17 13:59 mtrr.h -rw-r--r-- 1 root root 31 Jan 17 13:59 param.h -rw-r--r-- 1 root root 717 Jan 17 13:59 perf_regs.h -rw-r--r-- 1 root root 30 Jan 17 13:59 poll.h -rw-r--r-- 1 root root 765 Jan 17 13:59 posix_types_32.h -rw-r--r-- 1 root root 609 Jan 17 13:59 posix_types_64.h -rw-r--r-- 1 root root 224 Jan 17 13:59 posix_types.h -rw-r--r-- 1 root root 581 Jan 17 13:59 posix_types_x32.h -rw-r--r-- 1 root root 418 Jan 17 13:59 prctl.h -rw-r--r-- 1 root root 6623 Jan 17 13:59 processor-flags.h -rw-r--r-- 1 root root 2037 Jan 17 13:59 ptrace-abi.h -rw-r--r-- 1 root root 1495 Jan 17 13:59 ptrace.h -rw-r--r-- 1 root root 34 Jan 17 13:59 resource.h -rw-r--r-- 1 root root 777 Jan 17 13:59 sembuf.h -rw-r--r-- 1 root root 6 Jan 17 13:59 setup.h -rw-r--r-- 1 root root 1258 Jan 17 13:59 shmbuf.h -rw-r--r-- 1 root root 247 Jan 17 13:59 sigcontext32.h -rw-r--r-- 1 root root 9724 Jan 17 13:59 sigcontext.h -rw-r--r-- 1 root root 494 Jan 17 13:59 siginfo.h -rw-r--r-- 1 root root 2901 Jan 17 13:59 signal.h -rw-r--r-- 1 root root 32 Jan 17 13:59 socket.h -rw-r--r-- 1 root root 33 Jan 17 13:59 sockios.h -rw-r--r-- 1 root root 416 Jan 17 13:59 statfs.h -rw-r--r-- 1 root root 3131 Jan 17 13:59 stat.h -rw-r--r-- 1 root root 7031 Jan 17 13:59 svm.h -rw-r--r-- 1 root root 724 Jan 17 13:59 swab.h -rw-r--r-- 1 root root 34 Jan 17 13:59 termbits.h -rw-r--r-- 1 root root 33 Jan 17 13:59 termios.h -rw-r--r-- 1 root root 152 Jan 17 13:59 types.h -rw-r--r-- 1 root root 2117 Jan 17 13:59 ucontext.h -rw-r--r-- 1 root root 10136 Jan 17 13:59 unistd_32.h -rw-r--r-- 1 root root 8893 Jan 17 13:59 unistd_64.h -rw-r--r-- 1 root root 359 Jan 17 13:59 unistd.h -rw-r--r-- 1 root root 15666 Jan 17 13:59 unistd_x32.h -rw-r--r-- 1 root root 3118 Jan 17 13:59 vm86.h -rw-r--r-- 1 root root 6749 Jan 17 13:59 vmx.h -rw-r--r-- 1 root root 263 Jan 17 13:59 vsyscall.h /usr/include/x86_64-linux-gnu/bits: total 904 drwxr-xr-x 3 root root 12288 Oct 18 00:14 . drwxr-xr-x 8 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 268 Apr 16 2018 a.out.h -rw-r--r-- 1 root root 3475 Apr 16 2018 auxv.h -rw-r--r-- 1 root root 1731 Apr 16 2018 byteswap-16.h -rw-r--r-- 1 root root 5664 Apr 16 2018 byteswap.h -rw-r--r-- 1 root root 4138 Apr 16 2018 cmathcalls.h -rw-r--r-- 1 root root 23708 Apr 16 2018 confname.h -rw-r--r-- 1 root root 4515 Apr 16 2018 cpu-set.h -rw-r--r-- 1 root root 1728 Apr 16 2018 dirent.h -rw-r--r-- 1 root root 2520 Apr 16 2018 dlfcn.h -rw-r--r-- 1 root root 426 Apr 16 2018 elfclass.h -rw-r--r-- 1 root root 176 Apr 16 2018 endian.h -rw-r--r-- 1 root root 3790 Apr 16 2018 environments.h -rw-r--r-- 1 root root 1070 Apr 16 2018 epoll.h -rw-r--r-- 1 root root 1425 Apr 16 2018 errno.h -rw-r--r-- 1 root root 2683 Apr 16 2018 error.h -rw-r--r-- 1 root root 1128 Apr 16 2018 eventfd.h -rw-r--r-- 1 root root 5574 Apr 16 2018 fcntl2.h -rw-r--r-- 1 root root 2245 Apr 16 2018 fcntl.h -rw-r--r-- 1 root root 14359 Apr 16 2018 fcntl-linux.h -rw-r--r-- 1 root root 4606 Apr 16 2018 fenv.h -rw-r--r-- 1 root root 190 Apr 16 2018 fenvinline.h -rw-r--r-- 1 root root 9419 Apr 16 2018 floatn-common.h -rw-r--r-- 1 root root 4423 Apr 16 2018 floatn.h -rw-r--r-- 1 root root 1214 Apr 16 2018 flt-eval-method.h -rw-r--r-- 1 root root 1215 Apr 16 2018 fp-fast.h -rw-r--r-- 1 root root 1011 Apr 16 2018 fp-logb.h -rw-r--r-- 1 root root 1440 Apr 16 2018 _G_config.h -rw-r--r-- 1 root root 3666 Apr 16 2018 getopt_core.h -rw-r--r-- 1 root root 3037 Apr 16 2018 getopt_ext.h -rw-r--r-- 1 root root 1809 Apr 16 2018 getopt_posix.h -rw-r--r-- 1 root root 971 Apr 16 2018 hwcap.h -rw-r--r-- 1 root root 9440 Apr 16 2018 in.h -rw-r--r-- 1 root root 25 Apr 16 2018 initspin.h -rw-r--r-- 1 root root 1079 Apr 16 2018 inotify.h -rw-r--r-- 1 root root 4477 Apr 16 2018 ioctls.h -rw-r--r-- 1 root root 2455 Apr 16 2018 ioctl-types.h -rw-r--r-- 1 root root 2070 Apr 16 2018 ipc.h -rw-r--r-- 1 root root 1175 Apr 16 2018 ipctypes.h -rw-r--r-- 1 root root 2478 Apr 16 2018 iscanonical.h -rw-r--r-- 1 root root 2607 Apr 16 2018 libc-header-start.h -rw-r--r-- 1 root root 17221 Apr 16 2018 libio.h -rw-r--r-- 1 root root 1086 Apr 16 2018 libio-ldbl.h -rw-r--r-- 1 root root 3003 Apr 16 2018 libm-simd-decl-stubs.h -rw-r--r-- 1 root root 4285 Apr 16 2018 link.h -rw-r--r-- 1 root root 1367 Apr 16 2018 locale.h -rw-r--r-- 1 root root 3184 Apr 16 2018 local_lim.h -rw-r--r-- 1 root root 923 Apr 16 2018 long-double.h -rw-r--r-- 1 root root 13114 Apr 16 2018 mathcalls.h -rw-r--r-- 1 root root 1764 Apr 16 2018 mathcalls-helper-functions.h -rw-r--r-- 1 root root 890 Apr 16 2018 mathdef.h -rw-r--r-- 1 root root 5374 Apr 16 2018 math-finite.h -rw-r--r-- 1 root root 27180 Apr 16 2018 mathinline.h -rw-r--r-- 1 root root 2307 Apr 16 2018 math-vector.h -rw-r--r-- 1 root root 1872 Apr 16 2018 mman.h -rw-r--r-- 1 root root 4802 Apr 16 2018 mman-linux.h -rw-r--r-- 1 root root 2736 Apr 16 2018 mman-shared.h -rw-r--r-- 1 root root 1046 Apr 16 2018 monetary-ldbl.h -rw-r--r-- 1 root root 2150 Apr 16 2018 mqueue2.h -rw-r--r-- 1 root root 1245 Apr 16 2018 mqueue.h -rw-r--r-- 1 root root 2612 Apr 16 2018 msq.h -rw-r--r-- 1 root root 1263 Apr 16 2018 netdb.h -rw-r--r-- 1 root root 1432 Apr 16 2018 param.h -rw-r--r-- 1 root root 2936 Apr 16 2018 poll2.h -rw-r--r-- 1 root root 2075 Apr 16 2018 poll.h -rw-r--r-- 1 root root 4922 Apr 16 2018 posix1_lim.h -rw-r--r-- 1 root root 2866 Apr 16 2018 posix2_lim.h -rw-r--r-- 1 root root 5705 Apr 16 2018 posix_opt.h -rw-r--r-- 1 root root 991 Apr 16 2018 printf-ldbl.h -rw-r--r-- 1 root root 3290 Apr 16 2018 pthreadtypes-arch.h -rw-r--r-- 1 root root 3071 Apr 16 2018 pthreadtypes.h -rw-r--r-- 1 root root 2696 Apr 16 2018 ptrace-shared.h -rw-r--r-- 1 root root 6298 Apr 16 2018 resource.h -rw-r--r-- 1 root root 3811 Apr 16 2018 sched.h -rw-r--r-- 1 root root 1437 Apr 16 2018 select2.h -rw-r--r-- 1 root root 2105 Apr 16 2018 select.h -rw-r--r-- 1 root root 1237 Apr 16 2018 semaphore.h -rw-r--r-- 1 root root 2594 Apr 16 2018 sem.h -rw-r--r-- 1 root root 1704 Apr 16 2018 setjmp2.h -rw-r--r-- 1 root root 1286 Apr 16 2018 setjmp.h -rw-r--r-- 1 root root 3566 Apr 16 2018 shm.h -rw-r--r-- 1 root root 2871 Apr 16 2018 sigaction.h -rw-r--r-- 1 root root 4264 Apr 16 2018 sigcontext.h -rw-r--r-- 1 root root 1470 Apr 16 2018 sigevent-consts.h -rw-r--r-- 1 root root 729 Apr 16 2018 siginfo-arch.h -rw-r--r-- 1 root root 204 Apr 16 2018 siginfo-consts-arch.h -rw-r--r-- 1 root root 5973 Apr 16 2018 siginfo-consts.h -rw-r--r-- 1 root root 1066 Apr 16 2018 signalfd.h -rw-r--r-- 1 root root 4340 Apr 16 2018 signum-generic.h -rw-r--r-- 1 root root 1633 Apr 16 2018 signum.h -rw-r--r-- 1 root root 1167 Apr 16 2018 sigstack.h -rw-r--r-- 1 root root 1691 Apr 16 2018 sigthread.h -rw-r--r-- 1 root root 1513 Apr 16 2018 sockaddr.h -rw-r--r-- 1 root root 3025 Apr 16 2018 socket2.h -rw-r--r-- 1 root root 14322 Apr 16 2018 socket.h -rw-r--r-- 1 root root 2215 Apr 16 2018 socket_type.h -rw-r--r-- 1 root root 1187 Apr 16 2018 ss_flags.h -rw-r--r-- 1 root root 9039 Apr 16 2018 stab.def -rw-r--r-- 1 root root 1916 Apr 16 2018 statfs.h -rw-r--r-- 1 root root 7619 Apr 16 2018 stat.h -rw-r--r-- 1 root root 3422 Apr 16 2018 statvfs.h -rw-r--r-- 1 root root 1036 Apr 16 2018 stdint-intn.h -rw-r--r-- 1 root root 1048 Apr 16 2018 stdint-uintn.h -rw-r--r-- 1 root root 12547 Apr 16 2018 stdio2.h -rw-r--r-- 1 root root 5492 Apr 16 2018 stdio.h -rw-r--r-- 1 root root 3013 Apr 16 2018 stdio-ldbl.h -rw-r--r-- 1 root root 1212 Apr 16 2018 stdio_lim.h -rw-r--r-- 1 root root 1377 Apr 16 2018 stdlib-bsearch.h -rw-r--r-- 1 root root 1114 Apr 16 2018 stdlib-float.h -rw-r--r-- 1 root root 5658 Apr 16 2018 stdlib.h -rw-r--r-- 1 root root 1372 Apr 16 2018 stdlib-ldbl.h -rw-r--r-- 1 root root 4313 Apr 16 2018 string_fortified.h -rw-r--r-- 1 root root 1208 Apr 16 2018 strings_fortified.h -rw-r--r-- 1 root root 8453 Apr 16 2018 stropts.h -rw-r--r-- 1 root root 40539 Apr 16 2018 syscall.h -rw-r--r-- 1 root root 898 Apr 16 2018 sysctl.h -rw-r--r-- 1 root root 1215 Apr 16 2018 sys_errlist.h -rw-r--r-- 1 root root 1684 Apr 16 2018 syslog.h -rw-r--r-- 1 root root 1205 Apr 16 2018 syslog-ldbl.h -rw-r--r-- 1 root root 1060 Apr 16 2018 syslog-path.h -rw-r--r-- 1 root root 2952 Apr 16 2018 sysmacros.h -rw-r--r-- 1 root root 5363 Apr 16 2018 termios.h -rw-r--r-- 1 root root 5610 Apr 16 2018 thread-shared-types.h -rw-r--r-- 1 root root 2998 Apr 16 2018 time.h -rw-r--r-- 1 root root 1102 Apr 16 2018 timerfd.h -rw-r--r-- 1 root root 4595 Apr 16 2018 timex.h drwxr-xr-x 2 root root 4096 Oct 18 00:14 types -rw-r--r-- 1 root root 7990 Apr 16 2018 types.h -rw-r--r-- 1 root root 3397 Apr 16 2018 typesizes.h -rw-r--r-- 1 root root 1541 Apr 16 2018 uintn-identity.h -rw-r--r-- 1 root root 1868 Apr 16 2018 uio-ext.h -rw-r--r-- 1 root root 1384 Apr 16 2018 uio_lim.h -rw-r--r-- 1 root root 13315 Apr 16 2018 unistd.h -rw-r--r-- 1 root root 1089 Apr 16 2018 ustat.h -rw-r--r-- 1 root root 4053 Apr 16 2018 utmp.h -rw-r--r-- 1 root root 3465 Apr 16 2018 utmpx.h -rw-r--r-- 1 root root 1212 Apr 16 2018 utsname.h -rw-r--r-- 1 root root 2217 Apr 16 2018 waitflags.h -rw-r--r-- 1 root root 2286 Apr 16 2018 waitstatus.h -rw-r--r-- 1 root root 20505 Apr 16 2018 wchar2.h -rw-r--r-- 1 root root 1905 Apr 16 2018 wchar.h -rw-r--r-- 1 root root 2423 Apr 16 2018 wchar-ldbl.h -rw-r--r-- 1 root root 6301 Apr 16 2018 wctype-wchar.h -rw-r--r-- 1 root root 442 Apr 16 2018 wordsize.h -rw-r--r-- 1 root root 3857 Apr 16 2018 xopen_lim.h -rw-r--r-- 1 root root 1214 Apr 16 2018 xtitypes.h /usr/include/x86_64-linux-gnu/bits/types: total 128 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 3 root root 12288 Oct 18 00:14 .. -rw-r--r-- 1 root root 174 Apr 16 2018 clockid_t.h -rw-r--r-- 1 root root 143 Apr 16 2018 clock_t.h -rw-r--r-- 1 root root 110 Apr 16 2018 __FILE.h -rw-r--r-- 1 root root 180 Apr 16 2018 FILE.h -rw-r--r-- 1 root root 1721 Apr 16 2018 __locale_t.h -rw-r--r-- 1 root root 982 Apr 16 2018 locale_t.h -rw-r--r-- 1 root root 564 Apr 16 2018 __mbstate_t.h -rw-r--r-- 1 root root 135 Apr 16 2018 mbstate_t.h -rw-r--r-- 1 root root 2009 Apr 16 2018 res_state.h -rw-r--r-- 1 root root 272 Apr 16 2018 sig_atomic_t.h -rw-r--r-- 1 root root 1204 Apr 16 2018 sigevent_t.h -rw-r--r-- 1 root root 3886 Apr 16 2018 siginfo_t.h -rw-r--r-- 1 root root 206 Apr 16 2018 __sigset_t.h -rw-r--r-- 1 root root 195 Apr 16 2018 sigset_t.h -rw-r--r-- 1 root root 1147 Apr 16 2018 __sigval_t.h -rw-r--r-- 1 root root 599 Apr 16 2018 sigval_t.h -rw-r--r-- 1 root root 1061 Apr 16 2018 stack_t.h -rw-r--r-- 1 root root 1065 Apr 16 2018 struct_iovec.h -rw-r--r-- 1 root root 288 Apr 16 2018 struct_itimerspec.h -rw-r--r-- 1 root root 274 Apr 16 2018 struct_osockaddr.h -rw-r--r-- 1 root root 4076 Apr 16 2018 struct_rusage.h -rw-r--r-- 1 root root 1072 Apr 16 2018 struct_sigstack.h -rw-r--r-- 1 root root 321 Apr 16 2018 struct_timespec.h -rw-r--r-- 1 root root 287 Apr 16 2018 struct_timeval.h -rw-r--r-- 1 root root 760 Apr 16 2018 struct_tm.h -rw-r--r-- 1 root root 159 Apr 16 2018 timer_t.h -rw-r--r-- 1 root root 138 Apr 16 2018 time_t.h -rw-r--r-- 1 root root 796 Apr 16 2018 wint_t.h /usr/include/x86_64-linux-gnu/c++: total 12 drwxr-xr-x 3 root root 4096 Oct 18 00:14 . drwxr-xr-x 8 root root 4096 Oct 18 00:14 .. drwxr-xr-x 4 root root 4096 Oct 18 00:14 7 lrwxrwxrwx 1 root root 1 May 8 2019 7.4.0 -> 7 /usr/include/x86_64-linux-gnu/c++/7: total 16 drwxr-xr-x 4 root root 4096 Oct 18 00:14 . drwxr-xr-x 3 root root 4096 Oct 18 00:14 .. drwxr-xr-x 2 root root 4096 Oct 18 00:14 bits drwxr-xr-x 2 root root 4096 Oct 18 00:14 ext /usr/include/x86_64-linux-gnu/c++/7/bits: total 212 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 4 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 1518 May 8 2019 atomic_word.h -rw-r--r-- 1 root root 3442 May 8 2019 basic_file.h -rw-r--r-- 1 root root 1849 May 8 2019 c++allocator.h -rw-r--r-- 1 root root 58031 May 8 2019 c++config.h -rw-r--r-- 1 root root 1608 May 8 2019 c++io.h -rw-r--r-- 1 root root 3307 May 8 2019 c++locale.h -rw-r--r-- 1 root root 1333 May 8 2019 cpu_defines.h -rw-r--r-- 1 root root 2316 May 8 2019 ctype_base.h -rw-r--r-- 1 root root 2284 May 8 2019 ctype_inline.h -rw-r--r-- 1 root root 2096 May 8 2019 cxxabi_tweaks.h -rw-r--r-- 1 root root 5175 May 8 2019 error_constants.h -rw-r--r-- 1 root root 2661 May 8 2019 extc++.h -rw-r--r-- 1 root root 24237 May 8 2019 gthr-default.h -rw-r--r-- 1 root root 5608 May 8 2019 gthr.h -rw-r--r-- 1 root root 24237 May 8 2019 gthr-posix.h -rw-r--r-- 1 root root 6808 May 8 2019 gthr-single.h -rw-r--r-- 1 root root 4516 May 8 2019 messages_members.h -rw-r--r-- 1 root root 6194 May 8 2019 opt_random.h -rw-r--r-- 1 root root 2007 May 8 2019 os_defines.h -rw-r--r-- 1 root root 2874 May 8 2019 stdc++.h -rw-r--r-- 1 root root 1741 May 8 2019 stdtr1c++.h -rw-r--r-- 1 root root 2924 May 8 2019 time_members.h /usr/include/x86_64-linux-gnu/c++/7/ext: total 16 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 4 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 4756 May 8 2019 opt_random.h /usr/include/x86_64-linux-gnu/gnu: total 28 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 8 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 1263 Apr 16 2018 libc-version.h -rw-r--r-- 1 root root 1720 Apr 16 2018 lib-names-64.h -rw-r--r-- 1 root root 467 Apr 16 2018 lib-names.h -rw-r--r-- 1 root root 613 Apr 16 2018 stubs-64.h -rw-r--r-- 1 root root 384 Apr 16 2018 stubs.h /usr/include/x86_64-linux-gnu/python3.6m: total 52 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 8 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 44045 Oct 7 12:59 pyconfig.h /usr/include/x86_64-linux-gnu/sys: total 472 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 8 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 3296 Apr 16 2018 acct.h -rw-r--r-- 1 root root 1282 Apr 16 2018 auxv.h -rw-r--r-- 1 root root 86 Apr 16 2018 bitypes.h -rw-r--r-- 1 root root 17622 Apr 16 2018 cdefs.h -rw-r--r-- 1 root root 3575 Apr 16 2018 debugreg.h -rw-r--r-- 1 root root 921 Apr 16 2018 dir.h -rw-r--r-- 1 root root 1023 Apr 16 2018 elf.h -rw-r--r-- 1 root root 4410 Apr 16 2018 epoll.h -rw-r--r-- 1 root root 19 Apr 16 2018 errno.h -rw-r--r-- 1 root root 1399 Apr 16 2018 eventfd.h -rw-r--r-- 1 root root 1291 Apr 16 2018 fanotify.h -rw-r--r-- 1 root root 19 Apr 16 2018 fcntl.h -rw-r--r-- 1 root root 1721 Apr 16 2018 file.h -rw-r--r-- 1 root root 1187 Apr 16 2018 fsuid.h -rw-r--r-- 1 root root 6210 Apr 16 2018 gmon.h -rw-r--r-- 1 root root 2635 Apr 16 2018 gmon_out.h -rw-r--r-- 1 root root 3837 Apr 16 2018 inotify.h -rw-r--r-- 1 root root 1739 Apr 16 2018 ioctl.h -rw-r--r-- 1 root root 5085 Apr 16 2018 io.h -rw-r--r-- 1 root root 1461 Apr 16 2018 ipc.h -rw-r--r-- 1 root root 1111 Apr 16 2018 kd.h -rw-r--r-- 1 root root 1203 Apr 16 2018 klog.h -rw-r--r-- 1 root root 5551 Apr 16 2018 mman.h -rw-r--r-- 1 root root 5611 Apr 16 2018 mount.h -rw-r--r-- 1 root root 2365 Apr 16 2018 msg.h -rw-r--r-- 1 root root 11162 Apr 16 2018 mtio.h -rw-r--r-- 1 root root 3148 Apr 16 2018 param.h -rw-r--r-- 1 root root 922 Apr 16 2018 pci.h -rw-r--r-- 1 root root 1126 Apr 16 2018 perm.h -rw-r--r-- 1 root root 2722 Apr 16 2018 personality.h -rw-r--r-- 1 root root 2549 Apr 16 2018 poll.h -rw-r--r-- 1 root root 1058 Apr 16 2018 prctl.h -rw-r--r-- 1 root root 4985 Apr 16 2018 procfs.h -rw-r--r-- 1 root root 1958 Apr 16 2018 profil.h -rw-r--r-- 1 root root 5841 Apr 16 2018 ptrace.h -rw-r--r-- 1 root root 19539 Apr 16 2018 queue.h -rw-r--r-- 1 root root 5170 Apr 16 2018 quota.h -rw-r--r-- 1 root root 1443 Apr 16 2018 random.h -rw-r--r-- 1 root root 1181 Apr 16 2018 raw.h -rw-r--r-- 1 root root 1632 Apr 16 2018 reboot.h -rw-r--r-- 1 root root 1826 Apr 16 2018 reg.h -rw-r--r-- 1 root root 3645 Apr 16 2018 resource.h -rw-r--r-- 1 root root 4140 Apr 16 2018 select.h -rw-r--r-- 1 root root 2036 Apr 16 2018 sem.h -rw-r--r-- 1 root root 1805 Apr 16 2018 sendfile.h -rw-r--r-- 1 root root 1873 Apr 16 2018 shm.h -rw-r--r-- 1 root root 1599 Apr 16 2018 signalfd.h -rw-r--r-- 1 root root 20 Apr 16 2018 signal.h -rw-r--r-- 1 root root 10203 Apr 16 2018 socket.h -rw-r--r-- 1 root root 141 Apr 16 2018 socketvar.h -rw-r--r-- 1 root root 29 Apr 16 2018 soundcard.h -rw-r--r-- 1 root root 2093 Apr 16 2018 statfs.h -rw-r--r-- 1 root root 16186 Apr 16 2018 stat.h -rw-r--r-- 1 root root 2819 Apr 16 2018 statvfs.h -rw-r--r-- 1 root root 21 Apr 16 2018 stropts.h -rw-r--r-- 1 root root 1592 Apr 16 2018 swap.h -rw-r--r-- 1 root root 1335 Apr 16 2018 syscall.h -rw-r--r-- 1 root root 2004 Apr 16 2018 sysctl.h -rw-r--r-- 1 root root 1517 Apr 16 2018 sysinfo.h -rw-r--r-- 1 root root 7702 Apr 16 2018 syslog.h -rw-r--r-- 1 root root 4030 Apr 16 2018 sysmacros.h -rw-r--r-- 1 root root 74 Apr 16 2018 termios.h -rw-r--r-- 1 root root 1376 Apr 16 2018 timeb.h -rw-r--r-- 1 root root 6656 Apr 16 2018 time.h -rw-r--r-- 1 root root 1873 Apr 16 2018 timerfd.h -rw-r--r-- 1 root root 1596 Apr 16 2018 times.h -rw-r--r-- 1 root root 2205 Apr 16 2018 timex.h -rw-r--r-- 1 root root 2499 Apr 16 2018 ttychars.h -rw-r--r-- 1 root root 3568 Apr 16 2018 ttydefaults.h -rw-r--r-- 1 root root 6584 Apr 16 2018 types.h -rw-r--r-- 1 root root 5758 Apr 16 2018 ucontext.h -rw-r--r-- 1 root root 6279 Apr 16 2018 uio.h -rw-r--r-- 1 root root 1452 Apr 16 2018 un.h -rw-r--r-- 1 root root 20 Apr 16 2018 unistd.h -rw-r--r-- 1 root root 5207 Apr 16 2018 user.h -rw-r--r-- 1 root root 1140 Apr 16 2018 ustat.h -rw-r--r-- 1 root root 2480 Apr 16 2018 utsname.h -rw-r--r-- 1 root root 161 Apr 16 2018 vfs.h -rw-r--r-- 1 root root 1879 Apr 16 2018 vlimit.h -rw-r--r-- 1 root root 1198 Apr 16 2018 vm86.h -rw-r--r-- 1 root root 22 Apr 16 2018 vt.h -rw-r--r-- 1 root root 2462 Apr 16 2018 vtimes.h -rw-r--r-- 1 root root 5312 Apr 16 2018 wait.h -rw-r--r-- 1 root root 4274 Apr 16 2018 xattr.h /usr/include/xen: total 28 drwxr-xr-x 2 root root 4096 Feb 5 06:03 . drwxr-xr-x 34 root root 4096 Feb 5 06:03 .. -rw-r--r-- 1 root root 3553 Jan 17 13:59 evtchn.h -rw-r--r-- 1 root root 2619 Jan 17 13:59 gntalloc.h -rw-r--r-- 1 root root 7322 Jan 17 13:59 gntdev.h -rw-r--r-- 1 root root 3992 Jan 17 13:59 privcmd.h /usr/include/xfs: total 8 drwxr-xr-x 2 root root 4096 Apr 18 2018 . drwxr-xr-x 34 root root 4096 Feb 5 06:03 .. /usr/lib: total 1236 drwxr-xr-x 65 root root 4096 Oct 30 21:02 . drwxr-xr-x 10 root root 4096 Aug 5 2019 .. drwxr-xr-x 2 root root 4096 Aug 5 2019 accountsservice drwxr-xr-x 5 root root 4096 Aug 5 2019 apt drwxr-xr-x 2 root root 4096 Oct 18 00:14 bfd-plugins drwxr-xr-x 2 root root 4096 Apr 20 2018 binfmt.d drwxr-xr-x 3 root root 4096 Aug 5 2019 byobu drwxr-xr-x 2 root root 4096 Aug 5 2019 cloud-init -rwxr-xr-x 1 root root 684 May 5 2018 cnf-update-db -rwxr-xr-x 1 root root 3300 May 5 2018 command-not-found drwxr-xr-x 2 root root 4096 Oct 18 00:13 compat-ld drwxr-xr-x 2 root root 4096 Aug 5 2019 dbus-1.0 drwxr-xr-x 3 root root 4096 Aug 5 2019 dpkg drwxr-xr-x 3 root root 4096 Aug 5 2019 dracut drwxr-xr-x 2 root root 4096 Aug 5 2019 eject drwxr-xr-x 2 root root 4096 Feb 6 06:24 environment.d drwxr-xr-x 2 root root 4096 Oct 30 20:26 file drwxr-xr-x 3 root root 4096 Apr 16 2018 gcc drwxr-xr-x 3 root root 20480 Dec 16 22:19 git-core drwxr-xr-x 2 root root 4096 Aug 5 2019 gnupg drwxr-xr-x 2 root root 4096 Aug 5 2019 gnupg2 drwxr-xr-x 2 root root 4096 Oct 18 00:13 gold-ld drwxr-xr-x 4 root root 4096 Aug 5 2019 groff drwxr-xr-x 3 root root 4096 Aug 12 2019 grub drwxr-xr-x 2 root root 4096 Aug 12 2019 grub-legacy drwxr-xr-x 3 root root 4096 Aug 5 2019 initcpio drwxr-xr-x 4 root root 4096 Aug 5 2019 initramfs-tools drwxr-xr-x 3 root root 4096 Aug 5 2019 kernel drwxr-xr-x 3 root root 4096 Aug 5 2019 klibc drwxr-xr-x 2 root root 4096 Aug 5 2019 language-selector lrwxrwxrwx 1 root root 21 May 14 2019 libDeployPkg.so.0 -> libDeployPkg.so.0.0.0 -rw-r--r-- 1 root root 31296 May 14 2019 libDeployPkg.so.0.0.0 lrwxrwxrwx 1 root root 20 May 14 2019 libguestlib.so.0 -> libguestlib.so.0.0.0 -rw-r--r-- 1 root root 22656 May 14 2019 libguestlib.so.0.0.0 lrwxrwxrwx 1 root root 16 May 14 2019 libhgfs.so.0 -> libhgfs.so.0.0.0 -rw-r--r-- 1 root root 163152 May 14 2019 libhgfs.so.0.0.0 lrwxrwxrwx 1 root root 18 May 14 2019 libvgauth.so.0 -> libvgauth.so.0.0.0 -rw-r--r-- 1 root root 85144 May 14 2019 libvgauth.so.0.0.0 lrwxrwxrwx 1 root root 19 May 14 2019 libvmtools.so.0 -> libvmtools.so.0.0.0 -rw-r--r-- 1 root root 623592 May 14 2019 libvmtools.so.0.0.0 drwxr-xr-x 3 root root 4096 Aug 12 2019 linux drwxr-xr-x 3 root root 4096 Aug 12 2019 linux-boot-probes drwxr-xr-x 3 root root 4096 Aug 12 2019 locale drwxr-xr-x 2 root root 4096 Aug 5 2019 lxcfs drwxr-xr-x 2 root root 4096 Aug 5 2019 lxd drwxr-xr-x 2 root root 4096 Aug 5 2019 man-db drwxr-xr-x 3 root root 4096 Aug 5 2019 mime drwxr-xr-x 2 root root 4096 Apr 20 2018 modules-load.d drwxr-xr-x 6 root root 4096 Aug 5 2019 networkd-dispatcher drwxr-xr-x 2 root root 4096 Aug 12 2019 openssh drwxr-xr-x 3 root root 4096 Aug 5 2019 open-vm-tools drwxr-xr-x 2 root root 4096 Aug 12 2019 os-prober drwxr-xr-x 4 root root 4096 Aug 12 2019 os-probes -rw-r--r-- 1 root root 386 Aug 5 2019 os-release drwxr-xr-x 4 root root 4096 Aug 5 2019 pm-utils drwxr-xr-x 2 root root 4096 Aug 5 2019 policykit-1 drwxr-xr-x 3 root root 4096 Aug 5 2019 python2.7 drwxr-xr-x 3 root root 4096 Aug 5 2019 python3 drwxr-xr-x 30 root root 20480 Oct 18 00:14 python3.6 drwxr-xr-x 5 root root 4096 Oct 18 00:14 python3.7 drwxr-xr-x 2 root root 4096 Aug 5 2019 rsyslog drwxr-xr-x 2 root root 4096 Feb 5 2018 sasl2 lrwxrwxrwx 1 root root 19 Mar 4 2019 sftp-server -> openssh/sftp-server drwxr-xr-x 2 root root 4096 Aug 5 2019 snapd drwxr-xr-x 2 root root 4096 Aug 14 2019 software-properties drwxr-xr-x 3 root root 4096 Nov 20 07:00 ssl drwxr-xr-x 2 root root 4096 Feb 5 06:03 sudo drwxr-xr-x 2 root root 4096 Feb 6 06:24 sysctl.d drwxr-xr-x 2 root root 4096 Feb 5 06:03 sysstat drwxr-xr-x 11 root root 4096 Aug 5 2019 systemd drwxr-xr-x 2 root root 4096 Aug 5 2019 sysusers.d drwxr-xr-x 2 root root 4096 Jul 21 2017 tar drwxr-xr-x 2 root root 4096 Aug 5 2019 tc drwxr-xr-x 2 root root 4096 Feb 6 06:24 tmpfiles.d drwxr-xr-x 2 root root 4096 Aug 14 2019 ubuntu-fan drwxr-xr-x 2 root root 4096 Aug 5 2019 ubuntu-release-upgrader drwxr-xr-x 2 root root 4096 Aug 5 2019 update-notifier drwxr-xr-x 2 root root 4096 Aug 5 2019 valgrind drwxr-xr-x 27 root root 20480 Feb 14 02:07 x86_64-linux-gnu /usr/lib/accountsservice: total 188 drwxr-xr-x 2 root root 4096 Aug 5 2019 . drwxr-xr-x 65 root root 4096 Oct 30 21:02 .. -rwxr-xr-x 1 root root 182552 Dec 18 2017 accounts-daemon /usr/lib/apt: total 68 drwxr-xr-x 5 root root 4096 Aug 5 2019 . drwxr-xr-x 65 root root 4096 Oct 30 21:02 .. -rwxr-xr-x 1 root root 31040 May 7 2019 apt-helper -rwxr-xr-x 1 root root 16026 May 7 2019 apt.systemd.daily drwxr-xr-x 2 root root 4096 Aug 5 2019 methods drwxr-xr-x 2 root root 4096 Aug 5 2019 planners drwxr-xr-x 2 root root 4096 Aug 5 2019 solvers /usr/lib/apt/methods: total 764 drwxr-xr-x 2 root root 4096 Aug 5 2019 . drwxr-xr-x 5 root root 4096 Aug 5 2019 .. -rwxr-xr-x 1 root root 55456 May 7 2019 cdrom -rwxr-xr-x 1 root root 39072 May 7 2019 copy -rwxr-xr-x 1 root root 39072 May 7 2019 file -rwxr-xr-x 1 root root 116992 May 7 2019 ftp -rwxr-xr-x 1 root root 75936 May 7 2019 gpgv -rwxr-xr-x 1 root root 166056 May 7 2019 http lrwxrwxrwx 1 root root 4 May 7 2019 https -> http -rwxr-xr-x 1 root root 100512 May 7 2019 mirror lrwxrwxrwx 1 root root 6 May 7 2019 mirror+copy -> mirror lrwxrwxrwx 1 root root 6 May 7 2019 mirror+file -> mirror lrwxrwxrwx 1 root root 6 May 7 2019 mirror+ftp -> mirror lrwxrwxrwx 1 root root 6 May 7 2019 mirror+http -> mirror lrwxrwxrwx 1 root root 6 May 7 2019 mirror+https -> mirror -rwxr-xr-x 1 root root 67744 May 7 2019 rred -rwxr-xr-x 1 root root 51376 May 7 2019 rsh lrwxrwxrwx 1 root root 3 May 7 2019 ssh -> rsh -rwxr-xr-x 1 root root 43168 May 7 2019 store /usr/lib/apt/planners: total 28 drwxr-xr-x 2 root root 4096 Aug 5 2019 . drwxr-xr-x 5 root root 4096 Aug 5 2019 .. -rwxr-xr-x 1 root root 18592 May 7 2019 apt lrwxrwxrwx 1 root root 15 May 7 2019 dump -> ../solvers/dump /usr/lib/apt/solvers: total 52 drwxr-xr-x 2 root root 4096 Aug 5 2019 . drwxr-xr-x 5 root root 4096 Aug 5 2019 .. -rwxr-xr-x 1 root root 22688 May 7 2019 apt -rwxr-xr-x 1 root root 18520 May 7 2019 dump /usr/lib/bfd-plugins: total 8 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 65 root root 4096 Oct 30 21:02 .. lrwxrwxrwx 1 root root 42 May 20 2019 liblto_plugin.so -> ../gcc/x86_64-linux-gnu/7/liblto_plugin.so /usr/lib/binfmt.d: total 8 drwxr-xr-x 2 root root 4096 Apr 20 2018 . drwxr-xr-x 65 root root 4096 Oct 30 21:02 .. /usr/lib/byobu: total 188 drwxr-xr-x 3 root root 4096 Aug 5 2019 . drwxr-xr-x 65 root root 4096 Oct 30 21:02 .. -rwxr-xr-x 1 root root 1543 Dec 4 2017 apport -rwxr-xr-x 1 root root 916 Dec 4 2017 arch -rwxr-xr-x 1 root root 4202 Dec 4 2017 battery -rwxr-xr-x 1 root root 1061 Dec 4 2017 color -rwxr-xr-x 1 root root 1055 Dec 4 2017 cpu_count -rwxr-xr-x 1 root root 1882 Dec 4 2017 cpu_freq -rwxr-xr-x 1 root root 1828 Dec 4 2017 cpu_temp -rwxr-xr-x 1 root root 1927 Dec 4 2017 custom -rwxr-xr-x 1 root root 990 Dec 4 2017 date -rwxr-xr-x 1 root root 1846 Dec 4 2017 disk -rwxr-xr-x 1 root root 2991 Dec 4 2017 disk_io -rwxr-xr-x 1 root root 1060 Dec 4 2017 distro -rwxr-xr-x 1 root root 4316 Dec 4 2017 ec2_cost -rwxr-xr-x 1 root root 1089 Dec 4 2017 entropy -rwxr-xr-x 1 root root 1894 Dec 4 2017 fan_speed -rwxr-xr-x 1 root root 1329 Dec 4 2017 hostname drwxr-xr-x 3 root root 4096 Aug 5 2019 include -rwxr-xr-x 1 root root 3097 Dec 4 2017 ip_address -rwxr-xr-x 1 root root 1123 Dec 4 2017 load_average -rwxr-xr-x 1 root root 4009 Dec 4 2017 logo -rwxr-xr-x 1 root root 1337 Dec 4 2017 mail -rwxr-xr-x 1 root root 2675 Dec 4 2017 memory -rwxr-xr-x 1 root root 1651 Dec 4 2017 menu -rwxr-xr-x 1 root root 3172 Dec 4 2017 network -rwxr-xr-x 1 root root 1152 Dec 4 2017 processes -rwxr-xr-x 1 root root 1434 Dec 4 2017 raid -rwxr-xr-x 1 root root 3639 Dec 4 2017 rcs_cost -rwxr-xr-x 1 root root 2206 Dec 4 2017 reboot_required -rwxr-xr-x 1 root root 1872 Dec 4 2017 release -rwxr-xr-x 1 root root 2135 Dec 4 2017 services -rwxr-xr-x 1 root root 1311 Dec 4 2017 session -rwxr-xr-x 1 root root 1792 Dec 4 2017 swap -rwxr-xr-x 1 root root 1081 Dec 4 2017 time -rwxr-xr-x 1 root root 4278 Dec 4 2017 time_binary -rwxr-xr-x 1 root root 960 Dec 4 2017 time_utc -rwxr-xr-x 1 root root 1159 Dec 4 2017 trash -rwxr-xr-x 1 root root 5151 Dec 4 2017 updates_available -rwxr-xr-x 1 root root 1676 Dec 4 2017 uptime -rwxr-xr-x 1 root root 1550 Dec 4 2017 users -rwxr-xr-x 1 root root 959 Dec 4 2017 whoami -rwxr-xr-x 1 root root 1898 Dec 4 2017 wifi_quality /usr/lib/byobu/include: total 120 drwxr-xr-x 3 root root 4096 Aug 5 2019 . drwxr-xr-x 3 root root 4096 Aug 5 2019 .. -rwxr-xr-x 1 root root 1049 Dec 4 2017 colors -rwxr-xr-x 1 root root 1953 Dec 4 2017 common -rwxr-xr-x 1 root root 10709 Dec 4 2017 config.py -rwxr-xr-x 1 root root 2396 Dec 4 2017 constants -rwxr-xr-x 1 root root 1379 Dec 4 2017 cycle-status -rwxr-xr-x 1 root root 2641 Dec 4 2017 dirs -rwxr-xr-x 1 root root 24418 Dec 4 2017 ec2instancespricing.py -rwxr-xr-x 1 root root 1881 Dec 4 2017 icons -rwxr-xr-x 1 root root 4572 Dec 4 2017 mondrian -rwxr-xr-x 1 root root 1782 Dec 4 2017 notify_osd drwxr-xr-x 2 root root 4096 Aug 5 2019 __pycache__ -rwxr-xr-x 1 root root 6797 Dec 4 2017 select-session.py -rwxr-xr-x 1 root root 8707 Dec 4 2017 shutil -rwxr-xr-x 1 root root 1595 Dec 4 2017 tmux-detach-all-but-current-client -rwxr-xr-x 1 root root 955 Dec 4 2017 tmux-send-command-to-all-panes -rwxr-xr-x 1 root root 881 Dec 4 2017 tmux-send-command-to-all-windows -rwxr-xr-x 1 root root 1694 Dec 4 2017 toggle-utf8 /usr/lib/byobu/include/__pycache__: total 44 drwxr-xr-x 2 root root 4096 Aug 5 2019 . drwxr-xr-x 3 root root 4096 Aug 5 2019 .. -rw-r--r-- 1 root root 9974 Aug 5 2019 config.cpython-36.pyc -rw-r--r-- 1 root root 12699 Aug 5 2019 ec2instancespricing.cpython-36.pyc -rw-r--r-- 1 root root 4261 Aug 5 2019 select-session.cpython-36.pyc /usr/lib/cloud-init: total 64 drwxr-xr-x 2 root root 4096 Aug 5 2019 . drwxr-xr-x 65 root root 4096 Oct 30 21:02 .. -rwxr-xr-x 1 root root 44208 May 10 2019 ds-identify -rwxr-xr-x 1 root root 4116 May 10 2019 uncloud-init -rwxr-xr-x 1 root root 1135 May 10 2019 write-ssh-key-fingerprints /usr/lib/compat-ld: total 8 drwxr-xr-x 2 root root 4096 Oct 18 00:13 . drwxr-xr-x 65 root root 4096 Oct 30 21:02 .. lrwxrwxrwx 1 root root 16 May 8 2019 ld -> ../../bin/ld.bfd /usr/lib/dbus-1.0: total 52 drwxr-xr-x 2 root root 4096 Aug 5 2019 . drwxr-xr-x 65 root root 4096 Oct 30 21:02 .. -rwsr-xr-- 1 root messagebus 42992 Jun 10 2019 dbus-daemon-launch-helper /usr/lib/dpkg: total 12 drwxr-xr-x 3 root root 4096 Aug 5 2019 . drwxr-xr-x 65 root root 4096 Oct 30 21:02 .. drwxr-xr-x 3 root root 4096 Aug 5 2019 methods /usr/lib/dpkg/methods: total 12 drwxr-xr-x 3 root root 4096 Aug 5 2019 . drwxr-xr-x 3 root root 4096 Aug 5 2019 .. drwxr-xr-x 2 root root 4096 Aug 5 2019 apt /usr/lib/dpkg/methods/apt: total 32 drwxr-xr-x 2 root root 4096 Aug 5 2019 . drwxr-xr-x 3 root root 4096 Aug 5 2019 .. -rw-r--r-- 1 root root 567 May 7 2019 desc.apt -rwxr-xr-x 1 root root 2861 May 7 2019 install -rw-r--r-- 1 root root 39 May 7 2019 names -rwxr-xr-x 1 root root 7728 May 7 2019 setup -rwxr-xr-x 1 root root 1242 May 7 2019 update /usr/lib/dracut: total 12 drwxr-xr-x 3 root root 4096 Aug 5 2019 . drwxr-xr-x 65 root root 4096 Oct 30 21:02 .. drwxr-xr-x 3 root root 4096 Aug 5 2019 modules.d /usr/lib/dracut/modules.d: total 12 drwxr-xr-x 3 root root 4096 Aug 5 2019 . drwxr-xr-x 3 root root 4096 Aug 5 2019 .. drwxr-xr-x 2 root root 4096 Aug 5 2019 90bcache /usr/lib/dracut/modules.d/90bcache: total 12 drwxr-xr-x 2 root root 4096 Aug 5 2019 . drwxr-xr-x 3 root root 4096 Aug 5 2019 .. -rwxr-xr-x 1 root root 696 Apr 21 2017 module-setup.sh /usr/lib/eject: total 20 drwxr-xr-x 2 root root 4096 Aug 5 2019 . drwxr-xr-x 65 root root 4096 Oct 30 21:02 .. -rwsr-xr-x 1 root root 10232 Mar 28 2017 dmcrypt-get-device /usr/lib/environment.d: total 12 drwxr-xr-x 2 root root 4096 Feb 6 06:24 . drwxr-xr-x 65 root root 4096 Oct 30 21:02 .. -rw-r--r-- 1 root root 21 Jun 5 2019 990-snapd.conf lrwxrwxrwx 1 root root 16 Feb 5 01:07 99-environment.conf -> /etc/environment /usr/lib/file: total 4856 drwxr-xr-x 2 root root 4096 Oct 30 20:26 . drwxr-xr-x 65 root root 4096 Oct 30 21:02 .. -rw-r--r-- 1 root root 4961856 Oct 29 16:50 magic.mgc /usr/lib/gcc: total 12 drwxr-xr-x 3 root root 4096 Apr 16 2018 . drwxr-xr-x 65 root root 4096 Oct 30 21:02 .. drwxr-xr-x 4 root root 4096 Oct 18 00:14 x86_64-linux-gnu /usr/lib/gcc/x86_64-linux-gnu: total 16 drwxr-xr-x 4 root root 4096 Oct 18 00:14 . drwxr-xr-x 3 root root 4096 Apr 16 2018 .. drwxr-xr-x 5 root root 4096 Oct 18 00:14 7 lrwxrwxrwx 1 root root 1 May 8 2019 7.4.0 -> 7 drwxr-xr-x 2 root root 4096 Apr 16 2018 8 /usr/lib/gcc/x86_64-linux-gnu/7: total 84096 drwxr-xr-x 5 root root 4096 Oct 18 00:14 . drwxr-xr-x 4 root root 4096 Oct 18 00:14 .. -rwxr-xr-x 1 root root 22256464 May 8 2019 cc1 -rwxr-xr-x 1 root root 23604080 May 8 2019 cc1plus -rwxr-xr-x 1 root root 577760 May 8 2019 collect2 -rw-r--r-- 1 root root 2456 May 8 2019 crtbegin.o -rw-r--r-- 1 root root 2824 May 8 2019 crtbeginS.o -rw-r--r-- 1 root root 2976 May 8 2019 crtbeginT.o -rw-r--r-- 1 root root 1224 May 8 2019 crtend.o -rw-r--r-- 1 root root 1224 May 8 2019 crtendS.o -rw-r--r-- 1 root root 3760 May 8 2019 crtfastmath.o -rw-r--r-- 1 root root 1248 May 8 2019 crtoffloadbegin.o -rw-r--r-- 1 root root 1248 May 8 2019 crtoffloadend.o -rw-r--r-- 1 root root 1464 May 8 2019 crtoffloadtable.o -rw-r--r-- 1 root root 3368 May 8 2019 crtprec32.o -rw-r--r-- 1 root root 3376 May 8 2019 crtprec64.o -rw-r--r-- 1 root root 3368 May 8 2019 crtprec80.o drwxr-xr-x 4 root root 4096 Oct 18 00:14 include drwxr-xr-x 2 root root 4096 Oct 18 00:14 include-fixed -rw-r--r-- 1 root root 2925550 May 8 2019 libasan.a -rw-r--r-- 1 root root 17808 May 8 2019 libasan_preinit.o lrwxrwxrwx 1 root root 38 May 8 2019 libasan.so -> ../../../x86_64-linux-gnu/libasan.so.4 -rw-r--r-- 1 root root 119194 May 8 2019 libatomic.a lrwxrwxrwx 1 root root 40 May 8 2019 libatomic.so -> ../../../x86_64-linux-gnu/libatomic.so.1 -rw-r--r-- 1 root root 70210 May 8 2019 libbacktrace.a lrwxrwxrwx 1 root root 37 May 8 2019 libcc1.so -> ../../../x86_64-linux-gnu/libcc1.so.0 -rw-r--r-- 1 root root 277408 May 8 2019 libcilkrts.a lrwxrwxrwx 1 root root 41 May 8 2019 libcilkrts.so -> ../../../x86_64-linux-gnu/libcilkrts.so.5 -rw-r--r-- 1 root root 173 May 8 2019 libcilkrts.spec -rw-r--r-- 1 root root 3003558 May 8 2019 libgcc.a -rw-r--r-- 1 root root 51748 May 8 2019 libgcc_eh.a -rw-r--r-- 1 root root 132 May 8 2019 libgcc_s.so lrwxrwxrwx 1 root root 35 May 8 2019 libgcc_s.so.1 -> /lib/x86_64-linux-gnu/libgcc_s.so.1 -rw-r--r-- 1 root root 58898 May 8 2019 libgcov.a -rw-r--r-- 1 root root 352114 May 8 2019 libgomp.a lrwxrwxrwx 1 root root 38 May 8 2019 libgomp.so -> ../../../x86_64-linux-gnu/libgomp.so.1 -rw-r--r-- 1 root root 169 May 8 2019 libgomp.spec -rw-r--r-- 1 root root 222358 May 8 2019 libitm.a lrwxrwxrwx 1 root root 37 May 8 2019 libitm.so -> ../../../x86_64-linux-gnu/libitm.so.1 -rw-r--r-- 1 root root 162 May 8 2019 libitm.spec -rw-r--r-- 1 root root 867742 May 8 2019 liblsan.a lrwxrwxrwx 1 root root 38 May 8 2019 liblsan.so -> ../../../x86_64-linux-gnu/liblsan.so.0 lrwxrwxrwx 1 root root 22 May 8 2019 liblto_plugin.so -> liblto_plugin.so.0.0.0 lrwxrwxrwx 1 root root 22 May 8 2019 liblto_plugin.so.0 -> liblto_plugin.so.0.0.0 -rw-r--r-- 1 root root 76576 May 8 2019 liblto_plugin.so.0.0.0 -rw-r--r-- 1 root root 25732 May 8 2019 libmpx.a lrwxrwxrwx 1 root root 37 May 8 2019 libmpx.so -> ../../../x86_64-linux-gnu/libmpx.so.2 -rw-r--r-- 1 root root 156 May 8 2019 libmpx.spec -rw-r--r-- 1 root root 12100 May 8 2019 libmpxwrappers.a lrwxrwxrwx 1 root root 45 May 8 2019 libmpxwrappers.so -> ../../../x86_64-linux-gnu/libmpxwrappers.so.2 -rw-r--r-- 1 root root 569496 May 8 2019 libquadmath.a lrwxrwxrwx 1 root root 42 May 8 2019 libquadmath.so -> ../../../x86_64-linux-gnu/libquadmath.so.0 -rw-r--r-- 1 root root 320 May 8 2019 libsanitizer.spec -rw-r--r-- 1 root root 1486 May 8 2019 libssp_nonshared.a -rw-r--r-- 1 root root 4783610 May 8 2019 libstdc++.a -rw-r--r-- 1 root root 680216 May 8 2019 libstdc++fs.a lrwxrwxrwx 1 root root 40 May 8 2019 libstdc++.so -> ../../../x86_64-linux-gnu/libstdc++.so.6 -rw-r--r-- 1 root root 363654 May 8 2019 libsupc++.a -rw-r--r-- 1 root root 2036204 May 8 2019 libtsan.a lrwxrwxrwx 1 root root 38 May 8 2019 libtsan.so -> ../../../x86_64-linux-gnu/libtsan.so.0 -rw-r--r-- 1 root root 811530 May 8 2019 libubsan.a lrwxrwxrwx 1 root root 39 May 8 2019 libubsan.so -> ../../../x86_64-linux-gnu/libubsan.so.0 -rwxr-xr-x 1 root root 21301200 May 8 2019 lto1 -rwxr-xr-x 1 root root 893240 May 8 2019 lto-wrapper drwxr-xr-x 2 root root 4096 Oct 18 00:14 plugin /usr/lib/gcc/x86_64-linux-gnu/7/include: total 2004 drwxr-xr-x 4 root root 4096 Oct 18 00:14 . drwxr-xr-x 5 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 2865 May 8 2019 adxintrin.h -rw-r--r-- 1 root root 3216 May 8 2019 ammintrin.h -rw-r--r-- 1 root root 58030 May 8 2019 avx2intrin.h -rw-r--r-- 1 root root 6535 May 8 2019 avx5124fmapsintrin.h -rw-r--r-- 1 root root 4256 May 8 2019 avx5124vnniwintrin.h -rw-r--r-- 1 root root 100776 May 8 2019 avx512bwintrin.h -rw-r--r-- 1 root root 5822 May 8 2019 avx512cdintrin.h -rw-r--r-- 1 root root 77963 May 8 2019 avx512dqintrin.h -rw-r--r-- 1 root root 12965 May 8 2019 avx512erintrin.h -rw-r--r-- 1 root root 438944 May 8 2019 avx512fintrin.h -rw-r--r-- 1 root root 3430 May 8 2019 avx512ifmaintrin.h -rw-r--r-- 1 root root 5385 May 8 2019 avx512ifmavlintrin.h -rw-r--r-- 1 root root 10038 May 8 2019 avx512pfintrin.h -rw-r--r-- 1 root root 4921 May 8 2019 avx512vbmiintrin.h -rw-r--r-- 1 root root 8364 May 8 2019 avx512vbmivlintrin.h -rw-r--r-- 1 root root 142308 May 8 2019 avx512vlbwintrin.h -rw-r--r-- 1 root root 61317 May 8 2019 avx512vldqintrin.h -rw-r--r-- 1 root root 423232 May 8 2019 avx512vlintrin.h -rw-r--r-- 1 root root 3105 May 8 2019 avx512vpopcntdqintrin.h -rw-r--r-- 1 root root 49383 May 8 2019 avxintrin.h -rw-r--r-- 1 root root 8754 May 8 2019 backtrace.h -rw-r--r-- 1 root root 2982 May 8 2019 backtrace-supported.h -rw-r--r-- 1 root root 3388 May 8 2019 bmi2intrin.h -rw-r--r-- 1 root root 5628 May 8 2019 bmiintrin.h -rw-r--r-- 1 root root 1154 May 8 2019 bmmintrin.h drwxr-xr-x 2 root root 4096 Oct 18 00:14 cilk -rw-r--r-- 1 root root 1663 May 8 2019 clflushoptintrin.h -rw-r--r-- 1 root root 1585 May 8 2019 clwbintrin.h -rw-r--r-- 1 root root 1491 May 8 2019 clzerointrin.h -rw-r--r-- 1 root root 7939 May 8 2019 cpuid.h -rw-r--r-- 1 root root 2558 May 8 2019 cross-stdarg.h -rw-r--r-- 1 root root 51033 May 8 2019 emmintrin.h -rw-r--r-- 1 root root 3406 May 8 2019 f16cintrin.h -rw-r--r-- 1 root root 16917 May 8 2019 float.h -rw-r--r-- 1 root root 9132 May 8 2019 fma4intrin.h -rw-r--r-- 1 root root 10536 May 8 2019 fmaintrin.h -rw-r--r-- 1 root root 2108 May 8 2019 fxsrintrin.h -rw-r--r-- 1 root root 1389 May 8 2019 gcov.h -rw-r--r-- 1 root root 7817 May 8 2019 ia32intrin.h -rw-r--r-- 1 root root 4984 May 8 2019 immintrin.h -rw-r--r-- 1 root root 1272 May 8 2019 iso646.h -rw-r--r-- 1 root root 3400 May 8 2019 lwpintrin.h -rw-r--r-- 1 root root 2398 May 8 2019 lzcntintrin.h -rw-r--r-- 1 root root 7076 May 8 2019 mm3dnow.h -rw-r--r-- 1 root root 31354 May 8 2019 mmintrin.h -rw-r--r-- 1 root root 1783 May 8 2019 mm_malloc.h -rw-r--r-- 1 root root 1747 May 8 2019 mwaitxintrin.h -rw-r--r-- 1 root root 1288 May 8 2019 nmmintrin.h -rw-r--r-- 1 root root 6092 May 8 2019 omp.h -rw-r--r-- 1 root root 4655 May 8 2019 openacc.h -rw-r--r-- 1 root root 1741 May 8 2019 pkuintrin.h -rw-r--r-- 1 root root 4368 May 8 2019 pmmintrin.h -rw-r--r-- 1 root root 1750 May 8 2019 popcntintrin.h -rw-r--r-- 1 root root 1447 May 8 2019 prfchwintrin.h -rw-r--r-- 1 root root 9085 May 8 2019 quadmath.h -rw-r--r-- 1 root root 3146 May 8 2019 quadmath_weak.h -rw-r--r-- 1 root root 2017 May 8 2019 rdseedintrin.h -rw-r--r-- 1 root root 2733 May 8 2019 rtmintrin.h drwxr-xr-x 2 root root 4096 Oct 18 00:14 sanitizer -rw-r--r-- 1 root root 4530 May 8 2019 sgxintrin.h -rw-r--r-- 1 root root 3198 May 8 2019 shaintrin.h -rw-r--r-- 1 root root 28405 May 8 2019 smmintrin.h -rw-r--r-- 1 root root 1210 May 8 2019 stdalign.h -rw-r--r-- 1 root root 4072 May 8 2019 stdarg.h -rw-r--r-- 1 root root 9321 May 8 2019 stdatomic.h -rw-r--r-- 1 root root 1524 May 8 2019 stdbool.h -rw-r--r-- 1 root root 14140 May 8 2019 stddef.h -rw-r--r-- 1 root root 6000 May 8 2019 stdfix.h -rw-r--r-- 1 root root 9457 May 8 2019 stdint-gcc.h -rw-r--r-- 1 root root 328 May 8 2019 stdint.h -rw-r--r-- 1 root root 1136 May 8 2019 stdnoreturn.h -rw-r--r-- 1 root root 5242 May 8 2019 tbmintrin.h -rw-r--r-- 1 root root 8343 May 8 2019 tmmintrin.h -rw-r--r-- 1 root root 10717 May 8 2019 unwind.h -rw-r--r-- 1 root root 139 May 8 2019 varargs.h -rw-r--r-- 1 root root 4590 May 8 2019 wmmintrin.h -rw-r--r-- 1 root root 2054 May 8 2019 x86intrin.h -rw-r--r-- 1 root root 42210 May 8 2019 xmmintrin.h -rw-r--r-- 1 root root 28566 May 8 2019 xopintrin.h -rw-r--r-- 1 root root 1821 May 8 2019 xsavecintrin.h -rw-r--r-- 1 root root 2190 May 8 2019 xsaveintrin.h -rw-r--r-- 1 root root 1903 May 8 2019 xsaveoptintrin.h -rw-r--r-- 1 root root 2157 May 8 2019 xsavesintrin.h -rw-r--r-- 1 root root 1687 May 8 2019 xtestintrin.h /usr/lib/gcc/x86_64-linux-gnu/7/include/cilk: total 580 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 4 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 15236 May 8 2019 cilk_api.h -rw-r--r-- 1 root root 2445 May 8 2019 cilk_api_linux.h -rw-r--r-- 1 root root 3541 May 8 2019 cilk.h -rw-r--r-- 1 root root 3007 May 8 2019 cilk_stub.h -rw-r--r-- 1 root root 4743 May 8 2019 cilk_undocumented.h -rw-r--r-- 1 root root 13162 May 8 2019 common.h -rw-r--r-- 1 root root 38881 May 8 2019 holder.h -rw-r--r-- 1 root root 7107 May 8 2019 hyperobject_base.h -rw-r--r-- 1 root root 21801 May 8 2019 metaprogramming.h -rw-r--r-- 1 root root 2363 May 8 2019 reducer_file.h -rw-r--r-- 1 root root 76234 May 8 2019 reducer.h -rw-r--r-- 1 root root 42065 May 8 2019 reducer_list.h -rw-r--r-- 1 root root 2591 May 8 2019 reducer_max.h -rw-r--r-- 1 root root 2591 May 8 2019 reducer_min.h -rw-r--r-- 1 root root 149159 May 8 2019 reducer_min_max.h -rw-r--r-- 1 root root 26215 May 8 2019 reducer_opadd.h -rw-r--r-- 1 root root 22726 May 8 2019 reducer_opand.h -rw-r--r-- 1 root root 16961 May 8 2019 reducer_opmul.h -rw-r--r-- 1 root root 22452 May 8 2019 reducer_opor.h -rw-r--r-- 1 root root 22561 May 8 2019 reducer_opxor.h -rw-r--r-- 1 root root 20100 May 8 2019 reducer_ostream.h -rw-r--r-- 1 root root 27509 May 8 2019 reducer_string.h /usr/lib/gcc/x86_64-linux-gnu/7/include/sanitizer: total 32 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 4 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 7022 May 8 2019 asan_interface.h -rw-r--r-- 1 root root 9855 May 8 2019 common_interface_defs.h -rw-r--r-- 1 root root 3529 May 8 2019 lsan_interface.h /usr/lib/gcc/x86_64-linux-gnu/7/include-fixed: total 24 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 5 root root 4096 Oct 18 00:14 .. -rw-r--r-- 1 root root 6089 May 8 2019 limits.h -rw-r--r-- 1 root root 750 May 8 2019 README -rw-r--r-- 1 root root 330 May 8 2019 syslimits.h /usr/lib/gcc/x86_64-linux-gnu/7/plugin: total 188 drwxr-xr-x 2 root root 4096 Oct 18 00:14 . drwxr-xr-x 5 root root 4096 Oct 18 00:14 .. lrwxrwxrwx 1 root root 21 May 8 2019 libcc1plugin.so -> libcc1plugin.so.0.0.0 lrwxrwxrwx 1 root root 21 May 8 2019 libcc1plugin.so.0 -> libcc1plugin.so.0.0.0 -rw-r--r-- 1 root root 56104 May 8 2019 libcc1plugin.so.0.0.0 lrwxrwxrwx 1 root root 21 May 8 2019 libcp1plugin.so -> libcp1plugin.so.0.0.0 lrwxrwxrwx 1 root root 21 May 8 2019 libcp1plugin.so.0 -> libcp1plugin.so.0.0.0 -rw-r--r-- 1 root root 126752 May 8 2019 libcp1plugin.so.0.0.0 /usr/lib/gcc/x86_64-linux-gnu/8: total 8 drwxr-xr-x 2 root root 4096 Apr 16 2018 . drwxr-xr-x 4 root root 4096 Oct 18 00:14 .. /usr/lib/git-core: total 22136 drwxr-xr-x 3 root root 20480 Dec 16 22:19 . drwxr-xr-x 65 root root 4096 Oct 30 21:02 .. -rwxr-xr-x 1 root root 2347696 Dec 9 13:29 git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-add -> git -rwxr-xr-x 1 root root 43919 Dec 9 13:29 git-add--interactive lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-am -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-annotate -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-apply -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-archive -> git -rwxr-xr-x 1 root root 14444 Dec 9 13:29 git-bisect lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-bisect--helper -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-blame -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-branch -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-bundle -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-cat-file -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-check-attr -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-check-ignore -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-check-mailmap -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-checkout -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-checkout-index -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-check-ref-format -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-cherry -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-cherry-pick -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-clean -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-clone -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-column -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-commit -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-commit-tree -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-config -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-count-objects -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-credential -> git -rwxr-xr-x 1 root root 1308912 Dec 9 13:29 git-credential-cache -rwxr-xr-x 1 root root 1317200 Dec 9 13:29 git-credential-cache--daemon -rwxr-xr-x 1 root root 1313072 Dec 9 13:29 git-credential-store -rwxr-xr-x 1 root root 1321328 Dec 9 13:29 git-daemon lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-describe -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-diff -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-diff-files -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-diff-index -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-difftool -> git -rwxr-xr-x 1 root root 2244 Dec 9 13:29 git-difftool--helper lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-diff-tree -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-fast-export -> git -rwxr-xr-x 1 root root 1346416 Dec 9 13:29 git-fast-import lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-fetch -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-fetch-pack -> git -rwxr-xr-x 1 root root 15534 Dec 9 13:29 git-filter-branch lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-fmt-merge-msg -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-for-each-ref -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-format-patch -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-fsck -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-fsck-objects -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-gc -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-get-tar-commit-id -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-grep -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-hash-object -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-help -> git -rwxr-xr-x 1 root root 1317424 Dec 9 13:29 git-http-backend -rwxr-xr-x 1 root root 1358608 Dec 9 13:29 git-http-fetch -rwxr-xr-x 1 root root 1366816 Dec 9 13:29 git-http-push -rwxr-xr-x 1 root root 1367216 Dec 9 13:29 git-imap-send lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-index-pack -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-init -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-init-db -> git -rwxr-xr-x 1 root root 18546 Dec 9 13:29 git-instaweb lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-interpret-trailers -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-log -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-ls-files -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-ls-remote -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-ls-tree -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-mailinfo -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-mailsplit -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-merge -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-merge-base -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-merge-file -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-merge-index -> git -rwxr-xr-x 1 root root 2477 Dec 9 13:29 git-merge-octopus -rwxr-xr-x 1 root root 3707 Dec 9 13:29 git-merge-one-file lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-merge-ours -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-merge-recursive -> git -rwxr-xr-x 1 root root 944 Dec 9 13:29 git-merge-resolve lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-merge-subtree -> git -rwxr-xr-x 1 root root 10303 Dec 9 13:29 git-mergetool -rw-r--r-- 1 root root 8869 Dec 9 13:29 git-mergetool--lib lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-merge-tree -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-mktag -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-mktree -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-mv -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-name-rev -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-notes -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-pack-objects -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-pack-redundant -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-pack-refs -> git -rw-r--r-- 1 root root 2650 Dec 9 13:29 git-parse-remote lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-patch-id -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-prune -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-prune-packed -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-pull -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-push -> git -rwxr-xr-x 1 root root 3596 Dec 9 13:29 git-quiltimport lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-read-tree -> git -rwxr-xr-x 1 root root 17291 Dec 9 13:29 git-rebase -rw-r--r-- 1 root root 2680 Dec 9 13:29 git-rebase--am lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-rebase--helper -> git -rw-r--r-- 1 root root 28932 Dec 9 13:29 git-rebase--interactive -rw-r--r-- 1 root root 4096 Dec 9 13:29 git-rebase--merge lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-receive-pack -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-reflog -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-remote -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-remote-ext -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-remote-fd -> git lrwxrwxrwx 1 root root 15 Dec 9 13:29 git-remote-ftp -> git-remote-http lrwxrwxrwx 1 root root 15 Dec 9 13:29 git-remote-ftps -> git-remote-http -rwxr-xr-x 1 root root 1370880 Dec 9 13:29 git-remote-http lrwxrwxrwx 1 root root 15 Dec 9 13:29 git-remote-https -> git-remote-http -rwxr-xr-x 1 root root 1329520 Dec 9 13:29 git-remote-testsvn lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-repack -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-replace -> git -rwxr-xr-x 1 root root 3698 Dec 9 13:29 git-request-pull lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-rerere -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-reset -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-revert -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-rev-list -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-rev-parse -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-rm -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-send-pack -> git -rwxr-xr-x 1 root root 1304912 Dec 9 13:29 git-shell -rw-r--r-- 1 root root 2355 Dec 9 13:29 git-sh-i18n -rwxr-xr-x 1 root root 1304816 Dec 9 13:29 git-sh-i18n--envsubst lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-shortlog -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-show -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-show-branch -> git -rwxr-xr-x 1 root root 1304816 Dec 9 13:29 git-show-index lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-show-ref -> git -rw-r--r-- 1 root root 16379 Dec 9 13:29 git-sh-prompt -rw-r--r-- 1 root root 9256 Dec 9 13:29 git-sh-setup lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-stage -> git -rwxr-xr-x 1 root root 15486 Dec 9 13:29 git-stash lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-status -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-stripspace -> git -rwxr-xr-x 1 root root 23941 Dec 9 13:29 git-submodule lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-submodule--helper -> git -rwxr-xr-x 1 root root 16495 Dec 9 13:29 git-subtree lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-symbolic-ref -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-tag -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-unpack-file -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-unpack-objects -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-update-index -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-update-ref -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-update-server-info -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-upload-archive -> git -rwxr-xr-x 1 root root 1317120 Dec 9 13:29 git-upload-pack lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-var -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-verify-commit -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-verify-pack -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-verify-tag -> git -rwxr-xr-x 1 root root 4401 Dec 9 13:29 git-web--browse lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-whatchanged -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-worktree -> git lrwxrwxrwx 1 root root 3 Dec 9 13:29 git-write-tree -> git drwxr-xr-x 2 root root 4096 Dec 16 22:19 mergetools /usr/lib/git-core/mergetools: total 124 drwxr-xr-x 2 root root 4096 Dec 16 22:19 . drwxr-xr-x 3 root root 20480 Dec 16 22:19 .. -rw-r--r-- 1 root root 358 Dec 9 13:29 araxis -rw-r--r-- 1 root root 367 Dec 9 13:29 bc -rw-r--r-- 1 root root 24 Dec 9 13:29 bc3 -rw-r--r-- 1 root root 353 Dec 9 13:29 codecompare -rw-r--r-- 1 root root 663 Dec 9 13:29 deltawalker -rw-r--r-- 1 root root 309 Dec 9 13:29 diffmerge -rw-r--r-- 1 root root 248 Dec 9 13:29 diffuse -rw-r--r-- 1 root root 306 Dec 9 13:29 ecmerge -rw-r--r-- 1 root root 438 Dec 9 13:29 emerge -rw-r--r-- 1 root root 336 Dec 9 13:29 examdiff -rw-r--r-- 1 root root 29 Dec 9 13:29 gvimdiff -rw-r--r-- 1 root root 29 Dec 9 13:29 gvimdiff2 -rw-r--r-- 1 root root 29 Dec 9 13:29 gvimdiff3 -rw-r--r-- 1 root root 522 Dec 9 13:29 kdiff3 -rw-r--r-- 1 root root 117 Dec 9 13:29 kompare -rw-r--r-- 1 root root 843 Dec 9 13:29 meld -rw-r--r-- 1 root root 267 Dec 9 13:29 opendiff -rw-r--r-- 1 root root 617 Dec 9 13:29 p4merge -rw-r--r-- 1 root root 258 Dec 9 13:29 tkdiff -rw-r--r-- 1 root root 602 Dec 9 13:29 tortoisemerge -rw-r--r-- 1 root root 890 Dec 9 13:29 vimdiff -rw-r--r-- 1 root root 29 Dec 9 13:29 vimdiff2 -rw-r--r-- 1 root root 29 Dec 9 13:29 vimdiff3 -rw-r--r-- 1 root root 361 Dec 9 13:29 winmerge -rw-r--r-- 1 root root 584 Dec 9 13:29 xxdiff /usr/lib/gnupg: total 664 drwxr-xr-x 2 root root 4096 Aug 5 2019 . drwxr-xr-x 65 root root 4096 Oct 30 21:02 .. -rwxr-xr-x 1 root root 80616 Jan 10 2019 dirmngr_ldap -rwxr-xr-x 1 root root 104872 Jan 10 2019 gpg-check-pattern -rwxr-xr-x 1 root root 80328 Jan 10 2019 gpg-preset-passphrase -rwxr-xr-x 1 root root 191400 Jan 10 2019 gpg-protect-tool -rwxr-xr-x 1 root root 207720 Jan 10 2019 gpg-wks-client /usr/lib/gnupg2: total 8 drwxr-xr-x 2 root root 4096 Aug 5 2019 . drwxr-xr-x 65 root root 4096 Oct 30 21:02 .. lrwxrwxrwx 1 root root 30 Jan 10 2019 gpg-preset-passphrase -> ../gnupg/gpg-preset-passphrase lrwxrwxrwx 1 root root 25 Jan 10 2019 gpg-protect-tool -> ../gnupg/gpg-protect-tool /usr/lib/gold-ld: total 8 drwxr-xr-x 2 root root 4096 Oct 18 00:13 . drwxr-xr-x 65 root root 4096 Oct 30 21:02 .. lrwxrwxrwx 1 root root 17 May 8 2019 ld -> ../../bin/ld.gold /usr/lib/groff: total 16 drwxr-xr-x 4 root root 4096 Aug 5 2019 . drwxr-xr-x 65 root root 4096 Oct 30 21:02 .. drwxr-xr-x 2 root root 4096 Aug 5 2019 grog drwxr-xr-x 2 root root 4096 Feb 10 2018 site-tmac /usr/lib/groff/grog: total 36 drwxr-xr-x 2 root root 4096 Aug 5 2019 . drwxr-xr-x 4 root root 4096 Aug 5 2019 .. -rwxr-xr-x 1 root root 28293 Feb 10 2018 subs.pl /usr/lib/groff/site-tmac: total 8 drwxr-xr-x 2 root root 4096 Feb 10 2018 . drwxr-xr-x 4 root root 4096 Aug 5 2019 .. /usr/lib/grub: total 28 drwxr-xr-x 3 root root 4096 Aug 12 2019 . drwxr-xr-x 65 root root 4096 Oct 30 21:02 .. lrwxrwxrwx 1 root root 34 Mar 18 2019 grub-mkconfig_lib -> ../../share/grub/grub-mkconfig_lib drwxr-xr-x 2 root root 20480 Aug 12 2019 i386-pc /usr/lib/grub/i386-pc: total 3368 drwxr-xr-x 2 root root 20480 Aug 12 2019 . drwxr-xr-x 3 root root 4096 Aug 12 2019 .. -rw-r--r-- 1 root root 7972 Mar 18 2019 915resolution.mod -rw-r--r-- 1 root root 10620 Mar 18 2019 acpi.mod -rw-r--r-- 1 root root 1324 Mar 18 2019 adler32.mod -rw-r--r-- 1 root root 5652 Mar 18 2019 affs.mod -rw-r--r-- 1 root root 6108 Mar 18 2019 afs.mod -rw-r--r-- 1 root root 15540 Mar 18 2019 ahci.mod -rw-r--r-- 1 root root 492 Mar 18 2019 all_video.mod -rw-r--r-- 1 root root 1036 Mar 18 2019 aout.mod -rw-r--r-- 1 root root 2956 Mar 18 2019 archelp.mod -rw-r--r-- 1 root root 5636 Mar 18 2019 ata.mod -rw-r--r-- 1 root root 4284 Mar 18 2019 at_keyboard.mod -rw-r--r-- 1 root root 1640 Mar 18 2019 backtrace.mod -rw-r--r-- 1 root root 6816 Mar 18 2019 bfs.mod -rw-r--r-- 1 root root 4692 Mar 18 2019 biosdisk.mod -rw-r--r-- 1 root root 2256 Mar 18 2019 bitmap.mod -rw-r--r-- 1 root root 3788 Mar 18 2019 bitmap_scale.mod -rw-r--r-- 1 root root 2128 Mar 18 2019 blocklist.mod -rw-r--r-- 1 root root 512 Mar 18 2019 boot_hybrid.img -rw-r--r-- 1 root root 512 Mar 18 2019 boot.img -rw-r--r-- 1 root root 2432 Mar 18 2019 boot.mod -rw-r--r-- 1 root root 30516 Mar 18 2019 bsd.mod -rw-r--r-- 1 root root 2408 Mar 18 2019 bswap_test.mod -rw-r--r-- 1 root root 14484 Mar 18 2019 btrfs.mod -rw-r--r-- 1 root root 2044 Mar 18 2019 bufio.mod -rw-r--r-- 1 root root 2948 Mar 18 2019 cat.mod -rw-r--r-- 1 root root 4032 Mar 18 2019 cbfs.mod -rw-r--r-- 1 root root 3604 Mar 18 2019 cbls.mod -rw-r--r-- 1 root root 2424 Mar 18 2019 cbmemc.mod -rw-r--r-- 1 root root 984 Mar 18 2019 cbtable.mod -rw-r--r-- 1 root root 2860 Mar 18 2019 cbtime.mod -rw-r--r-- 1 root root 2048 Mar 18 2019 cdboot.img -rw-r--r-- 1 root root 3500 Mar 18 2019 chain.mod -rw-r--r-- 1 root root 3072 Mar 18 2019 cmdline_cat_test.mod -rw-r--r-- 1 root root 1216 Mar 18 2019 cmosdump.mod -rw-r--r-- 1 root root 1868 Mar 18 2019 cmostest.mod -rw-r--r-- 1 root root 1984 Mar 18 2019 cmp.mod -rw-r--r-- 1 root root 4688 Mar 18 2019 cmp_test.mod -rw-r--r-- 1 root root 3842 Mar 18 2019 command.lst -rw-r--r-- 1 root root 2264 Mar 18 2019 configfile.mod -rw-r--r-- 1 root root 1929 Mar 18 2019 config.h -rw-r--r-- 1 root root 2776 Mar 18 2019 cpio_be.mod -rw-r--r-- 1 root root 2708 Mar 18 2019 cpio.mod -rw-r--r-- 1 root root 1728 Mar 18 2019 cpuid.mod -rw-r--r-- 1 root root 1660 Mar 18 2019 crc64.mod -rw-r--r-- 1 root root 10180 Mar 18 2019 cryptodisk.mod -rw-r--r-- 1 root root 936 Mar 18 2019 crypto.lst -rw-r--r-- 1 root root 4972 Mar 18 2019 crypto.mod -rw-r--r-- 1 root root 3896 Mar 18 2019 cs5536.mod -rw-r--r-- 1 root root 1820 Mar 18 2019 ctz_test.mod -rw-r--r-- 1 root root 1792 Mar 18 2019 datehook.mod -rw-r--r-- 1 root root 2188 Mar 18 2019 date.mod -rw-r--r-- 1 root root 1252 Mar 18 2019 datetime.mod -rw-r--r-- 1 root root 512 Mar 18 2019 diskboot.img -rw-r--r-- 1 root root 10572 Mar 18 2019 diskfilter.mod -rw-r--r-- 1 root root 2408 Mar 18 2019 disk.mod -rw-r--r-- 1 root root 1032 Mar 18 2019 div.mod -rw-r--r-- 1 root root 5672 Mar 18 2019 div_test.mod -rw-r--r-- 1 root root 1848 Mar 18 2019 dm_nv.mod -rw-r--r-- 1 root root 5380 Mar 18 2019 drivemap.mod -rw-r--r-- 1 root root 1960 Mar 18 2019 echo.mod -rw-r--r-- 1 root root 8128 Mar 18 2019 efiemu32.o -rw-r--r-- 1 root root 10080 Mar 18 2019 efiemu64.o -rw-r--r-- 1 root root 24020 Mar 18 2019 efiemu.mod -rw-r--r-- 1 root root 15984 Mar 18 2019 ehci.mod -rw-r--r-- 1 root root 4144 Mar 18 2019 elf.mod -rw-r--r-- 1 root root 1444 Mar 18 2019 eval.mod -rw-r--r-- 1 root root 5360 Mar 18 2019 exfat.mod -rw-r--r-- 1 root root 1468 Mar 18 2019 exfctest.mod -rw-r--r-- 1 root root 6116 Mar 18 2019 ext2.mod -rw-r--r-- 1 root root 4548 Mar 18 2019 extcmd.mod -rw-r--r-- 1 root root 5504 Mar 18 2019 fat.mod -rw-r--r-- 1 root root 16768 Mar 18 2019 file.mod -rw-r--r-- 1 root root 12504 Mar 18 2019 font.mod -rw-r--r-- 1 root root 2660 Mar 18 2019 freedos.mod -rw-r--r-- 1 root root 2980 Mar 18 2019 fshelp.mod -rw-r--r-- 1 root root 214 Mar 18 2019 fs.lst -rw-r--r-- 1 root root 34276 Mar 18 2019 functional_test.mod -rw-r--r-- 1 root root 512 Mar 18 2019 g2hdr.bin -rw-r--r-- 1 root root 512 Mar 18 2019 g2hdr.img -rw-r--r-- 1 root root 10240 Mar 18 2019 g2ldr.img -rw-r--r-- 1 root root 8192 Mar 18 2019 g2ldr.mbr -rw-r--r-- 1 root root 1644 Mar 18 2019 gcry_arcfour.mod -rw-r--r-- 1 root root 8224 Mar 18 2019 gcry_blowfish.mod -rw-r--r-- 1 root root 33916 Mar 18 2019 gcry_camellia.mod -rw-r--r-- 1 root root 16484 Mar 18 2019 gcry_cast5.mod -rw-r--r-- 1 root root 2956 Mar 18 2019 gcry_crc.mod -rw-r--r-- 1 root root 19248 Mar 18 2019 gcry_des.mod -rw-r--r-- 1 root root 2288 Mar 18 2019 gcry_dsa.mod -rw-r--r-- 1 root root 3012 Mar 18 2019 gcry_idea.mod -rw-r--r-- 1 root root 3176 Mar 18 2019 gcry_md4.mod -rw-r--r-- 1 root root 3796 Mar 18 2019 gcry_md5.mod -rw-r--r-- 1 root root 2524 Mar 18 2019 gcry_rfc2268.mod -rw-r--r-- 1 root root 19104 Mar 18 2019 gcry_rijndael.mod -rw-r--r-- 1 root root 8216 Mar 18 2019 gcry_rmd160.mod -rw-r--r-- 1 root root 2076 Mar 18 2019 gcry_rsa.mod -rw-r--r-- 1 root root 15384 Mar 18 2019 gcry_seed.mod -rw-r--r-- 1 root root 17012 Mar 18 2019 gcry_serpent.mod -rw-r--r-- 1 root root 7984 Mar 18 2019 gcry_sha1.mod -rw-r--r-- 1 root root 4440 Mar 18 2019 gcry_sha256.mod -rw-r--r-- 1 root root 9412 Mar 18 2019 gcry_sha512.mod -rw-r--r-- 1 root root 12692 Mar 18 2019 gcry_tiger.mod -rw-r--r-- 1 root root 37128 Mar 18 2019 gcry_twofish.mod -rw-r--r-- 1 root root 24924 Mar 18 2019 gcry_whirlpool.mod -rw-r--r-- 1 root root 25272 Mar 18 2019 gdb.mod -rw-r--r-- 1 root root 6040 Mar 18 2019 geli.mod -rw-r--r-- 1 root root 4940 Mar 18 2019 gettext.mod -rw-r--r-- 1 root root 39432 Mar 18 2019 gfxmenu.mod -rw-r--r-- 1 root root 2892 Mar 18 2019 gfxterm_background.mod -rw-r--r-- 1 root root 5048 Mar 18 2019 gfxterm_menu.mod -rw-r--r-- 1 root root 10024 Mar 18 2019 gfxterm.mod -rw-r--r-- 1 root root 3812 Mar 18 2019 gptsync.mod -rw-r--r-- 1 root root 10240 Mar 18 2019 grldr.img -rwxr-xr-x 1 root root 812184 Mar 18 2019 grub-bios-setup -rwxr-xr-x 1 root root 39072 Mar 18 2019 grub-ntldr-img -rw-r--r-- 1 root root 8320 Mar 18 2019 gzio.mod -rw-r--r-- 1 root root 4488 Mar 18 2019 halt.mod -rw-r--r-- 1 root root 5256 Mar 18 2019 hashsum.mod -rw-r--r-- 1 root root 7272 Mar 18 2019 hdparm.mod -rw-r--r-- 1 root root 1208 Mar 18 2019 hello.mod -rw-r--r-- 1 root root 2576 Mar 18 2019 help.mod -rw-r--r-- 1 root root 3168 Mar 18 2019 hexdump.mod -rw-r--r-- 1 root root 7008 Mar 18 2019 hfs.mod -rw-r--r-- 1 root root 3072 Mar 18 2019 hfspluscomp.mod -rw-r--r-- 1 root root 7724 Mar 18 2019 hfsplus.mod -rw-r--r-- 1 root root 5756 Mar 18 2019 http.mod -rw-r--r-- 1 root root 47196 Mar 18 2019 hwmatch.mod -rw-r--r-- 1 root root 2912 Mar 18 2019 iorw.mod -rw-r--r-- 1 root root 8604 Mar 18 2019 iso9660.mod -rw-r--r-- 1 root root 6064 Mar 18 2019 jfs.mod -rw-r--r-- 1 root root 6276 Mar 18 2019 jpeg.mod -rw-r--r-- 1 root root 28480 Mar 18 2019 kernel.img -rw-r--r-- 1 root root 5008 Mar 18 2019 keylayouts.mod -rw-r--r-- 1 root root 1976 Mar 18 2019 keystatus.mod -rw-r--r-- 1 root root 6540 Mar 18 2019 ldm.mod -rw-r--r-- 1 root root 30088 Mar 18 2019 legacycfg.mod -rw-r--r-- 1 root root 14468 Mar 18 2019 legacy_password_test.mod -rw-r--r-- 1 root root 8176 Mar 18 2019 linux16.mod -rw-r--r-- 1 root root 13344 Mar 18 2019 linux.mod -rw-r--r-- 1 root root 1024 Mar 18 2019 lnxboot.img -rw-r--r-- 1 root root 5888 Mar 18 2019 loadenv.mod -rw-r--r-- 1 root root 2988 Mar 18 2019 loopback.mod -rw-r--r-- 1 root root 4804 Mar 18 2019 lsacpi.mod -rw-r--r-- 1 root root 2280 Mar 18 2019 lsapm.mod -rw-r--r-- 1 root root 1868 Mar 18 2019 lsmmap.mod -rw-r--r-- 1 root root 4068 Mar 18 2019 ls.mod -rw-r--r-- 1 root root 4860 Mar 18 2019 lspci.mod -rw-r--r-- 1 root root 6896 Mar 18 2019 luks.mod -rw-r--r-- 1 root root 6776 Mar 18 2019 lvm.mod -rw-r--r-- 1 root root 2832 Mar 18 2019 lzma_decompress.img -rw-r--r-- 1 root root 5224 Mar 18 2019 lzopio.mod -rw-r--r-- 1 root root 3308 Mar 18 2019 macbless.mod -rw-r--r-- 1 root root 7520 Mar 18 2019 macho.mod -rw-r--r-- 1 root root 2052 Mar 18 2019 mda_text.mod -rw-r--r-- 1 root root 2020 Mar 18 2019 mdraid09_be.mod -rw-r--r-- 1 root root 1944 Mar 18 2019 mdraid09.mod -rw-r--r-- 1 root root 1944 Mar 18 2019 mdraid1x.mod -rw-r--r-- 1 root root 2020 Mar 18 2019 memdisk.mod -rw-r--r-- 1 root root 2936 Mar 18 2019 memrw.mod -rw-r--r-- 1 root root 3408 Mar 18 2019 minicmd.mod -rw-r--r-- 1 root root 3912 Mar 18 2019 minix2_be.mod -rw-r--r-- 1 root root 3748 Mar 18 2019 minix2.mod -rw-r--r-- 1 root root 3848 Mar 18 2019 minix3_be.mod -rw-r--r-- 1 root root 3716 Mar 18 2019 minix3.mod -rw-r--r-- 1 root root 3780 Mar 18 2019 minix_be.mod -rw-r--r-- 1 root root 3652 Mar 18 2019 minix.mod -rw-r--r-- 1 root root 8544 Mar 18 2019 mmap.mod -rw-r--r-- 1 root root 5416 Mar 18 2019 moddep.lst -rwxr-xr-x 1 root root 2548 Mar 18 2019 modinfo.sh -rw-r--r-- 1 root root 2396 Mar 18 2019 morse.mod -rw-r--r-- 1 root root 27912 Mar 18 2019 mpi.mod -rw-r--r-- 1 root root 2460 Mar 18 2019 msdospart.mod -rw-r--r-- 1 root root 2064 Mar 18 2019 mul_test.mod -rw-r--r-- 1 root root 15488 Mar 18 2019 multiboot2.mod -rw-r--r-- 1 root root 14108 Mar 18 2019 multiboot.mod -rw-r--r-- 1 root root 4196 Mar 18 2019 nativedisk.mod -rw-r--r-- 1 root root 54688 Mar 18 2019 net.mod -rw-r--r-- 1 root root 2964 Mar 18 2019 newc.mod -rw-r--r-- 1 root root 6708 Mar 18 2019 nilfs2.mod -rw-r--r-- 1 root root 115620 Mar 18 2019 normal.mod -rw-r--r-- 1 root root 4420 Mar 18 2019 ntfscomp.mod -rw-r--r-- 1 root root 9952 Mar 18 2019 ntfs.mod -rw-r--r-- 1 root root 2552 Mar 18 2019 ntldr.mod -rw-r--r-- 1 root root 2772 Mar 18 2019 odc.mod -rw-r--r-- 1 root root 1512 Mar 18 2019 offsetio.mod -rw-r--r-- 1 root root 10436 Mar 18 2019 ohci.mod -rw-r--r-- 1 root root 1672 Mar 18 2019 part_acorn.mod -rw-r--r-- 1 root root 1892 Mar 18 2019 part_amiga.mod -rw-r--r-- 1 root root 2148 Mar 18 2019 part_apple.mod -rw-r--r-- 1 root root 2776 Mar 18 2019 part_bsd.mod -rw-r--r-- 1 root root 1776 Mar 18 2019 part_dfly.mod -rw-r--r-- 1 root root 1480 Mar 18 2019 part_dvh.mod -rw-r--r-- 1 root root 2388 Mar 18 2019 part_gpt.mod -rw-r--r-- 1 root root 111 Mar 18 2019 partmap.lst -rw-r--r-- 1 root root 2268 Mar 18 2019 part_msdos.mod -rw-r--r-- 1 root root 1820 Mar 18 2019 part_plan.mod -rw-r--r-- 1 root root 1536 Mar 18 2019 part_sun.mod -rw-r--r-- 1 root root 1640 Mar 18 2019 part_sunpc.mod -rw-r--r-- 1 root root 17 Mar 18 2019 parttool.lst -rw-r--r-- 1 root root 4644 Mar 18 2019 parttool.mod -rw-r--r-- 1 root root 1888 Mar 18 2019 password.mod -rw-r--r-- 1 root root 2812 Mar 18 2019 password_pbkdf2.mod -rw-r--r-- 1 root root 4772 Mar 18 2019 pata.mod -rw-r--r-- 1 root root 1468 Mar 18 2019 pbkdf2.mod -rw-r--r-- 1 root root 2252 Mar 18 2019 pbkdf2_test.mod -rw-r--r-- 1 root root 2480 Mar 18 2019 pcidump.mod -rw-r--r-- 1 root root 1408 Mar 18 2019 pci.mod -rw-r--r-- 1 root root 6336 Mar 18 2019 plan9.mod -rw-r--r-- 1 root root 2512 Mar 18 2019 play.mod -rw-r--r-- 1 root root 7460 Mar 18 2019 png.mod -rw-r--r-- 1 root root 1568 Mar 18 2019 priority_queue.mod -rw-r--r-- 1 root root 2700 Mar 18 2019 probe.mod -rw-r--r-- 1 root root 2380 Mar 18 2019 procfs.mod -rw-r--r-- 1 root root 2208 Mar 18 2019 progress.mod -rw-r--r-- 1 root root 1024 Mar 18 2019 pxeboot.img -rw-r--r-- 1 root root 2664 Mar 18 2019 pxechain.mod -rw-r--r-- 1 root root 3840 Mar 18 2019 pxe.mod -rw-r--r-- 1 root root 1368 Mar 18 2019 raid5rec.mod -rw-r--r-- 1 root root 2248 Mar 18 2019 raid6rec.mod -rw-r--r-- 1 root root 2844 Mar 18 2019 random.mod -rw-r--r-- 1 root root 1444 Mar 18 2019 read.mod -rw-r--r-- 1 root root 1720 Mar 18 2019 reboot.mod -rw-r--r-- 1 root root 51012 Mar 18 2019 regexp.mod -rw-r--r-- 1 root root 9056 Mar 18 2019 reiserfs.mod -rw-r--r-- 1 root root 14972 Mar 18 2019 relocator.mod -rw-r--r-- 1 root root 4244 Mar 18 2019 romfs.mod -rw-r--r-- 1 root root 4796 Mar 18 2019 scsi.mod -rw-r--r-- 1 root root 3212 Mar 18 2019 search_fs_file.mod -rw-r--r-- 1 root root 3204 Mar 18 2019 search_fs_uuid.mod -rw-r--r-- 1 root root 3120 Mar 18 2019 search_label.mod -rw-r--r-- 1 root root 3688 Mar 18 2019 search.mod -rw-r--r-- 1 root root 7148 Mar 18 2019 sendkey.mod -rw-r--r-- 1 root root 7824 Mar 18 2019 serial.mod -rw-r--r-- 1 root root 708 Mar 18 2019 setjmp.mod -rw-r--r-- 1 root root 1704 Mar 18 2019 setjmp_test.mod -rw-r--r-- 1 root root 5356 Mar 18 2019 setpci.mod -rw-r--r-- 1 root root 5136 Mar 18 2019 sfs.mod -rw-r--r-- 1 root root 2480 Mar 18 2019 shift_test.mod -rw-r--r-- 1 root root 6476 Mar 18 2019 signature_test.mod -rw-r--r-- 1 root root 2276 Mar 18 2019 sleep.mod -rw-r--r-- 1 root root 2320 Mar 18 2019 sleep_test.mod -rw-r--r-- 1 root root 2088 Mar 18 2019 spkmodem.mod -rw-r--r-- 1 root root 7116 Mar 18 2019 squash4.mod -rw-r--r-- 1 root root 17436 Mar 18 2019 syslinuxcfg.mod -rw-r--r-- 1 root root 3316 Mar 18 2019 tar.mod -rw-r--r-- 1 root root 202 Mar 18 2019 terminal.lst -rw-r--r-- 1 root root 4344 Mar 18 2019 terminal.mod -rw-r--r-- 1 root root 11972 Mar 18 2019 terminfo.mod -rw-r--r-- 1 root root 1340 Mar 18 2019 test_blockarg.mod -rw-r--r-- 1 root root 2696 Mar 18 2019 testload.mod -rw-r--r-- 1 root root 5124 Mar 18 2019 test.mod -rw-r--r-- 1 root root 2328 Mar 18 2019 testspeed.mod -rw-r--r-- 1 root root 5484 Mar 18 2019 tftp.mod -rw-r--r-- 1 root root 4460 Mar 18 2019 tga.mod -rw-r--r-- 1 root root 1508 Mar 18 2019 time.mod -rw-r--r-- 1 root root 1764 Mar 18 2019 trig.mod -rw-r--r-- 1 root root 2400 Mar 18 2019 tr.mod -rw-r--r-- 1 root root 3580 Mar 18 2019 truecrypt.mod -rw-r--r-- 1 root root 1204 Mar 18 2019 true.mod -rw-r--r-- 1 root root 7868 Mar 18 2019 udf.mod -rw-r--r-- 1 root root 5868 Mar 18 2019 ufs1_be.mod -rw-r--r-- 1 root root 5476 Mar 18 2019 ufs1.mod -rw-r--r-- 1 root root 5540 Mar 18 2019 ufs2.mod -rw-r--r-- 1 root root 6596 Mar 18 2019 uhci.mod -rw-r--r-- 1 root root 3900 Mar 18 2019 usb_keyboard.mod -rw-r--r-- 1 root root 10532 Mar 18 2019 usb.mod -rw-r--r-- 1 root root 7048 Mar 18 2019 usbms.mod -rw-r--r-- 1 root root 2020 Mar 18 2019 usbserial_common.mod -rw-r--r-- 1 root root 2360 Mar 18 2019 usbserial_ftdi.mod -rw-r--r-- 1 root root 2692 Mar 18 2019 usbserial_pl2303.mod -rw-r--r-- 1 root root 1536 Mar 18 2019 usbserial_usbdebug.mod -rw-r--r-- 1 root root 3600 Mar 18 2019 usbtest.mod -rw-r--r-- 1 root root 9940 Mar 18 2019 vbe.mod -rw-r--r-- 1 root root 12040 Mar 18 2019 verify.mod -rw-r--r-- 1 root root 5076 Mar 18 2019 vga.mod -rw-r--r-- 1 root root 2180 Mar 18 2019 vga_text.mod -rw-r--r-- 1 root root 5668 Mar 18 2019 video_bochs.mod -rw-r--r-- 1 root root 6052 Mar 18 2019 video_cirrus.mod -rw-r--r-- 1 root root 5680 Mar 18 2019 video_colors.mod -rw-r--r-- 1 root root 20872 Mar 18 2019 video_fb.mod -rw-r--r-- 1 root root 3980 Mar 18 2019 videoinfo.mod -rw-r--r-- 1 root root 33 Mar 18 2019 video.lst -rw-r--r-- 1 root root 6072 Mar 18 2019 video.mod -rw-r--r-- 1 root root 2384 Mar 18 2019 videotest_checksum.mod -rw-r--r-- 1 root root 4268 Mar 18 2019 videotest.mod -rw-r--r-- 1 root root 7496 Mar 18 2019 xfs.mod -rw-r--r-- 1 root root 27432 Mar 18 2019 xnu.mod -rw-r--r-- 1 root root 2140 Mar 18 2019 xnu_uuid.mod -rw-r--r-- 1 root root 2016 Mar 18 2019 xnu_uuid_test.mod -rw-r--r-- 1 root root 15784 Mar 18 2019 xzio.mod -rw-r--r-- 1 root root 5584 Mar 18 2019 zfscrypt.mod -rw-r--r-- 1 root root 6612 Mar 18 2019 zfsinfo.mod -rw-r--r-- 1 root root 40340 Mar 18 2019 zfs.mod /usr/lib/grub-legacy: total 40 drwxr-xr-x 2 root root 4096 Aug 12 2019 . drwxr-xr-x 65 root root 4096 Oct 30 21:02 .. -rwxr-xr-x 1 root root 30822 Mar 18 2019 update-grub /usr/lib/initcpio: total 12 drwxr-xr-x 3 root root 4096 Aug 5 2019 . drwxr-xr-x 65 root root 4096 Oct 30 21:02 .. drwxr-xr-x 2 root root 4096 Aug 5 2019 install /usr/lib/initcpio/install: total 12 drwxr-xr-x 2 root root 4096 Aug 5 2019 . drwxr-xr-x 3 root root 4096 Aug 5 2019 .. -rwxr-xr-x 1 root root 291 Apr 21 2017 bcache /usr/lib/initramfs-tools: total 16 drwxr-xr-x 4 root root 4096 Aug 5 2019 . drwxr-xr-x 65 root root 4096 Oct 30 21:02 .. drwxr-xr-x 2 root root 4096 Aug 5 2019 bin drwxr-xr-x 3 root root 4096 Aug 5 2019 etc /usr/lib/initramfs-tools/bin: total 332 drwxr-xr-x 2 root root 4096 Aug 5 2019 . drwxr-xr-x 4 root root 4096 Aug 5 2019 .. -rwxr-xr-x 1 root root 305280 Mar 6 2019 busybox -rwxr-xr-x 1 root root 10472 Apr 17 2019 rzscontrol -rwxr-xr-x 1 root root 10232 Apr 17 2019 wait-for-root /usr/lib/initramfs-tools/etc: total 12 drwxr-xr-x 3 root root 4096 Aug 5 2019 . drwxr-xr-x 4 root root 4096 Aug 5 2019 .. drwxr-xr-x 3 root root 4096 Aug 5 2019 dhcp /usr/lib/initramfs-tools/etc/dhcp: total 16 drwxr-xr-x 3 root root 4096 Aug 5 2019 . drwxr-xr-x 3 root root 4096 Aug 5 2019 .. -rw-r--r-- 1 root root 422 Oct 12 2017 dhclient.conf drwxr-xr-x 2 root root 4096 Aug 5 2019 dhclient-enter-hooks.d /usr/lib/initramfs-tools/etc/dhcp/dhclient-enter-hooks.d: total 12 drwxr-xr-x 2 root root 4096 Aug 5 2019 . drwxr-xr-x 3 root root 4096 Aug 5 2019 .. -rwxr-xr-x 1 root root 1814 Oct 12 2017 config /usr/lib/kernel: total 12 drwxr-xr-x 3 root root 4096 Aug 5 2019 . drwxr-xr-x 65 root root 4096 Oct 30 21:02 .. drwxr-xr-x 2 root root 4096 Feb 6 06:24 install.d /usr/lib/kernel/install.d: total 20 drwxr-xr-x 2 root root 4096 Feb 6 06:24 . drwxr-xr-x 3 root root 4096 Aug 5 2019 .. -rwxr-xr-x 1 root root 368 Jan 28 2018 50-depmod.install -rwxr-xr-x 1 root root 567 Nov 14 20:51 85-initrd.install -rwxr-xr-x 1 root root 2051 Jan 28 2018 90-loaderentry.install /usr/lib/klibc: total 12 drwxr-xr-x 3 root root 4096 Aug 5 2019 . drwxr-xr-x 65 root root 4096 Oct 30 21:02 .. drwxr-xr-x 2 root root 4096 Aug 5 2019 bin /usr/lib/klibc/bin: total 448 drwxr-xr-x 2 root root 4096 Aug 5 2019 . drwxr-xr-x 3 root root 4096 Aug 5 2019 .. -rwxr-xr-x 1 root root 2832 Nov 9 2017 cat -rwxr-xr-x 1 root root 1016 Nov 9 2017 chroot -rwxr-xr-x 1 root root 5360 Nov 9 2017 cpio -rwxr-xr-x 1 root root 4136 Nov 9 2017 dd -rwxr-xr-x 1 root root 1144 Nov 9 2017 dmesg -rwxr-xr-x 1 root root 624 Nov 9 2017 false -rwxr-xr-x 1 root root 4536 Nov 9 2017 fstype -rwxr-xr-x 1 root root 32312 Nov 9 2017 gunzip -rwxr-xr-x 1 root root 32312 Nov 9 2017 gzip -rwxr-xr-x 1 root root 1176 Nov 9 2017 halt -rwxr-xr-x 1 root root 13680 Nov 9 2017 ipconfig -rwxr-xr-x 1 root root 1088 Nov 9 2017 kill -rwxr-xr-x 1 root root 73560 Nov 9 2017 kinit -rwxr-xr-x 1 root root 44800 Nov 9 2017 kinit.shared -rwxr-xr-x 1 root root 1408 Nov 9 2017 ln -rwxr-xr-x 1 root root 4904 Nov 9 2017 losetup -rwxr-xr-x 1 root root 2616 Nov 9 2017 ls -rwxr-xr-x 1 root root 5680 Nov 9 2017 minips -rwxr-xr-x 1 root root 2240 Nov 9 2017 mkdir -rwxr-xr-x 1 root root 1936 Nov 9 2017 mkfifo -rwxr-xr-x 1 root root 2016 Nov 9 2017 mknod -rwxr-xr-x 1 root root 2824 Nov 9 2017 mount -rwxr-xr-x 1 root root 2496 Nov 9 2017 mv -rwxr-xr-x 1 root root 7288 Nov 9 2017 nfsmount -rwxr-xr-x 1 root root 1216 Nov 9 2017 nuke -rwxr-xr-x 1 root root 960 Nov 9 2017 pivot_root -rwxr-xr-x 1 root root 1176 Nov 9 2017 poweroff -rwxr-xr-x 1 root root 1272 Nov 9 2017 readlink -rwxr-xr-x 1 root root 1176 Nov 9 2017 reboot -rwxr-xr-x 1 root root 2904 Nov 9 2017 resume -rwxr-xr-x 1 root root 5056 Nov 9 2017 run-init -rwxr-xr-x 1 root root 58568 Nov 9 2017 sh.shared -rwxr-xr-x 1 root root 976 Nov 9 2017 sleep -rwxr-xr-x 1 root root 784 Nov 9 2017 sync -rwxr-xr-x 1 root root 616 Nov 9 2017 true -rwxr-xr-x 1 root root 1200 Nov 9 2017 umount -rwxr-xr-x 1 root root 1880 Nov 9 2017 uname -rwxr-xr-x 1 root root 32312 Nov 9 2017 zcat /usr/lib/language-selector: total 16 drwxr-xr-x 2 root root 4096 Aug 5 2019 . drwxr-xr-x 65 root root 4096 Oct 30 21:02 .. -rwxr-xr-x 1 root root 4520 Nov 4 2013 ls-dbus-backend /usr/lib/linux: total 12 drwxr-xr-x 3 root root 4096 Aug 12 2019 . drwxr-xr-x 65 root root 4096 Oct 30 21:02 .. drwxr-xr-x 2 root root 4096 Feb 5 06:04 triggers /usr/lib/linux/triggers: total 8 drwxr-xr-x 2 root root 4096 Feb 5 06:04 . drwxr-xr-x 3 root root 4096 Aug 12 2019 .. /usr/lib/linux-boot-probes: total 16 drwxr-xr-x 3 root root 4096 Aug 12 2019 . drwxr-xr-x 65 root root 4096 Oct 30 21:02 .. -rwxr-xr-x 1 root root 2705 Jan 26 2017 50mounted-tests drwxr-xr-x 2 root root 4096 Aug 12 2019 mounted /usr/lib/linux-boot-probes/mounted: total 24 drwxr-xr-x 2 root root 4096 Aug 12 2019 . drwxr-xr-x 3 root root 4096 Aug 12 2019 .. -rwxr-xr-x 1 root root 2147 Jan 21 2017 40grub -rwxr-xr-x 1 root root 2535 Jan 21 2017 40grub2 -rwxr-xr-x 1 root root 2331 Jan 21 2017 50lilo -rwxr-xr-x 1 root root 2000 Jan 21 2017 90fallback /usr/lib/locale: total 1588 drwxr-xr-x 3 root root 4096 Aug 12 2019 . drwxr-xr-x 65 root root 4096 Oct 30 21:02 .. drwxr-xr-x 3 root root 4096 Aug 5 2019 C.UTF-8 -rw-r--r-- 1 root root 1683056 Aug 12 2019 locale-archive /usr/lib/locale/C.UTF-8: total 1728 drwxr-xr-x 3 root root 4096 Aug 5 2019 . drwxr-xr-x 3 root root 4096 Aug 12 2019 .. -rw-r--r-- 1 root root 131 Apr 16 2018 LC_ADDRESS -rw-r--r-- 1 root root 1516558 Apr 16 2018 LC_COLLATE -rw-r--r-- 1 root root 199772 Apr 16 2018 LC_CTYPE -rw-r--r-- 1 root root 252 Apr 16 2018 LC_IDENTIFICATION -rw-r--r-- 1 root root 23 Apr 16 2018 LC_MEASUREMENT drwxr-xr-x 2 root root 4096 Aug 5 2019 LC_MESSAGES -rw-r--r-- 1 root root 270 Apr 16 2018 LC_MONETARY -rw-r--r-- 1 root root 62 Apr 16 2018 LC_NAME -rw-r--r-- 1 root root 50 Apr 16 2018 LC_NUMERIC -rw-r--r-- 1 root root 34 Apr 16 2018 LC_PAPER -rw-r--r-- 1 root root 47 Apr 16 2018 LC_TELEPHONE -rw-r--r-- 1 root root 3360 Apr 16 2018 LC_TIME /usr/lib/locale/C.UTF-8/LC_MESSAGES: total 12 drwxr-xr-x 2 root root 4096 Aug 5 2019 . drwxr-xr-x 3 root root 4096 Aug 5 2019 .. -rw-r--r-- 1 root root 48 Apr 16 2018 SYS_LC_MESSAGES /usr/lib/lxcfs: total 8 drwxr-xr-x 2 root root 4096 Aug 5 2019 . drwxr-xr-x 65 root root 4096 Oct 30 21:02 .. lrwxrwxrwx 1 root root 37 Nov 23 2018 liblxcfs.so -> ../x86_64-linux-gnu/lxcfs/liblxcfs.so /usr/lib/lxd: total 20032 drwxr-xr-x 2 root root 4096 Aug 5 2019 . drwxr-xr-x 65 root root 4096 Oct 30 21:02 .. -rw-r--r-- 1 root root 110600 Nov 23 2018 libdqlite.so.0 -rw-r--r-- 1 root root 110600 Nov 23 2018 libdqlite.so.0.0.1 -rw-r--r-- 1 root root 760256 Nov 23 2018 libsqlite3.so.0 -rw-r--r-- 1 root root 760256 Nov 23 2018 libsqlite3.so.0.8.6 -rwxr-xr-x 1 root root 18748376 Nov 23 2018 lxd -rwxr-xr-x 1 root root 99 Nov 23 2018 shutdown -rwxr-xr-x 1 root root 4957 Nov 23 2018 upgrade-bridge /usr/lib/man-db: total 276 drwxr-xr-x 2 root root 4096 Aug 5 2019 . drwxr-xr-x 65 root root 4096 Oct 30 21:02 .. -rwxr-xr-x 1 root root 18904 Aug 4 2018 globbing -rw-r--r-- 1 root root 160768 Aug 4 2018 libman-2.8.3.so -rw-r--r-- 1 root root 22368 Aug 4 2018 libmandb-2.8.3.so lrwxrwxrwx 1 root root 17 Aug 4 2018 libmandb.so -> libmandb-2.8.3.so lrwxrwxrwx 1 root root 15 Aug 4 2018 libman.so -> libman-2.8.3.so lrwxrwxrwx 1 root root 13 Aug 4 2018 man -> ../../bin/man -rwxr-xr-x 1 root root 14712 Aug 4 2018 manconv lrwxrwxrwx 1 root root 15 Aug 4 2018 mandb -> ../../bin/mandb -rwxr-xr-x 1 root root 47416 Aug 4 2018 zsoelimjc-1.17.3/tests/fixtures/ubuntu-18.04/ls-alh-streaming.json000066400000000000000000000066061415226333200232570ustar00rootroot00000000000000[{"filename":".","flags":"drwxr-xr-x","links":24,"owner":"root","group":"root","size":4,"date":"Oct 24 06:33"},{"filename":"..","flags":"drwxr-xr-x","links":24,"owner":"root","group":"root","size":4,"date":"Oct 24 06:33"},{"filename":"bin","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4,"date":"Oct 18 00:12"},{"filename":"boot","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4,"date":"Oct 25 07:14"},{"filename":"cdrom","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4,"date":"Aug 12 17:21"},{"filename":"dev","flags":"drwxr-xr-x","links":19,"owner":"root","group":"root","size":4,"date":"Oct 24 06:33"},{"filename":"etc","flags":"drwxr-xr-x","links":93,"owner":"root","group":"root","size":4,"date":"Oct 24 06:32"},{"filename":"home","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4,"date":"Aug 12 17:24"},{"filename":"initrd.img","link_to":"boot/initrd.img-4.15.0-66-generic","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":33,"date":"Oct 24 06:33"},{"filename":"initrd.img.old","link_to":"boot/initrd.img-4.15.0-65-generic","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":33,"date":"Oct 24 06:33"},{"filename":"lib","flags":"drwxr-xr-x","links":23,"owner":"root","group":"root","size":4,"date":"Oct 18 00:14"},{"filename":"lib64","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4,"date":"Aug 5 19:23"},{"filename":"lost+found","flags":"drwx------","links":2,"owner":"root","group":"root","size":16,"date":"Aug 12 17:21"},{"filename":"media","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4,"date":"Aug 5 19:22"},{"filename":"mnt","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4,"date":"Aug 5 19:22"},{"filename":"opt","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4,"date":"Aug 14 02:02"},{"filename":"proc","flags":"dr-xr-xr-x","links":184,"owner":"root","group":"root","size":0,"date":"Oct 21 20:17"},{"filename":"root","flags":"drwx------","links":4,"owner":"root","group":"root","size":4,"date":"Aug 13 23:27"},{"filename":"run","flags":"drwxr-xr-x","links":29,"owner":"root","group":"root","size":1,"date":"Oct 28 08:49"},{"filename":"sbin","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":12,"date":"Oct 18 00:11"},{"filename":"snap","flags":"drwxr-xr-x","links":9,"owner":"root","group":"root","size":4,"date":"Aug 14 02:01"},{"filename":"srv","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4,"date":"Aug 5 19:22"},{"filename":"swap.img","flags":"-rw-------","links":1,"owner":"root","group":"root","size":2,"date":"Aug 12 17:22"},{"filename":"sys","flags":"dr-xr-xr-x","links":13,"owner":"root","group":"root","size":0,"date":"Oct 22 00:54"},{"filename":"tmp","flags":"drwxrwxrwt","links":11,"owner":"root","group":"root","size":4,"date":"Oct 28 19:42"},{"filename":"usr","flags":"drwxr-xr-x","links":10,"owner":"root","group":"root","size":4,"date":"Aug 5 19:22"},{"filename":"var","flags":"drwxr-xr-x","links":13,"owner":"root","group":"root","size":4,"date":"Aug 5 19:24"},{"filename":"vmlinuz","link_to":"boot/vmlinuz-4.15.0-66-generic","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":30,"date":"Oct 24 06:33"},{"filename":"vmlinuz.old","link_to":"boot/vmlinuz-4.15.0-65-generic","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":30,"date":"Oct 24 06:33"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/ls-alh.json000066400000000000000000000066061415226333200212700ustar00rootroot00000000000000[{"filename":".","flags":"drwxr-xr-x","links":24,"owner":"root","group":"root","size":4,"date":"Oct 24 06:33"},{"filename":"..","flags":"drwxr-xr-x","links":24,"owner":"root","group":"root","size":4,"date":"Oct 24 06:33"},{"filename":"bin","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4,"date":"Oct 18 00:12"},{"filename":"boot","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4,"date":"Oct 25 07:14"},{"filename":"cdrom","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4,"date":"Aug 12 17:21"},{"filename":"dev","flags":"drwxr-xr-x","links":19,"owner":"root","group":"root","size":4,"date":"Oct 24 06:33"},{"filename":"etc","flags":"drwxr-xr-x","links":93,"owner":"root","group":"root","size":4,"date":"Oct 24 06:32"},{"filename":"home","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4,"date":"Aug 12 17:24"},{"filename":"initrd.img","link_to":"boot/initrd.img-4.15.0-66-generic","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":33,"date":"Oct 24 06:33"},{"filename":"initrd.img.old","link_to":"boot/initrd.img-4.15.0-65-generic","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":33,"date":"Oct 24 06:33"},{"filename":"lib","flags":"drwxr-xr-x","links":23,"owner":"root","group":"root","size":4,"date":"Oct 18 00:14"},{"filename":"lib64","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4,"date":"Aug 5 19:23"},{"filename":"lost+found","flags":"drwx------","links":2,"owner":"root","group":"root","size":16,"date":"Aug 12 17:21"},{"filename":"media","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4,"date":"Aug 5 19:22"},{"filename":"mnt","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4,"date":"Aug 5 19:22"},{"filename":"opt","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4,"date":"Aug 14 02:02"},{"filename":"proc","flags":"dr-xr-xr-x","links":184,"owner":"root","group":"root","size":0,"date":"Oct 21 20:17"},{"filename":"root","flags":"drwx------","links":4,"owner":"root","group":"root","size":4,"date":"Aug 13 23:27"},{"filename":"run","flags":"drwxr-xr-x","links":29,"owner":"root","group":"root","size":1,"date":"Oct 28 08:49"},{"filename":"sbin","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":12,"date":"Oct 18 00:11"},{"filename":"snap","flags":"drwxr-xr-x","links":9,"owner":"root","group":"root","size":4,"date":"Aug 14 02:01"},{"filename":"srv","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4,"date":"Aug 5 19:22"},{"filename":"swap.img","flags":"-rw-------","links":1,"owner":"root","group":"root","size":2,"date":"Aug 12 17:22"},{"filename":"sys","flags":"dr-xr-xr-x","links":13,"owner":"root","group":"root","size":0,"date":"Oct 22 00:54"},{"filename":"tmp","flags":"drwxrwxrwt","links":11,"owner":"root","group":"root","size":4,"date":"Oct 28 19:42"},{"filename":"usr","flags":"drwxr-xr-x","links":10,"owner":"root","group":"root","size":4,"date":"Aug 5 19:22"},{"filename":"var","flags":"drwxr-xr-x","links":13,"owner":"root","group":"root","size":4,"date":"Aug 5 19:24"},{"filename":"vmlinuz","link_to":"boot/vmlinuz-4.15.0-66-generic","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":30,"date":"Oct 24 06:33"},{"filename":"vmlinuz.old","link_to":"boot/vmlinuz-4.15.0-65-generic","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":30,"date":"Oct 24 06:33"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/ls-alh.out000066400000000000000000000030371415226333200211210ustar00rootroot00000000000000total 2.1G drwxr-xr-x 24 root root 4.0K Oct 24 06:33 . drwxr-xr-x 24 root root 4.0K Oct 24 06:33 .. drwxr-xr-x 2 root root 4.0K Oct 18 00:12 bin drwxr-xr-x 3 root root 4.0K Oct 25 07:14 boot drwxr-xr-x 2 root root 4.0K Aug 12 17:21 cdrom drwxr-xr-x 19 root root 4.0K Oct 24 06:33 dev drwxr-xr-x 93 root root 4.0K Oct 24 06:32 etc drwxr-xr-x 3 root root 4.0K Aug 12 17:24 home lrwxrwxrwx 1 root root 33 Oct 24 06:33 initrd.img -> boot/initrd.img-4.15.0-66-generic lrwxrwxrwx 1 root root 33 Oct 24 06:33 initrd.img.old -> boot/initrd.img-4.15.0-65-generic drwxr-xr-x 23 root root 4.0K Oct 18 00:14 lib drwxr-xr-x 2 root root 4.0K Aug 5 19:23 lib64 drwx------ 2 root root 16K Aug 12 17:21 lost+found drwxr-xr-x 2 root root 4.0K Aug 5 19:22 media drwxr-xr-x 2 root root 4.0K Aug 5 19:22 mnt drwxr-xr-x 3 root root 4.0K Aug 14 02:02 opt dr-xr-xr-x 184 root root 0 Oct 21 20:17 proc drwx------ 4 root root 4.0K Aug 13 23:27 root drwxr-xr-x 29 root root 1.1K Oct 28 08:49 run drwxr-xr-x 2 root root 12K Oct 18 00:11 sbin drwxr-xr-x 9 root root 4.0K Aug 14 02:01 snap drwxr-xr-x 2 root root 4.0K Aug 5 19:22 srv -rw------- 1 root root 2.0G Aug 12 17:22 swap.img dr-xr-xr-x 13 root root 0 Oct 22 00:54 sys drwxrwxrwt 11 root root 4.0K Oct 28 19:42 tmp drwxr-xr-x 10 root root 4.0K Aug 5 19:22 usr drwxr-xr-x 13 root root 4.0K Aug 5 19:24 var lrwxrwxrwx 1 root root 30 Oct 24 06:33 vmlinuz -> boot/vmlinuz-4.15.0-66-generic lrwxrwxrwx 1 root root 30 Oct 24 06:33 vmlinuz.old -> boot/vmlinuz-4.15.0-65-generic jc-1.17.3/tests/fixtures/ubuntu-18.04/ls-glob.json000066400000000000000000002026041415226333200214430ustar00rootroot00000000000000[{"filename": "[", "parent": "/usr/bin"}, {"filename": "aa-enabled", "parent": "/usr/bin"}, {"filename": "aa-exec", "parent": "/usr/bin"}, {"filename": "acpi_listen", "parent": "/usr/bin"}, {"filename": "add-apt-repository", "parent": "/usr/bin"}, {"filename": "addpart", "parent": "/usr/bin"}, {"filename": "addr2line", "parent": "/usr/bin"}, {"filename": "apport-bug", "parent": "/usr/bin"}, {"filename": "apport-cli", "parent": "/usr/bin"}, {"filename": "apport-collect", "parent": "/usr/bin"}, {"filename": "apport-unpack", "parent": "/usr/bin"}, {"filename": "apropos", "parent": "/usr/bin"}, {"filename": "apt", "parent": "/usr/bin"}, {"filename": "apt-add-repository", "parent": "/usr/bin"}, {"filename": "apt-cache", "parent": "/usr/bin"}, {"filename": "apt-cdrom", "parent": "/usr/bin"}, {"filename": "apt-config", "parent": "/usr/bin"}, {"filename": "apt-extracttemplates", "parent": "/usr/bin"}, {"filename": "apt-ftparchive", "parent": "/usr/bin"}, {"filename": "apt-get", "parent": "/usr/bin"}, {"filename": "apt-key", "parent": "/usr/bin"}, {"filename": "apt-mark", "parent": "/usr/bin"}, {"filename": "apt-sortpkgs", "parent": "/usr/bin"}, {"filename": "ar", "parent": "/usr/bin"}, {"filename": "arch", "parent": "/usr/bin"}, {"filename": "as", "parent": "/usr/bin"}, {"filename": "at", "parent": "/usr/bin"}, {"filename": "atq", "parent": "/usr/bin"}, {"filename": "atrm", "parent": "/usr/bin"}, {"filename": "automat-visualize3", "parent": "/usr/bin"}, {"filename": "awk", "parent": "/usr/bin"}, {"filename": "b2sum", "parent": "/usr/bin"}, {"filename": "base32", "parent": "/usr/bin"}, {"filename": "base64", "parent": "/usr/bin"}, {"filename": "basename", "parent": "/usr/bin"}, {"filename": "bashbug", "parent": "/usr/bin"}, {"filename": "batch", "parent": "/usr/bin"}, {"filename": "bc", "parent": "/usr/bin"}, {"filename": "bootctl", "parent": "/usr/bin"}, {"filename": "bsd-from", "parent": "/usr/bin"}, {"filename": "bsd-write", "parent": "/usr/bin"}, {"filename": "busctl", "parent": "/usr/bin"}, {"filename": "byobu", "parent": "/usr/bin"}, {"filename": "byobu-config", "parent": "/usr/bin"}, {"filename": "byobu-ctrl-a", "parent": "/usr/bin"}, {"filename": "byobu-disable", "parent": "/usr/bin"}, {"filename": "byobu-disable-prompt", "parent": "/usr/bin"}, {"filename": "byobu-enable", "parent": "/usr/bin"}, {"filename": "byobu-enable-prompt", "parent": "/usr/bin"}, {"filename": "byobu-export", "parent": "/usr/bin"}, {"filename": "byobu-janitor", "parent": "/usr/bin"}, {"filename": "byobu-keybindings", "parent": "/usr/bin"}, {"filename": "byobu-launch", "parent": "/usr/bin"}, {"filename": "byobu-launcher", "parent": "/usr/bin"}, {"filename": "byobu-launcher-install", "parent": "/usr/bin"}, {"filename": "byobu-launcher-uninstall", "parent": "/usr/bin"}, {"filename": "byobu-layout", "parent": "/usr/bin"}, {"filename": "byobu-prompt", "parent": "/usr/bin"}, {"filename": "byobu-quiet", "parent": "/usr/bin"}, {"filename": "byobu-reconnect-sockets", "parent": "/usr/bin"}, {"filename": "byobu-screen", "parent": "/usr/bin"}, {"filename": "byobu-select-backend", "parent": "/usr/bin"}, {"filename": "byobu-select-profile", "parent": "/usr/bin"}, {"filename": "byobu-select-session", "parent": "/usr/bin"}, {"filename": "byobu-shell", "parent": "/usr/bin"}, {"filename": "byobu-silent", "parent": "/usr/bin"}, {"filename": "byobu-status", "parent": "/usr/bin"}, {"filename": "byobu-status-detail", "parent": "/usr/bin"}, {"filename": "byobu-tmux", "parent": "/usr/bin"}, {"filename": "byobu-ugraph", "parent": "/usr/bin"}, {"filename": "byobu-ulevel", "parent": "/usr/bin"}, {"filename": "c++", "parent": "/usr/bin"}, {"filename": "c89", "parent": "/usr/bin"}, {"filename": "c89-gcc", "parent": "/usr/bin"}, {"filename": "c99", "parent": "/usr/bin"}, {"filename": "c99-gcc", "parent": "/usr/bin"}, {"filename": "cal", "parent": "/usr/bin"}, {"filename": "calendar", "parent": "/usr/bin"}, {"filename": "captoinfo", "parent": "/usr/bin"}, {"filename": "catchsegv", "parent": "/usr/bin"}, {"filename": "catman", "parent": "/usr/bin"}, {"filename": "cautious-launcher", "parent": "/usr/bin"}, {"filename": "cc", "parent": "/usr/bin"}, {"filename": "c++filt", "parent": "/usr/bin"}, {"filename": "cftp3", "parent": "/usr/bin"}, {"filename": "cgroupfs-mount", "parent": "/usr/bin"}, {"filename": "cgroupfs-umount", "parent": "/usr/bin"}, {"filename": "chacl", "parent": "/usr/bin"}, {"filename": "chage", "parent": "/usr/bin"}, {"filename": "chardet3", "parent": "/usr/bin"}, {"filename": "chardetect3", "parent": "/usr/bin"}, {"filename": "chattr", "parent": "/usr/bin"}, {"filename": "chcon", "parent": "/usr/bin"}, {"filename": "check-language-support", "parent": "/usr/bin"}, {"filename": "chfn", "parent": "/usr/bin"}, {"filename": "chrt", "parent": "/usr/bin"}, {"filename": "chsh", "parent": "/usr/bin"}, {"filename": "cifsiostat", "parent": "/usr/bin"}, {"filename": "ckbcomp", "parent": "/usr/bin"}, {"filename": "ckeygen3", "parent": "/usr/bin"}, {"filename": "cksum", "parent": "/usr/bin"}, {"filename": "clear", "parent": "/usr/bin"}, {"filename": "clear_console", "parent": "/usr/bin"}, {"filename": "cloud-id", "parent": "/usr/bin"}, {"filename": "cloud-init", "parent": "/usr/bin"}, {"filename": "cloud-init-per", "parent": "/usr/bin"}, {"filename": "cmp", "parent": "/usr/bin"}, {"filename": "codepage", "parent": "/usr/bin"}, {"filename": "col", "parent": "/usr/bin"}, {"filename": "col1", "parent": "/usr/bin"}, {"filename": "col2", "parent": "/usr/bin"}, {"filename": "col3", "parent": "/usr/bin"}, {"filename": "col4", "parent": "/usr/bin"}, {"filename": "col5", "parent": "/usr/bin"}, {"filename": "col6", "parent": "/usr/bin"}, {"filename": "col7", "parent": "/usr/bin"}, {"filename": "col8", "parent": "/usr/bin"}, {"filename": "col9", "parent": "/usr/bin"}, {"filename": "colcrt", "parent": "/usr/bin"}, {"filename": "colrm", "parent": "/usr/bin"}, {"filename": "column", "parent": "/usr/bin"}, {"filename": "comm", "parent": "/usr/bin"}, {"filename": "compose", "parent": "/usr/bin"}, {"filename": "conch3", "parent": "/usr/bin"}, {"filename": "containerd", "parent": "/usr/bin"}, {"filename": "containerd-shim", "parent": "/usr/bin"}, {"filename": "containerd-shim-runc-v1", "parent": "/usr/bin"}, {"filename": "containerd-stress", "parent": "/usr/bin"}, {"filename": "corelist", "parent": "/usr/bin"}, {"filename": "cpan", "parent": "/usr/bin"}, {"filename": "cpan5.26-x86_64-linux-gnu", "parent": "/usr/bin"}, {"filename": "cpp", "parent": "/usr/bin"}, {"filename": "cpp-7", "parent": "/usr/bin"}, {"filename": "c_rehash", "parent": "/usr/bin"}, {"filename": "crontab", "parent": "/usr/bin"}, {"filename": "csplit", "parent": "/usr/bin"}, {"filename": "ctail", "parent": "/usr/bin"}, {"filename": "ctr", "parent": "/usr/bin"}, {"filename": "ctstat", "parent": "/usr/bin"}, {"filename": "curl", "parent": "/usr/bin"}, {"filename": "cut", "parent": "/usr/bin"}, {"filename": "dbus-cleanup-sockets", "parent": "/usr/bin"}, {"filename": "dbus-daemon", "parent": "/usr/bin"}, {"filename": "dbus-monitor", "parent": "/usr/bin"}, {"filename": "dbus-run-session", "parent": "/usr/bin"}, {"filename": "dbus-send", "parent": "/usr/bin"}, {"filename": "dbus-update-activation-environment", "parent": "/usr/bin"}, {"filename": "dbus-uuidgen", "parent": "/usr/bin"}, {"filename": "deallocvt", "parent": "/usr/bin"}, {"filename": "debconf", "parent": "/usr/bin"}, {"filename": "debconf-apt-progress", "parent": "/usr/bin"}, {"filename": "debconf-communicate", "parent": "/usr/bin"}, {"filename": "debconf-copydb", "parent": "/usr/bin"}, {"filename": "debconf-escape", "parent": "/usr/bin"}, {"filename": "debconf-set-selections", "parent": "/usr/bin"}, {"filename": "debconf-show", "parent": "/usr/bin"}, {"filename": "deb-systemd-helper", "parent": "/usr/bin"}, {"filename": "deb-systemd-invoke", "parent": "/usr/bin"}, {"filename": "delpart", "parent": "/usr/bin"}, {"filename": "delv", "parent": "/usr/bin"}, {"filename": "dh_bash-completion", "parent": "/usr/bin"}, {"filename": "dh_pypy", "parent": "/usr/bin"}, {"filename": "dh_python3", "parent": "/usr/bin"}, {"filename": "diff", "parent": "/usr/bin"}, {"filename": "diff3", "parent": "/usr/bin"}, {"filename": "dig", "parent": "/usr/bin"}, {"filename": "dircolors", "parent": "/usr/bin"}, {"filename": "dirmngr", "parent": "/usr/bin"}, {"filename": "dirmngr-client", "parent": "/usr/bin"}, {"filename": "dirname", "parent": "/usr/bin"}, {"filename": "docker", "parent": "/usr/bin"}, {"filename": "dockerd", "parent": "/usr/bin"}, {"filename": "docker-init", "parent": "/usr/bin"}, {"filename": "docker-proxy", "parent": "/usr/bin"}, {"filename": "do-release-upgrade", "parent": "/usr/bin"}, {"filename": "dpkg", "parent": "/usr/bin"}, {"filename": "dpkg-architecture", "parent": "/usr/bin"}, {"filename": "dpkg-buildflags", "parent": "/usr/bin"}, {"filename": "dpkg-buildpackage", "parent": "/usr/bin"}, {"filename": "dpkg-checkbuilddeps", "parent": "/usr/bin"}, {"filename": "dpkg-deb", "parent": "/usr/bin"}, {"filename": "dpkg-distaddfile", "parent": "/usr/bin"}, {"filename": "dpkg-divert", "parent": "/usr/bin"}, {"filename": "dpkg-genbuildinfo", "parent": "/usr/bin"}, {"filename": "dpkg-genchanges", "parent": "/usr/bin"}, {"filename": "dpkg-gencontrol", "parent": "/usr/bin"}, {"filename": "dpkg-gensymbols", "parent": "/usr/bin"}, {"filename": "dpkg-maintscript-helper", "parent": "/usr/bin"}, {"filename": "dpkg-mergechangelogs", "parent": "/usr/bin"}, {"filename": "dpkg-name", "parent": "/usr/bin"}, {"filename": "dpkg-parsechangelog", "parent": "/usr/bin"}, {"filename": "dpkg-query", "parent": "/usr/bin"}, {"filename": "dpkg-scanpackages", "parent": "/usr/bin"}, {"filename": "dpkg-scansources", "parent": "/usr/bin"}, {"filename": "dpkg-shlibdeps", "parent": "/usr/bin"}, {"filename": "dpkg-source", "parent": "/usr/bin"}, {"filename": "dpkg-split", "parent": "/usr/bin"}, {"filename": "dpkg-statoverride", "parent": "/usr/bin"}, {"filename": "dpkg-trigger", "parent": "/usr/bin"}, {"filename": "dpkg-vendor", "parent": "/usr/bin"}, {"filename": "du", "parent": "/usr/bin"}, {"filename": "dumpkeys", "parent": "/usr/bin"}, {"filename": "dwp", "parent": "/usr/bin"}, {"filename": "eatmydata", "parent": "/usr/bin"}, {"filename": "ec2metadata", "parent": "/usr/bin"}, {"filename": "edit", "parent": "/usr/bin"}, {"filename": "editor", "parent": "/usr/bin"}, {"filename": "eject", "parent": "/usr/bin"}, {"filename": "elfedit", "parent": "/usr/bin"}, {"filename": "enc2xs", "parent": "/usr/bin"}, {"filename": "encguess", "parent": "/usr/bin"}, {"filename": "env", "parent": "/usr/bin"}, {"filename": "envsubst", "parent": "/usr/bin"}, {"filename": "eqn", "parent": "/usr/bin"}, {"filename": "ex", "parent": "/usr/bin"}, {"filename": "expand", "parent": "/usr/bin"}, {"filename": "expiry", "parent": "/usr/bin"}, {"filename": "expr", "parent": "/usr/bin"}, {"filename": "factor", "parent": "/usr/bin"}, {"filename": "faillog", "parent": "/usr/bin"}, {"filename": "faked-sysv", "parent": "/usr/bin"}, {"filename": "faked-tcp", "parent": "/usr/bin"}, {"filename": "fakeroot", "parent": "/usr/bin"}, {"filename": "fakeroot-sysv", "parent": "/usr/bin"}, {"filename": "fakeroot-tcp", "parent": "/usr/bin"}, {"filename": "fallocate", "parent": "/usr/bin"}, {"filename": "file", "parent": "/usr/bin"}, {"filename": "find", "parent": "/usr/bin"}, {"filename": "flock", "parent": "/usr/bin"}, {"filename": "fmt", "parent": "/usr/bin"}, {"filename": "fold", "parent": "/usr/bin"}, {"filename": "free", "parent": "/usr/bin"}, {"filename": "from", "parent": "/usr/bin"}, {"filename": "ftp", "parent": "/usr/bin"}, {"filename": "g++", "parent": "/usr/bin"}, {"filename": "g++-7", "parent": "/usr/bin"}, {"filename": "gawk", "parent": "/usr/bin"}, {"filename": "gcc", "parent": "/usr/bin"}, {"filename": "gcc-7", "parent": "/usr/bin"}, {"filename": "gcc-ar", "parent": "/usr/bin"}, {"filename": "gcc-ar-7", "parent": "/usr/bin"}, {"filename": "gcc-nm", "parent": "/usr/bin"}, {"filename": "gcc-nm-7", "parent": "/usr/bin"}, {"filename": "gcc-ranlib", "parent": "/usr/bin"}, {"filename": "gcc-ranlib-7", "parent": "/usr/bin"}, {"filename": "gcov", "parent": "/usr/bin"}, {"filename": "gcov-7", "parent": "/usr/bin"}, {"filename": "gcov-dump", "parent": "/usr/bin"}, {"filename": "gcov-dump-7", "parent": "/usr/bin"}, {"filename": "gcov-tool", "parent": "/usr/bin"}, {"filename": "gcov-tool-7", "parent": "/usr/bin"}, {"filename": "gencat", "parent": "/usr/bin"}, {"filename": "geqn", "parent": "/usr/bin"}, {"filename": "getconf", "parent": "/usr/bin"}, {"filename": "getent", "parent": "/usr/bin"}, {"filename": "getfacl", "parent": "/usr/bin"}, {"filename": "getkeycodes", "parent": "/usr/bin"}, {"filename": "getopt", "parent": "/usr/bin"}, {"filename": "gettext", "parent": "/usr/bin"}, {"filename": "gettext.sh", "parent": "/usr/bin"}, {"filename": "ginstall-info", "parent": "/usr/bin"}, {"filename": "git", "parent": "/usr/bin"}, {"filename": "git-receive-pack", "parent": "/usr/bin"}, {"filename": "git-shell", "parent": "/usr/bin"}, {"filename": "git-upload-archive", "parent": "/usr/bin"}, {"filename": "git-upload-pack", "parent": "/usr/bin"}, {"filename": "gold", "parent": "/usr/bin"}, {"filename": "gpasswd", "parent": "/usr/bin"}, {"filename": "gpg", "parent": "/usr/bin"}, {"filename": "gpg-agent", "parent": "/usr/bin"}, {"filename": "gpgconf", "parent": "/usr/bin"}, {"filename": "gpg-connect-agent", "parent": "/usr/bin"}, {"filename": "gpgparsemail", "parent": "/usr/bin"}, {"filename": "gpgsm", "parent": "/usr/bin"}, {"filename": "gpgsplit", "parent": "/usr/bin"}, {"filename": "gpgv", "parent": "/usr/bin"}, {"filename": "gpg-wks-server", "parent": "/usr/bin"}, {"filename": "gpg-zip", "parent": "/usr/bin"}, {"filename": "gpic", "parent": "/usr/bin"}, {"filename": "gprof", "parent": "/usr/bin"}, {"filename": "groff", "parent": "/usr/bin"}, {"filename": "grog", "parent": "/usr/bin"}, {"filename": "grops", "parent": "/usr/bin"}, {"filename": "grotty", "parent": "/usr/bin"}, {"filename": "groups", "parent": "/usr/bin"}, {"filename": "growpart", "parent": "/usr/bin"}, {"filename": "grub-editenv", "parent": "/usr/bin"}, {"filename": "grub-file", "parent": "/usr/bin"}, {"filename": "grub-fstest", "parent": "/usr/bin"}, {"filename": "grub-glue-efi", "parent": "/usr/bin"}, {"filename": "grub-kbdcomp", "parent": "/usr/bin"}, {"filename": "grub-menulst2cfg", "parent": "/usr/bin"}, {"filename": "grub-mkfont", "parent": "/usr/bin"}, {"filename": "grub-mkimage", "parent": "/usr/bin"}, {"filename": "grub-mklayout", "parent": "/usr/bin"}, {"filename": "grub-mknetdir", "parent": "/usr/bin"}, {"filename": "grub-mkpasswd-pbkdf2", "parent": "/usr/bin"}, {"filename": "grub-mkrelpath", "parent": "/usr/bin"}, {"filename": "grub-mkrescue", "parent": "/usr/bin"}, {"filename": "grub-mkstandalone", "parent": "/usr/bin"}, {"filename": "grub-mount", "parent": "/usr/bin"}, {"filename": "grub-ntldr-img", "parent": "/usr/bin"}, {"filename": "grub-render-label", "parent": "/usr/bin"}, {"filename": "grub-script-check", "parent": "/usr/bin"}, {"filename": "grub-syslinux2cfg", "parent": "/usr/bin"}, {"filename": "gtbl", "parent": "/usr/bin"}, {"filename": "h2ph", "parent": "/usr/bin"}, {"filename": "h2xs", "parent": "/usr/bin"}, {"filename": "hd", "parent": "/usr/bin"}, {"filename": "head", "parent": "/usr/bin"}, {"filename": "helpztags", "parent": "/usr/bin"}, {"filename": "hexdump", "parent": "/usr/bin"}, {"filename": "host", "parent": "/usr/bin"}, {"filename": "hostid", "parent": "/usr/bin"}, {"filename": "hostnamectl", "parent": "/usr/bin"}, {"filename": "htop", "parent": "/usr/bin"}, {"filename": "hwe-support-status", "parent": "/usr/bin"}, {"filename": "i386", "parent": "/usr/bin"}, {"filename": "iconv", "parent": "/usr/bin"}, {"filename": "id", "parent": "/usr/bin"}, {"filename": "igawk", "parent": "/usr/bin"}, {"filename": "info", "parent": "/usr/bin"}, {"filename": "infobrowser", "parent": "/usr/bin"}, {"filename": "infocmp", "parent": "/usr/bin"}, {"filename": "infotocap", "parent": "/usr/bin"}, {"filename": "install", "parent": "/usr/bin"}, {"filename": "install-info", "parent": "/usr/bin"}, {"filename": "instmodsh", "parent": "/usr/bin"}, {"filename": "ionice", "parent": "/usr/bin"}, {"filename": "iostat", "parent": "/usr/bin"}, {"filename": "ipcmk", "parent": "/usr/bin"}, {"filename": "ipcrm", "parent": "/usr/bin"}, {"filename": "ipcs", "parent": "/usr/bin"}, {"filename": "iptables-xml", "parent": "/usr/bin"}, {"filename": "ischroot", "parent": "/usr/bin"}, {"filename": "iscsiadm", "parent": "/usr/bin"}, {"filename": "join", "parent": "/usr/bin"}, {"filename": "jq", "parent": "/usr/bin"}, {"filename": "jsondiff", "parent": "/usr/bin"}, {"filename": "jsonpatch", "parent": "/usr/bin"}, {"filename": "jsonpointer", "parent": "/usr/bin"}, {"filename": "json_pp", "parent": "/usr/bin"}, {"filename": "jsonschema", "parent": "/usr/bin"}, {"filename": "kbdinfo", "parent": "/usr/bin"}, {"filename": "kbxutil", "parent": "/usr/bin"}, {"filename": "keep-one-running", "parent": "/usr/bin"}, {"filename": "kernel-install", "parent": "/usr/bin"}, {"filename": "keyring", "parent": "/usr/bin"}, {"filename": "killall", "parent": "/usr/bin"}, {"filename": "landscape-sysinfo", "parent": "/usr/bin"}, {"filename": "last", "parent": "/usr/bin"}, {"filename": "lastb", "parent": "/usr/bin"}, {"filename": "lastlog", "parent": "/usr/bin"}, {"filename": "lcf", "parent": "/usr/bin"}, {"filename": "ld", "parent": "/usr/bin"}, {"filename": "ld.bfd", "parent": "/usr/bin"}, {"filename": "ldd", "parent": "/usr/bin"}, {"filename": "ld.gold", "parent": "/usr/bin"}, {"filename": "less", "parent": "/usr/bin"}, {"filename": "lessecho", "parent": "/usr/bin"}, {"filename": "lessfile", "parent": "/usr/bin"}, {"filename": "lesskey", "parent": "/usr/bin"}, {"filename": "lesspipe", "parent": "/usr/bin"}, {"filename": "lexgrog", "parent": "/usr/bin"}, {"filename": "libnetcfg", "parent": "/usr/bin"}, {"filename": "link", "parent": "/usr/bin"}, {"filename": "linux32", "parent": "/usr/bin"}, {"filename": "linux64", "parent": "/usr/bin"}, {"filename": "linux-boot-prober", "parent": "/usr/bin"}, {"filename": "linux-check-removal", "parent": "/usr/bin"}, {"filename": "linux-update-symlinks", "parent": "/usr/bin"}, {"filename": "linux-version", "parent": "/usr/bin"}, {"filename": "lnstat", "parent": "/usr/bin"}, {"filename": "loadkeys", "parent": "/usr/bin"}, {"filename": "loadunimap", "parent": "/usr/bin"}, {"filename": "locale", "parent": "/usr/bin"}, {"filename": "locale-check", "parent": "/usr/bin"}, {"filename": "localectl", "parent": "/usr/bin"}, {"filename": "localedef", "parent": "/usr/bin"}, {"filename": "locate", "parent": "/usr/bin"}, {"filename": "logger", "parent": "/usr/bin"}, {"filename": "logname", "parent": "/usr/bin"}, {"filename": "look", "parent": "/usr/bin"}, {"filename": "lorder", "parent": "/usr/bin"}, {"filename": "lsattr", "parent": "/usr/bin"}, {"filename": "lsb_release", "parent": "/usr/bin"}, {"filename": "lscpu", "parent": "/usr/bin"}, {"filename": "lshw", "parent": "/usr/bin"}, {"filename": "lsinitramfs", "parent": "/usr/bin"}, {"filename": "lsipc", "parent": "/usr/bin"}, {"filename": "lslocks", "parent": "/usr/bin"}, {"filename": "lslogins", "parent": "/usr/bin"}, {"filename": "lsmem", "parent": "/usr/bin"}, {"filename": "lsns", "parent": "/usr/bin"}, {"filename": "lsof", "parent": "/usr/bin"}, {"filename": "lspci", "parent": "/usr/bin"}, {"filename": "lspgpot", "parent": "/usr/bin"}, {"filename": "lsusb", "parent": "/usr/bin"}, {"filename": "ltrace", "parent": "/usr/bin"}, {"filename": "lxc", "parent": "/usr/bin"}, {"filename": "lxcfs", "parent": "/usr/bin"}, {"filename": "lxd", "parent": "/usr/bin"}, {"filename": "lzcat", "parent": "/usr/bin"}, {"filename": "lzcmp", "parent": "/usr/bin"}, {"filename": "lzdiff", "parent": "/usr/bin"}, {"filename": "lzegrep", "parent": "/usr/bin"}, {"filename": "lzfgrep", "parent": "/usr/bin"}, {"filename": "lzgrep", "parent": "/usr/bin"}, {"filename": "lzless", "parent": "/usr/bin"}, {"filename": "lzma", "parent": "/usr/bin"}, {"filename": "lzmainfo", "parent": "/usr/bin"}, {"filename": "lzmore", "parent": "/usr/bin"}, {"filename": "make", "parent": "/usr/bin"}, {"filename": "make-first-existing-target", "parent": "/usr/bin"}, {"filename": "man", "parent": "/usr/bin"}, {"filename": "mandb", "parent": "/usr/bin"}, {"filename": "manifest", "parent": "/usr/bin"}, {"filename": "manpath", "parent": "/usr/bin"}, {"filename": "mapscrn", "parent": "/usr/bin"}, {"filename": "mawk", "parent": "/usr/bin"}, {"filename": "mcookie", "parent": "/usr/bin"}, {"filename": "md5sum", "parent": "/usr/bin"}, {"filename": "md5sum.textutils", "parent": "/usr/bin"}, {"filename": "mdig", "parent": "/usr/bin"}, {"filename": "mesg", "parent": "/usr/bin"}, {"filename": "migrate-pubring-from-classic-gpg", "parent": "/usr/bin"}, {"filename": "miniterm", "parent": "/usr/bin"}, {"filename": "mkfifo", "parent": "/usr/bin"}, {"filename": "mk_modmap", "parent": "/usr/bin"}, {"filename": "mksquashfs", "parent": "/usr/bin"}, {"filename": "mlocate", "parent": "/usr/bin"}, {"filename": "mpstat", "parent": "/usr/bin"}, {"filename": "mtr", "parent": "/usr/bin"}, {"filename": "mtrace", "parent": "/usr/bin"}, {"filename": "mtr-packet", "parent": "/usr/bin"}, {"filename": "namei", "parent": "/usr/bin"}, {"filename": "nawk", "parent": "/usr/bin"}, {"filename": "ncal", "parent": "/usr/bin"}, {"filename": "ncat", "parent": "/usr/bin"}, {"filename": "neqn", "parent": "/usr/bin"}, {"filename": "netkit-ftp", "parent": "/usr/bin"}, {"filename": "networkd-dispatcher", "parent": "/usr/bin"}, {"filename": "newgidmap", "parent": "/usr/bin"}, {"filename": "newgrp", "parent": "/usr/bin"}, {"filename": "newuidmap", "parent": "/usr/bin"}, {"filename": "NF", "parent": "/usr/bin"}, {"filename": "ngettext", "parent": "/usr/bin"}, {"filename": "nice", "parent": "/usr/bin"}, {"filename": "nl", "parent": "/usr/bin"}, {"filename": "nm", "parent": "/usr/bin"}, {"filename": "nmap", "parent": "/usr/bin"}, {"filename": "nohup", "parent": "/usr/bin"}, {"filename": "nping", "parent": "/usr/bin"}, {"filename": "nproc", "parent": "/usr/bin"}, {"filename": "nroff", "parent": "/usr/bin"}, {"filename": "nsenter", "parent": "/usr/bin"}, {"filename": "nslookup", "parent": "/usr/bin"}, {"filename": "nstat", "parent": "/usr/bin"}, {"filename": "nsupdate", "parent": "/usr/bin"}, {"filename": "ntfsdecrypt", "parent": "/usr/bin"}, {"filename": "numfmt", "parent": "/usr/bin"}, {"filename": "objcopy", "parent": "/usr/bin"}, {"filename": "objdump", "parent": "/usr/bin"}, {"filename": "od", "parent": "/usr/bin"}, {"filename": "on_ac_power", "parent": "/usr/bin"}, {"filename": "openssl", "parent": "/usr/bin"}, {"filename": "os-prober", "parent": "/usr/bin"}, {"filename": "pager", "parent": "/usr/bin"}, {"filename": "partx", "parent": "/usr/bin"}, {"filename": "passwd", "parent": "/usr/bin"}, {"filename": "paste", "parent": "/usr/bin"}, {"filename": "pastebinit", "parent": "/usr/bin"}, {"filename": "patch", "parent": "/usr/bin"}, {"filename": "pathchk", "parent": "/usr/bin"}, {"filename": "pbget", "parent": "/usr/bin"}, {"filename": "pbput", "parent": "/usr/bin"}, {"filename": "pbputs", "parent": "/usr/bin"}, {"filename": "pcimodules", "parent": "/usr/bin"}, {"filename": "pdb3", "parent": "/usr/bin"}, {"filename": "pdb3.6", "parent": "/usr/bin"}, {"filename": "peekfd", "parent": "/usr/bin"}, {"filename": "perl", "parent": "/usr/bin"}, {"filename": "perl5.26.1", "parent": "/usr/bin"}, {"filename": "perl5.26-x86_64-linux-gnu", "parent": "/usr/bin"}, {"filename": "perlbug", "parent": "/usr/bin"}, {"filename": "perldoc", "parent": "/usr/bin"}, {"filename": "perlivp", "parent": "/usr/bin"}, {"filename": "perlthanks", "parent": "/usr/bin"}, {"filename": "pftp", "parent": "/usr/bin"}, {"filename": "pgrep", "parent": "/usr/bin"}, {"filename": "pic", "parent": "/usr/bin"}, {"filename": "pico", "parent": "/usr/bin"}, {"filename": "piconv", "parent": "/usr/bin"}, {"filename": "pidstat", "parent": "/usr/bin"}, {"filename": "pigz", "parent": "/usr/bin"}, {"filename": "pinentry", "parent": "/usr/bin"}, {"filename": "pinentry-curses", "parent": "/usr/bin"}, {"filename": "pinky", "parent": "/usr/bin"}, {"filename": "pip3", "parent": "/usr/bin"}, {"filename": "pkaction", "parent": "/usr/bin"}, {"filename": "pkcheck", "parent": "/usr/bin"}, {"filename": "pkexec", "parent": "/usr/bin"}, {"filename": "pkill", "parent": "/usr/bin"}, {"filename": "pkttyagent", "parent": "/usr/bin"}, {"filename": "pl2pm", "parent": "/usr/bin"}, {"filename": "pldd", "parent": "/usr/bin"}, {"filename": "pmap", "parent": "/usr/bin"}, {"filename": "pod2html", "parent": "/usr/bin"}, {"filename": "pod2man", "parent": "/usr/bin"}, {"filename": "pod2text", "parent": "/usr/bin"}, {"filename": "pod2usage", "parent": "/usr/bin"}, {"filename": "podchecker", "parent": "/usr/bin"}, {"filename": "podselect", "parent": "/usr/bin"}, {"filename": "pollinate", "parent": "/usr/bin"}, {"filename": "pr", "parent": "/usr/bin"}, {"filename": "preconv", "parent": "/usr/bin"}, {"filename": "print", "parent": "/usr/bin"}, {"filename": "printenv", "parent": "/usr/bin"}, {"filename": "printerbanner", "parent": "/usr/bin"}, {"filename": "printf", "parent": "/usr/bin"}, {"filename": "prlimit", "parent": "/usr/bin"}, {"filename": "prove", "parent": "/usr/bin"}, {"filename": "prtstat", "parent": "/usr/bin"}, {"filename": "psfaddtable", "parent": "/usr/bin"}, {"filename": "psfgettable", "parent": "/usr/bin"}, {"filename": "psfstriptable", "parent": "/usr/bin"}, {"filename": "psfxtable", "parent": "/usr/bin"}, {"filename": "pslog", "parent": "/usr/bin"}, {"filename": "pstree", "parent": "/usr/bin"}, {"filename": "pstree.x11", "parent": "/usr/bin"}, {"filename": "ptar", "parent": "/usr/bin"}, {"filename": "ptardiff", "parent": "/usr/bin"}, {"filename": "ptargrep", "parent": "/usr/bin"}, {"filename": "ptx", "parent": "/usr/bin"}, {"filename": "purge-old-kernels", "parent": "/usr/bin"}, {"filename": "pwdx", "parent": "/usr/bin"}, {"filename": "py3clean", "parent": "/usr/bin"}, {"filename": "py3compile", "parent": "/usr/bin"}, {"filename": "py3versions", "parent": "/usr/bin"}, {"filename": "pybuild", "parent": "/usr/bin"}, {"filename": "pydoc3", "parent": "/usr/bin"}, {"filename": "pydoc3.6", "parent": "/usr/bin"}, {"filename": "pygettext3", "parent": "/usr/bin"}, {"filename": "pygettext3.6", "parent": "/usr/bin"}, {"filename": "pyhtmlizer3", "parent": "/usr/bin"}, {"filename": "pyjwt3", "parent": "/usr/bin"}, {"filename": "python3", "parent": "/usr/bin"}, {"filename": "python3.6", "parent": "/usr/bin"}, {"filename": "python3.6-config", "parent": "/usr/bin"}, {"filename": "python3.6m", "parent": "/usr/bin"}, {"filename": "python3.6m-config", "parent": "/usr/bin"}, {"filename": "python3-config", "parent": "/usr/bin"}, {"filename": "python3-jsondiff", "parent": "/usr/bin"}, {"filename": "python3-jsonpatch", "parent": "/usr/bin"}, {"filename": "python3-jsonpointer", "parent": "/usr/bin"}, {"filename": "python3-jsonschema", "parent": "/usr/bin"}, {"filename": "python3m", "parent": "/usr/bin"}, {"filename": "python3m-config", "parent": "/usr/bin"}, {"filename": "ranlib", "parent": "/usr/bin"}, {"filename": "rcp", "parent": "/usr/bin"}, {"filename": "rdma", "parent": "/usr/bin"}, {"filename": "readelf", "parent": "/usr/bin"}, {"filename": "realpath", "parent": "/usr/bin"}, {"filename": "rename.ul", "parent": "/usr/bin"}, {"filename": "renice", "parent": "/usr/bin"}, {"filename": "reset", "parent": "/usr/bin"}, {"filename": "resizecons", "parent": "/usr/bin"}, {"filename": "resizepart", "parent": "/usr/bin"}, {"filename": "rev", "parent": "/usr/bin"}, {"filename": "rgrep", "parent": "/usr/bin"}, {"filename": "rlogin", "parent": "/usr/bin"}, {"filename": "routef", "parent": "/usr/bin"}, {"filename": "routel", "parent": "/usr/bin"}, {"filename": "rpcgen", "parent": "/usr/bin"}, {"filename": "rsh", "parent": "/usr/bin"}, {"filename": "rsync", "parent": "/usr/bin"}, {"filename": "rtstat", "parent": "/usr/bin"}, {"filename": "runcon", "parent": "/usr/bin"}, {"filename": "run-mailcap", "parent": "/usr/bin"}, {"filename": "run-one", "parent": "/usr/bin"}, {"filename": "run-one-constantly", "parent": "/usr/bin"}, {"filename": "run-one-until-failure", "parent": "/usr/bin"}, {"filename": "run-one-until-success", "parent": "/usr/bin"}, {"filename": "run-this-one", "parent": "/usr/bin"}, {"filename": "rview", "parent": "/usr/bin"}, {"filename": "rvim", "parent": "/usr/bin"}, {"filename": "sadf", "parent": "/usr/bin"}, {"filename": "sar", "parent": "/usr/bin"}, {"filename": "sar.sysstat", "parent": "/usr/bin"}, {"filename": "savelog", "parent": "/usr/bin"}, {"filename": "scp", "parent": "/usr/bin"}, {"filename": "screen", "parent": "/usr/bin"}, {"filename": "screendump", "parent": "/usr/bin"}, {"filename": "script", "parent": "/usr/bin"}, {"filename": "scriptreplay", "parent": "/usr/bin"}, {"filename": "sdiff", "parent": "/usr/bin"}, {"filename": "see", "parent": "/usr/bin"}, {"filename": "select-editor", "parent": "/usr/bin"}, {"filename": "sensible-browser", "parent": "/usr/bin"}, {"filename": "sensible-editor", "parent": "/usr/bin"}, {"filename": "sensible-pager", "parent": "/usr/bin"}, {"filename": "seq", "parent": "/usr/bin"}, {"filename": "setarch", "parent": "/usr/bin"}, {"filename": "setfacl", "parent": "/usr/bin"}, {"filename": "setkeycodes", "parent": "/usr/bin"}, {"filename": "setleds", "parent": "/usr/bin"}, {"filename": "setlogcons", "parent": "/usr/bin"}, {"filename": "setmetamode", "parent": "/usr/bin"}, {"filename": "setpci", "parent": "/usr/bin"}, {"filename": "setsid", "parent": "/usr/bin"}, {"filename": "setterm", "parent": "/usr/bin"}, {"filename": "sftp", "parent": "/usr/bin"}, {"filename": "sg", "parent": "/usr/bin"}, {"filename": "sha1sum", "parent": "/usr/bin"}, {"filename": "sha224sum", "parent": "/usr/bin"}, {"filename": "sha256sum", "parent": "/usr/bin"}, {"filename": "sha384sum", "parent": "/usr/bin"}, {"filename": "sha512sum", "parent": "/usr/bin"}, {"filename": "shasum", "parent": "/usr/bin"}, {"filename": "showconsolefont", "parent": "/usr/bin"}, {"filename": "showkey", "parent": "/usr/bin"}, {"filename": "shred", "parent": "/usr/bin"}, {"filename": "shuf", "parent": "/usr/bin"}, {"filename": "size", "parent": "/usr/bin"}, {"filename": "skill", "parent": "/usr/bin"}, {"filename": "slabtop", "parent": "/usr/bin"}, {"filename": "slogin", "parent": "/usr/bin"}, {"filename": "slurm", "parent": "/usr/bin"}, {"filename": "snap", "parent": "/usr/bin"}, {"filename": "snapctl", "parent": "/usr/bin"}, {"filename": "snapfuse", "parent": "/usr/bin"}, {"filename": "snice", "parent": "/usr/bin"}, {"filename": "soelim", "parent": "/usr/bin"}, {"filename": "sort", "parent": "/usr/bin"}, {"filename": "sosreport", "parent": "/usr/bin"}, {"filename": "sotruss", "parent": "/usr/bin"}, {"filename": "splain", "parent": "/usr/bin"}, {"filename": "split", "parent": "/usr/bin"}, {"filename": "splitfont", "parent": "/usr/bin"}, {"filename": "sprof", "parent": "/usr/bin"}, {"filename": "ssh", "parent": "/usr/bin"}, {"filename": "ssh-add", "parent": "/usr/bin"}, {"filename": "ssh-agent", "parent": "/usr/bin"}, {"filename": "ssh-argv0", "parent": "/usr/bin"}, {"filename": "ssh-copy-id", "parent": "/usr/bin"}, {"filename": "ssh-import-id", "parent": "/usr/bin"}, {"filename": "ssh-import-id-gh", "parent": "/usr/bin"}, {"filename": "ssh-import-id-lp", "parent": "/usr/bin"}, {"filename": "ssh-keygen", "parent": "/usr/bin"}, {"filename": "ssh-keyscan", "parent": "/usr/bin"}, {"filename": "stat", "parent": "/usr/bin"}, {"filename": "stdbuf", "parent": "/usr/bin"}, {"filename": "strace", "parent": "/usr/bin"}, {"filename": "strace-log-merge", "parent": "/usr/bin"}, {"filename": "strings", "parent": "/usr/bin"}, {"filename": "strip", "parent": "/usr/bin"}, {"filename": "sudo", "parent": "/usr/bin"}, {"filename": "sudoedit", "parent": "/usr/bin"}, {"filename": "sudoreplay", "parent": "/usr/bin"}, {"filename": "sum", "parent": "/usr/bin"}, {"filename": "symcryptrun", "parent": "/usr/bin"}, {"filename": "systemd-analyze", "parent": "/usr/bin"}, {"filename": "systemd-cat", "parent": "/usr/bin"}, {"filename": "systemd-cgls", "parent": "/usr/bin"}, {"filename": "systemd-cgtop", "parent": "/usr/bin"}, {"filename": "systemd-delta", "parent": "/usr/bin"}, {"filename": "systemd-detect-virt", "parent": "/usr/bin"}, {"filename": "systemd-mount", "parent": "/usr/bin"}, {"filename": "systemd-path", "parent": "/usr/bin"}, {"filename": "systemd-resolve", "parent": "/usr/bin"}, {"filename": "systemd-run", "parent": "/usr/bin"}, {"filename": "systemd-socket-activate", "parent": "/usr/bin"}, {"filename": "systemd-stdio-bridge", "parent": "/usr/bin"}, {"filename": "systemd-umount", "parent": "/usr/bin"}, {"filename": "tabs", "parent": "/usr/bin"}, {"filename": "tac", "parent": "/usr/bin"}, {"filename": "tail", "parent": "/usr/bin"}, {"filename": "tapestat", "parent": "/usr/bin"}, {"filename": "taskset", "parent": "/usr/bin"}, {"filename": "tbl", "parent": "/usr/bin"}, {"filename": "tee", "parent": "/usr/bin"}, {"filename": "telnet", "parent": "/usr/bin"}, {"filename": "telnet.netkit", "parent": "/usr/bin"}, {"filename": "test", "parent": "/usr/bin"}, {"filename": "tic", "parent": "/usr/bin"}, {"filename": "time", "parent": "/usr/bin"}, {"filename": "timedatectl", "parent": "/usr/bin"}, {"filename": "timeout", "parent": "/usr/bin"}, {"filename": "tkconch3", "parent": "/usr/bin"}, {"filename": "tload", "parent": "/usr/bin"}, {"filename": "tmux", "parent": "/usr/bin"}, {"filename": "toe", "parent": "/usr/bin"}, {"filename": "top", "parent": "/usr/bin"}, {"filename": "touch", "parent": "/usr/bin"}, {"filename": "tput", "parent": "/usr/bin"}, {"filename": "tr", "parent": "/usr/bin"}, {"filename": "tracepath", "parent": "/usr/bin"}, {"filename": "traceroute6", "parent": "/usr/bin"}, {"filename": "traceroute6.iputils", "parent": "/usr/bin"}, {"filename": "trial3", "parent": "/usr/bin"}, {"filename": "troff", "parent": "/usr/bin"}, {"filename": "truncate", "parent": "/usr/bin"}, {"filename": "tset", "parent": "/usr/bin"}, {"filename": "tsort", "parent": "/usr/bin"}, {"filename": "tty", "parent": "/usr/bin"}, {"filename": "twist3", "parent": "/usr/bin"}, {"filename": "twistd3", "parent": "/usr/bin"}, {"filename": "tzselect", "parent": "/usr/bin"}, {"filename": "ua", "parent": "/usr/bin"}, {"filename": "ubuntu-advantage", "parent": "/usr/bin"}, {"filename": "ubuntu-bug", "parent": "/usr/bin"}, {"filename": "ubuntu-core-launcher", "parent": "/usr/bin"}, {"filename": "ubuntu-support-status", "parent": "/usr/bin"}, {"filename": "ucf", "parent": "/usr/bin"}, {"filename": "ucfq", "parent": "/usr/bin"}, {"filename": "ucfr", "parent": "/usr/bin"}, {"filename": "ul", "parent": "/usr/bin"}, {"filename": "unattended-upgrade", "parent": "/usr/bin"}, {"filename": "unattended-upgrades", "parent": "/usr/bin"}, {"filename": "unexpand", "parent": "/usr/bin"}, {"filename": "unicode_stop", "parent": "/usr/bin"}, {"filename": "uniq", "parent": "/usr/bin"}, {"filename": "unlink", "parent": "/usr/bin"}, {"filename": "unlzma", "parent": "/usr/bin"}, {"filename": "unmkinitramfs", "parent": "/usr/bin"}, {"filename": "unpigz", "parent": "/usr/bin"}, {"filename": "unshare", "parent": "/usr/bin"}, {"filename": "unsquashfs", "parent": "/usr/bin"}, {"filename": "unxz", "parent": "/usr/bin"}, {"filename": "update-alternatives", "parent": "/usr/bin"}, {"filename": "updatedb", "parent": "/usr/bin"}, {"filename": "updatedb.mlocate", "parent": "/usr/bin"}, {"filename": "update-mime-database", "parent": "/usr/bin"}, {"filename": "uptime", "parent": "/usr/bin"}, {"filename": "usb-devices", "parent": "/usr/bin"}, {"filename": "usbhid-dump", "parent": "/usr/bin"}, {"filename": "users", "parent": "/usr/bin"}, {"filename": "utmpdump", "parent": "/usr/bin"}, {"filename": "uuidgen", "parent": "/usr/bin"}, {"filename": "uuidparse", "parent": "/usr/bin"}, {"filename": "vcs-run", "parent": "/usr/bin"}, {"filename": "VGAuthService", "parent": "/usr/bin"}, {"filename": "vi", "parent": "/usr/bin"}, {"filename": "view", "parent": "/usr/bin"}, {"filename": "vigpg", "parent": "/usr/bin"}, {"filename": "vim", "parent": "/usr/bin"}, {"filename": "vim.basic", "parent": "/usr/bin"}, {"filename": "vimdiff", "parent": "/usr/bin"}, {"filename": "vim.tiny", "parent": "/usr/bin"}, {"filename": "vimtutor", "parent": "/usr/bin"}, {"filename": "vmhgfs-fuse", "parent": "/usr/bin"}, {"filename": "vmstat", "parent": "/usr/bin"}, {"filename": "vmtoolsd", "parent": "/usr/bin"}, {"filename": "vmware-checkvm", "parent": "/usr/bin"}, {"filename": "vmware-guestproxycerttool", "parent": "/usr/bin"}, {"filename": "vmware-hgfsclient", "parent": "/usr/bin"}, {"filename": "vmware-namespace-cmd", "parent": "/usr/bin"}, {"filename": "vmware-rpctool", "parent": "/usr/bin"}, {"filename": "vmware-toolbox-cmd", "parent": "/usr/bin"}, {"filename": "vmware-vgauth-cmd", "parent": "/usr/bin"}, {"filename": "vmware-vgauth-smoketest", "parent": "/usr/bin"}, {"filename": "vmware-vmblock-fuse", "parent": "/usr/bin"}, {"filename": "vmware-xferlogs", "parent": "/usr/bin"}, {"filename": "volname", "parent": "/usr/bin"}, {"filename": "w", "parent": "/usr/bin"}, {"filename": "wall", "parent": "/usr/bin"}, {"filename": "watch", "parent": "/usr/bin"}, {"filename": "watchgnupg", "parent": "/usr/bin"}, {"filename": "wc", "parent": "/usr/bin"}, {"filename": "wget", "parent": "/usr/bin"}, {"filename": "whatis", "parent": "/usr/bin"}, {"filename": "whereis", "parent": "/usr/bin"}, {"filename": "which", "parent": "/usr/bin"}, {"filename": "who", "parent": "/usr/bin"}, {"filename": "whoami", "parent": "/usr/bin"}, {"filename": "wifi-status", "parent": "/usr/bin"}, {"filename": "wmdocker", "parent": "/usr/bin"}, {"filename": "w.procps", "parent": "/usr/bin"}, {"filename": "write", "parent": "/usr/bin"}, {"filename": "x86_64", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-addr2line", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-ar", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-as", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-c++filt", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-cpp", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-cpp-7", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-dwp", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-elfedit", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-g++", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-g++-7", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-gcc", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-gcc-7", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-gcc-ar", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-gcc-ar-7", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-gcc-nm", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-gcc-nm-7", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-gcc-ranlib", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-gcc-ranlib-7", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-gcov", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-gcov-7", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-gcov-dump", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-gcov-dump-7", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-gcov-tool", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-gcov-tool-7", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-gold", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-gprof", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-ld", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-ld.bfd", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-ld.gold", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-nm", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-objcopy", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-objdump", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-python3.6-config", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-python3.6m-config", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-python3-config", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-python3m-config", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-ranlib", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-readelf", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-size", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-strings", "parent": "/usr/bin"}, {"filename": "x86_64-linux-gnu-strip", "parent": "/usr/bin"}, {"filename": "xargs", "parent": "/usr/bin"}, {"filename": "xauth", "parent": "/usr/bin"}, {"filename": "xdelta3", "parent": "/usr/bin"}, {"filename": "xdg-user-dir", "parent": "/usr/bin"}, {"filename": "xdg-user-dirs-update", "parent": "/usr/bin"}, {"filename": "xsubpp", "parent": "/usr/bin"}, {"filename": "xxd", "parent": "/usr/bin"}, {"filename": "xz", "parent": "/usr/bin"}, {"filename": "xzcat", "parent": "/usr/bin"}, {"filename": "xzcmp", "parent": "/usr/bin"}, {"filename": "xzdiff", "parent": "/usr/bin"}, {"filename": "xzegrep", "parent": "/usr/bin"}, {"filename": "xzfgrep", "parent": "/usr/bin"}, {"filename": "xzgrep", "parent": "/usr/bin"}, {"filename": "xzless", "parent": "/usr/bin"}, {"filename": "xzmore", "parent": "/usr/bin"}, {"filename": "yes", "parent": "/usr/bin"}, {"filename": "zdump", "parent": "/usr/bin"}, {"filename": "zipdetails", "parent": "/usr/bin"}, {"filename": "aio.h", "parent": "/usr/include"}, {"filename": "aliases.h", "parent": "/usr/include"}, {"filename": "alloca.h", "parent": "/usr/include"}, {"filename": "argp.h", "parent": "/usr/include"}, {"filename": "argz.h", "parent": "/usr/include"}, {"filename": "ar.h", "parent": "/usr/include"}, {"filename": "arpa", "parent": "/usr/include"}, {"filename": "asm-generic", "parent": "/usr/include"}, {"filename": "assert.h", "parent": "/usr/include"}, {"filename": "btrfs", "parent": "/usr/include"}, {"filename": "byteswap.h", "parent": "/usr/include"}, {"filename": "c++", "parent": "/usr/include"}, {"filename": "complex.h", "parent": "/usr/include"}, {"filename": "cpio.h", "parent": "/usr/include"}, {"filename": "crypt.h", "parent": "/usr/include"}, {"filename": "ctype.h", "parent": "/usr/include"}, {"filename": "dirent.h", "parent": "/usr/include"}, {"filename": "dlfcn.h", "parent": "/usr/include"}, {"filename": "drm", "parent": "/usr/include"}, {"filename": "elf.h", "parent": "/usr/include"}, {"filename": "endian.h", "parent": "/usr/include"}, {"filename": "envz.h", "parent": "/usr/include"}, {"filename": "err.h", "parent": "/usr/include"}, {"filename": "errno.h", "parent": "/usr/include"}, {"filename": "error.h", "parent": "/usr/include"}, {"filename": "execinfo.h", "parent": "/usr/include"}, {"filename": "expat_external.h", "parent": "/usr/include"}, {"filename": "expat.h", "parent": "/usr/include"}, {"filename": "fcntl.h", "parent": "/usr/include"}, {"filename": "features.h", "parent": "/usr/include"}, {"filename": "fenv.h", "parent": "/usr/include"}, {"filename": "fmtmsg.h", "parent": "/usr/include"}, {"filename": "fnmatch.h", "parent": "/usr/include"}, {"filename": "fstab.h", "parent": "/usr/include"}, {"filename": "fts.h", "parent": "/usr/include"}, {"filename": "ftw.h", "parent": "/usr/include"}, {"filename": "gawkapi.h", "parent": "/usr/include"}, {"filename": "_G_config.h", "parent": "/usr/include"}, {"filename": "gconv.h", "parent": "/usr/include"}, {"filename": "getopt.h", "parent": "/usr/include"}, {"filename": "glob.h", "parent": "/usr/include"}, {"filename": "gnumake.h", "parent": "/usr/include"}, {"filename": "gnu-versions.h", "parent": "/usr/include"}, {"filename": "grp.h", "parent": "/usr/include"}, {"filename": "gshadow.h", "parent": "/usr/include"}, {"filename": "iconv.h", "parent": "/usr/include"}, {"filename": "ifaddrs.h", "parent": "/usr/include"}, {"filename": "inttypes.h", "parent": "/usr/include"}, {"filename": "langinfo.h", "parent": "/usr/include"}, {"filename": "lastlog.h", "parent": "/usr/include"}, {"filename": "libgen.h", "parent": "/usr/include"}, {"filename": "libintl.h", "parent": "/usr/include"}, {"filename": "libio.h", "parent": "/usr/include"}, {"filename": "limits.h", "parent": "/usr/include"}, {"filename": "link.h", "parent": "/usr/include"}, {"filename": "linux", "parent": "/usr/include"}, {"filename": "locale.h", "parent": "/usr/include"}, {"filename": "malloc.h", "parent": "/usr/include"}, {"filename": "math.h", "parent": "/usr/include"}, {"filename": "mcheck.h", "parent": "/usr/include"}, {"filename": "memory.h", "parent": "/usr/include"}, {"filename": "misc", "parent": "/usr/include"}, {"filename": "mntent.h", "parent": "/usr/include"}, {"filename": "monetary.h", "parent": "/usr/include"}, {"filename": "mqueue.h", "parent": "/usr/include"}, {"filename": "mtd", "parent": "/usr/include"}, {"filename": "net", "parent": "/usr/include"}, {"filename": "netash", "parent": "/usr/include"}, {"filename": "netatalk", "parent": "/usr/include"}, {"filename": "netax25", "parent": "/usr/include"}, {"filename": "netdb.h", "parent": "/usr/include"}, {"filename": "neteconet", "parent": "/usr/include"}, {"filename": "netinet", "parent": "/usr/include"}, {"filename": "netipx", "parent": "/usr/include"}, {"filename": "netiucv", "parent": "/usr/include"}, {"filename": "netpacket", "parent": "/usr/include"}, {"filename": "netrom", "parent": "/usr/include"}, {"filename": "netrose", "parent": "/usr/include"}, {"filename": "nfs", "parent": "/usr/include"}, {"filename": "nl_types.h", "parent": "/usr/include"}, {"filename": "nss.h", "parent": "/usr/include"}, {"filename": "obstack.h", "parent": "/usr/include"}, {"filename": "paths.h", "parent": "/usr/include"}, {"filename": "poll.h", "parent": "/usr/include"}, {"filename": "printf.h", "parent": "/usr/include"}, {"filename": "proc_service.h", "parent": "/usr/include"}, {"filename": "protocols", "parent": "/usr/include"}, {"filename": "pthread.h", "parent": "/usr/include"}, {"filename": "pty.h", "parent": "/usr/include"}, {"filename": "pwd.h", "parent": "/usr/include"}, {"filename": "python3.6", "parent": "/usr/include"}, {"filename": "python3.6m", "parent": "/usr/include"}, {"filename": "rdma", "parent": "/usr/include"}, {"filename": "re_comp.h", "parent": "/usr/include"}, {"filename": "regex.h", "parent": "/usr/include"}, {"filename": "regexp.h", "parent": "/usr/include"}, {"filename": "reglib", "parent": "/usr/include"}, {"filename": "resolv.h", "parent": "/usr/include"}, {"filename": "rpc", "parent": "/usr/include"}, {"filename": "rpcsvc", "parent": "/usr/include"}, {"filename": "sched.h", "parent": "/usr/include"}, {"filename": "scsi", "parent": "/usr/include"}, {"filename": "search.h", "parent": "/usr/include"}, {"filename": "semaphore.h", "parent": "/usr/include"}, {"filename": "setjmp.h", "parent": "/usr/include"}, {"filename": "sgtty.h", "parent": "/usr/include"}, {"filename": "shadow.h", "parent": "/usr/include"}, {"filename": "signal.h", "parent": "/usr/include"}, {"filename": "sound", "parent": "/usr/include"}, {"filename": "spawn.h", "parent": "/usr/include"}, {"filename": "stab.h", "parent": "/usr/include"}, {"filename": "stdc-predef.h", "parent": "/usr/include"}, {"filename": "stdint.h", "parent": "/usr/include"}, {"filename": "stdio_ext.h", "parent": "/usr/include"}, {"filename": "stdio.h", "parent": "/usr/include"}, {"filename": "stdlib.h", "parent": "/usr/include"}, {"filename": "string.h", "parent": "/usr/include"}, {"filename": "strings.h", "parent": "/usr/include"}, {"filename": "stropts.h", "parent": "/usr/include"}, {"filename": "sudo_plugin.h", "parent": "/usr/include"}, {"filename": "syscall.h", "parent": "/usr/include"}, {"filename": "sysexits.h", "parent": "/usr/include"}, {"filename": "syslog.h", "parent": "/usr/include"}, {"filename": "tar.h", "parent": "/usr/include"}, {"filename": "termio.h", "parent": "/usr/include"}, {"filename": "termios.h", "parent": "/usr/include"}, {"filename": "tgmath.h", "parent": "/usr/include"}, {"filename": "thread_db.h", "parent": "/usr/include"}, {"filename": "time.h", "parent": "/usr/include"}, {"filename": "ttyent.h", "parent": "/usr/include"}, {"filename": "uchar.h", "parent": "/usr/include"}, {"filename": "ucontext.h", "parent": "/usr/include"}, {"filename": "ulimit.h", "parent": "/usr/include"}, {"filename": "unistd.h", "parent": "/usr/include"}, {"filename": "ustat.h", "parent": "/usr/include"}, {"filename": "utime.h", "parent": "/usr/include"}, {"filename": "utmp.h", "parent": "/usr/include"}, {"filename": "utmpx.h", "parent": "/usr/include"}, {"filename": "values.h", "parent": "/usr/include"}, {"filename": "video", "parent": "/usr/include"}, {"filename": "wait.h", "parent": "/usr/include"}, {"filename": "wchar.h", "parent": "/usr/include"}, {"filename": "wctype.h", "parent": "/usr/include"}, {"filename": "wordexp.h", "parent": "/usr/include"}, {"filename": "x86_64-linux-gnu", "parent": "/usr/include"}, {"filename": "xen", "parent": "/usr/include"}, {"filename": "xfs", "parent": "/usr/include"}, {"filename": "accountsservice", "parent": "/usr/lib"}, {"filename": "apt", "parent": "/usr/lib"}, {"filename": "bfd-plugins", "parent": "/usr/lib"}, {"filename": "binfmt.d", "parent": "/usr/lib"}, {"filename": "byobu", "parent": "/usr/lib"}, {"filename": "cloud-init", "parent": "/usr/lib"}, {"filename": "cnf-update-db", "parent": "/usr/lib"}, {"filename": "command-not-found", "parent": "/usr/lib"}, {"filename": "compat-ld", "parent": "/usr/lib"}, {"filename": "dbus-1.0", "parent": "/usr/lib"}, {"filename": "dpkg", "parent": "/usr/lib"}, {"filename": "dracut", "parent": "/usr/lib"}, {"filename": "eject", "parent": "/usr/lib"}, {"filename": "environment.d", "parent": "/usr/lib"}, {"filename": "file", "parent": "/usr/lib"}, {"filename": "gcc", "parent": "/usr/lib"}, {"filename": "git-core", "parent": "/usr/lib"}, {"filename": "gnupg", "parent": "/usr/lib"}, {"filename": "gnupg2", "parent": "/usr/lib"}, {"filename": "gold-ld", "parent": "/usr/lib"}, {"filename": "groff", "parent": "/usr/lib"}, {"filename": "grub", "parent": "/usr/lib"}, {"filename": "grub-legacy", "parent": "/usr/lib"}, {"filename": "initcpio", "parent": "/usr/lib"}, {"filename": "initramfs-tools", "parent": "/usr/lib"}, {"filename": "kernel", "parent": "/usr/lib"}, {"filename": "klibc", "parent": "/usr/lib"}, {"filename": "language-selector", "parent": "/usr/lib"}, {"filename": "libDeployPkg.so.0", "parent": "/usr/lib"}, {"filename": "libDeployPkg.so.0.0.0", "parent": "/usr/lib"}, {"filename": "libguestlib.so.0", "parent": "/usr/lib"}, {"filename": "libguestlib.so.0.0.0", "parent": "/usr/lib"}, {"filename": "libhgfs.so.0", "parent": "/usr/lib"}, {"filename": "libhgfs.so.0.0.0", "parent": "/usr/lib"}, {"filename": "libvgauth.so.0", "parent": "/usr/lib"}, {"filename": "libvgauth.so.0.0.0", "parent": "/usr/lib"}, {"filename": "libvmtools.so.0", "parent": "/usr/lib"}, {"filename": "libvmtools.so.0.0.0", "parent": "/usr/lib"}, {"filename": "linux", "parent": "/usr/lib"}, {"filename": "linux-boot-probes", "parent": "/usr/lib"}, {"filename": "locale", "parent": "/usr/lib"}, {"filename": "lxcfs", "parent": "/usr/lib"}, {"filename": "lxd", "parent": "/usr/lib"}, {"filename": "man-db", "parent": "/usr/lib"}, {"filename": "mime", "parent": "/usr/lib"}, {"filename": "modules-load.d", "parent": "/usr/lib"}, {"filename": "networkd-dispatcher", "parent": "/usr/lib"}, {"filename": "openssh", "parent": "/usr/lib"}, {"filename": "open-vm-tools", "parent": "/usr/lib"}, {"filename": "os-prober", "parent": "/usr/lib"}, {"filename": "os-probes", "parent": "/usr/lib"}, {"filename": "os-release", "parent": "/usr/lib"}, {"filename": "pm-utils", "parent": "/usr/lib"}, {"filename": "policykit-1", "parent": "/usr/lib"}, {"filename": "python2.7", "parent": "/usr/lib"}, {"filename": "python3", "parent": "/usr/lib"}, {"filename": "python3.6", "parent": "/usr/lib"}, {"filename": "python3.7", "parent": "/usr/lib"}, {"filename": "rsyslog", "parent": "/usr/lib"}, {"filename": "sasl2", "parent": "/usr/lib"}, {"filename": "sftp-server", "parent": "/usr/lib"}, {"filename": "snapd", "parent": "/usr/lib"}, {"filename": "software-properties", "parent": "/usr/lib"}, {"filename": "ssl", "parent": "/usr/lib"}, {"filename": "sudo", "parent": "/usr/lib"}, {"filename": "sysctl.d", "parent": "/usr/lib"}, {"filename": "sysstat", "parent": "/usr/lib"}, {"filename": "systemd", "parent": "/usr/lib"}, {"filename": "sysusers.d", "parent": "/usr/lib"}, {"filename": "tar", "parent": "/usr/lib"}, {"filename": "tc", "parent": "/usr/lib"}, {"filename": "tmpfiles.d", "parent": "/usr/lib"}, {"filename": "ubuntu-fan", "parent": "/usr/lib"}, {"filename": "ubuntu-release-upgrader", "parent": "/usr/lib"}, {"filename": "update-notifier", "parent": "/usr/lib"}, {"filename": "valgrind", "parent": "/usr/lib"}, {"filename": "x86_64-linux-gnu", "parent": "/usr/lib"}, {"filename": "bin", "parent": "/usr/local"}, {"filename": "etc", "parent": "/usr/local"}, {"filename": "games", "parent": "/usr/local"}, {"filename": "include", "parent": "/usr/local"}, {"filename": "lib", "parent": "/usr/local"}, {"filename": "man", "parent": "/usr/local"}, {"filename": "sbin", "parent": "/usr/local"}, {"filename": "share", "parent": "/usr/local"}, {"filename": "src", "parent": "/usr/local"}, {"filename": "aa-remove-unknown", "parent": "/usr/sbin"}, {"filename": "aa-status", "parent": "/usr/sbin"}, {"filename": "accessdb", "parent": "/usr/sbin"}, {"filename": "acpid", "parent": "/usr/sbin"}, {"filename": "addgnupghome", "parent": "/usr/sbin"}, {"filename": "addgroup", "parent": "/usr/sbin"}, {"filename": "add-shell", "parent": "/usr/sbin"}, {"filename": "adduser", "parent": "/usr/sbin"}, {"filename": "apparmor_status", "parent": "/usr/sbin"}, {"filename": "applygnupgdefaults", "parent": "/usr/sbin"}, {"filename": "arp", "parent": "/usr/sbin"}, {"filename": "arpd", "parent": "/usr/sbin"}, {"filename": "atd", "parent": "/usr/sbin"}, {"filename": "bcache-super-show", "parent": "/usr/sbin"}, {"filename": "biosdecode", "parent": "/usr/sbin"}, {"filename": "chgpasswd", "parent": "/usr/sbin"}, {"filename": "chmem", "parent": "/usr/sbin"}, {"filename": "chpasswd", "parent": "/usr/sbin"}, {"filename": "chroot", "parent": "/usr/sbin"}, {"filename": "cpgr", "parent": "/usr/sbin"}, {"filename": "cppw", "parent": "/usr/sbin"}, {"filename": "cron", "parent": "/usr/sbin"}, {"filename": "cryptdisks_start", "parent": "/usr/sbin"}, {"filename": "cryptdisks_stop", "parent": "/usr/sbin"}, {"filename": "delgroup", "parent": "/usr/sbin"}, {"filename": "deluser", "parent": "/usr/sbin"}, {"filename": "dmidecode", "parent": "/usr/sbin"}, {"filename": "dnsmasq", "parent": "/usr/sbin"}, {"filename": "dpkg-preconfigure", "parent": "/usr/sbin"}, {"filename": "dpkg-reconfigure", "parent": "/usr/sbin"}, {"filename": "e2freefrag", "parent": "/usr/sbin"}, {"filename": "e4crypt", "parent": "/usr/sbin"}, {"filename": "e4defrag", "parent": "/usr/sbin"}, {"filename": "fanatic", "parent": "/usr/sbin"}, {"filename": "fanctl", "parent": "/usr/sbin"}, {"filename": "fdformat", "parent": "/usr/sbin"}, {"filename": "filefrag", "parent": "/usr/sbin"}, {"filename": "genl", "parent": "/usr/sbin"}, {"filename": "groupadd", "parent": "/usr/sbin"}, {"filename": "groupdel", "parent": "/usr/sbin"}, {"filename": "groupmems", "parent": "/usr/sbin"}, {"filename": "groupmod", "parent": "/usr/sbin"}, {"filename": "grpck", "parent": "/usr/sbin"}, {"filename": "grpconv", "parent": "/usr/sbin"}, {"filename": "grpunconv", "parent": "/usr/sbin"}, {"filename": "grub-bios-setup", "parent": "/usr/sbin"}, {"filename": "grub-install", "parent": "/usr/sbin"}, {"filename": "grub-macbless", "parent": "/usr/sbin"}, {"filename": "grub-mkconfig", "parent": "/usr/sbin"}, {"filename": "grub-mkdevicemap", "parent": "/usr/sbin"}, {"filename": "grub-probe", "parent": "/usr/sbin"}, {"filename": "grub-reboot", "parent": "/usr/sbin"}, {"filename": "grub-set-default", "parent": "/usr/sbin"}, {"filename": "grub-set-default-legacy-ec2", "parent": "/usr/sbin"}, {"filename": "grub-set-default.real", "parent": "/usr/sbin"}, {"filename": "iconvconfig", "parent": "/usr/sbin"}, {"filename": "iftop", "parent": "/usr/sbin"}, {"filename": "init.lxc", "parent": "/usr/sbin"}, {"filename": "init.lxc.static", "parent": "/usr/sbin"}, {"filename": "invoke-rc.d", "parent": "/usr/sbin"}, {"filename": "ip6tables-apply", "parent": "/usr/sbin"}, {"filename": "iptables-apply", "parent": "/usr/sbin"}, {"filename": "irqbalance", "parent": "/usr/sbin"}, {"filename": "irqbalance-ui", "parent": "/usr/sbin"}, {"filename": "iscsid", "parent": "/usr/sbin"}, {"filename": "iscsi_discovery", "parent": "/usr/sbin"}, {"filename": "iscsi-iname", "parent": "/usr/sbin"}, {"filename": "iscsistart", "parent": "/usr/sbin"}, {"filename": "iucode_tool", "parent": "/usr/sbin"}, {"filename": "iucode-tool", "parent": "/usr/sbin"}, {"filename": "ldattach", "parent": "/usr/sbin"}, {"filename": "locale-gen", "parent": "/usr/sbin"}, {"filename": "logrotate", "parent": "/usr/sbin"}, {"filename": "luksformat", "parent": "/usr/sbin"}, {"filename": "make-bcache", "parent": "/usr/sbin"}, {"filename": "mkinitramfs", "parent": "/usr/sbin"}, {"filename": "mklost+found", "parent": "/usr/sbin"}, {"filename": "netplan", "parent": "/usr/sbin"}, {"filename": "newusers", "parent": "/usr/sbin"}, {"filename": "nfnl_osf", "parent": "/usr/sbin"}, {"filename": "nologin", "parent": "/usr/sbin"}, {"filename": "overlayroot-chroot", "parent": "/usr/sbin"}, {"filename": "ownership", "parent": "/usr/sbin"}, {"filename": "pam-auth-update", "parent": "/usr/sbin"}, {"filename": "pam_getenv", "parent": "/usr/sbin"}, {"filename": "pam_timestamp_check", "parent": "/usr/sbin"}, {"filename": "popcon-largest-unused", "parent": "/usr/sbin"}, {"filename": "popularity-contest", "parent": "/usr/sbin"}, {"filename": "pwck", "parent": "/usr/sbin"}, {"filename": "pwconv", "parent": "/usr/sbin"}, {"filename": "pwunconv", "parent": "/usr/sbin"}, {"filename": "readprofile", "parent": "/usr/sbin"}, {"filename": "recvtty", "parent": "/usr/sbin"}, {"filename": "remove-shell", "parent": "/usr/sbin"}, {"filename": "rmt", "parent": "/usr/sbin"}, {"filename": "rmt-tar", "parent": "/usr/sbin"}, {"filename": "rsyslogd", "parent": "/usr/sbin"}, {"filename": "rtcwake", "parent": "/usr/sbin"}, {"filename": "runc", "parent": "/usr/sbin"}, {"filename": "service", "parent": "/usr/sbin"}, {"filename": "setvesablank", "parent": "/usr/sbin"}, {"filename": "sshd", "parent": "/usr/sbin"}, {"filename": "tarcat", "parent": "/usr/sbin"}, {"filename": "tcpdump", "parent": "/usr/sbin"}, {"filename": "thermald", "parent": "/usr/sbin"}, {"filename": "tzconfig", "parent": "/usr/sbin"}, {"filename": "ufw", "parent": "/usr/sbin"}, {"filename": "update-ca-certificates", "parent": "/usr/sbin"}, {"filename": "update-grub", "parent": "/usr/sbin"}, {"filename": "update-grub2", "parent": "/usr/sbin"}, {"filename": "update-grub-gfxpayload", "parent": "/usr/sbin"}, {"filename": "update-grub-legacy-ec2", "parent": "/usr/sbin"}, {"filename": "update-info-dir", "parent": "/usr/sbin"}, {"filename": "update-initramfs", "parent": "/usr/sbin"}, {"filename": "update-locale", "parent": "/usr/sbin"}, {"filename": "update-mime", "parent": "/usr/sbin"}, {"filename": "update-passwd", "parent": "/usr/sbin"}, {"filename": "update-pciids", "parent": "/usr/sbin"}, {"filename": "update-rc.d", "parent": "/usr/sbin"}, {"filename": "update-usbids", "parent": "/usr/sbin"}, {"filename": "upgrade-from-grub-legacy", "parent": "/usr/sbin"}, {"filename": "useradd", "parent": "/usr/sbin"}, {"filename": "userdel", "parent": "/usr/sbin"}, {"filename": "usermod", "parent": "/usr/sbin"}, {"filename": "uuidd", "parent": "/usr/sbin"}, {"filename": "validlocale", "parent": "/usr/sbin"}, {"filename": "vcstime", "parent": "/usr/sbin"}, {"filename": "vigr", "parent": "/usr/sbin"}, {"filename": "vipw", "parent": "/usr/sbin"}, {"filename": "visudo", "parent": "/usr/sbin"}, {"filename": "vpddecode", "parent": "/usr/sbin"}, {"filename": "xfs_admin", "parent": "/usr/sbin"}, {"filename": "xfs_bmap", "parent": "/usr/sbin"}, {"filename": "xfs_copy", "parent": "/usr/sbin"}, {"filename": "xfs_db", "parent": "/usr/sbin"}, {"filename": "xfs_estimate", "parent": "/usr/sbin"}, {"filename": "xfs_freeze", "parent": "/usr/sbin"}, {"filename": "xfs_fsr", "parent": "/usr/sbin"}, {"filename": "xfs_growfs", "parent": "/usr/sbin"}, {"filename": "xfs_info", "parent": "/usr/sbin"}, {"filename": "xfs_io", "parent": "/usr/sbin"}, {"filename": "xfs_logprint", "parent": "/usr/sbin"}, {"filename": "xfs_mdrestore", "parent": "/usr/sbin"}, {"filename": "xfs_metadump", "parent": "/usr/sbin"}, {"filename": "xfs_mkfile", "parent": "/usr/sbin"}, {"filename": "xfs_ncheck", "parent": "/usr/sbin"}, {"filename": "xfs_quota", "parent": "/usr/sbin"}, {"filename": "xfs_rtcp", "parent": "/usr/sbin"}, {"filename": "zerofree", "parent": "/usr/sbin"}, {"filename": "zic", "parent": "/usr/sbin"}, {"filename": "aclocal", "parent": "/usr/share"}, {"filename": "adduser", "parent": "/usr/share"}, {"filename": "applications", "parent": "/usr/share"}, {"filename": "apport", "parent": "/usr/share"}, {"filename": "awk", "parent": "/usr/share"}, {"filename": "base-files", "parent": "/usr/share"}, {"filename": "base-passwd", "parent": "/usr/share"}, {"filename": "bash-completion", "parent": "/usr/share"}, {"filename": "binfmts", "parent": "/usr/share"}, {"filename": "bug", "parent": "/usr/share"}, {"filename": "build-essential", "parent": "/usr/share"}, {"filename": "byobu", "parent": "/usr/share"}, {"filename": "ca-certificates", "parent": "/usr/share"}, {"filename": "calendar", "parent": "/usr/share"}, {"filename": "cmake", "parent": "/usr/share"}, {"filename": "command-not-found", "parent": "/usr/share"}, {"filename": "common-licenses", "parent": "/usr/share"}, {"filename": "consolefonts", "parent": "/usr/share"}, {"filename": "console-setup", "parent": "/usr/share"}, {"filename": "consoletrans", "parent": "/usr/share"}, {"filename": "cryptsetup", "parent": "/usr/share"}, {"filename": "dbus-1", "parent": "/usr/share"}, {"filename": "debconf", "parent": "/usr/share"}, {"filename": "debhelper", "parent": "/usr/share"}, {"filename": "debianutils", "parent": "/usr/share"}, {"filename": "dh-python", "parent": "/usr/share"}, {"filename": "dict", "parent": "/usr/share"}, {"filename": "distro-info", "parent": "/usr/share"}, {"filename": "dns", "parent": "/usr/share"}, {"filename": "dnsmasq-base", "parent": "/usr/share"}, {"filename": "doc", "parent": "/usr/share"}, {"filename": "doc-base", "parent": "/usr/share"}, {"filename": "docker.io", "parent": "/usr/share"}, {"filename": "dpkg", "parent": "/usr/share"}, {"filename": "file", "parent": "/usr/share"}, {"filename": "gcc-8", "parent": "/usr/share"}, {"filename": "gdb", "parent": "/usr/share"}, {"filename": "GeoIP", "parent": "/usr/share"}, {"filename": "gettext", "parent": "/usr/share"}, {"filename": "git-core", "parent": "/usr/share"}, {"filename": "gitweb", "parent": "/usr/share"}, {"filename": "glib-2.0", "parent": "/usr/share"}, {"filename": "gnupg", "parent": "/usr/share"}, {"filename": "groff", "parent": "/usr/share"}, {"filename": "grub", "parent": "/usr/share"}, {"filename": "grub-gfxpayload-lists", "parent": "/usr/share"}, {"filename": "hal", "parent": "/usr/share"}, {"filename": "i18n", "parent": "/usr/share"}, {"filename": "icons", "parent": "/usr/share"}, {"filename": "info", "parent": "/usr/share"}, {"filename": "initramfs-tools", "parent": "/usr/share"}, {"filename": "iptables", "parent": "/usr/share"}, {"filename": "iso-codes", "parent": "/usr/share"}, {"filename": "java", "parent": "/usr/share"}, {"filename": "keyrings", "parent": "/usr/share"}, {"filename": "landscape", "parent": "/usr/share"}, {"filename": "language-selector", "parent": "/usr/share"}, {"filename": "language-support", "parent": "/usr/share"}, {"filename": "language-tools", "parent": "/usr/share"}, {"filename": "libc-bin", "parent": "/usr/share"}, {"filename": "libdrm", "parent": "/usr/share"}, {"filename": "libsensors4", "parent": "/usr/share"}, {"filename": "lintian", "parent": "/usr/share"}, {"filename": "locale", "parent": "/usr/share"}, {"filename": "locales", "parent": "/usr/share"}, {"filename": "lxc", "parent": "/usr/share"}, {"filename": "lxcfs", "parent": "/usr/share"}, {"filename": "man", "parent": "/usr/share"}, {"filename": "man-db", "parent": "/usr/share"}, {"filename": "mdadm", "parent": "/usr/share"}, {"filename": "menu", "parent": "/usr/share"}, {"filename": "mime", "parent": "/usr/share"}, {"filename": "misc", "parent": "/usr/share"}, {"filename": "nano", "parent": "/usr/share"}, {"filename": "netplan", "parent": "/usr/share"}, {"filename": "nmap", "parent": "/usr/share"}, {"filename": "openssh", "parent": "/usr/share"}, {"filename": "open-vm-tools", "parent": "/usr/share"}, {"filename": "os-prober", "parent": "/usr/share"}, {"filename": "package-data-downloads", "parent": "/usr/share"}, {"filename": "pam", "parent": "/usr/share"}, {"filename": "pam-configs", "parent": "/usr/share"}, {"filename": "pastebin.d", "parent": "/usr/share"}, {"filename": "perl", "parent": "/usr/share"}, {"filename": "perl5", "parent": "/usr/share"}, {"filename": "pixmaps", "parent": "/usr/share"}, {"filename": "pkgconfig", "parent": "/usr/share"}, {"filename": "plymouth", "parent": "/usr/share"}, {"filename": "polkit-1", "parent": "/usr/share"}, {"filename": "popularity-contest", "parent": "/usr/share"}, {"filename": "publicsuffix", "parent": "/usr/share"}, {"filename": "pyshared", "parent": "/usr/share"}, {"filename": "python", "parent": "/usr/share"}, {"filename": "python3", "parent": "/usr/share"}, {"filename": "python-apt", "parent": "/usr/share"}, {"filename": "python-wheels", "parent": "/usr/share"}, {"filename": "readline", "parent": "/usr/share"}, {"filename": "rsyslog", "parent": "/usr/share"}, {"filename": "screen", "parent": "/usr/share"}, {"filename": "sensible-utils", "parent": "/usr/share"}, {"filename": "slurm", "parent": "/usr/share"}, {"filename": "sosreport", "parent": "/usr/share"}, {"filename": "systemd", "parent": "/usr/share"}, {"filename": "tabset", "parent": "/usr/share"}, {"filename": "terminfo", "parent": "/usr/share"}, {"filename": "ubuntu-advantage-tools", "parent": "/usr/share"}, {"filename": "ubuntu-release-upgrader", "parent": "/usr/share"}, {"filename": "ufw", "parent": "/usr/share"}, {"filename": "unattended-upgrades", "parent": "/usr/share"}, {"filename": "update-notifier", "parent": "/usr/share"}, {"filename": "vim", "parent": "/usr/share"}, {"filename": "X11", "parent": "/usr/share"}, {"filename": "xml", "parent": "/usr/share"}, {"filename": "zoneinfo", "parent": "/usr/share"}, {"filename": "zsh", "parent": "/usr/share"}, {"filename": "linux-headers-4.15.0-72", "parent": "/usr/src"}, {"filename": "linux-headers-4.15.0-72-generic", "parent": "/usr/src"}, {"filename": "linux-headers-4.15.0-76", "parent": "/usr/src"}, {"filename": "linux-headers-4.15.0-76-generic", "parent": "/usr/src"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/ls-glob.out000066400000000000000000000326311415226333200213020ustar00rootroot00000000000000/usr/bin: [ aa-enabled aa-exec acpi_listen add-apt-repository addpart addr2line apport-bug apport-cli apport-collect apport-unpack apropos apt apt-add-repository apt-cache apt-cdrom apt-config apt-extracttemplates apt-ftparchive apt-get apt-key apt-mark apt-sortpkgs ar arch as at atq atrm automat-visualize3 awk b2sum base32 base64 basename bashbug batch bc bootctl bsd-from bsd-write busctl byobu byobu-config byobu-ctrl-a byobu-disable byobu-disable-prompt byobu-enable byobu-enable-prompt byobu-export byobu-janitor byobu-keybindings byobu-launch byobu-launcher byobu-launcher-install byobu-launcher-uninstall byobu-layout byobu-prompt byobu-quiet byobu-reconnect-sockets byobu-screen byobu-select-backend byobu-select-profile byobu-select-session byobu-shell byobu-silent byobu-status byobu-status-detail byobu-tmux byobu-ugraph byobu-ulevel c++ c89 c89-gcc c99 c99-gcc cal calendar captoinfo catchsegv catman cautious-launcher cc c++filt cftp3 cgroupfs-mount cgroupfs-umount chacl chage chardet3 chardetect3 chattr chcon check-language-support chfn chrt chsh cifsiostat ckbcomp ckeygen3 cksum clear clear_console cloud-id cloud-init cloud-init-per cmp codepage col col1 col2 col3 col4 col5 col6 col7 col8 col9 colcrt colrm column comm compose conch3 containerd containerd-shim containerd-shim-runc-v1 containerd-stress corelist cpan cpan5.26-x86_64-linux-gnu cpp cpp-7 c_rehash crontab csplit ctail ctr ctstat curl cut dbus-cleanup-sockets dbus-daemon dbus-monitor dbus-run-session dbus-send dbus-update-activation-environment dbus-uuidgen deallocvt debconf debconf-apt-progress debconf-communicate debconf-copydb debconf-escape debconf-set-selections debconf-show deb-systemd-helper deb-systemd-invoke delpart delv dh_bash-completion dh_pypy dh_python3 diff diff3 dig dircolors dirmngr dirmngr-client dirname docker dockerd docker-init docker-proxy do-release-upgrade dpkg dpkg-architecture dpkg-buildflags dpkg-buildpackage dpkg-checkbuilddeps dpkg-deb dpkg-distaddfile dpkg-divert dpkg-genbuildinfo dpkg-genchanges dpkg-gencontrol dpkg-gensymbols dpkg-maintscript-helper dpkg-mergechangelogs dpkg-name dpkg-parsechangelog dpkg-query dpkg-scanpackages dpkg-scansources dpkg-shlibdeps dpkg-source dpkg-split dpkg-statoverride dpkg-trigger dpkg-vendor du dumpkeys dwp eatmydata ec2metadata edit editor eject elfedit enc2xs encguess env envsubst eqn ex expand expiry expr factor faillog faked-sysv faked-tcp fakeroot fakeroot-sysv fakeroot-tcp fallocate file find flock fmt fold free from ftp g++ g++-7 gawk gcc gcc-7 gcc-ar gcc-ar-7 gcc-nm gcc-nm-7 gcc-ranlib gcc-ranlib-7 gcov gcov-7 gcov-dump gcov-dump-7 gcov-tool gcov-tool-7 gencat geqn getconf getent getfacl getkeycodes getopt gettext gettext.sh ginstall-info git git-receive-pack git-shell git-upload-archive git-upload-pack gold gpasswd gpg gpg-agent gpgconf gpg-connect-agent gpgparsemail gpgsm gpgsplit gpgv gpg-wks-server gpg-zip gpic gprof groff grog grops grotty groups growpart grub-editenv grub-file grub-fstest grub-glue-efi grub-kbdcomp grub-menulst2cfg grub-mkfont grub-mkimage grub-mklayout grub-mknetdir grub-mkpasswd-pbkdf2 grub-mkrelpath grub-mkrescue grub-mkstandalone grub-mount grub-ntldr-img grub-render-label grub-script-check grub-syslinux2cfg gtbl h2ph h2xs hd head helpztags hexdump host hostid hostnamectl htop hwe-support-status i386 iconv id igawk info infobrowser infocmp infotocap install install-info instmodsh ionice iostat ipcmk ipcrm ipcs iptables-xml ischroot iscsiadm join jq jsondiff jsonpatch jsonpointer json_pp jsonschema kbdinfo kbxutil keep-one-running kernel-install keyring killall landscape-sysinfo last lastb lastlog lcf ld ld.bfd ldd ld.gold less lessecho lessfile lesskey lesspipe lexgrog libnetcfg link linux32 linux64 linux-boot-prober linux-check-removal linux-update-symlinks linux-version lnstat loadkeys loadunimap locale locale-check localectl localedef locate logger logname look lorder lsattr lsb_release lscpu lshw lsinitramfs lsipc lslocks lslogins lsmem lsns lsof lspci lspgpot lsusb ltrace lxc lxcfs lxd lzcat lzcmp lzdiff lzegrep lzfgrep lzgrep lzless lzma lzmainfo lzmore make make-first-existing-target man mandb manifest manpath mapscrn mawk mcookie md5sum md5sum.textutils mdig mesg migrate-pubring-from-classic-gpg miniterm mkfifo mk_modmap mksquashfs mlocate mpstat mtr mtrace mtr-packet namei nawk ncal ncat neqn netkit-ftp networkd-dispatcher newgidmap newgrp newuidmap NF ngettext nice nl nm nmap nohup nping nproc nroff nsenter nslookup nstat nsupdate ntfsdecrypt numfmt objcopy objdump od on_ac_power openssl os-prober pager partx passwd paste pastebinit patch pathchk pbget pbput pbputs pcimodules pdb3 pdb3.6 peekfd perl perl5.26.1 perl5.26-x86_64-linux-gnu perlbug perldoc perlivp perlthanks pftp pgrep pic pico piconv pidstat pigz pinentry pinentry-curses pinky pip3 pkaction pkcheck pkexec pkill pkttyagent pl2pm pldd pmap pod2html pod2man pod2text pod2usage podchecker podselect pollinate pr preconv print printenv printerbanner printf prlimit prove prtstat psfaddtable psfgettable psfstriptable psfxtable pslog pstree pstree.x11 ptar ptardiff ptargrep ptx purge-old-kernels pwdx py3clean py3compile py3versions pybuild pydoc3 pydoc3.6 pygettext3 pygettext3.6 pyhtmlizer3 pyjwt3 python3 python3.6 python3.6-config python3.6m python3.6m-config python3-config python3-jsondiff python3-jsonpatch python3-jsonpointer python3-jsonschema python3m python3m-config ranlib rcp rdma readelf realpath rename.ul renice reset resizecons resizepart rev rgrep rlogin routef routel rpcgen rsh rsync rtstat runcon run-mailcap run-one run-one-constantly run-one-until-failure run-one-until-success run-this-one rview rvim sadf sar sar.sysstat savelog scp screen screendump script scriptreplay sdiff see select-editor sensible-browser sensible-editor sensible-pager seq setarch setfacl setkeycodes setleds setlogcons setmetamode setpci setsid setterm sftp sg sha1sum sha224sum sha256sum sha384sum sha512sum shasum showconsolefont showkey shred shuf size skill slabtop slogin slurm snap snapctl snapfuse snice soelim sort sosreport sotruss splain split splitfont sprof ssh ssh-add ssh-agent ssh-argv0 ssh-copy-id ssh-import-id ssh-import-id-gh ssh-import-id-lp ssh-keygen ssh-keyscan stat stdbuf strace strace-log-merge strings strip sudo sudoedit sudoreplay sum symcryptrun systemd-analyze systemd-cat systemd-cgls systemd-cgtop systemd-delta systemd-detect-virt systemd-mount systemd-path systemd-resolve systemd-run systemd-socket-activate systemd-stdio-bridge systemd-umount tabs tac tail tapestat taskset tbl tee telnet telnet.netkit test tic time timedatectl timeout tkconch3 tload tmux toe top touch tput tr tracepath traceroute6 traceroute6.iputils trial3 troff truncate tset tsort tty twist3 twistd3 tzselect ua ubuntu-advantage ubuntu-bug ubuntu-core-launcher ubuntu-support-status ucf ucfq ucfr ul unattended-upgrade unattended-upgrades unexpand unicode_stop uniq unlink unlzma unmkinitramfs unpigz unshare unsquashfs unxz update-alternatives updatedb updatedb.mlocate update-mime-database uptime usb-devices usbhid-dump users utmpdump uuidgen uuidparse vcs-run VGAuthService vi view vigpg vim vim.basic vimdiff vim.tiny vimtutor vmhgfs-fuse vmstat vmtoolsd vmware-checkvm vmware-guestproxycerttool vmware-hgfsclient vmware-namespace-cmd vmware-rpctool vmware-toolbox-cmd vmware-vgauth-cmd vmware-vgauth-smoketest vmware-vmblock-fuse vmware-xferlogs volname w wall watch watchgnupg wc wget whatis whereis which who whoami wifi-status wmdocker w.procps write x86_64 x86_64-linux-gnu-addr2line x86_64-linux-gnu-ar x86_64-linux-gnu-as x86_64-linux-gnu-c++filt x86_64-linux-gnu-cpp x86_64-linux-gnu-cpp-7 x86_64-linux-gnu-dwp x86_64-linux-gnu-elfedit x86_64-linux-gnu-g++ x86_64-linux-gnu-g++-7 x86_64-linux-gnu-gcc x86_64-linux-gnu-gcc-7 x86_64-linux-gnu-gcc-ar x86_64-linux-gnu-gcc-ar-7 x86_64-linux-gnu-gcc-nm x86_64-linux-gnu-gcc-nm-7 x86_64-linux-gnu-gcc-ranlib x86_64-linux-gnu-gcc-ranlib-7 x86_64-linux-gnu-gcov x86_64-linux-gnu-gcov-7 x86_64-linux-gnu-gcov-dump x86_64-linux-gnu-gcov-dump-7 x86_64-linux-gnu-gcov-tool x86_64-linux-gnu-gcov-tool-7 x86_64-linux-gnu-gold x86_64-linux-gnu-gprof x86_64-linux-gnu-ld x86_64-linux-gnu-ld.bfd x86_64-linux-gnu-ld.gold x86_64-linux-gnu-nm x86_64-linux-gnu-objcopy x86_64-linux-gnu-objdump x86_64-linux-gnu-python3.6-config x86_64-linux-gnu-python3.6m-config x86_64-linux-gnu-python3-config x86_64-linux-gnu-python3m-config x86_64-linux-gnu-ranlib x86_64-linux-gnu-readelf x86_64-linux-gnu-size x86_64-linux-gnu-strings x86_64-linux-gnu-strip xargs xauth xdelta3 xdg-user-dir xdg-user-dirs-update xsubpp xxd xz xzcat xzcmp xzdiff xzegrep xzfgrep xzgrep xzless xzmore yes zdump zipdetails /usr/games: /usr/include: aio.h aliases.h alloca.h argp.h argz.h ar.h arpa asm-generic assert.h btrfs byteswap.h c++ complex.h cpio.h crypt.h ctype.h dirent.h dlfcn.h drm elf.h endian.h envz.h err.h errno.h error.h execinfo.h expat_external.h expat.h fcntl.h features.h fenv.h fmtmsg.h fnmatch.h fstab.h fts.h ftw.h gawkapi.h _G_config.h gconv.h getopt.h glob.h gnumake.h gnu-versions.h grp.h gshadow.h iconv.h ifaddrs.h inttypes.h langinfo.h lastlog.h libgen.h libintl.h libio.h limits.h link.h linux locale.h malloc.h math.h mcheck.h memory.h misc mntent.h monetary.h mqueue.h mtd net netash netatalk netax25 netdb.h neteconet netinet netipx netiucv netpacket netrom netrose nfs nl_types.h nss.h obstack.h paths.h poll.h printf.h proc_service.h protocols pthread.h pty.h pwd.h python3.6 python3.6m rdma re_comp.h regex.h regexp.h reglib resolv.h rpc rpcsvc sched.h scsi search.h semaphore.h setjmp.h sgtty.h shadow.h signal.h sound spawn.h stab.h stdc-predef.h stdint.h stdio_ext.h stdio.h stdlib.h string.h strings.h stropts.h sudo_plugin.h syscall.h sysexits.h syslog.h tar.h termio.h termios.h tgmath.h thread_db.h time.h ttyent.h uchar.h ucontext.h ulimit.h unistd.h ustat.h utime.h utmp.h utmpx.h values.h video wait.h wchar.h wctype.h wordexp.h x86_64-linux-gnu xen xfs /usr/lib: accountsservice apt bfd-plugins binfmt.d byobu cloud-init cnf-update-db command-not-found compat-ld dbus-1.0 dpkg dracut eject environment.d file gcc git-core gnupg gnupg2 gold-ld groff grub grub-legacy initcpio initramfs-tools kernel klibc language-selector libDeployPkg.so.0 libDeployPkg.so.0.0.0 libguestlib.so.0 libguestlib.so.0.0.0 libhgfs.so.0 libhgfs.so.0.0.0 libvgauth.so.0 libvgauth.so.0.0.0 libvmtools.so.0 libvmtools.so.0.0.0 linux linux-boot-probes locale lxcfs lxd man-db mime modules-load.d networkd-dispatcher openssh open-vm-tools os-prober os-probes os-release pm-utils policykit-1 python2.7 python3 python3.6 python3.7 rsyslog sasl2 sftp-server snapd software-properties ssl sudo sysctl.d sysstat systemd sysusers.d tar tc tmpfiles.d ubuntu-fan ubuntu-release-upgrader update-notifier valgrind x86_64-linux-gnu /usr/local: bin etc games include lib man sbin share src /usr/sbin: aa-remove-unknown aa-status accessdb acpid addgnupghome addgroup add-shell adduser apparmor_status applygnupgdefaults arp arpd atd bcache-super-show biosdecode chgpasswd chmem chpasswd chroot cpgr cppw cron cryptdisks_start cryptdisks_stop delgroup deluser dmidecode dnsmasq dpkg-preconfigure dpkg-reconfigure e2freefrag e4crypt e4defrag fanatic fanctl fdformat filefrag genl groupadd groupdel groupmems groupmod grpck grpconv grpunconv grub-bios-setup grub-install grub-macbless grub-mkconfig grub-mkdevicemap grub-probe grub-reboot grub-set-default grub-set-default-legacy-ec2 grub-set-default.real iconvconfig iftop init.lxc init.lxc.static invoke-rc.d ip6tables-apply iptables-apply irqbalance irqbalance-ui iscsid iscsi_discovery iscsi-iname iscsistart iucode_tool iucode-tool ldattach locale-gen logrotate luksformat make-bcache mkinitramfs mklost+found netplan newusers nfnl_osf nologin overlayroot-chroot ownership pam-auth-update pam_getenv pam_timestamp_check popcon-largest-unused popularity-contest pwck pwconv pwunconv readprofile recvtty remove-shell rmt rmt-tar rsyslogd rtcwake runc service setvesablank sshd tarcat tcpdump thermald tzconfig ufw update-ca-certificates update-grub update-grub2 update-grub-gfxpayload update-grub-legacy-ec2 update-info-dir update-initramfs update-locale update-mime update-passwd update-pciids update-rc.d update-usbids upgrade-from-grub-legacy useradd userdel usermod uuidd validlocale vcstime vigr vipw visudo vpddecode xfs_admin xfs_bmap xfs_copy xfs_db xfs_estimate xfs_freeze xfs_fsr xfs_growfs xfs_info xfs_io xfs_logprint xfs_mdrestore xfs_metadump xfs_mkfile xfs_ncheck xfs_quota xfs_rtcp zerofree zic /usr/share: aclocal adduser applications apport awk base-files base-passwd bash-completion binfmts bug build-essential byobu ca-certificates calendar cmake command-not-found common-licenses consolefonts console-setup consoletrans cryptsetup dbus-1 debconf debhelper debianutils dh-python dict distro-info dns dnsmasq-base doc doc-base docker.io dpkg file gcc-8 gdb GeoIP gettext git-core gitweb glib-2.0 gnupg groff grub grub-gfxpayload-lists hal i18n icons info initramfs-tools iptables iso-codes java keyrings landscape language-selector language-support language-tools libc-bin libdrm libsensors4 lintian locale locales lxc lxcfs man man-db mdadm menu mime misc nano netplan nmap openssh open-vm-tools os-prober package-data-downloads pam pam-configs pastebin.d perl perl5 pixmaps pkgconfig plymouth polkit-1 popularity-contest publicsuffix pyshared python python3 python-apt python-wheels readline rsyslog screen sensible-utils slurm sosreport systemd tabset terminfo ubuntu-advantage-tools ubuntu-release-upgrader ufw unattended-upgrades update-notifier vim X11 xml zoneinfo zsh /usr/src: linux-headers-4.15.0-72 linux-headers-4.15.0-72-generic linux-headers-4.15.0-76 linux-headers-4.15.0-76-generic jc-1.17.3/tests/fixtures/ubuntu-18.04/ls-l-iso-streaming.json000066400000000000000000005001161415226333200235310ustar00rootroot00000000000000[{"filename":"[","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":51384,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"aa-enabled","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22696,"date":"2018-09-27 11:20:54.000000000 -0700","epoch":1538072454,"epoch_utc":null},{"filename":"aa-exec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22696,"date":"2018-09-27 11:20:54.000000000 -0700","epoch":1538072454,"epoch_utc":null},{"filename":"acpi","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":23656,"date":"2018-01-14 19:20:21.000000000 -0800","epoch":1515986421,"epoch_utc":null},{"filename":"acpi_listen","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14608,"date":"2017-04-27 21:28:10.000000000 -0700","epoch":1493353690,"epoch_utc":null},{"filename":"add-apt-repository","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":7415,"date":"2020-08-07 07:07:43.000000000 -0700","epoch":1596809263,"epoch_utc":null},{"filename":"addpart","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22608,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"addr2line","link_to":"x86_64-linux-gnu-addr2line","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":26,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"apport-bug","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2558,"date":"2019-11-11 13:57:56.000000000 -0800","epoch":1573509476,"epoch_utc":null},{"filename":"apport-cli","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":13367,"date":"2021-01-26 04:21:46.000000000 -0800","epoch":1611663706,"epoch_utc":null},{"filename":"apport-collect","link_to":"apport-bug","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":10,"date":"2021-01-26 04:21:46.000000000 -0800","epoch":1611663706,"epoch_utc":null},{"filename":"apport-unpack","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1849,"date":"2021-01-26 04:21:46.000000000 -0800","epoch":1611663706,"epoch_utc":null},{"filename":"apropos","link_to":"whatis","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"2018-08-04 12:16:12.000000000 -0700","epoch":1533410172,"epoch_utc":null},{"filename":"apt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14424,"date":"2020-12-07 03:13:36.000000000 -0800","epoch":1607339616,"epoch_utc":null},{"filename":"apt-add-repository","link_to":"add-apt-repository","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":18,"date":"2020-08-07 07:07:43.000000000 -0700","epoch":1596809263,"epoch_utc":null},{"filename":"apt-cache","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":80032,"date":"2020-12-07 03:13:36.000000000 -0800","epoch":1607339616,"epoch_utc":null},{"filename":"apt-cdrom","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22688,"date":"2020-12-07 03:13:36.000000000 -0800","epoch":1607339616,"epoch_utc":null},{"filename":"apt-config","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22616,"date":"2020-12-07 03:13:36.000000000 -0800","epoch":1607339616,"epoch_utc":null},{"filename":"apt-extracttemplates","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22688,"date":"2020-12-07 03:13:36.000000000 -0800","epoch":1607339616,"epoch_utc":null},{"filename":"apt-ftparchive","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":239776,"date":"2020-12-07 03:13:36.000000000 -0800","epoch":1607339616,"epoch_utc":null},{"filename":"apt-get","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43168,"date":"2020-12-07 03:13:36.000000000 -0800","epoch":1607339616,"epoch_utc":null},{"filename":"apt-key","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":27391,"date":"2020-12-07 03:13:36.000000000 -0800","epoch":1607339616,"epoch_utc":null},{"filename":"apt-mark","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43168,"date":"2020-12-07 03:13:36.000000000 -0800","epoch":1607339616,"epoch_utc":null},{"filename":"apt-sortpkgs","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43096,"date":"2020-12-07 03:13:36.000000000 -0800","epoch":1607339616,"epoch_utc":null},{"filename":"ar","link_to":"x86_64-linux-gnu-ar","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":19,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"arch","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35032,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"as","link_to":"x86_64-linux-gnu-as","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":19,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"at","flags":"-rwsr-sr-x","links":1,"owner":"daemon","group":"daemon","size":51464,"date":"2018-02-19 22:59:43.000000000 -0800","epoch":1519109983,"epoch_utc":null},{"filename":"atq","link_to":"at","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":2,"date":"2018-02-19 22:59:43.000000000 -0800","epoch":1519109983,"epoch_utc":null},{"filename":"atrm","link_to":"at","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":2,"date":"2018-02-19 22:59:43.000000000 -0800","epoch":1519109983,"epoch_utc":null},{"filename":"automat-visualize3","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":402,"date":"2017-08-28 01:55:39.000000000 -0700","epoch":1503910539,"epoch_utc":null},{"filename":"awk","link_to":"/etc/alternatives/awk","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"2019-08-05 12:22:59.000000000 -0700","epoch":1565032979,"epoch_utc":null},{"filename":"b2sum","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":55512,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"base32","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39096,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"base64","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39096,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"basename","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"bashbug","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":7115,"date":"2019-06-06 15:28:15.000000000 -0700","epoch":1559860095,"epoch_utc":null},{"filename":"batch","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":152,"date":"2018-02-19 22:59:43.000000000 -0800","epoch":1519109983,"epoch_utc":null},{"filename":"bc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":92872,"date":"2018-03-22 09:20:34.000000000 -0700","epoch":1521735634,"epoch_utc":null},{"filename":"bccmd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":196920,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"bluemoon","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":75848,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"bluetoothctl","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":203272,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"bootctl","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":34952,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"bsd-from","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10232,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"bsd-write","flags":"-rwxr-sr-x","links":1,"owner":"root","group":"tty","size":14328,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"btattach","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":67656,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"btmgmt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":314136,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"btmon","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":716792,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"busctl","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":67672,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":8264,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-config","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":996,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-ctrl-a","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4774,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-disable","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1295,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-disable-prompt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1307,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-enable","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1182,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-enable-prompt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1453,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-export","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1260,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-janitor","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":5963,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-keybindings","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1506,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-launch","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3289,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-launcher","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1910,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-launcher-install","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2459,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-launcher-uninstall","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1561,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-layout","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3348,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-prompt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1156,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-quiet","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1410,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-reconnect-sockets","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3298,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-screen","link_to":"byobu","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-select-backend","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1452,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-select-profile","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":6287,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-select-session","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1012,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-shell","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1599,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-silent","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1306,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-status","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":6015,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-status-detail","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1207,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-tmux","link_to":"byobu","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-ugraph","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4667,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-ulevel","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":11996,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"c++","link_to":"/etc/alternatives/c++","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"2019-10-17 17:14:23.966483723 -0700","epoch":1571357663,"epoch_utc":null},{"filename":"c89","link_to":"/etc/alternatives/c89","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"2019-10-17 17:14:23.810468363 -0700","epoch":1571357663,"epoch_utc":null},{"filename":"c89-gcc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":428,"date":"2006-05-07 02:28:01.000000000 -0700","epoch":1146994081,"epoch_utc":null},{"filename":"c99","link_to":"/etc/alternatives/c99","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"2019-10-17 17:14:23.830470333 -0700","epoch":1571357663,"epoch_utc":null},{"filename":"c99-gcc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":454,"date":"2011-04-11 00:54:37.000000000 -0700","epoch":1302508477,"epoch_utc":null},{"filename":"cal","link_to":"ncal","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"calc_tickadj","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2844,"date":"2020-08-17 18:58:51.000000000 -0700","epoch":1597715931,"epoch_utc":null},{"filename":"calendar","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31208,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"captoinfo","link_to":"tic","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"2018-05-23 01:08:27.000000000 -0700","epoch":1527062907,"epoch_utc":null},{"filename":"catchsegv","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3329,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"catman","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39384,"date":"2018-08-04 12:16:12.000000000 -0700","epoch":1533410172,"epoch_utc":null},{"filename":"cautious-launcher","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":853,"date":"2016-07-15 05:06:12.000000000 -0700","epoch":1468584372,"epoch_utc":null},{"filename":"cc","link_to":"/etc/alternatives/cc","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":20,"date":"2019-10-17 17:14:23.790466394 -0700","epoch":1571357663,"epoch_utc":null},{"filename":"c++filt","link_to":"x86_64-linux-gnu-c++filt","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"cftp3","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":380,"date":"2020-03-16 10:24:46.000000000 -0700","epoch":1584379486,"epoch_utc":null},{"filename":"cgroupfs-mount","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1275,"date":"2016-01-25 09:58:07.000000000 -0800","epoch":1453744687,"epoch_utc":null},{"filename":"cgroupfs-umount","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":620,"date":"2016-01-25 09:58:11.000000000 -0800","epoch":1453744691,"epoch_utc":null},{"filename":"chacl","link_to":"/bin/chacl","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":10,"date":"2019-08-05 12:24:25.000000000 -0700","epoch":1565033065,"epoch_utc":null},{"filename":"chage","flags":"-rwxr-sr-x","links":1,"owner":"root","group":"shadow","size":71816,"date":"2019-03-22 12:05:38.000000000 -0700","epoch":1553281538,"epoch_utc":null},{"filename":"chardet3","link_to":"chardetect3","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":11,"date":"2017-06-18 14:51:08.000000000 -0700","epoch":1497822668,"epoch_utc":null},{"filename":"chardetect3","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":389,"date":"2017-06-18 14:51:08.000000000 -0700","epoch":1497822668,"epoch_utc":null},{"filename":"chattr","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14336,"date":"2020-01-22 06:40:45.000000000 -0800","epoch":1579704045,"epoch_utc":null},{"filename":"chcon","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":63672,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"check-language-support","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2771,"date":"2019-06-28 10:12:00.000000000 -0700","epoch":1561741920,"epoch_utc":null},{"filename":"chfn","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"root","size":76496,"date":"2019-03-22 12:05:38.000000000 -0700","epoch":1553281538,"epoch_utc":null},{"filename":"chrt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30800,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"chsh","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"root","size":44528,"date":"2019-03-22 12:05:38.000000000 -0700","epoch":1553281538,"epoch_utc":null},{"filename":"cifsiostat","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":34960,"date":"2020-01-17 03:24:09.000000000 -0800","epoch":1579260249,"epoch_utc":null},{"filename":"ciptool","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":144984,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"ckbcomp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":149838,"date":"2019-04-23 05:04:14.000000000 -0700","epoch":1556021054,"epoch_utc":null},{"filename":"ckeygen3","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":386,"date":"2020-03-16 10:24:46.000000000 -0700","epoch":1584379486,"epoch_utc":null},{"filename":"cksum","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"clear","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10240,"date":"2018-05-23 01:08:27.000000000 -0700","epoch":1527062907,"epoch_utc":null},{"filename":"clear_console","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"2019-06-06 15:28:15.000000000 -0700","epoch":1559860095,"epoch_utc":null},{"filename":"cloud-id","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":390,"date":"2020-06-02 19:08:10.000000000 -0700","epoch":1591150090,"epoch_utc":null},{"filename":"cloud-init","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":394,"date":"2020-06-02 19:08:10.000000000 -0700","epoch":1591150090,"epoch_utc":null},{"filename":"cloud-init-per","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2108,"date":"2020-06-02 08:24:29.000000000 -0700","epoch":1591111469,"epoch_utc":null},{"filename":"cmp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47200,"date":"2017-08-04 14:20:16.000000000 -0700","epoch":1501881616,"epoch_utc":null},{"filename":"codepage","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14328,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"col","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10232,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"col1","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":963,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"col2","link_to":"col1","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"col3","link_to":"col1","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"col4","link_to":"col1","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"col5","link_to":"col1","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"col6","link_to":"col1","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"col7","link_to":"col1","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"col8","link_to":"col1","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"col9","link_to":"col1","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"colcrt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10240,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"colrm","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10232,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"column","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14344,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"comm","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39128,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"compose","link_to":"run-mailcap","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":11,"date":"2016-07-15 05:06:12.000000000 -0700","epoch":1468584372,"epoch_utc":null},{"filename":"conch3","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":382,"date":"2020-03-16 10:24:46.000000000 -0700","epoch":1584379486,"epoch_utc":null},{"filename":"containerd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":46160136,"date":"2020-03-19 19:13:11.000000000 -0700","epoch":1584670391,"epoch_utc":null},{"filename":"containerd-shim","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":6082248,"date":"2020-03-19 19:13:11.000000000 -0700","epoch":1584670391,"epoch_utc":null},{"filename":"containerd-shim-runc-v1","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":7498568,"date":"2020-03-19 19:13:11.000000000 -0700","epoch":1584670391,"epoch_utc":null},{"filename":"containerd-shim-runc-v2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":7502728,"date":"2020-03-19 19:13:11.000000000 -0700","epoch":1584670391,"epoch_utc":null},{"filename":"containerd-stress","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":21048904,"date":"2020-03-19 19:13:11.000000000 -0700","epoch":1584670391,"epoch_utc":null},{"filename":"corelist","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":12835,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"cpan","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":8156,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"cpan5.26-x86_64-linux-gnu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":8177,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"cpp","link_to":"cpp-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"cpp-7","link_to":"x86_64-linux-gnu-cpp-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"c_rehash","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":6332,"date":"2021-03-22 04:42:42.000000000 -0700","epoch":1616413362,"epoch_utc":null},{"filename":"crontab","flags":"-rwxr-sr-x","links":1,"owner":"root","group":"crontab","size":39352,"date":"2017-11-15 21:29:19.000000000 -0800","epoch":1510810159,"epoch_utc":null},{"filename":"csplit","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":51416,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"ctail","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":958,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"ctr","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22699016,"date":"2020-03-19 19:13:11.000000000 -0700","epoch":1584670391,"epoch_utc":null},{"filename":"ctstat","link_to":"lnstat","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"2020-07-15 08:16:31.000000000 -0700","epoch":1594826191,"epoch_utc":null},{"filename":"curl","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":223304,"date":"2020-12-01 10:01:10.000000000 -0800","epoch":1606845670,"epoch_utc":null},{"filename":"cut","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43224,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"dbus-cleanup-sockets","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10224,"date":"2020-06-11 11:25:30.000000000 -0700","epoch":1591899930,"epoch_utc":null},{"filename":"dbus-daemon","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":236584,"date":"2020-06-11 11:25:30.000000000 -0700","epoch":1591899930,"epoch_utc":null},{"filename":"dbus-monitor","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22520,"date":"2020-06-11 11:25:30.000000000 -0700","epoch":1591899930,"epoch_utc":null},{"filename":"dbus-run-session","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10224,"date":"2020-06-11 11:25:30.000000000 -0700","epoch":1591899930,"epoch_utc":null},{"filename":"dbus-send","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26608,"date":"2020-06-11 11:25:30.000000000 -0700","epoch":1591899930,"epoch_utc":null},{"filename":"dbus-update-activation-environment","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14320,"date":"2020-06-11 11:25:30.000000000 -0700","epoch":1591899930,"epoch_utc":null},{"filename":"dbus-uuidgen","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10224,"date":"2020-06-11 11:25:30.000000000 -0700","epoch":1591899930,"epoch_utc":null},{"filename":"deallocvt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"debconf","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2859,"date":"2019-05-06 09:30:30.000000000 -0700","epoch":1557160230,"epoch_utc":null},{"filename":"debconf-apt-progress","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":11541,"date":"2019-05-06 09:30:30.000000000 -0700","epoch":1557160230,"epoch_utc":null},{"filename":"debconf-communicate","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":608,"date":"2019-05-06 09:30:30.000000000 -0700","epoch":1557160230,"epoch_utc":null},{"filename":"debconf-copydb","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1719,"date":"2019-05-06 09:30:30.000000000 -0700","epoch":1557160230,"epoch_utc":null},{"filename":"debconf-escape","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":647,"date":"2019-05-06 09:30:30.000000000 -0700","epoch":1557160230,"epoch_utc":null},{"filename":"debconf-set-selections","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2935,"date":"2019-05-06 09:30:30.000000000 -0700","epoch":1557160230,"epoch_utc":null},{"filename":"debconf-show","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1827,"date":"2019-05-06 09:30:30.000000000 -0700","epoch":1557160230,"epoch_utc":null},{"filename":"deb-systemd-helper","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":20142,"date":"2017-10-25 08:38:42.000000000 -0700","epoch":1508945922,"epoch_utc":null},{"filename":"deb-systemd-invoke","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4434,"date":"2017-10-25 08:38:42.000000000 -0700","epoch":1508945922,"epoch_utc":null},{"filename":"delpart","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22608,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"delv","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":41840,"date":"2021-02-15 05:08:25.000000000 -0800","epoch":1613394505,"epoch_utc":null},{"filename":"dh_bash-completion","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2550,"date":"2018-04-01 19:16:46.000000000 -0700","epoch":1522635406,"epoch_utc":null},{"filename":"dh_pypy","link_to":"../share/dh-python/dh_pypy","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":26,"date":"2018-03-26 12:42:23.000000000 -0700","epoch":1522093343,"epoch_utc":null},{"filename":"dh_python3","link_to":"../share/dh-python/dh_python3","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":29,"date":"2018-03-26 12:42:23.000000000 -0700","epoch":1522093343,"epoch_utc":null},{"filename":"diff","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":145752,"date":"2017-08-04 14:20:16.000000000 -0700","epoch":1501881616,"epoch_utc":null},{"filename":"diff3","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":63704,"date":"2017-08-04 14:20:16.000000000 -0700","epoch":1501881616,"epoch_utc":null},{"filename":"dig","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":150024,"date":"2021-02-15 05:08:25.000000000 -0800","epoch":1613394505,"epoch_utc":null},{"filename":"dircolors","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47296,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"dirmngr","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":546360,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"dirmngr-client","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":109320,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"dirname","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30904,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"docker","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":89213816,"date":"2020-10-14 09:52:50.000000000 -0700","epoch":1602694370,"epoch_utc":null},{"filename":"dockerd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":105111664,"date":"2020-10-14 09:52:50.000000000 -0700","epoch":1602694370,"epoch_utc":null},{"filename":"docker-init","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":804408,"date":"2020-10-14 09:52:50.000000000 -0700","epoch":1602694370,"epoch_utc":null},{"filename":"docker-proxy","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2901395,"date":"2020-10-14 09:52:50.000000000 -0700","epoch":1602694370,"epoch_utc":null},{"filename":"do-release-upgrade","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":9313,"date":"2020-07-09 15:58:12.000000000 -0700","epoch":1594335492,"epoch_utc":null},{"filename":"dpkg","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":297472,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-architecture","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":12852,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-buildflags","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":7565,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-buildpackage","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":29796,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-checkbuilddeps","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":7503,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-deb","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":153952,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-distaddfile","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2782,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-divert","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":141728,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-genbuildinfo","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":16775,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-genchanges","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":17622,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-gencontrol","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14059,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-gensymbols","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10629,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-maintscript-helper","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":19031,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-mergechangelogs","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":8590,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-name","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":6789,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-parsechangelog","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4435,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-query","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":149912,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-scanpackages","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":8425,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-scansources","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":9167,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-shlibdeps","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31360,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-source","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":23300,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-split","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":121176,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-statoverride","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":71936,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-trigger","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":67848,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-vendor","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3262,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"du","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":100568,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"dumpkeys","link_to":"/bin/dumpkeys","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":13,"date":"2019-08-05 12:23:31.000000000 -0700","epoch":1565033011,"epoch_utc":null},{"filename":"dwp","link_to":"x86_64-linux-gnu-dwp","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":20,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"eatmydata","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2806,"date":"2018-03-09 10:37:20.000000000 -0800","epoch":1520620640,"epoch_utc":null},{"filename":"ec2metadata","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":7297,"date":"2018-04-13 06:07:55.000000000 -0700","epoch":1523624875,"epoch_utc":null},{"filename":"edit","link_to":"run-mailcap","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":11,"date":"2016-07-15 05:06:12.000000000 -0700","epoch":1468584372,"epoch_utc":null},{"filename":"editor","link_to":"/etc/alternatives/editor","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2019-08-05 12:23:26.000000000 -0700","epoch":1565033006,"epoch_utc":null},{"filename":"eject","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31424,"date":"2017-03-27 21:22:15.000000000 -0700","epoch":1490674935,"epoch_utc":null},{"filename":"elfedit","link_to":"x86_64-linux-gnu-elfedit","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"enc2xs","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":42153,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"encguess","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3066,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"env","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"envsubst","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":34896,"date":"2019-02-21 06:40:49.000000000 -0800","epoch":1550760049,"epoch_utc":null},{"filename":"eqn","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":197824,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"ex","link_to":"/etc/alternatives/ex","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":20,"date":"2019-08-05 12:23:26.000000000 -0700","epoch":1565033006,"epoch_utc":null},{"filename":"expand","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39128,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"expiry","flags":"-rwxr-sr-x","links":1,"owner":"root","group":"shadow","size":22808,"date":"2019-03-22 12:05:38.000000000 -0700","epoch":1553281538,"epoch_utc":null},{"filename":"expr","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47288,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"factor","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":75992,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"faillog","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18728,"date":"2019-03-22 12:05:38.000000000 -0700","epoch":1553281538,"epoch_utc":null},{"filename":"faked-sysv","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26736,"date":"2018-01-08 08:05:31.000000000 -0800","epoch":1515427531,"epoch_utc":null},{"filename":"faked-tcp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30824,"date":"2018-01-08 08:05:31.000000000 -0800","epoch":1515427531,"epoch_utc":null},{"filename":"fakeroot","link_to":"/etc/alternatives/fakeroot","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":26,"date":"2019-10-17 17:14:22.698358852 -0700","epoch":1571357662,"epoch_utc":null},{"filename":"fakeroot-sysv","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3851,"date":"2018-01-08 08:05:31.000000000 -0800","epoch":1515427531,"epoch_utc":null},{"filename":"fakeroot-tcp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3846,"date":"2018-01-08 08:05:31.000000000 -0800","epoch":1515427531,"epoch_utc":null},{"filename":"fallocate","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26704,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"file","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22792,"date":"2020-05-12 06:31:09.000000000 -0700","epoch":1589290269,"epoch_utc":null},{"filename":"find","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":238080,"date":"2017-11-05 09:16:48.000000000 -0800","epoch":1509902208,"epoch_utc":null},{"filename":"flock","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30880,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"fmt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43192,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"fold","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"free","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18512,"date":"2019-08-09 08:37:27.000000000 -0700","epoch":1565365047,"epoch_utc":null},{"filename":"from","link_to":"/etc/alternatives/from","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"2019-08-05 12:24:25.000000000 -0700","epoch":1565033065,"epoch_utc":null},{"filename":"ftp","link_to":"/etc/alternatives/ftp","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"2019-08-05 12:24:23.000000000 -0700","epoch":1565033063,"epoch_utc":null},{"filename":"g++","link_to":"g++-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"g++-7","link_to":"x86_64-linux-gnu-g++-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"gatttool","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":277248,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"gawk","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":658072,"date":"2018-02-10 21:02:41.000000000 -0800","epoch":1518325361,"epoch_utc":null},{"filename":"gcc","link_to":"gcc-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"gcc-7","link_to":"x86_64-linux-gnu-gcc-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"gcc-ar","link_to":"gcc-ar-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":8,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"gcc-ar-7","link_to":"x86_64-linux-gnu-gcc-ar-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":25,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"gcc-nm","link_to":"gcc-nm-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":8,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"gcc-nm-7","link_to":"x86_64-linux-gnu-gcc-nm-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":25,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"gcc-ranlib","link_to":"gcc-ranlib-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":12,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"gcc-ranlib-7","link_to":"x86_64-linux-gnu-gcc-ranlib-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":29,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"gcov","link_to":"gcov-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"gcov-7","link_to":"x86_64-linux-gnu-gcov-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":23,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"gcov-dump","link_to":"gcov-dump-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":11,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"gcov-dump-7","link_to":"x86_64-linux-gnu-gcov-dump-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":28,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"gcov-tool","link_to":"gcov-tool-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":11,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"gcov-tool-7","link_to":"x86_64-linux-gnu-gcov-tool-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":28,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"gencat","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22752,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"geqn","link_to":"eqn","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"getconf","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30856,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"getent","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31224,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"getfacl","link_to":"/bin/getfacl","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":12,"date":"2019-08-05 12:24:25.000000000 -0700","epoch":1565033065,"epoch_utc":null},{"filename":"getkeycodes","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"getopt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14408,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"gettext","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":34896,"date":"2019-02-21 06:40:49.000000000 -0800","epoch":1550760049,"epoch_utc":null},{"filename":"gettext.sh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4629,"date":"2019-02-21 06:40:49.000000000 -0800","epoch":1550760049,"epoch_utc":null},{"filename":"ginstall-info","link_to":"install-info","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":12,"date":"2018-02-05 06:48:18.000000000 -0800","epoch":1517842098,"epoch_utc":null},{"filename":"git","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2351792,"date":"2021-03-04 05:02:54.000000000 -0800","epoch":1614862974,"epoch_utc":null},{"filename":"git-receive-pack","link_to":"git","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"2021-03-04 05:02:54.000000000 -0800","epoch":1614862974,"epoch_utc":null},{"filename":"git-shell","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1309008,"date":"2021-03-04 05:02:54.000000000 -0800","epoch":1614862974,"epoch_utc":null},{"filename":"git-upload-archive","link_to":"git","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"2021-03-04 05:02:54.000000000 -0800","epoch":1614862974,"epoch_utc":null},{"filename":"git-upload-pack","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1317120,"date":"2021-03-04 05:02:54.000000000 -0800","epoch":1614862974,"epoch_utc":null},{"filename":"gold","link_to":"x86_64-linux-gnu-gold","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"gpasswd","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"root","size":75824,"date":"2019-03-22 12:05:38.000000000 -0700","epoch":1553281538,"epoch_utc":null},{"filename":"gpg","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1021512,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"gpg-agent","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":402120,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"gpgconf","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":170312,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"gpg-connect-agent","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":158568,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"gpgparsemail","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26696,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"gpgsm","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":502880,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"gpgsplit","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":80336,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"gpgv","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":437264,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"gpg-wks-server","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":191504,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"gpg-zip","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3443,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"gpic","link_to":"pic","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"gprof","link_to":"x86_64-linux-gnu-gprof","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"groff","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":107840,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"grog","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2780,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"grops","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":169696,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"grotty","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":124256,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"groups","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"growpart","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":21883,"date":"2018-04-13 06:07:55.000000000 -0700","epoch":1523624875,"epoch_utc":null},{"filename":"grub-editenv","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":245688,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-file","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":675624,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-fstest","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":808600,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-glue-efi","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":241432,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-kbdcomp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1681,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-menulst2cfg","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":221224,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-mkfont","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":270680,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-mkimage","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":336728,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-mklayout","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":245848,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-mknetdir","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":378280,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-mkpasswd-pbkdf2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":249976,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-mkrelpath","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":241144,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-mkrescue","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":841960,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-mkstandalone","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":460536,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-mount","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":622808,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-ntldr-img","link_to":"../lib/grub/i386-pc/grub-ntldr-img","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":34,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-render-label","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":692392,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-script-check","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":265848,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-syslinux2cfg","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":639672,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"gtbl","link_to":"tbl","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"h2ph","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":29224,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"h2xs","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":60866,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"hciattach","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":137144,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"hcitool","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":147000,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"hd","link_to":"hexdump","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":7,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"head","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43224,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"helpztags","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2514,"date":"2018-02-02 12:37:32.000000000 -0800","epoch":1517603852,"epoch_utc":null},{"filename":"hex2hcd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14408,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"hexdump","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26728,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"host","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":129704,"date":"2021-02-15 05:08:25.000000000 -0800","epoch":1613394505,"epoch_utc":null},{"filename":"hostid","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30904,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"hostnamectl","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18504,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"htop","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":185016,"date":"2018-02-17 10:27:46.000000000 -0800","epoch":1518892066,"epoch_utc":null},{"filename":"hwe-support-status","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10830,"date":"2020-06-03 11:41:50.000000000 -0700","epoch":1591209710,"epoch_utc":null},{"filename":"i386","link_to":"setarch","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":7,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"iconv","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":63744,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"id","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43224,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"igawk","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3189,"date":"2018-02-10 21:02:41.000000000 -0800","epoch":1518325361,"epoch_utc":null},{"filename":"info","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":251616,"date":"2018-02-05 06:48:18.000000000 -0800","epoch":1517842098,"epoch_utc":null},{"filename":"infobrowser","link_to":"/etc/alternatives/infobrowser","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":29,"date":"2019-08-05 12:24:14.000000000 -0700","epoch":1565033054,"epoch_utc":null},{"filename":"infocmp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":59464,"date":"2018-05-23 01:08:27.000000000 -0700","epoch":1527062907,"epoch_utc":null},{"filename":"infotocap","link_to":"tic","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"2018-05-23 01:08:27.000000000 -0700","epoch":1527062907,"epoch_utc":null},{"filename":"install","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":145664,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"install-info","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":44128,"date":"2018-02-05 06:48:18.000000000 -0800","epoch":1517842098,"epoch_utc":null},{"filename":"instmodsh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4370,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"ionice","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26704,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"iostat","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":55440,"date":"2020-01-17 03:24:09.000000000 -0800","epoch":1579260249,"epoch_utc":null},{"filename":"ipcmk","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26768,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"ipcrm","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26704,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"ipcs","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":51280,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"iptables-xml","link_to":"/sbin/xtables-multi","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":19,"date":"2017-11-11 18:52:05.000000000 -0800","epoch":1510455125,"epoch_utc":null},{"filename":"ischroot","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10280,"date":"2017-12-30 10:15:02.000000000 -0800","epoch":1514657702,"epoch_utc":null},{"filename":"iscsiadm","link_to":"/sbin/iscsiadm","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":14,"date":"2020-05-10 18:27:31.000000000 -0700","epoch":1589160451,"epoch_utc":null},{"filename":"join","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47320,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"jq","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22520,"date":"2017-01-29 20:41:39.000000000 -0800","epoch":1485751299,"epoch_utc":null},{"filename":"jsondiff","link_to":"/etc/alternatives/jsondiff","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":26,"date":"2019-08-05 12:24:22.000000000 -0700","epoch":1565033062,"epoch_utc":null},{"filename":"jsonpatch","link_to":"/etc/alternatives/jsonpatch","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":27,"date":"2019-08-05 12:24:22.000000000 -0700","epoch":1565033062,"epoch_utc":null},{"filename":"jsonpointer","link_to":"/etc/alternatives/jsonpointer","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":29,"date":"2019-08-05 12:24:16.000000000 -0700","epoch":1565033056,"epoch_utc":null},{"filename":"json_pp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3959,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"jsonschema","link_to":"/etc/alternatives/jsonschema","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":28,"date":"2019-08-05 12:24:20.000000000 -0700","epoch":1565033060,"epoch_utc":null},{"filename":"kbdinfo","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14408,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"kbxutil","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":162496,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"keep-one-running","link_to":"run-one","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":7,"date":"2014-01-15 14:40:51.000000000 -0800","epoch":1389825651,"epoch_utc":null},{"filename":"kernel-install","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4508,"date":"2018-01-28 07:58:17.000000000 -0800","epoch":1517155097,"epoch_utc":null},{"filename":"keyring","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":385,"date":"2018-01-09 04:15:19.000000000 -0800","epoch":1515500119,"epoch_utc":null},{"filename":"killall","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":27768,"date":"2018-12-11 07:46:04.000000000 -0800","epoch":1544543164,"epoch_utc":null},{"filename":"l2ping","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":98152,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"l2test","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":114792,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"landscape-sysinfo","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":624,"date":"2020-02-20 09:35:22.000000000 -0800","epoch":1582220122,"epoch_utc":null},{"filename":"last","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43088,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"lastb","link_to":"last","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"lastlog","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18504,"date":"2019-03-22 12:05:38.000000000 -0700","epoch":1553281538,"epoch_utc":null},{"filename":"lcf","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":7786,"date":"2018-02-25 16:58:23.000000000 -0800","epoch":1519606703,"epoch_utc":null},{"filename":"ld","link_to":"x86_64-linux-gnu-ld","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":19,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"ld.bfd","link_to":"x86_64-linux-gnu-ld.bfd","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":23,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"ldd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":5422,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"ld.gold","link_to":"x86_64-linux-gnu-ld.gold","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"ld-musl-config","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":433,"date":"2017-01-21 11:21:39.000000000 -0800","epoch":1485026499,"epoch_utc":null},{"filename":"less","link_to":"/bin/less","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":9,"date":"2019-08-05 12:23:23.000000000 -0700","epoch":1565033003,"epoch_utc":null},{"filename":"lessecho","link_to":"/bin/lessecho","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":13,"date":"2019-08-05 12:23:23.000000000 -0700","epoch":1565033003,"epoch_utc":null},{"filename":"lessfile","link_to":"/bin/lessfile","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":13,"date":"2019-08-05 12:23:23.000000000 -0700","epoch":1565033003,"epoch_utc":null},{"filename":"lesskey","link_to":"/bin/lesskey","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":12,"date":"2019-08-05 12:23:23.000000000 -0700","epoch":1565033003,"epoch_utc":null},{"filename":"lesspipe","link_to":"/bin/lesspipe","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":13,"date":"2019-08-05 12:23:23.000000000 -0700","epoch":1565033003,"epoch_utc":null},{"filename":"lexgrog","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":92744,"date":"2018-08-04 12:16:12.000000000 -0700","epoch":1533410172,"epoch_utc":null},{"filename":"lft","link_to":"/etc/alternatives/lft","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"2020-07-27 14:56:20.488037770 -0700","epoch":1595886980,"epoch_utc":null},{"filename":"lft.db","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2493,"date":"2016-08-29 08:45:51.000000000 -0700","epoch":1472485551,"epoch_utc":null},{"filename":"libnetcfg","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":15775,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"link","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30904,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"linux32","link_to":"setarch","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":7,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"linux64","link_to":"setarch","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":7,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"linux-boot-prober","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1577,"date":"2017-01-21 07:43:27.000000000 -0800","epoch":1485013407,"epoch_utc":null},{"filename":"linux-check-removal","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4090,"date":"2016-06-20 19:48:57.000000000 -0700","epoch":1466477337,"epoch_utc":null},{"filename":"linux-update-symlinks","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":6320,"date":"2016-06-04 18:13:24.000000000 -0700","epoch":1465089204,"epoch_utc":null},{"filename":"linux-version","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2696,"date":"2016-09-16 23:12:36.000000000 -0700","epoch":1474092756,"epoch_utc":null},{"filename":"lnstat","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22888,"date":"2020-07-15 08:16:31.000000000 -0700","epoch":1594826191,"epoch_utc":null},{"filename":"loadkeys","link_to":"/bin/loadkeys","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":13,"date":"2019-08-05 12:23:31.000000000 -0700","epoch":1565033011,"epoch_utc":null},{"filename":"loadunimap","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26760,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"locale","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":50592,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"locale-check","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10240,"date":"2020-08-05 01:14:19.000000000 -0700","epoch":1596615259,"epoch_utc":null},{"filename":"localectl","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22600,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"localedef","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":338744,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"locate","link_to":"/etc/alternatives/locate","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2019-08-05 12:24:17.000000000 -0700","epoch":1565033057,"epoch_utc":null},{"filename":"logger","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47792,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"logname","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30904,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"look","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10472,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"lorder","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2885,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"lsattr","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10240,"date":"2020-01-22 06:40:45.000000000 -0800","epoch":1579704045,"epoch_utc":null},{"filename":"lsb_release","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3638,"date":"2017-08-07 14:55:07.000000000 -0700","epoch":1502142907,"epoch_utc":null},{"filename":"lscpu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":71760,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"lshw","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":687056,"date":"2018-07-10 07:25:42.000000000 -0700","epoch":1531232742,"epoch_utc":null},{"filename":"lsinitramfs","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":625,"date":"2019-10-07 03:53:35.000000000 -0700","epoch":1570445615,"epoch_utc":null},{"filename":"lsipc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":71760,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"lslocks","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35232,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"lslogins","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":63568,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"lsmem","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43088,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"lsns","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":38992,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"lsof","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":163224,"date":"2015-10-28 09:57:56.000000000 -0700","epoch":1446051476,"epoch_utc":null},{"filename":"lspci","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":81584,"date":"2019-02-10 10:25:12.000000000 -0800","epoch":1549823112,"epoch_utc":null},{"filename":"lspgpot","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1081,"date":"2017-08-28 03:22:54.000000000 -0700","epoch":1503915774,"epoch_utc":null},{"filename":"lsusb","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":117176,"date":"2017-04-21 13:59:17.000000000 -0700","epoch":1492808357,"epoch_utc":null},{"filename":"ltrace","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":333016,"date":"2016-10-12 23:20:41.000000000 -0700","epoch":1476339641,"epoch_utc":null},{"filename":"lxc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10779792,"date":"2018-11-23 10:58:51.000000000 -0800","epoch":1542999531,"epoch_utc":null},{"filename":"lxcfs","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18504,"date":"2020-03-31 09:20:51.000000000 -0700","epoch":1585671651,"epoch_utc":null},{"filename":"lxd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":105,"date":"2018-11-23 10:58:51.000000000 -0800","epoch":1542999531,"epoch_utc":null},{"filename":"lzcat","link_to":"/etc/alternatives/lzcat","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":23,"date":"2019-08-05 12:23:24.000000000 -0700","epoch":1565033004,"epoch_utc":null},{"filename":"lzcmp","link_to":"/etc/alternatives/lzcmp","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":23,"date":"2019-08-05 12:23:24.000000000 -0700","epoch":1565033004,"epoch_utc":null},{"filename":"lzdiff","link_to":"/etc/alternatives/lzdiff","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2019-08-05 12:23:24.000000000 -0700","epoch":1565033004,"epoch_utc":null},{"filename":"lzegrep","link_to":"/etc/alternatives/lzegrep","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":25,"date":"2019-08-05 12:23:24.000000000 -0700","epoch":1565033004,"epoch_utc":null},{"filename":"lzfgrep","link_to":"/etc/alternatives/lzfgrep","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":25,"date":"2019-08-05 12:23:24.000000000 -0700","epoch":1565033004,"epoch_utc":null},{"filename":"lzgrep","link_to":"/etc/alternatives/lzgrep","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2019-08-05 12:23:24.000000000 -0700","epoch":1565033004,"epoch_utc":null},{"filename":"lzless","link_to":"/etc/alternatives/lzless","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2019-08-05 12:23:24.000000000 -0700","epoch":1565033004,"epoch_utc":null},{"filename":"lzma","link_to":"/etc/alternatives/lzma","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"2019-08-05 12:23:24.000000000 -0700","epoch":1565033004,"epoch_utc":null},{"filename":"lzmainfo","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10384,"date":"2017-06-28 09:39:19.000000000 -0700","epoch":1498667959,"epoch_utc":null},{"filename":"lzmore","link_to":"/etc/alternatives/lzmore","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2019-08-05 12:23:24.000000000 -0700","epoch":1565033004,"epoch_utc":null},{"filename":"make","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":222792,"date":"2018-04-17 05:12:28.000000000 -0700","epoch":1523967148,"epoch_utc":null},{"filename":"make-first-existing-target","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4905,"date":"2018-04-17 05:12:28.000000000 -0700","epoch":1523967148,"epoch_utc":null},{"filename":"man","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":107008,"date":"2018-08-04 12:16:12.000000000 -0700","epoch":1533410172,"epoch_utc":null},{"filename":"mandb","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":129760,"date":"2018-08-04 12:16:12.000000000 -0700","epoch":1533410172,"epoch_utc":null},{"filename":"manifest","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1942,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"manpath","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31200,"date":"2018-08-04 12:16:12.000000000 -0700","epoch":1533410172,"epoch_utc":null},{"filename":"mapscrn","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22664,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"mawk","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":125416,"date":"2018-04-03 05:34:18.000000000 -0700","epoch":1522758858,"epoch_utc":null},{"filename":"mcookie","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30864,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"md5sum","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43224,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"md5sum.textutils","link_to":"md5sum","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"mdig","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43136,"date":"2021-02-15 05:08:25.000000000 -0800","epoch":1613394505,"epoch_utc":null},{"filename":"mesg","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"migrate-pubring-from-classic-gpg","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2194,"date":"2017-11-30 15:42:42.000000000 -0800","epoch":1512085362,"epoch_utc":null},{"filename":"miniterm","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35098,"date":"2018-04-09 04:57:25.000000000 -0700","epoch":1523275045,"epoch_utc":null},{"filename":"mkfifo","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":63672,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"mk_modmap","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":16163,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"mksquashfs","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":189432,"date":"2018-07-05 12:49:18.000000000 -0700","epoch":1530820158,"epoch_utc":null},{"filename":"mlocate","flags":"-rwxr-sr-x","links":1,"owner":"root","group":"mlocate","size":43088,"date":"2018-03-01 08:07:16.000000000 -0800","epoch":1519920436,"epoch_utc":null},{"filename":"mpstat","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":51360,"date":"2020-01-17 03:24:09.000000000 -0800","epoch":1579260249,"epoch_utc":null},{"filename":"mtr","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":73664,"date":"2017-11-01 19:48:40.000000000 -0700","epoch":1509590920,"epoch_utc":null},{"filename":"mtrace","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":6496,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"mtr-packet","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26616,"date":"2017-11-01 19:48:40.000000000 -0700","epoch":1509590920,"epoch_utc":null},{"filename":"musl-gcc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":173,"date":"2018-02-25 09:54:30.000000000 -0800","epoch":1519581270,"epoch_utc":null},{"filename":"musl-ldd","link_to":"/lib/x86_64-linux-musl/libc.so","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":30,"date":"2018-02-25 09:54:30.000000000 -0800","epoch":1519581270,"epoch_utc":null},{"filename":"namei","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26704,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"nawk","link_to":"/etc/alternatives/nawk","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"2019-08-05 12:22:59.000000000 -0700","epoch":1565032979,"epoch_utc":null},{"filename":"ncal","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":29480,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"ncat","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":204760,"date":"2018-04-15 18:11:39.000000000 -0700","epoch":1523841099,"epoch_utc":null},{"filename":"neqn","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":908,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"netkit-ftp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":101064,"date":"2016-12-06 07:23:57.000000000 -0800","epoch":1481037837,"epoch_utc":null},{"filename":"networkd-dispatcher","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18203,"date":"2018-10-15 05:12:24.000000000 -0700","epoch":1539605544,"epoch_utc":null},{"filename":"newgidmap","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"root","size":37136,"date":"2019-03-22 12:05:38.000000000 -0700","epoch":1553281538,"epoch_utc":null},{"filename":"newgrp","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"root","size":40344,"date":"2019-03-22 12:05:38.000000000 -0700","epoch":1553281538,"epoch_utc":null},{"filename":"newuidmap","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"root","size":37136,"date":"2019-03-22 12:05:38.000000000 -0700","epoch":1553281538,"epoch_utc":null},{"filename":"NF","link_to":"col1","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"ngettext","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":34896,"date":"2019-02-21 06:40:49.000000000 -0800","epoch":1550760049,"epoch_utc":null},{"filename":"nice","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"nl","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43288,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"nm","link_to":"x86_64-linux-gnu-nm","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":19,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"nmap","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2961432,"date":"2018-04-15 18:11:39.000000000 -0700","epoch":1523841099,"epoch_utc":null},{"filename":"nohup","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"nping","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":530776,"date":"2018-04-15 18:11:39.000000000 -0700","epoch":1523841099,"epoch_utc":null},{"filename":"nproc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"nroff","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3323,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"nsenter","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31008,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"nslookup","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":133640,"date":"2021-02-15 05:08:25.000000000 -0800","epoch":1613394505,"epoch_utc":null},{"filename":"nstat","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26696,"date":"2020-07-15 08:16:31.000000000 -0700","epoch":1594826191,"epoch_utc":null},{"filename":"nsupdate","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":67608,"date":"2021-02-15 05:08:25.000000000 -0800","epoch":1613394505,"epoch_utc":null},{"filename":"ntfsdecrypt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47224,"date":"2019-03-21 14:33:01.000000000 -0700","epoch":1553203981,"epoch_utc":null},{"filename":"ntpdc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":145544,"date":"2020-08-17 18:58:51.000000000 -0700","epoch":1597715931,"epoch_utc":null},{"filename":"ntpq","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":188584,"date":"2020-08-17 18:58:51.000000000 -0700","epoch":1597715931,"epoch_utc":null},{"filename":"ntpsweep","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":7980,"date":"2020-08-17 18:58:51.000000000 -0700","epoch":1597715931,"epoch_utc":null},{"filename":"ntptrace","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3560,"date":"2020-08-17 18:58:51.000000000 -0700","epoch":1597715931,"epoch_utc":null},{"filename":"numfmt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":63736,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"obexctl","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":149640,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"objcopy","link_to":"x86_64-linux-gnu-objcopy","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"objdump","link_to":"x86_64-linux-gnu-objdump","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"od","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":67800,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"on_ac_power","link_to":"/sbin/on_ac_power","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":17,"date":"2018-03-20 06:19:42.000000000 -0700","epoch":1521551982,"epoch_utc":null},{"filename":"openssl","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":723944,"date":"2021-03-22 04:42:42.000000000 -0700","epoch":1616413362,"epoch_utc":null},{"filename":"os-prober","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4551,"date":"2017-01-31 12:30:39.000000000 -0800","epoch":1485894639,"epoch_utc":null},{"filename":"pager","link_to":"/etc/alternatives/pager","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":23,"date":"2019-08-05 12:23:04.000000000 -0700","epoch":1565032984,"epoch_utc":null},{"filename":"partx","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":88144,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"passwd","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"root","size":59640,"date":"2019-03-22 12:05:38.000000000 -0700","epoch":1553281538,"epoch_utc":null},{"filename":"paste","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35032,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"pastebinit","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":16642,"date":"2016-02-29 21:52:32.000000000 -0800","epoch":1456811552,"epoch_utc":null},{"filename":"patch","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":182648,"date":"2019-07-23 05:12:54.000000000 -0700","epoch":1563883974,"epoch_utc":null},{"filename":"pathchk","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"pbget","link_to":"pbput","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"2018-04-15 08:38:02.000000000 -0700","epoch":1523806682,"epoch_utc":null},{"filename":"pbput","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2569,"date":"2016-02-29 08:14:33.000000000 -0800","epoch":1456762473,"epoch_utc":null},{"filename":"pbputs","link_to":"pbput","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"2018-04-15 08:38:02.000000000 -0700","epoch":1523806682,"epoch_utc":null},{"filename":"pcimodules","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14472,"date":"2019-02-10 10:25:12.000000000 -0800","epoch":1549823112,"epoch_utc":null},{"filename":"pdb3","link_to":"pdb3.6","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"2018-10-25 04:11:00.000000000 -0700","epoch":1540465860,"epoch_utc":null},{"filename":"pdb3.6","link_to":"../lib/python3.6/pdb.py","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":23,"date":"2021-01-26 07:33:00.000000000 -0800","epoch":1611675180,"epoch_utc":null},{"filename":"peekfd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14328,"date":"2018-12-11 07:46:04.000000000 -0800","epoch":1544543164,"epoch_utc":null},{"filename":"perl","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"root","size":2097720,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"perl5.26.1","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"root","size":2097720,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"perl5.26-x86_64-linux-gnu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10216,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"perlbug","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"root","size":45853,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"perldoc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":125,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"perlivp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10864,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"perlthanks","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"root","size":45853,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"pftp","link_to":"/etc/alternatives/pftp","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"2019-08-05 12:24:23.000000000 -0700","epoch":1565033063,"epoch_utc":null},{"filename":"pgrep","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26712,"date":"2019-08-09 08:37:27.000000000 -0700","epoch":1565365047,"epoch_utc":null},{"filename":"pic","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":208928,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"pico","link_to":"/etc/alternatives/pico","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"2019-08-05 12:24:20.000000000 -0700","epoch":1565033060,"epoch_utc":null},{"filename":"piconv","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":8357,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"pidstat","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":63648,"date":"2020-01-17 03:24:09.000000000 -0800","epoch":1579260249,"epoch_utc":null},{"filename":"pigz","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"root","size":116944,"date":"2017-12-27 11:41:06.000000000 -0800","epoch":1514403666,"epoch_utc":null},{"filename":"pinentry","link_to":"/etc/alternatives/pinentry","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":26,"date":"2019-08-05 12:24:35.000000000 -0700","epoch":1565033075,"epoch_utc":null},{"filename":"pinentry-curses","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":63992,"date":"2018-02-05 17:18:30.000000000 -0800","epoch":1517879910,"epoch_utc":null},{"filename":"pinky","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39128,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"pip3","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":293,"date":"2020-10-22 07:40:50.000000000 -0700","epoch":1603377650,"epoch_utc":null},{"filename":"pkaction","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14328,"date":"2019-03-27 06:57:02.000000000 -0700","epoch":1553695022,"epoch_utc":null},{"filename":"pkcheck","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18504,"date":"2019-03-27 06:57:02.000000000 -0700","epoch":1553695022,"epoch_utc":null},{"filename":"pkexec","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"root","size":22520,"date":"2019-03-27 06:57:02.000000000 -0700","epoch":1553695022,"epoch_utc":null},{"filename":"pkg-config","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"root","size":51296,"date":"2017-04-21 13:54:08.000000000 -0700","epoch":1492808048,"epoch_utc":null},{"filename":"pkill","link_to":"pgrep","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"2019-08-09 08:37:27.000000000 -0700","epoch":1565365047,"epoch_utc":null},{"filename":"pkttyagent","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14328,"date":"2019-03-27 06:57:02.000000000 -0700","epoch":1553695022,"epoch_utc":null},{"filename":"pl2pm","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4533,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"pldd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18656,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"pmap","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30808,"date":"2019-08-09 08:37:27.000000000 -0700","epoch":1565365047,"epoch_utc":null},{"filename":"pod2html","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4134,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"pod2man","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":15079,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"pod2text","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10979,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"pod2usage","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3948,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"podchecker","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3658,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"podselect","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2527,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"pollinate","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":8744,"date":"2018-05-29 13:13:20.000000000 -0700","epoch":1527624800,"epoch_utc":null},{"filename":"pr","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":71960,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"preconv","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47304,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"print","link_to":"run-mailcap","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":11,"date":"2016-07-15 05:06:12.000000000 -0700","epoch":1468584372,"epoch_utc":null},{"filename":"printenv","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30904,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"printerbanner","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22528,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"printf","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":51384,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"prlimit","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35424,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"prove","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":13588,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"prtstat","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18504,"date":"2018-12-11 07:46:04.000000000 -0800","epoch":1544543164,"epoch_utc":null},{"filename":"psfaddtable","link_to":"psfxtable","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":9,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"psfgettable","link_to":"psfxtable","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":9,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"psfstriptable","link_to":"psfxtable","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":9,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"psfxtable","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18424,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"pslog","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10232,"date":"2018-12-11 07:46:04.000000000 -0800","epoch":1544543164,"epoch_utc":null},{"filename":"pstree","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":27592,"date":"2018-12-11 07:46:04.000000000 -0800","epoch":1544543164,"epoch_utc":null},{"filename":"pstree.x11","link_to":"pstree","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"2018-12-11 07:46:04.000000000 -0800","epoch":1544543164,"epoch_utc":null},{"filename":"ptar","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3549,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"ptardiff","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2628,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"ptargrep","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4392,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"ptx","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":71928,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"purge-old-kernels","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1149,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"pwdx","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"2019-08-09 08:37:27.000000000 -0700","epoch":1565365047,"epoch_utc":null},{"filename":"py3clean","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":7812,"date":"2018-10-25 04:11:00.000000000 -0700","epoch":1540465860,"epoch_utc":null},{"filename":"py3compile","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":12119,"date":"2018-10-25 04:11:00.000000000 -0700","epoch":1540465860,"epoch_utc":null},{"filename":"py3versions","link_to":"../share/python3/py3versions.py","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":31,"date":"2018-10-25 04:11:00.000000000 -0700","epoch":1540465860,"epoch_utc":null},{"filename":"pybuild","link_to":"../share/dh-python/pybuild","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":26,"date":"2018-03-26 12:42:23.000000000 -0700","epoch":1522093343,"epoch_utc":null},{"filename":"pydoc3","link_to":"pydoc3.6","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":8,"date":"2018-10-25 04:11:00.000000000 -0700","epoch":1540465860,"epoch_utc":null},{"filename":"pydoc3.6","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":79,"date":"2021-01-26 07:33:00.000000000 -0800","epoch":1611675180,"epoch_utc":null},{"filename":"pygettext3","link_to":"pygettext3.6","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":12,"date":"2018-10-25 04:11:00.000000000 -0700","epoch":1540465860,"epoch_utc":null},{"filename":"pygettext3.6","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":21547,"date":"2021-01-26 07:33:00.000000000 -0800","epoch":1611675180,"epoch_utc":null},{"filename":"pyhtmlizer3","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":392,"date":"2020-03-16 10:24:46.000000000 -0700","epoch":1584379486,"epoch_utc":null},{"filename":"pyjwt3","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":372,"date":"2017-09-25 12:23:43.000000000 -0700","epoch":1506367423,"epoch_utc":null},{"filename":"python3","link_to":"python3.6","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":9,"date":"2018-10-25 04:11:00.000000000 -0700","epoch":1540465860,"epoch_utc":null},{"filename":"python3.6","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"root","size":4526456,"date":"2021-01-26 07:33:00.000000000 -0800","epoch":1611675180,"epoch_utc":null},{"filename":"python3.6-config","link_to":"x86_64-linux-gnu-python3.6-config","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":33,"date":"2021-01-26 07:33:00.000000000 -0800","epoch":1611675180,"epoch_utc":null},{"filename":"python3.6m","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"root","size":4526456,"date":"2021-01-26 07:33:00.000000000 -0800","epoch":1611675180,"epoch_utc":null},{"filename":"python3.6m-config","link_to":"x86_64-linux-gnu-python3.6m-config","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":34,"date":"2021-01-26 07:33:00.000000000 -0800","epoch":1611675180,"epoch_utc":null},{"filename":"python3-config","link_to":"python3.6-config","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":16,"date":"2018-10-25 04:11:00.000000000 -0700","epoch":1540465860,"epoch_utc":null},{"filename":"python3-jsondiff","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1018,"date":"2017-10-28 13:10:15.000000000 -0700","epoch":1509221415,"epoch_utc":null},{"filename":"python3-jsonpatch","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3661,"date":"2017-10-28 13:10:15.000000000 -0700","epoch":1509221415,"epoch_utc":null},{"filename":"python3-jsonpointer","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1342,"date":"2016-05-01 16:14:11.000000000 -0700","epoch":1462144451,"epoch_utc":null},{"filename":"python3-jsonschema","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":398,"date":"2017-11-15 11:43:29.000000000 -0800","epoch":1510775009,"epoch_utc":null},{"filename":"python3m","link_to":"python3.6m","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":10,"date":"2018-10-25 04:11:00.000000000 -0700","epoch":1540465860,"epoch_utc":null},{"filename":"python3m-config","link_to":"python3.6m-config","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":17,"date":"2018-10-25 04:11:00.000000000 -0700","epoch":1540465860,"epoch_utc":null},{"filename":"ranlib","link_to":"x86_64-linux-gnu-ranlib","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":23,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"rcp","link_to":"/etc/alternatives/rcp","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"2019-08-05 12:24:40.000000000 -0700","epoch":1565033080,"epoch_utc":null},{"filename":"rctest","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":144840,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"rdma","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26696,"date":"2020-07-15 08:16:31.000000000 -0700","epoch":1594826191,"epoch_utc":null},{"filename":"readelf","link_to":"x86_64-linux-gnu-readelf","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"realpath","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47320,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"rename.ul","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14408,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"renice","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14408,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"reset","link_to":"tset","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"2018-05-23 01:08:27.000000000 -0700","epoch":1527062907,"epoch_utc":null},{"filename":"resizecons","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18568,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"resizepart","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":38992,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"rev","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"rfcomm","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":107032,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"rgrep","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30,"date":"2017-07-11 06:19:59.000000000 -0700","epoch":1499779199,"epoch_utc":null},{"filename":"rjc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":87229416,"date":"2020-04-14 12:53:49.741997779 -0700","epoch":1586894029,"epoch_utc":null},{"filename":"rlogin","link_to":"/etc/alternatives/rlogin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2019-08-05 12:24:40.000000000 -0700","epoch":1565033080,"epoch_utc":null},{"filename":"routef","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":208,"date":"2020-07-15 08:16:31.000000000 -0700","epoch":1594826191,"epoch_utc":null},{"filename":"routel","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1656,"date":"2020-07-15 08:16:31.000000000 -0700","epoch":1594826191,"epoch_utc":null},{"filename":"rpcgen","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":100896,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"rsh","link_to":"/etc/alternatives/rsh","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"2019-08-05 12:24:40.000000000 -0700","epoch":1565033080,"epoch_utc":null},{"filename":"rsync","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":500024,"date":"2020-02-18 13:03:13.000000000 -0800","epoch":1582059793,"epoch_utc":null},{"filename":"rtstat","link_to":"lnstat","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"2020-07-15 08:16:31.000000000 -0700","epoch":1594826191,"epoch_utc":null},{"filename":"runcon","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"run-mailcap","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18161,"date":"2016-07-15 05:06:12.000000000 -0700","epoch":1468584372,"epoch_utc":null},{"filename":"run-one","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3592,"date":"2014-01-15 14:24:04.000000000 -0800","epoch":1389824644,"epoch_utc":null},{"filename":"run-one-constantly","link_to":"run-one","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":7,"date":"2014-01-15 14:40:51.000000000 -0800","epoch":1389825651,"epoch_utc":null},{"filename":"run-one-until-failure","link_to":"run-one","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":7,"date":"2014-01-15 14:40:51.000000000 -0800","epoch":1389825651,"epoch_utc":null},{"filename":"run-one-until-success","link_to":"run-one","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":7,"date":"2014-01-15 14:40:51.000000000 -0800","epoch":1389825651,"epoch_utc":null},{"filename":"run-this-one","link_to":"run-one","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":7,"date":"2014-01-15 14:40:51.000000000 -0800","epoch":1389825651,"epoch_utc":null},{"filename":"rview","link_to":"/etc/alternatives/rview","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":23,"date":"2019-08-05 12:23:26.000000000 -0700","epoch":1565033006,"epoch_utc":null},{"filename":"rvim","link_to":"/etc/alternatives/rvim","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"2019-08-05 12:24:27.000000000 -0700","epoch":1565033067,"epoch_utc":null},{"filename":"sadf","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":313824,"date":"2020-01-17 03:24:09.000000000 -0800","epoch":1579260249,"epoch_utc":null},{"filename":"sar","link_to":"/etc/alternatives/sar","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"2019-10-30 14:02:28.138438060 -0700","epoch":1572469348,"epoch_utc":null},{"filename":"sar.sysstat","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":120720,"date":"2020-01-17 03:24:09.000000000 -0800","epoch":1579260249,"epoch_utc":null},{"filename":"savelog","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10469,"date":"2017-12-30 10:15:02.000000000 -0800","epoch":1514657702,"epoch_utc":null},{"filename":"scp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":100496,"date":"2019-03-04 04:17:51.000000000 -0800","epoch":1551701871,"epoch_utc":null},{"filename":"screen","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":465928,"date":"2021-02-23 09:46:52.000000000 -0800","epoch":1614102412,"epoch_utc":null},{"filename":"screendump","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10232,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"script","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30792,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"scriptreplay","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26704,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"sdiff","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":51296,"date":"2017-08-04 14:20:16.000000000 -0700","epoch":1501881616,"epoch_utc":null},{"filename":"sdptool","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":209848,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"see","link_to":"run-mailcap","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":11,"date":"2016-07-15 05:06:12.000000000 -0700","epoch":1468584372,"epoch_utc":null},{"filename":"select-editor","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2442,"date":"2018-03-12 03:17:53.000000000 -0700","epoch":1520849873,"epoch_utc":null},{"filename":"sensible-browser","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1209,"date":"2018-03-12 03:17:53.000000000 -0700","epoch":1520849873,"epoch_utc":null},{"filename":"sensible-editor","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1109,"date":"2018-03-12 03:17:53.000000000 -0700","epoch":1520849873,"epoch_utc":null},{"filename":"sensible-pager","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":433,"date":"2018-03-12 03:17:53.000000000 -0700","epoch":1520849873,"epoch_utc":null},{"filename":"seq","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47288,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"setarch","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18784,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"setfacl","link_to":"/bin/setfacl","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":12,"date":"2019-08-05 12:24:25.000000000 -0700","epoch":1565033065,"epoch_utc":null},{"filename":"setkeycodes","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"setleds","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14392,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"setlogcons","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"setmetamode","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10344,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"setpci","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26704,"date":"2019-02-10 10:25:12.000000000 -0800","epoch":1549823112,"epoch_utc":null},{"filename":"setsid","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"setterm","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43088,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"sftp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":153960,"date":"2019-03-04 04:17:51.000000000 -0800","epoch":1551701871,"epoch_utc":null},{"filename":"sg","link_to":"newgrp","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"2019-03-22 12:05:38.000000000 -0700","epoch":1553281538,"epoch_utc":null},{"filename":"sha1sum","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47320,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"sha224sum","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":55512,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"sha256sum","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":55512,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"sha384sum","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":59608,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"sha512sum","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":59608,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"shasum","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":9371,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"showconsolefont","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18504,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"showkey","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14408,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"shred","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":59608,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"shuf","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":55480,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"size","link_to":"x86_64-linux-gnu-size","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"skill","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26704,"date":"2019-08-09 08:37:27.000000000 -0700","epoch":1565365047,"epoch_utc":null},{"filename":"slabtop","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18512,"date":"2019-08-09 08:37:27.000000000 -0700","epoch":1565365047,"epoch_utc":null},{"filename":"slogin","link_to":"ssh","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"2019-03-04 04:17:51.000000000 -0800","epoch":1551701871,"epoch_utc":null},{"filename":"slurm","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":34824,"date":"2018-04-03 05:43:49.000000000 -0700","epoch":1522759429,"epoch_utc":null},{"filename":"snap","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":19428040,"date":"2021-02-02 00:21:12.000000000 -0800","epoch":1612254072,"epoch_utc":null},{"filename":"snapctl","link_to":"../lib/snapd/snapctl","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":20,"date":"2021-02-02 00:21:12.000000000 -0800","epoch":1612254072,"epoch_utc":null},{"filename":"snapfuse","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39048,"date":"2021-02-02 00:21:12.000000000 -0800","epoch":1612254072,"epoch_utc":null},{"filename":"snice","link_to":"skill","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"2019-08-09 08:37:27.000000000 -0700","epoch":1565365047,"epoch_utc":null},{"filename":"sntp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":165384,"date":"2020-08-17 18:58:51.000000000 -0700","epoch":1597715931,"epoch_utc":null},{"filename":"soelim","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30920,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"sort","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":113120,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"sosreport","link_to":"../share/sosreport/sosreport","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":28,"date":"2020-07-07 12:34:42.000000000 -0700","epoch":1594150482,"epoch_utc":null},{"filename":"sotruss","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4308,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"splain","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":19150,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"split","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":55936,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"splitfont","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10232,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"sprof","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26840,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"ssh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":727848,"date":"2019-03-04 04:17:51.000000000 -0800","epoch":1551701871,"epoch_utc":null},{"filename":"ssh-add","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":346248,"date":"2019-03-04 04:17:51.000000000 -0800","epoch":1551701871,"epoch_utc":null},{"filename":"ssh-agent","flags":"-rwxr-sr-x","links":1,"owner":"root","group":"ssh","size":362640,"date":"2019-03-04 04:17:51.000000000 -0800","epoch":1551701871,"epoch_utc":null},{"filename":"ssh-argv0","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1456,"date":"2018-01-16 09:39:31.000000000 -0800","epoch":1516124371,"epoch_utc":null},{"filename":"ssh-copy-id","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10658,"date":"2017-10-02 12:34:26.000000000 -0700","epoch":1506972866,"epoch_utc":null},{"filename":"ssh-import-id","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1771,"date":"2018-05-16 16:40:43.000000000 -0700","epoch":1526514043,"epoch_utc":null},{"filename":"ssh-import-id-gh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":782,"date":"2016-01-29 21:11:11.000000000 -0800","epoch":1454130671,"epoch_utc":null},{"filename":"ssh-import-id-lp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":782,"date":"2016-01-29 21:11:25.000000000 -0800","epoch":1454130685,"epoch_utc":null},{"filename":"ssh-keygen","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":420000,"date":"2019-03-04 04:17:51.000000000 -0800","epoch":1551701871,"epoch_utc":null},{"filename":"ssh-keyscan","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":420000,"date":"2019-03-04 04:17:51.000000000 -0800","epoch":1551701871,"epoch_utc":null},{"filename":"stat","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":80088,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"stdbuf","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47288,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"strace","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1378552,"date":"2018-04-11 07:18:47.000000000 -0700","epoch":1523456327,"epoch_utc":null},{"filename":"strace-log-merge","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2644,"date":"2018-02-13 15:00:00.000000000 -0800","epoch":1518562800,"epoch_utc":null},{"filename":"strings","link_to":"x86_64-linux-gnu-strings","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"strip","link_to":"x86_64-linux-gnu-strip","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"sudo","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"root","size":149080,"date":"2021-01-19 06:36:00.000000000 -0800","epoch":1611066960,"epoch_utc":null},{"filename":"sudoedit","link_to":"sudo","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"2021-01-19 06:36:00.000000000 -0800","epoch":1611066960,"epoch_utc":null},{"filename":"sudoreplay","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":56128,"date":"2021-01-19 06:36:00.000000000 -0800","epoch":1611066960,"epoch_utc":null},{"filename":"sum","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39104,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"symcryptrun","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":113384,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"systemd-analyze","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1558792,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"systemd-cat","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"systemd-cgls","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14408,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"systemd-cgtop","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30816,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"systemd-delta","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22600,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"systemd-detect-virt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10304,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"systemd-mount","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43104,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"systemd-path","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10304,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"systemd-resolve","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":88136,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"systemd-run","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43080,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"systemd-socket-activate","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18504,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"systemd-stdio-bridge","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14408,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"systemd-umount","link_to":"systemd-mount","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":13,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"tabs","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14328,"date":"2018-05-23 01:08:27.000000000 -0700","epoch":1527062907,"epoch_utc":null},{"filename":"tac","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39096,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"tail","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":67832,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"tapestat","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39056,"date":"2020-01-17 03:24:09.000000000 -0800","epoch":1579260249,"epoch_utc":null},{"filename":"taskset","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30800,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"tbl","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":129224,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"tee","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35032,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"telnet","link_to":"/etc/alternatives/telnet","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2019-08-05 12:24:22.000000000 -0700","epoch":1565033062,"epoch_utc":null},{"filename":"telnet.netkit","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":111024,"date":"2016-11-07 10:06:40.000000000 -0800","epoch":1478542000,"epoch_utc":null},{"filename":"test","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47288,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"tic","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":84080,"date":"2018-05-23 01:08:27.000000000 -0700","epoch":1527062907,"epoch_utc":null},{"filename":"time","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14720,"date":"2017-04-21 13:57:03.000000000 -0700","epoch":1492808223,"epoch_utc":null},{"filename":"timedatectl","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22600,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"timeout","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39552,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"tkconch3","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":386,"date":"2020-03-16 10:24:46.000000000 -0700","epoch":1584379486,"epoch_utc":null},{"filename":"tload","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14424,"date":"2019-08-09 08:37:27.000000000 -0700","epoch":1565365047,"epoch_utc":null},{"filename":"tmux","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":577088,"date":"2019-07-04 12:45:07.000000000 -0700","epoch":1562269507,"epoch_utc":null},{"filename":"toe","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14328,"date":"2018-05-23 01:08:27.000000000 -0700","epoch":1527062907,"epoch_utc":null},{"filename":"top","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":108304,"date":"2019-08-09 08:37:27.000000000 -0700","epoch":1565365047,"epoch_utc":null},{"filename":"touch","link_to":"/bin/touch","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":10,"date":"2019-08-05 12:23:03.000000000 -0700","epoch":1565032983,"epoch_utc":null},{"filename":"tput","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18456,"date":"2018-05-23 01:08:27.000000000 -0700","epoch":1527062907,"epoch_utc":null},{"filename":"tr","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47288,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"tracepath","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14344,"date":"2019-06-28 04:05:23.000000000 -0700","epoch":1561719923,"epoch_utc":null},{"filename":"traceproto","link_to":"/etc/alternatives/traceproto","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":28,"date":"2020-07-27 14:56:20.508049125 -0700","epoch":1595886980,"epoch_utc":null},{"filename":"traceproto.db","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2885,"date":"2016-08-29 08:45:51.000000000 -0700","epoch":1472485551,"epoch_utc":null},{"filename":"traceroute","link_to":"/etc/alternatives/traceroute","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":28,"date":"2020-07-27 14:56:20.460021872 -0700","epoch":1595886980,"epoch_utc":null},{"filename":"traceroute6","link_to":"/etc/alternatives/traceroute6","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":29,"date":"2019-08-05 12:24:21.000000000 -0700","epoch":1565033061,"epoch_utc":null},{"filename":"traceroute6.db","link_to":"traceroute.db","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":13,"date":"2016-08-29 08:45:51.000000000 -0700","epoch":1472485551,"epoch_utc":null},{"filename":"traceroute6.iputils","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"root","size":18448,"date":"2019-06-28 04:05:23.000000000 -0700","epoch":1561719923,"epoch_utc":null},{"filename":"traceroute.db","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":68768,"date":"2016-08-29 08:45:51.000000000 -0700","epoch":1472485551,"epoch_utc":null},{"filename":"traceroute-nanog","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1618,"date":"2016-08-29 08:45:51.000000000 -0700","epoch":1472485551,"epoch_utc":null},{"filename":"trial3","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":382,"date":"2020-03-16 10:24:46.000000000 -0700","epoch":1584379486,"epoch_utc":null},{"filename":"troff","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":736608,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"truncate","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39096,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"tset","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22528,"date":"2018-05-23 01:08:27.000000000 -0700","epoch":1527062907,"epoch_utc":null},{"filename":"tsort","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"tty","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30904,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"twist3","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":382,"date":"2020-03-16 10:24:46.000000000 -0700","epoch":1584379486,"epoch_utc":null},{"filename":"twistd3","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":384,"date":"2020-03-16 10:24:46.000000000 -0700","epoch":1584379486,"epoch_utc":null},{"filename":"tzselect","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":15397,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"ua","link_to":"ubuntu-advantage","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":16,"date":"2018-03-21 10:20:04.000000000 -0700","epoch":1521652804,"epoch_utc":null},{"filename":"ubuntu-advantage","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4596,"date":"2018-03-21 10:20:04.000000000 -0700","epoch":1521652804,"epoch_utc":null},{"filename":"ubuntu-bug","link_to":"apport-bug","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":10,"date":"2021-01-26 04:21:46.000000000 -0800","epoch":1611663706,"epoch_utc":null},{"filename":"ubuntu-core-launcher","link_to":"../lib/snapd/snap-confine","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":25,"date":"2021-02-02 00:21:12.000000000 -0800","epoch":1612254072,"epoch_utc":null},{"filename":"ubuntu-support-status","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":8033,"date":"2020-06-03 11:41:50.000000000 -0700","epoch":1591209710,"epoch_utc":null},{"filename":"ucf","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":40685,"date":"2018-02-25 16:58:23.000000000 -0800","epoch":1519606703,"epoch_utc":null},{"filename":"ucfq","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":19367,"date":"2018-02-25 16:58:23.000000000 -0800","epoch":1519606703,"epoch_utc":null},{"filename":"ucfr","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10722,"date":"2018-02-25 16:58:23.000000000 -0800","epoch":1519606703,"epoch_utc":null},{"filename":"ul","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14344,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"unattended-upgrade","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":84529,"date":"2020-02-17 03:37:03.000000000 -0800","epoch":1581939423,"epoch_utc":null},{"filename":"unattended-upgrades","link_to":"unattended-upgrade","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":18,"date":"2020-02-17 03:37:03.000000000 -0800","epoch":1581939423,"epoch_utc":null},{"filename":"unexpand","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39128,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"unicode_stop","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":530,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"uniq","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43224,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"unlink","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30904,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"unlzma","link_to":"/etc/alternatives/unlzma","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2019-08-05 12:23:24.000000000 -0700","epoch":1565033004,"epoch_utc":null},{"filename":"unmkinitramfs","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2859,"date":"2019-10-07 03:53:35.000000000 -0700","epoch":1570445615,"epoch_utc":null},{"filename":"unpigz","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"root","size":116944,"date":"2017-12-27 11:41:06.000000000 -0800","epoch":1514403666,"epoch_utc":null},{"filename":"unshare","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18712,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"unsquashfs","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":98008,"date":"2018-07-05 12:49:18.000000000 -0700","epoch":1530820158,"epoch_utc":null},{"filename":"unxz","link_to":"xz","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":2,"date":"2017-06-28 09:39:19.000000000 -0700","epoch":1498667959,"epoch_utc":null},{"filename":"update-alternatives","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47112,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"updatedb","link_to":"/etc/alternatives/updatedb","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":26,"date":"2019-08-05 12:24:17.000000000 -0700","epoch":1565033057,"epoch_utc":null},{"filename":"updatedb.mlocate","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47184,"date":"2018-03-01 08:07:16.000000000 -0800","epoch":1519920436,"epoch_utc":null},{"filename":"update-leap","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":11635,"date":"2020-08-17 18:58:51.000000000 -0700","epoch":1597715931,"epoch_utc":null},{"filename":"update-mime-database","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":51392,"date":"2017-10-10 13:56:05.000000000 -0700","epoch":1507668965,"epoch_utc":null},{"filename":"upower","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14328,"date":"2019-01-25 08:38:41.000000000 -0800","epoch":1548434321,"epoch_utc":null},{"filename":"uptime","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"2019-08-09 08:37:27.000000000 -0700","epoch":1565365047,"epoch_utc":null},{"filename":"usb-devices","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4216,"date":"2017-04-21 13:59:17.000000000 -0700","epoch":1492808357,"epoch_utc":null},{"filename":"usbhid-dump","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22608,"date":"2017-04-21 13:59:17.000000000 -0700","epoch":1492808357,"epoch_utc":null},{"filename":"users","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"utmpdump","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22600,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"uuidgen","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14408,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"uuidparse","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":34896,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"vcs-run","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":6913,"date":"2018-04-13 06:07:55.000000000 -0700","epoch":1523624875,"epoch_utc":null},{"filename":"VGAuthService","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":129248,"date":"2020-03-25 03:33:50.000000000 -0700","epoch":1585132430,"epoch_utc":null},{"filename":"vi","link_to":"/etc/alternatives/vi","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":20,"date":"2019-08-05 12:23:26.000000000 -0700","epoch":1565033006,"epoch_utc":null},{"filename":"view","link_to":"/etc/alternatives/view","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"2019-08-05 12:23:26.000000000 -0700","epoch":1565033006,"epoch_utc":null},{"filename":"vigpg","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2640,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"vim","link_to":"/etc/alternatives/vim","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"2019-08-05 12:24:27.000000000 -0700","epoch":1565033067,"epoch_utc":null},{"filename":"vim.basic","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2675336,"date":"2020-10-13 08:49:09.000000000 -0700","epoch":1602604149,"epoch_utc":null},{"filename":"vimdiff","link_to":"/etc/alternatives/vimdiff","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":25,"date":"2019-08-05 12:24:27.000000000 -0700","epoch":1565033067,"epoch_utc":null},{"filename":"vim.tiny","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1108024,"date":"2020-10-13 08:49:09.000000000 -0700","epoch":1602604149,"epoch_utc":null},{"filename":"vimtutor","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2099,"date":"2020-10-13 08:49:09.000000000 -0700","epoch":1602604149,"epoch_utc":null},{"filename":"vmhgfs-fuse","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":51696,"date":"2020-03-25 03:33:50.000000000 -0700","epoch":1585132430,"epoch_utc":null},{"filename":"vmstat","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":34912,"date":"2019-08-09 08:37:27.000000000 -0700","epoch":1565365047,"epoch_utc":null},{"filename":"vmtoolsd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":55552,"date":"2020-03-25 03:33:50.000000000 -0700","epoch":1585132430,"epoch_utc":null},{"filename":"vmware-checkvm","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"2020-03-25 03:33:50.000000000 -0700","epoch":1585132430,"epoch_utc":null},{"filename":"vmware-hgfsclient","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"2020-03-25 03:33:50.000000000 -0700","epoch":1585132430,"epoch_utc":null},{"filename":"vmware-namespace-cmd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18424,"date":"2020-03-25 03:33:50.000000000 -0700","epoch":1585132430,"epoch_utc":null},{"filename":"vmware-rpctool","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18424,"date":"2020-03-25 03:33:50.000000000 -0700","epoch":1585132430,"epoch_utc":null},{"filename":"vmware-toolbox-cmd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39200,"date":"2020-03-25 03:33:50.000000000 -0700","epoch":1585132430,"epoch_utc":null},{"filename":"vmware-vgauth-cmd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14328,"date":"2020-03-25 03:33:50.000000000 -0700","epoch":1585132430,"epoch_utc":null},{"filename":"vmware-vgauth-smoketest","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18440,"date":"2020-03-25 03:33:50.000000000 -0700","epoch":1585132430,"epoch_utc":null},{"filename":"vmware-vmblock-fuse","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18848,"date":"2020-03-25 03:33:50.000000000 -0700","epoch":1585132430,"epoch_utc":null},{"filename":"vmware-xferlogs","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"2020-03-25 03:33:50.000000000 -0700","epoch":1585132430,"epoch_utc":null},{"filename":"volname","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10232,"date":"2017-03-27 21:22:15.000000000 -0700","epoch":1490674935,"epoch_utc":null},{"filename":"w","link_to":"/etc/alternatives/w","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":19,"date":"2019-08-05 12:23:04.000000000 -0700","epoch":1565032984,"epoch_utc":null},{"filename":"wall","flags":"-rwxr-sr-x","links":1,"owner":"root","group":"tty","size":30800,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"watch","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22952,"date":"2019-08-09 08:37:27.000000000 -0700","epoch":1565365047,"epoch_utc":null},{"filename":"watchgnupg","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14328,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"wc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43200,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"wget","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":499264,"date":"2019-04-08 11:51:50.000000000 -0700","epoch":1554749510,"epoch_utc":null},{"filename":"whatis","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":48104,"date":"2018-08-04 12:16:12.000000000 -0700","epoch":1533410172,"epoch_utc":null},{"filename":"whereis","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":27144,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"which","link_to":"/bin/which","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":10,"date":"2019-08-05 12:23:03.000000000 -0700","epoch":1565032983,"epoch_utc":null},{"filename":"who","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":51416,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"whoami","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30904,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"wifi-status","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2107,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"wmdocker","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22536,"date":"2018-04-03 05:19:52.000000000 -0700","epoch":1522757992,"epoch_utc":null},{"filename":"w.procps","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18504,"date":"2019-08-09 08:37:27.000000000 -0700","epoch":1565365047,"epoch_utc":null},{"filename":"write","link_to":"/etc/alternatives/write","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":23,"date":"2019-08-05 12:24:25.000000000 -0700","epoch":1565033065,"epoch_utc":null},{"filename":"x86_64","link_to":"setarch","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":7,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"x86_64-linux-gnu-addr2line","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31280,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-ar","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":59640,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-as","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":917488,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-c++filt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26744,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-cpp","link_to":"cpp-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"x86_64-linux-gnu-cpp-7","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1047488,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"x86_64-linux-gnu-dwp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2886928,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-elfedit","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31184,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-g++","link_to":"g++-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"x86_64-linux-gnu-g++-7","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1047488,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gcc","link_to":"gcc-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gcc-7","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1047488,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gcc-ar","link_to":"gcc-ar-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":8,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gcc-ar-7","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31200,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gcc-nm","link_to":"gcc-nm-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":8,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gcc-nm-7","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31200,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gcc-ranlib","link_to":"gcc-ranlib-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":12,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gcc-ranlib-7","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31200,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gcov","link_to":"gcov-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gcov-7","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":630880,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gcov-dump","link_to":"gcov-dump-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":11,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gcov-dump-7","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":511928,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gcov-tool","link_to":"gcov-tool-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":11,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gcov-tool-7","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":548856,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gold","link_to":"x86_64-linux-gnu-ld.gold","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gprof","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":102120,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-ld","link_to":"x86_64-linux-gnu-ld.bfd","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":23,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-ld.bfd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1783496,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-ld.gold","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3111952,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-nm","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":44312,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-objcopy","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":235720,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-objdump","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":414256,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-pkg-config","link_to":"/usr/share/pkg-config-crosswrapper","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":34,"date":"2020-04-14 09:35:39.217683591 -0700","epoch":1586882139,"epoch_utc":null},{"filename":"x86_64-linux-gnu-python3.6-config","link_to":"x86_64-linux-gnu-python3.6m-config","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":34,"date":"2021-01-26 07:33:00.000000000 -0800","epoch":1611675180,"epoch_utc":null},{"filename":"x86_64-linux-gnu-python3.6m-config","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3283,"date":"2021-01-26 07:33:00.000000000 -0800","epoch":1611675180,"epoch_utc":null},{"filename":"x86_64-linux-gnu-python3-config","link_to":"x86_64-linux-gnu-python3.6-config","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":33,"date":"2018-10-25 04:11:00.000000000 -0700","epoch":1540465860,"epoch_utc":null},{"filename":"x86_64-linux-gnu-python3m-config","link_to":"x86_64-linux-gnu-python3.6m-config","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":34,"date":"2018-10-25 04:11:00.000000000 -0700","epoch":1540465860,"epoch_utc":null},{"filename":"x86_64-linux-gnu-ranlib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":59672,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-readelf","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":596440,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-size","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31024,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-strings","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31232,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-strip","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":235728,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-pc-linux-gnu-pkg-config","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"root","size":51296,"date":"2017-04-21 13:54:08.000000000 -0700","epoch":1492808048,"epoch_utc":null},{"filename":"xargs","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":71896,"date":"2017-11-05 09:16:48.000000000 -0800","epoch":1509902208,"epoch_utc":null},{"filename":"xauth","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":52032,"date":"2017-11-21 11:47:37.000000000 -0800","epoch":1511293657,"epoch_utc":null},{"filename":"xdelta3","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":153904,"date":"2016-12-05 18:04:51.000000000 -0800","epoch":1480989891,"epoch_utc":null},{"filename":"xdg-user-dir","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":234,"date":"2018-03-23 08:58:57.000000000 -0700","epoch":1521820737,"epoch_utc":null},{"filename":"xdg-user-dirs-update","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18504,"date":"2018-03-23 08:58:57.000000000 -0700","epoch":1521820737,"epoch_utc":null},{"filename":"xsubpp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":5164,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"xxd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18552,"date":"2020-10-13 08:49:09.000000000 -0700","epoch":1602604149,"epoch_utc":null},{"filename":"xz","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":76216,"date":"2017-06-28 09:39:19.000000000 -0700","epoch":1498667959,"epoch_utc":null},{"filename":"xzcat","link_to":"xz","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":2,"date":"2017-06-28 09:39:19.000000000 -0700","epoch":1498667959,"epoch_utc":null},{"filename":"xzcmp","link_to":"xzdiff","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"2017-06-28 09:39:19.000000000 -0700","epoch":1498667959,"epoch_utc":null},{"filename":"xzdiff","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":6632,"date":"2017-06-28 09:39:19.000000000 -0700","epoch":1498667959,"epoch_utc":null},{"filename":"xzegrep","link_to":"xzgrep","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"2017-06-28 09:39:19.000000000 -0700","epoch":1498667959,"epoch_utc":null},{"filename":"xzfgrep","link_to":"xzgrep","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"2017-06-28 09:39:19.000000000 -0700","epoch":1498667959,"epoch_utc":null},{"filename":"xzgrep","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":5628,"date":"2017-06-28 09:39:19.000000000 -0700","epoch":1498667959,"epoch_utc":null},{"filename":"xzless","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1802,"date":"2017-06-28 09:39:19.000000000 -0700","epoch":1498667959,"epoch_utc":null},{"filename":"xzmore","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2161,"date":"2017-06-28 09:39:19.000000000 -0700","epoch":1498667959,"epoch_utc":null},{"filename":"yes","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30904,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"zdump","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18488,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"zipdetails","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":48497,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null}] jc-1.17.3/tests/fixtures/ubuntu-18.04/ls-l-iso.json000066400000000000000000005001201415226333200215350ustar00rootroot00000000000000[{"filename":"[","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":51384,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"aa-enabled","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22696,"date":"2018-09-27 11:20:54.000000000 -0700","epoch":1538072454,"epoch_utc":null},{"filename":"aa-exec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22696,"date":"2018-09-27 11:20:54.000000000 -0700","epoch":1538072454,"epoch_utc":null},{"filename":"acpi","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":23656,"date":"2018-01-14 19:20:21.000000000 -0800","epoch":1515986421,"epoch_utc":null},{"filename":"acpi_listen","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14608,"date":"2017-04-27 21:28:10.000000000 -0700","epoch":1493353690,"epoch_utc":null},{"filename":"add-apt-repository","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":7415,"date":"2020-08-07 07:07:43.000000000 -0700","epoch":1596809263,"epoch_utc":null},{"filename":"addpart","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22608,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"addr2line","link_to":"x86_64-linux-gnu-addr2line","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":26,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"apport-bug","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2558,"date":"2019-11-11 13:57:56.000000000 -0800","epoch":1573509476,"epoch_utc":null},{"filename":"apport-cli","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":13367,"date":"2021-01-26 04:21:46.000000000 -0800","epoch":1611663706,"epoch_utc":null},{"filename":"apport-collect","link_to":"apport-bug","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":10,"date":"2021-01-26 04:21:46.000000000 -0800","epoch":1611663706,"epoch_utc":null},{"filename":"apport-unpack","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1849,"date":"2021-01-26 04:21:46.000000000 -0800","epoch":1611663706,"epoch_utc":null},{"filename":"apropos","link_to":"whatis","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"2018-08-04 12:16:12.000000000 -0700","epoch":1533410172,"epoch_utc":null},{"filename":"apt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14424,"date":"2020-12-07 03:13:36.000000000 -0800","epoch":1607339616,"epoch_utc":null},{"filename":"apt-add-repository","link_to":"add-apt-repository","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":18,"date":"2020-08-07 07:07:43.000000000 -0700","epoch":1596809263,"epoch_utc":null},{"filename":"apt-cache","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":80032,"date":"2020-12-07 03:13:36.000000000 -0800","epoch":1607339616,"epoch_utc":null},{"filename":"apt-cdrom","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22688,"date":"2020-12-07 03:13:36.000000000 -0800","epoch":1607339616,"epoch_utc":null},{"filename":"apt-config","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22616,"date":"2020-12-07 03:13:36.000000000 -0800","epoch":1607339616,"epoch_utc":null},{"filename":"apt-extracttemplates","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22688,"date":"2020-12-07 03:13:36.000000000 -0800","epoch":1607339616,"epoch_utc":null},{"filename":"apt-ftparchive","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":239776,"date":"2020-12-07 03:13:36.000000000 -0800","epoch":1607339616,"epoch_utc":null},{"filename":"apt-get","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43168,"date":"2020-12-07 03:13:36.000000000 -0800","epoch":1607339616,"epoch_utc":null},{"filename":"apt-key","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":27391,"date":"2020-12-07 03:13:36.000000000 -0800","epoch":1607339616,"epoch_utc":null},{"filename":"apt-mark","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43168,"date":"2020-12-07 03:13:36.000000000 -0800","epoch":1607339616,"epoch_utc":null},{"filename":"apt-sortpkgs","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43096,"date":"2020-12-07 03:13:36.000000000 -0800","epoch":1607339616,"epoch_utc":null},{"filename":"ar","link_to":"x86_64-linux-gnu-ar","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":19,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"arch","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35032,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"as","link_to":"x86_64-linux-gnu-as","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":19,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"at","flags":"-rwsr-sr-x","links":1,"owner":"daemon","group":"daemon","size":51464,"date":"2018-02-19 22:59:43.000000000 -0800","epoch":1519109983,"epoch_utc":null},{"filename":"atq","link_to":"at","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":2,"date":"2018-02-19 22:59:43.000000000 -0800","epoch":1519109983,"epoch_utc":null},{"filename":"atrm","link_to":"at","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":2,"date":"2018-02-19 22:59:43.000000000 -0800","epoch":1519109983,"epoch_utc":null},{"filename":"automat-visualize3","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":402,"date":"2017-08-28 01:55:39.000000000 -0700","epoch":1503910539,"epoch_utc":null},{"filename":"awk","link_to":"/etc/alternatives/awk","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"2019-08-05 12:22:59.000000000 -0700","epoch":1565032979,"epoch_utc":null},{"filename":"b2sum","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":55512,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"base32","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39096,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"base64","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39096,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"basename","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"bashbug","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":7115,"date":"2019-06-06 15:28:15.000000000 -0700","epoch":1559860095,"epoch_utc":null},{"filename":"batch","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":152,"date":"2018-02-19 22:59:43.000000000 -0800","epoch":1519109983,"epoch_utc":null},{"filename":"bc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":92872,"date":"2018-03-22 09:20:34.000000000 -0700","epoch":1521735634,"epoch_utc":null},{"filename":"bccmd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":196920,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"bluemoon","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":75848,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"bluetoothctl","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":203272,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"bootctl","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":34952,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"bsd-from","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10232,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"bsd-write","flags":"-rwxr-sr-x","links":1,"owner":"root","group":"tty","size":14328,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"btattach","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":67656,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"btmgmt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":314136,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"btmon","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":716792,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"busctl","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":67672,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":8264,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-config","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":996,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-ctrl-a","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4774,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-disable","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1295,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-disable-prompt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1307,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-enable","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1182,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-enable-prompt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1453,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-export","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1260,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-janitor","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":5963,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-keybindings","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1506,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-launch","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3289,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-launcher","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1910,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-launcher-install","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2459,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-launcher-uninstall","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1561,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-layout","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3348,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-prompt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1156,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-quiet","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1410,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-reconnect-sockets","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3298,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-screen","link_to":"byobu","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-select-backend","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1452,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-select-profile","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":6287,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-select-session","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1012,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-shell","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1599,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-silent","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1306,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-status","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":6015,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-status-detail","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1207,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-tmux","link_to":"byobu","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-ugraph","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4667,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-ulevel","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":11996,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"c++","link_to":"/etc/alternatives/c++","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"2019-10-17 17:14:23.966483723 -0700","epoch":1571357663,"epoch_utc":null},{"filename":"c89","link_to":"/etc/alternatives/c89","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"2019-10-17 17:14:23.810468363 -0700","epoch":1571357663,"epoch_utc":null},{"filename":"c89-gcc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":428,"date":"2006-05-07 02:28:01.000000000 -0700","epoch":1146994081,"epoch_utc":null},{"filename":"c99","link_to":"/etc/alternatives/c99","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"2019-10-17 17:14:23.830470333 -0700","epoch":1571357663,"epoch_utc":null},{"filename":"c99-gcc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":454,"date":"2011-04-11 00:54:37.000000000 -0700","epoch":1302508477,"epoch_utc":null},{"filename":"cal","link_to":"ncal","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"calc_tickadj","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2844,"date":"2020-08-17 18:58:51.000000000 -0700","epoch":1597715931,"epoch_utc":null},{"filename":"calendar","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31208,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"captoinfo","link_to":"tic","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"2018-05-23 01:08:27.000000000 -0700","epoch":1527062907,"epoch_utc":null},{"filename":"catchsegv","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3329,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"catman","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39384,"date":"2018-08-04 12:16:12.000000000 -0700","epoch":1533410172,"epoch_utc":null},{"filename":"cautious-launcher","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":853,"date":"2016-07-15 05:06:12.000000000 -0700","epoch":1468584372,"epoch_utc":null},{"filename":"cc","link_to":"/etc/alternatives/cc","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":20,"date":"2019-10-17 17:14:23.790466394 -0700","epoch":1571357663,"epoch_utc":null},{"filename":"c++filt","link_to":"x86_64-linux-gnu-c++filt","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"cftp3","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":380,"date":"2020-03-16 10:24:46.000000000 -0700","epoch":1584379486,"epoch_utc":null},{"filename":"cgroupfs-mount","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1275,"date":"2016-01-25 09:58:07.000000000 -0800","epoch":1453744687,"epoch_utc":null},{"filename":"cgroupfs-umount","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":620,"date":"2016-01-25 09:58:11.000000000 -0800","epoch":1453744691,"epoch_utc":null},{"filename":"chacl","link_to":"/bin/chacl","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":10,"date":"2019-08-05 12:24:25.000000000 -0700","epoch":1565033065,"epoch_utc":null},{"filename":"chage","flags":"-rwxr-sr-x","links":1,"owner":"root","group":"shadow","size":71816,"date":"2019-03-22 12:05:38.000000000 -0700","epoch":1553281538,"epoch_utc":null},{"filename":"chardet3","link_to":"chardetect3","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":11,"date":"2017-06-18 14:51:08.000000000 -0700","epoch":1497822668,"epoch_utc":null},{"filename":"chardetect3","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":389,"date":"2017-06-18 14:51:08.000000000 -0700","epoch":1497822668,"epoch_utc":null},{"filename":"chattr","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14336,"date":"2020-01-22 06:40:45.000000000 -0800","epoch":1579704045,"epoch_utc":null},{"filename":"chcon","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":63672,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"check-language-support","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2771,"date":"2019-06-28 10:12:00.000000000 -0700","epoch":1561741920,"epoch_utc":null},{"filename":"chfn","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"root","size":76496,"date":"2019-03-22 12:05:38.000000000 -0700","epoch":1553281538,"epoch_utc":null},{"filename":"chrt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30800,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"chsh","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"root","size":44528,"date":"2019-03-22 12:05:38.000000000 -0700","epoch":1553281538,"epoch_utc":null},{"filename":"cifsiostat","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":34960,"date":"2020-01-17 03:24:09.000000000 -0800","epoch":1579260249,"epoch_utc":null},{"filename":"ciptool","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":144984,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"ckbcomp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":149838,"date":"2019-04-23 05:04:14.000000000 -0700","epoch":1556021054,"epoch_utc":null},{"filename":"ckeygen3","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":386,"date":"2020-03-16 10:24:46.000000000 -0700","epoch":1584379486,"epoch_utc":null},{"filename":"cksum","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"clear","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10240,"date":"2018-05-23 01:08:27.000000000 -0700","epoch":1527062907,"epoch_utc":null},{"filename":"clear_console","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"2019-06-06 15:28:15.000000000 -0700","epoch":1559860095,"epoch_utc":null},{"filename":"cloud-id","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":390,"date":"2020-06-02 19:08:10.000000000 -0700","epoch":1591150090,"epoch_utc":null},{"filename":"cloud-init","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":394,"date":"2020-06-02 19:08:10.000000000 -0700","epoch":1591150090,"epoch_utc":null},{"filename":"cloud-init-per","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2108,"date":"2020-06-02 08:24:29.000000000 -0700","epoch":1591111469,"epoch_utc":null},{"filename":"cmp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47200,"date":"2017-08-04 14:20:16.000000000 -0700","epoch":1501881616,"epoch_utc":null},{"filename":"codepage","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14328,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"col","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10232,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"col1","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":963,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"col2","link_to":"col1","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"col3","link_to":"col1","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"col4","link_to":"col1","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"col5","link_to":"col1","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"col6","link_to":"col1","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"col7","link_to":"col1","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"col8","link_to":"col1","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"col9","link_to":"col1","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"colcrt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10240,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"colrm","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10232,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"column","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14344,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"comm","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39128,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"compose","link_to":"run-mailcap","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":11,"date":"2016-07-15 05:06:12.000000000 -0700","epoch":1468584372,"epoch_utc":null},{"filename":"conch3","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":382,"date":"2020-03-16 10:24:46.000000000 -0700","epoch":1584379486,"epoch_utc":null},{"filename":"containerd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":46160136,"date":"2020-03-19 19:13:11.000000000 -0700","epoch":1584670391,"epoch_utc":null},{"filename":"containerd-shim","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":6082248,"date":"2020-03-19 19:13:11.000000000 -0700","epoch":1584670391,"epoch_utc":null},{"filename":"containerd-shim-runc-v1","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":7498568,"date":"2020-03-19 19:13:11.000000000 -0700","epoch":1584670391,"epoch_utc":null},{"filename":"containerd-shim-runc-v2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":7502728,"date":"2020-03-19 19:13:11.000000000 -0700","epoch":1584670391,"epoch_utc":null},{"filename":"containerd-stress","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":21048904,"date":"2020-03-19 19:13:11.000000000 -0700","epoch":1584670391,"epoch_utc":null},{"filename":"corelist","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":12835,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"cpan","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":8156,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"cpan5.26-x86_64-linux-gnu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":8177,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"cpp","link_to":"cpp-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"cpp-7","link_to":"x86_64-linux-gnu-cpp-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"c_rehash","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":6332,"date":"2021-03-22 04:42:42.000000000 -0700","epoch":1616413362,"epoch_utc":null},{"filename":"crontab","flags":"-rwxr-sr-x","links":1,"owner":"root","group":"crontab","size":39352,"date":"2017-11-15 21:29:19.000000000 -0800","epoch":1510810159,"epoch_utc":null},{"filename":"csplit","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":51416,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"ctail","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":958,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"ctr","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22699016,"date":"2020-03-19 19:13:11.000000000 -0700","epoch":1584670391,"epoch_utc":null},{"filename":"ctstat","link_to":"lnstat","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"2020-07-15 08:16:31.000000000 -0700","epoch":1594826191,"epoch_utc":null},{"filename":"curl","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":223304,"date":"2020-12-01 10:01:10.000000000 -0800","epoch":1606845670,"epoch_utc":null},{"filename":"cut","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43224,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"dbus-cleanup-sockets","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10224,"date":"2020-06-11 11:25:30.000000000 -0700","epoch":1591899930,"epoch_utc":null},{"filename":"dbus-daemon","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":236584,"date":"2020-06-11 11:25:30.000000000 -0700","epoch":1591899930,"epoch_utc":null},{"filename":"dbus-monitor","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22520,"date":"2020-06-11 11:25:30.000000000 -0700","epoch":1591899930,"epoch_utc":null},{"filename":"dbus-run-session","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10224,"date":"2020-06-11 11:25:30.000000000 -0700","epoch":1591899930,"epoch_utc":null},{"filename":"dbus-send","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26608,"date":"2020-06-11 11:25:30.000000000 -0700","epoch":1591899930,"epoch_utc":null},{"filename":"dbus-update-activation-environment","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14320,"date":"2020-06-11 11:25:30.000000000 -0700","epoch":1591899930,"epoch_utc":null},{"filename":"dbus-uuidgen","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10224,"date":"2020-06-11 11:25:30.000000000 -0700","epoch":1591899930,"epoch_utc":null},{"filename":"deallocvt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"debconf","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2859,"date":"2019-05-06 09:30:30.000000000 -0700","epoch":1557160230,"epoch_utc":null},{"filename":"debconf-apt-progress","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":11541,"date":"2019-05-06 09:30:30.000000000 -0700","epoch":1557160230,"epoch_utc":null},{"filename":"debconf-communicate","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":608,"date":"2019-05-06 09:30:30.000000000 -0700","epoch":1557160230,"epoch_utc":null},{"filename":"debconf-copydb","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1719,"date":"2019-05-06 09:30:30.000000000 -0700","epoch":1557160230,"epoch_utc":null},{"filename":"debconf-escape","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":647,"date":"2019-05-06 09:30:30.000000000 -0700","epoch":1557160230,"epoch_utc":null},{"filename":"debconf-set-selections","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2935,"date":"2019-05-06 09:30:30.000000000 -0700","epoch":1557160230,"epoch_utc":null},{"filename":"debconf-show","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1827,"date":"2019-05-06 09:30:30.000000000 -0700","epoch":1557160230,"epoch_utc":null},{"filename":"deb-systemd-helper","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":20142,"date":"2017-10-25 08:38:42.000000000 -0700","epoch":1508945922,"epoch_utc":null},{"filename":"deb-systemd-invoke","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4434,"date":"2017-10-25 08:38:42.000000000 -0700","epoch":1508945922,"epoch_utc":null},{"filename":"delpart","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22608,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"delv","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":41840,"date":"2021-02-15 05:08:25.000000000 -0800","epoch":1613394505,"epoch_utc":null},{"filename":"dh_bash-completion","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2550,"date":"2018-04-01 19:16:46.000000000 -0700","epoch":1522635406,"epoch_utc":null},{"filename":"dh_pypy","link_to":"../share/dh-python/dh_pypy","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":26,"date":"2018-03-26 12:42:23.000000000 -0700","epoch":1522093343,"epoch_utc":null},{"filename":"dh_python3","link_to":"../share/dh-python/dh_python3","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":29,"date":"2018-03-26 12:42:23.000000000 -0700","epoch":1522093343,"epoch_utc":null},{"filename":"diff","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":145752,"date":"2017-08-04 14:20:16.000000000 -0700","epoch":1501881616,"epoch_utc":null},{"filename":"diff3","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":63704,"date":"2017-08-04 14:20:16.000000000 -0700","epoch":1501881616,"epoch_utc":null},{"filename":"dig","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":150024,"date":"2021-02-15 05:08:25.000000000 -0800","epoch":1613394505,"epoch_utc":null},{"filename":"dircolors","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47296,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"dirmngr","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":546360,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"dirmngr-client","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":109320,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"dirname","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30904,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"docker","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":89213816,"date":"2020-10-14 09:52:50.000000000 -0700","epoch":1602694370,"epoch_utc":null},{"filename":"dockerd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":105111664,"date":"2020-10-14 09:52:50.000000000 -0700","epoch":1602694370,"epoch_utc":null},{"filename":"docker-init","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":804408,"date":"2020-10-14 09:52:50.000000000 -0700","epoch":1602694370,"epoch_utc":null},{"filename":"docker-proxy","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2901395,"date":"2020-10-14 09:52:50.000000000 -0700","epoch":1602694370,"epoch_utc":null},{"filename":"do-release-upgrade","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":9313,"date":"2020-07-09 15:58:12.000000000 -0700","epoch":1594335492,"epoch_utc":null},{"filename":"dpkg","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":297472,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-architecture","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":12852,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-buildflags","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":7565,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-buildpackage","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":29796,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-checkbuilddeps","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":7503,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-deb","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":153952,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-distaddfile","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2782,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-divert","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":141728,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-genbuildinfo","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":16775,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-genchanges","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":17622,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-gencontrol","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14059,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-gensymbols","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10629,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-maintscript-helper","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":19031,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-mergechangelogs","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":8590,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-name","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":6789,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-parsechangelog","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4435,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-query","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":149912,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-scanpackages","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":8425,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-scansources","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":9167,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-shlibdeps","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31360,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-source","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":23300,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-split","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":121176,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-statoverride","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":71936,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-trigger","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":67848,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-vendor","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3262,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"du","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":100568,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"dumpkeys","link_to":"/bin/dumpkeys","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":13,"date":"2019-08-05 12:23:31.000000000 -0700","epoch":1565033011,"epoch_utc":null},{"filename":"dwp","link_to":"x86_64-linux-gnu-dwp","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":20,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"eatmydata","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2806,"date":"2018-03-09 10:37:20.000000000 -0800","epoch":1520620640,"epoch_utc":null},{"filename":"ec2metadata","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":7297,"date":"2018-04-13 06:07:55.000000000 -0700","epoch":1523624875,"epoch_utc":null},{"filename":"edit","link_to":"run-mailcap","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":11,"date":"2016-07-15 05:06:12.000000000 -0700","epoch":1468584372,"epoch_utc":null},{"filename":"editor","link_to":"/etc/alternatives/editor","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2019-08-05 12:23:26.000000000 -0700","epoch":1565033006,"epoch_utc":null},{"filename":"eject","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31424,"date":"2017-03-27 21:22:15.000000000 -0700","epoch":1490674935,"epoch_utc":null},{"filename":"elfedit","link_to":"x86_64-linux-gnu-elfedit","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"enc2xs","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":42153,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"encguess","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3066,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"env","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"envsubst","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":34896,"date":"2019-02-21 06:40:49.000000000 -0800","epoch":1550760049,"epoch_utc":null},{"filename":"eqn","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":197824,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"ex","link_to":"/etc/alternatives/ex","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":20,"date":"2019-08-05 12:23:26.000000000 -0700","epoch":1565033006,"epoch_utc":null},{"filename":"expand","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39128,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"expiry","flags":"-rwxr-sr-x","links":1,"owner":"root","group":"shadow","size":22808,"date":"2019-03-22 12:05:38.000000000 -0700","epoch":1553281538,"epoch_utc":null},{"filename":"expr","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47288,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"factor","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":75992,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"faillog","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18728,"date":"2019-03-22 12:05:38.000000000 -0700","epoch":1553281538,"epoch_utc":null},{"filename":"faked-sysv","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26736,"date":"2018-01-08 08:05:31.000000000 -0800","epoch":1515427531,"epoch_utc":null},{"filename":"faked-tcp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30824,"date":"2018-01-08 08:05:31.000000000 -0800","epoch":1515427531,"epoch_utc":null},{"filename":"fakeroot","link_to":"/etc/alternatives/fakeroot","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":26,"date":"2019-10-17 17:14:22.698358852 -0700","epoch":1571357662,"epoch_utc":null},{"filename":"fakeroot-sysv","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3851,"date":"2018-01-08 08:05:31.000000000 -0800","epoch":1515427531,"epoch_utc":null},{"filename":"fakeroot-tcp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3846,"date":"2018-01-08 08:05:31.000000000 -0800","epoch":1515427531,"epoch_utc":null},{"filename":"fallocate","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26704,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"file","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22792,"date":"2020-05-12 06:31:09.000000000 -0700","epoch":1589290269,"epoch_utc":null},{"filename":"find","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":238080,"date":"2017-11-05 09:16:48.000000000 -0800","epoch":1509902208,"epoch_utc":null},{"filename":"flock","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30880,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"fmt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43192,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"fold","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"free","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18512,"date":"2019-08-09 08:37:27.000000000 -0700","epoch":1565365047,"epoch_utc":null},{"filename":"from","link_to":"/etc/alternatives/from","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"2019-08-05 12:24:25.000000000 -0700","epoch":1565033065,"epoch_utc":null},{"filename":"ftp","link_to":"/etc/alternatives/ftp","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"2019-08-05 12:24:23.000000000 -0700","epoch":1565033063,"epoch_utc":null},{"filename":"g++","link_to":"g++-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"g++-7","link_to":"x86_64-linux-gnu-g++-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"gatttool","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":277248,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"gawk","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":658072,"date":"2018-02-10 21:02:41.000000000 -0800","epoch":1518325361,"epoch_utc":null},{"filename":"gcc","link_to":"gcc-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"gcc-7","link_to":"x86_64-linux-gnu-gcc-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"gcc-ar","link_to":"gcc-ar-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":8,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"gcc-ar-7","link_to":"x86_64-linux-gnu-gcc-ar-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":25,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"gcc-nm","link_to":"gcc-nm-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":8,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"gcc-nm-7","link_to":"x86_64-linux-gnu-gcc-nm-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":25,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"gcc-ranlib","link_to":"gcc-ranlib-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":12,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"gcc-ranlib-7","link_to":"x86_64-linux-gnu-gcc-ranlib-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":29,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"gcov","link_to":"gcov-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"gcov-7","link_to":"x86_64-linux-gnu-gcov-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":23,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"gcov-dump","link_to":"gcov-dump-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":11,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"gcov-dump-7","link_to":"x86_64-linux-gnu-gcov-dump-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":28,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"gcov-tool","link_to":"gcov-tool-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":11,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"gcov-tool-7","link_to":"x86_64-linux-gnu-gcov-tool-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":28,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"gencat","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22752,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"geqn","link_to":"eqn","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"getconf","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30856,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"getent","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31224,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"getfacl","link_to":"/bin/getfacl","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":12,"date":"2019-08-05 12:24:25.000000000 -0700","epoch":1565033065,"epoch_utc":null},{"filename":"getkeycodes","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"getopt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14408,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"gettext","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":34896,"date":"2019-02-21 06:40:49.000000000 -0800","epoch":1550760049,"epoch_utc":null},{"filename":"gettext.sh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4629,"date":"2019-02-21 06:40:49.000000000 -0800","epoch":1550760049,"epoch_utc":null},{"filename":"ginstall-info","link_to":"install-info","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":12,"date":"2018-02-05 06:48:18.000000000 -0800","epoch":1517842098,"epoch_utc":null},{"filename":"git","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2351792,"date":"2021-03-04 05:02:54.000000000 -0800","epoch":1614862974,"epoch_utc":null},{"filename":"git-receive-pack","link_to":"git","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"2021-03-04 05:02:54.000000000 -0800","epoch":1614862974,"epoch_utc":null},{"filename":"git-shell","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1309008,"date":"2021-03-04 05:02:54.000000000 -0800","epoch":1614862974,"epoch_utc":null},{"filename":"git-upload-archive","link_to":"git","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"2021-03-04 05:02:54.000000000 -0800","epoch":1614862974,"epoch_utc":null},{"filename":"git-upload-pack","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1317120,"date":"2021-03-04 05:02:54.000000000 -0800","epoch":1614862974,"epoch_utc":null},{"filename":"gold","link_to":"x86_64-linux-gnu-gold","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"gpasswd","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"root","size":75824,"date":"2019-03-22 12:05:38.000000000 -0700","epoch":1553281538,"epoch_utc":null},{"filename":"gpg","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1021512,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"gpg-agent","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":402120,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"gpgconf","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":170312,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"gpg-connect-agent","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":158568,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"gpgparsemail","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26696,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"gpgsm","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":502880,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"gpgsplit","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":80336,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"gpgv","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":437264,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"gpg-wks-server","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":191504,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"gpg-zip","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3443,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"gpic","link_to":"pic","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"gprof","link_to":"x86_64-linux-gnu-gprof","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"groff","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":107840,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"grog","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2780,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"grops","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":169696,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"grotty","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":124256,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"groups","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"growpart","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":21883,"date":"2018-04-13 06:07:55.000000000 -0700","epoch":1523624875,"epoch_utc":null},{"filename":"grub-editenv","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":245688,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-file","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":675624,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-fstest","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":808600,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-glue-efi","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":241432,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-kbdcomp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1681,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-menulst2cfg","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":221224,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-mkfont","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":270680,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-mkimage","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":336728,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-mklayout","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":245848,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-mknetdir","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":378280,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-mkpasswd-pbkdf2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":249976,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-mkrelpath","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":241144,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-mkrescue","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":841960,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-mkstandalone","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":460536,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-mount","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":622808,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-ntldr-img","link_to":"../lib/grub/i386-pc/grub-ntldr-img","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":34,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-render-label","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":692392,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-script-check","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":265848,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-syslinux2cfg","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":639672,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"gtbl","link_to":"tbl","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"h2ph","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":29224,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"h2xs","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":60866,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"hciattach","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":137144,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"hcitool","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":147000,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"hd","link_to":"hexdump","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":7,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"head","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43224,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"helpztags","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2514,"date":"2018-02-02 12:37:32.000000000 -0800","epoch":1517603852,"epoch_utc":null},{"filename":"hex2hcd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14408,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"hexdump","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26728,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"host","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":129704,"date":"2021-02-15 05:08:25.000000000 -0800","epoch":1613394505,"epoch_utc":null},{"filename":"hostid","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30904,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"hostnamectl","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18504,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"htop","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":185016,"date":"2018-02-17 10:27:46.000000000 -0800","epoch":1518892066,"epoch_utc":null},{"filename":"hwe-support-status","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10830,"date":"2020-06-03 11:41:50.000000000 -0700","epoch":1591209710,"epoch_utc":null},{"filename":"i386","link_to":"setarch","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":7,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"iconv","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":63744,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"id","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43224,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"igawk","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3189,"date":"2018-02-10 21:02:41.000000000 -0800","epoch":1518325361,"epoch_utc":null},{"filename":"info","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":251616,"date":"2018-02-05 06:48:18.000000000 -0800","epoch":1517842098,"epoch_utc":null},{"filename":"infobrowser","link_to":"/etc/alternatives/infobrowser","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":29,"date":"2019-08-05 12:24:14.000000000 -0700","epoch":1565033054,"epoch_utc":null},{"filename":"infocmp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":59464,"date":"2018-05-23 01:08:27.000000000 -0700","epoch":1527062907,"epoch_utc":null},{"filename":"infotocap","link_to":"tic","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"2018-05-23 01:08:27.000000000 -0700","epoch":1527062907,"epoch_utc":null},{"filename":"install","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":145664,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"install-info","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":44128,"date":"2018-02-05 06:48:18.000000000 -0800","epoch":1517842098,"epoch_utc":null},{"filename":"instmodsh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4370,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"ionice","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26704,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"iostat","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":55440,"date":"2020-01-17 03:24:09.000000000 -0800","epoch":1579260249,"epoch_utc":null},{"filename":"ipcmk","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26768,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"ipcrm","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26704,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"ipcs","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":51280,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"iptables-xml","link_to":"/sbin/xtables-multi","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":19,"date":"2017-11-11 18:52:05.000000000 -0800","epoch":1510455125,"epoch_utc":null},{"filename":"ischroot","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10280,"date":"2017-12-30 10:15:02.000000000 -0800","epoch":1514657702,"epoch_utc":null},{"filename":"iscsiadm","link_to":"/sbin/iscsiadm","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":14,"date":"2020-05-10 18:27:31.000000000 -0700","epoch":1589160451,"epoch_utc":null},{"filename":"join","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47320,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"jq","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22520,"date":"2017-01-29 20:41:39.000000000 -0800","epoch":1485751299,"epoch_utc":null},{"filename":"jsondiff","link_to":"/etc/alternatives/jsondiff","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":26,"date":"2019-08-05 12:24:22.000000000 -0700","epoch":1565033062,"epoch_utc":null},{"filename":"jsonpatch","link_to":"/etc/alternatives/jsonpatch","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":27,"date":"2019-08-05 12:24:22.000000000 -0700","epoch":1565033062,"epoch_utc":null},{"filename":"jsonpointer","link_to":"/etc/alternatives/jsonpointer","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":29,"date":"2019-08-05 12:24:16.000000000 -0700","epoch":1565033056,"epoch_utc":null},{"filename":"json_pp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3959,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"jsonschema","link_to":"/etc/alternatives/jsonschema","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":28,"date":"2019-08-05 12:24:20.000000000 -0700","epoch":1565033060,"epoch_utc":null},{"filename":"kbdinfo","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14408,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"kbxutil","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":162496,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"keep-one-running","link_to":"run-one","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":7,"date":"2014-01-15 14:40:51.000000000 -0800","epoch":1389825651,"epoch_utc":null},{"filename":"kernel-install","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4508,"date":"2018-01-28 07:58:17.000000000 -0800","epoch":1517155097,"epoch_utc":null},{"filename":"keyring","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":385,"date":"2018-01-09 04:15:19.000000000 -0800","epoch":1515500119,"epoch_utc":null},{"filename":"killall","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":27768,"date":"2018-12-11 07:46:04.000000000 -0800","epoch":1544543164,"epoch_utc":null},{"filename":"l2ping","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":98152,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"l2test","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":114792,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"landscape-sysinfo","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":624,"date":"2020-02-20 09:35:22.000000000 -0800","epoch":1582220122,"epoch_utc":null},{"filename":"last","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43088,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"lastb","link_to":"last","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"lastlog","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18504,"date":"2019-03-22 12:05:38.000000000 -0700","epoch":1553281538,"epoch_utc":null},{"filename":"lcf","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":7786,"date":"2018-02-25 16:58:23.000000000 -0800","epoch":1519606703,"epoch_utc":null},{"filename":"ld","link_to":"x86_64-linux-gnu-ld","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":19,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"ld.bfd","link_to":"x86_64-linux-gnu-ld.bfd","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":23,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"ldd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":5422,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"ld.gold","link_to":"x86_64-linux-gnu-ld.gold","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"ld-musl-config","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":433,"date":"2017-01-21 11:21:39.000000000 -0800","epoch":1485026499,"epoch_utc":null},{"filename":"less","link_to":"/bin/less","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":9,"date":"2019-08-05 12:23:23.000000000 -0700","epoch":1565033003,"epoch_utc":null},{"filename":"lessecho","link_to":"/bin/lessecho","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":13,"date":"2019-08-05 12:23:23.000000000 -0700","epoch":1565033003,"epoch_utc":null},{"filename":"lessfile","link_to":"/bin/lessfile","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":13,"date":"2019-08-05 12:23:23.000000000 -0700","epoch":1565033003,"epoch_utc":null},{"filename":"lesskey","link_to":"/bin/lesskey","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":12,"date":"2019-08-05 12:23:23.000000000 -0700","epoch":1565033003,"epoch_utc":null},{"filename":"lesspipe","link_to":"/bin/lesspipe","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":13,"date":"2019-08-05 12:23:23.000000000 -0700","epoch":1565033003,"epoch_utc":null},{"filename":"lexgrog","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":92744,"date":"2018-08-04 12:16:12.000000000 -0700","epoch":1533410172,"epoch_utc":null},{"filename":"lft","link_to":"/etc/alternatives/lft","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"2020-07-27 14:56:20.488037770 -0700","epoch":1595886980,"epoch_utc":null},{"filename":"lft.db","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2493,"date":"2016-08-29 08:45:51.000000000 -0700","epoch":1472485551,"epoch_utc":null},{"filename":"libnetcfg","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":15775,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"link","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30904,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"linux32","link_to":"setarch","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":7,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"linux64","link_to":"setarch","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":7,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"linux-boot-prober","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1577,"date":"2017-01-21 07:43:27.000000000 -0800","epoch":1485013407,"epoch_utc":null},{"filename":"linux-check-removal","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4090,"date":"2016-06-20 19:48:57.000000000 -0700","epoch":1466477337,"epoch_utc":null},{"filename":"linux-update-symlinks","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":6320,"date":"2016-06-04 18:13:24.000000000 -0700","epoch":1465089204,"epoch_utc":null},{"filename":"linux-version","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2696,"date":"2016-09-16 23:12:36.000000000 -0700","epoch":1474092756,"epoch_utc":null},{"filename":"lnstat","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22888,"date":"2020-07-15 08:16:31.000000000 -0700","epoch":1594826191,"epoch_utc":null},{"filename":"loadkeys","link_to":"/bin/loadkeys","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":13,"date":"2019-08-05 12:23:31.000000000 -0700","epoch":1565033011,"epoch_utc":null},{"filename":"loadunimap","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26760,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"locale","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":50592,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"locale-check","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10240,"date":"2020-08-05 01:14:19.000000000 -0700","epoch":1596615259,"epoch_utc":null},{"filename":"localectl","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22600,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"localedef","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":338744,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"locate","link_to":"/etc/alternatives/locate","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2019-08-05 12:24:17.000000000 -0700","epoch":1565033057,"epoch_utc":null},{"filename":"logger","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47792,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"logname","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30904,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"look","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10472,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"lorder","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2885,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"lsattr","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10240,"date":"2020-01-22 06:40:45.000000000 -0800","epoch":1579704045,"epoch_utc":null},{"filename":"lsb_release","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3638,"date":"2017-08-07 14:55:07.000000000 -0700","epoch":1502142907,"epoch_utc":null},{"filename":"lscpu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":71760,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"lshw","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":687056,"date":"2018-07-10 07:25:42.000000000 -0700","epoch":1531232742,"epoch_utc":null},{"filename":"lsinitramfs","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":625,"date":"2019-10-07 03:53:35.000000000 -0700","epoch":1570445615,"epoch_utc":null},{"filename":"lsipc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":71760,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"lslocks","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35232,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"lslogins","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":63568,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"lsmem","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43088,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"lsns","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":38992,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"lsof","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":163224,"date":"2015-10-28 09:57:56.000000000 -0700","epoch":1446051476,"epoch_utc":null},{"filename":"lspci","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":81584,"date":"2019-02-10 10:25:12.000000000 -0800","epoch":1549823112,"epoch_utc":null},{"filename":"lspgpot","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1081,"date":"2017-08-28 03:22:54.000000000 -0700","epoch":1503915774,"epoch_utc":null},{"filename":"lsusb","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":117176,"date":"2017-04-21 13:59:17.000000000 -0700","epoch":1492808357,"epoch_utc":null},{"filename":"ltrace","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":333016,"date":"2016-10-12 23:20:41.000000000 -0700","epoch":1476339641,"epoch_utc":null},{"filename":"lxc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10779792,"date":"2018-11-23 10:58:51.000000000 -0800","epoch":1542999531,"epoch_utc":null},{"filename":"lxcfs","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18504,"date":"2020-03-31 09:20:51.000000000 -0700","epoch":1585671651,"epoch_utc":null},{"filename":"lxd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":105,"date":"2018-11-23 10:58:51.000000000 -0800","epoch":1542999531,"epoch_utc":null},{"filename":"lzcat","link_to":"/etc/alternatives/lzcat","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":23,"date":"2019-08-05 12:23:24.000000000 -0700","epoch":1565033004,"epoch_utc":null},{"filename":"lzcmp","link_to":"/etc/alternatives/lzcmp","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":23,"date":"2019-08-05 12:23:24.000000000 -0700","epoch":1565033004,"epoch_utc":null},{"filename":"lzdiff","link_to":"/etc/alternatives/lzdiff","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2019-08-05 12:23:24.000000000 -0700","epoch":1565033004,"epoch_utc":null},{"filename":"lzegrep","link_to":"/etc/alternatives/lzegrep","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":25,"date":"2019-08-05 12:23:24.000000000 -0700","epoch":1565033004,"epoch_utc":null},{"filename":"lzfgrep","link_to":"/etc/alternatives/lzfgrep","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":25,"date":"2019-08-05 12:23:24.000000000 -0700","epoch":1565033004,"epoch_utc":null},{"filename":"lzgrep","link_to":"/etc/alternatives/lzgrep","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2019-08-05 12:23:24.000000000 -0700","epoch":1565033004,"epoch_utc":null},{"filename":"lzless","link_to":"/etc/alternatives/lzless","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2019-08-05 12:23:24.000000000 -0700","epoch":1565033004,"epoch_utc":null},{"filename":"lzma","link_to":"/etc/alternatives/lzma","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"2019-08-05 12:23:24.000000000 -0700","epoch":1565033004,"epoch_utc":null},{"filename":"lzmainfo","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10384,"date":"2017-06-28 09:39:19.000000000 -0700","epoch":1498667959,"epoch_utc":null},{"filename":"lzmore","link_to":"/etc/alternatives/lzmore","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2019-08-05 12:23:24.000000000 -0700","epoch":1565033004,"epoch_utc":null},{"filename":"make","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":222792,"date":"2018-04-17 05:12:28.000000000 -0700","epoch":1523967148,"epoch_utc":null},{"filename":"make-first-existing-target","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4905,"date":"2018-04-17 05:12:28.000000000 -0700","epoch":1523967148,"epoch_utc":null},{"filename":"man","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":107008,"date":"2018-08-04 12:16:12.000000000 -0700","epoch":1533410172,"epoch_utc":null},{"filename":"mandb","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":129760,"date":"2018-08-04 12:16:12.000000000 -0700","epoch":1533410172,"epoch_utc":null},{"filename":"manifest","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1942,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"manpath","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31200,"date":"2018-08-04 12:16:12.000000000 -0700","epoch":1533410172,"epoch_utc":null},{"filename":"mapscrn","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22664,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"mawk","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":125416,"date":"2018-04-03 05:34:18.000000000 -0700","epoch":1522758858,"epoch_utc":null},{"filename":"mcookie","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30864,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"md5sum","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43224,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"md5sum.textutils","link_to":"md5sum","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"mdig","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43136,"date":"2021-02-15 05:08:25.000000000 -0800","epoch":1613394505,"epoch_utc":null},{"filename":"mesg","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"migrate-pubring-from-classic-gpg","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2194,"date":"2017-11-30 15:42:42.000000000 -0800","epoch":1512085362,"epoch_utc":null},{"filename":"miniterm","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35098,"date":"2018-04-09 04:57:25.000000000 -0700","epoch":1523275045,"epoch_utc":null},{"filename":"mkfifo","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":63672,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"mk_modmap","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":16163,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"mksquashfs","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":189432,"date":"2018-07-05 12:49:18.000000000 -0700","epoch":1530820158,"epoch_utc":null},{"filename":"mlocate","flags":"-rwxr-sr-x","links":1,"owner":"root","group":"mlocate","size":43088,"date":"2018-03-01 08:07:16.000000000 -0800","epoch":1519920436,"epoch_utc":null},{"filename":"mpstat","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":51360,"date":"2020-01-17 03:24:09.000000000 -0800","epoch":1579260249,"epoch_utc":null},{"filename":"mtr","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":73664,"date":"2017-11-01 19:48:40.000000000 -0700","epoch":1509590920,"epoch_utc":null},{"filename":"mtrace","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":6496,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"mtr-packet","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26616,"date":"2017-11-01 19:48:40.000000000 -0700","epoch":1509590920,"epoch_utc":null},{"filename":"musl-gcc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":173,"date":"2018-02-25 09:54:30.000000000 -0800","epoch":1519581270,"epoch_utc":null},{"filename":"musl-ldd","link_to":"/lib/x86_64-linux-musl/libc.so","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":30,"date":"2018-02-25 09:54:30.000000000 -0800","epoch":1519581270,"epoch_utc":null},{"filename":"namei","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26704,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"nawk","link_to":"/etc/alternatives/nawk","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"2019-08-05 12:22:59.000000000 -0700","epoch":1565032979,"epoch_utc":null},{"filename":"ncal","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":29480,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"ncat","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":204760,"date":"2018-04-15 18:11:39.000000000 -0700","epoch":1523841099,"epoch_utc":null},{"filename":"neqn","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":908,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"netkit-ftp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":101064,"date":"2016-12-06 07:23:57.000000000 -0800","epoch":1481037837,"epoch_utc":null},{"filename":"networkd-dispatcher","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18203,"date":"2018-10-15 05:12:24.000000000 -0700","epoch":1539605544,"epoch_utc":null},{"filename":"newgidmap","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"root","size":37136,"date":"2019-03-22 12:05:38.000000000 -0700","epoch":1553281538,"epoch_utc":null},{"filename":"newgrp","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"root","size":40344,"date":"2019-03-22 12:05:38.000000000 -0700","epoch":1553281538,"epoch_utc":null},{"filename":"newuidmap","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"root","size":37136,"date":"2019-03-22 12:05:38.000000000 -0700","epoch":1553281538,"epoch_utc":null},{"filename":"NF","link_to":"col1","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"ngettext","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":34896,"date":"2019-02-21 06:40:49.000000000 -0800","epoch":1550760049,"epoch_utc":null},{"filename":"nice","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"nl","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43288,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"nm","link_to":"x86_64-linux-gnu-nm","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":19,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"nmap","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2961432,"date":"2018-04-15 18:11:39.000000000 -0700","epoch":1523841099,"epoch_utc":null},{"filename":"nohup","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"nping","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":530776,"date":"2018-04-15 18:11:39.000000000 -0700","epoch":1523841099,"epoch_utc":null},{"filename":"nproc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"nroff","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3323,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"nsenter","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31008,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"nslookup","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":133640,"date":"2021-02-15 05:08:25.000000000 -0800","epoch":1613394505,"epoch_utc":null},{"filename":"nstat","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26696,"date":"2020-07-15 08:16:31.000000000 -0700","epoch":1594826191,"epoch_utc":null},{"filename":"nsupdate","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":67608,"date":"2021-02-15 05:08:25.000000000 -0800","epoch":1613394505,"epoch_utc":null},{"filename":"ntfsdecrypt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47224,"date":"2019-03-21 14:33:01.000000000 -0700","epoch":1553203981,"epoch_utc":null},{"filename":"ntpdc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":145544,"date":"2020-08-17 18:58:51.000000000 -0700","epoch":1597715931,"epoch_utc":null},{"filename":"ntpq","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":188584,"date":"2020-08-17 18:58:51.000000000 -0700","epoch":1597715931,"epoch_utc":null},{"filename":"ntpsweep","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":7980,"date":"2020-08-17 18:58:51.000000000 -0700","epoch":1597715931,"epoch_utc":null},{"filename":"ntptrace","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3560,"date":"2020-08-17 18:58:51.000000000 -0700","epoch":1597715931,"epoch_utc":null},{"filename":"numfmt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":63736,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"obexctl","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":149640,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"objcopy","link_to":"x86_64-linux-gnu-objcopy","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"objdump","link_to":"x86_64-linux-gnu-objdump","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"od","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":67800,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"on_ac_power","link_to":"/sbin/on_ac_power","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":17,"date":"2018-03-20 06:19:42.000000000 -0700","epoch":1521551982,"epoch_utc":null},{"filename":"openssl","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":723944,"date":"2021-03-22 04:42:42.000000000 -0700","epoch":1616413362,"epoch_utc":null},{"filename":"os-prober","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4551,"date":"2017-01-31 12:30:39.000000000 -0800","epoch":1485894639,"epoch_utc":null},{"filename":"pager","link_to":"/etc/alternatives/pager","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":23,"date":"2019-08-05 12:23:04.000000000 -0700","epoch":1565032984,"epoch_utc":null},{"filename":"partx","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":88144,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"passwd","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"root","size":59640,"date":"2019-03-22 12:05:38.000000000 -0700","epoch":1553281538,"epoch_utc":null},{"filename":"paste","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35032,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"pastebinit","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":16642,"date":"2016-02-29 21:52:32.000000000 -0800","epoch":1456811552,"epoch_utc":null},{"filename":"patch","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":182648,"date":"2019-07-23 05:12:54.000000000 -0700","epoch":1563883974,"epoch_utc":null},{"filename":"pathchk","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"pbget","link_to":"pbput","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"2018-04-15 08:38:02.000000000 -0700","epoch":1523806682,"epoch_utc":null},{"filename":"pbput","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2569,"date":"2016-02-29 08:14:33.000000000 -0800","epoch":1456762473,"epoch_utc":null},{"filename":"pbputs","link_to":"pbput","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"2018-04-15 08:38:02.000000000 -0700","epoch":1523806682,"epoch_utc":null},{"filename":"pcimodules","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14472,"date":"2019-02-10 10:25:12.000000000 -0800","epoch":1549823112,"epoch_utc":null},{"filename":"pdb3","link_to":"pdb3.6","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"2018-10-25 04:11:00.000000000 -0700","epoch":1540465860,"epoch_utc":null},{"filename":"pdb3.6","link_to":"../lib/python3.6/pdb.py","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":23,"date":"2021-01-26 07:33:00.000000000 -0800","epoch":1611675180,"epoch_utc":null},{"filename":"peekfd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14328,"date":"2018-12-11 07:46:04.000000000 -0800","epoch":1544543164,"epoch_utc":null},{"filename":"perl","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"root","size":2097720,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"perl5.26.1","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"root","size":2097720,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"perl5.26-x86_64-linux-gnu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10216,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"perlbug","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"root","size":45853,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"perldoc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":125,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"perlivp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10864,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"perlthanks","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"root","size":45853,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"pftp","link_to":"/etc/alternatives/pftp","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"2019-08-05 12:24:23.000000000 -0700","epoch":1565033063,"epoch_utc":null},{"filename":"pgrep","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26712,"date":"2019-08-09 08:37:27.000000000 -0700","epoch":1565365047,"epoch_utc":null},{"filename":"pic","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":208928,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"pico","link_to":"/etc/alternatives/pico","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"2019-08-05 12:24:20.000000000 -0700","epoch":1565033060,"epoch_utc":null},{"filename":"piconv","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":8357,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"pidstat","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":63648,"date":"2020-01-17 03:24:09.000000000 -0800","epoch":1579260249,"epoch_utc":null},{"filename":"pigz","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"root","size":116944,"date":"2017-12-27 11:41:06.000000000 -0800","epoch":1514403666,"epoch_utc":null},{"filename":"pinentry","link_to":"/etc/alternatives/pinentry","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":26,"date":"2019-08-05 12:24:35.000000000 -0700","epoch":1565033075,"epoch_utc":null},{"filename":"pinentry-curses","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":63992,"date":"2018-02-05 17:18:30.000000000 -0800","epoch":1517879910,"epoch_utc":null},{"filename":"pinky","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39128,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"pip3","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":293,"date":"2020-10-22 07:40:50.000000000 -0700","epoch":1603377650,"epoch_utc":null},{"filename":"pkaction","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14328,"date":"2019-03-27 06:57:02.000000000 -0700","epoch":1553695022,"epoch_utc":null},{"filename":"pkcheck","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18504,"date":"2019-03-27 06:57:02.000000000 -0700","epoch":1553695022,"epoch_utc":null},{"filename":"pkexec","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"root","size":22520,"date":"2019-03-27 06:57:02.000000000 -0700","epoch":1553695022,"epoch_utc":null},{"filename":"pkg-config","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"root","size":51296,"date":"2017-04-21 13:54:08.000000000 -0700","epoch":1492808048,"epoch_utc":null},{"filename":"pkill","link_to":"pgrep","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"2019-08-09 08:37:27.000000000 -0700","epoch":1565365047,"epoch_utc":null},{"filename":"pkttyagent","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14328,"date":"2019-03-27 06:57:02.000000000 -0700","epoch":1553695022,"epoch_utc":null},{"filename":"pl2pm","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4533,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"pldd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18656,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"pmap","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30808,"date":"2019-08-09 08:37:27.000000000 -0700","epoch":1565365047,"epoch_utc":null},{"filename":"pod2html","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4134,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"pod2man","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":15079,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"pod2text","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10979,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"pod2usage","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3948,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"podchecker","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3658,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"podselect","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2527,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"pollinate","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":8744,"date":"2018-05-29 13:13:20.000000000 -0700","epoch":1527624800,"epoch_utc":null},{"filename":"pr","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":71960,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"preconv","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47304,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"print","link_to":"run-mailcap","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":11,"date":"2016-07-15 05:06:12.000000000 -0700","epoch":1468584372,"epoch_utc":null},{"filename":"printenv","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30904,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"printerbanner","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22528,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"printf","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":51384,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"prlimit","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35424,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"prove","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":13588,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"prtstat","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18504,"date":"2018-12-11 07:46:04.000000000 -0800","epoch":1544543164,"epoch_utc":null},{"filename":"psfaddtable","link_to":"psfxtable","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":9,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"psfgettable","link_to":"psfxtable","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":9,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"psfstriptable","link_to":"psfxtable","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":9,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"psfxtable","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18424,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"pslog","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10232,"date":"2018-12-11 07:46:04.000000000 -0800","epoch":1544543164,"epoch_utc":null},{"filename":"pstree","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":27592,"date":"2018-12-11 07:46:04.000000000 -0800","epoch":1544543164,"epoch_utc":null},{"filename":"pstree.x11","link_to":"pstree","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"2018-12-11 07:46:04.000000000 -0800","epoch":1544543164,"epoch_utc":null},{"filename":"ptar","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3549,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"ptardiff","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2628,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"ptargrep","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4392,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"ptx","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":71928,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"purge-old-kernels","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1149,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"pwdx","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"2019-08-09 08:37:27.000000000 -0700","epoch":1565365047,"epoch_utc":null},{"filename":"py3clean","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":7812,"date":"2018-10-25 04:11:00.000000000 -0700","epoch":1540465860,"epoch_utc":null},{"filename":"py3compile","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":12119,"date":"2018-10-25 04:11:00.000000000 -0700","epoch":1540465860,"epoch_utc":null},{"filename":"py3versions","link_to":"../share/python3/py3versions.py","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":31,"date":"2018-10-25 04:11:00.000000000 -0700","epoch":1540465860,"epoch_utc":null},{"filename":"pybuild","link_to":"../share/dh-python/pybuild","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":26,"date":"2018-03-26 12:42:23.000000000 -0700","epoch":1522093343,"epoch_utc":null},{"filename":"pydoc3","link_to":"pydoc3.6","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":8,"date":"2018-10-25 04:11:00.000000000 -0700","epoch":1540465860,"epoch_utc":null},{"filename":"pydoc3.6","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":79,"date":"2021-01-26 07:33:00.000000000 -0800","epoch":1611675180,"epoch_utc":null},{"filename":"pygettext3","link_to":"pygettext3.6","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":12,"date":"2018-10-25 04:11:00.000000000 -0700","epoch":1540465860,"epoch_utc":null},{"filename":"pygettext3.6","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":21547,"date":"2021-01-26 07:33:00.000000000 -0800","epoch":1611675180,"epoch_utc":null},{"filename":"pyhtmlizer3","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":392,"date":"2020-03-16 10:24:46.000000000 -0700","epoch":1584379486,"epoch_utc":null},{"filename":"pyjwt3","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":372,"date":"2017-09-25 12:23:43.000000000 -0700","epoch":1506367423,"epoch_utc":null},{"filename":"python3","link_to":"python3.6","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":9,"date":"2018-10-25 04:11:00.000000000 -0700","epoch":1540465860,"epoch_utc":null},{"filename":"python3.6","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"root","size":4526456,"date":"2021-01-26 07:33:00.000000000 -0800","epoch":1611675180,"epoch_utc":null},{"filename":"python3.6-config","link_to":"x86_64-linux-gnu-python3.6-config","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":33,"date":"2021-01-26 07:33:00.000000000 -0800","epoch":1611675180,"epoch_utc":null},{"filename":"python3.6m","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"root","size":4526456,"date":"2021-01-26 07:33:00.000000000 -0800","epoch":1611675180,"epoch_utc":null},{"filename":"python3.6m-config","link_to":"x86_64-linux-gnu-python3.6m-config","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":34,"date":"2021-01-26 07:33:00.000000000 -0800","epoch":1611675180,"epoch_utc":null},{"filename":"python3-config","link_to":"python3.6-config","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":16,"date":"2018-10-25 04:11:00.000000000 -0700","epoch":1540465860,"epoch_utc":null},{"filename":"python3-jsondiff","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1018,"date":"2017-10-28 13:10:15.000000000 -0700","epoch":1509221415,"epoch_utc":null},{"filename":"python3-jsonpatch","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3661,"date":"2017-10-28 13:10:15.000000000 -0700","epoch":1509221415,"epoch_utc":null},{"filename":"python3-jsonpointer","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1342,"date":"2016-05-01 16:14:11.000000000 -0700","epoch":1462144451,"epoch_utc":null},{"filename":"python3-jsonschema","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":398,"date":"2017-11-15 11:43:29.000000000 -0800","epoch":1510775009,"epoch_utc":null},{"filename":"python3m","link_to":"python3.6m","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":10,"date":"2018-10-25 04:11:00.000000000 -0700","epoch":1540465860,"epoch_utc":null},{"filename":"python3m-config","link_to":"python3.6m-config","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":17,"date":"2018-10-25 04:11:00.000000000 -0700","epoch":1540465860,"epoch_utc":null},{"filename":"ranlib","link_to":"x86_64-linux-gnu-ranlib","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":23,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"rcp","link_to":"/etc/alternatives/rcp","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"2019-08-05 12:24:40.000000000 -0700","epoch":1565033080,"epoch_utc":null},{"filename":"rctest","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":144840,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"rdma","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26696,"date":"2020-07-15 08:16:31.000000000 -0700","epoch":1594826191,"epoch_utc":null},{"filename":"readelf","link_to":"x86_64-linux-gnu-readelf","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"realpath","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47320,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"rename.ul","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14408,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"renice","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14408,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"reset","link_to":"tset","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"2018-05-23 01:08:27.000000000 -0700","epoch":1527062907,"epoch_utc":null},{"filename":"resizecons","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18568,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"resizepart","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":38992,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"rev","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"rfcomm","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":107032,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"rgrep","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30,"date":"2017-07-11 06:19:59.000000000 -0700","epoch":1499779199,"epoch_utc":null},{"filename":"rjc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":87229416,"date":"2020-04-14 12:53:49.741997779 -0700","epoch":1586894029,"epoch_utc":null},{"filename":"rlogin","link_to":"/etc/alternatives/rlogin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2019-08-05 12:24:40.000000000 -0700","epoch":1565033080,"epoch_utc":null},{"filename":"routef","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":208,"date":"2020-07-15 08:16:31.000000000 -0700","epoch":1594826191,"epoch_utc":null},{"filename":"routel","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1656,"date":"2020-07-15 08:16:31.000000000 -0700","epoch":1594826191,"epoch_utc":null},{"filename":"rpcgen","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":100896,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"rsh","link_to":"/etc/alternatives/rsh","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"2019-08-05 12:24:40.000000000 -0700","epoch":1565033080,"epoch_utc":null},{"filename":"rsync","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":500024,"date":"2020-02-18 13:03:13.000000000 -0800","epoch":1582059793,"epoch_utc":null},{"filename":"rtstat","link_to":"lnstat","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"2020-07-15 08:16:31.000000000 -0700","epoch":1594826191,"epoch_utc":null},{"filename":"runcon","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"run-mailcap","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18161,"date":"2016-07-15 05:06:12.000000000 -0700","epoch":1468584372,"epoch_utc":null},{"filename":"run-one","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3592,"date":"2014-01-15 14:24:04.000000000 -0800","epoch":1389824644,"epoch_utc":null},{"filename":"run-one-constantly","link_to":"run-one","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":7,"date":"2014-01-15 14:40:51.000000000 -0800","epoch":1389825651,"epoch_utc":null},{"filename":"run-one-until-failure","link_to":"run-one","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":7,"date":"2014-01-15 14:40:51.000000000 -0800","epoch":1389825651,"epoch_utc":null},{"filename":"run-one-until-success","link_to":"run-one","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":7,"date":"2014-01-15 14:40:51.000000000 -0800","epoch":1389825651,"epoch_utc":null},{"filename":"run-this-one","link_to":"run-one","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":7,"date":"2014-01-15 14:40:51.000000000 -0800","epoch":1389825651,"epoch_utc":null},{"filename":"rview","link_to":"/etc/alternatives/rview","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":23,"date":"2019-08-05 12:23:26.000000000 -0700","epoch":1565033006,"epoch_utc":null},{"filename":"rvim","link_to":"/etc/alternatives/rvim","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"2019-08-05 12:24:27.000000000 -0700","epoch":1565033067,"epoch_utc":null},{"filename":"sadf","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":313824,"date":"2020-01-17 03:24:09.000000000 -0800","epoch":1579260249,"epoch_utc":null},{"filename":"sar","link_to":"/etc/alternatives/sar","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"2019-10-30 14:02:28.138438060 -0700","epoch":1572469348,"epoch_utc":null},{"filename":"sar.sysstat","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":120720,"date":"2020-01-17 03:24:09.000000000 -0800","epoch":1579260249,"epoch_utc":null},{"filename":"savelog","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10469,"date":"2017-12-30 10:15:02.000000000 -0800","epoch":1514657702,"epoch_utc":null},{"filename":"scp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":100496,"date":"2019-03-04 04:17:51.000000000 -0800","epoch":1551701871,"epoch_utc":null},{"filename":"screen","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":465928,"date":"2021-02-23 09:46:52.000000000 -0800","epoch":1614102412,"epoch_utc":null},{"filename":"screendump","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10232,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"script","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30792,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"scriptreplay","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26704,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"sdiff","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":51296,"date":"2017-08-04 14:20:16.000000000 -0700","epoch":1501881616,"epoch_utc":null},{"filename":"sdptool","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":209848,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"see","link_to":"run-mailcap","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":11,"date":"2016-07-15 05:06:12.000000000 -0700","epoch":1468584372,"epoch_utc":null},{"filename":"select-editor","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2442,"date":"2018-03-12 03:17:53.000000000 -0700","epoch":1520849873,"epoch_utc":null},{"filename":"sensible-browser","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1209,"date":"2018-03-12 03:17:53.000000000 -0700","epoch":1520849873,"epoch_utc":null},{"filename":"sensible-editor","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1109,"date":"2018-03-12 03:17:53.000000000 -0700","epoch":1520849873,"epoch_utc":null},{"filename":"sensible-pager","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":433,"date":"2018-03-12 03:17:53.000000000 -0700","epoch":1520849873,"epoch_utc":null},{"filename":"seq","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47288,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"setarch","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18784,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"setfacl","link_to":"/bin/setfacl","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":12,"date":"2019-08-05 12:24:25.000000000 -0700","epoch":1565033065,"epoch_utc":null},{"filename":"setkeycodes","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"setleds","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14392,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"setlogcons","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"setmetamode","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10344,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"setpci","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26704,"date":"2019-02-10 10:25:12.000000000 -0800","epoch":1549823112,"epoch_utc":null},{"filename":"setsid","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"setterm","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43088,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"sftp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":153960,"date":"2019-03-04 04:17:51.000000000 -0800","epoch":1551701871,"epoch_utc":null},{"filename":"sg","link_to":"newgrp","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"2019-03-22 12:05:38.000000000 -0700","epoch":1553281538,"epoch_utc":null},{"filename":"sha1sum","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47320,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"sha224sum","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":55512,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"sha256sum","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":55512,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"sha384sum","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":59608,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"sha512sum","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":59608,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"shasum","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":9371,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"showconsolefont","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18504,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"showkey","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14408,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"shred","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":59608,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"shuf","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":55480,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"size","link_to":"x86_64-linux-gnu-size","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"skill","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26704,"date":"2019-08-09 08:37:27.000000000 -0700","epoch":1565365047,"epoch_utc":null},{"filename":"slabtop","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18512,"date":"2019-08-09 08:37:27.000000000 -0700","epoch":1565365047,"epoch_utc":null},{"filename":"slogin","link_to":"ssh","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"2019-03-04 04:17:51.000000000 -0800","epoch":1551701871,"epoch_utc":null},{"filename":"slurm","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":34824,"date":"2018-04-03 05:43:49.000000000 -0700","epoch":1522759429,"epoch_utc":null},{"filename":"snap","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":19428040,"date":"2021-02-02 00:21:12.000000000 -0800","epoch":1612254072,"epoch_utc":null},{"filename":"snapctl","link_to":"../lib/snapd/snapctl","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":20,"date":"2021-02-02 00:21:12.000000000 -0800","epoch":1612254072,"epoch_utc":null},{"filename":"snapfuse","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39048,"date":"2021-02-02 00:21:12.000000000 -0800","epoch":1612254072,"epoch_utc":null},{"filename":"snice","link_to":"skill","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"2019-08-09 08:37:27.000000000 -0700","epoch":1565365047,"epoch_utc":null},{"filename":"sntp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":165384,"date":"2020-08-17 18:58:51.000000000 -0700","epoch":1597715931,"epoch_utc":null},{"filename":"soelim","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30920,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"sort","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":113120,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"sosreport","link_to":"../share/sosreport/sosreport","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":28,"date":"2020-07-07 12:34:42.000000000 -0700","epoch":1594150482,"epoch_utc":null},{"filename":"sotruss","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4308,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"splain","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":19150,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"split","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":55936,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"splitfont","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10232,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"sprof","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26840,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"ssh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":727848,"date":"2019-03-04 04:17:51.000000000 -0800","epoch":1551701871,"epoch_utc":null},{"filename":"ssh-add","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":346248,"date":"2019-03-04 04:17:51.000000000 -0800","epoch":1551701871,"epoch_utc":null},{"filename":"ssh-agent","flags":"-rwxr-sr-x","links":1,"owner":"root","group":"ssh","size":362640,"date":"2019-03-04 04:17:51.000000000 -0800","epoch":1551701871,"epoch_utc":null},{"filename":"ssh-argv0","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1456,"date":"2018-01-16 09:39:31.000000000 -0800","epoch":1516124371,"epoch_utc":null},{"filename":"ssh-copy-id","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10658,"date":"2017-10-02 12:34:26.000000000 -0700","epoch":1506972866,"epoch_utc":null},{"filename":"ssh-import-id","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1771,"date":"2018-05-16 16:40:43.000000000 -0700","epoch":1526514043,"epoch_utc":null},{"filename":"ssh-import-id-gh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":782,"date":"2016-01-29 21:11:11.000000000 -0800","epoch":1454130671,"epoch_utc":null},{"filename":"ssh-import-id-lp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":782,"date":"2016-01-29 21:11:25.000000000 -0800","epoch":1454130685,"epoch_utc":null},{"filename":"ssh-keygen","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":420000,"date":"2019-03-04 04:17:51.000000000 -0800","epoch":1551701871,"epoch_utc":null},{"filename":"ssh-keyscan","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":420000,"date":"2019-03-04 04:17:51.000000000 -0800","epoch":1551701871,"epoch_utc":null},{"filename":"stat","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":80088,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"stdbuf","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47288,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"strace","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1378552,"date":"2018-04-11 07:18:47.000000000 -0700","epoch":1523456327,"epoch_utc":null},{"filename":"strace-log-merge","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2644,"date":"2018-02-13 15:00:00.000000000 -0800","epoch":1518562800,"epoch_utc":null},{"filename":"strings","link_to":"x86_64-linux-gnu-strings","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"strip","link_to":"x86_64-linux-gnu-strip","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"sudo","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"root","size":149080,"date":"2021-01-19 06:36:00.000000000 -0800","epoch":1611066960,"epoch_utc":null},{"filename":"sudoedit","link_to":"sudo","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"2021-01-19 06:36:00.000000000 -0800","epoch":1611066960,"epoch_utc":null},{"filename":"sudoreplay","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":56128,"date":"2021-01-19 06:36:00.000000000 -0800","epoch":1611066960,"epoch_utc":null},{"filename":"sum","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39104,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"symcryptrun","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":113384,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"systemd-analyze","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1558792,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"systemd-cat","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"systemd-cgls","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14408,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"systemd-cgtop","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30816,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"systemd-delta","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22600,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"systemd-detect-virt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10304,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"systemd-mount","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43104,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"systemd-path","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10304,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"systemd-resolve","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":88136,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"systemd-run","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43080,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"systemd-socket-activate","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18504,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"systemd-stdio-bridge","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14408,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"systemd-umount","link_to":"systemd-mount","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":13,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"tabs","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14328,"date":"2018-05-23 01:08:27.000000000 -0700","epoch":1527062907,"epoch_utc":null},{"filename":"tac","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39096,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"tail","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":67832,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"tapestat","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39056,"date":"2020-01-17 03:24:09.000000000 -0800","epoch":1579260249,"epoch_utc":null},{"filename":"taskset","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30800,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"tbl","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":129224,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"tee","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35032,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"telnet","link_to":"/etc/alternatives/telnet","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2019-08-05 12:24:22.000000000 -0700","epoch":1565033062,"epoch_utc":null},{"filename":"telnet.netkit","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":111024,"date":"2016-11-07 10:06:40.000000000 -0800","epoch":1478542000,"epoch_utc":null},{"filename":"test","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47288,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"tic","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":84080,"date":"2018-05-23 01:08:27.000000000 -0700","epoch":1527062907,"epoch_utc":null},{"filename":"time","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14720,"date":"2017-04-21 13:57:03.000000000 -0700","epoch":1492808223,"epoch_utc":null},{"filename":"timedatectl","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22600,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"timeout","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39552,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"tkconch3","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":386,"date":"2020-03-16 10:24:46.000000000 -0700","epoch":1584379486,"epoch_utc":null},{"filename":"tload","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14424,"date":"2019-08-09 08:37:27.000000000 -0700","epoch":1565365047,"epoch_utc":null},{"filename":"tmux","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":577088,"date":"2019-07-04 12:45:07.000000000 -0700","epoch":1562269507,"epoch_utc":null},{"filename":"toe","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14328,"date":"2018-05-23 01:08:27.000000000 -0700","epoch":1527062907,"epoch_utc":null},{"filename":"top","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":108304,"date":"2019-08-09 08:37:27.000000000 -0700","epoch":1565365047,"epoch_utc":null},{"filename":"touch","link_to":"/bin/touch","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":10,"date":"2019-08-05 12:23:03.000000000 -0700","epoch":1565032983,"epoch_utc":null},{"filename":"tput","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18456,"date":"2018-05-23 01:08:27.000000000 -0700","epoch":1527062907,"epoch_utc":null},{"filename":"tr","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47288,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"tracepath","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14344,"date":"2019-06-28 04:05:23.000000000 -0700","epoch":1561719923,"epoch_utc":null},{"filename":"traceproto","link_to":"/etc/alternatives/traceproto","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":28,"date":"2020-07-27 14:56:20.508049125 -0700","epoch":1595886980,"epoch_utc":null},{"filename":"traceproto.db","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2885,"date":"2016-08-29 08:45:51.000000000 -0700","epoch":1472485551,"epoch_utc":null},{"filename":"traceroute","link_to":"/etc/alternatives/traceroute","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":28,"date":"2020-07-27 14:56:20.460021872 -0700","epoch":1595886980,"epoch_utc":null},{"filename":"traceroute6","link_to":"/etc/alternatives/traceroute6","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":29,"date":"2019-08-05 12:24:21.000000000 -0700","epoch":1565033061,"epoch_utc":null},{"filename":"traceroute6.db","link_to":"traceroute.db","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":13,"date":"2016-08-29 08:45:51.000000000 -0700","epoch":1472485551,"epoch_utc":null},{"filename":"traceroute6.iputils","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"root","size":18448,"date":"2019-06-28 04:05:23.000000000 -0700","epoch":1561719923,"epoch_utc":null},{"filename":"traceroute.db","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":68768,"date":"2016-08-29 08:45:51.000000000 -0700","epoch":1472485551,"epoch_utc":null},{"filename":"traceroute-nanog","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1618,"date":"2016-08-29 08:45:51.000000000 -0700","epoch":1472485551,"epoch_utc":null},{"filename":"trial3","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":382,"date":"2020-03-16 10:24:46.000000000 -0700","epoch":1584379486,"epoch_utc":null},{"filename":"troff","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":736608,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"truncate","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39096,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"tset","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22528,"date":"2018-05-23 01:08:27.000000000 -0700","epoch":1527062907,"epoch_utc":null},{"filename":"tsort","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"tty","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30904,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"twist3","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":382,"date":"2020-03-16 10:24:46.000000000 -0700","epoch":1584379486,"epoch_utc":null},{"filename":"twistd3","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":384,"date":"2020-03-16 10:24:46.000000000 -0700","epoch":1584379486,"epoch_utc":null},{"filename":"tzselect","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":15397,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"ua","link_to":"ubuntu-advantage","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":16,"date":"2018-03-21 10:20:04.000000000 -0700","epoch":1521652804,"epoch_utc":null},{"filename":"ubuntu-advantage","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4596,"date":"2018-03-21 10:20:04.000000000 -0700","epoch":1521652804,"epoch_utc":null},{"filename":"ubuntu-bug","link_to":"apport-bug","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":10,"date":"2021-01-26 04:21:46.000000000 -0800","epoch":1611663706,"epoch_utc":null},{"filename":"ubuntu-core-launcher","link_to":"../lib/snapd/snap-confine","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":25,"date":"2021-02-02 00:21:12.000000000 -0800","epoch":1612254072,"epoch_utc":null},{"filename":"ubuntu-support-status","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":8033,"date":"2020-06-03 11:41:50.000000000 -0700","epoch":1591209710,"epoch_utc":null},{"filename":"ucf","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":40685,"date":"2018-02-25 16:58:23.000000000 -0800","epoch":1519606703,"epoch_utc":null},{"filename":"ucfq","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":19367,"date":"2018-02-25 16:58:23.000000000 -0800","epoch":1519606703,"epoch_utc":null},{"filename":"ucfr","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10722,"date":"2018-02-25 16:58:23.000000000 -0800","epoch":1519606703,"epoch_utc":null},{"filename":"ul","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14344,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"unattended-upgrade","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":84529,"date":"2020-02-17 03:37:03.000000000 -0800","epoch":1581939423,"epoch_utc":null},{"filename":"unattended-upgrades","link_to":"unattended-upgrade","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":18,"date":"2020-02-17 03:37:03.000000000 -0800","epoch":1581939423,"epoch_utc":null},{"filename":"unexpand","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39128,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"unicode_stop","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":530,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"uniq","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43224,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"unlink","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30904,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"unlzma","link_to":"/etc/alternatives/unlzma","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2019-08-05 12:23:24.000000000 -0700","epoch":1565033004,"epoch_utc":null},{"filename":"unmkinitramfs","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2859,"date":"2019-10-07 03:53:35.000000000 -0700","epoch":1570445615,"epoch_utc":null},{"filename":"unpigz","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"root","size":116944,"date":"2017-12-27 11:41:06.000000000 -0800","epoch":1514403666,"epoch_utc":null},{"filename":"unshare","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18712,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"unsquashfs","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":98008,"date":"2018-07-05 12:49:18.000000000 -0700","epoch":1530820158,"epoch_utc":null},{"filename":"unxz","link_to":"xz","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":2,"date":"2017-06-28 09:39:19.000000000 -0700","epoch":1498667959,"epoch_utc":null},{"filename":"update-alternatives","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47112,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"updatedb","link_to":"/etc/alternatives/updatedb","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":26,"date":"2019-08-05 12:24:17.000000000 -0700","epoch":1565033057,"epoch_utc":null},{"filename":"updatedb.mlocate","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47184,"date":"2018-03-01 08:07:16.000000000 -0800","epoch":1519920436,"epoch_utc":null},{"filename":"update-leap","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":11635,"date":"2020-08-17 18:58:51.000000000 -0700","epoch":1597715931,"epoch_utc":null},{"filename":"update-mime-database","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":51392,"date":"2017-10-10 13:56:05.000000000 -0700","epoch":1507668965,"epoch_utc":null},{"filename":"upower","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14328,"date":"2019-01-25 08:38:41.000000000 -0800","epoch":1548434321,"epoch_utc":null},{"filename":"uptime","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"2019-08-09 08:37:27.000000000 -0700","epoch":1565365047,"epoch_utc":null},{"filename":"usb-devices","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4216,"date":"2017-04-21 13:59:17.000000000 -0700","epoch":1492808357,"epoch_utc":null},{"filename":"usbhid-dump","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22608,"date":"2017-04-21 13:59:17.000000000 -0700","epoch":1492808357,"epoch_utc":null},{"filename":"users","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"utmpdump","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22600,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"uuidgen","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14408,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"uuidparse","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":34896,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"vcs-run","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":6913,"date":"2018-04-13 06:07:55.000000000 -0700","epoch":1523624875,"epoch_utc":null},{"filename":"VGAuthService","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":129248,"date":"2020-03-25 03:33:50.000000000 -0700","epoch":1585132430,"epoch_utc":null},{"filename":"vi","link_to":"/etc/alternatives/vi","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":20,"date":"2019-08-05 12:23:26.000000000 -0700","epoch":1565033006,"epoch_utc":null},{"filename":"view","link_to":"/etc/alternatives/view","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"2019-08-05 12:23:26.000000000 -0700","epoch":1565033006,"epoch_utc":null},{"filename":"vigpg","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2640,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"vim","link_to":"/etc/alternatives/vim","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"2019-08-05 12:24:27.000000000 -0700","epoch":1565033067,"epoch_utc":null},{"filename":"vim.basic","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2675336,"date":"2020-10-13 08:49:09.000000000 -0700","epoch":1602604149,"epoch_utc":null},{"filename":"vimdiff","link_to":"/etc/alternatives/vimdiff","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":25,"date":"2019-08-05 12:24:27.000000000 -0700","epoch":1565033067,"epoch_utc":null},{"filename":"vim.tiny","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1108024,"date":"2020-10-13 08:49:09.000000000 -0700","epoch":1602604149,"epoch_utc":null},{"filename":"vimtutor","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2099,"date":"2020-10-13 08:49:09.000000000 -0700","epoch":1602604149,"epoch_utc":null},{"filename":"vmhgfs-fuse","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":51696,"date":"2020-03-25 03:33:50.000000000 -0700","epoch":1585132430,"epoch_utc":null},{"filename":"vmstat","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":34912,"date":"2019-08-09 08:37:27.000000000 -0700","epoch":1565365047,"epoch_utc":null},{"filename":"vmtoolsd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":55552,"date":"2020-03-25 03:33:50.000000000 -0700","epoch":1585132430,"epoch_utc":null},{"filename":"vmware-checkvm","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"2020-03-25 03:33:50.000000000 -0700","epoch":1585132430,"epoch_utc":null},{"filename":"vmware-hgfsclient","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"2020-03-25 03:33:50.000000000 -0700","epoch":1585132430,"epoch_utc":null},{"filename":"vmware-namespace-cmd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18424,"date":"2020-03-25 03:33:50.000000000 -0700","epoch":1585132430,"epoch_utc":null},{"filename":"vmware-rpctool","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18424,"date":"2020-03-25 03:33:50.000000000 -0700","epoch":1585132430,"epoch_utc":null},{"filename":"vmware-toolbox-cmd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39200,"date":"2020-03-25 03:33:50.000000000 -0700","epoch":1585132430,"epoch_utc":null},{"filename":"vmware-vgauth-cmd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14328,"date":"2020-03-25 03:33:50.000000000 -0700","epoch":1585132430,"epoch_utc":null},{"filename":"vmware-vgauth-smoketest","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18440,"date":"2020-03-25 03:33:50.000000000 -0700","epoch":1585132430,"epoch_utc":null},{"filename":"vmware-vmblock-fuse","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18848,"date":"2020-03-25 03:33:50.000000000 -0700","epoch":1585132430,"epoch_utc":null},{"filename":"vmware-xferlogs","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"2020-03-25 03:33:50.000000000 -0700","epoch":1585132430,"epoch_utc":null},{"filename":"volname","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10232,"date":"2017-03-27 21:22:15.000000000 -0700","epoch":1490674935,"epoch_utc":null},{"filename":"w","link_to":"/etc/alternatives/w","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":19,"date":"2019-08-05 12:23:04.000000000 -0700","epoch":1565032984,"epoch_utc":null},{"filename":"wall","flags":"-rwxr-sr-x","links":1,"owner":"root","group":"tty","size":30800,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"watch","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22952,"date":"2019-08-09 08:37:27.000000000 -0700","epoch":1565365047,"epoch_utc":null},{"filename":"watchgnupg","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14328,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"wc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43200,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"wget","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":499264,"date":"2019-04-08 11:51:50.000000000 -0700","epoch":1554749510,"epoch_utc":null},{"filename":"whatis","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":48104,"date":"2018-08-04 12:16:12.000000000 -0700","epoch":1533410172,"epoch_utc":null},{"filename":"whereis","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":27144,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"which","link_to":"/bin/which","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":10,"date":"2019-08-05 12:23:03.000000000 -0700","epoch":1565032983,"epoch_utc":null},{"filename":"who","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":51416,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"whoami","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30904,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"wifi-status","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2107,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"wmdocker","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22536,"date":"2018-04-03 05:19:52.000000000 -0700","epoch":1522757992,"epoch_utc":null},{"filename":"w.procps","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18504,"date":"2019-08-09 08:37:27.000000000 -0700","epoch":1565365047,"epoch_utc":null},{"filename":"write","link_to":"/etc/alternatives/write","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":23,"date":"2019-08-05 12:24:25.000000000 -0700","epoch":1565033065,"epoch_utc":null},{"filename":"x86_64","link_to":"setarch","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":7,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"x86_64-linux-gnu-addr2line","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31280,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-ar","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":59640,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-as","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":917488,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-c++filt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26744,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-cpp","link_to":"cpp-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"x86_64-linux-gnu-cpp-7","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1047488,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"x86_64-linux-gnu-dwp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2886928,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-elfedit","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31184,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-g++","link_to":"g++-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"x86_64-linux-gnu-g++-7","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1047488,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gcc","link_to":"gcc-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gcc-7","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1047488,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gcc-ar","link_to":"gcc-ar-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":8,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gcc-ar-7","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31200,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gcc-nm","link_to":"gcc-nm-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":8,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gcc-nm-7","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31200,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gcc-ranlib","link_to":"gcc-ranlib-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":12,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gcc-ranlib-7","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31200,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gcov","link_to":"gcov-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gcov-7","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":630880,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gcov-dump","link_to":"gcov-dump-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":11,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gcov-dump-7","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":511928,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gcov-tool","link_to":"gcov-tool-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":11,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gcov-tool-7","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":548856,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gold","link_to":"x86_64-linux-gnu-ld.gold","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gprof","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":102120,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-ld","link_to":"x86_64-linux-gnu-ld.bfd","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":23,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-ld.bfd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1783496,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-ld.gold","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3111952,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-nm","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":44312,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-objcopy","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":235720,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-objdump","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":414256,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-pkg-config","link_to":"/usr/share/pkg-config-crosswrapper","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":34,"date":"2020-04-14 09:35:39.217683591 -0700","epoch":1586882139,"epoch_utc":null},{"filename":"x86_64-linux-gnu-python3.6-config","link_to":"x86_64-linux-gnu-python3.6m-config","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":34,"date":"2021-01-26 07:33:00.000000000 -0800","epoch":1611675180,"epoch_utc":null},{"filename":"x86_64-linux-gnu-python3.6m-config","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3283,"date":"2021-01-26 07:33:00.000000000 -0800","epoch":1611675180,"epoch_utc":null},{"filename":"x86_64-linux-gnu-python3-config","link_to":"x86_64-linux-gnu-python3.6-config","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":33,"date":"2018-10-25 04:11:00.000000000 -0700","epoch":1540465860,"epoch_utc":null},{"filename":"x86_64-linux-gnu-python3m-config","link_to":"x86_64-linux-gnu-python3.6m-config","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":34,"date":"2018-10-25 04:11:00.000000000 -0700","epoch":1540465860,"epoch_utc":null},{"filename":"x86_64-linux-gnu-ranlib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":59672,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-readelf","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":596440,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-size","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31024,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-strings","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31232,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-strip","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":235728,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-pc-linux-gnu-pkg-config","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"root","size":51296,"date":"2017-04-21 13:54:08.000000000 -0700","epoch":1492808048,"epoch_utc":null},{"filename":"xargs","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":71896,"date":"2017-11-05 09:16:48.000000000 -0800","epoch":1509902208,"epoch_utc":null},{"filename":"xauth","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":52032,"date":"2017-11-21 11:47:37.000000000 -0800","epoch":1511293657,"epoch_utc":null},{"filename":"xdelta3","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":153904,"date":"2016-12-05 18:04:51.000000000 -0800","epoch":1480989891,"epoch_utc":null},{"filename":"xdg-user-dir","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":234,"date":"2018-03-23 08:58:57.000000000 -0700","epoch":1521820737,"epoch_utc":null},{"filename":"xdg-user-dirs-update","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18504,"date":"2018-03-23 08:58:57.000000000 -0700","epoch":1521820737,"epoch_utc":null},{"filename":"xsubpp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":5164,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"xxd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18552,"date":"2020-10-13 08:49:09.000000000 -0700","epoch":1602604149,"epoch_utc":null},{"filename":"xz","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":76216,"date":"2017-06-28 09:39:19.000000000 -0700","epoch":1498667959,"epoch_utc":null},{"filename":"xzcat","link_to":"xz","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":2,"date":"2017-06-28 09:39:19.000000000 -0700","epoch":1498667959,"epoch_utc":null},{"filename":"xzcmp","link_to":"xzdiff","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"2017-06-28 09:39:19.000000000 -0700","epoch":1498667959,"epoch_utc":null},{"filename":"xzdiff","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":6632,"date":"2017-06-28 09:39:19.000000000 -0700","epoch":1498667959,"epoch_utc":null},{"filename":"xzegrep","link_to":"xzgrep","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"2017-06-28 09:39:19.000000000 -0700","epoch":1498667959,"epoch_utc":null},{"filename":"xzfgrep","link_to":"xzgrep","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"2017-06-28 09:39:19.000000000 -0700","epoch":1498667959,"epoch_utc":null},{"filename":"xzgrep","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":5628,"date":"2017-06-28 09:39:19.000000000 -0700","epoch":1498667959,"epoch_utc":null},{"filename":"xzless","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1802,"date":"2017-06-28 09:39:19.000000000 -0700","epoch":1498667959,"epoch_utc":null},{"filename":"xzmore","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2161,"date":"2017-06-28 09:39:19.000000000 -0700","epoch":1498667959,"epoch_utc":null},{"filename":"yes","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30904,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"zdump","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18488,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"zipdetails\n","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":48497,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null}] jc-1.17.3/tests/fixtures/ubuntu-18.04/ls-l-iso.out000066400000000000000000002306261415226333200214060ustar00rootroot00000000000000total 502016 -rwxr-xr-x 1 root root 51384 2018-01-18 01:43:49.000000000 -0800 [ -rwxr-xr-x 1 root root 22696 2018-09-27 11:20:54.000000000 -0700 aa-enabled -rwxr-xr-x 1 root root 22696 2018-09-27 11:20:54.000000000 -0700 aa-exec -rwxr-xr-x 1 root root 23656 2018-01-14 19:20:21.000000000 -0800 acpi -rwxr-xr-x 1 root root 14608 2017-04-27 21:28:10.000000000 -0700 acpi_listen -rwxr-xr-x 1 root root 7415 2020-08-07 07:07:43.000000000 -0700 add-apt-repository -rwxr-xr-x 1 root root 22608 2020-09-16 11:43:15.000000000 -0700 addpart lrwxrwxrwx 1 root root 26 2021-02-12 00:45:35.000000000 -0800 addr2line -> x86_64-linux-gnu-addr2line -rwxr-xr-x 1 root root 2558 2019-11-11 13:57:56.000000000 -0800 apport-bug -rwxr-xr-x 1 root root 13367 2021-01-26 04:21:46.000000000 -0800 apport-cli lrwxrwxrwx 1 root root 10 2021-01-26 04:21:46.000000000 -0800 apport-collect -> apport-bug -rwxr-xr-x 1 root root 1849 2021-01-26 04:21:46.000000000 -0800 apport-unpack lrwxrwxrwx 1 root root 6 2018-08-04 12:16:12.000000000 -0700 apropos -> whatis -rwxr-xr-x 1 root root 14424 2020-12-07 03:13:36.000000000 -0800 apt lrwxrwxrwx 1 root root 18 2020-08-07 07:07:43.000000000 -0700 apt-add-repository -> add-apt-repository -rwxr-xr-x 1 root root 80032 2020-12-07 03:13:36.000000000 -0800 apt-cache -rwxr-xr-x 1 root root 22688 2020-12-07 03:13:36.000000000 -0800 apt-cdrom -rwxr-xr-x 1 root root 22616 2020-12-07 03:13:36.000000000 -0800 apt-config -rwxr-xr-x 1 root root 22688 2020-12-07 03:13:36.000000000 -0800 apt-extracttemplates -rwxr-xr-x 1 root root 239776 2020-12-07 03:13:36.000000000 -0800 apt-ftparchive -rwxr-xr-x 1 root root 43168 2020-12-07 03:13:36.000000000 -0800 apt-get -rwxr-xr-x 1 root root 27391 2020-12-07 03:13:36.000000000 -0800 apt-key -rwxr-xr-x 1 root root 43168 2020-12-07 03:13:36.000000000 -0800 apt-mark -rwxr-xr-x 1 root root 43096 2020-12-07 03:13:36.000000000 -0800 apt-sortpkgs lrwxrwxrwx 1 root root 19 2021-02-12 00:45:35.000000000 -0800 ar -> x86_64-linux-gnu-ar -rwxr-xr-x 1 root root 35032 2018-01-18 01:43:49.000000000 -0800 arch lrwxrwxrwx 1 root root 19 2021-02-12 00:45:35.000000000 -0800 as -> x86_64-linux-gnu-as -rwsr-sr-x 1 daemon daemon 51464 2018-02-19 22:59:43.000000000 -0800 at lrwxrwxrwx 1 root root 2 2018-02-19 22:59:43.000000000 -0800 atq -> at lrwxrwxrwx 1 root root 2 2018-02-19 22:59:43.000000000 -0800 atrm -> at -rwxr-xr-x 1 root root 402 2017-08-28 01:55:39.000000000 -0700 automat-visualize3 lrwxrwxrwx 1 root root 21 2019-08-05 12:22:59.000000000 -0700 awk -> /etc/alternatives/awk -rwxr-xr-x 1 root root 55512 2018-01-18 01:43:49.000000000 -0800 b2sum -rwxr-xr-x 1 root root 39096 2018-01-18 01:43:49.000000000 -0800 base32 -rwxr-xr-x 1 root root 39096 2018-01-18 01:43:49.000000000 -0800 base64 -rwxr-xr-x 1 root root 35000 2018-01-18 01:43:49.000000000 -0800 basename -rwxr-xr-x 1 root root 7115 2019-06-06 15:28:15.000000000 -0700 bashbug -rwxr-xr-x 1 root root 152 2018-02-19 22:59:43.000000000 -0800 batch -rwxr-xr-x 1 root root 92872 2018-03-22 09:20:34.000000000 -0700 bc -rwxr-xr-x 1 root root 196920 2020-03-23 05:26:28.000000000 -0700 bccmd -rwxr-xr-x 1 root root 75848 2020-03-23 05:26:28.000000000 -0700 bluemoon -rwxr-xr-x 1 root root 203272 2020-03-23 05:26:28.000000000 -0700 bluetoothctl -rwxr-xr-x 1 root root 34952 2020-07-08 11:59:14.000000000 -0700 bootctl -rwxr-xr-x 1 root root 10232 2018-01-17 03:27:24.000000000 -0800 bsd-from -rwxr-sr-x 1 root tty 14328 2018-01-17 03:27:24.000000000 -0800 bsd-write -rwxr-xr-x 1 root root 67656 2020-03-23 05:26:28.000000000 -0700 btattach -rwxr-xr-x 1 root root 314136 2020-03-23 05:26:28.000000000 -0700 btmgmt -rwxr-xr-x 1 root root 716792 2020-03-23 05:26:28.000000000 -0700 btmon -rwxr-xr-x 1 root root 67672 2020-07-08 11:59:14.000000000 -0700 busctl -rwxr-xr-x 1 root root 8264 2017-12-04 05:46:48.000000000 -0800 byobu -rwxr-xr-x 1 root root 996 2017-12-04 05:46:48.000000000 -0800 byobu-config -rwxr-xr-x 1 root root 4774 2017-12-04 05:46:48.000000000 -0800 byobu-ctrl-a -rwxr-xr-x 1 root root 1295 2017-12-04 05:46:48.000000000 -0800 byobu-disable -rwxr-xr-x 1 root root 1307 2017-12-04 05:46:48.000000000 -0800 byobu-disable-prompt -rwxr-xr-x 1 root root 1182 2017-12-04 05:46:48.000000000 -0800 byobu-enable -rwxr-xr-x 1 root root 1453 2017-12-04 05:46:48.000000000 -0800 byobu-enable-prompt -rwxr-xr-x 1 root root 1260 2017-12-04 05:46:48.000000000 -0800 byobu-export -rwxr-xr-x 1 root root 5963 2017-12-04 05:46:48.000000000 -0800 byobu-janitor -rwxr-xr-x 1 root root 1506 2017-12-04 05:46:48.000000000 -0800 byobu-keybindings -rwxr-xr-x 1 root root 3289 2017-12-04 05:46:48.000000000 -0800 byobu-launch -rwxr-xr-x 1 root root 1910 2017-12-04 05:46:48.000000000 -0800 byobu-launcher -rwxr-xr-x 1 root root 2459 2017-12-04 05:46:48.000000000 -0800 byobu-launcher-install -rwxr-xr-x 1 root root 1561 2017-12-04 05:46:48.000000000 -0800 byobu-launcher-uninstall -rwxr-xr-x 1 root root 3348 2017-12-04 05:46:48.000000000 -0800 byobu-layout -rwxr-xr-x 1 root root 1156 2017-12-04 05:46:48.000000000 -0800 byobu-prompt -rwxr-xr-x 1 root root 1410 2017-12-04 05:46:48.000000000 -0800 byobu-quiet -rwxr-xr-x 1 root root 3298 2017-12-04 05:46:48.000000000 -0800 byobu-reconnect-sockets lrwxrwxrwx 1 root root 5 2017-12-04 05:46:48.000000000 -0800 byobu-screen -> byobu -rwxr-xr-x 1 root root 1452 2017-12-04 05:46:48.000000000 -0800 byobu-select-backend -rwxr-xr-x 1 root root 6287 2017-12-04 05:46:48.000000000 -0800 byobu-select-profile -rwxr-xr-x 1 root root 1012 2017-12-04 05:46:48.000000000 -0800 byobu-select-session -rwxr-xr-x 1 root root 1599 2017-12-04 05:46:48.000000000 -0800 byobu-shell -rwxr-xr-x 1 root root 1306 2017-12-04 05:46:48.000000000 -0800 byobu-silent -rwxr-xr-x 1 root root 6015 2017-12-04 05:46:48.000000000 -0800 byobu-status -rwxr-xr-x 1 root root 1207 2017-12-04 05:46:48.000000000 -0800 byobu-status-detail lrwxrwxrwx 1 root root 5 2017-12-04 05:46:48.000000000 -0800 byobu-tmux -> byobu -rwxr-xr-x 1 root root 4667 2017-12-04 05:46:48.000000000 -0800 byobu-ugraph -rwxr-xr-x 1 root root 11996 2017-12-04 05:46:48.000000000 -0800 byobu-ulevel lrwxrwxrwx 1 root root 21 2019-10-17 17:14:23.966483723 -0700 c++ -> /etc/alternatives/c++ lrwxrwxrwx 1 root root 21 2019-10-17 17:14:23.810468363 -0700 c89 -> /etc/alternatives/c89 -rwxr-xr-x 1 root root 428 2006-05-07 02:28:01.000000000 -0700 c89-gcc lrwxrwxrwx 1 root root 21 2019-10-17 17:14:23.830470333 -0700 c99 -> /etc/alternatives/c99 -rwxr-xr-x 1 root root 454 2011-04-11 00:54:37.000000000 -0700 c99-gcc lrwxrwxrwx 1 root root 4 2018-01-17 03:27:24.000000000 -0800 cal -> ncal -rwxr-xr-x 1 root root 2844 2020-08-17 18:58:51.000000000 -0700 calc_tickadj -rwxr-xr-x 1 root root 31208 2018-01-17 03:27:24.000000000 -0800 calendar lrwxrwxrwx 1 root root 3 2018-05-23 01:08:27.000000000 -0700 captoinfo -> tic -rwxr-xr-x 1 root root 3329 2020-06-04 10:25:26.000000000 -0700 catchsegv -rwxr-xr-x 1 root root 39384 2018-08-04 12:16:12.000000000 -0700 catman -rwxr-xr-x 1 root root 853 2016-07-15 05:06:12.000000000 -0700 cautious-launcher lrwxrwxrwx 1 root root 20 2019-10-17 17:14:23.790466394 -0700 cc -> /etc/alternatives/cc lrwxrwxrwx 1 root root 24 2021-02-12 00:45:35.000000000 -0800 c++filt -> x86_64-linux-gnu-c++filt -rwxr-xr-x 1 root root 380 2020-03-16 10:24:46.000000000 -0700 cftp3 -rwxr-xr-x 1 root root 1275 2016-01-25 09:58:07.000000000 -0800 cgroupfs-mount -rwxr-xr-x 1 root root 620 2016-01-25 09:58:11.000000000 -0800 cgroupfs-umount lrwxrwxrwx 1 root root 10 2019-08-05 12:24:25.000000000 -0700 chacl -> /bin/chacl -rwxr-sr-x 1 root shadow 71816 2019-03-22 12:05:38.000000000 -0700 chage lrwxrwxrwx 1 root root 11 2017-06-18 14:51:08.000000000 -0700 chardet3 -> chardetect3 -rwxr-xr-x 1 root root 389 2017-06-18 14:51:08.000000000 -0700 chardetect3 -rwxr-xr-x 1 root root 14336 2020-01-22 06:40:45.000000000 -0800 chattr -rwxr-xr-x 1 root root 63672 2018-01-18 01:43:49.000000000 -0800 chcon -rwxr-xr-x 1 root root 2771 2019-06-28 10:12:00.000000000 -0700 check-language-support -rwsr-xr-x 1 root root 76496 2019-03-22 12:05:38.000000000 -0700 chfn -rwxr-xr-x 1 root root 30800 2020-09-16 11:43:15.000000000 -0700 chrt -rwsr-xr-x 1 root root 44528 2019-03-22 12:05:38.000000000 -0700 chsh -rwxr-xr-x 1 root root 34960 2020-01-17 03:24:09.000000000 -0800 cifsiostat -rwxr-xr-x 1 root root 144984 2020-03-23 05:26:28.000000000 -0700 ciptool -rwxr-xr-x 1 root root 149838 2019-04-23 05:04:14.000000000 -0700 ckbcomp -rwxr-xr-x 1 root root 386 2020-03-16 10:24:46.000000000 -0700 ckeygen3 -rwxr-xr-x 1 root root 35000 2018-01-18 01:43:49.000000000 -0800 cksum -rwxr-xr-x 1 root root 10240 2018-05-23 01:08:27.000000000 -0700 clear -rwxr-xr-x 1 root root 10312 2019-06-06 15:28:15.000000000 -0700 clear_console -rwxr-xr-x 1 root root 390 2020-06-02 19:08:10.000000000 -0700 cloud-id -rwxr-xr-x 1 root root 394 2020-06-02 19:08:10.000000000 -0700 cloud-init -rwxr-xr-x 1 root root 2108 2020-06-02 08:24:29.000000000 -0700 cloud-init-per -rwxr-xr-x 1 root root 47200 2017-08-04 14:20:16.000000000 -0700 cmp -rwxr-xr-x 1 root root 14328 2018-01-22 05:49:48.000000000 -0800 codepage -rwxr-xr-x 1 root root 10232 2018-01-17 03:27:24.000000000 -0800 col -rwxr-xr-x 1 root root 963 2017-12-04 05:46:48.000000000 -0800 col1 lrwxrwxrwx 1 root root 4 2017-12-04 05:46:48.000000000 -0800 col2 -> col1 lrwxrwxrwx 1 root root 4 2017-12-04 05:46:48.000000000 -0800 col3 -> col1 lrwxrwxrwx 1 root root 4 2017-12-04 05:46:48.000000000 -0800 col4 -> col1 lrwxrwxrwx 1 root root 4 2017-12-04 05:46:48.000000000 -0800 col5 -> col1 lrwxrwxrwx 1 root root 4 2017-12-04 05:46:48.000000000 -0800 col6 -> col1 lrwxrwxrwx 1 root root 4 2017-12-04 05:46:48.000000000 -0800 col7 -> col1 lrwxrwxrwx 1 root root 4 2017-12-04 05:46:48.000000000 -0800 col8 -> col1 lrwxrwxrwx 1 root root 4 2017-12-04 05:46:48.000000000 -0800 col9 -> col1 -rwxr-xr-x 1 root root 10240 2018-01-17 03:27:24.000000000 -0800 colcrt -rwxr-xr-x 1 root root 10232 2018-01-17 03:27:24.000000000 -0800 colrm -rwxr-xr-x 1 root root 14344 2018-01-17 03:27:24.000000000 -0800 column -rwxr-xr-x 1 root root 39128 2018-01-18 01:43:49.000000000 -0800 comm lrwxrwxrwx 1 root root 11 2016-07-15 05:06:12.000000000 -0700 compose -> run-mailcap -rwxr-xr-x 1 root root 382 2020-03-16 10:24:46.000000000 -0700 conch3 -rwxr-xr-x 1 root root 46160136 2020-03-19 19:13:11.000000000 -0700 containerd -rwxr-xr-x 1 root root 6082248 2020-03-19 19:13:11.000000000 -0700 containerd-shim -rwxr-xr-x 1 root root 7498568 2020-03-19 19:13:11.000000000 -0700 containerd-shim-runc-v1 -rwxr-xr-x 1 root root 7502728 2020-03-19 19:13:11.000000000 -0700 containerd-shim-runc-v2 -rwxr-xr-x 1 root root 21048904 2020-03-19 19:13:11.000000000 -0700 containerd-stress -rwxr-xr-x 1 root root 12835 2020-10-19 03:57:24.000000000 -0700 corelist -rwxr-xr-x 1 root root 8156 2020-10-19 03:57:24.000000000 -0700 cpan -rwxr-xr-x 1 root root 8177 2020-10-19 03:57:24.000000000 -0700 cpan5.26-x86_64-linux-gnu lrwxrwxrwx 1 root root 5 2019-05-20 09:08:41.000000000 -0700 cpp -> cpp-7 lrwxrwxrwx 1 root root 22 2019-12-04 06:25:41.000000000 -0800 cpp-7 -> x86_64-linux-gnu-cpp-7 -rwxr-xr-x 1 root root 6332 2021-03-22 04:42:42.000000000 -0700 c_rehash -rwxr-sr-x 1 root crontab 39352 2017-11-15 21:29:19.000000000 -0800 crontab -rwxr-xr-x 1 root root 51416 2018-01-18 01:43:49.000000000 -0800 csplit -rwxr-xr-x 1 root root 958 2017-12-04 05:46:48.000000000 -0800 ctail -rwxr-xr-x 1 root root 22699016 2020-03-19 19:13:11.000000000 -0700 ctr lrwxrwxrwx 1 root root 6 2020-07-15 08:16:31.000000000 -0700 ctstat -> lnstat -rwxr-xr-x 1 root root 223304 2020-12-01 10:01:10.000000000 -0800 curl -rwxr-xr-x 1 root root 43224 2018-01-18 01:43:49.000000000 -0800 cut -rwxr-xr-x 1 root root 10224 2020-06-11 11:25:30.000000000 -0700 dbus-cleanup-sockets -rwxr-xr-x 1 root root 236584 2020-06-11 11:25:30.000000000 -0700 dbus-daemon -rwxr-xr-x 1 root root 22520 2020-06-11 11:25:30.000000000 -0700 dbus-monitor -rwxr-xr-x 1 root root 10224 2020-06-11 11:25:30.000000000 -0700 dbus-run-session -rwxr-xr-x 1 root root 26608 2020-06-11 11:25:30.000000000 -0700 dbus-send -rwxr-xr-x 1 root root 14320 2020-06-11 11:25:30.000000000 -0700 dbus-update-activation-environment -rwxr-xr-x 1 root root 10224 2020-06-11 11:25:30.000000000 -0700 dbus-uuidgen -rwxr-xr-x 1 root root 10312 2018-01-22 05:49:48.000000000 -0800 deallocvt -rwxr-xr-x 1 root root 2859 2019-05-06 09:30:30.000000000 -0700 debconf -rwxr-xr-x 1 root root 11541 2019-05-06 09:30:30.000000000 -0700 debconf-apt-progress -rwxr-xr-x 1 root root 608 2019-05-06 09:30:30.000000000 -0700 debconf-communicate -rwxr-xr-x 1 root root 1719 2019-05-06 09:30:30.000000000 -0700 debconf-copydb -rwxr-xr-x 1 root root 647 2019-05-06 09:30:30.000000000 -0700 debconf-escape -rwxr-xr-x 1 root root 2935 2019-05-06 09:30:30.000000000 -0700 debconf-set-selections -rwxr-xr-x 1 root root 1827 2019-05-06 09:30:30.000000000 -0700 debconf-show -rwxr-xr-x 1 root root 20142 2017-10-25 08:38:42.000000000 -0700 deb-systemd-helper -rwxr-xr-x 1 root root 4434 2017-10-25 08:38:42.000000000 -0700 deb-systemd-invoke -rwxr-xr-x 1 root root 22608 2020-09-16 11:43:15.000000000 -0700 delpart -rwxr-xr-x 1 root root 41840 2021-02-15 05:08:25.000000000 -0800 delv -rwxr-xr-x 1 root root 2550 2018-04-01 19:16:46.000000000 -0700 dh_bash-completion lrwxrwxrwx 1 root root 26 2018-03-26 12:42:23.000000000 -0700 dh_pypy -> ../share/dh-python/dh_pypy lrwxrwxrwx 1 root root 29 2018-03-26 12:42:23.000000000 -0700 dh_python3 -> ../share/dh-python/dh_python3 -rwxr-xr-x 1 root root 145752 2017-08-04 14:20:16.000000000 -0700 diff -rwxr-xr-x 1 root root 63704 2017-08-04 14:20:16.000000000 -0700 diff3 -rwxr-xr-x 1 root root 150024 2021-02-15 05:08:25.000000000 -0800 dig -rwxr-xr-x 1 root root 47296 2018-01-18 01:43:49.000000000 -0800 dircolors -rwxr-xr-x 1 root root 546360 2020-09-17 06:57:57.000000000 -0700 dirmngr -rwxr-xr-x 1 root root 109320 2020-09-17 06:57:57.000000000 -0700 dirmngr-client -rwxr-xr-x 1 root root 30904 2018-01-18 01:43:49.000000000 -0800 dirname -rwxr-xr-x 1 root root 89213816 2020-10-14 09:52:50.000000000 -0700 docker -rwxr-xr-x 1 root root 105111664 2020-10-14 09:52:50.000000000 -0700 dockerd -rwxr-xr-x 1 root root 804408 2020-10-14 09:52:50.000000000 -0700 docker-init -rwxr-xr-x 1 root root 2901395 2020-10-14 09:52:50.000000000 -0700 docker-proxy -rwxr-xr-x 1 root root 9313 2020-07-09 15:58:12.000000000 -0700 do-release-upgrade -rwxr-xr-x 1 root root 297472 2019-09-05 14:05:14.000000000 -0700 dpkg -rwxr-xr-x 1 root root 12852 2019-09-05 14:05:14.000000000 -0700 dpkg-architecture -rwxr-xr-x 1 root root 7565 2019-09-05 14:05:14.000000000 -0700 dpkg-buildflags -rwxr-xr-x 1 root root 29796 2019-09-05 14:05:14.000000000 -0700 dpkg-buildpackage -rwxr-xr-x 1 root root 7503 2019-09-05 14:05:14.000000000 -0700 dpkg-checkbuilddeps -rwxr-xr-x 1 root root 153952 2019-09-05 14:05:14.000000000 -0700 dpkg-deb -rwxr-xr-x 1 root root 2782 2019-09-05 14:05:14.000000000 -0700 dpkg-distaddfile -rwxr-xr-x 1 root root 141728 2019-09-05 14:05:14.000000000 -0700 dpkg-divert -rwxr-xr-x 1 root root 16775 2019-09-05 14:05:14.000000000 -0700 dpkg-genbuildinfo -rwxr-xr-x 1 root root 17622 2019-09-05 14:05:14.000000000 -0700 dpkg-genchanges -rwxr-xr-x 1 root root 14059 2019-09-05 14:05:14.000000000 -0700 dpkg-gencontrol -rwxr-xr-x 1 root root 10629 2019-09-05 14:05:14.000000000 -0700 dpkg-gensymbols -rwxr-xr-x 1 root root 19031 2019-09-05 14:05:14.000000000 -0700 dpkg-maintscript-helper -rwxr-xr-x 1 root root 8590 2019-09-05 14:05:14.000000000 -0700 dpkg-mergechangelogs -rwxr-xr-x 1 root root 6789 2019-09-05 14:05:14.000000000 -0700 dpkg-name -rwxr-xr-x 1 root root 4435 2019-09-05 14:05:14.000000000 -0700 dpkg-parsechangelog -rwxr-xr-x 1 root root 149912 2019-09-05 14:05:14.000000000 -0700 dpkg-query -rwxr-xr-x 1 root root 8425 2019-09-05 14:05:14.000000000 -0700 dpkg-scanpackages -rwxr-xr-x 1 root root 9167 2019-09-05 14:05:14.000000000 -0700 dpkg-scansources -rwxr-xr-x 1 root root 31360 2019-09-05 14:05:14.000000000 -0700 dpkg-shlibdeps -rwxr-xr-x 1 root root 23300 2019-09-05 14:05:14.000000000 -0700 dpkg-source -rwxr-xr-x 1 root root 121176 2019-09-05 14:05:14.000000000 -0700 dpkg-split -rwxr-xr-x 1 root root 71936 2019-09-05 14:05:14.000000000 -0700 dpkg-statoverride -rwxr-xr-x 1 root root 67848 2019-09-05 14:05:14.000000000 -0700 dpkg-trigger -rwxr-xr-x 1 root root 3262 2019-09-05 14:05:14.000000000 -0700 dpkg-vendor -rwxr-xr-x 1 root root 100568 2018-01-18 01:43:49.000000000 -0800 du lrwxrwxrwx 1 root root 13 2019-08-05 12:23:31.000000000 -0700 dumpkeys -> /bin/dumpkeys lrwxrwxrwx 1 root root 20 2021-02-12 00:45:35.000000000 -0800 dwp -> x86_64-linux-gnu-dwp -rwxr-xr-x 1 root root 2806 2018-03-09 10:37:20.000000000 -0800 eatmydata -rwxr-xr-x 1 root root 7297 2018-04-13 06:07:55.000000000 -0700 ec2metadata lrwxrwxrwx 1 root root 11 2016-07-15 05:06:12.000000000 -0700 edit -> run-mailcap lrwxrwxrwx 1 root root 24 2019-08-05 12:23:26.000000000 -0700 editor -> /etc/alternatives/editor -rwxr-xr-x 1 root root 31424 2017-03-27 21:22:15.000000000 -0700 eject lrwxrwxrwx 1 root root 24 2021-02-12 00:45:35.000000000 -0800 elfedit -> x86_64-linux-gnu-elfedit -rwxr-xr-x 1 root root 42153 2020-10-19 03:57:24.000000000 -0700 enc2xs -rwxr-xr-x 1 root root 3066 2020-10-19 03:57:24.000000000 -0700 encguess -rwxr-xr-x 1 root root 35000 2018-01-18 01:43:49.000000000 -0800 env -rwxr-xr-x 1 root root 34896 2019-02-21 06:40:49.000000000 -0800 envsubst -rwxr-xr-x 1 root root 197824 2018-02-09 18:09:07.000000000 -0800 eqn lrwxrwxrwx 1 root root 20 2019-08-05 12:23:26.000000000 -0700 ex -> /etc/alternatives/ex -rwxr-xr-x 1 root root 39128 2018-01-18 01:43:49.000000000 -0800 expand -rwxr-sr-x 1 root shadow 22808 2019-03-22 12:05:38.000000000 -0700 expiry -rwxr-xr-x 1 root root 47288 2018-01-18 01:43:49.000000000 -0800 expr -rwxr-xr-x 1 root root 75992 2018-01-18 01:43:49.000000000 -0800 factor -rwxr-xr-x 1 root root 18728 2019-03-22 12:05:38.000000000 -0700 faillog -rwxr-xr-x 1 root root 26736 2018-01-08 08:05:31.000000000 -0800 faked-sysv -rwxr-xr-x 1 root root 30824 2018-01-08 08:05:31.000000000 -0800 faked-tcp lrwxrwxrwx 1 root root 26 2019-10-17 17:14:22.698358852 -0700 fakeroot -> /etc/alternatives/fakeroot -rwxr-xr-x 1 root root 3851 2018-01-08 08:05:31.000000000 -0800 fakeroot-sysv -rwxr-xr-x 1 root root 3846 2018-01-08 08:05:31.000000000 -0800 fakeroot-tcp -rwxr-xr-x 1 root root 26704 2020-09-16 11:43:15.000000000 -0700 fallocate -rwxr-xr-x 1 root root 22792 2020-05-12 06:31:09.000000000 -0700 file -rwxr-xr-x 1 root root 238080 2017-11-05 09:16:48.000000000 -0800 find -rwxr-xr-x 1 root root 30880 2020-09-16 11:43:15.000000000 -0700 flock -rwxr-xr-x 1 root root 43192 2018-01-18 01:43:49.000000000 -0800 fmt -rwxr-xr-x 1 root root 35000 2018-01-18 01:43:49.000000000 -0800 fold -rwxr-xr-x 1 root root 18512 2019-08-09 08:37:27.000000000 -0700 free lrwxrwxrwx 1 root root 22 2019-08-05 12:24:25.000000000 -0700 from -> /etc/alternatives/from lrwxrwxrwx 1 root root 21 2019-08-05 12:24:23.000000000 -0700 ftp -> /etc/alternatives/ftp lrwxrwxrwx 1 root root 5 2019-05-20 09:08:41.000000000 -0700 g++ -> g++-7 lrwxrwxrwx 1 root root 22 2019-12-04 06:25:41.000000000 -0800 g++-7 -> x86_64-linux-gnu-g++-7 -rwxr-xr-x 1 root root 277248 2020-03-23 05:26:28.000000000 -0700 gatttool -rwxr-xr-x 1 root root 658072 2018-02-10 21:02:41.000000000 -0800 gawk lrwxrwxrwx 1 root root 5 2019-05-20 09:08:41.000000000 -0700 gcc -> gcc-7 lrwxrwxrwx 1 root root 22 2019-12-04 06:25:41.000000000 -0800 gcc-7 -> x86_64-linux-gnu-gcc-7 lrwxrwxrwx 1 root root 8 2019-05-20 09:08:41.000000000 -0700 gcc-ar -> gcc-ar-7 lrwxrwxrwx 1 root root 25 2019-12-04 06:25:41.000000000 -0800 gcc-ar-7 -> x86_64-linux-gnu-gcc-ar-7 lrwxrwxrwx 1 root root 8 2019-05-20 09:08:41.000000000 -0700 gcc-nm -> gcc-nm-7 lrwxrwxrwx 1 root root 25 2019-12-04 06:25:41.000000000 -0800 gcc-nm-7 -> x86_64-linux-gnu-gcc-nm-7 lrwxrwxrwx 1 root root 12 2019-05-20 09:08:41.000000000 -0700 gcc-ranlib -> gcc-ranlib-7 lrwxrwxrwx 1 root root 29 2019-12-04 06:25:41.000000000 -0800 gcc-ranlib-7 -> x86_64-linux-gnu-gcc-ranlib-7 lrwxrwxrwx 1 root root 6 2019-05-20 09:08:41.000000000 -0700 gcov -> gcov-7 lrwxrwxrwx 1 root root 23 2019-12-04 06:25:41.000000000 -0800 gcov-7 -> x86_64-linux-gnu-gcov-7 lrwxrwxrwx 1 root root 11 2019-05-20 09:08:41.000000000 -0700 gcov-dump -> gcov-dump-7 lrwxrwxrwx 1 root root 28 2019-12-04 06:25:41.000000000 -0800 gcov-dump-7 -> x86_64-linux-gnu-gcov-dump-7 lrwxrwxrwx 1 root root 11 2019-05-20 09:08:41.000000000 -0700 gcov-tool -> gcov-tool-7 lrwxrwxrwx 1 root root 28 2019-12-04 06:25:41.000000000 -0800 gcov-tool-7 -> x86_64-linux-gnu-gcov-tool-7 -rwxr-xr-x 1 root root 22752 2020-06-04 10:25:26.000000000 -0700 gencat lrwxrwxrwx 1 root root 3 2018-02-09 18:09:07.000000000 -0800 geqn -> eqn -rwxr-xr-x 1 root root 30856 2020-06-04 10:25:26.000000000 -0700 getconf -rwxr-xr-x 1 root root 31224 2020-06-04 10:25:26.000000000 -0700 getent lrwxrwxrwx 1 root root 12 2019-08-05 12:24:25.000000000 -0700 getfacl -> /bin/getfacl -rwxr-xr-x 1 root root 10312 2018-01-22 05:49:48.000000000 -0800 getkeycodes -rwxr-xr-x 1 root root 14408 2020-09-16 11:43:15.000000000 -0700 getopt -rwxr-xr-x 1 root root 34896 2019-02-21 06:40:49.000000000 -0800 gettext -rwxr-xr-x 1 root root 4629 2019-02-21 06:40:49.000000000 -0800 gettext.sh lrwxrwxrwx 1 root root 12 2018-02-05 06:48:18.000000000 -0800 ginstall-info -> install-info -rwxr-xr-x 1 root root 2351792 2021-03-04 05:02:54.000000000 -0800 git lrwxrwxrwx 1 root root 3 2021-03-04 05:02:54.000000000 -0800 git-receive-pack -> git -rwxr-xr-x 1 root root 1309008 2021-03-04 05:02:54.000000000 -0800 git-shell lrwxrwxrwx 1 root root 3 2021-03-04 05:02:54.000000000 -0800 git-upload-archive -> git -rwxr-xr-x 1 root root 1317120 2021-03-04 05:02:54.000000000 -0800 git-upload-pack lrwxrwxrwx 1 root root 21 2021-02-12 00:45:35.000000000 -0800 gold -> x86_64-linux-gnu-gold -rwsr-xr-x 1 root root 75824 2019-03-22 12:05:38.000000000 -0700 gpasswd -rwxr-xr-x 1 root root 1021512 2020-09-17 06:57:57.000000000 -0700 gpg -rwxr-xr-x 1 root root 402120 2020-09-17 06:57:57.000000000 -0700 gpg-agent -rwxr-xr-x 1 root root 170312 2020-09-17 06:57:57.000000000 -0700 gpgconf -rwxr-xr-x 1 root root 158568 2020-09-17 06:57:57.000000000 -0700 gpg-connect-agent -rwxr-xr-x 1 root root 26696 2020-09-17 06:57:57.000000000 -0700 gpgparsemail -rwxr-xr-x 1 root root 502880 2020-09-17 06:57:57.000000000 -0700 gpgsm -rwxr-xr-x 1 root root 80336 2020-09-17 06:57:57.000000000 -0700 gpgsplit -rwxr-xr-x 1 root root 437264 2020-09-17 06:57:57.000000000 -0700 gpgv -rwxr-xr-x 1 root root 191504 2020-09-17 06:57:57.000000000 -0700 gpg-wks-server -rwxr-xr-x 1 root root 3443 2020-09-17 06:57:57.000000000 -0700 gpg-zip lrwxrwxrwx 1 root root 3 2018-02-09 18:09:07.000000000 -0800 gpic -> pic lrwxrwxrwx 1 root root 22 2021-02-12 00:45:35.000000000 -0800 gprof -> x86_64-linux-gnu-gprof -rwxr-xr-x 1 root root 107840 2018-02-09 18:09:07.000000000 -0800 groff -rwxr-xr-x 1 root root 2780 2018-02-09 18:09:07.000000000 -0800 grog -rwxr-xr-x 1 root root 169696 2018-02-09 18:09:07.000000000 -0800 grops -rwxr-xr-x 1 root root 124256 2018-02-09 18:09:07.000000000 -0800 grotty -rwxr-xr-x 1 root root 35000 2018-01-18 01:43:49.000000000 -0800 groups -rwxr-xr-x 1 root root 21883 2018-04-13 06:07:55.000000000 -0700 growpart -rwxr-xr-x 1 root root 245688 2020-07-30 18:49:49.000000000 -0700 grub-editenv -rwxr-xr-x 1 root root 675624 2020-07-30 18:49:49.000000000 -0700 grub-file -rwxr-xr-x 1 root root 808600 2020-07-30 18:49:49.000000000 -0700 grub-fstest -rwxr-xr-x 1 root root 241432 2020-07-30 18:49:49.000000000 -0700 grub-glue-efi -rwxr-xr-x 1 root root 1681 2020-07-30 18:49:49.000000000 -0700 grub-kbdcomp -rwxr-xr-x 1 root root 221224 2020-07-30 18:49:49.000000000 -0700 grub-menulst2cfg -rwxr-xr-x 1 root root 270680 2020-07-30 18:49:49.000000000 -0700 grub-mkfont -rwxr-xr-x 1 root root 336728 2020-07-30 18:49:49.000000000 -0700 grub-mkimage -rwxr-xr-x 1 root root 245848 2020-07-30 18:49:49.000000000 -0700 grub-mklayout -rwxr-xr-x 1 root root 378280 2020-07-30 18:49:49.000000000 -0700 grub-mknetdir -rwxr-xr-x 1 root root 249976 2020-07-30 18:49:49.000000000 -0700 grub-mkpasswd-pbkdf2 -rwxr-xr-x 1 root root 241144 2020-07-30 18:49:49.000000000 -0700 grub-mkrelpath -rwxr-xr-x 1 root root 841960 2020-07-30 18:49:49.000000000 -0700 grub-mkrescue -rwxr-xr-x 1 root root 460536 2020-07-30 18:49:49.000000000 -0700 grub-mkstandalone -rwxr-xr-x 1 root root 622808 2020-07-30 18:49:49.000000000 -0700 grub-mount lrwxrwxrwx 1 root root 34 2020-07-30 18:49:49.000000000 -0700 grub-ntldr-img -> ../lib/grub/i386-pc/grub-ntldr-img -rwxr-xr-x 1 root root 692392 2020-07-30 18:49:49.000000000 -0700 grub-render-label -rwxr-xr-x 1 root root 265848 2020-07-30 18:49:49.000000000 -0700 grub-script-check -rwxr-xr-x 1 root root 639672 2020-07-30 18:49:49.000000000 -0700 grub-syslinux2cfg lrwxrwxrwx 1 root root 3 2018-02-09 18:09:07.000000000 -0800 gtbl -> tbl -rwxr-xr-x 1 root root 29224 2020-10-19 03:57:24.000000000 -0700 h2ph -rwxr-xr-x 1 root root 60866 2020-10-19 03:57:24.000000000 -0700 h2xs -rwxr-xr-x 1 root root 137144 2020-03-23 05:26:28.000000000 -0700 hciattach -rwxr-xr-x 1 root root 147000 2020-03-23 05:26:28.000000000 -0700 hcitool lrwxrwxrwx 1 root root 7 2018-01-17 03:27:24.000000000 -0800 hd -> hexdump -rwxr-xr-x 1 root root 43224 2018-01-18 01:43:49.000000000 -0800 head -rwxr-xr-x 1 root root 2514 2018-02-02 12:37:32.000000000 -0800 helpztags -rwxr-xr-x 1 root root 14408 2020-03-23 05:26:28.000000000 -0700 hex2hcd -rwxr-xr-x 1 root root 26728 2018-01-17 03:27:24.000000000 -0800 hexdump -rwxr-xr-x 1 root root 129704 2021-02-15 05:08:25.000000000 -0800 host -rwxr-xr-x 1 root root 30904 2018-01-18 01:43:49.000000000 -0800 hostid -rwxr-xr-x 1 root root 18504 2020-07-08 11:59:14.000000000 -0700 hostnamectl -rwxr-xr-x 1 root root 185016 2018-02-17 10:27:46.000000000 -0800 htop -rwxr-xr-x 1 root root 10830 2020-06-03 11:41:50.000000000 -0700 hwe-support-status lrwxrwxrwx 1 root root 7 2020-09-16 11:43:15.000000000 -0700 i386 -> setarch -rwxr-xr-x 1 root root 63744 2020-06-04 10:25:26.000000000 -0700 iconv -rwxr-xr-x 1 root root 43224 2018-01-18 01:43:49.000000000 -0800 id -rwxr-xr-x 1 root root 3189 2018-02-10 21:02:41.000000000 -0800 igawk -rwxr-xr-x 1 root root 251616 2018-02-05 06:48:18.000000000 -0800 info lrwxrwxrwx 1 root root 29 2019-08-05 12:24:14.000000000 -0700 infobrowser -> /etc/alternatives/infobrowser -rwxr-xr-x 1 root root 59464 2018-05-23 01:08:27.000000000 -0700 infocmp lrwxrwxrwx 1 root root 3 2018-05-23 01:08:27.000000000 -0700 infotocap -> tic -rwxr-xr-x 1 root root 145664 2018-01-18 01:43:49.000000000 -0800 install -rwxr-xr-x 1 root root 44128 2018-02-05 06:48:18.000000000 -0800 install-info -rwxr-xr-x 1 root root 4370 2020-10-19 03:57:24.000000000 -0700 instmodsh -rwxr-xr-x 1 root root 26704 2020-09-16 11:43:15.000000000 -0700 ionice -rwxr-xr-x 1 root root 55440 2020-01-17 03:24:09.000000000 -0800 iostat -rwxr-xr-x 1 root root 26768 2020-09-16 11:43:15.000000000 -0700 ipcmk -rwxr-xr-x 1 root root 26704 2020-09-16 11:43:15.000000000 -0700 ipcrm -rwxr-xr-x 1 root root 51280 2020-09-16 11:43:15.000000000 -0700 ipcs lrwxrwxrwx 1 root root 19 2017-11-11 18:52:05.000000000 -0800 iptables-xml -> /sbin/xtables-multi -rwxr-xr-x 1 root root 10280 2017-12-30 10:15:02.000000000 -0800 ischroot lrwxrwxrwx 1 root root 14 2020-05-10 18:27:31.000000000 -0700 iscsiadm -> /sbin/iscsiadm -rwxr-xr-x 1 root root 47320 2018-01-18 01:43:49.000000000 -0800 join -rwxr-xr-x 1 root root 22520 2017-01-29 20:41:39.000000000 -0800 jq lrwxrwxrwx 1 root root 26 2019-08-05 12:24:22.000000000 -0700 jsondiff -> /etc/alternatives/jsondiff lrwxrwxrwx 1 root root 27 2019-08-05 12:24:22.000000000 -0700 jsonpatch -> /etc/alternatives/jsonpatch lrwxrwxrwx 1 root root 29 2019-08-05 12:24:16.000000000 -0700 jsonpointer -> /etc/alternatives/jsonpointer -rwxr-xr-x 1 root root 3959 2020-10-19 03:57:24.000000000 -0700 json_pp lrwxrwxrwx 1 root root 28 2019-08-05 12:24:20.000000000 -0700 jsonschema -> /etc/alternatives/jsonschema -rwxr-xr-x 1 root root 14408 2018-01-22 05:49:48.000000000 -0800 kbdinfo -rwxr-xr-x 1 root root 162496 2020-09-17 06:57:57.000000000 -0700 kbxutil lrwxrwxrwx 1 root root 7 2014-01-15 14:40:51.000000000 -0800 keep-one-running -> run-one -rwxr-xr-x 1 root root 4508 2018-01-28 07:58:17.000000000 -0800 kernel-install -rwxr-xr-x 1 root root 385 2018-01-09 04:15:19.000000000 -0800 keyring -rwxr-xr-x 1 root root 27768 2018-12-11 07:46:04.000000000 -0800 killall -rwxr-xr-x 1 root root 98152 2020-03-23 05:26:28.000000000 -0700 l2ping -rwxr-xr-x 1 root root 114792 2020-03-23 05:26:28.000000000 -0700 l2test -rwxr-xr-x 1 root root 624 2020-02-20 09:35:22.000000000 -0800 landscape-sysinfo -rwxr-xr-x 1 root root 43088 2020-09-16 11:43:15.000000000 -0700 last lrwxrwxrwx 1 root root 4 2020-09-16 11:43:15.000000000 -0700 lastb -> last -rwxr-xr-x 1 root root 18504 2019-03-22 12:05:38.000000000 -0700 lastlog -rwxr-xr-x 1 root root 7786 2018-02-25 16:58:23.000000000 -0800 lcf lrwxrwxrwx 1 root root 19 2021-02-12 00:45:35.000000000 -0800 ld -> x86_64-linux-gnu-ld lrwxrwxrwx 1 root root 23 2021-02-12 00:45:35.000000000 -0800 ld.bfd -> x86_64-linux-gnu-ld.bfd -rwxr-xr-x 1 root root 5422 2020-06-04 10:25:26.000000000 -0700 ldd lrwxrwxrwx 1 root root 24 2021-02-12 00:45:35.000000000 -0800 ld.gold -> x86_64-linux-gnu-ld.gold -rwxr-xr-x 1 root root 433 2017-01-21 11:21:39.000000000 -0800 ld-musl-config lrwxrwxrwx 1 root root 9 2019-08-05 12:23:23.000000000 -0700 less -> /bin/less lrwxrwxrwx 1 root root 13 2019-08-05 12:23:23.000000000 -0700 lessecho -> /bin/lessecho lrwxrwxrwx 1 root root 13 2019-08-05 12:23:23.000000000 -0700 lessfile -> /bin/lessfile lrwxrwxrwx 1 root root 12 2019-08-05 12:23:23.000000000 -0700 lesskey -> /bin/lesskey lrwxrwxrwx 1 root root 13 2019-08-05 12:23:23.000000000 -0700 lesspipe -> /bin/lesspipe -rwxr-xr-x 1 root root 92744 2018-08-04 12:16:12.000000000 -0700 lexgrog lrwxrwxrwx 1 root root 21 2020-07-27 14:56:20.488037770 -0700 lft -> /etc/alternatives/lft -rwxr-xr-x 1 root root 2493 2016-08-29 08:45:51.000000000 -0700 lft.db -rwxr-xr-x 1 root root 15775 2020-10-19 03:57:24.000000000 -0700 libnetcfg -rwxr-xr-x 1 root root 30904 2018-01-18 01:43:49.000000000 -0800 link lrwxrwxrwx 1 root root 7 2020-09-16 11:43:15.000000000 -0700 linux32 -> setarch lrwxrwxrwx 1 root root 7 2020-09-16 11:43:15.000000000 -0700 linux64 -> setarch -rwxr-xr-x 1 root root 1577 2017-01-21 07:43:27.000000000 -0800 linux-boot-prober -rwxr-xr-x 1 root root 4090 2016-06-20 19:48:57.000000000 -0700 linux-check-removal -rwxr-xr-x 1 root root 6320 2016-06-04 18:13:24.000000000 -0700 linux-update-symlinks -rwxr-xr-x 1 root root 2696 2016-09-16 23:12:36.000000000 -0700 linux-version -rwxr-xr-x 1 root root 22888 2020-07-15 08:16:31.000000000 -0700 lnstat lrwxrwxrwx 1 root root 13 2019-08-05 12:23:31.000000000 -0700 loadkeys -> /bin/loadkeys -rwxr-xr-x 1 root root 26760 2018-01-22 05:49:48.000000000 -0800 loadunimap -rwxr-xr-x 1 root root 50592 2020-06-04 10:25:26.000000000 -0700 locale -rwxr-xr-x 1 root root 10240 2020-08-05 01:14:19.000000000 -0700 locale-check -rwxr-xr-x 1 root root 22600 2020-07-08 11:59:14.000000000 -0700 localectl -rwxr-xr-x 1 root root 338744 2020-06-04 10:25:26.000000000 -0700 localedef lrwxrwxrwx 1 root root 24 2019-08-05 12:24:17.000000000 -0700 locate -> /etc/alternatives/locate -rwxr-xr-x 1 root root 47792 2020-09-16 11:43:15.000000000 -0700 logger -rwxr-xr-x 1 root root 30904 2018-01-18 01:43:49.000000000 -0800 logname -rwxr-xr-x 1 root root 10472 2018-01-17 03:27:24.000000000 -0800 look -rwxr-xr-x 1 root root 2885 2018-01-17 03:27:24.000000000 -0800 lorder -rwxr-xr-x 1 root root 10240 2020-01-22 06:40:45.000000000 -0800 lsattr -rwxr-xr-x 1 root root 3638 2017-08-07 14:55:07.000000000 -0700 lsb_release -rwxr-xr-x 1 root root 71760 2020-09-16 11:43:15.000000000 -0700 lscpu -rwxr-xr-x 1 root root 687056 2018-07-10 07:25:42.000000000 -0700 lshw -rwxr-xr-x 1 root root 625 2019-10-07 03:53:35.000000000 -0700 lsinitramfs -rwxr-xr-x 1 root root 71760 2020-09-16 11:43:15.000000000 -0700 lsipc -rwxr-xr-x 1 root root 35232 2020-09-16 11:43:15.000000000 -0700 lslocks -rwxr-xr-x 1 root root 63568 2020-09-16 11:43:15.000000000 -0700 lslogins -rwxr-xr-x 1 root root 43088 2020-09-16 11:43:15.000000000 -0700 lsmem -rwxr-xr-x 1 root root 38992 2020-09-16 11:43:15.000000000 -0700 lsns -rwxr-xr-x 1 root root 163224 2015-10-28 09:57:56.000000000 -0700 lsof -rwxr-xr-x 1 root root 81584 2019-02-10 10:25:12.000000000 -0800 lspci -rwxr-xr-x 1 root root 1081 2017-08-28 03:22:54.000000000 -0700 lspgpot -rwxr-xr-x 1 root root 117176 2017-04-21 13:59:17.000000000 -0700 lsusb -rwxr-xr-x 1 root root 333016 2016-10-12 23:20:41.000000000 -0700 ltrace -rwxr-xr-x 1 root root 10779792 2018-11-23 10:58:51.000000000 -0800 lxc -rwxr-xr-x 1 root root 18504 2020-03-31 09:20:51.000000000 -0700 lxcfs -rwxr-xr-x 1 root root 105 2018-11-23 10:58:51.000000000 -0800 lxd lrwxrwxrwx 1 root root 23 2019-08-05 12:23:24.000000000 -0700 lzcat -> /etc/alternatives/lzcat lrwxrwxrwx 1 root root 23 2019-08-05 12:23:24.000000000 -0700 lzcmp -> /etc/alternatives/lzcmp lrwxrwxrwx 1 root root 24 2019-08-05 12:23:24.000000000 -0700 lzdiff -> /etc/alternatives/lzdiff lrwxrwxrwx 1 root root 25 2019-08-05 12:23:24.000000000 -0700 lzegrep -> /etc/alternatives/lzegrep lrwxrwxrwx 1 root root 25 2019-08-05 12:23:24.000000000 -0700 lzfgrep -> /etc/alternatives/lzfgrep lrwxrwxrwx 1 root root 24 2019-08-05 12:23:24.000000000 -0700 lzgrep -> /etc/alternatives/lzgrep lrwxrwxrwx 1 root root 24 2019-08-05 12:23:24.000000000 -0700 lzless -> /etc/alternatives/lzless lrwxrwxrwx 1 root root 22 2019-08-05 12:23:24.000000000 -0700 lzma -> /etc/alternatives/lzma -rwxr-xr-x 1 root root 10384 2017-06-28 09:39:19.000000000 -0700 lzmainfo lrwxrwxrwx 1 root root 24 2019-08-05 12:23:24.000000000 -0700 lzmore -> /etc/alternatives/lzmore -rwxr-xr-x 1 root root 222792 2018-04-17 05:12:28.000000000 -0700 make -rwxr-xr-x 1 root root 4905 2018-04-17 05:12:28.000000000 -0700 make-first-existing-target -rwxr-xr-x 1 root root 107008 2018-08-04 12:16:12.000000000 -0700 man -rwxr-xr-x 1 root root 129760 2018-08-04 12:16:12.000000000 -0700 mandb -rwxr-xr-x 1 root root 1942 2017-12-04 05:46:48.000000000 -0800 manifest -rwxr-xr-x 1 root root 31200 2018-08-04 12:16:12.000000000 -0700 manpath -rwxr-xr-x 1 root root 22664 2018-01-22 05:49:48.000000000 -0800 mapscrn -rwxr-xr-x 1 root root 125416 2018-04-03 05:34:18.000000000 -0700 mawk -rwxr-xr-x 1 root root 30864 2020-09-16 11:43:15.000000000 -0700 mcookie -rwxr-xr-x 1 root root 43224 2018-01-18 01:43:49.000000000 -0800 md5sum lrwxrwxrwx 1 root root 6 2018-01-18 01:43:49.000000000 -0800 md5sum.textutils -> md5sum -rwxr-xr-x 1 root root 43136 2021-02-15 05:08:25.000000000 -0800 mdig -rwxr-xr-x 1 root root 10312 2020-09-16 11:43:15.000000000 -0700 mesg -rwxr-xr-x 1 root root 2194 2017-11-30 15:42:42.000000000 -0800 migrate-pubring-from-classic-gpg -rwxr-xr-x 1 root root 35098 2018-04-09 04:57:25.000000000 -0700 miniterm -rwxr-xr-x 1 root root 63672 2018-01-18 01:43:49.000000000 -0800 mkfifo -rwxr-xr-x 1 root root 16163 2018-01-22 05:49:48.000000000 -0800 mk_modmap -rwxr-xr-x 1 root root 189432 2018-07-05 12:49:18.000000000 -0700 mksquashfs -rwxr-sr-x 1 root mlocate 43088 2018-03-01 08:07:16.000000000 -0800 mlocate -rwxr-xr-x 1 root root 51360 2020-01-17 03:24:09.000000000 -0800 mpstat -rwxr-xr-x 1 root root 73664 2017-11-01 19:48:40.000000000 -0700 mtr -rwxr-xr-x 1 root root 6496 2020-06-04 10:25:26.000000000 -0700 mtrace -rwxr-xr-x 1 root root 26616 2017-11-01 19:48:40.000000000 -0700 mtr-packet -rwxr-xr-x 1 root root 173 2018-02-25 09:54:30.000000000 -0800 musl-gcc lrwxrwxrwx 1 root root 30 2018-02-25 09:54:30.000000000 -0800 musl-ldd -> /lib/x86_64-linux-musl/libc.so -rwxr-xr-x 1 root root 26704 2020-09-16 11:43:15.000000000 -0700 namei lrwxrwxrwx 1 root root 22 2019-08-05 12:22:59.000000000 -0700 nawk -> /etc/alternatives/nawk -rwxr-xr-x 1 root root 29480 2018-01-17 03:27:24.000000000 -0800 ncal -rwxr-xr-x 1 root root 204760 2018-04-15 18:11:39.000000000 -0700 ncat -rwxr-xr-x 1 root root 908 2018-02-09 18:09:07.000000000 -0800 neqn -rwxr-xr-x 1 root root 101064 2016-12-06 07:23:57.000000000 -0800 netkit-ftp -rwxr-xr-x 1 root root 18203 2018-10-15 05:12:24.000000000 -0700 networkd-dispatcher -rwsr-xr-x 1 root root 37136 2019-03-22 12:05:38.000000000 -0700 newgidmap -rwsr-xr-x 1 root root 40344 2019-03-22 12:05:38.000000000 -0700 newgrp -rwsr-xr-x 1 root root 37136 2019-03-22 12:05:38.000000000 -0700 newuidmap lrwxrwxrwx 1 root root 4 2017-12-04 05:46:48.000000000 -0800 NF -> col1 -rwxr-xr-x 1 root root 34896 2019-02-21 06:40:49.000000000 -0800 ngettext -rwxr-xr-x 1 root root 35000 2018-01-18 01:43:49.000000000 -0800 nice -rwxr-xr-x 1 root root 43288 2018-01-18 01:43:49.000000000 -0800 nl lrwxrwxrwx 1 root root 19 2021-02-12 00:45:35.000000000 -0800 nm -> x86_64-linux-gnu-nm -rwxr-xr-x 1 root root 2961432 2018-04-15 18:11:39.000000000 -0700 nmap -rwxr-xr-x 1 root root 35000 2018-01-18 01:43:49.000000000 -0800 nohup -rwxr-xr-x 1 root root 530776 2018-04-15 18:11:39.000000000 -0700 nping -rwxr-xr-x 1 root root 35000 2018-01-18 01:43:49.000000000 -0800 nproc -rwxr-xr-x 1 root root 3323 2018-02-09 18:09:07.000000000 -0800 nroff -rwxr-xr-x 1 root root 31008 2020-09-16 11:43:15.000000000 -0700 nsenter -rwxr-xr-x 1 root root 133640 2021-02-15 05:08:25.000000000 -0800 nslookup -rwxr-xr-x 1 root root 26696 2020-07-15 08:16:31.000000000 -0700 nstat -rwxr-xr-x 1 root root 67608 2021-02-15 05:08:25.000000000 -0800 nsupdate -rwxr-xr-x 1 root root 47224 2019-03-21 14:33:01.000000000 -0700 ntfsdecrypt -rwxr-xr-x 1 root root 145544 2020-08-17 18:58:51.000000000 -0700 ntpdc -rwxr-xr-x 1 root root 188584 2020-08-17 18:58:51.000000000 -0700 ntpq -rwxr-xr-x 1 root root 7980 2020-08-17 18:58:51.000000000 -0700 ntpsweep -rwxr-xr-x 1 root root 3560 2020-08-17 18:58:51.000000000 -0700 ntptrace -rwxr-xr-x 1 root root 63736 2018-01-18 01:43:49.000000000 -0800 numfmt -rwxr-xr-x 1 root root 149640 2020-03-23 05:26:28.000000000 -0700 obexctl lrwxrwxrwx 1 root root 24 2021-02-12 00:45:35.000000000 -0800 objcopy -> x86_64-linux-gnu-objcopy lrwxrwxrwx 1 root root 24 2021-02-12 00:45:35.000000000 -0800 objdump -> x86_64-linux-gnu-objdump -rwxr-xr-x 1 root root 67800 2018-01-18 01:43:49.000000000 -0800 od lrwxrwxrwx 1 root root 17 2018-03-20 06:19:42.000000000 -0700 on_ac_power -> /sbin/on_ac_power -rwxr-xr-x 1 root root 723944 2021-03-22 04:42:42.000000000 -0700 openssl -rwxr-xr-x 1 root root 4551 2017-01-31 12:30:39.000000000 -0800 os-prober lrwxrwxrwx 1 root root 23 2019-08-05 12:23:04.000000000 -0700 pager -> /etc/alternatives/pager -rwxr-xr-x 1 root root 88144 2020-09-16 11:43:15.000000000 -0700 partx -rwsr-xr-x 1 root root 59640 2019-03-22 12:05:38.000000000 -0700 passwd -rwxr-xr-x 1 root root 35032 2018-01-18 01:43:49.000000000 -0800 paste -rwxr-xr-x 1 root root 16642 2016-02-29 21:52:32.000000000 -0800 pastebinit -rwxr-xr-x 1 root root 182648 2019-07-23 05:12:54.000000000 -0700 patch -rwxr-xr-x 1 root root 35000 2018-01-18 01:43:49.000000000 -0800 pathchk lrwxrwxrwx 1 root root 5 2018-04-15 08:38:02.000000000 -0700 pbget -> pbput -rwxr-xr-x 1 root root 2569 2016-02-29 08:14:33.000000000 -0800 pbput lrwxrwxrwx 1 root root 5 2018-04-15 08:38:02.000000000 -0700 pbputs -> pbput -rwxr-xr-x 1 root root 14472 2019-02-10 10:25:12.000000000 -0800 pcimodules lrwxrwxrwx 1 root root 6 2018-10-25 04:11:00.000000000 -0700 pdb3 -> pdb3.6 lrwxrwxrwx 1 root root 23 2021-01-26 07:33:00.000000000 -0800 pdb3.6 -> ../lib/python3.6/pdb.py -rwxr-xr-x 1 root root 14328 2018-12-11 07:46:04.000000000 -0800 peekfd -rwxr-xr-x 2 root root 2097720 2020-10-19 03:57:24.000000000 -0700 perl -rwxr-xr-x 2 root root 2097720 2020-10-19 03:57:24.000000000 -0700 perl5.26.1 -rwxr-xr-x 1 root root 10216 2020-10-19 03:57:24.000000000 -0700 perl5.26-x86_64-linux-gnu -rwxr-xr-x 2 root root 45853 2020-10-19 03:57:24.000000000 -0700 perlbug -rwxr-xr-x 1 root root 125 2020-10-19 03:57:24.000000000 -0700 perldoc -rwxr-xr-x 1 root root 10864 2020-10-19 03:57:24.000000000 -0700 perlivp -rwxr-xr-x 2 root root 45853 2020-10-19 03:57:24.000000000 -0700 perlthanks lrwxrwxrwx 1 root root 22 2019-08-05 12:24:23.000000000 -0700 pftp -> /etc/alternatives/pftp -rwxr-xr-x 1 root root 26712 2019-08-09 08:37:27.000000000 -0700 pgrep -rwxr-xr-x 1 root root 208928 2018-02-09 18:09:07.000000000 -0800 pic lrwxrwxrwx 1 root root 22 2019-08-05 12:24:20.000000000 -0700 pico -> /etc/alternatives/pico -rwxr-xr-x 1 root root 8357 2020-10-19 03:57:24.000000000 -0700 piconv -rwxr-xr-x 1 root root 63648 2020-01-17 03:24:09.000000000 -0800 pidstat -rwxr-xr-x 2 root root 116944 2017-12-27 11:41:06.000000000 -0800 pigz lrwxrwxrwx 1 root root 26 2019-08-05 12:24:35.000000000 -0700 pinentry -> /etc/alternatives/pinentry -rwxr-xr-x 1 root root 63992 2018-02-05 17:18:30.000000000 -0800 pinentry-curses -rwxr-xr-x 1 root root 39128 2018-01-18 01:43:49.000000000 -0800 pinky -rwxr-xr-x 1 root root 293 2020-10-22 07:40:50.000000000 -0700 pip3 -rwxr-xr-x 1 root root 14328 2019-03-27 06:57:02.000000000 -0700 pkaction -rwxr-xr-x 1 root root 18504 2019-03-27 06:57:02.000000000 -0700 pkcheck -rwsr-xr-x 1 root root 22520 2019-03-27 06:57:02.000000000 -0700 pkexec -rwxr-xr-x 2 root root 51296 2017-04-21 13:54:08.000000000 -0700 pkg-config lrwxrwxrwx 1 root root 5 2019-08-09 08:37:27.000000000 -0700 pkill -> pgrep -rwxr-xr-x 1 root root 14328 2019-03-27 06:57:02.000000000 -0700 pkttyagent -rwxr-xr-x 1 root root 4533 2020-10-19 03:57:24.000000000 -0700 pl2pm -rwxr-xr-x 1 root root 18656 2020-06-04 10:25:26.000000000 -0700 pldd -rwxr-xr-x 1 root root 30808 2019-08-09 08:37:27.000000000 -0700 pmap -rwxr-xr-x 1 root root 4134 2020-10-19 03:57:24.000000000 -0700 pod2html -rwxr-xr-x 1 root root 15079 2020-10-19 03:57:24.000000000 -0700 pod2man -rwxr-xr-x 1 root root 10979 2020-10-19 03:57:24.000000000 -0700 pod2text -rwxr-xr-x 1 root root 3948 2020-10-19 03:57:24.000000000 -0700 pod2usage -rwxr-xr-x 1 root root 3658 2020-10-19 03:57:24.000000000 -0700 podchecker -rwxr-xr-x 1 root root 2527 2020-10-19 03:57:24.000000000 -0700 podselect -rwxr-xr-x 1 root root 8744 2018-05-29 13:13:20.000000000 -0700 pollinate -rwxr-xr-x 1 root root 71960 2018-01-18 01:43:49.000000000 -0800 pr -rwxr-xr-x 1 root root 47304 2018-02-09 18:09:07.000000000 -0800 preconv lrwxrwxrwx 1 root root 11 2016-07-15 05:06:12.000000000 -0700 print -> run-mailcap -rwxr-xr-x 1 root root 30904 2018-01-18 01:43:49.000000000 -0800 printenv -rwxr-xr-x 1 root root 22528 2018-01-17 03:27:24.000000000 -0800 printerbanner -rwxr-xr-x 1 root root 51384 2018-01-18 01:43:49.000000000 -0800 printf -rwxr-xr-x 1 root root 35424 2020-09-16 11:43:15.000000000 -0700 prlimit -rwxr-xr-x 1 root root 13588 2020-10-19 03:57:24.000000000 -0700 prove -rwxr-xr-x 1 root root 18504 2018-12-11 07:46:04.000000000 -0800 prtstat lrwxrwxrwx 1 root root 9 2018-01-22 05:49:48.000000000 -0800 psfaddtable -> psfxtable lrwxrwxrwx 1 root root 9 2018-01-22 05:49:48.000000000 -0800 psfgettable -> psfxtable lrwxrwxrwx 1 root root 9 2018-01-22 05:49:48.000000000 -0800 psfstriptable -> psfxtable -rwxr-xr-x 1 root root 18424 2018-01-22 05:49:48.000000000 -0800 psfxtable -rwxr-xr-x 1 root root 10232 2018-12-11 07:46:04.000000000 -0800 pslog -rwxr-xr-x 1 root root 27592 2018-12-11 07:46:04.000000000 -0800 pstree lrwxrwxrwx 1 root root 6 2018-12-11 07:46:04.000000000 -0800 pstree.x11 -> pstree -rwxr-xr-x 1 root root 3549 2020-10-19 03:57:24.000000000 -0700 ptar -rwxr-xr-x 1 root root 2628 2020-10-19 03:57:24.000000000 -0700 ptardiff -rwxr-xr-x 1 root root 4392 2020-10-19 03:57:24.000000000 -0700 ptargrep -rwxr-xr-x 1 root root 71928 2018-01-18 01:43:49.000000000 -0800 ptx -rwxr-xr-x 1 root root 1149 2017-12-04 05:46:48.000000000 -0800 purge-old-kernels -rwxr-xr-x 1 root root 10312 2019-08-09 08:37:27.000000000 -0700 pwdx -rwxr-xr-x 1 root root 7812 2018-10-25 04:11:00.000000000 -0700 py3clean -rwxr-xr-x 1 root root 12119 2018-10-25 04:11:00.000000000 -0700 py3compile lrwxrwxrwx 1 root root 31 2018-10-25 04:11:00.000000000 -0700 py3versions -> ../share/python3/py3versions.py lrwxrwxrwx 1 root root 26 2018-03-26 12:42:23.000000000 -0700 pybuild -> ../share/dh-python/pybuild lrwxrwxrwx 1 root root 8 2018-10-25 04:11:00.000000000 -0700 pydoc3 -> pydoc3.6 -rwxr-xr-x 1 root root 79 2021-01-26 07:33:00.000000000 -0800 pydoc3.6 lrwxrwxrwx 1 root root 12 2018-10-25 04:11:00.000000000 -0700 pygettext3 -> pygettext3.6 -rwxr-xr-x 1 root root 21547 2021-01-26 07:33:00.000000000 -0800 pygettext3.6 -rwxr-xr-x 1 root root 392 2020-03-16 10:24:46.000000000 -0700 pyhtmlizer3 -rwxr-xr-x 1 root root 372 2017-09-25 12:23:43.000000000 -0700 pyjwt3 lrwxrwxrwx 1 root root 9 2018-10-25 04:11:00.000000000 -0700 python3 -> python3.6 -rwxr-xr-x 2 root root 4526456 2021-01-26 07:33:00.000000000 -0800 python3.6 lrwxrwxrwx 1 root root 33 2021-01-26 07:33:00.000000000 -0800 python3.6-config -> x86_64-linux-gnu-python3.6-config -rwxr-xr-x 2 root root 4526456 2021-01-26 07:33:00.000000000 -0800 python3.6m lrwxrwxrwx 1 root root 34 2021-01-26 07:33:00.000000000 -0800 python3.6m-config -> x86_64-linux-gnu-python3.6m-config lrwxrwxrwx 1 root root 16 2018-10-25 04:11:00.000000000 -0700 python3-config -> python3.6-config -rwxr-xr-x 1 root root 1018 2017-10-28 13:10:15.000000000 -0700 python3-jsondiff -rwxr-xr-x 1 root root 3661 2017-10-28 13:10:15.000000000 -0700 python3-jsonpatch -rwxr-xr-x 1 root root 1342 2016-05-01 16:14:11.000000000 -0700 python3-jsonpointer -rwxr-xr-x 1 root root 398 2017-11-15 11:43:29.000000000 -0800 python3-jsonschema lrwxrwxrwx 1 root root 10 2018-10-25 04:11:00.000000000 -0700 python3m -> python3.6m lrwxrwxrwx 1 root root 17 2018-10-25 04:11:00.000000000 -0700 python3m-config -> python3.6m-config lrwxrwxrwx 1 root root 23 2021-02-12 00:45:35.000000000 -0800 ranlib -> x86_64-linux-gnu-ranlib lrwxrwxrwx 1 root root 21 2019-08-05 12:24:40.000000000 -0700 rcp -> /etc/alternatives/rcp -rwxr-xr-x 1 root root 144840 2020-03-23 05:26:28.000000000 -0700 rctest -rwxr-xr-x 1 root root 26696 2020-07-15 08:16:31.000000000 -0700 rdma lrwxrwxrwx 1 root root 24 2021-02-12 00:45:35.000000000 -0800 readelf -> x86_64-linux-gnu-readelf -rwxr-xr-x 1 root root 47320 2018-01-18 01:43:49.000000000 -0800 realpath -rwxr-xr-x 1 root root 14408 2020-09-16 11:43:15.000000000 -0700 rename.ul -rwxr-xr-x 1 root root 14408 2020-09-16 11:43:15.000000000 -0700 renice lrwxrwxrwx 1 root root 4 2018-05-23 01:08:27.000000000 -0700 reset -> tset -rwxr-xr-x 1 root root 18568 2018-01-22 05:49:48.000000000 -0800 resizecons -rwxr-xr-x 1 root root 38992 2020-09-16 11:43:15.000000000 -0700 resizepart -rwxr-xr-x 1 root root 10312 2020-09-16 11:43:15.000000000 -0700 rev -rwxr-xr-x 1 root root 107032 2020-03-23 05:26:28.000000000 -0700 rfcomm -rwxr-xr-x 1 root root 30 2017-07-11 06:19:59.000000000 -0700 rgrep -rwxr-xr-x 1 root root 87229416 2020-04-14 12:53:49.741997779 -0700 rjc lrwxrwxrwx 1 root root 24 2019-08-05 12:24:40.000000000 -0700 rlogin -> /etc/alternatives/rlogin -rwxr-xr-x 1 root root 208 2020-07-15 08:16:31.000000000 -0700 routef -rwxr-xr-x 1 root root 1656 2020-07-15 08:16:31.000000000 -0700 routel -rwxr-xr-x 1 root root 100896 2020-06-04 10:25:26.000000000 -0700 rpcgen lrwxrwxrwx 1 root root 21 2019-08-05 12:24:40.000000000 -0700 rsh -> /etc/alternatives/rsh -rwxr-xr-x 1 root root 500024 2020-02-18 13:03:13.000000000 -0800 rsync lrwxrwxrwx 1 root root 6 2020-07-15 08:16:31.000000000 -0700 rtstat -> lnstat -rwxr-xr-x 1 root root 35000 2018-01-18 01:43:49.000000000 -0800 runcon -rwxr-xr-x 1 root root 18161 2016-07-15 05:06:12.000000000 -0700 run-mailcap -rwxr-xr-x 1 root root 3592 2014-01-15 14:24:04.000000000 -0800 run-one lrwxrwxrwx 1 root root 7 2014-01-15 14:40:51.000000000 -0800 run-one-constantly -> run-one lrwxrwxrwx 1 root root 7 2014-01-15 14:40:51.000000000 -0800 run-one-until-failure -> run-one lrwxrwxrwx 1 root root 7 2014-01-15 14:40:51.000000000 -0800 run-one-until-success -> run-one lrwxrwxrwx 1 root root 7 2014-01-15 14:40:51.000000000 -0800 run-this-one -> run-one lrwxrwxrwx 1 root root 23 2019-08-05 12:23:26.000000000 -0700 rview -> /etc/alternatives/rview lrwxrwxrwx 1 root root 22 2019-08-05 12:24:27.000000000 -0700 rvim -> /etc/alternatives/rvim -rwxr-xr-x 1 root root 313824 2020-01-17 03:24:09.000000000 -0800 sadf lrwxrwxrwx 1 root root 21 2019-10-30 14:02:28.138438060 -0700 sar -> /etc/alternatives/sar -rwxr-xr-x 1 root root 120720 2020-01-17 03:24:09.000000000 -0800 sar.sysstat -rwxr-xr-x 1 root root 10469 2017-12-30 10:15:02.000000000 -0800 savelog -rwxr-xr-x 1 root root 100496 2019-03-04 04:17:51.000000000 -0800 scp -rwxr-xr-x 1 root root 465928 2021-02-23 09:46:52.000000000 -0800 screen -rwxr-xr-x 1 root root 10232 2018-01-22 05:49:48.000000000 -0800 screendump -rwxr-xr-x 1 root root 30792 2020-09-16 11:43:15.000000000 -0700 script -rwxr-xr-x 1 root root 26704 2020-09-16 11:43:15.000000000 -0700 scriptreplay -rwxr-xr-x 1 root root 51296 2017-08-04 14:20:16.000000000 -0700 sdiff -rwxr-xr-x 1 root root 209848 2020-03-23 05:26:28.000000000 -0700 sdptool lrwxrwxrwx 1 root root 11 2016-07-15 05:06:12.000000000 -0700 see -> run-mailcap -rwxr-xr-x 1 root root 2442 2018-03-12 03:17:53.000000000 -0700 select-editor -rwxr-xr-x 1 root root 1209 2018-03-12 03:17:53.000000000 -0700 sensible-browser -rwxr-xr-x 1 root root 1109 2018-03-12 03:17:53.000000000 -0700 sensible-editor -rwxr-xr-x 1 root root 433 2018-03-12 03:17:53.000000000 -0700 sensible-pager -rwxr-xr-x 1 root root 47288 2018-01-18 01:43:49.000000000 -0800 seq -rwxr-xr-x 1 root root 18784 2020-09-16 11:43:15.000000000 -0700 setarch lrwxrwxrwx 1 root root 12 2019-08-05 12:24:25.000000000 -0700 setfacl -> /bin/setfacl -rwxr-xr-x 1 root root 10312 2018-01-22 05:49:48.000000000 -0800 setkeycodes -rwxr-xr-x 1 root root 14392 2018-01-22 05:49:48.000000000 -0800 setleds -rwxr-xr-x 1 root root 10312 2018-01-22 05:49:48.000000000 -0800 setlogcons -rwxr-xr-x 1 root root 10344 2018-01-22 05:49:48.000000000 -0800 setmetamode -rwxr-xr-x 1 root root 26704 2019-02-10 10:25:12.000000000 -0800 setpci -rwxr-xr-x 1 root root 10312 2020-09-16 11:43:15.000000000 -0700 setsid -rwxr-xr-x 1 root root 43088 2020-09-16 11:43:15.000000000 -0700 setterm -rwxr-xr-x 1 root root 153960 2019-03-04 04:17:51.000000000 -0800 sftp lrwxrwxrwx 1 root root 6 2019-03-22 12:05:38.000000000 -0700 sg -> newgrp -rwxr-xr-x 1 root root 47320 2018-01-18 01:43:49.000000000 -0800 sha1sum -rwxr-xr-x 1 root root 55512 2018-01-18 01:43:49.000000000 -0800 sha224sum -rwxr-xr-x 1 root root 55512 2018-01-18 01:43:49.000000000 -0800 sha256sum -rwxr-xr-x 1 root root 59608 2018-01-18 01:43:49.000000000 -0800 sha384sum -rwxr-xr-x 1 root root 59608 2018-01-18 01:43:49.000000000 -0800 sha512sum -rwxr-xr-x 1 root root 9371 2020-10-19 03:57:24.000000000 -0700 shasum -rwxr-xr-x 1 root root 18504 2018-01-22 05:49:48.000000000 -0800 showconsolefont -rwxr-xr-x 1 root root 14408 2018-01-22 05:49:48.000000000 -0800 showkey -rwxr-xr-x 1 root root 59608 2018-01-18 01:43:49.000000000 -0800 shred -rwxr-xr-x 1 root root 55480 2018-01-18 01:43:49.000000000 -0800 shuf lrwxrwxrwx 1 root root 21 2021-02-12 00:45:35.000000000 -0800 size -> x86_64-linux-gnu-size -rwxr-xr-x 1 root root 26704 2019-08-09 08:37:27.000000000 -0700 skill -rwxr-xr-x 1 root root 18512 2019-08-09 08:37:27.000000000 -0700 slabtop lrwxrwxrwx 1 root root 3 2019-03-04 04:17:51.000000000 -0800 slogin -> ssh -rwxr-xr-x 1 root root 34824 2018-04-03 05:43:49.000000000 -0700 slurm -rwxr-xr-x 1 root root 19428040 2021-02-02 00:21:12.000000000 -0800 snap lrwxrwxrwx 1 root root 20 2021-02-02 00:21:12.000000000 -0800 snapctl -> ../lib/snapd/snapctl -rwxr-xr-x 1 root root 39048 2021-02-02 00:21:12.000000000 -0800 snapfuse lrwxrwxrwx 1 root root 5 2019-08-09 08:37:27.000000000 -0700 snice -> skill -rwxr-xr-x 1 root root 165384 2020-08-17 18:58:51.000000000 -0700 sntp -rwxr-xr-x 1 root root 30920 2018-02-09 18:09:07.000000000 -0800 soelim -rwxr-xr-x 1 root root 113120 2018-01-18 01:43:49.000000000 -0800 sort lrwxrwxrwx 1 root root 28 2020-07-07 12:34:42.000000000 -0700 sosreport -> ../share/sosreport/sosreport -rwxr-xr-x 1 root root 4308 2020-06-04 10:25:26.000000000 -0700 sotruss -rwxr-xr-x 1 root root 19150 2020-10-19 03:57:24.000000000 -0700 splain -rwxr-xr-x 1 root root 55936 2018-01-18 01:43:49.000000000 -0800 split -rwxr-xr-x 1 root root 10232 2018-01-22 05:49:48.000000000 -0800 splitfont -rwxr-xr-x 1 root root 26840 2020-06-04 10:25:26.000000000 -0700 sprof -rwxr-xr-x 1 root root 727848 2019-03-04 04:17:51.000000000 -0800 ssh -rwxr-xr-x 1 root root 346248 2019-03-04 04:17:51.000000000 -0800 ssh-add -rwxr-sr-x 1 root ssh 362640 2019-03-04 04:17:51.000000000 -0800 ssh-agent -rwxr-xr-x 1 root root 1456 2018-01-16 09:39:31.000000000 -0800 ssh-argv0 -rwxr-xr-x 1 root root 10658 2017-10-02 12:34:26.000000000 -0700 ssh-copy-id -rwxr-xr-x 1 root root 1771 2018-05-16 16:40:43.000000000 -0700 ssh-import-id -rwxr-xr-x 1 root root 782 2016-01-29 21:11:11.000000000 -0800 ssh-import-id-gh -rwxr-xr-x 1 root root 782 2016-01-29 21:11:25.000000000 -0800 ssh-import-id-lp -rwxr-xr-x 1 root root 420000 2019-03-04 04:17:51.000000000 -0800 ssh-keygen -rwxr-xr-x 1 root root 420000 2019-03-04 04:17:51.000000000 -0800 ssh-keyscan -rwxr-xr-x 1 root root 80088 2018-01-18 01:43:49.000000000 -0800 stat -rwxr-xr-x 1 root root 47288 2018-01-18 01:43:49.000000000 -0800 stdbuf -rwxr-xr-x 1 root root 1378552 2018-04-11 07:18:47.000000000 -0700 strace -rwxr-xr-x 1 root root 2644 2018-02-13 15:00:00.000000000 -0800 strace-log-merge lrwxrwxrwx 1 root root 24 2021-02-12 00:45:35.000000000 -0800 strings -> x86_64-linux-gnu-strings lrwxrwxrwx 1 root root 22 2021-02-12 00:45:35.000000000 -0800 strip -> x86_64-linux-gnu-strip -rwsr-xr-x 1 root root 149080 2021-01-19 06:36:00.000000000 -0800 sudo lrwxrwxrwx 1 root root 4 2021-01-19 06:36:00.000000000 -0800 sudoedit -> sudo -rwxr-xr-x 1 root root 56128 2021-01-19 06:36:00.000000000 -0800 sudoreplay -rwxr-xr-x 1 root root 39104 2018-01-18 01:43:49.000000000 -0800 sum -rwxr-xr-x 1 root root 113384 2020-09-17 06:57:57.000000000 -0700 symcryptrun -rwxr-xr-x 1 root root 1558792 2020-07-08 11:59:14.000000000 -0700 systemd-analyze -rwxr-xr-x 1 root root 10312 2020-07-08 11:59:14.000000000 -0700 systemd-cat -rwxr-xr-x 1 root root 14408 2020-07-08 11:59:14.000000000 -0700 systemd-cgls -rwxr-xr-x 1 root root 30816 2020-07-08 11:59:14.000000000 -0700 systemd-cgtop -rwxr-xr-x 1 root root 22600 2020-07-08 11:59:14.000000000 -0700 systemd-delta -rwxr-xr-x 1 root root 10304 2020-07-08 11:59:14.000000000 -0700 systemd-detect-virt -rwxr-xr-x 1 root root 43104 2020-07-08 11:59:14.000000000 -0700 systemd-mount -rwxr-xr-x 1 root root 10304 2020-07-08 11:59:14.000000000 -0700 systemd-path -rwxr-xr-x 1 root root 88136 2020-07-08 11:59:14.000000000 -0700 systemd-resolve -rwxr-xr-x 1 root root 43080 2020-07-08 11:59:14.000000000 -0700 systemd-run -rwxr-xr-x 1 root root 18504 2020-07-08 11:59:14.000000000 -0700 systemd-socket-activate -rwxr-xr-x 1 root root 14408 2020-07-08 11:59:14.000000000 -0700 systemd-stdio-bridge lrwxrwxrwx 1 root root 13 2020-07-08 11:59:14.000000000 -0700 systemd-umount -> systemd-mount -rwxr-xr-x 1 root root 14328 2018-05-23 01:08:27.000000000 -0700 tabs -rwxr-xr-x 1 root root 39096 2018-01-18 01:43:49.000000000 -0800 tac -rwxr-xr-x 1 root root 67832 2018-01-18 01:43:49.000000000 -0800 tail -rwxr-xr-x 1 root root 39056 2020-01-17 03:24:09.000000000 -0800 tapestat -rwxr-xr-x 1 root root 30800 2020-09-16 11:43:15.000000000 -0700 taskset -rwxr-xr-x 1 root root 129224 2018-02-09 18:09:07.000000000 -0800 tbl -rwxr-xr-x 1 root root 35032 2018-01-18 01:43:49.000000000 -0800 tee lrwxrwxrwx 1 root root 24 2019-08-05 12:24:22.000000000 -0700 telnet -> /etc/alternatives/telnet -rwxr-xr-x 1 root root 111024 2016-11-07 10:06:40.000000000 -0800 telnet.netkit -rwxr-xr-x 1 root root 47288 2018-01-18 01:43:49.000000000 -0800 test -rwxr-xr-x 1 root root 84080 2018-05-23 01:08:27.000000000 -0700 tic -rwxr-xr-x 1 root root 14720 2017-04-21 13:57:03.000000000 -0700 time -rwxr-xr-x 1 root root 22600 2020-07-08 11:59:14.000000000 -0700 timedatectl -rwxr-xr-x 1 root root 39552 2018-01-18 01:43:49.000000000 -0800 timeout -rwxr-xr-x 1 root root 386 2020-03-16 10:24:46.000000000 -0700 tkconch3 -rwxr-xr-x 1 root root 14424 2019-08-09 08:37:27.000000000 -0700 tload -rwxr-xr-x 1 root root 577088 2019-07-04 12:45:07.000000000 -0700 tmux -rwxr-xr-x 1 root root 14328 2018-05-23 01:08:27.000000000 -0700 toe -rwxr-xr-x 1 root root 108304 2019-08-09 08:37:27.000000000 -0700 top lrwxrwxrwx 1 root root 10 2019-08-05 12:23:03.000000000 -0700 touch -> /bin/touch -rwxr-xr-x 1 root root 18456 2018-05-23 01:08:27.000000000 -0700 tput -rwxr-xr-x 1 root root 47288 2018-01-18 01:43:49.000000000 -0800 tr -rwxr-xr-x 1 root root 14344 2019-06-28 04:05:23.000000000 -0700 tracepath lrwxrwxrwx 1 root root 28 2020-07-27 14:56:20.508049125 -0700 traceproto -> /etc/alternatives/traceproto -rwxr-xr-x 1 root root 2885 2016-08-29 08:45:51.000000000 -0700 traceproto.db lrwxrwxrwx 1 root root 28 2020-07-27 14:56:20.460021872 -0700 traceroute -> /etc/alternatives/traceroute lrwxrwxrwx 1 root root 29 2019-08-05 12:24:21.000000000 -0700 traceroute6 -> /etc/alternatives/traceroute6 lrwxrwxrwx 1 root root 13 2016-08-29 08:45:51.000000000 -0700 traceroute6.db -> traceroute.db -rwsr-xr-x 1 root root 18448 2019-06-28 04:05:23.000000000 -0700 traceroute6.iputils -rwxr-xr-x 1 root root 68768 2016-08-29 08:45:51.000000000 -0700 traceroute.db -rwxr-xr-x 1 root root 1618 2016-08-29 08:45:51.000000000 -0700 traceroute-nanog -rwxr-xr-x 1 root root 382 2020-03-16 10:24:46.000000000 -0700 trial3 -rwxr-xr-x 1 root root 736608 2018-02-09 18:09:07.000000000 -0800 troff -rwxr-xr-x 1 root root 39096 2018-01-18 01:43:49.000000000 -0800 truncate -rwxr-xr-x 1 root root 22528 2018-05-23 01:08:27.000000000 -0700 tset -rwxr-xr-x 1 root root 35000 2018-01-18 01:43:49.000000000 -0800 tsort -rwxr-xr-x 1 root root 30904 2018-01-18 01:43:49.000000000 -0800 tty -rwxr-xr-x 1 root root 382 2020-03-16 10:24:46.000000000 -0700 twist3 -rwxr-xr-x 1 root root 384 2020-03-16 10:24:46.000000000 -0700 twistd3 -rwxr-xr-x 1 root root 15397 2020-06-04 10:25:26.000000000 -0700 tzselect lrwxrwxrwx 1 root root 16 2018-03-21 10:20:04.000000000 -0700 ua -> ubuntu-advantage -rwxr-xr-x 1 root root 4596 2018-03-21 10:20:04.000000000 -0700 ubuntu-advantage lrwxrwxrwx 1 root root 10 2021-01-26 04:21:46.000000000 -0800 ubuntu-bug -> apport-bug lrwxrwxrwx 1 root root 25 2021-02-02 00:21:12.000000000 -0800 ubuntu-core-launcher -> ../lib/snapd/snap-confine -rwxr-xr-x 1 root root 8033 2020-06-03 11:41:50.000000000 -0700 ubuntu-support-status -rwxr-xr-x 1 root root 40685 2018-02-25 16:58:23.000000000 -0800 ucf -rwxr-xr-x 1 root root 19367 2018-02-25 16:58:23.000000000 -0800 ucfq -rwxr-xr-x 1 root root 10722 2018-02-25 16:58:23.000000000 -0800 ucfr -rwxr-xr-x 1 root root 14344 2018-01-17 03:27:24.000000000 -0800 ul -rwxr-xr-x 1 root root 84529 2020-02-17 03:37:03.000000000 -0800 unattended-upgrade lrwxrwxrwx 1 root root 18 2020-02-17 03:37:03.000000000 -0800 unattended-upgrades -> unattended-upgrade -rwxr-xr-x 1 root root 39128 2018-01-18 01:43:49.000000000 -0800 unexpand -rwxr-xr-x 1 root root 530 2018-01-22 05:49:48.000000000 -0800 unicode_stop -rwxr-xr-x 1 root root 43224 2018-01-18 01:43:49.000000000 -0800 uniq -rwxr-xr-x 1 root root 30904 2018-01-18 01:43:49.000000000 -0800 unlink lrwxrwxrwx 1 root root 24 2019-08-05 12:23:24.000000000 -0700 unlzma -> /etc/alternatives/unlzma -rwxr-xr-x 1 root root 2859 2019-10-07 03:53:35.000000000 -0700 unmkinitramfs -rwxr-xr-x 2 root root 116944 2017-12-27 11:41:06.000000000 -0800 unpigz -rwxr-xr-x 1 root root 18712 2020-09-16 11:43:15.000000000 -0700 unshare -rwxr-xr-x 1 root root 98008 2018-07-05 12:49:18.000000000 -0700 unsquashfs lrwxrwxrwx 1 root root 2 2017-06-28 09:39:19.000000000 -0700 unxz -> xz -rwxr-xr-x 1 root root 47112 2019-09-05 14:05:14.000000000 -0700 update-alternatives lrwxrwxrwx 1 root root 26 2019-08-05 12:24:17.000000000 -0700 updatedb -> /etc/alternatives/updatedb -rwxr-xr-x 1 root root 47184 2018-03-01 08:07:16.000000000 -0800 updatedb.mlocate -rwxr-xr-x 1 root root 11635 2020-08-17 18:58:51.000000000 -0700 update-leap -rwxr-xr-x 1 root root 51392 2017-10-10 13:56:05.000000000 -0700 update-mime-database -rwxr-xr-x 1 root root 14328 2019-01-25 08:38:41.000000000 -0800 upower -rwxr-xr-x 1 root root 10312 2019-08-09 08:37:27.000000000 -0700 uptime -rwxr-xr-x 1 root root 4216 2017-04-21 13:59:17.000000000 -0700 usb-devices -rwxr-xr-x 1 root root 22608 2017-04-21 13:59:17.000000000 -0700 usbhid-dump -rwxr-xr-x 1 root root 35000 2018-01-18 01:43:49.000000000 -0800 users -rwxr-xr-x 1 root root 22600 2020-09-16 11:43:15.000000000 -0700 utmpdump -rwxr-xr-x 1 root root 14408 2020-09-16 11:43:15.000000000 -0700 uuidgen -rwxr-xr-x 1 root root 34896 2020-09-16 11:43:15.000000000 -0700 uuidparse -rwxr-xr-x 1 root root 6913 2018-04-13 06:07:55.000000000 -0700 vcs-run -rwxr-xr-x 1 root root 129248 2020-03-25 03:33:50.000000000 -0700 VGAuthService lrwxrwxrwx 1 root root 20 2019-08-05 12:23:26.000000000 -0700 vi -> /etc/alternatives/vi lrwxrwxrwx 1 root root 22 2019-08-05 12:23:26.000000000 -0700 view -> /etc/alternatives/view -rwxr-xr-x 1 root root 2640 2017-12-04 05:46:48.000000000 -0800 vigpg lrwxrwxrwx 1 root root 21 2019-08-05 12:24:27.000000000 -0700 vim -> /etc/alternatives/vim -rwxr-xr-x 1 root root 2675336 2020-10-13 08:49:09.000000000 -0700 vim.basic lrwxrwxrwx 1 root root 25 2019-08-05 12:24:27.000000000 -0700 vimdiff -> /etc/alternatives/vimdiff -rwxr-xr-x 1 root root 1108024 2020-10-13 08:49:09.000000000 -0700 vim.tiny -rwxr-xr-x 1 root root 2099 2020-10-13 08:49:09.000000000 -0700 vimtutor -rwxr-xr-x 1 root root 51696 2020-03-25 03:33:50.000000000 -0700 vmhgfs-fuse -rwxr-xr-x 1 root root 34912 2019-08-09 08:37:27.000000000 -0700 vmstat -rwxr-xr-x 1 root root 55552 2020-03-25 03:33:50.000000000 -0700 vmtoolsd -rwxr-xr-x 1 root root 10312 2020-03-25 03:33:50.000000000 -0700 vmware-checkvm -rwxr-xr-x 1 root root 10312 2020-03-25 03:33:50.000000000 -0700 vmware-hgfsclient -rwxr-xr-x 1 root root 18424 2020-03-25 03:33:50.000000000 -0700 vmware-namespace-cmd -rwxr-xr-x 1 root root 18424 2020-03-25 03:33:50.000000000 -0700 vmware-rpctool -rwxr-xr-x 1 root root 39200 2020-03-25 03:33:50.000000000 -0700 vmware-toolbox-cmd -rwxr-xr-x 1 root root 14328 2020-03-25 03:33:50.000000000 -0700 vmware-vgauth-cmd -rwxr-xr-x 1 root root 18440 2020-03-25 03:33:50.000000000 -0700 vmware-vgauth-smoketest -rwxr-xr-x 1 root root 18848 2020-03-25 03:33:50.000000000 -0700 vmware-vmblock-fuse -rwxr-xr-x 1 root root 10312 2020-03-25 03:33:50.000000000 -0700 vmware-xferlogs -rwxr-xr-x 1 root root 10232 2017-03-27 21:22:15.000000000 -0700 volname lrwxrwxrwx 1 root root 19 2019-08-05 12:23:04.000000000 -0700 w -> /etc/alternatives/w -rwxr-sr-x 1 root tty 30800 2020-09-16 11:43:15.000000000 -0700 wall -rwxr-xr-x 1 root root 22952 2019-08-09 08:37:27.000000000 -0700 watch -rwxr-xr-x 1 root root 14328 2020-09-17 06:57:57.000000000 -0700 watchgnupg -rwxr-xr-x 1 root root 43200 2018-01-18 01:43:49.000000000 -0800 wc -rwxr-xr-x 1 root root 499264 2019-04-08 11:51:50.000000000 -0700 wget -rwxr-xr-x 1 root root 48104 2018-08-04 12:16:12.000000000 -0700 whatis -rwxr-xr-x 1 root root 27144 2020-09-16 11:43:15.000000000 -0700 whereis lrwxrwxrwx 1 root root 10 2019-08-05 12:23:03.000000000 -0700 which -> /bin/which -rwxr-xr-x 1 root root 51416 2018-01-18 01:43:49.000000000 -0800 who -rwxr-xr-x 1 root root 30904 2018-01-18 01:43:49.000000000 -0800 whoami -rwxr-xr-x 1 root root 2107 2017-12-04 05:46:48.000000000 -0800 wifi-status -rwxr-xr-x 1 root root 22536 2018-04-03 05:19:52.000000000 -0700 wmdocker -rwxr-xr-x 1 root root 18504 2019-08-09 08:37:27.000000000 -0700 w.procps lrwxrwxrwx 1 root root 23 2019-08-05 12:24:25.000000000 -0700 write -> /etc/alternatives/write lrwxrwxrwx 1 root root 7 2020-09-16 11:43:15.000000000 -0700 x86_64 -> setarch -rwxr-xr-x 1 root root 31280 2021-02-12 00:45:35.000000000 -0800 x86_64-linux-gnu-addr2line -rwxr-xr-x 1 root root 59640 2021-02-12 00:45:35.000000000 -0800 x86_64-linux-gnu-ar -rwxr-xr-x 1 root root 917488 2021-02-12 00:45:35.000000000 -0800 x86_64-linux-gnu-as -rwxr-xr-x 1 root root 26744 2021-02-12 00:45:35.000000000 -0800 x86_64-linux-gnu-c++filt lrwxrwxrwx 1 root root 5 2019-05-20 09:08:41.000000000 -0700 x86_64-linux-gnu-cpp -> cpp-7 -rwxr-xr-x 1 root root 1047488 2019-12-04 06:25:41.000000000 -0800 x86_64-linux-gnu-cpp-7 -rwxr-xr-x 1 root root 2886928 2021-02-12 00:45:35.000000000 -0800 x86_64-linux-gnu-dwp -rwxr-xr-x 1 root root 31184 2021-02-12 00:45:35.000000000 -0800 x86_64-linux-gnu-elfedit lrwxrwxrwx 1 root root 5 2019-05-20 09:08:41.000000000 -0700 x86_64-linux-gnu-g++ -> g++-7 -rwxr-xr-x 1 root root 1047488 2019-12-04 06:25:41.000000000 -0800 x86_64-linux-gnu-g++-7 lrwxrwxrwx 1 root root 5 2019-05-20 09:08:41.000000000 -0700 x86_64-linux-gnu-gcc -> gcc-7 -rwxr-xr-x 1 root root 1047488 2019-12-04 06:25:41.000000000 -0800 x86_64-linux-gnu-gcc-7 lrwxrwxrwx 1 root root 8 2019-05-20 09:08:41.000000000 -0700 x86_64-linux-gnu-gcc-ar -> gcc-ar-7 -rwxr-xr-x 1 root root 31200 2019-12-04 06:25:41.000000000 -0800 x86_64-linux-gnu-gcc-ar-7 lrwxrwxrwx 1 root root 8 2019-05-20 09:08:41.000000000 -0700 x86_64-linux-gnu-gcc-nm -> gcc-nm-7 -rwxr-xr-x 1 root root 31200 2019-12-04 06:25:41.000000000 -0800 x86_64-linux-gnu-gcc-nm-7 lrwxrwxrwx 1 root root 12 2019-05-20 09:08:41.000000000 -0700 x86_64-linux-gnu-gcc-ranlib -> gcc-ranlib-7 -rwxr-xr-x 1 root root 31200 2019-12-04 06:25:41.000000000 -0800 x86_64-linux-gnu-gcc-ranlib-7 lrwxrwxrwx 1 root root 6 2019-05-20 09:08:41.000000000 -0700 x86_64-linux-gnu-gcov -> gcov-7 -rwxr-xr-x 1 root root 630880 2019-12-04 06:25:41.000000000 -0800 x86_64-linux-gnu-gcov-7 lrwxrwxrwx 1 root root 11 2019-05-20 09:08:41.000000000 -0700 x86_64-linux-gnu-gcov-dump -> gcov-dump-7 -rwxr-xr-x 1 root root 511928 2019-12-04 06:25:41.000000000 -0800 x86_64-linux-gnu-gcov-dump-7 lrwxrwxrwx 1 root root 11 2019-05-20 09:08:41.000000000 -0700 x86_64-linux-gnu-gcov-tool -> gcov-tool-7 -rwxr-xr-x 1 root root 548856 2019-12-04 06:25:41.000000000 -0800 x86_64-linux-gnu-gcov-tool-7 lrwxrwxrwx 1 root root 24 2021-02-12 00:45:35.000000000 -0800 x86_64-linux-gnu-gold -> x86_64-linux-gnu-ld.gold -rwxr-xr-x 1 root root 102120 2021-02-12 00:45:35.000000000 -0800 x86_64-linux-gnu-gprof lrwxrwxrwx 1 root root 23 2021-02-12 00:45:35.000000000 -0800 x86_64-linux-gnu-ld -> x86_64-linux-gnu-ld.bfd -rwxr-xr-x 1 root root 1783496 2021-02-12 00:45:35.000000000 -0800 x86_64-linux-gnu-ld.bfd -rwxr-xr-x 1 root root 3111952 2021-02-12 00:45:35.000000000 -0800 x86_64-linux-gnu-ld.gold -rwxr-xr-x 1 root root 44312 2021-02-12 00:45:35.000000000 -0800 x86_64-linux-gnu-nm -rwxr-xr-x 1 root root 235720 2021-02-12 00:45:35.000000000 -0800 x86_64-linux-gnu-objcopy -rwxr-xr-x 1 root root 414256 2021-02-12 00:45:35.000000000 -0800 x86_64-linux-gnu-objdump lrwxrwxrwx 1 root root 34 2020-04-14 09:35:39.217683591 -0700 x86_64-linux-gnu-pkg-config -> /usr/share/pkg-config-crosswrapper lrwxrwxrwx 1 root root 34 2021-01-26 07:33:00.000000000 -0800 x86_64-linux-gnu-python3.6-config -> x86_64-linux-gnu-python3.6m-config -rwxr-xr-x 1 root root 3283 2021-01-26 07:33:00.000000000 -0800 x86_64-linux-gnu-python3.6m-config lrwxrwxrwx 1 root root 33 2018-10-25 04:11:00.000000000 -0700 x86_64-linux-gnu-python3-config -> x86_64-linux-gnu-python3.6-config lrwxrwxrwx 1 root root 34 2018-10-25 04:11:00.000000000 -0700 x86_64-linux-gnu-python3m-config -> x86_64-linux-gnu-python3.6m-config -rwxr-xr-x 1 root root 59672 2021-02-12 00:45:35.000000000 -0800 x86_64-linux-gnu-ranlib -rwxr-xr-x 1 root root 596440 2021-02-12 00:45:35.000000000 -0800 x86_64-linux-gnu-readelf -rwxr-xr-x 1 root root 31024 2021-02-12 00:45:35.000000000 -0800 x86_64-linux-gnu-size -rwxr-xr-x 1 root root 31232 2021-02-12 00:45:35.000000000 -0800 x86_64-linux-gnu-strings -rwxr-xr-x 1 root root 235728 2021-02-12 00:45:35.000000000 -0800 x86_64-linux-gnu-strip -rwxr-xr-x 2 root root 51296 2017-04-21 13:54:08.000000000 -0700 x86_64-pc-linux-gnu-pkg-config -rwxr-xr-x 1 root root 71896 2017-11-05 09:16:48.000000000 -0800 xargs -rwxr-xr-x 1 root root 52032 2017-11-21 11:47:37.000000000 -0800 xauth -rwxr-xr-x 1 root root 153904 2016-12-05 18:04:51.000000000 -0800 xdelta3 -rwxr-xr-x 1 root root 234 2018-03-23 08:58:57.000000000 -0700 xdg-user-dir -rwxr-xr-x 1 root root 18504 2018-03-23 08:58:57.000000000 -0700 xdg-user-dirs-update -rwxr-xr-x 1 root root 5164 2020-10-19 03:57:24.000000000 -0700 xsubpp -rwxr-xr-x 1 root root 18552 2020-10-13 08:49:09.000000000 -0700 xxd -rwxr-xr-x 1 root root 76216 2017-06-28 09:39:19.000000000 -0700 xz lrwxrwxrwx 1 root root 2 2017-06-28 09:39:19.000000000 -0700 xzcat -> xz lrwxrwxrwx 1 root root 6 2017-06-28 09:39:19.000000000 -0700 xzcmp -> xzdiff -rwxr-xr-x 1 root root 6632 2017-06-28 09:39:19.000000000 -0700 xzdiff lrwxrwxrwx 1 root root 6 2017-06-28 09:39:19.000000000 -0700 xzegrep -> xzgrep lrwxrwxrwx 1 root root 6 2017-06-28 09:39:19.000000000 -0700 xzfgrep -> xzgrep -rwxr-xr-x 1 root root 5628 2017-06-28 09:39:19.000000000 -0700 xzgrep -rwxr-xr-x 1 root root 1802 2017-06-28 09:39:19.000000000 -0700 xzless -rwxr-xr-x 1 root root 2161 2017-06-28 09:39:19.000000000 -0700 xzmore -rwxr-xr-x 1 root root 30904 2018-01-18 01:43:49.000000000 -0800 yes -rwxr-xr-x 1 root root 18488 2020-06-04 10:25:26.000000000 -0700 zdump -rwxr-xr-x 1 root root 48497 2020-10-19 03:57:24.000000000 -0700 zipdetails jc-1.17.3/tests/fixtures/ubuntu-18.04/ls-l-newlines.json000066400000000000000000000022301415226333200225660ustar00rootroot00000000000000[{"filename": "a regular filename", "flags": "-rw-rw-r--", "links": 1, "owner": "kbrazil", "group": "kbrazil", "size": 0, "date": "Feb 27 18:08"}, {"filename": "\n\nthis file has\na combination\n\n\nof everything\n\n\n\n", "flags": "-rw-rw-r--", "links": 1, "owner": "kbrazil", "group": "kbrazil", "size": 0, "date": "Feb 27 18:08"}, {"filename": "this file has\na newline inside", "flags": "-rw-rw-r--", "links": 1, "owner": "kbrazil", "group": "kbrazil", "size": 0, "date": "Feb 27 18:08"}, {"filename": "this file has\n\n\n\nfour contiguous newlines inside", "flags": "-rw-rw-r--", "links": 1, "owner": "kbrazil", "group": "kbrazil", "size": 0, "date": "Feb 27 18:08"}, {"filename": "this file\nhas\nsix\n\nnewlines\n\nwithin", "flags": "-rw-rw-r--", "links": 1, "owner": "kbrazil", "group": "kbrazil", "size": 0, "date": "Feb 27 18:08"}, {"filename": "\n\n\n\nthis file starts with four newlines", "flags": "-rw-rw-r--", "links": 1, "owner": "kbrazil", "group": "kbrazil", "size": 0, "date": "Feb 27 18:08"}, {"filename": "\nthis file starts with one newline", "flags": "-rw-rw-r--", "links": 1, "owner": "kbrazil", "group": "kbrazil", "size": 0, "date": "Feb 27 18:08"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/ls-l-newlines.out000066400000000000000000000011001415226333200224170ustar00rootroot00000000000000total 0 -rw-rw-r-- 1 kbrazil kbrazil 0 Feb 27 18:08 a regular filename -rw-rw-r-- 1 kbrazil kbrazil 0 Feb 27 18:08 this file has a combination of everything -rw-rw-r-- 1 kbrazil kbrazil 0 Feb 27 18:08 this file has a newline inside -rw-rw-r-- 1 kbrazil kbrazil 0 Feb 27 18:08 this file has four contiguous newlines inside -rw-rw-r-- 1 kbrazil kbrazil 0 Feb 27 18:08 this file has six newlines within -rw-rw-r-- 1 kbrazil kbrazil 0 Feb 27 18:08 this file starts with four newlines -rw-rw-r-- 1 kbrazil kbrazil 0 Feb 27 18:08 this file starts with one newline jc-1.17.3/tests/fixtures/ubuntu-18.04/ls-lR-newlines.json000066400000000000000000000040511415226333200227130ustar00rootroot00000000000000[{"filename": "lstest", "parent": ".", "flags": "drwxrwxr-x", "links": 2, "owner": "kbrazil", "group": "kbrazil", "size": 4096, "date": "Feb 27 18:08"}, {"filename": "systemd-private-65c1089f1d4c4cf5bc50ca55478abfde-systemd-resolved.service-La9AqY", "parent": ".", "flags": "drwx------", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Feb 27 18:07"}, {"filename": "systemd-private-65c1089f1d4c4cf5bc50ca55478abfde-systemd-timesyncd.service-L7q4cJ", "parent": ".", "flags": "drwx------", "links": 3, "owner": "root", "group": "root", "size": 4096, "date": "Feb 27 18:07"}, {"filename": "vmware-root_670-2722828838", "parent": ".", "flags": "drwx------", "links": 2, "owner": "root", "group": "root", "size": 4096, "date": "Feb 27 18:07"}, {"filename": "a regular filename", "parent": "./lstest", "flags": "-rw-rw-r--", "links": 1, "owner": "kbrazil", "group": "kbrazil", "size": 0, "date": "Feb 27 18:08"}, {"filename": "\n\nthis file has\na combination\n\n\nof everything\n\n\n\n", "parent": "./lstest", "flags": "-rw-rw-r--", "links": 1, "owner": "kbrazil", "group": "kbrazil", "size": 0, "date": "Feb 27 18:08"}, {"filename": "this file has\na newline inside", "parent": "./lstest", "flags": "-rw-rw-r--", "links": 1, "owner": "kbrazil", "group": "kbrazil", "size": 0, "date": "Feb 27 18:08"}, {"filename": "this file has\n\n\n\nfour contiguous newlines inside", "parent": "./lstest", "flags": "-rw-rw-r--", "links": 1, "owner": "kbrazil", "group": "kbrazil", "size": 0, "date": "Feb 27 18:08"}, {"filename": "this file\nhas\nsix\n\nnewlines\n\nwithin", "parent": "./lstest", "flags": "-rw-rw-r--", "links": 1, "owner": "kbrazil", "group": "kbrazil", "size": 0, "date": "Feb 27 18:08"}, {"filename": "\n\n\n\nthis file starts with four newlines", "parent": "./lstest", "flags": "-rw-rw-r--", "links": 1, "owner": "kbrazil", "group": "kbrazil", "size": 0, "date": "Feb 27 18:08"}, {"filename": "\nthis file starts with one newline", "parent": "./lstest", "flags": "-rw-rw-r--", "links": 1, "owner": "kbrazil", "group": "kbrazil", "size": 0, "date": "Feb 27 18:08"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/ls-lR-newlines.out000066400000000000000000000017301415226333200225520ustar00rootroot00000000000000.: total 16 drwxrwxr-x 2 kbrazil kbrazil 4096 Feb 27 18:08 lstest drwx------ 3 root root 4096 Feb 27 18:07 systemd-private-65c1089f1d4c4cf5bc50ca55478abfde-systemd-resolved.service-La9AqY drwx------ 3 root root 4096 Feb 27 18:07 systemd-private-65c1089f1d4c4cf5bc50ca55478abfde-systemd-timesyncd.service-L7q4cJ drwx------ 2 root root 4096 Feb 27 18:07 vmware-root_670-2722828838 ./lstest: total 0 -rw-rw-r-- 1 kbrazil kbrazil 0 Feb 27 18:08 a regular filename -rw-rw-r-- 1 kbrazil kbrazil 0 Feb 27 18:08 this file has a combination of everything -rw-rw-r-- 1 kbrazil kbrazil 0 Feb 27 18:08 this file has a newline inside -rw-rw-r-- 1 kbrazil kbrazil 0 Feb 27 18:08 this file has four contiguous newlines inside -rw-rw-r-- 1 kbrazil kbrazil 0 Feb 27 18:08 this file has six newlines within -rw-rw-r-- 1 kbrazil kbrazil 0 Feb 27 18:08 this file starts with four newlines -rw-rw-r-- 1 kbrazil kbrazil 0 Feb 27 18:08 this file starts with one newline jc-1.17.3/tests/fixtures/ubuntu-18.04/ls-newlines.json000066400000000000000000000007621415226333200223450ustar00rootroot00000000000000[{"filename": "a regular filename"}, {"filename": "this file has"}, {"filename": "a combination"}, {"filename": "of everything"}, {"filename": "this file has"}, {"filename": "a newline inside"}, {"filename": "this file has"}, {"filename": "four contiguous newlines inside"}, {"filename": "this file"}, {"filename": "has"}, {"filename": "six"}, {"filename": "newlines"}, {"filename": "within"}, {"filename": "this file starts with four newlines"}, {"filename": "this file starts with one newline"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/ls-newlines.out000066400000000000000000000004041415226333200221740ustar00rootroot00000000000000a regular filename this file has a combination of everything this file has a newline inside this file has four contiguous newlines inside this file has six newlines within this file starts with four newlines this file starts with one newline jc-1.17.3/tests/fixtures/ubuntu-18.04/ls.json000066400000000000000000000011561415226333200205210ustar00rootroot00000000000000[{"filename": "bin"}, {"filename": "boot"}, {"filename": "cdrom"}, {"filename": "dev"}, {"filename": "etc"}, {"filename": "home"}, {"filename": "initrd.img"}, {"filename": "initrd.img.old"}, {"filename": "lib"}, {"filename": "lib64"}, {"filename": "lost+found"}, {"filename": "media"}, {"filename": "mnt"}, {"filename": "opt"}, {"filename": "proc"}, {"filename": "root"}, {"filename": "run"}, {"filename": "sbin"}, {"filename": "snap"}, {"filename": "srv"}, {"filename": "swap.img"}, {"filename": "sys"}, {"filename": "tmp"}, {"filename": "usr"}, {"filename": "var"}, {"filename": "vmlinuz"}, {"filename": "vmlinuz.old"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/ls.out000066400000000000000000000002421415226333200203520ustar00rootroot00000000000000bin boot cdrom dev etc home initrd.img initrd.img.old lib lib64 lost+found media mnt opt proc root run sbin snap srv swap.img sys tmp usr var vmlinuz vmlinuz.old jc-1.17.3/tests/fixtures/ubuntu-18.04/lsblk-allcols.json000066400000000000000000000262051415226333200226430ustar00rootroot00000000000000[{"name": "fd0", "maj_min": "2:0", "rm": true, "size": "1.4M", "ro": false, "type": "disk", "mountpoint": null, "kname": "fd0", "fstype": null, "label": null, "uuid": null, "partlabel": null, "partuuid": null, "ra": 128, "model": null, "serial": null, "state": null, "owner": "root", "group": "disk", "mode": "brw-rw----", "alignment": 0, "min_io": 512, "opt_io": 0, "phy_sec": 512, "log_sec": 512, "rota": true, "sched": "cfq", "rq_size": 128, "disc_aln": 0, "disc_gran": "0B", "disc_max": "0B", "disc_zero": false, "wsame": "0B", "wwn": null, "rand": true, "pkname": null, "hctl": null, "tran": null, "rev": null, "vendor": null}, {"name": "loop0", "maj_min": "7:0", "rm": false, "size": "54.5M", "ro": true, "type": "loop", "mountpoint": "/snap/core18/1223", "kname": "loop0", "fstype": "squashfs", "label": null, "uuid": null, "partlabel": null, "partuuid": null, "ra": 128, "model": null, "serial": null, "state": null, "owner": "root", "group": "disk", "mode": "brw-rw----", "alignment": 0, "min_io": 512, "opt_io": 0, "phy_sec": 512, "log_sec": 512, "rota": true, "sched": "none", "rq_size": 128, "disc_aln": 0, "disc_gran": "4K", "disc_max": "4G", "disc_zero": false, "wsame": "0B", "wwn": null, "rand": false, "pkname": null, "hctl": null, "tran": null, "rev": null, "vendor": null}, {"name": "loop1", "maj_min": "7:1", "rm": false, "size": "89.1M", "ro": true, "type": "loop", "mountpoint": "/snap/core/7917", "kname": "loop1", "fstype": "squashfs", "label": null, "uuid": null, "partlabel": null, "partuuid": null, "ra": 128, "model": null, "serial": null, "state": null, "owner": "root", "group": "disk", "mode": "brw-rw----", "alignment": 0, "min_io": 512, "opt_io": 0, "phy_sec": 512, "log_sec": 512, "rota": true, "sched": "none", "rq_size": 128, "disc_aln": 0, "disc_gran": "4K", "disc_max": "4G", "disc_zero": false, "wsame": "0B", "wwn": null, "rand": false, "pkname": null, "hctl": null, "tran": null, "rev": null, "vendor": null}, {"name": "loop2", "maj_min": "7:2", "rm": false, "size": "11M", "ro": true, "type": "loop", "mountpoint": "/snap/slcli/383", "kname": "loop2", "fstype": "squashfs", "label": null, "uuid": null, "partlabel": null, "partuuid": null, "ra": 128, "model": null, "serial": null, "state": null, "owner": "root", "group": "disk", "mode": "brw-rw----", "alignment": 0, "min_io": 512, "opt_io": 0, "phy_sec": 512, "log_sec": 512, "rota": true, "sched": "none", "rq_size": 128, "disc_aln": 0, "disc_gran": "4K", "disc_max": "4G", "disc_zero": false, "wsame": "0B", "wwn": null, "rand": false, "pkname": null, "hctl": null, "tran": null, "rev": null, "vendor": null}, {"name": "loop3", "maj_min": "7:3", "rm": false, "size": "8.6M", "ro": true, "type": "loop", "mountpoint": "/snap/doctl/215", "kname": "loop3", "fstype": "squashfs", "label": null, "uuid": null, "partlabel": null, "partuuid": null, "ra": 128, "model": null, "serial": null, "state": null, "owner": "root", "group": "disk", "mode": "brw-rw----", "alignment": 0, "min_io": 512, "opt_io": 0, "phy_sec": 512, "log_sec": 512, "rota": true, "sched": "none", "rq_size": 128, "disc_aln": 0, "disc_gran": "4K", "disc_max": "4G", "disc_zero": false, "wsame": "0B", "wwn": null, "rand": false, "pkname": null, "hctl": null, "tran": null, "rev": null, "vendor": null}, {"name": "loop4", "maj_min": "7:4", "rm": false, "size": "89.1M", "ro": true, "type": "loop", "mountpoint": "/snap/core/8039", "kname": "loop4", "fstype": "squashfs", "label": null, "uuid": null, "partlabel": null, "partuuid": null, "ra": 128, "model": null, "serial": null, "state": null, "owner": "root", "group": "disk", "mode": "brw-rw----", "alignment": 0, "min_io": 512, "opt_io": 0, "phy_sec": 512, "log_sec": 512, "rota": true, "sched": "none", "rq_size": 128, "disc_aln": 0, "disc_gran": "4K", "disc_max": "4G", "disc_zero": false, "wsame": "0B", "wwn": null, "rand": false, "pkname": null, "hctl": null, "tran": null, "rev": null, "vendor": null}, {"name": "loop5", "maj_min": "7:5", "rm": false, "size": "67M", "ro": true, "type": "loop", "mountpoint": "/snap/google-cloud-sdk/106", "kname": "loop5", "fstype": "squashfs", "label": null, "uuid": null, "partlabel": null, "partuuid": null, "ra": 128, "model": null, "serial": null, "state": null, "owner": "root", "group": "disk", "mode": "brw-rw----", "alignment": 0, "min_io": 512, "opt_io": 0, "phy_sec": 512, "log_sec": 512, "rota": true, "sched": "none", "rq_size": 128, "disc_aln": 0, "disc_gran": "4K", "disc_max": "4G", "disc_zero": false, "wsame": "0B", "wwn": null, "rand": false, "pkname": null, "hctl": null, "tran": null, "rev": null, "vendor": null}, {"name": "loop6", "maj_min": "7:6", "rm": false, "size": "66.8M", "ro": true, "type": "loop", "mountpoint": "/snap/google-cloud-sdk/105", "kname": "loop6", "fstype": "squashfs", "label": null, "uuid": null, "partlabel": null, "partuuid": null, "ra": 128, "model": null, "serial": null, "state": null, "owner": "root", "group": "disk", "mode": "brw-rw----", "alignment": 0, "min_io": 512, "opt_io": 0, "phy_sec": 512, "log_sec": 512, "rota": true, "sched": "none", "rq_size": 128, "disc_aln": 0, "disc_gran": "4K", "disc_max": "4G", "disc_zero": false, "wsame": "0B", "wwn": null, "rand": false, "pkname": null, "hctl": null, "tran": null, "rev": null, "vendor": null}, {"name": "loop7", "maj_min": "7:7", "rm": false, "size": "3.2M", "ro": true, "type": "loop", "mountpoint": "/snap/stress-ng/1046", "kname": "loop7", "fstype": "squashfs", "label": null, "uuid": null, "partlabel": null, "partuuid": null, "ra": 128, "model": null, "serial": null, "state": null, "owner": "root", "group": "disk", "mode": "brw-rw----", "alignment": 0, "min_io": 512, "opt_io": 0, "phy_sec": 512, "log_sec": 512, "rota": true, "sched": "none", "rq_size": 128, "disc_aln": 0, "disc_gran": "4K", "disc_max": "4G", "disc_zero": false, "wsame": "0B", "wwn": null, "rand": false, "pkname": null, "hctl": null, "tran": null, "rev": null, "vendor": null}, {"name": "loop8", "maj_min": "7:8", "rm": false, "size": "8.7M", "ro": true, "type": "loop", "mountpoint": "/snap/doctl/222", "kname": "loop8", "fstype": "squashfs", "label": null, "uuid": null, "partlabel": null, "partuuid": null, "ra": 128, "model": null, "serial": null, "state": null, "owner": "root", "group": "disk", "mode": "brw-rw----", "alignment": 0, "min_io": 512, "opt_io": 0, "phy_sec": 512, "log_sec": 512, "rota": true, "sched": "none", "rq_size": 128, "disc_aln": 0, "disc_gran": "4K", "disc_max": "4G", "disc_zero": false, "wsame": "0B", "wwn": null, "rand": false, "pkname": null, "hctl": null, "tran": null, "rev": null, "vendor": null}, {"name": "loop9", "maj_min": "7:9", "rm": false, "size": "54.5M", "ro": true, "type": "loop", "mountpoint": "/snap/core18/1265", "kname": "loop9", "fstype": "squashfs", "label": null, "uuid": null, "partlabel": null, "partuuid": null, "ra": 128, "model": null, "serial": null, "state": null, "owner": "root", "group": "disk", "mode": "brw-rw----", "alignment": 0, "min_io": 512, "opt_io": 0, "phy_sec": 512, "log_sec": 512, "rota": true, "sched": "none", "rq_size": 128, "disc_aln": 0, "disc_gran": "4K", "disc_max": "4G", "disc_zero": false, "wsame": "0B", "wwn": null, "rand": false, "pkname": null, "hctl": null, "tran": null, "rev": null, "vendor": null}, {"name": "loop10", "maj_min": "7:10", "rm": false, "size": "3.2M", "ro": true, "type": "loop", "mountpoint": "/snap/stress-ng/1076", "kname": "loop10", "fstype": "squashfs", "label": null, "uuid": null, "partlabel": null, "partuuid": null, "ra": 128, "model": null, "serial": null, "state": null, "owner": "root", "group": "disk", "mode": "brw-rw----", "alignment": 0, "min_io": 512, "opt_io": 0, "phy_sec": 512, "log_sec": 512, "rota": true, "sched": "none", "rq_size": 128, "disc_aln": 0, "disc_gran": "4K", "disc_max": "4G", "disc_zero": false, "wsame": "0B", "wwn": null, "rand": false, "pkname": null, "hctl": null, "tran": null, "rev": null, "vendor": null}, {"name": "sda", "maj_min": "8:0", "rm": false, "size": "20G", "ro": false, "type": "disk", "mountpoint": null, "kname": "sda", "fstype": null, "label": null, "uuid": null, "partlabel": null, "partuuid": null, "ra": 128, "model": "VMware Virtual S", "serial": null, "state": "running", "owner": "root", "group": "disk", "mode": "brw-rw----", "alignment": 0, "min_io": 512, "opt_io": 0, "phy_sec": 512, "log_sec": 512, "rota": true, "sched": "cfq", "rq_size": 128, "disc_aln": 0, "disc_gran": "0B", "disc_max": "0B", "disc_zero": false, "wsame": "0B", "wwn": null, "rand": true, "pkname": null, "hctl": "32:0:0:0", "tran": "spi", "rev": "1.0", "vendor": "VMware,"}, {"name": "sda1", "maj_min": "8:1", "rm": false, "size": "1M", "ro": false, "type": "part", "mountpoint": null, "kname": "sda1", "fstype": null, "label": null, "uuid": null, "partlabel": null, "partuuid": "e0614271-c211-4324-a5bc-8e6bcb66da43", "ra": 128, "model": null, "serial": null, "state": null, "owner": "root", "group": "disk", "mode": "brw-rw----", "alignment": 0, "min_io": 512, "opt_io": 0, "phy_sec": 512, "log_sec": 512, "rota": true, "sched": "cfq", "rq_size": 128, "disc_aln": 0, "disc_gran": "0B", "disc_max": "0B", "disc_zero": false, "wsame": "0B", "wwn": null, "rand": true, "pkname": "sda", "hctl": null, "tran": null, "rev": null, "vendor": null}, {"name": "sda2", "maj_min": "8:2", "rm": false, "size": "20G", "ro": false, "type": "part", "mountpoint": "/", "kname": "sda2", "fstype": "ext4", "label": null, "uuid": "011527a0-c72a-4c00-a50e-ee90da26b6e2", "partlabel": null, "partuuid": "744589e8-5711-4750-9984-c34d66f93879", "ra": 128, "model": null, "serial": null, "state": null, "owner": "root", "group": "disk", "mode": "brw-rw----", "alignment": 0, "min_io": 512, "opt_io": 0, "phy_sec": 512, "log_sec": 512, "rota": true, "sched": "cfq", "rq_size": 128, "disc_aln": 0, "disc_gran": "0B", "disc_max": "0B", "disc_zero": false, "wsame": "0B", "wwn": null, "rand": true, "pkname": "sda", "hctl": null, "tran": null, "rev": null, "vendor": null}, {"name": "sr0", "maj_min": "11:0", "rm": true, "size": "64.8M", "ro": false, "type": "rom", "mountpoint": null, "kname": "sr0", "fstype": "iso9660", "label": "CDROM", "uuid": "2019-08-12-10-17-03-63", "partlabel": null, "partuuid": null, "ra": 128, "model": "VMware SATA CD00", "serial": "00000000000000000001", "state": "running", "owner": "root", "group": "cdrom", "mode": "brw-rw----", "alignment": 0, "min_io": 2048, "opt_io": 0, "phy_sec": 2048, "log_sec": 2048, "rota": true, "sched": "cfq", "rq_size": 128, "disc_aln": 0, "disc_gran": "0B", "disc_max": "0B", "disc_zero": false, "wsame": "0B", "wwn": null, "rand": true, "pkname": null, "hctl": "2:0:0:0", "tran": "sata", "rev": "1.00", "vendor": "NECVMWar"}, {"name": "sr1", "maj_min": "11:1", "rm": true, "size": "848M", "ro": false, "type": "rom", "mountpoint": null, "kname": "sr1", "fstype": "iso9660", "label": "Ubuntu-Server 18.04.3 LTS amd64", "uuid": "2019-08-05-20-00-00-00", "partlabel": null, "partuuid": null, "ra": 128, "model": "VMware SATA CD01", "serial": "01000000000000000001", "state": "running", "owner": "root", "group": "cdrom", "mode": "brw-rw----", "alignment": 0, "min_io": 2048, "opt_io": 0, "phy_sec": 2048, "log_sec": 2048, "rota": true, "sched": "cfq", "rq_size": 128, "disc_aln": 0, "disc_gran": "0B", "disc_max": "0B", "disc_zero": false, "wsame": "0B", "wwn": null, "rand": true, "pkname": null, "hctl": "3:0:0:0", "tran": "sata", "rev": "1.00", "vendor": "NECVMWar"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/lsblk-allcols.out000066400000000000000000000163041415226333200225000ustar00rootroot00000000000000NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT KNAME FSTYPE LABEL UUID PARTLABEL PARTUUID RA MODEL SERIAL STATE OWNER GROUP MODE ALIGNMENT MIN-IO OPT-IO PHY-SEC LOG-SEC ROTA SCHED RQ-SIZE DISC-ALN DISC-GRAN DISC-MAX DISC-ZERO WSAME WWN RAND PKNAME HCTL TRAN REV VENDOR fd0 2:0 1 1.4M 0 disk fd0 128 root disk brw-rw---- 0 512 0 512 512 1 cfq 128 0 0B 0B 0 0B 1 loop0 7:0 0 54.5M 1 loop /snap/core18/1223 loop0 squashfs 128 root disk brw-rw---- 0 512 0 512 512 1 none 128 0 4K 4G 0 0B 0 loop1 7:1 0 89.1M 1 loop /snap/core/7917 loop1 squashfs 128 root disk brw-rw---- 0 512 0 512 512 1 none 128 0 4K 4G 0 0B 0 loop2 7:2 0 11M 1 loop /snap/slcli/383 loop2 squashfs 128 root disk brw-rw---- 0 512 0 512 512 1 none 128 0 4K 4G 0 0B 0 loop3 7:3 0 8.6M 1 loop /snap/doctl/215 loop3 squashfs 128 root disk brw-rw---- 0 512 0 512 512 1 none 128 0 4K 4G 0 0B 0 loop4 7:4 0 89.1M 1 loop /snap/core/8039 loop4 squashfs 128 root disk brw-rw---- 0 512 0 512 512 1 none 128 0 4K 4G 0 0B 0 loop5 7:5 0 67M 1 loop /snap/google-cloud-sdk/106 loop5 squashfs 128 root disk brw-rw---- 0 512 0 512 512 1 none 128 0 4K 4G 0 0B 0 loop6 7:6 0 66.8M 1 loop /snap/google-cloud-sdk/105 loop6 squashfs 128 root disk brw-rw---- 0 512 0 512 512 1 none 128 0 4K 4G 0 0B 0 loop7 7:7 0 3.2M 1 loop /snap/stress-ng/1046 loop7 squashfs 128 root disk brw-rw---- 0 512 0 512 512 1 none 128 0 4K 4G 0 0B 0 loop8 7:8 0 8.7M 1 loop /snap/doctl/222 loop8 squashfs 128 root disk brw-rw---- 0 512 0 512 512 1 none 128 0 4K 4G 0 0B 0 loop9 7:9 0 54.5M 1 loop /snap/core18/1265 loop9 squashfs 128 root disk brw-rw---- 0 512 0 512 512 1 none 128 0 4K 4G 0 0B 0 loop10 7:10 0 3.2M 1 loop /snap/stress-ng/1076 loop10 squashfs 128 root disk brw-rw---- 0 512 0 512 512 1 none 128 0 4K 4G 0 0B 0 sda 8:0 0 20G 0 disk sda 128 VMware Virtual S running root disk brw-rw---- 0 512 0 512 512 1 cfq 128 0 0B 0B 0 0B 1 32:0:0:0 spi 1.0 VMware, ├─sda1 8:1 0 1M 0 part sda1 e0614271-c211-4324-a5bc-8e6bcb66da43 128 root disk brw-rw---- 0 512 0 512 512 1 cfq 128 0 0B 0B 0 0B 1 sda └─sda2 8:2 0 20G 0 part / sda2 ext4 011527a0-c72a-4c00-a50e-ee90da26b6e2 744589e8-5711-4750-9984-c34d66f93879 128 root disk brw-rw---- 0 512 0 512 512 1 cfq 128 0 0B 0B 0 0B 1 sda sr0 11:0 1 64.8M 0 rom sr0 iso9660 CDROM 2019-08-12-10-17-03-63 128 VMware SATA CD00 00000000000000000001 running root cdrom brw-rw---- 0 2048 0 2048 2048 1 cfq 128 0 0B 0B 0 0B 1 2:0:0:0 sata 1.00 NECVMWar sr1 11:1 1 848M 0 rom sr1 iso9660 Ubuntu-Server 18.04.3 LTS amd64 2019-08-05-20-00-00-00 128 VMware SATA CD01 01000000000000000001 running root cdrom brw-rw---- 0 2048 0 2048 2048 1 cfq 128 0 0B 0B 0 0B 1 3:0:0:0 sata 1.00 NECVMWar jc-1.17.3/tests/fixtures/ubuntu-18.04/lsblk.json000066400000000000000000000041021415226333200212040ustar00rootroot00000000000000[{"name": "fd0", "maj_min": "2:0", "rm": true, "size": "1.4M", "ro": false, "type": "disk", "mountpoint": null}, {"name": "loop0", "maj_min": "7:0", "rm": false, "size": "54.5M", "ro": true, "type": "loop", "mountpoint": "/snap/core18/1223"}, {"name": "loop1", "maj_min": "7:1", "rm": false, "size": "11M", "ro": true, "type": "loop", "mountpoint": "/snap/slcli/383"}, {"name": "loop2", "maj_min": "7:2", "rm": false, "size": "88.7M", "ro": true, "type": "loop", "mountpoint": "/snap/core/7396"}, {"name": "loop3", "maj_min": "7:3", "rm": false, "size": "66.5M", "ro": true, "type": "loop", "mountpoint": "/snap/google-cloud-sdk/103"}, {"name": "loop4", "maj_min": "7:4", "rm": false, "size": "66.5M", "ro": true, "type": "loop", "mountpoint": "/snap/google-cloud-sdk/104"}, {"name": "loop5", "maj_min": "7:5", "rm": false, "size": "54.4M", "ro": true, "type": "loop", "mountpoint": "/snap/core18/1074"}, {"name": "loop7", "maj_min": "7:7", "rm": false, "size": "8.6M", "ro": true, "type": "loop", "mountpoint": "/snap/doctl/187"}, {"name": "loop8", "maj_min": "7:8", "rm": false, "size": "3.1M", "ro": true, "type": "loop", "mountpoint": "/snap/stress-ng/847"}, {"name": "loop9", "maj_min": "7:9", "rm": false, "size": "8.6M", "ro": true, "type": "loop", "mountpoint": "/snap/doctl/215"}, {"name": "loop10", "maj_min": "7:10", "rm": false, "size": "89.1M", "ro": true, "type": "loop", "mountpoint": "/snap/core/7917"}, {"name": "loop11", "maj_min": "7:11", "rm": false, "size": "3.2M", "ro": true, "type": "loop", "mountpoint": "/snap/stress-ng/924"}, {"name": "sda", "maj_min": "8:0", "rm": false, "size": "20G", "ro": false, "type": "disk", "mountpoint": null}, {"name": "sda1", "maj_min": "8:1", "rm": false, "size": "1M", "ro": false, "type": "part", "mountpoint": null}, {"name": "sda2", "maj_min": "8:2", "rm": false, "size": "20G", "ro": false, "type": "part", "mountpoint": "/"}, {"name": "sr0", "maj_min": "11:0", "rm": true, "size": "64.8M", "ro": false, "type": "rom", "mountpoint": null}, {"name": "sr1", "maj_min": "11:1", "rm": true, "size": "848M", "ro": false, "type": "rom", "mountpoint": null}] jc-1.17.3/tests/fixtures/ubuntu-18.04/lsblk.out000066400000000000000000000014541415226333200210510ustar00rootroot00000000000000NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT fd0 2:0 1 1.4M 0 disk loop0 7:0 0 54.5M 1 loop /snap/core18/1223 loop1 7:1 0 11M 1 loop /snap/slcli/383 loop2 7:2 0 88.7M 1 loop /snap/core/7396 loop3 7:3 0 66.5M 1 loop /snap/google-cloud-sdk/103 loop4 7:4 0 66.5M 1 loop /snap/google-cloud-sdk/104 loop5 7:5 0 54.4M 1 loop /snap/core18/1074 loop7 7:7 0 8.6M 1 loop /snap/doctl/187 loop8 7:8 0 3.1M 1 loop /snap/stress-ng/847 loop9 7:9 0 8.6M 1 loop /snap/doctl/215 loop10 7:10 0 89.1M 1 loop /snap/core/7917 loop11 7:11 0 3.2M 1 loop /snap/stress-ng/924 sda 8:0 0 20G 0 disk ├─sda1 8:1 0 1M 0 part └─sda2 8:2 0 20G 0 part / sr0 11:0 1 64.8M 0 rom sr1 11:1 1 848M 0 rom jc-1.17.3/tests/fixtures/ubuntu-18.04/lsmod.json000066400000000000000000000151301415226333200212160ustar00rootroot00000000000000[{"module": "xt_tcpudp", "size": 16384, "used": 6}, {"module": "xt_conntrack", "size": 16384, "used": 15}, {"module": "ufs", "size": 77824, "used": 0}, {"module": "qnx4", "size": 16384, "used": 0}, {"module": "hfsplus", "size": 106496, "used": 0}, {"module": "hfs", "size": 57344, "used": 0}, {"module": "minix", "size": 32768, "used": 0}, {"module": "ntfs", "size": 102400, "used": 0}, {"module": "msdos", "size": 20480, "used": 0}, {"module": "jfs", "size": 188416, "used": 0}, {"module": "xfs", "size": 1204224, "used": 0}, {"module": "cpuid", "size": 16384, "used": 0}, {"module": "unix_diag", "size": 16384, "used": 0}, {"module": "iptable_mangle", "size": 16384, "used": 0}, {"module": "iptable_security", "size": 16384, "used": 0}, {"module": "iptable_raw", "size": 16384, "used": 0}, {"module": "iptable_nat", "size": 16384, "used": 0}, {"module": "nf_conntrack_ipv4", "size": 16384, "used": 16}, {"module": "nf_defrag_ipv4", "size": 16384, "used": 1, "by": ["nf_conntrack_ipv4"]}, {"module": "nf_nat_ipv4", "size": 16384, "used": 1, "by": ["iptable_nat"]}, {"module": "nf_nat", "size": 32768, "used": 1, "by": ["nf_nat_ipv4"]}, {"module": "nf_conntrack", "size": 131072, "used": 4, "by": ["xt_conntrack", "nf_conntrack_ipv4", "nf_nat", "nf_nat_ipv4"]}, {"module": "iptable_filter", "size": 16384, "used": 1}, {"module": "aufs", "size": 241664, "used": 0}, {"module": "overlay", "size": 77824, "used": 0}, {"module": "vmw_balloon", "size": 20480, "used": 0}, {"module": "intel_rapl_perf", "size": 16384, "used": 0}, {"module": "input_leds", "size": 16384, "used": 0}, {"module": "joydev", "size": 24576, "used": 0}, {"module": "vmw_vsock_vmci_transport", "size": 32768, "used": 1}, {"module": "vsock", "size": 36864, "used": 2, "by": ["vmw_vsock_vmci_transport"]}, {"module": "serio_raw", "size": 16384, "used": 0}, {"module": "btusb", "size": 45056, "used": 0}, {"module": "btrtl", "size": 16384, "used": 1, "by": ["btusb"]}, {"module": "btbcm", "size": 16384, "used": 1, "by": ["btusb"]}, {"module": "btintel", "size": 16384, "used": 1, "by": ["btusb"]}, {"module": "bluetooth", "size": 544768, "used": 5, "by": ["btrtl", "btintel", "btbcm", "btusb"]}, {"module": "ecdh_generic", "size": 24576, "used": 1, "by": ["bluetooth"]}, {"module": "vmw_vmci", "size": 69632, "used": 2, "by": ["vmw_balloon", "vmw_vsock_vmci_transport"]}, {"module": "mac_hid", "size": 16384, "used": 0}, {"module": "shpchp", "size": 36864, "used": 0}, {"module": "sch_fq_codel", "size": 20480, "used": 2}, {"module": "ib_iser", "size": 49152, "used": 0}, {"module": "rdma_cm", "size": 61440, "used": 1, "by": ["ib_iser"]}, {"module": "iw_cm", "size": 45056, "used": 1, "by": ["rdma_cm"]}, {"module": "ib_cm", "size": 53248, "used": 1, "by": ["rdma_cm"]}, {"module": "ib_core", "size": 225280, "used": 4, "by": ["rdma_cm", "iw_cm", "ib_iser", "ib_cm"]}, {"module": "iscsi_tcp", "size": 20480, "used": 0}, {"module": "libiscsi_tcp", "size": 20480, "used": 1, "by": ["iscsi_tcp"]}, {"module": "libiscsi", "size": 53248, "used": 3, "by": ["libiscsi_tcp", "iscsi_tcp", "ib_iser"]}, {"module": "scsi_transport_iscsi", "size": 98304, "used": 3, "by": ["iscsi_tcp", "ib_iser", "libiscsi"]}, {"module": "ip_tables", "size": 28672, "used": 5, "by": ["iptable_filter", "iptable_security", "iptable_raw", "iptable_nat", "iptable_mangle"]}, {"module": "x_tables", "size": 40960, "used": 7, "by": ["xt_conntrack", "iptable_filter", "iptable_security", "xt_tcpudp", "iptable_raw", "ip_tables", "iptable_mangle"]}, {"module": "autofs4", "size": 40960, "used": 2}, {"module": "btrfs", "size": 1138688, "used": 0}, {"module": "zstd_compress", "size": 163840, "used": 1, "by": ["btrfs"]}, {"module": "raid10", "size": 53248, "used": 0}, {"module": "raid456", "size": 147456, "used": 0}, {"module": "async_raid6_recov", "size": 20480, "used": 1, "by": ["raid456"]}, {"module": "async_memcpy", "size": 16384, "used": 2, "by": ["raid456", "async_raid6_recov"]}, {"module": "async_pq", "size": 16384, "used": 2, "by": ["raid456", "async_raid6_recov"]}, {"module": "async_xor", "size": 16384, "used": 3, "by": ["async_pq", "raid456", "async_raid6_recov"]}, {"module": "async_tx", "size": 16384, "used": 5, "by": ["async_pq", "async_memcpy", "async_xor", "raid456", "async_raid6_recov"]}, {"module": "xor", "size": 24576, "used": 2, "by": ["async_xor", "btrfs"]}, {"module": "raid6_pq", "size": 114688, "used": 4, "by": ["async_pq", "btrfs", "raid456", "async_raid6_recov"]}, {"module": "libcrc32c", "size": 16384, "used": 4, "by": ["nf_conntrack", "nf_nat", "xfs", "raid456"]}, {"module": "raid1", "size": 40960, "used": 0}, {"module": "raid0", "size": 20480, "used": 0}, {"module": "multipath", "size": 16384, "used": 0}, {"module": "linear", "size": 16384, "used": 0}, {"module": "hid_generic", "size": 16384, "used": 0}, {"module": "usbhid", "size": 53248, "used": 0}, {"module": "hid", "size": 110592, "used": 2, "by": ["usbhid", "hid_generic"]}, {"module": "crct10dif_pclmul", "size": 16384, "used": 0}, {"module": "crc32_pclmul", "size": 16384, "used": 0}, {"module": "ghash_clmulni_intel", "size": 16384, "used": 0}, {"module": "pcbc", "size": 16384, "used": 0}, {"module": "aesni_intel", "size": 188416, "used": 0}, {"module": "aes_x86_64", "size": 20480, "used": 1, "by": ["aesni_intel"]}, {"module": "crypto_simd", "size": 16384, "used": 1, "by": ["aesni_intel"]}, {"module": "vmwgfx", "size": 274432, "used": 1}, {"module": "glue_helper", "size": 16384, "used": 1, "by": ["aesni_intel"]}, {"module": "cryptd", "size": 24576, "used": 3, "by": ["crypto_simd", "ghash_clmulni_intel", "aesni_intel"]}, {"module": "ttm", "size": 106496, "used": 1, "by": ["vmwgfx"]}, {"module": "drm_kms_helper", "size": 172032, "used": 1, "by": ["vmwgfx"]}, {"module": "syscopyarea", "size": 16384, "used": 1, "by": ["drm_kms_helper"]}, {"module": "sysfillrect", "size": 16384, "used": 1, "by": ["drm_kms_helper"]}, {"module": "psmouse", "size": 151552, "used": 0}, {"module": "sysimgblt", "size": 16384, "used": 1, "by": ["drm_kms_helper"]}, {"module": "fb_sys_fops", "size": 16384, "used": 1, "by": ["drm_kms_helper"]}, {"module": "mptspi", "size": 24576, "used": 1}, {"module": "mptscsih", "size": 36864, "used": 1, "by": ["mptspi"]}, {"module": "mptbase", "size": 102400, "used": 2, "by": ["mptspi", "mptscsih"]}, {"module": "drm", "size": 401408, "used": 4, "by": ["vmwgfx", "drm_kms_helper", "ttm"]}, {"module": "e1000", "size": 143360, "used": 0}, {"module": "ahci", "size": 40960, "used": 0}, {"module": "libahci", "size": 32768, "used": 1, "by": ["ahci"]}, {"module": "scsi_transport_spi", "size": 32768, "used": 1, "by": ["mptspi"]}, {"module": "pata_acpi", "size": 16384, "used": 0}, {"module": "i2c_piix4", "size": 24576, "used": 0}, {"module": "floppy", "size": 77824, "used": 0}] jc-1.17.3/tests/fixtures/ubuntu-18.04/lsmod.out000066400000000000000000000102331415226333200210530ustar00rootroot00000000000000Module Size Used by xt_tcpudp 16384 6 xt_conntrack 16384 15 ufs 77824 0 qnx4 16384 0 hfsplus 106496 0 hfs 57344 0 minix 32768 0 ntfs 102400 0 msdos 20480 0 jfs 188416 0 xfs 1204224 0 cpuid 16384 0 unix_diag 16384 0 iptable_mangle 16384 0 iptable_security 16384 0 iptable_raw 16384 0 iptable_nat 16384 0 nf_conntrack_ipv4 16384 16 nf_defrag_ipv4 16384 1 nf_conntrack_ipv4 nf_nat_ipv4 16384 1 iptable_nat nf_nat 32768 1 nf_nat_ipv4 nf_conntrack 131072 4 xt_conntrack,nf_conntrack_ipv4,nf_nat,nf_nat_ipv4 iptable_filter 16384 1 aufs 241664 0 overlay 77824 0 vmw_balloon 20480 0 intel_rapl_perf 16384 0 input_leds 16384 0 joydev 24576 0 vmw_vsock_vmci_transport 32768 1 vsock 36864 2 vmw_vsock_vmci_transport serio_raw 16384 0 btusb 45056 0 btrtl 16384 1 btusb btbcm 16384 1 btusb btintel 16384 1 btusb bluetooth 544768 5 btrtl,btintel,btbcm,btusb ecdh_generic 24576 1 bluetooth vmw_vmci 69632 2 vmw_balloon,vmw_vsock_vmci_transport mac_hid 16384 0 shpchp 36864 0 sch_fq_codel 20480 2 ib_iser 49152 0 rdma_cm 61440 1 ib_iser iw_cm 45056 1 rdma_cm ib_cm 53248 1 rdma_cm ib_core 225280 4 rdma_cm,iw_cm,ib_iser,ib_cm iscsi_tcp 20480 0 libiscsi_tcp 20480 1 iscsi_tcp libiscsi 53248 3 libiscsi_tcp,iscsi_tcp,ib_iser scsi_transport_iscsi 98304 3 iscsi_tcp,ib_iser,libiscsi ip_tables 28672 5 iptable_filter,iptable_security,iptable_raw,iptable_nat,iptable_mangle x_tables 40960 7 xt_conntrack,iptable_filter,iptable_security,xt_tcpudp,iptable_raw,ip_tables,iptable_mangle autofs4 40960 2 btrfs 1138688 0 zstd_compress 163840 1 btrfs raid10 53248 0 raid456 147456 0 async_raid6_recov 20480 1 raid456 async_memcpy 16384 2 raid456,async_raid6_recov async_pq 16384 2 raid456,async_raid6_recov async_xor 16384 3 async_pq,raid456,async_raid6_recov async_tx 16384 5 async_pq,async_memcpy,async_xor,raid456,async_raid6_recov xor 24576 2 async_xor,btrfs raid6_pq 114688 4 async_pq,btrfs,raid456,async_raid6_recov libcrc32c 16384 4 nf_conntrack,nf_nat,xfs,raid456 raid1 40960 0 raid0 20480 0 multipath 16384 0 linear 16384 0 hid_generic 16384 0 usbhid 53248 0 hid 110592 2 usbhid,hid_generic crct10dif_pclmul 16384 0 crc32_pclmul 16384 0 ghash_clmulni_intel 16384 0 pcbc 16384 0 aesni_intel 188416 0 aes_x86_64 20480 1 aesni_intel crypto_simd 16384 1 aesni_intel vmwgfx 274432 1 glue_helper 16384 1 aesni_intel cryptd 24576 3 crypto_simd,ghash_clmulni_intel,aesni_intel ttm 106496 1 vmwgfx drm_kms_helper 172032 1 vmwgfx syscopyarea 16384 1 drm_kms_helper sysfillrect 16384 1 drm_kms_helper psmouse 151552 0 sysimgblt 16384 1 drm_kms_helper fb_sys_fops 16384 1 drm_kms_helper mptspi 24576 1 mptscsih 36864 1 mptspi mptbase 102400 2 mptspi,mptscsih drm 401408 4 vmwgfx,drm_kms_helper,ttm e1000 143360 0 ahci 40960 0 libahci 32768 1 ahci scsi_transport_spi 32768 1 mptspi pata_acpi 16384 0 i2c_piix4 24576 0 floppy 77824 0 jc-1.17.3/tests/fixtures/ubuntu-18.04/lsof-sudo.json000066400000000000000000016222531415226333200220260ustar00rootroot00000000000000[{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":1595792,"node":668802,"name":"/lib/systemd/systemd"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1700792,"node":656167,"name":"/lib/x86_64-linux-gnu/libm-2.27.so"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":121016,"node":655394,"name":"/lib/x86_64-linux-gnu/libudev.so.1.6.9"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":43304,"node":656160,"name":"/lib/x86_64-linux-gnu/libjson-c.so.3.0.1"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":34872,"node":924307,"name":"/usr/lib/x86_64-linux-gnu/libargon2.so.0"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":432640,"node":656144,"name":"/lib/x86_64-linux-gnu/libdevmapper.so.1.02.1"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":18680,"node":656129,"name":"/lib/x86_64-linux-gnu/libattr.so.1.1.0"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":18712,"node":656135,"name":"/lib/x86_64-linux-gnu/libcap-ng.so.0.0.0"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":206872,"node":656157,"name":"/lib/x86_64-linux-gnu/libidn.so.11.6.16"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":27088,"node":924361,"name":"/usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":22768,"node":656136,"name":"/lib/x86_64-linux-gnu/libcap.so.2.25"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":310040,"node":656140,"name":"/lib/x86_64-linux-gnu/libcryptsetup.so.12.2.0"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31232,"node":656125,"name":"/lib/x86_64-linux-gnu/libacl.so.1.1.0"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":64144,"node":656127,"name":"/lib/x86_64-linux-gnu/libapparmor.so.1.4.2"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":92208,"node":656162,"name":"/lib/x86_64-linux-gnu/libkmod.so.2.3.2"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":124848,"node":656130,"name":"/lib/x86_64-linux-gnu/libaudit.so.1.0.0"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":55848,"node":656185,"name":"/lib/x86_64-linux-gnu/libpam.so.0.83.1"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":311720,"node":656131,"name":"/lib/x86_64-linux-gnu/libblkid.so.1.1.0"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":340232,"node":656170,"name":"/lib/x86_64-linux-gnu/libmount.so.1.1.0"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":288976,"node":656202,"name":"/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2363632,"node":655401,"name":"/lib/systemd/libsystemd-shared-237.so"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"3w","type":"CHR","device":"1,11","size_off":0,"node":12,"name":"/dev/kmsg"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[signalfd]"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"6r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"7r","type":"DIR","device":"0,28","size_off":0,"node":1,"name":"/sys/fs/cgroup/unified"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"8u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"9u","type":"netlink","device":null,"size_off":0,"node":20650,"name":"KOBJECT_UEVENT"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"10u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"11r","type":"REG","device":"0,4","size_off":0,"node":20651,"name":"/proc/1/mountinfo"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"12r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"13r","type":"REG","device":"0,4","size_off":0,"node":4026532068,"name":"/proc/swaps"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"14r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"15r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"16r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"17u","type":"unix","device":"0xffff98e47234b800","size_off":0,"node":20655,"name":"/run/systemd/private type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"19u","type":"unix","device":"0xffff98e4b3fed400","size_off":0,"node":76786,"name":"type=DGRAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"20u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"bpf-map"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"21u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"bpf-map"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"22u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"bpf-prog"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"23u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"bpf-prog"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"24u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"bpf-map"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"25u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"bpf-map"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"26u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"bpf-prog"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"27u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"bpf-prog"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"28u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"bpf-map"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"29u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"30u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"bpf-map"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"31u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"bpf-prog"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"32u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"bpf-prog"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"36r","type":"CHR","device":"10,235","size_off":0,"node":401,"name":"/dev/autofs"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"37u","type":"unix","device":"0xffff98e472348000","size_off":0,"node":20652,"name":"/run/systemd/notify type=DGRAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"38u","type":"unix","device":"0xffff98e472349c00","size_off":0,"node":20653,"name":"type=DGRAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"39u","type":"unix","device":"0xffff98e472349400","size_off":0,"node":20654,"name":"type=DGRAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"40u","type":"unix","device":"0xffff98e4afa57400","size_off":0,"node":25276,"name":"type=DGRAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"41u","type":"unix","device":"0xffff98e4afa54800","size_off":0,"node":25277,"name":"type=DGRAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"42u","type":"unix","device":"0xffff98e4b1d02400","size_off":0,"node":27475,"name":"/run/uuidd/request type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"43u","type":"netlink","device":null,"size_off":0,"node":20810,"name":"ROUTE"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"44u","type":"netlink","device":null,"size_off":0,"node":21114,"name":"AUDIT"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"45u","type":"netlink","device":null,"size_off":0,"node":21021,"name":"AUDIT"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"46u","type":"FIFO","device":"0,23","size_off":0,"node":329,"name":"/run/systemd/initctl/fifo"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"47u","type":"unix","device":"0xffff98e473ed4000","size_off":0,"node":20812,"name":"/run/udev/control type=SEQPACKET"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"48u","type":"CHR","device":"10,62","size_off":0,"node":4,"name":"/dev/rfkill"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"49u","type":"unix","device":"0xffff98e4afa55c00","size_off":0,"node":27489,"name":"/var/run/dbus/system_bus_socket type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"50u","type":"unix","device":"0xffff98e4b1d00800","size_off":0,"node":27473,"name":"/run/acpid.socket type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"51r","type":"FIFO","device":"0,12","size_off":0,"node":20976,"name":"pipe"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"52u","type":"unix","device":"0xffff98e47234ac00","size_off":0,"node":20664,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"53u","type":"unix","device":"0xffff98e47234a000","size_off":0,"node":20666,"name":"/run/systemd/journal/socket type=DGRAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"54u","type":"unix","device":"0xffff98e4b1dc4800","size_off":0,"node":27481,"name":"/var/run/docker.sock type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"55u","type":"netlink","device":null,"size_off":0,"node":20809,"name":"KOBJECT_UEVENT"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"56u","type":"unix","device":"0xffff98e4affb0c00","size_off":0,"node":21581,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"57u","type":"unix","device":"0xffff98e4b5abbc00","size_off":0,"node":21583,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"59u","type":"unix","device":"0xffff98e4b1dc3800","size_off":0,"node":25402,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"60u","type":"unix","device":"0xffff98e4aff63c00","size_off":0,"node":25415,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"61u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"62u","type":"unix","device":"0xffff98e4b8d57800","size_off":0,"node":26063,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"63u","type":"unix","device":"0xffff98e4afa6b800","size_off":0,"node":26728,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"64u","type":"unix","device":"0xffff98e4afa55800","size_off":0,"node":26944,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"65u","type":"unix","device":"0xffff98e4b905b400","size_off":0,"node":27669,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"66u","type":"unix","device":"0xffff98e4afd8cc00","size_off":0,"node":27981,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"67u","type":"unix","device":"0xffff98e4b911a000","size_off":0,"node":28133,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"68u","type":"unix","device":"0xffff98e471d09c00","size_off":0,"node":28695,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"69u","type":"unix","device":"0xffff98e4affb3c00","size_off":0,"node":28696,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"70u","type":"unix","device":"0xffff98e4b637d000","size_off":0,"node":29168,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"71u","type":"unix","device":"0xffff98e4b637d800","size_off":0,"node":29169,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"72u","type":"unix","device":"0xffff98e4b6063c00","size_off":0,"node":29558,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"73u","type":"unix","device":"0xffff98e4b5d82400","size_off":0,"node":29685,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"74u","type":"unix","device":"0xffff98e4b1d8b800","size_off":0,"node":30153,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"75u","type":"unix","device":"0xffff98e4b460dc00","size_off":0,"node":33603,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"76u","type":"unix","device":"0xffff98e4b637f800","size_off":0,"node":29166,"name":"type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"77u","type":"unix","device":"0xffff98e47234c800","size_off":0,"node":20660,"name":"/run/systemd/journal/syslog type=DGRAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"78u","type":"unix","device":"0xffff98e47234ec00","size_off":0,"node":20662,"name":"/run/lvm/lvmetad.socket type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"81u","type":"unix","device":"0xffff98e4b1dc3400","size_off":0,"node":27468,"name":"/var/lib/lxd/unix.socket type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"82u","type":"unix","device":"0xffff98e4b1ea3800","size_off":0,"node":20891,"name":"/run/lvm/lvmpolld.socket type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"85u","type":"unix","device":"0xffff98e4b59c1000","size_off":0,"node":27436,"name":"@ISCSIADM_ABSTRACT_NAMESPACE type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"87u","type":"unix","device":"0xffff98e4b9565c00","size_off":0,"node":21016,"name":"/run/systemd/journal/dev-log type=DGRAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"88u","type":"FIFO","device":"0,23","size_off":0,"node":314,"name":"/run/dmeventd-server"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"92u","type":"FIFO","device":"0,23","size_off":0,"node":315,"name":"/run/dmeventd-client"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"93u","type":"unix","device":"0xffff98e4b1d06400","size_off":0,"node":27443,"name":"/run/snapd.socket type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"94u","type":"unix","device":"0xffff98e4b1d01400","size_off":0,"node":27445,"name":"/run/snapd-snap.socket type=STREAM"},{"command":"kthreadd","pid":2,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kthreadd","pid":2,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kthreadd","pid":2,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/2/exe"},{"command":"kworker/0","pid":4,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kworker/0","pid":4,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kworker/0","pid":4,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4/exe"},{"command":"mm_percpu","pid":6,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"mm_percpu","pid":6,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"mm_percpu","pid":6,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/6/exe"},{"command":"ksoftirqd","pid":7,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"ksoftirqd","pid":7,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"ksoftirqd","pid":7,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/7/exe"},{"command":"rcu_sched","pid":8,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"rcu_sched","pid":8,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"rcu_sched","pid":8,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/8/exe"},{"command":"rcu_bh","pid":9,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"rcu_bh","pid":9,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"rcu_bh","pid":9,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/9/exe"},{"command":"migration","pid":10,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"migration","pid":10,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"migration","pid":10,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/10/exe"},{"command":"watchdog/","pid":11,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"watchdog/","pid":11,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"watchdog/","pid":11,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/11/exe"},{"command":"cpuhp/0","pid":12,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"cpuhp/0","pid":12,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"cpuhp/0","pid":12,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/12/exe"},{"command":"kdevtmpfs","pid":13,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"0,6","size_off":4060,"node":2,"name":"/"},{"command":"kdevtmpfs","pid":13,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"0,6","size_off":4060,"node":2,"name":"/"},{"command":"kdevtmpfs","pid":13,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/13/exe"},{"command":"netns","pid":14,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"netns","pid":14,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"netns","pid":14,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/14/exe"},{"command":"rcu_tasks","pid":15,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"rcu_tasks","pid":15,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"rcu_tasks","pid":15,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15/exe"},{"command":"kauditd","pid":16,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kauditd","pid":16,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kauditd","pid":16,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/16/exe"},{"command":"khungtask","pid":17,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"khungtask","pid":17,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"khungtask","pid":17,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/17/exe"},{"command":"oom_reape","pid":18,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"oom_reape","pid":18,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"oom_reape","pid":18,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/18/exe"},{"command":"writeback","pid":19,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"writeback","pid":19,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"writeback","pid":19,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/19/exe"},{"command":"kcompactd","pid":20,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kcompactd","pid":20,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kcompactd","pid":20,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/20/exe"},{"command":"ksmd","pid":21,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"ksmd","pid":21,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"ksmd","pid":21,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/21/exe"},{"command":"khugepage","pid":22,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"khugepage","pid":22,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"khugepage","pid":22,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/22/exe"},{"command":"crypto","pid":23,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"crypto","pid":23,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"crypto","pid":23,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23/exe"},{"command":"kintegrit","pid":24,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kintegrit","pid":24,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kintegrit","pid":24,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/24/exe"},{"command":"kblockd","pid":25,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kblockd","pid":25,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kblockd","pid":25,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/25/exe"},{"command":"ata_sff","pid":26,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"ata_sff","pid":26,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"ata_sff","pid":26,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/26/exe"},{"command":"md","pid":27,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"md","pid":27,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"md","pid":27,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/27/exe"},{"command":"edac-poll","pid":28,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"edac-poll","pid":28,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"edac-poll","pid":28,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/28/exe"},{"command":"devfreq_w","pid":29,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"devfreq_w","pid":29,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"devfreq_w","pid":29,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/29/exe"},{"command":"watchdogd","pid":30,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"watchdogd","pid":30,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"watchdogd","pid":30,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/30/exe"},{"command":"kswapd0","pid":34,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kswapd0","pid":34,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kswapd0","pid":34,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/34/exe"},{"command":"kworker/u","pid":35,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kworker/u","pid":35,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kworker/u","pid":35,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/35/exe"},{"command":"ecryptfs-","pid":36,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"ecryptfs-","pid":36,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"ecryptfs-","pid":36,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/36/exe"},{"command":"kthrotld","pid":78,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kthrotld","pid":78,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kthrotld","pid":78,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/78/exe"},{"command":"acpi_ther","pid":79,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"acpi_ther","pid":79,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"acpi_ther","pid":79,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/79/exe"},{"command":"scsi_eh_0","pid":80,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_0","pid":80,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_0","pid":80,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/80/exe"},{"command":"scsi_tmf_","pid":81,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":81,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":81,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/81/exe"},{"command":"scsi_eh_1","pid":82,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":82,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":82,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/82/exe"},{"command":"scsi_tmf_","pid":83,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":83,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":83,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/83/exe"},{"command":"ipv6_addr","pid":89,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"ipv6_addr","pid":89,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"ipv6_addr","pid":89,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/89/exe"},{"command":"kstrp","pid":99,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kstrp","pid":99,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kstrp","pid":99,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/99/exe"},{"command":"charger_m","pid":116,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"charger_m","pid":116,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"charger_m","pid":116,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/116/exe"},{"command":"mpt_poll_","pid":170,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"mpt_poll_","pid":170,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"mpt_poll_","pid":170,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/170/exe"},{"command":"scsi_eh_2","pid":171,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":171,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":171,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/171/exe"},{"command":"mpt/0","pid":172,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"mpt/0","pid":172,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"mpt/0","pid":172,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/172/exe"},{"command":"scsi_tmf_","pid":173,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":173,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":173,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/173/exe"},{"command":"scsi_eh_3","pid":174,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_3","pid":174,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_3","pid":174,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/174/exe"},{"command":"scsi_tmf_","pid":175,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":175,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":175,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/175/exe"},{"command":"scsi_eh_4","pid":176,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_4","pid":176,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_4","pid":176,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/176/exe"},{"command":"scsi_tmf_","pid":177,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":177,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":177,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/177/exe"},{"command":"scsi_eh_5","pid":178,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_5","pid":178,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_5","pid":178,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/178/exe"},{"command":"scsi_tmf_","pid":179,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":179,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":179,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/179/exe"},{"command":"scsi_eh_6","pid":180,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_6","pid":180,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_6","pid":180,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/180/exe"},{"command":"scsi_tmf_","pid":181,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":181,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":181,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/181/exe"},{"command":"scsi_eh_7","pid":182,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_7","pid":182,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_7","pid":182,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/182/exe"},{"command":"scsi_tmf_","pid":183,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":183,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":183,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/183/exe"},{"command":"scsi_eh_8","pid":188,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_8","pid":188,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_8","pid":188,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/188/exe"},{"command":"scsi_tmf_","pid":189,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":189,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":189,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/189/exe"},{"command":"scsi_eh_9","pid":191,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_9","pid":191,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_9","pid":191,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/191/exe"},{"command":"scsi_tmf_","pid":196,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":196,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":196,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/196/exe"},{"command":"scsi_eh_1","pid":198,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":198,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":198,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/198/exe"},{"command":"scsi_tmf_","pid":199,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":199,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":199,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/199/exe"},{"command":"scsi_eh_1","pid":201,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":201,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":201,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/201/exe"},{"command":"scsi_tmf_","pid":203,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":203,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":203,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/203/exe"},{"command":"scsi_eh_1","pid":205,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":205,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":205,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/205/exe"},{"command":"scsi_tmf_","pid":208,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":208,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":208,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/208/exe"},{"command":"scsi_eh_1","pid":209,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":209,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":209,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/209/exe"},{"command":"scsi_tmf_","pid":212,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":212,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":212,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/212/exe"},{"command":"scsi_eh_1","pid":213,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":213,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":213,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/213/exe"},{"command":"scsi_tmf_","pid":216,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":216,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":216,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/216/exe"},{"command":"scsi_eh_1","pid":217,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":217,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":217,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/217/exe"},{"command":"scsi_tmf_","pid":219,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":219,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":219,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/219/exe"},{"command":"scsi_eh_1","pid":221,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":221,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":221,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/221/exe"},{"command":"scsi_tmf_","pid":223,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":223,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":223,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/223/exe"},{"command":"scsi_eh_1","pid":225,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":225,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":225,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/225/exe"},{"command":"scsi_tmf_","pid":227,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":227,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":227,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/227/exe"},{"command":"scsi_eh_1","pid":229,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":229,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":229,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/229/exe"},{"command":"scsi_tmf_","pid":230,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":230,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":230,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/230/exe"},{"command":"scsi_eh_1","pid":232,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":232,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":232,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/232/exe"},{"command":"scsi_tmf_","pid":233,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":233,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":233,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/233/exe"},{"command":"scsi_eh_2","pid":235,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":235,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":235,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/235/exe"},{"command":"scsi_tmf_","pid":237,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":237,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":237,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/237/exe"},{"command":"scsi_eh_2","pid":238,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":238,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":238,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/238/exe"},{"command":"scsi_tmf_","pid":240,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":240,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":240,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/240/exe"},{"command":"scsi_eh_2","pid":241,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":241,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":241,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/241/exe"},{"command":"scsi_tmf_","pid":243,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":243,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":243,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/243/exe"},{"command":"scsi_eh_2","pid":245,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":245,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":245,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/245/exe"},{"command":"scsi_tmf_","pid":246,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":246,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":246,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/246/exe"},{"command":"scsi_eh_2","pid":248,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":248,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":248,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/248/exe"},{"command":"scsi_tmf_","pid":250,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":250,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":250,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/250/exe"},{"command":"scsi_eh_2","pid":252,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":252,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":252,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/252/exe"},{"command":"scsi_tmf_","pid":254,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":254,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":254,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/254/exe"},{"command":"scsi_eh_2","pid":256,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":256,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":256,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/256/exe"},{"command":"scsi_tmf_","pid":258,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":258,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":258,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/258/exe"},{"command":"scsi_eh_2","pid":259,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":259,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":259,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/259/exe"},{"command":"scsi_tmf_","pid":260,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":260,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":260,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/260/exe"},{"command":"scsi_eh_2","pid":261,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":261,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":261,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/261/exe"},{"command":"scsi_tmf_","pid":262,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":262,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":262,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/262/exe"},{"command":"scsi_eh_2","pid":263,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":263,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":263,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/263/exe"},{"command":"scsi_tmf_","pid":264,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":264,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":264,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/264/exe"},{"command":"scsi_eh_3","pid":265,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_3","pid":265,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_3","pid":265,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/265/exe"},{"command":"scsi_tmf_","pid":266,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":266,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":266,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/266/exe"},{"command":"scsi_eh_3","pid":267,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_3","pid":267,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_3","pid":267,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/267/exe"},{"command":"scsi_tmf_","pid":268,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":268,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":268,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/268/exe"},{"command":"scsi_eh_3","pid":295,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_3","pid":295,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_3","pid":295,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/295/exe"},{"command":"scsi_tmf_","pid":296,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":296,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":296,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/296/exe"},{"command":"ttm_swap","pid":302,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"ttm_swap","pid":302,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"ttm_swap","pid":302,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/302/exe"},{"command":"irq/16-vm","pid":303,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"irq/16-vm","pid":303,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"irq/16-vm","pid":303,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/303/exe"},{"command":"kworker/0","pid":305,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kworker/0","pid":305,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kworker/0","pid":305,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/305/exe"},{"command":"raid5wq","pid":369,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"raid5wq","pid":369,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"raid5wq","pid":369,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/369/exe"},{"command":"jbd2/sda2","pid":422,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"jbd2/sda2","pid":422,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"jbd2/sda2","pid":422,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/422/exe"},{"command":"ext4-rsv-","pid":423,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"ext4-rsv-","pid":423,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"ext4-rsv-","pid":423,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/423/exe"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":129096,"node":668815,"name":"/lib/systemd/systemd-journald"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":8388608,"node":1070319,"name":"/var/log/journal/076ee0d2cc5741a98a2b4e4638a69bfe/user-1000.journal"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":8388608,"node":1070318,"name":"/var/log/journal/076ee0d2cc5741a98a2b4e4638a69bfe/system.journal"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1700792,"node":656167,"name":"/lib/x86_64-linux-gnu/libm-2.27.so"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":121016,"node":655394,"name":"/lib/x86_64-linux-gnu/libudev.so.1.6.9"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":43304,"node":656160,"name":"/lib/x86_64-linux-gnu/libjson-c.so.3.0.1"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":34872,"node":924307,"name":"/usr/lib/x86_64-linux-gnu/libargon2.so.0"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":432640,"node":656144,"name":"/lib/x86_64-linux-gnu/libdevmapper.so.1.02.1"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":18680,"node":656129,"name":"/lib/x86_64-linux-gnu/libattr.so.1.1.0"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":311720,"node":656131,"name":"/lib/x86_64-linux-gnu/libblkid.so.1.1.0"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":206872,"node":656157,"name":"/lib/x86_64-linux-gnu/libidn.so.11.6.16"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":288976,"node":656202,"name":"/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":27088,"node":924361,"name":"/usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":310040,"node":656140,"name":"/lib/x86_64-linux-gnu/libcryptsetup.so.12.2.0"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31232,"node":656125,"name":"/lib/x86_64-linux-gnu/libacl.so.1.1.0"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":22768,"node":656136,"name":"/lib/x86_64-linux-gnu/libcap.so.2.25"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2363632,"node":655401,"name":"/lib/systemd/libsystemd-shared-237.so"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"0,23","size_off":8,"node":340,"name":"/run/systemd/journal/kernel-seqnum"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"1w","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"2w","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"3u","type":"unix","device":"0xffff98e4b9565c00","size_off":0,"node":21016,"name":"/run/systemd/journal/dev-log type=DGRAM"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"4u","type":"netlink","device":null,"size_off":0,"node":21021,"name":"AUDIT"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"5u","type":"unix","device":"0xffff98e47234ac00","size_off":0,"node":20664,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"6u","type":"unix","device":"0xffff98e47234a000","size_off":0,"node":20666,"name":"/run/systemd/journal/socket type=DGRAM"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"7w","type":"CHR","device":"1,11","size_off":0,"node":12,"name":"/dev/kmsg"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"8u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"9u","type":"CHR","device":"1,11","size_off":0,"node":12,"name":"/dev/kmsg"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"10r","type":"REG","device":"0,4","size_off":0,"node":21260,"name":"/proc/sys/kernel/hostname"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"11u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[signalfd]"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"12u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[signalfd]"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"13u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[signalfd]"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"14u","type":"unix","device":"0xffff98e4b1ea0400","size_off":0,"node":21261,"name":"type=DGRAM"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"15u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"16u","type":"unix","device":"0xffff98e4b8d57800","size_off":0,"node":26063,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"17u","type":"REG","device":"8,2","size_off":8388608,"node":1070318,"name":"/var/log/journal/076ee0d2cc5741a98a2b4e4638a69bfe/system.journal"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"18u","type":"unix","device":"0xffff98e4aff63c00","size_off":0,"node":25415,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"19u","type":"unix","device":"0xffff98e4b1dc3800","size_off":0,"node":25402,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"20u","type":"unix","device":"0xffff98e4affb0c00","size_off":0,"node":21581,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"21u","type":"unix","device":"0xffff98e4afa6b800","size_off":0,"node":26728,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"22u","type":"unix","device":"0xffff98e4b460dc00","size_off":0,"node":33603,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"23u","type":"unix","device":"0xffff98e4b5abbc00","size_off":0,"node":21583,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"24u","type":"unix","device":"0xffff98e4b905b400","size_off":0,"node":27669,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"25u","type":"unix","device":"0xffff98e4afa55800","size_off":0,"node":26944,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"26u","type":"unix","device":"0xffff98e4b6063c00","size_off":0,"node":29558,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"27u","type":"REG","device":"8,2","size_off":8388608,"node":1070319,"name":"/var/log/journal/076ee0d2cc5741a98a2b4e4638a69bfe/user-1000.journal"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"29u","type":"unix","device":"0xffff98e4afd8cc00","size_off":0,"node":27981,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"30u","type":"unix","device":"0xffff98e4b911a000","size_off":0,"node":28133,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"33u","type":"unix","device":"0xffff98e4b1d8b800","size_off":0,"node":30153,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"34u","type":"unix","device":"0xffff98e471d09c00","size_off":0,"node":28695,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"35u","type":"unix","device":"0xffff98e4affb3c00","size_off":0,"node":28696,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"38u","type":"unix","device":"0xffff98e4b637d000","size_off":0,"node":29168,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"39u","type":"unix","device":"0xffff98e4b637d800","size_off":0,"node":29169,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"40u","type":"unix","device":"0xffff98e4b5d82400","size_off":0,"node":29685,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"iscsi_eh","pid":498,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"iscsi_eh","pid":498,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"iscsi_eh","pid":498,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/498/exe"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":584136,"node":668654,"name":"/lib/systemd/systemd-udevd"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1258796,"node":655702,"name":"/lib/modules/4.15.0-65-generic/modules.alias.bin"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":8962391,"node":655396,"name":"/lib/udev/hwdb.bin"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":18680,"node":656129,"name":"/lib/x86_64-linux-gnu/libattr.so.1.1.0"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":311720,"node":656131,"name":"/lib/x86_64-linux-gnu/libblkid.so.1.1.0"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31232,"node":656125,"name":"/lib/x86_64-linux-gnu/libacl.so.1.1.0"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":92208,"node":656162,"name":"/lib/x86_64-linux-gnu/libkmod.so.2.3.2"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":721695,"node":662916,"name":"/lib/modules/4.15.0-65-generic/modules.symbols.bin"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":782483,"node":669924,"name":"/lib/modules/4.15.0-65-generic/modules.dep.bin"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":9685,"node":662917,"name":"/lib/modules/4.15.0-65-generic/modules.builtin.bin"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4affb4000","size_off":0,"node":21388,"name":"type=STREAM"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4affb4000","size_off":0,"node":21388,"name":"type=STREAM"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"3u","type":"unix","device":"0xffff98e473ed4000","size_off":0,"node":20812,"name":"/run/udev/control type=SEQPACKET"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"4u","type":"netlink","device":null,"size_off":0,"node":20809,"name":"KOBJECT_UEVENT"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"5u","type":"unix","device":"0xffff98e4b96e1400","size_off":0,"node":21588,"name":"type=DGRAM"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"6r","type":"REG","device":"8,2","size_off":8962391,"node":655396,"name":"/lib/udev/hwdb.bin"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"7u","type":"unix","device":"0xffff98e4b9565400","size_off":0,"node":21598,"name":"type=DGRAM"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"8u","type":"unix","device":"0xffff98e4b9560400","size_off":0,"node":21599,"name":"type=DGRAM"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"9r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"10u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"11u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[signalfd]"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"12u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"13u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":84104,"node":263670,"name":"/sbin/lvmetad"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1700792,"node":656167,"name":"/lib/x86_64-linux-gnu/libm-2.27.so"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":121016,"node":655394,"name":"/lib/x86_64-linux-gnu/libudev.so.1.6.9"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":432640,"node":656144,"name":"/lib/x86_64-linux-gnu/libdevmapper.so.1.02.1"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b5abec00","size_off":0,"node":21498,"name":"type=STREAM"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b5abec00","size_off":0,"node":21498,"name":"type=STREAM"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"3u","type":"unix","device":"0xffff98e47234ec00","size_off":0,"node":20662,"name":"/run/lvm/lvmetad.socket type=STREAM"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"4wW","type":"REG","device":"0,23","size_off":4,"node":361,"name":"/run/lvmetad.pid"},{"command":"ib-comp-w","pid":512,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"ib-comp-w","pid":512,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"ib-comp-w","pid":512,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/512/exe"},{"command":"ib_mcast","pid":513,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"ib_mcast","pid":513,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"ib_mcast","pid":513,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/513/exe"},{"command":"ib_nl_sa_","pid":514,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"ib_nl_sa_","pid":514,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"ib_nl_sa_","pid":514,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/514/exe"},{"command":"rdma_cm","pid":523,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"rdma_cm","pid":523,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"rdma_cm","pid":523,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/523/exe"},{"command":"loop0","pid":541,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop0","pid":541,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop0","pid":541,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/541/exe"},{"command":"loop1","pid":545,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop1","pid":545,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop1","pid":545,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/545/exe"},{"command":"loop2","pid":548,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop2","pid":548,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop2","pid":548,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/548/exe"},{"command":"loop3","pid":552,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop3","pid":552,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop3","pid":552,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/552/exe"},{"command":"loop5","pid":554,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop5","pid":554,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop5","pid":554,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/554/exe"},{"command":"loop7","pid":556,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop7","pid":556,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop7","pid":556,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/556/exe"},{"command":"loop8","pid":557,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop8","pid":557,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop8","pid":557,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/557/exe"},{"command":"loop10","pid":559,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop10","pid":559,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop10","pid":559,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/559/exe"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"txt","type":"REG","device":"8,2","size_off":38976,"node":668835,"name":"/lib/systemd/systemd-timesyncd"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":26936,"node":656178,"name":"/lib/x86_64-linux-gnu/libnss_dns-2.27.so"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":121016,"node":655394,"name":"/lib/x86_64-linux-gnu/libudev.so.1.6.9"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":43304,"node":656160,"name":"/lib/x86_64-linux-gnu/libjson-c.so.3.0.1"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":34872,"node":924307,"name":"/usr/lib/x86_64-linux-gnu/libargon2.so.0"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":432640,"node":656144,"name":"/lib/x86_64-linux-gnu/libdevmapper.so.1.02.1"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":18680,"node":656129,"name":"/lib/x86_64-linux-gnu/libattr.so.1.1.0"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":311720,"node":656131,"name":"/lib/x86_64-linux-gnu/libblkid.so.1.1.0"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":206872,"node":656157,"name":"/lib/x86_64-linux-gnu/libidn.so.11.6.16"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":288976,"node":656202,"name":"/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":27088,"node":924361,"name":"/usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":310040,"node":656140,"name":"/lib/x86_64-linux-gnu/libcryptsetup.so.12.2.0"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":31232,"node":656125,"name":"/lib/x86_64-linux-gnu/libacl.so.1.1.0"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":22768,"node":656136,"name":"/lib/x86_64-linux-gnu/libcap.so.2.25"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":1700792,"node":656167,"name":"/lib/x86_64-linux-gnu/libm-2.27.so"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":2363632,"node":655401,"name":"/lib/systemd/libsystemd-shared-237.so"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"1u","type":"unix","device":"0xffff98e4aff66400","size_off":0,"node":25414,"name":"type=STREAM"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"2u","type":"unix","device":"0xffff98e4aff66400","size_off":0,"node":25414,"name":"type=STREAM"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"3u","type":"unix","device":"0xffff98e4afa5e000","size_off":0,"node":25426,"name":"type=DGRAM"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[signalfd]"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"6u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"7u","type":"unix","device":"0xffff98e4afa57800","size_off":0,"node":25429,"name":"type=DGRAM"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"8u","type":"unix","device":"0xffff98e4afa54400","size_off":0,"node":25430,"name":"type=DGRAM"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"9u","type":"unix","device":"0xffff98e4afa52800","size_off":0,"node":25431,"name":"type=DGRAM"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"10u","type":"unix","device":"0xffff98e4afa56800","size_off":0,"node":25432,"name":"type=DGRAM"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"11r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"12u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"13u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"txt","type":"REG","device":"8,2","size_off":38976,"node":668835,"name":"/lib/systemd/systemd-timesyncd"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":26936,"node":656178,"name":"/lib/x86_64-linux-gnu/libnss_dns-2.27.so"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":121016,"node":655394,"name":"/lib/x86_64-linux-gnu/libudev.so.1.6.9"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":43304,"node":656160,"name":"/lib/x86_64-linux-gnu/libjson-c.so.3.0.1"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":34872,"node":924307,"name":"/usr/lib/x86_64-linux-gnu/libargon2.so.0"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":432640,"node":656144,"name":"/lib/x86_64-linux-gnu/libdevmapper.so.1.02.1"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":18680,"node":656129,"name":"/lib/x86_64-linux-gnu/libattr.so.1.1.0"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":311720,"node":656131,"name":"/lib/x86_64-linux-gnu/libblkid.so.1.1.0"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":206872,"node":656157,"name":"/lib/x86_64-linux-gnu/libidn.so.11.6.16"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":288976,"node":656202,"name":"/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":27088,"node":924361,"name":"/usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":310040,"node":656140,"name":"/lib/x86_64-linux-gnu/libcryptsetup.so.12.2.0"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":31232,"node":656125,"name":"/lib/x86_64-linux-gnu/libacl.so.1.1.0"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":22768,"node":656136,"name":"/lib/x86_64-linux-gnu/libcap.so.2.25"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":1700792,"node":656167,"name":"/lib/x86_64-linux-gnu/libm-2.27.so"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":2363632,"node":655401,"name":"/lib/systemd/libsystemd-shared-237.so"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"1u","type":"unix","device":"0xffff98e4aff66400","size_off":0,"node":25414,"name":"type=STREAM"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"2u","type":"unix","device":"0xffff98e4aff66400","size_off":0,"node":25414,"name":"type=STREAM"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"3u","type":"unix","device":"0xffff98e4afa5e000","size_off":0,"node":25426,"name":"type=DGRAM"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[signalfd]"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"6u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"7u","type":"unix","device":"0xffff98e4afa57800","size_off":0,"node":25429,"name":"type=DGRAM"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"8u","type":"unix","device":"0xffff98e4afa54400","size_off":0,"node":25430,"name":"type=DGRAM"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"9u","type":"unix","device":"0xffff98e4afa52800","size_off":0,"node":25431,"name":"type=DGRAM"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"10u","type":"unix","device":"0xffff98e4afa56800","size_off":0,"node":25432,"name":"type=DGRAM"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"11r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"12u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"13u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":125144,"node":917875,"name":"/usr/bin/VGAuthService"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":96616,"node":656152,"name":"/lib/x86_64-linux-gnu/libgcc_s.so.1"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1594864,"node":924414,"name":"/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26904264,"node":924354,"name":"/usr/lib/x86_64-linux-gnu/libicudata.so.60.2"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1700792,"node":656167,"name":"/lib/x86_64-linux-gnu/libm-2.27.so"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":116960,"node":656216,"name":"/lib/x86_64-linux-gnu/libz.so.1.2.11"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1792008,"node":924359,"name":"/usr/lib/x86_64-linux-gnu/libicuuc.so.60.2"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"DEL","type":"REG","device":"8,2","size_off":null,"node":924429,"name":"/usr/lib/x86_64-linux-gnu/libxslt.so.1.1.29"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2917216,"node":924314,"name":"/usr/lib/x86_64-linux-gnu/libcrypto.so.1.1"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":577312,"node":924413,"name":"/usr/lib/x86_64-linux-gnu/libssl.so.1.1"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1834232,"node":924426,"name":"/usr/lib/x86_64-linux-gnu/libxml2.so.2.9.4"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":408688,"node":924428,"name":"/usr/lib/x86_64-linux-gnu/libxmlsec1.so.1.2.25"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":270800,"node":924427,"name":"/usr/lib/x86_64-linux-gnu/libxmlsec1-openssl.so.1.2.25"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1137968,"node":924340,"name":"/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26376,"node":1049137,"name":"/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b1dc2800","size_off":0,"node":25401,"name":"type=STREAM"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b1dc2800","size_off":0,"node":25401,"name":"type=STREAM"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"3u","type":"unix","device":"0xffff98e4afa6a400","size_off":0,"node":25533,"name":"type=DGRAM"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"4r","type":"FIFO","device":"0,12","size_off":0,"node":25543,"name":"pipe"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"5w","type":"FIFO","device":"0,12","size_off":0,"node":25543,"name":"pipe"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"6u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"7r","type":"CHR","device":"1,9","size_off":0,"node":11,"name":"/dev/urandom"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"8r","type":"CHR","device":"1,8","size_off":0,"node":10,"name":"/dev/random"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"9u","type":"unix","device":"0xffff98e4afa69400","size_off":0,"node":25548,"name":"/var/run/vmware/guestServicePipe type=STREAM"},{"command":"kworker/u","pid":671,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kworker/u","pid":671,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kworker/u","pid":671,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/671/exe"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":51456,"node":918412,"name":"/usr/bin/vmtoolsd"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":35544,"node":918745,"name":"/usr/lib/open-vm-tools/plugins/vmsvc/libvmbackup.so"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":18696,"node":918744,"name":"/usr/lib/open-vm-tools/plugins/vmsvc/libtimeSync.so"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14712,"node":918742,"name":"/usr/lib/open-vm-tools/plugins/vmsvc/libpowerOps.so"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":36616,"node":918741,"name":"/usr/lib/open-vm-tools/plugins/vmsvc/libguestInfo.so"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":23080,"node":918740,"name":"/usr/lib/open-vm-tools/plugins/vmsvc/libgrabbitmqProxy.so"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":75776,"node":924385,"name":"/usr/lib/x86_64-linux-gnu/libmspack.so.0.1.0"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31296,"node":918471,"name":"/usr/lib/libDeployPkg.so.0.0.0"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14696,"node":918739,"name":"/usr/lib/open-vm-tools/plugins/vmsvc/libdeployPkgPlugin.so"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":85144,"node":918476,"name":"/usr/lib/libvgauth.so.0.0.0"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":126520,"node":918736,"name":"/usr/lib/open-vm-tools/plugins/common/libvix.so"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":163152,"node":918475,"name":"/usr/lib/libhgfs.so.0.0.0"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10440,"node":918735,"name":"/usr/lib/open-vm-tools/plugins/common/libhgfsServer.so"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26904264,"node":924354,"name":"/usr/lib/x86_64-linux-gnu/libicudata.so.60.2"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1700792,"node":656167,"name":"/lib/x86_64-linux-gnu/libm-2.27.so"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1594864,"node":924414,"name":"/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31032,"node":924332,"name":"/usr/lib/x86_64-linux-gnu/libffi.so.6.0.4"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":96616,"node":656152,"name":"/lib/x86_64-linux-gnu/libgcc_s.so.1"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2917216,"node":924314,"name":"/usr/lib/x86_64-linux-gnu/libcrypto.so.1.1"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":577312,"node":924413,"name":"/usr/lib/x86_64-linux-gnu/libssl.so.1.1"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1792008,"node":924359,"name":"/usr/lib/x86_64-linux-gnu/libicuuc.so.60.2"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2754872,"node":924355,"name":"/usr/lib/x86_64-linux-gnu/libicui18n.so.60.2"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":60936,"node":924323,"name":"/usr/lib/x86_64-linux-gnu/libdumbnet.so.1.0.1"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1137968,"node":924340,"name":"/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":342072,"node":924344,"name":"/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14232,"node":924341,"name":"/usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":623592,"node":918477,"name":"/usr/lib/libvmtools.so.0.0.0"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b8d51000","size_off":0,"node":26000,"name":"type=STREAM"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b8d51000","size_off":0,"node":26000,"name":"type=STREAM"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"3w","type":"REG","device":"8,2","size_off":33789,"node":1058855,"name":"/var/log/vmware-vmsvc.log"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"5r","type":"FIFO","device":"0,12","size_off":0,"node":26072,"name":"pipe"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"6w","type":"FIFO","device":"0,12","size_off":0,"node":26072,"name":"pipe"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"7u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"8u","type":"sock","device":"0,9","size_off":0,"node":26217,"name":"protocol: AF_VSOCK"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"9r","type":"CHR","device":"1,9","size_off":0,"node":11,"name":"/dev/urandom"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"10r","type":"CHR","device":"1,8","size_off":0,"node":10,"name":"/dev/random"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":51456,"node":918412,"name":"/usr/bin/vmtoolsd"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":35544,"node":918745,"name":"/usr/lib/open-vm-tools/plugins/vmsvc/libvmbackup.so"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":18696,"node":918744,"name":"/usr/lib/open-vm-tools/plugins/vmsvc/libtimeSync.so"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14712,"node":918742,"name":"/usr/lib/open-vm-tools/plugins/vmsvc/libpowerOps.so"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":36616,"node":918741,"name":"/usr/lib/open-vm-tools/plugins/vmsvc/libguestInfo.so"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":23080,"node":918740,"name":"/usr/lib/open-vm-tools/plugins/vmsvc/libgrabbitmqProxy.so"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":75776,"node":924385,"name":"/usr/lib/x86_64-linux-gnu/libmspack.so.0.1.0"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31296,"node":918471,"name":"/usr/lib/libDeployPkg.so.0.0.0"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14696,"node":918739,"name":"/usr/lib/open-vm-tools/plugins/vmsvc/libdeployPkgPlugin.so"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":85144,"node":918476,"name":"/usr/lib/libvgauth.so.0.0.0"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":126520,"node":918736,"name":"/usr/lib/open-vm-tools/plugins/common/libvix.so"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":163152,"node":918475,"name":"/usr/lib/libhgfs.so.0.0.0"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10440,"node":918735,"name":"/usr/lib/open-vm-tools/plugins/common/libhgfsServer.so"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26904264,"node":924354,"name":"/usr/lib/x86_64-linux-gnu/libicudata.so.60.2"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1700792,"node":656167,"name":"/lib/x86_64-linux-gnu/libm-2.27.so"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1594864,"node":924414,"name":"/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31032,"node":924332,"name":"/usr/lib/x86_64-linux-gnu/libffi.so.6.0.4"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":96616,"node":656152,"name":"/lib/x86_64-linux-gnu/libgcc_s.so.1"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2917216,"node":924314,"name":"/usr/lib/x86_64-linux-gnu/libcrypto.so.1.1"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":577312,"node":924413,"name":"/usr/lib/x86_64-linux-gnu/libssl.so.1.1"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1792008,"node":924359,"name":"/usr/lib/x86_64-linux-gnu/libicuuc.so.60.2"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2754872,"node":924355,"name":"/usr/lib/x86_64-linux-gnu/libicui18n.so.60.2"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":60936,"node":924323,"name":"/usr/lib/x86_64-linux-gnu/libdumbnet.so.1.0.1"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1137968,"node":924340,"name":"/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":342072,"node":924344,"name":"/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14232,"node":924341,"name":"/usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":623592,"node":918477,"name":"/usr/lib/libvmtools.so.0.0.0"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b8d51000","size_off":0,"node":26000,"name":"type=STREAM"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b8d51000","size_off":0,"node":26000,"name":"type=STREAM"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"3w","type":"REG","device":"8,2","size_off":33789,"node":1058855,"name":"/var/log/vmware-vmsvc.log"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"5r","type":"FIFO","device":"0,12","size_off":0,"node":26072,"name":"pipe"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"6w","type":"FIFO","device":"0,12","size_off":0,"node":26072,"name":"pipe"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"7u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"8u","type":"sock","device":"0,9","size_off":0,"node":26217,"name":"protocol: AF_VSOCK"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"9r","type":"CHR","device":"1,9","size_off":0,"node":11,"name":"/dev/urandom"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"10r","type":"CHR","device":"1,8","size_off":0,"node":10,"name":"/dev/random"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"txt","type":"REG","device":"8,2","size_off":1625168,"node":668820,"name":"/lib/systemd/systemd-networkd"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":1700792,"node":656167,"name":"/lib/x86_64-linux-gnu/libm-2.27.so"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":121016,"node":655394,"name":"/lib/x86_64-linux-gnu/libudev.so.1.6.9"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":43304,"node":656160,"name":"/lib/x86_64-linux-gnu/libjson-c.so.3.0.1"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":34872,"node":924307,"name":"/usr/lib/x86_64-linux-gnu/libargon2.so.0"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":432640,"node":656144,"name":"/lib/x86_64-linux-gnu/libdevmapper.so.1.02.1"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":18680,"node":656129,"name":"/lib/x86_64-linux-gnu/libattr.so.1.1.0"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":311720,"node":656131,"name":"/lib/x86_64-linux-gnu/libblkid.so.1.1.0"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":288976,"node":656202,"name":"/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":310040,"node":656140,"name":"/lib/x86_64-linux-gnu/libcryptsetup.so.12.2.0"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":31232,"node":656125,"name":"/lib/x86_64-linux-gnu/libacl.so.1.1.0"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":206872,"node":656157,"name":"/lib/x86_64-linux-gnu/libidn.so.11.6.16"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":27088,"node":924361,"name":"/usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":22768,"node":656136,"name":"/lib/x86_64-linux-gnu/libcap.so.2.25"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":2363632,"node":655401,"name":"/lib/systemd/libsystemd-shared-237.so"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"1u","type":"unix","device":"0xffff98e4afa6f000","size_off":0,"node":26727,"name":"type=STREAM"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"2u","type":"unix","device":"0xffff98e4afa6f000","size_off":0,"node":26727,"name":"type=STREAM"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"3u","type":"netlink","device":null,"size_off":0,"node":20810,"name":"ROUTE"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"4u","type":"unix","device":"0xffff98e4afd88c00","size_off":0,"node":26760,"name":"type=DGRAM"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"6u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"7u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[signalfd]"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"8u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"9u","type":"netlink","device":null,"size_off":0,"node":26768,"name":"GENERIC"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"10u","type":"netlink","device":null,"size_off":0,"node":26769,"name":"KOBJECT_UEVENT"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"11u","type":"unix","device":"0xffff98e4afd89000","size_off":0,"node":26770,"name":"type=DGRAM"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"12u","type":"unix","device":"0xffff98e4afd89c00","size_off":0,"node":26771,"name":"type=DGRAM"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"13u","type":"unix","device":"0xffff98e4afd8c000","size_off":0,"node":26772,"name":"type=DGRAM"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"14u","type":"unix","device":"0xffff98e4afd8b400","size_off":0,"node":26773,"name":"type=DGRAM"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"15u","type":"IPv4","device":"336698","size_off":0,"node":null,"name":"kbrazil-ubuntu:bootpc"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"16u","type":"pack","device":"26967","size_off":0,"node":35020,"name":"type=SOCK_RAW"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"17u","type":"raw6","device":null,"size_off":0,"node":271764,"name":"00000000000000000000000000000000:003A->00000000000000000000000000000000:0000 st=07"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"18u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"20u","type":"unix","device":"0xffff98e4b1d02c00","size_off":0,"node":27494,"name":"type=STREAM"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"txt","type":"REG","device":"8,2","size_off":378944,"node":668826,"name":"/lib/systemd/systemd-resolved"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":121016,"node":655394,"name":"/lib/x86_64-linux-gnu/libudev.so.1.6.9"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":43304,"node":656160,"name":"/lib/x86_64-linux-gnu/libjson-c.so.3.0.1"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":34872,"node":924307,"name":"/usr/lib/x86_64-linux-gnu/libargon2.so.0"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":432640,"node":656144,"name":"/lib/x86_64-linux-gnu/libdevmapper.so.1.02.1"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":18680,"node":656129,"name":"/lib/x86_64-linux-gnu/libattr.so.1.1.0"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":311720,"node":656131,"name":"/lib/x86_64-linux-gnu/libblkid.so.1.1.0"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":206872,"node":656157,"name":"/lib/x86_64-linux-gnu/libidn.so.11.6.16"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":288976,"node":656202,"name":"/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":27088,"node":924361,"name":"/usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":310040,"node":656140,"name":"/lib/x86_64-linux-gnu/libcryptsetup.so.12.2.0"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":31232,"node":656125,"name":"/lib/x86_64-linux-gnu/libacl.so.1.1.0"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":22768,"node":656136,"name":"/lib/x86_64-linux-gnu/libcap.so.2.25"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":1700792,"node":656167,"name":"/lib/x86_64-linux-gnu/libm-2.27.so"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":2363632,"node":655401,"name":"/lib/systemd/libsystemd-shared-237.so"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"1u","type":"unix","device":"0xffff98e4afa55400","size_off":0,"node":26941,"name":"type=STREAM"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"2u","type":"unix","device":"0xffff98e4afa55400","size_off":0,"node":26941,"name":"type=STREAM"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"3u","type":"unix","device":"0xffff98e4b1dc1800","size_off":0,"node":26986,"name":"type=DGRAM"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[signalfd]"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"6u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"7r","type":"REG","device":"0,4","size_off":0,"node":21260,"name":"/proc/sys/kernel/hostname"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"8r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"9u","type":"netlink","device":null,"size_off":0,"node":27002,"name":"ROUTE"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"10u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"11u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"12u","type":"IPv4","device":"27005","size_off":0,"node":null,"name":"localhost:domain"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"13u","type":"IPv4","device":"27006","size_off":0,"node":null,"name":"localhost:domain (LISTEN)"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"14u","type":"unix","device":"0xffff98e4b1dc4000","size_off":0,"node":27493,"name":"type=STREAM"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"txt","type":"REG","device":"8,2","size_off":680488,"node":924792,"name":"/usr/sbin/rsyslogd"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":258040,"node":655397,"name":"/lib/x86_64-linux-gnu/libnss_systemd.so.2"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":19448,"node":1050299,"name":"/usr/lib/x86_64-linux-gnu/rsyslog/imklog.so"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":36744,"node":1050306,"name":"/usr/lib/x86_64-linux-gnu/rsyslog/imuxsock.so"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":27192,"node":1050307,"name":"/usr/lib/x86_64-linux-gnu/rsyslog/lmnet.so"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":536648,"node":662910,"name":"/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":43720,"node":924331,"name":"/usr/lib/x86_64-linux-gnu/libfastjson.so.4.2.0"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":14344,"node":924327,"name":"/usr/lib/x86_64-linux-gnu/libestr.so.0.0.0"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":116960,"node":656216,"name":"/lib/x86_64-linux-gnu/libz.so.1.2.11"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"1w","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"2w","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"3u","type":"unix","device":"0xffff98e47234c800","size_off":0,"node":20660,"name":"/run/systemd/journal/syslog type=DGRAM"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"4r","type":"CHR","device":"1,9","size_off":0,"node":11,"name":"/dev/urandom"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"5r","type":"REG","device":"0,4","size_off":0,"node":4026532032,"name":"/proc/kmsg"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"6u","type":"unix","device":"0xffff98e4b96e6000","size_off":0,"node":28224,"name":"type=DGRAM"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"7w","type":"REG","device":"8,2","size_off":28996,"node":1053407,"name":"/var/log/auth.log"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"8w","type":"REG","device":"8,2","size_off":8045,"node":1051996,"name":"/var/log/syslog"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"txt","type":"REG","device":"8,2","size_off":680488,"node":924792,"name":"/usr/sbin/rsyslogd"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":258040,"node":655397,"name":"/lib/x86_64-linux-gnu/libnss_systemd.so.2"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":19448,"node":1050299,"name":"/usr/lib/x86_64-linux-gnu/rsyslog/imklog.so"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":36744,"node":1050306,"name":"/usr/lib/x86_64-linux-gnu/rsyslog/imuxsock.so"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":27192,"node":1050307,"name":"/usr/lib/x86_64-linux-gnu/rsyslog/lmnet.so"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":536648,"node":662910,"name":"/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":43720,"node":924331,"name":"/usr/lib/x86_64-linux-gnu/libfastjson.so.4.2.0"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":14344,"node":924327,"name":"/usr/lib/x86_64-linux-gnu/libestr.so.0.0.0"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":116960,"node":656216,"name":"/lib/x86_64-linux-gnu/libz.so.1.2.11"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"1w","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"2w","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"3u","type":"unix","device":"0xffff98e47234c800","size_off":0,"node":20660,"name":"/run/systemd/journal/syslog type=DGRAM"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"4r","type":"CHR","device":"1,9","size_off":0,"node":11,"name":"/dev/urandom"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"5r","type":"REG","device":"0,4","size_off":0,"node":4026532032,"name":"/proc/kmsg"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"6u","type":"unix","device":"0xffff98e4b96e6000","size_off":0,"node":28224,"name":"type=DGRAM"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"7w","type":"REG","device":"8,2","size_off":28996,"node":1053407,"name":"/var/log/auth.log"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"8w","type":"REG","device":"8,2","size_off":8045,"node":1051996,"name":"/var/log/syslog"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"txt","type":"REG","device":"8,2","size_off":680488,"node":924792,"name":"/usr/sbin/rsyslogd"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":258040,"node":655397,"name":"/lib/x86_64-linux-gnu/libnss_systemd.so.2"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":19448,"node":1050299,"name":"/usr/lib/x86_64-linux-gnu/rsyslog/imklog.so"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":36744,"node":1050306,"name":"/usr/lib/x86_64-linux-gnu/rsyslog/imuxsock.so"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":27192,"node":1050307,"name":"/usr/lib/x86_64-linux-gnu/rsyslog/lmnet.so"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":536648,"node":662910,"name":"/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":43720,"node":924331,"name":"/usr/lib/x86_64-linux-gnu/libfastjson.so.4.2.0"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":14344,"node":924327,"name":"/usr/lib/x86_64-linux-gnu/libestr.so.0.0.0"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":116960,"node":656216,"name":"/lib/x86_64-linux-gnu/libz.so.1.2.11"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"1w","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"2w","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"3u","type":"unix","device":"0xffff98e47234c800","size_off":0,"node":20660,"name":"/run/systemd/journal/syslog type=DGRAM"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"4r","type":"CHR","device":"1,9","size_off":0,"node":11,"name":"/dev/urandom"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"5r","type":"REG","device":"0,4","size_off":0,"node":4026532032,"name":"/proc/kmsg"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"6u","type":"unix","device":"0xffff98e4b96e6000","size_off":0,"node":28224,"name":"type=DGRAM"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"7w","type":"REG","device":"8,2","size_off":28996,"node":1053407,"name":"/var/log/auth.log"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"8w","type":"REG","device":"8,2","size_off":8045,"node":1051996,"name":"/var/log/syslog"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"txt","type":"REG","device":"8,2","size_off":680488,"node":924792,"name":"/usr/sbin/rsyslogd"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":258040,"node":655397,"name":"/lib/x86_64-linux-gnu/libnss_systemd.so.2"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":19448,"node":1050299,"name":"/usr/lib/x86_64-linux-gnu/rsyslog/imklog.so"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":36744,"node":1050306,"name":"/usr/lib/x86_64-linux-gnu/rsyslog/imuxsock.so"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":27192,"node":1050307,"name":"/usr/lib/x86_64-linux-gnu/rsyslog/lmnet.so"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":536648,"node":662910,"name":"/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":43720,"node":924331,"name":"/usr/lib/x86_64-linux-gnu/libfastjson.so.4.2.0"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":14344,"node":924327,"name":"/usr/lib/x86_64-linux-gnu/libestr.so.0.0.0"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":116960,"node":656216,"name":"/lib/x86_64-linux-gnu/libz.so.1.2.11"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"1w","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"2w","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"3u","type":"unix","device":"0xffff98e47234c800","size_off":0,"node":20660,"name":"/run/systemd/journal/syslog type=DGRAM"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"4r","type":"CHR","device":"1,9","size_off":0,"node":11,"name":"/dev/urandom"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"5r","type":"REG","device":"0,4","size_off":0,"node":4026532032,"name":"/proc/kmsg"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"6u","type":"unix","device":"0xffff98e4b96e6000","size_off":0,"node":28224,"name":"type=DGRAM"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"7w","type":"REG","device":"8,2","size_off":28996,"node":1053407,"name":"/var/log/auth.log"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"8w","type":"REG","device":"8,2","size_off":8045,"node":1051996,"name":"/var/log/syslog"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":4526456,"node":918753,"name":"/usr/bin/python3.6"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":19144,"node":919958,"name":"/usr/lib/python3/dist-packages/_dbus_glib_bindings.cpython-36m-x86_64-linux-gnu.so"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":536648,"node":662910,"name":"/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":313496,"node":656141,"name":"/lib/x86_64-linux-gnu/libdbus-1.so.3.19.4"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":159408,"node":919957,"name":"/usr/lib/python3/dist-packages/_dbus_bindings.cpython-36m-x86_64-linux-gnu.so"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":186076,"node":1049145,"name":"/usr/lib/x86_64-linux-gnu/girepository-1.0/GLib-2.0.typelib"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":311720,"node":656131,"name":"/lib/x86_64-linux-gnu/libblkid.so.1.1.0"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":340232,"node":656170,"name":"/lib/x86_64-linux-gnu/libmount.so.1.1.0"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1690808,"node":924338,"name":"/usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14232,"node":924341,"name":"/usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31032,"node":924332,"name":"/usr/lib/x86_64-linux-gnu/libffi.so.6.0.4"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1137968,"node":924340,"name":"/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":342072,"node":924344,"name":"/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":212456,"node":924339,"name":"/usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":315848,"node":921267,"name":"/usr/lib/python3/dist-packages/gi/_gi.cpython-36m-x86_64-linux-gnu.so"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":74664,"node":919258,"name":"/usr/lib/python3.6/lib-dynload/_json.cpython-36m-x86_64-linux-gnu.so"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1700792,"node":656167,"name":"/lib/x86_64-linux-gnu/libm-2.27.so"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":116960,"node":656216,"name":"/lib/x86_64-linux-gnu/libz.so.1.2.11"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":202880,"node":655558,"name":"/lib/x86_64-linux-gnu/libexpat.so.1.6.7"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10592,"node":656214,"name":"/lib/x86_64-linux-gnu/libutil-2.27.so"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26376,"node":1049137,"name":"/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b905c400","size_off":0,"node":27668,"name":"type=STREAM"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b905c400","size_off":0,"node":27668,"name":"type=STREAM"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"3u","type":"unix","device":"0xffff98e4b5d86400","size_off":0,"node":30629,"name":"type=STREAM"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":4526456,"node":918753,"name":"/usr/bin/python3.6"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":19144,"node":919958,"name":"/usr/lib/python3/dist-packages/_dbus_glib_bindings.cpython-36m-x86_64-linux-gnu.so"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":536648,"node":662910,"name":"/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":313496,"node":656141,"name":"/lib/x86_64-linux-gnu/libdbus-1.so.3.19.4"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":159408,"node":919957,"name":"/usr/lib/python3/dist-packages/_dbus_bindings.cpython-36m-x86_64-linux-gnu.so"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":186076,"node":1049145,"name":"/usr/lib/x86_64-linux-gnu/girepository-1.0/GLib-2.0.typelib"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":311720,"node":656131,"name":"/lib/x86_64-linux-gnu/libblkid.so.1.1.0"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":340232,"node":656170,"name":"/lib/x86_64-linux-gnu/libmount.so.1.1.0"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1690808,"node":924338,"name":"/usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14232,"node":924341,"name":"/usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31032,"node":924332,"name":"/usr/lib/x86_64-linux-gnu/libffi.so.6.0.4"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1137968,"node":924340,"name":"/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":342072,"node":924344,"name":"/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":212456,"node":924339,"name":"/usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":315848,"node":921267,"name":"/usr/lib/python3/dist-packages/gi/_gi.cpython-36m-x86_64-linux-gnu.so"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":74664,"node":919258,"name":"/usr/lib/python3.6/lib-dynload/_json.cpython-36m-x86_64-linux-gnu.so"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1700792,"node":656167,"name":"/lib/x86_64-linux-gnu/libm-2.27.so"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":116960,"node":656216,"name":"/lib/x86_64-linux-gnu/libz.so.1.2.11"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":202880,"node":655558,"name":"/lib/x86_64-linux-gnu/libexpat.so.1.6.7"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10592,"node":656214,"name":"/lib/x86_64-linux-gnu/libutil-2.27.so"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26376,"node":1049137,"name":"/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b905c400","size_off":0,"node":27668,"name":"type=STREAM"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b905c400","size_off":0,"node":27668,"name":"type=STREAM"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"3u","type":"unix","device":"0xffff98e4b5d86400","size_off":0,"node":30629,"name":"type=STREAM"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":18504,"node":918166,"name":"/usr/bin/lxcfs"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":67424,"node":1049161,"name":"/usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":243832,"node":656151,"name":"/lib/x86_64-linux-gnu/libfuse.so.2.9.7"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"3uW","type":"REG","device":"0,23","size_off":4,"node":673,"name":"/run/lxcfs.pid"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"4u","type":"CHR","device":"10,229","size_off":0,"node":85,"name":"/dev/fuse"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"5r","type":"REG","device":"0,3","size_off":0,"node":4026532577,"name":"mnt"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"6r","type":"DIR","device":"0,41","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpu,cpuacct"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"7r","type":"DIR","device":"0,40","size_off":0,"node":1,"name":"/run/lxcfs/controllers/pids"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"8r","type":"DIR","device":"0,39","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpuset"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"9r","type":"DIR","device":"0,38","size_off":0,"node":1,"name":"/run/lxcfs/controllers/blkio"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"10r","type":"DIR","device":"0,37","size_off":0,"node":1,"name":"/run/lxcfs/controllers/rdma"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"11r","type":"DIR","device":"0,36","size_off":0,"node":1,"name":"/run/lxcfs/controllers/perf_event"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"12r","type":"DIR","device":"0,35","size_off":0,"node":1,"name":"/run/lxcfs/controllers/hugetlb"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"13r","type":"DIR","device":"0,34","size_off":0,"node":1,"name":"/run/lxcfs/controllers/devices"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"14r","type":"DIR","device":"0,33","size_off":0,"node":1,"name":"/run/lxcfs/controllers/memory"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"15r","type":"DIR","device":"0,32","size_off":0,"node":1,"name":"/run/lxcfs/controllers/freezer"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"16r","type":"DIR","device":"0,31","size_off":0,"node":1,"name":"/run/lxcfs/controllers/net_cls,net_prio"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"17r","type":"DIR","device":"0,29","size_off":0,"node":1,"name":"/run/lxcfs/controllers/name=systemd"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"18r","type":"DIR","device":"0,28","size_off":0,"node":1,"name":"/run/lxcfs/controllers/unified"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":18504,"node":918166,"name":"/usr/bin/lxcfs"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":67424,"node":1049161,"name":"/usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":243832,"node":656151,"name":"/lib/x86_64-linux-gnu/libfuse.so.2.9.7"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"3uW","type":"REG","device":"0,23","size_off":4,"node":673,"name":"/run/lxcfs.pid"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"4u","type":"CHR","device":"10,229","size_off":0,"node":85,"name":"/dev/fuse"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"5r","type":"REG","device":"0,3","size_off":0,"node":4026532577,"name":"mnt"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"6r","type":"DIR","device":"0,41","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpu,cpuacct"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"7r","type":"DIR","device":"0,40","size_off":0,"node":1,"name":"/run/lxcfs/controllers/pids"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"8r","type":"DIR","device":"0,39","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpuset"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"9r","type":"DIR","device":"0,38","size_off":0,"node":1,"name":"/run/lxcfs/controllers/blkio"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"10r","type":"DIR","device":"0,37","size_off":0,"node":1,"name":"/run/lxcfs/controllers/rdma"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"11r","type":"DIR","device":"0,36","size_off":0,"node":1,"name":"/run/lxcfs/controllers/perf_event"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"12r","type":"DIR","device":"0,35","size_off":0,"node":1,"name":"/run/lxcfs/controllers/hugetlb"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"13r","type":"DIR","device":"0,34","size_off":0,"node":1,"name":"/run/lxcfs/controllers/devices"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"14r","type":"DIR","device":"0,33","size_off":0,"node":1,"name":"/run/lxcfs/controllers/memory"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"15r","type":"DIR","device":"0,32","size_off":0,"node":1,"name":"/run/lxcfs/controllers/freezer"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"16r","type":"DIR","device":"0,31","size_off":0,"node":1,"name":"/run/lxcfs/controllers/net_cls,net_prio"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"17r","type":"DIR","device":"0,29","size_off":0,"node":1,"name":"/run/lxcfs/controllers/name=systemd"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"18r","type":"DIR","device":"0,28","size_off":0,"node":1,"name":"/run/lxcfs/controllers/unified"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":18504,"node":918166,"name":"/usr/bin/lxcfs"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":67424,"node":1049161,"name":"/usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":243832,"node":656151,"name":"/lib/x86_64-linux-gnu/libfuse.so.2.9.7"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"3uW","type":"REG","device":"0,23","size_off":4,"node":673,"name":"/run/lxcfs.pid"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"4u","type":"CHR","device":"10,229","size_off":0,"node":85,"name":"/dev/fuse"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"5r","type":"REG","device":"0,3","size_off":0,"node":4026532577,"name":"mnt"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"6r","type":"DIR","device":"0,41","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpu,cpuacct"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"7r","type":"DIR","device":"0,40","size_off":0,"node":1,"name":"/run/lxcfs/controllers/pids"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"8r","type":"DIR","device":"0,39","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpuset"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"9r","type":"DIR","device":"0,38","size_off":0,"node":1,"name":"/run/lxcfs/controllers/blkio"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"10r","type":"DIR","device":"0,37","size_off":0,"node":1,"name":"/run/lxcfs/controllers/rdma"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"11r","type":"DIR","device":"0,36","size_off":0,"node":1,"name":"/run/lxcfs/controllers/perf_event"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"12r","type":"DIR","device":"0,35","size_off":0,"node":1,"name":"/run/lxcfs/controllers/hugetlb"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"13r","type":"DIR","device":"0,34","size_off":0,"node":1,"name":"/run/lxcfs/controllers/devices"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"14r","type":"DIR","device":"0,33","size_off":0,"node":1,"name":"/run/lxcfs/controllers/memory"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"15r","type":"DIR","device":"0,32","size_off":0,"node":1,"name":"/run/lxcfs/controllers/freezer"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"16r","type":"DIR","device":"0,31","size_off":0,"node":1,"name":"/run/lxcfs/controllers/net_cls,net_prio"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"17r","type":"DIR","device":"0,29","size_off":0,"node":1,"name":"/run/lxcfs/controllers/name=systemd"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"18r","type":"DIR","device":"0,28","size_off":0,"node":1,"name":"/run/lxcfs/controllers/unified"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":18504,"node":918166,"name":"/usr/bin/lxcfs"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":67424,"node":1049161,"name":"/usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":243832,"node":656151,"name":"/lib/x86_64-linux-gnu/libfuse.so.2.9.7"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"3uW","type":"REG","device":"0,23","size_off":4,"node":673,"name":"/run/lxcfs.pid"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"4u","type":"CHR","device":"10,229","size_off":0,"node":85,"name":"/dev/fuse"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"5r","type":"REG","device":"0,3","size_off":0,"node":4026532577,"name":"mnt"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"6r","type":"DIR","device":"0,41","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpu,cpuacct"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"7r","type":"DIR","device":"0,40","size_off":0,"node":1,"name":"/run/lxcfs/controllers/pids"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"8r","type":"DIR","device":"0,39","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpuset"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"9r","type":"DIR","device":"0,38","size_off":0,"node":1,"name":"/run/lxcfs/controllers/blkio"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"10r","type":"DIR","device":"0,37","size_off":0,"node":1,"name":"/run/lxcfs/controllers/rdma"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"11r","type":"DIR","device":"0,36","size_off":0,"node":1,"name":"/run/lxcfs/controllers/perf_event"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"12r","type":"DIR","device":"0,35","size_off":0,"node":1,"name":"/run/lxcfs/controllers/hugetlb"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"13r","type":"DIR","device":"0,34","size_off":0,"node":1,"name":"/run/lxcfs/controllers/devices"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"14r","type":"DIR","device":"0,33","size_off":0,"node":1,"name":"/run/lxcfs/controllers/memory"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"15r","type":"DIR","device":"0,32","size_off":0,"node":1,"name":"/run/lxcfs/controllers/freezer"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"16r","type":"DIR","device":"0,31","size_off":0,"node":1,"name":"/run/lxcfs/controllers/net_cls,net_prio"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"17r","type":"DIR","device":"0,29","size_off":0,"node":1,"name":"/run/lxcfs/controllers/name=systemd"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"18r","type":"DIR","device":"0,28","size_off":0,"node":1,"name":"/run/lxcfs/controllers/unified"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":18504,"node":918166,"name":"/usr/bin/lxcfs"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":67424,"node":1049161,"name":"/usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":243832,"node":656151,"name":"/lib/x86_64-linux-gnu/libfuse.so.2.9.7"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"3uW","type":"REG","device":"0,23","size_off":4,"node":673,"name":"/run/lxcfs.pid"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"4u","type":"CHR","device":"10,229","size_off":0,"node":85,"name":"/dev/fuse"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"5r","type":"REG","device":"0,3","size_off":0,"node":4026532577,"name":"mnt"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"6r","type":"DIR","device":"0,41","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpu,cpuacct"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"7r","type":"DIR","device":"0,40","size_off":0,"node":1,"name":"/run/lxcfs/controllers/pids"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"8r","type":"DIR","device":"0,39","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpuset"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"9r","type":"DIR","device":"0,38","size_off":0,"node":1,"name":"/run/lxcfs/controllers/blkio"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"10r","type":"DIR","device":"0,37","size_off":0,"node":1,"name":"/run/lxcfs/controllers/rdma"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"11r","type":"DIR","device":"0,36","size_off":0,"node":1,"name":"/run/lxcfs/controllers/perf_event"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"12r","type":"DIR","device":"0,35","size_off":0,"node":1,"name":"/run/lxcfs/controllers/hugetlb"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"13r","type":"DIR","device":"0,34","size_off":0,"node":1,"name":"/run/lxcfs/controllers/devices"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"14r","type":"DIR","device":"0,33","size_off":0,"node":1,"name":"/run/lxcfs/controllers/memory"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"15r","type":"DIR","device":"0,32","size_off":0,"node":1,"name":"/run/lxcfs/controllers/freezer"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"16r","type":"DIR","device":"0,31","size_off":0,"node":1,"name":"/run/lxcfs/controllers/net_cls,net_prio"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"17r","type":"DIR","device":"0,29","size_off":0,"node":1,"name":"/run/lxcfs/controllers/name=systemd"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"18r","type":"DIR","device":"0,28","size_off":0,"node":1,"name":"/run/lxcfs/controllers/unified"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":18504,"node":918166,"name":"/usr/bin/lxcfs"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":67424,"node":1049161,"name":"/usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":243832,"node":656151,"name":"/lib/x86_64-linux-gnu/libfuse.so.2.9.7"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"3uW","type":"REG","device":"0,23","size_off":4,"node":673,"name":"/run/lxcfs.pid"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"4u","type":"CHR","device":"10,229","size_off":0,"node":85,"name":"/dev/fuse"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"5r","type":"REG","device":"0,3","size_off":0,"node":4026532577,"name":"mnt"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"6r","type":"DIR","device":"0,41","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpu,cpuacct"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"7r","type":"DIR","device":"0,40","size_off":0,"node":1,"name":"/run/lxcfs/controllers/pids"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"8r","type":"DIR","device":"0,39","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpuset"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"9r","type":"DIR","device":"0,38","size_off":0,"node":1,"name":"/run/lxcfs/controllers/blkio"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"10r","type":"DIR","device":"0,37","size_off":0,"node":1,"name":"/run/lxcfs/controllers/rdma"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"11r","type":"DIR","device":"0,36","size_off":0,"node":1,"name":"/run/lxcfs/controllers/perf_event"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"12r","type":"DIR","device":"0,35","size_off":0,"node":1,"name":"/run/lxcfs/controllers/hugetlb"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"13r","type":"DIR","device":"0,34","size_off":0,"node":1,"name":"/run/lxcfs/controllers/devices"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"14r","type":"DIR","device":"0,33","size_off":0,"node":1,"name":"/run/lxcfs/controllers/memory"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"15r","type":"DIR","device":"0,32","size_off":0,"node":1,"name":"/run/lxcfs/controllers/freezer"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"16r","type":"DIR","device":"0,31","size_off":0,"node":1,"name":"/run/lxcfs/controllers/net_cls,net_prio"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"17r","type":"DIR","device":"0,29","size_off":0,"node":1,"name":"/run/lxcfs/controllers/name=systemd"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"18r","type":"DIR","device":"0,28","size_off":0,"node":1,"name":"/run/lxcfs/controllers/unified"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":18504,"node":918166,"name":"/usr/bin/lxcfs"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":67424,"node":1049161,"name":"/usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":243832,"node":656151,"name":"/lib/x86_64-linux-gnu/libfuse.so.2.9.7"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"3uW","type":"REG","device":"0,23","size_off":4,"node":673,"name":"/run/lxcfs.pid"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"4u","type":"CHR","device":"10,229","size_off":0,"node":85,"name":"/dev/fuse"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"5r","type":"REG","device":"0,3","size_off":0,"node":4026532577,"name":"mnt"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"6r","type":"DIR","device":"0,41","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpu,cpuacct"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"7r","type":"DIR","device":"0,40","size_off":0,"node":1,"name":"/run/lxcfs/controllers/pids"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"8r","type":"DIR","device":"0,39","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpuset"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"9r","type":"DIR","device":"0,38","size_off":0,"node":1,"name":"/run/lxcfs/controllers/blkio"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"10r","type":"DIR","device":"0,37","size_off":0,"node":1,"name":"/run/lxcfs/controllers/rdma"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"11r","type":"DIR","device":"0,36","size_off":0,"node":1,"name":"/run/lxcfs/controllers/perf_event"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"12r","type":"DIR","device":"0,35","size_off":0,"node":1,"name":"/run/lxcfs/controllers/hugetlb"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"13r","type":"DIR","device":"0,34","size_off":0,"node":1,"name":"/run/lxcfs/controllers/devices"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"14r","type":"DIR","device":"0,33","size_off":0,"node":1,"name":"/run/lxcfs/controllers/memory"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"15r","type":"DIR","device":"0,32","size_off":0,"node":1,"name":"/run/lxcfs/controllers/freezer"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"16r","type":"DIR","device":"0,31","size_off":0,"node":1,"name":"/run/lxcfs/controllers/net_cls,net_prio"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"17r","type":"DIR","device":"0,29","size_off":0,"node":1,"name":"/run/lxcfs/controllers/name=systemd"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"18r","type":"DIR","device":"0,28","size_off":0,"node":1,"name":"/run/lxcfs/controllers/unified"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":18504,"node":918166,"name":"/usr/bin/lxcfs"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":67424,"node":1049161,"name":"/usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":243832,"node":656151,"name":"/lib/x86_64-linux-gnu/libfuse.so.2.9.7"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"3uW","type":"REG","device":"0,23","size_off":4,"node":673,"name":"/run/lxcfs.pid"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"4u","type":"CHR","device":"10,229","size_off":0,"node":85,"name":"/dev/fuse"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"5r","type":"REG","device":"0,3","size_off":0,"node":4026532577,"name":"mnt"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"6r","type":"DIR","device":"0,41","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpu,cpuacct"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"7r","type":"DIR","device":"0,40","size_off":0,"node":1,"name":"/run/lxcfs/controllers/pids"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"8r","type":"DIR","device":"0,39","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpuset"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"9r","type":"DIR","device":"0,38","size_off":0,"node":1,"name":"/run/lxcfs/controllers/blkio"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"10r","type":"DIR","device":"0,37","size_off":0,"node":1,"name":"/run/lxcfs/controllers/rdma"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"11r","type":"DIR","device":"0,36","size_off":0,"node":1,"name":"/run/lxcfs/controllers/perf_event"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"12r","type":"DIR","device":"0,35","size_off":0,"node":1,"name":"/run/lxcfs/controllers/hugetlb"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"13r","type":"DIR","device":"0,34","size_off":0,"node":1,"name":"/run/lxcfs/controllers/devices"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"14r","type":"DIR","device":"0,33","size_off":0,"node":1,"name":"/run/lxcfs/controllers/memory"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"15r","type":"DIR","device":"0,32","size_off":0,"node":1,"name":"/run/lxcfs/controllers/freezer"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"16r","type":"DIR","device":"0,31","size_off":0,"node":1,"name":"/run/lxcfs/controllers/net_cls,net_prio"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"17r","type":"DIR","device":"0,29","size_off":0,"node":1,"name":"/run/lxcfs/controllers/name=systemd"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"18r","type":"DIR","device":"0,28","size_off":0,"node":1,"name":"/run/lxcfs/controllers/unified"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":18504,"node":918166,"name":"/usr/bin/lxcfs"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":67424,"node":1049161,"name":"/usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":243832,"node":656151,"name":"/lib/x86_64-linux-gnu/libfuse.so.2.9.7"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"3uW","type":"REG","device":"0,23","size_off":4,"node":673,"name":"/run/lxcfs.pid"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"4u","type":"CHR","device":"10,229","size_off":0,"node":85,"name":"/dev/fuse"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"5r","type":"REG","device":"0,3","size_off":0,"node":4026532577,"name":"mnt"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"6r","type":"DIR","device":"0,41","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpu,cpuacct"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"7r","type":"DIR","device":"0,40","size_off":0,"node":1,"name":"/run/lxcfs/controllers/pids"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"8r","type":"DIR","device":"0,39","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpuset"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"9r","type":"DIR","device":"0,38","size_off":0,"node":1,"name":"/run/lxcfs/controllers/blkio"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"10r","type":"DIR","device":"0,37","size_off":0,"node":1,"name":"/run/lxcfs/controllers/rdma"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"11r","type":"DIR","device":"0,36","size_off":0,"node":1,"name":"/run/lxcfs/controllers/perf_event"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"12r","type":"DIR","device":"0,35","size_off":0,"node":1,"name":"/run/lxcfs/controllers/hugetlb"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"13r","type":"DIR","device":"0,34","size_off":0,"node":1,"name":"/run/lxcfs/controllers/devices"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"14r","type":"DIR","device":"0,33","size_off":0,"node":1,"name":"/run/lxcfs/controllers/memory"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"15r","type":"DIR","device":"0,32","size_off":0,"node":1,"name":"/run/lxcfs/controllers/freezer"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"16r","type":"DIR","device":"0,31","size_off":0,"node":1,"name":"/run/lxcfs/controllers/net_cls,net_prio"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"17r","type":"DIR","device":"0,29","size_off":0,"node":1,"name":"/run/lxcfs/controllers/name=systemd"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"18r","type":"DIR","device":"0,28","size_off":0,"node":1,"name":"/run/lxcfs/controllers/unified"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":18504,"node":918166,"name":"/usr/bin/lxcfs"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":67424,"node":1049161,"name":"/usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":243832,"node":656151,"name":"/lib/x86_64-linux-gnu/libfuse.so.2.9.7"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"3uW","type":"REG","device":"0,23","size_off":4,"node":673,"name":"/run/lxcfs.pid"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"4u","type":"CHR","device":"10,229","size_off":0,"node":85,"name":"/dev/fuse"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"5r","type":"REG","device":"0,3","size_off":0,"node":4026532577,"name":"mnt"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"6r","type":"DIR","device":"0,41","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpu,cpuacct"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"7r","type":"DIR","device":"0,40","size_off":0,"node":1,"name":"/run/lxcfs/controllers/pids"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"8r","type":"DIR","device":"0,39","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpuset"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"9r","type":"DIR","device":"0,38","size_off":0,"node":1,"name":"/run/lxcfs/controllers/blkio"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"10r","type":"DIR","device":"0,37","size_off":0,"node":1,"name":"/run/lxcfs/controllers/rdma"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"11r","type":"DIR","device":"0,36","size_off":0,"node":1,"name":"/run/lxcfs/controllers/perf_event"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"12r","type":"DIR","device":"0,35","size_off":0,"node":1,"name":"/run/lxcfs/controllers/hugetlb"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"13r","type":"DIR","device":"0,34","size_off":0,"node":1,"name":"/run/lxcfs/controllers/devices"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"14r","type":"DIR","device":"0,33","size_off":0,"node":1,"name":"/run/lxcfs/controllers/memory"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"15r","type":"DIR","device":"0,32","size_off":0,"node":1,"name":"/run/lxcfs/controllers/freezer"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"16r","type":"DIR","device":"0,31","size_off":0,"node":1,"name":"/run/lxcfs/controllers/net_cls,net_prio"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"17r","type":"DIR","device":"0,29","size_off":0,"node":1,"name":"/run/lxcfs/controllers/name=systemd"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"18r","type":"DIR","device":"0,28","size_off":0,"node":1,"name":"/run/lxcfs/controllers/unified"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":18504,"node":918166,"name":"/usr/bin/lxcfs"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":67424,"node":1049161,"name":"/usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":243832,"node":656151,"name":"/lib/x86_64-linux-gnu/libfuse.so.2.9.7"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"3uW","type":"REG","device":"0,23","size_off":4,"node":673,"name":"/run/lxcfs.pid"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"4u","type":"CHR","device":"10,229","size_off":0,"node":85,"name":"/dev/fuse"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"5r","type":"REG","device":"0,3","size_off":0,"node":4026532577,"name":"mnt"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"6r","type":"DIR","device":"0,41","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpu,cpuacct"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"7r","type":"DIR","device":"0,40","size_off":0,"node":1,"name":"/run/lxcfs/controllers/pids"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"8r","type":"DIR","device":"0,39","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpuset"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"9r","type":"DIR","device":"0,38","size_off":0,"node":1,"name":"/run/lxcfs/controllers/blkio"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"10r","type":"DIR","device":"0,37","size_off":0,"node":1,"name":"/run/lxcfs/controllers/rdma"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"11r","type":"DIR","device":"0,36","size_off":0,"node":1,"name":"/run/lxcfs/controllers/perf_event"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"12r","type":"DIR","device":"0,35","size_off":0,"node":1,"name":"/run/lxcfs/controllers/hugetlb"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"13r","type":"DIR","device":"0,34","size_off":0,"node":1,"name":"/run/lxcfs/controllers/devices"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"14r","type":"DIR","device":"0,33","size_off":0,"node":1,"name":"/run/lxcfs/controllers/memory"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"15r","type":"DIR","device":"0,32","size_off":0,"node":1,"name":"/run/lxcfs/controllers/freezer"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"16r","type":"DIR","device":"0,31","size_off":0,"node":1,"name":"/run/lxcfs/controllers/net_cls,net_prio"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"17r","type":"DIR","device":"0,29","size_off":0,"node":1,"name":"/run/lxcfs/controllers/name=systemd"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"18r","type":"DIR","device":"0,28","size_off":0,"node":1,"name":"/run/lxcfs/controllers/unified"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":182552,"node":918479,"name":"/usr/lib/accountsservice/accounts-daemon"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":311720,"node":656131,"name":"/lib/x86_64-linux-gnu/libblkid.so.1.1.0"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31032,"node":924332,"name":"/usr/lib/x86_64-linux-gnu/libffi.so.6.0.4"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":340232,"node":656170,"name":"/lib/x86_64-linux-gnu/libmount.so.1.1.0"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":116960,"node":656216,"name":"/lib/x86_64-linux-gnu/libz.so.1.2.11"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14232,"node":924341,"name":"/usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":536648,"node":662910,"name":"/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1137968,"node":924340,"name":"/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":342072,"node":924344,"name":"/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1690808,"node":924338,"name":"/usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":114000,"node":924402,"name":"/usr/lib/x86_64-linux-gnu/libpolkit-gobject-1.so.0.0.0"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b911f400","size_off":0,"node":28058,"name":"type=STREAM"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b911f400","size_off":0,"node":28058,"name":"type=STREAM"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"3u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"5u","type":"unix","device":"0xffff98e4b5c67400","size_off":0,"node":29199,"name":"type=STREAM"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"6u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"7r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":182552,"node":918479,"name":"/usr/lib/accountsservice/accounts-daemon"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":311720,"node":656131,"name":"/lib/x86_64-linux-gnu/libblkid.so.1.1.0"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31032,"node":924332,"name":"/usr/lib/x86_64-linux-gnu/libffi.so.6.0.4"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":340232,"node":656170,"name":"/lib/x86_64-linux-gnu/libmount.so.1.1.0"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":116960,"node":656216,"name":"/lib/x86_64-linux-gnu/libz.so.1.2.11"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14232,"node":924341,"name":"/usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":536648,"node":662910,"name":"/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1137968,"node":924340,"name":"/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":342072,"node":924344,"name":"/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1690808,"node":924338,"name":"/usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":114000,"node":924402,"name":"/usr/lib/x86_64-linux-gnu/libpolkit-gobject-1.so.0.0.0"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b911f400","size_off":0,"node":28058,"name":"type=STREAM"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b911f400","size_off":0,"node":28058,"name":"type=STREAM"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"3u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"5u","type":"unix","device":"0xffff98e4b5c67400","size_off":0,"node":29199,"name":"type=STREAM"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"6u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"7r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":182552,"node":918479,"name":"/usr/lib/accountsservice/accounts-daemon"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":311720,"node":656131,"name":"/lib/x86_64-linux-gnu/libblkid.so.1.1.0"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31032,"node":924332,"name":"/usr/lib/x86_64-linux-gnu/libffi.so.6.0.4"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":340232,"node":656170,"name":"/lib/x86_64-linux-gnu/libmount.so.1.1.0"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":116960,"node":656216,"name":"/lib/x86_64-linux-gnu/libz.so.1.2.11"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14232,"node":924341,"name":"/usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":536648,"node":662910,"name":"/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1137968,"node":924340,"name":"/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":342072,"node":924344,"name":"/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1690808,"node":924338,"name":"/usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":114000,"node":924402,"name":"/usr/lib/x86_64-linux-gnu/libpolkit-gobject-1.so.0.0.0"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b911f400","size_off":0,"node":28058,"name":"type=STREAM"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b911f400","size_off":0,"node":28058,"name":"type=STREAM"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"3u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"5u","type":"unix","device":"0xffff98e4b5c67400","size_off":0,"node":29199,"name":"type=STREAM"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"6u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"7r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"snapd","pid":1017,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"snapd","pid":1017,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"snapd","pid":1017,"tid":null,"user":"root","fd":"txt","type":"REG","device":"7,10","size_off":18915952,"node":6465,"name":"/snap/core/7917/usr/lib/snapd/snapd"},{"command":"snapd","pid":1017,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"snapd","pid":1017,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26936,"node":656178,"name":"/lib/x86_64-linux-gnu/libnss_dns-2.27.so"},{"command":"snapd","pid":1017,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"snapd","pid":1017,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"snapd","pid":1017,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"snapd","pid":1017,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"snapd","pid":1017,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"snapd","pid":1017,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b96e4800","size_off":0,"node":28613,"name":"type=STREAM"},{"command":"snapd","pid":1017,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b96e4800","size_off":0,"node":28613,"name":"type=STREAM"},{"command":"snapd","pid":1017,"tid":null,"user":"root","fd":"4u","type":"netlink","device":null,"size_off":0,"node":32362,"name":"KOBJECT_UEVENT"},{"command":"snapd","pid":1017,"tid":null,"user":"root","fd":"6u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"snapd","pid":1017,"tid":null,"user":"root","fd":"7u","type":"unix","device":"0xffff98e4b1d06400","size_off":0,"node":27443,"name":"/run/snapd.socket type=STREAM"},{"command":"snapd","pid":1017,"tid":null,"user":"root","fd":"8u","type":"unix","device":"0xffff98e4b1d01400","size_off":0,"node":27445,"name":"/run/snapd-snap.socket type=STREAM"},{"command":"snapd","pid":1017,"tid":1326,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"snapd","pid":1017,"tid":1326,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"snapd","pid":1017,"tid":1326,"user":"root","fd":"txt","type":"REG","device":"7,10","size_off":18915952,"node":6465,"name":"/snap/core/7917/usr/lib/snapd/snapd"},{"command":"snapd","pid":1017,"tid":1326,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"snapd","pid":1017,"tid":1326,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26936,"node":656178,"name":"/lib/x86_64-linux-gnu/libnss_dns-2.27.so"},{"command":"snapd","pid":1017,"tid":1326,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"snapd","pid":1017,"tid":1326,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"snapd","pid":1017,"tid":1326,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"snapd","pid":1017,"tid":1326,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"snapd","pid":1017,"tid":1326,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"snapd","pid":1017,"tid":1326,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b96e4800","size_off":0,"node":28613,"name":"type=STREAM"},{"command":"snapd","pid":1017,"tid":1326,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b96e4800","size_off":0,"node":28613,"name":"type=STREAM"},{"command":"snapd","pid":1017,"tid":1326,"user":"root","fd":"4u","type":"netlink","device":null,"size_off":0,"node":32362,"name":"KOBJECT_UEVENT"},{"command":"snapd","pid":1017,"tid":1326,"user":"root","fd":"6u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"snapd","pid":1017,"tid":1326,"user":"root","fd":"7u","type":"unix","device":"0xffff98e4b1d06400","size_off":0,"node":27443,"name":"/run/snapd.socket type=STREAM"},{"command":"snapd","pid":1017,"tid":1326,"user":"root","fd":"8u","type":"unix","device":"0xffff98e4b1d01400","size_off":0,"node":27445,"name":"/run/snapd-snap.socket type=STREAM"},{"command":"snapd","pid":1017,"tid":1327,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"snapd","pid":1017,"tid":1327,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"snapd","pid":1017,"tid":1327,"user":"root","fd":"txt","type":"REG","device":"7,10","size_off":18915952,"node":6465,"name":"/snap/core/7917/usr/lib/snapd/snapd"},{"command":"snapd","pid":1017,"tid":1327,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"snapd","pid":1017,"tid":1327,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26936,"node":656178,"name":"/lib/x86_64-linux-gnu/libnss_dns-2.27.so"},{"command":"snapd","pid":1017,"tid":1327,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"snapd","pid":1017,"tid":1327,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"snapd","pid":1017,"tid":1327,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"snapd","pid":1017,"tid":1327,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"snapd","pid":1017,"tid":1327,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"snapd","pid":1017,"tid":1327,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b96e4800","size_off":0,"node":28613,"name":"type=STREAM"},{"command":"snapd","pid":1017,"tid":1327,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b96e4800","size_off":0,"node":28613,"name":"type=STREAM"},{"command":"snapd","pid":1017,"tid":1327,"user":"root","fd":"4u","type":"netlink","device":null,"size_off":0,"node":32362,"name":"KOBJECT_UEVENT"},{"command":"snapd","pid":1017,"tid":1327,"user":"root","fd":"6u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"snapd","pid":1017,"tid":1327,"user":"root","fd":"7u","type":"unix","device":"0xffff98e4b1d06400","size_off":0,"node":27443,"name":"/run/snapd.socket type=STREAM"},{"command":"snapd","pid":1017,"tid":1327,"user":"root","fd":"8u","type":"unix","device":"0xffff98e4b1d01400","size_off":0,"node":27445,"name":"/run/snapd-snap.socket type=STREAM"},{"command":"snapd","pid":1017,"tid":1328,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"snapd","pid":1017,"tid":1328,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"snapd","pid":1017,"tid":1328,"user":"root","fd":"txt","type":"REG","device":"7,10","size_off":18915952,"node":6465,"name":"/snap/core/7917/usr/lib/snapd/snapd"},{"command":"snapd","pid":1017,"tid":1328,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"snapd","pid":1017,"tid":1328,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26936,"node":656178,"name":"/lib/x86_64-linux-gnu/libnss_dns-2.27.so"},{"command":"snapd","pid":1017,"tid":1328,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"snapd","pid":1017,"tid":1328,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"snapd","pid":1017,"tid":1328,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"snapd","pid":1017,"tid":1328,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"snapd","pid":1017,"tid":1328,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"snapd","pid":1017,"tid":1328,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b96e4800","size_off":0,"node":28613,"name":"type=STREAM"},{"command":"snapd","pid":1017,"tid":1328,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b96e4800","size_off":0,"node":28613,"name":"type=STREAM"},{"command":"snapd","pid":1017,"tid":1328,"user":"root","fd":"4u","type":"netlink","device":null,"size_off":0,"node":32362,"name":"KOBJECT_UEVENT"},{"command":"snapd","pid":1017,"tid":1328,"user":"root","fd":"6u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"snapd","pid":1017,"tid":1328,"user":"root","fd":"7u","type":"unix","device":"0xffff98e4b1d06400","size_off":0,"node":27443,"name":"/run/snapd.socket type=STREAM"},{"command":"snapd","pid":1017,"tid":1328,"user":"root","fd":"8u","type":"unix","device":"0xffff98e4b1d01400","size_off":0,"node":27445,"name":"/run/snapd-snap.socket type=STREAM"},{"command":"snapd","pid":1017,"tid":1329,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"snapd","pid":1017,"tid":1329,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"snapd","pid":1017,"tid":1329,"user":"root","fd":"txt","type":"REG","device":"7,10","size_off":18915952,"node":6465,"name":"/snap/core/7917/usr/lib/snapd/snapd"},{"command":"snapd","pid":1017,"tid":1329,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"snapd","pid":1017,"tid":1329,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26936,"node":656178,"name":"/lib/x86_64-linux-gnu/libnss_dns-2.27.so"},{"command":"snapd","pid":1017,"tid":1329,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"snapd","pid":1017,"tid":1329,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"snapd","pid":1017,"tid":1329,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"snapd","pid":1017,"tid":1329,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"snapd","pid":1017,"tid":1329,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"snapd","pid":1017,"tid":1329,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b96e4800","size_off":0,"node":28613,"name":"type=STREAM"},{"command":"snapd","pid":1017,"tid":1329,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b96e4800","size_off":0,"node":28613,"name":"type=STREAM"},{"command":"snapd","pid":1017,"tid":1329,"user":"root","fd":"4u","type":"netlink","device":null,"size_off":0,"node":32362,"name":"KOBJECT_UEVENT"},{"command":"snapd","pid":1017,"tid":1329,"user":"root","fd":"6u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"snapd","pid":1017,"tid":1329,"user":"root","fd":"7u","type":"unix","device":"0xffff98e4b1d06400","size_off":0,"node":27443,"name":"/run/snapd.socket type=STREAM"},{"command":"snapd","pid":1017,"tid":1329,"user":"root","fd":"8u","type":"unix","device":"0xffff98e4b1d01400","size_off":0,"node":27445,"name":"/run/snapd-snap.socket type=STREAM"},{"command":"snapd","pid":1017,"tid":1332,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"snapd","pid":1017,"tid":1332,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"snapd","pid":1017,"tid":1332,"user":"root","fd":"txt","type":"REG","device":"7,10","size_off":18915952,"node":6465,"name":"/snap/core/7917/usr/lib/snapd/snapd"},{"command":"snapd","pid":1017,"tid":1332,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"snapd","pid":1017,"tid":1332,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26936,"node":656178,"name":"/lib/x86_64-linux-gnu/libnss_dns-2.27.so"},{"command":"snapd","pid":1017,"tid":1332,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"snapd","pid":1017,"tid":1332,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"snapd","pid":1017,"tid":1332,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"snapd","pid":1017,"tid":1332,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"snapd","pid":1017,"tid":1332,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"snapd","pid":1017,"tid":1332,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b96e4800","size_off":0,"node":28613,"name":"type=STREAM"},{"command":"snapd","pid":1017,"tid":1332,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b96e4800","size_off":0,"node":28613,"name":"type=STREAM"},{"command":"snapd","pid":1017,"tid":1332,"user":"root","fd":"4u","type":"netlink","device":null,"size_off":0,"node":32362,"name":"KOBJECT_UEVENT"},{"command":"snapd","pid":1017,"tid":1332,"user":"root","fd":"6u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"snapd","pid":1017,"tid":1332,"user":"root","fd":"7u","type":"unix","device":"0xffff98e4b1d06400","size_off":0,"node":27443,"name":"/run/snapd.socket type=STREAM"},{"command":"snapd","pid":1017,"tid":1332,"user":"root","fd":"8u","type":"unix","device":"0xffff98e4b1d01400","size_off":0,"node":27445,"name":"/run/snapd-snap.socket type=STREAM"},{"command":"snapd","pid":1017,"tid":1342,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"snapd","pid":1017,"tid":1342,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"snapd","pid":1017,"tid":1342,"user":"root","fd":"txt","type":"REG","device":"7,10","size_off":18915952,"node":6465,"name":"/snap/core/7917/usr/lib/snapd/snapd"},{"command":"snapd","pid":1017,"tid":1342,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"snapd","pid":1017,"tid":1342,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26936,"node":656178,"name":"/lib/x86_64-linux-gnu/libnss_dns-2.27.so"},{"command":"snapd","pid":1017,"tid":1342,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"snapd","pid":1017,"tid":1342,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"snapd","pid":1017,"tid":1342,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"snapd","pid":1017,"tid":1342,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"snapd","pid":1017,"tid":1342,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"snapd","pid":1017,"tid":1342,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b96e4800","size_off":0,"node":28613,"name":"type=STREAM"},{"command":"snapd","pid":1017,"tid":1342,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b96e4800","size_off":0,"node":28613,"name":"type=STREAM"},{"command":"snapd","pid":1017,"tid":1342,"user":"root","fd":"4u","type":"netlink","device":null,"size_off":0,"node":32362,"name":"KOBJECT_UEVENT"},{"command":"snapd","pid":1017,"tid":1342,"user":"root","fd":"6u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"snapd","pid":1017,"tid":1342,"user":"root","fd":"7u","type":"unix","device":"0xffff98e4b1d06400","size_off":0,"node":27443,"name":"/run/snapd.socket type=STREAM"},{"command":"snapd","pid":1017,"tid":1342,"user":"root","fd":"8u","type":"unix","device":"0xffff98e4b1d01400","size_off":0,"node":27445,"name":"/run/snapd-snap.socket type=STREAM"},{"command":"snapd","pid":1017,"tid":1359,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"snapd","pid":1017,"tid":1359,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"snapd","pid":1017,"tid":1359,"user":"root","fd":"txt","type":"REG","device":"7,10","size_off":18915952,"node":6465,"name":"/snap/core/7917/usr/lib/snapd/snapd"},{"command":"snapd","pid":1017,"tid":1359,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"snapd","pid":1017,"tid":1359,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26936,"node":656178,"name":"/lib/x86_64-linux-gnu/libnss_dns-2.27.so"},{"command":"snapd","pid":1017,"tid":1359,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"snapd","pid":1017,"tid":1359,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"snapd","pid":1017,"tid":1359,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"snapd","pid":1017,"tid":1359,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"snapd","pid":1017,"tid":1359,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"snapd","pid":1017,"tid":1359,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b96e4800","size_off":0,"node":28613,"name":"type=STREAM"},{"command":"snapd","pid":1017,"tid":1359,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b96e4800","size_off":0,"node":28613,"name":"type=STREAM"},{"command":"snapd","pid":1017,"tid":1359,"user":"root","fd":"4u","type":"netlink","device":null,"size_off":0,"node":32362,"name":"KOBJECT_UEVENT"},{"command":"snapd","pid":1017,"tid":1359,"user":"root","fd":"6u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"snapd","pid":1017,"tid":1359,"user":"root","fd":"7u","type":"unix","device":"0xffff98e4b1d06400","size_off":0,"node":27443,"name":"/run/snapd.socket type=STREAM"},{"command":"snapd","pid":1017,"tid":1359,"user":"root","fd":"8u","type":"unix","device":"0xffff98e4b1d01400","size_off":0,"node":27445,"name":"/run/snapd-snap.socket type=STREAM"},{"command":"snapd","pid":1017,"tid":1382,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"snapd","pid":1017,"tid":1382,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"snapd","pid":1017,"tid":1382,"user":"root","fd":"txt","type":"REG","device":"7,10","size_off":18915952,"node":6465,"name":"/snap/core/7917/usr/lib/snapd/snapd"},{"command":"snapd","pid":1017,"tid":1382,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"snapd","pid":1017,"tid":1382,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26936,"node":656178,"name":"/lib/x86_64-linux-gnu/libnss_dns-2.27.so"},{"command":"snapd","pid":1017,"tid":1382,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"snapd","pid":1017,"tid":1382,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"snapd","pid":1017,"tid":1382,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"snapd","pid":1017,"tid":1382,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"snapd","pid":1017,"tid":1382,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"snapd","pid":1017,"tid":1382,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b96e4800","size_off":0,"node":28613,"name":"type=STREAM"},{"command":"snapd","pid":1017,"tid":1382,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b96e4800","size_off":0,"node":28613,"name":"type=STREAM"},{"command":"snapd","pid":1017,"tid":1382,"user":"root","fd":"4u","type":"netlink","device":null,"size_off":0,"node":32362,"name":"KOBJECT_UEVENT"},{"command":"snapd","pid":1017,"tid":1382,"user":"root","fd":"6u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"snapd","pid":1017,"tid":1382,"user":"root","fd":"7u","type":"unix","device":"0xffff98e4b1d06400","size_off":0,"node":27443,"name":"/run/snapd.socket type=STREAM"},{"command":"snapd","pid":1017,"tid":1382,"user":"root","fd":"8u","type":"unix","device":"0xffff98e4b1d01400","size_off":0,"node":27445,"name":"/run/snapd-snap.socket type=STREAM"},{"command":"snapd","pid":1017,"tid":1517,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"snapd","pid":1017,"tid":1517,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"snapd","pid":1017,"tid":1517,"user":"root","fd":"txt","type":"REG","device":"7,10","size_off":18915952,"node":6465,"name":"/snap/core/7917/usr/lib/snapd/snapd"},{"command":"snapd","pid":1017,"tid":1517,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"snapd","pid":1017,"tid":1517,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26936,"node":656178,"name":"/lib/x86_64-linux-gnu/libnss_dns-2.27.so"},{"command":"snapd","pid":1017,"tid":1517,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"snapd","pid":1017,"tid":1517,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"snapd","pid":1017,"tid":1517,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"snapd","pid":1017,"tid":1517,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"snapd","pid":1017,"tid":1517,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"snapd","pid":1017,"tid":1517,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b96e4800","size_off":0,"node":28613,"name":"type=STREAM"},{"command":"snapd","pid":1017,"tid":1517,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b96e4800","size_off":0,"node":28613,"name":"type=STREAM"},{"command":"snapd","pid":1017,"tid":1517,"user":"root","fd":"4u","type":"netlink","device":null,"size_off":0,"node":32362,"name":"KOBJECT_UEVENT"},{"command":"snapd","pid":1017,"tid":1517,"user":"root","fd":"6u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"snapd","pid":1017,"tid":1517,"user":"root","fd":"7u","type":"unix","device":"0xffff98e4b1d06400","size_off":0,"node":27443,"name":"/run/snapd.socket type=STREAM"},{"command":"snapd","pid":1017,"tid":1517,"user":"root","fd":"8u","type":"unix","device":"0xffff98e4b1d01400","size_off":0,"node":27445,"name":"/run/snapd-snap.socket type=STREAM"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":219272,"node":668817,"name":"/lib/systemd/systemd-logind"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1700792,"node":656167,"name":"/lib/x86_64-linux-gnu/libm-2.27.so"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":121016,"node":655394,"name":"/lib/x86_64-linux-gnu/libudev.so.1.6.9"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":43304,"node":656160,"name":"/lib/x86_64-linux-gnu/libjson-c.so.3.0.1"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":34872,"node":924307,"name":"/usr/lib/x86_64-linux-gnu/libargon2.so.0"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":432640,"node":656144,"name":"/lib/x86_64-linux-gnu/libdevmapper.so.1.02.1"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":18680,"node":656129,"name":"/lib/x86_64-linux-gnu/libattr.so.1.1.0"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":311720,"node":656131,"name":"/lib/x86_64-linux-gnu/libblkid.so.1.1.0"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":206872,"node":656157,"name":"/lib/x86_64-linux-gnu/libidn.so.11.6.16"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":288976,"node":656202,"name":"/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":27088,"node":924361,"name":"/usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":310040,"node":656140,"name":"/lib/x86_64-linux-gnu/libcryptsetup.so.12.2.0"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":22768,"node":656136,"name":"/lib/x86_64-linux-gnu/libcap.so.2.25"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31232,"node":656125,"name":"/lib/x86_64-linux-gnu/libacl.so.1.1.0"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2363632,"node":655401,"name":"/lib/systemd/libsystemd-shared-237.so"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4affb6400","size_off":0,"node":28694,"name":"type=STREAM"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4affb6400","size_off":0,"node":28694,"name":"type=STREAM"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"3u","type":"unix","device":"0xffff98e4b5c66000","size_off":0,"node":29208,"name":"type=DGRAM"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"6u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[signalfd]"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"7r","type":"REG","device":"0,21","size_off":4096,"node":16735,"name":"/sys/devices/virtual/tty/tty0/active"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"8u","type":"netlink","device":null,"size_off":0,"node":29226,"name":"KOBJECT_UEVENT"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"9u","type":"netlink","device":null,"size_off":0,"node":29227,"name":"KOBJECT_UEVENT"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"10u","type":"netlink","device":null,"size_off":0,"node":29228,"name":"KOBJECT_UEVENT"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"11u","type":"netlink","device":null,"size_off":0,"node":29229,"name":"KOBJECT_UEVENT"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"12u","type":"unix","device":"0xffff98e4b5c63800","size_off":0,"node":29230,"name":"type=STREAM"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"13u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"14u","type":"CHR","device":"13,64","size_off":0,"node":146,"name":"/dev/input/event0"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"15u","type":"CHR","device":"13,65","size_off":0,"node":151,"name":"/dev/input/event1"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"16u","type":"CHR","device":"4,6","size_off":0,"node":25,"name":"/dev/tty6"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"17r","type":"FIFO","device":"0,23","size_off":0,"node":661,"name":"/run/systemd/inhibit/1.ref"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"18r","type":"FIFO","device":"0,23","size_off":0,"node":715,"name":"/run/systemd/sessions/1.ref"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"19r","type":"FIFO","device":"0,23","size_off":0,"node":719,"name":"/run/systemd/sessions/49.ref"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":5989,"name":"/var/spool/cron"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":47416,"node":924741,"name":"/usr/sbin/cron"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":18712,"node":656135,"name":"/lib/x86_64-linux-gnu/libcap-ng.so.0.0.0"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":124848,"node":656130,"name":"/lib/x86_64-linux-gnu/libaudit.so.1.0.0"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":55848,"node":656185,"name":"/lib/x86_64-linux-gnu/libpam.so.0.83.1"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26376,"node":1049137,"name":"/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b637fc00","size_off":0,"node":29086,"name":"type=STREAM"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b637fc00","size_off":0,"node":29086,"name":"type=STREAM"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"3uW","type":"REG","device":"0,23","size_off":5,"node":675,"name":"/run/crond.pid"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":52664,"node":131156,"name":"/bin/login"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":258040,"node":655397,"name":"/lib/x86_64-linux-gnu/libnss_systemd.so.2"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":258040,"node":655398,"name":"/lib/x86_64-linux-gnu/security/pam_systemd.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10376,"node":656261,"name":"/lib/x86_64-linux-gnu/security/pam_umask.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10280,"node":656234,"name":"/lib/x86_64-linux-gnu/security/pam_keyinit.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10312,"node":656240,"name":"/lib/x86_64-linux-gnu/security/pam_mail.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10336,"node":656242,"name":"/lib/x86_64-linux-gnu/security/pam_motd.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10592,"node":656214,"name":"/lib/x86_64-linux-gnu/libutil-2.27.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14488,"node":656235,"name":"/lib/x86_64-linux-gnu/security/pam_lastlog.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":22872,"node":656236,"name":"/lib/x86_64-linux-gnu/security/pam_limits.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14544,"node":656232,"name":"/lib/x86_64-linux-gnu/security/pam_group.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":22768,"node":656136,"name":"/lib/x86_64-linux-gnu/libcap.so.2.25"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10080,"node":656222,"name":"/lib/x86_64-linux-gnu/security/pam_cap.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":6104,"node":656245,"name":"/lib/x86_64-linux-gnu/security/pam_permit.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":5776,"node":656224,"name":"/lib/x86_64-linux-gnu/security/pam_deny.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39208,"node":656139,"name":"/lib/x86_64-linux-gnu/libcrypt-2.27.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":60272,"node":656262,"name":"/lib/x86_64-linux-gnu/security/pam_unix.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14464,"node":656226,"name":"/lib/x86_64-linux-gnu/security/pam_env.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10336,"node":656239,"name":"/lib/x86_64-linux-gnu/security/pam_loginuid.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":18736,"node":656250,"name":"/lib/x86_64-linux-gnu/security/pam_selinux.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10264,"node":656244,"name":"/lib/x86_64-linux-gnu/security/pam_nologin.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10304,"node":656249,"name":"/lib/x86_64-linux-gnu/security/pam_securetty.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10312,"node":656229,"name":"/lib/x86_64-linux-gnu/security/pam_faildelay.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":18712,"node":656135,"name":"/lib/x86_64-linux-gnu/libcap-ng.so.0.0.0"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":124848,"node":656130,"name":"/lib/x86_64-linux-gnu/libaudit.so.1.0.0"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14576,"node":656186,"name":"/lib/x86_64-linux-gnu/libpam_misc.so.0.82.0"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":55848,"node":656185,"name":"/lib/x86_64-linux-gnu/libpam.so.0.83.1"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26376,"node":1049137,"name":"/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"0u","type":"CHR","device":"4,64","size_off":0,"node":87,"name":"/dev/ttyS0"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"1u","type":"CHR","device":"4,64","size_off":0,"node":87,"name":"/dev/ttyS0"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"2u","type":"CHR","device":"4,64","size_off":0,"node":87,"name":"/dev/ttyS0"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"3u","type":"unix","device":"0xffff98e4b460e800","size_off":0,"node":33487,"name":"type=DGRAM"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"6w","type":"FIFO","device":"0,23","size_off":0,"node":715,"name":"/run/systemd/sessions/1.ref"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"txt","type":"REG","device":"8,2","size_off":236584,"node":918017,"name":"/usr/bin/dbus-daemon"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":258040,"node":655397,"name":"/lib/x86_64-linux-gnu/libnss_systemd.so.2"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":64144,"node":656127,"name":"/lib/x86_64-linux-gnu/libapparmor.so.1.4.2"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":18712,"node":656135,"name":"/lib/x86_64-linux-gnu/libcap-ng.so.0.0.0"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":124848,"node":656130,"name":"/lib/x86_64-linux-gnu/libaudit.so.1.0.0"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":202880,"node":655558,"name":"/lib/x86_64-linux-gnu/libexpat.so.1.6.7"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":536648,"node":662910,"name":"/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":313496,"node":656141,"name":"/lib/x86_64-linux-gnu/libdbus-1.so.3.19.4"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"1u","type":"unix","device":"0xffff98e4b637b800","size_off":0,"node":29165,"name":"type=STREAM"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"2u","type":"unix","device":"0xffff98e4b637b800","size_off":0,"node":29165,"name":"type=STREAM"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"3u","type":"unix","device":"0xffff98e4afa55c00","size_off":0,"node":27489,"name":"/var/run/dbus/system_bus_socket type=STREAM"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"5u","type":"sock","device":"0,9","size_off":0,"node":29373,"name":"protocol: NETLINK"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"6u","type":"unix","device":"0xffff98e4b5c66400","size_off":0,"node":29374,"name":"type=DGRAM"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"7r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"8u","type":"unix","device":"0xffff98e4b5c63000","size_off":0,"node":29375,"name":"type=STREAM"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"9u","type":"unix","device":"0xffff98e4b5c67c00","size_off":0,"node":29376,"name":"type=STREAM"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"10u","type":"unix","device":"0xffff98e4b1dc2400","size_off":0,"node":29377,"name":"/var/run/dbus/system_bus_socket type=STREAM"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"11u","type":"unix","device":"0xffff98e4b1d03400","size_off":0,"node":29378,"name":"/var/run/dbus/system_bus_socket type=STREAM"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"12u","type":"unix","device":"0xffff98e4b5d86c00","size_off":0,"node":30460,"name":"/var/run/dbus/system_bus_socket type=STREAM"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"13u","type":"unix","device":"0xffff98e4b6379c00","size_off":0,"node":29380,"name":"/var/run/dbus/system_bus_socket type=STREAM"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"14u","type":"unix","device":"0xffff98e4b5c64800","size_off":0,"node":29381,"name":"/var/run/dbus/system_bus_socket type=STREAM"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"15u","type":"unix","device":"0xffff98e4b5c62800","size_off":0,"node":29382,"name":"/var/run/dbus/system_bus_socket type=STREAM"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"16u","type":"unix","device":"0xffff98e4b5d87800","size_off":0,"node":30630,"name":"/var/run/dbus/system_bus_socket type=STREAM"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"17u","type":"unix","device":"0xffff98e4b5d85000","size_off":0,"node":30671,"name":"/var/run/dbus/system_bus_socket type=STREAM"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":4526456,"node":918753,"name":"/usr/bin/python3.6"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":121016,"node":655394,"name":"/lib/x86_64-linux-gnu/libudev.so.1.6.9"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":501680,"node":923340,"name":"/usr/lib/x86_64-linux-gnu/libzstd.so.1.3.3"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":66728,"node":656133,"name":"/lib/x86_64-linux-gnu/libbz2.so.1.0.4"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":96616,"node":656152,"name":"/lib/x86_64-linux-gnu/libgcc_s.so.1"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1594864,"node":924414,"name":"/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1822008,"node":924305,"name":"/usr/lib/x86_64-linux-gnu/libapt-pkg.so.5.0.2"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":342624,"node":919965,"name":"/usr/lib/python3/dist-packages/apt_pkg.cpython-36m-x86_64-linux-gnu.so"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":186076,"node":1049145,"name":"/usr/lib/x86_64-linux-gnu/girepository-1.0/GLib-2.0.typelib"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":311720,"node":656131,"name":"/lib/x86_64-linux-gnu/libblkid.so.1.1.0"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":340232,"node":656170,"name":"/lib/x86_64-linux-gnu/libmount.so.1.1.0"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1690808,"node":924338,"name":"/usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14232,"node":924341,"name":"/usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31032,"node":924332,"name":"/usr/lib/x86_64-linux-gnu/libffi.so.6.0.4"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":342072,"node":924344,"name":"/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":212456,"node":924339,"name":"/usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":315848,"node":921267,"name":"/usr/lib/python3/dist-packages/gi/_gi.cpython-36m-x86_64-linux-gnu.so"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1137968,"node":924340,"name":"/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":19144,"node":919958,"name":"/usr/lib/python3/dist-packages/_dbus_glib_bindings.cpython-36m-x86_64-linux-gnu.so"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":536648,"node":662910,"name":"/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":313496,"node":656141,"name":"/lib/x86_64-linux-gnu/libdbus-1.so.3.19.4"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":159408,"node":919957,"name":"/usr/lib/python3/dist-packages/_dbus_bindings.cpython-36m-x86_64-linux-gnu.so"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1700792,"node":656167,"name":"/lib/x86_64-linux-gnu/libm-2.27.so"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":116960,"node":656216,"name":"/lib/x86_64-linux-gnu/libz.so.1.2.11"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":202880,"node":655558,"name":"/lib/x86_64-linux-gnu/libexpat.so.1.6.7"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10592,"node":656214,"name":"/lib/x86_64-linux-gnu/libutil-2.27.so"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26376,"node":1049137,"name":"/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4afa15800","size_off":0,"node":29474,"name":"type=STREAM"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4afa15800","size_off":0,"node":29474,"name":"type=STREAM"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"3w","type":"REG","device":"8,2","size_off":0,"node":4981,"name":"/var/log/unattended-upgrades/unattended-upgrades-shutdown.log"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"4u","type":"unix","device":"0xffff98e4b5d85800","size_off":0,"node":30670,"name":"type=STREAM"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"6u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"8w","type":"FIFO","device":"0,23","size_off":0,"node":661,"name":"/run/systemd/inhibit/1.ref"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":4526456,"node":918753,"name":"/usr/bin/python3.6"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":121016,"node":655394,"name":"/lib/x86_64-linux-gnu/libudev.so.1.6.9"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":501680,"node":923340,"name":"/usr/lib/x86_64-linux-gnu/libzstd.so.1.3.3"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":66728,"node":656133,"name":"/lib/x86_64-linux-gnu/libbz2.so.1.0.4"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":96616,"node":656152,"name":"/lib/x86_64-linux-gnu/libgcc_s.so.1"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1594864,"node":924414,"name":"/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1822008,"node":924305,"name":"/usr/lib/x86_64-linux-gnu/libapt-pkg.so.5.0.2"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":342624,"node":919965,"name":"/usr/lib/python3/dist-packages/apt_pkg.cpython-36m-x86_64-linux-gnu.so"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":186076,"node":1049145,"name":"/usr/lib/x86_64-linux-gnu/girepository-1.0/GLib-2.0.typelib"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":311720,"node":656131,"name":"/lib/x86_64-linux-gnu/libblkid.so.1.1.0"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":340232,"node":656170,"name":"/lib/x86_64-linux-gnu/libmount.so.1.1.0"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1690808,"node":924338,"name":"/usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14232,"node":924341,"name":"/usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31032,"node":924332,"name":"/usr/lib/x86_64-linux-gnu/libffi.so.6.0.4"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":342072,"node":924344,"name":"/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":212456,"node":924339,"name":"/usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":315848,"node":921267,"name":"/usr/lib/python3/dist-packages/gi/_gi.cpython-36m-x86_64-linux-gnu.so"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1137968,"node":924340,"name":"/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":19144,"node":919958,"name":"/usr/lib/python3/dist-packages/_dbus_glib_bindings.cpython-36m-x86_64-linux-gnu.so"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":536648,"node":662910,"name":"/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":313496,"node":656141,"name":"/lib/x86_64-linux-gnu/libdbus-1.so.3.19.4"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":159408,"node":919957,"name":"/usr/lib/python3/dist-packages/_dbus_bindings.cpython-36m-x86_64-linux-gnu.so"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1700792,"node":656167,"name":"/lib/x86_64-linux-gnu/libm-2.27.so"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":116960,"node":656216,"name":"/lib/x86_64-linux-gnu/libz.so.1.2.11"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":202880,"node":655558,"name":"/lib/x86_64-linux-gnu/libexpat.so.1.6.7"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10592,"node":656214,"name":"/lib/x86_64-linux-gnu/libutil-2.27.so"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26376,"node":1049137,"name":"/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4afa15800","size_off":0,"node":29474,"name":"type=STREAM"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4afa15800","size_off":0,"node":29474,"name":"type=STREAM"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"3w","type":"REG","device":"8,2","size_off":0,"node":4981,"name":"/var/log/unattended-upgrades/unattended-upgrades-shutdown.log"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"4u","type":"unix","device":"0xffff98e4b5d85800","size_off":0,"node":30670,"name":"type=STREAM"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"6u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"8w","type":"FIFO","device":"0,23","size_off":0,"node":661,"name":"/run/systemd/inhibit/1.ref"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":5991,"name":"/var/spool/cron/atjobs"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"txt","type":"REG","device":"8,2","size_off":26632,"node":924733,"name":"/usr/sbin/atd"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"mem","type":"REG","device":"8,2","size_off":18712,"node":656135,"name":"/lib/x86_64-linux-gnu/libcap-ng.so.0.0.0"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"mem","type":"REG","device":"8,2","size_off":124848,"node":656130,"name":"/lib/x86_64-linux-gnu/libaudit.so.1.0.0"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"mem","type":"REG","device":"8,2","size_off":55848,"node":656185,"name":"/lib/x86_64-linux-gnu/libpam.so.0.83.1"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"3uW","type":"REG","device":"0,23","size_off":5,"node":695,"name":"/run/atd.pid"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":40697760,"node":940062,"name":"/usr/bin/containerd"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":288976,"node":656202,"name":"/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"mem-W","type":"REG","device":"8,2","size_off":131072,"node":399496,"name":"/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b5d80c00","size_off":0,"node":29684,"name":"type=STREAM"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b5d80c00","size_off":0,"node":29684,"name":"type=STREAM"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"3uW","type":"REG","device":"8,2","size_off":131072,"node":399496,"name":"/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"6u","type":"unix","device":"0xffff98e4b942f000","size_off":0,"node":30726,"name":"/run/containerd/containerd.sock type=STREAM"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"7u","type":"IPv4","device":"30727","size_off":0,"node":null,"name":"localhost:42351 (LISTEN)"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":40697760,"node":940062,"name":"/usr/bin/containerd"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":288976,"node":656202,"name":"/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"mem-W","type":"REG","device":"8,2","size_off":131072,"node":399496,"name":"/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b5d80c00","size_off":0,"node":29684,"name":"type=STREAM"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b5d80c00","size_off":0,"node":29684,"name":"type=STREAM"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"3uW","type":"REG","device":"8,2","size_off":131072,"node":399496,"name":"/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"6u","type":"unix","device":"0xffff98e4b942f000","size_off":0,"node":30726,"name":"/run/containerd/containerd.sock type=STREAM"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"7u","type":"IPv4","device":"30727","size_off":0,"node":null,"name":"localhost:42351 (LISTEN)"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":40697760,"node":940062,"name":"/usr/bin/containerd"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":288976,"node":656202,"name":"/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"mem-W","type":"REG","device":"8,2","size_off":131072,"node":399496,"name":"/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b5d80c00","size_off":0,"node":29684,"name":"type=STREAM"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b5d80c00","size_off":0,"node":29684,"name":"type=STREAM"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"3uW","type":"REG","device":"8,2","size_off":131072,"node":399496,"name":"/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"6u","type":"unix","device":"0xffff98e4b942f000","size_off":0,"node":30726,"name":"/run/containerd/containerd.sock type=STREAM"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"7u","type":"IPv4","device":"30727","size_off":0,"node":null,"name":"localhost:42351 (LISTEN)"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":40697760,"node":940062,"name":"/usr/bin/containerd"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":288976,"node":656202,"name":"/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"mem-W","type":"REG","device":"8,2","size_off":131072,"node":399496,"name":"/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b5d80c00","size_off":0,"node":29684,"name":"type=STREAM"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b5d80c00","size_off":0,"node":29684,"name":"type=STREAM"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"3uW","type":"REG","device":"8,2","size_off":131072,"node":399496,"name":"/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"6u","type":"unix","device":"0xffff98e4b942f000","size_off":0,"node":30726,"name":"/run/containerd/containerd.sock type=STREAM"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"7u","type":"IPv4","device":"30727","size_off":0,"node":null,"name":"localhost:42351 (LISTEN)"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":40697760,"node":940062,"name":"/usr/bin/containerd"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":288976,"node":656202,"name":"/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"mem-W","type":"REG","device":"8,2","size_off":131072,"node":399496,"name":"/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b5d80c00","size_off":0,"node":29684,"name":"type=STREAM"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b5d80c00","size_off":0,"node":29684,"name":"type=STREAM"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"3uW","type":"REG","device":"8,2","size_off":131072,"node":399496,"name":"/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"6u","type":"unix","device":"0xffff98e4b942f000","size_off":0,"node":30726,"name":"/run/containerd/containerd.sock type=STREAM"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"7u","type":"IPv4","device":"30727","size_off":0,"node":null,"name":"localhost:42351 (LISTEN)"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":40697760,"node":940062,"name":"/usr/bin/containerd"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":288976,"node":656202,"name":"/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"mem-W","type":"REG","device":"8,2","size_off":131072,"node":399496,"name":"/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b5d80c00","size_off":0,"node":29684,"name":"type=STREAM"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b5d80c00","size_off":0,"node":29684,"name":"type=STREAM"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"3uW","type":"REG","device":"8,2","size_off":131072,"node":399496,"name":"/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"6u","type":"unix","device":"0xffff98e4b942f000","size_off":0,"node":30726,"name":"/run/containerd/containerd.sock type=STREAM"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"7u","type":"IPv4","device":"30727","size_off":0,"node":null,"name":"localhost:42351 (LISTEN)"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":40697760,"node":940062,"name":"/usr/bin/containerd"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":288976,"node":656202,"name":"/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"mem-W","type":"REG","device":"8,2","size_off":131072,"node":399496,"name":"/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b5d80c00","size_off":0,"node":29684,"name":"type=STREAM"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b5d80c00","size_off":0,"node":29684,"name":"type=STREAM"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"3uW","type":"REG","device":"8,2","size_off":131072,"node":399496,"name":"/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"6u","type":"unix","device":"0xffff98e4b942f000","size_off":0,"node":30726,"name":"/run/containerd/containerd.sock type=STREAM"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"7u","type":"IPv4","device":"30727","size_off":0,"node":null,"name":"localhost:42351 (LISTEN)"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":40697760,"node":940062,"name":"/usr/bin/containerd"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":288976,"node":656202,"name":"/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"mem-W","type":"REG","device":"8,2","size_off":131072,"node":399496,"name":"/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b5d80c00","size_off":0,"node":29684,"name":"type=STREAM"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b5d80c00","size_off":0,"node":29684,"name":"type=STREAM"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"3uW","type":"REG","device":"8,2","size_off":131072,"node":399496,"name":"/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"6u","type":"unix","device":"0xffff98e4b942f000","size_off":0,"node":30726,"name":"/run/containerd/containerd.sock type=STREAM"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"7u","type":"IPv4","device":"30727","size_off":0,"node":null,"name":"localhost:42351 (LISTEN)"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":40697760,"node":940062,"name":"/usr/bin/containerd"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":288976,"node":656202,"name":"/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"mem-W","type":"REG","device":"8,2","size_off":131072,"node":399496,"name":"/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b5d80c00","size_off":0,"node":29684,"name":"type=STREAM"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b5d80c00","size_off":0,"node":29684,"name":"type=STREAM"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"3uW","type":"REG","device":"8,2","size_off":131072,"node":399496,"name":"/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"6u","type":"unix","device":"0xffff98e4b942f000","size_off":0,"node":30726,"name":"/run/containerd/containerd.sock type=STREAM"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"7u","type":"IPv4","device":"30727","size_off":0,"node":null,"name":"localhost:42351 (LISTEN)"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":786856,"node":933045,"name":"/usr/sbin/sshd"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14256,"node":656161,"name":"/lib/x86_64-linux-gnu/libkeyutils.so.1.5"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":43616,"node":924373,"name":"/usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":199104,"node":924370,"name":"/usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":18712,"node":656135,"name":"/lib/x86_64-linux-gnu/libcap-ng.so.0.0.0"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14248,"node":668487,"name":"/lib/x86_64-linux-gnu/libcom_err.so.2.1"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":877056,"node":924372,"name":"/usr/lib/x86_64-linux-gnu/libkrb5.so.3.3"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":305456,"node":924347,"name":"/usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39208,"node":656139,"name":"/lib/x86_64-linux-gnu/libcrypt-2.27.so"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":116960,"node":656216,"name":"/lib/x86_64-linux-gnu/libz.so.1.2.11"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10592,"node":656214,"name":"/lib/x86_64-linux-gnu/libutil-2.27.so"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2357760,"node":924313,"name":"/usr/lib/x86_64-linux-gnu/libcrypto.so.1.0.0"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":536648,"node":662910,"name":"/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":55848,"node":656185,"name":"/lib/x86_64-linux-gnu/libpam.so.0.83.1"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":124848,"node":656130,"name":"/lib/x86_64-linux-gnu/libaudit.so.1.0.0"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39784,"node":656275,"name":"/lib/x86_64-linux-gnu/libwrap.so.0.7.6"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b1d8d800","size_off":0,"node":30152,"name":"type=STREAM"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b1d8d800","size_off":0,"node":30152,"name":"type=STREAM"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"3u","type":"IPv4","device":"30163","size_off":0,"node":null,"name":"*:ssh (LISTEN)"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"4u","type":"IPv6","device":"30180","size_off":0,"node":null,"name":"*:ssh (LISTEN)"},{"command":"agetty","pid":1153,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"agetty","pid":1153,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"agetty","pid":1153,"tid":null,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":56552,"node":263600,"name":"/sbin/agetty"},{"command":"agetty","pid":1153,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"agetty","pid":1153,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"agetty","pid":1153,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"agetty","pid":1153,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"agetty","pid":1153,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"agetty","pid":1153,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"agetty","pid":1153,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":199772,"node":918701,"name":"/usr/lib/locale/C.UTF-8/LC_CTYPE"},{"command":"agetty","pid":1153,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"agetty","pid":1153,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26376,"node":1049137,"name":"/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"},{"command":"agetty","pid":1153,"tid":null,"user":"root","fd":"0u","type":"CHR","device":"4,1","size_off":0,"node":20,"name":"/dev/tty1"},{"command":"agetty","pid":1153,"tid":null,"user":"root","fd":"1u","type":"CHR","device":"4,1","size_off":0,"node":20,"name":"/dev/tty1"},{"command":"agetty","pid":1153,"tid":null,"user":"root","fd":"2u","type":"CHR","device":"4,1","size_off":0,"node":20,"name":"/dev/tty1"},{"command":"agetty","pid":1153,"tid":null,"user":"root","fd":"4r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":14552,"node":918752,"name":"/usr/lib/policykit-1/polkitd"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":311720,"node":656131,"name":"/lib/x86_64-linux-gnu/libblkid.so.1.1.0"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":202880,"node":655558,"name":"/lib/x86_64-linux-gnu/libexpat.so.1.6.7"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":114000,"node":924402,"name":"/usr/lib/x86_64-linux-gnu/libpolkit-gobject-1.so.0.0.0"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":536648,"node":662910,"name":"/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31032,"node":924332,"name":"/usr/lib/x86_64-linux-gnu/libffi.so.6.0.4"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":340232,"node":656170,"name":"/lib/x86_64-linux-gnu/libmount.so.1.1.0"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":116960,"node":656216,"name":"/lib/x86_64-linux-gnu/libz.so.1.2.11"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14232,"node":924341,"name":"/usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":106712,"node":924401,"name":"/usr/lib/x86_64-linux-gnu/libpolkit-backend-1.so.0.0.0"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1137968,"node":924340,"name":"/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":342072,"node":924344,"name":"/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1690808,"node":924338,"name":"/usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26376,"node":1049137,"name":"/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"3u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[signalfd]"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"6u","type":"unix","device":"0xffff98e4b5d87c00","size_off":0,"node":30459,"name":"type=STREAM"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"7u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"8r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"9r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":14552,"node":918752,"name":"/usr/lib/policykit-1/polkitd"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":311720,"node":656131,"name":"/lib/x86_64-linux-gnu/libblkid.so.1.1.0"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":202880,"node":655558,"name":"/lib/x86_64-linux-gnu/libexpat.so.1.6.7"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":114000,"node":924402,"name":"/usr/lib/x86_64-linux-gnu/libpolkit-gobject-1.so.0.0.0"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":536648,"node":662910,"name":"/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31032,"node":924332,"name":"/usr/lib/x86_64-linux-gnu/libffi.so.6.0.4"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":340232,"node":656170,"name":"/lib/x86_64-linux-gnu/libmount.so.1.1.0"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":116960,"node":656216,"name":"/lib/x86_64-linux-gnu/libz.so.1.2.11"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14232,"node":924341,"name":"/usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":106712,"node":924401,"name":"/usr/lib/x86_64-linux-gnu/libpolkit-backend-1.so.0.0.0"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1137968,"node":924340,"name":"/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":342072,"node":924344,"name":"/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1690808,"node":924338,"name":"/usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26376,"node":1049137,"name":"/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"3u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[signalfd]"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"6u","type":"unix","device":"0xffff98e4b5d87c00","size_off":0,"node":30459,"name":"type=STREAM"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"7u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"8r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"9r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":14552,"node":918752,"name":"/usr/lib/policykit-1/polkitd"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":311720,"node":656131,"name":"/lib/x86_64-linux-gnu/libblkid.so.1.1.0"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":202880,"node":655558,"name":"/lib/x86_64-linux-gnu/libexpat.so.1.6.7"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":114000,"node":924402,"name":"/usr/lib/x86_64-linux-gnu/libpolkit-gobject-1.so.0.0.0"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":536648,"node":662910,"name":"/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31032,"node":924332,"name":"/usr/lib/x86_64-linux-gnu/libffi.so.6.0.4"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":340232,"node":656170,"name":"/lib/x86_64-linux-gnu/libmount.so.1.1.0"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":116960,"node":656216,"name":"/lib/x86_64-linux-gnu/libz.so.1.2.11"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14232,"node":924341,"name":"/usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":106712,"node":924401,"name":"/usr/lib/x86_64-linux-gnu/libpolkit-backend-1.so.0.0.0"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1137968,"node":924340,"name":"/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":342072,"node":924344,"name":"/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1690808,"node":924338,"name":"/usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26376,"node":1049137,"name":"/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"3u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[signalfd]"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"6u","type":"unix","device":"0xffff98e4b5d87c00","size_off":0,"node":30459,"name":"type=STREAM"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"7u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"8r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"9r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"loop11","pid":1532,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop11","pid":1532,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop11","pid":1532,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1532/exe"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"8,2","size_off":1595792,"node":668802,"name":"/lib/systemd/systemd"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1700792,"node":656167,"name":"/lib/x86_64-linux-gnu/libm-2.27.so"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":121016,"node":655394,"name":"/lib/x86_64-linux-gnu/libudev.so.1.6.9"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":43304,"node":656160,"name":"/lib/x86_64-linux-gnu/libjson-c.so.3.0.1"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":34872,"node":924307,"name":"/usr/lib/x86_64-linux-gnu/libargon2.so.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":432640,"node":656144,"name":"/lib/x86_64-linux-gnu/libdevmapper.so.1.02.1"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":18680,"node":656129,"name":"/lib/x86_64-linux-gnu/libattr.so.1.1.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":18712,"node":656135,"name":"/lib/x86_64-linux-gnu/libcap-ng.so.0.0.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":206872,"node":656157,"name":"/lib/x86_64-linux-gnu/libidn.so.11.6.16"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":27088,"node":924361,"name":"/usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":22768,"node":656136,"name":"/lib/x86_64-linux-gnu/libcap.so.2.25"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":310040,"node":656140,"name":"/lib/x86_64-linux-gnu/libcryptsetup.so.12.2.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":31232,"node":656125,"name":"/lib/x86_64-linux-gnu/libacl.so.1.1.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":64144,"node":656127,"name":"/lib/x86_64-linux-gnu/libapparmor.so.1.4.2"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":92208,"node":656162,"name":"/lib/x86_64-linux-gnu/libkmod.so.2.3.2"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":124848,"node":656130,"name":"/lib/x86_64-linux-gnu/libaudit.so.1.0.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":55848,"node":656185,"name":"/lib/x86_64-linux-gnu/libpam.so.0.83.1"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":311720,"node":656131,"name":"/lib/x86_64-linux-gnu/libblkid.so.1.1.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":340232,"node":656170,"name":"/lib/x86_64-linux-gnu/libmount.so.1.1.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":288976,"node":656202,"name":"/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2363632,"node":655401,"name":"/lib/systemd/libsystemd-shared-237.so"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"1u","type":"unix","device":"0xffff98e4b460c400","size_off":0,"node":33601,"name":"type=STREAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"2u","type":"unix","device":"0xffff98e4b460c400","size_off":0,"node":33601,"name":"type=STREAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"3u","type":"unix","device":"0xffff98e4b31f0800","size_off":0,"node":33650,"name":"type=DGRAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[signalfd]"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"6r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"7r","type":"DIR","device":"0,28","size_off":0,"node":1263,"name":"/sys/fs/cgroup/unified/user.slice/user-1000.slice/user@1000.service"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"8u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"9u","type":"netlink","device":null,"size_off":0,"node":33759,"name":"KOBJECT_UEVENT"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"10u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"11r","type":"REG","device":"0,4","size_off":0,"node":33761,"name":"/proc/1723/mountinfo"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"12r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"13r","type":"REG","device":"0,4","size_off":0,"node":4026532068,"name":"/proc/swaps"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"14u","type":"unix","device":"0xffff98e4b31f4800","size_off":0,"node":33762,"name":"/run/user/1000/systemd/notify type=DGRAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"15u","type":"unix","device":"0xffff98e4b31f2800","size_off":0,"node":33763,"name":"type=DGRAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"16u","type":"unix","device":"0xffff98e4b31f2000","size_off":0,"node":33764,"name":"type=DGRAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"17u","type":"unix","device":"0xffff98e4b31f3800","size_off":0,"node":33765,"name":"/run/user/1000/systemd/private type=STREAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"22u","type":"unix","device":"0xffff98e4b31f1000","size_off":0,"node":33808,"name":"/run/user/1000/gnupg/S.gpg-agent.ssh type=STREAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"23u","type":"unix","device":"0xffff98e4b31f6800","size_off":0,"node":33809,"name":"/run/user/1000/gnupg/S.dirmngr type=STREAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"24u","type":"unix","device":"0xffff98e4b31f2c00","size_off":0,"node":33810,"name":"/run/user/1000/gnupg/S.gpg-agent.browser type=STREAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"25u","type":"unix","device":"0xffff98e4b31f4c00","size_off":0,"node":33811,"name":"/run/user/1000/gnupg/S.gpg-agent type=STREAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"26u","type":"unix","device":"0xffff98e4b31f1400","size_off":0,"node":33812,"name":"/run/user/1000/gnupg/S.gpg-agent.extra type=STREAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"27u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"8,2","size_off":1595792,"node":668802,"name":"/lib/systemd/systemd"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":10080,"node":656222,"name":"/lib/x86_64-linux-gnu/security/pam_cap.so"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":14576,"node":656186,"name":"/lib/x86_64-linux-gnu/libpam_misc.so.0.82.0"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":258040,"node":655398,"name":"/lib/x86_64-linux-gnu/security/pam_systemd.so"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":10376,"node":656261,"name":"/lib/x86_64-linux-gnu/security/pam_umask.so"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":22872,"node":656236,"name":"/lib/x86_64-linux-gnu/security/pam_limits.so"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":10336,"node":656239,"name":"/lib/x86_64-linux-gnu/security/pam_loginuid.so"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":18736,"node":656250,"name":"/lib/x86_64-linux-gnu/security/pam_selinux.so"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":6104,"node":656245,"name":"/lib/x86_64-linux-gnu/security/pam_permit.so"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":5776,"node":656224,"name":"/lib/x86_64-linux-gnu/security/pam_deny.so"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":39208,"node":656139,"name":"/lib/x86_64-linux-gnu/libcrypt-2.27.so"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":60272,"node":656262,"name":"/lib/x86_64-linux-gnu/security/pam_unix.so"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":258040,"node":655397,"name":"/lib/x86_64-linux-gnu/libnss_systemd.so.2"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1700792,"node":656167,"name":"/lib/x86_64-linux-gnu/libm-2.27.so"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":121016,"node":655394,"name":"/lib/x86_64-linux-gnu/libudev.so.1.6.9"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":43304,"node":656160,"name":"/lib/x86_64-linux-gnu/libjson-c.so.3.0.1"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":34872,"node":924307,"name":"/usr/lib/x86_64-linux-gnu/libargon2.so.0"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":432640,"node":656144,"name":"/lib/x86_64-linux-gnu/libdevmapper.so.1.02.1"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":18680,"node":656129,"name":"/lib/x86_64-linux-gnu/libattr.so.1.1.0"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":18712,"node":656135,"name":"/lib/x86_64-linux-gnu/libcap-ng.so.0.0.0"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":206872,"node":656157,"name":"/lib/x86_64-linux-gnu/libidn.so.11.6.16"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":27088,"node":924361,"name":"/usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":22768,"node":656136,"name":"/lib/x86_64-linux-gnu/libcap.so.2.25"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":310040,"node":656140,"name":"/lib/x86_64-linux-gnu/libcryptsetup.so.12.2.0"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":31232,"node":656125,"name":"/lib/x86_64-linux-gnu/libacl.so.1.1.0"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":64144,"node":656127,"name":"/lib/x86_64-linux-gnu/libapparmor.so.1.4.2"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":92208,"node":656162,"name":"/lib/x86_64-linux-gnu/libkmod.so.2.3.2"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":124848,"node":656130,"name":"/lib/x86_64-linux-gnu/libaudit.so.1.0.0"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":55848,"node":656185,"name":"/lib/x86_64-linux-gnu/libpam.so.0.83.1"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":311720,"node":656131,"name":"/lib/x86_64-linux-gnu/libblkid.so.1.1.0"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":340232,"node":656170,"name":"/lib/x86_64-linux-gnu/libmount.so.1.1.0"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":288976,"node":656202,"name":"/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2363632,"node":655401,"name":"/lib/systemd/libsystemd-shared-237.so"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"1u","type":"unix","device":"0xffff98e4b460c400","size_off":0,"node":33601,"name":"type=STREAM"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"2u","type":"unix","device":"0xffff98e4b460c400","size_off":0,"node":33601,"name":"type=STREAM"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"3u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"6w","type":"FIFO","device":"0,12","size_off":0,"node":33602,"name":"pipe"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"7u","type":"unix","device":"0xffff98e4b31f1800","size_off":0,"node":33638,"name":"type=DGRAM"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":528261,"name":"/home/kbrazil/testfiles"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"8,2","size_off":1113504,"node":131099,"name":"/bin/bash"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170784,"node":656210,"name":"/lib/x86_64-linux-gnu/libtinfo.so.5.9"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":26376,"node":1049137,"name":"/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"4,64","size_off":0,"node":87,"name":"/dev/ttyS0"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"4,64","size_off":0,"node":87,"name":"/dev/ttyS0"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"4,64","size_off":0,"node":87,"name":"/dev/ttyS0"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"255u","type":"CHR","device":"4,64","size_off":0,"node":87,"name":"/dev/ttyS0"},{"command":"loop9","pid":3451,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop9","pid":3451,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop9","pid":3451,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/3451/exe"},{"command":"loop4","pid":3657,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop4","pid":3657,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop4","pid":3657,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/3657/exe"},{"command":"xfsalloc","pid":15892,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"xfsalloc","pid":15892,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"xfsalloc","pid":15892,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15892/exe"},{"command":"xfs_mru_c","pid":15896,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"xfs_mru_c","pid":15896,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"xfs_mru_c","pid":15896,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15896/exe"},{"command":"jfsIO","pid":15900,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"jfsIO","pid":15900,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"jfsIO","pid":15900,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15900/exe"},{"command":"jfsCommit","pid":15901,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"jfsCommit","pid":15901,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"jfsCommit","pid":15901,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15901/exe"},{"command":"jfsSync","pid":15902,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"jfsSync","pid":15902,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"jfsSync","pid":15902,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15902/exe"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":786856,"node":933045,"name":"/usr/sbin/sshd"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":258040,"node":655397,"name":"/lib/x86_64-linux-gnu/libnss_systemd.so.2"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14464,"node":656226,"name":"/lib/x86_64-linux-gnu/security/pam_env.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":22872,"node":656236,"name":"/lib/x86_64-linux-gnu/security/pam_limits.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10312,"node":656240,"name":"/lib/x86_64-linux-gnu/security/pam_mail.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10336,"node":656242,"name":"/lib/x86_64-linux-gnu/security/pam_motd.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14576,"node":656186,"name":"/lib/x86_64-linux-gnu/libpam_misc.so.0.82.0"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":258040,"node":655398,"name":"/lib/x86_64-linux-gnu/security/pam_systemd.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10376,"node":656261,"name":"/lib/x86_64-linux-gnu/security/pam_umask.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10280,"node":656234,"name":"/lib/x86_64-linux-gnu/security/pam_keyinit.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10336,"node":656239,"name":"/lib/x86_64-linux-gnu/security/pam_loginuid.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":18736,"node":656250,"name":"/lib/x86_64-linux-gnu/security/pam_selinux.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10264,"node":656244,"name":"/lib/x86_64-linux-gnu/security/pam_nologin.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":22768,"node":656136,"name":"/lib/x86_64-linux-gnu/libcap.so.2.25"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10080,"node":656222,"name":"/lib/x86_64-linux-gnu/security/pam_cap.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":6104,"node":656245,"name":"/lib/x86_64-linux-gnu/security/pam_permit.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":5776,"node":656224,"name":"/lib/x86_64-linux-gnu/security/pam_deny.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":60272,"node":656262,"name":"/lib/x86_64-linux-gnu/security/pam_unix.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14256,"node":656161,"name":"/lib/x86_64-linux-gnu/libkeyutils.so.1.5"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":43616,"node":924373,"name":"/usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":199104,"node":924370,"name":"/usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":18712,"node":656135,"name":"/lib/x86_64-linux-gnu/libcap-ng.so.0.0.0"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14248,"node":668487,"name":"/lib/x86_64-linux-gnu/libcom_err.so.2.1"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":877056,"node":924372,"name":"/usr/lib/x86_64-linux-gnu/libkrb5.so.3.3"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":305456,"node":924347,"name":"/usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39208,"node":656139,"name":"/lib/x86_64-linux-gnu/libcrypt-2.27.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":116960,"node":656216,"name":"/lib/x86_64-linux-gnu/libz.so.1.2.11"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10592,"node":656214,"name":"/lib/x86_64-linux-gnu/libutil-2.27.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2357760,"node":924313,"name":"/usr/lib/x86_64-linux-gnu/libcrypto.so.1.0.0"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":536648,"node":662910,"name":"/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":55848,"node":656185,"name":"/lib/x86_64-linux-gnu/libpam.so.0.83.1"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":124848,"node":656130,"name":"/lib/x86_64-linux-gnu/libaudit.so.1.0.0"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39784,"node":656275,"name":"/lib/x86_64-linux-gnu/libwrap.so.0.7.6"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"3u","type":"IPv4","device":"207375","size_off":0,"node":null,"name":"kbrazil-ubuntu:ssh->192.168.71.1:65159 (ESTABLISHED)"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"4u","type":"unix","device":"0xffff98e4b3fe6c00","size_off":0,"node":207447,"name":"type=DGRAM"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"5u","type":"CHR","device":"5,2","size_off":0,"node":86,"name":"/dev/ptmx"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"6u","type":"unix","device":"0xffff98e4b3fe3000","size_off":0,"node":207714,"name":"type=STREAM"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"7w","type":"FIFO","device":"0,23","size_off":0,"node":719,"name":"/run/systemd/sessions/49.ref"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"8,2","size_off":786856,"node":933045,"name":"/usr/sbin/sshd"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":258040,"node":655397,"name":"/lib/x86_64-linux-gnu/libnss_systemd.so.2"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":14464,"node":656226,"name":"/lib/x86_64-linux-gnu/security/pam_env.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":22872,"node":656236,"name":"/lib/x86_64-linux-gnu/security/pam_limits.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":10312,"node":656240,"name":"/lib/x86_64-linux-gnu/security/pam_mail.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":10336,"node":656242,"name":"/lib/x86_64-linux-gnu/security/pam_motd.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":14576,"node":656186,"name":"/lib/x86_64-linux-gnu/libpam_misc.so.0.82.0"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":258040,"node":655398,"name":"/lib/x86_64-linux-gnu/security/pam_systemd.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":10376,"node":656261,"name":"/lib/x86_64-linux-gnu/security/pam_umask.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":10280,"node":656234,"name":"/lib/x86_64-linux-gnu/security/pam_keyinit.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":10336,"node":656239,"name":"/lib/x86_64-linux-gnu/security/pam_loginuid.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":18736,"node":656250,"name":"/lib/x86_64-linux-gnu/security/pam_selinux.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":10264,"node":656244,"name":"/lib/x86_64-linux-gnu/security/pam_nologin.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":22768,"node":656136,"name":"/lib/x86_64-linux-gnu/libcap.so.2.25"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":10080,"node":656222,"name":"/lib/x86_64-linux-gnu/security/pam_cap.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":6104,"node":656245,"name":"/lib/x86_64-linux-gnu/security/pam_permit.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":5776,"node":656224,"name":"/lib/x86_64-linux-gnu/security/pam_deny.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":60272,"node":656262,"name":"/lib/x86_64-linux-gnu/security/pam_unix.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":14256,"node":656161,"name":"/lib/x86_64-linux-gnu/libkeyutils.so.1.5"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":43616,"node":924373,"name":"/usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":199104,"node":924370,"name":"/usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":18712,"node":656135,"name":"/lib/x86_64-linux-gnu/libcap-ng.so.0.0.0"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":14248,"node":668487,"name":"/lib/x86_64-linux-gnu/libcom_err.so.2.1"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":877056,"node":924372,"name":"/usr/lib/x86_64-linux-gnu/libkrb5.so.3.3"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":305456,"node":924347,"name":"/usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":39208,"node":656139,"name":"/lib/x86_64-linux-gnu/libcrypt-2.27.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":116960,"node":656216,"name":"/lib/x86_64-linux-gnu/libz.so.1.2.11"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":10592,"node":656214,"name":"/lib/x86_64-linux-gnu/libutil-2.27.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2357760,"node":924313,"name":"/usr/lib/x86_64-linux-gnu/libcrypto.so.1.0.0"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":536648,"node":662910,"name":"/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":55848,"node":656185,"name":"/lib/x86_64-linux-gnu/libpam.so.0.83.1"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":124848,"node":656130,"name":"/lib/x86_64-linux-gnu/libaudit.so.1.0.0"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":39784,"node":656275,"name":"/lib/x86_64-linux-gnu/libwrap.so.0.7.6"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"3u","type":"IPv4","device":"207375","size_off":0,"node":null,"name":"kbrazil-ubuntu:ssh->192.168.71.1:65159 (ESTABLISHED)"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"4u","type":"unix","device":"0xffff98e4b3fe6c00","size_off":0,"node":207447,"name":"type=DGRAM"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"5u","type":"unix","device":"0xffff98e4b3fe4800","size_off":0,"node":207713,"name":"type=STREAM"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"6r","type":"FIFO","device":"0,12","size_off":0,"node":207717,"name":"pipe"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"7w","type":"FIFO","device":"0,23","size_off":0,"node":719,"name":"/run/systemd/sessions/49.ref"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"8w","type":"FIFO","device":"0,12","size_off":0,"node":207717,"name":"pipe"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"9u","type":"CHR","device":"5,2","size_off":0,"node":86,"name":"/dev/ptmx"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"11u","type":"CHR","device":"5,2","size_off":0,"node":86,"name":"/dev/ptmx"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"12u","type":"CHR","device":"5,2","size_off":0,"node":86,"name":"/dev/ptmx"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":528261,"name":"/home/kbrazil/testfiles"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"8,2","size_off":1113504,"node":131099,"name":"/bin/bash"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170784,"node":656210,"name":"/lib/x86_64-linux-gnu/libtinfo.so.5.9"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":26376,"node":1049137,"name":"/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"255u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"kworker/0","pid":19890,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kworker/0","pid":19890,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kworker/0","pid":19890,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/19890/exe"},{"command":"kworker/0","pid":23282,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kworker/0","pid":23282,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kworker/0","pid":23282,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23282/exe"},{"command":"kworker/u","pid":23289,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kworker/u","pid":23289,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kworker/u","pid":23289,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23289/exe"},{"command":"kworker/u","pid":23310,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kworker/u","pid":23310,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kworker/u","pid":23310,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23310/exe"},{"command":"kworker/u","pid":23851,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kworker/u","pid":23851,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kworker/u","pid":23851,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23851/exe"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":528261,"name":"/home/kbrazil/testfiles"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"8,2","size_off":1113504,"node":131099,"name":"/bin/bash"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170784,"node":656210,"name":"/lib/x86_64-linux-gnu/libtinfo.so.5.9"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":26376,"node":1049137,"name":"/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"255r","type":"REG","device":"8,2","size_off":1568,"node":528300,"name":"/home/kbrazil/testfiles/tests.sh"},{"command":"sleep","pid":23903,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":528261,"name":"/home/kbrazil/testfiles"},{"command":"sleep","pid":23903,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"sleep","pid":23903,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"8,2","size_off":35000,"node":131203,"name":"/bin/sleep"},{"command":"sleep","pid":23903,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"sleep","pid":23903,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"sleep","pid":23903,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"sleep","pid":23903,"tid":null,"user":"kbrazil","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"sleep","pid":23903,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":23903,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":23904,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":528261,"name":"/home/kbrazil/testfiles"},{"command":"sleep","pid":23904,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"sleep","pid":23904,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"8,2","size_off":35000,"node":131203,"name":"/bin/sleep"},{"command":"sleep","pid":23904,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"sleep","pid":23904,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"sleep","pid":23904,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"sleep","pid":23904,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":23904,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":23904,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":23905,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":528261,"name":"/home/kbrazil/testfiles"},{"command":"sleep","pid":23905,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"sleep","pid":23905,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"8,2","size_off":35000,"node":131203,"name":"/bin/sleep"},{"command":"sleep","pid":23905,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"sleep","pid":23905,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"sleep","pid":23905,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"sleep","pid":23905,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":23905,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":23905,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":23906,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":528261,"name":"/home/kbrazil/testfiles"},{"command":"sleep","pid":23906,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"sleep","pid":23906,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"8,2","size_off":35000,"node":131203,"name":"/bin/sleep"},{"command":"sleep","pid":23906,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"sleep","pid":23906,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"sleep","pid":23906,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"sleep","pid":23906,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":23906,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":23906,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":528261,"name":"/home/kbrazil/testfiles"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":149080,"node":923438,"name":"/usr/bin/sudo"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14576,"node":656186,"name":"/lib/x86_64-linux-gnu/libpam_misc.so.0.82.0"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":258040,"node":655398,"name":"/lib/x86_64-linux-gnu/security/pam_systemd.so"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10376,"node":656261,"name":"/lib/x86_64-linux-gnu/security/pam_umask.so"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":22768,"node":656136,"name":"/lib/x86_64-linux-gnu/libcap.so.2.25"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10080,"node":656222,"name":"/lib/x86_64-linux-gnu/security/pam_cap.so"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":6104,"node":656245,"name":"/lib/x86_64-linux-gnu/security/pam_permit.so"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":5776,"node":656224,"name":"/lib/x86_64-linux-gnu/security/pam_deny.so"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39208,"node":656139,"name":"/lib/x86_64-linux-gnu/libcrypt-2.27.so"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":60272,"node":656262,"name":"/lib/x86_64-linux-gnu/security/pam_unix.so"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14464,"node":656226,"name":"/lib/x86_64-linux-gnu/security/pam_env.so"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":258040,"node":655397,"name":"/lib/x86_64-linux-gnu/libnss_systemd.so.2"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":55848,"node":656185,"name":"/lib/x86_64-linux-gnu/libpam.so.0.83.1"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":354592,"node":940088,"name":"/usr/lib/sudo/sudoers.so"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":18712,"node":656135,"name":"/lib/x86_64-linux-gnu/libcap-ng.so.0.0.0"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":84360,"node":940083,"name":"/usr/lib/sudo/libsudo_util.so.0.0.0"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10592,"node":656214,"name":"/lib/x86_64-linux-gnu/libutil-2.27.so"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":124848,"node":656130,"name":"/lib/x86_64-linux-gnu/libaudit.so.1.0.0"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"1w","type":"REG","device":"8,2","size_off":0,"node":528287,"name":"/home/kbrazil/testfiles/lsof-sudo.out"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"3u","type":"netlink","device":null,"size_off":0,"node":340065,"name":"AUDIT"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"4u","type":"unix","device":"0xffff98e4b4afb800","size_off":0,"node":340069,"name":"type=DGRAM"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"6r","type":"FIFO","device":"0,12","size_off":0,"node":340072,"name":"pipe"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"7w","type":"FIFO","device":"0,12","size_off":0,"node":340072,"name":"pipe"},{"command":"lsof","pid":23915,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":528261,"name":"/home/kbrazil/testfiles"},{"command":"lsof","pid":23915,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lsof","pid":23915,"tid":null,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":163224,"node":918160,"name":"/usr/bin/lsof"},{"command":"lsof","pid":23915,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"lsof","pid":23915,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"lsof","pid":23915,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"lsof","pid":23915,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"lsof","pid":23915,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"lsof","pid":23915,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"lsof","pid":23915,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"lsof","pid":23915,"tid":null,"user":"root","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"lsof","pid":23915,"tid":null,"user":"root","fd":"1w","type":"REG","device":"8,2","size_off":0,"node":528287,"name":"/home/kbrazil/testfiles/lsof-sudo.out"},{"command":"lsof","pid":23915,"tid":null,"user":"root","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"lsof","pid":23915,"tid":null,"user":"root","fd":"3r","type":"DIR","device":"0,4","size_off":0,"node":1,"name":"/proc"},{"command":"lsof","pid":23915,"tid":null,"user":"root","fd":"4r","type":"DIR","device":"0,4","size_off":0,"node":340074,"name":"/proc/23915/fd"},{"command":"lsof","pid":23915,"tid":null,"user":"root","fd":"5w","type":"FIFO","device":"0,12","size_off":0,"node":340083,"name":"pipe"},{"command":"lsof","pid":23915,"tid":null,"user":"root","fd":"6r","type":"FIFO","device":"0,12","size_off":0,"node":340084,"name":"pipe"},{"command":"lsof","pid":23916,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":528261,"name":"/home/kbrazil/testfiles"},{"command":"lsof","pid":23916,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lsof","pid":23916,"tid":null,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":163224,"node":918160,"name":"/usr/bin/lsof"},{"command":"lsof","pid":23916,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"lsof","pid":23916,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"lsof","pid":23916,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"lsof","pid":23916,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"lsof","pid":23916,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"lsof","pid":23916,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"lsof","pid":23916,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"lsof","pid":23916,"tid":null,"user":"root","fd":"4r","type":"FIFO","device":"0,12","size_off":0,"node":340083,"name":"pipe"},{"command":"lsof","pid":23916,"tid":null,"user":"root","fd":"7w","type":"FIFO","device":"0,12","size_off":0,"node":340084,"name":"pipe"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/lsof-sudo.out000066400000000000000000012355171415226333200216670ustar00rootroot00000000000000COMMAND PID TID USER FD TYPE DEVICE SIZE/OFF NODE NAME systemd 1 root cwd DIR 8,2 4096 2 / systemd 1 root rtd DIR 8,2 4096 2 / systemd 1 root txt REG 8,2 1595792 668802 /lib/systemd/systemd systemd 1 root mem REG 8,2 1700792 656167 /lib/x86_64-linux-gnu/libm-2.27.so systemd 1 root mem REG 8,2 121016 655394 /lib/x86_64-linux-gnu/libudev.so.1.6.9 systemd 1 root mem REG 8,2 84032 656154 /lib/x86_64-linux-gnu/libgpg-error.so.0.22.0 systemd 1 root mem REG 8,2 43304 656160 /lib/x86_64-linux-gnu/libjson-c.so.3.0.1 systemd 1 root mem REG 8,2 34872 924307 /usr/lib/x86_64-linux-gnu/libargon2.so.0 systemd 1 root mem REG 8,2 432640 656144 /lib/x86_64-linux-gnu/libdevmapper.so.1.02.1 systemd 1 root mem REG 8,2 18680 656129 /lib/x86_64-linux-gnu/libattr.so.1.1.0 systemd 1 root mem REG 8,2 18712 656135 /lib/x86_64-linux-gnu/libcap-ng.so.0.0.0 systemd 1 root mem REG 8,2 27112 656215 /lib/x86_64-linux-gnu/libuuid.so.1.3.0 systemd 1 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so systemd 1 root mem REG 8,2 464824 656191 /lib/x86_64-linux-gnu/libpcre.so.3.13.3 systemd 1 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so systemd 1 root mem REG 8,2 112672 924379 /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1 systemd 1 root mem REG 8,2 153984 656165 /lib/x86_64-linux-gnu/liblzma.so.5.2.2 systemd 1 root mem REG 8,2 206872 656157 /lib/x86_64-linux-gnu/libidn.so.11.6.16 systemd 1 root mem REG 8,2 27088 924361 /usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0 systemd 1 root mem REG 8,2 1155768 656153 /lib/x86_64-linux-gnu/libgcrypt.so.20.2.1 systemd 1 root mem REG 8,2 22768 656136 /lib/x86_64-linux-gnu/libcap.so.2.25 systemd 1 root mem REG 8,2 310040 656140 /lib/x86_64-linux-gnu/libcryptsetup.so.12.2.0 systemd 1 root mem REG 8,2 31232 656125 /lib/x86_64-linux-gnu/libacl.so.1.1.0 systemd 1 root mem REG 8,2 64144 656127 /lib/x86_64-linux-gnu/libapparmor.so.1.4.2 systemd 1 root mem REG 8,2 92208 656162 /lib/x86_64-linux-gnu/libkmod.so.2.3.2 systemd 1 root mem REG 8,2 124848 656130 /lib/x86_64-linux-gnu/libaudit.so.1.0.0 systemd 1 root mem REG 8,2 55848 656185 /lib/x86_64-linux-gnu/libpam.so.0.83.1 systemd 1 root mem REG 8,2 311720 656131 /lib/x86_64-linux-gnu/libblkid.so.1.1.0 systemd 1 root mem REG 8,2 340232 656170 /lib/x86_64-linux-gnu/libmount.so.1.1.0 systemd 1 root mem REG 8,2 154832 656203 /lib/x86_64-linux-gnu/libselinux.so.1 systemd 1 root mem REG 8,2 288976 656202 /lib/x86_64-linux-gnu/libseccomp.so.2.4.1 systemd 1 root mem REG 8,2 31680 656201 /lib/x86_64-linux-gnu/librt-2.27.so systemd 1 root mem REG 8,2 2363632 655401 /lib/systemd/libsystemd-shared-237.so systemd 1 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so systemd 1 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so systemd 1 root 0u CHR 1,3 0t0 6 /dev/null systemd 1 root 1u CHR 1,3 0t0 6 /dev/null systemd 1 root 2u CHR 1,3 0t0 6 /dev/null systemd 1 root 3w CHR 1,11 0t0 12 /dev/kmsg systemd 1 root 4u a_inode 0,13 0 10717 [eventpoll] systemd 1 root 5u a_inode 0,13 0 10717 [signalfd] systemd 1 root 6r a_inode 0,13 0 10717 inotify systemd 1 root 7r DIR 0,28 0 1 /sys/fs/cgroup/unified systemd 1 root 8u a_inode 0,13 0 10717 [timerfd] systemd 1 root 9u netlink 0t0 20650 KOBJECT_UEVENT systemd 1 root 10u a_inode 0,13 0 10717 [eventpoll] systemd 1 root 11r REG 0,4 0 20651 /proc/1/mountinfo systemd 1 root 12r a_inode 0,13 0 10717 inotify systemd 1 root 13r REG 0,4 0 4026532068 /proc/swaps systemd 1 root 14r a_inode 0,13 0 10717 inotify systemd 1 root 15r a_inode 0,13 0 10717 inotify systemd 1 root 16r a_inode 0,13 0 10717 inotify systemd 1 root 17u unix 0xffff98e47234b800 0t0 20655 /run/systemd/private type=STREAM systemd 1 root 19u unix 0xffff98e4b3fed400 0t0 76786 type=DGRAM systemd 1 root 20u a_inode 0,13 0 10717 bpf-map systemd 1 root 21u a_inode 0,13 0 10717 bpf-map systemd 1 root 22u a_inode 0,13 0 10717 bpf-prog systemd 1 root 23u a_inode 0,13 0 10717 bpf-prog systemd 1 root 24u a_inode 0,13 0 10717 bpf-map systemd 1 root 25u a_inode 0,13 0 10717 bpf-map systemd 1 root 26u a_inode 0,13 0 10717 bpf-prog systemd 1 root 27u a_inode 0,13 0 10717 bpf-prog systemd 1 root 28u a_inode 0,13 0 10717 bpf-map systemd 1 root 29u a_inode 0,13 0 10717 [timerfd] systemd 1 root 30u a_inode 0,13 0 10717 bpf-map systemd 1 root 31u a_inode 0,13 0 10717 bpf-prog systemd 1 root 32u a_inode 0,13 0 10717 bpf-prog systemd 1 root 36r CHR 10,235 0t0 401 /dev/autofs systemd 1 root 37u unix 0xffff98e472348000 0t0 20652 /run/systemd/notify type=DGRAM systemd 1 root 38u unix 0xffff98e472349c00 0t0 20653 type=DGRAM systemd 1 root 39u unix 0xffff98e472349400 0t0 20654 type=DGRAM systemd 1 root 40u unix 0xffff98e4afa57400 0t0 25276 type=DGRAM systemd 1 root 41u unix 0xffff98e4afa54800 0t0 25277 type=DGRAM systemd 1 root 42u unix 0xffff98e4b1d02400 0t0 27475 /run/uuidd/request type=STREAM systemd 1 root 43u netlink 0t0 20810 ROUTE systemd 1 root 44u netlink 0t0 21114 AUDIT systemd 1 root 45u netlink 0t0 21021 AUDIT systemd 1 root 46u FIFO 0,23 0t0 329 /run/systemd/initctl/fifo systemd 1 root 47u unix 0xffff98e473ed4000 0t0 20812 /run/udev/control type=SEQPACKET systemd 1 root 48u CHR 10,62 0t0 4 /dev/rfkill systemd 1 root 49u unix 0xffff98e4afa55c00 0t0 27489 /var/run/dbus/system_bus_socket type=STREAM systemd 1 root 50u unix 0xffff98e4b1d00800 0t0 27473 /run/acpid.socket type=STREAM systemd 1 root 51r FIFO 0,12 0t0 20976 pipe systemd 1 root 52u unix 0xffff98e47234ac00 0t0 20664 /run/systemd/journal/stdout type=STREAM systemd 1 root 53u unix 0xffff98e47234a000 0t0 20666 /run/systemd/journal/socket type=DGRAM systemd 1 root 54u unix 0xffff98e4b1dc4800 0t0 27481 /var/run/docker.sock type=STREAM systemd 1 root 55u netlink 0t0 20809 KOBJECT_UEVENT systemd 1 root 56u unix 0xffff98e4affb0c00 0t0 21581 /run/systemd/journal/stdout type=STREAM systemd 1 root 57u unix 0xffff98e4b5abbc00 0t0 21583 /run/systemd/journal/stdout type=STREAM systemd 1 root 59u unix 0xffff98e4b1dc3800 0t0 25402 /run/systemd/journal/stdout type=STREAM systemd 1 root 60u unix 0xffff98e4aff63c00 0t0 25415 /run/systemd/journal/stdout type=STREAM systemd 1 root 61u a_inode 0,13 0 10717 [timerfd] systemd 1 root 62u unix 0xffff98e4b8d57800 0t0 26063 /run/systemd/journal/stdout type=STREAM systemd 1 root 63u unix 0xffff98e4afa6b800 0t0 26728 /run/systemd/journal/stdout type=STREAM systemd 1 root 64u unix 0xffff98e4afa55800 0t0 26944 /run/systemd/journal/stdout type=STREAM systemd 1 root 65u unix 0xffff98e4b905b400 0t0 27669 /run/systemd/journal/stdout type=STREAM systemd 1 root 66u unix 0xffff98e4afd8cc00 0t0 27981 /run/systemd/journal/stdout type=STREAM systemd 1 root 67u unix 0xffff98e4b911a000 0t0 28133 /run/systemd/journal/stdout type=STREAM systemd 1 root 68u unix 0xffff98e471d09c00 0t0 28695 /run/systemd/journal/stdout type=STREAM systemd 1 root 69u unix 0xffff98e4affb3c00 0t0 28696 /run/systemd/journal/stdout type=STREAM systemd 1 root 70u unix 0xffff98e4b637d000 0t0 29168 /run/systemd/journal/stdout type=STREAM systemd 1 root 71u unix 0xffff98e4b637d800 0t0 29169 /run/systemd/journal/stdout type=STREAM systemd 1 root 72u unix 0xffff98e4b6063c00 0t0 29558 /run/systemd/journal/stdout type=STREAM systemd 1 root 73u unix 0xffff98e4b5d82400 0t0 29685 /run/systemd/journal/stdout type=STREAM systemd 1 root 74u unix 0xffff98e4b1d8b800 0t0 30153 /run/systemd/journal/stdout type=STREAM systemd 1 root 75u unix 0xffff98e4b460dc00 0t0 33603 /run/systemd/journal/stdout type=STREAM systemd 1 root 76u unix 0xffff98e4b637f800 0t0 29166 type=STREAM systemd 1 root 77u unix 0xffff98e47234c800 0t0 20660 /run/systemd/journal/syslog type=DGRAM systemd 1 root 78u unix 0xffff98e47234ec00 0t0 20662 /run/lvm/lvmetad.socket type=STREAM systemd 1 root 81u unix 0xffff98e4b1dc3400 0t0 27468 /var/lib/lxd/unix.socket type=STREAM systemd 1 root 82u unix 0xffff98e4b1ea3800 0t0 20891 /run/lvm/lvmpolld.socket type=STREAM systemd 1 root 85u unix 0xffff98e4b59c1000 0t0 27436 @ISCSIADM_ABSTRACT_NAMESPACE type=STREAM systemd 1 root 87u unix 0xffff98e4b9565c00 0t0 21016 /run/systemd/journal/dev-log type=DGRAM systemd 1 root 88u FIFO 0,23 0t0 314 /run/dmeventd-server systemd 1 root 92u FIFO 0,23 0t0 315 /run/dmeventd-client systemd 1 root 93u unix 0xffff98e4b1d06400 0t0 27443 /run/snapd.socket type=STREAM systemd 1 root 94u unix 0xffff98e4b1d01400 0t0 27445 /run/snapd-snap.socket type=STREAM kthreadd 2 root cwd DIR 8,2 4096 2 / kthreadd 2 root rtd DIR 8,2 4096 2 / kthreadd 2 root txt unknown /proc/2/exe kworker/0 4 root cwd DIR 8,2 4096 2 / kworker/0 4 root rtd DIR 8,2 4096 2 / kworker/0 4 root txt unknown /proc/4/exe mm_percpu 6 root cwd DIR 8,2 4096 2 / mm_percpu 6 root rtd DIR 8,2 4096 2 / mm_percpu 6 root txt unknown /proc/6/exe ksoftirqd 7 root cwd DIR 8,2 4096 2 / ksoftirqd 7 root rtd DIR 8,2 4096 2 / ksoftirqd 7 root txt unknown /proc/7/exe rcu_sched 8 root cwd DIR 8,2 4096 2 / rcu_sched 8 root rtd DIR 8,2 4096 2 / rcu_sched 8 root txt unknown /proc/8/exe rcu_bh 9 root cwd DIR 8,2 4096 2 / rcu_bh 9 root rtd DIR 8,2 4096 2 / rcu_bh 9 root txt unknown /proc/9/exe migration 10 root cwd DIR 8,2 4096 2 / migration 10 root rtd DIR 8,2 4096 2 / migration 10 root txt unknown /proc/10/exe watchdog/ 11 root cwd DIR 8,2 4096 2 / watchdog/ 11 root rtd DIR 8,2 4096 2 / watchdog/ 11 root txt unknown /proc/11/exe cpuhp/0 12 root cwd DIR 8,2 4096 2 / cpuhp/0 12 root rtd DIR 8,2 4096 2 / cpuhp/0 12 root txt unknown /proc/12/exe kdevtmpfs 13 root cwd DIR 0,6 4060 2 / kdevtmpfs 13 root rtd DIR 0,6 4060 2 / kdevtmpfs 13 root txt unknown /proc/13/exe netns 14 root cwd DIR 8,2 4096 2 / netns 14 root rtd DIR 8,2 4096 2 / netns 14 root txt unknown /proc/14/exe rcu_tasks 15 root cwd DIR 8,2 4096 2 / rcu_tasks 15 root rtd DIR 8,2 4096 2 / rcu_tasks 15 root txt unknown /proc/15/exe kauditd 16 root cwd DIR 8,2 4096 2 / kauditd 16 root rtd DIR 8,2 4096 2 / kauditd 16 root txt unknown /proc/16/exe khungtask 17 root cwd DIR 8,2 4096 2 / khungtask 17 root rtd DIR 8,2 4096 2 / khungtask 17 root txt unknown /proc/17/exe oom_reape 18 root cwd DIR 8,2 4096 2 / oom_reape 18 root rtd DIR 8,2 4096 2 / oom_reape 18 root txt unknown /proc/18/exe writeback 19 root cwd DIR 8,2 4096 2 / writeback 19 root rtd DIR 8,2 4096 2 / writeback 19 root txt unknown /proc/19/exe kcompactd 20 root cwd DIR 8,2 4096 2 / kcompactd 20 root rtd DIR 8,2 4096 2 / kcompactd 20 root txt unknown /proc/20/exe ksmd 21 root cwd DIR 8,2 4096 2 / ksmd 21 root rtd DIR 8,2 4096 2 / ksmd 21 root txt unknown /proc/21/exe khugepage 22 root cwd DIR 8,2 4096 2 / khugepage 22 root rtd DIR 8,2 4096 2 / khugepage 22 root txt unknown /proc/22/exe crypto 23 root cwd DIR 8,2 4096 2 / crypto 23 root rtd DIR 8,2 4096 2 / crypto 23 root txt unknown /proc/23/exe kintegrit 24 root cwd DIR 8,2 4096 2 / kintegrit 24 root rtd DIR 8,2 4096 2 / kintegrit 24 root txt unknown /proc/24/exe kblockd 25 root cwd DIR 8,2 4096 2 / kblockd 25 root rtd DIR 8,2 4096 2 / kblockd 25 root txt unknown /proc/25/exe ata_sff 26 root cwd DIR 8,2 4096 2 / ata_sff 26 root rtd DIR 8,2 4096 2 / ata_sff 26 root txt unknown /proc/26/exe md 27 root cwd DIR 8,2 4096 2 / md 27 root rtd DIR 8,2 4096 2 / md 27 root txt unknown /proc/27/exe edac-poll 28 root cwd DIR 8,2 4096 2 / edac-poll 28 root rtd DIR 8,2 4096 2 / edac-poll 28 root txt unknown /proc/28/exe devfreq_w 29 root cwd DIR 8,2 4096 2 / devfreq_w 29 root rtd DIR 8,2 4096 2 / devfreq_w 29 root txt unknown /proc/29/exe watchdogd 30 root cwd DIR 8,2 4096 2 / watchdogd 30 root rtd DIR 8,2 4096 2 / watchdogd 30 root txt unknown /proc/30/exe kswapd0 34 root cwd DIR 8,2 4096 2 / kswapd0 34 root rtd DIR 8,2 4096 2 / kswapd0 34 root txt unknown /proc/34/exe kworker/u 35 root cwd DIR 8,2 4096 2 / kworker/u 35 root rtd DIR 8,2 4096 2 / kworker/u 35 root txt unknown /proc/35/exe ecryptfs- 36 root cwd DIR 8,2 4096 2 / ecryptfs- 36 root rtd DIR 8,2 4096 2 / ecryptfs- 36 root txt unknown /proc/36/exe kthrotld 78 root cwd DIR 8,2 4096 2 / kthrotld 78 root rtd DIR 8,2 4096 2 / kthrotld 78 root txt unknown /proc/78/exe acpi_ther 79 root cwd DIR 8,2 4096 2 / acpi_ther 79 root rtd DIR 8,2 4096 2 / acpi_ther 79 root txt unknown /proc/79/exe scsi_eh_0 80 root cwd DIR 8,2 4096 2 / scsi_eh_0 80 root rtd DIR 8,2 4096 2 / scsi_eh_0 80 root txt unknown /proc/80/exe scsi_tmf_ 81 root cwd DIR 8,2 4096 2 / scsi_tmf_ 81 root rtd DIR 8,2 4096 2 / scsi_tmf_ 81 root txt unknown /proc/81/exe scsi_eh_1 82 root cwd DIR 8,2 4096 2 / scsi_eh_1 82 root rtd DIR 8,2 4096 2 / scsi_eh_1 82 root txt unknown /proc/82/exe scsi_tmf_ 83 root cwd DIR 8,2 4096 2 / scsi_tmf_ 83 root rtd DIR 8,2 4096 2 / scsi_tmf_ 83 root txt unknown /proc/83/exe ipv6_addr 89 root cwd DIR 8,2 4096 2 / ipv6_addr 89 root rtd DIR 8,2 4096 2 / ipv6_addr 89 root txt unknown /proc/89/exe kstrp 99 root cwd DIR 8,2 4096 2 / kstrp 99 root rtd DIR 8,2 4096 2 / kstrp 99 root txt unknown /proc/99/exe charger_m 116 root cwd DIR 8,2 4096 2 / charger_m 116 root rtd DIR 8,2 4096 2 / charger_m 116 root txt unknown /proc/116/exe mpt_poll_ 170 root cwd DIR 8,2 4096 2 / mpt_poll_ 170 root rtd DIR 8,2 4096 2 / mpt_poll_ 170 root txt unknown /proc/170/exe scsi_eh_2 171 root cwd DIR 8,2 4096 2 / scsi_eh_2 171 root rtd DIR 8,2 4096 2 / scsi_eh_2 171 root txt unknown /proc/171/exe mpt/0 172 root cwd DIR 8,2 4096 2 / mpt/0 172 root rtd DIR 8,2 4096 2 / mpt/0 172 root txt unknown /proc/172/exe scsi_tmf_ 173 root cwd DIR 8,2 4096 2 / scsi_tmf_ 173 root rtd DIR 8,2 4096 2 / scsi_tmf_ 173 root txt unknown /proc/173/exe scsi_eh_3 174 root cwd DIR 8,2 4096 2 / scsi_eh_3 174 root rtd DIR 8,2 4096 2 / scsi_eh_3 174 root txt unknown /proc/174/exe scsi_tmf_ 175 root cwd DIR 8,2 4096 2 / scsi_tmf_ 175 root rtd DIR 8,2 4096 2 / scsi_tmf_ 175 root txt unknown /proc/175/exe scsi_eh_4 176 root cwd DIR 8,2 4096 2 / scsi_eh_4 176 root rtd DIR 8,2 4096 2 / scsi_eh_4 176 root txt unknown /proc/176/exe scsi_tmf_ 177 root cwd DIR 8,2 4096 2 / scsi_tmf_ 177 root rtd DIR 8,2 4096 2 / scsi_tmf_ 177 root txt unknown /proc/177/exe scsi_eh_5 178 root cwd DIR 8,2 4096 2 / scsi_eh_5 178 root rtd DIR 8,2 4096 2 / scsi_eh_5 178 root txt unknown /proc/178/exe scsi_tmf_ 179 root cwd DIR 8,2 4096 2 / scsi_tmf_ 179 root rtd DIR 8,2 4096 2 / scsi_tmf_ 179 root txt unknown /proc/179/exe scsi_eh_6 180 root cwd DIR 8,2 4096 2 / scsi_eh_6 180 root rtd DIR 8,2 4096 2 / scsi_eh_6 180 root txt unknown /proc/180/exe scsi_tmf_ 181 root cwd DIR 8,2 4096 2 / scsi_tmf_ 181 root rtd DIR 8,2 4096 2 / scsi_tmf_ 181 root txt unknown /proc/181/exe scsi_eh_7 182 root cwd DIR 8,2 4096 2 / scsi_eh_7 182 root rtd DIR 8,2 4096 2 / scsi_eh_7 182 root txt unknown /proc/182/exe scsi_tmf_ 183 root cwd DIR 8,2 4096 2 / scsi_tmf_ 183 root rtd DIR 8,2 4096 2 / scsi_tmf_ 183 root txt unknown /proc/183/exe scsi_eh_8 188 root cwd DIR 8,2 4096 2 / scsi_eh_8 188 root rtd DIR 8,2 4096 2 / scsi_eh_8 188 root txt unknown /proc/188/exe scsi_tmf_ 189 root cwd DIR 8,2 4096 2 / scsi_tmf_ 189 root rtd DIR 8,2 4096 2 / scsi_tmf_ 189 root txt unknown /proc/189/exe scsi_eh_9 191 root cwd DIR 8,2 4096 2 / scsi_eh_9 191 root rtd DIR 8,2 4096 2 / scsi_eh_9 191 root txt unknown /proc/191/exe scsi_tmf_ 196 root cwd DIR 8,2 4096 2 / scsi_tmf_ 196 root rtd DIR 8,2 4096 2 / scsi_tmf_ 196 root txt unknown /proc/196/exe scsi_eh_1 198 root cwd DIR 8,2 4096 2 / scsi_eh_1 198 root rtd DIR 8,2 4096 2 / scsi_eh_1 198 root txt unknown /proc/198/exe scsi_tmf_ 199 root cwd DIR 8,2 4096 2 / scsi_tmf_ 199 root rtd DIR 8,2 4096 2 / scsi_tmf_ 199 root txt unknown /proc/199/exe scsi_eh_1 201 root cwd DIR 8,2 4096 2 / scsi_eh_1 201 root rtd DIR 8,2 4096 2 / scsi_eh_1 201 root txt unknown /proc/201/exe scsi_tmf_ 203 root cwd DIR 8,2 4096 2 / scsi_tmf_ 203 root rtd DIR 8,2 4096 2 / scsi_tmf_ 203 root txt unknown /proc/203/exe scsi_eh_1 205 root cwd DIR 8,2 4096 2 / scsi_eh_1 205 root rtd DIR 8,2 4096 2 / scsi_eh_1 205 root txt unknown /proc/205/exe scsi_tmf_ 208 root cwd DIR 8,2 4096 2 / scsi_tmf_ 208 root rtd DIR 8,2 4096 2 / scsi_tmf_ 208 root txt unknown /proc/208/exe scsi_eh_1 209 root cwd DIR 8,2 4096 2 / scsi_eh_1 209 root rtd DIR 8,2 4096 2 / scsi_eh_1 209 root txt unknown /proc/209/exe scsi_tmf_ 212 root cwd DIR 8,2 4096 2 / scsi_tmf_ 212 root rtd DIR 8,2 4096 2 / scsi_tmf_ 212 root txt unknown /proc/212/exe scsi_eh_1 213 root cwd DIR 8,2 4096 2 / scsi_eh_1 213 root rtd DIR 8,2 4096 2 / scsi_eh_1 213 root txt unknown /proc/213/exe scsi_tmf_ 216 root cwd DIR 8,2 4096 2 / scsi_tmf_ 216 root rtd DIR 8,2 4096 2 / scsi_tmf_ 216 root txt unknown /proc/216/exe scsi_eh_1 217 root cwd DIR 8,2 4096 2 / scsi_eh_1 217 root rtd DIR 8,2 4096 2 / scsi_eh_1 217 root txt unknown /proc/217/exe scsi_tmf_ 219 root cwd DIR 8,2 4096 2 / scsi_tmf_ 219 root rtd DIR 8,2 4096 2 / scsi_tmf_ 219 root txt unknown /proc/219/exe scsi_eh_1 221 root cwd DIR 8,2 4096 2 / scsi_eh_1 221 root rtd DIR 8,2 4096 2 / scsi_eh_1 221 root txt unknown /proc/221/exe scsi_tmf_ 223 root cwd DIR 8,2 4096 2 / scsi_tmf_ 223 root rtd DIR 8,2 4096 2 / scsi_tmf_ 223 root txt unknown /proc/223/exe scsi_eh_1 225 root cwd DIR 8,2 4096 2 / scsi_eh_1 225 root rtd DIR 8,2 4096 2 / scsi_eh_1 225 root txt unknown /proc/225/exe scsi_tmf_ 227 root cwd DIR 8,2 4096 2 / scsi_tmf_ 227 root rtd DIR 8,2 4096 2 / scsi_tmf_ 227 root txt unknown /proc/227/exe scsi_eh_1 229 root cwd DIR 8,2 4096 2 / scsi_eh_1 229 root rtd DIR 8,2 4096 2 / scsi_eh_1 229 root txt unknown /proc/229/exe scsi_tmf_ 230 root cwd DIR 8,2 4096 2 / scsi_tmf_ 230 root rtd DIR 8,2 4096 2 / scsi_tmf_ 230 root txt unknown /proc/230/exe scsi_eh_1 232 root cwd DIR 8,2 4096 2 / scsi_eh_1 232 root rtd DIR 8,2 4096 2 / scsi_eh_1 232 root txt unknown /proc/232/exe scsi_tmf_ 233 root cwd DIR 8,2 4096 2 / scsi_tmf_ 233 root rtd DIR 8,2 4096 2 / scsi_tmf_ 233 root txt unknown /proc/233/exe scsi_eh_2 235 root cwd DIR 8,2 4096 2 / scsi_eh_2 235 root rtd DIR 8,2 4096 2 / scsi_eh_2 235 root txt unknown /proc/235/exe scsi_tmf_ 237 root cwd DIR 8,2 4096 2 / scsi_tmf_ 237 root rtd DIR 8,2 4096 2 / scsi_tmf_ 237 root txt unknown /proc/237/exe scsi_eh_2 238 root cwd DIR 8,2 4096 2 / scsi_eh_2 238 root rtd DIR 8,2 4096 2 / scsi_eh_2 238 root txt unknown /proc/238/exe scsi_tmf_ 240 root cwd DIR 8,2 4096 2 / scsi_tmf_ 240 root rtd DIR 8,2 4096 2 / scsi_tmf_ 240 root txt unknown /proc/240/exe scsi_eh_2 241 root cwd DIR 8,2 4096 2 / scsi_eh_2 241 root rtd DIR 8,2 4096 2 / scsi_eh_2 241 root txt unknown /proc/241/exe scsi_tmf_ 243 root cwd DIR 8,2 4096 2 / scsi_tmf_ 243 root rtd DIR 8,2 4096 2 / scsi_tmf_ 243 root txt unknown /proc/243/exe scsi_eh_2 245 root cwd DIR 8,2 4096 2 / scsi_eh_2 245 root rtd DIR 8,2 4096 2 / scsi_eh_2 245 root txt unknown /proc/245/exe scsi_tmf_ 246 root cwd DIR 8,2 4096 2 / scsi_tmf_ 246 root rtd DIR 8,2 4096 2 / scsi_tmf_ 246 root txt unknown /proc/246/exe scsi_eh_2 248 root cwd DIR 8,2 4096 2 / scsi_eh_2 248 root rtd DIR 8,2 4096 2 / scsi_eh_2 248 root txt unknown /proc/248/exe scsi_tmf_ 250 root cwd DIR 8,2 4096 2 / scsi_tmf_ 250 root rtd DIR 8,2 4096 2 / scsi_tmf_ 250 root txt unknown /proc/250/exe scsi_eh_2 252 root cwd DIR 8,2 4096 2 / scsi_eh_2 252 root rtd DIR 8,2 4096 2 / scsi_eh_2 252 root txt unknown /proc/252/exe scsi_tmf_ 254 root cwd DIR 8,2 4096 2 / scsi_tmf_ 254 root rtd DIR 8,2 4096 2 / scsi_tmf_ 254 root txt unknown /proc/254/exe scsi_eh_2 256 root cwd DIR 8,2 4096 2 / scsi_eh_2 256 root rtd DIR 8,2 4096 2 / scsi_eh_2 256 root txt unknown /proc/256/exe scsi_tmf_ 258 root cwd DIR 8,2 4096 2 / scsi_tmf_ 258 root rtd DIR 8,2 4096 2 / scsi_tmf_ 258 root txt unknown /proc/258/exe scsi_eh_2 259 root cwd DIR 8,2 4096 2 / scsi_eh_2 259 root rtd DIR 8,2 4096 2 / scsi_eh_2 259 root txt unknown /proc/259/exe scsi_tmf_ 260 root cwd DIR 8,2 4096 2 / scsi_tmf_ 260 root rtd DIR 8,2 4096 2 / scsi_tmf_ 260 root txt unknown /proc/260/exe scsi_eh_2 261 root cwd DIR 8,2 4096 2 / scsi_eh_2 261 root rtd DIR 8,2 4096 2 / scsi_eh_2 261 root txt unknown /proc/261/exe scsi_tmf_ 262 root cwd DIR 8,2 4096 2 / scsi_tmf_ 262 root rtd DIR 8,2 4096 2 / scsi_tmf_ 262 root txt unknown /proc/262/exe scsi_eh_2 263 root cwd DIR 8,2 4096 2 / scsi_eh_2 263 root rtd DIR 8,2 4096 2 / scsi_eh_2 263 root txt unknown /proc/263/exe scsi_tmf_ 264 root cwd DIR 8,2 4096 2 / scsi_tmf_ 264 root rtd DIR 8,2 4096 2 / scsi_tmf_ 264 root txt unknown /proc/264/exe scsi_eh_3 265 root cwd DIR 8,2 4096 2 / scsi_eh_3 265 root rtd DIR 8,2 4096 2 / scsi_eh_3 265 root txt unknown /proc/265/exe scsi_tmf_ 266 root cwd DIR 8,2 4096 2 / scsi_tmf_ 266 root rtd DIR 8,2 4096 2 / scsi_tmf_ 266 root txt unknown /proc/266/exe scsi_eh_3 267 root cwd DIR 8,2 4096 2 / scsi_eh_3 267 root rtd DIR 8,2 4096 2 / scsi_eh_3 267 root txt unknown /proc/267/exe scsi_tmf_ 268 root cwd DIR 8,2 4096 2 / scsi_tmf_ 268 root rtd DIR 8,2 4096 2 / scsi_tmf_ 268 root txt unknown /proc/268/exe scsi_eh_3 295 root cwd DIR 8,2 4096 2 / scsi_eh_3 295 root rtd DIR 8,2 4096 2 / scsi_eh_3 295 root txt unknown /proc/295/exe scsi_tmf_ 296 root cwd DIR 8,2 4096 2 / scsi_tmf_ 296 root rtd DIR 8,2 4096 2 / scsi_tmf_ 296 root txt unknown /proc/296/exe ttm_swap 302 root cwd DIR 8,2 4096 2 / ttm_swap 302 root rtd DIR 8,2 4096 2 / ttm_swap 302 root txt unknown /proc/302/exe irq/16-vm 303 root cwd DIR 8,2 4096 2 / irq/16-vm 303 root rtd DIR 8,2 4096 2 / irq/16-vm 303 root txt unknown /proc/303/exe kworker/0 305 root cwd DIR 8,2 4096 2 / kworker/0 305 root rtd DIR 8,2 4096 2 / kworker/0 305 root txt unknown /proc/305/exe raid5wq 369 root cwd DIR 8,2 4096 2 / raid5wq 369 root rtd DIR 8,2 4096 2 / raid5wq 369 root txt unknown /proc/369/exe jbd2/sda2 422 root cwd DIR 8,2 4096 2 / jbd2/sda2 422 root rtd DIR 8,2 4096 2 / jbd2/sda2 422 root txt unknown /proc/422/exe ext4-rsv- 423 root cwd DIR 8,2 4096 2 / ext4-rsv- 423 root rtd DIR 8,2 4096 2 / ext4-rsv- 423 root txt unknown /proc/423/exe systemd-j 495 root cwd DIR 8,2 4096 2 / systemd-j 495 root rtd DIR 8,2 4096 2 / systemd-j 495 root txt REG 8,2 129096 668815 /lib/systemd/systemd-journald systemd-j 495 root mem REG 8,2 8388608 1070319 /var/log/journal/076ee0d2cc5741a98a2b4e4638a69bfe/user-1000.journal systemd-j 495 root mem REG 8,2 8388608 1070318 /var/log/journal/076ee0d2cc5741a98a2b4e4638a69bfe/system.journal systemd-j 495 root mem REG 8,2 1700792 656167 /lib/x86_64-linux-gnu/libm-2.27.so systemd-j 495 root mem REG 8,2 121016 655394 /lib/x86_64-linux-gnu/libudev.so.1.6.9 systemd-j 495 root mem REG 8,2 84032 656154 /lib/x86_64-linux-gnu/libgpg-error.so.0.22.0 systemd-j 495 root mem REG 8,2 43304 656160 /lib/x86_64-linux-gnu/libjson-c.so.3.0.1 systemd-j 495 root mem REG 8,2 34872 924307 /usr/lib/x86_64-linux-gnu/libargon2.so.0 systemd-j 495 root mem REG 8,2 432640 656144 /lib/x86_64-linux-gnu/libdevmapper.so.1.02.1 systemd-j 495 root mem REG 8,2 27112 656215 /lib/x86_64-linux-gnu/libuuid.so.1.3.0 systemd-j 495 root mem REG 8,2 18680 656129 /lib/x86_64-linux-gnu/libattr.so.1.1.0 systemd-j 495 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so systemd-j 495 root mem REG 8,2 464824 656191 /lib/x86_64-linux-gnu/libpcre.so.3.13.3 systemd-j 495 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so systemd-j 495 root mem REG 8,2 311720 656131 /lib/x86_64-linux-gnu/libblkid.so.1.1.0 systemd-j 495 root mem REG 8,2 112672 924379 /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1 systemd-j 495 root mem REG 8,2 153984 656165 /lib/x86_64-linux-gnu/liblzma.so.5.2.2 systemd-j 495 root mem REG 8,2 206872 656157 /lib/x86_64-linux-gnu/libidn.so.11.6.16 systemd-j 495 root mem REG 8,2 288976 656202 /lib/x86_64-linux-gnu/libseccomp.so.2.4.1 systemd-j 495 root mem REG 8,2 27088 924361 /usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0 systemd-j 495 root mem REG 8,2 1155768 656153 /lib/x86_64-linux-gnu/libgcrypt.so.20.2.1 systemd-j 495 root mem REG 8,2 310040 656140 /lib/x86_64-linux-gnu/libcryptsetup.so.12.2.0 systemd-j 495 root mem REG 8,2 31232 656125 /lib/x86_64-linux-gnu/libacl.so.1.1.0 systemd-j 495 root mem REG 8,2 22768 656136 /lib/x86_64-linux-gnu/libcap.so.2.25 systemd-j 495 root mem REG 8,2 31680 656201 /lib/x86_64-linux-gnu/librt-2.27.so systemd-j 495 root mem REG 8,2 154832 656203 /lib/x86_64-linux-gnu/libselinux.so.1 systemd-j 495 root mem REG 8,2 2363632 655401 /lib/systemd/libsystemd-shared-237.so systemd-j 495 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so systemd-j 495 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so systemd-j 495 root mem REG 0,23 8 340 /run/systemd/journal/kernel-seqnum systemd-j 495 root 0r CHR 1,3 0t0 6 /dev/null systemd-j 495 root 1w CHR 1,3 0t0 6 /dev/null systemd-j 495 root 2w CHR 1,3 0t0 6 /dev/null systemd-j 495 root 3u unix 0xffff98e4b9565c00 0t0 21016 /run/systemd/journal/dev-log type=DGRAM systemd-j 495 root 4u netlink 0t0 21021 AUDIT systemd-j 495 root 5u unix 0xffff98e47234ac00 0t0 20664 /run/systemd/journal/stdout type=STREAM systemd-j 495 root 6u unix 0xffff98e47234a000 0t0 20666 /run/systemd/journal/socket type=DGRAM systemd-j 495 root 7w CHR 1,11 0t0 12 /dev/kmsg systemd-j 495 root 8u a_inode 0,13 0 10717 [eventpoll] systemd-j 495 root 9u CHR 1,11 0t0 12 /dev/kmsg systemd-j 495 root 10r REG 0,4 0 21260 /proc/sys/kernel/hostname systemd-j 495 root 11u a_inode 0,13 0 10717 [signalfd] systemd-j 495 root 12u a_inode 0,13 0 10717 [signalfd] systemd-j 495 root 13u a_inode 0,13 0 10717 [signalfd] systemd-j 495 root 14u unix 0xffff98e4b1ea0400 0t0 21261 type=DGRAM systemd-j 495 root 15u a_inode 0,13 0 10717 [timerfd] systemd-j 495 root 16u unix 0xffff98e4b8d57800 0t0 26063 /run/systemd/journal/stdout type=STREAM systemd-j 495 root 17u REG 8,2 8388608 1070318 /var/log/journal/076ee0d2cc5741a98a2b4e4638a69bfe/system.journal systemd-j 495 root 18u unix 0xffff98e4aff63c00 0t0 25415 /run/systemd/journal/stdout type=STREAM systemd-j 495 root 19u unix 0xffff98e4b1dc3800 0t0 25402 /run/systemd/journal/stdout type=STREAM systemd-j 495 root 20u unix 0xffff98e4affb0c00 0t0 21581 /run/systemd/journal/stdout type=STREAM systemd-j 495 root 21u unix 0xffff98e4afa6b800 0t0 26728 /run/systemd/journal/stdout type=STREAM systemd-j 495 root 22u unix 0xffff98e4b460dc00 0t0 33603 /run/systemd/journal/stdout type=STREAM systemd-j 495 root 23u unix 0xffff98e4b5abbc00 0t0 21583 /run/systemd/journal/stdout type=STREAM systemd-j 495 root 24u unix 0xffff98e4b905b400 0t0 27669 /run/systemd/journal/stdout type=STREAM systemd-j 495 root 25u unix 0xffff98e4afa55800 0t0 26944 /run/systemd/journal/stdout type=STREAM systemd-j 495 root 26u unix 0xffff98e4b6063c00 0t0 29558 /run/systemd/journal/stdout type=STREAM systemd-j 495 root 27u REG 8,2 8388608 1070319 /var/log/journal/076ee0d2cc5741a98a2b4e4638a69bfe/user-1000.journal systemd-j 495 root 29u unix 0xffff98e4afd8cc00 0t0 27981 /run/systemd/journal/stdout type=STREAM systemd-j 495 root 30u unix 0xffff98e4b911a000 0t0 28133 /run/systemd/journal/stdout type=STREAM systemd-j 495 root 33u unix 0xffff98e4b1d8b800 0t0 30153 /run/systemd/journal/stdout type=STREAM systemd-j 495 root 34u unix 0xffff98e471d09c00 0t0 28695 /run/systemd/journal/stdout type=STREAM systemd-j 495 root 35u unix 0xffff98e4affb3c00 0t0 28696 /run/systemd/journal/stdout type=STREAM systemd-j 495 root 38u unix 0xffff98e4b637d000 0t0 29168 /run/systemd/journal/stdout type=STREAM systemd-j 495 root 39u unix 0xffff98e4b637d800 0t0 29169 /run/systemd/journal/stdout type=STREAM systemd-j 495 root 40u unix 0xffff98e4b5d82400 0t0 29685 /run/systemd/journal/stdout type=STREAM iscsi_eh 498 root cwd DIR 8,2 4096 2 / iscsi_eh 498 root rtd DIR 8,2 4096 2 / iscsi_eh 498 root txt unknown /proc/498/exe systemd-u 509 root cwd DIR 8,2 4096 2 / systemd-u 509 root rtd DIR 8,2 4096 2 / systemd-u 509 root txt REG 8,2 584136 668654 /lib/systemd/systemd-udevd systemd-u 509 root mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so systemd-u 509 root mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so systemd-u 509 root mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so systemd-u 509 root mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so systemd-u 509 root mem REG 8,2 1258796 655702 /lib/modules/4.15.0-65-generic/modules.alias.bin systemd-u 509 root mem REG 8,2 8962391 655396 /lib/udev/hwdb.bin systemd-u 509 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so systemd-u 509 root mem REG 8,2 464824 656191 /lib/x86_64-linux-gnu/libpcre.so.3.13.3 systemd-u 509 root mem REG 8,2 27112 656215 /lib/x86_64-linux-gnu/libuuid.so.1.3.0 systemd-u 509 root mem REG 8,2 18680 656129 /lib/x86_64-linux-gnu/libattr.so.1.1.0 systemd-u 509 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so systemd-u 509 root mem REG 8,2 154832 656203 /lib/x86_64-linux-gnu/libselinux.so.1 systemd-u 509 root mem REG 8,2 311720 656131 /lib/x86_64-linux-gnu/libblkid.so.1.1.0 systemd-u 509 root mem REG 8,2 31232 656125 /lib/x86_64-linux-gnu/libacl.so.1.1.0 systemd-u 509 root mem REG 8,2 92208 656162 /lib/x86_64-linux-gnu/libkmod.so.2.3.2 systemd-u 509 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so systemd-u 509 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so systemd-u 509 root mem REG 8,2 721695 662916 /lib/modules/4.15.0-65-generic/modules.symbols.bin systemd-u 509 root mem REG 8,2 782483 669924 /lib/modules/4.15.0-65-generic/modules.dep.bin systemd-u 509 root mem REG 8,2 9685 662917 /lib/modules/4.15.0-65-generic/modules.builtin.bin systemd-u 509 root 0r CHR 1,3 0t0 6 /dev/null systemd-u 509 root 1u unix 0xffff98e4affb4000 0t0 21388 type=STREAM systemd-u 509 root 2u unix 0xffff98e4affb4000 0t0 21388 type=STREAM systemd-u 509 root 3u unix 0xffff98e473ed4000 0t0 20812 /run/udev/control type=SEQPACKET systemd-u 509 root 4u netlink 0t0 20809 KOBJECT_UEVENT systemd-u 509 root 5u unix 0xffff98e4b96e1400 0t0 21588 type=DGRAM systemd-u 509 root 6r REG 8,2 8962391 655396 /lib/udev/hwdb.bin systemd-u 509 root 7u unix 0xffff98e4b9565400 0t0 21598 type=DGRAM systemd-u 509 root 8u unix 0xffff98e4b9560400 0t0 21599 type=DGRAM systemd-u 509 root 9r a_inode 0,13 0 10717 inotify systemd-u 509 root 10u a_inode 0,13 0 10717 [eventpoll] systemd-u 509 root 11u a_inode 0,13 0 10717 [signalfd] systemd-u 509 root 12u a_inode 0,13 0 10717 [timerfd] systemd-u 509 root 13u a_inode 0,13 0 10717 [timerfd] lvmetad 511 root cwd DIR 8,2 4096 2 / lvmetad 511 root rtd DIR 8,2 4096 2 / lvmetad 511 root txt REG 8,2 84104 263670 /sbin/lvmetad lvmetad 511 root mem REG 8,2 31680 656201 /lib/x86_64-linux-gnu/librt-2.27.so lvmetad 511 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so lvmetad 511 root mem REG 8,2 464824 656191 /lib/x86_64-linux-gnu/libpcre.so.3.13.3 lvmetad 511 root mem REG 8,2 1700792 656167 /lib/x86_64-linux-gnu/libm-2.27.so lvmetad 511 root mem REG 8,2 121016 655394 /lib/x86_64-linux-gnu/libudev.so.1.6.9 lvmetad 511 root mem REG 8,2 154832 656203 /lib/x86_64-linux-gnu/libselinux.so.1 lvmetad 511 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so lvmetad 511 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so lvmetad 511 root mem REG 8,2 432640 656144 /lib/x86_64-linux-gnu/libdevmapper.so.1.02.1 lvmetad 511 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so lvmetad 511 root 0r CHR 1,3 0t0 6 /dev/null lvmetad 511 root 1u unix 0xffff98e4b5abec00 0t0 21498 type=STREAM lvmetad 511 root 2u unix 0xffff98e4b5abec00 0t0 21498 type=STREAM lvmetad 511 root 3u unix 0xffff98e47234ec00 0t0 20662 /run/lvm/lvmetad.socket type=STREAM lvmetad 511 root 4wW REG 0,23 4 361 /run/lvmetad.pid ib-comp-w 512 root cwd DIR 8,2 4096 2 / ib-comp-w 512 root rtd DIR 8,2 4096 2 / ib-comp-w 512 root txt unknown /proc/512/exe ib_mcast 513 root cwd DIR 8,2 4096 2 / ib_mcast 513 root rtd DIR 8,2 4096 2 / ib_mcast 513 root txt unknown /proc/513/exe ib_nl_sa_ 514 root cwd DIR 8,2 4096 2 / ib_nl_sa_ 514 root rtd DIR 8,2 4096 2 / ib_nl_sa_ 514 root txt unknown /proc/514/exe rdma_cm 523 root cwd DIR 8,2 4096 2 / rdma_cm 523 root rtd DIR 8,2 4096 2 / rdma_cm 523 root txt unknown /proc/523/exe loop0 541 root cwd DIR 8,2 4096 2 / loop0 541 root rtd DIR 8,2 4096 2 / loop0 541 root txt unknown /proc/541/exe loop1 545 root cwd DIR 8,2 4096 2 / loop1 545 root rtd DIR 8,2 4096 2 / loop1 545 root txt unknown /proc/545/exe loop2 548 root cwd DIR 8,2 4096 2 / loop2 548 root rtd DIR 8,2 4096 2 / loop2 548 root txt unknown /proc/548/exe loop3 552 root cwd DIR 8,2 4096 2 / loop3 552 root rtd DIR 8,2 4096 2 / loop3 552 root txt unknown /proc/552/exe loop5 554 root cwd DIR 8,2 4096 2 / loop5 554 root rtd DIR 8,2 4096 2 / loop5 554 root txt unknown /proc/554/exe loop7 556 root cwd DIR 8,2 4096 2 / loop7 556 root rtd DIR 8,2 4096 2 / loop7 556 root txt unknown /proc/556/exe loop8 557 root cwd DIR 8,2 4096 2 / loop8 557 root rtd DIR 8,2 4096 2 / loop8 557 root txt unknown /proc/557/exe loop10 559 root cwd DIR 8,2 4096 2 / loop10 559 root rtd DIR 8,2 4096 2 / loop10 559 root txt unknown /proc/559/exe systemd-t 606 systemd-timesync cwd DIR 8,2 4096 2 / systemd-t 606 systemd-timesync rtd DIR 8,2 4096 2 / systemd-t 606 systemd-timesync txt REG 8,2 38976 668835 /lib/systemd/systemd-timesyncd systemd-t 606 systemd-timesync mem REG 8,2 101168 656200 /lib/x86_64-linux-gnu/libresolv-2.27.so systemd-t 606 systemd-timesync mem REG 8,2 26936 656178 /lib/x86_64-linux-gnu/libnss_dns-2.27.so systemd-t 606 systemd-timesync mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so systemd-t 606 systemd-timesync mem REG 8,2 121016 655394 /lib/x86_64-linux-gnu/libudev.so.1.6.9 systemd-t 606 systemd-timesync mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so systemd-t 606 systemd-timesync mem REG 8,2 464824 656191 /lib/x86_64-linux-gnu/libpcre.so.3.13.3 systemd-t 606 systemd-timesync mem REG 8,2 84032 656154 /lib/x86_64-linux-gnu/libgpg-error.so.0.22.0 systemd-t 606 systemd-timesync mem REG 8,2 43304 656160 /lib/x86_64-linux-gnu/libjson-c.so.3.0.1 systemd-t 606 systemd-timesync mem REG 8,2 34872 924307 /usr/lib/x86_64-linux-gnu/libargon2.so.0 systemd-t 606 systemd-timesync mem REG 8,2 432640 656144 /lib/x86_64-linux-gnu/libdevmapper.so.1.02.1 systemd-t 606 systemd-timesync mem REG 8,2 27112 656215 /lib/x86_64-linux-gnu/libuuid.so.1.3.0 systemd-t 606 systemd-timesync mem REG 8,2 18680 656129 /lib/x86_64-linux-gnu/libattr.so.1.1.0 systemd-t 606 systemd-timesync mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so systemd-t 606 systemd-timesync mem REG 8,2 311720 656131 /lib/x86_64-linux-gnu/libblkid.so.1.1.0 systemd-t 606 systemd-timesync mem REG 8,2 112672 924379 /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1 systemd-t 606 systemd-timesync mem REG 8,2 153984 656165 /lib/x86_64-linux-gnu/liblzma.so.5.2.2 systemd-t 606 systemd-timesync mem REG 8,2 206872 656157 /lib/x86_64-linux-gnu/libidn.so.11.6.16 systemd-t 606 systemd-timesync mem REG 8,2 154832 656203 /lib/x86_64-linux-gnu/libselinux.so.1 systemd-t 606 systemd-timesync mem REG 8,2 288976 656202 /lib/x86_64-linux-gnu/libseccomp.so.2.4.1 systemd-t 606 systemd-timesync mem REG 8,2 27088 924361 /usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0 systemd-t 606 systemd-timesync mem REG 8,2 1155768 656153 /lib/x86_64-linux-gnu/libgcrypt.so.20.2.1 systemd-t 606 systemd-timesync mem REG 8,2 310040 656140 /lib/x86_64-linux-gnu/libcryptsetup.so.12.2.0 systemd-t 606 systemd-timesync mem REG 8,2 31232 656125 /lib/x86_64-linux-gnu/libacl.so.1.1.0 systemd-t 606 systemd-timesync mem REG 8,2 22768 656136 /lib/x86_64-linux-gnu/libcap.so.2.25 systemd-t 606 systemd-timesync mem REG 8,2 31680 656201 /lib/x86_64-linux-gnu/librt-2.27.so systemd-t 606 systemd-timesync mem REG 8,2 1700792 656167 /lib/x86_64-linux-gnu/libm-2.27.so systemd-t 606 systemd-timesync mem REG 8,2 2363632 655401 /lib/systemd/libsystemd-shared-237.so systemd-t 606 systemd-timesync mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so systemd-t 606 systemd-timesync mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so systemd-t 606 systemd-timesync 0r CHR 1,3 0t0 6 /dev/null systemd-t 606 systemd-timesync 1u unix 0xffff98e4aff66400 0t0 25414 type=STREAM systemd-t 606 systemd-timesync 2u unix 0xffff98e4aff66400 0t0 25414 type=STREAM systemd-t 606 systemd-timesync 3u unix 0xffff98e4afa5e000 0t0 25426 type=DGRAM systemd-t 606 systemd-timesync 4u a_inode 0,13 0 10717 [eventpoll] systemd-t 606 systemd-timesync 5u a_inode 0,13 0 10717 [signalfd] systemd-t 606 systemd-timesync 6u a_inode 0,13 0 10717 [timerfd] systemd-t 606 systemd-timesync 7u unix 0xffff98e4afa57800 0t0 25429 type=DGRAM systemd-t 606 systemd-timesync 8u unix 0xffff98e4afa54400 0t0 25430 type=DGRAM systemd-t 606 systemd-timesync 9u unix 0xffff98e4afa52800 0t0 25431 type=DGRAM systemd-t 606 systemd-timesync 10u unix 0xffff98e4afa56800 0t0 25432 type=DGRAM systemd-t 606 systemd-timesync 11r a_inode 0,13 0 10717 inotify systemd-t 606 systemd-timesync 12u a_inode 0,13 0 10717 [timerfd] systemd-t 606 systemd-timesync 13u a_inode 0,13 0 10717 [timerfd] sd-resolv 606 617 systemd-timesync cwd DIR 8,2 4096 2 / sd-resolv 606 617 systemd-timesync rtd DIR 8,2 4096 2 / sd-resolv 606 617 systemd-timesync txt REG 8,2 38976 668835 /lib/systemd/systemd-timesyncd sd-resolv 606 617 systemd-timesync mem REG 8,2 101168 656200 /lib/x86_64-linux-gnu/libresolv-2.27.so sd-resolv 606 617 systemd-timesync mem REG 8,2 26936 656178 /lib/x86_64-linux-gnu/libnss_dns-2.27.so sd-resolv 606 617 systemd-timesync mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so sd-resolv 606 617 systemd-timesync mem REG 8,2 121016 655394 /lib/x86_64-linux-gnu/libudev.so.1.6.9 sd-resolv 606 617 systemd-timesync mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so sd-resolv 606 617 systemd-timesync mem REG 8,2 464824 656191 /lib/x86_64-linux-gnu/libpcre.so.3.13.3 sd-resolv 606 617 systemd-timesync mem REG 8,2 84032 656154 /lib/x86_64-linux-gnu/libgpg-error.so.0.22.0 sd-resolv 606 617 systemd-timesync mem REG 8,2 43304 656160 /lib/x86_64-linux-gnu/libjson-c.so.3.0.1 sd-resolv 606 617 systemd-timesync mem REG 8,2 34872 924307 /usr/lib/x86_64-linux-gnu/libargon2.so.0 sd-resolv 606 617 systemd-timesync mem REG 8,2 432640 656144 /lib/x86_64-linux-gnu/libdevmapper.so.1.02.1 sd-resolv 606 617 systemd-timesync mem REG 8,2 27112 656215 /lib/x86_64-linux-gnu/libuuid.so.1.3.0 sd-resolv 606 617 systemd-timesync mem REG 8,2 18680 656129 /lib/x86_64-linux-gnu/libattr.so.1.1.0 sd-resolv 606 617 systemd-timesync mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so sd-resolv 606 617 systemd-timesync mem REG 8,2 311720 656131 /lib/x86_64-linux-gnu/libblkid.so.1.1.0 sd-resolv 606 617 systemd-timesync mem REG 8,2 112672 924379 /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1 sd-resolv 606 617 systemd-timesync mem REG 8,2 153984 656165 /lib/x86_64-linux-gnu/liblzma.so.5.2.2 sd-resolv 606 617 systemd-timesync mem REG 8,2 206872 656157 /lib/x86_64-linux-gnu/libidn.so.11.6.16 sd-resolv 606 617 systemd-timesync mem REG 8,2 154832 656203 /lib/x86_64-linux-gnu/libselinux.so.1 sd-resolv 606 617 systemd-timesync mem REG 8,2 288976 656202 /lib/x86_64-linux-gnu/libseccomp.so.2.4.1 sd-resolv 606 617 systemd-timesync mem REG 8,2 27088 924361 /usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0 sd-resolv 606 617 systemd-timesync mem REG 8,2 1155768 656153 /lib/x86_64-linux-gnu/libgcrypt.so.20.2.1 sd-resolv 606 617 systemd-timesync mem REG 8,2 310040 656140 /lib/x86_64-linux-gnu/libcryptsetup.so.12.2.0 sd-resolv 606 617 systemd-timesync mem REG 8,2 31232 656125 /lib/x86_64-linux-gnu/libacl.so.1.1.0 sd-resolv 606 617 systemd-timesync mem REG 8,2 22768 656136 /lib/x86_64-linux-gnu/libcap.so.2.25 sd-resolv 606 617 systemd-timesync mem REG 8,2 31680 656201 /lib/x86_64-linux-gnu/librt-2.27.so sd-resolv 606 617 systemd-timesync mem REG 8,2 1700792 656167 /lib/x86_64-linux-gnu/libm-2.27.so sd-resolv 606 617 systemd-timesync mem REG 8,2 2363632 655401 /lib/systemd/libsystemd-shared-237.so sd-resolv 606 617 systemd-timesync mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so sd-resolv 606 617 systemd-timesync mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so sd-resolv 606 617 systemd-timesync 0r CHR 1,3 0t0 6 /dev/null sd-resolv 606 617 systemd-timesync 1u unix 0xffff98e4aff66400 0t0 25414 type=STREAM sd-resolv 606 617 systemd-timesync 2u unix 0xffff98e4aff66400 0t0 25414 type=STREAM sd-resolv 606 617 systemd-timesync 3u unix 0xffff98e4afa5e000 0t0 25426 type=DGRAM sd-resolv 606 617 systemd-timesync 4u a_inode 0,13 0 10717 [eventpoll] sd-resolv 606 617 systemd-timesync 5u a_inode 0,13 0 10717 [signalfd] sd-resolv 606 617 systemd-timesync 6u a_inode 0,13 0 10717 [timerfd] sd-resolv 606 617 systemd-timesync 7u unix 0xffff98e4afa57800 0t0 25429 type=DGRAM sd-resolv 606 617 systemd-timesync 8u unix 0xffff98e4afa54400 0t0 25430 type=DGRAM sd-resolv 606 617 systemd-timesync 9u unix 0xffff98e4afa52800 0t0 25431 type=DGRAM sd-resolv 606 617 systemd-timesync 10u unix 0xffff98e4afa56800 0t0 25432 type=DGRAM sd-resolv 606 617 systemd-timesync 11r a_inode 0,13 0 10717 inotify sd-resolv 606 617 systemd-timesync 12u a_inode 0,13 0 10717 [timerfd] sd-resolv 606 617 systemd-timesync 13u a_inode 0,13 0 10717 [timerfd] VGAuthSer 607 root cwd DIR 8,2 4096 2 / VGAuthSer 607 root rtd DIR 8,2 4096 2 / VGAuthSer 607 root txt REG 8,2 125144 917875 /usr/bin/VGAuthService VGAuthSer 607 root mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so VGAuthSer 607 root mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so VGAuthSer 607 root mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so VGAuthSer 607 root mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so VGAuthSer 607 root mem REG 8,2 96616 656152 /lib/x86_64-linux-gnu/libgcc_s.so.1 VGAuthSer 607 root mem REG 8,2 1594864 924414 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25 VGAuthSer 607 root mem REG 8,2 26904264 924354 /usr/lib/x86_64-linux-gnu/libicudata.so.60.2 VGAuthSer 607 root mem REG 8,2 1700792 656167 /lib/x86_64-linux-gnu/libm-2.27.so VGAuthSer 607 root mem REG 8,2 153984 656165 /lib/x86_64-linux-gnu/liblzma.so.5.2.2 VGAuthSer 607 root mem REG 8,2 116960 656216 /lib/x86_64-linux-gnu/libz.so.1.2.11 VGAuthSer 607 root mem REG 8,2 1792008 924359 /usr/lib/x86_64-linux-gnu/libicuuc.so.60.2 VGAuthSer 607 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so VGAuthSer 607 root DEL REG 8,2 924429 /usr/lib/x86_64-linux-gnu/libxslt.so.1.1.29 VGAuthSer 607 root mem REG 8,2 464824 656191 /lib/x86_64-linux-gnu/libpcre.so.3.13.3 VGAuthSer 607 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so VGAuthSer 607 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so VGAuthSer 607 root mem REG 8,2 2917216 924314 /usr/lib/x86_64-linux-gnu/libcrypto.so.1.1 VGAuthSer 607 root mem REG 8,2 577312 924413 /usr/lib/x86_64-linux-gnu/libssl.so.1.1 VGAuthSer 607 root mem REG 8,2 1834232 924426 /usr/lib/x86_64-linux-gnu/libxml2.so.2.9.4 VGAuthSer 607 root mem REG 8,2 408688 924428 /usr/lib/x86_64-linux-gnu/libxmlsec1.so.1.2.25 VGAuthSer 607 root mem REG 8,2 270800 924427 /usr/lib/x86_64-linux-gnu/libxmlsec1-openssl.so.1.2.25 VGAuthSer 607 root mem REG 8,2 1137968 924340 /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4 VGAuthSer 607 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so VGAuthSer 607 root mem REG 8,2 26376 1049137 /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache VGAuthSer 607 root 0r CHR 1,3 0t0 6 /dev/null VGAuthSer 607 root 1u unix 0xffff98e4b1dc2800 0t0 25401 type=STREAM VGAuthSer 607 root 2u unix 0xffff98e4b1dc2800 0t0 25401 type=STREAM VGAuthSer 607 root 3u unix 0xffff98e4afa6a400 0t0 25533 type=DGRAM VGAuthSer 607 root 4r FIFO 0,12 0t0 25543 pipe VGAuthSer 607 root 5w FIFO 0,12 0t0 25543 pipe VGAuthSer 607 root 6u a_inode 0,13 0 10717 [eventfd] VGAuthSer 607 root 7r CHR 1,9 0t0 11 /dev/urandom VGAuthSer 607 root 8r CHR 1,8 0t0 10 /dev/random VGAuthSer 607 root 9u unix 0xffff98e4afa69400 0t0 25548 /var/run/vmware/guestServicePipe type=STREAM kworker/u 671 root cwd DIR 8,2 4096 2 / kworker/u 671 root rtd DIR 8,2 4096 2 / kworker/u 671 root txt unknown /proc/671/exe vmtoolsd 680 root cwd DIR 8,2 4096 2 / vmtoolsd 680 root rtd DIR 8,2 4096 2 / vmtoolsd 680 root txt REG 8,2 51456 918412 /usr/bin/vmtoolsd vmtoolsd 680 root mem REG 8,2 35544 918745 /usr/lib/open-vm-tools/plugins/vmsvc/libvmbackup.so vmtoolsd 680 root mem REG 8,2 18696 918744 /usr/lib/open-vm-tools/plugins/vmsvc/libtimeSync.so vmtoolsd 680 root mem REG 8,2 14712 918742 /usr/lib/open-vm-tools/plugins/vmsvc/libpowerOps.so vmtoolsd 680 root mem REG 8,2 36616 918741 /usr/lib/open-vm-tools/plugins/vmsvc/libguestInfo.so vmtoolsd 680 root mem REG 8,2 23080 918740 /usr/lib/open-vm-tools/plugins/vmsvc/libgrabbitmqProxy.so vmtoolsd 680 root mem REG 8,2 75776 924385 /usr/lib/x86_64-linux-gnu/libmspack.so.0.1.0 vmtoolsd 680 root mem REG 8,2 31296 918471 /usr/lib/libDeployPkg.so.0.0.0 vmtoolsd 680 root mem REG 8,2 14696 918739 /usr/lib/open-vm-tools/plugins/vmsvc/libdeployPkgPlugin.so vmtoolsd 680 root mem REG 8,2 85144 918476 /usr/lib/libvgauth.so.0.0.0 vmtoolsd 680 root mem REG 8,2 126520 918736 /usr/lib/open-vm-tools/plugins/common/libvix.so vmtoolsd 680 root mem REG 8,2 163152 918475 /usr/lib/libhgfs.so.0.0.0 vmtoolsd 680 root mem REG 8,2 10440 918735 /usr/lib/open-vm-tools/plugins/common/libhgfsServer.so vmtoolsd 680 root mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so vmtoolsd 680 root mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so vmtoolsd 680 root mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so vmtoolsd 680 root mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so vmtoolsd 680 root mem REG 8,2 26904264 924354 /usr/lib/x86_64-linux-gnu/libicudata.so.60.2 vmtoolsd 680 root mem REG 8,2 1700792 656167 /lib/x86_64-linux-gnu/libm-2.27.so vmtoolsd 680 root mem REG 8,2 1594864 924414 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25 vmtoolsd 680 root mem REG 8,2 464824 656191 /lib/x86_64-linux-gnu/libpcre.so.3.13.3 vmtoolsd 680 root mem REG 8,2 31032 924332 /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4 vmtoolsd 680 root mem REG 8,2 96616 656152 /lib/x86_64-linux-gnu/libgcc_s.so.1 vmtoolsd 680 root mem REG 8,2 2917216 924314 /usr/lib/x86_64-linux-gnu/libcrypto.so.1.1 vmtoolsd 680 root mem REG 8,2 577312 924413 /usr/lib/x86_64-linux-gnu/libssl.so.1.1 vmtoolsd 680 root mem REG 8,2 1792008 924359 /usr/lib/x86_64-linux-gnu/libicuuc.so.60.2 vmtoolsd 680 root mem REG 8,2 2754872 924355 /usr/lib/x86_64-linux-gnu/libicui18n.so.60.2 vmtoolsd 680 root mem REG 8,2 31680 656201 /lib/x86_64-linux-gnu/librt-2.27.so vmtoolsd 680 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so vmtoolsd 680 root mem REG 8,2 60936 924323 /usr/lib/x86_64-linux-gnu/libdumbnet.so.1.0.1 vmtoolsd 680 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so vmtoolsd 680 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so vmtoolsd 680 root mem REG 8,2 1137968 924340 /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4 vmtoolsd 680 root mem REG 8,2 342072 924344 /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4 vmtoolsd 680 root mem REG 8,2 14232 924341 /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4 vmtoolsd 680 root mem REG 8,2 623592 918477 /usr/lib/libvmtools.so.0.0.0 vmtoolsd 680 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so vmtoolsd 680 root mem REG 8,2 1683056 933058 /usr/lib/locale/locale-archive vmtoolsd 680 root 0r CHR 1,3 0t0 6 /dev/null vmtoolsd 680 root 1u unix 0xffff98e4b8d51000 0t0 26000 type=STREAM vmtoolsd 680 root 2u unix 0xffff98e4b8d51000 0t0 26000 type=STREAM vmtoolsd 680 root 3w REG 8,2 33789 1058855 /var/log/vmware-vmsvc.log vmtoolsd 680 root 4u a_inode 0,13 0 10717 [eventfd] vmtoolsd 680 root 5r FIFO 0,12 0t0 26072 pipe vmtoolsd 680 root 6w FIFO 0,12 0t0 26072 pipe vmtoolsd 680 root 7u a_inode 0,13 0 10717 [eventfd] vmtoolsd 680 root 8u sock 0,9 0t0 26217 protocol: AF_VSOCK vmtoolsd 680 root 9r CHR 1,9 0t0 11 /dev/urandom vmtoolsd 680 root 10r CHR 1,8 0t0 10 /dev/random gmain 680 733 root cwd DIR 8,2 4096 2 / gmain 680 733 root rtd DIR 8,2 4096 2 / gmain 680 733 root txt REG 8,2 51456 918412 /usr/bin/vmtoolsd gmain 680 733 root mem REG 8,2 35544 918745 /usr/lib/open-vm-tools/plugins/vmsvc/libvmbackup.so gmain 680 733 root mem REG 8,2 18696 918744 /usr/lib/open-vm-tools/plugins/vmsvc/libtimeSync.so gmain 680 733 root mem REG 8,2 14712 918742 /usr/lib/open-vm-tools/plugins/vmsvc/libpowerOps.so gmain 680 733 root mem REG 8,2 36616 918741 /usr/lib/open-vm-tools/plugins/vmsvc/libguestInfo.so gmain 680 733 root mem REG 8,2 23080 918740 /usr/lib/open-vm-tools/plugins/vmsvc/libgrabbitmqProxy.so gmain 680 733 root mem REG 8,2 75776 924385 /usr/lib/x86_64-linux-gnu/libmspack.so.0.1.0 gmain 680 733 root mem REG 8,2 31296 918471 /usr/lib/libDeployPkg.so.0.0.0 gmain 680 733 root mem REG 8,2 14696 918739 /usr/lib/open-vm-tools/plugins/vmsvc/libdeployPkgPlugin.so gmain 680 733 root mem REG 8,2 85144 918476 /usr/lib/libvgauth.so.0.0.0 gmain 680 733 root mem REG 8,2 126520 918736 /usr/lib/open-vm-tools/plugins/common/libvix.so gmain 680 733 root mem REG 8,2 163152 918475 /usr/lib/libhgfs.so.0.0.0 gmain 680 733 root mem REG 8,2 10440 918735 /usr/lib/open-vm-tools/plugins/common/libhgfsServer.so gmain 680 733 root mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so gmain 680 733 root mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so gmain 680 733 root mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so gmain 680 733 root mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so gmain 680 733 root mem REG 8,2 26904264 924354 /usr/lib/x86_64-linux-gnu/libicudata.so.60.2 gmain 680 733 root mem REG 8,2 1700792 656167 /lib/x86_64-linux-gnu/libm-2.27.so gmain 680 733 root mem REG 8,2 1594864 924414 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25 gmain 680 733 root mem REG 8,2 464824 656191 /lib/x86_64-linux-gnu/libpcre.so.3.13.3 gmain 680 733 root mem REG 8,2 31032 924332 /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4 gmain 680 733 root mem REG 8,2 96616 656152 /lib/x86_64-linux-gnu/libgcc_s.so.1 gmain 680 733 root mem REG 8,2 2917216 924314 /usr/lib/x86_64-linux-gnu/libcrypto.so.1.1 gmain 680 733 root mem REG 8,2 577312 924413 /usr/lib/x86_64-linux-gnu/libssl.so.1.1 gmain 680 733 root mem REG 8,2 1792008 924359 /usr/lib/x86_64-linux-gnu/libicuuc.so.60.2 gmain 680 733 root mem REG 8,2 2754872 924355 /usr/lib/x86_64-linux-gnu/libicui18n.so.60.2 gmain 680 733 root mem REG 8,2 31680 656201 /lib/x86_64-linux-gnu/librt-2.27.so gmain 680 733 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so gmain 680 733 root mem REG 8,2 60936 924323 /usr/lib/x86_64-linux-gnu/libdumbnet.so.1.0.1 gmain 680 733 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so gmain 680 733 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so gmain 680 733 root mem REG 8,2 1137968 924340 /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4 gmain 680 733 root mem REG 8,2 342072 924344 /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4 gmain 680 733 root mem REG 8,2 14232 924341 /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4 gmain 680 733 root mem REG 8,2 623592 918477 /usr/lib/libvmtools.so.0.0.0 gmain 680 733 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so gmain 680 733 root mem REG 8,2 1683056 933058 /usr/lib/locale/locale-archive gmain 680 733 root 0r CHR 1,3 0t0 6 /dev/null gmain 680 733 root 1u unix 0xffff98e4b8d51000 0t0 26000 type=STREAM gmain 680 733 root 2u unix 0xffff98e4b8d51000 0t0 26000 type=STREAM gmain 680 733 root 3w REG 8,2 33789 1058855 /var/log/vmware-vmsvc.log gmain 680 733 root 4u a_inode 0,13 0 10717 [eventfd] gmain 680 733 root 5r FIFO 0,12 0t0 26072 pipe gmain 680 733 root 6w FIFO 0,12 0t0 26072 pipe gmain 680 733 root 7u a_inode 0,13 0 10717 [eventfd] gmain 680 733 root 8u sock 0,9 0t0 26217 protocol: AF_VSOCK gmain 680 733 root 9r CHR 1,9 0t0 11 /dev/urandom gmain 680 733 root 10r CHR 1,8 0t0 10 /dev/random systemd-n 867 systemd-network cwd DIR 8,2 4096 2 / systemd-n 867 systemd-network rtd DIR 8,2 4096 2 / systemd-n 867 systemd-network txt REG 8,2 1625168 668820 /lib/systemd/systemd-networkd systemd-n 867 systemd-network mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so systemd-n 867 systemd-network mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so systemd-n 867 systemd-network mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so systemd-n 867 systemd-network mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so systemd-n 867 systemd-network mem REG 8,2 1700792 656167 /lib/x86_64-linux-gnu/libm-2.27.so systemd-n 867 systemd-network mem REG 8,2 121016 655394 /lib/x86_64-linux-gnu/libudev.so.1.6.9 systemd-n 867 systemd-network mem REG 8,2 84032 656154 /lib/x86_64-linux-gnu/libgpg-error.so.0.22.0 systemd-n 867 systemd-network mem REG 8,2 43304 656160 /lib/x86_64-linux-gnu/libjson-c.so.3.0.1 systemd-n 867 systemd-network mem REG 8,2 34872 924307 /usr/lib/x86_64-linux-gnu/libargon2.so.0 systemd-n 867 systemd-network mem REG 8,2 432640 656144 /lib/x86_64-linux-gnu/libdevmapper.so.1.02.1 systemd-n 867 systemd-network mem REG 8,2 27112 656215 /lib/x86_64-linux-gnu/libuuid.so.1.3.0 systemd-n 867 systemd-network mem REG 8,2 18680 656129 /lib/x86_64-linux-gnu/libattr.so.1.1.0 systemd-n 867 systemd-network mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so systemd-n 867 systemd-network mem REG 8,2 464824 656191 /lib/x86_64-linux-gnu/libpcre.so.3.13.3 systemd-n 867 systemd-network mem REG 8,2 311720 656131 /lib/x86_64-linux-gnu/libblkid.so.1.1.0 systemd-n 867 systemd-network mem REG 8,2 112672 924379 /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1 systemd-n 867 systemd-network mem REG 8,2 153984 656165 /lib/x86_64-linux-gnu/liblzma.so.5.2.2 systemd-n 867 systemd-network mem REG 8,2 288976 656202 /lib/x86_64-linux-gnu/libseccomp.so.2.4.1 systemd-n 867 systemd-network mem REG 8,2 1155768 656153 /lib/x86_64-linux-gnu/libgcrypt.so.20.2.1 systemd-n 867 systemd-network mem REG 8,2 310040 656140 /lib/x86_64-linux-gnu/libcryptsetup.so.12.2.0 systemd-n 867 systemd-network mem REG 8,2 31232 656125 /lib/x86_64-linux-gnu/libacl.so.1.1.0 systemd-n 867 systemd-network mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so systemd-n 867 systemd-network mem REG 8,2 206872 656157 /lib/x86_64-linux-gnu/libidn.so.11.6.16 systemd-n 867 systemd-network mem REG 8,2 154832 656203 /lib/x86_64-linux-gnu/libselinux.so.1 systemd-n 867 systemd-network mem REG 8,2 27088 924361 /usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0 systemd-n 867 systemd-network mem REG 8,2 22768 656136 /lib/x86_64-linux-gnu/libcap.so.2.25 systemd-n 867 systemd-network mem REG 8,2 31680 656201 /lib/x86_64-linux-gnu/librt-2.27.so systemd-n 867 systemd-network mem REG 8,2 2363632 655401 /lib/systemd/libsystemd-shared-237.so systemd-n 867 systemd-network mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so systemd-n 867 systemd-network mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so systemd-n 867 systemd-network 0r CHR 1,3 0t0 6 /dev/null systemd-n 867 systemd-network 1u unix 0xffff98e4afa6f000 0t0 26727 type=STREAM systemd-n 867 systemd-network 2u unix 0xffff98e4afa6f000 0t0 26727 type=STREAM systemd-n 867 systemd-network 3u netlink 0t0 20810 ROUTE systemd-n 867 systemd-network 4u unix 0xffff98e4afd88c00 0t0 26760 type=DGRAM systemd-n 867 systemd-network 5u a_inode 0,13 0 10717 [eventpoll] systemd-n 867 systemd-network 6u a_inode 0,13 0 10717 [timerfd] systemd-n 867 systemd-network 7u a_inode 0,13 0 10717 [signalfd] systemd-n 867 systemd-network 8u a_inode 0,13 0 10717 [timerfd] systemd-n 867 systemd-network 9u netlink 0t0 26768 GENERIC systemd-n 867 systemd-network 10u netlink 0t0 26769 KOBJECT_UEVENT systemd-n 867 systemd-network 11u unix 0xffff98e4afd89000 0t0 26770 type=DGRAM systemd-n 867 systemd-network 12u unix 0xffff98e4afd89c00 0t0 26771 type=DGRAM systemd-n 867 systemd-network 13u unix 0xffff98e4afd8c000 0t0 26772 type=DGRAM systemd-n 867 systemd-network 14u unix 0xffff98e4afd8b400 0t0 26773 type=DGRAM systemd-n 867 systemd-network 15u IPv4 336698 0t0 UDP kbrazil-ubuntu:bootpc systemd-n 867 systemd-network 16u pack 26967 0t0 35020 type=SOCK_RAW systemd-n 867 systemd-network 17u raw6 0t0 271764 00000000000000000000000000000000:003A->00000000000000000000000000000000:0000 st=07 systemd-n 867 systemd-network 18u a_inode 0,13 0 10717 [timerfd] systemd-n 867 systemd-network 20u unix 0xffff98e4b1d02c00 0t0 27494 type=STREAM systemd-r 885 systemd-resolve cwd DIR 8,2 4096 2 / systemd-r 885 systemd-resolve rtd DIR 8,2 4096 2 / systemd-r 885 systemd-resolve txt REG 8,2 378944 668826 /lib/systemd/systemd-resolved systemd-r 885 systemd-resolve mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so systemd-r 885 systemd-resolve mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so systemd-r 885 systemd-resolve mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so systemd-r 885 systemd-resolve mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so systemd-r 885 systemd-resolve mem REG 8,2 121016 655394 /lib/x86_64-linux-gnu/libudev.so.1.6.9 systemd-r 885 systemd-resolve mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so systemd-r 885 systemd-resolve mem REG 8,2 464824 656191 /lib/x86_64-linux-gnu/libpcre.so.3.13.3 systemd-r 885 systemd-resolve mem REG 8,2 43304 656160 /lib/x86_64-linux-gnu/libjson-c.so.3.0.1 systemd-r 885 systemd-resolve mem REG 8,2 34872 924307 /usr/lib/x86_64-linux-gnu/libargon2.so.0 systemd-r 885 systemd-resolve mem REG 8,2 432640 656144 /lib/x86_64-linux-gnu/libdevmapper.so.1.02.1 systemd-r 885 systemd-resolve mem REG 8,2 27112 656215 /lib/x86_64-linux-gnu/libuuid.so.1.3.0 systemd-r 885 systemd-resolve mem REG 8,2 18680 656129 /lib/x86_64-linux-gnu/libattr.so.1.1.0 systemd-r 885 systemd-resolve mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so systemd-r 885 systemd-resolve mem REG 8,2 311720 656131 /lib/x86_64-linux-gnu/libblkid.so.1.1.0 systemd-r 885 systemd-resolve mem REG 8,2 112672 924379 /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1 systemd-r 885 systemd-resolve mem REG 8,2 153984 656165 /lib/x86_64-linux-gnu/liblzma.so.5.2.2 systemd-r 885 systemd-resolve mem REG 8,2 206872 656157 /lib/x86_64-linux-gnu/libidn.so.11.6.16 systemd-r 885 systemd-resolve mem REG 8,2 154832 656203 /lib/x86_64-linux-gnu/libselinux.so.1 systemd-r 885 systemd-resolve mem REG 8,2 288976 656202 /lib/x86_64-linux-gnu/libseccomp.so.2.4.1 systemd-r 885 systemd-resolve mem REG 8,2 27088 924361 /usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0 systemd-r 885 systemd-resolve mem REG 8,2 310040 656140 /lib/x86_64-linux-gnu/libcryptsetup.so.12.2.0 systemd-r 885 systemd-resolve mem REG 8,2 31232 656125 /lib/x86_64-linux-gnu/libacl.so.1.1.0 systemd-r 885 systemd-resolve mem REG 8,2 22768 656136 /lib/x86_64-linux-gnu/libcap.so.2.25 systemd-r 885 systemd-resolve mem REG 8,2 31680 656201 /lib/x86_64-linux-gnu/librt-2.27.so systemd-r 885 systemd-resolve mem REG 8,2 1155768 656153 /lib/x86_64-linux-gnu/libgcrypt.so.20.2.1 systemd-r 885 systemd-resolve mem REG 8,2 1700792 656167 /lib/x86_64-linux-gnu/libm-2.27.so systemd-r 885 systemd-resolve mem REG 8,2 84032 656154 /lib/x86_64-linux-gnu/libgpg-error.so.0.22.0 systemd-r 885 systemd-resolve mem REG 8,2 2363632 655401 /lib/systemd/libsystemd-shared-237.so systemd-r 885 systemd-resolve mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so systemd-r 885 systemd-resolve mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so systemd-r 885 systemd-resolve 0r CHR 1,3 0t0 6 /dev/null systemd-r 885 systemd-resolve 1u unix 0xffff98e4afa55400 0t0 26941 type=STREAM systemd-r 885 systemd-resolve 2u unix 0xffff98e4afa55400 0t0 26941 type=STREAM systemd-r 885 systemd-resolve 3u unix 0xffff98e4b1dc1800 0t0 26986 type=DGRAM systemd-r 885 systemd-resolve 4u a_inode 0,13 0 10717 [eventpoll] systemd-r 885 systemd-resolve 5u a_inode 0,13 0 10717 [signalfd] systemd-r 885 systemd-resolve 6u a_inode 0,13 0 10717 [timerfd] systemd-r 885 systemd-resolve 7r REG 0,4 0 21260 /proc/sys/kernel/hostname systemd-r 885 systemd-resolve 8r a_inode 0,13 0 10717 inotify systemd-r 885 systemd-resolve 9u netlink 0t0 27002 ROUTE systemd-r 885 systemd-resolve 10u a_inode 0,13 0 10717 [timerfd] systemd-r 885 systemd-resolve 11u a_inode 0,13 0 10717 [timerfd] systemd-r 885 systemd-resolve 12u IPv4 27005 0t0 UDP localhost:domain systemd-r 885 systemd-resolve 13u IPv4 27006 0t0 TCP localhost:domain (LISTEN) systemd-r 885 systemd-resolve 14u unix 0xffff98e4b1dc4000 0t0 27493 type=STREAM rsyslogd 955 syslog cwd DIR 8,2 4096 2 / rsyslogd 955 syslog rtd DIR 8,2 4096 2 / rsyslogd 955 syslog txt REG 8,2 680488 924792 /usr/sbin/rsyslogd rsyslogd 955 syslog mem REG 8,2 258040 655397 /lib/x86_64-linux-gnu/libnss_systemd.so.2 rsyslogd 955 syslog mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so rsyslogd 955 syslog mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so rsyslogd 955 syslog mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so rsyslogd 955 syslog mem REG 8,2 19448 1050299 /usr/lib/x86_64-linux-gnu/rsyslog/imklog.so rsyslogd 955 syslog mem REG 8,2 36744 1050306 /usr/lib/x86_64-linux-gnu/rsyslog/imuxsock.so rsyslogd 955 syslog mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so rsyslogd 955 syslog mem REG 8,2 27192 1050307 /usr/lib/x86_64-linux-gnu/rsyslog/lmnet.so rsyslogd 955 syslog mem REG 8,2 84032 656154 /lib/x86_64-linux-gnu/libgpg-error.so.0.22.0 rsyslogd 955 syslog mem REG 8,2 1155768 656153 /lib/x86_64-linux-gnu/libgcrypt.so.20.2.1 rsyslogd 955 syslog mem REG 8,2 112672 924379 /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1 rsyslogd 955 syslog mem REG 8,2 153984 656165 /lib/x86_64-linux-gnu/liblzma.so.5.2.2 rsyslogd 955 syslog mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so rsyslogd 955 syslog mem REG 8,2 27112 656215 /lib/x86_64-linux-gnu/libuuid.so.1.3.0 rsyslogd 955 syslog mem REG 8,2 536648 662910 /lib/x86_64-linux-gnu/libsystemd.so.0.21.0 rsyslogd 955 syslog mem REG 8,2 43720 924331 /usr/lib/x86_64-linux-gnu/libfastjson.so.4.2.0 rsyslogd 955 syslog mem REG 8,2 14344 924327 /usr/lib/x86_64-linux-gnu/libestr.so.0.0.0 rsyslogd 955 syslog mem REG 8,2 31680 656201 /lib/x86_64-linux-gnu/librt-2.27.so rsyslogd 955 syslog mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so rsyslogd 955 syslog mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so rsyslogd 955 syslog mem REG 8,2 116960 656216 /lib/x86_64-linux-gnu/libz.so.1.2.11 rsyslogd 955 syslog mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so rsyslogd 955 syslog 0r CHR 1,3 0t0 6 /dev/null rsyslogd 955 syslog 1w CHR 1,3 0t0 6 /dev/null rsyslogd 955 syslog 2w CHR 1,3 0t0 6 /dev/null rsyslogd 955 syslog 3u unix 0xffff98e47234c800 0t0 20660 /run/systemd/journal/syslog type=DGRAM rsyslogd 955 syslog 4r CHR 1,9 0t0 11 /dev/urandom rsyslogd 955 syslog 5r REG 0,4 0 4026532032 /proc/kmsg rsyslogd 955 syslog 6u unix 0xffff98e4b96e6000 0t0 28224 type=DGRAM rsyslogd 955 syslog 7w REG 8,2 28996 1053407 /var/log/auth.log rsyslogd 955 syslog 8w REG 8,2 8045 1051996 /var/log/syslog in:imuxso 955 965 syslog cwd DIR 8,2 4096 2 / in:imuxso 955 965 syslog rtd DIR 8,2 4096 2 / in:imuxso 955 965 syslog txt REG 8,2 680488 924792 /usr/sbin/rsyslogd in:imuxso 955 965 syslog mem REG 8,2 258040 655397 /lib/x86_64-linux-gnu/libnss_systemd.so.2 in:imuxso 955 965 syslog mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so in:imuxso 955 965 syslog mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so in:imuxso 955 965 syslog mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so in:imuxso 955 965 syslog mem REG 8,2 19448 1050299 /usr/lib/x86_64-linux-gnu/rsyslog/imklog.so in:imuxso 955 965 syslog mem REG 8,2 36744 1050306 /usr/lib/x86_64-linux-gnu/rsyslog/imuxsock.so in:imuxso 955 965 syslog mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so in:imuxso 955 965 syslog mem REG 8,2 27192 1050307 /usr/lib/x86_64-linux-gnu/rsyslog/lmnet.so in:imuxso 955 965 syslog mem REG 8,2 84032 656154 /lib/x86_64-linux-gnu/libgpg-error.so.0.22.0 in:imuxso 955 965 syslog mem REG 8,2 1155768 656153 /lib/x86_64-linux-gnu/libgcrypt.so.20.2.1 in:imuxso 955 965 syslog mem REG 8,2 112672 924379 /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1 in:imuxso 955 965 syslog mem REG 8,2 153984 656165 /lib/x86_64-linux-gnu/liblzma.so.5.2.2 in:imuxso 955 965 syslog mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so in:imuxso 955 965 syslog mem REG 8,2 27112 656215 /lib/x86_64-linux-gnu/libuuid.so.1.3.0 in:imuxso 955 965 syslog mem REG 8,2 536648 662910 /lib/x86_64-linux-gnu/libsystemd.so.0.21.0 in:imuxso 955 965 syslog mem REG 8,2 43720 924331 /usr/lib/x86_64-linux-gnu/libfastjson.so.4.2.0 in:imuxso 955 965 syslog mem REG 8,2 14344 924327 /usr/lib/x86_64-linux-gnu/libestr.so.0.0.0 in:imuxso 955 965 syslog mem REG 8,2 31680 656201 /lib/x86_64-linux-gnu/librt-2.27.so in:imuxso 955 965 syslog mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so in:imuxso 955 965 syslog mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so in:imuxso 955 965 syslog mem REG 8,2 116960 656216 /lib/x86_64-linux-gnu/libz.so.1.2.11 in:imuxso 955 965 syslog mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so in:imuxso 955 965 syslog 0r CHR 1,3 0t0 6 /dev/null in:imuxso 955 965 syslog 1w CHR 1,3 0t0 6 /dev/null in:imuxso 955 965 syslog 2w CHR 1,3 0t0 6 /dev/null in:imuxso 955 965 syslog 3u unix 0xffff98e47234c800 0t0 20660 /run/systemd/journal/syslog type=DGRAM in:imuxso 955 965 syslog 4r CHR 1,9 0t0 11 /dev/urandom in:imuxso 955 965 syslog 5r REG 0,4 0 4026532032 /proc/kmsg in:imuxso 955 965 syslog 6u unix 0xffff98e4b96e6000 0t0 28224 type=DGRAM in:imuxso 955 965 syslog 7w REG 8,2 28996 1053407 /var/log/auth.log in:imuxso 955 965 syslog 8w REG 8,2 8045 1051996 /var/log/syslog in:imklog 955 966 syslog cwd DIR 8,2 4096 2 / in:imklog 955 966 syslog rtd DIR 8,2 4096 2 / in:imklog 955 966 syslog txt REG 8,2 680488 924792 /usr/sbin/rsyslogd in:imklog 955 966 syslog mem REG 8,2 258040 655397 /lib/x86_64-linux-gnu/libnss_systemd.so.2 in:imklog 955 966 syslog mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so in:imklog 955 966 syslog mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so in:imklog 955 966 syslog mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so in:imklog 955 966 syslog mem REG 8,2 19448 1050299 /usr/lib/x86_64-linux-gnu/rsyslog/imklog.so in:imklog 955 966 syslog mem REG 8,2 36744 1050306 /usr/lib/x86_64-linux-gnu/rsyslog/imuxsock.so in:imklog 955 966 syslog mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so in:imklog 955 966 syslog mem REG 8,2 27192 1050307 /usr/lib/x86_64-linux-gnu/rsyslog/lmnet.so in:imklog 955 966 syslog mem REG 8,2 84032 656154 /lib/x86_64-linux-gnu/libgpg-error.so.0.22.0 in:imklog 955 966 syslog mem REG 8,2 1155768 656153 /lib/x86_64-linux-gnu/libgcrypt.so.20.2.1 in:imklog 955 966 syslog mem REG 8,2 112672 924379 /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1 in:imklog 955 966 syslog mem REG 8,2 153984 656165 /lib/x86_64-linux-gnu/liblzma.so.5.2.2 in:imklog 955 966 syslog mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so in:imklog 955 966 syslog mem REG 8,2 27112 656215 /lib/x86_64-linux-gnu/libuuid.so.1.3.0 in:imklog 955 966 syslog mem REG 8,2 536648 662910 /lib/x86_64-linux-gnu/libsystemd.so.0.21.0 in:imklog 955 966 syslog mem REG 8,2 43720 924331 /usr/lib/x86_64-linux-gnu/libfastjson.so.4.2.0 in:imklog 955 966 syslog mem REG 8,2 14344 924327 /usr/lib/x86_64-linux-gnu/libestr.so.0.0.0 in:imklog 955 966 syslog mem REG 8,2 31680 656201 /lib/x86_64-linux-gnu/librt-2.27.so in:imklog 955 966 syslog mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so in:imklog 955 966 syslog mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so in:imklog 955 966 syslog mem REG 8,2 116960 656216 /lib/x86_64-linux-gnu/libz.so.1.2.11 in:imklog 955 966 syslog mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so in:imklog 955 966 syslog 0r CHR 1,3 0t0 6 /dev/null in:imklog 955 966 syslog 1w CHR 1,3 0t0 6 /dev/null in:imklog 955 966 syslog 2w CHR 1,3 0t0 6 /dev/null in:imklog 955 966 syslog 3u unix 0xffff98e47234c800 0t0 20660 /run/systemd/journal/syslog type=DGRAM in:imklog 955 966 syslog 4r CHR 1,9 0t0 11 /dev/urandom in:imklog 955 966 syslog 5r REG 0,4 0 4026532032 /proc/kmsg in:imklog 955 966 syslog 6u unix 0xffff98e4b96e6000 0t0 28224 type=DGRAM in:imklog 955 966 syslog 7w REG 8,2 28996 1053407 /var/log/auth.log in:imklog 955 966 syslog 8w REG 8,2 8045 1051996 /var/log/syslog rs:main 955 967 syslog cwd DIR 8,2 4096 2 / rs:main 955 967 syslog rtd DIR 8,2 4096 2 / rs:main 955 967 syslog txt REG 8,2 680488 924792 /usr/sbin/rsyslogd rs:main 955 967 syslog mem REG 8,2 258040 655397 /lib/x86_64-linux-gnu/libnss_systemd.so.2 rs:main 955 967 syslog mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so rs:main 955 967 syslog mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so rs:main 955 967 syslog mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so rs:main 955 967 syslog mem REG 8,2 19448 1050299 /usr/lib/x86_64-linux-gnu/rsyslog/imklog.so rs:main 955 967 syslog mem REG 8,2 36744 1050306 /usr/lib/x86_64-linux-gnu/rsyslog/imuxsock.so rs:main 955 967 syslog mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so rs:main 955 967 syslog mem REG 8,2 27192 1050307 /usr/lib/x86_64-linux-gnu/rsyslog/lmnet.so rs:main 955 967 syslog mem REG 8,2 84032 656154 /lib/x86_64-linux-gnu/libgpg-error.so.0.22.0 rs:main 955 967 syslog mem REG 8,2 1155768 656153 /lib/x86_64-linux-gnu/libgcrypt.so.20.2.1 rs:main 955 967 syslog mem REG 8,2 112672 924379 /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1 rs:main 955 967 syslog mem REG 8,2 153984 656165 /lib/x86_64-linux-gnu/liblzma.so.5.2.2 rs:main 955 967 syslog mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so rs:main 955 967 syslog mem REG 8,2 27112 656215 /lib/x86_64-linux-gnu/libuuid.so.1.3.0 rs:main 955 967 syslog mem REG 8,2 536648 662910 /lib/x86_64-linux-gnu/libsystemd.so.0.21.0 rs:main 955 967 syslog mem REG 8,2 43720 924331 /usr/lib/x86_64-linux-gnu/libfastjson.so.4.2.0 rs:main 955 967 syslog mem REG 8,2 14344 924327 /usr/lib/x86_64-linux-gnu/libestr.so.0.0.0 rs:main 955 967 syslog mem REG 8,2 31680 656201 /lib/x86_64-linux-gnu/librt-2.27.so rs:main 955 967 syslog mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so rs:main 955 967 syslog mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so rs:main 955 967 syslog mem REG 8,2 116960 656216 /lib/x86_64-linux-gnu/libz.so.1.2.11 rs:main 955 967 syslog mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so rs:main 955 967 syslog 0r CHR 1,3 0t0 6 /dev/null rs:main 955 967 syslog 1w CHR 1,3 0t0 6 /dev/null rs:main 955 967 syslog 2w CHR 1,3 0t0 6 /dev/null rs:main 955 967 syslog 3u unix 0xffff98e47234c800 0t0 20660 /run/systemd/journal/syslog type=DGRAM rs:main 955 967 syslog 4r CHR 1,9 0t0 11 /dev/urandom rs:main 955 967 syslog 5r REG 0,4 0 4026532032 /proc/kmsg rs:main 955 967 syslog 6u unix 0xffff98e4b96e6000 0t0 28224 type=DGRAM rs:main 955 967 syslog 7w REG 8,2 28996 1053407 /var/log/auth.log rs:main 955 967 syslog 8w REG 8,2 8045 1051996 /var/log/syslog networkd- 956 root cwd DIR 8,2 4096 2 / networkd- 956 root rtd DIR 8,2 4096 2 / networkd- 956 root txt REG 8,2 4526456 918753 /usr/bin/python3.6 networkd- 956 root mem REG 8,2 19144 919958 /usr/lib/python3/dist-packages/_dbus_glib_bindings.cpython-36m-x86_64-linux-gnu.so networkd- 956 root mem REG 8,2 84032 656154 /lib/x86_64-linux-gnu/libgpg-error.so.0.22.0 networkd- 956 root mem REG 8,2 1155768 656153 /lib/x86_64-linux-gnu/libgcrypt.so.20.2.1 networkd- 956 root mem REG 8,2 112672 924379 /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1 networkd- 956 root mem REG 8,2 153984 656165 /lib/x86_64-linux-gnu/liblzma.so.5.2.2 networkd- 956 root mem REG 8,2 536648 662910 /lib/x86_64-linux-gnu/libsystemd.so.0.21.0 networkd- 956 root mem REG 8,2 313496 656141 /lib/x86_64-linux-gnu/libdbus-1.so.3.19.4 networkd- 956 root mem REG 8,2 159408 919957 /usr/lib/python3/dist-packages/_dbus_bindings.cpython-36m-x86_64-linux-gnu.so networkd- 956 root mem REG 8,2 186076 1049145 /usr/lib/x86_64-linux-gnu/girepository-1.0/GLib-2.0.typelib networkd- 956 root mem REG 8,2 27112 656215 /lib/x86_64-linux-gnu/libuuid.so.1.3.0 networkd- 956 root mem REG 8,2 31680 656201 /lib/x86_64-linux-gnu/librt-2.27.so networkd- 956 root mem REG 8,2 311720 656131 /lib/x86_64-linux-gnu/libblkid.so.1.1.0 networkd- 956 root mem REG 8,2 340232 656170 /lib/x86_64-linux-gnu/libmount.so.1.1.0 networkd- 956 root mem REG 8,2 101168 656200 /lib/x86_64-linux-gnu/libresolv-2.27.so networkd- 956 root mem REG 8,2 154832 656203 /lib/x86_64-linux-gnu/libselinux.so.1 networkd- 956 root mem REG 8,2 464824 656191 /lib/x86_64-linux-gnu/libpcre.so.3.13.3 networkd- 956 root mem REG 8,2 1690808 924338 /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4 networkd- 956 root mem REG 8,2 14232 924341 /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4 networkd- 956 root mem REG 8,2 31032 924332 /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4 networkd- 956 root mem REG 8,2 1137968 924340 /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4 networkd- 956 root mem REG 8,2 342072 924344 /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4 networkd- 956 root mem REG 8,2 212456 924339 /usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0 networkd- 956 root mem REG 8,2 315848 921267 /usr/lib/python3/dist-packages/gi/_gi.cpython-36m-x86_64-linux-gnu.so networkd- 956 root mem REG 8,2 74664 919258 /usr/lib/python3.6/lib-dynload/_json.cpython-36m-x86_64-linux-gnu.so networkd- 956 root mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so networkd- 956 root mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so networkd- 956 root mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so networkd- 956 root mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so networkd- 956 root mem REG 8,2 1700792 656167 /lib/x86_64-linux-gnu/libm-2.27.so networkd- 956 root mem REG 8,2 116960 656216 /lib/x86_64-linux-gnu/libz.so.1.2.11 networkd- 956 root mem REG 8,2 202880 655558 /lib/x86_64-linux-gnu/libexpat.so.1.6.7 networkd- 956 root mem REG 8,2 10592 656214 /lib/x86_64-linux-gnu/libutil-2.27.so networkd- 956 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so networkd- 956 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so networkd- 956 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so networkd- 956 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so networkd- 956 root mem REG 8,2 1683056 933058 /usr/lib/locale/locale-archive networkd- 956 root mem REG 8,2 26376 1049137 /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache networkd- 956 root 0r CHR 1,3 0t0 6 /dev/null networkd- 956 root 1u unix 0xffff98e4b905c400 0t0 27668 type=STREAM networkd- 956 root 2u unix 0xffff98e4b905c400 0t0 27668 type=STREAM networkd- 956 root 3u unix 0xffff98e4b5d86400 0t0 30629 type=STREAM networkd- 956 root 4u a_inode 0,13 0 10717 [eventfd] networkd- 956 root 5u a_inode 0,13 0 10717 [eventfd] gmain 956 1294 root cwd DIR 8,2 4096 2 / gmain 956 1294 root rtd DIR 8,2 4096 2 / gmain 956 1294 root txt REG 8,2 4526456 918753 /usr/bin/python3.6 gmain 956 1294 root mem REG 8,2 19144 919958 /usr/lib/python3/dist-packages/_dbus_glib_bindings.cpython-36m-x86_64-linux-gnu.so gmain 956 1294 root mem REG 8,2 84032 656154 /lib/x86_64-linux-gnu/libgpg-error.so.0.22.0 gmain 956 1294 root mem REG 8,2 1155768 656153 /lib/x86_64-linux-gnu/libgcrypt.so.20.2.1 gmain 956 1294 root mem REG 8,2 112672 924379 /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1 gmain 956 1294 root mem REG 8,2 153984 656165 /lib/x86_64-linux-gnu/liblzma.so.5.2.2 gmain 956 1294 root mem REG 8,2 536648 662910 /lib/x86_64-linux-gnu/libsystemd.so.0.21.0 gmain 956 1294 root mem REG 8,2 313496 656141 /lib/x86_64-linux-gnu/libdbus-1.so.3.19.4 gmain 956 1294 root mem REG 8,2 159408 919957 /usr/lib/python3/dist-packages/_dbus_bindings.cpython-36m-x86_64-linux-gnu.so gmain 956 1294 root mem REG 8,2 186076 1049145 /usr/lib/x86_64-linux-gnu/girepository-1.0/GLib-2.0.typelib gmain 956 1294 root mem REG 8,2 27112 656215 /lib/x86_64-linux-gnu/libuuid.so.1.3.0 gmain 956 1294 root mem REG 8,2 31680 656201 /lib/x86_64-linux-gnu/librt-2.27.so gmain 956 1294 root mem REG 8,2 311720 656131 /lib/x86_64-linux-gnu/libblkid.so.1.1.0 gmain 956 1294 root mem REG 8,2 340232 656170 /lib/x86_64-linux-gnu/libmount.so.1.1.0 gmain 956 1294 root mem REG 8,2 101168 656200 /lib/x86_64-linux-gnu/libresolv-2.27.so gmain 956 1294 root mem REG 8,2 154832 656203 /lib/x86_64-linux-gnu/libselinux.so.1 gmain 956 1294 root mem REG 8,2 464824 656191 /lib/x86_64-linux-gnu/libpcre.so.3.13.3 gmain 956 1294 root mem REG 8,2 1690808 924338 /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4 gmain 956 1294 root mem REG 8,2 14232 924341 /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4 gmain 956 1294 root mem REG 8,2 31032 924332 /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4 gmain 956 1294 root mem REG 8,2 1137968 924340 /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4 gmain 956 1294 root mem REG 8,2 342072 924344 /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4 gmain 956 1294 root mem REG 8,2 212456 924339 /usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0 gmain 956 1294 root mem REG 8,2 315848 921267 /usr/lib/python3/dist-packages/gi/_gi.cpython-36m-x86_64-linux-gnu.so gmain 956 1294 root mem REG 8,2 74664 919258 /usr/lib/python3.6/lib-dynload/_json.cpython-36m-x86_64-linux-gnu.so gmain 956 1294 root mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so gmain 956 1294 root mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so gmain 956 1294 root mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so gmain 956 1294 root mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so gmain 956 1294 root mem REG 8,2 1700792 656167 /lib/x86_64-linux-gnu/libm-2.27.so gmain 956 1294 root mem REG 8,2 116960 656216 /lib/x86_64-linux-gnu/libz.so.1.2.11 gmain 956 1294 root mem REG 8,2 202880 655558 /lib/x86_64-linux-gnu/libexpat.so.1.6.7 gmain 956 1294 root mem REG 8,2 10592 656214 /lib/x86_64-linux-gnu/libutil-2.27.so gmain 956 1294 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so gmain 956 1294 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so gmain 956 1294 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so gmain 956 1294 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so gmain 956 1294 root mem REG 8,2 1683056 933058 /usr/lib/locale/locale-archive gmain 956 1294 root mem REG 8,2 26376 1049137 /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache gmain 956 1294 root 0r CHR 1,3 0t0 6 /dev/null gmain 956 1294 root 1u unix 0xffff98e4b905c400 0t0 27668 type=STREAM gmain 956 1294 root 2u unix 0xffff98e4b905c400 0t0 27668 type=STREAM gmain 956 1294 root 3u unix 0xffff98e4b5d86400 0t0 30629 type=STREAM gmain 956 1294 root 4u a_inode 0,13 0 10717 [eventfd] gmain 956 1294 root 5u a_inode 0,13 0 10717 [eventfd] lxcfs 960 root cwd DIR 8,2 4096 2 / lxcfs 960 root rtd DIR 8,2 4096 2 / lxcfs 960 root txt REG 8,2 18504 918166 /usr/bin/lxcfs lxcfs 960 root mem REG 8,2 67424 1049161 /usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so lxcfs 960 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so lxcfs 960 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so lxcfs 960 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so lxcfs 960 root mem REG 8,2 243832 656151 /lib/x86_64-linux-gnu/libfuse.so.2.9.7 lxcfs 960 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so lxcfs 960 root 0r CHR 1,3 0t0 6 /dev/null lxcfs 960 root 1u unix 0xffff98e4b937c000 0t0 27978 type=STREAM lxcfs 960 root 2u unix 0xffff98e4b937c000 0t0 27978 type=STREAM lxcfs 960 root 3uW REG 0,23 4 673 /run/lxcfs.pid lxcfs 960 root 4u CHR 10,229 0t0 85 /dev/fuse lxcfs 960 root 5r REG 0,3 0 4026532577 mnt lxcfs 960 root 6r DIR 0,41 0 1 /run/lxcfs/controllers/cpu,cpuacct lxcfs 960 root 7r DIR 0,40 0 1 /run/lxcfs/controllers/pids lxcfs 960 root 8r DIR 0,39 0 1 /run/lxcfs/controllers/cpuset lxcfs 960 root 9r DIR 0,38 0 1 /run/lxcfs/controllers/blkio lxcfs 960 root 10r DIR 0,37 0 1 /run/lxcfs/controllers/rdma lxcfs 960 root 11r DIR 0,36 0 1 /run/lxcfs/controllers/perf_event lxcfs 960 root 12r DIR 0,35 0 1 /run/lxcfs/controllers/hugetlb lxcfs 960 root 13r DIR 0,34 0 1 /run/lxcfs/controllers/devices lxcfs 960 root 14r DIR 0,33 0 1 /run/lxcfs/controllers/memory lxcfs 960 root 15r DIR 0,32 0 1 /run/lxcfs/controllers/freezer lxcfs 960 root 16r DIR 0,31 0 1 /run/lxcfs/controllers/net_cls,net_prio lxcfs 960 root 17r DIR 0,29 0 1 /run/lxcfs/controllers/name=systemd lxcfs 960 root 18r DIR 0,28 0 1 /run/lxcfs/controllers/unified lxcfs 960 22673 root cwd DIR 8,2 4096 2 / lxcfs 960 22673 root rtd DIR 8,2 4096 2 / lxcfs 960 22673 root txt REG 8,2 18504 918166 /usr/bin/lxcfs lxcfs 960 22673 root mem REG 8,2 67424 1049161 /usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so lxcfs 960 22673 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so lxcfs 960 22673 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so lxcfs 960 22673 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so lxcfs 960 22673 root mem REG 8,2 243832 656151 /lib/x86_64-linux-gnu/libfuse.so.2.9.7 lxcfs 960 22673 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so lxcfs 960 22673 root 0r CHR 1,3 0t0 6 /dev/null lxcfs 960 22673 root 1u unix 0xffff98e4b937c000 0t0 27978 type=STREAM lxcfs 960 22673 root 2u unix 0xffff98e4b937c000 0t0 27978 type=STREAM lxcfs 960 22673 root 3uW REG 0,23 4 673 /run/lxcfs.pid lxcfs 960 22673 root 4u CHR 10,229 0t0 85 /dev/fuse lxcfs 960 22673 root 5r REG 0,3 0 4026532577 mnt lxcfs 960 22673 root 6r DIR 0,41 0 1 /run/lxcfs/controllers/cpu,cpuacct lxcfs 960 22673 root 7r DIR 0,40 0 1 /run/lxcfs/controllers/pids lxcfs 960 22673 root 8r DIR 0,39 0 1 /run/lxcfs/controllers/cpuset lxcfs 960 22673 root 9r DIR 0,38 0 1 /run/lxcfs/controllers/blkio lxcfs 960 22673 root 10r DIR 0,37 0 1 /run/lxcfs/controllers/rdma lxcfs 960 22673 root 11r DIR 0,36 0 1 /run/lxcfs/controllers/perf_event lxcfs 960 22673 root 12r DIR 0,35 0 1 /run/lxcfs/controllers/hugetlb lxcfs 960 22673 root 13r DIR 0,34 0 1 /run/lxcfs/controllers/devices lxcfs 960 22673 root 14r DIR 0,33 0 1 /run/lxcfs/controllers/memory lxcfs 960 22673 root 15r DIR 0,32 0 1 /run/lxcfs/controllers/freezer lxcfs 960 22673 root 16r DIR 0,31 0 1 /run/lxcfs/controllers/net_cls,net_prio lxcfs 960 22673 root 17r DIR 0,29 0 1 /run/lxcfs/controllers/name=systemd lxcfs 960 22673 root 18r DIR 0,28 0 1 /run/lxcfs/controllers/unified lxcfs 960 22675 root cwd DIR 8,2 4096 2 / lxcfs 960 22675 root rtd DIR 8,2 4096 2 / lxcfs 960 22675 root txt REG 8,2 18504 918166 /usr/bin/lxcfs lxcfs 960 22675 root mem REG 8,2 67424 1049161 /usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so lxcfs 960 22675 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so lxcfs 960 22675 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so lxcfs 960 22675 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so lxcfs 960 22675 root mem REG 8,2 243832 656151 /lib/x86_64-linux-gnu/libfuse.so.2.9.7 lxcfs 960 22675 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so lxcfs 960 22675 root 0r CHR 1,3 0t0 6 /dev/null lxcfs 960 22675 root 1u unix 0xffff98e4b937c000 0t0 27978 type=STREAM lxcfs 960 22675 root 2u unix 0xffff98e4b937c000 0t0 27978 type=STREAM lxcfs 960 22675 root 3uW REG 0,23 4 673 /run/lxcfs.pid lxcfs 960 22675 root 4u CHR 10,229 0t0 85 /dev/fuse lxcfs 960 22675 root 5r REG 0,3 0 4026532577 mnt lxcfs 960 22675 root 6r DIR 0,41 0 1 /run/lxcfs/controllers/cpu,cpuacct lxcfs 960 22675 root 7r DIR 0,40 0 1 /run/lxcfs/controllers/pids lxcfs 960 22675 root 8r DIR 0,39 0 1 /run/lxcfs/controllers/cpuset lxcfs 960 22675 root 9r DIR 0,38 0 1 /run/lxcfs/controllers/blkio lxcfs 960 22675 root 10r DIR 0,37 0 1 /run/lxcfs/controllers/rdma lxcfs 960 22675 root 11r DIR 0,36 0 1 /run/lxcfs/controllers/perf_event lxcfs 960 22675 root 12r DIR 0,35 0 1 /run/lxcfs/controllers/hugetlb lxcfs 960 22675 root 13r DIR 0,34 0 1 /run/lxcfs/controllers/devices lxcfs 960 22675 root 14r DIR 0,33 0 1 /run/lxcfs/controllers/memory lxcfs 960 22675 root 15r DIR 0,32 0 1 /run/lxcfs/controllers/freezer lxcfs 960 22675 root 16r DIR 0,31 0 1 /run/lxcfs/controllers/net_cls,net_prio lxcfs 960 22675 root 17r DIR 0,29 0 1 /run/lxcfs/controllers/name=systemd lxcfs 960 22675 root 18r DIR 0,28 0 1 /run/lxcfs/controllers/unified lxcfs 960 22676 root cwd DIR 8,2 4096 2 / lxcfs 960 22676 root rtd DIR 8,2 4096 2 / lxcfs 960 22676 root txt REG 8,2 18504 918166 /usr/bin/lxcfs lxcfs 960 22676 root mem REG 8,2 67424 1049161 /usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so lxcfs 960 22676 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so lxcfs 960 22676 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so lxcfs 960 22676 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so lxcfs 960 22676 root mem REG 8,2 243832 656151 /lib/x86_64-linux-gnu/libfuse.so.2.9.7 lxcfs 960 22676 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so lxcfs 960 22676 root 0r CHR 1,3 0t0 6 /dev/null lxcfs 960 22676 root 1u unix 0xffff98e4b937c000 0t0 27978 type=STREAM lxcfs 960 22676 root 2u unix 0xffff98e4b937c000 0t0 27978 type=STREAM lxcfs 960 22676 root 3uW REG 0,23 4 673 /run/lxcfs.pid lxcfs 960 22676 root 4u CHR 10,229 0t0 85 /dev/fuse lxcfs 960 22676 root 5r REG 0,3 0 4026532577 mnt lxcfs 960 22676 root 6r DIR 0,41 0 1 /run/lxcfs/controllers/cpu,cpuacct lxcfs 960 22676 root 7r DIR 0,40 0 1 /run/lxcfs/controllers/pids lxcfs 960 22676 root 8r DIR 0,39 0 1 /run/lxcfs/controllers/cpuset lxcfs 960 22676 root 9r DIR 0,38 0 1 /run/lxcfs/controllers/blkio lxcfs 960 22676 root 10r DIR 0,37 0 1 /run/lxcfs/controllers/rdma lxcfs 960 22676 root 11r DIR 0,36 0 1 /run/lxcfs/controllers/perf_event lxcfs 960 22676 root 12r DIR 0,35 0 1 /run/lxcfs/controllers/hugetlb lxcfs 960 22676 root 13r DIR 0,34 0 1 /run/lxcfs/controllers/devices lxcfs 960 22676 root 14r DIR 0,33 0 1 /run/lxcfs/controllers/memory lxcfs 960 22676 root 15r DIR 0,32 0 1 /run/lxcfs/controllers/freezer lxcfs 960 22676 root 16r DIR 0,31 0 1 /run/lxcfs/controllers/net_cls,net_prio lxcfs 960 22676 root 17r DIR 0,29 0 1 /run/lxcfs/controllers/name=systemd lxcfs 960 22676 root 18r DIR 0,28 0 1 /run/lxcfs/controllers/unified lxcfs 960 22678 root cwd DIR 8,2 4096 2 / lxcfs 960 22678 root rtd DIR 8,2 4096 2 / lxcfs 960 22678 root txt REG 8,2 18504 918166 /usr/bin/lxcfs lxcfs 960 22678 root mem REG 8,2 67424 1049161 /usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so lxcfs 960 22678 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so lxcfs 960 22678 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so lxcfs 960 22678 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so lxcfs 960 22678 root mem REG 8,2 243832 656151 /lib/x86_64-linux-gnu/libfuse.so.2.9.7 lxcfs 960 22678 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so lxcfs 960 22678 root 0r CHR 1,3 0t0 6 /dev/null lxcfs 960 22678 root 1u unix 0xffff98e4b937c000 0t0 27978 type=STREAM lxcfs 960 22678 root 2u unix 0xffff98e4b937c000 0t0 27978 type=STREAM lxcfs 960 22678 root 3uW REG 0,23 4 673 /run/lxcfs.pid lxcfs 960 22678 root 4u CHR 10,229 0t0 85 /dev/fuse lxcfs 960 22678 root 5r REG 0,3 0 4026532577 mnt lxcfs 960 22678 root 6r DIR 0,41 0 1 /run/lxcfs/controllers/cpu,cpuacct lxcfs 960 22678 root 7r DIR 0,40 0 1 /run/lxcfs/controllers/pids lxcfs 960 22678 root 8r DIR 0,39 0 1 /run/lxcfs/controllers/cpuset lxcfs 960 22678 root 9r DIR 0,38 0 1 /run/lxcfs/controllers/blkio lxcfs 960 22678 root 10r DIR 0,37 0 1 /run/lxcfs/controllers/rdma lxcfs 960 22678 root 11r DIR 0,36 0 1 /run/lxcfs/controllers/perf_event lxcfs 960 22678 root 12r DIR 0,35 0 1 /run/lxcfs/controllers/hugetlb lxcfs 960 22678 root 13r DIR 0,34 0 1 /run/lxcfs/controllers/devices lxcfs 960 22678 root 14r DIR 0,33 0 1 /run/lxcfs/controllers/memory lxcfs 960 22678 root 15r DIR 0,32 0 1 /run/lxcfs/controllers/freezer lxcfs 960 22678 root 16r DIR 0,31 0 1 /run/lxcfs/controllers/net_cls,net_prio lxcfs 960 22678 root 17r DIR 0,29 0 1 /run/lxcfs/controllers/name=systemd lxcfs 960 22678 root 18r DIR 0,28 0 1 /run/lxcfs/controllers/unified lxcfs 960 22683 root cwd DIR 8,2 4096 2 / lxcfs 960 22683 root rtd DIR 8,2 4096 2 / lxcfs 960 22683 root txt REG 8,2 18504 918166 /usr/bin/lxcfs lxcfs 960 22683 root mem REG 8,2 67424 1049161 /usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so lxcfs 960 22683 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so lxcfs 960 22683 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so lxcfs 960 22683 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so lxcfs 960 22683 root mem REG 8,2 243832 656151 /lib/x86_64-linux-gnu/libfuse.so.2.9.7 lxcfs 960 22683 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so lxcfs 960 22683 root 0r CHR 1,3 0t0 6 /dev/null lxcfs 960 22683 root 1u unix 0xffff98e4b937c000 0t0 27978 type=STREAM lxcfs 960 22683 root 2u unix 0xffff98e4b937c000 0t0 27978 type=STREAM lxcfs 960 22683 root 3uW REG 0,23 4 673 /run/lxcfs.pid lxcfs 960 22683 root 4u CHR 10,229 0t0 85 /dev/fuse lxcfs 960 22683 root 5r REG 0,3 0 4026532577 mnt lxcfs 960 22683 root 6r DIR 0,41 0 1 /run/lxcfs/controllers/cpu,cpuacct lxcfs 960 22683 root 7r DIR 0,40 0 1 /run/lxcfs/controllers/pids lxcfs 960 22683 root 8r DIR 0,39 0 1 /run/lxcfs/controllers/cpuset lxcfs 960 22683 root 9r DIR 0,38 0 1 /run/lxcfs/controllers/blkio lxcfs 960 22683 root 10r DIR 0,37 0 1 /run/lxcfs/controllers/rdma lxcfs 960 22683 root 11r DIR 0,36 0 1 /run/lxcfs/controllers/perf_event lxcfs 960 22683 root 12r DIR 0,35 0 1 /run/lxcfs/controllers/hugetlb lxcfs 960 22683 root 13r DIR 0,34 0 1 /run/lxcfs/controllers/devices lxcfs 960 22683 root 14r DIR 0,33 0 1 /run/lxcfs/controllers/memory lxcfs 960 22683 root 15r DIR 0,32 0 1 /run/lxcfs/controllers/freezer lxcfs 960 22683 root 16r DIR 0,31 0 1 /run/lxcfs/controllers/net_cls,net_prio lxcfs 960 22683 root 17r DIR 0,29 0 1 /run/lxcfs/controllers/name=systemd lxcfs 960 22683 root 18r DIR 0,28 0 1 /run/lxcfs/controllers/unified lxcfs 960 22685 root cwd DIR 8,2 4096 2 / lxcfs 960 22685 root rtd DIR 8,2 4096 2 / lxcfs 960 22685 root txt REG 8,2 18504 918166 /usr/bin/lxcfs lxcfs 960 22685 root mem REG 8,2 67424 1049161 /usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so lxcfs 960 22685 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so lxcfs 960 22685 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so lxcfs 960 22685 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so lxcfs 960 22685 root mem REG 8,2 243832 656151 /lib/x86_64-linux-gnu/libfuse.so.2.9.7 lxcfs 960 22685 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so lxcfs 960 22685 root 0r CHR 1,3 0t0 6 /dev/null lxcfs 960 22685 root 1u unix 0xffff98e4b937c000 0t0 27978 type=STREAM lxcfs 960 22685 root 2u unix 0xffff98e4b937c000 0t0 27978 type=STREAM lxcfs 960 22685 root 3uW REG 0,23 4 673 /run/lxcfs.pid lxcfs 960 22685 root 4u CHR 10,229 0t0 85 /dev/fuse lxcfs 960 22685 root 5r REG 0,3 0 4026532577 mnt lxcfs 960 22685 root 6r DIR 0,41 0 1 /run/lxcfs/controllers/cpu,cpuacct lxcfs 960 22685 root 7r DIR 0,40 0 1 /run/lxcfs/controllers/pids lxcfs 960 22685 root 8r DIR 0,39 0 1 /run/lxcfs/controllers/cpuset lxcfs 960 22685 root 9r DIR 0,38 0 1 /run/lxcfs/controllers/blkio lxcfs 960 22685 root 10r DIR 0,37 0 1 /run/lxcfs/controllers/rdma lxcfs 960 22685 root 11r DIR 0,36 0 1 /run/lxcfs/controllers/perf_event lxcfs 960 22685 root 12r DIR 0,35 0 1 /run/lxcfs/controllers/hugetlb lxcfs 960 22685 root 13r DIR 0,34 0 1 /run/lxcfs/controllers/devices lxcfs 960 22685 root 14r DIR 0,33 0 1 /run/lxcfs/controllers/memory lxcfs 960 22685 root 15r DIR 0,32 0 1 /run/lxcfs/controllers/freezer lxcfs 960 22685 root 16r DIR 0,31 0 1 /run/lxcfs/controllers/net_cls,net_prio lxcfs 960 22685 root 17r DIR 0,29 0 1 /run/lxcfs/controllers/name=systemd lxcfs 960 22685 root 18r DIR 0,28 0 1 /run/lxcfs/controllers/unified lxcfs 960 22686 root cwd DIR 8,2 4096 2 / lxcfs 960 22686 root rtd DIR 8,2 4096 2 / lxcfs 960 22686 root txt REG 8,2 18504 918166 /usr/bin/lxcfs lxcfs 960 22686 root mem REG 8,2 67424 1049161 /usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so lxcfs 960 22686 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so lxcfs 960 22686 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so lxcfs 960 22686 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so lxcfs 960 22686 root mem REG 8,2 243832 656151 /lib/x86_64-linux-gnu/libfuse.so.2.9.7 lxcfs 960 22686 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so lxcfs 960 22686 root 0r CHR 1,3 0t0 6 /dev/null lxcfs 960 22686 root 1u unix 0xffff98e4b937c000 0t0 27978 type=STREAM lxcfs 960 22686 root 2u unix 0xffff98e4b937c000 0t0 27978 type=STREAM lxcfs 960 22686 root 3uW REG 0,23 4 673 /run/lxcfs.pid lxcfs 960 22686 root 4u CHR 10,229 0t0 85 /dev/fuse lxcfs 960 22686 root 5r REG 0,3 0 4026532577 mnt lxcfs 960 22686 root 6r DIR 0,41 0 1 /run/lxcfs/controllers/cpu,cpuacct lxcfs 960 22686 root 7r DIR 0,40 0 1 /run/lxcfs/controllers/pids lxcfs 960 22686 root 8r DIR 0,39 0 1 /run/lxcfs/controllers/cpuset lxcfs 960 22686 root 9r DIR 0,38 0 1 /run/lxcfs/controllers/blkio lxcfs 960 22686 root 10r DIR 0,37 0 1 /run/lxcfs/controllers/rdma lxcfs 960 22686 root 11r DIR 0,36 0 1 /run/lxcfs/controllers/perf_event lxcfs 960 22686 root 12r DIR 0,35 0 1 /run/lxcfs/controllers/hugetlb lxcfs 960 22686 root 13r DIR 0,34 0 1 /run/lxcfs/controllers/devices lxcfs 960 22686 root 14r DIR 0,33 0 1 /run/lxcfs/controllers/memory lxcfs 960 22686 root 15r DIR 0,32 0 1 /run/lxcfs/controllers/freezer lxcfs 960 22686 root 16r DIR 0,31 0 1 /run/lxcfs/controllers/net_cls,net_prio lxcfs 960 22686 root 17r DIR 0,29 0 1 /run/lxcfs/controllers/name=systemd lxcfs 960 22686 root 18r DIR 0,28 0 1 /run/lxcfs/controllers/unified lxcfs 960 22688 root cwd DIR 8,2 4096 2 / lxcfs 960 22688 root rtd DIR 8,2 4096 2 / lxcfs 960 22688 root txt REG 8,2 18504 918166 /usr/bin/lxcfs lxcfs 960 22688 root mem REG 8,2 67424 1049161 /usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so lxcfs 960 22688 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so lxcfs 960 22688 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so lxcfs 960 22688 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so lxcfs 960 22688 root mem REG 8,2 243832 656151 /lib/x86_64-linux-gnu/libfuse.so.2.9.7 lxcfs 960 22688 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so lxcfs 960 22688 root 0r CHR 1,3 0t0 6 /dev/null lxcfs 960 22688 root 1u unix 0xffff98e4b937c000 0t0 27978 type=STREAM lxcfs 960 22688 root 2u unix 0xffff98e4b937c000 0t0 27978 type=STREAM lxcfs 960 22688 root 3uW REG 0,23 4 673 /run/lxcfs.pid lxcfs 960 22688 root 4u CHR 10,229 0t0 85 /dev/fuse lxcfs 960 22688 root 5r REG 0,3 0 4026532577 mnt lxcfs 960 22688 root 6r DIR 0,41 0 1 /run/lxcfs/controllers/cpu,cpuacct lxcfs 960 22688 root 7r DIR 0,40 0 1 /run/lxcfs/controllers/pids lxcfs 960 22688 root 8r DIR 0,39 0 1 /run/lxcfs/controllers/cpuset lxcfs 960 22688 root 9r DIR 0,38 0 1 /run/lxcfs/controllers/blkio lxcfs 960 22688 root 10r DIR 0,37 0 1 /run/lxcfs/controllers/rdma lxcfs 960 22688 root 11r DIR 0,36 0 1 /run/lxcfs/controllers/perf_event lxcfs 960 22688 root 12r DIR 0,35 0 1 /run/lxcfs/controllers/hugetlb lxcfs 960 22688 root 13r DIR 0,34 0 1 /run/lxcfs/controllers/devices lxcfs 960 22688 root 14r DIR 0,33 0 1 /run/lxcfs/controllers/memory lxcfs 960 22688 root 15r DIR 0,32 0 1 /run/lxcfs/controllers/freezer lxcfs 960 22688 root 16r DIR 0,31 0 1 /run/lxcfs/controllers/net_cls,net_prio lxcfs 960 22688 root 17r DIR 0,29 0 1 /run/lxcfs/controllers/name=systemd lxcfs 960 22688 root 18r DIR 0,28 0 1 /run/lxcfs/controllers/unified lxcfs 960 22689 root cwd DIR 8,2 4096 2 / lxcfs 960 22689 root rtd DIR 8,2 4096 2 / lxcfs 960 22689 root txt REG 8,2 18504 918166 /usr/bin/lxcfs lxcfs 960 22689 root mem REG 8,2 67424 1049161 /usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so lxcfs 960 22689 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so lxcfs 960 22689 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so lxcfs 960 22689 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so lxcfs 960 22689 root mem REG 8,2 243832 656151 /lib/x86_64-linux-gnu/libfuse.so.2.9.7 lxcfs 960 22689 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so lxcfs 960 22689 root 0r CHR 1,3 0t0 6 /dev/null lxcfs 960 22689 root 1u unix 0xffff98e4b937c000 0t0 27978 type=STREAM lxcfs 960 22689 root 2u unix 0xffff98e4b937c000 0t0 27978 type=STREAM lxcfs 960 22689 root 3uW REG 0,23 4 673 /run/lxcfs.pid lxcfs 960 22689 root 4u CHR 10,229 0t0 85 /dev/fuse lxcfs 960 22689 root 5r REG 0,3 0 4026532577 mnt lxcfs 960 22689 root 6r DIR 0,41 0 1 /run/lxcfs/controllers/cpu,cpuacct lxcfs 960 22689 root 7r DIR 0,40 0 1 /run/lxcfs/controllers/pids lxcfs 960 22689 root 8r DIR 0,39 0 1 /run/lxcfs/controllers/cpuset lxcfs 960 22689 root 9r DIR 0,38 0 1 /run/lxcfs/controllers/blkio lxcfs 960 22689 root 10r DIR 0,37 0 1 /run/lxcfs/controllers/rdma lxcfs 960 22689 root 11r DIR 0,36 0 1 /run/lxcfs/controllers/perf_event lxcfs 960 22689 root 12r DIR 0,35 0 1 /run/lxcfs/controllers/hugetlb lxcfs 960 22689 root 13r DIR 0,34 0 1 /run/lxcfs/controllers/devices lxcfs 960 22689 root 14r DIR 0,33 0 1 /run/lxcfs/controllers/memory lxcfs 960 22689 root 15r DIR 0,32 0 1 /run/lxcfs/controllers/freezer lxcfs 960 22689 root 16r DIR 0,31 0 1 /run/lxcfs/controllers/net_cls,net_prio lxcfs 960 22689 root 17r DIR 0,29 0 1 /run/lxcfs/controllers/name=systemd lxcfs 960 22689 root 18r DIR 0,28 0 1 /run/lxcfs/controllers/unified lxcfs 960 22690 root cwd DIR 8,2 4096 2 / lxcfs 960 22690 root rtd DIR 8,2 4096 2 / lxcfs 960 22690 root txt REG 8,2 18504 918166 /usr/bin/lxcfs lxcfs 960 22690 root mem REG 8,2 67424 1049161 /usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so lxcfs 960 22690 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so lxcfs 960 22690 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so lxcfs 960 22690 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so lxcfs 960 22690 root mem REG 8,2 243832 656151 /lib/x86_64-linux-gnu/libfuse.so.2.9.7 lxcfs 960 22690 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so lxcfs 960 22690 root 0r CHR 1,3 0t0 6 /dev/null lxcfs 960 22690 root 1u unix 0xffff98e4b937c000 0t0 27978 type=STREAM lxcfs 960 22690 root 2u unix 0xffff98e4b937c000 0t0 27978 type=STREAM lxcfs 960 22690 root 3uW REG 0,23 4 673 /run/lxcfs.pid lxcfs 960 22690 root 4u CHR 10,229 0t0 85 /dev/fuse lxcfs 960 22690 root 5r REG 0,3 0 4026532577 mnt lxcfs 960 22690 root 6r DIR 0,41 0 1 /run/lxcfs/controllers/cpu,cpuacct lxcfs 960 22690 root 7r DIR 0,40 0 1 /run/lxcfs/controllers/pids lxcfs 960 22690 root 8r DIR 0,39 0 1 /run/lxcfs/controllers/cpuset lxcfs 960 22690 root 9r DIR 0,38 0 1 /run/lxcfs/controllers/blkio lxcfs 960 22690 root 10r DIR 0,37 0 1 /run/lxcfs/controllers/rdma lxcfs 960 22690 root 11r DIR 0,36 0 1 /run/lxcfs/controllers/perf_event lxcfs 960 22690 root 12r DIR 0,35 0 1 /run/lxcfs/controllers/hugetlb lxcfs 960 22690 root 13r DIR 0,34 0 1 /run/lxcfs/controllers/devices lxcfs 960 22690 root 14r DIR 0,33 0 1 /run/lxcfs/controllers/memory lxcfs 960 22690 root 15r DIR 0,32 0 1 /run/lxcfs/controllers/freezer lxcfs 960 22690 root 16r DIR 0,31 0 1 /run/lxcfs/controllers/net_cls,net_prio lxcfs 960 22690 root 17r DIR 0,29 0 1 /run/lxcfs/controllers/name=systemd lxcfs 960 22690 root 18r DIR 0,28 0 1 /run/lxcfs/controllers/unified accounts- 961 root cwd DIR 8,2 4096 2 / accounts- 961 root rtd DIR 8,2 4096 2 / accounts- 961 root txt REG 8,2 182552 918479 /usr/lib/accountsservice/accounts-daemon accounts- 961 root mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so accounts- 961 root mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so accounts- 961 root mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so accounts- 961 root mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so accounts- 961 root mem REG 8,2 27112 656215 /lib/x86_64-linux-gnu/libuuid.so.1.3.0 accounts- 961 root mem REG 8,2 84032 656154 /lib/x86_64-linux-gnu/libgpg-error.so.0.22.0 accounts- 961 root mem REG 8,2 311720 656131 /lib/x86_64-linux-gnu/libblkid.so.1.1.0 accounts- 961 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so accounts- 961 root mem REG 8,2 1155768 656153 /lib/x86_64-linux-gnu/libgcrypt.so.20.2.1 accounts- 961 root mem REG 8,2 112672 924379 /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1 accounts- 961 root mem REG 8,2 153984 656165 /lib/x86_64-linux-gnu/liblzma.so.5.2.2 accounts- 961 root mem REG 8,2 31680 656201 /lib/x86_64-linux-gnu/librt-2.27.so accounts- 961 root mem REG 8,2 464824 656191 /lib/x86_64-linux-gnu/libpcre.so.3.13.3 accounts- 961 root mem REG 8,2 31032 924332 /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4 accounts- 961 root mem REG 8,2 340232 656170 /lib/x86_64-linux-gnu/libmount.so.1.1.0 accounts- 961 root mem REG 8,2 101168 656200 /lib/x86_64-linux-gnu/libresolv-2.27.so accounts- 961 root mem REG 8,2 154832 656203 /lib/x86_64-linux-gnu/libselinux.so.1 accounts- 961 root mem REG 8,2 116960 656216 /lib/x86_64-linux-gnu/libz.so.1.2.11 accounts- 961 root mem REG 8,2 14232 924341 /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4 accounts- 961 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so accounts- 961 root mem REG 8,2 536648 662910 /lib/x86_64-linux-gnu/libsystemd.so.0.21.0 accounts- 961 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so accounts- 961 root mem REG 8,2 1137968 924340 /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4 accounts- 961 root mem REG 8,2 342072 924344 /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4 accounts- 961 root mem REG 8,2 1690808 924338 /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4 accounts- 961 root mem REG 8,2 114000 924402 /usr/lib/x86_64-linux-gnu/libpolkit-gobject-1.so.0.0.0 accounts- 961 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so accounts- 961 root mem REG 8,2 1683056 933058 /usr/lib/locale/locale-archive accounts- 961 root 0r CHR 1,3 0t0 6 /dev/null accounts- 961 root 1u unix 0xffff98e4b911f400 0t0 28058 type=STREAM accounts- 961 root 2u unix 0xffff98e4b911f400 0t0 28058 type=STREAM accounts- 961 root 3u a_inode 0,13 0 10717 [eventfd] accounts- 961 root 4u a_inode 0,13 0 10717 [eventfd] accounts- 961 root 5u unix 0xffff98e4b5c67400 0t0 29199 type=STREAM accounts- 961 root 6u a_inode 0,13 0 10717 [eventfd] accounts- 961 root 7r a_inode 0,13 0 10717 inotify gmain 961 1030 root cwd DIR 8,2 4096 2 / gmain 961 1030 root rtd DIR 8,2 4096 2 / gmain 961 1030 root txt REG 8,2 182552 918479 /usr/lib/accountsservice/accounts-daemon gmain 961 1030 root mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so gmain 961 1030 root mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so gmain 961 1030 root mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so gmain 961 1030 root mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so gmain 961 1030 root mem REG 8,2 27112 656215 /lib/x86_64-linux-gnu/libuuid.so.1.3.0 gmain 961 1030 root mem REG 8,2 84032 656154 /lib/x86_64-linux-gnu/libgpg-error.so.0.22.0 gmain 961 1030 root mem REG 8,2 311720 656131 /lib/x86_64-linux-gnu/libblkid.so.1.1.0 gmain 961 1030 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so gmain 961 1030 root mem REG 8,2 1155768 656153 /lib/x86_64-linux-gnu/libgcrypt.so.20.2.1 gmain 961 1030 root mem REG 8,2 112672 924379 /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1 gmain 961 1030 root mem REG 8,2 153984 656165 /lib/x86_64-linux-gnu/liblzma.so.5.2.2 gmain 961 1030 root mem REG 8,2 31680 656201 /lib/x86_64-linux-gnu/librt-2.27.so gmain 961 1030 root mem REG 8,2 464824 656191 /lib/x86_64-linux-gnu/libpcre.so.3.13.3 gmain 961 1030 root mem REG 8,2 31032 924332 /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4 gmain 961 1030 root mem REG 8,2 340232 656170 /lib/x86_64-linux-gnu/libmount.so.1.1.0 gmain 961 1030 root mem REG 8,2 101168 656200 /lib/x86_64-linux-gnu/libresolv-2.27.so gmain 961 1030 root mem REG 8,2 154832 656203 /lib/x86_64-linux-gnu/libselinux.so.1 gmain 961 1030 root mem REG 8,2 116960 656216 /lib/x86_64-linux-gnu/libz.so.1.2.11 gmain 961 1030 root mem REG 8,2 14232 924341 /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4 gmain 961 1030 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so gmain 961 1030 root mem REG 8,2 536648 662910 /lib/x86_64-linux-gnu/libsystemd.so.0.21.0 gmain 961 1030 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so gmain 961 1030 root mem REG 8,2 1137968 924340 /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4 gmain 961 1030 root mem REG 8,2 342072 924344 /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4 gmain 961 1030 root mem REG 8,2 1690808 924338 /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4 gmain 961 1030 root mem REG 8,2 114000 924402 /usr/lib/x86_64-linux-gnu/libpolkit-gobject-1.so.0.0.0 gmain 961 1030 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so gmain 961 1030 root mem REG 8,2 1683056 933058 /usr/lib/locale/locale-archive gmain 961 1030 root 0r CHR 1,3 0t0 6 /dev/null gmain 961 1030 root 1u unix 0xffff98e4b911f400 0t0 28058 type=STREAM gmain 961 1030 root 2u unix 0xffff98e4b911f400 0t0 28058 type=STREAM gmain 961 1030 root 3u a_inode 0,13 0 10717 [eventfd] gmain 961 1030 root 4u a_inode 0,13 0 10717 [eventfd] gmain 961 1030 root 5u unix 0xffff98e4b5c67400 0t0 29199 type=STREAM gmain 961 1030 root 6u a_inode 0,13 0 10717 [eventfd] gmain 961 1030 root 7r a_inode 0,13 0 10717 inotify gdbus 961 1101 root cwd DIR 8,2 4096 2 / gdbus 961 1101 root rtd DIR 8,2 4096 2 / gdbus 961 1101 root txt REG 8,2 182552 918479 /usr/lib/accountsservice/accounts-daemon gdbus 961 1101 root mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so gdbus 961 1101 root mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so gdbus 961 1101 root mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so gdbus 961 1101 root mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so gdbus 961 1101 root mem REG 8,2 27112 656215 /lib/x86_64-linux-gnu/libuuid.so.1.3.0 gdbus 961 1101 root mem REG 8,2 84032 656154 /lib/x86_64-linux-gnu/libgpg-error.so.0.22.0 gdbus 961 1101 root mem REG 8,2 311720 656131 /lib/x86_64-linux-gnu/libblkid.so.1.1.0 gdbus 961 1101 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so gdbus 961 1101 root mem REG 8,2 1155768 656153 /lib/x86_64-linux-gnu/libgcrypt.so.20.2.1 gdbus 961 1101 root mem REG 8,2 112672 924379 /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1 gdbus 961 1101 root mem REG 8,2 153984 656165 /lib/x86_64-linux-gnu/liblzma.so.5.2.2 gdbus 961 1101 root mem REG 8,2 31680 656201 /lib/x86_64-linux-gnu/librt-2.27.so gdbus 961 1101 root mem REG 8,2 464824 656191 /lib/x86_64-linux-gnu/libpcre.so.3.13.3 gdbus 961 1101 root mem REG 8,2 31032 924332 /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4 gdbus 961 1101 root mem REG 8,2 340232 656170 /lib/x86_64-linux-gnu/libmount.so.1.1.0 gdbus 961 1101 root mem REG 8,2 101168 656200 /lib/x86_64-linux-gnu/libresolv-2.27.so gdbus 961 1101 root mem REG 8,2 154832 656203 /lib/x86_64-linux-gnu/libselinux.so.1 gdbus 961 1101 root mem REG 8,2 116960 656216 /lib/x86_64-linux-gnu/libz.so.1.2.11 gdbus 961 1101 root mem REG 8,2 14232 924341 /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4 gdbus 961 1101 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so gdbus 961 1101 root mem REG 8,2 536648 662910 /lib/x86_64-linux-gnu/libsystemd.so.0.21.0 gdbus 961 1101 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so gdbus 961 1101 root mem REG 8,2 1137968 924340 /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4 gdbus 961 1101 root mem REG 8,2 342072 924344 /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4 gdbus 961 1101 root mem REG 8,2 1690808 924338 /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4 gdbus 961 1101 root mem REG 8,2 114000 924402 /usr/lib/x86_64-linux-gnu/libpolkit-gobject-1.so.0.0.0 gdbus 961 1101 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so gdbus 961 1101 root mem REG 8,2 1683056 933058 /usr/lib/locale/locale-archive gdbus 961 1101 root 0r CHR 1,3 0t0 6 /dev/null gdbus 961 1101 root 1u unix 0xffff98e4b911f400 0t0 28058 type=STREAM gdbus 961 1101 root 2u unix 0xffff98e4b911f400 0t0 28058 type=STREAM gdbus 961 1101 root 3u a_inode 0,13 0 10717 [eventfd] gdbus 961 1101 root 4u a_inode 0,13 0 10717 [eventfd] gdbus 961 1101 root 5u unix 0xffff98e4b5c67400 0t0 29199 type=STREAM gdbus 961 1101 root 6u a_inode 0,13 0 10717 [eventfd] gdbus 961 1101 root 7r a_inode 0,13 0 10717 inotify snapd 1017 root cwd DIR 8,2 4096 2 / snapd 1017 root rtd DIR 8,2 4096 2 / snapd 1017 root txt REG 7,10 18915952 6465 /snap/core/7917/usr/lib/snapd/snapd snapd 1017 root mem REG 8,2 101168 656200 /lib/x86_64-linux-gnu/libresolv-2.27.so snapd 1017 root mem REG 8,2 26936 656178 /lib/x86_64-linux-gnu/libnss_dns-2.27.so snapd 1017 root mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so snapd 1017 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so snapd 1017 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so snapd 1017 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so snapd 1017 root 0r CHR 1,3 0t0 6 /dev/null snapd 1017 root 1u unix 0xffff98e4b96e4800 0t0 28613 type=STREAM snapd 1017 root 2u unix 0xffff98e4b96e4800 0t0 28613 type=STREAM snapd 1017 root 4u netlink 0t0 32362 KOBJECT_UEVENT snapd 1017 root 6u a_inode 0,13 0 10717 [eventpoll] snapd 1017 root 7u unix 0xffff98e4b1d06400 0t0 27443 /run/snapd.socket type=STREAM snapd 1017 root 8u unix 0xffff98e4b1d01400 0t0 27445 /run/snapd-snap.socket type=STREAM snapd 1017 1326 root cwd DIR 8,2 4096 2 / snapd 1017 1326 root rtd DIR 8,2 4096 2 / snapd 1017 1326 root txt REG 7,10 18915952 6465 /snap/core/7917/usr/lib/snapd/snapd snapd 1017 1326 root mem REG 8,2 101168 656200 /lib/x86_64-linux-gnu/libresolv-2.27.so snapd 1017 1326 root mem REG 8,2 26936 656178 /lib/x86_64-linux-gnu/libnss_dns-2.27.so snapd 1017 1326 root mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so snapd 1017 1326 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so snapd 1017 1326 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so snapd 1017 1326 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so snapd 1017 1326 root 0r CHR 1,3 0t0 6 /dev/null snapd 1017 1326 root 1u unix 0xffff98e4b96e4800 0t0 28613 type=STREAM snapd 1017 1326 root 2u unix 0xffff98e4b96e4800 0t0 28613 type=STREAM snapd 1017 1326 root 4u netlink 0t0 32362 KOBJECT_UEVENT snapd 1017 1326 root 6u a_inode 0,13 0 10717 [eventpoll] snapd 1017 1326 root 7u unix 0xffff98e4b1d06400 0t0 27443 /run/snapd.socket type=STREAM snapd 1017 1326 root 8u unix 0xffff98e4b1d01400 0t0 27445 /run/snapd-snap.socket type=STREAM snapd 1017 1327 root cwd DIR 8,2 4096 2 / snapd 1017 1327 root rtd DIR 8,2 4096 2 / snapd 1017 1327 root txt REG 7,10 18915952 6465 /snap/core/7917/usr/lib/snapd/snapd snapd 1017 1327 root mem REG 8,2 101168 656200 /lib/x86_64-linux-gnu/libresolv-2.27.so snapd 1017 1327 root mem REG 8,2 26936 656178 /lib/x86_64-linux-gnu/libnss_dns-2.27.so snapd 1017 1327 root mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so snapd 1017 1327 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so snapd 1017 1327 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so snapd 1017 1327 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so snapd 1017 1327 root 0r CHR 1,3 0t0 6 /dev/null snapd 1017 1327 root 1u unix 0xffff98e4b96e4800 0t0 28613 type=STREAM snapd 1017 1327 root 2u unix 0xffff98e4b96e4800 0t0 28613 type=STREAM snapd 1017 1327 root 4u netlink 0t0 32362 KOBJECT_UEVENT snapd 1017 1327 root 6u a_inode 0,13 0 10717 [eventpoll] snapd 1017 1327 root 7u unix 0xffff98e4b1d06400 0t0 27443 /run/snapd.socket type=STREAM snapd 1017 1327 root 8u unix 0xffff98e4b1d01400 0t0 27445 /run/snapd-snap.socket type=STREAM snapd 1017 1328 root cwd DIR 8,2 4096 2 / snapd 1017 1328 root rtd DIR 8,2 4096 2 / snapd 1017 1328 root txt REG 7,10 18915952 6465 /snap/core/7917/usr/lib/snapd/snapd snapd 1017 1328 root mem REG 8,2 101168 656200 /lib/x86_64-linux-gnu/libresolv-2.27.so snapd 1017 1328 root mem REG 8,2 26936 656178 /lib/x86_64-linux-gnu/libnss_dns-2.27.so snapd 1017 1328 root mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so snapd 1017 1328 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so snapd 1017 1328 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so snapd 1017 1328 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so snapd 1017 1328 root 0r CHR 1,3 0t0 6 /dev/null snapd 1017 1328 root 1u unix 0xffff98e4b96e4800 0t0 28613 type=STREAM snapd 1017 1328 root 2u unix 0xffff98e4b96e4800 0t0 28613 type=STREAM snapd 1017 1328 root 4u netlink 0t0 32362 KOBJECT_UEVENT snapd 1017 1328 root 6u a_inode 0,13 0 10717 [eventpoll] snapd 1017 1328 root 7u unix 0xffff98e4b1d06400 0t0 27443 /run/snapd.socket type=STREAM snapd 1017 1328 root 8u unix 0xffff98e4b1d01400 0t0 27445 /run/snapd-snap.socket type=STREAM snapd 1017 1329 root cwd DIR 8,2 4096 2 / snapd 1017 1329 root rtd DIR 8,2 4096 2 / snapd 1017 1329 root txt REG 7,10 18915952 6465 /snap/core/7917/usr/lib/snapd/snapd snapd 1017 1329 root mem REG 8,2 101168 656200 /lib/x86_64-linux-gnu/libresolv-2.27.so snapd 1017 1329 root mem REG 8,2 26936 656178 /lib/x86_64-linux-gnu/libnss_dns-2.27.so snapd 1017 1329 root mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so snapd 1017 1329 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so snapd 1017 1329 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so snapd 1017 1329 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so snapd 1017 1329 root 0r CHR 1,3 0t0 6 /dev/null snapd 1017 1329 root 1u unix 0xffff98e4b96e4800 0t0 28613 type=STREAM snapd 1017 1329 root 2u unix 0xffff98e4b96e4800 0t0 28613 type=STREAM snapd 1017 1329 root 4u netlink 0t0 32362 KOBJECT_UEVENT snapd 1017 1329 root 6u a_inode 0,13 0 10717 [eventpoll] snapd 1017 1329 root 7u unix 0xffff98e4b1d06400 0t0 27443 /run/snapd.socket type=STREAM snapd 1017 1329 root 8u unix 0xffff98e4b1d01400 0t0 27445 /run/snapd-snap.socket type=STREAM snapd 1017 1332 root cwd DIR 8,2 4096 2 / snapd 1017 1332 root rtd DIR 8,2 4096 2 / snapd 1017 1332 root txt REG 7,10 18915952 6465 /snap/core/7917/usr/lib/snapd/snapd snapd 1017 1332 root mem REG 8,2 101168 656200 /lib/x86_64-linux-gnu/libresolv-2.27.so snapd 1017 1332 root mem REG 8,2 26936 656178 /lib/x86_64-linux-gnu/libnss_dns-2.27.so snapd 1017 1332 root mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so snapd 1017 1332 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so snapd 1017 1332 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so snapd 1017 1332 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so snapd 1017 1332 root 0r CHR 1,3 0t0 6 /dev/null snapd 1017 1332 root 1u unix 0xffff98e4b96e4800 0t0 28613 type=STREAM snapd 1017 1332 root 2u unix 0xffff98e4b96e4800 0t0 28613 type=STREAM snapd 1017 1332 root 4u netlink 0t0 32362 KOBJECT_UEVENT snapd 1017 1332 root 6u a_inode 0,13 0 10717 [eventpoll] snapd 1017 1332 root 7u unix 0xffff98e4b1d06400 0t0 27443 /run/snapd.socket type=STREAM snapd 1017 1332 root 8u unix 0xffff98e4b1d01400 0t0 27445 /run/snapd-snap.socket type=STREAM snapd 1017 1342 root cwd DIR 8,2 4096 2 / snapd 1017 1342 root rtd DIR 8,2 4096 2 / snapd 1017 1342 root txt REG 7,10 18915952 6465 /snap/core/7917/usr/lib/snapd/snapd snapd 1017 1342 root mem REG 8,2 101168 656200 /lib/x86_64-linux-gnu/libresolv-2.27.so snapd 1017 1342 root mem REG 8,2 26936 656178 /lib/x86_64-linux-gnu/libnss_dns-2.27.so snapd 1017 1342 root mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so snapd 1017 1342 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so snapd 1017 1342 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so snapd 1017 1342 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so snapd 1017 1342 root 0r CHR 1,3 0t0 6 /dev/null snapd 1017 1342 root 1u unix 0xffff98e4b96e4800 0t0 28613 type=STREAM snapd 1017 1342 root 2u unix 0xffff98e4b96e4800 0t0 28613 type=STREAM snapd 1017 1342 root 4u netlink 0t0 32362 KOBJECT_UEVENT snapd 1017 1342 root 6u a_inode 0,13 0 10717 [eventpoll] snapd 1017 1342 root 7u unix 0xffff98e4b1d06400 0t0 27443 /run/snapd.socket type=STREAM snapd 1017 1342 root 8u unix 0xffff98e4b1d01400 0t0 27445 /run/snapd-snap.socket type=STREAM snapd 1017 1359 root cwd DIR 8,2 4096 2 / snapd 1017 1359 root rtd DIR 8,2 4096 2 / snapd 1017 1359 root txt REG 7,10 18915952 6465 /snap/core/7917/usr/lib/snapd/snapd snapd 1017 1359 root mem REG 8,2 101168 656200 /lib/x86_64-linux-gnu/libresolv-2.27.so snapd 1017 1359 root mem REG 8,2 26936 656178 /lib/x86_64-linux-gnu/libnss_dns-2.27.so snapd 1017 1359 root mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so snapd 1017 1359 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so snapd 1017 1359 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so snapd 1017 1359 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so snapd 1017 1359 root 0r CHR 1,3 0t0 6 /dev/null snapd 1017 1359 root 1u unix 0xffff98e4b96e4800 0t0 28613 type=STREAM snapd 1017 1359 root 2u unix 0xffff98e4b96e4800 0t0 28613 type=STREAM snapd 1017 1359 root 4u netlink 0t0 32362 KOBJECT_UEVENT snapd 1017 1359 root 6u a_inode 0,13 0 10717 [eventpoll] snapd 1017 1359 root 7u unix 0xffff98e4b1d06400 0t0 27443 /run/snapd.socket type=STREAM snapd 1017 1359 root 8u unix 0xffff98e4b1d01400 0t0 27445 /run/snapd-snap.socket type=STREAM snapd 1017 1382 root cwd DIR 8,2 4096 2 / snapd 1017 1382 root rtd DIR 8,2 4096 2 / snapd 1017 1382 root txt REG 7,10 18915952 6465 /snap/core/7917/usr/lib/snapd/snapd snapd 1017 1382 root mem REG 8,2 101168 656200 /lib/x86_64-linux-gnu/libresolv-2.27.so snapd 1017 1382 root mem REG 8,2 26936 656178 /lib/x86_64-linux-gnu/libnss_dns-2.27.so snapd 1017 1382 root mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so snapd 1017 1382 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so snapd 1017 1382 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so snapd 1017 1382 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so snapd 1017 1382 root 0r CHR 1,3 0t0 6 /dev/null snapd 1017 1382 root 1u unix 0xffff98e4b96e4800 0t0 28613 type=STREAM snapd 1017 1382 root 2u unix 0xffff98e4b96e4800 0t0 28613 type=STREAM snapd 1017 1382 root 4u netlink 0t0 32362 KOBJECT_UEVENT snapd 1017 1382 root 6u a_inode 0,13 0 10717 [eventpoll] snapd 1017 1382 root 7u unix 0xffff98e4b1d06400 0t0 27443 /run/snapd.socket type=STREAM snapd 1017 1382 root 8u unix 0xffff98e4b1d01400 0t0 27445 /run/snapd-snap.socket type=STREAM snapd 1017 1517 root cwd DIR 8,2 4096 2 / snapd 1017 1517 root rtd DIR 8,2 4096 2 / snapd 1017 1517 root txt REG 7,10 18915952 6465 /snap/core/7917/usr/lib/snapd/snapd snapd 1017 1517 root mem REG 8,2 101168 656200 /lib/x86_64-linux-gnu/libresolv-2.27.so snapd 1017 1517 root mem REG 8,2 26936 656178 /lib/x86_64-linux-gnu/libnss_dns-2.27.so snapd 1017 1517 root mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so snapd 1017 1517 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so snapd 1017 1517 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so snapd 1017 1517 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so snapd 1017 1517 root 0r CHR 1,3 0t0 6 /dev/null snapd 1017 1517 root 1u unix 0xffff98e4b96e4800 0t0 28613 type=STREAM snapd 1017 1517 root 2u unix 0xffff98e4b96e4800 0t0 28613 type=STREAM snapd 1017 1517 root 4u netlink 0t0 32362 KOBJECT_UEVENT snapd 1017 1517 root 6u a_inode 0,13 0 10717 [eventpoll] snapd 1017 1517 root 7u unix 0xffff98e4b1d06400 0t0 27443 /run/snapd.socket type=STREAM snapd 1017 1517 root 8u unix 0xffff98e4b1d01400 0t0 27445 /run/snapd-snap.socket type=STREAM systemd-l 1018 root cwd DIR 8,2 4096 2 / systemd-l 1018 root rtd DIR 8,2 4096 2 / systemd-l 1018 root txt REG 8,2 219272 668817 /lib/systemd/systemd-logind systemd-l 1018 root mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so systemd-l 1018 root mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so systemd-l 1018 root mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so systemd-l 1018 root mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so systemd-l 1018 root mem REG 8,2 1700792 656167 /lib/x86_64-linux-gnu/libm-2.27.so systemd-l 1018 root mem REG 8,2 121016 655394 /lib/x86_64-linux-gnu/libudev.so.1.6.9 systemd-l 1018 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so systemd-l 1018 root mem REG 8,2 464824 656191 /lib/x86_64-linux-gnu/libpcre.so.3.13.3 systemd-l 1018 root mem REG 8,2 84032 656154 /lib/x86_64-linux-gnu/libgpg-error.so.0.22.0 systemd-l 1018 root mem REG 8,2 43304 656160 /lib/x86_64-linux-gnu/libjson-c.so.3.0.1 systemd-l 1018 root mem REG 8,2 34872 924307 /usr/lib/x86_64-linux-gnu/libargon2.so.0 systemd-l 1018 root mem REG 8,2 432640 656144 /lib/x86_64-linux-gnu/libdevmapper.so.1.02.1 systemd-l 1018 root mem REG 8,2 27112 656215 /lib/x86_64-linux-gnu/libuuid.so.1.3.0 systemd-l 1018 root mem REG 8,2 18680 656129 /lib/x86_64-linux-gnu/libattr.so.1.1.0 systemd-l 1018 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so systemd-l 1018 root mem REG 8,2 311720 656131 /lib/x86_64-linux-gnu/libblkid.so.1.1.0 systemd-l 1018 root mem REG 8,2 112672 924379 /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1 systemd-l 1018 root mem REG 8,2 153984 656165 /lib/x86_64-linux-gnu/liblzma.so.5.2.2 systemd-l 1018 root mem REG 8,2 206872 656157 /lib/x86_64-linux-gnu/libidn.so.11.6.16 systemd-l 1018 root mem REG 8,2 154832 656203 /lib/x86_64-linux-gnu/libselinux.so.1 systemd-l 1018 root mem REG 8,2 288976 656202 /lib/x86_64-linux-gnu/libseccomp.so.2.4.1 systemd-l 1018 root mem REG 8,2 27088 924361 /usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0 systemd-l 1018 root mem REG 8,2 1155768 656153 /lib/x86_64-linux-gnu/libgcrypt.so.20.2.1 systemd-l 1018 root mem REG 8,2 310040 656140 /lib/x86_64-linux-gnu/libcryptsetup.so.12.2.0 systemd-l 1018 root mem REG 8,2 22768 656136 /lib/x86_64-linux-gnu/libcap.so.2.25 systemd-l 1018 root mem REG 8,2 31680 656201 /lib/x86_64-linux-gnu/librt-2.27.so systemd-l 1018 root mem REG 8,2 31232 656125 /lib/x86_64-linux-gnu/libacl.so.1.1.0 systemd-l 1018 root mem REG 8,2 2363632 655401 /lib/systemd/libsystemd-shared-237.so systemd-l 1018 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so systemd-l 1018 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so systemd-l 1018 root 0r CHR 1,3 0t0 6 /dev/null systemd-l 1018 root 1u unix 0xffff98e4affb6400 0t0 28694 type=STREAM systemd-l 1018 root 2u unix 0xffff98e4affb6400 0t0 28694 type=STREAM systemd-l 1018 root 3u unix 0xffff98e4b5c66000 0t0 29208 type=DGRAM systemd-l 1018 root 4u a_inode 0,13 0 10717 [eventpoll] systemd-l 1018 root 5u a_inode 0,13 0 10717 [timerfd] systemd-l 1018 root 6u a_inode 0,13 0 10717 [signalfd] systemd-l 1018 root 7r REG 0,21 4096 16735 /sys/devices/virtual/tty/tty0/active systemd-l 1018 root 8u netlink 0t0 29226 KOBJECT_UEVENT systemd-l 1018 root 9u netlink 0t0 29227 KOBJECT_UEVENT systemd-l 1018 root 10u netlink 0t0 29228 KOBJECT_UEVENT systemd-l 1018 root 11u netlink 0t0 29229 KOBJECT_UEVENT systemd-l 1018 root 12u unix 0xffff98e4b5c63800 0t0 29230 type=STREAM systemd-l 1018 root 13u a_inode 0,13 0 10717 [timerfd] systemd-l 1018 root 14u CHR 13,64 0t0 146 /dev/input/event0 systemd-l 1018 root 15u CHR 13,65 0t0 151 /dev/input/event1 systemd-l 1018 root 16u CHR 4,6 0t0 25 /dev/tty6 systemd-l 1018 root 17r FIFO 0,23 0t0 661 /run/systemd/inhibit/1.ref systemd-l 1018 root 18r FIFO 0,23 0t0 715 /run/systemd/sessions/1.ref systemd-l 1018 root 19r FIFO 0,23 0t0 719 /run/systemd/sessions/49.ref cron 1038 root cwd DIR 8,2 4096 5989 /var/spool/cron cron 1038 root rtd DIR 8,2 4096 2 / cron 1038 root txt REG 8,2 47416 924741 /usr/sbin/cron cron 1038 root mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so cron 1038 root mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so cron 1038 root mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so cron 1038 root mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so cron 1038 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so cron 1038 root mem REG 8,2 18712 656135 /lib/x86_64-linux-gnu/libcap-ng.so.0.0.0 cron 1038 root mem REG 8,2 464824 656191 /lib/x86_64-linux-gnu/libpcre.so.3.13.3 cron 1038 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so cron 1038 root mem REG 8,2 124848 656130 /lib/x86_64-linux-gnu/libaudit.so.1.0.0 cron 1038 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so cron 1038 root mem REG 8,2 154832 656203 /lib/x86_64-linux-gnu/libselinux.so.1 cron 1038 root mem REG 8,2 55848 656185 /lib/x86_64-linux-gnu/libpam.so.0.83.1 cron 1038 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so cron 1038 root mem REG 8,2 1683056 933058 /usr/lib/locale/locale-archive cron 1038 root mem REG 8,2 26376 1049137 /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache cron 1038 root 0r CHR 1,3 0t0 6 /dev/null cron 1038 root 1u unix 0xffff98e4b637fc00 0t0 29086 type=STREAM cron 1038 root 2u unix 0xffff98e4b637fc00 0t0 29086 type=STREAM cron 1038 root 3uW REG 0,23 5 675 /run/crond.pid login 1043 root cwd DIR 8,2 4096 2 / login 1043 root rtd DIR 8,2 4096 2 / login 1043 root txt REG 8,2 52664 131156 /bin/login login 1043 root mem REG 8,2 258040 655397 /lib/x86_64-linux-gnu/libnss_systemd.so.2 login 1043 root mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so login 1043 root mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so login 1043 root mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so login 1043 root mem REG 8,2 31680 656201 /lib/x86_64-linux-gnu/librt-2.27.so login 1043 root mem REG 8,2 258040 655398 /lib/x86_64-linux-gnu/security/pam_systemd.so login 1043 root mem REG 8,2 10376 656261 /lib/x86_64-linux-gnu/security/pam_umask.so login 1043 root mem REG 8,2 10280 656234 /lib/x86_64-linux-gnu/security/pam_keyinit.so login 1043 root mem REG 8,2 10312 656240 /lib/x86_64-linux-gnu/security/pam_mail.so login 1043 root mem REG 8,2 10336 656242 /lib/x86_64-linux-gnu/security/pam_motd.so login 1043 root mem REG 8,2 10592 656214 /lib/x86_64-linux-gnu/libutil-2.27.so login 1043 root mem REG 8,2 14488 656235 /lib/x86_64-linux-gnu/security/pam_lastlog.so login 1043 root mem REG 8,2 22872 656236 /lib/x86_64-linux-gnu/security/pam_limits.so login 1043 root mem REG 8,2 14544 656232 /lib/x86_64-linux-gnu/security/pam_group.so login 1043 root mem REG 8,2 22768 656136 /lib/x86_64-linux-gnu/libcap.so.2.25 login 1043 root mem REG 8,2 10080 656222 /lib/x86_64-linux-gnu/security/pam_cap.so login 1043 root mem REG 8,2 6104 656245 /lib/x86_64-linux-gnu/security/pam_permit.so login 1043 root mem REG 8,2 5776 656224 /lib/x86_64-linux-gnu/security/pam_deny.so login 1043 root mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so login 1043 root mem REG 8,2 39208 656139 /lib/x86_64-linux-gnu/libcrypt-2.27.so login 1043 root mem REG 8,2 60272 656262 /lib/x86_64-linux-gnu/security/pam_unix.so login 1043 root mem REG 8,2 14464 656226 /lib/x86_64-linux-gnu/security/pam_env.so login 1043 root mem REG 8,2 10336 656239 /lib/x86_64-linux-gnu/security/pam_loginuid.so login 1043 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so login 1043 root mem REG 8,2 464824 656191 /lib/x86_64-linux-gnu/libpcre.so.3.13.3 login 1043 root mem REG 8,2 154832 656203 /lib/x86_64-linux-gnu/libselinux.so.1 login 1043 root mem REG 8,2 18736 656250 /lib/x86_64-linux-gnu/security/pam_selinux.so login 1043 root mem REG 8,2 10264 656244 /lib/x86_64-linux-gnu/security/pam_nologin.so login 1043 root mem REG 8,2 10304 656249 /lib/x86_64-linux-gnu/security/pam_securetty.so login 1043 root mem REG 8,2 10312 656229 /lib/x86_64-linux-gnu/security/pam_faildelay.so login 1043 root mem REG 8,2 18712 656135 /lib/x86_64-linux-gnu/libcap-ng.so.0.0.0 login 1043 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so login 1043 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so login 1043 root mem REG 8,2 124848 656130 /lib/x86_64-linux-gnu/libaudit.so.1.0.0 login 1043 root mem REG 8,2 14576 656186 /lib/x86_64-linux-gnu/libpam_misc.so.0.82.0 login 1043 root mem REG 8,2 55848 656185 /lib/x86_64-linux-gnu/libpam.so.0.83.1 login 1043 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so login 1043 root mem REG 8,2 1683056 933058 /usr/lib/locale/locale-archive login 1043 root mem REG 8,2 26376 1049137 /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache login 1043 root 0u CHR 4,64 0t0 87 /dev/ttyS0 login 1043 root 1u CHR 4,64 0t0 87 /dev/ttyS0 login 1043 root 2u CHR 4,64 0t0 87 /dev/ttyS0 login 1043 root 3u unix 0xffff98e4b460e800 0t0 33487 type=DGRAM login 1043 root 6w FIFO 0,23 0t0 715 /run/systemd/sessions/1.ref dbus-daem 1048 messagebus cwd DIR 8,2 4096 2 / dbus-daem 1048 messagebus rtd DIR 8,2 4096 2 / dbus-daem 1048 messagebus txt REG 8,2 236584 918017 /usr/bin/dbus-daemon dbus-daem 1048 messagebus mem REG 8,2 258040 655397 /lib/x86_64-linux-gnu/libnss_systemd.so.2 dbus-daem 1048 messagebus mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so dbus-daem 1048 messagebus mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so dbus-daem 1048 messagebus mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so dbus-daem 1048 messagebus mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so dbus-daem 1048 messagebus mem REG 8,2 84032 656154 /lib/x86_64-linux-gnu/libgpg-error.so.0.22.0 dbus-daem 1048 messagebus mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so dbus-daem 1048 messagebus mem REG 8,2 464824 656191 /lib/x86_64-linux-gnu/libpcre.so.3.13.3 dbus-daem 1048 messagebus mem REG 8,2 1155768 656153 /lib/x86_64-linux-gnu/libgcrypt.so.20.2.1 dbus-daem 1048 messagebus mem REG 8,2 112672 924379 /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1 dbus-daem 1048 messagebus mem REG 8,2 153984 656165 /lib/x86_64-linux-gnu/liblzma.so.5.2.2 dbus-daem 1048 messagebus mem REG 8,2 31680 656201 /lib/x86_64-linux-gnu/librt-2.27.so dbus-daem 1048 messagebus mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so dbus-daem 1048 messagebus mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so dbus-daem 1048 messagebus mem REG 8,2 64144 656127 /lib/x86_64-linux-gnu/libapparmor.so.1.4.2 dbus-daem 1048 messagebus mem REG 8,2 18712 656135 /lib/x86_64-linux-gnu/libcap-ng.so.0.0.0 dbus-daem 1048 messagebus mem REG 8,2 124848 656130 /lib/x86_64-linux-gnu/libaudit.so.1.0.0 dbus-daem 1048 messagebus mem REG 8,2 154832 656203 /lib/x86_64-linux-gnu/libselinux.so.1 dbus-daem 1048 messagebus mem REG 8,2 202880 655558 /lib/x86_64-linux-gnu/libexpat.so.1.6.7 dbus-daem 1048 messagebus mem REG 8,2 536648 662910 /lib/x86_64-linux-gnu/libsystemd.so.0.21.0 dbus-daem 1048 messagebus mem REG 8,2 313496 656141 /lib/x86_64-linux-gnu/libdbus-1.so.3.19.4 dbus-daem 1048 messagebus mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so dbus-daem 1048 messagebus 0u CHR 1,3 0t0 6 /dev/null dbus-daem 1048 messagebus 1u unix 0xffff98e4b637b800 0t0 29165 type=STREAM dbus-daem 1048 messagebus 2u unix 0xffff98e4b637b800 0t0 29165 type=STREAM dbus-daem 1048 messagebus 3u unix 0xffff98e4afa55c00 0t0 27489 /var/run/dbus/system_bus_socket type=STREAM dbus-daem 1048 messagebus 4u a_inode 0,13 0 10717 [eventpoll] dbus-daem 1048 messagebus 5u sock 0,9 0t0 29373 protocol: NETLINK dbus-daem 1048 messagebus 6u unix 0xffff98e4b5c66400 0t0 29374 type=DGRAM dbus-daem 1048 messagebus 7r a_inode 0,13 0 10717 inotify dbus-daem 1048 messagebus 8u unix 0xffff98e4b5c63000 0t0 29375 type=STREAM dbus-daem 1048 messagebus 9u unix 0xffff98e4b5c67c00 0t0 29376 type=STREAM dbus-daem 1048 messagebus 10u unix 0xffff98e4b1dc2400 0t0 29377 /var/run/dbus/system_bus_socket type=STREAM dbus-daem 1048 messagebus 11u unix 0xffff98e4b1d03400 0t0 29378 /var/run/dbus/system_bus_socket type=STREAM dbus-daem 1048 messagebus 12u unix 0xffff98e4b5d86c00 0t0 30460 /var/run/dbus/system_bus_socket type=STREAM dbus-daem 1048 messagebus 13u unix 0xffff98e4b6379c00 0t0 29380 /var/run/dbus/system_bus_socket type=STREAM dbus-daem 1048 messagebus 14u unix 0xffff98e4b5c64800 0t0 29381 /var/run/dbus/system_bus_socket type=STREAM dbus-daem 1048 messagebus 15u unix 0xffff98e4b5c62800 0t0 29382 /var/run/dbus/system_bus_socket type=STREAM dbus-daem 1048 messagebus 16u unix 0xffff98e4b5d87800 0t0 30630 /var/run/dbus/system_bus_socket type=STREAM dbus-daem 1048 messagebus 17u unix 0xffff98e4b5d85000 0t0 30671 /var/run/dbus/system_bus_socket type=STREAM unattende 1099 root cwd DIR 8,2 4096 2 / unattende 1099 root rtd DIR 8,2 4096 2 / unattende 1099 root txt REG 8,2 4526456 918753 /usr/bin/python3.6 unattende 1099 root mem REG 8,2 121016 655394 /lib/x86_64-linux-gnu/libudev.so.1.6.9 unattende 1099 root mem REG 8,2 501680 923340 /usr/lib/x86_64-linux-gnu/libzstd.so.1.3.3 unattende 1099 root mem REG 8,2 66728 656133 /lib/x86_64-linux-gnu/libbz2.so.1.0.4 unattende 1099 root mem REG 8,2 96616 656152 /lib/x86_64-linux-gnu/libgcc_s.so.1 unattende 1099 root mem REG 8,2 1594864 924414 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25 unattende 1099 root mem REG 8,2 1822008 924305 /usr/lib/x86_64-linux-gnu/libapt-pkg.so.5.0.2 unattende 1099 root mem REG 8,2 342624 919965 /usr/lib/python3/dist-packages/apt_pkg.cpython-36m-x86_64-linux-gnu.so unattende 1099 root mem REG 8,2 186076 1049145 /usr/lib/x86_64-linux-gnu/girepository-1.0/GLib-2.0.typelib unattende 1099 root mem REG 8,2 27112 656215 /lib/x86_64-linux-gnu/libuuid.so.1.3.0 unattende 1099 root mem REG 8,2 311720 656131 /lib/x86_64-linux-gnu/libblkid.so.1.1.0 unattende 1099 root mem REG 8,2 340232 656170 /lib/x86_64-linux-gnu/libmount.so.1.1.0 unattende 1099 root mem REG 8,2 101168 656200 /lib/x86_64-linux-gnu/libresolv-2.27.so unattende 1099 root mem REG 8,2 154832 656203 /lib/x86_64-linux-gnu/libselinux.so.1 unattende 1099 root mem REG 8,2 1690808 924338 /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4 unattende 1099 root mem REG 8,2 14232 924341 /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4 unattende 1099 root mem REG 8,2 31032 924332 /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4 unattende 1099 root mem REG 8,2 342072 924344 /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4 unattende 1099 root mem REG 8,2 212456 924339 /usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0 unattende 1099 root mem REG 8,2 315848 921267 /usr/lib/python3/dist-packages/gi/_gi.cpython-36m-x86_64-linux-gnu.so unattende 1099 root mem REG 8,2 464824 656191 /lib/x86_64-linux-gnu/libpcre.so.3.13.3 unattende 1099 root mem REG 8,2 1137968 924340 /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4 unattende 1099 root mem REG 8,2 19144 919958 /usr/lib/python3/dist-packages/_dbus_glib_bindings.cpython-36m-x86_64-linux-gnu.so unattende 1099 root mem REG 8,2 84032 656154 /lib/x86_64-linux-gnu/libgpg-error.so.0.22.0 unattende 1099 root mem REG 8,2 1155768 656153 /lib/x86_64-linux-gnu/libgcrypt.so.20.2.1 unattende 1099 root mem REG 8,2 112672 924379 /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1 unattende 1099 root mem REG 8,2 153984 656165 /lib/x86_64-linux-gnu/liblzma.so.5.2.2 unattende 1099 root mem REG 8,2 31680 656201 /lib/x86_64-linux-gnu/librt-2.27.so unattende 1099 root mem REG 8,2 536648 662910 /lib/x86_64-linux-gnu/libsystemd.so.0.21.0 unattende 1099 root mem REG 8,2 313496 656141 /lib/x86_64-linux-gnu/libdbus-1.so.3.19.4 unattende 1099 root mem REG 8,2 159408 919957 /usr/lib/python3/dist-packages/_dbus_bindings.cpython-36m-x86_64-linux-gnu.so unattende 1099 root mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so unattende 1099 root mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so unattende 1099 root mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so unattende 1099 root mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so unattende 1099 root mem REG 8,2 1700792 656167 /lib/x86_64-linux-gnu/libm-2.27.so unattende 1099 root mem REG 8,2 116960 656216 /lib/x86_64-linux-gnu/libz.so.1.2.11 unattende 1099 root mem REG 8,2 202880 655558 /lib/x86_64-linux-gnu/libexpat.so.1.6.7 unattende 1099 root mem REG 8,2 10592 656214 /lib/x86_64-linux-gnu/libutil-2.27.so unattende 1099 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so unattende 1099 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so unattende 1099 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so unattende 1099 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so unattende 1099 root mem REG 8,2 1683056 933058 /usr/lib/locale/locale-archive unattende 1099 root mem REG 8,2 26376 1049137 /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache unattende 1099 root 0r CHR 1,3 0t0 6 /dev/null unattende 1099 root 1u unix 0xffff98e4afa15800 0t0 29474 type=STREAM unattende 1099 root 2u unix 0xffff98e4afa15800 0t0 29474 type=STREAM unattende 1099 root 3w REG 8,2 0 4981 /var/log/unattended-upgrades/unattended-upgrades-shutdown.log unattende 1099 root 4u unix 0xffff98e4b5d85800 0t0 30670 type=STREAM unattende 1099 root 5u a_inode 0,13 0 10717 [eventfd] unattende 1099 root 6u a_inode 0,13 0 10717 [eventfd] unattende 1099 root 8w FIFO 0,23 0t0 661 /run/systemd/inhibit/1.ref gmain 1099 1311 root cwd DIR 8,2 4096 2 / gmain 1099 1311 root rtd DIR 8,2 4096 2 / gmain 1099 1311 root txt REG 8,2 4526456 918753 /usr/bin/python3.6 gmain 1099 1311 root mem REG 8,2 121016 655394 /lib/x86_64-linux-gnu/libudev.so.1.6.9 gmain 1099 1311 root mem REG 8,2 501680 923340 /usr/lib/x86_64-linux-gnu/libzstd.so.1.3.3 gmain 1099 1311 root mem REG 8,2 66728 656133 /lib/x86_64-linux-gnu/libbz2.so.1.0.4 gmain 1099 1311 root mem REG 8,2 96616 656152 /lib/x86_64-linux-gnu/libgcc_s.so.1 gmain 1099 1311 root mem REG 8,2 1594864 924414 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25 gmain 1099 1311 root mem REG 8,2 1822008 924305 /usr/lib/x86_64-linux-gnu/libapt-pkg.so.5.0.2 gmain 1099 1311 root mem REG 8,2 342624 919965 /usr/lib/python3/dist-packages/apt_pkg.cpython-36m-x86_64-linux-gnu.so gmain 1099 1311 root mem REG 8,2 186076 1049145 /usr/lib/x86_64-linux-gnu/girepository-1.0/GLib-2.0.typelib gmain 1099 1311 root mem REG 8,2 27112 656215 /lib/x86_64-linux-gnu/libuuid.so.1.3.0 gmain 1099 1311 root mem REG 8,2 311720 656131 /lib/x86_64-linux-gnu/libblkid.so.1.1.0 gmain 1099 1311 root mem REG 8,2 340232 656170 /lib/x86_64-linux-gnu/libmount.so.1.1.0 gmain 1099 1311 root mem REG 8,2 101168 656200 /lib/x86_64-linux-gnu/libresolv-2.27.so gmain 1099 1311 root mem REG 8,2 154832 656203 /lib/x86_64-linux-gnu/libselinux.so.1 gmain 1099 1311 root mem REG 8,2 1690808 924338 /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4 gmain 1099 1311 root mem REG 8,2 14232 924341 /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4 gmain 1099 1311 root mem REG 8,2 31032 924332 /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4 gmain 1099 1311 root mem REG 8,2 342072 924344 /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4 gmain 1099 1311 root mem REG 8,2 212456 924339 /usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0 gmain 1099 1311 root mem REG 8,2 315848 921267 /usr/lib/python3/dist-packages/gi/_gi.cpython-36m-x86_64-linux-gnu.so gmain 1099 1311 root mem REG 8,2 464824 656191 /lib/x86_64-linux-gnu/libpcre.so.3.13.3 gmain 1099 1311 root mem REG 8,2 1137968 924340 /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4 gmain 1099 1311 root mem REG 8,2 19144 919958 /usr/lib/python3/dist-packages/_dbus_glib_bindings.cpython-36m-x86_64-linux-gnu.so gmain 1099 1311 root mem REG 8,2 84032 656154 /lib/x86_64-linux-gnu/libgpg-error.so.0.22.0 gmain 1099 1311 root mem REG 8,2 1155768 656153 /lib/x86_64-linux-gnu/libgcrypt.so.20.2.1 gmain 1099 1311 root mem REG 8,2 112672 924379 /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1 gmain 1099 1311 root mem REG 8,2 153984 656165 /lib/x86_64-linux-gnu/liblzma.so.5.2.2 gmain 1099 1311 root mem REG 8,2 31680 656201 /lib/x86_64-linux-gnu/librt-2.27.so gmain 1099 1311 root mem REG 8,2 536648 662910 /lib/x86_64-linux-gnu/libsystemd.so.0.21.0 gmain 1099 1311 root mem REG 8,2 313496 656141 /lib/x86_64-linux-gnu/libdbus-1.so.3.19.4 gmain 1099 1311 root mem REG 8,2 159408 919957 /usr/lib/python3/dist-packages/_dbus_bindings.cpython-36m-x86_64-linux-gnu.so gmain 1099 1311 root mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so gmain 1099 1311 root mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so gmain 1099 1311 root mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so gmain 1099 1311 root mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so gmain 1099 1311 root mem REG 8,2 1700792 656167 /lib/x86_64-linux-gnu/libm-2.27.so gmain 1099 1311 root mem REG 8,2 116960 656216 /lib/x86_64-linux-gnu/libz.so.1.2.11 gmain 1099 1311 root mem REG 8,2 202880 655558 /lib/x86_64-linux-gnu/libexpat.so.1.6.7 gmain 1099 1311 root mem REG 8,2 10592 656214 /lib/x86_64-linux-gnu/libutil-2.27.so gmain 1099 1311 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so gmain 1099 1311 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so gmain 1099 1311 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so gmain 1099 1311 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so gmain 1099 1311 root mem REG 8,2 1683056 933058 /usr/lib/locale/locale-archive gmain 1099 1311 root mem REG 8,2 26376 1049137 /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache gmain 1099 1311 root 0r CHR 1,3 0t0 6 /dev/null gmain 1099 1311 root 1u unix 0xffff98e4afa15800 0t0 29474 type=STREAM gmain 1099 1311 root 2u unix 0xffff98e4afa15800 0t0 29474 type=STREAM gmain 1099 1311 root 3w REG 8,2 0 4981 /var/log/unattended-upgrades/unattended-upgrades-shutdown.log gmain 1099 1311 root 4u unix 0xffff98e4b5d85800 0t0 30670 type=STREAM gmain 1099 1311 root 5u a_inode 0,13 0 10717 [eventfd] gmain 1099 1311 root 6u a_inode 0,13 0 10717 [eventfd] gmain 1099 1311 root 8w FIFO 0,23 0t0 661 /run/systemd/inhibit/1.ref atd 1100 daemon cwd DIR 8,2 4096 5991 /var/spool/cron/atjobs atd 1100 daemon rtd DIR 8,2 4096 2 / atd 1100 daemon txt REG 8,2 26632 924733 /usr/sbin/atd atd 1100 daemon mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so atd 1100 daemon mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so atd 1100 daemon mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so atd 1100 daemon mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so atd 1100 daemon mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so atd 1100 daemon mem REG 8,2 18712 656135 /lib/x86_64-linux-gnu/libcap-ng.so.0.0.0 atd 1100 daemon mem REG 8,2 464824 656191 /lib/x86_64-linux-gnu/libpcre.so.3.13.3 atd 1100 daemon mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so atd 1100 daemon mem REG 8,2 124848 656130 /lib/x86_64-linux-gnu/libaudit.so.1.0.0 atd 1100 daemon mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so atd 1100 daemon mem REG 8,2 154832 656203 /lib/x86_64-linux-gnu/libselinux.so.1 atd 1100 daemon mem REG 8,2 55848 656185 /lib/x86_64-linux-gnu/libpam.so.0.83.1 atd 1100 daemon mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so atd 1100 daemon 0u CHR 1,3 0t0 6 /dev/null atd 1100 daemon 1u CHR 1,3 0t0 6 /dev/null atd 1100 daemon 2u CHR 1,3 0t0 6 /dev/null atd 1100 daemon 3uW REG 0,23 5 695 /run/atd.pid container 1112 root cwd DIR 8,2 4096 2 / container 1112 root rtd DIR 8,2 4096 2 / container 1112 root txt REG 8,2 40697760 940062 /usr/bin/containerd container 1112 root mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so container 1112 root mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so container 1112 root mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so container 1112 root mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so container 1112 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so container 1112 root mem REG 8,2 288976 656202 /lib/x86_64-linux-gnu/libseccomp.so.2.4.1 container 1112 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so container 1112 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so container 1112 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so container 1112 root mem-W REG 8,2 131072 399496 /var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db container 1112 root 0r CHR 1,3 0t0 6 /dev/null container 1112 root 1u unix 0xffff98e4b5d80c00 0t0 29684 type=STREAM container 1112 root 2u unix 0xffff98e4b5d80c00 0t0 29684 type=STREAM container 1112 root 3uW REG 8,2 131072 399496 /var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db container 1112 root 4u a_inode 0,13 0 10717 [eventpoll] container 1112 root 5u a_inode 0,13 0 10717 [eventpoll] container 1112 root 6u unix 0xffff98e4b942f000 0t0 30726 /run/containerd/containerd.sock type=STREAM container 1112 root 7u IPv4 30727 0t0 TCP localhost:42351 (LISTEN) container 1112 1303 root cwd DIR 8,2 4096 2 / container 1112 1303 root rtd DIR 8,2 4096 2 / container 1112 1303 root txt REG 8,2 40697760 940062 /usr/bin/containerd container 1112 1303 root mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so container 1112 1303 root mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so container 1112 1303 root mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so container 1112 1303 root mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so container 1112 1303 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so container 1112 1303 root mem REG 8,2 288976 656202 /lib/x86_64-linux-gnu/libseccomp.so.2.4.1 container 1112 1303 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so container 1112 1303 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so container 1112 1303 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so container 1112 1303 root mem-W REG 8,2 131072 399496 /var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db container 1112 1303 root 0r CHR 1,3 0t0 6 /dev/null container 1112 1303 root 1u unix 0xffff98e4b5d80c00 0t0 29684 type=STREAM container 1112 1303 root 2u unix 0xffff98e4b5d80c00 0t0 29684 type=STREAM container 1112 1303 root 3uW REG 8,2 131072 399496 /var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db container 1112 1303 root 4u a_inode 0,13 0 10717 [eventpoll] container 1112 1303 root 5u a_inode 0,13 0 10717 [eventpoll] container 1112 1303 root 6u unix 0xffff98e4b942f000 0t0 30726 /run/containerd/containerd.sock type=STREAM container 1112 1303 root 7u IPv4 30727 0t0 TCP localhost:42351 (LISTEN) container 1112 1304 root cwd DIR 8,2 4096 2 / container 1112 1304 root rtd DIR 8,2 4096 2 / container 1112 1304 root txt REG 8,2 40697760 940062 /usr/bin/containerd container 1112 1304 root mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so container 1112 1304 root mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so container 1112 1304 root mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so container 1112 1304 root mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so container 1112 1304 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so container 1112 1304 root mem REG 8,2 288976 656202 /lib/x86_64-linux-gnu/libseccomp.so.2.4.1 container 1112 1304 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so container 1112 1304 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so container 1112 1304 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so container 1112 1304 root mem-W REG 8,2 131072 399496 /var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db container 1112 1304 root 0r CHR 1,3 0t0 6 /dev/null container 1112 1304 root 1u unix 0xffff98e4b5d80c00 0t0 29684 type=STREAM container 1112 1304 root 2u unix 0xffff98e4b5d80c00 0t0 29684 type=STREAM container 1112 1304 root 3uW REG 8,2 131072 399496 /var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db container 1112 1304 root 4u a_inode 0,13 0 10717 [eventpoll] container 1112 1304 root 5u a_inode 0,13 0 10717 [eventpoll] container 1112 1304 root 6u unix 0xffff98e4b942f000 0t0 30726 /run/containerd/containerd.sock type=STREAM container 1112 1304 root 7u IPv4 30727 0t0 TCP localhost:42351 (LISTEN) container 1112 1305 root cwd DIR 8,2 4096 2 / container 1112 1305 root rtd DIR 8,2 4096 2 / container 1112 1305 root txt REG 8,2 40697760 940062 /usr/bin/containerd container 1112 1305 root mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so container 1112 1305 root mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so container 1112 1305 root mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so container 1112 1305 root mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so container 1112 1305 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so container 1112 1305 root mem REG 8,2 288976 656202 /lib/x86_64-linux-gnu/libseccomp.so.2.4.1 container 1112 1305 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so container 1112 1305 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so container 1112 1305 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so container 1112 1305 root mem-W REG 8,2 131072 399496 /var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db container 1112 1305 root 0r CHR 1,3 0t0 6 /dev/null container 1112 1305 root 1u unix 0xffff98e4b5d80c00 0t0 29684 type=STREAM container 1112 1305 root 2u unix 0xffff98e4b5d80c00 0t0 29684 type=STREAM container 1112 1305 root 3uW REG 8,2 131072 399496 /var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db container 1112 1305 root 4u a_inode 0,13 0 10717 [eventpoll] container 1112 1305 root 5u a_inode 0,13 0 10717 [eventpoll] container 1112 1305 root 6u unix 0xffff98e4b942f000 0t0 30726 /run/containerd/containerd.sock type=STREAM container 1112 1305 root 7u IPv4 30727 0t0 TCP localhost:42351 (LISTEN) container 1112 1306 root cwd DIR 8,2 4096 2 / container 1112 1306 root rtd DIR 8,2 4096 2 / container 1112 1306 root txt REG 8,2 40697760 940062 /usr/bin/containerd container 1112 1306 root mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so container 1112 1306 root mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so container 1112 1306 root mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so container 1112 1306 root mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so container 1112 1306 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so container 1112 1306 root mem REG 8,2 288976 656202 /lib/x86_64-linux-gnu/libseccomp.so.2.4.1 container 1112 1306 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so container 1112 1306 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so container 1112 1306 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so container 1112 1306 root mem-W REG 8,2 131072 399496 /var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db container 1112 1306 root 0r CHR 1,3 0t0 6 /dev/null container 1112 1306 root 1u unix 0xffff98e4b5d80c00 0t0 29684 type=STREAM container 1112 1306 root 2u unix 0xffff98e4b5d80c00 0t0 29684 type=STREAM container 1112 1306 root 3uW REG 8,2 131072 399496 /var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db container 1112 1306 root 4u a_inode 0,13 0 10717 [eventpoll] container 1112 1306 root 5u a_inode 0,13 0 10717 [eventpoll] container 1112 1306 root 6u unix 0xffff98e4b942f000 0t0 30726 /run/containerd/containerd.sock type=STREAM container 1112 1306 root 7u IPv4 30727 0t0 TCP localhost:42351 (LISTEN) container 1112 1315 root cwd DIR 8,2 4096 2 / container 1112 1315 root rtd DIR 8,2 4096 2 / container 1112 1315 root txt REG 8,2 40697760 940062 /usr/bin/containerd container 1112 1315 root mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so container 1112 1315 root mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so container 1112 1315 root mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so container 1112 1315 root mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so container 1112 1315 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so container 1112 1315 root mem REG 8,2 288976 656202 /lib/x86_64-linux-gnu/libseccomp.so.2.4.1 container 1112 1315 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so container 1112 1315 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so container 1112 1315 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so container 1112 1315 root mem-W REG 8,2 131072 399496 /var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db container 1112 1315 root 0r CHR 1,3 0t0 6 /dev/null container 1112 1315 root 1u unix 0xffff98e4b5d80c00 0t0 29684 type=STREAM container 1112 1315 root 2u unix 0xffff98e4b5d80c00 0t0 29684 type=STREAM container 1112 1315 root 3uW REG 8,2 131072 399496 /var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db container 1112 1315 root 4u a_inode 0,13 0 10717 [eventpoll] container 1112 1315 root 5u a_inode 0,13 0 10717 [eventpoll] container 1112 1315 root 6u unix 0xffff98e4b942f000 0t0 30726 /run/containerd/containerd.sock type=STREAM container 1112 1315 root 7u IPv4 30727 0t0 TCP localhost:42351 (LISTEN) container 1112 1322 root cwd DIR 8,2 4096 2 / container 1112 1322 root rtd DIR 8,2 4096 2 / container 1112 1322 root txt REG 8,2 40697760 940062 /usr/bin/containerd container 1112 1322 root mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so container 1112 1322 root mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so container 1112 1322 root mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so container 1112 1322 root mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so container 1112 1322 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so container 1112 1322 root mem REG 8,2 288976 656202 /lib/x86_64-linux-gnu/libseccomp.so.2.4.1 container 1112 1322 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so container 1112 1322 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so container 1112 1322 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so container 1112 1322 root mem-W REG 8,2 131072 399496 /var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db container 1112 1322 root 0r CHR 1,3 0t0 6 /dev/null container 1112 1322 root 1u unix 0xffff98e4b5d80c00 0t0 29684 type=STREAM container 1112 1322 root 2u unix 0xffff98e4b5d80c00 0t0 29684 type=STREAM container 1112 1322 root 3uW REG 8,2 131072 399496 /var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db container 1112 1322 root 4u a_inode 0,13 0 10717 [eventpoll] container 1112 1322 root 5u a_inode 0,13 0 10717 [eventpoll] container 1112 1322 root 6u unix 0xffff98e4b942f000 0t0 30726 /run/containerd/containerd.sock type=STREAM container 1112 1322 root 7u IPv4 30727 0t0 TCP localhost:42351 (LISTEN) container 1112 1323 root cwd DIR 8,2 4096 2 / container 1112 1323 root rtd DIR 8,2 4096 2 / container 1112 1323 root txt REG 8,2 40697760 940062 /usr/bin/containerd container 1112 1323 root mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so container 1112 1323 root mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so container 1112 1323 root mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so container 1112 1323 root mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so container 1112 1323 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so container 1112 1323 root mem REG 8,2 288976 656202 /lib/x86_64-linux-gnu/libseccomp.so.2.4.1 container 1112 1323 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so container 1112 1323 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so container 1112 1323 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so container 1112 1323 root mem-W REG 8,2 131072 399496 /var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db container 1112 1323 root 0r CHR 1,3 0t0 6 /dev/null container 1112 1323 root 1u unix 0xffff98e4b5d80c00 0t0 29684 type=STREAM container 1112 1323 root 2u unix 0xffff98e4b5d80c00 0t0 29684 type=STREAM container 1112 1323 root 3uW REG 8,2 131072 399496 /var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db container 1112 1323 root 4u a_inode 0,13 0 10717 [eventpoll] container 1112 1323 root 5u a_inode 0,13 0 10717 [eventpoll] container 1112 1323 root 6u unix 0xffff98e4b942f000 0t0 30726 /run/containerd/containerd.sock type=STREAM container 1112 1323 root 7u IPv4 30727 0t0 TCP localhost:42351 (LISTEN) container 1112 1325 root cwd DIR 8,2 4096 2 / container 1112 1325 root rtd DIR 8,2 4096 2 / container 1112 1325 root txt REG 8,2 40697760 940062 /usr/bin/containerd container 1112 1325 root mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so container 1112 1325 root mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so container 1112 1325 root mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so container 1112 1325 root mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so container 1112 1325 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so container 1112 1325 root mem REG 8,2 288976 656202 /lib/x86_64-linux-gnu/libseccomp.so.2.4.1 container 1112 1325 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so container 1112 1325 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so container 1112 1325 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so container 1112 1325 root mem-W REG 8,2 131072 399496 /var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db container 1112 1325 root 0r CHR 1,3 0t0 6 /dev/null container 1112 1325 root 1u unix 0xffff98e4b5d80c00 0t0 29684 type=STREAM container 1112 1325 root 2u unix 0xffff98e4b5d80c00 0t0 29684 type=STREAM container 1112 1325 root 3uW REG 8,2 131072 399496 /var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db container 1112 1325 root 4u a_inode 0,13 0 10717 [eventpoll] container 1112 1325 root 5u a_inode 0,13 0 10717 [eventpoll] container 1112 1325 root 6u unix 0xffff98e4b942f000 0t0 30726 /run/containerd/containerd.sock type=STREAM container 1112 1325 root 7u IPv4 30727 0t0 TCP localhost:42351 (LISTEN) sshd 1127 root cwd DIR 8,2 4096 2 / sshd 1127 root rtd DIR 8,2 4096 2 / sshd 1127 root txt REG 8,2 786856 933045 /usr/sbin/sshd sshd 1127 root mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so sshd 1127 root mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so sshd 1127 root mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so sshd 1127 root mem REG 8,2 84032 656154 /lib/x86_64-linux-gnu/libgpg-error.so.0.22.0 sshd 1127 root mem REG 8,2 101168 656200 /lib/x86_64-linux-gnu/libresolv-2.27.so sshd 1127 root mem REG 8,2 14256 656161 /lib/x86_64-linux-gnu/libkeyutils.so.1.5 sshd 1127 root mem REG 8,2 43616 924373 /usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1 sshd 1127 root mem REG 8,2 199104 924370 /usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1 sshd 1127 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so sshd 1127 root mem REG 8,2 1155768 656153 /lib/x86_64-linux-gnu/libgcrypt.so.20.2.1 sshd 1127 root mem REG 8,2 112672 924379 /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1 sshd 1127 root mem REG 8,2 153984 656165 /lib/x86_64-linux-gnu/liblzma.so.5.2.2 sshd 1127 root mem REG 8,2 31680 656201 /lib/x86_64-linux-gnu/librt-2.27.so sshd 1127 root mem REG 8,2 464824 656191 /lib/x86_64-linux-gnu/libpcre.so.3.13.3 sshd 1127 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so sshd 1127 root mem REG 8,2 18712 656135 /lib/x86_64-linux-gnu/libcap-ng.so.0.0.0 sshd 1127 root mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so sshd 1127 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so sshd 1127 root mem REG 8,2 14248 668487 /lib/x86_64-linux-gnu/libcom_err.so.2.1 sshd 1127 root mem REG 8,2 877056 924372 /usr/lib/x86_64-linux-gnu/libkrb5.so.3.3 sshd 1127 root mem REG 8,2 305456 924347 /usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2 sshd 1127 root mem REG 8,2 39208 656139 /lib/x86_64-linux-gnu/libcrypt-2.27.so sshd 1127 root mem REG 8,2 116960 656216 /lib/x86_64-linux-gnu/libz.so.1.2.11 sshd 1127 root mem REG 8,2 10592 656214 /lib/x86_64-linux-gnu/libutil-2.27.so sshd 1127 root mem REG 8,2 2357760 924313 /usr/lib/x86_64-linux-gnu/libcrypto.so.1.0.0 sshd 1127 root mem REG 8,2 536648 662910 /lib/x86_64-linux-gnu/libsystemd.so.0.21.0 sshd 1127 root mem REG 8,2 154832 656203 /lib/x86_64-linux-gnu/libselinux.so.1 sshd 1127 root mem REG 8,2 55848 656185 /lib/x86_64-linux-gnu/libpam.so.0.83.1 sshd 1127 root mem REG 8,2 124848 656130 /lib/x86_64-linux-gnu/libaudit.so.1.0.0 sshd 1127 root mem REG 8,2 39784 656275 /lib/x86_64-linux-gnu/libwrap.so.0.7.6 sshd 1127 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so sshd 1127 root 0r CHR 1,3 0t0 6 /dev/null sshd 1127 root 1u unix 0xffff98e4b1d8d800 0t0 30152 type=STREAM sshd 1127 root 2u unix 0xffff98e4b1d8d800 0t0 30152 type=STREAM sshd 1127 root 3u IPv4 30163 0t0 TCP *:ssh (LISTEN) sshd 1127 root 4u IPv6 30180 0t0 TCP *:ssh (LISTEN) agetty 1153 root cwd DIR 8,2 4096 2 / agetty 1153 root rtd DIR 8,2 4096 2 / agetty 1153 root txt REG 8,2 56552 263600 /sbin/agetty agetty 1153 root mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so agetty 1153 root mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so agetty 1153 root mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so agetty 1153 root mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so agetty 1153 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so agetty 1153 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so agetty 1153 root mem REG 8,2 199772 918701 /usr/lib/locale/C.UTF-8/LC_CTYPE agetty 1153 root mem REG 8,2 1683056 933058 /usr/lib/locale/locale-archive agetty 1153 root mem REG 8,2 26376 1049137 /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache agetty 1153 root 0u CHR 4,1 0t0 20 /dev/tty1 agetty 1153 root 1u CHR 4,1 0t0 20 /dev/tty1 agetty 1153 root 2u CHR 4,1 0t0 20 /dev/tty1 agetty 1153 root 4r a_inode 0,13 0 10717 inotify polkitd 1154 root cwd DIR 8,2 4096 2 / polkitd 1154 root rtd DIR 8,2 4096 2 / polkitd 1154 root txt REG 8,2 14552 918752 /usr/lib/policykit-1/polkitd polkitd 1154 root mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so polkitd 1154 root mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so polkitd 1154 root mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so polkitd 1154 root mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so polkitd 1154 root mem REG 8,2 84032 656154 /lib/x86_64-linux-gnu/libgpg-error.so.0.22.0 polkitd 1154 root mem REG 8,2 27112 656215 /lib/x86_64-linux-gnu/libuuid.so.1.3.0 polkitd 1154 root mem REG 8,2 1155768 656153 /lib/x86_64-linux-gnu/libgcrypt.so.20.2.1 polkitd 1154 root mem REG 8,2 112672 924379 /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1 polkitd 1154 root mem REG 8,2 153984 656165 /lib/x86_64-linux-gnu/liblzma.so.5.2.2 polkitd 1154 root mem REG 8,2 31680 656201 /lib/x86_64-linux-gnu/librt-2.27.so polkitd 1154 root mem REG 8,2 311720 656131 /lib/x86_64-linux-gnu/libblkid.so.1.1.0 polkitd 1154 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so polkitd 1154 root mem REG 8,2 202880 655558 /lib/x86_64-linux-gnu/libexpat.so.1.6.7 polkitd 1154 root mem REG 8,2 114000 924402 /usr/lib/x86_64-linux-gnu/libpolkit-gobject-1.so.0.0.0 polkitd 1154 root mem REG 8,2 536648 662910 /lib/x86_64-linux-gnu/libsystemd.so.0.21.0 polkitd 1154 root mem REG 8,2 464824 656191 /lib/x86_64-linux-gnu/libpcre.so.3.13.3 polkitd 1154 root mem REG 8,2 31032 924332 /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4 polkitd 1154 root mem REG 8,2 340232 656170 /lib/x86_64-linux-gnu/libmount.so.1.1.0 polkitd 1154 root mem REG 8,2 101168 656200 /lib/x86_64-linux-gnu/libresolv-2.27.so polkitd 1154 root mem REG 8,2 154832 656203 /lib/x86_64-linux-gnu/libselinux.so.1 polkitd 1154 root mem REG 8,2 116960 656216 /lib/x86_64-linux-gnu/libz.so.1.2.11 polkitd 1154 root mem REG 8,2 14232 924341 /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4 polkitd 1154 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so polkitd 1154 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so polkitd 1154 root mem REG 8,2 106712 924401 /usr/lib/x86_64-linux-gnu/libpolkit-backend-1.so.0.0.0 polkitd 1154 root mem REG 8,2 1137968 924340 /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4 polkitd 1154 root mem REG 8,2 342072 924344 /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4 polkitd 1154 root mem REG 8,2 1690808 924338 /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4 polkitd 1154 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so polkitd 1154 root mem REG 8,2 26376 1049137 /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache polkitd 1154 root 0u CHR 1,3 0t0 6 /dev/null polkitd 1154 root 1u CHR 1,3 0t0 6 /dev/null polkitd 1154 root 2u CHR 1,3 0t0 6 /dev/null polkitd 1154 root 3u a_inode 0,13 0 10717 [eventfd] polkitd 1154 root 4u a_inode 0,13 0 10717 [signalfd] polkitd 1154 root 5u a_inode 0,13 0 10717 [eventfd] polkitd 1154 root 6u unix 0xffff98e4b5d87c00 0t0 30459 type=STREAM polkitd 1154 root 7u a_inode 0,13 0 10717 [eventfd] polkitd 1154 root 8r a_inode 0,13 0 10717 inotify polkitd 1154 root 9r a_inode 0,13 0 10717 inotify gmain 1154 1198 root cwd DIR 8,2 4096 2 / gmain 1154 1198 root rtd DIR 8,2 4096 2 / gmain 1154 1198 root txt REG 8,2 14552 918752 /usr/lib/policykit-1/polkitd gmain 1154 1198 root mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so gmain 1154 1198 root mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so gmain 1154 1198 root mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so gmain 1154 1198 root mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so gmain 1154 1198 root mem REG 8,2 84032 656154 /lib/x86_64-linux-gnu/libgpg-error.so.0.22.0 gmain 1154 1198 root mem REG 8,2 27112 656215 /lib/x86_64-linux-gnu/libuuid.so.1.3.0 gmain 1154 1198 root mem REG 8,2 1155768 656153 /lib/x86_64-linux-gnu/libgcrypt.so.20.2.1 gmain 1154 1198 root mem REG 8,2 112672 924379 /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1 gmain 1154 1198 root mem REG 8,2 153984 656165 /lib/x86_64-linux-gnu/liblzma.so.5.2.2 gmain 1154 1198 root mem REG 8,2 31680 656201 /lib/x86_64-linux-gnu/librt-2.27.so gmain 1154 1198 root mem REG 8,2 311720 656131 /lib/x86_64-linux-gnu/libblkid.so.1.1.0 gmain 1154 1198 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so gmain 1154 1198 root mem REG 8,2 202880 655558 /lib/x86_64-linux-gnu/libexpat.so.1.6.7 gmain 1154 1198 root mem REG 8,2 114000 924402 /usr/lib/x86_64-linux-gnu/libpolkit-gobject-1.so.0.0.0 gmain 1154 1198 root mem REG 8,2 536648 662910 /lib/x86_64-linux-gnu/libsystemd.so.0.21.0 gmain 1154 1198 root mem REG 8,2 464824 656191 /lib/x86_64-linux-gnu/libpcre.so.3.13.3 gmain 1154 1198 root mem REG 8,2 31032 924332 /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4 gmain 1154 1198 root mem REG 8,2 340232 656170 /lib/x86_64-linux-gnu/libmount.so.1.1.0 gmain 1154 1198 root mem REG 8,2 101168 656200 /lib/x86_64-linux-gnu/libresolv-2.27.so gmain 1154 1198 root mem REG 8,2 154832 656203 /lib/x86_64-linux-gnu/libselinux.so.1 gmain 1154 1198 root mem REG 8,2 116960 656216 /lib/x86_64-linux-gnu/libz.so.1.2.11 gmain 1154 1198 root mem REG 8,2 14232 924341 /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4 gmain 1154 1198 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so gmain 1154 1198 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so gmain 1154 1198 root mem REG 8,2 106712 924401 /usr/lib/x86_64-linux-gnu/libpolkit-backend-1.so.0.0.0 gmain 1154 1198 root mem REG 8,2 1137968 924340 /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4 gmain 1154 1198 root mem REG 8,2 342072 924344 /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4 gmain 1154 1198 root mem REG 8,2 1690808 924338 /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4 gmain 1154 1198 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so gmain 1154 1198 root mem REG 8,2 26376 1049137 /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache gmain 1154 1198 root 0u CHR 1,3 0t0 6 /dev/null gmain 1154 1198 root 1u CHR 1,3 0t0 6 /dev/null gmain 1154 1198 root 2u CHR 1,3 0t0 6 /dev/null gmain 1154 1198 root 3u a_inode 0,13 0 10717 [eventfd] gmain 1154 1198 root 4u a_inode 0,13 0 10717 [signalfd] gmain 1154 1198 root 5u a_inode 0,13 0 10717 [eventfd] gmain 1154 1198 root 6u unix 0xffff98e4b5d87c00 0t0 30459 type=STREAM gmain 1154 1198 root 7u a_inode 0,13 0 10717 [eventfd] gmain 1154 1198 root 8r a_inode 0,13 0 10717 inotify gmain 1154 1198 root 9r a_inode 0,13 0 10717 inotify gdbus 1154 1203 root cwd DIR 8,2 4096 2 / gdbus 1154 1203 root rtd DIR 8,2 4096 2 / gdbus 1154 1203 root txt REG 8,2 14552 918752 /usr/lib/policykit-1/polkitd gdbus 1154 1203 root mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so gdbus 1154 1203 root mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so gdbus 1154 1203 root mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so gdbus 1154 1203 root mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so gdbus 1154 1203 root mem REG 8,2 84032 656154 /lib/x86_64-linux-gnu/libgpg-error.so.0.22.0 gdbus 1154 1203 root mem REG 8,2 27112 656215 /lib/x86_64-linux-gnu/libuuid.so.1.3.0 gdbus 1154 1203 root mem REG 8,2 1155768 656153 /lib/x86_64-linux-gnu/libgcrypt.so.20.2.1 gdbus 1154 1203 root mem REG 8,2 112672 924379 /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1 gdbus 1154 1203 root mem REG 8,2 153984 656165 /lib/x86_64-linux-gnu/liblzma.so.5.2.2 gdbus 1154 1203 root mem REG 8,2 31680 656201 /lib/x86_64-linux-gnu/librt-2.27.so gdbus 1154 1203 root mem REG 8,2 311720 656131 /lib/x86_64-linux-gnu/libblkid.so.1.1.0 gdbus 1154 1203 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so gdbus 1154 1203 root mem REG 8,2 202880 655558 /lib/x86_64-linux-gnu/libexpat.so.1.6.7 gdbus 1154 1203 root mem REG 8,2 114000 924402 /usr/lib/x86_64-linux-gnu/libpolkit-gobject-1.so.0.0.0 gdbus 1154 1203 root mem REG 8,2 536648 662910 /lib/x86_64-linux-gnu/libsystemd.so.0.21.0 gdbus 1154 1203 root mem REG 8,2 464824 656191 /lib/x86_64-linux-gnu/libpcre.so.3.13.3 gdbus 1154 1203 root mem REG 8,2 31032 924332 /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4 gdbus 1154 1203 root mem REG 8,2 340232 656170 /lib/x86_64-linux-gnu/libmount.so.1.1.0 gdbus 1154 1203 root mem REG 8,2 101168 656200 /lib/x86_64-linux-gnu/libresolv-2.27.so gdbus 1154 1203 root mem REG 8,2 154832 656203 /lib/x86_64-linux-gnu/libselinux.so.1 gdbus 1154 1203 root mem REG 8,2 116960 656216 /lib/x86_64-linux-gnu/libz.so.1.2.11 gdbus 1154 1203 root mem REG 8,2 14232 924341 /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4 gdbus 1154 1203 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so gdbus 1154 1203 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so gdbus 1154 1203 root mem REG 8,2 106712 924401 /usr/lib/x86_64-linux-gnu/libpolkit-backend-1.so.0.0.0 gdbus 1154 1203 root mem REG 8,2 1137968 924340 /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4 gdbus 1154 1203 root mem REG 8,2 342072 924344 /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4 gdbus 1154 1203 root mem REG 8,2 1690808 924338 /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4 gdbus 1154 1203 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so gdbus 1154 1203 root mem REG 8,2 26376 1049137 /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache gdbus 1154 1203 root 0u CHR 1,3 0t0 6 /dev/null gdbus 1154 1203 root 1u CHR 1,3 0t0 6 /dev/null gdbus 1154 1203 root 2u CHR 1,3 0t0 6 /dev/null gdbus 1154 1203 root 3u a_inode 0,13 0 10717 [eventfd] gdbus 1154 1203 root 4u a_inode 0,13 0 10717 [signalfd] gdbus 1154 1203 root 5u a_inode 0,13 0 10717 [eventfd] gdbus 1154 1203 root 6u unix 0xffff98e4b5d87c00 0t0 30459 type=STREAM gdbus 1154 1203 root 7u a_inode 0,13 0 10717 [eventfd] gdbus 1154 1203 root 8r a_inode 0,13 0 10717 inotify gdbus 1154 1203 root 9r a_inode 0,13 0 10717 inotify loop11 1532 root cwd DIR 8,2 4096 2 / loop11 1532 root rtd DIR 8,2 4096 2 / loop11 1532 root txt unknown /proc/1532/exe systemd 1723 kbrazil cwd DIR 8,2 4096 2 / systemd 1723 kbrazil rtd DIR 8,2 4096 2 / systemd 1723 kbrazil txt REG 8,2 1595792 668802 /lib/systemd/systemd systemd 1723 kbrazil mem REG 8,2 1700792 656167 /lib/x86_64-linux-gnu/libm-2.27.so systemd 1723 kbrazil mem REG 8,2 121016 655394 /lib/x86_64-linux-gnu/libudev.so.1.6.9 systemd 1723 kbrazil mem REG 8,2 84032 656154 /lib/x86_64-linux-gnu/libgpg-error.so.0.22.0 systemd 1723 kbrazil mem REG 8,2 43304 656160 /lib/x86_64-linux-gnu/libjson-c.so.3.0.1 systemd 1723 kbrazil mem REG 8,2 34872 924307 /usr/lib/x86_64-linux-gnu/libargon2.so.0 systemd 1723 kbrazil mem REG 8,2 432640 656144 /lib/x86_64-linux-gnu/libdevmapper.so.1.02.1 systemd 1723 kbrazil mem REG 8,2 18680 656129 /lib/x86_64-linux-gnu/libattr.so.1.1.0 systemd 1723 kbrazil mem REG 8,2 18712 656135 /lib/x86_64-linux-gnu/libcap-ng.so.0.0.0 systemd 1723 kbrazil mem REG 8,2 27112 656215 /lib/x86_64-linux-gnu/libuuid.so.1.3.0 systemd 1723 kbrazil mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so systemd 1723 kbrazil mem REG 8,2 464824 656191 /lib/x86_64-linux-gnu/libpcre.so.3.13.3 systemd 1723 kbrazil mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so systemd 1723 kbrazil mem REG 8,2 112672 924379 /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1 systemd 1723 kbrazil mem REG 8,2 153984 656165 /lib/x86_64-linux-gnu/liblzma.so.5.2.2 systemd 1723 kbrazil mem REG 8,2 206872 656157 /lib/x86_64-linux-gnu/libidn.so.11.6.16 systemd 1723 kbrazil mem REG 8,2 27088 924361 /usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0 systemd 1723 kbrazil mem REG 8,2 1155768 656153 /lib/x86_64-linux-gnu/libgcrypt.so.20.2.1 systemd 1723 kbrazil mem REG 8,2 22768 656136 /lib/x86_64-linux-gnu/libcap.so.2.25 systemd 1723 kbrazil mem REG 8,2 310040 656140 /lib/x86_64-linux-gnu/libcryptsetup.so.12.2.0 systemd 1723 kbrazil mem REG 8,2 31232 656125 /lib/x86_64-linux-gnu/libacl.so.1.1.0 systemd 1723 kbrazil mem REG 8,2 64144 656127 /lib/x86_64-linux-gnu/libapparmor.so.1.4.2 systemd 1723 kbrazil mem REG 8,2 92208 656162 /lib/x86_64-linux-gnu/libkmod.so.2.3.2 systemd 1723 kbrazil mem REG 8,2 124848 656130 /lib/x86_64-linux-gnu/libaudit.so.1.0.0 systemd 1723 kbrazil mem REG 8,2 55848 656185 /lib/x86_64-linux-gnu/libpam.so.0.83.1 systemd 1723 kbrazil mem REG 8,2 311720 656131 /lib/x86_64-linux-gnu/libblkid.so.1.1.0 systemd 1723 kbrazil mem REG 8,2 340232 656170 /lib/x86_64-linux-gnu/libmount.so.1.1.0 systemd 1723 kbrazil mem REG 8,2 154832 656203 /lib/x86_64-linux-gnu/libselinux.so.1 systemd 1723 kbrazil mem REG 8,2 288976 656202 /lib/x86_64-linux-gnu/libseccomp.so.2.4.1 systemd 1723 kbrazil mem REG 8,2 31680 656201 /lib/x86_64-linux-gnu/librt-2.27.so systemd 1723 kbrazil mem REG 8,2 2363632 655401 /lib/systemd/libsystemd-shared-237.so systemd 1723 kbrazil mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so systemd 1723 kbrazil mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so systemd 1723 kbrazil 0r CHR 1,3 0t0 6 /dev/null systemd 1723 kbrazil 1u unix 0xffff98e4b460c400 0t0 33601 type=STREAM systemd 1723 kbrazil 2u unix 0xffff98e4b460c400 0t0 33601 type=STREAM systemd 1723 kbrazil 3u unix 0xffff98e4b31f0800 0t0 33650 type=DGRAM systemd 1723 kbrazil 4u a_inode 0,13 0 10717 [eventpoll] systemd 1723 kbrazil 5u a_inode 0,13 0 10717 [signalfd] systemd 1723 kbrazil 6r a_inode 0,13 0 10717 inotify systemd 1723 kbrazil 7r DIR 0,28 0 1263 /sys/fs/cgroup/unified/user.slice/user-1000.slice/user@1000.service systemd 1723 kbrazil 8u a_inode 0,13 0 10717 [timerfd] systemd 1723 kbrazil 9u netlink 0t0 33759 KOBJECT_UEVENT systemd 1723 kbrazil 10u a_inode 0,13 0 10717 [eventpoll] systemd 1723 kbrazil 11r REG 0,4 0 33761 /proc/1723/mountinfo systemd 1723 kbrazil 12r a_inode 0,13 0 10717 inotify systemd 1723 kbrazil 13r REG 0,4 0 4026532068 /proc/swaps systemd 1723 kbrazil 14u unix 0xffff98e4b31f4800 0t0 33762 /run/user/1000/systemd/notify type=DGRAM systemd 1723 kbrazil 15u unix 0xffff98e4b31f2800 0t0 33763 type=DGRAM systemd 1723 kbrazil 16u unix 0xffff98e4b31f2000 0t0 33764 type=DGRAM systemd 1723 kbrazil 17u unix 0xffff98e4b31f3800 0t0 33765 /run/user/1000/systemd/private type=STREAM systemd 1723 kbrazil 22u unix 0xffff98e4b31f1000 0t0 33808 /run/user/1000/gnupg/S.gpg-agent.ssh type=STREAM systemd 1723 kbrazil 23u unix 0xffff98e4b31f6800 0t0 33809 /run/user/1000/gnupg/S.dirmngr type=STREAM systemd 1723 kbrazil 24u unix 0xffff98e4b31f2c00 0t0 33810 /run/user/1000/gnupg/S.gpg-agent.browser type=STREAM systemd 1723 kbrazil 25u unix 0xffff98e4b31f4c00 0t0 33811 /run/user/1000/gnupg/S.gpg-agent type=STREAM systemd 1723 kbrazil 26u unix 0xffff98e4b31f1400 0t0 33812 /run/user/1000/gnupg/S.gpg-agent.extra type=STREAM systemd 1723 kbrazil 27u a_inode 0,13 0 10717 [timerfd] (sd-pam 1734 kbrazil cwd DIR 8,2 4096 2 / (sd-pam 1734 kbrazil rtd DIR 8,2 4096 2 / (sd-pam 1734 kbrazil txt REG 8,2 1595792 668802 /lib/systemd/systemd (sd-pam 1734 kbrazil mem REG 8,2 10080 656222 /lib/x86_64-linux-gnu/security/pam_cap.so (sd-pam 1734 kbrazil mem REG 8,2 14576 656186 /lib/x86_64-linux-gnu/libpam_misc.so.0.82.0 (sd-pam 1734 kbrazil mem REG 8,2 258040 655398 /lib/x86_64-linux-gnu/security/pam_systemd.so (sd-pam 1734 kbrazil mem REG 8,2 10376 656261 /lib/x86_64-linux-gnu/security/pam_umask.so (sd-pam 1734 kbrazil mem REG 8,2 22872 656236 /lib/x86_64-linux-gnu/security/pam_limits.so (sd-pam 1734 kbrazil mem REG 8,2 10336 656239 /lib/x86_64-linux-gnu/security/pam_loginuid.so (sd-pam 1734 kbrazil mem REG 8,2 18736 656250 /lib/x86_64-linux-gnu/security/pam_selinux.so (sd-pam 1734 kbrazil mem REG 8,2 6104 656245 /lib/x86_64-linux-gnu/security/pam_permit.so (sd-pam 1734 kbrazil mem REG 8,2 5776 656224 /lib/x86_64-linux-gnu/security/pam_deny.so (sd-pam 1734 kbrazil mem REG 8,2 39208 656139 /lib/x86_64-linux-gnu/libcrypt-2.27.so (sd-pam 1734 kbrazil mem REG 8,2 60272 656262 /lib/x86_64-linux-gnu/security/pam_unix.so (sd-pam 1734 kbrazil mem REG 8,2 258040 655397 /lib/x86_64-linux-gnu/libnss_systemd.so.2 (sd-pam 1734 kbrazil mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so (sd-pam 1734 kbrazil mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so (sd-pam 1734 kbrazil mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so (sd-pam 1734 kbrazil mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so (sd-pam 1734 kbrazil mem REG 8,2 1700792 656167 /lib/x86_64-linux-gnu/libm-2.27.so (sd-pam 1734 kbrazil mem REG 8,2 121016 655394 /lib/x86_64-linux-gnu/libudev.so.1.6.9 (sd-pam 1734 kbrazil mem REG 8,2 84032 656154 /lib/x86_64-linux-gnu/libgpg-error.so.0.22.0 (sd-pam 1734 kbrazil mem REG 8,2 43304 656160 /lib/x86_64-linux-gnu/libjson-c.so.3.0.1 (sd-pam 1734 kbrazil mem REG 8,2 34872 924307 /usr/lib/x86_64-linux-gnu/libargon2.so.0 (sd-pam 1734 kbrazil mem REG 8,2 432640 656144 /lib/x86_64-linux-gnu/libdevmapper.so.1.02.1 (sd-pam 1734 kbrazil mem REG 8,2 18680 656129 /lib/x86_64-linux-gnu/libattr.so.1.1.0 (sd-pam 1734 kbrazil mem REG 8,2 18712 656135 /lib/x86_64-linux-gnu/libcap-ng.so.0.0.0 (sd-pam 1734 kbrazil mem REG 8,2 27112 656215 /lib/x86_64-linux-gnu/libuuid.so.1.3.0 (sd-pam 1734 kbrazil mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so (sd-pam 1734 kbrazil mem REG 8,2 464824 656191 /lib/x86_64-linux-gnu/libpcre.so.3.13.3 (sd-pam 1734 kbrazil mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so (sd-pam 1734 kbrazil mem REG 8,2 112672 924379 /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1 (sd-pam 1734 kbrazil mem REG 8,2 153984 656165 /lib/x86_64-linux-gnu/liblzma.so.5.2.2 (sd-pam 1734 kbrazil mem REG 8,2 206872 656157 /lib/x86_64-linux-gnu/libidn.so.11.6.16 (sd-pam 1734 kbrazil mem REG 8,2 27088 924361 /usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0 (sd-pam 1734 kbrazil mem REG 8,2 1155768 656153 /lib/x86_64-linux-gnu/libgcrypt.so.20.2.1 (sd-pam 1734 kbrazil mem REG 8,2 22768 656136 /lib/x86_64-linux-gnu/libcap.so.2.25 (sd-pam 1734 kbrazil mem REG 8,2 310040 656140 /lib/x86_64-linux-gnu/libcryptsetup.so.12.2.0 (sd-pam 1734 kbrazil mem REG 8,2 31232 656125 /lib/x86_64-linux-gnu/libacl.so.1.1.0 (sd-pam 1734 kbrazil mem REG 8,2 64144 656127 /lib/x86_64-linux-gnu/libapparmor.so.1.4.2 (sd-pam 1734 kbrazil mem REG 8,2 92208 656162 /lib/x86_64-linux-gnu/libkmod.so.2.3.2 (sd-pam 1734 kbrazil mem REG 8,2 124848 656130 /lib/x86_64-linux-gnu/libaudit.so.1.0.0 (sd-pam 1734 kbrazil mem REG 8,2 55848 656185 /lib/x86_64-linux-gnu/libpam.so.0.83.1 (sd-pam 1734 kbrazil mem REG 8,2 311720 656131 /lib/x86_64-linux-gnu/libblkid.so.1.1.0 (sd-pam 1734 kbrazil mem REG 8,2 340232 656170 /lib/x86_64-linux-gnu/libmount.so.1.1.0 (sd-pam 1734 kbrazil mem REG 8,2 154832 656203 /lib/x86_64-linux-gnu/libselinux.so.1 (sd-pam 1734 kbrazil mem REG 8,2 288976 656202 /lib/x86_64-linux-gnu/libseccomp.so.2.4.1 (sd-pam 1734 kbrazil mem REG 8,2 31680 656201 /lib/x86_64-linux-gnu/librt-2.27.so (sd-pam 1734 kbrazil mem REG 8,2 2363632 655401 /lib/systemd/libsystemd-shared-237.so (sd-pam 1734 kbrazil mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so (sd-pam 1734 kbrazil mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so (sd-pam 1734 kbrazil 0r CHR 1,3 0t0 6 /dev/null (sd-pam 1734 kbrazil 1u unix 0xffff98e4b460c400 0t0 33601 type=STREAM (sd-pam 1734 kbrazil 2u unix 0xffff98e4b460c400 0t0 33601 type=STREAM (sd-pam 1734 kbrazil 3u a_inode 0,13 0 10717 [eventfd] (sd-pam 1734 kbrazil 4u a_inode 0,13 0 10717 [eventfd] (sd-pam 1734 kbrazil 6w FIFO 0,12 0t0 33602 pipe (sd-pam 1734 kbrazil 7u unix 0xffff98e4b31f1800 0t0 33638 type=DGRAM bash 1749 kbrazil cwd DIR 8,2 4096 528261 /home/kbrazil/testfiles bash 1749 kbrazil rtd DIR 8,2 4096 2 / bash 1749 kbrazil txt REG 8,2 1113504 131099 /bin/bash bash 1749 kbrazil mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so bash 1749 kbrazil mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so bash 1749 kbrazil mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so bash 1749 kbrazil mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so bash 1749 kbrazil mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so bash 1749 kbrazil mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so bash 1749 kbrazil mem REG 8,2 170784 656210 /lib/x86_64-linux-gnu/libtinfo.so.5.9 bash 1749 kbrazil mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so bash 1749 kbrazil mem REG 8,2 1683056 933058 /usr/lib/locale/locale-archive bash 1749 kbrazil mem REG 8,2 26376 1049137 /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache bash 1749 kbrazil 0u CHR 4,64 0t0 87 /dev/ttyS0 bash 1749 kbrazil 1u CHR 4,64 0t0 87 /dev/ttyS0 bash 1749 kbrazil 2u CHR 4,64 0t0 87 /dev/ttyS0 bash 1749 kbrazil 255u CHR 4,64 0t0 87 /dev/ttyS0 loop9 3451 root cwd DIR 8,2 4096 2 / loop9 3451 root rtd DIR 8,2 4096 2 / loop9 3451 root txt unknown /proc/3451/exe loop4 3657 root cwd DIR 8,2 4096 2 / loop4 3657 root rtd DIR 8,2 4096 2 / loop4 3657 root txt unknown /proc/3657/exe xfsalloc 15892 root cwd DIR 8,2 4096 2 / xfsalloc 15892 root rtd DIR 8,2 4096 2 / xfsalloc 15892 root txt unknown /proc/15892/exe xfs_mru_c 15896 root cwd DIR 8,2 4096 2 / xfs_mru_c 15896 root rtd DIR 8,2 4096 2 / xfs_mru_c 15896 root txt unknown /proc/15896/exe jfsIO 15900 root cwd DIR 8,2 4096 2 / jfsIO 15900 root rtd DIR 8,2 4096 2 / jfsIO 15900 root txt unknown /proc/15900/exe jfsCommit 15901 root cwd DIR 8,2 4096 2 / jfsCommit 15901 root rtd DIR 8,2 4096 2 / jfsCommit 15901 root txt unknown /proc/15901/exe jfsSync 15902 root cwd DIR 8,2 4096 2 / jfsSync 15902 root rtd DIR 8,2 4096 2 / jfsSync 15902 root txt unknown /proc/15902/exe sshd 16944 root cwd DIR 8,2 4096 2 / sshd 16944 root rtd DIR 8,2 4096 2 / sshd 16944 root txt REG 8,2 786856 933045 /usr/sbin/sshd sshd 16944 root mem REG 8,2 258040 655397 /lib/x86_64-linux-gnu/libnss_systemd.so.2 sshd 16944 root mem REG 8,2 14464 656226 /lib/x86_64-linux-gnu/security/pam_env.so sshd 16944 root mem REG 8,2 22872 656236 /lib/x86_64-linux-gnu/security/pam_limits.so sshd 16944 root mem REG 8,2 10312 656240 /lib/x86_64-linux-gnu/security/pam_mail.so sshd 16944 root mem REG 8,2 10336 656242 /lib/x86_64-linux-gnu/security/pam_motd.so sshd 16944 root mem REG 8,2 14576 656186 /lib/x86_64-linux-gnu/libpam_misc.so.0.82.0 sshd 16944 root mem REG 8,2 258040 655398 /lib/x86_64-linux-gnu/security/pam_systemd.so sshd 16944 root mem REG 8,2 10376 656261 /lib/x86_64-linux-gnu/security/pam_umask.so sshd 16944 root mem REG 8,2 10280 656234 /lib/x86_64-linux-gnu/security/pam_keyinit.so sshd 16944 root mem REG 8,2 10336 656239 /lib/x86_64-linux-gnu/security/pam_loginuid.so sshd 16944 root mem REG 8,2 18736 656250 /lib/x86_64-linux-gnu/security/pam_selinux.so sshd 16944 root mem REG 8,2 10264 656244 /lib/x86_64-linux-gnu/security/pam_nologin.so sshd 16944 root mem REG 8,2 22768 656136 /lib/x86_64-linux-gnu/libcap.so.2.25 sshd 16944 root mem REG 8,2 10080 656222 /lib/x86_64-linux-gnu/security/pam_cap.so sshd 16944 root mem REG 8,2 6104 656245 /lib/x86_64-linux-gnu/security/pam_permit.so sshd 16944 root mem REG 8,2 5776 656224 /lib/x86_64-linux-gnu/security/pam_deny.so sshd 16944 root mem REG 8,2 60272 656262 /lib/x86_64-linux-gnu/security/pam_unix.so sshd 16944 root mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so sshd 16944 root mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so sshd 16944 root mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so sshd 16944 root mem REG 8,2 84032 656154 /lib/x86_64-linux-gnu/libgpg-error.so.0.22.0 sshd 16944 root mem REG 8,2 101168 656200 /lib/x86_64-linux-gnu/libresolv-2.27.so sshd 16944 root mem REG 8,2 14256 656161 /lib/x86_64-linux-gnu/libkeyutils.so.1.5 sshd 16944 root mem REG 8,2 43616 924373 /usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1 sshd 16944 root mem REG 8,2 199104 924370 /usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1 sshd 16944 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so sshd 16944 root mem REG 8,2 1155768 656153 /lib/x86_64-linux-gnu/libgcrypt.so.20.2.1 sshd 16944 root mem REG 8,2 112672 924379 /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1 sshd 16944 root mem REG 8,2 153984 656165 /lib/x86_64-linux-gnu/liblzma.so.5.2.2 sshd 16944 root mem REG 8,2 31680 656201 /lib/x86_64-linux-gnu/librt-2.27.so sshd 16944 root mem REG 8,2 464824 656191 /lib/x86_64-linux-gnu/libpcre.so.3.13.3 sshd 16944 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so sshd 16944 root mem REG 8,2 18712 656135 /lib/x86_64-linux-gnu/libcap-ng.so.0.0.0 sshd 16944 root mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so sshd 16944 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so sshd 16944 root mem REG 8,2 14248 668487 /lib/x86_64-linux-gnu/libcom_err.so.2.1 sshd 16944 root mem REG 8,2 877056 924372 /usr/lib/x86_64-linux-gnu/libkrb5.so.3.3 sshd 16944 root mem REG 8,2 305456 924347 /usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2 sshd 16944 root mem REG 8,2 39208 656139 /lib/x86_64-linux-gnu/libcrypt-2.27.so sshd 16944 root mem REG 8,2 116960 656216 /lib/x86_64-linux-gnu/libz.so.1.2.11 sshd 16944 root mem REG 8,2 10592 656214 /lib/x86_64-linux-gnu/libutil-2.27.so sshd 16944 root mem REG 8,2 2357760 924313 /usr/lib/x86_64-linux-gnu/libcrypto.so.1.0.0 sshd 16944 root mem REG 8,2 536648 662910 /lib/x86_64-linux-gnu/libsystemd.so.0.21.0 sshd 16944 root mem REG 8,2 154832 656203 /lib/x86_64-linux-gnu/libselinux.so.1 sshd 16944 root mem REG 8,2 55848 656185 /lib/x86_64-linux-gnu/libpam.so.0.83.1 sshd 16944 root mem REG 8,2 124848 656130 /lib/x86_64-linux-gnu/libaudit.so.1.0.0 sshd 16944 root mem REG 8,2 39784 656275 /lib/x86_64-linux-gnu/libwrap.so.0.7.6 sshd 16944 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so sshd 16944 root 0r CHR 1,3 0t0 6 /dev/null sshd 16944 root 1u CHR 1,3 0t0 6 /dev/null sshd 16944 root 2u CHR 1,3 0t0 6 /dev/null sshd 16944 root 3u IPv4 207375 0t0 TCP kbrazil-ubuntu:ssh->192.168.71.1:65159 (ESTABLISHED) sshd 16944 root 4u unix 0xffff98e4b3fe6c00 0t0 207447 type=DGRAM sshd 16944 root 5u CHR 5,2 0t0 86 /dev/ptmx sshd 16944 root 6u unix 0xffff98e4b3fe3000 0t0 207714 type=STREAM sshd 16944 root 7w FIFO 0,23 0t0 719 /run/systemd/sessions/49.ref sshd 17058 kbrazil cwd DIR 8,2 4096 2 / sshd 17058 kbrazil rtd DIR 8,2 4096 2 / sshd 17058 kbrazil txt REG 8,2 786856 933045 /usr/sbin/sshd sshd 17058 kbrazil mem REG 8,2 258040 655397 /lib/x86_64-linux-gnu/libnss_systemd.so.2 sshd 17058 kbrazil mem REG 8,2 14464 656226 /lib/x86_64-linux-gnu/security/pam_env.so sshd 17058 kbrazil mem REG 8,2 22872 656236 /lib/x86_64-linux-gnu/security/pam_limits.so sshd 17058 kbrazil mem REG 8,2 10312 656240 /lib/x86_64-linux-gnu/security/pam_mail.so sshd 17058 kbrazil mem REG 8,2 10336 656242 /lib/x86_64-linux-gnu/security/pam_motd.so sshd 17058 kbrazil mem REG 8,2 14576 656186 /lib/x86_64-linux-gnu/libpam_misc.so.0.82.0 sshd 17058 kbrazil mem REG 8,2 258040 655398 /lib/x86_64-linux-gnu/security/pam_systemd.so sshd 17058 kbrazil mem REG 8,2 10376 656261 /lib/x86_64-linux-gnu/security/pam_umask.so sshd 17058 kbrazil mem REG 8,2 10280 656234 /lib/x86_64-linux-gnu/security/pam_keyinit.so sshd 17058 kbrazil mem REG 8,2 10336 656239 /lib/x86_64-linux-gnu/security/pam_loginuid.so sshd 17058 kbrazil mem REG 8,2 18736 656250 /lib/x86_64-linux-gnu/security/pam_selinux.so sshd 17058 kbrazil mem REG 8,2 10264 656244 /lib/x86_64-linux-gnu/security/pam_nologin.so sshd 17058 kbrazil mem REG 8,2 22768 656136 /lib/x86_64-linux-gnu/libcap.so.2.25 sshd 17058 kbrazil mem REG 8,2 10080 656222 /lib/x86_64-linux-gnu/security/pam_cap.so sshd 17058 kbrazil mem REG 8,2 6104 656245 /lib/x86_64-linux-gnu/security/pam_permit.so sshd 17058 kbrazil mem REG 8,2 5776 656224 /lib/x86_64-linux-gnu/security/pam_deny.so sshd 17058 kbrazil mem REG 8,2 60272 656262 /lib/x86_64-linux-gnu/security/pam_unix.so sshd 17058 kbrazil mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so sshd 17058 kbrazil mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so sshd 17058 kbrazil mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so sshd 17058 kbrazil mem REG 8,2 84032 656154 /lib/x86_64-linux-gnu/libgpg-error.so.0.22.0 sshd 17058 kbrazil mem REG 8,2 101168 656200 /lib/x86_64-linux-gnu/libresolv-2.27.so sshd 17058 kbrazil mem REG 8,2 14256 656161 /lib/x86_64-linux-gnu/libkeyutils.so.1.5 sshd 17058 kbrazil mem REG 8,2 43616 924373 /usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1 sshd 17058 kbrazil mem REG 8,2 199104 924370 /usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1 sshd 17058 kbrazil mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so sshd 17058 kbrazil mem REG 8,2 1155768 656153 /lib/x86_64-linux-gnu/libgcrypt.so.20.2.1 sshd 17058 kbrazil mem REG 8,2 112672 924379 /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1 sshd 17058 kbrazil mem REG 8,2 153984 656165 /lib/x86_64-linux-gnu/liblzma.so.5.2.2 sshd 17058 kbrazil mem REG 8,2 31680 656201 /lib/x86_64-linux-gnu/librt-2.27.so sshd 17058 kbrazil mem REG 8,2 464824 656191 /lib/x86_64-linux-gnu/libpcre.so.3.13.3 sshd 17058 kbrazil mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so sshd 17058 kbrazil mem REG 8,2 18712 656135 /lib/x86_64-linux-gnu/libcap-ng.so.0.0.0 sshd 17058 kbrazil mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so sshd 17058 kbrazil mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so sshd 17058 kbrazil mem REG 8,2 14248 668487 /lib/x86_64-linux-gnu/libcom_err.so.2.1 sshd 17058 kbrazil mem REG 8,2 877056 924372 /usr/lib/x86_64-linux-gnu/libkrb5.so.3.3 sshd 17058 kbrazil mem REG 8,2 305456 924347 /usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2 sshd 17058 kbrazil mem REG 8,2 39208 656139 /lib/x86_64-linux-gnu/libcrypt-2.27.so sshd 17058 kbrazil mem REG 8,2 116960 656216 /lib/x86_64-linux-gnu/libz.so.1.2.11 sshd 17058 kbrazil mem REG 8,2 10592 656214 /lib/x86_64-linux-gnu/libutil-2.27.so sshd 17058 kbrazil mem REG 8,2 2357760 924313 /usr/lib/x86_64-linux-gnu/libcrypto.so.1.0.0 sshd 17058 kbrazil mem REG 8,2 536648 662910 /lib/x86_64-linux-gnu/libsystemd.so.0.21.0 sshd 17058 kbrazil mem REG 8,2 154832 656203 /lib/x86_64-linux-gnu/libselinux.so.1 sshd 17058 kbrazil mem REG 8,2 55848 656185 /lib/x86_64-linux-gnu/libpam.so.0.83.1 sshd 17058 kbrazil mem REG 8,2 124848 656130 /lib/x86_64-linux-gnu/libaudit.so.1.0.0 sshd 17058 kbrazil mem REG 8,2 39784 656275 /lib/x86_64-linux-gnu/libwrap.so.0.7.6 sshd 17058 kbrazil mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so sshd 17058 kbrazil 0u CHR 1,3 0t0 6 /dev/null sshd 17058 kbrazil 1u CHR 1,3 0t0 6 /dev/null sshd 17058 kbrazil 2u CHR 1,3 0t0 6 /dev/null sshd 17058 kbrazil 3u IPv4 207375 0t0 TCP kbrazil-ubuntu:ssh->192.168.71.1:65159 (ESTABLISHED) sshd 17058 kbrazil 4u unix 0xffff98e4b3fe6c00 0t0 207447 type=DGRAM sshd 17058 kbrazil 5u unix 0xffff98e4b3fe4800 0t0 207713 type=STREAM sshd 17058 kbrazil 6r FIFO 0,12 0t0 207717 pipe sshd 17058 kbrazil 7w FIFO 0,23 0t0 719 /run/systemd/sessions/49.ref sshd 17058 kbrazil 8w FIFO 0,12 0t0 207717 pipe sshd 17058 kbrazil 9u CHR 5,2 0t0 86 /dev/ptmx sshd 17058 kbrazil 11u CHR 5,2 0t0 86 /dev/ptmx sshd 17058 kbrazil 12u CHR 5,2 0t0 86 /dev/ptmx bash 17059 kbrazil cwd DIR 8,2 4096 528261 /home/kbrazil/testfiles bash 17059 kbrazil rtd DIR 8,2 4096 2 / bash 17059 kbrazil txt REG 8,2 1113504 131099 /bin/bash bash 17059 kbrazil mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so bash 17059 kbrazil mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so bash 17059 kbrazil mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so bash 17059 kbrazil mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so bash 17059 kbrazil mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so bash 17059 kbrazil mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so bash 17059 kbrazil mem REG 8,2 170784 656210 /lib/x86_64-linux-gnu/libtinfo.so.5.9 bash 17059 kbrazil mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so bash 17059 kbrazil mem REG 8,2 1683056 933058 /usr/lib/locale/locale-archive bash 17059 kbrazil mem REG 8,2 26376 1049137 /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache bash 17059 kbrazil 0u CHR 136,0 0t0 3 /dev/pts/0 bash 17059 kbrazil 1u CHR 136,0 0t0 3 /dev/pts/0 bash 17059 kbrazil 2u CHR 136,0 0t0 3 /dev/pts/0 bash 17059 kbrazil 255u CHR 136,0 0t0 3 /dev/pts/0 kworker/0 19890 root cwd DIR 8,2 4096 2 / kworker/0 19890 root rtd DIR 8,2 4096 2 / kworker/0 19890 root txt unknown /proc/19890/exe kworker/0 23282 root cwd DIR 8,2 4096 2 / kworker/0 23282 root rtd DIR 8,2 4096 2 / kworker/0 23282 root txt unknown /proc/23282/exe kworker/u 23289 root cwd DIR 8,2 4096 2 / kworker/u 23289 root rtd DIR 8,2 4096 2 / kworker/u 23289 root txt unknown /proc/23289/exe kworker/u 23310 root cwd DIR 8,2 4096 2 / kworker/u 23310 root rtd DIR 8,2 4096 2 / kworker/u 23310 root txt unknown /proc/23310/exe kworker/u 23851 root cwd DIR 8,2 4096 2 / kworker/u 23851 root rtd DIR 8,2 4096 2 / kworker/u 23851 root txt unknown /proc/23851/exe tests.sh 23870 kbrazil cwd DIR 8,2 4096 528261 /home/kbrazil/testfiles tests.sh 23870 kbrazil rtd DIR 8,2 4096 2 / tests.sh 23870 kbrazil txt REG 8,2 1113504 131099 /bin/bash tests.sh 23870 kbrazil mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so tests.sh 23870 kbrazil mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so tests.sh 23870 kbrazil mem REG 8,2 170784 656210 /lib/x86_64-linux-gnu/libtinfo.so.5.9 tests.sh 23870 kbrazil mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so tests.sh 23870 kbrazil mem REG 8,2 1683056 933058 /usr/lib/locale/locale-archive tests.sh 23870 kbrazil mem REG 8,2 26376 1049137 /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache tests.sh 23870 kbrazil 0u CHR 136,0 0t0 3 /dev/pts/0 tests.sh 23870 kbrazil 1u CHR 136,0 0t0 3 /dev/pts/0 tests.sh 23870 kbrazil 2u CHR 136,0 0t0 3 /dev/pts/0 tests.sh 23870 kbrazil 255r REG 8,2 1568 528300 /home/kbrazil/testfiles/tests.sh sleep 23903 kbrazil cwd DIR 8,2 4096 528261 /home/kbrazil/testfiles sleep 23903 kbrazil rtd DIR 8,2 4096 2 / sleep 23903 kbrazil txt REG 8,2 35000 131203 /bin/sleep sleep 23903 kbrazil mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so sleep 23903 kbrazil mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so sleep 23903 kbrazil mem REG 8,2 1683056 933058 /usr/lib/locale/locale-archive sleep 23903 kbrazil 0r CHR 1,3 0t0 6 /dev/null sleep 23903 kbrazil 1u CHR 136,0 0t0 3 /dev/pts/0 sleep 23903 kbrazil 2u CHR 136,0 0t0 3 /dev/pts/0 sleep 23904 kbrazil cwd DIR 8,2 4096 528261 /home/kbrazil/testfiles sleep 23904 kbrazil rtd DIR 8,2 4096 2 / sleep 23904 kbrazil txt REG 8,2 35000 131203 /bin/sleep sleep 23904 kbrazil mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so sleep 23904 kbrazil mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so sleep 23904 kbrazil mem REG 8,2 1683056 933058 /usr/lib/locale/locale-archive sleep 23904 kbrazil 0u CHR 136,0 0t0 3 /dev/pts/0 sleep 23904 kbrazil 1u CHR 136,0 0t0 3 /dev/pts/0 sleep 23904 kbrazil 2u CHR 136,0 0t0 3 /dev/pts/0 sleep 23905 kbrazil cwd DIR 8,2 4096 528261 /home/kbrazil/testfiles sleep 23905 kbrazil rtd DIR 8,2 4096 2 / sleep 23905 kbrazil txt REG 8,2 35000 131203 /bin/sleep sleep 23905 kbrazil mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so sleep 23905 kbrazil mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so sleep 23905 kbrazil mem REG 8,2 1683056 933058 /usr/lib/locale/locale-archive sleep 23905 kbrazil 0u CHR 136,0 0t0 3 /dev/pts/0 sleep 23905 kbrazil 1u CHR 136,0 0t0 3 /dev/pts/0 sleep 23905 kbrazil 2u CHR 136,0 0t0 3 /dev/pts/0 sleep 23906 kbrazil cwd DIR 8,2 4096 528261 /home/kbrazil/testfiles sleep 23906 kbrazil rtd DIR 8,2 4096 2 / sleep 23906 kbrazil txt REG 8,2 35000 131203 /bin/sleep sleep 23906 kbrazil mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so sleep 23906 kbrazil mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so sleep 23906 kbrazil mem REG 8,2 1683056 933058 /usr/lib/locale/locale-archive sleep 23906 kbrazil 0u CHR 136,0 0t0 3 /dev/pts/0 sleep 23906 kbrazil 1u CHR 136,0 0t0 3 /dev/pts/0 sleep 23906 kbrazil 2u CHR 136,0 0t0 3 /dev/pts/0 sudo 23914 root cwd DIR 8,2 4096 528261 /home/kbrazil/testfiles sudo 23914 root rtd DIR 8,2 4096 2 / sudo 23914 root txt REG 8,2 149080 923438 /usr/bin/sudo sudo 23914 root mem REG 8,2 14576 656186 /lib/x86_64-linux-gnu/libpam_misc.so.0.82.0 sudo 23914 root mem REG 8,2 258040 655398 /lib/x86_64-linux-gnu/security/pam_systemd.so sudo 23914 root mem REG 8,2 10376 656261 /lib/x86_64-linux-gnu/security/pam_umask.so sudo 23914 root mem REG 8,2 22768 656136 /lib/x86_64-linux-gnu/libcap.so.2.25 sudo 23914 root mem REG 8,2 10080 656222 /lib/x86_64-linux-gnu/security/pam_cap.so sudo 23914 root mem REG 8,2 6104 656245 /lib/x86_64-linux-gnu/security/pam_permit.so sudo 23914 root mem REG 8,2 5776 656224 /lib/x86_64-linux-gnu/security/pam_deny.so sudo 23914 root mem REG 8,2 39208 656139 /lib/x86_64-linux-gnu/libcrypt-2.27.so sudo 23914 root mem REG 8,2 60272 656262 /lib/x86_64-linux-gnu/security/pam_unix.so sudo 23914 root mem REG 8,2 14464 656226 /lib/x86_64-linux-gnu/security/pam_env.so sudo 23914 root mem REG 8,2 31680 656201 /lib/x86_64-linux-gnu/librt-2.27.so sudo 23914 root mem REG 8,2 258040 655397 /lib/x86_64-linux-gnu/libnss_systemd.so.2 sudo 23914 root mem REG 8,2 55848 656185 /lib/x86_64-linux-gnu/libpam.so.0.83.1 sudo 23914 root mem REG 8,2 354592 940088 /usr/lib/sudo/sudoers.so sudo 23914 root mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so sudo 23914 root mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so sudo 23914 root mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so sudo 23914 root mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so sudo 23914 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so sudo 23914 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so sudo 23914 root mem REG 8,2 464824 656191 /lib/x86_64-linux-gnu/libpcre.so.3.13.3 sudo 23914 root mem REG 8,2 18712 656135 /lib/x86_64-linux-gnu/libcap-ng.so.0.0.0 sudo 23914 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so sudo 23914 root mem REG 8,2 84360 940083 /usr/lib/sudo/libsudo_util.so.0.0.0 sudo 23914 root mem REG 8,2 10592 656214 /lib/x86_64-linux-gnu/libutil-2.27.so sudo 23914 root mem REG 8,2 154832 656203 /lib/x86_64-linux-gnu/libselinux.so.1 sudo 23914 root mem REG 8,2 124848 656130 /lib/x86_64-linux-gnu/libaudit.so.1.0.0 sudo 23914 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so sudo 23914 root mem REG 8,2 1683056 933058 /usr/lib/locale/locale-archive sudo 23914 root 0u CHR 136,0 0t0 3 /dev/pts/0 sudo 23914 root 1w REG 8,2 0 528287 /home/kbrazil/testfiles/lsof-sudo.out sudo 23914 root 2u CHR 136,0 0t0 3 /dev/pts/0 sudo 23914 root 3u netlink 0t0 340065 AUDIT sudo 23914 root 4u unix 0xffff98e4b4afb800 0t0 340069 type=DGRAM sudo 23914 root 6r FIFO 0,12 0t0 340072 pipe sudo 23914 root 7w FIFO 0,12 0t0 340072 pipe lsof 23915 root cwd DIR 8,2 4096 528261 /home/kbrazil/testfiles lsof 23915 root rtd DIR 8,2 4096 2 / lsof 23915 root txt REG 8,2 163224 918160 /usr/bin/lsof lsof 23915 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so lsof 23915 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so lsof 23915 root mem REG 8,2 464824 656191 /lib/x86_64-linux-gnu/libpcre.so.3.13.3 lsof 23915 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so lsof 23915 root mem REG 8,2 154832 656203 /lib/x86_64-linux-gnu/libselinux.so.1 lsof 23915 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so lsof 23915 root mem REG 8,2 1683056 933058 /usr/lib/locale/locale-archive lsof 23915 root 0u CHR 136,0 0t0 3 /dev/pts/0 lsof 23915 root 1w REG 8,2 0 528287 /home/kbrazil/testfiles/lsof-sudo.out lsof 23915 root 2u CHR 136,0 0t0 3 /dev/pts/0 lsof 23915 root 3r DIR 0,4 0 1 /proc lsof 23915 root 4r DIR 0,4 0 340074 /proc/23915/fd lsof 23915 root 5w FIFO 0,12 0t0 340083 pipe lsof 23915 root 6r FIFO 0,12 0t0 340084 pipe lsof 23916 root cwd DIR 8,2 4096 528261 /home/kbrazil/testfiles lsof 23916 root rtd DIR 8,2 4096 2 / lsof 23916 root txt REG 8,2 163224 918160 /usr/bin/lsof lsof 23916 root mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so lsof 23916 root mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so lsof 23916 root mem REG 8,2 464824 656191 /lib/x86_64-linux-gnu/libpcre.so.3.13.3 lsof 23916 root mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so lsof 23916 root mem REG 8,2 154832 656203 /lib/x86_64-linux-gnu/libselinux.so.1 lsof 23916 root mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so lsof 23916 root mem REG 8,2 1683056 933058 /usr/lib/locale/locale-archive lsof 23916 root 4r FIFO 0,12 0t0 340083 pipe lsof 23916 root 7w FIFO 0,12 0t0 340084 pipe jc-1.17.3/tests/fixtures/ubuntu-18.04/lsof.json000066400000000000000000005245201415226333200210530ustar00rootroot00000000000000[{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1/cwd (readlink: Permission denied)"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1/root (readlink: Permission denied)"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1/exe (readlink: Permission denied)"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1/fd (opendir: Permission denied)"},{"command":"kthreadd","pid":2,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/2/cwd (readlink: Permission denied)"},{"command":"kthreadd","pid":2,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/2/root (readlink: Permission denied)"},{"command":"kthreadd","pid":2,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/2/exe (readlink: Permission denied)"},{"command":"kthreadd","pid":2,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/2/fd (opendir: Permission denied)"},{"command":"kworker/0","pid":4,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4/cwd (readlink: Permission denied)"},{"command":"kworker/0","pid":4,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4/root (readlink: Permission denied)"},{"command":"kworker/0","pid":4,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4/exe (readlink: Permission denied)"},{"command":"kworker/0","pid":4,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/4/fd (opendir: Permission denied)"},{"command":"mm_percpu","pid":6,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/6/cwd (readlink: Permission denied)"},{"command":"mm_percpu","pid":6,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/6/root (readlink: Permission denied)"},{"command":"mm_percpu","pid":6,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/6/exe (readlink: Permission denied)"},{"command":"mm_percpu","pid":6,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/6/fd (opendir: Permission denied)"},{"command":"ksoftirqd","pid":7,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/7/cwd (readlink: Permission denied)"},{"command":"ksoftirqd","pid":7,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/7/root (readlink: Permission denied)"},{"command":"ksoftirqd","pid":7,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/7/exe (readlink: Permission denied)"},{"command":"ksoftirqd","pid":7,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/7/fd (opendir: Permission denied)"},{"command":"rcu_sched","pid":8,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/8/cwd (readlink: Permission denied)"},{"command":"rcu_sched","pid":8,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/8/root (readlink: Permission denied)"},{"command":"rcu_sched","pid":8,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/8/exe (readlink: Permission denied)"},{"command":"rcu_sched","pid":8,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/8/fd (opendir: Permission denied)"},{"command":"rcu_bh","pid":9,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/9/cwd (readlink: Permission denied)"},{"command":"rcu_bh","pid":9,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/9/root (readlink: Permission denied)"},{"command":"rcu_bh","pid":9,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/9/exe (readlink: Permission denied)"},{"command":"rcu_bh","pid":9,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/9/fd (opendir: Permission denied)"},{"command":"migration","pid":10,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/10/cwd (readlink: Permission denied)"},{"command":"migration","pid":10,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/10/root (readlink: Permission denied)"},{"command":"migration","pid":10,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/10/exe (readlink: Permission denied)"},{"command":"migration","pid":10,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/10/fd (opendir: Permission denied)"},{"command":"watchdog/","pid":11,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/11/cwd (readlink: Permission denied)"},{"command":"watchdog/","pid":11,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/11/root (readlink: Permission denied)"},{"command":"watchdog/","pid":11,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/11/exe (readlink: Permission denied)"},{"command":"watchdog/","pid":11,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/11/fd (opendir: Permission denied)"},{"command":"cpuhp/0","pid":12,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/12/cwd (readlink: Permission denied)"},{"command":"cpuhp/0","pid":12,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/12/root (readlink: Permission denied)"},{"command":"cpuhp/0","pid":12,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/12/exe (readlink: Permission denied)"},{"command":"cpuhp/0","pid":12,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/12/fd (opendir: Permission denied)"},{"command":"kdevtmpfs","pid":13,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/13/cwd (readlink: Permission denied)"},{"command":"kdevtmpfs","pid":13,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/13/root (readlink: Permission denied)"},{"command":"kdevtmpfs","pid":13,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/13/exe (readlink: Permission denied)"},{"command":"kdevtmpfs","pid":13,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/13/fd (opendir: Permission denied)"},{"command":"netns","pid":14,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/14/cwd (readlink: Permission denied)"},{"command":"netns","pid":14,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/14/root (readlink: Permission denied)"},{"command":"netns","pid":14,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/14/exe (readlink: Permission denied)"},{"command":"netns","pid":14,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/14/fd (opendir: Permission denied)"},{"command":"rcu_tasks","pid":15,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15/cwd (readlink: Permission denied)"},{"command":"rcu_tasks","pid":15,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15/root (readlink: Permission denied)"},{"command":"rcu_tasks","pid":15,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15/exe (readlink: Permission denied)"},{"command":"rcu_tasks","pid":15,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/15/fd (opendir: Permission denied)"},{"command":"kauditd","pid":16,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/16/cwd (readlink: Permission denied)"},{"command":"kauditd","pid":16,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/16/root (readlink: Permission denied)"},{"command":"kauditd","pid":16,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/16/exe (readlink: Permission denied)"},{"command":"kauditd","pid":16,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/16/fd (opendir: Permission denied)"},{"command":"khungtask","pid":17,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/17/cwd (readlink: Permission denied)"},{"command":"khungtask","pid":17,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/17/root (readlink: Permission denied)"},{"command":"khungtask","pid":17,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/17/exe (readlink: Permission denied)"},{"command":"khungtask","pid":17,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/17/fd (opendir: Permission denied)"},{"command":"oom_reape","pid":18,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/18/cwd (readlink: Permission denied)"},{"command":"oom_reape","pid":18,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/18/root (readlink: Permission denied)"},{"command":"oom_reape","pid":18,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/18/exe (readlink: Permission denied)"},{"command":"oom_reape","pid":18,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/18/fd (opendir: Permission denied)"},{"command":"writeback","pid":19,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/19/cwd (readlink: Permission denied)"},{"command":"writeback","pid":19,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/19/root (readlink: Permission denied)"},{"command":"writeback","pid":19,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/19/exe (readlink: Permission denied)"},{"command":"writeback","pid":19,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/19/fd (opendir: Permission denied)"},{"command":"kcompactd","pid":20,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/20/cwd (readlink: Permission denied)"},{"command":"kcompactd","pid":20,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/20/root (readlink: Permission denied)"},{"command":"kcompactd","pid":20,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/20/exe (readlink: Permission denied)"},{"command":"kcompactd","pid":20,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/20/fd (opendir: Permission denied)"},{"command":"ksmd","pid":21,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/21/cwd (readlink: Permission denied)"},{"command":"ksmd","pid":21,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/21/root (readlink: Permission denied)"},{"command":"ksmd","pid":21,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/21/exe (readlink: Permission denied)"},{"command":"ksmd","pid":21,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/21/fd (opendir: Permission denied)"},{"command":"khugepage","pid":22,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/22/cwd (readlink: Permission denied)"},{"command":"khugepage","pid":22,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/22/root (readlink: Permission denied)"},{"command":"khugepage","pid":22,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/22/exe (readlink: Permission denied)"},{"command":"khugepage","pid":22,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/22/fd (opendir: Permission denied)"},{"command":"crypto","pid":23,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23/cwd (readlink: Permission denied)"},{"command":"crypto","pid":23,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23/root (readlink: Permission denied)"},{"command":"crypto","pid":23,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23/exe (readlink: Permission denied)"},{"command":"crypto","pid":23,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/23/fd (opendir: Permission denied)"},{"command":"kintegrit","pid":24,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/24/cwd (readlink: Permission denied)"},{"command":"kintegrit","pid":24,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/24/root (readlink: Permission denied)"},{"command":"kintegrit","pid":24,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/24/exe (readlink: Permission denied)"},{"command":"kintegrit","pid":24,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/24/fd (opendir: Permission denied)"},{"command":"kblockd","pid":25,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/25/cwd (readlink: Permission denied)"},{"command":"kblockd","pid":25,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/25/root (readlink: Permission denied)"},{"command":"kblockd","pid":25,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/25/exe (readlink: Permission denied)"},{"command":"kblockd","pid":25,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/25/fd (opendir: Permission denied)"},{"command":"ata_sff","pid":26,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/26/cwd (readlink: Permission denied)"},{"command":"ata_sff","pid":26,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/26/root (readlink: Permission denied)"},{"command":"ata_sff","pid":26,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/26/exe (readlink: Permission denied)"},{"command":"ata_sff","pid":26,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/26/fd (opendir: Permission denied)"},{"command":"md","pid":27,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/27/cwd (readlink: Permission denied)"},{"command":"md","pid":27,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/27/root (readlink: Permission denied)"},{"command":"md","pid":27,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/27/exe (readlink: Permission denied)"},{"command":"md","pid":27,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/27/fd (opendir: Permission denied)"},{"command":"edac-poll","pid":28,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/28/cwd (readlink: Permission denied)"},{"command":"edac-poll","pid":28,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/28/root (readlink: Permission denied)"},{"command":"edac-poll","pid":28,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/28/exe (readlink: Permission denied)"},{"command":"edac-poll","pid":28,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/28/fd (opendir: Permission denied)"},{"command":"devfreq_w","pid":29,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/29/cwd (readlink: Permission denied)"},{"command":"devfreq_w","pid":29,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/29/root (readlink: Permission denied)"},{"command":"devfreq_w","pid":29,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/29/exe (readlink: Permission denied)"},{"command":"devfreq_w","pid":29,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/29/fd (opendir: Permission denied)"},{"command":"watchdogd","pid":30,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/30/cwd (readlink: Permission denied)"},{"command":"watchdogd","pid":30,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/30/root (readlink: Permission denied)"},{"command":"watchdogd","pid":30,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/30/exe (readlink: Permission denied)"},{"command":"watchdogd","pid":30,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/30/fd (opendir: Permission denied)"},{"command":"kswapd0","pid":34,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/34/cwd (readlink: Permission denied)"},{"command":"kswapd0","pid":34,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/34/root (readlink: Permission denied)"},{"command":"kswapd0","pid":34,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/34/exe (readlink: Permission denied)"},{"command":"kswapd0","pid":34,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/34/fd (opendir: Permission denied)"},{"command":"kworker/u","pid":35,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/35/cwd (readlink: Permission denied)"},{"command":"kworker/u","pid":35,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/35/root (readlink: Permission denied)"},{"command":"kworker/u","pid":35,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/35/exe (readlink: Permission denied)"},{"command":"kworker/u","pid":35,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/35/fd (opendir: Permission denied)"},{"command":"ecryptfs-","pid":36,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/36/cwd (readlink: Permission denied)"},{"command":"ecryptfs-","pid":36,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/36/root (readlink: Permission denied)"},{"command":"ecryptfs-","pid":36,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/36/exe (readlink: Permission denied)"},{"command":"ecryptfs-","pid":36,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/36/fd (opendir: Permission denied)"},{"command":"kthrotld","pid":78,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/78/cwd (readlink: Permission denied)"},{"command":"kthrotld","pid":78,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/78/root (readlink: Permission denied)"},{"command":"kthrotld","pid":78,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/78/exe (readlink: Permission denied)"},{"command":"kthrotld","pid":78,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/78/fd (opendir: Permission denied)"},{"command":"acpi_ther","pid":79,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/79/cwd (readlink: Permission denied)"},{"command":"acpi_ther","pid":79,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/79/root (readlink: Permission denied)"},{"command":"acpi_ther","pid":79,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/79/exe (readlink: Permission denied)"},{"command":"acpi_ther","pid":79,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/79/fd (opendir: Permission denied)"},{"command":"scsi_eh_0","pid":80,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/80/cwd (readlink: Permission denied)"},{"command":"scsi_eh_0","pid":80,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/80/root (readlink: Permission denied)"},{"command":"scsi_eh_0","pid":80,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/80/exe (readlink: Permission denied)"},{"command":"scsi_eh_0","pid":80,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/80/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":81,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/81/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":81,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/81/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":81,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/81/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":81,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/81/fd (opendir: Permission denied)"},{"command":"scsi_eh_1","pid":82,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/82/cwd (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":82,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/82/root (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":82,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/82/exe (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":82,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/82/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":83,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/83/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":83,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/83/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":83,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/83/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":83,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/83/fd (opendir: Permission denied)"},{"command":"ipv6_addr","pid":89,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/89/cwd (readlink: Permission denied)"},{"command":"ipv6_addr","pid":89,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/89/root (readlink: Permission denied)"},{"command":"ipv6_addr","pid":89,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/89/exe (readlink: Permission denied)"},{"command":"ipv6_addr","pid":89,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/89/fd (opendir: Permission denied)"},{"command":"kstrp","pid":99,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/99/cwd (readlink: Permission denied)"},{"command":"kstrp","pid":99,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/99/root (readlink: Permission denied)"},{"command":"kstrp","pid":99,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/99/exe (readlink: Permission denied)"},{"command":"kstrp","pid":99,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/99/fd (opendir: Permission denied)"},{"command":"charger_m","pid":116,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/116/cwd (readlink: Permission denied)"},{"command":"charger_m","pid":116,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/116/root (readlink: Permission denied)"},{"command":"charger_m","pid":116,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/116/exe (readlink: Permission denied)"},{"command":"charger_m","pid":116,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/116/fd (opendir: Permission denied)"},{"command":"mpt_poll_","pid":170,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/170/cwd (readlink: Permission denied)"},{"command":"mpt_poll_","pid":170,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/170/root (readlink: Permission denied)"},{"command":"mpt_poll_","pid":170,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/170/exe (readlink: Permission denied)"},{"command":"mpt_poll_","pid":170,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/170/fd (opendir: Permission denied)"},{"command":"scsi_eh_2","pid":171,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/171/cwd (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":171,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/171/root (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":171,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/171/exe (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":171,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/171/fd (opendir: Permission denied)"},{"command":"mpt/0","pid":172,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/172/cwd (readlink: Permission denied)"},{"command":"mpt/0","pid":172,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/172/root (readlink: Permission denied)"},{"command":"mpt/0","pid":172,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/172/exe (readlink: Permission denied)"},{"command":"mpt/0","pid":172,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/172/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":173,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/173/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":173,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/173/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":173,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/173/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":173,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/173/fd (opendir: Permission denied)"},{"command":"scsi_eh_3","pid":174,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/174/cwd (readlink: Permission denied)"},{"command":"scsi_eh_3","pid":174,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/174/root (readlink: Permission denied)"},{"command":"scsi_eh_3","pid":174,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/174/exe (readlink: Permission denied)"},{"command":"scsi_eh_3","pid":174,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/174/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":175,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/175/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":175,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/175/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":175,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/175/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":175,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/175/fd (opendir: Permission denied)"},{"command":"scsi_eh_4","pid":176,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/176/cwd (readlink: Permission denied)"},{"command":"scsi_eh_4","pid":176,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/176/root (readlink: Permission denied)"},{"command":"scsi_eh_4","pid":176,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/176/exe (readlink: Permission denied)"},{"command":"scsi_eh_4","pid":176,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/176/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":177,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/177/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":177,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/177/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":177,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/177/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":177,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/177/fd (opendir: Permission denied)"},{"command":"scsi_eh_5","pid":178,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/178/cwd (readlink: Permission denied)"},{"command":"scsi_eh_5","pid":178,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/178/root (readlink: Permission denied)"},{"command":"scsi_eh_5","pid":178,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/178/exe (readlink: Permission denied)"},{"command":"scsi_eh_5","pid":178,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/178/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":179,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/179/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":179,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/179/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":179,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/179/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":179,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/179/fd (opendir: Permission denied)"},{"command":"scsi_eh_6","pid":180,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/180/cwd (readlink: Permission denied)"},{"command":"scsi_eh_6","pid":180,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/180/root (readlink: Permission denied)"},{"command":"scsi_eh_6","pid":180,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/180/exe (readlink: Permission denied)"},{"command":"scsi_eh_6","pid":180,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/180/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":181,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/181/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":181,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/181/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":181,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/181/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":181,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/181/fd (opendir: Permission denied)"},{"command":"scsi_eh_7","pid":182,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/182/cwd (readlink: Permission denied)"},{"command":"scsi_eh_7","pid":182,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/182/root (readlink: Permission denied)"},{"command":"scsi_eh_7","pid":182,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/182/exe (readlink: Permission denied)"},{"command":"scsi_eh_7","pid":182,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/182/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":183,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/183/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":183,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/183/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":183,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/183/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":183,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/183/fd (opendir: Permission denied)"},{"command":"scsi_eh_8","pid":188,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/188/cwd (readlink: Permission denied)"},{"command":"scsi_eh_8","pid":188,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/188/root (readlink: Permission denied)"},{"command":"scsi_eh_8","pid":188,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/188/exe (readlink: Permission denied)"},{"command":"scsi_eh_8","pid":188,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/188/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":189,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/189/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":189,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/189/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":189,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/189/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":189,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/189/fd (opendir: Permission denied)"},{"command":"scsi_eh_9","pid":191,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/191/cwd (readlink: Permission denied)"},{"command":"scsi_eh_9","pid":191,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/191/root (readlink: Permission denied)"},{"command":"scsi_eh_9","pid":191,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/191/exe (readlink: Permission denied)"},{"command":"scsi_eh_9","pid":191,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/191/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":196,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/196/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":196,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/196/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":196,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/196/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":196,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/196/fd (opendir: Permission denied)"},{"command":"scsi_eh_1","pid":198,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/198/cwd (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":198,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/198/root (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":198,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/198/exe (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":198,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/198/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":199,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/199/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":199,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/199/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":199,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/199/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":199,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/199/fd (opendir: Permission denied)"},{"command":"scsi_eh_1","pid":201,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/201/cwd (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":201,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/201/root (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":201,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/201/exe (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":201,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/201/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":203,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/203/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":203,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/203/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":203,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/203/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":203,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/203/fd (opendir: Permission denied)"},{"command":"scsi_eh_1","pid":205,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/205/cwd (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":205,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/205/root (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":205,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/205/exe (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":205,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/205/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":208,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/208/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":208,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/208/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":208,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/208/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":208,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/208/fd (opendir: Permission denied)"},{"command":"scsi_eh_1","pid":209,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/209/cwd (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":209,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/209/root (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":209,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/209/exe (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":209,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/209/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":212,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/212/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":212,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/212/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":212,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/212/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":212,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/212/fd (opendir: Permission denied)"},{"command":"scsi_eh_1","pid":213,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/213/cwd (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":213,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/213/root (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":213,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/213/exe (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":213,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/213/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":216,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/216/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":216,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/216/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":216,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/216/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":216,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/216/fd (opendir: Permission denied)"},{"command":"scsi_eh_1","pid":217,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/217/cwd (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":217,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/217/root (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":217,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/217/exe (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":217,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/217/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":219,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/219/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":219,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/219/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":219,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/219/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":219,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/219/fd (opendir: Permission denied)"},{"command":"scsi_eh_1","pid":221,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/221/cwd (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":221,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/221/root (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":221,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/221/exe (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":221,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/221/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":223,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/223/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":223,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/223/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":223,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/223/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":223,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/223/fd (opendir: Permission denied)"},{"command":"scsi_eh_1","pid":225,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/225/cwd (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":225,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/225/root (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":225,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/225/exe (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":225,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/225/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":227,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/227/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":227,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/227/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":227,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/227/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":227,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/227/fd (opendir: Permission denied)"},{"command":"scsi_eh_1","pid":229,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/229/cwd (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":229,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/229/root (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":229,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/229/exe (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":229,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/229/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":230,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/230/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":230,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/230/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":230,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/230/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":230,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/230/fd (opendir: Permission denied)"},{"command":"scsi_eh_1","pid":232,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/232/cwd (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":232,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/232/root (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":232,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/232/exe (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":232,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/232/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":233,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/233/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":233,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/233/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":233,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/233/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":233,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/233/fd (opendir: Permission denied)"},{"command":"scsi_eh_2","pid":235,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/235/cwd (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":235,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/235/root (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":235,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/235/exe (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":235,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/235/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":237,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/237/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":237,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/237/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":237,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/237/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":237,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/237/fd (opendir: Permission denied)"},{"command":"scsi_eh_2","pid":238,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/238/cwd (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":238,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/238/root (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":238,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/238/exe (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":238,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/238/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":240,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/240/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":240,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/240/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":240,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/240/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":240,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/240/fd (opendir: Permission denied)"},{"command":"scsi_eh_2","pid":241,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/241/cwd (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":241,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/241/root (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":241,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/241/exe (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":241,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/241/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":243,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/243/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":243,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/243/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":243,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/243/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":243,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/243/fd (opendir: Permission denied)"},{"command":"scsi_eh_2","pid":245,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/245/cwd (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":245,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/245/root (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":245,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/245/exe (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":245,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/245/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":246,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/246/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":246,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/246/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":246,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/246/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":246,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/246/fd (opendir: Permission denied)"},{"command":"scsi_eh_2","pid":248,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/248/cwd (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":248,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/248/root (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":248,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/248/exe (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":248,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/248/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":250,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/250/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":250,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/250/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":250,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/250/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":250,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/250/fd (opendir: Permission denied)"},{"command":"scsi_eh_2","pid":252,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/252/cwd (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":252,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/252/root (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":252,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/252/exe (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":252,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/252/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":254,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/254/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":254,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/254/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":254,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/254/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":254,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/254/fd (opendir: Permission denied)"},{"command":"scsi_eh_2","pid":256,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/256/cwd (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":256,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/256/root (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":256,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/256/exe (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":256,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/256/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":258,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/258/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":258,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/258/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":258,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/258/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":258,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/258/fd (opendir: Permission denied)"},{"command":"scsi_eh_2","pid":259,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/259/cwd (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":259,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/259/root (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":259,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/259/exe (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":259,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/259/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":260,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/260/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":260,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/260/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":260,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/260/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":260,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/260/fd (opendir: Permission denied)"},{"command":"scsi_eh_2","pid":261,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/261/cwd (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":261,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/261/root (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":261,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/261/exe (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":261,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/261/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":262,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/262/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":262,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/262/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":262,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/262/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":262,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/262/fd (opendir: Permission denied)"},{"command":"scsi_eh_2","pid":263,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/263/cwd (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":263,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/263/root (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":263,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/263/exe (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":263,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/263/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":264,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/264/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":264,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/264/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":264,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/264/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":264,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/264/fd (opendir: Permission denied)"},{"command":"scsi_eh_3","pid":265,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/265/cwd (readlink: Permission denied)"},{"command":"scsi_eh_3","pid":265,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/265/root (readlink: Permission denied)"},{"command":"scsi_eh_3","pid":265,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/265/exe (readlink: Permission denied)"},{"command":"scsi_eh_3","pid":265,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/265/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":266,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/266/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":266,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/266/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":266,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/266/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":266,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/266/fd (opendir: Permission denied)"},{"command":"scsi_eh_3","pid":267,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/267/cwd (readlink: Permission denied)"},{"command":"scsi_eh_3","pid":267,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/267/root (readlink: Permission denied)"},{"command":"scsi_eh_3","pid":267,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/267/exe (readlink: Permission denied)"},{"command":"scsi_eh_3","pid":267,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/267/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":268,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/268/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":268,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/268/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":268,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/268/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":268,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/268/fd (opendir: Permission denied)"},{"command":"scsi_eh_3","pid":295,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/295/cwd (readlink: Permission denied)"},{"command":"scsi_eh_3","pid":295,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/295/root (readlink: Permission denied)"},{"command":"scsi_eh_3","pid":295,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/295/exe (readlink: Permission denied)"},{"command":"scsi_eh_3","pid":295,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/295/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":296,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/296/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":296,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/296/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":296,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/296/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":296,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/296/fd (opendir: Permission denied)"},{"command":"ttm_swap","pid":302,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/302/cwd (readlink: Permission denied)"},{"command":"ttm_swap","pid":302,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/302/root (readlink: Permission denied)"},{"command":"ttm_swap","pid":302,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/302/exe (readlink: Permission denied)"},{"command":"ttm_swap","pid":302,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/302/fd (opendir: Permission denied)"},{"command":"irq/16-vm","pid":303,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/303/cwd (readlink: Permission denied)"},{"command":"irq/16-vm","pid":303,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/303/root (readlink: Permission denied)"},{"command":"irq/16-vm","pid":303,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/303/exe (readlink: Permission denied)"},{"command":"irq/16-vm","pid":303,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/303/fd (opendir: Permission denied)"},{"command":"kworker/0","pid":305,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/305/cwd (readlink: Permission denied)"},{"command":"kworker/0","pid":305,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/305/root (readlink: Permission denied)"},{"command":"kworker/0","pid":305,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/305/exe (readlink: Permission denied)"},{"command":"kworker/0","pid":305,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/305/fd (opendir: Permission denied)"},{"command":"raid5wq","pid":369,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/369/cwd (readlink: Permission denied)"},{"command":"raid5wq","pid":369,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/369/root (readlink: Permission denied)"},{"command":"raid5wq","pid":369,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/369/exe (readlink: Permission denied)"},{"command":"raid5wq","pid":369,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/369/fd (opendir: Permission denied)"},{"command":"jbd2/sda2","pid":422,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/422/cwd (readlink: Permission denied)"},{"command":"jbd2/sda2","pid":422,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/422/root (readlink: Permission denied)"},{"command":"jbd2/sda2","pid":422,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/422/exe (readlink: Permission denied)"},{"command":"jbd2/sda2","pid":422,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/422/fd (opendir: Permission denied)"},{"command":"ext4-rsv-","pid":423,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/423/cwd (readlink: Permission denied)"},{"command":"ext4-rsv-","pid":423,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/423/root (readlink: Permission denied)"},{"command":"ext4-rsv-","pid":423,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/423/exe (readlink: Permission denied)"},{"command":"ext4-rsv-","pid":423,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/423/fd (opendir: Permission denied)"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/495/cwd (readlink: Permission denied)"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/495/root (readlink: Permission denied)"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/495/exe (readlink: Permission denied)"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/495/fd (opendir: Permission denied)"},{"command":"iscsi_eh","pid":498,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/498/cwd (readlink: Permission denied)"},{"command":"iscsi_eh","pid":498,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/498/root (readlink: Permission denied)"},{"command":"iscsi_eh","pid":498,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/498/exe (readlink: Permission denied)"},{"command":"iscsi_eh","pid":498,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/498/fd (opendir: Permission denied)"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/509/cwd (readlink: Permission denied)"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/509/root (readlink: Permission denied)"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/509/exe (readlink: Permission denied)"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/509/fd (opendir: Permission denied)"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/511/cwd (readlink: Permission denied)"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/511/root (readlink: Permission denied)"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/511/exe (readlink: Permission denied)"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/511/fd (opendir: Permission denied)"},{"command":"ib-comp-w","pid":512,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/512/cwd (readlink: Permission denied)"},{"command":"ib-comp-w","pid":512,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/512/root (readlink: Permission denied)"},{"command":"ib-comp-w","pid":512,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/512/exe (readlink: Permission denied)"},{"command":"ib-comp-w","pid":512,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/512/fd (opendir: Permission denied)"},{"command":"ib_mcast","pid":513,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/513/cwd (readlink: Permission denied)"},{"command":"ib_mcast","pid":513,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/513/root (readlink: Permission denied)"},{"command":"ib_mcast","pid":513,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/513/exe (readlink: Permission denied)"},{"command":"ib_mcast","pid":513,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/513/fd (opendir: Permission denied)"},{"command":"ib_nl_sa_","pid":514,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/514/cwd (readlink: Permission denied)"},{"command":"ib_nl_sa_","pid":514,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/514/root (readlink: Permission denied)"},{"command":"ib_nl_sa_","pid":514,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/514/exe (readlink: Permission denied)"},{"command":"ib_nl_sa_","pid":514,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/514/fd (opendir: Permission denied)"},{"command":"rdma_cm","pid":523,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/523/cwd (readlink: Permission denied)"},{"command":"rdma_cm","pid":523,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/523/root (readlink: Permission denied)"},{"command":"rdma_cm","pid":523,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/523/exe (readlink: Permission denied)"},{"command":"rdma_cm","pid":523,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/523/fd (opendir: Permission denied)"},{"command":"loop0","pid":541,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/541/cwd (readlink: Permission denied)"},{"command":"loop0","pid":541,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/541/root (readlink: Permission denied)"},{"command":"loop0","pid":541,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/541/exe (readlink: Permission denied)"},{"command":"loop0","pid":541,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/541/fd (opendir: Permission denied)"},{"command":"loop1","pid":545,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/545/cwd (readlink: Permission denied)"},{"command":"loop1","pid":545,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/545/root (readlink: Permission denied)"},{"command":"loop1","pid":545,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/545/exe (readlink: Permission denied)"},{"command":"loop1","pid":545,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/545/fd (opendir: Permission denied)"},{"command":"loop2","pid":548,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/548/cwd (readlink: Permission denied)"},{"command":"loop2","pid":548,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/548/root (readlink: Permission denied)"},{"command":"loop2","pid":548,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/548/exe (readlink: Permission denied)"},{"command":"loop2","pid":548,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/548/fd (opendir: Permission denied)"},{"command":"loop3","pid":552,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/552/cwd (readlink: Permission denied)"},{"command":"loop3","pid":552,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/552/root (readlink: Permission denied)"},{"command":"loop3","pid":552,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/552/exe (readlink: Permission denied)"},{"command":"loop3","pid":552,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/552/fd (opendir: Permission denied)"},{"command":"loop5","pid":554,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/554/cwd (readlink: Permission denied)"},{"command":"loop5","pid":554,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/554/root (readlink: Permission denied)"},{"command":"loop5","pid":554,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/554/exe (readlink: Permission denied)"},{"command":"loop5","pid":554,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/554/fd (opendir: Permission denied)"},{"command":"loop7","pid":556,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/556/cwd (readlink: Permission denied)"},{"command":"loop7","pid":556,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/556/root (readlink: Permission denied)"},{"command":"loop7","pid":556,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/556/exe (readlink: Permission denied)"},{"command":"loop7","pid":556,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/556/fd (opendir: Permission denied)"},{"command":"loop8","pid":557,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/557/cwd (readlink: Permission denied)"},{"command":"loop8","pid":557,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/557/root (readlink: Permission denied)"},{"command":"loop8","pid":557,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/557/exe (readlink: Permission denied)"},{"command":"loop8","pid":557,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/557/fd (opendir: Permission denied)"},{"command":"loop10","pid":559,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/559/cwd (readlink: Permission denied)"},{"command":"loop10","pid":559,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/559/root (readlink: Permission denied)"},{"command":"loop10","pid":559,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/559/exe (readlink: Permission denied)"},{"command":"loop10","pid":559,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/559/fd (opendir: Permission denied)"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/606/cwd (readlink: Permission denied)"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/606/root (readlink: Permission denied)"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/606/exe (readlink: Permission denied)"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/606/fd (opendir: Permission denied)"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/606/task/617/cwd (readlink: Permission denied)"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/606/task/617/root (readlink: Permission denied)"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/606/task/617/exe (readlink: Permission denied)"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/606/task/617/fd (opendir: Permission denied)"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/607/cwd (readlink: Permission denied)"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/607/root (readlink: Permission denied)"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/607/exe (readlink: Permission denied)"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/607/fd (opendir: Permission denied)"},{"command":"kworker/u","pid":671,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/671/cwd (readlink: Permission denied)"},{"command":"kworker/u","pid":671,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/671/root (readlink: Permission denied)"},{"command":"kworker/u","pid":671,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/671/exe (readlink: Permission denied)"},{"command":"kworker/u","pid":671,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/671/fd (opendir: Permission denied)"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/680/cwd (readlink: Permission denied)"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/680/root (readlink: Permission denied)"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/680/exe (readlink: Permission denied)"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/680/fd (opendir: Permission denied)"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/680/task/733/cwd (readlink: Permission denied)"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/680/task/733/root (readlink: Permission denied)"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/680/task/733/exe (readlink: Permission denied)"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/680/task/733/fd (opendir: Permission denied)"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/867/cwd (readlink: Permission denied)"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/867/root (readlink: Permission denied)"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/867/exe (readlink: Permission denied)"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/867/fd (opendir: Permission denied)"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/885/cwd (readlink: Permission denied)"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/885/root (readlink: Permission denied)"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/885/exe (readlink: Permission denied)"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/885/fd (opendir: Permission denied)"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/955/cwd (readlink: Permission denied)"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/955/root (readlink: Permission denied)"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/955/exe (readlink: Permission denied)"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/955/fd (opendir: Permission denied)"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/955/task/965/cwd (readlink: Permission denied)"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/955/task/965/root (readlink: Permission denied)"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/955/task/965/exe (readlink: Permission denied)"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/955/task/965/fd (opendir: Permission denied)"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/955/task/966/cwd (readlink: Permission denied)"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/955/task/966/root (readlink: Permission denied)"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/955/task/966/exe (readlink: Permission denied)"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/955/task/966/fd (opendir: Permission denied)"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/955/task/967/cwd (readlink: Permission denied)"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/955/task/967/root (readlink: Permission denied)"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/955/task/967/exe (readlink: Permission denied)"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/955/task/967/fd (opendir: Permission denied)"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/956/cwd (readlink: Permission denied)"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/956/root (readlink: Permission denied)"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/956/exe (readlink: Permission denied)"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/956/fd (opendir: Permission denied)"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/956/task/1294/cwd (readlink: Permission denied)"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/956/task/1294/root (readlink: Permission denied)"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/956/task/1294/exe (readlink: Permission denied)"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/956/task/1294/fd (opendir: Permission denied)"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/cwd (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/root (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/exe (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/960/fd (opendir: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22673/cwd (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22673/root (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22673/exe (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/960/task/22673/fd (opendir: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22675/cwd (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22675/root (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22675/exe (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/960/task/22675/fd (opendir: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22676/cwd (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22676/root (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22676/exe (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/960/task/22676/fd (opendir: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22678/cwd (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22678/root (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22678/exe (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/960/task/22678/fd (opendir: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22683/cwd (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22683/root (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22683/exe (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/960/task/22683/fd (opendir: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22685/cwd (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22685/root (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22685/exe (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/960/task/22685/fd (opendir: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22686/cwd (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22686/root (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22686/exe (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/960/task/22686/fd (opendir: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22688/cwd (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22688/root (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22688/exe (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/960/task/22688/fd (opendir: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22689/cwd (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22689/root (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22689/exe (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/960/task/22689/fd (opendir: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22690/cwd (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22690/root (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22690/exe (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/960/task/22690/fd (opendir: Permission denied)"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/961/cwd (readlink: Permission denied)"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/961/root (readlink: Permission denied)"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/961/exe (readlink: Permission denied)"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/961/fd (opendir: Permission denied)"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/961/task/1030/cwd (readlink: Permission denied)"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/961/task/1030/root (readlink: Permission denied)"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/961/task/1030/exe (readlink: Permission denied)"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/961/task/1030/fd (opendir: Permission denied)"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/961/task/1101/cwd (readlink: Permission denied)"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/961/task/1101/root (readlink: Permission denied)"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/961/task/1101/exe (readlink: Permission denied)"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/961/task/1101/fd (opendir: Permission denied)"},{"command":"snapd","pid":1017,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/cwd (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/root (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/exe (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1017/fd (opendir: Permission denied)"},{"command":"snapd","pid":1017,"tid":1326,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1326/cwd (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1326,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1326/root (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1326,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1326/exe (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1326,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1326/fd (opendir: Permission denied)"},{"command":"snapd","pid":1017,"tid":1327,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1327/cwd (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1327,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1327/root (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1327,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1327/exe (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1327,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1327/fd (opendir: Permission denied)"},{"command":"snapd","pid":1017,"tid":1328,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1328/cwd (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1328,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1328/root (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1328,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1328/exe (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1328,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1328/fd (opendir: Permission denied)"},{"command":"snapd","pid":1017,"tid":1329,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1329/cwd (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1329,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1329/root (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1329,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1329/exe (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1329,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1329/fd (opendir: Permission denied)"},{"command":"snapd","pid":1017,"tid":1332,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1332/cwd (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1332,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1332/root (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1332,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1332/exe (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1332,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1332/fd (opendir: Permission denied)"},{"command":"snapd","pid":1017,"tid":1342,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1342/cwd (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1342,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1342/root (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1342,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1342/exe (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1342,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1342/fd (opendir: Permission denied)"},{"command":"snapd","pid":1017,"tid":1359,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1359/cwd (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1359,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1359/root (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1359,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1359/exe (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1359,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1359/fd (opendir: Permission denied)"},{"command":"snapd","pid":1017,"tid":1382,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1382/cwd (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1382,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1382/root (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1382,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1382/exe (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1382,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1382/fd (opendir: Permission denied)"},{"command":"snapd","pid":1017,"tid":1517,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1517/cwd (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1517,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1517/root (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1517,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1517/exe (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1517,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1517/fd (opendir: Permission denied)"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1018/cwd (readlink: Permission denied)"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1018/root (readlink: Permission denied)"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1018/exe (readlink: Permission denied)"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1018/fd (opendir: Permission denied)"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1038/cwd (readlink: Permission denied)"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1038/root (readlink: Permission denied)"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1038/exe (readlink: Permission denied)"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1038/fd (opendir: Permission denied)"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1043/cwd (readlink: Permission denied)"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1043/root (readlink: Permission denied)"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1043/exe (readlink: Permission denied)"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1043/fd (opendir: Permission denied)"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1048/cwd (readlink: Permission denied)"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1048/root (readlink: Permission denied)"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1048/exe (readlink: Permission denied)"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1048/fd (opendir: Permission denied)"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1099/cwd (readlink: Permission denied)"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1099/root (readlink: Permission denied)"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1099/exe (readlink: Permission denied)"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1099/fd (opendir: Permission denied)"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1099/task/1311/cwd (readlink: Permission denied)"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1099/task/1311/root (readlink: Permission denied)"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1099/task/1311/exe (readlink: Permission denied)"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1099/task/1311/fd (opendir: Permission denied)"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1100/cwd (readlink: Permission denied)"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1100/root (readlink: Permission denied)"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1100/exe (readlink: Permission denied)"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1100/fd (opendir: Permission denied)"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/cwd (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/root (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/exe (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1112/fd (opendir: Permission denied)"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1303/cwd (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1303/root (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1303/exe (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1303/fd (opendir: Permission denied)"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1304/cwd (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1304/root (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1304/exe (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1304/fd (opendir: Permission denied)"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1305/cwd (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1305/root (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1305/exe (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1305/fd (opendir: Permission denied)"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1306/cwd (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1306/root (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1306/exe (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1306/fd (opendir: Permission denied)"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1315/cwd (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1315/root (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1315/exe (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1315/fd (opendir: Permission denied)"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1322/cwd (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1322/root (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1322/exe (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1322/fd (opendir: Permission denied)"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1323/cwd (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1323/root (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1323/exe (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1323/fd (opendir: Permission denied)"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1325/cwd (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1325/root (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1325/exe (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1325/fd (opendir: Permission denied)"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1127/cwd (readlink: Permission denied)"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1127/root (readlink: Permission denied)"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1127/exe (readlink: Permission denied)"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1127/fd (opendir: Permission denied)"},{"command":"agetty","pid":1153,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1153/cwd (readlink: Permission denied)"},{"command":"agetty","pid":1153,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1153/root (readlink: Permission denied)"},{"command":"agetty","pid":1153,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1153/exe (readlink: Permission denied)"},{"command":"agetty","pid":1153,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1153/fd (opendir: Permission denied)"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1154/cwd (readlink: Permission denied)"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1154/root (readlink: Permission denied)"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1154/exe (readlink: Permission denied)"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1154/fd (opendir: Permission denied)"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1154/task/1198/cwd (readlink: Permission denied)"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1154/task/1198/root (readlink: Permission denied)"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1154/task/1198/exe (readlink: Permission denied)"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1154/task/1198/fd (opendir: Permission denied)"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1154/task/1203/cwd (readlink: Permission denied)"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1154/task/1203/root (readlink: Permission denied)"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1154/task/1203/exe (readlink: Permission denied)"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1154/task/1203/fd (opendir: Permission denied)"},{"command":"loop11","pid":1532,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1532/cwd (readlink: Permission denied)"},{"command":"loop11","pid":1532,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1532/root (readlink: Permission denied)"},{"command":"loop11","pid":1532,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1532/exe (readlink: Permission denied)"},{"command":"loop11","pid":1532,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1532/fd (opendir: Permission denied)"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"8,2","size_off":1595792,"node":668802,"name":"/lib/systemd/systemd"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1700792,"node":656167,"name":"/lib/x86_64-linux-gnu/libm-2.27.so"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":121016,"node":655394,"name":"/lib/x86_64-linux-gnu/libudev.so.1.6.9"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":43304,"node":656160,"name":"/lib/x86_64-linux-gnu/libjson-c.so.3.0.1"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":34872,"node":924307,"name":"/usr/lib/x86_64-linux-gnu/libargon2.so.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":432640,"node":656144,"name":"/lib/x86_64-linux-gnu/libdevmapper.so.1.02.1"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":18680,"node":656129,"name":"/lib/x86_64-linux-gnu/libattr.so.1.1.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":18712,"node":656135,"name":"/lib/x86_64-linux-gnu/libcap-ng.so.0.0.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":206872,"node":656157,"name":"/lib/x86_64-linux-gnu/libidn.so.11.6.16"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":27088,"node":924361,"name":"/usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":22768,"node":656136,"name":"/lib/x86_64-linux-gnu/libcap.so.2.25"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":310040,"node":656140,"name":"/lib/x86_64-linux-gnu/libcryptsetup.so.12.2.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":31232,"node":656125,"name":"/lib/x86_64-linux-gnu/libacl.so.1.1.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":64144,"node":656127,"name":"/lib/x86_64-linux-gnu/libapparmor.so.1.4.2"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":92208,"node":656162,"name":"/lib/x86_64-linux-gnu/libkmod.so.2.3.2"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":124848,"node":656130,"name":"/lib/x86_64-linux-gnu/libaudit.so.1.0.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":55848,"node":656185,"name":"/lib/x86_64-linux-gnu/libpam.so.0.83.1"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":311720,"node":656131,"name":"/lib/x86_64-linux-gnu/libblkid.so.1.1.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":340232,"node":656170,"name":"/lib/x86_64-linux-gnu/libmount.so.1.1.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":288976,"node":656202,"name":"/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2363632,"node":655401,"name":"/lib/systemd/libsystemd-shared-237.so"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"1u","type":"unix","device":"0x0000000000000000","size_off":0,"node":33601,"name":"type=STREAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"2u","type":"unix","device":"0x0000000000000000","size_off":0,"node":33601,"name":"type=STREAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"3u","type":"unix","device":"0x0000000000000000","size_off":0,"node":33650,"name":"type=DGRAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[signalfd]"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"6r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"7r","type":"DIR","device":"0,28","size_off":0,"node":1263,"name":"/sys/fs/cgroup/unified/user.slice/user-1000.slice/user@1000.service"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"8u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"9u","type":"netlink","device":null,"size_off":0,"node":33759,"name":"KOBJECT_UEVENT"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"10u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"11r","type":"REG","device":"0,4","size_off":0,"node":33761,"name":"/proc/1723/mountinfo"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"12r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"13r","type":"REG","device":"0,4","size_off":0,"node":4026532068,"name":"/proc/swaps"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"14u","type":"unix","device":"0x0000000000000000","size_off":0,"node":33762,"name":"/run/user/1000/systemd/notify type=DGRAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"15u","type":"unix","device":"0x0000000000000000","size_off":0,"node":33763,"name":"type=DGRAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"16u","type":"unix","device":"0x0000000000000000","size_off":0,"node":33764,"name":"type=DGRAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"17u","type":"unix","device":"0x0000000000000000","size_off":0,"node":33765,"name":"/run/user/1000/systemd/private type=STREAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"22u","type":"unix","device":"0x0000000000000000","size_off":0,"node":33808,"name":"/run/user/1000/gnupg/S.gpg-agent.ssh type=STREAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"23u","type":"unix","device":"0x0000000000000000","size_off":0,"node":33809,"name":"/run/user/1000/gnupg/S.dirmngr type=STREAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"24u","type":"unix","device":"0x0000000000000000","size_off":0,"node":33810,"name":"/run/user/1000/gnupg/S.gpg-agent.browser type=STREAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"25u","type":"unix","device":"0x0000000000000000","size_off":0,"node":33811,"name":"/run/user/1000/gnupg/S.gpg-agent type=STREAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"26u","type":"unix","device":"0x0000000000000000","size_off":0,"node":33812,"name":"/run/user/1000/gnupg/S.gpg-agent.extra type=STREAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"27u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1734/cwd (readlink: Permission denied)"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1734/root (readlink: Permission denied)"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1734/exe (readlink: Permission denied)"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1734/fd (opendir: Permission denied)"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":528261,"name":"/home/kbrazil/testfiles"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"8,2","size_off":1113504,"node":131099,"name":"/bin/bash"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170784,"node":656210,"name":"/lib/x86_64-linux-gnu/libtinfo.so.5.9"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":26376,"node":1049137,"name":"/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"4,64","size_off":0,"node":87,"name":"/dev/ttyS0"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"4,64","size_off":0,"node":87,"name":"/dev/ttyS0"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"4,64","size_off":0,"node":87,"name":"/dev/ttyS0"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"255u","type":"CHR","device":"4,64","size_off":0,"node":87,"name":"/dev/ttyS0"},{"command":"loop9","pid":3451,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/3451/cwd (readlink: Permission denied)"},{"command":"loop9","pid":3451,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/3451/root (readlink: Permission denied)"},{"command":"loop9","pid":3451,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/3451/exe (readlink: Permission denied)"},{"command":"loop9","pid":3451,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/3451/fd (opendir: Permission denied)"},{"command":"loop4","pid":3657,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/3657/cwd (readlink: Permission denied)"},{"command":"loop4","pid":3657,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/3657/root (readlink: Permission denied)"},{"command":"loop4","pid":3657,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/3657/exe (readlink: Permission denied)"},{"command":"loop4","pid":3657,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/3657/fd (opendir: Permission denied)"},{"command":"xfsalloc","pid":15892,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15892/cwd (readlink: Permission denied)"},{"command":"xfsalloc","pid":15892,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15892/root (readlink: Permission denied)"},{"command":"xfsalloc","pid":15892,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15892/exe (readlink: Permission denied)"},{"command":"xfsalloc","pid":15892,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/15892/fd (opendir: Permission denied)"},{"command":"xfs_mru_c","pid":15896,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15896/cwd (readlink: Permission denied)"},{"command":"xfs_mru_c","pid":15896,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15896/root (readlink: Permission denied)"},{"command":"xfs_mru_c","pid":15896,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15896/exe (readlink: Permission denied)"},{"command":"xfs_mru_c","pid":15896,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/15896/fd (opendir: Permission denied)"},{"command":"jfsIO","pid":15900,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15900/cwd (readlink: Permission denied)"},{"command":"jfsIO","pid":15900,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15900/root (readlink: Permission denied)"},{"command":"jfsIO","pid":15900,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15900/exe (readlink: Permission denied)"},{"command":"jfsIO","pid":15900,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/15900/fd (opendir: Permission denied)"},{"command":"jfsCommit","pid":15901,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15901/cwd (readlink: Permission denied)"},{"command":"jfsCommit","pid":15901,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15901/root (readlink: Permission denied)"},{"command":"jfsCommit","pid":15901,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15901/exe (readlink: Permission denied)"},{"command":"jfsCommit","pid":15901,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/15901/fd (opendir: Permission denied)"},{"command":"jfsSync","pid":15902,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15902/cwd (readlink: Permission denied)"},{"command":"jfsSync","pid":15902,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15902/root (readlink: Permission denied)"},{"command":"jfsSync","pid":15902,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15902/exe (readlink: Permission denied)"},{"command":"jfsSync","pid":15902,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/15902/fd (opendir: Permission denied)"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/16944/cwd (readlink: Permission denied)"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/16944/root (readlink: Permission denied)"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/16944/exe (readlink: Permission denied)"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/16944/fd (opendir: Permission denied)"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/17058/cwd (readlink: Permission denied)"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/17058/root (readlink: Permission denied)"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/17058/exe (readlink: Permission denied)"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/17058/fd (opendir: Permission denied)"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":528261,"name":"/home/kbrazil/testfiles"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"8,2","size_off":1113504,"node":131099,"name":"/bin/bash"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170784,"node":656210,"name":"/lib/x86_64-linux-gnu/libtinfo.so.5.9"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":26376,"node":1049137,"name":"/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"255u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"kworker/0","pid":19890,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/19890/cwd (readlink: Permission denied)"},{"command":"kworker/0","pid":19890,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/19890/root (readlink: Permission denied)"},{"command":"kworker/0","pid":19890,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/19890/exe (readlink: Permission denied)"},{"command":"kworker/0","pid":19890,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/19890/fd (opendir: Permission denied)"},{"command":"kworker/0","pid":23282,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23282/cwd (readlink: Permission denied)"},{"command":"kworker/0","pid":23282,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23282/root (readlink: Permission denied)"},{"command":"kworker/0","pid":23282,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23282/exe (readlink: Permission denied)"},{"command":"kworker/0","pid":23282,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/23282/fd (opendir: Permission denied)"},{"command":"kworker/u","pid":23289,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23289/cwd (readlink: Permission denied)"},{"command":"kworker/u","pid":23289,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23289/root (readlink: Permission denied)"},{"command":"kworker/u","pid":23289,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23289/exe (readlink: Permission denied)"},{"command":"kworker/u","pid":23289,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/23289/fd (opendir: Permission denied)"},{"command":"kworker/u","pid":23310,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23310/cwd (readlink: Permission denied)"},{"command":"kworker/u","pid":23310,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23310/root (readlink: Permission denied)"},{"command":"kworker/u","pid":23310,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23310/exe (readlink: Permission denied)"},{"command":"kworker/u","pid":23310,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/23310/fd (opendir: Permission denied)"},{"command":"kworker/u","pid":23851,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23851/cwd (readlink: Permission denied)"},{"command":"kworker/u","pid":23851,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23851/root (readlink: Permission denied)"},{"command":"kworker/u","pid":23851,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23851/exe (readlink: Permission denied)"},{"command":"kworker/u","pid":23851,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/23851/fd (opendir: Permission denied)"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":528261,"name":"/home/kbrazil/testfiles"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"8,2","size_off":1113504,"node":131099,"name":"/bin/bash"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170784,"node":656210,"name":"/lib/x86_64-linux-gnu/libtinfo.so.5.9"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":26376,"node":1049137,"name":"/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"255r","type":"REG","device":"8,2","size_off":1568,"node":528300,"name":"/home/kbrazil/testfiles/tests.sh"},{"command":"sleep","pid":23903,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":528261,"name":"/home/kbrazil/testfiles"},{"command":"sleep","pid":23903,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"sleep","pid":23903,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"8,2","size_off":35000,"node":131203,"name":"/bin/sleep"},{"command":"sleep","pid":23903,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"sleep","pid":23903,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"sleep","pid":23903,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"sleep","pid":23903,"tid":null,"user":"kbrazil","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"sleep","pid":23903,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":23903,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":23904,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":528261,"name":"/home/kbrazil/testfiles"},{"command":"sleep","pid":23904,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"sleep","pid":23904,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"8,2","size_off":35000,"node":131203,"name":"/bin/sleep"},{"command":"sleep","pid":23904,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"sleep","pid":23904,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"sleep","pid":23904,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"sleep","pid":23904,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":23904,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":23904,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":23905,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":528261,"name":"/home/kbrazil/testfiles"},{"command":"sleep","pid":23905,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"sleep","pid":23905,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"8,2","size_off":35000,"node":131203,"name":"/bin/sleep"},{"command":"sleep","pid":23905,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"sleep","pid":23905,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"sleep","pid":23905,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"sleep","pid":23905,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":23905,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":23905,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":23906,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":528261,"name":"/home/kbrazil/testfiles"},{"command":"sleep","pid":23906,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"sleep","pid":23906,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"8,2","size_off":35000,"node":131203,"name":"/bin/sleep"},{"command":"sleep","pid":23906,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"sleep","pid":23906,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"sleep","pid":23906,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"sleep","pid":23906,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":23906,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":23906,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"lsof","pid":23912,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":528261,"name":"/home/kbrazil/testfiles"},{"command":"lsof","pid":23912,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lsof","pid":23912,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"8,2","size_off":163224,"node":918160,"name":"/usr/bin/lsof"},{"command":"lsof","pid":23912,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"lsof","pid":23912,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"lsof","pid":23912,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"lsof","pid":23912,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"lsof","pid":23912,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"lsof","pid":23912,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"lsof","pid":23912,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"lsof","pid":23912,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"lsof","pid":23912,"tid":null,"user":"kbrazil","fd":"1w","type":"REG","device":"8,2","size_off":0,"node":528286,"name":"/home/kbrazil/testfiles/lsof.out"},{"command":"lsof","pid":23912,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"lsof","pid":23912,"tid":null,"user":"kbrazil","fd":"3r","type":"DIR","device":"0,4","size_off":0,"node":1,"name":"/proc"},{"command":"lsof","pid":23912,"tid":null,"user":"kbrazil","fd":"4r","type":"DIR","device":"0,4","size_off":0,"node":339909,"name":"/proc/23912/fd"},{"command":"lsof","pid":23912,"tid":null,"user":"kbrazil","fd":"5w","type":"FIFO","device":"0,12","size_off":0,"node":339914,"name":"pipe"},{"command":"lsof","pid":23912,"tid":null,"user":"kbrazil","fd":"6r","type":"FIFO","device":"0,12","size_off":0,"node":339915,"name":"pipe"},{"command":"lsof","pid":23913,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":528261,"name":"/home/kbrazil/testfiles"},{"command":"lsof","pid":23913,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lsof","pid":23913,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"8,2","size_off":163224,"node":918160,"name":"/usr/bin/lsof"},{"command":"lsof","pid":23913,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"lsof","pid":23913,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"lsof","pid":23913,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"lsof","pid":23913,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"lsof","pid":23913,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"lsof","pid":23913,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"lsof","pid":23913,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"lsof","pid":23913,"tid":null,"user":"kbrazil","fd":"4r","type":"FIFO","device":"0,12","size_off":0,"node":339914,"name":"pipe"},{"command":"lsof","pid":23913,"tid":null,"user":"kbrazil","fd":"7w","type":"FIFO","device":"0,12","size_off":0,"node":339915,"name":"pipe"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/lsof.out000066400000000000000000004017131415226333200207070ustar00rootroot00000000000000COMMAND PID TID USER FD TYPE DEVICE SIZE/OFF NODE NAME systemd 1 root cwd unknown /proc/1/cwd (readlink: Permission denied) systemd 1 root rtd unknown /proc/1/root (readlink: Permission denied) systemd 1 root txt unknown /proc/1/exe (readlink: Permission denied) systemd 1 root NOFD /proc/1/fd (opendir: Permission denied) kthreadd 2 root cwd unknown /proc/2/cwd (readlink: Permission denied) kthreadd 2 root rtd unknown /proc/2/root (readlink: Permission denied) kthreadd 2 root txt unknown /proc/2/exe (readlink: Permission denied) kthreadd 2 root NOFD /proc/2/fd (opendir: Permission denied) kworker/0 4 root cwd unknown /proc/4/cwd (readlink: Permission denied) kworker/0 4 root rtd unknown /proc/4/root (readlink: Permission denied) kworker/0 4 root txt unknown /proc/4/exe (readlink: Permission denied) kworker/0 4 root NOFD /proc/4/fd (opendir: Permission denied) mm_percpu 6 root cwd unknown /proc/6/cwd (readlink: Permission denied) mm_percpu 6 root rtd unknown /proc/6/root (readlink: Permission denied) mm_percpu 6 root txt unknown /proc/6/exe (readlink: Permission denied) mm_percpu 6 root NOFD /proc/6/fd (opendir: Permission denied) ksoftirqd 7 root cwd unknown /proc/7/cwd (readlink: Permission denied) ksoftirqd 7 root rtd unknown /proc/7/root (readlink: Permission denied) ksoftirqd 7 root txt unknown /proc/7/exe (readlink: Permission denied) ksoftirqd 7 root NOFD /proc/7/fd (opendir: Permission denied) rcu_sched 8 root cwd unknown /proc/8/cwd (readlink: Permission denied) rcu_sched 8 root rtd unknown /proc/8/root (readlink: Permission denied) rcu_sched 8 root txt unknown /proc/8/exe (readlink: Permission denied) rcu_sched 8 root NOFD /proc/8/fd (opendir: Permission denied) rcu_bh 9 root cwd unknown /proc/9/cwd (readlink: Permission denied) rcu_bh 9 root rtd unknown /proc/9/root (readlink: Permission denied) rcu_bh 9 root txt unknown /proc/9/exe (readlink: Permission denied) rcu_bh 9 root NOFD /proc/9/fd (opendir: Permission denied) migration 10 root cwd unknown /proc/10/cwd (readlink: Permission denied) migration 10 root rtd unknown /proc/10/root (readlink: Permission denied) migration 10 root txt unknown /proc/10/exe (readlink: Permission denied) migration 10 root NOFD /proc/10/fd (opendir: Permission denied) watchdog/ 11 root cwd unknown /proc/11/cwd (readlink: Permission denied) watchdog/ 11 root rtd unknown /proc/11/root (readlink: Permission denied) watchdog/ 11 root txt unknown /proc/11/exe (readlink: Permission denied) watchdog/ 11 root NOFD /proc/11/fd (opendir: Permission denied) cpuhp/0 12 root cwd unknown /proc/12/cwd (readlink: Permission denied) cpuhp/0 12 root rtd unknown /proc/12/root (readlink: Permission denied) cpuhp/0 12 root txt unknown /proc/12/exe (readlink: Permission denied) cpuhp/0 12 root NOFD /proc/12/fd (opendir: Permission denied) kdevtmpfs 13 root cwd unknown /proc/13/cwd (readlink: Permission denied) kdevtmpfs 13 root rtd unknown /proc/13/root (readlink: Permission denied) kdevtmpfs 13 root txt unknown /proc/13/exe (readlink: Permission denied) kdevtmpfs 13 root NOFD /proc/13/fd (opendir: Permission denied) netns 14 root cwd unknown /proc/14/cwd (readlink: Permission denied) netns 14 root rtd unknown /proc/14/root (readlink: Permission denied) netns 14 root txt unknown /proc/14/exe (readlink: Permission denied) netns 14 root NOFD /proc/14/fd (opendir: Permission denied) rcu_tasks 15 root cwd unknown /proc/15/cwd (readlink: Permission denied) rcu_tasks 15 root rtd unknown /proc/15/root (readlink: Permission denied) rcu_tasks 15 root txt unknown /proc/15/exe (readlink: Permission denied) rcu_tasks 15 root NOFD /proc/15/fd (opendir: Permission denied) kauditd 16 root cwd unknown /proc/16/cwd (readlink: Permission denied) kauditd 16 root rtd unknown /proc/16/root (readlink: Permission denied) kauditd 16 root txt unknown /proc/16/exe (readlink: Permission denied) kauditd 16 root NOFD /proc/16/fd (opendir: Permission denied) khungtask 17 root cwd unknown /proc/17/cwd (readlink: Permission denied) khungtask 17 root rtd unknown /proc/17/root (readlink: Permission denied) khungtask 17 root txt unknown /proc/17/exe (readlink: Permission denied) khungtask 17 root NOFD /proc/17/fd (opendir: Permission denied) oom_reape 18 root cwd unknown /proc/18/cwd (readlink: Permission denied) oom_reape 18 root rtd unknown /proc/18/root (readlink: Permission denied) oom_reape 18 root txt unknown /proc/18/exe (readlink: Permission denied) oom_reape 18 root NOFD /proc/18/fd (opendir: Permission denied) writeback 19 root cwd unknown /proc/19/cwd (readlink: Permission denied) writeback 19 root rtd unknown /proc/19/root (readlink: Permission denied) writeback 19 root txt unknown /proc/19/exe (readlink: Permission denied) writeback 19 root NOFD /proc/19/fd (opendir: Permission denied) kcompactd 20 root cwd unknown /proc/20/cwd (readlink: Permission denied) kcompactd 20 root rtd unknown /proc/20/root (readlink: Permission denied) kcompactd 20 root txt unknown /proc/20/exe (readlink: Permission denied) kcompactd 20 root NOFD /proc/20/fd (opendir: Permission denied) ksmd 21 root cwd unknown /proc/21/cwd (readlink: Permission denied) ksmd 21 root rtd unknown /proc/21/root (readlink: Permission denied) ksmd 21 root txt unknown /proc/21/exe (readlink: Permission denied) ksmd 21 root NOFD /proc/21/fd (opendir: Permission denied) khugepage 22 root cwd unknown /proc/22/cwd (readlink: Permission denied) khugepage 22 root rtd unknown /proc/22/root (readlink: Permission denied) khugepage 22 root txt unknown /proc/22/exe (readlink: Permission denied) khugepage 22 root NOFD /proc/22/fd (opendir: Permission denied) crypto 23 root cwd unknown /proc/23/cwd (readlink: Permission denied) crypto 23 root rtd unknown /proc/23/root (readlink: Permission denied) crypto 23 root txt unknown /proc/23/exe (readlink: Permission denied) crypto 23 root NOFD /proc/23/fd (opendir: Permission denied) kintegrit 24 root cwd unknown /proc/24/cwd (readlink: Permission denied) kintegrit 24 root rtd unknown /proc/24/root (readlink: Permission denied) kintegrit 24 root txt unknown /proc/24/exe (readlink: Permission denied) kintegrit 24 root NOFD /proc/24/fd (opendir: Permission denied) kblockd 25 root cwd unknown /proc/25/cwd (readlink: Permission denied) kblockd 25 root rtd unknown /proc/25/root (readlink: Permission denied) kblockd 25 root txt unknown /proc/25/exe (readlink: Permission denied) kblockd 25 root NOFD /proc/25/fd (opendir: Permission denied) ata_sff 26 root cwd unknown /proc/26/cwd (readlink: Permission denied) ata_sff 26 root rtd unknown /proc/26/root (readlink: Permission denied) ata_sff 26 root txt unknown /proc/26/exe (readlink: Permission denied) ata_sff 26 root NOFD /proc/26/fd (opendir: Permission denied) md 27 root cwd unknown /proc/27/cwd (readlink: Permission denied) md 27 root rtd unknown /proc/27/root (readlink: Permission denied) md 27 root txt unknown /proc/27/exe (readlink: Permission denied) md 27 root NOFD /proc/27/fd (opendir: Permission denied) edac-poll 28 root cwd unknown /proc/28/cwd (readlink: Permission denied) edac-poll 28 root rtd unknown /proc/28/root (readlink: Permission denied) edac-poll 28 root txt unknown /proc/28/exe (readlink: Permission denied) edac-poll 28 root NOFD /proc/28/fd (opendir: Permission denied) devfreq_w 29 root cwd unknown /proc/29/cwd (readlink: Permission denied) devfreq_w 29 root rtd unknown /proc/29/root (readlink: Permission denied) devfreq_w 29 root txt unknown /proc/29/exe (readlink: Permission denied) devfreq_w 29 root NOFD /proc/29/fd (opendir: Permission denied) watchdogd 30 root cwd unknown /proc/30/cwd (readlink: Permission denied) watchdogd 30 root rtd unknown /proc/30/root (readlink: Permission denied) watchdogd 30 root txt unknown /proc/30/exe (readlink: Permission denied) watchdogd 30 root NOFD /proc/30/fd (opendir: Permission denied) kswapd0 34 root cwd unknown /proc/34/cwd (readlink: Permission denied) kswapd0 34 root rtd unknown /proc/34/root (readlink: Permission denied) kswapd0 34 root txt unknown /proc/34/exe (readlink: Permission denied) kswapd0 34 root NOFD /proc/34/fd (opendir: Permission denied) kworker/u 35 root cwd unknown /proc/35/cwd (readlink: Permission denied) kworker/u 35 root rtd unknown /proc/35/root (readlink: Permission denied) kworker/u 35 root txt unknown /proc/35/exe (readlink: Permission denied) kworker/u 35 root NOFD /proc/35/fd (opendir: Permission denied) ecryptfs- 36 root cwd unknown /proc/36/cwd (readlink: Permission denied) ecryptfs- 36 root rtd unknown /proc/36/root (readlink: Permission denied) ecryptfs- 36 root txt unknown /proc/36/exe (readlink: Permission denied) ecryptfs- 36 root NOFD /proc/36/fd (opendir: Permission denied) kthrotld 78 root cwd unknown /proc/78/cwd (readlink: Permission denied) kthrotld 78 root rtd unknown /proc/78/root (readlink: Permission denied) kthrotld 78 root txt unknown /proc/78/exe (readlink: Permission denied) kthrotld 78 root NOFD /proc/78/fd (opendir: Permission denied) acpi_ther 79 root cwd unknown /proc/79/cwd (readlink: Permission denied) acpi_ther 79 root rtd unknown /proc/79/root (readlink: Permission denied) acpi_ther 79 root txt unknown /proc/79/exe (readlink: Permission denied) acpi_ther 79 root NOFD /proc/79/fd (opendir: Permission denied) scsi_eh_0 80 root cwd unknown /proc/80/cwd (readlink: Permission denied) scsi_eh_0 80 root rtd unknown /proc/80/root (readlink: Permission denied) scsi_eh_0 80 root txt unknown /proc/80/exe (readlink: Permission denied) scsi_eh_0 80 root NOFD /proc/80/fd (opendir: Permission denied) scsi_tmf_ 81 root cwd unknown /proc/81/cwd (readlink: Permission denied) scsi_tmf_ 81 root rtd unknown /proc/81/root (readlink: Permission denied) scsi_tmf_ 81 root txt unknown /proc/81/exe (readlink: Permission denied) scsi_tmf_ 81 root NOFD /proc/81/fd (opendir: Permission denied) scsi_eh_1 82 root cwd unknown /proc/82/cwd (readlink: Permission denied) scsi_eh_1 82 root rtd unknown /proc/82/root (readlink: Permission denied) scsi_eh_1 82 root txt unknown /proc/82/exe (readlink: Permission denied) scsi_eh_1 82 root NOFD /proc/82/fd (opendir: Permission denied) scsi_tmf_ 83 root cwd unknown /proc/83/cwd (readlink: Permission denied) scsi_tmf_ 83 root rtd unknown /proc/83/root (readlink: Permission denied) scsi_tmf_ 83 root txt unknown /proc/83/exe (readlink: Permission denied) scsi_tmf_ 83 root NOFD /proc/83/fd (opendir: Permission denied) ipv6_addr 89 root cwd unknown /proc/89/cwd (readlink: Permission denied) ipv6_addr 89 root rtd unknown /proc/89/root (readlink: Permission denied) ipv6_addr 89 root txt unknown /proc/89/exe (readlink: Permission denied) ipv6_addr 89 root NOFD /proc/89/fd (opendir: Permission denied) kstrp 99 root cwd unknown /proc/99/cwd (readlink: Permission denied) kstrp 99 root rtd unknown /proc/99/root (readlink: Permission denied) kstrp 99 root txt unknown /proc/99/exe (readlink: Permission denied) kstrp 99 root NOFD /proc/99/fd (opendir: Permission denied) charger_m 116 root cwd unknown /proc/116/cwd (readlink: Permission denied) charger_m 116 root rtd unknown /proc/116/root (readlink: Permission denied) charger_m 116 root txt unknown /proc/116/exe (readlink: Permission denied) charger_m 116 root NOFD /proc/116/fd (opendir: Permission denied) mpt_poll_ 170 root cwd unknown /proc/170/cwd (readlink: Permission denied) mpt_poll_ 170 root rtd unknown /proc/170/root (readlink: Permission denied) mpt_poll_ 170 root txt unknown /proc/170/exe (readlink: Permission denied) mpt_poll_ 170 root NOFD /proc/170/fd (opendir: Permission denied) scsi_eh_2 171 root cwd unknown /proc/171/cwd (readlink: Permission denied) scsi_eh_2 171 root rtd unknown /proc/171/root (readlink: Permission denied) scsi_eh_2 171 root txt unknown /proc/171/exe (readlink: Permission denied) scsi_eh_2 171 root NOFD /proc/171/fd (opendir: Permission denied) mpt/0 172 root cwd unknown /proc/172/cwd (readlink: Permission denied) mpt/0 172 root rtd unknown /proc/172/root (readlink: Permission denied) mpt/0 172 root txt unknown /proc/172/exe (readlink: Permission denied) mpt/0 172 root NOFD /proc/172/fd (opendir: Permission denied) scsi_tmf_ 173 root cwd unknown /proc/173/cwd (readlink: Permission denied) scsi_tmf_ 173 root rtd unknown /proc/173/root (readlink: Permission denied) scsi_tmf_ 173 root txt unknown /proc/173/exe (readlink: Permission denied) scsi_tmf_ 173 root NOFD /proc/173/fd (opendir: Permission denied) scsi_eh_3 174 root cwd unknown /proc/174/cwd (readlink: Permission denied) scsi_eh_3 174 root rtd unknown /proc/174/root (readlink: Permission denied) scsi_eh_3 174 root txt unknown /proc/174/exe (readlink: Permission denied) scsi_eh_3 174 root NOFD /proc/174/fd (opendir: Permission denied) scsi_tmf_ 175 root cwd unknown /proc/175/cwd (readlink: Permission denied) scsi_tmf_ 175 root rtd unknown /proc/175/root (readlink: Permission denied) scsi_tmf_ 175 root txt unknown /proc/175/exe (readlink: Permission denied) scsi_tmf_ 175 root NOFD /proc/175/fd (opendir: Permission denied) scsi_eh_4 176 root cwd unknown /proc/176/cwd (readlink: Permission denied) scsi_eh_4 176 root rtd unknown /proc/176/root (readlink: Permission denied) scsi_eh_4 176 root txt unknown /proc/176/exe (readlink: Permission denied) scsi_eh_4 176 root NOFD /proc/176/fd (opendir: Permission denied) scsi_tmf_ 177 root cwd unknown /proc/177/cwd (readlink: Permission denied) scsi_tmf_ 177 root rtd unknown /proc/177/root (readlink: Permission denied) scsi_tmf_ 177 root txt unknown /proc/177/exe (readlink: Permission denied) scsi_tmf_ 177 root NOFD /proc/177/fd (opendir: Permission denied) scsi_eh_5 178 root cwd unknown /proc/178/cwd (readlink: Permission denied) scsi_eh_5 178 root rtd unknown /proc/178/root (readlink: Permission denied) scsi_eh_5 178 root txt unknown /proc/178/exe (readlink: Permission denied) scsi_eh_5 178 root NOFD /proc/178/fd (opendir: Permission denied) scsi_tmf_ 179 root cwd unknown /proc/179/cwd (readlink: Permission denied) scsi_tmf_ 179 root rtd unknown /proc/179/root (readlink: Permission denied) scsi_tmf_ 179 root txt unknown /proc/179/exe (readlink: Permission denied) scsi_tmf_ 179 root NOFD /proc/179/fd (opendir: Permission denied) scsi_eh_6 180 root cwd unknown /proc/180/cwd (readlink: Permission denied) scsi_eh_6 180 root rtd unknown /proc/180/root (readlink: Permission denied) scsi_eh_6 180 root txt unknown /proc/180/exe (readlink: Permission denied) scsi_eh_6 180 root NOFD /proc/180/fd (opendir: Permission denied) scsi_tmf_ 181 root cwd unknown /proc/181/cwd (readlink: Permission denied) scsi_tmf_ 181 root rtd unknown /proc/181/root (readlink: Permission denied) scsi_tmf_ 181 root txt unknown /proc/181/exe (readlink: Permission denied) scsi_tmf_ 181 root NOFD /proc/181/fd (opendir: Permission denied) scsi_eh_7 182 root cwd unknown /proc/182/cwd (readlink: Permission denied) scsi_eh_7 182 root rtd unknown /proc/182/root (readlink: Permission denied) scsi_eh_7 182 root txt unknown /proc/182/exe (readlink: Permission denied) scsi_eh_7 182 root NOFD /proc/182/fd (opendir: Permission denied) scsi_tmf_ 183 root cwd unknown /proc/183/cwd (readlink: Permission denied) scsi_tmf_ 183 root rtd unknown /proc/183/root (readlink: Permission denied) scsi_tmf_ 183 root txt unknown /proc/183/exe (readlink: Permission denied) scsi_tmf_ 183 root NOFD /proc/183/fd (opendir: Permission denied) scsi_eh_8 188 root cwd unknown /proc/188/cwd (readlink: Permission denied) scsi_eh_8 188 root rtd unknown /proc/188/root (readlink: Permission denied) scsi_eh_8 188 root txt unknown /proc/188/exe (readlink: Permission denied) scsi_eh_8 188 root NOFD /proc/188/fd (opendir: Permission denied) scsi_tmf_ 189 root cwd unknown /proc/189/cwd (readlink: Permission denied) scsi_tmf_ 189 root rtd unknown /proc/189/root (readlink: Permission denied) scsi_tmf_ 189 root txt unknown /proc/189/exe (readlink: Permission denied) scsi_tmf_ 189 root NOFD /proc/189/fd (opendir: Permission denied) scsi_eh_9 191 root cwd unknown /proc/191/cwd (readlink: Permission denied) scsi_eh_9 191 root rtd unknown /proc/191/root (readlink: Permission denied) scsi_eh_9 191 root txt unknown /proc/191/exe (readlink: Permission denied) scsi_eh_9 191 root NOFD /proc/191/fd (opendir: Permission denied) scsi_tmf_ 196 root cwd unknown /proc/196/cwd (readlink: Permission denied) scsi_tmf_ 196 root rtd unknown /proc/196/root (readlink: Permission denied) scsi_tmf_ 196 root txt unknown /proc/196/exe (readlink: Permission denied) scsi_tmf_ 196 root NOFD /proc/196/fd (opendir: Permission denied) scsi_eh_1 198 root cwd unknown /proc/198/cwd (readlink: Permission denied) scsi_eh_1 198 root rtd unknown /proc/198/root (readlink: Permission denied) scsi_eh_1 198 root txt unknown /proc/198/exe (readlink: Permission denied) scsi_eh_1 198 root NOFD /proc/198/fd (opendir: Permission denied) scsi_tmf_ 199 root cwd unknown /proc/199/cwd (readlink: Permission denied) scsi_tmf_ 199 root rtd unknown /proc/199/root (readlink: Permission denied) scsi_tmf_ 199 root txt unknown /proc/199/exe (readlink: Permission denied) scsi_tmf_ 199 root NOFD /proc/199/fd (opendir: Permission denied) scsi_eh_1 201 root cwd unknown /proc/201/cwd (readlink: Permission denied) scsi_eh_1 201 root rtd unknown /proc/201/root (readlink: Permission denied) scsi_eh_1 201 root txt unknown /proc/201/exe (readlink: Permission denied) scsi_eh_1 201 root NOFD /proc/201/fd (opendir: Permission denied) scsi_tmf_ 203 root cwd unknown /proc/203/cwd (readlink: Permission denied) scsi_tmf_ 203 root rtd unknown /proc/203/root (readlink: Permission denied) scsi_tmf_ 203 root txt unknown /proc/203/exe (readlink: Permission denied) scsi_tmf_ 203 root NOFD /proc/203/fd (opendir: Permission denied) scsi_eh_1 205 root cwd unknown /proc/205/cwd (readlink: Permission denied) scsi_eh_1 205 root rtd unknown /proc/205/root (readlink: Permission denied) scsi_eh_1 205 root txt unknown /proc/205/exe (readlink: Permission denied) scsi_eh_1 205 root NOFD /proc/205/fd (opendir: Permission denied) scsi_tmf_ 208 root cwd unknown /proc/208/cwd (readlink: Permission denied) scsi_tmf_ 208 root rtd unknown /proc/208/root (readlink: Permission denied) scsi_tmf_ 208 root txt unknown /proc/208/exe (readlink: Permission denied) scsi_tmf_ 208 root NOFD /proc/208/fd (opendir: Permission denied) scsi_eh_1 209 root cwd unknown /proc/209/cwd (readlink: Permission denied) scsi_eh_1 209 root rtd unknown /proc/209/root (readlink: Permission denied) scsi_eh_1 209 root txt unknown /proc/209/exe (readlink: Permission denied) scsi_eh_1 209 root NOFD /proc/209/fd (opendir: Permission denied) scsi_tmf_ 212 root cwd unknown /proc/212/cwd (readlink: Permission denied) scsi_tmf_ 212 root rtd unknown /proc/212/root (readlink: Permission denied) scsi_tmf_ 212 root txt unknown /proc/212/exe (readlink: Permission denied) scsi_tmf_ 212 root NOFD /proc/212/fd (opendir: Permission denied) scsi_eh_1 213 root cwd unknown /proc/213/cwd (readlink: Permission denied) scsi_eh_1 213 root rtd unknown /proc/213/root (readlink: Permission denied) scsi_eh_1 213 root txt unknown /proc/213/exe (readlink: Permission denied) scsi_eh_1 213 root NOFD /proc/213/fd (opendir: Permission denied) scsi_tmf_ 216 root cwd unknown /proc/216/cwd (readlink: Permission denied) scsi_tmf_ 216 root rtd unknown /proc/216/root (readlink: Permission denied) scsi_tmf_ 216 root txt unknown /proc/216/exe (readlink: Permission denied) scsi_tmf_ 216 root NOFD /proc/216/fd (opendir: Permission denied) scsi_eh_1 217 root cwd unknown /proc/217/cwd (readlink: Permission denied) scsi_eh_1 217 root rtd unknown /proc/217/root (readlink: Permission denied) scsi_eh_1 217 root txt unknown /proc/217/exe (readlink: Permission denied) scsi_eh_1 217 root NOFD /proc/217/fd (opendir: Permission denied) scsi_tmf_ 219 root cwd unknown /proc/219/cwd (readlink: Permission denied) scsi_tmf_ 219 root rtd unknown /proc/219/root (readlink: Permission denied) scsi_tmf_ 219 root txt unknown /proc/219/exe (readlink: Permission denied) scsi_tmf_ 219 root NOFD /proc/219/fd (opendir: Permission denied) scsi_eh_1 221 root cwd unknown /proc/221/cwd (readlink: Permission denied) scsi_eh_1 221 root rtd unknown /proc/221/root (readlink: Permission denied) scsi_eh_1 221 root txt unknown /proc/221/exe (readlink: Permission denied) scsi_eh_1 221 root NOFD /proc/221/fd (opendir: Permission denied) scsi_tmf_ 223 root cwd unknown /proc/223/cwd (readlink: Permission denied) scsi_tmf_ 223 root rtd unknown /proc/223/root (readlink: Permission denied) scsi_tmf_ 223 root txt unknown /proc/223/exe (readlink: Permission denied) scsi_tmf_ 223 root NOFD /proc/223/fd (opendir: Permission denied) scsi_eh_1 225 root cwd unknown /proc/225/cwd (readlink: Permission denied) scsi_eh_1 225 root rtd unknown /proc/225/root (readlink: Permission denied) scsi_eh_1 225 root txt unknown /proc/225/exe (readlink: Permission denied) scsi_eh_1 225 root NOFD /proc/225/fd (opendir: Permission denied) scsi_tmf_ 227 root cwd unknown /proc/227/cwd (readlink: Permission denied) scsi_tmf_ 227 root rtd unknown /proc/227/root (readlink: Permission denied) scsi_tmf_ 227 root txt unknown /proc/227/exe (readlink: Permission denied) scsi_tmf_ 227 root NOFD /proc/227/fd (opendir: Permission denied) scsi_eh_1 229 root cwd unknown /proc/229/cwd (readlink: Permission denied) scsi_eh_1 229 root rtd unknown /proc/229/root (readlink: Permission denied) scsi_eh_1 229 root txt unknown /proc/229/exe (readlink: Permission denied) scsi_eh_1 229 root NOFD /proc/229/fd (opendir: Permission denied) scsi_tmf_ 230 root cwd unknown /proc/230/cwd (readlink: Permission denied) scsi_tmf_ 230 root rtd unknown /proc/230/root (readlink: Permission denied) scsi_tmf_ 230 root txt unknown /proc/230/exe (readlink: Permission denied) scsi_tmf_ 230 root NOFD /proc/230/fd (opendir: Permission denied) scsi_eh_1 232 root cwd unknown /proc/232/cwd (readlink: Permission denied) scsi_eh_1 232 root rtd unknown /proc/232/root (readlink: Permission denied) scsi_eh_1 232 root txt unknown /proc/232/exe (readlink: Permission denied) scsi_eh_1 232 root NOFD /proc/232/fd (opendir: Permission denied) scsi_tmf_ 233 root cwd unknown /proc/233/cwd (readlink: Permission denied) scsi_tmf_ 233 root rtd unknown /proc/233/root (readlink: Permission denied) scsi_tmf_ 233 root txt unknown /proc/233/exe (readlink: Permission denied) scsi_tmf_ 233 root NOFD /proc/233/fd (opendir: Permission denied) scsi_eh_2 235 root cwd unknown /proc/235/cwd (readlink: Permission denied) scsi_eh_2 235 root rtd unknown /proc/235/root (readlink: Permission denied) scsi_eh_2 235 root txt unknown /proc/235/exe (readlink: Permission denied) scsi_eh_2 235 root NOFD /proc/235/fd (opendir: Permission denied) scsi_tmf_ 237 root cwd unknown /proc/237/cwd (readlink: Permission denied) scsi_tmf_ 237 root rtd unknown /proc/237/root (readlink: Permission denied) scsi_tmf_ 237 root txt unknown /proc/237/exe (readlink: Permission denied) scsi_tmf_ 237 root NOFD /proc/237/fd (opendir: Permission denied) scsi_eh_2 238 root cwd unknown /proc/238/cwd (readlink: Permission denied) scsi_eh_2 238 root rtd unknown /proc/238/root (readlink: Permission denied) scsi_eh_2 238 root txt unknown /proc/238/exe (readlink: Permission denied) scsi_eh_2 238 root NOFD /proc/238/fd (opendir: Permission denied) scsi_tmf_ 240 root cwd unknown /proc/240/cwd (readlink: Permission denied) scsi_tmf_ 240 root rtd unknown /proc/240/root (readlink: Permission denied) scsi_tmf_ 240 root txt unknown /proc/240/exe (readlink: Permission denied) scsi_tmf_ 240 root NOFD /proc/240/fd (opendir: Permission denied) scsi_eh_2 241 root cwd unknown /proc/241/cwd (readlink: Permission denied) scsi_eh_2 241 root rtd unknown /proc/241/root (readlink: Permission denied) scsi_eh_2 241 root txt unknown /proc/241/exe (readlink: Permission denied) scsi_eh_2 241 root NOFD /proc/241/fd (opendir: Permission denied) scsi_tmf_ 243 root cwd unknown /proc/243/cwd (readlink: Permission denied) scsi_tmf_ 243 root rtd unknown /proc/243/root (readlink: Permission denied) scsi_tmf_ 243 root txt unknown /proc/243/exe (readlink: Permission denied) scsi_tmf_ 243 root NOFD /proc/243/fd (opendir: Permission denied) scsi_eh_2 245 root cwd unknown /proc/245/cwd (readlink: Permission denied) scsi_eh_2 245 root rtd unknown /proc/245/root (readlink: Permission denied) scsi_eh_2 245 root txt unknown /proc/245/exe (readlink: Permission denied) scsi_eh_2 245 root NOFD /proc/245/fd (opendir: Permission denied) scsi_tmf_ 246 root cwd unknown /proc/246/cwd (readlink: Permission denied) scsi_tmf_ 246 root rtd unknown /proc/246/root (readlink: Permission denied) scsi_tmf_ 246 root txt unknown /proc/246/exe (readlink: Permission denied) scsi_tmf_ 246 root NOFD /proc/246/fd (opendir: Permission denied) scsi_eh_2 248 root cwd unknown /proc/248/cwd (readlink: Permission denied) scsi_eh_2 248 root rtd unknown /proc/248/root (readlink: Permission denied) scsi_eh_2 248 root txt unknown /proc/248/exe (readlink: Permission denied) scsi_eh_2 248 root NOFD /proc/248/fd (opendir: Permission denied) scsi_tmf_ 250 root cwd unknown /proc/250/cwd (readlink: Permission denied) scsi_tmf_ 250 root rtd unknown /proc/250/root (readlink: Permission denied) scsi_tmf_ 250 root txt unknown /proc/250/exe (readlink: Permission denied) scsi_tmf_ 250 root NOFD /proc/250/fd (opendir: Permission denied) scsi_eh_2 252 root cwd unknown /proc/252/cwd (readlink: Permission denied) scsi_eh_2 252 root rtd unknown /proc/252/root (readlink: Permission denied) scsi_eh_2 252 root txt unknown /proc/252/exe (readlink: Permission denied) scsi_eh_2 252 root NOFD /proc/252/fd (opendir: Permission denied) scsi_tmf_ 254 root cwd unknown /proc/254/cwd (readlink: Permission denied) scsi_tmf_ 254 root rtd unknown /proc/254/root (readlink: Permission denied) scsi_tmf_ 254 root txt unknown /proc/254/exe (readlink: Permission denied) scsi_tmf_ 254 root NOFD /proc/254/fd (opendir: Permission denied) scsi_eh_2 256 root cwd unknown /proc/256/cwd (readlink: Permission denied) scsi_eh_2 256 root rtd unknown /proc/256/root (readlink: Permission denied) scsi_eh_2 256 root txt unknown /proc/256/exe (readlink: Permission denied) scsi_eh_2 256 root NOFD /proc/256/fd (opendir: Permission denied) scsi_tmf_ 258 root cwd unknown /proc/258/cwd (readlink: Permission denied) scsi_tmf_ 258 root rtd unknown /proc/258/root (readlink: Permission denied) scsi_tmf_ 258 root txt unknown /proc/258/exe (readlink: Permission denied) scsi_tmf_ 258 root NOFD /proc/258/fd (opendir: Permission denied) scsi_eh_2 259 root cwd unknown /proc/259/cwd (readlink: Permission denied) scsi_eh_2 259 root rtd unknown /proc/259/root (readlink: Permission denied) scsi_eh_2 259 root txt unknown /proc/259/exe (readlink: Permission denied) scsi_eh_2 259 root NOFD /proc/259/fd (opendir: Permission denied) scsi_tmf_ 260 root cwd unknown /proc/260/cwd (readlink: Permission denied) scsi_tmf_ 260 root rtd unknown /proc/260/root (readlink: Permission denied) scsi_tmf_ 260 root txt unknown /proc/260/exe (readlink: Permission denied) scsi_tmf_ 260 root NOFD /proc/260/fd (opendir: Permission denied) scsi_eh_2 261 root cwd unknown /proc/261/cwd (readlink: Permission denied) scsi_eh_2 261 root rtd unknown /proc/261/root (readlink: Permission denied) scsi_eh_2 261 root txt unknown /proc/261/exe (readlink: Permission denied) scsi_eh_2 261 root NOFD /proc/261/fd (opendir: Permission denied) scsi_tmf_ 262 root cwd unknown /proc/262/cwd (readlink: Permission denied) scsi_tmf_ 262 root rtd unknown /proc/262/root (readlink: Permission denied) scsi_tmf_ 262 root txt unknown /proc/262/exe (readlink: Permission denied) scsi_tmf_ 262 root NOFD /proc/262/fd (opendir: Permission denied) scsi_eh_2 263 root cwd unknown /proc/263/cwd (readlink: Permission denied) scsi_eh_2 263 root rtd unknown /proc/263/root (readlink: Permission denied) scsi_eh_2 263 root txt unknown /proc/263/exe (readlink: Permission denied) scsi_eh_2 263 root NOFD /proc/263/fd (opendir: Permission denied) scsi_tmf_ 264 root cwd unknown /proc/264/cwd (readlink: Permission denied) scsi_tmf_ 264 root rtd unknown /proc/264/root (readlink: Permission denied) scsi_tmf_ 264 root txt unknown /proc/264/exe (readlink: Permission denied) scsi_tmf_ 264 root NOFD /proc/264/fd (opendir: Permission denied) scsi_eh_3 265 root cwd unknown /proc/265/cwd (readlink: Permission denied) scsi_eh_3 265 root rtd unknown /proc/265/root (readlink: Permission denied) scsi_eh_3 265 root txt unknown /proc/265/exe (readlink: Permission denied) scsi_eh_3 265 root NOFD /proc/265/fd (opendir: Permission denied) scsi_tmf_ 266 root cwd unknown /proc/266/cwd (readlink: Permission denied) scsi_tmf_ 266 root rtd unknown /proc/266/root (readlink: Permission denied) scsi_tmf_ 266 root txt unknown /proc/266/exe (readlink: Permission denied) scsi_tmf_ 266 root NOFD /proc/266/fd (opendir: Permission denied) scsi_eh_3 267 root cwd unknown /proc/267/cwd (readlink: Permission denied) scsi_eh_3 267 root rtd unknown /proc/267/root (readlink: Permission denied) scsi_eh_3 267 root txt unknown /proc/267/exe (readlink: Permission denied) scsi_eh_3 267 root NOFD /proc/267/fd (opendir: Permission denied) scsi_tmf_ 268 root cwd unknown /proc/268/cwd (readlink: Permission denied) scsi_tmf_ 268 root rtd unknown /proc/268/root (readlink: Permission denied) scsi_tmf_ 268 root txt unknown /proc/268/exe (readlink: Permission denied) scsi_tmf_ 268 root NOFD /proc/268/fd (opendir: Permission denied) scsi_eh_3 295 root cwd unknown /proc/295/cwd (readlink: Permission denied) scsi_eh_3 295 root rtd unknown /proc/295/root (readlink: Permission denied) scsi_eh_3 295 root txt unknown /proc/295/exe (readlink: Permission denied) scsi_eh_3 295 root NOFD /proc/295/fd (opendir: Permission denied) scsi_tmf_ 296 root cwd unknown /proc/296/cwd (readlink: Permission denied) scsi_tmf_ 296 root rtd unknown /proc/296/root (readlink: Permission denied) scsi_tmf_ 296 root txt unknown /proc/296/exe (readlink: Permission denied) scsi_tmf_ 296 root NOFD /proc/296/fd (opendir: Permission denied) ttm_swap 302 root cwd unknown /proc/302/cwd (readlink: Permission denied) ttm_swap 302 root rtd unknown /proc/302/root (readlink: Permission denied) ttm_swap 302 root txt unknown /proc/302/exe (readlink: Permission denied) ttm_swap 302 root NOFD /proc/302/fd (opendir: Permission denied) irq/16-vm 303 root cwd unknown /proc/303/cwd (readlink: Permission denied) irq/16-vm 303 root rtd unknown /proc/303/root (readlink: Permission denied) irq/16-vm 303 root txt unknown /proc/303/exe (readlink: Permission denied) irq/16-vm 303 root NOFD /proc/303/fd (opendir: Permission denied) kworker/0 305 root cwd unknown /proc/305/cwd (readlink: Permission denied) kworker/0 305 root rtd unknown /proc/305/root (readlink: Permission denied) kworker/0 305 root txt unknown /proc/305/exe (readlink: Permission denied) kworker/0 305 root NOFD /proc/305/fd (opendir: Permission denied) raid5wq 369 root cwd unknown /proc/369/cwd (readlink: Permission denied) raid5wq 369 root rtd unknown /proc/369/root (readlink: Permission denied) raid5wq 369 root txt unknown /proc/369/exe (readlink: Permission denied) raid5wq 369 root NOFD /proc/369/fd (opendir: Permission denied) jbd2/sda2 422 root cwd unknown /proc/422/cwd (readlink: Permission denied) jbd2/sda2 422 root rtd unknown /proc/422/root (readlink: Permission denied) jbd2/sda2 422 root txt unknown /proc/422/exe (readlink: Permission denied) jbd2/sda2 422 root NOFD /proc/422/fd (opendir: Permission denied) ext4-rsv- 423 root cwd unknown /proc/423/cwd (readlink: Permission denied) ext4-rsv- 423 root rtd unknown /proc/423/root (readlink: Permission denied) ext4-rsv- 423 root txt unknown /proc/423/exe (readlink: Permission denied) ext4-rsv- 423 root NOFD /proc/423/fd (opendir: Permission denied) systemd-j 495 root cwd unknown /proc/495/cwd (readlink: Permission denied) systemd-j 495 root rtd unknown /proc/495/root (readlink: Permission denied) systemd-j 495 root txt unknown /proc/495/exe (readlink: Permission denied) systemd-j 495 root NOFD /proc/495/fd (opendir: Permission denied) iscsi_eh 498 root cwd unknown /proc/498/cwd (readlink: Permission denied) iscsi_eh 498 root rtd unknown /proc/498/root (readlink: Permission denied) iscsi_eh 498 root txt unknown /proc/498/exe (readlink: Permission denied) iscsi_eh 498 root NOFD /proc/498/fd (opendir: Permission denied) systemd-u 509 root cwd unknown /proc/509/cwd (readlink: Permission denied) systemd-u 509 root rtd unknown /proc/509/root (readlink: Permission denied) systemd-u 509 root txt unknown /proc/509/exe (readlink: Permission denied) systemd-u 509 root NOFD /proc/509/fd (opendir: Permission denied) lvmetad 511 root cwd unknown /proc/511/cwd (readlink: Permission denied) lvmetad 511 root rtd unknown /proc/511/root (readlink: Permission denied) lvmetad 511 root txt unknown /proc/511/exe (readlink: Permission denied) lvmetad 511 root NOFD /proc/511/fd (opendir: Permission denied) ib-comp-w 512 root cwd unknown /proc/512/cwd (readlink: Permission denied) ib-comp-w 512 root rtd unknown /proc/512/root (readlink: Permission denied) ib-comp-w 512 root txt unknown /proc/512/exe (readlink: Permission denied) ib-comp-w 512 root NOFD /proc/512/fd (opendir: Permission denied) ib_mcast 513 root cwd unknown /proc/513/cwd (readlink: Permission denied) ib_mcast 513 root rtd unknown /proc/513/root (readlink: Permission denied) ib_mcast 513 root txt unknown /proc/513/exe (readlink: Permission denied) ib_mcast 513 root NOFD /proc/513/fd (opendir: Permission denied) ib_nl_sa_ 514 root cwd unknown /proc/514/cwd (readlink: Permission denied) ib_nl_sa_ 514 root rtd unknown /proc/514/root (readlink: Permission denied) ib_nl_sa_ 514 root txt unknown /proc/514/exe (readlink: Permission denied) ib_nl_sa_ 514 root NOFD /proc/514/fd (opendir: Permission denied) rdma_cm 523 root cwd unknown /proc/523/cwd (readlink: Permission denied) rdma_cm 523 root rtd unknown /proc/523/root (readlink: Permission denied) rdma_cm 523 root txt unknown /proc/523/exe (readlink: Permission denied) rdma_cm 523 root NOFD /proc/523/fd (opendir: Permission denied) loop0 541 root cwd unknown /proc/541/cwd (readlink: Permission denied) loop0 541 root rtd unknown /proc/541/root (readlink: Permission denied) loop0 541 root txt unknown /proc/541/exe (readlink: Permission denied) loop0 541 root NOFD /proc/541/fd (opendir: Permission denied) loop1 545 root cwd unknown /proc/545/cwd (readlink: Permission denied) loop1 545 root rtd unknown /proc/545/root (readlink: Permission denied) loop1 545 root txt unknown /proc/545/exe (readlink: Permission denied) loop1 545 root NOFD /proc/545/fd (opendir: Permission denied) loop2 548 root cwd unknown /proc/548/cwd (readlink: Permission denied) loop2 548 root rtd unknown /proc/548/root (readlink: Permission denied) loop2 548 root txt unknown /proc/548/exe (readlink: Permission denied) loop2 548 root NOFD /proc/548/fd (opendir: Permission denied) loop3 552 root cwd unknown /proc/552/cwd (readlink: Permission denied) loop3 552 root rtd unknown /proc/552/root (readlink: Permission denied) loop3 552 root txt unknown /proc/552/exe (readlink: Permission denied) loop3 552 root NOFD /proc/552/fd (opendir: Permission denied) loop5 554 root cwd unknown /proc/554/cwd (readlink: Permission denied) loop5 554 root rtd unknown /proc/554/root (readlink: Permission denied) loop5 554 root txt unknown /proc/554/exe (readlink: Permission denied) loop5 554 root NOFD /proc/554/fd (opendir: Permission denied) loop7 556 root cwd unknown /proc/556/cwd (readlink: Permission denied) loop7 556 root rtd unknown /proc/556/root (readlink: Permission denied) loop7 556 root txt unknown /proc/556/exe (readlink: Permission denied) loop7 556 root NOFD /proc/556/fd (opendir: Permission denied) loop8 557 root cwd unknown /proc/557/cwd (readlink: Permission denied) loop8 557 root rtd unknown /proc/557/root (readlink: Permission denied) loop8 557 root txt unknown /proc/557/exe (readlink: Permission denied) loop8 557 root NOFD /proc/557/fd (opendir: Permission denied) loop10 559 root cwd unknown /proc/559/cwd (readlink: Permission denied) loop10 559 root rtd unknown /proc/559/root (readlink: Permission denied) loop10 559 root txt unknown /proc/559/exe (readlink: Permission denied) loop10 559 root NOFD /proc/559/fd (opendir: Permission denied) systemd-t 606 systemd-timesync cwd unknown /proc/606/cwd (readlink: Permission denied) systemd-t 606 systemd-timesync rtd unknown /proc/606/root (readlink: Permission denied) systemd-t 606 systemd-timesync txt unknown /proc/606/exe (readlink: Permission denied) systemd-t 606 systemd-timesync NOFD /proc/606/fd (opendir: Permission denied) sd-resolv 606 617 systemd-timesync cwd unknown /proc/606/task/617/cwd (readlink: Permission denied) sd-resolv 606 617 systemd-timesync rtd unknown /proc/606/task/617/root (readlink: Permission denied) sd-resolv 606 617 systemd-timesync txt unknown /proc/606/task/617/exe (readlink: Permission denied) sd-resolv 606 617 systemd-timesync NOFD /proc/606/task/617/fd (opendir: Permission denied) VGAuthSer 607 root cwd unknown /proc/607/cwd (readlink: Permission denied) VGAuthSer 607 root rtd unknown /proc/607/root (readlink: Permission denied) VGAuthSer 607 root txt unknown /proc/607/exe (readlink: Permission denied) VGAuthSer 607 root NOFD /proc/607/fd (opendir: Permission denied) kworker/u 671 root cwd unknown /proc/671/cwd (readlink: Permission denied) kworker/u 671 root rtd unknown /proc/671/root (readlink: Permission denied) kworker/u 671 root txt unknown /proc/671/exe (readlink: Permission denied) kworker/u 671 root NOFD /proc/671/fd (opendir: Permission denied) vmtoolsd 680 root cwd unknown /proc/680/cwd (readlink: Permission denied) vmtoolsd 680 root rtd unknown /proc/680/root (readlink: Permission denied) vmtoolsd 680 root txt unknown /proc/680/exe (readlink: Permission denied) vmtoolsd 680 root NOFD /proc/680/fd (opendir: Permission denied) gmain 680 733 root cwd unknown /proc/680/task/733/cwd (readlink: Permission denied) gmain 680 733 root rtd unknown /proc/680/task/733/root (readlink: Permission denied) gmain 680 733 root txt unknown /proc/680/task/733/exe (readlink: Permission denied) gmain 680 733 root NOFD /proc/680/task/733/fd (opendir: Permission denied) systemd-n 867 systemd-network cwd unknown /proc/867/cwd (readlink: Permission denied) systemd-n 867 systemd-network rtd unknown /proc/867/root (readlink: Permission denied) systemd-n 867 systemd-network txt unknown /proc/867/exe (readlink: Permission denied) systemd-n 867 systemd-network NOFD /proc/867/fd (opendir: Permission denied) systemd-r 885 systemd-resolve cwd unknown /proc/885/cwd (readlink: Permission denied) systemd-r 885 systemd-resolve rtd unknown /proc/885/root (readlink: Permission denied) systemd-r 885 systemd-resolve txt unknown /proc/885/exe (readlink: Permission denied) systemd-r 885 systemd-resolve NOFD /proc/885/fd (opendir: Permission denied) rsyslogd 955 syslog cwd unknown /proc/955/cwd (readlink: Permission denied) rsyslogd 955 syslog rtd unknown /proc/955/root (readlink: Permission denied) rsyslogd 955 syslog txt unknown /proc/955/exe (readlink: Permission denied) rsyslogd 955 syslog NOFD /proc/955/fd (opendir: Permission denied) in:imuxso 955 965 syslog cwd unknown /proc/955/task/965/cwd (readlink: Permission denied) in:imuxso 955 965 syslog rtd unknown /proc/955/task/965/root (readlink: Permission denied) in:imuxso 955 965 syslog txt unknown /proc/955/task/965/exe (readlink: Permission denied) in:imuxso 955 965 syslog NOFD /proc/955/task/965/fd (opendir: Permission denied) in:imklog 955 966 syslog cwd unknown /proc/955/task/966/cwd (readlink: Permission denied) in:imklog 955 966 syslog rtd unknown /proc/955/task/966/root (readlink: Permission denied) in:imklog 955 966 syslog txt unknown /proc/955/task/966/exe (readlink: Permission denied) in:imklog 955 966 syslog NOFD /proc/955/task/966/fd (opendir: Permission denied) rs:main 955 967 syslog cwd unknown /proc/955/task/967/cwd (readlink: Permission denied) rs:main 955 967 syslog rtd unknown /proc/955/task/967/root (readlink: Permission denied) rs:main 955 967 syslog txt unknown /proc/955/task/967/exe (readlink: Permission denied) rs:main 955 967 syslog NOFD /proc/955/task/967/fd (opendir: Permission denied) networkd- 956 root cwd unknown /proc/956/cwd (readlink: Permission denied) networkd- 956 root rtd unknown /proc/956/root (readlink: Permission denied) networkd- 956 root txt unknown /proc/956/exe (readlink: Permission denied) networkd- 956 root NOFD /proc/956/fd (opendir: Permission denied) gmain 956 1294 root cwd unknown /proc/956/task/1294/cwd (readlink: Permission denied) gmain 956 1294 root rtd unknown /proc/956/task/1294/root (readlink: Permission denied) gmain 956 1294 root txt unknown /proc/956/task/1294/exe (readlink: Permission denied) gmain 956 1294 root NOFD /proc/956/task/1294/fd (opendir: Permission denied) lxcfs 960 root cwd unknown /proc/960/cwd (readlink: Permission denied) lxcfs 960 root rtd unknown /proc/960/root (readlink: Permission denied) lxcfs 960 root txt unknown /proc/960/exe (readlink: Permission denied) lxcfs 960 root NOFD /proc/960/fd (opendir: Permission denied) lxcfs 960 22673 root cwd unknown /proc/960/task/22673/cwd (readlink: Permission denied) lxcfs 960 22673 root rtd unknown /proc/960/task/22673/root (readlink: Permission denied) lxcfs 960 22673 root txt unknown /proc/960/task/22673/exe (readlink: Permission denied) lxcfs 960 22673 root NOFD /proc/960/task/22673/fd (opendir: Permission denied) lxcfs 960 22675 root cwd unknown /proc/960/task/22675/cwd (readlink: Permission denied) lxcfs 960 22675 root rtd unknown /proc/960/task/22675/root (readlink: Permission denied) lxcfs 960 22675 root txt unknown /proc/960/task/22675/exe (readlink: Permission denied) lxcfs 960 22675 root NOFD /proc/960/task/22675/fd (opendir: Permission denied) lxcfs 960 22676 root cwd unknown /proc/960/task/22676/cwd (readlink: Permission denied) lxcfs 960 22676 root rtd unknown /proc/960/task/22676/root (readlink: Permission denied) lxcfs 960 22676 root txt unknown /proc/960/task/22676/exe (readlink: Permission denied) lxcfs 960 22676 root NOFD /proc/960/task/22676/fd (opendir: Permission denied) lxcfs 960 22678 root cwd unknown /proc/960/task/22678/cwd (readlink: Permission denied) lxcfs 960 22678 root rtd unknown /proc/960/task/22678/root (readlink: Permission denied) lxcfs 960 22678 root txt unknown /proc/960/task/22678/exe (readlink: Permission denied) lxcfs 960 22678 root NOFD /proc/960/task/22678/fd (opendir: Permission denied) lxcfs 960 22683 root cwd unknown /proc/960/task/22683/cwd (readlink: Permission denied) lxcfs 960 22683 root rtd unknown /proc/960/task/22683/root (readlink: Permission denied) lxcfs 960 22683 root txt unknown /proc/960/task/22683/exe (readlink: Permission denied) lxcfs 960 22683 root NOFD /proc/960/task/22683/fd (opendir: Permission denied) lxcfs 960 22685 root cwd unknown /proc/960/task/22685/cwd (readlink: Permission denied) lxcfs 960 22685 root rtd unknown /proc/960/task/22685/root (readlink: Permission denied) lxcfs 960 22685 root txt unknown /proc/960/task/22685/exe (readlink: Permission denied) lxcfs 960 22685 root NOFD /proc/960/task/22685/fd (opendir: Permission denied) lxcfs 960 22686 root cwd unknown /proc/960/task/22686/cwd (readlink: Permission denied) lxcfs 960 22686 root rtd unknown /proc/960/task/22686/root (readlink: Permission denied) lxcfs 960 22686 root txt unknown /proc/960/task/22686/exe (readlink: Permission denied) lxcfs 960 22686 root NOFD /proc/960/task/22686/fd (opendir: Permission denied) lxcfs 960 22688 root cwd unknown /proc/960/task/22688/cwd (readlink: Permission denied) lxcfs 960 22688 root rtd unknown /proc/960/task/22688/root (readlink: Permission denied) lxcfs 960 22688 root txt unknown /proc/960/task/22688/exe (readlink: Permission denied) lxcfs 960 22688 root NOFD /proc/960/task/22688/fd (opendir: Permission denied) lxcfs 960 22689 root cwd unknown /proc/960/task/22689/cwd (readlink: Permission denied) lxcfs 960 22689 root rtd unknown /proc/960/task/22689/root (readlink: Permission denied) lxcfs 960 22689 root txt unknown /proc/960/task/22689/exe (readlink: Permission denied) lxcfs 960 22689 root NOFD /proc/960/task/22689/fd (opendir: Permission denied) lxcfs 960 22690 root cwd unknown /proc/960/task/22690/cwd (readlink: Permission denied) lxcfs 960 22690 root rtd unknown /proc/960/task/22690/root (readlink: Permission denied) lxcfs 960 22690 root txt unknown /proc/960/task/22690/exe (readlink: Permission denied) lxcfs 960 22690 root NOFD /proc/960/task/22690/fd (opendir: Permission denied) accounts- 961 root cwd unknown /proc/961/cwd (readlink: Permission denied) accounts- 961 root rtd unknown /proc/961/root (readlink: Permission denied) accounts- 961 root txt unknown /proc/961/exe (readlink: Permission denied) accounts- 961 root NOFD /proc/961/fd (opendir: Permission denied) gmain 961 1030 root cwd unknown /proc/961/task/1030/cwd (readlink: Permission denied) gmain 961 1030 root rtd unknown /proc/961/task/1030/root (readlink: Permission denied) gmain 961 1030 root txt unknown /proc/961/task/1030/exe (readlink: Permission denied) gmain 961 1030 root NOFD /proc/961/task/1030/fd (opendir: Permission denied) gdbus 961 1101 root cwd unknown /proc/961/task/1101/cwd (readlink: Permission denied) gdbus 961 1101 root rtd unknown /proc/961/task/1101/root (readlink: Permission denied) gdbus 961 1101 root txt unknown /proc/961/task/1101/exe (readlink: Permission denied) gdbus 961 1101 root NOFD /proc/961/task/1101/fd (opendir: Permission denied) snapd 1017 root cwd unknown /proc/1017/cwd (readlink: Permission denied) snapd 1017 root rtd unknown /proc/1017/root (readlink: Permission denied) snapd 1017 root txt unknown /proc/1017/exe (readlink: Permission denied) snapd 1017 root NOFD /proc/1017/fd (opendir: Permission denied) snapd 1017 1326 root cwd unknown /proc/1017/task/1326/cwd (readlink: Permission denied) snapd 1017 1326 root rtd unknown /proc/1017/task/1326/root (readlink: Permission denied) snapd 1017 1326 root txt unknown /proc/1017/task/1326/exe (readlink: Permission denied) snapd 1017 1326 root NOFD /proc/1017/task/1326/fd (opendir: Permission denied) snapd 1017 1327 root cwd unknown /proc/1017/task/1327/cwd (readlink: Permission denied) snapd 1017 1327 root rtd unknown /proc/1017/task/1327/root (readlink: Permission denied) snapd 1017 1327 root txt unknown /proc/1017/task/1327/exe (readlink: Permission denied) snapd 1017 1327 root NOFD /proc/1017/task/1327/fd (opendir: Permission denied) snapd 1017 1328 root cwd unknown /proc/1017/task/1328/cwd (readlink: Permission denied) snapd 1017 1328 root rtd unknown /proc/1017/task/1328/root (readlink: Permission denied) snapd 1017 1328 root txt unknown /proc/1017/task/1328/exe (readlink: Permission denied) snapd 1017 1328 root NOFD /proc/1017/task/1328/fd (opendir: Permission denied) snapd 1017 1329 root cwd unknown /proc/1017/task/1329/cwd (readlink: Permission denied) snapd 1017 1329 root rtd unknown /proc/1017/task/1329/root (readlink: Permission denied) snapd 1017 1329 root txt unknown /proc/1017/task/1329/exe (readlink: Permission denied) snapd 1017 1329 root NOFD /proc/1017/task/1329/fd (opendir: Permission denied) snapd 1017 1332 root cwd unknown /proc/1017/task/1332/cwd (readlink: Permission denied) snapd 1017 1332 root rtd unknown /proc/1017/task/1332/root (readlink: Permission denied) snapd 1017 1332 root txt unknown /proc/1017/task/1332/exe (readlink: Permission denied) snapd 1017 1332 root NOFD /proc/1017/task/1332/fd (opendir: Permission denied) snapd 1017 1342 root cwd unknown /proc/1017/task/1342/cwd (readlink: Permission denied) snapd 1017 1342 root rtd unknown /proc/1017/task/1342/root (readlink: Permission denied) snapd 1017 1342 root txt unknown /proc/1017/task/1342/exe (readlink: Permission denied) snapd 1017 1342 root NOFD /proc/1017/task/1342/fd (opendir: Permission denied) snapd 1017 1359 root cwd unknown /proc/1017/task/1359/cwd (readlink: Permission denied) snapd 1017 1359 root rtd unknown /proc/1017/task/1359/root (readlink: Permission denied) snapd 1017 1359 root txt unknown /proc/1017/task/1359/exe (readlink: Permission denied) snapd 1017 1359 root NOFD /proc/1017/task/1359/fd (opendir: Permission denied) snapd 1017 1382 root cwd unknown /proc/1017/task/1382/cwd (readlink: Permission denied) snapd 1017 1382 root rtd unknown /proc/1017/task/1382/root (readlink: Permission denied) snapd 1017 1382 root txt unknown /proc/1017/task/1382/exe (readlink: Permission denied) snapd 1017 1382 root NOFD /proc/1017/task/1382/fd (opendir: Permission denied) snapd 1017 1517 root cwd unknown /proc/1017/task/1517/cwd (readlink: Permission denied) snapd 1017 1517 root rtd unknown /proc/1017/task/1517/root (readlink: Permission denied) snapd 1017 1517 root txt unknown /proc/1017/task/1517/exe (readlink: Permission denied) snapd 1017 1517 root NOFD /proc/1017/task/1517/fd (opendir: Permission denied) systemd-l 1018 root cwd unknown /proc/1018/cwd (readlink: Permission denied) systemd-l 1018 root rtd unknown /proc/1018/root (readlink: Permission denied) systemd-l 1018 root txt unknown /proc/1018/exe (readlink: Permission denied) systemd-l 1018 root NOFD /proc/1018/fd (opendir: Permission denied) cron 1038 root cwd unknown /proc/1038/cwd (readlink: Permission denied) cron 1038 root rtd unknown /proc/1038/root (readlink: Permission denied) cron 1038 root txt unknown /proc/1038/exe (readlink: Permission denied) cron 1038 root NOFD /proc/1038/fd (opendir: Permission denied) login 1043 root cwd unknown /proc/1043/cwd (readlink: Permission denied) login 1043 root rtd unknown /proc/1043/root (readlink: Permission denied) login 1043 root txt unknown /proc/1043/exe (readlink: Permission denied) login 1043 root NOFD /proc/1043/fd (opendir: Permission denied) dbus-daem 1048 messagebus cwd unknown /proc/1048/cwd (readlink: Permission denied) dbus-daem 1048 messagebus rtd unknown /proc/1048/root (readlink: Permission denied) dbus-daem 1048 messagebus txt unknown /proc/1048/exe (readlink: Permission denied) dbus-daem 1048 messagebus NOFD /proc/1048/fd (opendir: Permission denied) unattende 1099 root cwd unknown /proc/1099/cwd (readlink: Permission denied) unattende 1099 root rtd unknown /proc/1099/root (readlink: Permission denied) unattende 1099 root txt unknown /proc/1099/exe (readlink: Permission denied) unattende 1099 root NOFD /proc/1099/fd (opendir: Permission denied) gmain 1099 1311 root cwd unknown /proc/1099/task/1311/cwd (readlink: Permission denied) gmain 1099 1311 root rtd unknown /proc/1099/task/1311/root (readlink: Permission denied) gmain 1099 1311 root txt unknown /proc/1099/task/1311/exe (readlink: Permission denied) gmain 1099 1311 root NOFD /proc/1099/task/1311/fd (opendir: Permission denied) atd 1100 daemon cwd unknown /proc/1100/cwd (readlink: Permission denied) atd 1100 daemon rtd unknown /proc/1100/root (readlink: Permission denied) atd 1100 daemon txt unknown /proc/1100/exe (readlink: Permission denied) atd 1100 daemon NOFD /proc/1100/fd (opendir: Permission denied) container 1112 root cwd unknown /proc/1112/cwd (readlink: Permission denied) container 1112 root rtd unknown /proc/1112/root (readlink: Permission denied) container 1112 root txt unknown /proc/1112/exe (readlink: Permission denied) container 1112 root NOFD /proc/1112/fd (opendir: Permission denied) container 1112 1303 root cwd unknown /proc/1112/task/1303/cwd (readlink: Permission denied) container 1112 1303 root rtd unknown /proc/1112/task/1303/root (readlink: Permission denied) container 1112 1303 root txt unknown /proc/1112/task/1303/exe (readlink: Permission denied) container 1112 1303 root NOFD /proc/1112/task/1303/fd (opendir: Permission denied) container 1112 1304 root cwd unknown /proc/1112/task/1304/cwd (readlink: Permission denied) container 1112 1304 root rtd unknown /proc/1112/task/1304/root (readlink: Permission denied) container 1112 1304 root txt unknown /proc/1112/task/1304/exe (readlink: Permission denied) container 1112 1304 root NOFD /proc/1112/task/1304/fd (opendir: Permission denied) container 1112 1305 root cwd unknown /proc/1112/task/1305/cwd (readlink: Permission denied) container 1112 1305 root rtd unknown /proc/1112/task/1305/root (readlink: Permission denied) container 1112 1305 root txt unknown /proc/1112/task/1305/exe (readlink: Permission denied) container 1112 1305 root NOFD /proc/1112/task/1305/fd (opendir: Permission denied) container 1112 1306 root cwd unknown /proc/1112/task/1306/cwd (readlink: Permission denied) container 1112 1306 root rtd unknown /proc/1112/task/1306/root (readlink: Permission denied) container 1112 1306 root txt unknown /proc/1112/task/1306/exe (readlink: Permission denied) container 1112 1306 root NOFD /proc/1112/task/1306/fd (opendir: Permission denied) container 1112 1315 root cwd unknown /proc/1112/task/1315/cwd (readlink: Permission denied) container 1112 1315 root rtd unknown /proc/1112/task/1315/root (readlink: Permission denied) container 1112 1315 root txt unknown /proc/1112/task/1315/exe (readlink: Permission denied) container 1112 1315 root NOFD /proc/1112/task/1315/fd (opendir: Permission denied) container 1112 1322 root cwd unknown /proc/1112/task/1322/cwd (readlink: Permission denied) container 1112 1322 root rtd unknown /proc/1112/task/1322/root (readlink: Permission denied) container 1112 1322 root txt unknown /proc/1112/task/1322/exe (readlink: Permission denied) container 1112 1322 root NOFD /proc/1112/task/1322/fd (opendir: Permission denied) container 1112 1323 root cwd unknown /proc/1112/task/1323/cwd (readlink: Permission denied) container 1112 1323 root rtd unknown /proc/1112/task/1323/root (readlink: Permission denied) container 1112 1323 root txt unknown /proc/1112/task/1323/exe (readlink: Permission denied) container 1112 1323 root NOFD /proc/1112/task/1323/fd (opendir: Permission denied) container 1112 1325 root cwd unknown /proc/1112/task/1325/cwd (readlink: Permission denied) container 1112 1325 root rtd unknown /proc/1112/task/1325/root (readlink: Permission denied) container 1112 1325 root txt unknown /proc/1112/task/1325/exe (readlink: Permission denied) container 1112 1325 root NOFD /proc/1112/task/1325/fd (opendir: Permission denied) sshd 1127 root cwd unknown /proc/1127/cwd (readlink: Permission denied) sshd 1127 root rtd unknown /proc/1127/root (readlink: Permission denied) sshd 1127 root txt unknown /proc/1127/exe (readlink: Permission denied) sshd 1127 root NOFD /proc/1127/fd (opendir: Permission denied) agetty 1153 root cwd unknown /proc/1153/cwd (readlink: Permission denied) agetty 1153 root rtd unknown /proc/1153/root (readlink: Permission denied) agetty 1153 root txt unknown /proc/1153/exe (readlink: Permission denied) agetty 1153 root NOFD /proc/1153/fd (opendir: Permission denied) polkitd 1154 root cwd unknown /proc/1154/cwd (readlink: Permission denied) polkitd 1154 root rtd unknown /proc/1154/root (readlink: Permission denied) polkitd 1154 root txt unknown /proc/1154/exe (readlink: Permission denied) polkitd 1154 root NOFD /proc/1154/fd (opendir: Permission denied) gmain 1154 1198 root cwd unknown /proc/1154/task/1198/cwd (readlink: Permission denied) gmain 1154 1198 root rtd unknown /proc/1154/task/1198/root (readlink: Permission denied) gmain 1154 1198 root txt unknown /proc/1154/task/1198/exe (readlink: Permission denied) gmain 1154 1198 root NOFD /proc/1154/task/1198/fd (opendir: Permission denied) gdbus 1154 1203 root cwd unknown /proc/1154/task/1203/cwd (readlink: Permission denied) gdbus 1154 1203 root rtd unknown /proc/1154/task/1203/root (readlink: Permission denied) gdbus 1154 1203 root txt unknown /proc/1154/task/1203/exe (readlink: Permission denied) gdbus 1154 1203 root NOFD /proc/1154/task/1203/fd (opendir: Permission denied) loop11 1532 root cwd unknown /proc/1532/cwd (readlink: Permission denied) loop11 1532 root rtd unknown /proc/1532/root (readlink: Permission denied) loop11 1532 root txt unknown /proc/1532/exe (readlink: Permission denied) loop11 1532 root NOFD /proc/1532/fd (opendir: Permission denied) systemd 1723 kbrazil cwd DIR 8,2 4096 2 / systemd 1723 kbrazil rtd DIR 8,2 4096 2 / systemd 1723 kbrazil txt REG 8,2 1595792 668802 /lib/systemd/systemd systemd 1723 kbrazil mem REG 8,2 1700792 656167 /lib/x86_64-linux-gnu/libm-2.27.so systemd 1723 kbrazil mem REG 8,2 121016 655394 /lib/x86_64-linux-gnu/libudev.so.1.6.9 systemd 1723 kbrazil mem REG 8,2 84032 656154 /lib/x86_64-linux-gnu/libgpg-error.so.0.22.0 systemd 1723 kbrazil mem REG 8,2 43304 656160 /lib/x86_64-linux-gnu/libjson-c.so.3.0.1 systemd 1723 kbrazil mem REG 8,2 34872 924307 /usr/lib/x86_64-linux-gnu/libargon2.so.0 systemd 1723 kbrazil mem REG 8,2 432640 656144 /lib/x86_64-linux-gnu/libdevmapper.so.1.02.1 systemd 1723 kbrazil mem REG 8,2 18680 656129 /lib/x86_64-linux-gnu/libattr.so.1.1.0 systemd 1723 kbrazil mem REG 8,2 18712 656135 /lib/x86_64-linux-gnu/libcap-ng.so.0.0.0 systemd 1723 kbrazil mem REG 8,2 27112 656215 /lib/x86_64-linux-gnu/libuuid.so.1.3.0 systemd 1723 kbrazil mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so systemd 1723 kbrazil mem REG 8,2 464824 656191 /lib/x86_64-linux-gnu/libpcre.so.3.13.3 systemd 1723 kbrazil mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so systemd 1723 kbrazil mem REG 8,2 112672 924379 /usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1 systemd 1723 kbrazil mem REG 8,2 153984 656165 /lib/x86_64-linux-gnu/liblzma.so.5.2.2 systemd 1723 kbrazil mem REG 8,2 206872 656157 /lib/x86_64-linux-gnu/libidn.so.11.6.16 systemd 1723 kbrazil mem REG 8,2 27088 924361 /usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0 systemd 1723 kbrazil mem REG 8,2 1155768 656153 /lib/x86_64-linux-gnu/libgcrypt.so.20.2.1 systemd 1723 kbrazil mem REG 8,2 22768 656136 /lib/x86_64-linux-gnu/libcap.so.2.25 systemd 1723 kbrazil mem REG 8,2 310040 656140 /lib/x86_64-linux-gnu/libcryptsetup.so.12.2.0 systemd 1723 kbrazil mem REG 8,2 31232 656125 /lib/x86_64-linux-gnu/libacl.so.1.1.0 systemd 1723 kbrazil mem REG 8,2 64144 656127 /lib/x86_64-linux-gnu/libapparmor.so.1.4.2 systemd 1723 kbrazil mem REG 8,2 92208 656162 /lib/x86_64-linux-gnu/libkmod.so.2.3.2 systemd 1723 kbrazil mem REG 8,2 124848 656130 /lib/x86_64-linux-gnu/libaudit.so.1.0.0 systemd 1723 kbrazil mem REG 8,2 55848 656185 /lib/x86_64-linux-gnu/libpam.so.0.83.1 systemd 1723 kbrazil mem REG 8,2 311720 656131 /lib/x86_64-linux-gnu/libblkid.so.1.1.0 systemd 1723 kbrazil mem REG 8,2 340232 656170 /lib/x86_64-linux-gnu/libmount.so.1.1.0 systemd 1723 kbrazil mem REG 8,2 154832 656203 /lib/x86_64-linux-gnu/libselinux.so.1 systemd 1723 kbrazil mem REG 8,2 288976 656202 /lib/x86_64-linux-gnu/libseccomp.so.2.4.1 systemd 1723 kbrazil mem REG 8,2 31680 656201 /lib/x86_64-linux-gnu/librt-2.27.so systemd 1723 kbrazil mem REG 8,2 2363632 655401 /lib/systemd/libsystemd-shared-237.so systemd 1723 kbrazil mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so systemd 1723 kbrazil mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so systemd 1723 kbrazil 0r CHR 1,3 0t0 6 /dev/null systemd 1723 kbrazil 1u unix 0x0000000000000000 0t0 33601 type=STREAM systemd 1723 kbrazil 2u unix 0x0000000000000000 0t0 33601 type=STREAM systemd 1723 kbrazil 3u unix 0x0000000000000000 0t0 33650 type=DGRAM systemd 1723 kbrazil 4u a_inode 0,13 0 10717 [eventpoll] systemd 1723 kbrazil 5u a_inode 0,13 0 10717 [signalfd] systemd 1723 kbrazil 6r a_inode 0,13 0 10717 inotify systemd 1723 kbrazil 7r DIR 0,28 0 1263 /sys/fs/cgroup/unified/user.slice/user-1000.slice/user@1000.service systemd 1723 kbrazil 8u a_inode 0,13 0 10717 [timerfd] systemd 1723 kbrazil 9u netlink 0t0 33759 KOBJECT_UEVENT systemd 1723 kbrazil 10u a_inode 0,13 0 10717 [eventpoll] systemd 1723 kbrazil 11r REG 0,4 0 33761 /proc/1723/mountinfo systemd 1723 kbrazil 12r a_inode 0,13 0 10717 inotify systemd 1723 kbrazil 13r REG 0,4 0 4026532068 /proc/swaps systemd 1723 kbrazil 14u unix 0x0000000000000000 0t0 33762 /run/user/1000/systemd/notify type=DGRAM systemd 1723 kbrazil 15u unix 0x0000000000000000 0t0 33763 type=DGRAM systemd 1723 kbrazil 16u unix 0x0000000000000000 0t0 33764 type=DGRAM systemd 1723 kbrazil 17u unix 0x0000000000000000 0t0 33765 /run/user/1000/systemd/private type=STREAM systemd 1723 kbrazil 22u unix 0x0000000000000000 0t0 33808 /run/user/1000/gnupg/S.gpg-agent.ssh type=STREAM systemd 1723 kbrazil 23u unix 0x0000000000000000 0t0 33809 /run/user/1000/gnupg/S.dirmngr type=STREAM systemd 1723 kbrazil 24u unix 0x0000000000000000 0t0 33810 /run/user/1000/gnupg/S.gpg-agent.browser type=STREAM systemd 1723 kbrazil 25u unix 0x0000000000000000 0t0 33811 /run/user/1000/gnupg/S.gpg-agent type=STREAM systemd 1723 kbrazil 26u unix 0x0000000000000000 0t0 33812 /run/user/1000/gnupg/S.gpg-agent.extra type=STREAM systemd 1723 kbrazil 27u a_inode 0,13 0 10717 [timerfd] (sd-pam 1734 kbrazil cwd unknown /proc/1734/cwd (readlink: Permission denied) (sd-pam 1734 kbrazil rtd unknown /proc/1734/root (readlink: Permission denied) (sd-pam 1734 kbrazil txt unknown /proc/1734/exe (readlink: Permission denied) (sd-pam 1734 kbrazil NOFD /proc/1734/fd (opendir: Permission denied) bash 1749 kbrazil cwd DIR 8,2 4096 528261 /home/kbrazil/testfiles bash 1749 kbrazil rtd DIR 8,2 4096 2 / bash 1749 kbrazil txt REG 8,2 1113504 131099 /bin/bash bash 1749 kbrazil mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so bash 1749 kbrazil mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so bash 1749 kbrazil mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so bash 1749 kbrazil mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so bash 1749 kbrazil mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so bash 1749 kbrazil mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so bash 1749 kbrazil mem REG 8,2 170784 656210 /lib/x86_64-linux-gnu/libtinfo.so.5.9 bash 1749 kbrazil mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so bash 1749 kbrazil mem REG 8,2 1683056 933058 /usr/lib/locale/locale-archive bash 1749 kbrazil mem REG 8,2 26376 1049137 /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache bash 1749 kbrazil 0u CHR 4,64 0t0 87 /dev/ttyS0 bash 1749 kbrazil 1u CHR 4,64 0t0 87 /dev/ttyS0 bash 1749 kbrazil 2u CHR 4,64 0t0 87 /dev/ttyS0 bash 1749 kbrazil 255u CHR 4,64 0t0 87 /dev/ttyS0 loop9 3451 root cwd unknown /proc/3451/cwd (readlink: Permission denied) loop9 3451 root rtd unknown /proc/3451/root (readlink: Permission denied) loop9 3451 root txt unknown /proc/3451/exe (readlink: Permission denied) loop9 3451 root NOFD /proc/3451/fd (opendir: Permission denied) loop4 3657 root cwd unknown /proc/3657/cwd (readlink: Permission denied) loop4 3657 root rtd unknown /proc/3657/root (readlink: Permission denied) loop4 3657 root txt unknown /proc/3657/exe (readlink: Permission denied) loop4 3657 root NOFD /proc/3657/fd (opendir: Permission denied) xfsalloc 15892 root cwd unknown /proc/15892/cwd (readlink: Permission denied) xfsalloc 15892 root rtd unknown /proc/15892/root (readlink: Permission denied) xfsalloc 15892 root txt unknown /proc/15892/exe (readlink: Permission denied) xfsalloc 15892 root NOFD /proc/15892/fd (opendir: Permission denied) xfs_mru_c 15896 root cwd unknown /proc/15896/cwd (readlink: Permission denied) xfs_mru_c 15896 root rtd unknown /proc/15896/root (readlink: Permission denied) xfs_mru_c 15896 root txt unknown /proc/15896/exe (readlink: Permission denied) xfs_mru_c 15896 root NOFD /proc/15896/fd (opendir: Permission denied) jfsIO 15900 root cwd unknown /proc/15900/cwd (readlink: Permission denied) jfsIO 15900 root rtd unknown /proc/15900/root (readlink: Permission denied) jfsIO 15900 root txt unknown /proc/15900/exe (readlink: Permission denied) jfsIO 15900 root NOFD /proc/15900/fd (opendir: Permission denied) jfsCommit 15901 root cwd unknown /proc/15901/cwd (readlink: Permission denied) jfsCommit 15901 root rtd unknown /proc/15901/root (readlink: Permission denied) jfsCommit 15901 root txt unknown /proc/15901/exe (readlink: Permission denied) jfsCommit 15901 root NOFD /proc/15901/fd (opendir: Permission denied) jfsSync 15902 root cwd unknown /proc/15902/cwd (readlink: Permission denied) jfsSync 15902 root rtd unknown /proc/15902/root (readlink: Permission denied) jfsSync 15902 root txt unknown /proc/15902/exe (readlink: Permission denied) jfsSync 15902 root NOFD /proc/15902/fd (opendir: Permission denied) sshd 16944 root cwd unknown /proc/16944/cwd (readlink: Permission denied) sshd 16944 root rtd unknown /proc/16944/root (readlink: Permission denied) sshd 16944 root txt unknown /proc/16944/exe (readlink: Permission denied) sshd 16944 root NOFD /proc/16944/fd (opendir: Permission denied) sshd 17058 kbrazil cwd unknown /proc/17058/cwd (readlink: Permission denied) sshd 17058 kbrazil rtd unknown /proc/17058/root (readlink: Permission denied) sshd 17058 kbrazil txt unknown /proc/17058/exe (readlink: Permission denied) sshd 17058 kbrazil NOFD /proc/17058/fd (opendir: Permission denied) bash 17059 kbrazil cwd DIR 8,2 4096 528261 /home/kbrazil/testfiles bash 17059 kbrazil rtd DIR 8,2 4096 2 / bash 17059 kbrazil txt REG 8,2 1113504 131099 /bin/bash bash 17059 kbrazil mem REG 8,2 47568 656179 /lib/x86_64-linux-gnu/libnss_files-2.27.so bash 17059 kbrazil mem REG 8,2 97176 656176 /lib/x86_64-linux-gnu/libnsl-2.27.so bash 17059 kbrazil mem REG 8,2 47576 656181 /lib/x86_64-linux-gnu/libnss_nis-2.27.so bash 17059 kbrazil mem REG 8,2 39744 656177 /lib/x86_64-linux-gnu/libnss_compat-2.27.so bash 17059 kbrazil mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so bash 17059 kbrazil mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so bash 17059 kbrazil mem REG 8,2 170784 656210 /lib/x86_64-linux-gnu/libtinfo.so.5.9 bash 17059 kbrazil mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so bash 17059 kbrazil mem REG 8,2 1683056 933058 /usr/lib/locale/locale-archive bash 17059 kbrazil mem REG 8,2 26376 1049137 /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache bash 17059 kbrazil 0u CHR 136,0 0t0 3 /dev/pts/0 bash 17059 kbrazil 1u CHR 136,0 0t0 3 /dev/pts/0 bash 17059 kbrazil 2u CHR 136,0 0t0 3 /dev/pts/0 bash 17059 kbrazil 255u CHR 136,0 0t0 3 /dev/pts/0 kworker/0 19890 root cwd unknown /proc/19890/cwd (readlink: Permission denied) kworker/0 19890 root rtd unknown /proc/19890/root (readlink: Permission denied) kworker/0 19890 root txt unknown /proc/19890/exe (readlink: Permission denied) kworker/0 19890 root NOFD /proc/19890/fd (opendir: Permission denied) kworker/0 23282 root cwd unknown /proc/23282/cwd (readlink: Permission denied) kworker/0 23282 root rtd unknown /proc/23282/root (readlink: Permission denied) kworker/0 23282 root txt unknown /proc/23282/exe (readlink: Permission denied) kworker/0 23282 root NOFD /proc/23282/fd (opendir: Permission denied) kworker/u 23289 root cwd unknown /proc/23289/cwd (readlink: Permission denied) kworker/u 23289 root rtd unknown /proc/23289/root (readlink: Permission denied) kworker/u 23289 root txt unknown /proc/23289/exe (readlink: Permission denied) kworker/u 23289 root NOFD /proc/23289/fd (opendir: Permission denied) kworker/u 23310 root cwd unknown /proc/23310/cwd (readlink: Permission denied) kworker/u 23310 root rtd unknown /proc/23310/root (readlink: Permission denied) kworker/u 23310 root txt unknown /proc/23310/exe (readlink: Permission denied) kworker/u 23310 root NOFD /proc/23310/fd (opendir: Permission denied) kworker/u 23851 root cwd unknown /proc/23851/cwd (readlink: Permission denied) kworker/u 23851 root rtd unknown /proc/23851/root (readlink: Permission denied) kworker/u 23851 root txt unknown /proc/23851/exe (readlink: Permission denied) kworker/u 23851 root NOFD /proc/23851/fd (opendir: Permission denied) tests.sh 23870 kbrazil cwd DIR 8,2 4096 528261 /home/kbrazil/testfiles tests.sh 23870 kbrazil rtd DIR 8,2 4096 2 / tests.sh 23870 kbrazil txt REG 8,2 1113504 131099 /bin/bash tests.sh 23870 kbrazil mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so tests.sh 23870 kbrazil mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so tests.sh 23870 kbrazil mem REG 8,2 170784 656210 /lib/x86_64-linux-gnu/libtinfo.so.5.9 tests.sh 23870 kbrazil mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so tests.sh 23870 kbrazil mem REG 8,2 1683056 933058 /usr/lib/locale/locale-archive tests.sh 23870 kbrazil mem REG 8,2 26376 1049137 /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache tests.sh 23870 kbrazil 0u CHR 136,0 0t0 3 /dev/pts/0 tests.sh 23870 kbrazil 1u CHR 136,0 0t0 3 /dev/pts/0 tests.sh 23870 kbrazil 2u CHR 136,0 0t0 3 /dev/pts/0 tests.sh 23870 kbrazil 255r REG 8,2 1568 528300 /home/kbrazil/testfiles/tests.sh sleep 23903 kbrazil cwd DIR 8,2 4096 528261 /home/kbrazil/testfiles sleep 23903 kbrazil rtd DIR 8,2 4096 2 / sleep 23903 kbrazil txt REG 8,2 35000 131203 /bin/sleep sleep 23903 kbrazil mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so sleep 23903 kbrazil mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so sleep 23903 kbrazil mem REG 8,2 1683056 933058 /usr/lib/locale/locale-archive sleep 23903 kbrazil 0r CHR 1,3 0t0 6 /dev/null sleep 23903 kbrazil 1u CHR 136,0 0t0 3 /dev/pts/0 sleep 23903 kbrazil 2u CHR 136,0 0t0 3 /dev/pts/0 sleep 23904 kbrazil cwd DIR 8,2 4096 528261 /home/kbrazil/testfiles sleep 23904 kbrazil rtd DIR 8,2 4096 2 / sleep 23904 kbrazil txt REG 8,2 35000 131203 /bin/sleep sleep 23904 kbrazil mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so sleep 23904 kbrazil mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so sleep 23904 kbrazil mem REG 8,2 1683056 933058 /usr/lib/locale/locale-archive sleep 23904 kbrazil 0u CHR 136,0 0t0 3 /dev/pts/0 sleep 23904 kbrazil 1u CHR 136,0 0t0 3 /dev/pts/0 sleep 23904 kbrazil 2u CHR 136,0 0t0 3 /dev/pts/0 sleep 23905 kbrazil cwd DIR 8,2 4096 528261 /home/kbrazil/testfiles sleep 23905 kbrazil rtd DIR 8,2 4096 2 / sleep 23905 kbrazil txt REG 8,2 35000 131203 /bin/sleep sleep 23905 kbrazil mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so sleep 23905 kbrazil mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so sleep 23905 kbrazil mem REG 8,2 1683056 933058 /usr/lib/locale/locale-archive sleep 23905 kbrazil 0u CHR 136,0 0t0 3 /dev/pts/0 sleep 23905 kbrazil 1u CHR 136,0 0t0 3 /dev/pts/0 sleep 23905 kbrazil 2u CHR 136,0 0t0 3 /dev/pts/0 sleep 23906 kbrazil cwd DIR 8,2 4096 528261 /home/kbrazil/testfiles sleep 23906 kbrazil rtd DIR 8,2 4096 2 / sleep 23906 kbrazil txt REG 8,2 35000 131203 /bin/sleep sleep 23906 kbrazil mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so sleep 23906 kbrazil mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so sleep 23906 kbrazil mem REG 8,2 1683056 933058 /usr/lib/locale/locale-archive sleep 23906 kbrazil 0u CHR 136,0 0t0 3 /dev/pts/0 sleep 23906 kbrazil 1u CHR 136,0 0t0 3 /dev/pts/0 sleep 23906 kbrazil 2u CHR 136,0 0t0 3 /dev/pts/0 lsof 23912 kbrazil cwd DIR 8,2 4096 528261 /home/kbrazil/testfiles lsof 23912 kbrazil rtd DIR 8,2 4096 2 / lsof 23912 kbrazil txt REG 8,2 163224 918160 /usr/bin/lsof lsof 23912 kbrazil mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so lsof 23912 kbrazil mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so lsof 23912 kbrazil mem REG 8,2 464824 656191 /lib/x86_64-linux-gnu/libpcre.so.3.13.3 lsof 23912 kbrazil mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so lsof 23912 kbrazil mem REG 8,2 154832 656203 /lib/x86_64-linux-gnu/libselinux.so.1 lsof 23912 kbrazil mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so lsof 23912 kbrazil mem REG 8,2 1683056 933058 /usr/lib/locale/locale-archive lsof 23912 kbrazil 0u CHR 136,0 0t0 3 /dev/pts/0 lsof 23912 kbrazil 1w REG 8,2 0 528286 /home/kbrazil/testfiles/lsof.out lsof 23912 kbrazil 2u CHR 136,0 0t0 3 /dev/pts/0 lsof 23912 kbrazil 3r DIR 0,4 0 1 /proc lsof 23912 kbrazil 4r DIR 0,4 0 339909 /proc/23912/fd lsof 23912 kbrazil 5w FIFO 0,12 0t0 339914 pipe lsof 23912 kbrazil 6r FIFO 0,12 0t0 339915 pipe lsof 23913 kbrazil cwd DIR 8,2 4096 528261 /home/kbrazil/testfiles lsof 23913 kbrazil rtd DIR 8,2 4096 2 / lsof 23913 kbrazil txt REG 8,2 163224 918160 /usr/bin/lsof lsof 23913 kbrazil mem REG 8,2 144976 656197 /lib/x86_64-linux-gnu/libpthread-2.27.so lsof 23913 kbrazil mem REG 8,2 14560 656145 /lib/x86_64-linux-gnu/libdl-2.27.so lsof 23913 kbrazil mem REG 8,2 464824 656191 /lib/x86_64-linux-gnu/libpcre.so.3.13.3 lsof 23913 kbrazil mem REG 8,2 2030544 656134 /lib/x86_64-linux-gnu/libc-2.27.so lsof 23913 kbrazil mem REG 8,2 154832 656203 /lib/x86_64-linux-gnu/libselinux.so.1 lsof 23913 kbrazil mem REG 8,2 170960 656122 /lib/x86_64-linux-gnu/ld-2.27.so lsof 23913 kbrazil mem REG 8,2 1683056 933058 /usr/lib/locale/locale-archive lsof 23913 kbrazil 4r FIFO 0,12 0t0 339914 pipe lsof 23913 kbrazil 7w FIFO 0,12 0t0 339915 pipe jc-1.17.3/tests/fixtures/ubuntu-18.04/mount.json000066400000000000000000000146231415226333200212500ustar00rootroot00000000000000[{"filesystem": "sysfs", "mount_point": "/sys", "type": "sysfs", "options": ["rw", "nosuid", "nodev", "noexec", "relatime"]}, {"filesystem": "proc", "mount_point": "/proc", "type": "proc", "options": ["rw", "nosuid", "nodev", "noexec", "relatime"]}, {"filesystem": "udev", "mount_point": "/dev", "type": "devtmpfs", "options": ["rw", "nosuid", "relatime", "size=977500k", "nr_inodes=244375", "mode=755"]}, {"filesystem": "devpts", "mount_point": "/dev/pts", "type": "devpts", "options": ["rw", "nosuid", "noexec", "relatime", "gid=5", "mode=620", "ptmxmode=000"]}, {"filesystem": "tmpfs", "mount_point": "/run", "type": "tmpfs", "options": ["rw", "nosuid", "noexec", "relatime", "size=201732k", "mode=755"]}, {"filesystem": "/dev/sda2", "mount_point": "/", "type": "ext4", "options": ["rw", "relatime", "data=ordered"]}, {"filesystem": "securityfs", "mount_point": "/sys/kernel/security", "type": "securityfs", "options": ["rw", "nosuid", "nodev", "noexec", "relatime"]}, {"filesystem": "tmpfs", "mount_point": "/dev/shm", "type": "tmpfs", "options": ["rw", "nosuid", "nodev"]}, {"filesystem": "tmpfs", "mount_point": "/run/lock", "type": "tmpfs", "options": ["rw", "nosuid", "nodev", "noexec", "relatime", "size=5120k"]}, {"filesystem": "tmpfs", "mount_point": "/sys/fs/cgroup", "type": "tmpfs", "options": ["ro", "nosuid", "nodev", "noexec", "mode=755"]}, {"filesystem": "cgroup", "mount_point": "/sys/fs/cgroup/unified", "type": "cgroup2", "options": ["rw", "nosuid", "nodev", "noexec", "relatime"]}, {"filesystem": "cgroup", "mount_point": "/sys/fs/cgroup/systemd", "type": "cgroup", "options": ["rw", "nosuid", "nodev", "noexec", "relatime", "xattr", "name=systemd"]}, {"filesystem": "pstore", "mount_point": "/sys/fs/pstore", "type": "pstore", "options": ["rw", "nosuid", "nodev", "noexec", "relatime"]}, {"filesystem": "cgroup", "mount_point": "/sys/fs/cgroup/net_cls,net_prio", "type": "cgroup", "options": ["rw", "nosuid", "nodev", "noexec", "relatime", "net_cls", "net_prio"]}, {"filesystem": "cgroup", "mount_point": "/sys/fs/cgroup/freezer", "type": "cgroup", "options": ["rw", "nosuid", "nodev", "noexec", "relatime", "freezer"]}, {"filesystem": "cgroup", "mount_point": "/sys/fs/cgroup/memory", "type": "cgroup", "options": ["rw", "nosuid", "nodev", "noexec", "relatime", "memory"]}, {"filesystem": "cgroup", "mount_point": "/sys/fs/cgroup/devices", "type": "cgroup", "options": ["rw", "nosuid", "nodev", "noexec", "relatime", "devices"]}, {"filesystem": "cgroup", "mount_point": "/sys/fs/cgroup/hugetlb", "type": "cgroup", "options": ["rw", "nosuid", "nodev", "noexec", "relatime", "hugetlb"]}, {"filesystem": "cgroup", "mount_point": "/sys/fs/cgroup/perf_event", "type": "cgroup", "options": ["rw", "nosuid", "nodev", "noexec", "relatime", "perf_event"]}, {"filesystem": "cgroup", "mount_point": "/sys/fs/cgroup/rdma", "type": "cgroup", "options": ["rw", "nosuid", "nodev", "noexec", "relatime", "rdma"]}, {"filesystem": "cgroup", "mount_point": "/sys/fs/cgroup/blkio", "type": "cgroup", "options": ["rw", "nosuid", "nodev", "noexec", "relatime", "blkio"]}, {"filesystem": "cgroup", "mount_point": "/sys/fs/cgroup/cpuset", "type": "cgroup", "options": ["rw", "nosuid", "nodev", "noexec", "relatime", "cpuset"]}, {"filesystem": "cgroup", "mount_point": "/sys/fs/cgroup/pids", "type": "cgroup", "options": ["rw", "nosuid", "nodev", "noexec", "relatime", "pids"]}, {"filesystem": "cgroup", "mount_point": "/sys/fs/cgroup/cpu,cpuacct", "type": "cgroup", "options": ["rw", "nosuid", "nodev", "noexec", "relatime", "cpu", "cpuacct"]}, {"filesystem": "hugetlbfs", "mount_point": "/dev/hugepages", "type": "hugetlbfs", "options": ["rw", "relatime", "pagesize=2M"]}, {"filesystem": "mqueue", "mount_point": "/dev/mqueue", "type": "mqueue", "options": ["rw", "relatime"]}, {"filesystem": "debugfs", "mount_point": "/sys/kernel/debug", "type": "debugfs", "options": ["rw", "relatime"]}, {"filesystem": "systemd-1", "mount_point": "/proc/sys/fs/binfmt_misc", "type": "autofs", "options": ["rw", "relatime", "fd=38", "pgrp=1", "timeout=0", "minproto=5", "maxproto=5", "direct", "pipe_ino=20976"]}, {"filesystem": "fusectl", "mount_point": "/sys/fs/fuse/connections", "type": "fusectl", "options": ["rw", "relatime"]}, {"filesystem": "configfs", "mount_point": "/sys/kernel/config", "type": "configfs", "options": ["rw", "relatime"]}, {"filesystem": "/var/lib/snapd/snaps/core18_1223.snap", "mount_point": "/snap/core18/1223", "type": "squashfs", "options": ["ro", "nodev", "relatime", "x-gdu.hide"]}, {"filesystem": "/var/lib/snapd/snaps/slcli_383.snap", "mount_point": "/snap/slcli/383", "type": "squashfs", "options": ["ro", "nodev", "relatime", "x-gdu.hide"]}, {"filesystem": "/var/lib/snapd/snaps/core_7396.snap", "mount_point": "/snap/core/7396", "type": "squashfs", "options": ["ro", "nodev", "relatime", "x-gdu.hide"]}, {"filesystem": "/var/lib/snapd/snaps/google-cloud-sdk_103.snap", "mount_point": "/snap/google-cloud-sdk/103", "type": "squashfs", "options": ["ro", "nodev", "relatime", "x-gdu.hide"]}, {"filesystem": "/var/lib/snapd/snaps/core18_1074.snap", "mount_point": "/snap/core18/1074", "type": "squashfs", "options": ["ro", "nodev", "relatime", "x-gdu.hide"]}, {"filesystem": "/var/lib/snapd/snaps/doctl_187.snap", "mount_point": "/snap/doctl/187", "type": "squashfs", "options": ["ro", "nodev", "relatime", "x-gdu.hide"]}, {"filesystem": "/var/lib/snapd/snaps/stress-ng_847.snap", "mount_point": "/snap/stress-ng/847", "type": "squashfs", "options": ["ro", "nodev", "relatime", "x-gdu.hide"]}, {"filesystem": "/var/lib/snapd/snaps/core_7917.snap", "mount_point": "/snap/core/7917", "type": "squashfs", "options": ["ro", "nodev", "relatime", "x-gdu.hide"]}, {"filesystem": "lxcfs", "mount_point": "/var/lib/lxcfs", "type": "fuse.lxcfs", "options": ["rw", "nosuid", "nodev", "relatime", "user_id=0", "group_id=0", "allow_other"]}, {"filesystem": "/var/lib/snapd/snaps/stress-ng_924.snap", "mount_point": "/snap/stress-ng/924", "type": "squashfs", "options": ["ro", "nodev", "relatime", "x-gdu.hide"]}, {"filesystem": "tmpfs", "mount_point": "/run/user/1000", "type": "tmpfs", "options": ["rw", "nosuid", "nodev", "relatime", "size=201728k", "mode=700", "uid=1000", "gid=1000"]}, {"filesystem": "/var/lib/snapd/snaps/doctl_215.snap", "mount_point": "/snap/doctl/215", "type": "squashfs", "options": ["ro", "nodev", "relatime", "x-gdu.hide"]}, {"filesystem": "/var/lib/snapd/snaps/google-cloud-sdk_104.snap", "mount_point": "/snap/google-cloud-sdk/104", "type": "squashfs", "options": ["ro", "nodev", "relatime", "x-gdu.hide"]}] jc-1.17.3/tests/fixtures/ubuntu-18.04/mount.out000066400000000000000000000071741415226333200211110ustar00rootroot00000000000000sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime) proc on /proc type proc (rw,nosuid,nodev,noexec,relatime) udev on /dev type devtmpfs (rw,nosuid,relatime,size=977500k,nr_inodes=244375,mode=755) devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000) tmpfs on /run type tmpfs (rw,nosuid,noexec,relatime,size=201732k,mode=755) /dev/sda2 on / type ext4 (rw,relatime,data=ordered) securityfs on /sys/kernel/security type securityfs (rw,nosuid,nodev,noexec,relatime) tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev) tmpfs on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k) tmpfs on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,mode=755) cgroup on /sys/fs/cgroup/unified type cgroup2 (rw,nosuid,nodev,noexec,relatime) cgroup on /sys/fs/cgroup/systemd type cgroup (rw,nosuid,nodev,noexec,relatime,xattr,name=systemd) pstore on /sys/fs/pstore type pstore (rw,nosuid,nodev,noexec,relatime) cgroup on /sys/fs/cgroup/net_cls,net_prio type cgroup (rw,nosuid,nodev,noexec,relatime,net_cls,net_prio) cgroup on /sys/fs/cgroup/freezer type cgroup (rw,nosuid,nodev,noexec,relatime,freezer) cgroup on /sys/fs/cgroup/memory type cgroup (rw,nosuid,nodev,noexec,relatime,memory) cgroup on /sys/fs/cgroup/devices type cgroup (rw,nosuid,nodev,noexec,relatime,devices) cgroup on /sys/fs/cgroup/hugetlb type cgroup (rw,nosuid,nodev,noexec,relatime,hugetlb) cgroup on /sys/fs/cgroup/perf_event type cgroup (rw,nosuid,nodev,noexec,relatime,perf_event) cgroup on /sys/fs/cgroup/rdma type cgroup (rw,nosuid,nodev,noexec,relatime,rdma) cgroup on /sys/fs/cgroup/blkio type cgroup (rw,nosuid,nodev,noexec,relatime,blkio) cgroup on /sys/fs/cgroup/cpuset type cgroup (rw,nosuid,nodev,noexec,relatime,cpuset) cgroup on /sys/fs/cgroup/pids type cgroup (rw,nosuid,nodev,noexec,relatime,pids) cgroup on /sys/fs/cgroup/cpu,cpuacct type cgroup (rw,nosuid,nodev,noexec,relatime,cpu,cpuacct) hugetlbfs on /dev/hugepages type hugetlbfs (rw,relatime,pagesize=2M) mqueue on /dev/mqueue type mqueue (rw,relatime) debugfs on /sys/kernel/debug type debugfs (rw,relatime) systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=38,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=20976) fusectl on /sys/fs/fuse/connections type fusectl (rw,relatime) configfs on /sys/kernel/config type configfs (rw,relatime) /var/lib/snapd/snaps/core18_1223.snap on /snap/core18/1223 type squashfs (ro,nodev,relatime,x-gdu.hide) /var/lib/snapd/snaps/slcli_383.snap on /snap/slcli/383 type squashfs (ro,nodev,relatime,x-gdu.hide) /var/lib/snapd/snaps/core_7396.snap on /snap/core/7396 type squashfs (ro,nodev,relatime,x-gdu.hide) /var/lib/snapd/snaps/google-cloud-sdk_103.snap on /snap/google-cloud-sdk/103 type squashfs (ro,nodev,relatime,x-gdu.hide) /var/lib/snapd/snaps/core18_1074.snap on /snap/core18/1074 type squashfs (ro,nodev,relatime,x-gdu.hide) /var/lib/snapd/snaps/doctl_187.snap on /snap/doctl/187 type squashfs (ro,nodev,relatime,x-gdu.hide) /var/lib/snapd/snaps/stress-ng_847.snap on /snap/stress-ng/847 type squashfs (ro,nodev,relatime,x-gdu.hide) /var/lib/snapd/snaps/core_7917.snap on /snap/core/7917 type squashfs (ro,nodev,relatime,x-gdu.hide) lxcfs on /var/lib/lxcfs type fuse.lxcfs (rw,nosuid,nodev,relatime,user_id=0,group_id=0,allow_other) /var/lib/snapd/snaps/stress-ng_924.snap on /snap/stress-ng/924 type squashfs (ro,nodev,relatime,x-gdu.hide) tmpfs on /run/user/1000 type tmpfs (rw,nosuid,nodev,relatime,size=201728k,mode=700,uid=1000,gid=1000) /var/lib/snapd/snaps/doctl_215.snap on /snap/doctl/215 type squashfs (ro,nodev,relatime,x-gdu.hide) /var/lib/snapd/snaps/google-cloud-sdk_104.snap on /snap/google-cloud-sdk/104 type squashfs (ro,nodev,relatime,x-gdu.hide) jc-1.17.3/tests/fixtures/ubuntu-18.04/netstat-i.json000066400000000000000000000005321415226333200220100ustar00rootroot00000000000000[{"iface": "ens33", "mtu": 1500, "rx_ok": 245, "rx_err": 0, "rx_drp": 0, "rx_ovr": 0, "tx_ok": 197, "tx_err": 0, "tx_drp": 0, "tx_ovr": 0, "flg": "BMRU", "kind": "interface"}, {"iface": "lo", "mtu": 65536, "rx_ok": 94, "rx_err": 0, "rx_drp": 0, "rx_ovr": 0, "tx_ok": 94, "tx_err": 0, "tx_drp": 0, "tx_ovr": 0, "flg": "LRU", "kind": "interface"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/netstat-i.out000066400000000000000000000004051415226333200216450ustar00rootroot00000000000000Kernel Interface table Iface MTU RX-OK RX-ERR RX-DRP RX-OVR TX-OK TX-ERR TX-DRP TX-OVR Flg ens33 1500 245 0 0 0 197 0 0 0 BMRU lo 65536 94 0 0 0 94 0 0 0 LRU jc-1.17.3/tests/fixtures/ubuntu-18.04/netstat-l.json000066400000000000000000000117271415226333200220230ustar00rootroot00000000000000[{"proto": "tcp", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "0.0.0.0", "state": "LISTEN", "kind": "network", "local_port": "42351", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 42351}, {"proto": "tcp", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "0.0.0.0", "state": "LISTEN", "kind": "network", "local_port": "domain", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv4"}, {"proto": "tcp", "recv_q": 0, "send_q": 0, "local_address": "0.0.0.0", "foreign_address": "0.0.0.0", "state": "LISTEN", "kind": "network", "local_port": "ssh", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv4"}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "[::]", "foreign_address": "[::]", "state": "LISTEN", "kind": "network", "local_port": "ssh", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv6"}, {"proto": "udp", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "0.0.0.0", "state": null, "kind": "network", "local_port": "domain", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-ubuntu", "foreign_address": "0.0.0.0", "state": null, "kind": "network", "local_port": "bootpc", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "raw6", "recv_q": 0, "send_q": 0, "local_address": "[::]", "foreign_address": "[::]", "state": "7", "kind": "network", "local_port": "ipv6-icmp", "foreign_port": "*", "transport_protocol": null, "network_protocol": "ipv6"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "SEQPACKET", "state": "LISTENING", "inode": 20812, "path": "/run/udev/control", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 33765, "path": "/run/user/1000/systemd/private", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 33808, "path": "/run/user/1000/gnupg/S.gpg-agent.ssh", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 33809, "path": "/run/user/1000/gnupg/S.dirmngr", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 33810, "path": "/run/user/1000/gnupg/S.gpg-agent.browser", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 33811, "path": "/run/user/1000/gnupg/S.gpg-agent", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 33812, "path": "/run/user/1000/gnupg/S.gpg-agent.extra", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 20655, "path": "/run/systemd/private", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 20662, "path": "/run/lvm/lvmetad.socket", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 20664, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 20891, "path": "/run/lvm/lvmpolld.socket", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 27473, "path": "/run/acpid.socket", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 27443, "path": "/run/snapd.socket", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 27445, "path": "/run/snapd-snap.socket", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 27475, "path": "/run/uuidd/request", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 27481, "path": "/var/run/docker.sock", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 27489, "path": "/var/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 27468, "path": "/var/lib/lxd/unix.socket", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 30726, "path": "/run/containerd/containerd.sock", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 27436, "path": "@ISCSIADM_ABSTRACT_NAMESPACE", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 25548, "path": "/var/run/vmware/guestServicePipe", "kind": "socket"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/netstat-l.out000066400000000000000000000050561415226333200216570ustar00rootroot00000000000000Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address Foreign Address State tcp 0 0 localhost:42351 0.0.0.0:* LISTEN tcp 0 0 localhost:domain 0.0.0.0:* LISTEN tcp 0 0 0.0.0.0:ssh 0.0.0.0:* LISTEN tcp6 0 0 [::]:ssh [::]:* LISTEN udp 0 0 localhost:domain 0.0.0.0:* udp 0 0 kbrazil-ubuntu:bootpc 0.0.0.0:* raw6 0 0 [::]:ipv6-icmp [::]:* 7 Active UNIX domain sockets (only servers) Proto RefCnt Flags Type State I-Node Path unix 2 [ ACC ] SEQPACKET LISTENING 20812 /run/udev/control unix 2 [ ACC ] STREAM LISTENING 33765 /run/user/1000/systemd/private unix 2 [ ACC ] STREAM LISTENING 33808 /run/user/1000/gnupg/S.gpg-agent.ssh unix 2 [ ACC ] STREAM LISTENING 33809 /run/user/1000/gnupg/S.dirmngr unix 2 [ ACC ] STREAM LISTENING 33810 /run/user/1000/gnupg/S.gpg-agent.browser unix 2 [ ACC ] STREAM LISTENING 33811 /run/user/1000/gnupg/S.gpg-agent unix 2 [ ACC ] STREAM LISTENING 33812 /run/user/1000/gnupg/S.gpg-agent.extra unix 2 [ ACC ] STREAM LISTENING 20655 /run/systemd/private unix 2 [ ACC ] STREAM LISTENING 20662 /run/lvm/lvmetad.socket unix 2 [ ACC ] STREAM LISTENING 20664 /run/systemd/journal/stdout unix 2 [ ACC ] STREAM LISTENING 20891 /run/lvm/lvmpolld.socket unix 2 [ ACC ] STREAM LISTENING 27473 /run/acpid.socket unix 2 [ ACC ] STREAM LISTENING 27443 /run/snapd.socket unix 2 [ ACC ] STREAM LISTENING 27445 /run/snapd-snap.socket unix 2 [ ACC ] STREAM LISTENING 27475 /run/uuidd/request unix 2 [ ACC ] STREAM LISTENING 27481 /var/run/docker.sock unix 2 [ ACC ] STREAM LISTENING 27489 /var/run/dbus/system_bus_socket unix 2 [ ACC ] STREAM LISTENING 27468 /var/lib/lxd/unix.socket unix 2 [ ACC ] STREAM LISTENING 30726 /run/containerd/containerd.sock unix 2 [ ACC ] STREAM LISTENING 27436 @ISCSIADM_ABSTRACT_NAMESPACE unix 2 [ ACC ] STREAM LISTENING 25548 /var/run/vmware/guestServicePipe jc-1.17.3/tests/fixtures/ubuntu-18.04/netstat-p.json000066400000000000000000000345671415226333200220360ustar00rootroot00000000000000[{"proto": "tcp", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-ubuntu", "foreign_address": "192.168.71.1", "state": "ESTABLISHED", "program_name": null, "kind": "network", "local_port": "ssh", "foreign_port": "65159", "transport_protocol": "tcp", "network_protocol": "ipv4", "foreign_port_num": 65159}, {"proto": "tcp", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-ubuntu", "foreign_address": "lb-192-30-253-113", "state": "ESTABLISHED", "program_name": "git-remote-ht", "kind": "network", "pid": 23921, "local_port": "55656", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 55656}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 33762, "program_name": "systemd", "path": "/run/user/1000/systemd/notify", "kind": "socket", "pid": 1723}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 20652, "program_name": null, "path": "/run/systemd/notify", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 20660, "program_name": null, "path": "/run/systemd/journal/syslog", "kind": "socket"}, {"proto": "unix", "refcnt": 9, "flags": null, "type": "DGRAM", "state": null, "inode": 20666, "program_name": null, "path": "/run/systemd/journal/socket", "kind": "socket"}, {"proto": "unix", "refcnt": 7, "flags": null, "type": "DGRAM", "state": null, "inode": 21016, "program_name": null, "path": "/run/systemd/journal/dev-log", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 30460, "program_name": null, "path": "/var/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 207713, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29199, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 33603, "program_name": null, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 28133, "program_name": null, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 27669, "program_name": null, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 30629, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29376, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 33601, "program_name": "systemd", "kind": "socket", "pid": 1723}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 30459, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 29208, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 21388, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 30630, "program_name": null, "path": "/var/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 26063, "program_name": null, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 29374, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29380, "program_name": null, "path": "/var/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 207447, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 25431, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 27493, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 28694, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 30670, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29165, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29381, "program_name": null, "path": "/var/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 33487, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 30671, "program_name": null, "path": "/var/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 28695, "program_name": null, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 25414, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 25277, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29375, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 25401, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29685, "program_name": null, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29377, "program_name": null, "path": "/var/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29230, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 27494, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 27978, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 25430, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29168, "program_name": null, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 26944, "program_name": null, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29378, "program_name": null, "path": "/var/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 25402, "program_name": null, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29474, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 21581, "program_name": null, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29169, "program_name": null, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29382, "program_name": null, "path": "/var/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 28058, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 26941, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 21261, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29684, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 25432, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 25415, "program_name": null, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 28696, "program_name": null, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 25429, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 26986, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 27668, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29166, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 207714, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29086, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 26000, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 25276, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 33763, "program_name": "systemd", "kind": "socket", "pid": 1723}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 33764, "program_name": "systemd", "kind": "socket", "pid": 1723}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29558, "program_name": null, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 76786, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 28613, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 21583, "program_name": null, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 33650, "program_name": "systemd", "kind": "socket", "pid": 1723}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 25533, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 30152, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 26728, "program_name": null, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 33638, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 28224, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 26772, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 27981, "program_name": null, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 21598, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 26773, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 21588, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 30153, "program_name": null, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 20654, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 20653, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 26770, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 25426, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 26771, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 21599, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 21498, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 26727, "program_name": null, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 26760, "program_name": null, "kind": "socket"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/netstat-p.out000066400000000000000000000210021415226333200216500ustar00rootroot00000000000000Active Internet connections (w/o servers) Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name tcp 0 0 kbrazil-ubuntu:ssh 192.168.71.1:65159 ESTABLISHED - tcp 0 0 kbrazil-ubuntu:55656 lb-192-30-253-113:https ESTABLISHED 23921/git-remote-ht Active UNIX domain sockets (w/o servers) Proto RefCnt Flags Type State I-Node PID/Program name Path unix 2 [ ] DGRAM 33762 1723/systemd /run/user/1000/systemd/notify unix 3 [ ] DGRAM 20652 - /run/systemd/notify unix 2 [ ] DGRAM 20660 - /run/systemd/journal/syslog unix 9 [ ] DGRAM 20666 - /run/systemd/journal/socket unix 7 [ ] DGRAM 21016 - /run/systemd/journal/dev-log unix 3 [ ] STREAM CONNECTED 30460 - /var/run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 207713 - unix 3 [ ] STREAM CONNECTED 29199 - unix 3 [ ] STREAM CONNECTED 33603 - /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 28133 - /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 27669 - /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 30629 - unix 3 [ ] STREAM CONNECTED 29376 - unix 3 [ ] STREAM CONNECTED 33601 1723/systemd unix 3 [ ] STREAM CONNECTED 30459 - unix 2 [ ] DGRAM 29208 - unix 3 [ ] STREAM CONNECTED 21388 - unix 3 [ ] STREAM CONNECTED 30630 - /var/run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 26063 - /run/systemd/journal/stdout unix 2 [ ] DGRAM 29374 - unix 3 [ ] STREAM CONNECTED 29380 - /var/run/dbus/system_bus_socket unix 2 [ ] DGRAM 207447 - unix 3 [ ] DGRAM 25431 - unix 3 [ ] STREAM CONNECTED 27493 - unix 3 [ ] STREAM CONNECTED 28694 - unix 3 [ ] STREAM CONNECTED 30670 - unix 3 [ ] STREAM CONNECTED 29165 - unix 3 [ ] STREAM CONNECTED 29381 - /var/run/dbus/system_bus_socket unix 2 [ ] DGRAM 33487 - unix 3 [ ] STREAM CONNECTED 30671 - /var/run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 28695 - /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 25414 - unix 3 [ ] DGRAM 25277 - unix 3 [ ] STREAM CONNECTED 29375 - unix 3 [ ] STREAM CONNECTED 25401 - unix 3 [ ] STREAM CONNECTED 29685 - /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 29377 - /var/run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 29230 - unix 3 [ ] STREAM CONNECTED 27494 - unix 3 [ ] STREAM CONNECTED 27978 - unix 3 [ ] DGRAM 25430 - unix 3 [ ] STREAM CONNECTED 29168 - /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 26944 - /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 29378 - /var/run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 25402 - /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 29474 - unix 3 [ ] STREAM CONNECTED 21581 - /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 29169 - /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 29382 - /var/run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 28058 - unix 3 [ ] STREAM CONNECTED 26941 - unix 2 [ ] DGRAM 21261 - unix 3 [ ] STREAM CONNECTED 29684 - unix 3 [ ] DGRAM 25432 - unix 3 [ ] STREAM CONNECTED 25415 - /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 28696 - /run/systemd/journal/stdout unix 3 [ ] DGRAM 25429 - unix 2 [ ] DGRAM 26986 - unix 3 [ ] STREAM CONNECTED 27668 - unix 3 [ ] STREAM CONNECTED 29166 - unix 3 [ ] STREAM CONNECTED 207714 - unix 3 [ ] STREAM CONNECTED 29086 - unix 3 [ ] STREAM CONNECTED 26000 - unix 3 [ ] DGRAM 25276 - unix 3 [ ] DGRAM 33763 1723/systemd unix 3 [ ] DGRAM 33764 1723/systemd unix 3 [ ] STREAM CONNECTED 29558 - /run/systemd/journal/stdout unix 2 [ ] DGRAM 76786 - unix 3 [ ] STREAM CONNECTED 28613 - unix 3 [ ] STREAM CONNECTED 21583 - /run/systemd/journal/stdout unix 2 [ ] DGRAM 33650 1723/systemd unix 2 [ ] DGRAM 25533 - unix 3 [ ] STREAM CONNECTED 30152 - unix 3 [ ] STREAM CONNECTED 26728 - /run/systemd/journal/stdout unix 2 [ ] DGRAM 33638 - unix 2 [ ] DGRAM 28224 - unix 3 [ ] DGRAM 26772 - unix 3 [ ] STREAM CONNECTED 27981 - /run/systemd/journal/stdout unix 3 [ ] DGRAM 21598 - unix 3 [ ] DGRAM 26773 - unix 2 [ ] DGRAM 21588 - unix 3 [ ] STREAM CONNECTED 30153 - /run/systemd/journal/stdout unix 3 [ ] DGRAM 20654 - unix 3 [ ] DGRAM 20653 - unix 3 [ ] DGRAM 26770 - unix 2 [ ] DGRAM 25426 - unix 3 [ ] DGRAM 26771 - unix 3 [ ] DGRAM 21599 - unix 3 [ ] STREAM CONNECTED 21498 - unix 3 [ ] STREAM CONNECTED 26727 - unix 2 [ ] DGRAM 26760 - jc-1.17.3/tests/fixtures/ubuntu-18.04/netstat-r.json000066400000000000000000000011501415226333200220160ustar00rootroot00000000000000[{"destination": "default", "gateway": "_gateway", "genmask": "0.0.0.0", "route_flags": "UG", "mss": 0, "window": 0, "irtt": 0, "iface": "ens33", "kind": "route", "route_flags_pretty": ["UP", "GATEWAY"]}, {"destination": "192.168.71.0", "gateway": "0.0.0.0", "genmask": "255.255.255.0", "route_flags": "U", "mss": 0, "window": 0, "irtt": 0, "iface": "ens33", "kind": "route", "route_flags_pretty": ["UP"]}, {"destination": "_gateway", "gateway": "0.0.0.0", "genmask": "255.255.255.255", "route_flags": "UH", "mss": 0, "window": 0, "irtt": 0, "iface": "ens33", "kind": "route", "route_flags_pretty": ["UP", "HOST"]}] jc-1.17.3/tests/fixtures/ubuntu-18.04/netstat-r.out000066400000000000000000000005241415226333200216600ustar00rootroot00000000000000Kernel IP routing table Destination Gateway Genmask Flags MSS Window irtt Iface default _gateway 0.0.0.0 UG 0 0 0 ens33 192.168.71.0 0.0.0.0 255.255.255.0 U 0 0 0 ens33 _gateway 0.0.0.0 255.255.255.255 UH 0 0 0 ens33 jc-1.17.3/tests/fixtures/ubuntu-18.04/netstat-rne.json000066400000000000000000000012061415226333200223430ustar00rootroot00000000000000[{"destination": "0.0.0.0", "gateway": "192.168.71.2", "genmask": "0.0.0.0", "route_flags": "UG", "metric": 100, "route_refs": 0, "use": 0, "iface": "ens33", "kind": "route", "route_flags_pretty": ["UP", "GATEWAY"]}, {"destination": "192.168.71.0", "gateway": "0.0.0.0", "genmask": "255.255.255.0", "route_flags": "U", "metric": 0, "route_refs": 0, "use": 0, "iface": "ens33", "kind": "route", "route_flags_pretty": ["UP"]}, {"destination": "192.168.71.2", "gateway": "0.0.0.0", "genmask": "255.255.255.255", "route_flags": "UH", "metric": 100, "route_refs": 0, "use": 0, "iface": "ens33", "kind": "route", "route_flags_pretty": ["UP", "HOST"]}] jc-1.17.3/tests/fixtures/ubuntu-18.04/netstat-rne.out000066400000000000000000000005201415226333200221770ustar00rootroot00000000000000Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface 0.0.0.0 192.168.71.2 0.0.0.0 UG 100 0 0 ens33 192.168.71.0 0.0.0.0 255.255.255.0 U 0 0 0 ens33 192.168.71.2 0.0.0.0 255.255.255.255 UH 100 0 0 ens33 jc-1.17.3/tests/fixtures/ubuntu-18.04/netstat-rnee.json000066400000000000000000000013541415226333200225140ustar00rootroot00000000000000[{"destination": "0.0.0.0", "gateway": "192.168.71.2", "genmask": "0.0.0.0", "route_flags": "UG", "metric": 100, "route_refs": 0, "use": 0, "iface": "ens33", "mss": 0, "window": 0, "irtt": 0, "kind": "route", "route_flags_pretty": ["UP", "GATEWAY"]}, {"destination": "192.168.71.0", "gateway": "0.0.0.0", "genmask": "255.255.255.0", "route_flags": "U", "metric": 0, "route_refs": 0, "use": 0, "iface": "ens33", "mss": 0, "window": 0, "irtt": 0, "kind": "route", "route_flags_pretty": ["UP"]}, {"destination": "192.168.71.2", "gateway": "0.0.0.0", "genmask": "255.255.255.255", "route_flags": "UH", "metric": 100, "route_refs": 0, "use": 0, "iface": "ens33", "mss": 0, "window": 0, "irtt": 0, "kind": "route", "route_flags_pretty": ["UP", "HOST"]}] jc-1.17.3/tests/fixtures/ubuntu-18.04/netstat-rnee.out000066400000000000000000000006331415226333200223510ustar00rootroot00000000000000Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface MSS Window irtt 0.0.0.0 192.168.71.2 0.0.0.0 UG 100 0 0 ens33 0 0 0 192.168.71.0 0.0.0.0 255.255.255.0 U 0 0 0 ens33 0 0 0 192.168.71.2 0.0.0.0 255.255.255.255 UH 100 0 0 ens33 0 0 0 jc-1.17.3/tests/fixtures/ubuntu-18.04/netstat-sudo-aeep.json000066400000000000000000000546551415226333200234610ustar00rootroot00000000000000[{"proto": "tcp", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "0.0.0.0", "state": "LISTEN", "user": "systemd-resolve", "inode": 26985, "program_name": "systemd-resolve", "kind": "network", "pid": 893, "local_port": "domain", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv4"}, {"proto": "tcp", "recv_q": 0, "send_q": 0, "local_address": "0.0.0.0", "foreign_address": "0.0.0.0", "state": "LISTEN", "user": "root", "inode": 30488, "program_name": "sshd", "kind": "network", "pid": 1161, "local_port": "ssh", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv4"}, {"proto": "tcp", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "0.0.0.0", "state": "LISTEN", "user": "root", "inode": 30960, "program_name": "containerd", "kind": "network", "pid": 1162, "local_port": "35485", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 35485}, {"proto": "tcp", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "localhost", "state": "ESTABLISHED", "user": "root", "inode": 44626, "program_name": "sshd: kbrazil", "kind": "network", "pid": 2322, "local_port": "ssh", "foreign_port": "33098", "transport_protocol": "tcp", "network_protocol": "ipv4", "foreign_port_num": 33098}, {"proto": "tcp", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "localhost", "state": "ESTABLISHED", "user": "kbrazil", "inode": 44625, "program_name": "ssh", "kind": "network", "pid": 2321, "local_port": "33098", "foreign_port": "ssh", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 33098}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "[::]", "foreign_address": "[::]", "state": "LISTEN", "user": "root", "inode": 30499, "program_name": "sshd", "kind": "network", "pid": 1161, "local_port": "ssh", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv6"}, {"proto": "udp", "recv_q": 0, "send_q": 0, "local_address": "localhost", "foreign_address": "0.0.0.0", "state": null, "user": "systemd-resolve", "inode": 26984, "program_name": "systemd-resolve", "kind": "network", "pid": 893, "local_port": "domain", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "udp", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-ubuntu", "foreign_address": "0.0.0.0", "state": null, "user": "systemd-network", "inode": 43856, "program_name": "systemd-network", "kind": "network", "pid": 874, "local_port": "bootpc", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4"}, {"proto": "raw6", "recv_q": 0, "send_q": 0, "local_address": "[::]", "foreign_address": "[::]", "state": "7", "user": "systemd-network", "inode": 27015, "program_name": "systemd-network", "kind": "network", "pid": 874, "local_port": "ipv6-icmp", "foreign_port": "*", "transport_protocol": null, "network_protocol": "ipv6"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 34693, "program_name": "systemd", "path": "/run/user/1000/systemd/notify", "kind": "socket", "pid": 1898}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "SEQPACKET", "state": "LISTENING", "inode": 20699, "program_name": "init", "path": "/run/udev/control", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 34696, "program_name": "systemd", "path": "/run/user/1000/systemd/private", "kind": "socket", "pid": 1898}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 34700, "program_name": "systemd", "path": "/run/user/1000/gnupg/S.gpg-agent", "kind": "socket", "pid": 1898}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 34701, "program_name": "systemd", "path": "/run/user/1000/gnupg/S.dirmngr", "kind": "socket", "pid": 1898}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 34702, "program_name": "systemd", "path": "/run/user/1000/gnupg/S.gpg-agent.extra", "kind": "socket", "pid": 1898}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 34703, "program_name": "systemd", "path": "/run/user/1000/gnupg/S.gpg-agent.ssh", "kind": "socket", "pid": 1898}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 34704, "program_name": "systemd", "path": "/run/user/1000/gnupg/S.gpg-agent.browser", "kind": "socket", "pid": 1898}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 20676, "program_name": "init", "path": "/run/systemd/notify", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 20679, "program_name": "init", "path": "/run/systemd/private", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 20689, "program_name": "init", "path": "/run/lvm/lvmetad.socket", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 20692, "program_name": "init", "path": "/run/systemd/journal/stdout", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 9, "flags": null, "type": "DGRAM", "state": null, "inode": 20694, "program_name": "init", "path": "/run/systemd/journal/socket", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 20701, "program_name": "init", "path": "/run/lvm/lvmpolld.socket", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 20891, "program_name": "init", "path": "/run/systemd/journal/syslog", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 8, "flags": null, "type": "DGRAM", "state": null, "inode": 21046, "program_name": "init", "path": "/run/systemd/journal/dev-log", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 27320, "program_name": "init", "path": "/var/lib/lxd/unix.socket", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 25903, "program_name": "VGAuthService", "path": "/var/run/vmware/guestServicePipe", "kind": "socket", "pid": 664}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 27335, "program_name": "init", "path": "/run/acpid.socket", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 27345, "program_name": "init", "path": "/run/snapd.socket", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 27347, "program_name": "init", "path": "/run/snapd-snap.socket", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 27358, "program_name": "init", "path": "/var/run/dbus/system_bus_socket", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 27362, "program_name": "init", "path": "/var/run/docker.sock", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 27366, "program_name": "init", "path": "/run/uuidd/request", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 30955, "program_name": "containerd", "path": "/run/containerd/containerd.sock", "kind": "socket", "pid": 1162}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 27357, "program_name": "init", "path": "@ISCSIADM_ABSTRACT_NAMESPACE", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 34579, "program_name": "systemd", "kind": "socket", "pid": 1898}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 25672, "program_name": "systemd-timesyn", "kind": "socket", "pid": 663}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29901, "program_name": "python3", "kind": "socket", "pid": 1157}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 25635, "program_name": "systemd-timesyn", "kind": "socket", "pid": 663}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 25608, "program_name": "VGAuthService", "kind": "socket", "pid": 664}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 44880, "program_name": "sshd: kbrazil", "kind": "socket", "pid": 2322}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29596, "program_name": "init", "path": "/run/systemd/journal/stdout", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29816, "program_name": "dbus-daemon", "path": "/var/run/dbus/system_bus_socket", "kind": "socket", "pid": 1085}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 30026, "program_name": "sshd", "kind": "socket", "pid": 1161}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 28214, "program_name": "systemd-logind", "kind": "socket", "pid": 1018}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 25674, "program_name": "systemd-timesyn", "kind": "socket", "pid": 663}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 25671, "program_name": "systemd-timesyn", "kind": "socket", "pid": 663}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 34581, "program_name": "init", "path": "/run/systemd/journal/stdout", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 28301, "program_name": "init", "path": "/run/systemd/journal/stdout", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 27703, "program_name": "snapd", "kind": "socket", "pid": 970}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29809, "program_name": "dbus-daemon", "kind": "socket", "pid": 1085}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 30839, "program_name": "python3", "kind": "socket", "pid": 1157}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 44879, "program_name": "sshd: kbrazil@", "kind": "socket", "pid": 2424}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 28135, "program_name": "python3", "kind": "socket", "pid": 1017}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 25673, "program_name": "systemd-timesyn", "kind": "socket", "pid": 663}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 28299, "program_name": "init", "path": "/run/systemd/journal/stdout", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29594, "program_name": "dbus-daemon", "kind": "socket", "pid": 1085}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 30140, "program_name": "init", "path": "/run/systemd/journal/stdout", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 27623, "program_name": "accounts-daemon", "kind": "socket", "pid": 969}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 28298, "program_name": "cron", "kind": "socket", "pid": 1019}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 21255, "program_name": "lvmetad", "kind": "socket", "pid": 509}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 29734, "program_name": "rsyslogd", "kind": "socket", "pid": 1082}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29903, "program_name": "init", "path": "/run/systemd/journal/stdout", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 25636, "program_name": "init", "path": "/run/systemd/journal/stdout", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 25610, "program_name": "init", "path": "/run/systemd/journal/stdout", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29515, "program_name": "init", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 25485, "program_name": "init", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 28300, "program_name": "init", "path": "/run/systemd/journal/stdout", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 27780, "program_name": "init", "path": "/run/systemd/journal/stdout", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 29808, "program_name": "dbus-daemon", "kind": "socket", "pid": 1085}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 30840, "program_name": "dbus-daemon", "path": "/var/run/dbus/system_bus_socket", "kind": "socket", "pid": 1085}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29810, "program_name": "dbus-daemon", "kind": "socket", "pid": 1085}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 22601, "program_name": "systemd-udevd", "kind": "socket", "pid": 522}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 34603, "program_name": "systemd", "kind": "socket", "pid": 1898}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 21485, "program_name": "systemd-journal", "kind": "socket", "pid": 506}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 26725, "program_name": "systemd-network", "kind": "socket", "pid": 874}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 34591, "program_name": "(sd-pam)", "kind": "socket", "pid": 1904}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 20678, "program_name": "init", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 34695, "program_name": "systemd", "kind": "socket", "pid": 1898}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 26709, "program_name": "systemd-network", "kind": "socket", "pid": 874}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29815, "program_name": "dbus-daemon", "path": "/var/run/dbus/system_bus_socket", "kind": "socket", "pid": 1085}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 26886, "program_name": "init", "path": "/run/systemd/journal/stdout", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 30141, "program_name": "init", "path": "/run/systemd/journal/stdout", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 21731, "program_name": "systemd-udevd", "kind": "socket", "pid": 522}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 30635, "program_name": "polkitd", "kind": "socket", "pid": 1182}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 27361, "program_name": "systemd-network", "kind": "socket", "pid": 874}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 26726, "program_name": "systemd-network", "kind": "socket", "pid": 874}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 25780, "program_name": "VGAuthService", "kind": "socket", "pid": 664}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 30696, "program_name": "dbus-daemon", "path": "/var/run/dbus/system_bus_socket", "kind": "socket", "pid": 1085}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 30134, "program_name": "containerd", "kind": "socket", "pid": 1162}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 44980, "program_name": "sudo", "kind": "socket", "pid": 2441}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29814, "program_name": "dbus-daemon", "path": "/var/run/dbus/system_bus_socket", "kind": "socket", "pid": 1085}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 27993, "program_name": "lxcfs", "kind": "socket", "pid": 991}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 26820, "program_name": "systemd-resolve", "kind": "socket", "pid": 893}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 44666, "program_name": "sshd: kbrazil", "kind": "socket", "pid": 2322}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 25668, "program_name": "systemd-timesyn", "kind": "socket", "pid": 663}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 21770, "program_name": "init", "path": "/run/systemd/journal/stdout", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 26959, "program_name": "systemd-resolve", "kind": "socket", "pid": 893}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 27996, "program_name": "init", "path": "/run/systemd/journal/stdout", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 28703, "program_name": "systemd-logind", "kind": "socket", "pid": 1018}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 30695, "program_name": "python3", "kind": "socket", "pid": 1017}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 27995, "program_name": "accounts-daemon", "kind": "socket", "pid": 969}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29812, "program_name": "dbus-daemon", "path": "/var/run/dbus/system_bus_socket", "kind": "socket", "pid": 1085}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 20677, "program_name": "init", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 21558, "program_name": "systemd-udevd", "kind": "socket", "pid": 522}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 34465, "program_name": "login", "kind": "socket", "pid": 1064}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 30636, "program_name": "dbus-daemon", "path": "/var/run/dbus/system_bus_socket", "kind": "socket", "pid": 1085}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 26667, "program_name": "systemd-network", "kind": "socket", "pid": 874}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 27626, "program_name": "init", "path": "/run/systemd/journal/stdout", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 28684, "program_name": "systemd-logind", "kind": "socket", "pid": 1018}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 26069, "program_name": "init", "path": "/run/systemd/journal/stdout", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 26068, "program_name": "vmtoolsd", "kind": "socket", "pid": 700}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 26728, "program_name": "systemd-network", "kind": "socket", "pid": 874}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 26668, "program_name": "init", "path": "/run/systemd/journal/stdout", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 21775, "program_name": "init", "path": "/run/systemd/journal/stdout", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 27364, "program_name": "systemd-resolve", "kind": "socket", "pid": 893}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 25486, "program_name": "init", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 34694, "program_name": "systemd", "kind": "socket", "pid": 1898}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 26727, "program_name": "systemd-network", "kind": "socket", "pid": 874}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 22539, "program_name": "init", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29811, "program_name": "dbus-daemon", "path": "/var/run/dbus/system_bus_socket", "kind": "socket", "pid": 1085}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 22602, "program_name": "systemd-udevd", "kind": "socket", "pid": 522}] jc-1.17.3/tests/fixtures/ubuntu-18.04/netstat-sudo-aeep.out000066400000000000000000000273601415226333200233100ustar00rootroot00000000000000Active Internet connections (servers and established) Proto Recv-Q Send-Q Local Address Foreign Address State User Inode PID/Program name tcp 0 0 localhost:domain 0.0.0.0:* LISTEN systemd-resolve 26985 893/systemd-resolve tcp 0 0 0.0.0.0:ssh 0.0.0.0:* LISTEN root 30488 1161/sshd tcp 0 0 localhost:35485 0.0.0.0:* LISTEN root 30960 1162/containerd tcp 0 0 localhost:ssh localhost:33098 ESTABLISHED root 44626 2322/sshd: kbrazil tcp 0 0 localhost:33098 localhost:ssh ESTABLISHED kbrazil 44625 2321/ssh tcp6 0 0 [::]:ssh [::]:* LISTEN root 30499 1161/sshd udp 0 0 localhost:domain 0.0.0.0:* systemd-resolve 26984 893/systemd-resolve udp 0 0 kbrazil-ubuntu:bootpc 0.0.0.0:* systemd-network 43856 874/systemd-network raw6 0 0 [::]:ipv6-icmp [::]:* 7 systemd-network 27015 874/systemd-network Active UNIX domain sockets (servers and established) Proto RefCnt Flags Type State I-Node PID/Program name Path unix 2 [ ] DGRAM 34693 1898/systemd /run/user/1000/systemd/notify unix 2 [ ACC ] SEQPACKET LISTENING 20699 1/init /run/udev/control unix 2 [ ACC ] STREAM LISTENING 34696 1898/systemd /run/user/1000/systemd/private unix 2 [ ACC ] STREAM LISTENING 34700 1898/systemd /run/user/1000/gnupg/S.gpg-agent unix 2 [ ACC ] STREAM LISTENING 34701 1898/systemd /run/user/1000/gnupg/S.dirmngr unix 2 [ ACC ] STREAM LISTENING 34702 1898/systemd /run/user/1000/gnupg/S.gpg-agent.extra unix 2 [ ACC ] STREAM LISTENING 34703 1898/systemd /run/user/1000/gnupg/S.gpg-agent.ssh unix 2 [ ACC ] STREAM LISTENING 34704 1898/systemd /run/user/1000/gnupg/S.gpg-agent.browser unix 3 [ ] DGRAM 20676 1/init /run/systemd/notify unix 2 [ ACC ] STREAM LISTENING 20679 1/init /run/systemd/private unix 2 [ ACC ] STREAM LISTENING 20689 1/init /run/lvm/lvmetad.socket unix 2 [ ACC ] STREAM LISTENING 20692 1/init /run/systemd/journal/stdout unix 9 [ ] DGRAM 20694 1/init /run/systemd/journal/socket unix 2 [ ACC ] STREAM LISTENING 20701 1/init /run/lvm/lvmpolld.socket unix 2 [ ] DGRAM 20891 1/init /run/systemd/journal/syslog unix 8 [ ] DGRAM 21046 1/init /run/systemd/journal/dev-log unix 2 [ ACC ] STREAM LISTENING 27320 1/init /var/lib/lxd/unix.socket unix 2 [ ACC ] STREAM LISTENING 25903 664/VGAuthService /var/run/vmware/guestServicePipe unix 2 [ ACC ] STREAM LISTENING 27335 1/init /run/acpid.socket unix 2 [ ACC ] STREAM LISTENING 27345 1/init /run/snapd.socket unix 2 [ ACC ] STREAM LISTENING 27347 1/init /run/snapd-snap.socket unix 2 [ ACC ] STREAM LISTENING 27358 1/init /var/run/dbus/system_bus_socket unix 2 [ ACC ] STREAM LISTENING 27362 1/init /var/run/docker.sock unix 2 [ ACC ] STREAM LISTENING 27366 1/init /run/uuidd/request unix 2 [ ACC ] STREAM LISTENING 30955 1162/containerd /run/containerd/containerd.sock unix 2 [ ACC ] STREAM LISTENING 27357 1/init @ISCSIADM_ABSTRACT_NAMESPACE unix 3 [ ] STREAM CONNECTED 34579 1898/systemd unix 3 [ ] DGRAM 25672 663/systemd-timesyn unix 3 [ ] STREAM CONNECTED 29901 1157/python3 unix 3 [ ] STREAM CONNECTED 25635 663/systemd-timesyn unix 3 [ ] STREAM CONNECTED 25608 664/VGAuthService unix 3 [ ] STREAM CONNECTED 44880 2322/sshd: kbrazil unix 3 [ ] STREAM CONNECTED 29596 1/init /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 29816 1085/dbus-daemon /var/run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 30026 1161/sshd unix 3 [ ] STREAM CONNECTED 28214 1018/systemd-logind unix 3 [ ] DGRAM 25674 663/systemd-timesyn unix 3 [ ] DGRAM 25671 663/systemd-timesyn unix 3 [ ] STREAM CONNECTED 34581 1/init /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 28301 1/init /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 27703 970/snapd unix 3 [ ] STREAM CONNECTED 29809 1085/dbus-daemon unix 3 [ ] STREAM CONNECTED 30839 1157/python3 unix 3 [ ] STREAM CONNECTED 44879 2424/sshd: kbrazil@ unix 3 [ ] STREAM CONNECTED 28135 1017/python3 unix 3 [ ] DGRAM 25673 663/systemd-timesyn unix 3 [ ] STREAM CONNECTED 28299 1/init /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 29594 1085/dbus-daemon unix 3 [ ] STREAM CONNECTED 30140 1/init /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 27623 969/accounts-daemon unix 3 [ ] STREAM CONNECTED 28298 1019/cron unix 3 [ ] STREAM CONNECTED 21255 509/lvmetad unix 2 [ ] DGRAM 29734 1082/rsyslogd unix 3 [ ] STREAM CONNECTED 29903 1/init /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 25636 1/init /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 25610 1/init /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 29515 1/init unix 3 [ ] DGRAM 25485 1/init unix 3 [ ] STREAM CONNECTED 28300 1/init /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 27780 1/init /run/systemd/journal/stdout unix 2 [ ] DGRAM 29808 1085/dbus-daemon unix 3 [ ] STREAM CONNECTED 30840 1085/dbus-daemon /var/run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 29810 1085/dbus-daemon unix 3 [ ] DGRAM 22601 522/systemd-udevd unix 2 [ ] DGRAM 34603 1898/systemd unix 2 [ ] DGRAM 21485 506/systemd-journal unix 3 [ ] DGRAM 26725 874/systemd-network unix 2 [ ] DGRAM 34591 1904/(sd-pam) unix 3 [ ] DGRAM 20678 1/init unix 3 [ ] DGRAM 34695 1898/systemd unix 2 [ ] DGRAM 26709 874/systemd-network unix 3 [ ] STREAM CONNECTED 29815 1085/dbus-daemon /var/run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 26886 1/init /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 30141 1/init /run/systemd/journal/stdout unix 2 [ ] DGRAM 21731 522/systemd-udevd unix 3 [ ] STREAM CONNECTED 30635 1182/polkitd unix 3 [ ] STREAM CONNECTED 27361 874/systemd-network unix 3 [ ] DGRAM 26726 874/systemd-network unix 2 [ ] DGRAM 25780 664/VGAuthService unix 3 [ ] STREAM CONNECTED 30696 1085/dbus-daemon /var/run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 30134 1162/containerd unix 2 [ ] DGRAM 44980 2441/sudo unix 3 [ ] STREAM CONNECTED 29814 1085/dbus-daemon /var/run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 27993 991/lxcfs unix 3 [ ] STREAM CONNECTED 26820 893/systemd-resolve unix 2 [ ] DGRAM 44666 2322/sshd: kbrazil unix 2 [ ] DGRAM 25668 663/systemd-timesyn unix 3 [ ] STREAM CONNECTED 21770 1/init /run/systemd/journal/stdout unix 2 [ ] DGRAM 26959 893/systemd-resolve unix 3 [ ] STREAM CONNECTED 27996 1/init /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 28703 1018/systemd-logind unix 3 [ ] STREAM CONNECTED 30695 1017/python3 unix 3 [ ] STREAM CONNECTED 27995 969/accounts-daemon unix 3 [ ] STREAM CONNECTED 29812 1085/dbus-daemon /var/run/dbus/system_bus_socket unix 3 [ ] DGRAM 20677 1/init unix 3 [ ] STREAM CONNECTED 21558 522/systemd-udevd unix 2 [ ] DGRAM 34465 1064/login unix 3 [ ] STREAM CONNECTED 30636 1085/dbus-daemon /var/run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 26667 874/systemd-network unix 3 [ ] STREAM CONNECTED 27626 1/init /run/systemd/journal/stdout unix 2 [ ] DGRAM 28684 1018/systemd-logind unix 3 [ ] STREAM CONNECTED 26069 1/init /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 26068 700/vmtoolsd unix 3 [ ] DGRAM 26728 874/systemd-network unix 3 [ ] STREAM CONNECTED 26668 1/init /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 21775 1/init /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 27364 893/systemd-resolve unix 3 [ ] DGRAM 25486 1/init unix 3 [ ] DGRAM 34694 1898/systemd unix 3 [ ] DGRAM 26727 874/systemd-network unix 2 [ ] DGRAM 22539 1/init unix 3 [ ] STREAM CONNECTED 29811 1085/dbus-daemon /var/run/dbus/system_bus_socket unix 3 [ ] DGRAM 22602 522/systemd-udevd jc-1.17.3/tests/fixtures/ubuntu-18.04/netstat-sudo-lnp.json000066400000000000000000000141631415226333200233260ustar00rootroot00000000000000[{"proto": "tcp", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.1", "foreign_address": "0.0.0.0", "state": "LISTEN", "program_name": "containerd", "kind": "network", "pid": 1112, "local_port": "42351", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 42351}, {"proto": "tcp", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.53", "foreign_address": "0.0.0.0", "state": "LISTEN", "program_name": "systemd-resolve", "kind": "network", "pid": 885, "local_port": "53", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 53}, {"proto": "tcp", "recv_q": 0, "send_q": 0, "local_address": "0.0.0.0", "foreign_address": "0.0.0.0", "state": "LISTEN", "program_name": "sshd", "kind": "network", "pid": 1127, "local_port": "22", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 22}, {"proto": "tcp6", "recv_q": 0, "send_q": 0, "local_address": "::", "foreign_address": "::", "state": "LISTEN", "program_name": "sshd", "kind": "network", "pid": 1127, "local_port": "22", "foreign_port": "*", "transport_protocol": "tcp", "network_protocol": "ipv6", "local_port_num": 22}, {"proto": "udp", "recv_q": 0, "send_q": 0, "local_address": "127.0.0.53", "foreign_address": "0.0.0.0", "state": null, "program_name": "systemd-resolve", "kind": "network", "pid": 885, "local_port": "53", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 53}, {"proto": "udp", "recv_q": 0, "send_q": 0, "local_address": "192.168.71.131", "foreign_address": "0.0.0.0", "state": null, "program_name": "systemd-network", "kind": "network", "pid": 867, "local_port": "68", "foreign_port": "*", "transport_protocol": "udp", "network_protocol": "ipv4", "local_port_num": 68}, {"proto": "raw6", "recv_q": 0, "send_q": 0, "local_address": "::", "foreign_address": "::", "state": "7", "program_name": "systemd-network", "kind": "network", "pid": 867, "local_port": "58", "foreign_port": "*", "transport_protocol": null, "network_protocol": "ipv6", "local_port_num": 58}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "SEQPACKET", "state": "LISTENING", "inode": 20812, "program_name": "init", "path": "/run/udev/control", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 33765, "program_name": "systemd", "path": "/run/user/1000/systemd/private", "kind": "socket", "pid": 1723}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 33808, "program_name": "systemd", "path": "/run/user/1000/gnupg/S.gpg-agent.ssh", "kind": "socket", "pid": 1723}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 33809, "program_name": "systemd", "path": "/run/user/1000/gnupg/S.dirmngr", "kind": "socket", "pid": 1723}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 33810, "program_name": "systemd", "path": "/run/user/1000/gnupg/S.gpg-agent.browser", "kind": "socket", "pid": 1723}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 33811, "program_name": "systemd", "path": "/run/user/1000/gnupg/S.gpg-agent", "kind": "socket", "pid": 1723}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 33812, "program_name": "systemd", "path": "/run/user/1000/gnupg/S.gpg-agent.extra", "kind": "socket", "pid": 1723}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 20655, "program_name": "init", "path": "/run/systemd/private", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 20662, "program_name": "init", "path": "/run/lvm/lvmetad.socket", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 20664, "program_name": "init", "path": "/run/systemd/journal/stdout", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 20891, "program_name": "init", "path": "/run/lvm/lvmpolld.socket", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 27473, "program_name": "init", "path": "/run/acpid.socket", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 27443, "program_name": "init", "path": "/run/snapd.socket", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 27445, "program_name": "init", "path": "/run/snapd-snap.socket", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 27475, "program_name": "init", "path": "/run/uuidd/request", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 27481, "program_name": "init", "path": "/var/run/docker.sock", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 27489, "program_name": "init", "path": "/var/run/dbus/system_bus_socket", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 27468, "program_name": "init", "path": "/var/lib/lxd/unix.socket", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 30726, "program_name": "containerd", "path": "/run/containerd/containerd.sock", "kind": "socket", "pid": 1112}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 27436, "program_name": "init", "path": "@ISCSIADM_ABSTRACT_NAMESPACE", "kind": "socket", "pid": 1}, {"proto": "unix", "refcnt": 2, "flags": "ACC", "type": "STREAM", "state": "LISTENING", "inode": 25548, "program_name": "VGAuthService", "path": "/var/run/vmware/guestServicePipe", "kind": "socket", "pid": 607}] jc-1.17.3/tests/fixtures/ubuntu-18.04/netstat-sudo-lnp.out000066400000000000000000000062441415226333200231650ustar00rootroot00000000000000Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name tcp 0 0 127.0.0.1:42351 0.0.0.0:* LISTEN 1112/containerd tcp 0 0 127.0.0.53:53 0.0.0.0:* LISTEN 885/systemd-resolve tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 1127/sshd tcp6 0 0 :::22 :::* LISTEN 1127/sshd udp 0 0 127.0.0.53:53 0.0.0.0:* 885/systemd-resolve udp 0 0 192.168.71.131:68 0.0.0.0:* 867/systemd-network raw6 0 0 :::58 :::* 7 867/systemd-network Active UNIX domain sockets (only servers) Proto RefCnt Flags Type State I-Node PID/Program name Path unix 2 [ ACC ] SEQPACKET LISTENING 20812 1/init /run/udev/control unix 2 [ ACC ] STREAM LISTENING 33765 1723/systemd /run/user/1000/systemd/private unix 2 [ ACC ] STREAM LISTENING 33808 1723/systemd /run/user/1000/gnupg/S.gpg-agent.ssh unix 2 [ ACC ] STREAM LISTENING 33809 1723/systemd /run/user/1000/gnupg/S.dirmngr unix 2 [ ACC ] STREAM LISTENING 33810 1723/systemd /run/user/1000/gnupg/S.gpg-agent.browser unix 2 [ ACC ] STREAM LISTENING 33811 1723/systemd /run/user/1000/gnupg/S.gpg-agent unix 2 [ ACC ] STREAM LISTENING 33812 1723/systemd /run/user/1000/gnupg/S.gpg-agent.extra unix 2 [ ACC ] STREAM LISTENING 20655 1/init /run/systemd/private unix 2 [ ACC ] STREAM LISTENING 20662 1/init /run/lvm/lvmetad.socket unix 2 [ ACC ] STREAM LISTENING 20664 1/init /run/systemd/journal/stdout unix 2 [ ACC ] STREAM LISTENING 20891 1/init /run/lvm/lvmpolld.socket unix 2 [ ACC ] STREAM LISTENING 27473 1/init /run/acpid.socket unix 2 [ ACC ] STREAM LISTENING 27443 1/init /run/snapd.socket unix 2 [ ACC ] STREAM LISTENING 27445 1/init /run/snapd-snap.socket unix 2 [ ACC ] STREAM LISTENING 27475 1/init /run/uuidd/request unix 2 [ ACC ] STREAM LISTENING 27481 1/init /var/run/docker.sock unix 2 [ ACC ] STREAM LISTENING 27489 1/init /var/run/dbus/system_bus_socket unix 2 [ ACC ] STREAM LISTENING 27468 1/init /var/lib/lxd/unix.socket unix 2 [ ACC ] STREAM LISTENING 30726 1112/containerd /run/containerd/containerd.sock unix 2 [ ACC ] STREAM LISTENING 27436 1/init @ISCSIADM_ABSTRACT_NAMESPACE unix 2 [ ACC ] STREAM LISTENING 25548 607/VGAuthService /var/run/vmware/guestServicePipe jc-1.17.3/tests/fixtures/ubuntu-18.04/netstat.json000066400000000000000000000304061415226333200215650ustar00rootroot00000000000000[{"proto": "tcp", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-ubuntu", "foreign_address": "192.168.71.1", "state": "ESTABLISHED", "kind": "network", "local_port": "ssh", "foreign_port": "65159", "transport_protocol": "tcp", "network_protocol": "ipv4", "foreign_port_num": 65159}, {"proto": "tcp", "recv_q": 0, "send_q": 0, "local_address": "kbrazil-ubuntu", "foreign_address": "lb-192-30-253-113", "state": "ESTABLISHED", "kind": "network", "local_port": "55656", "foreign_port": "https", "transport_protocol": "tcp", "network_protocol": "ipv4", "local_port_num": 55656}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 33762, "path": "/run/user/1000/systemd/notify", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 20652, "path": "/run/systemd/notify", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 20660, "path": "/run/systemd/journal/syslog", "kind": "socket"}, {"proto": "unix", "refcnt": 9, "flags": null, "type": "DGRAM", "state": null, "inode": 20666, "path": "/run/systemd/journal/socket", "kind": "socket"}, {"proto": "unix", "refcnt": 7, "flags": null, "type": "DGRAM", "state": null, "inode": 21016, "path": "/run/systemd/journal/dev-log", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 30460, "path": "/var/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 207713, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29199, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 33603, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 28133, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 27669, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 30629, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29376, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 33601, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 30459, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 29208, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 21388, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 30630, "path": "/var/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 26063, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 29374, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29380, "path": "/var/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 207447, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 25431, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 27493, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 28694, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 30670, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29165, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29381, "path": "/var/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 33487, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 30671, "path": "/var/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 28695, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 25414, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 25277, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29375, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 25401, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29685, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29377, "path": "/var/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29230, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 27494, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 27978, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 25430, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29168, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 26944, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29378, "path": "/var/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 25402, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29474, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 21581, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29169, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29382, "path": "/var/run/dbus/system_bus_socket", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 28058, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 26941, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 21261, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29684, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 25432, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 25415, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 28696, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 25429, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 26986, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 27668, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29166, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 207714, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29086, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 26000, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 25276, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 33763, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 33764, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 29558, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 76786, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 28613, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 21583, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 33650, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 25533, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 30152, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 26728, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 33638, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 28224, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 26772, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 27981, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 21598, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 26773, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 21588, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 30153, "path": "/run/systemd/journal/stdout", "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 20654, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 20653, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 26770, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 25426, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 26771, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "DGRAM", "state": null, "inode": 21599, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 21498, "kind": "socket"}, {"proto": "unix", "refcnt": 3, "flags": null, "type": "STREAM", "state": "CONNECTED", "inode": 26727, "kind": "socket"}, {"proto": "unix", "refcnt": 2, "flags": null, "type": "DGRAM", "state": null, "inode": 26760, "kind": "socket"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/netstat.out000066400000000000000000000150671415226333200214310ustar00rootroot00000000000000Active Internet connections (w/o servers) Proto Recv-Q Send-Q Local Address Foreign Address State tcp 0 0 kbrazil-ubuntu:ssh 192.168.71.1:65159 ESTABLISHED tcp 0 0 kbrazil-ubuntu:55656 lb-192-30-253-113:https ESTABLISHED Active UNIX domain sockets (w/o servers) Proto RefCnt Flags Type State I-Node Path unix 2 [ ] DGRAM 33762 /run/user/1000/systemd/notify unix 3 [ ] DGRAM 20652 /run/systemd/notify unix 2 [ ] DGRAM 20660 /run/systemd/journal/syslog unix 9 [ ] DGRAM 20666 /run/systemd/journal/socket unix 7 [ ] DGRAM 21016 /run/systemd/journal/dev-log unix 3 [ ] STREAM CONNECTED 30460 /var/run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 207713 unix 3 [ ] STREAM CONNECTED 29199 unix 3 [ ] STREAM CONNECTED 33603 /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 28133 /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 27669 /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 30629 unix 3 [ ] STREAM CONNECTED 29376 unix 3 [ ] STREAM CONNECTED 33601 unix 3 [ ] STREAM CONNECTED 30459 unix 2 [ ] DGRAM 29208 unix 3 [ ] STREAM CONNECTED 21388 unix 3 [ ] STREAM CONNECTED 30630 /var/run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 26063 /run/systemd/journal/stdout unix 2 [ ] DGRAM 29374 unix 3 [ ] STREAM CONNECTED 29380 /var/run/dbus/system_bus_socket unix 2 [ ] DGRAM 207447 unix 3 [ ] DGRAM 25431 unix 3 [ ] STREAM CONNECTED 27493 unix 3 [ ] STREAM CONNECTED 28694 unix 3 [ ] STREAM CONNECTED 30670 unix 3 [ ] STREAM CONNECTED 29165 unix 3 [ ] STREAM CONNECTED 29381 /var/run/dbus/system_bus_socket unix 2 [ ] DGRAM 33487 unix 3 [ ] STREAM CONNECTED 30671 /var/run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 28695 /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 25414 unix 3 [ ] DGRAM 25277 unix 3 [ ] STREAM CONNECTED 29375 unix 3 [ ] STREAM CONNECTED 25401 unix 3 [ ] STREAM CONNECTED 29685 /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 29377 /var/run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 29230 unix 3 [ ] STREAM CONNECTED 27494 unix 3 [ ] STREAM CONNECTED 27978 unix 3 [ ] DGRAM 25430 unix 3 [ ] STREAM CONNECTED 29168 /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 26944 /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 29378 /var/run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 25402 /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 29474 unix 3 [ ] STREAM CONNECTED 21581 /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 29169 /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 29382 /var/run/dbus/system_bus_socket unix 3 [ ] STREAM CONNECTED 28058 unix 3 [ ] STREAM CONNECTED 26941 unix 2 [ ] DGRAM 21261 unix 3 [ ] STREAM CONNECTED 29684 unix 3 [ ] DGRAM 25432 unix 3 [ ] STREAM CONNECTED 25415 /run/systemd/journal/stdout unix 3 [ ] STREAM CONNECTED 28696 /run/systemd/journal/stdout unix 3 [ ] DGRAM 25429 unix 2 [ ] DGRAM 26986 unix 3 [ ] STREAM CONNECTED 27668 unix 3 [ ] STREAM CONNECTED 29166 unix 3 [ ] STREAM CONNECTED 207714 unix 3 [ ] STREAM CONNECTED 29086 unix 3 [ ] STREAM CONNECTED 26000 unix 3 [ ] DGRAM 25276 unix 3 [ ] DGRAM 33763 unix 3 [ ] DGRAM 33764 unix 3 [ ] STREAM CONNECTED 29558 /run/systemd/journal/stdout unix 2 [ ] DGRAM 76786 unix 3 [ ] STREAM CONNECTED 28613 unix 3 [ ] STREAM CONNECTED 21583 /run/systemd/journal/stdout unix 2 [ ] DGRAM 33650 unix 2 [ ] DGRAM 25533 unix 3 [ ] STREAM CONNECTED 30152 unix 3 [ ] STREAM CONNECTED 26728 /run/systemd/journal/stdout unix 2 [ ] DGRAM 33638 unix 2 [ ] DGRAM 28224 unix 3 [ ] DGRAM 26772 unix 3 [ ] STREAM CONNECTED 27981 /run/systemd/journal/stdout unix 3 [ ] DGRAM 21598 unix 3 [ ] DGRAM 26773 unix 2 [ ] DGRAM 21588 unix 3 [ ] STREAM CONNECTED 30153 /run/systemd/journal/stdout unix 3 [ ] DGRAM 20654 unix 3 [ ] DGRAM 20653 unix 3 [ ] DGRAM 26770 unix 2 [ ] DGRAM 25426 unix 3 [ ] DGRAM 26771 unix 3 [ ] DGRAM 21599 unix 3 [ ] STREAM CONNECTED 21498 unix 3 [ ] STREAM CONNECTED 26727 unix 2 [ ] DGRAM 26760 jc-1.17.3/tests/fixtures/ubuntu-18.04/ntpq-p.json000066400000000000000000000064051415226333200213240ustar00rootroot00000000000000[{"state": null, "remote": "0.ubuntu.pool.n", "refid": ".POOL.", "st": 16, "t": "p", "when": null, "poll": 64, "reach": 0, "delay": 0.0, "offset": 0.0, "jitter": 0.0}, {"state": null, "remote": "1.ubuntu.pool.n", "refid": ".POOL.", "st": 16, "t": "p", "when": null, "poll": 64, "reach": 0, "delay": 0.0, "offset": 0.0, "jitter": 0.0}, {"state": null, "remote": "2.ubuntu.pool.n", "refid": ".POOL.", "st": 16, "t": "p", "when": null, "poll": 64, "reach": 0, "delay": 0.0, "offset": 0.0, "jitter": 0.0}, {"state": null, "remote": "3.ubuntu.pool.n", "refid": ".POOL.", "st": 16, "t": "p", "when": null, "poll": 64, "reach": 0, "delay": 0.0, "offset": 0.0, "jitter": 0.0}, {"state": null, "remote": "ntp.ubuntu.com", "refid": ".POOL.", "st": 16, "t": "p", "when": null, "poll": 64, "reach": 0, "delay": 0.0, "offset": 0.0, "jitter": 0.0}, {"state": "+", "remote": "216.126.233.109", "refid": "128.227.205.3", "st": 2, "t": "u", "when": 24, "poll": 64, "reach": 1, "delay": 95.876, "offset": -65.426, "jitter": 4.502}, {"state": "+", "remote": "time.cloudflare", "refid": "10.4.0.197", "st": 3, "t": "u", "when": 33, "poll": 64, "reach": 1, "delay": 25.239, "offset": -69.809, "jitter": 3.313}, {"state": "+", "remote": "titan.crash-ove", "refid": "139.78.97.128", "st": 2, "t": "u", "when": 35, "poll": 64, "reach": 1, "delay": 60.008, "offset": -70.991, "jitter": 2.884}, {"state": "*", "remote": "clock.nyc.he.ne", "refid": ".CDMA.", "st": 1, "t": "u", "when": 31, "poll": 64, "reach": 1, "delay": 90.113, "offset": -65.938, "jitter": 4.621}, {"state": "-", "remote": "vf2.bbnx.net", "refid": "252.74.143.178", "st": 2, "t": "u", "when": 34, "poll": 64, "reach": 1, "delay": 209.667, "offset": -81.337, "jitter": 5.547}, {"state": "+", "remote": "t2.time.bf1.yah", "refid": "98.139.133.62", "st": 3, "t": "u", "when": 35, "poll": 64, "reach": 1, "delay": 104.541, "offset": -67.956, "jitter": 5.731}, {"state": null, "remote": "pugot.canonical", "refid": "17.253.34.125", "st": 2, "t": "u", "when": 43, "poll": 64, "reach": 1, "delay": 176.609, "offset": -65.874, "jitter": 0.0}, {"state": "-", "remote": "50-205-244-110-", "refid": "50.205.244.27", "st": 2, "t": "u", "when": 30, "poll": 64, "reach": 1, "delay": 76.322, "offset": -65.135, "jitter": 2.334}, {"state": "+", "remote": "1.time.dbsinet.", "refid": "146.186.222.14", "st": 2, "t": "u", "when": 31, "poll": 64, "reach": 1, "delay": 110.723, "offset": -65.056, "jitter": 6.198}, {"state": null, "remote": "golem.canonical", "refid": "17.253.34.123", "st": 2, "t": "u", "when": 40, "poll": 64, "reach": 1, "delay": 186.589, "offset": -61.769, "jitter": 0.0}, {"state": "-", "remote": "103.105.51.156", "refid": "206.55.191.142", "st": 2, "t": "u", "when": 30, "poll": 64, "reach": 1, "delay": 38.164, "offset": -65.286, "jitter": 6.412}, {"state": null, "remote": "alphyn.canonica", "refid": "17.253.108.125", "st": 2, "t": "u", "when": 44, "poll": 64, "reach": 1, "delay": 105.626, "offset": -63.73, "jitter": 0.0}, {"state": "-", "remote": "vf1.bbnx.net", "refid": "253.109.221.150", "st": 2, "t": "u", "when": 31, "poll": 64, "reach": 1, "delay": 101.941, "offset": -73.597, "jitter": 3.39}, {"state": null, "remote": "chilipepper.can", "refid": "145.238.203.14", "st": 2, "t": "u", "when": 40, "poll": 64, "reach": 1, "delay": 188.989, "offset": -59.352, "jitter": 0.0}] jc-1.17.3/tests/fixtures/ubuntu-18.04/ntpq-p.out000066400000000000000000000031731415226333200211610ustar00rootroot00000000000000 remote refid st t when poll reach delay offset jitter ============================================================================== 0.ubuntu.pool.n .POOL. 16 p - 64 0 0.000 0.000 0.000 1.ubuntu.pool.n .POOL. 16 p - 64 0 0.000 0.000 0.000 2.ubuntu.pool.n .POOL. 16 p - 64 0 0.000 0.000 0.000 3.ubuntu.pool.n .POOL. 16 p - 64 0 0.000 0.000 0.000 ntp.ubuntu.com .POOL. 16 p - 64 0 0.000 0.000 0.000 +216.126.233.109 128.227.205.3 2 u 24 64 1 95.876 -65.426 4.502 +time.cloudflare 10.4.0.197 3 u 33 64 1 25.239 -69.809 3.313 +titan.crash-ove 139.78.97.128 2 u 35 64 1 60.008 -70.991 2.884 *clock.nyc.he.ne .CDMA. 1 u 31 64 1 90.113 -65.938 4.621 -vf2.bbnx.net 252.74.143.178 2 u 34 64 1 209.667 -81.337 5.547 +t2.time.bf1.yah 98.139.133.62 3 u 35 64 1 104.541 -67.956 5.731 pugot.canonical 17.253.34.125 2 u 43 64 1 176.609 -65.874 0.000 -50-205-244-110- 50.205.244.27 2 u 30 64 1 76.322 -65.135 2.334 +1.time.dbsinet. 146.186.222.14 2 u 31 64 1 110.723 -65.056 6.198 golem.canonical 17.253.34.123 2 u 40 64 1 186.589 -61.769 0.000 -103.105.51.156 206.55.191.142 2 u 30 64 1 38.164 -65.286 6.412 alphyn.canonica 17.253.108.125 2 u 44 64 1 105.626 -63.730 0.000 -vf1.bbnx.net 253.109.221.150 2 u 31 64 1 101.941 -73.597 3.390 chilipepper.can 145.238.203.14 2 u 40 64 1 188.989 -59.352 0.000 jc-1.17.3/tests/fixtures/ubuntu-18.04/ntpq-p2.json000066400000000000000000000073701415226333200214100ustar00rootroot00000000000000[{"remote": "0.ubuntu.pool.n", "refid": ".POOL.", "st": 16, "t": "p", "when": null, "poll": 64, "reach": 0, "delay": 0.0, "offset": 0.0, "jitter": 0.0, "state": null}, {"remote": "1.ubuntu.pool.n", "refid": ".POOL.", "st": 16, "t": "p", "when": null, "poll": 64, "reach": 0, "delay": 0.0, "offset": 0.0, "jitter": 0.0, "state": null}, {"remote": "2.ubuntu.pool.n", "refid": ".POOL.", "st": 16, "t": "p", "when": null, "poll": 64, "reach": 0, "delay": 0.0, "offset": 0.0, "jitter": 0.0, "state": null}, {"remote": "3.ubuntu.pool.n", "refid": ".POOL.", "st": 16, "t": "p", "when": null, "poll": 64, "reach": 0, "delay": 0.0, "offset": 0.0, "jitter": 0.0, "state": null}, {"remote": "ntp.ubuntu.com", "refid": ".POOL.", "st": 16, "t": "p", "when": null, "poll": 64, "reach": 0, "delay": 0.0, "offset": 0.0, "jitter": 0.0, "state": null}, {"remote": "45.79.36.123_(t", "refid": "216.218.254.202", "st": 2, "t": "u", "when": 11, "poll": 64, "reach": 7, "delay": 68.172, "offset": 4.404, "jitter": 4.878, "state": "+"}, {"remote": "199.188.64.12_(", "refid": "173.161.33.165", "st": 2, "t": "u", "when": 9, "poll": 64, "reach": 7, "delay": 78.823, "offset": 2.148, "jitter": 8.739, "state": "+"}, {"remote": "ntp2.wiktel.com", "refid": ".GPS.", "st": 1, "t": "u", "when": 25, "poll": 64, "reach": 7, "delay": 76.857, "offset": 0.473, "jitter": 7.89, "state": "*"}, {"remote": "atl0.jane.mattn", "refid": "35.73.197.144", "st": 2, "t": "u", "when": 32, "poll": 64, "reach": 7, "delay": 87.536, "offset": 8.641, "jitter": 4.544, "state": "#"}, {"remote": "x.ns.gin.ntt.ne", "refid": "249.224.99.213", "st": 2, "t": "u", "when": 28, "poll": 64, "reach": 7, "delay": 25.021, "offset": 3.361, "jitter": 7.793, "state": "+"}, {"remote": "srcf-ntp.stanfo", "refid": "171.64.7.105", "st": 2, "t": "u", "when": 26, "poll": 64, "reach": 7, "delay": 28.053, "offset": 7.253, "jitter": 4.524, "state": "-"}, {"remote": "linode.ibendit.", "refid": "64.250.105.227", "st": 2, "t": "u", "when": 28, "poll": 64, "reach": 7, "delay": 56.841, "offset": -0.305, "jitter": 8.279, "state": "#"}, {"remote": "71.66.197.233", "refid": ".GPS.", "st": 1, "t": "u", "when": 26, "poll": 64, "reach": 7, "delay": 127.766, "offset": -0.769, "jitter": 3.465, "state": "+"}, {"remote": "time.aja.com", "refid": "198.169.208.144", "st": 2, "t": "u", "when": 32, "poll": 64, "reach": 7, "delay": 39.673, "offset": 4.684, "jitter": 4.916, "state": "+"}, {"remote": "23.152.160.126", "refid": "84.168.88.243", "st": 2, "t": "u", "when": 28, "poll": 64, "reach": 7, "delay": 21.553, "offset": 3.245, "jitter": 8.612, "state": "+"}, {"remote": "ntp.backplanedn", "refid": "152.2.133.52", "st": 2, "t": "u", "when": 30, "poll": 64, "reach": 7, "delay": 93.009, "offset": 9.337, "jitter": 10.03, "state": "#"}, {"remote": "chilipepper.can", "refid": "193.79.237.14", "st": 2, "t": "u", "when": 32, "poll": 64, "reach": 7, "delay": 165.084, "offset": 5.872, "jitter": 3.797, "state": null}, {"remote": "198.255.68.106", "refid": "192.168.1.193", "st": 2, "t": "u", "when": 26, "poll": 64, "reach": 7, "delay": 30.911, "offset": 3.034, "jitter": 8.201, "state": "+"}, {"remote": "golem.canonical", "refid": "17.253.34.251", "st": 2, "t": "u", "when": 28, "poll": 64, "reach": 7, "delay": 156.657, "offset": 3.767, "jitter": 5.448, "state": null}, {"remote": "vps.jan-jaap.ne", "refid": "132.163.96.1", "st": 2, "t": "u", "when": 23, "poll": 64, "reach": 7, "delay": 184.394, "offset": -7.118, "jitter": 4.585, "state": "#"}, {"remote": "vf2.bbnx.net", "refid": "252.74.143.178", "st": 2, "t": "u", "when": 28, "poll": 64, "reach": 7, "delay": 97.275, "offset": 0.824, "jitter": 18.08, "state": "+"}, {"remote": "pugot.canonical", "refid": "17.253.34.253", "st": 2, "t": "u", "when": 29, "poll": 64, "reach": 7, "delay": 157.069, "offset": 3.709, "jitter": 8.753, "state": null}] jc-1.17.3/tests/fixtures/ubuntu-18.04/ntpq-p2.out000066400000000000000000000035501415226333200212420ustar00rootroot00000000000000 remote refid st t when poll reach delay offset jitter ============================================================================== 0.ubuntu.pool.n .POOL. 16 p - 64 0 0.000 0.000 0.000 1.ubuntu.pool.n .POOL. 16 p - 64 0 0.000 0.000 0.000 2.ubuntu.pool.n .POOL. 16 p - 64 0 0.000 0.000 0.000 3.ubuntu.pool.n .POOL. 16 p - 64 0 0.000 0.000 0.000 ntp.ubuntu.com .POOL. 16 p - 64 0 0.000 0.000 0.000 +45.79.36.123 (t 216.218.254.202 2 u 11 64 7 68.172 4.404 4.878 +199.188.64.12 ( 173.161.33.165 2 u 9 64 7 78.823 2.148 8.739 *ntp2.wiktel.com .GPS. 1 u 25 64 7 76.857 0.473 7.890 #atl0.jane.mattn 35.73.197.144 2 u 32 64 7 87.536 8.641 4.544 +x.ns.gin.ntt.ne 249.224.99.213 2 u 28 64 7 25.021 3.361 7.793 -srcf-ntp.stanfo 171.64.7.105 2 u 26 64 7 28.053 7.253 4.524 #linode.ibendit. 64.250.105.227 2 u 28 64 7 56.841 -0.305 8.279 +71.66.197.233 .GPS. 1 u 26 64 7 127.766 -0.769 3.465 +time.aja.com 198.169.208.144 2 u 32 64 7 39.673 4.684 4.916 +23.152.160.126 84.168.88.243 2 u 28 64 7 21.553 3.245 8.612 #ntp.backplanedn 152.2.133.52 2 u 30 64 7 93.009 9.337 10.030 chilipepper.can 193.79.237.14 2 u 32 64 7 165.084 5.872 3.797 +198.255.68.106 192.168.1.193 2 u 26 64 7 30.911 3.034 8.201 golem.canonical 17.253.34.251 2 u 28 64 7 156.657 3.767 5.448 #vps.jan-jaap.ne 132.163.96.1 2 u 23 64 7 184.394 -7.118 4.585 +vf2.bbnx.net 252.74.143.178 2 u 28 64 7 97.275 0.824 18.080 pugot.canonical 17.253.34.253 2 u 29 64 7 157.069 3.709 8.753 jc-1.17.3/tests/fixtures/ubuntu-18.04/ntpq-pn.json000066400000000000000000000063621415226333200215040ustar00rootroot00000000000000[{"state": null, "remote": "0.ubuntu.pool.n", "refid": ".POOL.", "st": 16, "t": "p", "when": null, "poll": 64, "reach": 0, "delay": 0.0, "offset": 0.0, "jitter": 0.0}, {"state": null, "remote": "1.ubuntu.pool.n", "refid": ".POOL.", "st": 16, "t": "p", "when": null, "poll": 64, "reach": 0, "delay": 0.0, "offset": 0.0, "jitter": 0.0}, {"state": null, "remote": "2.ubuntu.pool.n", "refid": ".POOL.", "st": 16, "t": "p", "when": null, "poll": 64, "reach": 0, "delay": 0.0, "offset": 0.0, "jitter": 0.0}, {"state": null, "remote": "3.ubuntu.pool.n", "refid": ".POOL.", "st": 16, "t": "p", "when": null, "poll": 64, "reach": 0, "delay": 0.0, "offset": 0.0, "jitter": 0.0}, {"state": null, "remote": "ntp.ubuntu.com", "refid": ".POOL.", "st": 16, "t": "p", "when": null, "poll": 64, "reach": 0, "delay": 0.0, "offset": 0.0, "jitter": 0.0}, {"state": "+", "remote": "216.126.233.109", "refid": "128.227.205.3", "st": 2, "t": "u", "when": 40, "poll": 64, "reach": 1, "delay": 95.876, "offset": -65.426, "jitter": 4.502}, {"state": "+", "remote": "162.159.200.123", "refid": "10.4.0.197", "st": 3, "t": "u", "when": 39, "poll": 64, "reach": 1, "delay": 25.239, "offset": -69.809, "jitter": 3.313}, {"state": "+", "remote": "47.190.36.235", "refid": "139.78.97.128", "st": 2, "t": "u", "when": 41, "poll": 64, "reach": 1, "delay": 60.008, "offset": -70.991, "jitter": 2.884}, {"state": "*", "remote": "209.51.161.238", "refid": ".CDMA.", "st": 1, "t": "u", "when": 37, "poll": 64, "reach": 1, "delay": 90.113, "offset": -65.938, "jitter": 4.621}, {"state": "-", "remote": "23.31.21.164", "refid": "252.74.143.178", "st": 2, "t": "u", "when": 40, "poll": 64, "reach": 1, "delay": 209.667, "offset": -81.337, "jitter": 5.547}, {"state": "+", "remote": "72.30.35.88", "refid": "98.139.133.62", "st": 3, "t": "u", "when": 40, "poll": 64, "reach": 1, "delay": 104.541, "offset": -67.956, "jitter": 5.731}, {"state": null, "remote": "91.189.94.4", "refid": "17.253.34.125", "st": 2, "t": "u", "when": 48, "poll": 64, "reach": 1, "delay": 176.609, "offset": -65.874, "jitter": 0.0}, {"state": "-", "remote": "50.205.244.110", "refid": "50.205.244.27", "st": 2, "t": "u", "when": 35, "poll": 64, "reach": 1, "delay": 76.322, "offset": -65.135, "jitter": 2.334}, {"state": "+", "remote": "199.223.248.99", "refid": "146.186.222.14", "st": 2, "t": "u", "when": 36, "poll": 64, "reach": 1, "delay": 110.723, "offset": -65.056, "jitter": 6.198}, {"state": null, "remote": "91.189.89.199", "refid": "17.253.34.123", "st": 2, "t": "u", "when": 45, "poll": 64, "reach": 1, "delay": 186.589, "offset": -61.769, "jitter": 0.0}, {"state": "-", "remote": "103.105.51.156", "refid": "206.55.191.142", "st": 2, "t": "u", "when": 34, "poll": 64, "reach": 1, "delay": 38.164, "offset": -65.286, "jitter": 6.412}, {"state": null, "remote": "91.189.91.157", "refid": "17.253.108.125", "st": 2, "t": "u", "when": 48, "poll": 64, "reach": 1, "delay": 105.626, "offset": -63.73, "jitter": 0.0}, {"state": "-", "remote": "23.31.21.163", "refid": "253.109.221.150", "st": 2, "t": "u", "when": 35, "poll": 64, "reach": 1, "delay": 101.941, "offset": -73.597, "jitter": 3.39}, {"state": null, "remote": "91.189.89.198", "refid": "145.238.203.14", "st": 2, "t": "u", "when": 44, "poll": 64, "reach": 1, "delay": 188.989, "offset": -59.352, "jitter": 0.0}] jc-1.17.3/tests/fixtures/ubuntu-18.04/ntpq-pn.out000066400000000000000000000031731415226333200213370ustar00rootroot00000000000000 remote refid st t when poll reach delay offset jitter ============================================================================== 0.ubuntu.pool.n .POOL. 16 p - 64 0 0.000 0.000 0.000 1.ubuntu.pool.n .POOL. 16 p - 64 0 0.000 0.000 0.000 2.ubuntu.pool.n .POOL. 16 p - 64 0 0.000 0.000 0.000 3.ubuntu.pool.n .POOL. 16 p - 64 0 0.000 0.000 0.000 ntp.ubuntu.com .POOL. 16 p - 64 0 0.000 0.000 0.000 +216.126.233.109 128.227.205.3 2 u 40 64 1 95.876 -65.426 4.502 +162.159.200.123 10.4.0.197 3 u 39 64 1 25.239 -69.809 3.313 +47.190.36.235 139.78.97.128 2 u 41 64 1 60.008 -70.991 2.884 *209.51.161.238 .CDMA. 1 u 37 64 1 90.113 -65.938 4.621 -23.31.21.164 252.74.143.178 2 u 40 64 1 209.667 -81.337 5.547 +72.30.35.88 98.139.133.62 3 u 40 64 1 104.541 -67.956 5.731 91.189.94.4 17.253.34.125 2 u 48 64 1 176.609 -65.874 0.000 -50.205.244.110 50.205.244.27 2 u 35 64 1 76.322 -65.135 2.334 +199.223.248.99 146.186.222.14 2 u 36 64 1 110.723 -65.056 6.198 91.189.89.199 17.253.34.123 2 u 45 64 1 186.589 -61.769 0.000 -103.105.51.156 206.55.191.142 2 u 34 64 1 38.164 -65.286 6.412 91.189.91.157 17.253.108.125 2 u 48 64 1 105.626 -63.730 0.000 -23.31.21.163 253.109.221.150 2 u 35 64 1 101.941 -73.597 3.390 91.189.89.198 145.238.203.14 2 u 44 64 1 188.989 -59.352 0.000 jc-1.17.3/tests/fixtures/ubuntu-18.04/ntqp-p.out000066400000000000000000000031731415226333200211610ustar00rootroot00000000000000 remote refid st t when poll reach delay offset jitter ============================================================================== 0.ubuntu.pool.n .POOL. 16 p - 64 0 0.000 0.000 0.000 1.ubuntu.pool.n .POOL. 16 p - 64 0 0.000 0.000 0.000 2.ubuntu.pool.n .POOL. 16 p - 64 0 0.000 0.000 0.000 3.ubuntu.pool.n .POOL. 16 p - 64 0 0.000 0.000 0.000 ntp.ubuntu.com .POOL. 16 p - 64 0 0.000 0.000 0.000 +216.126.233.109 128.227.205.3 2 u 24 64 1 95.876 -65.426 4.502 +time.cloudflare 10.4.0.197 3 u 33 64 1 25.239 -69.809 3.313 +titan.crash-ove 139.78.97.128 2 u 35 64 1 60.008 -70.991 2.884 *clock.nyc.he.ne .CDMA. 1 u 31 64 1 90.113 -65.938 4.621 -vf2.bbnx.net 252.74.143.178 2 u 34 64 1 209.667 -81.337 5.547 +t2.time.bf1.yah 98.139.133.62 3 u 35 64 1 104.541 -67.956 5.731 pugot.canonical 17.253.34.125 2 u 43 64 1 176.609 -65.874 0.000 -50-205-244-110- 50.205.244.27 2 u 30 64 1 76.322 -65.135 2.334 +1.time.dbsinet. 146.186.222.14 2 u 31 64 1 110.723 -65.056 6.198 golem.canonical 17.253.34.123 2 u 40 64 1 186.589 -61.769 0.000 -103.105.51.156 206.55.191.142 2 u 30 64 1 38.164 -65.286 6.412 alphyn.canonica 17.253.108.125 2 u 44 64 1 105.626 -63.730 0.000 -vf1.bbnx.net 253.109.221.150 2 u 31 64 1 101.941 -73.597 3.390 chilipepper.can 145.238.203.14 2 u 40 64 1 188.989 -59.352 0.000 jc-1.17.3/tests/fixtures/ubuntu-18.04/passwd.json000066400000000000000000000100241415226333200213760ustar00rootroot00000000000000[{"username": "root", "password": "x", "uid": 0, "gid": 0, "comment": "root", "home": "/root", "shell": "/bin/bash"}, {"username": "daemon", "password": "x", "uid": 1, "gid": 1, "comment": "daemon", "home": "/usr/sbin", "shell": "/usr/sbin/nologin"}, {"username": "bin", "password": "x", "uid": 2, "gid": 2, "comment": "bin", "home": "/bin", "shell": "/usr/sbin/nologin"}, {"username": "sys", "password": "x", "uid": 3, "gid": 3, "comment": "sys", "home": "/dev", "shell": "/usr/sbin/nologin"}, {"username": "sync", "password": "x", "uid": 4, "gid": 65534, "comment": "sync", "home": "/bin", "shell": "/bin/sync"}, {"username": "games", "password": "x", "uid": 5, "gid": 60, "comment": "games", "home": "/usr/games", "shell": "/usr/sbin/nologin"}, {"username": "man", "password": "x", "uid": 6, "gid": 12, "comment": "man", "home": "/var/cache/man", "shell": "/usr/sbin/nologin"}, {"username": "lp", "password": "x", "uid": 7, "gid": 7, "comment": "lp", "home": "/var/spool/lpd", "shell": "/usr/sbin/nologin"}, {"username": "mail", "password": "x", "uid": 8, "gid": 8, "comment": "mail", "home": "/var/mail", "shell": "/usr/sbin/nologin"}, {"username": "news", "password": "x", "uid": 9, "gid": 9, "comment": "news", "home": "/var/spool/news", "shell": "/usr/sbin/nologin"}, {"username": "uucp", "password": "x", "uid": 10, "gid": 10, "comment": "uucp", "home": "/var/spool/uucp", "shell": "/usr/sbin/nologin"}, {"username": "proxy", "password": "x", "uid": 13, "gid": 13, "comment": "proxy", "home": "/bin", "shell": "/usr/sbin/nologin"}, {"username": "www-data", "password": "x", "uid": 33, "gid": 33, "comment": "www-data", "home": "/var/www", "shell": "/usr/sbin/nologin"}, {"username": "backup", "password": "x", "uid": 34, "gid": 34, "comment": "backup", "home": "/var/backups", "shell": "/usr/sbin/nologin"}, {"username": "list", "password": "x", "uid": 38, "gid": 38, "comment": "Mailing List Manager", "home": "/var/list", "shell": "/usr/sbin/nologin"}, {"username": "irc", "password": "x", "uid": 39, "gid": 39, "comment": "ircd", "home": "/var/run/ircd", "shell": "/usr/sbin/nologin"}, {"username": "gnats", "password": "x", "uid": 41, "gid": 41, "comment": "Gnats Bug-Reporting System (admin)", "home": "/var/lib/gnats", "shell": "/usr/sbin/nologin"}, {"username": "nobody", "password": "x", "uid": 65534, "gid": 65534, "comment": "nobody", "home": "/nonexistent", "shell": "/usr/sbin/nologin"}, {"username": "systemd-network", "password": "x", "uid": 100, "gid": 102, "comment": "systemd Network Management,,,", "home": "/run/systemd/netif", "shell": "/usr/sbin/nologin"}, {"username": "systemd-resolve", "password": "x", "uid": 101, "gid": 103, "comment": "systemd Resolver,,,", "home": "/run/systemd/resolve", "shell": "/usr/sbin/nologin"}, {"username": "syslog", "password": "x", "uid": 102, "gid": 106, "comment": "", "home": "/home/syslog", "shell": "/usr/sbin/nologin"}, {"username": "messagebus", "password": "x", "uid": 103, "gid": 107, "comment": "", "home": "/nonexistent", "shell": "/usr/sbin/nologin"}, {"username": "_apt", "password": "x", "uid": 104, "gid": 65534, "comment": "", "home": "/nonexistent", "shell": "/usr/sbin/nologin"}, {"username": "lxd", "password": "x", "uid": 105, "gid": 65534, "comment": "", "home": "/var/lib/lxd/", "shell": "/bin/false"}, {"username": "uuidd", "password": "x", "uid": 106, "gid": 110, "comment": "", "home": "/run/uuidd", "shell": "/usr/sbin/nologin"}, {"username": "dnsmasq", "password": "x", "uid": 107, "gid": 65534, "comment": "dnsmasq,,,", "home": "/var/lib/misc", "shell": "/usr/sbin/nologin"}, {"username": "landscape", "password": "x", "uid": 108, "gid": 112, "comment": "", "home": "/var/lib/landscape", "shell": "/usr/sbin/nologin"}, {"username": "pollinate", "password": "x", "uid": 109, "gid": 1, "comment": "", "home": "/var/cache/pollinate", "shell": "/bin/false"}, {"username": "sshd", "password": "x", "uid": 110, "gid": 65534, "comment": "", "home": "/run/sshd", "shell": "/usr/sbin/nologin"}, {"username": "joeuser", "password": "x", "uid": 1000, "gid": 1000, "comment": "Joe User", "home": "/home/joeuser", "shell": "/bin/bash"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/passwd.out000066400000000000000000000030351415226333200212400ustar00rootroot00000000000000root:x:0:0:root:/root:/bin/bash daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin bin:x:2:2:bin:/bin:/usr/sbin/nologin sys:x:3:3:sys:/dev:/usr/sbin/nologin sync:x:4:65534:sync:/bin:/bin/sync games:x:5:60:games:/usr/games:/usr/sbin/nologin man:x:6:12:man:/var/cache/man:/usr/sbin/nologin lp:x:7:7:lp:/var/spool/lpd:/usr/sbin/nologin mail:x:8:8:mail:/var/mail:/usr/sbin/nologin news:x:9:9:news:/var/spool/news:/usr/sbin/nologin uucp:x:10:10:uucp:/var/spool/uucp:/usr/sbin/nologin proxy:x:13:13:proxy:/bin:/usr/sbin/nologin www-data:x:33:33:www-data:/var/www:/usr/sbin/nologin backup:x:34:34:backup:/var/backups:/usr/sbin/nologin list:x:38:38:Mailing List Manager:/var/list:/usr/sbin/nologin irc:x:39:39:ircd:/var/run/ircd:/usr/sbin/nologin gnats:x:41:41:Gnats Bug-Reporting System (admin):/var/lib/gnats:/usr/sbin/nologin nobody:x:65534:65534:nobody:/nonexistent:/usr/sbin/nologin systemd-network:x:100:102:systemd Network Management,,,:/run/systemd/netif:/usr/sbin/nologin systemd-resolve:x:101:103:systemd Resolver,,,:/run/systemd/resolve:/usr/sbin/nologin syslog:x:102:106::/home/syslog:/usr/sbin/nologin messagebus:x:103:107::/nonexistent:/usr/sbin/nologin _apt:x:104:65534::/nonexistent:/usr/sbin/nologin lxd:x:105:65534::/var/lib/lxd/:/bin/false uuidd:x:106:110::/run/uuidd:/usr/sbin/nologin dnsmasq:x:107:65534:dnsmasq,,,:/var/lib/misc:/usr/sbin/nologin landscape:x:108:112::/var/lib/landscape:/usr/sbin/nologin pollinate:x:109:1::/var/cache/pollinate:/bin/false sshd:x:110:65534::/run/sshd:/usr/sbin/nologin joeuser:x:1000:1000:Joe User:/home/joeuser:/bin/bash jc-1.17.3/tests/fixtures/ubuntu-18.04/ping-hostname-O-D-p-s-streaming.json000066400000000000000000000113431415226333200257140ustar00rootroot00000000000000[{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595103464.996693,"response_bytes":1408,"response_ip":"151.101.189.67","icmp_seq":1,"ttl":59,"time_ms":26.7,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595103466.001289,"response_bytes":1408,"response_ip":"151.101.189.67","icmp_seq":2,"ttl":59,"time_ms":28.5,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595103467.004316,"response_bytes":1408,"response_ip":"151.101.189.67","icmp_seq":3,"ttl":59,"time_ms":28.8,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595103468.009966,"response_bytes":1408,"response_ip":"151.101.189.67","icmp_seq":4,"ttl":59,"time_ms":33.2,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595103469.013655,"response_bytes":1408,"response_ip":"151.101.189.67","icmp_seq":5,"ttl":59,"time_ms":34.4,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595103470.014253,"response_bytes":1408,"response_ip":"151.101.189.67","icmp_seq":6,"ttl":59,"time_ms":34.2,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595103471.02653,"response_bytes":1408,"response_ip":"151.101.189.67","icmp_seq":7,"ttl":59,"time_ms":44.1,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595103472.019493,"response_bytes":1408,"response_ip":"151.101.189.67","icmp_seq":8,"ttl":59,"time_ms":34.9,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595103473.021432,"response_bytes":1408,"response_ip":"151.101.189.67","icmp_seq":9,"ttl":59,"time_ms":35.6,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595103474.015603,"response_bytes":1408,"response_ip":"151.101.189.67","icmp_seq":10,"ttl":59,"time_ms":27.4,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595103475.02676,"response_bytes":1408,"response_ip":"151.101.189.67","icmp_seq":11,"ttl":59,"time_ms":36.9,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595103476.02693,"response_bytes":1408,"response_ip":"151.101.189.67","icmp_seq":12,"ttl":59,"time_ms":35.7,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595103477.031093,"response_bytes":1408,"response_ip":"151.101.189.67","icmp_seq":13,"ttl":59,"time_ms":36.8,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595103478.028918,"response_bytes":1408,"response_ip":"151.101.189.67","icmp_seq":14,"ttl":59,"time_ms":33.1,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595103479.032238,"response_bytes":1408,"response_ip":"151.101.189.67","icmp_seq":15,"ttl":59,"time_ms":35.6,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595103480.032097,"response_bytes":1408,"response_ip":"151.101.189.67","icmp_seq":16,"ttl":59,"time_ms":33.3,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595103481.034546,"response_bytes":1408,"response_ip":"151.101.189.67","icmp_seq":17,"ttl":59,"time_ms":34.8,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595103482.037939,"response_bytes":1408,"response_ip":"151.101.189.67","icmp_seq":18,"ttl":59,"time_ms":35.7,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595103483.041514,"response_bytes":1408,"response_ip":"151.101.189.67","icmp_seq":19,"ttl":59,"time_ms":35.8,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595103484.03911,"response_bytes":1408,"response_ip":"151.101.189.67","icmp_seq":20,"ttl":59,"time_ms":29.3,"duplicate":false},{"type":"summary","destination_ip":"151.101.189.67","sent_bytes":1400,"pattern":"0xabcd","packets_transmitted":20,"packets_received":20,"packet_loss_percent":0.0,"duplicates":0,"time_ms":19040.0,"round_trip_ms_min":26.767,"round_trip_ms_avg":33.782,"round_trip_ms_max":44.159,"round_trip_ms_stddev":3.954}] jc-1.17.3/tests/fixtures/ubuntu-18.04/ping-hostname-O-D-p-s.json000066400000000000000000000070421415226333200237260ustar00rootroot00000000000000{"destination_ip": "151.101.189.67", "data_bytes": 1400, "pattern": "0xabcd", "destination": "turner-tls.map.fastly.net", "packets_transmitted": 20, "packets_received": 20, "packet_loss_percent": 0.0, "duplicates": 0, "time_ms": 19040.0, "round_trip_ms_min": 26.767, "round_trip_ms_avg": 33.782, "round_trip_ms_max": 44.159, "round_trip_ms_stddev": 3.954, "responses": [{"type": "reply", "timestamp": 1595103464.996693, "bytes": 1408, "response_ip": "151.101.189.67", "icmp_seq": 1, "ttl": 59, "time_ms": 26.7, "duplicate": false}, {"type": "reply", "timestamp": 1595103466.001289, "bytes": 1408, "response_ip": "151.101.189.67", "icmp_seq": 2, "ttl": 59, "time_ms": 28.5, "duplicate": false}, {"type": "reply", "timestamp": 1595103467.004316, "bytes": 1408, "response_ip": "151.101.189.67", "icmp_seq": 3, "ttl": 59, "time_ms": 28.8, "duplicate": false}, {"type": "reply", "timestamp": 1595103468.009966, "bytes": 1408, "response_ip": "151.101.189.67", "icmp_seq": 4, "ttl": 59, "time_ms": 33.2, "duplicate": false}, {"type": "reply", "timestamp": 1595103469.013655, "bytes": 1408, "response_ip": "151.101.189.67", "icmp_seq": 5, "ttl": 59, "time_ms": 34.4, "duplicate": false}, {"type": "reply", "timestamp": 1595103470.014253, "bytes": 1408, "response_ip": "151.101.189.67", "icmp_seq": 6, "ttl": 59, "time_ms": 34.2, "duplicate": false}, {"type": "reply", "timestamp": 1595103471.02653, "bytes": 1408, "response_ip": "151.101.189.67", "icmp_seq": 7, "ttl": 59, "time_ms": 44.1, "duplicate": false}, {"type": "reply", "timestamp": 1595103472.019493, "bytes": 1408, "response_ip": "151.101.189.67", "icmp_seq": 8, "ttl": 59, "time_ms": 34.9, "duplicate": false}, {"type": "reply", "timestamp": 1595103473.021432, "bytes": 1408, "response_ip": "151.101.189.67", "icmp_seq": 9, "ttl": 59, "time_ms": 35.6, "duplicate": false}, {"type": "reply", "timestamp": 1595103474.015603, "bytes": 1408, "response_ip": "151.101.189.67", "icmp_seq": 10, "ttl": 59, "time_ms": 27.4, "duplicate": false}, {"type": "reply", "timestamp": 1595103475.02676, "bytes": 1408, "response_ip": "151.101.189.67", "icmp_seq": 11, "ttl": 59, "time_ms": 36.9, "duplicate": false}, {"type": "reply", "timestamp": 1595103476.02693, "bytes": 1408, "response_ip": "151.101.189.67", "icmp_seq": 12, "ttl": 59, "time_ms": 35.7, "duplicate": false}, {"type": "reply", "timestamp": 1595103477.031093, "bytes": 1408, "response_ip": "151.101.189.67", "icmp_seq": 13, "ttl": 59, "time_ms": 36.8, "duplicate": false}, {"type": "reply", "timestamp": 1595103478.028918, "bytes": 1408, "response_ip": "151.101.189.67", "icmp_seq": 14, "ttl": 59, "time_ms": 33.1, "duplicate": false}, {"type": "reply", "timestamp": 1595103479.032238, "bytes": 1408, "response_ip": "151.101.189.67", "icmp_seq": 15, "ttl": 59, "time_ms": 35.6, "duplicate": false}, {"type": "reply", "timestamp": 1595103480.032097, "bytes": 1408, "response_ip": "151.101.189.67", "icmp_seq": 16, "ttl": 59, "time_ms": 33.3, "duplicate": false}, {"type": "reply", "timestamp": 1595103481.034546, "bytes": 1408, "response_ip": "151.101.189.67", "icmp_seq": 17, "ttl": 59, "time_ms": 34.8, "duplicate": false}, {"type": "reply", "timestamp": 1595103482.037939, "bytes": 1408, "response_ip": "151.101.189.67", "icmp_seq": 18, "ttl": 59, "time_ms": 35.7, "duplicate": false}, {"type": "reply", "timestamp": 1595103483.041514, "bytes": 1408, "response_ip": "151.101.189.67", "icmp_seq": 19, "ttl": 59, "time_ms": 35.8, "duplicate": false}, {"type": "reply", "timestamp": 1595103484.03911, "bytes": 1408, "response_ip": "151.101.189.67", "icmp_seq": 20, "ttl": 59, "time_ms": 29.3, "duplicate": false}]} jc-1.17.3/tests/fixtures/ubuntu-18.04/ping-hostname-O-D-p-s.out000066400000000000000000000043371415226333200235700ustar00rootroot00000000000000PATTERN: 0xabcd PING turner-tls.map.fastly.net (151.101.189.67) 1400(1428) bytes of data. [1595103464.996693] 1408 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=1 ttl=59 time=26.7 ms [1595103466.001289] 1408 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=2 ttl=59 time=28.5 ms [1595103467.004316] 1408 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=3 ttl=59 time=28.8 ms [1595103468.009966] 1408 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=4 ttl=59 time=33.2 ms [1595103469.013655] 1408 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=5 ttl=59 time=34.4 ms [1595103470.014253] 1408 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=6 ttl=59 time=34.2 ms [1595103471.026530] 1408 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=7 ttl=59 time=44.1 ms [1595103472.019493] 1408 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=8 ttl=59 time=34.9 ms [1595103473.021432] 1408 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=9 ttl=59 time=35.6 ms [1595103474.015603] 1408 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=10 ttl=59 time=27.4 ms [1595103475.026760] 1408 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=11 ttl=59 time=36.9 ms [1595103476.026930] 1408 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=12 ttl=59 time=35.7 ms [1595103477.031093] 1408 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=13 ttl=59 time=36.8 ms [1595103478.028918] 1408 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=14 ttl=59 time=33.1 ms [1595103479.032238] 1408 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=15 ttl=59 time=35.6 ms [1595103480.032097] 1408 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=16 ttl=59 time=33.3 ms [1595103481.034546] 1408 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=17 ttl=59 time=34.8 ms [1595103482.037939] 1408 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=18 ttl=59 time=35.7 ms [1595103483.041514] 1408 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=19 ttl=59 time=35.8 ms [1595103484.039110] 1408 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=20 ttl=59 time=29.3 ms --- turner-tls.map.fastly.net ping statistics --- 20 packets transmitted, 20 received, 0% packet loss, time 19040ms rtt min/avg/max/mdev = 26.767/33.782/44.159/3.954 ms jc-1.17.3/tests/fixtures/ubuntu-18.04/ping-hostname-O-p-streaming.json000066400000000000000000000106241415226333200252740ustar00rootroot00000000000000[{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":1,"ttl":59,"time_ms":26.6,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":2,"ttl":59,"time_ms":26.8,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":3,"ttl":59,"time_ms":34.8,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":4,"ttl":59,"time_ms":34.2,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":5,"ttl":59,"time_ms":32.6,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":6,"ttl":59,"time_ms":25.6,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":7,"ttl":59,"time_ms":33.1,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":8,"ttl":59,"time_ms":34.8,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":9,"ttl":59,"time_ms":27.1,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":10,"ttl":59,"time_ms":32.9,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":11,"ttl":59,"time_ms":32.6,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":12,"ttl":59,"time_ms":32.0,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":13,"ttl":59,"time_ms":24.7,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":14,"ttl":59,"time_ms":34.6,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":15,"ttl":59,"time_ms":35.2,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":16,"ttl":59,"time_ms":33.3,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":17,"ttl":59,"time_ms":74.5,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":18,"ttl":59,"time_ms":31.8,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":19,"ttl":59,"time_ms":85.3,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":20,"ttl":59,"time_ms":143.0,"duplicate":false},{"type":"summary","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":"0xabcd","packets_transmitted":20,"packets_received":20,"packet_loss_percent":0.0,"duplicates":0,"time_ms":19052.0,"round_trip_ms_min":24.785,"round_trip_ms_avg":41.856,"round_trip_ms_max":143.789,"round_trip_ms_stddev":27.768}] jc-1.17.3/tests/fixtures/ubuntu-18.04/ping-hostname-O-p.json000066400000000000000000000063731415226333200233130ustar00rootroot00000000000000{"destination_ip": "151.101.189.67", "data_bytes": 56, "pattern": "0xabcd", "destination": "turner-tls.map.fastly.net", "packets_transmitted": 20, "packets_received": 20, "packet_loss_percent": 0.0, "duplicates": 0, "time_ms": 19052.0, "round_trip_ms_min": 24.785, "round_trip_ms_avg": 41.856, "round_trip_ms_max": 143.789, "round_trip_ms_stddev": 27.768, "responses": [{"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 1, "ttl": 59, "time_ms": 26.6, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 2, "ttl": 59, "time_ms": 26.8, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 3, "ttl": 59, "time_ms": 34.8, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 4, "ttl": 59, "time_ms": 34.2, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 5, "ttl": 59, "time_ms": 32.6, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 6, "ttl": 59, "time_ms": 25.6, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 7, "ttl": 59, "time_ms": 33.1, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 8, "ttl": 59, "time_ms": 34.8, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 9, "ttl": 59, "time_ms": 27.1, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 10, "ttl": 59, "time_ms": 32.9, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 11, "ttl": 59, "time_ms": 32.6, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 12, "ttl": 59, "time_ms": 32.0, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 13, "ttl": 59, "time_ms": 24.7, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 14, "ttl": 59, "time_ms": 34.6, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 15, "ttl": 59, "time_ms": 35.2, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 16, "ttl": 59, "time_ms": 33.3, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 17, "ttl": 59, "time_ms": 74.5, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 18, "ttl": 59, "time_ms": 31.8, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 19, "ttl": 59, "time_ms": 85.3, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 20, "ttl": 59, "time_ms": 143.0, "duplicate": false}]} jc-1.17.3/tests/fixtures/ubuntu-18.04/ping-hostname-O-p.out000066400000000000000000000034441415226333200231450ustar00rootroot00000000000000PATTERN: 0xabcd PING turner-tls.map.fastly.net (151.101.189.67) 56(84) bytes of data. 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=1 ttl=59 time=26.6 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=2 ttl=59 time=26.8 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=3 ttl=59 time=34.8 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=4 ttl=59 time=34.2 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=5 ttl=59 time=32.6 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=6 ttl=59 time=25.6 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=7 ttl=59 time=33.1 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=8 ttl=59 time=34.8 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=9 ttl=59 time=27.1 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=10 ttl=59 time=32.9 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=11 ttl=59 time=32.6 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=12 ttl=59 time=32.0 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=13 ttl=59 time=24.7 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=14 ttl=59 time=34.6 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=15 ttl=59 time=35.2 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=16 ttl=59 time=33.3 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=17 ttl=59 time=74.5 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=18 ttl=59 time=31.8 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=19 ttl=59 time=85.3 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=20 ttl=59 time=143 ms --- turner-tls.map.fastly.net ping statistics --- 20 packets transmitted, 20 received, 0% packet loss, time 19052ms rtt min/avg/max/mdev = 24.785/41.856/143.789/27.768 ms jc-1.17.3/tests/fixtures/ubuntu-18.04/ping-hostname-O-streaming.json000066400000000000000000000104721415226333200250400ustar00rootroot00000000000000[{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":1,"ttl":59,"time_ms":26.3,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":2,"ttl":59,"time_ms":24.3,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":3,"ttl":59,"time_ms":32.5,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":4,"ttl":59,"time_ms":33.1,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":5,"ttl":59,"time_ms":32.5,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":6,"ttl":59,"time_ms":26.1,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":7,"ttl":59,"time_ms":34.2,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":8,"ttl":59,"time_ms":24.6,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":9,"ttl":59,"time_ms":34.7,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":10,"ttl":59,"time_ms":33.8,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":11,"ttl":59,"time_ms":33.9,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":12,"ttl":59,"time_ms":28.4,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":13,"ttl":59,"time_ms":33.2,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":14,"ttl":59,"time_ms":26.3,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":15,"ttl":59,"time_ms":27.0,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":16,"ttl":59,"time_ms":33.8,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":17,"ttl":59,"time_ms":35.2,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":18,"ttl":59,"time_ms":26.4,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":19,"ttl":59,"time_ms":34.1,"duplicate":false},{"type":"reply","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"151.101.189.67","icmp_seq":20,"ttl":59,"time_ms":27.1,"duplicate":false},{"type":"summary","destination_ip":"151.101.189.67","sent_bytes":56,"pattern":null,"packets_transmitted":20,"packets_received":20,"packet_loss_percent":0.0,"duplicates":0,"time_ms":19290.0,"round_trip_ms_min":24.33,"round_trip_ms_avg":30.42,"round_trip_ms_max":35.259,"round_trip_ms_stddev":3.84}] jc-1.17.3/tests/fixtures/ubuntu-18.04/ping-hostname-O.json000066400000000000000000000063611415226333200230530ustar00rootroot00000000000000{"destination_ip": "151.101.189.67", "data_bytes": 56, "pattern": null, "destination": "turner-tls.map.fastly.net", "packets_transmitted": 20, "packets_received": 20, "packet_loss_percent": 0.0, "duplicates": 0, "time_ms": 19290.0, "round_trip_ms_min": 24.33, "round_trip_ms_avg": 30.42, "round_trip_ms_max": 35.259, "round_trip_ms_stddev": 3.84, "responses": [{"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 1, "ttl": 59, "time_ms": 26.3, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 2, "ttl": 59, "time_ms": 24.3, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 3, "ttl": 59, "time_ms": 32.5, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 4, "ttl": 59, "time_ms": 33.1, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 5, "ttl": 59, "time_ms": 32.5, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 6, "ttl": 59, "time_ms": 26.1, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 7, "ttl": 59, "time_ms": 34.2, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 8, "ttl": 59, "time_ms": 24.6, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 9, "ttl": 59, "time_ms": 34.7, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 10, "ttl": 59, "time_ms": 33.8, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 11, "ttl": 59, "time_ms": 33.9, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 12, "ttl": 59, "time_ms": 28.4, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 13, "ttl": 59, "time_ms": 33.2, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 14, "ttl": 59, "time_ms": 26.3, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 15, "ttl": 59, "time_ms": 27.0, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 16, "ttl": 59, "time_ms": 33.8, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 17, "ttl": 59, "time_ms": 35.2, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 18, "ttl": 59, "time_ms": 26.4, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 19, "ttl": 59, "time_ms": 34.1, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "151.101.189.67", "icmp_seq": 20, "ttl": 59, "time_ms": 27.1, "duplicate": false}]} jc-1.17.3/tests/fixtures/ubuntu-18.04/ping-hostname-O.out000066400000000000000000000034231415226333200227050ustar00rootroot00000000000000PING turner-tls.map.fastly.net (151.101.189.67) 56(84) bytes of data. 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=1 ttl=59 time=26.3 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=2 ttl=59 time=24.3 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=3 ttl=59 time=32.5 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=4 ttl=59 time=33.1 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=5 ttl=59 time=32.5 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=6 ttl=59 time=26.1 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=7 ttl=59 time=34.2 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=8 ttl=59 time=24.6 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=9 ttl=59 time=34.7 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=10 ttl=59 time=33.8 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=11 ttl=59 time=33.9 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=12 ttl=59 time=28.4 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=13 ttl=59 time=33.2 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=14 ttl=59 time=26.3 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=15 ttl=59 time=27.0 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=16 ttl=59 time=33.8 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=17 ttl=59 time=35.2 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=18 ttl=59 time=26.4 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=19 ttl=59 time=34.1 ms 64 bytes from 151.101.189.67 (151.101.189.67): icmp_seq=20 ttl=59 time=27.1 ms --- turner-tls.map.fastly.net ping statistics --- 20 packets transmitted, 20 received, 0% packet loss, time 19290ms rtt min/avg/max/mdev = 24.330/30.420/35.259/3.840 ms jc-1.17.3/tests/fixtures/ubuntu-18.04/ping-ip-O-D-streaming.json000066400000000000000000000105651415226333200240160ustar00rootroot00000000000000[{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595102903.313934,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":1,"ttl":64,"time_ms":0.017,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595102904.33341,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":2,"ttl":64,"time_ms":0.033,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595102905.35791,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":3,"ttl":64,"time_ms":0.041,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595102906.3814,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":4,"ttl":64,"time_ms":0.039,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595102907.406752,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":5,"ttl":64,"time_ms":0.05,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595102908.430739,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":6,"ttl":64,"time_ms":0.05,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595102909.454753,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":7,"ttl":64,"time_ms":0.051,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595102910.478765,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":8,"ttl":64,"time_ms":0.05,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595102911.50115,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":9,"ttl":64,"time_ms":0.027,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595102912.525888,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":10,"ttl":64,"time_ms":0.051,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595102913.550088,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":11,"ttl":64,"time_ms":0.05,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595102914.574405,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":12,"ttl":64,"time_ms":0.04,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595102915.598696,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":13,"ttl":64,"time_ms":0.05,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595102916.622554,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":14,"ttl":64,"time_ms":0.049,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595102917.646755,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":15,"ttl":64,"time_ms":0.05,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595102918.670765,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":16,"ttl":64,"time_ms":0.051,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595102919.693157,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":17,"ttl":64,"time_ms":0.05,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595102920.717034,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":18,"ttl":64,"time_ms":0.038,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595102921.741629,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":19,"ttl":64,"time_ms":0.05,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":1595102922.766421,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":20,"ttl":64,"time_ms":0.05,"duplicate":false},{"type":"summary","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"packets_transmitted":20,"packets_received":20,"packet_loss_percent":0.0,"duplicates":0,"time_ms":19452.0,"round_trip_ms_min":0.017,"round_trip_ms_avg":0.044,"round_trip_ms_max":0.051,"round_trip_ms_stddev":0.01}] jc-1.17.3/tests/fixtures/ubuntu-18.04/ping-ip-O-D.json000066400000000000000000000066001415226333200220220ustar00rootroot00000000000000{"destination_ip": "127.0.0.1", "data_bytes": 56, "pattern": null, "destination": "127.0.0.1", "packets_transmitted": 20, "packets_received": 20, "packet_loss_percent": 0.0, "duplicates": 0, "time_ms": 19452.0, "round_trip_ms_min": 0.017, "round_trip_ms_avg": 0.044, "round_trip_ms_max": 0.051, "round_trip_ms_stddev": 0.01, "responses": [{"type": "reply", "timestamp": 1595102903.313934, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 1, "ttl": 64, "time_ms": 0.017, "duplicate": false}, {"type": "reply", "timestamp": 1595102904.33341, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 2, "ttl": 64, "time_ms": 0.033, "duplicate": false}, {"type": "reply", "timestamp": 1595102905.35791, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 3, "ttl": 64, "time_ms": 0.041, "duplicate": false}, {"type": "reply", "timestamp": 1595102906.3814, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 4, "ttl": 64, "time_ms": 0.039, "duplicate": false}, {"type": "reply", "timestamp": 1595102907.406752, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 5, "ttl": 64, "time_ms": 0.05, "duplicate": false}, {"type": "reply", "timestamp": 1595102908.430739, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 6, "ttl": 64, "time_ms": 0.05, "duplicate": false}, {"type": "reply", "timestamp": 1595102909.454753, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 7, "ttl": 64, "time_ms": 0.051, "duplicate": false}, {"type": "reply", "timestamp": 1595102910.478765, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 8, "ttl": 64, "time_ms": 0.05, "duplicate": false}, {"type": "reply", "timestamp": 1595102911.50115, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 9, "ttl": 64, "time_ms": 0.027, "duplicate": false}, {"type": "reply", "timestamp": 1595102912.525888, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 10, "ttl": 64, "time_ms": 0.051, "duplicate": false}, {"type": "reply", "timestamp": 1595102913.550088, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 11, "ttl": 64, "time_ms": 0.05, "duplicate": false}, {"type": "reply", "timestamp": 1595102914.574405, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 12, "ttl": 64, "time_ms": 0.04, "duplicate": false}, {"type": "reply", "timestamp": 1595102915.598696, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 13, "ttl": 64, "time_ms": 0.05, "duplicate": false}, {"type": "reply", "timestamp": 1595102916.622554, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 14, "ttl": 64, "time_ms": 0.049, "duplicate": false}, {"type": "reply", "timestamp": 1595102917.646755, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 15, "ttl": 64, "time_ms": 0.05, "duplicate": false}, {"type": "reply", "timestamp": 1595102918.670765, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 16, "ttl": 64, "time_ms": 0.051, "duplicate": false}, {"type": "reply", "timestamp": 1595102919.693157, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 17, "ttl": 64, "time_ms": 0.05, "duplicate": false}, {"type": "reply", "timestamp": 1595102920.717034, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 18, "ttl": 64, "time_ms": 0.038, "duplicate": false}, {"type": "reply", "timestamp": 1595102921.741629, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 19, "ttl": 64, "time_ms": 0.05, "duplicate": false}, {"type": "reply", "timestamp": 1595102922.766421, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 20, "ttl": 64, "time_ms": 0.05, "duplicate": false}]} jc-1.17.3/tests/fixtures/ubuntu-18.04/ping-ip-O-D.out000066400000000000000000000033271415226333200216630ustar00rootroot00000000000000PING 127.0.0.1 (127.0.0.1) 56(84) bytes of data. [1595102903.313934] 64 bytes from 127.0.0.1: icmp_seq=1 ttl=64 time=0.017 ms [1595102904.333410] 64 bytes from 127.0.0.1: icmp_seq=2 ttl=64 time=0.033 ms [1595102905.357910] 64 bytes from 127.0.0.1: icmp_seq=3 ttl=64 time=0.041 ms [1595102906.381400] 64 bytes from 127.0.0.1: icmp_seq=4 ttl=64 time=0.039 ms [1595102907.406752] 64 bytes from 127.0.0.1: icmp_seq=5 ttl=64 time=0.050 ms [1595102908.430739] 64 bytes from 127.0.0.1: icmp_seq=6 ttl=64 time=0.050 ms [1595102909.454753] 64 bytes from 127.0.0.1: icmp_seq=7 ttl=64 time=0.051 ms [1595102910.478765] 64 bytes from 127.0.0.1: icmp_seq=8 ttl=64 time=0.050 ms [1595102911.501150] 64 bytes from 127.0.0.1: icmp_seq=9 ttl=64 time=0.027 ms [1595102912.525888] 64 bytes from 127.0.0.1: icmp_seq=10 ttl=64 time=0.051 ms [1595102913.550088] 64 bytes from 127.0.0.1: icmp_seq=11 ttl=64 time=0.050 ms [1595102914.574405] 64 bytes from 127.0.0.1: icmp_seq=12 ttl=64 time=0.040 ms [1595102915.598696] 64 bytes from 127.0.0.1: icmp_seq=13 ttl=64 time=0.050 ms [1595102916.622554] 64 bytes from 127.0.0.1: icmp_seq=14 ttl=64 time=0.049 ms [1595102917.646755] 64 bytes from 127.0.0.1: icmp_seq=15 ttl=64 time=0.050 ms [1595102918.670765] 64 bytes from 127.0.0.1: icmp_seq=16 ttl=64 time=0.051 ms [1595102919.693157] 64 bytes from 127.0.0.1: icmp_seq=17 ttl=64 time=0.050 ms [1595102920.717034] 64 bytes from 127.0.0.1: icmp_seq=18 ttl=64 time=0.038 ms [1595102921.741629] 64 bytes from 127.0.0.1: icmp_seq=19 ttl=64 time=0.050 ms [1595102922.766421] 64 bytes from 127.0.0.1: icmp_seq=20 ttl=64 time=0.050 ms --- 127.0.0.1 ping statistics --- 20 packets transmitted, 20 received, 0% packet loss, time 19452ms rtt min/avg/max/mdev = 0.017/0.044/0.051/0.010 ms jc-1.17.3/tests/fixtures/ubuntu-18.04/ping-ip-O-streaming.json000066400000000000000000000101701415226333200236250ustar00rootroot00000000000000[{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":1,"ttl":64,"time_ms":0.02,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":2,"ttl":64,"time_ms":0.043,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":3,"ttl":64,"time_ms":0.05,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":4,"ttl":64,"time_ms":0.051,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":5,"ttl":64,"time_ms":0.051,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":6,"ttl":64,"time_ms":0.027,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":7,"ttl":64,"time_ms":0.05,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":8,"ttl":64,"time_ms":0.051,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":9,"ttl":64,"time_ms":0.051,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":10,"ttl":64,"time_ms":0.051,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":11,"ttl":64,"time_ms":0.051,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":12,"ttl":64,"time_ms":0.05,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":13,"ttl":64,"time_ms":0.05,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":14,"ttl":64,"time_ms":0.041,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":15,"ttl":64,"time_ms":0.052,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":16,"ttl":64,"time_ms":0.057,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":17,"ttl":64,"time_ms":0.05,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":18,"ttl":64,"time_ms":0.051,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":19,"ttl":64,"time_ms":0.05,"duplicate":false},{"type":"reply","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"timestamp":null,"response_bytes":64,"response_ip":"127.0.0.1","icmp_seq":20,"ttl":64,"time_ms":0.049,"duplicate":false},{"type":"summary","destination_ip":"127.0.0.1","sent_bytes":56,"pattern":null,"packets_transmitted":20,"packets_received":20,"packet_loss_percent":0.0,"duplicates":0,"time_ms":19434.0,"round_trip_ms_min":0.02,"round_trip_ms_avg":0.047,"round_trip_ms_max":0.057,"round_trip_ms_stddev":0.01}] jc-1.17.3/tests/fixtures/ubuntu-18.04/ping-ip-O.json000066400000000000000000000062031415226333200216400ustar00rootroot00000000000000{"destination_ip": "127.0.0.1", "data_bytes": 56, "pattern": null, "destination": "127.0.0.1", "packets_transmitted": 20, "packets_received": 20, "packet_loss_percent": 0.0, "duplicates": 0, "time_ms": 19434.0, "round_trip_ms_min": 0.02, "round_trip_ms_avg": 0.047, "round_trip_ms_max": 0.057, "round_trip_ms_stddev": 0.01, "responses": [{"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 1, "ttl": 64, "time_ms": 0.02, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 2, "ttl": 64, "time_ms": 0.043, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 3, "ttl": 64, "time_ms": 0.05, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 4, "ttl": 64, "time_ms": 0.051, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 5, "ttl": 64, "time_ms": 0.051, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 6, "ttl": 64, "time_ms": 0.027, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 7, "ttl": 64, "time_ms": 0.05, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 8, "ttl": 64, "time_ms": 0.051, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 9, "ttl": 64, "time_ms": 0.051, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 10, "ttl": 64, "time_ms": 0.051, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 11, "ttl": 64, "time_ms": 0.051, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 12, "ttl": 64, "time_ms": 0.05, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 13, "ttl": 64, "time_ms": 0.05, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 14, "ttl": 64, "time_ms": 0.041, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 15, "ttl": 64, "time_ms": 0.052, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 16, "ttl": 64, "time_ms": 0.057, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 17, "ttl": 64, "time_ms": 0.05, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 18, "ttl": 64, "time_ms": 0.051, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 19, "ttl": 64, "time_ms": 0.05, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "127.0.0.1", "icmp_seq": 20, "ttl": 64, "time_ms": 0.049, "duplicate": false}]} jc-1.17.3/tests/fixtures/ubuntu-18.04/ping-ip-O.out000066400000000000000000000025071415226333200215010ustar00rootroot00000000000000PING 127.0.0.1 (127.0.0.1) 56(84) bytes of data. 64 bytes from 127.0.0.1: icmp_seq=1 ttl=64 time=0.020 ms 64 bytes from 127.0.0.1: icmp_seq=2 ttl=64 time=0.043 ms 64 bytes from 127.0.0.1: icmp_seq=3 ttl=64 time=0.050 ms 64 bytes from 127.0.0.1: icmp_seq=4 ttl=64 time=0.051 ms 64 bytes from 127.0.0.1: icmp_seq=5 ttl=64 time=0.051 ms 64 bytes from 127.0.0.1: icmp_seq=6 ttl=64 time=0.027 ms 64 bytes from 127.0.0.1: icmp_seq=7 ttl=64 time=0.050 ms 64 bytes from 127.0.0.1: icmp_seq=8 ttl=64 time=0.051 ms 64 bytes from 127.0.0.1: icmp_seq=9 ttl=64 time=0.051 ms 64 bytes from 127.0.0.1: icmp_seq=10 ttl=64 time=0.051 ms 64 bytes from 127.0.0.1: icmp_seq=11 ttl=64 time=0.051 ms 64 bytes from 127.0.0.1: icmp_seq=12 ttl=64 time=0.050 ms 64 bytes from 127.0.0.1: icmp_seq=13 ttl=64 time=0.050 ms 64 bytes from 127.0.0.1: icmp_seq=14 ttl=64 time=0.041 ms 64 bytes from 127.0.0.1: icmp_seq=15 ttl=64 time=0.052 ms 64 bytes from 127.0.0.1: icmp_seq=16 ttl=64 time=0.057 ms 64 bytes from 127.0.0.1: icmp_seq=17 ttl=64 time=0.050 ms 64 bytes from 127.0.0.1: icmp_seq=18 ttl=64 time=0.051 ms 64 bytes from 127.0.0.1: icmp_seq=19 ttl=64 time=0.050 ms 64 bytes from 127.0.0.1: icmp_seq=20 ttl=64 time=0.049 ms --- 127.0.0.1 ping statistics --- 20 packets transmitted, 20 received, 0% packet loss, time 19434ms rtt min/avg/max/mdev = 0.020/0.047/0.057/0.010 ms jc-1.17.3/tests/fixtures/ubuntu-18.04/ping6-hostname-O-D-p-s-streaming.json000066400000000000000000000115431415226333200260040ustar00rootroot00000000000000[{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595102963.207191,"response_bytes":1408,"response_ip":"2a04:4e42:2d::323","icmp_seq":1,"ttl":59,"time_ms":162.0,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595102964.072572,"response_bytes":1408,"response_ip":"2a04:4e42:2d::323","icmp_seq":2,"ttl":59,"time_ms":26.2,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595102965.083093,"response_bytes":1408,"response_ip":"2a04:4e42:2d::323","icmp_seq":3,"ttl":59,"time_ms":34.0,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595102966.086221,"response_bytes":1408,"response_ip":"2a04:4e42:2d::323","icmp_seq":4,"ttl":59,"time_ms":34.6,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595102967.088365,"response_bytes":1408,"response_ip":"2a04:4e42:2d::323","icmp_seq":5,"ttl":59,"time_ms":32.9,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595102968.090956,"response_bytes":1408,"response_ip":"2a04:4e42:2d::323","icmp_seq":6,"ttl":59,"time_ms":33.5,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595102969.088229,"response_bytes":1408,"response_ip":"2a04:4e42:2d::323","icmp_seq":7,"ttl":59,"time_ms":27.6,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595102970.08863,"response_bytes":1408,"response_ip":"2a04:4e42:2d::323","icmp_seq":8,"ttl":59,"time_ms":25.0,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595102971.093828,"response_bytes":1408,"response_ip":"2a04:4e42:2d::323","icmp_seq":9,"ttl":59,"time_ms":27.0,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595102972.104782,"response_bytes":1408,"response_ip":"2a04:4e42:2d::323","icmp_seq":10,"ttl":59,"time_ms":35.3,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595102973.098518,"response_bytes":1408,"response_ip":"2a04:4e42:2d::323","icmp_seq":11,"ttl":59,"time_ms":27.1,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595102974.108744,"response_bytes":1408,"response_ip":"2a04:4e42:2d::323","icmp_seq":12,"ttl":59,"time_ms":36.0,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595102975.104919,"response_bytes":1408,"response_ip":"2a04:4e42:2d::323","icmp_seq":13,"ttl":59,"time_ms":30.4,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595102976.103486,"response_bytes":1408,"response_ip":"2a04:4e42:2d::323","icmp_seq":14,"ttl":59,"time_ms":26.1,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595102977.107027,"response_bytes":1408,"response_ip":"2a04:4e42:2d::323","icmp_seq":15,"ttl":59,"time_ms":27.2,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595102978.111345,"response_bytes":1408,"response_ip":"2a04:4e42:2d::323","icmp_seq":16,"ttl":59,"time_ms":28.3,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595102979.121028,"response_bytes":1408,"response_ip":"2a04:4e42:2d::323","icmp_seq":17,"ttl":59,"time_ms":35.9,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595102980.116465,"response_bytes":1408,"response_ip":"2a04:4e42:2d::323","icmp_seq":18,"ttl":59,"time_ms":28.8,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595102981.126039,"response_bytes":1408,"response_ip":"2a04:4e42:2d::323","icmp_seq":19,"ttl":59,"time_ms":34.7,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":1400,"pattern":"0xabcd","timestamp":1595102982.12868,"response_bytes":1408,"response_ip":"2a04:4e42:2d::323","icmp_seq":20,"ttl":59,"time_ms":34.3,"duplicate":false},{"type":"summary","destination_ip":"2a04:4e42:2d::323","sent_bytes":1400,"pattern":"0xabcd","packets_transmitted":20,"packets_received":20,"packet_loss_percent":0.0,"duplicates":0,"time_ms":19050.0,"round_trip_ms_min":25.086,"round_trip_ms_avg":37.398,"round_trip_ms_max":162.132,"round_trip_ms_stddev":28.854}] jc-1.17.3/tests/fixtures/ubuntu-18.04/ping6-hostname-O-D-p-s.json000066400000000000000000000071301415226333200240120ustar00rootroot00000000000000{"destination_ip": "2a04:4e42:2d::323", "data_bytes": 1400, "pattern": "0xabcd", "destination": "www.cnn.com", "packets_transmitted": 20, "packets_received": 20, "packet_loss_percent": 0.0, "duplicates": 0, "time_ms": 19050.0, "round_trip_ms_min": 25.086, "round_trip_ms_avg": 37.398, "round_trip_ms_max": 162.132, "round_trip_ms_stddev": 28.854, "responses": [{"type": "reply", "timestamp": 1595102963.207191, "bytes": 1408, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 1, "ttl": 59, "time_ms": 162.0, "duplicate": false}, {"type": "reply", "timestamp": 1595102964.072572, "bytes": 1408, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 2, "ttl": 59, "time_ms": 26.2, "duplicate": false}, {"type": "reply", "timestamp": 1595102965.083093, "bytes": 1408, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 3, "ttl": 59, "time_ms": 34.0, "duplicate": false}, {"type": "reply", "timestamp": 1595102966.086221, "bytes": 1408, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 4, "ttl": 59, "time_ms": 34.6, "duplicate": false}, {"type": "reply", "timestamp": 1595102967.088365, "bytes": 1408, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 5, "ttl": 59, "time_ms": 32.9, "duplicate": false}, {"type": "reply", "timestamp": 1595102968.090956, "bytes": 1408, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 6, "ttl": 59, "time_ms": 33.5, "duplicate": false}, {"type": "reply", "timestamp": 1595102969.088229, "bytes": 1408, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 7, "ttl": 59, "time_ms": 27.6, "duplicate": false}, {"type": "reply", "timestamp": 1595102970.08863, "bytes": 1408, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 8, "ttl": 59, "time_ms": 25.0, "duplicate": false}, {"type": "reply", "timestamp": 1595102971.093828, "bytes": 1408, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 9, "ttl": 59, "time_ms": 27.0, "duplicate": false}, {"type": "reply", "timestamp": 1595102972.104782, "bytes": 1408, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 10, "ttl": 59, "time_ms": 35.3, "duplicate": false}, {"type": "reply", "timestamp": 1595102973.098518, "bytes": 1408, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 11, "ttl": 59, "time_ms": 27.1, "duplicate": false}, {"type": "reply", "timestamp": 1595102974.108744, "bytes": 1408, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 12, "ttl": 59, "time_ms": 36.0, "duplicate": false}, {"type": "reply", "timestamp": 1595102975.104919, "bytes": 1408, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 13, "ttl": 59, "time_ms": 30.4, "duplicate": false}, {"type": "reply", "timestamp": 1595102976.103486, "bytes": 1408, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 14, "ttl": 59, "time_ms": 26.1, "duplicate": false}, {"type": "reply", "timestamp": 1595102977.107027, "bytes": 1408, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 15, "ttl": 59, "time_ms": 27.2, "duplicate": false}, {"type": "reply", "timestamp": 1595102978.111345, "bytes": 1408, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 16, "ttl": 59, "time_ms": 28.3, "duplicate": false}, {"type": "reply", "timestamp": 1595102979.121028, "bytes": 1408, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 17, "ttl": 59, "time_ms": 35.9, "duplicate": false}, {"type": "reply", "timestamp": 1595102980.116465, "bytes": 1408, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 18, "ttl": 59, "time_ms": 28.8, "duplicate": false}, {"type": "reply", "timestamp": 1595102981.126039, "bytes": 1408, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 19, "ttl": 59, "time_ms": 34.7, "duplicate": false}, {"type": "reply", "timestamp": 1595102982.12868, "bytes": 1408, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 20, "ttl": 59, "time_ms": 34.3, "duplicate": false}]} jc-1.17.3/tests/fixtures/ubuntu-18.04/ping6-hostname-O-D-p-s.out000066400000000000000000000045101415226333200236470ustar00rootroot00000000000000PATTERN: 0xabcd PING www.cnn.com(2a04:4e42:2d::323 (2a04:4e42:2d::323)) 1400 data bytes [1595102963.207191] 1408 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=1 ttl=59 time=162 ms [1595102964.072572] 1408 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=2 ttl=59 time=26.2 ms [1595102965.083093] 1408 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=3 ttl=59 time=34.0 ms [1595102966.086221] 1408 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=4 ttl=59 time=34.6 ms [1595102967.088365] 1408 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=5 ttl=59 time=32.9 ms [1595102968.090956] 1408 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=6 ttl=59 time=33.5 ms [1595102969.088229] 1408 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=7 ttl=59 time=27.6 ms [1595102970.088630] 1408 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=8 ttl=59 time=25.0 ms [1595102971.093828] 1408 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=9 ttl=59 time=27.0 ms [1595102972.104782] 1408 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=10 ttl=59 time=35.3 ms [1595102973.098518] 1408 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=11 ttl=59 time=27.1 ms [1595102974.108744] 1408 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=12 ttl=59 time=36.0 ms [1595102975.104919] 1408 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=13 ttl=59 time=30.4 ms [1595102976.103486] 1408 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=14 ttl=59 time=26.1 ms [1595102977.107027] 1408 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=15 ttl=59 time=27.2 ms [1595102978.111345] 1408 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=16 ttl=59 time=28.3 ms [1595102979.121028] 1408 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=17 ttl=59 time=35.9 ms [1595102980.116465] 1408 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=18 ttl=59 time=28.8 ms [1595102981.126039] 1408 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=19 ttl=59 time=34.7 ms [1595102982.128680] 1408 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=20 ttl=59 time=34.3 ms --- www.cnn.com ping statistics --- 20 packets transmitted, 20 received, 0% packet loss, time 19050ms rtt min/avg/max/mdev = 25.086/37.398/162.132/28.854 ms jc-1.17.3/tests/fixtures/ubuntu-18.04/ping6-hostname-O-D-p.json000066400000000000000000000065561415226333200235650ustar00rootroot00000000000000{"destination_ip": "2a04:4e42:2d::323", "data_bytes": 56, "pattern": "0xabcd", "destination": "www.cnn.com", "packets_transmitted": 20, "packets_received": 18, "packet_loss_percent": 10.0, "duplicates": 0, "time_ms": 19052.0, "round_trip_ms_min": 24.671, "round_trip_ms_avg": 30.617, "round_trip_ms_max": 33.654, "round_trip_ms_stddev": 3.419, "responses": [{"type": "reply", "timestamp": 1595102982.159725, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 1, "ttl": 59, "time_ms": 26.9, "duplicate": false}, {"type": "reply", "timestamp": 1595102983.167501, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 2, "ttl": 59, "time_ms": 33.0, "duplicate": false}, {"type": "reply", "timestamp": 1595102984.169378, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 3, "ttl": 59, "time_ms": 33.1, "duplicate": false}, {"type": "reply", "timestamp": 1595102985.163818, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 4, "ttl": 59, "time_ms": 25.7, "duplicate": false}, {"type": "reply", "timestamp": 1595102986.167583, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 5, "ttl": 59, "time_ms": 26.5, "duplicate": false}, {"type": "reply", "timestamp": 1595102987.175507, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 6, "ttl": 59, "time_ms": 32.5, "duplicate": false}, {"type": "reply", "timestamp": 1595102988.171549, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 7, "ttl": 59, "time_ms": 25.8, "duplicate": false}, {"type": "reply", "timestamp": 1595102989.181855, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 8, "ttl": 59, "time_ms": 33.6, "duplicate": false}, {"type": "reply", "timestamp": 1595102990.176307, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 9, "ttl": 59, "time_ms": 24.6, "duplicate": false}, {"type": "reply", "timestamp": 1595102991.188111, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 10, "ttl": 59, "time_ms": 33.0, "duplicate": false}, {"type": "timeout", "timestamp": 1595102993.166385, "icmp_seq": 11}, {"type": "reply", "timestamp": 1595102993.198594, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 12, "ttl": 59, "time_ms": 32.0, "duplicate": false}, {"type": "reply", "timestamp": 1595102994.201841, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 13, "ttl": 59, "time_ms": 32.8, "duplicate": false}, {"type": "timeout", "timestamp": 1595102996.17406, "icmp_seq": 14}, {"type": "reply", "timestamp": 1595102996.207576, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 15, "ttl": 59, "time_ms": 33.3, "duplicate": false}, {"type": "reply", "timestamp": 1595102997.211141, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 16, "ttl": 59, "time_ms": 33.6, "duplicate": false}, {"type": "reply", "timestamp": 1595102998.210588, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 17, "ttl": 59, "time_ms": 32.0, "duplicate": false}, {"type": "reply", "timestamp": 1595102999.20548, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 18, "ttl": 59, "time_ms": 25.4, "duplicate": false}, {"type": "reply", "timestamp": 1595103000.216799, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 19, "ttl": 59, "time_ms": 33.5, "duplicate": false}, {"type": "reply", "timestamp": 1595103001.217993, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 20, "ttl": 59, "time_ms": 32.8, "duplicate": false}]} jc-1.17.3/tests/fixtures/ubuntu-18.04/ping6-hostname-O-D-p.out000066400000000000000000000042601415226333200234110ustar00rootroot00000000000000PATTERN: 0xabcd PING www.cnn.com(2a04:4e42:2d::323 (2a04:4e42:2d::323)) 56 data bytes [1595102982.159725] 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=1 ttl=59 time=26.9 ms [1595102983.167501] 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=2 ttl=59 time=33.0 ms [1595102984.169378] 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=3 ttl=59 time=33.1 ms [1595102985.163818] 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=4 ttl=59 time=25.7 ms [1595102986.167583] 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=5 ttl=59 time=26.5 ms [1595102987.175507] 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=6 ttl=59 time=32.5 ms [1595102988.171549] 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=7 ttl=59 time=25.8 ms [1595102989.181855] 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=8 ttl=59 time=33.6 ms [1595102990.176307] 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=9 ttl=59 time=24.6 ms [1595102991.188111] 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=10 ttl=59 time=33.0 ms [1595102993.166385] no answer yet for icmp_seq=11 [1595102993.198594] 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=12 ttl=59 time=32.0 ms [1595102994.201841] 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=13 ttl=59 time=32.8 ms [1595102996.174060] no answer yet for icmp_seq=14 [1595102996.207576] 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=15 ttl=59 time=33.3 ms [1595102997.211141] 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=16 ttl=59 time=33.6 ms [1595102998.210588] 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=17 ttl=59 time=32.0 ms [1595102999.205480] 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=18 ttl=59 time=25.4 ms [1595103000.216799] 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=19 ttl=59 time=33.5 ms [1595103001.217993] 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=20 ttl=59 time=32.8 ms --- www.cnn.com ping statistics --- 20 packets transmitted, 18 received, 10% packet loss, time 19052ms rtt min/avg/max/mdev = 24.671/30.617/33.654/3.419 ms jc-1.17.3/tests/fixtures/ubuntu-18.04/ping6-hostname-O-p-streaming.json000066400000000000000000000105241415226333200253610ustar00rootroot00000000000000[{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:2d::323","icmp_seq":1,"ttl":59,"time_ms":25.4,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:2d::323","icmp_seq":2,"ttl":59,"time_ms":27.6,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:2d::323","icmp_seq":3,"ttl":59,"time_ms":26.5,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:2d::323","icmp_seq":4,"ttl":59,"time_ms":34.4,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:2d::323","icmp_seq":5,"ttl":59,"time_ms":27.5,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:2d::323","icmp_seq":6,"ttl":59,"time_ms":34.5,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:2d::323","icmp_seq":7,"ttl":59,"time_ms":26.6,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:2d::323","icmp_seq":8,"ttl":59,"time_ms":35.3,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:2d::323","icmp_seq":9,"ttl":59,"time_ms":26.8,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:2d::323","icmp_seq":10,"ttl":59,"time_ms":33.1,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:2d::323","icmp_seq":11,"ttl":59,"time_ms":33.5,"duplicate":false},{"type":"timeout","destination_ip":"2a04:4e42:2d::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"icmp_seq":12},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:2d::323","icmp_seq":13,"ttl":59,"time_ms":25.2,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:2d::323","icmp_seq":14,"ttl":59,"time_ms":25.2,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:2d::323","icmp_seq":15,"ttl":59,"time_ms":36.5,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:2d::323","icmp_seq":16,"ttl":59,"time_ms":34.4,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:2d::323","icmp_seq":17,"ttl":59,"time_ms":35.4,"duplicate":false},{"type":"timeout","destination_ip":"2a04:4e42:2d::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"icmp_seq":18},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:2d::323","icmp_seq":19,"ttl":59,"time_ms":151.0,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:2d::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:2d::323","icmp_seq":20,"ttl":59,"time_ms":51.5,"duplicate":false},{"type":"summary","destination_ip":"2a04:4e42:2d::323","sent_bytes":56,"pattern":"0xabcd","packets_transmitted":20,"packets_received":18,"packet_loss_percent":10.0,"duplicates":0,"time_ms":19081.0,"round_trip_ms_min":25.229,"round_trip_ms_avg":38.451,"round_trip_ms_max":151.911,"round_trip_ms_stddev":28.221}] jc-1.17.3/tests/fixtures/ubuntu-18.04/ping6-hostname-O-p.json000066400000000000000000000061571415226333200234010ustar00rootroot00000000000000{"destination_ip": "2a04:4e42:2d::323", "data_bytes": 56, "pattern": "0xabcd", "destination": "www.cnn.com", "packets_transmitted": 20, "packets_received": 18, "packet_loss_percent": 10.0, "duplicates": 0, "time_ms": 19081.0, "round_trip_ms_min": 25.229, "round_trip_ms_avg": 38.451, "round_trip_ms_max": 151.911, "round_trip_ms_stddev": 28.221, "responses": [{"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 1, "ttl": 59, "time_ms": 25.4, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 2, "ttl": 59, "time_ms": 27.6, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 3, "ttl": 59, "time_ms": 26.5, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 4, "ttl": 59, "time_ms": 34.4, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 5, "ttl": 59, "time_ms": 27.5, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 6, "ttl": 59, "time_ms": 34.5, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 7, "ttl": 59, "time_ms": 26.6, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 8, "ttl": 59, "time_ms": 35.3, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 9, "ttl": 59, "time_ms": 26.8, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 10, "ttl": 59, "time_ms": 33.1, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 11, "ttl": 59, "time_ms": 33.5, "duplicate": false}, {"type": "timeout", "timestamp": null, "icmp_seq": 12}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 13, "ttl": 59, "time_ms": 25.2, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 14, "ttl": 59, "time_ms": 25.2, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 15, "ttl": 59, "time_ms": 36.5, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 16, "ttl": 59, "time_ms": 34.4, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 17, "ttl": 59, "time_ms": 35.4, "duplicate": false}, {"type": "timeout", "timestamp": null, "icmp_seq": 18}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 19, "ttl": 59, "time_ms": 151.0, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:2d::323", "icmp_seq": 20, "ttl": 59, "time_ms": 51.5, "duplicate": false}]} jc-1.17.3/tests/fixtures/ubuntu-18.04/ping6-hostname-O-p.out000066400000000000000000000034411415226333200232300ustar00rootroot00000000000000PATTERN: 0xabcd PING www.cnn.com(2a04:4e42:2d::323 (2a04:4e42:2d::323)) 56 data bytes 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=1 ttl=59 time=25.4 ms 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=2 ttl=59 time=27.6 ms 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=3 ttl=59 time=26.5 ms 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=4 ttl=59 time=34.4 ms 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=5 ttl=59 time=27.5 ms 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=6 ttl=59 time=34.5 ms 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=7 ttl=59 time=26.6 ms 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=8 ttl=59 time=35.3 ms 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=9 ttl=59 time=26.8 ms 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=10 ttl=59 time=33.1 ms 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=11 ttl=59 time=33.5 ms no answer yet for icmp_seq=12 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=13 ttl=59 time=25.2 ms 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=14 ttl=59 time=25.2 ms 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=15 ttl=59 time=36.5 ms 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=16 ttl=59 time=34.4 ms 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=17 ttl=59 time=35.4 ms no answer yet for icmp_seq=18 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=19 ttl=59 time=151 ms 64 bytes from 2a04:4e42:2d::323 (2a04:4e42:2d::323): icmp_seq=20 ttl=59 time=51.5 ms --- www.cnn.com ping statistics --- 20 packets transmitted, 18 received, 10% packet loss, time 19081ms rtt min/avg/max/mdev = 25.229/38.451/151.911/28.221 ms jc-1.17.3/tests/fixtures/ubuntu-18.04/ping6-ip-O-D-p-streaming.json000066400000000000000000000105371415226333200243400ustar00rootroot00000000000000[{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1595102942.853155,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":1,"ttl":59,"time_ms":28.4,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1595102943.857295,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":2,"ttl":59,"time_ms":29.4,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1595102944.861751,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":3,"ttl":59,"time_ms":31.2,"duplicate":false},{"type":"timeout","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1595102946.861681,"icmp_seq":4},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1595102946.891881,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":5,"ttl":59,"time_ms":30.0,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1595102947.884818,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":6,"ttl":59,"time_ms":22.0,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1595102948.89152,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":7,"ttl":59,"time_ms":27.2,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1595102949.897424,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":8,"ttl":59,"time_ms":30.5,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1595102950.89982,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":9,"ttl":59,"time_ms":29.0,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1595102951.905148,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":10,"ttl":59,"time_ms":31.3,"duplicate":false},{"type":"timeout","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1595102953.901458,"icmp_seq":11},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1595102953.93159,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":12,"ttl":59,"time_ms":29.9,"duplicate":false},{"type":"timeout","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1595102955.918953,"icmp_seq":13},{"type":"timeout","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1595102956.942898,"icmp_seq":14},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1595102956.973463,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":15,"ttl":59,"time_ms":30.4,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1595102957.966655,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":16,"ttl":59,"time_ms":21.4,"duplicate":false},{"type":"timeout","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1595102959.981759,"icmp_seq":17},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1595102960.035095,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":18,"ttl":59,"time_ms":53.2,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1595102961.106079,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":19,"ttl":59,"time_ms":121.0,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":1595102962.145647,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":20,"ttl":59,"time_ms":159.0,"duplicate":false},{"type":"summary","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","packets_transmitted":20,"packets_received":15,"packet_loss_percent":25.0,"duplicates":0,"time_ms":19161.0,"round_trip_ms_min":21.405,"round_trip_ms_avg":45.041,"round_trip_ms_max":159.38,"round_trip_ms_stddev":38.693}] jc-1.17.3/tests/fixtures/ubuntu-18.04/ping6-ip-O-D-p.json000066400000000000000000000061521415226333200223470ustar00rootroot00000000000000{"destination_ip": "2a04:4e42:600::323", "data_bytes": 56, "pattern": "0xabcd", "destination": "2a04:4e42:600::323", "packets_transmitted": 20, "packets_received": 15, "packet_loss_percent": 25.0, "duplicates": 0, "time_ms": 19161.0, "round_trip_ms_min": 21.405, "round_trip_ms_avg": 45.041, "round_trip_ms_max": 159.38, "round_trip_ms_stddev": 38.693, "responses": [{"type": "reply", "timestamp": 1595102942.853155, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 1, "ttl": 59, "time_ms": 28.4, "duplicate": false}, {"type": "reply", "timestamp": 1595102943.857295, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 2, "ttl": 59, "time_ms": 29.4, "duplicate": false}, {"type": "reply", "timestamp": 1595102944.861751, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 3, "ttl": 59, "time_ms": 31.2, "duplicate": false}, {"type": "timeout", "timestamp": 1595102946.861681, "icmp_seq": 4}, {"type": "reply", "timestamp": 1595102946.891881, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 5, "ttl": 59, "time_ms": 30.0, "duplicate": false}, {"type": "reply", "timestamp": 1595102947.884818, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 6, "ttl": 59, "time_ms": 22.0, "duplicate": false}, {"type": "reply", "timestamp": 1595102948.89152, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 7, "ttl": 59, "time_ms": 27.2, "duplicate": false}, {"type": "reply", "timestamp": 1595102949.897424, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 8, "ttl": 59, "time_ms": 30.5, "duplicate": false}, {"type": "reply", "timestamp": 1595102950.89982, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 9, "ttl": 59, "time_ms": 29.0, "duplicate": false}, {"type": "reply", "timestamp": 1595102951.905148, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 10, "ttl": 59, "time_ms": 31.3, "duplicate": false}, {"type": "timeout", "timestamp": 1595102953.901458, "icmp_seq": 11}, {"type": "reply", "timestamp": 1595102953.93159, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 12, "ttl": 59, "time_ms": 29.9, "duplicate": false}, {"type": "timeout", "timestamp": 1595102955.918953, "icmp_seq": 13}, {"type": "timeout", "timestamp": 1595102956.942898, "icmp_seq": 14}, {"type": "reply", "timestamp": 1595102956.973463, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 15, "ttl": 59, "time_ms": 30.4, "duplicate": false}, {"type": "reply", "timestamp": 1595102957.966655, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 16, "ttl": 59, "time_ms": 21.4, "duplicate": false}, {"type": "timeout", "timestamp": 1595102959.981759, "icmp_seq": 17}, {"type": "reply", "timestamp": 1595102960.035095, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 18, "ttl": 59, "time_ms": 53.2, "duplicate": false}, {"type": "reply", "timestamp": 1595102961.106079, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 19, "ttl": 59, "time_ms": 121.0, "duplicate": false}, {"type": "reply", "timestamp": 1595102962.145647, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 20, "ttl": 59, "time_ms": 159.0, "duplicate": false}]} jc-1.17.3/tests/fixtures/ubuntu-18.04/ping6-ip-O-D-p.out000066400000000000000000000033511415226333200222030ustar00rootroot00000000000000PATTERN: 0xabcd PING 2a04:4e42:600::323(2a04:4e42:600::323) 56 data bytes [1595102942.853155] 64 bytes from 2a04:4e42:600::323: icmp_seq=1 ttl=59 time=28.4 ms [1595102943.857295] 64 bytes from 2a04:4e42:600::323: icmp_seq=2 ttl=59 time=29.4 ms [1595102944.861751] 64 bytes from 2a04:4e42:600::323: icmp_seq=3 ttl=59 time=31.2 ms [1595102946.861681] no answer yet for icmp_seq=4 [1595102946.891881] 64 bytes from 2a04:4e42:600::323: icmp_seq=5 ttl=59 time=30.0 ms [1595102947.884818] 64 bytes from 2a04:4e42:600::323: icmp_seq=6 ttl=59 time=22.0 ms [1595102948.891520] 64 bytes from 2a04:4e42:600::323: icmp_seq=7 ttl=59 time=27.2 ms [1595102949.897424] 64 bytes from 2a04:4e42:600::323: icmp_seq=8 ttl=59 time=30.5 ms [1595102950.899820] 64 bytes from 2a04:4e42:600::323: icmp_seq=9 ttl=59 time=29.0 ms [1595102951.905148] 64 bytes from 2a04:4e42:600::323: icmp_seq=10 ttl=59 time=31.3 ms [1595102953.901458] no answer yet for icmp_seq=11 [1595102953.931590] 64 bytes from 2a04:4e42:600::323: icmp_seq=12 ttl=59 time=29.9 ms [1595102955.918953] no answer yet for icmp_seq=13 [1595102956.942898] no answer yet for icmp_seq=14 [1595102956.973463] 64 bytes from 2a04:4e42:600::323: icmp_seq=15 ttl=59 time=30.4 ms [1595102957.966655] 64 bytes from 2a04:4e42:600::323: icmp_seq=16 ttl=59 time=21.4 ms [1595102959.981759] no answer yet for icmp_seq=17 [1595102960.035095] 64 bytes from 2a04:4e42:600::323: icmp_seq=18 ttl=59 time=53.2 ms [1595102961.106079] 64 bytes from 2a04:4e42:600::323: icmp_seq=19 ttl=59 time=121 ms [1595102962.145647] 64 bytes from 2a04:4e42:600::323: icmp_seq=20 ttl=59 time=159 ms --- 2a04:4e42:600::323 ping statistics --- 20 packets transmitted, 15 received, 25% packet loss, time 19161ms rtt min/avg/max/mdev = 21.405/45.041/159.380/38.693 ms jc-1.17.3/tests/fixtures/ubuntu-18.04/ping6-ip-O-p-streaming.json000066400000000000000000000105331415226333200241530ustar00rootroot00000000000000[{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":1,"ttl":59,"time_ms":26.8,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":2,"ttl":59,"time_ms":24.6,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":3,"ttl":59,"time_ms":23.6,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":4,"ttl":59,"time_ms":21.7,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":5,"ttl":59,"time_ms":28.4,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":6,"ttl":59,"time_ms":23.0,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":7,"ttl":59,"time_ms":21.4,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":8,"ttl":59,"time_ms":22.3,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":9,"ttl":59,"time_ms":22.3,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":10,"ttl":59,"time_ms":29.3,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":11,"ttl":59,"time_ms":22.6,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":12,"ttl":59,"time_ms":22.7,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":13,"ttl":59,"time_ms":29.9,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":14,"ttl":59,"time_ms":22.0,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":15,"ttl":59,"time_ms":30.1,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":16,"ttl":59,"time_ms":24.2,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":17,"ttl":59,"time_ms":22.9,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":18,"ttl":59,"time_ms":24.5,"duplicate":false},{"type":"reply","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","timestamp":null,"response_bytes":64,"response_ip":"2a04:4e42:600::323","icmp_seq":19,"ttl":59,"time_ms":29.9,"duplicate":false},{"type":"summary","destination_ip":"2a04:4e42:600::323","sent_bytes":56,"pattern":"0xabcd","packets_transmitted":20,"packets_received":19,"packet_loss_percent":5.0,"duplicates":0,"time_ms":19046.0,"round_trip_ms_min":21.403,"round_trip_ms_avg":24.901,"round_trip_ms_max":30.176,"round_trip_ms_stddev":3.056}] jc-1.17.3/tests/fixtures/ubuntu-18.04/ping6-ip-O-p.json000066400000000000000000000062551415226333200221720ustar00rootroot00000000000000{"destination_ip": "2a04:4e42:600::323", "data_bytes": 56, "pattern": "0xabcd", "destination": "2a04:4e42:600::323", "packets_transmitted": 20, "packets_received": 19, "packet_loss_percent": 5.0, "duplicates": 0, "time_ms": 19046.0, "round_trip_ms_min": 21.403, "round_trip_ms_avg": 24.901, "round_trip_ms_max": 30.176, "round_trip_ms_stddev": 3.056, "responses": [{"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 1, "ttl": 59, "time_ms": 26.8, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 2, "ttl": 59, "time_ms": 24.6, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 3, "ttl": 59, "time_ms": 23.6, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 4, "ttl": 59, "time_ms": 21.7, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 5, "ttl": 59, "time_ms": 28.4, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 6, "ttl": 59, "time_ms": 23.0, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 7, "ttl": 59, "time_ms": 21.4, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 8, "ttl": 59, "time_ms": 22.3, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 9, "ttl": 59, "time_ms": 22.3, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 10, "ttl": 59, "time_ms": 29.3, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 11, "ttl": 59, "time_ms": 22.6, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 12, "ttl": 59, "time_ms": 22.7, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 13, "ttl": 59, "time_ms": 29.9, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 14, "ttl": 59, "time_ms": 22.0, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 15, "ttl": 59, "time_ms": 30.1, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 16, "ttl": 59, "time_ms": 24.2, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 17, "ttl": 59, "time_ms": 22.9, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 18, "ttl": 59, "time_ms": 24.5, "duplicate": false}, {"type": "reply", "timestamp": null, "bytes": 64, "response_ip": "2a04:4e42:600::323", "icmp_seq": 19, "ttl": 59, "time_ms": 29.9, "duplicate": false}]} jc-1.17.3/tests/fixtures/ubuntu-18.04/ping6-ip-O-p.out000066400000000000000000000027121415226333200220220ustar00rootroot00000000000000PATTERN: 0xabcd PING 2a04:4e42:600::323(2a04:4e42:600::323) 56 data bytes 64 bytes from 2a04:4e42:600::323: icmp_seq=1 ttl=59 time=26.8 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=2 ttl=59 time=24.6 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=3 ttl=59 time=23.6 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=4 ttl=59 time=21.7 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=5 ttl=59 time=28.4 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=6 ttl=59 time=23.0 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=7 ttl=59 time=21.4 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=8 ttl=59 time=22.3 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=9 ttl=59 time=22.3 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=10 ttl=59 time=29.3 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=11 ttl=59 time=22.6 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=12 ttl=59 time=22.7 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=13 ttl=59 time=29.9 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=14 ttl=59 time=22.0 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=15 ttl=59 time=30.1 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=16 ttl=59 time=24.2 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=17 ttl=59 time=22.9 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=18 ttl=59 time=24.5 ms 64 bytes from 2a04:4e42:600::323: icmp_seq=19 ttl=59 time=29.9 ms --- 2a04:4e42:600::323 ping statistics --- 20 packets transmitted, 19 received, 5% packet loss, time 19046ms rtt min/avg/max/mdev = 21.403/24.901/30.176/3.056 ms jc-1.17.3/tests/fixtures/ubuntu-18.04/pip-list-legacy.json000066400000000000000000000051161415226333200231060ustar00rootroot00000000000000[{"package": "asn1crypto", "version": "0.24.0"}, {"package": "attrs", "version": "17.4.0"}, {"package": "Automat", "version": "0.6.0"}, {"package": "blinker", "version": "1.4"}, {"package": "certifi", "version": "2018.1.18"}, {"package": "chardet", "version": "3.0.4"}, {"package": "click", "version": "6.7"}, {"package": "cloud-init", "version": "19.1"}, {"package": "colorama", "version": "0.3.7"}, {"package": "command-not-found", "version": "0.3"}, {"package": "configobj", "version": "5.0.6"}, {"package": "constantly", "version": "15.1.0"}, {"package": "cryptography", "version": "2.1.4"}, {"package": "distro-info", "version": "0.18ubuntu0.18.04.1"}, {"package": "httplib2", "version": "0.9.2"}, {"package": "hyperlink", "version": "17.3.1"}, {"package": "idna", "version": "2.6"}, {"package": "ifconfig-parser", "version": "0.0.5"}, {"package": "incremental", "version": "16.10.1"}, {"package": "jc", "version": "1.5.1"}, {"package": "Jinja2", "version": "2.10"}, {"package": "jsonpatch", "version": "1.16"}, {"package": "jsonpointer", "version": "1.10"}, {"package": "jsonschema", "version": "2.6.0"}, {"package": "keyring", "version": "10.6.0"}, {"package": "keyrings.alt", "version": "3.0"}, {"package": "language-selector", "version": "0.1"}, {"package": "MarkupSafe", "version": "1.0"}, {"package": "netifaces", "version": "0.10.4"}, {"package": "oauthlib", "version": "2.0.6"}, {"package": "PAM", "version": "0.4.2"}, {"package": "pip", "version": "9.0.1"}, {"package": "pyasn1", "version": "0.4.2"}, {"package": "pyasn1-modules", "version": "0.2.1"}, {"package": "pycrypto", "version": "2.6.1"}, {"package": "pygobject", "version": "3.26.1"}, {"package": "PyJWT", "version": "1.5.3"}, {"package": "pyOpenSSL", "version": "17.5.0"}, {"package": "pyserial", "version": "3.4"}, {"package": "python-apt", "version": "1.6.4"}, {"package": "python-debian", "version": "0.1.32"}, {"package": "pyxdg", "version": "0.25"}, {"package": "PyYAML", "version": "3.12"}, {"package": "requests", "version": "2.18.4"}, {"package": "requests-unixsocket", "version": "0.1.5"}, {"package": "SecretStorage", "version": "2.3.1"}, {"package": "service-identity", "version": "16.0.0"}, {"package": "setuptools", "version": "39.0.1"}, {"package": "six", "version": "1.11.0"}, {"package": "ssh-import-id", "version": "5.7"}, {"package": "systemd-python", "version": "234"}, {"package": "Twisted", "version": "17.9.0"}, {"package": "ufw", "version": "0.36"}, {"package": "unattended-upgrades", "version": "0.1"}, {"package": "urllib3", "version": "1.22"}, {"package": "wheel", "version": "0.30.0"}, {"package": "zope.interface", "version": "4.3.2"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/pip-list-legacy.out000066400000000000000000000020211415226333200227340ustar00rootroot00000000000000asn1crypto (0.24.0) attrs (17.4.0) Automat (0.6.0) blinker (1.4) certifi (2018.1.18) chardet (3.0.4) click (6.7) cloud-init (19.1) colorama (0.3.7) command-not-found (0.3) configobj (5.0.6) constantly (15.1.0) cryptography (2.1.4) distro-info (0.18ubuntu0.18.04.1) httplib2 (0.9.2) hyperlink (17.3.1) idna (2.6) ifconfig-parser (0.0.5) incremental (16.10.1) jc (1.5.1) Jinja2 (2.10) jsonpatch (1.16) jsonpointer (1.10) jsonschema (2.6.0) keyring (10.6.0) keyrings.alt (3.0) language-selector (0.1) MarkupSafe (1.0) netifaces (0.10.4) oauthlib (2.0.6) PAM (0.4.2) pip (9.0.1) pyasn1 (0.4.2) pyasn1-modules (0.2.1) pycrypto (2.6.1) pygobject (3.26.1) PyJWT (1.5.3) pyOpenSSL (17.5.0) pyserial (3.4) python-apt (1.6.4) python-debian (0.1.32) pyxdg (0.25) PyYAML (3.12) requests (2.18.4) requests-unixsocket (0.1.5) SecretStorage (2.3.1) service-identity (16.0.0) setuptools (39.0.1) six (1.11.0) ssh-import-id (5.7) systemd-python (234) Twisted (17.9.0) ufw (0.36) unattended-upgrades (0.1) urllib3 (1.22) wheel (0.30.0) zope.interface (4.3.2) jc-1.17.3/tests/fixtures/ubuntu-18.04/pip-list.json000066400000000000000000000051161415226333200216440ustar00rootroot00000000000000[{"package": "asn1crypto", "version": "0.24.0"}, {"package": "attrs", "version": "17.4.0"}, {"package": "Automat", "version": "0.6.0"}, {"package": "blinker", "version": "1.4"}, {"package": "certifi", "version": "2018.1.18"}, {"package": "chardet", "version": "3.0.4"}, {"package": "click", "version": "6.7"}, {"package": "cloud-init", "version": "19.1"}, {"package": "colorama", "version": "0.3.7"}, {"package": "command-not-found", "version": "0.3"}, {"package": "configobj", "version": "5.0.6"}, {"package": "constantly", "version": "15.1.0"}, {"package": "cryptography", "version": "2.1.4"}, {"package": "distro-info", "version": "0.18ubuntu0.18.04.1"}, {"package": "httplib2", "version": "0.9.2"}, {"package": "hyperlink", "version": "17.3.1"}, {"package": "idna", "version": "2.6"}, {"package": "ifconfig-parser", "version": "0.0.5"}, {"package": "incremental", "version": "16.10.1"}, {"package": "jc", "version": "1.5.1"}, {"package": "Jinja2", "version": "2.10"}, {"package": "jsonpatch", "version": "1.16"}, {"package": "jsonpointer", "version": "1.10"}, {"package": "jsonschema", "version": "2.6.0"}, {"package": "keyring", "version": "10.6.0"}, {"package": "keyrings.alt", "version": "3.0"}, {"package": "language-selector", "version": "0.1"}, {"package": "MarkupSafe", "version": "1.0"}, {"package": "netifaces", "version": "0.10.4"}, {"package": "oauthlib", "version": "2.0.6"}, {"package": "PAM", "version": "0.4.2"}, {"package": "pip", "version": "9.0.1"}, {"package": "pyasn1", "version": "0.4.2"}, {"package": "pyasn1-modules", "version": "0.2.1"}, {"package": "pycrypto", "version": "2.6.1"}, {"package": "pygobject", "version": "3.26.1"}, {"package": "PyJWT", "version": "1.5.3"}, {"package": "pyOpenSSL", "version": "17.5.0"}, {"package": "pyserial", "version": "3.4"}, {"package": "python-apt", "version": "1.6.4"}, {"package": "python-debian", "version": "0.1.32"}, {"package": "pyxdg", "version": "0.25"}, {"package": "PyYAML", "version": "3.12"}, {"package": "requests", "version": "2.18.4"}, {"package": "requests-unixsocket", "version": "0.1.5"}, {"package": "SecretStorage", "version": "2.3.1"}, {"package": "service-identity", "version": "16.0.0"}, {"package": "setuptools", "version": "39.0.1"}, {"package": "six", "version": "1.11.0"}, {"package": "ssh-import-id", "version": "5.7"}, {"package": "systemd-python", "version": "234"}, {"package": "Twisted", "version": "17.9.0"}, {"package": "ufw", "version": "0.36"}, {"package": "unattended-upgrades", "version": "0.1"}, {"package": "urllib3", "version": "1.22"}, {"package": "wheel", "version": "0.30.0"}, {"package": "zope.interface", "version": "4.3.2"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/pip-list.out000066400000000000000000000044701415226333200215040ustar00rootroot00000000000000Package Version ------------------- ------------------- asn1crypto 0.24.0 attrs 17.4.0 Automat 0.6.0 blinker 1.4 certifi 2018.1.18 chardet 3.0.4 click 6.7 cloud-init 19.1 colorama 0.3.7 command-not-found 0.3 configobj 5.0.6 constantly 15.1.0 cryptography 2.1.4 distro-info 0.18ubuntu0.18.04.1 httplib2 0.9.2 hyperlink 17.3.1 idna 2.6 ifconfig-parser 0.0.5 incremental 16.10.1 jc 1.5.1 Jinja2 2.10 jsonpatch 1.16 jsonpointer 1.10 jsonschema 2.6.0 keyring 10.6.0 keyrings.alt 3.0 language-selector 0.1 MarkupSafe 1.0 netifaces 0.10.4 oauthlib 2.0.6 PAM 0.4.2 pip 9.0.1 pyasn1 0.4.2 pyasn1-modules 0.2.1 pycrypto 2.6.1 pygobject 3.26.1 PyJWT 1.5.3 pyOpenSSL 17.5.0 pyserial 3.4 python-apt 1.6.4 python-debian 0.1.32 pyxdg 0.25 PyYAML 3.12 requests 2.18.4 requests-unixsocket 0.1.5 SecretStorage 2.3.1 service-identity 16.0.0 setuptools 39.0.1 six 1.11.0 ssh-import-id 5.7 systemd-python 234 Twisted 17.9.0 ufw 0.36 unattended-upgrades 0.1 urllib3 1.22 wheel 0.30.0 zope.interface 4.3.2 jc-1.17.3/tests/fixtures/ubuntu-18.04/pip-show.json000066400000000000000000000015521415226333200216510ustar00rootroot00000000000000[{"name": "pycrypto", "version": "2.6.1", "summary": "Cryptographic modules for Python.", "home_page": "http://www.pycrypto.org/", "author": "Dwayne C. Litzenberger", "author_email": "dlitz@dlitz.net", "license": "UNKNOWN", "location": "/usr/lib/python3/dist-packages", "requires": null}, {"name": "six", "version": "1.11.0", "summary": "Python 2 and 3 compatibility utilities", "home_page": "http://pypi.python.org/pypi/six/", "author": "Benjamin Peterson", "author_email": "benjamin@python.org", "license": "MIT", "location": "/usr/lib/python3/dist-packages", "requires": null}, {"name": "wheel", "version": "0.30.0", "summary": "A built-package format for Python.", "home_page": "https://github.com/pypa/wheel", "author": "Alex Gr\u00f6nholm", "author_email": "alex.gronholm@nextday.fi", "license": "MIT", "location": "/usr/lib/python3/dist-packages", "requires": null}] jc-1.17.3/tests/fixtures/ubuntu-18.04/pip-show.out000066400000000000000000000013321415226333200215030ustar00rootroot00000000000000Name: pycrypto Version: 2.6.1 Summary: Cryptographic modules for Python. Home-page: http://www.pycrypto.org/ Author: Dwayne C. Litzenberger Author-email: dlitz@dlitz.net License: UNKNOWN Location: /usr/lib/python3/dist-packages Requires: --- Name: six Version: 1.11.0 Summary: Python 2 and 3 compatibility utilities Home-page: http://pypi.python.org/pypi/six/ Author: Benjamin Peterson Author-email: benjamin@python.org License: MIT Location: /usr/lib/python3/dist-packages Requires: --- Name: wheel Version: 0.30.0 Summary: A built-package format for Python. Home-page: https://github.com/pypa/wheel Author: Alex Grönholm Author-email: alex.gronholm@nextday.fi License: MIT Location: /usr/lib/python3/dist-packages Requires: jc-1.17.3/tests/fixtures/ubuntu-18.04/ps-axu.json000066400000000000000000000752361415226333200213320ustar00rootroot00000000000000[{"user": "root", "pid": 1, "cpu_percent": 0.0, "mem_percent": 0.4, "vsz": 78148, "rss": 9236, "tty": null, "stat": "Ss", "start": "Oct26", "time": "0:10", "command": "/sbin/init auto automatic-ubiquity noprompt"}, {"user": "root", "pid": 2, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[kthreadd]"}, {"user": "root", "pid": 4, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[kworker/0:0H]"}, {"user": "root", "pid": 6, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[mm_percpu_wq]"}, {"user": "root", "pid": 7, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:04", "command": "[ksoftirqd/0]"}, {"user": "root", "pid": 8, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I", "start": "Oct26", "time": "0:38", "command": "[rcu_sched]"}, {"user": "root", "pid": 9, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I", "start": "Oct26", "time": "0:00", "command": "[rcu_bh]"}, {"user": "root", "pid": 10, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[migration/0]"}, {"user": "root", "pid": 11, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[watchdog/0]"}, {"user": "root", "pid": 12, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[cpuhp/0]"}, {"user": "root", "pid": 13, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[kdevtmpfs]"}, {"user": "root", "pid": 14, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[netns]"}, {"user": "root", "pid": 15, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[rcu_tasks_kthre]"}, {"user": "root", "pid": 16, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[kauditd]"}, {"user": "root", "pid": 17, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[khungtaskd]"}, {"user": "root", "pid": 18, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[oom_reaper]"}, {"user": "root", "pid": 19, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[writeback]"}, {"user": "root", "pid": 20, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[kcompactd0]"}, {"user": "root", "pid": 21, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "SN", "start": "Oct26", "time": "0:00", "command": "[ksmd]"}, {"user": "root", "pid": 22, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "SN", "start": "Oct26", "time": "0:00", "command": "[khugepaged]"}, {"user": "root", "pid": 23, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[crypto]"}, {"user": "root", "pid": 24, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[kintegrityd]"}, {"user": "root", "pid": 25, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[kblockd]"}, {"user": "root", "pid": 26, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[ata_sff]"}, {"user": "root", "pid": 27, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[md]"}, {"user": "root", "pid": 28, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[edac-poller]"}, {"user": "root", "pid": 29, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[devfreq_wq]"}, {"user": "root", "pid": 30, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[watchdogd]"}, {"user": "root", "pid": 34, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[kswapd0]"}, {"user": "root", "pid": 35, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[kworker/u257:0]"}, {"user": "root", "pid": 36, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[ecryptfs-kthrea]"}, {"user": "root", "pid": 78, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[kthrotld]"}, {"user": "root", "pid": 79, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[acpi_thermal_pm]"}, {"user": "root", "pid": 80, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[scsi_eh_0]"}, {"user": "root", "pid": 81, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[scsi_tmf_0]"}, {"user": "root", "pid": 82, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[scsi_eh_1]"}, {"user": "root", "pid": 83, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[scsi_tmf_1]"}, {"user": "root", "pid": 89, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[ipv6_addrconf]"}, {"user": "root", "pid": 99, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[kstrp]"}, {"user": "root", "pid": 116, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[charger_manager]"}, {"user": "root", "pid": 170, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[mpt_poll_0]"}, {"user": "root", "pid": 171, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[scsi_eh_2]"}, {"user": "root", "pid": 172, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[mpt/0]"}, {"user": "root", "pid": 173, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[scsi_tmf_2]"}, {"user": "root", "pid": 174, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[scsi_eh_3]"}, {"user": "root", "pid": 175, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[scsi_tmf_3]"}, {"user": "root", "pid": 176, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[scsi_eh_4]"}, {"user": "root", "pid": 177, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[scsi_tmf_4]"}, {"user": "root", "pid": 178, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[scsi_eh_5]"}, {"user": "root", "pid": 179, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[scsi_tmf_5]"}, {"user": "root", "pid": 180, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[scsi_eh_6]"}, {"user": "root", "pid": 181, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[scsi_tmf_6]"}, {"user": "root", "pid": 182, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[scsi_eh_7]"}, {"user": "root", "pid": 183, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[scsi_tmf_7]"}, {"user": "root", "pid": 188, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[scsi_eh_8]"}, {"user": "root", "pid": 189, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[scsi_tmf_8]"}, {"user": "root", "pid": 191, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[scsi_eh_9]"}, {"user": "root", "pid": 196, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[scsi_tmf_9]"}, {"user": "root", "pid": 198, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[scsi_eh_10]"}, {"user": "root", "pid": 199, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[scsi_tmf_10]"}, {"user": "root", "pid": 201, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[scsi_eh_11]"}, {"user": "root", "pid": 203, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[scsi_tmf_11]"}, {"user": "root", "pid": 205, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[scsi_eh_12]"}, {"user": "root", "pid": 208, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[scsi_tmf_12]"}, {"user": "root", "pid": 209, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[scsi_eh_13]"}, {"user": "root", "pid": 212, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[scsi_tmf_13]"}, {"user": "root", "pid": 213, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[scsi_eh_14]"}, {"user": "root", "pid": 216, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[scsi_tmf_14]"}, {"user": "root", "pid": 217, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[scsi_eh_15]"}, {"user": "root", "pid": 219, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[scsi_tmf_15]"}, {"user": "root", "pid": 221, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[scsi_eh_16]"}, {"user": "root", "pid": 223, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[scsi_tmf_16]"}, {"user": "root", "pid": 225, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[scsi_eh_17]"}, {"user": "root", "pid": 227, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[scsi_tmf_17]"}, {"user": "root", "pid": 229, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[scsi_eh_18]"}, {"user": "root", "pid": 230, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[scsi_tmf_18]"}, {"user": "root", "pid": 232, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[scsi_eh_19]"}, {"user": "root", "pid": 233, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[scsi_tmf_19]"}, {"user": "root", "pid": 235, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[scsi_eh_20]"}, {"user": "root", "pid": 237, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[scsi_tmf_20]"}, {"user": "root", "pid": 238, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[scsi_eh_21]"}, {"user": "root", "pid": 240, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[scsi_tmf_21]"}, {"user": "root", "pid": 241, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[scsi_eh_22]"}, {"user": "root", "pid": 243, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[scsi_tmf_22]"}, {"user": "root", "pid": 245, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[scsi_eh_23]"}, {"user": "root", "pid": 246, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[scsi_tmf_23]"}, {"user": "root", "pid": 248, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[scsi_eh_24]"}, {"user": "root", "pid": 250, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[scsi_tmf_24]"}, {"user": "root", "pid": 252, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[scsi_eh_25]"}, {"user": "root", "pid": 254, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[scsi_tmf_25]"}, {"user": "root", "pid": 256, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[scsi_eh_26]"}, {"user": "root", "pid": 258, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[scsi_tmf_26]"}, {"user": "root", "pid": 259, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[scsi_eh_27]"}, {"user": "root", "pid": 260, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[scsi_tmf_27]"}, {"user": "root", "pid": 261, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[scsi_eh_28]"}, {"user": "root", "pid": 262, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[scsi_tmf_28]"}, {"user": "root", "pid": 263, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[scsi_eh_29]"}, {"user": "root", "pid": 264, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[scsi_tmf_29]"}, {"user": "root", "pid": 265, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[scsi_eh_30]"}, {"user": "root", "pid": 266, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[scsi_tmf_30]"}, {"user": "root", "pid": 267, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[scsi_eh_31]"}, {"user": "root", "pid": 268, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[scsi_tmf_31]"}, {"user": "root", "pid": 295, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[scsi_eh_32]"}, {"user": "root", "pid": 296, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[scsi_tmf_32]"}, {"user": "root", "pid": 302, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[ttm_swap]"}, {"user": "root", "pid": 303, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:00", "command": "[irq/16-vmwgfx]"}, {"user": "root", "pid": 305, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:02", "command": "[kworker/0:1H]"}, {"user": "root", "pid": 369, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[raid5wq]"}, {"user": "root", "pid": 422, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "S", "start": "Oct26", "time": "0:03", "command": "[jbd2/sda2-8]"}, {"user": "root", "pid": 423, "cpu_percent": 0.0, "mem_percent": 0.0, "vsz": 0, "rss": 0, "tty": null, "stat": "I<", "start": "Oct26", "time": "0:00", "command": "[ext4-rsv-conver]"}, {"user": "root", "pid": 495, "cpu_percent": 0.0, "mem_percent": 0.7, "vsz": 95100, "rss": 15672, "tty": null, "stat": "S btrfs Size: 5 Blocks: 0 IO Block: 4096 symbolic link Device: 802h/2050d Inode: 131075 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-15 00:17:49.537346949 +0000 Modify: 2018-03-12 23:04:27.000000000 +0000 Change: 2019-08-12 17:21:29.485946877 +0000 Birth: - File: /bin/btrfs-debug-tree Size: 375952 Blocks: 736 IO Block: 4096 regular file Device: 802h/2050d Inode: 131101 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:29.565943573 +0000 Modify: 2018-03-12 23:04:27.000000000 +0000 Change: 2019-08-12 17:21:29.565943573 +0000 Birth: - File: /bin/btrfs-find-root Size: 371856 Blocks: 728 IO Block: 4096 regular file Device: 802h/2050d Inode: 131102 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:29.581942911 +0000 Modify: 2018-03-12 23:04:27.000000000 +0000 Change: 2019-08-12 17:21:29.581942911 +0000 Birth: - File: /bin/btrfs-image Size: 396432 Blocks: 776 IO Block: 4096 regular file Device: 802h/2050d Inode: 131103 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:29.597942250 +0000 Modify: 2018-03-12 23:04:27.000000000 +0000 Change: 2019-08-12 17:21:29.597942250 +0000 Birth: - File: /bin/btrfs-map-logical Size: 375952 Blocks: 736 IO Block: 4096 regular file Device: 802h/2050d Inode: 131104 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:29.613941590 +0000 Modify: 2018-03-12 23:04:27.000000000 +0000 Change: 2019-08-12 17:21:29.613941590 +0000 Birth: - File: /bin/btrfs-select-super Size: 371856 Blocks: 728 IO Block: 4096 regular file Device: 802h/2050d Inode: 131105 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:29.637940598 +0000 Modify: 2018-03-12 23:04:27.000000000 +0000 Change: 2019-08-12 17:21:29.637940598 +0000 Birth: - File: /bin/btrfstune Size: 375952 Blocks: 736 IO Block: 4096 regular file Device: 802h/2050d Inode: 131107 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:29.689938450 +0000 Modify: 2018-03-12 23:04:27.000000000 +0000 Change: 2019-08-12 17:21:29.689938450 +0000 Birth: - File: /bin/btrfs-zero-log Size: 371856 Blocks: 728 IO Block: 4096 regular file Device: 802h/2050d Inode: 131106 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-14 08:18:29.066876865 +0000 Modify: 2018-03-12 23:04:27.000000000 +0000 Change: 2019-08-12 17:21:29.665939442 +0000 Birth: - File: /bin/bunzip2 Size: 34888 Blocks: 72 IO Block: 4096 regular file Device: 802h/2050d Inode: 131112 Links: 3 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:29.809933493 +0000 Modify: 2019-07-04 12:35:36.000000000 +0000 Change: 2019-08-12 17:21:29.809933493 +0000 Birth: - File: /bin/busybox Size: 2062296 Blocks: 4032 IO Block: 4096 regular file Device: 802h/2050d Inode: 131108 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:29.801933824 +0000 Modify: 2019-03-06 20:51:41.000000000 +0000 Change: 2019-08-12 17:21:29.801933824 +0000 Birth: - File: /bin/bzcat Size: 34888 Blocks: 72 IO Block: 4096 regular file Device: 802h/2050d Inode: 131112 Links: 3 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:29.809933493 +0000 Modify: 2019-07-04 12:35:36.000000000 +0000 Change: 2019-08-12 17:21:29.809933493 +0000 Birth: - File: /bin/bzcmp -> bzdiff Size: 6 Blocks: 0 IO Block: 4096 symbolic link Device: 802h/2050d Inode: 131076 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-15 00:17:49.661350198 +0000 Modify: 2019-07-04 12:35:36.000000000 +0000 Change: 2019-08-12 17:21:29.485946877 +0000 Birth: - File: /bin/bzdiff Size: 2140 Blocks: 8 IO Block: 4096 regular file Device: 802h/2050d Inode: 131109 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:29.805933659 +0000 Modify: 2019-07-04 12:35:36.000000000 +0000 Change: 2019-08-12 17:21:29.805933659 +0000 Birth: - File: /bin/bzegrep -> bzgrep Size: 6 Blocks: 0 IO Block: 4096 symbolic link Device: 802h/2050d Inode: 131077 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-15 00:17:49.689350932 +0000 Modify: 2019-07-04 12:35:36.000000000 +0000 Change: 2019-08-12 17:21:29.485946877 +0000 Birth: - File: /bin/bzexe Size: 4877 Blocks: 16 IO Block: 4096 regular file Device: 802h/2050d Inode: 131110 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:29.805933659 +0000 Modify: 2019-07-04 12:35:36.000000000 +0000 Change: 2019-08-12 17:21:29.805933659 +0000 Birth: - File: /bin/bzfgrep -> bzgrep Size: 6 Blocks: 0 IO Block: 4096 symbolic link Device: 802h/2050d Inode: 131078 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-15 00:17:49.713351561 +0000 Modify: 2019-07-04 12:35:36.000000000 +0000 Change: 2019-08-12 17:21:29.485946877 +0000 Birth: - File: /bin/bzgrep Size: 3642 Blocks: 8 IO Block: 4096 regular file Device: 802h/2050d Inode: 131111 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:29.805933659 +0000 Modify: 2019-07-04 12:35:36.000000000 +0000 Change: 2019-08-12 17:21:29.805933659 +0000 Birth: - File: /bin/bzip2 Size: 34888 Blocks: 72 IO Block: 4096 regular file Device: 802h/2050d Inode: 131112 Links: 3 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:29.809933493 +0000 Modify: 2019-07-04 12:35:36.000000000 +0000 Change: 2019-08-12 17:21:29.809933493 +0000 Birth: - File: /bin/bzip2recover Size: 14328 Blocks: 32 IO Block: 4096 regular file Device: 802h/2050d Inode: 131113 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:29.809933493 +0000 Modify: 2019-07-04 12:35:36.000000000 +0000 Change: 2019-08-12 17:21:29.809933493 +0000 Birth: - File: /bin/bzless -> bzmore Size: 6 Blocks: 0 IO Block: 4096 symbolic link Device: 802h/2050d Inode: 131079 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-15 00:17:49.765352923 +0000 Modify: 2019-07-04 12:35:36.000000000 +0000 Change: 2019-08-12 17:21:29.485946877 +0000 Birth: - File: /bin/bzmore Size: 1297 Blocks: 8 IO Block: 4096 regular file Device: 802h/2050d Inode: 131114 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:29.809933493 +0000 Modify: 2019-07-04 12:35:36.000000000 +0000 Change: 2019-08-12 17:21:29.809933493 +0000 Birth: - File: /bin/cat Size: 35064 Blocks: 72 IO Block: 4096 regular file Device: 802h/2050d Inode: 131115 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-14 08:18:03.566042141 +0000 Modify: 2018-01-18 09:43:49.000000000 +0000 Change: 2019-08-12 17:21:29.809933493 +0000 Birth: - File: /bin/chacl Size: 14328 Blocks: 32 IO Block: 4096 regular file Device: 802h/2050d Inode: 131116 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:29.809933493 +0000 Modify: 2017-04-21 20:44:54.000000000 +0000 Change: 2019-08-12 17:21:29.809933493 +0000 Birth: - File: /bin/chgrp Size: 63672 Blocks: 128 IO Block: 4096 regular file Device: 802h/2050d Inode: 131117 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:29.809933493 +0000 Modify: 2018-01-18 09:43:49.000000000 +0000 Change: 2019-08-12 17:21:29.809933493 +0000 Birth: - File: /bin/chmod Size: 59608 Blocks: 120 IO Block: 4096 regular file Device: 802h/2050d Inode: 131118 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-14 10:54:20.566474623 +0000 Modify: 2018-01-18 09:43:49.000000000 +0000 Change: 2019-08-12 17:21:29.813933328 +0000 Birth: - File: /bin/chown Size: 67768 Blocks: 136 IO Block: 4096 regular file Device: 802h/2050d Inode: 131119 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-10-18 00:11:12.522582075 +0000 Modify: 2018-01-18 09:43:49.000000000 +0000 Change: 2019-08-12 17:21:29.813933328 +0000 Birth: - File: /bin/chvt Size: 10312 Blocks: 24 IO Block: 4096 regular file Device: 802h/2050d Inode: 131120 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:29.813933328 +0000 Modify: 2018-01-22 13:49:48.000000000 +0000 Change: 2019-08-12 17:21:29.813933328 +0000 Birth: - File: /bin/cp Size: 141528 Blocks: 280 IO Block: 4096 regular file Device: 802h/2050d Inode: 131121 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-14 08:17:59.512544818 +0000 Modify: 2018-01-18 09:43:49.000000000 +0000 Change: 2019-08-12 17:21:29.821932998 +0000 Birth: - File: /bin/cpio Size: 157224 Blocks: 312 IO Block: 4096 regular file Device: 802h/2050d Inode: 131319 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-14 08:18:28.974824949 +0000 Modify: 2019-11-05 18:09:06.000000000 +0000 Change: 2019-11-07 06:42:09.587720919 +0000 Birth: - File: /bin/dash Size: 121432 Blocks: 240 IO Block: 4096 regular file Device: 802h/2050d Inode: 131123 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-14 21:16:56.055822496 +0000 Modify: 2018-01-25 07:14:33.000000000 +0000 Change: 2019-08-12 17:21:29.825932832 +0000 Birth: - File: /bin/date Size: 100568 Blocks: 200 IO Block: 4096 regular file Device: 802h/2050d Inode: 131124 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-14 08:17:41.391968839 +0000 Modify: 2018-01-18 09:43:49.000000000 +0000 Change: 2019-08-12 17:21:29.833932502 +0000 Birth: - File: /bin/dd Size: 76000 Blocks: 152 IO Block: 4096 regular file Device: 802h/2050d Inode: 131125 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-14 08:18:32.844165468 +0000 Modify: 2018-01-18 09:43:49.000000000 +0000 Change: 2019-08-12 17:21:29.837932336 +0000 Birth: - File: /bin/df Size: 84776 Blocks: 168 IO Block: 4096 regular file Device: 802h/2050d Inode: 131126 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-08 17:58:16.342184000 +0000 Modify: 2018-01-18 09:43:49.000000000 +0000 Change: 2019-08-12 17:21:29.845932006 +0000 Birth: - File: /bin/dir Size: 133792 Blocks: 264 IO Block: 4096 regular file Device: 802h/2050d Inode: 131127 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:29.849931841 +0000 Modify: 2018-01-18 09:43:49.000000000 +0000 Change: 2019-08-12 17:21:29.849931841 +0000 Birth: - File: /bin/dmesg Size: 72000 Blocks: 136 IO Block: 4096 regular file Device: 802h/2050d Inode: 131128 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:29.853931676 +0000 Modify: 2018-10-15 20:29:48.000000000 +0000 Change: 2019-08-12 17:21:29.853931676 +0000 Birth: - File: /bin/dnsdomainname -> hostname Size: 8 Blocks: 0 IO Block: 4096 symbolic link Device: 802h/2050d Inode: 131080 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-15 00:17:49.945357640 +0000 Modify: 2018-01-31 12:08:15.000000000 +0000 Change: 2019-08-12 17:21:29.485946877 +0000 Birth: - File: /bin/domainname -> hostname Size: 8 Blocks: 0 IO Block: 4096 symbolic link Device: 802h/2050d Inode: 131081 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-15 00:17:49.961358059 +0000 Modify: 2018-01-31 12:08:15.000000000 +0000 Change: 2019-08-12 17:21:29.485946877 +0000 Birth: - File: /bin/dumpkeys Size: 170520 Blocks: 336 IO Block: 4096 regular file Device: 802h/2050d Inode: 131129 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:29.857931510 +0000 Modify: 2018-01-22 13:49:48.000000000 +0000 Change: 2019-08-12 17:21:29.857931510 +0000 Birth: - File: /bin/echo Size: 35000 Blocks: 72 IO Block: 4096 regular file Device: 802h/2050d Inode: 131130 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-10-18 00:12:10.609310253 +0000 Modify: 2018-01-18 09:43:49.000000000 +0000 Change: 2019-08-12 17:21:29.861931345 +0000 Birth: - File: /bin/ed Size: 51512 Blocks: 104 IO Block: 4096 regular file Device: 802h/2050d Inode: 131131 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:29.861931345 +0000 Modify: 2016-04-26 21:54:38.000000000 +0000 Change: 2019-08-12 17:21:29.861931345 +0000 Birth: - File: /bin/egrep Size: 28 Blocks: 8 IO Block: 4096 regular file Device: 802h/2050d Inode: 131132 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-14 08:18:01.135612133 +0000 Modify: 2017-07-12 10:59:03.000000000 +0000 Change: 2019-08-12 17:21:29.861931345 +0000 Birth: - File: /bin/false Size: 30904 Blocks: 64 IO Block: 4096 regular file Device: 802h/2050d Inode: 131133 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:29.865931179 +0000 Modify: 2018-01-18 09:43:49.000000000 +0000 Change: 2019-08-12 17:21:29.865931179 +0000 Birth: - File: /bin/fgconsole Size: 10312 Blocks: 24 IO Block: 4096 regular file Device: 802h/2050d Inode: 131134 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:29.865931179 +0000 Modify: 2018-01-22 13:49:48.000000000 +0000 Change: 2019-08-12 17:21:29.865931179 +0000 Birth: - File: /bin/fgrep Size: 28 Blocks: 8 IO Block: 4096 regular file Device: 802h/2050d Inode: 131135 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-14 08:19:14.414633619 +0000 Modify: 2017-07-12 10:59:03.000000000 +0000 Change: 2019-08-12 17:21:29.865931179 +0000 Birth: - File: /bin/findmnt Size: 64784 Blocks: 128 IO Block: 4096 regular file Device: 802h/2050d Inode: 131136 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:29.869931015 +0000 Modify: 2018-10-15 20:29:48.000000000 +0000 Change: 2019-08-12 17:21:29.869931015 +0000 Birth: - File: /bin/fsck.btrfs Size: 1185 Blocks: 8 IO Block: 4096 regular file Device: 802h/2050d Inode: 131137 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:29.869931015 +0000 Modify: 2018-03-12 23:04:27.000000000 +0000 Change: 2019-08-12 17:21:29.869931015 +0000 Birth: - File: /bin/fuser Size: 35928 Blocks: 72 IO Block: 4096 regular file Device: 802h/2050d Inode: 131138 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:29.873930850 +0000 Modify: 2018-12-11 15:46:04.000000000 +0000 Change: 2019-08-12 17:21:29.873930850 +0000 Birth: - File: /bin/fusermount Size: 30800 Blocks: 64 IO Block: 4096 regular file Device: 802h/2050d Inode: 131139 Links: 1 Access: (4755/-rwsr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-08 14:20:05.052301501 +0000 Modify: 2016-08-11 12:52:18.000000000 +0000 Change: 2019-08-12 17:21:29.873930850 +0000 Birth: - File: /bin/getfacl Size: 23160 Blocks: 48 IO Block: 4096 regular file Device: 802h/2050d Inode: 131140 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:29.873930850 +0000 Modify: 2017-04-21 20:44:54.000000000 +0000 Change: 2019-08-12 17:21:29.873930850 +0000 Birth: - File: /bin/grep Size: 219528 Blocks: 432 IO Block: 4096 regular file Device: 802h/2050d Inode: 131141 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-15 04:33:55.887764474 +0000 Modify: 2017-07-12 10:59:03.000000000 +0000 Change: 2019-08-12 17:21:29.877930684 +0000 Birth: - File: /bin/gunzip Size: 2301 Blocks: 8 IO Block: 4096 regular file Device: 802h/2050d Inode: 131226 Links: 2 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:30.181918115 +0000 Modify: 2017-04-28 03:50:19.000000000 +0000 Change: 2019-08-12 17:21:30.181918115 +0000 Birth: - File: /bin/gzexe Size: 5927 Blocks: 16 IO Block: 4096 regular file Device: 802h/2050d Inode: 131142 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:29.877930684 +0000 Modify: 2017-04-28 03:50:19.000000000 +0000 Change: 2019-08-12 17:21:29.877930684 +0000 Birth: - File: /bin/gzip Size: 101560 Blocks: 200 IO Block: 4096 regular file Device: 802h/2050d Inode: 131143 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-14 08:17:59.732416722 +0000 Modify: 2017-04-28 03:50:19.000000000 +0000 Change: 2019-08-12 17:21:29.897929858 +0000 Birth: - File: /bin/hostname Size: 18504 Blocks: 40 IO Block: 4096 regular file Device: 802h/2050d Inode: 131144 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:24:44.838656738 +0000 Modify: 2018-01-31 12:08:15.000000000 +0000 Change: 2019-08-12 17:21:29.897929858 +0000 Birth: - File: /bin/ip Size: 554104 Blocks: 1088 IO Block: 4096 regular file Device: 802h/2050d Inode: 131145 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-11 20:49:49.156707208 +0000 Modify: 2018-02-26 15:21:30.000000000 +0000 Change: 2019-08-12 17:21:29.909929362 +0000 Birth: - File: /bin/journalctl Size: 63576 Blocks: 128 IO Block: 4096 regular file Device: 802h/2050d Inode: 131097 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-11 20:49:42.852706909 +0000 Modify: 2019-09-05 03:59:51.000000000 +0000 Change: 2019-10-18 00:12:04.984676392 +0000 Birth: - File: /bin/kbd_mode Size: 10312 Blocks: 24 IO Block: 4096 regular file Device: 802h/2050d Inode: 131147 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-14 08:18:32.956198362 +0000 Modify: 2018-01-22 13:49:48.000000000 +0000 Change: 2019-08-12 17:21:29.913929198 +0000 Birth: - File: /bin/kill Size: 26704 Blocks: 56 IO Block: 4096 regular file Device: 802h/2050d Inode: 131148 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-13 01:53:14.586424163 +0000 Modify: 2018-05-14 12:01:40.000000000 +0000 Change: 2019-08-12 17:21:29.913929198 +0000 Birth: - File: /bin/kmod Size: 149688 Blocks: 296 IO Block: 4096 regular file Device: 802h/2050d Inode: 131149 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-14 08:18:22.017953568 +0000 Modify: 2018-11-12 21:54:37.000000000 +0000 Change: 2019-08-12 17:21:29.921928867 +0000 Birth: - File: /bin/less Size: 170760 Blocks: 336 IO Block: 4096 regular file Device: 802h/2050d Inode: 131150 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-14 15:51:02.992033396 +0000 Modify: 2017-12-01 04:11:09.000000000 +0000 Change: 2019-08-12 17:21:29.925928702 +0000 Birth: - File: /bin/lessecho Size: 10256 Blocks: 24 IO Block: 4096 regular file Device: 802h/2050d Inode: 131151 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-14 01:52:29.673928677 +0000 Modify: 2017-12-01 04:11:09.000000000 +0000 Change: 2019-08-12 17:21:29.925928702 +0000 Birth: - File: /bin/lessfile -> lesspipe Size: 8 Blocks: 0 IO Block: 4096 symbolic link Device: 802h/2050d Inode: 131082 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-15 00:17:50.245365501 +0000 Modify: 2017-12-01 04:11:09.000000000 +0000 Change: 2019-08-12 17:21:29.485946877 +0000 Birth: - File: /bin/lesskey Size: 19856 Blocks: 40 IO Block: 4096 regular file Device: 802h/2050d Inode: 131152 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:29.925928702 +0000 Modify: 2017-12-01 04:11:09.000000000 +0000 Change: 2019-08-12 17:21:29.925928702 +0000 Birth: - File: /bin/lesspipe Size: 8564 Blocks: 24 IO Block: 4096 regular file Device: 802h/2050d Inode: 131153 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-13 01:53:24.066461414 +0000 Modify: 2017-12-01 04:11:09.000000000 +0000 Change: 2019-08-12 17:21:29.929928536 +0000 Birth: - File: /bin/ln Size: 67808 Blocks: 136 IO Block: 4096 regular file Device: 802h/2050d Inode: 131154 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-14 08:18:21.953895931 +0000 Modify: 2018-01-18 09:43:49.000000000 +0000 Change: 2019-08-12 17:21:29.929928536 +0000 Birth: - File: /bin/loadkeys Size: 211528 Blocks: 416 IO Block: 4096 regular file Device: 802h/2050d Inode: 131155 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-14 08:18:32.964200712 +0000 Modify: 2018-01-22 13:49:48.000000000 +0000 Change: 2019-08-12 17:21:29.937928206 +0000 Birth: - File: /bin/login Size: 52664 Blocks: 104 IO Block: 4096 regular file Device: 802h/2050d Inode: 131156 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-13 01:53:20.870448859 +0000 Modify: 2019-03-22 19:05:38.000000000 +0000 Change: 2019-08-12 17:21:29.937928206 +0000 Birth: - File: /bin/loginctl Size: 51280 Blocks: 104 IO Block: 4096 regular file Device: 802h/2050d Inode: 131146 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-10-18 00:12:03.000000000 +0000 Modify: 2019-09-05 03:59:51.000000000 +0000 Change: 2019-10-18 00:12:04.984676392 +0000 Birth: - File: /bin/lowntfs-3g Size: 109232 Blocks: 216 IO Block: 4096 regular file Device: 802h/2050d Inode: 131158 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:29.941928041 +0000 Modify: 2019-03-21 21:33:01.000000000 +0000 Change: 2019-08-12 17:21:29.941928041 +0000 Birth: - File: /bin/ls Size: 133792 Blocks: 264 IO Block: 4096 regular file Device: 802h/2050d Inode: 131159 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-14 08:18:21.873822659 +0000 Modify: 2018-01-18 09:43:49.000000000 +0000 Change: 2019-08-12 17:21:29.941928041 +0000 Birth: - File: /bin/lsblk Size: 84048 Blocks: 168 IO Block: 4096 regular file Device: 802h/2050d Inode: 131160 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-14 08:19:15.623162563 +0000 Modify: 2018-10-15 20:29:48.000000000 +0000 Change: 2019-08-12 17:21:29.957927379 +0000 Birth: - File: /bin/lsmod -> kmod Size: 4 Blocks: 0 IO Block: 4096 symbolic link Device: 802h/2050d Inode: 131083 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-15 00:17:50.357368436 +0000 Modify: 2018-11-12 21:54:37.000000000 +0000 Change: 2019-08-12 17:21:29.485946877 +0000 Birth: - File: /bin/mkdir Size: 80056 Blocks: 160 IO Block: 4096 regular file Device: 802h/2050d Inode: 131161 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-14 08:18:21.985925239 +0000 Modify: 2018-01-18 09:43:49.000000000 +0000 Change: 2019-08-12 17:21:29.965927049 +0000 Birth: - File: /bin/mkfs.btrfs Size: 396464 Blocks: 776 IO Block: 4096 regular file Device: 802h/2050d Inode: 131162 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:29.977926553 +0000 Modify: 2018-03-12 23:04:27.000000000 +0000 Change: 2019-08-12 17:21:29.977926553 +0000 Birth: - File: /bin/mknod Size: 67768 Blocks: 136 IO Block: 4096 regular file Device: 802h/2050d Inode: 131163 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:29.981926388 +0000 Modify: 2018-01-18 09:43:49.000000000 +0000 Change: 2019-08-12 17:21:29.981926388 +0000 Birth: - File: /bin/mktemp Size: 43192 Blocks: 88 IO Block: 4096 regular file Device: 802h/2050d Inode: 131164 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-14 08:18:21.977917912 +0000 Modify: 2018-01-18 09:43:49.000000000 +0000 Change: 2019-08-12 17:21:29.981926388 +0000 Birth: - File: /bin/more Size: 38952 Blocks: 80 IO Block: 4096 regular file Device: 802h/2050d Inode: 131165 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-13 01:44:29.834042309 +0000 Modify: 2018-10-15 20:29:48.000000000 +0000 Change: 2019-08-12 17:21:29.981926388 +0000 Birth: - File: /bin/mount Size: 43088 Blocks: 88 IO Block: 4096 regular file Device: 802h/2050d Inode: 131166 Links: 1 Access: (4755/-rwsr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-14 21:52:12.136609016 +0000 Modify: 2018-10-15 20:29:48.000000000 +0000 Change: 2019-08-12 17:21:29.989926058 +0000 Birth: - File: /bin/mountpoint Size: 14408 Blocks: 32 IO Block: 4096 regular file Device: 802h/2050d Inode: 131167 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:29.989926058 +0000 Modify: 2018-10-15 20:29:48.000000000 +0000 Change: 2019-08-12 17:21:29.989926058 +0000 Birth: - File: /bin/mt -> /etc/alternatives/mt Size: 20 Blocks: 0 IO Block: 4096 symbolic link Device: 802h/2050d Inode: 131084 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-15 00:17:50.449370847 +0000 Modify: 2019-08-05 19:23:23.000000000 +0000 Change: 2019-08-12 17:21:29.485946877 +0000 Birth: - File: /bin/mt-gnu Size: 80512 Blocks: 160 IO Block: 4096 regular file Device: 802h/2050d Inode: 131320 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-07 06:42:09.000000000 +0000 Modify: 2019-11-05 18:09:06.000000000 +0000 Change: 2019-11-07 06:42:09.587720919 +0000 Birth: - File: /bin/mv Size: 137440 Blocks: 272 IO Block: 4096 regular file Device: 802h/2050d Inode: 131169 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-14 08:17:59.648465631 +0000 Modify: 2018-01-18 09:43:49.000000000 +0000 Change: 2019-08-12 17:21:30.001925562 +0000 Birth: - File: /bin/nano Size: 245872 Blocks: 488 IO Block: 4096 regular file Device: 802h/2050d Inode: 131170 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:30.005925397 +0000 Modify: 2018-03-06 14:46:39.000000000 +0000 Change: 2019-08-12 17:21:30.005925397 +0000 Birth: - File: /bin/nc -> /etc/alternatives/nc Size: 20 Blocks: 0 IO Block: 4096 symbolic link Device: 802h/2050d Inode: 131085 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-15 00:17:50.493372000 +0000 Modify: 2019-08-05 19:23:23.000000000 +0000 Change: 2019-08-12 17:21:29.485946877 +0000 Birth: - File: /bin/nc.openbsd Size: 35312 Blocks: 72 IO Block: 4096 regular file Device: 802h/2050d Inode: 131171 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-14 01:56:09.191445751 +0000 Modify: 2018-05-14 12:24:33.000000000 +0000 Change: 2019-08-12 17:21:30.013925065 +0000 Birth: - File: /bin/netcat -> /etc/alternatives/netcat Size: 24 Blocks: 0 IO Block: 4096 symbolic link Device: 802h/2050d Inode: 131086 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-15 00:17:50.517372629 +0000 Modify: 2019-08-05 19:23:23.000000000 +0000 Change: 2019-08-12 17:21:29.485946877 +0000 Birth: - File: /bin/netstat Size: 154192 Blocks: 304 IO Block: 4096 regular file Device: 802h/2050d Inode: 131172 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-11 23:39:53.814731018 +0000 Modify: 2017-01-10 04:25:08.000000000 +0000 Change: 2019-08-12 17:21:30.021924734 +0000 Birth: - File: /bin/networkctl Size: 43080 Blocks: 88 IO Block: 4096 regular file Device: 802h/2050d Inode: 131210 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-11 20:49:49.968707247 +0000 Modify: 2019-09-05 03:59:51.000000000 +0000 Change: 2019-10-18 00:12:04.984676392 +0000 Birth: - File: /bin/nisdomainname -> hostname Size: 8 Blocks: 0 IO Block: 4096 symbolic link Device: 802h/2050d Inode: 131087 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-15 00:17:50.553373573 +0000 Modify: 2018-01-31 12:08:15.000000000 +0000 Change: 2019-08-12 17:21:29.485946877 +0000 Birth: - File: /bin/ntfs-3g Size: 146128 Blocks: 288 IO Block: 4096 regular file Device: 802h/2050d Inode: 131174 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-14 08:18:32.860170167 +0000 Modify: 2019-03-21 21:33:01.000000000 +0000 Change: 2019-08-12 17:21:30.025924569 +0000 Birth: - File: /bin/ntfs-3g.probe Size: 10312 Blocks: 24 IO Block: 4096 regular file Device: 802h/2050d Inode: 131175 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:30.025924569 +0000 Modify: 2019-03-21 21:33:01.000000000 +0000 Change: 2019-08-12 17:21:30.025924569 +0000 Birth: - File: /bin/ntfscat Size: 26728 Blocks: 56 IO Block: 4096 regular file Device: 802h/2050d Inode: 131176 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:30.029924404 +0000 Modify: 2019-03-21 21:33:01.000000000 +0000 Change: 2019-08-12 17:21:30.029924404 +0000 Birth: - File: /bin/ntfscluster Size: 34920 Blocks: 72 IO Block: 4096 regular file Device: 802h/2050d Inode: 131177 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:30.029924404 +0000 Modify: 2019-03-21 21:33:01.000000000 +0000 Change: 2019-08-12 17:21:30.029924404 +0000 Birth: - File: /bin/ntfscmp Size: 34920 Blocks: 72 IO Block: 4096 regular file Device: 802h/2050d Inode: 131178 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:30.029924404 +0000 Modify: 2019-03-21 21:33:01.000000000 +0000 Change: 2019-08-12 17:21:30.029924404 +0000 Birth: - File: /bin/ntfsfallocate Size: 34928 Blocks: 72 IO Block: 4096 regular file Device: 802h/2050d Inode: 131179 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:30.033924238 +0000 Modify: 2019-03-21 21:33:01.000000000 +0000 Change: 2019-08-12 17:21:30.033924238 +0000 Birth: - File: /bin/ntfsfix Size: 43120 Blocks: 88 IO Block: 4096 regular file Device: 802h/2050d Inode: 131180 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:30.033924238 +0000 Modify: 2019-03-21 21:33:01.000000000 +0000 Change: 2019-08-12 17:21:30.033924238 +0000 Birth: - File: /bin/ntfsinfo Size: 55416 Blocks: 112 IO Block: 4096 regular file Device: 802h/2050d Inode: 131181 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:30.037924072 +0000 Modify: 2019-03-21 21:33:01.000000000 +0000 Change: 2019-08-12 17:21:30.037924072 +0000 Birth: - File: /bin/ntfsls Size: 31928 Blocks: 64 IO Block: 4096 regular file Device: 802h/2050d Inode: 131182 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:30.041923907 +0000 Modify: 2019-03-21 21:33:01.000000000 +0000 Change: 2019-08-12 17:21:30.041923907 +0000 Birth: - File: /bin/ntfsmove Size: 30824 Blocks: 64 IO Block: 4096 regular file Device: 802h/2050d Inode: 131183 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:30.041923907 +0000 Modify: 2019-03-21 21:33:01.000000000 +0000 Change: 2019-08-12 17:21:30.041923907 +0000 Birth: - File: /bin/ntfsrecover Size: 116840 Blocks: 232 IO Block: 4096 regular file Device: 802h/2050d Inode: 131184 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:30.049923576 +0000 Modify: 2019-03-21 21:33:01.000000000 +0000 Change: 2019-08-12 17:21:30.049923576 +0000 Birth: - File: /bin/ntfssecaudit Size: 88672 Blocks: 176 IO Block: 4096 regular file Device: 802h/2050d Inode: 131185 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:30.049923576 +0000 Modify: 2019-03-21 21:33:01.000000000 +0000 Change: 2019-08-12 17:21:30.049923576 +0000 Birth: - File: /bin/ntfstruncate Size: 38944 Blocks: 80 IO Block: 4096 regular file Device: 802h/2050d Inode: 131186 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:30.053923410 +0000 Modify: 2019-03-21 21:33:01.000000000 +0000 Change: 2019-08-12 17:21:30.053923410 +0000 Birth: - File: /bin/ntfsusermap Size: 30744 Blocks: 64 IO Block: 4096 regular file Device: 802h/2050d Inode: 131187 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:30.053923410 +0000 Modify: 2019-03-21 21:33:01.000000000 +0000 Change: 2019-08-12 17:21:30.053923410 +0000 Birth: - File: /bin/ntfswipe Size: 47752 Blocks: 96 IO Block: 4096 regular file Device: 802h/2050d Inode: 131188 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:30.061923079 +0000 Modify: 2019-03-21 21:33:01.000000000 +0000 Change: 2019-08-12 17:21:30.061923079 +0000 Birth: - File: /bin/open -> openvt Size: 6 Blocks: 0 IO Block: 4096 symbolic link Device: 802h/2050d Inode: 131088 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-15 00:17:50.741378499 +0000 Modify: 2018-01-22 13:49:48.000000000 +0000 Change: 2019-08-12 17:21:29.485946877 +0000 Birth: - File: /bin/openvt Size: 18872 Blocks: 40 IO Block: 4096 regular file Device: 802h/2050d Inode: 131189 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:30.061923079 +0000 Modify: 2018-01-22 13:49:48.000000000 +0000 Change: 2019-08-12 17:21:30.061923079 +0000 Birth: - File: /bin/pidof -> /sbin/killall5 Size: 14 Blocks: 0 IO Block: 4096 symbolic link Device: 802h/2050d Inode: 131089 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-15 00:17:50.761379023 +0000 Modify: 2017-11-01 21:00:29.000000000 +0000 Change: 2019-08-12 17:21:29.485946877 +0000 Birth: - File: /bin/ping Size: 64424 Blocks: 128 IO Block: 4096 regular file Device: 802h/2050d Inode: 131190 Links: 1 Access: (4755/-rwsr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-01 22:16:53.113917581 +0000 Modify: 2019-06-28 11:05:23.000000000 +0000 Change: 2019-08-12 17:21:30.061923079 +0000 Birth: - File: /bin/ping4 -> ping Size: 4 Blocks: 0 IO Block: 4096 symbolic link Device: 802h/2050d Inode: 131090 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-15 00:17:50.781379547 +0000 Modify: 2019-06-28 11:05:23.000000000 +0000 Change: 2019-08-12 17:21:29.485946877 +0000 Birth: - File: /bin/ping6 -> ping Size: 4 Blocks: 0 IO Block: 4096 symbolic link Device: 802h/2050d Inode: 131091 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-15 00:17:50.797379966 +0000 Modify: 2019-06-28 11:05:23.000000000 +0000 Change: 2019-08-12 17:21:29.485946877 +0000 Birth: - File: /bin/plymouth Size: 38904 Blocks: 80 IO Block: 4096 regular file Device: 802h/2050d Inode: 131191 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-14 08:18:32.035928157 +0000 Modify: 2019-04-04 15:41:18.000000000 +0000 Change: 2019-08-12 17:21:30.069922749 +0000 Birth: - File: /bin/ps Size: 133432 Blocks: 264 IO Block: 4096 regular file Device: 802h/2050d Inode: 131192 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-10-28 19:09:27.519652445 +0000 Modify: 2018-05-14 12:01:40.000000000 +0000 Change: 2019-08-12 17:21:30.073922584 +0000 Birth: - File: /bin/pwd Size: 35000 Blocks: 72 IO Block: 4096 regular file Device: 802h/2050d Inode: 131193 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:30.073922584 +0000 Modify: 2018-01-18 09:43:49.000000000 +0000 Change: 2019-08-12 17:21:30.073922584 +0000 Birth: - File: /bin/rbash -> bash Size: 4 Blocks: 0 IO Block: 4096 symbolic link Device: 802h/2050d Inode: 131092 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-15 00:17:50.837381015 +0000 Modify: 2019-06-06 22:28:15.000000000 +0000 Change: 2019-08-12 17:21:29.485946877 +0000 Birth: - File: /bin/readlink Size: 43192 Blocks: 88 IO Block: 4096 regular file Device: 802h/2050d Inode: 131194 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-14 10:54:20.570474923 +0000 Modify: 2018-01-18 09:43:49.000000000 +0000 Change: 2019-08-12 17:21:30.073922584 +0000 Birth: - File: /bin/red Size: 89 Blocks: 8 IO Block: 4096 regular file Device: 802h/2050d Inode: 131195 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:30.073922584 +0000 Modify: 2016-04-26 21:54:36.000000000 +0000 Change: 2019-08-12 17:21:30.073922584 +0000 Birth: - File: /bin/rm Size: 63704 Blocks: 128 IO Block: 4096 regular file Device: 802h/2050d Inode: 131196 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-15 01:37:57.885396670 +0000 Modify: 2018-01-18 09:43:49.000000000 +0000 Change: 2019-08-12 17:21:30.081922252 +0000 Birth: - File: /bin/rmdir Size: 43192 Blocks: 88 IO Block: 4096 regular file Device: 802h/2050d Inode: 131197 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:30.081922252 +0000 Modify: 2018-01-18 09:43:49.000000000 +0000 Change: 2019-08-12 17:21:30.081922252 +0000 Birth: - File: /bin/rnano -> nano Size: 4 Blocks: 0 IO Block: 4096 symbolic link Device: 802h/2050d Inode: 131093 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-15 00:17:50.897382586 +0000 Modify: 2018-03-06 14:46:39.000000000 +0000 Change: 2019-08-12 17:21:29.485946877 +0000 Birth: - File: /bin/run-parts Size: 18760 Blocks: 40 IO Block: 4096 regular file Device: 802h/2050d Inode: 131198 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-14 05:17:28.584422537 +0000 Modify: 2017-12-30 18:15:02.000000000 +0000 Change: 2019-08-12 17:21:30.081922252 +0000 Birth: - File: /bin/sed Size: 109000 Blocks: 216 IO Block: 4096 regular file Device: 802h/2050d Inode: 131199 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-14 08:18:00.867764210 +0000 Modify: 2018-01-30 02:49:51.000000000 +0000 Change: 2019-08-12 17:21:30.085922087 +0000 Birth: - File: /bin/setfacl Size: 35512 Blocks: 72 IO Block: 4096 regular file Device: 802h/2050d Inode: 131200 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:30.085922087 +0000 Modify: 2017-04-21 20:44:54.000000000 +0000 Change: 2019-08-12 17:21:30.085922087 +0000 Birth: - File: /bin/setfont Size: 43144 Blocks: 88 IO Block: 4096 regular file Device: 802h/2050d Inode: 131201 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-14 08:18:32.936192488 +0000 Modify: 2018-01-22 13:49:48.000000000 +0000 Change: 2019-08-12 17:21:30.089921921 +0000 Birth: - File: /bin/setupcon Size: 39103 Blocks: 80 IO Block: 4096 regular file Device: 802h/2050d Inode: 131202 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:24:38.122656700 +0000 Modify: 2019-04-23 12:04:14.000000000 +0000 Change: 2019-08-12 17:21:30.093921755 +0000 Birth: - File: /bin/sh -> dash Size: 4 Blocks: 0 IO Block: 4096 symbolic link Device: 802h/2050d Inode: 131094 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-14 21:16:56.055822496 +0000 Modify: 2019-08-05 19:23:04.000000000 +0000 Change: 2019-08-12 17:21:29.485946877 +0000 Birth: - File: /bin/sh.distrib -> dash Size: 4 Blocks: 0 IO Block: 4096 symbolic link Device: 802h/2050d Inode: 131095 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-15 00:17:50.973384578 +0000 Modify: 2018-01-25 07:14:33.000000000 +0000 Change: 2019-08-12 17:21:29.485946877 +0000 Birth: - File: /bin/sleep Size: 35000 Blocks: 72 IO Block: 4096 regular file Device: 802h/2050d Inode: 131203 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-01 22:18:08.992464281 +0000 Modify: 2018-01-18 09:43:49.000000000 +0000 Change: 2019-08-12 17:21:30.097921590 +0000 Birth: - File: /bin/ss Size: 139904 Blocks: 280 IO Block: 4096 regular file Device: 802h/2050d Inode: 131204 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-14 15:36:03.526897959 +0000 Modify: 2018-02-26 15:21:30.000000000 +0000 Change: 2019-08-12 17:21:30.101921424 +0000 Birth: - File: /bin/static-sh -> busybox Size: 7 Blocks: 0 IO Block: 4096 symbolic link Device: 802h/2050d Inode: 131096 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-14 23:29:20.250367903 +0000 Modify: 2019-03-06 20:51:41.000000000 +0000 Change: 2019-08-12 17:21:29.485946877 +0000 Birth: - File: /bin/stty Size: 75992 Blocks: 152 IO Block: 4096 regular file Device: 802h/2050d Inode: 131205 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-12 19:43:10.723991008 +0000 Modify: 2018-01-18 09:43:49.000000000 +0000 Change: 2019-08-12 17:21:30.105921259 +0000 Birth: - File: /bin/su Size: 44664 Blocks: 88 IO Block: 4096 regular file Device: 802h/2050d Inode: 131206 Links: 1 Access: (4755/-rwsr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-13 21:52:13.551133801 +0000 Modify: 2019-03-22 19:05:38.000000000 +0000 Change: 2019-08-12 17:21:30.109921094 +0000 Birth: - File: /bin/sync Size: 35000 Blocks: 72 IO Block: 4096 regular file Device: 802h/2050d Inode: 131207 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-14 08:18:40.506907200 +0000 Modify: 2018-01-18 09:43:49.000000000 +0000 Change: 2019-08-12 17:21:30.109921094 +0000 Birth: - File: /bin/systemctl Size: 182352 Blocks: 360 IO Block: 4096 regular file Device: 802h/2050d Inode: 131211 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-14 08:18:01.023675168 +0000 Modify: 2019-09-05 03:59:51.000000000 +0000 Change: 2019-10-18 00:12:04.984676392 +0000 Birth: - File: /bin/systemd -> /lib/systemd/systemd Size: 20 Blocks: 0 IO Block: 4096 symbolic link Device: 802h/2050d Inode: 131346 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-15 00:17:51.061386884 +0000 Modify: 2019-09-05 03:59:51.000000000 +0000 Change: 2019-10-18 00:12:04.996677691 +0000 Birth: - File: /bin/systemd-ask-password Size: 10320 Blocks: 24 IO Block: 4096 regular file Device: 802h/2050d Inode: 131212 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-10-18 00:12:03.000000000 +0000 Modify: 2019-09-05 03:59:51.000000000 +0000 Change: 2019-10-18 00:12:04.984676392 +0000 Birth: - File: /bin/systemd-escape Size: 14400 Blocks: 32 IO Block: 4096 regular file Device: 802h/2050d Inode: 131213 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-10-18 00:12:03.000000000 +0000 Modify: 2019-09-05 03:59:51.000000000 +0000 Change: 2019-10-18 00:12:04.984676392 +0000 Birth: - File: /bin/systemd-hwdb Size: 84328 Blocks: 168 IO Block: 4096 regular file Device: 802h/2050d Inode: 131208 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-10-18 00:11:48.695122304 +0000 Modify: 2019-09-05 03:59:51.000000000 +0000 Change: 2019-10-18 00:11:48.067072790 +0000 Birth: - File: /bin/systemd-inhibit Size: 14416 Blocks: 32 IO Block: 4096 regular file Device: 802h/2050d Inode: 131214 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-10-18 00:12:03.000000000 +0000 Modify: 2019-09-05 03:59:51.000000000 +0000 Change: 2019-10-18 00:12:04.984676392 +0000 Birth: - File: /bin/systemd-machine-id-setup Size: 18496 Blocks: 40 IO Block: 4096 regular file Device: 802h/2050d Inode: 131215 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-10-18 00:12:05.488731680 +0000 Modify: 2019-09-05 03:59:51.000000000 +0000 Change: 2019-10-18 00:12:04.984676392 +0000 Birth: - File: /bin/systemd-notify Size: 14408 Blocks: 32 IO Block: 4096 regular file Device: 802h/2050d Inode: 131216 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-10-18 00:12:03.000000000 +0000 Modify: 2019-09-05 03:59:51.000000000 +0000 Change: 2019-10-18 00:12:04.984676392 +0000 Birth: - File: /bin/systemd-sysusers Size: 43080 Blocks: 88 IO Block: 4096 regular file Device: 802h/2050d Inode: 131217 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-10-18 00:12:03.000000000 +0000 Modify: 2019-09-05 03:59:51.000000000 +0000 Change: 2019-10-18 00:12:04.984676392 +0000 Birth: - File: /bin/systemd-tmpfiles Size: 71752 Blocks: 144 IO Block: 4096 regular file Device: 802h/2050d Inode: 131222 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-14 20:28:25.580327175 +0000 Modify: 2019-09-05 03:59:51.000000000 +0000 Change: 2019-10-18 00:12:04.984676392 +0000 Birth: - File: /bin/systemd-tty-ask-password-agent Size: 26696 Blocks: 56 IO Block: 4096 regular file Device: 802h/2050d Inode: 131345 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-10-18 00:12:03.000000000 +0000 Modify: 2019-09-05 03:59:51.000000000 +0000 Change: 2019-10-18 00:12:04.984676392 +0000 Birth: - File: /bin/tar Size: 423312 Blocks: 832 IO Block: 4096 regular file Device: 802h/2050d Inode: 131218 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-14 08:18:00.783812255 +0000 Modify: 2019-01-21 16:38:11.000000000 +0000 Change: 2019-08-12 17:21:30.157919107 +0000 Birth: - File: /bin/tempfile Size: 10104 Blocks: 24 IO Block: 4096 regular file Device: 802h/2050d Inode: 131219 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-14 08:19:13.642288621 +0000 Modify: 2017-12-30 18:15:02.000000000 +0000 Change: 2019-08-12 17:21:30.157919107 +0000 Birth: - File: /bin/touch Size: 88280 Blocks: 176 IO Block: 4096 regular file Device: 802h/2050d Inode: 131220 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-14 08:18:21.973914249 +0000 Modify: 2018-01-18 09:43:49.000000000 +0000 Change: 2019-08-12 17:21:30.157919107 +0000 Birth: - File: /bin/true Size: 30904 Blocks: 64 IO Block: 4096 regular file Device: 802h/2050d Inode: 131221 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-14 08:18:03.614351034 +0000 Modify: 2018-01-18 09:43:49.000000000 +0000 Change: 2019-08-12 17:21:30.157919107 +0000 Birth: - File: /bin/udevadm Size: 584072 Blocks: 1144 IO Block: 4096 regular file Device: 802h/2050d Inode: 131209 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-14 08:18:32.400035064 +0000 Modify: 2019-09-05 03:59:51.000000000 +0000 Change: 2019-10-18 00:11:48.067072790 +0000 Birth: - File: /bin/ulockmgr_server Size: 14328 Blocks: 32 IO Block: 4096 regular file Device: 802h/2050d Inode: 131223 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:30.177918280 +0000 Modify: 2016-08-11 12:52:18.000000000 +0000 Change: 2019-08-12 17:21:30.177918280 +0000 Birth: - File: /bin/umount Size: 26696 Blocks: 56 IO Block: 4096 regular file Device: 802h/2050d Inode: 131224 Links: 1 Access: (4755/-rwsr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-11 20:49:51.696707329 +0000 Modify: 2018-10-15 20:29:48.000000000 +0000 Change: 2019-08-12 17:21:30.177918280 +0000 Birth: - File: /bin/uname Size: 35032 Blocks: 72 IO Block: 4096 regular file Device: 802h/2050d Inode: 131225 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-15 04:33:55.883763457 +0000 Modify: 2018-01-18 09:43:49.000000000 +0000 Change: 2019-08-12 17:21:30.181918115 +0000 Birth: - File: /bin/uncompress Size: 2301 Blocks: 8 IO Block: 4096 regular file Device: 802h/2050d Inode: 131226 Links: 2 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:30.181918115 +0000 Modify: 2017-04-28 03:50:19.000000000 +0000 Change: 2019-08-12 17:21:30.181918115 +0000 Birth: - File: /bin/unicode_start Size: 2762 Blocks: 8 IO Block: 4096 regular file Device: 802h/2050d Inode: 131227 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:30.181918115 +0000 Modify: 2018-01-22 13:49:48.000000000 +0000 Change: 2019-08-12 17:21:30.181918115 +0000 Birth: - File: /bin/vdir Size: 133792 Blocks: 264 IO Block: 4096 regular file Device: 802h/2050d Inode: 131228 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:30.185917949 +0000 Modify: 2018-01-18 09:43:49.000000000 +0000 Change: 2019-08-12 17:21:30.185917949 +0000 Birth: - File: /bin/wdctl Size: 30800 Blocks: 64 IO Block: 4096 regular file Device: 802h/2050d Inode: 131229 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:30.185917949 +0000 Modify: 2018-10-15 20:29:48.000000000 +0000 Change: 2019-08-12 17:21:30.185917949 +0000 Birth: - File: /bin/which Size: 946 Blocks: 8 IO Block: 4096 regular file Device: 802h/2050d Inode: 131230 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-14 08:17:31.827105980 +0000 Modify: 2017-12-30 18:15:02.000000000 +0000 Change: 2019-08-12 17:21:30.185917949 +0000 Birth: - File: /bin/whiptail Size: 26632 Blocks: 56 IO Block: 4096 regular file Device: 802h/2050d Inode: 131231 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:30.185917949 +0000 Modify: 2018-01-12 16:42:24.000000000 +0000 Change: 2019-08-12 17:21:30.185917949 +0000 Birth: - File: /bin/ypdomainname -> hostname Size: 8 Blocks: 0 IO Block: 4096 symbolic link Device: 802h/2050d Inode: 131098 Links: 1 Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-11-15 00:17:51.337394117 +0000 Modify: 2018-01-31 12:08:15.000000000 +0000 Change: 2019-08-12 17:21:29.485946877 +0000 Birth: - File: /bin/zcat Size: 1937 Blocks: 8 IO Block: 4096 regular file Device: 802h/2050d Inode: 131232 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:30.185917949 +0000 Modify: 2017-04-28 03:50:19.000000000 +0000 Change: 2019-08-12 17:21:30.185917949 +0000 Birth: - File: /bin/zcmp Size: 1777 Blocks: 8 IO Block: 4096 regular file Device: 802h/2050d Inode: 131233 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:30.185917949 +0000 Modify: 2017-04-28 03:50:19.000000000 +0000 Change: 2019-08-12 17:21:30.185917949 +0000 Birth: - File: /bin/zdiff Size: 5764 Blocks: 16 IO Block: 4096 regular file Device: 802h/2050d Inode: 131234 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:30.193917619 +0000 Modify: 2017-04-28 03:50:19.000000000 +0000 Change: 2019-08-12 17:21:30.193917619 +0000 Birth: - File: /bin/zegrep Size: 140 Blocks: 8 IO Block: 4096 regular file Device: 802h/2050d Inode: 131235 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:30.193917619 +0000 Modify: 2017-04-28 03:50:19.000000000 +0000 Change: 2019-08-12 17:21:30.193917619 +0000 Birth: - File: /bin/zfgrep Size: 140 Blocks: 8 IO Block: 4096 regular file Device: 802h/2050d Inode: 131236 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:30.193917619 +0000 Modify: 2017-04-28 03:50:19.000000000 +0000 Change: 2019-08-12 17:21:30.193917619 +0000 Birth: - File: /bin/zforce Size: 2131 Blocks: 8 IO Block: 4096 regular file Device: 802h/2050d Inode: 131237 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:30.193917619 +0000 Modify: 2017-04-28 03:50:19.000000000 +0000 Change: 2019-08-12 17:21:30.193917619 +0000 Birth: - File: /bin/zgrep Size: 5938 Blocks: 16 IO Block: 4096 regular file Device: 802h/2050d Inode: 131238 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:30.193917619 +0000 Modify: 2017-04-28 03:50:19.000000000 +0000 Change: 2019-08-12 17:21:30.193917619 +0000 Birth: - File: /bin/zless Size: 2037 Blocks: 8 IO Block: 4096 regular file Device: 802h/2050d Inode: 131239 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:30.193917619 +0000 Modify: 2017-04-28 03:50:19.000000000 +0000 Change: 2019-08-12 17:21:30.193917619 +0000 Birth: - File: /bin/zmore Size: 1910 Blocks: 8 IO Block: 4096 regular file Device: 802h/2050d Inode: 131240 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:30.193917619 +0000 Modify: 2017-04-28 03:50:19.000000000 +0000 Change: 2019-08-12 17:21:30.193917619 +0000 Birth: - File: /bin/znew Size: 5047 Blocks: 16 IO Block: 4096 regular file Device: 802h/2050d Inode: 131241 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2019-08-12 17:21:30.193917619 +0000 Modify: 2017-04-28 03:50:19.000000000 +0000 Change: 2019-08-12 17:21:30.193917619 +0000 Birth: - jc-1.17.3/tests/fixtures/ubuntu-18.04/sysctl-a.json000066400000000000000000001005641415226333200216450ustar00rootroot00000000000000{"abi.vsyscall32": 1, "debug.exception-trace": 1, "debug.kprobes-optimization": 1, "dev.cdrom.autoclose": 1, "dev.cdrom.autoeject": 0, "dev.cdrom.check_media": 0, "dev.cdrom.debug": 0, "dev.cdrom.info": "CD-ROM information, Id: cdrom.c 3.20 2003/12/17\n\ndrive name:\t\tsr1\tsr0\ndrive speed:\t\t1\t1\ndrive # of slots:\t1\t1\nCan close tray:\t\t1\t1\nCan open tray:\t\t1\t1\nCan lock tray:\t\t1\t1\nCan change speed:\t1\t1\nCan select disk:\t0\t0\nCan read multisession:\t1\t1\nCan read MCN:\t\t1\t1\nReports media changed:\t1\t1\nCan play audio:\t\t1\t1\nCan write CD-R:\t\t1\t1\nCan write CD-RW:\t1\t1\nCan read DVD:\t\t1\t1\nCan write DVD-R:\t1\t1\nCan write DVD-RAM:\t1\t1\nCan read MRW:\t\t1\t1\nCan write MRW:\t\t1\t1\nCan write RAM:\t\t1\t1\n\n", "dev.cdrom.lock": 0, "dev.hpet.max-user-freq": 64, "dev.mac_hid.mouse_button2_keycode": 97, "dev.mac_hid.mouse_button3_keycode": 100, "dev.mac_hid.mouse_button_emulation": 0, "dev.raid.speed_limit_max": 200000, "dev.raid.speed_limit_min": 1000, "dev.scsi.logging_level": 0, "dev.tty.ldisc_autoload": 1, "fs.aio-max-nr": 65536, "fs.aio-nr": 0, "fs.binfmt_misc.status": "enabled", "fs.dentry-state": "46910\t16600\t45\t0\t0\t0", "fs.dir-notify-enable": 1, "fs.epoll.max_user_watches": 400302, "fs.file-max": 194386, "fs.file-nr": "1024\t0\t194386", "fs.inode-nr": "51130\t7369", "fs.inode-state": "51130\t7369\t0\t0\t0\t0\t0", "fs.inotify.max_queued_events": 16384, "fs.inotify.max_user_instances": 1024, "fs.inotify.max_user_watches": 8192, "fs.lease-break-time": 45, "fs.leases-enable": 1, "fs.mount-max": 100000, "fs.mqueue.msg_default": 10, "fs.mqueue.msg_max": 10, "fs.mqueue.msgsize_default": 8192, "fs.mqueue.msgsize_max": 8192, "fs.mqueue.queues_max": 256, "fs.nr_open": 1048576, "fs.overflowgid": 65534, "fs.overflowuid": 65534, "fs.pipe-max-size": 1048576, "fs.pipe-user-pages-hard": 0, "fs.pipe-user-pages-soft": 16384, "fs.quota.allocated_dquots": 0, "fs.quota.cache_hits": 0, "fs.quota.drops": 0, "fs.quota.free_dquots": 0, "fs.quota.lookups": 0, "fs.quota.reads": 0, "fs.quota.syncs": 78, "fs.quota.writes": 0, "fs.suid_dumpable": 2, "fs.xfs.error_level": 3, "fs.xfs.filestream_centisecs": 3000, "fs.xfs.inherit_noatime": 1, "fs.xfs.inherit_nodefrag": 1, "fs.xfs.inherit_nodump": 1, "fs.xfs.inherit_nosymlinks": 0, "fs.xfs.inherit_sync": 1, "fs.xfs.irix_sgid_inherit": 0, "fs.xfs.irix_symlink_mode": 0, "fs.xfs.panic_mask": 0, "fs.xfs.rotorstep": 1, "fs.xfs.speculative_cow_prealloc_lifetime": 1800, "fs.xfs.speculative_prealloc_lifetime": 300, "fs.xfs.stats_clear": 0, "fs.xfs.xfssyncd_centisecs": 3000, "kernel.acct": "4\t2\t30", "kernel.acpi_video_flags": 0, "kernel.auto_msgmni": 0, "kernel.bootloader_type": 114, "kernel.bootloader_version": 2, "kernel.cap_last_cap": 37, "kernel.core_pattern": "|/usr/share/apport/apport %p %s %c %d %P %E", "kernel.core_pipe_limit": 0, "kernel.core_uses_pid": 0, "kernel.ctrl-alt-del": 0, "kernel.dmesg_restrict": 0, "kernel.domainname": "(none)", "kernel.ftrace_dump_on_oops": 0, "kernel.ftrace_enabled": 1, "kernel.hardlockup_all_cpu_backtrace": 0, "kernel.hardlockup_panic": 0, "kernel.hostname": "kbrazil-ubuntu", "kernel.hotplug": "", "kernel.hung_task_check_count": 4194304, "kernel.hung_task_panic": 0, "kernel.hung_task_timeout_secs": 120, "kernel.hung_task_warnings": 10, "kernel.io_delay_type": 1, "kernel.kexec_load_disabled": 0, "kernel.keys.gc_delay": 300, "kernel.keys.maxbytes": 20000, "kernel.keys.maxkeys": 200, "kernel.keys.persistent_keyring_expiry": 259200, "kernel.keys.root_maxbytes": 25000000, "kernel.keys.root_maxkeys": 1000000, "kernel.kptr_restrict": 1, "kernel.max_lock_depth": 1024, "kernel.modprobe": "/sbin/modprobe", "kernel.modules_disabled": 0, "kernel.msg_next_id": -1, "kernel.msgmax": 8192, "kernel.msgmnb": 16384, "kernel.msgmni": 32000, "kernel.ngroups_max": 65536, "kernel.nmi_watchdog": 0, "kernel.ns_last_pid": 23649, "kernel.numa_balancing": 0, "kernel.numa_balancing_scan_delay_ms": 1000, "kernel.numa_balancing_scan_period_max_ms": 60000, "kernel.numa_balancing_scan_period_min_ms": 1000, "kernel.numa_balancing_scan_size_mb": 256, "kernel.osrelease": "4.15.0-101-generic", "kernel.ostype": "Linux", "kernel.overflowgid": 65534, "kernel.overflowuid": 65534, "kernel.panic": 0, "kernel.panic_on_io_nmi": 0, "kernel.panic_on_oops": 0, "kernel.panic_on_rcu_stall": 0, "kernel.panic_on_unrecovered_nmi": 0, "kernel.panic_on_warn": 0, "kernel.perf_cpu_time_max_percent": 25, "kernel.perf_event_max_contexts_per_stack": 8, "kernel.perf_event_max_sample_rate": 100000, "kernel.perf_event_max_stack": 127, "kernel.perf_event_mlock_kb": 516, "kernel.perf_event_paranoid": 3, "kernel.pid_max": 131072, "kernel.poweroff_cmd": "/sbin/poweroff", "kernel.print-fatal-signals": 0, "kernel.printk": "4\t4\t1\t7", "kernel.printk_delay": 0, "kernel.printk_devkmsg": "ratelimit", "kernel.printk_ratelimit": 5, "kernel.printk_ratelimit_burst": 10, "kernel.pty.max": 4096, "kernel.pty.nr": 0, "kernel.pty.reserve": 1024, "kernel.random.boot_id": "cf190d28-d4c9-4d52-8f8a-ce556669abf5", "kernel.random.entropy_avail": 565, "kernel.random.poolsize": 4096, "kernel.random.read_wakeup_threshold": 64, "kernel.random.urandom_min_reseed_secs": 60, "kernel.random.uuid": "7100e887-f0ae-450e-b9c3-972bb4f7f30f", "kernel.random.write_wakeup_threshold": 896, "kernel.randomize_va_space": 2, "kernel.real-root-dev": 0, "kernel.sched_autogroup_enabled": 1, "kernel.sched_cfs_bandwidth_slice_us": 5000, "kernel.sched_child_runs_first": 0, "kernel.sched_latency_ns": 6000000, "kernel.sched_migration_cost_ns": 500000, "kernel.sched_min_granularity_ns": 750000, "kernel.sched_nr_migrate": 32, "kernel.sched_rr_timeslice_ms": 100, "kernel.sched_rt_period_us": 1000000, "kernel.sched_rt_runtime_us": 950000, "kernel.sched_schedstats": 0, "kernel.sched_time_avg_ms": 1000, "kernel.sched_tunable_scaling": 1, "kernel.sched_wakeup_granularity_ns": 1000000, "kernel.seccomp.actions_avail": "kill_process kill_thread trap errno trace log allow", "kernel.seccomp.actions_logged": "kill_process kill_thread trap errno trace log", "kernel.sem": "32000\t1024000000\t500\t32000", "kernel.sem_next_id": -1, "kernel.sg-big-buff": 32768, "kernel.shm_next_id": -1, "kernel.shm_rmid_forced": 0, "kernel.shmall": 18446744073692774399, "kernel.shmmax": 18446744073692774399, "kernel.shmmni": 4096, "kernel.soft_watchdog": 1, "kernel.softlockup_all_cpu_backtrace": 0, "kernel.softlockup_panic": 0, "kernel.stack_tracer_enabled": 0, "kernel.sysctl_writes_strict": 1, "kernel.sysrq": 176, "kernel.tainted": 0, "kernel.threads-max": 15270, "kernel.timer_migration": 1, "kernel.traceoff_on_warning": 0, "kernel.tracepoint_printk": 0, "kernel.unknown_nmi_panic": 0, "kernel.unprivileged_bpf_disabled": 0, "kernel.unprivileged_userns_clone": 1, "kernel.version": "#102-Ubuntu SMP Mon May 11 10:07:26 UTC 2020", "kernel.watchdog": 1, "kernel.watchdog_cpumask": "0-127", "kernel.watchdog_thresh": 10, "kernel.yama.ptrace_scope": 1, "net.core.bpf_jit_enable": 1, "net.core.busy_poll": 0, "net.core.busy_read": 0, "net.core.default_qdisc": "fq_codel", "net.core.dev_weight": 64, "net.core.dev_weight_rx_bias": 1, "net.core.dev_weight_tx_bias": 1, "net.core.flow_limit_cpu_bitmap": "00000000,00000000,00000000,00000000", "net.core.flow_limit_table_len": 4096, "net.core.max_skb_frags": 17, "net.core.message_burst": 10, "net.core.message_cost": 5, "net.core.netdev_budget": 300, "net.core.netdev_budget_usecs": 2000, "net.core.netdev_max_backlog": 1000, "net.core.netdev_rss_key": "00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00", "net.core.netdev_tstamp_prequeue": 1, "net.core.optmem_max": 20480, "net.core.rmem_default": 212992, "net.core.rmem_max": 212992, "net.core.rps_sock_flow_entries": 0, "net.core.somaxconn": 128, "net.core.tstamp_allow_data": 1, "net.core.warnings": 0, "net.core.wmem_default": 212992, "net.core.wmem_max": 212992, "net.core.xfrm_acq_expires": 30, "net.core.xfrm_aevent_etime": 10, "net.core.xfrm_aevent_rseqth": 2, "net.core.xfrm_larval_drop": 1, "net.ipv4.cipso_cache_bucket_size": 10, "net.ipv4.cipso_cache_enable": 1, "net.ipv4.cipso_rbm_optfmt": 0, "net.ipv4.cipso_rbm_strictvalid": 1, "net.ipv4.conf.all.accept_local": 0, "net.ipv4.conf.all.accept_redirects": 1, "net.ipv4.conf.all.accept_source_route": 0, "net.ipv4.conf.all.arp_accept": 0, "net.ipv4.conf.all.arp_announce": 0, "net.ipv4.conf.all.arp_filter": 0, "net.ipv4.conf.all.arp_ignore": 0, "net.ipv4.conf.all.arp_notify": 0, "net.ipv4.conf.all.bootp_relay": 0, "net.ipv4.conf.all.disable_policy": 0, "net.ipv4.conf.all.disable_xfrm": 0, "net.ipv4.conf.all.drop_gratuitous_arp": 0, "net.ipv4.conf.all.drop_unicast_in_l2_multicast": 0, "net.ipv4.conf.all.force_igmp_version": 0, "net.ipv4.conf.all.forwarding": 0, "net.ipv4.conf.all.igmpv2_unsolicited_report_interval": 10000, "net.ipv4.conf.all.igmpv3_unsolicited_report_interval": 1000, "net.ipv4.conf.all.ignore_routes_with_linkdown": 0, "net.ipv4.conf.all.log_martians": 0, "net.ipv4.conf.all.mc_forwarding": 0, "net.ipv4.conf.all.medium_id": 0, "net.ipv4.conf.all.promote_secondaries": 1, "net.ipv4.conf.all.proxy_arp": 0, "net.ipv4.conf.all.proxy_arp_pvlan": 0, "net.ipv4.conf.all.route_localnet": 0, "net.ipv4.conf.all.rp_filter": 1, "net.ipv4.conf.all.secure_redirects": 1, "net.ipv4.conf.all.send_redirects": 1, "net.ipv4.conf.all.shared_media": 1, "net.ipv4.conf.all.src_valid_mark": 0, "net.ipv4.conf.all.tag": 0, "net.ipv4.conf.default.accept_local": 0, "net.ipv4.conf.default.accept_redirects": 1, "net.ipv4.conf.default.accept_source_route": 1, "net.ipv4.conf.default.arp_accept": 0, "net.ipv4.conf.default.arp_announce": 0, "net.ipv4.conf.default.arp_filter": 0, "net.ipv4.conf.default.arp_ignore": 0, "net.ipv4.conf.default.arp_notify": 0, "net.ipv4.conf.default.bootp_relay": 0, "net.ipv4.conf.default.disable_policy": 0, "net.ipv4.conf.default.disable_xfrm": 0, "net.ipv4.conf.default.drop_gratuitous_arp": 0, "net.ipv4.conf.default.drop_unicast_in_l2_multicast": 0, "net.ipv4.conf.default.force_igmp_version": 0, "net.ipv4.conf.default.forwarding": 0, "net.ipv4.conf.default.igmpv2_unsolicited_report_interval": 10000, "net.ipv4.conf.default.igmpv3_unsolicited_report_interval": 1000, "net.ipv4.conf.default.ignore_routes_with_linkdown": 0, "net.ipv4.conf.default.log_martians": 0, "net.ipv4.conf.default.mc_forwarding": 0, "net.ipv4.conf.default.medium_id": 0, "net.ipv4.conf.default.promote_secondaries": 0, "net.ipv4.conf.default.proxy_arp": 0, "net.ipv4.conf.default.proxy_arp_pvlan": 0, "net.ipv4.conf.default.route_localnet": 0, "net.ipv4.conf.default.rp_filter": 1, "net.ipv4.conf.default.secure_redirects": 1, "net.ipv4.conf.default.send_redirects": 1, "net.ipv4.conf.default.shared_media": 1, "net.ipv4.conf.default.src_valid_mark": 0, "net.ipv4.conf.default.tag": 0, "net.ipv4.conf.ens33.accept_local": 0, "net.ipv4.conf.ens33.accept_redirects": 1, "net.ipv4.conf.ens33.accept_source_route": 1, "net.ipv4.conf.ens33.arp_accept": 0, "net.ipv4.conf.ens33.arp_announce": 0, "net.ipv4.conf.ens33.arp_filter": 0, "net.ipv4.conf.ens33.arp_ignore": 0, "net.ipv4.conf.ens33.arp_notify": 0, "net.ipv4.conf.ens33.bootp_relay": 0, "net.ipv4.conf.ens33.disable_policy": 0, "net.ipv4.conf.ens33.disable_xfrm": 0, "net.ipv4.conf.ens33.drop_gratuitous_arp": 0, "net.ipv4.conf.ens33.drop_unicast_in_l2_multicast": 0, "net.ipv4.conf.ens33.force_igmp_version": 0, "net.ipv4.conf.ens33.forwarding": 0, "net.ipv4.conf.ens33.igmpv2_unsolicited_report_interval": 10000, "net.ipv4.conf.ens33.igmpv3_unsolicited_report_interval": 1000, "net.ipv4.conf.ens33.ignore_routes_with_linkdown": 0, "net.ipv4.conf.ens33.log_martians": 0, "net.ipv4.conf.ens33.mc_forwarding": 0, "net.ipv4.conf.ens33.medium_id": 0, "net.ipv4.conf.ens33.promote_secondaries": 0, "net.ipv4.conf.ens33.proxy_arp": 0, "net.ipv4.conf.ens33.proxy_arp_pvlan": 0, "net.ipv4.conf.ens33.route_localnet": 0, "net.ipv4.conf.ens33.rp_filter": 1, "net.ipv4.conf.ens33.secure_redirects": 1, "net.ipv4.conf.ens33.send_redirects": 1, "net.ipv4.conf.ens33.shared_media": 1, "net.ipv4.conf.ens33.src_valid_mark": 0, "net.ipv4.conf.ens33.tag": 0, "net.ipv4.conf.lo.accept_local": 0, "net.ipv4.conf.lo.accept_redirects": 1, "net.ipv4.conf.lo.accept_source_route": 1, "net.ipv4.conf.lo.arp_accept": 0, "net.ipv4.conf.lo.arp_announce": 0, "net.ipv4.conf.lo.arp_filter": 0, "net.ipv4.conf.lo.arp_ignore": 0, "net.ipv4.conf.lo.arp_notify": 0, "net.ipv4.conf.lo.bootp_relay": 0, "net.ipv4.conf.lo.disable_policy": 1, "net.ipv4.conf.lo.disable_xfrm": 1, "net.ipv4.conf.lo.drop_gratuitous_arp": 0, "net.ipv4.conf.lo.drop_unicast_in_l2_multicast": 0, "net.ipv4.conf.lo.force_igmp_version": 0, "net.ipv4.conf.lo.forwarding": 0, "net.ipv4.conf.lo.igmpv2_unsolicited_report_interval": 10000, "net.ipv4.conf.lo.igmpv3_unsolicited_report_interval": 1000, "net.ipv4.conf.lo.ignore_routes_with_linkdown": 0, "net.ipv4.conf.lo.log_martians": 0, "net.ipv4.conf.lo.mc_forwarding": 0, "net.ipv4.conf.lo.medium_id": 0, "net.ipv4.conf.lo.promote_secondaries": 0, "net.ipv4.conf.lo.proxy_arp": 0, "net.ipv4.conf.lo.proxy_arp_pvlan": 0, "net.ipv4.conf.lo.route_localnet": 0, "net.ipv4.conf.lo.rp_filter": 0, "net.ipv4.conf.lo.secure_redirects": 1, "net.ipv4.conf.lo.send_redirects": 1, "net.ipv4.conf.lo.shared_media": 1, "net.ipv4.conf.lo.src_valid_mark": 0, "net.ipv4.conf.lo.tag": 0, "net.ipv4.fib_multipath_hash_policy": 0, "net.ipv4.fib_multipath_use_neigh": 0, "net.ipv4.fwmark_reflect": 0, "net.ipv4.icmp_echo_ignore_all": 0, "net.ipv4.icmp_echo_ignore_broadcasts": 1, "net.ipv4.icmp_errors_use_inbound_ifaddr": 0, "net.ipv4.icmp_ignore_bogus_error_responses": 1, "net.ipv4.icmp_msgs_burst": 50, "net.ipv4.icmp_msgs_per_sec": 1000, "net.ipv4.icmp_ratelimit": 1000, "net.ipv4.icmp_ratemask": 6168, "net.ipv4.igmp_link_local_mcast_reports": 1, "net.ipv4.igmp_max_memberships": 20, "net.ipv4.igmp_max_msf": 10, "net.ipv4.igmp_qrv": 2, "net.ipv4.inet_peer_maxttl": 600, "net.ipv4.inet_peer_minttl": 120, "net.ipv4.inet_peer_threshold": 65664, "net.ipv4.ip_default_ttl": 64, "net.ipv4.ip_dynaddr": 0, "net.ipv4.ip_early_demux": 1, "net.ipv4.ip_forward": 0, "net.ipv4.ip_forward_use_pmtu": 0, "net.ipv4.ip_local_port_range": "32768\t60999", "net.ipv4.ip_local_reserved_ports": "", "net.ipv4.ip_no_pmtu_disc": 0, "net.ipv4.ip_nonlocal_bind": 0, "net.ipv4.ip_unprivileged_port_start": 1024, "net.ipv4.ipfrag_high_thresh": 262144, "net.ipv4.ipfrag_low_thresh": 196608, "net.ipv4.ipfrag_max_dist": 64, "net.ipv4.ipfrag_secret_interval": 0, "net.ipv4.ipfrag_time": 30, "net.ipv4.neigh.default.anycast_delay": 100, "net.ipv4.neigh.default.app_solicit": 0, "net.ipv4.neigh.default.base_reachable_time_ms": 30000, "net.ipv4.neigh.default.delay_first_probe_time": 5, "net.ipv4.neigh.default.gc_interval": 30, "net.ipv4.neigh.default.gc_stale_time": 60, "net.ipv4.neigh.default.gc_thresh1": 128, "net.ipv4.neigh.default.gc_thresh2": 512, "net.ipv4.neigh.default.gc_thresh3": 1024, "net.ipv4.neigh.default.locktime": 100, "net.ipv4.neigh.default.mcast_resolicit": 0, "net.ipv4.neigh.default.mcast_solicit": 3, "net.ipv4.neigh.default.proxy_delay": 80, "net.ipv4.neigh.default.proxy_qlen": 64, "net.ipv4.neigh.default.retrans_time_ms": 1000, "net.ipv4.neigh.default.ucast_solicit": 3, "net.ipv4.neigh.default.unres_qlen": 101, "net.ipv4.neigh.default.unres_qlen_bytes": 212992, "net.ipv4.neigh.ens33.anycast_delay": 100, "net.ipv4.neigh.ens33.app_solicit": 0, "net.ipv4.neigh.ens33.base_reachable_time_ms": 30000, "net.ipv4.neigh.ens33.delay_first_probe_time": 5, "net.ipv4.neigh.ens33.gc_stale_time": 60, "net.ipv4.neigh.ens33.locktime": 100, "net.ipv4.neigh.ens33.mcast_resolicit": 0, "net.ipv4.neigh.ens33.mcast_solicit": 3, "net.ipv4.neigh.ens33.proxy_delay": 80, "net.ipv4.neigh.ens33.proxy_qlen": 64, "net.ipv4.neigh.ens33.retrans_time_ms": 1000, "net.ipv4.neigh.ens33.ucast_solicit": 3, "net.ipv4.neigh.ens33.unres_qlen": 101, "net.ipv4.neigh.ens33.unres_qlen_bytes": 212992, "net.ipv4.neigh.lo.anycast_delay": 100, "net.ipv4.neigh.lo.app_solicit": 0, "net.ipv4.neigh.lo.base_reachable_time_ms": 30000, "net.ipv4.neigh.lo.delay_first_probe_time": 5, "net.ipv4.neigh.lo.gc_stale_time": 60, "net.ipv4.neigh.lo.locktime": 100, "net.ipv4.neigh.lo.mcast_resolicit": 0, "net.ipv4.neigh.lo.mcast_solicit": 3, "net.ipv4.neigh.lo.proxy_delay": 80, "net.ipv4.neigh.lo.proxy_qlen": 64, "net.ipv4.neigh.lo.retrans_time_ms": 1000, "net.ipv4.neigh.lo.ucast_solicit": 3, "net.ipv4.neigh.lo.unres_qlen": 101, "net.ipv4.neigh.lo.unres_qlen_bytes": 212992, "net.ipv4.ping_group_range": "1\t0", "net.ipv4.route.error_burst": 1250, "net.ipv4.route.error_cost": 250, "net.ipv4.route.gc_elasticity": 8, "net.ipv4.route.gc_interval": 60, "net.ipv4.route.gc_min_interval": 0, "net.ipv4.route.gc_min_interval_ms": 500, "net.ipv4.route.gc_thresh": -1, "net.ipv4.route.gc_timeout": 300, "net.ipv4.route.max_size": 2147483647, "net.ipv4.route.min_adv_mss": 256, "net.ipv4.route.min_pmtu": 552, "net.ipv4.route.mtu_expires": 600, "net.ipv4.route.redirect_load": 5, "net.ipv4.route.redirect_number": 9, "net.ipv4.route.redirect_silence": 5120, "net.ipv4.tcp_abort_on_overflow": 0, "net.ipv4.tcp_adv_win_scale": 1, "net.ipv4.tcp_allowed_congestion_control": "reno cubic", "net.ipv4.tcp_app_win": 31, "net.ipv4.tcp_autocorking": 1, "net.ipv4.tcp_available_congestion_control": "reno cubic", "net.ipv4.tcp_available_ulp": "", "net.ipv4.tcp_base_mss": 1024, "net.ipv4.tcp_challenge_ack_limit": 1000, "net.ipv4.tcp_congestion_control": "cubic", "net.ipv4.tcp_dsack": 1, "net.ipv4.tcp_early_demux": 1, "net.ipv4.tcp_early_retrans": 3, "net.ipv4.tcp_ecn": 2, "net.ipv4.tcp_ecn_fallback": 1, "net.ipv4.tcp_fack": 0, "net.ipv4.tcp_fastopen": 1, "net.ipv4.tcp_fastopen_blackhole_timeout_sec": 3600, "net.ipv4.tcp_fin_timeout": 60, "net.ipv4.tcp_frto": 2, "net.ipv4.tcp_fwmark_accept": 0, "net.ipv4.tcp_invalid_ratelimit": 500, "net.ipv4.tcp_keepalive_intvl": 75, "net.ipv4.tcp_keepalive_probes": 9, "net.ipv4.tcp_keepalive_time": 7200, "net.ipv4.tcp_l3mdev_accept": 0, "net.ipv4.tcp_limit_output_bytes": 262144, "net.ipv4.tcp_low_latency": 0, "net.ipv4.tcp_max_orphans": 8192, "net.ipv4.tcp_max_reordering": 300, "net.ipv4.tcp_max_syn_backlog": 128, "net.ipv4.tcp_max_tw_buckets": 8192, "net.ipv4.tcp_mem": "22113\t29485\t44226", "net.ipv4.tcp_min_rtt_wlen": 300, "net.ipv4.tcp_min_snd_mss": 48, "net.ipv4.tcp_min_tso_segs": 2, "net.ipv4.tcp_moderate_rcvbuf": 1, "net.ipv4.tcp_mtu_probing": 0, "net.ipv4.tcp_no_metrics_save": 0, "net.ipv4.tcp_notsent_lowat": 4294967295, "net.ipv4.tcp_orphan_retries": 0, "net.ipv4.tcp_pacing_ca_ratio": 120, "net.ipv4.tcp_pacing_ss_ratio": 200, "net.ipv4.tcp_probe_interval": 600, "net.ipv4.tcp_probe_threshold": 8, "net.ipv4.tcp_recovery": 1, "net.ipv4.tcp_reordering": 3, "net.ipv4.tcp_retrans_collapse": 1, "net.ipv4.tcp_retries1": 3, "net.ipv4.tcp_retries2": 15, "net.ipv4.tcp_rfc1337": 0, "net.ipv4.tcp_rmem": "4096\t131072\t6291456", "net.ipv4.tcp_sack": 1, "net.ipv4.tcp_slow_start_after_idle": 1, "net.ipv4.tcp_stdurg": 0, "net.ipv4.tcp_syn_retries": 6, "net.ipv4.tcp_synack_retries": 5, "net.ipv4.tcp_syncookies": 1, "net.ipv4.tcp_thin_linear_timeouts": 0, "net.ipv4.tcp_timestamps": 1, "net.ipv4.tcp_tso_win_divisor": 3, "net.ipv4.tcp_tw_reuse": 0, "net.ipv4.tcp_window_scaling": 1, "net.ipv4.tcp_wmem": "4096\t16384\t4194304", "net.ipv4.tcp_workaround_signed_windows": 0, "net.ipv4.udp_early_demux": 1, "net.ipv4.udp_l3mdev_accept": 0, "net.ipv4.udp_mem": "44226\t58970\t88452", "net.ipv4.udp_rmem_min": 4096, "net.ipv4.udp_wmem_min": 4096, "net.ipv4.xfrm4_gc_thresh": 32768, "net.ipv6.anycast_src_echo_reply": 0, "net.ipv6.auto_flowlabels": 1, "net.ipv6.bindv6only": 0, "net.ipv6.calipso_cache_bucket_size": 10, "net.ipv6.calipso_cache_enable": 1, "net.ipv6.conf.all.accept_dad": 0, "net.ipv6.conf.all.accept_ra": 1, "net.ipv6.conf.all.accept_ra_defrtr": 1, "net.ipv6.conf.all.accept_ra_from_local": 0, "net.ipv6.conf.all.accept_ra_min_hop_limit": 1, "net.ipv6.conf.all.accept_ra_mtu": 1, "net.ipv6.conf.all.accept_ra_pinfo": 1, "net.ipv6.conf.all.accept_ra_rt_info_max_plen": 0, "net.ipv6.conf.all.accept_ra_rt_info_min_plen": 0, "net.ipv6.conf.all.accept_ra_rtr_pref": 1, "net.ipv6.conf.all.accept_redirects": 1, "net.ipv6.conf.all.accept_source_route": 0, "net.ipv6.conf.all.addr_gen_mode": 0, "net.ipv6.conf.all.autoconf": 1, "net.ipv6.conf.all.dad_transmits": 1, "net.ipv6.conf.all.disable_ipv6": 0, "net.ipv6.conf.all.disable_policy": 0, "net.ipv6.conf.all.drop_unicast_in_l2_multicast": 0, "net.ipv6.conf.all.drop_unsolicited_na": 0, "net.ipv6.conf.all.enhanced_dad": 1, "net.ipv6.conf.all.force_mld_version": 0, "net.ipv6.conf.all.force_tllao": 0, "net.ipv6.conf.all.forwarding": 0, "net.ipv6.conf.all.hop_limit": 64, "net.ipv6.conf.all.ignore_routes_with_linkdown": 0, "net.ipv6.conf.all.keep_addr_on_down": 0, "net.ipv6.conf.all.max_addresses": 16, "net.ipv6.conf.all.max_desync_factor": 600, "net.ipv6.conf.all.mc_forwarding": 0, "net.ipv6.conf.all.mldv1_unsolicited_report_interval": 10000, "net.ipv6.conf.all.mldv2_unsolicited_report_interval": 1000, "net.ipv6.conf.all.mtu": 1280, "net.ipv6.conf.all.ndisc_notify": 0, "net.ipv6.conf.all.ndisc_tclass": 0, "net.ipv6.conf.all.proxy_ndp": 0, "net.ipv6.conf.all.regen_max_retry": 3, "net.ipv6.conf.all.router_probe_interval": 60, "net.ipv6.conf.all.router_solicitation_delay": 1, "net.ipv6.conf.all.router_solicitation_interval": 4, "net.ipv6.conf.all.router_solicitation_max_interval": 3600, "net.ipv6.conf.all.router_solicitations": -1, "net.ipv6.conf.all.seg6_enabled": 0, "net.ipv6.conf.all.seg6_require_hmac": 0, "net.ipv6.conf.all.suppress_frag_ndisc": 1, "net.ipv6.conf.all.temp_prefered_lft": 86400, "net.ipv6.conf.all.temp_valid_lft": 604800, "net.ipv6.conf.all.use_oif_addrs_only": 0, "net.ipv6.conf.all.use_tempaddr": 0, "net.ipv6.conf.default.accept_dad": 1, "net.ipv6.conf.default.accept_ra": 1, "net.ipv6.conf.default.accept_ra_defrtr": 1, "net.ipv6.conf.default.accept_ra_from_local": 0, "net.ipv6.conf.default.accept_ra_min_hop_limit": 1, "net.ipv6.conf.default.accept_ra_mtu": 1, "net.ipv6.conf.default.accept_ra_pinfo": 1, "net.ipv6.conf.default.accept_ra_rt_info_max_plen": 0, "net.ipv6.conf.default.accept_ra_rt_info_min_plen": 0, "net.ipv6.conf.default.accept_ra_rtr_pref": 1, "net.ipv6.conf.default.accept_redirects": 1, "net.ipv6.conf.default.accept_source_route": 0, "net.ipv6.conf.default.addr_gen_mode": 0, "net.ipv6.conf.default.autoconf": 1, "net.ipv6.conf.default.dad_transmits": 1, "net.ipv6.conf.default.disable_ipv6": 0, "net.ipv6.conf.default.disable_policy": 0, "net.ipv6.conf.default.drop_unicast_in_l2_multicast": 0, "net.ipv6.conf.default.drop_unsolicited_na": 0, "net.ipv6.conf.default.enhanced_dad": 1, "net.ipv6.conf.default.force_mld_version": 0, "net.ipv6.conf.default.force_tllao": 0, "net.ipv6.conf.default.forwarding": 0, "net.ipv6.conf.default.hop_limit": 64, "net.ipv6.conf.default.ignore_routes_with_linkdown": 0, "net.ipv6.conf.default.keep_addr_on_down": 0, "net.ipv6.conf.default.max_addresses": 16, "net.ipv6.conf.default.max_desync_factor": 600, "net.ipv6.conf.default.mc_forwarding": 0, "net.ipv6.conf.default.mldv1_unsolicited_report_interval": 10000, "net.ipv6.conf.default.mldv2_unsolicited_report_interval": 1000, "net.ipv6.conf.default.mtu": 1280, "net.ipv6.conf.default.ndisc_notify": 0, "net.ipv6.conf.default.ndisc_tclass": 0, "net.ipv6.conf.default.proxy_ndp": 0, "net.ipv6.conf.default.regen_max_retry": 3, "net.ipv6.conf.default.router_probe_interval": 60, "net.ipv6.conf.default.router_solicitation_delay": 1, "net.ipv6.conf.default.router_solicitation_interval": 4, "net.ipv6.conf.default.router_solicitation_max_interval": 3600, "net.ipv6.conf.default.router_solicitations": -1, "net.ipv6.conf.default.seg6_enabled": 0, "net.ipv6.conf.default.seg6_require_hmac": 0, "net.ipv6.conf.default.suppress_frag_ndisc": 1, "net.ipv6.conf.default.temp_prefered_lft": 86400, "net.ipv6.conf.default.temp_valid_lft": 604800, "net.ipv6.conf.default.use_oif_addrs_only": 0, "net.ipv6.conf.default.use_tempaddr": 0, "net.ipv6.conf.ens33.accept_dad": 1, "net.ipv6.conf.ens33.accept_ra": 0, "net.ipv6.conf.ens33.accept_ra_defrtr": 1, "net.ipv6.conf.ens33.accept_ra_from_local": 0, "net.ipv6.conf.ens33.accept_ra_min_hop_limit": 1, "net.ipv6.conf.ens33.accept_ra_mtu": 1, "net.ipv6.conf.ens33.accept_ra_pinfo": 1, "net.ipv6.conf.ens33.accept_ra_rt_info_max_plen": 0, "net.ipv6.conf.ens33.accept_ra_rt_info_min_plen": 0, "net.ipv6.conf.ens33.accept_ra_rtr_pref": 1, "net.ipv6.conf.ens33.accept_redirects": 1, "net.ipv6.conf.ens33.accept_source_route": 0, "net.ipv6.conf.ens33.addr_gen_mode": 0, "net.ipv6.conf.ens33.autoconf": 1, "net.ipv6.conf.ens33.dad_transmits": 1, "net.ipv6.conf.ens33.disable_ipv6": 0, "net.ipv6.conf.ens33.disable_policy": 0, "net.ipv6.conf.ens33.drop_unicast_in_l2_multicast": 0, "net.ipv6.conf.ens33.drop_unsolicited_na": 0, "net.ipv6.conf.ens33.enhanced_dad": 1, "net.ipv6.conf.ens33.force_mld_version": 0, "net.ipv6.conf.ens33.force_tllao": 0, "net.ipv6.conf.ens33.forwarding": 0, "net.ipv6.conf.ens33.hop_limit": 64, "net.ipv6.conf.ens33.ignore_routes_with_linkdown": 0, "net.ipv6.conf.ens33.keep_addr_on_down": 0, "net.ipv6.conf.ens33.max_addresses": 16, "net.ipv6.conf.ens33.max_desync_factor": 600, "net.ipv6.conf.ens33.mc_forwarding": 0, "net.ipv6.conf.ens33.mldv1_unsolicited_report_interval": 10000, "net.ipv6.conf.ens33.mldv2_unsolicited_report_interval": 1000, "net.ipv6.conf.ens33.mtu": 1500, "net.ipv6.conf.ens33.ndisc_notify": 0, "net.ipv6.conf.ens33.ndisc_tclass": 0, "net.ipv6.conf.ens33.proxy_ndp": 0, "net.ipv6.conf.ens33.regen_max_retry": 3, "net.ipv6.conf.ens33.router_probe_interval": 60, "net.ipv6.conf.ens33.router_solicitation_delay": 1, "net.ipv6.conf.ens33.router_solicitation_interval": 4, "net.ipv6.conf.ens33.router_solicitation_max_interval": 3600, "net.ipv6.conf.ens33.router_solicitations": -1, "net.ipv6.conf.ens33.seg6_enabled": 0, "net.ipv6.conf.ens33.seg6_require_hmac": 0, "net.ipv6.conf.ens33.suppress_frag_ndisc": 1, "net.ipv6.conf.ens33.temp_prefered_lft": 86400, "net.ipv6.conf.ens33.temp_valid_lft": 604800, "net.ipv6.conf.ens33.use_oif_addrs_only": 0, "net.ipv6.conf.ens33.use_tempaddr": 0, "net.ipv6.conf.lo.accept_dad": -1, "net.ipv6.conf.lo.accept_ra": 1, "net.ipv6.conf.lo.accept_ra_defrtr": 1, "net.ipv6.conf.lo.accept_ra_from_local": 0, "net.ipv6.conf.lo.accept_ra_min_hop_limit": 1, "net.ipv6.conf.lo.accept_ra_mtu": 1, "net.ipv6.conf.lo.accept_ra_pinfo": 1, "net.ipv6.conf.lo.accept_ra_rt_info_max_plen": 0, "net.ipv6.conf.lo.accept_ra_rt_info_min_plen": 0, "net.ipv6.conf.lo.accept_ra_rtr_pref": 1, "net.ipv6.conf.lo.accept_redirects": 1, "net.ipv6.conf.lo.accept_source_route": 0, "net.ipv6.conf.lo.addr_gen_mode": 0, "net.ipv6.conf.lo.autoconf": 1, "net.ipv6.conf.lo.dad_transmits": 1, "net.ipv6.conf.lo.disable_ipv6": 0, "net.ipv6.conf.lo.disable_policy": 0, "net.ipv6.conf.lo.drop_unicast_in_l2_multicast": 0, "net.ipv6.conf.lo.drop_unsolicited_na": 0, "net.ipv6.conf.lo.enhanced_dad": 1, "net.ipv6.conf.lo.force_mld_version": 0, "net.ipv6.conf.lo.force_tllao": 0, "net.ipv6.conf.lo.forwarding": 0, "net.ipv6.conf.lo.hop_limit": 64, "net.ipv6.conf.lo.ignore_routes_with_linkdown": 0, "net.ipv6.conf.lo.keep_addr_on_down": 0, "net.ipv6.conf.lo.max_addresses": 16, "net.ipv6.conf.lo.max_desync_factor": 600, "net.ipv6.conf.lo.mc_forwarding": 0, "net.ipv6.conf.lo.mldv1_unsolicited_report_interval": 10000, "net.ipv6.conf.lo.mldv2_unsolicited_report_interval": 1000, "net.ipv6.conf.lo.mtu": 65536, "net.ipv6.conf.lo.ndisc_notify": 0, "net.ipv6.conf.lo.ndisc_tclass": 0, "net.ipv6.conf.lo.proxy_ndp": 0, "net.ipv6.conf.lo.regen_max_retry": 3, "net.ipv6.conf.lo.router_probe_interval": 60, "net.ipv6.conf.lo.router_solicitation_delay": 1, "net.ipv6.conf.lo.router_solicitation_interval": 4, "net.ipv6.conf.lo.router_solicitation_max_interval": 3600, "net.ipv6.conf.lo.router_solicitations": -1, "net.ipv6.conf.lo.seg6_enabled": 0, "net.ipv6.conf.lo.seg6_require_hmac": 0, "net.ipv6.conf.lo.suppress_frag_ndisc": 1, "net.ipv6.conf.lo.temp_prefered_lft": 86400, "net.ipv6.conf.lo.temp_valid_lft": 604800, "net.ipv6.conf.lo.use_oif_addrs_only": 0, "net.ipv6.conf.lo.use_tempaddr": -1, "net.ipv6.flowlabel_consistency": 1, "net.ipv6.flowlabel_reflect": 0, "net.ipv6.flowlabel_state_ranges": 0, "net.ipv6.fwmark_reflect": 0, "net.ipv6.icmp.ratelimit": 1000, "net.ipv6.idgen_delay": 1, "net.ipv6.idgen_retries": 3, "net.ipv6.ip6frag_high_thresh": 262144, "net.ipv6.ip6frag_low_thresh": 196608, "net.ipv6.ip6frag_secret_interval": 0, "net.ipv6.ip6frag_time": 60, "net.ipv6.ip_nonlocal_bind": 0, "net.ipv6.max_dst_opts_length": 2147483647, "net.ipv6.max_dst_opts_number": 8, "net.ipv6.max_hbh_length": 2147483647, "net.ipv6.max_hbh_opts_number": 8, "net.ipv6.mld_max_msf": 64, "net.ipv6.mld_qrv": 2, "net.ipv6.neigh.default.anycast_delay": 100, "net.ipv6.neigh.default.app_solicit": 0, "net.ipv6.neigh.default.base_reachable_time_ms": 30000, "net.ipv6.neigh.default.delay_first_probe_time": 5, "net.ipv6.neigh.default.gc_interval": 30, "net.ipv6.neigh.default.gc_stale_time": 60, "net.ipv6.neigh.default.gc_thresh1": 128, "net.ipv6.neigh.default.gc_thresh2": 512, "net.ipv6.neigh.default.gc_thresh3": 1024, "net.ipv6.neigh.default.locktime": 0, "net.ipv6.neigh.default.mcast_resolicit": 0, "net.ipv6.neigh.default.mcast_solicit": 3, "net.ipv6.neigh.default.proxy_delay": 80, "net.ipv6.neigh.default.proxy_qlen": 64, "net.ipv6.neigh.default.retrans_time_ms": 1000, "net.ipv6.neigh.default.ucast_solicit": 3, "net.ipv6.neigh.default.unres_qlen": 101, "net.ipv6.neigh.default.unres_qlen_bytes": 212992, "net.ipv6.neigh.ens33.anycast_delay": 100, "net.ipv6.neigh.ens33.app_solicit": 0, "net.ipv6.neigh.ens33.base_reachable_time_ms": 30000, "net.ipv6.neigh.ens33.delay_first_probe_time": 5, "net.ipv6.neigh.ens33.gc_stale_time": 60, "net.ipv6.neigh.ens33.locktime": 0, "net.ipv6.neigh.ens33.mcast_resolicit": 0, "net.ipv6.neigh.ens33.mcast_solicit": 3, "net.ipv6.neigh.ens33.proxy_delay": 80, "net.ipv6.neigh.ens33.proxy_qlen": 64, "net.ipv6.neigh.ens33.retrans_time_ms": 1000, "net.ipv6.neigh.ens33.ucast_solicit": 3, "net.ipv6.neigh.ens33.unres_qlen": 101, "net.ipv6.neigh.ens33.unres_qlen_bytes": 212992, "net.ipv6.neigh.lo.anycast_delay": 100, "net.ipv6.neigh.lo.app_solicit": 0, "net.ipv6.neigh.lo.base_reachable_time_ms": 30000, "net.ipv6.neigh.lo.delay_first_probe_time": 5, "net.ipv6.neigh.lo.gc_stale_time": 60, "net.ipv6.neigh.lo.locktime": 0, "net.ipv6.neigh.lo.mcast_resolicit": 0, "net.ipv6.neigh.lo.mcast_solicit": 3, "net.ipv6.neigh.lo.proxy_delay": 80, "net.ipv6.neigh.lo.proxy_qlen": 64, "net.ipv6.neigh.lo.retrans_time_ms": 1000, "net.ipv6.neigh.lo.ucast_solicit": 3, "net.ipv6.neigh.lo.unres_qlen": 101, "net.ipv6.neigh.lo.unres_qlen_bytes": 212992, "net.ipv6.route.gc_elasticity": 9, "net.ipv6.route.gc_interval": 30, "net.ipv6.route.gc_min_interval": 0, "net.ipv6.route.gc_min_interval_ms": 500, "net.ipv6.route.gc_thresh": 1024, "net.ipv6.route.gc_timeout": 60, "net.ipv6.route.max_size": 4096, "net.ipv6.route.min_adv_mss": 1220, "net.ipv6.route.mtu_expires": 600, "net.ipv6.xfrm6_gc_thresh": 32768, "net.iw_cm.default_backlog": 256, "net.netfilter.nf_log.0": "NONE", "net.netfilter.nf_log.1": "NONE", "net.netfilter.nf_log.10": "NONE", "net.netfilter.nf_log.11": "NONE", "net.netfilter.nf_log.12": "NONE", "net.netfilter.nf_log.2": "NONE", "net.netfilter.nf_log.3": "NONE", "net.netfilter.nf_log.4": "NONE", "net.netfilter.nf_log.5": "NONE", "net.netfilter.nf_log.6": "NONE", "net.netfilter.nf_log.7": "NONE", "net.netfilter.nf_log.8": "NONE", "net.netfilter.nf_log.9": "NONE", "net.netfilter.nf_log_all_netns": 0, "net.unix.max_dgram_qlen": 512, "user.max_cgroup_namespaces": 7635, "user.max_inotify_instances": 1024, "user.max_inotify_watches": 8192, "user.max_ipc_namespaces": 7635, "user.max_mnt_namespaces": 7635, "user.max_net_namespaces": 7635, "user.max_pid_namespaces": 7635, "user.max_user_namespaces": 7635, "user.max_uts_namespaces": 7635, "vm.admin_reserve_kbytes": 8192, "vm.block_dump": 0, "vm.compact_unevictable_allowed": 1, "vm.dirty_background_bytes": 0, "vm.dirty_background_ratio": 10, "vm.dirty_bytes": 0, "vm.dirty_expire_centisecs": 3000, "vm.dirty_ratio": 20, "vm.dirty_writeback_centisecs": 500, "vm.dirtytime_expire_seconds": 43200, "vm.extfrag_threshold": 500, "vm.hugepages_treat_as_movable": 0, "vm.hugetlb_shm_group": 0, "vm.laptop_mode": 0, "vm.legacy_va_layout": 0, "vm.lowmem_reserve_ratio": "256\t256\t32\t1", "vm.max_map_count": 65530, "vm.memory_failure_early_kill": 0, "vm.memory_failure_recovery": 1, "vm.min_free_kbytes": 45056, "vm.min_slab_ratio": 5, "vm.min_unmapped_ratio": 1, "vm.mmap_min_addr": 65536, "vm.nr_hugepages": 0, "vm.nr_hugepages_mempolicy": 0, "vm.nr_overcommit_hugepages": 0, "vm.numa_stat": 1, "vm.numa_zonelist_order": "Node", "vm.oom_dump_tasks": 1, "vm.oom_kill_allocating_task": 0, "vm.overcommit_kbytes": 0, "vm.overcommit_memory": 0, "vm.overcommit_ratio": 50, "vm.page-cluster": 3, "vm.panic_on_oom": 0, "vm.percpu_pagelist_fraction": 0, "vm.stat_interval": 1, "vm.swappiness": 60, "vm.user_reserve_kbytes": 60643, "vm.vfs_cache_pressure": 100, "vm.watermark_scale_factor": 10, "vm.zone_reclaim_mode": 0} jc-1.17.3/tests/fixtures/ubuntu-18.04/sysctl-a.out000066400000000000000000000755641415226333200215160ustar00rootroot00000000000000abi.vsyscall32 = 1 debug.exception-trace = 1 debug.kprobes-optimization = 1 dev.cdrom.autoclose = 1 dev.cdrom.autoeject = 0 dev.cdrom.check_media = 0 dev.cdrom.debug = 0 dev.cdrom.info = CD-ROM information, Id: cdrom.c 3.20 2003/12/17 dev.cdrom.info = dev.cdrom.info = drive name: sr1 sr0 dev.cdrom.info = drive speed: 1 1 dev.cdrom.info = drive # of slots: 1 1 dev.cdrom.info = Can close tray: 1 1 dev.cdrom.info = Can open tray: 1 1 dev.cdrom.info = Can lock tray: 1 1 dev.cdrom.info = Can change speed: 1 1 dev.cdrom.info = Can select disk: 0 0 dev.cdrom.info = Can read multisession: 1 1 dev.cdrom.info = Can read MCN: 1 1 dev.cdrom.info = Reports media changed: 1 1 dev.cdrom.info = Can play audio: 1 1 dev.cdrom.info = Can write CD-R: 1 1 dev.cdrom.info = Can write CD-RW: 1 1 dev.cdrom.info = Can read DVD: 1 1 dev.cdrom.info = Can write DVD-R: 1 1 dev.cdrom.info = Can write DVD-RAM: 1 1 dev.cdrom.info = Can read MRW: 1 1 dev.cdrom.info = Can write MRW: 1 1 dev.cdrom.info = Can write RAM: 1 1 dev.cdrom.info = dev.cdrom.info = dev.cdrom.lock = 0 dev.hpet.max-user-freq = 64 dev.mac_hid.mouse_button2_keycode = 97 dev.mac_hid.mouse_button3_keycode = 100 dev.mac_hid.mouse_button_emulation = 0 dev.raid.speed_limit_max = 200000 dev.raid.speed_limit_min = 1000 dev.scsi.logging_level = 0 dev.tty.ldisc_autoload = 1 fs.aio-max-nr = 65536 fs.aio-nr = 0 fs.binfmt_misc.status = enabled fs.dentry-state = 46910 16600 45 0 0 0 fs.dir-notify-enable = 1 fs.epoll.max_user_watches = 400302 fs.file-max = 194386 fs.file-nr = 1024 0 194386 fs.inode-nr = 51130 7369 fs.inode-state = 51130 7369 0 0 0 0 0 fs.inotify.max_queued_events = 16384 fs.inotify.max_user_instances = 1024 fs.inotify.max_user_watches = 8192 fs.lease-break-time = 45 fs.leases-enable = 1 fs.mount-max = 100000 fs.mqueue.msg_default = 10 fs.mqueue.msg_max = 10 fs.mqueue.msgsize_default = 8192 fs.mqueue.msgsize_max = 8192 fs.mqueue.queues_max = 256 fs.nr_open = 1048576 fs.overflowgid = 65534 fs.overflowuid = 65534 fs.pipe-max-size = 1048576 fs.pipe-user-pages-hard = 0 fs.pipe-user-pages-soft = 16384 fs.quota.allocated_dquots = 0 fs.quota.cache_hits = 0 fs.quota.drops = 0 fs.quota.free_dquots = 0 fs.quota.lookups = 0 fs.quota.reads = 0 fs.quota.syncs = 78 fs.quota.writes = 0 fs.suid_dumpable = 2 fs.xfs.error_level = 3 fs.xfs.filestream_centisecs = 3000 fs.xfs.inherit_noatime = 1 fs.xfs.inherit_nodefrag = 1 fs.xfs.inherit_nodump = 1 fs.xfs.inherit_nosymlinks = 0 fs.xfs.inherit_sync = 1 fs.xfs.irix_sgid_inherit = 0 fs.xfs.irix_symlink_mode = 0 fs.xfs.panic_mask = 0 fs.xfs.rotorstep = 1 fs.xfs.speculative_cow_prealloc_lifetime = 1800 fs.xfs.speculative_prealloc_lifetime = 300 fs.xfs.stats_clear = 0 fs.xfs.xfssyncd_centisecs = 3000 kernel.acct = 4 2 30 kernel.acpi_video_flags = 0 kernel.auto_msgmni = 0 kernel.bootloader_type = 114 kernel.bootloader_version = 2 kernel.cap_last_cap = 37 kernel.core_pattern = |/usr/share/apport/apport %p %s %c %d %P %E kernel.core_pipe_limit = 0 kernel.core_uses_pid = 0 kernel.ctrl-alt-del = 0 kernel.dmesg_restrict = 0 kernel.domainname = (none) kernel.ftrace_dump_on_oops = 0 kernel.ftrace_enabled = 1 kernel.hardlockup_all_cpu_backtrace = 0 kernel.hardlockup_panic = 0 kernel.hostname = kbrazil-ubuntu kernel.hotplug = kernel.hung_task_check_count = 4194304 kernel.hung_task_panic = 0 kernel.hung_task_timeout_secs = 120 kernel.hung_task_warnings = 10 kernel.io_delay_type = 1 kernel.kexec_load_disabled = 0 kernel.keys.gc_delay = 300 kernel.keys.maxbytes = 20000 kernel.keys.maxkeys = 200 kernel.keys.persistent_keyring_expiry = 259200 kernel.keys.root_maxbytes = 25000000 kernel.keys.root_maxkeys = 1000000 kernel.kptr_restrict = 1 kernel.max_lock_depth = 1024 kernel.modprobe = /sbin/modprobe kernel.modules_disabled = 0 kernel.msg_next_id = -1 kernel.msgmax = 8192 kernel.msgmnb = 16384 kernel.msgmni = 32000 kernel.ngroups_max = 65536 kernel.nmi_watchdog = 0 kernel.ns_last_pid = 23649 kernel.numa_balancing = 0 kernel.numa_balancing_scan_delay_ms = 1000 kernel.numa_balancing_scan_period_max_ms = 60000 kernel.numa_balancing_scan_period_min_ms = 1000 kernel.numa_balancing_scan_size_mb = 256 kernel.osrelease = 4.15.0-101-generic kernel.ostype = Linux kernel.overflowgid = 65534 kernel.overflowuid = 65534 kernel.panic = 0 kernel.panic_on_io_nmi = 0 kernel.panic_on_oops = 0 kernel.panic_on_rcu_stall = 0 kernel.panic_on_unrecovered_nmi = 0 kernel.panic_on_warn = 0 kernel.perf_cpu_time_max_percent = 25 kernel.perf_event_max_contexts_per_stack = 8 kernel.perf_event_max_sample_rate = 100000 kernel.perf_event_max_stack = 127 kernel.perf_event_mlock_kb = 516 kernel.perf_event_paranoid = 3 kernel.pid_max = 131072 kernel.poweroff_cmd = /sbin/poweroff kernel.print-fatal-signals = 0 kernel.printk = 4 4 1 7 kernel.printk_delay = 0 kernel.printk_devkmsg = ratelimit kernel.printk_ratelimit = 5 kernel.printk_ratelimit_burst = 10 kernel.pty.max = 4096 kernel.pty.nr = 0 kernel.pty.reserve = 1024 kernel.random.boot_id = cf190d28-d4c9-4d52-8f8a-ce556669abf5 kernel.random.entropy_avail = 565 kernel.random.poolsize = 4096 kernel.random.read_wakeup_threshold = 64 kernel.random.urandom_min_reseed_secs = 60 kernel.random.uuid = 7100e887-f0ae-450e-b9c3-972bb4f7f30f kernel.random.write_wakeup_threshold = 896 kernel.randomize_va_space = 2 kernel.real-root-dev = 0 kernel.sched_autogroup_enabled = 1 kernel.sched_cfs_bandwidth_slice_us = 5000 kernel.sched_child_runs_first = 0 kernel.sched_latency_ns = 6000000 kernel.sched_migration_cost_ns = 500000 kernel.sched_min_granularity_ns = 750000 kernel.sched_nr_migrate = 32 kernel.sched_rr_timeslice_ms = 100 kernel.sched_rt_period_us = 1000000 kernel.sched_rt_runtime_us = 950000 kernel.sched_schedstats = 0 kernel.sched_time_avg_ms = 1000 kernel.sched_tunable_scaling = 1 kernel.sched_wakeup_granularity_ns = 1000000 kernel.seccomp.actions_avail = kill_process kill_thread trap errno trace log allow kernel.seccomp.actions_logged = kill_process kill_thread trap errno trace log kernel.sem = 32000 1024000000 500 32000 kernel.sem_next_id = -1 kernel.sg-big-buff = 32768 kernel.shm_next_id = -1 kernel.shm_rmid_forced = 0 kernel.shmall = 18446744073692774399 kernel.shmmax = 18446744073692774399 kernel.shmmni = 4096 kernel.soft_watchdog = 1 kernel.softlockup_all_cpu_backtrace = 0 kernel.softlockup_panic = 0 kernel.stack_tracer_enabled = 0 kernel.sysctl_writes_strict = 1 kernel.sysrq = 176 kernel.tainted = 0 kernel.threads-max = 15270 kernel.timer_migration = 1 kernel.traceoff_on_warning = 0 kernel.tracepoint_printk = 0 kernel.unknown_nmi_panic = 0 kernel.unprivileged_bpf_disabled = 0 kernel.unprivileged_userns_clone = 1 kernel.version = #102-Ubuntu SMP Mon May 11 10:07:26 UTC 2020 kernel.watchdog = 1 kernel.watchdog_cpumask = 0-127 kernel.watchdog_thresh = 10 kernel.yama.ptrace_scope = 1 net.core.bpf_jit_enable = 1 net.core.busy_poll = 0 net.core.busy_read = 0 net.core.default_qdisc = fq_codel net.core.dev_weight = 64 net.core.dev_weight_rx_bias = 1 net.core.dev_weight_tx_bias = 1 net.core.flow_limit_cpu_bitmap = 00000000,00000000,00000000,00000000 net.core.flow_limit_table_len = 4096 net.core.max_skb_frags = 17 net.core.message_burst = 10 net.core.message_cost = 5 net.core.netdev_budget = 300 net.core.netdev_budget_usecs = 2000 net.core.netdev_max_backlog = 1000 net.core.netdev_rss_key = 00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00 net.core.netdev_tstamp_prequeue = 1 net.core.optmem_max = 20480 net.core.rmem_default = 212992 net.core.rmem_max = 212992 net.core.rps_sock_flow_entries = 0 net.core.somaxconn = 128 net.core.tstamp_allow_data = 1 net.core.warnings = 0 net.core.wmem_default = 212992 net.core.wmem_max = 212992 net.core.xfrm_acq_expires = 30 net.core.xfrm_aevent_etime = 10 net.core.xfrm_aevent_rseqth = 2 net.core.xfrm_larval_drop = 1 net.ipv4.cipso_cache_bucket_size = 10 net.ipv4.cipso_cache_enable = 1 net.ipv4.cipso_rbm_optfmt = 0 net.ipv4.cipso_rbm_strictvalid = 1 net.ipv4.conf.all.accept_local = 0 net.ipv4.conf.all.accept_redirects = 1 net.ipv4.conf.all.accept_source_route = 0 net.ipv4.conf.all.arp_accept = 0 net.ipv4.conf.all.arp_announce = 0 net.ipv4.conf.all.arp_filter = 0 net.ipv4.conf.all.arp_ignore = 0 net.ipv4.conf.all.arp_notify = 0 net.ipv4.conf.all.bootp_relay = 0 net.ipv4.conf.all.disable_policy = 0 net.ipv4.conf.all.disable_xfrm = 0 net.ipv4.conf.all.drop_gratuitous_arp = 0 net.ipv4.conf.all.drop_unicast_in_l2_multicast = 0 net.ipv4.conf.all.force_igmp_version = 0 net.ipv4.conf.all.forwarding = 0 net.ipv4.conf.all.igmpv2_unsolicited_report_interval = 10000 net.ipv4.conf.all.igmpv3_unsolicited_report_interval = 1000 net.ipv4.conf.all.ignore_routes_with_linkdown = 0 net.ipv4.conf.all.log_martians = 0 net.ipv4.conf.all.mc_forwarding = 0 net.ipv4.conf.all.medium_id = 0 net.ipv4.conf.all.promote_secondaries = 1 net.ipv4.conf.all.proxy_arp = 0 net.ipv4.conf.all.proxy_arp_pvlan = 0 net.ipv4.conf.all.route_localnet = 0 net.ipv4.conf.all.rp_filter = 1 net.ipv4.conf.all.secure_redirects = 1 net.ipv4.conf.all.send_redirects = 1 net.ipv4.conf.all.shared_media = 1 net.ipv4.conf.all.src_valid_mark = 0 net.ipv4.conf.all.tag = 0 net.ipv4.conf.default.accept_local = 0 net.ipv4.conf.default.accept_redirects = 1 net.ipv4.conf.default.accept_source_route = 1 net.ipv4.conf.default.arp_accept = 0 net.ipv4.conf.default.arp_announce = 0 net.ipv4.conf.default.arp_filter = 0 net.ipv4.conf.default.arp_ignore = 0 net.ipv4.conf.default.arp_notify = 0 net.ipv4.conf.default.bootp_relay = 0 net.ipv4.conf.default.disable_policy = 0 net.ipv4.conf.default.disable_xfrm = 0 net.ipv4.conf.default.drop_gratuitous_arp = 0 net.ipv4.conf.default.drop_unicast_in_l2_multicast = 0 net.ipv4.conf.default.force_igmp_version = 0 net.ipv4.conf.default.forwarding = 0 net.ipv4.conf.default.igmpv2_unsolicited_report_interval = 10000 net.ipv4.conf.default.igmpv3_unsolicited_report_interval = 1000 net.ipv4.conf.default.ignore_routes_with_linkdown = 0 net.ipv4.conf.default.log_martians = 0 net.ipv4.conf.default.mc_forwarding = 0 net.ipv4.conf.default.medium_id = 0 net.ipv4.conf.default.promote_secondaries = 0 net.ipv4.conf.default.proxy_arp = 0 net.ipv4.conf.default.proxy_arp_pvlan = 0 net.ipv4.conf.default.route_localnet = 0 net.ipv4.conf.default.rp_filter = 1 net.ipv4.conf.default.secure_redirects = 1 net.ipv4.conf.default.send_redirects = 1 net.ipv4.conf.default.shared_media = 1 net.ipv4.conf.default.src_valid_mark = 0 net.ipv4.conf.default.tag = 0 net.ipv4.conf.ens33.accept_local = 0 net.ipv4.conf.ens33.accept_redirects = 1 net.ipv4.conf.ens33.accept_source_route = 1 net.ipv4.conf.ens33.arp_accept = 0 net.ipv4.conf.ens33.arp_announce = 0 net.ipv4.conf.ens33.arp_filter = 0 net.ipv4.conf.ens33.arp_ignore = 0 net.ipv4.conf.ens33.arp_notify = 0 net.ipv4.conf.ens33.bootp_relay = 0 net.ipv4.conf.ens33.disable_policy = 0 net.ipv4.conf.ens33.disable_xfrm = 0 net.ipv4.conf.ens33.drop_gratuitous_arp = 0 net.ipv4.conf.ens33.drop_unicast_in_l2_multicast = 0 net.ipv4.conf.ens33.force_igmp_version = 0 net.ipv4.conf.ens33.forwarding = 0 net.ipv4.conf.ens33.igmpv2_unsolicited_report_interval = 10000 net.ipv4.conf.ens33.igmpv3_unsolicited_report_interval = 1000 net.ipv4.conf.ens33.ignore_routes_with_linkdown = 0 net.ipv4.conf.ens33.log_martians = 0 net.ipv4.conf.ens33.mc_forwarding = 0 net.ipv4.conf.ens33.medium_id = 0 net.ipv4.conf.ens33.promote_secondaries = 0 net.ipv4.conf.ens33.proxy_arp = 0 net.ipv4.conf.ens33.proxy_arp_pvlan = 0 net.ipv4.conf.ens33.route_localnet = 0 net.ipv4.conf.ens33.rp_filter = 1 net.ipv4.conf.ens33.secure_redirects = 1 net.ipv4.conf.ens33.send_redirects = 1 net.ipv4.conf.ens33.shared_media = 1 net.ipv4.conf.ens33.src_valid_mark = 0 net.ipv4.conf.ens33.tag = 0 net.ipv4.conf.lo.accept_local = 0 net.ipv4.conf.lo.accept_redirects = 1 net.ipv4.conf.lo.accept_source_route = 1 net.ipv4.conf.lo.arp_accept = 0 net.ipv4.conf.lo.arp_announce = 0 net.ipv4.conf.lo.arp_filter = 0 net.ipv4.conf.lo.arp_ignore = 0 net.ipv4.conf.lo.arp_notify = 0 net.ipv4.conf.lo.bootp_relay = 0 net.ipv4.conf.lo.disable_policy = 1 net.ipv4.conf.lo.disable_xfrm = 1 net.ipv4.conf.lo.drop_gratuitous_arp = 0 net.ipv4.conf.lo.drop_unicast_in_l2_multicast = 0 net.ipv4.conf.lo.force_igmp_version = 0 net.ipv4.conf.lo.forwarding = 0 net.ipv4.conf.lo.igmpv2_unsolicited_report_interval = 10000 net.ipv4.conf.lo.igmpv3_unsolicited_report_interval = 1000 net.ipv4.conf.lo.ignore_routes_with_linkdown = 0 net.ipv4.conf.lo.log_martians = 0 net.ipv4.conf.lo.mc_forwarding = 0 net.ipv4.conf.lo.medium_id = 0 net.ipv4.conf.lo.promote_secondaries = 0 net.ipv4.conf.lo.proxy_arp = 0 net.ipv4.conf.lo.proxy_arp_pvlan = 0 net.ipv4.conf.lo.route_localnet = 0 net.ipv4.conf.lo.rp_filter = 0 net.ipv4.conf.lo.secure_redirects = 1 net.ipv4.conf.lo.send_redirects = 1 net.ipv4.conf.lo.shared_media = 1 net.ipv4.conf.lo.src_valid_mark = 0 net.ipv4.conf.lo.tag = 0 net.ipv4.fib_multipath_hash_policy = 0 net.ipv4.fib_multipath_use_neigh = 0 net.ipv4.fwmark_reflect = 0 net.ipv4.icmp_echo_ignore_all = 0 net.ipv4.icmp_echo_ignore_broadcasts = 1 net.ipv4.icmp_errors_use_inbound_ifaddr = 0 net.ipv4.icmp_ignore_bogus_error_responses = 1 net.ipv4.icmp_msgs_burst = 50 net.ipv4.icmp_msgs_per_sec = 1000 net.ipv4.icmp_ratelimit = 1000 net.ipv4.icmp_ratemask = 6168 net.ipv4.igmp_link_local_mcast_reports = 1 net.ipv4.igmp_max_memberships = 20 net.ipv4.igmp_max_msf = 10 net.ipv4.igmp_qrv = 2 net.ipv4.inet_peer_maxttl = 600 net.ipv4.inet_peer_minttl = 120 net.ipv4.inet_peer_threshold = 65664 net.ipv4.ip_default_ttl = 64 net.ipv4.ip_dynaddr = 0 net.ipv4.ip_early_demux = 1 net.ipv4.ip_forward = 0 net.ipv4.ip_forward_use_pmtu = 0 net.ipv4.ip_local_port_range = 32768 60999 net.ipv4.ip_local_reserved_ports = net.ipv4.ip_no_pmtu_disc = 0 net.ipv4.ip_nonlocal_bind = 0 net.ipv4.ip_unprivileged_port_start = 1024 net.ipv4.ipfrag_high_thresh = 262144 net.ipv4.ipfrag_low_thresh = 196608 net.ipv4.ipfrag_max_dist = 64 net.ipv4.ipfrag_secret_interval = 0 net.ipv4.ipfrag_time = 30 net.ipv4.neigh.default.anycast_delay = 100 net.ipv4.neigh.default.app_solicit = 0 net.ipv4.neigh.default.base_reachable_time_ms = 30000 net.ipv4.neigh.default.delay_first_probe_time = 5 net.ipv4.neigh.default.gc_interval = 30 net.ipv4.neigh.default.gc_stale_time = 60 net.ipv4.neigh.default.gc_thresh1 = 128 net.ipv4.neigh.default.gc_thresh2 = 512 net.ipv4.neigh.default.gc_thresh3 = 1024 net.ipv4.neigh.default.locktime = 100 net.ipv4.neigh.default.mcast_resolicit = 0 net.ipv4.neigh.default.mcast_solicit = 3 net.ipv4.neigh.default.proxy_delay = 80 net.ipv4.neigh.default.proxy_qlen = 64 net.ipv4.neigh.default.retrans_time_ms = 1000 net.ipv4.neigh.default.ucast_solicit = 3 net.ipv4.neigh.default.unres_qlen = 101 net.ipv4.neigh.default.unres_qlen_bytes = 212992 net.ipv4.neigh.ens33.anycast_delay = 100 net.ipv4.neigh.ens33.app_solicit = 0 net.ipv4.neigh.ens33.base_reachable_time_ms = 30000 net.ipv4.neigh.ens33.delay_first_probe_time = 5 net.ipv4.neigh.ens33.gc_stale_time = 60 net.ipv4.neigh.ens33.locktime = 100 net.ipv4.neigh.ens33.mcast_resolicit = 0 net.ipv4.neigh.ens33.mcast_solicit = 3 net.ipv4.neigh.ens33.proxy_delay = 80 net.ipv4.neigh.ens33.proxy_qlen = 64 net.ipv4.neigh.ens33.retrans_time_ms = 1000 net.ipv4.neigh.ens33.ucast_solicit = 3 net.ipv4.neigh.ens33.unres_qlen = 101 net.ipv4.neigh.ens33.unres_qlen_bytes = 212992 net.ipv4.neigh.lo.anycast_delay = 100 net.ipv4.neigh.lo.app_solicit = 0 net.ipv4.neigh.lo.base_reachable_time_ms = 30000 net.ipv4.neigh.lo.delay_first_probe_time = 5 net.ipv4.neigh.lo.gc_stale_time = 60 net.ipv4.neigh.lo.locktime = 100 net.ipv4.neigh.lo.mcast_resolicit = 0 net.ipv4.neigh.lo.mcast_solicit = 3 net.ipv4.neigh.lo.proxy_delay = 80 net.ipv4.neigh.lo.proxy_qlen = 64 net.ipv4.neigh.lo.retrans_time_ms = 1000 net.ipv4.neigh.lo.ucast_solicit = 3 net.ipv4.neigh.lo.unres_qlen = 101 net.ipv4.neigh.lo.unres_qlen_bytes = 212992 net.ipv4.ping_group_range = 1 0 net.ipv4.route.error_burst = 1250 net.ipv4.route.error_cost = 250 net.ipv4.route.gc_elasticity = 8 net.ipv4.route.gc_interval = 60 net.ipv4.route.gc_min_interval = 0 net.ipv4.route.gc_min_interval_ms = 500 net.ipv4.route.gc_thresh = -1 net.ipv4.route.gc_timeout = 300 net.ipv4.route.max_size = 2147483647 net.ipv4.route.min_adv_mss = 256 net.ipv4.route.min_pmtu = 552 net.ipv4.route.mtu_expires = 600 net.ipv4.route.redirect_load = 5 net.ipv4.route.redirect_number = 9 net.ipv4.route.redirect_silence = 5120 net.ipv4.tcp_abort_on_overflow = 0 net.ipv4.tcp_adv_win_scale = 1 net.ipv4.tcp_allowed_congestion_control = reno cubic net.ipv4.tcp_app_win = 31 net.ipv4.tcp_autocorking = 1 net.ipv4.tcp_available_congestion_control = reno cubic net.ipv4.tcp_available_ulp = net.ipv4.tcp_base_mss = 1024 net.ipv4.tcp_challenge_ack_limit = 1000 net.ipv4.tcp_congestion_control = cubic net.ipv4.tcp_dsack = 1 net.ipv4.tcp_early_demux = 1 net.ipv4.tcp_early_retrans = 3 net.ipv4.tcp_ecn = 2 net.ipv4.tcp_ecn_fallback = 1 net.ipv4.tcp_fack = 0 net.ipv4.tcp_fastopen = 1 net.ipv4.tcp_fastopen_blackhole_timeout_sec = 3600 net.ipv4.tcp_fin_timeout = 60 net.ipv4.tcp_frto = 2 net.ipv4.tcp_fwmark_accept = 0 net.ipv4.tcp_invalid_ratelimit = 500 net.ipv4.tcp_keepalive_intvl = 75 net.ipv4.tcp_keepalive_probes = 9 net.ipv4.tcp_keepalive_time = 7200 net.ipv4.tcp_l3mdev_accept = 0 net.ipv4.tcp_limit_output_bytes = 262144 net.ipv4.tcp_low_latency = 0 net.ipv4.tcp_max_orphans = 8192 net.ipv4.tcp_max_reordering = 300 net.ipv4.tcp_max_syn_backlog = 128 net.ipv4.tcp_max_tw_buckets = 8192 net.ipv4.tcp_mem = 22113 29485 44226 net.ipv4.tcp_min_rtt_wlen = 300 net.ipv4.tcp_min_snd_mss = 48 net.ipv4.tcp_min_tso_segs = 2 net.ipv4.tcp_moderate_rcvbuf = 1 net.ipv4.tcp_mtu_probing = 0 net.ipv4.tcp_no_metrics_save = 0 net.ipv4.tcp_notsent_lowat = 4294967295 net.ipv4.tcp_orphan_retries = 0 net.ipv4.tcp_pacing_ca_ratio = 120 net.ipv4.tcp_pacing_ss_ratio = 200 net.ipv4.tcp_probe_interval = 600 net.ipv4.tcp_probe_threshold = 8 net.ipv4.tcp_recovery = 1 net.ipv4.tcp_reordering = 3 net.ipv4.tcp_retrans_collapse = 1 net.ipv4.tcp_retries1 = 3 net.ipv4.tcp_retries2 = 15 net.ipv4.tcp_rfc1337 = 0 net.ipv4.tcp_rmem = 4096 131072 6291456 net.ipv4.tcp_sack = 1 net.ipv4.tcp_slow_start_after_idle = 1 net.ipv4.tcp_stdurg = 0 net.ipv4.tcp_syn_retries = 6 net.ipv4.tcp_synack_retries = 5 net.ipv4.tcp_syncookies = 1 net.ipv4.tcp_thin_linear_timeouts = 0 net.ipv4.tcp_timestamps = 1 net.ipv4.tcp_tso_win_divisor = 3 net.ipv4.tcp_tw_reuse = 0 net.ipv4.tcp_window_scaling = 1 net.ipv4.tcp_wmem = 4096 16384 4194304 net.ipv4.tcp_workaround_signed_windows = 0 net.ipv4.udp_early_demux = 1 net.ipv4.udp_l3mdev_accept = 0 net.ipv4.udp_mem = 44226 58970 88452 net.ipv4.udp_rmem_min = 4096 net.ipv4.udp_wmem_min = 4096 net.ipv4.xfrm4_gc_thresh = 32768 net.ipv6.anycast_src_echo_reply = 0 net.ipv6.auto_flowlabels = 1 net.ipv6.bindv6only = 0 net.ipv6.calipso_cache_bucket_size = 10 net.ipv6.calipso_cache_enable = 1 net.ipv6.conf.all.accept_dad = 0 net.ipv6.conf.all.accept_ra = 1 net.ipv6.conf.all.accept_ra_defrtr = 1 net.ipv6.conf.all.accept_ra_from_local = 0 net.ipv6.conf.all.accept_ra_min_hop_limit = 1 net.ipv6.conf.all.accept_ra_mtu = 1 net.ipv6.conf.all.accept_ra_pinfo = 1 net.ipv6.conf.all.accept_ra_rt_info_max_plen = 0 net.ipv6.conf.all.accept_ra_rt_info_min_plen = 0 net.ipv6.conf.all.accept_ra_rtr_pref = 1 net.ipv6.conf.all.accept_redirects = 1 net.ipv6.conf.all.accept_source_route = 0 net.ipv6.conf.all.addr_gen_mode = 0 net.ipv6.conf.all.autoconf = 1 net.ipv6.conf.all.dad_transmits = 1 net.ipv6.conf.all.disable_ipv6 = 0 net.ipv6.conf.all.disable_policy = 0 net.ipv6.conf.all.drop_unicast_in_l2_multicast = 0 net.ipv6.conf.all.drop_unsolicited_na = 0 net.ipv6.conf.all.enhanced_dad = 1 net.ipv6.conf.all.force_mld_version = 0 net.ipv6.conf.all.force_tllao = 0 net.ipv6.conf.all.forwarding = 0 net.ipv6.conf.all.hop_limit = 64 net.ipv6.conf.all.ignore_routes_with_linkdown = 0 net.ipv6.conf.all.keep_addr_on_down = 0 net.ipv6.conf.all.max_addresses = 16 net.ipv6.conf.all.max_desync_factor = 600 net.ipv6.conf.all.mc_forwarding = 0 net.ipv6.conf.all.mldv1_unsolicited_report_interval = 10000 net.ipv6.conf.all.mldv2_unsolicited_report_interval = 1000 net.ipv6.conf.all.mtu = 1280 net.ipv6.conf.all.ndisc_notify = 0 net.ipv6.conf.all.ndisc_tclass = 0 net.ipv6.conf.all.proxy_ndp = 0 net.ipv6.conf.all.regen_max_retry = 3 net.ipv6.conf.all.router_probe_interval = 60 net.ipv6.conf.all.router_solicitation_delay = 1 net.ipv6.conf.all.router_solicitation_interval = 4 net.ipv6.conf.all.router_solicitation_max_interval = 3600 net.ipv6.conf.all.router_solicitations = -1 net.ipv6.conf.all.seg6_enabled = 0 net.ipv6.conf.all.seg6_require_hmac = 0 net.ipv6.conf.all.suppress_frag_ndisc = 1 net.ipv6.conf.all.temp_prefered_lft = 86400 net.ipv6.conf.all.temp_valid_lft = 604800 net.ipv6.conf.all.use_oif_addrs_only = 0 net.ipv6.conf.all.use_tempaddr = 0 net.ipv6.conf.default.accept_dad = 1 net.ipv6.conf.default.accept_ra = 1 net.ipv6.conf.default.accept_ra_defrtr = 1 net.ipv6.conf.default.accept_ra_from_local = 0 net.ipv6.conf.default.accept_ra_min_hop_limit = 1 net.ipv6.conf.default.accept_ra_mtu = 1 net.ipv6.conf.default.accept_ra_pinfo = 1 net.ipv6.conf.default.accept_ra_rt_info_max_plen = 0 net.ipv6.conf.default.accept_ra_rt_info_min_plen = 0 net.ipv6.conf.default.accept_ra_rtr_pref = 1 net.ipv6.conf.default.accept_redirects = 1 net.ipv6.conf.default.accept_source_route = 0 net.ipv6.conf.default.addr_gen_mode = 0 net.ipv6.conf.default.autoconf = 1 net.ipv6.conf.default.dad_transmits = 1 net.ipv6.conf.default.disable_ipv6 = 0 net.ipv6.conf.default.disable_policy = 0 net.ipv6.conf.default.drop_unicast_in_l2_multicast = 0 net.ipv6.conf.default.drop_unsolicited_na = 0 net.ipv6.conf.default.enhanced_dad = 1 net.ipv6.conf.default.force_mld_version = 0 net.ipv6.conf.default.force_tllao = 0 net.ipv6.conf.default.forwarding = 0 net.ipv6.conf.default.hop_limit = 64 net.ipv6.conf.default.ignore_routes_with_linkdown = 0 net.ipv6.conf.default.keep_addr_on_down = 0 net.ipv6.conf.default.max_addresses = 16 net.ipv6.conf.default.max_desync_factor = 600 net.ipv6.conf.default.mc_forwarding = 0 net.ipv6.conf.default.mldv1_unsolicited_report_interval = 10000 net.ipv6.conf.default.mldv2_unsolicited_report_interval = 1000 net.ipv6.conf.default.mtu = 1280 net.ipv6.conf.default.ndisc_notify = 0 net.ipv6.conf.default.ndisc_tclass = 0 net.ipv6.conf.default.proxy_ndp = 0 net.ipv6.conf.default.regen_max_retry = 3 net.ipv6.conf.default.router_probe_interval = 60 net.ipv6.conf.default.router_solicitation_delay = 1 net.ipv6.conf.default.router_solicitation_interval = 4 net.ipv6.conf.default.router_solicitation_max_interval = 3600 net.ipv6.conf.default.router_solicitations = -1 net.ipv6.conf.default.seg6_enabled = 0 net.ipv6.conf.default.seg6_require_hmac = 0 net.ipv6.conf.default.suppress_frag_ndisc = 1 net.ipv6.conf.default.temp_prefered_lft = 86400 net.ipv6.conf.default.temp_valid_lft = 604800 net.ipv6.conf.default.use_oif_addrs_only = 0 net.ipv6.conf.default.use_tempaddr = 0 net.ipv6.conf.ens33.accept_dad = 1 net.ipv6.conf.ens33.accept_ra = 0 net.ipv6.conf.ens33.accept_ra_defrtr = 1 net.ipv6.conf.ens33.accept_ra_from_local = 0 net.ipv6.conf.ens33.accept_ra_min_hop_limit = 1 net.ipv6.conf.ens33.accept_ra_mtu = 1 net.ipv6.conf.ens33.accept_ra_pinfo = 1 net.ipv6.conf.ens33.accept_ra_rt_info_max_plen = 0 net.ipv6.conf.ens33.accept_ra_rt_info_min_plen = 0 net.ipv6.conf.ens33.accept_ra_rtr_pref = 1 net.ipv6.conf.ens33.accept_redirects = 1 net.ipv6.conf.ens33.accept_source_route = 0 net.ipv6.conf.ens33.addr_gen_mode = 0 net.ipv6.conf.ens33.autoconf = 1 net.ipv6.conf.ens33.dad_transmits = 1 net.ipv6.conf.ens33.disable_ipv6 = 0 net.ipv6.conf.ens33.disable_policy = 0 net.ipv6.conf.ens33.drop_unicast_in_l2_multicast = 0 net.ipv6.conf.ens33.drop_unsolicited_na = 0 net.ipv6.conf.ens33.enhanced_dad = 1 net.ipv6.conf.ens33.force_mld_version = 0 net.ipv6.conf.ens33.force_tllao = 0 net.ipv6.conf.ens33.forwarding = 0 net.ipv6.conf.ens33.hop_limit = 64 net.ipv6.conf.ens33.ignore_routes_with_linkdown = 0 net.ipv6.conf.ens33.keep_addr_on_down = 0 net.ipv6.conf.ens33.max_addresses = 16 net.ipv6.conf.ens33.max_desync_factor = 600 net.ipv6.conf.ens33.mc_forwarding = 0 net.ipv6.conf.ens33.mldv1_unsolicited_report_interval = 10000 net.ipv6.conf.ens33.mldv2_unsolicited_report_interval = 1000 net.ipv6.conf.ens33.mtu = 1500 net.ipv6.conf.ens33.ndisc_notify = 0 net.ipv6.conf.ens33.ndisc_tclass = 0 net.ipv6.conf.ens33.proxy_ndp = 0 net.ipv6.conf.ens33.regen_max_retry = 3 net.ipv6.conf.ens33.router_probe_interval = 60 net.ipv6.conf.ens33.router_solicitation_delay = 1 net.ipv6.conf.ens33.router_solicitation_interval = 4 net.ipv6.conf.ens33.router_solicitation_max_interval = 3600 net.ipv6.conf.ens33.router_solicitations = -1 net.ipv6.conf.ens33.seg6_enabled = 0 net.ipv6.conf.ens33.seg6_require_hmac = 0 net.ipv6.conf.ens33.suppress_frag_ndisc = 1 net.ipv6.conf.ens33.temp_prefered_lft = 86400 net.ipv6.conf.ens33.temp_valid_lft = 604800 net.ipv6.conf.ens33.use_oif_addrs_only = 0 net.ipv6.conf.ens33.use_tempaddr = 0 net.ipv6.conf.lo.accept_dad = -1 net.ipv6.conf.lo.accept_ra = 1 net.ipv6.conf.lo.accept_ra_defrtr = 1 net.ipv6.conf.lo.accept_ra_from_local = 0 net.ipv6.conf.lo.accept_ra_min_hop_limit = 1 net.ipv6.conf.lo.accept_ra_mtu = 1 net.ipv6.conf.lo.accept_ra_pinfo = 1 net.ipv6.conf.lo.accept_ra_rt_info_max_plen = 0 net.ipv6.conf.lo.accept_ra_rt_info_min_plen = 0 net.ipv6.conf.lo.accept_ra_rtr_pref = 1 net.ipv6.conf.lo.accept_redirects = 1 net.ipv6.conf.lo.accept_source_route = 0 net.ipv6.conf.lo.addr_gen_mode = 0 net.ipv6.conf.lo.autoconf = 1 net.ipv6.conf.lo.dad_transmits = 1 net.ipv6.conf.lo.disable_ipv6 = 0 net.ipv6.conf.lo.disable_policy = 0 net.ipv6.conf.lo.drop_unicast_in_l2_multicast = 0 net.ipv6.conf.lo.drop_unsolicited_na = 0 net.ipv6.conf.lo.enhanced_dad = 1 net.ipv6.conf.lo.force_mld_version = 0 net.ipv6.conf.lo.force_tllao = 0 net.ipv6.conf.lo.forwarding = 0 net.ipv6.conf.lo.hop_limit = 64 net.ipv6.conf.lo.ignore_routes_with_linkdown = 0 net.ipv6.conf.lo.keep_addr_on_down = 0 net.ipv6.conf.lo.max_addresses = 16 net.ipv6.conf.lo.max_desync_factor = 600 net.ipv6.conf.lo.mc_forwarding = 0 net.ipv6.conf.lo.mldv1_unsolicited_report_interval = 10000 net.ipv6.conf.lo.mldv2_unsolicited_report_interval = 1000 net.ipv6.conf.lo.mtu = 65536 net.ipv6.conf.lo.ndisc_notify = 0 net.ipv6.conf.lo.ndisc_tclass = 0 net.ipv6.conf.lo.proxy_ndp = 0 net.ipv6.conf.lo.regen_max_retry = 3 net.ipv6.conf.lo.router_probe_interval = 60 net.ipv6.conf.lo.router_solicitation_delay = 1 net.ipv6.conf.lo.router_solicitation_interval = 4 net.ipv6.conf.lo.router_solicitation_max_interval = 3600 net.ipv6.conf.lo.router_solicitations = -1 net.ipv6.conf.lo.seg6_enabled = 0 net.ipv6.conf.lo.seg6_require_hmac = 0 net.ipv6.conf.lo.suppress_frag_ndisc = 1 net.ipv6.conf.lo.temp_prefered_lft = 86400 net.ipv6.conf.lo.temp_valid_lft = 604800 net.ipv6.conf.lo.use_oif_addrs_only = 0 net.ipv6.conf.lo.use_tempaddr = -1 net.ipv6.flowlabel_consistency = 1 net.ipv6.flowlabel_reflect = 0 net.ipv6.flowlabel_state_ranges = 0 net.ipv6.fwmark_reflect = 0 net.ipv6.icmp.ratelimit = 1000 net.ipv6.idgen_delay = 1 net.ipv6.idgen_retries = 3 net.ipv6.ip6frag_high_thresh = 262144 net.ipv6.ip6frag_low_thresh = 196608 net.ipv6.ip6frag_secret_interval = 0 net.ipv6.ip6frag_time = 60 net.ipv6.ip_nonlocal_bind = 0 net.ipv6.max_dst_opts_length = 2147483647 net.ipv6.max_dst_opts_number = 8 net.ipv6.max_hbh_length = 2147483647 net.ipv6.max_hbh_opts_number = 8 net.ipv6.mld_max_msf = 64 net.ipv6.mld_qrv = 2 net.ipv6.neigh.default.anycast_delay = 100 net.ipv6.neigh.default.app_solicit = 0 net.ipv6.neigh.default.base_reachable_time_ms = 30000 net.ipv6.neigh.default.delay_first_probe_time = 5 net.ipv6.neigh.default.gc_interval = 30 net.ipv6.neigh.default.gc_stale_time = 60 net.ipv6.neigh.default.gc_thresh1 = 128 net.ipv6.neigh.default.gc_thresh2 = 512 net.ipv6.neigh.default.gc_thresh3 = 1024 net.ipv6.neigh.default.locktime = 0 net.ipv6.neigh.default.mcast_resolicit = 0 net.ipv6.neigh.default.mcast_solicit = 3 net.ipv6.neigh.default.proxy_delay = 80 net.ipv6.neigh.default.proxy_qlen = 64 net.ipv6.neigh.default.retrans_time_ms = 1000 net.ipv6.neigh.default.ucast_solicit = 3 net.ipv6.neigh.default.unres_qlen = 101 net.ipv6.neigh.default.unres_qlen_bytes = 212992 net.ipv6.neigh.ens33.anycast_delay = 100 net.ipv6.neigh.ens33.app_solicit = 0 net.ipv6.neigh.ens33.base_reachable_time_ms = 30000 net.ipv6.neigh.ens33.delay_first_probe_time = 5 net.ipv6.neigh.ens33.gc_stale_time = 60 net.ipv6.neigh.ens33.locktime = 0 net.ipv6.neigh.ens33.mcast_resolicit = 0 net.ipv6.neigh.ens33.mcast_solicit = 3 net.ipv6.neigh.ens33.proxy_delay = 80 net.ipv6.neigh.ens33.proxy_qlen = 64 net.ipv6.neigh.ens33.retrans_time_ms = 1000 net.ipv6.neigh.ens33.ucast_solicit = 3 net.ipv6.neigh.ens33.unres_qlen = 101 net.ipv6.neigh.ens33.unres_qlen_bytes = 212992 net.ipv6.neigh.lo.anycast_delay = 100 net.ipv6.neigh.lo.app_solicit = 0 net.ipv6.neigh.lo.base_reachable_time_ms = 30000 net.ipv6.neigh.lo.delay_first_probe_time = 5 net.ipv6.neigh.lo.gc_stale_time = 60 net.ipv6.neigh.lo.locktime = 0 net.ipv6.neigh.lo.mcast_resolicit = 0 net.ipv6.neigh.lo.mcast_solicit = 3 net.ipv6.neigh.lo.proxy_delay = 80 net.ipv6.neigh.lo.proxy_qlen = 64 net.ipv6.neigh.lo.retrans_time_ms = 1000 net.ipv6.neigh.lo.ucast_solicit = 3 net.ipv6.neigh.lo.unres_qlen = 101 net.ipv6.neigh.lo.unres_qlen_bytes = 212992 net.ipv6.route.gc_elasticity = 9 net.ipv6.route.gc_interval = 30 net.ipv6.route.gc_min_interval = 0 net.ipv6.route.gc_min_interval_ms = 500 net.ipv6.route.gc_thresh = 1024 net.ipv6.route.gc_timeout = 60 net.ipv6.route.max_size = 4096 net.ipv6.route.min_adv_mss = 1220 net.ipv6.route.mtu_expires = 600 net.ipv6.xfrm6_gc_thresh = 32768 net.iw_cm.default_backlog = 256 net.netfilter.nf_log.0 = NONE net.netfilter.nf_log.1 = NONE net.netfilter.nf_log.10 = NONE net.netfilter.nf_log.11 = NONE net.netfilter.nf_log.12 = NONE net.netfilter.nf_log.2 = NONE net.netfilter.nf_log.3 = NONE net.netfilter.nf_log.4 = NONE net.netfilter.nf_log.5 = NONE net.netfilter.nf_log.6 = NONE net.netfilter.nf_log.7 = NONE net.netfilter.nf_log.8 = NONE net.netfilter.nf_log.9 = NONE net.netfilter.nf_log_all_netns = 0 net.unix.max_dgram_qlen = 512 user.max_cgroup_namespaces = 7635 user.max_inotify_instances = 1024 user.max_inotify_watches = 8192 user.max_ipc_namespaces = 7635 user.max_mnt_namespaces = 7635 user.max_net_namespaces = 7635 user.max_pid_namespaces = 7635 user.max_user_namespaces = 7635 user.max_uts_namespaces = 7635 vm.admin_reserve_kbytes = 8192 vm.block_dump = 0 vm.compact_unevictable_allowed = 1 vm.dirty_background_bytes = 0 vm.dirty_background_ratio = 10 vm.dirty_bytes = 0 vm.dirty_expire_centisecs = 3000 vm.dirty_ratio = 20 vm.dirty_writeback_centisecs = 500 vm.dirtytime_expire_seconds = 43200 vm.extfrag_threshold = 500 vm.hugepages_treat_as_movable = 0 vm.hugetlb_shm_group = 0 vm.laptop_mode = 0 vm.legacy_va_layout = 0 vm.lowmem_reserve_ratio = 256 256 32 1 vm.max_map_count = 65530 vm.memory_failure_early_kill = 0 vm.memory_failure_recovery = 1 vm.min_free_kbytes = 45056 vm.min_slab_ratio = 5 vm.min_unmapped_ratio = 1 vm.mmap_min_addr = 65536 vm.nr_hugepages = 0 vm.nr_hugepages_mempolicy = 0 vm.nr_overcommit_hugepages = 0 vm.numa_stat = 1 vm.numa_zonelist_order = Node vm.oom_dump_tasks = 1 vm.oom_kill_allocating_task = 0 vm.overcommit_kbytes = 0 vm.overcommit_memory = 0 vm.overcommit_ratio = 50 vm.page-cluster = 3 vm.panic_on_oom = 0 vm.percpu_pagelist_fraction = 0 vm.stat_interval = 1 vm.swappiness = 60 vm.user_reserve_kbytes = 60643 vm.vfs_cache_pressure = 100 vm.watermark_scale_factor = 10 vm.zone_reclaim_mode = 0 jc-1.17.3/tests/fixtures/ubuntu-18.04/systemctl-lj.json000066400000000000000000000004161415226333200225330ustar00rootroot00000000000000[{"job": 3543, "unit": "nginxAfterGlusterfs.service", "type": "start", "state": "waiting"}, {"job": 3545, "unit": "glusterReadyForLocalhostMount.service", "type": "start", "state": "running"}, {"job": 3506, "unit": "nginx.service", "type": "start", "state": "waiting"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/systemctl-lj.out000066400000000000000000000003641415226333200223730ustar00rootroot00000000000000 JOB UNIT TYPE STATE 3543 nginxAfterGlusterfs.service start waiting 3545 glusterReadyForLocalhostMount.service start running 3506 nginx.service start waiting 4 jobs listed. jc-1.17.3/tests/fixtures/ubuntu-18.04/systemctl-ls.json000066400000000000000000000045771415226333200225600ustar00rootroot00000000000000[{"listen": "/dev/rfkill", "unit": "systemd-rfkill.socket", "activates": "systemd-rfkill.service"}, {"listen": "/run/acpid.socket", "unit": "acpid.socket", "activates": "acpid.service"}, {"listen": "/run/apport.socket", "unit": "apport-forward.socket"}, {"listen": "/run/dmeventd-client", "unit": "dm-event.socket", "activates": "dm-event.service"}, {"listen": "/run/dmeventd-server", "unit": "dm-event.socket", "activates": "dm-event.service"}, {"listen": "/run/lvm/lvmetad.socket", "unit": "lvm2-lvmetad.socket", "activates": "lvm2-lvmetad.service"}, {"listen": "/run/lvm/lvmpolld.socket", "unit": "lvm2-lvmpolld.socket", "activates": "lvm2-lvmpolld.service"}, {"listen": "/run/snapd-snap.socket", "unit": "snapd.socket", "activates": "snapd.service"}, {"listen": "/run/snapd.socket", "unit": "snapd.socket", "activates": "snapd.service"}, {"listen": "/run/systemd/fsck.progress", "unit": "systemd-fsckd.socket", "activates": "systemd-fsckd.service"}, {"listen": "/run/systemd/initctl/fifo", "unit": "systemd-initctl.socket", "activates": "systemd-initctl.service"}, {"listen": "/run/systemd/journal/dev-log", "unit": "systemd-journald-dev-log.socket", "activates": "systemd-journald.service"}, {"listen": "/run/systemd/journal/socket", "unit": "systemd-journald.socket", "activates": "systemd-journald.service"}, {"listen": "/run/systemd/journal/stdout", "unit": "systemd-journald.socket", "activates": "systemd-journald.service"}, {"listen": "/run/systemd/journal/syslog", "unit": "syslog.socket", "activates": "rsyslog.service"}, {"listen": "/run/udev/control", "unit": "systemd-udevd-control.socket", "activates": "systemd-udevd.service"}, {"listen": "/run/uuidd/request", "unit": "uuidd.socket", "activates": "uuidd.service"}, {"listen": "/var/lib/lxd/unix.socket", "unit": "lxd.socket", "activates": "lxd.service"}, {"listen": "/var/run/dbus/system_bus_socket", "unit": "dbus.socket", "activates": "dbus.service"}, {"listen": "/var/run/docker.sock", "unit": "docker.socket", "activates": "docker.service"}, {"listen": "@ISCSIADM_ABSTRACT_NAMESPACE", "unit": "iscsid.socket", "activates": "iscsid.service"}, {"listen": "audit 1", "unit": "systemd-journald-audit.socket", "activates": "systemd-journald.service"}, {"listen": "kobject-uevent 1", "unit": "systemd-udevd-kernel.socket", "activates": "systemd-udevd.service"}, {"listen": "route 1361", "unit": "systemd-networkd.socket", "activates": "systemd-networkd.service"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/systemctl-ls.out000066400000000000000000000040301415226333200223760ustar00rootroot00000000000000LISTEN UNIT ACTIVATES /dev/rfkill systemd-rfkill.socket systemd-rfkill.service /run/acpid.socket acpid.socket acpid.service /run/apport.socket apport-forward.socket /run/dmeventd-client dm-event.socket dm-event.service /run/dmeventd-server dm-event.socket dm-event.service /run/lvm/lvmetad.socket lvm2-lvmetad.socket lvm2-lvmetad.service /run/lvm/lvmpolld.socket lvm2-lvmpolld.socket lvm2-lvmpolld.service /run/snapd-snap.socket snapd.socket snapd.service /run/snapd.socket snapd.socket snapd.service /run/systemd/fsck.progress systemd-fsckd.socket systemd-fsckd.service /run/systemd/initctl/fifo systemd-initctl.socket systemd-initctl.service /run/systemd/journal/dev-log systemd-journald-dev-log.socket systemd-journald.service /run/systemd/journal/socket systemd-journald.socket systemd-journald.service /run/systemd/journal/stdout systemd-journald.socket systemd-journald.service /run/systemd/journal/syslog syslog.socket rsyslog.service /run/udev/control systemd-udevd-control.socket systemd-udevd.service /run/uuidd/request uuidd.socket uuidd.service /var/lib/lxd/unix.socket lxd.socket lxd.service /var/run/dbus/system_bus_socket dbus.socket dbus.service /var/run/docker.sock docker.socket docker.service @ISCSIADM_ABSTRACT_NAMESPACE iscsid.socket iscsid.service audit 1 systemd-journald-audit.socket systemd-journald.service kobject-uevent 1 systemd-udevd-kernel.socket systemd-udevd.service route 1361 systemd-networkd.socket systemd-networkd.service 24 sockets listed. jc-1.17.3/tests/fixtures/ubuntu-18.04/systemctl-luf.json000066400000000000000000000445041415226333200227220ustar00rootroot00000000000000[{"unit_file": "proc-sys-fs-binfmt_misc.automount", "state": "static"}, {"unit_file": "-.mount", "state": "generated"}, {"unit_file": "dev-hugepages.mount", "state": "static"}, {"unit_file": "dev-mqueue.mount", "state": "static"}, {"unit_file": "proc-sys-fs-binfmt_misc.mount", "state": "static"}, {"unit_file": "snap-core-7917.mount", "state": "enabled"}, {"unit_file": "snap-core-8039.mount", "state": "enabled"}, {"unit_file": "snap-core18-1223.mount", "state": "enabled"}, {"unit_file": "snap-core18-1265.mount", "state": "enabled"}, {"unit_file": "snap-doctl-215.mount", "state": "enabled"}, {"unit_file": "snap-doctl-222.mount", "state": "enabled"}, {"unit_file": "snap-google\\x2dcloud\\x2dsdk-106.mount", "state": "enabled"}, {"unit_file": "snap-google\\x2dcloud\\x2dsdk-107.mount", "state": "enabled"}, {"unit_file": "snap-slcli-383.mount", "state": "enabled"}, {"unit_file": "snap-stress\\x2dng-1046.mount", "state": "enabled"}, {"unit_file": "snap-stress\\x2dng-1076.mount", "state": "enabled"}, {"unit_file": "sys-fs-fuse-connections.mount", "state": "static"}, {"unit_file": "sys-kernel-config.mount", "state": "static"}, {"unit_file": "sys-kernel-debug.mount", "state": "static"}, {"unit_file": "acpid.path", "state": "enabled"}, {"unit_file": "apport-autoreport.path", "state": "enabled"}, {"unit_file": "systemd-ask-password-console.path", "state": "static"}, {"unit_file": "systemd-ask-password-plymouth.path", "state": "static"}, {"unit_file": "systemd-ask-password-wall.path", "state": "static"}, {"unit_file": "session-103.scope", "state": "transient"}, {"unit_file": "accounts-daemon.service", "state": "enabled"}, {"unit_file": "acpid.service", "state": "disabled"}, {"unit_file": "apparmor.service", "state": "enabled"}, {"unit_file": "apport-autoreport.service", "state": "static"}, {"unit_file": "apport-forward@.service", "state": "static"}, {"unit_file": "apport.service", "state": "generated"}, {"unit_file": "apt-daily-upgrade.service", "state": "static"}, {"unit_file": "apt-daily.service", "state": "static"}, {"unit_file": "atd.service", "state": "enabled"}, {"unit_file": "autovt@.service", "state": "enabled"}, {"unit_file": "blk-availability.service", "state": "enabled"}, {"unit_file": "bootlogd.service", "state": "masked"}, {"unit_file": "bootlogs.service", "state": "masked"}, {"unit_file": "bootmisc.service", "state": "masked"}, {"unit_file": "cgroupfs-mount.service", "state": "masked"}, {"unit_file": "checkfs.service", "state": "masked"}, {"unit_file": "checkroot-bootclean.service", "state": "masked"}, {"unit_file": "checkroot.service", "state": "masked"}, {"unit_file": "cloud-config.service", "state": "enabled"}, {"unit_file": "cloud-final.service", "state": "enabled"}, {"unit_file": "cloud-init-local.service", "state": "enabled"}, {"unit_file": "cloud-init.service", "state": "enabled"}, {"unit_file": "console-getty.service", "state": "disabled"}, {"unit_file": "console-setup.service", "state": "enabled"}, {"unit_file": "container-getty@.service", "state": "static"}, {"unit_file": "containerd.service", "state": "enabled"}, {"unit_file": "cron.service", "state": "enabled"}, {"unit_file": "cryptdisks-early.service", "state": "masked"}, {"unit_file": "cryptdisks.service", "state": "masked"}, {"unit_file": "dbus-org.freedesktop.hostname1.service", "state": "static"}, {"unit_file": "dbus-org.freedesktop.locale1.service", "state": "static"}, {"unit_file": "dbus-org.freedesktop.login1.service", "state": "static"}, {"unit_file": "dbus-org.freedesktop.resolve1.service", "state": "enabled"}, {"unit_file": "dbus-org.freedesktop.thermald.service", "state": "enabled"}, {"unit_file": "dbus-org.freedesktop.timedate1.service", "state": "static"}, {"unit_file": "dbus.service", "state": "static"}, {"unit_file": "debug-shell.service", "state": "disabled"}, {"unit_file": "dm-event.service", "state": "static"}, {"unit_file": "docker.service", "state": "disabled"}, {"unit_file": "ebtables.service", "state": "enabled"}, {"unit_file": "emergency.service", "state": "static"}, {"unit_file": "friendly-recovery.service", "state": "static"}, {"unit_file": "fstrim.service", "state": "static"}, {"unit_file": "fuse.service", "state": "masked"}, {"unit_file": "getty-static.service", "state": "static"}, {"unit_file": "getty@.service", "state": "enabled"}, {"unit_file": "grub-common.service", "state": "generated"}, {"unit_file": "halt.service", "state": "masked"}, {"unit_file": "hostname.service", "state": "masked"}, {"unit_file": "hwclock.service", "state": "masked"}, {"unit_file": "initrd-cleanup.service", "state": "static"}, {"unit_file": "initrd-parse-etc.service", "state": "static"}, {"unit_file": "initrd-switch-root.service", "state": "static"}, {"unit_file": "initrd-udevadm-cleanup-db.service", "state": "static"}, {"unit_file": "irqbalance.service", "state": "enabled"}, {"unit_file": "iscsi.service", "state": "enabled"}, {"unit_file": "iscsid.service", "state": "disabled"}, {"unit_file": "keyboard-setup.service", "state": "enabled"}, {"unit_file": "killprocs.service", "state": "masked"}, {"unit_file": "kmod-static-nodes.service", "state": "static"}, {"unit_file": "kmod.service", "state": "static"}, {"unit_file": "lvm2-lvmetad.service", "state": "static"}, {"unit_file": "lvm2-lvmpolld.service", "state": "static"}, {"unit_file": "lvm2-monitor.service", "state": "enabled"}, {"unit_file": "lvm2-pvscan@.service", "state": "static"}, {"unit_file": "lvm2.service", "state": "masked"}, {"unit_file": "lxcfs.service", "state": "enabled"}, {"unit_file": "lxd-containers.service", "state": "enabled"}, {"unit_file": "lxd.service", "state": "indirect"}, {"unit_file": "mdadm-grow-continue@.service", "state": "static"}, {"unit_file": "mdadm-last-resort@.service", "state": "static"}, {"unit_file": "mdadm-shutdown.service", "state": "disabled"}, {"unit_file": "mdadm-waitidle.service", "state": "masked"}, {"unit_file": "mdadm.service", "state": "masked"}, {"unit_file": "mdmon@.service", "state": "static"}, {"unit_file": "mdmonitor.service", "state": "static"}, {"unit_file": "module-init-tools.service", "state": "static"}, {"unit_file": "motd-news.service", "state": "static"}, {"unit_file": "motd.service", "state": "masked"}, {"unit_file": "mountall-bootclean.service", "state": "masked"}, {"unit_file": "mountall.service", "state": "masked"}, {"unit_file": "mountdevsubfs.service", "state": "masked"}, {"unit_file": "mountkernfs.service", "state": "masked"}, {"unit_file": "mountnfs-bootclean.service", "state": "masked"}, {"unit_file": "mountnfs.service", "state": "masked"}, {"unit_file": "netplan-wpa@.service", "state": "static"}, {"unit_file": "networkd-dispatcher.service", "state": "enabled"}, {"unit_file": "ondemand.service", "state": "enabled"}, {"unit_file": "open-iscsi.service", "state": "enabled"}, {"unit_file": "open-vm-tools.service", "state": "enabled"}, {"unit_file": "plymouth-halt.service", "state": "static"}, {"unit_file": "plymouth-kexec.service", "state": "static"}, {"unit_file": "plymouth-log.service", "state": "static"}, {"unit_file": "plymouth-poweroff.service", "state": "static"}, {"unit_file": "plymouth-quit-wait.service", "state": "static"}, {"unit_file": "plymouth-quit.service", "state": "static"}, {"unit_file": "plymouth-read-write.service", "state": "static"}, {"unit_file": "plymouth-reboot.service", "state": "static"}, {"unit_file": "plymouth-start.service", "state": "static"}, {"unit_file": "plymouth-switch-root.service", "state": "static"}, {"unit_file": "plymouth.service", "state": "static"}, {"unit_file": "polkit.service", "state": "static"}, {"unit_file": "pollinate.service", "state": "enabled"}, {"unit_file": "procps.service", "state": "static"}, {"unit_file": "quotaon.service", "state": "static"}, {"unit_file": "rc-local.service", "state": "static"}, {"unit_file": "rc.local.service", "state": "static"}, {"unit_file": "rc.service", "state": "masked"}, {"unit_file": "rcS.service", "state": "masked"}, {"unit_file": "reboot.service", "state": "masked"}, {"unit_file": "rescue.service", "state": "static"}, {"unit_file": "rmnologin.service", "state": "masked"}, {"unit_file": "rsync.service", "state": "enabled"}, {"unit_file": "rsyslog.service", "state": "enabled"}, {"unit_file": "screen-cleanup.service", "state": "masked"}, {"unit_file": "sendsigs.service", "state": "masked"}, {"unit_file": "serial-getty@.service", "state": "disabled"}, {"unit_file": "setvtrgb.service", "state": "enabled"}, {"unit_file": "single.service", "state": "masked"}, {"unit_file": "snapd.autoimport.service", "state": "enabled"}, {"unit_file": "snapd.core-fixup.service", "state": "enabled"}, {"unit_file": "snapd.failure.service", "state": "static"}, {"unit_file": "snapd.seeded.service", "state": "enabled"}, {"unit_file": "snapd.service", "state": "enabled"}, {"unit_file": "snapd.snap-repair.service", "state": "static"}, {"unit_file": "snapd.system-shutdown.service", "state": "enabled"}, {"unit_file": "ssh.service", "state": "enabled"}, {"unit_file": "ssh@.service", "state": "static"}, {"unit_file": "sshd.service", "state": "enabled"}, {"unit_file": "stop-bootlogd-single.service", "state": "masked"}, {"unit_file": "stop-bootlogd.service", "state": "masked"}, {"unit_file": "sudo.service", "state": "masked"}, {"unit_file": "syslog.service", "state": "enabled"}, {"unit_file": "sysstat.service", "state": "enabled"}, {"unit_file": "system-update-cleanup.service", "state": "static"}, {"unit_file": "systemd-ask-password-console.service", "state": "static"}, {"unit_file": "systemd-ask-password-plymouth.service", "state": "static"}, {"unit_file": "systemd-ask-password-wall.service", "state": "static"}, {"unit_file": "systemd-backlight@.service", "state": "static"}, {"unit_file": "systemd-binfmt.service", "state": "static"}, {"unit_file": "systemd-exit.service", "state": "static"}, {"unit_file": "systemd-fsck-root.service", "state": "static"}, {"unit_file": "systemd-fsck@.service", "state": "static"}, {"unit_file": "systemd-fsckd.service", "state": "static"}, {"unit_file": "systemd-halt.service", "state": "static"}, {"unit_file": "systemd-hibernate-resume@.service", "state": "static"}, {"unit_file": "systemd-hibernate.service", "state": "static"}, {"unit_file": "systemd-hostnamed.service", "state": "static"}, {"unit_file": "systemd-hwdb-update.service", "state": "static"}, {"unit_file": "systemd-hybrid-sleep.service", "state": "static"}, {"unit_file": "systemd-initctl.service", "state": "static"}, {"unit_file": "systemd-journal-flush.service", "state": "static"}, {"unit_file": "systemd-journald.service", "state": "static"}, {"unit_file": "systemd-kexec.service", "state": "static"}, {"unit_file": "systemd-localed.service", "state": "static"}, {"unit_file": "systemd-logind.service", "state": "static"}, {"unit_file": "systemd-machine-id-commit.service", "state": "static"}, {"unit_file": "systemd-modules-load.service", "state": "static"}, {"unit_file": "systemd-networkd-wait-online.service", "state": "enabled"}, {"unit_file": "systemd-networkd.service", "state": "enabled"}, {"unit_file": "systemd-poweroff.service", "state": "static"}, {"unit_file": "systemd-quotacheck.service", "state": "static"}, {"unit_file": "systemd-random-seed.service", "state": "static"}, {"unit_file": "systemd-reboot.service", "state": "static"}, {"unit_file": "systemd-remount-fs.service", "state": "static"}, {"unit_file": "systemd-resolved.service", "state": "enabled"}, {"unit_file": "systemd-rfkill.service", "state": "static"}, {"unit_file": "systemd-suspend-then-hibernate.service", "state": "static"}, {"unit_file": "systemd-suspend.service", "state": "static"}, {"unit_file": "systemd-sysctl.service", "state": "static"}, {"unit_file": "systemd-timedated.service", "state": "static"}, {"unit_file": "systemd-timesyncd.service", "state": "enabled"}, {"unit_file": "systemd-tmpfiles-clean.service", "state": "static"}, {"unit_file": "systemd-tmpfiles-setup-dev.service", "state": "static"}, {"unit_file": "systemd-tmpfiles-setup.service", "state": "static"}, {"unit_file": "systemd-udev-settle.service", "state": "static"}, {"unit_file": "systemd-udev-trigger.service", "state": "static"}, {"unit_file": "systemd-udevd.service", "state": "static"}, {"unit_file": "systemd-update-utmp-runlevel.service", "state": "static"}, {"unit_file": "systemd-update-utmp.service", "state": "static"}, {"unit_file": "systemd-user-sessions.service", "state": "static"}, {"unit_file": "systemd-volatile-root.service", "state": "static"}, {"unit_file": "thermald.service", "state": "enabled"}, {"unit_file": "ttyS0.service", "state": "enabled"}, {"unit_file": "ubuntu-fan.service", "state": "enabled"}, {"unit_file": "udev.service", "state": "static"}, {"unit_file": "ufw.service", "state": "enabled"}, {"unit_file": "umountfs.service", "state": "masked"}, {"unit_file": "umountnfs.service", "state": "masked"}, {"unit_file": "umountroot.service", "state": "masked"}, {"unit_file": "unattended-upgrades.service", "state": "enabled"}, {"unit_file": "urandom.service", "state": "static"}, {"unit_file": "ureadahead-stop.service", "state": "static"}, {"unit_file": "ureadahead.service", "state": "enabled"}, {"unit_file": "user@.service", "state": "static"}, {"unit_file": "uuidd.service", "state": "indirect"}, {"unit_file": "vgauth.service", "state": "enabled"}, {"unit_file": "x11-common.service", "state": "masked"}, {"unit_file": "machine.slice", "state": "static"}, {"unit_file": "system.slice", "state": "static"}, {"unit_file": "user-1000.slice", "state": "transient"}, {"unit_file": "user.slice", "state": "static"}, {"unit_file": "acpid.socket", "state": "enabled"}, {"unit_file": "apport-forward.socket", "state": "enabled"}, {"unit_file": "dbus.socket", "state": "static"}, {"unit_file": "dm-event.socket", "state": "enabled"}, {"unit_file": "docker.socket", "state": "enabled"}, {"unit_file": "iscsid.socket", "state": "enabled"}, {"unit_file": "lvm2-lvmetad.socket", "state": "enabled"}, {"unit_file": "lvm2-lvmpolld.socket", "state": "enabled"}, {"unit_file": "lxd.socket", "state": "enabled"}, {"unit_file": "snapd.socket", "state": "enabled"}, {"unit_file": "ssh.socket", "state": "disabled"}, {"unit_file": "syslog.socket", "state": "static"}, {"unit_file": "systemd-fsckd.socket", "state": "static"}, {"unit_file": "systemd-initctl.socket", "state": "static"}, {"unit_file": "systemd-journald-audit.socket", "state": "static"}, {"unit_file": "systemd-journald-dev-log.socket", "state": "static"}, {"unit_file": "systemd-journald.socket", "state": "static"}, {"unit_file": "systemd-networkd.socket", "state": "enabled"}, {"unit_file": "systemd-rfkill.socket", "state": "static"}, {"unit_file": "systemd-udevd-control.socket", "state": "static"}, {"unit_file": "systemd-udevd-kernel.socket", "state": "static"}, {"unit_file": "uuidd.socket", "state": "enabled"}, {"unit_file": "swap.img.swap", "state": "generated"}, {"unit_file": "basic.target", "state": "static"}, {"unit_file": "bluetooth.target", "state": "static"}, {"unit_file": "cloud-config.target", "state": "static"}, {"unit_file": "cloud-init.target", "state": "enabled-runtime"}, {"unit_file": "cryptsetup-pre.target", "state": "static"}, {"unit_file": "cryptsetup.target", "state": "static"}, {"unit_file": "ctrl-alt-del.target", "state": "disabled"}, {"unit_file": "default.target", "state": "static"}, {"unit_file": "emergency.target", "state": "static"}, {"unit_file": "exit.target", "state": "disabled"}, {"unit_file": "final.target", "state": "static"}, {"unit_file": "friendly-recovery.target", "state": "static"}, {"unit_file": "getty-pre.target", "state": "static"}, {"unit_file": "getty.target", "state": "static"}, {"unit_file": "graphical.target", "state": "static"}, {"unit_file": "halt.target", "state": "disabled"}, {"unit_file": "hibernate.target", "state": "static"}, {"unit_file": "hybrid-sleep.target", "state": "static"}, {"unit_file": "initrd-fs.target", "state": "static"}, {"unit_file": "initrd-root-device.target", "state": "static"}, {"unit_file": "initrd-root-fs.target", "state": "static"}, {"unit_file": "initrd-switch-root.target", "state": "static"}, {"unit_file": "initrd.target", "state": "static"}, {"unit_file": "kexec.target", "state": "disabled"}, {"unit_file": "local-fs-pre.target", "state": "static"}, {"unit_file": "local-fs.target", "state": "static"}, {"unit_file": "multi-user.target", "state": "static"}, {"unit_file": "network-online.target", "state": "static"}, {"unit_file": "network-pre.target", "state": "static"}, {"unit_file": "network.target", "state": "static"}, {"unit_file": "nss-lookup.target", "state": "static"}, {"unit_file": "nss-user-lookup.target", "state": "static"}, {"unit_file": "paths.target", "state": "static"}, {"unit_file": "poweroff.target", "state": "disabled"}, {"unit_file": "printer.target", "state": "static"}, {"unit_file": "reboot.target", "state": "disabled"}, {"unit_file": "remote-cryptsetup.target", "state": "disabled"}, {"unit_file": "remote-fs-pre.target", "state": "static"}, {"unit_file": "remote-fs.target", "state": "enabled"}, {"unit_file": "rescue.target", "state": "static"}, {"unit_file": "rpcbind.target", "state": "static"}, {"unit_file": "runlevel0.target", "state": "disabled"}, {"unit_file": "runlevel1.target", "state": "static"}, {"unit_file": "runlevel2.target", "state": "static"}, {"unit_file": "runlevel3.target", "state": "static"}, {"unit_file": "runlevel4.target", "state": "static"}, {"unit_file": "runlevel5.target", "state": "static"}, {"unit_file": "runlevel6.target", "state": "disabled"}, {"unit_file": "shutdown.target", "state": "static"}, {"unit_file": "sigpwr.target", "state": "static"}, {"unit_file": "sleep.target", "state": "static"}, {"unit_file": "slices.target", "state": "static"}, {"unit_file": "smartcard.target", "state": "static"}, {"unit_file": "sockets.target", "state": "static"}, {"unit_file": "sound.target", "state": "static"}, {"unit_file": "suspend-then-hibernate.target", "state": "static"}, {"unit_file": "suspend.target", "state": "static"}, {"unit_file": "swap.target", "state": "static"}, {"unit_file": "sysinit.target", "state": "static"}, {"unit_file": "system-update.target", "state": "static"}, {"unit_file": "time-sync.target", "state": "static"}, {"unit_file": "timers.target", "state": "static"}, {"unit_file": "umount.target", "state": "static"}, {"unit_file": "apt-daily-upgrade.timer", "state": "enabled"}, {"unit_file": "apt-daily.timer", "state": "enabled"}, {"unit_file": "fstrim.timer", "state": "enabled"}, {"unit_file": "mdadm-last-resort@.timer", "state": "static"}, {"unit_file": "motd-news.timer", "state": "enabled"}, {"unit_file": "snapd.snap-repair.timer", "state": "enabled"}, {"unit_file": "systemd-tmpfiles-clean.timer", "state": "static"}, {"unit_file": "ureadahead-stop.timer", "state": "static"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/systemctl-luf.out000066400000000000000000000425061415226333200225600ustar00rootroot00000000000000UNIT FILE STATE proc-sys-fs-binfmt_misc.automount static -.mount generated dev-hugepages.mount static dev-mqueue.mount static proc-sys-fs-binfmt_misc.mount static snap-core-7917.mount enabled snap-core-8039.mount enabled snap-core18-1223.mount enabled snap-core18-1265.mount enabled snap-doctl-215.mount enabled snap-doctl-222.mount enabled snap-google\x2dcloud\x2dsdk-106.mount enabled snap-google\x2dcloud\x2dsdk-107.mount enabled snap-slcli-383.mount enabled snap-stress\x2dng-1046.mount enabled snap-stress\x2dng-1076.mount enabled sys-fs-fuse-connections.mount static sys-kernel-config.mount static sys-kernel-debug.mount static acpid.path enabled apport-autoreport.path enabled systemd-ask-password-console.path static systemd-ask-password-plymouth.path static systemd-ask-password-wall.path static session-103.scope transient accounts-daemon.service enabled acpid.service disabled apparmor.service enabled apport-autoreport.service static apport-forward@.service static apport.service generated apt-daily-upgrade.service static apt-daily.service static atd.service enabled autovt@.service enabled blk-availability.service enabled bootlogd.service masked bootlogs.service masked bootmisc.service masked cgroupfs-mount.service masked checkfs.service masked checkroot-bootclean.service masked checkroot.service masked cloud-config.service enabled cloud-final.service enabled cloud-init-local.service enabled cloud-init.service enabled console-getty.service disabled console-setup.service enabled container-getty@.service static containerd.service enabled cron.service enabled cryptdisks-early.service masked cryptdisks.service masked dbus-org.freedesktop.hostname1.service static dbus-org.freedesktop.locale1.service static dbus-org.freedesktop.login1.service static dbus-org.freedesktop.resolve1.service enabled dbus-org.freedesktop.thermald.service enabled dbus-org.freedesktop.timedate1.service static dbus.service static debug-shell.service disabled dm-event.service static docker.service disabled ebtables.service enabled emergency.service static friendly-recovery.service static fstrim.service static fuse.service masked getty-static.service static getty@.service enabled grub-common.service generated halt.service masked hostname.service masked hwclock.service masked initrd-cleanup.service static initrd-parse-etc.service static initrd-switch-root.service static initrd-udevadm-cleanup-db.service static irqbalance.service enabled iscsi.service enabled iscsid.service disabled keyboard-setup.service enabled killprocs.service masked kmod-static-nodes.service static kmod.service static lvm2-lvmetad.service static lvm2-lvmpolld.service static lvm2-monitor.service enabled lvm2-pvscan@.service static lvm2.service masked lxcfs.service enabled lxd-containers.service enabled lxd.service indirect mdadm-grow-continue@.service static mdadm-last-resort@.service static mdadm-shutdown.service disabled mdadm-waitidle.service masked mdadm.service masked mdmon@.service static mdmonitor.service static module-init-tools.service static motd-news.service static motd.service masked mountall-bootclean.service masked mountall.service masked mountdevsubfs.service masked mountkernfs.service masked mountnfs-bootclean.service masked mountnfs.service masked netplan-wpa@.service static networkd-dispatcher.service enabled ondemand.service enabled open-iscsi.service enabled open-vm-tools.service enabled plymouth-halt.service static plymouth-kexec.service static plymouth-log.service static plymouth-poweroff.service static plymouth-quit-wait.service static plymouth-quit.service static plymouth-read-write.service static plymouth-reboot.service static plymouth-start.service static plymouth-switch-root.service static plymouth.service static polkit.service static pollinate.service enabled procps.service static quotaon.service static rc-local.service static rc.local.service static rc.service masked rcS.service masked reboot.service masked rescue.service static rmnologin.service masked rsync.service enabled rsyslog.service enabled screen-cleanup.service masked sendsigs.service masked serial-getty@.service disabled setvtrgb.service enabled single.service masked snapd.autoimport.service enabled snapd.core-fixup.service enabled snapd.failure.service static snapd.seeded.service enabled snapd.service enabled snapd.snap-repair.service static snapd.system-shutdown.service enabled ssh.service enabled ssh@.service static sshd.service enabled stop-bootlogd-single.service masked stop-bootlogd.service masked sudo.service masked syslog.service enabled sysstat.service enabled system-update-cleanup.service static systemd-ask-password-console.service static systemd-ask-password-plymouth.service static systemd-ask-password-wall.service static systemd-backlight@.service static systemd-binfmt.service static systemd-exit.service static systemd-fsck-root.service static systemd-fsck@.service static systemd-fsckd.service static systemd-halt.service static systemd-hibernate-resume@.service static systemd-hibernate.service static systemd-hostnamed.service static systemd-hwdb-update.service static systemd-hybrid-sleep.service static systemd-initctl.service static systemd-journal-flush.service static systemd-journald.service static systemd-kexec.service static systemd-localed.service static systemd-logind.service static systemd-machine-id-commit.service static systemd-modules-load.service static systemd-networkd-wait-online.service enabled systemd-networkd.service enabled systemd-poweroff.service static systemd-quotacheck.service static systemd-random-seed.service static systemd-reboot.service static systemd-remount-fs.service static systemd-resolved.service enabled systemd-rfkill.service static systemd-suspend-then-hibernate.service static systemd-suspend.service static systemd-sysctl.service static systemd-timedated.service static systemd-timesyncd.service enabled systemd-tmpfiles-clean.service static systemd-tmpfiles-setup-dev.service static systemd-tmpfiles-setup.service static systemd-udev-settle.service static systemd-udev-trigger.service static systemd-udevd.service static systemd-update-utmp-runlevel.service static systemd-update-utmp.service static systemd-user-sessions.service static systemd-volatile-root.service static thermald.service enabled ttyS0.service enabled ubuntu-fan.service enabled udev.service static ufw.service enabled umountfs.service masked umountnfs.service masked umountroot.service masked unattended-upgrades.service enabled urandom.service static ureadahead-stop.service static ureadahead.service enabled user@.service static uuidd.service indirect vgauth.service enabled x11-common.service masked machine.slice static system.slice static user-1000.slice transient user.slice static acpid.socket enabled apport-forward.socket enabled dbus.socket static dm-event.socket enabled docker.socket enabled iscsid.socket enabled lvm2-lvmetad.socket enabled lvm2-lvmpolld.socket enabled lxd.socket enabled snapd.socket enabled ssh.socket disabled syslog.socket static systemd-fsckd.socket static systemd-initctl.socket static systemd-journald-audit.socket static systemd-journald-dev-log.socket static systemd-journald.socket static systemd-networkd.socket enabled systemd-rfkill.socket static systemd-udevd-control.socket static systemd-udevd-kernel.socket static uuidd.socket enabled swap.img.swap generated basic.target static bluetooth.target static cloud-config.target static cloud-init.target enabled-runtime cryptsetup-pre.target static cryptsetup.target static ctrl-alt-del.target disabled default.target static emergency.target static exit.target disabled final.target static friendly-recovery.target static getty-pre.target static getty.target static graphical.target static halt.target disabled hibernate.target static hybrid-sleep.target static initrd-fs.target static initrd-root-device.target static initrd-root-fs.target static initrd-switch-root.target static initrd.target static kexec.target disabled local-fs-pre.target static local-fs.target static multi-user.target static network-online.target static network-pre.target static network.target static nss-lookup.target static nss-user-lookup.target static paths.target static poweroff.target disabled printer.target static reboot.target disabled remote-cryptsetup.target disabled remote-fs-pre.target static remote-fs.target enabled rescue.target static rpcbind.target static runlevel0.target disabled runlevel1.target static runlevel2.target static runlevel3.target static runlevel4.target static runlevel5.target static runlevel6.target disabled shutdown.target static sigpwr.target static sleep.target static slices.target static smartcard.target static sockets.target static sound.target static suspend-then-hibernate.target static suspend.target static swap.target static sysinit.target static system-update.target static time-sync.target static timers.target static umount.target static apt-daily-upgrade.timer enabled apt-daily.timer enabled fstrim.timer enabled mdadm-last-resort@.timer static motd-news.timer enabled snapd.snap-repair.timer enabled systemd-tmpfiles-clean.timer static ureadahead-stop.timer static 321 unit files listed. jc-1.17.3/tests/fixtures/ubuntu-18.04/systemctl.json000066400000000000000000001354271415226333200221430ustar00rootroot00000000000000[{"unit": "proc-sys-fs-binfmt_misc.automount", "load": "loaded", "active": "active", "sub": "waiting", "description": "Arbitrary Executable File Formats File System Automount Point"}, {"unit": "dev-cdrom.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "VMware_Virtual_SATA_CDRW_Drive CDROM"}, {"unit": "dev-cdrw.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "VMware_Virtual_SATA_CDRW_Drive Ubuntu-Server_18.04.3_LTS_amd64"}, {"unit": "dev-disk-by\\x2did-ata\\x2dVMware_Virtual_SATA_CDRW_Drive_00000000000000000001.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "VMware_Virtual_SATA_CDRW_Drive CDROM"}, {"unit": "dev-disk-by\\x2did-ata\\x2dVMware_Virtual_SATA_CDRW_Drive_01000000000000000001.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "VMware_Virtual_SATA_CDRW_Drive Ubuntu-Server_18.04.3_LTS_amd64"}, {"unit": "dev-disk-by\\x2dlabel-CDROM.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "VMware_Virtual_SATA_CDRW_Drive CDROM"}, {"unit": "dev-disk-by\\x2dlabel-Ubuntu\\x2dServer\\x5cx2018.04.3\\x5cx20LTS\\x5cx20amd64.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "VMware_Virtual_SATA_CDRW_Drive Ubuntu-Server_18.04.3_LTS_amd64"}, {"unit": "dev-disk-by\\x2dpartuuid-744589e8\\x2d5711\\x2d4750\\x2d9984\\x2dc34d66f93879.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "VMware_Virtual_S 2"}, {"unit": "dev-disk-by\\x2dpartuuid-e0614271\\x2dc211\\x2d4324\\x2da5bc\\x2d8e6bcb66da43.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "VMware_Virtual_S 1"}, {"unit": "dev-disk-by\\x2dpath-pci\\x2d0000:00:10.0\\x2dscsi\\x2d0:0:0:0.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "VMware_Virtual_S"}, {"unit": "dev-disk-by\\x2dpath-pci\\x2d0000:00:10.0\\x2dscsi\\x2d0:0:0:0\\x2dpart1.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "VMware_Virtual_S 1"}, {"unit": "dev-disk-by\\x2dpath-pci\\x2d0000:00:10.0\\x2dscsi\\x2d0:0:0:0\\x2dpart2.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "VMware_Virtual_S 2"}, {"unit": "dev-disk-by\\x2dpath-pci\\x2d0000:02:04.0\\x2data\\x2d1.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "VMware_Virtual_SATA_CDRW_Drive CDROM"}, {"unit": "dev-disk-by\\x2dpath-pci\\x2d0000:02:04.0\\x2data\\x2d2.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "VMware_Virtual_SATA_CDRW_Drive Ubuntu-Server_18.04.3_LTS_amd64"}, {"unit": "dev-disk-by\\x2duuid-011527a0\\x2dc72a\\x2d4c00\\x2da50e\\x2dee90da26b6e2.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "VMware_Virtual_S 2"}, {"unit": "dev-disk-by\\x2duuid-2019\\x2d08\\x2d05\\x2d20\\x2d00\\x2d00\\x2d00.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "VMware_Virtual_SATA_CDRW_Drive Ubuntu-Server_18.04.3_LTS_amd64"}, {"unit": "dev-disk-by\\x2duuid-2019\\x2d08\\x2d12\\x2d10\\x2d17\\x2d03\\x2d63.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "VMware_Virtual_SATA_CDRW_Drive CDROM"}, {"unit": "dev-dvd.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "VMware_Virtual_SATA_CDRW_Drive CDROM"}, {"unit": "dev-fd0.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/fd0"}, {"unit": "dev-loop0.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/loop0"}, {"unit": "dev-loop1.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/loop1"}, {"unit": "dev-loop10.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/loop10"}, {"unit": "dev-loop11.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/loop11"}, {"unit": "dev-loop2.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/loop2"}, {"unit": "dev-loop3.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/loop3"}, {"unit": "dev-loop4.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/loop4"}, {"unit": "dev-loop5.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/loop5"}, {"unit": "dev-loop7.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/loop7"}, {"unit": "dev-loop8.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/loop8"}, {"unit": "dev-loop9.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/loop9"}, {"unit": "dev-rfkill.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/rfkill"}, {"unit": "dev-sda.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "VMware_Virtual_S"}, {"unit": "dev-sda1.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "VMware_Virtual_S 1"}, {"unit": "dev-sda2.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "VMware_Virtual_S 2"}, {"unit": "dev-sr0.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "VMware_Virtual_SATA_CDRW_Drive CDROM"}, {"unit": "dev-sr1.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "VMware_Virtual_SATA_CDRW_Drive Ubuntu-Server_18.04.3_LTS_amd64"}, {"unit": "dev-ttyprintk.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/ttyprintk"}, {"unit": "dev-ttyS0.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/ttyS0"}, {"unit": "dev-ttyS1.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/ttyS1"}, {"unit": "dev-ttyS10.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/ttyS10"}, {"unit": "dev-ttyS11.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/ttyS11"}, {"unit": "dev-ttyS12.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/ttyS12"}, {"unit": "dev-ttyS13.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/ttyS13"}, {"unit": "dev-ttyS14.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/ttyS14"}, {"unit": "dev-ttyS15.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/ttyS15"}, {"unit": "dev-ttyS16.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/ttyS16"}, {"unit": "dev-ttyS17.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/ttyS17"}, {"unit": "dev-ttyS18.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/ttyS18"}, {"unit": "dev-ttyS19.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/ttyS19"}, {"unit": "dev-ttyS2.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/ttyS2"}, {"unit": "dev-ttyS20.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/ttyS20"}, {"unit": "dev-ttyS21.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/ttyS21"}, {"unit": "dev-ttyS22.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/ttyS22"}, {"unit": "dev-ttyS23.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/ttyS23"}, {"unit": "dev-ttyS24.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/ttyS24"}, {"unit": "dev-ttyS25.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/ttyS25"}, {"unit": "dev-ttyS26.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/ttyS26"}, {"unit": "dev-ttyS27.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/ttyS27"}, {"unit": "dev-ttyS28.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/ttyS28"}, {"unit": "dev-ttyS29.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/ttyS29"}, {"unit": "dev-ttyS3.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/ttyS3"}, {"unit": "dev-ttyS30.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/ttyS30"}, {"unit": "dev-ttyS31.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/ttyS31"}, {"unit": "dev-ttyS4.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/ttyS4"}, {"unit": "dev-ttyS5.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/ttyS5"}, {"unit": "dev-ttyS6.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/ttyS6"}, {"unit": "dev-ttyS7.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/ttyS7"}, {"unit": "dev-ttyS8.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/ttyS8"}, {"unit": "dev-ttyS9.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/dev/ttyS9"}, {"unit": "sys-devices-pci0000:00-0000:00:10.0-host32-target32:0:0-32:0:0:0-block-sda-sda1.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "VMware_Virtual_S 1"}, {"unit": "sys-devices-pci0000:00-0000:00:10.0-host32-target32:0:0-32:0:0:0-block-sda-sda2.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "VMware_Virtual_S 2"}, {"unit": "sys-devices-pci0000:00-0000:00:10.0-host32-target32:0:0-32:0:0:0-block-sda.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "VMware_Virtual_S"}, {"unit": "sys-devices-pci0000:00-0000:00:11.0-0000:02:00.0-usb2-2\\x2d2-2\\x2d2.1-2\\x2d2.1:1.0-bluetooth-hci0.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/pci0000:00/0000:00:11.0/0000:02:00.0/usb2/2-2/2-2.1/2-2.1:1.0/bluetooth/hci0"}, {"unit": "sys-devices-pci0000:00-0000:00:11.0-0000:02:01.0-net-ens33.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "82545EM Gigabit Ethernet Controller (Copper) (PRO/1000 MT Single Port Adapter)"}, {"unit": "sys-devices-pci0000:00-0000:00:11.0-0000:02:04.0-ata3-host2-target2:0:0-2:0:0:0-block-sr0.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "VMware_Virtual_SATA_CDRW_Drive CDROM"}, {"unit": "sys-devices-pci0000:00-0000:00:11.0-0000:02:04.0-ata4-host3-target3:0:0-3:0:0:0-block-sr1.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "VMware_Virtual_SATA_CDRW_Drive Ubuntu-Server_18.04.3_LTS_amd64"}, {"unit": "sys-devices-platform-floppy.0-block-fd0.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/platform/floppy.0/block/fd0"}, {"unit": "sys-devices-platform-serial8250-tty-ttyS1.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/platform/serial8250/tty/ttyS1"}, {"unit": "sys-devices-platform-serial8250-tty-ttyS10.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/platform/serial8250/tty/ttyS10"}, {"unit": "sys-devices-platform-serial8250-tty-ttyS11.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/platform/serial8250/tty/ttyS11"}, {"unit": "sys-devices-platform-serial8250-tty-ttyS12.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/platform/serial8250/tty/ttyS12"}, {"unit": "sys-devices-platform-serial8250-tty-ttyS13.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/platform/serial8250/tty/ttyS13"}, {"unit": "sys-devices-platform-serial8250-tty-ttyS14.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/platform/serial8250/tty/ttyS14"}, {"unit": "sys-devices-platform-serial8250-tty-ttyS15.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/platform/serial8250/tty/ttyS15"}, {"unit": "sys-devices-platform-serial8250-tty-ttyS16.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/platform/serial8250/tty/ttyS16"}, {"unit": "sys-devices-platform-serial8250-tty-ttyS17.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/platform/serial8250/tty/ttyS17"}, {"unit": "sys-devices-platform-serial8250-tty-ttyS18.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/platform/serial8250/tty/ttyS18"}, {"unit": "sys-devices-platform-serial8250-tty-ttyS19.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/platform/serial8250/tty/ttyS19"}, {"unit": "sys-devices-platform-serial8250-tty-ttyS2.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/platform/serial8250/tty/ttyS2"}, {"unit": "sys-devices-platform-serial8250-tty-ttyS20.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/platform/serial8250/tty/ttyS20"}, {"unit": "sys-devices-platform-serial8250-tty-ttyS21.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/platform/serial8250/tty/ttyS21"}, {"unit": "sys-devices-platform-serial8250-tty-ttyS22.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/platform/serial8250/tty/ttyS22"}, {"unit": "sys-devices-platform-serial8250-tty-ttyS23.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/platform/serial8250/tty/ttyS23"}, {"unit": "sys-devices-platform-serial8250-tty-ttyS24.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/platform/serial8250/tty/ttyS24"}, {"unit": "sys-devices-platform-serial8250-tty-ttyS25.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/platform/serial8250/tty/ttyS25"}, {"unit": "sys-devices-platform-serial8250-tty-ttyS26.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/platform/serial8250/tty/ttyS26"}, {"unit": "sys-devices-platform-serial8250-tty-ttyS27.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/platform/serial8250/tty/ttyS27"}, {"unit": "sys-devices-platform-serial8250-tty-ttyS28.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/platform/serial8250/tty/ttyS28"}, {"unit": "sys-devices-platform-serial8250-tty-ttyS29.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/platform/serial8250/tty/ttyS29"}, {"unit": "sys-devices-platform-serial8250-tty-ttyS3.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/platform/serial8250/tty/ttyS3"}, {"unit": "sys-devices-platform-serial8250-tty-ttyS30.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/platform/serial8250/tty/ttyS30"}, {"unit": "sys-devices-platform-serial8250-tty-ttyS31.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/platform/serial8250/tty/ttyS31"}, {"unit": "sys-devices-platform-serial8250-tty-ttyS4.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/platform/serial8250/tty/ttyS4"}, {"unit": "sys-devices-platform-serial8250-tty-ttyS5.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/platform/serial8250/tty/ttyS5"}, {"unit": "sys-devices-platform-serial8250-tty-ttyS6.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/platform/serial8250/tty/ttyS6"}, {"unit": "sys-devices-platform-serial8250-tty-ttyS7.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/platform/serial8250/tty/ttyS7"}, {"unit": "sys-devices-platform-serial8250-tty-ttyS8.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/platform/serial8250/tty/ttyS8"}, {"unit": "sys-devices-platform-serial8250-tty-ttyS9.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/platform/serial8250/tty/ttyS9"}, {"unit": "sys-devices-pnp0-00:05-tty-ttyS0.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/pnp0/00:05/tty/ttyS0"}, {"unit": "sys-devices-virtual-block-loop0.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/virtual/block/loop0"}, {"unit": "sys-devices-virtual-block-loop1.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/virtual/block/loop1"}, {"unit": "sys-devices-virtual-block-loop10.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/virtual/block/loop10"}, {"unit": "sys-devices-virtual-block-loop11.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/virtual/block/loop11"}, {"unit": "sys-devices-virtual-block-loop2.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/virtual/block/loop2"}, {"unit": "sys-devices-virtual-block-loop3.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/virtual/block/loop3"}, {"unit": "sys-devices-virtual-block-loop4.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/virtual/block/loop4"}, {"unit": "sys-devices-virtual-block-loop5.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/virtual/block/loop5"}, {"unit": "sys-devices-virtual-block-loop7.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/virtual/block/loop7"}, {"unit": "sys-devices-virtual-block-loop8.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/virtual/block/loop8"}, {"unit": "sys-devices-virtual-block-loop9.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/virtual/block/loop9"}, {"unit": "sys-devices-virtual-misc-rfkill.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/virtual/misc/rfkill"}, {"unit": "sys-devices-virtual-tty-ttyprintk.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/devices/virtual/tty/ttyprintk"}, {"unit": "sys-module-configfs.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/module/configfs"}, {"unit": "sys-module-fuse.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/module/fuse"}, {"unit": "sys-subsystem-bluetooth-devices-hci0.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "/sys/subsystem/bluetooth/devices/hci0"}, {"unit": "sys-subsystem-net-devices-ens33.device", "load": "loaded", "active": "active", "sub": "plugged", "description": "82545EM Gigabit Ethernet Controller (Copper) (PRO/1000 MT Single Port Adapter)"}, {"unit": "-.mount", "load": "loaded", "active": "active", "sub": "mounted", "description": "Root Mount"}, {"unit": "dev-hugepages.mount", "load": "loaded", "active": "active", "sub": "mounted", "description": "Huge Pages File System"}, {"unit": "dev-mqueue.mount", "load": "loaded", "active": "active", "sub": "mounted", "description": "POSIX Message Queue File System"}, {"unit": "proc-sys-fs-binfmt_misc.mount", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Arbitrary Executable File Formats File System"}, {"unit": "run-user-1000.mount", "load": "loaded", "active": "active", "sub": "mounted", "description": "/run/user/1000"}, {"unit": "snap-core-7917.mount", "load": "loaded", "active": "active", "sub": "mounted", "description": "Mount unit for core, revision 7917"}, {"unit": "snap-core-8039.mount", "load": "loaded", "active": "active", "sub": "mounted", "description": "Mount unit for core, revision 8039"}, {"unit": "snap-core18-1223.mount", "load": "loaded", "active": "active", "sub": "mounted", "description": "Mount unit for core18, revision 1223"}, {"unit": "snap-core18-1265.mount", "load": "loaded", "active": "active", "sub": "mounted", "description": "Mount unit for core18, revision 1265"}, {"unit": "snap-doctl-215.mount", "load": "loaded", "active": "active", "sub": "mounted", "description": "Mount unit for doctl, revision 215"}, {"unit": "snap-doctl-222.mount", "load": "loaded", "active": "active", "sub": "mounted", "description": "Mount unit for doctl, revision 222"}, {"unit": "snap-google\\x2dcloud\\x2dsdk-106.mount", "load": "loaded", "active": "active", "sub": "mounted", "description": "Mount unit for google-cloud-sdk, revision 106"}, {"unit": "snap-google\\x2dcloud\\x2dsdk-107.mount", "load": "loaded", "active": "active", "sub": "mounted", "description": "Mount unit for google-cloud-sdk, revision 107"}, {"unit": "snap-slcli-383.mount", "load": "loaded", "active": "active", "sub": "mounted", "description": "Mount unit for slcli, revision 383"}, {"unit": "snap-stress\\x2dng-1046.mount", "load": "loaded", "active": "active", "sub": "mounted", "description": "Mount unit for stress-ng, revision 1046"}, {"unit": "snap-stress\\x2dng-1076.mount", "load": "loaded", "active": "active", "sub": "mounted", "description": "Mount unit for stress-ng, revision 1076"}, {"unit": "sys-fs-fuse-connections.mount", "load": "loaded", "active": "active", "sub": "mounted", "description": "FUSE Control File System"}, {"unit": "sys-kernel-config.mount", "load": "loaded", "active": "active", "sub": "mounted", "description": "Kernel Configuration File System"}, {"unit": "sys-kernel-debug.mount", "load": "loaded", "active": "active", "sub": "mounted", "description": "Kernel Debug File System"}, {"unit": "tmp.mount", "load": "not-found", "active": "inactive", "sub": "dead", "description": "tmp.mount"}, {"unit": "var-lib-lxcfs.mount", "load": "loaded", "active": "active", "sub": "mounted", "description": "/var/lib/lxcfs"}, {"unit": "acpid.path", "load": "loaded", "active": "active", "sub": "waiting", "description": "ACPI Events Check"}, {"unit": "apport-autoreport.path", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Process error reports when automatic reporting is enabled (file watch)"}, {"unit": "systemd-ask-password-console.path", "load": "loaded", "active": "active", "sub": "waiting", "description": "Dispatch Password Requests to Console Directory Watch"}, {"unit": "systemd-ask-password-plymouth.path", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Forward Password Requests to Plymouth Directory Watch"}, {"unit": "systemd-ask-password-wall.path", "load": "loaded", "active": "active", "sub": "waiting", "description": "Forward Password Requests to Wall Directory Watch"}, {"unit": "init.scope", "load": "loaded", "active": "active", "sub": "running", "description": "System and Service Manager"}, {"unit": "session-103.scope", "load": "loaded", "active": "active", "sub": "running", "description": "Session 103 of user kbrazil"}, {"unit": "accounts-daemon.service", "load": "loaded", "active": "active", "sub": "running", "description": "Accounts Service"}, {"unit": "acpid.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "ACPI event daemon"}, {"unit": "apparmor.service", "load": "loaded", "active": "active", "sub": "exited", "description": "AppArmor initialization"}, {"unit": "apport-autoreport.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Process error reports when automatic reporting is enabled"}, {"unit": "apport.service", "load": "loaded", "active": "active", "sub": "exited", "description": "LSB: automatic crash report generation"}, {"unit": "apt-daily-upgrade.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Daily apt upgrade and clean activities"}, {"unit": "apt-daily.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Daily apt download activities"}, {"unit": "atd.service", "load": "loaded", "active": "active", "sub": "running", "description": "Deferred execution scheduler"}, {"unit": "auditd.service", "load": "not-found", "active": "inactive", "sub": "dead", "description": "auditd.service"}, {"unit": "blk-availability.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Availability of block devices"}, {"unit": "cloud-config.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Apply the settings specified in cloud-config"}, {"unit": "cloud-final.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Execute cloud user/final scripts"}, {"unit": "cloud-init-local.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Initial cloud-init job (pre-networking)"}, {"unit": "cloud-init.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Initial cloud-init job (metadata service crawler)"}, {"unit": "connman.service", "load": "not-found", "active": "inactive", "sub": "dead", "description": "connman.service"}, {"unit": "console-screen.service", "load": "not-found", "active": "inactive", "sub": "dead", "description": "console-screen.service"}, {"unit": "console-setup.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Set console font and keymap"}, {"unit": "containerd.service", "load": "loaded", "active": "active", "sub": "running", "description": "containerd container runtime"}, {"unit": "cron.service", "load": "loaded", "active": "active", "sub": "running", "description": "Regular background program processing daemon"}, {"unit": "dbus.service", "load": "loaded", "active": "active", "sub": "running", "description": "D-Bus System Message Bus"}, {"unit": "display-manager.service", "load": "not-found", "active": "inactive", "sub": "dead", "description": "display-manager.service"}, {"unit": "dm-event.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Device-mapper event daemon"}, {"unit": "docker.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Docker Application Container Engine"}, {"unit": "ebtables.service", "load": "loaded", "active": "active", "sub": "exited", "description": "ebtables ruleset management"}, {"unit": "emergency.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Emergency Shell"}, {"unit": "fcoe.service", "load": "not-found", "active": "inactive", "sub": "dead", "description": "fcoe.service"}, {"unit": "firewalld.service", "load": "not-found", "active": "inactive", "sub": "dead", "description": "firewalld.service"}, {"unit": "fstrim.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Discard unused blocks"}, {"unit": "getty-static.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "getty on tty2-tty6 if dbus and logind are not available"}, {"unit": "getty@tty1.service", "load": "loaded", "active": "active", "sub": "running", "description": "Getty on tty1"}, {"unit": "grub-common.service", "load": "loaded", "active": "active", "sub": "exited", "description": "LSB: Record successful boot for GRUB"}, {"unit": "irqbalance.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "irqbalance daemon"}, {"unit": "iscsi-shutdown.service", "load": "not-found", "active": "inactive", "sub": "dead", "description": "iscsi-shutdown.service"}, {"unit": "iscsid.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "iSCSI initiator daemon (iscsid)"}, {"unit": "kbd.service", "load": "not-found", "active": "inactive", "sub": "dead", "description": "kbd.service"}, {"unit": "keyboard-setup.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Set the console keyboard layout"}, {"unit": "kmod-static-nodes.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Create list of required static device nodes for the current kernel"}, {"unit": "lvm2-activation.service", "load": "not-found", "active": "inactive", "sub": "dead", "description": "lvm2-activation.service"}, {"unit": "lvm2-lvmetad.service", "load": "loaded", "active": "active", "sub": "running", "description": "LVM2 metadata daemon"}, {"unit": "lvm2-lvmpolld.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "LVM2 poll daemon"}, {"unit": "lvm2-monitor.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling"}, {"unit": "lxc.service", "load": "not-found", "active": "inactive", "sub": "dead", "description": "lxc.service"}, {"unit": "lxcfs.service", "load": "loaded", "active": "active", "sub": "running", "description": "FUSE filesystem for LXC"}, {"unit": "lxd-containers.service", "load": "loaded", "active": "active", "sub": "exited", "description": "LXD - container startup/shutdown"}, {"unit": "lxd.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "LXD - main daemon"}, {"unit": "motd-news.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Message of the Day"}, {"unit": "networkd-dispatcher.service", "load": "loaded", "active": "active", "sub": "running", "description": "Dispatcher daemon for systemd-networkd"}, {"unit": "networking.service", "load": "not-found", "active": "inactive", "sub": "dead", "description": "networking.service"}, {"unit": "NetworkManager.service", "load": "not-found", "active": "inactive", "sub": "dead", "description": "NetworkManager.service"}, {"unit": "ondemand.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Set the CPU Frequency Scaling governor"}, {"unit": "open-iscsi.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Login to default iSCSI targets"}, {"unit": "open-vm-tools.service", "load": "loaded", "active": "active", "sub": "running", "description": "Service for virtual machines hosted on VMware"}, {"unit": "openvswitch-switch.service", "load": "not-found", "active": "inactive", "sub": "dead", "description": "openvswitch-switch.service"}, {"unit": "plymouth-quit-wait.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Hold until boot process finishes up"}, {"unit": "plymouth-quit.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Terminate Plymouth Boot Screen"}, {"unit": "plymouth-read-write.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Tell Plymouth To Write Out Runtime Data"}, {"unit": "plymouth-start.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Show Plymouth Boot Screen"}, {"unit": "polkit.service", "load": "loaded", "active": "active", "sub": "running", "description": "Authorization Manager"}, {"unit": "pollinate.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Pollinate to seed the pseudo random number generator"}, {"unit": "rc-local.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "/etc/rc.local Compatibility"}, {"unit": "rescue.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Rescue Shell"}, {"unit": "rsync.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "fast remote file copy program daemon"}, {"unit": "rsyslog.service", "load": "loaded", "active": "active", "sub": "running", "description": "System Logging Service"}, {"unit": "setvtrgb.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Set console scheme"}, {"unit": "snapd.autoimport.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Auto import assertions from block devices"}, {"unit": "snapd.core-fixup.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Automatically repair incorrect owner/permissions on core devices"}, {"unit": "snapd.failure.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Failure handling of the snapd snap"}, {"unit": "snapd.seeded.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Wait until snapd is fully seeded"}, {"unit": "snapd.service", "load": "loaded", "active": "active", "sub": "running", "description": "Snappy daemon"}, {"unit": "snapd.snap-repair.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Automatically fetch and run repair assertions"}, {"unit": "ssh.service", "load": "loaded", "active": "active", "sub": "running", "description": "OpenBSD Secure Shell server"}, {"unit": "sshd-keygen.service", "load": "not-found", "active": "inactive", "sub": "dead", "description": "sshd-keygen.service"}, {"unit": "sysstat.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Resets System Activity Data Collector"}, {"unit": "systemd-ask-password-console.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Dispatch Password Requests to Console"}, {"unit": "systemd-ask-password-plymouth.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Forward Password Requests to Plymouth"}, {"unit": "systemd-ask-password-wall.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Forward Password Requests to Wall"}, {"unit": "systemd-binfmt.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Set Up Additional Binary Formats"}, {"unit": "systemd-fsck-root.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "File System Check on Root Device"}, {"unit": "systemd-fsckd.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "File System Check Daemon to report status"}, {"unit": "systemd-hwdb-update.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Rebuild Hardware Database"}, {"unit": "systemd-initctl.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "/dev/initctl Compatibility Daemon"}, {"unit": "systemd-journal-flush.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Flush Journal to Persistent Storage"}, {"unit": "systemd-journald.service", "load": "loaded", "active": "active", "sub": "running", "description": "Journal Service"}, {"unit": "systemd-logind.service", "load": "loaded", "active": "active", "sub": "running", "description": "Login Service"}, {"unit": "systemd-machine-id-commit.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Commit a transient machine-id on disk"}, {"unit": "systemd-modules-load.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Load Kernel Modules"}, {"unit": "systemd-networkd-wait-online.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Wait for Network to be Configured"}, {"unit": "systemd-networkd.service", "load": "loaded", "active": "active", "sub": "running", "description": "Network Service"}, {"unit": "systemd-random-seed.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Load/Save Random Seed"}, {"unit": "systemd-remount-fs.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Remount Root and Kernel File Systems"}, {"unit": "systemd-resolved.service", "load": "loaded", "active": "active", "sub": "running", "description": "Network Name Resolution"}, {"unit": "systemd-rfkill.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Load/Save RF Kill Switch Status"}, {"unit": "systemd-sysctl.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Apply Kernel Variables"}, {"unit": "systemd-sysusers.service", "load": "not-found", "active": "inactive", "sub": "dead", "description": "systemd-sysusers.service"}, {"unit": "systemd-timesyncd.service", "load": "loaded", "active": "active", "sub": "running", "description": "Network Time Synchronization"}, {"unit": "systemd-tmpfiles-clean.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Cleanup of Temporary Directories"}, {"unit": "systemd-tmpfiles-setup-dev.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Create Static Device Nodes in /dev"}, {"unit": "systemd-tmpfiles-setup.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Create Volatile Files and Directories"}, {"unit": "systemd-udev-trigger.service", "load": "loaded", "active": "active", "sub": "exited", "description": "udev Coldplug all Devices"}, {"unit": "systemd-udevd.service", "load": "loaded", "active": "active", "sub": "running", "description": "udev Kernel Device Manager"}, {"unit": "systemd-update-done.service", "load": "not-found", "active": "inactive", "sub": "dead", "description": "systemd-update-done.service"}, {"unit": "systemd-update-utmp-runlevel.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Update UTMP about System Runlevel Changes"}, {"unit": "systemd-update-utmp.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Update UTMP about System Boot/Shutdown"}, {"unit": "systemd-user-sessions.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Permit User Sessions"}, {"unit": "systemd-vconsole-setup.service", "load": "not-found", "active": "inactive", "sub": "dead", "description": "systemd-vconsole-setup.service"}, {"unit": "thermald.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Thermal Daemon Service"}, {"unit": "ttyS0.service", "load": "loaded", "active": "active", "sub": "running", "description": "Serial Console Service"}, {"unit": "ubuntu-fan.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Ubuntu FAN network setup"}, {"unit": "ufw.service", "load": "loaded", "active": "active", "sub": "exited", "description": "Uncomplicated firewall"}, {"unit": "unattended-upgrades.service", "load": "loaded", "active": "active", "sub": "running", "description": "Unattended Upgrades Shutdown"}, {"unit": "ureadahead-stop.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Stop ureadahead data collection"}, {"unit": "ureadahead.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Read required files in advance"}, {"unit": "user@1000.service", "load": "loaded", "active": "active", "sub": "running", "description": "User Manager for UID 1000"}, {"unit": "uuidd.service", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Daemon for generating UUIDs"}, {"unit": "vgauth.service", "load": "loaded", "active": "active", "sub": "running", "description": "Authentication service for virtual machines hosted on VMware"}, {"unit": "whoopsie.service", "load": "not-found", "active": "inactive", "sub": "dead", "description": "whoopsie.service"}, {"unit": "-.slice", "load": "loaded", "active": "active", "sub": "active", "description": "Root Slice"}, {"unit": "system-getty.slice", "load": "loaded", "active": "active", "sub": "active", "description": "system-getty.slice"}, {"unit": "system.slice", "load": "loaded", "active": "active", "sub": "active", "description": "System Slice"}, {"unit": "user-1000.slice", "load": "loaded", "active": "active", "sub": "active", "description": "User Slice of kbrazil"}, {"unit": "user.slice", "load": "loaded", "active": "active", "sub": "active", "description": "User and Session Slice"}, {"unit": "acpid.socket", "load": "loaded", "active": "active", "sub": "listening", "description": "ACPID Listen Socket"}, {"unit": "apport-forward.socket", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Unix socket for apport crash forwarding"}, {"unit": "dbus.socket", "load": "loaded", "active": "active", "sub": "running", "description": "D-Bus System Message Bus Socket"}, {"unit": "dm-event.socket", "load": "loaded", "active": "active", "sub": "listening", "description": "Device-mapper event daemon FIFOs"}, {"unit": "docker.socket", "load": "loaded", "active": "active", "sub": "listening", "description": "Docker Socket for the API"}, {"unit": "iscsid.socket", "load": "loaded", "active": "active", "sub": "listening", "description": "Open-iSCSI iscsid Socket"}, {"unit": "lvm2-lvmetad.socket", "load": "loaded", "active": "active", "sub": "running", "description": "LVM2 metadata daemon socket"}, {"unit": "lvm2-lvmpolld.socket", "load": "loaded", "active": "active", "sub": "listening", "description": "LVM2 poll daemon socket"}, {"unit": "lxd.socket", "load": "loaded", "active": "active", "sub": "listening", "description": "LXD - unix socket"}, {"unit": "snapd.socket", "load": "loaded", "active": "active", "sub": "running", "description": "Socket activation for snappy daemon"}, {"unit": "syslog.socket", "load": "loaded", "active": "active", "sub": "running", "description": "Syslog Socket"}, {"unit": "systemd-fsckd.socket", "load": "loaded", "active": "inactive", "sub": "dead", "description": "fsck to fsckd communication Socket"}, {"unit": "systemd-initctl.socket", "load": "loaded", "active": "active", "sub": "listening", "description": "/dev/initctl Compatibility Named Pipe"}, {"unit": "systemd-journald-audit.socket", "load": "loaded", "active": "active", "sub": "running", "description": "Journal Audit Socket"}, {"unit": "systemd-journald-dev-log.socket", "load": "loaded", "active": "active", "sub": "running", "description": "Journal Socket (/dev/log)"}, {"unit": "systemd-journald.socket", "load": "loaded", "active": "active", "sub": "running", "description": "Journal Socket"}, {"unit": "systemd-networkd.socket", "load": "loaded", "active": "active", "sub": "running", "description": "Network Service Netlink Socket"}, {"unit": "systemd-rfkill.socket", "load": "loaded", "active": "active", "sub": "listening", "description": "Load/Save RF Kill Switch Status /dev/rfkill Watch"}, {"unit": "systemd-udevd-control.socket", "load": "loaded", "active": "active", "sub": "running", "description": "udev Control Socket"}, {"unit": "systemd-udevd-kernel.socket", "load": "loaded", "active": "active", "sub": "running", "description": "udev Kernel Socket"}, {"unit": "uuidd.socket", "load": "loaded", "active": "active", "sub": "listening", "description": "UUID daemon activation socket"}, {"unit": "swap.img.swap", "load": "loaded", "active": "active", "sub": "active", "description": "/swap.img"}, {"unit": "all.target", "load": "not-found", "active": "inactive", "sub": "dead", "description": "all.target"}, {"unit": "basic.target", "load": "loaded", "active": "active", "sub": "active", "description": "Basic System"}, {"unit": "bluetooth.target", "load": "loaded", "active": "active", "sub": "active", "description": "Bluetooth"}, {"unit": "cloud-config.target", "load": "loaded", "active": "active", "sub": "active", "description": "Cloud-config availability"}, {"unit": "cloud-init.target", "load": "loaded", "active": "active", "sub": "active", "description": "Cloud-init target"}, {"unit": "cryptsetup.target", "load": "loaded", "active": "active", "sub": "active", "description": "Local Encrypted Volumes"}, {"unit": "emergency.target", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Emergency Mode"}, {"unit": "getty-pre.target", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Login Prompts (Pre)"}, {"unit": "getty.target", "load": "loaded", "active": "active", "sub": "active", "description": "Login Prompts"}, {"unit": "graphical.target", "load": "loaded", "active": "active", "sub": "active", "description": "Graphical Interface"}, {"unit": "local-fs-pre.target", "load": "loaded", "active": "active", "sub": "active", "description": "Local File Systems (Pre)"}, {"unit": "local-fs.target", "load": "loaded", "active": "active", "sub": "active", "description": "Local File Systems"}, {"unit": "multi-user.target", "load": "loaded", "active": "active", "sub": "active", "description": "Multi-User System"}, {"unit": "network-online.target", "load": "loaded", "active": "active", "sub": "active", "description": "Network is Online"}, {"unit": "network-pre.target", "load": "loaded", "active": "active", "sub": "active", "description": "Network (Pre)"}, {"unit": "network.target", "load": "loaded", "active": "active", "sub": "active", "description": "Network"}, {"unit": "nss-lookup.target", "load": "loaded", "active": "active", "sub": "active", "description": "Host and Network Name Lookups"}, {"unit": "nss-user-lookup.target", "load": "loaded", "active": "active", "sub": "active", "description": "User and Group Name Lookups"}, {"unit": "paths.target", "load": "loaded", "active": "active", "sub": "active", "description": "Paths"}, {"unit": "remote-fs-pre.target", "load": "loaded", "active": "active", "sub": "active", "description": "Remote File Systems (Pre)"}, {"unit": "remote-fs.target", "load": "loaded", "active": "active", "sub": "active", "description": "Remote File Systems"}, {"unit": "rescue.target", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Rescue Mode"}, {"unit": "shutdown.target", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Shutdown"}, {"unit": "slices.target", "load": "loaded", "active": "active", "sub": "active", "description": "Slices"}, {"unit": "sockets.target", "load": "loaded", "active": "active", "sub": "active", "description": "Sockets"}, {"unit": "swap.target", "load": "loaded", "active": "active", "sub": "active", "description": "Swap"}, {"unit": "sysinit.target", "load": "loaded", "active": "active", "sub": "active", "description": "System Initialization"}, {"unit": "time-sync.target", "load": "loaded", "active": "active", "sub": "active", "description": "System Time Synchronized"}, {"unit": "timers.target", "load": "loaded", "active": "active", "sub": "active", "description": "Timers"}, {"unit": "umount.target", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Unmount All Filesystems"}, {"unit": "apt-daily-upgrade.timer", "load": "loaded", "active": "active", "sub": "waiting", "description": "Daily apt upgrade and clean activities"}, {"unit": "apt-daily.timer", "load": "loaded", "active": "active", "sub": "waiting", "description": "Daily apt download activities"}, {"unit": "fstrim.timer", "load": "loaded", "active": "active", "sub": "waiting", "description": "Discard unused blocks once a week"}, {"unit": "motd-news.timer", "load": "loaded", "active": "active", "sub": "waiting", "description": "Message of the Day"}, {"unit": "snapd.snap-repair.timer", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Timer to automatically fetch and run repair assertions"}, {"unit": "systemd-tmpfiles-clean.timer", "load": "loaded", "active": "active", "sub": "waiting", "description": "Daily Cleanup of Temporary Directories"}, {"unit": "ureadahead-stop.timer", "load": "loaded", "active": "inactive", "sub": "dead", "description": "Stop ureadahead data collection 45s after completed startup"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/systemctl.out000066400000000000000000002244331415226333200217750ustar00rootroot00000000000000 UNIT LOAD ACTIVE SUB DESCRIPTION proc-sys-fs-binfmt_misc.automount loaded active waiting Arbitrary Executable File Formats File System Automount Point dev-cdrom.device loaded active plugged VMware_Virtual_SATA_CDRW_Drive CDROM dev-cdrw.device loaded active plugged VMware_Virtual_SATA_CDRW_Drive Ubuntu-Server_18.04.3_LTS_amd64 dev-disk-by\x2did-ata\x2dVMware_Virtual_SATA_CDRW_Drive_00000000000000000001.device loaded active plugged VMware_Virtual_SATA_CDRW_Drive CDROM dev-disk-by\x2did-ata\x2dVMware_Virtual_SATA_CDRW_Drive_01000000000000000001.device loaded active plugged VMware_Virtual_SATA_CDRW_Drive Ubuntu-Server_18.04.3_LTS_amd64 dev-disk-by\x2dlabel-CDROM.device loaded active plugged VMware_Virtual_SATA_CDRW_Drive CDROM dev-disk-by\x2dlabel-Ubuntu\x2dServer\x5cx2018.04.3\x5cx20LTS\x5cx20amd64.device loaded active plugged VMware_Virtual_SATA_CDRW_Drive Ubuntu-Server_18.04.3_LTS_amd64 dev-disk-by\x2dpartuuid-744589e8\x2d5711\x2d4750\x2d9984\x2dc34d66f93879.device loaded active plugged VMware_Virtual_S 2 dev-disk-by\x2dpartuuid-e0614271\x2dc211\x2d4324\x2da5bc\x2d8e6bcb66da43.device loaded active plugged VMware_Virtual_S 1 dev-disk-by\x2dpath-pci\x2d0000:00:10.0\x2dscsi\x2d0:0:0:0.device loaded active plugged VMware_Virtual_S dev-disk-by\x2dpath-pci\x2d0000:00:10.0\x2dscsi\x2d0:0:0:0\x2dpart1.device loaded active plugged VMware_Virtual_S 1 dev-disk-by\x2dpath-pci\x2d0000:00:10.0\x2dscsi\x2d0:0:0:0\x2dpart2.device loaded active plugged VMware_Virtual_S 2 dev-disk-by\x2dpath-pci\x2d0000:02:04.0\x2data\x2d1.device loaded active plugged VMware_Virtual_SATA_CDRW_Drive CDROM dev-disk-by\x2dpath-pci\x2d0000:02:04.0\x2data\x2d2.device loaded active plugged VMware_Virtual_SATA_CDRW_Drive Ubuntu-Server_18.04.3_LTS_amd64 dev-disk-by\x2duuid-011527a0\x2dc72a\x2d4c00\x2da50e\x2dee90da26b6e2.device loaded active plugged VMware_Virtual_S 2 dev-disk-by\x2duuid-2019\x2d08\x2d05\x2d20\x2d00\x2d00\x2d00.device loaded active plugged VMware_Virtual_SATA_CDRW_Drive Ubuntu-Server_18.04.3_LTS_amd64 dev-disk-by\x2duuid-2019\x2d08\x2d12\x2d10\x2d17\x2d03\x2d63.device loaded active plugged VMware_Virtual_SATA_CDRW_Drive CDROM dev-dvd.device loaded active plugged VMware_Virtual_SATA_CDRW_Drive CDROM dev-fd0.device loaded active plugged /dev/fd0 dev-loop0.device loaded active plugged /dev/loop0 dev-loop1.device loaded active plugged /dev/loop1 dev-loop10.device loaded active plugged /dev/loop10 dev-loop11.device loaded active plugged /dev/loop11 dev-loop2.device loaded active plugged /dev/loop2 dev-loop3.device loaded active plugged /dev/loop3 dev-loop4.device loaded active plugged /dev/loop4 dev-loop5.device loaded active plugged /dev/loop5 dev-loop7.device loaded active plugged /dev/loop7 dev-loop8.device loaded active plugged /dev/loop8 dev-loop9.device loaded active plugged /dev/loop9 dev-rfkill.device loaded active plugged /dev/rfkill dev-sda.device loaded active plugged VMware_Virtual_S dev-sda1.device loaded active plugged VMware_Virtual_S 1 dev-sda2.device loaded active plugged VMware_Virtual_S 2 dev-sr0.device loaded active plugged VMware_Virtual_SATA_CDRW_Drive CDROM dev-sr1.device loaded active plugged VMware_Virtual_SATA_CDRW_Drive Ubuntu-Server_18.04.3_LTS_amd64 dev-ttyprintk.device loaded active plugged /dev/ttyprintk dev-ttyS0.device loaded active plugged /dev/ttyS0 dev-ttyS1.device loaded active plugged /dev/ttyS1 dev-ttyS10.device loaded active plugged /dev/ttyS10 dev-ttyS11.device loaded active plugged /dev/ttyS11 dev-ttyS12.device loaded active plugged /dev/ttyS12 dev-ttyS13.device loaded active plugged /dev/ttyS13 dev-ttyS14.device loaded active plugged /dev/ttyS14 dev-ttyS15.device loaded active plugged /dev/ttyS15 dev-ttyS16.device loaded active plugged /dev/ttyS16 dev-ttyS17.device loaded active plugged /dev/ttyS17 dev-ttyS18.device loaded active plugged /dev/ttyS18 dev-ttyS19.device loaded active plugged /dev/ttyS19 dev-ttyS2.device loaded active plugged /dev/ttyS2 dev-ttyS20.device loaded active plugged /dev/ttyS20 dev-ttyS21.device loaded active plugged /dev/ttyS21 dev-ttyS22.device loaded active plugged /dev/ttyS22 dev-ttyS23.device loaded active plugged /dev/ttyS23 dev-ttyS24.device loaded active plugged /dev/ttyS24 dev-ttyS25.device loaded active plugged /dev/ttyS25 dev-ttyS26.device loaded active plugged /dev/ttyS26 dev-ttyS27.device loaded active plugged /dev/ttyS27 dev-ttyS28.device loaded active plugged /dev/ttyS28 dev-ttyS29.device loaded active plugged /dev/ttyS29 dev-ttyS3.device loaded active plugged /dev/ttyS3 dev-ttyS30.device loaded active plugged /dev/ttyS30 dev-ttyS31.device loaded active plugged /dev/ttyS31 dev-ttyS4.device loaded active plugged /dev/ttyS4 dev-ttyS5.device loaded active plugged /dev/ttyS5 dev-ttyS6.device loaded active plugged /dev/ttyS6 dev-ttyS7.device loaded active plugged /dev/ttyS7 dev-ttyS8.device loaded active plugged /dev/ttyS8 dev-ttyS9.device loaded active plugged /dev/ttyS9 sys-devices-pci0000:00-0000:00:10.0-host32-target32:0:0-32:0:0:0-block-sda-sda1.device loaded active plugged VMware_Virtual_S 1 sys-devices-pci0000:00-0000:00:10.0-host32-target32:0:0-32:0:0:0-block-sda-sda2.device loaded active plugged VMware_Virtual_S 2 sys-devices-pci0000:00-0000:00:10.0-host32-target32:0:0-32:0:0:0-block-sda.device loaded active plugged VMware_Virtual_S sys-devices-pci0000:00-0000:00:11.0-0000:02:00.0-usb2-2\x2d2-2\x2d2.1-2\x2d2.1:1.0-bluetooth-hci0.device loaded active plugged /sys/devices/pci0000:00/0000:00:11.0/0000:02:00.0/usb2/2-2/2-2.1/2-2.1:1.0/bluetooth/hci0 sys-devices-pci0000:00-0000:00:11.0-0000:02:01.0-net-ens33.device loaded active plugged 82545EM Gigabit Ethernet Controller (Copper) (PRO/1000 MT Single Port Adapter) sys-devices-pci0000:00-0000:00:11.0-0000:02:04.0-ata3-host2-target2:0:0-2:0:0:0-block-sr0.device loaded active plugged VMware_Virtual_SATA_CDRW_Drive CDROM sys-devices-pci0000:00-0000:00:11.0-0000:02:04.0-ata4-host3-target3:0:0-3:0:0:0-block-sr1.device loaded active plugged VMware_Virtual_SATA_CDRW_Drive Ubuntu-Server_18.04.3_LTS_amd64 sys-devices-platform-floppy.0-block-fd0.device loaded active plugged /sys/devices/platform/floppy.0/block/fd0 sys-devices-platform-serial8250-tty-ttyS1.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS1 sys-devices-platform-serial8250-tty-ttyS10.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS10 sys-devices-platform-serial8250-tty-ttyS11.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS11 sys-devices-platform-serial8250-tty-ttyS12.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS12 sys-devices-platform-serial8250-tty-ttyS13.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS13 sys-devices-platform-serial8250-tty-ttyS14.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS14 sys-devices-platform-serial8250-tty-ttyS15.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS15 sys-devices-platform-serial8250-tty-ttyS16.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS16 sys-devices-platform-serial8250-tty-ttyS17.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS17 sys-devices-platform-serial8250-tty-ttyS18.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS18 sys-devices-platform-serial8250-tty-ttyS19.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS19 sys-devices-platform-serial8250-tty-ttyS2.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS2 sys-devices-platform-serial8250-tty-ttyS20.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS20 sys-devices-platform-serial8250-tty-ttyS21.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS21 sys-devices-platform-serial8250-tty-ttyS22.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS22 sys-devices-platform-serial8250-tty-ttyS23.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS23 sys-devices-platform-serial8250-tty-ttyS24.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS24 sys-devices-platform-serial8250-tty-ttyS25.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS25 sys-devices-platform-serial8250-tty-ttyS26.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS26 sys-devices-platform-serial8250-tty-ttyS27.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS27 sys-devices-platform-serial8250-tty-ttyS28.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS28 sys-devices-platform-serial8250-tty-ttyS29.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS29 sys-devices-platform-serial8250-tty-ttyS3.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS3 sys-devices-platform-serial8250-tty-ttyS30.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS30 sys-devices-platform-serial8250-tty-ttyS31.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS31 sys-devices-platform-serial8250-tty-ttyS4.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS4 sys-devices-platform-serial8250-tty-ttyS5.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS5 sys-devices-platform-serial8250-tty-ttyS6.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS6 sys-devices-platform-serial8250-tty-ttyS7.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS7 sys-devices-platform-serial8250-tty-ttyS8.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS8 sys-devices-platform-serial8250-tty-ttyS9.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS9 sys-devices-pnp0-00:05-tty-ttyS0.device loaded active plugged /sys/devices/pnp0/00:05/tty/ttyS0 sys-devices-virtual-block-loop0.device loaded active plugged /sys/devices/virtual/block/loop0 sys-devices-virtual-block-loop1.device loaded active plugged /sys/devices/virtual/block/loop1 sys-devices-virtual-block-loop10.device loaded active plugged /sys/devices/virtual/block/loop10 sys-devices-virtual-block-loop11.device loaded active plugged /sys/devices/virtual/block/loop11 sys-devices-virtual-block-loop2.device loaded active plugged /sys/devices/virtual/block/loop2 sys-devices-virtual-block-loop3.device loaded active plugged /sys/devices/virtual/block/loop3 sys-devices-virtual-block-loop4.device loaded active plugged /sys/devices/virtual/block/loop4 sys-devices-virtual-block-loop5.device loaded active plugged /sys/devices/virtual/block/loop5 sys-devices-virtual-block-loop7.device loaded active plugged /sys/devices/virtual/block/loop7 sys-devices-virtual-block-loop8.device loaded active plugged /sys/devices/virtual/block/loop8 sys-devices-virtual-block-loop9.device loaded active plugged /sys/devices/virtual/block/loop9 sys-devices-virtual-misc-rfkill.device loaded active plugged /sys/devices/virtual/misc/rfkill sys-devices-virtual-tty-ttyprintk.device loaded active plugged /sys/devices/virtual/tty/ttyprintk sys-module-configfs.device loaded active plugged /sys/module/configfs sys-module-fuse.device loaded active plugged /sys/module/fuse sys-subsystem-bluetooth-devices-hci0.device loaded active plugged /sys/subsystem/bluetooth/devices/hci0 sys-subsystem-net-devices-ens33.device loaded active plugged 82545EM Gigabit Ethernet Controller (Copper) (PRO/1000 MT Single Port Adapter) -.mount loaded active mounted Root Mount dev-hugepages.mount loaded active mounted Huge Pages File System dev-mqueue.mount loaded active mounted POSIX Message Queue File System proc-sys-fs-binfmt_misc.mount loaded inactive dead Arbitrary Executable File Formats File System run-user-1000.mount loaded active mounted /run/user/1000 snap-core-7917.mount loaded active mounted Mount unit for core, revision 7917 snap-core-8039.mount loaded active mounted Mount unit for core, revision 8039 snap-core18-1223.mount loaded active mounted Mount unit for core18, revision 1223 snap-core18-1265.mount loaded active mounted Mount unit for core18, revision 1265 snap-doctl-215.mount loaded active mounted Mount unit for doctl, revision 215 snap-doctl-222.mount loaded active mounted Mount unit for doctl, revision 222 snap-google\x2dcloud\x2dsdk-106.mount loaded active mounted Mount unit for google-cloud-sdk, revision 106 snap-google\x2dcloud\x2dsdk-107.mount loaded active mounted Mount unit for google-cloud-sdk, revision 107 snap-slcli-383.mount loaded active mounted Mount unit for slcli, revision 383 snap-stress\x2dng-1046.mount loaded active mounted Mount unit for stress-ng, revision 1046 snap-stress\x2dng-1076.mount loaded active mounted Mount unit for stress-ng, revision 1076 sys-fs-fuse-connections.mount loaded active mounted FUSE Control File System sys-kernel-config.mount loaded active mounted Kernel Configuration File System sys-kernel-debug.mount loaded active mounted Kernel Debug File System ● tmp.mount not-found inactive dead tmp.mount var-lib-lxcfs.mount loaded active mounted /var/lib/lxcfs acpid.path loaded active waiting ACPI Events Check apport-autoreport.path loaded inactive dead Process error reports when automatic reporting is enabled (file watch) systemd-ask-password-console.path loaded active waiting Dispatch Password Requests to Console Directory Watch systemd-ask-password-plymouth.path loaded inactive dead Forward Password Requests to Plymouth Directory Watch systemd-ask-password-wall.path loaded active waiting Forward Password Requests to Wall Directory Watch init.scope loaded active running System and Service Manager session-103.scope loaded active running Session 103 of user kbrazil accounts-daemon.service loaded active running Accounts Service acpid.service loaded inactive dead ACPI event daemon apparmor.service loaded active exited AppArmor initialization apport-autoreport.service loaded inactive dead Process error reports when automatic reporting is enabled apport.service loaded active exited LSB: automatic crash report generation apt-daily-upgrade.service loaded inactive dead Daily apt upgrade and clean activities apt-daily.service loaded inactive dead Daily apt download activities atd.service loaded active running Deferred execution scheduler ● auditd.service not-found inactive dead auditd.service blk-availability.service loaded active exited Availability of block devices cloud-config.service loaded active exited Apply the settings specified in cloud-config cloud-final.service loaded active exited Execute cloud user/final scripts cloud-init-local.service loaded active exited Initial cloud-init job (pre-networking) cloud-init.service loaded active exited Initial cloud-init job (metadata service crawler) ● connman.service not-found inactive dead connman.service ● console-screen.service not-found inactive dead console-screen.service console-setup.service loaded active exited Set console font and keymap containerd.service loaded active running containerd container runtime cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus ● display-manager.service not-found inactive dead display-manager.service dm-event.service loaded inactive dead Device-mapper event daemon docker.service loaded inactive dead Docker Application Container Engine ebtables.service loaded active exited ebtables ruleset management emergency.service loaded inactive dead Emergency Shell ● fcoe.service not-found inactive dead fcoe.service ● firewalld.service not-found inactive dead firewalld.service fstrim.service loaded inactive dead Discard unused blocks getty-static.service loaded inactive dead getty on tty2-tty6 if dbus and logind are not available getty@tty1.service loaded active running Getty on tty1 grub-common.service loaded active exited LSB: Record successful boot for GRUB irqbalance.service loaded inactive dead irqbalance daemon ● iscsi-shutdown.service not-found inactive dead iscsi-shutdown.service iscsid.service loaded inactive dead iSCSI initiator daemon (iscsid) ● kbd.service not-found inactive dead kbd.service keyboard-setup.service loaded active exited Set the console keyboard layout kmod-static-nodes.service loaded active exited Create list of required static device nodes for the current kernel ● lvm2-activation.service not-found inactive dead lvm2-activation.service lvm2-lvmetad.service loaded active running LVM2 metadata daemon lvm2-lvmpolld.service loaded inactive dead LVM2 poll daemon lvm2-monitor.service loaded active exited Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling ● lxc.service not-found inactive dead lxc.service lxcfs.service loaded active running FUSE filesystem for LXC lxd-containers.service loaded active exited LXD - container startup/shutdown lxd.service loaded inactive dead LXD - main daemon motd-news.service loaded inactive dead Message of the Day networkd-dispatcher.service loaded active running Dispatcher daemon for systemd-networkd ● networking.service not-found inactive dead networking.service ● NetworkManager.service not-found inactive dead NetworkManager.service ondemand.service loaded inactive dead Set the CPU Frequency Scaling governor open-iscsi.service loaded inactive dead Login to default iSCSI targets open-vm-tools.service loaded active running Service for virtual machines hosted on VMware ● openvswitch-switch.service not-found inactive dead openvswitch-switch.service plymouth-quit-wait.service loaded inactive dead Hold until boot process finishes up plymouth-quit.service loaded inactive dead Terminate Plymouth Boot Screen plymouth-read-write.service loaded inactive dead Tell Plymouth To Write Out Runtime Data plymouth-start.service loaded inactive dead Show Plymouth Boot Screen polkit.service loaded active running Authorization Manager pollinate.service loaded inactive dead Pollinate to seed the pseudo random number generator rc-local.service loaded inactive dead /etc/rc.local Compatibility rescue.service loaded inactive dead Rescue Shell rsync.service loaded inactive dead fast remote file copy program daemon rsyslog.service loaded active running System Logging Service setvtrgb.service loaded active exited Set console scheme snapd.autoimport.service loaded inactive dead Auto import assertions from block devices snapd.core-fixup.service loaded inactive dead Automatically repair incorrect owner/permissions on core devices snapd.failure.service loaded inactive dead Failure handling of the snapd snap snapd.seeded.service loaded active exited Wait until snapd is fully seeded snapd.service loaded active running Snappy daemon snapd.snap-repair.service loaded inactive dead Automatically fetch and run repair assertions ssh.service loaded active running OpenBSD Secure Shell server ● sshd-keygen.service not-found inactive dead sshd-keygen.service sysstat.service loaded active exited Resets System Activity Data Collector systemd-ask-password-console.service loaded inactive dead Dispatch Password Requests to Console systemd-ask-password-plymouth.service loaded inactive dead Forward Password Requests to Plymouth systemd-ask-password-wall.service loaded inactive dead Forward Password Requests to Wall systemd-binfmt.service loaded inactive dead Set Up Additional Binary Formats systemd-fsck-root.service loaded inactive dead File System Check on Root Device systemd-fsckd.service loaded inactive dead File System Check Daemon to report status systemd-hwdb-update.service loaded inactive dead Rebuild Hardware Database systemd-initctl.service loaded inactive dead /dev/initctl Compatibility Daemon systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-machine-id-commit.service loaded inactive dead Commit a transient machine-id on disk systemd-modules-load.service loaded active exited Load Kernel Modules systemd-networkd-wait-online.service loaded active exited Wait for Network to be Configured systemd-networkd.service loaded active running Network Service systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-resolved.service loaded active running Network Name Resolution systemd-rfkill.service loaded inactive dead Load/Save RF Kill Switch Status systemd-sysctl.service loaded active exited Apply Kernel Variables ● systemd-sysusers.service not-found inactive dead systemd-sysusers.service systemd-timesyncd.service loaded active running Network Time Synchronization systemd-tmpfiles-clean.service loaded inactive dead Cleanup of Temporary Directories systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager ● systemd-update-done.service not-found inactive dead systemd-update-done.service systemd-update-utmp-runlevel.service loaded inactive dead Update UTMP about System Runlevel Changes systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions ● systemd-vconsole-setup.service not-found inactive dead systemd-vconsole-setup.service thermald.service loaded inactive dead Thermal Daemon Service ttyS0.service loaded active running Serial Console Service ubuntu-fan.service loaded active exited Ubuntu FAN network setup ufw.service loaded active exited Uncomplicated firewall unattended-upgrades.service loaded active running Unattended Upgrades Shutdown ureadahead-stop.service loaded inactive dead Stop ureadahead data collection ureadahead.service loaded inactive dead Read required files in advance user@1000.service loaded active running User Manager for UID 1000 uuidd.service loaded inactive dead Daemon for generating UUIDs vgauth.service loaded active running Authentication service for virtual machines hosted on VMware ● whoopsie.service not-found inactive dead whoopsie.service -.slice loaded active active Root Slice system-getty.slice loaded active active system-getty.slice system.slice loaded active active System Slice user-1000.slice loaded active active User Slice of kbrazil user.slice loaded active active User and Session Slice acpid.socket loaded active listening ACPID Listen Socket apport-forward.socket loaded inactive dead Unix socket for apport crash forwarding dbus.socket loaded active running D-Bus System Message Bus Socket dm-event.socket loaded active listening Device-mapper event daemon FIFOs docker.socket loaded active listening Docker Socket for the API iscsid.socket loaded active listening Open-iSCSI iscsid Socket lvm2-lvmetad.socket loaded active running LVM2 metadata daemon socket lvm2-lvmpolld.socket loaded active listening LVM2 poll daemon socket lxd.socket loaded active listening LXD - unix socket snapd.socket loaded active running Socket activation for snappy daemon syslog.socket loaded active running Syslog Socket systemd-fsckd.socket loaded inactive dead fsck to fsckd communication Socket systemd-initctl.socket loaded active listening /dev/initctl Compatibility Named Pipe systemd-journald-audit.socket loaded active running Journal Audit Socket systemd-journald-dev-log.socket loaded active running Journal Socket (/dev/log) systemd-journald.socket loaded active running Journal Socket systemd-networkd.socket loaded active running Network Service Netlink Socket systemd-rfkill.socket loaded active listening Load/Save RF Kill Switch Status /dev/rfkill Watch systemd-udevd-control.socket loaded active running udev Control Socket systemd-udevd-kernel.socket loaded active running udev Kernel Socket uuidd.socket loaded active listening UUID daemon activation socket swap.img.swap loaded active active /swap.img ● all.target not-found inactive dead all.target basic.target loaded active active Basic System bluetooth.target loaded active active Bluetooth cloud-config.target loaded active active Cloud-config availability cloud-init.target loaded active active Cloud-init target cryptsetup.target loaded active active Local Encrypted Volumes emergency.target loaded inactive dead Emergency Mode getty-pre.target loaded inactive dead Login Prompts (Pre) getty.target loaded active active Login Prompts graphical.target loaded active active Graphical Interface local-fs-pre.target loaded active active Local File Systems (Pre) local-fs.target loaded active active Local File Systems multi-user.target loaded active active Multi-User System network-online.target loaded active active Network is Online network-pre.target loaded active active Network (Pre) network.target loaded active active Network nss-lookup.target loaded active active Host and Network Name Lookups nss-user-lookup.target loaded active active User and Group Name Lookups paths.target loaded active active Paths remote-fs-pre.target loaded active active Remote File Systems (Pre) remote-fs.target loaded active active Remote File Systems rescue.target loaded inactive dead Rescue Mode shutdown.target loaded inactive dead Shutdown slices.target loaded active active Slices sockets.target loaded active active Sockets swap.target loaded active active Swap sysinit.target loaded active active System Initialization time-sync.target loaded active active System Time Synchronized timers.target loaded active active Timers umount.target loaded inactive dead Unmount All Filesystems apt-daily-upgrade.timer loaded active waiting Daily apt upgrade and clean activities apt-daily.timer loaded active waiting Daily apt download activities fstrim.timer loaded active waiting Discard unused blocks once a week motd-news.timer loaded active waiting Message of the Day snapd.snap-repair.timer loaded inactive dead Timer to automatically fetch and run repair assertions systemd-tmpfiles-clean.timer loaded active waiting Daily Cleanup of Temporary Directories ureadahead-stop.timer loaded inactive dead Stop ureadahead data collection 45s after completed startup LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 334 loaded units listed. To show all installed unit files use 'systemctl list-unit-files'. jc-1.17.3/tests/fixtures/ubuntu-18.04/time-p.json000066400000000000000000000000641415226333200212730ustar00rootroot00000000000000{"real_time":0.0,"user_time":0.0,"system_time":0.0} jc-1.17.3/tests/fixtures/ubuntu-18.04/time-p.out000066400000000000000000000000351415226333200211270ustar00rootroot00000000000000real 0.00 user 0.00 sys 0.00 jc-1.17.3/tests/fixtures/ubuntu-18.04/time-verbose.json000066400000000000000000000012461415226333200225040ustar00rootroot00000000000000{"command_being_timed":"echo","user_time":0.0,"system_time":0.0,"cpu_percent":0,"elapsed_time":"0:00.00","average_shared_text_size":0,"average_unshared_data_size":0,"average_stack_size":0,"average_total_size":0,"maximum_resident_set_size":2016,"average_resident_set_size":0,"major_pagefaults":0,"minor_pagefaults":71,"voluntary_context_switches":1,"involuntary_context_switches":1,"swaps":0,"block_input_operations":0,"block_output_operations":0,"messages_sent":0,"messages_received":0,"signals_delivered":0,"page_size":4096,"exit_status":0,"elapsed_time_hours":0,"elapsed_time_minutes":0,"elapsed_time_seconds":0,"elapsed_time_centiseconds":0,"elapsed_time_total_seconds":0.0} jc-1.17.3/tests/fixtures/ubuntu-18.04/time-verbose.out000066400000000000000000000014201415226333200223340ustar00rootroot00000000000000 Command being timed: "echo" User time (seconds): 0.00 System time (seconds): 0.00 Percent of CPU this job got: 0% Elapsed (wall clock) time (h:mm:ss or m:ss): 0:00.00 Average shared text size (kbytes): 0 Average unshared data size (kbytes): 0 Average stack size (kbytes): 0 Average total size (kbytes): 0 Maximum resident set size (kbytes): 2016 Average resident set size (kbytes): 0 Major (requiring I/O) page faults: 0 Minor (reclaiming a frame) page faults: 71 Voluntary context switches: 1 Involuntary context switches: 1 Swaps: 0 File system inputs: 0 File system outputs: 0 Socket messages sent: 0 Socket messages received: 0 Signals delivered: 0 Page size (bytes): 4096 Exit status: 0 jc-1.17.3/tests/fixtures/ubuntu-18.04/time.json000066400000000000000000000006351415226333200210420ustar00rootroot00000000000000{"user_time":0.0,"system_time":0.0,"elapsed_time":"0:00.00","cpu_percent":100,"average_shared_text":"0","average_unshared_data_size":0,"maximum_resident_set_size":2064,"block_input_operations":0,"block_output_operations":0,"major_pagefaults":0,"minor_pagefaults":71,"swaps":0,"elapsed_time_hours":0,"elapsed_time_minutes":0,"elapsed_time_seconds":0,"elapsed_time_centiseconds":0,"elapsed_time_total_seconds":0.0} jc-1.17.3/tests/fixtures/ubuntu-18.04/time.out000066400000000000000000000002041415226333200206700ustar00rootroot000000000000000.00user 0.00system 0:00.00elapsed 100%CPU (0avgtext+0avgdata 2064maxresident)k 0inputs+0outputs (0major+71minor)pagefaults 0swaps jc-1.17.3/tests/fixtures/ubuntu-18.04/time2.json000066400000000000000000000006361415226333200211250ustar00rootroot00000000000000{"user_time":0.0,"system_time":0.0,"elapsed_time":"0:00.00","cpu_percent":null,"average_shared_text":"0","average_unshared_data_size":0,"maximum_resident_set_size":2068,"block_input_operations":0,"block_output_operations":0,"major_pagefaults":0,"minor_pagefaults":70,"swaps":0,"elapsed_time_hours":0,"elapsed_time_minutes":0,"elapsed_time_seconds":0,"elapsed_time_centiseconds":0,"elapsed_time_total_seconds":0.0} jc-1.17.3/tests/fixtures/ubuntu-18.04/time2.out000066400000000000000000000002011415226333200207470ustar00rootroot000000000000000.00user 0.00system 0:00.00elapsed ?%CPU (0avgtext+0avgdata 2068maxresident)k 0inputs+0outputs (0major+70minor)pagefaults 0swaps jc-1.17.3/tests/fixtures/ubuntu-18.04/timedatectl.json000066400000000000000000000004341415226333200224000ustar00rootroot00000000000000{"local_time":"Wed 2020-03-11 00:51:11 UTC","universal_time":"Wed 2020-03-11 00:51:11 UTC","rtc_time":"Wed 2020-03-11 00:51:11","time_zone":"Etc/UTC (UTC, +0000)","system_clock_synchronized":true,"systemd-timesyncd.service_active":true,"rtc_in_local_tz":false,"epoch_utc":1583887871} jc-1.17.3/tests/fixtures/ubuntu-18.04/timedatectl.out000066400000000000000000000005361415226333200222410ustar00rootroot00000000000000 Local time: Wed 2020-03-11 00:51:11 UTC Universal time: Wed 2020-03-11 00:51:11 UTC RTC time: Wed 2020-03-11 00:51:11 Time zone: Etc/UTC (UTC, +0000) System clock synchronized: yes systemd-timesyncd.service active: yes RTC in local TZ: no jc-1.17.3/tests/fixtures/ubuntu-18.04/ufw-appinfo-all.json000066400000000000000000000031541415226333200231040ustar00rootroot00000000000000[{"profile":"MSN","title":"MSN Chat","description":"MSN chat protocol (with file transfer and voice)","tcp_list":[1863,6901],"udp_list":[1863,6901],"tcp_ranges":[{"start":6891,"end":6900}],"normalized_tcp_list":[1863,6901],"normalized_tcp_ranges":[{"start":6891,"end":6900}],"normalized_udp_list":[1863,6901]},{"profile":"OpenSSH","title":"Secure shell server, an rshd replacement","description":"OpenSSH is a free implementation of the Secure Shell protocol.","tcp_list":[22],"normalized_tcp_list":[22]},{"profile":"TEST","title":"My test app","description":"a longer description of the test app here.","tcp_list":[1,2,3,4,5,6,7,8,9,10,30,53],"tcp_ranges":[{"start":80,"end":90},{"start":8080,"end":8090}],"udp_ranges":[{"start":50,"end":51}],"udp_list":[53],"normalized_tcp_list":[1,2,3,4,5,6,7,8,9,10,30,53],"normalized_tcp_ranges":[{"start":80,"end":90},{"start":8080,"end":8090}],"normalized_udp_list":[53],"normalized_udp_ranges":[{"start":50,"end":51}]},{"profile":"TEST2","title":"My test app2","description":"a longer description of the test app here.","tcp_ranges":[{"start":0,"end":65535}],"udp_ranges":[{"start":50,"end":51}],"tcp_list":[53],"udp_list":[53],"normalized_tcp_ranges":[{"start":0,"end":65535}],"normalized_udp_list":[53],"normalized_udp_ranges":[{"start":50,"end":51}]},{"profile":"TEST3","title":"My test app3","description":"test overlapping ports","tcp_list":[80,83,80,53],"tcp_ranges":[{"start":70,"end":90}],"udp_ranges":[{"start":50,"end":51}],"udp_list":[53],"normalized_tcp_list":[53],"normalized_tcp_ranges":[{"start":70,"end":90}],"normalized_udp_list":[53],"normalized_udp_ranges":[{"start":50,"end":51}]}] jc-1.17.3/tests/fixtures/ubuntu-18.04/ufw-appinfo-all.out000066400000000000000000000013061415226333200227370ustar00rootroot00000000000000Profile: MSN Title: MSN Chat Description: MSN chat protocol (with file transfer and voice) Ports: 1863 6891:6900/tcp 6901 -- Profile: OpenSSH Title: Secure shell server, an rshd replacement Description: OpenSSH is a free implementation of the Secure Shell protocol. Port: 22/tcp -- Profile: TEST Title: My test app Description: a longer description of the test app here. Ports: 1,2,3,4,5,6,7,8,9,10,30,80:90,8080:8090/tcp 50:51/udp 53 -- Profile: TEST2 Title: My test app2 Description: a longer description of the test app here. Ports: any/tcp 50:51/udp 53 -- Profile: TEST3 Title: My test app3 Description: test overlapping ports Ports: 80,83,80,70:90/tcp 50:51/udp 53 jc-1.17.3/tests/fixtures/ubuntu-18.04/ufw-numbered.json000066400000000000000000000121351415226333200225020ustar00rootroot00000000000000{"status":"active","rules":[{"action":"ALLOW","action_direction":"IN","index":1,"network_protocol":"ipv4","to_interface":"any","to_transport":"any","to_service":null,"to_ports":[22],"to_ip":"0.0.0.0","to_ip_prefix":0,"comment":null,"from_ip":"0.0.0.0","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":2,"network_protocol":"ipv4","to_interface":"any","to_transport":"tcp","to_service":null,"to_ports":[80,443],"to_ip":"0.0.0.0","to_ip_prefix":0,"comment":null,"from_ip":"0.0.0.0","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":3,"network_protocol":"ipv4","to_interface":"eth0","to_transport":"any","to_service":null,"to_ports":[80],"to_ip":"0.0.0.0","to_ip_prefix":0,"comment":"test","from_ip":"0.0.0.0","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":4,"network_protocol":"ipv4","to_interface":"any","to_transport":"ipv6","to_ip":"10.0.0.1","to_ip_prefix":32,"comment":null,"from_interface":"any","from_transport":"ipv6","from_ip":"10.4.0.0","from_ip_prefix":16},{"action":"ALLOW","action_direction":"IN","index":5,"network_protocol":"ipv4","to_interface":"any","to_transport":"esp","to_ip":"10.0.0.1","to_ip_prefix":32,"comment":null,"from_ip":"0.0.0.0","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":6,"network_protocol":"ipv4","to_interface":"any","to_transport":"esp","to_ip":"10.0.0.1","to_ip_prefix":32,"comment":null,"from_interface":"any","from_transport":"esp","from_ip":"10.4.0.0","from_ip_prefix":16},{"action":"ALLOW","action_direction":"IN","index":7,"network_protocol":"ipv4","to_interface":"any","to_transport":"ah","to_ip":"10.0.0.1","to_ip_prefix":32,"comment":null,"from_ip":"0.0.0.0","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":8,"network_protocol":"ipv4","to_interface":"any","to_transport":"ah","to_ip":"10.0.0.1","to_ip_prefix":32,"comment":null,"from_interface":"any","from_transport":"ah","from_ip":"10.4.0.0","from_ip_prefix":16},{"action":"ALLOW","action_direction":"IN","index":9,"network_protocol":"ipv4","to_interface":"any","to_transport":"tcp","to_service":null,"to_port_ranges":[{"start":100,"end":200},{"start":300,"end":400}],"to_ip":"0.0.0.0","to_ip_prefix":0,"comment":null,"from_ip":"0.0.0.0","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":10,"network_protocol":"ipv4","to_interface":"any","to_transport":"udp","to_service":null,"to_ports":[1,2],"to_port_ranges":[{"start":100,"end":200},{"start":300,"end":400}],"to_ip":"0.0.0.0","to_ip_prefix":0,"comment":null,"from_ip":"0.0.0.0","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":11,"network_protocol":"ipv6","to_interface":"any","to_transport":"any","to_service":null,"to_ports":[22],"to_ip":"::","to_ip_prefix":0,"comment":null,"from_ip":"::","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":12,"network_protocol":"ipv6","to_interface":"any","to_transport":"tcp","to_service":null,"to_ports":[80,443],"to_ip":"::","to_ip_prefix":0,"comment":null,"from_ip":"::","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":13,"network_protocol":"ipv6","to_interface":"eth0","to_transport":"any","to_service":null,"to_ports":[80],"to_ip":"::","to_ip_prefix":0,"comment":"test","from_ip":"::","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":14,"network_protocol":"ipv6","to_interface":"any","to_transport":"tcp","to_service":null,"to_port_ranges":[{"start":100,"end":200},{"start":300,"end":400}],"to_ip":"::","to_ip_prefix":0,"comment":null,"from_ip":"::","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":15,"network_protocol":"ipv6","to_interface":"any","to_transport":"udp","to_service":null,"to_ports":[1,2],"to_port_ranges":[{"start":100,"end":200},{"start":300,"end":400}],"to_ip":"::","to_ip_prefix":0,"comment":null,"from_ip":"::","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null}]} jc-1.17.3/tests/fixtures/ubuntu-18.04/ufw-numbered.out000066400000000000000000000022531415226333200223400ustar00rootroot00000000000000Status: active To Action From -- ------ ---- [ 1] 22 ALLOW IN Anywhere [ 2] 80,443/tcp ALLOW IN Anywhere [ 3] 80 on eth0 ALLOW IN Anywhere # test [ 4] 10.0.0.1/ipv6 ALLOW IN 10.4.0.0/16/ipv6 [ 5] 10.0.0.1/esp ALLOW IN Anywhere [ 6] 10.0.0.1/esp ALLOW IN 10.4.0.0/16/esp [ 7] 10.0.0.1/ah ALLOW IN Anywhere [ 8] 10.0.0.1/ah ALLOW IN 10.4.0.0/16/ah [ 9] 100:200,300:400/tcp ALLOW IN Anywhere [10] 1,2,100:200,300:400/udp ALLOW IN Anywhere [11] 22 (v6) ALLOW IN Anywhere (v6) [12] 80,443/tcp (v6) ALLOW IN Anywhere (v6) [13] 80 (v6) on eth0 ALLOW IN Anywhere (v6) # test [14] 100:200,300:400/tcp (v6) ALLOW IN Anywhere (v6) [15] 1,2,100:200,300:400/udp (v6) ALLOW IN Anywhere (v6) jc-1.17.3/tests/fixtures/ubuntu-18.04/ufw-verbose.json000066400000000000000000000124001415226333200223410ustar00rootroot00000000000000{"status":"active","logging":"on","logging_level":"low","default":"deny (incoming), allow (outgoing), disabled (routed)","new_profiles":"skip","rules":[{"action":"ALLOW","action_direction":"IN","index":null,"network_protocol":"ipv4","to_interface":"any","to_transport":"any","to_service":null,"to_ports":[22],"to_ip":"0.0.0.0","to_ip_prefix":0,"comment":null,"from_ip":"0.0.0.0","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":null,"network_protocol":"ipv4","to_interface":"any","to_transport":"tcp","to_service":null,"to_ports":[80,443],"to_ip":"0.0.0.0","to_ip_prefix":0,"comment":null,"from_ip":"0.0.0.0","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":null,"network_protocol":"ipv4","to_interface":"eth0","to_transport":"any","to_service":null,"to_ports":[80],"to_ip":"0.0.0.0","to_ip_prefix":0,"comment":"test","from_ip":"0.0.0.0","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":null,"network_protocol":"ipv4","to_interface":"any","to_transport":"ipv6","to_ip":"10.0.0.1","to_ip_prefix":32,"comment":null,"from_interface":"any","from_transport":"ipv6","from_ip":"10.4.0.0","from_ip_prefix":16},{"action":"ALLOW","action_direction":"IN","index":null,"network_protocol":"ipv4","to_interface":"any","to_transport":"esp","to_ip":"10.0.0.1","to_ip_prefix":32,"comment":null,"from_ip":"0.0.0.0","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":null,"network_protocol":"ipv4","to_interface":"any","to_transport":"esp","to_ip":"10.0.0.1","to_ip_prefix":32,"comment":null,"from_interface":"any","from_transport":"esp","from_ip":"10.4.0.0","from_ip_prefix":16},{"action":"ALLOW","action_direction":"IN","index":null,"network_protocol":"ipv4","to_interface":"any","to_transport":"ah","to_ip":"10.0.0.1","to_ip_prefix":32,"comment":null,"from_ip":"0.0.0.0","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":null,"network_protocol":"ipv4","to_interface":"any","to_transport":"ah","to_ip":"10.0.0.1","to_ip_prefix":32,"comment":null,"from_interface":"any","from_transport":"ah","from_ip":"10.4.0.0","from_ip_prefix":16},{"action":"ALLOW","action_direction":"IN","index":null,"network_protocol":"ipv4","to_interface":"any","to_transport":"tcp","to_service":null,"to_port_ranges":[{"start":100,"end":200},{"start":300,"end":400}],"to_ip":"0.0.0.0","to_ip_prefix":0,"comment":null,"from_ip":"0.0.0.0","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":null,"network_protocol":"ipv4","to_interface":"any","to_transport":"udp","to_service":null,"to_ports":[1,2],"to_port_ranges":[{"start":100,"end":200},{"start":300,"end":400}],"to_ip":"0.0.0.0","to_ip_prefix":0,"comment":null,"from_ip":"0.0.0.0","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":null,"network_protocol":"ipv6","to_interface":"any","to_transport":"any","to_service":null,"to_ports":[22],"to_ip":"::","to_ip_prefix":0,"comment":null,"from_ip":"::","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":null,"network_protocol":"ipv6","to_interface":"any","to_transport":"tcp","to_service":null,"to_ports":[80,443],"to_ip":"::","to_ip_prefix":0,"comment":null,"from_ip":"::","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":null,"network_protocol":"ipv6","to_interface":"eth0","to_transport":"any","to_service":null,"to_ports":[80],"to_ip":"::","to_ip_prefix":0,"comment":"test","from_ip":"::","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":null,"network_protocol":"ipv6","to_interface":"any","to_transport":"tcp","to_service":null,"to_port_ranges":[{"start":100,"end":200},{"start":300,"end":400}],"to_ip":"::","to_ip_prefix":0,"comment":null,"from_ip":"::","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null},{"action":"ALLOW","action_direction":"IN","index":null,"network_protocol":"ipv6","to_interface":"any","to_transport":"udp","to_service":null,"to_ports":[1,2],"to_port_ranges":[{"start":100,"end":200},{"start":300,"end":400}],"to_ip":"::","to_ip_prefix":0,"comment":null,"from_ip":"::","from_ip_prefix":0,"from_interface":"any","from_transport":"any","from_port_ranges":[{"start":0,"end":65535}],"from_service":null}]} jc-1.17.3/tests/fixtures/ubuntu-18.04/ufw-verbose.out000066400000000000000000000022711415226333200222040ustar00rootroot00000000000000Status: active Logging: on (low) Default: deny (incoming), allow (outgoing), disabled (routed) New profiles: skip To Action From -- ------ ---- 22 ALLOW IN Anywhere 80,443/tcp ALLOW IN Anywhere 80 on eth0 ALLOW IN Anywhere # test 10.0.0.1/ipv6 ALLOW IN 10.4.0.0/16/ipv6 10.0.0.1/esp ALLOW IN Anywhere 10.0.0.1/esp ALLOW IN 10.4.0.0/16/esp 10.0.0.1/ah ALLOW IN Anywhere 10.0.0.1/ah ALLOW IN 10.4.0.0/16/ah 100:200,300:400/tcp ALLOW IN Anywhere 1,2,100:200,300:400/udp ALLOW IN Anywhere 22 (v6) ALLOW IN Anywhere (v6) 80,443/tcp (v6) ALLOW IN Anywhere (v6) 80 (v6) on eth0 ALLOW IN Anywhere (v6) # test 100:200,300:400/tcp (v6) ALLOW IN Anywhere (v6) 1,2,100:200,300:400/udp (v6) ALLOW IN Anywhere (v6) jc-1.17.3/tests/fixtures/ubuntu-18.04/uname-a.json000066400000000000000000000004141415226333200214220ustar00rootroot00000000000000{"kernel_name": "Linux", "node_name": "kbrazil-ubuntu", "kernel_release": "4.15.0-65-generic", "operating_system": "GNU/Linux", "hardware_platform": "x86_64", "processor": "x86_64", "machine": "x86_64", "kernel_version": "#74-Ubuntu SMP Tue Sep 17 17:06:04 UTC 2019"} jc-1.17.3/tests/fixtures/ubuntu-18.04/uname-a.out000066400000000000000000000001621415226333200212600ustar00rootroot00000000000000Linux kbrazil-ubuntu 4.15.0-65-generic #74-Ubuntu SMP Tue Sep 17 17:06:04 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux jc-1.17.3/tests/fixtures/ubuntu-18.04/upower-d-clocale.json000066400000000000000000000016551415226333200232510ustar00rootroot00000000000000[{"type": "Device", "device_name": "/org/freedesktop/UPower/devices/line_power_ACAD", "native_path": "ACAD", "power_supply": true, "updated": "Thu Mar 11 18:28:08 2021", "has_history": false, "has_statistics": false, "detail": {"type": "line-power", "warning_level": null, "online": true, "icon_name": "ac-adapter-symbolic"}, "updated_seconds_ago": 538247, "updated_epoch": 1615516088, "updated_epoch_utc": null}, {"type": "Device", "device_name": "/org/freedesktop/UPower/devices/DisplayDevice", "power_supply": false, "updated": "Thu Mar 11 18:28:08 2021", "has_history": false, "has_statistics": false, "detail": {"type": "unknown", "warning_level": null, "icon_name": "battery-missing-symbolic"}, "updated_seconds_ago": 538247, "updated_epoch": 1615516088, "updated_epoch_utc": null}, {"type": "Daemon", "daemon_version": "0.99.7", "on_battery": false, "lid_is_closed": false, "lid_is_present": false, "critical_action": "HybridSleep"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/upower-d-clocale.out000066400000000000000000000014211415226333200230760ustar00rootroot00000000000000Device: /org/freedesktop/UPower/devices/line_power_ACAD native-path: ACAD power supply: yes updated: Thu Mar 11 18:28:08 2021 (538247 seconds ago) has history: no has statistics: no line-power warning-level: none online: yes icon-name: 'ac-adapter-symbolic' Device: /org/freedesktop/UPower/devices/DisplayDevice power supply: no updated: Thu Mar 11 18:28:08 2021 (538247 seconds ago) has history: no has statistics: no unknown warning-level: none icon-name: 'battery-missing-symbolic' Daemon: daemon-version: 0.99.7 on-battery: no lid-is-closed: no lid-is-present: no critical-action: HybridSleep jc-1.17.3/tests/fixtures/ubuntu-18.04/upower-d.json000066400000000000000000000017071415226333200216470ustar00rootroot00000000000000[{"type": "Device", "device_name": "/org/freedesktop/UPower/devices/line_power_ACAD", "native_path": "ACAD", "power_supply": true, "updated": "Thu 11 Mar 2021 06:28:08 PM UTC", "has_history": false, "has_statistics": false, "detail": {"type": "line-power", "warning_level": null, "online": true, "icon_name": "ac-adapter-symbolic"}, "updated_seconds_ago": 441975, "updated_epoch": 1615516088, "updated_epoch_utc": 1615487288}, {"type": "Device", "device_name": "/org/freedesktop/UPower/devices/DisplayDevice", "power_supply": false, "updated": "Thu 11 Mar 2021 06:28:08 PM UTC", "has_history": false, "has_statistics": false, "detail": {"type": "unknown", "warning_level": null, "icon_name": "battery-missing-symbolic"}, "updated_seconds_ago": 441975, "updated_epoch": 1615516088, "updated_epoch_utc": 1615487288}, {"type": "Daemon", "daemon_version": "0.99.7", "on_battery": false, "lid_is_closed": false, "lid_is_present": false, "critical_action": "HybridSleep"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/upower-d.out000066400000000000000000000014371415226333200215050ustar00rootroot00000000000000Device: /org/freedesktop/UPower/devices/line_power_ACAD native-path: ACAD power supply: yes updated: Thu 11 Mar 2021 06:28:08 PM UTC (441975 seconds ago) has history: no has statistics: no line-power warning-level: none online: yes icon-name: 'ac-adapter-symbolic' Device: /org/freedesktop/UPower/devices/DisplayDevice power supply: no updated: Thu 11 Mar 2021 06:28:08 PM UTC (441975 seconds ago) has history: no has statistics: no unknown warning-level: none icon-name: 'battery-missing-symbolic' Daemon: daemon-version: 0.99.7 on-battery: no lid-is-closed: no lid-is-present: no critical-action: HybridSleep jc-1.17.3/tests/fixtures/ubuntu-18.04/upower-i.json000066400000000000000000000005271415226333200216530ustar00rootroot00000000000000[{"native_path": "ACAD", "power_supply": true, "updated": "Thu 11 Mar 2021 06:28:08 PM UTC", "has_history": false, "has_statistics": false, "detail": {"type": "line-power", "warning_level": null, "online": true, "icon_name": "ac-adapter-symbolic"}, "updated_seconds_ago": 442049, "updated_epoch": 1615516088, "updated_epoch_utc": 1615487288}] jc-1.17.3/tests/fixtures/ubuntu-18.04/upower-i.out000066400000000000000000000004641415226333200215110ustar00rootroot00000000000000 native-path: ACAD power supply: yes updated: Thu 11 Mar 2021 06:28:08 PM UTC (442049 seconds ago) has history: no has statistics: no line-power warning-level: none online: yes icon-name: 'ac-adapter-symbolic' jc-1.17.3/tests/fixtures/ubuntu-18.04/uptime.json000066400000000000000000000003771415226333200214120ustar00rootroot00000000000000{"time": "19:43:06", "uptime": "2 days, 19:32", "users": 2, "load_1m": 0.0, "load_5m": 0.0, "load_15m": 0.0, "time_hour": 19, "time_minute": 43, "time_second": 6, "uptime_days": 2, "uptime_hours": 19, "uptime_minutes": 32, "uptime_total_seconds": 243120} jc-1.17.3/tests/fixtures/ubuntu-18.04/uptime.out000066400000000000000000000001061415226333200212360ustar00rootroot00000000000000 19:43:06 up 2 days, 19:32, 2 users, load average: 0.00, 0.00, 0.00 jc-1.17.3/tests/fixtures/ubuntu-18.04/vmstat-1-long-streaming.json000066400000000000000000000332751415226333200245120ustar00rootroot00000000000000[{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147216,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":288,"blocks_out":108,"interrupts":195,"context_switches":2509,"user_time":4,"system_time":3,"idle_time":93,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147216,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":57,"context_switches":96,"user_time":0,"system_time":1,"idle_time":99,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147216,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":85,"context_switches":198,"user_time":0,"system_time":1,"idle_time":99,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147216,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":62,"context_switches":122,"user_time":0,"system_time":0,"idle_time":100,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147216,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":55,"context_switches":113,"user_time":0,"system_time":0,"idle_time":100,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147216,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":103,"context_switches":242,"user_time":1,"system_time":1,"idle_time":98,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147216,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":50,"context_switches":96,"user_time":0,"system_time":0,"idle_time":100,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147216,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":67,"context_switches":119,"user_time":0,"system_time":1,"idle_time":99,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147216,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":102,"context_switches":247,"user_time":0,"system_time":1,"idle_time":99,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147216,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":68,"context_switches":119,"user_time":1,"system_time":0,"idle_time":99,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147216,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":55,"context_switches":105,"user_time":0,"system_time":1,"idle_time":99,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147216,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":98,"context_switches":227,"user_time":0,"system_time":1,"idle_time":99,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147216,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":56,"context_switches":108,"user_time":0,"system_time":0,"idle_time":100,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147216,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":58,"context_switches":106,"user_time":0,"system_time":0,"idle_time":100,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147216,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":98,"context_switches":235,"user_time":0,"system_time":2,"idle_time":98,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":24,"interrupts":71,"context_switches":134,"user_time":1,"system_time":0,"idle_time":99,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":70,"context_switches":126,"user_time":0,"system_time":2,"idle_time":98,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":98,"context_switches":214,"user_time":1,"system_time":0,"idle_time":99,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":55,"context_switches":107,"user_time":0,"system_time":1,"idle_time":99,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":63,"context_switches":114,"user_time":0,"system_time":0,"idle_time":100,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":96,"context_switches":222,"user_time":1,"system_time":1,"idle_time":98,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":59,"context_switches":102,"user_time":0,"system_time":0,"idle_time":100,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":57,"context_switches":106,"user_time":0,"system_time":0,"idle_time":100,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":95,"context_switches":217,"user_time":0,"system_time":2,"idle_time":98,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":80,"context_switches":175,"user_time":0,"system_time":0,"idle_time":100,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":58,"context_switches":102,"user_time":0,"system_time":0,"idle_time":100,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":84,"context_switches":209,"user_time":1,"system_time":1,"idle_time":98,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":59,"context_switches":105,"user_time":0,"system_time":0,"idle_time":100,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":56,"context_switches":100,"user_time":0,"system_time":0,"idle_time":100,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":100,"context_switches":225,"user_time":0,"system_time":1,"idle_time":99,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":52,"context_switches":98,"user_time":0,"system_time":1,"idle_time":99,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":61,"context_switches":104,"user_time":0,"system_time":0,"idle_time":100,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":106,"context_switches":225,"user_time":0,"system_time":2,"idle_time":98,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":1,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":69,"context_switches":120,"user_time":0,"system_time":0,"idle_time":100,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":94,"context_switches":122,"user_time":0,"system_time":0,"idle_time":100,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":1,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":111,"context_switches":228,"user_time":1,"system_time":1,"idle_time":98,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":98,"context_switches":114,"user_time":0,"system_time":0,"idle_time":100,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null}] jc-1.17.3/tests/fixtures/ubuntu-18.04/vmstat-1-long.json000066400000000000000000000332751415226333200225230ustar00rootroot00000000000000[{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147216,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":288,"blocks_out":108,"interrupts":195,"context_switches":2509,"user_time":4,"system_time":3,"idle_time":93,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147216,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":57,"context_switches":96,"user_time":0,"system_time":1,"idle_time":99,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147216,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":85,"context_switches":198,"user_time":0,"system_time":1,"idle_time":99,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147216,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":62,"context_switches":122,"user_time":0,"system_time":0,"idle_time":100,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147216,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":55,"context_switches":113,"user_time":0,"system_time":0,"idle_time":100,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147216,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":103,"context_switches":242,"user_time":1,"system_time":1,"idle_time":98,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147216,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":50,"context_switches":96,"user_time":0,"system_time":0,"idle_time":100,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147216,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":67,"context_switches":119,"user_time":0,"system_time":1,"idle_time":99,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147216,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":102,"context_switches":247,"user_time":0,"system_time":1,"idle_time":99,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147216,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":68,"context_switches":119,"user_time":1,"system_time":0,"idle_time":99,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147216,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":55,"context_switches":105,"user_time":0,"system_time":1,"idle_time":99,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147216,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":98,"context_switches":227,"user_time":0,"system_time":1,"idle_time":99,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147216,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":56,"context_switches":108,"user_time":0,"system_time":0,"idle_time":100,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147216,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":58,"context_switches":106,"user_time":0,"system_time":0,"idle_time":100,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147216,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":98,"context_switches":235,"user_time":0,"system_time":2,"idle_time":98,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":24,"interrupts":71,"context_switches":134,"user_time":1,"system_time":0,"idle_time":99,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":70,"context_switches":126,"user_time":0,"system_time":2,"idle_time":98,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":98,"context_switches":214,"user_time":1,"system_time":0,"idle_time":99,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":55,"context_switches":107,"user_time":0,"system_time":1,"idle_time":99,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":63,"context_switches":114,"user_time":0,"system_time":0,"idle_time":100,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":96,"context_switches":222,"user_time":1,"system_time":1,"idle_time":98,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":59,"context_switches":102,"user_time":0,"system_time":0,"idle_time":100,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":57,"context_switches":106,"user_time":0,"system_time":0,"idle_time":100,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":95,"context_switches":217,"user_time":0,"system_time":2,"idle_time":98,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":80,"context_switches":175,"user_time":0,"system_time":0,"idle_time":100,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":58,"context_switches":102,"user_time":0,"system_time":0,"idle_time":100,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":84,"context_switches":209,"user_time":1,"system_time":1,"idle_time":98,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":59,"context_switches":105,"user_time":0,"system_time":0,"idle_time":100,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":56,"context_switches":100,"user_time":0,"system_time":0,"idle_time":100,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":100,"context_switches":225,"user_time":0,"system_time":1,"idle_time":99,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":52,"context_switches":98,"user_time":0,"system_time":1,"idle_time":99,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":61,"context_switches":104,"user_time":0,"system_time":0,"idle_time":100,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":106,"context_switches":225,"user_time":0,"system_time":2,"idle_time":98,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":1,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":69,"context_switches":120,"user_time":0,"system_time":0,"idle_time":100,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":94,"context_switches":122,"user_time":0,"system_time":0,"idle_time":100,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":1,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":111,"context_switches":228,"user_time":1,"system_time":1,"idle_time":98,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null},{"runnable_procs":0,"uninterruptible_sleeping_procs":0,"virtual_mem_used":524,"free_mem":763388,"buffer_mem":147224,"cache_mem":819640,"inactive_mem":null,"active_mem":null,"swap_in":0,"swap_out":0,"blocks_in":0,"blocks_out":0,"interrupts":98,"context_switches":114,"user_time":0,"system_time":0,"idle_time":100,"io_wait_time":0,"stolen_time":0,"timestamp":null,"timezone":null}] jc-1.17.3/tests/fixtures/ubuntu-18.04/vmstat-1-long.out000066400000000000000000000064121415226333200223520ustar00rootroot00000000000000procs -----------memory---------- ---swap-- -----io---- -system-- ------cpu----- r b swpd free buff cache si so bi bo in cs us sy id wa st 0 0 524 763388 147216 819640 0 0 288 108 195 2509 4 3 93 0 0 0 0 524 763388 147216 819640 0 0 0 0 57 96 0 1 99 0 0 0 0 524 763388 147216 819640 0 0 0 0 85 198 0 1 99 0 0 0 0 524 763388 147216 819640 0 0 0 0 62 122 0 0 100 0 0 0 0 524 763388 147216 819640 0 0 0 0 55 113 0 0 100 0 0 0 0 524 763388 147216 819640 0 0 0 0 103 242 1 1 98 0 0 0 0 524 763388 147216 819640 0 0 0 0 50 96 0 0 100 0 0 0 0 524 763388 147216 819640 0 0 0 0 67 119 0 1 99 0 0 0 0 524 763388 147216 819640 0 0 0 0 102 247 0 1 99 0 0 0 0 524 763388 147216 819640 0 0 0 0 68 119 1 0 99 0 0 0 0 524 763388 147216 819640 0 0 0 0 55 105 0 1 99 0 0 0 0 524 763388 147216 819640 0 0 0 0 98 227 0 1 99 0 0 0 0 524 763388 147216 819640 0 0 0 0 56 108 0 0 100 0 0 0 0 524 763388 147216 819640 0 0 0 0 58 106 0 0 100 0 0 0 0 524 763388 147216 819640 0 0 0 0 98 235 0 2 98 0 0 0 0 524 763388 147224 819640 0 0 0 24 71 134 1 0 99 0 0 0 0 524 763388 147224 819640 0 0 0 0 70 126 0 2 98 0 0 0 0 524 763388 147224 819640 0 0 0 0 98 214 1 0 99 0 0 0 0 524 763388 147224 819640 0 0 0 0 55 107 0 1 99 0 0 0 0 524 763388 147224 819640 0 0 0 0 63 114 0 0 100 0 0 0 0 524 763388 147224 819640 0 0 0 0 96 222 1 1 98 0 0 0 0 524 763388 147224 819640 0 0 0 0 59 102 0 0 100 0 0 0 0 524 763388 147224 819640 0 0 0 0 57 106 0 0 100 0 0 0 0 524 763388 147224 819640 0 0 0 0 95 217 0 2 98 0 0 0 0 524 763388 147224 819640 0 0 0 0 80 175 0 0 100 0 0 0 0 524 763388 147224 819640 0 0 0 0 58 102 0 0 100 0 0 0 0 524 763388 147224 819640 0 0 0 0 84 209 1 1 98 0 0 0 0 524 763388 147224 819640 0 0 0 0 59 105 0 0 100 0 0 0 0 524 763388 147224 819640 0 0 0 0 56 100 0 0 100 0 0 0 0 524 763388 147224 819640 0 0 0 0 100 225 0 1 99 0 0 0 0 524 763388 147224 819640 0 0 0 0 52 98 0 1 99 0 0 0 0 524 763388 147224 819640 0 0 0 0 61 104 0 0 100 0 0 0 0 524 763388 147224 819640 0 0 0 0 106 225 0 2 98 0 0 procs -----------memory---------- ---swap-- -----io---- -system-- ------cpu----- r b swpd free buff cache si so bi bo in cs us sy id wa st 1 0 524 763388 147224 819640 0 0 0 0 69 120 0 0 100 0 0 0 0 524 763388 147224 819640 0 0 0 0 94 122 0 0 100 0 0 1 0 524 763388 147224 819640 0 0 0 0 111 228 1 1 98 0 0 0 0 524 763388 147224 819640 0 0 0 0 98 114 0 0 100 0 0 jc-1.17.3/tests/fixtures/ubuntu-18.04/w.json000066400000000000000000000004441415226333200203500ustar00rootroot00000000000000[{"user": "kbrazil", "tty": "ttyS0", "from": null, "login_at": "21Oct19", "idle": "14:32", "jcpu": "18.09s", "pcpu": "18.01s", "what": "-bash"}, {"user": "kbrazil", "tty": "pts/0", "from": "192.168.71.1", "login_at": "Thu22", "idle": "10.00s", "jcpu": "0.17s", "pcpu": "0.00s", "what": "w"}] jc-1.17.3/tests/fixtures/ubuntu-18.04/w.out000066400000000000000000000004221415226333200202020ustar00rootroot00000000000000 19:43:06 up 2 days, 19:32, 2 users, load average: 0.00, 0.00, 0.00 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT kbrazil ttyS0 - 21Oct19 14:32 18.09s 18.01s -bash kbrazil pts/0 192.168.71.1 Thu22 10.00s 0.17s 0.00s w jc-1.17.3/tests/fixtures/ubuntu-18.04/who-a.json000066400000000000000000000007701415226333200211170ustar00rootroot00000000000000[{"event":"reboot","time":"2020-03-02 02:52","epoch":1583146320},{"user":"kbrazil","writeable_tty":"-","tty":"ttyS0","time":"2020-03-02 02:52","idle":".","pid":1983,"epoch":1583146320},{"event":"run-level 5","time":"2020-03-02 02:52","epoch":1583146320},{"event":"login","tty":"tty1","time":"2020-03-02 02:52","pid":1199,"comment":"id=tty1","epoch":1583146320},{"user":"kbrazil","writeable_tty":"+","tty":"pts/0","time":"2020-03-02 02:54","idle":".","pid":2176,"from":"192.168.71.1","epoch":1583146440}] jc-1.17.3/tests/fixtures/ubuntu-18.04/who-a.out000066400000000000000000000005431415226333200207530ustar00rootroot00000000000000NAME LINE TIME IDLE PID COMMENT EXIT system boot 2020-03-02 02:52 kbrazil - ttyS0 2020-03-02 02:52 . 1983 run-level 5 2020-03-02 02:52 LOGIN tty1 2020-03-02 02:52 1199 id=tty1 kbrazil + pts/0 2020-03-02 02:54 . 2176 (192.168.71.1) jc-1.17.3/tests/fixtures/ubuntu-18.04/who.json000066400000000000000000000002641415226333200206770ustar00rootroot00000000000000[{"user":"kbrazil","tty":"ttyS0","time":"2020-03-02 02:52","epoch":1583146320},{"user":"kbrazil","tty":"pts/0","time":"2020-03-02 02:54","from":"192.168.71.1","epoch":1583146440}] jc-1.17.3/tests/fixtures/ubuntu-18.04/who.out000066400000000000000000000002141415226333200205300ustar00rootroot00000000000000NAME LINE TIME COMMENT kbrazil ttyS0 2020-03-02 02:52 kbrazil pts/0 2020-03-02 02:54 (192.168.71.1) jc-1.17.3/tests/fixtures/ubuntu-20.04/000077500000000000000000000000001415226333200171765ustar00rootroot00000000000000jc-1.17.3/tests/fixtures/ubuntu-20.04/date.json000066400000000000000000000005311415226333200210050ustar00rootroot00000000000000{"year": 2021, "month": "Jan", "month_num": 1, "day": 5, "weekday": "Tue", "weekday_num": 2, "hour": 1, "hour_24": 1, "minute": 2, "second": 4, "period": "AM", "timezone": "UTC", "utc_offset": "+0000", "day_of_year": 5, "week_of_year": 1, "iso": "2021-01-05T01:02:04+00:00", "epoch": 1609837324, "epoch_utc": 1609808524, "timezone_aware": true} jc-1.17.3/tests/fixtures/ubuntu-20.04/date.out000066400000000000000000000000371415226333200206440ustar00rootroot00000000000000Tue Jan 5 01:02:04 AM UTC 2021jc-1.17.3/tests/fixtures/ubuntu-20.04/date2.json000066400000000000000000000005371415226333200210750ustar00rootroot00000000000000{"year": 2021, "month": "Mar", "month_num": 3, "day": 23, "weekday": "Tue", "weekday_num": 2, "hour": 8, "hour_24": 20, "minute": 45, "second": 29, "period": "PM", "timezone": "UTC", "utc_offset": "+0000", "day_of_year": 82, "week_of_year": 12, "iso": "2021-03-23T20:45:29+00:00", "epoch": 1616557529, "epoch_utc": 1616532329, "timezone_aware": true} jc-1.17.3/tests/fixtures/ubuntu-20.04/date2.out000066400000000000000000000000401415226333200207200ustar00rootroot00000000000000Tue Mar 23 08:45:29 PM UTC 2021 jc-1.17.3/tests/fixtures/ubuntu-20.04/hciconfig-a.json000066400000000000000000000026631415226333200222470ustar00rootroot00000000000000[{"device": "hci0", "type": "Primary", "bus": "USB", "bd_address": "00:1A:7D:DA:71:13", "acl_mtu": 310, "acl_mtu_packets": 10, "sco_mtu": 64, "sco_mtu_packets": 8, "state": ["UP", "RUNNING"], "rx_bytes": 13905869, "rx_acl": 0, "rx_sco": 0, "rx_events": 393300, "rx_errors": 0, "tx_bytes": 62629, "tx_acl": 0, "tx_sco": 0, "tx_commands": 3893, "tx_errors": 0, "features": ["0xff", "0xff", "0x8f", "0xfe", "0xdb", "0xff", "0x5b", "0x87"], "packet_type": ["DM1", "DM3", "DM5", "DH1", "DH3", "DH5", "HV1", "HV2", "HV3"], "link_policy": ["RSWITCH", "HOLD", "SNIFF", "PARK"], "link_mode": ["SLAVE", "ACCEPT"], "name": "CSR8510 A10", "class": "0x000000", "service_classes": null, "device_class": "Miscellaneous", "hci_version": "4.0 (0x6)", "hci_revision": "0x22bb", "lmp_version": "4.0 (0x6)", "lmp_subversion": "0x22bb", "manufacturer": "Cambridge Silicon Radio (10)"}, {"device": "hci1", "type": "Primary", "bus": "USB", "bd_address": "00:1A:7D:DA:71:13", "acl_mtu": 310, "acl_mtu_packets": 10, "sco_mtu": 64, "sco_mtu_packets": 8, "state": ["DOWN"], "rx_bytes": 4388363, "rx_acl": 0, "rx_sco": 0, "rx_events": 122021, "rx_errors": 0, "tx_bytes": 52350, "tx_acl": 0, "tx_sco": 0, "tx_commands": 3480, "tx_errors": 2, "features": ["0xff", "0xff", "0x8f", "0xfe", "0xdb", "0xff", "0x5b", "0x87"], "packet_type": ["DM1", "DM3", "DM5", "DH1", "DH3", "DH5", "HV1", "HV2", "HV3"], "link_policy": ["RSWITCH", "HOLD", "SNIFF", "PARK"], "link_mode": ["SLAVE", "ACCEPT"]}] jc-1.17.3/tests/fixtures/ubuntu-20.04/hciconfig-a.out000066400000000000000000000021601415226333200220750ustar00rootroot00000000000000hci0: Type: Primary Bus: USB BD Address: 00:1A:7D:DA:71:13 ACL MTU: 310:10 SCO MTU: 64:8 UP RUNNING RX bytes:13905869 acl:0 sco:0 events:393300 errors:0 TX bytes:62629 acl:0 sco:0 commands:3893 errors:0 Features: 0xff 0xff 0x8f 0xfe 0xdb 0xff 0x5b 0x87 Packet type: DM1 DM3 DM5 DH1 DH3 DH5 HV1 HV2 HV3 Link policy: RSWITCH HOLD SNIFF PARK Link mode: SLAVE ACCEPT Name: 'CSR8510 A10' Class: 0x000000 Service Classes: Unspecified Device Class: Miscellaneous, HCI Version: 4.0 (0x6) Revision: 0x22bb LMP Version: 4.0 (0x6) Subversion: 0x22bb Manufacturer: Cambridge Silicon Radio (10) hci1: Type: Primary Bus: USB BD Address: 00:1A:7D:DA:71:13 ACL MTU: 310:10 SCO MTU: 64:8 DOWN RX bytes:4388363 acl:0 sco:0 events:122021 errors:0 TX bytes:52350 acl:0 sco:0 commands:3480 errors:2 Features: 0xff 0xff 0x8f 0xfe 0xdb 0xff 0x5b 0x87 Packet type: DM1 DM3 DM5 DH1 DH3 DH5 HV1 HV2 HV3 Link policy: RSWITCH HOLD SNIFF PARK Link mode: SLAVE ACCEPT jc-1.17.3/tests/fixtures/ubuntu-20.04/hciconfig.json000066400000000000000000000015221415226333200220220ustar00rootroot00000000000000[{"device": "hci0", "type": "Primary", "bus": "USB", "bd_address": "00:50:56:E7:46:1A", "acl_mtu": 8192, "acl_mtu_packets": 128, "sco_mtu": 64, "sco_mtu_packets": 128, "state": ["UP", "RUNNING"], "rx_bytes": 1307, "rx_acl": 0, "rx_sco": 0, "rx_events": 51, "rx_errors": 0, "tx_bytes": 1200, "tx_acl": 0, "tx_sco": 0, "tx_commands": 51, "tx_errors": 0, "features": ["0xff", "0xff", "0x8f", "0xfe", "0x83", "0xe1", "0x08", "0x80"], "packet_type": ["DM1", "DM3", "DM5", "DH1", "DH3", "DH5", "HV1", "HV2", "HV3"], "link_policy": ["RSWITCH", "HOLD", "SNIFF", "PARK"], "link_mode": ["SLAVE", "ACCEPT"], "name": "kbrazil-ubuntu", "class": "0x000000", "service_classes": null, "device_class": "Miscellaneous", "hci_version": "2.1 (0x4)", "hci_revision": "0x100", "lmp_version": "2.1 (0x4)", "lmp_subversion": "0x100", "manufacturer": "not assigned (6502)"}] jc-1.17.3/tests/fixtures/ubuntu-20.04/hciconfig.out000066400000000000000000000012001415226333200216510ustar00rootroot00000000000000hci0: Type: Primary Bus: USB BD Address: 00:50:56:E7:46:1A ACL MTU: 8192:128 SCO MTU: 64:128 UP RUNNING RX bytes:1307 acl:0 sco:0 events:51 errors:0 TX bytes:1200 acl:0 sco:0 commands:51 errors:0 Features: 0xff 0xff 0x8f 0xfe 0x83 0xe1 0x08 0x80 Packet type: DM1 DM3 DM5 DH1 DH3 DH5 HV1 HV2 HV3 Link policy: RSWITCH HOLD SNIFF PARK Link mode: SLAVE ACCEPT Name: 'kbrazil-ubuntu' Class: 0x000000 Service Classes: Unspecified Device Class: Miscellaneous, HCI Version: 2.1 (0x4) Revision: 0x100 LMP Version: 2.1 (0x4) Subversion: 0x100 Manufacturer: not assigned (6502) jc-1.17.3/tests/fixtures/ubuntu-20.04/last-F.json000066400000000000000000000015511415226333200212210ustar00rootroot00000000000000[{"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Tue Jan 5 20:03:51 2021", "logout": "still logged in", "login_epoch": 1609905831}, {"user": "kbrazil", "tty": "pts/0", "hostname": "192.168.71.1", "login": "Tue Jan 5 00:17:29 2021", "logout": "Tue Jan 5 20:03:47 2021", "duration": "19:46", "login_epoch": 1609834649, "logout_epoch": 1609905827, "duration_seconds": 71178}, {"user": "kbrazil", "tty": "tty1", "hostname": null, "login": "Tue Jan 5 00:08:46 2021", "logout": "gone - no logout", "login_epoch": 1609834126}, {"user": "root", "tty": "pts/0", "hostname": "developer-pc.exa", "login": "Mon Mar 23 16:44:55 2020", "logout": "down", "duration": "00:00", "login_epoch": 1585007095}, {"user": "reboot", "tty": "system boot", "hostname": "5.8.0-34-generic", "login": "Tue Jan 5 00:08:28 2021", "logout": "running", "login_epoch": 1609834108}] jc-1.17.3/tests/fixtures/ubuntu-20.04/last-F.out000066400000000000000000000007431415226333200210610ustar00rootroot00000000000000kbrazil pts/0 192.168.71.1 Tue Jan 5 20:03:51 2021 still logged in kbrazil pts/0 192.168.71.1 Tue Jan 5 00:17:29 2021 - Tue Jan 5 20:03:47 2021 (19:46) kbrazil tty1 Tue Jan 5 00:08:46 2021 gone - no logout root pts/0 developer-pc.exa Mon Mar 23 16:44:55 2020 - down (00:00) reboot system boot 5.8.0-34-generic Tue Jan 5 00:08:28 2021 still running wtmp begins Tue Jan 5 00:08:28 2021 jc-1.17.3/tests/fixtures/ubuntu-20.10/000077500000000000000000000000001415226333200171735ustar00rootroot00000000000000jc-1.17.3/tests/fixtures/ubuntu-20.10/iostat-m-streaming.json000066400000000000000000000036601415226333200236170ustar00rootroot00000000000000[{"percent_user":0.39,"percent_nice":0.04,"percent_system":0.44,"percent_iowait":0.04,"percent_steal":0.0,"percent_idle":99.1,"type":"cpu"},{"device":"dm-0","tps":9.5,"mb_read_s":0.1,"mb_wrtn_s":0.13,"mb_dscd_s":0.0,"mb_read":517,"mb_wrtn":678,"mb_dscd":0,"type":"device"},{"device":"loop0","tps":0.02,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_dscd_s":0.0,"mb_read":1,"mb_wrtn":0,"mb_dscd":0,"type":"device"},{"device":"loop1","tps":0.01,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_dscd_s":0.0,"mb_read":0,"mb_wrtn":0,"mb_dscd":0,"type":"device"},{"device":"loop10","tps":0.0,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_dscd_s":0.0,"mb_read":0,"mb_wrtn":0,"mb_dscd":0,"type":"device"},{"device":"loop2","tps":0.01,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_dscd_s":0.0,"mb_read":1,"mb_wrtn":0,"mb_dscd":0,"type":"device"},{"device":"loop3","tps":0.04,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_dscd_s":0.0,"mb_read":2,"mb_wrtn":0,"mb_dscd":0,"type":"device"},{"device":"loop4","tps":0.01,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_dscd_s":0.0,"mb_read":1,"mb_wrtn":0,"mb_dscd":0,"type":"device"},{"device":"loop5","tps":0.1,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_dscd_s":0.0,"mb_read":17,"mb_wrtn":0,"mb_dscd":0,"type":"device"},{"device":"loop6","tps":0.01,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_dscd_s":0.0,"mb_read":0,"mb_wrtn":0,"mb_dscd":0,"type":"device"},{"device":"loop7","tps":0.12,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_dscd_s":0.0,"mb_read":22,"mb_wrtn":0,"mb_dscd":0,"type":"device"},{"device":"loop8","tps":0.02,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_dscd_s":0.0,"mb_read":0,"mb_wrtn":0,"mb_dscd":0,"type":"device"},{"device":"loop9","tps":0.04,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_dscd_s":0.0,"mb_read":2,"mb_wrtn":0,"mb_dscd":0,"type":"device"},{"device":"sda","tps":5.45,"mb_read_s":0.1,"mb_wrtn_s":0.13,"mb_dscd_s":0.0,"mb_read":528,"mb_wrtn":679,"mb_dscd":0,"type":"device"},{"device":"sr0","tps":0.19,"mb_read_s":0.01,"mb_wrtn_s":0.0,"mb_dscd_s":0.0,"mb_read":36,"mb_wrtn":0,"mb_dscd":0,"type":"device"}] jc-1.17.3/tests/fixtures/ubuntu-20.10/iostat-m.json000066400000000000000000000036601415226333200216300ustar00rootroot00000000000000[{"percent_user":0.39,"percent_nice":0.04,"percent_system":0.44,"percent_iowait":0.04,"percent_steal":0.0,"percent_idle":99.1,"type":"cpu"},{"device":"dm-0","tps":9.5,"mb_read_s":0.1,"mb_wrtn_s":0.13,"mb_dscd_s":0.0,"mb_read":517,"mb_wrtn":678,"mb_dscd":0,"type":"device"},{"device":"loop0","tps":0.02,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_dscd_s":0.0,"mb_read":1,"mb_wrtn":0,"mb_dscd":0,"type":"device"},{"device":"loop1","tps":0.01,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_dscd_s":0.0,"mb_read":0,"mb_wrtn":0,"mb_dscd":0,"type":"device"},{"device":"loop10","tps":0.0,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_dscd_s":0.0,"mb_read":0,"mb_wrtn":0,"mb_dscd":0,"type":"device"},{"device":"loop2","tps":0.01,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_dscd_s":0.0,"mb_read":1,"mb_wrtn":0,"mb_dscd":0,"type":"device"},{"device":"loop3","tps":0.04,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_dscd_s":0.0,"mb_read":2,"mb_wrtn":0,"mb_dscd":0,"type":"device"},{"device":"loop4","tps":0.01,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_dscd_s":0.0,"mb_read":1,"mb_wrtn":0,"mb_dscd":0,"type":"device"},{"device":"loop5","tps":0.1,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_dscd_s":0.0,"mb_read":17,"mb_wrtn":0,"mb_dscd":0,"type":"device"},{"device":"loop6","tps":0.01,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_dscd_s":0.0,"mb_read":0,"mb_wrtn":0,"mb_dscd":0,"type":"device"},{"device":"loop7","tps":0.12,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_dscd_s":0.0,"mb_read":22,"mb_wrtn":0,"mb_dscd":0,"type":"device"},{"device":"loop8","tps":0.02,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_dscd_s":0.0,"mb_read":0,"mb_wrtn":0,"mb_dscd":0,"type":"device"},{"device":"loop9","tps":0.04,"mb_read_s":0.0,"mb_wrtn_s":0.0,"mb_dscd_s":0.0,"mb_read":2,"mb_wrtn":0,"mb_dscd":0,"type":"device"},{"device":"sda","tps":5.45,"mb_read_s":0.1,"mb_wrtn_s":0.13,"mb_dscd_s":0.0,"mb_read":528,"mb_wrtn":679,"mb_dscd":0,"type":"device"},{"device":"sr0","tps":0.19,"mb_read_s":0.01,"mb_wrtn_s":0.0,"mb_dscd_s":0.0,"mb_read":36,"mb_wrtn":0,"mb_dscd":0,"type":"device"}] jc-1.17.3/tests/fixtures/ubuntu-20.10/iostat-m.out000066400000000000000000000031021415226333200214550ustar00rootroot00000000000000Linux 5.8.0-53-generic (ubuntu) 12/02/2021 _x86_64_ (2 CPU) avg-cpu: %user %nice %system %iowait %steal %idle 0.39 0.04 0.44 0.04 0.00 99.10 Device tps MB_read/s MB_wrtn/s MB_dscd/s MB_read MB_wrtn MB_dscd dm-0 9.50 0.10 0.13 0.00 517 678 0 loop0 0.02 0.00 0.00 0.00 1 0 0 loop1 0.01 0.00 0.00 0.00 0 0 0 loop10 0.00 0.00 0.00 0.00 0 0 0 loop2 0.01 0.00 0.00 0.00 1 0 0 loop3 0.04 0.00 0.00 0.00 2 0 0 loop4 0.01 0.00 0.00 0.00 1 0 0 loop5 0.10 0.00 0.00 0.00 17 0 0 loop6 0.01 0.00 0.00 0.00 0 0 0 loop7 0.12 0.00 0.00 0.00 22 0 0 loop8 0.02 0.00 0.00 0.00 0 0 0 loop9 0.04 0.00 0.00 0.00 2 0 0 sda 5.45 0.10 0.13 0.00 528 679 0 sr0 0.19 0.01 0.00 0.00 36 0 0 jc-1.17.3/tests/fixtures/ubuntu-20.10/iostat-mx-streaming.json000066400000000000000000000115421415226333200240050ustar00rootroot00000000000000[{"percent_user":0.38,"percent_nice":0.04,"percent_system":0.44,"percent_iowait":0.04,"percent_steal":0.0,"percent_idle":99.1,"type":"cpu"},{"device":"dm-0","r_s":2.35,"rmb_s":0.1,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.55,"rareq_sz":41.48,"w_s":7.13,"wmb_s":0.13,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.4,"wareq_sz":17.98,"d_s":0.0,"dmb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.34,"type":"device"},{"device":"loop0","r_s":0.02,"rmb_s":0.0,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.14,"rareq_sz":12.41,"w_s":0.0,"wmb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dmb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.0,"type":"device"},{"device":"loop1","r_s":0.01,"rmb_s":0.0,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.4,"rareq_sz":7.48,"w_s":0.0,"wmb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dmb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.0,"type":"device"},{"device":"loop10","r_s":0.0,"rmb_s":0.0,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.0,"rareq_sz":1.5,"w_s":0.0,"wmb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dmb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.0,"type":"device"},{"device":"loop2","r_s":0.01,"rmb_s":0.0,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.32,"rareq_sz":19.21,"w_s":0.0,"wmb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dmb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.0,"type":"device"},{"device":"loop3","r_s":0.04,"rmb_s":0.0,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.42,"rareq_sz":10.42,"w_s":0.0,"wmb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dmb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.01,"type":"device"},{"device":"loop4","r_s":0.01,"rmb_s":0.0,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.34,"rareq_sz":17.14,"w_s":0.0,"wmb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dmb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.0,"type":"device"},{"device":"loop5","r_s":0.1,"rmb_s":0.0,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.37,"rareq_sz":33.41,"w_s":0.0,"wmb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dmb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.03,"type":"device"},{"device":"loop6","r_s":0.01,"rmb_s":0.0,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.46,"rareq_sz":7.5,"w_s":0.0,"wmb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dmb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.0,"type":"device"},{"device":"loop7","r_s":0.12,"rmb_s":0.0,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.12,"rareq_sz":34.54,"w_s":0.0,"wmb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dmb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.03,"type":"device"},{"device":"loop8","r_s":0.02,"rmb_s":0.0,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.0,"rareq_sz":8.46,"w_s":0.0,"wmb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dmb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.0,"type":"device"},{"device":"loop9","r_s":0.04,"rmb_s":0.0,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.06,"rareq_sz":9.98,"w_s":0.0,"wmb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dmb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.0,"type":"device"},{"device":"sda","r_s":2.65,"rmb_s":0.1,"rrqm_s":0.65,"percent_rrqm":19.71,"r_await":0.36,"rareq_sz":37.62,"w_s":2.8,"wmb_s":0.13,"wrqm_s":4.38,"percent_wrqm":61.04,"w_await":0.42,"wareq_sz":45.83,"d_s":0.0,"dmb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.41,"type":"device"},{"device":"sr0","r_s":0.18,"rmb_s":0.01,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.24,"rareq_sz":37.55,"w_s":0.0,"wmb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dmb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.01,"type":"device"}] jc-1.17.3/tests/fixtures/ubuntu-20.10/iostat-mx.json000066400000000000000000000115421415226333200220160ustar00rootroot00000000000000[{"percent_user":0.38,"percent_nice":0.04,"percent_system":0.44,"percent_iowait":0.04,"percent_steal":0.0,"percent_idle":99.1,"type":"cpu"},{"device":"dm-0","r_s":2.35,"rmb_s":0.1,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.55,"rareq_sz":41.48,"w_s":7.13,"wmb_s":0.13,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.4,"wareq_sz":17.98,"d_s":0.0,"dmb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.34,"type":"device"},{"device":"loop0","r_s":0.02,"rmb_s":0.0,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.14,"rareq_sz":12.41,"w_s":0.0,"wmb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dmb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.0,"type":"device"},{"device":"loop1","r_s":0.01,"rmb_s":0.0,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.4,"rareq_sz":7.48,"w_s":0.0,"wmb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dmb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.0,"type":"device"},{"device":"loop10","r_s":0.0,"rmb_s":0.0,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.0,"rareq_sz":1.5,"w_s":0.0,"wmb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dmb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.0,"type":"device"},{"device":"loop2","r_s":0.01,"rmb_s":0.0,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.32,"rareq_sz":19.21,"w_s":0.0,"wmb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dmb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.0,"type":"device"},{"device":"loop3","r_s":0.04,"rmb_s":0.0,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.42,"rareq_sz":10.42,"w_s":0.0,"wmb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dmb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.01,"type":"device"},{"device":"loop4","r_s":0.01,"rmb_s":0.0,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.34,"rareq_sz":17.14,"w_s":0.0,"wmb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dmb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.0,"type":"device"},{"device":"loop5","r_s":0.1,"rmb_s":0.0,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.37,"rareq_sz":33.41,"w_s":0.0,"wmb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dmb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.03,"type":"device"},{"device":"loop6","r_s":0.01,"rmb_s":0.0,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.46,"rareq_sz":7.5,"w_s":0.0,"wmb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dmb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.0,"type":"device"},{"device":"loop7","r_s":0.12,"rmb_s":0.0,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.12,"rareq_sz":34.54,"w_s":0.0,"wmb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dmb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.03,"type":"device"},{"device":"loop8","r_s":0.02,"rmb_s":0.0,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.0,"rareq_sz":8.46,"w_s":0.0,"wmb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dmb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.0,"type":"device"},{"device":"loop9","r_s":0.04,"rmb_s":0.0,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.06,"rareq_sz":9.98,"w_s":0.0,"wmb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dmb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.0,"type":"device"},{"device":"sda","r_s":2.65,"rmb_s":0.1,"rrqm_s":0.65,"percent_rrqm":19.71,"r_await":0.36,"rareq_sz":37.62,"w_s":2.8,"wmb_s":0.13,"wrqm_s":4.38,"percent_wrqm":61.04,"w_await":0.42,"wareq_sz":45.83,"d_s":0.0,"dmb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.41,"type":"device"},{"device":"sr0","r_s":0.18,"rmb_s":0.01,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.24,"rareq_sz":37.55,"w_s":0.0,"wmb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dmb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.01,"type":"device"}] jc-1.17.3/tests/fixtures/ubuntu-20.10/iostat-mx.out000066400000000000000000000061141415226333200216530ustar00rootroot00000000000000Linux 5.8.0-53-generic (ubuntu) 12/02/2021 _x86_64_ (2 CPU) avg-cpu: %user %nice %system %iowait %steal %idle 0.38 0.04 0.44 0.04 0.00 99.10 Device r/s rMB/s rrqm/s %rrqm r_await rareq-sz w/s wMB/s wrqm/s %wrqm w_await wareq-sz d/s dMB/s drqm/s %drqm d_await dareq-sz f/s f_await aqu-sz %util dm-0 2.35 0.10 0.00 0.00 0.55 41.48 7.13 0.13 0.00 0.00 0.40 17.98 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.34 loop0 0.02 0.00 0.00 0.00 0.14 12.41 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 loop1 0.01 0.00 0.00 0.00 0.40 7.48 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 loop10 0.00 0.00 0.00 0.00 0.00 1.50 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 loop2 0.01 0.00 0.00 0.00 0.32 19.21 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 loop3 0.04 0.00 0.00 0.00 0.42 10.42 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.01 loop4 0.01 0.00 0.00 0.00 0.34 17.14 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 loop5 0.10 0.00 0.00 0.00 0.37 33.41 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.03 loop6 0.01 0.00 0.00 0.00 0.46 7.50 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 loop7 0.12 0.00 0.00 0.00 0.12 34.54 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.03 loop8 0.02 0.00 0.00 0.00 0.00 8.46 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 loop9 0.04 0.00 0.00 0.00 0.06 9.98 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 sda 2.65 0.10 0.65 19.71 0.36 37.62 2.80 0.13 4.38 61.04 0.42 45.83 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.41 sr0 0.18 0.01 0.00 0.00 0.24 37.55 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.01 jc-1.17.3/tests/fixtures/ubuntu-20.10/iostat-streaming.json000066400000000000000000000037601415226333200233660ustar00rootroot00000000000000[{"percent_user":0.4,"percent_nice":0.04,"percent_system":0.45,"percent_iowait":0.04,"percent_steal":0.0,"percent_idle":99.07,"type":"cpu"},{"device":"dm-0","tps":9.78,"kb_read_s":101.69,"kb_wrtn_s":133.03,"kb_dscd_s":0.0,"kb_read":530217,"kb_wrtn":693624,"kb_dscd":0,"type":"device"},{"device":"loop0","tps":0.02,"kb_read_s":0.28,"kb_wrtn_s":0.0,"kb_dscd_s":0.0,"kb_read":1464,"kb_wrtn":0,"kb_dscd":0,"type":"device"},{"device":"loop1","tps":0.01,"kb_read_s":0.07,"kb_wrtn_s":0.0,"kb_dscd_s":0.0,"kb_read":359,"kb_wrtn":0,"kb_dscd":0,"type":"device"},{"device":"loop10","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_dscd_s":0.0,"kb_read":18,"kb_wrtn":0,"kb_dscd":0,"type":"device"},{"device":"loop2","tps":0.01,"kb_read_s":0.21,"kb_wrtn_s":0.0,"kb_dscd_s":0.0,"kb_read":1095,"kb_wrtn":0,"kb_dscd":0,"type":"device"},{"device":"loop3","tps":0.04,"kb_read_s":0.41,"kb_wrtn_s":0.0,"kb_dscd_s":0.0,"kb_read":2137,"kb_wrtn":0,"kb_dscd":0,"type":"device"},{"device":"loop4","tps":0.01,"kb_read_s":0.21,"kb_wrtn_s":0.0,"kb_dscd_s":0.0,"kb_read":1114,"kb_wrtn":0,"kb_dscd":0,"type":"device"},{"device":"loop5","tps":0.1,"kb_read_s":3.39,"kb_wrtn_s":0.0,"kb_dscd_s":0.0,"kb_read":17673,"kb_wrtn":0,"kb_dscd":0,"type":"device"},{"device":"loop6","tps":0.01,"kb_read_s":0.07,"kb_wrtn_s":0.0,"kb_dscd_s":0.0,"kb_read":360,"kb_wrtn":0,"kb_dscd":0,"type":"device"},{"device":"loop7","tps":0.13,"kb_read_s":4.43,"kb_wrtn_s":0.0,"kb_dscd_s":0.0,"kb_read":23074,"kb_wrtn":0,"kb_dscd":0,"type":"device"},{"device":"loop8","tps":0.02,"kb_read_s":0.13,"kb_wrtn_s":0.0,"kb_dscd_s":0.0,"kb_read":694,"kb_wrtn":0,"kb_dscd":0,"type":"device"},{"device":"loop9","tps":0.04,"kb_read_s":0.42,"kb_wrtn_s":0.0,"kb_dscd_s":0.0,"kb_read":2195,"kb_wrtn":0,"kb_dscd":0,"type":"device"},{"device":"sda","tps":5.58,"kb_read_s":103.76,"kb_wrtn_s":133.05,"kb_dscd_s":0.0,"kb_read":541026,"kb_wrtn":693732,"kb_dscd":0,"type":"device"},{"device":"sr0","tps":0.19,"kb_read_s":7.22,"kb_wrtn_s":0.0,"kb_dscd_s":0.0,"kb_read":37658,"kb_wrtn":0,"kb_dscd":0,"type":"device"}] jc-1.17.3/tests/fixtures/ubuntu-20.10/iostat-x-streaming.json000066400000000000000000000115641415226333200236340ustar00rootroot00000000000000[{"percent_user":0.39,"percent_nice":0.04,"percent_system":0.44,"percent_iowait":0.04,"percent_steal":0.0,"percent_idle":99.09,"type":"cpu"},{"device":"dm-0","r_s":2.38,"rkb_s":98.75,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.55,"rareq_sz":41.48,"w_s":7.18,"wkb_s":129.42,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.4,"wareq_sz":18.04,"d_s":0.0,"dkb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.34,"type":"device"},{"device":"loop0","r_s":0.02,"rkb_s":0.27,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.14,"rareq_sz":12.41,"w_s":0.0,"wkb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dkb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.0,"type":"device"},{"device":"loop1","r_s":0.01,"rkb_s":0.07,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.4,"rareq_sz":7.48,"w_s":0.0,"wkb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dkb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.0,"type":"device"},{"device":"loop10","r_s":0.0,"rkb_s":0.0,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.0,"rareq_sz":1.5,"w_s":0.0,"wkb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dkb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.0,"type":"device"},{"device":"loop2","r_s":0.01,"rkb_s":0.2,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.32,"rareq_sz":19.21,"w_s":0.0,"wkb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dkb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.0,"type":"device"},{"device":"loop3","r_s":0.04,"rkb_s":0.4,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.42,"rareq_sz":10.42,"w_s":0.0,"wkb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dkb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.01,"type":"device"},{"device":"loop4","r_s":0.01,"rkb_s":0.21,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.34,"rareq_sz":17.14,"w_s":0.0,"wkb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dkb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.0,"type":"device"},{"device":"loop5","r_s":0.1,"rkb_s":3.29,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.37,"rareq_sz":33.41,"w_s":0.0,"wkb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dkb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.03,"type":"device"},{"device":"loop6","r_s":0.01,"rkb_s":0.07,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.46,"rareq_sz":7.5,"w_s":0.0,"wkb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dkb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.0,"type":"device"},{"device":"loop7","r_s":0.12,"rkb_s":4.3,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.12,"rareq_sz":34.54,"w_s":0.0,"wkb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dkb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.03,"type":"device"},{"device":"loop8","r_s":0.02,"rkb_s":0.13,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.0,"rareq_sz":8.46,"w_s":0.0,"wkb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dkb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.0,"type":"device"},{"device":"loop9","r_s":0.04,"rkb_s":0.41,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.06,"rareq_sz":9.98,"w_s":0.0,"wkb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dkb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.0,"type":"device"},{"device":"sda","r_s":2.67,"rkb_s":100.76,"rrqm_s":0.66,"percent_rrqm":19.76,"r_await":0.36,"rareq_sz":37.75,"w_s":2.81,"wkb_s":129.44,"wrqm_s":4.42,"percent_wrqm":61.15,"w_await":0.42,"wareq_sz":46.11,"d_s":0.0,"dkb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.41,"type":"device"},{"device":"sr0","r_s":0.19,"rkb_s":7.01,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.24,"rareq_sz":37.55,"w_s":0.0,"wkb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dkb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.01,"type":"device"}] jc-1.17.3/tests/fixtures/ubuntu-20.10/iostat-x.json000066400000000000000000000115641415226333200216450ustar00rootroot00000000000000[{"percent_user":0.39,"percent_nice":0.04,"percent_system":0.44,"percent_iowait":0.04,"percent_steal":0.0,"percent_idle":99.09,"type":"cpu"},{"device":"dm-0","r_s":2.38,"rkb_s":98.75,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.55,"rareq_sz":41.48,"w_s":7.18,"wkb_s":129.42,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.4,"wareq_sz":18.04,"d_s":0.0,"dkb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.34,"type":"device"},{"device":"loop0","r_s":0.02,"rkb_s":0.27,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.14,"rareq_sz":12.41,"w_s":0.0,"wkb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dkb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.0,"type":"device"},{"device":"loop1","r_s":0.01,"rkb_s":0.07,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.4,"rareq_sz":7.48,"w_s":0.0,"wkb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dkb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.0,"type":"device"},{"device":"loop10","r_s":0.0,"rkb_s":0.0,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.0,"rareq_sz":1.5,"w_s":0.0,"wkb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dkb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.0,"type":"device"},{"device":"loop2","r_s":0.01,"rkb_s":0.2,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.32,"rareq_sz":19.21,"w_s":0.0,"wkb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dkb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.0,"type":"device"},{"device":"loop3","r_s":0.04,"rkb_s":0.4,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.42,"rareq_sz":10.42,"w_s":0.0,"wkb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dkb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.01,"type":"device"},{"device":"loop4","r_s":0.01,"rkb_s":0.21,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.34,"rareq_sz":17.14,"w_s":0.0,"wkb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dkb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.0,"type":"device"},{"device":"loop5","r_s":0.1,"rkb_s":3.29,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.37,"rareq_sz":33.41,"w_s":0.0,"wkb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dkb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.03,"type":"device"},{"device":"loop6","r_s":0.01,"rkb_s":0.07,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.46,"rareq_sz":7.5,"w_s":0.0,"wkb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dkb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.0,"type":"device"},{"device":"loop7","r_s":0.12,"rkb_s":4.3,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.12,"rareq_sz":34.54,"w_s":0.0,"wkb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dkb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.03,"type":"device"},{"device":"loop8","r_s":0.02,"rkb_s":0.13,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.0,"rareq_sz":8.46,"w_s":0.0,"wkb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dkb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.0,"type":"device"},{"device":"loop9","r_s":0.04,"rkb_s":0.41,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.06,"rareq_sz":9.98,"w_s":0.0,"wkb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dkb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.0,"type":"device"},{"device":"sda","r_s":2.67,"rkb_s":100.76,"rrqm_s":0.66,"percent_rrqm":19.76,"r_await":0.36,"rareq_sz":37.75,"w_s":2.81,"wkb_s":129.44,"wrqm_s":4.42,"percent_wrqm":61.15,"w_await":0.42,"wareq_sz":46.11,"d_s":0.0,"dkb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.41,"type":"device"},{"device":"sr0","r_s":0.19,"rkb_s":7.01,"rrqm_s":0.0,"percent_rrqm":0.0,"r_await":0.24,"rareq_sz":37.55,"w_s":0.0,"wkb_s":0.0,"wrqm_s":0.0,"percent_wrqm":0.0,"w_await":0.0,"wareq_sz":0.0,"d_s":0.0,"dkb_s":0.0,"drqm_s":0.0,"percent_drqm":0.0,"d_await":0.0,"dareq_sz":0.0,"f_s":0.0,"f_await":0.0,"aqu_sz":0.0,"percent_util":0.01,"type":"device"}] jc-1.17.3/tests/fixtures/ubuntu-20.10/iostat-x.out000066400000000000000000000061131415226333200214750ustar00rootroot00000000000000Linux 5.8.0-53-generic (ubuntu) 12/02/2021 _x86_64_ (2 CPU) avg-cpu: %user %nice %system %iowait %steal %idle 0.39 0.04 0.44 0.04 0.00 99.09 Device r/s rkB/s rrqm/s %rrqm r_await rareq-sz w/s wkB/s wrqm/s %wrqm w_await wareq-sz d/s dkB/s drqm/s %drqm d_await dareq-sz f/s f_await aqu-sz %util dm-0 2.38 98.75 0.00 0.00 0.55 41.48 7.18 129.42 0.00 0.00 0.40 18.04 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.34 loop0 0.02 0.27 0.00 0.00 0.14 12.41 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 loop1 0.01 0.07 0.00 0.00 0.40 7.48 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 loop10 0.00 0.00 0.00 0.00 0.00 1.50 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 loop2 0.01 0.20 0.00 0.00 0.32 19.21 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 loop3 0.04 0.40 0.00 0.00 0.42 10.42 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.01 loop4 0.01 0.21 0.00 0.00 0.34 17.14 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 loop5 0.10 3.29 0.00 0.00 0.37 33.41 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.03 loop6 0.01 0.07 0.00 0.00 0.46 7.50 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 loop7 0.12 4.30 0.00 0.00 0.12 34.54 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.03 loop8 0.02 0.13 0.00 0.00 0.00 8.46 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 loop9 0.04 0.41 0.00 0.00 0.06 9.98 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 sda 2.67 100.76 0.66 19.76 0.36 37.75 2.81 129.44 4.42 61.15 0.42 46.11 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.41 sr0 0.19 7.01 0.00 0.00 0.24 37.55 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.01 jc-1.17.3/tests/fixtures/ubuntu-20.10/iostat.json000066400000000000000000000037601415226333200213770ustar00rootroot00000000000000[{"percent_user":0.4,"percent_nice":0.04,"percent_system":0.45,"percent_iowait":0.04,"percent_steal":0.0,"percent_idle":99.07,"type":"cpu"},{"device":"dm-0","tps":9.78,"kb_read_s":101.69,"kb_wrtn_s":133.03,"kb_dscd_s":0.0,"kb_read":530217,"kb_wrtn":693624,"kb_dscd":0,"type":"device"},{"device":"loop0","tps":0.02,"kb_read_s":0.28,"kb_wrtn_s":0.0,"kb_dscd_s":0.0,"kb_read":1464,"kb_wrtn":0,"kb_dscd":0,"type":"device"},{"device":"loop1","tps":0.01,"kb_read_s":0.07,"kb_wrtn_s":0.0,"kb_dscd_s":0.0,"kb_read":359,"kb_wrtn":0,"kb_dscd":0,"type":"device"},{"device":"loop10","tps":0.0,"kb_read_s":0.0,"kb_wrtn_s":0.0,"kb_dscd_s":0.0,"kb_read":18,"kb_wrtn":0,"kb_dscd":0,"type":"device"},{"device":"loop2","tps":0.01,"kb_read_s":0.21,"kb_wrtn_s":0.0,"kb_dscd_s":0.0,"kb_read":1095,"kb_wrtn":0,"kb_dscd":0,"type":"device"},{"device":"loop3","tps":0.04,"kb_read_s":0.41,"kb_wrtn_s":0.0,"kb_dscd_s":0.0,"kb_read":2137,"kb_wrtn":0,"kb_dscd":0,"type":"device"},{"device":"loop4","tps":0.01,"kb_read_s":0.21,"kb_wrtn_s":0.0,"kb_dscd_s":0.0,"kb_read":1114,"kb_wrtn":0,"kb_dscd":0,"type":"device"},{"device":"loop5","tps":0.1,"kb_read_s":3.39,"kb_wrtn_s":0.0,"kb_dscd_s":0.0,"kb_read":17673,"kb_wrtn":0,"kb_dscd":0,"type":"device"},{"device":"loop6","tps":0.01,"kb_read_s":0.07,"kb_wrtn_s":0.0,"kb_dscd_s":0.0,"kb_read":360,"kb_wrtn":0,"kb_dscd":0,"type":"device"},{"device":"loop7","tps":0.13,"kb_read_s":4.43,"kb_wrtn_s":0.0,"kb_dscd_s":0.0,"kb_read":23074,"kb_wrtn":0,"kb_dscd":0,"type":"device"},{"device":"loop8","tps":0.02,"kb_read_s":0.13,"kb_wrtn_s":0.0,"kb_dscd_s":0.0,"kb_read":694,"kb_wrtn":0,"kb_dscd":0,"type":"device"},{"device":"loop9","tps":0.04,"kb_read_s":0.42,"kb_wrtn_s":0.0,"kb_dscd_s":0.0,"kb_read":2195,"kb_wrtn":0,"kb_dscd":0,"type":"device"},{"device":"sda","tps":5.58,"kb_read_s":103.76,"kb_wrtn_s":133.05,"kb_dscd_s":0.0,"kb_read":541026,"kb_wrtn":693732,"kb_dscd":0,"type":"device"},{"device":"sr0","tps":0.19,"kb_read_s":7.22,"kb_wrtn_s":0.0,"kb_dscd_s":0.0,"kb_read":37658,"kb_wrtn":0,"kb_dscd":0,"type":"device"}] jc-1.17.3/tests/fixtures/ubuntu-20.10/iostat.out000066400000000000000000000031031415226333200212240ustar00rootroot00000000000000Linux 5.8.0-53-generic (ubuntu) 12/02/2021 _x86_64_ (2 CPU) avg-cpu: %user %nice %system %iowait %steal %idle 0.40 0.04 0.45 0.04 0.00 99.07 Device tps kB_read/s kB_wrtn/s kB_dscd/s kB_read kB_wrtn kB_dscd dm-0 9.78 101.69 133.03 0.00 530217 693624 0 loop0 0.02 0.28 0.00 0.00 1464 0 0 loop1 0.01 0.07 0.00 0.00 359 0 0 loop10 0.00 0.00 0.00 0.00 18 0 0 loop2 0.01 0.21 0.00 0.00 1095 0 0 loop3 0.04 0.41 0.00 0.00 2137 0 0 loop4 0.01 0.21 0.00 0.00 1114 0 0 loop5 0.10 3.39 0.00 0.00 17673 0 0 loop6 0.01 0.07 0.00 0.00 360 0 0 loop7 0.13 4.43 0.00 0.00 23074 0 0 loop8 0.02 0.13 0.00 0.00 694 0 0 loop9 0.04 0.42 0.00 0.00 2195 0 0 sda 5.58 103.76 133.05 0.00 541026 693732 0 sr0 0.19 7.22 0.00 0.00 37658 0 0 jc-1.17.3/tests/fixtures/windows-10/000077500000000000000000000000001415226333200171235ustar00rootroot00000000000000jc-1.17.3/tests/fixtures/windows-10/dir-C.json000066400000000000000000000041641415226333200207610ustar00rootroot00000000000000[{"date":"03/24/2021","time":"03:15 PM","dir":true,"size":null,"filename":".","parent":"C:\\Program Files\\Internet Explorer","epoch":1616624100},{"date":"03/24/2021","time":"03:15 PM","dir":true,"size":null,"filename":"..","parent":"C:\\Program Files\\Internet Explorer","epoch":1616624100},{"date":"12/07/2019","time":"02:49 AM","dir":true,"size":null,"filename":"en-US","parent":"C:\\Program Files\\Internet Explorer","epoch":1575715740},{"date":"12/07/2019","time":"02:09 AM","dir":false,"size":54784,"filename":"ExtExport.exe","parent":"C:\\Program Files\\Internet Explorer","epoch":1575713340},{"date":"03/24/2021","time":"03:15 PM","dir":false,"size":0,"filename":"file name.txt","parent":"C:\\Program Files\\Internet Explorer","epoch":1616624100},{"date":"12/07/2019","time":"02:09 AM","dir":false,"size":54784,"filename":"hmmapi.dll","parent":"C:\\Program Files\\Internet Explorer","epoch":1575713340},{"date":"12/07/2019","time":"02:09 AM","dir":false,"size":515072,"filename":"iediagcmd.exe","parent":"C:\\Program Files\\Internet Explorer","epoch":1575713340},{"date":"12/07/2019","time":"02:09 AM","dir":false,"size":504832,"filename":"ieinstal.exe","parent":"C:\\Program Files\\Internet Explorer","epoch":1575713340},{"date":"12/07/2019","time":"02:09 AM","dir":false,"size":224768,"filename":"ielowutil.exe","parent":"C:\\Program Files\\Internet Explorer","epoch":1575713340},{"date":"12/07/2019","time":"02:09 AM","dir":false,"size":421888,"filename":"IEShims.dll","parent":"C:\\Program Files\\Internet Explorer","epoch":1575713340},{"date":"12/06/2019","time":"02:47 PM","dir":false,"size":819136,"filename":"iexplore.exe","parent":"C:\\Program Files\\Internet Explorer","epoch":1575672420},{"date":"12/07/2019","time":"02:14 AM","dir":true,"size":null,"filename":"images","parent":"C:\\Program Files\\Internet Explorer","epoch":1575713640},{"date":"12/07/2019","time":"02:14 AM","dir":true,"size":null,"filename":"SIGNUP","parent":"C:\\Program Files\\Internet Explorer","epoch":1575713640},{"date":"12/07/2019","time":"02:09 AM","dir":false,"size":48536,"filename":"sqmapi.dll","parent":"C:\\Program Files\\Internet Explorer","epoch":1575713340}] jc-1.17.3/tests/fixtures/windows-10/dir-C.out000066400000000000000000000016071415226333200206160ustar00rootroot00000000000000 Volume in drive C has no label. Volume Serial Number is 246B-3B5A Directory of C:\Program Files\Internet Explorer 03/24/2021 03:15 PM . 03/24/2021 03:15 PM .. 12/07/2019 02:49 AM en-US 12/07/2019 02:09 AM 54784 ExtExport.exe 03/24/2021 03:15 PM 0 file name.txt 12/07/2019 02:09 AM 54784 hmmapi.dll 12/07/2019 02:09 AM 515072 iediagcmd.exe 12/07/2019 02:09 AM 504832 ieinstal.exe 12/07/2019 02:09 AM 224768 ielowutil.exe 12/07/2019 02:09 AM 421888 IEShims.dll 12/06/2019 02:47 PM 819136 iexplore.exe 12/07/2019 02:14 AM images 12/07/2019 02:14 AM SIGNUP 12/07/2019 02:09 AM 48536 sqmapi.dll 9 File(s) 2643800 bytes 5 Dir(s) 36206153728 bytes free jc-1.17.3/tests/fixtures/windows-10/dir-ODTC.json000066400000000000000000000041641415226333200213300ustar00rootroot00000000000000[{"date":"12/07/2019","time":"02:09 AM","dir":false,"size":54784,"filename":"hmmapi.dll","parent":"C:\\Program Files\\Internet Explorer","epoch":1575713340},{"date":"12/07/2019","time":"02:09 AM","dir":false,"size":224768,"filename":"ielowutil.exe","parent":"C:\\Program Files\\Internet Explorer","epoch":1575713340},{"date":"12/07/2019","time":"02:09 AM","dir":false,"size":54784,"filename":"ExtExport.exe","parent":"C:\\Program Files\\Internet Explorer","epoch":1575713340},{"date":"12/07/2019","time":"02:09 AM","dir":false,"size":515072,"filename":"iediagcmd.exe","parent":"C:\\Program Files\\Internet Explorer","epoch":1575713340},{"date":"12/07/2019","time":"02:09 AM","dir":false,"size":421888,"filename":"IEShims.dll","parent":"C:\\Program Files\\Internet Explorer","epoch":1575713340},{"date":"12/07/2019","time":"02:09 AM","dir":false,"size":504832,"filename":"ieinstal.exe","parent":"C:\\Program Files\\Internet Explorer","epoch":1575713340},{"date":"12/07/2019","time":"02:09 AM","dir":false,"size":48536,"filename":"sqmapi.dll","parent":"C:\\Program Files\\Internet Explorer","epoch":1575713340},{"date":"12/07/2019","time":"02:14 AM","dir":true,"size":null,"filename":"images","parent":"C:\\Program Files\\Internet Explorer","epoch":1575713640},{"date":"12/07/2019","time":"02:14 AM","dir":true,"size":null,"filename":"..","parent":"C:\\Program Files\\Internet Explorer","epoch":1575713640},{"date":"12/07/2019","time":"02:14 AM","dir":true,"size":null,"filename":"SIGNUP","parent":"C:\\Program Files\\Internet Explorer","epoch":1575713640},{"date":"12/07/2019","time":"02:14 AM","dir":true,"size":null,"filename":".","parent":"C:\\Program Files\\Internet Explorer","epoch":1575713640},{"date":"12/07/2019","time":"02:49 AM","dir":true,"size":null,"filename":"en-US","parent":"C:\\Program Files\\Internet Explorer","epoch":1575715740},{"date":"12/07/2019","time":"02:49 AM","dir":false,"size":819136,"filename":"iexplore.exe","parent":"C:\\Program Files\\Internet Explorer","epoch":1575715740},{"date":"03/24/2021","time":"03:15 PM","dir":false,"size":0,"filename":"file name.txt","parent":"C:\\Program Files\\Internet Explorer","epoch":1616624100}] jc-1.17.3/tests/fixtures/windows-10/dir-ODTC.out000066400000000000000000000016071415226333200211650ustar00rootroot00000000000000 Volume in drive C has no label. Volume Serial Number is 246B-3B5A Directory of C:\Program Files\Internet Explorer 12/07/2019 02:09 AM 54,784 hmmapi.dll 12/07/2019 02:09 AM 224,768 ielowutil.exe 12/07/2019 02:09 AM 54,784 ExtExport.exe 12/07/2019 02:09 AM 515,072 iediagcmd.exe 12/07/2019 02:09 AM 421,888 IEShims.dll 12/07/2019 02:09 AM 504,832 ieinstal.exe 12/07/2019 02:09 AM 48,536 sqmapi.dll 12/07/2019 02:14 AM images 12/07/2019 02:14 AM .. 12/07/2019 02:14 AM SIGNUP 12/07/2019 02:14 AM . 12/07/2019 02:49 AM en-US 12/07/2019 02:49 AM 819,136 iexplore.exe 03/24/2021 03:15 PM 0 file name.txt 9 File(s) 2,643,800 bytes 5 Dir(s) 35,231,817,728 bytes free jc-1.17.3/tests/fixtures/windows-10/dir-S.json000066400000000000000000000075051415226333200210030ustar00rootroot00000000000000[{"date":"03/24/2021","time":"03:15 PM","dir":true,"size":null,"filename":".","parent":"C:\\Program Files\\Internet Explorer","epoch":1616624100},{"date":"03/24/2021","time":"03:15 PM","dir":true,"size":null,"filename":"..","parent":"C:\\Program Files\\Internet Explorer","epoch":1616624100},{"date":"12/07/2019","time":"02:49 AM","dir":true,"size":null,"filename":"en-US","parent":"C:\\Program Files\\Internet Explorer","epoch":1575715740},{"date":"12/07/2019","time":"02:09 AM","dir":false,"size":54784,"filename":"ExtExport.exe","parent":"C:\\Program Files\\Internet Explorer","epoch":1575713340},{"date":"03/24/2021","time":"03:15 PM","dir":false,"size":0,"filename":"file name.txt","parent":"C:\\Program Files\\Internet Explorer","epoch":1616624100},{"date":"12/07/2019","time":"02:09 AM","dir":false,"size":54784,"filename":"hmmapi.dll","parent":"C:\\Program Files\\Internet Explorer","epoch":1575713340},{"date":"12/07/2019","time":"02:09 AM","dir":false,"size":515072,"filename":"iediagcmd.exe","parent":"C:\\Program Files\\Internet Explorer","epoch":1575713340},{"date":"12/07/2019","time":"02:09 AM","dir":false,"size":504832,"filename":"ieinstal.exe","parent":"C:\\Program Files\\Internet Explorer","epoch":1575713340},{"date":"12/07/2019","time":"02:09 AM","dir":false,"size":224768,"filename":"ielowutil.exe","parent":"C:\\Program Files\\Internet Explorer","epoch":1575713340},{"date":"12/07/2019","time":"02:09 AM","dir":false,"size":421888,"filename":"IEShims.dll","parent":"C:\\Program Files\\Internet Explorer","epoch":1575713340},{"date":"12/06/2019","time":"02:47 PM","dir":false,"size":819136,"filename":"iexplore.exe","parent":"C:\\Program Files\\Internet Explorer","epoch":1575672420},{"date":"12/07/2019","time":"02:14 AM","dir":true,"size":null,"filename":"images","parent":"C:\\Program Files\\Internet Explorer","epoch":1575713640},{"date":"12/07/2019","time":"02:14 AM","dir":true,"size":null,"filename":"SIGNUP","parent":"C:\\Program Files\\Internet Explorer","epoch":1575713640},{"date":"12/07/2019","time":"02:09 AM","dir":false,"size":48536,"filename":"sqmapi.dll","parent":"C:\\Program Files\\Internet Explorer","epoch":1575713340},{"date":"12/07/2019","time":"02:49 AM","dir":true,"size":null,"filename":".","parent":"C:\\Program Files\\Internet Explorer\\en-US","epoch":1575715740},{"date":"12/07/2019","time":"02:49 AM","dir":true,"size":null,"filename":"..","parent":"C:\\Program Files\\Internet Explorer\\en-US","epoch":1575715740},{"date":"12/07/2019","time":"02:48 AM","dir":false,"size":2560,"filename":"hmmapi.dll.mui","parent":"C:\\Program Files\\Internet Explorer\\en-US","epoch":1575715680},{"date":"12/07/2019","time":"02:48 AM","dir":false,"size":2560,"filename":"ieinstal.exe.mui","parent":"C:\\Program Files\\Internet Explorer\\en-US","epoch":1575715680},{"date":"12/07/2019","time":"02:48 AM","dir":false,"size":5632,"filename":"iexplore.exe.mui","parent":"C:\\Program Files\\Internet Explorer\\en-US","epoch":1575715680},{"date":"12/07/2019","time":"02:14 AM","dir":true,"size":null,"filename":".","parent":"C:\\Program Files\\Internet Explorer\\images","epoch":1575713640},{"date":"12/07/2019","time":"02:14 AM","dir":true,"size":null,"filename":"..","parent":"C:\\Program Files\\Internet Explorer\\images","epoch":1575713640},{"date":"12/07/2019","time":"02:09 AM","dir":false,"size":5430,"filename":"bing.ico","parent":"C:\\Program Files\\Internet Explorer\\images","epoch":1575713340},{"date":"12/07/2019","time":"02:14 AM","dir":true,"size":null,"filename":".","parent":"C:\\Program Files\\Internet Explorer\\SIGNUP","epoch":1575713640},{"date":"12/07/2019","time":"02:14 AM","dir":true,"size":null,"filename":"..","parent":"C:\\Program Files\\Internet Explorer\\SIGNUP","epoch":1575713640},{"date":"12/07/2019","time":"02:12 AM","dir":false,"size":452,"filename":"install.ins","parent":"C:\\Program Files\\Internet Explorer\\SIGNUP","epoch":1575713520}] jc-1.17.3/tests/fixtures/windows-10/dir-S.out000066400000000000000000000034101415226333200206300ustar00rootroot00000000000000 Volume in drive C has no label. Volume Serial Number is 246B-3B5A Directory of C:\Program Files\Internet Explorer 03/24/2021 03:15 PM . 03/24/2021 03:15 PM .. 12/07/2019 02:49 AM en-US 12/07/2019 02:09 AM 54,784 ExtExport.exe 03/24/2021 03:15 PM 0 file name.txt 12/07/2019 02:09 AM 54,784 hmmapi.dll 12/07/2019 02:09 AM 515,072 iediagcmd.exe 12/07/2019 02:09 AM 504,832 ieinstal.exe 12/07/2019 02:09 AM 224,768 ielowutil.exe 12/07/2019 02:09 AM 421,888 IEShims.dll 12/06/2019 02:47 PM 819,136 iexplore.exe 12/07/2019 02:14 AM images 12/07/2019 02:14 AM SIGNUP 12/07/2019 02:09 AM 48,536 sqmapi.dll 9 File(s) 2,643,800 bytes Directory of C:\Program Files\Internet Explorer\en-US 12/07/2019 02:49 AM . 12/07/2019 02:49 AM .. 12/07/2019 02:48 AM 2,560 hmmapi.dll.mui 12/07/2019 02:48 AM 2,560 ieinstal.exe.mui 12/07/2019 02:48 AM 5,632 iexplore.exe.mui 3 File(s) 10,752 bytes Directory of C:\Program Files\Internet Explorer\images 12/07/2019 02:14 AM . 12/07/2019 02:14 AM .. 12/07/2019 02:09 AM 5,430 bing.ico 1 File(s) 5,430 bytes Directory of C:\Program Files\Internet Explorer\SIGNUP 12/07/2019 02:14 AM . 12/07/2019 02:14 AM .. 12/07/2019 02:12 AM 452 install.ins 1 File(s) 452 bytes Total Files Listed: 14 File(s) 2,660,434 bytes 11 Dir(s) 33,300,922,368 bytes free jc-1.17.3/tests/fixtures/windows-10/dir-dirs.json000066400000000000000000000022241415226333200215330ustar00rootroot00000000000000[{"date":"03/25/2021","time":"02:36 PM","dir":true,"size":null,"filename":".","parent":"C:\\Users\\Yoda\\Desktop\\jc\\docs","epoch":1616708160},{"date":"03/25/2021","time":"02:36 PM","dir":true,"size":null,"filename":"..","parent":"C:\\Users\\Yoda\\Desktop\\jc\\docs","epoch":1616708160},{"date":"03/25/2021","time":"02:38 PM","dir":true,"size":null,"filename":"parsers","parent":"C:\\Users\\Yoda\\Desktop\\jc\\docs","epoch":1616708280},{"date":"03/25/2021","time":"02:36 PM","dir":false,"size":2713,"filename":"readme.md","parent":"C:\\Users\\Yoda\\Desktop\\jc\\docs","epoch":1616708160},{"date":"03/25/2021","time":"02:36 PM","dir":false,"size":1338,"filename":"utils.md","parent":"C:\\Users\\Yoda\\Desktop\\jc\\docs","epoch":1616708160},{"date":"03/25/2021","time":"02:36 PM","dir":true,"size":null,"filename":".","parent":"C:\\Users\\Yoda\\Desktop\\jc\\man","epoch":1616708160},{"date":"03/25/2021","time":"02:36 PM","dir":true,"size":null,"filename":"..","parent":"C:\\Users\\Yoda\\Desktop\\jc\\man","epoch":1616708160},{"date":"03/25/2021","time":"02:36 PM","dir":false,"size":4300,"filename":"jc.1","parent":"C:\\Users\\Yoda\\Desktop\\jc\\man","epoch":1616708160}] jc-1.17.3/tests/fixtures/windows-10/dir-dirs.out000066400000000000000000000012201415226333200213640ustar00rootroot00000000000000 Volume in drive C has no label. Volume Serial Number is 246B-3B5A Directory of C:\Users\Yoda\Desktop\jc\docs 03/25/2021 02:36 PM . 03/25/2021 02:36 PM .. 03/25/2021 02:38 PM parsers 03/25/2021 02:36 PM 2,713 readme.md 03/25/2021 02:36 PM 1,338 utils.md 2 File(s) 4,051 bytes Directory of C:\Users\Yoda\Desktop\jc\man 03/25/2021 02:36 PM . 03/25/2021 02:36 PM .. 03/25/2021 02:36 PM 4,300 jc.1 1 File(s) 4,300 bytes 2 Dir(s) 33,349,226,496 bytes free jc-1.17.3/tests/fixtures/windows-10/dir-files.json000066400000000000000000000006721415226333200217010ustar00rootroot00000000000000[{"date":"03/25/2021","time":"02:38 PM","dir":false,"size":4253,"filename":"docgen.sh","parent":"C:\\Users\\Yoda\\Desktop\\jc","epoch":1616708280},{"date":"03/25/2021","time":"02:36 PM","dir":false,"size":1088,"filename":"LICENSE.md","parent":"C:\\Users\\Yoda\\Desktop\\jc","epoch":1616708160},{"date":"03/25/2021","time":"02:36 PM","dir":false,"size":27063,"filename":"README.md","parent":"C:\\Users\\Yoda\\Desktop\\jc","epoch":1616708160}] jc-1.17.3/tests/fixtures/windows-10/dir-files.out000066400000000000000000000006641415226333200215400ustar00rootroot00000000000000 Volume in drive C has no label. Volume Serial Number is 246B-3B5A Directory of C:\Users\Yoda\Desktop\jc 03/25/2021 02:38 PM 4,253 docgen.sh Directory of C:\Users\Yoda\Desktop\jc 03/25/2021 02:36 PM 1,088 LICENSE.md Directory of C:\Users\Yoda\Desktop\jc 03/25/2021 02:36 PM 27,063 README.md 3 File(s) 32,404 bytes 0 Dir(s) 33,349,652,480 bytes free jc-1.17.3/tests/fixtures/windows-10/dir-mix.json000066400000000000000000000020141415226333200213640ustar00rootroot00000000000000[{"date":"03/25/2021","time":"02:38 PM","dir":false,"size":4253,"filename":"docgen.sh","parent":"C:\\Users\\Yoda\\Desktop\\jc","epoch":1616708280},{"date":"03/25/2021","time":"02:36 PM","dir":true,"size":null,"filename":".","parent":"C:\\Users\\Yoda\\Desktop\\jc\\docs","epoch":1616708160},{"date":"03/25/2021","time":"02:36 PM","dir":true,"size":null,"filename":"..","parent":"C:\\Users\\Yoda\\Desktop\\jc\\docs","epoch":1616708160},{"date":"03/25/2021","time":"02:38 PM","dir":true,"size":null,"filename":"parsers","parent":"C:\\Users\\Yoda\\Desktop\\jc\\docs","epoch":1616708280},{"date":"03/25/2021","time":"02:36 PM","dir":false,"size":2713,"filename":"readme.md","parent":"C:\\Users\\Yoda\\Desktop\\jc\\docs","epoch":1616708160},{"date":"03/25/2021","time":"02:36 PM","dir":false,"size":1338,"filename":"utils.md","parent":"C:\\Users\\Yoda\\Desktop\\jc\\docs","epoch":1616708160},{"date":"03/25/2021","time":"02:38 PM","dir":false,"size":58995,"filename":"EXAMPLES.md","parent":"C:\\Users\\Yoda\\Desktop\\jc","epoch":1616708280}] jc-1.17.3/tests/fixtures/windows-10/dir-mix.out000066400000000000000000000013101415226333200212200ustar00rootroot00000000000000 Volume in drive C has no label. Volume Serial Number is 246B-3B5A Directory of C:\Users\Yoda\Desktop\jc 03/25/2021 02:38 PM 4,253 docgen.sh 1 File(s) 4,253 bytes Directory of C:\Users\Yoda\Desktop\jc\docs 03/25/2021 02:36 PM . 03/25/2021 02:36 PM .. 03/25/2021 02:38 PM parsers 03/25/2021 02:36 PM 2,713 readme.md 03/25/2021 02:36 PM 1,338 utils.md 2 File(s) 4,051 bytes Directory of C:\Users\Yoda\Desktop\jc 03/25/2021 02:38 PM 58,995 EXAMPLES.md 1 File(s) 58,995 bytes 0 Dir(s) 34,115,264,512 bytes free jc-1.17.3/tests/fixtures/windows-10/dir.json000066400000000000000000000041641415226333200206010ustar00rootroot00000000000000[{"date":"03/24/2021","time":"03:15 PM","dir":true,"size":null,"filename":".","parent":"C:\\Program Files\\Internet Explorer","epoch":1616624100},{"date":"03/24/2021","time":"03:15 PM","dir":true,"size":null,"filename":"..","parent":"C:\\Program Files\\Internet Explorer","epoch":1616624100},{"date":"12/07/2019","time":"02:49 AM","dir":true,"size":null,"filename":"en-US","parent":"C:\\Program Files\\Internet Explorer","epoch":1575715740},{"date":"12/07/2019","time":"02:09 AM","dir":false,"size":54784,"filename":"ExtExport.exe","parent":"C:\\Program Files\\Internet Explorer","epoch":1575713340},{"date":"03/24/2021","time":"03:15 PM","dir":false,"size":0,"filename":"file name.txt","parent":"C:\\Program Files\\Internet Explorer","epoch":1616624100},{"date":"12/07/2019","time":"02:09 AM","dir":false,"size":54784,"filename":"hmmapi.dll","parent":"C:\\Program Files\\Internet Explorer","epoch":1575713340},{"date":"12/07/2019","time":"02:09 AM","dir":false,"size":515072,"filename":"iediagcmd.exe","parent":"C:\\Program Files\\Internet Explorer","epoch":1575713340},{"date":"12/07/2019","time":"02:09 AM","dir":false,"size":504832,"filename":"ieinstal.exe","parent":"C:\\Program Files\\Internet Explorer","epoch":1575713340},{"date":"12/07/2019","time":"02:09 AM","dir":false,"size":224768,"filename":"ielowutil.exe","parent":"C:\\Program Files\\Internet Explorer","epoch":1575713340},{"date":"12/07/2019","time":"02:09 AM","dir":false,"size":421888,"filename":"IEShims.dll","parent":"C:\\Program Files\\Internet Explorer","epoch":1575713340},{"date":"12/06/2019","time":"02:47 PM","dir":false,"size":819136,"filename":"iexplore.exe","parent":"C:\\Program Files\\Internet Explorer","epoch":1575672420},{"date":"12/07/2019","time":"02:14 AM","dir":true,"size":null,"filename":"images","parent":"C:\\Program Files\\Internet Explorer","epoch":1575713640},{"date":"12/07/2019","time":"02:14 AM","dir":true,"size":null,"filename":"SIGNUP","parent":"C:\\Program Files\\Internet Explorer","epoch":1575713640},{"date":"12/07/2019","time":"02:09 AM","dir":false,"size":48536,"filename":"sqmapi.dll","parent":"C:\\Program Files\\Internet Explorer","epoch":1575713340}] jc-1.17.3/tests/fixtures/windows-10/dir.out000066400000000000000000000016071415226333200204360ustar00rootroot00000000000000 Volume in drive C has no label. Volume Serial Number is 246B-3B5A Directory of C:\Program Files\Internet Explorer 03/24/2021 03:15 PM . 03/24/2021 03:15 PM .. 12/07/2019 02:49 AM en-US 12/07/2019 02:09 AM 54,784 ExtExport.exe 03/24/2021 03:15 PM 0 file name.txt 12/07/2019 02:09 AM 54,784 hmmapi.dll 12/07/2019 02:09 AM 515,072 iediagcmd.exe 12/07/2019 02:09 AM 504,832 ieinstal.exe 12/07/2019 02:09 AM 224,768 ielowutil.exe 12/07/2019 02:09 AM 421,888 IEShims.dll 12/06/2019 02:47 PM 819,136 iexplore.exe 12/07/2019 02:14 AM images 12/07/2019 02:14 AM SIGNUP 12/07/2019 02:09 AM 48,536 sqmapi.dll 9 File(s) 2,643,800 bytes 5 Dir(s) 36,207,603,712 bytes free jc-1.17.3/tests/fixtures/windows/000077500000000000000000000000001415226333200167055ustar00rootroot00000000000000jc-1.17.3/tests/fixtures/windows/windows-10/000077500000000000000000000000001415226333200206155ustar00rootroot00000000000000jc-1.17.3/tests/fixtures/windows/windows-10/systeminfo-hyperv-utc.json000066400000000000000000000053471415226333200260250ustar00rootroot00000000000000{"host_name":"TESTLAPTOP","os_name":"Microsoft Windows 10 Enterprise","os_version":"10.0.17134 N/A Build 17134","os_manufacturer":"Microsoft Corporation","os_configuration":"Member Workstation","os_build_type":"Multiprocessor Free","registered_owner":"Test, Inc.","registered_organization":"Test, Inc.","product_id":"11111-11111-11111-AA111","original_install_date":"3/26/2019, 3:51:30 PM","system_boot_time":"3/30/2021, 6:13:59 AM","system_manufacturer":"Dell Inc.","system_model":"Precision 5530","system_type":"x64-based PC","processors":["Intel64 Family 6 Model 158 Stepping 10 GenuineIntel ~2592 Mhz"],"bios_version":"Dell Inc. 1.16.2, 4/21/2020","windows_directory":"C:\\WINDOWS","system_directory":"C:\\WINDOWS\\system32","boot_device":"\\Device\\HarddiskVolume2","system_locale":"en-us;English (United States)","input_locale":"en-us;English (United States)","time_zone":"(UTC+00:00) UTC","total_physical_memory_mb":32503,"available_physical_memory_mb":19743,"virtual_memory_max_size_mb":37367,"virtual_memory_available_mb":22266,"virtual_memory_in_use_mb":15101,"page_file_locations":"C:\\pagefile.sys","domain":"test.com","logon_server":"\\\\TESTDC01","hotfixs":["KB2693643","KB4601054","KB4230204","KB4346084","KB4485449","KB4486153","KB4509094","KB4535680","KB4580325","KB4580398","KB4534293"],"network_cards":[{"name":"Intel(R) Wireless-AC 9260 160MHz","connection_name":"Wi-Fi","status":null,"dhcp_enabled":true,"dhcp_server":"192.168.2.1","ip_addresses":["192.168.2.219"]},{"name":"Bluetooth Device (Personal Area Network)","connection_name":"Bluetooth Network Connection","status":"Media disconnected","dhcp_enabled":false,"dhcp_server":null,"ip_addresses":[]},{"name":"Microsoft KM-TEST Loopback Adapter","connection_name":"Npcap Loopback Adapter","status":null,"dhcp_enabled":true,"dhcp_server":"255.255.255.255","ip_addresses":["169.254.161.245"]},{"name":"Cisco AnyConnect Secure Mobility Client Virtual Miniport Adapter for Windows x64","connection_name":"Ethernet 5","status":"Hardware not present","dhcp_enabled":false,"dhcp_server":null,"ip_addresses":[]},{"name":"Hyper-V Virtual Ethernet Adapter","connection_name":"vEthernet (InternalVM)","status":null,"dhcp_enabled":false,"dhcp_server":null,"ip_addresses":["172.16.32.1"]},{"name":"Hyper-V Virtual Ethernet Adapter","connection_name":"vEthernet (Default Switch) 2","status":null,"dhcp_enabled":true,"dhcp_server":"255.255.255.255","ip_addresses":["172.26.251.65"]}],"hyperv_requirements":{"vm_monitor_mode_extensions":true,"virtualization_enabled_in_firmware":true,"second_level_address_translation":false,"data_execution_prevention_available":true},"original_install_date_epoch":1553640690,"original_install_date_epoch_utc":1553615490,"system_boot_time_epoch":1617110039,"system_boot_time_epoch_utc":1617084839} jc-1.17.3/tests/fixtures/windows/windows-10/systeminfo-hyperv-utc.out000066400000000000000000000101151415226333200256500ustar00rootroot00000000000000 Host Name: TESTLAPTOP OS Name: Microsoft Windows 10 Enterprise OS Version: 10.0.17134 N/A Build 17134 OS Manufacturer: Microsoft Corporation OS Configuration: Member Workstation OS Build Type: Multiprocessor Free Registered Owner: Test, Inc. Registered Organization: Test, Inc. Product ID: 11111-11111-11111-AA111 Original Install Date: 3/26/2019, 3:51:30 PM System Boot Time: 3/30/2021, 6:13:59 AM System Manufacturer: Dell Inc. System Model: Precision 5530 System Type: x64-based PC Processor(s): 1 Processor(s) Installed. [01]: Intel64 Family 6 Model 158 Stepping 10 GenuineIntel ~2592 Mhz BIOS Version: Dell Inc. 1.16.2, 4/21/2020 Windows Directory: C:\WINDOWS System Directory: C:\WINDOWS\system32 Boot Device: \Device\HarddiskVolume2 System Locale: en-us;English (United States) Input Locale: en-us;English (United States) Time Zone: (UTC+00:00) UTC Total Physical Memory: 32,503 MB Available Physical Memory: 19,743 MB Virtual Memory: Max Size: 37,367 MB Virtual Memory: Available: 22,266 MB Virtual Memory: In Use: 15,101 MB Page File Location(s): C:\pagefile.sys Domain: test.com Logon Server: \\TESTDC01 Hotfix(s): 11 Hotfix(s) Installed. [01]: KB2693643 [02]: KB4601054 [03]: KB4230204 [04]: KB4346084 [05]: KB4485449 [06]: KB4486153 [07]: KB4509094 [08]: KB4535680 [09]: KB4580325 [10]: KB4580398 [11]: KB4534293 Network Card(s): 6 NIC(s) Installed. [01]: Intel(R) Wireless-AC 9260 160MHz Connection Name: Wi-Fi DHCP Enabled: Yes DHCP Server: 192.168.2.1 IP address(es) [01]: 192.168.2.219 [02]: Bluetooth Device (Personal Area Network) Connection Name: Bluetooth Network Connection Status: Media disconnected [03]: Microsoft KM-TEST Loopback Adapter Connection Name: Npcap Loopback Adapter DHCP Enabled: Yes DHCP Server: 255.255.255.255 IP address(es) [01]: 169.254.161.245 [04]: Cisco AnyConnect Secure Mobility Client Virtual Miniport Adapter for Windows x64 Connection Name: Ethernet 5 Status: Hardware not present [05]: Hyper-V Virtual Ethernet Adapter Connection Name: vEthernet (InternalVM) DHCP Enabled: No IP address(es) [01]: 172.16.32.1 [06]: Hyper-V Virtual Ethernet Adapter Connection Name: vEthernet (Default Switch) 2 DHCP Enabled: Yes DHCP Server: 255.255.255.255 IP address(es) [01]: 172.26.251.65 Hyper-V Requirements: VM Monitor Mode Extensions: Yes Virtualization Enabled In Firmware: Yes Second Level Address Translation: No Data Execution Prevention Available: Yes jc-1.17.3/tests/fixtures/windows/windows-10/systeminfo-hyperv.json000066400000000000000000000053621415226333200252310ustar00rootroot00000000000000{"host_name":"TESTLAPTOP","os_name":"Microsoft Windows 10 Enterprise","os_version":"10.0.17134 N/A Build 17134","os_manufacturer":"Microsoft Corporation","os_configuration":"Member Workstation","os_build_type":"Multiprocessor Free","registered_owner":"Test, Inc.","registered_organization":"Test, Inc.","product_id":"11111-11111-11111-AA111","original_install_date":"3/26/2019, 3:51:30 PM","system_boot_time":"3/30/2021, 6:13:59 AM","system_manufacturer":"Dell Inc.","system_model":"Precision 5530","system_type":"x64-based PC","processors":["Intel64 Family 6 Model 158 Stepping 10 GenuineIntel ~2592 Mhz"],"bios_version":"Dell Inc. 1.16.2, 4/21/2020","windows_directory":"C:\\WINDOWS","system_directory":"C:\\WINDOWS\\system32","boot_device":"\\Device\\HarddiskVolume2","system_locale":"en-us;English (United States)","input_locale":"en-us;English (United States)","time_zone":"(UTC-06:00) Central Time (US & Canada)","total_physical_memory_mb":32503,"available_physical_memory_mb":19743,"virtual_memory_max_size_mb":37367,"virtual_memory_available_mb":22266,"virtual_memory_in_use_mb":15101,"page_file_locations":"C:\\pagefile.sys","domain":"test.com","logon_server":"\\\\TESTDC01","hotfixs":["KB2693643","KB4601054","KB4230204","KB4346084","KB4485449","KB4486153","KB4509094","KB4535680","KB4580325","KB4580398","KB4534293"],"network_cards":[{"name":"Intel(R) Wireless-AC 9260 160MHz","connection_name":"Wi-Fi","status":null,"dhcp_enabled":true,"dhcp_server":"192.168.2.1","ip_addresses":["192.168.2.219"]},{"name":"Bluetooth Device (Personal Area Network)","connection_name":"Bluetooth Network Connection","status":"Media disconnected","dhcp_enabled":false,"dhcp_server":null,"ip_addresses":[]},{"name":"Microsoft KM-TEST Loopback Adapter","connection_name":"Npcap Loopback Adapter","status":null,"dhcp_enabled":true,"dhcp_server":"255.255.255.255","ip_addresses":["169.254.161.245"]},{"name":"Cisco AnyConnect Secure Mobility Client Virtual Miniport Adapter for Windows x64","connection_name":"Ethernet 5","status":"Hardware not present","dhcp_enabled":false,"dhcp_server":null,"ip_addresses":[]},{"name":"Hyper-V Virtual Ethernet Adapter","connection_name":"vEthernet (InternalVM)","status":null,"dhcp_enabled":false,"dhcp_server":null,"ip_addresses":["172.16.32.1"]},{"name":"Hyper-V Virtual Ethernet Adapter","connection_name":"vEthernet (Default Switch) 2","status":null,"dhcp_enabled":true,"dhcp_server":"255.255.255.255","ip_addresses":["172.26.251.65"]}],"hyperv_requirements":{"vm_monitor_mode_extensions":true,"virtualization_enabled_in_firmware":true,"second_level_address_translation":false,"data_execution_prevention_available":true},"original_install_date_epoch":1553640690,"original_install_date_epoch_utc":null,"system_boot_time_epoch":1617110039,"system_boot_time_epoch_utc":null} jc-1.17.3/tests/fixtures/windows/windows-10/systeminfo-hyperv.out000066400000000000000000000101441415226333200250610ustar00rootroot00000000000000 Host Name: TESTLAPTOP OS Name: Microsoft Windows 10 Enterprise OS Version: 10.0.17134 N/A Build 17134 OS Manufacturer: Microsoft Corporation OS Configuration: Member Workstation OS Build Type: Multiprocessor Free Registered Owner: Test, Inc. Registered Organization: Test, Inc. Product ID: 11111-11111-11111-AA111 Original Install Date: 3/26/2019, 3:51:30 PM System Boot Time: 3/30/2021, 6:13:59 AM System Manufacturer: Dell Inc. System Model: Precision 5530 System Type: x64-based PC Processor(s): 1 Processor(s) Installed. [01]: Intel64 Family 6 Model 158 Stepping 10 GenuineIntel ~2592 Mhz BIOS Version: Dell Inc. 1.16.2, 4/21/2020 Windows Directory: C:\WINDOWS System Directory: C:\WINDOWS\system32 Boot Device: \Device\HarddiskVolume2 System Locale: en-us;English (United States) Input Locale: en-us;English (United States) Time Zone: (UTC-06:00) Central Time (US & Canada) Total Physical Memory: 32,503 MB Available Physical Memory: 19,743 MB Virtual Memory: Max Size: 37,367 MB Virtual Memory: Available: 22,266 MB Virtual Memory: In Use: 15,101 MB Page File Location(s): C:\pagefile.sys Domain: test.com Logon Server: \\TESTDC01 Hotfix(s): 11 Hotfix(s) Installed. [01]: KB2693643 [02]: KB4601054 [03]: KB4230204 [04]: KB4346084 [05]: KB4485449 [06]: KB4486153 [07]: KB4509094 [08]: KB4535680 [09]: KB4580325 [10]: KB4580398 [11]: KB4534293 Network Card(s): 6 NIC(s) Installed. [01]: Intel(R) Wireless-AC 9260 160MHz Connection Name: Wi-Fi DHCP Enabled: Yes DHCP Server: 192.168.2.1 IP address(es) [01]: 192.168.2.219 [02]: Bluetooth Device (Personal Area Network) Connection Name: Bluetooth Network Connection Status: Media disconnected [03]: Microsoft KM-TEST Loopback Adapter Connection Name: Npcap Loopback Adapter DHCP Enabled: Yes DHCP Server: 255.255.255.255 IP address(es) [01]: 169.254.161.245 [04]: Cisco AnyConnect Secure Mobility Client Virtual Miniport Adapter for Windows x64 Connection Name: Ethernet 5 Status: Hardware not present [05]: Hyper-V Virtual Ethernet Adapter Connection Name: vEthernet (InternalVM) DHCP Enabled: No IP address(es) [01]: 172.16.32.1 [06]: Hyper-V Virtual Ethernet Adapter Connection Name: vEthernet (Default Switch) 2 DHCP Enabled: Yes DHCP Server: 255.255.255.255 IP address(es) [01]: 172.26.251.65 Hyper-V Requirements: VM Monitor Mode Extensions: Yes Virtualization Enabled In Firmware: Yes Second Level Address Translation: No Data Execution Prevention Available: Yes jc-1.17.3/tests/fixtures/windows/windows-10/systeminfo.json000066400000000000000000000032361415226333200237140ustar00rootroot00000000000000{"host_name":"DESKTOP-WIN01","os_name":"Microsoft Windows 10 Enterprise","os_version":"10.0.19042 N/A Build 19042","os_manufacturer":"Microsoft Corporation","os_configuration":"Member Workstation","os_build_type":"Multiprocessor Free","registered_owner":"User","registered_organization":null,"product_id":"00111-12345-00001-AA111","original_install_date":"2/16/2021, 11:20:27 AM","system_boot_time":"3/19/2021, 9:25:03 AM","system_manufacturer":"VMware, Inc.","system_model":"VMware7,1","system_type":"x64-based PC","processors":["Intel64 Family 6 Model 158 Stepping 13 GenuineIntel ~2400 Mhz"],"bios_version":"VMware, Inc. VMW71.00V.11111111.B64.2008100111, 8/10/2020","windows_directory":"C:\\Windows","system_directory":"C:\\Windows\\system32","boot_device":"\\Device\\HarddiskVolume1","system_locale":"en-us;English (United States)","input_locale":"en-us;English (United States)","time_zone":"(UTC-08:00) Pacific Time (US & Canada)","total_physical_memory_mb":2047,"available_physical_memory_mb":1417,"virtual_memory_max_size_mb":2687,"virtual_memory_available_mb":1482,"virtual_memory_in_use_mb":1205,"page_file_locations":"C:\\pagefile.sys","domain":"TEST.local","logon_server":"\\\\WIN-AA1A1A11AAA","hotfixs":["KB4578968","KB4562830","KB4570334","KB4580325","KB4586864","KB4594440"],"network_cards":[{"name":"Intel(R) 82574L Gigabit Network Connection","connection_name":"Ethernet0","status":null,"dhcp_enabled":true,"dhcp_server":"192.168.133.250","ip_addresses":["192.168.133.3","fe80::192:eb64:1fcf:86eb"]}],"hyperv_requirements":{},"original_install_date_epoch":1613503227,"original_install_date_epoch_utc":null,"system_boot_time_epoch":1616171103,"system_boot_time_epoch_utc":null} jc-1.17.3/tests/fixtures/windows/windows-10/systeminfo.out000066400000000000000000000044741415226333200235570ustar00rootroot00000000000000Host Name: DESKTOP-WIN01 OS Name: Microsoft Windows 10 Enterprise OS Version: 10.0.19042 N/A Build 19042 OS Manufacturer: Microsoft Corporation OS Configuration: Member Workstation OS Build Type: Multiprocessor Free Registered Owner: User Registered Organization: Product ID: 00111-12345-00001-AA111 Original Install Date: 2/16/2021, 11:20:27 AM System Boot Time: 3/19/2021, 9:25:03 AM System Manufacturer: VMware, Inc. System Model: VMware7,1 System Type: x64-based PC Processor(s): 1 Processor(s) Installed. [01]: Intel64 Family 6 Model 158 Stepping 13 GenuineIntel ~2400 Mhz BIOS Version: VMware, Inc. VMW71.00V.11111111.B64.2008100111, 8/10/2020 Windows Directory: C:\Windows System Directory: C:\Windows\system32 Boot Device: \Device\HarddiskVolume1 System Locale: en-us;English (United States) Input Locale: en-us;English (United States) Time Zone: (UTC-08:00) Pacific Time (US & Canada) Total Physical Memory: 2,047 MB Available Physical Memory: 1,417 MB Virtual Memory: Max Size: 2,687 MB Virtual Memory: Available: 1,482 MB Virtual Memory: In Use: 1,205 MB Page File Location(s): C:\pagefile.sys Domain: TEST.local Logon Server: \\WIN-AA1A1A11AAA Hotfix(s): 6 Hotfix(s) Installed. [01]: KB4578968 [02]: KB4562830 [03]: KB4570334 [04]: KB4580325 [05]: KB4586864 [06]: KB4594440 Network Card(s): 1 NIC(s) Installed. [01]: Intel(R) 82574L Gigabit Network Connection Connection Name: Ethernet0 DHCP Enabled: Yes DHCP Server: 192.168.133.250 IP address(es) [01]: 192.168.133.3 [02]: fe80::192:eb64:1fcf:86eb Hyper-V Requirements: A hypervisor has been detected. Features required for Hyper-V will not be displayed. jc-1.17.3/tests/fixtures/windows/windows-2012r2/000077500000000000000000000000001415226333200212255ustar00rootroot00000000000000jc-1.17.3/tests/fixtures/windows/windows-2012r2/systeminfo.json000066400000000000000000000031631415226333200243230ustar00rootroot00000000000000{"host_name":"WIN-1A1A1AA11AA","os_name":"Microsoft Windows Server 2012 R2 Standard","os_version":"6.3.9600 N/A Build 9600","os_manufacturer":"Microsoft Corporation","os_configuration":"Standalone Server","os_build_type":"Multiprocessor Free","registered_owner":"Windows User","registered_organization":null,"product_id":"11111-11111-11111-AA111","original_install_date":"12/13/2018, 1:15:48 AM","system_boot_time":"3/28/2021, 2:34:44 PM","system_manufacturer":"Microsoft Corporation","system_model":"Virtual Machine","system_type":"x64-based PC","processors":["Intel64 Family 6 Model 158 Stepping 10 GenuineIntel ~2592 Mhz"],"bios_version":"Microsoft Corporation Hyper-V UEFI Release v3.0, 3/2/2018","windows_directory":"C:\\Windows","system_directory":"C:\\Windows\\system32","boot_device":"\\Device\\HarddiskVolume2","system_locale":"en-us;English (United States)","input_locale":"en-us;English (United States)","time_zone":"(UTC+03:00) Kuwait, Riyadh","total_physical_memory_mb":3555,"available_physical_memory_mb":771,"virtual_memory_max_size_mb":5731,"virtual_memory_available_mb":2751,"virtual_memory_in_use_mb":2980,"page_file_locations":"C:\\pagefile.sys","domain":"WORKGROUP","logon_server":"\\\\WIN-1A1A1AA11AA","hotfixs":["KB2919355","KB2975061","KB2999226","KB3151864","KB4054566"],"network_cards":[{"name":"Microsoft Hyper-V Network Adapter","connection_name":"Ethernet 2","status":null,"dhcp_enabled":false,"dhcp_server":null,"ip_addresses":["172.16.32.10"]}],"hyperv_requirements":{},"original_install_date_epoch":1544692548,"original_install_date_epoch_utc":null,"system_boot_time_epoch":1616967284,"system_boot_time_epoch_utc":null} jc-1.17.3/tests/fixtures/windows/windows-2012r2/systeminfo.out000066400000000000000000000043051415226333200241600ustar00rootroot00000000000000 Host Name: WIN-1A1A1AA11AA OS Name: Microsoft Windows Server 2012 R2 Standard OS Version: 6.3.9600 N/A Build 9600 OS Manufacturer: Microsoft Corporation OS Configuration: Standalone Server OS Build Type: Multiprocessor Free Registered Owner: Windows User Registered Organization: Product ID: 11111-11111-11111-AA111 Original Install Date: 12/13/2018, 1:15:48 AM System Boot Time: 3/28/2021, 2:34:44 PM System Manufacturer: Microsoft Corporation System Model: Virtual Machine System Type: x64-based PC Processor(s): 1 Processor(s) Installed. [01]: Intel64 Family 6 Model 158 Stepping 10 GenuineIntel ~2592 Mhz BIOS Version: Microsoft Corporation Hyper-V UEFI Release v3.0, 3/2/2018 Windows Directory: C:\Windows System Directory: C:\Windows\system32 Boot Device: \Device\HarddiskVolume2 System Locale: en-us;English (United States) Input Locale: en-us;English (United States) Time Zone: (UTC+03:00) Kuwait, Riyadh Total Physical Memory: 3,555 MB Available Physical Memory: 771 MB Virtual Memory: Max Size: 5,731 MB Virtual Memory: Available: 2,751 MB Virtual Memory: In Use: 2,980 MB Page File Location(s): C:\pagefile.sys Domain: WORKGROUP Logon Server: \\WIN-1A1A1AA11AA Hotfix(s): 5 Hotfix(s) Installed. [01]: KB2919355 [02]: KB2975061 [03]: KB2999226 [04]: KB3151864 [05]: KB4054566 Network Card(s): 1 NIC(s) Installed. [01]: Microsoft Hyper-V Network Adapter Connection Name: Ethernet 2 DHCP Enabled: No IP address(es) [01]: 172.16.32.10 Hyper-V Requirements: A hypervisor has been detected. Features required for Hyper-V will not be displayed. jc-1.17.3/tests/fixtures/windows/windows-7/000077500000000000000000000000001415226333200205435ustar00rootroot00000000000000jc-1.17.3/tests/fixtures/windows/windows-7/systeminfo.json000066400000000000000000000121611415226333200236370ustar00rootroot00000000000000{"host_name":"TEST","os_name":"Microsoft Windows 7 Professional","os_version":"6.1.7601 Service Pack 1 Build 7601","os_manufacturer":"Microsoft Corporation","os_configuration":"Standalone Workstation","os_build_type":"Multiprocessor Free","registered_owner":"jdoe","registered_organization":null,"product_id":"00000-111-1111111-11111","original_install_date":"01/01/2015, 12:00:00 PM","system_boot_time":"3/22/2021, 1:15:51 PM","system_manufacturer":"LENOVO","system_model":"11111AA","system_type":"x64-based PC","processors":["Intel64 Family 6 Model 42 Stepping 7 GenuineIntel ~2501 Mhz"],"bios_version":"LENOVO 83ET67WW (1.37 ), 11/28/2011","windows_directory":"C:\\Windows","system_directory":"C:\\Windows\\system32","boot_device":"\\Device\\HarddiskVolume1","system_locale":"en-us;English (United States)","input_locale":"en-us;English (United States)","time_zone":"(UTC-06:00) Central Time (US & Canada)","total_physical_memory_mb":8075,"available_physical_memory_mb":1620,"virtual_memory_max_size_mb":16149,"virtual_memory_available_mb":6468,"virtual_memory_in_use_mb":9681,"page_file_locations":"C:\\pagefile.sys","domain":"WORKGROUP","logon_server":"\\\\TEST","hotfixs":["KB2849697","KB2849696","KB2841134","KB2670838","KB2830477","KB2592687","KB971033","KB2479943","KB2491683","KB2506014","KB2506212","KB2506928","KB2509553","KB2511455","KB2515325","KB2532531","KB2533552","KB2533623","KB2534366","KB2536275","KB2536276","KB2544893","KB2545698","KB2547666","KB2552343","KB2560656","KB2562937","KB2563227","KB2564958","KB2570947","KB2574819","KB2579686","KB2585542","KB2603229","KB2604115","KB2619339","KB2620704","KB2621440","KB2631813","KB2639308","KB2640148","KB2647753","KB2653956","KB2654428","KB2656356","KB2660075","KB2667402","KB2676562","KB2685811","KB2685813","KB2685939","KB2690533","KB2698365","KB2705219","KB2706045","KB2709630","KB2712808","KB2718704","KB2719857","KB2726535","KB2727528","KB2729094","KB2729452","KB2731771","KB2732059","KB2732487","KB2732500","KB2736422","KB2742599","KB2750841","KB2758857","KB2761217","KB2763523","KB2770660","KB2773072","KB2786081","KB2789645","KB2791765","KB2798162","KB2799926","KB2800095","KB2803821","KB2807986","KB2808679","KB2813347","KB2813430","KB2820331","KB2832414","KB2834140","KB2836942","KB2836943","KB2839894","KB2840149","KB2840631","KB2843630","KB2846960","KB2847077","KB2847311","KB2847927","KB2852386","KB2853952","KB2855844","KB2857650","KB2861191","KB2861698","KB2862152","KB2862330","KB2862335","KB2862966","KB2862973","KB2864058","KB2864202","KB2868038","KB2868116","KB2868626","KB2871997","KB2872339","KB2882822","KB2884256","KB2887069","KB2888049","KB2891804","KB2892074","KB2893294","KB2893519","KB2894844","KB2900986","KB2908783","KB2911501","KB2912390","KB2913152","KB2918077","KB2918614","KB2919469","KB2922229","KB2923545","KB2926765","KB2928562","KB2929733","KB2931356","KB2937610","KB2939576","KB2943357","KB2952664","KB2957189","KB2957503","KB2957509","KB2961072","KB2965788","KB2966583","KB2968294","KB2970228","KB2971850","KB2972100","KB2972211","KB2972280","KB2973112","KB2973201","KB2973351","KB2976627","KB2976897","KB2977292","KB2977728","KB2978092","KB2978120","KB2978668","KB2978742","KB2979570","KB2980245","KB2984972","KB2984976","KB2984981","KB2985461","KB2991963","KB2992611","KB2993651","KB2993958","KB2994023","KB2999226","KB3001554","KB3002885","KB3003057","KB3003743","KB3004361","KB3004375","KB3005607","KB3006121","KB3006226","KB3006625","KB3008627","KB3008923","KB3009736","KB3010788","KB3011780","KB3012176","KB3013126","KB3013410","KB3014406","KB3019215","KB3020369","KB3020388","KB3021674","KB3022777","KB3023215","KB3025390","KB3030377","KB3031432","KB3032655","KB3033889","KB3033890","KB3033929","KB3035126","KB3035132","KB3037574","KB3042058","KB3042553","KB3045685","KB3046017","KB3046269","KB3055642","KB3059317","KB3060716","KB3061518","KB3067903","KB3069114","KB3069392","KB3069762","KB3071756","KB3072305","KB3072630","KB3072633","KB3074543","KB3075226","KB3076895","KB3076949","KB3077715","KB3078601","KB3080446","KB3081320","KB3083710","KB3084135","KB3086255","KB3087039","KB3087918","KB3088195"],"network_cards":[{"name":"Bluetooth Device (Personal Area Network)","connection_name":"Bluetooth Network Connection","status":"Media disconnected","dhcp_enabled":false,"dhcp_server":null,"ip_addresses":[]},{"name":"Intel(R) 82579LM Gigabit Network Connection","connection_name":"Local Area Connection","status":"Media disconnected","dhcp_enabled":false,"dhcp_server":null,"ip_addresses":[]},{"name":"Intel(R) Centrino(R) Advanced-N 6205","connection_name":"Wireless Network Connection","status":null,"dhcp_enabled":true,"dhcp_server":"192.168.2.1","ip_addresses":["192.168.2.2"]},{"name":"Microsoft Virtual WiFi Miniport Adapter","connection_name":"Wireless Network Connection 2","status":"Hardware not present","dhcp_enabled":false,"dhcp_server":null,"ip_addresses":[]},{"name":"Microsoft Virtual WiFi Miniport Adapter","connection_name":"Wireless Network Connection 3","status":"Hardware not present","dhcp_enabled":false,"dhcp_server":null,"ip_addresses":[]}],"original_install_date_epoch":1420142400,"original_install_date_epoch_utc":null,"system_boot_time_epoch":1616444151,"system_boot_time_epoch_utc":null} jc-1.17.3/tests/fixtures/windows/windows-7/systeminfo.out000066400000000000000000000327531415226333200235060ustar00rootroot00000000000000 Host Name: TEST OS Name: Microsoft Windows 7 Professional OS Version: 6.1.7601 Service Pack 1 Build 7601 OS Manufacturer: Microsoft Corporation OS Configuration: Standalone Workstation OS Build Type: Multiprocessor Free Registered Owner: jdoe Registered Organization: Product ID: 00000-111-1111111-11111 Original Install Date: 01/01/2015, 12:00:00 PM System Boot Time: 3/22/2021, 1:15:51 PM System Manufacturer: LENOVO System Model: 11111AA System Type: x64-based PC Processor(s): 1 Processor(s) Installed. [01]: Intel64 Family 6 Model 42 Stepping 7 GenuineIntel ~2501 Mhz BIOS Version: LENOVO 83ET67WW (1.37 ), 11/28/2011 Windows Directory: C:\Windows System Directory: C:\Windows\system32 Boot Device: \Device\HarddiskVolume1 System Locale: en-us;English (United States) Input Locale: en-us;English (United States) Time Zone: (UTC-06:00) Central Time (US & Canada) Total Physical Memory: 8,075 MB Available Physical Memory: 1,620 MB Virtual Memory: Max Size: 16,149 MB Virtual Memory: Available: 6,468 MB Virtual Memory: In Use: 9,681 MB Page File Location(s): C:\pagefile.sys Domain: WORKGROUP Logon Server: \\TEST Hotfix(s): 302 Hotfix(s) Installed. [01]: KB2849697 [02]: KB2849696 [03]: KB2841134 [04]: KB2670838 [05]: KB2830477 [06]: KB2592687 [07]: KB971033 [08]: KB2479943 [09]: KB2491683 [10]: KB2506014 [11]: KB2506212 [12]: KB2506928 [13]: KB2509553 [14]: KB2511455 [15]: KB2515325 [16]: KB2532531 [17]: KB2533552 [18]: KB2533623 [19]: KB2534366 [20]: KB2536275 [21]: KB2536276 [22]: KB2544893 [23]: KB2545698 [24]: KB2547666 [25]: KB2552343 [26]: KB2560656 [27]: KB2562937 [28]: KB2563227 [29]: KB2564958 [30]: KB2570947 [31]: KB2574819 [32]: KB2579686 [33]: KB2585542 [34]: KB2603229 [35]: KB2604115 [36]: KB2619339 [37]: KB2620704 [38]: KB2621440 [39]: KB2631813 [40]: KB2639308 [41]: KB2640148 [42]: KB2647753 [43]: KB2653956 [44]: KB2654428 [45]: KB2656356 [46]: KB2660075 [47]: KB2667402 [48]: KB2676562 [49]: KB2685811 [50]: KB2685813 [51]: KB2685939 [52]: KB2690533 [53]: KB2698365 [54]: KB2705219 [55]: KB2706045 [56]: KB2709630 [57]: KB2712808 [58]: KB2718704 [59]: KB2719857 [60]: KB2726535 [61]: KB2727528 [62]: KB2729094 [63]: KB2729452 [64]: KB2731771 [65]: KB2732059 [66]: KB2732487 [67]: KB2732500 [68]: KB2736422 [69]: KB2742599 [70]: KB2750841 [71]: KB2758857 [72]: KB2761217 [73]: KB2763523 [74]: KB2770660 [75]: KB2773072 [76]: KB2786081 [77]: KB2789645 [78]: KB2791765 [79]: KB2798162 [80]: KB2799926 [81]: KB2800095 [82]: KB2803821 [83]: KB2807986 [84]: KB2808679 [85]: KB2813347 [86]: KB2813430 [87]: KB2820331 [88]: KB2832414 [89]: KB2834140 [90]: KB2836942 [91]: KB2836943 [92]: KB2839894 [93]: KB2840149 [94]: KB2840631 [95]: KB2843630 [96]: KB2846960 [97]: KB2847077 [98]: KB2847311 [99]: KB2847927 [100]: KB2852386 [101]: KB2853952 [102]: KB2855844 [103]: KB2857650 [104]: KB2861191 [105]: KB2861698 [106]: KB2862152 [107]: KB2862330 [108]: KB2862335 [109]: KB2862966 [110]: KB2862973 [111]: KB2864058 [112]: KB2864202 [113]: KB2868038 [114]: KB2868116 [115]: KB2868626 [116]: KB2871997 [117]: KB2872339 [118]: KB2882822 [119]: KB2884256 [120]: KB2887069 [121]: KB2888049 [122]: KB2891804 [123]: KB2892074 [124]: KB2893294 [125]: KB2893519 [126]: KB2894844 [127]: KB2900986 [128]: KB2908783 [129]: KB2911501 [130]: KB2912390 [131]: KB2913152 [132]: KB2918077 [133]: KB2918614 [134]: KB2919469 [135]: KB2922229 [136]: KB2923545 [137]: KB2926765 [138]: KB2928562 [139]: KB2929733 [140]: KB2931356 [141]: KB2937610 [142]: KB2939576 [143]: KB2943357 [144]: KB2952664 [145]: KB2957189 [146]: KB2957503 [147]: KB2957509 [148]: KB2961072 [149]: KB2965788 [150]: KB2966583 [151]: KB2968294 [152]: KB2970228 [153]: KB2971850 [154]: KB2972100 [155]: KB2972211 [156]: KB2972280 [157]: KB2973112 [158]: KB2973201 [159]: KB2973351 [160]: KB2976627 [161]: KB2976897 [162]: KB2977292 [163]: KB2977728 [164]: KB2978092 [165]: KB2978120 [166]: KB2978668 [167]: KB2978742 [168]: KB2979570 [169]: KB2980245 [170]: KB2984972 [171]: KB2984976 [172]: KB2984981 [173]: KB2985461 [174]: KB2991963 [175]: KB2992611 [176]: KB2993651 [177]: KB2993958 [178]: KB2994023 [179]: KB2999226 [180]: KB3001554 [181]: KB3002885 [182]: KB3003057 [183]: KB3003743 [184]: KB3004361 [185]: KB3004375 [186]: KB3005607 [187]: KB3006121 [188]: KB3006226 [189]: KB3006625 [190]: KB3008627 [191]: KB3008923 [192]: KB3009736 [193]: KB3010788 [194]: KB3011780 [195]: KB3012176 [196]: KB3013126 [197]: KB3013410 [198]: KB3014406 [199]: KB3019215 [200]: KB3020369 [201]: KB3020388 [202]: KB3021674 [203]: KB3022777 [204]: KB3023215 [205]: KB3025390 [206]: KB3030377 [207]: KB3031432 [208]: KB3032655 [209]: KB3033889 [210]: KB3033890 [211]: KB3033929 [212]: KB3035126 [213]: KB3035132 [214]: KB3037574 [215]: KB3042058 [216]: KB3042553 [217]: KB3045685 [218]: KB3046017 [219]: KB3046269 [220]: KB3055642 [221]: KB3059317 [222]: KB3060716 [223]: KB3061518 [224]: KB3067903 [225]: KB3069114 [226]: KB3069392 [227]: KB3069762 [228]: KB3071756 [229]: KB3072305 [230]: KB3072630 [231]: KB3072633 [232]: KB3074543 [233]: KB3075226 [234]: KB3076895 [235]: KB3076949 [236]: KB3077715 [237]: KB3078601 [238]: KB3080446 [239]: KB3081320 [240]: KB3083710 [241]: KB3084135 [242]: KB3086255 [243]: KB3087039 [244]: KB3087918 [245]: KB3088195 [246] Network Card(s): 5 NIC(s) Installed. [01]: Bluetooth Device (Personal Area Network) Connection Name: Bluetooth Network Connection Status: Media disconnected [02]: Intel(R) 82579LM Gigabit Network Connection Connection Name: Local Area Connection Status: Media disconnected [03]: Intel(R) Centrino(R) Advanced-N 6205 Connection Name: Wireless Network Connection DHCP Enabled: Yes DHCP Server: 192.168.2.1 IP address(es) [01]: 192.168.2.2 [04]: Microsoft Virtual WiFi Miniport Adapter Connection Name: Wireless Network Connection 2 Status: Hardware not present [05]: Microsoft Virtual WiFi Miniport Adapter Connection Name: Wireless Network Connection 3 Status: Hardware not present jc-1.17.3/tests/test_acpi.py000066400000000000000000000062071415226333200156740ustar00rootroot00000000000000import os import unittest import json import jc.parsers.acpi THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/acpi-V.out'), 'r', encoding='utf-8') as f: self.generic_acpi_V = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/acpi-V2.out'), 'r', encoding='utf-8') as f: self.generic_acpi_V2 = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/acpi-V3.out'), 'r', encoding='utf-8') as f: self.generic_acpi_V3 = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/acpi-V4.out'), 'r', encoding='utf-8') as f: self.generic_acpi_V4 = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/acpi-V.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_04_acpi_V = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/acpi-V.json'), 'r', encoding='utf-8') as f: self.generic_acpi_V_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/acpi-V2.json'), 'r', encoding='utf-8') as f: self.generic_acpi_V2_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/acpi-V3.json'), 'r', encoding='utf-8') as f: self.generic_acpi_V3_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/acpi-V4.json'), 'r', encoding='utf-8') as f: self.generic_acpi_V4_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/acpi-V.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_04_acpi_V_json = json.loads(f.read()) def test_acpi_nodata(self): """ Test 'acpi' with no data """ self.assertEqual(jc.parsers.acpi.parse('', quiet=True), []) def test_acpi_V_all(self): """ Test 'acpi -V' with all known options """ self.assertEqual(jc.parsers.acpi.parse(self.generic_acpi_V, quiet=True), self.generic_acpi_V_json) def test_acpi_V2(self): """ Test 'acpi -V' from internet sample """ self.assertEqual(jc.parsers.acpi.parse(self.generic_acpi_V2, quiet=True), self.generic_acpi_V2_json) def test_acpi_V3(self): """ Test 'acpi -V' from internet sample """ self.assertEqual(jc.parsers.acpi.parse(self.generic_acpi_V3, quiet=True), self.generic_acpi_V3_json) def test_acpi_V4(self): """ Test 'acpi -V' from internet sample """ self.assertEqual(jc.parsers.acpi.parse(self.generic_acpi_V4, quiet=True), self.generic_acpi_V4_json) def test_acpi_V_ubuntu(self): """ Test 'acpi -V' on Ubuntu 18.04 """ self.assertEqual(jc.parsers.acpi.parse(self.ubuntu_18_04_acpi_V, quiet=True), self.ubuntu_18_04_acpi_V_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_airport.py000066400000000000000000000020121415226333200164260ustar00rootroot00000000000000import os import unittest import json import jc.parsers.airport THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/airport-I.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_airport_I = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/airport-I.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_airport_I_json = json.loads(f.read()) def test_airport_I_nodata(self): """ Test 'airport -I' with no data """ self.assertEqual(jc.parsers.airport.parse('', quiet=True), {}) def test_airport_I_osx_10_14_6(self): """ Test 'airport -I' on OSX 10.14.6 """ self.assertEqual(jc.parsers.airport.parse(self.osx_10_14_6_airport_I, quiet=True), self.osx_10_14_6_airport_I_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_airport_s.py000066400000000000000000000020201415226333200167470ustar00rootroot00000000000000import os import unittest import json import jc.parsers.airport_s THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/airport-s.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_airport_s = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/airport-s.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_airport_s_json = json.loads(f.read()) def test_airport_s_nodata(self): """ Test 'airport -s' with no data """ self.assertEqual(jc.parsers.airport_s.parse('', quiet=True), []) def test_airport_s_osx_10_14_6(self): """ Test 'airport -s' on OSX 10.14.6 """ self.assertEqual(jc.parsers.airport_s.parse(self.osx_10_14_6_airport_s, quiet=True), self.osx_10_14_6_airport_s_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_arp.py000066400000000000000000000136451415226333200155460ustar00rootroot00000000000000import os import unittest import json import jc.parsers.arp THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/arp.out'), 'r', encoding='utf-8') as f: self.centos_7_7_arp = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/arp.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_arp = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/arp-a.out'), 'r', encoding='utf-8') as f: self.centos_7_7_arp_a = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/arp-a.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_arp_a = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/arp-v.out'), 'r', encoding='utf-8') as f: self.centos_7_7_arp_v = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/arp-v.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_arp_v = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/arp-a.out'), 'r', encoding='utf-8') as f: self.osx_10_11_6_arp_a = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/arp-a.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_arp_a = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/arp-a2.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_arp_a2 = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/arp-a.out'), 'r', encoding='utf-8') as f: self.freebsd_arp_a = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/arp.json'), 'r', encoding='utf-8') as f: self.centos_7_7_arp_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/arp.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_arp_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/arp-a.json'), 'r', encoding='utf-8') as f: self.centos_7_7_arp_a_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/arp-a.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_arp_a_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/arp-v.json'), 'r', encoding='utf-8') as f: self.centos_7_7_arp_v_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/arp-v.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_arp_v_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/arp-a.json'), 'r', encoding='utf-8') as f: self.osx_10_11_6_arp_a_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/arp-a.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_arp_a_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/arp-a2.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_arp_a2_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/arp-a.json'), 'r', encoding='utf-8') as f: self.freebsd12_arp_a_json = json.loads(f.read()) def test_arp_nodata(self): """ Test 'arp' with no data """ self.assertEqual(jc.parsers.arp.parse('', quiet=True), []) def test_arp_centos_7_7(self): """ Test 'arp' on Centos 7.7 """ self.assertEqual(jc.parsers.arp.parse(self.centos_7_7_arp, quiet=True), self.centos_7_7_arp_json) def test_arp_ubuntu_18_4(self): """ Test 'arp' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.arp.parse(self.ubuntu_18_4_arp, quiet=True), self.ubuntu_18_4_arp_json) def test_arp_a_centos_7_7(self): """ Test 'arp -a' on Centos 7.7 """ self.assertEqual(jc.parsers.arp.parse(self.centos_7_7_arp_a, quiet=True), self.centos_7_7_arp_a_json) def test_arp_a_ubuntu_18_4(self): """ Test 'arp -a' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.arp.parse(self.ubuntu_18_4_arp_a, quiet=True), self.ubuntu_18_4_arp_a_json) def test_arp_v_centos_7_7(self): """ Test 'arp -v' on Centos 7.7 """ self.assertEqual(jc.parsers.arp.parse(self.centos_7_7_arp_v, quiet=True), self.centos_7_7_arp_v_json) def test_arp_v_ubuntu_18_4(self): """ Test 'arp -v' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.arp.parse(self.ubuntu_18_4_arp_v, quiet=True), self.ubuntu_18_4_arp_v_json) def test_arp_a_osx_10_11_6(self): """ Test 'arp -a' on OSX 10.11.6 """ self.assertEqual(jc.parsers.arp.parse(self.osx_10_11_6_arp_a, quiet=True), self.osx_10_11_6_arp_a_json) def test_arp_a_osx_10_14_6(self): """ Test 'arp -a' on OSX 10.14.6 """ self.assertEqual(jc.parsers.arp.parse(self.osx_10_14_6_arp_a, quiet=True), self.osx_10_14_6_arp_a_json) def test_arp_a2_osx_10_14_6(self): """ Test 'arp -a' with entries with no ifscope on OSX 10.14.6 """ self.assertEqual(jc.parsers.arp.parse(self.osx_10_14_6_arp_a2, quiet=True), self.osx_10_14_6_arp_a2_json) def test_arp_a_freebsd12(self): """ Test 'arp -a' on FreeBSD12 """ self.assertEqual(jc.parsers.arp.parse(self.freebsd_arp_a, quiet=True), self.freebsd12_arp_a_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_blkid.py000066400000000000000000000151371415226333200160470ustar00rootroot00000000000000import os import unittest import json import jc.parsers.blkid THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/blkid.out'), 'r', encoding='utf-8') as f: self.centos_7_7_blkid = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/blkid.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_blkid = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/blkid-sda2.out'), 'r', encoding='utf-8') as f: self.centos_7_7_blkid_sda2 = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/blkid-sda2.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_blkid_sda2 = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/blkid-ip-udev.out'), 'r', encoding='utf-8') as f: self.centos_7_7_blkid_ip_udev = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/blkid-ip-udev.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_blkid_ip_udev = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/blkid-ip-multi.out'), 'r', encoding='utf-8') as f: self.centos_7_7_blkid_ip_multi = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/blkid-ip-multi.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_blkid_ip_multi = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/blkid-ip-udev-multi.out'), 'r', encoding='utf-8') as f: self.centos_7_7_blkid_ip_udev_multi = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/blkid-ip-udev-multi.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_blkid_ip_udev_multi = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/blkid.json'), 'r', encoding='utf-8') as f: self.centos_7_7_blkid_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/blkid.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_blkid_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/blkid-sda2.json'), 'r', encoding='utf-8') as f: self.centos_7_7_blkid_sda2_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/blkid-sda2.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_blkid_sda2_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/blkid-ip-udev.json'), 'r', encoding='utf-8') as f: self.centos_7_7_blkid_ip_udev_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/blkid-ip-udev.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_blkid_ip_udev_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/blkid-ip-multi.json'), 'r', encoding='utf-8') as f: self.centos_7_7_blkid_ip_multi_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/blkid-ip-multi.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_blkid_ip_multi_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/blkid-ip-udev-multi.json'), 'r', encoding='utf-8') as f: self.centos_7_7_blkid_ip_udev_multi_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/blkid-ip-udev-multi.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_blkid_ip_udev_multi_json = json.loads(f.read()) def test_blkid_nodata(self): """ Test 'blkid' with no data """ self.assertEqual(jc.parsers.blkid.parse('', quiet=True), []) def test_blkid_centos_7_7(self): """ Test 'blkid' on Centos 7.7 """ self.assertEqual(jc.parsers.blkid.parse(self.centos_7_7_blkid, quiet=True), self.centos_7_7_blkid_json) def test_blkid_ubuntu_18_4(self): """ Test 'blkid' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.blkid.parse(self.ubuntu_18_4_blkid, quiet=True), self.ubuntu_18_4_blkid_json) def test_blkid_sda2_centos_7_7(self): """ Test 'blkid /dev/sda2' on Centos 7.7 """ self.assertEqual(jc.parsers.blkid.parse(self.centos_7_7_blkid_sda2, quiet=True), self.centos_7_7_blkid_sda2_json) def test_blkid_sda2_ubuntu_18_4(self): """ Test 'blkid /dev/sda2' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.blkid.parse(self.ubuntu_18_4_blkid_sda2, quiet=True), self.ubuntu_18_4_blkid_sda2_json) def test_blkid_ip_udev_centos_7_7(self): """ Test 'blkid -ip -o udev /dev/sda2' on Centos 7.7 """ self.assertEqual(jc.parsers.blkid.parse(self.centos_7_7_blkid_ip_udev, quiet=True), self.centos_7_7_blkid_ip_udev_json) def test_blkid_ip_udev_ubuntu_18_4(self): """ Test 'blkid -ip -o udev /dev/sda2' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.blkid.parse(self.ubuntu_18_4_blkid_sda2, quiet=True), self.ubuntu_18_4_blkid_sda2_json) def test_blkid_ip_multi_centos_7_7(self): """ Test 'blkid -ip /dev/sda1 /dev/sda2' on Centos 7.7 """ self.assertEqual(jc.parsers.blkid.parse(self.centos_7_7_blkid_ip_multi, quiet=True), self.centos_7_7_blkid_ip_multi_json) def test_blkid_ip_multi_ubuntu_18_4(self): """ Test 'blkid -ip /dev/sda1 /dev/sda2' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.blkid.parse(self.ubuntu_18_4_blkid_ip_multi, quiet=True), self.ubuntu_18_4_blkid_ip_multi_json) def test_blkid_ip_udev_multi_centos_7_7(self): """ Test 'blkid -ip -o udev /dev/sda1 /dev/sda2' on Centos 7.7 """ self.assertEqual(jc.parsers.blkid.parse(self.centos_7_7_blkid_ip_udev_multi, quiet=True), self.centos_7_7_blkid_ip_udev_multi_json) def test_blkid_ip_udev_multi_ubuntu_18_4(self): """ Test 'blkid -ip -o udev /dev/sda1 /dev/sda2' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.blkid.parse(self.ubuntu_18_4_blkid_ip_udev_multi, quiet=True), self.ubuntu_18_4_blkid_ip_udev_multi_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_cksum.py000066400000000000000000000051341415226333200161000ustar00rootroot00000000000000import os import unittest import json import jc.parsers.cksum THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/cksum.out'), 'r', encoding='utf-8') as f: self.centos_7_7_cksum = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/sum.out'), 'r', encoding='utf-8') as f: self.centos_7_7_sum = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/cksum.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_cksum = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/sum.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_sum = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/cksum.json'), 'r', encoding='utf-8') as f: self.centos_7_7_cksum_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/sum.json'), 'r', encoding='utf-8') as f: self.centos_7_7_sum_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/cksum.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_cksum_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/sum.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_sum_json = json.loads(f.read()) def test_cksum_nodata(self): """ Test 'cksum' parser with no data """ self.assertEqual(jc.parsers.cksum.parse('', quiet=True), []) def test_cksum_centos_7_7(self): """ Test 'cksum' on Centos 7.7 """ self.assertEqual(jc.parsers.cksum.parse(self.centos_7_7_cksum, quiet=True), self.centos_7_7_cksum_json) def test_sum_centos_7_7(self): """ Test 'sum' on Centos 7.7 """ self.assertEqual(jc.parsers.cksum.parse(self.centos_7_7_sum, quiet=True), self.centos_7_7_sum_json) def test_cksum_osx_10_14_6(self): """ Test 'cksum' on OSX 10.14.6 """ self.assertEqual(jc.parsers.cksum.parse(self.osx_10_14_6_cksum, quiet=True), self.osx_10_14_6_cksum_json) def test_sum_osx_10_14_6(self): """ Test 'sum' on OSX 10.14.6 """ self.assertEqual(jc.parsers.cksum.parse(self.osx_10_14_6_sum, quiet=True), self.osx_10_14_6_sum_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_cli.py000066400000000000000000000222641415226333200155300ustar00rootroot00000000000000import unittest import pygments from pygments.token import (Name, Number, String, Keyword) import jc.cli class MyTests(unittest.TestCase): def test_cli_magic_parser(self): commands = { 'jc -p systemctl list-sockets': (True, ['systemctl', 'list-sockets'], '--systemctl-ls', ['p']), 'jc -p systemctl list-unit-files': (True, ['systemctl', 'list-unit-files'], '--systemctl-luf', ['p']), 'jc -p pip list': (True, ['pip', 'list'], '--pip-list', ['p']), 'jc -p pip3 list': (True, ['pip3', 'list'], '--pip-list', ['p']), 'jc -p pip show jc': (True, ['pip', 'show', 'jc'], '--pip-show', ['p']), 'jc -p pip3 show jc': (True, ['pip3', 'show', 'jc'], '--pip-show', ['p']), 'jc -prd last': (True, ['last'], '--last', ['p', 'r', 'd']), 'jc -prdd lastb': (True, ['lastb'], '--last', ['p', 'r', 'd', 'd']), 'jc -p airport -I': (True, ['airport', '-I'], '--airport', ['p']), 'jc -p -r airport -I': (True, ['airport', '-I'], '--airport', ['p', 'r']), 'jc -prd airport -I': (True, ['airport', '-I'], '--airport', ['p', 'r', 'd']), 'jc -p nonexistent command': (False, ['nonexistent', 'command'], None, ['p']), 'jc -ap': (False, None, None, []), 'jc -a arp -a': (False, None, None, []), 'jc -v': (False, None, None, []), 'jc -h': (False, None, None, []), 'jc -h --arp': (False, None, None, []), 'jc -h arp': (False, None, None, []), 'jc -h arp -a': (False, None, None, []) } for command, expected_command in commands.items(): self.assertEqual(jc.cli.magic_parser(command.split(' ')), expected_command) def test_cli_set_env_colors(self): if pygments.__version__.startswith('2.3.'): env = { '': { Name.Tag: 'bold #ansidarkblue', Keyword: '#ansidarkgray', Number: '#ansipurple', String: '#ansidarkgreen' }, ' ': { Name.Tag: 'bold #ansidarkblue', Keyword: '#ansidarkgray', Number: '#ansipurple', String: '#ansidarkgreen' }, 'default,default,default,default': { Name.Tag: 'bold #ansidarkblue', Keyword: '#ansidarkgray', Number: '#ansipurple', String: '#ansidarkgreen' }, 'red,red,red,red': { Name.Tag: 'bold #ansidarkred', Keyword: '#ansidarkred', Number: '#ansidarkred', String: '#ansidarkred' }, 'red,red,yada,red': { Name.Tag: 'bold #ansidarkblue', Keyword: '#ansidarkgray', Number: '#ansipurple', String: '#ansidarkgreen' }, 'red,red,red': { Name.Tag: 'bold #ansidarkblue', Keyword: '#ansidarkgray', Number: '#ansipurple', String: '#ansidarkgreen' }, 'red,red,red,red,red,red': { Name.Tag: 'bold #ansidarkblue', Keyword: '#ansidarkgray', Number: '#ansipurple', String: '#ansidarkgreen' } } else: env = { '': { Name.Tag: 'bold ansiblue', Keyword: 'ansibrightblack', Number: 'ansimagenta', String: 'ansigreen' }, ' ': { Name.Tag: 'bold ansiblue', Keyword: 'ansibrightblack', Number: 'ansimagenta', String: 'ansigreen' }, 'default,default,default,default': { Name.Tag: 'bold ansiblue', Keyword: 'ansibrightblack', Number: 'ansimagenta', String: 'ansigreen' }, 'red,red,red,red': { Name.Tag: 'bold ansired', Keyword: 'ansired', Number: 'ansired', String: 'ansired' }, 'red,red,yada,red': { Name.Tag: 'bold ansiblue', Keyword: 'ansibrightblack', Number: 'ansimagenta', String: 'ansigreen' }, 'red,red,red': { Name.Tag: 'bold ansiblue', Keyword: 'ansibrightblack', Number: 'ansimagenta', String: 'ansigreen' }, 'red,red,red,red,red,red': { Name.Tag: 'bold ansiblue', Keyword: 'ansibrightblack', Number: 'ansimagenta', String: 'ansigreen' } } for jc_colors, expected_colors in env.items(): self.assertEqual(jc.cli.set_env_colors(jc_colors), expected_colors) def test_cli_json_out(self): test_input = [ None, {}, [], '', {"key1": "value1", "key2": 2, "key3": None, "key4": 3.14, "key5": True}, ] if pygments.__version__.startswith('2.3.'): expected_output = [ '\x1b[30;01mnull\x1b[39;00m', '{}', '[]', '\x1b[32m""\x1b[39m', '{\x1b[34;01m"key1"\x1b[39;00m:\x1b[32m"value1"\x1b[39m,\x1b[34;01m"key2"\x1b[39;00m:\x1b[35m2\x1b[39m,\x1b[34;01m"key3"\x1b[39;00m:\x1b[30;01mnull\x1b[39;00m,\x1b[34;01m"key4"\x1b[39;00m:\x1b[35m3.14\x1b[39m,\x1b[34;01m"key5"\x1b[39;00m:\x1b[30;01mtrue\x1b[39;00m}' ] else: expected_output = [ '\x1b[90mnull\x1b[39m', '{}', '[]', '\x1b[32m""\x1b[39m', '{\x1b[34;01m"key1"\x1b[39;00m:\x1b[32m"value1"\x1b[39m,\x1b[34;01m"key2"\x1b[39;00m:\x1b[35m2\x1b[39m,\x1b[34;01m"key3"\x1b[39;00m:\x1b[90mnull\x1b[39m,\x1b[34;01m"key4"\x1b[39;00m:\x1b[35m3.14\x1b[39m,\x1b[34;01m"key5"\x1b[39;00m:\x1b[90mtrue\x1b[39m}' ] for test_dict, expected_json in zip(test_input, expected_output): self.assertEqual(jc.cli.json_out(test_dict), expected_json) def test_cli_json_out_mono(self): test_input = [ None, {}, [], '', {"key1": "value1", "key2": 2, "key3": None, "key4": 3.14, "key5": True}, ] expected_output = [ 'null', '{}', '[]', '""', '{"key1":"value1","key2":2,"key3":null,"key4":3.14,"key5":true}' ] for test_dict, expected_json in zip(test_input, expected_output): self.assertEqual(jc.cli.json_out(test_dict, mono=True), expected_json) def test_cli_json_out_pretty(self): test_input = [ {"key1": "value1", "key2": 2, "key3": None, "key4": 3.14, "key5": True}, {"key1": [{"subkey1": "subvalue1"}, {"subkey2": [1, 2, 3]}], "key2": True} ] if pygments.__version__.startswith('2.3.'): expected_output = [ '{\n \x1b[34;01m"key1"\x1b[39;00m: \x1b[32m"value1"\x1b[39m,\n \x1b[34;01m"key2"\x1b[39;00m: \x1b[35m2\x1b[39m,\n \x1b[34;01m"key3"\x1b[39;00m: \x1b[30;01mnull\x1b[39;00m,\n \x1b[34;01m"key4"\x1b[39;00m: \x1b[35m3.14\x1b[39m,\n \x1b[34;01m"key5"\x1b[39;00m: \x1b[30;01mtrue\x1b[39;00m\n}', '{\n \x1b[34;01m"key1"\x1b[39;00m: [\n {\n \x1b[34;01m"subkey1"\x1b[39;00m: \x1b[32m"subvalue1"\x1b[39m\n },\n {\n \x1b[34;01m"subkey2"\x1b[39;00m: [\n \x1b[35m1\x1b[39m,\n \x1b[35m2\x1b[39m,\n \x1b[35m3\x1b[39m\n ]\n }\n ],\n \x1b[34;01m"key2"\x1b[39;00m: \x1b[30;01mtrue\x1b[39;00m\n}' ] else: expected_output = [ '{\n \x1b[34;01m"key1"\x1b[39;00m: \x1b[32m"value1"\x1b[39m,\n \x1b[34;01m"key2"\x1b[39;00m: \x1b[35m2\x1b[39m,\n \x1b[34;01m"key3"\x1b[39;00m: \x1b[90mnull\x1b[39m,\n \x1b[34;01m"key4"\x1b[39;00m: \x1b[35m3.14\x1b[39m,\n \x1b[34;01m"key5"\x1b[39;00m: \x1b[90mtrue\x1b[39m\n}', '{\n \x1b[34;01m"key1"\x1b[39;00m: [\n {\n \x1b[34;01m"subkey1"\x1b[39;00m: \x1b[32m"subvalue1"\x1b[39m\n },\n {\n \x1b[34;01m"subkey2"\x1b[39;00m: [\n \x1b[35m1\x1b[39m,\n \x1b[35m2\x1b[39m,\n \x1b[35m3\x1b[39m\n ]\n }\n ],\n \x1b[34;01m"key2"\x1b[39;00m: \x1b[90mtrue\x1b[39m\n}' ] for test_dict, expected_json in zip(test_input, expected_output): self.assertEqual(jc.cli.json_out(test_dict, pretty=True), expected_json) def test_cli_about_jc(self): self.assertEqual(jc.cli.about_jc()['name'], 'jc') self.assertGreaterEqual(jc.cli.about_jc()['parser_count'], 55) self.assertEqual(jc.cli.about_jc()['parser_count'], len(jc.cli.about_jc()['parsers'])) jc-1.17.3/tests/test_crontab.py000066400000000000000000000017541415226333200164120ustar00rootroot00000000000000import os import json import unittest import jc.parsers.crontab THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/crontab.out'), 'r', encoding='utf-8') as f: self.centos_7_7_crontab = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/crontab.json'), 'r', encoding='utf-8') as f: self.centos_7_7_crontab_json = json.loads(f.read()) def test_crontab_nodata(self): """ Test 'crontab' with no data """ self.assertEqual(jc.parsers.crontab.parse('', quiet=True), {}) def test_crontab_centos_7_7(self): """ Test 'crontab' on Centos 7.7 """ self.assertEqual(jc.parsers.crontab.parse(self.centos_7_7_crontab, quiet=True), self.centos_7_7_crontab_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_crontab_u.py000066400000000000000000000043561415226333200167370ustar00rootroot00000000000000import os import json import unittest import jc.parsers.crontab_u THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/crontab-u.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_crontab_u = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/crontab-u.out'), 'r', encoding='utf-8') as f: self.centos_7_7_crontab_u = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/debian10/crontab-u.out'), 'r', encoding='utf-8') as f: self.debian10_crontab_u = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/crontab-u.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_crontab_u_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/crontab-u.json'), 'r', encoding='utf-8') as f: self.centos_7_7_crontab_u_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/debian10/crontab-u.json'), 'r', encoding='utf-8') as f: self.debian10_crontab_u_json = json.loads(f.read()) def test_crontab_u_nodata(self): """ Test 'crontab' with no data (has a user field) """ self.assertEqual(jc.parsers.crontab_u.parse('', quiet=True), {}) def test_crontab_u_ubuntu_18_4(self): """ Test 'crontab' on Ubuntu 18.4 (has a user field) """ self.assertEqual(jc.parsers.crontab_u.parse(self.ubuntu_18_4_crontab_u, quiet=True), self.ubuntu_18_4_crontab_u_json) def test_crontab_u_centos_7_7(self): """ Test 'crontab' on Centos 7.7 (has a user field) """ self.assertEqual(jc.parsers.crontab_u.parse(self.centos_7_7_crontab_u, quiet=True), self.centos_7_7_crontab_u_json) def test_crontab_u_debian10(self): """ Test 'crontab' on Debian10 (has a user field) """ self.assertEqual(jc.parsers.crontab_u.parse(self.debian10_crontab_u, quiet=True), self.debian10_crontab_u_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_csv.py000066400000000000000000000126341415226333200155540ustar00rootroot00000000000000import os import json import unittest import jc.parsers.csv THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/csv-biostats.csv'), 'r', encoding='utf-8') as f: self.generic_csv_biostats = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/csv-cities.csv'), 'r', encoding='utf-8') as f: self.generic_csv_cities = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/csv-deniro.csv'), 'r', encoding='utf-8') as f: self.generic_csv_deniro = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/csv-example.csv'), 'r', encoding='utf-8') as f: self.generic_csv_example = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/csv-flyrna.tsv'), 'r', encoding='utf-8') as f: self.generic_csv_flyrna = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/csv-flyrna2.tsv'), 'r', encoding='utf-8') as f: self.generic_csv_flyrna2 = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/csv-homes-pipe.csv'), 'r', encoding='utf-8') as f: self.generic_csv_homes_pipe = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/csv-homes.csv'), 'r', encoding='utf-8') as f: self.generic_csv_homes = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/csv-insurance.csv'), 'r', encoding='utf-8') as f: self.generic_csv_insurance = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/csv-biostats.json'), 'r', encoding='utf-8') as f: self.generic_csv_biostats_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/csv-cities.json'), 'r', encoding='utf-8') as f: self.generic_csv_cities_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/csv-deniro.json'), 'r', encoding='utf-8') as f: self.generic_csv_deniro_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/csv-example.json'), 'r', encoding='utf-8') as f: self.generic_csv_example_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/csv-flyrna.json'), 'r', encoding='utf-8') as f: self.generic_csv_flyrna_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/csv-flyrna2.json'), 'r', encoding='utf-8') as f: self.generic_csv_flyrna2_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/csv-homes-pipe.json'), 'r', encoding='utf-8') as f: self.generic_csv_homes_pipe_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/csv-homes.json'), 'r', encoding='utf-8') as f: self.generic_csv_homes_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/csv-insurance.json'), 'r', encoding='utf-8') as f: self.generic_csv_insurance_json = json.loads(f.read()) def test_csv_nodata(self): """ Test with no data """ self.assertEqual(jc.parsers.csv.parse('', quiet=True), []) def test_csv_biostats(self): """ Test 'biostats.csv' file """ self.assertEqual(jc.parsers.csv.parse(self.generic_csv_biostats, quiet=True), self.generic_csv_biostats_json) def test_csv_cities(self): """ Test 'cities.csv' file """ self.assertEqual(jc.parsers.csv.parse(self.generic_csv_cities, quiet=True), self.generic_csv_cities_json) def test_csv_deniro(self): """ Test 'deniro.csv' file """ self.assertEqual(jc.parsers.csv.parse(self.generic_csv_deniro, quiet=True), self.generic_csv_deniro_json) def test_csv_example(self): """ Test 'example.csv' file """ self.assertEqual(jc.parsers.csv.parse(self.generic_csv_example, quiet=True), self.generic_csv_example_json) def test_csv_flyrna(self): """ Test 'flyrna.tsv' file """ self.assertEqual(jc.parsers.csv.parse(self.generic_csv_flyrna, quiet=True), self.generic_csv_flyrna_json) def test_csv_flyrna2(self): """ Test 'flyrna2.tsv' file """ self.assertEqual(jc.parsers.csv.parse(self.generic_csv_flyrna2, quiet=True), self.generic_csv_flyrna2_json) def test_csv_homes_pipe(self): """ Test 'homes-pipe.csv' file """ self.assertEqual(jc.parsers.csv.parse(self.generic_csv_homes_pipe, quiet=True), self.generic_csv_homes_pipe_json) def test_csv_homes(self): """ Test 'homes.csv' file """ self.assertEqual(jc.parsers.csv.parse(self.generic_csv_homes, quiet=True), self.generic_csv_homes_json) def test_csv_insurance(self): """ Test 'insurance.csv' file """ self.assertEqual(jc.parsers.csv.parse(self.generic_csv_insurance, quiet=True), self.generic_csv_insurance_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_csv_s.py000066400000000000000000000151551415226333200160770ustar00rootroot00000000000000import os import json import unittest import jc.parsers.csv_s from jc.exceptions import ParseError THIS_DIR = os.path.dirname(os.path.abspath(__file__)) # To create streaming output use: # $ cat file.csv | jc --csv-s | jello -c > csv-file-streaming.json class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/csv-biostats.csv'), 'r', encoding='utf-8') as f: self.generic_csv_biostats = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/csv-cities.csv'), 'r', encoding='utf-8') as f: self.generic_csv_cities = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/csv-deniro.csv'), 'r', encoding='utf-8') as f: self.generic_csv_deniro = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/csv-example.csv'), 'r', encoding='utf-8') as f: self.generic_csv_example = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/csv-flyrna.tsv'), 'r', encoding='utf-8') as f: self.generic_csv_flyrna = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/csv-flyrna2.tsv'), 'r', encoding='utf-8') as f: self.generic_csv_flyrna2 = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/csv-homes-pipe.csv'), 'r', encoding='utf-8') as f: self.generic_csv_homes_pipe = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/csv-homes.csv'), 'r', encoding='utf-8') as f: self.generic_csv_homes = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/csv-10k-sales-records.csv'), 'r', encoding='utf-8') as f: self.generic_csv_10k_sales_records = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/csv-biostats-streaming.json'), 'r', encoding='utf-8') as f: self.generic_csv_biostats_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/csv-cities-streaming.json'), 'r', encoding='utf-8') as f: self.generic_csv_cities_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/csv-deniro-streaming.json'), 'r', encoding='utf-8') as f: self.generic_csv_deniro_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/csv-example-streaming.json'), 'r', encoding='utf-8') as f: self.generic_csv_example_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/csv-flyrna-streaming.json'), 'r', encoding='utf-8') as f: self.generic_csv_flyrna_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/csv-flyrna2-streaming.json'), 'r', encoding='utf-8') as f: self.generic_csv_flyrna2_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/csv-homes-pipe-streaming.json'), 'r', encoding='utf-8') as f: self.generic_csv_homes_pipe_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/csv-homes-streaming.json'), 'r', encoding='utf-8') as f: self.generic_csv_homes_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/csv-10k-sales-records-streaming.json'), 'r', encoding='utf-8') as f: self.generic_csv_10k_sales_records_streaming_json = json.loads(f.read()) def test_csv_s_nodata(self): """ Test CSV parser with no data """ self.assertEqual(list(jc.parsers.csv_s.parse([], quiet=True)), []) def test_csv_unparsable(self): """ Test CSV streaming parser with '\r' newlines. This will raise ParseError due to a Python bug that does not correctly iterate on that line ending with sys.stdin. This is not a great test. https://bugs.python.org/issue45617 """ data = r'unparsable\rdata' # raw mode simulates unrecognized line separator - not great g = jc.parsers.csv_s.parse(data.splitlines(), quiet=True) with self.assertRaises(ParseError): list(g) def test_csv_s_biostats(self): """ Test 'biostats.csv' file """ self.assertEqual(list(jc.parsers.csv_s.parse(self.generic_csv_biostats.splitlines(), quiet=True)), self.generic_csv_biostats_streaming_json) def test_csv_s_cities(self): """ Test 'cities.csv' file """ self.assertEqual(list(jc.parsers.csv_s.parse(self.generic_csv_cities.splitlines(), quiet=True)), self.generic_csv_cities_streaming_json) def test_csv_s_deniro(self): """ Test 'deniro.csv' file """ self.assertEqual(list(jc.parsers.csv_s.parse(self.generic_csv_deniro.splitlines(), quiet=True)), self.generic_csv_deniro_streaming_json) def test_csv_s_example(self): """ Test 'example.csv' file """ self.assertEqual(list(jc.parsers.csv_s.parse(self.generic_csv_example.splitlines(), quiet=True)), self.generic_csv_example_streaming_json) def test_csv_s_flyrna(self): """ Test 'flyrna.tsv' file """ self.assertEqual(list(jc.parsers.csv_s.parse(self.generic_csv_flyrna.splitlines(), quiet=True)), self.generic_csv_flyrna_streaming_json) def test_csv_s_flyrna2(self): """ Test 'flyrna2.tsv' file """ self.assertEqual(list(jc.parsers.csv_s.parse(self.generic_csv_flyrna2.splitlines(), quiet=True)), self.generic_csv_flyrna2_streaming_json) def test_csv_s_homes_pipe(self): """ Test 'homes-pipe.csv' file """ self.assertEqual(list(jc.parsers.csv_s.parse(self.generic_csv_homes_pipe.splitlines(), quiet=True)), self.generic_csv_homes_pipe_streaming_json) def test_csv_s_homes(self): """ Test 'homes.csv' file """ self.assertEqual(list(jc.parsers.csv_s.parse(self.generic_csv_homes.splitlines(), quiet=True)), self.generic_csv_homes_streaming_json) def test_csv_s_10k_records(self): """ Test '10k-sales-records.csv' file """ self.assertEqual(list(jc.parsers.csv_s.parse(self.generic_csv_10k_sales_records.splitlines(), quiet=True)), self.generic_csv_10k_sales_records_streaming_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_date.py000066400000000000000000000071611415226333200156750ustar00rootroot00000000000000import os import sys import time import json import unittest import jc.parsers.date THIS_DIR = os.path.dirname(os.path.abspath(__file__)) # Set the timezone on POSIX systems. Need to manually set for Windows tests if not sys.platform.startswith('win32'): os.environ['TZ'] = 'America/Los_Angeles' time.tzset() class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/date.out'), 'r', encoding='utf-8') as f: self.generic_date = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/date-before-midnight.out'), 'r', encoding='utf-8') as f: self.generic_date_before_midnight = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/date-after-midnight.out'), 'r', encoding='utf-8') as f: self.generic_date_after_midnight = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-20.04/date.out'), 'r', encoding='utf-8') as f: self.ubuntu_20_04_date = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-20.04/date2.out'), 'r', encoding='utf-8') as f: self.ubuntu_20_04_date2 = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/date.json'), 'r', encoding='utf-8') as f: self.generic_date_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/date-before-midnight.json'), 'r', encoding='utf-8') as f: self.generic_date_before_midnight_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/date-after-midnight.json'), 'r', encoding='utf-8') as f: self.generic_date_after_midnight_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-20.04/date.json'), 'r', encoding='utf-8') as f: self.ubuntu_20_04_date_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-20.04/date2.json'), 'r', encoding='utf-8') as f: self.ubuntu_20_04_date2_json = json.loads(f.read()) def test_date_nodata(self): """ Test 'date' with no data """ self.assertEqual(jc.parsers.date.parse('', quiet=True), {}) def test_date(self): """ Test 'date' """ self.assertEqual(jc.parsers.date.parse(self.generic_date, quiet=True), self.generic_date_json) def test_date_before_midnight(self): """ Test 'date' 24-hour conversion just before midnight """ self.assertEqual(jc.parsers.date.parse(self.generic_date_before_midnight, quiet=True), self.generic_date_before_midnight_json) def test_date_after_midnight(self): """ Test 'date' 24-hour conversion just after midnight """ self.assertEqual(jc.parsers.date.parse(self.generic_date_after_midnight, quiet=True), self.generic_date_after_midnight_json) def test_date_am_ubuntu_20_04(self): """ Test 'date' on Ubuntu 20.4 with LANG=en_US.UTF-8 (uses 12-hour clock) with AM time """ self.assertEqual(jc.parsers.date.parse(self.ubuntu_20_04_date, quiet=True), self.ubuntu_20_04_date_json) def test_date_pm_ubuntu_20_04(self): """ Test 'date' on Ubuntu 20.4 with LANG=en_US.UTF-8 (uses 12-hour clock) with PM time """ self.assertEqual(jc.parsers.date.parse(self.ubuntu_20_04_date2, quiet=True), self.ubuntu_20_04_date2_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_df.py000066400000000000000000000125411415226333200153470ustar00rootroot00000000000000import os import json import unittest import jc.parsers.df THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/df.out'), 'r', encoding='utf-8') as f: self.centos_7_7_df = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/df.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_df = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/df.out'), 'r', encoding='utf-8') as f: self.osx_10_11_6_df = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/df.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_df = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/df-h.out'), 'r', encoding='utf-8') as f: self.centos_7_7_df_h = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/df-h.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_df_h = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/df-h.out'), 'r', encoding='utf-8') as f: self.osx_10_11_6_df_h = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/df-h.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_df_h = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/df-long-filesystem.out'), 'r', encoding='utf-8') as f: self.generic_df_long_filesystem = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/df.json'), 'r', encoding='utf-8') as f: self.centos_7_7_df_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/df.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_df_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/df.json'), 'r', encoding='utf-8') as f: self.osx_10_11_6_df_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/df.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_df_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/df-h.json'), 'r', encoding='utf-8') as f: self.centos_7_7_df_h_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/df-h.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_df_h_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/df-h.json'), 'r', encoding='utf-8') as f: self.osx_10_11_6_df_h_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/df-h.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_df_h_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/df-long-filesystem.json'), 'r', encoding='utf-8') as f: self.generic_df_long_filesystem_json = json.loads(f.read()) def test_df_nodata(self): """ Test plain 'df' with no data """ self.assertEqual(jc.parsers.df.parse('', quiet=True), []) def test_df_centos_7_7(self): """ Test plain 'df' on Centos 7.7 """ self.assertEqual(jc.parsers.df.parse(self.centos_7_7_df, quiet=True), self.centos_7_7_df_json) def test_df_ubuntu_18_4(self): """ Test plain 'df' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.df.parse(self.ubuntu_18_4_df, quiet=True), self.ubuntu_18_4_df_json) def test_df_osx_10_11_6(self): """ Test plain 'df' on OSX 10.11.6 """ self.assertEqual(jc.parsers.df.parse(self.osx_10_11_6_df, quiet=True), self.osx_10_11_6_df_json) def test_df_osx_10_14_6(self): """ Test plain 'df' on OSX 10.14.6 """ self.assertEqual(jc.parsers.df.parse(self.osx_10_14_6_df, quiet=True), self.osx_10_14_6_df_json) def test_df_h_centos_7_7(self): """ Test 'df -h' on Centos 7.7 """ self.assertEqual(jc.parsers.df.parse(self.centos_7_7_df_h, quiet=True), self.centos_7_7_df_h_json) def test_df_h_ubuntu_18_4(self): """ Test 'df -h' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.df.parse(self.ubuntu_18_4_df_h, quiet=True), self.ubuntu_18_4_df_h_json) def test_df_h_osx_10_11_6(self): """ Test 'df -h' on OSX 10.11.6 """ self.assertEqual(jc.parsers.df.parse(self.osx_10_11_6_df_h, quiet=True), self.osx_10_11_6_df_h_json) def test_df_h_osx_10_14_6(self): """ Test 'df -h' on OSX 10.14.6 """ self.assertEqual(jc.parsers.df.parse(self.osx_10_14_6_df_h, quiet=True), self.osx_10_14_6_df_h_json) def test_df_long_filesystem(self): """ Test older version of 'df' with long filesystem data """ self.assertEqual(jc.parsers.df.parse(self.generic_df_long_filesystem, quiet=True), self.generic_df_long_filesystem_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_dig.py000066400000000000000000000332471415226333200155270ustar00rootroot00000000000000import os import sys import time import json import unittest import jc.parsers.dig THIS_DIR = os.path.dirname(os.path.abspath(__file__)) # Set the timezone on POSIX systems. Need to manually set for Windows tests if not sys.platform.startswith('win32'): os.environ['TZ'] = 'America/Los_Angeles' time.tzset() class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/dig.out'), 'r', encoding='utf-8') as f: self.centos_7_7_dig = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/dig.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_dig = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/dig-x.out'), 'r', encoding='utf-8') as f: self.centos_7_7_dig_x = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/dig-x.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_dig_x = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/dig-aaaa.out'), 'r', encoding='utf-8') as f: self.centos_7_7_dig_aaaa = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/dig-aaaa.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_dig_aaaa = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/dig-axfr.out'), 'r', encoding='utf-8') as f: self.centos_7_7_dig_axfr = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/dig-axfr.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_dig_axfr = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/dig.out'), 'r', encoding='utf-8') as f: self.osx_10_11_6_dig = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/dig-x.out'), 'r', encoding='utf-8') as f: self.osx_10_11_6_dig_x = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/dig-aaaa.out'), 'r', encoding='utf-8') as f: self.osx_10_11_6_dig_aaaa = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/dig.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_dig = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/dig-x.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_dig_x = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/dig-aaaa.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_dig_aaaa = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/dig-axfr.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_dig_axfr = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/dig-noall-answer.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_dig_noall_answer = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/dig-answer-spaces.out'), 'r', encoding='utf-8') as f: self.generic_dig_answer_spaces = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/dig-additional.out'), 'r', encoding='utf-8') as f: self.generic_dig_additional = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/dig-additional2.out'), 'r', encoding='utf-8') as f: self.generic_dig_additional2 = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/dig-additional3.out'), 'r', encoding='utf-8') as f: self.generic_dig_additional3 = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/dig-edns.out'), 'r', encoding='utf-8') as f: self.generic_dig_edns = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/dig-edns2.out'), 'r', encoding='utf-8') as f: self.generic_dig_edns2 = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/dig-edns3.out'), 'r', encoding='utf-8') as f: self.generic_dig_edns3 = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/dig.json'), 'r', encoding='utf-8') as f: self.centos_7_7_dig_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/dig.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_dig_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/dig-x.json'), 'r', encoding='utf-8') as f: self.centos_7_7_dig_x_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/dig-x.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_dig_x_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/dig-aaaa.json'), 'r', encoding='utf-8') as f: self.centos_7_7_dig_aaaa_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/dig-aaaa.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_dig_aaaa_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/dig-axfr.json'), 'r', encoding='utf-8') as f: self.centos_7_7_dig_axfr_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/dig-axfr.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_dig_axfr_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/dig.json'), 'r', encoding='utf-8') as f: self.osx_10_11_6_dig_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/dig-x.json'), 'r', encoding='utf-8') as f: self.osx_10_11_6_dig_x_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/dig-aaaa.json'), 'r', encoding='utf-8') as f: self.osx_10_11_6_dig_aaaa_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/dig.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_dig_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/dig-x.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_dig_x_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/dig-aaaa.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_dig_aaaa_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/dig-axfr.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_dig_axfr_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/dig-noall-answer.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_dig_noall_answer_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/dig-answer-spaces.json'), 'r', encoding='utf-8') as f: self.generic_dig_answer_spaces_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/dig-additional.json'), 'r', encoding='utf-8') as f: self.generic_dig_additional_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/dig-additional2.json'), 'r', encoding='utf-8') as f: self.generic_dig_additional2_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/dig-additional3.json'), 'r', encoding='utf-8') as f: self.generic_dig_additional3_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/dig-edns.json'), 'r', encoding='utf-8') as f: self.generic_dig_edns_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/dig-edns2.json'), 'r', encoding='utf-8') as f: self.generic_dig_edns2_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/dig-edns3.json'), 'r', encoding='utf-8') as f: self.generic_dig_edns3_json = json.loads(f.read()) def test_dig_nodata(self): """ Test 'dig' with no data """ self.assertEqual(jc.parsers.dig.parse('', quiet=True), []) def test_dig_centos_7_7(self): """ Test 'dig' on Centos 7.7 """ self.assertEqual(jc.parsers.dig.parse(self.centos_7_7_dig, quiet=True), self.centos_7_7_dig_json) def test_dig_ubuntu_18_4(self): """ Test 'dig' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.dig.parse(self.ubuntu_18_4_dig, quiet=True), self.ubuntu_18_4_dig_json) def test_dig_x_centos_7_7(self): """ Test 'dig -x' on Centos 7.7 """ self.assertEqual(jc.parsers.dig.parse(self.centos_7_7_dig_x, quiet=True), self.centos_7_7_dig_x_json) def test_dig_x_ubuntu_18_4(self): """ Test 'dig -x' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.dig.parse(self.ubuntu_18_4_dig_x, quiet=True), self.ubuntu_18_4_dig_x_json) def test_dig_aaaa_centos_7_7(self): """ Test 'dig AAAA' on Centos 7.7 """ self.assertEqual(jc.parsers.dig.parse(self.centos_7_7_dig_aaaa, quiet=True), self.centos_7_7_dig_aaaa_json) def test_dig_aaaa_ubuntu_18_4(self): """ Test 'dig AAAA' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.dig.parse(self.ubuntu_18_4_dig_aaaa, quiet=True), self.ubuntu_18_4_dig_aaaa_json) def test_dig_axfr_centos_7_7(self): """ Test 'dig axfr' on Centos 7.7 """ self.assertEqual(jc.parsers.dig.parse(self.centos_7_7_dig_axfr, quiet=True), self.centos_7_7_dig_axfr_json) def test_dig_axfr_ubuntu_18_4(self): """ Test 'dig axfr' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.dig.parse(self.ubuntu_18_4_dig_axfr, quiet=True), self.ubuntu_18_4_dig_axfr_json) def test_dig_osx_10_11_6(self): """ Test 'dig' on OSX 10.11.6 """ self.assertEqual(jc.parsers.dig.parse(self.osx_10_11_6_dig, quiet=True), self.osx_10_11_6_dig_json) def test_dig_x_osx_10_11_6(self): """ Test 'dig -x' on OSX 10.11.6 """ self.assertEqual(jc.parsers.dig.parse(self.osx_10_11_6_dig_x, quiet=True), self.osx_10_11_6_dig_x_json) def test_dig_aaaa_osx_10_11_6(self): """ Test 'dig -aaaa' on OSX 10.11.6 """ self.assertEqual(jc.parsers.dig.parse(self.osx_10_11_6_dig_aaaa, quiet=True), self.osx_10_11_6_dig_aaaa_json) def test_dig_osx_10_14_6(self): """ Test 'dig' on OSX 10.14.6 """ self.assertEqual(jc.parsers.dig.parse(self.osx_10_14_6_dig, quiet=True), self.osx_10_14_6_dig_json) def test_dig_x_osx_10_14_6(self): """ Test 'dig -x' on OSX 10.14.6 """ self.assertEqual(jc.parsers.dig.parse(self.osx_10_14_6_dig_x, quiet=True), self.osx_10_14_6_dig_x_json) def test_dig_aaaa_osx_10_14_6(self): """ Test 'dig -aaaa' on OSX 10.14.6 """ self.assertEqual(jc.parsers.dig.parse(self.osx_10_14_6_dig_aaaa, quiet=True), self.osx_10_14_6_dig_aaaa_json) def test_dig_axfr_osx_10_14_6(self): """ Test 'dig axfr' on OSX 10.14.6 """ self.assertEqual(jc.parsers.dig.parse(self.osx_10_14_6_dig_axfr, quiet=True), self.osx_10_14_6_dig_axfr_json) def test_dig_noall_answer_osx_10_14_6(self): """ Test 'dig +noall +answer' on OSX 10.14.6 """ self.assertEqual(jc.parsers.dig.parse(self.osx_10_14_6_dig_noall_answer, quiet=True), self.osx_10_14_6_dig_noall_answer_json) def test_dig_answer_spaces(self): """ Test 'dig' with spaces in the answer data (e.g. TXT responses) """ self.assertEqual(jc.parsers.dig.parse(self.generic_dig_answer_spaces, quiet=True), self.generic_dig_answer_spaces_json) def test_dig_additional(self): """ Test 'dig' with additional section """ self.assertEqual(jc.parsers.dig.parse(self.generic_dig_additional, quiet=True), self.generic_dig_additional_json) def test_dig_additional2(self): """ Test 'dig' with additional section """ self.assertEqual(jc.parsers.dig.parse(self.generic_dig_additional2, quiet=True), self.generic_dig_additional2_json) def test_dig_additional3(self): """ Test 'dig' with additional section """ self.assertEqual(jc.parsers.dig.parse(self.generic_dig_additional3, quiet=True), self.generic_dig_additional3_json) def test_dig_edns(self): """ Test 'dig' with edns info """ self.assertEqual(jc.parsers.dig.parse(self.generic_dig_edns, quiet=True), self.generic_dig_edns_json) def test_dig_edns2(self): """ Test 'dig' with edns info """ self.assertEqual(jc.parsers.dig.parse(self.generic_dig_edns2, quiet=True), self.generic_dig_edns2_json) def test_dig_edns3(self): """ Test 'dig' with edns info """ self.assertEqual(jc.parsers.dig.parse(self.generic_dig_edns3, quiet=True), self.generic_dig_edns3_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_dir.py000066400000000000000000000105151415226333200155330ustar00rootroot00000000000000import os import sys import time import json import unittest import jc.parsers.dir THIS_DIR = os.path.dirname(os.path.abspath(__file__)) # Set the timezone on POSIX systems. Need to manually set for Windows tests if not sys.platform.startswith('win32'): os.environ['TZ'] = 'America/Los_Angeles' time.tzset() class MyTests(unittest.TestCase): def setUp(self): with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/windows-10/dir.out'), 'r', encoding='utf-8') as f: self.windows_10_dir = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/windows-10/dir.json'), 'r', encoding='utf-8') as f: self.windows_10_dir_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/windows-10/dir-ODTC.out'), 'r', encoding='utf-8') as f: self.windows_10_dir_ODTC = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/windows-10/dir-ODTC.json'), 'r', encoding='utf-8') as f: self.windows_10_dir_ODTC_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/windows-10/dir-C.out'), 'r', encoding='utf-8') as f: self.windows_10_dir_C = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/windows-10/dir-mix.out'), 'r', encoding='utf-8') as f: self.windows_10_dir_mix = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/windows-10/dir-mix.json'), 'r', encoding='utf-8') as f: self.windows_10_dir_mix_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/windows-10/dir-files.out'), 'r', encoding='utf-8') as f: self.windows_10_dir_files = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/windows-10/dir-files.json'), 'r', encoding='utf-8') as f: self.windows_10_dir_files_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/windows-10/dir-dirs.out'), 'r', encoding='utf-8') as f: self.windows_10_dir_dirs = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/windows-10/dir-dirs.json'), 'r', encoding='utf-8') as f: self.windows_10_dir_dirs_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/windows-10/dir-S.out'), 'r', encoding='utf-8') as f: self.windows_10_dir_S = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/windows-10/dir-S.json'), 'r', encoding='utf-8') as f: self.windows_10_dir_S_json = json.loads(f.read()) def test_dir_error(self): self.assertEqual(jc.parsers.dir.parse("Access is denied.", quiet=True), []) def test_dir_empty(self): self.assertEqual(jc.parsers.dir.parse("", quiet=True), []) def test_dir_windows_10(self): self.assertEqual(jc.parsers.dir.parse(self.windows_10_dir, quiet=True), self.windows_10_dir_json) def test_dir_windows_10_ODTC(self): self.assertEqual(jc.parsers.dir.parse(self.windows_10_dir_ODTC, quiet=True), self.windows_10_dir_ODTC_json) def test_dir_windows_10_C(self): self.assertEqual(jc.parsers.dir.parse(self.windows_10_dir_C, quiet=True), self.windows_10_dir_json) def test_dir_windows_10_mix(self): self.assertEqual(jc.parsers.dir.parse(self.windows_10_dir_mix, quiet=True), self.windows_10_dir_mix_json) def test_dir_windows_10_files(self): self.assertEqual(jc.parsers.dir.parse(self.windows_10_dir_files, quiet=True), self.windows_10_dir_files_json) def test_dir_windows_10_dirs(self): self.assertEqual(jc.parsers.dir.parse(self.windows_10_dir_dirs, quiet=True), self.windows_10_dir_dirs_json) def test_dir_windows_10_S(self): self.assertEqual(jc.parsers.dir.parse(self.windows_10_dir_S, quiet=True), self.windows_10_dir_S_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_dmidecode.py000066400000000000000000000042531415226333200166740ustar00rootroot00000000000000import os import json import unittest import jc.parsers.dmidecode THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/dmidecode.out'), 'r', encoding='utf-8') as f: self.centos_7_7_dmidecode = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/dmidecode.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_dmidecode = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/dmidecode.out'), 'r', encoding='utf-8') as f: self.fedora32_dmidecode = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/dmidecode.json'), 'r', encoding='utf-8') as f: self.centos_7_7_dmidecode_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/dmidecode.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_dmidecode_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/dmidecode.json'), 'r', encoding='utf-8') as f: self.fedora32_dmidecode_json = json.loads(f.read()) def test_dmidecode_nodata(self): """ Test 'dmidecode' with no data """ self.assertEqual(jc.parsers.dmidecode.parse('', quiet=True), []) def test_dmidecode_centos_7_7(self): """ Test 'dmidecode' on Centos 7.7 """ self.assertEqual(jc.parsers.dmidecode.parse(self.centos_7_7_dmidecode, quiet=True), self.centos_7_7_dmidecode_json) def test_dmidecode_ubuntu_18_4(self): """ Test 'dmidecode' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.dmidecode.parse(self.ubuntu_18_4_dmidecode, quiet=True), self.ubuntu_18_4_dmidecode_json) def test_dmidecode_fedora32(self): """ Test 'dmidecode' on Fedora 32 """ self.assertEqual(jc.parsers.dmidecode.parse(self.fedora32_dmidecode, quiet=True), self.fedora32_dmidecode_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_dpkg_l.py000066400000000000000000000044441415226333200162210ustar00rootroot00000000000000import os import json import unittest import jc.parsers.dpkg_l THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/dpkg-l.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_dpkg_l = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/dpkg-l-columns500.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_dpkg_l_columns500 = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/dpkg-l-codes.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_dpkg_l_codes = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/dpkg-l.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_dpkg_l_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/dpkg-l-columns500.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_dpkg_l_columns500_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/dpkg-l-codes.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_dpkg_l_codes_json = json.loads(f.read()) def test_dpkg_l_nodata(self): """ Test plain 'dpkg_l' with no data """ self.assertEqual(jc.parsers.dpkg_l.parse('', quiet=True), []) def test_dpkg_l_ubuntu_18_4(self): """ Test plain 'dpkg -l' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.dpkg_l.parse(self.ubuntu_18_4_dpkg_l, quiet=True), self.ubuntu_18_4_dpkg_l_json) def test_dpkg_l_columns500_ubuntu_18_4(self): """ Test 'dpkg -l' on Ubuntu 18.4 with COLUMNS=500 set """ self.assertEqual(jc.parsers.dpkg_l.parse(self.ubuntu_18_4_dpkg_l_columns500, quiet=True), self.ubuntu_18_4_dpkg_l_columns500_json) def test_dpkg_l_codes_ubuntu_18_4(self): """ Test 'dpkg -l' on Ubuntu 18.4 with multiple codes set """ self.assertEqual(jc.parsers.dpkg_l.parse(self.ubuntu_18_4_dpkg_l_codes, quiet=True), self.ubuntu_18_4_dpkg_l_codes_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_du.py000066400000000000000000000050071415226333200153650ustar00rootroot00000000000000import os import json import unittest import jc.parsers.du THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/du.out'), 'r', encoding='utf-8') as f: self.centos_7_7_du = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/du.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_du = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/du.out'), 'r', encoding='utf-8') as f: self.osx_10_11_6_du = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/du.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_du = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/du.json'), 'r', encoding='utf-8') as f: self.centos_7_7_du_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/du.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_du_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/du.json'), 'r', encoding='utf-8') as f: self.osx_10_11_6_du_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/du.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_du_json = json.loads(f.read()) def test_du_nodata(self): """ Test 'du' with no data """ self.assertEqual(jc.parsers.du.parse('', quiet=True), []) def test_du_centos_7_7(self): """ Test 'du' on Centos 7.7 """ self.assertEqual(jc.parsers.du.parse(self.centos_7_7_du, quiet=True), self.centos_7_7_du_json) def test_du_ubuntu_18_4(self): """ Test 'du' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.du.parse(self.ubuntu_18_4_du, quiet=True), self.ubuntu_18_4_du_json) def test_du_osx_10_11_6(self): """ Test 'du' on OSX 10.11.6 """ self.assertEqual(jc.parsers.du.parse(self.osx_10_11_6_du, quiet=True), self.osx_10_11_6_du_json) def test_du_osx_10_14_6(self): """ Test 'du' on OSX 10.14.6 """ self.assertEqual(jc.parsers.du.parse(self.osx_10_14_6_du, quiet=True), self.osx_10_14_6_du_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_env.py000066400000000000000000000027411415226333200155470ustar00rootroot00000000000000import os import json import unittest import jc.parsers.env THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/env.out'), 'r', encoding='utf-8') as f: self.centos_7_7_env = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/env.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_env = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/env.json'), 'r', encoding='utf-8') as f: self.centos_7_7_env_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/env.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_env_json = json.loads(f.read()) def test_env_nodata(self): """ Test 'env' with no data """ self.assertEqual(jc.parsers.env.parse('', quiet=True), []) def test_env_centos_7_7(self): """ Test 'env' on Centos 7.7 """ self.assertEqual(jc.parsers.env.parse(self.centos_7_7_env, quiet=True), self.centos_7_7_env_json) def test_env_ubuntu_18_4(self): """ Test 'env' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.env.parse(self.ubuntu_18_4_env, quiet=True), self.ubuntu_18_4_env_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_file.py000066400000000000000000000063701415226333200157000ustar00rootroot00000000000000import os import unittest import json import jc.parsers.file THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/file.out'), 'r', encoding='utf-8') as f: self.centos_7_7_file = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/file.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_file = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/file.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_file = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/file2.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_file2 = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/file3.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_file3 = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/file.json'), 'r', encoding='utf-8') as f: self.centos_7_7_file_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/file.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_file_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/file.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_file_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/file2.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_file2_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/file3.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_file3_json = json.loads(f.read()) def test_file_nodata(self): """ Test 'file' with no data """ self.assertEqual(jc.parsers.file.parse('', quiet=True), []) def test_file_centos_7_7(self): """ Test 'file *' on Centos 7.7 """ self.assertEqual(jc.parsers.file.parse(self.centos_7_7_file, quiet=True), self.centos_7_7_file_json) def test_file_ubuntu_18_4(self): """ Test 'file *' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.file.parse(self.ubuntu_18_4_file, quiet=True), self.ubuntu_18_4_file_json) def test_file_osx_10_14_6(self): """ Test 'file *' on OSX 10.14.6 """ self.assertEqual(jc.parsers.file.parse(self.osx_10_14_6_file, quiet=True), self.osx_10_14_6_file_json) def test_file2_osx_10_14_6(self): """ Test 'file *' with filetpe descriptions including colons on OSX 10.14.6 """ self.assertEqual(jc.parsers.file.parse(self.osx_10_14_6_file2, quiet=True), self.osx_10_14_6_file2_json) def test_file3_osx_10_14_6(self): """ Test 'file *' with gzip filetpe descriptions including ': ' on OSX 10.14.6 """ self.assertEqual(jc.parsers.file.parse(self.osx_10_14_6_file3, quiet=True), self.osx_10_14_6_file3_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_finger.py000066400000000000000000000041761415226333200162350ustar00rootroot00000000000000import os import json import unittest import jc.parsers.finger THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/finger.out'), 'r', encoding='utf-8') as f: self.centos_7_7_finger = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/finger.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_finger = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/finger.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_finger = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/finger.json'), 'r', encoding='utf-8') as f: self.centos_7_7_finger_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/finger.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_finger_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/finger.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_finger_json = json.loads(f.read()) def test_finger_nodata(self): """ Test plain 'finger' with no data """ self.assertEqual(jc.parsers.finger.parse('', quiet=True), []) def test_finger_centos_7_7(self): """ Test plain 'finger' on Centos 7.7 """ self.assertEqual(jc.parsers.finger.parse(self.centos_7_7_finger, quiet=True), self.centos_7_7_finger_json) def test_finger_ubuntu_18_4(self): """ Test plain 'finger' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.finger.parse(self.ubuntu_18_4_finger, quiet=True), self.ubuntu_18_4_finger_json) def test_finger_osx_10_14_6(self): """ Test plain 'finger' on OSX 10.14.6 """ self.assertEqual(jc.parsers.finger.parse(self.osx_10_14_6_finger, quiet=True), self.osx_10_14_6_finger_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_free.py000066400000000000000000000051631415226333200157010ustar00rootroot00000000000000import os import json import unittest import jc.parsers.free THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/free.out'), 'r', encoding='utf-8') as f: self.centos_7_7_free = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/free.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_free = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/free-h.out'), 'r', encoding='utf-8') as f: self.centos_7_7_free_h = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/free-h.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_free_h = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/free.json'), 'r', encoding='utf-8') as f: self.centos_7_7_free_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/free.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_free_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/free-h.json'), 'r', encoding='utf-8') as f: self.centos_7_7_free_h_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/free-h.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_free_h_json = json.loads(f.read()) def test_free_nodata(self): """ Test 'free' with no data """ self.assertEqual(jc.parsers.free.parse('', quiet=True), []) def test_free_centos_7_7(self): """ Test 'free' on Centos 7.7 """ self.assertEqual(jc.parsers.free.parse(self.centos_7_7_free, quiet=True), self.centos_7_7_free_json) def test_free_ubuntu_18_4(self): """ Test 'free' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.free.parse(self.ubuntu_18_4_free, quiet=True), self.ubuntu_18_4_free_json) def test_free_h_centos_7_7(self): """ Test 'free -h' on Centos 7.7 """ self.assertEqual(jc.parsers.free.parse(self.centos_7_7_free_h, quiet=True), self.centos_7_7_free_h_json) def test_free_h_ubuntu_18_4(self): """ Test 'free -h' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.free.parse(self.ubuntu_18_4_free_h, quiet=True), self.ubuntu_18_4_free_h_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_fstab.py000066400000000000000000000030501415226333200160500ustar00rootroot00000000000000import os import json import unittest import jc.parsers.fstab THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/fstab.out'), 'r', encoding='utf-8') as f: self.centos_7_7_fstab = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/fstab.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_fstab = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/fstab.json'), 'r', encoding='utf-8') as f: self.centos_7_7_fstab_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/fstab.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_fstab_json = json.loads(f.read()) def test_fstab_nodata(self): """ Test 'cat /etc/fstab' with no data """ self.assertEqual(jc.parsers.fstab.parse('', quiet=True), []) def test_fstab_centos_7_7(self): """ Test 'cat /etc/fstab' on Centos 7.7 """ self.assertEqual(jc.parsers.fstab.parse(self.centos_7_7_fstab, quiet=True), self.centos_7_7_fstab_json) def test_fstab_ubuntu_18_4(self): """ Test 'cat /etc/fstab' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.fstab.parse(self.ubuntu_18_4_fstab, quiet=True), self.ubuntu_18_4_fstab_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_group.py000066400000000000000000000041501415226333200161070ustar00rootroot00000000000000import os import json import unittest import jc.parsers.group THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/group.out'), 'r', encoding='utf-8') as f: self.centos_7_7_group = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/group.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_group = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/group.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_group = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/group.json'), 'r', encoding='utf-8') as f: self.centos_7_7_group_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/group.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_group_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/group.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_group_json = json.loads(f.read()) def test_group_nodata(self): """ Test 'cat /etc/group' with no data """ self.assertEqual(jc.parsers.group.parse('', quiet=True), []) def test_group_centos_7_7(self): """ Test 'cat /etc/group' on Centos 7.7 """ self.assertEqual(jc.parsers.group.parse(self.centos_7_7_group, quiet=True), self.centos_7_7_group_json) def test_group_ubuntu_18_4(self): """ Test 'cat /etc/group' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.group.parse(self.ubuntu_18_4_group, quiet=True), self.ubuntu_18_4_group_json) def test_group_osx_10_14_6(self): """ Test 'cat /etc/group' on OSX 10.14 """ self.assertEqual(jc.parsers.group.parse(self.osx_10_14_6_group, quiet=True), self.osx_10_14_6_group_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_gshadow.py000066400000000000000000000031241415226333200164070ustar00rootroot00000000000000import os import json import unittest import jc.parsers.gshadow THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/gshadow.out'), 'r', encoding='utf-8') as f: self.centos_7_7_gshadow = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/gshadow.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_gshadow = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/gshadow.json'), 'r', encoding='utf-8') as f: self.centos_7_7_gshadow_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/gshadow.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_gshadow_json = json.loads(f.read()) def test_gshadow_nodata(self): """ Test 'cat /etc/gshadow' with no data """ self.assertEqual(jc.parsers.gshadow.parse('', quiet=True), []) def test_gshadow_centos_7_7(self): """ Test 'cat /etc/gshadow' on Centos 7.7 """ self.assertEqual(jc.parsers.gshadow.parse(self.centos_7_7_gshadow, quiet=True), self.centos_7_7_gshadow_json) def test_gshadow_ubuntu_18_4(self): """ Test 'cat /etc/gshadow' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.gshadow.parse(self.ubuntu_18_4_gshadow, quiet=True), self.ubuntu_18_4_gshadow_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_hash.py000066400000000000000000000017141415226333200157010ustar00rootroot00000000000000import os import unittest import json import jc.parsers.hash THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/hash.out'), 'r', encoding='utf-8') as f: self.centos_7_7_hash = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/hash.json'), 'r', encoding='utf-8') as f: self.centos_7_7_hash_json = json.loads(f.read()) def test_hash_nodata(self): """ Test 'hash' parser with no data """ self.assertEqual(jc.parsers.hash.parse('', quiet=True), []) def test_hash_centos_7_7(self): """ Test 'hash' on Centos 7.7 """ self.assertEqual(jc.parsers.hash.parse(self.centos_7_7_hash, quiet=True), self.centos_7_7_hash_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_hashsum.py000066400000000000000000000063771415226333200164400ustar00rootroot00000000000000import os import unittest import json import jc.parsers.hashsum THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/md5sum.out'), 'r', encoding='utf-8') as f: self.centos_7_7_md5sum = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/sha256sum.out'), 'r', encoding='utf-8') as f: self.centos_7_7_sha256sum = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/sha384sum.out'), 'r', encoding='utf-8') as f: self.centos_7_7_sha384sum = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/md5.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_md5 = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/shasum.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_shasum = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/md5sum.json'), 'r', encoding='utf-8') as f: self.centos_7_7_md5sum_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/sha256sum.json'), 'r', encoding='utf-8') as f: self.centos_7_7_sha256sum_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/sha384sum.json'), 'r', encoding='utf-8') as f: self.centos_7_7_sha384sum_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/md5.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_md5_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/shasum.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_shasum_json = json.loads(f.read()) def test_hashsum_nodata(self): """ Test 'hashsum' parser with no data """ self.assertEqual(jc.parsers.hashsum.parse('', quiet=True), []) def test_md5sum_centos_7_7(self): """ Test 'md5sum' on Centos 7.7 """ self.assertEqual(jc.parsers.hashsum.parse(self.centos_7_7_md5sum, quiet=True), self.centos_7_7_md5sum_json) def test_sha256sum_centos_7_7(self): """ Test 'sha256sum' on Centos 7.7 """ self.assertEqual(jc.parsers.hashsum.parse(self.centos_7_7_sha256sum, quiet=True), self.centos_7_7_sha256sum_json) def test_sha384sum_centos_7_7(self): """ Test 'sha384sum' on Centos 7.7 """ self.assertEqual(jc.parsers.hashsum.parse(self.centos_7_7_sha384sum, quiet=True), self.centos_7_7_sha384sum_json) def test_md5_osx_10_14_6(self): """ Test 'md5' on OSX 10.14.6 """ self.assertEqual(jc.parsers.hashsum.parse(self.osx_10_14_6_md5, quiet=True), self.osx_10_14_6_md5_json) def test_shasum_osx_10_14_6(self): """ Test 'shasum' on OSX 10.14.6 """ self.assertEqual(jc.parsers.hashsum.parse(self.osx_10_14_6_shasum, quiet=True), self.osx_10_14_6_shasum_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_hciconfig.py000066400000000000000000000055151415226333200167120ustar00rootroot00000000000000import os import json import unittest import jc.parsers.hciconfig THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/hciconfig.out'), 'r', encoding='utf-8') as f: self.centos_7_7_hciconfig = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/hciconfig-a.out'), 'r', encoding='utf-8') as f: self.centos_7_7_hciconfig_a = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-20.04/hciconfig.out'), 'r', encoding='utf-8') as f: self.ubuntu_20_4_hciconfig = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-20.04/hciconfig-a.out'), 'r', encoding='utf-8') as f: self.ubuntu_20_4_hciconfig_a = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/hciconfig.json'), 'r', encoding='utf-8') as f: self.centos_7_7_hciconfig_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/hciconfig-a.json'), 'r', encoding='utf-8') as f: self.centos_7_7_hciconfig_a_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-20.04/hciconfig.json'), 'r', encoding='utf-8') as f: self.ubuntu_20_4_hciconfig_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-20.04/hciconfig-a.json'), 'r', encoding='utf-8') as f: self.ubuntu_20_4_hciconfig_a_json = json.loads(f.read()) def test_hciconfig_nodata(self): """ Test plain 'hciconfig' with no data """ self.assertEqual(jc.parsers.hciconfig.parse('', quiet=True), []) def test_hciconfig_centos_7_7(self): """ Test plain 'hciconfig' on Centos 7.7 """ self.assertEqual(jc.parsers.hciconfig.parse(self.centos_7_7_hciconfig, quiet=True), self.centos_7_7_hciconfig_json) def test_hciconfig_a_centos_7_7(self): """ Test 'hciconfig -a' on Centos 7.7 """ self.assertEqual(jc.parsers.hciconfig.parse(self.centos_7_7_hciconfig_a, quiet=True), self.centos_7_7_hciconfig_a_json) def test_hciconfig_ubuntu_18_4(self): """ Test plain 'hciconfig' on Ubuntu 20.4 """ self.assertEqual(jc.parsers.hciconfig.parse(self.ubuntu_20_4_hciconfig, quiet=True), self.ubuntu_20_4_hciconfig_json) def test_hciconfig_a_ubuntu_18_4(self): """ Test 'hciconfig -a' on Ubuntu 20.4 """ self.assertEqual(jc.parsers.hciconfig.parse(self.ubuntu_20_4_hciconfig_a, quiet=True), self.ubuntu_20_4_hciconfig_a_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_history.py000066400000000000000000000030711415226333200164550ustar00rootroot00000000000000import os import json import unittest import jc.parsers.history THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/history.out'), 'r', encoding='utf-8') as f: self.centos_7_7_history = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/history.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_history = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/history.json'), 'r', encoding='utf-8') as f: self.centos_7_7_history_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/history.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_history_json = json.loads(f.read()) def test_history_nodata(self): """ Test 'history' with no data """ self.assertEqual(jc.parsers.history.parse('', quiet=True), []) def test_history_centos_7_7(self): """ Test 'history' on Centos 7.7 """ self.assertEqual(jc.parsers.history.parse(self.centos_7_7_history, quiet=True), self.centos_7_7_history_json) def test_history_ubuntu_18_4(self): """ Test 'history' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.history.parse(self.ubuntu_18_4_history, quiet=True), self.ubuntu_18_4_history_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_hosts.py000066400000000000000000000030501415226333200161110ustar00rootroot00000000000000import os import json import unittest import jc.parsers.hosts THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/hosts.out'), 'r', encoding='utf-8') as f: self.centos_7_7_hosts = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/hosts.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_hosts = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/hosts.json'), 'r', encoding='utf-8') as f: self.centos_7_7_hosts_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/hosts.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_hosts_json = json.loads(f.read()) def test_hosts_nodata(self): """ Test 'cat /etc/hosts' with no data """ self.assertEqual(jc.parsers.hosts.parse('', quiet=True), []) def test_hosts_centos_7_7(self): """ Test 'cat /etc/hosts' on Centos 7.7 """ self.assertEqual(jc.parsers.hosts.parse(self.centos_7_7_hosts, quiet=True), self.centos_7_7_hosts_json) def test_hosts_ubuntu_18_4(self): """ Test 'cat /etc/hosts' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.hosts.parse(self.ubuntu_18_4_hosts, quiet=True), self.ubuntu_18_4_hosts_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_id.py000066400000000000000000000027111415226333200153500ustar00rootroot00000000000000import os import json import unittest import jc.parsers.id THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/id.out'), 'r', encoding='utf-8') as f: self.centos_7_7_id = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/id.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_id = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/id.json'), 'r', encoding='utf-8') as f: self.centos_7_7_id_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/id.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_id_json = json.loads(f.read()) def test_id_nodata(self): """ Test 'id' with no data """ self.assertEqual(jc.parsers.id.parse('', quiet=True), {}) def test_id_centos_7_7(self): """ Test 'id' on Centos 7.7 """ self.assertEqual(jc.parsers.id.parse(self.centos_7_7_id, quiet=True), self.centos_7_7_id_json) def test_id_osx_10_14_6(self): """ Test 'id' on OSX 10.14.6 """ self.assertEqual(jc.parsers.id.parse(self.osx_10_14_6_id, quiet=True), self.osx_10_14_6_id_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_ifconfig.py000066400000000000000000000076571415226333200165560ustar00rootroot00000000000000import os import json import unittest import jc.parsers.ifconfig THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ifconfig.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ifconfig = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ifconfig.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ifconfig = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/ifconfig.out'), 'r', encoding='utf-8') as f: self.osx_10_11_6_ifconfig = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/ifconfig2.out'), 'r', encoding='utf-8') as f: self.osx_10_11_6_ifconfig2 = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ifconfig.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ifconfig = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ifconfig2.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ifconfig2 = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ifconfig.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ifconfig_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ifconfig.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ifconfig_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/ifconfig.json'), 'r', encoding='utf-8') as f: self.osx_10_11_6_ifconfig_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/ifconfig2.json'), 'r', encoding='utf-8') as f: self.osx_10_11_6_ifconfig2_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ifconfig.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ifconfig_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ifconfig2.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ifconfig2_json = json.loads(f.read()) def test_ifconfig_nodata(self): """ Test 'ifconfig' with no data """ self.assertEqual(jc.parsers.ifconfig.parse('', quiet=True), []) def test_ifconfig_centos_7_7(self): """ Test 'ifconfig' on Centos 7.7 """ self.assertEqual(jc.parsers.ifconfig.parse(self.centos_7_7_ifconfig, quiet=True), self.centos_7_7_ifconfig_json) def test_ifconfig_ubuntu_18_4(self): """ Test 'ifconfig' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.ifconfig.parse(self.ubuntu_18_4_ifconfig, quiet=True), self.ubuntu_18_4_ifconfig_json) def test_ifconfig_osx_10_11_6(self): """ Test 'ifconfig' on OSX 10.11.6 """ self.assertEqual(jc.parsers.ifconfig.parse(self.osx_10_11_6_ifconfig, quiet=True), self.osx_10_11_6_ifconfig_json) def test_ifconfig_osx_10_11_6_2(self): """ Test 'ifconfig' on OSX 10.11.6 """ self.assertEqual(jc.parsers.ifconfig.parse(self.osx_10_11_6_ifconfig2, quiet=True), self.osx_10_11_6_ifconfig2_json) def test_ifconfig_osx_10_14_6(self): """ Test 'ifconfig' on OSX 10.14.6 """ self.assertEqual(jc.parsers.ifconfig.parse(self.osx_10_14_6_ifconfig, quiet=True), self.osx_10_14_6_ifconfig_json) def test_ifconfig_osx_10_14_6_2(self): """ Test 'ifconfig' on OSX 10.14.6 """ self.assertEqual(jc.parsers.ifconfig.parse(self.osx_10_14_6_ifconfig2, quiet=True), self.osx_10_14_6_ifconfig2_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_ini.py000066400000000000000000000030431415226333200155320ustar00rootroot00000000000000import os import unittest import json import jc.parsers.ini THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/ini-test.ini'), 'r', encoding='utf-8') as f: self.generic_ini_test = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/ini-iptelserver.ini'), 'r', encoding='utf-8') as f: self.generic_ini_iptelserver = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/ini-test.json'), 'r', encoding='utf-8') as f: self.generic_ini_test_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/ini-iptelserver.json'), 'r', encoding='utf-8') as f: self.generic_ini_iptelserver_json = json.loads(f.read()) def test_ini_nodata(self): """ Test the test ini file with no data """ self.assertEqual(jc.parsers.ini.parse('', quiet=True), {}) def test_ini_test(self): """ Test the test ini file """ self.assertEqual(jc.parsers.ini.parse(self.generic_ini_test, quiet=True), self.generic_ini_test_json) def test_ini_iptelserver(self): """ Test the iptelserver ini file """ self.assertEqual(jc.parsers.ini.parse(self.generic_ini_iptelserver, quiet=True), self.generic_ini_iptelserver_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_iostat.py000066400000000000000000000210301415226333200162520ustar00rootroot00000000000000import os import unittest import json import jc.parsers.iostat THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iostat.out'), 'r', encoding='utf-8') as f: self.centos_7_7_iostat = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iostat-m.out'), 'r', encoding='utf-8') as f: self.centos_7_7_iostat_m = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iostat-x.out'), 'r', encoding='utf-8') as f: self.centos_7_7_iostat_x = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iostat-mx.out'), 'r', encoding='utf-8') as f: self.centos_7_7_iostat_mx = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iostat-1.out'), 'r', encoding='utf-8') as f: self.centos_7_7_iostat_1 = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/iostat.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_iostat = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/iostat-m.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_iostat_m = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/iostat-x.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_iostat_x = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/iostat-mx.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_iostat_mx = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/iostat-1.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_iostat_1 = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-20.10/iostat.out'), 'r', encoding='utf-8') as f: self.ubuntu_20_10_iostat = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-20.10/iostat-m.out'), 'r', encoding='utf-8') as f: self.ubuntu_20_10_iostat_m = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-20.10/iostat-x.out'), 'r', encoding='utf-8') as f: self.ubuntu_20_10_iostat_x = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-20.10/iostat-mx.out'), 'r', encoding='utf-8') as f: self.ubuntu_20_10_iostat_mx = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iostat.json'), 'r', encoding='utf-8') as f: self.centos_7_7_iostat_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iostat-m.json'), 'r', encoding='utf-8') as f: self.centos_7_7_iostat_m_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iostat-x.json'), 'r', encoding='utf-8') as f: self.centos_7_7_iostat_x_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iostat-mx.json'), 'r', encoding='utf-8') as f: self.centos_7_7_iostat_mx_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iostat-1.json'), 'r', encoding='utf-8') as f: self.centos_7_7_iostat_1_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/iostat.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_iostat_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/iostat-m.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_iostat_m_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/iostat-x.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_iostat_x_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/iostat-mx.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_iostat_mx_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/iostat-1.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_iostat_1_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-20.10/iostat.json'), 'r', encoding='utf-8') as f: self.ubuntu_20_10_iostat_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-20.10/iostat-m.json'), 'r', encoding='utf-8') as f: self.ubuntu_20_10_iostat_m_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-20.10/iostat-x.json'), 'r', encoding='utf-8') as f: self.ubuntu_20_10_iostat_x_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-20.10/iostat-mx.json'), 'r', encoding='utf-8') as f: self.ubuntu_20_10_iostat_mx_json = json.loads(f.read()) def test_iostat_nodata(self): """ Test 'iostat' with no data """ self.assertEqual(jc.parsers.iostat.parse('', quiet=True), []) def test_iostat_centos_7_7(self): """ Test 'iostat' on Centos 7.7 """ self.assertEqual(jc.parsers.iostat.parse(self.centos_7_7_iostat, quiet=True), self.centos_7_7_iostat_json) def test_iostat_m_centos_7_7(self): """ Test 'iostat -m' on Centos 7.7 """ self.assertEqual(jc.parsers.iostat.parse(self.centos_7_7_iostat_m, quiet=True), self.centos_7_7_iostat_m_json) def test_iostat_x_centos_7_7(self): """ Test 'iostat -x' on Centos 7.7 """ self.assertEqual(jc.parsers.iostat.parse(self.centos_7_7_iostat_x, quiet=True), self.centos_7_7_iostat_x_json) def test_iostat_mx_centos_7_7(self): """ Test 'iostat -mx' on Centos 7.7 """ self.assertEqual(jc.parsers.iostat.parse(self.centos_7_7_iostat_mx, quiet=True), self.centos_7_7_iostat_mx_json) def test_iostat_1_centos_7_7(self): """ Test 'iostat 1 3' on Centos 7.7 """ self.assertEqual(jc.parsers.iostat.parse(self.centos_7_7_iostat_1, quiet=True), self.centos_7_7_iostat_1_json) def test_iostat_ubuntu_18_4(self): """ Test 'iostat' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.iostat.parse(self.ubuntu_18_4_iostat, quiet=True), self.ubuntu_18_4_iostat_json) def test_iostat_m_ubuntu_18_4(self): """ Test 'iostat -m' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.iostat.parse(self.ubuntu_18_4_iostat_m, quiet=True), self.ubuntu_18_4_iostat_m_json) def test_iostat_x_ubuntu_18_4(self): """ Test 'iostat -x' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.iostat.parse(self.ubuntu_18_4_iostat_x, quiet=True), self.ubuntu_18_4_iostat_x_json) def test_iostat_mx_ubuntu_18_4(self): """ Test 'iostat -mx' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.iostat.parse(self.ubuntu_18_4_iostat_mx, quiet=True), self.ubuntu_18_4_iostat_mx_json) def test_iostat_1_ubuntu_18_4(self): """ Test 'iostat 1 3' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.iostat.parse(self.ubuntu_18_4_iostat_1, quiet=True), self.ubuntu_18_4_iostat_1_json) def test_iostat_ubuntu_20_10(self): """ Test 'iostat' on Ubuntu 20.10 """ self.assertEqual(jc.parsers.iostat.parse(self.ubuntu_20_10_iostat, quiet=True), self.ubuntu_20_10_iostat_json) def test_iostat_m_ubuntu_20_10(self): """ Test 'iostat -m' on Ubuntu 20.10 """ self.assertEqual(jc.parsers.iostat.parse(self.ubuntu_20_10_iostat_m, quiet=True), self.ubuntu_20_10_iostat_m_json) def test_iostat_x_ubuntu_20_10(self): """ Test 'iostat -x' on Ubuntu 20.10 """ self.assertEqual(jc.parsers.iostat.parse(self.ubuntu_20_10_iostat_x, quiet=True), self.ubuntu_20_10_iostat_x_json) def test_iostat_mx_ubuntu_20_10(self): """ Test 'iostat -mx' on Ubuntu 20.10 """ self.assertEqual(jc.parsers.iostat.parse(self.ubuntu_20_10_iostat_mx, quiet=True), self.ubuntu_20_10_iostat_mx_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_iostat_s.py000066400000000000000000000232111415226333200165770ustar00rootroot00000000000000import os import json import unittest from jc.exceptions import ParseError import jc.parsers.iostat_s THIS_DIR = os.path.dirname(os.path.abspath(__file__)) # To create streaming output use: # $ cat iostat.out | jc --iostat-s | jello -c > iostat-streaming.json class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iostat.out'), 'r', encoding='utf-8') as f: self.centos_7_7_iostat = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iostat-m.out'), 'r', encoding='utf-8') as f: self.centos_7_7_iostat_m = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iostat-x.out'), 'r', encoding='utf-8') as f: self.centos_7_7_iostat_x = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iostat-mx.out'), 'r', encoding='utf-8') as f: self.centos_7_7_iostat_mx = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iostat-1.out'), 'r', encoding='utf-8') as f: self.centos_7_7_iostat_1 = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/iostat.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_iostat = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/iostat-m.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_iostat_m = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/iostat-x.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_iostat_x = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/iostat-mx.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_iostat_mx = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/iostat-1.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_iostat_1 = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-20.10/iostat.out'), 'r', encoding='utf-8') as f: self.ubuntu_20_10_iostat = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-20.10/iostat-m.out'), 'r', encoding='utf-8') as f: self.ubuntu_20_10_iostat_m = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-20.10/iostat-x.out'), 'r', encoding='utf-8') as f: self.ubuntu_20_10_iostat_x = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-20.10/iostat-mx.out'), 'r', encoding='utf-8') as f: self.ubuntu_20_10_iostat_mx = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iostat-streaming.json'), 'r', encoding='utf-8') as f: self.centos_7_7_iostat_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iostat-m-streaming.json'), 'r', encoding='utf-8') as f: self.centos_7_7_iostat_m_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iostat-x-streaming.json'), 'r', encoding='utf-8') as f: self.centos_7_7_iostat_x_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iostat-mx-streaming.json'), 'r', encoding='utf-8') as f: self.centos_7_7_iostat_mx_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iostat-1-streaming.json'), 'r', encoding='utf-8') as f: self.centos_7_7_iostat_1_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/iostat-streaming.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_iostat_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/iostat-m-streaming.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_iostat_m_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/iostat-x-streaming.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_iostat_x_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/iostat-mx-streaming.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_iostat_mx_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/iostat-1-streaming.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_iostat_1_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-20.10/iostat-streaming.json'), 'r', encoding='utf-8') as f: self.ubuntu_20_10_iostat_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-20.10/iostat-m-streaming.json'), 'r', encoding='utf-8') as f: self.ubuntu_20_10_iostat_m_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-20.10/iostat-x-streaming.json'), 'r', encoding='utf-8') as f: self.ubuntu_20_10_iostat_x_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-20.10/iostat-mx-streaming.json'), 'r', encoding='utf-8') as f: self.ubuntu_20_10_iostat_mx_streaming_json = json.loads(f.read()) def test_iostat_empty_dir(self): """ Test plain 'ls' on an empty directory """ self.assertEqual(list(jc.parsers.iostat_s.parse([], quiet=True)), []) def test_iostat_raise_exception(self): """ Test non-iostat data (raises ParseError) """ g = jc.parsers.iostat_s.parse(['not iostat data','not iostat data'], quiet=True) with self.assertRaises(ParseError): list(g) def test_iostat_centos_7_7(self): """ Test 'iostat' on centos 7 """ self.assertEqual(list(jc.parsers.iostat_s.parse(self.centos_7_7_iostat.splitlines(), quiet=True)), self.centos_7_7_iostat_streaming_json) def test_iostat_m_centos_7_7(self): """ Test 'iostat -m' on centos 7 """ self.assertEqual(list(jc.parsers.iostat_s.parse(self.centos_7_7_iostat_m.splitlines(), quiet=True)), self.centos_7_7_iostat_m_streaming_json) def test_iostat_x_centos_7_7(self): """ Test 'iostat -x' on centos 7 """ self.assertEqual(list(jc.parsers.iostat_s.parse(self.centos_7_7_iostat_x.splitlines(), quiet=True)), self.centos_7_7_iostat_x_streaming_json) def test_iostat_mx_centos_7_7(self): """ Test 'iostat -mx' on centos 7 """ self.assertEqual(list(jc.parsers.iostat_s.parse(self.centos_7_7_iostat_mx.splitlines(), quiet=True)), self.centos_7_7_iostat_mx_streaming_json) def test_iostat_1_centos_7_7(self): """ Test 'iostat 1' on centos 7 """ self.assertEqual(list(jc.parsers.iostat_s.parse(self.centos_7_7_iostat_1.splitlines(), quiet=True)), self.centos_7_7_iostat_1_streaming_json) def test_iostat_ubuntu_18_4(self): """ Test 'iostat' on ubuntu 18.4 """ self.assertEqual(list(jc.parsers.iostat_s.parse(self.ubuntu_18_4_iostat.splitlines(), quiet=True)), self.ubuntu_18_4_iostat_streaming_json) def test_iostat_m_ubuntu_18_4(self): """ Test 'iostat -m' on ubuntu 18.4 """ self.assertEqual(list(jc.parsers.iostat_s.parse(self.ubuntu_18_4_iostat_m.splitlines(), quiet=True)), self.ubuntu_18_4_iostat_m_streaming_json) def test_iostat_x_ubuntu_18_4(self): """ Test 'iostat -x' on ubuntu 18.4 """ self.assertEqual(list(jc.parsers.iostat_s.parse(self.ubuntu_18_4_iostat_x.splitlines(), quiet=True)), self.ubuntu_18_4_iostat_x_streaming_json) def test_iostat_mx_ubuntu_18_4(self): """ Test 'iostat -mx' on ubuntu 18.4 """ self.assertEqual(list(jc.parsers.iostat_s.parse(self.ubuntu_18_4_iostat_mx.splitlines(), quiet=True)), self.ubuntu_18_4_iostat_mx_streaming_json) def test_iostat_1_ubuntu_18_4(self): """ Test 'iostat 1' on ubuntu 18.4 """ self.assertEqual(list(jc.parsers.iostat_s.parse(self.ubuntu_18_4_iostat_1.splitlines(), quiet=True)), self.ubuntu_18_4_iostat_1_streaming_json) def test_iostat_ubuntu_20_10(self): """ Test 'iostat' on ubuntu 20.10 """ self.assertEqual(list(jc.parsers.iostat_s.parse(self.ubuntu_20_10_iostat.splitlines(), quiet=True)), self.ubuntu_20_10_iostat_streaming_json) def test_iostat_m_ubuntu_20_10(self): """ Test 'iostat -m' on ubuntu 20.10 """ self.assertEqual(list(jc.parsers.iostat_s.parse(self.ubuntu_20_10_iostat_m.splitlines(), quiet=True)), self.ubuntu_20_10_iostat_m_streaming_json) def test_iostat_x_ubuntu_20_10(self): """ Test 'iostat -x' on ubuntu 20.10 """ self.assertEqual(list(jc.parsers.iostat_s.parse(self.ubuntu_20_10_iostat_x.splitlines(), quiet=True)), self.ubuntu_20_10_iostat_x_streaming_json) def test_iostat_mx_ubuntu_20_10(self): """ Test 'iostat -mx' on ubuntu 20.10 """ self.assertEqual(list(jc.parsers.iostat_s.parse(self.ubuntu_20_10_iostat_mx.splitlines(), quiet=True)), self.ubuntu_20_10_iostat_mx_streaming_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_iptables.py000066400000000000000000000205041415226333200165570ustar00rootroot00000000000000import os import json import unittest import jc.parsers.iptables THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iptables-filter.out'), 'r', encoding='utf-8') as f: self.centos_7_7_iptables_filter = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/iptables-filter.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_iptables_filter = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iptables-filter-line-numbers.out'), 'r', encoding='utf-8') as f: self.centos_7_7_iptables_filter_line_numbers = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/iptables-filter-line-numbers.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_iptables_filter_line_numbers = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iptables-filter-nv.out'), 'r', encoding='utf-8') as f: self.centos_7_7_iptables_filter_nv = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/iptables-filter-nv.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_iptables_filter_nv = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iptables-mangle.out'), 'r', encoding='utf-8') as f: self.centos_7_7_iptables_mangle = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/iptables-mangle.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_iptables_mangle = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iptables-nat.out'), 'r', encoding='utf-8') as f: self.centos_7_7_iptables_nat = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/iptables-nat.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_iptables_nat = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iptables-raw.out'), 'r', encoding='utf-8') as f: self.centos_7_7_iptables_raw = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/iptables-raw.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_iptables_raw = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iptables-filter.json'), 'r', encoding='utf-8') as f: self.centos_7_7_iptables_filter_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/iptables-filter.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_iptables_filter_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iptables-filter-line-numbers.json'), 'r', encoding='utf-8') as f: self.centos_7_7_iptables_filter_line_numbers_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/iptables-filter-line-numbers.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_iptables_filter_line_numbers_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iptables-filter-nv.json'), 'r', encoding='utf-8') as f: self.centos_7_7_iptables_filter_nv_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/iptables-filter-nv.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_iptables_filter_nv_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iptables-mangle.json'), 'r', encoding='utf-8') as f: self.centos_7_7_iptables_mangle_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/iptables-mangle.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_iptables_mangle_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iptables-nat.json'), 'r', encoding='utf-8') as f: self.centos_7_7_iptables_nat_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/iptables-nat.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_iptables_nat_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iptables-raw.json'), 'r', encoding='utf-8') as f: self.centos_7_7_iptables_raw_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/iptables-raw.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_iptables_raw_json = json.loads(f.read()) def test_iptables_nodata(self): """ Test 'sudo iptables' with no data """ self.assertEqual(jc.parsers.iptables.parse('', quiet=True), []) def test_iptables_filter_centos_7_7(self): """ Test 'sudo iptables -L -t filter' on Centos 7.7 """ self.assertEqual(jc.parsers.iptables.parse(self.centos_7_7_iptables_filter, quiet=True), self.centos_7_7_iptables_filter_json) def test_iptables_filter_ubuntu_18_4(self): """ Test 'sudo iptables -L -t filter' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.iptables.parse(self.ubuntu_18_4_iptables_filter, quiet=True), self.ubuntu_18_4_iptables_filter_json) def test_iptables_filter_line_numbers_centos_7_7(self): """ Test 'sudo iptables --line-numbers -L -t filter' on Centos 7.7 """ self.assertEqual(jc.parsers.iptables.parse(self.centos_7_7_iptables_filter_line_numbers, quiet=True), self.centos_7_7_iptables_filter_line_numbers_json) def test_iptables_filter_line_numbers_ubuntu_18_4(self): """ Test 'sudo iptables --line-numbers -L -t filter' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.iptables.parse(self.ubuntu_18_4_iptables_filter_line_numbers, quiet=True), self.ubuntu_18_4_iptables_filter_line_numbers_json) def test_iptables_filter_nv_centos_7_7(self): """ Test 'sudo iptables -nvL -t filter' on Centos 7.7 """ self.assertEqual(jc.parsers.iptables.parse(self.centos_7_7_iptables_filter_nv, quiet=True), self.centos_7_7_iptables_filter_nv_json) def test_iptables_filter_nv_ubuntu_18_4(self): """ Test 'sudo iptables -nvL -t filter' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.iptables.parse(self.ubuntu_18_4_iptables_filter_nv, quiet=True), self.ubuntu_18_4_iptables_filter_nv_json) def test_iptables_mangle_centos_7_7(self): """ Test 'sudo iptables -L -t mangle' on Centos 7.7 """ self.assertEqual(jc.parsers.iptables.parse(self.centos_7_7_iptables_mangle, quiet=True), self.centos_7_7_iptables_mangle_json) def test_iptables_mangle_ubuntu_18_4(self): """ Test 'sudo iptables -L -t mangle' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.iptables.parse(self.ubuntu_18_4_iptables_mangle, quiet=True), self.ubuntu_18_4_iptables_mangle_json) def test_iptables_nat_centos_7_7(self): """ Test 'sudo iptables -L -t nat' on Centos 7.7 """ self.assertEqual(jc.parsers.iptables.parse(self.centos_7_7_iptables_nat, quiet=True), self.centos_7_7_iptables_nat_json) def test_iptables_nat_ubuntu_18_4(self): """ Test 'sudo iptables -L -t nat' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.iptables.parse(self.ubuntu_18_4_iptables_nat, quiet=True), self.ubuntu_18_4_iptables_nat_json) def test_iptables_raw_centos_7_7(self): """ Test 'sudo iptables -L -t raw' on Centos 7.7 """ self.assertEqual(jc.parsers.iptables.parse(self.centos_7_7_iptables_raw, quiet=True), self.centos_7_7_iptables_raw_json) def test_iptables_raw_ubuntu_18_4(self): """ Test 'sudo iptables -L -t raw' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.iptables.parse(self.ubuntu_18_4_iptables_raw, quiet=True), self.ubuntu_18_4_iptables_raw_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_iw_scan.py000066400000000000000000000031041415226333200163740ustar00rootroot00000000000000import os import unittest import json import jc.parsers.iw_scan THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iw-scan0.out'), 'r', encoding='utf-8') as f: self.centos_7_7_iw_scan0 = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iw-scan1.out'), 'r', encoding='utf-8') as f: self.centos_7_7_iw_scan1 = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iw-scan0.json'), 'r', encoding='utf-8') as f: self.centos_7_7_iw_scan0_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/iw-scan1.json'), 'r', encoding='utf-8') as f: self.centos_7_7_iw_scan1_json = json.loads(f.read()) def test_iw_scan_nodata(self): """ Test 'iw_scan' parser with no data """ self.assertEqual(jc.parsers.iw_scan.parse('', quiet=True), []) def test_iw_scan0_centos_7_7(self): """ Test 'iw_scan' on Centos 7.7 """ self.assertEqual(jc.parsers.iw_scan.parse(self.centos_7_7_iw_scan0, quiet=True), self.centos_7_7_iw_scan0_json) def test_iw_scan1_centos_7_7(self): """ Test 'iw_scan' on Centos 7.7 """ self.assertEqual(jc.parsers.iw_scan.parse(self.centos_7_7_iw_scan1, quiet=True), self.centos_7_7_iw_scan1_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_jobs.py000066400000000000000000000027671415226333200157240ustar00rootroot00000000000000import os import json import unittest import jc.parsers.jobs THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/jobs.out'), 'r', encoding='utf-8') as f: self.centos_7_7_jobs = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/jobs.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_jobs = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/jobs.json'), 'r', encoding='utf-8') as f: self.centos_7_7_jobs_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/jobs.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_jobs_json = json.loads(f.read()) def test_jobs_nodata(self): """ Test 'jobs' with no data """ self.assertEqual(jc.parsers.jobs.parse('', quiet=True), []) def test_jobs_centos_7_7(self): """ Test 'jobs' on Centos 7.7 """ self.assertEqual(jc.parsers.jobs.parse(self.centos_7_7_jobs, quiet=True), self.centos_7_7_jobs_json) def test_jobs_ubuntu_18_4(self): """ Test 'jobs' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.jobs.parse(self.ubuntu_18_4_jobs, quiet=True), self.ubuntu_18_4_jobs_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_kv.py000066400000000000000000000032001415226333200153660ustar00rootroot00000000000000import os import unittest import json import jc.parsers.kv THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/keyvalue.txt'), 'r', encoding='utf-8') as f: self.generic_ini_keyvalue = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/keyvalue-ifcfg.txt'), 'r', encoding='utf-8') as f: self.generic_ini_keyvalue_ifcfg = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/keyvalue.json'), 'r', encoding='utf-8') as f: self.generic_ini_keyvalue_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/keyvalue-ifcfg.json'), 'r', encoding='utf-8') as f: self.generic_ini_keyvalue_ifcfg_json = json.loads(f.read()) def test_kv_nodata(self): """ Test the test kv file with no data """ self.assertEqual(jc.parsers.kv.parse('', quiet=True), {}) def test_kv_keyvalue(self): """ Test a file that only includes key/value lines """ self.assertEqual(jc.parsers.kv.parse(self.generic_ini_keyvalue, quiet=True), self.generic_ini_keyvalue_json) def test_kv_keyvalue_ifcfg(self): """ Test a sample ifcfg key/value file that has quotation marks in the values """ self.assertEqual(jc.parsers.kv.parse(self.generic_ini_keyvalue_ifcfg, quiet=True), self.generic_ini_keyvalue_ifcfg_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_last.py000066400000000000000000000164571415226333200157330ustar00rootroot00000000000000import os import sys import time import json import unittest import jc.parsers.last THIS_DIR = os.path.dirname(os.path.abspath(__file__)) # Set the timezone on POSIX systems. Need to manually set for Windows tests if not sys.platform.startswith('win32'): os.environ['TZ'] = 'America/Los_Angeles' time.tzset() class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/last.out'), 'r', encoding='utf-8') as f: self.centos_7_7_last = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/last.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_last = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/last.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_last = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/lastb.out'), 'r', encoding='utf-8') as f: self.centos_7_7_lastb = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/lastb.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_lastb = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/last-w.out'), 'r', encoding='utf-8') as f: self.centos_7_7_last_w = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/last-w.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_last_w = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/last.out'), 'r', encoding='utf-8') as f: self.fedora32_last = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/last.out'), 'r', encoding='utf-8') as f: self.freebsd12_last = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-20.04/last-F.out'), 'r', encoding='utf-8') as f: self.ubuntu_20_4_last_F = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/last-crash.out'), 'r', encoding='utf-8') as f: self.centos_7_7_last_crash = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/last-wF.out'), 'r', encoding='utf-8') as f: self.centos_7_7_last_wF = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/last.json'), 'r', encoding='utf-8') as f: self.centos_7_7_last_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/last.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_last_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/last.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_last_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/lastb.json'), 'r', encoding='utf-8') as f: self.centos_7_7_lastb_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/lastb.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_lastb_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/last-w.json'), 'r', encoding='utf-8') as f: self.centos_7_7_last_w_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/last-w.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_last_w_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/last.json'), 'r', encoding='utf-8') as f: self.fedora32_last_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/last.json'), 'r', encoding='utf-8') as f: self.freebsd12_last_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-20.04/last-F.json'), 'r', encoding='utf-8') as f: self.ubuntu_20_4_last_F_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/last-crash.json'), 'r', encoding='utf-8') as f: self.centos_7_7_last_crash_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/last-wF.json'), 'r', encoding='utf-8') as f: self.centos_7_7_last_wF_json = json.loads(f.read()) def test_last_nodata(self): """ Test plain 'last' with no data """ self.assertEqual(jc.parsers.last.parse('', quiet=True), []) def test_last_centos_7_7(self): """ Test plain 'last' on Centos 7.7 """ self.assertEqual(jc.parsers.last.parse(self.centos_7_7_last, quiet=True), self.centos_7_7_last_json) def test_last_ubuntu_18_4(self): """ Test plain 'last' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.last.parse(self.ubuntu_18_4_last, quiet=True), self.ubuntu_18_4_last_json) def test_last_osx_10_14_6(self): """ Test plain 'last' on OSX 10.14.6 """ self.assertEqual(jc.parsers.last.parse(self.osx_10_14_6_last, quiet=True), self.osx_10_14_6_last_json) def test_lastb_centos_7_7(self): """ Test plain 'lastb' on Centos 7.7 """ self.assertEqual(jc.parsers.last.parse(self.centos_7_7_lastb, quiet=True), self.centos_7_7_lastb_json) def test_lastb_ubuntu_18_4(self): """ Test plain 'lastb' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.last.parse(self.ubuntu_18_4_lastb, quiet=True), self.ubuntu_18_4_lastb_json) def test_last_w_centos_7_7(self): """ Test 'last -w' on Centos 7.7 """ self.assertEqual(jc.parsers.last.parse(self.centos_7_7_last_w, quiet=True), self.centos_7_7_last_w_json) def test_last_w_ubuntu_18_4(self): """ Test 'last -w' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.last.parse(self.ubuntu_18_4_last_w, quiet=True), self.ubuntu_18_4_last_w_json) def test_last_F_ubuntu_20_4(self): """ Test 'last -F' on Ubuntu 20.4 """ self.assertEqual(jc.parsers.last.parse(self.ubuntu_20_4_last_F, quiet=True), self.ubuntu_20_4_last_F_json) def test_last_fedora32(self): """ Test plain 'last' on Fedora32 """ self.assertEqual(jc.parsers.last.parse(self.fedora32_last, quiet=True), self.fedora32_last_json) def test_last_freebsd12(self): """ Test plain 'last' on FreeBSD12 """ self.assertEqual(jc.parsers.last.parse(self.freebsd12_last, quiet=True), self.freebsd12_last_json) def test_last_crash_centos_7_7(self): """ Test plain 'last' on Centos 7.7 with crash entries """ self.assertEqual(jc.parsers.last.parse(self.centos_7_7_last_crash, quiet=True), self.centos_7_7_last_crash_json) def test_last_wF_centos_7_7(self): """ Test 'last -wF' on Centos 7.7 """ self.assertEqual(jc.parsers.last.parse(self.centos_7_7_last_wF, quiet=True), self.centos_7_7_last_wF_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_ls.py000066400000000000000000000523671415226333200154060ustar00rootroot00000000000000import os import sys import time import json import unittest import jc.parsers.ls THIS_DIR = os.path.dirname(os.path.abspath(__file__)) # Set the timezone on POSIX systems. Need to manually set for Windows tests if not sys.platform.startswith('win32'): os.environ['TZ'] = 'America/Los_Angeles' time.tzset() class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ls = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ls = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/ls.out'), 'r', encoding='utf-8') as f: self.osx_10_11_6_ls = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ls = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls-al.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ls_al = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-al.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ls_al = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/ls-al.out'), 'r', encoding='utf-8') as f: self.osx_10_11_6_ls_al = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-al.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ls_al = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls-alh.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ls_alh = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-alh.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ls_alh = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/ls-alh.out'), 'r', encoding='utf-8') as f: self.osx_10_11_6_ls_alh = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-alh.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ls_alh = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls-R.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ls_R = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-R.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ls_R = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-R.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ls_R = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls-alR.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ls_alR = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-alR.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ls_alR = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-alR.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ls_alR = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls-glob.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ls_glob = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-glob.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ls_glob = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-glob.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ls_glob = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls-R-newlines.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ls_R_newlines = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-R-newlines.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ls_R_newlines = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-R-newlines.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ls_R_newlines = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls-l-newlines.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ls_l_newlines = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-l-newlines.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ls_l_newlines = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-l-newlines.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ls_l_newlines = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls-lR-newlines.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ls_lR_newlines = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-lR-newlines.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ls_lR_newlines = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-lR-newlines.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ls_lR_newlines = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls-newlines.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ls_newlines = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-newlines.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ls_newlines = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-newlines.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ls_newlines = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-lR-empty-folder.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ls_lR_empty_folder = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-l-iso.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ls_l_iso = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ls_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ls_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/ls.json'), 'r', encoding='utf-8') as f: self.osx_10_11_6_ls_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ls_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls-al.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ls_al_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-al.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ls_al_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/ls-al.json'), 'r', encoding='utf-8') as f: self.osx_10_11_6_ls_al_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-al.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ls_al_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls-alh.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ls_alh_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-alh.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ls_alh_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/ls-alh.json'), 'r', encoding='utf-8') as f: self.osx_10_11_6_ls_alh_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-alh.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ls_alh_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls-R.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ls_R_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-R.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ls_R_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-R.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ls_R_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls-alR.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ls_alR_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-alR.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ls_alR_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-alR.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ls_alR_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls-glob.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ls_glob_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-glob.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ls_glob_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-glob.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ls_glob_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls-R-newlines.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ls_R_newlines_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-R-newlines.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ls_R_newlines_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-R-newlines.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ls_R_newlines_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls-l-newlines.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ls_l_newlines_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-l-newlines.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ls_l_newlines_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-l-newlines.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ls_l_newlines_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls-lR-newlines.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ls_lR_newlines_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-lR-newlines.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ls_lR_newlines_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-lR-newlines.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ls_lR_newlines_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls-newlines.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ls_newlines_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-newlines.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ls_newlines_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-newlines.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ls_newlines_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-lR-empty-folder.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ls_lR_empty_folder_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-l-iso.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ls_l_iso_json = json.loads(f.read()) def test_ls_empty_dir(self): """ Test plain 'ls' on an empty directory """ self.assertEqual(jc.parsers.ls.parse('', quiet=True), []) def test_ls_centos_7_7(self): """ Test plain 'ls /' on Centos 7.7 """ self.assertEqual(jc.parsers.ls.parse(self.centos_7_7_ls, quiet=True), self.centos_7_7_ls_json) def test_ls_ubuntu_18_4(self): """ Test plain 'ls /' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.ls.parse(self.ubuntu_18_4_ls, quiet=True), self.ubuntu_18_4_ls_json) def test_ls_osx_10_11_6(self): """ Test plain 'ls /' on OSX 10.11.6 """ self.assertEqual(jc.parsers.ls.parse(self.osx_10_11_6_ls, quiet=True), self.osx_10_11_6_ls_json) def test_ls_osx_10_14_6(self): """ Test plain 'ls /' on OSX 10.14.6 """ self.assertEqual(jc.parsers.ls.parse(self.osx_10_14_6_ls, quiet=True), self.osx_10_14_6_ls_json) def test_ls_al_centos_7_7(self): """ Test 'ls -al /' on Centos 7.7 """ self.assertEqual(jc.parsers.ls.parse(self.centos_7_7_ls_al, quiet=True), self.centos_7_7_ls_al_json) def test_ls_al_ubuntu_18_4(self): """ Test 'ls -al /' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.ls.parse(self.ubuntu_18_4_ls_al, quiet=True), self.ubuntu_18_4_ls_al_json) def test_ls_al_osx_10_11_6(self): """ Test 'ls -al /' on OSX 10.11.6 """ self.assertEqual(jc.parsers.ls.parse(self.osx_10_11_6_ls_al, quiet=True), self.osx_10_11_6_ls_al_json) def test_ls_al_osx_10_14_6(self): """ Test 'ls -al /' on OSX 10.14.6 """ self.assertEqual(jc.parsers.ls.parse(self.osx_10_14_6_ls_al, quiet=True), self.osx_10_14_6_ls_al_json) def test_ls_alh_centos_7_7(self): """ Test 'ls -alh /' on Centos 7.7 """ self.assertEqual(jc.parsers.ls.parse(self.centos_7_7_ls_alh, quiet=True), self.centos_7_7_ls_alh_json) def test_ls_alh_ubuntu_18_4(self): """ Test 'ls -alh /' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.ls.parse(self.ubuntu_18_4_ls_alh, quiet=True), self.ubuntu_18_4_ls_alh_json) def test_ls_alh_osx_10_11_6(self): """ Test 'ls -alh /' on OSX 10.11.6 """ self.assertEqual(jc.parsers.ls.parse(self.osx_10_11_6_ls_alh, quiet=True), self.osx_10_11_6_ls_alh_json) def test_ls_alh_osx_10_14_6(self): """ Test 'ls -alh /' on OSX 10.14.6 """ self.assertEqual(jc.parsers.ls.parse(self.osx_10_14_6_ls_alh, quiet=True), self.osx_10_14_6_ls_alh_json) def test_ls_R_centos_7_7(self): """ Test 'ls -R /usr' on Centos 7.7 """ self.assertEqual(jc.parsers.ls.parse(self.centos_7_7_ls_R, quiet=True), self.centos_7_7_ls_R_json) def test_ls_R_ubuntu_18_4(self): """ Test 'ls -R /usr' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.ls.parse(self.ubuntu_18_4_ls_R, quiet=True), self.ubuntu_18_4_ls_R_json) def test_ls_R_osx_10_14_6(self): """ Test 'ls -R /usr' on OSX 10.14.6 """ self.assertEqual(jc.parsers.ls.parse(self.osx_10_14_6_ls_R, quiet=True), self.osx_10_14_6_ls_R_json) def test_ls_alR_centos_7_7(self): """ Test 'ls -alR /usr' on Centos 7.7 """ self.assertEqual(jc.parsers.ls.parse(self.centos_7_7_ls_alR, quiet=True), self.centos_7_7_ls_alR_json) def test_ls_alR_ubuntu_18_4(self): """ Test 'ls -alR /usr' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.ls.parse(self.ubuntu_18_4_ls_alR, quiet=True), self.ubuntu_18_4_ls_alR_json) def test_ls_alR_osx_10_14_6(self): """ Test 'ls -alR /usr' on OSX 10.14.6 """ self.assertEqual(jc.parsers.ls.parse(self.osx_10_14_6_ls_alR, quiet=True), self.osx_10_14_6_ls_alR_json) def test_ls_glob_centos_7_7(self): """ Test 'ls /usr/*' on Centos 7.7 """ self.assertEqual(jc.parsers.ls.parse(self.centos_7_7_ls_glob, quiet=True), self.centos_7_7_ls_glob_json) def test_ls_glob_ubuntu_18_4(self): """ Test 'ls /usr/*' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.ls.parse(self.ubuntu_18_4_ls_glob, quiet=True), self.ubuntu_18_4_ls_glob_json) def test_ls_glob_osx_10_14_6(self): """ Test 'ls /usr/*' on OSX 10.14.6 """ self.assertEqual(jc.parsers.ls.parse(self.osx_10_14_6_ls_glob, quiet=True), self.osx_10_14_6_ls_glob_json) def test_ls_R_newlines_centos_7_7(self): """ Test 'ls -R' for filenames with newline characters on Centos 7.7 """ self.assertEqual(jc.parsers.ls.parse(self.centos_7_7_ls_R_newlines, quiet=True), self.centos_7_7_ls_R_newlines_json) def test_ls_R_newlines_ubuntu_18_4(self): """ Test 'ls -R' for filenames with newline characters on Ubuntu 18.4 """ self.assertEqual(jc.parsers.ls.parse(self.ubuntu_18_4_ls_R_newlines, quiet=True), self.ubuntu_18_4_ls_R_newlines_json) def test_ls_R_newlines_osx_10_14_6(self): """ Test 'ls -R' for filenames with newline characters on OSX 10.14.6 """ self.assertEqual(jc.parsers.ls.parse(self.osx_10_14_6_ls_R_newlines, quiet=True), self.osx_10_14_6_ls_R_newlines_json) def test_ls_l_newlines_centos_7_7(self): """ Test 'ls -l' for filenames with newline characters on Centos 7.7 """ self.assertEqual(jc.parsers.ls.parse(self.centos_7_7_ls_l_newlines, quiet=True), self.centos_7_7_ls_l_newlines_json) def test_ls_l_newlines_ubuntu_18_4(self): """ Test 'ls -l' for filenames with newline characters on Ubuntu 18.4 """ self.assertEqual(jc.parsers.ls.parse(self.ubuntu_18_4_ls_l_newlines, quiet=True), self.ubuntu_18_4_ls_l_newlines_json) def test_ls_l_newlines_osx_10_14_6(self): """ Test 'ls -l' for filenames with newline characters on OSX 10.14.6 """ self.assertEqual(jc.parsers.ls.parse(self.osx_10_14_6_ls_l_newlines, quiet=True), self.osx_10_14_6_ls_l_newlines_json) def test_ls_lR_newlines_centos_7_7(self): """ Test 'ls -lR' for filenames with newline characters on Centos 7.7 """ self.assertEqual(jc.parsers.ls.parse(self.centos_7_7_ls_lR_newlines, quiet=True), self.centos_7_7_ls_lR_newlines_json) def test_ls_lR_newlines_ubuntu_18_4(self): """ Test 'ls -lR' for filenames with newline characters on Ubuntu 18.4 """ self.assertEqual(jc.parsers.ls.parse(self.ubuntu_18_4_ls_lR_newlines, quiet=True), self.ubuntu_18_4_ls_lR_newlines_json) def test_ls_lR_newlines_osx_10_14_6(self): """ Test 'ls -lR' for filenames with newline characters on OSX 10.14.6 """ self.assertEqual(jc.parsers.ls.parse(self.osx_10_14_6_ls_lR_newlines, quiet=True), self.osx_10_14_6_ls_lR_newlines_json) def test_ls_newlines_centos_7_7(self): """ Test 'ls' for filenames with newline characters on Centos 7.7 """ self.assertEqual(jc.parsers.ls.parse(self.centos_7_7_ls_newlines, quiet=True), self.centos_7_7_ls_newlines_json) def test_ls_newlines_ubuntu_18_4(self): """ Test 'ls' for filenames with newline characters on Ubuntu 18.4 """ self.assertEqual(jc.parsers.ls.parse(self.ubuntu_18_4_ls_newlines, quiet=True), self.ubuntu_18_4_ls_newlines_json) def test_ls_newlines_osx_10_14_6(self): """ Test 'ls' for filenames with newline characters on OSX 10.14.6 """ self.assertEqual(jc.parsers.ls.parse(self.osx_10_14_6_ls_newlines, quiet=True), self.osx_10_14_6_ls_newlines_json) def test_ls_lR_empty_folder_osx_10_14_6(self): """ Test 'ls -lR' for empty directories on OSX 10.14.6 """ self.assertEqual(jc.parsers.ls.parse(self.osx_10_14_6_ls_lR_empty_folder, quiet=True), self.osx_10_14_6_ls_lR_empty_folder_json) def test_ls_l_iso_ubuntu_18_4(self): """ Test 'ls -l --time-style=full-iso' for files with convertible dates on Ubuntu 18.4 """ self.assertEqual(jc.parsers.ls.parse(self.ubuntu_18_4_ls_l_iso, quiet=True), self.ubuntu_18_4_ls_l_iso_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_ls_s.py000066400000000000000000000206601415226333200157170ustar00rootroot00000000000000import os import sys import time import json import unittest from jc.exceptions import ParseError import jc.parsers.ls_s THIS_DIR = os.path.dirname(os.path.abspath(__file__)) # Set the timezone on POSIX systems. Need to manually set for Windows tests if not sys.platform.startswith('win32'): os.environ['TZ'] = 'America/Los_Angeles' time.tzset() # To create streaming output use: # $ cat ls-al.out | jc --ls-s | jello -c > ls-al-streaming.json class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ls = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls-al.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ls_al = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-al.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ls_al = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/ls-al.out'), 'r', encoding='utf-8') as f: self.osx_10_11_6_ls_al = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-al.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ls_al = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls-alh.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ls_alh = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-alh.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ls_alh = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/ls-alh.out'), 'r', encoding='utf-8') as f: self.osx_10_11_6_ls_alh = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-alh.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ls_alh = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls-alR.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ls_alR = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-alR.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ls_alR = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-alR.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ls_alR = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-lR-empty-folder.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ls_lR_empty_folder = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-l-iso.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ls_l_iso = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls-al-streaming.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ls_al_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-al-streaming.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ls_al_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-al-streaming.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ls_al_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls-alh-streaming.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ls_alh_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-alh-streaming.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ls_alh_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-alh-streaming.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ls_alh_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls-alR-streaming.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ls_alR_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-alR-streaming.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ls_alR_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-alR-streaming.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ls_alR_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-lR-empty-folder-streaming.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ls_lR_empty_folder_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-l-iso-streaming.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ls_l_iso_streaming_json = json.loads(f.read()) def test_ls_s_empty_dir(self): """ Test plain 'ls' on an empty directory """ self.assertEqual(list(jc.parsers.ls_s.parse([], quiet=True)), []) def test_ls_s_centos_7_7_raise_exception(self): """ Test plain 'ls /' on Centos 7.7 (raises ParseError) """ g = jc.parsers.ls_s.parse(self.centos_7_7_ls.splitlines(), quiet=True) with self.assertRaises(ParseError): list(g) def test_ls_s_al_centos_7_7(self): """ Test 'ls -al /' on Centos 7.7 """ self.assertEqual(list(jc.parsers.ls_s.parse(self.centos_7_7_ls_al.splitlines(), quiet=True)), self.centos_7_7_ls_al_streaming_json) def test_ls_s_al_ubuntu_18_4(self): """ Test 'ls -al /' on Ubuntu 18.4 """ self.assertEqual(list(jc.parsers.ls_s.parse(self.ubuntu_18_4_ls_al.splitlines(), quiet=True)), self.ubuntu_18_4_ls_al_streaming_json) def test_ls_s_al_osx_10_14_6(self): """ Test 'ls -al /' on OSX 10.14.6 """ self.assertEqual(list(jc.parsers.ls_s.parse(self.osx_10_14_6_ls_al.splitlines(), quiet=True)), self.osx_10_14_6_ls_al_streaming_json) def test_ls_s_alh_centos_7_7(self): """ Test 'ls -alh /' on Centos 7.7 """ self.assertEqual(list(jc.parsers.ls_s.parse(self.centos_7_7_ls_alh.splitlines(), quiet=True)), self.centos_7_7_ls_alh_streaming_json) def test_ls_s_alh_ubuntu_18_4(self): """ Test 'ls -alh /' on Ubuntu 18.4 """ self.assertEqual(list(jc.parsers.ls_s.parse(self.ubuntu_18_4_ls_alh.splitlines(), quiet=True)), self.ubuntu_18_4_ls_alh_streaming_json) def test_ls_s_alh_osx_10_14_6(self): """ Test 'ls -alh /' on OSX 10.14.6 """ self.assertEqual(list(jc.parsers.ls_s.parse(self.osx_10_14_6_ls_alh.splitlines(), quiet=True)), self.osx_10_14_6_ls_alh_streaming_json) def test_ls_s_alR_centos_7_7(self): """ Test 'ls -alR /usr' on Centos 7.7 """ self.assertEqual(list(jc.parsers.ls_s.parse(self.centos_7_7_ls_alR.splitlines(), quiet=True)), self.centos_7_7_ls_alR_streaming_json) def test_ls_s_alR_ubuntu_18_4(self): """ Test 'ls -alR /usr' on Ubuntu 18.4 """ self.assertEqual(list(jc.parsers.ls_s.parse(self.ubuntu_18_4_ls_alR.splitlines(), quiet=True)), self.ubuntu_18_4_ls_alR_streaming_json) def test_ls_s_alR_osx_10_14_6(self): """ Test 'ls -alR /usr' on OSX 10.14.6 """ self.assertEqual(list(jc.parsers.ls_s.parse(self.osx_10_14_6_ls_alR.splitlines(), quiet=True)), self.osx_10_14_6_ls_alR_streaming_json) def test_ls_s_lR_empty_folder_osx_10_14_6(self): """ Test 'ls -lR' for empty directories on OSX 10.14.6 """ self.assertEqual(list(jc.parsers.ls_s.parse(self.osx_10_14_6_ls_lR_empty_folder.splitlines(), quiet=True)), self.osx_10_14_6_ls_lR_empty_folder_streaming_json) def test_ls_s_l_iso_ubuntu_18_4(self): """ Test 'ls -l --time-style=full-iso' for files with convertible dates on Ubuntu 18.4 """ self.assertEqual(list(jc.parsers.ls_s.parse(self.ubuntu_18_4_ls_l_iso.splitlines(), quiet=True)), self.ubuntu_18_4_ls_l_iso_streaming_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_lsblk.py000066400000000000000000000062551415226333200160720ustar00rootroot00000000000000import os import json import unittest import jc.parsers.lsblk THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/lsblk.out'), 'r', encoding='utf-8') as f: self.centos_7_7_lsblk = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/lsblk.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_lsblk = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/lsblk-allcols.out'), 'r', encoding='utf-8') as f: self.centos_7_7_lsblk_allcols = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/lsblk-allcols.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_lsblk_allcols = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/lsblk.json'), 'r', encoding='utf-8') as f: self.centos_7_7_lsblk_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/lsblk.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_lsblk_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/lsblk-allcols.json'), 'r', encoding='utf-8') as f: self.centos_7_7_lsblk_allcols_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/lsblk-allcols.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_lsblk_allcols_json = json.loads(f.read()) def test_lsblk_nodata(self): """ Test 'lsblk' with no data """ self.assertEqual(jc.parsers.lsblk.parse('', quiet=True), []) def test_lsblk_centos_7_7(self): """ Test 'lsblk' on Centos 7.7 """ self.assertEqual(jc.parsers.lsblk.parse(self.centos_7_7_lsblk, quiet=True), self.centos_7_7_lsblk_json) def test_lsblk_ubuntu_18_4(self): """ Test 'lsblk' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.lsblk.parse(self.ubuntu_18_4_lsblk, quiet=True), self.ubuntu_18_4_lsblk_json) def test_lsblk_allcols_centos_7_7(self): """ Test 'lsblk -o +KNAME,FSTYPE,LABEL,UUID,PARTLABEL,PARTUUID,RA,MODEL,SERIAL,STATE,OWNER,GROUP,MODE,ALIGNMENT,MIN-IO,OPT-IO,PHY-SEC,LOG-SEC,ROTA,SCHED,RQ-SIZE,DISC-ALN,DISC-GRAN,DISC-MAX,DISC-ZERO,WSAME,WWN,RAND,PKNAME,HCTL,TRAN,REV,VENDOR' on Centos 7.7 """ self.assertEqual(jc.parsers.lsblk.parse(self.centos_7_7_lsblk_allcols, quiet=True), self.centos_7_7_lsblk_allcols_json) def test_lsblk_allcols_ubuntu_18_4(self): """ Test 'lsblk -o +KNAME,FSTYPE,LABEL,UUID,PARTLABEL,PARTUUID,RA,MODEL,SERIAL,STATE,OWNER,GROUP,MODE,ALIGNMENT,MIN-IO,OPT-IO,PHY-SEC,LOG-SEC,ROTA,SCHED,RQ-SIZE,DISC-ALN,DISC-GRAN,DISC-MAX,DISC-ZERO,WSAME,WWN,RAND,PKNAME,HCTL,TRAN,REV,VENDOR' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.lsblk.parse(self.ubuntu_18_4_lsblk_allcols, quiet=True), self.ubuntu_18_4_lsblk_allcols_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_lsmod.py000066400000000000000000000030151415226333200160700ustar00rootroot00000000000000import os import json import unittest import jc.parsers.lsmod THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/lsmod.out'), 'r', encoding='utf-8') as f: self.centos_7_7_lsmod = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/lsmod.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_lsmod = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/lsmod.json'), 'r', encoding='utf-8') as f: self.centos_7_7_lsmod_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/lsmod.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_lsmod_json = json.loads(f.read()) def test_lsmod_nodata(self): """ Test 'lsmod' with no data """ self.assertEqual(jc.parsers.lsmod.parse('', quiet=True), []) def test_lsmod_centos_7_7(self): """ Test 'lsmod' on Centos 7.7 """ self.assertEqual(jc.parsers.lsmod.parse(self.centos_7_7_lsmod, quiet=True), self.centos_7_7_lsmod_json) def test_lsmod_ubuntu_18_4(self): """ Test 'lsmod' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.lsmod.parse(self.ubuntu_18_4_lsmod, quiet=True), self.ubuntu_18_4_lsmod_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_lsof.py000066400000000000000000000052411415226333200157200ustar00rootroot00000000000000import os import json import unittest import jc.parsers.lsof THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/lsof.out'), 'r', encoding='utf-8') as f: self.centos_7_7_lsof = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/lsof.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_lsof = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/lsof-sudo.out'), 'r', encoding='utf-8') as f: self.centos_7_7_lsof_sudo = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/lsof-sudo.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_lsof_sudo = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/lsof.json'), 'r', encoding='utf-8') as f: self.centos_7_7_lsof_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/lsof.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_lsof_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/lsof-sudo.json'), 'r', encoding='utf-8') as f: self.centos_7_7_lsof_sudo_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/lsof-sudo.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_lsof_sudo_json = json.loads(f.read()) def test_lsof_nodata(self): """ Test 'lsof' with no data """ self.assertEqual(jc.parsers.lsof.parse('', quiet=True), []) def test_lsof_centos_7_7(self): """ Test 'lsof' on Centos 7.7 """ self.assertEqual(jc.parsers.lsof.parse(self.centos_7_7_lsof, quiet=True), self.centos_7_7_lsof_json) def test_lsof_ubuntu_18_4(self): """ Test 'lsof' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.lsof.parse(self.ubuntu_18_4_lsof, quiet=True), self.ubuntu_18_4_lsof_json) def test_lsof_sudo_centos_7_7(self): """ Test 'sudo lsof' on Centos 7.7 """ self.assertEqual(jc.parsers.lsof.parse(self.centos_7_7_lsof_sudo, quiet=True), self.centos_7_7_lsof_sudo_json) def test_lsof_sudo_ubuntu_18_4(self): """ Test 'sudo lsof' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.lsof.parse(self.ubuntu_18_4_lsof_sudo, quiet=True), self.ubuntu_18_4_lsof_sudo_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_lsusb.py000066400000000000000000000076031415226333200161110ustar00rootroot00000000000000import os import json import unittest import jc.parsers.lsusb from jc.exceptions import ParseError THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/lsusb.out'), 'r', encoding='utf-8') as f: self.centos_7_7_lsusb = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/lsusb-v.out'), 'r', encoding='utf-8') as f: self.centos_7_7_lsusb_v = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/lsusb-v-single.out'), 'r', encoding='utf-8') as f: self.centos_7_7_lsusb_v_single = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/lsusb-test-attributes.out'), 'r', encoding='utf-8') as f: self.generic_lsusb_test_attributes = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/lsusb-test-attributes2.out'), 'r', encoding='utf-8') as f: self.generic_lsusb_test_attributes2 = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/lsusb-t.out'), 'r', encoding='utf-8') as f: self.generic_lsusb_t = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/lsusb.json'), 'r', encoding='utf-8') as f: self.centos_7_7_lsusb_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/lsusb-v.json'), 'r', encoding='utf-8') as f: self.centos_7_7_lsusb_v_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/lsusb-v-single.json'), 'r', encoding='utf-8') as f: self.centos_7_7_lsusb_v_single_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/lsusb-test-attributes.json'), 'r', encoding='utf-8') as f: self.generic_lsusb_test_attributes_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/lsusb-test-attributes2.json'), 'r', encoding='utf-8') as f: self.generic_lsusb_test_attributes2_json = json.loads(f.read()) def test_lsusb_nodata(self): """ Test 'lsusb' with no data """ self.assertEqual(jc.parsers.lsusb.parse('', quiet=True), []) def test_lsusb_parse_error_generic(self): """ Test 'lsusb' with -t option (should raise ParseError) """ self.assertRaises(ParseError, jc.parsers.lsusb.parse, self.generic_lsusb_t, quiet=True) def test_lsusb_centos_7_7(self): """ Test 'lsusb' on Centos 7.7 """ self.assertEqual(jc.parsers.lsusb.parse(self.centos_7_7_lsusb, quiet=True), self.centos_7_7_lsusb_json) def test_lsusb_v_centos_7_7(self): """ Test 'lsusb -v' on Centos 7.7 """ self.assertEqual(jc.parsers.lsusb.parse(self.centos_7_7_lsusb_v, quiet=True), self.centos_7_7_lsusb_v_json) def test_lsusb_v_single_centos_7_7(self): """ Test 'lsusb -v' with different hardware """ self.assertEqual(jc.parsers.lsusb.parse(self.centos_7_7_lsusb_v_single, quiet=True), self.centos_7_7_lsusb_v_single_json) def test_lsusb_test_attributes_generic(self): """ Test 'lsusb -v' with stress test attributes """ self.assertEqual(jc.parsers.lsusb.parse(self.generic_lsusb_test_attributes, quiet=True), self.generic_lsusb_test_attributes_json) def test_lsusb_test_attributes2_generic(self): """ Test 'lsusb -v' with stress test attributes 2 """ self.assertEqual(jc.parsers.lsusb.parse(self.generic_lsusb_test_attributes2, quiet=True), self.generic_lsusb_test_attributes2_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_mount.py000066400000000000000000000052111415226333200161140ustar00rootroot00000000000000import os import json import unittest import jc.parsers.mount THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/mount.out'), 'r', encoding='utf-8') as f: self.centos_7_7_mount = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/mount.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_mount = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/mount.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_mount = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/mount2.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_mount2 = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/mount.json'), 'r', encoding='utf-8') as f: self.centos_7_7_mount_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/mount.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_mount_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/mount.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_mount_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/mount2.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_mount2_json = json.loads(f.read()) def test_mount_nodata(self): """ Test 'mount' with no data """ self.assertEqual(jc.parsers.mount.parse('', quiet=True), []) def test_mount_centos_7_7(self): """ Test 'mount' on Centos 7.7 """ self.assertEqual(jc.parsers.mount.parse(self.centos_7_7_mount, quiet=True), self.centos_7_7_mount_json) def test_mount_ubuntu_18_4(self): """ Test 'mount' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.mount.parse(self.ubuntu_18_4_mount, quiet=True), self.ubuntu_18_4_mount_json) def test_mount_osx_10_14_6(self): """ Test 'mount' on OSX 10.14.6 """ self.assertEqual(jc.parsers.mount.parse(self.osx_10_14_6_mount, quiet=True), self.osx_10_14_6_mount_json) def test_mount2_osx_10_14_6(self): """ Test 'mount' on OSX 10.14.6 #2 """ self.assertEqual(jc.parsers.mount.parse(self.osx_10_14_6_mount2, quiet=True), self.osx_10_14_6_mount2_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_netstat.py000066400000000000000000000524271415226333200164470ustar00rootroot00000000000000import os import json import unittest import jc.parsers.netstat THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # # input # # netstat with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/netstat.out'), 'r', encoding='utf-8') as f: self.centos_7_7_netstat = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/netstat.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_netstat = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/netstat-l.out'), 'r', encoding='utf-8') as f: self.centos_7_7_netstat_l = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/netstat-l.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_netstat_l = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/netstat-p.out'), 'r', encoding='utf-8') as f: self.centos_7_7_netstat_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/netstat-p.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_netstat_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/netstat-sudo-lnp.out'), 'r', encoding='utf-8') as f: self.centos_7_7_netstat_sudo_lnp = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/netstat-sudo-lnp.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_netstat_sudo_lnp = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/netstat-sudo-aeep.out'), 'r', encoding='utf-8') as f: self.centos_7_7_netstat_sudo_aeep = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/netstat-sudo-aeep.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_netstat_sudo_aeep = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/netstat.out'), 'r', encoding='utf-8') as f: self.fedora32_netstat = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/netstat.out'), 'r', encoding='utf-8') as f: self.osx_14_6_netstat = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/netstat-An.out'), 'r', encoding='utf-8') as f: self.osx_14_6_netstat_An = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/netstat-Abn.out'), 'r', encoding='utf-8') as f: self.osx_14_6_netstat_Abn = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/netstat-Aa.out'), 'r', encoding='utf-8') as f: self.freebsd12_netstat_Aa = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/netstat-an.out'), 'r', encoding='utf-8') as f: self.freebsd12_netstat_an = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/netstat-AanP.out'), 'r', encoding='utf-8') as f: self.freebsd12_netstat_AanP = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/netstat-AaT.out'), 'r', encoding='utf-8') as f: self.freebsd12_netstat_AaT = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/netstat-Aax.out'), 'r', encoding='utf-8') as f: self.freebsd12_netstat_Aax = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/netstat-aT.out'), 'r', encoding='utf-8') as f: self.freebsd12_netstat_aT = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/netstat-old.out'), 'r', encoding='utf-8') as f: self.generic_netstat_old = f.read() # netstat -r with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/netstat-r.out'), 'r', encoding='utf-8') as f: self.centos_7_7_netstat_r = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/netstat-rne.out'), 'r', encoding='utf-8') as f: self.centos_7_7_netstat_rne = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/netstat-rnee.out'), 'r', encoding='utf-8') as f: self.centos_7_7_netstat_rnee = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/netstat-r.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_netstat_r = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/netstat-rne.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_netstat_rne = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/netstat-rnee.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_netstat_rnee = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/netstat-r.out'), 'r', encoding='utf-8') as f: self.osx_14_6_netstat_r = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/netstat-rnl.out'), 'r', encoding='utf-8') as f: self.osx_14_6_netstat_rnl = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/netstat-r.out'), 'r', encoding='utf-8') as f: self.freebsd12_netstat_r = f.read() # netstat -i with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/netstat-i.out'), 'r', encoding='utf-8') as f: self.centos_7_7_netstat_i = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/netstat-i.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_netstat_i = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/netstat-i.out'), 'r', encoding='utf-8') as f: self.osx_14_6_netstat_i = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/netstat-i.out'), 'r', encoding='utf-8') as f: self.freebsd12_netstat_i = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/netstat-ib.out'), 'r', encoding='utf-8') as f: self.freebsd12_netstat_ib = f.read() # # output # # netstat with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/netstat.json'), 'r', encoding='utf-8') as f: self.centos_7_7_netstat_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/netstat.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_netstat_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/netstat-l.json'), 'r', encoding='utf-8') as f: self.centos_7_7_netstat_l_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/netstat-l.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_netstat_l_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/netstat-p.json'), 'r', encoding='utf-8') as f: self.centos_7_7_netstat_p_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/netstat-p.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_netstat_p_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/netstat-sudo-lnp.json'), 'r', encoding='utf-8') as f: self.centos_7_7_netstat_sudo_lnp_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/netstat-sudo-lnp.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_netstat_sudo_lnp_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/netstat-sudo-aeep.json'), 'r', encoding='utf-8') as f: self.centos_7_7_netstat_sudo_aeep_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/netstat-sudo-aeep.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_netstat_sudo_aeep_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/netstat.json'), 'r', encoding='utf-8') as f: self.fedora32_netstat_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/netstat.json'), 'r', encoding='utf-8') as f: self.osx_14_6_netstat_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/netstat-An.json'), 'r', encoding='utf-8') as f: self.osx_14_6_netstat_An_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/netstat-Abn.json'), 'r', encoding='utf-8') as f: self.osx_14_6_netstat_Abn_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/netstat-Aa.json'), 'r', encoding='utf-8') as f: self.freebsd12_netstat_Aa_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/netstat-AanP.json'), 'r', encoding='utf-8') as f: self.freebsd12_netstat_AanP_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/netstat-AaT.json'), 'r', encoding='utf-8') as f: self.freebsd12_netstat_AaT_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/netstat-Aax.json'), 'r', encoding='utf-8') as f: self.freebsd12_netstat_Aax_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/netstat-aT.json'), 'r', encoding='utf-8') as f: self.freebsd12_netstat_aT_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/netstat-an.json'), 'r', encoding='utf-8') as f: self.freebsd12_netstat_an_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/netstat-old.json'), 'r', encoding='utf-8') as f: self.generic_netstat_old_json = json.loads(f.read()) # netsat -r with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/netstat-r.json'), 'r', encoding='utf-8') as f: self.centos_7_7_netstat_r_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/netstat-rne.json'), 'r', encoding='utf-8') as f: self.centos_7_7_netstat_rne_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/netstat-rnee.json'), 'r', encoding='utf-8') as f: self.centos_7_7_netstat_rnee_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/netstat-r.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_netstat_r_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/netstat-rne.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_netstat_rne_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/netstat-rnee.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_netstat_rnee_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/netstat-r.json'), 'r', encoding='utf-8') as f: self.osx_14_6_netstat_r_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/netstat-rnl.json'), 'r', encoding='utf-8') as f: self.osx_14_6_netstat_rnl_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/netstat-r.json'), 'r', encoding='utf-8') as f: self.freebsd12_netstat_r_json = json.loads(f.read()) # netstat -i with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/netstat-i.json'), 'r', encoding='utf-8') as f: self.centos_7_7_netstat_i_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/netstat-i.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_netstat_i_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/netstat-i.json'), 'r', encoding='utf-8') as f: self.osx_14_6_netstat_i_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/netstat-i.json'), 'r', encoding='utf-8') as f: self.freebsd12_netstat_i_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/netstat-ib.json'), 'r', encoding='utf-8') as f: self.freebsd12_netstat_ib_json = json.loads(f.read()) def test_netstat_nodata(self): """ Test 'netstat' with no data """ self.assertEqual(jc.parsers.netstat.parse('', quiet=True), []) def test_netstat_centos_7_7(self): """ Test 'netstat' on Centos 7.7 """ self.assertEqual(jc.parsers.netstat.parse(self.centos_7_7_netstat, quiet=True), self.centos_7_7_netstat_json) def test_netstat_ubuntu_18_4(self): """ Test 'netstat' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.netstat.parse(self.ubuntu_18_4_netstat, quiet=True), self.ubuntu_18_4_netstat_json) def test_netstat_l_centos_7_7(self): """ Test 'netstat -l' on Centos 7.7 """ self.assertEqual(jc.parsers.netstat.parse(self.centos_7_7_netstat_l, quiet=True), self.centos_7_7_netstat_l_json) def test_netstat_l_ubuntu_18_4(self): """ Test 'netstat -l' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.netstat.parse(self.ubuntu_18_4_netstat_l, quiet=True), self.ubuntu_18_4_netstat_l_json) def test_netstat_p_centos_7_7(self): """ Test 'netstat -l' on Centos 7.7 """ self.assertEqual(jc.parsers.netstat.parse(self.centos_7_7_netstat_p, quiet=True), self.centos_7_7_netstat_p_json) def test_netstat_p_ubuntu_18_4(self): """ Test 'netstat -l' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.netstat.parse(self.ubuntu_18_4_netstat_p, quiet=True), self.ubuntu_18_4_netstat_p_json) def test_netstat_sudo_lnp_centos_7_7(self): """ Test 'sudo netstat -lnp' on Centos 7.7 """ self.assertEqual(jc.parsers.netstat.parse(self.centos_7_7_netstat_sudo_lnp, quiet=True), self.centos_7_7_netstat_sudo_lnp_json) def test_netstat_sudo_lnp_ubuntu_18_4(self): """ Test 'sudo netstat -lnp' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.netstat.parse(self.ubuntu_18_4_netstat_sudo_lnp, quiet=True), self.ubuntu_18_4_netstat_sudo_lnp_json) def test_netstat_sudo_aeep_centos_7_7(self): """ Test 'sudo netstat -aeep' on Centos 7.7 """ self.assertEqual(jc.parsers.netstat.parse(self.centos_7_7_netstat_sudo_aeep, quiet=True), self.centos_7_7_netstat_sudo_aeep_json) def test_netstat_sudo_aeep_ubuntu_18_4(self): """ Test 'sudo netstat -aeep' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.netstat.parse(self.ubuntu_18_4_netstat_sudo_aeep, quiet=True), self.ubuntu_18_4_netstat_sudo_aeep_json) def test_netstat_fedora32(self): """ Test 'netstat' on Fedora32 """ self.assertEqual(jc.parsers.netstat.parse(self.fedora32_netstat, quiet=True), self.fedora32_netstat_json) def test_netstat_osx_14_6(self): """ Test 'netstat' on OSX 14.6 """ self.assertEqual(jc.parsers.netstat.parse(self.osx_14_6_netstat, quiet=True), self.osx_14_6_netstat_json) def test_netstat_An_osx_14_6(self): """ Test 'netstat -An' on OSX 14.6 """ self.assertEqual(jc.parsers.netstat.parse(self.osx_14_6_netstat_An, quiet=True), self.osx_14_6_netstat_An_json) def test_netstat_Abn_osx_14_6(self): """ Test 'netstat -Abn' on OSX 14.6 """ self.assertEqual(jc.parsers.netstat.parse(self.osx_14_6_netstat_Abn, quiet=True), self.osx_14_6_netstat_Abn_json) def test_netstat_Aa_freebsd12(self): """ Test 'netstat -Aa' on FreeBSD12 """ self.assertEqual(jc.parsers.netstat.parse(self.freebsd12_netstat_Aa, quiet=True), self.freebsd12_netstat_Aa_json) def test_netstat_AanP_freebsd12(self): """ Test 'netstat -AanP' on FreeBSD12 """ self.assertEqual(jc.parsers.netstat.parse(self.freebsd12_netstat_AanP, quiet=True), self.freebsd12_netstat_AanP_json) def test_netstat_AaT_freebsd12(self): """ Test 'netstat -AaT' on FreeBSD12 """ self.assertEqual(jc.parsers.netstat.parse(self.freebsd12_netstat_AaT, quiet=True), self.freebsd12_netstat_AaT_json) def test_netstat_Aax_freebsd12(self): """ Test 'netstat -Aax' on FreeBSD12 """ self.assertEqual(jc.parsers.netstat.parse(self.freebsd12_netstat_Aax, quiet=True), self.freebsd12_netstat_Aax_json) def test_netstat_aT_freebsd12(self): """ Test 'netstat -aT' on FreeBSD12 """ self.assertEqual(jc.parsers.netstat.parse(self.freebsd12_netstat_aT, quiet=True), self.freebsd12_netstat_aT_json) def test_netstat_an_freebsd12(self): """ Test 'netstat -an' on FreeBSD12 """ self.assertEqual(jc.parsers.netstat.parse(self.freebsd12_netstat_an, quiet=True), self.freebsd12_netstat_an_json) def test_netstat_old_generic(self): """ Test 'netstat' with older version of netstat on linux """ self.assertEqual(jc.parsers.netstat.parse(self.generic_netstat_old, quiet=True), self.generic_netstat_old_json) def test_netstat_r_centos_7_7(self): """ Test 'netstat -r' on Centos 7.7 """ self.assertEqual(jc.parsers.netstat.parse(self.centos_7_7_netstat_r, quiet=True), self.centos_7_7_netstat_r_json) def test_netstat_rne_centos_7_7(self): """ Test 'netstat -rne' on Centos 7.7 """ self.assertEqual(jc.parsers.netstat.parse(self.centos_7_7_netstat_rne, quiet=True), self.centos_7_7_netstat_rne_json) def test_netstat_rnee_centos_7_7(self): """ Test 'netstat -rnee' on Centos 7.7 """ self.assertEqual(jc.parsers.netstat.parse(self.centos_7_7_netstat_rnee, quiet=True), self.centos_7_7_netstat_rnee_json) def test_netstat_r_ubuntu_18_4(self): """ Test 'netstat -r' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.netstat.parse(self.ubuntu_18_4_netstat_r, quiet=True), self.ubuntu_18_4_netstat_r_json) def test_netstat_rne_ubuntu_18_4(self): """ Test 'netstat -rne' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.netstat.parse(self.ubuntu_18_4_netstat_rne, quiet=True), self.ubuntu_18_4_netstat_rne_json) def test_netstat_rnee_ubuntu_18_4(self): """ Test 'netstat -rnee' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.netstat.parse(self.ubuntu_18_4_netstat_rnee, quiet=True), self.ubuntu_18_4_netstat_rnee_json) def test_netstat_r_osx_14_6(self): """ Test 'netstat -r' on OSX 14.6 """ self.assertEqual(jc.parsers.netstat.parse(self.osx_14_6_netstat_r, quiet=True), self.osx_14_6_netstat_r_json) def test_netstat_rnl_osx_14_6(self): """ Test 'netstat -rnl' on OSX 14.6 """ self.assertEqual(jc.parsers.netstat.parse(self.osx_14_6_netstat_rnl, quiet=True), self.osx_14_6_netstat_rnl_json) def test_netstat_r_freebsd12(self): """ Test 'netstat -r' on FreeBSD12 """ self.assertEqual(jc.parsers.netstat.parse(self.freebsd12_netstat_r, quiet=True), self.freebsd12_netstat_r_json) def test_netstat_i_centos_7_7(self): """ Test 'netstat -i' on Centos 7.7 """ self.assertEqual(jc.parsers.netstat.parse(self.centos_7_7_netstat_i, quiet=True), self.centos_7_7_netstat_i_json) def test_netstat_i_ubuntu_18_4(self): """ Test 'netstat -i' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.netstat.parse(self.ubuntu_18_4_netstat_i, quiet=True), self.ubuntu_18_4_netstat_i_json) def test_netstat_i_osx_14_6(self): """ Test 'netstat -i' on OSX 14.6 """ self.assertEqual(jc.parsers.netstat.parse(self.osx_14_6_netstat_i, quiet=True), self.osx_14_6_netstat_i_json) def test_netstat_i_freebsd12(self): """ Test 'netstat -i' on FreeBSD12 """ self.assertEqual(jc.parsers.netstat.parse(self.freebsd12_netstat_i, quiet=True), self.freebsd12_netstat_i_json) def test_netstat_ib_freebsd12(self): """ Test 'netstat -ib' on FreeBSD12 """ self.assertEqual(jc.parsers.netstat.parse(self.freebsd12_netstat_ib, quiet=True), self.freebsd12_netstat_ib_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_ntpq.py000066400000000000000000000074761415226333200157530ustar00rootroot00000000000000import os import unittest import json import jc.parsers.ntpq THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ntpq-p.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ntpq_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ntpq-p.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ntpq_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ntpq-pn.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ntpq_pn = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ntpq-pn.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ntpq_pn = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ntpq-p2.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ntpq_p2 = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ntpq-p.out'), 'r', encoding='utf-8') as f: self.freebsd12_ntpq_p = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ntpq-p.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ntpq_p_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ntpq-p.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ntpq_p_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ntpq-pn.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ntpq_pn_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ntpq-pn.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ntpq_pn_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ntpq-p2.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ntpq_p2_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ntpq-p.json'), 'r', encoding='utf-8') as f: self.freebsd12_ntpq_p_json = json.loads(f.read()) def test_ntpq_p_nodata(self): """ Test 'ntpq -p' with no data """ self.assertEqual(jc.parsers.ntpq.parse('', quiet=True), []) def test_ntpq_p_centos_7_7(self): """ Test 'ntpq -p' on Centos 7.7 """ self.assertEqual(jc.parsers.ntpq.parse(self.centos_7_7_ntpq_p, quiet=True), self.centos_7_7_ntpq_p_json) def test_ntpq_p_ubuntu_18_4(self): """ Test 'ntpq -p' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.ntpq.parse(self.ubuntu_18_4_ntpq_p, quiet=True), self.ubuntu_18_4_ntpq_p_json) def test_ntpq_pn_centos_7_7(self): """ Test 'ntpq -pn' on Centos 7.7 """ self.assertEqual(jc.parsers.ntpq.parse(self.centos_7_7_ntpq_pn, quiet=True), self.centos_7_7_ntpq_pn_json) def test_ntpq_pn_ubuntu_18_4(self): """ Test 'ntpq -pn' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.ntpq.parse(self.ubuntu_18_4_ntpq_pn, quiet=True), self.ubuntu_18_4_ntpq_pn_json) def test_ntpq_p2_ubuntu_18_4(self): """ Test 'ntpq -p' with ip data with spaces on Ubuntu 18.4 """ self.assertEqual(jc.parsers.ntpq.parse(self.ubuntu_18_4_ntpq_p2, quiet=True), self.ubuntu_18_4_ntpq_p2_json) def test_ntpq_p_freebsd12(self): """ Test 'ntpq -p' on FreeBSD12 """ self.assertEqual(jc.parsers.ntpq.parse(self.freebsd12_ntpq_p, quiet=True), self.freebsd12_ntpq_p_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_passwd.py000066400000000000000000000042111415226333200162520ustar00rootroot00000000000000import os import json import unittest import jc.parsers.passwd THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/passwd.out'), 'r', encoding='utf-8') as f: self.centos_7_7_passwd = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/passwd.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_passwd = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/passwd.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_passwd = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/passwd.json'), 'r', encoding='utf-8') as f: self.centos_7_7_passwd_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/passwd.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_passwd_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/passwd.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_passwd_json = json.loads(f.read()) def test_passwd_nodata(self): """ Test 'cat /etc/passwd' with no data """ self.assertEqual(jc.parsers.passwd.parse('', quiet=True), []) def test_passwd_centos_7_7(self): """ Test 'cat /etc/passwd' on Centos 7.7 """ self.assertEqual(jc.parsers.passwd.parse(self.centos_7_7_passwd, quiet=True), self.centos_7_7_passwd_json) def test_passwd_ubuntu_18_4(self): """ Test 'cat /etc/passwd' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.passwd.parse(self.ubuntu_18_4_passwd, quiet=True), self.ubuntu_18_4_passwd_json) def test_passwd_osx_10_14_6(self): """ Test 'cat /etc/passwd' on OSX 10.14.6 """ self.assertEqual(jc.parsers.passwd.parse(self.osx_10_14_6_passwd, quiet=True), self.osx_10_14_6_passwd_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_ping.py000066400000000000000000001210711415226333200157120ustar00rootroot00000000000000import os import unittest import json import jc.parsers.ping THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input # centos with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping-ip-O.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ping_ip_O = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping-ip-O-D.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ping_ip_O_D = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping-hostname-O.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ping_hostname_O = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping-hostname-O-p.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ping_hostname_O_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping-hostname-O-D-p-s.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ping_hostname_O_D_p_s = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping6-ip-O-p.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ping6_ip_O_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping6-ip-O-p-unparsable.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ping6_ip_O_p_unparsable = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping6-ip-O-D-p.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ping6_ip_O_D_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping6-hostname-O-p.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ping6_hostname_O_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping6-hostname-O-D-p-s.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ping6_hostname_O_D_p_s = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping-ip-dup.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ping_ip_dup = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping6-ip-dup.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ping6_ip_dup = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping-ip-O-unparsedlines.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ping_ip_O_unparsedlines = f.read() # ubuntu with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ping-ip-O.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ping_ip_O = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ping-ip-O-D.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ping_ip_O_D = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ping-hostname-O.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ping_hostname_O = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ping-hostname-O-p.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ping_hostname_O_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ping-hostname-O-D-p-s.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ping_hostname_O_D_p_s = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ping6-ip-O-p.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ping6_ip_O_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ping6-ip-O-D-p.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ping6_ip_O_D_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ping6-hostname-O-p.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ping6_hostname_O_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ping6-hostname-O-D-p-s.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ping6_hostname_O_D_p_s = f.read() # fedora with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/ping-ip-O.out'), 'r', encoding='utf-8') as f: self.fedora32_ping_ip_O = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/ping-ip-O-D.out'), 'r', encoding='utf-8') as f: self.fedora32_ping_ip_O_D = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/ping-hostname-O.out'), 'r', encoding='utf-8') as f: self.fedora32_ping_hostname_O = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/ping-hostname-O-p.out'), 'r', encoding='utf-8') as f: self.fedora32_ping_hostname_O_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/ping-hostname-O-D-p-s.out'), 'r', encoding='utf-8') as f: self.fedora32_ping_hostname_O_D_p_s = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/ping6-ip-O-p.out'), 'r', encoding='utf-8') as f: self.fedora32_ping6_ip_O_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/ping6-ip-O-D-p.out'), 'r', encoding='utf-8') as f: self.fedora32_ping6_ip_O_D_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/ping6-hostname-O-p.out'), 'r', encoding='utf-8') as f: self.fedora32_ping6_hostname_O_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/ping6-hostname-O-D-p-s.out'), 'r', encoding='utf-8') as f: self.fedora32_ping6_hostname_O_D_p_s = f.read() # freebsd with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping-hostname-p.out'), 'r', encoding='utf-8') as f: self.freebsd12_ping_hostname_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping-hostname-s.out'), 'r', encoding='utf-8') as f: self.freebsd12_ping_hostname_s = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping-hostname.out'), 'r', encoding='utf-8') as f: self.freebsd12_ping_hostname = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping-ip-p.out'), 'r', encoding='utf-8') as f: self.freebsd12_ping_ip_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping-ip-s.out'), 'r', encoding='utf-8') as f: self.freebsd12_ping_ip_s = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping-ip.out'), 'r', encoding='utf-8') as f: self.freebsd12_ping_ip = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping6-hostname-p.out'), 'r', encoding='utf-8') as f: self.freebsd12_ping6_hostname_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping6-hostname-s.out'), 'r', encoding='utf-8') as f: self.freebsd12_ping6_hostname_s = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping6-hostname.out'), 'r', encoding='utf-8') as f: self.freebsd12_ping6_hostname = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping6-ip-p.out'), 'r', encoding='utf-8') as f: self.freebsd12_ping6_ip_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping6-ip-s.out'), 'r', encoding='utf-8') as f: self.freebsd12_ping6_ip_s = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping6-ip.out'), 'r', encoding='utf-8') as f: self.freebsd12_ping6_ip = f.read() # osx with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping-hostname-p.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping_hostname_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping-hostname-s.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping_hostname_s = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping-hostname.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping_hostname = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping-ip-p.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping_ip_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping-ip-s.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping_ip_s = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping-ip.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping_ip = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping-ip-unreachable.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping_ip_unreachable = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping-ip-unknown-errors.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping_ip_unknown_errors = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping6-hostname-p.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping6_hostname_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping6-hostname-s.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping6_hostname_s = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping6-hostname.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping6_hostname = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping6-ip-p.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping6_ip_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping6-ip-s.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping6_ip_s = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping6-ip.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping6_ip = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping6-ip-unparsable.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping6_ip_unparsable = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping-ip-dup.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping_ip_dup = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping6-ip-dup.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping6_ip_dup = f.read() # raspberry pi with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/pi/ping-ip-O.out'), 'r', encoding='utf-8') as f: self.pi_ping_ip_O = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/pi/ping-ip-O-D.out'), 'r', encoding='utf-8') as f: self.pi_ping_ip_O_D = f.read() # alpine-linux with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/alpine-linux-3.13/ping-ip.out'), 'r', encoding='utf-8') as f: self.alpine_linux_3_13_ping_ip = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/alpine-linux-3.13/ping-hostname.out'), 'r', encoding='utf-8') as f: self.alpine_linux_3_13_ping_hostname = f.read() # output # centos with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping-ip-O.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ping_ip_O_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping-ip-O-D.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ping_ip_O_D_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping-hostname-O.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ping_hostname_O_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping-hostname-O-p.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ping_hostname_O_p_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping-hostname-O-D-p-s.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ping_hostname_O_D_p_s_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping6-ip-O-p.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ping6_ip_O_p_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping6-ip-O-p-unparsable.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ping6_ip_O_p_unparsable_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping6-ip-O-D-p.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ping6_ip_O_D_p_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping6-hostname-O-p.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ping6_hostname_O_p_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping6-hostname-O-D-p-s.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ping6_hostname_O_D_p_s_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping-ip-dup.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ping_ip_dup_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping6-ip-dup.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ping6_ip_dup_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping-ip-O-unparsedlines.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ping_ip_O_unparsedlines_json = json.loads(f.read()) # ubunutu with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ping-ip-O.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ping_ip_O_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ping-ip-O-D.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ping_ip_O_D_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ping-hostname-O.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ping_hostname_O_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ping-hostname-O-p.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ping_hostname_O_p_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ping-hostname-O-D-p-s.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ping_hostname_O_D_p_s_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ping6-ip-O-p.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ping6_ip_O_p_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ping6-ip-O-D-p.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ping6_ip_O_D_p_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ping6-hostname-O-p.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ping6_hostname_O_p_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ping6-hostname-O-D-p-s.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ping6_hostname_O_D_p_s_json = json.loads(f.read()) # fedora with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/ping-ip-O.json'), 'r', encoding='utf-8') as f: self.fedora32_ping_ip_O_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/ping-ip-O-D.json'), 'r', encoding='utf-8') as f: self.fedora32_ping_ip_O_D_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/ping-hostname-O.json'), 'r', encoding='utf-8') as f: self.fedora32_ping_hostname_O_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/ping-hostname-O-p.json'), 'r', encoding='utf-8') as f: self.fedora32_ping_hostname_O_p_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/ping-hostname-O-D-p-s.json'), 'r', encoding='utf-8') as f: self.fedora32_ping_hostname_O_D_p_s_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/ping6-ip-O-p.json'), 'r', encoding='utf-8') as f: self.fedora32_ping6_ip_O_p_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/ping6-ip-O-D-p.json'), 'r', encoding='utf-8') as f: self.fedora32_ping6_ip_O_D_p_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/ping6-hostname-O-p.json'), 'r', encoding='utf-8') as f: self.fedora32_ping6_hostname_O_p_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/ping6-hostname-O-D-p-s.json'), 'r', encoding='utf-8') as f: self.fedora32_ping6_hostname_O_D_p_s_json = json.loads(f.read()) # freebsd with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping-hostname-p.json'), 'r', encoding='utf-8') as f: self.freebsd12_ping_hostname_p_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping-hostname-s.json'), 'r', encoding='utf-8') as f: self.freebsd12_ping_hostname_s_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping-hostname.json'), 'r', encoding='utf-8') as f: self.freebsd12_ping_hostname_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping-ip-p.json'), 'r', encoding='utf-8') as f: self.freebsd12_ping_ip_p_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping-ip-s.json'), 'r', encoding='utf-8') as f: self.freebsd12_ping_ip_s_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping-ip.json'), 'r', encoding='utf-8') as f: self.freebsd12_ping_ip_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping6-hostname-p.json'), 'r', encoding='utf-8') as f: self.freebsd12_ping6_hostname_p_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping6-hostname-s.json'), 'r', encoding='utf-8') as f: self.freebsd12_ping6_hostname_s_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping6-hostname.json'), 'r', encoding='utf-8') as f: self.freebsd12_ping6_hostname_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping6-ip-p.json'), 'r', encoding='utf-8') as f: self.freebsd12_ping6_ip_p_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping6-ip-s.json'), 'r', encoding='utf-8') as f: self.freebsd12_ping6_ip_s_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping6-ip.json'), 'r', encoding='utf-8') as f: self.freebsd12_ping6_ip_json = json.loads(f.read()) # osx: with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping-hostname-p.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping_hostname_p_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping-hostname-s.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping_hostname_s_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping-hostname.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping_hostname_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping-ip-p.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping_ip_p_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping-ip-s.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping_ip_s_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping-ip.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping_ip_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping-ip-unreachable.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping_ip_unreachable_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping-ip-unknown-errors.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping_ip_unknown_errors_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping6-hostname-p.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping6_hostname_p_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping6-hostname-s.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping6_hostname_s_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping6-hostname.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping6_hostname_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping6-ip-p.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping6_ip_p_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping6-ip-s.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping6_ip_s_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping6-ip.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping6_ip_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping6-ip-unparsable.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping6_ip_unparsable_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping-ip-dup.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping_ip_dup_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping6-ip-dup.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping6_ip_dup_json = json.loads(f.read()) # raspberry pi with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/pi/ping-ip-O.json'), 'r', encoding='utf-8') as f: self.pi_ping_ip_O_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/pi/ping-ip-O-D.json'), 'r', encoding='utf-8') as f: self.pi_ping_ip_O_D_json = json.loads(f.read()) # alpine-linux with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/alpine-linux-3.13/ping-ip.json'), 'r', encoding='utf-8') as f: self.alpine_linux_3_13_ping_ip_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/alpine-linux-3.13/ping-hostname.json'), 'r', encoding='utf-8') as f: self.alpine_linux_3_13_ping_hostname_json = json.loads(f.read()) def test_ping_nodata(self): """ Test 'ping' with no data """ self.assertEqual(jc.parsers.ping.parse('', quiet=True), {}) def test_ping_ip_O_centos_7_7(self): """ Test 'ping -O' on Centos 7.7 """ self.assertEqual(jc.parsers.ping.parse(self.centos_7_7_ping_ip_O, quiet=True), self.centos_7_7_ping_ip_O_json) def test_ping_ip_O_D_centos_7_7(self): """ Test 'ping -O -D' on Centos 7.7 """ self.assertEqual(jc.parsers.ping.parse(self.centos_7_7_ping_ip_O_D, quiet=True), self.centos_7_7_ping_ip_O_D_json) def test_ping_hostname_O_centos_7_7(self): """ Test 'ping -O' on Centos 7.7 """ self.assertEqual(jc.parsers.ping.parse(self.centos_7_7_ping_hostname_O, quiet=True), self.centos_7_7_ping_hostname_O_json) def test_ping_hostname_O_p_centos_7_7(self): """ Test 'ping -O -p' on Centos 7.7 """ self.assertEqual(jc.parsers.ping.parse(self.centos_7_7_ping_hostname_O_p, quiet=True), self.centos_7_7_ping_hostname_O_p_json) def test_ping_hostname_O_D_p_s_centos_7_7(self): """ Test 'ping -O -D -p -s' on Centos 7.7 """ self.assertEqual(jc.parsers.ping.parse(self.centos_7_7_ping_hostname_O_D_p_s, quiet=True), self.centos_7_7_ping_hostname_O_D_p_s_json) def test_ping6_ip_O_p_centos_7_7(self): """ Test 'ping6 -O -p' on Centos 7.7 """ self.assertEqual(jc.parsers.ping.parse(self.centos_7_7_ping6_ip_O_p, quiet=True), self.centos_7_7_ping6_ip_O_p_json) def test_ping6_ip_O_p_unparsable_centos_7_7(self): """ Test 'ping6 -O -p' with unparsable lines on Centos 7.7 """ self.assertEqual(jc.parsers.ping.parse(self.centos_7_7_ping6_ip_O_p_unparsable, quiet=True), self.centos_7_7_ping6_ip_O_p_unparsable_json) def test_ping6_ip_O_D_p_centos_7_7(self): """ Test 'ping6 -O -D -p' on Centos 7.7 """ self.assertEqual(jc.parsers.ping.parse(self.centos_7_7_ping6_ip_O_D_p, quiet=True), self.centos_7_7_ping6_ip_O_D_p_json) def test_ping6_hostname_O_p_centos_7_7(self): """ Test 'ping6 -O -p' on Centos 7.7 """ self.assertEqual(jc.parsers.ping.parse(self.centos_7_7_ping6_hostname_O_p, quiet=True), self.centos_7_7_ping6_hostname_O_p_json) def test_ping6_hostname_O_D_p_s_centos_7_7(self): """ Test 'ping6 -O -D -p -s' on Centos 7.7 """ self.assertEqual(jc.parsers.ping.parse(self.centos_7_7_ping6_hostname_O_D_p_s, quiet=True), self.centos_7_7_ping6_hostname_O_D_p_s_json) def test_ping_ip_dup_centos_7_7(self): """ Test 'ping ' to broadcast IP to get duplicate replies on Centos 7.7 """ self.assertEqual(jc.parsers.ping.parse(self.centos_7_7_ping_ip_dup, quiet=True), self.centos_7_7_ping_ip_dup_json) def test_ping6_ip_dup_centos_7_7(self): """ Test 'ping6 ' to broadcast IP to get duplicate replies on Centos 7.7 """ self.assertEqual(jc.parsers.ping.parse(self.centos_7_7_ping6_ip_dup, quiet=True), self.centos_7_7_ping6_ip_dup_json) def test_ping_ip_O_unparsedlines_centos_7_7(self): """ Test 'ping -O' on Centos 7.7 with unparsable lines and error messages """ self.assertEqual(jc.parsers.ping.parse(self.centos_7_7_ping_ip_O_unparsedlines, quiet=True), self.centos_7_7_ping_ip_O_unparsedlines_json) def test_ping_ip_O_ubuntu_18_4(self): """ Test 'ping -O' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.ping.parse(self.ubuntu_18_4_ping_ip_O, quiet=True), self.ubuntu_18_4_ping_ip_O_json) def test_ping_ip_O_D_ubuntu_18_4(self): """ Test 'ping -O -D' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.ping.parse(self.ubuntu_18_4_ping_ip_O_D, quiet=True), self.ubuntu_18_4_ping_ip_O_D_json) def test_ping_hostname_O_ubuntu_18_4(self): """ Test 'ping -O' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.ping.parse(self.ubuntu_18_4_ping_hostname_O, quiet=True), self.ubuntu_18_4_ping_hostname_O_json) def test_ping_hostname_O_p_ubuntu_18_4(self): """ Test 'ping -O -p' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.ping.parse(self.ubuntu_18_4_ping_hostname_O_p, quiet=True), self.ubuntu_18_4_ping_hostname_O_p_json) def test_ping_hostname_O_D_p_s_ubuntu_18_4(self): """ Test 'ping -O -D -p -s' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.ping.parse(self.ubuntu_18_4_ping_hostname_O_D_p_s, quiet=True), self.ubuntu_18_4_ping_hostname_O_D_p_s_json) def test_ping6_ip_O_p_ubuntu_18_4(self): """ Test 'ping6 -O -p' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.ping.parse(self.ubuntu_18_4_ping6_ip_O_p, quiet=True), self.ubuntu_18_4_ping6_ip_O_p_json) def test_ping6_ip_O_D_p_ubuntu_18_4(self): """ Test 'ping6 -O -D -p' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.ping.parse(self.ubuntu_18_4_ping6_ip_O_D_p, quiet=True), self.ubuntu_18_4_ping6_ip_O_D_p_json) def test_ping6_hostname_O_p_ubuntu_18_4(self): """ Test 'ping6 -O -p' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.ping.parse(self.ubuntu_18_4_ping6_hostname_O_p, quiet=True), self.ubuntu_18_4_ping6_hostname_O_p_json) def test_ping6_hostname_O_D_p_s_ubuntu_18_4(self): """ Test 'ping6 -O -D -p -s' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.ping.parse(self.ubuntu_18_4_ping6_hostname_O_D_p_s, quiet=True), self.ubuntu_18_4_ping6_hostname_O_D_p_s_json) def test_ping_ip_O_fedora32(self): """ Test 'ping -O' on fedora32 """ self.assertEqual(jc.parsers.ping.parse(self.fedora32_ping_ip_O, quiet=True), self.fedora32_ping_ip_O_json) def test_ping_ip_O_D_fedora32(self): """ Test 'ping -O -D' on fedora32 """ self.assertEqual(jc.parsers.ping.parse(self.fedora32_ping_ip_O_D, quiet=True), self.fedora32_ping_ip_O_D_json) def test_ping_hostname_O_fedora32(self): """ Test 'ping -O' on fedora32 """ self.assertEqual(jc.parsers.ping.parse(self.fedora32_ping_hostname_O, quiet=True), self.fedora32_ping_hostname_O_json) def test_ping_hostname_O_p_fedora32(self): """ Test 'ping -O -p' on fedora32 """ self.assertEqual(jc.parsers.ping.parse(self.fedora32_ping_hostname_O_p, quiet=True), self.fedora32_ping_hostname_O_p_json) def test_ping_hostname_O_D_p_s_fedora32(self): """ Test 'ping -O -D -p -s' on fedora32 """ self.assertEqual(jc.parsers.ping.parse(self.fedora32_ping_hostname_O_D_p_s, quiet=True), self.fedora32_ping_hostname_O_D_p_s_json) def test_ping6_ip_O_p_fedora32(self): """ Test 'ping6 -O -p' on fedora32 """ self.assertEqual(jc.parsers.ping.parse(self.fedora32_ping6_ip_O_p, quiet=True), self.fedora32_ping6_ip_O_p_json) def test_ping6_ip_O_D_p_fedora32(self): """ Test 'ping6 -O -D -p' on fedora32 """ self.assertEqual(jc.parsers.ping.parse(self.fedora32_ping6_ip_O_D_p, quiet=True), self.fedora32_ping6_ip_O_D_p_json) def test_ping6_hostname_O_p_fedora32(self): """ Test 'ping6 -O -p' on fedora32 """ self.assertEqual(jc.parsers.ping.parse(self.fedora32_ping6_hostname_O_p, quiet=True), self.fedora32_ping6_hostname_O_p_json) def test_ping6_hostname_O_D_p_s_fedora32(self): """ Test 'ping6 -O -D -p -s' on fedora32 """ self.assertEqual(jc.parsers.ping.parse(self.fedora32_ping6_hostname_O_D_p_s, quiet=True), self.fedora32_ping6_hostname_O_D_p_s_json) def test_ping_hostname_p_freebsd12(self): """ Test 'ping -p' on freebsd12 """ self.assertEqual(jc.parsers.ping.parse(self.freebsd12_ping_hostname_p, quiet=True), self.freebsd12_ping_hostname_p_json) def test_ping_hostname_s_freebsd12(self): """ Test 'ping -s' on freebsd12 """ self.assertEqual(jc.parsers.ping.parse(self.freebsd12_ping_hostname_s, quiet=True), self.freebsd12_ping_hostname_s_json) def test_ping_ping_hostname_freebsd12(self): """ Test 'ping ' on freebsd12 """ self.assertEqual(jc.parsers.ping.parse(self.freebsd12_ping_hostname, quiet=True), self.freebsd12_ping_hostname_json) def test_ping_ip_p_freebsd12(self): """ Test 'ping -p' on freebsd12 """ self.assertEqual(jc.parsers.ping.parse(self.freebsd12_ping_ip_p, quiet=True), self.freebsd12_ping_ip_p_json) def test_ping_ip_s_freebsd12(self): """ Test 'ping -s' on freebsd12 """ self.assertEqual(jc.parsers.ping.parse(self.freebsd12_ping_ip_s, quiet=True), self.freebsd12_ping_ip_s_json) def test_ping_ip_freebsd12(self): """ Test 'ping6 ' on freebsd127 """ self.assertEqual(jc.parsers.ping.parse(self.freebsd12_ping_ip, quiet=True), self.freebsd12_ping_ip_json) def test_ping6_hostname_p_freebsd12(self): """ Test 'ping6 -p' on freebsd12 """ self.assertEqual(jc.parsers.ping.parse(self.freebsd12_ping6_hostname_p, quiet=True), self.freebsd12_ping6_hostname_p_json) def test_ping6_hostname_s_freebsd12(self): """ Test 'ping6 -s' on freebsd12 """ self.assertEqual(jc.parsers.ping.parse(self.freebsd12_ping6_hostname_s, quiet=True), self.freebsd12_ping6_hostname_s_json) def test_ping6_hostname_freebsd12(self): """ Test 'ping6 ' on freebsd12 """ self.assertEqual(jc.parsers.ping.parse(self.freebsd12_ping6_hostname, quiet=True), self.freebsd12_ping6_hostname_json) def test_ping6_ip_p_freebsd12(self): """ Test 'ping6 -p' on freebsd12 """ self.assertEqual(jc.parsers.ping.parse(self.freebsd12_ping6_ip_p, quiet=True), self.freebsd12_ping6_ip_p_json) def test_ping6_ip_s_freebsd12(self): """ Test 'ping6 -s' on freebsd12 """ self.assertEqual(jc.parsers.ping.parse(self.freebsd12_ping6_ip_s, quiet=True), self.freebsd12_ping6_ip_s_json) def test_ping6_ip_freebsd12(self): """ Test 'ping6 ' on freebsd12 """ self.assertEqual(jc.parsers.ping.parse(self.freebsd12_ping6_ip, quiet=True), self.freebsd12_ping6_ip_json) def test_ping_hostname_p_osx_10_14_6(self): """ Test 'ping -p' on osx 10.14.6 """ self.assertEqual(jc.parsers.ping.parse(self.osx_10_14_6_ping_hostname_p, quiet=True), self.osx_10_14_6_ping_hostname_p_json) def test_ping_hostname_s_osx_10_14_6(self): """ Test 'ping -s' on osx 10.14.6 """ self.assertEqual(jc.parsers.ping.parse(self.osx_10_14_6_ping_hostname_s, quiet=True), self.osx_10_14_6_ping_hostname_s_json) def test_ping_ping_hostname_osx_10_14_6(self): """ Test 'ping ' on osx 10.14.6 """ self.assertEqual(jc.parsers.ping.parse(self.osx_10_14_6_ping_hostname, quiet=True), self.osx_10_14_6_ping_hostname_json) def test_ping_ip_p_osx_10_14_6(self): """ Test 'ping -p' on osx 10.14.6 """ self.assertEqual(jc.parsers.ping.parse(self.osx_10_14_6_ping_ip_p, quiet=True), self.osx_10_14_6_ping_ip_p_json) def test_ping_ip_s_osx_10_14_6(self): """ Test 'ping -s' on osx 10.14.6 """ self.assertEqual(jc.parsers.ping.parse(self.osx_10_14_6_ping_ip_s, quiet=True), self.osx_10_14_6_ping_ip_s_json) def test_ping_ip_osx_10_14_6(self): """ Test 'ping ' on osx 10.14.6 """ self.assertEqual(jc.parsers.ping.parse(self.osx_10_14_6_ping_ip, quiet=True), self.osx_10_14_6_ping_ip_json) def test_ping_ip_unreachable_osx_10_14_6(self): """ Test 'ping ' with host unreachable error on osx 10.14.6 """ self.assertEqual(jc.parsers.ping.parse(self.osx_10_14_6_ping_ip_unreachable, quiet=True), self.osx_10_14_6_ping_ip_unreachable_json) def test_ping_ip_unknown_errors_osx_10_14_6(self): """ Test 'ping ' with unknown/unparsable errors on osx 10.14.6 """ self.assertEqual(jc.parsers.ping.parse(self.osx_10_14_6_ping_ip_unknown_errors, quiet=True), self.osx_10_14_6_ping_ip_unknown_errors_json) def test_ping6_hostname_p_osx_10_14_6(self): """ Test 'ping6 -p' on osx 10.14.6 """ self.assertEqual(jc.parsers.ping.parse(self.osx_10_14_6_ping6_hostname_p, quiet=True), self.osx_10_14_6_ping6_hostname_p_json) def test_ping6_hostname_s_osx_10_14_6(self): """ Test 'ping6 -s' on osx 10.14.6 """ self.assertEqual(jc.parsers.ping.parse(self.osx_10_14_6_ping6_hostname_s, quiet=True), self.osx_10_14_6_ping6_hostname_s_json) def test_ping6_hostname_osx_10_14_6(self): """ Test 'ping6 ' on osx 10.14.6 """ self.assertEqual(jc.parsers.ping.parse(self.osx_10_14_6_ping6_hostname, quiet=True), self.osx_10_14_6_ping6_hostname_json) def test_ping6_ip_p_osx_10_14_6(self): """ Test 'ping6 -p' on osx 10.14.6 """ self.assertEqual(jc.parsers.ping.parse(self.osx_10_14_6_ping6_ip_p, quiet=True), self.osx_10_14_6_ping6_ip_p_json) def test_ping6_ip_s_osx_10_14_6(self): """ Test 'ping6 -s' on osx 10.14.6 """ self.assertEqual(jc.parsers.ping.parse(self.osx_10_14_6_ping6_ip_s, quiet=True), self.osx_10_14_6_ping6_ip_s_json) def test_ping6_ip_osx_10_14_6(self): """ Test 'ping6 ' on osx 10.14.6 """ self.assertEqual(jc.parsers.ping.parse(self.osx_10_14_6_ping6_ip, quiet=True), self.osx_10_14_6_ping6_ip_json) def test_ping6_ip_unparsable_osx_10_14_6(self): """ Test 'ping6 ' with unparsable lines on osx 10.14.6 """ self.assertEqual(jc.parsers.ping.parse(self.osx_10_14_6_ping6_ip_unparsable, quiet=True), self.osx_10_14_6_ping6_ip_unparsable_json) def test_ping_ip_dup_osx_10_14_6(self): """ Test 'ping ' to broadcast IP to get duplicate replies on osx 10.14.6 """ self.assertEqual(jc.parsers.ping.parse(self.osx_10_14_6_ping_ip_dup, quiet=True), self.osx_10_14_6_ping_ip_dup_json) def test_ping6_ip_dup_osx_10_14_6(self): """ Test 'ping6 ' to broadcast IP to get duplicate replies on osx 10.14.6 """ self.assertEqual(jc.parsers.ping.parse(self.osx_10_14_6_ping6_ip_dup, quiet=True), self.osx_10_14_6_ping6_ip_dup_json) def test_ping_ip_O_pi(self): """ Test 'ping6 -O' on raspberry pi """ self.assertEqual(jc.parsers.ping.parse(self.pi_ping_ip_O, quiet=True), self.pi_ping_ip_O_json) def test_ping_ip_O_D_pi(self): """ Test 'ping6 -O -D' on raspberry pi """ self.assertEqual(jc.parsers.ping.parse(self.pi_ping_ip_O_D, quiet=True), self.pi_ping_ip_O_D_json) def test_ping_ip_alpine_linux(self): """ Test 'ping -O' on alpine linux """ self.assertEqual(jc.parsers.ping.parse(self.alpine_linux_3_13_ping_ip, quiet=True), self.alpine_linux_3_13_ping_ip_json) def test_ping_hostname_alpine_linux(self): """ Test 'ping ' on alpine linux """ self.assertEqual(jc.parsers.ping.parse(self.alpine_linux_3_13_ping_hostname, quiet=True), self.alpine_linux_3_13_ping_hostname_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_ping_s.py000066400000000000000000001255011415226333200162360ustar00rootroot00000000000000import os import unittest import json from jc.exceptions import ParseError import jc.parsers.ping_s THIS_DIR = os.path.dirname(os.path.abspath(__file__)) # To create streaming output use: # $ cat ping.out | jc --ping-s | jello -c > ping-streaming.json class MyTests(unittest.TestCase): def setUp(self): # input # centos with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping-ip-O.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ping_ip_O = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping-ip-O-D.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ping_ip_O_D = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping-hostname-O.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ping_hostname_O = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping-hostname-O-p.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ping_hostname_O_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping-hostname-O-D-p-s.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ping_hostname_O_D_p_s = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping6-ip-O-p.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ping6_ip_O_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping6-ip-O-p-unparsable.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ping6_ip_O_p_unparsable = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping6-ip-O-D-p.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ping6_ip_O_D_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping6-hostname-O-p.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ping6_hostname_O_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping6-hostname-O-D-p-s.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ping6_hostname_O_D_p_s = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping-ip-dup.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ping_ip_dup = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping6-ip-dup.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ping6_ip_dup = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping-ip-O-unparsedlines.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ping_ip_O_unparsedlines = f.read() # ubuntu with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ping-ip-O.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ping_ip_O = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ping-ip-O-D.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ping_ip_O_D = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ping-hostname-O.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ping_hostname_O = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ping-hostname-O-p.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ping_hostname_O_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ping-hostname-O-D-p-s.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ping_hostname_O_D_p_s = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ping6-ip-O-p.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ping6_ip_O_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ping6-ip-O-D-p.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ping6_ip_O_D_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ping6-hostname-O-p.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ping6_hostname_O_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ping6-hostname-O-D-p-s.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ping6_hostname_O_D_p_s = f.read() # fedora with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/ping-ip-O.out'), 'r', encoding='utf-8') as f: self.fedora32_ping_ip_O = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/ping-ip-O-D.out'), 'r', encoding='utf-8') as f: self.fedora32_ping_ip_O_D = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/ping-hostname-O.out'), 'r', encoding='utf-8') as f: self.fedora32_ping_hostname_O = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/ping-hostname-O-p.out'), 'r', encoding='utf-8') as f: self.fedora32_ping_hostname_O_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/ping-hostname-O-D-p-s.out'), 'r', encoding='utf-8') as f: self.fedora32_ping_hostname_O_D_p_s = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/ping6-ip-O-p.out'), 'r', encoding='utf-8') as f: self.fedora32_ping6_ip_O_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/ping6-ip-O-D-p.out'), 'r', encoding='utf-8') as f: self.fedora32_ping6_ip_O_D_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/ping6-hostname-O-p.out'), 'r', encoding='utf-8') as f: self.fedora32_ping6_hostname_O_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/ping6-hostname-O-D-p-s.out'), 'r', encoding='utf-8') as f: self.fedora32_ping6_hostname_O_D_p_s = f.read() # freebsd with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping-hostname-p.out'), 'r', encoding='utf-8') as f: self.freebsd12_ping_hostname_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping-hostname-s.out'), 'r', encoding='utf-8') as f: self.freebsd12_ping_hostname_s = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping-hostname.out'), 'r', encoding='utf-8') as f: self.freebsd12_ping_hostname = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping-ip-p.out'), 'r', encoding='utf-8') as f: self.freebsd12_ping_ip_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping-ip-s.out'), 'r', encoding='utf-8') as f: self.freebsd12_ping_ip_s = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping-ip.out'), 'r', encoding='utf-8') as f: self.freebsd12_ping_ip = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping6-hostname-p.out'), 'r', encoding='utf-8') as f: self.freebsd12_ping6_hostname_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping6-hostname-s.out'), 'r', encoding='utf-8') as f: self.freebsd12_ping6_hostname_s = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping6-hostname.out'), 'r', encoding='utf-8') as f: self.freebsd12_ping6_hostname = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping6-ip-p.out'), 'r', encoding='utf-8') as f: self.freebsd12_ping6_ip_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping6-ip-s.out'), 'r', encoding='utf-8') as f: self.freebsd12_ping6_ip_s = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping6-ip.out'), 'r', encoding='utf-8') as f: self.freebsd12_ping6_ip = f.read() # osx with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping-hostname-p.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping_hostname_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping-hostname-s.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping_hostname_s = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping-hostname.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping_hostname = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping-ip-p.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping_ip_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping-ip-s.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping_ip_s = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping-ip.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping_ip = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping-ip-unreachable.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping_ip_unreachable = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping-ip-unknown-errors.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping_ip_unknown_errors = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping6-hostname-p.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping6_hostname_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping6-hostname-s.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping6_hostname_s = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping6-hostname.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping6_hostname = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping6-ip-p.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping6_ip_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping6-ip-s.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping6_ip_s = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping6-ip.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping6_ip = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping6-ip-unparsable.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping6_ip_unparsable = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping-ip-dup.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping_ip_dup = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping6-ip-dup.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping6_ip_dup = f.read() # raspberry pi with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/pi/ping-ip-O.out'), 'r', encoding='utf-8') as f: self.pi_ping_ip_O = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/pi/ping-ip-O-D.out'), 'r', encoding='utf-8') as f: self.pi_ping_ip_O_D = f.read() # output # centos with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping-ip-O-streaming.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ping_ip_O_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping-ip-O-streaming-ignore-exceptions.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ping_ip_O_streaming_ignore_exceptions_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping-ip-O-D-streaming.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ping_ip_O_D_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping-hostname-O-streaming.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ping_hostname_O_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping-hostname-O-p-streaming.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ping_hostname_O_p_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping-hostname-O-D-p-s-streaming.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ping_hostname_O_D_p_s_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping6-ip-O-p-streaming.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ping6_ip_O_p_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping6-ip-O-D-p-streaming.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ping6_ip_O_D_p_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping6-hostname-O-p-streaming.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ping6_hostname_O_p_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping6-hostname-O-D-p-s-streaming.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ping6_hostname_O_D_p_s_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping-ip-dup-streaming.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ping_ip_dup_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ping6-ip-dup-streaming.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ping6_ip_dup_streaming_json = json.loads(f.read()) # ubunutu with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ping-ip-O-streaming.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ping_ip_O_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ping-ip-O-D-streaming.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ping_ip_O_D_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ping-hostname-O-streaming.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ping_hostname_O_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ping-hostname-O-p-streaming.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ping_hostname_O_p_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ping-hostname-O-D-p-s-streaming.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ping_hostname_O_D_p_s_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ping6-ip-O-p-streaming.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ping6_ip_O_p_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ping6-ip-O-D-p-streaming.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ping6_ip_O_D_p_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ping6-hostname-O-p-streaming.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ping6_hostname_O_p_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ping6-hostname-O-D-p-s-streaming.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ping6_hostname_O_D_p_s_streaming_json = json.loads(f.read()) # fedora with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/ping-ip-O-streaming.json'), 'r', encoding='utf-8') as f: self.fedora32_ping_ip_O_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/ping-ip-O-D-streaming.json'), 'r', encoding='utf-8') as f: self.fedora32_ping_ip_O_D_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/ping-hostname-O-streaming.json'), 'r', encoding='utf-8') as f: self.fedora32_ping_hostname_O_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/ping-hostname-O-p-streaming.json'), 'r', encoding='utf-8') as f: self.fedora32_ping_hostname_O_p_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/ping-hostname-O-D-p-s-streaming.json'), 'r', encoding='utf-8') as f: self.fedora32_ping_hostname_O_D_p_s_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/ping6-ip-O-p-streaming.json'), 'r', encoding='utf-8') as f: self.fedora32_ping6_ip_O_p_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/ping6-ip-O-D-p-streaming.json'), 'r', encoding='utf-8') as f: self.fedora32_ping6_ip_O_D_p_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/ping6-hostname-O-p-streaming.json'), 'r', encoding='utf-8') as f: self.fedora32_ping6_hostname_O_p_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/fedora32/ping6-hostname-O-D-p-s-streaming.json'), 'r', encoding='utf-8') as f: self.fedora32_ping6_hostname_O_D_p_s_streaming_json = json.loads(f.read()) # freebsd with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping-hostname-p-streaming.json'), 'r', encoding='utf-8') as f: self.freebsd12_ping_hostname_p_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping-hostname-s-streaming.json'), 'r', encoding='utf-8') as f: self.freebsd12_ping_hostname_s_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping-hostname-streaming.json'), 'r', encoding='utf-8') as f: self.freebsd12_ping_hostname_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping-ip-p-streaming.json'), 'r', encoding='utf-8') as f: self.freebsd12_ping_ip_p_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping-ip-s-streaming.json'), 'r', encoding='utf-8') as f: self.freebsd12_ping_ip_s_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping-ip-streaming.json'), 'r', encoding='utf-8') as f: self.freebsd12_ping_ip_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping6-hostname-p-streaming.json'), 'r', encoding='utf-8') as f: self.freebsd12_ping6_hostname_p_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping6-hostname-s-streaming.json'), 'r', encoding='utf-8') as f: self.freebsd12_ping6_hostname_s_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping6-hostname-streaming.json'), 'r', encoding='utf-8') as f: self.freebsd12_ping6_hostname_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping6-ip-p-streaming.json'), 'r', encoding='utf-8') as f: self.freebsd12_ping6_ip_p_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping6-ip-s-streaming.json'), 'r', encoding='utf-8') as f: self.freebsd12_ping6_ip_s_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ping6-ip-streaming.json'), 'r', encoding='utf-8') as f: self.freebsd12_ping6_ip_streaming_json = json.loads(f.read()) # osx: with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping-hostname-p-streaming.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping_hostname_p_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping-hostname-s-streaming.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping_hostname_s_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping-hostname-streaming.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping_hostname_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping-ip-p-streaming.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping_ip_p_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping-ip-s-streaming.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping_ip_s_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping-ip-streaming.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping_ip_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping-ip-unreachable-streaming.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping_ip_unreachable_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping6-hostname-p-streaming.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping6_hostname_p_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping6-hostname-s-streaming.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping6_hostname_s_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping6-hostname-streaming.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping6_hostname_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping6-ip-p-streaming.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping6_ip_p_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping6-ip-s-streaming.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping6_ip_s_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping6-ip-streaming.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping6_ip_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping-ip-dup-streaming.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping_ip_dup_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ping6-ip-dup-streaming.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ping6_ip_dup_streaming_json = json.loads(f.read()) # raspberry pi with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/pi/ping-ip-O-streaming.json'), 'r', encoding='utf-8') as f: self.pi_ping_ip_O_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/pi/ping-ip-O-D-streaming.json'), 'r', encoding='utf-8') as f: self.pi_ping_ip_O_D_streaming_json = json.loads(f.read()) def test_ping_s_nodata(self): """ Test 'ping' with no data """ self.assertEqual(list(jc.parsers.ping_s.parse([], quiet=True)), []) def test_ping_s_unparsable(self): data = 'unparsable data' g = jc.parsers.ping_s.parse(data.splitlines(), quiet=True) with self.assertRaises(ParseError): list(g) def test_ping_s_ignore_exceptions_success(self): """ Test 'ping' with -qq (ignore_exceptions) option """ self.assertEqual(list(jc.parsers.ping_s.parse(self.centos_7_7_ping_ip_O.splitlines(), quiet=True, ignore_exceptions=True)), self.centos_7_7_ping_ip_O_streaming_ignore_exceptions_json) def test_ping_s_ignore_exceptions_error(self): """ Test 'ping' with -qq (ignore_exceptions) option option and error """ data_in = 'not ping' expected = json.loads('[{"_jc_meta":{"success":false,"error":"ParseError: Could not detect ping OS","line":"not ping"}}]') self.assertEqual(list(jc.parsers.ping_s.parse(data_in.splitlines(), quiet=True, ignore_exceptions=True)), expected) def test_ping_s_ip_O_centos_7_7(self): """ Test 'ping -O' on Centos 7.7 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.centos_7_7_ping_ip_O.splitlines(), quiet=True)), self.centos_7_7_ping_ip_O_streaming_json) def test_ping_s_ip_O_D_centos_7_7(self): """ Test 'ping -O -D' on Centos 7.7 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.centos_7_7_ping_ip_O_D.splitlines(), quiet=True)), self.centos_7_7_ping_ip_O_D_streaming_json) def test_ping_s_hostname_O_centos_7_7(self): """ Test 'ping -O' on Centos 7.7 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.centos_7_7_ping_hostname_O.splitlines(), quiet=True)), self.centos_7_7_ping_hostname_O_streaming_json) def test_ping_s_hostname_O_p_centos_7_7(self): """ Test 'ping -O -p' on Centos 7.7 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.centos_7_7_ping_hostname_O_p.splitlines(), quiet=True)), self.centos_7_7_ping_hostname_O_p_streaming_json) def test_ping_s_hostname_O_D_p_s_centos_7_7(self): """ Test 'ping -O -D -p -s' on Centos 7.7 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.centos_7_7_ping_hostname_O_D_p_s.splitlines(), quiet=True)), self.centos_7_7_ping_hostname_O_D_p_s_streaming_json) def test_ping6_s_ip_O_p_centos_7_7(self): """ Test 'ping6 -O -p' on Centos 7.7 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.centos_7_7_ping6_ip_O_p.splitlines(), quiet=True)), self.centos_7_7_ping6_ip_O_p_streaming_json) def test_ping6_s_ip_O_p_unparsable_centos_7_7(self): """ Test 'ping6 -O -p' with unparsable lines on Centos 7.7 (raises IndexError) """ g = jc.parsers.ping_s.parse(self.centos_7_7_ping6_ip_O_p_unparsable.splitlines(), quiet=True) with self.assertRaises(IndexError): list(g) def test_ping6_s_ip_O_D_p_centos_7_7(self): """ Test 'ping6 -O -D -p' on Centos 7.7 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.centos_7_7_ping6_ip_O_D_p.splitlines(), quiet=True)), self.centos_7_7_ping6_ip_O_D_p_streaming_json) def test_ping6_s_hostname_O_p_centos_7_7(self): """ Test 'ping6 -O -p' on Centos 7.7 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.centos_7_7_ping6_hostname_O_p.splitlines(), quiet=True)), self.centos_7_7_ping6_hostname_O_p_streaming_json) def test_ping6_s_hostname_O_D_p_s_centos_7_7(self): """ Test 'ping6 -O -D -p -s' on Centos 7.7 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.centos_7_7_ping6_hostname_O_D_p_s.splitlines(), quiet=True)), self.centos_7_7_ping6_hostname_O_D_p_s_streaming_json) def test_ping_s_ip_dup_centos_7_7(self): """ Test 'ping ' to broadcast IP to get duplicate replies on Centos 7.7 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.centos_7_7_ping_ip_dup.splitlines(), quiet=True)), self.centos_7_7_ping_ip_dup_streaming_json) def test_ping6_s_ip_dup_centos_7_7(self): """ Test 'ping6 ' to broadcast IP to get duplicate replies on Centos 7.7 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.centos_7_7_ping6_ip_dup.splitlines(), quiet=True)), self.centos_7_7_ping6_ip_dup_streaming_json) def test_ping_s_ip_O_unparsedlines_centos_7_7(self): """ Test 'ping -O' on Centos 7.7 with unparsable lines and error messages """ g = jc.parsers.ping_s.parse(self.centos_7_7_ping_ip_O_unparsedlines.splitlines(), quiet=True) with self.assertRaises(IndexError): list(g) def test_ping_s_ip_O_ubuntu_18_4(self): """ Test 'ping -O' on Ubuntu 18.4 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.ubuntu_18_4_ping_ip_O.splitlines(), quiet=True)), self.ubuntu_18_4_ping_ip_O_streaming_json) def test_ping_s_ip_O_D_ubuntu_18_4(self): """ Test 'ping -O -D' on Ubuntu 18.4 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.ubuntu_18_4_ping_ip_O_D.splitlines(), quiet=True)), self.ubuntu_18_4_ping_ip_O_D_streaming_json) def test_ping_s_hostname_O_ubuntu_18_4(self): """ Test 'ping -O' on Ubuntu 18.4 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.ubuntu_18_4_ping_hostname_O.splitlines(), quiet=True)), self.ubuntu_18_4_ping_hostname_O_streaming_json) def test_ping_s_hostname_O_p_ubuntu_18_4(self): """ Test 'ping -O -p' on Ubuntu 18.4 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.ubuntu_18_4_ping_hostname_O_p.splitlines(), quiet=True)), self.ubuntu_18_4_ping_hostname_O_p_streaming_json) def test_ping_s_hostname_O_D_p_s_ubuntu_18_4(self): """ Test 'ping -O -D -p -s' on Ubuntu 18.4 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.ubuntu_18_4_ping_hostname_O_D_p_s.splitlines(), quiet=True)), self.ubuntu_18_4_ping_hostname_O_D_p_s_streaming_json) def test_ping6_s_ip_O_p_ubuntu_18_4(self): """ Test 'ping6 -O -p' on Ubuntu 18.4 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.ubuntu_18_4_ping6_ip_O_p.splitlines(), quiet=True)), self.ubuntu_18_4_ping6_ip_O_p_streaming_json) def test_ping6_s_ip_O_D_p_ubuntu_18_4(self): """ Test 'ping6 -O -D -p' on Ubuntu 18.4 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.ubuntu_18_4_ping6_ip_O_D_p.splitlines(), quiet=True)), self.ubuntu_18_4_ping6_ip_O_D_p_streaming_json) def test_ping6_s_hostname_O_p_ubuntu_18_4(self): """ Test 'ping6 -O -p' on Ubuntu 18.4 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.ubuntu_18_4_ping6_hostname_O_p.splitlines(), quiet=True)), self.ubuntu_18_4_ping6_hostname_O_p_streaming_json) def test_ping6_s_hostname_O_D_p_s_ubuntu_18_4(self): """ Test 'ping6 -O -D -p -s' on Ubuntu 18.4 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.ubuntu_18_4_ping6_hostname_O_D_p_s.splitlines(), quiet=True)), self.ubuntu_18_4_ping6_hostname_O_D_p_s_streaming_json) def test_ping_s_ip_O_fedora32(self): """ Test 'ping -O' on fedora32 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.fedora32_ping_ip_O.splitlines(), quiet=True)), self.fedora32_ping_ip_O_streaming_json) def test_ping_s_ip_O_D_fedora32(self): """ Test 'ping -O -D' on fedora32 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.fedora32_ping_ip_O_D.splitlines(), quiet=True)), self.fedora32_ping_ip_O_D_streaming_json) def test_ping_s_hostname_O_fedora32(self): """ Test 'ping -O' on fedora32 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.fedora32_ping_hostname_O.splitlines(), quiet=True)), self.fedora32_ping_hostname_O_streaming_json) def test_ping_s_hostname_O_p_fedora32(self): """ Test 'ping -O -p' on fedora32 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.fedora32_ping_hostname_O_p.splitlines(), quiet=True)), self.fedora32_ping_hostname_O_p_streaming_json) def test_ping_s_hostname_O_D_p_s_fedora32(self): """ Test 'ping -O -D -p -s' on fedora32 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.fedora32_ping_hostname_O_D_p_s.splitlines(), quiet=True)), self.fedora32_ping_hostname_O_D_p_s_streaming_json) def test_ping6_s_ip_O_p_fedora32(self): """ Test 'ping6 -O -p' on fedora32 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.fedora32_ping6_ip_O_p.splitlines(), quiet=True)), self.fedora32_ping6_ip_O_p_streaming_json) def test_ping6_s_ip_O_D_p_fedora32(self): """ Test 'ping6 -O -D -p' on fedora32 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.fedora32_ping6_ip_O_D_p.splitlines(), quiet=True)), self.fedora32_ping6_ip_O_D_p_streaming_json) def test_ping6_s_hostname_O_p_fedora32(self): """ Test 'ping6 -O -p' on fedora32 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.fedora32_ping6_hostname_O_p.splitlines(), quiet=True)), self.fedora32_ping6_hostname_O_p_streaming_json) def test_ping6_s_hostname_O_D_p_s_fedora32(self): """ Test 'ping6 -O -D -p -s' on fedora32 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.fedora32_ping6_hostname_O_D_p_s.splitlines(), quiet=True)), self.fedora32_ping6_hostname_O_D_p_s_streaming_json) def test_ping_s_hostname_p_freebsd12(self): """ Test 'ping -p' on freebsd12 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.freebsd12_ping_hostname_p.splitlines(), quiet=True)), self.freebsd12_ping_hostname_p_streaming_json) def test_ping_s_hostname_s_freebsd12(self): """ Test 'ping -s' on freebsd12 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.freebsd12_ping_hostname_s.splitlines(), quiet=True)), self.freebsd12_ping_hostname_s_streaming_json) def test_ping_s_ping_hostname_freebsd12(self): """ Test 'ping ' on freebsd12 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.freebsd12_ping_hostname.splitlines(), quiet=True)), self.freebsd12_ping_hostname_streaming_json) def test_ping_s_ip_p_freebsd12(self): """ Test 'ping -p' on freebsd12 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.freebsd12_ping_ip_p.splitlines(), quiet=True)), self.freebsd12_ping_ip_p_streaming_json) def test_ping_s_ip_s_freebsd12(self): """ Test 'ping -s' on freebsd12 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.freebsd12_ping_ip_s.splitlines(), quiet=True)), self.freebsd12_ping_ip_s_streaming_json) def test_ping_s_ip_freebsd12(self): """ Test 'ping6 ' on freebsd127 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.freebsd12_ping_ip.splitlines(), quiet=True)), self.freebsd12_ping_ip_streaming_json) def test_ping6_s_hostname_p_freebsd12(self): """ Test 'ping6 -p' on freebsd12 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.freebsd12_ping6_hostname_p.splitlines(), quiet=True)), self.freebsd12_ping6_hostname_p_streaming_json) def test_ping6_s_hostname_s_freebsd12(self): """ Test 'ping6 -s' on freebsd12 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.freebsd12_ping6_hostname_s.splitlines(), quiet=True)), self.freebsd12_ping6_hostname_s_streaming_json) def test_ping6_s_hostname_freebsd12(self): """ Test 'ping6 ' on freebsd12 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.freebsd12_ping6_hostname.splitlines(), quiet=True)), self.freebsd12_ping6_hostname_streaming_json) def test_ping6_s_ip_p_freebsd12(self): """ Test 'ping6 -p' on freebsd12 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.freebsd12_ping6_ip_p.splitlines(), quiet=True)), self.freebsd12_ping6_ip_p_streaming_json) def test_ping6_s_ip_s_freebsd12(self): """ Test 'ping6 -s' on freebsd12 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.freebsd12_ping6_ip_s.splitlines(), quiet=True)), self.freebsd12_ping6_ip_s_streaming_json) def test_ping6_s_ip_freebsd12(self): """ Test 'ping6 ' on freebsd12 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.freebsd12_ping6_ip.splitlines(), quiet=True)), self.freebsd12_ping6_ip_streaming_json) def test_ping_s_hostname_p_osx_10_14_6(self): """ Test 'ping -p' on osx 10.14.6 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.osx_10_14_6_ping_hostname_p.splitlines(), quiet=True)), self.osx_10_14_6_ping_hostname_p_streaming_json) def test_ping_s_hostname_s_osx_10_14_6(self): """ Test 'ping -s' on osx 10.14.6 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.osx_10_14_6_ping_hostname_s.splitlines(), quiet=True)), self.osx_10_14_6_ping_hostname_s_streaming_json) def test_ping_s_hostname_osx_10_14_6(self): """ Test 'ping ' on osx 10.14.6 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.osx_10_14_6_ping_hostname.splitlines(), quiet=True)), self.osx_10_14_6_ping_hostname_streaming_json) def test_ping_s_ip_p_osx_10_14_6(self): """ Test 'ping -p' on osx 10.14.6 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.osx_10_14_6_ping_ip_p.splitlines(), quiet=True)), self.osx_10_14_6_ping_ip_p_streaming_json) def test_ping_s_ip_s_osx_10_14_6(self): """ Test 'ping -s' on osx 10.14.6 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.osx_10_14_6_ping_ip_s.splitlines(), quiet=True)), self.osx_10_14_6_ping_ip_s_streaming_json) def test_ping_s_ip_osx_10_14_6(self): """ Test 'ping ' on osx 10.14.6 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.osx_10_14_6_ping_ip.splitlines(), quiet=True)), self.osx_10_14_6_ping_ip_streaming_json) def test_ping_s_ip_unreachable_osx_10_14_6(self): """ Test 'ping ' with host unreachable error on osx 10.14.6 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.osx_10_14_6_ping_ip_unreachable.splitlines(), quiet=True)), self.osx_10_14_6_ping_ip_unreachable_streaming_json) def test_ping_s_ip_unknown_errors_osx_10_14_6(self): """ Test 'ping ' with unknown/unparsable errors on osx 10.14.6 """ g = jc.parsers.ping_s.parse(self.osx_10_14_6_ping_ip_unknown_errors.splitlines(), quiet=True) with self.assertRaises(IndexError): list(g) def test_ping6_s_hostname_p_osx_10_14_6(self): """ Test 'ping6 -p' on osx 10.14.6 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.osx_10_14_6_ping6_hostname_p.splitlines(), quiet=True)), self.osx_10_14_6_ping6_hostname_p_streaming_json) def test_ping6_s_hostname_s_osx_10_14_6(self): """ Test 'ping6 -s' on osx 10.14.6 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.osx_10_14_6_ping6_hostname_s.splitlines(), quiet=True)), self.osx_10_14_6_ping6_hostname_s_streaming_json) def test_ping6_s_hostname_osx_10_14_6(self): """ Test 'ping6 ' on osx 10.14.6 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.osx_10_14_6_ping6_hostname.splitlines(), quiet=True)), self.osx_10_14_6_ping6_hostname_streaming_json) def test_ping6_s_ip_p_osx_10_14_6(self): """ Test 'ping6 -p' on osx 10.14.6 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.osx_10_14_6_ping6_ip_p.splitlines(), quiet=True)), self.osx_10_14_6_ping6_ip_p_streaming_json) def test_ping6_s_ip_s_osx_10_14_6(self): """ Test 'ping6 -s' on osx 10.14.6 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.osx_10_14_6_ping6_ip_s.splitlines(), quiet=True)), self.osx_10_14_6_ping6_ip_s_streaming_json) def test_ping6_s_ip_osx_10_14_6(self): """ Test 'ping6 ' on osx 10.14.6 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.osx_10_14_6_ping6_ip.splitlines(), quiet=True)), self.osx_10_14_6_ping6_ip_streaming_json) def test_ping6_s_ip_unparsable_osx_10_14_6(self): """ Test 'ping6 ' with unparsable lines on osx 10.14.6 """ g = jc.parsers.ping_s.parse(self.osx_10_14_6_ping6_ip_unparsable.splitlines(), quiet=True) with self.assertRaises(IndexError): list(g) def test_ping_s_ip_dup_osx_10_14_6(self): """ Test 'ping ' to broadcast IP to get duplicate replies on osx 10.14.6 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.osx_10_14_6_ping_ip_dup.splitlines(), quiet=True)), self.osx_10_14_6_ping_ip_dup_streaming_json) def test_ping6_s_ip_dup_osx_10_14_6(self): """ Test 'ping6 ' to broadcast IP to get duplicate replies on osx 10.14.6 """ self.assertEqual(list(jc.parsers.ping_s.parse(self.osx_10_14_6_ping6_ip_dup.splitlines(), quiet=True)), self.osx_10_14_6_ping6_ip_dup_streaming_json) def test_ping_s_ip_O_pi(self): """ Test 'ping6 -O' on raspberry pi """ self.assertEqual(list(jc.parsers.ping_s.parse(self.pi_ping_ip_O.splitlines(), quiet=True)), self.pi_ping_ip_O_streaming_json) def test_ping_s_ip_O_D_pi(self): """ Test 'ping6 -O -D' on raspberry pi """ self.assertEqual(list(jc.parsers.ping_s.parse(self.pi_ping_ip_O_D.splitlines(), quiet=True)), self.pi_ping_ip_O_D_streaming_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_pip_list.py000066400000000000000000000066211415226333200166030ustar00rootroot00000000000000import os import json import unittest import jc.parsers.pip_list THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/pip-list.out'), 'r', encoding='utf-8') as f: self.centos_7_7_pip_list = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/pip-list.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_pip_list = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/pip-list-legacy.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_pip_list_legacy = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/pip-list.out'), 'r', encoding='utf-8') as f: self.osx_10_11_6_pip_list = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/pip-list.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_pip_list = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/pip-list.json'), 'r', encoding='utf-8') as f: self.centos_7_7_pip_list_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/pip-list.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_pip_list_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/pip-list-legacy.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_pip_list_legacy_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/pip-list.json'), 'r', encoding='utf-8') as f: self.osx_10_11_6_pip_list_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/pip-list.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_pip_list_json = json.loads(f.read()) def test_pip_list_nodata(self): """ Test 'pip_list' with no data """ self.assertEqual(jc.parsers.pip_list.parse('', quiet=True), []) def test_pip_list_centos_7_7(self): """ Test 'pip_list' on Centos 7.7 """ self.assertEqual(jc.parsers.pip_list.parse(self.centos_7_7_pip_list, quiet=True), self.centos_7_7_pip_list_json) def test_pip_list_ubuntu_18_4(self): """ Test 'pip_list' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.pip_list.parse(self.ubuntu_18_4_pip_list, quiet=True), self.ubuntu_18_4_pip_list_json) def test_pip_list_legacy_ubuntu_18_4(self): """ Test 'pip_list' with legacy output on Ubuntu 18.4 """ self.assertEqual(jc.parsers.pip_list.parse(self.ubuntu_18_4_pip_list_legacy, quiet=True), self.ubuntu_18_4_pip_list_legacy_json) def test_pip_list_osx_10_11_6(self): """ Test 'pip_list' on OSX 10.11.6 """ self.assertEqual(jc.parsers.pip_list.parse(self.osx_10_11_6_pip_list, quiet=True), self.osx_10_11_6_pip_list_json) def test_pip_list_osx_10_14_6(self): """ Test 'pip_list' on OSX 10.14.6 """ self.assertEqual(jc.parsers.pip_list.parse(self.osx_10_14_6_pip_list, quiet=True), self.osx_10_14_6_pip_list_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_pip_show.py000066400000000000000000000053671415226333200166160ustar00rootroot00000000000000import os import json import unittest import jc.parsers.pip_show THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/pip-show.out'), 'r', encoding='utf-8') as f: self.centos_7_7_pip_show = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/pip-show.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_pip_show = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/pip-show.out'), 'r', encoding='utf-8') as f: self.osx_10_11_6_pip_show = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/pip-show.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_pip_show = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/pip-show.json'), 'r', encoding='utf-8') as f: self.centos_7_7_pip_show_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/pip-show.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_pip_show_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/pip-show.json'), 'r', encoding='utf-8') as f: self.osx_10_11_6_pip_show_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/pip-show.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_pip_show_json = json.loads(f.read()) def test_pip_show_nodata(self): """ Test 'pip show' with no data """ self.assertEqual(jc.parsers.pip_show.parse('', quiet=True), []) def test_pip_show_centos_7_7(self): """ Test 'pip show' on Centos 7.7 """ self.assertEqual(jc.parsers.pip_show.parse(self.centos_7_7_pip_show, quiet=True), self.centos_7_7_pip_show_json) def test_pip_show_ubuntu_18_4(self): """ Test 'pip show' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.pip_show.parse(self.ubuntu_18_4_pip_show, quiet=True), self.ubuntu_18_4_pip_show_json) def test_pip_show_osx_10_11_6(self): """ Test 'pip show' on OSX 10.11.6 """ self.assertEqual(jc.parsers.pip_show.parse(self.osx_10_11_6_pip_show, quiet=True), self.osx_10_11_6_pip_show_json) def test_pip_show_osx_10_14_6(self): """ Test 'pip show' on OSX 10.14.6 """ self.assertEqual(jc.parsers.pip_show.parse(self.osx_10_14_6_pip_show, quiet=True), self.osx_10_14_6_pip_show_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_ps.py000066400000000000000000000115351415226333200154020ustar00rootroot00000000000000import os import json import unittest import jc.parsers.ps THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ps-ef.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ps_ef = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ps-ef.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ps_ef = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/ps-ef.out'), 'r', encoding='utf-8') as f: self.osx_10_11_6_ps_ef = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ps-ef.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ps_ef = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ps-axu.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ps_axu = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ps-axu.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ps_axu = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/ps-axu.out'), 'r', encoding='utf-8') as f: self.osx_10_11_6_ps_axu = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ps-axu.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ps_axu = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ps-ef.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ps_ef_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ps-ef.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ps_ef_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/ps-ef.json'), 'r', encoding='utf-8') as f: self.osx_10_11_6_ps_ef_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ps-ef.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ps_ef_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ps-axu.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ps_axu_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ps-axu.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ps_axu_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/ps-axu.json'), 'r', encoding='utf-8') as f: self.osx_10_11_6_ps_axu_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ps-axu.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ps_axu_json = json.loads(f.read()) def test_ps_nodata(self): """ Test 'ps' with no data """ self.assertEqual(jc.parsers.ps.parse('', quiet=True), []) def test_ps_ef_centos_7_7(self): """ Test 'ps -ef' on Centos 7.7 """ self.assertEqual(jc.parsers.ps.parse(self.centos_7_7_ps_ef, quiet=True), self.centos_7_7_ps_ef_json) def test_ps_ef_ubuntu_18_4(self): """ Test 'ps -ef' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.ps.parse(self.ubuntu_18_4_ps_ef, quiet=True), self.ubuntu_18_4_ps_ef_json) def test_ps_ef_osx_10_11_6(self): """ Test 'ps -ef' on OSX 10.11.6 """ self.assertEqual(jc.parsers.ps.parse(self.osx_10_11_6_ps_ef, quiet=True), self.osx_10_11_6_ps_ef_json) def test_ps_ef_osx_10_14_6(self): """ Test 'ps -ef' on OSX 10.14.6 """ self.assertEqual(jc.parsers.ps.parse(self.osx_10_14_6_ps_ef, quiet=True), self.osx_10_14_6_ps_ef_json) def test_ps_axu_centos_7_7(self): """ Test 'ps axu' on Centos 7.7 """ self.assertEqual(jc.parsers.ps.parse(self.centos_7_7_ps_axu, quiet=True), self.centos_7_7_ps_axu_json) def test_ps_axu_ubuntu_18_4(self): """ Test 'ps axu' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.ps.parse(self.ubuntu_18_4_ps_axu, quiet=True), self.ubuntu_18_4_ps_axu_json) def test_ps_axu_osx_10_11_6(self): """ Test 'ps axu' on OSX 10.11.6 """ self.assertEqual(jc.parsers.ps.parse(self.osx_10_11_6_ps_axu, quiet=True), self.osx_10_11_6_ps_axu_json) def test_ps_axu_osx_10_14_6(self): """ Test 'ps axu' on OSX 10.14.6 """ self.assertEqual(jc.parsers.ps.parse(self.osx_10_14_6_ps_axu, quiet=True), self.osx_10_14_6_ps_axu_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_route.py000066400000000000000000000105421415226333200161130ustar00rootroot00000000000000import os import json import unittest import jc.parsers.route THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/route.out'), 'r', encoding='utf-8') as f: self.centos_7_7_route = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/route.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_route = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/route-vn.out'), 'r', encoding='utf-8') as f: self.centos_7_7_route_vn = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/route-vn.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_route_vn = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/nixos/route-ee.out'), 'r', encoding='utf-8') as f: self.nixos_route_ee = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/route-6.out'), 'r', encoding='utf-8') as f: self.centos_7_7_route_6 = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/route-6-n.out'), 'r', encoding='utf-8') as f: self.centos_7_7_route_6_n = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/route.json'), 'r', encoding='utf-8') as f: self.centos_7_7_route_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/route.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_route_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/route-vn.json'), 'r', encoding='utf-8') as f: self.centos_7_7_route_vn_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/route-vn.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_route_vn_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/nixos/route-ee.json'), 'r', encoding='utf-8') as f: self.nixos_route_ee_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/route-6.json'), 'r', encoding='utf-8') as f: self.centos_7_7_route_6_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/route-6-n.json'), 'r', encoding='utf-8') as f: self.centos_7_7_route_6_n_json = json.loads(f.read()) def test_route_nodata(self): """ Test 'route' with no data """ self.assertEqual(jc.parsers.route.parse('', quiet=True), []) def test_route_centos_7_7(self): """ Test 'route' on Centos 7.7 """ self.assertEqual(jc.parsers.route.parse(self.centos_7_7_route, quiet=True), self.centos_7_7_route_json) def test_route_ubuntu_18_4(self): """ Test 'route' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.route.parse(self.ubuntu_18_4_route, quiet=True), self.ubuntu_18_4_route_json) def test_route_vn_centos_7_7(self): """ Test 'route -vn' on Centos 7.7 """ self.assertEqual(jc.parsers.route.parse(self.centos_7_7_route_vn, quiet=True), self.centos_7_7_route_vn_json) def test_route_vn_ubuntu_18_4(self): """ Test 'route -vn' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.route.parse(self.ubuntu_18_4_route_vn, quiet=True), self.ubuntu_18_4_route_vn_json) def test_route_ee_nixos(self): """ Test 'route -ee' on NixOS """ self.assertEqual(jc.parsers.route.parse(self.nixos_route_ee, quiet=True), self.nixos_route_ee_json) def test_route_6_centos_7_7(self): """ Test 'route -6' on Centos 7.7 """ self.assertEqual(jc.parsers.route.parse(self.centos_7_7_route_6, quiet=True), self.centos_7_7_route_6_json) def test_route_6_n_centos_7_7(self): """ Test 'route -6 -n' on Centos 7.7 """ self.assertEqual(jc.parsers.route.parse(self.centos_7_7_route_6_n, quiet=True), self.centos_7_7_route_6_n_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_rpm_qai.py000066400000000000000000000034541415226333200164110ustar00rootroot00000000000000import os import sys import time import unittest import json import jc.parsers.rpm_qi THIS_DIR = os.path.dirname(os.path.abspath(__file__)) # Set the timezone on POSIX systems. Need to manually set for Windows tests if not sys.platform.startswith('win32'): os.environ['TZ'] = 'America/Los_Angeles' time.tzset() class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/rpm-qai.out'), 'r', encoding='utf-8') as f: self.centos_7_7_rpm_qai = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/rpm-qi-package.out'), 'r', encoding='utf-8') as f: self.centos_7_7_rpm_qi_package = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/rpm-qai.json'), 'r', encoding='utf-8') as f: self.centos_7_7_rpm_qai_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/rpm-qi-package.json'), 'r', encoding='utf-8') as f: self.centos_7_7_rpm_qi_package_json = json.loads(f.read()) def test_rpm_qi_nodata(self): """ Test 'rpm -qi' with no data """ self.assertEqual(jc.parsers.rpm_qi.parse('', quiet=True), []) def test_rpm_qai_centos_7_7(self): """ Test 'rpm -qai' on Centos 7.7 """ self.assertEqual(jc.parsers.rpm_qi.parse(self.centos_7_7_rpm_qai, quiet=True), self.centos_7_7_rpm_qai_json) def test_rpm_qi_package_centos_7_7(self): """ Test 'rpm -qi make' on Centos 7.7 """ self.assertEqual(jc.parsers.rpm_qi.parse(self.centos_7_7_rpm_qi_package, quiet=True), self.centos_7_7_rpm_qi_package_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_sfdisk.py000066400000000000000000000211501415226333200162350ustar00rootroot00000000000000import os import json import unittest import jc.parsers.sfdisk THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/sfdisk-l.out'), 'r', encoding='utf-8') as f: self.centos_7_7_sfdisk_l = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/sfdisk-l-multi.out'), 'r', encoding='utf-8') as f: self.centos_7_7_sfdisk_l_multi = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/sfdisk-d.out'), 'r', encoding='utf-8') as f: self.centos_7_7_sfdisk_d = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/sfdisk-d-multi.out'), 'r', encoding='utf-8') as f: self.centos_7_7_sfdisk_d_multi = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/sfdisk-luB.out'), 'r', encoding='utf-8') as f: self.centos_7_7_sfdisk_luB = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/sfdisk-luM.out'), 'r', encoding='utf-8') as f: self.centos_7_7_sfdisk_luM = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/sfdisk-luS.out'), 'r', encoding='utf-8') as f: self.centos_7_7_sfdisk_luS = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-8/sfdisk-l.out'), 'r', encoding='utf-8') as f: self.centos_8_sfdisk_l = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-8/sfdisk-F.out'), 'r', encoding='utf-8') as f: self.centos_8_sfdisk_F = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/debian10/sfdisk-l.out'), 'r', encoding='utf-8') as f: self.debian_10_sfdisk_l = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/debian10/sfdisk-l2.out'), 'r', encoding='utf-8') as f: self.debian_10_sfdisk_l2 = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/debian10/sfdisk-l3.out'), 'r', encoding='utf-8') as f: self.debian_10_sfdisk_l3 = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/debian10/sfdisk-F.out'), 'r', encoding='utf-8') as f: self.debian_10_sfdisk_F = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/debian10/sfdisk-F2.out'), 'r', encoding='utf-8') as f: self.debian_10_sfdisk_F2 = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/sfdisk-l.json'), 'r', encoding='utf-8') as f: self.centos_7_7_sfdisk_l_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/sfdisk-l-multi.json'), 'r', encoding='utf-8') as f: self.centos_7_7_sfdisk_l_multi_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/sfdisk-d.json'), 'r', encoding='utf-8') as f: self.centos_7_7_sfdisk_d_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/sfdisk-d-multi.json'), 'r', encoding='utf-8') as f: self.centos_7_7_sfdisk_d_multi_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/sfdisk-luB.json'), 'r', encoding='utf-8') as f: self.centos_7_7_sfdisk_luB_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/sfdisk-luM.json'), 'r', encoding='utf-8') as f: self.centos_7_7_sfdisk_luM_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/sfdisk-luS.json'), 'r', encoding='utf-8') as f: self.centos_7_7_sfdisk_luS_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-8/sfdisk-l.json'), 'r', encoding='utf-8') as f: self.centos_8_sfdisk_l_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-8/sfdisk-F.json'), 'r', encoding='utf-8') as f: self.centos_8_sfdisk_F_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/debian10/sfdisk-l.json'), 'r', encoding='utf-8') as f: self.debian_10_sfdisk_l_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/debian10/sfdisk-l2.json'), 'r', encoding='utf-8') as f: self.debian_10_sfdisk_l2_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/debian10/sfdisk-l3.json'), 'r', encoding='utf-8') as f: self.debian_10_sfdisk_l3_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/debian10/sfdisk-F.json'), 'r', encoding='utf-8') as f: self.debian_10_sfdisk_F_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/debian10/sfdisk-F2.json'), 'r', encoding='utf-8') as f: self.debian_10_sfdisk_F2_json = json.loads(f.read()) def test_sfdisk_nodata(self): """ Test 'sfdisk' with no data """ self.assertEqual(jc.parsers.sfdisk.parse('', quiet=True), []) def test_sfdisk_l_centos_7_7(self): """ Test 'sfdisk -l' on Centos 7.7 """ self.assertEqual(jc.parsers.sfdisk.parse(self.centos_7_7_sfdisk_l, quiet=True), self.centos_7_7_sfdisk_l_json) def test_sfdisk_l_multi_centos_7_7(self): """ Test 'sfdisk -l' with multiple disk data on Centos 7.7 """ self.assertEqual(jc.parsers.sfdisk.parse(self.centos_7_7_sfdisk_l_multi, quiet=True), self.centos_7_7_sfdisk_l_multi_json) def test_sfdisk_d_centos_7_7(self): """ Test 'sfdisk -d' on Centos 7.7 """ self.assertEqual(jc.parsers.sfdisk.parse(self.centos_7_7_sfdisk_d, quiet=True), self.centos_7_7_sfdisk_d_json) def test_sfdisk_d_multi_centos_7_7(self): """ Test 'sfdisk -d' with multiple disk data on Centos 7.7 """ self.assertEqual(jc.parsers.sfdisk.parse(self.centos_7_7_sfdisk_d_multi, quiet=True), self.centos_7_7_sfdisk_d_multi_json) def test_sfdisk_luB_centos_7_7(self): """ Test 'sfdisk -luB' on Centos 7.7 """ self.assertEqual(jc.parsers.sfdisk.parse(self.centos_7_7_sfdisk_luB, quiet=True), self.centos_7_7_sfdisk_luB_json) def test_sfdisk_luM_centos_7_7(self): """ Test 'sfdisk -luM' on Centos 7.7 """ self.assertEqual(jc.parsers.sfdisk.parse(self.centos_7_7_sfdisk_luM, quiet=True), self.centos_7_7_sfdisk_luM_json) def test_sfdisk_luS_centos_7_7(self): """ Test 'sfdisk -luS' on Centos 7.7 """ self.assertEqual(jc.parsers.sfdisk.parse(self.centos_7_7_sfdisk_luS, quiet=True), self.centos_7_7_sfdisk_luS_json) def test_sfdisk_l_centos_8(self): """ Test 'sfdisk -l' on Centos 8 """ self.assertEqual(jc.parsers.sfdisk.parse(self.centos_8_sfdisk_l, quiet=True), self.centos_8_sfdisk_l_json) def test_sfdisk_F_centos_8(self): """ Test 'sfdisk -F' on Centos 8 """ self.assertEqual(jc.parsers.sfdisk.parse(self.centos_8_sfdisk_F, quiet=True), self.centos_8_sfdisk_F_json) def test_sfdisk_l_debian_10(self): """ Test 'sfdisk -l' on Debian 10 """ self.assertEqual(jc.parsers.sfdisk.parse(self.debian_10_sfdisk_l, quiet=True), self.debian_10_sfdisk_l_json) def test_sfdisk_l2_debian_10(self): """ Test 'sfdisk -l' on Debian 10 (second example) """ self.assertEqual(jc.parsers.sfdisk.parse(self.debian_10_sfdisk_l2, quiet=True), self.debian_10_sfdisk_l2_json) def test_sfdisk_l3_debian_10(self): """ Test 'sfdisk -l' on Debian 10 (third example) """ self.assertEqual(jc.parsers.sfdisk.parse(self.debian_10_sfdisk_l3, quiet=True), self.debian_10_sfdisk_l3_json) def test_sfdisk_F_debian10(self): """ Test 'sfdisk -F' on Debian 10 """ self.assertEqual(jc.parsers.sfdisk.parse(self.debian_10_sfdisk_F, quiet=True), self.debian_10_sfdisk_F_json) def test_sfdisk_F2_debian10(self): """ Test 'sfdisk -F' on Debian 10 (second example) """ self.assertEqual(jc.parsers.sfdisk.parse(self.debian_10_sfdisk_F2, quiet=True), self.debian_10_sfdisk_F2_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_shadow.py000066400000000000000000000030761415226333200162460ustar00rootroot00000000000000import os import json import unittest import jc.parsers.shadow THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/shadow.out'), 'r', encoding='utf-8') as f: self.centos_7_7_shadow = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/shadow.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_shadow = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/shadow.json'), 'r', encoding='utf-8') as f: self.centos_7_7_shadow_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/shadow.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_shadow_json = json.loads(f.read()) def test_shadow_nodata(self): """ Test 'cat /etc/shadow' with no data """ self.assertEqual(jc.parsers.shadow.parse('', quiet=True), []) def test_shadow_centos_7_7(self): """ Test 'cat /etc/shadow' on Centos 7.7 """ self.assertEqual(jc.parsers.shadow.parse(self.centos_7_7_shadow, quiet=True), self.centos_7_7_shadow_json) def test_shadow_ubuntu_18_4(self): """ Test 'cat /etc/shadow' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.shadow.parse(self.ubuntu_18_4_shadow, quiet=True), self.ubuntu_18_4_shadow_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_ss.py000066400000000000000000000030751415226333200154050ustar00rootroot00000000000000import os import json import unittest import jc.parsers.ss THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ss-sudo-a.out'), 'r', encoding='utf-8') as f: self.centos_7_7_ss_sudo_a = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ss-sudo-a.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ss_sudo_a = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ss-sudo-a.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ss_sudo_a_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ss-sudo-a.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_ss_sudo_a_json = json.loads(f.read()) def test_ss_nodata(self): """ Test 'ss' with no data """ self.assertEqual(jc.parsers.ss.parse('', quiet=True), []) def test_ss_sudo_a_centos_7_7(self): """ Test 'sudo ss -a' on Centos 7.7 """ self.assertEqual(jc.parsers.ss.parse(self.centos_7_7_ss_sudo_a, quiet=True), self.centos_7_7_ss_sudo_a_json) def test_ss_sudo_a_ubuntu_18_4(self): """ Test 'sudo ss -a' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.ss.parse(self.ubuntu_18_4_ss_sudo_a, quiet=True), self.ubuntu_18_4_ss_sudo_a_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_stat.py000066400000000000000000000070061415226333200157310ustar00rootroot00000000000000import os import sys import time import json import unittest import jc.parsers.stat THIS_DIR = os.path.dirname(os.path.abspath(__file__)) # Set the timezone on POSIX systems. Need to manually set for Windows tests if not sys.platform.startswith('win32'): os.environ['TZ'] = 'America/Los_Angeles' time.tzset() class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/stat.out'), 'r', encoding='utf-8') as f: self.centos_7_7_stat = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/stat.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_stat = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/stat.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_stat = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/stat-filename-with-spaces.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_stat_filename_with_spaces = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/stat.out'), 'r', encoding='utf-8') as f: self.freebsd12_stat = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/stat.json'), 'r', encoding='utf-8') as f: self.centos_7_7_stat_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/stat.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_stat_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/stat.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_stat_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/stat-filename-with-spaces.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_stat_filename_with_spaces_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/stat.json'), 'r', encoding='utf-8') as f: self.freebsd12_stat_json = json.loads(f.read()) def test_stat_nodata(self): """ Test 'stat' with no data """ self.assertEqual(jc.parsers.stat.parse('', quiet=True), []) def test_stat_centos_7_7(self): """ Test 'stat /bin/*' on Centos 7.7 """ self.assertEqual(jc.parsers.stat.parse(self.centos_7_7_stat, quiet=True), self.centos_7_7_stat_json) def test_stat_ubuntu_18_4(self): """ Test 'stat /bin/*' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.stat.parse(self.ubuntu_18_4_stat, quiet=True), self.ubuntu_18_4_stat_json) def test_stat_osx_10_14_6(self): """ Test 'stat /foo/*' on OSX 10.14.6 """ self.assertEqual(jc.parsers.stat.parse(self.osx_10_14_6_stat, quiet=True), self.osx_10_14_6_stat_json) def test_stat_filename_with_spaces_osx_10_14_6(self): """ Test 'stat' filename with spaces on OSX 10.14.6 """ self.assertEqual(jc.parsers.stat.parse(self.osx_10_14_6_stat_filename_with_spaces, quiet=True), self.osx_10_14_6_stat_filename_with_spaces_json) def test_stat_freebsd12(self): """ Test 'stat /foo/*' on FreeBSD12 """ self.assertEqual(jc.parsers.stat.parse(self.freebsd12_stat, quiet=True), self.freebsd12_stat_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_sysctl.py000066400000000000000000000053051415226333200162770ustar00rootroot00000000000000import os import json import unittest import jc.parsers.sysctl THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/sysctl-a.out'), 'r', encoding='utf-8') as f: self.centos_7_7_sysctl = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/sysctl-a.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_sysctl = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/sysctl-a.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_sysctl = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/sysctl-a.out'), 'r', encoding='utf-8') as f: self.freebsd12_sysctl = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/sysctl-a.json'), 'r', encoding='utf-8') as f: self.centos_7_7_sysctl_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/sysctl-a.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_sysctl_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/sysctl-a.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_sysctl_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/sysctl-a.json'), 'r', encoding='utf-8') as f: self.freebsd12_sysctl_json = json.loads(f.read()) def test_sysctl_nodata(self): """ Test plain 'sysctl' with no data """ self.assertEqual(jc.parsers.sysctl.parse('', quiet=True), {}) def test_sysctl_centos_7_7(self): """ Test plain 'sysctl' on Centos 7.7 """ self.assertEqual(jc.parsers.sysctl.parse(self.centos_7_7_sysctl, quiet=True), self.centos_7_7_sysctl_json) def test_sysctl_ubuntu_18_4(self): """ Test plain 'sysctl' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.sysctl.parse(self.ubuntu_18_4_sysctl, quiet=True), self.ubuntu_18_4_sysctl_json) def test_sysctl_osx_10_14_6(self): """ Test plain 'sysctl' on OSX 10.14.6 """ self.assertEqual(jc.parsers.sysctl.parse(self.osx_10_14_6_sysctl, quiet=True), self.osx_10_14_6_sysctl_json) def test_sysctl_freebsd12(self): """ Test plain 'sysctl' on FreeBSD12 """ self.assertEqual(jc.parsers.sysctl.parse(self.freebsd12_sysctl, quiet=True), self.freebsd12_sysctl_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_systemctl.py000066400000000000000000000031531415226333200170040ustar00rootroot00000000000000import os import json import unittest import jc.parsers.systemctl THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/systemctl.out'), 'r', encoding='utf-8') as f: self.centos_7_7_systemctl = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/systemctl.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_systemctl = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/systemctl.json'), 'r', encoding='utf-8') as f: self.centos_7_7_systemctl_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/systemctl.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_systemctl_json = json.loads(f.read()) def test_systemctl_nodata(self): """ Test 'systemctl' with no data """ self.assertEqual(jc.parsers.systemctl.parse('', quiet=True), []) def test_systemctl_centos_7_7(self): """ Test 'systemctl -a' on Centos 7.7 """ self.assertEqual(jc.parsers.systemctl.parse(self.centos_7_7_systemctl, quiet=True), self.centos_7_7_systemctl_json) def test_systemctl_ubuntu_18_4(self): """ Test 'systemctl -a' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.systemctl.parse(self.ubuntu_18_4_systemctl, quiet=True), self.ubuntu_18_4_systemctl_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_systemctl_lj.py000066400000000000000000000021131415226333200174640ustar00rootroot00000000000000import os import json import unittest import jc.parsers.systemctl_lj THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/systemctl-lj.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_systemctl_lj = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/systemctl-lj.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_systemctl_lj_json = json.loads(f.read()) def test_systemctl_lj_nodata(self): """ Test 'systemctl -a list-jobs' with no data """ self.assertEqual(jc.parsers.systemctl_lj.parse('', quiet=True), []) def test_systemctl_lj_ubuntu_18_4(self): """ Test 'systemctl -a list-jobs' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.systemctl_lj.parse(self.ubuntu_18_4_systemctl_lj, quiet=True), self.ubuntu_18_4_systemctl_lj_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_systemctl_ls.py000066400000000000000000000033161415226333200175030ustar00rootroot00000000000000import os import json import unittest import jc.parsers.systemctl_ls THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/systemctl-ls.out'), 'r', encoding='utf-8') as f: self.centos_7_7_systemctl_ls = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/systemctl-ls.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_systemctl_ls = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/systemctl-ls.json'), 'r', encoding='utf-8') as f: self.centos_7_7_systemctl_ls_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/systemctl-ls.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_systemctl_ls_json = json.loads(f.read()) def test_systemctl_ls_nodata(self): """ Test 'systemctl -a list-sockets' with no data """ self.assertEqual(jc.parsers.systemctl_ls.parse('', quiet=True), []) def test_systemctl_ls_centos_7_7(self): """ Test 'systemctl -a list-sockets' on Centos 7.7 """ self.assertEqual(jc.parsers.systemctl_ls.parse(self.centos_7_7_systemctl_ls, quiet=True), self.centos_7_7_systemctl_ls_json) def test_systemctl_ls_ubuntu_18_4(self): """ Test 'systemctl -a list-sockets' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.systemctl_ls.parse(self.ubuntu_18_4_systemctl_ls, quiet=True), self.ubuntu_18_4_systemctl_ls_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_systemctl_luf.py000066400000000000000000000033411415226333200176510ustar00rootroot00000000000000import os import json import unittest import jc.parsers.systemctl_luf THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/systemctl-luf.out'), 'r', encoding='utf-8') as f: self.centos_7_7_systemctl_luf = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/systemctl-luf.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_systemctl_luf = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/systemctl-luf.json'), 'r', encoding='utf-8') as f: self.centos_7_7_systemctl_luf_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/systemctl-luf.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_systemctl_luf_json = json.loads(f.read()) def test_systemctl_luf_nodata(self): """ Test 'systemctl -a list-sockets' with no data """ self.assertEqual(jc.parsers.systemctl_luf.parse('', quiet=True), []) def test_systemctl_luf_centos_7_7(self): """ Test 'systemctl -a list-sockets' on Centos 7.7 """ self.assertEqual(jc.parsers.systemctl_luf.parse(self.centos_7_7_systemctl_luf, quiet=True), self.centos_7_7_systemctl_luf_json) def test_systemctl_luf_ubuntu_18_4(self): """ Test 'systemctl -a list-sockets' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.systemctl_luf.parse(self.ubuntu_18_4_systemctl_luf, quiet=True), self.ubuntu_18_4_systemctl_luf_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_systeminfo.py000066400000000000000000000033071415226333200171560ustar00rootroot00000000000000import json import os import sys import time import unittest import jc.parsers.systeminfo THIS_DIR = os.path.dirname(os.path.abspath(__file__)) # Set the timezone on POSIX systems. Need to manually set for Windows tests if not sys.platform.startswith('win32'): os.environ['TZ'] = 'America/Los_Angeles' time.tzset() class MyTests(unittest.TestCase): test_files = [ "tests/fixtures/windows/windows-7/systeminfo", "tests/fixtures/windows/windows-10/systeminfo", "tests/fixtures/windows/windows-10/systeminfo-hyperv", "tests/fixtures/windows/windows-10/systeminfo-hyperv-utc", "tests/fixtures/windows/windows-2012r2/systeminfo", ] def setUp(self): for tf in MyTests.test_files: in_file = os.path.join(THIS_DIR, os.pardir, f"{tf}.out") out_file = os.path.join(THIS_DIR, os.pardir, f"{tf}.json") with open(in_file, "r", encoding="utf-8") as f: setattr(self, self.varName(tf), f.read()) with open(out_file, "r", encoding="utf-8") as f: setattr(self, self.varName(tf) + "_json", json.loads(f.read())) def varName(self, path): return ( path.replace("tests/fixtures/windows", "") .replace("-", "_") .replace("/", "_") ) def test_windows_systeminfo(self): """ Test a sample Windows "systeminfo" command output """ for tf in MyTests.test_files: in_var = getattr(self, self.varName(tf)) out_var = getattr(self, self.varName(tf) + "_json") self.assertEqual(jc.parsers.systeminfo.parse(in_var, quiet=True), out_var) if __name__ == "__main__": unittest.main() jc-1.17.3/tests/test_time.py000066400000000000000000000117411415226333200157150ustar00rootroot00000000000000import os import json import unittest import jc.parsers.time THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/time.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_time = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/time2.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_time2 = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/time-p.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_time_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/time-verbose.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_time_verbose = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/time.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_time = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/time-l.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_time_l = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/time-p.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_time_p = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/time-lp.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_time_lp = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/time.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_time_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/time2.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_time2_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/time-p.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_time_p_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/time-verbose.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_time_verbose_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/time.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_time_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/time-l.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_time_l_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/time-p.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_time_p_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/time-lp.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_time_lp_json = json.loads(f.read()) def test_time_nodata(self): """ Test plain 'time' with no data """ self.assertEqual(jc.parsers.time.parse('', quiet=True), {}) def test_time_ubuntu_18_4(self): """ Test plain 'time' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.time.parse(self.ubuntu_18_4_time, quiet=True), self.ubuntu_18_4_time_json) def test_time2_ubuntu_18_4(self): """ Test plain 'time' on Ubuntu 18.4 with ? in CPU% """ self.assertEqual(jc.parsers.time.parse(self.ubuntu_18_4_time2, quiet=True), self.ubuntu_18_4_time2_json) def test_time_p_ubuntu_18_4(self): """ Test 'time -p' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.time.parse(self.ubuntu_18_4_time_p, quiet=True), self.ubuntu_18_4_time_p_json) def test_time_verbose_ubuntu_18_4(self): """ Test 'time --verbose' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.time.parse(self.ubuntu_18_4_time_verbose, quiet=True), self.ubuntu_18_4_time_verbose_json) def test_time_osx_10_14_6(self): """ Test plain 'time' on OSX 10.14.6 """ self.assertEqual(jc.parsers.time.parse(self.osx_10_14_6_time, quiet=True), self.osx_10_14_6_time_json) def test_time_l_osx_10_14_6(self): """ Test 'time -l' on OSX 10.14.6 """ self.assertEqual(jc.parsers.time.parse(self.osx_10_14_6_time_l, quiet=True), self.osx_10_14_6_time_l_json) def test_time_p_osx_10_14_6(self): """ Test 'time -p' on OSX 10.14.6 """ self.assertEqual(jc.parsers.time.parse(self.osx_10_14_6_time_p, quiet=True), self.osx_10_14_6_time_p_json) def test_time_lp_osx_10_14_6(self): """ Test 'time -lp' on OSX 10.14.6 """ self.assertEqual(jc.parsers.time.parse(self.osx_10_14_6_time_lp, quiet=True), self.osx_10_14_6_time_lp_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_timedatectl.py000066400000000000000000000032211415226333200172500ustar00rootroot00000000000000import os import unittest import json import jc.parsers.timedatectl THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/timedatectl.out'), 'r', encoding='utf-8') as f: self.centos_7_7_timedatectl = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/timedatectl.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_timedatectl = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/timedatectl.json'), 'r', encoding='utf-8') as f: self.centos_7_7_timedatectl_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/timedatectl.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_timedatectl_json = json.loads(f.read()) def test_timedatectl_nodata(self): """ Test 'timedatectl' with no data """ self.assertEqual(jc.parsers.timedatectl.parse('', quiet=True), {}) def test_timedatectl_centos_7_7(self): """ Test 'timedatectl' on Centos 7.7 """ self.assertEqual(jc.parsers.timedatectl.parse(self.centos_7_7_timedatectl, quiet=True), self.centos_7_7_timedatectl_json) def test_timedatectl_ubuntu_18_4(self): """ Test 'timedatectl' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.timedatectl.parse(self.ubuntu_18_4_timedatectl, quiet=True), self.ubuntu_18_4_timedatectl_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_tracepath.py000066400000000000000000000031431415226333200167270ustar00rootroot00000000000000import os import unittest import json import jc.parsers.tracepath THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/tracepath.out'), 'r', encoding='utf-8') as f: self.centos_7_7_tracepath = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/tracepath6.out'), 'r', encoding='utf-8') as f: self.centos_7_7_tracepath6 = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/tracepath.json'), 'r', encoding='utf-8') as f: self.centos_7_7_tracepath_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/tracepath6.json'), 'r', encoding='utf-8') as f: self.centos_7_7_tracepath6_json = json.loads(f.read()) def test_tracepath_nodata(self): """ Test 'tracepath' with no data """ self.assertEqual(jc.parsers.tracepath.parse('', quiet=True), {}) def test_tracepath_centos_7_7(self): """ Test 'tracepath' on Centos 7.7 """ self.assertEqual(jc.parsers.tracepath.parse(self.centos_7_7_tracepath, quiet=True), self.centos_7_7_tracepath_json) def test_tracepath6_centos_7_7(self): """ Test 'tracepath6' on Centos 7.7 """ self.assertEqual(jc.parsers.tracepath.parse(self.centos_7_7_tracepath6, quiet=True), self.centos_7_7_tracepath6_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_traceroute.py000066400000000000000000000265031415226333200171360ustar00rootroot00000000000000import os import unittest import json import jc.parsers.traceroute THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/traceroute.out'), 'r', encoding='utf-8') as f: self.centos_7_7_traceroute = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/traceroute-no-header.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_traceroute_noheader = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/traceroute-asn.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_traceroute_asn = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/traceroute-mult-addresses.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_traceroute_mult_addresses = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/traceroute-q.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_traceroute_q = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/traceroute.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_traceroute = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/traceroute6-mult-addresses.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_traceroute6_mult_addresses = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/traceroute6.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_traceroute6 = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/traceroute.out'), 'r', encoding='utf-8') as f: self.freebsd12_traceroute = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/traceroute6.out'), 'r', encoding='utf-8') as f: self.freebsd12_traceroute6 = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/traceroute1.out'), 'r', encoding='utf-8') as f: self.generic_traceroute1 = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/traceroute2.out'), 'r', encoding='utf-8') as f: self.generic_traceroute2 = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/traceroute3.out'), 'r', encoding='utf-8') as f: self.generic_traceroute3 = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/traceroute4.out'), 'r', encoding='utf-8') as f: self.generic_traceroute4 = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/traceroute5.out'), 'r', encoding='utf-8') as f: self.generic_traceroute5 = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/traceroute6.out'), 'r', encoding='utf-8') as f: self.generic_traceroute6 = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/traceroute7.out'), 'r', encoding='utf-8') as f: self.generic_traceroute7 = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/traceroute8.out'), 'r', encoding='utf-8') as f: self.generic_traceroute8 = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/traceroute-no-header.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_traceroute_no_header_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/traceroute.json'), 'r', encoding='utf-8') as f: self.centos_7_7_traceroute_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/traceroute-asn.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_traceroute_asn_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/traceroute-mult-addresses.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_traceroute_mult_addresses_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/traceroute-q.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_traceroute_q_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/traceroute.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_traceroute_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/traceroute6-mult-addresses.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_traceroute6_mult_addresses_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/traceroute6.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_traceroute6_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/traceroute.json'), 'r', encoding='utf-8') as f: self.freebsd12_traceroute_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/traceroute6.json'), 'r', encoding='utf-8') as f: self.freebsd12_traceroute6_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/traceroute1.json'), 'r', encoding='utf-8') as f: self.generic_traceroute1_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/traceroute2.json'), 'r', encoding='utf-8') as f: self.generic_traceroute2_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/traceroute3.json'), 'r', encoding='utf-8') as f: self.generic_traceroute3_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/traceroute4.json'), 'r', encoding='utf-8') as f: self.generic_traceroute4_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/traceroute5.json'), 'r', encoding='utf-8') as f: self.generic_traceroute5_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/traceroute6.json'), 'r', encoding='utf-8') as f: self.generic_traceroute6_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/traceroute7.json'), 'r', encoding='utf-8') as f: self.generic_traceroute7_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/traceroute8.json'), 'r', encoding='utf-8') as f: self.generic_traceroute8_json = json.loads(f.read()) def test_traceroute_nodata(self): """ Test 'traceroute' with no data """ self.assertEqual(jc.parsers.traceroute.parse('', quiet=True), {}) def test_traceroute_noheader(self): """ Test 'traceroute' with missing header row """ self.assertEqual(jc.parsers.traceroute.parse(self.osx_10_14_6_traceroute_noheader, quiet=True), self.osx_10_14_6_traceroute_no_header_json) def test_traceroute_centos_7_7(self): """ Test 'traceroute' on Centos 7.7 """ self.assertEqual(jc.parsers.traceroute.parse(self.centos_7_7_traceroute, quiet=True), self.centos_7_7_traceroute_json) def test_traceroute_a_osx_10_14_6(self): """ Test 'traceroute -a' on OSX 10.14.6 """ self.assertEqual(jc.parsers.traceroute.parse(self.osx_10_14_6_traceroute_asn, quiet=True), self.osx_10_14_6_traceroute_asn_json) def test_traceroute_mult_addresses_osx_10_14_6(self): """ Test 'traceroute' with multiple addresses returned via dns on OSX 10.14.6 """ self.assertEqual(jc.parsers.traceroute.parse(self.osx_10_14_6_traceroute_mult_addresses, quiet=True), self.osx_10_14_6_traceroute_mult_addresses_json) def test_traceroute_q_osx_10_14_6(self): """ Test 'traceroute -q' on OSX 10.14.6 """ self.assertEqual(jc.parsers.traceroute.parse(self.osx_10_14_6_traceroute_q, quiet=True), self.osx_10_14_6_traceroute_q_json) def test_traceroute_osx_10_14_6(self): """ Test 'traceroute' on OSX 10.14.6 """ self.assertEqual(jc.parsers.traceroute.parse(self.osx_10_14_6_traceroute, quiet=True), self.osx_10_14_6_traceroute_json) def test_traceroute6_mult_addresses_osx_10_14_6(self): """ Test 'traceroute6' with multiple addresses returned via dns on OSX 10.14.6 """ self.assertEqual(jc.parsers.traceroute.parse(self.osx_10_14_6_traceroute6_mult_addresses, quiet=True), self.osx_10_14_6_traceroute6_mult_addresses_json) def test_traceroute6_osx_10_14_6(self): """ Test 'traceroute6' on OSX 10.14.6 """ self.assertEqual(jc.parsers.traceroute.parse(self.osx_10_14_6_traceroute6, quiet=True), self.osx_10_14_6_traceroute6_json) def test_traceroute_freebsd12(self): """ Test 'traceroute' on freebsd12 """ self.assertEqual(jc.parsers.traceroute.parse(self.freebsd12_traceroute, quiet=True), self.freebsd12_traceroute_json) def test_traceroute6_freebsd12(self): """ Test 'traceroute6' on freebsd12 """ self.assertEqual(jc.parsers.traceroute.parse(self.freebsd12_traceroute6, quiet=True), self.freebsd12_traceroute6_json) def test_traceroute1_generic(self): """ Test 'traceroute' """ self.assertEqual(jc.parsers.traceroute.parse(self.generic_traceroute1, quiet=True), self.generic_traceroute1_json) def test_traceroute2_generic(self): """ Test 'traceroute' """ self.assertEqual(jc.parsers.traceroute.parse(self.generic_traceroute2, quiet=True), self.generic_traceroute2_json) def test_traceroute3_generic(self): """ Test 'traceroute' """ self.assertEqual(jc.parsers.traceroute.parse(self.generic_traceroute3, quiet=True), self.generic_traceroute3_json) def test_traceroute4_generic(self): """ Test 'traceroute' """ self.assertEqual(jc.parsers.traceroute.parse(self.generic_traceroute4, quiet=True), self.generic_traceroute4_json) def test_traceroute5_generic(self): """ Test 'traceroute' """ self.assertEqual(jc.parsers.traceroute.parse(self.generic_traceroute5, quiet=True), self.generic_traceroute5_json) def test_traceroute6_generic(self): """ Test 'traceroute' """ self.assertEqual(jc.parsers.traceroute.parse(self.generic_traceroute6, quiet=True), self.generic_traceroute6_json) def test_traceroute7_generic(self): """ Test 'traceroute' """ self.assertEqual(jc.parsers.traceroute.parse(self.generic_traceroute7, quiet=True), self.generic_traceroute7_json) def test_traceroute8_generic(self): """ Test 'traceroute' """ self.assertEqual(jc.parsers.traceroute.parse(self.generic_traceroute8, quiet=True), self.generic_traceroute8_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_ufw.py000066400000000000000000000077161415226333200155670ustar00rootroot00000000000000import os import json import unittest import jc.parsers.ufw THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ufw-verbose.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_04_ufw_verbose = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ufw-numbered.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_04_ufw_numbered = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/ufw.out'), 'r', encoding='utf-8') as f: self.generic_ufw = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/ufw-numbered.out'), 'r', encoding='utf-8') as f: self.generic_ufw_numbered = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/ufw-numbered2.out'), 'r', encoding='utf-8') as f: self.generic_ufw_numbered2 = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/ufw-inactive.out'), 'r', encoding='utf-8') as f: self.generic_ufw_inactive = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ufw-verbose.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_04_ufw_verbose_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ufw-numbered.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_04_ufw_numbered_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/ufw.json'), 'r', encoding='utf-8') as f: self.generic_ufw_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/ufw-numbered.json'), 'r', encoding='utf-8') as f: self.generic_ufw_numbered_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/ufw-numbered2.json'), 'r', encoding='utf-8') as f: self.generic_ufw_numbered2_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/ufw-inactive.json'), 'r', encoding='utf-8') as f: self.generic_ufw_inactive_json = json.loads(f.read()) def test_ufw_nodata(self): """ Test 'ufw' with no data """ self.assertEqual(jc.parsers.ufw.parse('', quiet=True), {}) def test_ufw_ubuntu_18_04_verbose(self): """ Test 'ufw status verbose' on Ubuntu 18.04 """ self.assertEqual(jc.parsers.ufw.parse(self.ubuntu_18_04_ufw_verbose, quiet=True), self.ubuntu_18_04_ufw_verbose_json) def test_ufw_ubuntu_18_04_numbered(self): """ Test 'ufw status numbered' on Ubuntu 18.04 """ self.assertEqual(jc.parsers.ufw.parse(self.ubuntu_18_04_ufw_numbered, quiet=True), self.ubuntu_18_04_ufw_numbered_json) def test_ufw_generic_verbose(self): """ Test 'ufw status verbose' sample """ self.assertEqual(jc.parsers.ufw.parse(self.generic_ufw, quiet=True), self.generic_ufw_json) def test_ufw_generic_verbose_numbered(self): """ Test 'ufw status verbose numbered' sample """ self.assertEqual(jc.parsers.ufw.parse(self.generic_ufw_numbered, quiet=True), self.generic_ufw_numbered_json) def test_ufw_generic_verbose_numbered2(self): """ Test 'ufw status verbose numbered' sample """ self.assertEqual(jc.parsers.ufw.parse(self.generic_ufw_numbered2, quiet=True), self.generic_ufw_numbered2_json) def test_ufw_generic_inactive(self): """ Test 'ufw status' when firewall is inactive """ self.assertEqual(jc.parsers.ufw.parse(self.generic_ufw_inactive, quiet=True), self.generic_ufw_inactive_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_ufw_appinfo.py000066400000000000000000000071021415226333200172700ustar00rootroot00000000000000import os import json import unittest import jc.parsers.ufw_appinfo THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ufw-appinfo-all.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_04_ufw_appinfo_all = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/ufw-appinfo-test.out'), 'r', encoding='utf-8') as f: self.generic_ufw_appinfo_test = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/ufw-appinfo-test2.out'), 'r', encoding='utf-8') as f: self.generic_ufw_appinfo_test2 = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/ufw-appinfo-test3.out'), 'r', encoding='utf-8') as f: self.generic_ufw_appinfo_test3 = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/ufw-appinfo-msn.out'), 'r', encoding='utf-8') as f: self.generic_ufw_appinfo_msn = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ufw-appinfo-all.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_04_ufw_appinfo_all_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/ufw-appinfo-test.json'), 'r', encoding='utf-8') as f: self.generic_ufw_appinfo_test_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/ufw-appinfo-test2.json'), 'r', encoding='utf-8') as f: self.generic_ufw_appinfo_test2_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/ufw-appinfo-test3.json'), 'r', encoding='utf-8') as f: self.generic_ufw_appinfo_test3_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/ufw-appinfo-msn.json'), 'r', encoding='utf-8') as f: self.generic_ufw_appinfo_msn_json = json.loads(f.read()) def test_ufw_appinfo_nodata(self): """ Test 'ufw_appinfo' with no data """ self.assertEqual(jc.parsers.ufw_appinfo.parse('', quiet=True), []) def test_ufw_appinfo_ubuntu_18_04_all(self): """ Test 'ufw app info all' on Ubuntu 18.04 """ self.assertEqual(jc.parsers.ufw_appinfo.parse(self.ubuntu_18_04_ufw_appinfo_all, quiet=True), self.ubuntu_18_04_ufw_appinfo_all_json) def test_ufw_appinfo_generic_test(self): """ Test 'ufw app info [application]' sample """ self.assertEqual(jc.parsers.ufw_appinfo.parse(self.generic_ufw_appinfo_test, quiet=True), self.generic_ufw_appinfo_test_json) def test_ufw_appinfo_generic_test2(self): """ Test 'ufw app info [application]' sample """ self.assertEqual(jc.parsers.ufw_appinfo.parse(self.generic_ufw_appinfo_test2, quiet=True), self.generic_ufw_appinfo_test2_json) def test_ufw_appinfo_generic_test3(self): """ Test 'ufw app info [application]' sample """ self.assertEqual(jc.parsers.ufw_appinfo.parse(self.generic_ufw_appinfo_test3, quiet=True), self.generic_ufw_appinfo_test3_json) def test_ufw_appinfo_generic_msn(self): """ Test 'ufw app info MSN' sample """ self.assertEqual(jc.parsers.ufw_appinfo.parse(self.generic_ufw_appinfo_msn, quiet=True), self.generic_ufw_appinfo_msn_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_uname.py000066400000000000000000000150361415226333200160650ustar00rootroot00000000000000import os import json import unittest import jc.parsers.uname from jc.exceptions import ParseError THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/uname-a.out'), 'r', encoding='utf-8') as f: self.centos_7_7_uname_a = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/uname.out'), 'r', encoding='utf-8') as f: self.centos_7_7_uname = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/uname-a.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_uname_a = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/uname-a.out'), 'r', encoding='utf-8') as f: self.osx_10_11_6_uname_a = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/uname-a.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_uname_a = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/uname.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_uname = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/uname-a.out'), 'r', encoding='utf-8') as f: self.freebsd12_uname_a = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/uname-a2.out'), 'r', encoding='utf-8') as f: self.freebsd12_uname_a2 = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/uname-a.out'), 'r', encoding='utf-8') as f: self.generic_uname_a = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/uname-a-different-proc.out'), 'r', encoding='utf-8') as f: self.generic_uname_a_different_proc = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/debian10/uname-a.out'), 'r', encoding='utf-8') as f: self.debian_10_uname_a = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/uname-a.json'), 'r', encoding='utf-8') as f: self.centos_7_7_uname_a_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/uname-a.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_uname_a_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/uname-a.json'), 'r', encoding='utf-8') as f: self.osx_10_11_6_uname_a_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/uname-a.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_uname_a_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/uname-a.json'), 'r', encoding='utf-8') as f: self.freebsd12_uname_a_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/uname-a2.json'), 'r', encoding='utf-8') as f: self.freebsd12_uname_a2_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/uname-a.json'), 'r', encoding='utf-8') as f: self.generic_uname_a_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/uname-a-different-proc.json'), 'r', encoding='utf-8') as f: self.generic_uname_a_different_proc_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/debian10/uname-a.json'), 'r', encoding='utf-8') as f: self.debian_10_uname_a_json = json.loads(f.read()) def test_uname_nodata(self): """ Test 'uname -a' with no data """ self.assertEqual(jc.parsers.uname.parse('', quiet=True), {}) def test_uname_no_a_osx(self): """ Test 'uname' without -a option on OSX. Should generate a ParseError exception """ self.assertRaises(ParseError, jc.parsers.uname.parse, self.osx_10_14_6_uname, quiet=True) def test_uname_no_a_centos(self): """ Test 'uname' without -a option on Centos. Should generate a ParseError exception """ self.assertRaises(ParseError, jc.parsers.uname.parse, self.centos_7_7_uname, quiet=True) def test_uname_centos_7_7(self): """ Test 'uname -a' on Centos 7.7 """ self.assertEqual(jc.parsers.uname.parse(self.centos_7_7_uname_a, quiet=True), self.centos_7_7_uname_a_json) def test_uname_ubuntu_18_4(self): """ Test 'uname -a' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.uname.parse(self.ubuntu_18_4_uname_a, quiet=True), self.ubuntu_18_4_uname_a_json) def test_uname_osx_10_11_6(self): """ Test 'uname -a' on OSX 10.11.6 """ self.assertEqual(jc.parsers.uname.parse(self.osx_10_11_6_uname_a, quiet=True), self.osx_10_11_6_uname_a_json) def test_uname_osx_10_14_6(self): """ Test 'uname -a' on OSX 10.14.6 """ self.assertEqual(jc.parsers.uname.parse(self.osx_10_14_6_uname_a, quiet=True), self.osx_10_14_6_uname_a_json) def test_uname_freebsd12(self): """ Test 'uname -a' on freebsd12 """ self.assertEqual(jc.parsers.uname.parse(self.freebsd12_uname_a, quiet=True), self.freebsd12_uname_a_json) def test_uname2_freebsd12(self): """ Test 'uname -a' on freebsd12 with longer version level string """ self.assertEqual(jc.parsers.uname.parse(self.freebsd12_uname_a2, quiet=True), self.freebsd12_uname_a2_json) def test_uname_generic(self): """ Test 'uname -a' on debian with missing hardware platform and processor """ self.assertEqual(jc.parsers.uname.parse(self.generic_uname_a, quiet=True), self.generic_uname_a_json) def test_uname_different_proc_generic(self): """ Test 'uname -a' on machine with different processor type """ self.assertEqual(jc.parsers.uname.parse(self.generic_uname_a_different_proc, quiet=True), self.generic_uname_a_different_proc_json) def test_uname_debian_10(self): """ Test 'uname -a' on debian 10 with missing hardware platform and processor """ self.assertEqual(jc.parsers.uname.parse(self.debian_10_uname_a, quiet=True), self.debian_10_uname_a_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_upower.py000066400000000000000000000104041415226333200162730ustar00rootroot00000000000000import os import sys import time import json import unittest import jc.parsers.upower THIS_DIR = os.path.dirname(os.path.abspath(__file__)) # Set the timezone on POSIX systems. Need to manually set for Windows tests if not sys.platform.startswith('win32'): os.environ['TZ'] = 'America/Los_Angeles' time.tzset() class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/upower-i.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_upower_i = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/upower-d.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_upower_d = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/upower-d-clocale.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_upower_d_clocale = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/upower-i-utc.out'), 'r', encoding='utf-8') as f: self.generic_upower_i_utc = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/upower-i-non-utc.out'), 'r', encoding='utf-8') as f: self.generic_upower_i_non_utc = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/upower-i-c-locale.out'), 'r', encoding='utf-8') as f: self.generic_upower_i_c_locale = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/upower-i.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_upower_i_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/upower-d.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_upower_d_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/upower-d-clocale.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_upower_d_clocale_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/upower-i-utc.json'), 'r', encoding='utf-8') as f: self.generic_upower_i_utc_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/upower-i-non-utc.json'), 'r', encoding='utf-8') as f: self.generic_upower_i_non_utc_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/upower-i-c-locale.json'), 'r', encoding='utf-8') as f: self.generic_upower_i_c_locale_json = json.loads(f.read()) def test_upower_nodata(self): """ Test 'upower' with no data """ self.assertEqual(jc.parsers.upower.parse('', quiet=True), []) def test_upower_i_ubuntu_18_4(self): """ Test 'upower -i' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.upower.parse(self.ubuntu_18_4_upower_i, quiet=True), self.ubuntu_18_4_upower_i_json) def test_upower_d_ubuntu_18_4(self): """ Test 'upower -d' on Ubuntu 18.4 using LANG=en_US.UTF-8 """ self.assertEqual(jc.parsers.upower.parse(self.ubuntu_18_4_upower_d, quiet=True), self.ubuntu_18_4_upower_d_json) def test_upower_d_clocale_ubuntu_18_4(self): """ Test 'upower -d' on Ubuntu 18.4 using LANG=C """ self.assertEqual(jc.parsers.upower.parse(self.ubuntu_18_4_upower_d, quiet=True), self.ubuntu_18_4_upower_d_json) def test_upower_i_utc_generic(self): """ Test 'upower -i' with utc time output """ self.assertEqual(jc.parsers.upower.parse(self.generic_upower_i_utc, quiet=True), self.generic_upower_i_utc_json) def test_upower_i_non_utc_generic(self): """ Test 'upower -i' with non-utc time output """ self.assertEqual(jc.parsers.upower.parse(self.generic_upower_i_non_utc, quiet=True), self.generic_upower_i_non_utc_json) def test_upower_i_c_locale(self): """ Test 'upower -i' with LANG=C time output """ self.assertEqual(jc.parsers.upower.parse(self.generic_upower_i_c_locale, quiet=True), self.generic_upower_i_c_locale_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_uptime.py000066400000000000000000000052471415226333200162660ustar00rootroot00000000000000import os import json import unittest import jc.parsers.uptime THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/uptime.out'), 'r', encoding='utf-8') as f: self.centos_7_7_uptime = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/uptime.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_uptime = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/uptime.out'), 'r', encoding='utf-8') as f: self.osx_10_11_6_uptime = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/uptime.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_uptime = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/uptime.json'), 'r', encoding='utf-8') as f: self.centos_7_7_uptime_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/uptime.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_uptime_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/uptime.json'), 'r', encoding='utf-8') as f: self.osx_10_11_6_uptime_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/uptime.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_uptime_json = json.loads(f.read()) def test_uptime_nodata(self): """ Test 'uptime' with no data """ self.assertEqual(jc.parsers.uptime.parse('', quiet=True), {}) def test_uptime_centos_7_7(self): """ Test 'uptime' on Centos 7.7 """ self.assertEqual(jc.parsers.uptime.parse(self.centos_7_7_uptime, quiet=True), self.centos_7_7_uptime_json) def test_uptime_ubuntu_18_4(self): """ Test 'uptime' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.uptime.parse(self.ubuntu_18_4_uptime, quiet=True), self.ubuntu_18_4_uptime_json) def test_uptime_osx_10_11_6(self): """ Test 'uptime' on OSX 10.11.6 """ self.assertEqual(jc.parsers.uptime.parse(self.osx_10_11_6_uptime, quiet=True), self.osx_10_11_6_uptime_json) def test_uptime_osx_10_14_6(self): """ Test 'uptime' on OSX 10.14.6 """ self.assertEqual(jc.parsers.uptime.parse(self.osx_10_14_6_uptime, quiet=True), self.osx_10_14_6_uptime_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_utils.py000066400000000000000000000157021415226333200161200ustar00rootroot00000000000000import os import sys import time import unittest import jc.utils # Set the timezone on POSIX systems. Need to manually set for Windows tests if not sys.platform.startswith('win32'): os.environ['TZ'] = 'America/Los_Angeles' time.tzset() class MyTests(unittest.TestCase): def test_utils_timestamp(self): # naive timestamps created in PDT datetime_map = { # C locale format conversion, or date cli command in C locale with non-UTC tz 'Tue Mar 23 16:12:11 2021': {'string': 'Tue Mar 23 16:12:11 2021', 'format': 1000, 'naive': 1616541131, 'utc': None}, 'Tue Mar 23 16:12:11 IST 2021': {'string': 'Tue Mar 23 16:12:11 IST 2021', 'format': 1000, 'naive': 1616541131, 'utc': None}, # en_US.UTF-8 local format (found in who cli output) '2021-03-23 00:14': {'string': '2021-03-23 00:14', 'format': 1500, 'naive': 1616483640, 'utc': None}, # Windows english format (found in dir cli output) '12/07/2019 02:09 AM': {'string': '12/07/2019 02:09 AM', 'format': 1600, 'naive': 1575713340, 'utc': None}, # Windows english format wint non-UTC tz (found in systeminfo cli output) '3/22/2021, 1:15:51 PM (UTC-0600)': {'string': '3/22/2021, 1:15:51 PM (UTC-0600)', 'format': 1700, 'naive': 1616444151, 'utc': None}, # Windows english format with UTC tz (found in systeminfo cli output) '3/22/2021, 1:15:51 PM (UTC)': {'string': '3/22/2021, 1:15:51 PM (UTC)', 'format': 1705, 'naive': 1616444151, 'utc': 1616418951}, # Windows english format with UTC tz in long-form (found in systeminfo cli output) '3/22/2021, 1:15:51 PM (Coordinated Universal Time)': {'string': '3/22/2021, 1:15:51 PM (Coordinated Universal Time)', 'format': 1705, 'naive': 1616444151, 'utc': 1616418951}, # Windows english format with UTC tz (found in systeminfo cli output) '3/22/2021, 1:15:51 PM (UTC+0000)': {'string': '3/22/2021, 1:15:51 PM (UTC+0000)', 'format': 1710, 'naive': 1616444151, 'utc': 1616418951}, # en_US.UTF-8 local format (found in upower cli output) 'Tue 23 Mar 2021 04:12:11 PM UTC': {'string': 'Tue 23 Mar 2021 04:12:11 PM UTC', 'format': 2000, 'naive': 1616541131, 'utc': 1616515931}, # en_US.UTF-8 local format with non-UTC tz (found in upower cli output) 'Tue 23 Mar 2021 04:12:11 PM IST': {'string': 'Tue 23 Mar 2021 04:12:11 PM IST', 'format': 3000, 'naive': 1616541131, 'utc': None}, # European local format (found in upower cli output) 'Tuesday 01 October 2019 12:50:41 PM UTC': {'string': 'Tuesday 01 October 2019 12:50:41 PM UTC', 'format': 4000, 'naive': 1569959441, 'utc': 1569934241}, # European local format with non-UTC tz (found in upower cli output) 'Tuesday 01 October 2019 12:50:41 PM IST': {'string': 'Tuesday 01 October 2019 12:50:41 PM IST', 'format': 5000, 'naive': 1569959441, 'utc': None}, # date cli command in en_US.UTF-8 format 'Wed Mar 24 06:16:19 PM UTC 2021': {'string': 'Wed Mar 24 06:16:19 PM UTC 2021', 'format': 6000, 'naive': 1616634979, 'utc': 1616609779}, # date cli command in C locale format 'Wed Mar 24 11:11:30 UTC 2021': {'string': 'Wed Mar 24 11:11:30 UTC 2021', 'format': 7000, 'naive': 1616609490, 'utc': 1616584290}, # C locale format (found in stat cli output - OSX) 'Mar 29 11:49:05 2021': {'string': 'Mar 29 11:49:05 2021', 'format': 7100, 'naive': 1617043745, 'utc': None}, # C local format (found in stat cli output - linux) non-UTC tz '2019-08-13 18:13:43.555604315 -0400': {'string': '2019-08-13 18:13:43.555604315 -0400', 'format': 7200, 'naive': 1565745223, 'utc': None}, # C local format (found in stat cli output - linux) UTC '2019-08-13 18:13:43.555604315 -0000': {'string': '2019-08-13 18:13:43.555604315 -0000', 'format': 7200, 'naive': 1565745223, 'utc': 1565720023}, # C locale format with non-UTC tz (found in modified vmstat cli output) '2021-09-16 20:32:28 PDT': {'string': '2021-09-16 20:32:28 PDT', 'format': 7250, 'naive': 1631849548, 'utc': None}, # C locale format (found in modified vmstat cli output) '2021-09-16 20:32:28 UTC': {'string': '2021-09-16 20:32:28 UTC', 'format': 7255, 'naive': 1631849548, 'utc': 1631824348}, # C locale format (found in timedatectl cli output) 'Wed 2020-03-11 00:53:21 UTC': {'string': 'Wed 2020-03-11 00:53:21 UTC', 'format': 7300, 'naive': 1583913201, 'utc': 1583888001}, # test with None input None: {'string': None, 'format': None, 'naive': None, 'utc': None} } for input_string, expected_output in datetime_map.items(): self.assertEqual(jc.utils.timestamp(input_string).__dict__, expected_output) def test_utils_convert_to_int(self): io_map = { None: None, True: 1, False: 0, '': None, '0': 0, '1': 1, '-1': -1, '0.0': 0, '0.1': 0, '0.6': 0, '-0.1': 0, '-0.6': 0, 0: 0, 1: 1, -1: -1, 0.0: 0, 0.1: 0, 0.6: 0, -0.1: 0, -0.6: 0 } for input_string, expected_output in io_map.items(): self.assertEqual(jc.utils.convert_to_int(input_string), expected_output) def test_utils_convert_to_float(self): io_map = { None: None, True: 1.0, False: 0.0, '': None, '0': 0.0, '1': 1.0, '-1': -1.0, '0.0': 0.0, '0.1': 0.1, '0.6': 0.6, '-0.1': -0.1, '-0.6': -0.6, 0: 0.0, 1: 1.0, -1: -1.0, 0.0: 0.0, 0.1: 0.1, 0.6: 0.6, -0.1: -0.1, -0.6: -0.6 } for input_string, expected_output in io_map.items(): self.assertEqual(jc.utils.convert_to_float(input_string), expected_output) def test_utils_convert_to_bool(self): io_map = { None: False, True: True, False: False, '': False, '0': False, '1': True, '-1': True, '0.0': False, '0.1': True, '-0.1': True, 'true': True, 'True': True, 'false': False, 'False': False, 'Y': True, 'y': True, 'Yes': True, 'n': False, 'N': False, 'No': False, 0: False, 1: True, -1: True, 0.0: False, 0.1: True, -0.1: True, } for input_string, expected_output in io_map.items(): self.assertEqual(jc.utils.convert_to_bool(input_string), expected_output) jc-1.17.3/tests/test_vmstat.py000066400000000000000000000122411415226333200162710ustar00rootroot00000000000000import os import sys import time import json import unittest import jc.parsers.vmstat THIS_DIR = os.path.dirname(os.path.abspath(__file__)) # Set the timezone on POSIX systems. Need to manually set for Windows tests if not sys.platform.startswith('win32'): os.environ['TZ'] = 'America/Los_Angeles' time.tzset() class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat.out'), 'r', encoding='utf-8') as f: self.centos_7_7_vmstat = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat-a.out'), 'r', encoding='utf-8') as f: self.centos_7_7_vmstat_a = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat-at-5-10.out'), 'r', encoding='utf-8') as f: self.centos_7_7_vmstat_at_5_10 = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat-awt.out'), 'r', encoding='utf-8') as f: self.centos_7_7_vmstat_awt = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat-d.out'), 'r', encoding='utf-8') as f: self.centos_7_7_vmstat_d = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat-dt.out'), 'r', encoding='utf-8') as f: self.centos_7_7_vmstat_dt = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat-w.out'), 'r', encoding='utf-8') as f: self.centos_7_7_vmstat_w = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/vmstat-1-long.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_04_vmstat_1_long = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat.json'), 'r', encoding='utf-8') as f: self.centos_7_7_vmstat_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat-a.json'), 'r', encoding='utf-8') as f: self.centos_7_7_vmstat_a_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat-at-5-10.json'), 'r', encoding='utf-8') as f: self.centos_7_7_vmstat_at_5_10_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat-awt.json'), 'r', encoding='utf-8') as f: self.centos_7_7_vmstat_awt_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat-d.json'), 'r', encoding='utf-8') as f: self.centos_7_7_vmstat_d_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat-dt.json'), 'r', encoding='utf-8') as f: self.centos_7_7_vmstat_dt_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat-w.json'), 'r', encoding='utf-8') as f: self.centos_7_7_vmstat_w_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/vmstat-1-long.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_04_vmstat_1_long_json = json.loads(f.read()) def test_vmstat_nodata(self): """ Test 'vmstat' with no data """ self.assertEqual(jc.parsers.vmstat.parse('', quiet=True), []) def test_vmstat(self): """ Test 'vmstat' """ self.assertEqual(jc.parsers.vmstat.parse(self.centos_7_7_vmstat, quiet=True), self.centos_7_7_vmstat_json) def test_vmstat_a(self): """ Test 'vmstat -a' """ self.assertEqual(jc.parsers.vmstat.parse(self.centos_7_7_vmstat_a, quiet=True), self.centos_7_7_vmstat_a_json) def test_vmstat_at_5_10(self): """ Test 'vmstat -at 5 10' """ self.assertEqual(jc.parsers.vmstat.parse(self.centos_7_7_vmstat_at_5_10, quiet=True), self.centos_7_7_vmstat_at_5_10_json) def test_vmstat_awt(self): """ Test 'vmstat -awt' """ self.assertEqual(jc.parsers.vmstat.parse(self.centos_7_7_vmstat_awt, quiet=True), self.centos_7_7_vmstat_awt_json) def test_vmstat_d(self): """ Test 'vmstat -d' """ self.assertEqual(jc.parsers.vmstat.parse(self.centos_7_7_vmstat_d, quiet=True), self.centos_7_7_vmstat_d_json) def test_vmstat_dt(self): """ Test 'vmstat -dt' """ self.assertEqual(jc.parsers.vmstat.parse(self.centos_7_7_vmstat_dt, quiet=True), self.centos_7_7_vmstat_dt_json) def test_vmstat_w(self): """ Test 'vmstat -w' """ self.assertEqual(jc.parsers.vmstat.parse(self.centos_7_7_vmstat_w, quiet=True), self.centos_7_7_vmstat_w_json) def test_vmstat_1_long(self): """ Test 'vmstat -1' (on ubuntu) with long output that reprints the header rows """ self.assertEqual(jc.parsers.vmstat.parse(self.ubuntu_18_04_vmstat_1_long, quiet=True), self.ubuntu_18_04_vmstat_1_long_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_vmstat_s.py000066400000000000000000000141571415226333200166230ustar00rootroot00000000000000import os import sys import time import json import unittest from jc.exceptions import ParseError import jc.parsers.vmstat_s THIS_DIR = os.path.dirname(os.path.abspath(__file__)) # Set the timezone on POSIX systems. Need to manually set for Windows tests if not sys.platform.startswith('win32'): os.environ['TZ'] = 'America/Los_Angeles' time.tzset() # To create streaming output use: # $ cat vmstat.out | jc --vmstat-s | jello -c > vmstat-streaming.json class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat.out'), 'r', encoding='utf-8') as f: self.centos_7_7_vmstat = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat-a.out'), 'r', encoding='utf-8') as f: self.centos_7_7_vmstat_a = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat-w.out'), 'r', encoding='utf-8') as f: self.centos_7_7_vmstat_w = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat-at-5-10.out'), 'r', encoding='utf-8') as f: self.centos_7_7_vmstat_at_5_10 = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat-awt.out'), 'r', encoding='utf-8') as f: self.centos_7_7_vmstat_awt = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat-d.out'), 'r', encoding='utf-8') as f: self.centos_7_7_vmstat_d = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat-dt.out'), 'r', encoding='utf-8') as f: self.centos_7_7_vmstat_dt = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/vmstat-1-long.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_04_vmstat_1_long = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat-streaming.json'), 'r', encoding='utf-8') as f: self.centos_7_7_vmstat_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat-a-streaming.json'), 'r', encoding='utf-8') as f: self.centos_7_7_vmstat_a_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat-w-streaming.json'), 'r', encoding='utf-8') as f: self.centos_7_7_vmstat_w_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat-at-5-10-streaming.json'), 'r', encoding='utf-8') as f: self.centos_7_7_vmstat_at_5_10_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat-awt-streaming.json'), 'r', encoding='utf-8') as f: self.centos_7_7_vmstat_awt_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat-d-streaming.json'), 'r', encoding='utf-8') as f: self.centos_7_7_vmstat_d_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat-dt-streaming.json'), 'r', encoding='utf-8') as f: self.centos_7_7_vmstat_dt_streaming_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/vmstat-1-long-streaming.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_04_vmstat_1_long_streaming_json = json.loads(f.read()) def test_vmstat_s_nodata(self): """ Test 'vmstat' with no data """ self.assertEqual(list(jc.parsers.vmstat_s.parse([], quiet=True)), []) def test_vmstat_s_unparsable(self): data = 'unparsable data' g = jc.parsers.vmstat_s.parse(data.splitlines(), quiet=True) with self.assertRaises(ParseError): list(g) def test_vmstat_s_centos_7_7(self): """ Test 'vmstat' on Centos 7.7 """ self.assertEqual(list(jc.parsers.vmstat_s.parse(self.centos_7_7_vmstat.splitlines(), quiet=True)), self.centos_7_7_vmstat_streaming_json) def test_vmstat_s_a_centos_7_7(self): """ Test 'vmstat -a' on Centos 7.7 """ self.assertEqual(list(jc.parsers.vmstat_s.parse(self.centos_7_7_vmstat_a.splitlines(), quiet=True)), self.centos_7_7_vmstat_a_streaming_json) def test_vmstat_s_w_centos_7_7(self): """ Test 'vmstat -w' on Centos 7.7 """ self.assertEqual(list(jc.parsers.vmstat_s.parse(self.centos_7_7_vmstat_w.splitlines(), quiet=True)), self.centos_7_7_vmstat_w_streaming_json) def test_vmstat_s_at_5_10_centos_7_7(self): """ Test 'vmstat -at 5 10' on Centos 7.7 """ self.assertEqual(list(jc.parsers.vmstat_s.parse(self.centos_7_7_vmstat_at_5_10.splitlines(), quiet=True)), self.centos_7_7_vmstat_at_5_10_streaming_json) def test_vmstat_s_awt_centos_7_7(self): """ Test 'vmstat -awt' on Centos 7.7 """ self.assertEqual(list(jc.parsers.vmstat_s.parse(self.centos_7_7_vmstat_awt.splitlines(), quiet=True)), self.centos_7_7_vmstat_awt_streaming_json) def test_vmstat_s_d_centos_7_7(self): """ Test 'vmstat -d' on Centos 7.7 """ self.assertEqual(list(jc.parsers.vmstat_s.parse(self.centos_7_7_vmstat_d.splitlines(), quiet=True)), self.centos_7_7_vmstat_d_streaming_json) def test_vmstat_s_dt_centos_7_7(self): """ Test 'vmstat -dt' on Centos 7.7 """ self.assertEqual(list(jc.parsers.vmstat_s.parse(self.centos_7_7_vmstat_dt.splitlines(), quiet=True)), self.centos_7_7_vmstat_dt_streaming_json) def test_vmstat_s_1_long_ubuntu_18_04(self): """ Test 'vmstat -1' (on ubuntu) with long output that reprints the header rows """ self.assertEqual(list(jc.parsers.vmstat_s.parse(self.ubuntu_18_04_vmstat_1_long.splitlines(), quiet=True)), self.ubuntu_18_04_vmstat_1_long_streaming_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_w.py000066400000000000000000000057041415226333200152270ustar00rootroot00000000000000import os import json import unittest import jc.parsers.w THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/w.out'), 'r', encoding='utf-8') as f: self.centos_7_7_w = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/w.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_w = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/w.out'), 'r', encoding='utf-8') as f: self.osx_10_11_6_w = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/w.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_w = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/nixos/w.out'), 'r', encoding='utf-8') as f: self.nixos_w = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/w.json'), 'r', encoding='utf-8') as f: self.centos_7_7_w_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/w.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_w_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/w.json'), 'r', encoding='utf-8') as f: self.osx_10_11_6_w_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/w.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_w_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/nixos/w.json'), 'r', encoding='utf-8') as f: self.nixos_w_json = json.loads(f.read()) def test_w_nodata(self): """ Test 'w' with no data """ self.assertEqual(jc.parsers.w.parse('', quiet=True), []) def test_w_centos_7_7(self): """ Test 'w' on Centos 7.7 """ self.assertEqual(jc.parsers.w.parse(self.centos_7_7_w, quiet=True), self.centos_7_7_w_json) def test_w_ubuntu_18_4(self): """ Test 'w' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.w.parse(self.ubuntu_18_4_w, quiet=True), self.ubuntu_18_4_w_json) def test_w_osx_10_11_6(self): """ Test 'w' on OSX 10.11.6 """ self.assertEqual(jc.parsers.w.parse(self.osx_10_11_6_w, quiet=True), self.osx_10_11_6_w_json) def test_w_osx_10_14_6(self): """ Test 'w' on OSX 10.14.6 """ self.assertEqual(jc.parsers.w.parse(self.osx_10_14_6_w, quiet=True), self.osx_10_14_6_w_json) def test_w_nixos(self): """ Test 'w' on nixos """ self.assertEqual(jc.parsers.w.parse(self.nixos_w, quiet=True), self.nixos_w_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_wc.py000066400000000000000000000040431415226333200153650ustar00rootroot00000000000000import os import unittest import json import jc.parsers.wc THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/wc.out'), 'r', encoding='utf-8') as f: self.centos_7_7_wc = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/wc.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_wc = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/wc-stdin.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_wc_stdin = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/wc.json'), 'r', encoding='utf-8') as f: self.centos_7_7_wc_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/wc.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_wc_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/wc-stdin.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_wc_stdin_json = json.loads(f.read()) def test_wc_nodata(self): """ Test 'wc' parser with no data """ self.assertEqual(jc.parsers.wc.parse('', quiet=True), []) def test_wc_centos_7_7(self): """ Test 'wc' on Centos 7.7 """ self.assertEqual(jc.parsers.wc.parse(self.centos_7_7_wc, quiet=True), self.centos_7_7_wc_json) def test_wc_osx_10_14_6(self): """ Test 'wc' on OSX 10.14.6 """ self.assertEqual(jc.parsers.wc.parse(self.osx_10_14_6_wc, quiet=True), self.osx_10_14_6_wc_json) def test_wc_stdin_osx_10_14_6(self): """ Test 'wc' from STDIN on OSX 10.14.6 """ self.assertEqual(jc.parsers.wc.parse(self.osx_10_14_6_wc_stdin, quiet=True), self.osx_10_14_6_wc_stdin_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_who.py000066400000000000000000000075651415226333200155650ustar00rootroot00000000000000import os import sys import time import json import unittest import jc.parsers.who THIS_DIR = os.path.dirname(os.path.abspath(__file__)) # Set the timezone on POSIX systems. Need to manually set for Windows tests if not sys.platform.startswith('win32'): os.environ['TZ'] = 'America/Los_Angeles' time.tzset() class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/who.out'), 'r', encoding='utf-8') as f: self.centos_7_7_who = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/who.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_who = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/who.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_who = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/who-a.out'), 'r', encoding='utf-8') as f: self.centos_7_7_who_a = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/who-a.out'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_who_a = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/who-a.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_who_a = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/who.json'), 'r', encoding='utf-8') as f: self.centos_7_7_who_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/who.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_who_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/who.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_who_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/who-a.json'), 'r', encoding='utf-8') as f: self.centos_7_7_who_a_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/who-a.json'), 'r', encoding='utf-8') as f: self.ubuntu_18_4_who_a_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/who-a.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_who_a_json = json.loads(f.read()) def test_who_nodata(self): """ Test 'who' with no data """ self.assertEqual(jc.parsers.who.parse('', quiet=True), []) def test_who_centos_7_7(self): """ Test 'who' on Centos 7.7 """ self.assertEqual(jc.parsers.who.parse(self.centos_7_7_who, quiet=True), self.centos_7_7_who_json) def test_who_ubuntu_18_4(self): """ Test 'who' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.who.parse(self.ubuntu_18_4_who, quiet=True), self.ubuntu_18_4_who_json) def test_who_osx_10_14_6(self): """ Test 'who' on OSX 10.14.6 """ self.assertEqual(jc.parsers.who.parse(self.osx_10_14_6_who, quiet=True), self.osx_10_14_6_who_json) def test_who_a_centos_7_7(self): """ Test 'who -a' on Centos 7.7 """ self.assertEqual(jc.parsers.who.parse(self.centos_7_7_who_a, quiet=True), self.centos_7_7_who_a_json) def test_who_a_ubuntu_18_4(self): """ Test 'who -a' on Ubuntu 18.4 """ self.assertEqual(jc.parsers.who.parse(self.ubuntu_18_4_who_a, quiet=True), self.ubuntu_18_4_who_a_json) def test_who_a_osx_10_14_6(self): """ Test 'who -a' on OSX 10.14.6 """ self.assertEqual(jc.parsers.who.parse(self.osx_10_14_6_who_a, quiet=True), self.osx_10_14_6_who_a_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_xml.py000066400000000000000000000030651415226333200155570ustar00rootroot00000000000000import os import unittest import json import jc.parsers.xml THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/xml-cd_catalog.xml'), 'r', encoding='utf-8') as f: self.generic_xml_cd_catalog = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/xml-foodmenu.xml'), 'r', encoding='utf-8') as f: self.generic_xml_foodmenu = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/xml-cd_catalog.json'), 'r', encoding='utf-8') as f: self.generic_xml_cd_catalog_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/xml-foodmenu.json'), 'r', encoding='utf-8') as f: self.generic_xml_foodmenu_json = json.loads(f.read()) def test_xml_nodata(self): """ Test xml parser with no data """ self.assertEqual(jc.parsers.xml.parse('', quiet=True), []) def test_xml_cd_catalog(self): """ Test the cd catalog xml file """ self.assertEqual(jc.parsers.xml.parse(self.generic_xml_cd_catalog, quiet=True), self.generic_xml_cd_catalog_json) def test_xml_foodmenu(self): """ Test the food menu xml file """ self.assertEqual(jc.parsers.xml.parse(self.generic_xml_foodmenu, quiet=True), self.generic_xml_foodmenu_json) if __name__ == '__main__': unittest.main() jc-1.17.3/tests/test_yaml.py000066400000000000000000000031501415226333200157140ustar00rootroot00000000000000import os import unittest import json import jc.parsers.yaml THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # input with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/yaml-istio-sc.yaml'), 'r', encoding='utf-8') as f: self.generic_yaml_istio_sc = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/yaml-istio-sidecar.yaml'), 'r', encoding='utf-8') as f: self.generic_yaml_istio_sidecar = f.read() # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/yaml-istio-sc.json'), 'r', encoding='utf-8') as f: self.generic_yaml_istio_sc_json = json.loads(f.read()) with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/yaml-istio-sidecar.json'), 'r', encoding='utf-8') as f: self.generic_yaml_istio_sidecar_json = json.loads(f.read()) def test_yaml_nodata(self): """ Test the YAML parser with no data """ self.assertEqual(jc.parsers.yaml.parse('', quiet=True), []) def test_yaml_istio_sc(self): """ Test the Istio SC yaml file """ self.assertEqual(jc.parsers.yaml.parse(self.generic_yaml_istio_sc, quiet=True), self.generic_yaml_istio_sc_json) def test_yaml_istio_sidecar(self): """ Test the Istio Sidecar yaml file """ self.assertEqual(jc.parsers.yaml.parse(self.generic_yaml_istio_sidecar, quiet=True), self.generic_yaml_istio_sidecar_json) if __name__ == '__main__': unittest.main() jc-1.17.3/updatedocs.sh000077500000000000000000000006671415226333200147030ustar00rootroot00000000000000#!/bin/bash # Update all documentation (README.md, Man page, Doc files) echo === Building README.md ./readmegen.py && echo "+++ README.md build successful" || echo "--- README.md build failed" echo === Building man page ./mangen.py && echo "+++ man page build successful" || echo "--- man page build failed" echo === Building documentation ./docgen.sh && echo "+++ documentation build successful" || echo "--- documentation build failed"